diff --git a/AREL-data-process/Data_process.ipynb b/AREL-data-process/Data_process.ipynb new file mode 100644 index 0000000..99e0583 --- /dev/null +++ b/AREL-data-process/Data_process.ipynb @@ -0,0 +1,516 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "251000\n", + "50200\n", + "9837\n" + ] + } + ], + "source": [ + "import json\n", + "import os.path as osp\n", + "import matplotlib.pyplot as plt\n", + "from collections import OrderedDict\n", + "\n", + "base_path = \"../VIST/sis\"\n", + "train_data = json.load(open(osp.join(base_path, \"train.story-in-sequence.json\")))\n", + "val_data = json.load(open(osp.join(base_path, \"val.story-in-sequence.json\")))\n", + "test_data = json.load(open(osp.join(base_path, \"test.story-in-sequence.json\")))\n", + "\n", + "prefix = [\"train\", \"val\", \"test\"]\n", + "whole_album2im = {}\n", + "for i, data in enumerate([train_data, val_data, test_data]):\n", + " album2im = {}\n", + " for im in data['images']:\n", + " if im['album_id'] not in album2im:\n", + " album2im[im['album_id']] = [im['id']]\n", + " else:\n", + " if im['id'] not in album2im[im['album_id']]:\n", + " album2im[im['album_id']].append(im['id'])\n", + " whole_album2im[prefix[i]] = album2im\n", + "\n", + "whole_album = {}\n", + "story_lines = {}\n", + "whole_lines = {}\n", + "story_line_count = 0\n", + "whole_line_count = 0\n", + "for i, data in enumerate([train_data, val_data, test_data]):\n", + " album_mapping = {}\n", + " for annot_new in data[\"annotations\"]:\n", + " annot = annot_new[0]\n", + " assert len(annot_new) == 1\n", + " text = annot['text'].encode('utf8')\n", + " if annot['story_id'] not in album_mapping:\n", + " album_mapping[annot['story_id']] = {\"text_index\": [story_line_count], \"flickr_id\": [annot['photo_flickr_id']], \"length\": 1, \n", + " \"album_id\": annot['album_id'], \"album_flickr_id\": whole_album2im[prefix[i]][annot['album_id']],\n", + " \"whole_text_index\": whole_line_count, \"origin_text\": text}\n", + " story_lines[annot['story_id']] = [{\"index\": story_line_count, \"text\": text.split()}]\n", + " whole_lines[annot['story_id']] = {\"index\": whole_line_count, \"text\": text.split()}\n", + " whole_line_count +=1\n", + " else:\n", + " album_mapping[annot['story_id']][\"text_index\"].append(story_line_count)\n", + " album_mapping[annot['story_id']][\"flickr_id\"].append(annot['photo_flickr_id'])\n", + " album_mapping[annot['story_id']][\"length\"] += 1\n", + " story_lines[annot['story_id']].append({\"index\": story_line_count, \"text\": text.split()})\n", + " whole_lines[annot['story_id']][\"text\"].extend(text.split())\n", + " album_mapping[annot['story_id']][\"origin_text\"] += \" \" + text \n", + " story_line_count += 1\n", + " whole_album[prefix[i]] = album_mapping\n", + "\n", + "new_story_lines = [] \n", + "for l in story_lines.values():\n", + " for li in l:\n", + " new_story_lines.append(li)\n", + "story_lines = new_story_lines\n", + "whole_lines = whole_lines.values()\n", + "\n", + "story_lines = [r['text'] for r in sorted(story_lines, key=lambda thing: thing['index'])]\n", + "whole_lines = [r['text'] for r in sorted(whole_lines, key=lambda thing: thing['index'])]\n", + "\n", + "print len(story_lines)\n", + "print len(whole_lines)\n", + "\n", + "from collections import Counter\n", + "import numpy\n", + "cnt = Counter()\n", + "for l in story_lines:\n", + " words = l\n", + " for w in words:\n", + " cnt[w] += 1\n", + "words2id = {}\n", + "idx = 2\n", + "for k, v in cnt.most_common():\n", + " if v > 5:\n", + " words2id[k] = idx\n", + " idx += 1\n", + "words2id[\"\"] = 0\n", + "words2id[\"\"] = 1\n", + "id2words = {v:k for k,v in words2id.iteritems()}\n", + "print len(id2words)\n", + "\n", + "whole_album[\"words2id\"] = words2id\n", + "whole_album[\"id2words\"] = {v:k for k,v in words2id.iteritems()}\n", + "\n", + "id_story_lines = []\n", + "for l in story_lines:\n", + " s = [words2id[w] if w in words2id else 1 for w in l]\n", + " id_story_lines.append(s)\n", + "\n", + "id_whole_lines = []\n", + "for l in whole_lines:\n", + " s = [words2id[w] if w in words2id else 1 for w in l]\n", + " id_whole_lines.append(s)\n", + "\n", + "new_id_whole_lines = []\n", + "specify_longest = 105\n", + "for i in range(len(id_whole_lines)):\n", + " cur_len = len(id_whole_lines[i])\n", + " if cur_len < specify_longest:\n", + " new_id_whole_lines.append(id_whole_lines[i] + [0] * (specify_longest - cur_len))\n", + " else:\n", + " new_id_whole_lines.append(id_whole_lines[i][:specify_longest-1] + [0])\n", + "\n", + "data = numpy.asarray(new_id_whole_lines)\n", + "import h5py\n", + "f = h5py.File(\"full_story.h5\", \"w\")\n", + "f.create_dataset(\"story\", data=data)\n", + "f.close()\n", + "\n", + "new_id_story_lines = []\n", + "specify_longest = 30\n", + "for i in range(len(id_story_lines)):\n", + " cur_len = len(id_story_lines[i])\n", + " if cur_len < specify_longest:\n", + " new_id_story_lines.append(id_story_lines[i] + [0] * (specify_longest - cur_len))\n", + " else:\n", + " new_id_story_lines.append(id_story_lines[i][:specify_longest-1] + [0])\n", + "\n", + "data = numpy.asarray(new_id_story_lines, \"int32\")\n", + "import h5py\n", + "f = h5py.File(\"story.h5\", \"w\")\n", + "f.create_dataset(\"story\", data=data)\n", + "f.close()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "deleting 38602\n", + "deleting 38603\n", + "deleting 8084\n", + "deleting 8085\n", + "deleting 8080\n", + "deleting 8081\n", + "deleting 8082\n", + "deleting 8083\n", + "deleting 8089\n", + "deleting 7462\n", + "deleting 7460\n", + "deleting 7464\n", + "deleting 36709\n", + "deleting 36708\n", + "deleting 36707\n", + "deleting 36706\n", + "deleting 36705\n", + "deleting 18994\n", + "deleting 18992\n", + "deleting 18993\n", + "deleting 18990\n", + "deleting 18991\n", + "deleting 36659\n", + "deleting 36658\n", + "deleting 36655\n", + "deleting 36657\n", + "deleting 36656\n", + "deleting 8053\n", + "deleting 8052\n", + "deleting 8051\n", + "deleting 8050\n", + "deleting 8054\n", + "deleting 36756\n", + "deleting 36757\n", + "deleting 36758\n", + "deleting 8020\n", + "deleting 8024\n", + "deleting 24331\n", + "deleting 24330\n", + "deleting 24333\n", + "deleting 24332\n", + "deleting 24334\n", + "deleting 18610\n", + "deleting 18613\n", + "deleting 25587\n", + "deleting 25586\n", + "deleting 25588\n", + "deleting 33058\n", + "deleting 33059\n", + "deleting 33055\n", + "deleting 33056\n", + "deleting 33057\n", + "deleting 7388\n", + "deleting 7389\n", + "deleting 7387\n", + "deleting 7385\n", + "deleting 41915\n", + "deleting 41919\n", + "deleting 49042\n", + "deleting 49044\n", + "deleting 49043\n", + "deleting 49040\n", + "deleting 49041\n" + ] + } + ], + "source": [ + "for p in prefix:\n", + " path = \"/mnt/sshd/wenhuchen/VIST/images_256/{}/\".format(p)\n", + " deletables = []\n", + " for story_id, story in whole_album[p].iteritems():\n", + " d = [osp.exists(osp.join(path, \"{}.jpg\".format(_))) for _ in story[\"flickr_id\"]]\n", + " if sum(d) < 5:\n", + " print \"deleting {}\".format(story_id)\n", + " deletables.append(story_id)\n", + " else:\n", + " pass\n", + " for i in deletables:\n", + " del whole_album[p][i]" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "flickr_story_map = {}\n", + "for pre in prefix:\n", + " album = whole_album[pre]\n", + " for k, v in album.iteritems():\n", + " indexes = v['text_index']\n", + " for i, flickr_id in enumerate(v['flickr_id']):\n", + " if flickr_id not in flickr_story_map:\n", + " flickr_story_map[flickr_id] = [indexes[i]]\n", + " else:\n", + " flickr_story_map[flickr_id].append(indexes[i])" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'whole_lines' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mlength_distribution\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m[\u001b[0m\u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ms\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0ms\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mwhole_lines\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0mresult\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mplt\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mhist\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mlength_distribution\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbins\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m'auto'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcumulative\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mTrue\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mnormed\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0;31m#plt.show()\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mNameError\u001b[0m: name 'whole_lines' is not defined" + ] + } + ], + "source": [ + "length_distribution = [len(s) for s in whole_lines]\n", + "result = plt.hist(length_distribution, bins='auto', cumulative=True, normed=1)\n", + "#plt.show()\n", + "length_distribution = [len(s) for s in story_lines]\n", + "result = plt.hist(length_distribution, bins='auto', cumulative=True, normed=1)\n", + "#plt.hist(length_distribution, bins='auto')\n", + "#plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "unknown words percent is 0.0243577608952\n" + ] + } + ], + "source": [ + "import json\n", + "import os.path as osp\n", + "\n", + "base_path = \"../VIST/dii\"\n", + "train_data = json.load(open(osp.join(base_path, \"train.description-in-isolation.json\")))\n", + "val_data = json.load(open(osp.join(base_path, \"val.description-in-isolation.json\")))\n", + "test_data = json.load(open(osp.join(base_path, \"test.description-in-isolation.json\")))\n", + "\n", + "mapping = {}\n", + "mapping_original = {}\n", + "text_list = []\n", + "text_list_count = 0\n", + "unknown_words = 0\n", + "total_words = 0\n", + "with_story = 0\n", + "no_story = 0\n", + "for i, data in enumerate([train_data, val_data, test_data]):\n", + " mapping[prefix[i]] = {}\n", + " mapping_original[prefix[i]] = {}\n", + " for l in data['annotations']:\n", + " if l[0]['photo_flickr_id'] not in mapping[prefix[i]]:\n", + " if l[0]['photo_flickr_id'] in flickr_story_map:\n", + " stories = flickr_story_map[l[0]['photo_flickr_id']]\n", + " else:\n", + " stories = [-1]\n", + " mapping[prefix[i]][l[0]['photo_flickr_id']] = {'caption': [text_list_count], 'story': stories}\n", + " mapping_original[prefix[i]][l[0]['photo_flickr_id']] = [l[0]['text']]\n", + " else:\n", + " mapping[prefix[i]][l[0]['photo_flickr_id']]['caption'].append(text_list_count)\n", + " mapping_original[prefix[i]][l[0]['photo_flickr_id']].append(l[0]['text'])\n", + " text_list_count += 1\n", + " assert len(l) == 1\n", + " s = []\n", + " for w in l[0]['text'].split(\" \"):\n", + " if w in words2id:\n", + " s.append(words2id[w]) \n", + " else:\n", + " s.append(1)\n", + " unknown_words += 1\n", + " total_words += 1\n", + " text_list.append(s)\n", + "print \"unknown words percent is {}\".format(unknown_words / (total_words + 0.0))\n", + "new_text_list = []\n", + "specify_longest = 20\n", + "for i in range(len(text_list)):\n", + " cur_len = len(text_list[i])\n", + " if cur_len < specify_longest:\n", + " new_text_list.append(text_list[i] + [0] * (specify_longest - cur_len))\n", + " else:\n", + " new_text_list.append(text_list[i][:specify_longest - 1] + [0]) \n", + "\n", + "for p in prefix:\n", + " path = \"/mnt/sshd/wenhuchen/VIST/images_256/{}/\".format(p)\n", + " deletables = []\n", + " for flickr_id, story in mapping[p].iteritems():\n", + " if not osp.exists(osp.join(path, \"{}.jpg\".format(flickr_id))):\n", + " deletables.append(flickr_id)\n", + " for i in deletables:\n", + " del mapping[p][i]\n", + " del mapping_original[p][i]\n", + " \n", + "whole_album[\"image2caption\"] = mapping\n", + "whole_album[\"image2caption_original\"] = mapping_original\n", + "\n", + "with open(\"story_line.json\", 'w') as f:\n", + " json.dump(whole_album, f)\n", + "\n", + "text_array = numpy.asarray(new_text_list, dtype='int32')\n", + "import h5py\n", + "f = h5py.File(\"description.h5\", 'w')\n", + "f.create_dataset(\"story\", data=text_array)\n", + "f.close()" + ] + }, + { + "cell_type": "code", + "execution_count": 182, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 36 2293 285 12 141 7 97 5 52 2811 6 1807 14 4\n", + " 95 1441 2 31 10 90 5 96 3 35 5 79 32 6\n", + " 264 340 649 2 5 55 3 633 2749 8 3 3920 9 1\n", + " 32 115 3 8139 8 3 940 2 6 340 1268 3617 9 1716\n", + " 311 291 1381 2 47 121 81 8 340 649 31 10 85 1278\n", + " 13 1032 2 0 0 0 0 0 0 0 0 0 0 0\n", + " 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", + " 0 0 0 0 0 0 0]\n", + "(251000, 30)\n", + "9837\n" + ] + } + ], + "source": [ + "import json\n", + "import os.path as osp\n", + "base_path = \"../VIST/dii\"\n", + "\n", + "val_data = json.load(open(osp.join(base_path, \"val.description-in-isolation.json\")))\n", + "with open(\"val_desc_reference\", \"w\") as f:\n", + " for l in val_data['annotations']:\n", + " print >> f, \"{}\\t{}\".format(l[0]['photo_flickr_id'], l[0]['text'])\n", + "\n", + "import h5py\n", + "f = h5py.File(\"full_story.h5\", \"r\")\n", + "print f['story'][0]\n", + "\n", + "f = h5py.File(\"story.h5\", \"r\")\n", + "print f['story'].shape\n", + "\n", + "f = open(\"story_line.json\", 'r')\n", + "data = json.load(f)\n", + "print len(data['id2words'])" + ] + }, + { + "cell_type": "code", + "execution_count": 191, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "import os\n", + "import numpy\n", + "\n", + "zero_fc = numpy.zeros((2048, ), \"float32\")\n", + "zero_conv = numpy.zeros((2048, 7, 7), \"float32\")\n", + "\n", + "train_fc_base = \"/mnt/sshd/xwang/VIST/feature/train/fc\"\n", + "train_conv_base = \"/mnt/sshd/xwang/VIST/feature/train/conv\"\n", + "train_name1 = [l.split(\".\")[0] for l in os.listdir(train_fc_base)]\n", + "\n", + "train_image_base = \"/mnt/sshd/wenhuchen/VIST/images/train\"\n", + "train_name2 = [l.split(\".\")[0] for l in os.listdir(train_image_base)]\n", + "\n", + "rest = set(train_name2) - set(train_name1)\n", + "for image in rest:\n", + " numpy.save(os.path.join(train_fc_base, \"{}.npy\".format(image)), zero_fc) \n", + " numpy.save(os.path.join(train_conv_base, \"{}.npy\".format(image)), zero_conv) \n", + "\n", + "val_fc_base = \"/mnt/sshd/xwang/VIST/feature/val/fc\"\n", + "val_conv_base = \"/mnt/sshd/xwang/VIST/feature/val/conv\"\n", + "val_name1 = [l.split(\".\")[0] for l in os.listdir(val_fc_base)]\n", + "\n", + "val_image_base = \"/mnt/sshd/wenhuchen/VIST/images/val\"\n", + "val_name2 = [l.split(\".\")[0] for l in os.listdir(val_image_base)]\n", + "\n", + "rest = set(val_name2) - set(val_name1)\n", + "for image in rest:\n", + " numpy.save(os.path.join(val_fc_base, \"{}.npy\".format(image)), zero_fc) \n", + " numpy.save(os.path.join(val_conv_base, \"{}.npy\".format(image)), zero_conv) \n", + "\n", + "test_fc_base = \"/mnt/sshd/xwang/VIST/feature/test/fc\"\n", + "test_conv_base = \"/mnt/sshd/xwang/VIST/feature/test/conv\"\n", + "test_name1 = [l.split(\".\")[0] for l in os.listdir(test_fc_base)]\n", + "\n", + "test_image_base = \"/mnt/sshd/wenhuchen/VIST/images/test\"\n", + "test_name2 = [l.split(\".\")[0] for l in os.listdir(test_image_base)]\n", + "\n", + "rest = set(test_name2) - set(test_name1)\n", + "for image in rest:\n", + " numpy.save(os.path.join(test_fc_base, \"{}.npy\".format(image)), zero_fc) \n", + " numpy.save(os.path.join(test_conv_base, \"{}.npy\".format(image)), zero_conv) " + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "40141\n", + "40098\n" + ] + } + ], + "source": [ + "import json\n", + "\n", + "with open(\"story_line.json\", 'r') as f: \n", + " data = json.load(f)\n", + "\n", + "print len(data['image2caption']['train'])\n", + "print len(data['train'])" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.14" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/AREL-data-process/test.story-in-sequence.json b/AREL-data-process/test.story-in-sequence.json new file mode 100644 index 0000000..61beee3 --- /dev/null +++ b/AREL-data-process/test.story-in-sequence.json @@ -0,0 +1 @@ +{"images": [{"datetaken": "2004-11-27 10:40:46", "license": "1", "title": "The venue.", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741642_81837e8e9e_o.jpg", "secret": "81837e8e9e", "media": "photo", "latitude": "51.920449", "id": "1741642", "tags": "stevenage fairies craftfair xmas 2004"}, {"datetaken": "2004-11-27 11:09:51", "license": "1", "title": "Mobbed.", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741640_2a4e2ee734_o.jpg", "secret": "2a4e2ee734", "media": "photo", "latitude": "51.920449", "id": "1741640", "tags": "stevenage fairies craftfair xmas 2004"}, {"datetaken": "2004-11-27 11:10:11", "license": "1", "title": "The excitement is building.", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741639_fbc2df1afa_o.jpg", "secret": "fbc2df1afa", "media": "photo", "latitude": "51.920449", "id": "1741639", "tags": "stevenage fairies craftfair xmas 2004"}, {"datetaken": "2004-11-27 11:10:24", "license": "1", "title": "Something melancholy about this display", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741634_e2ab21a59b_o.jpg", "secret": "e2ab21a59b", "media": "photo", "latitude": "51.920449", "id": "1741634", "tags": "stevenage fairies craftfair xmas 2004"}, {"datetaken": "2004-11-27 11:17:58", "license": "1", "title": "The kids, helping.", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741633_3aa75c73c6_o.jpg", "secret": "3aa75c73c6", "media": "photo", "latitude": "51.920449", "id": "1741633", "tags": "stevenage fairies craftfair xmas 2004"}, {"datetaken": "2004-11-27 11:18:06", "license": "1", "title": "Some hand-made stuff from Africa.", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741632_e693ce585e_o.jpg", "secret": "e693ce585e", "media": "photo", "latitude": "51.920449", "id": "1741632", "tags": "stevenage fairies craftfair xmas 2004"}, {"datetaken": "2004-11-27 11:18:24", "license": "1", "title": "Our neighbours at the craft fair.", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741630_2f3a758de7_o.jpg", "secret": "2f3a758de7", "media": "photo", "latitude": "51.920449", "id": "1741630", "tags": "stevenage fairies craftfair xmas 2004"}, {"datetaken": "2004-11-27 11:20:40", "license": "1", "title": "Juliet's all set up.", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741627_157578a024_o.jpg", "secret": "157578a024", "media": "photo", "latitude": "51.920449", "id": "1741627", "tags": "stevenage fairies craftfair xmas 2004"}, {"datetaken": "2004-11-27 11:41:06", "license": "1", "title": "Her Majesty's Land Registry, Stevenage (staff entrance)", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741625_9e755e9105_o.jpg", "secret": "9e755e9105", "media": "photo", "latitude": "51.920449", "id": "1741625", "tags": "stevenage fairies craftfair xmas 2004"}, {"datetaken": "2004-11-27 12:28:53", "license": "1", "title": "My Aunt Nell", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741623_ad4b9aae56_o.jpg", "secret": "ad4b9aae56", "media": "photo", "latitude": "51.920449", "id": "1741623", "tags": "stevenage bowbrick family xmas 2004 nell"}, {"datetaken": "2004-11-27 12:32:35", "license": "1", "title": "My Uncle Bill.", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741622_15ccba2889_o.jpg", "secret": "15ccba2889", "media": "photo", "latitude": "51.920449", "id": "1741622", "tags": "stevenage bowbrick family xmas 2004 bill"}, {"datetaken": "2004-11-27 14:15:37", "license": "1", "title": "\"In fifteen hundred and fifty eight...", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741620_5169e7b618_o.jpg", "secret": "5169e7b618", "media": "photo", "latitude": "51.920449", "id": "1741620", "tags": "uk school education secondary stevenage hertfordshire comprehensive 1558 alleynes"}, {"datetaken": "2004-11-27 14:25:44", "license": "1", "title": "My old house.", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741619_bbe768456d_o.jpg", "secret": "bbe768456d", "media": "photo", "latitude": "51.920449", "id": "1741619", "tags": "uk house memory stevenage hertfordshire graceway"}, {"datetaken": "2004-11-27 14:28:04", "license": "1", "title": "Stevenage looks roughly like this all over", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741611_3f374c96e5_o.jpg", "secret": "3f374c96e5", "media": "photo", "latitude": "51.920449", "id": "1741611", "tags": "stevenage"}, {"datetaken": "2004-11-27 14:34:04", "license": "1", "title": "My cousin Beryl", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741603_37399ad3b7_o.jpg", "secret": "37399ad3b7", "media": "photo", "latitude": "51.920449", "id": "1741603", "tags": "stevenage bowbrick family xmas 2004"}, {"datetaken": "2004-11-27 14:39:41", "license": "1", "title": "Handcrafts from Kadoma", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741601_99bf734fc8_o.jpg", "secret": "99bf734fc8", "media": "photo", "latitude": "51.920449", "id": "1741601", "tags": "stevenage fairies craftfair xmas 2004 zimbabwe"}, {"datetaken": "2004-11-27 14:40:21", "license": "1", "title": "Stevenage is twinned with Kadoma in Zimbabwe", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741599_869fb79f2e_o.jpg", "secret": "869fb79f2e", "media": "photo", "latitude": "51.920449", "id": "1741599", "tags": "stevenage fairies craftfair xmas 2004 zimbabwe"}, {"datetaken": "2004-11-27 14:52:51", "license": "1", "title": "Important notice.", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741589_f0e57a7995_o.jpg", "secret": "f0e57a7995", "media": "photo", "latitude": "51.920449", "id": "1741589", "tags": "stevenage fairies craftfair xmas 2004"}, {"datetaken": "2004-11-27 15:01:44", "license": "1", "title": "The Craft Fair", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741566_34b0797945_o.jpg", "secret": "34b0797945", "media": "photo", "latitude": "51.920449", "id": "1741566", "tags": "stevenage fairies craftfair xmas 2004"}, {"datetaken": "2004-11-27 15:04:08", "license": "1", "title": "A Dickensian gent demonstrating an Edwardian toy at Stevenage Museum.", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741587_4dec43b3a3_o.jpg", "secret": "4dec43b3a3", "media": "photo", "latitude": "51.920449", "id": "1741587", "tags": "stevenage fairies craftfair xmas 2004 museum"}, {"datetaken": "2004-11-27 15:04:31", "license": "1", "title": "A Dickensian character at Stevenage Museum.", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741586_b0441b4446_o.jpg", "secret": "b0441b4446", "media": "photo", "latitude": "51.920449", "id": "1741586", "tags": "stevenage fairies craftfair xmas 2004 museum"}, {"datetaken": "2004-11-27 15:14:47", "license": "1", "title": "A gorgeous 1937 Vincent Rapide", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741582_4239f0a2fc_o.jpg", "secret": "4239f0a2fc", "media": "photo", "latitude": "51.920449", "id": "1741582", "tags": "stevenage fairies craftfair xmas 2004 museum vincent bike motorcycle motorbike rapide"}, {"datetaken": "2004-11-27 15:15:07", "license": "1", "title": "The Vincent's engine.", "text": "", "album_id": "44277", "longitude": "-0.212688", "url_o": "https://farm1.staticflickr.com/2/1741574_f4105d5b32_o.jpg", "secret": "f4105d5b32", "media": "photo", "latitude": "51.920449", "id": "1741574", "tags": "stevenage fairies craftfair xmas 2004 museum"}, {"datetaken": "2004-09-04 18:17:57", "license": "2", "title": "20040906-0001", "text": "", "album_id": "8139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/355132_ea2d93502d_o.jpg", "secret": "ea2d93502d", "media": "photo", "latitude": "0", "id": "355132", "tags": "albemarlecountryfair"}, {"datetaken": "2004-09-04 18:19:34", "license": "2", "title": "20040906-0002", "text": "", "album_id": "8139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/355134_d61cc231ea_o.jpg", "secret": "d61cc231ea", "media": "photo", "latitude": "0", "id": "355134", "tags": "albemarlecountryfair"}, {"datetaken": "2004-09-04 18:47:14", "license": "2", "title": "20040906-0004", "text": "", "album_id": "8139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/355135_598c533ae6_o.jpg", "secret": "598c533ae6", "media": "photo", "latitude": "0", "id": "355135", "tags": "albemarlecountryfair"}, {"datetaken": "2004-09-04 18:52:34", "license": "2", "title": "20040906-0006", "text": "", "album_id": "8139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/355203_d8b49503ab_o.jpg", "secret": "d8b49503ab", "media": "photo", "latitude": "0", "id": "355203", "tags": "albemarlecountyfair"}, {"datetaken": "2004-09-04 18:53:20", "license": "2", "title": "20040906-0007", "text": "", "album_id": "8139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/355137_bd2ca7917d_o.jpg", "secret": "bd2ca7917d", "media": "photo", "latitude": "0", "id": "355137", "tags": "albemarlecountryfair"}, {"datetaken": "2004-09-04 19:59:55", "license": "2", "title": "20040906-0010", "text": "", "album_id": "8139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/355139_d99f1edeca_o.jpg", "secret": "d99f1edeca", "media": "photo", "latitude": "0", "id": "355139", "tags": "albemarlecountryfair"}, {"datetaken": "2004-09-04 20:00:53", "license": "2", "title": "20040906-0014", "text": "", "album_id": "8139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/355142_81ceb56e6e_o.jpg", "secret": "81ceb56e6e", "media": "photo", "latitude": "0", "id": "355142", "tags": "albemarlecountryfair"}, {"datetaken": "2004-09-04 20:06:27", "license": "2", "title": "20040906-0017", "text": "", "album_id": "8139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/355204_8e8b89c6f3_o.jpg", "secret": "8e8b89c6f3", "media": "photo", "latitude": "0", "id": "355204", "tags": "albemarlecountyfair"}, {"datetaken": "2004-09-04 20:08:54", "license": "2", "title": "20040906-0020", "text": "", "album_id": "8139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/355205_34c5835ccc_o.jpg", "secret": "34c5835ccc", "media": "photo", "latitude": "0", "id": "355205", "tags": "albemarlecountyfair"}, {"datetaken": "2004-09-04 20:33:22", "license": "2", "title": "20040906-0024", "text": "", "album_id": "8139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/355206_75a604223e_o.jpg", "secret": "75a604223e", "media": "photo", "latitude": "0", "id": "355206", "tags": "albemarlecountyfair"}, {"datetaken": "2004-09-04 20:35:17", "license": "2", "title": "20040906-0028", "text": "", "album_id": "8139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/355208_8b5745b2df_o.jpg", "secret": "8b5745b2df", "media": "photo", "latitude": "0", "id": "355208", "tags": "albemarlecountyfair"}, {"datetaken": "2004-09-04 20:39:06", "license": "2", "title": "20040906-0031", "text": "", "album_id": "8139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/355209_fa6546090c_o.jpg", "secret": "fa6546090c", "media": "photo", "latitude": "0", "id": "355209", "tags": "albemarlecountyfair"}, {"datetaken": "2004-09-04 21:21:47", "license": "2", "title": "20040906-0034", "text": "", "album_id": "8139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/355331_3e197ef2dc_o.jpg", "secret": "3e197ef2dc", "media": "photo", "latitude": "0", "id": "355331", "tags": "albemarlecountyfair"}, {"datetaken": "2004-09-04 21:23:15", "license": "2", "title": "20040906-0035", "text": "", "album_id": "8139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/355332_7851bf13a4_o.jpg", "secret": "7851bf13a4", "media": "photo", "latitude": "0", "id": "355332", "tags": "albemarlecountyfair"}, {"datetaken": "2005-06-25 12:19:18", "license": "3", "title": "smart_car", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21725505_5e2b85e1cb_o.jpg", "secret": "5e2b85e1cb", "media": "photo", "latitude": "0", "id": "21725505", "tags": "chicago windy navypier nextfest worldsfair winderz nextfest2005 electronicshowcase windy234"}, {"datetaken": "2005-06-25 12:50:39", "license": "3", "title": "robot_lobster", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21731441_f3966235cf_o.jpg", "secret": "f3966235cf", "media": "photo", "latitude": "0", "id": "21731441", "tags": "chicago windy navypier nextfest worldsfair winderz nextfest2005 electronicshowcase robotlobster windy234"}, {"datetaken": "2005-06-25 12:59:46", "license": "3", "title": "original_cat", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21731440_8a821975c2_o.jpg", "secret": "8a821975c2", "media": "photo", "latitude": "0", "id": "21731440", "tags": "chicago windy navypier nextfest worldsfair winderz nextfest2005 electronicshowcase clonedcat windy234"}, {"datetaken": "2005-06-25 13:00:26", "license": "3", "title": "clone_1", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21725502_0e6f760494_o.jpg", "secret": "0e6f760494", "media": "photo", "latitude": "0", "id": "21725502", "tags": "chicago windy freak navypier nextfest clone worldsfair wasteofmoney winderz nextfest2005 electronicshowcase clonedcat windy234"}, {"datetaken": "2005-06-25 13:01:30", "license": "3", "title": "clone_2", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21725503_747f3ed370_o.jpg", "secret": "747f3ed370", "media": "photo", "latitude": "0", "id": "21725503", "tags": "chicago windy freak navypier nextfest clone worldsfair wasteofmoney winderz nextfest2005 electronicshowcase clonedcat windy234"}, {"datetaken": "2005-06-25 13:04:38", "license": "3", "title": "freaky_seal", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21728852_99d59b04da_o.jpg", "secret": "99d59b04da", "media": "photo", "latitude": "0", "id": "21728852", "tags": "chicago windy seal navypier nextfest paro worldsfair winderz mechanicalseal nextfest2005 electronicshowcase windy234"}, {"datetaken": "2005-06-25 13:12:09", "license": "3", "title": "skycar", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21734443_0468d5aad8_o.jpg", "secret": "0468d5aad8", "media": "photo", "latitude": "0", "id": "21734443", "tags": "chicago windy navypier nextfest worldsfair winderz nextfest2005 skycar electronicshowcase windy234"}, {"datetaken": "2005-06-25 13:17:59", "license": "3", "title": "innespace dolphin", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21725504_7d76579a6f_o.jpg", "secret": "7d76579a6f", "media": "photo", "latitude": "0", "id": "21725504", "tags": "chicago dolphin windy navypier nextfest worldsfair winderz nextfest2005 electronicshowcase innespace windy234"}, {"datetaken": "2005-06-25 13:19:31", "license": "3", "title": "segway4x4_c", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21731443_3007471a89_o.jpg", "secret": "3007471a89", "media": "photo", "latitude": "0", "id": "21731443", "tags": "chicago windy navypier nextfest worldsfair winderz nextfest2005 electronicshowcase windy234"}, {"datetaken": "2005-06-25 13:21:11", "license": "3", "title": "segway4x4_b", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21731442_e10ac58a40_o.jpg", "secret": "e10ac58a40", "media": "photo", "latitude": "0", "id": "21731442", "tags": "chicago windy segway navypier nextfest worldsfair winderz nextfest2005 electronicshowcase windy234"}, {"datetaken": "2005-06-25 13:25:07", "license": "3", "title": "kuka_dj", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21728855_827f4ad139_o.jpg", "secret": "827f4ad139", "media": "photo", "latitude": "0", "id": "21728855", "tags": "chicago windy navypier nextfest worldsfair winderz nextfest2005 electronicshowcase robotdj windy234"}, {"datetaken": "2005-06-25 13:25:07", "license": "3", "title": "kuka_dj_art", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21728857_3e173005ff_o.jpg", "secret": "3e173005ff", "media": "photo", "latitude": "0", "id": "21728857", "tags": "chicago windy navypier nextfest worldsfair winderz nextfest2005 electronicshowcase windy234"}, {"datetaken": "2005-06-25 13:27:13", "license": "3", "title": "l.e.d._skirt", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21731439_9f8ef4ae43_o.jpg", "secret": "9f8ef4ae43", "media": "photo", "latitude": "0", "id": "21731439", "tags": "chicago windy navypier nextfest worldsfair winderz nextfest2005 electronicshowcase windy234"}, {"datetaken": "2005-06-25 13:29:17", "license": "3", "title": "interacvtive_gamerunner", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21728854_c84a862cd7_o.jpg", "secret": "c84a862cd7", "media": "photo", "latitude": "0", "id": "21728854", "tags": "chicago windy navypier nextfest worldsfair winderz nextfest2005 electronicshowcase windy234"}, {"datetaken": "2005-06-25 14:03:15", "license": "3", "title": "tiny_robot_a", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21734444_25409710eb_o.jpg", "secret": "25409710eb", "media": "photo", "latitude": "0", "id": "21734444", "tags": "chicago windy navypier nextfest worldsfair winderz nextfest2005 electronicshowcase chorino windy234"}, {"datetaken": "2005-06-25 14:26:04", "license": "3", "title": "tiny_robot_b", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21734445_254ae5c198_o.jpg", "secret": "254ae5c198", "media": "photo", "latitude": "0", "id": "21734445", "tags": "chicago windy navypier nextfest worldsfair winderz nextfest2005 electronicshowcase chorino windy234"}, {"datetaken": "2005-06-25 15:21:18", "license": "3", "title": "hubo", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21728853_8e105ec004_o.jpg", "secret": "8e105ec004", "media": "photo", "latitude": "0", "id": "21728853", "tags": "chicago windy navypier nextfest worldsfair hubo winderz nextfest2005 electronicshowcase windy234"}, {"datetaken": "2005-06-25 15:40:59", "license": "3", "title": "shadow_hockey", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21731444_753bf862de_o.jpg", "secret": "753bf862de", "media": "photo", "latitude": "0", "id": "21731444", "tags": "chicago windy navypier nextfest worldsfair winderz nextfest2005 electronicshowcase windy234"}, {"datetaken": "2005-06-25 15:42:05", "license": "3", "title": "fountain_a", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21725506_abd2cf1093_o.jpg", "secret": "abd2cf1093", "media": "photo", "latitude": "0", "id": "21725506", "tags": "chicago windy navypier nextfest worldsfair winderz nextfest2005 electronicshowcase windy234"}, {"datetaken": "2005-06-25 15:43:30", "license": "3", "title": "fountain_b", "text": "", "album_id": "504823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21725507_37ff1c20db_o.jpg", "secret": "37ff1c20db", "media": "photo", "latitude": "0", "id": "21725507", "tags": "chicago windy navypier nextfest worldsfair winderz nextfest2005 electronicshowcase windy234"}, {"datetaken": "2008-09-07 14:57:24", "license": "4", "title": "Look Into My Eyes", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm4.staticflickr.com/3080/2835915312_f92af65a1a_o.jpg", "secret": "9d8979126b", "media": "photo", "latitude": "-36.352047", "id": "2835915312", "tags": "lunch day tread 2008 fathers wangaratta"}, {"datetaken": "2008-09-07 15:01:30", "license": "4", "title": "Nice One", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm4.staticflickr.com/3277/2835079599_132e9bc4d2_o.jpg", "secret": "8190ff1504", "media": "photo", "latitude": "-36.352047", "id": "2835079599", "tags": "lunch day tread 2008 fathers wangaratta"}, {"datetaken": "2008-09-07 15:01:38", "license": "4", "title": "Happy Father's Day Jack", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm4.staticflickr.com/3108/2835917750_24edcbbea6_o.jpg", "secret": "5359f344e7", "media": "photo", "latitude": "-36.352047", "id": "2835917750", "tags": "lunch day tread 2008 fathers wangaratta"}, {"datetaken": "2008-09-07 15:01:39", "license": "4", "title": "Pop & Sue", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm4.staticflickr.com/3140/2835919030_19cb601ac9_o.jpg", "secret": "9ddc8ccbfc", "media": "photo", "latitude": "-36.352047", "id": "2835919030", "tags": "lunch day tread 2008 fathers wangaratta"}, {"datetaken": "2008-09-07 15:22:58", "license": "4", "title": "Please Let Us Win", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm4.staticflickr.com/3074/2835920448_b4f44b6734_o.jpg", "secret": "045f020a4c", "media": "photo", "latitude": "-36.352047", "id": "2835920448", "tags": "lunch day tread 2008 fathers wangaratta"}, {"datetaken": "2008-09-07 15:23:00", "license": "4", "title": "Nanna Having A Laugh", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm4.staticflickr.com/3288/2835084931_119982fe5f_o.jpg", "secret": "94e37d0878", "media": "photo", "latitude": "-36.352047", "id": "2835084931", "tags": "lunch day tread 2008 fathers wangaratta"}, {"datetaken": "2008-09-07 15:23:02", "license": "4", "title": "Nanna & Pop", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm4.staticflickr.com/3293/2835923100_2266e634fc_o.jpg", "secret": "7ef0630f1a", "media": "photo", "latitude": "-36.352047", "id": "2835923100", "tags": "lunch day tread 2008 fathers wangaratta"}, {"datetaken": "2008-09-07 15:23:03", "license": "4", "title": "What Should I Drink Next?", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm4.staticflickr.com/3116/2835924200_a7eb49976b_o.jpg", "secret": "2486067b22", "media": "photo", "latitude": "-36.352047", "id": "2835924200", "tags": "lunch day tread 2008 fathers wangaratta"}, {"datetaken": "2008-09-07 15:45:11", "license": "4", "title": "Bluey", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm4.staticflickr.com/3052/2835089821_d0f1a98570_o.jpg", "secret": "0b94879793", "media": "photo", "latitude": "-36.352047", "id": "2835089821", "tags": "red hair lunch day jacob afro curls tread 2008 fro fathers wangaratta ranga"}, {"datetaken": "2008-09-07 15:54:08", "license": "4", "title": "Happy Father's Day Trev", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm4.staticflickr.com/3010/2835931462_359667ec7b_o.jpg", "secret": "fa6c97bfe2", "media": "photo", "latitude": "-36.352047", "id": "2835931462", "tags": "lunch day trevor selwood tread 2008 fathers accountant wangaratta"}, {"datetaken": "2008-09-07 15:54:23", "license": "4", "title": "Greg & Alex", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm4.staticflickr.com/3048/2835927652_b648fc271c_o.jpg", "secret": "a03eeeea2a", "media": "photo", "latitude": "-36.352047", "id": "2835927652", "tags": "lunch day tread 2008 fathers wangaratta"}, {"datetaken": "2008-09-07 16:18:04", "license": "4", "title": "Go Saints!!", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm4.staticflickr.com/3073/2835091155_a6d0516ce5_o.jpg", "secret": "2251b4b11c", "media": "photo", "latitude": "-36.352047", "id": "2835091155", "tags": "lunch day tread 2008 fathers wangaratta"}, {"datetaken": "2008-09-07 16:18:15", "license": "4", "title": "Jacob (Under The Red Hair)", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm3.staticflickr.com/2109/2835928798_64e852bd01_o.jpg", "secret": "44ea33e7d4", "media": "photo", "latitude": "-36.352047", "id": "2835928798", "tags": "lunch day tread 2008 fathers wangaratta"}, {"datetaken": "2008-09-07 16:18:24", "license": "4", "title": "Nanna & Pop", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm4.staticflickr.com/3040/2835092543_4268f9c83e_o.jpg", "secret": "85dc87c34d", "media": "photo", "latitude": "-36.352047", "id": "2835092543", "tags": "lunch day tread 2008 fathers wangaratta"}, {"datetaken": "2008-09-07 16:18:26", "license": "4", "title": "Nanna & Pop", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm3.staticflickr.com/2078/2835930270_57553e8287_o.jpg", "secret": "2d440372fa", "media": "photo", "latitude": "-36.352047", "id": "2835930270", "tags": "lunch day tread 2008 fathers wangaratta"}, {"datetaken": "2008-09-07 16:18:56", "license": "4", "title": "Waiting For Lunch", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm4.staticflickr.com/3196/2835093821_5fb5d124d8_o.jpg", "secret": "d33a7a7a6e", "media": "photo", "latitude": "-36.352047", "id": "2835093821", "tags": "lunch day tread 2008 fathers wangaratta"}, {"datetaken": "2008-09-07 16:28:40", "license": "4", "title": "250g Eye Fillet", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm4.staticflickr.com/3205/2835095703_90e1151b4d_o.jpg", "secret": "137f780a8c", "media": "photo", "latitude": "-36.352047", "id": "2835095703", "tags": "lunch day tread 2008 fathers wangaratta"}, {"datetaken": "2008-09-07 16:29:02", "license": "4", "title": "Light Red", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm4.staticflickr.com/3041/2835097075_cb716317b2_o.jpg", "secret": "3cc927d4ff", "media": "photo", "latitude": "-36.352047", "id": "2835097075", "tags": "lunch day tread 2008 fathers wangaratta"}, {"datetaken": "2008-09-07 16:43:38", "license": "4", "title": "Family", "text": "", "album_id": "72157607155047588", "longitude": "146.324672", "url_o": "https://farm4.staticflickr.com/3067/2835098587_e76c68862e_o.jpg", "secret": "1726175f03", "media": "photo", "latitude": "-36.352047", "id": "2835098587", "tags": "lunch day tread 2008 fathers wangaratta"}, {"datetaken": "2008-05-11 23:52:41", "license": "4", "title": "Arkansas_Family_Fun1", "text": "", "album_id": "72157605016116512", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3053/2485114341_94cfca4394_o.jpg", "secret": "12be333169", "media": "photo", "latitude": "0", "id": "2485114341", "tags": "birthday cake fun candles arkansasfamilyfuncom"}, {"datetaken": "2008-05-11 23:53:06", "license": "4", "title": "Arkansas_Family_Fun_5", "text": "", "album_id": "72157605016116512", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3176/2485114971_650f4aafe9_o.jpg", "secret": "3b7b70c9ba", "media": "photo", "latitude": "0", "id": "2485114971", "tags": "family love feet kids painting hands toes fingers mother nails pedicure arkansasfamilyfuncom"}, {"datetaken": "2008-05-12 07:01:09", "license": "4", "title": "Arkansas_Family_Fun_11", "text": "", "album_id": "72157605016116512", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3036/2485854685_a9499d4f1e_o.jpg", "secret": "c01860fb92", "media": "photo", "latitude": "0", "id": "2485854685", "tags": "family summer blackandwhite spring thoughtful angry pout mad arkansasfamilyfuncom"}, {"datetaken": "2008-05-12 07:01:26", "license": "4", "title": "Arkansas_Family_Fun_12jpg", "text": "", "album_id": "72157605016116512", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2383/2485855255_c33377755a_o.jpg", "secret": "a866409e96", "media": "photo", "latitude": "0", "id": "2485855255", "tags": "family summer blackandwhite spring angry pout mad arkansasfamilyfuncom"}, {"datetaken": "2008-05-12 07:01:44", "license": "4", "title": "Arkansas_Family_Fun_13", "text": "", "album_id": "72157605016116512", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2388/2485855917_a4e6172c50_o.jpg", "secret": "5834789f16", "media": "photo", "latitude": "0", "id": "2485855917", "tags": "family portrait blackandwhite face happy fathersday mothersday arkansasfamilyfuncom"}, {"datetaken": "2008-05-12 07:08:55", "license": "4", "title": "Florida_Family_Fun_1", "text": "", "album_id": "72157605016116512", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2392/2486691470_85ff2501ee_o.jpg", "secret": "b50615b1f0", "media": "photo", "latitude": "0", "id": "2486691470", "tags": "ocean bridge family summer blackandwhite beach water coast boat florida coastline fathersday destin arkansasfamilyfuncom"}, {"datetaken": "2008-05-12 07:08:57", "license": "4", "title": "Florida_Family_Fun_2", "text": "", "album_id": "72157605016116512", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3288/2486691548_b415440370_o.jpg", "secret": "a6883a948f", "media": "photo", "latitude": "0", "id": "2486691548", "tags": "ocean family summer blackandwhite beach water coast boat florida coastline fathersday destin arkansasfamilyfuncom"}, {"datetaken": "2008-05-12 07:08:59", "license": "4", "title": "Florida_Family_Fun_3", "text": "", "album_id": "72157605016116512", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3171/2485872325_e5d5ebee83_o.jpg", "secret": "fec61f87cd", "media": "photo", "latitude": "0", "id": "2485872325", "tags": "ocean bridge family summer blackandwhite beach water coast boat florida coastline fathersday destin arkansasfamilyfuncom"}, {"datetaken": "2008-05-12 07:24:38", "license": "4", "title": "Florida_Family_Fun_11", "text": "", "album_id": "72157605016116512", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2001/2486729724_01acbf0b47_o.jpg", "secret": "2c57cf8721", "media": "photo", "latitude": "0", "id": "2486729724", "tags": "travel bridge family summer vacation blackandwhite sun love beach water kids happy coast boat dad unitedstates florida thoughtful southern coastal coastline fathersday destin arkansasfamilyfuncom"}, {"datetaken": "2008-05-12 07:27:33", "license": "4", "title": "Florida_Family_Fun_12", "text": "", "album_id": "72157605016116512", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2351/2486737242_0f92a41a02_o.jpg", "secret": "a3be46aaa9", "media": "photo", "latitude": "0", "id": "2486737242", "tags": "ocean travel bridge family summer vacation blackandwhite sun love beach water kids fun happy coast boat dad unitedstates florida south southern coastal coastline fathersday destin arkansasfamilyfuncom"}, {"datetaken": "2008-05-12 07:30:23", "license": "4", "title": "Florida_Family_Fun_13", "text": "", "album_id": "72157605016116512", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3246/2486744020_726949b949_o.jpg", "secret": "f68d7c6cc3", "media": "photo", "latitude": "0", "id": "2486744020", "tags": "ocean travel family summer vacation blackandwhite sun love beach water kids happy coast unitedstates florida south thoughtful southern coastal coastline fathersday arkansasfamilyfuncom"}, {"datetaken": "2014-06-14 14:33:22", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.355623", "url_o": "https://farm3.staticflickr.com/2900/14236702198_76d2f115fd_o.jpg", "secret": "749ae1c51e", "media": "photo", "latitude": "29.757052", "id": "14236702198", "tags": ""}, {"datetaken": "2014-06-14 14:33:24", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.355623", "url_o": "https://farm6.staticflickr.com/5277/14236654249_962d8c0e18_o.jpg", "secret": "d932d33651", "media": "photo", "latitude": "29.757052", "id": "14236654249", "tags": ""}, {"datetaken": "2014-06-14 14:33:27", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.355117", "url_o": "https://farm6.staticflickr.com/5038/14419944911_b99b736e83_o.jpg", "secret": "698500e70f", "media": "photo", "latitude": "29.757747", "id": "14419944911", "tags": ""}, {"datetaken": "2014-06-14 14:33:27", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.355117", "url_o": "https://farm6.staticflickr.com/5559/14419943351_5cbc6cd9a9_o.jpg", "secret": "8491780baf", "media": "photo", "latitude": "29.757747", "id": "14419943351", "tags": ""}, {"datetaken": "2014-06-14 14:59:34", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.356073", "url_o": "https://farm6.staticflickr.com/5537/14423298935_dba4abecfd_o.jpg", "secret": "c4e5a0eb70", "media": "photo", "latitude": "29.757030", "id": "14423298935", "tags": ""}, {"datetaken": "2014-06-14 15:01:30", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.355645", "url_o": "https://farm6.staticflickr.com/5524/14236701078_2f8fb49540_o.jpg", "secret": "2758b518c7", "media": "photo", "latitude": "29.757547", "id": "14236701078", "tags": ""}, {"datetaken": "2014-06-14 15:52:06", "license": "2", "title": "Happy Father's Day to ME!", "text": "", "album_id": "72157644777317969", "longitude": "-95.355465", "url_o": "https://farm4.staticflickr.com/3880/14422049135_d923929862_o.jpg", "secret": "e11688b23b", "media": "photo", "latitude": "29.756953", "id": "14422049135", "tags": "valencia square squareformat iphoneography instagramapp uploaded:by=instagram foursquare:venue=4b155036f964a52020b023e3"}, {"datetaken": "2014-06-14 16:17:53", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.355614", "url_o": "https://farm4.staticflickr.com/3835/14443479023_138b8b13db_o.jpg", "secret": "615a3de2c1", "media": "photo", "latitude": "29.757038", "id": "14443479023", "tags": ""}, {"datetaken": "2014-06-14 16:19:14", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.355675", "url_o": "https://farm3.staticflickr.com/2920/14419942351_9ecdbc4fd2_o.jpg", "secret": "1559664980", "media": "photo", "latitude": "29.757094", "id": "14419942351", "tags": ""}, {"datetaken": "2014-06-14 16:27:37", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.355584", "url_o": "https://farm4.staticflickr.com/3874/14423296985_6a50613ffd_o.jpg", "secret": "7609a03eb4", "media": "photo", "latitude": "29.757005", "id": "14423296985", "tags": ""}, {"datetaken": "2014-06-14 16:31:39", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.355653", "url_o": "https://farm4.staticflickr.com/3913/14419942051_c5297276ee_o.jpg", "secret": "5555ca6b99", "media": "photo", "latitude": "29.757036", "id": "14419942051", "tags": ""}, {"datetaken": "2014-06-14 18:55:17", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.355584", "url_o": "https://farm4.staticflickr.com/3917/14422006662_01e6f84017_o.jpg", "secret": "04dc788204", "media": "photo", "latitude": "29.756986", "id": "14422006662", "tags": ""}, {"datetaken": "2014-06-14 18:55:47", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.355592", "url_o": "https://farm3.staticflickr.com/2900/14422160704_a81f8d70fd_o.jpg", "secret": "ccc1bc8875", "media": "photo", "latitude": "29.757047", "id": "14422160704", "tags": ""}, {"datetaken": "2014-06-14 18:56:23", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.355537", "url_o": "https://farm4.staticflickr.com/3921/14422003842_d55fcd5e6e_o.jpg", "secret": "4503de69df", "media": "photo", "latitude": "29.756986", "id": "14422003842", "tags": ""}, {"datetaken": "2014-06-14 18:56:28", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.355537", "url_o": "https://farm4.staticflickr.com/3835/14443474413_8f2408e441_o.jpg", "secret": "9037d713a8", "media": "photo", "latitude": "29.756986", "id": "14443474413", "tags": ""}, {"datetaken": "2014-06-14 18:56:47", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.355537", "url_o": "https://farm6.staticflickr.com/5516/14443474403_62c4f8ea8b_o.jpg", "secret": "7c911f12a2", "media": "photo", "latitude": "29.756997", "id": "14443474403", "tags": ""}, {"datetaken": "2014-06-14 19:09:25", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.358017", "url_o": "https://farm4.staticflickr.com/3878/14400165176_958633feed_o.jpg", "secret": "2bd52de46f", "media": "photo", "latitude": "29.756722", "id": "14400165176", "tags": ""}, {"datetaken": "2014-06-14 19:09:36", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.358003", "url_o": "https://farm6.staticflickr.com/5576/14443472923_46caa1bb26_o.jpg", "secret": "0fd0eee18d", "media": "photo", "latitude": "29.756644", "id": "14443472923", "tags": ""}, {"datetaken": "2014-06-14 19:19:04", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.358039", "url_o": "https://farm4.staticflickr.com/3896/14236646159_4cb1ca8e18_o.jpg", "secret": "534c6b4158", "media": "photo", "latitude": "29.756541", "id": "14236646159", "tags": ""}, {"datetaken": "2014-06-14 19:19:05", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "-95.358039", "url_o": "https://farm3.staticflickr.com/2939/14443473773_01256fab8e_o.jpg", "secret": "74d93836e1", "media": "photo", "latitude": "29.756541", "id": "14443473773", "tags": ""}, {"datetaken": "2014-06-14 19:38:21", "license": "2", "title": "Houston", "text": "", "album_id": "72157644777317969", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2924/14236654939_02a8b957bc_o.jpg", "secret": "8f5a91a4fe", "media": "photo", "latitude": "0", "id": "14236654939", "tags": ""}, {"datetaken": "2008-06-15 07:41:19", "license": "3", "title": "Father's Day 2008 Bike Ride w Jake 001", "text": "", "album_id": "72157605629519358", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3012/2582414024_508fff2aff_o.jpg", "secret": "8f1eea1bc5", "media": "photo", "latitude": "0", "id": "2582414024", "tags": "island kent"}, {"datetaken": "2008-06-15 08:03:12", "license": "3", "title": "Father's Day 2008 Bike Ride w Jake 002", "text": "", "album_id": "72157605629519358", "longitude": "-76.298225", "url_o": "https://farm4.staticflickr.com/3160/2581586123_bbafc36653_o.jpg", "secret": "1cf35b889b", "media": "photo", "latitude": "38.982522", "id": "2581586123", "tags": "island kent"}, {"datetaken": "2008-06-15 08:03:19", "license": "3", "title": "Father's Day 2008 Bike Ride w Jake 003", "text": "", "album_id": "72157605629519358", "longitude": "-76.297868", "url_o": "https://farm4.staticflickr.com/3081/2582414424_9f5a01a287_o.jpg", "secret": "7a1975e12d", "media": "photo", "latitude": "38.982399", "id": "2582414424", "tags": "island kent"}, {"datetaken": "2008-06-15 08:03:25", "license": "3", "title": "Father's Day 2008 Bike Ride w Jake 004", "text": "", "album_id": "72157605629519358", "longitude": "-76.297567", "url_o": "https://farm4.staticflickr.com/3139/2582414858_02e99ec95a_o.jpg", "secret": "1b1fd353bc", "media": "photo", "latitude": "38.982297", "id": "2582414858", "tags": "island kent"}, {"datetaken": "2008-06-15 08:11:59", "license": "3", "title": "Father's Day 2008 Bike Ride w Jake 005", "text": "", "album_id": "72157605629519358", "longitude": "-76.277903", "url_o": "https://farm4.staticflickr.com/3016/2582415688_1e9b4bf7cd_o.jpg", "secret": "e94f03b5d9", "media": "photo", "latitude": "38.976167", "id": "2582415688", "tags": "island kent"}, {"datetaken": "2008-06-15 08:12:16", "license": "3", "title": "Father's Day 2008 Bike Ride w Jake 006", "text": "", "album_id": "72157605629519358", "longitude": "-76.277137", "url_o": "https://farm4.staticflickr.com/3023/2582416448_7fd72fb544_o.jpg", "secret": "50020326d0", "media": "photo", "latitude": "38.975924", "id": "2582416448", "tags": "island kent"}, {"datetaken": "2008-06-15 08:12:26", "license": "3", "title": "Father's Day 2008 Bike Ride w Jake 007", "text": "", "album_id": "72157605629519358", "longitude": "-76.276679", "url_o": "https://farm4.staticflickr.com/3082/2582417232_afe4a45f20_o.jpg", "secret": "39fc34d05e", "media": "photo", "latitude": "38.975787", "id": "2582417232", "tags": "island kent"}, {"datetaken": "2008-06-15 08:20:35", "license": "3", "title": "Father's Day 2008 Bike Ride w Jake 008", "text": "", "album_id": "72157605629519358", "longitude": "-76.256726", "url_o": "https://farm4.staticflickr.com/3143/2581590017_4132fb17d7_o.jpg", "secret": "5c2ac94e1a", "media": "photo", "latitude": "38.972798", "id": "2581590017", "tags": "island kent"}, {"datetaken": "2008-06-15 08:20:40", "license": "3", "title": "Father's Day 2008 Bike Ride w Jake 009", "text": "", "album_id": "72157605629519358", "longitude": "-76.256512", "url_o": "https://farm4.staticflickr.com/3038/2582418846_67f4e28c73_o.jpg", "secret": "f99999d252", "media": "photo", "latitude": "38.972765", "id": "2582418846", "tags": "island kent"}, {"datetaken": "2008-06-15 08:20:45", "license": "3", "title": "Father's Day 2008 Bike Ride w Jake 010", "text": "", "album_id": "72157605629519358", "longitude": "-76.256269", "url_o": "https://farm4.staticflickr.com/3146/2582419564_8e9d4248c9_o.jpg", "secret": "7ebc2ed878", "media": "photo", "latitude": "38.972763", "id": "2582419564", "tags": "island kent"}, {"datetaken": "2008-06-15 08:22:56", "license": "3", "title": "Father's Day 2008 Bike Ride w Jake 011", "text": "", "album_id": "72157605629519358", "longitude": "-76.252390", "url_o": "https://farm4.staticflickr.com/3092/2581592241_80e35c0840_o.jpg", "secret": "40c48de232", "media": "photo", "latitude": "38.974369", "id": "2581592241", "tags": "island kent"}, {"datetaken": "2008-06-15 08:23:25", "license": "3", "title": "Father's Day 2008 Bike Ride w Jake 012", "text": "", "album_id": "72157605629519358", "longitude": "-76.251108", "url_o": "https://farm4.staticflickr.com/3258/2581592985_53306088ed_o.jpg", "secret": "ecd971a108", "media": "photo", "latitude": "38.974816", "id": "2581592985", "tags": "island kent"}, {"datetaken": "2008-06-15 08:23:35", "license": "3", "title": "Father's Day 2008 Bike Ride w Jake 013", "text": "", "album_id": "72157605629519358", "longitude": "-76.250601", "url_o": "https://farm4.staticflickr.com/3269/2581593629_008c9744a6_o.jpg", "secret": "db4bbd7794", "media": "photo", "latitude": "38.974750", "id": "2581593629", "tags": "island kent"}, {"datetaken": "2008-06-15 08:23:40", "license": "3", "title": "Father's Day 2008 Bike Ride w Jake 014", "text": "", "album_id": "72157605629519358", "longitude": "-76.250346", "url_o": "https://farm4.staticflickr.com/3104/2581594339_2141d23c71_o.jpg", "secret": "d1e42429b1", "media": "photo", "latitude": "38.974707", "id": "2581594339", "tags": "island kent"}, {"datetaken": "2008-06-15 08:23:45", "license": "3", "title": "Father's Day 2008 Bike Ride w Jake 015", "text": "", "album_id": "72157605629519358", "longitude": "-76.250101", "url_o": "https://farm4.staticflickr.com/3005/2582423092_30a2fdaccf_o.jpg", "secret": "3afa4e19b3", "media": "photo", "latitude": "38.974660", "id": "2582423092", "tags": "island kent"}, {"datetaken": "2008-06-15 08:30:46", "license": "3", "title": "Father's Day 2008 Bike Ride w Jake 016", "text": "", "album_id": "72157605629519358", "longitude": "-76.256715", "url_o": "https://farm4.staticflickr.com/3024/2582423982_af97a34526_o.jpg", "secret": "85ee3f3403", "media": "photo", "latitude": "38.972801", "id": "2582423982", "tags": "island kent"}, {"datetaken": "2008-06-14 12:44:28", "license": "1", "title": "IMG_5046", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3091/2581558638_c6d5a81b72_o.jpg", "secret": "9c7d3b2248", "media": "photo", "latitude": "0", "id": "2581558638", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 12:45:37", "license": "1", "title": "IMG_5047", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3079/2581560296_81414ce74d_o.jpg", "secret": "a69f68d47b", "media": "photo", "latitude": "0", "id": "2581560296", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 12:45:51", "license": "1", "title": "IMG_5048", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3140/2581561532_3f2c780644_o.jpg", "secret": "49c97fdd6c", "media": "photo", "latitude": "0", "id": "2581561532", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:08:12", "license": "1", "title": "IMG_5049", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3262/2580735309_85c75a9a6b_o.jpg", "secret": "ffd93b692c", "media": "photo", "latitude": "0", "id": "2580735309", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:12:10", "license": "1", "title": "IMG_5050", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3082/2580736567_1434ec5b60_o.jpg", "secret": "8f22397011", "media": "photo", "latitude": "0", "id": "2580736567", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:12:13", "license": "1", "title": "IMG_5051", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3052/2581565132_aaaf8eb187_o.jpg", "secret": "439cc5231f", "media": "photo", "latitude": "0", "id": "2581565132", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:12:26", "license": "1", "title": "IMG_5052", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2054/2581566400_6bf0de5df1_o.jpg", "secret": "d1a6640322", "media": "photo", "latitude": "0", "id": "2581566400", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:16:44", "license": "1", "title": "IMG_5053", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3032/2580740275_1148c348aa_o.jpg", "secret": "6d2a5dc995", "media": "photo", "latitude": "0", "id": "2580740275", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:16:48", "license": "1", "title": "IMG_5054", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3021/2581568690_07d8dd8ff5_o.jpg", "secret": "860f9851d4", "media": "photo", "latitude": "0", "id": "2581568690", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:16:52", "license": "1", "title": "IMG_5055", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3049/2580742595_a66a3b3265_o.jpg", "secret": "846af35127", "media": "photo", "latitude": "0", "id": "2580742595", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:34:08", "license": "1", "title": "IMG_5056", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3189/2580743969_f340f945f1_o.jpg", "secret": "8fb4e74cc3", "media": "photo", "latitude": "0", "id": "2580743969", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:34:24", "license": "1", "title": "IMG_5057", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3012/2581572326_ce419af84b_o.jpg", "secret": "3e0d162394", "media": "photo", "latitude": "0", "id": "2581572326", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:34:27", "license": "1", "title": "IMG_5058", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3125/2580746035_be7116c6d5_o.jpg", "secret": "8539463c41", "media": "photo", "latitude": "0", "id": "2580746035", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:34:42", "license": "1", "title": "IMG_5059", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3108/2581574430_5c31434afe_o.jpg", "secret": "fd0065648f", "media": "photo", "latitude": "0", "id": "2581574430", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:34:48", "license": "1", "title": "IMG_5060", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3128/2581575600_2863bd3e5a_o.jpg", "secret": "22822c2ae6", "media": "photo", "latitude": "0", "id": "2581575600", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:39:41", "license": "1", "title": "IMG_5061", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3041/2581576824_ed10296272_o.jpg", "secret": "45a671e281", "media": "photo", "latitude": "0", "id": "2581576824", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:40:49", "license": "1", "title": "IMG_5062", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3180/2580750511_6a3f271ff5_o.jpg", "secret": "f65f7b7f4d", "media": "photo", "latitude": "0", "id": "2580750511", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:41:10", "license": "1", "title": "IMG_5063", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3095/2580751993_eddb54692a_o.jpg", "secret": "7ee6f4e01a", "media": "photo", "latitude": "0", "id": "2580751993", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:43:07", "license": "1", "title": "IMG_5064", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3062/2580753271_e270c5833d_o.jpg", "secret": "4f28d4d682", "media": "photo", "latitude": "0", "id": "2580753271", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:43:31", "license": "1", "title": "IMG_5065", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2268/2580754221_213f02fbac_o.jpg", "secret": "8f0883238c", "media": "photo", "latitude": "0", "id": "2580754221", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:43:37", "license": "1", "title": "IMG_5066", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3077/2581582662_480c05c401_o.jpg", "secret": "6664e94e6a", "media": "photo", "latitude": "0", "id": "2581582662", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:43:41", "license": "1", "title": "IMG_5067", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3086/2580756415_c1c2fd5c92_o.jpg", "secret": "8a024225cb", "media": "photo", "latitude": "0", "id": "2580756415", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 15:43:47", "license": "1", "title": "IMG_5068", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3077/2580757505_9ca3ea2c0f_o.jpg", "secret": "726d48e9e1", "media": "photo", "latitude": "0", "id": "2580757505", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 16:08:27", "license": "1", "title": "IMG_5069", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3062/2581585784_2691db0c3c_o.jpg", "secret": "002dba51d6", "media": "photo", "latitude": "0", "id": "2581585784", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 16:10:07", "license": "1", "title": "IMG_5070", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3083/2580759793_154f5820a0_o.jpg", "secret": "68ff071ec3", "media": "photo", "latitude": "0", "id": "2580759793", "tags": "fathersdaynh"}, {"datetaken": "2008-06-14 16:10:26", "license": "1", "title": "IMG_5071", "text": "", "album_id": "72157605630785895", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3062/2581587994_072ff625c8_o.jpg", "secret": "10490d1309", "media": "photo", "latitude": "0", "id": "2581587994", "tags": "fathersdaynh"}, {"datetaken": "2008-06-15 15:22:51", "license": "4", "title": "IMG_7376.JPG", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3175/2582992308_e28ac00901_o.jpg", "secret": "0b6bffd4a6", "media": "photo", "latitude": "0", "id": "2582992308", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 15:23:39", "license": "4", "title": "IMG_7379.JPG", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3013/2582165707_7cdafd31c9_o.jpg", "secret": "c3588d81d9", "media": "photo", "latitude": "0", "id": "2582165707", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 15:23:49", "license": "4", "title": "IMG_7380.JPG", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3001/2582994998_414d6aa629_o.jpg", "secret": "da8e40d03a", "media": "photo", "latitude": "0", "id": "2582994998", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 15:29:17", "license": "4", "title": "IMG_7389.JPG", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3058/2582996500_9baa159477_o.jpg", "secret": "fdf5febc0f", "media": "photo", "latitude": "0", "id": "2582996500", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 15:30:14", "license": "4", "title": "IMG_7391.JPG", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3016/2582171145_f7596a6b82_o.jpg", "secret": "047090eeff", "media": "photo", "latitude": "0", "id": "2582171145", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 15:31:24", "license": "4", "title": "IMG_7401.jpg", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3043/2583000796_548e1ebc69_o.jpg", "secret": "fc9e20804f", "media": "photo", "latitude": "0", "id": "2583000796", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 15:34:35", "license": "4", "title": "IMG_7422.JPG", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3151/2582174211_bf6615675b_o.jpg", "secret": "e3234c76db", "media": "photo", "latitude": "0", "id": "2582174211", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 15:41:04", "license": "4", "title": "IMG_7436.JPG", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3065/2583004668_23d92fcbf2_o.jpg", "secret": "e3312ac93b", "media": "photo", "latitude": "0", "id": "2583004668", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 15:42:50", "license": "4", "title": "IMG_7447.JPG", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3085/2583007082_11326b8bcf_o.jpg", "secret": "631373d2da", "media": "photo", "latitude": "0", "id": "2583007082", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 15:45:26", "license": "4", "title": "IMG_7461.JPG", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3132/2582180191_c5b818315e_o.jpg", "secret": "58430534f1", "media": "photo", "latitude": "0", "id": "2582180191", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 15:45:49", "license": "4", "title": "IMG_7462.JPG", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3175/2583010022_9f39346d8a_o.jpg", "secret": "9ba52d9e9c", "media": "photo", "latitude": "0", "id": "2583010022", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 15:47:52", "license": "4", "title": "IMG_7471.jpg", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3048/2582185337_544a89ac56_o.jpg", "secret": "ce25026fd4", "media": "photo", "latitude": "0", "id": "2582185337", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 15:49:04", "license": "4", "title": "IMG_7474.jpg", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3074/2582188675_0c7234ef33_o.jpg", "secret": "829561dce9", "media": "photo", "latitude": "0", "id": "2582188675", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 15:49:36", "license": "4", "title": "IMG_7476.jpg", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3144/2582191447_071750e4a1_o.jpg", "secret": "d05ac56b96", "media": "photo", "latitude": "0", "id": "2582191447", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 15:50:40", "license": "4", "title": "IMG_7481.jpg", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3079/2583021318_1e60302c86_o.jpg", "secret": "af8499fba2", "media": "photo", "latitude": "0", "id": "2583021318", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 15:52:03", "license": "4", "title": "IMG_7484.JPG", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3183/2582195345_c2626c75f4_o.jpg", "secret": "3e3fc05da6", "media": "photo", "latitude": "0", "id": "2582195345", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 16:05:18", "license": "4", "title": "IMG_7485.JPG", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3027/2582197621_3322c1cd92_o.jpg", "secret": "c4743b0a95", "media": "photo", "latitude": "0", "id": "2582197621", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 16:07:12", "license": "4", "title": "IMG_7495.JPG", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3135/2583027736_76cbfecfd3_o.jpg", "secret": "37e50d97b1", "media": "photo", "latitude": "0", "id": "2583027736", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 16:09:28", "license": "4", "title": "IMG_7496.JPG", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3069/2583029724_6474a58fbb_o.jpg", "secret": "ef25a012ba", "media": "photo", "latitude": "0", "id": "2583029724", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 16:12:28", "license": "4", "title": "IMG_7500.jpg", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3118/2582204075_05f7fd5570_o.jpg", "secret": "fd597808d5", "media": "photo", "latitude": "0", "id": "2582204075", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 16:12:37", "license": "4", "title": "IMG_7502.jpg", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3148/2582206265_616bebb130_o.jpg", "secret": "64e5e565aa", "media": "photo", "latitude": "0", "id": "2582206265", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 16:12:57", "license": "4", "title": "IMG_7503.jpg", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3267/2582208083_861663c4a7_o.jpg", "secret": "6211c9f834", "media": "photo", "latitude": "0", "id": "2582208083", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 16:15:59", "license": "4", "title": "Father's Day -- Bellevue Park in Silver Lake", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3264/2583037036_b02674bb03_o.jpg", "secret": "0d0d5e4127", "media": "photo", "latitude": "0", "id": "2583037036", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 16:16:12", "license": "4", "title": "IMG_7512.jpg", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3073/2583038298_e700ec338b_o.jpg", "secret": "13d934edfa", "media": "photo", "latitude": "0", "id": "2583038298", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 16:16:19", "license": "4", "title": "IMG_7514.jpg", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3187/2582211735_a6e6c934fc_o.jpg", "secret": "b6a2f09e99", "media": "photo", "latitude": "0", "id": "2582211735", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 16:17:25", "license": "4", "title": "IMG_7524.jpg", "text": "", "album_id": "72157605638688643", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3097/2582214197_919446aa2c_o.jpg", "secret": "9469cbdde4", "media": "photo", "latitude": "0", "id": "2582214197", "tags": "silverlake fathersday kitesofsilverlake"}, {"datetaken": "2008-06-15 12:55:54", "license": "5", "title": "Happy Mother's Day... on Father's Day", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3192/2586798951_3a3cd6f310_o.jpg", "secret": "893f04de16", "media": "photo", "latitude": "0", "id": "2586798951", "tags": "hike fathersday brettlider tomalespoint happymothersday hipstersgohiking theothersideofthehipsterforcefield"}, {"datetaken": "2008-06-15 13:04:20", "license": "5", "title": "Blake on the trail", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3129/2583415012_a162df297f_o.jpg", "secret": "89bc43191f", "media": "photo", "latitude": "0", "id": "2583415012", "tags": "tomalespoint blakeengel"}, {"datetaken": "2008-06-15 14:36:45", "license": "5", "title": "Lychen", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3114/2583415088_07ee5b5d82_o.jpg", "secret": "f26c2653d5", "media": "photo", "latitude": "0", "id": "2583415088", "tags": "tomalespoint"}, {"datetaken": "2008-06-15 15:54:20", "license": "5", "title": "Welcome / No Trespassing", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3047/2583415190_c86cb49506_o.jpg", "secret": "382e025d91", "media": "photo", "latitude": "0", "id": "2583415190", "tags": "marincounty outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 15:54:29", "license": "5", "title": "Blake & Margaret", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3138/2583415264_c7e922b546_o.jpg", "secret": "3b007b53b4", "media": "photo", "latitude": "0", "id": "2583415264", "tags": "marincounty blakeengel margaretshear outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 17:17:48", "license": "5", "title": "Long line of cars", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3183/2582585999_7c9ef9b2e9_o.jpg", "secret": "3303c67b87", "media": "photo", "latitude": "0", "id": "2582585999", "tags": "marincounty outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 17:17:58", "license": "5", "title": "Intro", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3074/2582586039_b3ee3f6f38_o.jpg", "secret": "ef7b517a84", "media": "photo", "latitude": "0", "id": "2582586039", "tags": "marincounty outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 17:44:13", "license": "5", "title": "Tour", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3139/2583415438_969c7600e9_o.jpg", "secret": "4de219537b", "media": "photo", "latitude": "0", "id": "2583415438", "tags": "marincounty outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 17:50:26", "license": "5", "title": "Delicious", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3057/2583415536_e3467e9ef7_o.jpg", "secret": "4a7acd223f", "media": "photo", "latitude": "0", "id": "2583415536", "tags": "marincounty outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 17:52:49", "license": "5", "title": "Foam", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3002/2583415604_3b7f4e3e7d_o.jpg", "secret": "5e1dd74ea0", "media": "photo", "latitude": "0", "id": "2583415604", "tags": "marincounty outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 17:52:58", "license": "5", "title": "Pictograms", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3126/2582586303_89c8e2de36_o.jpg", "secret": "8d5ff5cb11", "media": "photo", "latitude": "0", "id": "2582586303", "tags": "marincounty outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 17:58:04", "license": "5", "title": "Gasoline", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3191/2583415676_800081de57_o.jpg", "secret": "b5c6e16027", "media": "photo", "latitude": "0", "id": "2583415676", "tags": "marincounty outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 18:05:30", "license": "5", "title": "Ma'am", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3108/2583415728_2f8f80c737_o.jpg", "secret": "94e4dd687d", "media": "photo", "latitude": "0", "id": "2583415728", "tags": "marincounty kenneth blakeengel outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 18:05:33", "license": "5", "title": "Blake being weird", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3260/2583415780_5d3cd691d2_o.jpg", "secret": "75b05237cb", "media": "photo", "latitude": "0", "id": "2583415780", "tags": "marincounty kenneth blakeengel outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 18:05:39", "license": "5", "title": "Margaret being pretty", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3017/2582586739_6926f8fc4a_o.jpg", "secret": "38ffe3ce3e", "media": "photo", "latitude": "0", "id": "2582586739", "tags": "marincounty margaretshear outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 18:18:17", "license": "5", "title": "Hat stealer", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3185/2583416080_42c7d755db_o.jpg", "secret": "50daea23bf", "media": "photo", "latitude": "0", "id": "2583416080", "tags": "marincounty kenneth outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 18:22:23", "license": "5", "title": "Looks better in them than I do", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3092/2583416156_58047427c5_o.jpg", "secret": "004b79a62b", "media": "photo", "latitude": "0", "id": "2583416156", "tags": "marincounty margaretshear outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 18:22:36", "license": "5", "title": "Borrowing from the people with sun at their backs", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3255/2583416224_9bc4c893ef_o.jpg", "secret": "0d3ec2aee3", "media": "photo", "latitude": "0", "id": "2583416224", "tags": "marincounty blakeengel margaretshear outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 18:23:10", "license": "5", "title": "Stolen hats and glasses and...", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3258/2582587033_b760f3d381_o.jpg", "secret": "6ccf6c2247", "media": "photo", "latitude": "0", "id": "2582587033", "tags": "marincounty blakeengel outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 18:23:18", "license": "5", "title": "Stolen hats and glasses and...", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3062/2583416362_4b52616753_o.jpg", "secret": "11eac5b22a", "media": "photo", "latitude": "0", "id": "2583416362", "tags": "marincounty kenneth outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 18:25:05", "license": "5", "title": "Stealing right back", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3273/2582587219_2a2dd9ec9b_o.jpg", "secret": "18779cc656", "media": "photo", "latitude": "0", "id": "2582587219", "tags": "marincounty brettlider outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 18:52:48", "license": "5", "title": "Wind mill", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2114/2583416512_c656b188a8_o.jpg", "secret": "7eb1d17c1e", "media": "photo", "latitude": "0", "id": "2583416512", "tags": "marincounty outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 19:32:06", "license": "5", "title": "Standing tall", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3034/2583416580_73e350034c_o.jpg", "secret": "7238c0fa99", "media": "photo", "latitude": "0", "id": "2583416580", "tags": "marincounty margaretshear outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 19:34:28", "license": "5", "title": "To infinity and beyond", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3081/2582587409_8af0c60f74_o.jpg", "secret": "d5e37fe12f", "media": "photo", "latitude": "0", "id": "2582587409", "tags": "marincounty outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 20:39:05", "license": "5", "title": "Gas is so expensive", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3126/2582587505_dd544fa36c_o.jpg", "secret": "1b3ab844ea", "media": "photo", "latitude": "0", "id": "2582587505", "tags": "marincounty outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 20:48:34", "license": "5", "title": "Driving out, near sunset", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3128/2583416810_4b396f68b9_o.jpg", "secret": "5d14ebe45c", "media": "photo", "latitude": "0", "id": "2583416810", "tags": "marincounty outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2008-06-15 20:48:39", "license": "5", "title": "Fading light", "text": "", "album_id": "72157605635232532", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3082/2583416874_bc41ba57d2_o.jpg", "secret": "5a300f5692", "media": "photo", "latitude": "0", "id": "2583416874", "tags": "marincounty outstandinginthefield alfresodining devilsgulchranch"}, {"datetaken": "2014-06-15 13:23:49", "license": "3", "title": "Ginger and the Crab", "text": "", "album_id": "72157644824250557", "longitude": "-75.343523", "url_o": "https://farm4.staticflickr.com/3925/14265872990_00cec090bd_o.jpg", "secret": "06fe8b7dd6", "media": "photo", "latitude": "39.897708", "id": "14265872990", "tags": ""}, {"datetaken": "2014-06-15 15:31:00", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3886/14428427866_b47a71acd5_o.jpg", "secret": "08233cc1fc", "media": "photo", "latitude": "0", "id": "14428427866", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:31:03", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3906/14450429844_4e6682d005_o.jpg", "secret": "d71a69ca08", "media": "photo", "latitude": "0", "id": "14450429844", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:31:14", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2905/14428428976_89620c3b79_o.jpg", "secret": "bae93079b7", "media": "photo", "latitude": "0", "id": "14428428976", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:31:24", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2934/14265108997_157f34d470_o.jpg", "secret": "3f77a1b25e", "media": "photo", "latitude": "0", "id": "14265108997", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:32:07", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3872/14450195182_df10e5f21e_o.jpg", "secret": "8f6c1af039", "media": "photo", "latitude": "0", "id": "14450195182", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:32:17", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3854/14448192431_819ce9e433_o.jpg", "secret": "3b3aaa609c", "media": "photo", "latitude": "0", "id": "14448192431", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:32:27", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2911/14448192961_e190cd2be6_o.jpg", "secret": "002c8a11e1", "media": "photo", "latitude": "0", "id": "14448192961", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:32:43", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3916/14450197412_ce538fd7e2_o.jpg", "secret": "71a2882dbe", "media": "photo", "latitude": "0", "id": "14450197412", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:34:50", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3905/14471723603_dde0bbe1d3_o.jpg", "secret": "4d279de57a", "media": "photo", "latitude": "0", "id": "14471723603", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:35:19", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3849/14450198742_99e115f41c_o.jpg", "secret": "05500338d5", "media": "photo", "latitude": "0", "id": "14450198742", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:36:24", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3881/14265114507_0531e4214e_o.jpg", "secret": "5d7d319a75", "media": "photo", "latitude": "0", "id": "14265114507", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:36:27", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3908/14450437184_c4f8572a02_o.jpg", "secret": "7a855c11b7", "media": "photo", "latitude": "0", "id": "14450437184", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:36:50", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3867/14264906769_d79be0d248_o.jpg", "secret": "c16196fbfa", "media": "photo", "latitude": "0", "id": "14264906769", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:36:59", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5471/14451555795_6db6138151_o.jpg", "secret": "7707f767ea", "media": "photo", "latitude": "0", "id": "14451555795", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:37:48", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3835/14451556175_c11f0d8f1e_o.jpg", "secret": "855563253e", "media": "photo", "latitude": "0", "id": "14451556175", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:38:24", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3916/14264959228_e69d66f06a_o.jpg", "secret": "0a19e78922", "media": "photo", "latitude": "0", "id": "14264959228", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:55:24", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3836/14471729073_2be58e072b_o.jpg", "secret": "8eab402fed", "media": "photo", "latitude": "0", "id": "14471729073", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:55:43", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5514/14265118467_4a70a544cc_o.jpg", "secret": "388db757e1", "media": "photo", "latitude": "0", "id": "14265118467", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:55:49", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3860/14264961198_01e84fa9f0_o.jpg", "secret": "638b15d844", "media": "photo", "latitude": "0", "id": "14264961198", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2014-06-15 15:55:54", "license": "3", "title": "Crabs and Dads 2014", "text": "", "album_id": "72157644824250557", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3870/14450206902_0f801b5541_o.jpg", "secret": "7210d5c5dd", "media": "photo", "latitude": "0", "id": "14450206902", "tags": "family party dads crabs fathersday swarthmore"}, {"datetaken": "2010-12-17 18:00:30", "license": "5", "title": "Welcome to Gallup, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.755754", "url_o": "https://farm6.staticflickr.com/5283/5271438744_c7b3c114ff_o.jpg", "secret": "ef04a75d72", "media": "photo", "latitude": "35.523686", "id": "5271438744", "tags": "arizona"}, {"datetaken": "2010-12-17 18:03:28", "license": "5", "title": "Route 66, Downtown Gallup, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.742825", "url_o": "https://farm6.staticflickr.com/5243/5270830727_80a531b0a3_o.jpg", "secret": "4dda964d03", "media": "photo", "latitude": "35.528140", "id": "5270830727", "tags": "arizona"}, {"datetaken": "2010-12-17 18:03:59", "license": "5", "title": "Route 66, Downtown Gallup, New Mexico 2", "text": "", "album_id": "72157625498117651", "longitude": "-108.742825", "url_o": "https://farm6.staticflickr.com/5245/5271440558_7a7c8be234_o.jpg", "secret": "12479801e9", "media": "photo", "latitude": "35.528140", "id": "5271440558", "tags": "arizona"}, {"datetaken": "2010-12-17 18:45:58", "license": "5", "title": "Jerry's Cafe, Gallup, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.744006", "url_o": "https://farm6.staticflickr.com/5244/5271445558_376165e6f4_o.jpg", "secret": "39878e9718", "media": "photo", "latitude": "35.526817", "id": "5271445558", "tags": "arizona"}, {"datetaken": "2010-12-19 11:59:40", "license": "5", "title": "Entering Ramah, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.487479", "url_o": "https://farm6.staticflickr.com/5087/5276067431_8a3217d81b_o.jpg", "secret": "919a3023af", "media": "photo", "latitude": "35.126525", "id": "5276067431", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:00:53", "license": "5", "title": "Ramah, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.494871", "url_o": "https://farm6.staticflickr.com/5170/5276067887_a800e12ffb_o.jpg", "secret": "dfaa2572a9", "media": "photo", "latitude": "35.132807", "id": "5276067887", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:01:37", "license": "5", "title": "Agricultural Area Just Outside of Ramah, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.498487", "url_o": "https://farm6.staticflickr.com/5244/5276679510_0098fd6cf4_o.jpg", "secret": "a82e3254d6", "media": "photo", "latitude": "35.133325", "id": "5276679510", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:04:04", "license": "5", "title": "Mule Deer in Ramah, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.511533", "url_o": "https://farm6.staticflickr.com/5121/5276068797_60466d6454_o.jpg", "secret": "7a9c42e676", "media": "photo", "latitude": "35.133325", "id": "5276068797", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:04:15", "license": "5", "title": "Mule Deer, Ramah, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.511533", "url_o": "https://farm6.staticflickr.com/5286/5276680462_1290d19e0f_o.jpg", "secret": "9493abd28c", "media": "photo", "latitude": "35.133325", "id": "5276680462", "tags": "newmexico mckinley muledeer zuni"}, {"datetaken": "2010-12-19 12:04:59", "license": "5", "title": "Route 53 Near Ramah, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.511533", "url_o": "https://farm6.staticflickr.com/5082/5276069913_1295afe45c_o.jpg", "secret": "bd465b3b16", "media": "photo", "latitude": "35.133325", "id": "5276069913", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:11:37", "license": "5", "title": "Route 53 Between Ramah and Zuni Pueblo, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.592042", "url_o": "https://farm6.staticflickr.com/5128/5276070333_deb253dfcb_o.jpg", "secret": "a0e1041a56", "media": "photo", "latitude": "35.108323", "id": "5276070333", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:24:25", "license": "5", "title": "Butte seen from Black Rock", "text": "", "album_id": "72157625498117651", "longitude": "-108.783220", "url_o": "https://farm6.staticflickr.com/5125/5276681888_b75f12b8b8_o.jpg", "secret": "8d12935858", "media": "photo", "latitude": "35.081374", "id": "5276681888", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:24:46", "license": "5", "title": "Westbound State Route 53 in Black Rock, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.783220", "url_o": "https://farm6.staticflickr.com/5041/5276682468_92b683ed24_o.jpg", "secret": "4232eb3f23", "media": "photo", "latitude": "35.081374", "id": "5276682468", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:26:04", "license": "5", "title": "Black Rock, New Mexico in Zuni Indian Reservation", "text": "", "album_id": "72157625498117651", "longitude": "-108.783220", "url_o": "https://farm6.staticflickr.com/5248/5276682878_9393404056_o.jpg", "secret": "3f95eb3d37", "media": "photo", "latitude": "35.081374", "id": "5276682878", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:27:03", "license": "5", "title": "Approaching Zuni Pueblo, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.796105", "url_o": "https://farm6.staticflickr.com/5123/5276683392_ef8b4f5dc8_o.jpg", "secret": "bb65268b66", "media": "photo", "latitude": "35.079565", "id": "5276683392", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:28:30", "license": "5", "title": "Welcome to Zuni!", "text": "", "album_id": "72157625498117651", "longitude": "-108.822498", "url_o": "https://farm6.staticflickr.com/5121/5276072677_f590a96076_o.jpg", "secret": "6a54b69656", "media": "photo", "latitude": "35.075667", "id": "5276072677", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:29:25", "license": "5", "title": "Pueblo of Zuni Interpretive Sign, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.822498", "url_o": "https://farm6.staticflickr.com/5290/5276073257_7aa00768cc_o.jpg", "secret": "790c46b6f5", "media": "photo", "latitude": "35.075667", "id": "5276073257", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:29:36", "license": "5", "title": "Points of Interest near the Pueblo of Zuni, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.822498", "url_o": "https://farm6.staticflickr.com/5010/5276073899_9590d55184_o.jpg", "secret": "218623aa13", "media": "photo", "latitude": "35.075667", "id": "5276073899", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:32:45", "license": "5", "title": "Zuni Pueblo Visitor Center, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.851509", "url_o": "https://farm6.staticflickr.com/5086/5276685646_4a9c2a8cbc_o.jpg", "secret": "5ff801a416", "media": "photo", "latitude": "35.068739", "id": "5276685646", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:33:15", "license": "5", "title": "Zuni Pueblo, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.851509", "url_o": "https://farm6.staticflickr.com/5170/5276074839_15ea2df284_o.jpg", "secret": "3a02ef4205", "media": "photo", "latitude": "35.068739", "id": "5276074839", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:33:29", "license": "5", "title": "Zuni, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.851509", "url_o": "https://farm6.staticflickr.com/5122/5276686620_65a621d3e8_o.jpg", "secret": "7fde24ac11", "media": "photo", "latitude": "35.068739", "id": "5276686620", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:33:39", "license": "5", "title": "All Tribes Trading Post, Zuni Pueblo, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.851509", "url_o": "https://farm6.staticflickr.com/5241/5276687022_0d8fb52f8b_o.jpg", "secret": "79fc9e5c3d", "media": "photo", "latitude": "35.068739", "id": "5276687022", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:33:51", "license": "5", "title": "State Route 53 Through Zuni Pueblo, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.851509", "url_o": "https://farm6.staticflickr.com/5048/5276076251_2f1506ac83_o.jpg", "secret": "82ef0a1952", "media": "photo", "latitude": "35.068739", "id": "5276076251", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:34:06", "license": "5", "title": "Driving Through Zuni Pueblo, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.851509", "url_o": "https://farm6.staticflickr.com/5081/5276076593_8aa27fe670_o.jpg", "secret": "1d9114eb70", "media": "photo", "latitude": "35.068739", "id": "5276076593", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:34:25", "license": "5", "title": "Dog in Zuni Pueblo, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.851509", "url_o": "https://farm6.staticflickr.com/5046/5276077313_d0a790fec4_o.jpg", "secret": "8051f71b88", "media": "photo", "latitude": "35.068739", "id": "5276077313", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:34:56", "license": "5", "title": "Leaving Zuni Pueblo, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.851509", "url_o": "https://farm6.staticflickr.com/5168/5276077681_e56b85778a_o.jpg", "secret": "f6ca1e6bfd", "media": "photo", "latitude": "35.068739", "id": "5276077681", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:35:18", "license": "5", "title": "55 Miles to St. Johns from Zuni Pueblo, New Mexico", "text": "", "album_id": "72157625498117651", "longitude": "-108.864727", "url_o": "https://farm6.staticflickr.com/5081/5276689398_49df72de52_o.jpg", "secret": "1a20185ab0", "media": "photo", "latitude": "35.068423", "id": "5276689398", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:39:14", "license": "5", "title": "Wide Open Spaces in Zuni Country Between Zuni Pueblo and the Arizona Border", "text": "", "album_id": "72157625498117651", "longitude": "-108.923091", "url_o": "https://farm6.staticflickr.com/5128/5276689790_fd789e1611_o.jpg", "secret": "8ecae2a9de", "media": "photo", "latitude": "35.058543", "id": "5276689790", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:45:43", "license": "5", "title": "Entering Zuni Land at the Arizona-New Mexico Border, New Mexico State Route 53", "text": "", "album_id": "72157625498117651", "longitude": "-109.046108", "url_o": "https://farm6.staticflickr.com/5003/5276078857_b03868ca9e_o.jpg", "secret": "87b685f18d", "media": "photo", "latitude": "35.020068", "id": "5276078857", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2010-12-19 12:48:13", "license": "5", "title": "Welcome to New Mexico, State Route 53 Eastbound", "text": "", "album_id": "72157625498117651", "longitude": "-109.046108", "url_o": "https://farm6.staticflickr.com/5286/5276691252_952e8513e4_o.jpg", "secret": "775a613dbd", "media": "photo", "latitude": "35.020068", "id": "5276691252", "tags": "newmexico mckinley zuni newmexicotripii"}, {"datetaken": "2011-06-19 11:46:37", "license": "3", "title": "Inspection from Cousin Isaiah", "text": "", "album_id": "72157626882487487", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5184/5853218453_044024114c_o.jpg", "secret": "5154eefef7", "media": "photo", "latitude": "0", "id": "5853218453", "tags": "family adam walker isaiah fathersday amalia 2011"}, {"datetaken": "2011-06-19 12:47:17", "license": "3", "title": "Visit with Ggma Adam", "text": "", "album_id": "72157626882487487", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2489/5853771226_d460b778c8_o.jpg", "secret": "de24408335", "media": "photo", "latitude": "0", "id": "5853771226", "tags": "family adam fathersday amalia 2011"}, {"datetaken": "2011-06-19 14:01:08", "license": "3", "title": "Cuddle time with Nana", "text": "", "album_id": "72157626882487487", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5269/5853771632_fba762b943_o.jpg", "secret": "cca0b50a1f", "media": "photo", "latitude": "0", "id": "5853771632", "tags": "family adam fathersday amalia 2011"}, {"datetaken": "2011-06-19 14:44:34", "license": "3", "title": "Happy Father's Day Papa!", "text": "", "album_id": "72157626882487487", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2517/5853772178_b62d9a41ca_o.jpg", "secret": "4eeef2b661", "media": "photo", "latitude": "0", "id": "5853772178", "tags": "family adam fathersday amalia 2011"}, {"datetaken": "2011-06-19 14:46:05", "license": "3", "title": "Happy Father's Day Adam Men!", "text": "", "album_id": "72157626882487487", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5271/5853772638_161ef805a8_o.jpg", "secret": "0e41e3c618", "media": "photo", "latitude": "0", "id": "5853772638", "tags": "family adam matt fathersday amalia 2011"}, {"datetaken": "2011-06-19 14:48:25", "license": "3", "title": "Visit with Great Grandparents Adams", "text": "", "album_id": "72157626882487487", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5313/5853773180_4f8bccf9eb_o.jpg", "secret": "118ce4ed52", "media": "photo", "latitude": "0", "id": "5853773180", "tags": "family adam matt fathersday amalia 2011"}, {"datetaken": "2011-06-19 14:49:14", "license": "3", "title": "Happy First Father's Day Daddy", "text": "", "album_id": "72157626882487487", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3144/5853773690_bc102a2920_o.jpg", "secret": "3a547ca775", "media": "photo", "latitude": "0", "id": "5853773690", "tags": "family matt fathersday amalia 2011"}, {"datetaken": "2011-06-19 15:36:51", "license": "3", "title": "Meeting Ggpa Laurie!", "text": "", "album_id": "72157626882487487", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3045/5853223571_45a0e20885_o.jpg", "secret": "b16c4bd4dd", "media": "photo", "latitude": "0", "id": "5853223571", "tags": "family laurie fathersday amalia 2011"}, {"datetaken": "2011-06-19 15:37:00", "license": "3", "title": "Happy Father's Day Laurie Men!", "text": "", "album_id": "72157626882487487", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2547/5853221861_7a50297f18_o.jpg", "secret": "726f0d7be5", "media": "photo", "latitude": "0", "id": "5853221861", "tags": "family laurie fathersday amalia 2011"}, {"datetaken": "2011-06-19 15:39:13", "license": "3", "title": "Meeting Great Nana Laurie!", "text": "", "album_id": "72157626882487487", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3069/5853222289_2221a0dd99_o.jpg", "secret": "59fd37a42f", "media": "photo", "latitude": "0", "id": "5853222289", "tags": "family laurie fathersday amalia 2011"}, {"datetaken": "2011-06-19 19:18:46", "license": "3", "title": "Air Time", "text": "", "album_id": "72157626882487487", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3254/5853775370_ecd3ec8664_o.jpg", "secret": "0e5f9de219", "media": "photo", "latitude": "0", "id": "5853775370", "tags": "family matt fathersday amalia 2011"}, {"datetaken": "2008-06-15 11:50:20", "license": "4", "title": "TSS Father's Day Picnic", "text": "", "album_id": "72157606307817709", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3092/2688786489_25c8262901_o.jpg", "secret": "d02c947220", "media": "photo", "latitude": "0", "id": "2688786489", "tags": ""}, {"datetaken": "2008-06-15 11:50:31", "license": "4", "title": "TSS Father's Day Picnic", "text": "", "album_id": "72157606307817709", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3226/2688787325_4451a27836_o.jpg", "secret": "425c02151b", "media": "photo", "latitude": "0", "id": "2688787325", "tags": ""}, {"datetaken": "2008-06-15 11:50:54", "license": "4", "title": "TSS Father's Day Picnic", "text": "", "album_id": "72157606307817709", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3130/2688787897_5a1c6abdac_o.jpg", "secret": "7ecd33646a", "media": "photo", "latitude": "0", "id": "2688787897", "tags": ""}, {"datetaken": "2008-06-15 11:51:08", "license": "4", "title": "TSS Father's Day Picnic", "text": "", "album_id": "72157606307817709", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3123/2689601542_97a787ae7a_o.jpg", "secret": "8f7a34bf42", "media": "photo", "latitude": "0", "id": "2689601542", "tags": ""}, {"datetaken": "2008-06-15 11:51:19", "license": "4", "title": "TSS Father's Day Picnic", "text": "", "album_id": "72157606307817709", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3158/2688789159_e03733f898_o.jpg", "secret": "0067f4f932", "media": "photo", "latitude": "0", "id": "2688789159", "tags": ""}, {"datetaken": "2008-06-15 11:51:30", "license": "4", "title": "TSS Father's Day Picnic", "text": "", "album_id": "72157606307817709", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3283/2688789659_382f89ebd8_o.jpg", "secret": "a4eaa529b2", "media": "photo", "latitude": "0", "id": "2688789659", "tags": ""}, {"datetaken": "2008-06-15 11:53:46", "license": "4", "title": "TSS Father's Day Picnic", "text": "", "album_id": "72157606307817709", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3169/2689603370_e1ab4c60ef_o.jpg", "secret": "360bb5212f", "media": "photo", "latitude": "0", "id": "2689603370", "tags": ""}, {"datetaken": "2008-06-15 11:53:54", "license": "4", "title": "TSS Father's Day Picnic", "text": "", "album_id": "72157606307817709", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3124/2688791133_e43804208b_o.jpg", "secret": "ca6399c5e5", "media": "photo", "latitude": "0", "id": "2688791133", "tags": ""}, {"datetaken": "2008-06-15 11:54:43", "license": "4", "title": "TSS Father's Day Picnic", "text": "", "album_id": "72157606307817709", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3273/2689604842_259bc23422_o.jpg", "secret": "9bd7ca4a21", "media": "photo", "latitude": "0", "id": "2689604842", "tags": ""}, {"datetaken": "2008-06-15 11:55:03", "license": "4", "title": "TSS Father's Day Picnic", "text": "", "album_id": "72157606307817709", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3230/2688792633_7691651e1a_o.jpg", "secret": "ca7101e5e8", "media": "photo", "latitude": "0", "id": "2688792633", "tags": ""}, {"datetaken": "2008-06-15 11:55:14", "license": "4", "title": "TSS Father's Day Picnic", "text": "", "album_id": "72157606307817709", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3186/2688793245_dc1bbe484b_o.jpg", "secret": "254ae99020", "media": "photo", "latitude": "0", "id": "2688793245", "tags": ""}, {"datetaken": "2008-06-15 11:55:27", "license": "4", "title": "TSS Father's Day Picnic", "text": "", "album_id": "72157606307817709", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3077/2688793679_1d997ebf8a_o.jpg", "secret": "8d19c8834a", "media": "photo", "latitude": "0", "id": "2688793679", "tags": ""}, {"datetaken": "2008-06-15 11:55:46", "license": "4", "title": "TSS Father's Day Picnic", "text": "", "album_id": "72157606307817709", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3127/2688794541_ffeab5aa51_o.jpg", "secret": "87abd7d19b", "media": "photo", "latitude": "0", "id": "2688794541", "tags": ""}, {"datetaken": "2008-06-15 11:56:25", "license": "4", "title": "TSS Father's Day Picnic", "text": "", "album_id": "72157606307817709", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3068/2689608102_8c158658c0_o.jpg", "secret": "83ce9ccb26", "media": "photo", "latitude": "0", "id": "2689608102", "tags": ""}, {"datetaken": "2008-06-15 11:56:40", "license": "4", "title": "TSS Father's Day Picnic", "text": "", "album_id": "72157606307817709", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3287/2689608436_cb6e07aafd_o.jpg", "secret": "116b16c002", "media": "photo", "latitude": "0", "id": "2689608436", "tags": ""}, {"datetaken": "2008-12-24 20:14:21", "license": "2", "title": "Chayan and Cheryl", "text": "", "album_id": "72157611736381187", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3102/3144651580_8b47f91abc_o.jpg", "secret": "b571177bb9", "media": "photo", "latitude": "0", "id": "3144651580", "tags": "christmas family baby cute dinner tan cheeks cheryl chubby ck carry hold koay chayan"}, {"datetaken": "2008-12-24 20:14:44", "license": "2", "title": "Mom laughing at us", "text": "", "album_id": "72157611736381187", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3075/3144653700_dcab58d3d8_o.jpg", "secret": "fd772042ef", "media": "photo", "latitude": "0", "id": "3144653700", "tags": "christmas family dinner ck koay"}, {"datetaken": "2008-12-24 20:16:04", "license": "2", "title": "Ming Han", "text": "", "album_id": "72157611736381187", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3247/3144658124_c651f8394b_o.jpg", "secret": "69a50fe0ef", "media": "photo", "latitude": "0", "id": "3144658124", "tags": "christmas family look dinner host teh surprised ck ming han koay"}, {"datetaken": "2008-12-24 20:18:15", "license": "2", "title": "Chayan and Sisi", "text": "", "album_id": "72157611736381187", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3080/3144660324_327b56d66b_o.jpg", "secret": "be9e76f4b1", "media": "photo", "latitude": "0", "id": "3144660324", "tags": "christmas family baby cute dinner mother ck sisi cubby koay chayam lithin"}, {"datetaken": "2008-12-24 20:18:50", "license": "2", "title": "Chayan", "text": "", "album_id": "72157611736381187", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3218/3143835903_181599421a_o.jpg", "secret": "24f3069c49", "media": "photo", "latitude": "0", "id": "3143835903", "tags": "christmas family baby cute look dinner eyes cheeks surprised curious chubby ck koay chayan"}, {"datetaken": "2008-12-24 20:23:54", "license": "2", "title": "My contribution", "text": "", "album_id": "72157611736381187", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3212/3144664688_72f8d2f450_o.jpg", "secret": "67375be732", "media": "photo", "latitude": "0", "id": "3144664688", "tags": "christmas family dinner rich pasta delicious spaghetti ck creamy koay cabonarameal"}, {"datetaken": "2008-12-24 20:24:05", "license": "2", "title": "Roast Chicken", "text": "", "album_id": "72157611736381187", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3253/3144666540_f059daf159_o.jpg", "secret": "00e498769b", "media": "photo", "latitude": "0", "id": "3144666540", "tags": "christmas family chicken dinner juicy jamie oliver ham ck roasted koay"}, {"datetaken": "2008-12-24 20:26:01", "license": "2", "title": "Christmas Dinner at Celeste and Ming Han's", "text": "", "album_id": "72157611736381187", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3130/3144668424_b2056f5d3f_o.jpg", "secret": "18f16718a3", "media": "photo", "latitude": "0", "id": "3144668424", "tags": "christmas family dinner mom tan mother richard ck ming han sisi celeste koay chayan lithin dadcheryl"}, {"datetaken": "2008-12-25 19:49:51", "license": "2", "title": "Karen, McKenzie and Taylor", "text": "", "album_id": "72157611736381187", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3291/3143843017_914a0f873d_o.jpg", "secret": "c7a76c471d", "media": "photo", "latitude": "0", "id": "3143843017", "tags": "christmas family silly hat dinner tan karen taylor ribs cox ck mckenzie damansara koay vintry"}, {"datetaken": "2008-12-25 20:36:31", "license": "2", "title": "Joe and Jo", "text": "", "album_id": "72157611736381187", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3224/3143844805_0f74f8ed85_o.jpg", "secret": "eb3f631661", "media": "photo", "latitude": "0", "id": "3143844805", "tags": "christmas family dinner tan joe jo ribs cox ck damansara koay vintry"}, {"datetaken": "2008-12-25 21:14:09", "license": "2", "title": "Jo and Dad", "text": "", "album_id": "72157611736381187", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3289/3143846721_5e376c24b9_o.jpg", "secret": "1cf13d6977", "media": "photo", "latitude": "0", "id": "3143846721", "tags": "christmas camera family dinner daddy nikon tan jo ronnie ck fatherinlaw damansara koay vintry"}, {"datetaken": "2008-12-25 21:29:38", "license": "2", "title": "Ginny and Myke", "text": "", "album_id": "72157611736381187", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3284/3144675790_e9b9501fd0_o.jpg", "secret": "de53341a9f", "media": "photo", "latitude": "0", "id": "3144675790", "tags": "christmas family silly smile face dinner tan calvin ribs grin lai ck hobbes mykel snarl damansara ginny koay vintry"}, {"datetaken": "2008-12-25 22:33:18", "license": "2", "title": "Mummy", "text": "", "album_id": "72157611736381187", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3237/3143850391_979395617d_o.jpg", "secret": "de57120520", "media": "photo", "latitude": "0", "id": "3143850391", "tags": "christmas family red smile dinner mummy ck motherinlaw koay"}, {"datetaken": "2007-06-17 07:56:15", "license": "2", "title": "20070617_Prostate_0001", "text": "", "album_id": "72157602795343231", "longitude": "-113.547112", "url_o": "https://farm3.staticflickr.com/2108/1803115294_2262097164_o.jpg", "secret": "14edc8de7f", "media": "photo", "latitude": "53.510911", "id": "1803115294", "tags": "fathersday 2007 prostatecancer"}, {"datetaken": "2007-06-17 08:29:21", "license": "2", "title": "20070617_Prostate_0002", "text": "", "album_id": "72157602795343231", "longitude": "-113.547112", "url_o": "https://farm3.staticflickr.com/2345/1802273787_bb64cdcb7b_o.jpg", "secret": "1e53eb2a01", "media": "photo", "latitude": "53.510911", "id": "1802273787", "tags": "fathersday 2007 prostatecancer"}, {"datetaken": "2007-06-17 08:29:41", "license": "2", "title": "20070617_Prostate_0003", "text": "", "album_id": "72157602795343231", "longitude": "-113.547112", "url_o": "https://farm3.staticflickr.com/2183/1802273989_3d52cb0ab6_o.jpg", "secret": "e4dbf09ad4", "media": "photo", "latitude": "53.510911", "id": "1802273989", "tags": "fathersday 2007 prostatecancer"}, {"datetaken": "2007-06-17 08:31:28", "license": "2", "title": "20070617_Prostate_0004", "text": "", "album_id": "72157602795343231", "longitude": "-113.547112", "url_o": "https://farm3.staticflickr.com/2252/1803115934_eb348dccff_o.jpg", "secret": "5e1b4ebeb8", "media": "photo", "latitude": "53.510911", "id": "1803115934", "tags": "fathersday 2007 prostatecancer"}, {"datetaken": "2007-06-17 08:33:48", "license": "2", "title": "20070617_Prostate_0005", "text": "", "album_id": "72157602795343231", "longitude": "-113.546565", "url_o": "https://farm3.staticflickr.com/2039/1802274513_de3fd2f77e_o.jpg", "secret": "8cb54e0bd8", "media": "photo", "latitude": "53.510388", "id": "1802274513", "tags": "fathersday 2007 prostatecancer"}, {"datetaken": "2007-06-17 09:05:15", "license": "2", "title": "20070617_Prostate_0006", "text": "", "album_id": "72157602795343231", "longitude": "-113.547112", "url_o": "https://farm3.staticflickr.com/2024/1802274693_3210f48f29_o.jpg", "secret": "a5171baaef", "media": "photo", "latitude": "53.510911", "id": "1802274693", "tags": "fathersday 2007 prostatecancer"}, {"datetaken": "2007-06-17 09:05:39", "license": "2", "title": "20070617_Prostate_0007", "text": "", "album_id": "72157602795343231", "longitude": "-113.547112", "url_o": "https://farm3.staticflickr.com/2109/1803116558_90f128e440_o.jpg", "secret": "cfaa67365b", "media": "photo", "latitude": "53.510911", "id": "1803116558", "tags": "fathersday 2007 prostatecancer"}, {"datetaken": "2007-06-17 09:06:18", "license": "2", "title": "20070617_Prostate_0008", "text": "", "album_id": "72157602795343231", "longitude": "-113.547112", "url_o": "https://farm3.staticflickr.com/2001/1803117082_89d6357fcc_o.jpg", "secret": "f2964bbd7d", "media": "photo", "latitude": "53.510911", "id": "1803117082", "tags": "fathersday 2007 prostatecancer"}, {"datetaken": "2007-06-17 09:07:05", "license": "2", "title": "20070617_Prostate_0009", "text": "", "album_id": "72157602795343231", "longitude": "-113.547112", "url_o": "https://farm3.staticflickr.com/2072/1802275571_8ee7ca09cc_o.jpg", "secret": "26120674da", "media": "photo", "latitude": "53.510911", "id": "1802275571", "tags": "fathersday 2007 prostatecancer"}, {"datetaken": "2007-06-17 09:36:45", "license": "2", "title": "20070617_Prostate_0010", "text": "", "album_id": "72157602795343231", "longitude": "-113.547112", "url_o": "https://farm3.staticflickr.com/2230/1803117482_d65bee2c32_o.jpg", "secret": "c8aec5deee", "media": "photo", "latitude": "53.510911", "id": "1803117482", "tags": "fathersday 2007 prostatecancer"}, {"datetaken": "2007-06-17 09:37:26", "license": "2", "title": "20070617_Prostate_0011", "text": "", "album_id": "72157602795343231", "longitude": "-113.547112", "url_o": "https://farm3.staticflickr.com/2168/1803117792_0c2ed8384c_o.jpg", "secret": "ce2e094b36", "media": "photo", "latitude": "53.510911", "id": "1803117792", "tags": "fathersday 2007 prostatecancer"}, {"datetaken": "2007-06-17 10:03:41", "license": "2", "title": "20070617_Prostate_0012", "text": "", "album_id": "72157602795343231", "longitude": "-113.547112", "url_o": "https://farm3.staticflickr.com/2167/1803118002_6cbb70827c_o.jpg", "secret": "8e5efadaa3", "media": "photo", "latitude": "53.510911", "id": "1803118002", "tags": "fathersday 2007 prostatecancer"}, {"datetaken": "2005-06-19 21:57:07", "license": "3", "title": "Caldwell-Field", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20361801_3518b3d751_o.jpg", "secret": "3518b3d751", "media": "photo", "latitude": "0", "id": "20361801", "tags": "soundtigers bridgeport ahl hockey bluefish baseball"}, {"datetaken": "2005-06-19 21:57:17", "license": "3", "title": "Caldwell-Pitch", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20361829_7966bff928_o.jpg", "secret": "7966bff928", "media": "photo", "latitude": "0", "id": "20361829", "tags": "soundtigers bridgeport ahl hockey bluefish baseball"}, {"datetaken": "2005-06-19 21:57:19", "license": "3", "title": "Regier-Koalska", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20361837_f706337ce1_o.jpg", "secret": "f706337ce1", "media": "photo", "latitude": "0", "id": "20361837", "tags": "soundtigers bridgeport ahl hockey bluefish baseball"}, {"datetaken": "2005-06-19 21:57:26", "license": "3", "title": "Tigers-Signing", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20361855_e2820d8621_o.jpg", "secret": "e2820d8621", "media": "photo", "latitude": "0", "id": "20361855", "tags": "soundtigers bridgeport ahl hockey bluefish baseball"}, {"datetaken": "2005-06-19 22:40:51", "license": "3", "title": "Rocker-showers", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20370424_c29c01aeff_o.jpg", "secret": "c29c01aeff", "media": "photo", "latitude": "0", "id": "20370424", "tags": "bridgeportbluefish longislandducks johnrocker peterosejr baseball atlanticleague"}, {"datetaken": "2005-06-19 22:40:54", "license": "3", "title": "John-Rocker-1", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20370440_39a31b6032_o.jpg", "secret": "39a31b6032", "media": "photo", "latitude": "0", "id": "20370440", "tags": "bridgeportbluefish longislandducks johnrocker peterosejr baseball atlanticleague"}, {"datetaken": "2005-06-19 22:40:57", "license": "3", "title": "John-Rocker-2", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20370461_d0816e4803_o.jpg", "secret": "d0816e4803", "media": "photo", "latitude": "0", "id": "20370461", "tags": "bridgeportbluefish longislandducks johnrocker peterosejr baseball atlanticleague"}, {"datetaken": "2005-06-19 22:41:01", "license": "3", "title": "John-Rocker-3", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20370493_8103a1f78a_o.jpg", "secret": "8103a1f78a", "media": "photo", "latitude": "0", "id": "20370493", "tags": "bridgeportbluefish longislandducks johnrocker peterosejr baseball atlanticleague"}, {"datetaken": "2005-06-19 22:41:06", "license": "3", "title": "John-Rocker-4", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20370512_8148c26643_o.jpg", "secret": "8148c26643", "media": "photo", "latitude": "0", "id": "20370512", "tags": "bridgeportbluefish longislandducks johnrocker peterosejr baseball atlanticleague"}, {"datetaken": "2005-06-19 22:41:12", "license": "3", "title": "John-Rocker-5", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20370552_53572bc9b6_o.jpg", "secret": "53572bc9b6", "media": "photo", "latitude": "0", "id": "20370552", "tags": "bridgeportbluefish longislandducks johnrocker peterosejr baseball atlanticleague"}, {"datetaken": "2005-06-19 22:41:17", "license": "3", "title": "John-Rocker-6", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20370572_2a0512f3a1_o.jpg", "secret": "2a0512f3a1", "media": "photo", "latitude": "0", "id": "20370572", "tags": "bridgeportbluefish longislandducks johnrocker peterosejr baseball atlanticleague"}, {"datetaken": "2005-06-19 22:41:20", "license": "3", "title": "John-Rocker-7", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20370589_f7247a2cc3_o.jpg", "secret": "f7247a2cc3", "media": "photo", "latitude": "0", "id": "20370589", "tags": "bridgeportbluefish longislandducks johnrocker peterosejr baseball atlanticleague"}, {"datetaken": "2005-06-19 22:41:26", "license": "3", "title": "Pete-Rose-Jr-1", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20370624_902edbe52c_o.jpg", "secret": "902edbe52c", "media": "photo", "latitude": "0", "id": "20370624", "tags": "bridgeportbluefish longislandducks johnrocker peterosejr baseball atlanticleague"}, {"datetaken": "2005-06-19 22:41:33", "license": "3", "title": "Pete-Rose-Jr-2", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20370678_7be099cc5e_o.jpg", "secret": "7be099cc5e", "media": "photo", "latitude": "0", "id": "20370678", "tags": "bridgeportbluefish longislandducks johnrocker peterosejr baseball atlanticleague"}, {"datetaken": "2005-06-19 22:41:42", "license": "3", "title": "Rose fouls one off", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20370726_617a0b41e3_o.jpg", "secret": "617a0b41e3", "media": "photo", "latitude": "0", "id": "20370726", "tags": "bridgeportbluefish longislandducks johnrocker peterosejr baseball atlanticleague"}, {"datetaken": "2005-06-19 22:41:51", "license": "3", "title": "Pete-Rose-Jr-4", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20370774_ecfcce2165_o.jpg", "secret": "ecfcce2165", "media": "photo", "latitude": "0", "id": "20370774", "tags": "bridgeportbluefish longislandducks johnrocker peterosejr baseball atlanticleague"}, {"datetaken": "2005-06-19 22:42:00", "license": "3", "title": "P.J. Rose waits on the pitch", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20370805_a7ead32a9b_o.jpg", "secret": "a7ead32a9b", "media": "photo", "latitude": "0", "id": "20370805", "tags": "bridgeportbluefish longislandducks johnrocker peterosejr baseball atlanticleague"}, {"datetaken": "2005-06-19 22:42:07", "license": "3", "title": "John Rocker looks dejected after early exit", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20370833_9824437c20_o.jpg", "secret": "9824437c20", "media": "photo", "latitude": "0", "id": "20370833", "tags": "bridgeportbluefish longislandducks johnrocker peterosejr baseball atlanticleague"}, {"datetaken": "2005-06-19 22:42:13", "license": "3", "title": "John Rocker pulled after 4 batters", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20370859_1bfbc025f5_o.jpg", "secret": "1bfbc025f5", "media": "photo", "latitude": "0", "id": "20370859", "tags": "bridgeportbluefish longislandducks johnrocker peterosejr baseball atlanticleague"}, {"datetaken": "2005-06-19 22:42:20", "license": "3", "title": "Father's Day at Harbor Yard", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20370881_fdd9fa4507_o.jpg", "secret": "fdd9fa4507", "media": "photo", "latitude": "0", "id": "20370881", "tags": "bridgeportbluefish longislandducks johnrocker peterosejr baseball atlanticleague"}, {"datetaken": "2005-06-19 22:42:26", "license": "3", "title": "John Rocker & Pete Rose Jr.", "text": "", "album_id": "475747", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20370915_f739850e94_o.jpg", "secret": "f739850e94", "media": "photo", "latitude": "0", "id": "20370915", "tags": "bridgeportbluefish longislandducks johnrocker peterosejr baseball atlanticleague"}, {"datetaken": "2005-06-18 23:00:48", "license": "5", "title": "Campfire", "text": "", "album_id": "476170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20384693_d1a61baa77_o.jpg", "secret": "d1a61baa77", "media": "photo", "latitude": "0", "id": "20384693", "tags": "ricelake fire"}, {"datetaken": "2005-06-18 23:14:31", "license": "5", "title": "Campfire", "text": "", "album_id": "476170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20384883_e5462f9c98_o.jpg", "secret": "e5462f9c98", "media": "photo", "latitude": "0", "id": "20384883", "tags": "ricelake fire"}, {"datetaken": "2005-06-18 23:36:14", "license": "5", "title": "Night sky", "text": "", "album_id": "476170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20385159_27eb8c0414_o.jpg", "secret": "27eb8c0414", "media": "photo", "latitude": "0", "id": "20385159", "tags": "ricelake weather"}, {"datetaken": "2005-06-18 23:43:20", "license": "5", "title": "Campfire", "text": "", "album_id": "476170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20385452_2ec8985437_o.jpg", "secret": "2ec8985437", "media": "photo", "latitude": "0", "id": "20385452", "tags": "ricelake fire"}, {"datetaken": "2005-06-18 23:45:21", "license": "5", "title": "Campfire", "text": "", "album_id": "476170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20385743_755e2ec15a_o.jpg", "secret": "755e2ec15a", "media": "photo", "latitude": "0", "id": "20385743", "tags": "ricelake fire"}, {"datetaken": "2005-06-19 08:47:48", "license": "5", "title": "Leaving", "text": "", "album_id": "476170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20385983_571e30d385_o.jpg", "secret": "571e30d385", "media": "photo", "latitude": "0", "id": "20385983", "tags": "ricelake lake"}, {"datetaken": "2005-06-19 08:48:34", "license": "5", "title": "Across the water", "text": "", "album_id": "476170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20386343_1f217fd9c2_o.jpg", "secret": "1f217fd9c2", "media": "photo", "latitude": "0", "id": "20386343", "tags": "ricelake lake"}, {"datetaken": "2005-06-19 08:59:18", "license": "5", "title": "Fishing on the shore", "text": "", "album_id": "476170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20386560_9c76d971c1_o.jpg", "secret": "9c76d971c1", "media": "photo", "latitude": "0", "id": "20386560", "tags": "ricelake lake fishing"}, {"datetaken": "2005-06-19 09:03:16", "license": "5", "title": "Docks and cottages", "text": "", "album_id": "476170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20387243_c24d31a854_o.jpg", "secret": "c24d31a854", "media": "photo", "latitude": "0", "id": "20387243", "tags": "ricelake lake"}, {"datetaken": "2005-06-19 10:44:23", "license": "5", "title": "Dock and sky", "text": "", "album_id": "476170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20389936_e2c562db0c_o.jpg", "secret": "e2c562db0c", "media": "photo", "latitude": "0", "id": "20389936", "tags": "ricelake lake"}, {"datetaken": "2005-06-19 10:49:18", "license": "5", "title": "Herons on the shore", "text": "", "album_id": "476170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20390336_66d4b85c35_o.jpg", "secret": "66d4b85c35", "media": "photo", "latitude": "0", "id": "20390336", "tags": "ricelake lake bird"}, {"datetaken": "2005-06-19 10:53:51", "license": "5", "title": "Chaotic water", "text": "", "album_id": "476170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20391323_85375e3c99_o.jpg", "secret": "85375e3c99", "media": "photo", "latitude": "0", "id": "20391323", "tags": "ricelake lake"}, {"datetaken": "2005-06-19 15:16:31", "license": "5", "title": "\u9903\u5b50", "text": "", "album_id": "476170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20392495_dc01441dcd_o.jpg", "secret": "dc01441dcd", "media": "photo", "latitude": "0", "id": "20392495", "tags": "food micro"}, {"datetaken": "2005-06-19 10:23:29", "license": "3", "title": "Anchor, Pier 55", "text": "", "album_id": "476406", "longitude": "-122.381215", "url_o": "https://farm1.staticflickr.com/16/20403457_5b87ae0f89_o.jpg", "secret": "5b87ae0f89", "media": "photo", "latitude": "47.589754", "id": "20403457", "tags": "westseattle squaredcircle alkibeach seattle"}, {"datetaken": "2005-06-19 10:35:06", "license": "3", "title": "Flag", "text": "", "album_id": "476406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20403474_34f4a6049a_o.jpg", "secret": "34f4a6049a", "media": "photo", "latitude": "0", "id": "20403474", "tags": "westseattle flag alkibeach seattle"}, {"datetaken": "2005-06-19 10:53:43", "license": "3", "title": "Pier - AM", "text": "", "album_id": "476406", "longitude": "-122.381215", "url_o": "https://farm1.staticflickr.com/15/20403520_80b75db751_o.jpg", "secret": "80b75db751", "media": "photo", "latitude": "47.589754", "id": "20403520", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 10:56:26", "license": "3", "title": "Scuba Prep", "text": "", "album_id": "476406", "longitude": "-122.381215", "url_o": "https://farm1.staticflickr.com/17/20403542_e48760eddd_o.jpg", "secret": "e48760eddd", "media": "photo", "latitude": "47.589754", "id": "20403542", "tags": "westseattle alkibeach seattle photowalk"}, {"datetaken": "2005-06-19 10:57:10", "license": "3", "title": "Diver down", "text": "", "album_id": "476406", "longitude": "-122.381215", "url_o": "https://farm1.staticflickr.com/16/20403686_a27cda9286_o.jpg", "secret": "a27cda9286", "media": "photo", "latitude": "47.589754", "id": "20403686", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 11:16:19", "license": "3", "title": "Icarus Dreams", "text": "", "album_id": "476406", "longitude": "-122.381215", "url_o": "https://farm1.staticflickr.com/17/20403711_5d06fc118c_o.jpg", "secret": "5d06fc118c", "media": "photo", "latitude": "47.589754", "id": "20403711", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 11:22:27", "license": "3", "title": "IMG_2201", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/17/20403593_10923609a7_o.jpg", "secret": "10923609a7", "media": "photo", "latitude": "47.594689", "id": "20403593", "tags": "westseattle alkibeach seattle photowalk"}, {"datetaken": "2005-06-19 11:23:55", "license": "3", "title": "IMG_2204", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/15/20403618_8d833f0dcc_o.jpg", "secret": "8d833f0dcc", "media": "photo", "latitude": "47.594689", "id": "20403618", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 11:25:55", "license": "3", "title": "tired", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/16/20403634_c07565cff6_o.jpg", "secret": "c07565cff6", "media": "photo", "latitude": "47.594689", "id": "20403634", "tags": "westseattle squaredcircle alkibeach seattle"}, {"datetaken": "2005-06-19 11:29:12", "license": "3", "title": "CAUTION: Fossil in Progress", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/17/20403786_4a2b06868f_o.jpg", "secret": "4a2b06868f", "media": "photo", "latitude": "47.594689", "id": "20403786", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 11:32:43", "license": "3", "title": "barnacles...", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/15/20402522_e3ec849125_o.jpg", "secret": "e3ec849125", "media": "photo", "latitude": "47.594689", "id": "20402522", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 11:34:52", "license": "3", "title": "Barnacles everywhere", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/17/20402562_0a13e751fd_o.jpg", "secret": "0a13e751fd", "media": "photo", "latitude": "47.594689", "id": "20402562", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 11:35:20", "license": "3", "title": "canyon for a day", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/17/20403837_515e8efd79_o.jpg", "secret": "515e8efd79", "media": "photo", "latitude": "47.594689", "id": "20403837", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 11:38:39", "license": "3", "title": "overgrown stairs", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/16/20402607_ffb686dc9e_o.jpg", "secret": "ffb686dc9e", "media": "photo", "latitude": "47.594689", "id": "20402607", "tags": "westseattle stairs alkibeach seattle"}, {"datetaken": "2005-06-19 11:39:52", "license": "3", "title": "IMG_2236", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/16/20402671_fdb4ef6dd7_o.jpg", "secret": "fdb4ef6dd7", "media": "photo", "latitude": "47.594689", "id": "20402671", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 11:40:37", "license": "3", "title": "Leftover shellfish", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/16/20403866_21f3561530_o.jpg", "secret": "21f3561530", "media": "photo", "latitude": "47.594689", "id": "20403866", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 11:44:28", "license": "3", "title": "Lost on an alien planet...", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/17/20402730_506f11431e_o.jpg", "secret": "506f11431e", "media": "photo", "latitude": "47.594689", "id": "20402730", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 11:46:38", "license": "3", "title": "breakwater", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/16/20402778_87ae72694f_o.jpg", "secret": "87ae72694f", "media": "photo", "latitude": "47.594689", "id": "20402778", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 11:47:55", "license": "3", "title": "footprints", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/15/20402829_4e6901b99b_o.jpg", "secret": "4e6901b99b", "media": "photo", "latitude": "47.594689", "id": "20402829", "tags": "westseattle footprints alkibeach seattle"}, {"datetaken": "2005-06-19 11:48:35", "license": "3", "title": "monochromatic rainbows", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/15/20403908_2a0561b7fa_o.jpg", "secret": "2a0561b7fa", "media": "photo", "latitude": "47.594689", "id": "20403908", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 11:49:43", "license": "3", "title": "IMG_2255", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/17/20402855_75c7a109a8_o.jpg", "secret": "75c7a109a8", "media": "photo", "latitude": "47.594689", "id": "20402855", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 11:50:04", "license": "3", "title": "Lost World", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/16/20402893_e0af0f5ff0_o.jpg", "secret": "e0af0f5ff0", "media": "photo", "latitude": "47.594689", "id": "20402893", "tags": "westseattle water beach alkibeach seattle photowalk"}, {"datetaken": "2005-06-19 11:50:59", "license": "3", "title": "Gulls", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/15/20403931_93e9707cc2_o.jpg", "secret": "93e9707cc2", "media": "photo", "latitude": "47.594689", "id": "20403931", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 11:51:45", "license": "3", "title": "IMG_2263", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/17/20402915_ee41d6cd7d_o.jpg", "secret": "ee41d6cd7d", "media": "photo", "latitude": "47.594689", "id": "20402915", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 11:52:40", "license": "3", "title": "IMG_2267", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/16/20402942_f0d086b3d0_o.jpg", "secret": "f0d086b3d0", "media": "photo", "latitude": "47.594689", "id": "20402942", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 11:53:14", "license": "3", "title": "canyons", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/16/20403959_3c548e449c_o.jpg", "secret": "3c548e449c", "media": "photo", "latitude": "47.594689", "id": "20403959", "tags": "westseattle alkibeach seattle photowalk"}, {"datetaken": "2005-06-19 11:56:07", "license": "3", "title": "Stairs", "text": "", "album_id": "476406", "longitude": "-122.397973", "url_o": "https://farm1.staticflickr.com/15/20402987_a8a9a47498_o.jpg", "secret": "a8a9a47498", "media": "photo", "latitude": "47.586657", "id": "20402987", "tags": "westseattle stairs alkibeach seattle"}, {"datetaken": "2005-06-19 11:56:24", "license": "3", "title": "Shelled", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/17/20404004_e663688491_o.jpg", "secret": "e663688491", "media": "photo", "latitude": "47.594689", "id": "20404004", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 12:00:50", "license": "3", "title": "ALKEEP ME!!!", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/16/20404029_7ec6d85275_o.jpg", "secret": "7ec6d85275", "media": "photo", "latitude": "47.594689", "id": "20404029", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 12:03:12", "license": "3", "title": "slurry", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/17/20404042_18f5a0e41f_o.jpg", "secret": "18f5a0e41f", "media": "photo", "latitude": "47.594689", "id": "20404042", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 12:04:13", "license": "3", "title": "Crash", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/15/20403016_52b2939894_o.jpg", "secret": "52b2939894", "media": "photo", "latitude": "47.594689", "id": "20403016", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 12:07:02", "license": "3", "title": "IMG_2295", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/15/20403050_e49a032214_o.jpg", "secret": "e49a032214", "media": "photo", "latitude": "47.594689", "id": "20403050", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 12:09:07", "license": "3", "title": "alluvial flow", "text": "", "album_id": "476406", "longitude": "-122.389111", "url_o": "https://farm1.staticflickr.com/16/20404082_938ff28913_o.jpg", "secret": "938ff28913", "media": "photo", "latitude": "47.594689", "id": "20404082", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 12:22:11", "license": "3", "title": "Janus", "text": "", "album_id": "476406", "longitude": "-122.400612", "url_o": "https://farm1.staticflickr.com/15/20403077_00c53f4dfa_o.jpg", "secret": "00c53f4dfa", "media": "photo", "latitude": "47.584081", "id": "20403077", "tags": "westseattle parent child alkibeach seattle photowalk"}, {"datetaken": "2005-06-19 12:26:14", "license": "3", "title": "Driftwood", "text": "", "album_id": "476406", "longitude": "-122.401793", "url_o": "https://farm1.staticflickr.com/15/20403105_eca2956656_o.jpg", "secret": "eca2956656", "media": "photo", "latitude": "47.583437", "id": "20403105", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 12:28:10", "license": "3", "title": "Driftwood Landscape", "text": "", "album_id": "476406", "longitude": "-122.401793", "url_o": "https://farm1.staticflickr.com/15/20403138_938bb83303_o.jpg", "secret": "938bb83303", "media": "photo", "latitude": "47.583437", "id": "20403138", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 12:50:49", "license": "3", "title": "Where it all began...", "text": "", "album_id": "476406", "longitude": "-122.410955", "url_o": "https://farm1.staticflickr.com/16/20403190_f67a626c6e_o.jpg", "secret": "f67a626c6e", "media": "photo", "latitude": "47.579247", "id": "20403190", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 12:51:12", "license": "3", "title": "IMG_2320", "text": "", "album_id": "476406", "longitude": "-122.410955", "url_o": "https://farm1.staticflickr.com/15/20403216_677a436789_o.jpg", "secret": "677a436789", "media": "photo", "latitude": "47.579247", "id": "20403216", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 13:20:34", "license": "3", "title": "Resume work", "text": "", "album_id": "476406", "longitude": "-122.410247", "url_o": "https://farm1.staticflickr.com/17/20404109_d58b0e4341_o.jpg", "secret": "d58b0e4341", "media": "photo", "latitude": "47.579174", "id": "20404109", "tags": "westseattle cafe alkibeach seattle"}, {"datetaken": "2005-06-19 13:21:48", "license": "3", "title": "Cafe Scene", "text": "", "album_id": "476406", "longitude": "-122.410247", "url_o": "https://farm1.staticflickr.com/15/20403245_7cf69e4057_o.jpg", "secret": "7cf69e4057", "media": "photo", "latitude": "47.579174", "id": "20403245", "tags": "westseattle cafe alkibeach seattle"}, {"datetaken": "2005-06-19 13:30:22", "license": "3", "title": "billabong", "text": "", "album_id": "476406", "longitude": "-122.403123", "url_o": "https://farm1.staticflickr.com/15/20403298_1b11f28dfa_o.jpg", "secret": "1b11f28dfa", "media": "photo", "latitude": "47.582018", "id": "20403298", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 13:37:25", "license": "3", "title": "IMG_2336", "text": "", "album_id": "476406", "longitude": "-122.403380", "url_o": "https://farm1.staticflickr.com/16/20403325_4fd93432a2_o.jpg", "secret": "4fd93432a2", "media": "photo", "latitude": "47.582749", "id": "20403325", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 13:48:00", "license": "3", "title": "Tidal stairs", "text": "", "album_id": "476406", "longitude": "-122.397973", "url_o": "https://farm1.staticflickr.com/15/20403373_f176b81fdb_o.jpg", "secret": "f176b81fdb", "media": "photo", "latitude": "47.586657", "id": "20403373", "tags": "westseattle stairs alkibeach seattle"}, {"datetaken": "2005-06-19 14:08:39", "license": "3", "title": "Pier - PM", "text": "", "album_id": "476406", "longitude": "-122.379734", "url_o": "https://farm1.staticflickr.com/15/20403408_5661ee23b3_o.jpg", "secret": "5661ee23b3", "media": "photo", "latitude": "47.589523", "id": "20403408", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-19 14:10:27", "license": "3", "title": "IMG_2360", "text": "", "album_id": "476406", "longitude": "-122.365787", "url_o": "https://farm1.staticflickr.com/15/20403423_6e72db05f9_o.jpg", "secret": "6e72db05f9", "media": "photo", "latitude": "47.587236", "id": "20403423", "tags": "westseattle alkibeach seattle"}, {"datetaken": "2005-06-18 16:52:14", "license": "2", "title": "Refraction", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/22/29208315_cc9b3a7c99_o.jpg", "secret": "ce67b78d7d", "media": "photo", "latitude": "40.359166", "id": "29208315", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2605\u2606\u2606"}, {"datetaken": "2005-06-19 14:43:38", "license": "2", "title": "Flies", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/23/29208358_954e1b30fb_o.jpg", "secret": "954e1b30fb", "media": "photo", "latitude": "40.359166", "id": "29208358", "tags": "trip mountains nature rocks day crags fathers"}, {"datetaken": "2005-06-19 14:50:08", "license": "2", "title": "Tim and Dad", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/23/29208415_eacb4b7be0_o.jpg", "secret": "29e89e6376", "media": "photo", "latitude": "40.359166", "id": "29208415", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2605\u2605\u2606"}, {"datetaken": "2005-06-19 14:50:36", "license": "2", "title": "Tree Silhouettes", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/21/29208444_2711f4b16a_o.jpg", "secret": "34ea429215", "media": "photo", "latitude": "40.359166", "id": "29208444", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2606\u2606\u2606"}, {"datetaken": "2005-06-19 14:51:11", "license": "2", "title": "Getting ready to dive", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/22/29208494_83eefdb73d_o.jpg", "secret": "afc874eb63", "media": "photo", "latitude": "40.359166", "id": "29208494", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2606\u2606\u2606"}, {"datetaken": "2005-06-19 14:52:08", "license": "2", "title": "Tiny Waterfalls", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/22/29208531_269931df65_o.jpg", "secret": "d275da53c8", "media": "photo", "latitude": "40.359166", "id": "29208531", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2605\u2606\u2606"}, {"datetaken": "2005-06-19 14:53:17", "license": "2", "title": "Stream", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/23/29208566_3ae136cf60_o.jpg", "secret": "1ee4e94e64", "media": "photo", "latitude": "40.359166", "id": "29208566", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2605\u2606\u2606"}, {"datetaken": "2005-06-19 14:53:35", "license": "2", "title": "Tree Silhouettes", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/23/29208598_afcd5d2a9f_o.jpg", "secret": "cf4fc06820", "media": "photo", "latitude": "40.359166", "id": "29208598", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2606\u2606\u2606"}, {"datetaken": "2005-06-19 14:55:26", "license": "2", "title": "Smooth Rocks", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/21/29208679_fe93b7d5b3_o.jpg", "secret": "49986aa531", "media": "photo", "latitude": "40.359166", "id": "29208679", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2606\u2606\u2606"}, {"datetaken": "2005-06-19 14:56:52", "license": "2", "title": "Saddle Rock", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/22/29208751_27b74f10b3_o.jpg", "secret": "7d30fceeea", "media": "photo", "latitude": "40.359166", "id": "29208751", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2605\u2606\u2606"}, {"datetaken": "2005-06-19 15:04:25", "license": "2", "title": "Waterfall", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/21/29208788_f67d59bef9_o.jpg", "secret": "c716fa5567", "media": "photo", "latitude": "40.359166", "id": "29208788", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2605\u2606\u2606"}, {"datetaken": "2005-06-19 15:15:35", "license": "2", "title": "On the trail", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/21/29208812_fd422316a2_o.jpg", "secret": "374ddfaf9d", "media": "photo", "latitude": "40.359166", "id": "29208812", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2605\u2605\u2605"}, {"datetaken": "2005-06-19 15:15:51", "license": "2", "title": "Trees and Rocks", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/22/29208839_96465b5c89_o.jpg", "secret": "349f97497b", "media": "photo", "latitude": "40.359166", "id": "29208839", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2606\u2606\u2606"}, {"datetaken": "2005-06-19 15:16:27", "license": "2", "title": "Giant Smooth Rocks", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/21/29208887_6e83e074b7_o.jpg", "secret": "3b43f69484", "media": "photo", "latitude": "40.359166", "id": "29208887", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2605\u2606\u2606"}, {"datetaken": "2005-06-19 15:18:17", "license": "2", "title": "Rock Castle", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/22/29208949_8b421dfc43_o.jpg", "secret": "4877c476b7", "media": "photo", "latitude": "40.359166", "id": "29208949", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2605\u2605\u2606"}, {"datetaken": "2005-06-19 15:21:32", "license": "2", "title": "Small Swamp", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/23/29209011_5f683cb83a_o.jpg", "secret": "a9937de9e2", "media": "photo", "latitude": "40.359166", "id": "29209011", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2605\u2606\u2606"}, {"datetaken": "2005-06-19 15:23:02", "license": "2", "title": "Towering Rock", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/23/29209070_43ddfb99e6_o.jpg", "secret": "11e1d06d8d", "media": "photo", "latitude": "40.359166", "id": "29209070", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2605\u2605\u2606"}, {"datetaken": "2005-06-19 15:23:10", "license": "2", "title": "Towering Rock", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/21/29209115_3fc1038cb5_o.jpg", "secret": "390e2af359", "media": "photo", "latitude": "40.359166", "id": "29209115", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2605\u2605\u2605"}, {"datetaken": "2005-06-19 15:48:25", "license": "2", "title": "Bird", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/23/29209146_8cd757a2ce_o.jpg", "secret": "8cd757a2ce", "media": "photo", "latitude": "40.359166", "id": "29209146", "tags": "trip mountains nature rocks day crags fathers"}, {"datetaken": "2005-06-19 15:55:55", "license": "2", "title": "Distant Lands", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/21/29209195_ef706f31d7_o.jpg", "secret": "dd4c5073b6", "media": "photo", "latitude": "40.359166", "id": "29209195", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2605\u2606\u2606"}, {"datetaken": "2005-06-19 15:56:43", "license": "2", "title": "Distant Lands", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/22/29209255_34a9378e94_o.jpg", "secret": "6d698f4620", "media": "photo", "latitude": "40.359166", "id": "29209255", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2605\u2605\u2606"}, {"datetaken": "2005-06-19 15:56:58", "license": "2", "title": "Distant Lands", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/23/29209313_05b43011ca_o.jpg", "secret": "e48bcb0259", "media": "photo", "latitude": "40.359166", "id": "29209313", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2605\u2606\u2606"}, {"datetaken": "2005-06-19 15:58:03", "license": "2", "title": "Rock Castle", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/23/29209354_25624e392b_o.jpg", "secret": "f8d6768260", "media": "photo", "latitude": "40.359166", "id": "29209354", "tags": "trip mountains nature rocks day crags fathers \u2605\u2605\u2605\u2605\u2606"}, {"datetaken": "2005-06-19 16:07:50", "license": "2", "title": "Tim, Dad, and me", "text": "", "album_id": "657659", "longitude": "-105.702166", "url_o": "https://farm1.staticflickr.com/22/29209380_f3173e04cd_o.jpg", "secret": "1863ce7d12", "media": "photo", "latitude": "40.359166", "id": "29209380", "tags": "trip mountains nature rocks day crags fathers rickyromero \u2605\u2605\u2605\u2605\u2606"}, {"datetaken": "2006-06-18 08:24:38", "license": "3", "title": "Guenna wearing mommy's dress", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/171285179_0c4e281f5c_o.jpg", "secret": "0c4e281f5c", "media": "photo", "latitude": "0", "id": "171285179", "tags": ""}, {"datetaken": "2006-06-18 12:37:12", "license": "3", "title": "Went to church at Christ's Covenant in Lynnwood", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/171285225_8cdadd3492_o.jpg", "secret": "8cdadd3492", "media": "photo", "latitude": "0", "id": "171285225", "tags": ""}, {"datetaken": "2006-06-18 14:58:54", "license": "3", "title": "Happy Father's day Papa!", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/171285255_40e65ce313_o.jpg", "secret": "40e65ce313", "media": "photo", "latitude": "0", "id": "171285255", "tags": ""}, {"datetaken": "2006-06-18 14:59:13", "license": "3", "title": "Steaks for our kings", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/171285287_d9b99b445f_o.jpg", "secret": "d9b99b445f", "media": "photo", "latitude": "0", "id": "171285287", "tags": ""}, {"datetaken": "2006-06-18 15:01:59", "license": "3", "title": "Father's Day Dinner", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/171285332_888aba0334_o.jpg", "secret": "888aba0334", "media": "photo", "latitude": "0", "id": "171285332", "tags": ""}, {"datetaken": "2006-06-18 15:02:16", "license": "3", "title": "Father's Day Dinner", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/171285357_90eff1ed2d_o.jpg", "secret": "90eff1ed2d", "media": "photo", "latitude": "0", "id": "171285357", "tags": ""}, {"datetaken": "2006-06-18 15:04:26", "license": "3", "title": "Father's Day dinner", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/171285417_a3d951ddaf_o.jpg", "secret": "a3d951ddaf", "media": "photo", "latitude": "0", "id": "171285417", "tags": ""}, {"datetaken": "2006-06-18 15:04:44", "license": "3", "title": "Father's Day Dinner", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/171285457_1257b351d9_o.jpg", "secret": "1257b351d9", "media": "photo", "latitude": "0", "id": "171285457", "tags": ""}, {"datetaken": "2006-06-18 15:05:26", "license": "3", "title": "Father's Day Dinner", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/171285497_29b940b5eb_o.jpg", "secret": "29b940b5eb", "media": "photo", "latitude": "0", "id": "171285497", "tags": ""}, {"datetaken": "2006-06-18 15:55:51", "license": "3", "title": "Daddy and Guenna", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/171285527_b2a4d817d1_o.jpg", "secret": "b2a4d817d1", "media": "photo", "latitude": "0", "id": "171285527", "tags": ""}, {"datetaken": "2006-06-18 19:08:06", "license": "3", "title": "Ladies relaxing after dinner", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/171285556_db182a7e52_o.jpg", "secret": "db182a7e52", "media": "photo", "latitude": "0", "id": "171285556", "tags": ""}, {"datetaken": "2006-06-18 19:08:14", "license": "3", "title": "Running in the \"rard\"", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/171285595_4adc0f1d8e_o.jpg", "secret": "4adc0f1d8e", "media": "photo", "latitude": "0", "id": "171285595", "tags": ""}, {"datetaken": "2006-06-18 19:08:25", "license": "3", "title": "I can help uncle!", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/171285639_102add3e16_o.jpg", "secret": "102add3e16", "media": "photo", "latitude": "0", "id": "171285639", "tags": ""}, {"datetaken": "2006-06-18 19:09:01", "license": "3", "title": "Dad and CJ duke it out on Father's Day", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/171285684_8d6b44b6df_o.jpg", "secret": "8d6b44b6df", "media": "photo", "latitude": "0", "id": "171285684", "tags": ""}, {"datetaken": "2006-06-18 19:20:21", "license": "3", "title": "Horse shoes", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/171285717_d33de34d35_o.jpg", "secret": "d33de34d35", "media": "photo", "latitude": "0", "id": "171285717", "tags": ""}, {"datetaken": "2006-06-18 19:20:47", "license": "3", "title": "More snuggling", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/171285742_2179f2f37e_o.jpg", "secret": "2179f2f37e", "media": "photo", "latitude": "0", "id": "171285742", "tags": ""}, {"datetaken": "2006-06-18 19:20:54", "license": "3", "title": "Snuggling with nana Joan", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/171285777_d47d1d998f_o.jpg", "secret": "d47d1d998f", "media": "photo", "latitude": "0", "id": "171285777", "tags": ""}, {"datetaken": "2006-06-18 19:24:54", "license": "3", "title": "Papa is so good!", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/171285801_0cc6104fe1_o.jpg", "secret": "0cc6104fe1", "media": "photo", "latitude": "0", "id": "171285801", "tags": ""}, {"datetaken": "2006-06-18 19:25:03", "license": "3", "title": "Watching the guys play horse shoes", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/171285852_e220d8b240_o.jpg", "secret": "e220d8b240", "media": "photo", "latitude": "0", "id": "171285852", "tags": ""}, {"datetaken": "2006-06-18 19:25:35", "license": "3", "title": "watching", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/171285898_81de11017f_o.jpg", "secret": "81de11017f", "media": "photo", "latitude": "0", "id": "171285898", "tags": ""}, {"datetaken": "2006-06-18 19:48:00", "license": "3", "title": "Hanging out with the ladies", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/171285930_78844eb374_o.jpg", "secret": "78844eb374", "media": "photo", "latitude": "0", "id": "171285930", "tags": ""}, {"datetaken": "2006-06-18 19:48:13", "license": "3", "title": "Jazzy and Guenna", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/171285968_e0be6512d4_o.jpg", "secret": "e0be6512d4", "media": "photo", "latitude": "0", "id": "171285968", "tags": ""}, {"datetaken": "2006-06-18 19:48:27", "license": "3", "title": "Hello baby!", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/171285998_2375628063_o.jpg", "secret": "2375628063", "media": "photo", "latitude": "0", "id": "171285998", "tags": ""}, {"datetaken": "2006-06-18 20:06:16", "license": "3", "title": "Big wheel", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/171286032_77782266da_o.jpg", "secret": "77782266da", "media": "photo", "latitude": "0", "id": "171286032", "tags": ""}, {"datetaken": "2006-06-18 20:06:44", "license": "3", "title": "Big wheel", "text": "", "album_id": "72157594171854007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/171286077_585b790f82_o.jpg", "secret": "585b790f82", "media": "photo", "latitude": "0", "id": "171286077", "tags": ""}, {"datetaken": "2006-06-18 14:34:44", "license": "3", "title": "DSC_1470.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/171267121_def9db747f_o.jpg", "secret": "def9db747f", "media": "photo", "latitude": "0", "id": "171267121", "tags": ""}, {"datetaken": "2006-06-18 14:35:03", "license": "3", "title": "DSC_1471.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/171122565_e44a8e8e9c_o.jpg", "secret": "e44a8e8e9c", "media": "photo", "latitude": "0", "id": "171122565", "tags": "brooklyn parkslope streetfair 7thavenue"}, {"datetaken": "2006-06-18 14:41:19", "license": "3", "title": "DSC_1472.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/171267250_e5f13d54da_o.jpg", "secret": "e5f13d54da", "media": "photo", "latitude": "0", "id": "171267250", "tags": ""}, {"datetaken": "2006-06-18 15:35:11", "license": "3", "title": "DSC_1478.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/171267368_94876a6c80_o.jpg", "secret": "94876a6c80", "media": "photo", "latitude": "0", "id": "171267368", "tags": ""}, {"datetaken": "2006-06-18 15:37:57", "license": "3", "title": "DSC_1487.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/171267521_ed818b7f20_o.jpg", "secret": "ed818b7f20", "media": "photo", "latitude": "0", "id": "171267521", "tags": ""}, {"datetaken": "2006-06-18 15:38:11", "license": "3", "title": "DSC_1488.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/171267694_b658388780_o.jpg", "secret": "b658388780", "media": "photo", "latitude": "0", "id": "171267694", "tags": ""}, {"datetaken": "2006-06-18 15:38:51", "license": "3", "title": "DSC_1489.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/171267873_7a8e575cca_o.jpg", "secret": "7a8e575cca", "media": "photo", "latitude": "0", "id": "171267873", "tags": ""}, {"datetaken": "2006-06-18 15:39:23", "license": "3", "title": "DSC_1490.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/171267971_e7d54083d5_o.jpg", "secret": "e7d54083d5", "media": "photo", "latitude": "0", "id": "171267971", "tags": ""}, {"datetaken": "2006-06-18 15:40:34", "license": "3", "title": "DSC_1491.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/171268038_0d0824abbb_o.jpg", "secret": "0d0824abbb", "media": "photo", "latitude": "0", "id": "171268038", "tags": ""}, {"datetaken": "2006-06-18 15:43:05", "license": "3", "title": "DSC_1493.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/171268124_29459c1672_o.jpg", "secret": "29459c1672", "media": "photo", "latitude": "0", "id": "171268124", "tags": ""}, {"datetaken": "2006-06-18 15:43:43", "license": "3", "title": "DSC_1494.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/171268203_ee7e1da1b4_o.jpg", "secret": "ee7e1da1b4", "media": "photo", "latitude": "0", "id": "171268203", "tags": ""}, {"datetaken": "2006-06-18 16:22:40", "license": "3", "title": "DSC_1496.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/171268289_d3e4ec3a5f_o.jpg", "secret": "d3e4ec3a5f", "media": "photo", "latitude": "0", "id": "171268289", "tags": ""}, {"datetaken": "2006-06-18 16:22:54", "license": "3", "title": "DSC_1498.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/171268373_acd4abd1d7_o.jpg", "secret": "acd4abd1d7", "media": "photo", "latitude": "0", "id": "171268373", "tags": ""}, {"datetaken": "2006-06-18 16:23:08", "license": "3", "title": "DSC_1499.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/171268454_1f895f3528_o.jpg", "secret": "1f895f3528", "media": "photo", "latitude": "0", "id": "171268454", "tags": ""}, {"datetaken": "2006-06-18 16:27:02", "license": "3", "title": "DSC_1504.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/171268590_6a91ed2272_o.jpg", "secret": "6a91ed2272", "media": "photo", "latitude": "0", "id": "171268590", "tags": ""}, {"datetaken": "2006-06-18 16:27:24", "license": "3", "title": "DSC_1505.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/171268705_60056e9e96_o.jpg", "secret": "60056e9e96", "media": "photo", "latitude": "0", "id": "171268705", "tags": ""}, {"datetaken": "2006-06-18 16:29:28", "license": "3", "title": "DSC_1508.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/171268826_d960c3be88_o.jpg", "secret": "d960c3be88", "media": "photo", "latitude": "0", "id": "171268826", "tags": ""}, {"datetaken": "2006-06-18 16:29:36", "license": "3", "title": "DSC_1509.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/171269001_41cb04814e_o.jpg", "secret": "41cb04814e", "media": "photo", "latitude": "0", "id": "171269001", "tags": ""}, {"datetaken": "2006-06-18 16:29:40", "license": "3", "title": "DSC_1510.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/171269135_3d6cce221f_o.jpg", "secret": "3d6cce221f", "media": "photo", "latitude": "0", "id": "171269135", "tags": ""}, {"datetaken": "2006-06-18 16:33:09", "license": "3", "title": "DSC_1513.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/171269281_611212c091_o.jpg", "secret": "611212c091", "media": "photo", "latitude": "0", "id": "171269281", "tags": ""}, {"datetaken": "2006-06-18 16:37:04", "license": "3", "title": "DSC_1519.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/171269330_ee801cce51_o.jpg", "secret": "ee801cce51", "media": "photo", "latitude": "0", "id": "171269330", "tags": ""}, {"datetaken": "2006-06-18 16:42:14", "license": "3", "title": "DSC_1522.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/171269434_45a1c98422_o.jpg", "secret": "45a1c98422", "media": "photo", "latitude": "0", "id": "171269434", "tags": ""}, {"datetaken": "2006-06-18 16:47:21", "license": "3", "title": "DSC_1525.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/171269521_3e210010b3_o.jpg", "secret": "3e210010b3", "media": "photo", "latitude": "0", "id": "171269521", "tags": ""}, {"datetaken": "2006-06-18 16:49:13", "license": "3", "title": "DSC_1528.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/171269620_6ad83cf1b0_o.jpg", "secret": "6ad83cf1b0", "media": "photo", "latitude": "0", "id": "171269620", "tags": ""}, {"datetaken": "2006-06-18 16:49:58", "license": "3", "title": "DSC_1530.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/171269740_829b186380_o.jpg", "secret": "829b186380", "media": "photo", "latitude": "0", "id": "171269740", "tags": ""}, {"datetaken": "2006-06-18 16:57:23", "license": "3", "title": "DSC_1533.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/171269804_ae89cd6dc6_o.jpg", "secret": "ae89cd6dc6", "media": "photo", "latitude": "0", "id": "171269804", "tags": ""}, {"datetaken": "2006-06-18 16:57:30", "license": "3", "title": "DSC_1534.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/171269864_fae362000a_o.jpg", "secret": "fae362000a", "media": "photo", "latitude": "0", "id": "171269864", "tags": ""}, {"datetaken": "2006-06-18 16:57:40", "license": "3", "title": "DSC_1535.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/171269958_4d3db24bf8_o.jpg", "secret": "4d3db24bf8", "media": "photo", "latitude": "0", "id": "171269958", "tags": ""}, {"datetaken": "2006-06-18 16:57:56", "license": "3", "title": "DSC_1537.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/171270023_df2c954fd6_o.jpg", "secret": "df2c954fd6", "media": "photo", "latitude": "0", "id": "171270023", "tags": ""}, {"datetaken": "2006-06-18 16:59:17", "license": "3", "title": "DSC_1541.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/171270089_96a5c799e3_o.jpg", "secret": "96a5c799e3", "media": "photo", "latitude": "0", "id": "171270089", "tags": ""}, {"datetaken": "2006-06-18 17:01:19", "license": "3", "title": "DSC_1545.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/171270190_0d57542533_o.jpg", "secret": "0d57542533", "media": "photo", "latitude": "0", "id": "171270190", "tags": ""}, {"datetaken": "2006-06-18 17:01:51", "license": "3", "title": "DSC_1549.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/171270236_6b47cbda63_o.jpg", "secret": "6b47cbda63", "media": "photo", "latitude": "0", "id": "171270236", "tags": ""}, {"datetaken": "2006-06-18 17:02:29", "license": "3", "title": "DSC_1556.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/171270290_fe16af3083_o.jpg", "secret": "fe16af3083", "media": "photo", "latitude": "0", "id": "171270290", "tags": ""}, {"datetaken": "2006-06-18 17:07:55", "license": "3", "title": "DSC_1564.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/171270381_3bfbd81a3f_o.jpg", "secret": "3bfbd81a3f", "media": "photo", "latitude": "0", "id": "171270381", "tags": ""}, {"datetaken": "2006-06-18 17:08:03", "license": "3", "title": "DSC_1565.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/171270427_32b4e383a9_o.jpg", "secret": "32b4e383a9", "media": "photo", "latitude": "0", "id": "171270427", "tags": ""}, {"datetaken": "2006-06-18 19:17:35", "license": "3", "title": "DSC_1571.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/171270505_d637d48903_o.jpg", "secret": "d637d48903", "media": "photo", "latitude": "0", "id": "171270505", "tags": ""}, {"datetaken": "2006-06-18 19:23:02", "license": "3", "title": "DSC_1582.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/171270559_a7388f5e7f_o.jpg", "secret": "a7388f5e7f", "media": "photo", "latitude": "0", "id": "171270559", "tags": ""}, {"datetaken": "2006-06-18 19:32:07", "license": "3", "title": "DSC_1586.JPG", "text": "", "album_id": "72157594171836398", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/171270699_8a280bfa2a_o.jpg", "secret": "8a280bfa2a", "media": "photo", "latitude": "0", "id": "171270699", "tags": ""}, {"datetaken": "2007-06-16 15:45:33", "license": "6", "title": "Pre-game mascot appearance", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1357/559044099_28fb1ed3bd_o.jpg", "secret": "5ccc78c646", "media": "photo", "latitude": "0", "id": "559044099", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 16:11:27", "license": "6", "title": "Daisuke getting ready", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1261/559044193_bd999e591c_o.jpg", "secret": "5cb21490a0", "media": "photo", "latitude": "0", "id": "559044193", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 16:11:29", "license": "6", "title": "Daisuke in action", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1022/559044297_54f110304f_o.jpg", "secret": "e9af32a163", "media": "photo", "latitude": "0", "id": "559044297", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 17:03:35", "license": "6", "title": "Bonds - 'shopped asterik on jersey.", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1304/558750412_6119481a1e_o.jpg", "secret": "ffefe1dac8", "media": "photo", "latitude": "0", "id": "558750412", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 17:03:35", "license": "6", "title": "Bonds", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1072/558750344_5f32cc3dac_o.jpg", "secret": "a5cf9dae40", "media": "photo", "latitude": "0", "id": "558750344", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 17:05:22", "license": "6", "title": "Daisuke Cropped shot", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1440/558750562_859cae9715_o.jpg", "secret": "c4d0bee29d", "media": "photo", "latitude": "0", "id": "558750562", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 17:05:22", "license": "6", "title": "Daisuke original", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1063/558750494_dbe821fd11_o.jpg", "secret": "3b7e925e3d", "media": "photo", "latitude": "0", "id": "558750494", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 17:08:56", "license": "6", "title": "Daisuke takes the mound", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1154/559044997_5aa0987d75_o.jpg", "secret": "9987dad672", "media": "photo", "latitude": "0", "id": "559044997", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 17:08:56", "license": "6", "title": "Daisuke", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1110/559044851_18889cf94f_o.jpg", "secret": "097c7921ab", "media": "photo", "latitude": "0", "id": "559044851", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 17:14:01", "license": "6", "title": "My Mom at the Game. For Father's Day", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1246/558750890_352369309f_o.jpg", "secret": "9af6964463", "media": "photo", "latitude": "0", "id": "558750890", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 17:14:51", "license": "6", "title": "My Dad at the Game. For Father's Day", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1253/558751054_31f55a8e56_o.jpg", "secret": "31274e1576", "media": "photo", "latitude": "0", "id": "558751054", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 17:14:51", "license": "6", "title": "dadatthegame2", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1099/559064475_c4f8724575_o.jpg", "secret": "2ce6de8add", "media": "photo", "latitude": "0", "id": "559064475", "tags": ""}, {"datetaken": "2007-06-16 17:16:58", "license": "6", "title": "Manny about to hit a homer", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1118/559045333_3770d51a4f_o.jpg", "secret": "2d16ce0ea6", "media": "photo", "latitude": "0", "id": "559045333", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 17:17:20", "license": "6", "title": "Manny comes home", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1301/558751184_368d57de38_o.jpg", "secret": "69373b8f36", "media": "photo", "latitude": "0", "id": "558751184", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 18:25:01", "license": "6", "title": "\"Panoramic\" of the roof deck", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1189/558751264_8b080fcd94_o.jpg", "secret": "0999db07ef", "media": "photo", "latitude": "0", "id": "558751264", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 18:25:03", "license": "6", "title": "Right Field, Pru, Hancock, 111 Huntington, Bud Sign", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1058/558751470_17b5e4e8a5_o.jpg", "secret": "6d9d84ef8b", "media": "photo", "latitude": "0", "id": "558751470", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 18:56:23", "license": "6", "title": "Close to the end", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1198/558751752_de3d95faed_o.jpg", "secret": "0e557c6e54", "media": "photo", "latitude": "0", "id": "558751752", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 18:57:47", "license": "6", "title": "We Win", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1422/559046145_0835c018b3_o.jpg", "secret": "2059aa942b", "media": "photo", "latitude": "0", "id": "559046145", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 23:48:01", "license": "6", "title": "Papelbon tossing the final pitch", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1005/558751962_793c7b53a8_o.jpg", "secret": "f722ddd4ba", "media": "photo", "latitude": "0", "id": "558751962", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-16 23:56:13", "license": "6", "title": "Papelbon - resized final pitch series", "text": "", "album_id": "72157600377471472", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1342/558752000_449c053134_o.jpg", "secret": "1ca0eb9252", "media": "photo", "latitude": "0", "id": "558752000", "tags": "redsox sfgiants fenway"}, {"datetaken": "2007-06-17 11:08:16", "license": "4", "title": "_DSC1835", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1100/562764491_f3fde2de85_o.jpg", "secret": "76a24064da", "media": "photo", "latitude": "0", "id": "562764491", "tags": "ca usa zoo bears mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 11:58:57", "license": "4", "title": "_DSC1836", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1403/562768785_6381623690_o.jpg", "secret": "ca2d361f69", "media": "photo", "latitude": "0", "id": "562768785", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:05:59", "license": "4", "title": "_DSC1837", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1104/562366246_b41dcade41_o.jpg", "secret": "5cf2f5102b", "media": "photo", "latitude": "0", "id": "562366246", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:07:42", "license": "4", "title": "_DSC1838", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1185/562370742_43ac29bdc0_o.jpg", "secret": "36fe2ecaf1", "media": "photo", "latitude": "0", "id": "562370742", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:10:06", "license": "4", "title": "_DSC1839", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1111/562374828_e9cf4a9501_o.jpg", "secret": "abb75451c2", "media": "photo", "latitude": "0", "id": "562374828", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:10:11", "license": "4", "title": "_DSC1840", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1360/562786159_ee87e9a416_o.jpg", "secret": "1a2f51a848", "media": "photo", "latitude": "0", "id": "562786159", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:11:22", "license": "4", "title": "_DSC1841", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1326/562790387_f331460335_o.jpg", "secret": "9a3f5deec4", "media": "photo", "latitude": "0", "id": "562790387", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:11:24", "license": "4", "title": "_DSC1842", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1284/562794815_8f679a5ce6_o.jpg", "secret": "e5bb3ac52f", "media": "photo", "latitude": "0", "id": "562794815", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:11:27", "license": "4", "title": "_DSC1844", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1009/562802657_7bc76723b5_o.jpg", "secret": "5a6bd6cbb8", "media": "photo", "latitude": "0", "id": "562802657", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:11:27", "license": "4", "title": "_DSC1843", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1325/562798801_17b86b0ebf_o.jpg", "secret": "ccf8d04aed", "media": "photo", "latitude": "0", "id": "562798801", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:11:41", "license": "4", "title": "_DSC1845", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1207/562807221_0a0ecb410c_o.jpg", "secret": "e0d2365cfb", "media": "photo", "latitude": "0", "id": "562807221", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:11:44", "license": "4", "title": "_DSC1846", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1305/562811799_2d2edc7e98_o.jpg", "secret": "1620b91044", "media": "photo", "latitude": "0", "id": "562811799", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:11:59", "license": "4", "title": "_DSC1847", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1218/562816673_8c0165324a_o.jpg", "secret": "df24ce27f8", "media": "photo", "latitude": "0", "id": "562816673", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:12:10", "license": "4", "title": "_DSC1848", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1269/562821689_0f137095d4_o.jpg", "secret": "9d8efe2416", "media": "photo", "latitude": "0", "id": "562821689", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:13:17", "license": "4", "title": "_DSC1849", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1257/562827081_990633288e_o.jpg", "secret": "85159d54f7", "media": "photo", "latitude": "0", "id": "562827081", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:13:26", "license": "4", "title": "_DSC1850", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1306/562427734_755a39dd7c_o.jpg", "secret": "0b4ba08e97", "media": "photo", "latitude": "0", "id": "562427734", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:28:09", "license": "4", "title": "_DSC1851", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1178/562434082_b3409e7bca_o.jpg", "secret": "f07fb0f90f", "media": "photo", "latitude": "0", "id": "562434082", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:28:23", "license": "4", "title": "_DSC1852", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1213/562437516_4d8cf8057f_o.jpg", "secret": "17eac01c19", "media": "photo", "latitude": "0", "id": "562437516", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:28:24", "license": "4", "title": "_DSC1853", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1381/562843801_bd41c87ac3_o.jpg", "secret": "44bffc6768", "media": "photo", "latitude": "0", "id": "562843801", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:31:12", "license": "4", "title": "_DSC1854", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1381/562446760_17b606410f_o.jpg", "secret": "16c12c19ca", "media": "photo", "latitude": "0", "id": "562446760", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 12:31:22", "license": "4", "title": "_DSC1855", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1383/562452590_90a146c843_o.jpg", "secret": "98b5a42cf7", "media": "photo", "latitude": "0", "id": "562452590", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 13:03:57", "license": "4", "title": "_DSC1858", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1312/562467436_bc0384a65d_o.jpg", "secret": "e44c895815", "media": "photo", "latitude": "0", "id": "562467436", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 13:39:05", "license": "4", "title": "_DSC1869", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1210/562905137_969e83c48c_o.jpg", "secret": "837606ac7c", "media": "photo", "latitude": "0", "id": "562905137", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 13:58:19", "license": "4", "title": "_DSC1870", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1243/562514728_9806cccdf1_o.jpg", "secret": "e3851da023", "media": "photo", "latitude": "0", "id": "562514728", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 13:58:56", "license": "4", "title": "_DSC1871", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1219/562517358_e067dd3a10_o.jpg", "secret": "5d44bc7db0", "media": "photo", "latitude": "0", "id": "562517358", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 13:59:04", "license": "4", "title": "_DSC1872", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1155/562520294_3b997d38ea_o.jpg", "secret": "322fc426b8", "media": "photo", "latitude": "0", "id": "562520294", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 13:59:18", "license": "4", "title": "_DSC1873", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1106/562523350_ee81184781_o.jpg", "secret": "e8129493d5", "media": "photo", "latitude": "0", "id": "562523350", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 13:59:53", "license": "4", "title": "_DSC1874", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1100/562526892_605d6dc9f0_o.jpg", "secret": "2a75f426cf", "media": "photo", "latitude": "0", "id": "562526892", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 13:59:57", "license": "4", "title": "_DSC1875", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1320/562530414_92eff48a3d_o.jpg", "secret": "47c0a4ea58", "media": "photo", "latitude": "0", "id": "562530414", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 14:00:01", "license": "4", "title": "_DSC1876", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1291/562929023_9a38b5f963_o.jpg", "secret": "f135f3fa80", "media": "photo", "latitude": "0", "id": "562929023", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 14:00:02", "license": "4", "title": "_DSC1878", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1320/562541804_c508c2abe7_o.jpg", "secret": "bd3aced868", "media": "photo", "latitude": "0", "id": "562541804", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 14:00:02", "license": "4", "title": "_DSC1877", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1098/562537496_39426cb677_o.jpg", "secret": "25c8066868", "media": "photo", "latitude": "0", "id": "562537496", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 14:00:03", "license": "4", "title": "_DSC1879", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1380/562942209_66effbe997_o.jpg", "secret": "1aad3bc4ef", "media": "photo", "latitude": "0", "id": "562942209", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 14:00:18", "license": "4", "title": "_DSC1880", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1398/562549960_2f866b9d81_o.jpg", "secret": "69c346b893", "media": "photo", "latitude": "0", "id": "562549960", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 14:00:33", "license": "4", "title": "_DSC1881", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1050/562553404_f3c9c7b952_o.jpg", "secret": "496134f54a", "media": "photo", "latitude": "0", "id": "562553404", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 14:00:48", "license": "4", "title": "_DSC1882", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1257/562951117_106d77001a_o.jpg", "secret": "92548a0ff0", "media": "photo", "latitude": "0", "id": "562951117", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 14:01:00", "license": "4", "title": "_DSC1883", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1138/562559554_5b99372976_o.jpg", "secret": "cdf34abe05", "media": "photo", "latitude": "0", "id": "562559554", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 14:03:00", "license": "4", "title": "_DSC1887", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1077/562574506_7b966b8f00_o.jpg", "secret": "d797be31b0", "media": "photo", "latitude": "0", "id": "562574506", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 14:03:08", "license": "4", "title": "_DSC1888", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1058/562578780_b48308f2e5_o.jpg", "secret": "2057162d2e", "media": "photo", "latitude": "0", "id": "562578780", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 14:03:13", "license": "4", "title": "_DSC1889", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1076/562976711_6a114d2885_o.jpg", "secret": "67f4523acc", "media": "photo", "latitude": "0", "id": "562976711", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 14:04:28", "license": "4", "title": "_DSC1891", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1303/562983829_bf50f8359b_o.jpg", "secret": "ef0f7d0446", "media": "photo", "latitude": "0", "id": "562983829", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 14:04:30", "license": "4", "title": "_DSC1892", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1264/562593322_a9f5c62011_o.jpg", "secret": "d92e043ea9", "media": "photo", "latitude": "0", "id": "562593322", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 14:04:39", "license": "4", "title": "_DSC1893", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1320/562990113_5be409dcc1_o.jpg", "secret": "d2e2f6f717", "media": "photo", "latitude": "0", "id": "562990113", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 14:04:42", "license": "4", "title": "_DSC1894", "text": "", "album_id": "72157600385894248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1405/562598998_26c02c9d50_o.jpg", "secret": "fea738e950", "media": "photo", "latitude": "0", "id": "562598998", "tags": "ca usa zoo mountainview fathersday sanfranciscozoo"}, {"datetaken": "2007-06-17 13:13:17", "license": "3", "title": "_DSC0098", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1437/562371920_c3b4946790_o.jpg", "secret": "60fca84692", "media": "photo", "latitude": "0", "id": "562371920", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 13:13:18", "license": "3", "title": "_DSC0099", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1405/562782455_9418a260da_o.jpg", "secret": "697ed21149", "media": "photo", "latitude": "0", "id": "562782455", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 13:13:32", "license": "3", "title": "_DSC0100", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1086/562785589_9038539a05_o.jpg", "secret": "083f21b908", "media": "photo", "latitude": "0", "id": "562785589", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 13:13:32", "license": "3", "title": "_DSC0101", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1126/562788731_56472f5667_o.jpg", "secret": "a8e0c87727", "media": "photo", "latitude": "0", "id": "562788731", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 13:13:38", "license": "3", "title": "_DSC0102", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1382/562792161_eace26daa8_o.jpg", "secret": "b4ae01360c", "media": "photo", "latitude": "0", "id": "562792161", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 13:13:41", "license": "3", "title": "_DSC0103", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1323/562795259_4d7496da4c_o.jpg", "secret": "d8dfe5d29c", "media": "photo", "latitude": "0", "id": "562795259", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 13:14:02", "license": "3", "title": "_DSC0104", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1111/562390184_01af2c6bf9_o.jpg", "secret": "df0dc494a9", "media": "photo", "latitude": "0", "id": "562390184", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 13:15:39", "license": "3", "title": "_DSC0105", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1261/562801667_4dd2f44549_o.jpg", "secret": "8218184b02", "media": "photo", "latitude": "0", "id": "562801667", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 13:57:40", "license": "3", "title": "_DSC0112", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1335/562804747_35ffce0789_o.jpg", "secret": "e363001ae8", "media": "photo", "latitude": "0", "id": "562804747", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 14:22:13", "license": "3", "title": "_DSC0130", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1290/562400126_4a00576ed3_o.jpg", "secret": "963f4a9998", "media": "photo", "latitude": "0", "id": "562400126", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 14:22:22", "license": "3", "title": "_DSC0131", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1371/562403870_0b3778efdb_o.jpg", "secret": "547a9a25d3", "media": "photo", "latitude": "0", "id": "562403870", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 14:28:02", "license": "3", "title": "_DSC0136", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1335/562813903_fc78a67543_o.jpg", "secret": "2db532dfa6", "media": "photo", "latitude": "0", "id": "562813903", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 16:33:28", "license": "3", "title": "_DSC0160", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1129/562987241_52c737eae5_o.jpg", "secret": "543386203d", "media": "photo", "latitude": "0", "id": "562987241", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 17:54:11", "license": "3", "title": "_DSC0165", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1431/562414804_c2875bc92f_o.jpg", "secret": "0517e700fd", "media": "photo", "latitude": "0", "id": "562414804", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 17:54:17", "license": "3", "title": "_DSC0166", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1382/562418106_b4e1180e3b_o.jpg", "secret": "bc4c6fa40a", "media": "photo", "latitude": "0", "id": "562418106", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 17:54:21", "license": "3", "title": "_DSC0167", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1141/562826905_2b83d45ede_o.jpg", "secret": "f2e80d753e", "media": "photo", "latitude": "0", "id": "562826905", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 17:55:13", "license": "3", "title": "_DSC0168", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1425/562425552_b5ca8f2c6b_o.jpg", "secret": "2340b2c48a", "media": "photo", "latitude": "0", "id": "562425552", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 17:56:20", "license": "3", "title": "_DSC0170", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1277/562429378_d237eb9016_o.jpg", "secret": "dff2358f13", "media": "photo", "latitude": "0", "id": "562429378", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 17:56:37", "license": "3", "title": "_DSC0172", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1096/562432930_0f9df33d2b_o.jpg", "secret": "84fc5280d4", "media": "photo", "latitude": "0", "id": "562432930", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 17:56:38", "license": "3", "title": "_DSC0173", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1069/562436382_04259a1244_o.jpg", "secret": "95f51a8b8d", "media": "photo", "latitude": "0", "id": "562436382", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 17:59:09", "license": "3", "title": "_DSC0176", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1416/562439938_6ece62ced4_o.jpg", "secret": "c498b32d82", "media": "photo", "latitude": "0", "id": "562439938", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:00:40", "license": "3", "title": "_DSC0182", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1310/562444510_5f4def180f_o.jpg", "secret": "0691a30700", "media": "photo", "latitude": "0", "id": "562444510", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:00:41", "license": "3", "title": "_DSC0183", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1389/562850459_f84c7df55b_o.jpg", "secret": "43c03e3771", "media": "photo", "latitude": "0", "id": "562850459", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:02:25", "license": "3", "title": "_DSC0188", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1428/562467444_ef6317bc51_o.jpg", "secret": "bef2ba3f57", "media": "photo", "latitude": "0", "id": "562467444", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:07:28", "license": "3", "title": "_DSC0201", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1051/562471232_f819b799e5_o.jpg", "secret": "d48dec7221", "media": "photo", "latitude": "0", "id": "562471232", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:10:15", "license": "3", "title": "_DSC0202", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1022/562475240_79dfd84008_o.jpg", "secret": "b9113dac3b", "media": "photo", "latitude": "0", "id": "562475240", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:10:18", "license": "3", "title": "_DSC0203", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1205/562874643_d1104682fc_o.jpg", "secret": "daacd1b2ec", "media": "photo", "latitude": "0", "id": "562874643", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:10:20", "license": "3", "title": "_DSC0204", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1224/562878063_a138ba897b_o.jpg", "secret": "2bc954fde8", "media": "photo", "latitude": "0", "id": "562878063", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:18:00", "license": "3", "title": "_DSC0205", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1037/562486514_3e81e90a85_o.jpg", "secret": "0f2f3b0ea8", "media": "photo", "latitude": "0", "id": "562486514", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:18:23", "license": "3", "title": "_DSC0206", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1265/562884743_fc868045cd_o.jpg", "secret": "9a60cec652", "media": "photo", "latitude": "0", "id": "562884743", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:18:26", "license": "3", "title": "_DSC0207", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1216/562888791_b2cf452683_o.jpg", "secret": "98172b948c", "media": "photo", "latitude": "0", "id": "562888791", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:18:33", "license": "3", "title": "_DSC0208", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1320/562892493_4a9addc226_o.jpg", "secret": "cfcbd6a59e", "media": "photo", "latitude": "0", "id": "562892493", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:18:52", "license": "3", "title": "_DSC0209", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1010/562501676_2b849fb7fa_o.jpg", "secret": "169a18f673", "media": "photo", "latitude": "0", "id": "562501676", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:21:04", "license": "3", "title": "_DSC0211", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1375/562904113_7a2227b748_o.jpg", "secret": "7ea5d60418", "media": "photo", "latitude": "0", "id": "562904113", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:22:44", "license": "3", "title": "_DSC0212", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1212/562908127_1c399b0f9a_o.jpg", "secret": "a2f162a386", "media": "photo", "latitude": "0", "id": "562908127", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:26:47", "license": "3", "title": "_DSC0213", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1210/562911541_cb8314eec8_o.jpg", "secret": "26cdecc9a7", "media": "photo", "latitude": "0", "id": "562911541", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:26:52", "license": "3", "title": "_DSC0214", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1267/562520848_2fd1311d41_o.jpg", "secret": "e20d9f7055", "media": "photo", "latitude": "0", "id": "562520848", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:27:00", "license": "3", "title": "_DSC0215", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1169/562919307_8f7bba7124_o.jpg", "secret": "3cf542f394", "media": "photo", "latitude": "0", "id": "562919307", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:29:39", "license": "3", "title": "_DSC0216", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1296/562922797_830c9d37d3_o.jpg", "secret": "5570908058", "media": "photo", "latitude": "0", "id": "562922797", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:29:40", "license": "3", "title": "_DSC0217", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1092/562531866_ac9a425123_o.jpg", "secret": "f78c67d477", "media": "photo", "latitude": "0", "id": "562531866", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:30:40", "license": "3", "title": "_DSC0218", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1067/562931337_3e8b070c33_o.jpg", "secret": "11973a7f5d", "media": "photo", "latitude": "0", "id": "562931337", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:30:44", "license": "3", "title": "_DSC0219", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1170/562539306_ae3af40808_o.jpg", "secret": "1dab2c0b9b", "media": "photo", "latitude": "0", "id": "562539306", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:31:04", "license": "3", "title": "_DSC0229", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1258/562571072_2fb24590a2_o.jpg", "secret": "258f1b3d66", "media": "photo", "latitude": "0", "id": "562571072", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:31:04", "license": "3", "title": "_DSC0230", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1395/562968863_5437d6dfcf_o.jpg", "secret": "8b2124c525", "media": "photo", "latitude": "0", "id": "562968863", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:31:05", "license": "3", "title": "_DSC0231", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1362/562578948_b25d5ece32_o.jpg", "secret": "4eae0bc76f", "media": "photo", "latitude": "0", "id": "562578948", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:31:06", "license": "3", "title": "_DSC0232", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1234/562976525_5e898204f1_o.jpg", "secret": "963573fd1a", "media": "photo", "latitude": "0", "id": "562976525", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:31:32", "license": "3", "title": "_DSC0233", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1055/562979761_d079e81734_o.jpg", "secret": "e85e866983", "media": "photo", "latitude": "0", "id": "562979761", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 18:32:15", "license": "3", "title": "_DSC0234", "text": "", "album_id": "72157600391908265", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1064/562589360_9a7db788cc_o.jpg", "secret": "845a32e6bd", "media": "photo", "latitude": "0", "id": "562589360", "tags": "red day sox giants fathers"}, {"datetaken": "2007-06-17 13:24:38", "license": "1", "title": "IMG_3751", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1296/563266319_95278ddfb6_o.jpg", "secret": "1034a3167a", "media": "photo", "latitude": "0", "id": "563266319", "tags": "flowers roses macro"}, {"datetaken": "2007-06-17 13:26:11", "license": "1", "title": "IMG_3753", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1042/562904006_45e8348a8b_o.jpg", "secret": "8114b34839", "media": "photo", "latitude": "0", "id": "562904006", "tags": "flowers roses macro"}, {"datetaken": "2007-06-17 13:27:02", "license": "1", "title": "IMG_3754", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1384/563281835_7bac2d072a_o.jpg", "secret": "fd69bd43f7", "media": "photo", "latitude": "0", "id": "563281835", "tags": "flowers roses macro"}, {"datetaken": "2007-06-17 13:28:18", "license": "1", "title": "IMG_3758", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1085/562919054_471bb7d4ef_o.jpg", "secret": "9a096d53f1", "media": "photo", "latitude": "0", "id": "562919054", "tags": "flowers roses portland"}, {"datetaken": "2007-06-17 13:28:45", "license": "1", "title": "IMG_3759", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1397/562924646_0275b636ab_o.jpg", "secret": "ff75e62a3f", "media": "photo", "latitude": "0", "id": "562924646", "tags": "flowers roses portland"}, {"datetaken": "2007-06-17 13:29:48", "license": "1", "title": "IMG_3760", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1106/563300943_9a2d6188d1_o.jpg", "secret": "5af9c809e1", "media": "photo", "latitude": "0", "id": "563300943", "tags": "flowers roses portland"}, {"datetaken": "2007-06-17 13:31:16", "license": "1", "title": "IMG_3762", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1439/562936876_ee3fee9bd4_o.jpg", "secret": "cc7e6afae7", "media": "photo", "latitude": "0", "id": "562936876", "tags": "flowers roses portland"}, {"datetaken": "2007-06-17 13:31:53", "license": "1", "title": "IMG_3763", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1259/562944014_2e9e3c8b87_o.jpg", "secret": "433da65d7d", "media": "photo", "latitude": "0", "id": "562944014", "tags": "flowers roses portland"}, {"datetaken": "2007-06-17 13:33:20", "license": "1", "title": "IMG_3765", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1360/562951568_a150737b0e_o.jpg", "secret": "0185f0b030", "media": "photo", "latitude": "0", "id": "562951568", "tags": "flowers roses portland"}, {"datetaken": "2007-06-17 13:37:09", "license": "1", "title": "IMG_3771", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1128/562962784_a900b5557c_o.jpg", "secret": "5d7911428e", "media": "photo", "latitude": "0", "id": "562962784", "tags": "flowers roses macro portlandrosegarden"}, {"datetaken": "2007-06-17 13:38:50", "license": "1", "title": "IMG_3773", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1226/563342231_b1e659e147_o.jpg", "secret": "05f578f5d8", "media": "photo", "latitude": "0", "id": "563342231", "tags": "flowers roses macro portlandrosegarden"}, {"datetaken": "2007-06-17 13:38:53", "license": "1", "title": "IMG_3774", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1356/563348999_21d0585d17_o.jpg", "secret": "50f021f327", "media": "photo", "latitude": "0", "id": "563348999", "tags": "flowers roses macro portlandrosegarden"}, {"datetaken": "2007-06-17 13:40:31", "license": "1", "title": "IMG_3776", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1418/562984610_2aaffba3a0_o.jpg", "secret": "4d1ad1b95a", "media": "photo", "latitude": "0", "id": "562984610", "tags": "flowers roses macro portlandrosegarden"}, {"datetaken": "2007-06-17 13:46:32", "license": "1", "title": "IMG_3777", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1155/562993318_e162339729_o.jpg", "secret": "3b6f51de34", "media": "photo", "latitude": "0", "id": "562993318", "tags": "flowers roses macro portlandrosegarden"}, {"datetaken": "2007-06-17 13:49:10", "license": "1", "title": "IMG_3779", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1277/563372299_27da1e140f_o.jpg", "secret": "824dbd6e70", "media": "photo", "latitude": "0", "id": "563372299", "tags": "flowers roses macro portlandrosegarden"}, {"datetaken": "2007-06-17 13:54:15", "license": "1", "title": "IMG_3782", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1009/563008696_0633914355_o.jpg", "secret": "1a9a9117ff", "media": "photo", "latitude": "0", "id": "563008696", "tags": "flowers roses macro portlandrosegarden"}, {"datetaken": "2007-06-17 14:12:30", "license": "1", "title": "IMG_3791", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1158/563031570_6f39f180d6_o.jpg", "secret": "0948615bf6", "media": "photo", "latitude": "0", "id": "563031570", "tags": "flowers macro wildlife fathersday portlandrosegarden"}, {"datetaken": "2007-06-17 14:14:16", "license": "1", "title": "IMG_3793", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1280/563408677_f5153ece25_o.jpg", "secret": "b78317d012", "media": "photo", "latitude": "0", "id": "563408677", "tags": "flowers macro wildlife fathersday portlandrosegarden"}, {"datetaken": "2007-06-17 14:15:56", "license": "1", "title": "IMG_3794", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1180/563415337_d8a19bd1a4_o.jpg", "secret": "26b3a14f4b", "media": "photo", "latitude": "0", "id": "563415337", "tags": "flowers macro wildlife fathersday portlandrosegarden"}, {"datetaken": "2007-06-17 14:18:21", "license": "1", "title": "IMG_3795", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1365/563053822_68c3368df3_o.jpg", "secret": "2e1c2a3dce", "media": "photo", "latitude": "0", "id": "563053822", "tags": "flowers macro wildlife fathersday portlandrosegarden"}, {"datetaken": "2007-06-17 14:19:47", "license": "1", "title": "IMG_3796", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1110/563429703_21434c1dfe_o.jpg", "secret": "7c3d3cd84c", "media": "photo", "latitude": "0", "id": "563429703", "tags": "flowers macro wildlife fathersday portlandrosegarden"}, {"datetaken": "2007-06-17 14:21:42", "license": "1", "title": "IMG_3797", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1113/563069310_025d532d48_o.jpg", "secret": "6647c8cde0", "media": "photo", "latitude": "0", "id": "563069310", "tags": "flowers macro wildlife fathersday portlandrosegarden"}, {"datetaken": "2007-06-17 14:24:01", "license": "1", "title": "IMG_3799", "text": "", "album_id": "72157600386539756", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1359/563079128_b4e029e22f_o.jpg", "secret": "32ab2540dc", "media": "photo", "latitude": "0", "id": "563079128", "tags": "flowers macro wildlife fathersday portlandrosegarden"}, {"datetaken": "2007-06-17 11:25:43", "license": "3", "title": "sp- 001", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1321/569375368_06df62fef6_o.jpg", "secret": "9169bed647", "media": "photo", "latitude": "0", "id": "569375368", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:07:17", "license": "3", "title": "sp- 002", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1273/569375868_9066ecffb3_o.jpg", "secret": "75ea4c0d76", "media": "photo", "latitude": "0", "id": "569375868", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:07:26", "license": "3", "title": "sp- 003", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1239/569376322_4d4aa53c77_o.jpg", "secret": "1ddde8a3a4", "media": "photo", "latitude": "0", "id": "569376322", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:40:39", "license": "3", "title": "sp- 004", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1260/569376780_936e7eeba2_o.jpg", "secret": "5dda11d9da", "media": "photo", "latitude": "0", "id": "569376780", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:40:46", "license": "3", "title": "sp- 005", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1001/569377392_9cc197a1d5_o.jpg", "secret": "6175688298", "media": "photo", "latitude": "0", "id": "569377392", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:40:51", "license": "3", "title": "sp- 006", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1064/569377990_dd1ec244a8_o.jpg", "secret": "5e9b910293", "media": "photo", "latitude": "0", "id": "569377990", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:40:58", "license": "3", "title": "sp- 007", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1090/569378586_d169269be7_o.jpg", "secret": "6b7e0f8093", "media": "photo", "latitude": "0", "id": "569378586", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:41:03", "license": "3", "title": "sp- 008", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1329/569824609_ef35480f8c_o.jpg", "secret": "564925161c", "media": "photo", "latitude": "0", "id": "569824609", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:41:08", "license": "3", "title": "sp- 009", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1135/569380106_92dc60f101_o.jpg", "secret": "9cc10d54b8", "media": "photo", "latitude": "0", "id": "569380106", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:41:15", "license": "3", "title": "sp- 010", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1100/569825887_3be74b324b_o.jpg", "secret": "2e0ff8272c", "media": "photo", "latitude": "0", "id": "569825887", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:41:22", "license": "3", "title": "sp- 011", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1218/569381522_39f7439dc2_o.jpg", "secret": "885420a17a", "media": "photo", "latitude": "0", "id": "569381522", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:41:28", "license": "3", "title": "sp- 012", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1135/569382170_a8639b8481_o.jpg", "secret": "b0efe95a4a", "media": "photo", "latitude": "0", "id": "569382170", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:41:36", "license": "3", "title": "sp- 013", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1162/569382926_3e7db259f9_o.jpg", "secret": "fc4927586d", "media": "photo", "latitude": "0", "id": "569382926", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:41:47", "license": "3", "title": "sp- 014", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1254/569383516_6bc6d89989_o.jpg", "secret": "8abf9b5fe1", "media": "photo", "latitude": "0", "id": "569383516", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:41:53", "license": "3", "title": "sp- 015", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1004/569828535_1077c107b5_o.jpg", "secret": "486ba8709a", "media": "photo", "latitude": "0", "id": "569828535", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:46:38", "license": "3", "title": "sp- 016", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1061/569828991_e448868aa9_o.jpg", "secret": "86d0f7b385", "media": "photo", "latitude": "0", "id": "569828991", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:46:49", "license": "3", "title": "sp- 017", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1271/569829339_d784ba5111_o.jpg", "secret": "cb67286b5e", "media": "photo", "latitude": "0", "id": "569829339", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:53:07", "license": "3", "title": "sp- 019", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1198/569385824_58d8462ec2_o.jpg", "secret": "59132c776d", "media": "photo", "latitude": "0", "id": "569385824", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:53:17", "license": "3", "title": "sp- 020", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1268/569386770_88b8132240_o.jpg", "secret": "f3a9198a60", "media": "photo", "latitude": "0", "id": "569386770", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:53:30", "license": "3", "title": "sp- 021", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1211/569831207_f494952c34_o.jpg", "secret": "d2adeeb87b", "media": "photo", "latitude": "0", "id": "569831207", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:53:41", "license": "3", "title": "sp- 022", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1078/569388666_fe50c1b5d5_o.jpg", "secret": "1a5244ff36", "media": "photo", "latitude": "0", "id": "569388666", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:53:46", "license": "3", "title": "sp- 023", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1426/569389368_fb30da0296_o.jpg", "secret": "4e38845142", "media": "photo", "latitude": "0", "id": "569389368", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 12:53:58", "license": "3", "title": "sp- 024", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1429/569390032_a3c997d78e_o.jpg", "secret": "a4a9f82340", "media": "photo", "latitude": "0", "id": "569390032", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2007-06-17 13:17:39", "license": "3", "title": "sp- 025", "text": "", "album_id": "72157600452998161", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1146/569833985_3dd88a1e5f_o.jpg", "secret": "c6b70157f5", "media": "photo", "latitude": "0", "id": "569833985", "tags": "park mountain day pittsburgh south biking fathers porc 6172007"}, {"datetaken": "2008-05-26 00:00:00", "license": "3", "title": "Invasive orange polygonals", "text": "", "album_id": "72157605576271182", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2192/2573144781_58ae8f36e3_o.jpg", "secret": "2d52957434", "media": "photo", "latitude": "0", "id": "2573144781", "tags": "atlanta friends film portraits 35mm ga georgia alt candid cookout memorialday redscale"}, {"datetaken": "2008-05-26 00:00:01", "license": "3", "title": "The power of Pearl compels you", "text": "", "album_id": "72157605576271182", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2259/2573144873_a832f63d76_o.jpg", "secret": "4354c4e7e3", "media": "photo", "latitude": "0", "id": "2573144873", "tags": "atlanta friends film portraits 35mm ga georgia alt candid cookout memorialday redscale"}, {"datetaken": "2008-05-26 00:00:02", "license": "3", "title": "Holding court at the party at the end of the world", "text": "", "album_id": "72157605576271182", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3090/2573144941_7fb15f0333_o.jpg", "secret": "1dbdc81dbd", "media": "photo", "latitude": "0", "id": "2573144941", "tags": "atlanta friends film portraits 35mm ga georgia alt candid cookout memorialday redscale"}, {"datetaken": "2008-05-26 00:00:03", "license": "3", "title": "Two cooling and one in the oven", "text": "", "album_id": "72157605576271182", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3194/2573171773_d9f4a01c75_o.jpg", "secret": "63f10bc2fe", "media": "photo", "latitude": "0", "id": "2573171773", "tags": "atlanta friends film portraits 35mm ga georgia alt candid cookout memorialday redscale"}, {"datetaken": "2008-05-26 00:00:05", "license": "3", "title": "Rhonda interrupted", "text": "", "album_id": "72157605576271182", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3073/2573171939_13575f6296_o.jpg", "secret": "6e1ee65e4d", "media": "photo", "latitude": "0", "id": "2573171939", "tags": "atlanta friends film portraits 35mm ga georgia alt candid cookout memorialday redscale"}, {"datetaken": "2008-05-26 00:00:06", "license": "3", "title": "Performing at the party at the end of the world", "text": "", "album_id": "72157605576271182", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3023/2573994706_e24a3a6186_o.jpg", "secret": "8bd4bd3b09", "media": "photo", "latitude": "0", "id": "2573994706", "tags": "atlanta friends film portraits 35mm ga georgia alt candid cookout memorialday redscale"}, {"datetaken": "2008-05-26 00:00:08", "license": "3", "title": "A father's love", "text": "", "album_id": "72157605576271182", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3037/2573994872_b1295a4a26_o.jpg", "secret": "cc9c6728e6", "media": "photo", "latitude": "0", "id": "2573994872", "tags": "atlanta friends film portraits 35mm ga georgia alt candid cookout memorialday redscale"}, {"datetaken": "2008-05-26 15:00:00", "license": "3", "title": "Cool kids: Kit", "text": "", "album_id": "72157605576271182", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3051/2546750901_a3d4bb57a7_o.jpg", "secret": "f6f4650a57", "media": "photo", "latitude": "0", "id": "2546750901", "tags": "atlanta friends portrait film ga georgia blackwhite cookout memorialday"}, {"datetaken": "2008-05-26 15:01:00", "license": "3", "title": "Cool kids: Laura", "text": "", "album_id": "72157605576271182", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3279/2546751223_31e32e4a5d_o.jpg", "secret": "d00b6626e6", "media": "photo", "latitude": "0", "id": "2546751223", "tags": "atlanta friends portrait film ga georgia blackwhite cookout memorialday"}, {"datetaken": "2008-05-26 15:02:00", "license": "3", "title": "Cool kids: Tom", "text": "", "album_id": "72157605576271182", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3260/2547574582_f9a4b9b8cb_o.jpg", "secret": "9512a10de4", "media": "photo", "latitude": "0", "id": "2547574582", "tags": "atlanta friends portrait film ga georgia blackwhite cookout memorialday"}, {"datetaken": "2008-06-15 14:36:21", "license": "4", "title": "Father's Day", "text": "", "album_id": "72157605678623604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3038/2590291142_879b0473e7_o.jpg", "secret": "5db907c3b3", "media": "photo", "latitude": "0", "id": "2590291142", "tags": ""}, {"datetaken": "2008-06-15 14:36:32", "license": "4", "title": "Father's Day", "text": "", "album_id": "72157605678623604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3046/2589456441_74afb5eb6b_o.jpg", "secret": "ab4ae22b14", "media": "photo", "latitude": "0", "id": "2589456441", "tags": ""}, {"datetaken": "2008-06-15 14:38:01", "license": "4", "title": "Father's Day", "text": "", "album_id": "72157605678623604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3192/2589456863_c925d27c5b_o.jpg", "secret": "e620bb0a96", "media": "photo", "latitude": "0", "id": "2589456863", "tags": ""}, {"datetaken": "2008-06-15 14:59:01", "license": "4", "title": "Father's Day", "text": "", "album_id": "72157605678623604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3114/2590292998_21b5fc7ed8_o.jpg", "secret": "7341eac235", "media": "photo", "latitude": "0", "id": "2590292998", "tags": ""}, {"datetaken": "2008-06-15 14:59:28", "license": "4", "title": "Father's Day", "text": "", "album_id": "72157605678623604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3198/2590294062_6ee76fd315_o.jpg", "secret": "138d1cfa03", "media": "photo", "latitude": "0", "id": "2590294062", "tags": ""}, {"datetaken": "2008-06-15 14:59:34", "license": "4", "title": "Father's Day", "text": "", "album_id": "72157605678623604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3151/2590294954_70f9a25872_o.jpg", "secret": "901a1f1e68", "media": "photo", "latitude": "0", "id": "2590294954", "tags": ""}, {"datetaken": "2008-06-15 14:59:40", "license": "4", "title": "Father's Day", "text": "", "album_id": "72157605678623604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3288/2590295914_15b8103ce7_o.jpg", "secret": "d91699e225", "media": "photo", "latitude": "0", "id": "2590295914", "tags": ""}, {"datetaken": "2008-06-15 14:59:54", "license": "4", "title": "Father's Day", "text": "", "album_id": "72157605678623604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3170/2590296680_6496a22f7d_o.jpg", "secret": "20b6cc621c", "media": "photo", "latitude": "0", "id": "2590296680", "tags": ""}, {"datetaken": "2008-06-15 15:00:27", "license": "4", "title": "Father's Day", "text": "", "album_id": "72157605678623604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3247/2590297146_8292dcbd72_o.jpg", "secret": "ff4883346d", "media": "photo", "latitude": "0", "id": "2590297146", "tags": ""}, {"datetaken": "2008-06-15 15:00:57", "license": "4", "title": "Father's Day", "text": "", "album_id": "72157605678623604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3294/2589462663_ec0d61d51b_o.jpg", "secret": "7f03b2fda7", "media": "photo", "latitude": "0", "id": "2589462663", "tags": ""}, {"datetaken": "2008-06-15 15:01:24", "license": "4", "title": "Father's Day", "text": "", "album_id": "72157605678623604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3037/2590298622_d6b4db4fbb_o.jpg", "secret": "b7cd35fdca", "media": "photo", "latitude": "0", "id": "2590298622", "tags": ""}, {"datetaken": "2008-06-15 15:01:54", "license": "4", "title": "Father's Day", "text": "", "album_id": "72157605678623604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3195/2590299124_433cc3b19a_o.jpg", "secret": "0905df74c2", "media": "photo", "latitude": "0", "id": "2590299124", "tags": ""}, {"datetaken": "2008-06-15 15:02:12", "license": "4", "title": "Father's Day", "text": "", "album_id": "72157605678623604", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2243/2589464439_3d00e2d5c3_o.jpg", "secret": "c237de1b84", "media": "photo", "latitude": "0", "id": "2589464439", "tags": ""}, {"datetaken": "2008-06-15 01:00:26", "license": "4", "title": "Father's Day 2008 Behm House", "text": "", "album_id": "72157606020232086", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3138/2645033056_3d45fd4132_o.jpg", "secret": "ecd4d1c949", "media": "photo", "latitude": "0", "id": "2645033056", "tags": "food mike kitchen hat colin julia randy"}, {"datetaken": "2008-06-15 01:00:39", "license": "4", "title": "Colin w/dad and Uncle Michael", "text": "", "album_id": "72157606020232086", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3005/2644213581_9e982e285d_o.jpg", "secret": "4a90103d24", "media": "photo", "latitude": "0", "id": "2644213581", "tags": "mike boys hat colin randy"}, {"datetaken": "2008-06-15 01:08:50", "license": "4", "title": "Julia (super cute girl)", "text": "", "album_id": "72157606020232086", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3270/2645031732_b7888238d8_o.jpg", "secret": "b24ffdfa91", "media": "photo", "latitude": "0", "id": "2645031732", "tags": "girl smile hat julia eating"}, {"datetaken": "2008-06-15 01:19:01", "license": "4", "title": "Colin (super cute boy)", "text": "", "album_id": "72157606020232086", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3024/2645034116_98cb936c14_o.jpg", "secret": "1e27105e74", "media": "photo", "latitude": "0", "id": "2645034116", "tags": "boy smile hat colin toddler"}, {"datetaken": "2008-06-15 01:30:04", "license": "4", "title": "Julia", "text": "", "album_id": "72157606020232086", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2348/2644220573_1f35dde607_o.jpg", "secret": "7ea529422b", "media": "photo", "latitude": "0", "id": "2644220573", "tags": "girl smile julia swing"}, {"datetaken": "2008-06-15 01:30:47", "license": "4", "title": "Colin (baby brother)", "text": "", "album_id": "72157606020232086", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3121/2645042498_b63aa85aa5_o.jpg", "secret": "26cebefb6e", "media": "photo", "latitude": "0", "id": "2645042498", "tags": "boy hat colin toddler"}, {"datetaken": "2008-06-15 01:33:21", "license": "4", "title": "Julia swings", "text": "", "album_id": "72157606020232086", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3164/2644212155_64be8f319e_o.jpg", "secret": "127fa62535", "media": "photo", "latitude": "0", "id": "2644212155", "tags": "girl smile julia swingset"}, {"datetaken": "2008-06-15 01:39:03", "license": "4", "title": "DSC_0920", "text": "", "album_id": "72157606020232086", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3079/2644218017_2cefd91065_o.jpg", "secret": "0c828d8e3d", "media": "photo", "latitude": "0", "id": "2644218017", "tags": "girl smile hat julia"}, {"datetaken": "2008-06-15 01:41:43", "license": "4", "title": "Julia", "text": "", "album_id": "72157606020232086", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3082/2645049892_7391ae07c3_o.jpg", "secret": "eb7059102e", "media": "photo", "latitude": "0", "id": "2645049892", "tags": "smile hat juliagirl"}, {"datetaken": "2008-06-15 01:59:42", "license": "4", "title": "Father's Day 2008 Behm House", "text": "", "album_id": "72157606020232086", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3059/2645048574_28ca93532b_o.jpg", "secret": "6b0cffa05c", "media": "photo", "latitude": "0", "id": "2645048574", "tags": "family backyard"}, {"datetaken": "2008-06-15 02:04:41", "license": "4", "title": "Colin w/his dad", "text": "", "album_id": "72157606020232086", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3263/2645035708_910dec1354_o.jpg", "secret": "4e57a12bb5", "media": "photo", "latitude": "0", "id": "2645035708", "tags": "boy smile hat colin dad randy"}, {"datetaken": "2008-06-15 02:09:43", "license": "4", "title": "Uncle Michael & Colin have a talk", "text": "", "album_id": "72157606020232086", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3080/2645030050_34edae1023_o.jpg", "secret": "3e149f3ab4", "media": "photo", "latitude": "0", "id": "2645030050", "tags": "mike boys smile colin"}, {"datetaken": "2008-06-15 02:10:03", "license": "4", "title": "Grandpa & Julia", "text": "", "album_id": "72157606020232086", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3079/2644219529_12a864d72b_o.jpg", "secret": "5a0d6c556b", "media": "photo", "latitude": "0", "id": "2644219529", "tags": "girl smile julia grandpa swingset"}, {"datetaken": "2008-06-15 02:11:09", "license": "4", "title": "Julia (so intense)", "text": "", "album_id": "72157606020232086", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3049/2645043102_47af94bf59_o.jpg", "secret": "3ca750658f", "media": "photo", "latitude": "0", "id": "2645043102", "tags": "girl julia serious"}, {"datetaken": "1999-04-10 00:00:00", "license": "5", "title": "Cruz del Sur", "text": "", "album_id": "72157622888449176", "longitude": "-73.521881", "url_o": "https://farm4.staticflickr.com/3622/3391020022_ba4c0c7ea3_o.jpg", "secret": "7ee93abdc3", "media": "photo", "latitude": "-41.804078", "id": "3391020022", "tags": "chile bus ferry castro autobus franca chiloe puertomontt cruzdelsur isladechiloe chiloeisland loslagosregion"}, {"datetaken": "1999-04-10 00:00:01", "license": "5", "title": "Cruz del Sur", "text": "", "album_id": "72157622888449176", "longitude": "-73.521881", "url_o": "https://farm4.staticflickr.com/3451/3391020018_3d741e9f67_o.jpg", "secret": "50e54be878", "media": "photo", "latitude": "-41.804078", "id": "3391020018", "tags": "chile bus ferry castro autobus chiloe puertomontt cruzdelsur isladechiloe chiloeisland loslagosregion"}, {"datetaken": "1999-04-11 00:00:00", "license": "5", "title": "Solanum flower", "text": "", "album_id": "72157622888449176", "longitude": "-73.762378", "url_o": "https://farm4.staticflickr.com/3556/3396002740_2f65620708_o.jpg", "secret": "4c05e15e35", "media": "photo", "latitude": "-42.489314", "id": "3396002740", "tags": "chile flower castro chiloe solanum isladechiloe chiloeisland loslagosregion"}, {"datetaken": "1999-04-11 00:00:00", "license": "5", "title": "Ramon Freire Serrano in Castro, Chiloe", "text": "", "album_id": "72157622888449176", "longitude": "-73.770275", "url_o": "https://farm4.staticflickr.com/3625/3395989900_de6baecf52_o.jpg", "secret": "80e089f3bc", "media": "photo", "latitude": "-42.484630", "id": "3395989900", "tags": "chile statue castro chiloe freire isladechiloe chiloeisland loslagosregion ramonfreireserrano ramonfreire"}, {"datetaken": "1999-04-11 00:00:01", "license": "5", "title": "Fuchsia magellanica", "text": "", "album_id": "72157622888449176", "longitude": "-73.762378", "url_o": "https://farm4.staticflickr.com/3458/3396002698_be01a68b47_o.jpg", "secret": "294e4af176", "media": "photo", "latitude": "-42.489314", "id": "3396002698", "tags": "chile fuchsia castro chiloe chilca chilco isladechiloe fuchsiamagellanica paloblanco chiloeisland loslagosregion"}, {"datetaken": "1999-04-11 00:00:01", "license": "5", "title": "Castro, Chiloe", "text": "", "album_id": "72157622888449176", "longitude": "-73.762378", "url_o": "https://farm4.staticflickr.com/3449/3395989942_9b4a7f7774_o.jpg", "secret": "37cab45ef4", "media": "photo", "latitude": "-42.489314", "id": "3395989942", "tags": "chile sea castro seafront chiloe isladechiloe chiloeisland loslagosregion"}, {"datetaken": "1999-04-11 00:00:02", "license": "5", "title": "Statue of Christ on the cross", "text": "", "album_id": "72157622888449176", "longitude": "-73.770275", "url_o": "https://farm4.staticflickr.com/3447/3395989890_db76051aa8_o.jpg", "secret": "ea4d8bc815", "media": "photo", "latitude": "-42.484630", "id": "3395989890", "tags": "chile statue christ christian castro chiloe religiousstatue isladechiloe chiloeisland loslagosregion christianstatue"}, {"datetaken": "1999-04-11 00:00:02", "license": "5", "title": "Fuchsia magellanica (Chilco)", "text": "", "album_id": "72157622888449176", "longitude": "-73.762378", "url_o": "https://farm4.staticflickr.com/3148/3396002710_143b7f8729_o.jpg", "secret": "58b3f571b6", "media": "photo", "latitude": "-42.489314", "id": "3396002710", "tags": "chile fuchsia castro chiloe chilca chilco isladechiloe fuchsiamagellanica paloblanco chiloeisland loslagosregion"}, {"datetaken": "1999-04-11 00:00:03", "license": "5", "title": "Libertador General Bernardo O'Higgins", "text": "", "album_id": "72157622888449176", "longitude": "-73.770275", "url_o": "https://farm4.staticflickr.com/3573/3395989916_5a68bb044b_o.jpg", "secret": "d00a8d860c", "media": "photo", "latitude": "-42.484630", "id": "3395989916", "tags": "chile statue castro ohiggins chiloe bernardoohiggins isladechiloe chiloeisland loslagosregion libertadorgeneral bernardoohigginsriquelme"}, {"datetaken": "1999-04-11 00:00:03", "license": "5", "title": "Castro, Chiloe", "text": "", "album_id": "72157622888449176", "longitude": "-73.762378", "url_o": "https://farm4.staticflickr.com/3660/3395989930_7279320ba6_o.jpg", "secret": "08cbf68bf6", "media": "photo", "latitude": "-42.489314", "id": "3395989930", "tags": "chile houses sea beach playa castro seafront chiloe housesonstilts palafitos isladechiloe chiloeisland loslagosregion"}, {"datetaken": "1999-04-11 00:00:04", "license": "5", "title": "Simon Bolivar in Castro, Chiloe", "text": "", "album_id": "72157622888449176", "longitude": "-73.770275", "url_o": "https://farm4.staticflickr.com/3631/3395989908_4fab30a2eb_o.jpg", "secret": "fb6717ff08", "media": "photo", "latitude": "-42.484630", "id": "3395989908", "tags": "chile statue bolivar castro chiloe simonbolivar isladechiloe chiloeisland loslagosregion"}, {"datetaken": "1999-04-11 00:00:05", "license": "5", "title": "Castro, Chiloe", "text": "", "album_id": "72157622888449176", "longitude": "-73.764095", "url_o": "https://farm4.staticflickr.com/3448/3395969032_18753bed89_o.jpg", "secret": "5bb9022f15", "media": "photo", "latitude": "-42.479313", "id": "3395969032", "tags": "chile sea castro seafront chiloe hostal elmolo hospedaje isladechiloe chiloeisland loslagosregion hospedajeelmolo"}, {"datetaken": "1999-04-11 00:00:06", "license": "5", "title": "Castro, Chiloe", "text": "", "album_id": "72157622888449176", "longitude": "-73.764095", "url_o": "https://farm4.staticflickr.com/3432/3395968998_fc32cbcac7_o.jpg", "secret": "3f50073bf1", "media": "photo", "latitude": "-42.479313", "id": "3395968998", "tags": "chile castro chiloe elmolo hospedaje isladechiloe chiloeisland loslagosregion hospedajeelmolo"}, {"datetaken": "1999-04-11 00:00:07", "license": "5", "title": "San Francisco Church, Castro, Chiloe", "text": "", "album_id": "72157622888449176", "longitude": "-73.768386", "url_o": "https://farm4.staticflickr.com/3631/3395969090_00b71ccd20_o.jpg", "secret": "331916a99f", "media": "photo", "latitude": "-42.484440", "id": "3395969090", "tags": "chile church iglesia castro eglise woodenchurch chiloe isladechiloe sanfranciscocathedral chiloeisland loslagosregion catedraldesanfrancisco"}, {"datetaken": "1999-04-11 00:00:08", "license": "5", "title": "Iglesia de San Francisco, Castro, Chiloe", "text": "", "album_id": "72157622888449176", "longitude": "-73.768386", "url_o": "https://farm4.staticflickr.com/3436/3395969076_7c018019e7_o.jpg", "secret": "f727ed46c3", "media": "photo", "latitude": "-42.484440", "id": "3395969076", "tags": "chile church iglesia castro chiloe isladechiloe sanfranciscocathedral chiloeisland loslagosregion catedraldesanfrancisco"}, {"datetaken": "1999-04-11 00:00:09", "license": "5", "title": "Locomotora Ancud-Castro", "text": "", "album_id": "72157622888449176", "longitude": "-73.764095", "url_o": "https://farm4.staticflickr.com/3634/3395969066_2daf89d49a_o.jpg", "secret": "e2eded8edd", "media": "photo", "latitude": "-42.479313", "id": "3395969066", "tags": "chile train tren castro chiloe henschel isladechiloe chiloeisland loslagosregion henschel060t"}, {"datetaken": "1999-04-11 00:00:10", "license": "5", "title": "Castro, Chiloe", "text": "", "album_id": "72157622888449176", "longitude": "-73.764095", "url_o": "https://farm4.staticflickr.com/3652/3395969026_f18c9cb2c1_o.jpg", "secret": "3dac94e19f", "media": "photo", "latitude": "-42.479313", "id": "3395969026", "tags": "chile castro chiloe hostal elmolo hospedaje isladechiloe chiloeisland loslagosregion hospedajeelmolo"}, {"datetaken": "2009-06-10 11:36:17", "license": "4", "title": "Make a tee for dad", "text": "", "album_id": "72157619615714924", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3586/3617469625_c255a344a9_o.jpg", "secret": "0415e1e1e2", "media": "photo", "latitude": "0", "id": "3617469625", "tags": "twins paint event fathersday handprint fingerpaint 2yearold shopevent footprintthrivinginkthrivinginkcorethinkalittlebitweirdsupersoakerwaterguntshirtteestshirt"}, {"datetaken": "2009-06-10 11:38:40", "license": "4", "title": "Make a tee for dad", "text": "", "album_id": "72157619615714924", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3346/3618290494_14c3e1ba25_o.jpg", "secret": "6243df22b3", "media": "photo", "latitude": "0", "id": "3618290494", "tags": "twins paint event fathersday handprint footprint fingerpaint 2yearold shopevent newbornthrivinginkthrivinginkcorethinkalittlebitweirdsupersoakerwaterguntshirtteestshirt"}, {"datetaken": "2009-06-10 11:39:23", "license": "4", "title": "Make a tee for dad", "text": "", "album_id": "72157619615714924", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3598/3618292108_cf9df24bb4_o.jpg", "secret": "d8d19e191e", "media": "photo", "latitude": "0", "id": "3618292108", "tags": "twins paint event fathersday handprint fingerpaint 2yearold shopevent footprintthrivinginkthrivinginkcorethinkalittlebitweirdsupersoakerwaterguntshirtteestshirt"}, {"datetaken": "2009-06-10 11:40:06", "license": "4", "title": "Make a tee for dad", "text": "", "album_id": "72157619615714924", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3593/3618291600_6bed957dd4_o.jpg", "secret": "054d5aaf0b", "media": "photo", "latitude": "0", "id": "3618291600", "tags": "twins paint event fathersday handprint fingerpaint 2yearold shopevent footprintthrivinginkthrivinginkcorethinkalittlebitweirdsupersoakerwaterguntshirtteestshirt"}, {"datetaken": "2009-06-10 11:40:46", "license": "4", "title": "Make a tee for dad", "text": "", "album_id": "72157619615714924", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3643/3618292466_ab2c4765e9_o.jpg", "secret": "ba5ea71bf1", "media": "photo", "latitude": "0", "id": "3618292466", "tags": "twins paint event fathersday handprint fingerpaint 2yearold shopevent footprintthrivinginkthrivinginkcorethinkalittlebitweirdsupersoakerwaterguntshirtteestshirt"}, {"datetaken": "2009-06-10 11:40:47", "license": "4", "title": "Make a tee for dad", "text": "", "album_id": "72157619615714924", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3395/3618291010_f1b9d80530_o.jpg", "secret": "874f4da8ba", "media": "photo", "latitude": "0", "id": "3618291010", "tags": "twins paint event fathersday handprint fingerpaint 2yearold shopevent footprintthrivinginkthrivinginkcorethinkalittlebitweirdsupersoakerwaterguntshirtteestshirt"}, {"datetaken": "2009-06-10 11:42:05", "license": "4", "title": "Make a tee for dad", "text": "", "album_id": "72157619615714924", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2431/3617472495_55047959cd_o.jpg", "secret": "a397b6bfc2", "media": "photo", "latitude": "0", "id": "3617472495", "tags": "twins paint event fathersday handprint fingerpaint 2yearold shopevent footprintthrivinginkthrivinginkcorethinkalittlebitweirdsupersoakerwaterguntshirtteestshirt"}, {"datetaken": "2009-06-10 11:58:00", "license": "4", "title": "Make a tee for dad", "text": "", "album_id": "72157619615714924", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3652/3617472911_baf6b026b8_o.jpg", "secret": "eb824896c5", "media": "photo", "latitude": "0", "id": "3617472911", "tags": "twins paint event fathersday handprint fingerpaint 2yearold shopevent footprintthrivinginkthrivinginkcorethinkalittlebitweirdsupersoakerwaterguntshirtteestshirt"}, {"datetaken": "2009-06-10 11:59:23", "license": "4", "title": "Make a tee for dad", "text": "", "album_id": "72157619615714924", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3319/3618293908_8989bc8a7c_o.jpg", "secret": "9d2deb6faf", "media": "photo", "latitude": "0", "id": "3618293908", "tags": "twins paint event fathersday handprint fingerpaint 2yearold shopevent footprintthrivinginkthrivinginkcorethinkalittlebitweirdsupersoakerwaterguntshirtteestshirt"}, {"datetaken": "2009-06-10 12:07:58", "license": "4", "title": "Make a tee for dad", "text": "", "album_id": "72157619615714924", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3395/3617473657_6eda63542d_o.jpg", "secret": "ae97e1ed12", "media": "photo", "latitude": "0", "id": "3617473657", "tags": "twins paint event fathersday handprint fingerpaint 2yearold shopevent footprintthrivinginkthrivinginkcorethinkalittlebitweirdsupersoakerwaterguntshirtteestshirt"}, {"datetaken": "2009-06-10 12:08:32", "license": "4", "title": "Make a tee for dad", "text": "", "album_id": "72157619615714924", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2446/3618294708_c657ddf5be_o.jpg", "secret": "db42318f58", "media": "photo", "latitude": "0", "id": "3618294708", "tags": "twins paint event fathersday handprint fingerpaint 2yearold shopevent footprintthrivinginkthrivinginkcorethinkalittlebitweirdsupersoakerwaterguntshirtteestshirt"}, {"datetaken": "2009-06-10 12:31:53", "license": "4", "title": "Make a tee for dad", "text": "", "album_id": "72157619615714924", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2461/3618295034_7cf7e45cac_o.jpg", "secret": "fbf690d929", "media": "photo", "latitude": "0", "id": "3618295034", "tags": "twins paint event fathersday handprint fingerpaint 2yearold shopevent footprintthrivinginkthrivinginkcorethinkalittlebitweirdsupersoakerwaterguntshirtteestshirt"}, {"datetaken": "2009-06-10 14:15:13", "license": "4", "title": "Make a tee for dad", "text": "", "album_id": "72157619615714924", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3641/3618295444_c63b6defd2_o.jpg", "secret": "1b2303770f", "media": "photo", "latitude": "0", "id": "3618295444", "tags": "twins paint event fathersday handprint fingerpaint 2yearold shopevent footprintthrivinginkthrivinginkcorethinkalittlebitweirdsupersoakerwaterguntshirtteestshirt"}, {"datetaken": "2009-06-13 18:11:49", "license": "1", "title": "06.13.09 Grad / Father's Day Dinner", "text": "", "album_id": "72157619880943327", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3298/3642198830_17fed48a1e_o.jpg", "secret": "8edc017545", "media": "photo", "latitude": "0", "id": "3642198830", "tags": "barnumandtibbets"}, {"datetaken": "2009-06-13 18:13:08", "license": "1", "title": "06.13.09 Grad / Father's Day Dinner", "text": "", "album_id": "72157619880943327", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3628/3641399783_622c459c61_o.jpg", "secret": "403f3f5f8a", "media": "photo", "latitude": "0", "id": "3641399783", "tags": "barnumandtibbets"}, {"datetaken": "2009-06-13 18:25:46", "license": "1", "title": "06.13.09 Grad / Father's Day Dinner", "text": "", "album_id": "72157619880943327", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3417/3641390735_447ecae4a8_o.jpg", "secret": "8c8fed198c", "media": "photo", "latitude": "0", "id": "3641390735", "tags": "barnumandtibbets"}, {"datetaken": "2009-06-13 18:38:26", "license": "1", "title": "06.13.09 Grad / Father's Day Dinner", "text": "", "album_id": "72157619880943327", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3627/3642207664_aa6f734527_o.jpg", "secret": "f5e8832385", "media": "photo", "latitude": "0", "id": "3642207664", "tags": "barnumandtibbets"}, {"datetaken": "2009-06-13 18:45:32", "license": "1", "title": "06.13.09 Grad / Father's Day Dinner", "text": "", "album_id": "72157619880943327", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2445/3642207922_3074cd26bb_o.jpg", "secret": "044632a9eb", "media": "photo", "latitude": "0", "id": "3642207922", "tags": "barnumandtibbets"}, {"datetaken": "2009-06-13 19:03:40", "license": "1", "title": "06.13.09 Grad / Father's Day Dinner", "text": "", "album_id": "72157619880943327", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2478/3641396625_b1e561bdbf_o.jpg", "secret": "2b13e440b3", "media": "photo", "latitude": "0", "id": "3641396625", "tags": "food barnumandtibbets"}, {"datetaken": "2009-06-13 19:04:57", "license": "1", "title": "06.13.09 Grad / Father's Day Dinner", "text": "", "album_id": "72157619880943327", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3415/3642204476_1bf080e73b_o.jpg", "secret": "5f4de80103", "media": "photo", "latitude": "0", "id": "3642204476", "tags": "food barnumandtibbets"}, {"datetaken": "2009-06-13 19:05:21", "license": "1", "title": "06.13.09 Grad / Father's Day Dinner", "text": "", "album_id": "72157619880943327", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3537/3642204206_2b18b5e898_o.jpg", "secret": "4f66cd2589", "media": "photo", "latitude": "0", "id": "3642204206", "tags": "food barnumandtibbets"}, {"datetaken": "2009-06-13 19:05:46", "license": "1", "title": "06.13.09 Grad / Father's Day Dinner", "text": "", "album_id": "72157619880943327", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3622/3641396131_7c0689bf3e_o.jpg", "secret": "3f1e85f9ea", "media": "photo", "latitude": "0", "id": "3641396131", "tags": "food barnumandtibbets"}, {"datetaken": "2009-06-13 19:06:40", "license": "1", "title": "06.13.09 Grad / Father's Day Dinner", "text": "", "album_id": "72157619880943327", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3542/3641396385_a504fa9600_o.jpg", "secret": "fe7f30b2a0", "media": "photo", "latitude": "0", "id": "3641396385", "tags": "food barnumandtibbets"}, {"datetaken": "2009-06-13 19:56:22", "license": "1", "title": "06.13.09 Grad / Father's Day Dinner", "text": "", "album_id": "72157619880943327", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3409/3642202030_cda84a04d2_o.jpg", "secret": "7abf07839c", "media": "photo", "latitude": "0", "id": "3642202030", "tags": "barnumandtibbets"}, {"datetaken": "2009-06-13 19:56:24", "license": "1", "title": "06.13.09 Grad / Father's Day Dinner", "text": "", "album_id": "72157619880943327", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2219/3642202144_dafc241995_o.jpg", "secret": "1311969ee6", "media": "photo", "latitude": "0", "id": "3642202144", "tags": "barnumandtibbets"}, {"datetaken": "2009-06-13 19:59:00", "license": "1", "title": "06.13.09 Grad / Father's Day Dinner", "text": "", "album_id": "72157619880943327", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3646/3641390505_ce17e8367e_o.jpg", "secret": "bdc67e5421", "media": "photo", "latitude": "0", "id": "3641390505", "tags": "barnumandtibbets"}, {"datetaken": "2009-06-13 19:59:45", "license": "1", "title": "06.13.09 Grad / Father's Day Dinner", "text": "", "album_id": "72157619880943327", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2429/3642208144_72f5c8f37e_o.jpg", "secret": "ca9b94a1cf", "media": "photo", "latitude": "0", "id": "3642208144", "tags": "barnumandtibbets"}, {"datetaken": "2009-06-21 11:16:04", "license": "4", "title": "DSC_3858", "text": "", "album_id": "72157620102507052", "longitude": "-88.333311", "url_o": "https://farm4.staticflickr.com/3577/3647798574_07da9aa68f_o.jpg", "secret": "3671798d36", "media": "photo", "latitude": "42.864682", "id": "3647798574", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:17:22", "license": "4", "title": "DSC_3859", "text": "", "album_id": "72157620102507052", "longitude": "-88.333311", "url_o": "https://farm4.staticflickr.com/3577/3646995419_82a006dd0f_o.jpg", "secret": "e27c46a3f4", "media": "photo", "latitude": "42.864682", "id": "3646995419", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:18:20", "license": "4", "title": "DSC_3860", "text": "", "album_id": "72157620102507052", "longitude": "-88.333311", "url_o": "https://farm4.staticflickr.com/3338/3646996723_ba7215c293_o.jpg", "secret": "65a46d22a5", "media": "photo", "latitude": "42.864682", "id": "3646996723", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:19:04", "license": "4", "title": "DSC_3861", "text": "", "album_id": "72157620102507052", "longitude": "-88.333311", "url_o": "https://farm4.staticflickr.com/3386/3646998081_698a29d6ac_o.jpg", "secret": "a2e449f6dd", "media": "photo", "latitude": "42.864682", "id": "3646998081", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:19:07", "license": "4", "title": "DSC_3862", "text": "", "album_id": "72157620102507052", "longitude": "-88.333311", "url_o": "https://farm4.staticflickr.com/3405/3647803598_03954337e8_o.jpg", "secret": "ff52381c2b", "media": "photo", "latitude": "42.864682", "id": "3647803598", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:19:17", "license": "4", "title": "DSC_3863", "text": "", "album_id": "72157620102507052", "longitude": "-88.333311", "url_o": "https://farm4.staticflickr.com/3114/3647000819_827b5e2ac0_o.jpg", "secret": "dddf89d3b9", "media": "photo", "latitude": "42.864682", "id": "3647000819", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:19:39", "license": "4", "title": "DSC_3864", "text": "", "album_id": "72157620102507052", "longitude": "-88.333311", "url_o": "https://farm4.staticflickr.com/3629/3647002031_86f6f708c2_o.jpg", "secret": "2967afd809", "media": "photo", "latitude": "42.864682", "id": "3647002031", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:19:41", "license": "4", "title": "DSC_3865", "text": "", "album_id": "72157620102507052", "longitude": "-88.333311", "url_o": "https://farm4.staticflickr.com/3645/3647807820_344670b9cd_o.jpg", "secret": "d3f0fdaf86", "media": "photo", "latitude": "42.864682", "id": "3647807820", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:19:51", "license": "4", "title": "DSC_3866", "text": "", "album_id": "72157620102507052", "longitude": "-88.333311", "url_o": "https://farm4.staticflickr.com/3314/3647809224_2557a004c4_o.jpg", "secret": "882bcb471e", "media": "photo", "latitude": "42.864682", "id": "3647809224", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:19:55", "license": "4", "title": "DSC_3867", "text": "", "album_id": "72157620102507052", "longitude": "-88.333311", "url_o": "https://farm4.staticflickr.com/3306/3647810680_8409e38b44_o.jpg", "secret": "dfe65526ca", "media": "photo", "latitude": "42.864682", "id": "3647810680", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:19:59", "license": "4", "title": "DSC_3868", "text": "", "album_id": "72157620102507052", "longitude": "-88.333311", "url_o": "https://farm3.staticflickr.com/2433/3647812016_ce19c38354_o.jpg", "secret": "590684ba7b", "media": "photo", "latitude": "42.864682", "id": "3647812016", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:20:06", "license": "4", "title": "DSC_3869", "text": "", "album_id": "72157620102507052", "longitude": "-88.333311", "url_o": "https://farm4.staticflickr.com/3584/3647009225_3bafe8929b_o.jpg", "secret": "02bb4dbd1e", "media": "photo", "latitude": "42.864682", "id": "3647009225", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:21:45", "license": "4", "title": "DSC_3871", "text": "", "album_id": "72157620102507052", "longitude": "-88.333656", "url_o": "https://farm4.staticflickr.com/3571/3647814524_c7b4571c7c_o.jpg", "secret": "64abfc4c37", "media": "photo", "latitude": "42.865384", "id": "3647814524", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:21:59", "license": "4", "title": "DSC_3872", "text": "", "album_id": "72157620102507052", "longitude": "-88.333656", "url_o": "https://farm4.staticflickr.com/3390/3647815594_771face314_o.jpg", "secret": "3deed3c88f", "media": "photo", "latitude": "42.865384", "id": "3647815594", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:22:44", "license": "4", "title": "DSC_3873", "text": "", "album_id": "72157620102507052", "longitude": "-88.333656", "url_o": "https://farm4.staticflickr.com/3365/3647012805_22d47a48e7_o.jpg", "secret": "8cd46a4b3e", "media": "photo", "latitude": "42.865384", "id": "3647012805", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:22:47", "license": "4", "title": "DSC_3874", "text": "", "album_id": "72157620102507052", "longitude": "-88.333656", "url_o": "https://farm3.staticflickr.com/2444/3647014073_a97ca3af46_o.jpg", "secret": "4aa3b17380", "media": "photo", "latitude": "42.865384", "id": "3647014073", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:22:48", "license": "4", "title": "DSC_3876", "text": "", "album_id": "72157620102507052", "longitude": "-88.333656", "url_o": "https://farm4.staticflickr.com/3644/3647820408_7d3c334199_o.jpg", "secret": "ff353c6ee6", "media": "photo", "latitude": "42.865384", "id": "3647820408", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:22:48", "license": "4", "title": "DSC_3875", "text": "", "album_id": "72157620102507052", "longitude": "-88.333656", "url_o": "https://farm4.staticflickr.com/3652/3647819264_649e814f2f_o.jpg", "secret": "c0fa752d4d", "media": "photo", "latitude": "42.865384", "id": "3647819264", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:22:49", "license": "4", "title": "DSC_3877", "text": "", "album_id": "72157620102507052", "longitude": "-88.333656", "url_o": "https://farm4.staticflickr.com/3636/3647821686_e4e8c86e00_o.jpg", "secret": "f690d1f3ea", "media": "photo", "latitude": "42.865384", "id": "3647821686", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:22:52", "license": "4", "title": "DSC_3878", "text": "", "album_id": "72157620102507052", "longitude": "-88.333656", "url_o": "https://farm4.staticflickr.com/3356/3647031479_0f5073c1e0_o.jpg", "secret": "bd0dd01d45", "media": "photo", "latitude": "42.865384", "id": "3647031479", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:22:57", "license": "4", "title": "DSC_3879", "text": "", "album_id": "72157620102507052", "longitude": "-88.333656", "url_o": "https://farm4.staticflickr.com/3361/3647836944_7695eac0b4_o.jpg", "secret": "55454edbc5", "media": "photo", "latitude": "42.865384", "id": "3647836944", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:23:01", "license": "4", "title": "DSC_3880", "text": "", "album_id": "72157620102507052", "longitude": "-88.333656", "url_o": "https://farm4.staticflickr.com/3327/3647838314_7e7e024de1_o.jpg", "secret": "4545673106", "media": "photo", "latitude": "42.865384", "id": "3647838314", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:24:34", "license": "4", "title": "DSC_3882", "text": "", "album_id": "72157620102507052", "longitude": "-88.333656", "url_o": "https://farm4.staticflickr.com/3627/3647035615_f563d4b8ec_o.jpg", "secret": "5e4eb944bd", "media": "photo", "latitude": "42.865384", "id": "3647035615", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:24:48", "license": "4", "title": "DSC_3883", "text": "", "album_id": "72157620102507052", "longitude": "-88.333656", "url_o": "https://farm4.staticflickr.com/3375/3647840902_648a46c81c_o.jpg", "secret": "943f757712", "media": "photo", "latitude": "42.865384", "id": "3647840902", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:25:09", "license": "4", "title": "DSC_3884", "text": "", "album_id": "72157620102507052", "longitude": "-88.334395", "url_o": "https://farm3.staticflickr.com/2423/3647038047_317e4832bc_o.jpg", "secret": "ee9e8ab682", "media": "photo", "latitude": "42.866892", "id": "3647038047", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:25:41", "license": "4", "title": "DSC_3885", "text": "", "album_id": "72157620102507052", "longitude": "-88.334395", "url_o": "https://farm3.staticflickr.com/2459/3647843144_598a5fd65c_o.jpg", "secret": "090de725a0", "media": "photo", "latitude": "42.866892", "id": "3647843144", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 11:26:58", "license": "4", "title": "DSC_3886", "text": "", "album_id": "72157620102507052", "longitude": "-88.334395", "url_o": "https://farm4.staticflickr.com/3306/3647844488_b54c5740ac_o.jpg", "secret": "bc55330646", "media": "photo", "latitude": "42.866892", "id": "3647844488", "tags": "parade marchingband fathersday mukwonago"}, {"datetaken": "2009-06-21 09:57:09", "license": "1", "title": "Photobomb Will", "text": "", "album_id": "72157620318549638", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3636/3652284733_39a2cb0c77_o.jpg", "secret": "3fc09f4799", "media": "photo", "latitude": "0", "id": "3652284733", "tags": "mike me june john texas amy waco will 2009 dilo dilojun09"}, {"datetaken": "2009-06-21 09:59:31", "license": "1", "title": "These go in the back", "text": "", "album_id": "72157620318549638", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3606/3653084102_31402cf93e_o.jpg", "secret": "1a53610f32", "media": "photo", "latitude": "0", "id": "3653084102", "tags": "june texas waco luggage bags 2009 dilo dilojun09"}, {"datetaken": "2009-06-21 10:18:17", "license": "1", "title": "Suburban is getting packed", "text": "", "album_id": "72157620318549638", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3541/3652289461_0a3526854f_o.jpg", "secret": "eaca300cb3", "media": "photo", "latitude": "0", "id": "3652289461", "tags": "june texas waco packing luggage bags cooler 2009 dilo playmate dilojun09"}, {"datetaken": "2009-06-21 10:57:40", "license": "1", "title": "Headed to lunch", "text": "", "album_id": "72157620318549638", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3631/3653088450_281b2f733e_o.jpg", "secret": "1ff0841d34", "media": "photo", "latitude": "0", "id": "3653088450", "tags": "mike me june john texas waco will 2009 dilo dilojun09"}, {"datetaken": "2009-06-21 12:09:38", "license": "1", "title": "John's ride", "text": "", "album_id": "72157620318549638", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3305/3652294045_974aba94bc_o.jpg", "secret": "7b5aa60a8a", "media": "photo", "latitude": "0", "id": "3652294045", "tags": "june john texas waco chevy lowrider 2009 dilo hoopty dilojun09"}, {"datetaken": "2009-06-21 12:09:53", "license": "1", "title": "The Mix for Father's Day brunch", "text": "", "album_id": "72157620318549638", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3584/3653092948_361d48703a_o.jpg", "secret": "27af072b82", "media": "photo", "latitude": "0", "id": "3653092948", "tags": "june texas waco 2009 dilo themix dilojun09"}, {"datetaken": "2009-06-21 14:44:13", "license": "1", "title": "80 MPH Amy", "text": "", "album_id": "72157620318549638", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3603/3652298561_622a1d4e2c_o.jpg", "secret": "1bf0f0ac1b", "media": "photo", "latitude": "0", "id": "3652298561", "tags": "june texas amy 2009 dilo dilojun09"}, {"datetaken": "2009-06-21 14:44:17", "license": "1", "title": "IH45", "text": "", "album_id": "72157620318549638", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3321/3652300639_bdc6b0a095_o.jpg", "secret": "d01c5ccfed", "media": "photo", "latitude": "0", "id": "3652300639", "tags": "june texas 2009 dilo ih45 dilojun09"}, {"datetaken": "2009-06-21 15:56:17", "license": "1", "title": "P1050468crop", "text": "", "album_id": "72157620318549638", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2467/3653076996_84680cdaa1_o.jpg", "secret": "ba3dc30807", "media": "photo", "latitude": "0", "id": "3653076996", "tags": "june texas 2009 dilo dilojun09"}, {"datetaken": "2009-06-21 15:56:17", "license": "1", "title": "Luggage cart + elevator", "text": "", "album_id": "72157620318549638", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3584/3653098990_5b4c0ab21d_o.jpg", "secret": "b469eb85a1", "media": "photo", "latitude": "0", "id": "3653098990", "tags": "june john texas houston will 2009 dilo luggagecart dilojun09"}, {"datetaken": "2009-06-21 16:56:41", "license": "1", "title": "Zamboni John and Will", "text": "", "album_id": "72157620318549638", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2256/3652304233_2ccebd82c3_o.jpg", "secret": "f9442d47b8", "media": "photo", "latitude": "0", "id": "3652304233", "tags": "june john texas houston will 2009 galleria dilo zamboni dilojun09"}, {"datetaken": "2009-06-21 16:56:55", "license": "1", "title": "Zamboni", "text": "", "album_id": "72157620318549638", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3627/3653102200_29751e7899_o.jpg", "secret": "c221b89945", "media": "photo", "latitude": "0", "id": "3653102200", "tags": "june texas houston 2009 galleria dilo zamboni dilojun09"}, {"datetaken": "2009-06-21 17:00:11", "license": "1", "title": "Almost time", "text": "", "album_id": "72157620318549638", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3398/3653103902_f759501878_o.jpg", "secret": "71ec96aa02", "media": "photo", "latitude": "0", "id": "3653103902", "tags": "june texas skating houston skaters 2009 galleria dilo dilojun09"}, {"datetaken": "2009-06-21 17:00:26", "license": "1", "title": "GO!", "text": "", "album_id": "72157620318549638", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3614/3653105980_40f13b0f55_o.jpg", "secret": "e92edb7682", "media": "photo", "latitude": "0", "id": "3653105980", "tags": "june texas skating houston skaters 2009 galleria dilo dilojun09"}, {"datetaken": "2009-06-21 17:02:14", "license": "1", "title": "Galleria skating", "text": "", "album_id": "72157620318549638", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2440/3653108160_42c7aa1521_o.jpg", "secret": "2443884ea0", "media": "photo", "latitude": "0", "id": "3653108160", "tags": "june john texas amy skating houston skaters will 2009 galleria dilo dilojun09"}, {"datetaken": "2009-06-21 18:08:31", "license": "1", "title": "Niko Nikos", "text": "", "album_id": "72157620318549638", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3395/3652314017_c97a5e74ba_o.jpg", "secret": "ce40ab0698", "media": "photo", "latitude": "0", "id": "3652314017", "tags": "june texas houston will 2009 dilo nikonikos dilojun09"}, {"datetaken": "2009-06-21 18:08:43", "license": "1", "title": "Niko Nikos", "text": "", "album_id": "72157620318549638", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3635/3653112060_21942798e4_o.jpg", "secret": "ee8b9efe67", "media": "photo", "latitude": "0", "id": "3653112060", "tags": "june john texas houston 2009 dilo dilojun09 nikionikos"}, {"datetaken": "2009-06-21 19:33:15", "license": "1", "title": "Business Center", "text": "", "album_id": "72157620318549638", "longitude": "-95.332413", "url_o": "https://farm3.staticflickr.com/2429/3653114316_beaa8b9010_o.jpg", "secret": "774964e2d1", "media": "photo", "latitude": "29.947367", "id": "3653114316", "tags": "june keyboard texas houston 2009 dilo passports dilojun09"}, {"datetaken": "2009-06-21 19:36:37", "license": "1", "title": "Checking in", "text": "", "album_id": "72157620318549638", "longitude": "-95.332413", "url_o": "https://farm4.staticflickr.com/3337/3653116722_0af3d64e9a_o.jpg", "secret": "c7ee21bf26", "media": "photo", "latitude": "29.947367", "id": "3653116722", "tags": "june texas houston continental 2009 dilo checkin dilojun09"}, {"datetaken": "2009-06-21 20:00:23", "license": "1", "title": "Resting", "text": "", "album_id": "72157620318549638", "longitude": "-95.332413", "url_o": "https://farm4.staticflickr.com/3298/3653118562_a539397bb7_o.jpg", "secret": "95a0d162a9", "media": "photo", "latitude": "29.947367", "id": "3653118562", "tags": "june john hotel texas amy beds houston will 2009 hamptoninn dilo dilojun09"}, {"datetaken": "2009-06-21 20:02:37", "license": "1", "title": "Tomorrow", "text": "", "album_id": "72157620318549638", "longitude": "-95.332413", "url_o": "https://farm4.staticflickr.com/3663/3652326153_6512bf2010_o.jpg", "secret": "999e9950fe", "media": "photo", "latitude": "29.947367", "id": "3652326153", "tags": "june airplane texas houston continental 2009 dilo dilojun09"}, {"datetaken": "2009-06-21 20:03:00", "license": "1", "title": "Not much of a view, but convienient to IAH", "text": "", "album_id": "72157620318549638", "longitude": "-95.332413", "url_o": "https://farm3.staticflickr.com/2107/3652328169_e187ed958a_o.jpg", "secret": "6cf35f7a3e", "media": "photo", "latitude": "29.947367", "id": "3652328169", "tags": "june airport texas houston 2009 dilo dilojun09"}, {"datetaken": "2009-06-21 21:36:46", "license": "1", "title": "Going to bed", "text": "", "album_id": "72157620318549638", "longitude": "-95.332413", "url_o": "https://farm4.staticflickr.com/3623/3653126646_22c2b2e176_o.jpg", "secret": "266073e385", "media": "photo", "latitude": "29.947367", "id": "3653126646", "tags": "june john hotel texas amy beds houston will 2009 hamptoninn dilo dilojun09"}, {"datetaken": "2011-06-18 17:31:21", "license": "2", "title": "Low Sodium Chipmunk Diet", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5262/5865029653_71443fbcd5_o.jpg", "secret": "7a360f675d", "media": "photo", "latitude": "0", "id": "5865029653", "tags": ""}, {"datetaken": "2011-06-18 18:11:15", "license": "2", "title": "Rogue River", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5062/5865045155_43ca135b5e_o.jpg", "secret": "5c352ca9c3", "media": "photo", "latitude": "0", "id": "5865045155", "tags": ""}, {"datetaken": "2011-06-18 18:12:59", "license": "2", "title": "Rogue River", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5271/5865030553_a1a6e62232_o.jpg", "secret": "cf8baa17a8", "media": "photo", "latitude": "0", "id": "5865030553", "tags": ""}, {"datetaken": "2011-06-18 18:13:38", "license": "2", "title": "Rogue River", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3255/5865040475_80a21c03a1_o.jpg", "secret": "775b00e2ae", "media": "photo", "latitude": "0", "id": "5865040475", "tags": ""}, {"datetaken": "2011-06-18 18:13:55", "license": "2", "title": "Rogue River", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5144/5865036579_8d4a8a5f2d_o.jpg", "secret": "e4ec083854", "media": "photo", "latitude": "0", "id": "5865036579", "tags": ""}, {"datetaken": "2011-06-18 18:41:45", "license": "2", "title": "Solar Toilet", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5144/5865592436_ae2577f4ce_o.jpg", "secret": "ebab637375", "media": "photo", "latitude": "0", "id": "5865592436", "tags": ""}, {"datetaken": "2011-06-18 22:18:59", "license": "2", "title": "Motel in Grants Pass", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/5865582696_e757f616d3_o.jpg", "secret": "3dbde0df4a", "media": "photo", "latitude": "0", "id": "5865582696", "tags": ""}, {"datetaken": "2011-06-19 12:15:39", "license": "2", "title": "Oregon Caves Hiking", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2747/5865058701_2c94d122f8_o.jpg", "secret": "c9b0c51504", "media": "photo", "latitude": "0", "id": "5865058701", "tags": ""}, {"datetaken": "2011-06-19 14:41:53", "license": "2", "title": "Oregon Caves", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3224/5865593834_702e9b579f_o.jpg", "secret": "cba8219aff", "media": "photo", "latitude": "0", "id": "5865593834", "tags": ""}, {"datetaken": "2011-06-19 14:43:07", "license": "2", "title": "Oregon Caves", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3121/5865583388_fa3acfacc4_o.jpg", "secret": "e13163ed3f", "media": "photo", "latitude": "0", "id": "5865583388", "tags": ""}, {"datetaken": "2011-06-19 14:44:24", "license": "2", "title": "Oregon Caves", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5271/5865044479_8cc09f2746_o.jpg", "secret": "d38ec2ffc8", "media": "photo", "latitude": "0", "id": "5865044479", "tags": ""}, {"datetaken": "2011-06-19 14:45:10", "license": "2", "title": "Oregon Caves", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5143/5865043595_f1df34cd96_o.jpg", "secret": "4abff3aa7c", "media": "photo", "latitude": "0", "id": "5865043595", "tags": ""}, {"datetaken": "2011-06-19 14:50:53", "license": "2", "title": "Oregon Caves", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3083/5865046089_622a053e35_o.jpg", "secret": "5a3242ea4f", "media": "photo", "latitude": "0", "id": "5865046089", "tags": ""}, {"datetaken": "2011-06-19 15:09:57", "license": "2", "title": "Hiking Trail at Oregon Caves", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5074/5865032823_32ccd97431_o.jpg", "secret": "76282e53ed", "media": "photo", "latitude": "0", "id": "5865032823", "tags": ""}, {"datetaken": "2011-06-19 15:11:12", "license": "2", "title": "Hiking Trail at Oregon Caves", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5039/5865589366_dbec52d827_o.jpg", "secret": "52a988cf22", "media": "photo", "latitude": "0", "id": "5865589366", "tags": ""}, {"datetaken": "2011-06-19 17:23:44", "license": "2", "title": "Welcome to California", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3114/5865033829_c19ac816a2_o.jpg", "secret": "9f4e9dd264", "media": "photo", "latitude": "0", "id": "5865033829", "tags": ""}, {"datetaken": "2011-06-19 18:36:38", "license": "2", "title": "Father's Day Phone Call", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3013/5865046933_1586ecdc49_o.jpg", "secret": "e8801511aa", "media": "photo", "latitude": "0", "id": "5865046933", "tags": ""}, {"datetaken": "2011-06-19 18:54:54", "license": "2", "title": "Overlook", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/5865039565_221467b18b_o.jpg", "secret": "47be30998c", "media": "photo", "latitude": "0", "id": "5865039565", "tags": ""}, {"datetaken": "2011-06-20 10:57:52", "license": "2", "title": "Banana Slug", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5155/5865049373_9026ec8757_o.jpg", "secret": "f405681b97", "media": "photo", "latitude": "0", "id": "5865049373", "tags": ""}, {"datetaken": "2011-06-20 11:05:25", "license": "2", "title": "Tree Tunnel", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5023/5865034839_671e002f3c_o.jpg", "secret": "6b20e43985", "media": "photo", "latitude": "0", "id": "5865034839", "tags": ""}, {"datetaken": "2011-06-20 11:14:26", "license": "2", "title": "flower", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3058/5865048571_18b53089c5_o.jpg", "secret": "76d34099b9", "media": "photo", "latitude": "0", "id": "5865048571", "tags": ""}, {"datetaken": "2011-06-20 11:34:37", "license": "2", "title": "Shallow Roots", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3118/5865599110_a1dc2d5e90_o.jpg", "secret": "d3e78dc620", "media": "photo", "latitude": "0", "id": "5865599110", "tags": ""}, {"datetaken": "2011-06-20 11:39:15", "license": "2", "title": "Young Elk Encounter", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3161/5865050577_cd09558b3a_o.jpg", "secret": "fd13953c51", "media": "photo", "latitude": "0", "id": "5865050577", "tags": ""}, {"datetaken": "2011-06-20 11:44:02", "license": "2", "title": "Dan Redwoods", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5112/5865057497_3ecb6f6d55_o.jpg", "secret": "e80064e6a7", "media": "photo", "latitude": "0", "id": "5865057497", "tags": ""}, {"datetaken": "2011-06-20 11:47:57", "license": "2", "title": "Redwoods", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5112/5865055721_53f37b2142_o.jpg", "secret": "ec7619307b", "media": "photo", "latitude": "0", "id": "5865055721", "tags": ""}, {"datetaken": "2011-06-20 11:48:37", "license": "2", "title": "Redwoods", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5191/5865054853_c8f64758a6_o.jpg", "secret": "b1beff6e7d", "media": "photo", "latitude": "0", "id": "5865054853", "tags": ""}, {"datetaken": "2011-06-20 12:07:19", "license": "2", "title": "Snail", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3084/5865054023_a9e1bf23fc_o.jpg", "secret": "732fb14150", "media": "photo", "latitude": "0", "id": "5865054023", "tags": ""}, {"datetaken": "2011-06-20 12:11:59", "license": "2", "title": "Redwoods", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3200/5865053595_b7fc1ef155_o.jpg", "secret": "b1f8a1e88a", "media": "photo", "latitude": "0", "id": "5865053595", "tags": ""}, {"datetaken": "2011-06-20 12:12:58", "license": "2", "title": "Redwoods", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6052/5865052573_2a824781a0_o.jpg", "secret": "063e9187b0", "media": "photo", "latitude": "0", "id": "5865052573", "tags": ""}, {"datetaken": "2011-06-20 12:49:50", "license": "2", "title": "Tunnel Tree", "text": "", "album_id": "72157627033774424", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3003/5865051697_57331c4b58_o.jpg", "secret": "07e9f85e9e", "media": "photo", "latitude": "0", "id": "5865051697", "tags": ""}, {"datetaken": "2012-11-10 10:31:59", "license": "4", "title": "THE RUSHING WATER OF SOURMILK GILL", "text": "", "album_id": "72157632050169766", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8065/8192468281_e7352d2005_o.jpg", "secret": "412b2dbfde", "media": "photo", "latitude": "0", "id": "8192468281", "tags": "river"}, {"datetaken": "2012-11-10 10:34:23", "license": "4", "title": "SEATHWAITE FARM", "text": "", "album_id": "72157632050169766", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8065/8192467415_01c0476044_o.jpg", "secret": "d857189bc1", "media": "photo", "latitude": "0", "id": "8192467415", "tags": "river farm"}, {"datetaken": "2012-11-10 10:35:05", "license": "4", "title": "GEORGE CRAWFORTH FROM HULL", "text": "", "album_id": "72157632050169766", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8342/8193554512_91ff3c8ff6_o.jpg", "secret": "d0ef73afa8", "media": "photo", "latitude": "0", "id": "8193554512", "tags": ""}, {"datetaken": "2012-11-10 11:01:35", "license": "4", "title": "SOURMILK GILL", "text": "", "album_id": "72157632050169766", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8063/8193553844_c2a05070f2_o.jpg", "secret": "4972f956b3", "media": "photo", "latitude": "0", "id": "8193553844", "tags": "river robertsouthey"}, {"datetaken": "2012-11-10 14:25:52", "license": "4", "title": "LAKE DISTRICT EYESORE", "text": "", "album_id": "72157632050169766", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8067/8192464577_a47f444e00_o.jpg", "secret": "5b18a16cf4", "media": "photo", "latitude": "0", "id": "8192464577", "tags": ""}, {"datetaken": "2012-11-10 14:26:36", "license": "4", "title": "AS TAWDRY AS IT GETS", "text": "", "album_id": "72157632050169766", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8482/8192463833_35e521d429_o.jpg", "secret": "487e087f69", "media": "photo", "latitude": "0", "id": "8192463833", "tags": ""}, {"datetaken": "2012-11-10 14:27:01", "license": "4", "title": "VINTAGE AT HONISTER", "text": "", "album_id": "72157632050169766", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8346/8192463129_8a403af5c0_o.jpg", "secret": "456e3d6523", "media": "photo", "latitude": "0", "id": "8192463129", "tags": ""}, {"datetaken": "2012-11-11 11:02:18", "license": "4", "title": "CLIMBING GREAT GABLE", "text": "", "album_id": "72157632050169766", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8345/8193548324_cf92c8caf4_o.jpg", "secret": "27949f9952", "media": "photo", "latitude": "0", "id": "8193548324", "tags": ""}, {"datetaken": "2012-11-11 11:53:22", "license": "4", "title": "\"THAT SILENT THRONG\"", "text": "", "album_id": "72157632050169766", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8198/8193547380_e5da4f5fa6_o.jpg", "secret": "a37a26f174", "media": "photo", "latitude": "0", "id": "8193547380", "tags": "rem bpc greatgable"}, {"datetaken": "2012-11-11 13:32:02", "license": "4", "title": "UPPER GRIANS GILL", "text": "", "album_id": "72157632050169766", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8340/8192458739_58c089b22b_o.jpg", "secret": "ba7016a0ea", "media": "photo", "latitude": "0", "id": "8192458739", "tags": ""}, {"datetaken": "2012-11-11 13:33:10", "license": "4", "title": "GEORGE AND GREAT END", "text": "", "album_id": "72157632050169766", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8340/8192458069_a4017afd07_o.jpg", "secret": "07bbcb2312", "media": "photo", "latitude": "0", "id": "8192458069", "tags": ""}, {"datetaken": "2012-11-11 14:09:27", "license": "4", "title": "DESCENDING GRAINS GILL", "text": "", "album_id": "72157632050169766", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8204/8192457121_2425ffd0a0_o.jpg", "secret": "a14211fe89", "media": "photo", "latitude": "0", "id": "8192457121", "tags": ""}, {"datetaken": "2012-11-11 16:13:45", "license": "4", "title": "ONE LIFE FOR THE LIVING", "text": "", "album_id": "72157632050169766", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8068/8193544482_b6f3966ff4_o.jpg", "secret": "1205e0b348", "media": "photo", "latitude": "0", "id": "8193544482", "tags": ""}, {"datetaken": "2013-05-23 14:02:54", "license": "3", "title": "Free Pint of San Miguel", "text": "", "album_id": "72157634119717615", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5342/9042865770_086de438b2_o.jpg", "secret": "df549b0de2", "media": "photo", "latitude": "0", "id": "9042865770", "tags": "happy restaurant book day father sanmiguel fathersday pint lavina lavi\u00f1a"}, {"datetaken": "2013-05-23 14:03:36", "license": "3", "title": "Free Pint of San Miguel", "text": "", "album_id": "72157634119717615", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2833/9042864672_3dc45e09f4_o.jpg", "secret": "e284feb705", "media": "photo", "latitude": "0", "id": "9042864672", "tags": "happy restaurant book day father sanmiguel fathersday pint lavina lavi\u00f1a"}, {"datetaken": "2013-05-23 14:04:00", "license": "3", "title": "Father's Day", "text": "", "album_id": "72157634119717615", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2840/9042867800_91b59ff88c_o.jpg", "secret": "2b04d52295", "media": "photo", "latitude": "0", "id": "9042867800", "tags": "happy restaurant book day father sanmiguel fathersday pint lavina lavi\u00f1a"}, {"datetaken": "2013-05-23 14:04:52", "license": "3", "title": "Happy Father's Day", "text": "", "album_id": "72157634119717615", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5343/9042863518_d61d74c583_o.jpg", "secret": "f275ab440e", "media": "photo", "latitude": "0", "id": "9042863518", "tags": "happy restaurant book day father sanmiguel fathersday pint lavina lavi\u00f1a"}, {"datetaken": "2013-05-23 14:07:17", "license": "3", "title": "Happy Father's Day", "text": "", "album_id": "72157634119717615", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7367/9042862628_e7514af873_o.jpg", "secret": "2eafc0ec4b", "media": "photo", "latitude": "0", "id": "9042862628", "tags": "happy restaurant book day father sanmiguel fathersday pint lavina lavi\u00f1a"}, {"datetaken": "2013-05-23 14:07:28", "license": "3", "title": "Happy Father's Day", "text": "", "album_id": "72157634119717615", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7457/9042862080_db9548d519_o.jpg", "secret": "fd0a2ee836", "media": "photo", "latitude": "0", "id": "9042862080", "tags": "happy restaurant book day father sanmiguel fathersday pint lavina lavi\u00f1a"}, {"datetaken": "2013-05-23 14:07:41", "license": "3", "title": "Happy Father's Day", "text": "", "album_id": "72157634119717615", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5350/9040638855_9f9d6745b4_o.jpg", "secret": "c7a99ae1b0", "media": "photo", "latitude": "0", "id": "9040638855", "tags": "happy restaurant book day father sanmiguel fathersday pint lavina lavi\u00f1a"}, {"datetaken": "2013-05-23 14:08:26", "license": "3", "title": "Free Pint for Dad", "text": "", "album_id": "72157634119717615", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7391/9042859820_e4bf83594c_o.jpg", "secret": "2351255cd3", "media": "photo", "latitude": "0", "id": "9042859820", "tags": "happy restaurant book day father sanmiguel fathersday pint lavina lavi\u00f1a"}, {"datetaken": "2013-05-23 14:08:39", "license": "3", "title": "Happy Father's Day", "text": "", "album_id": "72157634119717615", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2877/9040637067_cd07dfe0bc_o.jpg", "secret": "8815149d35", "media": "photo", "latitude": "0", "id": "9040637067", "tags": "happy restaurant book day father sanmiguel fathersday pint lavina lavi\u00f1a"}, {"datetaken": "2013-05-23 14:08:44", "license": "3", "title": "Happy Father's Day", "text": "", "album_id": "72157634119717615", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7378/9040636251_768b537e40_o.jpg", "secret": "15f4d59e95", "media": "photo", "latitude": "0", "id": "9040636251", "tags": "happy restaurant book day father sanmiguel fathersday pint lavina lavi\u00f1a"}, {"datetaken": "2013-05-23 14:10:05", "license": "3", "title": "Happy Father's Day", "text": "", "album_id": "72157634119717615", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7284/9040644341_0f4eb90aa7_o.jpg", "secret": "4a13c1cd2a", "media": "photo", "latitude": "0", "id": "9040644341", "tags": "happy restaurant book day father sanmiguel fathersday pint lavina lavi\u00f1a"}, {"datetaken": "2013-06-16 14:58:24", "license": "4", "title": "DSCN1018", "text": "", "album_id": "72157634173512359", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2881/9066138117_f34c6d8983_o.jpg", "secret": "90230c7954", "media": "photo", "latitude": "0", "id": "9066138117", "tags": "arizona az boating fathersday tubing desertlake canyonlake 2013"}, {"datetaken": "2013-06-16 14:58:50", "license": "4", "title": "DSCN1021", "text": "", "album_id": "72157634173512359", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5449/9068360190_70a5e82911_o.jpg", "secret": "b09d1a0098", "media": "photo", "latitude": "0", "id": "9068360190", "tags": "arizona az boating fathersday tubing desertlake canyonlake 2013"}, {"datetaken": "2013-06-16 15:00:07", "license": "4", "title": "DSCN1022", "text": "", "album_id": "72157634173512359", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3826/9066135115_f8b7e32f73_o.jpg", "secret": "278d4e0de8", "media": "photo", "latitude": "0", "id": "9066135115", "tags": "arizona az boating fathersday tubing desertlake canyonlake 2013"}, {"datetaken": "2013-06-16 15:00:31", "license": "4", "title": "DSCN1023", "text": "", "album_id": "72157634173512359", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2888/9068357304_a908db9377_o.jpg", "secret": "4aba0354ed", "media": "photo", "latitude": "0", "id": "9068357304", "tags": "arizona az boating fathersday tubing desertlake canyonlake 2013"}, {"datetaken": "2013-06-16 15:02:01", "license": "4", "title": "DSCN1027", "text": "", "album_id": "72157634173512359", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5495/9068354660_7555f3675b_o.jpg", "secret": "ca92900ee4", "media": "photo", "latitude": "0", "id": "9068354660", "tags": "arizona az boating fathersday tubing desertlake canyonlake 2013"}, {"datetaken": "2013-06-16 15:05:23", "license": "4", "title": "DSCN1030", "text": "", "album_id": "72157634173512359", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3759/9066129753_0a1610f572_o.jpg", "secret": "6934ef8b1a", "media": "photo", "latitude": "0", "id": "9066129753", "tags": "arizona az boating fathersday tubing desertlake canyonlake 2013"}, {"datetaken": "2013-06-16 15:06:12", "license": "4", "title": "DSCN1031", "text": "", "album_id": "72157634173512359", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7416/9068352132_04a036c2ee_o.jpg", "secret": "65b7ba3dc5", "media": "photo", "latitude": "0", "id": "9068352132", "tags": "arizona az boating fathersday tubing desertlake canyonlake 2013"}, {"datetaken": "2013-06-16 15:34:24", "license": "4", "title": "DSCN1032", "text": "", "album_id": "72157634173512359", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3665/9066128255_51b2448ffb_o.jpg", "secret": "224b1f927e", "media": "photo", "latitude": "0", "id": "9066128255", "tags": "arizona az boating fathersday tubing desertlake canyonlake 2013"}, {"datetaken": "2013-06-16 15:36:56", "license": "4", "title": "DSCN1033", "text": "", "album_id": "72157634173512359", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3749/9068350608_acb21c82f5_o.jpg", "secret": "987db92efb", "media": "photo", "latitude": "0", "id": "9068350608", "tags": "arizona az boating fathersday tubing desertlake canyonlake 2013"}, {"datetaken": "2013-06-16 15:37:00", "license": "4", "title": "DSCN1034", "text": "", "album_id": "72157634173512359", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5324/9068345788_2c82fec467_o.jpg", "secret": "581330b600", "media": "photo", "latitude": "0", "id": "9068345788", "tags": "arizona az boating fathersday tubing desertlake canyonlake 2013"}, {"datetaken": "2013-06-16 15:49:42", "license": "4", "title": "DSCN1035", "text": "", "album_id": "72157634173512359", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5483/9068349394_a37944db0a_o.jpg", "secret": "4c9118b6c3", "media": "photo", "latitude": "0", "id": "9068349394", "tags": "arizona az boating fathersday tubing desertlake canyonlake 2013"}, {"datetaken": "2013-06-16 16:15:52", "license": "4", "title": "DSCN1043", "text": "", "album_id": "72157634173512359", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5548/9066124221_af6c623c8a_o.jpg", "secret": "18cddc84e0", "media": "photo", "latitude": "0", "id": "9066124221", "tags": "arizona az boating fathersday tubing desertlake canyonlake 2013"}, {"datetaken": "2014-03-19 18:38:58", "license": "5", "title": "Father's Day Bowling-13bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3740/13277108033_170f38f2f2_o.jpg", "secret": "bc802b98d4", "media": "photo", "latitude": "0", "id": "13277108033", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:39:23", "license": "5", "title": "Father's Day Bowling-1bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7097/13276976495_53d43b260e_o.jpg", "secret": "b7dda28eb6", "media": "photo", "latitude": "0", "id": "13276976495", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:39:48", "license": "5", "title": "Father's Day Bowling-2bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3832/13277313164_818d7bc4bc_o.jpg", "secret": "a0c00d1a8a", "media": "photo", "latitude": "0", "id": "13277313164", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:40:09", "license": "5", "title": "Father's Day Bowling-3bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7344/13277321174_0cc7d326ea_o.jpg", "secret": "d8c70db13e", "media": "photo", "latitude": "0", "id": "13277321174", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:40:29", "license": "5", "title": "Father's Day Bowling-4bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3681/13277137673_c3139d3c96_o.jpg", "secret": "cedba4d9a2", "media": "photo", "latitude": "0", "id": "13277137673", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:40:51", "license": "5", "title": "Father's Day Bowling-5bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3704/13277145213_a7b1cfb386_o.jpg", "secret": "bd69a14cd4", "media": "photo", "latitude": "0", "id": "13277145213", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:41:13", "license": "5", "title": "Father's Day Bowling-6bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7014/13277342954_7a8a2d41d0_o.jpg", "secret": "8d5e986b98", "media": "photo", "latitude": "0", "id": "13277342954", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:41:32", "license": "5", "title": "Father's Day Bowling-7bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7273/13277022115_381b4ab37c_o.jpg", "secret": "7c9aa2ee7b", "media": "photo", "latitude": "0", "id": "13277022115", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:41:55", "license": "5", "title": "Father's Day Bowling-9bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3728/13277368614_878c0fed46_o.jpg", "secret": "9bfb2a178c", "media": "photo", "latitude": "0", "id": "13277368614", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:42:18", "license": "5", "title": "Father's Day Bowling-8bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2853/13277170403_91508e6e73_o.jpg", "secret": "e60704d1f1", "media": "photo", "latitude": "0", "id": "13277170403", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:42:41", "license": "5", "title": "Father's Day Bowling-10bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7264/13277187493_2f122960bf_o.jpg", "secret": "583bce01c1", "media": "photo", "latitude": "0", "id": "13277187493", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:43:04", "license": "5", "title": "Father's Day Bowling-11bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2838/13277055725_caf4e44f54_o.jpg", "secret": "4b3ef0edb2", "media": "photo", "latitude": "0", "id": "13277055725", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:43:24", "license": "5", "title": "Father's Day Bowling-12bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7184/13277393574_78509c2b20_o.jpg", "secret": "24c200e1b4", "media": "photo", "latitude": "0", "id": "13277393574", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:44:27", "license": "5", "title": "Father's Day Bowling-27bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3738/13277172785_a97fcf5378_o.jpg", "secret": "08d2844625", "media": "photo", "latitude": "0", "id": "13277172785", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:44:48", "license": "5", "title": "Father's Day Bowling-14bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3740/13277213863_5631bdabbd_o.jpg", "secret": "292c2b2d03", "media": "photo", "latitude": "0", "id": "13277213863", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:45:07", "license": "5", "title": "Father's Day Bowling-15bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7305/13277080105_1874168dc7_o.jpg", "secret": "1ed56547d2", "media": "photo", "latitude": "0", "id": "13277080105", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:45:27", "license": "5", "title": "Father's Day Bowling-16bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2871/13277415964_e5b54c53a4_o.jpg", "secret": "2037e96a43", "media": "photo", "latitude": "0", "id": "13277415964", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:45:49", "license": "5", "title": "Father's Day Bowling-17bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7117/13277424584_3bc6a17e5d_o.jpg", "secret": "a7919c68b7", "media": "photo", "latitude": "0", "id": "13277424584", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:46:08", "license": "5", "title": "Father's Day Bowling-18bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3738/13277242663_b95d658d5e_o.jpg", "secret": "beddea7729", "media": "photo", "latitude": "0", "id": "13277242663", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:46:27", "license": "5", "title": "Father's Day Bowling-19bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3673/13277108405_f3ff6759d9_o.jpg", "secret": "74fc9ce2b6", "media": "photo", "latitude": "0", "id": "13277108405", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:46:55", "license": "5", "title": "Father's Day Bowling-20bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3686/13277444674_faf9f38f83_o.jpg", "secret": "3fe06e763b", "media": "photo", "latitude": "0", "id": "13277444674", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:47:15", "license": "5", "title": "Father's Day Bowling-21bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3809/13277454294_79ca8a3be7_o.jpg", "secret": "0f4cd5d48f", "media": "photo", "latitude": "0", "id": "13277454294", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:47:34", "license": "5", "title": "Father's Day Bowling-22bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3745/13277274413_652ef2a08e_o.jpg", "secret": "1e23bd3dcf", "media": "photo", "latitude": "0", "id": "13277274413", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:47:55", "license": "5", "title": "Father's Day Bowling-23bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7419/13277281773_c39015d197_o.jpg", "secret": "81cc497ece", "media": "photo", "latitude": "0", "id": "13277281773", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:48:16", "license": "5", "title": "Father's Day Bowling-24bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2814/13277290583_cdf8b97763_o.jpg", "secret": "1c29271f67", "media": "photo", "latitude": "0", "id": "13277290583", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:48:34", "license": "5", "title": "Father's Day Bowling-25bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3702/13277485574_07b2bdb5f5_o.jpg", "secret": "70a0e24fac", "media": "photo", "latitude": "0", "id": "13277485574", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2014-03-19 18:48:53", "license": "5", "title": "Father's Day Bowling-26bd", "text": "", "album_id": "72157642613907305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3787/13277163625_e5c2448f05_o.jpg", "secret": "c82e46b5f4", "media": "photo", "latitude": "0", "id": "13277163625", "tags": "bowling spotmatic fathersday"}, {"datetaken": "2015-06-12 10:34:33", "license": "3", "title": "Waiting To Take Buffalo Trace", "text": "", "album_id": "72157652488541824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/471/18364210964_3c43cfd3a0_o.jpg", "secret": "4b9b639961", "media": "photo", "latitude": "0", "id": "18364210964", "tags": "building brick sign docks tour kentucky ky banner whiskey liquor alcohol trucks bourbon distillery frankfort buffalotrace"}, {"datetaken": "2015-06-12 10:40:04", "license": "3", "title": "Brand", "text": "", "album_id": "72157652488541824", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3760/18366117233_ed9b4d1ab8_o.jpg", "secret": "b6b7a8143e", "media": "photo", "latitude": "0", "id": "18366117233", "tags": "tour kentucky ky whiskey liquor alcohol bourbon distillery frankfort buffalotrace"}, {"datetaken": "2015-06-12 10:40:53", "license": "3", "title": "Statue Outside Gift Shop", "text": "", "album_id": "72157652488541824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/484/18799098210_70a3a5a092_o.jpg", "secret": "27b906704f", "media": "photo", "latitude": "0", "id": "18799098210", "tags": "tour kentucky ky whiskey liquor alcohol bourbon distillery frankfort buffalotrace"}, {"datetaken": "2015-06-12 10:45:27", "license": "3", "title": "Final Product", "text": "", "album_id": "72157652488541824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/315/18989788991_5b8445681a_o.jpg", "secret": "67d4161f71", "media": "photo", "latitude": "0", "id": "18989788991", "tags": "tour bottles kentucky ky whiskey liquor alcohol bourbon distillery frankfort buffalotrace"}, {"datetaken": "2015-06-12 11:07:23", "license": "3", "title": "Put One of These In It", "text": "", "album_id": "72157652488541824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/443/18960532676_b544e83f73_o.jpg", "secret": "37352c5594", "media": "photo", "latitude": "0", "id": "18960532676", "tags": "tour kentucky ky whiskey liquor alcohol process bourbon distillery corks frankfort bottling buffalotrace"}, {"datetaken": "2015-06-12 11:07:27", "license": "3", "title": "Filling Station", "text": "", "album_id": "72157652488541824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/320/18799127408_db7d88ba76_o.jpg", "secret": "c2fe497a05", "media": "photo", "latitude": "0", "id": "18799127408", "tags": "tour kentucky ky machine whiskey liquor alcohol process bourbon distillery filling frankfort bottling buffalotrace"}, {"datetaken": "2015-06-12 11:09:18", "license": "3", "title": "Capping", "text": "", "album_id": "72157652488541824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/535/18364211804_e46d6b4cdd_o.jpg", "secret": "74900fd9d0", "media": "photo", "latitude": "0", "id": "18364211804", "tags": "tour kentucky ky whiskey liquor alcohol process bourbon distillery frankfort capping bottling buffalotrace"}, {"datetaken": "2015-06-12 11:12:25", "license": "3", "title": "Experimental", "text": "", "album_id": "72157652488541824", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3732/18800582919_dcbf1aee12_o.jpg", "secret": "ef2e844a18", "media": "photo", "latitude": "0", "id": "18800582919", "tags": "sticker experimental tour kentucky ky whiskey liquor alcohol bourbon distillery hold frankfort buffalotrace"}, {"datetaken": "2015-06-12 11:43:40", "license": "3", "title": "Patiently Waiting", "text": "", "album_id": "72157652488541824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/292/18981365272_15a04886ce_o.jpg", "secret": "c4faf9c48a", "media": "photo", "latitude": "0", "id": "18981365272", "tags": "tour barrels kentucky ky whiskey warehouse liquor alcohol bourbon distillery frankfort buffalotrace"}, {"datetaken": "2015-06-12 11:44:19", "license": "3", "title": "Sniff the Angel's Share", "text": "", "album_id": "72157652488541824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/488/18986779895_13c85a957d_o.jpg", "secret": "0473a829bf", "media": "photo", "latitude": "0", "id": "18986779895", "tags": "tour barrels kentucky ky whiskey warehouse liquor alcohol bourbon distillery frankfort buffalotrace"}, {"datetaken": "2015-06-12 11:44:36", "license": "3", "title": "Born On", "text": "", "album_id": "72157652488541824", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3784/18800583779_a5beb6d9f1_o.jpg", "secret": "c10121bcc2", "media": "photo", "latitude": "0", "id": "18800583779", "tags": "tour kentucky ky whiskey warehouse liquor alcohol bourbon distillery frankfort buffalotrace"}, {"datetaken": "2014-04-18 11:11:03", "license": "4", "title": "_ND49709", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7744/18061162508_80decf1e0b_o.jpg", "secret": "6a531acf0f", "media": "photo", "latitude": "0", "id": "18061162508", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 11:15:43", "license": "4", "title": "_ND49735", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7780/18248992085_eae4f62a16_o.jpg", "secret": "25f9d7dd64", "media": "photo", "latitude": "0", "id": "18248992085", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 11:20:57", "license": "4", "title": "_ND49746", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8826/17628382803_f75e1d895f_o.jpg", "secret": "4bccb24839", "media": "photo", "latitude": "0", "id": "17628382803", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 11:25:34", "license": "4", "title": "_ND49754", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8863/18061249230_456cc57c41_o.jpg", "secret": "1b8b277ce6", "media": "photo", "latitude": "0", "id": "18061249230", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 11:26:15", "license": "4", "title": "_ND49757", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7743/18245234462_04e366bbe1_o.jpg", "secret": "997d1d7bf2", "media": "photo", "latitude": "0", "id": "18245234462", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 11:34:20", "license": "4", "title": "_ND49774", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7747/18222531466_5d6e169889_o.jpg", "secret": "c41ac44486", "media": "photo", "latitude": "0", "id": "18222531466", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 11:43:26", "license": "4", "title": "_ND49782", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8866/18061165118_471d0dc8aa_o.jpg", "secret": "a0b3d549ae", "media": "photo", "latitude": "0", "id": "18061165118", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 11:43:43", "license": "4", "title": "_ND49784", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7770/18250297291_e0ffe19dd9_o.jpg", "secret": "d98a21d49c", "media": "photo", "latitude": "0", "id": "18250297291", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 11:45:54", "license": "4", "title": "_ND49793", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8838/18222532986_3de3da70a9_o.jpg", "secret": "1a59d383e1", "media": "photo", "latitude": "0", "id": "18222532986", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 11:45:56", "license": "4", "title": "_ND49794", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8865/18248995315_9b5d1a44e1_o.jpg", "secret": "30daea054b", "media": "photo", "latitude": "0", "id": "18248995315", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 11:46:22", "license": "4", "title": "_ND49796", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8898/18245237082_a1b9519d17_o.jpg", "secret": "8ee0c0f79c", "media": "photo", "latitude": "0", "id": "18245237082", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 11:52:48", "license": "4", "title": "_ND49813", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7750/17628386653_61f8ae7636_o.jpg", "secret": "69a1fe3a15", "media": "photo", "latitude": "0", "id": "17628386653", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 11:57:39", "license": "4", "title": "_ND49824", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8888/18222534566_06c06f0310_o.jpg", "secret": "c85f87d48b", "media": "photo", "latitude": "0", "id": "18222534566", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 11:59:41", "license": "4", "title": "_ND49828", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7742/18062779599_824576493f_o.jpg", "secret": "565099890a", "media": "photo", "latitude": "0", "id": "18062779599", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 12:03:18", "license": "4", "title": "_ND49852", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7767/18245239012_398341e422_o.jpg", "secret": "46632f14b3", "media": "photo", "latitude": "0", "id": "18245239012", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 12:06:32", "license": "4", "title": "_ND49858", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8777/18250300431_15cfc91b48_o.jpg", "secret": "38c422e518", "media": "photo", "latitude": "0", "id": "18250300431", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 12:09:24", "license": "4", "title": "_ND49868", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7773/18245239532_6d3159499c_o.jpg", "secret": "bd014b3636", "media": "photo", "latitude": "0", "id": "18245239532", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 12:10:53", "license": "4", "title": "_ND49876", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7783/18222536516_831935101d_o.jpg", "secret": "ebae92fe7c", "media": "photo", "latitude": "0", "id": "18222536516", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 12:15:54", "license": "4", "title": "_ND49884", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7772/18061247460_130d39438b_o.jpg", "secret": "437f6a76fc", "media": "photo", "latitude": "0", "id": "18061247460", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 12:17:50", "license": "4", "title": "_ND49893", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8782/18062772999_669a97b20b_o.jpg", "secret": "c1dfda9bbc", "media": "photo", "latitude": "0", "id": "18062772999", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 12:19:11", "license": "4", "title": "_ND49895", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8762/18245231652_99ec0ec064_o.jpg", "secret": "7e605c1691", "media": "photo", "latitude": "0", "id": "18245231652", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 12:19:41", "license": "4", "title": "_ND49899", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7763/18222527796_371d6cccef_o.jpg", "secret": "af3a9564ec", "media": "photo", "latitude": "0", "id": "18222527796", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 12:20:00", "license": "4", "title": "_ND49903", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7789/18250292321_aa21a5c2b6_o.jpg", "secret": "3c3cc334e7", "media": "photo", "latitude": "0", "id": "18250292321", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2014-04-18 12:20:11", "license": "4", "title": "_ND49906", "text": "", "album_id": "72157653264010600", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7738/18248989055_ab3f6e9f44_o.jpg", "secret": "372b9fc6b9", "media": "photo", "latitude": "0", "id": "18248989055", "tags": "ca us losangeles theater fathersday stellaadler playproduction"}, {"datetaken": "2015-06-21 12:54:14", "license": "4", "title": "2010 Chevrolet Impala LT & 2014 Chevrolet Impala LT Limited", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/317/19040336671_c0ee8553c8_o.jpg", "secret": "1372e98fdd", "media": "photo", "latitude": "0", "id": "19040336671", "tags": "chevrolet gm 10 14 chevy impala limited lt 2010 generalmotors 2014"}, {"datetaken": "2015-06-21 12:54:46", "license": "4", "title": "2010 Chevrolet Impala LT & 2014 Chevrolet Impala LT Limited", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3844/18414657834_034950c859_o.jpg", "secret": "fe1b62455e", "media": "photo", "latitude": "0", "id": "18414657834", "tags": "chevrolet gm 10 14 chevy impala limited lt 2010 generalmotors 2014"}, {"datetaken": "2015-06-21 12:55:06", "license": "4", "title": "2010 Chevrolet Impala LT & 2014 Chevrolet Impala LT Limited", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3881/19040324451_66666f8ea6_o.jpg", "secret": "c921946016", "media": "photo", "latitude": "0", "id": "19040324451", "tags": "chevrolet gm 10 14 chevy impala limited lt 2010 generalmotors 2014"}, {"datetaken": "2015-06-21 14:29:47", "license": "4", "title": "Sweet Pea", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/416/18416522123_7f6af78c58_o.jpg", "secret": "78be6274e3", "media": "photo", "latitude": "0", "id": "18416522123", "tags": ""}, {"datetaken": "2015-06-21 14:29:54", "license": "4", "title": "Sweet Pea", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/562/18416518023_5eddb40601_o.jpg", "secret": "ced08f6ea7", "media": "photo", "latitude": "0", "id": "18416518023", "tags": ""}, {"datetaken": "2015-06-21 14:29:55", "license": "4", "title": "Sweet Pea", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3914/19010952606_fed48da0e9_o.jpg", "secret": "70156f733b", "media": "photo", "latitude": "0", "id": "19010952606", "tags": ""}, {"datetaken": "2015-06-21 14:29:57", "license": "4", "title": "Sweet Pea", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/259/18849445590_fe6cbefb9a_o.jpg", "secret": "dcecf3e2fc", "media": "photo", "latitude": "0", "id": "18849445590", "tags": ""}, {"datetaken": "2015-06-21 14:30:02", "license": "4", "title": "Sweet Pea", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3766/18850989419_5af38cc9ce_o.jpg", "secret": "7299df09c4", "media": "photo", "latitude": "0", "id": "18850989419", "tags": ""}, {"datetaken": "2015-06-21 14:30:28", "license": "4", "title": "Father's Day 2015", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3788/19040301201_3cd193725f_o.jpg", "secret": "7e64299b11", "media": "photo", "latitude": "0", "id": "19040301201", "tags": ""}, {"datetaken": "2015-06-21 14:30:28", "license": "4", "title": "Father's Day 2015", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/271/18850981539_2d93c2c3fe_o.jpg", "secret": "0f915d403c", "media": "photo", "latitude": "0", "id": "18850981539", "tags": ""}, {"datetaken": "2015-06-21 14:30:43", "license": "4", "title": "Father's Day 2015", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3749/18416495323_b2e8977d56_o.jpg", "secret": "7ec1c9f770", "media": "photo", "latitude": "0", "id": "18416495323", "tags": ""}, {"datetaken": "2015-06-21 14:30:57", "license": "4", "title": "Father's Day 2015", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3944/18849489488_408727d8bf_o.jpg", "secret": "ef73609ec7", "media": "photo", "latitude": "0", "id": "18849489488", "tags": ""}, {"datetaken": "2015-06-21 14:30:59", "license": "4", "title": "Father's Day 2015", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/551/19037150435_bf19318057_o.jpg", "secret": "4e6eae8943", "media": "photo", "latitude": "0", "id": "19037150435", "tags": ""}, {"datetaken": "2015-06-21 14:31:09", "license": "4", "title": "Father's Day 2015", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/501/18414600374_7c737e8a83_o.jpg", "secret": "56bc441c80", "media": "photo", "latitude": "0", "id": "18414600374", "tags": ""}, {"datetaken": "2015-06-21 14:31:24", "license": "4", "title": "Father's Day 2015", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3836/18416467413_b6cebf9669_o.jpg", "secret": "29d48c9d41", "media": "photo", "latitude": "0", "id": "18416467413", "tags": ""}, {"datetaken": "2015-06-21 14:31:42", "license": "4", "title": "Father's Day 2015", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3923/19010898006_4ed910087c_o.jpg", "secret": "9f5eb79dfd", "media": "photo", "latitude": "0", "id": "19010898006", "tags": ""}, {"datetaken": "2015-06-21 14:31:45", "license": "4", "title": "Father's Day 2015", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3912/19040251071_73e3c67817_o.jpg", "secret": "07b9b2b5ab", "media": "photo", "latitude": "0", "id": "19040251071", "tags": ""}, {"datetaken": "2015-06-21 14:31:46", "license": "4", "title": "Father's Day 2015", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/502/19010884706_8e7470d93b_o.jpg", "secret": "9f6009bebb", "media": "photo", "latitude": "0", "id": "19010884706", "tags": ""}, {"datetaken": "2015-06-21 14:31:50", "license": "4", "title": "Father's Day 2015", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3689/18850923299_867fb5cf6f_o.jpg", "secret": "708be0a6c7", "media": "photo", "latitude": "0", "id": "18850923299", "tags": ""}, {"datetaken": "2015-06-21 14:32:05", "license": "4", "title": "Father's Day 2015", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/529/18414559374_273442ba5c_o.jpg", "secret": "b99987ea34", "media": "photo", "latitude": "0", "id": "18414559374", "tags": ""}, {"datetaken": "2015-06-21 14:35:35", "license": "4", "title": "Father's Day 2015", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/525/18414552114_bc36268909_o.jpg", "secret": "a871dba313", "media": "photo", "latitude": "0", "id": "18414552114", "tags": ""}, {"datetaken": "2015-06-21 14:37:09", "license": "4", "title": "Sweet Pea", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/554/19040221021_c3bf214568_o.jpg", "secret": "e7c5f57b05", "media": "photo", "latitude": "0", "id": "19040221021", "tags": ""}, {"datetaken": "2015-06-21 14:37:13", "license": "4", "title": "Sweet Pea", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/269/18849418808_f0110c8008_o.jpg", "secret": "4bcabb224f", "media": "photo", "latitude": "0", "id": "18849418808", "tags": ""}, {"datetaken": "2015-06-21 14:37:47", "license": "4", "title": "2010 Chevrolet Impala LT & 2014 Chevrolet Impala LT Limited", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/477/19031534362_bfc0b7cb73_o.jpg", "secret": "a6b1671a7c", "media": "photo", "latitude": "0", "id": "19031534362", "tags": "chevrolet 10 14 chevy impala limited lt 2010 2014"}, {"datetaken": "2015-06-21 14:38:11", "license": "4", "title": "Father's Day 2015", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/308/18849341080_206b07b9d6_o.jpg", "secret": "4e34e17ea9", "media": "photo", "latitude": "0", "id": "18849341080", "tags": ""}, {"datetaken": "2015-06-21 14:42:47", "license": "4", "title": "Father's Day 2015", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/405/18849336630_996701c945_o.jpg", "secret": "55f67f81ab", "media": "photo", "latitude": "0", "id": "18849336630", "tags": ""}, {"datetaken": "2015-06-21 14:43:00", "license": "4", "title": "Father's Day 2015", "text": "", "album_id": "72157654848618716", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3920/18414370044_3f01aa35dc_o.jpg", "secret": "2902b274b4", "media": "photo", "latitude": "0", "id": "18414370044", "tags": ""}, {"datetaken": "2015-06-20 19:15:13", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/318/18438601733_5f0793f410_o.jpg", "secret": "b0d67af344", "media": "photo", "latitude": "0", "id": "18438601733", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 19:15:29", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/368/18873113619_ba68439fa4_o.jpg", "secret": "d9246e8900", "media": "photo", "latitude": "0", "id": "18873113619", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 19:18:30", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/534/18438603203_38b06ea659_o.jpg", "secret": "c3962457e1", "media": "photo", "latitude": "0", "id": "18438603203", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 19:27:19", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/473/18871606298_a535896627_o.jpg", "secret": "3897719d43", "media": "photo", "latitude": "0", "id": "18871606298", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 19:29:44", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/261/18438604473_2183c141a3_o.jpg", "secret": "c58c968d1d", "media": "photo", "latitude": "0", "id": "18438604473", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 19:30:33", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/404/19059291085_256a158fa0_o.jpg", "secret": "63198628b5", "media": "photo", "latitude": "0", "id": "19059291085", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 19:30:38", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/259/19062489111_14bf270933_o.jpg", "secret": "ff08e56310", "media": "photo", "latitude": "0", "id": "19062489111", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 19:30:43", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/282/18436770104_6f5a806a18_o.jpg", "secret": "dffa7bb5d7", "media": "photo", "latitude": "0", "id": "18436770104", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 19:31:31", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/342/18871609038_a0b71c243f_o.jpg", "secret": "2d9d8818b7", "media": "photo", "latitude": "0", "id": "18871609038", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 19:32:29", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/557/18871609848_d860826071_o.jpg", "secret": "de052dac52", "media": "photo", "latitude": "0", "id": "18871609848", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 19:34:08", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/485/18436772394_565f285665_o.jpg", "secret": "9437129083", "media": "photo", "latitude": "0", "id": "18436772394", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 19:46:53", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/480/18871582520_08e8347d6e_o.jpg", "secret": "796853b190", "media": "photo", "latitude": "0", "id": "18871582520", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 19:49:06", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/480/18436774034_79b5ff4e72_o.jpg", "secret": "cf3cff75d4", "media": "photo", "latitude": "0", "id": "18436774034", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 19:51:06", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/387/18436774474_b448760b87_o.jpg", "secret": "9801c0eb3f", "media": "photo", "latitude": "0", "id": "18436774474", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 19:55:41", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/451/18871585020_8f958bc06e_o.jpg", "secret": "3d6896fb25", "media": "photo", "latitude": "0", "id": "18871585020", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 19:58:13", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/316/18871585700_01d3419061_o.jpg", "secret": "fb013887f2", "media": "photo", "latitude": "0", "id": "18871585700", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 20:14:40", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/256/19059298805_11a33cfe4b_o.jpg", "secret": "1ded70eb23", "media": "photo", "latitude": "0", "id": "19059298805", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 20:28:18", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/345/18871615758_e0446a2018_o.jpg", "secret": "95f952b0c2", "media": "photo", "latitude": "0", "id": "18871615758", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 20:33:34", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/482/18873125569_b63dcc4fee_o.jpg", "secret": "3986441a9c", "media": "photo", "latitude": "0", "id": "18873125569", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 20:34:18", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/350/18436778974_5229d83484_o.jpg", "secret": "5d00cf29bf", "media": "photo", "latitude": "0", "id": "18436778974", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 20:35:14", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/460/19059302135_e0fc4c9df6_o.jpg", "secret": "af8dacbacb", "media": "photo", "latitude": "0", "id": "19059302135", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 20:36:20", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/399/19059303225_0ea48b584a_o.jpg", "secret": "971e31ccf2", "media": "photo", "latitude": "0", "id": "19059303225", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 20:39:07", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/517/19062495731_f1aec4c2f2_o.jpg", "secret": "00cd37b2d6", "media": "photo", "latitude": "0", "id": "19062495731", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2015-06-20 20:43:05", "license": "1", "title": "Father's Day 5K 2015", "text": "", "album_id": "72157654923602631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/388/18871591790_370c7a5c58_o.jpg", "secret": "34ab1bf1cb", "media": "photo", "latitude": "0", "id": "18871591790", "tags": "city morning kids race children fun dad day marathon racing route event winner annual fathers 5k"}, {"datetaken": "2007-08-01 09:57:39", "license": "2", "title": "Zen of Drilling", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1175/981282103_3740b7323e_o.jpg", "secret": "81879792ae", "media": "photo", "latitude": "0", "id": "981282103", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 10:01:08", "license": "2", "title": "Go Drill Go", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1366/982143942_f35c693cac_o.jpg", "secret": "d0326cf056", "media": "photo", "latitude": "0", "id": "982143942", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 10:55:04", "license": "2", "title": "John Henry's Screwdriver", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1035/981297813_4ddcce8bbc_o.jpg", "secret": "2fd1ba2624", "media": "photo", "latitude": "0", "id": "981297813", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 11:53:30", "license": "2", "title": "Team Driver", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1177/981305225_f018a14bf3_o.jpg", "secret": "de97104aed", "media": "photo", "latitude": "0", "id": "981305225", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 11:53:45", "license": "2", "title": "Safety First, Second, and Third", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1371/982167516_424f61e631_o.jpg", "secret": "ddb6fab0d0", "media": "photo", "latitude": "0", "id": "982167516", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 12:04:22", "license": "2", "title": "Can't Bear to Watch", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1075/981318971_84f89a747e_o.jpg", "secret": "babc64b345", "media": "photo", "latitude": "0", "id": "981318971", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 12:13:28", "license": "2", "title": "A Brand New Car!", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1337/982182390_6a681164cf_o.jpg", "secret": "f29b631513", "media": "photo", "latitude": "0", "id": "982182390", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 12:15:39", "license": "2", "title": "Driving Miss Piper", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1049/981334805_919753fd68_o.jpg", "secret": "11dd624cb3", "media": "photo", "latitude": "0", "id": "981334805", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 14:04:29", "license": "2", "title": "Mysterious Visitor", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1205/982197956_f427e620e5_o.jpg", "secret": "d677865cd5", "media": "photo", "latitude": "0", "id": "982197956", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 14:04:47", "license": "2", "title": "Two Happy Sams", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1055/981350175_9ceab30777_o.jpg", "secret": "0c0b1e984a", "media": "photo", "latitude": "0", "id": "981350175", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 14:15:15", "license": "2", "title": "Eye of the Storm", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1289/982212192_3388afb13f_o.jpg", "secret": "9df6986d43", "media": "photo", "latitude": "0", "id": "982212192", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 17:22:22", "license": "2", "title": "Kicking the Tires", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1173/982219710_69169cf031_o.jpg", "secret": "97ab090658", "media": "photo", "latitude": "0", "id": "982219710", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 17:26:13", "license": "2", "title": "Checking Under the Hood", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1122/981371507_4b731e2e01_o.jpg", "secret": "99575c80c2", "media": "photo", "latitude": "0", "id": "981371507", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 17:26:21", "license": "2", "title": "Steady Hand", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1077/982233530_55577f1d53_o.jpg", "secret": "3219ddd76d", "media": "photo", "latitude": "0", "id": "982233530", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 17:27:21", "license": "2", "title": "Taking Shape", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1163/981385149_eba224766f_o.jpg", "secret": "fb00c97121", "media": "photo", "latitude": "0", "id": "981385149", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 17:33:52", "license": "2", "title": "Art it Up", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1157/982247622_11b191787e_o.jpg", "secret": "d730ae0d79", "media": "photo", "latitude": "0", "id": "982247622", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 17:35:31", "license": "2", "title": "What is Going On Here?", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1101/982254216_66f7787609_o.jpg", "secret": "202130b211", "media": "photo", "latitude": "0", "id": "982254216", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 17:37:06", "license": "2", "title": "Ready, Steady...", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1244/981406395_a2827ff429_o.jpg", "secret": "db2dc8e77d", "media": "photo", "latitude": "0", "id": "981406395", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 17:38:57", "license": "2", "title": "Success!", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1121/981413735_5b99417489_o.jpg", "secret": "4db893ace4", "media": "photo", "latitude": "0", "id": "981413735", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 17:39:35", "license": "2", "title": "Adding the Test Engine", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1434/981423111_2e8b64900c_o.jpg", "secret": "5d8df7aa61", "media": "photo", "latitude": "0", "id": "981423111", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 17:45:10", "license": "2", "title": "Skeptics", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1003/981432919_5797fe4082_o.jpg", "secret": "a2602c5a52", "media": "photo", "latitude": "0", "id": "981432919", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 17:45:32", "license": "2", "title": "Traffic is Backed up on the 101", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1402/982297772_1e884261dc_o.jpg", "secret": "7577b942a3", "media": "photo", "latitude": "0", "id": "982297772", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 17:54:36", "license": "2", "title": "An Emotional Spectrum", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1026/982308452_e097e20c39_o.jpg", "secret": "20457a1ec7", "media": "photo", "latitude": "0", "id": "982308452", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 17:54:42", "license": "2", "title": "Mush You Husky", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1325/981462375_4828dd3f90_o.jpg", "secret": "c20b4497fb", "media": "photo", "latitude": "0", "id": "981462375", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 17:58:12", "license": "2", "title": "Lean and Pull", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1199/982328588_0343523a31_o.jpg", "secret": "3934fb9b85", "media": "photo", "latitude": "0", "id": "982328588", "tags": "bestof juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 17:58:22", "license": "2", "title": "A Caterpillaring We Go", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1157/981483219_eb40e0d451_o.jpg", "secret": "06ff728d5a", "media": "photo", "latitude": "0", "id": "981483219", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 18:14:29", "license": "2", "title": "A Turn in the Yoke", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1265/981493803_f29bc033b3_o.jpg", "secret": "00798edd4d", "media": "photo", "latitude": "0", "id": "981493803", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 18:32:04", "license": "2", "title": "Table for Fifteen", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1366/982368090_bf0056ec58_o.jpg", "secret": "adaf1e9377", "media": "photo", "latitude": "0", "id": "982368090", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 20:09:51", "license": "2", "title": "Tinkering After Hours", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1269/982130484_f3c93fb5d4_o.jpg", "secret": "246a46c322", "media": "photo", "latitude": "0", "id": "982130484", "tags": "juniors day3 tinkeringschool"}, {"datetaken": "2007-08-01 22:39:12", "license": "2", "title": "Moment of Zen", "text": "", "album_id": "72157601163302429", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1305/982378328_5693cd219b_o.jpg", "secret": "33e2879fce", "media": "photo", "latitude": "0", "id": "982378328", "tags": "day3 tinkeringschool"}, {"datetaken": "2010-10-31 13:28:23", "license": "5", "title": "", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/5139022562_44099088a4_o.jpg", "secret": "b2f55aa524", "media": "photo", "latitude": "0", "id": "5139022562", "tags": ""}, {"datetaken": "2010-10-31 13:28:33", "license": "5", "title": "", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/5138778205_5ce7d2ea55_o.jpg", "secret": "235c350a82", "media": "photo", "latitude": "0", "id": "5138778205", "tags": ""}, {"datetaken": "2010-10-31 13:35:31", "license": "5", "title": "", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1405/5139023312_d28990696f_o.jpg", "secret": "8fbb0f677e", "media": "photo", "latitude": "0", "id": "5139023312", "tags": ""}, {"datetaken": "2010-10-31 13:38:15", "license": "5", "title": "", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/5180871977_86fb9a3201_o.jpg", "secret": "a2880e35ef", "media": "photo", "latitude": "0", "id": "5180871977", "tags": ""}, {"datetaken": "2010-10-31 13:41:04", "license": "5", "title": "", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7022/6587148121_de6708aaec_o.jpg", "secret": "efb6eea0fb", "media": "photo", "latitude": "0", "id": "6587148121", "tags": ""}, {"datetaken": "2010-11-01 08:56:25", "license": "5", "title": "Mestia", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/5139385104_5204ba75a3_o.jpg", "secret": "1ea35ee506", "media": "photo", "latitude": "0", "id": "5139385104", "tags": ""}, {"datetaken": "2010-11-01 08:56:50", "license": "5", "title": "Mestia", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7174/6587154809_cb1787248a_o.jpg", "secret": "9afccbdae3", "media": "photo", "latitude": "0", "id": "6587154809", "tags": ""}, {"datetaken": "2010-11-01 10:28:10", "license": "5", "title": "Mestia", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5051/5455784736_959b584f08_o.jpg", "secret": "46d11c9444", "media": "photo", "latitude": "0", "id": "5455784736", "tags": ""}, {"datetaken": "2010-11-01 10:28:41", "license": "5", "title": "Mestia", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5057/5455172119_5088e30dbf_o.jpg", "secret": "1c684423b8", "media": "photo", "latitude": "0", "id": "5455172119", "tags": ""}, {"datetaken": "2010-11-01 10:35:12", "license": "5", "title": "Mestia", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/5139024268_6109d99fac_o.jpg", "secret": "3f248ef959", "media": "photo", "latitude": "0", "id": "5139024268", "tags": ""}, {"datetaken": "2010-11-01 10:46:59", "license": "5", "title": "Mestia", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5255/5455172245_5060afd8b6_o.jpg", "secret": "db6a30d95d", "media": "photo", "latitude": "0", "id": "5455172245", "tags": ""}, {"datetaken": "2010-11-01 10:47:40", "license": "5", "title": "Mestia", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7166/6587167781_dceece1e8c_o.jpg", "secret": "4161b60012", "media": "photo", "latitude": "0", "id": "6587167781", "tags": ""}, {"datetaken": "2010-11-01 11:15:18", "license": "5", "title": "Mestia", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5167/5319653388_30ed1f5ce3_o.jpg", "secret": "79c75e9909", "media": "photo", "latitude": "0", "id": "5319653388", "tags": ""}, {"datetaken": "2010-11-01 11:18:59", "license": "5", "title": "Mestia", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7171/6587180407_ba1647f067_o.jpg", "secret": "86ced0758b", "media": "photo", "latitude": "0", "id": "6587180407", "tags": ""}, {"datetaken": "2010-11-01 11:22:18", "license": "5", "title": "Mestia", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7019/6587224741_4767ea9597_o.jpg", "secret": "7dfc2f198b", "media": "photo", "latitude": "0", "id": "6587224741", "tags": ""}, {"datetaken": "2010-11-01 11:22:37", "license": "5", "title": "Mestia", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1247/5138478525_395d72a0db_o.jpg", "secret": "4a8a5cfd98", "media": "photo", "latitude": "0", "id": "5138478525", "tags": ""}, {"datetaken": "2010-11-01 11:52:01", "license": "5", "title": "Mestia", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1213/5139086870_2edecec20b_o.jpg", "secret": "52c73c012f", "media": "photo", "latitude": "0", "id": "5139086870", "tags": ""}, {"datetaken": "2010-11-01 12:01:38", "license": "5", "title": "Mestia", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/5138796497_ecf336ca39_o.jpg", "secret": "a1dcc7e3cb", "media": "photo", "latitude": "0", "id": "5138796497", "tags": ""}, {"datetaken": "2010-11-01 13:35:55", "license": "5", "title": "Mestia", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/5138416767_2a76f867b4_o.jpg", "secret": "b5f1268e62", "media": "photo", "latitude": "0", "id": "5138416767", "tags": "svaneti mestia"}, {"datetaken": "2010-11-01 13:36:16", "license": "5", "title": "Mestia", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4085/5181452578_86f27e5649_o.jpg", "secret": "1ded132276", "media": "photo", "latitude": "0", "id": "5181452578", "tags": ""}, {"datetaken": "2010-11-01 13:36:32", "license": "5", "title": "Mestia", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5087/5319653884_bc0f6943c1_o.jpg", "secret": "a6eb899259", "media": "photo", "latitude": "0", "id": "5319653884", "tags": ""}, {"datetaken": "2010-11-01 13:37:28", "license": "5", "title": "Mestia", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4087/5180853945_b64d869b6e_o.jpg", "secret": "e9c3506bdd", "media": "photo", "latitude": "0", "id": "5180853945", "tags": ""}, {"datetaken": "2010-11-01 15:02:47", "license": "5", "title": "", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4106/5181453320_059d577cec_o.jpg", "secret": "fde71626ac", "media": "photo", "latitude": "0", "id": "5181453320", "tags": ""}, {"datetaken": "2010-11-01 15:21:06", "license": "5", "title": "Mt. Ushba", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1070/5139144930_ac939c0df0_o.jpg", "secret": "d2c0b3d00f", "media": "photo", "latitude": "0", "id": "5139144930", "tags": ""}, {"datetaken": "2010-11-01 15:22:30", "license": "5", "title": "Mt. Ushba", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1112/5138417277_d7469a9b14_o.jpg", "secret": "bbc1da6d42", "media": "photo", "latitude": "0", "id": "5138417277", "tags": ""}, {"datetaken": "2010-11-01 15:22:30", "license": "5", "title": "Mt. Ushba", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/5141542763_d6204bd7e4_o.jpg", "secret": "89c8c9ea85", "media": "photo", "latitude": "0", "id": "5141542763", "tags": ""}, {"datetaken": "2010-11-01 15:30:04", "license": "5", "title": "Mt. Ushba", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1425/5139065263_fc43632e22_o.jpg", "secret": "2d1c05acd3", "media": "photo", "latitude": "0", "id": "5139065263", "tags": ""}, {"datetaken": "2010-11-01 15:51:48", "license": "5", "title": "Svaneti", "text": "", "album_id": "72157625294515830", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7148/6587239513_1eb3eeacc1_o.jpg", "secret": "3899a5fbd6", "media": "photo", "latitude": "0", "id": "6587239513", "tags": ""}, {"datetaken": "2010-01-22 15:06:45", "license": "1", "title": "Bridges and Dentures 2", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4330150935_b358b536ed_o.jpg", "secret": "cd9f564608", "media": "photo", "latitude": "0", "id": "4330150935", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:07:05", "license": "1", "title": "Bridges and Dentures", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4330889016_fa372c510d_o.jpg", "secret": "fc6e791326", "media": "photo", "latitude": "0", "id": "4330889016", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:08:10", "license": "1", "title": "Pretty Bone Dental Tools", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2743/4330155995_e640e4e498_o.jpg", "secret": "1a19fcb9eb", "media": "photo", "latitude": "0", "id": "4330155995", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:11:30", "license": "1", "title": "Tiny Traveling Dental Kit", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4330158653_c8c34789a2_o.jpg", "secret": "e985d8eef5", "media": "photo", "latitude": "0", "id": "4330158653", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:12:44", "license": "1", "title": "Lovely Bridge Teaching Aid", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4330160807_ee047dcee4_o.jpg", "secret": "62ab3ba790", "media": "photo", "latitude": "0", "id": "4330160807", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:13:31", "license": "1", "title": "Articulated Skull in a dome", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4330163689_b3f619f068_o.jpg", "secret": "7352620436", "media": "photo", "latitude": "0", "id": "4330163689", "tags": "school history philadelphia museum tooth skeleton skull pennsylvania teeth dental medical pa dome anatomy historical bone philly dentist anatomical"}, {"datetaken": "2010-01-22 15:13:52", "license": "1", "title": "Articulated skull, detail", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4330166825_c10f36143b_o.jpg", "secret": "95bf7b469a", "media": "photo", "latitude": "0", "id": "4330166825", "tags": "school history philadelphia museum tooth skeleton skull pennsylvania teeth dental medical pa dome anatomy historical bone philly dentist anatomical"}, {"datetaken": "2010-01-22 15:14:47", "license": "1", "title": "Beautiful dental wax models", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4330169137_0fe3662783_o.jpg", "secret": "25f363e3fa", "media": "photo", "latitude": "0", "id": "4330169137", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa anatomy historical philly dentist anatomical"}, {"datetaken": "2010-01-22 15:15:17", "license": "1", "title": "Set of tools for making gold crowns", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2745/4330907506_eed430da56_o.jpg", "secret": "59a79a8588", "media": "photo", "latitude": "0", "id": "4330907506", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:16:07", "license": "1", "title": "Traveling Dentist's Kit", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2792/4330909870_c2875611be_o.jpg", "secret": "dfcb6f7753", "media": "photo", "latitude": "0", "id": "4330909870", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:16:45", "license": "1", "title": "Dental Student notebook", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4330176809_f44cbaf9c3_o.jpg", "secret": "598ef4fc62", "media": "photo", "latitude": "0", "id": "4330176809", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:17:19", "license": "1", "title": "Dentures", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2586/4330914576_c217eb2328_o.jpg", "secret": "ccbd874f7a", "media": "photo", "latitude": "0", "id": "4330914576", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:18:08", "license": "1", "title": "\"Trusyte Teeth\"", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4330917682_5ef36a89e0_o.jpg", "secret": "a6058f4666", "media": "photo", "latitude": "0", "id": "4330917682", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:18:59", "license": "1", "title": "Dentures of Porcelain Teeth and Pounded Metal Plate", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4330182645_c865769961_o.jpg", "secret": "2a45ee5849", "media": "photo", "latitude": "0", "id": "4330182645", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:19:34", "license": "1", "title": "Set of tiny dental tools", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4330920716_6e5e76739f_o.jpg", "secret": "065159a4ce", "media": "photo", "latitude": "0", "id": "4330920716", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:22:11", "license": "1", "title": "Bucket of Teeth", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4330987512_3023ca904f_o.jpg", "secret": "131893db3a", "media": "photo", "latitude": "0", "id": "4330987512", "tags": "old school museum tooth bucket many antique teeth dental medical dentist"}, {"datetaken": "2010-01-22 15:22:55", "license": "1", "title": "Ready-Made Dentures", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4330923792_6ea65433fd_o.jpg", "secret": "9c361f221a", "media": "photo", "latitude": "0", "id": "4330923792", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:23:26", "license": "1", "title": "Painless Parker's String of Teeth", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4330925746_a7b740611a_o.jpg", "secret": "2a88e79563", "media": "photo", "latitude": "0", "id": "4330925746", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:24:20", "license": "1", "title": "String of Teeth, Detail", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4330192081_e868ece87b_o.jpg", "secret": "10569d67d5", "media": "photo", "latitude": "0", "id": "4330192081", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:24:46", "license": "1", "title": "Wax Teeth from 1947", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4330193485_854447c7d8_o.jpg", "secret": "4db7bdc216", "media": "photo", "latitude": "0", "id": "4330193485", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:26:22", "license": "1", "title": "Victorian Dentist Office Recreation", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2791/4330196103_3e703dc20f_o.jpg", "secret": "f3383df727", "media": "photo", "latitude": "0", "id": "4330196103", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:28:28", "license": "1", "title": "The Historical Dental Museum sign", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4330197855_869c9b2dea_o.jpg", "secret": "3c1c7d00e4", "media": "photo", "latitude": "0", "id": "4330197855", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2010-01-22 15:37:15", "license": "1", "title": "Antique Toothbrushes", "text": "", "album_id": "72157623226515173", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4330935670_3c5c395e9d_o.jpg", "secret": "56f84bc68a", "media": "photo", "latitude": "0", "id": "4330935670", "tags": "school history philadelphia museum tooth pennsylvania teeth dental medical pa historical philly dentist"}, {"datetaken": "2011-05-05 11:04:25", "license": "3", "title": "The initial unboxing", "text": "", "album_id": "72157626655773394", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5028/5691506594_27c4550674_o.jpg", "secret": "be3fca52a9", "media": "photo", "latitude": "0", "id": "5691506594", "tags": "books selfindulgence tombihn idmessengerbag"}, {"datetaken": "2011-05-05 11:05:42", "license": "3", "title": "The Id by itself", "text": "", "album_id": "72157626655773394", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5023/5690936507_b7bec02dbc_o.jpg", "secret": "76bbf08fbf", "media": "photo", "latitude": "0", "id": "5690936507", "tags": "books selfindulgence tombihn idmessengerbag"}, {"datetaken": "2011-05-05 11:19:30", "license": "3", "title": "The back of Id", "text": "", "album_id": "72157626655773394", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5024/5691512928_35ec64d85c_o.jpg", "secret": "45a53dd5b3", "media": "photo", "latitude": "0", "id": "5691512928", "tags": "books selfindulgence tombihn idmessengerbag"}, {"datetaken": "2011-05-05 11:22:47", "license": "3", "title": "Beneath the flap", "text": "", "album_id": "72157626655773394", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5182/5691516476_bc88feb463_o.jpg", "secret": "0a6c2b6725", "media": "photo", "latitude": "0", "id": "5691516476", "tags": "books selfindulgence tombihn idmessengerbag"}, {"datetaken": "2011-05-05 11:23:18", "license": "3", "title": "Front compartment with organizers", "text": "", "album_id": "72157626655773394", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5024/5691519598_235fbdcc05_o.jpg", "secret": "d50c981656", "media": "photo", "latitude": "0", "id": "5691519598", "tags": "books selfindulgence tombihn idmessengerbag"}, {"datetaken": "2011-05-05 11:24:16", "license": "3", "title": "Interior of zippered main compartment", "text": "", "album_id": "72157626655773394", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5230/5691522604_45e4e99a7e_o.jpg", "secret": "698fbd5ee2", "media": "photo", "latitude": "0", "id": "5691522604", "tags": "books selfindulgence tombihn idmessengerbag"}, {"datetaken": "2011-05-05 11:43:04", "license": "3", "title": "My stuff", "text": "", "album_id": "72157626655773394", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5268/5690953559_89afe6aec4_o.jpg", "secret": "1622beefb3", "media": "photo", "latitude": "0", "id": "5690953559", "tags": "books selfindulgence tombihn idmessengerbag"}, {"datetaken": "2011-05-05 11:55:10", "license": "3", "title": "A packed-up Id", "text": "", "album_id": "72157626655773394", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5106/5690957959_a582e553fd_o.jpg", "secret": "89cc208be1", "media": "photo", "latitude": "0", "id": "5690957959", "tags": "books selfindulgence tombihn idmessengerbag"}, {"datetaken": "2011-05-05 11:59:09", "license": "3", "title": "Filled front compartment", "text": "", "album_id": "72157626655773394", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5306/5691535152_588a7dbdfd_o.jpg", "secret": "dfa6888dc6", "media": "photo", "latitude": "0", "id": "5691535152", "tags": "books selfindulgence tombihn idmessengerbag"}, {"datetaken": "2011-05-05 11:59:38", "license": "3", "title": "Filled front compartment, top view", "text": "", "album_id": "72157626655773394", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5222/5690965495_ccf88018cc_o.jpg", "secret": "bb772b8076", "media": "photo", "latitude": "0", "id": "5690965495", "tags": "books selfindulgence tombihn idmessengerbag"}, {"datetaken": "2011-05-05 12:00:46", "license": "3", "title": "Filled zippered main compartment", "text": "", "album_id": "72157626655773394", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5110/5691541544_7782680cba_o.jpg", "secret": "d881df4716", "media": "photo", "latitude": "0", "id": "5691541544", "tags": "books selfindulgence tombihn idmessengerbag"}, {"datetaken": "2011-05-05 15:23:01", "license": "3", "title": "Side view", "text": "", "album_id": "72157626655773394", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5264/5691544666_24e5df261a_o.jpg", "secret": "2a12f3091c", "media": "photo", "latitude": "0", "id": "5691544666", "tags": "books selfindulgence tombihn idmessengerbag"}, {"datetaken": "2011-05-05 15:24:38", "license": "3", "title": "A bigger book fits too", "text": "", "album_id": "72157626655773394", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5030/5691548594_e3e7f7d25f_o.jpg", "secret": "55d1055153", "media": "photo", "latitude": "0", "id": "5691548594", "tags": "books selfindulgence tombihn idmessengerbag"}, {"datetaken": "2010-06-06 14:01:39", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm5.staticflickr.com/4042/4676983947_d3a0675576_o.jpg", "secret": "448684d2f7", "media": "photo", "latitude": "33.350820", "id": "4676983947", "tags": "abandoned cemetery grave alabama hoover jacobs gravestones parkwood jeffersoncounty hooveralabama parkwoodcemetery lakecyrus jacobscemetery"}, {"datetaken": "2010-06-06 14:02:05", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm5.staticflickr.com/4038/4676983677_79580bb1d1_o.jpg", "secret": "1e3c34b1b9", "media": "photo", "latitude": "33.350820", "id": "4676983677", "tags": "abandoned cemetery grave alabama hoover jacobs gravestones parkwood jeffersoncounty hooveralabama parkwoodcemetery lakecyrus jacobscemetery"}, {"datetaken": "2010-06-06 14:02:36", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm5.staticflickr.com/4056/4676679345_b139116ba2_o.jpg", "secret": "e88d5218fc", "media": "photo", "latitude": "33.350820", "id": "4676679345", "tags": "abandoned cemetery grave alabama hoover jacobs gravestones parkwood jeffersoncounty hooveralabama parkwoodcemetery lakecyrus jacobscemetery"}, {"datetaken": "2010-06-06 14:03:08", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm5.staticflickr.com/4070/4676679885_d32397c5b9_o.jpg", "secret": "5e2d50b2ae", "media": "photo", "latitude": "33.350820", "id": "4676679885", "tags": "abandoned cemetery grave alabama hoover jacobs gravestones parkwood jeffersoncounty hooveralabama parkwoodcemetery lakecyrus jacobscemetery"}, {"datetaken": "2010-06-06 14:03:22", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm5.staticflickr.com/4052/4677309716_047bf693f1_o.jpg", "secret": "1a3c1f642a", "media": "photo", "latitude": "33.350820", "id": "4677309716", "tags": "abandoned cemetery grave alabama hoover jacobs gravestones parkwood jeffersoncounty hooveralabama parkwoodcemetery lakecyrus jacobscemetery"}, {"datetaken": "2010-06-06 14:03:34", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm5.staticflickr.com/4036/4676680325_657d78fcdb_o.jpg", "secret": "ba43552515", "media": "photo", "latitude": "33.350820", "id": "4676680325", "tags": "abandoned cemetery grave alabama hoover jacobs gravestones parkwood jeffersoncounty hooveralabama parkwoodcemetery lakecyrus jacobscemetery"}, {"datetaken": "2010-06-06 14:03:48", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm5.staticflickr.com/4016/4676680941_3b080a5656_o.jpg", "secret": "8cf3c0d1d4", "media": "photo", "latitude": "33.350820", "id": "4676680941", "tags": "abandoned cemetery grave alabama hoover jacobs gravestones parkwood jeffersoncounty hooveralabama parkwoodcemetery lakecyrus jacobscemetery"}, {"datetaken": "2010-06-06 14:04:01", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm5.staticflickr.com/4059/4677310686_275bf65b44_o.jpg", "secret": "91c2196119", "media": "photo", "latitude": "33.350820", "id": "4677310686", "tags": "abandoned cemetery grave alabama hoover jacobs gravestones parkwood jeffersoncounty hooveralabama parkwoodcemetery lakecyrus jacobscemetery"}, {"datetaken": "2010-06-06 14:04:06", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm5.staticflickr.com/4063/4676680145_265370ce8a_o.jpg", "secret": "7bcddb0c8f", "media": "photo", "latitude": "33.350820", "id": "4676680145", "tags": "abandoned cemetery grave alabama hoover jacobs gravestones parkwood jeffersoncounty hooveralabama parkwoodcemetery lakecyrus jacobscemetery"}, {"datetaken": "2010-06-06 14:04:56", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm2.staticflickr.com/1308/4677311354_d5d53f86fb_o.jpg", "secret": "659d6a0e3d", "media": "photo", "latitude": "33.350820", "id": "4677311354", "tags": "abandoned cemetery grave alabama hoover jacobs gravestones parkwood jeffersoncounty hooveralabama parkwoodcemetery lakecyrus jacobscemetery"}, {"datetaken": "2010-06-06 14:05:13", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm5.staticflickr.com/4023/4676677913_a88b518272_o.jpg", "secret": "c7bc2309fd", "media": "photo", "latitude": "33.350820", "id": "4676677913", "tags": "abandoned cemetery grave alabama hoover jacobs gravestones parkwood jeffersoncounty hooveralabama parkwoodcemetery lakecyrus jacobscemetery"}, {"datetaken": "2010-06-06 14:05:34", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm5.staticflickr.com/4001/4676678875_64f14009e7_o.jpg", "secret": "44a6e258a8", "media": "photo", "latitude": "33.350820", "id": "4676678875", "tags": "abandoned cemetery grave alabama hoover jacobs gravestones parkwood jeffersoncounty hooveralabama parkwoodcemetery lakecyrus jacobscemetery"}, {"datetaken": "2010-06-06 14:05:47", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm5.staticflickr.com/4069/4676678183_d92d5d0ef1_o.jpg", "secret": "a83f5dd2b5", "media": "photo", "latitude": "33.350820", "id": "4676678183", "tags": "abandoned cemetery grave alabama hoover jacobs gravestones parkwood jeffersoncounty hooveralabama parkwoodcemetery lakecyrus jacobscemetery"}, {"datetaken": "2010-06-06 14:06:08", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm2.staticflickr.com/1268/4677307734_4d9f123e00_o.jpg", "secret": "06d32e8ca1", "media": "photo", "latitude": "33.350820", "id": "4677307734", "tags": "abandoned cemetery grave war alabama civilwar hoover jacobs veteran gravestones confederacy csa parkwood jeffersoncounty hooveralabama confederatestatesarmy parkwoodcemetery lakecyrus peterccurren jacobscemetery"}, {"datetaken": "2010-06-06 14:06:18", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm5.staticflickr.com/4005/4676678387_bd03028315_o.jpg", "secret": "6f70aa2fb1", "media": "photo", "latitude": "33.350820", "id": "4676678387", "tags": "abandoned cemetery grave alabama hoover jacobs gravestones parkwood jeffersoncounty hooveralabama parkwoodcemetery lakecyrus jacobscemetery"}, {"datetaken": "2010-06-06 14:06:34", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm5.staticflickr.com/4039/4676678619_dbb5a0a45c_o.jpg", "secret": "086029ddbf", "media": "photo", "latitude": "33.350820", "id": "4676678619", "tags": "abandoned cemetery grave alabama hoover jacobs gravestones parkwood jeffersoncounty hooveralabama parkwoodcemetery lakecyrus jacobscemetery"}, {"datetaken": "2010-06-06 14:06:45", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm5.staticflickr.com/4014/4676679113_1f81574fff_o.jpg", "secret": "db455afc21", "media": "photo", "latitude": "33.350820", "id": "4676679113", "tags": "abandoned cemetery grave army war military wwii alabama navy ww2 hoover jacobs veteran usnavy gravestones worldwar2 usarmy koreanwar parkwood worldwartwo curren jeffersoncounty hooveralabama parkwoodcemetery lakecyrus jacobscemetery columbusleecurren"}, {"datetaken": "2010-06-06 14:07:56", "license": "2", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "text": "", "album_id": "72157624096000559", "longitude": "-86.880612", "url_o": "https://farm5.staticflickr.com/4041/4676681569_1fbc1287ed_o.jpg", "secret": "43430745b3", "media": "photo", "latitude": "33.350820", "id": "4676681569", "tags": "abandoned cemetery grave alabama hoover jacobs gravestones parkwood jeffersoncounty hooveralabama parkwoodcemetery lakecyrus jacobscemetery"}, {"datetaken": "2011-09-06 07:19:24", "license": "1", "title": "pensive", "text": "", "album_id": "72157627483112861", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6198/6120323194_c6a51fbc9f_o.jpg", "secret": "65f788b215", "media": "photo", "latitude": "0", "id": "6120323194", "tags": ""}, {"datetaken": "2011-09-06 07:19:27", "license": "1", "title": "September faces", "text": "", "album_id": "72157627483112861", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6183/6120323568_e5dfe4ddda_o.jpg", "secret": "3d288e3fe1", "media": "photo", "latitude": "0", "id": "6120323568", "tags": ""}, {"datetaken": "2011-09-06 07:19:32", "license": "1", "title": "sweet", "text": "", "album_id": "72157627483112861", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6199/6120324050_0ac43db2a6_o.jpg", "secret": "140daf630e", "media": "photo", "latitude": "0", "id": "6120324050", "tags": ""}, {"datetaken": "2011-09-06 07:19:33", "license": "1", "title": "peas in a pod", "text": "", "album_id": "72157627483112861", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6078/6120324606_878545e678_o.jpg", "secret": "c0c5254892", "media": "photo", "latitude": "0", "id": "6120324606", "tags": ""}, {"datetaken": "2011-09-06 07:19:35", "license": "1", "title": "back to school", "text": "", "album_id": "72157627483112861", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6202/6119781509_8c7f185025_o.jpg", "secret": "9332ed2c79", "media": "photo", "latitude": "0", "id": "6119781509", "tags": ""}, {"datetaken": "2011-09-06 07:19:51", "license": "1", "title": "off to the races", "text": "", "album_id": "72157627483112861", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6082/6120325376_94e9d65a63_o.jpg", "secret": "b9fdd8246d", "media": "photo", "latitude": "0", "id": "6120325376", "tags": ""}, {"datetaken": "2011-09-06 07:19:59", "license": "1", "title": "reaching for the stars", "text": "", "album_id": "72157627483112861", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6200/6119782285_e82f33a201_o.jpg", "secret": "075fd8f54d", "media": "photo", "latitude": "0", "id": "6119782285", "tags": ""}, {"datetaken": "2011-09-06 07:20:01", "license": "1", "title": "sillies", "text": "", "album_id": "72157627483112861", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6185/6120326136_105017b56c_o.jpg", "secret": "75d1a2d766", "media": "photo", "latitude": "0", "id": "6120326136", "tags": ""}, {"datetaken": "2011-09-06 07:20:10", "license": "1", "title": "first day of school", "text": "", "album_id": "72157627483112861", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6209/6119783017_103d8464d0_o.jpg", "secret": "f23f0dbb15", "media": "photo", "latitude": "0", "id": "6119783017", "tags": ""}, {"datetaken": "2011-09-06 07:20:11", "license": "1", "title": "big kids", "text": "", "album_id": "72157627483112861", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6195/6120327184_c8fd9f64b2_o.jpg", "secret": "f2703cf5cc", "media": "photo", "latitude": "0", "id": "6120327184", "tags": ""}, {"datetaken": "2011-09-06 06:10:08", "license": "5", "title": "First Day of School", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6186/6122950336_d551925430_o.jpg", "secret": "8bd6370ec2", "media": "photo", "latitude": "0", "id": "6122950336", "tags": "sandiego kindergarten firstdayofschool ashby missionhills roesevelt"}, {"datetaken": "2011-09-06 06:10:15", "license": "5", "title": "First Day of School", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6080/6122951504_6bf5f07206_o.jpg", "secret": "1d06fe3c9c", "media": "photo", "latitude": "0", "id": "6122951504", "tags": "sandiego kindergarten firstdayofschool ashby missionhills roesevelt"}, {"datetaken": "2011-09-06 06:10:54", "license": "5", "title": "First Day of School", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6201/6122952676_0082f58f77_o.jpg", "secret": "2e8f8104f9", "media": "photo", "latitude": "0", "id": "6122952676", "tags": "sandiego kindergarten firstdayofschool ashby missionhills roesevelt"}, {"datetaken": "2011-09-06 06:15:04", "license": "5", "title": "First Day of School", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6185/6122410383_2e0ce5ef00_o.jpg", "secret": "2b9d6ed155", "media": "photo", "latitude": "0", "id": "6122410383", "tags": "sandiego kindergarten firstdayofschool ashby missionhills"}, {"datetaken": "2011-09-06 06:15:13", "license": "5", "title": "First Day of School", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6062/6122410625_a667f7bbb6_o.jpg", "secret": "f462f6a4b3", "media": "photo", "latitude": "0", "id": "6122410625", "tags": "sandiego kindergarten firstdayofschool ashby missionhills"}, {"datetaken": "2011-09-06 06:24:26", "license": "5", "title": "Walking to school", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6061/6122411823_b288b76bc7_o.jpg", "secret": "7dd67f0818", "media": "photo", "latitude": "0", "id": "6122411823", "tags": "umbrella sandiego kindergarten firstdayofschool ashby missionhills"}, {"datetaken": "2011-09-06 06:24:58", "license": "5", "title": "First Day of School", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6072/6122412845_4f7346a23b_o.jpg", "secret": "d4b393b6c0", "media": "photo", "latitude": "0", "id": "6122412845", "tags": "umbrella sandiego kindergarten firstdayofschool ashby missionhills"}, {"datetaken": "2011-09-06 06:25:11", "license": "5", "title": "First Day of School", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6186/6122413991_e0102d1e65_o.jpg", "secret": "f5027ee1b3", "media": "photo", "latitude": "0", "id": "6122413991", "tags": "umbrella sandiego kindergarten firstdayofschool ashby missionhills"}, {"datetaken": "2011-09-06 06:27:19", "license": "5", "title": "First Day of School", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6193/6122957560_9914628cae_o.jpg", "secret": "6a95fc414c", "media": "photo", "latitude": "0", "id": "6122957560", "tags": "umbrella sandiego kindergarten firstdayofschool ashby missionhills"}, {"datetaken": "2011-09-06 06:28:13", "license": "5", "title": "First Day of School", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6181/6122416077_3d702ca401_o.jpg", "secret": "d5cb217171", "media": "photo", "latitude": "0", "id": "6122416077", "tags": "sandiego kindergarten firstdayofschool ashby missionhills"}, {"datetaken": "2011-09-06 06:34:22", "license": "5", "title": "First Day of School", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6207/6122417243_01dace5b36_o.jpg", "secret": "193a97e5a8", "media": "photo", "latitude": "0", "id": "6122417243", "tags": "sandiego kindergarten firstdayofschool missionhills"}, {"datetaken": "2011-09-06 06:35:27", "license": "5", "title": "First Day of School", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6182/6122418483_b70c11222a_o.jpg", "secret": "971e6e0255", "media": "photo", "latitude": "0", "id": "6122418483", "tags": "sandiego kindergarten firstdayofschool missionhills"}, {"datetaken": "2011-09-06 06:37:03", "license": "5", "title": "First Day of School", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6088/6122961788_55f364aa54_o.jpg", "secret": "6a6ba0cd55", "media": "photo", "latitude": "0", "id": "6122961788", "tags": "sandiego kindergarten firstdayofschool ashby missionhills"}, {"datetaken": "2011-09-06 06:37:38", "license": "5", "title": "First Day of School", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6075/6122420599_70657a3c21_o.jpg", "secret": "96f024819f", "media": "photo", "latitude": "0", "id": "6122420599", "tags": "sandiego kindergarten firstdayofschool ashby missionhills"}, {"datetaken": "2011-09-06 09:13:11", "license": "5", "title": "First Day of School", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6181/6122421455_e279d32599_o.jpg", "secret": "0ed0532177", "media": "photo", "latitude": "0", "id": "6122421455", "tags": "sandiego preschool roe firstdayofschool missionhills roesevelt"}, {"datetaken": "2011-09-06 09:13:14", "license": "5", "title": "First Day of School", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6073/6122422419_e88e028f12_o.jpg", "secret": "103be8eb56", "media": "photo", "latitude": "0", "id": "6122422419", "tags": "sandiego preschool roe firstdayofschool missionhills roesevelt"}, {"datetaken": "2011-09-06 09:13:34", "license": "5", "title": "First Day of School", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6076/6122423347_246498f0f8_o.jpg", "secret": "659a427fbb", "media": "photo", "latitude": "0", "id": "6122423347", "tags": "sandiego preschool roe firstdayofschool missionhills roesevelt"}, {"datetaken": "2011-09-06 09:13:39", "license": "5", "title": "First Day of School", "text": "", "album_id": "72157627613240028", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6194/6122423581_4578d4698f_o.jpg", "secret": "9f9af17597", "media": "photo", "latitude": "0", "id": "6122423581", "tags": "sandiego preschool roe firstdayofschool missionhills roesevelt"}, {"datetaken": "2010-08-06 16:57:32", "license": "6", "title": "IMG_2541", "text": "", "album_id": "72157624549191891", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4868766363_b2cb99339c_o.jpg", "secret": "87f588f9f9", "media": "photo", "latitude": "0", "id": "4868766363", "tags": "flowers beer mississippi starkville firstdayofschool fattire redagain redagainpatti redgain"}, {"datetaken": "2010-08-06 17:04:44", "license": "6", "title": "IMG_2551", "text": "", "album_id": "72157624549191891", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4869383376_b98814c134_o.jpg", "secret": "6c9a0208c6", "media": "photo", "latitude": "0", "id": "4869383376", "tags": "flowers beer mississippi starkville fattire redagain redagainpatti redgain"}, {"datetaken": "2010-08-06 17:05:36", "license": "6", "title": "IMG_2553", "text": "", "album_id": "72157624549191891", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4868770883_dd32b39c64_o.jpg", "secret": "d1d85a6d83", "media": "photo", "latitude": "0", "id": "4868770883", "tags": "flowers beer mississippi starkville fattire redagainpatti redgain"}, {"datetaken": "2010-08-06 17:06:49", "license": "6", "title": "IMG_2555", "text": "", "album_id": "72157624549191891", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4869391472_a382abe0cf_o.jpg", "secret": "e65ae3977d", "media": "photo", "latitude": "0", "id": "4869391472", "tags": "flowers beer mississippi starkville fattire redagainpatti redgain"}, {"datetaken": "2010-08-06 17:09:49", "license": "6", "title": "IMG_2563", "text": "", "album_id": "72157624549191891", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4869392258_b6bc9fcfba_o.jpg", "secret": "92f6fa3614", "media": "photo", "latitude": "0", "id": "4869392258", "tags": "flowers beer mississippi starkville fattire redagainpatti redgain"}, {"datetaken": "2010-08-06 17:11:02", "license": "6", "title": "IMG_2568", "text": "", "album_id": "72157624549191891", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4868780507_3ce71ef606_o.jpg", "secret": "5ffaa6b23b", "media": "photo", "latitude": "0", "id": "4868780507", "tags": "flowers beer mississippi starkville fattire redagainpatti redgain"}, {"datetaken": "2010-08-06 17:19:23", "license": "6", "title": "IMG_2583", "text": "", "album_id": "72157624549191891", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4869399328_d3c626312a_o.jpg", "secret": "3132f5777e", "media": "photo", "latitude": "0", "id": "4869399328", "tags": "flowers beer mississippi starkville fattire redagainpatti redgain"}, {"datetaken": "2010-08-06 17:19:41", "license": "6", "title": "Fat Tire", "text": "", "album_id": "72157624549191891", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4869028791_2a9918d223_o.jpg", "secret": "8f4f082e27", "media": "photo", "latitude": "0", "id": "4869028791", "tags": "flowers beer mississippi jean starkville fattire redagain redagainpatti"}, {"datetaken": "2010-08-06 17:21:25", "license": "6", "title": "IMG_2586", "text": "", "album_id": "72157624549191891", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4868788477_7c28df823f_o.jpg", "secret": "c3c9c7b139", "media": "photo", "latitude": "0", "id": "4868788477", "tags": "flowers beer mississippi starkville fattire redagainpatti redgain"}, {"datetaken": "2010-08-06 17:23:00", "license": "6", "title": "recalling memories of Jean", "text": "", "album_id": "72157624549191891", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4868793735_71ac958479_o.jpg", "secret": "01eb9bb29e", "media": "photo", "latitude": "0", "id": "4868793735", "tags": "flowers beer mississippi starkville fattire redagainpatti redgain"}, {"datetaken": "2010-11-19 18:51:46", "license": "1", "title": "I'll scratch your back, you scratch mine!", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/5216886582_13a5428a6b_o.jpg", "secret": "ba91227478", "media": "photo", "latitude": "0", "id": "5216886582", "tags": "d90 afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 18:54:00", "license": "1", "title": "Mickey leaves her mark", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/5196696379_3987c44776_o.jpg", "secret": "5c9ffbb27b", "media": "photo", "latitude": "0", "id": "5196696379", "tags": "kiss sam mickey d90 gilbertarizona afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 18:54:41", "license": "1", "title": "Sam", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/5192527783_a444dcd138_o.jpg", "secret": "073d0403bb", "media": "photo", "latitude": "0", "id": "5192527783", "tags": "portrait beautiful sam d90 gilbertarizona afnikkor85mmf18d bashahighschool sherlockholmesandtheeastendhorror"}, {"datetaken": "2010-11-19 19:00:51", "license": "1", "title": "Sam", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5122/5199786265_9eb9864eda_o.jpg", "secret": "5386c39c85", "media": "photo", "latitude": "0", "id": "5199786265", "tags": "portrait beautiful sam d90 gilbertarizona afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 19:15:19", "license": "1", "title": "Sherlock Holmes ponders his latest case", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4151/5191704810_2368fc4ee8_o.jpg", "secret": "f35c13c0c4", "media": "photo", "latitude": "0", "id": "5191704810", "tags": "d90 afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 19:45:02", "license": "1", "title": "Mr. Holmes", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/5195076083_a07c2c1186_o.jpg", "secret": "ae8ae84466", "media": "photo", "latitude": "0", "id": "5195076083", "tags": "portrait andrew d90 gilbertarizona afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 19:46:28", "license": "1", "title": "Oscar Wilde and Mr. Singh", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5203/5199833417_633eda8f66_o.jpg", "secret": "c362facf57", "media": "photo", "latitude": "0", "id": "5199833417", "tags": "gay oscarwilde d90 gilbertarizona afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror achmedsingh"}, {"datetaken": "2010-11-19 19:51:54", "license": "1", "title": "Mr. Holmes", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/5191704784_8eac605884_o.jpg", "secret": "ee1488e51f", "media": "photo", "latitude": "0", "id": "5191704784", "tags": "d90 afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 19:52:15", "license": "1", "title": "Oscar Wilde and Sherlock Holmes", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4151/5205807292_6694d2232a_o.jpg", "secret": "c313075bff", "media": "photo", "latitude": "0", "id": "5205807292", "tags": "d50 oscarwilde sherlockholmes gilbertarizona afnikkor50mmf18d bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 19:54:35", "license": "1", "title": "\"H. G. Wells\"", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4091/5191704844_237bb8eb56_o.jpg", "secret": "48eb5dcca8", "media": "photo", "latitude": "0", "id": "5191704844", "tags": "d90 afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 20:10:34", "license": "1", "title": "Backstage hands", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/5191777897_b455552fa1_o.jpg", "secret": "d72749b9c8", "media": "photo", "latitude": "0", "id": "5191777897", "tags": "d90afnikkor85mmf18dsherlockholmesandthewestendhorrorbashahighschoolgilbert arizonahandsfemale"}, {"datetaken": "2010-11-19 20:14:24", "license": "1", "title": "Josie", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/5200644138_d06fd444ed_o.jpg", "secret": "d1958e714d", "media": "photo", "latitude": "0", "id": "5200644138", "tags": "portrait blackandwhite beautiful face josie d90 gilbertarizona afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 20:17:10", "license": "1", "title": "Irish Rose", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/5193919096_f2cb171ab8_o.jpg", "secret": "9b10e44f8d", "media": "photo", "latitude": "0", "id": "5193919096", "tags": "portrait color girl beautiful smile d90 gilbertarizona afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 20:24:22", "license": "1", "title": "\"G. B. Shaw\"", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4149/5195676440_78f4b1851b_o.jpg", "secret": "121db7f38e", "media": "photo", "latitude": "0", "id": "5195676440", "tags": "nick georgebernardshaw d90 gilbertarizona afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 20:29:37", "license": "1", "title": "Mickey and Tyler", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5098/5510851229_24fb743365_o.jpg", "secret": "07269b0f3d", "media": "photo", "latitude": "0", "id": "5510851229", "tags": "mickey d90 gilbertarizona afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorrors"}, {"datetaken": "2010-11-19 20:35:16", "license": "1", "title": "Josie and Connor", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/5193382456_2ac4257034_o.jpg", "secret": "2dda604c70", "media": "photo", "latitude": "0", "id": "5193382456", "tags": "d50 connor josie mccarthy gilbertarizona afnikkor50mmf18d bashahighschool sherlockholmesandthewestendhorror jesserutland"}, {"datetaken": "2010-11-19 20:45:49", "license": "1", "title": "Watson and Singh", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5209/5213256271_6c49e82b67_o.jpg", "secret": "84c17f0962", "media": "photo", "latitude": "0", "id": "5213256271", "tags": "watson singh d90 gilbertarizona afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 20:46:15", "license": "1", "title": "Mr. Singh", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5163/5216886586_6ea1b65846_o.jpg", "secret": "d868a98ac1", "media": "photo", "latitude": "0", "id": "5216886586", "tags": "d90 afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 20:49:32", "license": "1", "title": "Holmes and Watson, SOOC", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4091/5202777771_3a2ec2d568_o.jpg", "secret": "c07867b0dc", "media": "photo", "latitude": "0", "id": "5202777771", "tags": "holmes drwatson d90 gilbertarizona afnikkor85mmf18d sooc bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 21:05:15", "license": "1", "title": "\"I am become Death, the destroyer of worlds\"", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4092/5205647736_fb374366aa_o.jpg", "secret": "6ec208d2e2", "media": "photo", "latitude": "0", "id": "5205647736", "tags": "sepia quote d90 gilbertarizona bhagavadgita afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 21:35:34", "license": "1", "title": "\"Oscar Wilde\"", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/5192785043_a9de3cc548_o.jpg", "secret": "1c1e3bc1fb", "media": "photo", "latitude": "0", "id": "5192785043", "tags": "portrait sepia oscarwilde d90 gilbertarizona afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror nickwerlinger"}, {"datetaken": "2010-11-19 21:50:29", "license": "1", "title": "The cast and the stage hands", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/5199786201_9d3fcfa789_o.jpg", "secret": "1eb4070874", "media": "photo", "latitude": "0", "id": "5199786201", "tags": "groupphoto d90 gilbertarizona bashahighschool afnikkor35mmf18d sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 22:02:18", "license": "1", "title": "Mickey and Tucker", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/5193124868_9297e2394c_o.jpg", "secret": "12c54dbcdf", "media": "photo", "latitude": "0", "id": "5193124868", "tags": "blackandwhite mickey tucker d90 gilbertarizona afnikkor85mmf18d bashahighschool sherlockholmesandtheeastendhorror"}, {"datetaken": "2010-11-19 22:07:20", "license": "1", "title": "That SMILE!", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/5191109973_985f0d6304_o.jpg", "secret": "54b70e418d", "media": "photo", "latitude": "0", "id": "5191109973", "tags": "portrait blackandwhite girl beautiful smile female dimples d90 afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 22:07:41", "license": "1", "title": "Hamming it up", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/5197143888_b1901b6f91_o.jpg", "secret": "9200918239", "media": "photo", "latitude": "0", "id": "5197143888", "tags": "portrait d90 gilbertarizona afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-11-19 22:08:52", "license": "1", "title": "Sam", "text": "", "album_id": "72157625429482242", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4124/5206943108_94f2d7ce12_o.jpg", "secret": "bbc9ee2001", "media": "photo", "latitude": "0", "id": "5206943108", "tags": "portrait blackandwhite beautiful face sam d90 gilbertarizona afnikkor85mmf18d bashahighschool sherlockholmesandthewestendhorror"}, {"datetaken": "2010-09-07 22:12:24", "license": "1", "title": "Other side of Tea Cozy", "text": "", "album_id": "72157624912296920", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/4972111923_4cc80b7aa9_o.jpg", "secret": "8540bcd9f7", "media": "photo", "latitude": "0", "id": "4972111923", "tags": ""}, {"datetaken": "2010-09-07 22:13:13", "license": "1", "title": "Tea Cozy looking Cozy", "text": "", "album_id": "72157624912296920", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/4972112677_b087c1c154_o.jpg", "secret": "ac3766bcd8", "media": "photo", "latitude": "0", "id": "4972112677", "tags": ""}, {"datetaken": "2010-09-07 22:17:19", "license": "1", "title": "Fits my tea pot perfectly", "text": "", "album_id": "72157624912296920", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/4972725606_cf3f79d9be_o.jpg", "secret": "964a45e26c", "media": "photo", "latitude": "0", "id": "4972725606", "tags": ""}, {"datetaken": "2010-09-08 09:18:22", "license": "1", "title": "Lamp post pose", "text": "", "album_id": "72157624912296920", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/4972108795_f1b665363e_o.jpg", "secret": "0a6e326c53", "media": "photo", "latitude": "0", "id": "4972108795", "tags": "max firstdayofschool lizanndrive"}, {"datetaken": "2010-09-08 09:18:44", "license": "1", "title": "DSC_0013.JPG", "text": "", "album_id": "72157624912296920", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4972724048_6b0f0c51d9_o.jpg", "secret": "4915b9d2e9", "media": "photo", "latitude": "0", "id": "4972724048", "tags": "max firstdayofschool lizanndrive"}, {"datetaken": "2010-09-08 09:18:51", "license": "1", "title": "Brotherly Love", "text": "", "album_id": "72157624912296920", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4130/4972724810_acca38210c_o.jpg", "secret": "e9a2180f13", "media": "photo", "latitude": "0", "id": "4972724810", "tags": "max firstdayofschool lizanndrive"}, {"datetaken": "2010-09-08 09:19:01", "license": "1", "title": "Big Send-off", "text": "", "album_id": "72157624912296920", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/4972731246_647f3ef732_o.jpg", "secret": "6f0287d7b9", "media": "photo", "latitude": "0", "id": "4972731246", "tags": "max firstdayofschool lizanndrive"}, {"datetaken": "2010-09-08 09:19:20", "license": "1", "title": "DSC_0018.JPG", "text": "", "album_id": "72157624912296920", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4149/4972115529_51ace0be5b_o.jpg", "secret": "ee32b7538e", "media": "photo", "latitude": "0", "id": "4972115529", "tags": "max firstdayofschool lizanndrive"}, {"datetaken": "2010-09-08 09:19:47", "license": "1", "title": "Walking up the driveway", "text": "", "album_id": "72157624912296920", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/4972114835_4df08d70b0_o.jpg", "secret": "b301616586", "media": "photo", "latitude": "0", "id": "4972114835", "tags": "max firstdayofschool lizanndrive"}, {"datetaken": "2010-09-08 09:20:27", "license": "1", "title": "His favorite shirt", "text": "", "album_id": "72157624912296920", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/4972114115_39142684e3_o.jpg", "secret": "029d100441", "media": "photo", "latitude": "0", "id": "4972114115", "tags": "max firstdayofschool lizanndrive"}, {"datetaken": "2010-09-08 09:23:04", "license": "1", "title": "Our half of Liz Ann Drive", "text": "", "album_id": "72157624912296920", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4151/4972730606_150faf0da6_o.jpg", "secret": "35ab99d3cb", "media": "photo", "latitude": "0", "id": "4972730606", "tags": "max firstdayofschool lizanndrive"}, {"datetaken": "2010-09-08 09:24:13", "license": "1", "title": "Bus stop", "text": "", "album_id": "72157624912296920", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/4972113419_41304665e0_o.jpg", "secret": "cca8ecfd98", "media": "photo", "latitude": "0", "id": "4972113419", "tags": "max firstdayofschool lizanndrive"}, {"datetaken": "2010-09-08 09:27:17", "license": "1", "title": "Waiting for the bus", "text": "", "album_id": "72157624912296920", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4113/4972731924_1ddee6ce50_o.jpg", "secret": "20d450dc63", "media": "photo", "latitude": "0", "id": "4972731924", "tags": "max firstdayofschool lizanndrive"}, {"datetaken": "2007-03-10 16:49:44", "license": "2", "title": "IMG_0984", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/169/416943817_1947da5085_o.jpg", "secret": "173750200e", "media": "photo", "latitude": "0", "id": "416943817", "tags": "saint day run dash patricks seatle"}, {"datetaken": "2007-03-11 07:59:55", "license": "2", "title": "IMG_0987", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/417900264_4fe7723f9f_o.jpg", "secret": "7523b15927", "media": "photo", "latitude": "0", "id": "417900264", "tags": "seattle saint day run dash patricks"}, {"datetaken": "2007-03-11 08:03:24", "license": "2", "title": "IMG_0988", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/417900285_e5a90df286_o.jpg", "secret": "ff6ab37df6", "media": "photo", "latitude": "0", "id": "417900285", "tags": "seattle saint day run dash patricks"}, {"datetaken": "2007-03-11 08:22:47", "license": "2", "title": "IMG_1015", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/417900296_2859fa1e18_o.jpg", "secret": "5f915aa52d", "media": "photo", "latitude": "0", "id": "417900296", "tags": "seattle saint day run dash patricks"}, {"datetaken": "2007-03-11 08:25:42", "license": "2", "title": "IMG_1018", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/417900309_9f8bf237d3_o.jpg", "secret": "d743e05fa2", "media": "photo", "latitude": "0", "id": "417900309", "tags": "seattle saint day run dash patricks"}, {"datetaken": "2007-03-11 08:26:28", "license": "2", "title": "IMG_1020", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/417900317_0f5c09c5e5_o.jpg", "secret": "a4760291ec", "media": "photo", "latitude": "0", "id": "417900317", "tags": "seattle saint day run dash patricks"}, {"datetaken": "2007-03-11 08:29:33", "license": "2", "title": "IMG_1021", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/417900321_f94ecbe438_o.jpg", "secret": "c44905a8b6", "media": "photo", "latitude": "0", "id": "417900321", "tags": "seattle saint day run dash patricks"}, {"datetaken": "2007-03-11 08:37:34", "license": "2", "title": "IMG_1025", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/417909440_1238314b92_o.jpg", "secret": "f34a1a3da9", "media": "photo", "latitude": "0", "id": "417909440", "tags": "seattle saint day dash patricks"}, {"datetaken": "2007-03-11 08:39:28", "license": "2", "title": "IMG_1030", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/417909442_0dcbe7b3ee_o.jpg", "secret": "a1d46dc61c", "media": "photo", "latitude": "0", "id": "417909442", "tags": "seattle saint day dash patricks"}, {"datetaken": "2007-03-11 08:46:44", "license": "2", "title": "IMG_1043", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/417909444_a0a84030e7_o.jpg", "secret": "df139262f3", "media": "photo", "latitude": "0", "id": "417909444", "tags": "seattle saint day dash patricks"}, {"datetaken": "2007-03-11 08:51:38", "license": "2", "title": "IMG_1045", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/417909446_90e2e69961_o.jpg", "secret": "2f518c6422", "media": "photo", "latitude": "0", "id": "417909446", "tags": "seattle saint day dash patricks"}, {"datetaken": "2007-03-11 09:00:02", "license": "2", "title": "IMG_1047", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/417909453_8efc5f1549_o.jpg", "secret": "8377078a03", "media": "photo", "latitude": "0", "id": "417909453", "tags": "seattle saint day dash patricks"}, {"datetaken": "2007-03-11 09:01:27", "license": "2", "title": "IMG_1048", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/417909456_3eae3b3b3c_o.jpg", "secret": "d802f74d64", "media": "photo", "latitude": "0", "id": "417909456", "tags": "seattle saint day dash patricks"}, {"datetaken": "2007-03-11 09:05:48", "license": "2", "title": "IMG_1050", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/417918607_3fd1e51917_o.jpg", "secret": "8eceb02d67", "media": "photo", "latitude": "0", "id": "417918607", "tags": "seattle saint day run dash patricks"}, {"datetaken": "2007-03-11 09:07:42", "license": "2", "title": "IMG_1053", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/417918624_14cdc7387a_o.jpg", "secret": "e123ad17b8", "media": "photo", "latitude": "0", "id": "417918624", "tags": "seattle saint day run dash patricks"}, {"datetaken": "2007-03-11 09:22:50", "license": "2", "title": "IMG_1061", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/417918632_662a4a9b4d_o.jpg", "secret": "f063f27791", "media": "photo", "latitude": "0", "id": "417918632", "tags": "seattle saint day run dash patricks"}, {"datetaken": "2007-03-11 09:34:04", "license": "2", "title": "IMG_1064", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/417918645_bd424ef2a9_o.jpg", "secret": "03695117ef", "media": "photo", "latitude": "0", "id": "417918645", "tags": "seattle saint day run dash patricks"}, {"datetaken": "2007-03-11 09:37:58", "license": "2", "title": "IMG_1073", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/417918651_31b7214824_o.jpg", "secret": "a053277245", "media": "photo", "latitude": "0", "id": "417918651", "tags": "seattle saint day run dash patricks"}, {"datetaken": "2007-03-11 09:39:34", "license": "2", "title": "IMG_1075", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/417918669_98d474177e_o.jpg", "secret": "ba59aef9cf", "media": "photo", "latitude": "0", "id": "417918669", "tags": "seattle saint day run dash patricks"}, {"datetaken": "2007-03-11 11:12:17", "license": "2", "title": "IMG_1082", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/417921824_7eb6786afd_o.jpg", "secret": "551b7ff6e9", "media": "photo", "latitude": "0", "id": "417921824", "tags": "seattle saint day run dash patricks"}, {"datetaken": "2007-03-11 13:40:27", "license": "2", "title": "IMG_1081", "text": "", "album_id": "72157594581215862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/417921819_3602931356_o.jpg", "secret": "93b35fd69b", "media": "photo", "latitude": "0", "id": "417921819", "tags": "seattle saint day run dash patricks"}, {"datetaken": "2005-08-17 07:08:51", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34839922_31d7001868_o.jpg", "secret": "31d7001868", "media": "photo", "latitude": "0", "id": "34839922", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:09:31", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34839946_1dda9b68c0_o.jpg", "secret": "1dda9b68c0", "media": "photo", "latitude": "0", "id": "34839946", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:32:30", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34839963_c1fbdda171_o.jpg", "secret": "c1fbdda171", "media": "photo", "latitude": "0", "id": "34839963", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:34:02", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34839977_86ef5a6bac_o.jpg", "secret": "86ef5a6bac", "media": "photo", "latitude": "0", "id": "34839977", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:34:30", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34839989_a6b94676dd_o.jpg", "secret": "a6b94676dd", "media": "photo", "latitude": "0", "id": "34839989", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:37:45", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34839997_8908f8776a_o.jpg", "secret": "8908f8776a", "media": "photo", "latitude": "0", "id": "34839997", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:38:40", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34840014_68df67ad6f_o.jpg", "secret": "68df67ad6f", "media": "photo", "latitude": "0", "id": "34840014", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:40:06", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34840027_4f68d9cce4_o.jpg", "secret": "4f68d9cce4", "media": "photo", "latitude": "0", "id": "34840027", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:41:04", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34840052_eaa72e0c60_o.jpg", "secret": "eaa72e0c60", "media": "photo", "latitude": "0", "id": "34840052", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:41:27", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34840080_29e9df5363_o.jpg", "secret": "29e9df5363", "media": "photo", "latitude": "0", "id": "34840080", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:42:13", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34840102_015765e590_o.jpg", "secret": "015765e590", "media": "photo", "latitude": "0", "id": "34840102", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:42:25", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34840120_d9c27d158c_o.jpg", "secret": "d9c27d158c", "media": "photo", "latitude": "0", "id": "34840120", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:42:35", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34840127_311e477665_o.jpg", "secret": "311e477665", "media": "photo", "latitude": "0", "id": "34840127", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:42:45", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34840149_4e8cc283a8_o.jpg", "secret": "4e8cc283a8", "media": "photo", "latitude": "0", "id": "34840149", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:46:41", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34840165_4d4da8f510_o.jpg", "secret": "4d4da8f510", "media": "photo", "latitude": "0", "id": "34840165", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:47:55", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34840189_ebc8de382b_o.jpg", "secret": "ebc8de382b", "media": "photo", "latitude": "0", "id": "34840189", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:48:10", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34840206_e0e1ab778c_o.jpg", "secret": "e0e1ab778c", "media": "photo", "latitude": "0", "id": "34840206", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:48:21", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34840224_632d96f028_o.jpg", "secret": "632d96f028", "media": "photo", "latitude": "0", "id": "34840224", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:48:30", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34840251_761af3eee7_o.jpg", "secret": "761af3eee7", "media": "photo", "latitude": "0", "id": "34840251", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:48:36", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34840269_92255056d5_o.jpg", "secret": "92255056d5", "media": "photo", "latitude": "0", "id": "34840269", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2005-08-17 07:48:44", "license": "1", "title": "Today is John's First Day of School", "text": "", "album_id": "771385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34840292_6017a4608b_o.jpg", "secret": "6017a4608b", "media": "photo", "latitude": "0", "id": "34840292", "tags": "john will johnsfirstday first day school kindergarten waco texas august 2005"}, {"datetaken": "2011-05-22 11:01:50", "license": "1", "title": "20110522-NIKON D40-8078.jpg", "text": "", "album_id": "72157626661468475", "longitude": "-74.881771", "url_o": "https://farm3.staticflickr.com/2295/5750657482_f27f07d8d7_o.jpg", "secret": "cc0221b1a4", "media": "photo", "latitude": "40.629538", "id": "5750657482", "tags": ""}, {"datetaken": "2011-05-22 11:09:00", "license": "1", "title": "New Jersey Martial Arts Invitational Championships", "text": "", "album_id": "72157626661468475", "longitude": "-74.881771", "url_o": "https://farm3.staticflickr.com/2008/5750657896_9049c7c82b_o.jpg", "secret": "dce7681ccf", "media": "photo", "latitude": "40.629538", "id": "5750657896", "tags": ""}, {"datetaken": "2011-05-22 11:34:37", "license": "1", "title": "20110522-NIKON D40-8108.jpg", "text": "", "album_id": "72157626661468475", "longitude": "-74.881771", "url_o": "https://farm3.staticflickr.com/2767/5750658102_3041bed340_o.jpg", "secret": "e1c917edb3", "media": "photo", "latitude": "40.629538", "id": "5750658102", "tags": ""}, {"datetaken": "2011-05-22 12:02:34", "license": "1", "title": "20110522-NIKON D40-8153.jpg", "text": "", "album_id": "72157626661468475", "longitude": "-74.881771", "url_o": "https://farm3.staticflickr.com/2745/5750658370_599bd1d5c7_o.jpg", "secret": "1011300166", "media": "photo", "latitude": "40.629538", "id": "5750658370", "tags": ""}, {"datetaken": "2011-05-22 12:11:53", "license": "1", "title": "20110522-NIKON D40-8155.jpg", "text": "", "album_id": "72157626661468475", "longitude": "-74.881771", "url_o": "https://farm6.staticflickr.com/5147/5750658638_0bc248a429_o.jpg", "secret": "3f5d2ed8c3", "media": "photo", "latitude": "40.629538", "id": "5750658638", "tags": ""}, {"datetaken": "2011-05-22 12:29:57", "license": "1", "title": "20110522-NIKON D40-8174.jpg", "text": "", "album_id": "72157626661468475", "longitude": "-74.881771", "url_o": "https://farm6.staticflickr.com/5149/5750115351_713accfeae_o.jpg", "secret": "79575e0b5f", "media": "photo", "latitude": "40.629538", "id": "5750115351", "tags": ""}, {"datetaken": "2011-05-22 13:14:28", "license": "1", "title": "20110522-NIKON D40-8188.jpg", "text": "", "album_id": "72157626661468475", "longitude": "-74.881771", "url_o": "https://farm4.staticflickr.com/3559/5750115559_3141676a97_o.jpg", "secret": "0a739b0328", "media": "photo", "latitude": "40.629538", "id": "5750115559", "tags": ""}, {"datetaken": "2011-05-22 13:33:19", "license": "1", "title": "20110522-NIKON D40-8285.jpg", "text": "", "album_id": "72157626661468475", "longitude": "-74.881771", "url_o": "https://farm4.staticflickr.com/3162/5750659402_c60be04ea0_o.jpg", "secret": "f70300b55a", "media": "photo", "latitude": "40.629538", "id": "5750659402", "tags": ""}, {"datetaken": "2011-05-22 13:36:59", "license": "1", "title": "20110522-NIKON D40-8293.jpg", "text": "", "album_id": "72157626661468475", "longitude": "-74.881771", "url_o": "https://farm6.staticflickr.com/5310/5750115971_1ebcfc75d9_o.jpg", "secret": "3a3ab978e8", "media": "photo", "latitude": "40.629538", "id": "5750115971", "tags": ""}, {"datetaken": "2011-05-22 13:37:24", "license": "1", "title": "May 22nd, 2011 - Breaking the limits", "text": "", "album_id": "72157626661468475", "longitude": "-74.881771", "url_o": "https://farm6.staticflickr.com/5183/5750659846_31af18346b_o.jpg", "secret": "d5dbf311ac", "media": "photo", "latitude": "40.629538", "id": "5750659846", "tags": ""}, {"datetaken": "2011-05-22 15:32:25", "license": "1", "title": "20110522-NIKON D40-8332.jpg", "text": "", "album_id": "72157626661468475", "longitude": "-74.881771", "url_o": "https://farm3.staticflickr.com/2243/5750116425_cb966d9834_o.jpg", "secret": "de9aaea4c7", "media": "photo", "latitude": "40.629538", "id": "5750116425", "tags": ""}, {"datetaken": "2011-05-22 15:33:26", "license": "1", "title": "May 22nd, 2011 - Manual Mode", "text": "", "album_id": "72157626661468475", "longitude": "-74.881771", "url_o": "https://farm4.staticflickr.com/3197/5750660404_5722d93012_o.jpg", "secret": "4f441960f5", "media": "photo", "latitude": "40.629538", "id": "5750660404", "tags": ""}, {"datetaken": "2011-08-25 08:37:02", "license": "3", "title": "First day of classes", "text": "", "album_id": "72157627391929081", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6084/6079999848_c6faa88d87_o.jpg", "secret": "7fab6f31e3", "media": "photo", "latitude": "0", "id": "6079999848", "tags": "class uca welcomeweek firstdayofclasses firstdayofclass universityofcentralarkansas 20112012 08252011"}, {"datetaken": "2011-08-25 08:41:01", "license": "3", "title": "First day of classes", "text": "", "album_id": "72157627391929081", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6061/6079462905_79f93b386b_o.jpg", "secret": "85601e7f7e", "media": "photo", "latitude": "0", "id": "6079462905", "tags": "class uca welcomeweek firstdayofclasses firstdayofclass universityofcentralarkansas 20112012 08252011"}, {"datetaken": "2011-08-25 08:42:42", "license": "3", "title": "First day of classes", "text": "", "album_id": "72157627391929081", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6185/6080000246_1a35e0f852_o.jpg", "secret": "8bdf0c9c0a", "media": "photo", "latitude": "0", "id": "6080000246", "tags": "class uca welcomeweek firstdayofclasses firstdayofclass universityofcentralarkansas 20112012 08252011"}, {"datetaken": "2011-08-25 08:44:37", "license": "3", "title": "First day of classes", "text": "", "album_id": "72157627391929081", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6081/6080000494_dc630b10f8_o.jpg", "secret": "5b9d0cf39e", "media": "photo", "latitude": "0", "id": "6080000494", "tags": "class uca welcomeweek firstdayofclasses firstdayofclass universityofcentralarkansas 20112012 08252011"}, {"datetaken": "2011-08-25 08:45:04", "license": "3", "title": "First day of classes", "text": "", "album_id": "72157627391929081", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6070/6080000598_de3f1d9916_o.jpg", "secret": "8b270c4eaf", "media": "photo", "latitude": "0", "id": "6080000598", "tags": "class uca welcomeweek firstdayofclasses firstdayofclass universityofcentralarkansas 20112012 08252011"}, {"datetaken": "2011-08-25 08:53:23", "license": "3", "title": "First day of classes", "text": "", "album_id": "72157627391929081", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6183/6079463657_b2a3506a4f_o.jpg", "secret": "c3dc17d595", "media": "photo", "latitude": "0", "id": "6079463657", "tags": "class uca welcomeweek firstdayofclasses firstdayofclass universityofcentralarkansas 20112012 08252011"}, {"datetaken": "2011-08-25 08:54:05", "license": "3", "title": "First day of classes", "text": "", "album_id": "72157627391929081", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6084/6080000976_66c8d446fd_o.jpg", "secret": "5518d9e408", "media": "photo", "latitude": "0", "id": "6080000976", "tags": "class uca welcomeweek firstdayofclasses firstdayofclass universityofcentralarkansas 20112012 08252011"}, {"datetaken": "2011-08-25 08:54:52", "license": "3", "title": "First day of classes", "text": "", "album_id": "72157627391929081", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6084/6079464071_e4460cb382_o.jpg", "secret": "8e6a64d324", "media": "photo", "latitude": "0", "id": "6079464071", "tags": "class uca welcomeweek firstdayofclasses firstdayofclass universityofcentralarkansas 20112012 08252011"}, {"datetaken": "2011-08-25 08:55:10", "license": "3", "title": "First day of classes", "text": "", "album_id": "72157627391929081", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6063/6079464357_4f1bfd574e_o.jpg", "secret": "594fd91f81", "media": "photo", "latitude": "0", "id": "6079464357", "tags": "class uca welcomeweek firstdayofclasses firstdayofclass universityofcentralarkansas 20112012 08252011"}, {"datetaken": "2011-08-25 09:09:25", "license": "3", "title": "First day of classes", "text": "", "album_id": "72157627391929081", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6198/6079464673_a38be328d5_o.jpg", "secret": "e204a2fb1b", "media": "photo", "latitude": "0", "id": "6079464673", "tags": "class uca welcomeweek firstdayofclasses firstdayofclass universityofcentralarkansas 20112012 08252011"}, {"datetaken": "2011-08-25 09:12:49", "license": "3", "title": "First day of classes", "text": "", "album_id": "72157627391929081", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6186/6079464891_c7f9b00f13_o.jpg", "secret": "f21a612f65", "media": "photo", "latitude": "0", "id": "6079464891", "tags": "class uca welcomeweek firstdayofclasses firstdayofclass universityofcentralarkansas 20112012 08252011"}, {"datetaken": "2011-08-25 09:16:54", "license": "3", "title": "First day of classes", "text": "", "album_id": "72157627391929081", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6066/6080002232_ce7092d11f_o.jpg", "secret": "57ebd1ef63", "media": "photo", "latitude": "0", "id": "6080002232", "tags": "class uca welcomeweek firstdayofclasses firstdayofclass universityofcentralarkansas 20112012 08252011"}, {"datetaken": "2011-04-19 06:42:04", "license": "4", "title": "School renovation, Dikhil, Djibouti, April 2011", "text": "", "album_id": "72157626596756884", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5305/5663823448_3d0469e109_o.jpg", "secret": "73cc78977f", "media": "photo", "latitude": "0", "id": "5663823448", "tags": "africa italy highschool mold renovation vicenza djibouti cjtfhoa ruraleducation dikhil dawnmprice ruralhealth histoplasmosis africom casermaederle usafricacommand usarmyafrica usaraf camplemonnier armyafrica courtneysanders 402ndcivilaffairsbattalion combinedjointtaskforce\u2013hornofafrica austinmmay mohammadcheikohassan housseinawaleh dennisfigueroa dikhilprefect"}, {"datetaken": "2011-04-19 06:53:15", "license": "4", "title": "School renovation, Dikhil, Djibouti, April 2011", "text": "", "album_id": "72157626596756884", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5147/5663254777_a5dd60982f_o.jpg", "secret": "34764a5efa", "media": "photo", "latitude": "0", "id": "5663254777", "tags": "africa italy highschool mold renovation vicenza djibouti cjtfhoa ruraleducation dikhil dawnmprice ruralhealth histoplasmosis africom casermaederle usafricacommand usarmyafrica usaraf camplemonnier armyafrica courtneysanders 402ndcivilaffairsbattalion combinedjointtaskforce\u2013hornofafrica austinmmay mohammadcheikohassan housseinawaleh dennisfigueroa dikhilprefect"}, {"datetaken": "2011-04-19 07:14:00", "license": "4", "title": "School renovation, Dikhil, Djibouti, April 2011", "text": "", "album_id": "72157626596756884", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5267/5663254669_b5d3a5f232_o.jpg", "secret": "db58842244", "media": "photo", "latitude": "0", "id": "5663254669", "tags": "africa italy highschool mold renovation vicenza djibouti cjtfhoa ruraleducation dikhil dawnmprice ruralhealth histoplasmosis africom casermaederle usafricacommand usarmyafrica usaraf camplemonnier armyafrica courtneysanders 402ndcivilaffairsbattalion combinedjointtaskforce\u2013hornofafrica austinmmay mohammadcheikohassan housseinawaleh dennisfigueroa dikhilprefect"}, {"datetaken": "2011-04-19 07:15:49", "license": "4", "title": "School renovation, Dikhil, Djibouti, April 2011", "text": "", "album_id": "72157626596756884", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5143/5663822756_07f3d78919_o.jpg", "secret": "ab9ef83036", "media": "photo", "latitude": "0", "id": "5663822756", "tags": "africa italy highschool mold renovation vicenza djibouti cjtfhoa ruraleducation dikhil dawnmprice ruralhealth histoplasmosis africom casermaederle usafricacommand usarmyafrica usaraf camplemonnier armyafrica courtneysanders 402ndcivilaffairsbattalion combinedjointtaskforce\u2013hornofafrica austinmmay mohammadcheikohassan housseinawaleh dennisfigueroa dikhilprefect"}, {"datetaken": "2011-04-19 07:16:03", "license": "4", "title": "School renovation, Dikhil, Djibouti, April 2011", "text": "", "album_id": "72157626596756884", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5265/5663254577_f30eb14e3e_o.jpg", "secret": "2df5fe26f9", "media": "photo", "latitude": "0", "id": "5663254577", "tags": "africa italy highschool mold renovation vicenza djibouti cjtfhoa ruraleducation dikhil dawnmprice ruralhealth histoplasmosis africom casermaederle usafricacommand usarmyafrica usaraf camplemonnier armyafrica courtneysanders 402ndcivilaffairsbattalion combinedjointtaskforce\u2013hornofafrica austinmmay mohammadcheikohassan housseinawaleh dennisfigueroa dikhilprefect"}, {"datetaken": "2011-04-19 07:26:17", "license": "4", "title": "School renovation, Dikhil, Djibouti, April 2011", "text": "", "album_id": "72157626596756884", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5188/5663822666_55c70d6346_o.jpg", "secret": "6fa8a8d440", "media": "photo", "latitude": "0", "id": "5663822666", "tags": "africa italy highschool mold renovation vicenza djibouti cjtfhoa ruraleducation dikhil dawnmprice ruralhealth histoplasmosis africom casermaederle usafricacommand usarmyafrica usaraf camplemonnier armyafrica courtneysanders 402ndcivilaffairsbattalion combinedjointtaskforce\u2013hornofafrica austinmmay mohammadcheikohassan housseinawaleh dennisfigueroa dikhilprefect"}, {"datetaken": "2011-04-19 07:45:08", "license": "4", "title": "School renovation, Dikhil, Djibouti, April 2011", "text": "", "album_id": "72157626596756884", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5021/5663254473_584ae7bf03_o.jpg", "secret": "e7b15ef618", "media": "photo", "latitude": "0", "id": "5663254473", "tags": "africa italy highschool mold renovation vicenza djibouti cjtfhoa ruraleducation dikhil dawnmprice ruralhealth histoplasmosis africom casermaederle usafricacommand usarmyafrica usaraf camplemonnier armyafrica courtneysanders 402ndcivilaffairsbattalion combinedjointtaskforce\u2013hornofafrica austinmmay mohammadcheikohassan housseinawaleh dennisfigueroa dikhilprefect"}, {"datetaken": "2011-04-19 07:52:44", "license": "4", "title": "School renovation, Dikhil, Djibouti, April 2011", "text": "", "album_id": "72157626596756884", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5027/5663822554_aaae38f5b3_o.jpg", "secret": "65b9b91539", "media": "photo", "latitude": "0", "id": "5663822554", "tags": "africa italy highschool mold renovation vicenza djibouti cjtfhoa ruraleducation dikhil dawnmprice ruralhealth histoplasmosis africom casermaederle usafricacommand usarmyafrica usaraf camplemonnier armyafrica courtneysanders 402ndcivilaffairsbattalion combinedjointtaskforce\u2013hornofafrica austinmmay mohammadcheikohassan housseinawaleh dennisfigueroa dikhilprefect"}, {"datetaken": "2011-04-19 07:54:50", "license": "4", "title": "School renovation, Dikhil, Djibouti, April 2011", "text": "", "album_id": "72157626596756884", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5268/5663253863_6eba7183ba_o.jpg", "secret": "4649ccf8f3", "media": "photo", "latitude": "0", "id": "5663253863", "tags": "africa italy highschool mold renovation vicenza djibouti cjtfhoa ruraleducation dikhil dawnmprice ruralhealth histoplasmosis africom casermaederle usafricacommand usarmyafrica usaraf camplemonnier armyafrica courtneysanders 402ndcivilaffairsbattalion combinedjointtaskforce\u2013hornofafrica austinmmay mohammadcheikohassan housseinawaleh dennisfigueroa dikhilprefect"}, {"datetaken": "2011-04-19 07:58:33", "license": "4", "title": "School renovation, Dikhil, Djibouti, April 2011", "text": "", "album_id": "72157626596756884", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5025/5663822874_6151c490af_o.jpg", "secret": "2c34f7a5ef", "media": "photo", "latitude": "0", "id": "5663822874", "tags": "africa djibouti usarmyafrica usaraf usafricacommand africom combinedjointtaskforce\u2013hornofafrica cjtfhoa 402ndcivilaffairsbattalion camplemonnier dikhil highschool renovation histoplasmosis mold ruraleducation ruralhealth courtneysanders mohammadcheikohassan housseinawaleh dennisfigueroa austinmmay dawnmprice dikhilprefect vicenza italy casermaederle armyafrica"}, {"datetaken": "2011-08-28 13:00:34", "license": "1", "title": "photo", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6068/6094659368_e9e5b24764_o.jpg", "secret": "c21fdc0c04", "media": "photo", "latitude": "0", "id": "6094659368", "tags": ""}, {"datetaken": "2011-08-29 08:07:57", "license": "1", "title": "DSC_4367", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6085/6104147667_0563c6acaf_o.jpg", "secret": "3e1ea51c4d", "media": "photo", "latitude": "0", "id": "6104147667", "tags": "poppy tamsin firstdayofschool"}, {"datetaken": "2011-08-29 08:07:59", "license": "1", "title": "DSC_4368", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6202/6104694264_f72738cce3_o.jpg", "secret": "0cd79cdffe", "media": "photo", "latitude": "0", "id": "6104694264", "tags": "poppy tamsin firstdayofschool"}, {"datetaken": "2011-08-29 08:08:20", "license": "1", "title": "DSC_4369", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6196/6104152317_b6d5be084a_o.jpg", "secret": "17aa849c8a", "media": "photo", "latitude": "0", "id": "6104152317", "tags": "poppy tamsin firstdayofschool"}, {"datetaken": "2011-08-29 08:08:21", "license": "1", "title": "DSC_4370", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6083/6104155339_de837f0464_o.jpg", "secret": "4680713147", "media": "photo", "latitude": "0", "id": "6104155339", "tags": "poppy tamsin firstdayofschool"}, {"datetaken": "2011-08-29 08:08:43", "license": "1", "title": "DSC_4371", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6088/6104159287_9b2369e0c9_o.jpg", "secret": "8387ef40f9", "media": "photo", "latitude": "0", "id": "6104159287", "tags": "poppy tamsin firstdayofschool"}, {"datetaken": "2011-08-29 08:08:45", "license": "1", "title": "DSC_4372", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6061/6104162835_54dc2481a0_o.jpg", "secret": "20b471e576", "media": "photo", "latitude": "0", "id": "6104162835", "tags": "poppy tamsin firstdayofschool"}, {"datetaken": "2011-08-29 08:08:46", "license": "1", "title": "DSC_4373", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6062/6104166629_b1ef29ebe0_o.jpg", "secret": "7ea994e9cd", "media": "photo", "latitude": "0", "id": "6104166629", "tags": "poppy tamsin firstdayofschool"}, {"datetaken": "2011-08-29 08:08:48", "license": "1", "title": "DSC_4374", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6068/6104169057_c99a6946f6_o.jpg", "secret": "7411903663", "media": "photo", "latitude": "0", "id": "6104169057", "tags": "poppy tamsin firstdayofschool"}, {"datetaken": "2011-08-29 08:08:58", "license": "1", "title": "DSC_4375", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6205/6104171807_166c487b62_o.jpg", "secret": "69e1356525", "media": "photo", "latitude": "0", "id": "6104171807", "tags": "poppy tamsin firstdayofschool"}, {"datetaken": "2011-08-29 08:09:07", "license": "1", "title": "DSC_4376", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6073/6104718488_e7a4b755cf_o.jpg", "secret": "f50c59159e", "media": "photo", "latitude": "0", "id": "6104718488", "tags": "poppy tamsin firstdayofschool"}, {"datetaken": "2011-08-29 08:09:08", "license": "1", "title": "DSC_4377", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6081/6104175839_a8d9575d50_o.jpg", "secret": "a1005f21e0", "media": "photo", "latitude": "0", "id": "6104175839", "tags": "poppy tamsin firstdayofschool"}, {"datetaken": "2011-08-29 08:10:46", "license": "1", "title": "DSC_4378", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6196/6104722306_521aa00339_o.jpg", "secret": "965bdeced5", "media": "photo", "latitude": "0", "id": "6104722306", "tags": "poppy tamsin firstdayofschool"}, {"datetaken": "2011-08-29 08:10:52", "license": "1", "title": "Walking to school", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6203/6104179965_547895ab27_o.jpg", "secret": "93726a6b37", "media": "photo", "latitude": "0", "id": "6104179965", "tags": "poppy tamsin firstdayofschool"}, {"datetaken": "2011-08-29 08:46:51", "license": "1", "title": "photo", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6082/6094124397_bc85949064_o.jpg", "secret": "16143e93ff", "media": "photo", "latitude": "0", "id": "6094124397", "tags": ""}, {"datetaken": "2011-08-29 08:47:03", "license": "1", "title": "photo", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6195/6094664412_29758a20b3_o.jpg", "secret": "f99bf37311", "media": "photo", "latitude": "0", "id": "6094664412", "tags": ""}, {"datetaken": "2011-08-29 08:47:05", "license": "1", "title": "photo", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6090/6094127557_95f07c925f_o.jpg", "secret": "06d227df3e", "media": "photo", "latitude": "0", "id": "6094127557", "tags": ""}, {"datetaken": "2011-08-29 08:47:14", "license": "1", "title": "photo", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6197/6094129275_e1d7d4f265_o.jpg", "secret": "7c24f94332", "media": "photo", "latitude": "0", "id": "6094129275", "tags": ""}, {"datetaken": "2011-08-29 08:47:18", "license": "1", "title": "photo", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6191/6094130923_f7a5099ecd_o.jpg", "secret": "e8aca8cbff", "media": "photo", "latitude": "0", "id": "6094130923", "tags": ""}, {"datetaken": "2011-08-29 17:26:23", "license": "1", "title": "Poppy's \"all about her\" collage", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6210/6094132961_026366d2fe_o.jpg", "secret": "25a8243a05", "media": "photo", "latitude": "0", "id": "6094132961", "tags": ""}, {"datetaken": "2011-08-29 17:54:24", "license": "1", "title": "First day of school", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6205/6094645954_cc7a212a4e_o.jpg", "secret": "21941af772", "media": "photo", "latitude": "0", "id": "6094645954", "tags": "poppy tamsin tam"}, {"datetaken": "2011-08-29 18:03:20", "license": "1", "title": "Hamming it up for the camera", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6181/6094669734_cda35e36e8_o.jpg", "secret": "839859fca8", "media": "photo", "latitude": "0", "id": "6094669734", "tags": ""}, {"datetaken": "2011-08-29 18:03:28", "license": "1", "title": "photo", "text": "", "album_id": "72157627448238523", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6205/6094670100_71b34f934f_o.jpg", "secret": "27ec1c9b23", "media": "photo", "latitude": "0", "id": "6094670100", "tags": "poppy tamsin"}, {"datetaken": "2011-06-29 12:57:11", "license": "5", "title": "Higher education", "text": "", "album_id": "72157626958486375", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5223/5885956572_ab636d0bb6_o.jpg", "secret": "c348ba146e", "media": "photo", "latitude": "0", "id": "5885956572", "tags": "iceland reykjav\u00edk traveltoiceland faxafl\u00f3ahafnir unitedstatescoastguardbarqueeagle uscoastguardschoolshipeagleinreykjavik"}, {"datetaken": "2011-06-29 13:02:04", "license": "5", "title": "On the deck", "text": "", "album_id": "72157626958486375", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5183/5886063886_37aa54aeaa_o.jpg", "secret": "54136987fd", "media": "photo", "latitude": "0", "id": "5886063886", "tags": "iceland traveltoiceland faxafl\u00f3ahafnir unitedstatescoastguardbarqueeagle uscoastguardschoolshipeagleinreykjavik"}, {"datetaken": "2011-06-29 13:05:58", "license": "5", "title": "Design and construction", "text": "", "album_id": "72157626958486375", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5192/5886942809_5f0095e26b_o.jpg", "secret": "c039040524", "media": "photo", "latitude": "0", "id": "5886942809", "tags": "iceland reykjav\u00edk traveltoiceland unitedstatescoastguardbarqueeagle uscoastguardschoolshipeagleinreykjavik"}, {"datetaken": "2011-06-29 13:08:30", "license": "5", "title": "On Duty", "text": "", "album_id": "72157626958486375", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6016/5887510260_5187815687_o.jpg", "secret": "9b6ff9b83f", "media": "photo", "latitude": "0", "id": "5887510260", "tags": "iceland reykjav\u00edk traveltoiceland unitedstatescoastguardbarqueeagle uscoastguardschoolshipeagleinreykjavik"}, {"datetaken": "2011-06-29 13:56:31", "license": "5", "title": "U.S. coast guard school ship Eagle", "text": "", "album_id": "72157626958486375", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5067/5885162789_8b0e064035_o.jpg", "secret": "dd80cdb8f2", "media": "photo", "latitude": "0", "id": "5885162789", "tags": "iceland mi\u00f0bakki faxafl\u00f3ahafnir unitedstatescoastguardbarqueeagle uscoastguardschoolshipeagleinreykjavik"}, {"datetaken": "2011-06-30 14:10:52", "license": "5", "title": "In Reykjavik", "text": "", "album_id": "72157626958486375", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5119/5891477203_f55aa66d8b_o.jpg", "secret": "b2d25e3411", "media": "photo", "latitude": "0", "id": "5891477203", "tags": "iceland reykjav\u00edk traveltoiceland faxafl\u00f3ahafnir slysavarnaf\u00e9lagi\u00f0landsbj\u00f6rg harpareykjav\u00edkconcerthallandconferencecentre unitedstatescoastguardbarqueeagle uscoastguardschoolshipeagleinreykjavik"}, {"datetaken": "2011-06-30 17:21:20", "license": "5", "title": "Old Harbour of Reykjavik", "text": "", "album_id": "72157626958486375", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5275/5897420133_00f6768774_o.jpg", "secret": "2c77d67633", "media": "photo", "latitude": "0", "id": "5897420133", "tags": "iceland reykjav\u00edk unitedstatescoastguardbarqueeagle oldharbourofreykjavik"}, {"datetaken": "2011-06-30 17:38:04", "license": "5", "title": "Routine of the Day", "text": "", "album_id": "72157626958486375", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5316/5889990949_53816e61ab_o.jpg", "secret": "f2f8093b90", "media": "photo", "latitude": "0", "id": "5889990949", "tags": "iceland reykjav\u00edk traveltoiceland unitedstatescoastguardbarqueeagle uscoastguardschoolshipeagleinreykjavik"}, {"datetaken": "2011-06-30 17:46:23", "license": "5", "title": "From the U.S. Coast Guard Academy", "text": "", "album_id": "72157626958486375", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5277/5889989765_4499917cb2_o.jpg", "secret": "0c1f44f1f8", "media": "photo", "latitude": "0", "id": "5889989765", "tags": "iceland reykjav\u00edk traveltoiceland unitedstatescoastguardbarqueeagle uscoastguardschoolshipeagleinreykjavik"}, {"datetaken": "2011-06-30 17:54:16", "license": "5", "title": "History and Culture", "text": "", "album_id": "72157626958486375", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5039/5889988729_e01722c9c0_o.jpg", "secret": "034984ee2d", "media": "photo", "latitude": "0", "id": "5889988729", "tags": "iceland reykjav\u00edk traveltoiceland faxafl\u00f3ahafnir unitedstatescoastguardbarqueeagle uscoastguardschoolshipeagleinreykjavik"}, {"datetaken": "2011-06-30 17:59:21", "license": "5", "title": "Day Shift", "text": "", "album_id": "72157626958486375", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5306/5891089222_a241bf3f72_o.jpg", "secret": "ec5c92ec35", "media": "photo", "latitude": "0", "id": "5891089222", "tags": "iceland reykjav\u00edk unitedstatescoastguardbarqueeagle uscoastguardschoolshipeagleinreykjavik"}, {"datetaken": "2011-06-30 18:01:15", "license": "5", "title": "Training", "text": "", "album_id": "72157626958486375", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5235/5891476403_de6326945b_o.jpg", "secret": "25bbbdb00e", "media": "photo", "latitude": "0", "id": "5891476403", "tags": "iceland unitedstatescoastguardbarqueeagle uscoastguardschoolshipeagleinreykjavik"}, {"datetaken": "2011-06-30 18:07:21", "license": "5", "title": "Welcome to Reykjav\u00edk", "text": "", "album_id": "72157626958486375", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5311/5890524179_aa142c8811_o.jpg", "secret": "eab494da15", "media": "photo", "latitude": "0", "id": "5890524179", "tags": "iceland reykjav\u00edk traveltoiceland faxafl\u00f3ahafnir unitedstatescoastguardbarqueeagle uscoastguardschoolshipeagleinreykjavik"}, {"datetaken": "2011-06-30 18:15:17", "license": "5", "title": "The Eagle Experience", "text": "", "album_id": "72157626958486375", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5062/5890525465_83d49ff189_o.jpg", "secret": "bfd25cc093", "media": "photo", "latitude": "0", "id": "5890525465", "tags": "iceland reykjav\u00edk unitedstatescoastguardbarqueeagle uscoastguardschoolshipeagleinreykjavik"}, {"datetaken": "2010-01-17 15:04:21", "license": "2", "title": "25th Anniversary MLK Day 1", "text": "", "album_id": "72157625082582503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4083/4946129225_07c757c7f6_o.jpg", "secret": "701434b1c6", "media": "photo", "latitude": "0", "id": "4946129225", "tags": "students community events diversity celebration pennstate involvement 25thanniversary martinlutherkingday universityparkcampus pasquerillaspiritualcenter creditannemariemountz mlkjrcommunityshowcase"}, {"datetaken": "2010-01-17 15:16:45", "license": "2", "title": "25th Anniversary MLK Day 2", "text": "", "album_id": "72157625082582503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/4946129617_e7ecf025bd_o.jpg", "secret": "6ac1654c51", "media": "photo", "latitude": "0", "id": "4946129617", "tags": "music students community events performance diversity celebration entertainment pennstate involvement 25thanniversary jazzband martinlutherkingday universityparkcampus pasquerillaspiritualcenter creditannemariemountz statecollegeareahighschool mlkjrcommunityshowcase"}, {"datetaken": "2010-01-17 15:19:32", "license": "2", "title": "25th Anniversary MLK Day 3", "text": "", "album_id": "72157625082582503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4946718634_1037c1c9fc_o.jpg", "secret": "390b45f797", "media": "photo", "latitude": "0", "id": "4946718634", "tags": "students reading community poetry events diversity celebration pennstate involvement 25thanniversary martinlutherkingday universityparkcampus pasquerillaspiritualcenter parkforestmiddleschool creditannemariemountz mlkjrcommunityshowcase"}, {"datetaken": "2010-01-17 15:22:26", "license": "2", "title": "25th Anniversary MLK Day 4", "text": "", "album_id": "72157625082582503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4946719382_80aa901b77_o.jpg", "secret": "26502d654b", "media": "photo", "latitude": "0", "id": "4946719382", "tags": "students children reading community events diversity celebration story pennstate involvement 25thanniversary martinlutherkingday universityparkcampus pasquerillaspiritualcenter creditannemariemountz grayswoodselementaryschool mlkjrcommunityshowcase"}, {"datetaken": "2010-01-17 15:27:53", "license": "2", "title": "25th Anniversary MLK Day 5", "text": "", "album_id": "72157625082582503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4946720048_d8b8985760_o.jpg", "secret": "fb0605bfd1", "media": "photo", "latitude": "0", "id": "4946720048", "tags": "music students community singing events performance diversity celebration entertainment pennstate involvement 25thanniversary martinlutherkingday universityparkcampus pasquerillaspiritualcenter creditannemariemountz unitedsoulensemble mlkjrcommunityshowcase"}, {"datetaken": "2010-01-17 15:30:30", "license": "2", "title": "25th Anniversary MLK Day 6", "text": "", "album_id": "72157625082582503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/4946131809_f21cabecb7_o.jpg", "secret": "fa06bdecd7", "media": "photo", "latitude": "0", "id": "4946131809", "tags": "students reading community events diversity celebration pennstate involvement 25thanniversary martinlutherkingday universityparkcampus pasquerillaspiritualcenter parkforestmiddleschool creditannemariemountz mlkjrcommunityshowcase"}, {"datetaken": "2010-01-17 15:32:47", "license": "2", "title": "25th Anniversary MLK Day 7", "text": "", "album_id": "72157625082582503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4946132173_c87d8cb2ee_o.jpg", "secret": "3f5a12e414", "media": "photo", "latitude": "0", "id": "4946132173", "tags": "students children reading community events diversity celebration pennstate involvement 25thanniversary martinlutherkingday universityparkcampus pasquerillaspiritualcenter creditannemariemountz radioparkelementaryschool mlkjrcommunityshowcase"}, {"datetaken": "2010-01-17 15:36:31", "license": "2", "title": "25th Anniversary MLK Day 8", "text": "", "album_id": "72157625082582503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/4946132923_b264e18e09_o.jpg", "secret": "fe710f1cf6", "media": "photo", "latitude": "0", "id": "4946132923", "tags": "students community events diversity celebration pennstate involvement speakers 25thanniversary martinlutherkingday universityparkcampus pasquerillaspiritualcenter projecthaiti creditannemariemountz mlkjrcommunityshowcase"}, {"datetaken": "2010-01-17 16:01:28", "license": "2", "title": "25th Anniversary MLK Day 9", "text": "", "album_id": "72157625082582503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/4946133117_8b8320e4fc_o.jpg", "secret": "2a10813b3f", "media": "photo", "latitude": "0", "id": "4946133117", "tags": "students reading community essay events diversity celebration pennstate involvement 25thanniversary martinlutherkingday universityparkcampus pasquerillaspiritualcenter parkforestmiddleschool creditannemariemountz mlkjrcommunityshowcase"}, {"datetaken": "2010-01-17 16:06:07", "license": "2", "title": "25th Anniversary MLK Day 10", "text": "", "album_id": "72157625082582503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4151/4946721918_6353743d22_o.jpg", "secret": "d366649dff", "media": "photo", "latitude": "0", "id": "4946721918", "tags": "students children reading community events diversity celebration story pennstate involvement 25thanniversary martinlutherkingday universityparkcampus pasquerillaspiritualcenter creditannemariemountz mlkjrcommunityshowcase"}, {"datetaken": "2010-01-17 16:17:44", "license": "2", "title": "25th Anniversary MLK Day 11", "text": "", "album_id": "72157625082582503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4946722476_9268d7a20a_o.jpg", "secret": "194cbb7623", "media": "photo", "latitude": "0", "id": "4946722476", "tags": "students video community events diversity celebration pennstate involvement 25thanniversary naacp martinlutherkingday universityparkcampus pasquerillaspiritualcenter creditannemariemountz mlkjrcommunityshowcase"}, {"datetaken": "2010-01-17 16:21:14", "license": "2", "title": "25th Anniversary MLK Day 12", "text": "", "album_id": "72157625082582503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/4946134091_28bd554ebc_o.jpg", "secret": "c7b86563fe", "media": "photo", "latitude": "0", "id": "4946134091", "tags": "students community events diversity celebration pennstate involvement 25thanniversary martinlutherkingday universityparkcampus ihaveadreamspeech pasquerillaspiritualcenter creditannemariemountz mlkjrcommunityshowcase"}, {"datetaken": "2006-07-03 23:32:54", "license": "3", "title": "Must View Large", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/182478761_01bdfd2a2f_o.jpg", "secret": "01bdfd2a2f", "media": "photo", "latitude": "0", "id": "182478761", "tags": "raw fireworks newhampshire nh independenceday greenville top20fireworks"}, {"datetaken": "2006-07-03 23:33:54", "license": "3", "title": "Hooray for the Red, White and Blue...", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/182515536_1d99891ed6_o.jpg", "secret": "1d99891ed6", "media": "photo", "latitude": "0", "id": "182515536", "tags": "interestingness interesting raw fireworks newhampshire scout nh celebration explore redwhiteandblue greenville independanceday johnphillipssousa fervid"}, {"datetaken": "2006-07-03 23:34:13", "license": "3", "title": "Greenville, NH Fireworks", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/181349921_efa2d648aa_o.jpg", "secret": "efa2d648aa", "media": "photo", "latitude": "0", "id": "181349921", "tags": "raw fireworks newhampshire nh greenville"}, {"datetaken": "2006-07-03 23:34:13", "license": "3", "title": "Red Sky at Night", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/182608969_13810e2fea_o.jpg", "secret": "13810e2fea", "media": "photo", "latitude": "0", "id": "182608969", "tags": "red raw fireworks newhampshire nh celebration independenceday greenville"}, {"datetaken": "2006-07-03 23:34:21", "license": "3", "title": "Golden Showers", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/182933641_cd834e8a3b_o.jpg", "secret": "cd834e8a3b", "media": "photo", "latitude": "0", "id": "182933641", "tags": "raw fireworks newhampshire nh fourthofjuly independenceday greenville"}, {"datetaken": "2006-07-03 23:35:28", "license": "3", "title": "Astro Palm Tree", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/183029830_52ca4a8085_o.jpg", "secret": "52ca4a8085", "media": "photo", "latitude": "0", "id": "183029830", "tags": "raw fireworks newhampshire nh greenville istillhaventgottentothefourthofjulyshotsyet"}, {"datetaken": "2006-07-03 23:38:33", "license": "3", "title": "Ohhhhh....Ahhhh....", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/181924203_9c3bd4556f_o.jpg", "secret": "9c3bd4556f", "media": "photo", "latitude": "0", "id": "181924203", "tags": "interestingness interesting raw fireworks newhampshire scout nh explore greenville utatafeature top20fireworks top2006 hampsteadlibrary"}, {"datetaken": "2006-07-03 23:38:54", "license": "3", "title": "Purple Explosion", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/183041238_e6ae7f8599_o.jpg", "secret": "e6ae7f8599", "media": "photo", "latitude": "0", "id": "183041238", "tags": "raw fireworks newhampshire nh celebration fourthofjuly independenceday greenville"}, {"datetaken": "2006-07-03 23:40:03", "license": "3", "title": "StarrGazing", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/183284627_32cd60c4ea_o.jpg", "secret": "32cd60c4ea", "media": "photo", "latitude": "0", "id": "183284627", "tags": "america raw fireworks newhampshire nh celebration fourthofjuly independenceday greenville"}, {"datetaken": "2006-07-03 23:40:08", "license": "3", "title": "Into the Heavens", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/183284697_319dec7bd6_o.jpg", "secret": "319dec7bd6", "media": "photo", "latitude": "0", "id": "183284697", "tags": "america raw fireworks newhampshire nh celebration fourthofjuly independenceday greenville"}, {"datetaken": "2006-07-03 23:40:17", "license": "3", "title": "Greenville, NH Fireworks", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/181350106_e9da62a58c_o.jpg", "secret": "e9da62a58c", "media": "photo", "latitude": "0", "id": "181350106", "tags": "raw fireworks newhampshire nh greenville"}, {"datetaken": "2006-07-03 23:41:44", "license": "3", "title": "Greenville, NH Fireworks", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/181350252_51f32587c9_o.jpg", "secret": "51f32587c9", "media": "photo", "latitude": "0", "id": "181350252", "tags": "raw fireworks newhampshire nh greenville"}, {"datetaken": "2006-07-04 00:00:20", "license": "3", "title": "Waiting for Midnight", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/181357689_e9d17bb7e0_o.jpg", "secret": "e9d17bb7e0", "media": "photo", "latitude": "0", "id": "181357689", "tags": "holiday michael raw flag newhampshire nh parade celebration american fourthofjuly independenceday greenville potsandpans"}, {"datetaken": "2006-07-04 10:00:22", "license": "3", "title": "Green Bridge at Tyngsborough", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/181631561_4f07a2a38b_o.jpg", "secret": "4f07a2a38b", "media": "photo", "latitude": "0", "id": "181631561", "tags": "bridge river ma raw massachusetts newengland mass merrimack merrimackriver tyngsborough tyngsboro greenbridge"}, {"datetaken": "2006-07-04 10:01:38", "license": "3", "title": "End Construction", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/181631985_1efad94055_o.jpg", "secret": "1efad94055", "media": "photo", "latitude": "0", "id": "181631985", "tags": "bridge sign river ma construction raw massachusetts newengland stop end blogged mass merrimackriver tyngsborough tyngsboro greenbridge httpmcegregiousblogspotcom200801endconstructionhtml"}, {"datetaken": "2006-07-04 10:02:13", "license": "3", "title": "Happy Fourth of July", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/181632251_0cd6a8700a_o.jpg", "secret": "0cd6a8700a", "media": "photo", "latitude": "0", "id": "181632251", "tags": "ma raw massachusetts newengland icecream mass tyngsborough tyngsboro sullivanfarms"}, {"datetaken": "2006-07-04 10:03:18", "license": "3", "title": "Sullivan Farms", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/181632538_ec8a2ed115_o.jpg", "secret": "ec8a2ed115", "media": "photo", "latitude": "0", "id": "181632538", "tags": "ma raw massachusetts newengland icecream mass tyngsborough tyngsboro sullivanfarms"}, {"datetaken": "2006-07-04 10:04:14", "license": "3", "title": "Ice Cream is as American as Apple Pie", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/181632861_3a40a80c10_o.jpg", "secret": "3a40a80c10", "media": "photo", "latitude": "0", "id": "181632861", "tags": "ma raw massachusetts newengland icecream mass tyngsborough tyngsboro sullivanfarms"}, {"datetaken": "2006-07-04 10:04:46", "license": "3", "title": "Welcome", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/181633206_7a9353a3ff_o.jpg", "secret": "7a9353a3ff", "media": "photo", "latitude": "0", "id": "181633206", "tags": "ma raw massachusetts newengland icecream mass tyngsborough tyngsboro sullivanfarms utataopensthedoor"}, {"datetaken": "2006-07-04 10:05:44", "license": "3", "title": "Crossroads", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/181633662_2bab037294_o.jpg", "secret": "2bab037294", "media": "photo", "latitude": "0", "id": "181633662", "tags": "ma raw massachusetts newengland icecream mass tyngsborough tyngsboro sullivanfarms"}, {"datetaken": "2006-07-04 10:06:16", "license": "3", "title": "Have a Seat and Relax!", "text": "", "album_id": "72157594187865594", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/181634007_20e3c5bdf3_o.jpg", "secret": "20e3c5bdf3", "media": "photo", "latitude": "0", "id": "181634007", "tags": "bench ma raw flag massachusetts newengland american icecream americana mass tyngsborough tyngsboro sullivanfarms"}, {"datetaken": "2006-07-04 20:12:29", "license": "3", "title": "Warming Up", "text": "", "album_id": "72157594187865594", "longitude": "-71.472474", "url_o": "https://farm1.staticflickr.com/65/182223644_39474069cf_o.jpg", "secret": "39474069cf", "media": "photo", "latitude": "42.767611", "id": "182223644", "tags": "raw performance band newhampshire nh fourthofjuly independenceday brass nashua spartans drumandbuglecorps holmanstadium"}, {"datetaken": "2008-02-15 11:58:18", "license": "1", "title": "Year 2~Day 75 +046/366: Judy, The Teacher, Vermont Teddy Bear", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2287/2267302796_c53b367aa5_o.jpg", "secret": "bac513e794", "media": "photo", "latitude": "0", "id": "2267302796", "tags": "bear valentine 365days"}, {"datetaken": "2008-02-15 12:35:19", "license": "1", "title": "Lesly Holds the Bear", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2067/2266588183_ee5d3d5bae_o.jpg", "secret": "f9cf77d9dc", "media": "photo", "latitude": "0", "id": "2266588183", "tags": ""}, {"datetaken": "2008-02-15 12:40:07", "license": "1", "title": "The Bear Helps Lesly with Her Reading Test", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2203/2266590287_b6990657fe_o.jpg", "secret": "79454ae610", "media": "photo", "latitude": "0", "id": "2266590287", "tags": ""}, {"datetaken": "2008-02-15 12:50:05", "license": "1", "title": "The Bear Helps Johnna Read", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2180/2267388900_4e4878de4a_o.jpg", "secret": "2b86fb8934", "media": "photo", "latitude": "0", "id": "2267388900", "tags": ""}, {"datetaken": "2008-02-15 13:08:21", "license": "1", "title": "The Bear Covered with Girls' Jackets", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2419/2267424502_fdbb348639_o.jpg", "secret": "e2409bd5e1", "media": "photo", "latitude": "0", "id": "2267424502", "tags": ""}, {"datetaken": "2008-02-15 13:08:46", "license": "1", "title": "The Bear Takes a Nap During Lunch", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2127/2267424974_d41c06ee49_o.jpg", "secret": "29ff0e23ef", "media": "photo", "latitude": "0", "id": "2267424974", "tags": ""}, {"datetaken": "2008-02-15 14:00:04", "license": "1", "title": "Kiersten is Helped by The Bear with Math Problems", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2274/2266932199_def371a964_o.jpg", "secret": "922ebf0f92", "media": "photo", "latitude": "0", "id": "2266932199", "tags": ""}, {"datetaken": "2008-02-15 14:44:48", "license": "1", "title": "The Bear Helps Greta with Math", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2361/2266932527_1a9a2ee9de_o.jpg", "secret": "e8f9c99392", "media": "photo", "latitude": "0", "id": "2266932527", "tags": ""}, {"datetaken": "2008-02-15 15:02:38", "license": "1", "title": "The Bear Helps Amber with Math", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2169/2266933019_72047c3b06_o.jpg", "secret": "38f50f76ce", "media": "photo", "latitude": "0", "id": "2266933019", "tags": ""}, {"datetaken": "2008-02-15 15:13:38", "license": "1", "title": "Gabe with Clifford, The Big Red Dog", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2193/2267827254_041062d1ea_o.jpg", "secret": "84fe8fd795", "media": "photo", "latitude": "0", "id": "2267827254", "tags": ""}, {"datetaken": "2008-02-15 15:14:20", "license": "1", "title": "Austin and Bhavik with Arthur and His Dog", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2344/2267827564_c436d789ea_o.jpg", "secret": "f94eee1c7d", "media": "photo", "latitude": "0", "id": "2267827564", "tags": ""}, {"datetaken": "2008-02-15 15:16:29", "license": "1", "title": "Dakota with Brownie", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2331/2267827932_cca0d9b87d_o.jpg", "secret": "3654982f3b", "media": "photo", "latitude": "0", "id": "2267827932", "tags": ""}, {"datetaken": "2008-02-15 15:17:26", "license": "1", "title": "Katalyn and the Pink Bear", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2175/2267039519_bcecab7c54_o.jpg", "secret": "c5812b5130", "media": "photo", "latitude": "0", "id": "2267039519", "tags": ""}, {"datetaken": "2008-02-15 15:18:08", "license": "1", "title": "Kiersten with the Lady Bug", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2210/2267828878_485e12fc2f_o.jpg", "secret": "14dac3f13e", "media": "photo", "latitude": "0", "id": "2267828878", "tags": ""}, {"datetaken": "2008-02-15 15:18:57", "license": "1", "title": "Greta and Her Pink Kangaroo", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2049/2267829242_bfe0d660b7_o.jpg", "secret": "ffdf14d8ec", "media": "photo", "latitude": "0", "id": "2267829242", "tags": ""}, {"datetaken": "2008-02-15 15:21:22", "license": "1", "title": "Gabe and The Camel from Prince of Egypt", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2192/2267829652_8830d914ef_o.jpg", "secret": "63e1ac0b9e", "media": "photo", "latitude": "0", "id": "2267829652", "tags": ""}, {"datetaken": "2008-02-15 15:22:36", "license": "1", "title": "Brandon with His Magnetic Bear", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2247/2267041273_c69b72102f_o.jpg", "secret": "4d35a651d5", "media": "photo", "latitude": "0", "id": "2267041273", "tags": ""}, {"datetaken": "2008-02-15 15:23:05", "license": "1", "title": "Johnna and the Pink Bear", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2248/2267041657_708f6d535b_o.jpg", "secret": "3c7f6c1102", "media": "photo", "latitude": "0", "id": "2267041657", "tags": ""}, {"datetaken": "2008-02-15 15:26:28", "license": "1", "title": "Peyton with Arthur's Dog Sporting a Hunting Cap", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2012/2267042033_38607a4668_o.jpg", "secret": "b7b69ce0a4", "media": "photo", "latitude": "0", "id": "2267042033", "tags": ""}, {"datetaken": "2008-02-15 15:35:23", "license": "1", "title": "KeShaude and a Valentine's Bear", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2399/2267831238_6c89b642ec_o.jpg", "secret": "1cbd090315", "media": "photo", "latitude": "0", "id": "2267831238", "tags": ""}, {"datetaken": "2008-02-15 15:36:07", "license": "1", "title": "The Bear is Friendly to Amanda", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2059/2266933429_5a8ab34419_o.jpg", "secret": "21b07a78af", "media": "photo", "latitude": "0", "id": "2266933429", "tags": ""}, {"datetaken": "2008-02-16 15:13:29", "license": "1", "title": "Year 2~Day 76 +047/366: Judy and Judy Go To Beauty Shop", "text": "", "album_id": "72157603916697455", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2132/2269831628_e13e480491_o.jpg", "secret": "d9ea3de35b", "media": "photo", "latitude": "0", "id": "2269831628", "tags": "selfportrait reflection me beautyshop 365days vermontteddybear 366of2008 mirriorimage"}, {"datetaken": "2008-03-08 15:49:05", "license": "3", "title": "Protest against Israel", "text": "", "album_id": "72157604082858691", "longitude": "2.349379", "url_o": "https://farm3.staticflickr.com/2271/2322128946_c3f17fe48d_o.jpg", "secret": "d9caab5a4d", "media": "photo", "latitude": "48.883922", "id": "2322128946", "tags": "paris france israel war palestine protest photojournalism demonstration event canon5d 247028l journalism guerilla journalisme"}, {"datetaken": "2008-03-08 15:54:22", "license": "3", "title": "Protest against Israel", "text": "", "album_id": "72157604082858691", "longitude": "2.349379", "url_o": "https://farm4.staticflickr.com/3289/2323738054_57abf73576_o.jpg", "secret": "35a097e79d", "media": "photo", "latitude": "48.883922", "id": "2323738054", "tags": "paris france israel war palestine protest photojournalism demonstration event canon5d 247028l journalism guerilla journalisme"}, {"datetaken": "2008-03-08 15:57:03", "license": "3", "title": "Protest against Israel", "text": "", "album_id": "72157604082858691", "longitude": "2.349379", "url_o": "https://farm4.staticflickr.com/3002/2325209008_bd0de73d42_o.jpg", "secret": "7148a288e9", "media": "photo", "latitude": "48.883922", "id": "2325209008", "tags": "paris france israel war palestine protest photojournalism demonstration event canon5d 247028l journalism guerilla journalisme"}, {"datetaken": "2008-03-08 15:59:29", "license": "3", "title": "Under the Palestinian flag", "text": "", "album_id": "72157604082858691", "longitude": "2.349379", "url_o": "https://farm4.staticflickr.com/3095/2324389429_77233afd86_o.jpg", "secret": "56c8bbab70", "media": "photo", "latitude": "48.883922", "id": "2324389429", "tags": "paris france israel war palestine protest photojournalism demonstration event canon5d 247028l journalism guerilla journalisme"}, {"datetaken": "2008-03-08 15:59:58", "license": "3", "title": "Protest against Israel", "text": "", "album_id": "72157604082858691", "longitude": "2.349379", "url_o": "https://farm3.staticflickr.com/2187/2322128518_414ca030f5_o.jpg", "secret": "1538b2fa7c", "media": "photo", "latitude": "48.883922", "id": "2322128518", "tags": "paris france israel war palestine protest photojournalism demonstration event canon5d 247028l journalism hezbollah guerilla journalisme"}, {"datetaken": "2008-03-08 16:12:19", "license": "3", "title": "Protest against Israel", "text": "", "album_id": "72157604082858691", "longitude": "2.349379", "url_o": "https://farm3.staticflickr.com/2090/2322920449_c946a838d5_o.jpg", "secret": "0be7e2b363", "media": "photo", "latitude": "48.883922", "id": "2322920449", "tags": "paris france israel war palestine protest photojournalism demonstration event canon5d 247028l journalism hezbollah guerilla journalisme"}, {"datetaken": "2008-03-08 16:23:35", "license": "3", "title": "Protest against Israel", "text": "", "album_id": "72157604082858691", "longitude": "2.349379", "url_o": "https://farm4.staticflickr.com/3177/2328718118_5d7d02ce07_o.jpg", "secret": "8c7b5588b2", "media": "photo", "latitude": "48.883922", "id": "2328718118", "tags": "paris france israel war palestine protest photojournalism demonstration event canon5d 247028l journalism guerilla journalisme"}, {"datetaken": "2008-03-08 16:28:20", "license": "3", "title": "Protest against Israel", "text": "", "album_id": "72157604082858691", "longitude": "2.349379", "url_o": "https://farm4.staticflickr.com/3041/2327900163_8ea686f2c4_o.jpg", "secret": "e9f2f45249", "media": "photo", "latitude": "48.883922", "id": "2327900163", "tags": "paris france israel war palestine protest photojournalism demonstration event canon5d 247028l journalism guerilla journalisme"}, {"datetaken": "2008-03-08 16:41:08", "license": "3", "title": "Protest against Israel", "text": "", "album_id": "72157604082858691", "longitude": "2.349379", "url_o": "https://farm4.staticflickr.com/3014/2323738278_fcb7d73054_o.jpg", "secret": "d436cc4bab", "media": "photo", "latitude": "48.883922", "id": "2323738278", "tags": "paris france israel war palestine protest photojournalism demonstration event canon5d 247028l journalism guerilla journalisme"}, {"datetaken": "2008-03-08 16:41:29", "license": "3", "title": "Protest against Israel", "text": "", "album_id": "72157604082858691", "longitude": "2.349379", "url_o": "https://farm3.staticflickr.com/2237/2322920671_d872f31de7_o.jpg", "secret": "e5cea760a8", "media": "photo", "latitude": "48.883922", "id": "2322920671", "tags": "paris france israel war palestine protest hijab photojournalism demonstration event canon5d 247028l journalism guerilla journalisme"}, {"datetaken": "2008-03-08 16:49:56", "license": "3", "title": "Protest against Israel", "text": "", "album_id": "72157604082858691", "longitude": "2.349379", "url_o": "https://farm4.staticflickr.com/3010/2325624823_8b1b111d5f_o.jpg", "secret": "39b63e889c", "media": "photo", "latitude": "48.883922", "id": "2325624823", "tags": "paris france israel war palestine protest hijab photojournalism demonstration event canon5d 247028l journalism guerilla journalisme"}, {"datetaken": "2008-03-08 16:50:18", "license": "3", "title": "Protest against Israel", "text": "", "album_id": "72157604082858691", "longitude": "2.349379", "url_o": "https://farm4.staticflickr.com/3185/2325624985_26f071bb6b_o.jpg", "secret": "69f7b06725", "media": "photo", "latitude": "48.883922", "id": "2325624985", "tags": "paris france israel war palestine protest hijab photojournalism demonstration event canon5d 247028l journalism guerilla journalisme"}, {"datetaken": "2008-03-08 16:51:39", "license": "3", "title": "Protest against Israel", "text": "", "album_id": "72157604082858691", "longitude": "2.349379", "url_o": "https://farm3.staticflickr.com/2298/2322127968_540d5cd154_o.jpg", "secret": "9cd9234233", "media": "photo", "latitude": "48.883922", "id": "2322127968", "tags": "paris france israel war palestine protest photojournalism demonstration event canon5d 247028l journalism guerilla journalisme"}, {"datetaken": "2008-03-08 16:52:08", "license": "3", "title": "Protest against Israel", "text": "", "album_id": "72157604082858691", "longitude": "2.349379", "url_o": "https://farm3.staticflickr.com/2219/2325625161_f5a1b1aebe_o.jpg", "secret": "147e4ae12d", "media": "photo", "latitude": "48.883922", "id": "2325625161", "tags": "paris france israel war palestine protest hijab photojournalism demonstration event canon5d 247028l journalism hezbollah guerilla journalisme"}, {"datetaken": "2008-03-08 16:56:08", "license": "3", "title": "Protest against Israel", "text": "", "album_id": "72157604082858691", "longitude": "2.349379", "url_o": "https://farm3.staticflickr.com/2232/2322919747_1bdefe990d_o.jpg", "secret": "1d17faecdb", "media": "photo", "latitude": "48.883922", "id": "2322919747", "tags": "paris france israel war palestine protest photojournalism demonstration event canon5d 247028l journalism guerilla journalisme"}, {"datetaken": "2008-05-03 12:31:18", "license": "3", "title": "", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2299/2462295167_f51d3a000f_o.jpg", "secret": "9f5b342688", "media": "photo", "latitude": "0", "id": "2462295167", "tags": "atlanta friends color availablelight photographyclass laughter homework uncropped storytelling unedited badjokes frozenwithsalt showcaseschool nomascantina peopleone manualshooting rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 12:34:53", "license": "3", "title": "Skin.", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2387/2462292515_b3ea3632c3_o.jpg", "secret": "206b7d4be0", "media": "photo", "latitude": "0", "id": "2462292515", "tags": "atlanta friends color availablelight photographyclass laughter homework uncropped storytelling unedited badjokes frozenwithsalt showcaseschool nomascantina peopleone manualshooting rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 12:35:29", "license": "3", "title": "Ritas", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2162/2462290407_a59b10b86e_o.jpg", "secret": "935eda3fda", "media": "photo", "latitude": "0", "id": "2462290407", "tags": "atlanta friends color availablelight photographyclass laughter homework uncropped storytelling unedited badjokes frozenwithsalt showcaseschool nomascantina peopleone manualshooting rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 13:57:49", "license": "3", "title": "", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3211/2463122162_ebe781aaa4_o.jpg", "secret": "63e79af0ec", "media": "photo", "latitude": "0", "id": "2463122162", "tags": "atlanta friends color availablelight photographyclass laughter homework uncropped storytelling unedited badjokes frozenwithsalt showcaseschool nomascantina kayron peopleone manualshooting rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 13:58:34", "license": "3", "title": "", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3202/2462286135_a9960bd321_o.jpg", "secret": "f3e852008c", "media": "photo", "latitude": "0", "id": "2462286135", "tags": "atlanta friends color availablelight photographyclass laughter homework uncropped storytelling unedited badjokes frozenwithsalt showcaseschool nomascantina kayron peopleone manualshooting rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 14:06:24", "license": "3", "title": "", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2328/2463117466_2b5a5502d9_o.jpg", "secret": "2cb38f6b0f", "media": "photo", "latitude": "0", "id": "2463117466", "tags": "atlanta friends color availablelight photographyclass laughter homework uncropped storytelling unedited cindylou badjokes frozenwithsalt showcaseschool nomascantina peopleone manualshooting rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 14:08:13", "license": "3", "title": "", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3210/2463115734_bb6c7f734f_o.jpg", "secret": "6fc714bfdb", "media": "photo", "latitude": "0", "id": "2463115734", "tags": "atlanta friends color availablelight photographyclass laughter homework uncropped storytelling unedited cindylou badjokes frozenwithsalt showcaseschool nomascantina peopleone manualshooting rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 14:11:05", "license": "3", "title": "", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2100/2462264277_3403ab455a_o.jpg", "secret": "e109f34191", "media": "photo", "latitude": "0", "id": "2462264277", "tags": "atlanta friends color availablelight photographyclass laughter homework uncropped storytelling unedited cindylou badjokes frozenwithsalt showcaseschool nomascantina peopleone manualshooting shotsofthenaughtytsospecialtheycomewithabracelet rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 14:15:56", "license": "3", "title": "", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3155/2463113934_5472bf115c_o.jpg", "secret": "df15ddee40", "media": "photo", "latitude": "0", "id": "2463113934", "tags": "atlanta friends color availablelight photographyclass laughter homework uncropped storytelling unedited gwennie badjokes frozenwithsalt showcaseschool nomascantina peopleone manualshooting rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 14:16:37", "license": "3", "title": "", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3184/2462272565_c613c1999d_o.jpg", "secret": "f3476b434a", "media": "photo", "latitude": "0", "id": "2462272565", "tags": "atlanta friends color availablelight photographyclass laughter homework uncropped storytelling unedited gwennie badjokes frozenwithsalt showcaseschool nomascantina peopleone manualshooting rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 14:16:41", "license": "3", "title": "", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3229/2463108694_76083b8199_o.jpg", "secret": "895161d01e", "media": "photo", "latitude": "0", "id": "2463108694", "tags": "atlanta friends color availablelight photographyclass laughter homework uncropped storytelling unedited gwennie badjokes frozenwithsalt showcaseschool nomascantina peopleone manualshooting rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 14:16:54", "license": "3", "title": "", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3269/2463111338_c49689979d_o.jpg", "secret": "100a99396d", "media": "photo", "latitude": "0", "id": "2463111338", "tags": "atlanta friends color availablelight photographyclass laughter homework uncropped storytelling unedited gwennie badjokes frozenwithsalt showcaseschool nomascantina peopleone manualshooting rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 14:17:56", "license": "3", "title": "", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2221/2463102504_f68507dd74_o.jpg", "secret": "603ac06620", "media": "photo", "latitude": "0", "id": "2463102504", "tags": "atlanta friends color availablelight photographyclass laughter homework uncropped storytelling unedited gwennie badjokes frozenwithsalt showcaseschool nomascantina peopleone manualshooting rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 14:18:10", "license": "3", "title": "", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2042/2462270321_bf24e056d3_o.jpg", "secret": "48d0c6ddab", "media": "photo", "latitude": "0", "id": "2462270321", "tags": "atlanta friends color availablelight photographyclass laughter homework uncropped storytelling unedited gwennie badjokes frozenwithsalt showcaseschool nomascantina peopleone manualshooting rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 14:18:31", "license": "3", "title": "", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2353/2463100404_6a673d79b3_o.jpg", "secret": "f4a203c38a", "media": "photo", "latitude": "0", "id": "2463100404", "tags": "atlanta friends color dof availablelight photographyclass laughter homework uncropped storytelling unedited gwennie badjokes beautifulsmile contrastingcolors frozenwithsalt showcaseschool nomascantina peopleone manualshooting rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 14:46:10", "license": "3", "title": "", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3105/2463096102_dbbf31703e_o.jpg", "secret": "755a57b64d", "media": "photo", "latitude": "0", "id": "2463096102", "tags": "atlanta friends color candles availablelight photographyclass laughter homework uncropped storytelling unedited badjokes frozenwithsalt showcaseschool nomascantina peopleone manualshooting rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 14:47:59", "license": "3", "title": "", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2227/2462259529_406174d876_o.jpg", "secret": "b641933840", "media": "photo", "latitude": "0", "id": "2462259529", "tags": "atlanta friends color availablelight photographyclass laughter homework uncropped storytelling unedited badjokes frozenwithsalt showcaseschool nomascantina peopleone manualshooting rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 14:48:51", "license": "3", "title": "", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2214/2463090994_e5b6ffa036_o.jpg", "secret": "b4b8f5192f", "media": "photo", "latitude": "0", "id": "2463090994", "tags": "atlanta friends color availablelight photographyclass laughter homework uncropped storytelling unedited touchmymonkey badjokes frozenwithsalt showcaseschool nomascantina peopleone manualshooting toocoolforschoolplushesamonkey rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-05-03 14:52:48", "license": "3", "title": "", "text": "", "album_id": "72157604869582203", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3157/2462256377_9f363c56bf_o.jpg", "secret": "26e3dc102f", "media": "photo", "latitude": "0", "id": "2462256377", "tags": "atlanta friends color availablelight photographyclass laughter homework uncropped storytelling unedited badjokes frozenwithsalt showcaseschool nomascantina peopleone manualshooting veryexpensivelanternlight rainydaysandmargaritas myfriendsaregreatsports"}, {"datetaken": "2008-07-28 09:01:13", "license": "1", "title": "Year 2~Day 239 +210/366: The Liquid Diet Day", "text": "", "album_id": "72157606437775436", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3148/2710730474_3816546a8e_o.jpg", "secret": "4e67958b3b", "media": "photo", "latitude": "0", "id": "2710730474", "tags": "usa selfportrait me georgia ofme athome hahira 365days preparationformedicaltest"}, {"datetaken": "2008-07-29 07:33:09", "license": "1", "title": "7:33 AM - Wires Are Connected to Me for the Colonoscopy", "text": "", "album_id": "72157606437775436", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3277/2712909465_0be08f9828_o.jpg", "secret": "bc9d2776a8", "media": "photo", "latitude": "0", "id": "2712909465", "tags": "byemail wireless colonoscopy photobyjim"}, {"datetaken": "2008-07-29 07:34:03", "license": "1", "title": "7:34 AM - Monitor to Check All My Vitals During the Colonoscopy", "text": "", "album_id": "72157606437775436", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3160/2712910707_f09fcfe214_o.jpg", "secret": "443351a5b8", "media": "photo", "latitude": "0", "id": "2712910707", "tags": "byemail wireless colonoscopy photobyjim"}, {"datetaken": "2008-07-29 07:48:21", "license": "1", "title": "7:48 AM - Waiting 1-1/2 Hours for the Colonoscopy", "text": "", "album_id": "72157606437775436", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3050/2712931445_ba5b3dc82a_o.jpg", "secret": "c15b7f7626", "media": "photo", "latitude": "0", "id": "2712931445", "tags": "byemail wireless colonoscopy photobyjim"}, {"datetaken": "2008-07-29 09:53:06", "license": "1", "title": "9:53 AM - After the Colonoscopy - Stomachache from Air Pumped into Colon", "text": "", "album_id": "72157606437775436", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3246/2713971964_ebd71d8212_o.jpg", "secret": "de5bb525e3", "media": "photo", "latitude": "0", "id": "2713971964", "tags": "byemail wireless colonoscopy photobyjim"}, {"datetaken": "2008-07-29 10:01:04", "license": "1", "title": "10:01 AM - Lovely Bracelet for ID During Colonoscopy", "text": "", "album_id": "72157606437775436", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3029/2713991220_12f3d16a95_o.jpg", "secret": "0f71632405", "media": "photo", "latitude": "0", "id": "2713991220", "tags": "byemail wireless colonoscopy photobyjim"}, {"datetaken": "2008-07-29 10:11:36", "license": "1", "title": "Year 2~Day 240 +211/366: 10:11 AM - Photos of My Colon and Diverticulosis", "text": "", "album_id": "72157606437775436", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3167/2714016900_ff74a220f3_o.jpg", "secret": "fa161c867c", "media": "photo", "latitude": "0", "id": "2714016900", "tags": "me hospital byemail wireless outpatient precaution colonoscopy medicalprocedure photobyjim 365days"}, {"datetaken": "2008-07-29 11:13:23", "license": "1", "title": "11:13 AM - Lunch at Valdosta Country Club - Haven't Eaten in 2 Days", "text": "", "album_id": "72157606437775436", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3057/2713347363_780d38f1be_o.jpg", "secret": "9712cbf652", "media": "photo", "latitude": "0", "id": "2713347363", "tags": "lunch byemail wireless vcc colonoscopy photobyjim"}, {"datetaken": "2008-07-29 15:30:37", "license": "1", "title": "My Teacher Desk is Ready", "text": "", "album_id": "72157606437775436", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3026/2714829954_92536a6a66_o.jpg", "secret": "2cc9dc4f7e", "media": "photo", "latitude": "0", "id": "2714829954", "tags": "school me byemail classroom teacher wireless bes photobyjim"}, {"datetaken": "2008-07-29 18:03:55", "license": "1", "title": "Caught in Mid-Blink in Chili's at the End of the Day of the Colonoscopy", "text": "", "album_id": "72157606437775436", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3005/2715246892_46ca9f8830_o.jpg", "secret": "369fcc8f5d", "media": "photo", "latitude": "0", "id": "2715246892", "tags": "food me restaurant byemail wireless fajita chilis photobyjim"}, {"datetaken": "2008-09-16 08:52:43", "license": "3", "title": "IMGP9458", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2200/2869052531_44774a58d6_o.jpg", "secret": "cfe1db8a41", "media": "photo", "latitude": "0", "id": "2869052531", "tags": "preschool firstdayofschool abigael"}, {"datetaken": "2008-09-16 08:53:06", "license": "3", "title": "IMGP9459", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3120/2869053041_a0bbf730fe_o.jpg", "secret": "b447856bfb", "media": "photo", "latitude": "0", "id": "2869053041", "tags": "preschool firstdayofschool abigael"}, {"datetaken": "2008-09-16 08:58:40", "license": "3", "title": "IMGP9460", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2345/2869880850_c0f1f1efec_o.jpg", "secret": "9d8f15e685", "media": "photo", "latitude": "0", "id": "2869880850", "tags": "preschool firstdayofschool abigael"}, {"datetaken": "2008-09-16 08:58:43", "license": "3", "title": "IMGP9461", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3125/2869053327_d98ff0a1da_o.jpg", "secret": "0389a12d6c", "media": "photo", "latitude": "0", "id": "2869053327", "tags": "preschool firstdayofschool abigael"}, {"datetaken": "2008-09-16 08:58:44", "license": "3", "title": "IMGP9462", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3018/2869054003_3a8631f94b_o.jpg", "secret": "c952a2b5fc", "media": "photo", "latitude": "0", "id": "2869054003", "tags": "preschool firstdayofschool abigael"}, {"datetaken": "2008-09-16 08:59:04", "license": "3", "title": "IMGP9463", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3095/2869882352_ff20c21874_o.jpg", "secret": "92b177c957", "media": "photo", "latitude": "0", "id": "2869882352", "tags": "preschool firstdayofschool abigael"}, {"datetaken": "2008-09-16 08:59:06", "license": "3", "title": "IMGP9464", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3163/2869055497_2826b348fc_o.jpg", "secret": "9c44cf4406", "media": "photo", "latitude": "0", "id": "2869055497", "tags": "preschool firstdayofschool abigael"}, {"datetaken": "2008-09-16 08:59:08", "license": "3", "title": "IMGP9465", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3147/2869883706_9e078befbc_o.jpg", "secret": "a7926e8bee", "media": "photo", "latitude": "0", "id": "2869883706", "tags": "preschool firstdayofschool abigael"}, {"datetaken": "2008-09-16 08:59:10", "license": "3", "title": "IMGP9466", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3004/2869056727_6d5c3b6630_o.jpg", "secret": "b9211704f0", "media": "photo", "latitude": "0", "id": "2869056727", "tags": "preschool firstdayofschool abigael"}, {"datetaken": "2008-09-16 08:59:17", "license": "3", "title": "IMGP9467", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3012/2869057329_ba7605432b_o.jpg", "secret": "8184f5ea26", "media": "photo", "latitude": "0", "id": "2869057329", "tags": "preschool firstdayofschool abigael"}, {"datetaken": "2008-09-16 08:59:21", "license": "3", "title": "IMGP9468", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3019/2869071775_f8061d5405_o.jpg", "secret": "51debfaeae", "media": "photo", "latitude": "0", "id": "2869071775", "tags": ""}, {"datetaken": "2008-09-16 08:59:23", "license": "3", "title": "IMGP9469", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3077/2869072483_609e50db40_o.jpg", "secret": "77279f56d5", "media": "photo", "latitude": "0", "id": "2869072483", "tags": ""}, {"datetaken": "2008-09-16 09:00:49", "license": "3", "title": "IMGP9470", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3212/2869900866_f86387498b_o.jpg", "secret": "42da18d338", "media": "photo", "latitude": "0", "id": "2869900866", "tags": ""}, {"datetaken": "2008-09-16 09:00:55", "license": "3", "title": "IMGP9471", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3071/2869074061_6eb65b7761_o.jpg", "secret": "c3ab5648c5", "media": "photo", "latitude": "0", "id": "2869074061", "tags": ""}, {"datetaken": "2008-09-16 09:00:57", "license": "3", "title": "IMGP9472", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3010/2869074773_0395fe1d27_o.jpg", "secret": "5dab7a626b", "media": "photo", "latitude": "0", "id": "2869074773", "tags": ""}, {"datetaken": "2008-09-16 09:00:59", "license": "3", "title": "IMGP9473", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3208/2869903104_757866ec4c_o.jpg", "secret": "d7b5bbcb7b", "media": "photo", "latitude": "0", "id": "2869903104", "tags": ""}, {"datetaken": "2008-09-16 09:03:27", "license": "3", "title": "IMGP9474", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3223/2869903614_9ac4577d16_o.jpg", "secret": "57b9319209", "media": "photo", "latitude": "0", "id": "2869903614", "tags": ""}, {"datetaken": "2008-09-16 09:03:28", "license": "3", "title": "IMGP9475", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3043/2869904186_5f9f89d7e1_o.jpg", "secret": "cd06ece0e4", "media": "photo", "latitude": "0", "id": "2869904186", "tags": ""}, {"datetaken": "2008-09-16 09:03:29", "license": "3", "title": "IMGP9476", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3013/2869077083_a80a839903_o.jpg", "secret": "1dfa92f116", "media": "photo", "latitude": "0", "id": "2869077083", "tags": ""}, {"datetaken": "2008-09-16 09:24:51", "license": "3", "title": "IMGP9477", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3006/2869077877_b13072e730_o.jpg", "secret": "1268e26e4f", "media": "photo", "latitude": "0", "id": "2869077877", "tags": ""}, {"datetaken": "2008-09-16 09:24:54", "license": "3", "title": "\"I'm good. Bye Mom and Dad!", "text": "", "album_id": "72157607397957916", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3240/2869906714_3a24009f15_o.jpg", "secret": "d5d56deb44", "media": "photo", "latitude": "0", "id": "2869906714", "tags": ""}, {"datetaken": "2011-01-14 11:02:14", "license": "5", "title": "2011-01-14 F.I.R.S.T. Robotics room, early days IMG_1197", "text": "", "album_id": "72157625881901406", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5162/5378634968_e5318df36c_o.jpg", "secret": "c6e880c0d4", "media": "photo", "latitude": "0", "id": "5378634968", "tags": "usa building minnesota design construction planning morris firstrobotics mahs robotroom morrisareahighschool plaidpillagers team2538"}, {"datetaken": "2011-01-14 11:02:19", "license": "5", "title": "2011-01-14 F.I.R.S.T. Robotics room, early days IMG_1198", "text": "", "album_id": "72157625881901406", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5170/5378038561_1bf29a3e00_o.jpg", "secret": "cf59ba9448", "media": "photo", "latitude": "0", "id": "5378038561", "tags": "usa building minnesota design construction planning morris firstrobotics mahs robotroom morrisareahighschool plaidpillagers team2538"}, {"datetaken": "2011-01-14 11:02:34", "license": "5", "title": "2011-01-14 F.I.R.S.T. Robotics room, early days IMG_1200", "text": "", "album_id": "72157625881901406", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5086/5378040021_35d388c12f_o.jpg", "secret": "e54162ab14", "media": "photo", "latitude": "0", "id": "5378040021", "tags": "usa building minnesota design construction planning morris firstrobotics mahs robotroom morrisareahighschool plaidpillagers team2538"}, {"datetaken": "2011-01-14 11:02:55", "license": "5", "title": "2011-01-14 F.I.R.S.T. Robotics room, early days IMG_1201", "text": "", "album_id": "72157625881901406", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5284/5378641968_ec829c84c7_o.jpg", "secret": "75a54126cd", "media": "photo", "latitude": "0", "id": "5378641968", "tags": "usa building minnesota design construction planning morris firstrobotics mahs robotroom morrisareahighschool plaidpillagers team2538"}, {"datetaken": "2011-01-14 11:03:06", "license": "5", "title": "2011-01-14 F.I.R.S.T. Robotics room, early days IMG_1202", "text": "", "album_id": "72157625881901406", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5046/5378644258_0099a43f29_o.jpg", "secret": "8d51826bd5", "media": "photo", "latitude": "0", "id": "5378644258", "tags": "usa building minnesota design construction planning morris firstrobotics mahs robotroom morrisareahighschool plaidpillagers team2538"}, {"datetaken": "2011-01-14 11:03:16", "license": "5", "title": "2011-01-14 F.I.R.S.T. Robotics room, early days IMG_1203", "text": "", "album_id": "72157625881901406", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5002/5378055167_ba19c6ff5b_o.jpg", "secret": "c2ccd47f2b", "media": "photo", "latitude": "0", "id": "5378055167", "tags": "usa building minnesota design construction planning morris firstrobotics mahs robotroom morrisareahighschool plaidpillagers team2538"}, {"datetaken": "2011-01-14 11:03:22", "license": "5", "title": "2011-01-14 F.I.R.S.T. Robotics room, early days IMG_1204", "text": "", "album_id": "72157625881901406", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5121/5378656034_c3cb7f4acb_o.jpg", "secret": "52a244b77d", "media": "photo", "latitude": "0", "id": "5378656034", "tags": "usa building minnesota design construction planning morris firstrobotics mahs robotroom morrisareahighschool plaidpillagers team2538"}, {"datetaken": "2011-01-14 11:07:17", "license": "5", "title": "2011-01-14 F.I.R.S.T. Robotics room, early days IMG_1205", "text": "", "album_id": "72157625881901406", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5008/5378057833_2a75217ae7_o.jpg", "secret": "0365993962", "media": "photo", "latitude": "0", "id": "5378057833", "tags": "usa building minnesota design construction planning morris firstrobotics mahs robotroom morrisareahighschool plaidpillagers team2538"}, {"datetaken": "2011-01-14 11:07:21", "license": "5", "title": "2011-01-14 F.I.R.S.T. Robotics room, early days IMG_1206", "text": "", "album_id": "72157625881901406", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5047/5378060145_a1750b8845_o.jpg", "secret": "7254b0ace2", "media": "photo", "latitude": "0", "id": "5378060145", "tags": "usa building minnesota design construction planning morris firstrobotics mahs robotroom morrisareahighschool plaidpillagers team2538"}, {"datetaken": "2011-01-14 11:07:41", "license": "5", "title": "2011-01-14 F.I.R.S.T. Robotics room, early days IMG_1207", "text": "", "album_id": "72157625881901406", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5202/5378060957_ec7f332dc9_o.jpg", "secret": "dfba4705c2", "media": "photo", "latitude": "0", "id": "5378060957", "tags": "usa building minnesota design construction planning morris firstrobotics mahs robotroom morrisareahighschool plaidpillagers team2538"}, {"datetaken": "2011-01-14 11:07:52", "license": "5", "title": "2011-01-14 F.I.R.S.T. Robotics room, early days IMG_1208", "text": "", "album_id": "72157625881901406", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5090/5378662572_7faf2ae392_o.jpg", "secret": "07822a4f94", "media": "photo", "latitude": "0", "id": "5378662572", "tags": "usa building minnesota design construction planning morris firstrobotics mahs robotroom morrisareahighschool plaidpillagers team2538"}, {"datetaken": "2011-01-14 11:08:13", "license": "5", "title": "2011-01-14 F.I.R.S.T. Robotics room, early days IMG_1209", "text": "", "album_id": "72157625881901406", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5089/5378663260_dafd34ed3a_o.jpg", "secret": "fdf5cba139", "media": "photo", "latitude": "0", "id": "5378663260", "tags": "usa building minnesota design construction planning morris firstrobotics mahs robotroom morrisareahighschool plaidpillagers team2538"}, {"datetaken": "2011-01-14 11:08:34", "license": "5", "title": "2011-01-14 F.I.R.S.T. Robotics room, early days IMG_1210", "text": "", "album_id": "72157625881901406", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5084/5378663780_5b35b5d223_o.jpg", "secret": "9372494f19", "media": "photo", "latitude": "0", "id": "5378663780", "tags": "usa building minnesota design construction planning morris firstrobotics mahs robotroom morrisareahighschool plaidpillagers team2538"}, {"datetaken": "2011-01-14 11:08:42", "license": "5", "title": "2011-01-14 F.I.R.S.T. Robotics room, early days IMG_1211", "text": "", "album_id": "72157625881901406", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5050/5378064135_6fb5aa59e6_o.jpg", "secret": "0682bf1cd6", "media": "photo", "latitude": "0", "id": "5378064135", "tags": "usa building minnesota design construction planning morris firstrobotics mahs robotroom morrisareahighschool plaidpillagers team2538"}, {"datetaken": "2011-04-26 05:42:15", "license": "1", "title": "La Pine Track Meet 2011", "text": "", "album_id": "72157626464008683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5183/5660430052_c9bd31bb96_o.jpg", "secret": "38f6a9c3d8", "media": "photo", "latitude": "0", "id": "5660430052", "tags": "track connor running meet relay ccms 400m 800m lapine 1500m crookcountymiddleschool"}, {"datetaken": "2011-04-26 05:45:16", "license": "1", "title": "La Pine Track Meet 2011", "text": "", "album_id": "72157626464008683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5224/5660430360_d16f346c45_o.jpg", "secret": "9836921cf1", "media": "photo", "latitude": "0", "id": "5660430360", "tags": "track connor running meet relay ccms 400m 800m lapine 1500m crookcountymiddleschool"}, {"datetaken": "2011-04-26 06:05:32", "license": "1", "title": "La Pine Track Meet 2011", "text": "", "album_id": "72157626464008683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5106/5660430174_98c2013ee1_o.jpg", "secret": "efea207824", "media": "photo", "latitude": "0", "id": "5660430174", "tags": "track connor running meet relay ccms 400m 800m lapine 1500m foraj crookcountymiddleschool"}, {"datetaken": "2011-04-26 06:10:07", "license": "1", "title": "La Pine Track Meet 2011", "text": "", "album_id": "72157626464008683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5263/5660430744_9993a8376f_o.jpg", "secret": "2fa9c5bf83", "media": "photo", "latitude": "0", "id": "5660430744", "tags": "samba track connor running adidas meet relay ccms 400m 800m lapine 1500m foraj orangeshoelaces crookcountymiddleschool"}, {"datetaken": "2011-04-26 06:10:16", "license": "1", "title": "La Pine Track Meet 2011", "text": "", "album_id": "72157626464008683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5029/5659861059_a5f795ae09_o.jpg", "secret": "355dd32a72", "media": "photo", "latitude": "0", "id": "5659861059", "tags": "samba track connor running adidas meet relay ccms 400m 800m lapine 1500m foraj orangeshoelaces 5cardnv crookcountymiddleschool"}, {"datetaken": "2011-04-26 06:29:45", "license": "1", "title": "La Pine Track Meet 2011", "text": "", "album_id": "72157626464008683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5269/5660430606_f4b4e0ecc2_o.jpg", "secret": "e2598056a9", "media": "photo", "latitude": "0", "id": "5660430606", "tags": "track connor running meet relay ccms 400m 800m lapine 1500m crookcountymiddleschool"}, {"datetaken": "2011-04-26 06:49:29", "license": "1", "title": "La Pine Track Meet 2011", "text": "", "album_id": "72157626464008683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5266/5660431442_3c083a6ce8_o.jpg", "secret": "d378c3a2a6", "media": "photo", "latitude": "0", "id": "5660431442", "tags": "track connor running meet relay ccms 400m 800m lapine 1500m crookcountymiddleschool"}, {"datetaken": "2011-04-26 06:54:47", "license": "1", "title": "La Pine Track Meet 2011", "text": "", "album_id": "72157626464008683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5304/5659861433_5ca9ab1828_o.jpg", "secret": "b0361e798a", "media": "photo", "latitude": "0", "id": "5659861433", "tags": "track connor running meet relay ccms 400m 800m lapine 1500m crookcountymiddleschool"}, {"datetaken": "2011-04-26 06:54:48", "license": "1", "title": "La Pine Track Meet 2011", "text": "", "album_id": "72157626464008683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5108/5659861673_a627aac1ea_o.jpg", "secret": "975f2b21bc", "media": "photo", "latitude": "0", "id": "5659861673", "tags": "track connor running meet relay ccms 400m 800m lapine 1500m crookcountymiddleschool"}, {"datetaken": "2011-04-26 06:54:48", "license": "1", "title": "La Pine Track Meet 2011", "text": "", "album_id": "72157626464008683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5227/5659861797_d41eed671e_o.jpg", "secret": "9b5b4e7a86", "media": "photo", "latitude": "0", "id": "5659861797", "tags": "track connor running meet relay ccms 400m 800m lapine 1500m crookcountymiddleschool"}, {"datetaken": "2011-04-26 07:08:24", "license": "1", "title": "La Pine Track Meet 2011", "text": "", "album_id": "72157626464008683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5182/5660431014_10ccaef5a1_o.jpg", "secret": "47b9d68340", "media": "photo", "latitude": "0", "id": "5660431014", "tags": "track connor running meet relay ccms 400m 800m lapine 1500m crookcountymiddleschool"}, {"datetaken": "2011-04-26 07:08:27", "license": "1", "title": "La Pine Track Meet 2011", "text": "", "album_id": "72157626464008683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5142/5659862103_0f6ca0b7b3_o.jpg", "secret": "2b04e4a08f", "media": "photo", "latitude": "0", "id": "5659862103", "tags": "track connor running meet relay ccms 400m 800m lapine 1500m crookcountymiddleschool"}, {"datetaken": "2011-04-26 07:08:27", "license": "1", "title": "La Pine Track Meet 2011", "text": "", "album_id": "72157626464008683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5101/5659862413_93cba1733c_o.jpg", "secret": "4ce99403d7", "media": "photo", "latitude": "0", "id": "5659862413", "tags": "track connor running meet relay ccms 400m 800m lapine 1500m crookcountymiddleschool"}, {"datetaken": "2011-04-26 07:14:54", "license": "1", "title": "La Pine Track Meet 2011", "text": "", "album_id": "72157626464008683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5308/5659862279_5febb03e04_o.jpg", "secret": "53dd015352", "media": "photo", "latitude": "0", "id": "5659862279", "tags": "track connor running meet relay ccms 400m 800m lapine 1500m crookcountymiddleschool"}, {"datetaken": "2011-04-27 14:51:53", "license": "6", "title": "Families Learn the Expenses and Responsibilities that Come with Children", "text": "", "album_id": "72157626507385367", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5069/5680439631_7456bf706c_o.jpg", "secret": "70e6d1912c", "media": "photo", "latitude": "0", "id": "5680439631", "tags": "poverty county school youth virginia budget simulation government fairfax income leadership county\u201d \u201cfairfax"}, {"datetaken": "2011-04-27 15:10:46", "license": "6", "title": "1 In 20 Fairfax County Residents is in Poverty. Get Ready for Poverty Simulation!", "text": "", "album_id": "72157626507385367", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5148/5680433681_14967c80d6_o.jpg", "secret": "b37d661572", "media": "photo", "latitude": "0", "id": "5680433681", "tags": "poverty county school youth virginia budget simulation government fairfax income leadership county\u201d \u201cfairfax"}, {"datetaken": "2011-04-27 15:13:39", "license": "6", "title": "Who Can Be in Poverty? Anyone, as Students Discover Their Roles", "text": "", "album_id": "72157626507385367", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5223/5680997288_40631a9688_o.jpg", "secret": "54d6df18ed", "media": "photo", "latitude": "0", "id": "5680997288", "tags": "poverty county school youth virginia budget simulation government fairfax income leadership county\u201d \u201cfairfax"}, {"datetaken": "2011-04-27 15:30:01", "license": "6", "title": "An Essential to Survival: Transportation", "text": "", "album_id": "72157626507385367", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5221/5680997912_fb62998a5e_o.jpg", "secret": "fc17c0a959", "media": "photo", "latitude": "0", "id": "5680997912", "tags": "poverty county school youth virginia budget simulation government fairfax income leadership county\u201d \u201cfairfax"}, {"datetaken": "2011-04-27 15:31:12", "license": "6", "title": "Starting Their First \"Week\" as a Family", "text": "", "album_id": "72157626507385367", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5066/5680435661_ff593494ae_o.jpg", "secret": "9b00109814", "media": "photo", "latitude": "0", "id": "5680435661", "tags": "poverty county school youth virginia budget simulation government fairfax income leadership county\u201d \u201cfairfax"}, {"datetaken": "2011-04-27 15:32:12", "license": "6", "title": "Living Paycheck to Paycheck", "text": "", "album_id": "72157626507385367", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5108/5681000596_b085aa56e3_o.jpg", "secret": "d24c4c1ba7", "media": "photo", "latitude": "0", "id": "5681000596", "tags": "poverty county school youth virginia budget simulation government fairfax income leadership paycheck county\u201d \u201cfairfax"}, {"datetaken": "2011-04-27 15:32:50", "license": "6", "title": "Deciding How to Pay the Bills", "text": "", "album_id": "72157626507385367", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5227/5680438413_15cf6fac67_o.jpg", "secret": "2f64b6d554", "media": "photo", "latitude": "0", "id": "5680438413", "tags": "poverty county school youth virginia bills budget simulation government fairfax income leadership county\u201d \u201cfairfax"}, {"datetaken": "2011-04-27 15:33:08", "license": "6", "title": "Issues One Might Encounter When Applying for A Job", "text": "", "album_id": "72157626507385367", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5182/5680436181_1bbefdf4f1_o.jpg", "secret": "740d2265f3", "media": "photo", "latitude": "0", "id": "5680436181", "tags": "poverty county school youth virginia budget simulation government fairfax income leadership county\u201d \u201cfairfax"}, {"datetaken": "2011-04-27 15:34:52", "license": "6", "title": "Know Where to Go for Assistance When You Hit the Wall", "text": "", "album_id": "72157626507385367", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5221/5680999520_744fa57bfd_o.jpg", "secret": "ff9755d223", "media": "photo", "latitude": "0", "id": "5680999520", "tags": "poverty county school youth virginia budget simulation government fairfax income leadership county\u201d \u201cfairfax"}, {"datetaken": "2011-04-27 15:35:34", "license": "6", "title": "Dilemna: Stay Home or Daycare?", "text": "", "album_id": "72157626507385367", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5187/5680440311_7aeb914b9f_o.jpg", "secret": "d363243e2b", "media": "photo", "latitude": "0", "id": "5680440311", "tags": "poverty county school youth virginia budget simulation government daycare fairfax income leadership county\u201d \u201cfairfax"}, {"datetaken": "2011-04-27 15:39:10", "license": "6", "title": "A lesson in Negotiation", "text": "", "album_id": "72157626507385367", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5103/5680439037_dc90b31b5f_o.jpg", "secret": "798e029d15", "media": "photo", "latitude": "0", "id": "5680439037", "tags": "poverty county school shop youth virginia budget simulation government fairfax income leadership pawn county\u201d \u201cfairfax"}, {"datetaken": "2011-04-27 15:40:34", "license": "6", "title": "Home Alone Child Questioned by Police", "text": "", "album_id": "72157626507385367", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5029/5681003712_7c0faeac36_o.jpg", "secret": "02069fafb4", "media": "photo", "latitude": "0", "id": "5681003712", "tags": "poverty county school youth virginia budget simulation government fairfax income leadership county\u201d \u201cfairfax"}, {"datetaken": "2011-04-27 15:40:54", "license": "6", "title": "Lesson of the Day: When Life Gives You Lemons\u2026", "text": "", "album_id": "72157626507385367", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5186/5680437239_d2b1663f97_o.jpg", "secret": "cc1c2fcd1b", "media": "photo", "latitude": "0", "id": "5680437239", "tags": "poverty county school youth virginia budget simulation government fairfax income leadership county\u201d \u201cfairfax"}, {"datetaken": "2011-08-22 05:52:36", "license": "3", "title": "As close to right as we're going to get", "text": "", "album_id": "72157627495555866", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6193/6070506389_0926cf8bdf_o.jpg", "secret": "e2b574f98a", "media": "photo", "latitude": "0", "id": "6070506389", "tags": "dad firstdayofschool backtoschool 3of3 1of3 2of3"}, {"datetaken": "2011-08-22 05:53:13", "license": "3", "title": "First Day of School 2011-2012", "text": "", "album_id": "72157627495555866", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6207/6071053248_239e2d751d_o.jpg", "secret": "c9fb443f35", "media": "photo", "latitude": "0", "id": "6071053248", "tags": "backtoschool 3of3 1of3 2of3"}, {"datetaken": "2011-08-22 05:53:16", "license": "3", "title": "All in a row", "text": "", "album_id": "72157627495555866", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6188/6070510529_1d7b483317_o.jpg", "secret": "2942cee931", "media": "photo", "latitude": "0", "id": "6070510529", "tags": "kindergarten firstdayofschool 3of3 juniorhigh 1of3 2of3"}, {"datetaken": "2011-08-22 05:54:29", "license": "3", "title": "Oh. My. God. Woman", "text": "", "album_id": "72157627495555866", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6197/6071056632_84f2435dcb_o.jpg", "secret": "5c1cb9ab3b", "media": "photo", "latitude": "0", "id": "6071056632", "tags": "middleschool disdain 1of3 2of3 sototallyoverit"}, {"datetaken": "2011-08-22 05:54:43", "license": "3", "title": "He's like, \"Oh my effing gawd, mom, I'm trying to go to MIDDLE SCHOOL HERE\" and I'm like, \"Kid, you have no idea how lucky you are that I'm not chasing after you with this camera and a lunchbox and a spitty thumb to clean your face.\"", "text": "", "album_id": "72157627495555866", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6182/6070514905_da8fbd1f7f_o.jpg", "secret": "1a974601b0", "media": "photo", "latitude": "0", "id": "6070514905", "tags": "firstdayofschool middleschool 1of3 2of3"}, {"datetaken": "2011-08-22 06:06:27", "license": "3", "title": "A Very Silly Daddy", "text": "", "album_id": "72157627495555866", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6088/6071062492_ee0b1295de_o.jpg", "secret": "550209ba9c", "media": "photo", "latitude": "0", "id": "6071062492", "tags": "dad firstdayofschool 3of3"}, {"datetaken": "2011-08-22 06:06:49", "license": "3", "title": "First Day Kisses", "text": "", "album_id": "72157627495555866", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6202/6070521495_f8a7003163_o.jpg", "secret": "56f4af4602", "media": "photo", "latitude": "0", "id": "6070521495", "tags": "kindergarten firstdayofschool 3of3"}, {"datetaken": "2011-08-22 06:07:54", "license": "3", "title": "Giggles", "text": "", "album_id": "72157627495555866", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6185/6071067970_01204315e1_o.jpg", "secret": "0b6d76921d", "media": "photo", "latitude": "0", "id": "6071067970", "tags": "kindergarten firstdayofschool 3of3"}, {"datetaken": "2011-08-22 06:24:32", "license": "3", "title": "Waiting", "text": "", "album_id": "72157627495555866", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6181/6070526561_339e05526b_o.jpg", "secret": "bc59f8cff5", "media": "photo", "latitude": "0", "id": "6070526561", "tags": "kindergarten firstdayofschool 3of3"}, {"datetaken": "2011-08-22 06:38:33", "license": "3", "title": "Less Than Threes", "text": "", "album_id": "72157627495555866", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6187/6071072026_784b345fa0_o.jpg", "secret": "bd6c366a6f", "media": "photo", "latitude": "0", "id": "6071072026", "tags": "3 firstdayofschool 3of3"}, {"datetaken": "2011-08-22 06:38:48", "license": "3", "title": "Less than threes", "text": "", "album_id": "72157627495555866", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6070/6071074198_dfe3db586a_o.jpg", "secret": "96fdeeca8c", "media": "photo", "latitude": "0", "id": "6071074198", "tags": "kindergarten firstdayofschool 3of3"}, {"datetaken": "2011-08-22 06:44:53", "license": "3", "title": "Walk-off!", "text": "", "album_id": "72157627495555866", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6209/6071077972_6cf1f5ce23_o.jpg", "secret": "02c3518619", "media": "photo", "latitude": "0", "id": "6071077972", "tags": "kindergarten firstdayofschool 3of3"}, {"datetaken": "2011-08-22 06:45:47", "license": "3", "title": "Waiting, Redux", "text": "", "album_id": "72157627495555866", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6193/6071082438_1cfb659be4_o.jpg", "secret": "b3208324dd", "media": "photo", "latitude": "0", "id": "6071082438", "tags": "busstop kindergarten firstdayofschool 3of3"}, {"datetaken": "2011-08-22 06:49:58", "license": "3", "title": "Oi vey!", "text": "", "album_id": "72157627495555866", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6191/6071087414_28ef4bed35_o.jpg", "secret": "7821fd3f12", "media": "photo", "latitude": "0", "id": "6071087414", "tags": "kindergarten firstdayofschool 3of3"}, {"datetaken": "2011-08-22 06:53:26", "license": "3", "title": "The United Colors of Suburbia", "text": "", "album_id": "72157627495555866", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6194/6071092120_2459d24b98_o.jpg", "secret": "1ba3d84b06", "media": "photo", "latitude": "0", "id": "6071092120", "tags": "busstop kindergarten firstdayofschool 3of3"}, {"datetaken": "2011-08-22 06:55:51", "license": "3", "title": "Waving Goodbye", "text": "", "album_id": "72157627495555866", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6185/6071107980_f3baec08a2_o.jpg", "secret": "dd62cc2d24", "media": "photo", "latitude": "0", "id": "6071107980", "tags": "kindergarten schoolbus 3of3"}, {"datetaken": "2012-02-07 10:55:00", "license": "5", "title": "visit Yamin Orde 2012 No.033", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7024/6836092009_483e4d3089_o.jpg", "secret": "e19f01858d", "media": "photo", "latitude": "0", "id": "6836092009", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 11:06:22", "license": "5", "title": "visit Yamin Orde 2012 No.040", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6836086855_2c230c9aab_o.jpg", "secret": "40350cf062", "media": "photo", "latitude": "0", "id": "6836086855", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 11:18:30", "license": "5", "title": "visit Yamin Orde 2012 No.049", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7006/6836086131_25028624f3_o.jpg", "secret": "9913424c98", "media": "photo", "latitude": "0", "id": "6836086131", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 11:41:58", "license": "5", "title": "visit Yamin Orde 2012 No.094", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7017/6836085331_949656d098_o.jpg", "secret": "f481a7eca9", "media": "photo", "latitude": "0", "id": "6836085331", "tags": "ambassador shapiro dan julie israel telaviv embassy carmel yamin orde jnf kkl fire usa us united state \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d0\u05e8\u05e6\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first \u05e0\u05d5\u05e2\u05e8 \u05d1\u05e1\u05d9\u05db\u05d5\u05df fyo yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt north isr"}, {"datetaken": "2012-02-07 12:01:59", "license": "5", "title": "visit Yamin Orde 2012 No.133", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7035/6836094689_8e62c5e940_o.jpg", "secret": "b1c1f08ec2", "media": "photo", "latitude": "0", "id": "6836094689", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 12:02:33", "license": "5", "title": "visit Yamin Orde 2012 No.145", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7034/6836098199_466d537ed8_o.jpg", "secret": "9b0b37e8b8", "media": "photo", "latitude": "0", "id": "6836098199", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 12:05:24", "license": "5", "title": "visit Yamin Orde 2012 No.158", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7170/6836080187_55580fe23e_o.jpg", "secret": "903f701ba5", "media": "photo", "latitude": "0", "id": "6836080187", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 12:06:17", "license": "5", "title": "visit Yamin Orde 2012 No.189", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7165/6836099795_519de573af_o.jpg", "secret": "4c9e4e58ba", "media": "photo", "latitude": "0", "id": "6836099795", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 12:07:29", "license": "5", "title": "visit Yamin Orde 2012 No.212", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7145/6836095883_f702e7efaa_o.jpg", "secret": "8abcb0381b", "media": "photo", "latitude": "0", "id": "6836095883", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 12:10:07", "license": "5", "title": "visit Yamin Orde 2012 No.234", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7024/6836091079_d432edf8a6_o.jpg", "secret": "39b923cbfa", "media": "photo", "latitude": "0", "id": "6836091079", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 12:11:58", "license": "5", "title": "visit Yamin Orde 2012 No.245", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7143/6836081055_39a6e92bd6_o.jpg", "secret": "eff0e5e603", "media": "photo", "latitude": "0", "id": "6836081055", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 12:35:26", "license": "5", "title": "Visit Carmel forest 2012 No.008", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6836088925_5972f42d0d_o.jpg", "secret": "55d686e75c", "media": "photo", "latitude": "0", "id": "6836088925", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 12:40:50", "license": "5", "title": "Visit Carmel forest 2012 No.026", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7024/6836083193_cfa5fe0926_o.jpg", "secret": "b61f9866e9", "media": "photo", "latitude": "0", "id": "6836083193", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 12:58:33", "license": "5", "title": "Visit Carmel forest 2012 No.051", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7146/6836082181_b508bc82f5_o.jpg", "secret": "717da196cc", "media": "photo", "latitude": "0", "id": "6836082181", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 13:23:58", "license": "5", "title": "Visit Carmel forest 2012 No.055", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7175/6836084073_4fd9b72d96_o.jpg", "secret": "959e1cfac2", "media": "photo", "latitude": "0", "id": "6836084073", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 13:25:54", "license": "5", "title": "Visit Carmel forest 2012 No.065", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7162/6836087891_edef7734df_o.jpg", "secret": "a03617dbb7", "media": "photo", "latitude": "0", "id": "6836087891", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 13:43:13", "license": "5", "title": "Visit Carmel forest 2012 No.078", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7175/6836090133_08a02dba7e_o.jpg", "secret": "1c412304ea", "media": "photo", "latitude": "0", "id": "6836090133", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 13:43:23", "license": "5", "title": "Visit Carmel forest 2012 No.082", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6836097315_5dc931c1a8_o.jpg", "secret": "20478e3687", "media": "photo", "latitude": "0", "id": "6836097315", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 13:47:20", "license": "5", "title": "Visit Carmel forest 2012 No.093", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7010/6836092971_a48d43b0cc_o.jpg", "secret": "15c6fa72e2", "media": "photo", "latitude": "0", "id": "6836092971", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-02-07 13:50:19", "license": "5", "title": "Visit Carmel forest 2012 No.103", "text": "", "album_id": "72157629216448839", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7175/6836093939_a9443d542f_o.jpg", "secret": "8f798b78da", "media": "photo", "latitude": "0", "id": "6836093939", "tags": "usa dan fire israel us telaviv julie state united north embassy carmel ambassador yamin \u05d8\u05d5 \u05d1\u05e9\u05d1\u05d8 shapiro orde isr kkl \u05e0\u05d5\u05e2\u05e8 jnf \u05e0\u05d8\u05d9\u05e2\u05d5\u05ea \u05d4\u05d1\u05e8\u05d9\u05ea fyo \u05d0\u05e8\u05e6\u05d5\u05ea \u05d1\u05e1\u05d9\u05db\u05d5\u05df \u05e9\u05d2\u05e8\u05d9\u05e8\u05d5\u05ea \u05e7\u05e7\u05dc\u05db\u05e8\u05de\u05dc\u05d4\u05e8\u05d9\u05de\u05d9\u05df\u05d0\u05d5\u05e8\u05d3\u05e9\u05e4\u05d9\u05e8\u05d5\u05d3\u05df\u05d2\u05d5\u05dc\u05d9\u05e9\u05d2\u05e8\u05d9\u05e8\u05d0\u05e8\u05d4\u05d1 \u05d8\u05d5\u05e9\u05e8\u05d9\u05e4\u05d4\u05d0\u05e0\u05d3\u05e8\u05d8\u05d4\u05d2\u05dc\u05e2\u05d3\u05d9\u05d3\u05d4\u05e0\u05d5\u05e2\u05e8 \u05db\u05e4\u05e8\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8first yeminorde\u05e4\u05d9\u05e9\u05e8\u05d1\u05e0\u05d9fisherbenivillageyoutholivetreeforestchaimperibenny tomtidwellmt"}, {"datetaken": "2012-08-19 21:31:49", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7259/7828345770_73d8cdbd65_o.jpg", "secret": "50a4d4a906", "media": "photo", "latitude": "0", "id": "7828345770", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 21:31:58", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8437/7828346032_c779476337_o.jpg", "secret": "7a82179c3a", "media": "photo", "latitude": "0", "id": "7828346032", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 21:34:36", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8447/7828346282_5114ec2efb_o.jpg", "secret": "a258be988f", "media": "photo", "latitude": "0", "id": "7828346282", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 21:35:19", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8283/7828346574_7652e11ea2_o.jpg", "secret": "6165f47545", "media": "photo", "latitude": "0", "id": "7828346574", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 21:42:37", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7132/7828346824_5c2838cf2e_o.jpg", "secret": "6a03b3b2cf", "media": "photo", "latitude": "0", "id": "7828346824", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 21:43:14", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8302/7828347058_ce504ebce8_o.jpg", "secret": "2e145b6e92", "media": "photo", "latitude": "0", "id": "7828347058", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 21:43:25", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8433/7828347248_a17af95832_o.jpg", "secret": "29e184d554", "media": "photo", "latitude": "0", "id": "7828347248", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 22:20:34", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8421/7828347440_e87c36a2d4_o.jpg", "secret": "250ca9531f", "media": "photo", "latitude": "0", "id": "7828347440", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 22:25:06", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8445/7828347648_b2b6838c11_o.jpg", "secret": "cdac5b9e5b", "media": "photo", "latitude": "0", "id": "7828347648", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 22:26:45", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7263/7828347844_6e1bcd7b15_o.jpg", "secret": "f293b9b08f", "media": "photo", "latitude": "0", "id": "7828347844", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 22:27:06", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7254/7828348042_d008011d84_o.jpg", "secret": "8ae1881a73", "media": "photo", "latitude": "0", "id": "7828348042", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 22:27:52", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7111/7828348188_6653b7d039_o.jpg", "secret": "a192e5a8e5", "media": "photo", "latitude": "0", "id": "7828348188", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 22:28:15", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7133/7828348366_89180b1174_o.jpg", "secret": "5d4f6c64bf", "media": "photo", "latitude": "0", "id": "7828348366", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 22:28:47", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8291/7828348706_39bfd5321b_o.jpg", "secret": "831fc440a9", "media": "photo", "latitude": "0", "id": "7828348706", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 22:32:26", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7267/7828348874_720644b7a1_o.jpg", "secret": "bfeca8d6b0", "media": "photo", "latitude": "0", "id": "7828348874", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 22:33:25", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8295/7828349080_49ece5ff10_o.jpg", "secret": "eaf94c78aa", "media": "photo", "latitude": "0", "id": "7828349080", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 22:39:40", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8289/7828349264_337f0f1a48_o.jpg", "secret": "defc4b657a", "media": "photo", "latitude": "0", "id": "7828349264", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 22:39:59", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8446/7828349454_f1bb6d97a3_o.jpg", "secret": "1e27005802", "media": "photo", "latitude": "0", "id": "7828349454", "tags": "firstdayofschool lillie"}, {"datetaken": "2012-08-19 22:40:18", "license": "3", "title": "Lillie, 7th Grader", "text": "", "album_id": "72157631169645326", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7140/7828349988_a660b695f5_o.jpg", "secret": "68c2204cd5", "media": "photo", "latitude": "0", "id": "7828349988", "tags": "firstdayofschool lillie"}, {"datetaken": "2009-07-02 15:37:29", "license": "3", "title": "Solar Powered Carousel and Ferris Wheel", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2560/3683064482_f27068738c_o.jpg", "secret": "2ab0b7bcfe", "media": "photo", "latitude": "0", "id": "3683064482", "tags": "california festival event countyfair sustainabledesign marincountyfair greendesign pacificgasandelectric solarpoweredcarousel"}, {"datetaken": "2009-07-02 15:37:30", "license": "3", "title": "Solar powered Carousel", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3631/3682251351_f2099ec42c_o.jpg", "secret": "a78f36fa2f", "media": "photo", "latitude": "0", "id": "3682251351", "tags": "california festival event countyfair sustainabledesign marincountyfair greendesign pacificgasandelectric solarpoweredcarousel"}, {"datetaken": "2009-07-02 15:37:33", "license": "3", "title": "PG&E Solar Panels at the Marin County Fair", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2512/3682251431_3c27bdc813_o.jpg", "secret": "d1f10a812f", "media": "photo", "latitude": "0", "id": "3682251431", "tags": "california festival event countyfair solarpanels renewableenergy sustainabledesign marincountyfair greendesign pacificgasandelectric"}, {"datetaken": "2009-07-02 15:37:34", "license": "3", "title": "Solar Powered Carousel", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3635/3683064676_fbd658a1ff_o.jpg", "secret": "ba20c7d4f2", "media": "photo", "latitude": "0", "id": "3683064676", "tags": "california festival event countyfair sustainabledesign marincountyfair greendesign pacificgasandelectric solarpoweredcarousel"}, {"datetaken": "2009-07-02 15:37:35", "license": "3", "title": "Ferris Wheel", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2520/3682251533_ae2aa111a2_o.jpg", "secret": "e8e17b1164", "media": "photo", "latitude": "0", "id": "3682251533", "tags": "california festival event ferriswheel countyfair giantwheel sustainabledesign marincountyfair greendesign pacificgasandelectric"}, {"datetaken": "2009-07-02 15:37:38", "license": "3", "title": "Solar Powered Carousel by Night", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2522/3683064834_325e939269_o.jpg", "secret": "3aedf6bc24", "media": "photo", "latitude": "0", "id": "3683064834", "tags": "california festival event countyfair sustainabledesign marincountyfair greendesign pacificgasandelectric solarpoweredcarousel"}, {"datetaken": "2009-07-02 15:37:39", "license": "3", "title": "Edible Landscaping at the Fairgrounds", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3653/3683064876_6db8064065_o.jpg", "secret": "8c69edc653", "media": "photo", "latitude": "0", "id": "3683064876", "tags": "california festival event countyfair chard sustainabledesign marincountyfair greendesign pacificgasandelectric ediblelandscaping"}, {"datetaken": "2009-07-02 15:37:40", "license": "3", "title": "PG&E Booth", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2623/3682251701_cd3f047e93_o.jpg", "secret": "4215ac524f", "media": "photo", "latitude": "0", "id": "3682251701", "tags": "california festival booth event countyfair sustainabledesign marincountyfair greendesign pacificgasandelectric"}, {"datetaken": "2009-07-02 15:37:41", "license": "3", "title": "Solar Powered Carousel and Ferris Wheel", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3628/3683064976_754cb889b5_o.jpg", "secret": "fd15670685", "media": "photo", "latitude": "0", "id": "3683064976", "tags": "california festival carousel event ferriswheel countyfair sustainabledesign marincountyfair greendesign pacificgasandelectric"}, {"datetaken": "2009-07-02 15:37:43", "license": "3", "title": "Ferris Wheel by Night", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3581/3682251797_0e55ec6c69_o.jpg", "secret": "ae0044185b", "media": "photo", "latitude": "0", "id": "3682251797", "tags": "california festival event ferriswheel countyfair giantwheel sustainabledesign marincountyfair greendesign pacificgasandelectric"}, {"datetaken": "2009-07-02 15:37:44", "license": "3", "title": "Spinning Carousel", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2484/3683065076_4f017d1979_o.jpg", "secret": "41dabb3e8a", "media": "photo", "latitude": "0", "id": "3683065076", "tags": "california festival event countyfair sustainabledesign marincountyfair greendesign pacificgasandelectric solarpoweredcarousel"}, {"datetaken": "2009-07-02 15:37:45", "license": "3", "title": "Composting and Recycling Bins", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2661/3682251901_d385b61500_o.jpg", "secret": "7e1e83dcff", "media": "photo", "latitude": "0", "id": "3682251901", "tags": "california festival event countyfair recyclingbins sustainabledesign marincountyfair greendesign pacificgasandelectric wastereduction compostingbins"}, {"datetaken": "2009-07-02 15:37:46", "license": "3", "title": "Solar Powered Sound Stage", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2580/3682251941_eac7d12b35_o.jpg", "secret": "a33c3c1da2", "media": "photo", "latitude": "0", "id": "3682251941", "tags": "california music festival event countyfair sustainabledesign marincountyfair greendesign pacificgasandelectric solarpoweredstage"}, {"datetaken": "2009-07-02 15:37:48", "license": "3", "title": "Solar Powered Sound Stage", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2538/3682252023_f7e2e810c4_o.jpg", "secret": "8dd97cb582", "media": "photo", "latitude": "0", "id": "3682252023", "tags": "california music festival event countyfair sustainabledesign marincountyfair greendesign pacificgasandelectric solarpoweredstage"}, {"datetaken": "2009-07-02 15:37:51", "license": "3", "title": "Fair From the Ferris Wheel", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2504/3682252099_12e6b52b6a_o.jpg", "secret": "6c70a2413d", "media": "photo", "latitude": "0", "id": "3682252099", "tags": "california festival event countyfair sustainabledesign marincountyfair greendesign pacificgasandelectric aerialpanorama"}, {"datetaken": "2009-07-02 15:37:52", "license": "3", "title": "Real Goods Solar Stand", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2632/3683065406_73032f62fa_o.jpg", "secret": "5efa64fa8f", "media": "photo", "latitude": "0", "id": "3683065406", "tags": "california festival event countyfair sustainabledesign marincountyfair greendesign pacificgasandelectric realgoodssolar"}, {"datetaken": "2009-07-02 15:37:53", "license": "3", "title": "More Fireworks", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2490/3682252201_4eec6fecb9_o.jpg", "secret": "471f2a9f5a", "media": "photo", "latitude": "0", "id": "3682252201", "tags": "california festival night fireworks event fourthofjuly countyfair sustainabledesign marincountyfair greendesign pacificgasandelectric"}, {"datetaken": "2009-07-02 15:37:54", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3658/3683065528_b476a76143_o.jpg", "secret": "b2357f9b81", "media": "photo", "latitude": "0", "id": "3683065528", "tags": "california festival night fireworks event fourthofjuly countyfair sustainabledesign marincountyfair greendesign pacificgasandelectric"}, {"datetaken": "2009-07-02 15:37:56", "license": "3", "title": "Marin County Parks initiatives", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2567/3682252311_cfd98cf46b_o.jpg", "secret": "38e0e804ff", "media": "photo", "latitude": "0", "id": "3682252311", "tags": "california festival event countyfair sustainabledesign marincountyfair greendesign pacificgasandelectric marincountyparks"}, {"datetaken": "2009-07-02 15:37:57", "license": "3", "title": "Junior Ranger Badge / Ferris Wheel!", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2530/3682252367_37f085dab5_o.jpg", "secret": "f7a9903381", "media": "photo", "latitude": "0", "id": "3682252367", "tags": "california festival event ferriswheel countyfair sustainabledesign marincountyfair juniorranger greendesign pacificgasandelectric"}, {"datetaken": "2009-07-02 15:37:59", "license": "3", "title": "Calsol Solar Vehicle by UC Berkeley", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2471/3683065726_b12498ccf1_o.jpg", "secret": "53b930f09f", "media": "photo", "latitude": "0", "id": "3683065726", "tags": "california festival event countyfair ucberkeley sustainabledesign marincountyfair greendesign pacificgasandelectric calsolsolarvehicle"}, {"datetaken": "2009-07-02 15:38:00", "license": "3", "title": "Tesla Roadster Turning Heads", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3595/3682252477_55fbb029a3_o.jpg", "secret": "400a1b1707", "media": "photo", "latitude": "0", "id": "3682252477", "tags": "california festival event countyfair sustainabledesign electricvehicle marincountyfair greendesign pacificgasandelectric teslaroadster"}, {"datetaken": "2009-07-02 15:38:02", "license": "3", "title": "Ebox Electric Vehicle", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3550/3682252537_a52cca4d8d_o.jpg", "secret": "4c223fcb89", "media": "photo", "latitude": "0", "id": "3682252537", "tags": "california festival event countyfair sustainabledesign marincountyfair greendesign pacificgasandelectric eboxelectricvehicle"}, {"datetaken": "2009-07-02 15:38:03", "license": "3", "title": "Electric 1965 Daytona Coupe Replica", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2577/3683065878_90fdb9c309_o.jpg", "secret": "a39d6c02d8", "media": "photo", "latitude": "0", "id": "3683065878", "tags": "california festival event countyfair sustainabledesign electricvehicle marincountyfair greendesign pacificgasandelectric electric1965daytonacoupe"}, {"datetaken": "2009-07-02 15:38:04", "license": "3", "title": "All-Electric Porsche 356C Replica", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2516/3682252631_acedacb6ce_o.jpg", "secret": "7d81f59a56", "media": "photo", "latitude": "0", "id": "3682252631", "tags": "california festival event countyfair sustainabledesign marincountyfair greendesign pacificgasandelectric allelectricporsche356c"}, {"datetaken": "2009-07-02 15:38:06", "license": "3", "title": "Bad Boy Buggy and ChargePoint Station", "text": "", "album_id": "72157620874108902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2447/3682252685_e1304de8d8_o.jpg", "secret": "913d60690a", "media": "photo", "latitude": "0", "id": "3682252685", "tags": "california festival event countyfair sustainabledesign electricvehicle marincountyfair greendesign pacificgasandelectric badboybuggy chargepointstation"}, {"datetaken": "2009-07-22 18:39:53", "license": "5", "title": "Decor 1 - Est - by Julia", "text": "", "album_id": "72157621931946156", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3137/3784302931_3c9a952d5d_o.jpg", "secret": "b34c6a0cc7", "media": "photo", "latitude": "0", "id": "3784302931", "tags": "interior sydney nsw decor est merivale byjulia estrestaurant merivalewinterfeasts"}, {"datetaken": "2009-07-22 18:40:57", "license": "5", "title": "Decor 2 - Est - by Julia", "text": "", "album_id": "72157621931946156", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3520/3785113920_b604c5a1fa_o.jpg", "secret": "0b5ed96292", "media": "photo", "latitude": "0", "id": "3785113920", "tags": "interior sydney nsw decor est merivale byjulia estrestaurant merivalewinterfeasts"}, {"datetaken": "2009-07-22 18:41:06", "license": "5", "title": "Decor 3 - Est - by Julia", "text": "", "album_id": "72157621931946156", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3497/3784304529_efc967b9ae_o.jpg", "secret": "947d1f86c3", "media": "photo", "latitude": "0", "id": "3784304529", "tags": "interior sydney nsw decor est merivale byjulia estrestaurant merivalewinterfeasts"}, {"datetaken": "2009-07-22 18:43:01", "license": "5", "title": "Pork Terrine - Est - by Julia - no flash", "text": "", "album_id": "72157621931946156", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2653/3785115580_acd829eac0_o.jpg", "secret": "a08cb24066", "media": "photo", "latitude": "0", "id": "3785115580", "tags": "hare cheek sydney cress pork relish pistachio nsw pear date est terrine merivale byjulia estrestaurant merivalewinterfeasts"}, {"datetaken": "2009-07-22 18:43:27", "license": "5", "title": "Linguine, Chorizo, Broccoli - Est - by Julia", "text": "", "album_id": "72157621931946156", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2572/3784306515_ce7fe858c5_o.jpg", "secret": "3687da1e43", "media": "photo", "latitude": "0", "id": "3784306515", "tags": "red lemon sydney sausage broccoli pasta nsw chorizo chilli parsley linguine est merivale byjulia estrestaurant merivalewinterfeasts"}, {"datetaken": "2009-07-22 18:44:10", "license": "5", "title": "Candle, salt flakes and pepper mill - Est - by Hon Kin", "text": "", "album_id": "72157621931946156", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2506/3784307203_4071ca4601_o.jpg", "secret": "cda908098f", "media": "photo", "latitude": "0", "id": "3784307203", "tags": "pepper candle salt sydney nsw grinder est merivale saltflake estrestaurant merivalewinterfeasts millpepper byhonkin"}, {"datetaken": "2009-07-22 18:45:26", "license": "5", "title": "Pork Terrine - Est - by Hon Kin", "text": "", "album_id": "72157621931946156", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2520/3784307795_b8a01205b8_o.jpg", "secret": "fb0fffce06", "media": "photo", "latitude": "0", "id": "3784307795", "tags": "food hare cheek sydney cress pork relish pistachio nsw pear date est terrine merivale estrestaurant merivalewinterfeasts byhonkin"}, {"datetaken": "2009-07-22 19:09:57", "license": "5", "title": "Slow-cooked Lamb Rump - Est - by Julia", "text": "", "album_id": "72157621931946156", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3568/3784308923_872c77172f_o.jpg", "secret": "c1c0c49860", "media": "photo", "latitude": "0", "id": "3784308923", "tags": "food verde eggplant sydney rump nsw lamb salsa grilled est merivale byjulia grilledeggplant slowcooked salsaverde estrestaurant merivalewinterfeasts"}, {"datetaken": "2009-07-22 19:10:37", "license": "5", "title": "Jewfish Fillet - Est - by Julia", "text": "", "album_id": "72157621931946156", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2547/3784309783_b7bd1b818c_o.jpg", "secret": "f5207dc9b4", "media": "photo", "latitude": "0", "id": "3784309783", "tags": "fish sydney olive crisp nsw pinenut spinach est tapenade fillet jewfish merivale byjulia preservedlemon estrestaurant merivalewinterfeasts crispskin"}, {"datetaken": "2009-07-22 19:11:18", "license": "5", "title": "Close-up - Slow-cooked Lamb Rump - Est - by Julia", "text": "", "album_id": "72157621931946156", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3586/3784310707_44890b01e2_o.jpg", "secret": "fa94491b44", "media": "photo", "latitude": "0", "id": "3784310707", "tags": "food verde eggplant sydney rump nsw lamb salsa grilled est merivale byjulia grilledeggplant slowcooked salsaverde estrestaurant merivalewinterfeasts"}, {"datetaken": "2009-07-22 19:15:46", "license": "5", "title": "Creamy mashed potatoes - Est - by Julia", "text": "", "album_id": "72157621931946156", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3508/3785121572_33171c38df_o.jpg", "secret": "d95ed78533", "media": "photo", "latitude": "0", "id": "3785121572", "tags": "sydney potato nsw mashedpotato mash est creamy merivale byjulia estrestaurant merivalewinterfeasts"}, {"datetaken": "2009-07-22 19:36:30", "license": "5", "title": "Slow Poached Quince, William Pear Ice-Cream - Est - by Julia", "text": "", "album_id": "72157621931946156", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2550/3784312293_84041d4610_o.jpg", "secret": "698b756f2c", "media": "photo", "latitude": "0", "id": "3784312293", "tags": "food dessert sweet sydney icecream nsw pear quince est poached merivale byjulia poirewilliam estrestaurant merivalewinterfeasts slowpoached williampear"}, {"datetaken": "2009-07-22 19:49:14", "license": "5", "title": "Petite Fours 1 - Est - by Julia", "text": "", "album_id": "72157621931946156", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2462/3784313243_1815f58d90_o.jpg", "secret": "8b237a7900", "media": "photo", "latitude": "0", "id": "3784313243", "tags": "food dessert sweet sydney nsw est merivale byjulia petitefours estrestaurant merivalewinterfeasts"}, {"datetaken": "2009-07-22 19:49:43", "license": "5", "title": "Petite Fours 2 - Est - by Julia", "text": "", "album_id": "72157621931946156", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2547/3784314133_2a9d538d87_o.jpg", "secret": "a5b76fef34", "media": "photo", "latitude": "0", "id": "3784314133", "tags": "food dessert sweet sydney nsw est merivale byjulia petitefours estrestaurant merivalewinterfeasts"}, {"datetaken": "2009-07-03 19:45:29", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2458/3686899823_7659024754_o.jpg", "secret": "471fc6117c", "media": "photo", "latitude": "0", "id": "3686899823", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 20:09:02", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3624/3686900307_7aef66c8dd_o.jpg", "secret": "a7a9c72c93", "media": "photo", "latitude": "0", "id": "3686900307", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 20:09:45", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2488/3686900831_6f59d7a030_o.jpg", "secret": "ece8b87a62", "media": "photo", "latitude": "0", "id": "3686900831", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:13:21", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2629/3687702922_f7068f017f_o.jpg", "secret": "300dc3a8c1", "media": "photo", "latitude": "0", "id": "3687702922", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:13:29", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3562/3687703662_4a809e825d_o.jpg", "secret": "502ef2365d", "media": "photo", "latitude": "0", "id": "3687703662", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:13:47", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3603/3687704104_ae95528079_o.jpg", "secret": "9f1906edbd", "media": "photo", "latitude": "0", "id": "3687704104", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:14:06", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2469/3687704472_2c100898a6_o.jpg", "secret": "0c367efdd4", "media": "photo", "latitude": "0", "id": "3687704472", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:14:31", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2559/3686903183_e5c143e162_o.jpg", "secret": "d18824710c", "media": "photo", "latitude": "0", "id": "3686903183", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:15:50", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3601/3687705614_d23df699f3_o.jpg", "secret": "bdf2c443ae", "media": "photo", "latitude": "0", "id": "3687705614", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:17:50", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3539/3686904491_d57e65eeaa_o.jpg", "secret": "509a7bee4c", "media": "photo", "latitude": "0", "id": "3686904491", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:18:01", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3652/3686904931_e4f6174874_o.jpg", "secret": "bb829cf298", "media": "photo", "latitude": "0", "id": "3686904931", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:19:24", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3603/3686905331_434bd6d153_o.jpg", "secret": "5410f676b5", "media": "photo", "latitude": "0", "id": "3686905331", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:20:05", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2635/3686905781_a91d4b44b1_o.jpg", "secret": "041abbb4ac", "media": "photo", "latitude": "0", "id": "3686905781", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:20:59", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2464/3687707892_f64a827195_o.jpg", "secret": "d0656fa86e", "media": "photo", "latitude": "0", "id": "3687707892", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:21:55", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2431/3687708330_59327fd837_o.jpg", "secret": "eef883d0ce", "media": "photo", "latitude": "0", "id": "3687708330", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:22:14", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3541/3687708808_a4ee993095_o.jpg", "secret": "9efc71fe2a", "media": "photo", "latitude": "0", "id": "3687708808", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:23:48", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2623/3687709374_b842707c7f_o.jpg", "secret": "96ab6ff78c", "media": "photo", "latitude": "0", "id": "3687709374", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:25:12", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2589/3687709938_08c99fbdaf_o.jpg", "secret": "dcc5b429b8", "media": "photo", "latitude": "0", "id": "3687709938", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:26:40", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3617/3686908779_77056c6274_o.jpg", "secret": "f896e27454", "media": "photo", "latitude": "0", "id": "3686908779", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:27:56", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2519/3686909171_596a06cb43_o.jpg", "secret": "9ac9feab51", "media": "photo", "latitude": "0", "id": "3686909171", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:28:48", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3566/3686909653_1b345e4abe_o.jpg", "secret": "fd5aaae219", "media": "photo", "latitude": "0", "id": "3686909653", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:29:22", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3626/3687711674_06293378fb_o.jpg", "secret": "41088d52cb", "media": "photo", "latitude": "0", "id": "3687711674", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:32:11", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3587/3686910423_4458581fcd_o.jpg", "secret": "e31693a1eb", "media": "photo", "latitude": "0", "id": "3686910423", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:33:37", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2656/3687712374_e51dd7145d_o.jpg", "secret": "43ef4a6351", "media": "photo", "latitude": "0", "id": "3687712374", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:33:49", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3601/3687712798_cf1a147973_o.jpg", "secret": "ffef79bd23", "media": "photo", "latitude": "0", "id": "3687712798", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:34:04", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2578/3687713202_26413c135f_o.jpg", "secret": "8496ddfd83", "media": "photo", "latitude": "0", "id": "3687713202", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:34:26", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3636/3687713550_491b383bd7_o.jpg", "secret": "24bc88ac73", "media": "photo", "latitude": "0", "id": "3687713550", "tags": "fourthofjuly bloomington"}, {"datetaken": "2009-07-03 21:34:36", "license": "1", "title": "Fourth Of July - Bloomington", "text": "", "album_id": "72157620811678257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3573/3686912573_8bd78fd9a3_o.jpg", "secret": "02cb574dc3", "media": "photo", "latitude": "0", "id": "3686912573", "tags": "fourthofjuly bloomington"}, {"datetaken": "2011-07-04 10:05:25", "license": "2", "title": "Fairlington July 4 Parade", "text": "", "album_id": "72157626994718417", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5073/5903878778_3e91992150_o.jpg", "secret": "03ce3f48ec", "media": "photo", "latitude": "0", "id": "5903878778", "tags": "50mm parade fourthofjuly arlingtonva fairlington t2i"}, {"datetaken": "2011-07-04 10:05:29", "license": "2", "title": "Fairlington July 4 Parade", "text": "", "album_id": "72157626994718417", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5038/5903879008_75f9561998_o.jpg", "secret": "bddd6700ea", "media": "photo", "latitude": "0", "id": "5903879008", "tags": "50mm crowd parade fourthofjuly arlingtonva fairlington t2i"}, {"datetaken": "2011-07-04 10:06:39", "license": "2", "title": "ACFD", "text": "", "album_id": "72157626994718417", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5031/5903320377_f29ca6ea62_o.jpg", "secret": "40d1f1922a", "media": "photo", "latitude": "0", "id": "5903320377", "tags": "50mm parade firetruck fourthofjuly fireengine arlingtonva fairlington t2i"}, {"datetaken": "2011-07-04 10:08:31", "license": "2", "title": "Front Porches", "text": "", "album_id": "72157626994718417", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5319/5903879386_8bafafa2bb_o.jpg", "secret": "b8c7904a67", "media": "photo", "latitude": "0", "id": "5903879386", "tags": "50mm parade fourthofjuly arlingtonva fairlington t2i"}, {"datetaken": "2011-07-04 10:10:06", "license": "2", "title": "Celebrating Independence on a Bike", "text": "", "album_id": "72157626994718417", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6026/5903879954_86381b29ef_o.jpg", "secret": "8b3e93383d", "media": "photo", "latitude": "0", "id": "5903879954", "tags": "bicycle 50mm parade fourthofjuly trainingwheels arlingtonva fairlington t2i"}, {"datetaken": "2011-07-04 10:10:08", "license": "2", "title": "Flag-Waving Tot", "text": "", "album_id": "72157626994718417", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6052/5903879646_182e0d909d_o.jpg", "secret": "a3afbd1db2", "media": "photo", "latitude": "0", "id": "5903879646", "tags": "wagon 50mm toddler child flag parade fourthofjuly arlingtonva fairlington flagwaving t2i"}, {"datetaken": "2011-07-04 10:12:26", "license": "2", "title": "Flag and Fife", "text": "", "album_id": "72157626994718417", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6041/5903321311_7c3007bcf2_o.jpg", "secret": "6c210fca51", "media": "photo", "latitude": "0", "id": "5903321311", "tags": "50mm costume fife flag americanflag parade fourthofjuly usflag arlingtonva fairlington t2i"}, {"datetaken": "2011-07-04 10:12:31", "license": "2", "title": "Drumbeat", "text": "", "album_id": "72157626994718417", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6003/5903321531_103d383a1b_o.jpg", "secret": "1c211a5678", "media": "photo", "latitude": "0", "id": "5903321531", "tags": "50mm costume drum parade fourthofjuly arlingtonva fairlington t2i"}, {"datetaken": "2011-07-04 10:14:39", "license": "2", "title": "Streamers and Training Wheels", "text": "", "album_id": "72157626994718417", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6051/5903321805_70c285dde3_o.jpg", "secret": "2cfa1b1dae", "media": "photo", "latitude": "0", "id": "5903321805", "tags": "bicycle 50mm decoration parade fourthofjuly trainingwheels arlingtonva bunting fairlington t2i"}, {"datetaken": "2011-07-04 10:15:08", "license": "2", "title": "Blinged-Out Push Car", "text": "", "album_id": "72157626994718417", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6056/5903880930_f2ee7ba66a_o.jpg", "secret": "72679a8f43", "media": "photo", "latitude": "0", "id": "5903880930", "tags": "50mm parade fourthofjuly arlingtonva fairlington t2i"}, {"datetaken": "2011-07-04 10:18:12", "license": "2", "title": "Bunting", "text": "", "album_id": "72157626994718417", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6058/5903881196_02813c0e3d_o.jpg", "secret": "6d10111d60", "media": "photo", "latitude": "0", "id": "5903881196", "tags": "50mm parade fourthofjuly arlingtonva bunting fairlington t2i"}, {"datetaken": "2011-07-04 10:18:28", "license": "2", "title": "Dual Loyalties", "text": "", "album_id": "72157626994718417", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5155/5903322559_b96cc5be09_o.jpg", "secret": "72568f771e", "media": "photo", "latitude": "0", "id": "5903322559", "tags": "50mm flags fourthofjuly chicagocubs arlingtonva cubfan fairlington t2i"}, {"datetaken": "2011-07-04 10:18:53", "license": "2", "title": "Tricycle with Pinwheels", "text": "", "album_id": "72157626994718417", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6004/5903881902_439a3fe786_o.jpg", "secret": "f65ae8f004", "media": "photo", "latitude": "0", "id": "5903881902", "tags": "50mm tricycle parade fourthofjuly bigwheels arlingtonva pinwheels fairlington t2i"}, {"datetaken": "2011-07-04 12:47:58", "license": "2", "title": "Stars and stripes", "text": "", "album_id": "72157626994718417", "longitude": "-77.007486", "url_o": "https://farm7.staticflickr.com/6059/5901166391_9063f3d205_o.jpg", "secret": "d403a29a54", "media": "photo", "latitude": "38.874588", "id": "5901166391", "tags": "fashion square stars washingtondc stripes squareformat fourthofjuly hefe iphone iphone4 nationalspark iphoneography instagramapp uploaded:by=instagram foursquare:venue=49ca9382f964a520bf581fe3"}, {"datetaken": "2011-07-04 14:08:10", "license": "2", "title": "Presidents' Race", "text": "", "album_id": "72157626994718417", "longitude": "-77.007834", "url_o": "https://farm7.staticflickr.com/6099/5903881682_7fac5ece11_o.jpg", "secret": "a3f6a29e17", "media": "photo", "latitude": "38.873000", "id": "5903881682", "tags": "50mm washingtondc fourthofjuly scoreboard presidentsrace t2i letteddywin nationalspark"}, {"license": "0", "title": "Aly and Rob", "farm": "7", "text": "", "album_id": "72157626994718417", "secret": "6161cf7b49", "longitude": "-77.007834", "server": "6099", "datetaken": "2011-07-04 14:58:47", "url_m": "https://farm7.staticflickr.com/6099/5903882236_6161cf7b49.jpg", "media": "photo", "latitude": "38.873000", "id": "5903882236", "tags": "washingtondc couple fourthofjuly iphone alysonhurt robpongsajapan iphone4 nationalspark"}, {"license": "0", "title": "Pensive Cubs Fan", "farm": "7", "text": "", "album_id": "72157626994718417", "secret": "988906660c", "longitude": "-77.007834", "server": "6019", "datetaken": "2011-07-04 15:48:49", "url_m": "https://farm7.staticflickr.com/6019/5903323645_988906660c.jpg", "media": "photo", "latitude": "38.873000", "id": "5903323645", "tags": "washingtondc baseball fourthofjuly chicagocubs washingtonnationals robpongsajapan t2i nationalspark"}, {"datetaken": "2011-07-04 21:33:44", "license": "2", "title": "Blurry Fireworks Long Exposure", "text": "", "album_id": "72157626994718417", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5200/5903323837_440979b7e4_o.jpg", "secret": "6dceff5315", "media": "photo", "latitude": "0", "id": "5903323837", "tags": "fireworks fourthofjuly arlingtonva t2i"}, {"datetaken": "2009-07-05 18:11:30", "license": "3", "title": "Its been a thrill serving you", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3171/2639280115_030c2ca3ef_o.jpg", "secret": "1102494d90", "media": "photo", "latitude": "0", "id": "2639280115", "tags": "fourthofjuly bouncy studiocity squidward"}, {"datetaken": "2009-07-05 21:04:52", "license": "3", "title": "Obligatory Fireworks Shots | Dandilions", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3079/2640358274_4995038e0f_o.jpg", "secret": "5bf47130fb", "media": "photo", "latitude": "0", "id": "2640358274", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:04:55", "license": "3", "title": "Obligatory Fireworks Shots | Dandilions", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3050/2640358626_a3a15fc6a6_o.jpg", "secret": "4c02642985", "media": "photo", "latitude": "0", "id": "2640358626", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:05:00", "license": "3", "title": "Obligatory Fireworks Shots | Dandilions", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3192/2640358974_85cf9b2730_o.jpg", "secret": "6fc2a350a8", "media": "photo", "latitude": "0", "id": "2640358974", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:07:31", "license": "3", "title": "Obligatory Fireworks Shots", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3089/2640368776_59bf71b377_o.jpg", "secret": "44cb6b26e2", "media": "photo", "latitude": "0", "id": "2640368776", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:07:41", "license": "3", "title": "Obligatory Fireworks Shots | Dandilions", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3110/2639532583_80a0f7fa66_o.jpg", "secret": "381fd0ebac", "media": "photo", "latitude": "0", "id": "2639532583", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:07:42", "license": "3", "title": "Obligatory Fireworks Shots | Dandilions", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3078/2639532917_36bd2fdd1f_o.jpg", "secret": "3928a20a89", "media": "photo", "latitude": "0", "id": "2639532917", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:07:43", "license": "3", "title": "Obligatory Fireworks Shots | Dandilions", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3257/2640360344_42eb3153f5_o.jpg", "secret": "3ef88c6318", "media": "photo", "latitude": "0", "id": "2640360344", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:08:05", "license": "3", "title": "Obligatory Fireworks Shots", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3025/2639542711_6b2699bc86_o.jpg", "secret": "1d7f5034c1", "media": "photo", "latitude": "0", "id": "2639542711", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:08:46", "license": "3", "title": "Obligatory Fireworks Shots | Dandilions", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3052/2639533835_02411baa1f_o.jpg", "secret": "8d1f51042d", "media": "photo", "latitude": "0", "id": "2639533835", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:09:34", "license": "3", "title": "Obligatory Fireworks Shots", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3097/2639543307_c622611c47_o.jpg", "secret": "2ce03493cb", "media": "photo", "latitude": "0", "id": "2639543307", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:09:47", "license": "3", "title": "Obligatory Fireworks Shots", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3163/2640370240_8435eb21d9_o.jpg", "secret": "f95abf41b8", "media": "photo", "latitude": "0", "id": "2640370240", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:10:22", "license": "3", "title": "Obligatory Fireworks Shots | Dandilions", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3025/2639534485_59b9281e48_o.jpg", "secret": "ee2077918c", "media": "photo", "latitude": "0", "id": "2639534485", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:10:33", "license": "3", "title": "Obligatory Fireworks Shots | Dandilions", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3193/2640362228_a2df23aa1e_o.jpg", "secret": "b01a03025c", "media": "photo", "latitude": "0", "id": "2640362228", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:11:06", "license": "3", "title": "Obligatory Fireworks Shots | Dandilions", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3023/2640362944_0788b86013_o.jpg", "secret": "c783c9ca72", "media": "photo", "latitude": "0", "id": "2640362944", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:11:48", "license": "3", "title": "Obligatory Fireworks Shots | Dandilions", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3071/2640365112_e86d3085ce_o.jpg", "secret": "27a4ea383e", "media": "photo", "latitude": "0", "id": "2640365112", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:12:51", "license": "3", "title": "Obligatory Fireworks Shots", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3150/2640370348_e015ed844b_o.jpg", "secret": "0d16467a33", "media": "photo", "latitude": "0", "id": "2640370348", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:15:38", "license": "3", "title": "Obligatory Fireworks Shots | Dandilions", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3275/2640365448_40c4cbb252_o.jpg", "secret": "f618415e19", "media": "photo", "latitude": "0", "id": "2640365448", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:15:39", "license": "3", "title": "Obligatory Fireworks Shots", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3151/2639543793_f112cd5c70_o.jpg", "secret": "9310e66b20", "media": "photo", "latitude": "0", "id": "2639543793", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:16:24", "license": "3", "title": "Obligatory Fireworks Shots", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3172/2640370898_c3156f7dfc_o.jpg", "secret": "64e2289d08", "media": "photo", "latitude": "0", "id": "2640370898", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:16:27", "license": "3", "title": "Obligatory Fireworks Shots", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3160/2640371440_deeda634d4_o.jpg", "secret": "02c2617cac", "media": "photo", "latitude": "0", "id": "2640371440", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:17:23", "license": "3", "title": "Obligatory Fireworks Shots | Dandilions", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3128/2639539267_b4c5896a23_o.jpg", "secret": "872c7b0f75", "media": "photo", "latitude": "0", "id": "2639539267", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:17:25", "license": "3", "title": "Obligatory Fireworks Shots | Dandilions", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3179/2639540151_9df4488658_o.jpg", "secret": "f7cffa72af", "media": "photo", "latitude": "0", "id": "2639540151", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:17:32", "license": "3", "title": "Obligatory Fireworks Shots | Dandilions", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3176/2640367404_95298d9603_o.jpg", "secret": "3ba9a81067", "media": "photo", "latitude": "0", "id": "2640367404", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:17:35", "license": "3", "title": "Obligatory Fireworks Shots | Dandilions", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3275/2639541879_21b1bb9d8c_o.jpg", "secret": "d5caff92b6", "media": "photo", "latitude": "0", "id": "2639541879", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:17:54", "license": "3", "title": "Obligatory Fireworks Shots", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3257/2640373568_13afcfc8bf_o.jpg", "secret": "05546b269d", "media": "photo", "latitude": "0", "id": "2640373568", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:18:41", "license": "3", "title": "Obligatory Fireworks Shots", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3032/2640374178_bab532cb26_o.jpg", "secret": "5f0af9f5f3", "media": "photo", "latitude": "0", "id": "2640374178", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:19:18", "license": "3", "title": "Obligatory Fireworks Shots", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3104/2639547941_a1e8d365eb_o.jpg", "secret": "6e22cb2522", "media": "photo", "latitude": "0", "id": "2639547941", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:19:26", "license": "3", "title": "Obligatory Fireworks Shots", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3013/2639548287_21dc3d36b5_o.jpg", "secret": "0596324fc6", "media": "photo", "latitude": "0", "id": "2639548287", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-05 21:19:34", "license": "3", "title": "Obligatory Fireworks Shots", "text": "", "album_id": "72157605997253353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3069/2640375686_48155f164e_o.jpg", "secret": "8de1d47393", "media": "photo", "latitude": "0", "id": "2640375686", "tags": "fireworks fourthofjuly studiocity"}, {"datetaken": "2009-07-04 21:06:53", "license": "3", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2533/3694350550_d39a7a2b9b_o.jpg", "secret": "a4dc28c64b", "media": "photo", "latitude": "34.057832", "id": "3694350550", "tags": "amanda joshua roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:45:09", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2669/3690932194_a1f090ae4a_o.jpg", "secret": "ec44ca55d6", "media": "photo", "latitude": "34.057832", "id": "3690932194", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:45:25", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2656/3690937222_0f861650b5_o.jpg", "secret": "93a96751ce", "media": "photo", "latitude": "34.057832", "id": "3690937222", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:45:41", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm4.staticflickr.com/3644/3690134323_8cce826f2c_o.jpg", "secret": "600b376608", "media": "photo", "latitude": "34.057832", "id": "3690134323", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:45:47", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2618/3690949510_93773ffba4_o.jpg", "secret": "21926a95e5", "media": "photo", "latitude": "34.057832", "id": "3690949510", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:46:53", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2572/3691598980_fd1dc54a89_o.jpg", "secret": "bc70a06275", "media": "photo", "latitude": "34.057832", "id": "3691598980", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:47:06", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2638/3691600048_e63e4bc9f5_o.jpg", "secret": "14cc787897", "media": "photo", "latitude": "34.057832", "id": "3691600048", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:47:31", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2468/3690793553_0c0e20b202_o.jpg", "secret": "57223f59ab", "media": "photo", "latitude": "34.057832", "id": "3690793553", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:47:47", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm4.staticflickr.com/3568/3690794263_604aa8cff7_o.jpg", "secret": "991d35e2a0", "media": "photo", "latitude": "34.057832", "id": "3690794263", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:47:57", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2543/3690796223_fe4e62a8e2_o.jpg", "secret": "a0a37dd584", "media": "photo", "latitude": "34.057832", "id": "3690796223", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:48:42", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2467/3690797677_80499d0ec9_o.jpg", "secret": "0d1c87c3f9", "media": "photo", "latitude": "34.057832", "id": "3690797677", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:52:03", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2566/3691607842_be5c039f5f_o.jpg", "secret": "494f1fc614", "media": "photo", "latitude": "34.057832", "id": "3691607842", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:52:16", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2660/3690801439_f154b7090e_o.jpg", "secret": "365c76c7e5", "media": "photo", "latitude": "34.057832", "id": "3690801439", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:53:09", "license": "3", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2467/3694351198_cd501bd49f_o.jpg", "secret": "381454181b", "media": "photo", "latitude": "34.057832", "id": "3694351198", "tags": "roswell andrew fourthofjuly"}, {"datetaken": "2009-07-04 21:53:13", "license": "3", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2634/3694351862_051cd6bb27_o.jpg", "secret": "22532dd2c2", "media": "photo", "latitude": "34.057832", "id": "3694351862", "tags": "roswell peter fourthofjuly"}, {"datetaken": "2009-07-04 21:54:47", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm4.staticflickr.com/3559/3691610412_81d6fd8f8f_o.jpg", "secret": "3f360c0e1a", "media": "photo", "latitude": "34.057832", "id": "3691610412", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:56:11", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2519/3690803821_f356f14344_o.jpg", "secret": "0a5815ef84", "media": "photo", "latitude": "34.057832", "id": "3690803821", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:56:44", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm4.staticflickr.com/3576/3691612846_baba58f614_o.jpg", "secret": "202589b0a9", "media": "photo", "latitude": "34.057832", "id": "3691612846", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:57:49", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm4.staticflickr.com/3548/3690806471_eaff622141_o.jpg", "secret": "e67a0fec55", "media": "photo", "latitude": "34.057832", "id": "3690806471", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:58:26", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2644/3691615638_8967c2ce61_o.jpg", "secret": "fc83c30df4", "media": "photo", "latitude": "34.057832", "id": "3691615638", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:59:04", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2466/3691617270_605e19f056_o.jpg", "secret": "464a9597b6", "media": "photo", "latitude": "34.057832", "id": "3691617270", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:59:40", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2470/3691618334_0c4e730a51_o.jpg", "secret": "e63db71b85", "media": "photo", "latitude": "34.057832", "id": "3691618334", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:59:49", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm4.staticflickr.com/3538/3690811805_da3870781d_o.jpg", "secret": "65a876c83d", "media": "photo", "latitude": "34.057832", "id": "3690811805", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 21:59:57", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2611/3690812885_2fb1307119_o.jpg", "secret": "55919ae32e", "media": "photo", "latitude": "34.057832", "id": "3690812885", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 22:00:03", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2425/3691622132_3acdf817a4_o.jpg", "secret": "5c8f7bea5c", "media": "photo", "latitude": "34.057832", "id": "3691622132", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 22:00:10", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2521/3690816281_a1a3cd6b7b_o.jpg", "secret": "3cddbeb228", "media": "photo", "latitude": "34.057832", "id": "3690816281", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 22:00:14", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2456/3690817567_baa6649126_o.jpg", "secret": "4c6c07c9b1", "media": "photo", "latitude": "34.057832", "id": "3690817567", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 22:00:24", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm4.staticflickr.com/3590/3691627034_ebb01d2a62_o.jpg", "secret": "647829f155", "media": "photo", "latitude": "34.057832", "id": "3691627034", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 22:01:12", "license": "2", "title": "", "text": "", "album_id": "72157620996064968", "longitude": "-84.382381", "url_o": "https://farm3.staticflickr.com/2557/3691628326_6d7983c02c_o.jpg", "secret": "c6de6c482b", "media": "photo", "latitude": "34.057832", "id": "3691628326", "tags": "fireworks roswell fourthofjuly"}, {"datetaken": "2009-07-04 22:25:58", "license": "3", "title": "Joshua getting ready to go home", "text": "", "album_id": "72157620996064968", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2613/3694352398_db8b51ff18_o.jpg", "secret": "dbdfc08ebb", "media": "photo", "latitude": "0", "id": "3694352398", "tags": "joshua roswell fourthofjuly"}, {"datetaken": "2010-07-03 20:34:35", "license": "6", "title": "Debbi's neighbors", "text": "", "album_id": "72157624440382340", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4770445356_62fa80c723_o.jpg", "secret": "314544be56", "media": "photo", "latitude": "0", "id": "4770445356", "tags": ""}, {"datetaken": "2010-07-04 00:00:23", "license": "6", "title": "Tupelo, Jason's sweet puppeh", "text": "", "album_id": "72157624440382340", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4769801777_ed7423dcdd_o.jpg", "secret": "085a85e19f", "media": "photo", "latitude": "0", "id": "4769801777", "tags": ""}, {"datetaken": "2010-07-04 00:00:25", "license": "6", "title": "PUT THAT DOWN!", "text": "", "album_id": "72157624440382340", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4769802173_60a802cc2c_o.jpg", "secret": "25f06c7035", "media": "photo", "latitude": "0", "id": "4769802173", "tags": ""}, {"datetaken": "2010-07-04 00:00:32", "license": "6", "title": "\"Fourth\" of July", "text": "", "album_id": "72157624440382340", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4769802273_081188a8d8_o.jpg", "secret": "a034e88b71", "media": "photo", "latitude": "0", "id": "4769802273", "tags": ""}, {"datetaken": "2010-07-04 00:00:45", "license": "6", "title": "Attempts.....", "text": "", "album_id": "72157624440382340", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4769802729_d3051b4f90_o.jpg", "secret": "b031364741", "media": "photo", "latitude": "0", "id": "4769802729", "tags": ""}, {"datetaken": "2010-07-04 00:00:51", "license": "6", "title": "Chloe", "text": "", "album_id": "72157624440382340", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4769803123_9bbec71b6c_o.jpg", "secret": "7826b62703", "media": "photo", "latitude": "0", "id": "4769803123", "tags": ""}, {"datetaken": "2010-07-04 00:04:18", "license": "6", "title": "\"Fourth\" of July", "text": "", "album_id": "72157624440382340", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4769803479_a687e4bbf6_o.jpg", "secret": "c77283292c", "media": "photo", "latitude": "0", "id": "4769803479", "tags": ""}, {"datetaken": "2010-07-04 00:05:50", "license": "6", "title": "\"Fourth\" of July", "text": "", "album_id": "72157624440382340", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4769803851_7a39ca81ee_o.jpg", "secret": "6dcc797d83", "media": "photo", "latitude": "0", "id": "4769803851", "tags": ""}, {"datetaken": "2010-07-04 00:07:34", "license": "6", "title": "\"Fourth\" of July", "text": "", "album_id": "72157624440382340", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4769804183_bca4048e84_o.jpg", "secret": "fd5e334aed", "media": "photo", "latitude": "0", "id": "4769804183", "tags": ""}, {"datetaken": "2010-07-04 00:08:06", "license": "6", "title": "\"Fourth\" of July", "text": "", "album_id": "72157624440382340", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4769804281_26687da374_o.jpg", "secret": "802affac7c", "media": "photo", "latitude": "0", "id": "4769804281", "tags": ""}, {"datetaken": "2010-07-04 00:09:11", "license": "6", "title": "\"Fourth\" of July", "text": "", "album_id": "72157624440382340", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4770444660_7bbbee2ddd_o.jpg", "secret": "989b38f7cd", "media": "photo", "latitude": "0", "id": "4770444660", "tags": ""}, {"datetaken": "2011-07-04 15:49:27", "license": "5", "title": "Fourth of July Cake", "text": "", "album_id": "72157627235661874", "longitude": "-76.364754", "url_o": "https://farm7.staticflickr.com/6141/5942389953_47c7d91f53_o.jpg", "secret": "0640c9167d", "media": "photo", "latitude": "39.373919", "id": "5942389953", "tags": "blue red white cake america dessert picnic 4thofjuly"}, {"datetaken": "2011-07-04 19:34:41", "license": "5", "title": "Kelley Laughing", "text": "", "album_id": "72157627235661874", "longitude": "-76.364754", "url_o": "https://farm7.staticflickr.com/6023/5942390539_655ce35a8c_o.jpg", "secret": "dfa61c57f6", "media": "photo", "latitude": "39.373919", "id": "5942390539", "tags": "smile picnic 4th kelley laugh 4thofjuly"}, {"datetaken": "2011-07-04 19:35:01", "license": "5", "title": "Brian", "text": "", "album_id": "72157627235661874", "longitude": "-76.364754", "url_o": "https://farm7.staticflickr.com/6142/5942391187_3232299607_o.jpg", "secret": "24b35aa22a", "media": "photo", "latitude": "39.373919", "id": "5942391187", "tags": "picnic brian 4th 4thofjuly eyebrows"}, {"datetaken": "2011-07-04 20:19:42", "license": "5", "title": "Fireworks II", "text": "", "album_id": "72157627235661874", "longitude": "-76.364754", "url_o": "https://farm7.staticflickr.com/6121/5956136988_637cbd795d_o.jpg", "secret": "521ba6e6d7", "media": "photo", "latitude": "39.373919", "id": "5956136988", "tags": "color america fire picnic fireworks smoke patriotic 4thofjuly"}, {"datetaken": "2011-07-04 20:24:26", "license": "5", "title": "Fireworks I", "text": "", "album_id": "72157627235661874", "longitude": "-76.364754", "url_o": "https://farm7.staticflickr.com/6030/5955576055_21d2bb7e9f_o.jpg", "secret": "67ddd1cf1e", "media": "photo", "latitude": "39.373919", "id": "5955576055", "tags": "color america fire picnic fireworks smoke patriotic 4thofjuly"}, {"datetaken": "2011-07-04 20:24:41", "license": "5", "title": "Fireworks III", "text": "", "album_id": "72157627235661874", "longitude": "-76.364754", "url_o": "https://farm7.staticflickr.com/6146/5955576925_0eacb42d12_o.jpg", "secret": "dbbdff9862", "media": "photo", "latitude": "39.373919", "id": "5955576925", "tags": "color america fire picnic fireworks smoke patriotic 4thofjuly"}, {"datetaken": "2011-07-04 20:27:37", "license": "5", "title": "Fireworks IV", "text": "", "album_id": "72157627235661874", "longitude": "-76.364754", "url_o": "https://farm7.staticflickr.com/6126/5955577435_6dc378606d_o.jpg", "secret": "a26185cbe6", "media": "photo", "latitude": "39.373919", "id": "5955577435", "tags": "color america fire picnic fireworks smoke patriotic 4thofjuly"}, {"datetaken": "2011-07-04 20:32:42", "license": "5", "title": "Fireworks V", "text": "", "album_id": "72157627235661874", "longitude": "-76.364754", "url_o": "https://farm7.staticflickr.com/6016/5956139378_936306d0f5_o.jpg", "secret": "e71f49693f", "media": "photo", "latitude": "39.373919", "id": "5956139378", "tags": "color america fire picnic fireworks smoke patriotic 4thofjuly"}, {"datetaken": "2011-07-04 20:33:02", "license": "5", "title": "Fireworks VI", "text": "", "album_id": "72157627235661874", "longitude": "-76.364754", "url_o": "https://farm7.staticflickr.com/6133/5955578653_fe20385002_o.jpg", "secret": "cffbdf4d21", "media": "photo", "latitude": "39.373919", "id": "5955578653", "tags": "color america fire picnic fireworks smoke patriotic 4thofjuly"}, {"datetaken": "2011-07-04 20:34:20", "license": "5", "title": "Fireworks VII", "text": "", "album_id": "72157627235661874", "longitude": "-76.364754", "url_o": "https://farm7.staticflickr.com/6028/5955579077_213d9eb5eb_o.jpg", "secret": "5a5f7d0693", "media": "photo", "latitude": "39.373919", "id": "5955579077", "tags": "color america fire picnic fireworks smoke patriotic 4thofjuly"}, {"datetaken": "2011-07-15 14:26:49", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6146/5951382379_77447c5514_o.jpg", "secret": "649e18836a", "media": "photo", "latitude": "54.537243", "id": "5951382379", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:28:05", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6121/5951937946_b888468ea6_o.jpg", "secret": "473db081bf", "media": "photo", "latitude": "54.537243", "id": "5951937946", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:29:26", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6030/5951382735_ee0c2c3d1c_o.jpg", "secret": "82c12074bb", "media": "photo", "latitude": "54.537243", "id": "5951382735", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:29:33", "license": "3", "title": "Hensingham School Gala Day 2011-Edit", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6149/5951938350_2cfc20391d_o.jpg", "secret": "1b7c8a25d9", "media": "photo", "latitude": "54.537243", "id": "5951938350", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:30:37", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6025/5951938498_52e3b711eb_o.jpg", "secret": "45e338c61e", "media": "photo", "latitude": "54.537243", "id": "5951938498", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:30:54", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6020/5951383297_949f1173b0_o.jpg", "secret": "1c656e3c99", "media": "photo", "latitude": "54.537243", "id": "5951383297", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:32:14", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6028/5951383607_4d2e83d443_o.jpg", "secret": "8c04813588", "media": "photo", "latitude": "54.537243", "id": "5951383607", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:34:19", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6136/5951383787_581d2df513_o.jpg", "secret": "70bf6733e8", "media": "photo", "latitude": "54.537243", "id": "5951383787", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:34:52", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6014/5951383939_0441011a31_o.jpg", "secret": "ac9439ba90", "media": "photo", "latitude": "54.537243", "id": "5951383939", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:35:33", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6130/5951939538_7d755a8161_o.jpg", "secret": "e78f0c2342", "media": "photo", "latitude": "54.537243", "id": "5951939538", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:36:02", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6141/5951384267_ce8ed25878_o.jpg", "secret": "657d1728ea", "media": "photo", "latitude": "54.537243", "id": "5951384267", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:37:27", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6023/5951939838_40cd542cdb_o.jpg", "secret": "5a132e6459", "media": "photo", "latitude": "54.537243", "id": "5951939838", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:37:41", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6009/5951940012_35e8d38343_o.jpg", "secret": "62b33fbcc1", "media": "photo", "latitude": "54.537243", "id": "5951940012", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:39:18", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6020/5951384653_b365458bb7_o.jpg", "secret": "32bf13d661", "media": "photo", "latitude": "54.537243", "id": "5951384653", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:39:34", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6008/5951384863_c60bdb0378_o.jpg", "secret": "45895b83c1", "media": "photo", "latitude": "54.537243", "id": "5951384863", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:41:22", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6149/5951385053_84557c6a00_o.jpg", "secret": "e2a95dc7df", "media": "photo", "latitude": "54.537243", "id": "5951385053", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:46:40", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6013/5951940790_847d730619_o.jpg", "secret": "c973c365c4", "media": "photo", "latitude": "54.537243", "id": "5951940790", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:48:10", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6016/5951940960_c7cc268225_o.jpg", "secret": "a301e7fb69", "media": "photo", "latitude": "54.537243", "id": "5951940960", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:48:37", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6129/5951385619_9d011552fe_o.jpg", "secret": "ba19951f41", "media": "photo", "latitude": "54.537243", "id": "5951385619", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:53:53", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6022/5951385849_40fc3d1ecd_o.jpg", "secret": "0029d32ba2", "media": "photo", "latitude": "54.537243", "id": "5951385849", "tags": "kids day play activity gala"}, {"datetaken": "2011-07-15 14:54:32", "license": "3", "title": "Hensingham School Gala Day 2011", "text": "", "album_id": "72157627101810461", "longitude": "-3.564312", "url_o": "https://farm7.staticflickr.com/6128/5951941600_ca8c0c9187_o.jpg", "secret": "89ff7a0e9d", "media": "photo", "latitude": "54.537243", "id": "5951941600", "tags": "kids day play activity gala"}, {"datetaken": "2010-12-19 14:06:35", "license": "3", "title": "Dropo's wedding a hit!", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5247/5274332445_011fd29c71_o.jpg", "secret": "2fbded69dd", "media": "photo", "latitude": "0", "id": "5274332445", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:06:35", "license": "3", "title": "Dropo at Tigers' spring training batting practice", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5088/5274332441_7b696b8bde_o.jpg", "secret": "0377a16bd5", "media": "photo", "latitude": "0", "id": "5274332441", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:06:35", "license": "3", "title": "Dropo bags buck", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5166/5274332437_cd45f0476c_o.jpg", "secret": "df0a32cc67", "media": "photo", "latitude": "0", "id": "5274332437", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:06:35", "license": "3", "title": "Dropo throws some snow", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5249/5274332431_cbef5d5005_o.jpg", "secret": "1cc6877049", "media": "photo", "latitude": "0", "id": "5274332431", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:06:35", "license": "3", "title": "Dropo teaches the world to swing", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5206/5274332425_e3cf70d556_o.jpg", "secret": "21984e064b", "media": "photo", "latitude": "0", "id": "5274332425", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:06:35", "license": "3", "title": "Dropo and Ernie Oravetz", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5006/5274332419_6f3af96e0f_o.jpg", "secret": "bf615073af", "media": "photo", "latitude": "0", "id": "5274332419", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:09:44", "license": "3", "title": "Dropo / Wise engagment announced", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5124/5274949298_e2002cd21d_o.jpg", "secret": "54336109bd", "media": "photo", "latitude": "0", "id": "5274949298", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:09:44", "license": "3", "title": "Dropo and Don Barnett", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5122/5274949296_56785334d8_o.jpg", "secret": "178ee47140", "media": "photo", "latitude": "0", "id": "5274949296", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:09:44", "license": "3", "title": "Dropo and Pesky traded to Detroit", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5050/5274949286_46c07dfeee_o.jpg", "secret": "e056d9f2ea", "media": "photo", "latitude": "0", "id": "5274949286", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:09:44", "license": "3", "title": "Dropo and Don Lenhardt", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5205/5274949282_c4b91a01d5_o.jpg", "secret": "dfd6826d5f", "media": "photo", "latitude": "0", "id": "5274949282", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:09:44", "license": "3", "title": "Dropo hits 12 straight - ties record", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5244/5274949274_30b4e6c854_o.jpg", "secret": "5970c020a5", "media": "photo", "latitude": "0", "id": "5274949274", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:09:45", "license": "3", "title": "Dropo and Pesky hitting all the right notes", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5088/5274949302_a0e5ab8ffd_o.jpg", "secret": "13b152f569", "media": "photo", "latitude": "0", "id": "5274949302", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:11:12", "license": "3", "title": "Dropo beaned", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5163/5274953500_b5bc1a4626_o.jpg", "secret": "f01c20ba90", "media": "photo", "latitude": "0", "id": "5274953500", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:11:12", "license": "3", "title": "Dropo post-hbp visit from Yawkey, Dr. McCarthy, and brother Milton", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5286/5274953496_54467acb37_o.jpg", "secret": "58e9369a1e", "media": "photo", "latitude": "0", "id": "5274953496", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:11:12", "license": "3", "title": "Dropo holds class", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5248/5274953488_a1253380cc_o.jpg", "secret": "d8b5544fe8", "media": "photo", "latitude": "0", "id": "5274953488", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:11:12", "license": "3", "title": "Dropo's wake-up call from Del Baker of San Diego Club", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5164/5274953486_9661e163c6_o.jpg", "secret": "4c29635743", "media": "photo", "latitude": "0", "id": "5274953486", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:11:12", "license": "3", "title": "Dropo back with Sox", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5249/5274953480_86ef69bdc9_o.jpg", "secret": "d3eb0cc977", "media": "photo", "latitude": "0", "id": "5274953480", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:11:12", "license": "3", "title": "Dropo in action at first base", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5048/5274953472_4d85ab9ae8_o.jpg", "secret": "a559cd1425", "media": "photo", "latitude": "0", "id": "5274953472", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:12:35", "license": "3", "title": "Dropo photo 2", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5003/5274957652_00391216f3_o.jpg", "secret": "f0d51dd822", "media": "photo", "latitude": "0", "id": "5274957652", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:12:35", "license": "3", "title": "Dropo with O'Neil and Doerr", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5123/5274957686_6f4eeb6391_o.jpg", "secret": "baa7c3c304", "media": "photo", "latitude": "0", "id": "5274957686", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:12:35", "license": "3", "title": "Dropo goes ice-fising", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5243/5274957678_694f85ddba_o.jpg", "secret": "d76ee0ab34", "media": "photo", "latitude": "0", "id": "5274957678", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:12:35", "license": "3", "title": "Dropo checks x-ray of wrist", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5050/5274957672_73697540be_o.jpg", "secret": "032781578a", "media": "photo", "latitude": "0", "id": "5274957672", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:12:35", "license": "3", "title": "Dropo photo", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5043/5274957668_ab4fc61371_o.jpg", "secret": "749feee2ba", "media": "photo", "latitude": "0", "id": "5274957668", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:12:35", "license": "3", "title": "Dropo with Kinder and Stephens", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5249/5274957662_5eedb95345_o.jpg", "secret": "8dd6019ba0", "media": "photo", "latitude": "0", "id": "5274957662", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:13:34", "license": "3", "title": "WALTER DROPO", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5161/5274960906_4584097ab4_o.jpg", "secret": "bbd142240e", "media": "photo", "latitude": "0", "id": "5274960906", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:13:34", "license": "3", "title": "Dropo and Joe McCarthy", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5288/5274960904_9f7a16d483_o.jpg", "secret": "1bbc1ef6c7", "media": "photo", "latitude": "0", "id": "5274960904", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2010-12-19 14:13:34", "license": "3", "title": "Dropo gets his head examined", "text": "", "album_id": "72157625632178504", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5210/5274960896_e717b821a0_o.jpg", "secret": "981e997e1f", "media": "photo", "latitude": "0", "id": "5274960896", "tags": "red walter white baseball sox detroit first tigers walt base baseman dropo"}, {"datetaken": "2011-07-21 17:27:19", "license": "2", "title": "Old Main Clock 1", "text": "", "album_id": "72157627256006852", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6141/5964210041_9ef7723864_o.jpg", "secret": "a48f495728", "media": "photo", "latitude": "0", "id": "5964210041", "tags": "clock buildings belltower pennstate restoration removal oldmain universityparkcampus creditannemariemountz"}, {"datetaken": "2011-07-22 10:22:13", "license": "2", "title": "Clock 10", "text": "", "album_id": "72157627256006852", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6005/5964210765_cc294a28b5_o.jpg", "secret": "c56480bd23", "media": "photo", "latitude": "0", "id": "5964210765", "tags": "clock pennstate restoration removal oldmain universityparkcampus creditannemariemountz"}, {"datetaken": "2011-07-22 10:48:57", "license": "2", "title": "Clock 2", "text": "", "album_id": "72157627256006852", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6007/5964210171_5c41483600_o.jpg", "secret": "d7fd46c081", "media": "photo", "latitude": "0", "id": "5964210171", "tags": "building clock belltower pennstate restoration removal oldmain universityparkcampus creditannemariemountz"}, {"datetaken": "2011-07-22 10:51:46", "license": "2", "title": "Clock 3", "text": "", "album_id": "72157627256006852", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6125/5964767550_fb60fdc8fe_o.jpg", "secret": "902522abd9", "media": "photo", "latitude": "0", "id": "5964767550", "tags": "building clock belltower pennstate restoration removal oldmain universityparkcampus creditannemariemountz linkflickrset72157627256006852"}, {"datetaken": "2011-07-22 10:51:58", "license": "2", "title": "Clock 4", "text": "", "album_id": "72157627256006852", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6149/5964767700_b6d3ab06ff_o.jpg", "secret": "b88bdcb127", "media": "photo", "latitude": "0", "id": "5964767700", "tags": "building clock belltower pennstate restoration removal oldmain universityparkcampus creditannemariemountz"}, {"datetaken": "2011-07-22 10:56:25", "license": "2", "title": "Clock 5", "text": "", "album_id": "72157627256006852", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6126/5964768114_1f7f0572b7_o.jpg", "secret": "36543d153d", "media": "photo", "latitude": "0", "id": "5964768114", "tags": "building clock construction belltower pennstate restoration removal oldmain universityparkcampus creditannemariemountz"}, {"datetaken": "2011-07-22 11:00:38", "license": "2", "title": "Clock 6", "text": "", "album_id": "72157627256006852", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6009/5964768424_9450668b18_o.jpg", "secret": "708720a5b4", "media": "photo", "latitude": "0", "id": "5964768424", "tags": "building clock belltower pennstate restoration removal oldmain universityparkcampus creditannemariemountz"}, {"datetaken": "2011-07-22 11:13:21", "license": "2", "title": "Clock 7", "text": "", "album_id": "72157627256006852", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6139/5964211379_953d6ce9d7_o.jpg", "secret": "a18c818cb4", "media": "photo", "latitude": "0", "id": "5964211379", "tags": "building clock belltower pennstate restoration removal oldmain universityparkcampus creditannemariemountz"}, {"datetaken": "2011-07-22 11:13:59", "license": "2", "title": "Clock 8", "text": "", "album_id": "72157627256006852", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6124/5964211573_44a059cc23_o.jpg", "secret": "bea0eab034", "media": "photo", "latitude": "0", "id": "5964211573", "tags": "building clock belltower pennstate restoration removal oldmain universityparkcampus creditannemariemountz"}, {"datetaken": "2011-07-22 11:28:24", "license": "2", "title": "Clock 9", "text": "", "album_id": "72157627256006852", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6124/5964211777_85b9578257_o.jpg", "secret": "404daac6a9", "media": "photo", "latitude": "0", "id": "5964211777", "tags": "building clock belltower pennstate restoration removal oldmain universityparkcampus creditannemariemountz"}, {"datetaken": "2005-07-01 19:17:42", "license": "1", "title": "DSC00553", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23422538_de3ba7aee4_o.jpg", "secret": "de3ba7aee4", "media": "photo", "latitude": "0", "id": "23422538", "tags": "fourthofjuly lakeburton rex dogs car"}, {"datetaken": "2005-07-01 19:17:55", "license": "1", "title": "DSC00555", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23422587_bb5949387f_o.jpg", "secret": "bb5949387f", "media": "photo", "latitude": "0", "id": "23422587", "tags": "fourthofjuly lakeburton rex dogs car"}, {"datetaken": "2005-07-02 17:26:32", "license": "1", "title": "DSC00556", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23422642_f28d742a4d_o.jpg", "secret": "f28d742a4d", "media": "photo", "latitude": "0", "id": "23422642", "tags": "lake fourthofjuly lakeburton food cooking ribs"}, {"datetaken": "2005-07-02 17:27:09", "license": "1", "title": "DSC00557", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23422676_fba6209e28_o.jpg", "secret": "fba6209e28", "media": "photo", "latitude": "0", "id": "23422676", "tags": "lake fourthofjuly lakeburton food cooking ribs"}, {"datetaken": "2005-07-02 17:29:41", "license": "1", "title": "DSC00561", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23422740_d5f95023f8_o.jpg", "secret": "d5f95023f8", "media": "photo", "latitude": "0", "id": "23422740", "tags": "lake fourthofjuly lakeburton food cooking ribs"}, {"datetaken": "2005-07-02 17:53:36", "license": "1", "title": "DSC00562", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23422843_3c79f124bf_o.jpg", "secret": "3c79f124bf", "media": "photo", "latitude": "0", "id": "23422843", "tags": "lake fourthofjuly lakeburton flowers dock"}, {"datetaken": "2005-07-02 19:54:33", "license": "1", "title": "DSC00563", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23422881_a98a646bf6_o.jpg", "secret": "a98a646bf6", "media": "photo", "latitude": "0", "id": "23422881", "tags": "lake fourthofjuly lakeburton sunset water sunlight"}, {"datetaken": "2005-07-02 19:55:21", "license": "1", "title": "DSC00565", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23422934_ee835c603d_o.jpg", "secret": "ee835c603d", "media": "photo", "latitude": "0", "id": "23422934", "tags": "lake fourthofjuly lakeburton"}, {"datetaken": "2005-07-02 19:58:34", "license": "1", "title": "DSC00568", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23422982_a4c3de9b23_o.jpg", "secret": "a4c3de9b23", "media": "photo", "latitude": "0", "id": "23422982", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 20:23:07", "license": "1", "title": "DSC00573", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23423023_2e25d590d2_o.jpg", "secret": "2e25d590d2", "media": "photo", "latitude": "0", "id": "23423023", "tags": "lake fourthofjuly fireworks lakeburton flowers hydrangeas"}, {"datetaken": "2005-07-02 20:23:52", "license": "1", "title": "DSC00574", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23423075_6e245a45db_o.jpg", "secret": "6e245a45db", "media": "photo", "latitude": "0", "id": "23423075", "tags": "lake fourthofjuly lakeburton hydrangeas flowers"}, {"datetaken": "2005-07-02 20:24:37", "license": "1", "title": "DSC00575", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23423124_51e11b6bbf_o.jpg", "secret": "51e11b6bbf", "media": "photo", "latitude": "0", "id": "23423124", "tags": "lake fourthofjuly lakeburton sunset sunlight water"}, {"datetaken": "2005-07-02 20:25:24", "license": "1", "title": "DSC00576", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23423152_710642ab1d_o.jpg", "secret": "710642ab1d", "media": "photo", "latitude": "0", "id": "23423152", "tags": "lake fourthofjuly lakeburton sunset water boats"}, {"datetaken": "2005-07-02 20:25:30", "license": "1", "title": "DSC00577", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23423176_9eb8317a23_o.jpg", "secret": "9eb8317a23", "media": "photo", "latitude": "0", "id": "23423176", "tags": "lake fourthofjuly lakeburton sunset water boats"}, {"datetaken": "2005-07-02 20:26:54", "license": "1", "title": "misty mountains", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23423215_58a1363eae_o.jpg", "secret": "58a1363eae", "media": "photo", "latitude": "0", "id": "23423215", "tags": "lake fourthofjuly lakeburton"}, {"datetaken": "2005-07-02 20:29:29", "license": "1", "title": "DSC00579", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23423250_21c646875b_o.jpg", "secret": "21c646875b", "media": "photo", "latitude": "0", "id": "23423250", "tags": "lake fourthofjuly lakeburton sunset water sunlight boats"}, {"datetaken": "2005-07-02 20:29:42", "license": "1", "title": "DSC00580", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23423322_adb372c48a_o.jpg", "secret": "adb372c48a", "media": "photo", "latitude": "0", "id": "23423322", "tags": "lake fourthofjuly lakeburton sunset water sunlight"}, {"datetaken": "2005-07-02 20:32:46", "license": "1", "title": "DSC00582", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23423363_714fc37b8f_o.jpg", "secret": "714fc37b8f", "media": "photo", "latitude": "0", "id": "23423363", "tags": "lake fourthofjuly lakeburton sunset"}, {"datetaken": "2005-07-02 21:00:15", "license": "1", "title": "DSC00585", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23423393_2a4f9a7120_o.jpg", "secret": "2a4f9a7120", "media": "photo", "latitude": "0", "id": "23423393", "tags": "lake fourthofjuly lakeburton boats"}, {"datetaken": "2005-07-02 21:00:28", "license": "1", "title": "DSC00586", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23423419_a3dde5f095_o.jpg", "secret": "a3dde5f095", "media": "photo", "latitude": "0", "id": "23423419", "tags": "lake fourthofjuly lakeburton boats"}, {"datetaken": "2005-07-02 21:10:13", "license": "1", "title": "DSC00588", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23423455_117d2f9458_o.jpg", "secret": "117d2f9458", "media": "photo", "latitude": "0", "id": "23423455", "tags": "lake fourthofjuly lakeburton boats twilight"}, {"datetaken": "2005-07-02 21:10:38", "license": "1", "title": "DSC00589", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23423504_bacfd1541c_o.jpg", "secret": "bacfd1541c", "media": "photo", "latitude": "0", "id": "23423504", "tags": "lake fourthofjuly lakeburton boats twilight"}, {"datetaken": "2005-07-02 21:16:46", "license": "1", "title": "DSC00590", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23423552_9e05c6645e_o.jpg", "secret": "9e05c6645e", "media": "photo", "latitude": "0", "id": "23423552", "tags": "lake fourthofjuly lakeburton boats night"}, {"datetaken": "2005-07-02 21:20:10", "license": "1", "title": "DSC00593", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23423604_c9a65e08fb_o.jpg", "secret": "c9a65e08fb", "media": "photo", "latitude": "0", "id": "23423604", "tags": "lake fourthofjuly lakeburton boats twilight"}, {"datetaken": "2005-07-02 21:20:43", "license": "1", "title": "DSC00594", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23423647_eb14246af6_o.jpg", "secret": "eb14246af6", "media": "photo", "latitude": "0", "id": "23423647", "tags": "lake fourthofjuly lakeburton boats twilight"}, {"datetaken": "2005-07-02 21:31:18", "license": "1", "title": "DSC00598", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23423690_4b96759b12_o.jpg", "secret": "4b96759b12", "media": "photo", "latitude": "0", "id": "23423690", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 21:31:31", "license": "1", "title": "DSC00601", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23423748_e858001b99_o.jpg", "secret": "e858001b99", "media": "photo", "latitude": "0", "id": "23423748", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 21:31:39", "license": "1", "title": "DSC00602", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23423811_be4b186a65_o.jpg", "secret": "be4b186a65", "media": "photo", "latitude": "0", "id": "23423811", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 21:31:43", "license": "1", "title": "DSC00603", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23423890_cdc271f4a4_o.jpg", "secret": "cdc271f4a4", "media": "photo", "latitude": "0", "id": "23423890", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 21:31:49", "license": "1", "title": "DSC00604", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23423971_530054c999_o.jpg", "secret": "530054c999", "media": "photo", "latitude": "0", "id": "23423971", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 21:31:54", "license": "1", "title": "DSC00605", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23424021_e92cc9173c_o.jpg", "secret": "e92cc9173c", "media": "photo", "latitude": "0", "id": "23424021", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 21:32:05", "license": "1", "title": "DSC00606", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23424081_08b3d8dc1f_o.jpg", "secret": "08b3d8dc1f", "media": "photo", "latitude": "0", "id": "23424081", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 21:32:11", "license": "1", "title": "DSC00607", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23424127_e2ee637cc3_o.jpg", "secret": "e2ee637cc3", "media": "photo", "latitude": "0", "id": "23424127", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 21:32:48", "license": "1", "title": "DSC00608", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23424180_38cc281af3_o.jpg", "secret": "38cc281af3", "media": "photo", "latitude": "0", "id": "23424180", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 21:32:57", "license": "1", "title": "DSC00609", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23424209_effd0aef8c_o.jpg", "secret": "effd0aef8c", "media": "photo", "latitude": "0", "id": "23424209", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 21:35:14", "license": "1", "title": "DSC00615", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23424238_97a44592cd_o.jpg", "secret": "97a44592cd", "media": "photo", "latitude": "0", "id": "23424238", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 21:35:16", "license": "1", "title": "DSC00616", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23424299_47d03373e8_o.jpg", "secret": "47d03373e8", "media": "photo", "latitude": "0", "id": "23424299", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 21:35:39", "license": "1", "title": "DSC00619", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23424346_438358e12d_o.jpg", "secret": "438358e12d", "media": "photo", "latitude": "0", "id": "23424346", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 21:35:46", "license": "1", "title": "DSC00620", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23424405_818065f91c_o.jpg", "secret": "818065f91c", "media": "photo", "latitude": "0", "id": "23424405", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 21:35:52", "license": "1", "title": "DSC00621", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23424451_c7a2d849f8_o.jpg", "secret": "c7a2d849f8", "media": "photo", "latitude": "0", "id": "23424451", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 21:36:01", "license": "1", "title": "DSC00622", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23424512_7cf9bcbff3_o.jpg", "secret": "7cf9bcbff3", "media": "photo", "latitude": "0", "id": "23424512", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 21:36:07", "license": "1", "title": "DSC00623", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/23424575_d8e1842978_o.jpg", "secret": "d8e1842978", "media": "photo", "latitude": "0", "id": "23424575", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2005-07-02 21:36:40", "license": "1", "title": "DSC00628", "text": "", "album_id": "538554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23424631_70d7d7d62e_o.jpg", "secret": "70d7d7d62e", "media": "photo", "latitude": "0", "id": "23424631", "tags": "lake fourthofjuly fireworks lakeburton"}, {"datetaken": "2006-07-04 10:15:24", "license": "3", "title": "", "text": "", "album_id": "72157594188123351", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/182377457_d6033fe7e9_o.jpg", "secret": "d6033fe7e9", "media": "photo", "latitude": "0", "id": "182377457", "tags": "newyork cupcakes fourthofjuly 4thofjuly redroosterdrivein"}, {"datetaken": "2006-07-04 13:31:07", "license": "3", "title": "", "text": "", "album_id": "72157594188123351", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/182377883_14345ac0bd_o.jpg", "secret": "14345ac0bd", "media": "photo", "latitude": "0", "id": "182377883", "tags": "connecticut fourthofjuly 4thofjuly"}, {"datetaken": "2006-07-04 14:06:55", "license": "3", "title": "", "text": "", "album_id": "72157594188123351", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/182377997_6d7b3ba561_o.jpg", "secret": "6d7b3ba561", "media": "photo", "latitude": "0", "id": "182377997", "tags": "connecticut fourthofjuly 4thofjuly revolutionarywarreenactment"}, {"datetaken": "2006-07-04 16:05:37", "license": "3", "title": "", "text": "", "album_id": "72157594188123351", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/182378149_cf908261fc_o.jpg", "secret": "cf908261fc", "media": "photo", "latitude": "0", "id": "182378149", "tags": "connecticut fourthofjuly 4thofjuly"}, {"datetaken": "2006-07-04 16:08:27", "license": "3", "title": "", "text": "", "album_id": "72157594188123351", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/182378273_4c107d61f0_o.jpg", "secret": "4c107d61f0", "media": "photo", "latitude": "0", "id": "182378273", "tags": "connecticut fourthofjuly 4thofjuly"}, {"datetaken": "2006-07-04 16:08:34", "license": "3", "title": "", "text": "", "album_id": "72157594188123351", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/182378400_dacbe867d9_o.jpg", "secret": "dacbe867d9", "media": "photo", "latitude": "0", "id": "182378400", "tags": "connecticut fourthofjuly 24 4thofjuly"}, {"datetaken": "2006-07-04 16:11:54", "license": "3", "title": "", "text": "", "album_id": "72157594188123351", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/182378523_f894cc588e_o.jpg", "secret": "f894cc588e", "media": "photo", "latitude": "0", "id": "182378523", "tags": "connecticut fourthofjuly 4thofjuly livealittle"}, {"datetaken": "2006-07-04 16:12:04", "license": "3", "title": "", "text": "", "album_id": "72157594188123351", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/182378686_227775c861_o.jpg", "secret": "227775c861", "media": "photo", "latitude": "0", "id": "182378686", "tags": "classic wonder connecticut fourthofjuly carbs 4thofjuly 2300"}, {"datetaken": "2006-07-04 16:13:45", "license": "3", "title": "", "text": "", "album_id": "72157594188123351", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/182378947_a0d47ec4c0_o.jpg", "secret": "a0d47ec4c0", "media": "photo", "latitude": "0", "id": "182378947", "tags": "connecticut fourthofjuly 4thofjuly"}, {"datetaken": "2006-07-04 16:18:49", "license": "3", "title": "", "text": "", "album_id": "72157594188123351", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/182379348_6916b6b6e5_o.jpg", "secret": "6916b6b6e5", "media": "photo", "latitude": "0", "id": "182379348", "tags": "connecticut fourthofjuly hotdogs 4thofjuly weiners"}, {"datetaken": "2006-07-04 16:23:21", "license": "3", "title": "", "text": "", "album_id": "72157594188123351", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/182379521_e82a2bd0d1_o.jpg", "secret": "e82a2bd0d1", "media": "photo", "latitude": "0", "id": "182379521", "tags": "connecticut fourthofjuly 4thofjuly barcade"}, {"datetaken": "2006-07-04 17:31:19", "license": "3", "title": "", "text": "", "album_id": "72157594188123351", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/182379634_e56856006f_o.jpg", "secret": "e56856006f", "media": "photo", "latitude": "0", "id": "182379634", "tags": "connecticut fourthofjuly 4thofjuly hotstuff"}, {"datetaken": "2006-07-04 17:23:24", "license": "2", "title": "Fourth of July - Rooftop 1", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/182547483_21bd5c463e_o.jpg", "secret": "21bd5c463e", "media": "photo", "latitude": "0", "id": "182547483", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 17:23:29", "license": "2", "title": "Fourth of July - Rooftop 2", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/182547518_ba24060a0f_o.jpg", "secret": "ba24060a0f", "media": "photo", "latitude": "0", "id": "182547518", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 17:23:41", "license": "2", "title": "Fourth of July - Gasworks", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/182547610_58ca3b2fbd_o.jpg", "secret": "58ca3b2fbd", "media": "photo", "latitude": "0", "id": "182547610", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 17:24:02", "license": "2", "title": "Fourth of July - Police", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/182547475_11e649759e_o.jpg", "secret": "11e649759e", "media": "photo", "latitude": "0", "id": "182547475", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 17:24:34", "license": "2", "title": "Fourth of July - Rooftop 3", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/182547549_10a6cf8d7c_o.jpg", "secret": "10a6cf8d7c", "media": "photo", "latitude": "0", "id": "182547549", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 17:24:47", "license": "2", "title": "Fourth of July - Swimmers", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/182547833_5f10bcea25_o.jpg", "secret": "5f10bcea25", "media": "photo", "latitude": "0", "id": "182547833", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 17:28:28", "license": "2", "title": "Fourth of July - Tongue 1", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/182547878_d30a654ff2_o.jpg", "secret": "d30a654ff2", "media": "photo", "latitude": "0", "id": "182547878", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 17:28:38", "license": "2", "title": "Fourth of July - Heather and Dad", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/182547636_797f007948_o.jpg", "secret": "797f007948", "media": "photo", "latitude": "0", "id": "182547636", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 18:04:57", "license": "2", "title": "Fourth of July - Sexy Food Picture", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/182547795_d2bca29783_o.jpg", "secret": "d2bca29783", "media": "photo", "latitude": "0", "id": "182547795", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 18:05:03", "license": "2", "title": "Fourth of July - Sexy Food Picture Dan", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/182547787_5980d90741_o.jpg", "secret": "5980d90741", "media": "photo", "latitude": "0", "id": "182547787", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 18:05:14", "license": "2", "title": "Fourth of July - Tongue 2", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/182547897_a056cb630b_o.jpg", "secret": "a056cb630b", "media": "photo", "latitude": "0", "id": "182547897", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 18:08:20", "license": "2", "title": "Fourth of July - Quin", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/182547489_2473d24ef2_o.jpg", "secret": "2473d24ef2", "media": "photo", "latitude": "0", "id": "182547489", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 18:10:42", "license": "2", "title": "Fourth of July - The Band", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/182547845_ed3d892e88_o.jpg", "secret": "ed3d892e88", "media": "photo", "latitude": "0", "id": "182547845", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 18:10:56", "license": "2", "title": "Fourth of July - Rooftop 4", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/182547501_0e942d86e2_o.jpg", "secret": "0e942d86e2", "media": "photo", "latitude": "0", "id": "182547501", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 20:08:10", "license": "2", "title": "Fourth of July - Neighborhood Fireworks", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/182547684_3167cd17cd_o.jpg", "secret": "3167cd17cd", "media": "photo", "latitude": "0", "id": "182547684", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 20:20:45", "license": "2", "title": "Fourth of July - Sign", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/182547812_1c23d91467_o.jpg", "secret": "1c23d91467", "media": "photo", "latitude": "0", "id": "182547812", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 20:26:17", "license": "2", "title": "Fourth of July - The Lake", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/182547869_957b0c4387_o.jpg", "secret": "957b0c4387", "media": "photo", "latitude": "0", "id": "182547869", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 20:27:58", "license": "2", "title": "Fourth of July - Bocci", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/182547531_830e8ecdba_o.jpg", "secret": "830e8ecdba", "media": "photo", "latitude": "0", "id": "182547531", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 20:29:09", "license": "2", "title": "Fourth of July - OMG like nature's fireworks", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/182547761_7b1bc1dae4_o.jpg", "secret": "7b1bc1dae4", "media": "photo", "latitude": "0", "id": "182547761", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 20:33:18", "license": "2", "title": "Fourth of July - Houseboats 1", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/182547647_62521ee45d_o.jpg", "secret": "62521ee45d", "media": "photo", "latitude": "0", "id": "182547647", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 20:33:23", "license": "2", "title": "Fourth of July - Houseboats 2", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/182547659_c68e6cb164_o.jpg", "secret": "c68e6cb164", "media": "photo", "latitude": "0", "id": "182547659", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 20:33:31", "license": "2", "title": "Fourth of July - Houseboats 3", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/182547672_f1b806d25d_o.jpg", "secret": "f1b806d25d", "media": "photo", "latitude": "0", "id": "182547672", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 20:37:22", "license": "2", "title": "Fourth of July - Avoidance", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/182547539_9fb477b480_o.jpg", "secret": "9fb477b480", "media": "photo", "latitude": "0", "id": "182547539", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 20:37:33", "license": "2", "title": "Fourth of July - OMG like nature's fireworks 2", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/182547737_1848c13eee_o.jpg", "secret": "1848c13eee", "media": "photo", "latitude": "0", "id": "182547737", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 20:57:40", "license": "2", "title": "Fourth of July - OMG like nature's fireworks 3", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/182547754_d2c109417d_o.jpg", "secret": "d2c109417d", "media": "photo", "latitude": "0", "id": "182547754", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 20:59:06", "license": "2", "title": "Fourth of July - Heather", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/182547643_a96b44b390_o.jpg", "secret": "a96b44b390", "media": "photo", "latitude": "0", "id": "182547643", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 21:20:06", "license": "2", "title": "Fourth of July - Patriotic Dessert by Heather", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/182547774_2e6ac597d3_o.jpg", "secret": "2e6ac597d3", "media": "photo", "latitude": "0", "id": "182547774", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 21:44:07", "license": "2", "title": "Fourth of July - Nighttime Houseboat Rooftops 1", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/182547704_386d15a338_o.jpg", "secret": "386d15a338", "media": "photo", "latitude": "0", "id": "182547704", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 21:44:51", "license": "2", "title": "Fourth of July - Nighttime Houseboat Rooftops 2", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/182547718_c0732d9861_o.jpg", "secret": "c0732d9861", "media": "photo", "latitude": "0", "id": "182547718", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 21:45:49", "license": "2", "title": "Fourth of July - Nighttime Houseboat Rooftops 3", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/182547727_ba1b6475cc_o.jpg", "secret": "ba1b6475cc", "media": "photo", "latitude": "0", "id": "182547727", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 22:13:54", "license": "2", "title": "Fourth of July - Fireworks 1", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/182547556_e7609e6245_o.jpg", "secret": "e7609e6245", "media": "photo", "latitude": "0", "id": "182547556", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 22:32:20", "license": "2", "title": "Fourth of July - Fireworks 2", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/182547572_5a8e368aef_o.jpg", "secret": "5a8e368aef", "media": "photo", "latitude": "0", "id": "182547572", "tags": "fourthofjuly2006"}, {"datetaken": "2006-07-04 22:32:50", "license": "2", "title": "Fourth of July - Fireworks 3", "text": "", "album_id": "72157594188359156", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/182547599_e80e2b40e4_o.jpg", "secret": "e80e2b40e4", "media": "photo", "latitude": "0", "id": "182547599", "tags": "fourthofjuly2006"}, {"datetaken": "1993-07-04 12:00:00", "license": "3", "title": "", "text": "", "album_id": "72157629616247290", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5032/7003635190_534270383d_o.jpg", "secret": "e488c00971", "media": "photo", "latitude": "0", "id": "7003635190", "tags": "gene fourthofjuly"}, {"datetaken": "1993-07-04 12:00:01", "license": "3", "title": "", "text": "", "album_id": "72157629616247290", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7049/7003624908_c659d82488_o.jpg", "secret": "5a6a18dbb1", "media": "photo", "latitude": "0", "id": "7003624908", "tags": "jason pool fourthofjuly"}, {"datetaken": "1993-07-04 12:00:02", "license": "3", "title": "", "text": "", "album_id": "72157629616247290", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7094/7149706007_2a0d52a119_o.jpg", "secret": "b1ef201fa5", "media": "photo", "latitude": "0", "id": "7149706007", "tags": "lauren fourthofjuly"}, {"datetaken": "1993-07-04 12:00:03", "license": "3", "title": "", "text": "", "album_id": "72157629616247290", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7052/7003605424_ebbf374926_o.jpg", "secret": "52ac799a15", "media": "photo", "latitude": "0", "id": "7003605424", "tags": "lauren fourthofjuly"}, {"datetaken": "1993-07-04 12:00:04", "license": "3", "title": "", "text": "", "album_id": "72157629616247290", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5450/7003595454_742f3c7dd3_o.jpg", "secret": "692ce60d3e", "media": "photo", "latitude": "0", "id": "7003595454", "tags": "sandy fourthofjuly morgan"}, {"datetaken": "1993-07-04 12:00:05", "license": "3", "title": "", "text": "", "album_id": "72157629616247290", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7136/7149675811_3722e69265_o.jpg", "secret": "9495824948", "media": "photo", "latitude": "0", "id": "7149675811", "tags": "amanda pool scott donna catherine fourthofjuly"}, {"datetaken": "1993-07-04 12:00:06", "license": "3", "title": "", "text": "", "album_id": "72157629616247290", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5198/7003575204_87c8111028_o.jpg", "secret": "ef32564873", "media": "photo", "latitude": "0", "id": "7003575204", "tags": "lauren sandy fourthofjuly"}, {"datetaken": "1993-07-04 12:00:07", "license": "3", "title": "", "text": "", "album_id": "72157629616247290", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8144/7149656991_c6e8f435f6_o.jpg", "secret": "d8a04bb130", "media": "photo", "latitude": "0", "id": "7149656991", "tags": "grandmother barbara fourthofjuly"}, {"datetaken": "1993-07-04 12:00:08", "license": "3", "title": "", "text": "", "album_id": "72157629616247290", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7140/7003552436_185f058c41_o.jpg", "secret": "05b545b696", "media": "photo", "latitude": "0", "id": "7003552436", "tags": "jason pool ashley fourthofjuly"}, {"datetaken": "1993-07-04 12:00:09", "license": "3", "title": "", "text": "", "album_id": "72157629616247290", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7129/7149634725_6e21cd8a9f_o.jpg", "secret": "1fa67e2abd", "media": "photo", "latitude": "0", "id": "7149634725", "tags": "gene jerry fourthofjuly randy"}, {"datetaken": "1993-07-04 12:00:10", "license": "3", "title": "", "text": "", "album_id": "72157629616247290", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5032/7149625163_58ea32f290_o.jpg", "secret": "970cf84874", "media": "photo", "latitude": "0", "id": "7149625163", "tags": "darren basketball brett fourthofjuly"}, {"datetaken": "1993-07-04 12:00:11", "license": "3", "title": "", "text": "", "album_id": "72157629616247290", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8161/7003525190_5da0426661_o.jpg", "secret": "0b79539a1b", "media": "photo", "latitude": "0", "id": "7003525190", "tags": "james fourthofjuly"}, {"datetaken": "1993-07-04 12:00:12", "license": "3", "title": "", "text": "", "album_id": "72157629616247290", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8152/7003518534_1200cdcbc6_o.jpg", "secret": "bf7bfef040", "media": "photo", "latitude": "0", "id": "7003518534", "tags": "darren basketball brett fourthofjuly"}, {"datetaken": "1993-07-04 12:00:13", "license": "3", "title": "", "text": "", "album_id": "72157629616247290", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7276/7149601497_b8cbfd3fb7_o.jpg", "secret": "e524388336", "media": "photo", "latitude": "0", "id": "7149601497", "tags": "jason darren basketball ashley brett fourthofjuly"}, {"datetaken": "1993-07-04 12:00:14", "license": "3", "title": "", "text": "", "album_id": "72157629616247290", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8024/7149593451_598cd280eb_o.jpg", "secret": "84f5ef3cb2", "media": "photo", "latitude": "0", "id": "7149593451", "tags": "pool fourthofjuly nathaniel"}, {"datetaken": "1993-07-04 12:00:15", "license": "3", "title": "", "text": "", "album_id": "72157629616247290", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8008/7003491282_6f9c376ab3_o.jpg", "secret": "536d430694", "media": "photo", "latitude": "0", "id": "7003491282", "tags": "pool catherine fourthofjuly brenda"}, {"datetaken": "2012-07-04 01:03:48", "license": "1", "title": "Occupy Philly Protester", "text": "", "album_id": "72157630419717464", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7108/7501329250_9e80e629c8_o.jpg", "secret": "67e5a08155", "media": "photo", "latitude": "0", "id": "7501329250", "tags": "fourthofjuly independencedaypreview"}, {"datetaken": "2012-07-04 01:21:43", "license": "1", "title": "occupy_philly protester ensnarled in red tap", "text": "", "album_id": "72157630419717464", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8161/7501328774_dafc253784_o.jpg", "secret": "71c5dce489", "media": "photo", "latitude": "0", "id": "7501328774", "tags": "fourthofjuly independencedaypreview philadelphiaactivities"}, {"datetaken": "2012-07-04 01:31:43", "license": "1", "title": "Occupy Philly Marching downtown", "text": "", "album_id": "72157630419717464", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8028/7501328880_c84c0ecdcb_o.jpg", "secret": "7401042022", "media": "photo", "latitude": "0", "id": "7501328880", "tags": "fourthofjuly independencedaypreview philadelphiaactivities"}, {"datetaken": "2012-07-04 01:33:57", "license": "1", "title": "The Occupy Tax Dodgers", "text": "", "album_id": "72157630419717464", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8284/7501328976_3474b550ef_o.jpg", "secret": "d2101fd2f6", "media": "photo", "latitude": "0", "id": "7501328976", "tags": "fourthofjuly independencedaypreview philadelphiaactivities"}, {"datetaken": "2012-07-04 01:40:23", "license": "1", "title": "Free Mumia Protester", "text": "", "album_id": "72157630419717464", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8024/7501329034_fb6f81abc9_o.jpg", "secret": "200374c25e", "media": "photo", "latitude": "0", "id": "7501329034", "tags": "fourthofjuly independencedaypreview philadelphiaactivities"}, {"datetaken": "2012-07-04 01:45:33", "license": "1", "title": "Mumia Abu Jamal Supporters", "text": "", "album_id": "72157630419717464", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8424/7501329074_956419c329_o.jpg", "secret": "97157b8fae", "media": "photo", "latitude": "0", "id": "7501329074", "tags": "fourthofjuly independencedaypreview philadelphiaactivities"}, {"datetaken": "2012-07-04 01:48:48", "license": "1", "title": "Mumia Abu Jamal supporters", "text": "", "album_id": "72157630419717464", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8020/7501328830_f15c2bd8e0_o.jpg", "secret": "9101f0e38f", "media": "photo", "latitude": "0", "id": "7501328830", "tags": "fourthofjuly independencedaypreview philadelphiaactivities"}, {"datetaken": "2012-07-04 01:53:02", "license": "1", "title": "Mumia Abu Jamal Supporter", "text": "", "album_id": "72157630419717464", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7251/7501329132_e0ea0c58e6_o.jpg", "secret": "80dcfe8573", "media": "photo", "latitude": "0", "id": "7501329132", "tags": "fourthofjuly independencedaypreview philadelphiaactivities"}, {"datetaken": "2012-07-04 01:59:07", "license": "1", "title": "Peter Nero, warms up before the evening's concert", "text": "", "album_id": "72157630419717464", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8005/7501329444_a2e2c67936_o.jpg", "secret": "3a44d41fdc", "media": "photo", "latitude": "0", "id": "7501329444", "tags": "fourthofjuly independencedaypreview philadelphiaactivities"}, {"datetaken": "2012-07-04 02:05:28", "license": "1", "title": "Independence Hall concert goers", "text": "", "album_id": "72157630419717464", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7133/7501329502_899e4fdde7_o.jpg", "secret": "2aaff48fa4", "media": "photo", "latitude": "0", "id": "7501329502", "tags": "fourthofjuly independencedaypreview philadelphiaactivities"}, {"datetaken": "2012-07-04 02:11:58", "license": "1", "title": "Peter Nero Philly Pops Concert", "text": "", "album_id": "72157630419717464", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8162/7501329600_09b3634c68_o.jpg", "secret": "fdfe43ff3c", "media": "photo", "latitude": "0", "id": "7501329600", "tags": "fourthofjuly philadelphiaactivities"}, {"datetaken": "2012-07-04 02:17:09", "license": "1", "title": "Peter Nero Philly Pops Concerts", "text": "", "album_id": "72157630419717464", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7274/7501329650_deeabeb277_o.jpg", "secret": "da7c76d0f9", "media": "photo", "latitude": "0", "id": "7501329650", "tags": "fourthofjuly independencedaypreview"}, {"datetaken": "2012-07-04 02:17:55", "license": "1", "title": "Peter Nero & Philly Pops Concert", "text": "", "album_id": "72157630419717464", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7107/7501328704_475ba980bb_o.jpg", "secret": "dbbe25e62c", "media": "photo", "latitude": "0", "id": "7501328704", "tags": "fourthofjuly independencedaypreview philadelphiaactivities"}, {"datetaken": "2012-07-04 02:27:32", "license": "1", "title": "Independence Hall Concert audience", "text": "", "album_id": "72157630419717464", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8166/7501329378_388f2057e3_o.jpg", "secret": "aa09788dd7", "media": "photo", "latitude": "0", "id": "7501329378", "tags": "fourthofjuly independencedaypreview philadelphiaactivities"}, {"datetaken": "2012-07-04 17:47:41", "license": "1", "title": "IMG_7826", "text": "", "album_id": "72157630421477774", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8003/7502164648_0f90a950aa_o.jpg", "secret": "6801c03359", "media": "photo", "latitude": "0", "id": "7502164648", "tags": "timelapse fireworks fourthofjuly 4thofjuly independenceday"}, {"datetaken": "2012-07-04 17:48:19", "license": "1", "title": "IMG_7831", "text": "", "album_id": "72157630421477774", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8289/7502165574_15c5b37763_o.jpg", "secret": "98c69f7e68", "media": "photo", "latitude": "0", "id": "7502165574", "tags": "timelapse fireworks fourthofjuly 4thofjuly independenceday"}, {"datetaken": "2012-07-04 17:48:52", "license": "1", "title": "IMG_7836", "text": "", "album_id": "72157630421477774", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7132/7502166372_0e98b5df36_o.jpg", "secret": "be70b721d6", "media": "photo", "latitude": "0", "id": "7502166372", "tags": "timelapse fireworks fourthofjuly 4thofjuly independenceday"}, {"datetaken": "2012-07-04 17:54:02", "license": "1", "title": "IMG_7860", "text": "", "album_id": "72157630421477774", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7120/7502167272_562a48d582_o.jpg", "secret": "041bd3aa1c", "media": "photo", "latitude": "0", "id": "7502167272", "tags": "timelapse fireworks fourthofjuly 4thofjuly independenceday"}, {"datetaken": "2012-07-04 17:54:19", "license": "1", "title": "IMG_7863", "text": "", "album_id": "72157630421477774", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8286/7502167940_1108e9a79a_o.jpg", "secret": "26cdd37b16", "media": "photo", "latitude": "0", "id": "7502167940", "tags": "timelapse fireworks fourthofjuly 4thofjuly independenceday"}, {"datetaken": "2012-07-04 17:56:06", "license": "1", "title": "IMG_7875", "text": "", "album_id": "72157630421477774", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7269/7502168740_e01880f025_o.jpg", "secret": "e53254d497", "media": "photo", "latitude": "0", "id": "7502168740", "tags": "timelapse fireworks fourthofjuly 4thofjuly independenceday"}, {"datetaken": "2012-07-04 17:58:43", "license": "1", "title": "IMG_7895", "text": "", "album_id": "72157630421477774", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8001/7502169414_b4d7c69939_o.jpg", "secret": "6eb45be8d1", "media": "photo", "latitude": "0", "id": "7502169414", "tags": "timelapse fireworks fourthofjuly 4thofjuly independenceday"}, {"datetaken": "2012-07-04 17:58:47", "license": "1", "title": "IMG_7896", "text": "", "album_id": "72157630421477774", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8028/7502170184_44901ff1a4_o.jpg", "secret": "5afde913da", "media": "photo", "latitude": "0", "id": "7502170184", "tags": "timelapse fireworks fourthofjuly 4thofjuly independenceday"}, {"datetaken": "2012-07-04 18:01:19", "license": "1", "title": "IMG_7909", "text": "", "album_id": "72157630421477774", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8431/7502170900_43c79aaa9c_o.jpg", "secret": "10251b69e8", "media": "photo", "latitude": "0", "id": "7502170900", "tags": "timelapse fireworks fourthofjuly 4thofjuly independenceday"}, {"datetaken": "2012-07-04 18:04:16", "license": "1", "title": "IMG_7928", "text": "", "album_id": "72157630421477774", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8290/7502171732_45463aa0fd_o.jpg", "secret": "75e620494a", "media": "photo", "latitude": "0", "id": "7502171732", "tags": "timelapse fireworks fourthofjuly 4thofjuly independenceday"}, {"datetaken": "2012-07-04 18:04:58", "license": "1", "title": "IMG_7931", "text": "", "album_id": "72157630421477774", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8004/7502172524_54d5ac8cd2_o.jpg", "secret": "811ee675cc", "media": "photo", "latitude": "0", "id": "7502172524", "tags": "timelapse fireworks fourthofjuly 4thofjuly independenceday"}, {"datetaken": "2012-07-04 18:07:08", "license": "1", "title": "IMG_7945", "text": "", "album_id": "72157630421477774", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8434/7502173212_3266071667_o.jpg", "secret": "25d694a04b", "media": "photo", "latitude": "0", "id": "7502173212", "tags": "timelapse fireworks fourthofjuly 4thofjuly independenceday"}, {"datetaken": "2012-07-04 18:11:20", "license": "1", "title": "IMG_7959", "text": "", "album_id": "72157630421477774", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7140/7502173978_7da92663cb_o.jpg", "secret": "130860cee5", "media": "photo", "latitude": "0", "id": "7502173978", "tags": "timelapse fireworks fourthofjuly 4thofjuly independenceday"}, {"datetaken": "2012-07-04 18:13:01", "license": "1", "title": "IMG_7963", "text": "", "album_id": "72157630421477774", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8293/7502174540_d4d01871ec_o.jpg", "secret": "869c57001f", "media": "photo", "latitude": "0", "id": "7502174540", "tags": "timelapse fireworks fourthofjuly 4thofjuly independenceday"}, {"datetaken": "2012-07-04 10:23:20", "license": "1", "title": "Flag Waving", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8015/7502638792_c296566e0a_o.jpg", "secret": "3c8e7efaf0", "media": "photo", "latitude": "0", "id": "7502638792", "tags": "summer holiday indiana flags parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 10:26:02", "license": "1", "title": "Patriotic Wagon", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8141/7502639594_f66e698e48_o.jpg", "secret": "5ef8516729", "media": "photo", "latitude": "0", "id": "7502639594", "tags": "summer holiday wagon indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 10:26:49", "license": "1", "title": "Too Loud", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7279/7502640994_4042baf6dc_o.jpg", "secret": "bb344501b6", "media": "photo", "latitude": "0", "id": "7502640994", "tags": "summer holiday kid indiana parade fourthofjuly bloomington floats sirens earscovered"}, {"datetaken": "2012-07-04 10:29:09", "license": "1", "title": "Mini Car", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8156/7502641736_1818565c33_o.jpg", "secret": "d06c4aa55c", "media": "photo", "latitude": "0", "id": "7502641736", "tags": "summer holiday car indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 10:30:18", "license": "1", "title": "Band Playing On", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8023/7502643134_b503cd5c25_o.jpg", "secret": "7584308743", "media": "photo", "latitude": "0", "id": "7502643134", "tags": "summer holiday band indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 10:32:36", "license": "1", "title": "Veteran's Float", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7108/7502644316_e67bce89d1_o.jpg", "secret": "1f304b337f", "media": "photo", "latitude": "0", "id": "7502644316", "tags": "summer holiday indiana parade fourthofjuly bloomington floats veterans"}, {"datetaken": "2012-07-04 10:33:23", "license": "1", "title": "Vertical Planter Project", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7124/7502645314_f744bd7dd3_o.jpg", "secret": "f7abdc08a0", "media": "photo", "latitude": "0", "id": "7502645314", "tags": "summer holiday gardening indiana parade fourthofjuly bloomington floats verticalplanter"}, {"datetaken": "2012-07-04 10:33:29", "license": "1", "title": "The Independence Alligator", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8421/7502646192_602c664301_o.jpg", "secret": "79c99b66d2", "media": "photo", "latitude": "0", "id": "7502646192", "tags": "summer holiday alligator indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 10:33:43", "license": "1", "title": "Human Horse", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8147/7502647430_4fc2716249_o.jpg", "secret": "878c5779ab", "media": "photo", "latitude": "0", "id": "7502647430", "tags": "summer horses holiday indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 10:38:46", "license": "1", "title": "Equality Float", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8013/7502648164_5648578678_o.jpg", "secret": "a87d9db73c", "media": "photo", "latitude": "0", "id": "7502648164", "tags": "summer holiday indiana parade fourthofjuly bloomington float floats equality"}, {"datetaken": "2012-07-04 10:39:50", "license": "1", "title": "One for each hand", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7255/7502648984_23d4f71667_o.jpg", "secret": "778f065861", "media": "photo", "latitude": "0", "id": "7502648984", "tags": "summer holiday kid candy indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 10:40:13", "license": "1", "title": "Prieboy Percussion", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8282/7502650130_9234c824ce_o.jpg", "secret": "40e7273882", "media": "photo", "latitude": "0", "id": "7502650130", "tags": "summer holiday drums indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 10:41:14", "license": "1", "title": "Circus Float", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7116/7502650860_36aa708432_o.jpg", "secret": "203aaefe69", "media": "photo", "latitude": "0", "id": "7502650860", "tags": "summer holiday circus indiana parade fourthofjuly bloomington float floats"}, {"datetaken": "2012-07-04 10:42:16", "license": "1", "title": "Scholars Inn Bakehouse Cycling Team", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8013/7502652666_4de5bd4fd2_o.jpg", "secret": "8361009f35", "media": "photo", "latitude": "0", "id": "7502652666", "tags": "summer holiday bikes indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 10:42:49", "license": "1", "title": "Monkeyheads", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8148/7502653436_d3373e7026_o.jpg", "secret": "c248e82ace", "media": "photo", "latitude": "0", "id": "7502653436", "tags": "summer holiday indiana parade fourthofjuly bloomington floats monkeyheads"}, {"datetaken": "2012-07-04 10:43:06", "license": "1", "title": "Monkeyheads", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8290/7502654224_c1871d6958_o.jpg", "secret": "4011029b72", "media": "photo", "latitude": "0", "id": "7502654224", "tags": "summer holiday indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 10:43:47", "license": "1", "title": "Hays Market", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8285/7502655082_28e1c9b349_o.jpg", "secret": "0f4a8ec2c0", "media": "photo", "latitude": "0", "id": "7502655082", "tags": "summer holiday indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 10:45:25", "license": "1", "title": "Mermaid", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7256/7502655968_b3bb0eca25_o.jpg", "secret": "b2202e3fb8", "media": "photo", "latitude": "0", "id": "7502655968", "tags": "summer holiday indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 10:46:10", "license": "1", "title": "Shelli Yoder for Congress", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8024/7502656882_e804b7bb0c_o.jpg", "secret": "46fa6b17e2", "media": "photo", "latitude": "0", "id": "7502656882", "tags": "summer holiday politics indiana parade fourthofjuly bloomington floats shelliyoder"}, {"datetaken": "2012-07-04 10:46:18", "license": "1", "title": "Rick Dietz", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8434/7502657802_333bf2cc09_o.jpg", "secret": "1f31e36777", "media": "photo", "latitude": "0", "id": "7502657802", "tags": "summer holiday indiana parade fourthofjuly bloomington democrats floats"}, {"datetaken": "2012-07-04 10:51:49", "license": "1", "title": "Coconuts", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8012/7502658778_a213f592fc_o.jpg", "secret": "1bc440ae53", "media": "photo", "latitude": "0", "id": "7502658778", "tags": "summer holiday band indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 10:52:19", "license": "1", "title": "Dancing to Coconuts", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7133/7502659530_dfe8306318_o.jpg", "secret": "b925c2edb8", "media": "photo", "latitude": "0", "id": "7502659530", "tags": "summer music holiday dancing indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 10:52:41", "license": "1", "title": "Health Care Reform", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8288/7502660364_1c54f2eb2b_o.jpg", "secret": "7b69e8e3c8", "media": "photo", "latitude": "0", "id": "7502660364", "tags": "summer holiday politics indiana parade fourthofjuly bloomington healthcare floats"}, {"datetaken": "2012-07-04 10:52:51", "license": "1", "title": "Fourth of July Politics", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8007/7502661460_8ac9180150_o.jpg", "secret": "a0b9f69071", "media": "photo", "latitude": "0", "id": "7502661460", "tags": "summer holiday politics indiana parade fourthofjuly bloomington healthcare floats"}, {"datetaken": "2012-07-04 10:56:22", "license": "1", "title": "Classic Cars", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7132/7502662418_a8d4e12617_o.jpg", "secret": "5917defc5e", "media": "photo", "latitude": "0", "id": "7502662418", "tags": "summer holiday car classiccar indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 10:56:44", "license": "1", "title": "Scottish Society of Greater Bloomington", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8284/7502663426_31f642105c_o.jpg", "secret": "1c231d969a", "media": "photo", "latitude": "0", "id": "7502663426", "tags": "summer holiday scottish indiana parade fourthofjuly bloomington bagpipes floats"}, {"datetaken": "2012-07-04 10:57:08", "license": "1", "title": "Drummer", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8002/7502664770_876321a18c_o.jpg", "secret": "228830303b", "media": "photo", "latitude": "0", "id": "7502664770", "tags": "summer holiday scottish indiana parade fourthofjuly drummer bloomington floats bassdrum"}, {"datetaken": "2012-07-04 10:57:19", "license": "1", "title": "Elliptigo", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7251/7502665622_4baa4aa311_o.jpg", "secret": "4ffa2bf444", "media": "photo", "latitude": "0", "id": "7502665622", "tags": "summer holiday bike indiana parade fourthofjuly bloomington floats eliptigo"}, {"datetaken": "2012-07-04 10:57:40", "license": "1", "title": "Marching for Equal Rights", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7246/7502666266_4046814b78_o.jpg", "secret": "bde771f24b", "media": "photo", "latitude": "0", "id": "7502666266", "tags": "summer holiday politics indiana parade marching fourthofjuly bloomington floats equality"}, {"datetaken": "2012-07-04 10:59:22", "license": "1", "title": "Flags Unfurled", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8142/7502667204_01a317196a_o.jpg", "secret": "e3cdff8e38", "media": "photo", "latitude": "0", "id": "7502667204", "tags": "summer holiday flag indiana parade fourthofjuly marchingband bloomington floats"}, {"datetaken": "2012-07-04 11:00:57", "license": "1", "title": "Marching Band", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8283/7502667914_4cc2ac403c_o.jpg", "secret": "10ea286bfc", "media": "photo", "latitude": "0", "id": "7502667914", "tags": "summer holiday indiana parade fourthofjuly marchingband bloomington floats"}, {"datetaken": "2012-07-04 11:01:25", "license": "1", "title": "The Candy Road", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7118/7502669306_2ddb0a17cb_o.jpg", "secret": "a4064295f1", "media": "photo", "latitude": "0", "id": "7502669306", "tags": "summer holiday candy indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 11:01:36", "license": "1", "title": "Fourth of July", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8024/7502670286_fe2dda9878_o.jpg", "secret": "ed50db4a69", "media": "photo", "latitude": "0", "id": "7502670286", "tags": "summer holiday smile indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 11:02:04", "license": "1", "title": "Beanpole", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7254/7502671288_c90e368168_o.jpg", "secret": "de35b00f0b", "media": "photo", "latitude": "0", "id": "7502671288", "tags": "summer holiday indiana parade fourthofjuly bloomington float floats"}, {"datetaken": "2012-07-04 11:02:16", "license": "1", "title": "Elevating Ostrom", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8286/7502671928_4a70f2e511_o.jpg", "secret": "3dd44169fa", "media": "photo", "latitude": "0", "id": "7502671928", "tags": "summer holiday indiana parade fourthofjuly bloomington floats cherished elinorostrom"}, {"datetaken": "2012-07-04 11:03:03", "license": "1", "title": "Mini Truck", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7254/7502672634_abafa3f5d2_o.jpg", "secret": "43f7be8b34", "media": "photo", "latitude": "0", "id": "7502672634", "tags": "summer holiday indiana parade fourthofjuly bloomington floats minitruck"}, {"datetaken": "2012-07-04 11:07:11", "license": "1", "title": "Frances Hill's Llamas", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8287/7502673370_8b1b249128_o.jpg", "secret": "169e706490", "media": "photo", "latitude": "0", "id": "7502673370", "tags": "summer holiday llama indiana parade fourthofjuly politician bloomington floats"}, {"datetaken": "2012-07-04 11:07:26", "license": "1", "title": "Eco-friendly Taxies", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8024/7502674292_affe558358_o.jpg", "secret": "83bcdaa060", "media": "photo", "latitude": "0", "id": "7502674292", "tags": "summer holiday taxi indiana parade fourthofjuly bloomington floats ecofriendly"}, {"datetaken": "2012-07-04 11:07:56", "license": "1", "title": "High-Tech Parade", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7279/7502675138_b2cd9e232d_o.jpg", "secret": "72ea716858", "media": "photo", "latitude": "0", "id": "7502675138", "tags": "summer holiday taxi indiana parade fourthofjuly bloomington floats qrcode"}, {"datetaken": "2012-07-04 11:08:49", "license": "1", "title": "Watching the Band", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7124/7502676358_75d5d4c9c4_o.jpg", "secret": "d8dfccbc49", "media": "photo", "latitude": "0", "id": "7502676358", "tags": "summer holiday band indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 11:10:49", "license": "1", "title": "Wizard of Oz", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8150/7502677280_88d58a7739_o.jpg", "secret": "535f2e7f8d", "media": "photo", "latitude": "0", "id": "7502677280", "tags": "summer holiday play indiana parade fourthofjuly characters bloomington wizardofoz floats"}, {"datetaken": "2012-07-04 11:12:44", "license": "1", "title": "Pending Heat Stroke", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8005/7502677996_70004837fb_o.jpg", "secret": "a356d258f6", "media": "photo", "latitude": "0", "id": "7502677996", "tags": "summer holiday hot indiana parade suit fourthofjuly bloomington pinkpanther floats"}, {"datetaken": "2012-07-04 11:14:51", "license": "1", "title": "The Haul", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7255/7502678698_807b69a999_o.jpg", "secret": "722aa2e27c", "media": "photo", "latitude": "0", "id": "7502678698", "tags": "summer holiday candy indiana towel parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 11:15:08", "license": "1", "title": "Hudsucker Posse", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8156/7502679248_3a14b7dbf4_o.jpg", "secret": "b6af618bd7", "media": "photo", "latitude": "0", "id": "7502679248", "tags": "summer holiday indiana parade fourthofjuly bloomington hulahoop floats"}, {"datetaken": "2012-07-04 11:17:40", "license": "1", "title": "Fourth of July Politics", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7260/7502680012_15cfa99ffd_o.jpg", "secret": "d665470586", "media": "photo", "latitude": "0", "id": "7502680012", "tags": "summer holiday sign politics indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 11:17:47", "license": "1", "title": "Fourth of July Politics", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7139/7502680966_0b0450bd0e_o.jpg", "secret": "8cbb903132", "media": "photo", "latitude": "0", "id": "7502680966", "tags": "summer holiday sign politics indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 11:19:14", "license": "1", "title": "Bands on Floats", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8294/7502681944_87ca66427b_o.jpg", "secret": "d58fbb727d", "media": "photo", "latitude": "0", "id": "7502681944", "tags": "summer holiday band indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 11:20:19", "license": "1", "title": "David Promotes Soccer", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8022/7502682902_d02750deb7_o.jpg", "secret": "61ccb1f20a", "media": "photo", "latitude": "0", "id": "7502682902", "tags": "summer holiday soccer indiana parade fourthofjuly bloomington floats handouts"}, {"datetaken": "2012-07-04 11:20:46", "license": "1", "title": "Piano Float", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8292/7502683918_c75c36fe88_o.jpg", "secret": "e752436a7a", "media": "photo", "latitude": "0", "id": "7502683918", "tags": "summer holiday indiana parade fourthofjuly bloomington floats"}, {"datetaken": "2012-07-04 11:21:56", "license": "1", "title": "End of the Line", "text": "", "album_id": "72157630422619842", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8022/7502684898_9ae4e7b37b_o.jpg", "secret": "d93b5511ae", "media": "photo", "latitude": "0", "id": "7502684898", "tags": "summer holiday indiana parade fourthofjuly bloomington floats streetsweeper"}, {"datetaken": "2012-07-04 10:29:39", "license": "1", "title": "Francis's swim class", "text": "", "album_id": "72157630434051334", "longitude": "-75.184314", "url_o": "https://farm9.staticflickr.com/8148/7501259198_9f60656557_o.jpg", "secret": "1687dcc318", "media": "photo", "latitude": "39.592517", "id": "7501259198", "tags": "francis"}, {"datetaken": "2012-07-04 10:29:45", "license": "1", "title": "The pool in Elmer", "text": "", "album_id": "72157630434051334", "longitude": "-75.184314", "url_o": "https://farm9.staticflickr.com/8007/7501259772_566aabb9c2_o.jpg", "secret": "f7ec7dab41", "media": "photo", "latitude": "39.592517", "id": "7501259772", "tags": ""}, {"datetaken": "2012-07-04 10:29:48", "license": "1", "title": "Theo atty swim lessons", "text": "", "album_id": "72157630434051334", "longitude": "-75.184314", "url_o": "https://farm9.staticflickr.com/8164/7501260082_818422a9df_o.jpg", "secret": "788f69ca9f", "media": "photo", "latitude": "39.592517", "id": "7501260082", "tags": "theo"}, {"datetaken": "2012-07-04 10:59:47", "license": "1", "title": "Francis doing the backstroke!", "text": "", "album_id": "72157630434051334", "longitude": "-75.184314", "url_o": "https://farm9.staticflickr.com/8430/7501431476_bf1d4fc28d_o.jpg", "secret": "bf2c456fb5", "media": "photo", "latitude": "39.592517", "id": "7501431476", "tags": "francis"}, {"datetaken": "2012-07-04 10:59:51", "license": "1", "title": "Not sure about the playpen", "text": "", "album_id": "72157630434051334", "longitude": "-75.184314", "url_o": "https://farm9.staticflickr.com/8289/7501431886_99bf21a510_o.jpg", "secret": "0bba003391", "media": "photo", "latitude": "39.592517", "id": "7501431886", "tags": "gregroy"}, {"datetaken": "2012-07-04 11:59:53", "license": "1", "title": "Diving for rings", "text": "", "album_id": "72157630434051334", "longitude": "-75.184314", "url_o": "https://farm8.staticflickr.com/7249/7501785316_d18f72b1dc_o.jpg", "secret": "9cb0ae9d92", "media": "photo", "latitude": "39.592517", "id": "7501785316", "tags": "francis"}, {"datetaken": "2012-07-04 11:59:59", "license": "1", "title": "Pool bug", "text": "", "album_id": "72157630434051334", "longitude": "-75.184314", "url_o": "https://farm8.staticflickr.com/7121/7501785896_71444c3a73_o.jpg", "secret": "88105fec0b", "media": "photo", "latitude": "39.592517", "id": "7501785896", "tags": "theo"}, {"datetaken": "2012-07-04 15:49:05", "license": "1", "title": "Laura", "text": "", "album_id": "72157630434051334", "longitude": "-75.184314", "url_o": "https://farm9.staticflickr.com/8013/7503160552_1f2f232a0a_o.jpg", "secret": "700fb1644d", "media": "photo", "latitude": "39.592517", "id": "7503160552", "tags": "laura"}, {"datetaken": "2012-07-04 17:44:49", "license": "1", "title": "Theo floats in the pool", "text": "", "album_id": "72157630434051334", "longitude": "-75.184314", "url_o": "https://farm8.staticflickr.com/7275/7503904392_9318848229_o.jpg", "secret": "32292984fa", "media": "photo", "latitude": "39.592517", "id": "7503904392", "tags": "theo"}, {"datetaken": "2012-07-04 17:44:53", "license": "1", "title": "There's your patriot shot for the Fourth of July", "text": "", "album_id": "72157630434051334", "longitude": "-75.184314", "url_o": "https://farm8.staticflickr.com/7133/7503904730_ce47c70dd0_o.jpg", "secret": "1b5565420e", "media": "photo", "latitude": "39.592517", "id": "7503904730", "tags": ""}, {"datetaken": "2012-07-04 18:14:34", "license": "1", "title": "Theo looking tough", "text": "", "album_id": "72157630434051334", "longitude": "-75.184314", "url_o": "https://farm9.staticflickr.com/8165/7504083072_a023c1c634_o.jpg", "secret": "9b12072d77", "media": "photo", "latitude": "39.592517", "id": "7504083072", "tags": "theo"}, {"datetaken": "2012-07-04 18:29:30", "license": "1", "title": "Tiger Lilies outside the Elmer Swim Club", "text": "", "album_id": "72157630434051334", "longitude": "-75.184314", "url_o": "https://farm8.staticflickr.com/7137/7504171486_eec8d59d6b_o.jpg", "secret": "fee596bb13", "media": "photo", "latitude": "39.592517", "id": "7504171486", "tags": ""}, {"datetaken": "2012-07-04 12:28:42", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7109/7505427294_2605511cb0_o.jpg", "secret": "7a07d6d537", "media": "photo", "latitude": "37.895167", "id": "7505427294", "tags": "california celebration fourthofjuly albany july4th dsc4660"}, {"datetaken": "2012-07-04 12:29:49", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8423/7505431378_93a935b681_o.jpg", "secret": "456e1dfa45", "media": "photo", "latitude": "37.895167", "id": "7505431378", "tags": "california celebration fourthofjuly albany july4th dsc4663"}, {"datetaken": "2012-07-04 12:29:56", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8014/7505435332_bae8fb3745_o.jpg", "secret": "1b2b016ca9", "media": "photo", "latitude": "37.895167", "id": "7505435332", "tags": "california celebration fourthofjuly albany july4th dsc4664"}, {"datetaken": "2012-07-04 12:30:11", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8009/7505438322_111f22a91f_o.jpg", "secret": "9fdbd1d3f4", "media": "photo", "latitude": "37.895167", "id": "7505438322", "tags": "california celebration fourthofjuly albany july4th dsc4665"}, {"datetaken": "2012-07-04 12:31:22", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8148/7505442468_5f0ccef2ab_o.jpg", "secret": "e10be2bac0", "media": "photo", "latitude": "37.895167", "id": "7505442468", "tags": "california celebration fourthofjuly albany july4th dsc4668"}, {"datetaken": "2012-07-04 12:31:42", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7253/7505447420_2372f8f35b_o.jpg", "secret": "e4d57a371b", "media": "photo", "latitude": "37.895167", "id": "7505447420", "tags": "california celebration fourthofjuly albany july4th dsc4670"}, {"datetaken": "2012-07-04 12:31:54", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8015/7505450956_d4333635d8_o.jpg", "secret": "0893cd1bbc", "media": "photo", "latitude": "37.895167", "id": "7505450956", "tags": "california celebration fourthofjuly albany july4th dsc4671"}, {"datetaken": "2012-07-04 12:34:41", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7278/7505454150_f295648a93_o.jpg", "secret": "da1c3a5559", "media": "photo", "latitude": "37.895167", "id": "7505454150", "tags": "california celebration fourthofjuly albany july4th dsc4676"}, {"datetaken": "2012-07-04 12:34:50", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8010/7505458046_67a963d949_o.jpg", "secret": "a483631344", "media": "photo", "latitude": "37.895167", "id": "7505458046", "tags": "california celebration fourthofjuly albany july4th dsc4677"}, {"datetaken": "2012-07-04 12:35:22", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8425/7505461956_11fedd9675_o.jpg", "secret": "3ae5c8c606", "media": "photo", "latitude": "37.895167", "id": "7505461956", "tags": "california celebration fourthofjuly albany july4th dsc4678"}, {"datetaken": "2012-07-04 12:36:02", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8154/7505465258_8f353bc3cc_o.jpg", "secret": "26ce4fd4ab", "media": "photo", "latitude": "37.895167", "id": "7505465258", "tags": "california celebration fourthofjuly albany july4th dsc4679"}, {"datetaken": "2012-07-04 12:36:56", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7277/7505468546_ca927ff16c_o.jpg", "secret": "2031e95122", "media": "photo", "latitude": "37.895167", "id": "7505468546", "tags": "california celebration fourthofjuly albany july4th dsc4681"}, {"datetaken": "2012-07-04 12:39:34", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8288/7505475642_959e4dc584_o.jpg", "secret": "6dd6776b69", "media": "photo", "latitude": "37.895167", "id": "7505475642", "tags": "california celebration fourthofjuly albany july4th dsc4686"}, {"datetaken": "2012-07-04 12:40:57", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8141/7505479492_a645d63774_o.jpg", "secret": "d5e6c9d8a9", "media": "photo", "latitude": "37.895167", "id": "7505479492", "tags": "california celebration fourthofjuly albany july4th dsc4688"}, {"datetaken": "2012-07-04 12:41:09", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8145/7505482798_f4d63d31ac_o.jpg", "secret": "f67efd8ba3", "media": "photo", "latitude": "37.895167", "id": "7505482798", "tags": "california celebration fourthofjuly albany july4th dsc4690"}, {"datetaken": "2012-07-04 12:41:59", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8165/7505486508_a9846a1377_o.jpg", "secret": "44991e23c4", "media": "photo", "latitude": "37.895167", "id": "7505486508", "tags": "california celebration fourthofjuly albany july4th dsc4691"}, {"datetaken": "2012-07-04 12:42:45", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8164/7505490446_166ea9745d_o.jpg", "secret": "afd98a20e1", "media": "photo", "latitude": "37.895167", "id": "7505490446", "tags": "california celebration fourthofjuly albany july4th dsc4693"}, {"datetaken": "2012-07-04 12:43:50", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7121/7505494310_171bf744e2_o.jpg", "secret": "2e7d3777d9", "media": "photo", "latitude": "37.895167", "id": "7505494310", "tags": "california celebration fourthofjuly albany july4th dsc4696"}, {"datetaken": "2012-07-04 12:44:23", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7120/7505498606_06a6a43940_o.jpg", "secret": "594a9f2137", "media": "photo", "latitude": "37.895167", "id": "7505498606", "tags": "california celebration fourthofjuly albany july4th dsc4697"}, {"datetaken": "2012-07-04 12:45:12", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7116/7505502480_c170f2b355_o.jpg", "secret": "bdc27c9d05", "media": "photo", "latitude": "37.895167", "id": "7505502480", "tags": "california celebration fourthofjuly albany july4th dsc4698"}, {"datetaken": "2012-07-04 12:45:31", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8011/7505506152_859d7674a9_o.jpg", "secret": "b7fea5a762", "media": "photo", "latitude": "37.895167", "id": "7505506152", "tags": "california celebration fourthofjuly albany july4th dsc4699"}, {"datetaken": "2012-07-04 12:49:55", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8153/7505509764_a2db04b828_o.jpg", "secret": "2f36a8074e", "media": "photo", "latitude": "37.895167", "id": "7505509764", "tags": "california celebration fourthofjuly albany july4th dsc4702"}, {"datetaken": "2012-07-04 12:59:39", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8431/7505513882_8f31fb1812_o.jpg", "secret": "f91ce3149e", "media": "photo", "latitude": "37.895167", "id": "7505513882", "tags": "california celebration fourthofjuly albany july4th dsc4704"}, {"datetaken": "2012-07-04 12:59:42", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7135/7505517374_3bc4cb4616_o.jpg", "secret": "2b1a7dbbff", "media": "photo", "latitude": "37.895167", "id": "7505517374", "tags": "california celebration fourthofjuly albany july4th dsc4705"}, {"datetaken": "2012-07-04 13:01:15", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7259/7505521704_a68f776c21_o.jpg", "secret": "a31b7f52d1", "media": "photo", "latitude": "37.895167", "id": "7505521704", "tags": "california celebration fourthofjuly albany july4th dsc4707"}, {"datetaken": "2012-07-04 13:02:46", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7130/7505525986_fc5da1df12_o.jpg", "secret": "3776be3b46", "media": "photo", "latitude": "37.895167", "id": "7505525986", "tags": "california celebration fourthofjuly albany july4th dsc4708"}, {"datetaken": "2012-07-04 13:07:42", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8289/7505530324_49394248bf_o.jpg", "secret": "d185bbbf22", "media": "photo", "latitude": "37.895167", "id": "7505530324", "tags": "california celebration fourthofjuly albany july4th dsc4711"}, {"datetaken": "2012-07-04 13:37:01", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7114/7505534948_034bab2257_o.jpg", "secret": "2593b889e8", "media": "photo", "latitude": "37.895167", "id": "7505534948", "tags": "california celebration fourthofjuly albany july4th dsc4716"}, {"datetaken": "2012-07-04 13:43:23", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7253/7505539578_d28e29964c_o.jpg", "secret": "82f7bf0951", "media": "photo", "latitude": "37.895167", "id": "7505539578", "tags": "california celebration fourthofjuly albany july4th dsc4723"}, {"datetaken": "2012-07-04 13:47:26", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8011/7505543884_9e7299913a_o.jpg", "secret": "2e5fe47a3a", "media": "photo", "latitude": "37.895167", "id": "7505543884", "tags": "california celebration fourthofjuly albany july4th dsc4730"}, {"datetaken": "2012-07-04 13:47:40", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7246/7505548038_1719805bf3_o.jpg", "secret": "f18abdb6d2", "media": "photo", "latitude": "37.895167", "id": "7505548038", "tags": "california celebration fourthofjuly albany july4th dsc4731"}, {"datetaken": "2012-07-04 13:47:49", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7275/7505552412_041c3564b5_o.jpg", "secret": "d7dd1e6b78", "media": "photo", "latitude": "37.895167", "id": "7505552412", "tags": "california celebration fourthofjuly albany july4th dsc4732"}, {"datetaken": "2012-07-04 13:47:52", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7136/7505556806_de66706b4e_o.jpg", "secret": "2f9fb778d7", "media": "photo", "latitude": "37.895167", "id": "7505556806", "tags": "california celebration fourthofjuly albany july4th dsc4733"}, {"datetaken": "2012-07-04 13:48:05", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7112/7505561246_06a836e377_o.jpg", "secret": "7bcfb4c649", "media": "photo", "latitude": "37.895167", "id": "7505561246", "tags": "california celebration fourthofjuly albany july4th dsc4735"}, {"datetaken": "2012-07-04 13:48:18", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7135/7505566116_92c3e6456d_o.jpg", "secret": "ee4b354b56", "media": "photo", "latitude": "37.895167", "id": "7505566116", "tags": "california celebration fourthofjuly albany july4th dsc4737"}, {"datetaken": "2012-07-04 13:49:02", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7106/7505570658_c5fd88ac8f_o.jpg", "secret": "8abc623c04", "media": "photo", "latitude": "37.895167", "id": "7505570658", "tags": "california celebration fourthofjuly albany july4th dsc4738"}, {"datetaken": "2012-07-04 14:30:34", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7278/7505574908_b9f4a1cc92_o.jpg", "secret": "12a7d7599c", "media": "photo", "latitude": "37.895167", "id": "7505574908", "tags": "california celebration fourthofjuly albany july4th dsc4739"}, {"datetaken": "2012-07-04 14:52:53", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7140/7505584646_cdace7cd12_o.jpg", "secret": "8521b98265", "media": "photo", "latitude": "37.895167", "id": "7505584646", "tags": "california celebration fourthofjuly albany july4th dsc4748"}, {"datetaken": "2012-07-04 15:07:51", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8012/7505593008_fdba10f7b1_o.jpg", "secret": "e3a0b91314", "media": "photo", "latitude": "37.895167", "id": "7505593008", "tags": "california celebration fourthofjuly albany july4th dsc4752"}, {"datetaken": "2012-07-04 15:34:06", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7264/7505601414_5161dbdec7_o.jpg", "secret": "bb5319c7be", "media": "photo", "latitude": "37.895167", "id": "7505601414", "tags": "california celebration fourthofjuly albany july4th dsc4757"}, {"datetaken": "2012-07-04 15:34:43", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8423/7505609786_1331f4f415_o.jpg", "secret": "3974327ee1", "media": "photo", "latitude": "37.895167", "id": "7505609786", "tags": "california celebration fourthofjuly albany july4th dsc4760"}, {"datetaken": "2012-07-04 15:36:23", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8141/7505613686_a9e73a8934_o.jpg", "secret": "9d3b3a5701", "media": "photo", "latitude": "37.895167", "id": "7505613686", "tags": "california celebration fourthofjuly albany july4th dsc4762"}, {"datetaken": "2012-07-04 16:26:04", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm8.staticflickr.com/7280/7505621632_409c0c29ab_o.jpg", "secret": "f632e75282", "media": "photo", "latitude": "37.895167", "id": "7505621632", "tags": "california celebration fourthofjuly albany july4th dsc4765"}, {"datetaken": "2012-07-04 16:58:03", "license": "2", "title": "Albany, CA July 4th Celebration", "text": "", "album_id": "72157630429638746", "longitude": "-122.290749", "url_o": "https://farm9.staticflickr.com/8165/7505625224_60cb0666b8_o.jpg", "secret": "87db9a03be", "media": "photo", "latitude": "37.895167", "id": "7505625224", "tags": "california celebration fourthofjuly albany july4th dsc4767"}, {"datetaken": "2012-05-20 13:26:30", "license": "5", "title": "Parlor 02 - Peterson House - Washington DC - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026281", "url_o": "https://farm8.staticflickr.com/7130/7481529114_778e3171d9_o.jpg", "secret": "2fbfa9f5c0", "media": "photo", "latitude": "38.896740", "id": "7481529114", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:26:44", "license": "5", "title": "Front bedroom - Peterson House - Washington DC - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026195", "url_o": "https://farm9.staticflickr.com/8012/7481528760_8bfb28b3cd_o.jpg", "secret": "ff4d4949e0", "media": "photo", "latitude": "38.896673", "id": "7481528760", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:27:05", "license": "5", "title": "Parlor 01 - Peterson House - Washington DC - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026216", "url_o": "https://farm9.staticflickr.com/8003/7481528662_304b1b8063_o.jpg", "secret": "9beee87d5d", "media": "photo", "latitude": "38.896690", "id": "7481528662", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:27:48", "license": "5", "title": "Room where Abraham Lincoln died 04 - Peterson House - Washington DC - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026302", "url_o": "https://farm8.staticflickr.com/7278/7481528436_3acd797a91_o.jpg", "secret": "b8f5e36f6b", "media": "photo", "latitude": "38.896723", "id": "7481528436", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:27:55", "license": "5", "title": "Abraham Lincoln death bed - Peterson House - Washington DC - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026259", "url_o": "https://farm9.staticflickr.com/8004/7481527120_ddf2d3db4f_o.jpg", "secret": "60379c3af7", "media": "photo", "latitude": "38.896673", "id": "7481527120", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:27:59", "license": "5", "title": "Room where Abraham Lincoln died 03 - Peterson House - Washington DC - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026324", "url_o": "https://farm9.staticflickr.com/8013/7481527960_318bf9b186_o.jpg", "secret": "37994c1087", "media": "photo", "latitude": "38.896723", "id": "7481527960", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:28:02", "license": "5", "title": "Room where Abraham Lincoln died 02 - Peterson House - Washington DC - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026324", "url_o": "https://farm9.staticflickr.com/8004/7481527490_2486987a31_o.jpg", "secret": "500ddcc134", "media": "photo", "latitude": "38.896656", "id": "7481527490", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:28:04", "license": "5", "title": "Room where Abraham Lincoln died 01 - Peterson House - Washington DC - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026259", "url_o": "https://farm9.staticflickr.com/8015/7481527258_556421300b_o.jpg", "secret": "f7a592eee9", "media": "photo", "latitude": "38.896623", "id": "7481527258", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:30:44", "license": "5", "title": "Next Day exhibit - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026216", "url_o": "https://farm9.staticflickr.com/8154/7481531202_7ba3431d45_o.jpg", "secret": "412022c12f", "media": "photo", "latitude": "38.896690", "id": "7481531202", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:31:05", "license": "5", "title": "News display - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026281", "url_o": "https://farm9.staticflickr.com/8158/7481530980_28e2036807_o.jpg", "secret": "2100a74809", "media": "photo", "latitude": "38.896640", "id": "7481530980", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:32:53", "license": "5", "title": "Replica of Abraham Lincoln coffin in funeral train - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026302", "url_o": "https://farm8.staticflickr.com/7110/7481530624_ec77fb4cb8_o.jpg", "secret": "5d9c8f5b68", "media": "photo", "latitude": "38.896823", "id": "7481530624", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:33:34", "license": "5", "title": "Fringe cut from Abraham Lincoln catafalque - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026216", "url_o": "https://farm8.staticflickr.com/7110/7481530412_8efd97a229_o.jpg", "secret": "69e6cfa841", "media": "photo", "latitude": "38.896673", "id": "7481530412", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:33:41", "license": "5", "title": "Tassels from Abraham Lincoln catafalque - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026238", "url_o": "https://farm9.staticflickr.com/8008/7481530278_8b56aea750_o.jpg", "secret": "f65965eca7", "media": "photo", "latitude": "38.896690", "id": "7481530278", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:34:15", "license": "5", "title": "Abraham Lincoln funeral train key - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026281", "url_o": "https://farm9.staticflickr.com/8028/7481530116_27b2716f01_o.jpg", "secret": "82e9bb2638", "media": "photo", "latitude": "38.896706", "id": "7481530116", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:34:18", "license": "5", "title": "Lincoln coffin handle - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026302", "url_o": "https://farm8.staticflickr.com/7123/7481529900_2376c3608d_o.jpg", "secret": "b797b6536a", "media": "photo", "latitude": "38.896756", "id": "7481529900", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:41:40", "license": "5", "title": "John Wilkes Booth keys - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026216", "url_o": "https://farm9.staticflickr.com/8147/7481529338_1a7f436175_o.jpg", "secret": "293fe068b4", "media": "photo", "latitude": "38.896706", "id": "7481529338", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:42:08", "license": "5", "title": "Manhunt exhibit - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026216", "url_o": "https://farm9.staticflickr.com/8005/7481532222_d78e6dc68e_o.jpg", "secret": "2a591004a9", "media": "photo", "latitude": "38.896656", "id": "7481532222", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:42:26", "license": "5", "title": "Rope from assassin nooses - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026281", "url_o": "https://farm9.staticflickr.com/8148/7481532028_17337f2704_o.jpg", "secret": "253a96e385", "media": "photo", "latitude": "38.896690", "id": "7481532028", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:42:31", "license": "5", "title": "Piece of rope from Mary Surrat noose - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026302", "url_o": "https://farm8.staticflickr.com/7277/7481531794_6f0a20fac1_o.jpg", "secret": "1cc8fc99b1", "media": "photo", "latitude": "38.896706", "id": "7481531794", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:43:20", "license": "5", "title": "Replica of barn door where Booth died - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026259", "url_o": "https://farm9.staticflickr.com/8149/7481531682_19eab0b1fc_o.jpg", "secret": "506b84f3b8", "media": "photo", "latitude": "38.896673", "id": "7481531682", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:43:44", "license": "5", "title": "Assassins prison exhibit - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026259", "url_o": "https://farm8.staticflickr.com/7270/7481531492_3964a05dee_o.jpg", "secret": "0f381c7908", "media": "photo", "latitude": "38.896740", "id": "7481531492", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 13:44:41", "license": "5", "title": "Tower of Books 01 - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026238", "url_o": "https://farm9.staticflickr.com/8164/7481533010_34b2250040_o.jpg", "secret": "2fab09fb7c", "media": "photo", "latitude": "38.896740", "id": "7481533010", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 14:01:30", "license": "5", "title": "Tower of Books plaque - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026216", "url_o": "https://farm8.staticflickr.com/7252/7481532426_3e76cddb8a_o.jpg", "secret": "4d3b252352", "media": "photo", "latitude": "38.896673", "id": "7481532426", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 14:01:37", "license": "5", "title": "Tower of Books 03 - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026195", "url_o": "https://farm8.staticflickr.com/7271/7481533326_8703d959ab_o.jpg", "secret": "579dbccf44", "media": "photo", "latitude": "38.896673", "id": "7481533326", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 14:01:45", "license": "5", "title": "Tower of Books 05 - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026281", "url_o": "https://farm9.staticflickr.com/8026/7481534268_ddfd64219d_o.jpg", "secret": "852412082d", "media": "photo", "latitude": "38.896640", "id": "7481534268", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 14:01:52", "license": "5", "title": "Tower of Books 04 - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026302", "url_o": "https://farm9.staticflickr.com/8161/7481533954_4ae4e3cca3_o.jpg", "secret": "df78243ddf", "media": "photo", "latitude": "38.896723", "id": "7481533954", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2012-05-20 14:02:03", "license": "5", "title": "Tower of Books 02 - Abraham Lincoln Assassination Museum - Peterson House - 2012-05-20", "text": "", "album_id": "72157630375999852", "longitude": "-77.026259", "url_o": "https://farm9.staticflickr.com/8155/7481533196_4b047ba3d0_o.jpg", "secret": "ca12f29945", "media": "photo", "latitude": "38.896656", "id": "7481533196", "tags": "washingtondc housewherelincolndied petersenhouse"}, {"datetaken": "2010-12-01 12:36:20", "license": "1", "title": "wad 24.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5042/5224736270_e178ea451f_o.jpg", "secret": "a9b6398891", "media": "photo", "latitude": "0", "id": "5224736270", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:00:33", "license": "1", "title": "wad 23.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/5224736184_afeb6377bb_o.jpg", "secret": "3f00c44f32", "media": "photo", "latitude": "0", "id": "5224736184", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:00:45", "license": "1", "title": "wad 22.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4154/5224736096_e799aaa235_o.jpg", "secret": "9ba870b3aa", "media": "photo", "latitude": "0", "id": "5224736096", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:01:11", "license": "1", "title": "wad 21.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4107/5224139371_1a2e579a60_o.jpg", "secret": "a654f90f44", "media": "photo", "latitude": "0", "id": "5224139371", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:02:05", "license": "1", "title": "wad 20.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4107/5224139303_22b6e4ae67_o.jpg", "secret": "1ca45fc555", "media": "photo", "latitude": "0", "id": "5224139303", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:02:16", "license": "1", "title": "wad 19.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5049/5224735810_d5c7a03ec6_o.jpg", "secret": "a823578df4", "media": "photo", "latitude": "0", "id": "5224735810", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:02:48", "license": "1", "title": "wad 18.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5129/5224735720_ef95a94f11_o.jpg", "secret": "1edc81c062", "media": "photo", "latitude": "0", "id": "5224735720", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:05:36", "license": "1", "title": "wad 17.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5130/5224138965_da35182cf6_o.jpg", "secret": "a817eeb61d", "media": "photo", "latitude": "0", "id": "5224138965", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:06:55", "license": "1", "title": "wad 16.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5285/5224735524_cc602a34f5_o.jpg", "secret": "380461e019", "media": "photo", "latitude": "0", "id": "5224735524", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:08:09", "license": "1", "title": "wad 15.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5168/5224735440_336309196c_o.jpg", "secret": "7ea050e980", "media": "photo", "latitude": "0", "id": "5224735440", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:11:29", "license": "1", "title": "wad 14.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5248/5224138725_1ea9f2c51f_o.jpg", "secret": "1f9204e515", "media": "photo", "latitude": "0", "id": "5224138725", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:20:24", "license": "1", "title": "wad 13.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5006/5224138619_24fe86dc64_o.jpg", "secret": "4e464d493c", "media": "photo", "latitude": "0", "id": "5224138619", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:22:43", "license": "1", "title": "wad 12.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4125/5224735224_3df4a05b44_o.jpg", "secret": "4a713739ea", "media": "photo", "latitude": "0", "id": "5224735224", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:24:14", "license": "1", "title": "wad 11.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5208/5224138449_22d4414d38_o.jpg", "secret": "79f3126833", "media": "photo", "latitude": "0", "id": "5224138449", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:24:32", "license": "1", "title": "wad 10.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5084/5224735074_bf7b80a181_o.jpg", "secret": "dda96a22bb", "media": "photo", "latitude": "0", "id": "5224735074", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:25:21", "license": "1", "title": "365/335: In loving memory...", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5247/5224140259_5f626f44b6_o.jpg", "secret": "a3dc653c0e", "media": "photo", "latitude": "0", "id": "5224140259", "tags": "aids hiv whitehouse protest funeral 365 project365 actupphiladelphia project365335obama"}, {"datetaken": "2010-12-01 14:26:22", "license": "1", "title": "wad 8.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/5224736826_b25365c7ed_o.jpg", "secret": "2e6bdceafb", "media": "photo", "latitude": "0", "id": "5224736826", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:32:14", "license": "1", "title": "wad 7.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5043/5224140067_d82cef5d5c_o.jpg", "secret": "9211f77013", "media": "photo", "latitude": "0", "id": "5224140067", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:32:48", "license": "1", "title": "wad 6.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4092/5224736630_ae8c1e9b2e_o.jpg", "secret": "46bec3f2ca", "media": "photo", "latitude": "0", "id": "5224736630", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:32:53", "license": "1", "title": "wad 5.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/5224139905_32d578aac1_o.jpg", "secret": "aafa8340fa", "media": "photo", "latitude": "0", "id": "5224139905", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:34:53", "license": "1", "title": "wad 4.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4126/5224139823_804df7860d_o.jpg", "secret": "6817ae73ae", "media": "photo", "latitude": "0", "id": "5224139823", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:34:57", "license": "1", "title": "wad 3.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4087/5224139681_772d2c582e_o.jpg", "secret": "e80234c976", "media": "photo", "latitude": "0", "id": "5224139681", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:35:01", "license": "1", "title": "wad 2.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5244/5224735864_af50f4ba3d_o.jpg", "secret": "65e59569e5", "media": "photo", "latitude": "0", "id": "5224735864", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-12-01 14:35:16", "license": "1", "title": "wad 1.jpg", "text": "", "album_id": "72157625509057442", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/5224734982_5c267342ba_o.jpg", "secret": "20017ec30d", "media": "photo", "latitude": "0", "id": "5224734982", "tags": "aids hiv whitehouse protest funeral obama actupphiladelphia"}, {"datetaken": "2010-10-02 11:49:11", "license": "2", "title": "Books by the Banks", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4113/5045153128_5b8c4a59c3_o.jpg", "secret": "295ba5f5c7", "media": "photo", "latitude": "0", "id": "5045153128", "tags": "book downtown books conventioncenter 2010 dukeenergycenter booksbythebanks"}, {"datetaken": "2010-10-02 12:04:58", "license": "2", "title": "Panel", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/5045153394_5121e5ffc4_o.jpg", "secret": "bb2c610dfb", "media": "photo", "latitude": "0", "id": "5045153394", "tags": "book downtown panel books conventioncenter 2010 dukeenergycenter booksbythebanks contemporaryfiction"}, {"datetaken": "2010-10-02 12:49:12", "license": "2", "title": "Augusten Burroughs", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/5044531859_381b8e5db2_o.jpg", "secret": "51075883fc", "media": "photo", "latitude": "0", "id": "5044531859", "tags": "book downtown books conventioncenter 2010 augustenburroughs dukeenergycenter booksbythebanks"}, {"datetaken": "2010-10-02 12:49:21", "license": "2", "title": "Author room", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/5044532147_7ac747d0d4_o.jpg", "secret": "313828593c", "media": "photo", "latitude": "0", "id": "5044532147", "tags": "book downtown books conventioncenter 2010 dukeenergycenter booksbythebanks authorroom"}, {"datetaken": "2010-10-02 12:49:35", "license": "2", "title": "Announcements", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4085/5044532425_ea4e838b2b_o.jpg", "secret": "7837bf1cef", "media": "photo", "latitude": "0", "id": "5044532425", "tags": "book downtown books conventioncenter 2010 dukeenergycenter booksbythebanks authorroom"}, {"datetaken": "2010-10-02 12:52:22", "license": "2", "title": "William Lynwood Montell", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/5044532685_9d476a1239_o.jpg", "secret": "45018a6de7", "media": "photo", "latitude": "0", "id": "5044532685", "tags": "book downtown books autograph conventioncenter author 2010 signed dukeenergycenter booksbythebanks williamlynwoodmontell talesfromkentuckyfuneralhomes"}, {"datetaken": "2010-10-02 13:01:36", "license": "2", "title": "John Maggard", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/5045154712_7b884d5c9b_o.jpg", "secret": "ae27cc7bb8", "media": "photo", "latitude": "0", "id": "5045154712", "tags": "poster book downtown books autograph conventioncenter illustrator 2010 signed dukeenergycenter booksbythebanks"}, {"datetaken": "2010-10-02 13:05:01", "license": "2", "title": "Paul Melko", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4130/5044533129_5a6164ebf5_o.jpg", "secret": "1c852a34be", "media": "photo", "latitude": "0", "id": "5044533129", "tags": "book downtown books autograph conventioncenter author 2010 signed dukeenergycenter thewallsoftheuniverse paulmelko booksbythebanks"}, {"datetaken": "2010-10-02 13:09:40", "license": "2", "title": "Curtis Sittenfeld", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4091/5045155136_b0b0f047e5_o.jpg", "secret": "a382d9d61a", "media": "photo", "latitude": "0", "id": "5045155136", "tags": "book downtown books autograph conventioncenter author 2010 signed curtissittenfeld dukeenergycenter americanwife booksbythebanks"}, {"datetaken": "2010-10-02 13:15:43", "license": "2", "title": "S. Plunkett, C. Tyler", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/5044533781_566f20a979_o.jpg", "secret": "ff36d64245", "media": "photo", "latitude": "0", "id": "5044533781", "tags": "comics book downtown books autograph comicbook conventioncenter graphicnovel author 2010 signed youllneverknow dukeenergycenter booksbythebanks graphicmemoir ctyler splunkett theworldofawaywardcomicbookartist"}, {"datetaken": "2010-10-02 13:16:42", "license": "2", "title": "C. Tyler", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4126/5044534027_4d84ef92d8_o.jpg", "secret": "2e23c3b195", "media": "photo", "latitude": "0", "id": "5044534027", "tags": "book downtown books autograph conventioncenter author 2010 signed youllneverknow dukeenergycenter booksbythebanks graphicmemoir ctyler"}, {"datetaken": "2010-10-02 13:29:04", "license": "2", "title": "Checkout", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/5045156090_1c72dc8b46_o.jpg", "secret": "a8e722172c", "media": "photo", "latitude": "0", "id": "5045156090", "tags": "book downtown books conventioncenter register checkout 2010 josephbethbooksellers dukeenergycenter booksbythebanks"}, {"datetaken": "2010-10-02 13:29:15", "license": "2", "title": "Author room", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4083/5044534567_024a7c310b_o.jpg", "secret": "82d513b2f4", "media": "photo", "latitude": "0", "id": "5044534567", "tags": "book downtown books conventioncenter 2010 dukeenergycenter booksbythebanks authorroom"}, {"datetaken": "2010-10-02 13:35:19", "license": "2", "title": "Paper chain", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/5045156688_be87202fe6_o.jpg", "secret": "842a22b83d", "media": "photo", "latitude": "0", "id": "5045156688", "tags": "book downtown books conventioncenter 2010 paperchain dukeenergycenter booksbythebanks"}, {"datetaken": "2010-10-02 14:52:28", "license": "2", "title": "Book haul", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4124/5045157050_8a8af2fa98_o.jpg", "secret": "13487c76bd", "media": "photo", "latitude": "0", "id": "5045157050", "tags": "book downtown books autograph conventioncenter 2010 signed youllneverknow dukeenergycenter thewallsoftheuniverse americanwife booksbythebanks bookhaul talesfromkentuckyfuneralhomes theworldofawaywardcomicbookartist"}, {"datetaken": "2010-10-02 14:52:45", "license": "2", "title": "Book haul", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4113/5045157290_5f4fa7aac1_o.jpg", "secret": "ab13fc5b22", "media": "photo", "latitude": "0", "id": "5045157290", "tags": "book downtown books autograph conventioncenter 2010 signed youllneverknow dukeenergycenter booksbythebanks bookhaul theworldofawaywardcomicbookartist"}, {"datetaken": "2010-10-02 14:52:58", "license": "2", "title": "Book haul", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/5044535837_a55c17b547_o.jpg", "secret": "e3bdddeef4", "media": "photo", "latitude": "0", "id": "5044535837", "tags": "book downtown books autograph conventioncenter 2010 signed dukeenergycenter thewallsoftheuniverse americanwife booksbythebanks talesfromkentuckyfuneralhomes"}, {"datetaken": "2010-10-02 14:53:15", "license": "2", "title": "American Wife, Curtis Sittenfeld", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/5045157862_dcace789a1_o.jpg", "secret": "03b1313699", "media": "photo", "latitude": "0", "id": "5045157862", "tags": "book downtown books autograph conventioncenter 2010 signed curtissittenfeld dukeenergycenter americanwife booksbythebanks"}, {"datetaken": "2010-10-02 14:53:35", "license": "2", "title": "The Walls of the Universe, Paul Melko", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/5044536345_5151221eff_o.jpg", "secret": "d1d34ea65a", "media": "photo", "latitude": "0", "id": "5044536345", "tags": "book downtown books autograph conventioncenter 2010 signed dukeenergycenter thewallsoftheuniverse paulmelko booksbythebanks"}, {"datetaken": "2010-10-02 14:53:45", "license": "2", "title": "The Walls of the Universe, Paul Melko", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/5045158312_e2dd2763fe_o.jpg", "secret": "c4c33afeda", "media": "photo", "latitude": "0", "id": "5045158312", "tags": "book downtown books autograph conventioncenter 2010 signed dukeenergycenter thewallsoftheuniverse paulmelko booksbythebanks"}, {"datetaken": "2010-10-02 14:54:01", "license": "2", "title": "Tales from Kentucky Funeral Homes, William Lynwood Montell", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/5044536803_a854e0ffce_o.jpg", "secret": "7f9e155701", "media": "photo", "latitude": "0", "id": "5044536803", "tags": "book downtown books autograph conventioncenter 2010 signed dukeenergycenter booksbythebanks williamlynwoodmontell talesfromkentuckyfuneralhomes"}, {"datetaken": "2010-10-02 14:54:13", "license": "2", "title": "The World of a Wayward Comic Book Artist, S. Plunkett", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/5045158822_3214a78654_o.jpg", "secret": "484fb7ab32", "media": "photo", "latitude": "0", "id": "5045158822", "tags": "book downtown books autograph conventioncenter 2010 signed dukeenergycenter booksbythebanks splunkett theworldofawaywardcomicbookartist"}, {"datetaken": "2010-10-02 14:54:29", "license": "2", "title": "The World of a Wayward Comic Book Artist, S. Plunkett", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4107/5045159064_0a41bc7047_o.jpg", "secret": "1ff63f22be", "media": "photo", "latitude": "0", "id": "5045159064", "tags": "book downtown books autograph conventioncenter 2010 signed dukeenergycenter booksbythebanks splunkett theworldofawaywardcomicbookartist"}, {"datetaken": "2010-10-02 14:54:47", "license": "2", "title": "You'll Never Know, C. Tyler", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/5044537507_7f0c6a6dc9_o.jpg", "secret": "7a9377ea0d", "media": "photo", "latitude": "0", "id": "5044537507", "tags": "book downtown books autograph conventioncenter 2010 signed youllneverknow dukeenergycenter booksbythebanks ctyler"}, {"datetaken": "2010-10-02 14:54:58", "license": "2", "title": "You'll Never Know, C. Tyler", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4149/5045159578_8bde53fd50_o.jpg", "secret": "aec246279e", "media": "photo", "latitude": "0", "id": "5045159578", "tags": "book downtown books autograph conventioncenter 2010 signed youllneverknow dukeenergycenter booksbythebanks ctyler"}, {"datetaken": "2010-10-02 14:56:31", "license": "2", "title": "Books by the Banks poster, John Maggard", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/5044538049_177ef10a6b_o.jpg", "secret": "3b0666deaf", "media": "photo", "latitude": "0", "id": "5044538049", "tags": "poster book downtown books autograph conventioncenter 2010 signed johnmaggard dukeenergycenter booksbythebanks"}, {"datetaken": "2010-10-02 14:56:47", "license": "2", "title": "Books by the Banks poster, John Maggard", "text": "", "album_id": "72157625080616410", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4149/5044538245_f6fb352cf3_o.jpg", "secret": "789fac622a", "media": "photo", "latitude": "0", "id": "5044538245", "tags": "poster book downtown books autograph conventioncenter 2010 signed johnmaggard dukeenergycenter booksbythebanks"}, {"datetaken": "2007-01-02 13:31:55", "license": "4", "title": "06.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/343877262_17662945a2_o.jpg", "secret": "17662945a2", "media": "photo", "latitude": "0", "id": "343877262", "tags": "southwest washingtondc dc traffic wdc highways swwdc 2007 southwestfreeway january2007 geraldrfordfuneralwdc 02january2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 08:23:17", "license": "4", "title": "02.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/343870134_d09323262f_o.jpg", "secret": "d09323262f", "media": "photo", "latitude": "0", "id": "343870134", "tags": "southwest washingtondc dc traffic wdc highways swwdc 2007 mpd mpdc southwestfreeway january2007 geraldrfordfuneralwdc 02january2007 mpdc2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 08:23:17", "license": "4", "title": "03.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/343870137_10d78f6131_o.jpg", "secret": "10d78f6131", "media": "photo", "latitude": "0", "id": "343870137", "tags": "southwest washingtondc dc cops traffic police wdc highways swwdc 2007 mpd mpdc copduty southwestfreeway january2007 geraldrfordfuneralwdc copduty2007 02january2007 mpdc2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 08:33:10", "license": "4", "title": "04.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/343877258_ae85f7ffdd_o.jpg", "secret": "ae85f7ffdd", "media": "photo", "latitude": "0", "id": "343877258", "tags": "southwest washingtondc dc cops traffic police wdc highways swwdc 2007 mpd mpdc copduty southwestfreeway january2007 geraldrfordfuneralwdc copduty2007 02january2007 mpdc2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 08:33:10", "license": "4", "title": "05.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/343877260_306e078e9c_o.jpg", "secret": "306e078e9c", "media": "photo", "latitude": "0", "id": "343877260", "tags": "southwest washingtondc dc cops traffic police wdc highways swwdc 2007 mpd mpdc copduty southwestfreeway january2007 geraldrfordfuneralwdc copduty2007 02january2007 mpdc2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 08:38:20", "license": "4", "title": "07.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/343881685_d1df40ad2c_o.jpg", "secret": "d1df40ad2c", "media": "photo", "latitude": "0", "id": "343881685", "tags": "southwest washingtondc dc traffic wdc highways swwdc 2007 southwestfreeway january2007 geraldrfordfuneralwdc 02january2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 08:38:20", "license": "4", "title": "08.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/343881686_e663bab9ce_o.jpg", "secret": "e663bab9ce", "media": "photo", "latitude": "0", "id": "343881686", "tags": "southwest washingtondc dc cops traffic police wdc highways swwdc 2007 motorcyclecops uspp copduty southwestfreeway january2007 geraldrfordfuneralwdc copduty2007 uspp2007 02january2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 08:38:20", "license": "4", "title": "09.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/343881687_38f6beb40d_o.jpg", "secret": "38f6beb40d", "media": "photo", "latitude": "0", "id": "343881687", "tags": "southwest washingtondc dc cops traffic police wdc highways swwdc 2007 motorcyclecops uspp copduty southwestfreeway january2007 geraldrfordfuneralwdc copduty2007 uspp2007 02january2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 08:43:57", "license": "4", "title": "10.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/343885892_b8ceaeea1a_o.jpg", "secret": "b8ceaeea1a", "media": "photo", "latitude": "0", "id": "343885892", "tags": "southwest washingtondc dc cops traffic police wdc highways swwdc 2007 mpd mpdc copduty southwestfreeway january2007 geraldrfordfuneralwdc copduty2007 02january2007 mpdc2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 08:43:57", "license": "4", "title": "11.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/343885896_593fc163cd_o.jpg", "secret": "593fc163cd", "media": "photo", "latitude": "0", "id": "343885896", "tags": "southwest washingtondc dc cops traffic police wdc highways swwdc 2007 mpd mpdc copduty southwestfreeway january2007 geraldrfordfuneralwdc copduty2007 02january2007 mpdc2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 08:43:57", "license": "4", "title": "12.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/343885898_5785c56858_o.jpg", "secret": "5785c56858", "media": "photo", "latitude": "0", "id": "343885898", "tags": "southwest washingtondc dc traffic wdc highways swwdc 2007 southwestfreeway january2007 geraldrfordfuneralwdc 02january2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 08:48:27", "license": "4", "title": "13.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/343888992_451d42376d_o.jpg", "secret": "451d42376d", "media": "photo", "latitude": "0", "id": "343888992", "tags": "southwest washingtondc dc traffic wdc highways swwdc 2007 southwestfreeway january2007 geraldrfordfuneralwdc 02january2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 08:48:27", "license": "4", "title": "14.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/343888993_0405e4fe47_o.jpg", "secret": "0405e4fe47", "media": "photo", "latitude": "0", "id": "343888993", "tags": "southwest washingtondc dc traffic wdc highways swwdc 2007 southwestfreeway january2007 geraldrfordfuneralwdc 02january2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 08:48:28", "license": "4", "title": "15.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/343888994_49cd842132_o.jpg", "secret": "49cd842132", "media": "photo", "latitude": "0", "id": "343888994", "tags": "southwest washingtondc dc cops traffic police wdc highways swwdc 2007 mpd mpdc copduty southwestfreeway january2007 geraldrfordfuneralwdc copduty2007 02january2007 mpdc2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 08:50:39", "license": "4", "title": "16.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/343890826_a47296a523_o.jpg", "secret": "a47296a523", "media": "photo", "latitude": "0", "id": "343890826", "tags": "southwest washingtondc dc cops traffic police wdc highways swwdc 2007 mpd mpdc copduty southwestfreeway january2007 geraldrfordfuneralwdc copduty2007 02january2007 mpdc2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 09:04:09", "license": "4", "title": "17.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/343900142_7354199b58_o.jpg", "secret": "7354199b58", "media": "photo", "latitude": "0", "id": "343900142", "tags": "southwest washingtondc dc cops traffic police wdc highways swwdc 2007 mpd mpdc copduty southwestfreeway january2007 geraldrfordfuneralwdc copduty2007 02january2007 mpdc2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 09:04:09", "license": "4", "title": "18.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/343900144_9ce87f32f5_o.jpg", "secret": "9ce87f32f5", "media": "photo", "latitude": "0", "id": "343900144", "tags": "southwest washingtondc dc cops traffic police wdc highways swwdc 2007 mpd mpdc copduty southwestfreeway january2007 geraldrfordfuneralwdc copduty2007 02january2007 mpdc2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 09:04:09", "license": "4", "title": "19.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/343900147_9399f3beb2_o.jpg", "secret": "9399f3beb2", "media": "photo", "latitude": "0", "id": "343900147", "tags": "southwest washingtondc dc cops traffic police wdc highways swwdc 2007 mpd mpdc copduty southwestfreeway january2007 geraldrfordfuneralwdc copduty2007 02january2007 mpdc2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 09:04:09", "license": "4", "title": "20.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/343900148_0b0bf752ec_o.jpg", "secret": "0b0bf752ec", "media": "photo", "latitude": "0", "id": "343900148", "tags": "southwest washingtondc dc traffic wdc highways swwdc 2007 southwestfreeway january2007 geraldrfordfuneralwdc 02january2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2007-01-03 09:04:09", "license": "4", "title": "21.GRF.Funeral.Departure.SW.WDC.2jan07", "text": "", "album_id": "72157594456421119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/343900150_38f4a7427c_o.jpg", "secret": "38f4a7427c", "media": "photo", "latitude": "0", "id": "343900150", "tags": "southwest washingtondc dc traffic wdc highways swwdc 2007 southwestfreeway january2007 geraldrfordfuneralwdc 02january2007 grffuneraldeparturewdc02january2007 watersidedrive watersidedrivesw"}, {"datetaken": "2006-12-30 18:27:38", "license": "4", "title": "09.GeraldFord.Arrival.WDC.30dec06", "text": "", "album_id": "72157594460777407", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/339659501_1dab8724b2_o.jpg", "secret": "1dab8724b2", "media": "photo", "latitude": "0", "id": "339659501", "tags": "nightphotography night washingtondc northwest wdc pennsylvaniaavenue dcist nationalgalleryofart holidayseason westwing constitutionavenue nwwdc nationalgalleryofarteastwing december2006 holidayseason2006 30december2006 geraldrfordfuneralwdc grfarrivalwdc30december2006"}, {"datetaken": "2006-12-30 18:40:12", "license": "4", "title": "15.GeraldFord.Arrival.WDC.30dec06", "text": "", "album_id": "72157594460777407", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/339676370_a81e2913b8_o.jpg", "secret": "a81e2913b8", "media": "photo", "latitude": "0", "id": "339676370", "tags": "nightphotography night washingtondc northwest menatwork wdc pennsylvaniaavenue nationalgalleryofart cameramen holidayseason constitutionavenue nwwdc december2006 menatwork2006 holidayseason2006 30december2006 geraldrfordfuneralwdc grfarrivalwdc30december2006 newsgatherers"}, {"datetaken": "2006-12-30 18:40:24", "license": "4", "title": "16.GeraldFord.Arrival.WDC.30dec06", "text": "", "album_id": "72157594460777407", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/339685781_842be69b9e_o.jpg", "secret": "842be69b9e", "media": "photo", "latitude": "0", "id": "339685781", "tags": "nightphotography night washingtondc northwest menatwork wdc pennsylvaniaavenue cameramen holidayseason canadianembassy constitutionavenue nwwdc december2006 menatwork2006 holidayseason2006 30december2006 geraldrfordfuneralwdc grfarrivalwdc30december2006 newsgatherers"}, {"datetaken": "2006-12-30 18:40:51", "license": "4", "title": "17.GeraldFord.Arrival.WDC.30dec06", "text": "", "album_id": "72157594460777407", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/339685786_c770e8a4eb_o.jpg", "secret": "c770e8a4eb", "media": "photo", "latitude": "0", "id": "339685786", "tags": "nightphotography night washingtondc northwest menatwork wdc pennsylvaniaavenue cameramen holidayseason canadianembassy constitutionavenue nwwdc december2006 menatwork2006 holidayseason2006 30december2006 geraldrfordfuneralwdc grfarrivalwdc30december2006 newsgatherers"}, {"datetaken": "2006-12-30 18:41:31", "license": "4", "title": "18.GeraldFord.Arrival.WDC.30dec06", "text": "", "album_id": "72157594460777407", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/339685790_8bf763a7d6_o.jpg", "secret": "8bf763a7d6", "media": "photo", "latitude": "0", "id": "339685790", "tags": "nightphotography night washingtondc northwest menatwork wdc pennsylvaniaavenue nationalgalleryofart cameramen holidayseason westwing constitutionavenue nwwdc nationalgalleryofarteastwing december2006 menatwork2006 holidayseason2006 30december2006 geraldrfordfuneralwdc grfarrivalwdc30december2006 newsgatherers"}, {"datetaken": "2006-12-30 18:41:40", "license": "4", "title": "19.GeraldFord.Arrival.WDC.30dec06", "text": "", "album_id": "72157594460777407", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/339685793_9d74545add_o.jpg", "secret": "9d74545add", "media": "photo", "latitude": "0", "id": "339685793", "tags": "nightphotography night washingtondc northwest menatwork wdc pennsylvaniaavenue nationalgalleryofart cameramen holidayseason westwing constitutionavenue nwwdc nationalgalleryofarteastwing december2006 menatwork2006 holidayseason2006 30december2006 geraldrfordfuneralwdc grfarrivalwdc30december2006 newsgatherers"}, {"datetaken": "2006-12-30 20:25:41", "license": "4", "title": "CameraMan.GRF.Arrival.USC.WDC.30dec06", "text": "", "album_id": "72157594460777407", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/346521947_f7866a4137_o.jpg", "secret": "f7866a4137", "media": "photo", "latitude": "0", "id": "346521947", "tags": "nightphotography night washingtondc northwest menatwork wdc dcist 3rdstreet cameramen holidayseason nwwdc december2006 menatwork2006 fridaysphotooftheweek holidayseason2006 30december2006 geraldrfordfuneralwdc grfarrivalwdc30december2006 newsgatherers 2007fridaysphotosoftheweek fridayphotooftheweek05january2007"}, {"datetaken": "2006-12-31 12:58:31", "license": "4", "title": "11.GeraldFord.Arrival.WDC.30dec06", "text": "", "album_id": "72157594460777407", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/339659506_207e516556_o.jpg", "secret": "207e516556", "media": "photo", "latitude": "0", "id": "339659506", "tags": "nightphotography night washingtondc northwest menatwork wdc pennsylvaniaavenue nationalgalleryofart cameramen holidayseason westwing constitutionavenue nwwdc nationalgalleryofarteastwing december2006 menatwork2006 holidayseason2006 30december2006 geraldrfordfuneralwdc grfarrivalwdc30december2006 newsgatherers"}, {"datetaken": "2006-12-31 12:58:31", "license": "4", "title": "08.GeraldFord.Arrival.WDC.30dec06", "text": "", "album_id": "72157594460777407", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/339659500_8279edb155_o.jpg", "secret": "8279edb155", "media": "photo", "latitude": "0", "id": "339659500", "tags": "nightphotography moon night washingtondc northwest wdc pennsylvaniaavenue nationalgalleryofart holidayseason westwing constitutionavenue nwwdc nationalgalleryofarteastwing december2006 holidayseason2006 30december2006 geraldrfordfuneralwdc grfarrivalwdc30december2006"}, {"datetaken": "2006-12-31 12:58:31", "license": "4", "title": "07.GeraldFord.Arrival.WDC.30dec06", "text": "", "album_id": "72157594460777407", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/339659497_de0ac3ca39_o.jpg", "secret": "de0ac3ca39", "media": "photo", "latitude": "0", "id": "339659497", "tags": "nightphotography moon night washingtondc northwest wdc pennsylvaniaavenue nationalgalleryofart holidayseason westwing constitutionavenue nwwdc nationalgalleryofarteastwing december2006 holidayseason2006 30december2006 geraldrfordfuneralwdc grfarrivalwdc30december2006"}, {"datetaken": "2006-12-31 13:19:11", "license": "4", "title": "13.GeraldFord.Arrival.WDC.30dec06", "text": "", "album_id": "72157594460777407", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/339676362_d887cbceab_o.jpg", "secret": "d887cbceab", "media": "photo", "latitude": "0", "id": "339676362", "tags": "nightphotography night washingtondc northwest menatwork wdc pennsylvaniaavenue cameramen holidayseason constitutionavenue nwwdc december2006 menatwork2006 holidayseason2006 30december2006 geraldrfordfuneralwdc grfarrivalwdc30december2006 newsgatherers"}, {"datetaken": "2010-07-24 15:17:49", "license": "3", "title": "Information Booth", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4114/4862693117_794142c5a8_o.jpg", "secret": "133f573244", "media": "photo", "latitude": "0", "id": "4862693117", "tags": ""}, {"datetaken": "2010-07-24 15:25:26", "license": "3", "title": "Hanging duck", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4863315410_594c1773a4_o.jpg", "secret": "c2fa186803", "media": "photo", "latitude": "0", "id": "4863315410", "tags": ""}, {"datetaken": "2010-07-24 15:39:14", "license": "3", "title": "Elderly man in Chintown", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4862692707_1af1d1d766_o.jpg", "secret": "05738f3c05", "media": "photo", "latitude": "0", "id": "4862692707", "tags": ""}, {"datetaken": "2010-07-24 15:39:52", "license": "3", "title": "Monk", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4862693977_fb22572d80_o.jpg", "secret": "9a0fbaab70", "media": "photo", "latitude": "0", "id": "4862693977", "tags": ""}, {"datetaken": "2010-07-24 16:00:52", "license": "3", "title": "Chinese music", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4863316438_a4e046f07a_o.jpg", "secret": "7fc248241a", "media": "photo", "latitude": "0", "id": "4863316438", "tags": ""}, {"datetaken": "2010-07-24 16:18:09", "license": "3", "title": "Funeral attendee", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4863317038_f4d7d74423_o.jpg", "secret": "6568aa63cc", "media": "photo", "latitude": "0", "id": "4863317038", "tags": ""}, {"datetaken": "2010-07-24 16:34:29", "license": "3", "title": "Summertime in Chinatown", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4863317516_fcbed86b1b_o.jpg", "secret": "77ac3a4c15", "media": "photo", "latitude": "0", "id": "4863317516", "tags": ""}, {"datetaken": "2010-07-24 16:35:39", "license": "3", "title": "Happy Beer", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4863318084_3ffcab7cb6_o.jpg", "secret": "3512b74cf4", "media": "photo", "latitude": "0", "id": "4863318084", "tags": ""}, {"datetaken": "2010-07-24 16:40:33", "license": "3", "title": "Street workers", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4862696987_0ebb1bef54_o.jpg", "secret": "d447d669b7", "media": "photo", "latitude": "0", "id": "4862696987", "tags": ""}, {"datetaken": "2010-07-24 16:41:24", "license": "3", "title": "The tools", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4862697405_2c44cd33f9_o.jpg", "secret": "593f60df9f", "media": "photo", "latitude": "0", "id": "4862697405", "tags": ""}, {"datetaken": "2010-07-24 16:41:32", "license": "3", "title": "The food", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4863319552_e7b470ef77_o.jpg", "secret": "8ac34c4fb4", "media": "photo", "latitude": "0", "id": "4863319552", "tags": ""}, {"datetaken": "2010-07-24 16:58:48", "license": "3", "title": "24K piglets", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4863320108_b32b9a42a5_o.jpg", "secret": "a440730706", "media": "photo", "latitude": "0", "id": "4863320108", "tags": ""}, {"datetaken": "2010-07-24 17:01:14", "license": "3", "title": "Chinese horse?", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4863320640_b96d9d62f3_o.jpg", "secret": "3da33c33f7", "media": "photo", "latitude": "0", "id": "4863320640", "tags": ""}, {"datetaken": "2010-07-24 17:01:52", "license": "3", "title": "Barbershop", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4863321218_4f7ab31b0a_o.jpg", "secret": "f9e645f174", "media": "photo", "latitude": "0", "id": "4863321218", "tags": ""}, {"datetaken": "2010-07-24 17:07:38", "license": "3", "title": "Praying Mantis", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4863321710_08c4037c6e_o.jpg", "secret": "a7c44b341b", "media": "photo", "latitude": "0", "id": "4863321710", "tags": ""}, {"datetaken": "2010-07-24 17:09:27", "license": "3", "title": "Toy", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4862701421_cf41b5a754_o.jpg", "secret": "9f9f339206", "media": "photo", "latitude": "0", "id": "4862701421", "tags": ""}, {"datetaken": "2010-07-24 17:46:19", "license": "3", "title": "Lamp", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4862700773_4b3e71a54a_o.jpg", "secret": "af45cd9303", "media": "photo", "latitude": "0", "id": "4862700773", "tags": ""}, {"datetaken": "2010-07-24 19:09:06", "license": "3", "title": "Mr. Bones", "text": "", "album_id": "72157624534607747", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4862701327_42d137f39f_o.jpg", "secret": "ba91cc163b", "media": "photo", "latitude": "0", "id": "4862701327", "tags": ""}, {"datetaken": "2013-03-05 09:52:13", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8243/8535422392_ab6a5263dc_o.jpg", "secret": "eb112b7f66", "media": "photo", "latitude": "0", "id": "8535422392", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 09:53:52", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8237/8535422116_00c395b344_o.jpg", "secret": "137c3656e5", "media": "photo", "latitude": "0", "id": "8535422116", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 09:56:50", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8379/8534313195_0f8d08c93c_o.jpg", "secret": "84e52f9050", "media": "photo", "latitude": "0", "id": "8534313195", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 09:57:32", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8087/8535421690_6e580f48ea_o.jpg", "secret": "c69695e730", "media": "photo", "latitude": "0", "id": "8535421690", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 09:59:31", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8519/8535421480_6dd59c1581_o.jpg", "secret": "18d9769944", "media": "photo", "latitude": "0", "id": "8535421480", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 10:00:15", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8379/8534312539_0892ea517c_o.jpg", "secret": "8bcc56a72c", "media": "photo", "latitude": "0", "id": "8534312539", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 10:03:55", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8252/8535421058_352ef5ae06_o.jpg", "secret": "01767e09a8", "media": "photo", "latitude": "0", "id": "8535421058", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 10:09:01", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8098/8534312125_00796f6316_o.jpg", "secret": "62d642f4df", "media": "photo", "latitude": "0", "id": "8534312125", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 10:17:37", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8387/8534311907_e84ddf9810_o.jpg", "secret": "1d81b36b5f", "media": "photo", "latitude": "0", "id": "8534311907", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 10:17:41", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8371/8535420446_c28028373b_o.jpg", "secret": "b23c49526c", "media": "photo", "latitude": "0", "id": "8535420446", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 10:18:41", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8098/8534311397_eba109cb72_o.jpg", "secret": "1c6a5381a3", "media": "photo", "latitude": "0", "id": "8534311397", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 10:18:53", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8507/8534311247_cf6faa10cc_o.jpg", "secret": "9fb9c1e6ff", "media": "photo", "latitude": "0", "id": "8534311247", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 10:21:02", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8377/8535419916_fa0966bbe8_o.jpg", "secret": "ed0969899b", "media": "photo", "latitude": "0", "id": "8535419916", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 10:21:23", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8366/8534310915_d4c703625d_o.jpg", "secret": "798b557b96", "media": "photo", "latitude": "0", "id": "8534310915", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 10:23:24", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8107/8534310859_6e9a8b08ae_o.jpg", "secret": "0a81925a28", "media": "photo", "latitude": "0", "id": "8534310859", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 10:23:39", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8086/8534310713_1d59652856_o.jpg", "secret": "9baa47d11f", "media": "photo", "latitude": "0", "id": "8534310713", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 10:24:17", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8517/8535419408_d0f490949c_o.jpg", "secret": "ac452e238f", "media": "photo", "latitude": "0", "id": "8535419408", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 10:27:44", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8387/8534310533_7e9d16d423_o.jpg", "secret": "16a0d1c787", "media": "photo", "latitude": "0", "id": "8534310533", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 10:28:59", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8104/8534310385_0c34f6ae52_o.jpg", "secret": "7e735889e5", "media": "photo", "latitude": "0", "id": "8534310385", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 10:30:04", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8096/8535419054_7540f85540_o.jpg", "secret": "0281751641", "media": "photo", "latitude": "0", "id": "8535419054", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-03-05 10:32:35", "license": "2", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia", "text": "", "album_id": "72157632932199777", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8248/8535418946_8a4364351e_o.jpg", "secret": "a1f21d7c28", "media": "photo", "latitude": "0", "id": "8535418946", "tags": "army virginia guard soldiers amelia veterans militaryfuneralhonorsteam"}, {"datetaken": "2013-10-01 12:00:10", "license": "5", "title": "St Andrew, Wingfield, Suffolk", "text": "", "album_id": "72157636264697316", "longitude": "1.272343", "url_o": "https://farm3.staticflickr.com/2860/10125871905_44a351a168_o.jpg", "secret": "56fccd2a97", "media": "photo", "latitude": "52.344103", "id": "10125871905", "tags": "suffolk wingfield"}, {"datetaken": "2013-10-01 12:01:14", "license": "5", "title": "St Andrew, Wingfield, Suffolk", "text": "", "album_id": "72157636264697316", "longitude": "1.272343", "url_o": "https://farm3.staticflickr.com/2826/10125941016_c832dd69bf_o.jpg", "secret": "e4338657c4", "media": "photo", "latitude": "52.344103", "id": "10125941016", "tags": "suffolk wingfield"}, {"datetaken": "2013-10-01 12:03:14", "license": "5", "title": "St Andrew, Wingfield, Suffolk", "text": "", "album_id": "72157636264697316", "longitude": "1.272343", "url_o": "https://farm4.staticflickr.com/3676/10126002133_e86241b614_o.jpg", "secret": "428c22ffd7", "media": "photo", "latitude": "52.344103", "id": "10126002133", "tags": "suffolk wingfield"}, {"datetaken": "2013-10-01 12:06:43", "license": "5", "title": "St Andrew, Wingfield, Suffolk", "text": "", "album_id": "72157636264697316", "longitude": "1.272343", "url_o": "https://farm4.staticflickr.com/3772/10125997643_022bd9cb53_o.jpg", "secret": "af50834177", "media": "photo", "latitude": "52.344103", "id": "10125997643", "tags": "suffolk wingfield"}, {"datetaken": "2013-10-01 12:07:07", "license": "5", "title": "St Andrew, Wingfield, Suffolk", "text": "", "album_id": "72157636264697316", "longitude": "1.272343", "url_o": "https://farm4.staticflickr.com/3777/10125853125_440a03ef9e_o.jpg", "secret": "d1ece7fc93", "media": "photo", "latitude": "52.344103", "id": "10125853125", "tags": "suffolk wingfield"}, {"datetaken": "2013-10-01 12:07:38", "license": "5", "title": "St Andrew, Wingfield, Suffolk", "text": "", "album_id": "72157636264697316", "longitude": "1.272343", "url_o": "https://farm8.staticflickr.com/7440/10125952003_3d67f8a6b3_o.jpg", "secret": "d90e7da129", "media": "photo", "latitude": "52.344103", "id": "10125952003", "tags": "suffolk wingfield"}, {"datetaken": "2013-10-01 12:08:22", "license": "5", "title": "St Andrew, Wingfield, Suffolk", "text": "", "album_id": "72157636264697316", "longitude": "1.272343", "url_o": "https://farm6.staticflickr.com/5541/10125874236_bcbaa8740b_o.jpg", "secret": "c26d6a19d0", "media": "photo", "latitude": "52.344103", "id": "10125874236", "tags": "suffolk wingfield"}, {"datetaken": "2013-10-01 12:09:44", "license": "5", "title": "St Andrew, Wingfield, Suffolk", "text": "", "album_id": "72157636264697316", "longitude": "1.272343", "url_o": "https://farm4.staticflickr.com/3726/10125990263_1d48f0f57a_o.jpg", "secret": "2b60a2666f", "media": "photo", "latitude": "52.344103", "id": "10125990263", "tags": "suffolk wingfield"}, {"datetaken": "2013-10-01 12:10:06", "license": "5", "title": "St Andrew, Wingfield, Suffolk", "text": "", "album_id": "72157636264697316", "longitude": "1.272343", "url_o": "https://farm8.staticflickr.com/7448/10125986403_2b045c8630_o.jpg", "secret": "1d13c4b10f", "media": "photo", "latitude": "52.344103", "id": "10125986403", "tags": "suffolk wingfield"}, {"datetaken": "2013-10-01 12:11:10", "license": "5", "title": "St Andrew, Wingfield, Suffolk", "text": "", "album_id": "72157636264697316", "longitude": "1.272343", "url_o": "https://farm4.staticflickr.com/3695/10125983463_ccfdbc4357_o.jpg", "secret": "a033c485e7", "media": "photo", "latitude": "52.344103", "id": "10125983463", "tags": "suffolk wingfield"}, {"datetaken": "2013-10-01 12:18:29", "license": "5", "title": "St Andrew, Wingfield, Suffolk", "text": "", "album_id": "72157636264697316", "longitude": "1.272343", "url_o": "https://farm4.staticflickr.com/3698/10125979553_cd91cc404d_o.jpg", "secret": "736931cf29", "media": "photo", "latitude": "52.344103", "id": "10125979553", "tags": "suffolk wingfield"}, {"datetaken": "2013-10-01 12:24:13", "license": "5", "title": "St Andrew, Wingfield, Suffolk", "text": "", "album_id": "72157636264697316", "longitude": "1.272343", "url_o": "https://farm3.staticflickr.com/2808/10125833745_b3ab2c8502_o.jpg", "secret": "9e2be173ed", "media": "photo", "latitude": "52.344103", "id": "10125833745", "tags": "suffolk wingfield"}, {"datetaken": "2013-10-01 12:24:47", "license": "5", "title": "St Andrew, Wingfield, Suffolk", "text": "", "album_id": "72157636264697316", "longitude": "1.272343", "url_o": "https://farm3.staticflickr.com/2816/10125972323_664ed320ee_o.jpg", "secret": "5f2422a390", "media": "photo", "latitude": "52.344103", "id": "10125972323", "tags": "suffolk wingfield"}, {"datetaken": "2013-10-01 12:27:56", "license": "5", "title": "St Andrew, Wingfield, Suffolk", "text": "", "album_id": "72157636264697316", "longitude": "1.272343", "url_o": "https://farm4.staticflickr.com/3806/10125768854_67d1400756_o.jpg", "secret": "a56c47228d", "media": "photo", "latitude": "52.344103", "id": "10125768854", "tags": "suffolk wingfield"}, {"datetaken": "2012-05-27 10:40:07", "license": "3", "title": "Victorian Funeral Re-enactment", "text": "", "album_id": "72157630078030316", "longitude": "138.587658", "url_o": "https://farm9.staticflickr.com/8162/7350422846_5251880670_o.jpg", "secret": "a6ba9cf006", "media": "photo", "latitude": "-34.933511", "id": "7350422846", "tags": "funeral southaustralia reenactment abouttime historyfestival westterracecemetery victorianasocietyofsouthaustralia"}, {"datetaken": "2012-05-27 10:40:34", "license": "3", "title": "Victorian Funeral Re-enactment", "text": "", "album_id": "72157630078030316", "longitude": "138.587658", "url_o": "https://farm8.staticflickr.com/7238/7165210561_1b7a2dd862_o.jpg", "secret": "7fa1a5d1d6", "media": "photo", "latitude": "-34.933511", "id": "7165210561", "tags": "funeral southaustralia reenactment abouttime historyfestival westterracecemetery victorianasocietyofsouthaustralia"}, {"datetaken": "2012-05-27 10:44:02", "license": "3", "title": "Victorian Funeral Re-enactment", "text": "", "album_id": "72157630078030316", "longitude": "138.587658", "url_o": "https://farm8.staticflickr.com/7219/7350422702_9dd89ff476_o.jpg", "secret": "8ec84ce453", "media": "photo", "latitude": "-34.933511", "id": "7350422702", "tags": "funeral southaustralia reenactment abouttime historyfestival westterracecemetery victorianasocietyofsouthaustralia"}, {"datetaken": "2012-05-27 10:47:42", "license": "3", "title": "Victorian Funeral Re-enactment", "text": "", "album_id": "72157630078030316", "longitude": "138.587658", "url_o": "https://farm8.staticflickr.com/7085/7350422638_3fac999eb7_o.jpg", "secret": "172804eb31", "media": "photo", "latitude": "-34.933511", "id": "7350422638", "tags": "funeral southaustralia reenactment abouttime historyfestival westterracecemetery victorianasocietyofsouthaustralia"}, {"datetaken": "2012-05-27 10:48:40", "license": "3", "title": "Victorian Funeral Re-enactment", "text": "", "album_id": "72157630078030316", "longitude": "138.587658", "url_o": "https://farm8.staticflickr.com/7084/7350422594_79202b7b03_o.jpg", "secret": "b6a7eea7e5", "media": "photo", "latitude": "-34.933511", "id": "7350422594", "tags": "funeral southaustralia reenactment abouttime historyfestival westterracecemetery"}, {"datetaken": "2012-05-27 10:49:36", "license": "3", "title": "Victorian Funeral Re-enactment", "text": "", "album_id": "72157630078030316", "longitude": "138.587658", "url_o": "https://farm8.staticflickr.com/7087/7165210345_d69d60749a_o.jpg", "secret": "cf96a39fcc", "media": "photo", "latitude": "-34.933511", "id": "7165210345", "tags": "funeral southaustralia reenactment abouttime historyfestival westterracecemetery"}, {"datetaken": "2012-05-27 10:50:52", "license": "3", "title": "Victorian Funeral Re-enactment", "text": "", "album_id": "72157630078030316", "longitude": "138.587658", "url_o": "https://farm8.staticflickr.com/7211/7350422464_7bfe6eb3d0_o.jpg", "secret": "9ede7b7aa0", "media": "photo", "latitude": "-34.933511", "id": "7350422464", "tags": "funeral southaustralia reenactment abouttime historyfestival westterracecemetery victorianasocietyofsouthaustralia"}, {"datetaken": "2012-05-27 10:51:22", "license": "3", "title": "Victorian Funeral Re-enactment", "text": "", "album_id": "72157630078030316", "longitude": "138.587658", "url_o": "https://farm8.staticflickr.com/7094/7350422374_6e0eb3be86_o.jpg", "secret": "683bd29c11", "media": "photo", "latitude": "-34.933511", "id": "7350422374", "tags": "funeral southaustralia reenactment abouttime historyfestival westterracecemetery"}, {"datetaken": "2012-05-27 10:53:18", "license": "3", "title": "Victorian Funeral Re-enactment", "text": "", "album_id": "72157630078030316", "longitude": "138.587658", "url_o": "https://farm9.staticflickr.com/8025/7165210143_70238d1f01_o.jpg", "secret": "78d58a110a", "media": "photo", "latitude": "-34.933511", "id": "7165210143", "tags": "funeral southaustralia reenactment abouttime historyfestival westterracecemetery"}, {"datetaken": "2012-05-27 10:53:55", "license": "3", "title": "Victorian Funeral Re-enactment", "text": "", "album_id": "72157630078030316", "longitude": "138.587658", "url_o": "https://farm9.staticflickr.com/8159/7165210091_abbccc756d_o.jpg", "secret": "b8d8991d1e", "media": "photo", "latitude": "-34.933511", "id": "7165210091", "tags": "funeral southaustralia reenactment abouttime historyfestival westterracecemetery victorianasocietyofsouthaustralia"}, {"datetaken": "2012-05-27 10:57:16", "license": "3", "title": "Victorian Funeral Re-enactment", "text": "", "album_id": "72157630078030316", "longitude": "138.587658", "url_o": "https://farm8.staticflickr.com/7232/7350422212_356dc9b5a1_o.jpg", "secret": "c7cb14ea6c", "media": "photo", "latitude": "-34.933511", "id": "7350422212", "tags": "funeral southaustralia reenactment abouttime historyfestival westterracecemetery"}, {"datetaken": "2012-05-27 11:32:36", "license": "3", "title": "Victorian Funeral Re-enactment", "text": "", "album_id": "72157630078030316", "longitude": "138.587658", "url_o": "https://farm8.staticflickr.com/7102/7165209971_dba8559dc2_o.jpg", "secret": "eed4047218", "media": "photo", "latitude": "-34.933511", "id": "7165209971", "tags": "funeral southaustralia reenactment abouttime historyfestival westterracecemetery victorianasocietyofsouthaustralia"}, {"datetaken": "2012-05-27 11:38:15", "license": "3", "title": "Victorian Funeral Re-enactment", "text": "", "album_id": "72157630078030316", "longitude": "138.587658", "url_o": "https://farm9.staticflickr.com/8167/7350422086_b10075f625_o.jpg", "secret": "bb44539b19", "media": "photo", "latitude": "-34.933511", "id": "7350422086", "tags": "funeral southaustralia reenactment abouttime historyfestival westterracecemetery victorianasocietyofsouthaustralia"}, {"datetaken": "2012-05-27 11:39:03", "license": "3", "title": "Victorian Funeral Re-enactment", "text": "", "album_id": "72157630078030316", "longitude": "138.587658", "url_o": "https://farm9.staticflickr.com/8143/7165209851_427572247a_o.jpg", "secret": "3b07e55c96", "media": "photo", "latitude": "-34.933511", "id": "7165209851", "tags": "funeral southaustralia reenactment abouttime historyfestival westterracecemetery victorianasocietyofsouthaustralia"}, {"datetaken": "2012-05-27 11:42:07", "license": "3", "title": "Victorian Funeral Re-enactment", "text": "", "album_id": "72157630078030316", "longitude": "138.587658", "url_o": "https://farm8.staticflickr.com/7214/7350421898_0b7cf88f3a_o.jpg", "secret": "627d3055d2", "media": "photo", "latitude": "-34.933511", "id": "7350421898", "tags": "funeral southaustralia reenactment abouttime historyfestival westterracecemetery victorianasocietyofsouthaustralia"}, {"datetaken": "2013-03-07 21:28:53", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8237/8538057189_fd8911c439_o.jpg", "secret": "480df017a6", "media": "photo", "latitude": "0", "id": "8538057189", "tags": ""}, {"datetaken": "2013-03-07 21:29:20", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8382/8539163288_5b5324f95a_o.jpg", "secret": "282608dd5b", "media": "photo", "latitude": "0", "id": "8539163288", "tags": ""}, {"datetaken": "2013-03-07 21:31:32", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8367/8538056649_ae3c737612_o.jpg", "secret": "6246c7530b", "media": "photo", "latitude": "0", "id": "8538056649", "tags": ""}, {"datetaken": "2013-03-08 06:51:13", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8528/8538053483_4e52bd643b_o.jpg", "secret": "2c34685064", "media": "photo", "latitude": "0", "id": "8538053483", "tags": ""}, {"datetaken": "2013-03-08 06:51:16", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8516/8538047539_e44363167b_o.jpg", "secret": "8a18e62cfb", "media": "photo", "latitude": "0", "id": "8538047539", "tags": ""}, {"datetaken": "2013-03-08 06:51:17", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8240/8538028041_d6ff772827_o.jpg", "secret": "23bf8d8f71", "media": "photo", "latitude": "0", "id": "8538028041", "tags": ""}, {"datetaken": "2013-03-08 06:51:17", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8378/8538034233_8dda2446d1_o.jpg", "secret": "848df439df", "media": "photo", "latitude": "0", "id": "8538034233", "tags": ""}, {"datetaken": "2013-03-08 06:51:19", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8111/8538021269_9b508aa75c_o.jpg", "secret": "215b055441", "media": "photo", "latitude": "0", "id": "8538021269", "tags": ""}, {"datetaken": "2013-03-08 06:51:30", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8225/8539122322_7e908fa0f0_o.jpg", "secret": "0967ea2948", "media": "photo", "latitude": "0", "id": "8539122322", "tags": ""}, {"datetaken": "2013-03-08 06:51:30", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8371/8538829058_4f0ae27849_o.jpg", "secret": "ff6ccd0d14", "media": "photo", "latitude": "0", "id": "8538829058", "tags": "flickrandroidapp:filter=none"}, {"datetaken": "2013-03-08 06:53:02", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8517/8539173488_97ff8c9ba5_o.jpg", "secret": "b26b473f09", "media": "photo", "latitude": "0", "id": "8539173488", "tags": ""}, {"datetaken": "2013-03-08 06:53:02", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8240/8538065775_a4dfe8b941_o.jpg", "secret": "e47430cb9d", "media": "photo", "latitude": "0", "id": "8538065775", "tags": ""}, {"datetaken": "2013-03-08 07:29:44", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8520/8538064869_0f1c2cd163_o.jpg", "secret": "e77981a6a4", "media": "photo", "latitude": "0", "id": "8538064869", "tags": ""}, {"datetaken": "2013-03-08 07:29:52", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8105/8539170338_567d429096_o.jpg", "secret": "fcefb96edd", "media": "photo", "latitude": "0", "id": "8539170338", "tags": ""}, {"datetaken": "2013-03-08 08:48:56", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8233/8538063979_0a7d3f5a46_o.jpg", "secret": "56dac64e33", "media": "photo", "latitude": "0", "id": "8538063979", "tags": ""}, {"datetaken": "2013-03-08 08:48:56", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8369/8539169170_8e7398b667_o.jpg", "secret": "ac90fe081a", "media": "photo", "latitude": "0", "id": "8539169170", "tags": ""}, {"datetaken": "2013-03-08 08:49:03", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8512/8539167854_b118041abe_o.jpg", "secret": "09bfaca627", "media": "photo", "latitude": "0", "id": "8539167854", "tags": ""}, {"datetaken": "2013-03-08 08:49:15", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8086/8539167188_cef3f66ae5_o.jpg", "secret": "565478d3e0", "media": "photo", "latitude": "0", "id": "8539167188", "tags": ""}, {"datetaken": "2013-03-08 08:50:22", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8246/8538060057_34592bcfd4_o.jpg", "secret": "b9b80627c5", "media": "photo", "latitude": "0", "id": "8538060057", "tags": ""}, {"datetaken": "2013-03-08 08:50:24", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8235/8539168456_8978ef8036_o.jpg", "secret": "3b1569cc03", "media": "photo", "latitude": "0", "id": "8539168456", "tags": ""}, {"datetaken": "2013-03-08 08:51:02", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8249/8538059807_1f049c114a_o.jpg", "secret": "7c6282f8a8", "media": "photo", "latitude": "0", "id": "8538059807", "tags": ""}, {"datetaken": "2013-03-08 08:51:13", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8112/8538059191_d20e3deb29_o.jpg", "secret": "5a2bb138ac", "media": "photo", "latitude": "0", "id": "8538059191", "tags": ""}, {"datetaken": "2013-03-08 08:51:20", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8506/8539165420_8609d2cc6d_o.jpg", "secret": "09eeee7d1b", "media": "photo", "latitude": "0", "id": "8539165420", "tags": ""}, {"datetaken": "2013-03-08 08:51:43", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8232/8539164852_59ae2fb8c7_o.jpg", "secret": "5062600420", "media": "photo", "latitude": "0", "id": "8539164852", "tags": ""}, {"datetaken": "2013-03-08 10:21:14", "license": "1", "title": "PRESIDENTE RAFAEL CORREA ASISTE A FUNERAL DE HUGO CH\u00c1VEZ", "text": "", "album_id": "72157632947336586", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8372/8539165100_401881917d_o.jpg", "secret": "44130dfa42", "media": "photo", "latitude": "0", "id": "8539165100", "tags": ""}, {"datetaken": "2010-05-13 18:36:55", "license": "1", "title": "- \"Cornelia Henly (affectionately known as Mammy)\", aged 78", "text": "", "album_id": "72157624235048826", "longitude": "-80.238307", "url_o": "https://farm2.staticflickr.com/1307/4683536447_e9584faea2_o.jpg", "secret": "69b7cbf75b", "media": "photo", "latitude": "36.092469", "id": "4683536447", "tags": "cemetery grave gravestone africanamerican moravian slave"}, {"datetaken": "2010-05-13 18:37:25", "license": "1", "title": "-Margaret Eliza McKell, born in Tobago in 1844", "text": "", "album_id": "72157624235048826", "longitude": "-80.238307", "url_o": "https://farm2.staticflickr.com/1299/4689521926_ab7d50ea88_o.jpg", "secret": "eff497a369", "media": "photo", "latitude": "36.092469", "id": "4689521926", "tags": "cemetery grave gravestone africanamerican moravian slave"}, {"datetaken": "2010-05-13 18:37:55", "license": "1", "title": "- Alvis: Gravestone in the Slave Cemetery outside of God's Acre, Old Salem -", "text": "", "album_id": "72157624235048826", "longitude": "-80.238307", "url_o": "https://farm5.staticflickr.com/4072/4684165260_b8ccc3d47d_o.jpg", "secret": "620c6cea61", "media": "photo", "latitude": "36.092469", "id": "4684165260", "tags": "cemetery grave nc northcarolina gravestone africanamerican moravian winstonsalem slave"}, {"datetaken": "2010-05-13 18:38:05", "license": "1", "title": "- George, died 1859(?)", "text": "", "album_id": "72157624235048826", "longitude": "-80.238307", "url_o": "https://farm5.staticflickr.com/4026/4688888253_975e6b2a2c_o.jpg", "secret": "71a8957898", "media": "photo", "latitude": "36.092469", "id": "4688888253", "tags": "cemetery grave gravestone africanamerican moravian slave"}, {"datetaken": "2010-05-13 18:38:11", "license": "1", "title": "-Betty, died 1860", "text": "", "album_id": "72157624235048826", "longitude": "-80.238307", "url_o": "https://farm5.staticflickr.com/4066/4689522774_89eef92fa7_o.jpg", "secret": "1be6d9b5e8", "media": "photo", "latitude": "36.092469", "id": "4689522774", "tags": "cemetery grave gravestone africanamerican moravian slave"}, {"datetaken": "2010-05-13 18:38:25", "license": "1", "title": "- Nikotie, wife of Henry, aged 23 -", "text": "", "album_id": "72157624235048826", "longitude": "-80.238307", "url_o": "https://farm5.staticflickr.com/4026/4683537043_efd3ce02c0_o.jpg", "secret": "b80d57457d", "media": "photo", "latitude": "36.092469", "id": "4683537043", "tags": "cemetery grave nc northcarolina gravestone africanamerican salem moravian winstonsalem slave"}, {"datetaken": "2010-05-13 18:38:36", "license": "1", "title": "-The Grave of Mary 1837-1861 aged 26 yrs.", "text": "", "album_id": "72157624235048826", "longitude": "-80.238307", "url_o": "https://farm5.staticflickr.com/4054/4688889079_394500cfc8_o.jpg", "secret": "2b914b5997", "media": "photo", "latitude": "36.092469", "id": "4688889079", "tags": "cemetery grave gravestone africanamerican moravian slave"}, {"datetaken": "2010-05-13 18:39:03", "license": "1", "title": "-Ann Lesetta, who served the Voglers, aged 20", "text": "", "album_id": "72157624235048826", "longitude": "-80.238307", "url_o": "https://farm5.staticflickr.com/4010/4683537679_c6cd32c25e_o.jpg", "secret": "9924a8fa2a", "media": "photo", "latitude": "36.092469", "id": "4683537679", "tags": "cemetery grave gravestone africanamerican moravian slave"}, {"datetaken": "2010-05-13 18:39:10", "license": "1", "title": "-Phoebe, aged 90: Gravestone in the Slave Cemetery outside of God's Acre, Old Salem", "text": "", "album_id": "72157624235048826", "longitude": "-80.238148", "url_o": "https://farm5.staticflickr.com/4069/4683538019_0ffdba2a6b_o.jpg", "secret": "0aed81b967", "media": "photo", "latitude": "36.092424", "id": "4683538019", "tags": "cemetery grave nc northcarolina gravestone africanamerican moravian winstonsalem slave"}, {"datetaken": "2010-05-13 18:40:31", "license": "1", "title": "-Rev. John W. Roberts 1854-1882", "text": "", "album_id": "72157624235048826", "longitude": "-80.238307", "url_o": "https://farm5.staticflickr.com/4070/4689523666_5b217f3751_o.jpg", "secret": "5d639ce620", "media": "photo", "latitude": "36.092469", "id": "4689523666", "tags": "cemetery grave nc northcarolina gravestone africanamerican moravian winstonsalem slave"}, {"datetaken": "2010-05-13 18:42:30", "license": "1", "title": "-The back corner of the post-1859 slave/freedman cemetery serving Salem", "text": "", "album_id": "72157624235048826", "longitude": "-80.238307", "url_o": "https://farm5.staticflickr.com/4054/4689524494_4712c71934_o.jpg", "secret": "847715e3c0", "media": "photo", "latitude": "36.092469", "id": "4689524494", "tags": "cemetery grave nc northcarolina gravestone africanamerican moravian winstonsalem slave"}, {"datetaken": "2010-05-13 18:43:31", "license": "1", "title": "- Slave Cemetery well outside of God's Acre, Old Salem -", "text": "", "album_id": "72157624235048826", "longitude": "-80.238341", "url_o": "https://farm5.staticflickr.com/4051/4684167438_f57a46e57e_o.jpg", "secret": "a2ca36886d", "media": "photo", "latitude": "36.092394", "id": "4684167438", "tags": "cemetery grave gravestone africanamerican moravian slave"}, {"datetaken": "2010-12-08 20:11:24", "license": "2", "title": "Equipment, Arcade Fire Live at Birmingham LG Arena 2010", "text": "", "album_id": "72157625437769119", "longitude": "-1.719832", "url_o": "https://farm6.staticflickr.com/5009/5246322589_d423cf2214_o.jpg", "secret": "1f940252a3", "media": "photo", "latitude": "52.449758", "id": "5246322589", "tags": "uk autumn england concert birmingham europe unitedkingdom gig performance performing suburbia funeral arcadefire winbutler 2010 reginechassagne thesuburbs neonbible lgarena"}, {"datetaken": "2010-12-08 20:26:55", "license": "2", "title": "Guitars, Arcade Fire Live at Birmingham LG Arena 2010", "text": "", "album_id": "72157625437769119", "longitude": "-1.719832", "url_o": "https://farm6.staticflickr.com/5084/5246926106_d0f1e20a72_o.jpg", "secret": "6519fd11d5", "media": "photo", "latitude": "52.449758", "id": "5246926106", "tags": "uk autumn england concert birmingham europe unitedkingdom gig performance performing suburbia funeral arcadefire winbutler 2010 reginechassagne thesuburbs neonbible lgarena"}, {"datetaken": "2010-12-08 21:37:50", "license": "2", "title": "Devendra Banhart and The Grogs, Live at Birmingham LG Arena 2010", "text": "", "album_id": "72157625437769119", "longitude": "-1.719832", "url_o": "https://farm6.staticflickr.com/5205/5246323615_43ace88b30_o.jpg", "secret": "ed70ea55bd", "media": "photo", "latitude": "52.449758", "id": "5246323615", "tags": "uk autumn england concert birmingham europe unitedkingdom gig performance performing arcadefire devendrabanhart 2010 lgarena"}, {"datetaken": "2010-12-08 21:56:33", "license": "2", "title": "Devendra Banhart Live at Birmingham LG Arena 2010", "text": "", "album_id": "72157625437769119", "longitude": "-1.719832", "url_o": "https://farm6.staticflickr.com/5130/5246926996_825188a480_o.jpg", "secret": "e238bf839d", "media": "photo", "latitude": "52.449758", "id": "5246926996", "tags": "uk autumn england concert birmingham europe unitedkingdom gig performance performing arcadefire devendrabanhart 2010 lgarena"}, {"datetaken": "2010-12-08 22:28:36", "license": "2", "title": "Empty stage, Arcade Fire Live at Birmingham LG Arena 2010", "text": "", "album_id": "72157625437769119", "longitude": "-1.719832", "url_o": "https://farm6.staticflickr.com/5044/5246927582_4337d257c9_o.jpg", "secret": "4f1bc20c0a", "media": "photo", "latitude": "52.449758", "id": "5246927582", "tags": "uk autumn england concert birmingham europe unitedkingdom gig performance performing suburbia funeral arcadefire winbutler 2010 reginechassagne thesuburbs neonbible lgarena"}, {"datetaken": "2010-12-08 22:44:22", "license": "2", "title": "Win Butler, Arcade Fire Live at Birmingham LG Arena 2010", "text": "", "album_id": "72157625437769119", "longitude": "-1.719832", "url_o": "https://farm6.staticflickr.com/5130/5246325183_a4515f68c5_o.jpg", "secret": "f1a62ca7f8", "media": "photo", "latitude": "52.449758", "id": "5246325183", "tags": "uk autumn england concert birmingham europe unitedkingdom gig performance performing suburbia funeral arcadefire winbutler 2010 reginechassagne thesuburbs neonbible lgarena"}, {"datetaken": "2010-12-08 22:46:23", "license": "2", "title": "Win, Arcade Fire Live at Birmingham LG Arena 2010", "text": "", "album_id": "72157625437769119", "longitude": "-1.719832", "url_o": "https://farm6.staticflickr.com/5044/5246325935_de86485630_o.jpg", "secret": "e330421765", "media": "photo", "latitude": "52.449758", "id": "5246325935", "tags": "uk autumn england concert birmingham europe unitedkingdom gig performance performing suburbia funeral arcadefire winbutler 2010 reginechassagne thesuburbs neonbible lgarena"}, {"datetaken": "2010-12-08 22:48:45", "license": "2", "title": "Regine, Arcade Fire Live at Birmingham LG Arena 2010", "text": "", "album_id": "72157625437769119", "longitude": "-1.719832", "url_o": "https://farm6.staticflickr.com/5245/5246326441_5a0aff3443_o.jpg", "secret": "3512851ee7", "media": "photo", "latitude": "52.449758", "id": "5246326441", "tags": "uk autumn england concert birmingham europe unitedkingdom gig performance performing suburbia funeral arcadefire winbutler 2010 reginechassagne thesuburbs neonbible lgarena"}, {"datetaken": "2010-12-08 22:49:59", "license": "2", "title": "Arcade Fire Live at Birmingham LG Arena 2010", "text": "", "album_id": "72157625437769119", "longitude": "-1.719832", "url_o": "https://farm6.staticflickr.com/5130/5246327177_79afc52e58_o.jpg", "secret": "38a9c6b461", "media": "photo", "latitude": "52.449758", "id": "5246327177", "tags": "uk autumn england concert birmingham europe unitedkingdom gig performance performing suburbia funeral arcadefire winbutler 2010 reginechassagne thesuburbs neonbible lgarena"}, {"datetaken": "2010-12-08 22:51:05", "license": "2", "title": "Regine, Arcade Fire Live at Birmingham LG Arena 2010", "text": "", "album_id": "72157625437769119", "longitude": "-1.719832", "url_o": "https://farm6.staticflickr.com/5004/5246327735_d70f8c2a8f_o.jpg", "secret": "2c982709e7", "media": "photo", "latitude": "52.449758", "id": "5246327735", "tags": "uk autumn england concert birmingham europe unitedkingdom gig performance performing suburbia funeral arcadefire winbutler 2010 reginechassagne thesuburbs neonbible lgarena"}, {"datetaken": "2010-12-08 22:51:16", "license": "2", "title": "Regine and Win, Arcade Fire Live at Birmingham LG Arena 2010", "text": "", "album_id": "72157625437769119", "longitude": "-1.719832", "url_o": "https://farm6.staticflickr.com/5246/5246931322_c8aa632c4a_o.jpg", "secret": "3e7a22d7bd", "media": "photo", "latitude": "52.449758", "id": "5246931322", "tags": "uk autumn england concert birmingham europe unitedkingdom gig performance performing suburbia funeral arcadefire winbutler 2010 reginechassagne thesuburbs neonbible lgarena"}, {"datetaken": "2010-12-08 23:00:19", "license": "2", "title": "Regine, Arcade Fire Live at Birmingham LG Arena 2010", "text": "", "album_id": "72157625437769119", "longitude": "-1.719832", "url_o": "https://farm6.staticflickr.com/5241/5246932274_faced7c9f0_o.jpg", "secret": "1a0455a455", "media": "photo", "latitude": "52.449758", "id": "5246932274", "tags": "uk autumn england concert birmingham europe unitedkingdom gig performance performing suburbia funeral arcadefire winbutler 2010 reginechassagne thesuburbs neonbible lgarena"}, {"datetaken": "2010-12-08 23:09:21", "license": "2", "title": "Regine, Will and Win, Arcade Fire Live at Birmingham LG Arena 2010", "text": "", "album_id": "72157625437769119", "longitude": "-1.719832", "url_o": "https://farm6.staticflickr.com/5003/5246933152_95eba807da_o.jpg", "secret": "4393a5e4d2", "media": "photo", "latitude": "52.449758", "id": "5246933152", "tags": "uk autumn england concert birmingham europe unitedkingdom gig performance performing suburbia funeral arcadefire winbutler 2010 reginechassagne thesuburbs neonbible lgarena"}, {"datetaken": "2010-12-08 23:09:22", "license": "2", "title": "Regine and Win, Arcade Fire Live at Birmingham LG Arena 2010", "text": "", "album_id": "72157625437769119", "longitude": "-1.719832", "url_o": "https://farm6.staticflickr.com/5126/5246933962_fcb2f30572_o.jpg", "secret": "f229995e32", "media": "photo", "latitude": "52.449758", "id": "5246933962", "tags": "uk autumn england concert birmingham europe unitedkingdom gig performance performing suburbia funeral arcadefire winbutler 2010 reginechassagne thesuburbs neonbible lgarena"}, {"datetaken": "2010-12-08 23:18:46", "license": "2", "title": "Regine and Win, Arcade Fire Live at Birmingham LG Arena 2010", "text": "", "album_id": "72157625437769119", "longitude": "-1.719832", "url_o": "https://farm6.staticflickr.com/5005/5246331513_70794c87d7_o.jpg", "secret": "03a92fa820", "media": "photo", "latitude": "52.449758", "id": "5246331513", "tags": "uk autumn england concert birmingham europe unitedkingdom gig performance performing suburbia funeral arcadefire winbutler 2010 reginechassagne thesuburbs neonbible lgarena"}, {"datetaken": "2012-09-13 11:22:19", "license": "5", "title": "Crowd leaving cathedral 01 - Neil Armstrong memorial service - 2012-09-13", "text": "", "album_id": "72157631530976322", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8031/7984257787_7d57fbecb9_o.jpg", "secret": "0a304fa4f4", "media": "photo", "latitude": "0", "id": "7984257787", "tags": "funeral washingtonnationalcathedral neilarmstrong memorialservice"}, {"datetaken": "2012-09-13 11:22:32", "license": "5", "title": "Crowd leaving cathedral 02 - Neil Armstrong memorial service - 2012-09-13", "text": "", "album_id": "72157631530976322", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8182/7984257863_0c910544a3_o.jpg", "secret": "2553fec00c", "media": "photo", "latitude": "0", "id": "7984257863", "tags": "funeral washingtonnationalcathedral neilarmstrong memorialservice"}, {"datetaken": "2012-09-13 11:23:18", "license": "5", "title": "Crowd leaving cathedral 03 - Neil Armstrong memorial service - 2012-09-13", "text": "", "album_id": "72157631530976322", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8171/7984263526_29b3b5f714_o.jpg", "secret": "8956455d98", "media": "photo", "latitude": "0", "id": "7984263526", "tags": "funeral washingtonnationalcathedral neilarmstrong memorialservice"}, {"datetaken": "2012-09-13 11:30:16", "license": "5", "title": "Banner 02 - Neil Armstrong memorial service - 2012-09-13", "text": "", "album_id": "72157631530976322", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8295/7984231866_99c668de50_o.jpg", "secret": "e863921a5c", "media": "photo", "latitude": "0", "id": "7984231866", "tags": "banner funeral washingtonnationalcathedral neilarmstrong memorialservice"}, {"datetaken": "2012-09-13 11:30:47", "license": "5", "title": "Banner 01 - Neil Armstrong memorial service - 2012-09-13", "text": "", "album_id": "72157631530976322", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8172/7984231808_3fe32a441d_o.jpg", "secret": "69b950868f", "media": "photo", "latitude": "0", "id": "7984231808", "tags": "banner funeral washingtonnationalcathedral neilarmstrong memorialservice"}, {"datetaken": "2012-09-13 11:32:06", "license": "5", "title": "Senator John Glenn and wife - Neil Armstrong Memorial Service - 2012-09-13", "text": "", "album_id": "72157631530976322", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8449/7984126102_049a1c0bb1_o.jpg", "secret": "f9a82d1957", "media": "photo", "latitude": "0", "id": "7984126102", "tags": "funeral johnglenn washingtonnationalcathedral neilarmstrong memorialservice"}, {"datetaken": "2012-09-13 11:35:14", "license": "5", "title": "NASA flag 01 - Neil Armstrong memorial service - 2012-09-13", "text": "", "album_id": "72157631530976322", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8179/7984225555_4aa1fa9d72_o.jpg", "secret": "eeaa98dedc", "media": "photo", "latitude": "0", "id": "7984225555", "tags": "nasa funeral lectern washingtonnationalcathedral neilarmstrong memorialservice nasaflag"}, {"datetaken": "2012-09-13 11:35:28", "license": "5", "title": "Memorial candle and Canterbury pulpit - Neil Armstrong memorial service - 2012-09-13", "text": "", "album_id": "72157631530976322", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8445/7984258091_380b4d09da_o.jpg", "secret": "f46e71daf5", "media": "photo", "latitude": "0", "id": "7984258091", "tags": "funeral washingtonnationalcathedral neilarmstrong memorialservice canterburypulpit"}, {"datetaken": "2012-09-13 11:37:31", "license": "5", "title": "Memorial service platform - Neil Armstrong memorial service - 2012-09-13", "text": "", "album_id": "72157631530976322", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8461/7984258025_542dc3381d_o.jpg", "secret": "c70f822982", "media": "photo", "latitude": "0", "id": "7984258025", "tags": "funeral washingtonnationalcathedral neilarmstrong memorialservice roodscreen canterburypulpit"}, {"datetaken": "2012-09-13 11:40:31", "license": "5", "title": "Memorial candle - Neil Armstrong memorial service - 2012-09-13", "text": "", "album_id": "72157631530976322", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8460/7984263584_ccdb7694d6_o.jpg", "secret": "272d268e5c", "media": "photo", "latitude": "0", "id": "7984263584", "tags": "funeral washingtonnationalcathedral neilarmstrong memorialservice"}, {"datetaken": "2012-09-13 11:44:02", "license": "5", "title": "NASA flag 02 - Neil Armstrong memorial service - 2012-09-13", "text": "", "album_id": "72157631530976322", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8042/7984225663_3d57c70386_o.jpg", "secret": "d940252a8e", "media": "photo", "latitude": "0", "id": "7984225663", "tags": "nasa funeral washingtonnationalcathedral neilarmstrong memorialservice nasaflag"}, {"datetaken": "2012-09-13 17:50:01", "license": "5", "title": "Neil Armstrong memorial service program - 2012-09-13", "text": "", "album_id": "72157631530976322", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8450/7984085800_3fd482fb8c_o.jpg", "secret": "269369d2e6", "media": "photo", "latitude": "0", "id": "7984085800", "tags": "funeral washingtonnationalcathedral neilarmstrong memorialservice"}, {"datetaken": "2012-01-12 13:17:57", "license": "4", "title": "Tran Van Van's funeral. Van's brother in law holds portrait of Van; Saigon. 13 Dec 1966", "text": "", "album_id": "72157637647894305", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7454/10844894755_8fa587513d_o.jpg", "secret": "1211bf0554", "media": "photo", "latitude": "0", "id": "10844894755", "tags": ""}, {"datetaken": "2012-01-12 13:18:44", "license": "4", "title": "Vietnamese VIP's attending Tran Van Van's funerals. General Mai Huu Xuan and Reverend Ho Van Vui; Saigon. 13 Dec 1966", "text": "", "album_id": "72157637647894305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3736/10845046374_a071162349_o.jpg", "secret": "fc44ae3bc1", "media": "photo", "latitude": "0", "id": "10845046374", "tags": ""}, {"datetaken": "2012-01-12 13:19:45", "license": "4", "title": "Former Premier Tran Van Huong; Saigon. 13 Dec 1966", "text": "", "album_id": "72157637647894305", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7436/10845047434_bf6bfd1fce_o.jpg", "secret": "10794c6ee5", "media": "photo", "latitude": "0", "id": "10845047434", "tags": ""}, {"datetaken": "2012-01-12 13:35:43", "license": "4", "title": "Constituent Assembly Chairman Phan Khac Suu and other deputies; Saigon 13 Dec 1966", "text": "", "album_id": "72157637647894305", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7347/10844897955_45c3a4ba8d_o.jpg", "secret": "74bdc8a938", "media": "photo", "latitude": "0", "id": "10844897955", "tags": ""}, {"datetaken": "2012-01-12 13:36:28", "license": "4", "title": "Vietnamese VIP's attending Tran van Van's funerals. Generals Mai Huu Xuan and Tran Van Don; Saigon 13 Dec 1966", "text": "", "album_id": "72157637647894305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3734/10844897515_3707f6263b_o.jpg", "secret": "8eb7c7f3b1", "media": "photo", "latitude": "0", "id": "10844897515", "tags": ""}, {"datetaken": "2012-01-12 13:37:28", "license": "4", "title": "Chief of State Phan Khac Suu. On his right Council member Mai Tho Truyen and on his left Council member Tran van Van", "text": "", "album_id": "72157637647894305", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5484/10845043604_be24d8847d_o.jpg", "secret": "41cdd27e57", "media": "photo", "latitude": "0", "id": "10845043604", "tags": ""}, {"datetaken": "2012-01-12 13:38:30", "license": "4", "title": "Mr. Tran Van Van (center)", "text": "", "album_id": "72157637647894305", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7346/10844893965_0a599c4fc9_o.jpg", "secret": "8c873f7e47", "media": "photo", "latitude": "0", "id": "10844893965", "tags": ""}, {"datetaken": "2012-01-12 13:47:16", "license": "4", "title": "Tran Van Don with Vice Premier Nguyen Luu Vien; Saigon 13 Dec 1966", "text": "", "album_id": "72157637647894305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3705/10844959036_faa2400c5f_o.jpg", "secret": "8ca002e19e", "media": "photo", "latitude": "0", "id": "10844959036", "tags": ""}, {"datetaken": "2012-01-12 13:48:01", "license": "4", "title": "Tran Van Don and Reverend Ho van Vui; Saigon 13 Dec 1966", "text": "", "album_id": "72157637647894305", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2829/10845045084_c8b2e819d4_o.jpg", "secret": "d946fe2e1d", "media": "photo", "latitude": "0", "id": "10845045084", "tags": ""}, {"datetaken": "2012-01-12 13:52:03", "license": "4", "title": "General Tran van Don delivering funeral address. Don was leader of association of southern elites; 13 Dec 1966", "text": "", "album_id": "72157637647894305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3698/10844957676_a88df0c660_o.jpg", "secret": "fa27ceb319", "media": "photo", "latitude": "0", "id": "10844957676", "tags": ""}, {"datetaken": "2012-01-12 15:35:29", "license": "4", "title": "Catholic Reverend Ho van Vui, Vice Premier Nguyen Luu Vien, former Economy Minister Nguyen Xuan Oanh; Saigon 13 Dec 1966", "text": "", "album_id": "72157637647894305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3834/10845042604_3282e910da_o.jpg", "secret": "5424070f4d", "media": "photo", "latitude": "0", "id": "10845042604", "tags": ""}, {"datetaken": "2012-01-12 15:36:02", "license": "4", "title": "Politician Pham Huy Co, Saigon 13 Dec 1966", "text": "", "album_id": "72157637647894305", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7421/10845042314_6b5e6825e3_o.jpg", "secret": "fd55917dac", "media": "photo", "latitude": "0", "id": "10845042314", "tags": ""}, {"datetaken": "2012-01-12 15:36:51", "license": "4", "title": "Van's family surrounding casket before lowering into grave. Van's brother in law holds portrait while his widow looks on; Saigon 13 Dec 1966", "text": "", "album_id": "72157637647894305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3775/10845013464_2a824d16ff_o.jpg", "secret": "7cc0a68534", "media": "photo", "latitude": "0", "id": "10845013464", "tags": ""}, {"datetaken": "2012-01-12 15:37:37", "license": "4", "title": "Constituent Assembly Chairman Phan Khac Suu; Saigon 13 Dec 1966", "text": "", "album_id": "72157637647894305", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3737/10845228713_c411fc02b8_o.jpg", "secret": "c43e0e5614", "media": "photo", "latitude": "0", "id": "10845228713", "tags": ""}, {"datetaken": "2012-01-12 15:38:23", "license": "4", "title": "Assemblyman Vo Huu Thu, deputy from Hue; Saigon 13 Dec 1966", "text": "", "album_id": "72157637647894305", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7447/10845229203_e06dac29d7_o.jpg", "secret": "7cb3119d2c", "media": "photo", "latitude": "0", "id": "10845229203", "tags": ""}, {"datetaken": "2011-01-14 09:49:05", "license": "1", "title": "", "text": "", "album_id": "72157625830823704", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5087/5357560949_72d4104096_o.jpg", "secret": "b2ab024906", "media": "photo", "latitude": "0", "id": "5357560949", "tags": "chicagopolicedepartmentfuneralfredrice jrfredricecpdchicagopolicechurchholynamecathedralcathedralchurchparish"}, {"datetaken": "2011-01-14 10:17:33", "license": "1", "title": "", "text": "", "album_id": "72157625830823704", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5250/5358140906_2cea9eae49_o.jpg", "secret": "97c8dae6e2", "media": "photo", "latitude": "0", "id": "5358140906", "tags": "chicago church parish rice cathedral police funeral fred cpd chicagopolicedepartment holynamecathedral fredricejr"}, {"datetaken": "2011-01-14 10:18:22", "license": "1", "title": "", "text": "", "album_id": "72157625830823704", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5084/5358177034_1fcbb73f6d_o.jpg", "secret": "14c749b425", "media": "photo", "latitude": "0", "id": "5358177034", "tags": "chicagopolicedepartmentfuneralfredrice jrfredricecpdchicagopolicechurchholynamecathedralcathedralchurchparish"}, {"datetaken": "2011-01-14 10:20:11", "license": "1", "title": "", "text": "", "album_id": "72157625830823704", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5002/5357562339_2d0f502e37_o.jpg", "secret": "b73d2db319", "media": "photo", "latitude": "0", "id": "5357562339", "tags": "chicagopolicedepartmentfuneralfredrice jrfredricecpdchicagopolicechurchholynamecathedralcathedralchurchparish"}, {"datetaken": "2011-01-14 11:40:12", "license": "1", "title": "", "text": "", "album_id": "72157625830823704", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5124/5358144384_b6350182cb_o.jpg", "secret": "9d1065bbfd", "media": "photo", "latitude": "0", "id": "5358144384", "tags": "chicago church parish rice cathedral police funeral fred cpd chicagopolicedepartment holynamecathedral fredricejr"}, {"datetaken": "2011-01-14 11:40:29", "license": "1", "title": "", "text": "", "album_id": "72157625830823704", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5044/5357530553_7879a33de9_o.jpg", "secret": "caca680de0", "media": "photo", "latitude": "0", "id": "5357530553", "tags": "chicago church parish rice cathedral police funeral fred cpd chicagopolicedepartment holynamecathedral fredricejr"}, {"datetaken": "2011-01-14 11:43:28", "license": "1", "title": "", "text": "", "album_id": "72157625830823704", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5162/5357531521_6a98e29429_o.jpg", "secret": "4ce68b6e87", "media": "photo", "latitude": "0", "id": "5357531521", "tags": "chicago church parish rice cathedral police funeral fred cpd chicagopolicedepartment holynamecathedral fredricejr"}, {"datetaken": "2011-01-14 11:46:31", "license": "1", "title": "", "text": "", "album_id": "72157625830823704", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5241/5358147684_863eeb84db_o.jpg", "secret": "fb3019f8b6", "media": "photo", "latitude": "0", "id": "5358147684", "tags": "chicago church parish rice cathedral police funeral fred cpd chicagopolicedepartment holynamecathedral fredricejr"}, {"datetaken": "2011-01-14 11:46:58", "license": "1", "title": "", "text": "", "album_id": "72157625830823704", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5287/5358148912_390975c4dd_o.jpg", "secret": "bc7804b5da", "media": "photo", "latitude": "0", "id": "5358148912", "tags": "chicago church parish rice cathedral police funeral fred cpd chicagopolicedepartment holynamecathedral fredricejr"}, {"datetaken": "2011-01-14 11:47:09", "license": "1", "title": "", "text": "", "album_id": "72157625830823704", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5125/5358150114_321e3ed3b8_o.jpg", "secret": "33619fae1f", "media": "photo", "latitude": "0", "id": "5358150114", "tags": "chicago church parish rice cathedral police funeral fred cpd chicagopolicedepartment holynamecathedral fredricejr"}, {"datetaken": "2011-01-14 11:47:26", "license": "1", "title": "", "text": "", "album_id": "72157625830823704", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5201/5357535811_f25473d667_o.jpg", "secret": "895612ff9b", "media": "photo", "latitude": "0", "id": "5357535811", "tags": "chicago church parish rice cathedral police funeral fred cpd chicagopolicedepartment holynamecathedral fredricejr"}, {"datetaken": "2011-01-14 11:48:02", "license": "1", "title": "", "text": "", "album_id": "72157625830823704", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5289/5357536883_f53b5e9d84_o.jpg", "secret": "8563ef9641", "media": "photo", "latitude": "0", "id": "5357536883", "tags": "chicago church parish rice cathedral police funeral fred cpd chicagopolicedepartment holynamecathedral fredricejr"}, {"datetaken": "2011-01-14 11:48:29", "license": "1", "title": "", "text": "", "album_id": "72157625830823704", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5249/5357537969_f0067c06da_o.jpg", "secret": "74087efb73", "media": "photo", "latitude": "0", "id": "5357537969", "tags": "chicago church parish rice cathedral police funeral fred cpd chicagopolicedepartment holynamecathedral fredricejr"}, {"datetaken": "2011-01-14 11:48:42", "license": "1", "title": "", "text": "", "album_id": "72157625830823704", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5205/5358153760_17c56cd510_o.jpg", "secret": "c55765cc52", "media": "photo", "latitude": "0", "id": "5358153760", "tags": "chicago church parish rice cathedral police funeral fred cpd chicagopolicedepartment holynamecathedral fredricejr"}, {"datetaken": "2011-01-14 11:48:56", "license": "1", "title": "", "text": "", "album_id": "72157625830823704", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5010/5357539959_1dbf64cbcc_o.jpg", "secret": "de8831c9ae", "media": "photo", "latitude": "0", "id": "5357539959", "tags": "chicago church parish rice cathedral police funeral fred cpd chicagopolicedepartment holynamecathedral fredricejr"}, {"datetaken": "2012-03-13 09:01:34", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7039/6985713945_05c933d345_o.jpg", "secret": "68e5e2ab05", "media": "photo", "latitude": "34.040497", "id": "6985713945", "tags": "flowers orchid losangeles downtown"}, {"datetaken": "2012-03-13 09:04:53", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7195/6985714415_e8d209aa12_o.jpg", "secret": "56c139de2c", "media": "photo", "latitude": "34.040497", "id": "6985714415", "tags": "flowers orchid losangeles downtown"}, {"datetaken": "2012-03-13 09:05:50", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7194/6985714769_2b8b5d15fa_o.jpg", "secret": "06055cd86c", "media": "photo", "latitude": "34.040497", "id": "6985714769", "tags": "flowers losangeles downtown"}, {"datetaken": "2012-03-13 09:06:16", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7044/6985715049_624c774156_o.jpg", "secret": "69d514cd8a", "media": "photo", "latitude": "34.040497", "id": "6985715049", "tags": "flowers losangeles downtown"}, {"datetaken": "2012-03-13 09:06:37", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7204/6985715427_866cc18214_o.jpg", "secret": "6608249497", "media": "photo", "latitude": "34.040497", "id": "6985715427", "tags": "flowers losangeles downtown"}, {"datetaken": "2012-03-13 09:08:32", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7209/6839594480_a0e01faf7e_o.jpg", "secret": "daf9b54cbe", "media": "photo", "latitude": "34.040497", "id": "6839594480", "tags": "flowers losangeles downtown"}, {"datetaken": "2012-03-13 09:10:48", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7047/6985716095_c3465068b3_o.jpg", "secret": "dbbf2e893d", "media": "photo", "latitude": "34.040497", "id": "6985716095", "tags": "flowers losangeles downtown"}, {"datetaken": "2012-03-13 09:11:19", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7061/6839595100_1940a4a35b_o.jpg", "secret": "8727eaeb2f", "media": "photo", "latitude": "34.040497", "id": "6839595100", "tags": "flowers losangeles downtown"}, {"datetaken": "2012-03-13 09:14:09", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7039/6985716727_3112221069_o.jpg", "secret": "840fc0b185", "media": "photo", "latitude": "34.040497", "id": "6985716727", "tags": "flowers losangeles downtown"}, {"datetaken": "2012-03-13 09:18:57", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7037/6839595826_c097fa9cfc_o.jpg", "secret": "efde8b6d9b", "media": "photo", "latitude": "34.040497", "id": "6839595826", "tags": "flowers losangeles downtown"}, {"datetaken": "2012-03-13 09:21:23", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7209/6839597490_3450d957db_o.jpg", "secret": "57935cfb4d", "media": "photo", "latitude": "34.040497", "id": "6839597490", "tags": "flowers losangeles downtown"}, {"datetaken": "2012-03-13 09:26:56", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7070/6839597790_6cd5396802_o.jpg", "secret": "9a842b3701", "media": "photo", "latitude": "34.040497", "id": "6839597790", "tags": "flowers dogs losangeles downtown"}, {"datetaken": "2012-03-13 10:06:19", "license": "4", "title": "The Original Los Angeles Flower Market", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7046/6839598086_1780343b3d_o.jpg", "secret": "fcc1fe1c64", "media": "photo", "latitude": "34.040497", "id": "6839598086", "tags": "flowers losangeles downtown"}, {"datetaken": "2012-03-13 10:09:29", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7041/6839598406_8f103f051f_o.jpg", "secret": "1a91d108bc", "media": "photo", "latitude": "34.040497", "id": "6839598406", "tags": "flowers losangeles downtown"}, {"datetaken": "2012-03-13 10:18:12", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7051/6839598774_6db1d9236e_o.jpg", "secret": "8edea1c5c9", "media": "photo", "latitude": "34.040497", "id": "6839598774", "tags": "flowers losangeles downtown"}, {"datetaken": "2012-03-13 10:18:35", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7069/6839599176_1ee5fb8e59_o.jpg", "secret": "c6055ec02e", "media": "photo", "latitude": "34.040497", "id": "6839599176", "tags": "flowers dogs losangeles downtown"}, {"datetaken": "2012-03-13 10:18:46", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7048/6985720727_04fe5144ba_o.jpg", "secret": "e09f30f000", "media": "photo", "latitude": "34.040497", "id": "6985720727", "tags": "flowers losangeles downtown"}, {"datetaken": "2012-03-13 10:28:17", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7047/6839599800_23d0360aef_o.jpg", "secret": "ee760cea73", "media": "photo", "latitude": "34.040497", "id": "6839599800", "tags": "flowers losangeles downtown fashiondistrict"}, {"datetaken": "2012-03-13 10:46:11", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.249764", "url_o": "https://farm8.staticflickr.com/7202/6839600200_3c9ce2d70a_o.jpg", "secret": "f3aa8a718b", "media": "photo", "latitude": "34.040497", "id": "6839600200", "tags": "losangeles downtown fashiondistrict"}, {"datetaken": "2012-03-13 14:15:34", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.001923", "url_o": "https://farm8.staticflickr.com/7049/6839600502_0fe4a64e49_o.jpg", "secret": "68d66a94c6", "media": "photo", "latitude": "33.657211", "id": "6839600502", "tags": "pier palmtrees pacificocean huntingtonbeach rubys"}, {"datetaken": "2012-03-13 14:18:03", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.001923", "url_o": "https://farm8.staticflickr.com/7044/6985722077_88eb8164a9_o.jpg", "secret": "31f58122bc", "media": "photo", "latitude": "33.657211", "id": "6985722077", "tags": "pier palmtrees pacificocean huntingtonbeach"}, {"datetaken": "2012-03-13 15:17:19", "license": "4", "title": "", "text": "", "album_id": "72157629593179079", "longitude": "-118.001923", "url_o": "https://farm8.staticflickr.com/7040/6839601094_49aaa7bb6a_o.jpg", "secret": "6e0226c276", "media": "photo", "latitude": "33.657211", "id": "6839601094", "tags": "telephone nostalgic amusing huntingtonbeach rubys"}, {"datetaken": "2013-04-17 08:33:01", "license": "1", "title": "Empty Cannon Street/Queen Victoria Street", "text": "", "album_id": "72157633268182236", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8111/8657013103_e204c5dc58_o.jpg", "secret": "3c74628f28", "media": "photo", "latitude": "0", "id": "8657013103", "tags": ""}, {"datetaken": "2013-04-17 08:39:15", "license": "1", "title": "Media tents", "text": "", "album_id": "72157633268182236", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8121/8657012989_1ac0dec055_o.jpg", "secret": "0b5b7943cd", "media": "photo", "latitude": "0", "id": "8657012989", "tags": ""}, {"datetaken": "2013-04-17 08:39:56", "license": "1", "title": "Spanish-speaking media", "text": "", "album_id": "72157633268182236", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8118/8657012889_e2285bafe1_o.jpg", "secret": "18dd264450", "media": "photo", "latitude": "0", "id": "8657012889", "tags": ""}, {"datetaken": "2013-04-17 08:41:06", "license": "1", "title": "Empty Cannon Street", "text": "", "album_id": "72157633268182236", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8117/8658119132_2c0bc9548e_o.jpg", "secret": "e528ac6cf5", "media": "photo", "latitude": "0", "id": "8658119132", "tags": ""}, {"datetaken": "2013-04-17 08:41:16", "license": "1", "title": "Empty roads", "text": "", "album_id": "72157633268182236", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8113/8657012693_dfe9457fa1_o.jpg", "secret": "7bf0b6c96f", "media": "photo", "latitude": "0", "id": "8657012693", "tags": ""}, {"datetaken": "2013-04-17 13:30:28", "license": "1", "title": "Clean-up after Thatcher's funeral service", "text": "", "album_id": "72157633268182236", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8102/8657012561_7f863cfed7_o.jpg", "secret": "cc40fe4397", "media": "photo", "latitude": "0", "id": "8657012561", "tags": ""}, {"datetaken": "2013-04-17 13:30:49", "license": "1", "title": "Stands around St Paul's", "text": "", "album_id": "72157633268182236", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8106/8657011611_0477625a4c_o.jpg", "secret": "7dbea296e1", "media": "photo", "latitude": "0", "id": "8657011611", "tags": ""}, {"datetaken": "2013-04-17 13:31:28", "license": "1", "title": "People around St Paul's", "text": "", "album_id": "72157633268182236", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8103/8658118824_6a75b86525_o.jpg", "secret": "d935ef9144", "media": "photo", "latitude": "0", "id": "8658118824", "tags": ""}, {"datetaken": "2013-04-17 13:31:36", "license": "1", "title": "VIP area", "text": "", "album_id": "72157633268182236", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8125/8657011469_8128084799_o.jpg", "secret": "b34091dfa0", "media": "photo", "latitude": "0", "id": "8657011469", "tags": ""}, {"datetaken": "2013-04-17 13:33:22", "license": "1", "title": "Man with a sign", "text": "", "album_id": "72157633268182236", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8117/8657012325_567e93ba98_o.jpg", "secret": "f6fd846806", "media": "photo", "latitude": "0", "id": "8657012325", "tags": ""}, {"datetaken": "2013-04-17 13:34:51", "license": "1", "title": "Man wearing the Union Jack", "text": "", "album_id": "72157633268182236", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8119/8658118424_70e61677b2_o.jpg", "secret": "2d692123a6", "media": "photo", "latitude": "0", "id": "8658118424", "tags": ""}, {"datetaken": "2013-04-17 13:38:32", "license": "1", "title": "Balloons outside St Paul's Cathedral", "text": "", "album_id": "72157633268182236", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8123/8658118240_8afa135b0b_o.jpg", "secret": "d323259f0c", "media": "photo", "latitude": "0", "id": "8658118240", "tags": ""}, {"datetaken": "2011-07-15 09:11:16", "license": "3", "title": "Trailmasters at Billing 2011", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6134/5951322289_1cba78c3ba_o.jpg", "secret": "cde175e619", "media": "photo", "latitude": "52.243332", "id": "5951322289", "tags": "billing lro billingaquadrome trailmasters wwwtrailmasterscom"}, {"datetaken": "2011-07-15 09:12:36", "license": "3", "title": "Hopefully I can add a 2011 version later this year!", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6024/5951886062_02c862ebca_o.jpg", "secret": "d409882f4a", "media": "photo", "latitude": "52.243332", "id": "5951886062", "tags": "billing lro billingaquadrome trailmasters wwwtrailmasterscom"}, {"datetaken": "2011-07-16 13:34:19", "license": "3", "title": "IMG_0184", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6022/5951335133_4789d1ceac_o.jpg", "secret": "23742bec48", "media": "photo", "latitude": "52.243332", "id": "5951335133", "tags": "billing lro billingaquadrome"}, {"datetaken": "2011-07-16 13:34:30", "license": "3", "title": "IMG_0185", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6139/5951893882_564131a626_o.jpg", "secret": "d55e4b5163", "media": "photo", "latitude": "52.243332", "id": "5951893882", "tags": "billing lro billingaquadrome"}, {"datetaken": "2011-07-16 13:34:43", "license": "3", "title": "IMG_0187", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6011/5951343623_36869ddcb3_o.jpg", "secret": "31e253821b", "media": "photo", "latitude": "52.243332", "id": "5951343623", "tags": "billing lro billingaquadrome"}, {"datetaken": "2011-07-16 13:35:12", "license": "3", "title": "IMG_0190.CR2", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6130/5951345375_048a152f3b_o.jpg", "secret": "c5cc2d481a", "media": "photo", "latitude": "52.243332", "id": "5951345375", "tags": "billing lro billingaquadrome"}, {"datetaken": "2011-07-16 13:35:20", "license": "3", "title": "Tired 110", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6123/5951906076_e1911c7f74_o.jpg", "secret": "b24b11bf0a", "media": "photo", "latitude": "52.243332", "id": "5951906076", "tags": "billing lro billingaquadrome"}, {"datetaken": "2011-07-16 13:41:02", "license": "3", "title": "Rare Camel Trophy Range Rover", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6021/5951363113_bf4ca66b88_o.jpg", "secret": "bdd35e7a7c", "media": "photo", "latitude": "52.243332", "id": "5951363113", "tags": "camel billing trophy lro cameltrophy billingaquadrome ownersclub cameltropyownersclub"}, {"datetaken": "2011-07-16 13:41:04", "license": "3", "title": "IMG_0195", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6146/5951922674_92e4f23695_o.jpg", "secret": "17f06e8378", "media": "photo", "latitude": "52.243332", "id": "5951922674", "tags": "camel billing trophy lro cameltrophy billingaquadrome ownersclub cameltropyownersclub"}, {"datetaken": "2011-07-16 13:41:24", "license": "3", "title": "IMG_0197", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6026/5951927932_9385d35df4_o.jpg", "secret": "75da8d139a", "media": "photo", "latitude": "52.243332", "id": "5951927932", "tags": "camel billing trophy lro cameltrophy billingaquadrome ownersclub cameltropyownersclub"}, {"datetaken": "2011-07-16 13:41:34", "license": "3", "title": "IMG_0198", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6140/5951378169_cf175b892f_o.jpg", "secret": "c09518d285", "media": "photo", "latitude": "52.243332", "id": "5951378169", "tags": "camel billing trophy lro cameltrophy billingaquadrome ownersclub cameltropyownersclub"}, {"datetaken": "2011-07-16 13:41:38", "license": "3", "title": "IMG_0199", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6025/5951382997_6f6ab998ca_o.jpg", "secret": "c818a9e4b9", "media": "photo", "latitude": "52.243332", "id": "5951382997", "tags": "camel billing trophy lro cameltrophy billingaquadrome ownersclub cameltropyownersclub"}, {"datetaken": "2011-07-16 13:41:44", "license": "3", "title": "IMG_0200", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6020/5951388971_d463f8548f_o.jpg", "secret": "42f2e40974", "media": "photo", "latitude": "52.243332", "id": "5951388971", "tags": "camel billing trophy lro cameltrophy billingaquadrome ownersclub cameltropyownersclub"}, {"datetaken": "2011-07-16 13:44:35", "license": "3", "title": "IMG_0203", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6025/5951391437_8a0291483e_o.jpg", "secret": "641fd436f7", "media": "photo", "latitude": "52.243332", "id": "5951391437", "tags": "camel billing trophy lro cameltrophy billingaquadrome ownersclub cameltropyownersclub"}, {"datetaken": "2011-07-16 13:44:38", "license": "3", "title": "Rare Camel Trophy Range Rover", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6028/5951950614_2ecc24093c_o.jpg", "secret": "60ae25c631", "media": "photo", "latitude": "52.243332", "id": "5951950614", "tags": "camel billing trophy lro cameltrophy billingaquadrome ownersclub cameltropyownersclub"}, {"datetaken": "2011-07-16 13:46:08", "license": "3", "title": "Camel Tropy Owners", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6129/5951955938_6586eea134_o.jpg", "secret": "15a0a78c01", "media": "photo", "latitude": "52.243332", "id": "5951955938", "tags": "camel billing trophy lro cameltrophy billingaquadrome ownersclub cameltropyownersclub"}, {"datetaken": "2011-07-16 14:01:55", "license": "3", "title": "Nene Overland's Defender Icon", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6020/5951403301_2844f1fa59_o.jpg", "secret": "595526934c", "media": "photo", "latitude": "52.243332", "id": "5951403301", "tags": "icon billing lro billingaquadrome neneoverland defendericon"}, {"datetaken": "2011-07-16 14:03:38", "license": "3", "title": "Defender 130 Hearse", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6145/5951969128_72057f628e_o.jpg", "secret": "b026d32863", "media": "photo", "latitude": "52.243332", "id": "5951969128", "tags": "conversion funeral billing coffin 130 hearse lro billingaquadrome defender130"}, {"datetaken": "2011-07-16 14:04:02", "license": "3", "title": "Defender 130 - Vodafone", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6001/5951981970_4053d598ec_o.jpg", "secret": "9b5117aae1", "media": "photo", "latitude": "52.243332", "id": "5951981970", "tags": "conversion billing 130 lro billingaquadrome defender130"}, {"datetaken": "2011-07-16 14:04:45", "license": "3", "title": "Defender 130", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6015/5951985840_0365e88b1b_o.jpg", "secret": "26733af82c", "media": "photo", "latitude": "52.243332", "id": "5951985840", "tags": "conversion billing 130 lro billingaquadrome defender130"}, {"datetaken": "2011-07-16 14:06:44", "license": "3", "title": "Defender 130", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6139/5951434231_71506cbff2_o.jpg", "secret": "f0b9b0fa83", "media": "photo", "latitude": "52.243332", "id": "5951434231", "tags": "conversion billing 130 lro billingaquadrome defender130"}, {"datetaken": "2011-07-16 16:15:18", "license": "3", "title": "fizzy pop!", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6018/5951995374_854604cf47_o.jpg", "secret": "7376cf0cfb", "media": "photo", "latitude": "52.243332", "id": "5951995374", "tags": "champagne bubbles pop billing bubbly fizz moetchandon moet lro billingaquadrome"}, {"datetaken": "2011-07-16 17:14:00", "license": "3", "title": "IMG_0247", "text": "", "album_id": "72157627225981046", "longitude": "-0.817065", "url_o": "https://farm7.staticflickr.com/6147/5951997906_634069d755_o.jpg", "secret": "a23e6878ee", "media": "photo", "latitude": "52.243332", "id": "5951997906", "tags": "billing lro billingaquadrome"}, {"datetaken": "2013-01-18 17:44:24", "license": "1", "title": "Visitation for Richard Thomas", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8510/8393211237_db3cb7336a_o.jpg", "secret": "d7afe14216", "media": "photo", "latitude": "0.000000", "id": "8393211237", "tags": "richardthomas"}, {"datetaken": "2013-01-18 17:44:33", "license": "1", "title": "Visitation for Richard Thomas", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8506/8394298724_e87be8482b_o.jpg", "secret": "fa3e21574b", "media": "photo", "latitude": "0.000000", "id": "8394298724", "tags": "richardthomas"}, {"datetaken": "2013-01-18 17:44:42", "license": "1", "title": "Visitation for Richard Thomas", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8475/8393214707_0d73c05205_o.jpg", "secret": "35255a4d5c", "media": "photo", "latitude": "0.000000", "id": "8393214707", "tags": "richardthomas"}, {"datetaken": "2013-01-18 17:44:49", "license": "1", "title": "Visitation for Richard Thomas", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8237/8394302322_7cfdae994d_o.jpg", "secret": "3de1e81835", "media": "photo", "latitude": "0.000000", "id": "8394302322", "tags": "richardthomas"}, {"datetaken": "2013-01-18 17:44:57", "license": "1", "title": "Visitation for Richard Thomas", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8325/8393218303_e63f83024a_o.jpg", "secret": "6a5e9339e8", "media": "photo", "latitude": "0.000000", "id": "8393218303", "tags": "richardthomas"}, {"datetaken": "2013-01-18 17:45:02", "license": "1", "title": "Visitation for Richard Thomas", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8047/8394305932_06e7778fa7_o.jpg", "secret": "7b5a51fea0", "media": "photo", "latitude": "0.000000", "id": "8394305932", "tags": "richardthomas"}, {"datetaken": "2013-01-18 17:45:21", "license": "1", "title": "Visitation for Richard Thomas", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8336/8393222593_b9056e9853_o.jpg", "secret": "7ae9fd3be9", "media": "photo", "latitude": "0.000000", "id": "8393222593", "tags": "richardthomas"}, {"datetaken": "2013-01-18 17:45:26", "license": "1", "title": "Visitation for Richard Thomas", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8071/8394310362_711ea679e9_o.jpg", "secret": "54bc22d40b", "media": "photo", "latitude": "0.000000", "id": "8394310362", "tags": "richardthomas"}, {"datetaken": "2013-01-18 17:49:35", "license": "1", "title": "Visitation for Richard Thomas", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8360/8393226381_dea2c10ba2_o.jpg", "secret": "c89b8e99dc", "media": "photo", "latitude": "0.000000", "id": "8393226381", "tags": "richardthomas"}, {"datetaken": "2013-01-18 17:50:12", "license": "1", "title": "Day 046 (Year 7) 018/365 AND Day 2239: Visitation for Richard Thomas", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8511/8394314458_0b7cca8f27_o.jpg", "secret": "87c59a5fa0", "media": "photo", "latitude": "0.000000", "id": "8394314458", "tags": "richardthomas"}, {"datetaken": "2013-01-18 17:51:24", "license": "1", "title": "Visitation for Richard Thomas", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8228/8394316974_936197a0d2_o.jpg", "secret": "fa95bbb8e4", "media": "photo", "latitude": "0.000000", "id": "8394316974", "tags": "richardthomas"}, {"datetaken": "2013-01-18 17:52:42", "license": "1", "title": "Visitation for Richard Thomas", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8216/8393232863_6eaca1d889_o.jpg", "secret": "27a8fe845d", "media": "photo", "latitude": "0.000000", "id": "8393232863", "tags": "richardthomas"}, {"datetaken": "2013-01-19 09:02:36", "license": "1", "title": "Hilton Garden - Gainesville GA", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8514/8395431086_8c20db34af_o.jpg", "secret": "86b79fdfb4", "media": "photo", "latitude": "0.000000", "id": "8395431086", "tags": "gainesvillega hiltongardeninn"}, {"datetaken": "2013-01-19 09:02:54", "license": "1", "title": "Hilton Garden - Gainesville GA", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8043/8394350227_c052273401_o.jpg", "secret": "3887232659", "media": "photo", "latitude": "0.000000", "id": "8394350227", "tags": "gainesvillega hiltongardeninn"}, {"datetaken": "2013-01-19 09:02:59", "license": "1", "title": "Hilton Garden - Gainesville GA", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8073/8394353271_ba3d580beb_o.jpg", "secret": "e8a58f782b", "media": "photo", "latitude": "0.000000", "id": "8394353271", "tags": "gainesvillega hiltongardeninn"}, {"datetaken": "2013-01-19 09:05:22", "license": "1", "title": "Hilton Garden - Gainesville GA", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8234/8394356385_f2f4eeeb63_o.jpg", "secret": "2dc49492d4", "media": "photo", "latitude": "0.000000", "id": "8394356385", "tags": "gainesvillega hiltongardeninn"}, {"datetaken": "2013-01-19 09:06:40", "license": "1", "title": "Hilton Garden - Gainesville GA", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8227/8394359579_29f7394430_o.jpg", "secret": "e9932b83c3", "media": "photo", "latitude": "0.000000", "id": "8394359579", "tags": "gainesvillega hiltongardeninn"}, {"datetaken": "2013-01-19 09:06:47", "license": "1", "title": "Hilton Garden - Gainesville GA", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8373/8395446836_fee0e2cba7_o.jpg", "secret": "6aa289088b", "media": "photo", "latitude": "0.000000", "id": "8395446836", "tags": "gainesvillega hiltongardeninn"}, {"datetaken": "2013-01-19 09:41:48", "license": "1", "title": "Hilton Garden - Gainesville GA", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8360/8394366123_1aaa12cc2f_o.jpg", "secret": "8249432e78", "media": "photo", "latitude": "0.000000", "id": "8394366123", "tags": "gainesvillega hiltongardeninn"}, {"datetaken": "2013-01-19 09:42:04", "license": "1", "title": "Hilton Garden - Gainesville GA", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8362/8394368877_89f749b4d9_o.jpg", "secret": "f4b49ecb36", "media": "photo", "latitude": "0.000000", "id": "8394368877", "tags": "gainesvillega hiltongardeninn"}, {"datetaken": "2013-01-19 09:42:20", "license": "1", "title": "Hilton Garden - Gainesville GA", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8090/8394372041_1f88bc1c50_o.jpg", "secret": "b7f673e7b4", "media": "photo", "latitude": "0.000000", "id": "8394372041", "tags": "gainesvillega hiltongardeninn"}, {"datetaken": "2013-01-19 09:42:35", "license": "1", "title": "Hilton Garden - Gainesville GA", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8376/8394375385_c3e73578d1_o.jpg", "secret": "b4d01e54d2", "media": "photo", "latitude": "0.000000", "id": "8394375385", "tags": "gainesvillega hiltongardeninn"}, {"datetaken": "2013-01-19 09:42:50", "license": "1", "title": "Hilton Garden - Gainesville GA", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8368/8395462138_ec479bf9e6_o.jpg", "secret": "fe9c0ebfb9", "media": "photo", "latitude": "0.000000", "id": "8395462138", "tags": "gainesvillega hiltongardeninn"}, {"datetaken": "2013-01-19 09:43:19", "license": "1", "title": "Hilton Garden - Gainesville GA", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8325/8394381129_ef9f0ecff7_o.jpg", "secret": "1332da70c8", "media": "photo", "latitude": "0.000000", "id": "8394381129", "tags": "gainesvillega hiltongardeninn"}, {"datetaken": "2013-01-19 10:57:27", "license": "1", "title": "Christmas 2012 at Mother's", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8470/8397602917_dc38238c23_o.jpg", "secret": "8f5120b779", "media": "photo", "latitude": "0.000000", "id": "8397602917", "tags": "mother"}, {"datetaken": "2013-01-19 10:58:14", "license": "1", "title": "Christmas 2012 at Mother's", "text": "", "album_id": "72157632556438915", "longitude": "0.000000", "url_o": "https://farm9.staticflickr.com/8092/8398699436_62baf0c28d_o.jpg", "secret": "45a0acf08d", "media": "photo", "latitude": "0.000000", "id": "8398699436", "tags": "mother"}, {"datetaken": "2005-02-19 20:52:51", "license": "1", "title": "Leichenschmaus", "text": "", "album_id": "129512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5121782_c575ba14ec_o.jpg", "secret": "c575ba14ec", "media": "photo", "latitude": "0", "id": "5121782", "tags": "party food cake funeral birthday"}, {"datetaken": "2005-02-19 20:59:49", "license": "1", "title": "St. Benedikt", "text": "", "album_id": "129512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5116376_ea8b65b941_o.jpg", "secret": "ea8b65b941", "media": "photo", "latitude": "0", "id": "5116376", "tags": "party church funeral birthday"}, {"datetaken": "2005-02-19 20:59:49", "license": "1", "title": "Rauchen t\u00f6tet heute draussen", "text": "", "album_id": "129512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5116396_1c4a06cc79_o.jpg", "secret": "1c4a06cc79", "media": "photo", "latitude": "0", "id": "5116396", "tags": "party funeral birthday"}, {"datetaken": "2005-02-19 22:03:05", "license": "1", "title": "Trauerg\u00e4ste", "text": "", "album_id": "129512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5116803_85503673ca_o.jpg", "secret": "85503673ca", "media": "photo", "latitude": "0", "id": "5116803", "tags": "party funeral birthday"}, {"datetaken": "2005-02-19 23:17:13", "license": "1", "title": "Anselm", "text": "", "album_id": "129512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5137119_d22dac4e36_o.jpg", "secret": "d22dac4e36", "media": "photo", "latitude": "0", "id": "5137119", "tags": "party friends funeral birthday"}, {"datetaken": "2005-02-19 23:20:52", "license": "1", "title": "Die Dame mit der Peitsche", "text": "", "album_id": "129512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5139945_a558219a81_o.jpg", "secret": "a558219a81", "media": "photo", "latitude": "0", "id": "5139945", "tags": "party whip funeral birthday"}, {"datetaken": "2005-02-19 23:41:18", "license": "1", "title": "Bernd happy", "text": "", "album_id": "129512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5142378_858ee09e76_o.jpg", "secret": "858ee09e76", "media": "photo", "latitude": "0", "id": "5142378", "tags": "party funeral birthday"}, {"datetaken": "2005-02-19 23:52:08", "license": "1", "title": "Karaoke", "text": "", "album_id": "129512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5139312_7501e94bab_o.jpg", "secret": "7501e94bab", "media": "photo", "latitude": "0", "id": "5139312", "tags": "party singing karaoke funeral birthday"}, {"datetaken": "2005-02-19 23:57:58", "license": "1", "title": "Karaoke", "text": "", "album_id": "129512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5140130_8b4f304c89_o.jpg", "secret": "8b4f304c89", "media": "photo", "latitude": "0", "id": "5140130", "tags": "party karaoke singing dancing funeral birthday"}, {"datetaken": "2005-02-19 23:59:34", "license": "1", "title": "Karaoke Dancing", "text": "", "album_id": "129512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5140461_4c5555e229_o.jpg", "secret": "4c5555e229", "media": "photo", "latitude": "0", "id": "5140461", "tags": "karaoke party dancing funeral birthday"}, {"datetaken": "2005-02-20 01:19:45", "license": "1", "title": "Bernd", "text": "", "album_id": "129512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5124396_e4c62c1a35_o.jpg", "secret": "e4c62c1a35", "media": "photo", "latitude": "0", "id": "5124396", "tags": "party funeral birthday"}, {"datetaken": "2005-02-20 02:10:20", "license": "1", "title": "Later that night", "text": "", "album_id": "129512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5142178_277920ce74_o.jpg", "secret": "277920ce74", "media": "photo", "latitude": "0", "id": "5142178", "tags": "party funeral birthday"}, {"datetaken": "2010-03-20 20:50:26", "license": "3", "title": "cedar street courtyard friends", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4449081649_49b8563341_o.jpg", "secret": "05974343dd", "media": "photo", "latitude": "0", "id": "4449081649", "tags": "work vanessanaylon"}, {"datetaken": "2010-03-20 20:50:41", "license": "3", "title": "chorizo, potato", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4449857830_f6f522d003_o.jpg", "secret": "0693a0a8fe", "media": "photo", "latitude": "0", "id": "4449857830", "tags": "food tacos doomdoomdoom vanessanaylon"}, {"datetaken": "2010-03-20 20:50:47", "license": "3", "title": "then we got on our bikes and went somewhere fun", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4449081583_aef65d2032_o.jpg", "secret": "7e04910d94", "media": "photo", "latitude": "0", "id": "4449081583", "tags": "vanessanaylon"}, {"datetaken": "2010-03-20 20:55:54", "license": "3", "title": "bike buddies", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4449081521_d11ea200f1_o.jpg", "secret": "9b3689913d", "media": "photo", "latitude": "0", "id": "4449081521", "tags": "signs bike work award sxsw jm3 140proof vanessanaylon"}, {"datetaken": "2010-03-20 20:57:01", "license": "3", "title": "metric", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4449857860_25ca5f983d_o.jpg", "secret": "20160f9710", "media": "photo", "latitude": "0", "id": "4449857860", "tags": "vanessanaylon"}, {"datetaken": "2010-03-20 20:57:43", "license": "3", "title": "asteroids galaxy tour", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4449857954_545724273b_o.jpg", "secret": "11cbfe0ee7", "media": "photo", "latitude": "0", "id": "4449857954", "tags": "vanessanaylon"}, {"datetaken": "2010-03-20 20:57:49", "license": "3", "title": "woof", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4449081881_81f60b4ca7_o.jpg", "secret": "c75f800280", "media": "photo", "latitude": "0", "id": "4449081881", "tags": "vanessanaylon"}, {"datetaken": "2010-03-20 20:57:56", "license": "3", "title": "musicians, speed dating", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4449858046_2ac0e3f4a7_o.jpg", "secret": "078e4df4ff", "media": "photo", "latitude": "0", "id": "4449858046", "tags": "vanessanaylon"}, {"datetaken": "2010-03-20 20:58:03", "license": "3", "title": "good cheeseburger. ok ceviche.", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4449857890_5538861d0a_o.jpg", "secret": "b6ed563bb5", "media": "photo", "latitude": "0", "id": "4449857890", "tags": "vanessanaylon"}, {"datetaken": "2010-03-20 20:58:09", "license": "3", "title": "band of horses", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4449858068_4c3b7e7c59_o.jpg", "secret": "dc84e8598c", "media": "photo", "latitude": "0", "id": "4449858068", "tags": "austin concert sxsw bandofhorses vanessanaylon"}, {"datetaken": "2010-03-20 20:58:11", "license": "3", "title": "@bl i am special", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4449085339_fe25abd9ae_o.jpg", "secret": "8768301e77", "media": "photo", "latitude": "0", "id": "4449085339", "tags": "pass badge sxsw vanessanaylon"}, {"datetaken": "2010-03-20 20:58:16", "license": "3", "title": "state capitol building", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4449085483_bfb282a33c_o.jpg", "secret": "bdb905695f", "media": "photo", "latitude": "0", "id": "4449085483", "tags": "austin texas statecapitol vanessanaylon"}, {"datetaken": "2010-03-20 20:58:23", "license": "3", "title": "flying", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2702/4449085515_b86b318362_o.jpg", "secret": "8434111071", "media": "photo", "latitude": "0", "id": "4449085515", "tags": "vanessanaylon"}, {"datetaken": "2010-03-20 20:58:27", "license": "3", "title": "ice on a swizzle stick", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2743/4449858098_8619819b56_o.jpg", "secret": "12366c7879", "media": "photo", "latitude": "0", "id": "4449858098", "tags": "vanessanaylon"}, {"datetaken": "2010-03-20 21:05:34", "license": "3", "title": "egg & chorizo tacos", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4449082195_33c3f8a040_o.jpg", "secret": "6c1a400acf", "media": "photo", "latitude": "0", "id": "4449082195", "tags": "food tacos doomdoomdoom vanessanaylon"}, {"datetaken": "2010-03-20 21:05:35", "license": "3", "title": "entomatadas", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4449858292_6dc84f055b_o.jpg", "secret": "66de9735c9", "media": "photo", "latitude": "0", "id": "4449858292", "tags": "food austin tacos sxsw texmex polvos doomdoomdoom entomatadas vanessanaylon eatly"}, {"datetaken": "2010-03-20 21:05:37", "license": "3", "title": "lonely business card", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4449858324_a165e2dd4f_o.jpg", "secret": "55bc0f3a86", "media": "photo", "latitude": "0", "id": "4449858324", "tags": "sxsw foursquare vanessanaylon"}, {"datetaken": "2010-03-20 21:05:39", "license": "3", "title": "if you could make this panel immersive that'd be great", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4449857718_921d369dbf_o.jpg", "secret": "78ccc729cd", "media": "photo", "latitude": "0", "id": "4449857718", "tags": "vanessanaylon"}, {"datetaken": "2010-03-20 21:06:07", "license": "3", "title": "kaossilator playtime", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4449861504_513902353b_o.jpg", "secret": "9b38a14139", "media": "photo", "latitude": "0", "id": "4449861504", "tags": "vanessanaylon"}, {"datetaken": "2010-03-20 21:06:27", "license": "3", "title": "your classroom chair, dipped in concrete", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4449085399_78870f4a0c_o.jpg", "secret": "c59a7e3398", "media": "photo", "latitude": "0", "id": "4449085399", "tags": "vanessanaylon"}, {"datetaken": "2010-03-20 21:06:42", "license": "3", "title": "my favorite flower", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4449085463_620bdf7e47_o.jpg", "secret": "3097e5e10b", "media": "photo", "latitude": "0", "id": "4449085463", "tags": "vanessanaylon"}, {"datetaken": "2010-03-20 21:14:50", "license": "3", "title": "cigarette commercial", "text": "", "album_id": "72157623660677964", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4449861406_b8412cbba9_o.jpg", "secret": "8259d7088c", "media": "video", "latitude": "0", "id": "4449861406", "tags": "austin texas sxsw vanessanaylon sxsw2010 alamoritztheatre"}, {"datetaken": "2011-06-16 12:37:50", "license": "1", "title": "June 16th, 10:30pm: Northside DIY Filmmaking Competition: Funeral Season with Three Envelopes", "text": "", "album_id": "72157626883738735", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5272/5853926883_3531b57136_o.jpg", "secret": "c967ede898", "media": "photo", "latitude": "0", "id": "5853926883", "tags": "uniondocs toddp rosieperez tedhope northsidefestival matthewlancit rajendraroy diyfilmmakingcompetition patriciakaufman funeralseason laurahudock threeenvelopes jamespgannon josephkgannon"}, {"datetaken": "2011-06-16 12:38:14", "license": "1", "title": "June 16th, 10:30pm: Northside DIY Filmmaking Competition: Funeral Season with Three Envelopes", "text": "", "album_id": "72157626883738735", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2589/5854493480_01bd3d2ddf_o.jpg", "secret": "c0fcf040e3", "media": "photo", "latitude": "0", "id": "5854493480", "tags": "uniondocs toddp rosieperez tedhope northsidefestival matthewlancit rajendraroy diyfilmmakingcompetition patriciakaufman funeralseason laurahudock threeenvelopes jamespgannon josephkgannon"}, {"datetaken": "2011-06-16 12:38:45", "license": "1", "title": "June 16th, 10:30pm: Northside DIY Filmmaking Competition: Funeral Season with Three Envelopes", "text": "", "album_id": "72157626883738735", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2792/5853943173_c19620f970_o.jpg", "secret": "d1e5133682", "media": "photo", "latitude": "0", "id": "5853943173", "tags": "uniondocs toddp rosieperez tedhope northsidefestival matthewlancit rajendraroy diyfilmmakingcompetition patriciakaufman funeralseason laurahudock threeenvelopes jamespgannon josephkgannon"}, {"datetaken": "2011-06-16 12:40:52", "license": "1", "title": "June 16th, 10:30pm: Northside DIY Filmmaking Competition: Funeral Season with Three Envelopes", "text": "", "album_id": "72157626883738735", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2538/5853932429_dda94e61c8_o.jpg", "secret": "33c9d62839", "media": "photo", "latitude": "0", "id": "5853932429", "tags": "uniondocs toddp rosieperez tedhope northsidefestival matthewlancit rajendraroy diyfilmmakingcompetition patriciakaufman funeralseason laurahudock threeenvelopes jamespgannon josephkgannon"}, {"datetaken": "2011-06-16 12:41:30", "license": "1", "title": "June 16th, 10:30pm: Northside DIY Filmmaking Competition: Funeral Season with Three Envelopes", "text": "", "album_id": "72157626883738735", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5272/5854480792_a287b9eee6_o.jpg", "secret": "11174a39c1", "media": "photo", "latitude": "0", "id": "5854480792", "tags": "uniondocs toddp rosieperez tedhope northsidefestival matthewlancit rajendraroy diyfilmmakingcompetition patriciakaufman funeralseason laurahudock threeenvelopes jamespgannon josephkgannon"}, {"datetaken": "2011-06-16 12:41:36", "license": "1", "title": "June 16th, 10:30pm: Northside DIY Filmmaking Competition: Funeral Season with Three Envelopes", "text": "", "album_id": "72157626883738735", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3204/5854482362_00c6af1785_o.jpg", "secret": "ee6c9ddb30", "media": "photo", "latitude": "0", "id": "5854482362", "tags": "uniondocs toddp rosieperez tedhope northsidefestival matthewlancit rajendraroy diyfilmmakingcompetition patriciakaufman funeralseason laurahudock threeenvelopes jamespgannon josephkgannon"}, {"datetaken": "2011-06-16 12:41:39", "license": "1", "title": "June 16th, 10:30pm: Northside DIY Filmmaking Competition: Funeral Season with Three Envelopes", "text": "", "album_id": "72157626883738735", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3252/5854484430_ef472ec583_o.jpg", "secret": "dd46a8bfa0", "media": "photo", "latitude": "0", "id": "5854484430", "tags": "uniondocs toddp rosieperez tedhope northsidefestival matthewlancit rajendraroy diyfilmmakingcompetition patriciakaufman funeralseason laurahudock threeenvelopes jamespgannon josephkgannon"}, {"datetaken": "2011-06-16 12:43:03", "license": "1", "title": "June 16th, 10:30pm: Northside DIY Filmmaking Competition: Funeral Season with Three Envelopes", "text": "", "album_id": "72157626883738735", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5184/5853933211_a722d8afb1_o.jpg", "secret": "8701b60559", "media": "photo", "latitude": "0", "id": "5853933211", "tags": "uniondocs toddp rosieperez tedhope northsidefestival matthewlancit rajendraroy diyfilmmakingcompetition patriciakaufman funeralseason laurahudock threeenvelopes jamespgannon josephkgannon"}, {"datetaken": "2011-06-16 12:43:56", "license": "1", "title": "June 16th, 10:30pm: Northside DIY Filmmaking Competition: Funeral Season with Three Envelopes", "text": "", "album_id": "72157626883738735", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5310/5853934087_e45c076171_o.jpg", "secret": "290f42320d", "media": "photo", "latitude": "0", "id": "5853934087", "tags": "uniondocs toddp rosieperez tedhope northsidefestival matthewlancit rajendraroy diyfilmmakingcompetition patriciakaufman funeralseason laurahudock threeenvelopes jamespgannon josephkgannon"}, {"datetaken": "2011-06-16 12:45:41", "license": "1", "title": "June 16th, 10:30pm: Northside DIY Filmmaking Competition: Funeral Season with Three Envelopes", "text": "", "album_id": "72157626883738735", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5112/5853935121_bfe9b7f6cc_o.jpg", "secret": "ed10bf537c", "media": "photo", "latitude": "0", "id": "5853935121", "tags": "uniondocs toddp rosieperez tedhope northsidefestival matthewlancit rajendraroy diyfilmmakingcompetition patriciakaufman funeralseason laurahudock threeenvelopes jamespgannon josephkgannon"}, {"datetaken": "2011-06-16 12:45:50", "license": "1", "title": "June 16th, 10:30pm: Northside DIY Filmmaking Competition: Funeral Season with Three Envelopes", "text": "", "album_id": "72157626883738735", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5238/5854490224_66e2f34408_o.jpg", "secret": "4b02cbd580", "media": "photo", "latitude": "0", "id": "5854490224", "tags": "uniondocs toddp rosieperez tedhope northsidefestival matthewlancit rajendraroy diyfilmmakingcompetition patriciakaufman funeralseason laurahudock threeenvelopes jamespgannon josephkgannon"}, {"datetaken": "2011-06-16 12:46:52", "license": "1", "title": "June 16th, 10:30pm: Northside DIY Filmmaking Competition: Funeral Season with Three Envelopes", "text": "", "album_id": "72157626883738735", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5030/5854492416_90a84c0097_o.jpg", "secret": "5a0e057867", "media": "photo", "latitude": "0", "id": "5854492416", "tags": "uniondocs toddp rosieperez tedhope northsidefestival matthewlancit rajendraroy diyfilmmakingcompetition patriciakaufman funeralseason laurahudock threeenvelopes jamespgannon josephkgannon"}, {"datetaken": "2011-06-16 12:48:18", "license": "1", "title": "June 16th, 10:30pm: Northside DIY Filmmaking Competition: Funeral Season with Three Envelopes", "text": "", "album_id": "72157626883738735", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5316/5854494672_43fcff4d4e_o.jpg", "secret": "6e09c54212", "media": "photo", "latitude": "0", "id": "5854494672", "tags": "uniondocs toddp rosieperez tedhope northsidefestival matthewlancit rajendraroy diyfilmmakingcompetition patriciakaufman funeralseason laurahudock threeenvelopes jamespgannon josephkgannon"}, {"datetaken": "2011-06-16 12:48:30", "license": "1", "title": "June 16th, 10:30pm: Northside DIY Filmmaking Competition: Funeral Season with Three Envelopes", "text": "", "album_id": "72157626883738735", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3032/5853928613_2030bf5a52_o.jpg", "secret": "99064fe727", "media": "photo", "latitude": "0", "id": "5853928613", "tags": "uniondocs toddp rosieperez tedhope northsidefestival matthewlancit rajendraroy diyfilmmakingcompetition patriciakaufman funeralseason laurahudock threeenvelopes jamespgannon josephkgannon"}, {"datetaken": "2012-10-21 07:42:18", "license": "4", "title": "John, why the glum face?", "text": "", "album_id": "72157631819742383", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8195/8108944617_a298c665cd_o.jpg", "secret": "9cdc76587a", "media": "photo", "latitude": "0", "id": "8108944617", "tags": ""}, {"datetaken": "2012-10-21 07:44:59", "license": "4", "title": "Steve is Me", "text": "", "album_id": "72157631819742383", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8323/8108951140_a7d3002668_o.jpg", "secret": "5b2d959aaf", "media": "photo", "latitude": "0", "id": "8108951140", "tags": ""}, {"datetaken": "2012-10-21 07:46:11", "license": "4", "title": "<^4 means 7 8 6, a lucky and religious number in Islam", "text": "", "album_id": "72157631819742383", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8187/8108924337_89d4c7c1eb_o.jpg", "secret": "3718ca8256", "media": "photo", "latitude": "0", "id": "8108924337", "tags": ""}, {"datetaken": "2012-10-21 07:46:28", "license": "4", "title": "Omar S. Mahmoud", "text": "", "album_id": "72157631819742383", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8469/8108923019_8ff4e834bd_o.jpg", "secret": "bb24bc7792", "media": "photo", "latitude": "0", "id": "8108923019", "tags": ""}, {"datetaken": "2012-10-21 07:49:22", "license": "4", "title": "Maulana Syed Fasih Uddin", "text": "", "album_id": "72157631819742383", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8052/8108920849_cafb51ee40_o.jpg", "secret": "27df0f4326", "media": "photo", "latitude": "0", "id": "8108920849", "tags": ""}, {"datetaken": "2012-10-21 07:50:52", "license": "4", "title": "Recent burial", "text": "", "album_id": "72157631819742383", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8334/8108926782_045c0eccd6_o.jpg", "secret": "060b766ed0", "media": "photo", "latitude": "0", "id": "8108926782", "tags": ""}, {"datetaken": "2012-10-21 07:51:33", "license": "4", "title": "Paan?", "text": "", "album_id": "72157631819742383", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8475/8108919323_9b4623bd6a_o.jpg", "secret": "281710c821", "media": "photo", "latitude": "0", "id": "8108919323", "tags": ""}, {"datetaken": "2012-10-21 07:53:23", "license": "4", "title": "General Gholam Sediq Miraki's son is in Wikipedia", "text": "", "album_id": "72157631819742383", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8475/8108917773_8d4d9cfff2_o.jpg", "secret": "be8e795b40", "media": "photo", "latitude": "0", "id": "8108917773", "tags": ""}, {"datetaken": "2012-10-21 07:53:37", "license": "4", "title": "Humble grave w/plant", "text": "", "album_id": "72157631819742383", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8475/8108923536_0c80946318_o.jpg", "secret": "b61e48f68e", "media": "photo", "latitude": "0", "id": "8108923536", "tags": ""}, {"datetaken": "2012-10-21 08:02:54", "license": "4", "title": "Dr. Iftikhar Nasim - Editor of Pakistani Times, Urdu poet, and gay", "text": "", "album_id": "72157631819742383", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8053/8108922274_0443ca62d8_o.jpg", "secret": "b222e10c41", "media": "photo", "latitude": "0", "id": "8108922274", "tags": ""}, {"datetaken": "2012-10-21 08:04:01", "license": "4", "title": "Friehiwet Tahir \"The Anchor of our Family\"", "text": "", "album_id": "72157631819742383", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8192/8108914013_eca8b61c93_o.jpg", "secret": "86821efbc5", "media": "photo", "latitude": "0", "id": "8108914013", "tags": ""}, {"datetaken": "2012-10-21 08:05:50", "license": "4", "title": "Cut white roses sticking up out of ground amid red rose petals strewn about", "text": "", "album_id": "72157631819742383", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8184/8108912039_0d7d54fe52_o.jpg", "secret": "07fdfde5d0", "media": "photo", "latitude": "0", "id": "8108912039", "tags": ""}, {"datetaken": "2012-10-21 08:06:29", "license": "4", "title": "Fareed Unnissa Begum is not a name but a title", "text": "", "album_id": "72157631819742383", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8055/8108910771_e3ae4c6b6a_o.jpg", "secret": "afd065e158", "media": "photo", "latitude": "0", "id": "8108910771", "tags": ""}, {"datetaken": "2012-10-21 08:07:43", "license": "4", "title": "Donald Keith Cleary converted to Islam", "text": "", "album_id": "72157631819742383", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8190/8108909559_c44741ba36_o.jpg", "secret": "feb867a023", "media": "photo", "latitude": "0", "id": "8108909559", "tags": ""}, {"datetaken": "2013-02-22 03:23:03", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8250/8497899323_ef0bb5f38a_o.jpg", "secret": "b237d81d69", "media": "photo", "latitude": "0", "id": "8497899323", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 03:23:33", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8093/8499003526_e36bc75166_o.jpg", "secret": "cc1ce8cbe4", "media": "photo", "latitude": "0", "id": "8499003526", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 03:27:08", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8109/8497898921_73f6d0a967_o.jpg", "secret": "c11d0c8b15", "media": "photo", "latitude": "0", "id": "8497898921", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 03:34:30", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8099/8499003102_fe44c51d23_o.jpg", "secret": "0f6be17bd8", "media": "photo", "latitude": "0", "id": "8499003102", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 03:35:26", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8376/8497898429_c0df88c2b6_o.jpg", "secret": "8bf8d914d6", "media": "photo", "latitude": "0", "id": "8497898429", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 03:36:20", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8231/8499002750_35628f292f_o.jpg", "secret": "8560e55ab8", "media": "photo", "latitude": "0", "id": "8499002750", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 03:38:02", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8378/8499002596_e2861e87ec_o.jpg", "secret": "19560f2eb7", "media": "photo", "latitude": "0", "id": "8499002596", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 03:39:04", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8506/8499002380_b9beececb3_o.jpg", "secret": "5b87217548", "media": "photo", "latitude": "0", "id": "8499002380", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 03:43:49", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8240/8499002058_d76d604e10_o.jpg", "secret": "3292f8397a", "media": "photo", "latitude": "0", "id": "8499002058", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 03:46:05", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8105/8499001892_db232aca63_o.jpg", "secret": "9fb32fbced", "media": "photo", "latitude": "0", "id": "8499001892", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 03:49:52", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8530/8497897285_56443bd746_o.jpg", "secret": "853c05e993", "media": "photo", "latitude": "0", "id": "8497897285", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 04:48:09", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8234/8497897117_b6827737f1_o.jpg", "secret": "5d8f0950a9", "media": "photo", "latitude": "0", "id": "8497897117", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 04:49:43", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8366/8497896975_8c5c833ab6_o.jpg", "secret": "0b85469b69", "media": "photo", "latitude": "0", "id": "8497896975", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 04:54:08", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8244/8497896837_be5bd3b162_o.jpg", "secret": "3f6d8cf2d8", "media": "photo", "latitude": "0", "id": "8497896837", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 04:54:55", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8513/8497896683_5bb6fa01e1_o.jpg", "secret": "9d5633b99d", "media": "photo", "latitude": "0", "id": "8497896683", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 04:54:59", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8389/8497896519_a0a0525831_o.jpg", "secret": "d66d386926", "media": "photo", "latitude": "0", "id": "8497896519", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 04:56:05", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8106/8499000774_dd22c01de9_o.jpg", "secret": "39f3fec2a9", "media": "photo", "latitude": "0", "id": "8499000774", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 05:01:23", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8225/8497896249_8d50803676_o.jpg", "secret": "d94e65efaf", "media": "photo", "latitude": "0", "id": "8497896249", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 05:04:15", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8505/8497896153_bfed0c8427_o.jpg", "secret": "c208707669", "media": "photo", "latitude": "0", "id": "8497896153", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 05:05:49", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8248/8497896021_bff95b18ec_o.jpg", "secret": "d40b0a0d1f", "media": "photo", "latitude": "0", "id": "8497896021", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 05:07:44", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8382/8499000290_2cd94fb8cf_o.jpg", "secret": "d5f0168040", "media": "photo", "latitude": "0", "id": "8499000290", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 05:07:51", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8512/8497895769_b1d0f90840_o.jpg", "secret": "43fd7fc591", "media": "photo", "latitude": "0", "id": "8497895769", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 05:07:57", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8108/8499000016_6571a92b56_o.jpg", "secret": "9a584483d8", "media": "photo", "latitude": "0", "id": "8499000016", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 05:08:21", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8094/8497895461_88a4f6feaa_o.jpg", "secret": "c14e167e29", "media": "photo", "latitude": "0", "id": "8497895461", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 11:46:52", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8366/8497899781_0c02d15749_o.jpg", "secret": "646d45198a", "media": "photo", "latitude": "0", "id": "8497899781", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 11:47:19", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8509/8499004062_c5ca9b6519_o.jpg", "secret": "ef03876251", "media": "photo", "latitude": "0", "id": "8499004062", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2013-02-22 11:47:45", "license": "2", "title": "Former Adjutant General laid to rest in South Boston", "text": "", "album_id": "72157632828469673", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8247/8497899479_4190fb2f10_o.jpg", "secret": "9a5c41944c", "media": "photo", "latitude": "0", "id": "8497899479", "tags": "usa virginia southboston virginianationalguard adjutantgeneralofvirginia retiredmajgencarrollthackston"}, {"datetaken": "2010-06-21 06:03:56", "license": "4", "title": "morning joggers", "text": "", "album_id": "72157624337173194", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1182/4725937849_03e3aa62b3_o.jpg", "secret": "61ae67ebfd", "media": "photo", "latitude": "0", "id": "4725937849", "tags": "dilojun10"}, {"datetaken": "2010-06-21 06:05:19", "license": "4", "title": "morning sky", "text": "", "album_id": "72157624337173194", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1054/4725938657_1ef509e5f7_o.jpg", "secret": "d09089d581", "media": "photo", "latitude": "0", "id": "4725938657", "tags": "dilojun10"}, {"datetaken": "2010-06-21 06:05:42", "license": "4", "title": "weedy flowerbed", "text": "", "album_id": "72157624337173194", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1029/4726588620_a23568649f_o.jpg", "secret": "ed094fee2c", "media": "photo", "latitude": "0", "id": "4726588620", "tags": "dilojun10"}, {"datetaken": "2010-06-21 06:22:24", "license": "4", "title": "DILO", "text": "", "album_id": "72157624337173194", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1224/4725942593_257e1b2139_o.jpg", "secret": "632d5f97de", "media": "photo", "latitude": "0", "id": "4725942593", "tags": "dilojun10"}, {"datetaken": "2010-06-21 10:09:57", "license": "4", "title": "Carol", "text": "", "album_id": "72157624337173194", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1079/4725943211_07ab778abb_o.jpg", "secret": "54e5ec4196", "media": "photo", "latitude": "0", "id": "4725943211", "tags": "carol dilojun10"}, {"datetaken": "2010-06-21 10:54:08", "license": "4", "title": "weeding", "text": "", "album_id": "72157624337173194", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1179/4725945673_992e2efb74_o.jpg", "secret": "388d185e33", "media": "photo", "latitude": "0", "id": "4725945673", "tags": "carol dilojun10"}, {"datetaken": "2010-06-21 13:29:04", "license": "4", "title": "salad", "text": "", "album_id": "72157624337173194", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1364/4726595156_49aa405dcc_o.jpg", "secret": "237939e367", "media": "photo", "latitude": "0", "id": "4726595156", "tags": "nac stowma minutemanfield nancysairfieldcafe dilojun10"}, {"datetaken": "2010-06-21 16:08:15", "license": "4", "title": "farm stand", "text": "", "album_id": "72157624337173194", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1379/4725948651_a811375bd3_o.jpg", "secret": "442c8185e1", "media": "photo", "latitude": "0", "id": "4725948651", "tags": "boxboroughma burroughsfarm dilojun10"}, {"datetaken": "2010-06-21 16:08:38", "license": "4", "title": "farm stand2", "text": "", "album_id": "72157624337173194", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1251/4725949925_d5c95a83b6_o.jpg", "secret": "76a4e0cab1", "media": "photo", "latitude": "0", "id": "4725949925", "tags": "boxboroughma burroughsfarm dilojun10"}, {"datetaken": "2010-06-21 16:09:20", "license": "4", "title": "beets", "text": "", "album_id": "72157624337173194", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1097/4726600016_67289bd343_o.jpg", "secret": "f03d9b7538", "media": "photo", "latitude": "0", "id": "4726600016", "tags": "boxboroughma burroughsfarm dilojun10"}, {"datetaken": "2010-06-21 16:14:18", "license": "4", "title": "chores", "text": "", "album_id": "72157624337173194", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1035/4726601076_4a954da3ba_o.jpg", "secret": "441008e82a", "media": "photo", "latitude": "0", "id": "4726601076", "tags": "dilojun10wheels dilojun10"}, {"datetaken": "2010-06-21 23:17:47", "license": "4", "title": "nightly news", "text": "", "album_id": "72157624337173194", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1019/4726601686_da24d2cd96_o.jpg", "secret": "851f85113a", "media": "photo", "latitude": "0", "id": "4726601686", "tags": "dilojun10"}, {"datetaken": "2011-02-24 16:17:05", "license": "3", "title": "Heads", "text": "", "album_id": "72157626666548053", "longitude": "134.210357", "url_o": "https://farm3.staticflickr.com/2363/5752467505_941dc62a16_o.jpg", "secret": "eab3063540", "media": "photo", "latitude": "35.442770", "id": "5752467505", "tags": "blackandwhite japan stone mystery hotel heads mysterious horror nightmare macabre hitchcock poe sculptures bizarre tottori twilightzone alfredhitchcock stonesculptures edgarallanpoe headsculpture pairofheads bizarrehotel"}, {"datetaken": "2011-02-26 10:01:52", "license": "3", "title": "The Goat", "text": "", "album_id": "72157626666548053", "longitude": "134.210357", "url_o": "https://farm3.staticflickr.com/2285/5753013838_c779a31780_o.jpg", "secret": "ec3b3654ec", "media": "photo", "latitude": "35.442770", "id": "5753013838", "tags": "goatshead goat head stone sculpture tottori bizarre hotel bizarrehotel blackandwhite edgarallanpoe nightmare horror macabre mysterious mystery twilightzone alfredhitchcock japan hitchcock poe"}, {"datetaken": "2011-02-26 10:02:57", "license": "3", "title": "The Bizarre Hotel 1", "text": "", "album_id": "72157626666548053", "longitude": "134.210357", "url_o": "https://farm6.staticflickr.com/5182/5752469097_7598ae52b0_o.jpg", "secret": "dd93781453", "media": "photo", "latitude": "35.442770", "id": "5752469097", "tags": "blackandwhite japan mystery hotel mysterious horror nightmare macabre hitchcock poe bizarre tottori twilightzone alfredhitchcock edgarallanpoe bizarrehotel"}, {"datetaken": "2011-02-26 10:03:37", "license": "3", "title": "The Bizarre Hotel 2", "text": "", "album_id": "72157626666548053", "longitude": "134.210357", "url_o": "https://farm6.staticflickr.com/5108/5752469663_25788890e0_o.jpg", "secret": "d5c9a2977f", "media": "photo", "latitude": "35.442770", "id": "5752469663", "tags": "blackandwhite japan mystery hotel mysterious horror nightmare macabre hitchcock poe bizarre tottori twilightzone alfredhitchcock edgarallanpoe bizarrehotel"}, {"datetaken": "2011-02-26 10:03:53", "license": "3", "title": "The Bizarre Hotel 3", "text": "", "album_id": "72157626666548053", "longitude": "134.210357", "url_o": "https://farm4.staticflickr.com/3180/5753015910_ae2b38ac2e_o.jpg", "secret": "5d678a2ceb", "media": "photo", "latitude": "35.442770", "id": "5753015910", "tags": "blackandwhite japan mystery hotel mysterious horror nightmare macabre hitchcock poe bizarre tottori twilightzone alfredhitchcock edgarallanpoe bizarrehotel"}, {"datetaken": "2011-02-26 10:04:10", "license": "3", "title": "The Bizarre Hotel 4", "text": "", "album_id": "72157626666548053", "longitude": "134.210357", "url_o": "https://farm3.staticflickr.com/2757/5753017066_2ed47a7cbd_o.jpg", "secret": "7a62cf2863", "media": "photo", "latitude": "35.442770", "id": "5753017066", "tags": "blackandwhite japan mystery hotel mysterious horror nightmare macabre hitchcock poe bizarre tottori twilightzone alfredhitchcock edgarallanpoe bizarrehotel"}, {"datetaken": "2011-02-26 10:04:39", "license": "3", "title": "The Bizarre Hotel 5", "text": "", "album_id": "72157626666548053", "longitude": "134.210357", "url_o": "https://farm3.staticflickr.com/2681/5753017656_b67cd2c320_o.jpg", "secret": "0e133b1629", "media": "photo", "latitude": "35.442770", "id": "5753017656", "tags": "blackandwhite japan mystery hotel mysterious horror nightmare macabre hitchcock poe bizarre tottori twilightzone alfredhitchcock edgarallanpoe bizarrehotel"}, {"datetaken": "2011-02-26 10:04:46", "license": "3", "title": "The Bizarre Hotel 6", "text": "", "album_id": "72157626666548053", "longitude": "134.210357", "url_o": "https://farm4.staticflickr.com/3036/5753018352_8077c6ab06_o.jpg", "secret": "f333b5b395", "media": "photo", "latitude": "35.442770", "id": "5753018352", "tags": "blackandwhite japan mystery hotel mysterious horror nightmare macabre hitchcock poe bizarre tottori twilightzone alfredhitchcock edgarallanpoe bizarrehotel"}, {"datetaken": "2011-02-26 10:05:09", "license": "3", "title": "Stairs", "text": "", "album_id": "72157626666548053", "longitude": "134.210357", "url_o": "https://farm4.staticflickr.com/3650/5753018756_d36ceefedc_o.jpg", "secret": "f6b08c070b", "media": "photo", "latitude": "35.442770", "id": "5753018756", "tags": "blackandwhite japan mystery hotel mysterious horror nightmare macabre hitchcock poe bizarre tottori twilightzone alfredhitchcock edgarallanpoe bizarrehotel"}, {"datetaken": "2011-02-26 10:05:27", "license": "3", "title": "The Corridor", "text": "", "album_id": "72157626666548053", "longitude": "134.210357", "url_o": "https://farm4.staticflickr.com/3384/5752473505_9f01b4088e_o.jpg", "secret": "5f5644294e", "media": "photo", "latitude": "35.442770", "id": "5752473505", "tags": "blackandwhite japan mystery hotel corridor tunnel mysterious horror nightmare macabre hitchcock poe bizarre tottori twilightzone alfredhitchcock edgarallanpoe bizarrehotel"}, {"datetaken": "2011-02-26 10:19:05", "license": "3", "title": "The Bizarre Hotel 7", "text": "", "album_id": "72157626666548053", "longitude": "134.210357", "url_o": "https://farm3.staticflickr.com/2057/5752474433_549fce1a9c_o.jpg", "secret": "4be3873a4d", "media": "photo", "latitude": "35.442770", "id": "5752474433", "tags": "blackandwhite japan mystery hotel mysterious horror nightmare macabre hitchcock poe bizarre tottori twilightzone alfredhitchcock edgarallanpoe bizarrehotel"}, {"datetaken": "2010-05-13 10:40:01", "license": "4", "title": "St. Giles, Cheadle Interior 1", "text": "", "album_id": "72157624260296988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4635170925_1298c9ff4f_o.jpg", "secret": "cc6b49807d", "media": "photo", "latitude": "0", "id": "4635170925", "tags": "uk england building church beautiful parish religious town perfect worship catholic christ decorative interior stonework prayer religion praying jesus gothic rich decoration stainedglass christian shrewsbury altar holy nave ornament tiles catholicchurch richness colourful seating 16th staffordshire perfection romancatholic splendour gothicarchitecture cheadle parishchurch 1846 gothicbuilding churchinterior stgileschurch pugin augustuswelbynorthmorepugin earlofshrewsbury cheadlestaffordshire stgilescheadle gradeilistedchurch 31august1846"}, {"datetaken": "2010-05-13 10:40:38", "license": "4", "title": "St. Giles, Cheadle Interior 2", "text": "", "album_id": "72157624260296988", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3337/4635775274_2327299b83_o.jpg", "secret": "d1e4ae6f59", "media": "photo", "latitude": "0", "id": "4635775274", "tags": "uk england building church beautiful parish religious town perfect worship catholic christ decorative interior stonework prayer religion praying jesus gothic rich decoration stainedglass christian shrewsbury altar holy nave ornament tiles catholicchurch richness colourful seating 16th staffordshire perfection romancatholic splendour gothicarchitecture cheadle parishchurch 1846 gothicbuilding churchinterior stgileschurch pugin augustuswelbynorthmorepugin earlofshrewsbury cheadlestaffordshire stgilescheadle gradeilistedchurch 31august1846"}, {"datetaken": "2010-05-13 10:42:01", "license": "4", "title": "St. Giles, Cheadle Interior 3", "text": "", "album_id": "72157624260296988", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3338/4635171677_d47844b3fc_o.jpg", "secret": "c85d4e1402", "media": "photo", "latitude": "0", "id": "4635171677", "tags": "uk england building church beautiful parish religious town perfect worship catholic christ decorative interior stonework prayer religion praying jesus gothic rich decoration stainedglass christian shrewsbury altar holy nave ornament tiles catholicchurch richness colourful seating 16th staffordshire perfection romancatholic splendour gothicarchitecture cheadle parishchurch 1846 gothicbuilding churchinterior stgileschurch pugin augustuswelbynorthmorepugin earlofshrewsbury cheadlestaffordshire stgilescheadle gradeilistedchurch 31august1846"}, {"datetaken": "2010-05-13 10:43:50", "license": "4", "title": "St. Giles, Cheadle Interior 4", "text": "", "album_id": "72157624260296988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4635776072_63637c3868_o.jpg", "secret": "4d6cf3b41b", "media": "photo", "latitude": "0", "id": "4635776072", "tags": "uk england building church beautiful parish religious town perfect worship catholic christ decorative interior stonework prayer religion praying jesus gothic rich decoration stainedglass christian shrewsbury altar holy nave ornament tiles catholicchurch richness colourful seating 16th staffordshire perfection romancatholic splendour gothicarchitecture cheadle parishchurch 1846 gothicbuilding churchinterior stgileschurch pugin augustuswelbynorthmorepugin earlofshrewsbury cheadlestaffordshire stgilescheadle gradeilistedchurch 31august1846"}, {"datetaken": "2010-05-13 10:56:17", "license": "4", "title": "Gravestone_[1]", "text": "", "album_id": "72157624260296988", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3373/4638685696_bc363193c4_o.jpg", "secret": "edb9c69e3b", "media": "photo", "latitude": "0", "id": "4638685696", "tags": "uk england building church beautiful parish stone religious death town perfect worship catholic exterior christ mourning decorative interior stonework prayer religion praying jesus gothic rich masonry decoration stainedglass olympus graves christian shrewsbury altar spire holy funeral nave ornament tiles catholicchurch greenery tall richness colourful dying 16th stonecold staffordshire gravestones bodies impressive perfection romancatholic splendour gothicarchitecture cheadle parishchurch 1846 gothicbuilding stgileschurch fourthirds pugin churchexterior e420 augustuswelbynorthmorepugin earlofshrewsbury olympuse420 cheadlestaffordshire stgilescheadle gradeilistedchurch 31august1846"}, {"datetaken": "2010-05-13 10:56:49", "license": "4", "title": "Exterior St. Giles, Cheadle [1]", "text": "", "album_id": "72157624260296988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4638082719_705e2a5cfe_o.jpg", "secret": "b97b79a665", "media": "photo", "latitude": "0", "id": "4638082719", "tags": "uk england building church beautiful parish stone religious town perfect worship catholic exterior christ decorative interior stonework prayer religion praying jesus gothic rich masonry decoration stainedglass olympus christian shrewsbury altar spire holy nave ornament tiles catholicchurch greenery tall richness colourful 16th staffordshire impressive perfection romancatholic splendour gothicarchitecture cheadle parishchurch 1846 gothicbuilding stgileschurch fourthirds pugin churchexterior e420 augustuswelbynorthmorepugin earlofshrewsbury olympuse420 cheadlestaffordshire stgilescheadle gradeilistedchurch 31august1846"}, {"datetaken": "2010-05-13 11:07:48", "license": "4", "title": "Exterior St. Giles, Cheadle [2]", "text": "", "album_id": "72157624260296988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4638694034_194f44a062_o.jpg", "secret": "70b354d959", "media": "photo", "latitude": "0", "id": "4638694034", "tags": "uk england building church beautiful parish stone religious town perfect worship catholic exterior christ decorative interior stonework prayer religion praying jesus gothic rich masonry decoration stainedglass olympus christian shrewsbury altar spire holy nave ornament tiles catholicchurch greenery tall richness colourful 16th staffordshire impressive perfection romancatholic splendour gothicarchitecture cheadle parishchurch 1846 gothicbuilding stgileschurch fourthirds pugin churchexterior e420 augustuswelbynorthmorepugin earlofshrewsbury olympuse420 cheadlestaffordshire stgilescheadle gradeilistedchurch 31august1846"}, {"datetaken": "2010-05-13 11:08:42", "license": "4", "title": "Gate to St. Giles, Cheadle", "text": "", "album_id": "72157624260296988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4638086351_9a28e789cf_o.jpg", "secret": "016fa30110", "media": "photo", "latitude": "0", "id": "4638086351", "tags": "uk red england white macro building church beautiful parish stone closeup fence religious town perfect worship catholic exterior christ decorative interior stonework prayer religion praying jesus gothic rich masonry decoration stainedglass olympus christian shrewsbury altar spire holy nave ornament tiles micro catholicchurch greenery tall richness colourful upclose 16th staffordshire impressive perfection romancatholic splendour gothicarchitecture cheadle parishchurch 1846 gothicbuilding stgileschurch fourthirds pugin churchexterior e420 augustuswelbynorthmorepugin fourthirdsmacro earlofshrewsbury olympuse420 cheadlestaffordshire stgilescheadle gradeilistedchurch 31august1846"}, {"datetaken": "2010-05-13 11:09:11", "license": "4", "title": "Gravestone_[2]", "text": "", "album_id": "72157624260296988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4638686242_61f3d7a4db_o.jpg", "secret": "10b5d420cb", "media": "photo", "latitude": "0", "id": "4638686242", "tags": "uk england building church beautiful parish stone religious death town perfect worship catholic exterior christ mourning decorative interior stonework prayer religion praying jesus gothic rich masonry decoration stainedglass olympus graves christian shrewsbury altar spire holy funeral nave ornament tiles catholicchurch greenery tall richness colourful dying 16th stonecold staffordshire gravestones bodies impressive perfection romancatholic splendour gothicarchitecture cheadle parishchurch 1846 gothicbuilding stgileschurch fourthirds pugin churchexterior e420 augustuswelbynorthmorepugin earlofshrewsbury olympuse420 cheadlestaffordshire stgilescheadle gradeilistedchurch 31august1846"}, {"datetaken": "2010-05-13 11:09:23", "license": "4", "title": "Gravestone_[3]", "text": "", "album_id": "72157624260296988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4638076765_c582ac67bb_o.jpg", "secret": "ff4299bee5", "media": "photo", "latitude": "0", "id": "4638076765", "tags": "uk england building church beautiful parish stone religious death town perfect worship catholic exterior christ mourning decorative interior stonework prayer religion praying jesus gothic rich masonry decoration stainedglass olympus graves christian shrewsbury altar spire holy funeral nave ornament tiles catholicchurch greenery tall richness colourful dying 16th stonecold staffordshire gravestones bodies impressive perfection romancatholic splendour gothicarchitecture cheadle parishchurch 1846 gothicbuilding stgileschurch fourthirds pugin churchexterior e420 augustuswelbynorthmorepugin earlofshrewsbury olympuse420 cheadlestaffordshire stgilescheadle gradeilistedchurch 31august1846"}, {"datetaken": "2010-05-13 11:51:00", "license": "4", "title": "St. Giles, Cheadle Interior 5", "text": "", "album_id": "72157624260296988", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3352/4635776610_c4daa313c8_o.jpg", "secret": "e0ee976f03", "media": "photo", "latitude": "0", "id": "4635776610", "tags": "uk england building church beautiful parish religious town perfect worship catholic christ decorative interior stonework prayer religion praying jesus gothic rich decoration stainedglass christian shrewsbury altar holy nave ornament tiles catholicchurch richness colourful seating 16th staffordshire perfection romancatholic splendour gothicarchitecture cheadle parishchurch 1846 gothicbuilding churchinterior stgileschurch pugin augustuswelbynorthmorepugin earlofshrewsbury cheadlestaffordshire stgilescheadle gradeilistedchurch 31august1846"}, {"datetaken": "2010-05-13 11:53:09", "license": "4", "title": "St. Giles, Cheadle Interior 6", "text": "", "album_id": "72157624260296988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4635777148_f9bf58bb7a_o.jpg", "secret": "7031cdbc9c", "media": "photo", "latitude": "0", "id": "4635777148", "tags": "uk england building church beautiful parish religious town perfect worship catholic christ decorative interior stonework prayer religion praying jesus gothic rich decoration stainedglass christian shrewsbury altar holy nave ornament tiles catholicchurch richness colourful seating 16th staffordshire perfection romancatholic splendour gothicarchitecture cheadle parishchurch 1846 gothicbuilding churchinterior stgileschurch pugin augustuswelbynorthmorepugin earlofshrewsbury cheadlestaffordshire stgilescheadle gradeilistedchurch 31august1846"}, {"datetaken": "2010-05-13 11:54:25", "license": "4", "title": "St. Giles, Cheadle Interior 7", "text": "", "album_id": "72157624260296988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4635173415_8258f76287_o.jpg", "secret": "4dc3f23cbd", "media": "photo", "latitude": "0", "id": "4635173415", "tags": "uk england building church beautiful parish religious town perfect worship catholic christ decorative interior stonework prayer religion praying jesus gothic rich decoration stainedglass christian shrewsbury altar holy nave ornament tiles catholicchurch richness colourful seating 16th staffordshire perfection romancatholic splendour gothicarchitecture cheadle parishchurch 1846 gothicbuilding churchinterior stgileschurch pugin augustuswelbynorthmorepugin earlofshrewsbury cheadlestaffordshire stgilescheadle gradeilistedchurch 31august1846"}, {"datetaken": "2010-05-13 11:55:06", "license": "4", "title": "St. Giles, Cheadle Interior 8", "text": "", "album_id": "72157624260296988", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3372/4635777944_e6b97cbb99_o.jpg", "secret": "581a4e58c0", "media": "photo", "latitude": "0", "id": "4635777944", "tags": "uk england building church beautiful parish religious town perfect worship catholic christ decorative interior stonework prayer religion praying jesus gothic rich decoration stainedglass christian shrewsbury altar holy nave ornament tiles catholicchurch richness colourful seating 16th staffordshire perfection romancatholic splendour gothicarchitecture cheadle parishchurch 1846 gothicbuilding churchinterior stgileschurch pugin augustuswelbynorthmorepugin earlofshrewsbury cheadlestaffordshire stgilescheadle gradeilistedchurch 31august1846"}, {"datetaken": "2010-05-13 11:56:29", "license": "4", "title": "St. Giles, Cheadle Interior 9", "text": "", "album_id": "72157624260296988", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3504/4635778492_b55dd9fe9e_o.jpg", "secret": "6608e8a7db", "media": "photo", "latitude": "0", "id": "4635778492", "tags": "uk england building church beautiful parish religious town perfect worship catholic christ decorative interior stonework prayer religion praying jesus gothic rich decoration stainedglass christian shrewsbury altar holy nave ornament tiles catholicchurch richness colourful seating 16th staffordshire perfection romancatholic splendour gothicarchitecture cheadle parishchurch 1846 gothicbuilding churchinterior stgileschurch pugin augustuswelbynorthmorepugin earlofshrewsbury cheadlestaffordshire stgilescheadle gradeilistedchurch 31august1846"}, {"datetaken": "2010-05-13 11:56:42", "license": "4", "title": "St. Giles, Cheadle Interior 10", "text": "", "album_id": "72157624260296988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4635174791_59f0d75782_o.jpg", "secret": "3078c005f3", "media": "photo", "latitude": "0", "id": "4635174791", "tags": "uk england building church beautiful parish religious town perfect worship catholic christ decorative interior stonework prayer religion praying jesus gothic rich decoration stainedglass christian shrewsbury altar holy nave ornament tiles catholicchurch richness colourful seating 16th staffordshire perfection romancatholic splendour gothicarchitecture cheadle parishchurch 1846 gothicbuilding churchinterior stgileschurch pugin augustuswelbynorthmorepugin earlofshrewsbury cheadlestaffordshire stgilescheadle gradeilistedchurch 31august1846"}, {"datetaken": "2009-06-25 12:45:29", "license": "4", "title": "IMG_2144", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8063/8220974503_89bf9711d0_o.jpg", "secret": "4e5ec3cb49", "media": "photo", "latitude": "39.528448", "id": "8220974503", "tags": ""}, {"datetaken": "2009-06-25 12:45:57", "license": "4", "title": "IMG_2145", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8065/8220974921_fb93e31a22_o.jpg", "secret": "0b8516da8d", "media": "photo", "latitude": "39.528448", "id": "8220974921", "tags": ""}, {"datetaken": "2009-06-25 12:46:16", "license": "4", "title": "IMG_2146", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8477/8220975359_9acf47637e_o.jpg", "secret": "476513ccee", "media": "photo", "latitude": "39.528448", "id": "8220975359", "tags": ""}, {"datetaken": "2009-06-25 12:48:14", "license": "4", "title": "IMG_2147", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8347/8220975789_c9abb2b1b5_o.jpg", "secret": "c98ff1e067", "media": "photo", "latitude": "39.528448", "id": "8220975789", "tags": ""}, {"datetaken": "2009-06-25 12:49:59", "license": "4", "title": "IMG_2148", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8064/8220976261_03638fa84a_o.jpg", "secret": "58f9c18509", "media": "photo", "latitude": "39.528448", "id": "8220976261", "tags": ""}, {"datetaken": "2009-06-25 12:50:31", "license": "4", "title": "IMG_2149", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8061/8222055368_b97e8bf6a1_o.jpg", "secret": "e4f8260c56", "media": "photo", "latitude": "39.528448", "id": "8222055368", "tags": ""}, {"datetaken": "2009-06-25 13:02:10", "license": "4", "title": "IMG_2150", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8209/8220977143_65bd07801e_o.jpg", "secret": "5c663d429d", "media": "photo", "latitude": "39.528448", "id": "8220977143", "tags": ""}, {"datetaken": "2009-06-25 13:02:26", "license": "4", "title": "Rose Covey Dunigan", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8058/8220977591_5065327d8e_o.jpg", "secret": "590b3fc196", "media": "photo", "latitude": "39.528448", "id": "8220977591", "tags": ""}, {"datetaken": "2009-06-25 13:02:47", "license": "4", "title": "IMG_2152", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8481/8220978071_b83c307ac8_o.jpg", "secret": "5249e8fbb5", "media": "photo", "latitude": "39.528448", "id": "8220978071", "tags": ""}, {"datetaken": "2009-06-25 13:03:59", "license": "4", "title": "IMG_2153", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8340/8222057004_4c411dfa1c_o.jpg", "secret": "f5d76da13d", "media": "photo", "latitude": "39.528448", "id": "8222057004", "tags": ""}, {"datetaken": "2009-06-25 13:04:18", "license": "4", "title": "Patrick Connelly", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8484/8222057528_eb81b83a2b_o.jpg", "secret": "b29c49a374", "media": "photo", "latitude": "39.528448", "id": "8222057528", "tags": ""}, {"datetaken": "2009-06-25 13:05:59", "license": "4", "title": "IMG_2155", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8477/8220979489_d5741c88ea_o.jpg", "secret": "3e304981d5", "media": "photo", "latitude": "39.528448", "id": "8220979489", "tags": ""}, {"datetaken": "2009-06-25 13:07:36", "license": "4", "title": "With Kevin Connelly", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8487/8220979879_08a01c8d1e_o.jpg", "secret": "b44b33bed5", "media": "photo", "latitude": "39.528448", "id": "8220979879", "tags": ""}, {"datetaken": "2009-06-25 13:07:45", "license": "4", "title": "With Kevin Connelly", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8200/8222058740_42291ec5be_o.jpg", "secret": "a196b83b70", "media": "photo", "latitude": "39.528448", "id": "8222058740", "tags": ""}, {"datetaken": "2009-06-25 13:10:46", "license": "4", "title": "IMG_2158", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8344/8220980693_3499c8afc7_o.jpg", "secret": "9280702902", "media": "photo", "latitude": "39.528448", "id": "8220980693", "tags": ""}, {"datetaken": "2009-06-25 13:14:15", "license": "4", "title": "With the Connellys", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8482/8222059482_01533fa77e_o.jpg", "secret": "ede39f65fc", "media": "photo", "latitude": "39.528448", "id": "8222059482", "tags": ""}, {"datetaken": "2009-06-25 13:14:23", "license": "4", "title": "With the Connellys", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8066/8220981515_5420b050d1_o.jpg", "secret": "cb58a7ffae", "media": "photo", "latitude": "39.528448", "id": "8220981515", "tags": ""}, {"datetaken": "2009-06-25 13:14:44", "license": "4", "title": "With the Connellys and Florence McMurray", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8346/8222060344_27ccf409ca_o.jpg", "secret": "48430926dc", "media": "photo", "latitude": "39.528448", "id": "8222060344", "tags": ""}, {"datetaken": "2009-06-25 13:15:31", "license": "4", "title": "With the Connellys and Florence McMurray", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8204/8220982343_6b16de7c1a_o.jpg", "secret": "ab45163a66", "media": "photo", "latitude": "39.528448", "id": "8220982343", "tags": ""}, {"datetaken": "2009-06-25 13:47:24", "license": "4", "title": "Karen Connelly", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8201/8222052752_d5e90a0379_o.jpg", "secret": "dfc3763d64", "media": "photo", "latitude": "39.528448", "id": "8222052752", "tags": ""}, {"datetaken": "2009-06-25 13:47:56", "license": "4", "title": "Kevin Connelly", "text": "", "album_id": "72157632109434318", "longitude": "-80.342218", "url_o": "https://farm9.staticflickr.com/8344/8220973619_f2e541ed78_o.jpg", "secret": "e45a3c558c", "media": "photo", "latitude": "39.528448", "id": "8220973619", "tags": ""}, {"datetaken": "2011-08-16 06:48:46", "license": "2", "title": "Hermanas de la Providencia", "text": "", "album_id": "72157627531935274", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6089/6085993841_56a312e6ef_o.jpg", "secret": "b2d689a777", "media": "photo", "latitude": "0", "id": "6085993841", "tags": "chile santiago iglesia templos iglesias providencia regi\u00f3nmetropolitana hermanasdelaprovidencia domusdeus madrebernardamorin"}, {"datetaken": "2011-08-16 06:48:55", "license": "2", "title": "Hermanas de la Providencia", "text": "", "album_id": "72157627531935274", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6195/6086534978_6f373f7722_o.jpg", "secret": "5da97ca1f8", "media": "photo", "latitude": "0", "id": "6086534978", "tags": "chile santiago iglesia templos iglesias providencia regi\u00f3nmetropolitana hermanasdelaprovidencia domusdeus madrebernardamorin"}, {"datetaken": "2011-08-16 06:49:04", "license": "2", "title": "Hermanas de la Providencia", "text": "", "album_id": "72157627531935274", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6068/6086536704_bf82c1664a_o.jpg", "secret": "baca0cf74b", "media": "photo", "latitude": "0", "id": "6086536704", "tags": "chile santiago iglesia templos iglesias providencia regi\u00f3nmetropolitana hermanasdelaprovidencia domusdeus madrebernardamorin"}, {"datetaken": "2011-08-16 06:49:15", "license": "2", "title": "Hermanas de la Providencia", "text": "", "album_id": "72157627531935274", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6079/6085978629_291ca08dce_o.jpg", "secret": "de358e816d", "media": "photo", "latitude": "0", "id": "6085978629", "tags": "chile santiago iglesia templos iglesias providencia regi\u00f3nmetropolitana hermanasdelaprovidencia domusdeus madrebernardamorin"}, {"datetaken": "2011-08-16 06:49:31", "license": "2", "title": "Hermanas de la Providencia", "text": "", "album_id": "72157627531935274", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6186/6086527462_2cd3eb5a4f_o.jpg", "secret": "7ee4ec11c9", "media": "photo", "latitude": "0", "id": "6086527462", "tags": "chile santiago iglesia templos iglesias providencia regi\u00f3nmetropolitana hermanasdelaprovidencia domusdeus madrebernardamorin"}, {"datetaken": "2011-08-16 06:50:10", "license": "2", "title": "Hermanas de la Providencia", "text": "", "album_id": "72157627531935274", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6199/6085984475_3b794677eb_o.jpg", "secret": "67083d889c", "media": "photo", "latitude": "0", "id": "6085984475", "tags": "chile santiago iglesia templos iglesias providencia regi\u00f3nmetropolitana hermanasdelaprovidencia domusdeus madrebernardamorin"}, {"datetaken": "2011-08-16 06:50:29", "license": "2", "title": "Hermanas de la Providencia", "text": "", "album_id": "72157627531935274", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6209/6085986359_204354a1c3_o.jpg", "secret": "ddd2908d53", "media": "photo", "latitude": "0", "id": "6085986359", "tags": "chile santiago iglesia templos iglesias providencia regi\u00f3nmetropolitana hermanasdelaprovidencia domusdeus madrebernardamorin"}, {"datetaken": "2011-08-16 06:50:35", "license": "2", "title": "Hermanas de la Providencia", "text": "", "album_id": "72157627531935274", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6072/6085982527_a46e07d655_o.jpg", "secret": "3418ae1758", "media": "photo", "latitude": "0", "id": "6085982527", "tags": "chile santiago iglesia templos iglesias providencia regi\u00f3nmetropolitana hermanasdelaprovidencia domusdeus madrebernardamorin"}, {"datetaken": "2011-08-16 06:50:59", "license": "2", "title": "Hermanas de la Providencia", "text": "", "album_id": "72157627531935274", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6079/6086523744_b2552c3834_o.jpg", "secret": "925b2a45dd", "media": "photo", "latitude": "0", "id": "6086523744", "tags": "chile santiago iglesia templos iglesias providencia regi\u00f3nmetropolitana hermanasdelaprovidencia domusdeus madrebernardamorin"}, {"datetaken": "2011-08-16 06:51:05", "license": "2", "title": "Hermanas de la Providencia", "text": "", "album_id": "72157627531935274", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6079/6085991975_a498468dc1_o.jpg", "secret": "e201041509", "media": "photo", "latitude": "0", "id": "6085991975", "tags": "chile santiago iglesia templos iglesias providencia regi\u00f3nmetropolitana hermanasdelaprovidencia domusdeus madrebernardamorin"}, {"datetaken": "2011-08-16 06:51:11", "license": "2", "title": "Hermanas de la Providencia", "text": "", "album_id": "72157627531935274", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6194/6085995725_dc91c8f0e9_o.jpg", "secret": "fe46de54c7", "media": "photo", "latitude": "0", "id": "6085995725", "tags": "chile santiago iglesia templos iglesias providencia regi\u00f3nmetropolitana hermanasdelaprovidencia domusdeus madrebernardamorin"}, {"datetaken": "2013-04-16 22:39:23", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7442/10538386253_25e87bffa2_o.jpg", "secret": "ddaffca51f", "media": "photo", "latitude": "0", "id": "10538386253", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-16 22:48:56", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3725/10538254694_e5afbf5dfd_o.jpg", "secret": "18a409d53d", "media": "photo", "latitude": "0", "id": "10538254694", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-16 22:51:56", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5544/10538456623_9ec2674fe0_o.jpg", "secret": "d9b05326c7", "media": "photo", "latitude": "0", "id": "10538456623", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-16 22:57:54", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3735/10538260206_6dd5078b0e_o.jpg", "secret": "5908c5368a", "media": "photo", "latitude": "0", "id": "10538260206", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-16 22:58:30", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5542/10538281026_e0a1cd6148_o.jpg", "secret": "b7d2aa74b4", "media": "photo", "latitude": "0", "id": "10538281026", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-16 22:59:13", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7370/10538174256_fcff9752ca_o.jpg", "secret": "5478511f8c", "media": "photo", "latitude": "0", "id": "10538174256", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-16 23:08:29", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5514/10538297075_c356dd762d_o.jpg", "secret": "705f6fe6a2", "media": "photo", "latitude": "0", "id": "10538297075", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-16 23:23:46", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7386/10538532573_066ce08832_o.jpg", "secret": "dc9fa8d9f7", "media": "photo", "latitude": "0", "id": "10538532573", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-16 23:25:48", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3826/10538372504_edf80ab2d4_o.jpg", "secret": "85bcbdd4a8", "media": "photo", "latitude": "0", "id": "10538372504", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-16 23:26:09", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5537/10538350326_89b7b54cf7_o.jpg", "secret": "dc1e2b784d", "media": "photo", "latitude": "0", "id": "10538350326", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-16 23:55:51", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3834/10538586303_a06f312cf7_o.jpg", "secret": "da630017c7", "media": "photo", "latitude": "0", "id": "10538586303", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-16 23:56:55", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5499/10538384116_b60a0cc247_o.jpg", "secret": "5879dfa49c", "media": "photo", "latitude": "0", "id": "10538384116", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-16 23:57:58", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7433/10538619343_1d23c1de93_o.jpg", "secret": "76f92deda5", "media": "photo", "latitude": "0", "id": "10538619343", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-17 00:00:42", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7447/10538174775_50a3162833_o.jpg", "secret": "5a8c1d83fa", "media": "photo", "latitude": "0", "id": "10538174775", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-17 00:02:20", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5491/10538218054_4ed39c21a6_o.jpg", "secret": "deb8f0b7d0", "media": "photo", "latitude": "0", "id": "10538218054", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-17 00:03:40", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5506/10538400313_33f1bc9def_o.jpg", "secret": "f797cd9d0e", "media": "photo", "latitude": "0", "id": "10538400313", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-17 00:04:54", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3669/10538223494_a67f282cf8_o.jpg", "secret": "e6f41dc091", "media": "photo", "latitude": "0", "id": "10538223494", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-17 00:06:19", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5474/10538636133_e5c436b146_o.jpg", "secret": "c5f593413b", "media": "photo", "latitude": "0", "id": "10538636133", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-17 00:09:29", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7410/10538193906_b6c0463a98_o.jpg", "secret": "34cb4a6bd1", "media": "photo", "latitude": "0", "id": "10538193906", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-17 00:29:14", "license": "5", "title": "Norman Tebbit and Norman Lamont at Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2847/10538233134_6ac708cdd8_o.jpg", "secret": "8c5501aa4f", "media": "photo", "latitude": "0", "id": "10538233134", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-17 00:31:28", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3765/10538654523_26e3875e07_o.jpg", "secret": "98b151fb8e", "media": "photo", "latitude": "0", "id": "10538654523", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-17 00:33:31", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5535/10538674963_8d1c008766_o.jpg", "secret": "fa24d358a5", "media": "photo", "latitude": "0", "id": "10538674963", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-17 00:39:16", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7377/10538694973_f7afb83f0b_o.jpg", "secret": "6b83e2d7b6", "media": "photo", "latitude": "0", "id": "10538694973", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-17 00:55:56", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5530/10538493725_b4e2cc027c_o.jpg", "secret": "756a259dfe", "media": "photo", "latitude": "0", "id": "10538493725", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-17 01:02:48", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5480/10538733313_36cd091041_o.jpg", "secret": "3e067aa1f1", "media": "photo", "latitude": "0", "id": "10538733313", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2013-04-17 01:43:43", "license": "5", "title": "Margaret Thatcher's Funeral", "text": "", "album_id": "72157637051940796", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3703/10538536306_11b50ae705_o.jpg", "secret": "b3b670e147", "media": "photo", "latitude": "0", "id": "10538536306", "tags": "st pauls norman richard margaret catherdral chartres thatcher lamont tebbit"}, {"datetaken": "2011-04-22 19:19:29", "license": "2", "title": "Tom Blunt", "text": "", "album_id": "72157626609658836", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5307/5670707024_a49b840bd5_o.jpg", "secret": "3ec35b1088", "media": "photo", "latitude": "0", "id": "5670707024", "tags": "burlesque gracejones graveyardgirls"}, {"datetaken": "2011-04-22 19:47:31", "license": "2", "title": "Gravestone Girls", "text": "", "album_id": "72157626609658836", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5227/5670140889_7cc7d51509_o.jpg", "secret": "bb27dc3aeb", "media": "photo", "latitude": "0", "id": "5670140889", "tags": "burlesque gracejones graveyardgirls"}, {"datetaken": "2011-04-22 19:55:36", "license": "2", "title": "Gravestone Girls", "text": "", "album_id": "72157626609658836", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5024/5670141511_bc865065f7_o.jpg", "secret": "c3369a2f10", "media": "photo", "latitude": "0", "id": "5670141511", "tags": "burlesque gracejones graveyardgirls"}, {"datetaken": "2011-04-22 20:01:01", "license": "2", "title": "Melanie Long", "text": "", "album_id": "72157626609658836", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5021/5670141903_128f341be0_o.jpg", "secret": "4a4a59c15a", "media": "photo", "latitude": "0", "id": "5670141903", "tags": "burlesque gracejones graveyardgirls"}, {"datetaken": "2011-04-22 20:07:01", "license": "2", "title": "Cas Marino and Tom Blunt", "text": "", "album_id": "72157626609658836", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5226/5670142351_656b4e5022_o.jpg", "secret": "e72a9b602d", "media": "photo", "latitude": "0", "id": "5670142351", "tags": "burlesque gracejones graveyardgirls"}, {"datetaken": "2011-04-22 20:07:06", "license": "2", "title": "Cas Marino and Tom Blunt", "text": "", "album_id": "72157626609658836", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5306/5670142941_e549607b84_o.jpg", "secret": "3d8275a6c4", "media": "photo", "latitude": "0", "id": "5670142941", "tags": "burlesque gracejones graveyardgirls"}, {"datetaken": "2011-04-22 20:10:13", "license": "2", "title": "Cas Marino and Tom Blunt", "text": "", "album_id": "72157626609658836", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5022/5670143547_c434f580fa_o.jpg", "secret": "1569df2419", "media": "photo", "latitude": "0", "id": "5670143547", "tags": "burlesque gracejones graveyardgirls"}, {"datetaken": "2011-04-22 20:36:23", "license": "2", "title": "Tom Blunt", "text": "", "album_id": "72157626609658836", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5303/5670144093_ec2db1110e_o.jpg", "secret": "d55062d5af", "media": "photo", "latitude": "0", "id": "5670144093", "tags": "burlesque gracejones graveyardgirls"}, {"datetaken": "2011-04-22 20:49:22", "license": "2", "title": "Nick Hooker and Tom Blunt", "text": "", "album_id": "72157626609658836", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5269/5670711408_660b193669_o.jpg", "secret": "eb8fe89f96", "media": "photo", "latitude": "0", "id": "5670711408", "tags": "burlesque gracejones graveyardgirls"}, {"datetaken": "2011-04-22 20:55:17", "license": "2", "title": "Nick Hooker and Tom Blunt", "text": "", "album_id": "72157626609658836", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5106/5670145195_321956381b_o.jpg", "secret": "13a0e7f227", "media": "photo", "latitude": "0", "id": "5670145195", "tags": "burlesque gracejones graveyardgirls"}, {"datetaken": "2011-04-22 21:05:44", "license": "2", "title": "Salvador Olguin", "text": "", "album_id": "72157626609658836", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5148/5670145841_3e7e22be24_o.jpg", "secret": "b569c5fa10", "media": "photo", "latitude": "0", "id": "5670145841", "tags": "burlesque gracejones graveyardgirls"}, {"datetaken": "2011-04-22 21:07:42", "license": "2", "title": "Iris Explosion", "text": "", "album_id": "72157626609658836", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5024/5670146529_7bd649d6b8_o.jpg", "secret": "aff348cd60", "media": "photo", "latitude": "0", "id": "5670146529", "tags": "burlesque gracejones graveyardgirls"}, {"datetaken": "2011-04-22 21:08:15", "license": "2", "title": "Iris Explosion", "text": "", "album_id": "72157626609658836", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5070/5670147101_1021feda0a_o.jpg", "secret": "5030c19f44", "media": "photo", "latitude": "0", "id": "5670147101", "tags": "burlesque gracejones graveyardgirls"}, {"datetaken": "2010-08-28 21:57:55", "license": "3", "title": "Funeral Suits", "text": "", "album_id": "72157624710867491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4939422258_1734c980c5_o.jpg", "secret": "a6f84d89b7", "media": "photo", "latitude": "0", "id": "4939422258", "tags": "music irish concert live stage gig indie electronic crawdaddy supporterband funeralsuits"}, {"datetaken": "2010-08-28 21:58:06", "license": "3", "title": "Funeral Suits", "text": "", "album_id": "72157624710867491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4938841729_ba1cb80933_o.jpg", "secret": "0f424503fa", "media": "photo", "latitude": "0", "id": "4938841729", "tags": "music irish concert live stage gig indie electronic crawdaddy supporterband funeralsuits"}, {"datetaken": "2010-08-28 22:00:02", "license": "3", "title": "Funeral Suits", "text": "", "album_id": "72157624710867491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4938837737_e0b5ab4e90_o.jpg", "secret": "b3625b5b99", "media": "photo", "latitude": "0", "id": "4938837737", "tags": "music irish concert live stage gig indie electronic crawdaddy supporterband funeralsuits"}, {"datetaken": "2010-08-28 22:01:00", "license": "3", "title": "Funeral Suits", "text": "", "album_id": "72157624710867491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4939425858_7772fa22b9_o.jpg", "secret": "7ba8a49612", "media": "photo", "latitude": "0", "id": "4939425858", "tags": "music irish concert live stage gig indie electronic crawdaddy supporterband funeralsuits"}, {"datetaken": "2010-08-28 22:01:17", "license": "3", "title": "Funeral Suits", "text": "", "album_id": "72157624710867491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4939426954_681eba4764_o.jpg", "secret": "be1f7c6e9c", "media": "photo", "latitude": "0", "id": "4939426954", "tags": "music irish concert live stage gig indie electronic crawdaddy supporterband funeralsuits"}, {"datetaken": "2010-08-28 22:01:52", "license": "3", "title": "Funeral Suits", "text": "", "album_id": "72157624710867491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4938838089_9a198b3b5a_o.jpg", "secret": "2c16b105b1", "media": "photo", "latitude": "0", "id": "4938838089", "tags": "music irish concert live stage gig indie electronic crawdaddy supporterband funeralsuits"}, {"datetaken": "2010-08-28 22:02:05", "license": "3", "title": "Funeral Suits", "text": "", "album_id": "72157624710867491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4114/4939427284_49b48ca0e4_o.jpg", "secret": "a846fb99ae", "media": "photo", "latitude": "0", "id": "4939427284", "tags": "music irish concert live stage gig indie electronic crawdaddy supporterband funeralsuits"}, {"datetaken": "2010-08-28 22:03:07", "license": "3", "title": "Funeral Suits", "text": "", "album_id": "72157624710867491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4938838667_d80299f9e9_o.jpg", "secret": "9fd587d9e3", "media": "photo", "latitude": "0", "id": "4938838667", "tags": "music irish concert live stage gig indie electronic crawdaddy supporterband funeralsuits"}, {"datetaken": "2010-08-28 22:03:53", "license": "3", "title": "Funeral Suits", "text": "", "album_id": "72157624710867491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4938839059_7741d285f1_o.jpg", "secret": "d413048106", "media": "photo", "latitude": "0", "id": "4938839059", "tags": "music irish concert live stage gig indie electronic crawdaddy supporterband funeralsuits"}, {"datetaken": "2010-08-28 22:04:24", "license": "3", "title": "Funeral Suits", "text": "", "album_id": "72157624710867491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4938839599_d757f06de2_o.jpg", "secret": "694b146645", "media": "photo", "latitude": "0", "id": "4938839599", "tags": "music irish concert live stage gig indie electronic crawdaddy supporterband funeralsuits"}, {"datetaken": "2010-08-28 22:06:02", "license": "3", "title": "Funeral Suits", "text": "", "album_id": "72157624710867491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4939425068_98b17f4609_o.jpg", "secret": "ca5c6aed12", "media": "photo", "latitude": "0", "id": "4939425068", "tags": "music irish concert live stage gig indie electronic crawdaddy supporterband funeralsuits"}, {"datetaken": "2010-08-28 22:08:19", "license": "3", "title": "Funeral Suits", "text": "", "album_id": "72157624710867491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4938840463_fbc93930d2_o.jpg", "secret": "8c1c8571b5", "media": "photo", "latitude": "0", "id": "4938840463", "tags": "music irish concert live stage gig indie electronic crawdaddy supporterband funeralsuits"}, {"datetaken": "2010-08-28 22:13:12", "license": "3", "title": "Funeral Suits", "text": "", "album_id": "72157624710867491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4938841311_a8848e2c37_o.jpg", "secret": "381918fea7", "media": "photo", "latitude": "0", "id": "4938841311", "tags": "music irish concert live stage gig indie electronic crawdaddy supporterband funeralsuits"}, {"datetaken": "2010-08-28 22:13:22", "license": "3", "title": "Funeral Suits", "text": "", "album_id": "72157624710867491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4938842949_17dc6bdd33_o.jpg", "secret": "5d28a3b363", "media": "photo", "latitude": "0", "id": "4938842949", "tags": "music irish concert live stage gig indie electronic crawdaddy supporterband funeralsuits"}, {"datetaken": "2005-05-30 04:02:56", "license": "3", "title": "cemetery path", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17723237_e11f5fd78a_o.jpg", "secret": "e11f5fd78a", "media": "photo", "latitude": "0", "id": "17723237", "tags": ""}, {"datetaken": "2005-05-30 04:03:20", "license": "3", "title": "woodmen of the world", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17723238_69addf2639_o.jpg", "secret": "69addf2639", "media": "photo", "latitude": "0", "id": "17723238", "tags": ""}, {"datetaken": "2005-05-30 04:04:02", "license": "3", "title": "cracked tombstone", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17723239_fcbf752601_o.jpg", "secret": "fcbf752601", "media": "photo", "latitude": "0", "id": "17723239", "tags": ""}, {"datetaken": "2005-05-30 04:04:54", "license": "3", "title": "awaiting tombs", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17723240_85aea0ef84_o.jpg", "secret": "85aea0ef84", "media": "photo", "latitude": "0", "id": "17723240", "tags": ""}, {"datetaken": "2005-05-30 04:05:03", "license": "3", "title": "offering shelves", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17723241_c1fd60e9cf_o.jpg", "secret": "c1fd60e9cf", "media": "photo", "latitude": "0", "id": "17723241", "tags": ""}, {"datetaken": "2005-05-30 04:06:07", "license": "3", "title": "broken gates", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17723242_bba359b94f_o.jpg", "secret": "bba359b94f", "media": "photo", "latitude": "0", "id": "17723242", "tags": ""}, {"datetaken": "2005-05-30 04:06:26", "license": "3", "title": "family headstone", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17724181_2116024c01_o.jpg", "secret": "2116024c01", "media": "photo", "latitude": "0", "id": "17724181", "tags": ""}, {"datetaken": "2005-05-30 04:07:34", "license": "3", "title": "cemetery condo", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17724182_c105a3f300_o.jpg", "secret": "c105a3f300", "media": "photo", "latitude": "0", "id": "17724182", "tags": ""}, {"datetaken": "2005-05-30 04:07:50", "license": "3", "title": "have a bud light", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17724183_945900ec25_o.jpg", "secret": "945900ec25", "media": "photo", "latitude": "0", "id": "17724183", "tags": ""}, {"datetaken": "2005-05-30 04:10:18", "license": "3", "title": "after the rain", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17724184_9f67f42b48_o.jpg", "secret": "9f67f42b48", "media": "photo", "latitude": "0", "id": "17724184", "tags": ""}, {"datetaken": "2005-05-30 04:11:05", "license": "3", "title": "path to rest", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17724185_2da821478b_o.jpg", "secret": "2da821478b", "media": "photo", "latitude": "0", "id": "17724185", "tags": ""}, {"datetaken": "2005-05-30 04:13:32", "license": "3", "title": "lonely bench", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17724186_e28cfe7f3c_o.jpg", "secret": "e28cfe7f3c", "media": "photo", "latitude": "0", "id": "17724186", "tags": ""}, {"datetaken": "2005-05-30 04:13:54", "license": "3", "title": "all in the family", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17725230_5ad8ce26a5_o.jpg", "secret": "5ad8ce26a5", "media": "photo", "latitude": "0", "id": "17725230", "tags": ""}, {"datetaken": "2005-05-30 04:14:47", "license": "3", "title": "empty tomb", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17725231_7d5fa48e54_o.jpg", "secret": "7d5fa48e54", "media": "photo", "latitude": "0", "id": "17725231", "tags": ""}, {"datetaken": "2005-05-30 04:15:24", "license": "3", "title": "barrels", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17725232_971df4501d_o.jpg", "secret": "971df4501d", "media": "photo", "latitude": "0", "id": "17725232", "tags": ""}, {"datetaken": "2005-05-30 04:16:27", "license": "3", "title": "spikes", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17725233_d24bd99a5d_o.jpg", "secret": "d24bd99a5d", "media": "photo", "latitude": "0", "id": "17725233", "tags": ""}, {"datetaken": "2005-05-30 04:17:25", "license": "3", "title": "gates", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17725234_8c16eb903e_o.jpg", "secret": "8c16eb903e", "media": "photo", "latitude": "0", "id": "17725234", "tags": ""}, {"datetaken": "2005-05-30 04:18:10", "license": "3", "title": "twins", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17725235_881508f66e_o.jpg", "secret": "881508f66e", "media": "photo", "latitude": "0", "id": "17725235", "tags": ""}, {"datetaken": "2005-05-30 04:19:42", "license": "3", "title": "the urn", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17733192_a8f4e50373_o.jpg", "secret": "a8f4e50373", "media": "photo", "latitude": "0", "id": "17733192", "tags": ""}, {"datetaken": "2005-05-30 04:20:18", "license": "3", "title": "broken tree", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17733193_8d5af859c2_o.jpg", "secret": "8d5af859c2", "media": "photo", "latitude": "0", "id": "17733193", "tags": ""}, {"datetaken": "2005-05-30 04:21:08", "license": "3", "title": "lafayette cemetery no. 1", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17733194_ff0d525b6f_o.jpg", "secret": "ff0d525b6f", "media": "photo", "latitude": "0", "id": "17733194", "tags": ""}, {"datetaken": "2005-05-30 04:21:21", "license": "3", "title": "founded 1833", "text": "", "album_id": "420512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17733195_df89c561e6_o.jpg", "secret": "df89c561e6", "media": "photo", "latitude": "0", "id": "17733195", "tags": ""}, {"datetaken": "2005-06-29 06:37:45", "license": "1", "title": "IMG_5257", "text": "", "album_id": "549401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23982016_c4a0f1097b_o.jpg", "secret": "c4a0f1097b", "media": "photo", "latitude": "0", "id": "23982016", "tags": "virginia 2005 funeral army arlingtoncemetery cemetery procession"}, {"datetaken": "2005-06-29 06:37:53", "license": "1", "title": "IMG_5258", "text": "", "album_id": "549401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23982039_ff71b4155f_o.jpg", "secret": "ff71b4155f", "media": "photo", "latitude": "0", "id": "23982039", "tags": "virginia 2005 funeral army arlingtoncemetery cemetery procession"}, {"datetaken": "2005-06-29 07:06:05", "license": "1", "title": "IMG_5259", "text": "", "album_id": "549401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23981571_6707d70665_o.jpg", "secret": "6707d70665", "media": "photo", "latitude": "0", "id": "23981571", "tags": "virginia 2005 funeral flag arlingtoncemetery cemetery army"}, {"datetaken": "2005-06-29 07:06:57", "license": "1", "title": "IMG_5261", "text": "", "album_id": "549401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23981592_5ec433eeb7_o.jpg", "secret": "5ec433eeb7", "media": "photo", "latitude": "0", "id": "23981592", "tags": "virginia 2005 funeral chaplin flag army arlingtoncemetery cemetery"}, {"datetaken": "2005-06-29 07:08:09", "license": "1", "title": "IMG_5262", "text": "", "album_id": "549401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23981621_c9ee14a505_o.jpg", "secret": "c9ee14a505", "media": "photo", "latitude": "0", "id": "23981621", "tags": "virginia 2005 funeral flag army arlingtoncemetery cemetery"}, {"datetaken": "2005-06-29 07:08:20", "license": "1", "title": "IMG_5263", "text": "", "album_id": "549401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23981637_140fd24757_o.jpg", "secret": "140fd24757", "media": "photo", "latitude": "0", "id": "23981637", "tags": "virginia 2005 funeral army arlingtoncemetery cemetery guns volley"}, {"datetaken": "2005-06-29 07:11:50", "license": "1", "title": "IMG_5264", "text": "", "album_id": "549401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23981680_f819ee5843_o.jpg", "secret": "f819ee5843", "media": "photo", "latitude": "0", "id": "23981680", "tags": "virginia 2005 funeral army arlingtoncemetery cemetery ashes urn"}, {"datetaken": "2005-06-29 08:14:05", "license": "1", "title": "IMG_5265", "text": "", "album_id": "549401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23981738_fe1ee1faf5_o.jpg", "secret": "fe1ee1faf5", "media": "photo", "latitude": "0", "id": "23981738", "tags": "virginia 2005 funeral erika xis"}, {"datetaken": "2005-06-29 08:15:03", "license": "1", "title": "IMG_5268", "text": "", "album_id": "549401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23981797_c95206e433_o.jpg", "secret": "c95206e433", "media": "photo", "latitude": "0", "id": "23981797", "tags": "virginia 2005 funeral mark erika xis"}, {"datetaken": "2005-06-29 19:29:12", "license": "1", "title": "IMG_5273", "text": "", "album_id": "549401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23981854_c1d668e0ff_o.jpg", "secret": "c1d668e0ff", "media": "photo", "latitude": "0", "id": "23981854", "tags": "virginia 2005 erika mark party"}, {"datetaken": "2005-06-29 19:31:27", "license": "1", "title": "IMG_5276", "text": "", "album_id": "549401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23981861_c4190b452b_o.jpg", "secret": "c4190b452b", "media": "photo", "latitude": "0", "id": "23981861", "tags": "virginia 2005 erika mark party scary"}, {"datetaken": "2005-06-29 19:31:36", "license": "1", "title": "IMG_5277", "text": "", "album_id": "549401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23981878_59b6a62831_o.jpg", "secret": "59b6a62831", "media": "photo", "latitude": "0", "id": "23981878", "tags": "virginia 2005 erika mark party"}, {"datetaken": "2005-06-29 19:39:09", "license": "1", "title": "IMG_5278", "text": "", "album_id": "549401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23981900_dd34fbbbe6_o.jpg", "secret": "dd34fbbbe6", "media": "photo", "latitude": "0", "id": "23981900", "tags": "virginia 2005 party chrispryor chris xis"}, {"datetaken": "2005-06-30 11:09:30", "license": "1", "title": "IMG_5282", "text": "", "album_id": "549401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23981927_34e052d97f_o.jpg", "secret": "34e052d97f", "media": "photo", "latitude": "0", "id": "23981927", "tags": "virginia 2005 sandy xis erika"}, {"datetaken": "2005-06-30 12:10:47", "license": "1", "title": "IMG_5285", "text": "", "album_id": "549401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23981937_bb71bfa6db_o.jpg", "secret": "bb71bfa6db", "media": "photo", "latitude": "0", "id": "23981937", "tags": "virginia 2005 erika driving"}, {"datetaken": "2005-06-30 16:57:57", "license": "1", "title": "IMG_5290", "text": "", "album_id": "549401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23982000_00f65be0ca_o.jpg", "secret": "00f65be0ca", "media": "photo", "latitude": "0", "id": "23982000", "tags": "virginia 2005 xis erika"}, {"datetaken": "2010-01-01 12:01:10", "license": "6", "title": "\"Self portrait\" (Linnquist, 1910)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6184/6053499878_c08ce4429a_o.jpg", "secret": "ac4bcc3dbd", "media": "photo", "latitude": "0", "id": "6053499878", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:01:12", "license": "6", "title": "\"Beach life at the Adriatic\" (Linnquist, 1922)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6067/6053500632_c46c6d2e8f_o.jpg", "secret": "b91a9336b8", "media": "photo", "latitude": "0", "id": "6053500632", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:01:18", "license": "4", "title": "\"Around Ernst Josephson's palette\" (Linnquist, 1960?)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7166/6672300033_3df1e5794b_o.jpg", "secret": "bced939a4e", "media": "photo", "latitude": "0", "id": "6672300033", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:01:28", "license": "6", "title": "\"Self portrait\" (Linnquist, 194?)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6199/6052949677_a01b19e0e7_o.jpg", "secret": "2159c99b29", "media": "photo", "latitude": "0", "id": "6052949677", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:01:31", "license": "4", "title": "\"Villa entrance at the Garda lake\" (Linnquist, 1968)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6672260885_b2a994f0f4_o.jpg", "secret": "c696567f17", "media": "photo", "latitude": "0", "id": "6672260885", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:01:42", "license": "6", "title": "\"Nubian village\" (Linnquist, 1965)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6081/6061356616_cb39bf5381_o.jpg", "secret": "49bbc1628c", "media": "photo", "latitude": "0", "id": "6061356616", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:02:04", "license": "6", "title": "\"Nubian village\". Detail. (Linnquist, 1965)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6189/6061392648_15c85cfeb1_o.jpg", "secret": "fee5666c62", "media": "photo", "latitude": "0", "id": "6061392648", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:02:06", "license": "6", "title": "\"Piazetta del Leoncini\" (Linnquist, 1947)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6086/6061462298_8ebd2f2e57_o.jpg", "secret": "b811232b0e", "media": "photo", "latitude": "0", "id": "6061462298", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:07:34", "license": "6", "title": "\"Street in Luxor\" (Linnquist, 1947)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6087/6061329274_34f7c03d90_o.jpg", "secret": "c47355689f", "media": "photo", "latitude": "0", "id": "6061329274", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:08:05", "license": "4", "title": "\"Summer night at Riddarholm channel\" (Stockholm) (Linnquist, 1934)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7026/6672261201_06d016a1f7_o.jpg", "secret": "7d8f1d1934", "media": "photo", "latitude": "0", "id": "6672261201", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:12:42", "license": "6", "title": "\"Military funeral\" (Linnquist, 1918)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6192/6062211493_defee21621_o.jpg", "secret": "b9c618fe95", "media": "photo", "latitude": "0", "id": "6062211493", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:13:10", "license": "6", "title": "\"Amanda and Adolphine\" (Linnquist, 1919)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6082/6057876737_7f69d6fec1_o.jpg", "secret": "2dae391a4d", "media": "photo", "latitude": "0", "id": "6057876737", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:18:54", "license": "4", "title": "\"Stockholm summer night\" (Linnquist, 1924)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7021/6672261563_acaaa278ca_o.jpg", "secret": "0a486b9e85", "media": "photo", "latitude": "0", "id": "6672261563", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:19:12", "license": "6", "title": "\"Grand Hotel's veranda. Closing time.\" (Linnquist, 192?)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6182/6052951557_981312e261_o.jpg", "secret": "19e19a545e", "media": "photo", "latitude": "0", "id": "6052951557", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:20:02", "license": "6", "title": "\"Children in winter snow\" (Linnquist, 1945)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6088/6053503548_c2bdbe7720_o.jpg", "secret": "7359265cfa", "media": "photo", "latitude": "0", "id": "6053503548", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:20:23", "license": "6", "title": "\"Hemming Throne Holst\" (Linnquist, 1938)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6078/6052952743_f0fa30dd78_o.jpg", "secret": "e8945bb8ce", "media": "photo", "latitude": "0", "id": "6052952743", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:21:36", "license": "6", "title": "\"Spanish medical jugs\" (Linnquist, 197?)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6065/6058422814_4a710e5724_o.jpg", "secret": "e4ae838565", "media": "photo", "latitude": "0", "id": "6058422814", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:22:15", "license": "4", "title": "\"Breaking up from the hotel room\" (Linnquist, 1971)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7016/6672261949_497cb5a316_o.jpg", "secret": "bd41ab9e62", "media": "photo", "latitude": "0", "id": "6672261949", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:24:09", "license": "6", "title": "\"Window view in Lisbon\" (Linnquist, 1982)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6089/6052954211_a5895ddb81_o.jpg", "secret": "e90fc6d294", "media": "photo", "latitude": "0", "id": "6052954211", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:25:16", "license": "6", "title": "\"Tagetes\" (Linnquist, 1920)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6188/6061462684_b9a0405e0b_o.jpg", "secret": "b5094325a8", "media": "photo", "latitude": "0", "id": "6061462684", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:25:45", "license": "4", "title": "Proposal for altarpiece (Linnquist)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6158/6140523713_67bac22937_o.jpg", "secret": "aab5ebda79", "media": "photo", "latitude": "0", "id": "6140523713", "tags": "hilding linnquist"}, {"datetaken": "2010-01-01 12:26:33", "license": "4", "title": "\"Children on the meadow\" (Linnquist, 1920)", "text": "", "album_id": "72157627331890945", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7147/6672182979_2acefedbf7_o.jpg", "secret": "be6f06edda", "media": "photo", "latitude": "0", "id": "6672182979", "tags": "hilding linnquist"}, {"datetaken": "2014-01-25 15:45:08", "license": "1", "title": "Lindberg 2014 Family Portraits 1", "text": "", "album_id": "72157641419066363", "longitude": "-117.207024", "url_o": "https://farm4.staticflickr.com/3761/12727645554_fd68c73546_o.jpg", "secret": "e21b66718e", "media": "photo", "latitude": "33.147597", "id": "12727645554", "tags": "california nikon unitedstates sanmarcos tamron 2875mmf28 d7000 tamronspaf2875mmf28xrdildasphericalifmacroa09 sanmarcoslutheranchurch"}, {"datetaken": "2014-01-25 15:49:13", "license": "1", "title": "Lindberg 2014 Family Portraits 2", "text": "", "album_id": "72157641419066363", "longitude": "-117.207024", "url_o": "https://farm8.staticflickr.com/7341/12727194355_860834c7d2_o.jpg", "secret": "f3416068c2", "media": "photo", "latitude": "33.147597", "id": "12727194355", "tags": "california nikon unitedstates sanmarcos tamron 2875mmf28 d7000 tamronspaf2875mmf28xrdildasphericalifmacroa09 sanmarcoslutheranchurch"}, {"datetaken": "2014-01-25 15:50:58", "license": "1", "title": "Lindberg 2014 Family Portraits 3", "text": "", "album_id": "72157641419066363", "longitude": "-117.207024", "url_o": "https://farm8.staticflickr.com/7303/12727202485_c955a9203e_o.jpg", "secret": "e3d063016a", "media": "photo", "latitude": "33.147597", "id": "12727202485", "tags": "california nikon unitedstates sanmarcos tamron 2875mmf28 d7000 tamronspaf2875mmf28xrdildasphericalifmacroa09 sanmarcoslutheranchurch"}, {"datetaken": "2014-01-25 15:52:41", "license": "1", "title": "Lindberg 2014 Family Portraits 4", "text": "", "album_id": "72157641419066363", "longitude": "-117.207024", "url_o": "https://farm6.staticflickr.com/5518/12727364993_53e2029657_o.jpg", "secret": "7d43d9c76b", "media": "photo", "latitude": "33.147597", "id": "12727364993", "tags": "california nikon unitedstates sanmarcos tamron 2875mmf28 d7000 tamronspaf2875mmf28xrdildasphericalifmacroa09 sanmarcoslutheranchurch"}, {"datetaken": "2014-01-25 15:55:50", "license": "1", "title": "Lindberg 2014 Family Portraits 5", "text": "", "album_id": "72157641419066363", "longitude": "-117.207024", "url_o": "https://farm6.staticflickr.com/5499/12727219875_554c6a6301_o.jpg", "secret": "e82a304ecb", "media": "photo", "latitude": "33.147597", "id": "12727219875", "tags": "california nikon unitedstates sanmarcos tamron 2875mmf28 d7000 tamronspaf2875mmf28xrdildasphericalifmacroa09 sanmarcoslutheranchurch"}, {"datetaken": "2014-01-25 15:58:39", "license": "1", "title": "Lindberg 2014 Family Portraits 6", "text": "", "album_id": "72157641419066363", "longitude": "-117.207024", "url_o": "https://farm3.staticflickr.com/2873/12727380873_85e975baa7_o.jpg", "secret": "d05f6438ec", "media": "photo", "latitude": "33.147597", "id": "12727380873", "tags": "california nikon unitedstates sanmarcos tamron 2875mmf28 d7000 tamronspaf2875mmf28xrdildasphericalifmacroa09 sanmarcoslutheranchurch"}, {"datetaken": "2014-01-25 15:59:09", "license": "1", "title": "Lindberg 2014 Family Portraits 7", "text": "", "album_id": "72157641419066363", "longitude": "-117.207024", "url_o": "https://farm4.staticflickr.com/3697/12727697794_5b2d79d1d4_o.jpg", "secret": "5179d52ece", "media": "photo", "latitude": "33.147597", "id": "12727697794", "tags": "california nikon unitedstates sanmarcos tamron 2875mmf28 d7000 tamronspaf2875mmf28xrdildasphericalifmacroa09 sanmarcoslutheranchurch"}, {"datetaken": "2014-01-25 15:59:45", "license": "1", "title": "Lindberg 2014 Family Portraits 8", "text": "", "album_id": "72157641419066363", "longitude": "-117.207024", "url_o": "https://farm4.staticflickr.com/3667/12727244765_6244f8b302_o.jpg", "secret": "54394fef4f", "media": "photo", "latitude": "33.147597", "id": "12727244765", "tags": "california nikon unitedstates sanmarcos tamron 2875mmf28 d7000 tamronspaf2875mmf28xrdildasphericalifmacroa09 sanmarcoslutheranchurch"}, {"datetaken": "2014-01-25 16:01:27", "license": "1", "title": "Lindberg 2014 Family Portraits 9", "text": "", "album_id": "72157641419066363", "longitude": "-117.207024", "url_o": "https://farm6.staticflickr.com/5510/12727405633_0ea4c09f88_o.jpg", "secret": "4bd424b230", "media": "photo", "latitude": "33.147597", "id": "12727405633", "tags": "california nikon unitedstates sanmarcos tamron 2875mmf28 d7000 tamronspaf2875mmf28xrdildasphericalifmacroa09 sanmarcoslutheranchurch"}, {"datetaken": "2014-01-25 16:06:54", "license": "1", "title": "Lindberg 2014 Family Portraits 10", "text": "", "album_id": "72157641419066363", "longitude": "-117.207024", "url_o": "https://farm4.staticflickr.com/3768/12727413893_50ae45e535_o.jpg", "secret": "30e229d5b7", "media": "photo", "latitude": "33.147597", "id": "12727413893", "tags": "california nikon unitedstates sanmarcos tamron 2875mmf28 d7000 tamronspaf2875mmf28xrdildasphericalifmacroa09 sanmarcoslutheranchurch"}, {"datetaken": "2014-01-25 16:07:35", "license": "1", "title": "Lindberg 2014 Family Portraits 11", "text": "", "album_id": "72157641419066363", "longitude": "-117.207024", "url_o": "https://farm4.staticflickr.com/3792/12727422003_07b4942177_o.jpg", "secret": "db69227a15", "media": "photo", "latitude": "33.147597", "id": "12727422003", "tags": "california nikon unitedstates sanmarcos tamron 2875mmf28 d7000 tamronspaf2875mmf28xrdildasphericalifmacroa09 sanmarcoslutheranchurch"}, {"datetaken": "2014-01-25 16:08:43", "license": "1", "title": "Lindberg 2014 Family Portraits 12", "text": "", "album_id": "72157641419066363", "longitude": "-117.207024", "url_o": "https://farm8.staticflickr.com/7379/12727428953_3b863f4a5d_o.jpg", "secret": "5e1c252fe6", "media": "photo", "latitude": "33.147597", "id": "12727428953", "tags": "california nikon unitedstates sanmarcos tamron 2875mmf28 d7000 tamronspaf2875mmf28xrdildasphericalifmacroa09 sanmarcoslutheranchurch"}, {"datetaken": "2014-02-17 13:57:01", "license": "4", "title": "Horse and Buggy to Head Procession", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5482/12798585705_6cba4f9dc9_o.jpg", "secret": "b01f315001", "media": "photo", "latitude": "0", "id": "12798585705", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-17 13:57:15", "license": "4", "title": "At the Church in Sperry, OK", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2858/12798996934_734750bf0b_o.jpg", "secret": "3ab1b086f3", "media": "photo", "latitude": "0", "id": "12798996934", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-17 14:12:21", "license": "4", "title": "Jonny, Jerry & Mark", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3818/12798681523_548f85cc49_o.jpg", "secret": "474fc36ef9", "media": "photo", "latitude": "0", "id": "12798681523", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-17 14:14:34", "license": "4", "title": "Family at the Funeral", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7364/12798581445_3eaed6c653_o.jpg", "secret": "8e476284a6", "media": "photo", "latitude": "0", "id": "12798581445", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-17 14:15:20", "license": "4", "title": "Waiting in Church Parking Lot", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5479/12798993554_1cc003d475_o.jpg", "secret": "fd5edefae5", "media": "photo", "latitude": "0", "id": "12798993554", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-17 14:15:28", "license": "4", "title": "Brothers Charles & Jerry", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7398/12798677133_421736f4ec_o.jpg", "secret": "bfac2968f0", "media": "photo", "latitude": "0", "id": "12798677133", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-17 14:15:59", "license": "4", "title": "Siblings Charles, Jim, Suzanne & Jerry", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7343/12798990574_e8ac9fd82d_o.jpg", "secret": "a7dc9cdcb9", "media": "photo", "latitude": "0", "id": "12798990574", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-17 14:34:23", "license": "4", "title": "Bringing out the Casket", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2882/12798674673_18d682671a_o.jpg", "secret": "10efb35472", "media": "photo", "latitude": "0", "id": "12798674673", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-17 14:34:29", "license": "4", "title": "The Casket", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3691/12798673833_6a61d55cbb_o.jpg", "secret": "6bd523d346", "media": "photo", "latitude": "0", "id": "12798673833", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-17 14:34:41", "license": "4", "title": "Pall Bearers", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5521/12798987574_4666875125_o.jpg", "secret": "df09e69067", "media": "photo", "latitude": "0", "id": "12798987574", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-17 14:34:49", "license": "4", "title": "Pall Bearers Carrying Randy", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2840/12798672133_659d00957a_o.jpg", "secret": "056e09a38c", "media": "photo", "latitude": "0", "id": "12798672133", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-17 14:34:54", "license": "4", "title": "Loading Casket into Buggy", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2875/12798573085_807299d32e_o.jpg", "secret": "0725cc40e3", "media": "photo", "latitude": "0", "id": "12798573085", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-17 14:35:05", "license": "4", "title": "Pall Bearers Loading Casket", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7290/12798669253_4169bda282_o.jpg", "secret": "166620decb", "media": "photo", "latitude": "0", "id": "12798669253", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-17 14:35:34", "license": "4", "title": "Church, Friends & Family", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2845/12798667273_fd107296d1_o.jpg", "secret": "4169063e3f", "media": "photo", "latitude": "0", "id": "12798667273", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-17 14:35:41", "license": "4", "title": "Rifle for Randy's Brother", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7422/12798566795_f8af2635b1_o.jpg", "secret": "875b29b1a9", "media": "photo", "latitude": "0", "id": "12798566795", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-17 14:37:34", "license": "4", "title": "Funeral Procession of a Beloved Cowboy", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5478/12798565515_9b27382140_o.jpg", "secret": "e1b7bfe1c4", "media": "photo", "latitude": "0", "id": "12798565515", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-17 14:37:34", "license": "4", "title": "The Cowboy Rides Away", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3667/12798976294_32c23911d4_o.jpg", "secret": "1dbc8d6f3e", "media": "photo", "latitude": "0", "id": "12798976294", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-17 14:37:49", "license": "4", "title": "Sons Following Fallen Father", "text": "", "album_id": "72157641572652875", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3744/12798975904_6e7352d994_o.jpg", "secret": "ffeb79204a", "media": "photo", "latitude": "0", "id": "12798975904", "tags": "family friends horses love oklahoma church cowboy carriage casket funeral procession sons sperry cowboyridesaway"}, {"datetaken": "2014-02-28 09:20:11", "license": "4", "title": "Street Art", "text": "", "album_id": "72157641657578444", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7392/12836196545_c0c41d1da7_o.jpg", "secret": "3fa3ab1b10", "media": "photo", "latitude": "0", "id": "12836196545", "tags": ""}, {"datetaken": "2014-02-28 09:21:27", "license": "4", "title": "Texas Street Bridge", "text": "", "album_id": "72157641657578444", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2820/12836626494_723df5e17a_o.jpg", "secret": "d4e1477ef0", "media": "photo", "latitude": "0", "id": "12836626494", "tags": ""}, {"datetaken": "2014-02-28 09:22:12", "license": "4", "title": "Youree Drive", "text": "", "album_id": "72157641657578444", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2812/12836196355_e53083bf15_o.jpg", "secret": "1eec24396c", "media": "photo", "latitude": "0", "id": "12836196355", "tags": ""}, {"datetaken": "2014-02-28 09:22:42", "license": "4", "title": "Mural", "text": "", "album_id": "72157641657578444", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3753/12836277663_5bd6d8d277_o.jpg", "secret": "2bb224e1ec", "media": "photo", "latitude": "0", "id": "12836277663", "tags": ""}, {"datetaken": "2014-02-28 09:23:05", "license": "4", "title": "Crates", "text": "", "album_id": "72157641657578444", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7293/12836625974_dc059f7b7f_o.jpg", "secret": "9dcb52a328", "media": "photo", "latitude": "0", "id": "12836625974", "tags": "door metal milk back pyramid business pile sheet dairy crate"}, {"datetaken": "2014-02-28 09:23:56", "license": "4", "title": "Board & Batten", "text": "", "album_id": "72157641657578444", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7406/12836277603_01b69ce58a_o.jpg", "secret": "61d53c6742", "media": "photo", "latitude": "0", "id": "12836277603", "tags": ""}, {"datetaken": "2014-02-28 09:26:15", "license": "4", "title": "Pines", "text": "", "album_id": "72157641657578444", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7408/12836625644_8353950656_o.jpg", "secret": "1cd836a43f", "media": "photo", "latitude": "0", "id": "12836625644", "tags": ""}, {"datetaken": "2014-02-28 09:28:36", "license": "4", "title": "Rock Pile 2", "text": "", "album_id": "72157641657578444", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7347/12836194785_9a4507b998_o.jpg", "secret": "5f267bf99e", "media": "photo", "latitude": "0", "id": "12836194785", "tags": ""}, {"datetaken": "2014-02-28 09:29:11", "license": "4", "title": "Burned", "text": "", "album_id": "72157641657578444", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3685/12836624834_8c9b3eb009_o.jpg", "secret": "405f2d9745", "media": "photo", "latitude": "0", "id": "12836624834", "tags": "home fire funeral remains"}, {"datetaken": "2014-02-28 09:29:47", "license": "4", "title": "Funeral Home Fire Double Exposure", "text": "", "album_id": "72157641657578444", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2847/12836624464_e8a7377815_o.jpg", "secret": "72732c4b7f", "media": "photo", "latitude": "0", "id": "12836624464", "tags": "home fire exposure double funeral remains"}, {"datetaken": "2014-02-28 09:42:36", "license": "4", "title": "Funeral Home Ruins", "text": "", "album_id": "72157641657578444", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3681/12836275863_1606b0a293_o.jpg", "secret": "3840524efa", "media": "photo", "latitude": "0", "id": "12836275863", "tags": "home fire funeral remains"}, {"datetaken": "2014-02-28 09:42:37", "license": "4", "title": "Charred Remains", "text": "", "album_id": "72157641657578444", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7416/12836624594_702296db42_o.jpg", "secret": "aaf3b98f22", "media": "photo", "latitude": "0", "id": "12836624594", "tags": "wood home glass fire stained funeral colored remains pews charred"}, {"datetaken": "2014-02-28 09:42:38", "license": "4", "title": "Rock Pile", "text": "", "album_id": "72157641657578444", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3754/12836276253_ac092b146f_o.jpg", "secret": "5eed563744", "media": "photo", "latitude": "0", "id": "12836276253", "tags": "tree rock rockscape"}, {"datetaken": "2014-02-28 09:42:39", "license": "4", "title": "Shreveport Streetscape", "text": "", "album_id": "72157641657578444", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3813/12836276873_1e7a2845da_o.jpg", "secret": "1b705c021b", "media": "photo", "latitude": "0", "id": "12836276873", "tags": "street texas cotton storefront shreveport"}, {"datetaken": "2014-02-28 09:42:39", "license": "4", "title": "Shirt from Correctional Facility", "text": "", "album_id": "72157641657578444", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7376/12836276753_09c209f769_o.jpg", "secret": "81b7e9394e", "media": "photo", "latitude": "0", "id": "12836276753", "tags": "railroad public shirt rural decay tie works"}, {"datetaken": "2014-02-28 09:42:40", "license": "4", "title": "Tree Clearing with Rock Pile", "text": "", "album_id": "72157641657578444", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7299/12836625634_323e7dde0f_o.jpg", "secret": "1e68c1cba6", "media": "photo", "latitude": "0", "id": "12836625634", "tags": ""}, {"datetaken": "2010-09-03 15:26:43", "license": "1", "title": "Nomnom", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/4959286652_d206ec85f5_o.jpg", "secret": "47cc69a9f7", "media": "photo", "latitude": "0", "id": "4959286652", "tags": "party work yahoo going away"}, {"datetaken": "2010-09-03 15:27:20", "license": "1", "title": "Cake Will Be Served", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4959287618_82e9463c6a_o.jpg", "secret": "7c8efa4c7b", "media": "photo", "latitude": "0", "id": "4959287618", "tags": "party coffee cake work yahoo flames going away"}, {"datetaken": "2010-09-03 15:28:35", "license": "1", "title": "Hin and his Yashica", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4092/4958694687_27390db7f2_o.jpg", "secret": "11d20700c2", "media": "photo", "latitude": "0", "id": "4958694687", "tags": "party work yahoo going away hin yashica twinlensreflex"}, {"datetaken": "2010-09-03 15:33:46", "license": "1", "title": "Metametapicture", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/4958695235_6b10af0e6c_o.jpg", "secret": "48a1a375fe", "media": "photo", "latitude": "0", "id": "4958695235", "tags": "chris party work yahoo ken going away hin"}, {"datetaken": "2010-09-03 15:37:37", "license": "1", "title": "Metapicture", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4151/4959290246_c8e2c36125_o.jpg", "secret": "de0c2839ec", "media": "photo", "latitude": "0", "id": "4959290246", "tags": "party work yahoo going away hin nam farzin"}, {"datetaken": "2010-09-03 15:39:07", "license": "1", "title": "Farzin and Nam", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/4959291210_ea100b5b00_o.jpg", "secret": "82d001a29c", "media": "photo", "latitude": "0", "id": "4959291210", "tags": "party work yahoo going away nam farzin"}, {"datetaken": "2010-09-03 15:39:25", "license": "1", "title": "Yashica", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/4958698357_df168cac8e_o.jpg", "secret": "3485b9c181", "media": "photo", "latitude": "0", "id": "4958698357", "tags": "party work yahoo going away yashica twinlensreflex"}, {"datetaken": "2010-09-03 15:40:41", "license": "1", "title": "The Remains of the Day", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4959293396_f811648f03_o.jpg", "secret": "8a42a4fc7f", "media": "photo", "latitude": "0", "id": "4959293396", "tags": "party coffee cake work yahoo flames going away"}, {"datetaken": "2010-09-03 15:45:53", "license": "1", "title": "Bocce Balls", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/4959294560_fdf5941f33_o.jpg", "secret": "dbd3e1a7e5", "media": "photo", "latitude": "0", "id": "4959294560", "tags": "party work yahoo going away bocce extremebocce"}, {"datetaken": "2010-09-03 15:48:18", "license": "1", "title": "Cecilia and Hin", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/4959294986_ffb9c89559_o.jpg", "secret": "6406c727ff", "media": "photo", "latitude": "0", "id": "4959294986", "tags": "party work yahoo going away cecilia hin yashica twinlensreflex strobist"}, {"datetaken": "2010-09-03 15:51:11", "license": "1", "title": "Metaphoto", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/4959296286_c14c5516c0_o.jpg", "secret": "9a3c744196", "media": "photo", "latitude": "0", "id": "4959296286", "tags": "party work yahoo going away medium format hin yashica twinlensreflex"}, {"datetaken": "2010-09-03 15:58:45", "license": "1", "title": "Group Photo", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/4959297892_448783a1d5_o.jpg", "secret": "093f11cc57", "media": "photo", "latitude": "0", "id": "4959297892", "tags": "chris party me work allan yahoo lawrence eli stu jonathan doug going away cecilia walt hin shardul nam amol"}, {"datetaken": "2010-09-03 16:01:26", "license": "1", "title": "Bowling (or Throwing)", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/4958705055_992c25d7d6_o.jpg", "secret": "ffb8114199", "media": "photo", "latitude": "0", "id": "4958705055", "tags": "party work yahoo eli going away bocce extremebocce"}, {"datetaken": "2010-09-03 16:02:19", "license": "1", "title": "Spectators", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4958706185_9a64044e33_o.jpg", "secret": "8e62c6c1c8", "media": "photo", "latitude": "0", "id": "4958706185", "tags": "party work yahoo lawrence stu going away cecilia walt"}, {"datetaken": "2010-09-03 16:03:11", "license": "1", "title": "Surveying the Land", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4959301294_2dd22fe218_o.jpg", "secret": "f40ed297a4", "media": "photo", "latitude": "0", "id": "4959301294", "tags": "party work yahoo going away bocce extremebocce"}, {"datetaken": "2010-09-03 16:05:33", "license": "1", "title": "Stu Lines Up", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4959302402_85d70054d2_o.jpg", "secret": "43b6d68402", "media": "photo", "latitude": "0", "id": "4959302402", "tags": "party work yahoo stu going away bocce extremebocce"}, {"datetaken": "2010-09-03 16:07:14", "license": "1", "title": "Extreme Bocce", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4091/4959303460_d5eb9501cc_o.jpg", "secret": "e3dcfeed70", "media": "photo", "latitude": "0", "id": "4959303460", "tags": "party work yahoo going away bocce extremebocce"}, {"datetaken": "2010-09-03 16:08:21", "license": "1", "title": "Preparing to Bowl", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4958710763_d3f6bde420_o.jpg", "secret": "6473539231", "media": "photo", "latitude": "0", "id": "4958710763", "tags": "party work yahoo eli going away walt bocce extremebocce"}, {"datetaken": "2010-09-03 16:29:50", "license": "1", "title": "The Arcturus Team (or what's left of it)", "text": "", "album_id": "72157624756855255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4087/4958711719_1997fc8e13_o.jpg", "secret": "ae5fff9e46", "media": "photo", "latitude": "0", "id": "4958711719", "tags": "chris party me work yahoo eli stu doug going away walt amol shivram"}, {"datetaken": "2012-04-05 17:28:58", "license": "1", "title": "IMG_0970", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm6.staticflickr.com/5335/7051766991_c1e1abe356_o.jpg", "secret": "09c2bd5193", "media": "photo", "latitude": "43.034858", "id": "7051766991", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2012-04-05 17:29:09", "license": "1", "title": "IMG_0973", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm6.staticflickr.com/5240/7051768533_8688d41e25_o.jpg", "secret": "e4248cab78", "media": "photo", "latitude": "43.034858", "id": "7051768533", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2012-04-05 17:29:24", "license": "1", "title": "IMG_0975", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm6.staticflickr.com/5330/6905679512_51e0acf55b_o.jpg", "secret": "26240fb734", "media": "photo", "latitude": "43.034858", "id": "6905679512", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2012-04-05 17:30:03", "license": "1", "title": "IMG_0976", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm6.staticflickr.com/5470/7051771047_c852404dd6_o.jpg", "secret": "2a5111b283", "media": "photo", "latitude": "43.034858", "id": "7051771047", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2012-04-05 17:48:42", "license": "1", "title": "IMG_0977", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm8.staticflickr.com/7118/7051772133_e3a9165685_o.jpg", "secret": "0ef7f769cb", "media": "photo", "latitude": "43.034858", "id": "7051772133", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2012-04-05 17:49:27", "license": "1", "title": "IMG_0978", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm8.staticflickr.com/7107/6905682906_ccd6c4a872_o.jpg", "secret": "4a2a2ee2ab", "media": "photo", "latitude": "43.034858", "id": "6905682906", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2012-04-05 17:52:03", "license": "1", "title": "IMG_0983", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm8.staticflickr.com/7239/7051774227_bf9b8ace15_o.jpg", "secret": "705909d352", "media": "photo", "latitude": "43.034858", "id": "7051774227", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2012-04-05 17:53:30", "license": "1", "title": "IMG_0985", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm6.staticflickr.com/5324/6905685462_482ceba9ff_o.jpg", "secret": "5fc7f2ed04", "media": "photo", "latitude": "43.034858", "id": "6905685462", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2012-04-05 17:53:50", "license": "1", "title": "IMG_0986", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm8.staticflickr.com/7126/6905687050_4c16b7ae6a_o.jpg", "secret": "e526b6d910", "media": "photo", "latitude": "43.034858", "id": "6905687050", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2012-04-05 17:54:03", "license": "1", "title": "IMG_0988", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm8.staticflickr.com/7192/6905688916_627501d709_o.jpg", "secret": "0f535e8170", "media": "photo", "latitude": "43.034858", "id": "6905688916", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2012-04-05 17:54:30", "license": "1", "title": "IMG_0990", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm6.staticflickr.com/5240/7051780851_1555a9520c_o.jpg", "secret": "3ec48c8edb", "media": "photo", "latitude": "43.034858", "id": "7051780851", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2012-04-05 17:58:02", "license": "1", "title": "IMG_0991", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm6.staticflickr.com/5159/7051781685_c59e6fc1d3_o.jpg", "secret": "6fce38807e", "media": "photo", "latitude": "43.034858", "id": "7051781685", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2012-04-05 17:58:07", "license": "1", "title": "IMG_0993", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm8.staticflickr.com/7220/7051783159_be4c883d4a_o.jpg", "secret": "d2026a7ded", "media": "photo", "latitude": "43.034858", "id": "7051783159", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2012-04-05 17:58:20", "license": "1", "title": "IMG_0994", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm6.staticflickr.com/5457/6905694210_08a1484207_o.jpg", "secret": "ed905f099b", "media": "photo", "latitude": "43.034858", "id": "6905694210", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2012-04-05 17:59:17", "license": "1", "title": "IMG_0997", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm8.staticflickr.com/7253/7051792981_675562d0f3_o.jpg", "secret": "3531b45379", "media": "photo", "latitude": "43.034858", "id": "7051792981", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2012-04-05 17:59:44", "license": "1", "title": "IMG_0998", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm8.staticflickr.com/7197/7051794207_3abeb392e8_o.jpg", "secret": "8784f32240", "media": "photo", "latitude": "43.034858", "id": "7051794207", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2012-04-05 18:00:33", "license": "1", "title": "IMG_1001", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm8.staticflickr.com/7060/7051795847_9d5b7236c3_o.jpg", "secret": "d9929b714a", "media": "photo", "latitude": "43.034858", "id": "7051795847", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2012-04-05 18:06:42", "license": "1", "title": "IMG_1002", "text": "", "album_id": "72157629391264564", "longitude": "-87.905924", "url_o": "https://farm8.staticflickr.com/7041/6905707932_b3a8a5c3b0_o.jpg", "secret": "49372f17b5", "media": "photo", "latitude": "43.034858", "id": "6905707932", "tags": "bbq milwaukee goingawayparty smokeshack nickandesther"}, {"datetaken": "2005-08-04 21:23:40", "license": "4", "title": "Stop eating my pork!", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31872438_04aced8429_o.jpg", "secret": "04aced8429", "media": "photo", "latitude": "0", "id": "31872438", "tags": "norms going away party meal pork"}, {"datetaken": "2005-08-04 21:23:59", "license": "4", "title": "The pork that I cooked up", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31872479_bdb57b7c59_o.jpg", "secret": "bdb57b7c59", "media": "photo", "latitude": "0", "id": "31872479", "tags": "norms going away party pork meal"}, {"datetaken": "2005-08-04 21:24:37", "license": "4", "title": "Norm", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31872537_78e70fbb4e_o.jpg", "secret": "78e70fbb4e", "media": "photo", "latitude": "0", "id": "31872537", "tags": "norms going away party norm"}, {"datetaken": "2005-08-04 21:24:52", "license": "4", "title": "Norm", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31872586_e05d010826_o.jpg", "secret": "e05d010826", "media": "photo", "latitude": "0", "id": "31872586", "tags": "norms going away party norm"}, {"datetaken": "2005-08-04 21:26:04", "license": "4", "title": "Hello", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31872604_a24d9f4ed6_o.jpg", "secret": "a24d9f4ed6", "media": "photo", "latitude": "0", "id": "31872604", "tags": "norms going away party phuson"}, {"datetaken": "2005-08-04 21:26:34", "license": "4", "title": "Grrrrr!", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31872656_bbb371cbac_o.jpg", "secret": "bbb371cbac", "media": "photo", "latitude": "0", "id": "31872656", "tags": "norms going away party phuson"}, {"datetaken": "2005-08-04 21:27:40", "license": "4", "title": "Kitchen", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31872691_9e0040ccb9_o.jpg", "secret": "9e0040ccb9", "media": "photo", "latitude": "0", "id": "31872691", "tags": "norms going away party lily dexter darren"}, {"datetaken": "2005-08-04 21:27:44", "license": "4", "title": "Playing cards", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31872512_c0201e7a89_o.jpg", "secret": "c0201e7a89", "media": "photo", "latitude": "0", "id": "31872512", "tags": "norms going away party david"}, {"datetaken": "2005-08-04 21:28:08", "license": "4", "title": "I'm cooking!", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31872711_735ee7d473_o.jpg", "secret": "735ee7d473", "media": "photo", "latitude": "0", "id": "31872711", "tags": "norms going away party phuson"}, {"datetaken": "2005-08-04 21:28:56", "license": "4", "title": "Darren's looking like a cholo with Dexter behind him", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31872731_e1e1a51569_o.jpg", "secret": "e1e1a51569", "media": "photo", "latitude": "0", "id": "31872731", "tags": "norms going away party darren dexter"}, {"datetaken": "2005-08-04 21:29:56", "license": "4", "title": "Me!", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31872752_7a68859ed7_o.jpg", "secret": "7a68859ed7", "media": "photo", "latitude": "0", "id": "31872752", "tags": "norms going away party phuson"}, {"datetaken": "2005-08-04 21:33:17", "license": "4", "title": "Derek's trying to steal Allison away", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31872785_25d2e4915a_o.jpg", "secret": "25d2e4915a", "media": "photo", "latitude": "0", "id": "31872785", "tags": "norms going away party derek allisond"}, {"datetaken": "2005-08-04 21:35:48", "license": "4", "title": "I can cook! Watch me!", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31916399_9b7bc3f007_o.jpg", "secret": "9b7bc3f007", "media": "photo", "latitude": "0", "id": "31916399", "tags": "norms going away party phuson cooking"}, {"datetaken": "2005-08-04 21:36:16", "license": "4", "title": "Going away party for Norm", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31916334_a03c84cbe1_o.jpg", "secret": "a03c84cbe1", "media": "photo", "latitude": "0", "id": "31916334", "tags": "norms going away party lily norm"}, {"datetaken": "2005-08-04 21:37:26", "license": "4", "title": "Darren's surprised that I know how to stir the pork!", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31916372_4374928118_o.jpg", "secret": "4374928118", "media": "photo", "latitude": "0", "id": "31916372", "tags": "norms going away party phuson darren cooking"}, {"datetaken": "2005-08-04 22:11:13", "license": "4", "title": "Allison's laying on my laps", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31873439_8a790b0242_o.jpg", "secret": "8a790b0242", "media": "photo", "latitude": "0", "id": "31873439", "tags": "norms going away party allisond"}, {"datetaken": "2005-08-04 22:11:35", "license": "4", "title": "A shot of the kitchen", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31872817_4fa579414b_o.jpg", "secret": "4fa579414b", "media": "photo", "latitude": "0", "id": "31872817", "tags": "norms going away party"}, {"datetaken": "2005-08-04 22:11:42", "license": "4", "title": "Laughters", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31872845_0b7fd740cd_o.jpg", "secret": "0b7fd740cd", "media": "photo", "latitude": "0", "id": "31872845", "tags": "norms going away party norm darren"}, {"datetaken": "2005-08-04 22:11:50", "license": "4", "title": "Lily's trying to hide", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31872878_e5c6f4f71c_o.jpg", "secret": "e5c6f4f71c", "media": "photo", "latitude": "0", "id": "31872878", "tags": "norms going away party lily"}, {"datetaken": "2005-08-04 22:11:56", "license": "4", "title": "Norm's grossing out at Darren's comment", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31872967_67998038ff_o.jpg", "secret": "67998038ff", "media": "photo", "latitude": "0", "id": "31872967", "tags": "norms going away party norm"}, {"datetaken": "2005-08-04 22:12:02", "license": "4", "title": "Darren's pointing at something to Norm", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31873012_fbfcae6c97_o.jpg", "secret": "fbfcae6c97", "media": "photo", "latitude": "0", "id": "31873012", "tags": "norms going away party darren norm"}, {"datetaken": "2005-08-04 22:12:54", "license": "4", "title": "Playing cards!", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31873036_ed743cf619_o.jpg", "secret": "ed743cf619", "media": "photo", "latitude": "0", "id": "31873036", "tags": "norms going away party norm david"}, {"datetaken": "2005-08-04 22:14:13", "license": "4", "title": "Say cheese", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31873094_36dd562855_o.jpg", "secret": "36dd562855", "media": "photo", "latitude": "0", "id": "31873094", "tags": "norms going away party phuson"}, {"datetaken": "2005-08-04 22:15:06", "license": "4", "title": "Thanks for the cookies Lily", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31873114_b02f09bf69_o.jpg", "secret": "b02f09bf69", "media": "photo", "latitude": "0", "id": "31873114", "tags": "norms going away party lily"}, {"datetaken": "2005-08-05 01:12:00", "license": "4", "title": "Norm", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31873149_751bd88f52_o.jpg", "secret": "751bd88f52", "media": "photo", "latitude": "0", "id": "31873149", "tags": "norms going away party norm"}, {"datetaken": "2005-08-05 01:12:24", "license": "4", "title": "What are you guys doing?", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31873063_64ba430e16_o.jpg", "secret": "64ba430e16", "media": "photo", "latitude": "0", "id": "31873063", "tags": "norms going away party darren lily"}, {"datetaken": "2005-08-05 01:12:30", "license": "4", "title": "Norm's packing up", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31873217_f9f6863bf9_o.jpg", "secret": "f9f6863bf9", "media": "photo", "latitude": "0", "id": "31873217", "tags": "norms going away party norm"}, {"datetaken": "2005-08-05 01:12:35", "license": "4", "title": "Norm's mess!", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31873283_8b4c1111d8_o.jpg", "secret": "8b4c1111d8", "media": "photo", "latitude": "0", "id": "31873283", "tags": "norms going away party norm"}, {"datetaken": "2005-08-05 01:12:48", "license": "4", "title": "Spitting dollar bills for the stripper!", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31873365_a50cbba2f7_o.jpg", "secret": "a50cbba2f7", "media": "photo", "latitude": "0", "id": "31873365", "tags": "norms going away party darren"}, {"datetaken": "2005-08-05 01:13:00", "license": "4", "title": "Here comes the girl for Darren, get the pill ready", "text": "", "album_id": "710543", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31873187_a40c24c444_o.jpg", "secret": "a40c24c444", "media": "photo", "latitude": "0", "id": "31873187", "tags": "norms going away party darren lily"}, {"datetaken": "2010-12-10 18:52:23", "license": "3", "title": "", "text": "", "album_id": "72157625576160174", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5164/5251232681_d7927b5b12_o.jpg", "secret": "a941da1e1d", "media": "photo", "latitude": "0", "id": "5251232681", "tags": "minnesota midwest minneapolis josh twincities clockwork goingawayparty mn happyhour sendoff neminneapolis northeastminneapolis easthennepin clockworkers rayvic ehennepin cw12102010 sykopomp movingtowarmerclimes"}, {"datetaken": "2010-12-10 18:52:32", "license": "3", "title": "", "text": "", "album_id": "72157625576160174", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5287/5251232781_319a112fa2_o.jpg", "secret": "8854390866", "media": "photo", "latitude": "0", "id": "5251232781", "tags": "minnesota midwest minneapolis josh twincities clockwork goingawayparty mn happyhour sendoff neminneapolis northeastminneapolis easthennepin clockworkers rayvic ehennepin cw12102010 sykopomp movingtowarmerclimes"}, {"datetaken": "2010-12-10 18:52:37", "license": "3", "title": "", "text": "", "album_id": "72157625576160174", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5043/5251232869_b5101487d4_o.jpg", "secret": "2854d684e6", "media": "photo", "latitude": "0", "id": "5251232869", "tags": "minnesota midwest minneapolis josh twincities clockwork goingawayparty mn happyhour sendoff neminneapolis northeastminneapolis easthennepin clockworkers rayvic ehennepin cw12102010 sykopomp movingtowarmerclimes"}, {"datetaken": "2010-12-10 18:53:18", "license": "3", "title": "Not entirely sure what Jenny's hand gesture means", "text": "", "album_id": "72157625576160174", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5168/5251230373_8e8e678253_o.jpg", "secret": "21470db198", "media": "photo", "latitude": "0", "id": "5251230373", "tags": "minnesota midwest minneapolis josh twincities clockwork goingawayparty mn happyhour sendoff neminneapolis northeastminneapolis easthennepin clockworkers rayvic ehennepin cw12102010 sykopomp movingtowarmerclimes"}, {"datetaken": "2010-12-10 18:53:52", "license": "3", "title": "", "text": "", "album_id": "72157625576160174", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5287/5251230503_da40598dc5_o.jpg", "secret": "93975d332d", "media": "photo", "latitude": "0", "id": "5251230503", "tags": "minnesota midwest minneapolis josh twincities clockwork goingawayparty mn happyhour sendoff neminneapolis northeastminneapolis easthennepin clockworkers rayvic ehennepin cw12102010 sykopomp movingtowarmerclimes"}, {"datetaken": "2010-12-10 18:54:12", "license": "3", "title": "", "text": "", "album_id": "72157625576160174", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5090/5251834766_befdcbe2ba_o.jpg", "secret": "dfe51de79f", "media": "photo", "latitude": "0", "id": "5251834766", "tags": "minnesota midwest minneapolis josh twincities clockwork goingawayparty mn happyhour sendoff neminneapolis northeastminneapolis easthennepin clockworkers rayvic ehennepin cw12102010 sykopomp movingtowarmerclimes"}, {"datetaken": "2010-12-10 19:00:33", "license": "3", "title": "pretending to be drunker than they are", "text": "", "album_id": "72157625576160174", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5206/5251230709_70461d24ea_o.jpg", "secret": "2a6c45976f", "media": "photo", "latitude": "0", "id": "5251230709", "tags": "minnesota midwest minneapolis josh twincities clockwork goingawayparty mn happyhour sendoff neminneapolis northeastminneapolis easthennepin clockworkers rayvic ehennepin cw12102010 sykopomp movingtowarmerclimes"}, {"datetaken": "2010-12-10 19:01:20", "license": "3", "title": "the mouth of Jerry", "text": "", "album_id": "72157625576160174", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5163/5251230775_e1545c6813_o.jpg", "secret": "bb6146907f", "media": "photo", "latitude": "0", "id": "5251230775", "tags": "minnesota midwest minneapolis josh twincities clockwork goingawayparty mn happyhour sendoff neminneapolis northeastminneapolis easthennepin clockworkers rayvic ehennepin cw12102010 sykopomp movingtowarmerclimes"}, {"datetaken": "2010-12-10 19:01:48", "license": "3", "title": "Christian looks a-scared", "text": "", "album_id": "72157625576160174", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5001/5251835080_f805ac7d66_o.jpg", "secret": "31bedeb263", "media": "photo", "latitude": "0", "id": "5251835080", "tags": "minnesota midwest minneapolis josh twincities clockwork goingawayparty mn happyhour sendoff neminneapolis northeastminneapolis easthennepin clockworkers rayvic ehennepin cw12102010 sykopomp movingtowarmerclimes"}, {"datetaken": "2010-12-10 19:20:46", "license": "3", "title": "", "text": "", "album_id": "72157625576160174", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5044/5251230995_359922dd5d_o.jpg", "secret": "1181587c5f", "media": "photo", "latitude": "0", "id": "5251230995", "tags": "minnesota midwest minneapolis josh twincities clockwork goingawayparty mn happyhour sendoff neminneapolis northeastminneapolis easthennepin clockworkers rayvic ehennepin cw12102010 sykopomp movingtowarmerclimes"}, {"datetaken": "2011-12-10 19:08:20", "license": "4", "title": "Premier Inn - Oldbury, Sandwell - sign at night", "text": "", "album_id": "72157628370536917", "longitude": "-2.032926", "url_o": "https://farm8.staticflickr.com/7163/6491905811_a836883da9_o.jpg", "secret": "1beeda644c", "media": "photo", "latitude": "52.500819", "id": "6491905811", "tags": "greatbritain england sign unitedkingdom nightshots westmidlands oldbury blackcountry sandwell sleeptight premierinn wolverhamptonrd"}, {"datetaken": "2011-12-10 19:08:34", "license": "4", "title": "KFC - Lakeside, Oldbury, Sandwell - at night", "text": "", "album_id": "72157628370536917", "longitude": "-2.032390", "url_o": "https://farm8.staticflickr.com/7019/6491907411_77ee4e096e_o.jpg", "secret": "8d383e2329", "media": "photo", "latitude": "52.501495", "id": "6491907411", "tags": "greatbritain england unitedkingdom fastfood lakeside kfc nightshots takeaway westmidlands oldbury blackcountry sandwell wolverhamptonrd"}, {"datetaken": "2011-12-10 19:08:56", "license": "4", "title": "KFC - Lakeside, Oldbury, Sandwell - at night", "text": "", "album_id": "72157628370536917", "longitude": "-2.032390", "url_o": "https://farm8.staticflickr.com/7016/6491909075_423b085f89_o.jpg", "secret": "2e0ee3d83b", "media": "photo", "latitude": "52.501495", "id": "6491909075", "tags": "greatbritain england unitedkingdom fastfood lakeside kfc nightshots takeaway westmidlands oldbury blackcountry sandwell wolverhamptonrd"}, {"datetaken": "2011-12-10 19:09:06", "license": "4", "title": "KFC - Lakeside, Oldbury, Sandwell - at night", "text": "", "album_id": "72157628370536917", "longitude": "-2.032390", "url_o": "https://farm8.staticflickr.com/7167/6491910751_4238532977_o.jpg", "secret": "009d883379", "media": "photo", "latitude": "52.501495", "id": "6491910751", "tags": "greatbritain england sign unitedkingdom fastfood lakeside kfc nightshots takeaway westmidlands oldbury blackcountry sandwell wolverhamptonrd"}, {"datetaken": "2011-12-10 19:09:17", "license": "4", "title": "KFC - Lakeside, Oldbury, Sandwell - at night", "text": "", "album_id": "72157628370536917", "longitude": "-2.032390", "url_o": "https://farm8.staticflickr.com/7165/6491912307_b60c9dbf00_o.jpg", "secret": "e8bab95d1d", "media": "photo", "latitude": "52.501495", "id": "6491912307", "tags": "greatbritain trees england tree sign unitedkingdom fastfood lakeside kfc nightshots takeaway westmidlands oldbury blackcountry sandwell wolverhamptonrd"}, {"datetaken": "2011-12-10 19:09:34", "license": "4", "title": "Oldbury, Sandwell - street lights at night and moon", "text": "", "album_id": "72157628370536917", "longitude": "-2.029933", "url_o": "https://farm8.staticflickr.com/7025/6491914557_29b0088024_o.jpg", "secret": "51857049ec", "media": "photo", "latitude": "52.501985", "id": "6491914557", "tags": "greatbritain england moon unitedkingdom streetlights nightshots westmidlands oldbury blackcountry sandwell wolverhamptonrd"}, {"datetaken": "2011-12-10 19:09:38", "license": "4", "title": "Oldbury, Sandwell - street lights at night and moon", "text": "", "album_id": "72157628370536917", "longitude": "-2.029933", "url_o": "https://farm8.staticflickr.com/7173/6491916193_f3d5140cc1_o.jpg", "secret": "98d9765ecd", "media": "photo", "latitude": "52.501985", "id": "6491916193", "tags": "greatbritain england moon unitedkingdom streetlights nightshots westmidlands oldbury blackcountry sandwell wolverhamptonrd"}, {"datetaken": "2011-12-10 22:38:41", "license": "4", "title": "The Lakeside - Oldbury, Sandwell - Christmas tree and presents", "text": "", "album_id": "72157628370536917", "longitude": "-2.031907", "url_o": "https://farm8.staticflickr.com/7013/6491917925_8c58a05e68_o.jpg", "secret": "0cd13f5428", "media": "photo", "latitude": "52.501077", "id": "6491917925", "tags": "greatbritain england restaurant unitedkingdom christmastree lakeside presents nightshots westmidlands oldbury blackcountry thelakeside sandwell wolverhamptonrd"}, {"datetaken": "2011-12-10 22:41:26", "license": "4", "title": "The Lakeside - Oldbury, Sandwell - Table Table - sign", "text": "", "album_id": "72157628370536917", "longitude": "-2.031907", "url_o": "https://farm8.staticflickr.com/7144/6491919765_c82300c408_o.jpg", "secret": "0750d3a88d", "media": "photo", "latitude": "52.501077", "id": "6491919765", "tags": "greatbritain england sign restaurant unitedkingdom lakeside nightshots westmidlands oldbury blackcountry thelakeside sandwell tabletable wolverhamptonrd"}, {"datetaken": "2011-12-10 22:41:32", "license": "4", "title": "The Lakeside - Oldbury, Sandwell - sign", "text": "", "album_id": "72157628370536917", "longitude": "-2.031907", "url_o": "https://farm8.staticflickr.com/7005/6491921589_96132cdf91_o.jpg", "secret": "ec24f5fb0a", "media": "photo", "latitude": "52.501077", "id": "6491921589", "tags": "greatbritain england sign restaurant unitedkingdom lakeside nightshots westmidlands oldbury blackcountry thelakeside sandwell wolverhamptonrd"}, {"datetaken": "2011-12-10 22:41:57", "license": "4", "title": "The Lakeside - Oldbury, Sandwell", "text": "", "album_id": "72157628370536917", "longitude": "-2.031907", "url_o": "https://farm8.staticflickr.com/7141/6491923407_b3062956b6_o.jpg", "secret": "b642d6912c", "media": "photo", "latitude": "52.501077", "id": "6491923407", "tags": "greatbritain england restaurant unitedkingdom lakeside nightshots westmidlands oldbury blackcountry thelakeside sandwell wolverhamptonrd"}, {"datetaken": "2011-12-10 22:42:32", "license": "4", "title": "Oldbury, Sandwell - the moon above Premier Inn", "text": "", "album_id": "72157628370536917", "longitude": "-2.032926", "url_o": "https://farm8.staticflickr.com/7031/6491925235_8dfae5bb91_o.jpg", "secret": "daef3e1aff", "media": "photo", "latitude": "52.500819", "id": "6491925235", "tags": "greatbritain england moon unitedkingdom nightshots westmidlands oldbury blackcountry sandwell premierinn wolverhamptonrd"}, {"datetaken": "2011-12-10 22:47:09", "license": "4", "title": "Total petrol station - Wolverhampton Road, Oldbury, Sandwell", "text": "", "album_id": "72157628370536917", "longitude": "-2.022541", "url_o": "https://farm8.staticflickr.com/7016/6491927077_a82d93065c_o.jpg", "secret": "a04bf5374b", "media": "photo", "latitude": "52.494343", "id": "6491927077", "tags": "greatbritain england diesel unitedkingdom nightshots total westmidlands petrolstation oldbury blackcountry sandwell excellium premiumunleaded wolverhamptonrd"}, {"datetaken": "2011-12-10 22:47:16", "license": "4", "title": "Total petrol station - Wolverhampton Road, Oldbury, Sandwell - sign", "text": "", "album_id": "72157628370536917", "longitude": "-2.022541", "url_o": "https://farm8.staticflickr.com/7008/6491928775_088d2f7ce1_o.jpg", "secret": "7c2ebd64eb", "media": "photo", "latitude": "52.494343", "id": "6491928775", "tags": "greatbritain england sign diesel unitedkingdom nightshots total westmidlands petrolstation oldbury blackcountry sandwell excellium premiumunleaded wolverhamptonrd"}, {"datetaken": "2011-12-10 22:49:00", "license": "4", "title": "Railway bridge - Wolverhampton Road, Oldbury, Sandwell", "text": "", "album_id": "72157628370536917", "longitude": "-2.017090", "url_o": "https://farm8.staticflickr.com/7158/6491930563_7dc57dcdcb_o.jpg", "secret": "6476ea0d6b", "media": "photo", "latitude": "52.485668", "id": "6491930563", "tags": "greatbritain bridge england unitedkingdom streetlights country lamppost nightshots westmidlands railwaybridge rowley oldbury lampposts sandwell wolverhamptonrd rowleyregisstation regisartworksunblack"}, {"datetaken": "2011-12-10 22:49:07", "license": "4", "title": "Railway bridge - Wolverhampton Road, Oldbury, Sandwell - Sun artwork", "text": "", "album_id": "72157628370536917", "longitude": "-2.017090", "url_o": "https://farm8.staticflickr.com/7170/6491932429_ca04499bd4_o.jpg", "secret": "c2ff95aa2f", "media": "photo", "latitude": "52.485668", "id": "6491932429", "tags": "greatbritain bridge england streetart unitedkingdom streetlights country lamppost nightshots westmidlands railwaybridge rowley oldbury lampposts sandwell wolverhamptonrd rowleyregisstation regisartworksunblack"}, {"datetaken": "2005-03-11 23:14:05", "license": "4", "title": "IMG_0332", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6394286_6973ed9327_o.jpg", "secret": "6973ed9327", "media": "photo", "latitude": "0", "id": "6394286", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:14:15", "license": "4", "title": "IMG_0333", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6394315_51a6cba2bc_o.jpg", "secret": "51a6cba2bc", "media": "photo", "latitude": "0", "id": "6394315", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:14:29", "license": "4", "title": "IMG_0334", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6394370_dc0aa0f9d3_o.jpg", "secret": "dc0aa0f9d3", "media": "photo", "latitude": "0", "id": "6394370", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:15:01", "license": "4", "title": "IMG_0335", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6394376_8ed10a557a_o.jpg", "secret": "8ed10a557a", "media": "photo", "latitude": "0", "id": "6394376", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:15:18", "license": "4", "title": "IMG_0336", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6394396_99aa64001b_o.jpg", "secret": "99aa64001b", "media": "photo", "latitude": "0", "id": "6394396", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:15:34", "license": "4", "title": "IMG_0337", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6394419_0e2bfaecb4_o.jpg", "secret": "0e2bfaecb4", "media": "photo", "latitude": "0", "id": "6394419", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:16:03", "license": "4", "title": "IMG_0338", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6394446_8ae57a4e05_o.jpg", "secret": "8ae57a4e05", "media": "photo", "latitude": "0", "id": "6394446", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:16:17", "license": "4", "title": "IMG_0339", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6394460_a9d124ea8d_o.jpg", "secret": "a9d124ea8d", "media": "photo", "latitude": "0", "id": "6394460", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:21:03", "license": "4", "title": "IMG_0340", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6394478_99da36c22d_o.jpg", "secret": "99da36c22d", "media": "photo", "latitude": "0", "id": "6394478", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:41:10", "license": "4", "title": "IMG_0342", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6394502_4e79c48c62_o.jpg", "secret": "4e79c48c62", "media": "photo", "latitude": "0", "id": "6394502", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:43:57", "license": "4", "title": "IMG_0343", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6394535_6299a1a9b5_o.jpg", "secret": "6299a1a9b5", "media": "photo", "latitude": "0", "id": "6394535", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:44:16", "license": "4", "title": "IMG_0344", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6394587_ffb05cafda_o.jpg", "secret": "ffb05cafda", "media": "photo", "latitude": "0", "id": "6394587", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:44:23", "license": "4", "title": "IMG_0345", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6395286_c441bc1a47_o.jpg", "secret": "c441bc1a47", "media": "photo", "latitude": "0", "id": "6395286", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:46:53", "license": "4", "title": "IMG_0346", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6394635_01ddd54f7d_o.jpg", "secret": "01ddd54f7d", "media": "photo", "latitude": "0", "id": "6394635", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:47:41", "license": "4", "title": "IMG_0347", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6394659_57b49282a9_o.jpg", "secret": "57b49282a9", "media": "photo", "latitude": "0", "id": "6394659", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:48:52", "license": "4", "title": "IMG_0348", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6394681_4e2f063bc4_o.jpg", "secret": "4e2f063bc4", "media": "photo", "latitude": "0", "id": "6394681", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:49:00", "license": "4", "title": "IMG_0349", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6394709_3eaee914e9_o.jpg", "secret": "3eaee914e9", "media": "photo", "latitude": "0", "id": "6394709", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:49:08", "license": "4", "title": "IMG_0350", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6394721_1fc582fe7c_o.jpg", "secret": "1fc582fe7c", "media": "photo", "latitude": "0", "id": "6394721", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:53:22", "license": "4", "title": "IMG_0351", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6394735_68c390ac17_o.jpg", "secret": "68c390ac17", "media": "photo", "latitude": "0", "id": "6394735", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:54:14", "license": "4", "title": "IMG_0353", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6394766_ae8766f163_o.jpg", "secret": "ae8766f163", "media": "photo", "latitude": "0", "id": "6394766", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:54:34", "license": "4", "title": "IMG_0354", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6394777_845130630b_o.jpg", "secret": "845130630b", "media": "photo", "latitude": "0", "id": "6394777", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:55:10", "license": "4", "title": "IMG_0355", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6394792_3b5d567fa7_o.jpg", "secret": "3b5d567fa7", "media": "photo", "latitude": "0", "id": "6394792", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-11 23:57:02", "license": "4", "title": "IMG_0356", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6394816_6f015b723b_o.jpg", "secret": "6f015b723b", "media": "photo", "latitude": "0", "id": "6394816", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-12 00:00:40", "license": "4", "title": "IMG_0357", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6394829_a35665b574_o.jpg", "secret": "a35665b574", "media": "photo", "latitude": "0", "id": "6394829", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-12 00:15:45", "license": "4", "title": "IMG_0358", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6394842_b0ae27ca0d_o.jpg", "secret": "b0ae27ca0d", "media": "photo", "latitude": "0", "id": "6394842", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-12 00:16:59", "license": "4", "title": "The unofficial secret guest", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6394852_5c531162c9_o.jpg", "secret": "5c531162c9", "media": "photo", "latitude": "0", "id": "6394852", "tags": "jesse goingaway party eugene oregon snail"}, {"datetaken": "2005-03-12 00:22:59", "license": "4", "title": "IMG_0360", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6394873_184e870591_o.jpg", "secret": "184e870591", "media": "photo", "latitude": "0", "id": "6394873", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-03-12 00:23:23", "license": "4", "title": "IMG_0361", "text": "", "album_id": "159626", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6394885_1c62a21a12_o.jpg", "secret": "1c62a21a12", "media": "photo", "latitude": "0", "id": "6394885", "tags": "jesse goingaway party eugene oregon"}, {"datetaken": "2005-07-24 16:09:27", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28260465_eddfa5b2ea_o.jpg", "secret": "eddfa5b2ea", "media": "photo", "latitude": "0", "id": "28260465", "tags": "juliagetzel amygerstein"}, {"datetaken": "2005-07-24 16:10:06", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28260689_2ad12472d9_o.jpg", "secret": "2ad12472d9", "media": "photo", "latitude": "0", "id": "28260689", "tags": "juliagetzel amygerstein"}, {"datetaken": "2005-07-24 16:10:10", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28260741_09b80b903d_o.jpg", "secret": "09b80b903d", "media": "photo", "latitude": "0", "id": "28260741", "tags": "angelaperkins"}, {"datetaken": "2005-07-24 16:10:15", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28260782_c62e82653a_o.jpg", "secret": "c62e82653a", "media": "photo", "latitude": "0", "id": "28260782", "tags": "juliagetzel amygerstein"}, {"datetaken": "2005-07-24 16:10:19", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28260816_136b531a68_o.jpg", "secret": "136b531a68", "media": "photo", "latitude": "0", "id": "28260816", "tags": "juliagetzel amygerstein"}, {"datetaken": "2005-07-24 16:10:24", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28260842_ad5a00b92f_o.jpg", "secret": "ad5a00b92f", "media": "photo", "latitude": "0", "id": "28260842", "tags": "juliagetzel amygerstein"}, {"datetaken": "2005-07-24 16:10:32", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28260899_32bdd310eb_o.jpg", "secret": "32bdd310eb", "media": "photo", "latitude": "0", "id": "28260899", "tags": "markannato amygerstein"}, {"datetaken": "2005-07-24 16:10:37", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28260929_7d179fbe68_o.jpg", "secret": "7d179fbe68", "media": "photo", "latitude": "0", "id": "28260929", "tags": "juliagetzel amygerstein angelaperkins markannato"}, {"datetaken": "2005-07-24 16:10:47", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28261010_15f6a0e212_o.jpg", "secret": "15f6a0e212", "media": "photo", "latitude": "0", "id": "28261010", "tags": "juliagetzel amygerstein angelaperkins markannato"}, {"datetaken": "2005-07-24 16:10:56", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28261064_cbc23868bd_o.jpg", "secret": "cbc23868bd", "media": "photo", "latitude": "0", "id": "28261064", "tags": "juliagetzel"}, {"datetaken": "2005-07-24 16:11:00", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28261084_322843bec0_o.jpg", "secret": "322843bec0", "media": "photo", "latitude": "0", "id": "28261084", "tags": ""}, {"datetaken": "2005-07-24 16:11:04", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28261104_784e21f216_o.jpg", "secret": "784e21f216", "media": "photo", "latitude": "0", "id": "28261104", "tags": "markannato"}, {"datetaken": "2005-07-24 16:11:06", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28261115_4611f444a4_o.jpg", "secret": "4611f444a4", "media": "photo", "latitude": "0", "id": "28261115", "tags": ""}, {"datetaken": "2005-07-24 16:11:10", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28261137_cb84b95a08_o.jpg", "secret": "cb84b95a08", "media": "photo", "latitude": "0", "id": "28261137", "tags": "juiagetzel"}, {"datetaken": "2005-07-24 16:11:13", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28261159_a94b8ea236_o.jpg", "secret": "a94b8ea236", "media": "photo", "latitude": "0", "id": "28261159", "tags": "amygerstein"}, {"datetaken": "2005-07-24 16:11:17", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28261178_80fffa416a_o.jpg", "secret": "80fffa416a", "media": "photo", "latitude": "0", "id": "28261178", "tags": "angelaperkins"}, {"datetaken": "2005-07-24 16:11:22", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28261200_7d93fbca14_o.jpg", "secret": "7d93fbca14", "media": "photo", "latitude": "0", "id": "28261200", "tags": "angelaperkins markannato"}, {"datetaken": "2005-07-24 16:11:26", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28261224_4976097685_o.jpg", "secret": "4976097685", "media": "photo", "latitude": "0", "id": "28261224", "tags": ""}, {"datetaken": "2005-07-24 16:11:30", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28261247_1e70bc0a63_o.jpg", "secret": "1e70bc0a63", "media": "photo", "latitude": "0", "id": "28261247", "tags": "markannato"}, {"datetaken": "2005-07-24 16:11:35", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28261276_21c55f41b9_o.jpg", "secret": "21c55f41b9", "media": "photo", "latitude": "0", "id": "28261276", "tags": "markannato"}, {"datetaken": "2005-07-24 16:11:39", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28261303_09e76cce43_o.jpg", "secret": "09e76cce43", "media": "photo", "latitude": "0", "id": "28261303", "tags": ""}, {"datetaken": "2005-07-24 16:11:43", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28261317_a9999c4434_o.jpg", "secret": "a9999c4434", "media": "photo", "latitude": "0", "id": "28261317", "tags": "juliagetzel"}, {"datetaken": "2005-07-24 16:11:47", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28261336_140d95b762_o.jpg", "secret": "140d95b762", "media": "photo", "latitude": "0", "id": "28261336", "tags": "anderspearson"}, {"datetaken": "2005-07-24 16:11:51", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28261354_4a19bf449a_o.jpg", "secret": "4a19bf449a", "media": "photo", "latitude": "0", "id": "28261354", "tags": "angelaperkins"}, {"datetaken": "2005-07-24 16:11:55", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28261367_700551cafb_o.jpg", "secret": "700551cafb", "media": "photo", "latitude": "0", "id": "28261367", "tags": "angelaperkins markannato"}, {"datetaken": "2005-07-24 16:12:00", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28261401_02b268bd84_o.jpg", "secret": "02b268bd84", "media": "photo", "latitude": "0", "id": "28261401", "tags": "angelaperkins"}, {"datetaken": "2005-07-24 16:12:05", "license": "5", "title": "Angela's Going Away Party", "text": "", "album_id": "638064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28261439_b6cf8769e5_o.jpg", "secret": "b6cf8769e5", "media": "photo", "latitude": "0", "id": "28261439", "tags": "angelaperkins markannato"}, {"datetaken": "2010-07-04 19:24:39", "license": "5", "title": "4th of July at Kirk's", "text": "", "album_id": "72157624451310233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4825591889_06065f5242_o.jpg", "secret": "231a1a480f", "media": "photo", "latitude": "0", "id": "4825591889", "tags": "party kirk"}, {"datetaken": "2010-07-04 20:47:47", "license": "5", "title": "4th of July at Kirk's", "text": "", "album_id": "72157624451310233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4825597605_8417787254_o.jpg", "secret": "9b46be108d", "media": "photo", "latitude": "0", "id": "4825597605", "tags": "party fireworks kirk"}, {"datetaken": "2010-07-04 21:14:45", "license": "5", "title": "4th of July at Kirk's", "text": "", "album_id": "72157624451310233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4826207288_cf1abf9784_o.jpg", "secret": "0984a756af", "media": "photo", "latitude": "0", "id": "4826207288", "tags": "party fireworks kirk"}, {"datetaken": "2010-07-04 21:14:59", "license": "5", "title": "4th of July at Kirk's", "text": "", "album_id": "72157624451310233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4826208280_1eb459227a_o.jpg", "secret": "058b59372c", "media": "photo", "latitude": "0", "id": "4826208280", "tags": "party fireworks kirk"}, {"datetaken": "2010-07-04 21:15:42", "license": "5", "title": "4th of July at Kirk's", "text": "", "album_id": "72157624451310233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4826208856_b16d4c93a9_o.jpg", "secret": "f3c1504a5c", "media": "photo", "latitude": "0", "id": "4826208856", "tags": "party fireworks kirk"}, {"datetaken": "2010-07-04 21:17:20", "license": "5", "title": "4th of July at Kirk's", "text": "", "album_id": "72157624451310233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4118/4826209416_e9739f8f6c_o.jpg", "secret": "439c488da7", "media": "photo", "latitude": "0", "id": "4826209416", "tags": "party fireworks kirk"}, {"datetaken": "2010-07-04 21:19:22", "license": "5", "title": "4th of July at Kirk's", "text": "", "album_id": "72157624451310233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4826209784_2fd2d289bb_o.jpg", "secret": "17d81107f7", "media": "photo", "latitude": "0", "id": "4826209784", "tags": "party fireworks kirk"}, {"datetaken": "2010-07-04 21:23:11", "license": "5", "title": "4th of July at Kirk's", "text": "", "album_id": "72157624451310233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4826210376_9377083679_o.jpg", "secret": "9fbee4c5de", "media": "photo", "latitude": "0", "id": "4826210376", "tags": "party fireworks kirk"}, {"datetaken": "2010-07-04 21:25:13", "license": "5", "title": "4th of July at Kirk's", "text": "", "album_id": "72157624451310233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4825602099_401fe9cc15_o.jpg", "secret": "382ebc03e7", "media": "photo", "latitude": "0", "id": "4825602099", "tags": "party fireworks kirk"}, {"datetaken": "2010-07-04 21:29:45", "license": "5", "title": "4th of July at Kirk's", "text": "", "album_id": "72157624451310233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4826211320_ee6ed2b8a3_o.jpg", "secret": "c239e5ef80", "media": "photo", "latitude": "0", "id": "4826211320", "tags": "party fireworks kirk"}, {"datetaken": "2010-07-04 21:31:00", "license": "5", "title": "4th of July at Kirk's", "text": "", "album_id": "72157624451310233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4826212254_a2bb93734b_o.jpg", "secret": "cfb233f924", "media": "photo", "latitude": "0", "id": "4826212254", "tags": "party fireworks kirk"}, {"datetaken": "2010-07-04 21:32:52", "license": "5", "title": "4th of July at Kirk's", "text": "", "album_id": "72157624451310233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4826212628_2ffb96621d_o.jpg", "secret": "6c08dda172", "media": "photo", "latitude": "0", "id": "4826212628", "tags": "party fireworks kirk"}, {"datetaken": "2010-08-19 18:37:57", "license": "1", "title": "P1320620", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4928683392_90c9f6fb83_o.jpg", "secret": "d907713a7f", "media": "photo", "latitude": "0", "id": "4928683392", "tags": "trip signs wisconsin freeway interstate"}, {"datetaken": "2010-08-19 18:47:28", "license": "1", "title": "P1320622", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4928683940_272d06e04a_o.jpg", "secret": "91c5793a90", "media": "photo", "latitude": "0", "id": "4928683940", "tags": "trip signs wisconsin freeway interstate"}, {"datetaken": "2010-08-19 19:05:41", "license": "1", "title": "P1320623", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4928089463_2881bd834a_o.jpg", "secret": "444b7e5321", "media": "photo", "latitude": "0", "id": "4928089463", "tags": "trip signs wisconsin freeway interstate"}, {"datetaken": "2010-08-19 19:49:45", "license": "1", "title": "P1320631", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4928685152_90bcae7bb3_o.jpg", "secret": "806caeeaf1", "media": "photo", "latitude": "0", "id": "4928685152", "tags": "trip friends party wisconsin coworkers janesville"}, {"datetaken": "2010-08-19 19:50:20", "license": "1", "title": "P1320632", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4928091435_25e13957ac_o.jpg", "secret": "44a2d26117", "media": "photo", "latitude": "0", "id": "4928091435", "tags": "trip friends party wisconsin coworkers janesville"}, {"datetaken": "2010-08-19 19:51:41", "license": "1", "title": "P1320634", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4928092429_59a568a134_o.jpg", "secret": "fd8ca65a58", "media": "photo", "latitude": "0", "id": "4928092429", "tags": "trip friends party wisconsin coworkers janesville"}, {"datetaken": "2010-08-19 20:35:38", "license": "1", "title": "P1320638", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4928093329_f4d1d05651_o.jpg", "secret": "5e33b23c96", "media": "photo", "latitude": "0", "id": "4928093329", "tags": "trip friends party wisconsin coworkers janesville"}, {"datetaken": "2010-08-19 20:35:45", "license": "1", "title": "P1320639", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4928094209_3e47b75ca5_o.jpg", "secret": "f4bcd30421", "media": "photo", "latitude": "0", "id": "4928094209", "tags": "trip friends party wisconsin coworkers janesville"}, {"datetaken": "2010-08-20 09:32:49", "license": "1", "title": "P1320641", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4928095097_e802886bc3_o.jpg", "secret": "29d33228eb", "media": "photo", "latitude": "0", "id": "4928095097", "tags": "trip wisconsin moving friend apartment janesville"}, {"datetaken": "2010-08-20 09:32:53", "license": "1", "title": "P1320642", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4928690796_d0bb815df6_o.jpg", "secret": "0c3b3a3844", "media": "photo", "latitude": "0", "id": "4928690796", "tags": "trip wisconsin moving friend apartment janesville"}, {"datetaken": "2010-08-20 09:33:01", "license": "1", "title": "P1320643", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4928691642_a5a141deb3_o.jpg", "secret": "d6abc132c2", "media": "photo", "latitude": "0", "id": "4928691642", "tags": "trip wisconsin moving friend apartment janesville"}, {"datetaken": "2010-08-20 09:33:05", "license": "1", "title": "P1320644", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4928097809_c521cac733_o.jpg", "secret": "0e2a017a3f", "media": "photo", "latitude": "0", "id": "4928097809", "tags": "trip wisconsin moving friend apartment janesville"}, {"datetaken": "2010-08-20 10:16:44", "license": "1", "title": "P1320645", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4928693392_1939abc630_o.jpg", "secret": "95b6b84a55", "media": "photo", "latitude": "0", "id": "4928693392", "tags": "trip wisconsin moving friend apartment janesville"}, {"datetaken": "2010-08-20 11:03:19", "license": "1", "title": "P1320646", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4928099415_62cf761bfd_o.jpg", "secret": "948c37348b", "media": "photo", "latitude": "0", "id": "4928099415", "tags": "trip wisconsin downtown janesville"}, {"datetaken": "2010-08-20 11:03:50", "license": "1", "title": "P1320647", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4928100157_c755553a01_o.jpg", "secret": "aa99900ec1", "media": "photo", "latitude": "0", "id": "4928100157", "tags": "trip wisconsin downtown janesville"}, {"datetaken": "2010-08-20 11:07:26", "license": "1", "title": "P1320648", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4928695582_0b19071053_o.jpg", "secret": "a46fd0448b", "media": "photo", "latitude": "0", "id": "4928695582", "tags": "trip house wisconsin former residence janesville"}, {"datetaken": "2010-08-20 11:10:56", "license": "1", "title": "P1320650", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4928696688_23bd9816e8_o.jpg", "secret": "b85afeae9f", "media": "photo", "latitude": "0", "id": "4928696688", "tags": "trip house wisconsin former residence janesville"}, {"datetaken": "2010-08-20 11:11:07", "license": "1", "title": "P1320651", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4928103347_8c609623be_o.jpg", "secret": "1d44affb2c", "media": "photo", "latitude": "0", "id": "4928103347", "tags": "trip house wisconsin former residence janesville"}, {"datetaken": "2010-08-20 11:11:12", "license": "1", "title": "P1320652", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4928104595_509d946004_o.jpg", "secret": "dd191a7f8f", "media": "photo", "latitude": "0", "id": "4928104595", "tags": "trip house wisconsin former residence janesville"}, {"datetaken": "2010-08-20 11:11:32", "license": "1", "title": "P1320653", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4928106039_d5ab0db24f_o.jpg", "secret": "a1e7d4241c", "media": "photo", "latitude": "0", "id": "4928106039", "tags": "trip house wisconsin former residence janesville"}, {"datetaken": "2010-08-20 13:10:09", "license": "1", "title": "P1320654", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4928106545_4ffcec28bb_o.jpg", "secret": "a84d2935eb", "media": "photo", "latitude": "0", "id": "4928106545", "tags": "trip sign wisconsin highway beltline"}, {"datetaken": "2010-08-20 15:33:13", "license": "1", "title": "P1320658", "text": "", "album_id": "72157624685271305", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4928701478_a2e0f52371_o.jpg", "secret": "d57f606858", "media": "photo", "latitude": "0", "id": "4928701478", "tags": "trip sign wisconsin highway"}, {"datetaken": "2007-05-25 21:48:54", "license": "1", "title": "Mac", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/203/516398313_b90e803335_o.jpg", "secret": "1cdeeaad54", "media": "photo", "latitude": "0", "id": "516398313", "tags": "family friends party byebye goingaway macncheese cuestapark mandajuice genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-25 21:49:34", "license": "1", "title": "'n cheese", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/197/516398371_58aca86a67_o.jpg", "secret": "465588cf82", "media": "photo", "latitude": "0", "id": "516398371", "tags": "family friends party byebye goingaway macncheese cuestapark mandajuice genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-26 01:44:08", "license": "1", "title": "First of many shots taken of my glaring white bra straps", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/222/516372984_72e8947beb_o.jpg", "secret": "909e3e12a8", "media": "photo", "latitude": "0", "id": "516372984", "tags": "family friends party byebye goingaway cuestapark mandajuice genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-26 01:44:20", "license": "1", "title": "Me and G", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/229/516398433_f65106ed0d_o.jpg", "secret": "a754d705ca", "media": "photo", "latitude": "0", "id": "516398433", "tags": "family friends party byebye goingaway cuestapark mandajuice genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-26 01:45:10", "license": "1", "title": "My mom helped SOOO much", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/237/516373090_c3a71d27ba_o.jpg", "secret": "02cf80a0c0", "media": "photo", "latitude": "0", "id": "516373090", "tags": "family friends party byebye goingaway cuestapark mandajuice regulargrandma genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-26 01:45:18", "license": "1", "title": "Me and Genoa", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/233/516398515_e145dd6c6e_o.jpg", "secret": "7069d9c90d", "media": "photo", "latitude": "0", "id": "516398515", "tags": "genoa mandajuice party goingaway genoasfirstbirthday family friends byebye cuestapark timetostartpackingnow"}, {"datetaken": "2007-05-26 01:45:30", "license": "1", "title": "I'm pretty sure he's thinking about how he might use it as a weapon", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/202/516373164_6f3fd6358a_o.jpg", "secret": "320e611bb3", "media": "photo", "latitude": "0", "id": "516373164", "tags": "family friends party alex byebye goingaway cuestapark mandajuice genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-26 01:48:31", "license": "1", "title": "LGJeff blew up the baby pool", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/212/516373196_a1c5c41d20_o.jpg", "secret": "5af7ec7c64", "media": "photo", "latitude": "0", "id": "516373196", "tags": "family friends party byebye goingaway cuestapark mandajuice lgjeff genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-26 01:54:23", "license": "1", "title": "Alex and his regular grandma", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/248/516398697_1c91f2dc50_o.jpg", "secret": "0da302c8b7", "media": "photo", "latitude": "0", "id": "516398697", "tags": "family friends party alex byebye goingaway cuestapark mandajuice regulargrandma genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-26 02:06:06", "license": "1", "title": "LG Jeff gets the [bubble] party going", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/516398737_ba01ca855b_o.jpg", "secret": "49bcf9cc38", "media": "photo", "latitude": "0", "id": "516398737", "tags": "family friends party byebye goingaway cuestapark lgjeff genoasfirstbirthday timetostartpackingnow bubblemachinemandajuice"}, {"datetaken": "2007-05-26 02:15:08", "license": "1", "title": "Giant bubble tries to attack baby", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/234/516373368_b3375f63d9_o.jpg", "secret": "463640c537", "media": "photo", "latitude": "0", "id": "516373368", "tags": "family friends party bubbles genoa byebye goingaway cuestapark mandajuice genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-26 02:15:59", "license": "1", "title": "Bubble mania", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/516373418_b7c673b56a_o.jpg", "secret": "94eb11343c", "media": "photo", "latitude": "0", "id": "516373418", "tags": "family friends party alex bubbles byebye goingaway cuestapark mandajuice genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-26 02:16:46", "license": "1", "title": "Bubbles", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/209/516398945_b8b2b04cbc_o.jpg", "secret": "3dd55ca6a5", "media": "photo", "latitude": "0", "id": "516398945", "tags": "family friends party alex bubbles byebye goingaway cuestapark mandajuice genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-26 02:21:30", "license": "1", "title": "Dirty baby", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/213/516399007_ccca15d1c0_o.jpg", "secret": "6156a574b6", "media": "photo", "latitude": "0", "id": "516399007", "tags": "family friends party genoa byebye goingaway dirtybaby cuestapark mandajuice genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-26 02:21:43", "license": "1", "title": "Dirty girl!", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/222/516373596_6b65878b93_o.jpg", "secret": "877e42a33d", "media": "photo", "latitude": "0", "id": "516373596", "tags": "family friends party byebye goingaway cuestapark mandajuice genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-26 02:27:12", "license": "1", "title": "Chick beer", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/240/516373660_54b2183ec0_o.jpg", "secret": "ab3ebe65d2", "media": "photo", "latitude": "0", "id": "516373660", "tags": "family friends party byebye goingaway cuestapark mandajuice genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-26 02:27:19", "license": "1", "title": "Beer", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/516399183_b764f5b966_o.jpg", "secret": "2f0dbcd853", "media": "photo", "latitude": "0", "id": "516399183", "tags": "family friends party beer byebye goingaway cuestapark mandajuice genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-26 02:44:10", "license": "1", "title": "Looking suspicious", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/196/516399247_28d332123a_o.jpg", "secret": "a0a358ede1", "media": "photo", "latitude": "0", "id": "516399247", "tags": "family friends party alex byebye goingaway cuestapark mandajuice genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-26 02:53:23", "license": "1", "title": "More men being men", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/232/516373828_903ccf7f01_o.jpg", "secret": "2e204f8e31", "media": "photo", "latitude": "0", "id": "516373828", "tags": "family friends party dave byebye goingaway mydad cuestapark mandajuice genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-26 02:53:26", "license": "1", "title": "Men being men", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/224/516399375_c739ce942d_o.jpg", "secret": "d1456d089f", "media": "photo", "latitude": "0", "id": "516399375", "tags": "family friends party dave byebye goingaway mydad cuestapark mandajuice genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2007-05-26 02:54:07", "license": "1", "title": "Play dough table was a rip roaring success", "text": "", "album_id": "72157600272663173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/254/516399421_a6c55cfc37_o.jpg", "secret": "ef56f594d2", "media": "photo", "latitude": "0", "id": "516399421", "tags": "family friends party play dough byebye goingaway cuestapark mandajuice genoasfirstbirthday timetostartpackingnow"}, {"datetaken": "2010-05-30 00:00:17", "license": "1", "title": "100_7787", "text": "", "album_id": "72157624051098317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4656668429_7634c8128c_o.jpg", "secret": "eb1ac506d5", "media": "photo", "latitude": "0", "id": "4656668429", "tags": "goddard saxbys fedora13releaseparty"}, {"datetaken": "2010-05-30 00:06:25", "license": "1", "title": "100_7790", "text": "", "album_id": "72157624051098317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4656667913_38d7a7cf5d_o.jpg", "secret": "ef85a2bc22", "media": "photo", "latitude": "0", "id": "4656667913", "tags": "goddard saxbys fedora13releaseparty"}, {"datetaken": "2010-05-30 00:39:00", "license": "1", "title": "100_7792", "text": "", "album_id": "72157624051098317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4657289986_d75b075051_o.jpg", "secret": "8405e66b1f", "media": "photo", "latitude": "0", "id": "4657289986", "tags": "goddard saxbys fedora13releaseparty"}, {"datetaken": "2010-05-30 00:52:09", "license": "1", "title": "100_7794", "text": "", "album_id": "72157624051098317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4656667523_bf0db65422_o.jpg", "secret": "3def8f3659", "media": "photo", "latitude": "0", "id": "4656667523", "tags": "goddard saxbys fedora13releaseparty"}, {"datetaken": "2010-05-30 00:52:15", "license": "1", "title": "100_7795", "text": "", "album_id": "72157624051098317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4657288806_bdabe59787_o.jpg", "secret": "d6924b421e", "media": "photo", "latitude": "0", "id": "4657288806", "tags": "goddard saxbys fedora13releaseparty"}, {"datetaken": "2010-05-30 00:52:25", "license": "1", "title": "100_7796", "text": "", "album_id": "72157624051098317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4656667765_f445b905a8_o.jpg", "secret": "8bb15a9c00", "media": "photo", "latitude": "0", "id": "4656667765", "tags": "goddard saxbys fedora13releaseparty"}, {"datetaken": "2010-05-30 00:52:32", "license": "1", "title": "100_7797", "text": "", "album_id": "72157624051098317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4656667643_d4015f4204_o.jpg", "secret": "60bd333484", "media": "photo", "latitude": "0", "id": "4656667643", "tags": "goddard saxbys fedora13releaseparty"}, {"datetaken": "2010-05-30 00:52:56", "license": "1", "title": "100_7798", "text": "", "album_id": "72157624051098317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4656668175_470220f34d_o.jpg", "secret": "6404b5411f", "media": "photo", "latitude": "0", "id": "4656668175", "tags": "goddard saxbys fedora13releaseparty"}, {"datetaken": "2010-05-30 00:53:50", "license": "1", "title": "F13 cupcakes", "text": "", "album_id": "72157624051098317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4657288522_c5419be49b_o.jpg", "secret": "c8ab5f44b0", "media": "photo", "latitude": "0", "id": "4657288522", "tags": "goddard saxbys fedora13releaseparty"}, {"datetaken": "2010-05-30 01:02:02", "license": "1", "title": "100_7799", "text": "", "album_id": "72157624051098317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4656668623_2c694a3074_o.jpg", "secret": "ec9647bd69", "media": "photo", "latitude": "0", "id": "4656668623", "tags": "goddard saxbys fedora13releaseparty"}, {"datetaken": "2010-05-30 01:29:47", "license": "1", "title": "100_7801", "text": "", "album_id": "72157624051098317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4656667153_855da24ce9_o.jpg", "secret": "17c84d3426", "media": "photo", "latitude": "0", "id": "4656667153", "tags": "goddard saxbys fedora13releaseparty"}, {"datetaken": "2010-05-30 01:48:31", "license": "1", "title": "100_7803", "text": "", "album_id": "72157624051098317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4656667363_3ffe24baf1_o.jpg", "secret": "d12fea3a3f", "media": "photo", "latitude": "0", "id": "4656667363", "tags": "goddard saxbys fedora13releaseparty"}, {"datetaken": "2005-08-27 13:59:21", "license": "1", "title": "TheBeginningsOfAFlip", "text": "", "album_id": "846237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/38106672_a37ea61547_o.jpg", "secret": "a37ea61547", "media": "photo", "latitude": "0", "id": "38106672", "tags": "kyleandcynthiasgoingawayparty lukecannon cedarcreeklake"}, {"datetaken": "2005-08-27 14:09:31", "license": "1", "title": "DiveDive", "text": "", "album_id": "846237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/38106810_b0ba747996_o.jpg", "secret": "b0ba747996", "media": "photo", "latitude": "0", "id": "38106810", "tags": "kyleandcynthiasgoingawayparty lukecannon cedarcreeklake"}, {"datetaken": "2005-08-27 14:09:43", "license": "1", "title": "WaterTinkerbell", "text": "", "album_id": "846237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/38106929_17dee90461_o.jpg", "secret": "17dee90461", "media": "photo", "latitude": "0", "id": "38106929", "tags": "kyleandcynthiasgoingawayparty cynthia cedarcreeklake"}, {"datetaken": "2005-08-27 14:09:50", "license": "1", "title": "WaterFairies", "text": "", "album_id": "846237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/38107073_f9f25284b1_o.jpg", "secret": "f9f25284b1", "media": "photo", "latitude": "0", "id": "38107073", "tags": "kyleandcynthiasgoingawayparty cynthia cedarcreeklake amyharris"}, {"datetaken": "2005-08-27 14:10:06", "license": "1", "title": "SoManyFloatsSoLittleTime", "text": "", "album_id": "846237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/38107216_8eaa6b3db3_o.jpg", "secret": "8eaa6b3db3", "media": "photo", "latitude": "0", "id": "38107216", "tags": "kyleandcynthiasgoingawayparty lukecannon cynthia cedarcreeklake amyharris"}, {"datetaken": "2005-08-27 14:10:21", "license": "1", "title": "GiveMeTheNoodle", "text": "", "album_id": "846237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/38107356_fa8cfdfc01_o.jpg", "secret": "fa8cfdfc01", "media": "photo", "latitude": "0", "id": "38107356", "tags": "kyleandcynthiasgoingawayparty lukecannon cedarcreeklake amyharris"}, {"datetaken": "2005-08-27 14:10:46", "license": "1", "title": "SlowlyButSurely", "text": "", "album_id": "846237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/38107490_77f3172c9b_o.jpg", "secret": "77f3172c9b", "media": "photo", "latitude": "0", "id": "38107490", "tags": "kyleandcynthiasgoingawayparty phil carol cedarcreeklake"}, {"datetaken": "2005-08-27 14:11:24", "license": "1", "title": "MarcoPolo", "text": "", "album_id": "846237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/38107600_e5ed36f64d_o.jpg", "secret": "e5ed36f64d", "media": "photo", "latitude": "0", "id": "38107600", "tags": "kyleandcynthiasgoingawayparty lukecannon cynthia cedarcreeklake amyharris"}, {"datetaken": "2005-08-27 14:12:39", "license": "1", "title": "CynthiaFromAbove", "text": "", "album_id": "846237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/38107886_3bb2deccac_o.jpg", "secret": "3bb2deccac", "media": "photo", "latitude": "0", "id": "38107886", "tags": "kyleandcynthiasgoingawayparty cynthia cedarcreeklake"}, {"datetaken": "2005-08-27 14:12:45", "license": "1", "title": "CarolSwimsLikeAFrog", "text": "", "album_id": "846237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/38108003_cc9dcd15c0_o.jpg", "secret": "cc9dcd15c0", "media": "photo", "latitude": "0", "id": "38108003", "tags": "kyleandcynthiasgoingawayparty carol cedarcreeklake"}, {"datetaken": "2005-08-27 14:12:54", "license": "1", "title": "PhilHasTwoNoodles", "text": "", "album_id": "846237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/38108103_24f72d1268_o.jpg", "secret": "24f72d1268", "media": "photo", "latitude": "0", "id": "38108103", "tags": "kyleandcynthiasgoingawayparty phil cedarcreeklake"}, {"datetaken": "2005-08-27 14:18:10", "license": "1", "title": "LukeIsAFloater", "text": "", "album_id": "846237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/38108188_651e41e183_o.jpg", "secret": "651e41e183", "media": "photo", "latitude": "0", "id": "38108188", "tags": "kyleandcynthiasgoingawayparty lukecannon cedarcreeklake"}, {"datetaken": "2005-08-27 14:21:22", "license": "1", "title": "HeRulesWithAnIronNoodle", "text": "", "album_id": "846237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/38108792_c76b3a41f7_o.jpg", "secret": "c76b3a41f7", "media": "photo", "latitude": "0", "id": "38108792", "tags": "kyleandcynthiasgoingawayparty lukecannon cedarcreeklake amyharris"}, {"datetaken": "2005-08-27 14:21:25", "license": "1", "title": "AmyDefendsHerself", "text": "", "album_id": "846237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/38108869_4ab08d2217_o.jpg", "secret": "4ab08d2217", "media": "photo", "latitude": "0", "id": "38108869", "tags": "kyleandcynthiasgoingawayparty lukecannon cedarcreeklake amyharris"}, {"datetaken": "2005-08-27 14:21:29", "license": "1", "title": "LukeWithNoodle", "text": "", "album_id": "846237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/38108965_5e1b995e13_o.jpg", "secret": "5e1b995e13", "media": "photo", "latitude": "0", "id": "38108965", "tags": "kyleandcynthiasgoingawayparty lukecannon cedarcreeklake"}, {"datetaken": "2005-09-08 18:35:56", "license": "3", "title": "Buckaroo pool hall", "text": "", "album_id": "981650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/44908327_a5986b34f7_o.jpg", "secret": "a5986b34f7", "media": "photo", "latitude": "0", "id": "44908327", "tags": "amysparty friends buckaroo"}, {"datetaken": "2005-09-08 18:37:01", "license": "3", "title": "Roxy, Amy, and Rhea", "text": "", "album_id": "981650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/44908692_2d8948e840_o.jpg", "secret": "2d8948e840", "media": "photo", "latitude": "0", "id": "44908692", "tags": "amysparty friends buckaroo"}, {"datetaken": "2005-09-08 18:39:04", "license": "3", "title": "caroline lines up a shot", "text": "", "album_id": "981650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/44908959_590b992239_o.jpg", "secret": "590b992239", "media": "photo", "latitude": "0", "id": "44908959", "tags": "amysparty friends buckaroo"}, {"datetaken": "2005-09-08 19:03:17", "license": "3", "title": "No diving in the pool!", "text": "", "album_id": "981650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44909283_da47812940_o.jpg", "secret": "da47812940", "media": "photo", "latitude": "0", "id": "44909283", "tags": "amysparty friends buckaroo"}, {"datetaken": "2005-09-08 19:06:54", "license": "3", "title": "Tony explains", "text": "", "album_id": "981650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44909609_fda3956e4a_o.jpg", "secret": "fda3956e4a", "media": "photo", "latitude": "0", "id": "44909609", "tags": "amysparty friends buckaroo"}, {"datetaken": "2005-09-08 19:13:31", "license": "3", "title": "Dorito dance", "text": "", "album_id": "981650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/44909832_b6e76ac1fb_o.jpg", "secret": "b6e76ac1fb", "media": "photo", "latitude": "0", "id": "44909832", "tags": "amysparty friends buckaroo"}, {"datetaken": "2005-09-08 20:38:40", "license": "3", "title": "Dueling photographers", "text": "", "album_id": "981650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/44910176_b00f51d130_o.jpg", "secret": "b00f51d130", "media": "photo", "latitude": "0", "id": "44910176", "tags": "amysparty friends buckaroo"}, {"datetaken": "2005-09-08 20:52:19", "license": "3", "title": "Dave + Cheez Whiz", "text": "", "album_id": "981650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/44910451_162d0131e6_o.jpg", "secret": "162d0131e6", "media": "photo", "latitude": "0", "id": "44910451", "tags": "amysparty friends buckaroo"}, {"datetaken": "2005-09-08 21:22:17", "license": "3", "title": "Amy's new look", "text": "", "album_id": "981650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/44910726_be9e0307e2_o.jpg", "secret": "be9e0307e2", "media": "photo", "latitude": "0", "id": "44910726", "tags": "amysparty friends buckaroo"}, {"datetaken": "2005-09-08 21:26:33", "license": "3", "title": "rare moustachioed seattle bird", "text": "", "album_id": "981650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/44911123_f411b18d6f_o.jpg", "secret": "f411b18d6f", "media": "photo", "latitude": "0", "id": "44911123", "tags": "amysparty friends buckaroo"}, {"datetaken": "2005-09-08 21:29:37", "license": "3", "title": "Throw the Goat!", "text": "", "album_id": "981650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/44911411_43f1dc351c_o.jpg", "secret": "43f1dc351c", "media": "photo", "latitude": "0", "id": "44911411", "tags": "amysparty friends buckaroo"}, {"datetaken": "2005-11-15 11:45:43", "license": "1", "title": "Stylin'", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/64051461_6b6b7fca36_o.jpg", "secret": "6b6b7fca36", "media": "photo", "latitude": "0", "id": "64051461", "tags": "ginevra sixapart mailegoingaway"}, {"datetaken": "2005-11-15 11:45:53", "license": "1", "title": "Mie", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/64051486_f8e221d8e5_o.jpg", "secret": "f8e221d8e5", "media": "photo", "latitude": "0", "id": "64051486", "tags": "mie sixapart mailegoingaway"}, {"datetaken": "2005-11-15 11:46:17", "license": "1", "title": "Deb and Eleanor", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/64051511_60bd98ae9c_o.jpg", "secret": "60bd98ae9c", "media": "photo", "latitude": "0", "id": "64051511", "tags": "deb eleanor sixapart mailegoingaway"}, {"datetaken": "2005-11-15 11:51:13", "license": "1", "title": "Her natural state", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/64051523_3ca263415e_o.jpg", "secret": "3ca263415e", "media": "photo", "latitude": "0", "id": "64051523", "tags": "mailegoingaway sixapart maile"}, {"datetaken": "2005-11-15 11:53:56", "license": "1", "title": "Julie", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/64051535_6104783bae_o.jpg", "secret": "6104783bae", "media": "photo", "latitude": "0", "id": "64051535", "tags": "mailegoingaway sixapart julie"}, {"datetaken": "2005-11-15 11:54:05", "license": "1", "title": "Jane", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/64051541_50ff65c204_o.jpg", "secret": "50ff65c204", "media": "photo", "latitude": "0", "id": "64051541", "tags": "mailegoingaway sixapart jane"}, {"datetaken": "2005-11-15 11:57:15", "license": "1", "title": "Ahree", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/64055910_a4cdf8bfaf_o.jpg", "secret": "a4cdf8bfaf", "media": "photo", "latitude": "0", "id": "64055910", "tags": "mailegoingaway sixapart ahree"}, {"datetaken": "2005-11-15 12:23:20", "license": "1", "title": "Maile and Jason", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/64055962_e11aae5ba1_o.jpg", "secret": "e11aae5ba1", "media": "photo", "latitude": "0", "id": "64055962", "tags": "mailegoingaway sixapart maile jason"}, {"datetaken": "2005-11-15 12:26:01", "license": "1", "title": "Maile gestures", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/64055982_d9f80dde41_o.jpg", "secret": "d9f80dde41", "media": "photo", "latitude": "0", "id": "64055982", "tags": "mailegoingaway sixapart maile jason"}, {"datetaken": "2005-11-15 12:26:39", "license": "1", "title": "Anil", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/64056033_3a535988ba_o.jpg", "secret": "3a535988ba", "media": "photo", "latitude": "0", "id": "64056033", "tags": "mailegoingaway sixapart anil"}, {"datetaken": "2005-11-15 12:29:23", "license": "1", "title": "Robin", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/64056052_3370e40347_o.jpg", "secret": "3370e40347", "media": "photo", "latitude": "0", "id": "64056052", "tags": "mailegoingaway sixapart robin"}, {"datetaken": "2005-11-15 12:35:09", "license": "1", "title": "Deb and Mie", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/64056100_6460e0a4bc_o.jpg", "secret": "6460e0a4bc", "media": "photo", "latitude": "0", "id": "64056100", "tags": "mailegoingaway sixapart deb mie"}, {"datetaken": "2005-11-15 12:36:08", "license": "1", "title": "L.Y.L.A.S. K.I.T", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/64056128_42e7690cfd_o.jpg", "secret": "42e7690cfd", "media": "photo", "latitude": "0", "id": "64056128", "tags": "mailegoingaway sixapart maile"}, {"datetaken": "2005-11-15 12:36:10", "license": "1", "title": "A good laugh", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/64056154_52ecfc0cf0_o.jpg", "secret": "52ecfc0cf0", "media": "photo", "latitude": "0", "id": "64056154", "tags": "mailegoingaway sixapart maile"}, {"datetaken": "2005-11-15 14:48:14", "license": "1", "title": "Maile's going away party", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/64058435_de3017da52_o.jpg", "secret": "de3017da52", "media": "photo", "latitude": "0", "id": "64058435", "tags": "sixapart mailegoingaway"}, {"datetaken": "2005-11-15 14:48:15", "license": "1", "title": "Maile's going away party", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/64058450_5bc7c5db81_o.jpg", "secret": "5bc7c5db81", "media": "photo", "latitude": "0", "id": "64058450", "tags": "sixapart mailegoingaway"}, {"datetaken": "2005-11-15 14:48:37", "license": "1", "title": "Maile's going away party", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/64058412_bee0e53af2_o.jpg", "secret": "bee0e53af2", "media": "photo", "latitude": "0", "id": "64058412", "tags": "sixapart mailegoingaway maile"}, {"datetaken": "2005-11-15 14:50:04", "license": "1", "title": "Maile's going away party", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/64058472_a44bb55487_o.jpg", "secret": "a44bb55487", "media": "photo", "latitude": "0", "id": "64058472", "tags": "sixapart mailegoingaway"}, {"datetaken": "2005-11-15 14:52:17", "license": "1", "title": "Maile's going away party", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/64058481_5543957ec3_o.jpg", "secret": "5543957ec3", "media": "photo", "latitude": "0", "id": "64058481", "tags": "sixapart mailegoingaway"}, {"datetaken": "2005-11-15 14:52:24", "license": "1", "title": "Maile's going away party", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/64058498_a4bb161736_o.jpg", "secret": "a4bb161736", "media": "photo", "latitude": "0", "id": "64058498", "tags": "sixapart mailegoingaway"}, {"datetaken": "2005-11-15 14:52:35", "license": "1", "title": "Maile's going away party", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/64058520_153b74dc2b_o.jpg", "secret": "153b74dc2b", "media": "photo", "latitude": "0", "id": "64058520", "tags": "sixapart mailegoingaway"}, {"datetaken": "2005-11-15 14:53:10", "license": "1", "title": "Maile's going away party", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/64058554_974009bffc_o.jpg", "secret": "974009bffc", "media": "photo", "latitude": "0", "id": "64058554", "tags": "sixapart mailegoingaway"}, {"datetaken": "2005-11-15 15:00:45", "license": "1", "title": "Six Apart U.S. - After", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/64026080_a02713f2d8_o.jpg", "secret": "a02713f2d8", "media": "photo", "latitude": "0", "id": "64026080", "tags": "sixapart staff nov2005 mailegoingaway"}, {"datetaken": "2005-11-15 15:01:47", "license": "1", "title": "Six Apart U.S. - After", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/63982980_32bb5395b6_o.jpg", "secret": "32bb5395b6", "media": "photo", "latitude": "0", "id": "63982980", "tags": "staff nov2005 mailegoingaway sixapart"}, {"datetaken": "2005-11-15 15:02:19", "license": "1", "title": "Six Apart U.S. - After", "text": "", "album_id": "1399396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/63982936_d4eac4fc1a_o.jpg", "secret": "d4eac4fc1a", "media": "photo", "latitude": "0", "id": "63982936", "tags": "sixapart staff nov2005 mailegoingaway"}, {"datetaken": "2006-02-20 00:04:41", "license": "2", "title": "IMG_0901.JPG", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/102367779_ab266904d5_o.jpg", "secret": "ab266904d5", "media": "photo", "latitude": "0", "id": "102367779", "tags": "party goingaway"}, {"datetaken": "2006-02-20 00:05:10", "license": "2", "title": "IMG_0904.JPG", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/102368204_e1f6d2c5ee_o.jpg", "secret": "e1f6d2c5ee", "media": "photo", "latitude": "0", "id": "102368204", "tags": "party goingaway"}, {"datetaken": "2006-02-20 00:05:18", "license": "2", "title": "IMG_0905.JPG", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/102368559_02d535ad5f_o.jpg", "secret": "02d535ad5f", "media": "photo", "latitude": "0", "id": "102368559", "tags": "party goingaway"}, {"datetaken": "2006-02-20 00:05:24", "license": "2", "title": "IMG_0906.JPG", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/102368913_285f4cea2d_o.jpg", "secret": "285f4cea2d", "media": "photo", "latitude": "0", "id": "102368913", "tags": "party goingaway"}, {"datetaken": "2006-02-20 00:06:02", "license": "2", "title": "IMG_0909.JPG", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/102369333_2067012efa_o.jpg", "secret": "2067012efa", "media": "photo", "latitude": "0", "id": "102369333", "tags": "party goingaway"}, {"datetaken": "2006-02-20 00:06:12", "license": "2", "title": "IMG_0910.JPG", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/102369832_ddeb8ce9c7_o.jpg", "secret": "ddeb8ce9c7", "media": "photo", "latitude": "0", "id": "102369832", "tags": "party goingaway"}, {"datetaken": "2006-02-20 00:06:46", "license": "2", "title": "IMG_0911.JPG", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/102370255_24feb30e48_o.jpg", "secret": "24feb30e48", "media": "photo", "latitude": "0", "id": "102370255", "tags": "party goingaway"}, {"datetaken": "2006-02-20 00:07:27", "license": "2", "title": "IMG_0912.JPG", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/102370676_f2f97c8816_o.jpg", "secret": "f2f97c8816", "media": "photo", "latitude": "0", "id": "102370676", "tags": "party goingaway"}, {"datetaken": "2006-02-20 00:14:47", "license": "2", "title": "IMG_0914.JPG", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/102371021_e2f049b209_o.jpg", "secret": "e2f049b209", "media": "photo", "latitude": "0", "id": "102371021", "tags": "party goingaway"}, {"datetaken": "2006-02-20 00:25:52", "license": "2", "title": "IMG_0916.JPG", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/102371343_a368708e29_o.jpg", "secret": "a368708e29", "media": "photo", "latitude": "0", "id": "102371343", "tags": "party goingaway"}, {"datetaken": "2006-02-20 00:26:01", "license": "2", "title": "IMG_0917.JPG", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/102371686_ee7d373e58_o.jpg", "secret": "ee7d373e58", "media": "photo", "latitude": "0", "id": "102371686", "tags": "party goingaway"}, {"datetaken": "2006-02-20 00:26:14", "license": "2", "title": "IMG_0919.JPG", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/102372043_0d2ba603dc_o.jpg", "secret": "0d2ba603dc", "media": "photo", "latitude": "0", "id": "102372043", "tags": "party goingaway"}, {"datetaken": "2006-02-20 00:26:20", "license": "2", "title": "IMG_0920.JPG", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/102372343_6ccb26ba35_o.jpg", "secret": "6ccb26ba35", "media": "photo", "latitude": "0", "id": "102372343", "tags": "party goingaway"}, {"datetaken": "2006-02-20 00:27:05", "license": "2", "title": "IMG_0921.JPG", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/102372913_fc63c3fe8b_o.jpg", "secret": "fc63c3fe8b", "media": "photo", "latitude": "0", "id": "102372913", "tags": "party goingaway"}, {"datetaken": "2006-02-20 00:34:04", "license": "2", "title": "IMG_0922.JPG", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/102373371_c41770dde1_o.jpg", "secret": "c41770dde1", "media": "photo", "latitude": "0", "id": "102373371", "tags": "party goingaway"}, {"datetaken": "2006-02-20 00:55:00", "license": "2", "title": "IMG_0931.JPG", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/102373895_f18db2b926_o.jpg", "secret": "f18db2b926", "media": "photo", "latitude": "0", "id": "102373895", "tags": "party goingaway"}, {"datetaken": "2006-02-20 00:59:48", "license": "2", "title": "IMG_0934.JPG", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/102374346_f3c1ff7896_o.jpg", "secret": "f3c1ff7896", "media": "photo", "latitude": "0", "id": "102374346", "tags": "party goingaway"}, {"datetaken": "2006-02-20 19:53:15", "license": "2", "title": "meatballcookie_composite.jpg", "text": "", "album_id": "72057594067732259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/102374673_5bc0fdcf84_o.jpg", "secret": "5bc0fdcf84", "media": "photo", "latitude": "0", "id": "102374673", "tags": "party goingaway"}, {"datetaken": "2006-08-18 22:13:27", "license": "1", "title": "Dina & a girl", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/220671139_19036c97ae_o.jpg", "secret": "19036c97ae", "media": "photo", "latitude": "0", "id": "220671139", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 22:14:59", "license": "1", "title": "Lee", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/220671249_a1282051b5_o.jpg", "secret": "a1282051b5", "media": "photo", "latitude": "0", "id": "220671249", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 22:17:29", "license": "1", "title": "TC & Alex", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/220671318_e2e4854005_o.jpg", "secret": "e2e4854005", "media": "photo", "latitude": "0", "id": "220671318", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 22:17:56", "license": "1", "title": "TC & Alex", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/220671382_68a18da1fb_o.jpg", "secret": "68a18da1fb", "media": "photo", "latitude": "0", "id": "220671382", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 22:19:29", "license": "1", "title": "Dina hugging Lee", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/220671470_248e45b4d3_o.jpg", "secret": "248e45b4d3", "media": "photo", "latitude": "0", "id": "220671470", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 22:35:12", "license": "1", "title": "Stacy singing", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/220671557_07ab514aa7_o.jpg", "secret": "07ab514aa7", "media": "photo", "latitude": "0", "id": "220671557", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 22:39:55", "license": "1", "title": "Dina singing", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/220671669_b87910d9bc_o.jpg", "secret": "b87910d9bc", "media": "photo", "latitude": "0", "id": "220671669", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 22:41:24", "license": "1", "title": "Dina singing", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/220671726_dbdbdbc208_o.jpg", "secret": "dbdbdbc208", "media": "photo", "latitude": "0", "id": "220671726", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 22:41:38", "license": "1", "title": "Dina singing", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/220671836_c96e0993f8_o.jpg", "secret": "c96e0993f8", "media": "photo", "latitude": "0", "id": "220671836", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 22:57:01", "license": "1", "title": "Melanie singing", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/220671930_4d5819802d_o.jpg", "secret": "4d5819802d", "media": "photo", "latitude": "0", "id": "220671930", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 23:07:18", "license": "1", "title": "*smooches*", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/220671996_8c9218d67d_o.jpg", "secret": "8c9218d67d", "media": "photo", "latitude": "0", "id": "220671996", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 23:08:19", "license": "1", "title": "TC Playing w/ Dina's Camera", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/220672070_792af85505_o.jpg", "secret": "792af85505", "media": "photo", "latitude": "0", "id": "220672070", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 23:10:48", "license": "1", "title": "Aww... the boys.", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/220672143_9f30cc58d2_o.jpg", "secret": "9f30cc58d2", "media": "photo", "latitude": "0", "id": "220672143", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 23:28:28", "license": "1", "title": "Alex & Dennis", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/220672224_eac9053b96_o.jpg", "secret": "eac9053b96", "media": "photo", "latitude": "0", "id": "220672224", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 23:30:08", "license": "1", "title": "Jarrid", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/220672281_38bda4e5eb_o.jpg", "secret": "38bda4e5eb", "media": "photo", "latitude": "0", "id": "220672281", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 23:32:29", "license": "1", "title": "Mindy & Dina", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/220672394_b5c18c897d_o.jpg", "secret": "b5c18c897d", "media": "photo", "latitude": "0", "id": "220672394", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 23:32:43", "license": "1", "title": "Mindy, Dina, Jarrid", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/220672458_3e509d60f6_o.jpg", "secret": "3e509d60f6", "media": "photo", "latitude": "0", "id": "220672458", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 23:33:11", "license": "1", "title": "Timmy, Mindy, Dina, Jarrid", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/220672586_442a9822e9_o.jpg", "secret": "442a9822e9", "media": "photo", "latitude": "0", "id": "220672586", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 23:33:52", "license": "1", "title": "Dina & Jarrid", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/220672702_72c7e464c1_o.jpg", "secret": "72c7e464c1", "media": "photo", "latitude": "0", "id": "220672702", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 23:45:17", "license": "1", "title": "Stacy & Dina", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/220672819_3ed408e7d3_o.jpg", "secret": "3ed408e7d3", "media": "photo", "latitude": "0", "id": "220672819", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-18 23:45:53", "license": "1", "title": "Karen Singing", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/220672925_adf89c5ed0_o.jpg", "secret": "adf89c5ed0", "media": "photo", "latitude": "0", "id": "220672925", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-19 00:01:40", "license": "1", "title": "Stacy Singing", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/220673016_b62dc79e5d_o.jpg", "secret": "b62dc79e5d", "media": "photo", "latitude": "0", "id": "220673016", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-08-19 00:14:23", "license": "1", "title": "Stacy & TC", "text": "", "album_id": "72157594245097786", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/220671066_e928fb1881_o.jpg", "secret": "e928fb1881", "media": "photo", "latitude": "0", "id": "220671066", "tags": "friends party 81806 dinasgoingawayparty"}, {"datetaken": "2006-09-08 13:01:02", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/242427259_788188113d_o.jpg", "secret": "788188113d", "media": "photo", "latitude": "0", "id": "242427259", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:01:16", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/242427419_6f9e257f19_o.jpg", "secret": "6f9e257f19", "media": "photo", "latitude": "0", "id": "242427419", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:01:37", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/242427528_bdb93033b3_o.jpg", "secret": "bdb93033b3", "media": "photo", "latitude": "0", "id": "242427528", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:02:47", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/242427627_443d347b86_o.jpg", "secret": "443d347b86", "media": "photo", "latitude": "0", "id": "242427627", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:08:14", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/242427856_d249eb5da1_o.jpg", "secret": "d249eb5da1", "media": "photo", "latitude": "0", "id": "242427856", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:11:47", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/242427990_dc206c3edd_o.jpg", "secret": "dc206c3edd", "media": "photo", "latitude": "0", "id": "242427990", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:12:21", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/242428096_dee89ff8cf_o.jpg", "secret": "dee89ff8cf", "media": "photo", "latitude": "0", "id": "242428096", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:13:31", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/242428247_71706c6aa0_o.jpg", "secret": "71706c6aa0", "media": "photo", "latitude": "0", "id": "242428247", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:13:53", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/242428386_c8788d54bc_o.jpg", "secret": "c8788d54bc", "media": "photo", "latitude": "0", "id": "242428386", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:22:32", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/242428481_8943dd4f52_o.jpg", "secret": "8943dd4f52", "media": "photo", "latitude": "0", "id": "242428481", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:22:38", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/242428606_2cbd887823_o.jpg", "secret": "2cbd887823", "media": "photo", "latitude": "0", "id": "242428606", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:31:16", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/242428768_6278c4b91d_o.jpg", "secret": "6278c4b91d", "media": "photo", "latitude": "0", "id": "242428768", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:31:43", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/242428923_bd8e4ec3bc_o.jpg", "secret": "bd8e4ec3bc", "media": "photo", "latitude": "0", "id": "242428923", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:36:00", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/242429075_ae26260cfa_o.jpg", "secret": "ae26260cfa", "media": "photo", "latitude": "0", "id": "242429075", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:36:49", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/242429198_5f82f0507d_o.jpg", "secret": "5f82f0507d", "media": "photo", "latitude": "0", "id": "242429198", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:37:04", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/242429323_d0217e18f1_o.jpg", "secret": "d0217e18f1", "media": "photo", "latitude": "0", "id": "242429323", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:38:36", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/242429511_76c9763920_o.jpg", "secret": "76c9763920", "media": "photo", "latitude": "0", "id": "242429511", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:39:44", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/242429660_0323e1c18a_o.jpg", "secret": "0323e1c18a", "media": "photo", "latitude": "0", "id": "242429660", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:42:25", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/242429794_f4c545114b_o.jpg", "secret": "f4c545114b", "media": "photo", "latitude": "0", "id": "242429794", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:46:19", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/242429927_eb6a675f90_o.jpg", "secret": "eb6a675f90", "media": "photo", "latitude": "0", "id": "242429927", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:46:35", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/242430030_64d0b37bee_o.jpg", "secret": "64d0b37bee", "media": "photo", "latitude": "0", "id": "242430030", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:51:42", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/242430138_99a227a9de_o.jpg", "secret": "99a227a9de", "media": "photo", "latitude": "0", "id": "242430138", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:53:19", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/242430269_fa8bec8b71_o.jpg", "secret": "fa8bec8b71", "media": "photo", "latitude": "0", "id": "242430269", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:53:34", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/242430425_3f11c68c2f_o.jpg", "secret": "3f11c68c2f", "media": "photo", "latitude": "0", "id": "242430425", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:55:46", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/242430518_447618be6b_o.jpg", "secret": "447618be6b", "media": "photo", "latitude": "0", "id": "242430518", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 13:56:10", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/242430621_bef09d5a1f_o.jpg", "secret": "bef09d5a1f", "media": "photo", "latitude": "0", "id": "242430621", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2006-09-08 14:12:43", "license": "5", "title": "Going Away Party", "text": "", "album_id": "72157594282668993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/242430718_47b81b33de_o.jpg", "secret": "47b81b33de", "media": "photo", "latitude": "0", "id": "242430718", "tags": "library uic goingawayparty universityofillinoischicago uiclibrary"}, {"datetaken": "2004-11-21 08:59:08", "license": "3", "title": "birthday girl", "text": "", "album_id": "72157594530445108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/387161394_9454e36eba_o.jpg", "secret": "9454e36eba", "media": "photo", "latitude": "0", "id": "387161394", "tags": "party edinburgh 30th kikis30th"}, {"datetaken": "2004-11-21 09:17:01", "license": "3", "title": "nicola and susan and...", "text": "", "album_id": "72157594530445108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/387161522_1a63b14a88_o.jpg", "secret": "1a63b14a88", "media": "photo", "latitude": "0", "id": "387161522", "tags": "party edinburgh 30th kikis30th"}, {"datetaken": "2004-11-21 09:17:24", "license": "3", "title": "ang, nicola and susan", "text": "", "album_id": "72157594530445108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/387161690_780872ab3f_o.jpg", "secret": "780872ab3f", "media": "photo", "latitude": "0", "id": "387161690", "tags": "party edinburgh 30th kikis30th"}, {"datetaken": "2004-11-21 09:17:45", "license": "3", "title": "kat and me", "text": "", "album_id": "72157594530445108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/387161820_df2107a19f_o.jpg", "secret": "df2107a19f", "media": "photo", "latitude": "0", "id": "387161820", "tags": "party kat edinburgh 30th kikis30th"}, {"datetaken": "2004-11-21 09:18:22", "license": "3", "title": "paul and sarah", "text": "", "album_id": "72157594530445108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/387161983_10202b55f2_o.jpg", "secret": "10202b55f2", "media": "photo", "latitude": "0", "id": "387161983", "tags": "party edinburgh 30th kikis30th"}, {"datetaken": "2004-11-21 09:56:24", "license": "3", "title": "jon wishes the guitarist would go away...", "text": "", "album_id": "72157594530445108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/387162148_c7f12fdd43_o.jpg", "secret": "c7f12fdd43", "media": "photo", "latitude": "0", "id": "387162148", "tags": "party edinburgh 30th kikis30th"}, {"datetaken": "2004-11-21 10:14:15", "license": "3", "title": "... as does susan", "text": "", "album_id": "72157594530445108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/387162291_cab3ca6848_o.jpg", "secret": "cab3ca6848", "media": "photo", "latitude": "0", "id": "387162291", "tags": "party edinburgh 30th kikis30th"}, {"datetaken": "2004-11-21 11:34:50", "license": "3", "title": "cake!", "text": "", "album_id": "72157594530445108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/387162432_8e3cc36353_o.jpg", "secret": "8e3cc36353", "media": "photo", "latitude": "0", "id": "387162432", "tags": "party edinburgh 30th kikis30th"}, {"datetaken": "2004-11-21 11:35:18", "license": "3", "title": "wishes", "text": "", "album_id": "72157594530445108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/387162790_e6cf35c38e_o.jpg", "secret": "e6cf35c38e", "media": "photo", "latitude": "0", "id": "387162790", "tags": "party edinburgh 30th kikis30th"}, {"datetaken": "2004-11-21 11:38:32", "license": "3", "title": "sweet music", "text": "", "album_id": "72157594530445108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/387162922_46f0da3958_o.jpg", "secret": "46f0da3958", "media": "photo", "latitude": "0", "id": "387162922", "tags": "party edinburgh 30th kikis30th"}, {"datetaken": "2007-07-14 19:07:39", "license": "5", "title": "DSCN3852", "text": "", "album_id": "72157600872071738", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1103/838839789_b08ccf3f6b_o.jpg", "secret": "b1def10d64", "media": "photo", "latitude": "0", "id": "838839789", "tags": "alexgoingawayparty laurasphotos falex"}, {"datetaken": "2007-07-14 19:07:52", "license": "5", "title": "DSCN3853", "text": "", "album_id": "72157600872071738", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1061/838840711_818ffa1abc_o.jpg", "secret": "9ccb995e23", "media": "photo", "latitude": "0", "id": "838840711", "tags": "alexgoingawayparty laurasphotos falex"}, {"datetaken": "2007-07-14 19:36:21", "license": "5", "title": "DSCN3855", "text": "", "album_id": "72157600872071738", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1365/839707124_69bd5a5b24_o.jpg", "secret": "0a93dc0191", "media": "photo", "latitude": "0", "id": "839707124", "tags": "alexgoingawayparty laurasphotos falex"}, {"datetaken": "2007-07-14 20:22:45", "license": "5", "title": "DSCN3856", "text": "", "album_id": "72157600872071738", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1008/838843083_0221c21128_o.jpg", "secret": "676842e237", "media": "photo", "latitude": "0", "id": "838843083", "tags": "alexgoingawayparty laurasphotos falex"}, {"datetaken": "2007-07-14 20:34:42", "license": "5", "title": "DSCN3857", "text": "", "album_id": "72157600872071738", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1324/839709540_ba78ac8a48_o.jpg", "secret": "ba2c808932", "media": "photo", "latitude": "0", "id": "839709540", "tags": "alexgoingawayparty laurasphotos falex"}, {"datetaken": "2007-07-14 22:14:19", "license": "5", "title": "DSCN3880", "text": "", "album_id": "72157600872071738", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1195/839710888_ed2eafd098_o.jpg", "secret": "ef946ad277", "media": "photo", "latitude": "0", "id": "839710888", "tags": "alexgoingawayparty laurasphotos falex"}, {"datetaken": "2007-07-14 22:27:18", "license": "5", "title": "DSCN3892", "text": "", "album_id": "72157600872071738", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1332/839712180_5fdafd40fc_o.jpg", "secret": "096556ac18", "media": "photo", "latitude": "0", "id": "839712180", "tags": "alexgoingawayparty laurasphotos falex"}, {"datetaken": "2007-07-14 23:37:16", "license": "5", "title": "DSCN3930", "text": "", "album_id": "72157600872071738", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1386/839713476_69f67d01c5_o.jpg", "secret": "9096c9822a", "media": "photo", "latitude": "0", "id": "839713476", "tags": "alexgoingawayparty laurasphotos falex"}, {"datetaken": "2007-07-14 23:42:20", "license": "5", "title": "DSCN3934", "text": "", "album_id": "72157600872071738", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1347/838837247_294bc1d93b_o.jpg", "secret": "4f12a802da", "media": "photo", "latitude": "0", "id": "838837247", "tags": "alexgoingawayparty laurasphotos falex"}, {"datetaken": "2007-07-14 23:53:53", "license": "5", "title": "DSCN3952", "text": "", "album_id": "72157600872071738", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1034/839703662_cd3e22929d_o.jpg", "secret": "56714ef507", "media": "photo", "latitude": "0", "id": "839703662", "tags": "alexgoingawayparty laurasphotos falex"}, {"datetaken": "2011-02-02 09:14:49", "license": "1", "title": "2012 Millennium H3-45, S3 #1656, Prevost", "text": "", "album_id": "72157625837785063", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4114/5410947939_2ae037565b_o.jpg", "secret": "4c8142f00e", "media": "photo", "latitude": "0", "id": "5410947939", "tags": "bus dollar vip rv luxury motorcoach \u201c out\u201d \u201c\u201d \u201cparty \u201cmillion \u201cmost \u201ccool \u201cfun \u201ccelebrity \u201cslide bus\u201d dollar\u201d \u201cmotor vehicles\u201d \u201crecreational vehicle\u201d \u201cawesome \u201cluxury coach\u201d transportation\u201d rv\u201d \u201cvip advanced\u201d outs\u201d \u201centertainer \u201cprevost prevost\u201d motorcoach\u201d motorhome\u201d \u201ctricked moterhome\u201d \u201cconversion \u201cslideouts\u201d"}, {"datetaken": "2011-02-02 09:14:50", "license": "1", "title": "2012 Millennium H3-45, S3 #1656, Prevost", "text": "", "album_id": "72157625837785063", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/5411560428_424be127d9_o.jpg", "secret": "7e2ce54f05", "media": "photo", "latitude": "0", "id": "5411560428", "tags": "bus dollar vip rv luxury motorcoach \u201c out\u201d \u201c\u201d \u201cparty \u201cmillion \u201cmost \u201ccool \u201cfun \u201ccelebrity \u201cslide bus\u201d dollar\u201d \u201cmotor vehicles\u201d \u201crecreational vehicle\u201d \u201cawesome \u201cluxury coach\u201d transportation\u201d rv\u201d \u201cvip advanced\u201d outs\u201d \u201centertainer \u201cprevost prevost\u201d motorcoach\u201d motorhome\u201d \u201ctricked moterhome\u201d \u201cconversion \u201cslideouts\u201d"}, {"datetaken": "2011-02-02 09:16:30", "license": "1", "title": "2012 Millennium H3-45, S3 #1656, Prevost", "text": "", "album_id": "72157625837785063", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5214/5410948269_7ce8f713f2_o.jpg", "secret": "5ed09340a9", "media": "photo", "latitude": "0", "id": "5410948269", "tags": "bus dollar vip rv luxury motorcoach \u201c out\u201d \u201c\u201d \u201cparty \u201cmillion \u201cmost \u201ccool \u201cfun \u201ccelebrity \u201cslide bus\u201d dollar\u201d \u201cmotor vehicles\u201d \u201crecreational vehicle\u201d \u201cawesome \u201cluxury coach\u201d transportation\u201d rv\u201d \u201cvip advanced\u201d outs\u201d \u201centertainer \u201cprevost prevost\u201d motorcoach\u201d motorhome\u201d \u201ctricked moterhome\u201d \u201cconversion \u201cslideouts\u201d"}, {"datetaken": "2011-02-02 09:17:10", "license": "1", "title": "2012 Millennium H3-45, S3 #1656, Prevost", "text": "", "album_id": "72157625837785063", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4154/5411561802_c68d61d06d_o.jpg", "secret": "eb6bc6a726", "media": "photo", "latitude": "0", "id": "5411561802", "tags": "bus dollar vip rv luxury motorcoach \u201c out\u201d \u201c\u201d \u201cparty \u201cmillion \u201cmost \u201ccool \u201cfun \u201ccelebrity \u201cslide bus\u201d dollar\u201d \u201cmotor vehicles\u201d \u201crecreational vehicle\u201d \u201cawesome \u201cluxury coach\u201d transportation\u201d rv\u201d \u201cvip advanced\u201d outs\u201d \u201centertainer \u201cprevost prevost\u201d motorcoach\u201d motorhome\u201d \u201ctricked moterhome\u201d \u201cconversion \u201cslideouts\u201d"}, {"datetaken": "2011-02-02 09:17:51", "license": "1", "title": "2012 Millennium H3-45, S3 #1656, Prevost", "text": "", "album_id": "72157625837785063", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/5411561514_eb38f8d6c1_o.jpg", "secret": "144bf81c76", "media": "photo", "latitude": "0", "id": "5411561514", "tags": "bus dollar vip rv luxury motorcoach \u201c out\u201d \u201c\u201d \u201cparty \u201cmillion \u201cmost \u201ccool \u201cfun \u201ccelebrity \u201cslide bus\u201d dollar\u201d \u201cmotor vehicles\u201d \u201crecreational vehicle\u201d \u201cawesome \u201cluxury coach\u201d transportation\u201d rv\u201d \u201cvip advanced\u201d outs\u201d \u201centertainer \u201cprevost prevost\u201d motorcoach\u201d motorhome\u201d \u201ctricked moterhome\u201d \u201cconversion \u201cslideouts\u201d"}, {"datetaken": "2011-02-02 09:18:07", "license": "1", "title": "2012 Millennium H3-45, S3 #1656, Prevost", "text": "", "album_id": "72157625837785063", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5176/5411562094_5b613a509c_o.jpg", "secret": "2be0d0ded1", "media": "photo", "latitude": "0", "id": "5411562094", "tags": "bus dollar vip rv luxury motorcoach \u201c out\u201d \u201c\u201d \u201cparty \u201cmillion \u201cmost \u201ccool \u201cfun \u201ccelebrity \u201cslide bus\u201d dollar\u201d \u201cmotor vehicles\u201d \u201crecreational vehicle\u201d \u201cawesome \u201cluxury coach\u201d transportation\u201d rv\u201d \u201cvip advanced\u201d outs\u201d \u201centertainer \u201cprevost prevost\u201d motorcoach\u201d motorhome\u201d \u201ctricked moterhome\u201d \u201cconversion \u201cslideouts\u201d"}, {"datetaken": "2011-02-02 09:22:57", "license": "1", "title": "2012 Millennium H3-45, S3 #1656, Prevost", "text": "", "album_id": "72157625837785063", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/5410949403_ebf19389e6_o.jpg", "secret": "837a796c89", "media": "photo", "latitude": "0", "id": "5410949403", "tags": "bus dollar vip rv luxury motorcoach \u201c out\u201d \u201c\u201d \u201cparty \u201cmillion \u201cmost \u201ccool \u201cfun \u201ccelebrity \u201cslide bus\u201d dollar\u201d \u201cmotor vehicles\u201d \u201crecreational vehicle\u201d \u201cawesome \u201cluxury coach\u201d transportation\u201d rv\u201d \u201cvip advanced\u201d outs\u201d \u201centertainer \u201cprevost prevost\u201d motorcoach\u201d motorhome\u201d \u201ctricked moterhome\u201d \u201cconversion \u201cslideouts\u201d"}, {"datetaken": "2011-02-02 09:23:31", "license": "1", "title": "2012 Millennium H3-45, S3 #1656, Prevost", "text": "", "album_id": "72157625837785063", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/5411562616_bc50595792_o.jpg", "secret": "58e6483220", "media": "photo", "latitude": "0", "id": "5411562616", "tags": "bus dollar vip rv luxury motorcoach \u201c out\u201d \u201c\u201d \u201cparty \u201cmillion \u201cmost \u201ccool \u201cfun \u201ccelebrity \u201cslide bus\u201d dollar\u201d \u201cmotor vehicles\u201d \u201crecreational vehicle\u201d \u201cawesome \u201cluxury coach\u201d transportation\u201d rv\u201d \u201cvip advanced\u201d outs\u201d \u201centertainer \u201cprevost prevost\u201d motorcoach\u201d motorhome\u201d \u201ctricked moterhome\u201d \u201cconversion \u201cslideouts\u201d"}, {"datetaken": "2011-02-02 09:25:07", "license": "1", "title": "2012 Millennium H3-45, S3 #1656, Prevost", "text": "", "album_id": "72157625837785063", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5251/5411562880_81f308c47b_o.jpg", "secret": "da08bb319c", "media": "photo", "latitude": "0", "id": "5411562880", "tags": "bus dollar vip rv luxury motorcoach \u201c out\u201d \u201c\u201d \u201cparty \u201cmillion \u201cmost \u201ccool \u201cfun \u201ccelebrity \u201cslide bus\u201d dollar\u201d \u201cmotor vehicles\u201d \u201crecreational vehicle\u201d \u201cawesome \u201cluxury coach\u201d transportation\u201d rv\u201d \u201cvip advanced\u201d outs\u201d \u201centertainer \u201cprevost prevost\u201d motorcoach\u201d motorhome\u201d \u201ctricked moterhome\u201d \u201cconversion \u201cslideouts\u201d"}, {"datetaken": "2011-02-02 09:27:41", "license": "1", "title": "2012 Millennium H3-45, S3 #1656, Prevost", "text": "", "album_id": "72157625837785063", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/5411563208_4f3d68917d_o.jpg", "secret": "321437d348", "media": "photo", "latitude": "0", "id": "5411563208", "tags": "bus dollar vip rv luxury motorcoach \u201c out\u201d \u201c\u201d \u201cparty \u201cmillion \u201cmost \u201ccool \u201cfun \u201ccelebrity \u201cslide bus\u201d dollar\u201d \u201cmotor vehicles\u201d \u201crecreational vehicle\u201d \u201cawesome \u201cluxury coach\u201d transportation\u201d rv\u201d \u201cvip advanced\u201d outs\u201d \u201centertainer \u201cprevost prevost\u201d motorcoach\u201d motorhome\u201d \u201ctricked moterhome\u201d \u201cconversion \u201cslideouts\u201d"}, {"datetaken": "2011-02-02 09:28:01", "license": "1", "title": "2012 Millennium H3-45, S3 #1656, Prevost", "text": "", "album_id": "72157625837785063", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/5411563496_36066d03d9_o.jpg", "secret": "b617dba6aa", "media": "photo", "latitude": "0", "id": "5411563496", "tags": "bus dollar vip rv luxury motorcoach \u201c out\u201d \u201c\u201d \u201cparty \u201cmillion \u201cmost \u201ccool \u201cfun \u201ccelebrity \u201cslide bus\u201d dollar\u201d \u201cmotor vehicles\u201d \u201crecreational vehicle\u201d \u201cawesome \u201cluxury coach\u201d transportation\u201d rv\u201d \u201cvip advanced\u201d outs\u201d \u201centertainer \u201cprevost prevost\u201d motorcoach\u201d motorhome\u201d \u201ctricked moterhome\u201d \u201cconversion \u201cslideouts\u201d"}, {"datetaken": "2011-02-02 09:35:30", "license": "1", "title": "2012 Millennium H3-45, S3 #1656, Prevost", "text": "", "album_id": "72157625837785063", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/5411564288_aea74b8ed1_o.jpg", "secret": "7087082fa5", "media": "photo", "latitude": "0", "id": "5411564288", "tags": "bus dollar vip rv luxury motorcoach \u201c out\u201d \u201c\u201d \u201cparty \u201cmillion \u201cmost \u201ccool \u201cfun \u201ccelebrity \u201cslide bus\u201d dollar\u201d \u201cmotor vehicles\u201d \u201crecreational vehicle\u201d \u201cawesome \u201cluxury coach\u201d transportation\u201d rv\u201d \u201cvip advanced\u201d outs\u201d \u201centertainer \u201cprevost prevost\u201d motorcoach\u201d motorhome\u201d \u201ctricked moterhome\u201d \u201cconversion \u201cslideouts\u201d"}, {"datetaken": "2011-02-02 09:35:55", "license": "1", "title": "2012 Millennium H3-45, S3 #1656, Prevost", "text": "", "album_id": "72157625837785063", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4154/5410951049_9da8bb4c9e_o.jpg", "secret": "dce84fecd7", "media": "photo", "latitude": "0", "id": "5410951049", "tags": "bus dollar vip rv luxury motorcoach \u201c out\u201d \u201c\u201d \u201cparty \u201cmillion \u201cmost \u201ccool \u201cfun \u201ccelebrity \u201cslide bus\u201d dollar\u201d \u201cmotor vehicles\u201d \u201crecreational vehicle\u201d \u201cawesome \u201cluxury coach\u201d transportation\u201d rv\u201d \u201cvip advanced\u201d outs\u201d \u201centertainer \u201cprevost prevost\u201d motorcoach\u201d motorhome\u201d \u201ctricked moterhome\u201d \u201cconversion \u201cslideouts\u201d"}, {"datetaken": "2011-01-30 01:45:33", "license": "3", "title": "Animal Party!", "text": "", "album_id": "72157625966685320", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1426/5412901168_8df1e94e14_o.jpg", "secret": "78a0d52a6c", "media": "photo", "latitude": "0", "id": "5412901168", "tags": "ca girls party animal houseparty women socal silverlake furries southerncalifornia"}, {"datetaken": "2011-01-30 01:57:03", "license": "3", "title": "Doggy", "text": "", "album_id": "72157625966685320", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5139/5412905750_591df5a73a_o.jpg", "secret": "7f57882a00", "media": "photo", "latitude": "0", "id": "5412905750", "tags": "ca party dog animal houseparty puppy socal silverlake furries doggy southerncalifornia"}, {"datetaken": "2011-01-30 01:59:19", "license": "3", "title": "Fox", "text": "", "album_id": "72157625966685320", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/5412909914_8eb7f0a59b_o.jpg", "secret": "39f9110c96", "media": "photo", "latitude": "0", "id": "5412909914", "tags": "ca girls party animal houseparty women socal silverlake fox furries southerncalifornia"}, {"datetaken": "2011-01-30 01:59:54", "license": "3", "title": "Chicken and Fox", "text": "", "album_id": "72157625966685320", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5138/5412303941_4c7c23218f_o.jpg", "secret": "29cafce3e8", "media": "photo", "latitude": "0", "id": "5412303941", "tags": "ca party chicken animal houseparty socal silverlake fox furries southerncalifornia"}, {"datetaken": "2011-01-30 02:04:57", "license": "3", "title": "Playing Card Dress", "text": "", "album_id": "72157625966685320", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/5412919062_0fb92570e3_o.jpg", "secret": "0d009e1c2a", "media": "photo", "latitude": "0", "id": "5412919062", "tags": "ca party animal houseparty cards socal silverlake furries southerncalifornia playingcards"}, {"datetaken": "2011-01-30 02:07:06", "license": "3", "title": "Fridge Shit", "text": "", "album_id": "72157625966685320", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5099/5412312257_7ee0f2be1c_o.jpg", "secret": "cfeae8aeac", "media": "photo", "latitude": "0", "id": "5412312257", "tags": "ca party animal houseparty fridge magnets socal silverlake furries southerncalifornia"}, {"datetaken": "2011-01-30 02:12:03", "license": "3", "title": "Whisker People", "text": "", "album_id": "72157625966685320", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4118/5412316555_2b9c31c8f3_o.jpg", "secret": "0ba920e3e3", "media": "photo", "latitude": "0", "id": "5412316555", "tags": "ca girls party animal houseparty women antlers socal silverlake furries southerncalifornia"}, {"datetaken": "2011-01-30 02:50:10", "license": "3", "title": "Animal Party!", "text": "", "album_id": "72157625966685320", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/5412321287_8a4fc58e6b_o.jpg", "secret": "fa65b32960", "media": "photo", "latitude": "0", "id": "5412321287", "tags": "ca party animal houseparty socal silverlake furries southerncalifornia"}, {"datetaken": "2011-01-30 02:54:24", "license": "3", "title": "Nipple Touch Walk Through", "text": "", "album_id": "72157625966685320", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4151/5412936028_c048b201ee_o.jpg", "secret": "8c01f4a912", "media": "photo", "latitude": "0", "id": "5412936028", "tags": "ca party animal houseparty nipple socal silverlake furries southerncalifornia"}, {"datetaken": "2011-01-30 02:55:16", "license": "3", "title": "Kisses", "text": "", "album_id": "72157625966685320", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/5412334925_6a85c1104d_o.jpg", "secret": "10a692c0da", "media": "photo", "latitude": "0", "id": "5412334925", "tags": "ca girls party animal houseparty women kiss kisses socal silverlake furries xo southerncalifornia smooches xoxoxo"}, {"datetaken": "2011-01-30 03:00:08", "license": "3", "title": "I See You", "text": "", "album_id": "72157625966685320", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5177/5412339399_9a755f1cb9_o.jpg", "secret": "4a266687bb", "media": "photo", "latitude": "0", "id": "5412339399", "tags": "ca girls party animal houseparty see eyes women socal silverlake furries southerncalifornia"}, {"datetaken": "2011-01-30 03:00:46", "license": "3", "title": "DOF Portraits of The Other Guy with a Camera at the Party", "text": "", "album_id": "72157625966685320", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5020/5412954052_3a3f2e54e8_o.jpg", "secret": "4eea7f0180", "media": "photo", "latitude": "0", "id": "5412954052", "tags": "ca party animal houseparty canon photographer socal silverlake furries southerncalifornia photog 550d t2i"}, {"datetaken": "2011-01-30 03:02:27", "license": "3", "title": "DOF Portraits of The Other Guy with a Camera at the Party", "text": "", "album_id": "72157625966685320", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5100/5412346443_11b4d2a1a6_o.jpg", "secret": "df601056a6", "media": "photo", "latitude": "0", "id": "5412346443", "tags": "ca party animal houseparty canon photographer socal silverlake furries southerncalifornia photog 550d t2i"}, {"datetaken": "2011-01-30 03:08:24", "license": "3", "title": "V", "text": "", "album_id": "72157625966685320", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5058/5412960268_f61606cbb0_o.jpg", "secret": "225e976418", "media": "photo", "latitude": "0", "id": "5412960268", "tags": "ca girls party animal houseparty women socal silverlake furries southerncalifornia"}, {"datetaken": "2011-04-16 01:21:25", "license": "3", "title": "Sitting on the Fridge", "text": "", "album_id": "72157626403967007", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5223/5632560905_a126eabe4b_o.jpg", "secret": "94f8681ddb", "media": "photo", "latitude": "0", "id": "5632560905", "tags": "party houseparty la losangeles rager rambodsrager"}, {"datetaken": "2011-04-16 01:23:29", "license": "3", "title": "Funderstorm T-shirt", "text": "", "album_id": "72157626403967007", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5222/5633153704_412ae09fe7_o.jpg", "secret": "38c0e4e52e", "media": "photo", "latitude": "0", "id": "5633153704", "tags": "party houseparty la losangeles rager rambodsrager"}, {"datetaken": "2011-04-16 01:24:35", "license": "3", "title": "The Front Yard", "text": "", "album_id": "72157626403967007", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5069/5632581653_086163ce05_o.jpg", "secret": "3970494b26", "media": "photo", "latitude": "0", "id": "5632581653", "tags": "party houseparty la losangeles rager rambodsrager"}, {"datetaken": "2011-04-16 01:25:52", "license": "3", "title": "Fuzz Beast's Los Angelopes Vest", "text": "", "album_id": "72157626403967007", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5183/5632590085_c674795c65_o.jpg", "secret": "e04d9c14b3", "media": "photo", "latitude": "0", "id": "5632590085", "tags": "party houseparty la losangeles rager losangelopes rambodsrager losangelopesvest"}, {"datetaken": "2011-04-16 01:29:37", "license": "3", "title": "R", "text": "", "album_id": "72157626403967007", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5307/5632598249_6bed681bbe_o.jpg", "secret": "f8cdebcd5e", "media": "photo", "latitude": "0", "id": "5632598249", "tags": "party houseparty la losangeles rager rambodsrager"}, {"datetaken": "2011-04-16 01:53:01", "license": "3", "title": "Alaska", "text": "", "album_id": "72157626403967007", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5184/5633200836_9b47f4c2fc_o.jpg", "secret": "7a4e2c702f", "media": "photo", "latitude": "0", "id": "5633200836", "tags": "party houseparty la losangeles rager rambodsrager"}, {"datetaken": "2011-04-16 01:57:03", "license": "3", "title": "Donnie Pepper Choking Out jonandesign", "text": "", "album_id": "72157626403967007", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5222/5632626737_a385d95892_o.jpg", "secret": "bcd7c2ecc9", "media": "photo", "latitude": "0", "id": "5632626737", "tags": "party houseparty la losangeles rager rambodsrager"}, {"datetaken": "2011-04-16 03:39:30", "license": "3", "title": "Bike Pile", "text": "", "album_id": "72157626403967007", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5103/5632637831_5878f0b0d8_o.jpg", "secret": "0082464b43", "media": "photo", "latitude": "0", "id": "5632637831", "tags": "party houseparty la losangeles rager rambodsrager"}, {"datetaken": "2011-04-16 03:55:49", "license": "3", "title": "J Passed Out Behind Sound Bike", "text": "", "album_id": "72157626403967007", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5147/5632653877_02925b0b39_o.jpg", "secret": "f37baff582", "media": "photo", "latitude": "0", "id": "5632653877", "tags": "party houseparty la losangeles rager rambodsrager"}, {"datetaken": "2011-04-16 04:24:41", "license": "3", "title": "The Cops!", "text": "", "album_id": "72157626403967007", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5029/5632661781_44d0bc0855_o.jpg", "secret": "273983f947", "media": "photo", "latitude": "0", "id": "5632661781", "tags": "party houseparty la losangeles rager rambodsrager"}, {"datetaken": "2011-07-12 06:23:32", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6016/5944641145_006d629fed_o.jpg", "secret": "de56e2d528", "media": "photo", "latitude": "0", "id": "5944641145", "tags": "danielmehaffie"}, {"datetaken": "2011-07-12 06:24:37", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6142/5944641411_6c8d13c18e_o.jpg", "secret": "f6005d4e29", "media": "photo", "latitude": "0", "id": "5944641411", "tags": "mandysmith connorbass sawyerbass"}, {"datetaken": "2011-07-12 06:25:05", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6150/5944641729_77d5032e61_o.jpg", "secret": "fb619ccbb5", "media": "photo", "latitude": "0", "id": "5944641729", "tags": "kimsmith presleykatesmith rubymehaffie taylorbass"}, {"datetaken": "2011-07-12 07:38:54", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6007/5944641891_a8961dd426_o.jpg", "secret": "44ec610d5c", "media": "photo", "latitude": "0", "id": "5944641891", "tags": "teaganglennsmith"}, {"datetaken": "2011-07-12 07:39:42", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6018/5945197696_729c23dfcc_o.jpg", "secret": "962d4ae69c", "media": "photo", "latitude": "0", "id": "5945197696", "tags": "palmerhayessmith"}, {"datetaken": "2011-07-12 07:39:55", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6145/5945197926_a483280ea5_o.jpg", "secret": "a75a837612", "media": "photo", "latitude": "0", "id": "5945197926", "tags": "presleykatesmith"}, {"datetaken": "2011-07-12 07:40:52", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6020/5945198218_40bee534b1_o.jpg", "secret": "97ec430255", "media": "photo", "latitude": "0", "id": "5945198218", "tags": "teaganglennsmith"}, {"datetaken": "2011-07-12 07:41:10", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6017/5945198402_1d8e89e3d3_o.jpg", "secret": "e4f2254ed4", "media": "photo", "latitude": "0", "id": "5945198402", "tags": "rubymehaffie"}, {"datetaken": "2011-07-12 07:42:13", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6140/5945198746_47e617dc98_o.jpg", "secret": "b79f578fe7", "media": "photo", "latitude": "0", "id": "5945198746", "tags": "palmerhayessmith presleykatesmith"}, {"datetaken": "2011-07-12 07:49:06", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6128/5944643487_e9eb60ea10_o.jpg", "secret": "7deafa65fb", "media": "photo", "latitude": "0", "id": "5944643487", "tags": "palmerhayessmith"}, {"datetaken": "2011-07-12 07:49:19", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6015/5944643703_2826b67720_o.jpg", "secret": "fafe829cd6", "media": "photo", "latitude": "0", "id": "5944643703", "tags": "palmerhayessmith presleykatesmith"}, {"datetaken": "2011-07-12 07:49:23", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6149/5945199598_82a8998051_o.jpg", "secret": "8da7a02912", "media": "photo", "latitude": "0", "id": "5945199598", "tags": "palmerhayessmith presleykatesmith"}, {"datetaken": "2011-07-12 08:07:06", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6016/5945199844_648bf759ab_o.jpg", "secret": "b3afb00986", "media": "photo", "latitude": "0", "id": "5945199844", "tags": "mandysmith sharonmehaffie"}, {"datetaken": "2011-07-12 08:07:20", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6010/5945200148_2c56a4b302_o.jpg", "secret": "8c7b19ef2f", "media": "photo", "latitude": "0", "id": "5945200148", "tags": "shannonsmith palmerhayessmith braydentylersmith presleykatesmith"}, {"datetaken": "2011-07-12 08:34:13", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6131/5944644847_3500c5c672_o.jpg", "secret": "2f718c4c98", "media": "photo", "latitude": "0", "id": "5944644847", "tags": "danielmehaffie mikemehaffie sharonmehaffie"}, {"datetaken": "2011-07-12 08:37:41", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6123/5944645147_cedb828987_o.jpg", "secret": "2799fc6bab", "media": "photo", "latitude": "0", "id": "5944645147", "tags": "palmerhayessmith"}, {"datetaken": "2011-07-12 08:37:57", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6008/5945200932_c30025d2b0_o.jpg", "secret": "c038d4142a", "media": "photo", "latitude": "0", "id": "5945200932", "tags": "p2 palmerhayessmith"}, {"datetaken": "2011-07-12 09:04:22", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6022/5945201160_81e0889a96_o.jpg", "secret": "42f0024af7", "media": "photo", "latitude": "0", "id": "5945201160", "tags": "teaganglennsmith"}, {"datetaken": "2011-07-12 09:04:37", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6131/5945201434_005b584dcf_o.jpg", "secret": "b30a8abe2c", "media": "photo", "latitude": "0", "id": "5945201434", "tags": "teaganglennsmith"}, {"datetaken": "2011-07-12 09:05:17", "license": "1", "title": "Mehaffie Going Away Party", "text": "", "album_id": "72157627211702284", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6138/5945201748_bd1b065842_o.jpg", "secret": "1cdbc34943", "media": "photo", "latitude": "0", "id": "5945201748", "tags": "palmerhayessmith teaganglennsmith"}, {"datetaken": "2012-05-24 11:10:56", "license": "3", "title": "Xin's going away party", "text": "", "album_id": "72157629900151022", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8142/7271685632_7be5766ca0_o.jpg", "secret": "860c863f71", "media": "photo", "latitude": "0", "id": "7271685632", "tags": ""}, {"datetaken": "2012-05-24 11:11:41", "license": "3", "title": "Xin's going away party", "text": "", "album_id": "72157629900151022", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7103/7271684152_944e516eae_o.jpg", "secret": "bf38d223d9", "media": "photo", "latitude": "0", "id": "7271684152", "tags": ""}, {"datetaken": "2012-05-24 11:16:35", "license": "3", "title": "Xin's going away party", "text": "", "album_id": "72157629900151022", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7238/7271681018_a254325bdd_o.jpg", "secret": "0d7f20a182", "media": "photo", "latitude": "0", "id": "7271681018", "tags": ""}, {"datetaken": "2012-05-24 11:16:54", "license": "3", "title": "Xin's going away party", "text": "", "album_id": "72157629900151022", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7238/7271678780_e904967745_o.jpg", "secret": "2c001c91c9", "media": "photo", "latitude": "0", "id": "7271678780", "tags": ""}, {"datetaken": "2012-05-24 11:18:23", "license": "3", "title": "Xin's going away party", "text": "", "album_id": "72157629900151022", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7230/7271676642_52eecaedf8_o.jpg", "secret": "279c762c68", "media": "photo", "latitude": "0", "id": "7271676642", "tags": ""}, {"datetaken": "2012-05-24 11:20:17", "license": "3", "title": "Xin's going away party", "text": "", "album_id": "72157629900151022", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7228/7271671900_3781c1a136_o.jpg", "secret": "904bd7f9f5", "media": "photo", "latitude": "0", "id": "7271671900", "tags": ""}, {"datetaken": "2012-05-24 11:25:32", "license": "3", "title": "Xin's going away party", "text": "", "album_id": "72157629900151022", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8014/7271669642_e2fabdd789_o.jpg", "secret": "1b2d6fb304", "media": "photo", "latitude": "0", "id": "7271669642", "tags": ""}, {"datetaken": "2012-05-24 11:27:04", "license": "3", "title": "Xin's going away party", "text": "", "album_id": "72157629900151022", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7079/7271667136_6909b7f303_o.jpg", "secret": "3b8f788e07", "media": "photo", "latitude": "0", "id": "7271667136", "tags": ""}, {"datetaken": "2012-05-24 11:28:15", "license": "3", "title": "Xin's going away party", "text": "", "album_id": "72157629900151022", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7237/7271665048_7bbf11b0ba_o.jpg", "secret": "06800d19f5", "media": "photo", "latitude": "0", "id": "7271665048", "tags": ""}, {"datetaken": "2012-05-24 11:29:34", "license": "3", "title": "Xin's going away party", "text": "", "album_id": "72157629900151022", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7230/7271662014_7c3421b3fe_o.jpg", "secret": "5a04a78012", "media": "photo", "latitude": "0", "id": "7271662014", "tags": ""}, {"datetaken": "2012-05-24 11:29:44", "license": "3", "title": "Xin's going away party", "text": "", "album_id": "72157629900151022", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7240/7271658472_70c27d7fb7_o.jpg", "secret": "b99c59a731", "media": "photo", "latitude": "0", "id": "7271658472", "tags": ""}, {"datetaken": "2013-01-18 15:01:23", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8073/8391197173_70d287185e_o.jpg", "secret": "600b10608f", "media": "photo", "latitude": "0", "id": "8391197173", "tags": ""}, {"datetaken": "2013-01-18 15:01:23", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8190/8392287276_bd6eaec5e7_o.jpg", "secret": "1f32aed556", "media": "photo", "latitude": "0", "id": "8392287276", "tags": ""}, {"datetaken": "2013-01-18 15:01:52", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8368/8391196681_091c3f409c_o.jpg", "secret": "a332012052", "media": "photo", "latitude": "0", "id": "8391196681", "tags": ""}, {"datetaken": "2013-01-18 15:03:21", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8046/8391190891_399b474aa6_o.jpg", "secret": "73273409bb", "media": "photo", "latitude": "0", "id": "8391190891", "tags": ""}, {"datetaken": "2013-01-18 15:05:21", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8328/8392275808_8d39194641_o.jpg", "secret": "cebe52a9a6", "media": "photo", "latitude": "0", "id": "8392275808", "tags": ""}, {"datetaken": "2013-01-18 15:05:22", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8353/8391191245_803ebff454_o.jpg", "secret": "49c4a36c89", "media": "photo", "latitude": "0", "id": "8391191245", "tags": ""}, {"datetaken": "2013-01-18 15:05:33", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8507/8391192119_7d0b0e623d_o.jpg", "secret": "6d1c9024ea", "media": "photo", "latitude": "0", "id": "8391192119", "tags": ""}, {"datetaken": "2013-01-18 15:05:33", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8184/8392288224_4457a5c311_o.jpg", "secret": "16ffd83c23", "media": "photo", "latitude": "0", "id": "8392288224", "tags": ""}, {"datetaken": "2013-01-18 15:06:16", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8044/8392277214_d94401ec5f_o.jpg", "secret": "2188801239", "media": "photo", "latitude": "0", "id": "8392277214", "tags": ""}, {"datetaken": "2013-01-18 15:06:51", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8223/8391191541_bdfef8f777_o.jpg", "secret": "469fd8ebdf", "media": "photo", "latitude": "0", "id": "8391191541", "tags": ""}, {"datetaken": "2013-01-18 15:07:46", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8214/8392278562_f548c7fbb3_o.jpg", "secret": "8914413d93", "media": "photo", "latitude": "0", "id": "8392278562", "tags": ""}, {"datetaken": "2013-01-18 15:07:55", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8463/8392278292_d01a62441b_o.jpg", "secret": "1a8253d3fd", "media": "photo", "latitude": "0", "id": "8392278292", "tags": ""}, {"datetaken": "2013-01-18 15:07:59", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8055/8392277932_2c90e85fda_o.jpg", "secret": "8788a20b10", "media": "photo", "latitude": "0", "id": "8392277932", "tags": ""}, {"datetaken": "2013-01-18 15:15:22", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8363/8392279026_f11fed63d7_o.jpg", "secret": "8b3dd355eb", "media": "photo", "latitude": "0", "id": "8392279026", "tags": ""}, {"datetaken": "2013-01-18 15:15:22", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8503/8392287852_d6c912c490_o.jpg", "secret": "e3d3db2a7e", "media": "photo", "latitude": "0", "id": "8392287852", "tags": ""}, {"datetaken": "2013-01-18 15:15:24", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8510/8392278752_42c62168b1_o.jpg", "secret": "650af25c6a", "media": "photo", "latitude": "0", "id": "8392278752", "tags": ""}, {"datetaken": "2013-01-18 15:16:16", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8078/8392279236_192dd620d7_o.jpg", "secret": "6b04a3be7c", "media": "photo", "latitude": "0", "id": "8392279236", "tags": ""}, {"datetaken": "2013-01-18 15:16:19", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8323/8391194471_bbaf1d142f_o.jpg", "secret": "38a8a10cfc", "media": "photo", "latitude": "0", "id": "8391194471", "tags": ""}, {"datetaken": "2013-01-18 15:16:42", "license": "5", "title": "Lucha VaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8196/8392279726_e79effbb59_o.jpg", "secret": "cdb7cd555d", "media": "photo", "latitude": "0", "id": "8392279726", "tags": ""}, {"datetaken": "2013-01-18 15:17:18", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8327/8392279492_99f0e6ff87_o.jpg", "secret": "16e2a3d317", "media": "photo", "latitude": "0", "id": "8392279492", "tags": ""}, {"datetaken": "2013-01-18 15:23:53", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8216/8391196195_621c12c75a_o.jpg", "secret": "13fab615b3", "media": "photo", "latitude": "0", "id": "8391196195", "tags": ""}, {"datetaken": "2013-01-18 15:24:08", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8090/8391195859_4524843ebd_o.jpg", "secret": "b57d337592", "media": "photo", "latitude": "0", "id": "8391195859", "tags": ""}, {"datetaken": "2013-01-18 15:24:29", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8371/8391195485_88601277c4_o.jpg", "secret": "38d53d03d2", "media": "photo", "latitude": "0", "id": "8391195485", "tags": ""}, {"datetaken": "2013-01-18 15:24:58", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8234/8392280548_6887dbca00_o.jpg", "secret": "290a5fcbcb", "media": "photo", "latitude": "0", "id": "8392280548", "tags": ""}, {"datetaken": "2013-01-18 16:05:50", "license": "5", "title": "Lucha vaVoom, Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8196/8392280254_276f58572b_o.jpg", "secret": "60cb436ced", "media": "photo", "latitude": "0", "id": "8392280254", "tags": ""}, {"datetaken": "2013-01-18 16:15:52", "license": "5", "title": "Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8514/8392285402_ac5a2e67e2_o.jpg", "secret": "4975ff1ef9", "media": "photo", "latitude": "0", "id": "8392285402", "tags": ""}, {"datetaken": "2013-01-18 16:15:52", "license": "5", "title": "Big Day Out", "text": "", "album_id": "72157632548092471", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8491/8392287612_cbe8d4f5a8_o.jpg", "secret": "87938f6ee6", "media": "photo", "latitude": "0", "id": "8392287612", "tags": ""}, {"datetaken": "2013-02-06 10:27:09", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8388/8491725384_2c6ddccb90_o.jpg", "secret": "615e870ff6", "media": "photo", "latitude": "0", "id": "8491725384", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 10:58:56", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8232/8490617727_5a4cb374b3_o.jpg", "secret": "f4bc9d22ec", "media": "photo", "latitude": "0", "id": "8490617727", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 10:59:15", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8518/8491726428_c6a229db76_o.jpg", "secret": "e88557fa8e", "media": "photo", "latitude": "0", "id": "8491726428", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 11:13:39", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8233/8491718466_3e000f9378_o.jpg", "secret": "b9127d1f75", "media": "photo", "latitude": "0", "id": "8491718466", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 11:14:39", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8392/8490619751_32bf19ca53_o.jpg", "secret": "e778319aa5", "media": "photo", "latitude": "0", "id": "8490619751", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 11:16:36", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8226/8491720296_de1989c8ce_o.jpg", "secret": "2ded705309", "media": "photo", "latitude": "0", "id": "8491720296", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 11:16:58", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8391/8490621329_a375df86cb_o.jpg", "secret": "1599467dc2", "media": "photo", "latitude": "0", "id": "8490621329", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 11:17:43", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8386/8490622265_eb10c70a23_o.jpg", "secret": "448438d3e1", "media": "photo", "latitude": "0", "id": "8490622265", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 11:18:27", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8505/8490632027_5affed01ed_o.jpg", "secret": "d70bf60bf9", "media": "photo", "latitude": "0", "id": "8490632027", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 11:22:00", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8379/8491722522_45ea9fca0e_o.jpg", "secret": "3c56a528f2", "media": "photo", "latitude": "0", "id": "8491722522", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 11:30:42", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8111/8490623803_35ecc494d0_o.jpg", "secret": "a872014073", "media": "photo", "latitude": "0", "id": "8490623803", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 11:36:44", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8376/8491730668_63071125ac_o.jpg", "secret": "e842fe6be1", "media": "photo", "latitude": "0", "id": "8491730668", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 11:36:54", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8252/8490631301_413498a1ae_o.jpg", "secret": "f1ef6481b3", "media": "photo", "latitude": "0", "id": "8490631301", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 11:38:22", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8100/8491732570_4d841facf0_o.jpg", "secret": "672646f3ae", "media": "photo", "latitude": "0", "id": "8491732570", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 11:38:42", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8233/8491733536_2a3c880955_o.jpg", "secret": "134dc91580", "media": "photo", "latitude": "0", "id": "8491733536", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 11:39:25", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8510/8490639509_fac3f25550_o.jpg", "secret": "64fff887ba", "media": "photo", "latitude": "0", "id": "8490639509", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 11:39:44", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8515/8490624887_e82ab2da47_o.jpg", "secret": "643c1543c8", "media": "photo", "latitude": "0", "id": "8490624887", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 11:55:30", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8381/8491740542_a47b723733_o.jpg", "secret": "c2af1e2263", "media": "photo", "latitude": "0", "id": "8491740542", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 11:57:55", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8515/8490634097_e8ea676335_o.jpg", "secret": "e4762bb2bc", "media": "photo", "latitude": "0", "id": "8490634097", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 12:00:19", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8087/8490627889_c37e072255_o.jpg", "secret": "6a36603b15", "media": "photo", "latitude": "0", "id": "8490627889", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 12:01:28", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8520/8490628859_3cc6e7c3ae_o.jpg", "secret": "52b0cf8a71", "media": "photo", "latitude": "0", "id": "8490628859", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 12:02:33", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8087/8490630037_82e3b69e92_o.jpg", "secret": "efbe3c5156", "media": "photo", "latitude": "0", "id": "8490630037", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 12:03:26", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8090/8490635143_d621810241_o.jpg", "secret": "c0b6c42ee5", "media": "photo", "latitude": "0", "id": "8490635143", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 12:03:27", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8367/8490635701_b8bd0e8b5e_o.jpg", "secret": "1733eb18cf", "media": "photo", "latitude": "0", "id": "8490635701", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 12:03:28", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8389/8491736194_4e7fbf5756_o.jpg", "secret": "ffeb37529d", "media": "photo", "latitude": "0", "id": "8491736194", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 12:03:29", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8377/8490637127_9e95002d87_o.jpg", "secret": "fac9f5569a", "media": "photo", "latitude": "0", "id": "8490637127", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 12:03:40", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8250/8491737774_5c4db8136c_o.jpg", "secret": "b8d7b2826d", "media": "photo", "latitude": "0", "id": "8491737774", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 12:05:44", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8372/8490641683_0473c3f7e7_o.jpg", "secret": "c0397267de", "media": "photo", "latitude": "0", "id": "8490641683", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 12:06:57", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8531/8491740008_bbd88456a8_o.jpg", "secret": "7e5b56cc25", "media": "photo", "latitude": "0", "id": "8491740008", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-02-06 12:11:36", "license": "4", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "text": "", "album_id": "72157632806954073", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8110/8490638641_491514a510_o.jpg", "secret": "fd70b20ae9", "media": "photo", "latitude": "0", "id": "8490638641", "tags": "city camp usa soldier army asia force military south united korea management installation soldiers states uso base command k6 garrison humphreys usfk pyeongtaek camphumphreys anjeongri imcom installationmanagementcommand unitedstatesforceskorea usaghumphreys paengseongeub paengseong anjeong"}, {"datetaken": "2013-04-06 21:23:21", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8528/8627047156_0571e5f206_o.jpg", "secret": "22fc6cfeea", "media": "photo", "latitude": "0", "id": "8627047156", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 22:09:07", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8102/8625937683_2b7fa68ea9_o.jpg", "secret": "549892700c", "media": "photo", "latitude": "0", "id": "8625937683", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 22:10:00", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8402/8625937837_3ffa06aa97_o.jpg", "secret": "4d90428cc9", "media": "photo", "latitude": "0", "id": "8625937837", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 22:10:31", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8110/8625937965_36d8316f25_o.jpg", "secret": "0646609b4f", "media": "photo", "latitude": "0", "id": "8625937965", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 22:10:59", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8383/8627047920_4398ab7ae3_o.jpg", "secret": "d0a76b5207", "media": "photo", "latitude": "0", "id": "8627047920", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 22:11:28", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8542/8627048120_cbffb04ce7_o.jpg", "secret": "0ac96b28f7", "media": "photo", "latitude": "0", "id": "8627048120", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 22:11:51", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8379/8627048330_48e3e380ea_o.jpg", "secret": "9597e7dc67", "media": "photo", "latitude": "0", "id": "8627048330", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 22:12:27", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8523/8627048542_de96832527_o.jpg", "secret": "e964b7849d", "media": "photo", "latitude": "0", "id": "8627048542", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 22:12:41", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8400/8627048916_cc69c2547b_o.jpg", "secret": "d4d454f085", "media": "photo", "latitude": "0", "id": "8627048916", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 22:15:19", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8394/8627049108_72fa99fe15_o.jpg", "secret": "2b257d1504", "media": "photo", "latitude": "0", "id": "8627049108", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 22:20:07", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8537/8627049322_f0e6529b84_o.jpg", "secret": "d4756199fa", "media": "photo", "latitude": "0", "id": "8627049322", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 22:28:28", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8406/8627049652_a1d394f9b0_o.jpg", "secret": "37053bacfa", "media": "photo", "latitude": "0", "id": "8627049652", "tags": "irish hospital pub brandon going away trina regional obriens 5south brh"}, {"datetaken": "2013-04-06 22:29:07", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8392/8625940065_066ddf137f_o.jpg", "secret": "2ecd4b6ef5", "media": "photo", "latitude": "0", "id": "8625940065", "tags": "irish hospital nicole pub jon brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 22:29:37", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8247/8627050086_6b931a91a6_o.jpg", "secret": "c8aab0a77b", "media": "photo", "latitude": "0", "id": "8627050086", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 23:00:38", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8099/8625940479_0710978e6e_o.jpg", "secret": "025cf65a26", "media": "photo", "latitude": "0", "id": "8625940479", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 23:01:20", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8259/8627050534_3746be046d_o.jpg", "secret": "791b3f8071", "media": "photo", "latitude": "0", "id": "8627050534", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 23:03:14", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8103/8627050620_deb68fe076_o.jpg", "secret": "8a92b9f2ba", "media": "photo", "latitude": "0", "id": "8627050620", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 23:05:29", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8266/8627050956_1afa3ffc2d_o.jpg", "secret": "44a43b9e12", "media": "photo", "latitude": "0", "id": "8627050956", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 23:07:19", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8379/8625941419_f76510bebb_o.jpg", "secret": "6aafc7bd99", "media": "photo", "latitude": "0", "id": "8625941419", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 23:08:04", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8241/8627051282_efc5e49ae2_o.jpg", "secret": "d487dac0bd", "media": "photo", "latitude": "0", "id": "8627051282", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 23:09:14", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8263/8627051482_21bdfd8d55_o.jpg", "secret": "3cce006c07", "media": "photo", "latitude": "0", "id": "8627051482", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 23:18:00", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8395/8627051710_932a554df6_o.jpg", "secret": "482658b076", "media": "photo", "latitude": "0", "id": "8627051710", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 23:19:10", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8260/8625942251_32df5fd42c_o.jpg", "secret": "b0a51fc1e0", "media": "photo", "latitude": "0", "id": "8625942251", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 23:48:13", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8260/8625942441_c935445cb0_o.jpg", "secret": "218188c6d0", "media": "photo", "latitude": "0", "id": "8625942441", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 23:49:07", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8532/8625942653_6212548122_o.jpg", "secret": "038ecab838", "media": "photo", "latitude": "0", "id": "8625942653", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 23:50:42", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8387/8627052520_aa16c41983_o.jpg", "secret": "255dfcf7f4", "media": "photo", "latitude": "0", "id": "8627052520", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 23:51:20", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8101/8625943159_b466b42b6c_o.jpg", "secret": "cff9676326", "media": "photo", "latitude": "0", "id": "8625943159", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 23:53:02", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8404/8625943475_9c14373da8_o.jpg", "secret": "5e86173648", "media": "photo", "latitude": "0", "id": "8625943475", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2013-04-06 23:58:12", "license": "1", "title": "O'Briens Going Away Party", "text": "", "album_id": "72157633184822264", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8259/8627053398_aa496013e8_o.jpg", "secret": "6f6b690ac6", "media": "photo", "latitude": "0", "id": "8627053398", "tags": "irish hospital pub brandon going away regional obriens 5south brh"}, {"datetaken": "2011-04-26 10:56:42", "license": "2", "title": "110426-M-8793-B 137", "text": "", "album_id": "72157626743581057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2522/5790273812_145fea15bb_o.jpg", "secret": "a80c1f5e93", "media": "photo", "latitude": "0", "id": "5790273812", "tags": "equestrianprogram warriorathletereconditioningprogram woundedwarrriorregiment"}, {"datetaken": "2011-04-26 10:59:31", "license": "2", "title": "110426-M-8793-B 165", "text": "", "album_id": "72157626743581057", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3316/5790275576_314ab3d155_o.jpg", "secret": "f45a10f9c4", "media": "photo", "latitude": "0", "id": "5790275576", "tags": "equestrianprogram warriorathletereconditioningprogram woundedwarrriorregiment"}, {"datetaken": "2011-04-26 10:59:42", "license": "2", "title": "110426-M-8793-B 171", "text": "", "album_id": "72157626743581057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/5789721103_ed84dda7e8_o.jpg", "secret": "cd9c5d68d8", "media": "photo", "latitude": "0", "id": "5789721103", "tags": "equestrianprogram warriorathletereconditioningprogram woundedwarrriorregiment"}, {"datetaken": "2011-04-26 11:17:19", "license": "2", "title": "110426-M-8793-B 198", "text": "", "album_id": "72157626743581057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/5790276418_7e62d72137_o.jpg", "secret": "2ccc8a90e2", "media": "photo", "latitude": "0", "id": "5790276418", "tags": "equestrianprogram warriorathletereconditioningprogram woundedwarrriorregiment"}, {"datetaken": "2011-04-26 11:21:31", "license": "2", "title": "110426-M-8793-B 245", "text": "", "album_id": "72157626743581057", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5267/5789721911_d1552f89ea_o.jpg", "secret": "3c21390687", "media": "photo", "latitude": "0", "id": "5789721911", "tags": "equestrianprogram warriorathletereconditioningprogram woundedwarrriorregiment"}, {"datetaken": "2011-04-26 11:21:32", "license": "2", "title": "110426-M-8793-B 246", "text": "", "album_id": "72157626743581057", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3124/5789722295_67d24b4d96_o.jpg", "secret": "63ff6e8e93", "media": "photo", "latitude": "0", "id": "5789722295", "tags": "equestrianprogram warriorathletereconditioningprogram woundedwarrriorregiment"}, {"datetaken": "2011-04-26 11:26:02", "license": "2", "title": "110426-M-8793-B 283", "text": "", "album_id": "72157626743581057", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5183/5790277602_40fc8f17ba_o.jpg", "secret": "8f4309ace9", "media": "photo", "latitude": "0", "id": "5790277602", "tags": "equestrianprogram warriorathletereconditioningprogram woundedwarrriorregiment"}, {"datetaken": "2011-04-26 11:28:08", "license": "2", "title": "110426-M-8793-B 308", "text": "", "album_id": "72157626743581057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2312/5790278016_9ea4be7043_o.jpg", "secret": "cf0ac0a63a", "media": "photo", "latitude": "0", "id": "5790278016", "tags": "equestrianprogram warriorathletereconditioningprogram woundedwarrriorregiment"}, {"datetaken": "2011-04-26 11:28:35", "license": "2", "title": "110426-M-8793-B 314", "text": "", "album_id": "72157626743581057", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5145/5789723597_b01ce2f4f3_o.jpg", "secret": "6fc6b1af04", "media": "photo", "latitude": "0", "id": "5789723597", "tags": "equestrianprogram warriorathletereconditioningprogram woundedwarrriorregiment"}, {"datetaken": "2011-04-26 11:29:52", "license": "2", "title": "110426-M-8793-B 332", "text": "", "album_id": "72157626743581057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2654/5789723949_9b69279a6f_o.jpg", "secret": "303005e461", "media": "photo", "latitude": "0", "id": "5789723949", "tags": "equestrianprogram warriorathletereconditioningprogram woundedwarrriorregiment"}, {"datetaken": "2011-04-26 11:43:51", "license": "2", "title": "110426-M-8793-B 411", "text": "", "album_id": "72157626743581057", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3061/5790279098_5c6cd4d925_o.jpg", "secret": "85b4bb0b76", "media": "photo", "latitude": "0", "id": "5790279098", "tags": "equestrianprogram warriorathletereconditioningprogram woundedwarrriorregiment"}, {"datetaken": "2011-04-26 11:45:05", "license": "2", "title": "110426-M-8793-B 429", "text": "", "album_id": "72157626743581057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2045/5790279448_eb47cb19b5_o.jpg", "secret": "53117bfded", "media": "photo", "latitude": "0", "id": "5790279448", "tags": "equestrianprogram warriorathletereconditioningprogram woundedwarrriorregiment"}, {"datetaken": "2011-04-26 11:48:04", "license": "2", "title": "110426-M-8793-B 447", "text": "", "album_id": "72157626743581057", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3336/5789724875_864e3ce333_o.jpg", "secret": "41fc092303", "media": "photo", "latitude": "0", "id": "5789724875", "tags": "equestrianprogram warriorathletereconditioningprogram woundedwarrriorregiment"}, {"datetaken": "2011-04-26 12:27:36", "license": "2", "title": "110426-M-8793-B 464", "text": "", "album_id": "72157626743581057", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3597/5790280384_0e61955bdc_o.jpg", "secret": "7711eb1d6e", "media": "photo", "latitude": "0", "id": "5790280384", "tags": "equestrianprogram warriorathletereconditioningprogram woundedwarrriorregiment"}, {"datetaken": "2010-07-02 09:25:35", "license": "5", "title": "Edinburgh Graduation in Second Life", "text": "", "album_id": "72157624281890851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4755363840_5144c5f6e7_o.jpg", "secret": "54be8452d3", "media": "video", "latitude": "0", "id": "4755363840", "tags": "scotland graduation secondlife highereducation universityofedinburgh"}, {"datetaken": "2010-07-02 11:58:02", "license": "5", "title": "University of Edinburgh Graduation in Second Life 2010", "text": "", "album_id": "72157624281890851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4754659115_65f8500db1_o.png", "secret": "34b04a1480", "media": "photo", "latitude": "0", "id": "4754659115", "tags": "scotland edinburgh graduation secondlife vue highereducation"}, {"datetaken": "2010-07-02 11:58:03", "license": "5", "title": "University of Edinburgh Graduation in Second Life 2010", "text": "", "album_id": "72157624281890851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4755299024_53510fe51d_o.png", "secret": "467061332e", "media": "photo", "latitude": "0", "id": "4755299024", "tags": "scotland edinburgh graduation secondlife vue highereducation"}, {"datetaken": "2010-07-02 11:58:05", "license": "5", "title": "University of Edinburgh Graduation in Second Life 2010", "text": "", "album_id": "72157624281890851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4755299078_f7f63b9140_o.png", "secret": "c443618cf9", "media": "photo", "latitude": "0", "id": "4755299078", "tags": "scotland edinburgh graduation secondlife vue highereducation"}, {"datetaken": "2010-07-02 11:58:06", "license": "5", "title": "University of Edinburgh Graduation in Second Life 2010", "text": "", "album_id": "72157624281890851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4755299130_84766bd9e7_o.png", "secret": "9f960abac3", "media": "photo", "latitude": "0", "id": "4755299130", "tags": "scotland edinburgh graduation secondlife vue highereducation"}, {"datetaken": "2010-07-02 11:58:07", "license": "5", "title": "University of Edinburgh Graduation in Second Life 2010", "text": "", "album_id": "72157624281890851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4754659317_672289ab40_o.png", "secret": "1cd446fa0e", "media": "photo", "latitude": "0", "id": "4754659317", "tags": "scotland edinburgh graduation secondlife vue highereducation"}, {"datetaken": "2010-07-02 11:58:09", "license": "5", "title": "University of Edinburgh Graduation in Second Life 2010", "text": "", "album_id": "72157624281890851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4755299226_cc54e4a9df_o.png", "secret": "1dd16dd8bf", "media": "photo", "latitude": "0", "id": "4755299226", "tags": "scotland edinburgh graduation secondlife vue highereducation"}, {"datetaken": "2010-07-02 11:58:10", "license": "5", "title": "University of Edinburgh Graduation in Second Life 2010", "text": "", "album_id": "72157624281890851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4754659399_9f13bcdfd4_o.jpg", "secret": "dd44f3ff72", "media": "photo", "latitude": "0", "id": "4754659399", "tags": "scotland edinburgh graduation secondlife vue highereducation"}, {"datetaken": "2010-07-02 11:58:11", "license": "5", "title": "University of Edinburgh Graduation in Second Life 2010", "text": "", "album_id": "72157624281890851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4754659443_7ac4c3e527_o.png", "secret": "fd7a97f195", "media": "photo", "latitude": "0", "id": "4754659443", "tags": "scotland edinburgh graduation secondlife vue highereducation"}, {"datetaken": "2010-07-02 19:52:26", "license": "5", "title": "University of Edinburgh Graduation Virtually for Real, 7.2010", "text": "", "album_id": "72157624281890851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4756675296_cd84933590_o.jpg", "secret": "060c945bd4", "media": "video", "latitude": "0", "id": "4756675296", "tags": "scotland secondlife vue highereducation universityofedinburgh"}, {"datetaken": "2009-05-15 15:23:36", "license": "2", "title": "2009 Penn College Commencement 009", "text": "", "album_id": "72157625082576413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4126/4951104516_5f0c5fabd9_o.jpg", "secret": "3fc79326a1", "media": "photo", "latitude": "0", "id": "4951104516", "tags": "students spring events graduation ceremony pennstate commencement williamsport speakers commonwealth graduates academics campuses penncollege communityartscenter pennsylvaniacollegeoftechnology creditjoeyoder"}, {"datetaken": "2009-05-15 16:14:02", "license": "2", "title": "Penn College-2009 Penn College Commencement 010", "text": "", "album_id": "72157625082576413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/4950513101_ae10f2bb75_o.jpg", "secret": "a921938c29", "media": "photo", "latitude": "0", "id": "4950513101", "tags": "students spring events president graduation ceremony staff pennstate commencement williamsport speakers commonwealth faculty graduates academics campuses penncollege communityartscenter pennsylvaniacollegeoftechnology creditjoeyoder daviejanegilmour"}, {"datetaken": "2009-05-16 09:53:42", "license": "2", "title": "2009 Penn College Commencement 006", "text": "", "album_id": "72157625082576413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/4951103988_81659c80b4_o.jpg", "secret": "3a7cd0ee94", "media": "photo", "latitude": "0", "id": "4951103988", "tags": "students spring events president graduation ceremony police pennstate cap commencement williamsport commonwealth graduates academics dignitary policechief campuses penncollege mirabito communityartscenter pennsylvaniacollegeoftechnology creditjennifercline"}, {"datetaken": "2009-05-16 10:04:57", "license": "2", "title": "2009 Penn College Commencement 007", "text": "", "album_id": "72157625082576413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4113/4951104208_3094dcd053_o.jpg", "secret": "7d9909f192", "media": "photo", "latitude": "0", "id": "4951104208", "tags": "students spring events graduation ceremony line pennstate commencement williamsport commonwealth processional graduates academics campuses penncollege communityartscenter pennsylvaniacollegeoftechnology creditjoeyoder"}, {"datetaken": "2009-05-16 10:24:05", "license": "2", "title": "2009 Penn College Commencement 008", "text": "", "album_id": "72157625082576413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4951104378_7bedd5df8c_o.jpg", "secret": "33d7bb8520", "media": "photo", "latitude": "0", "id": "4951104378", "tags": "students spring events graduation ceremony medical staff pennstate commencement awards surgical professor williamsport commonwealth nursing faculty graduates academics associate campuses penncollege communityartscenter pennsylvaniacollegeoftechnology creditjoeyoder excellenceinteaching dottiemmathers"}, {"datetaken": "2009-05-16 10:26:07", "license": "2", "title": "2009 Penn College Commencement 002", "text": "", "album_id": "72157625082576413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/4951103124_5545ec4bb1_o.jpg", "secret": "383d2c8d82", "media": "photo", "latitude": "0", "id": "4951103124", "tags": "students spring events graduation ceremony staff pennstate commencement awards professor williamsport speakers commonwealth faculty assistant graduates academics physician campuses penncollege communityartscenter pennsylvaniacollegeoftechnology creditjoeyoder christinemkessler veronicammuzicmasterteacheraward"}, {"datetaken": "2009-05-16 10:32:56", "license": "2", "title": "2009 Penn College Commencement 001", "text": "", "album_id": "72157625082576413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4950511269_c14f651c8d_o.jpg", "secret": "fc3360cb7e", "media": "photo", "latitude": "0", "id": "4950511269", "tags": "students spring events president graduation ceremony pennstate commencement williamsport speakers commonwealth graduates tassel academics campuses penncollege communityartscenter pennsylvaniacollegeoftechnology creditjoeyoder daviejanegilmour"}, {"datetaken": "2009-05-16 11:19:23", "license": "2", "title": "2009 Penn College Commencement 011", "text": "", "album_id": "72157625082576413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4146/4950513269_e2b1333cbd_o.jpg", "secret": "8b7c75e2d9", "media": "photo", "latitude": "0", "id": "4950513269", "tags": "family students spring events president graduation ceremony police pennstate commencement williamsport commonwealth graduates academics dignitary policechief campuses penncollege mirabito communityartscenter pennsylvaniacollegeoftechnology creditjennifercline"}, {"datetaken": "2009-05-16 13:56:24", "license": "2", "title": "2009 Penn College Commencement 003", "text": "", "album_id": "72157625082576413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/4951103290_01ef7c5b00_o.jpg", "secret": "1db5a424b4", "media": "photo", "latitude": "0", "id": "4951103290", "tags": "students spring events graduation ceremony staff pennstate commencement awards williamsport speakers commonwealth faculty graduates instructor academics campuses culinaryarts penncollege communityartscenter hospitalitymanagement pennsylvaniacollegeoftechnology creditjoeyoder excellenceinteaching frankmsuchwala"}, {"datetaken": "2009-05-16 14:35:39", "license": "2", "title": "2009 Penn College Commencement 004", "text": "", "album_id": "72157625082576413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/4950511773_e42ea0fa56_o.jpg", "secret": "c7621a8f67", "media": "photo", "latitude": "0", "id": "4950511773", "tags": "students spring diploma events president graduation ceremony staff pennstate commencement williamsport chairman speakers commonwealth faculty graduates academics boardofdirectors campuses penncollege communityartscenter robertedunham pennsylvaniacollegeoftechnology creditjoeyoder daviejanegilmour"}, {"datetaken": "2009-05-16 15:04:45", "license": "2", "title": "2009 Penn College Commencement 005", "text": "", "album_id": "72157625082576413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/4950512055_23afb5a89e_o.jpg", "secret": "bf0b94e611", "media": "photo", "latitude": "0", "id": "4950512055", "tags": "family students spring events president graduation ceremony police pennstate commencement williamsport commonwealth graduates academics dignitary policechief campuses penncollege mirabito communityartscenter pennsylvaniacollegeoftechnology creditjennifercline"}, {"datetaken": "2011-06-03 12:47:42", "license": "1", "title": "IMG_2641", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm4.staticflickr.com/3254/5796534827_485dbdedd5_o.jpg", "secret": "7e9ae5d274", "media": "photo", "latitude": "43.012166", "id": "5796534827", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 12:51:30", "license": "1", "title": "IMG_2645", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm3.staticflickr.com/2553/5796538003_52c965aeab_o.jpg", "secret": "dcf949b915", "media": "photo", "latitude": "43.012166", "id": "5796538003", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 12:52:05", "license": "1", "title": "IMG_2648", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm3.staticflickr.com/2294/5796542119_360cb878ee_o.jpg", "secret": "e49951f981", "media": "photo", "latitude": "43.012166", "id": "5796542119", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 12:53:07", "license": "1", "title": "IMG_2655", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm4.staticflickr.com/3661/5796545929_bd8e66e433_o.jpg", "secret": "b18777a731", "media": "photo", "latitude": "43.012166", "id": "5796545929", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 12:57:28", "license": "1", "title": "IMG_2659", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm3.staticflickr.com/2126/5796550001_861399467d_o.jpg", "secret": "6e9f226538", "media": "photo", "latitude": "43.012166", "id": "5796550001", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 12:59:34", "license": "1", "title": "IMG_2663", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm4.staticflickr.com/3205/5797109814_cc0a63f3f7_o.jpg", "secret": "02b2080a14", "media": "photo", "latitude": "43.012166", "id": "5797109814", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 13:22:00", "license": "1", "title": "IMG_2674", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm3.staticflickr.com/2226/5797113040_3f2c03cae3_o.jpg", "secret": "027e1778f3", "media": "photo", "latitude": "43.012166", "id": "5797113040", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 13:22:12", "license": "1", "title": "IMG_2675", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm6.staticflickr.com/5158/5796559293_f63f7406c5_o.jpg", "secret": "60ca7c977e", "media": "photo", "latitude": "43.012166", "id": "5796559293", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 13:33:59", "license": "1", "title": "IMG_2689", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm4.staticflickr.com/3240/5796563005_8345219907_o.jpg", "secret": "d01b7a03aa", "media": "photo", "latitude": "43.012166", "id": "5796563005", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 14:07:17", "license": "1", "title": "IMG_2708", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm3.staticflickr.com/2468/5797123076_f4d0e50280_o.jpg", "secret": "05cd4e85dd", "media": "photo", "latitude": "43.012166", "id": "5797123076", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 14:07:21", "license": "1", "title": "IMG_2709", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm6.staticflickr.com/5316/5796568943_283a2ee5db_o.jpg", "secret": "ab848e5814", "media": "photo", "latitude": "43.012166", "id": "5796568943", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 14:07:30", "license": "1", "title": "IMG_2712", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm3.staticflickr.com/2332/5796571803_055e3734d0_o.jpg", "secret": "24443eee41", "media": "photo", "latitude": "43.012166", "id": "5796571803", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 14:08:00", "license": "1", "title": "IMG_2713", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm4.staticflickr.com/3393/5796574149_b86122923c_o.jpg", "secret": "3df80154ca", "media": "photo", "latitude": "43.012166", "id": "5796574149", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 14:08:41", "license": "1", "title": "IMG_2716", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm6.staticflickr.com/5146/5797132928_7045c36ce3_o.jpg", "secret": "6e4f8d7b1f", "media": "photo", "latitude": "43.012166", "id": "5797132928", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 14:08:58", "license": "1", "title": "IMG_2717", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm4.staticflickr.com/3250/5797135106_570642ac58_o.jpg", "secret": "cca3cf1c92", "media": "photo", "latitude": "43.012166", "id": "5797135106", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 14:09:39", "license": "1", "title": "IMG_2723", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm3.staticflickr.com/2440/5796580551_cf2805349a_o.jpg", "secret": "31802b6040", "media": "photo", "latitude": "43.012166", "id": "5796580551", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 14:12:54", "license": "1", "title": "IMG_2733", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm3.staticflickr.com/2430/5797142036_5a7dd2a8b5_o.jpg", "secret": "e4cbcc6e07", "media": "photo", "latitude": "43.012166", "id": "5797142036", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 14:32:50", "license": "1", "title": "IMG_2740", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm4.staticflickr.com/3226/5797144524_c51a2159dd_o.jpg", "secret": "ca20e8d0b1", "media": "photo", "latitude": "43.012166", "id": "5797144524", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2011-06-03 14:33:16", "license": "1", "title": "IMG_2748", "text": "", "album_id": "72157626883275776", "longitude": "-87.953667", "url_o": "https://farm6.staticflickr.com/5031/5796590711_c77877bfcd_o.jpg", "secret": "6091b2767f", "media": "photo", "latitude": "43.012166", "id": "5796590711", "tags": "graduation ceremony highschool milwaukee awards supar schoolforurbanplanningandarchitecture walkercampus"}, {"datetaken": "2009-05-09 02:09:33", "license": "3", "title": "Katie's Graduation", "text": "", "album_id": "72157617832818157", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3631/3517007914_4391de2d5d_o.jpg", "secret": "b0dda48f42", "media": "photo", "latitude": "0", "id": "3517007914", "tags": "diploma katie graduation ceremony indiana muncie ballstateuniversity"}, {"datetaken": "2009-05-09 02:10:08", "license": "3", "title": "Katie's Graduation", "text": "", "album_id": "72157617832818157", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3606/3516194399_bd8204a3d6_o.jpg", "secret": "1458820d12", "media": "photo", "latitude": "0", "id": "3516194399", "tags": "diploma katie graduation ceremony indiana muncie ballstateuniversity"}, {"datetaken": "2009-05-09 14:51:45", "license": "3", "title": "Katie's Graduation", "text": "", "album_id": "72157617832818157", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3566/3517006774_292a18bec0_o.jpg", "secret": "c3f9dede42", "media": "photo", "latitude": "0", "id": "3517006774", "tags": "diploma katie graduation ceremony indiana muncie ballstateuniversity"}, {"datetaken": "2009-05-09 14:51:51", "license": "3", "title": "Katie's Graduation", "text": "", "album_id": "72157617832818157", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3305/3517006004_9a16a45ca1_o.jpg", "secret": "cb98e953c9", "media": "photo", "latitude": "0", "id": "3517006004", "tags": "diploma katie graduation ceremony indiana muncie ballstateuniversity"}, {"datetaken": "2009-05-09 15:07:21", "license": "3", "title": "Katie's Graduation", "text": "", "album_id": "72157617832818157", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3362/3517000430_afce6323bd_o.jpg", "secret": "727948f3c2", "media": "photo", "latitude": "0", "id": "3517000430", "tags": "diploma katie graduation ceremony indiana muncie ballstateuniversity"}, {"datetaken": "2009-05-09 15:14:15", "license": "3", "title": "Katie's Graduation", "text": "", "album_id": "72157617832818157", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3391/3517001028_0cd9867c5d_o.jpg", "secret": "3afd3fb502", "media": "photo", "latitude": "0", "id": "3517001028", "tags": "diploma katie graduation ceremony indiana muncie ballstateuniversity"}, {"datetaken": "2009-05-09 15:14:29", "license": "3", "title": "Katie's Graduation", "text": "", "album_id": "72157617832818157", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3574/3517001752_3806de1636_o.jpg", "secret": "856873c7eb", "media": "photo", "latitude": "0", "id": "3517001752", "tags": "diploma katie graduation ceremony indiana muncie ballstateuniversity"}, {"datetaken": "2009-05-09 15:14:56", "license": "3", "title": "Katie's Graduation", "text": "", "album_id": "72157617832818157", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3598/3517002472_3d18a717de_o.jpg", "secret": "ab61243583", "media": "photo", "latitude": "0", "id": "3517002472", "tags": "diploma katie graduation ceremony indiana muncie ballstateuniversity"}, {"datetaken": "2009-05-09 15:14:57", "license": "3", "title": "Katie's Graduation", "text": "", "album_id": "72157617832818157", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3314/3516190083_e5b51d6b1b_o.jpg", "secret": "6437057ee5", "media": "photo", "latitude": "0", "id": "3516190083", "tags": "diploma katie graduation ceremony indiana muncie ballstateuniversity"}, {"datetaken": "2009-05-09 15:15:26", "license": "3", "title": "Katie's Graduation", "text": "", "album_id": "72157617832818157", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3180/3516190805_19f075335b_o.jpg", "secret": "e281076b5b", "media": "photo", "latitude": "0", "id": "3516190805", "tags": "diploma katie graduation ceremony indiana muncie ballstateuniversity"}, {"datetaken": "2009-05-09 15:15:39", "license": "3", "title": "Katie's Graduation", "text": "", "album_id": "72157617832818157", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3607/3517004332_01b47cb6f8_o.jpg", "secret": "26023dd95f", "media": "photo", "latitude": "0", "id": "3517004332", "tags": "diploma katie graduation ceremony indiana muncie ballstateuniversity"}, {"datetaken": "2009-05-09 15:16:05", "license": "3", "title": "Katie's Graduation", "text": "", "album_id": "72157617832818157", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3337/3517005154_bc3963abd6_o.jpg", "secret": "2268f80f31", "media": "photo", "latitude": "0", "id": "3517005154", "tags": "diploma katie graduation ceremony indiana muncie ballstateuniversity"}, {"datetaken": "2011-08-05 15:15:20", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6208/6026552536_d242dcbecd_o.jpg", "secret": "b13d51437d", "media": "photo", "latitude": "0", "id": "6026552536", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:15:30", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6072/6026553548_93d9bd9796_o.jpg", "secret": "5f33ac09a3", "media": "photo", "latitude": "0", "id": "6026553548", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:16:54", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6200/6025999123_2f0d86fbaf_o.jpg", "secret": "374b67f329", "media": "photo", "latitude": "0", "id": "6025999123", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:18:28", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6121/6026555754_f13486c3a5_o.jpg", "secret": "2e1c09b74a", "media": "photo", "latitude": "0", "id": "6026555754", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:20:24", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6207/6026002067_36c2a9eb6b_o.jpg", "secret": "836769c0d7", "media": "photo", "latitude": "0", "id": "6026002067", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:20:35", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6183/6026003717_cb0e842d7b_o.jpg", "secret": "d036035511", "media": "photo", "latitude": "0", "id": "6026003717", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:20:39", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6062/6026560598_9393047902_o.jpg", "secret": "ce929c9e3a", "media": "photo", "latitude": "0", "id": "6026560598", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:20:48", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6086/6026006397_f74461e95b_o.jpg", "secret": "36449dd529", "media": "photo", "latitude": "0", "id": "6026006397", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:21:38", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6069/6026007863_fa4346b0fc_o.jpg", "secret": "9feaa39133", "media": "photo", "latitude": "0", "id": "6026007863", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:22:31", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6075/6026008775_a577f6d5a5_o.jpg", "secret": "d3b4d2c4ae", "media": "photo", "latitude": "0", "id": "6026008775", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:22:52", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6197/6026564664_8fcde299c6_o.jpg", "secret": "8ea8fe9bc7", "media": "photo", "latitude": "0", "id": "6026564664", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:35:36", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6200/6026010213_093c1ee579_o.jpg", "secret": "976aaa6560", "media": "photo", "latitude": "0", "id": "6026010213", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:35:41", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6084/6026010947_fae85de701_o.jpg", "secret": "35b836cff0", "media": "photo", "latitude": "0", "id": "6026010947", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:37:07", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6198/6026567004_47e2e927ca_o.jpg", "secret": "33504fb842", "media": "photo", "latitude": "0", "id": "6026567004", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:39:18", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6139/6026567736_146752398a_o.jpg", "secret": "45dedacfff", "media": "photo", "latitude": "0", "id": "6026567736", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:43:51", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6134/6026013117_540fec2910_o.jpg", "secret": "ea09b97592", "media": "photo", "latitude": "0", "id": "6026013117", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:43:56", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6135/6026013697_a36f9fe5d9_o.jpg", "secret": "f76a88aa5d", "media": "photo", "latitude": "0", "id": "6026013697", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:45:16", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6135/6026569312_be7d8f0379_o.jpg", "secret": "4b1bd76a0b", "media": "photo", "latitude": "0", "id": "6026569312", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:46:15", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6207/6026569922_ae80fe2541_o.jpg", "secret": "3a51c8ca0a", "media": "photo", "latitude": "0", "id": "6026569922", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:48:49", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6141/6026570390_236c75dbb1_o.jpg", "secret": "93610388de", "media": "photo", "latitude": "0", "id": "6026570390", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2011-08-05 15:51:33", "license": "2", "title": "Kobe Seijoh High School students visit Monterey", "text": "", "album_id": "72157627270728793", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6182/6026570634_63feefb285_o.jpg", "secret": "2fb47bd72f", "media": "photo", "latitude": "0", "id": "6026570634", "tags": "english japan japanese esl summerschool"}, {"datetaken": "2009-05-10 08:41:07", "license": "1", "title": "SU Graduation 2009 - Setup", "text": "", "album_id": "72157617993794464", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3324/3522481654_cae067b0ce_o.jpg", "secret": "4f636d8c28", "media": "photo", "latitude": "0", "id": "3522481654", "tags": "orange graduation ceremony syracuse commencement carrierdome"}, {"datetaken": "2009-05-10 09:27:49", "license": "1", "title": "SU Graduation 2009 - Crowd", "text": "", "album_id": "72157617993794464", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3328/3521672833_ba16e49fdd_o.jpg", "secret": "7259804d33", "media": "photo", "latitude": "0", "id": "3521672833", "tags": "orange graduation ceremony syracuse commencement carrierdome"}, {"datetaken": "2009-05-10 10:47:18", "license": "1", "title": "SU Graduation 2009 - Ceremony", "text": "", "album_id": "72157617993794464", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3327/3522483512_d008a3557c_o.jpg", "secret": "d33141286b", "media": "photo", "latitude": "0", "id": "3522483512", "tags": "orange graduation ceremony syracuse commencement carrierdome"}, {"datetaken": "2009-05-10 11:33:34", "license": "1", "title": "SU Graduation 2009 - Jumbotron Biden", "text": "", "album_id": "72157617993794464", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3380/3521674619_22b7427e48_o.jpg", "secret": "167ec0efdd", "media": "photo", "latitude": "0", "id": "3521674619", "tags": "orange graduation ceremony syracuse commencement carrierdome biden"}, {"datetaken": "2009-05-10 11:52:29", "license": "1", "title": "SU Graduation 2009 - Jumbotron", "text": "", "album_id": "72157617993794464", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3658/3521675369_ba94e77376_o.jpg", "secret": "c37a2e8d0e", "media": "photo", "latitude": "0", "id": "3521675369", "tags": "orange graduation ceremony syracuse commencement carrierdome"}, {"datetaken": "2009-05-10 11:53:14", "license": "1", "title": "SU Graduation 2009 - Conferring PhDs on the Group", "text": "", "album_id": "72157617993794464", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3415/3521676225_d397369722_o.jpg", "secret": "143a0a61e6", "media": "photo", "latitude": "0", "id": "3521676225", "tags": "orange graduation ceremony syracuse commencement carrierdome"}, {"datetaken": "2009-05-10 11:59:30", "license": "1", "title": "SU Graduation 2009 - Greeted by Nancy Cantor", "text": "", "album_id": "72157617993794464", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3305/3521676989_7896eb2d33_o.jpg", "secret": "e115958a9d", "media": "photo", "latitude": "0", "id": "3521676989", "tags": "orange graduation ceremony syracuse commencement carrierdome"}, {"datetaken": "2009-05-10 12:13:50", "license": "1", "title": "SU Graduation 2009 - Carrier Dome", "text": "", "album_id": "72157617993794464", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3301/3522487644_5bc5db3d1a_o.jpg", "secret": "4c0d45d327", "media": "photo", "latitude": "0", "id": "3522487644", "tags": "orange graduation ceremony syracuse commencement carrierdome"}, {"datetaken": "2009-05-10 12:20:53", "license": "1", "title": "SU Graduation 2009 - Ph. with Otto", "text": "", "album_id": "72157617993794464", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3578/3522488496_47b16aea60_o.jpg", "secret": "f8cdaf8ec4", "media": "photo", "latitude": "0", "id": "3522488496", "tags": "orange graduation ceremony syracuse commencement carrierdome"}, {"datetaken": "2009-05-10 12:30:55", "license": "1", "title": "SU Graduation 2009 - At HBC with Faculty", "text": "", "album_id": "72157617993794464", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3371/3521679429_5a25ce8e7d_o.jpg", "secret": "e10e1f293b", "media": "photo", "latitude": "0", "id": "3521679429", "tags": "orange graduation ceremony syracuse commencement faculty carrierdome"}, {"datetaken": "2009-05-11 10:56:55", "license": "1", "title": "SU Graduation 2009 - Hooding", "text": "", "album_id": "72157617993794464", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3408/3521670895_9bc45526d5_o.jpg", "secret": "7b753da398", "media": "photo", "latitude": "0", "id": "3521670895", "tags": "orange graduation ceremony syracuse commencement hooding carrierdome"}, {"datetaken": "2009-05-11 10:57:00", "license": "1", "title": "SU Graduation 2009 - Before Hooding/Prom", "text": "", "album_id": "72157617993794464", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3615/3521671139_2319a39667_o.jpg", "secret": "8904206f2a", "media": "photo", "latitude": "0", "id": "3521671139", "tags": "orange graduation ceremony syracuse commencement hooding carrierdome"}, {"datetaken": "2011-11-10 16:16:58", "license": "4", "title": "Winchester", "text": "", "album_id": "72157627978450369", "longitude": "-1.313500", "url_o": "https://farm7.staticflickr.com/6099/6334579668_3f2b33b5b8_o.jpg", "secret": "185e371de5", "media": "photo", "latitude": "51.059667", "id": "6334579668", "tags": "close cathedral sw winchester"}, {"datetaken": "2011-11-10 16:21:00", "license": "4", "title": "Winchester", "text": "", "album_id": "72157627978450369", "longitude": "-1.315000", "url_o": "https://farm7.staticflickr.com/6096/6334580466_8980febe1c_o.jpg", "secret": "741452e574", "media": "photo", "latitude": "51.060000", "id": "6334580466", "tags": "close cathedral sw winchester"}, {"datetaken": "2011-11-10 16:22:48", "license": "4", "title": "Winchester", "text": "", "album_id": "72157627978450369", "longitude": "-1.315667", "url_o": "https://farm7.staticflickr.com/6237/6334581110_37c2121814_o.jpg", "secret": "20cea72502", "media": "photo", "latitude": "51.060000", "id": "6334581110", "tags": "close cathedral sw winchester"}, {"datetaken": "2011-11-10 16:27:33", "license": "4", "title": "Winchester", "text": "", "album_id": "72157627978450369", "longitude": "-1.314334", "url_o": "https://farm7.staticflickr.com/6055/6333826851_682843e2ae_o.jpg", "secret": "2e1053b5c3", "media": "photo", "latitude": "51.060833", "id": "6333826851", "tags": "close cathedral sw winchester"}, {"datetaken": "2011-11-10 16:27:43", "license": "4", "title": "Winchester", "text": "", "album_id": "72157627978450369", "longitude": "-1.314500", "url_o": "https://farm7.staticflickr.com/6037/6333827635_fdc6f6e52d_o.jpg", "secret": "fc1519ef65", "media": "photo", "latitude": "51.060833", "id": "6333827635", "tags": "close cathedral sw winchester"}, {"datetaken": "2011-11-10 16:28:47", "license": "4", "title": "Winchester", "text": "", "album_id": "72157627978450369", "longitude": "-1.314333", "url_o": "https://farm7.staticflickr.com/6031/6333828043_ffce845ed7_o.jpg", "secret": "d37e3ebcc4", "media": "photo", "latitude": "51.061000", "id": "6333828043", "tags": "close cathedral sw winchester"}, {"datetaken": "2011-11-10 16:29:12", "license": "4", "title": "Winchester", "text": "", "album_id": "72157627978450369", "longitude": "-1.314667", "url_o": "https://farm7.staticflickr.com/6097/6334583510_10dd7d89ba_o.jpg", "secret": "5129a44bc9", "media": "photo", "latitude": "51.061000", "id": "6334583510", "tags": "sw winchester"}, {"datetaken": "2011-11-10 16:29:40", "license": "4", "title": "Winchester", "text": "", "album_id": "72157627978450369", "longitude": "-1.314667", "url_o": "https://farm7.staticflickr.com/6221/6334584086_638a1498a1_o.jpg", "secret": "c1e414a888", "media": "photo", "latitude": "51.061000", "id": "6334584086", "tags": "close cathedral sw winchester"}, {"datetaken": "2011-11-10 16:34:33", "license": "4", "title": "Winchester", "text": "", "album_id": "72157627978450369", "longitude": "-1.313667", "url_o": "https://farm7.staticflickr.com/6228/6334584586_82e405bfd0_o.jpg", "secret": "5c9e1f681a", "media": "photo", "latitude": "51.060500", "id": "6334584586", "tags": "close cathedral sw winchester"}, {"datetaken": "2011-11-10 16:35:40", "license": "4", "title": "Winchester", "text": "", "album_id": "72157627978450369", "longitude": "-1.313500", "url_o": "https://farm7.staticflickr.com/6049/6333830581_ceae8eeb63_o.jpg", "secret": "b03a46f700", "media": "photo", "latitude": "51.060333", "id": "6333830581", "tags": "close cathedral sw winchester"}, {"datetaken": "2011-11-10 16:39:11", "license": "4", "title": "Winchester", "text": "", "album_id": "72157627978450369", "longitude": "-1.314500", "url_o": "https://farm7.staticflickr.com/6212/6334585988_ccb7a193d5_o.jpg", "secret": "eba0d5d50d", "media": "photo", "latitude": "51.059333", "id": "6334585988", "tags": "close cathedral sw winchester"}, {"datetaken": "2011-11-10 16:43:20", "license": "4", "title": "Winchester", "text": "", "album_id": "72157627978450369", "longitude": "-1.313167", "url_o": "https://farm7.staticflickr.com/6223/6334587346_3e9cd51f50_o.jpg", "secret": "213197bc82", "media": "photo", "latitude": "51.058667", "id": "6334587346", "tags": "close cathedral sw winchester"}, {"datetaken": "2011-11-10 18:04:53", "license": "4", "title": "Winchester", "text": "", "album_id": "72157627978450369", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6228/6333854725_0fc552e003_o.jpg", "secret": "dccab2185c", "media": "photo", "latitude": "0", "id": "6333854725", "tags": "moon west hill sw winchester"}, {"datetaken": "2009-06-14 08:53:21", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3398/3626594933_e8d8f28367_o.jpg", "secret": "16cb449dd5", "media": "photo", "latitude": "0", "id": "3626594933", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 08:53:24", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3605/3626595009_42576bfca9_o.jpg", "secret": "eaa3db3b31", "media": "photo", "latitude": "0", "id": "3626595009", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 08:53:33", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3611/3626595055_d7021f6124_o.jpg", "secret": "8fd37b6523", "media": "photo", "latitude": "0", "id": "3626595055", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 08:57:29", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3342/3627409856_9b2aa39321_o.jpg", "secret": "4d0a8761c1", "media": "photo", "latitude": "0", "id": "3627409856", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 08:57:35", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3631/3627409966_9058c9fbb3_o.jpg", "secret": "ed0557b81f", "media": "photo", "latitude": "0", "id": "3627409966", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 09:16:49", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2451/3627410048_929555a083_o.jpg", "secret": "f5db001a96", "media": "photo", "latitude": "0", "id": "3627410048", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 09:17:15", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3342/3626595475_f1cc242d4c_o.jpg", "secret": "2059905704", "media": "photo", "latitude": "0", "id": "3626595475", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 09:37:59", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3630/3626595623_5cb7f54716_o.jpg", "secret": "8494cd038c", "media": "photo", "latitude": "0", "id": "3626595623", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 10:03:46", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2481/3627410530_78791affda_o.jpg", "secret": "97c518acfd", "media": "photo", "latitude": "0", "id": "3627410530", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 10:04:05", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3414/3626595841_457d99b909_o.jpg", "secret": "c7fb6ff7e9", "media": "photo", "latitude": "0", "id": "3626595841", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 11:17:43", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3588/3626595905_af183ed829_o.jpg", "secret": "fc2ccd80f1", "media": "photo", "latitude": "0", "id": "3626595905", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 13:02:45", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2457/3626595949_16120b9351_o.jpg", "secret": "42807cf146", "media": "photo", "latitude": "0", "id": "3626595949", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 13:05:44", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3415/3627410746_88d6d86774_o.jpg", "secret": "994515523d", "media": "photo", "latitude": "0", "id": "3627410746", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 13:20:36", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3390/3627410884_59f4a89541_o.jpg", "secret": "6482f66e49", "media": "photo", "latitude": "0", "id": "3627410884", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 13:23:30", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3606/3627411018_f671b580a7_o.jpg", "secret": "819b86a87a", "media": "photo", "latitude": "0", "id": "3627411018", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 14:10:38", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3035/3626596413_576464ac06_o.jpg", "secret": "16b766178d", "media": "photo", "latitude": "0", "id": "3626596413", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 15:16:55", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2436/3627411224_a5c98b31e0_o.jpg", "secret": "ebabc32608", "media": "photo", "latitude": "0", "id": "3627411224", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 15:17:30", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3656/3626596625_3cc9834b29_o.jpg", "secret": "959a58b774", "media": "photo", "latitude": "0", "id": "3626596625", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 15:18:17", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3608/3627411492_86112d2264_o.jpg", "secret": "77c60f1c0e", "media": "photo", "latitude": "0", "id": "3627411492", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 15:23:32", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3537/3627411592_1729a81902_o.jpg", "secret": "62cc5ec1b9", "media": "photo", "latitude": "0", "id": "3627411592", "tags": "graduation stanford"}, {"datetaken": "2009-06-14 15:29:33", "license": "1", "title": "Stanford Graduation", "text": "", "album_id": "72157619680518585", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3656/3626597027_902c3b8b99_o.jpg", "secret": "11104cf963", "media": "photo", "latitude": "0", "id": "3626597027", "tags": "graduation stanford"}, {"datetaken": "2010-06-15 20:32:01", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4701477749_91525103fc_o.jpg", "secret": "014c3b33cb", "media": "photo", "latitude": "0", "id": "4701477749", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn"}, {"datetaken": "2010-06-15 20:37:33", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4701478893_f55d6cfe98_o.jpg", "secret": "f4974d7a8f", "media": "photo", "latitude": "0", "id": "4701478893", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn principalmelissaklopfer"}, {"datetaken": "2010-06-15 20:39:24", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1283/4702114608_2230764ff5_o.jpg", "secret": "2c014c341b", "media": "photo", "latitude": "0", "id": "4702114608", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn"}, {"datetaken": "2010-06-15 20:44:20", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4702115900_f041491347_o.jpg", "secret": "1744dff3f8", "media": "photo", "latitude": "0", "id": "4702115900", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn ltgenjosephfil"}, {"datetaken": "2010-06-15 20:46:10", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4701481631_f8100910a3_o.jpg", "secret": "020805070d", "media": "photo", "latitude": "0", "id": "4701481631", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn principalmelissaklopfer"}, {"datetaken": "2010-06-15 20:53:07", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4702117766_4810d097b3_o.jpg", "secret": "f2eb7d1fd8", "media": "photo", "latitude": "0", "id": "4702117766", "tags": "youth award celebration dare schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn principalmelissaklopfer"}, {"datetaken": "2010-06-15 20:53:55", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4701483343_b020199052_o.jpg", "secret": "fed4cc7544", "media": "photo", "latitude": "0", "id": "4701483343", "tags": "youth award celebration dare schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn principalmelissaklopfer"}, {"datetaken": "2010-06-15 20:57:23", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4701483965_c023e68e6a_o.jpg", "secret": "fab7cac256", "media": "photo", "latitude": "0", "id": "4701483965", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn"}, {"datetaken": "2010-06-15 20:59:56", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1288/4701484593_87f99750d2_o.jpg", "secret": "460090d7f7", "media": "photo", "latitude": "0", "id": "4701484593", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn principalmelissaklopfer"}, {"datetaken": "2010-06-15 21:01:02", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4702120204_81d8db9f33_o.jpg", "secret": "7ac5f38fd4", "media": "photo", "latitude": "0", "id": "4702120204", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn"}, {"datetaken": "2010-06-15 21:03:58", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1267/4701486299_83b7efce3d_o.jpg", "secret": "c6a99d1844", "media": "photo", "latitude": "0", "id": "4701486299", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn"}, {"datetaken": "2010-06-15 21:05:51", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4702122108_af99511775_o.jpg", "secret": "60126deded", "media": "photo", "latitude": "0", "id": "4702122108", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn principalmelissaklopfer"}, {"datetaken": "2010-06-15 21:06:57", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4702122908_cc709d24a9_o.jpg", "secret": "4ff5116f7b", "media": "photo", "latitude": "0", "id": "4702122908", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn principalmelissaklopfer"}, {"datetaken": "2010-06-15 21:07:05", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1267/4701488329_d8b5009e8f_o.jpg", "secret": "4e2a6c3ec2", "media": "photo", "latitude": "0", "id": "4701488329", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn principalmelissaklopfer"}, {"datetaken": "2010-06-15 21:07:55", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4701489061_2f917a84a0_o.jpg", "secret": "f8bc41080d", "media": "photo", "latitude": "0", "id": "4701489061", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn principalmelissaklopfer"}, {"datetaken": "2010-06-15 21:08:19", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4702124768_0e637962a2_o.jpg", "secret": "51bf435ae9", "media": "photo", "latitude": "0", "id": "4702124768", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn"}, {"datetaken": "2010-06-15 21:11:03", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4701490243_797e76575e_o.jpg", "secret": "a01667965f", "media": "photo", "latitude": "0", "id": "4701490243", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn principalmelissaklopfer"}, {"datetaken": "2010-06-15 21:11:35", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4702126068_2faab819c2_o.jpg", "secret": "248bd0fae4", "media": "photo", "latitude": "0", "id": "4702126068", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn"}, {"datetaken": "2010-06-15 21:14:52", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4702126736_6a65bdfbbf_o.jpg", "secret": "20c125450d", "media": "photo", "latitude": "0", "id": "4702126736", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn principalmelissaklopfer"}, {"datetaken": "2010-06-15 21:17:02", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4702127404_5d2beb4284_o.jpg", "secret": "4c2ef891b1", "media": "photo", "latitude": "0", "id": "4702127404", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn principalmelissaklopfer"}, {"datetaken": "2010-06-15 21:18:42", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4701492925_29e5ffe5a1_o.jpg", "secret": "e45b145e5e", "media": "photo", "latitude": "0", "id": "4701492925", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn"}, {"datetaken": "2010-06-15 21:19:48", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4701493531_16f785290a_o.jpg", "secret": "1669e11be3", "media": "photo", "latitude": "0", "id": "4701493531", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn principalmelissaklopfer"}, {"datetaken": "2010-06-15 21:20:05", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1291/4701494195_362657a71a_o.jpg", "secret": "10aca49edd", "media": "photo", "latitude": "0", "id": "4701494195", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn principalmelissaklopfer"}, {"datetaken": "2010-06-15 21:20:16", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4702129900_5176309656_o.jpg", "secret": "76290c5c5e", "media": "photo", "latitude": "0", "id": "4702129900", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn principalmelissaklopfer"}, {"datetaken": "2010-06-15 21:21:17", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4701495469_022b4d0828_o.jpg", "secret": "3f8a3e1d21", "media": "photo", "latitude": "0", "id": "4701495469", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn"}, {"datetaken": "2010-06-15 21:22:52", "license": "1", "title": "SAES Graduation Class of 2017", "text": "", "album_id": "72157624153192795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4701480339_7f8e75f662_o.jpg", "secret": "88fb5db158", "media": "photo", "latitude": "0", "id": "4701480339", "tags": "youth award celebration schools specialevent usagyongsan communityofexcellence seoulamericanelementaryschool usarmyphotobysgtopalvaughn"}, {"datetaken": "2007-04-14 12:36:43", "license": "3", "title": "Checking out the fit", "text": "", "album_id": "72157600078215468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/251/459583497_46b0fbedd5_o.jpg", "secret": "e2b70f6c8c", "media": "photo", "latitude": "0", "id": "459583497", "tags": "susan graduation 2007"}, {"datetaken": "2007-04-14 12:36:55", "license": "3", "title": "Susan Gets fitted for her Robe", "text": "", "album_id": "72157600078215468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/241/459583767_acb66408a8_o.jpg", "secret": "95503e070b", "media": "photo", "latitude": "0", "id": "459583767", "tags": "susan graduation ou portsmouth 2007"}, {"datetaken": "2007-04-14 12:47:08", "license": "3", "title": "Waiting for Graduation photograph", "text": "", "album_id": "72157600078215468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/212/459576020_04df5c764b_o.jpg", "secret": "92aa6b4555", "media": "photo", "latitude": "0", "id": "459576020", "tags": "susan graduation 2007"}, {"datetaken": "2007-04-14 13:20:17", "license": "3", "title": "Susan and Heidi after official photography", "text": "", "album_id": "72157600078215468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/248/459584801_fb52be1523_o.jpg", "secret": "b546c70373", "media": "photo", "latitude": "0", "id": "459584801", "tags": "heidi susan graduation 2007"}, {"datetaken": "2007-04-14 14:42:48", "license": "3", "title": "Portsmouth Guildhall", "text": "", "album_id": "72157600078215468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/231/459585497_0b0020c183_o.jpg", "secret": "237230f33a", "media": "photo", "latitude": "0", "id": "459585497", "tags": "ou portsmouth degree guildhall"}, {"datetaken": "2007-04-14 14:43:10", "license": "3", "title": "'MeriKate", "text": "", "album_id": "72157600078215468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/233/459586113_d66139840b_o.jpg", "secret": "9adf688b64", "media": "photo", "latitude": "0", "id": "459586113", "tags": "portsmouth 2007 merikate"}, {"datetaken": "2007-04-14 14:43:45", "license": "3", "title": "I do own skirts!", "text": "", "album_id": "72157600078215468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/239/459578400_c61e8e70e1_o.jpg", "secret": "06ca0f7e0f", "media": "photo", "latitude": "0", "id": "459578400", "tags": "nikki portsmouth 2007"}, {"datetaken": "2007-04-14 14:44:01", "license": "3", "title": "Portsmouth Guildhall, Susan, Karen, Stuart, Heidi, Peter and I.", "text": "", "album_id": "72157600078215468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/459587491_f70e52aa5b_o.jpg", "secret": "a55141bde2", "media": "photo", "latitude": "0", "id": "459587491", "tags": "susan graduation ou 2007"}, {"datetaken": "2007-04-14 14:45:56", "license": "3", "title": "Sisters (Karen, Susan, Heidi and Me)", "text": "", "album_id": "72157600078215468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/231/459579448_28a811a9cd_o.jpg", "secret": "d8deab6011", "media": "photo", "latitude": "0", "id": "459579448", "tags": "heidi nikki susan karen bloomfield graduationportsmouth2007ou"}, {"datetaken": "2007-04-14 14:47:57", "license": "3", "title": "Peter, Susan and Heidi", "text": "", "album_id": "72157600078215468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/189/459588543_adf85eb1b2_o.jpg", "secret": "adf85eb1b2", "media": "photo", "latitude": "0", "id": "459588543", "tags": "susan graduation portsmouth 2007"}, {"datetaken": "2007-04-14 14:50:42", "license": "3", "title": "Heidi goes where Susan Goes", "text": "", "album_id": "72157600078215468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/198/459589209_1ec75f6bd1_o.jpg", "secret": "07454d90b0", "media": "photo", "latitude": "0", "id": "459589209", "tags": "dog heidi hearing"}, {"datetaken": "2007-04-14 14:50:48", "license": "3", "title": "Heidi, Susan's Hearing Dog", "text": "", "album_id": "72157600078215468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/249/459589915_aa70726842_o.jpg", "secret": "71c15ec290", "media": "photo", "latitude": "0", "id": "459589915", "tags": "dog heidi hearing"}, {"datetaken": "2007-04-14 14:51:29", "license": "3", "title": "Susan, heidi and 'Merikate", "text": "", "album_id": "72157600078215468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/244/459590377_7b47eb3c1e_o.jpg", "secret": "d9788eff8f", "media": "photo", "latitude": "0", "id": "459590377", "tags": "susan graduation ou portsmouth 2007"}, {"datetaken": "2007-04-14 15:33:05", "license": "3", "title": "Susan's Graduation Ceremony Committee", "text": "", "album_id": "72157600078215468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/459582546_de47254c02_o.jpg", "secret": "4989bdba21", "media": "photo", "latitude": "0", "id": "459582546", "tags": "graduation ou portsmouth 2007"}, {"datetaken": "2010-07-16 14:59:34", "license": "3", "title": "Royal Festival Hall with Sandra", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4799395317_b09fdbe966_o.jpg", "secret": "faacfb24d1", "media": "photo", "latitude": "0", "id": "4799395317", "tags": "portrait england people london portraits centre graduation londres royalfestivalhall 2010 londoners londoner londoncollegeoffashion photojuliekertesz collegeoffashion instantannees"}, {"datetaken": "2010-07-16 15:45:15", "license": "3", "title": "Royal Festival Hall Teachers", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4799389755_f8f6070072_o.jpg", "secret": "4f2413452b", "media": "photo", "latitude": "0", "id": "4799389755", "tags": "portrait england people london portraits centre graduation londres royalfestivalhall 2010 londoners londoner londoncollegeoffashion photojuliekertesz collegeoffashion instantannees"}, {"datetaken": "2010-07-16 15:46:16", "license": "3", "title": "Royal Festival Hall113", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4799393893_b512f1b315_o.jpg", "secret": "f06633a8a6", "media": "photo", "latitude": "0", "id": "4799393893", "tags": "england people london portraits centre graduation londres royalfestivalhall 2010 londoncollegeoffashion photojuliekertesz collegeoffashion instantannees"}, {"datetaken": "2010-07-16 15:46:25", "license": "3", "title": "Royal Festival Hall114", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4799392071_e325686b36_o.jpg", "secret": "d7a37927df", "media": "photo", "latitude": "0", "id": "4799392071", "tags": "portrait england people london portraits centre graduation londres royalfestivalhall 2010 londoners londoner londoncollegeoffashion photojuliekertesz collegeoffashion instantannees"}, {"datetaken": "2010-07-16 15:47:11", "license": "3", "title": "Royal Festival Hall116", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4800008742_f5259d870b_o.jpg", "secret": "a51eed00dc", "media": "photo", "latitude": "0", "id": "4800008742", "tags": "england people london centre graduation londres juillet filles royalfestivalhall 2010 uniforme londoncollegeoffashion photojuliekertesz collegeoffashion collegedelanode"}, {"datetaken": "2010-07-16 15:47:11", "license": "3", "title": "Royal Festival Hall Graduation", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4800011184_b82a19e506_o.jpg", "secret": "792b5d5910", "media": "photo", "latitude": "0", "id": "4800011184", "tags": "portrait england people london centre graduation londres juillet filles royalfestivalhall 2010 uniforme londoners londoner londoncollegeoffashion photojuliekertesz collegeoffashion collegedelanode"}, {"datetaken": "2010-07-16 15:47:35", "license": "3", "title": "Royal Festival Hall118", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4799997922_8a54470a7f_o.jpg", "secret": "4dbe805982", "media": "photo", "latitude": "0", "id": "4799997922", "tags": "england people london centre graduation londres juillet filles royalfestivalhall 2010 uniforme londoncollegeoffashion photojuliekertesz collegeoffashion collegedelanode"}, {"datetaken": "2010-07-16 15:47:50", "license": "3", "title": "Royal Festival Hall121", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4799369855_fa4c2661ac_o.jpg", "secret": "35e7073af7", "media": "photo", "latitude": "0", "id": "4799369855", "tags": "england people london centre graduation londres juillet filles royalfestivalhall 2010 uniforme londoncollegeoffashion photojuliekertesz collegeoffashion collegedelanode"}, {"datetaken": "2010-07-16 15:48:02", "license": "3", "title": "Royal Festival Hall123", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4800010676_4c067e77e4_o.jpg", "secret": "901838a098", "media": "photo", "latitude": "0", "id": "4800010676", "tags": "england people london centre graduation londres juillet filles royalfestivalhall 2010 uniforme londoncollegeoffashion photojuliekertesz collegeoffashion collegedelanode"}, {"datetaken": "2010-07-16 15:56:35", "license": "3", "title": "Royal Festival Hall124", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4799371557_04bdde5f29_o.jpg", "secret": "b35a182754", "media": "photo", "latitude": "0", "id": "4799371557", "tags": "england people london centre graduation londres juillet filles royalfestivalhall 2010 uniforme londoncollegeoffashion photojuliekertesz collegeoffashion collegedelanode"}, {"datetaken": "2010-07-16 15:56:39", "license": "3", "title": "College des Modes - Fashion", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4800007338_8a75862df5_o.jpg", "secret": "00d645c792", "media": "photo", "latitude": "0", "id": "4800007338", "tags": "portrait england people london centre graduation londres juillet filles royalfestivalhall 2010 uniforme londoners londoner londoncollegeoffashion photojuliekertesz collegeoffashion collegedelanode"}, {"datetaken": "2010-07-16 15:56:45", "license": "3", "title": "Royal Festival Hall126", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4799365823_60c0d843dd_o.jpg", "secret": "431c4ea4e9", "media": "photo", "latitude": "0", "id": "4799365823", "tags": "england people london centre graduation londres juillet filles royalfestivalhall 2010 uniforme londoncollegeoffashion photojuliekertesz collegeoffashion collegedelanode"}, {"datetaken": "2010-07-16 15:59:06", "license": "3", "title": "Royal Festival Hall128", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4799926046_7b5e079924_o.jpg", "secret": "2198c41250", "media": "photo", "latitude": "0", "id": "4799926046", "tags": "portrait england people london centre graduation londres royalfestivalhall 2010 londoners londoner copyrightjuliekertesz londoncollegeoffashion photojuliekertesz collegeoffashion"}, {"datetaken": "2010-07-16 15:59:06", "license": "3", "title": "Royal Festival Hall127", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4799366929_04eeff7085_o.jpg", "secret": "a8cd9da229", "media": "photo", "latitude": "0", "id": "4799366929", "tags": "england people london centre graduation londres juillet filles royalfestivalhall 2010 uniforme londoncollegeoffashion photojuliekertesz collegeoffashion collegedelanode"}, {"datetaken": "2010-07-16 15:59:48", "license": "3", "title": "Royal Festival Hall129", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4799944152_2ddde4eb93_o.jpg", "secret": "51d2df3792", "media": "photo", "latitude": "0", "id": "4799944152", "tags": "portrait england people london graduation royalfestivalhall 2010 londoners londoner londoncollegeoffashion photojuliekertesz collegeoffashion"}, {"datetaken": "2010-07-16 16:00:17", "license": "3", "title": "Sandra \"au naturel\"", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4799940834_9b865360a0_o.jpg", "secret": "5103e8f6e5", "media": "photo", "latitude": "0", "id": "4799940834", "tags": "portrait england london sandra graduation royalfestivalhall 2010 londoners londoner londoncollegeoffashion photojuliekertesz collegeoffashion"}, {"datetaken": "2010-07-16 16:02:56", "license": "3", "title": "Royal Festival Hall131", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4799942142_89ee688941_o.jpg", "secret": "924bb44461", "media": "photo", "latitude": "0", "id": "4799942142", "tags": "england people london graduation royalfestivalhall 2010 londoncollegeoffashion photojuliekertesz collegeoffashion"}, {"datetaken": "2010-07-16 16:03:38", "license": "3", "title": "Graduates College of Fashion", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4799945862_0ed7954592_o.jpg", "secret": "5e87659064", "media": "photo", "latitude": "0", "id": "4799945862", "tags": "portrait england people london graduation royalfestivalhall 2010 londoners londoner londoncollegeoffashion photojuliekertesz collegeoffashion"}, {"datetaken": "2010-07-16 16:03:38", "license": "3", "title": "Royal Festival Hall133", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4799946376_98fa1c2eb5_o.jpg", "secret": "542b677dba", "media": "photo", "latitude": "0", "id": "4799946376", "tags": "portrait england people london graduation royalfestivalhall 2010 londoners londoner londoncollegeoffashion photojuliekertesz collegeoffashion"}, {"datetaken": "2010-07-16 16:04:19", "license": "3", "title": "Royal Festival Hall134", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4799936880_1451b6ca3a_o.jpg", "secret": "3dfd388c82", "media": "photo", "latitude": "0", "id": "4799936880", "tags": "england london statue bricks graduation royalfestivalhall 2010 londoncollegeoffashion photojuliekertesz collegeoffashion"}, {"datetaken": "2010-07-16 16:04:32", "license": "3", "title": "Royal Festival Hall135", "text": "", "album_id": "72157624516029402", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4799939140_bfc3d9150f_o.jpg", "secret": "27a8a26f3e", "media": "photo", "latitude": "0", "id": "4799939140", "tags": "england london statue graduation royalfestivalhall 2010 brics londoncollegeoffashion photojuliekertesz collegeoffashion"}, {"datetaken": "2009-05-15 06:04:23", "license": "3", "title": "College Of Science Is Out There Somewhere", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm4.staticflickr.com/3356/3541355238_853b73da1e_o.jpg", "secret": "032ede14b3", "media": "photo", "latitude": "37.219923", "id": "3541355238", "tags": "graduation commencement 2009 vt blacksburg virginiatech hokies"}, {"datetaken": "2009-05-15 06:04:30", "license": "3", "title": "Grad Lineup Behind Lane", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm4.staticflickr.com/3546/3541355436_67b09b500b_o.jpg", "secret": "121ff21a53", "media": "photo", "latitude": "37.219923", "id": "3541355436", "tags": "graduation commencement 2009 vt blacksburg virginiatech hokies"}, {"datetaken": "2009-05-15 06:18:48", "license": "3", "title": "Picture of A Picture", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm4.staticflickr.com/3652/3541355790_3e03303e9c_o.jpg", "secret": "1ebf21b921", "media": "photo", "latitude": "37.219923", "id": "3541355790", "tags": "orange maroon graduation commencement 2009 vt blacksburg virginiatech hokies"}, {"datetaken": "2009-05-15 06:19:45", "license": "3", "title": "Shakes Fist", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm3.staticflickr.com/2046/3541356300_b0365981a1_o.jpg", "secret": "cb3f35b2cb", "media": "photo", "latitude": "37.219923", "id": "3541356300", "tags": "orange maroon graduation commencement 2009 vt blacksburg virginiatech hokies"}, {"datetaken": "2009-05-15 06:25:39", "license": "3", "title": "Ceremony Starting", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm4.staticflickr.com/3627/3540546869_d85f16361f_o.jpg", "secret": "089f9194fc", "media": "photo", "latitude": "37.219923", "id": "3540546869", "tags": "orange cloudy maroon graduation commencement bleachers 2009 scoreboard vt blacksburg virginiatech hokies"}, {"datetaken": "2009-05-15 06:30:16", "license": "3", "title": "Color Guard", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm3.staticflickr.com/2381/3541357618_08915f3d8b_o.jpg", "secret": "da233a1c78", "media": "photo", "latitude": "37.219923", "id": "3541357618", "tags": "orange stand maroon flag graduation american commencement bleachers 2009 vt regalia blacksburg colorguard virginiatech hokies lanestadium worshamfield"}, {"datetaken": "2009-05-15 06:36:49", "license": "3", "title": "Applause Break", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm3.staticflickr.com/2272/3541357136_26693e7010_o.jpg", "secret": "1fab42f367", "media": "photo", "latitude": "37.219923", "id": "3541357136", "tags": "orange maroon graduation commencement 2009 vt applause tassel blacksburg virginiatech hokies lanestadium"}, {"datetaken": "2009-05-15 06:39:04", "license": "3", "title": "Graduation Casual", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm3.staticflickr.com/2259/3540549101_d38c603b64_o.jpg", "secret": "e671581b40", "media": "photo", "latitude": "37.219923", "id": "3540549101", "tags": "orange stadium maroon graduation commencement 2009 vt blacksburg virginiatech hokies lanestadium"}, {"datetaken": "2009-05-15 06:45:27", "license": "3", "title": "North Stands", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm3.staticflickr.com/2212/3541356610_0d7dda27ca_o.jpg", "secret": "97109deddf", "media": "photo", "latitude": "37.219923", "id": "3541356610", "tags": "college campus virginia stadium graduation commencement bleachers 2009 vt stands blacksburg virginiatech hokies lanestadium worshamfield"}, {"datetaken": "2009-05-15 07:09:39", "license": "3", "title": "I Know They're Up There Somewhere", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm3.staticflickr.com/2206/3541356398_0dea351b9e_o.jpg", "secret": "c06fbaf3f5", "media": "photo", "latitude": "37.219923", "id": "3541356398", "tags": "orange college campus grey virginia maroon graduation doctor commencement 2009 vt blacksburg virginiatech hokies lanestadium worshamfield"}, {"datetaken": "2009-05-15 07:23:58", "license": "3", "title": "Lane and Grads", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm3.staticflickr.com/2425/3540551599_fc1a5ffa64_o.jpg", "secret": "9fa893efa4", "media": "photo", "latitude": "37.219923", "id": "3540551599", "tags": "orange college maroon crowd graduation commencement bleachers 2009 vt tassel blacksburg virginiatech hokies hokie lanestadium worshamfield"}, {"datetaken": "2009-05-15 07:25:15", "license": "3", "title": "Lots of Grads", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm3.staticflickr.com/2409/3540551385_74cc45a39a_o.jpg", "secret": "03d4a00d3b", "media": "photo", "latitude": "37.219923", "id": "3540551385", "tags": "orange maroon graduation commencement 2009 vt tassel blacksburg virginiatech pressbox hokies lanestadium worshamfield"}, {"datetaken": "2009-05-15 07:34:30", "license": "3", "title": "VetGrads - Hee", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm3.staticflickr.com/2175/3541358918_95b947de8b_o.jpg", "secret": "7d77b51e10", "media": "photo", "latitude": "37.219923", "id": "3541358918", "tags": "orange vet maroon graduation commencement doctors exam 2009 vt tassel blacksburg virginiatech hokies lanestadium worshamfield"}, {"datetaken": "2009-05-15 07:35:06", "license": "3", "title": "Vet Grads With Some Of Their Essential Equipment", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm4.staticflickr.com/3550/3540550957_f98f4f974a_o.jpg", "secret": "7a594b4ba4", "media": "photo", "latitude": "37.219923", "id": "3540550957", "tags": "orange maroon graduation commencement doctors exam 2009 vt blacksburg virginiatech hokies lanestadium doctoral worshamfield"}, {"datetaken": "2009-05-15 07:40:25", "license": "3", "title": "College of Science", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm4.staticflickr.com/3404/3541358696_702e44b41c_o.jpg", "secret": "8f44f35a2d", "media": "photo", "latitude": "37.219923", "id": "3541358696", "tags": "orange maroon graduation commencement bleachers 2009 vt stands tassel blacksburg virginiatech hokies"}, {"datetaken": "2009-05-15 07:41:40", "license": "3", "title": "Ceremony Applause", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm3.staticflickr.com/2176/3540550681_f40338e63c_o.jpg", "secret": "b123cd4875", "media": "photo", "latitude": "37.219923", "id": "3540550681", "tags": "family friends stadium graduation commencement bleachers 2009 vt stands tassel blacksburg virginiatech pressbox hokies lanestadium worshamfield"}, {"datetaken": "2009-05-15 07:50:01", "license": "3", "title": "Vet Grads Wave", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm4.staticflickr.com/3108/3541358108_88a8180ba6_o.jpg", "secret": "7802e46394", "media": "photo", "latitude": "37.219923", "id": "3541358108", "tags": "orange maroon graduation commencement bleachers 2009 vt stands tassel blacksburg virginiatech hokies lanestadium worshamfield"}, {"datetaken": "2009-05-15 07:52:09", "license": "3", "title": "Congratulations!", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm3.staticflickr.com/2408/3541360796_25096fff9f_o.jpg", "secret": "a097594c55", "media": "photo", "latitude": "37.219923", "id": "3541360796", "tags": "sign night graduation commencement bleachers congratulations 2009 scoreboard vt stands blacksburg virginiatech hokies lanestadium worshamfield"}, {"datetaken": "2009-05-15 21:57:42", "license": "3", "title": "Program", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm3.staticflickr.com/2139/3541360416_f66b42d6aa_o.jpg", "secret": "34dbede245", "media": "photo", "latitude": "37.219923", "id": "3541360416", "tags": "maroon graduation commencement 2009 vt blacksburg virginiatech hokies"}, {"datetaken": "2009-05-15 22:17:35", "license": "3", "title": "Psychology Ceremony", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm4.staticflickr.com/3417/3540552961_4c9ec6890f_o.jpg", "secret": "d00d7449c0", "media": "photo", "latitude": "37.219923", "id": "3540552961", "tags": "maroon stage graduation podium commencement 2009 vt faculty psychology blacksburg virginiatech hokies burress"}, {"datetaken": "2009-05-15 22:56:14", "license": "3", "title": "Almost There", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm4.staticflickr.com/3590/3541360276_3d33a07991_o.jpg", "secret": "d3a4f4e0b9", "media": "photo", "latitude": "37.219923", "id": "3541360276", "tags": "virginia maroon graduation commencement 2009 vt tassel blacksburg virginiatech hokies burress burresshall"}, {"datetaken": "2009-05-15 22:56:54", "license": "3", "title": "Diploma - 1", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm3.staticflickr.com/2098/3540551935_86280d9451_o.jpg", "secret": "52de218eed", "media": "photo", "latitude": "37.219923", "id": "3540551935", "tags": "flowers college diploma stage graduation commencement 2009 vt faculty blacksburg virginiatech hokies"}, {"datetaken": "2009-05-15 22:56:56", "license": "3", "title": "Diploma - 2", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm3.staticflickr.com/2049/3540551759_426a34ca3f_o.jpg", "secret": "6f25a946ac", "media": "photo", "latitude": "37.219923", "id": "3540551759", "tags": "flowers college diploma stage graduation podium commencement 2009 vt faculty blacksburg virginiatech hokies"}, {"datetaken": "2009-05-15 22:56:57", "license": "3", "title": "Diploma - 3", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm3.staticflickr.com/2284/3540552715_f6cb20a062_o.jpg", "secret": "6e42863b2f", "media": "photo", "latitude": "37.219923", "id": "3540552715", "tags": "flowers diploma stage graduation podium commencement 2009 vt tassel psychology blacksburg virginiatech hokies burress"}, {"datetaken": "2009-05-16 03:39:24", "license": "3", "title": "Blue Ridge Mountains", "text": "", "album_id": "72157622470704661", "longitude": "-80.417604", "url_o": "https://farm3.staticflickr.com/2434/3540553053_3507c345d9_o.jpg", "secret": "b68ce52c6f", "media": "photo", "latitude": "37.219923", "id": "3540553053", "tags": "mountains highway graduation commencement 2009 vt blacksburg virginiatech hokies blueride"}, {"datetaken": "2010-07-23 00:00:00", "license": "4", "title": "IMG_3629a", "text": "", "album_id": "72157624446083413", "longitude": "-0.041044", "url_o": "https://farm5.staticflickr.com/4134/4823238649_7201209174_o.jpg", "secret": "c9c1f8ea49", "media": "photo", "latitude": "51.523205", "id": "4823238649", "tags": "chris canon is graduation powershot sx20"}, {"datetaken": "2010-07-23 00:00:00", "license": "4", "title": "IMG_3629b", "text": "", "album_id": "72157624446083413", "longitude": "-0.041044", "url_o": "https://farm5.staticflickr.com/4075/4823238757_63b4b47af1_o.jpg", "secret": "0d8418efd6", "media": "photo", "latitude": "51.523205", "id": "4823238757", "tags": "chris canon is graduation powershot sx20"}, {"datetaken": "2010-07-23 00:00:00", "license": "4", "title": "IMG_3629c", "text": "", "album_id": "72157624446083413", "longitude": "-0.041044", "url_o": "https://farm5.staticflickr.com/4076/4823238869_8f74d28a0b_o.jpg", "secret": "58a31d6857", "media": "photo", "latitude": "51.523205", "id": "4823238869", "tags": "chris canon is graduation powershot sx20"}, {"datetaken": "2010-07-23 00:00:00", "license": "4", "title": "IMG_3629d", "text": "", "album_id": "72157624446083413", "longitude": "-0.041044", "url_o": "https://farm5.staticflickr.com/4117/4823238965_6fe45d37c1_o.jpg", "secret": "19b43347f2", "media": "photo", "latitude": "51.523205", "id": "4823238965", "tags": "chris canon is graduation powershot sx20"}, {"datetaken": "2010-07-23 10:34:51", "license": "4", "title": "IMG_3596", "text": "", "album_id": "72157624446083413", "longitude": "-0.041044", "url_o": "https://farm5.staticflickr.com/4100/4823812570_8999d9b6d6_o.jpg", "secret": "cbe3fa7724", "media": "photo", "latitude": "51.523205", "id": "4823812570", "tags": "chris college canon is mary graduation powershot queen sx20"}, {"datetaken": "2010-07-23 10:38:19", "license": "4", "title": "IMG_3601", "text": "", "album_id": "72157624446083413", "longitude": "-0.041044", "url_o": "https://farm5.staticflickr.com/4097/4823198577_3a713386b0_o.jpg", "secret": "ac3e2e47ea", "media": "photo", "latitude": "51.523205", "id": "4823198577", "tags": "chris college canon is mary graduation powershot queen sx20"}, {"datetaken": "2010-07-23 10:39:27", "license": "4", "title": "IMG_3603", "text": "", "album_id": "72157624446083413", "longitude": "-0.041044", "url_o": "https://farm5.staticflickr.com/4096/4823814696_fe961a819a_o.jpg", "secret": "f8581c349b", "media": "photo", "latitude": "51.523205", "id": "4823814696", "tags": "chris college canon is mary graduation powershot queen sx20"}, {"datetaken": "2010-07-23 10:46:45", "license": "4", "title": "IMG_3608", "text": "", "album_id": "72157624446083413", "longitude": "-0.041044", "url_o": "https://farm5.staticflickr.com/4116/4823815566_12ff772c02_o.jpg", "secret": "af251f86d6", "media": "photo", "latitude": "51.523205", "id": "4823815566", "tags": "chris college canon is mary graduation powershot queen sx20"}, {"datetaken": "2010-07-23 11:28:14", "license": "4", "title": "Bob (Robert) Watson", "text": "", "album_id": "72157624446083413", "longitude": "-0.041044", "url_o": "https://farm5.staticflickr.com/4143/4823203085_081c10c616_o.jpg", "secret": "a171129cb5", "media": "photo", "latitude": "51.523205", "id": "4823203085", "tags": "chris college canon is mary graduation powershot queen sx20"}, {"datetaken": "2010-07-23 11:28:32", "license": "4", "title": "Bob (Robert) Watson", "text": "", "album_id": "72157624446083413", "longitude": "-0.041044", "url_o": "https://farm5.staticflickr.com/4118/4823204311_a6fc40c76a_o.jpg", "secret": "4675477e1a", "media": "photo", "latitude": "51.523205", "id": "4823204311", "tags": "chris college canon is mary graduation powershot queen sx20"}, {"datetaken": "2010-07-23 11:29:11", "license": "4", "title": "Bob (Robert) Watson", "text": "", "album_id": "72157624446083413", "longitude": "-0.041044", "url_o": "https://farm5.staticflickr.com/4137/4823205091_a170836f37_o.jpg", "secret": "574a57cb60", "media": "photo", "latitude": "51.523205", "id": "4823205091", "tags": "chris college canon is mary graduation powershot queen sx20"}, {"datetaken": "2010-07-23 12:37:28", "license": "4", "title": "IMG_3640_crop", "text": "", "album_id": "72157624446083413", "longitude": "-0.040325", "url_o": "https://farm5.staticflickr.com/4098/4823822082_cc677c25a6_o.jpg", "secret": "d4497bba24", "media": "photo", "latitude": "51.523132", "id": "4823822082", "tags": "chris college canon is mary graduation powershot queen sx20"}, {"datetaken": "2010-07-23 12:47:35", "license": "4", "title": "IMG_3671", "text": "", "album_id": "72157624446083413", "longitude": "-0.040325", "url_o": "https://farm5.staticflickr.com/4115/4823833432_d93fbe75d1_o.jpg", "secret": "852353415c", "media": "photo", "latitude": "51.523132", "id": "4823833432", "tags": "chris college canon is mary graduation powershot queen sx20"}, {"datetaken": "2011-10-24 14:16:36", "license": "3", "title": "Dr. Nancy Gary", "text": "", "album_id": "72157627969263208", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6235/6276934381_a5ea31fca6_o.jpg", "secret": "3bc488d92b", "media": "photo", "latitude": "0", "id": "6276934381", "tags": ""}, {"datetaken": "2011-10-24 14:17:12", "license": "3", "title": "Dr. Nancy Gary, Dean", "text": "", "album_id": "72157627969263208", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6212/6276936307_5e79877c95_o.jpg", "secret": "f1c1df97a8", "media": "photo", "latitude": "0", "id": "6276936307", "tags": "dean gary"}, {"datetaken": "2011-10-24 14:17:39", "license": "3", "title": "Dr. Nancy Gary, Dean", "text": "", "album_id": "72157627969263208", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6114/6276937723_86b6c3ea1c_o.jpg", "secret": "e92ddc7d72", "media": "photo", "latitude": "0", "id": "6276937723", "tags": "dean gary"}, {"datetaken": "2011-10-24 14:17:54", "license": "3", "title": "Dr. Nancy Gary", "text": "", "album_id": "72157627969263208", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6233/6277460298_6322fe76d3_o.jpg", "secret": "3fe0b5b45f", "media": "photo", "latitude": "0", "id": "6277460298", "tags": "dean gary"}, {"datetaken": "2011-10-24 14:18:01", "license": "3", "title": "Dr. Nancy Gary--Gifts", "text": "", "album_id": "72157627969263208", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6230/6276938875_9eb49a5764_o.jpg", "secret": "098e83bec9", "media": "photo", "latitude": "0", "id": "6276938875", "tags": "dean gary"}, {"datetaken": "2011-10-24 14:18:34", "license": "3", "title": "Dr. Nancy Gary, Dean", "text": "", "album_id": "72157627969263208", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6234/6276940565_3189f1b893_o.jpg", "secret": "866c99d3f9", "media": "photo", "latitude": "0", "id": "6276940565", "tags": "dean gary"}, {"datetaken": "2011-10-24 14:22:42", "license": "3", "title": "Dr. Nancy Gary Address", "text": "", "album_id": "72157627969263208", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6104/6277475152_3ee1b3b35e_o.jpg", "secret": "076782bb46", "media": "photo", "latitude": "0", "id": "6277475152", "tags": ""}, {"datetaken": "2011-10-24 14:24:44", "license": "3", "title": "Dr. Gary Presents Diplomas", "text": "", "album_id": "72157627969263208", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6111/6277481478_0978b9579a_o.jpg", "secret": "864525dd6d", "media": "photo", "latitude": "0", "id": "6277481478", "tags": ""}, {"datetaken": "2011-10-24 14:27:01", "license": "3", "title": "Dr. Nancy Gary Reads Citation", "text": "", "album_id": "72157627969263208", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6051/6277488804_11d9ee6612_o.jpg", "secret": "73c5df8cde", "media": "photo", "latitude": "0", "id": "6277488804", "tags": ""}, {"datetaken": "2011-10-24 14:27:33", "license": "3", "title": "Dean Nancy Gary", "text": "", "album_id": "72157627969263208", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6097/6277490466_4af1f59103_o.jpg", "secret": "79ec4d3120", "media": "photo", "latitude": "0", "id": "6277490466", "tags": ""}, {"datetaken": "2011-10-24 14:29:47", "license": "3", "title": "Dean Gary", "text": "", "album_id": "72157627969263208", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6098/6276975255_a678f7b6cc_o.jpg", "secret": "71dfda86e3", "media": "photo", "latitude": "0", "id": "6276975255", "tags": ""}, {"datetaken": "2009-05-28 19:32:31", "license": "1", "title": "DSC_0013", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm4.staticflickr.com/3400/3575862648_47a6a18ae5_o.jpg", "secret": "38de8735ac", "media": "photo", "latitude": "42.437140", "id": "3575862648", "tags": "blue white football stadium walk graduation ceremony highschool procession phs graduate congratulations trojans classof2009 plainwell nikond40"}, {"datetaken": "2009-05-28 19:38:47", "license": "1", "title": "DSC_0014", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm4.staticflickr.com/3587/3575054125_56d98c4d6b_o.jpg", "secret": "3c37f6ec99", "media": "photo", "latitude": "42.437140", "id": "3575054125", "tags": "blue white football stadium walk crowd graduation highschool procession phs carnation graduate congratulations trojans classof2009 plainwell nikond40"}, {"datetaken": "2009-05-28 19:38:52", "license": "1", "title": "DSC_0015", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm4.staticflickr.com/3413/3575863056_f5535c9215_o.jpg", "secret": "292fae6092", "media": "photo", "latitude": "42.437140", "id": "3575863056", "tags": "blue white football stadium walk graduation highschool procession phs carnation graduate congratulations trojans classof2009 plainwell nikond40"}, {"datetaken": "2009-05-28 19:40:10", "license": "1", "title": "Where's Waldo, er, Alyssa?", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm3.staticflickr.com/2425/3575863168_c2cabf3ac4_o.jpg", "secret": "868117277e", "media": "photo", "latitude": "42.437140", "id": "3575863168", "tags": "blue bw white football alyssa stadium robe crowd graduation highschool cap phs graduate gown congratulations seniors trojans tassle plainwell nikond40"}, {"datetaken": "2009-05-28 19:41:35", "license": "1", "title": "DSC_0018", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm3.staticflickr.com/2445/3575054629_269f5f2720_o.jpg", "secret": "b5ebb4d709", "media": "photo", "latitude": "42.437140", "id": "3575054629", "tags": "blue white color football diploma stadium robe walk formal graduation highschool suit podium cap speaker microphone handshake phs carnation graduate gown congratulations address trojans tassle classof2009 plainwell nikond40"}, {"datetaken": "2009-05-28 19:41:35", "license": "1", "title": "Mr. Ron Faurot speaks at '09 PHS graduation", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm4.staticflickr.com/3641/3575863486_27a1722d88_o.jpg", "secret": "6fa707cc69", "media": "photo", "latitude": "42.437140", "id": "3575863486", "tags": "blue white football stadium formal graduation ceremony highschool suit podium speaker microphone phs graduate congratulations speech trojans plainwell colorizedbw nikond40"}, {"datetaken": "2009-05-28 19:41:51", "license": "1", "title": "DSC_0019", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm4.staticflickr.com/3350/3575863876_a62415f30f_o.jpg", "secret": "466696158a", "media": "photo", "latitude": "42.437140", "id": "3575863876", "tags": "blue white football stadium robe crowd graduation highschool podium cap speaker phs graduate gown congratulations seniors trojans tassle classof2009 plainwell nikond40"}, {"datetaken": "2009-05-28 20:10:54", "license": "1", "title": "DSC_0040", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm4.staticflickr.com/3355/3575055271_735138e54d_o.jpg", "secret": "bfcca2edc8", "media": "photo", "latitude": "42.437140", "id": "3575055271", "tags": "blue white standing football waiting stadium robe crowd graduation highschool cap phs graduate gown congratulations trojans tassle classof2009 plainwell nikond40"}, {"datetaken": "2009-05-28 20:11:02", "license": "1", "title": "DSC_0041", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm4.staticflickr.com/3326/3575864182_45b654be46_o.jpg", "secret": "12188a4287", "media": "photo", "latitude": "42.437140", "id": "3575864182", "tags": "blue white standing football waiting stadium robe crowd graduation highschool cap phs graduate gown congratulations trojans tassle classof2009 plainwell nikond40"}, {"datetaken": "2009-05-28 20:11:44", "license": "1", "title": "DSC_0047", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm4.staticflickr.com/3561/3575055639_7c1cd5aaec_o.jpg", "secret": "9e131cf78d", "media": "photo", "latitude": "42.437140", "id": "3575055639", "tags": "blue white football diploma stadium robe walk graduation highschool cap handshake phs graduate gown congratulations trojans tassle classof2009 plainwell nikond40"}, {"datetaken": "2009-05-28 20:11:46", "license": "1", "title": "DSC_0048", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm4.staticflickr.com/3642/3575055955_e77b5926fd_o.jpg", "secret": "fd72df5fba", "media": "photo", "latitude": "42.437140", "id": "3575055955", "tags": "blue white football diploma stadium robe walk graduation highschool cap handshake phs graduate gown congratulations trojans tassle classof2009 plainwell nikond40"}, {"datetaken": "2009-05-28 20:11:47", "license": "1", "title": "DSC_0049", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm4.staticflickr.com/3604/3575056277_2ee662b22b_o.jpg", "secret": "6d101d673c", "media": "photo", "latitude": "42.437140", "id": "3575056277", "tags": "blue white football diploma stadium robe walk graduation highschool cap handshake phs graduate gown congratulations trojans tassle classof2009 plainwell nikond40"}, {"datetaken": "2009-05-28 20:11:50", "license": "1", "title": "DSC_0052", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm4.staticflickr.com/3617/3575056707_d1a4046bdd_o.jpg", "secret": "c194c315d8", "media": "photo", "latitude": "42.437140", "id": "3575056707", "tags": "blue white football diploma stadium robe walk graduation highschool cap handshake phs graduate gown congratulations trojans tassle classof2009 plainwell nikond40"}, {"datetaken": "2009-05-28 20:39:34", "license": "1", "title": "DSC_0071", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm4.staticflickr.com/3559/3575199834_5564432c40_o.jpg", "secret": "d2f14ab35f", "media": "photo", "latitude": "42.437140", "id": "3575199834", "tags": "portrait smile proud football grandmother stadium robe graduation pride granddaughter phs carnation graduate gown embrace 2009 trojans plainwell nikond40"}, {"datetaken": "2009-05-28 20:39:48", "license": "1", "title": "DSC_0073", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm4.staticflickr.com/3327/3575200142_9caec9f10b_o.jpg", "secret": "cfecf6dc0c", "media": "photo", "latitude": "42.437140", "id": "3575200142", "tags": "portrait football outdoor stadium robe grandfather graduation granddaughter phs carnation gown 2009 fillflash trojans plainwell nikond40"}, {"datetaken": "2009-05-28 20:40:01", "license": "1", "title": "DSC_0074", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm4.staticflickr.com/3298/3575056859_b641a85eee_o.jpg", "secret": "911b093abe", "media": "photo", "latitude": "42.437140", "id": "3575056859", "tags": "blue white sisters football stadium michigan graduation highschool phs graduate congratulations trojans classof2009 plainwell nikond40"}, {"datetaken": "2009-05-28 20:40:11", "license": "1", "title": "DSC_0075", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm4.staticflickr.com/3648/3575862412_aed7919c00_o.jpg", "secret": "7b814dd673", "media": "photo", "latitude": "42.437140", "id": "3575862412", "tags": "blue portrait white smile football couple stadium graduation highschool teenager phs carnation graduate joyful congratulations embrace trojans plainwell nikond40"}, {"datetaken": "2009-05-28 20:40:46", "license": "1", "title": "DSC_0077", "text": "", "album_id": "72157618984682634", "longitude": "-85.656538", "url_o": "https://farm4.staticflickr.com/3632/3574392355_d656169dd4_o.jpg", "secret": "66fb8f1d4e", "media": "photo", "latitude": "42.437140", "id": "3574392355", "tags": "portrait proud parents football alyssa outdoor stadium robe father daughter mother graduation phs graduate gown 2009 trojans plainwell nikond40"}, {"datetaken": "2010-05-14 17:48:02", "license": "2", "title": "DuBois Commencement 2010-002", "text": "", "album_id": "72157625082585609", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4154/4946433766_f4b29aca1f_o.jpg", "secret": "5b496a41a4", "media": "photo", "latitude": "0", "id": "4946433766", "tags": "magazine display anniversary events celebration pennstate commonwealth academics dubois campuses thegarret creditsteveharmic"}, {"datetaken": "2010-05-14 18:02:45", "license": "2", "title": "DuBois Commencement 2010-003", "text": "", "album_id": "72157625082585609", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/4946434228_b2523c08de_o.jpg", "secret": "a4cd5a5952", "media": "photo", "latitude": "0", "id": "4946434228", "tags": "anniversary events celebration pennstate commonwealth faculty academics dubois campuses creditsteveharmic"}, {"datetaken": "2010-05-14 18:06:35", "license": "2", "title": "DuBois Commencement 2010-004", "text": "", "album_id": "72157625082585609", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4945849317_227ed7cb31_o.jpg", "secret": "5361879d2c", "media": "photo", "latitude": "0", "id": "4945849317", "tags": "anniversary events celebration staff pennstate commonwealth alumni faculty academics dubois campuses creditsteveharmic christthekingmanor"}, {"datetaken": "2010-05-14 18:09:24", "license": "2", "title": "DuBois Commencement 2010-005", "text": "", "album_id": "72157625082585609", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/4946436238_aeeff07cf1_o.jpg", "secret": "b20692805a", "media": "photo", "latitude": "0", "id": "4946436238", "tags": "anniversary events celebration pennstate chancellor booksigning commonwealth academics dubois campuses creditsteveharmic anitamcdonald"}, {"datetaken": "2010-05-15 13:36:56", "license": "2", "title": "DuBois Commencement 2010-006", "text": "", "album_id": "72157625082585609", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/4946436736_5c2bdcf326_o.jpg", "secret": "ae3b20bce6", "media": "photo", "latitude": "0", "id": "4946436736", "tags": "students events graduation ceremony staff pennstate commencement commonwealth faculty academics dubois campuses creditsteveharmic"}, {"datetaken": "2010-05-15 13:40:26", "license": "2", "title": "DuBois Commencement 2010-007", "text": "", "album_id": "72157625082585609", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4130/4946437080_3229c33ffc_o.jpg", "secret": "a7fd504356", "media": "photo", "latitude": "0", "id": "4946437080", "tags": "students events graduation ceremony pennstate commencement commonwealth academics dubois campuses creditsteveharmic"}, {"datetaken": "2010-05-15 13:43:06", "license": "2", "title": "DuBois Commencement 2010-008", "text": "", "album_id": "72157625082585609", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/4946437754_75d58cd4aa_o.jpg", "secret": "aa1eb9c0a1", "media": "photo", "latitude": "0", "id": "4946437754", "tags": "students events graduation ceremony staff pennstate commencement commonwealth faculty academics dubois campuses creditsteveharmic"}, {"datetaken": "2010-05-15 13:55:43", "license": "2", "title": "DuBois Commencement 2010-001", "text": "", "album_id": "72157625082585609", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/4945847695_e00dd4bb1d_o.jpg", "secret": "e6bb900236", "media": "photo", "latitude": "0", "id": "4945847695", "tags": "students events graduation ceremony pennstate chancellor commencement marshal speakers commonwealth faculty academics dubois campuses creditsteveharmic senatorjoescarnati anitamcdonald joehummer"}, {"datetaken": "2010-05-15 14:01:50", "license": "2", "title": "DuBois Commencement 2010-009", "text": "", "album_id": "72157625082585609", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/4945852621_c4e4ff1d52_o.jpg", "secret": "366652f0d0", "media": "photo", "latitude": "0", "id": "4945852621", "tags": "students events graduation ceremony pennstate commencement commonwealth gymnasium academics dubois campuses creditsteveharmic"}, {"datetaken": "2010-05-15 14:07:35", "license": "2", "title": "DuBois Commencement 2010-010", "text": "", "album_id": "72157625082585609", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4946438536_1effa1bc3e_o.jpg", "secret": "8872d488c1", "media": "photo", "latitude": "0", "id": "4946438536", "tags": "students events graduation ceremony pennstate chancellor commencement commonwealth academics dubois campuses creditsteveharmic anitamcdonald"}, {"datetaken": "2010-05-15 14:15:17", "license": "2", "title": "DuBois Commencement 2010-011", "text": "", "album_id": "72157625082585609", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/4945853951_b232359799_o.jpg", "secret": "480dcd9a9e", "media": "photo", "latitude": "0", "id": "4945853951", "tags": "students senator events graduation ceremony pennstate commencement speakers commonwealth address academics dubois campuses creditsteveharmic joescarnati"}, {"datetaken": "2010-05-15 14:27:44", "license": "2", "title": "DuBois Commencement 2010-012", "text": "", "album_id": "72157625082585609", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4946439950_c10d3cc893_o.jpg", "secret": "928c875575", "media": "photo", "latitude": "0", "id": "4946439950", "tags": "students events graduation ceremony pennstate commencement commonwealth academics dubois campuses creditsteveharmic"}, {"datetaken": "2006-04-12 11:52:17", "license": "1", "title": "8228220-R1-007-2", "text": "", "album_id": "72057594105488493", "longitude": "-120.433169", "url_o": "https://farm1.staticflickr.com/45/127561240_8a44ccfd87_o.jpg", "secret": "8a44ccfd87", "media": "photo", "latitude": "34.695667", "id": "127561240", "tags": "isaac graduation ceremony kindergarten nico"}, {"datetaken": "2006-04-12 11:52:52", "license": "1", "title": "8228220-R1-009-3", "text": "", "album_id": "72057594105488493", "longitude": "-120.433169", "url_o": "https://farm1.staticflickr.com/55/127561574_1935d1b756_o.jpg", "secret": "1935d1b756", "media": "photo", "latitude": "34.695667", "id": "127561574", "tags": "isaac graduation ceremony kindergarten nico"}, {"datetaken": "2006-04-12 11:53:17", "license": "1", "title": "8228220-R1-011-4", "text": "", "album_id": "72057594105488493", "longitude": "-120.433169", "url_o": "https://farm1.staticflickr.com/47/127561808_c5693aa3fa_o.jpg", "secret": "c5693aa3fa", "media": "photo", "latitude": "34.695667", "id": "127561808", "tags": "isaac graduation ceremony kindergarten nico"}, {"datetaken": "2006-04-12 11:53:44", "license": "1", "title": "8228220-R1-013-5", "text": "", "album_id": "72057594105488493", "longitude": "-120.433169", "url_o": "https://farm1.staticflickr.com/46/127562049_1c1176401a_o.jpg", "secret": "1c1176401a", "media": "photo", "latitude": "34.695667", "id": "127562049", "tags": "isaac graduation ceremony kindergarten nico"}, {"datetaken": "2006-04-12 11:54:18", "license": "1", "title": "8228220-R1-015-6", "text": "", "album_id": "72057594105488493", "longitude": "-120.459208", "url_o": "https://farm1.staticflickr.com/56/127562307_7021debe69_o.jpg", "secret": "7021debe69", "media": "photo", "latitude": "34.660463", "id": "127562307", "tags": "isaac graduation ceremony kindergarten nico"}, {"datetaken": "2006-04-12 11:54:51", "license": "1", "title": "8228220-R1-017-7", "text": "", "album_id": "72057594105488493", "longitude": "-120.459208", "url_o": "https://farm1.staticflickr.com/46/127562531_8ed4844e69_o.jpg", "secret": "8ed4844e69", "media": "photo", "latitude": "34.660463", "id": "127562531", "tags": "isaac graduation ceremony kindergarten nico"}, {"datetaken": "2006-04-12 11:55:25", "license": "1", "title": "8228220-R1-019-8", "text": "", "album_id": "72057594105488493", "longitude": "-120.459208", "url_o": "https://farm1.staticflickr.com/55/127562751_7c131e4e23_o.jpg", "secret": "7c131e4e23", "media": "photo", "latitude": "34.660463", "id": "127562751", "tags": "isaac graduation ceremony kindergarten nico"}, {"datetaken": "2006-04-12 11:56:01", "license": "1", "title": "8228220-R1-021-9", "text": "", "album_id": "72057594105488493", "longitude": "-120.459208", "url_o": "https://farm1.staticflickr.com/51/127563027_b1bd906d1f_o.jpg", "secret": "b1bd906d1f", "media": "photo", "latitude": "34.660463", "id": "127563027", "tags": "isaac graduation ceremony kindergarten nico"}, {"datetaken": "2006-04-12 11:56:34", "license": "1", "title": "8228220-R1-023-10", "text": "", "album_id": "72057594105488493", "longitude": "-120.459208", "url_o": "https://farm1.staticflickr.com/50/127563295_7ae4484eef_o.jpg", "secret": "7ae4484eef", "media": "photo", "latitude": "34.660463", "id": "127563295", "tags": "isaac graduation ceremony kindergarten nico"}, {"datetaken": "2006-04-12 11:57:09", "license": "1", "title": "8228220-R1-025-11", "text": "", "album_id": "72057594105488493", "longitude": "-120.459208", "url_o": "https://farm1.staticflickr.com/52/127563547_fa374fce32_o.jpg", "secret": "fa374fce32", "media": "photo", "latitude": "34.660463", "id": "127563547", "tags": "isaac graduation ceremony kindergarten nico"}, {"datetaken": "2006-04-12 11:57:37", "license": "1", "title": "8228220-R1-027-12", "text": "", "album_id": "72057594105488493", "longitude": "-120.459208", "url_o": "https://farm1.staticflickr.com/48/127563763_8b4e133424_o.jpg", "secret": "8b4e133424", "media": "photo", "latitude": "34.660463", "id": "127563763", "tags": "isaac graduation ceremony kindergarten nico"}, {"datetaken": "2006-04-12 11:58:09", "license": "1", "title": "8228220-R1-029-13", "text": "", "album_id": "72057594105488493", "longitude": "-120.459208", "url_o": "https://farm1.staticflickr.com/49/127563975_e55c326876_o.jpg", "secret": "e55c326876", "media": "photo", "latitude": "34.660463", "id": "127563975", "tags": "isaac graduation ceremony kindergarten nico"}, {"datetaken": "2006-04-12 11:58:41", "license": "1", "title": "8228220-R1-031-14", "text": "", "album_id": "72057594105488493", "longitude": "-120.459208", "url_o": "https://farm1.staticflickr.com/51/127564167_a6ba71eef4_o.jpg", "secret": "a6ba71eef4", "media": "photo", "latitude": "34.660463", "id": "127564167", "tags": "isaac graduation ceremony kindergarten nico"}, {"datetaken": "2006-04-12 11:59:08", "license": "1", "title": "8228220-R1-033-15", "text": "", "album_id": "72057594105488493", "longitude": "-120.459208", "url_o": "https://farm1.staticflickr.com/47/127564310_096d59257b_o.jpg", "secret": "096d59257b", "media": "photo", "latitude": "34.660463", "id": "127564310", "tags": "isaac graduation ceremony kindergarten nico"}, {"datetaken": "2006-04-12 11:59:39", "license": "1", "title": "8228220-R1-035-16", "text": "", "album_id": "72057594105488493", "longitude": "-120.459208", "url_o": "https://farm1.staticflickr.com/44/127564434_76303007c7_o.jpg", "secret": "76303007c7", "media": "photo", "latitude": "34.660463", "id": "127564434", "tags": "isaac graduation ceremony kindergarten nico"}, {"datetaken": "2006-04-12 12:00:10", "license": "1", "title": "8228220-R1-037-17", "text": "", "album_id": "72057594105488493", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/127564580_e51fcf28f9_o.jpg", "secret": "e51fcf28f9", "media": "photo", "latitude": "0", "id": "127564580", "tags": "isaac graduation ceremony kindergarten nico"}, {"datetaken": "2005-08-12 18:37:00", "license": "1", "title": "Ray at the Mac", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34042534_8d273121e6_o.jpg", "secret": "8d273121e6", "media": "photo", "latitude": "0", "id": "34042534", "tags": "portland oregon photo ray computer needmore"}, {"datetaken": "2005-08-12 18:37:13", "license": "1", "title": "Ray working on Noboto", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34042472_25c0e78e04_o.jpg", "secret": "25c0e78e04", "media": "photo", "latitude": "0", "id": "34042472", "tags": "portland oregon photo ray computer portrait"}, {"datetaken": "2005-08-12 18:37:49", "license": "1", "title": "Debbie in the kitchen", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34042394_f86b748c0c_o.jpg", "secret": "f86b748c0c", "media": "photo", "latitude": "0", "id": "34042394", "tags": "graduation portland oregon photo debbie kitchen portrait"}, {"datetaken": "2005-08-12 18:38:15", "license": "1", "title": "Debbie cooking", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34042338_cab2761de4_o.jpg", "secret": "cab2761de4", "media": "photo", "latitude": "0", "id": "34042338", "tags": "graduation portland oregon photo kitchen debbie portrait"}, {"datetaken": "2005-08-12 18:38:30", "license": "1", "title": "Party preparations", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34042264_36207c3f9d_o.jpg", "secret": "36207c3f9d", "media": "photo", "latitude": "0", "id": "34042264", "tags": "graduation portland oregon photo party"}, {"datetaken": "2005-08-13 08:41:33", "license": "1", "title": "Kandace's graduation dress", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34042207_2b1909b352_o.jpg", "secret": "2b1909b352", "media": "photo", "latitude": "0", "id": "34042207", "tags": "graduation portland oregon photo portrait kandace"}, {"datetaken": "2005-08-13 10:34:27", "license": "1", "title": "Where is she on the program?", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34042144_6d01b40cf7_o.jpg", "secret": "6d01b40cf7", "media": "photo", "latitude": "0", "id": "34042144", "tags": "graduation portland oregon photo debbie ceremony kandace"}, {"datetaken": "2005-08-13 10:41:10", "license": "1", "title": "Getting ready for the ceremony", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34042068_abefc94f90_o.jpg", "secret": "abefc94f90", "media": "photo", "latitude": "0", "id": "34042068", "tags": "graduation portland oregon photo ceremony kandace group"}, {"datetaken": "2005-08-13 14:04:17", "license": "1", "title": "Kandace vs. condiments", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34042014_8acd9e3c73_o.jpg", "secret": "8acd9e3c73", "media": "photo", "latitude": "0", "id": "34042014", "tags": "graduation portland oregon photo kandace condiments garage party"}, {"datetaken": "2005-08-13 14:05:05", "license": "1", "title": "Lovely backyard", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34041934_ef8fe51dcc_o.jpg", "secret": "ef8fe51dcc", "media": "photo", "latitude": "0", "id": "34041934", "tags": "graduation portland oregon photo backyard green"}, {"datetaken": "2005-08-13 14:10:14", "license": "1", "title": "Tiffany with beer", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34041867_237810dc98_o.jpg", "secret": "237810dc98", "media": "photo", "latitude": "0", "id": "34041867", "tags": "graduation portland oregon photo tiffany portrait beer driveway"}, {"datetaken": "2005-08-13 14:23:02", "license": "1", "title": "Kathy and Kandace", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34041738_2877be0696_o.jpg", "secret": "2877be0696", "media": "photo", "latitude": "0", "id": "34041738", "tags": "graduation portland oregon photo kandace kathy group stairs"}, {"datetaken": "2005-08-13 16:24:28", "license": "1", "title": "The graduation cakes", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34041643_61910492ae_o.jpg", "secret": "61910492ae", "media": "photo", "latitude": "0", "id": "34041643", "tags": "graduation portland oregon photo cakes knives"}, {"datetaken": "2005-08-13 16:24:49", "license": "1", "title": "Ready for the cakes", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34041582_96868a0355_o.jpg", "secret": "96868a0355", "media": "photo", "latitude": "0", "id": "34041582", "tags": "graduation portland oregon photo group garage cakes"}, {"datetaken": "2005-08-13 16:32:59", "license": "1", "title": "Miriam and Kandace", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34041414_3d4f86ba20_o.jpg", "secret": "3d4f86ba20", "media": "photo", "latitude": "0", "id": "34041414", "tags": "graduation portland oregon photo group backyard kandace miriam"}, {"datetaken": "2005-08-13 16:43:59", "license": "1", "title": "Lee is eating", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34041333_11d2be54d2_o.jpg", "secret": "11d2be54d2", "media": "photo", "latitude": "0", "id": "34041333", "tags": "graduation portland oregon photo lee portrait eating"}, {"datetaken": "2005-08-13 16:58:05", "license": "1", "title": "Lee is drinking", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34041258_74a3abe533_o.jpg", "secret": "74a3abe533", "media": "photo", "latitude": "0", "id": "34041258", "tags": "graduation portland oregon photo lee portrait drinking backyard"}, {"datetaken": "2005-08-13 16:58:11", "license": "1", "title": "Lee Armstrong", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34041198_f0450a3f7a_o.jpg", "secret": "f0450a3f7a", "media": "photo", "latitude": "0", "id": "34041198", "tags": "graduation portland oregon photo lee portrait backyard"}, {"datetaken": "2005-08-13 16:58:19", "license": "1", "title": "Tiffany", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34041105_895eb55298_o.jpg", "secret": "895eb55298", "media": "photo", "latitude": "0", "id": "34041105", "tags": "graduation portland oregon photo tiffany portrait"}, {"datetaken": "2005-08-13 16:58:48", "license": "1", "title": "The house, from behind", "text": "", "album_id": "754408", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34041034_b831f307b4_o.jpg", "secret": "b831f307b4", "media": "photo", "latitude": "0", "id": "34041034", "tags": "graduation portland oregon photo house jerry"}, {"datetaken": "2005-06-14 12:27:56", "license": "2", "title": "Getting Ready", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19789118_fa50a4bcc1_o.jpg", "secret": "fa50a4bcc1", "media": "photo", "latitude": "0", "id": "19789118", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia josh trevor bronwynne bryan will"}, {"datetaken": "2005-06-14 12:28:13", "license": "2", "title": "Janet Gets Everyone Organized", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19789153_3a0a10221b_o.jpg", "secret": "3a0a10221b", "media": "photo", "latitude": "0", "id": "19789153", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia janet lyz josh"}, {"datetaken": "2005-06-14 12:30:29", "license": "2", "title": "Sign", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19789090_3bb3c99c40_o.jpg", "secret": "3bb3c99c40", "media": "photo", "latitude": "0", "id": "19789090", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia"}, {"datetaken": "2005-06-14 12:38:14", "license": "2", "title": "Janet and Joanne", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19789178_f11e538656_o.jpg", "secret": "f11e538656", "media": "photo", "latitude": "0", "id": "19789178", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia janet joanne"}, {"datetaken": "2005-06-14 12:38:24", "license": "2", "title": "Jessica and Andrew", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19789210_9d19a725e0_o.jpg", "secret": "9d19a725e0", "media": "photo", "latitude": "0", "id": "19789210", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia jessica andrew"}, {"datetaken": "2005-06-14 12:38:52", "license": "2", "title": "Rachel and Bryan", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19789237_fe4b9061da_o.jpg", "secret": "fe4b9061da", "media": "photo", "latitude": "0", "id": "19789237", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia rachel bryan"}, {"datetaken": "2005-06-14 12:39:03", "license": "2", "title": "Rachel and Bryan", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19789273_73c1d953b9_o.jpg", "secret": "73c1d953b9", "media": "photo", "latitude": "0", "id": "19789273", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia rachel bryan"}, {"datetaken": "2005-06-14 12:46:02", "license": "2", "title": "Andrew Looks Down", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19789307_62fa513ad2_o.jpg", "secret": "62fa513ad2", "media": "photo", "latitude": "0", "id": "19789307", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia andrew"}, {"datetaken": "2005-06-14 12:47:20", "license": "2", "title": "Doug, Trevor and Will", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19789346_28e89f93f4_o.jpg", "secret": "28e89f93f4", "media": "photo", "latitude": "0", "id": "19789346", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia doug trevor will"}, {"datetaken": "2005-06-14 12:47:35", "license": "2", "title": "Waiting", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19789374_163277fb92_o.jpg", "secret": "163277fb92", "media": "photo", "latitude": "0", "id": "19789374", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia"}, {"datetaken": "2005-06-14 12:47:50", "license": "2", "title": "Jessica and Joanne", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19789396_582b96cda5_o.jpg", "secret": "582b96cda5", "media": "photo", "latitude": "0", "id": "19789396", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia jessica joanne"}, {"datetaken": "2005-06-14 12:48:41", "license": "2", "title": "Jessica, Joanne, Rachel and Bryan", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19789416_faefdaf567_o.jpg", "secret": "faefdaf567", "media": "photo", "latitude": "0", "id": "19789416", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia jessica joanne rachel bryan"}, {"datetaken": "2005-06-14 12:48:47", "license": "2", "title": "Doug Strikes a Pose", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19789460_4a1c9dbdb8_o.jpg", "secret": "4a1c9dbdb8", "media": "photo", "latitude": "0", "id": "19789460", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia josh doug trevor will"}, {"datetaken": "2005-06-14 12:49:40", "license": "2", "title": "Line of Graduates", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19789483_173ecd7aec_o.jpg", "secret": "173ecd7aec", "media": "photo", "latitude": "0", "id": "19789483", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia"}, {"datetaken": "2005-06-14 12:51:24", "license": "2", "title": "Will and Trevor", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19789508_c6523e9423_o.jpg", "secret": "c6523e9423", "media": "photo", "latitude": "0", "id": "19789508", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia will trevor"}, {"datetaken": "2005-06-14 12:51:29", "license": "2", "title": "Rachel and Bryan", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19789544_760696562b_o.jpg", "secret": "760696562b", "media": "photo", "latitude": "0", "id": "19789544", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia rachel bryan"}, {"datetaken": "2005-06-14 12:53:30", "license": "2", "title": "Joanne and Rachel", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19789559_1380568409_o.jpg", "secret": "1380568409", "media": "photo", "latitude": "0", "id": "19789559", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia joanne rachel"}, {"datetaken": "2005-06-14 12:53:36", "license": "2", "title": "Jessica Looks Down", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19789599_33dedeb104_o.jpg", "secret": "33dedeb104", "media": "photo", "latitude": "0", "id": "19789599", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia jessica"}, {"datetaken": "2005-06-14 12:53:45", "license": "2", "title": "Doug Barnes Talks With Graduates", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19789615_4b574c298e_o.jpg", "secret": "4b574c298e", "media": "photo", "latitude": "0", "id": "19789615", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia andrew doug josh trevor"}, {"datetaken": "2005-06-14 12:53:56", "license": "2", "title": "Doug Talks With Trevor", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19789643_f2bc9356e3_o.jpg", "secret": "f2bc9356e3", "media": "photo", "latitude": "0", "id": "19789643", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia trevor doug"}, {"datetaken": "2005-06-14 12:54:18", "license": "2", "title": "Josh", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19789668_0213c420b1_o.jpg", "secret": "0213c420b1", "media": "photo", "latitude": "0", "id": "19789668", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia josh"}, {"datetaken": "2005-06-14 12:56:08", "license": "2", "title": "Bronwynne and Lyz", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19789695_e3930e16cd_o.jpg", "secret": "e3930e16cd", "media": "photo", "latitude": "0", "id": "19789695", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia bronwynne lyz"}, {"datetaken": "2005-06-14 12:59:14", "license": "2", "title": "Waiting...", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19789742_174159144a_o.jpg", "secret": "174159144a", "media": "photo", "latitude": "0", "id": "19789742", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia josh rachel lyz"}, {"datetaken": "2005-06-14 12:59:23", "license": "2", "title": "Jessica", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19789770_1db5df1b2d_o.jpg", "secret": "1db5df1b2d", "media": "photo", "latitude": "0", "id": "19789770", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia bryan jessica"}, {"datetaken": "2005-06-14 12:59:42", "license": "2", "title": "Darcy", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19789803_720b3639c2_o.jpg", "secret": "720b3639c2", "media": "photo", "latitude": "0", "id": "19789803", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia josh darcy"}, {"datetaken": "2005-06-14 13:01:15", "license": "2", "title": "Janet, Joanne and Jessica", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19789842_db60eb336b_o.jpg", "secret": "db60eb336b", "media": "photo", "latitude": "0", "id": "19789842", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia janet joanne jessica"}, {"datetaken": "2005-06-14 13:03:52", "license": "2", "title": "Catherine and Lyz", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19789880_ac88b9de12_o.jpg", "secret": "ac88b9de12", "media": "photo", "latitude": "0", "id": "19789880", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia catherine lyz"}, {"datetaken": "2005-06-14 13:05:44", "license": "2", "title": "Bronwynne and Catherine", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19789915_31c7bac7e6_o.jpg", "secret": "31c7bac7e6", "media": "photo", "latitude": "0", "id": "19789915", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia bronwynne catherine"}, {"datetaken": "2005-06-14 13:22:13", "license": "2", "title": "Looking Out From the Back of the Stage", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19789951_b1a7880f1f_o.jpg", "secret": "b1a7880f1f", "media": "photo", "latitude": "0", "id": "19789951", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia people theatre"}, {"datetaken": "2005-06-14 13:25:58", "license": "2", "title": "Daurene Lewis Speaking", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19790000_ab2c7034a4_o.jpg", "secret": "ab2c7034a4", "media": "photo", "latitude": "0", "id": "19790000", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia"}, {"datetaken": "2005-06-14 13:43:41", "license": "2", "title": "Ray Ivany Speaks", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19790029_700dd6e777_o.jpg", "secret": "700dd6e777", "media": "photo", "latitude": "0", "id": "19790029", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia"}, {"datetaken": "2005-06-14 14:03:07", "license": "2", "title": "Ray Ivany About to Shake a Graduate's Hand", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19790058_15d8580116_o.jpg", "secret": "15d8580116", "media": "photo", "latitude": "0", "id": "19790058", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia"}, {"datetaken": "2005-06-14 14:05:16", "license": "2", "title": "The Greeting", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19790091_0177859265_o.jpg", "secret": "0177859265", "media": "photo", "latitude": "0", "id": "19790091", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia"}, {"datetaken": "2005-06-14 14:25:08", "license": "2", "title": "Shadows on the Stage", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19790118_c96b0d900f_o.jpg", "secret": "c96b0d900f", "media": "photo", "latitude": "0", "id": "19790118", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia shadows stage"}, {"datetaken": "2005-06-14 14:25:19", "license": "2", "title": "Screen Behind the Stage", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19790141_1e27d7c130_o.jpg", "secret": "1e27d7c130", "media": "photo", "latitude": "0", "id": "19790141", "tags": "nscc convocation2005 graduation bellroad screenarts spring 2005 halifax novascotia screen"}, {"datetaken": "2005-06-14 14:29:35", "license": "2", "title": "Chairs at Convocation", "text": "", "album_id": "463870", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19581661_136f521c6f_o.jpg", "secret": "136f521c6f", "media": "photo", "latitude": "0", "id": "19581661", "tags": "nscc halifax novascotia spring 2005 chairs"}, {"datetaken": "2006-12-17 14:05:06", "license": "1", "title": "Andrew Grad-40", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/363877065_448382bff5_o.jpg", "secret": "448382bff5", "media": "photo", "latitude": "0", "id": "363877065", "tags": "people outdoors pennsylvania graduation"}, {"datetaken": "2006-12-17 14:05:23", "license": "1", "title": "Andrew Grad-38", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/363877195_d9c2d8c11c_o.jpg", "secret": "d9c2d8c11c", "media": "photo", "latitude": "0", "id": "363877195", "tags": "people outdoors pennsylvania graduation"}, {"datetaken": "2006-12-17 14:42:17", "license": "1", "title": "Andrew Grad-31", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/115/363877304_81f3e607eb_o.jpg", "secret": "81f3e607eb", "media": "photo", "latitude": "0", "id": "363877304", "tags": "pennsylvania graduation program names lists"}, {"datetaken": "2006-12-17 14:45:49", "license": "1", "title": "Andrew Grad-33", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/106/363877447_d4f574e206_o.jpg", "secret": "d4f574e206", "media": "photo", "latitude": "0", "id": "363877447", "tags": "people pennsylvania graduation indoors"}, {"datetaken": "2006-12-17 15:15:57", "license": "1", "title": "Andrew Grad-30", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/363877590_779da953fd_o.jpg", "secret": "779da953fd", "media": "photo", "latitude": "0", "id": "363877590", "tags": "people college pennsylvania graduation ceremony indoors"}, {"datetaken": "2006-12-17 15:24:37", "license": "1", "title": "Andrew Grad-28", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/363877704_ead2975ab7_o.jpg", "secret": "ead2975ab7", "media": "photo", "latitude": "0", "id": "363877704", "tags": "people college pennsylvania graduation ceremony indoors"}, {"datetaken": "2006-12-17 15:26:51", "license": "1", "title": "Andrew Grad-25", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/363877819_61a584ace8_o.jpg", "secret": "61a584ace8", "media": "photo", "latitude": "0", "id": "363877819", "tags": "people college pennsylvania graduation ceremony indoors"}, {"datetaken": "2006-12-17 15:27:18", "license": "1", "title": "Andrew Grad-24", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/117/363877958_450ae52b9a_o.jpg", "secret": "450ae52b9a", "media": "photo", "latitude": "0", "id": "363877958", "tags": "people college pennsylvania graduation ceremony indoors"}, {"datetaken": "2006-12-17 15:32:17", "license": "1", "title": "Andrew Grad-20", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/112/363878091_49cc1a5bab_o.jpg", "secret": "49cc1a5bab", "media": "photo", "latitude": "0", "id": "363878091", "tags": "people college pennsylvania graduation ceremony indoors"}, {"datetaken": "2006-12-17 15:34:27", "license": "1", "title": "Andrew Grad-19", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/116/363878194_98ff689a44_o.jpg", "secret": "98ff689a44", "media": "photo", "latitude": "0", "id": "363878194", "tags": "people college pennsylvania graduation ceremony indoors"}, {"datetaken": "2006-12-17 15:38:51", "license": "1", "title": "Andrew Grad-17", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/363878288_7d8355bd0e_o.jpg", "secret": "7d8355bd0e", "media": "photo", "latitude": "0", "id": "363878288", "tags": "outdoors pennsylvania watertower graduation wcu"}, {"datetaken": "2006-12-17 15:50:49", "license": "1", "title": "Andrew Grad-27", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/363878410_00e3ed6cfd_o.jpg", "secret": "00e3ed6cfd", "media": "photo", "latitude": "0", "id": "363878410", "tags": "people outdoors pennsylvania graduation"}, {"datetaken": "2006-12-17 15:59:59", "license": "1", "title": "Andrew Grad-16", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/363878509_3b1dd31717_o.jpg", "secret": "3b1dd31717", "media": "photo", "latitude": "0", "id": "363878509", "tags": "people outdoors pennsylvania graduation"}, {"datetaken": "2006-12-17 16:01:08", "license": "1", "title": "Andrew Grad-15", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/101/363878611_350f683560_o.jpg", "secret": "350f683560", "media": "photo", "latitude": "0", "id": "363878611", "tags": "people outdoors pennsylvania graduation"}, {"datetaken": "2006-12-17 16:01:36", "license": "1", "title": "Andrew Grad-14", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/363878705_39d2b46e04_o.jpg", "secret": "39d2b46e04", "media": "photo", "latitude": "0", "id": "363878705", "tags": "people outdoors pennsylvania graduation"}, {"datetaken": "2006-12-17 16:02:16", "license": "1", "title": "Andrew Grad-12", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/363878844_b8d573ba60_o.jpg", "secret": "b8d573ba60", "media": "photo", "latitude": "0", "id": "363878844", "tags": "people outdoors pennsylvania graduation"}, {"datetaken": "2006-12-17 16:02:41", "license": "1", "title": "Andrew Grad-11", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/363878967_09f3eab4e7_o.jpg", "secret": "09f3eab4e7", "media": "photo", "latitude": "0", "id": "363878967", "tags": "people outdoors pennsylvania graduation"}, {"datetaken": "2006-12-17 16:02:59", "license": "1", "title": "Andrew Grad-10", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/363879048_c818550667_o.jpg", "secret": "c818550667", "media": "photo", "latitude": "0", "id": "363879048", "tags": "people outdoors pennsylvania graduation"}, {"datetaken": "2006-12-17 16:03:15", "license": "1", "title": "Andrew Grad-09", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/363879156_e7a58d0ea2_o.jpg", "secret": "e7a58d0ea2", "media": "photo", "latitude": "0", "id": "363879156", "tags": "people outdoors pennsylvania graduation"}, {"datetaken": "2006-12-17 16:03:22", "license": "1", "title": "Andrew Grad-08", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/363879271_6a9a17785a_o.jpg", "secret": "6a9a17785a", "media": "photo", "latitude": "0", "id": "363879271", "tags": "people outdoors pennsylvania graduation"}, {"datetaken": "2006-12-17 16:03:43", "license": "1", "title": "Andrew Grad-23", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/363879340_badabcac82_o.jpg", "secret": "badabcac82", "media": "photo", "latitude": "0", "id": "363879340", "tags": "people outdoors pennsylvania graduation"}, {"datetaken": "2006-12-17 16:04:01", "license": "1", "title": "Andrew Grad-07", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/363879435_b43fef5161_o.jpg", "secret": "b43fef5161", "media": "photo", "latitude": "0", "id": "363879435", "tags": "people outdoors brothers pennsylvania graduation"}, {"datetaken": "2006-12-17 16:04:41", "license": "1", "title": "Andrew Grad-06", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/363879528_aebe4bafa3_o.jpg", "secret": "aebe4bafa3", "media": "photo", "latitude": "0", "id": "363879528", "tags": "people outdoors pennsylvania graduation"}, {"datetaken": "2006-12-17 16:04:54", "license": "1", "title": "Andrew Grad-05", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/109/363879616_13b34ee597_o.jpg", "secret": "13b34ee597", "media": "photo", "latitude": "0", "id": "363879616", "tags": "people outdoors pennsylvania graduation graduate"}, {"datetaken": "2006-12-17 16:05:27", "license": "1", "title": "Andrew Grad-04", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/363879707_78e968fa19_o.jpg", "secret": "78e968fa19", "media": "photo", "latitude": "0", "id": "363879707", "tags": "people outdoors pennsylvania graduation wcu graduationhood"}, {"datetaken": "2006-12-17 16:34:18", "license": "1", "title": "Andrew Grad-02", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/363879788_b154d7b40a_o.jpg", "secret": "b154d7b40a", "media": "photo", "latitude": "0", "id": "363879788", "tags": "people outdoors pennsylvania graduation"}, {"datetaken": "2006-12-17 18:27:43", "license": "1", "title": "Andrew Grad-01", "text": "", "album_id": "72157594490707109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/363879884_bd9aa36748_o.jpg", "secret": "bd9aa36748", "media": "photo", "latitude": "0", "id": "363879884", "tags": "people pennsylvania graduation"}, {"datetaken": "2006-10-15 13:51:21", "license": "2", "title": "PICT2194_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/121/273345671_d9b604fdf4_o.jpg", "secret": "d9b604fdf4", "media": "photo", "latitude": "0", "id": "273345671", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 13:51:24", "license": "2", "title": "PICT2195_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/93/273346081_b2baee5ce0_o.jpg", "secret": "b2baee5ce0", "media": "photo", "latitude": "0", "id": "273346081", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 14:08:25", "license": "2", "title": "PICT2198.JPG", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/103/273348349_48b12c121a_o.jpg", "secret": "48b12c121a", "media": "photo", "latitude": "0", "id": "273348349", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 14:20:05", "license": "2", "title": "PICT2200_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/93/273351296_6b2d47491b_o.jpg", "secret": "6b2d47491b", "media": "photo", "latitude": "0", "id": "273351296", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 14:22:38", "license": "2", "title": "PICT2202_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/273351429_5ef08be039_o.jpg", "secret": "5ef08be039", "media": "photo", "latitude": "0", "id": "273351429", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 14:24:31", "license": "2", "title": "PICT2203.JPG", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/102/273351596_02603bb4b4_o.jpg", "secret": "02603bb4b4", "media": "photo", "latitude": "0", "id": "273351596", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 14:24:38", "license": "2", "title": "PICT2204.JPG", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/273351756_0ada0082b5_o.jpg", "secret": "0ada0082b5", "media": "photo", "latitude": "0", "id": "273351756", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 14:24:39", "license": "2", "title": "PICT2205.JPG", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/107/273351952_3a0bf54be8_o.jpg", "secret": "3a0bf54be8", "media": "photo", "latitude": "0", "id": "273351952", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 15:00:11", "license": "2", "title": "PICT2240_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/122/273365623_9d77f5d547_o.jpg", "secret": "9d77f5d547", "media": "photo", "latitude": "0", "id": "273365623", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 15:02:41", "license": "2", "title": "PICT2248_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/115/273365706_b50e6f75e1_o.jpg", "secret": "b50e6f75e1", "media": "photo", "latitude": "0", "id": "273365706", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 15:03:56", "license": "2", "title": "PICT2254_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/273365855_a04d375133_o.jpg", "secret": "a04d375133", "media": "photo", "latitude": "0", "id": "273365855", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 15:03:58", "license": "2", "title": "PICT2255_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/104/273365995_9e53cdaade_o.jpg", "secret": "9e53cdaade", "media": "photo", "latitude": "0", "id": "273365995", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 15:04:06", "license": "2", "title": "PICT2256_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/273366117_ae81886e90_o.jpg", "secret": "ae81886e90", "media": "photo", "latitude": "0", "id": "273366117", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 15:04:07", "license": "2", "title": "PICT2257_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/273366269_60836312ee_o.jpg", "secret": "60836312ee", "media": "photo", "latitude": "0", "id": "273366269", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 15:04:39", "license": "2", "title": "PICT2258_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/110/273366353_531950b3d0_o.jpg", "secret": "531950b3d0", "media": "photo", "latitude": "0", "id": "273366353", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 15:04:42", "license": "2", "title": "PICT2259_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/273366476_c3461abd13_o.jpg", "secret": "c3461abd13", "media": "photo", "latitude": "0", "id": "273366476", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 15:20:03", "license": "2", "title": "PICT2262_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/273366609_ffd254fdca_o.jpg", "secret": "ffd254fdca", "media": "photo", "latitude": "0", "id": "273366609", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 15:20:37", "license": "2", "title": "PICT2265_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/119/273366718_bbcf7f4455_o.jpg", "secret": "bbcf7f4455", "media": "photo", "latitude": "0", "id": "273366718", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 15:33:19", "license": "2", "title": "University of Sunderland Graduation Ceremony 2006.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/102/273377734_3e90cba79d_o.jpg", "secret": "3e90cba79d", "media": "photo", "latitude": "0", "id": "273377734", "tags": "graduationceremony"}, {"datetaken": "2006-10-15 16:21:01", "license": "2", "title": "PICT2384_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/276152782_fcd4f46465_o.jpg", "secret": "fcd4f46465", "media": "photo", "latitude": "0", "id": "276152782", "tags": ""}, {"datetaken": "2006-10-15 16:21:13", "license": "2", "title": "PICT2385_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/101/276155691_e1d7172ad6_o.jpg", "secret": "e1d7172ad6", "media": "photo", "latitude": "0", "id": "276155691", "tags": ""}, {"datetaken": "2006-10-15 16:23:34", "license": "2", "title": "PICT2386_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/276157917_6a2cac4770_o.jpg", "secret": "6a2cac4770", "media": "photo", "latitude": "0", "id": "276157917", "tags": ""}, {"datetaken": "2006-10-15 16:23:58", "license": "2", "title": "PICT2387_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/103/276158580_2caaa6d726_o.jpg", "secret": "2caaa6d726", "media": "photo", "latitude": "0", "id": "276158580", "tags": ""}, {"datetaken": "2006-10-15 16:33:58", "license": "2", "title": "PICT2390_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/106/276158889_a08f818239_o.jpg", "secret": "a08f818239", "media": "photo", "latitude": "0", "id": "276158889", "tags": ""}, {"datetaken": "2006-10-15 16:37:58", "license": "2", "title": "PICT2399_c.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/276159384_2587437357_o.jpg", "secret": "2587437357", "media": "photo", "latitude": "0", "id": "276159384", "tags": ""}, {"datetaken": "2006-10-15 16:38:19", "license": "2", "title": "PICT2401_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/117/276159931_61a13e18e0_o.jpg", "secret": "61a13e18e0", "media": "photo", "latitude": "0", "id": "276159931", "tags": ""}, {"datetaken": "2006-10-15 16:39:21", "license": "2", "title": "PICT2405_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/276160940_a3a97e394d_o.jpg", "secret": "a3a97e394d", "media": "photo", "latitude": "0", "id": "276160940", "tags": ""}, {"datetaken": "2006-10-15 16:40:37", "license": "2", "title": "PICT2407_r.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/276161226_fc5816cb3c_o.jpg", "secret": "fc5816cb3c", "media": "photo", "latitude": "0", "id": "276161226", "tags": ""}, {"datetaken": "2006-10-15 16:40:45", "license": "2", "title": "PICT2408_r.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/104/276161423_c28720da39_o.jpg", "secret": "c28720da39", "media": "photo", "latitude": "0", "id": "276161423", "tags": ""}, {"datetaken": "2006-10-15 16:42:45", "license": "2", "title": "PICT2410_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/101/276161658_dc8512cc9e_o.jpg", "secret": "dc8512cc9e", "media": "photo", "latitude": "0", "id": "276161658", "tags": ""}, {"datetaken": "2006-10-15 16:45:02", "license": "2", "title": "PICT2415_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/103/276161885_19c15ea33a_o.jpg", "secret": "19c15ea33a", "media": "photo", "latitude": "0", "id": "276161885", "tags": ""}, {"datetaken": "2006-10-15 16:45:21", "license": "2", "title": "PICT2417_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/276162127_4cd2a53d45_o.jpg", "secret": "4cd2a53d45", "media": "photo", "latitude": "0", "id": "276162127", "tags": ""}, {"datetaken": "2006-10-15 16:45:43", "license": "2", "title": "PICT2418_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/276162384_5cbfea8af7_o.jpg", "secret": "5cbfea8af7", "media": "photo", "latitude": "0", "id": "276162384", "tags": ""}, {"datetaken": "2006-10-15 16:45:59", "license": "2", "title": "PICT2419_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/100/276162583_1a4c8f3ada_o.jpg", "secret": "1a4c8f3ada", "media": "photo", "latitude": "0", "id": "276162583", "tags": ""}, {"datetaken": "2006-10-15 16:46:39", "license": "2", "title": "PICT2420_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/104/276162987_8622ed68b1_o.jpg", "secret": "8622ed68b1", "media": "photo", "latitude": "0", "id": "276162987", "tags": ""}, {"datetaken": "2006-10-15 16:47:13", "license": "2", "title": "PICT2422_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/276164117_911baba368_o.jpg", "secret": "911baba368", "media": "photo", "latitude": "0", "id": "276164117", "tags": ""}, {"datetaken": "2006-10-15 16:47:17", "license": "2", "title": "PICT2423_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/276164770_6e7e727e68_o.jpg", "secret": "6e7e727e68", "media": "photo", "latitude": "0", "id": "276164770", "tags": ""}, {"datetaken": "2006-10-15 16:50:24", "license": "2", "title": "PICT2432_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/103/276165036_f650c36764_o.jpg", "secret": "f650c36764", "media": "photo", "latitude": "0", "id": "276165036", "tags": ""}, {"datetaken": "2006-10-15 16:50:48", "license": "2", "title": "PICT2433_copy.jpg", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/276165301_dec3e60047_o.jpg", "secret": "dec3e60047", "media": "photo", "latitude": "0", "id": "276165301", "tags": ""}, {"datetaken": "2006-10-15 16:56:26", "license": "2", "title": "Locker", "text": "", "album_id": "72157594334689344", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/276165622_96a2ed7a40_o.jpg", "secret": "96a2ed7a40", "media": "photo", "latitude": "0", "id": "276165622", "tags": ""}, {"datetaken": "2006-11-16 09:36:31", "license": "3", "title": "Practice drill ..", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/113/302754551_ae253aaa41_o.jpg", "secret": "ae253aaa41", "media": "photo", "latitude": "32.739927", "id": "302754551", "tags": "trip marine sandiego califorina wessgraduaion 30d1006121"}, {"datetaken": "2006-11-16 10:01:14", "license": "3", "title": "Flag is raised ...", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/113/302754593_73df965a2d_o.jpg", "secret": "73df965a2d", "media": "photo", "latitude": "32.739927", "id": "302754593", "tags": "trip marine sandiego califorina wessgraduaion 30d1006140"}, {"datetaken": "2006-11-16 10:33:58", "license": "3", "title": "Mom shopping at the base!", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/105/302754628_18a9ee409b_o.jpg", "secret": "18a9ee409b", "media": "photo", "latitude": "32.739927", "id": "302754628", "tags": "trip marine sandiego califorina wessgraduaion 30d1006162"}, {"datetaken": "2006-11-16 10:35:56", "license": "3", "title": "Marine Drill Sargent", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/111/302754684_8c9e15e39f_o.jpg", "secret": "8c9e15e39f", "media": "photo", "latitude": "32.739927", "id": "302754684", "tags": "trip marine sandiego califorina wessgraduaion 30d1006163"}, {"datetaken": "2006-11-16 11:10:27", "license": "3", "title": "Marine Recruit Graduation Ceremonies", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/118/303510043_b7d1026fa7_o.jpg", "secret": "b7d1026fa7", "media": "photo", "latitude": "32.739927", "id": "303510043", "tags": "trip sandiego califorina wessgraduaion 30d1006170"}, {"datetaken": "2006-11-16 11:12:36", "license": "3", "title": "Marine Recruit Graduation Ceremonies", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/122/303510118_02f0fbc092_o.jpg", "secret": "02f0fbc092", "media": "photo", "latitude": "32.739927", "id": "303510118", "tags": "trip sandiego califorina wessgraduaion 30d1006171"}, {"datetaken": "2006-11-16 11:16:52", "license": "3", "title": "Marine Recruit Graduation Ceremonies", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/111/303510186_5c258e2d73_o.jpg", "secret": "5c258e2d73", "media": "photo", "latitude": "32.739927", "id": "303510186", "tags": "trip sandiego califorina wessgraduaion 30d1006179"}, {"datetaken": "2006-11-16 13:25:54", "license": "3", "title": "Marine Recruit Graduation Ceremonies", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/104/303510247_45af4f8825_o.jpg", "secret": "45af4f8825", "media": "photo", "latitude": "32.739927", "id": "303510247", "tags": "trip sandiego califorina wessgraduaion 30d1006196"}, {"datetaken": "2006-11-16 13:35:40", "license": "3", "title": "Rachel", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/103/304192507_c189085059_o.jpg", "secret": "c189085059", "media": "photo", "latitude": "32.739927", "id": "304192507", "tags": "trip rachel sandiego califorina wessgraduaion 30d1006197"}, {"datetaken": "2006-11-16 13:45:15", "license": "3", "title": "Marine's Parade", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/106/304192564_e089ce3759_o.jpg", "secret": "e089ce3759", "media": "photo", "latitude": "32.739927", "id": "304192564", "tags": "trip sandiego califorina wessgraduaion 30d1006200"}, {"datetaken": "2006-11-16 13:48:44", "license": "3", "title": "Wes ... Parade Rest", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/116/304192604_bba0410e3a_o.jpg", "secret": "bba0410e3a", "media": "photo", "latitude": "32.739927", "id": "304192604", "tags": "trip sandiego califorina wessgraduaion 30d1006204"}, {"datetaken": "2006-11-16 14:00:17", "license": "3", "title": "Made it!", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/107/304192646_5e2f117319_o.jpg", "secret": "5e2f117319", "media": "photo", "latitude": "32.739927", "id": "304192646", "tags": "trip sandiego califorina wessgraduaion 30d1006208"}, {"datetaken": "2006-11-16 14:00:59", "license": "3", "title": "Wes attaches emblem", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/104/304918674_fbcdb29021_o.jpg", "secret": "fbcdb29021", "media": "photo", "latitude": "32.739927", "id": "304918674", "tags": "trip sandiego califorina wessgraduaion 30d1006217"}, {"datetaken": "2006-11-16 14:01:43", "license": "3", "title": "Wes", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/102/304918707_4bf479e9b5_o.jpg", "secret": "4bf479e9b5", "media": "photo", "latitude": "32.739927", "id": "304918707", "tags": "trip sandiego califorina wessgraduaion 30d1006222"}, {"datetaken": "2006-11-16 14:04:33", "license": "3", "title": "Parade Rest", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/99/304918751_70688f4b04_o.jpg", "secret": "70688f4b04", "media": "photo", "latitude": "32.739927", "id": "304918751", "tags": "trip sandiego califorina wessgraduaion 30d1006223"}, {"datetaken": "2006-11-16 14:06:40", "license": "3", "title": "Crowd Cheers", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/122/304918803_b77713553d_o.jpg", "secret": "b77713553d", "media": "photo", "latitude": "32.739927", "id": "304918803", "tags": "trip sandiego califorina wessgraduaion 30d1006225"}, {"datetaken": "2006-11-16 14:07:52", "license": "3", "title": "Marine Parade", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/106/304918840_cb8e51311c_o.jpg", "secret": "cb8e51311c", "media": "photo", "latitude": "32.739927", "id": "304918840", "tags": "trip sandiego califorina wessgraduaion 30d1006228"}, {"datetaken": "2006-11-16 16:42:51", "license": "3", "title": "Wes - new Marine...", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/116/304918870_f376f0d426_o.jpg", "secret": "f376f0d426", "media": "photo", "latitude": "32.739927", "id": "304918870", "tags": "trip sandiego califorina wessgraduaion 30d1006236"}, {"datetaken": "2006-11-17 09:56:51", "license": "3", "title": "On Marine Base ...", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/118/305582023_8d0cf9916b_o.jpg", "secret": "8d0cf9916b", "media": "photo", "latitude": "32.739927", "id": "305582023", "tags": "marine graduation wes 30d1006242"}, {"datetaken": "2006-11-17 10:14:37", "license": "3", "title": "Flowers on the Base.", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/100/305582059_643038091b_o.jpg", "secret": "643038091b", "media": "photo", "latitude": "32.739927", "id": "305582059", "tags": "marine graduation wes 30d1006244"}, {"datetaken": "2006-11-17 10:31:43", "license": "3", "title": "Flowers on the Base.", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/113/305582172_55abfef486_o.jpg", "secret": "55abfef486", "media": "photo", "latitude": "32.739927", "id": "305582172", "tags": "marine graduation wes 30d1006248"}, {"datetaken": "2006-11-17 10:42:27", "license": "3", "title": "Bags ready for Leave ...", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/110/305582247_845eb174b9_o.jpg", "secret": "845eb174b9", "media": "photo", "latitude": "32.739927", "id": "305582247", "tags": "marine graduation wes 30d1006249"}, {"datetaken": "2006-11-17 10:43:08", "license": "3", "title": "Baggage", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/102/306506745_333b500a89_o.jpg", "secret": "333b500a89", "media": "photo", "latitude": "32.739927", "id": "306506745", "tags": "marine graduation wes 30d1006251"}, {"datetaken": "2006-11-17 10:52:48", "license": "3", "title": "barracks", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/117/306506803_c1b87c5f92_o.jpg", "secret": "c1b87c5f92", "media": "photo", "latitude": "32.739927", "id": "306506803", "tags": "marine graduation wes 30d1006256"}, {"datetaken": "2006-11-17 10:53:32", "license": "3", "title": "The three Wise Women", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/113/306506893_4556057f1c_o.jpg", "secret": "4556057f1c", "media": "photo", "latitude": "32.739927", "id": "306506893", "tags": "rachel marine graduation maureen wes marquita 30d1006259"}, {"datetaken": "2006-11-17 10:55:58", "license": "3", "title": "Rachel", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/120/306506948_3ef3e8007f_o.jpg", "secret": "3ef3e8007f", "media": "photo", "latitude": "32.739927", "id": "306506948", "tags": "rachel marine graduation wes 30d1006261"}, {"datetaken": "2006-11-17 11:49:37", "license": "3", "title": "Wes Marine Graduation", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/121/307749201_6e7f3e9092_o.jpg", "secret": "6e7f3e9092", "media": "photo", "latitude": "32.739927", "id": "307749201", "tags": "marine graduation wes 30d1006264"}, {"datetaken": "2006-11-17 12:01:58", "license": "3", "title": "Wes Marine Graduation", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/103/307749300_f5c756e612_o.jpg", "secret": "f5c756e612", "media": "photo", "latitude": "32.739927", "id": "307749300", "tags": "marine graduation wes 30d1006265"}, {"datetaken": "2006-11-17 12:06:09", "license": "3", "title": "Wes Marine Graduation", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/100/307749389_bb4eea5f79_o.jpg", "secret": "bb4eea5f79", "media": "photo", "latitude": "32.739927", "id": "307749389", "tags": "marine graduation wes 30d1006268"}, {"datetaken": "2006-11-17 12:07:22", "license": "3", "title": "Wes Marine Graduation", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/111/307749453_609898f970_o.jpg", "secret": "609898f970", "media": "photo", "latitude": "32.739927", "id": "307749453", "tags": "marine graduation wes 30d1006269"}, {"datetaken": "2006-11-17 12:22:15", "license": "3", "title": "Marine Graduation Ceremonies", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/100/308992494_d4b5ea4b5b_o.jpg", "secret": "d4b5ea4b5b", "media": "photo", "latitude": "32.739927", "id": "308992494", "tags": "marine sandiego graduation wes 30d1006278"}, {"datetaken": "2006-11-17 12:22:37", "license": "3", "title": "Marine Graduation Ceremonies", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/99/308992591_f2d321ae5c_o.jpg", "secret": "f2d321ae5c", "media": "photo", "latitude": "32.739927", "id": "308992591", "tags": "marine sandiego graduation wes 30d1006281"}, {"datetaken": "2006-11-17 12:25:04", "license": "3", "title": "Marine Graduation Ceremonies", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/112/308992698_0d67c22737_o.jpg", "secret": "0d67c22737", "media": "photo", "latitude": "32.739927", "id": "308992698", "tags": "marine sandiego graduation wes 30d1006289"}, {"datetaken": "2006-11-17 12:25:20", "license": "3", "title": "Marine Graduation Ceremonies", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/101/308992804_b7edf59e86_o.jpg", "secret": "b7edf59e86", "media": "photo", "latitude": "32.739927", "id": "308992804", "tags": "marine sandiego graduation wes 30d1006294"}, {"datetaken": "2006-11-17 13:07:38", "license": "3", "title": "Cheering crowd", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/111/309519750_dd22613d3c_o.jpg", "secret": "dd22613d3c", "media": "photo", "latitude": "32.739927", "id": "309519750", "tags": "marine sandiego graduation wes 30d1006329"}, {"datetaken": "2006-11-17 13:12:09", "license": "3", "title": "Parade", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/106/309519852_1721767ef4_o.jpg", "secret": "1721767ef4", "media": "photo", "latitude": "32.739927", "id": "309519852", "tags": "marine sandiego graduation wes30d1006339"}, {"datetaken": "2006-11-17 13:25:24", "license": "3", "title": "Wes", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/116/309519916_e371bc8bdf_o.jpg", "secret": "e371bc8bdf", "media": "photo", "latitude": "32.739927", "id": "309519916", "tags": "marine sandiego graduation wes 30d1006355"}, {"datetaken": "2006-11-17 13:26:33", "license": "3", "title": "Mom", "text": "", "album_id": "72157594384130299", "longitude": "-117.198758", "url_o": "https://farm1.staticflickr.com/103/309519992_9c2baf6432_o.jpg", "secret": "9c2baf6432", "media": "photo", "latitude": "32.739927", "id": "309519992", "tags": "marine sandiego graduation wes 30d1006356"}, {"datetaken": "2006-12-15 10:28:03", "license": "1", "title": "Tribute", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/380018825_245cadf032_o.jpg", "secret": "245cadf032", "media": "photo", "latitude": "0", "id": "380018825", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 10:55:58", "license": "1", "title": "The Line Up", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/380019058_3dbb7b0c86_o.jpg", "secret": "3dbb7b0c86", "media": "photo", "latitude": "0", "id": "380019058", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 10:57:05", "license": "1", "title": "Marching on Deck", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/380019407_ae211c9ac5_o.jpg", "secret": "ae211c9ac5", "media": "photo", "latitude": "0", "id": "380019407", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 10:57:25", "license": "1", "title": "Marching on Deck", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/380019872_6ec17804c9_o.jpg", "secret": "6ec17804c9", "media": "photo", "latitude": "0", "id": "380019872", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 10:57:44", "license": "1", "title": "Marching on the Parade Deck", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/380020260_1e6b91cd25_o.jpg", "secret": "1e6b91cd25", "media": "photo", "latitude": "0", "id": "380020260", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 11:09:20", "license": "1", "title": "Both sides of the wall", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/380020676_667ceb3ba9_o.jpg", "secret": "667ceb3ba9", "media": "photo", "latitude": "0", "id": "380020676", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 11:10:01", "license": "1", "title": "The Wall", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/380021108_f6fd2a2217_o.jpg", "secret": "f6fd2a2217", "media": "photo", "latitude": "0", "id": "380021108", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 11:12:56", "license": "1", "title": "The Obstacle Course", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/380021571_a7346604ba_o.jpg", "secret": "a7346604ba", "media": "photo", "latitude": "0", "id": "380021571", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 15:02:11", "license": "1", "title": "The Graduates", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/380021977_4befd72fd7_o.jpg", "secret": "4befd72fd7", "media": "photo", "latitude": "0", "id": "380021977", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 15:02:11", "license": "1", "title": "The Graduates (crop)", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/380022276_e8c762689b_o.jpg", "secret": "e8c762689b", "media": "photo", "latitude": "0", "id": "380022276", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 15:22:26", "license": "1", "title": "Marines Plege", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/380022634_6f44ae51c8_o.jpg", "secret": "6f44ae51c8", "media": "photo", "latitude": "0", "id": "380022634", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 15:24:24", "license": "1", "title": "The First Graduate", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/380023003_0c23b31c99_o.jpg", "secret": "0c23b31c99", "media": "photo", "latitude": "0", "id": "380023003", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 15:33:31", "license": "1", "title": "Salute", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/380023278_f779e3394c_o.jpg", "secret": "f779e3394c", "media": "photo", "latitude": "0", "id": "380023278", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 15:33:42", "license": "1", "title": "The Big Moment", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/380023590_a3c4247a95_o.jpg", "secret": "a3c4247a95", "media": "photo", "latitude": "0", "id": "380023590", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 15:33:47", "license": "1", "title": "It's Official", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/380023914_9edc5f8c76_o.jpg", "secret": "9edc5f8c76", "media": "photo", "latitude": "0", "id": "380023914", "tags": "usmc walking december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 15:37:03", "license": "1", "title": "The Program", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/380024122_ca026bd92e_o.jpg", "secret": "ca026bd92e", "media": "photo", "latitude": "0", "id": "380024122", "tags": "usmc december graduation 2006 stewart program marinecorps ocs quantico"}, {"datetaken": "2006-12-15 16:11:32", "license": "1", "title": "Unknown Soldier", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/380024334_4f5c3edb59_o.jpg", "secret": "4f5c3edb59", "media": "photo", "latitude": "0", "id": "380024334", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 16:29:35", "license": "1", "title": "Final Moments", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/380024565_fa2b4998dc_o.jpg", "secret": "fa2b4998dc", "media": "photo", "latitude": "0", "id": "380024565", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 16:36:42", "license": "1", "title": "Happy Bastard", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/380024846_27bf6f03f1_o.jpg", "secret": "27bf6f03f1", "media": "photo", "latitude": "0", "id": "380024846", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 16:38:27", "license": "1", "title": "Ahhh, Victory", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/380025020_bcc2f9c65f_o.jpg", "secret": "bcc2f9c65f", "media": "photo", "latitude": "0", "id": "380025020", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 16:38:43", "license": "1", "title": "Platoon Mates", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/380025194_0aecedd353_o.jpg", "secret": "0aecedd353", "media": "photo", "latitude": "0", "id": "380025194", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 16:40:05", "license": "1", "title": "What me an officer?", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/380025394_5342e7efa3_o.jpg", "secret": "5342e7efa3", "media": "photo", "latitude": "0", "id": "380025394", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 16:42:16", "license": "1", "title": "Stewart talks with training officer", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/380025599_f4f144b727_o.jpg", "secret": "f4f144b727", "media": "photo", "latitude": "0", "id": "380025599", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 16:50:11", "license": "1", "title": "Post Ceremony", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/380025870_e08685293f_o.jpg", "secret": "e08685293f", "media": "photo", "latitude": "0", "id": "380025870", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 17:20:11", "license": "1", "title": "Marine Corp. Museum", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/380026077_98a27139ed_o.jpg", "secret": "98a27139ed", "media": "photo", "latitude": "0", "id": "380026077", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 17:32:13", "license": "1", "title": "Perfectionist, as Always", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/380026375_97c20d6ec5_o.jpg", "secret": "97c20d6ec5", "media": "photo", "latitude": "0", "id": "380026375", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 17:33:21", "license": "1", "title": "Stewart, Always a Marine", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/380026610_fcde259c76_o.jpg", "secret": "fcde259c76", "media": "photo", "latitude": "0", "id": "380026610", "tags": "usmc museum december graduation 2006 stewart marinecorps ocs quantico usmcmuseum"}, {"datetaken": "2006-12-15 17:37:02", "license": "1", "title": "Stew pins his hood", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/380026981_0ee52ca3e4_o.jpg", "secret": "0ee52ca3e4", "media": "photo", "latitude": "0", "id": "380026981", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 17:38:22", "license": "1", "title": "Standing Proud", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/380027221_b7594d50f1_o.jpg", "secret": "b7594d50f1", "media": "photo", "latitude": "0", "id": "380027221", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 17:38:34", "license": "1", "title": "Standing Proud", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/380027492_9262bdcbc1_o.jpg", "secret": "9262bdcbc1", "media": "photo", "latitude": "0", "id": "380027492", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 17:39:08", "license": "1", "title": "Once a Marine...Always a Marine", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/380027711_f28580fbc8_o.jpg", "secret": "f28580fbc8", "media": "photo", "latitude": "0", "id": "380027711", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 17:40:41", "license": "1", "title": "Getting Pinned", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/380027992_f081bf1505_o.jpg", "secret": "f081bf1505", "media": "photo", "latitude": "0", "id": "380027992", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2006-12-15 17:46:56", "license": "1", "title": "Iron Men", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/380028250_2d1d9dea66_o.jpg", "secret": "2d1d9dea66", "media": "photo", "latitude": "0", "id": "380028250", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico ironmike"}, {"datetaken": "2006-12-15 17:48:33", "license": "1", "title": "The happy graduate and I", "text": "", "album_id": "72157594518186150", "longitude": "0", "url_o": "https://farm1.staticflickr.com/169/380028770_16725e87ee_o.jpg", "secret": "16725e87ee", "media": "photo", "latitude": "0", "id": "380028770", "tags": "usmc december graduation 2006 stewart marinecorps ocs quantico"}, {"datetaken": "2007-05-19 10:05:41", "license": "0", "title": "Running up the hill", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/222/505809904_b9bdafc107_o.jpg", "secret": "26151b35e3", "media": "photo", "latitude": "0", "id": "505809904", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 10:10:44", "license": "0", "title": "Nick by the bridge", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/505809620_0cd77fc5f1_o.jpg", "secret": "66f07aa582", "media": "photo", "latitude": "0", "id": "505809620", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 10:16:29", "license": "3", "title": "Admit one x 3", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/223/505809324_4cbebfb767_o.jpg", "secret": "fc26b6c70e", "media": "photo", "latitude": "0", "id": "505809324", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 10:26:48", "license": "0", "title": "Nick's name in print", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/198/505809206_ead45739f5_o.jpg", "secret": "59ade3d98a", "media": "photo", "latitude": "0", "id": "505809206", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 11:11:55", "license": "3", "title": "Professors", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/208/505836771_3866c7763b_o.jpg", "secret": "54a3d61d77", "media": "photo", "latitude": "0", "id": "505836771", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 11:21:06", "license": "3", "title": "Crab cap", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/221/505808804_2d53eb96d7_o.jpg", "secret": "001980eedc", "media": "photo", "latitude": "0", "id": "505808804", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 11:42:04", "license": "3", "title": "Neil deGrasse Tyson", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/222/505836399_e9b17bb56d_o.jpg", "secret": "9929768746", "media": "photo", "latitude": "0", "id": "505836399", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 11:42:52", "license": "3", "title": "The geek shall inherit the earth", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/198/505836259_6d465fcfac_o.jpg", "secret": "ab29884e08", "media": "photo", "latitude": "0", "id": "505836259", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 11:56:08", "license": "3", "title": "Bored? Grade some papers!", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/197/505808388_6bedb6f41e_o.jpg", "secret": "c7e844413b", "media": "photo", "latitude": "0", "id": "505808388", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 12:19:24", "license": "3", "title": "Lined up for the diplomas", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/204/505808250_13566eb206_o.jpg", "secret": "7f9494eccd", "media": "photo", "latitude": "0", "id": "505808250", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 12:21:59", "license": "0", "title": "Nick getting his diploma", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/201/505808062_a8876effec_o.jpg", "secret": "4fa4585ff3", "media": "photo", "latitude": "0", "id": "505808062", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 12:30:23", "license": "3", "title": "Lt. Governor Tim Murray", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/199/505807910_6b33b95bff_o.jpg", "secret": "55e39c1dfd", "media": "photo", "latitude": "0", "id": "505807910", "tags": "graduation wpi timmurray"}, {"datetaken": "2007-05-19 12:32:36", "license": "0", "title": "Tim Murray getting some bling from WPI president", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/209/505835389_f53960ebca_o.jpg", "secret": "d785869847", "media": "photo", "latitude": "0", "id": "505835389", "tags": "graduation wpi timmurray"}, {"datetaken": "2007-05-19 13:19:56", "license": "3", "title": "View from the top", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/212/505835185_0a09c675e8_o.jpg", "secret": "4794d3152a", "media": "photo", "latitude": "0", "id": "505835185", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 13:20:04", "license": "3", "title": "All the grads", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/221/505834813_ff9084685d_o.jpg", "secret": "c619c57b2b", "media": "photo", "latitude": "0", "id": "505834813", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 13:35:14", "license": "3", "title": "Leaving the auditorium", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/193/505834629_359ba425f6_o.jpg", "secret": "a73ec5d89b", "media": "photo", "latitude": "0", "id": "505834629", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 13:37:48", "license": "0", "title": "Diploma!", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/505806806_9844e55616_o.jpg", "secret": "2c6bba1079", "media": "photo", "latitude": "0", "id": "505806806", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 13:38:07", "license": "0", "title": "Nick with his diploma", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/505806624_500583af29_o.jpg", "secret": "65d5b424b4", "media": "photo", "latitude": "0", "id": "505806624", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 13:45:04", "license": "0", "title": "Nick with his advisor, Neil Heffernan", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/221/505834135_1f5d144aed_o.jpg", "secret": "16f2217945", "media": "photo", "latitude": "0", "id": "505834135", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 13:46:05", "license": "0", "title": "Nick with his mom", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/199/505833933_72255f9a97_o.jpg", "secret": "8ae3834e66", "media": "photo", "latitude": "0", "id": "505833933", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 13:46:24", "license": "0", "title": "Happy couple :)", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/505833743_57e4098d9a_o.jpg", "secret": "e0226032f3", "media": "photo", "latitude": "0", "id": "505833743", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 13:47:31", "license": "0", "title": "Doing the Robot", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/505833575_7ff545fc27_o.jpg", "secret": "1251d0c114", "media": "photo", "latitude": "0", "id": "505833575", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 13:47:32", "license": "0", "title": "Doing the Robot", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/197/505833415_0226911b04_o.jpg", "secret": "6511a29e3a", "media": "photo", "latitude": "0", "id": "505833415", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 13:47:33", "license": "0", "title": "Doing the Robot", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/505805518_6ef33c8f30_o.jpg", "secret": "06d6b8e581", "media": "photo", "latitude": "0", "id": "505805518", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 13:47:33", "license": "0", "title": "Doing the Robot", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/505805318_a4568cb04c_o.jpg", "secret": "1c11f60b88", "media": "photo", "latitude": "0", "id": "505805318", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 13:47:34", "license": "0", "title": "Doing the Robot", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/202/505805194_0f40eb0037_o.jpg", "secret": "b0328248aa", "media": "photo", "latitude": "0", "id": "505805194", "tags": "graduation wpi"}, {"datetaken": "2007-05-19 13:47:34", "license": "0", "title": "Doing the Robot", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/195/505804958_5d46f39689_o.jpg", "secret": "b3a534107b", "media": "photo", "latitude": "0", "id": "505804958", "tags": "graduation wpi"}, {"datetaken": "2007-05-20 10:53:09", "license": "3", "title": "Doing the Robot, all in one", "text": "", "album_id": "72157600234507180", "longitude": "0", "url_o": "https://farm1.staticflickr.com/207/505921123_8c6e82e9bd_o.jpg", "secret": "3962ae1f5c", "media": "photo", "latitude": "0", "id": "505921123", "tags": "robot graduation wpi photogamer"}, {"datetaken": "2007-09-27 18:28:51", "license": "1", "title": "graduation ceremony, law & science", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1358/1457530284_1e20f3ec7c_o.jpg", "secret": "68a352a2da", "media": "photo", "latitude": "0", "id": "1457530284", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 18:35:35", "license": "1", "title": "graduation ceremony, law & science", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1400/1456797327_9beee763a5_o.jpg", "secret": "b574646ded", "media": "photo", "latitude": "0", "id": "1456797327", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 18:42:00", "license": "1", "title": "graduation ceremony, law & science", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1405/1456835289_d6427b48db_o.jpg", "secret": "f3c66ae154", "media": "photo", "latitude": "0", "id": "1456835289", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 18:42:23", "license": "1", "title": "graduation ceremony, law & science", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1030/1457736696_e01dcd2297_o.jpg", "secret": "ab74f7852d", "media": "photo", "latitude": "0", "id": "1457736696", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 18:44:18", "license": "1", "title": "The Concert Hall organ pipes", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1396/1456896289_b9a3d18436_o.jpg", "secret": "2d3cb5ea22", "media": "photo", "latitude": "0", "id": "1456896289", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 18:46:00", "license": "1", "title": "graduation ceremony, law & science", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1257/1456953841_269e521428_o.jpg", "secret": "5c09d7b930", "media": "photo", "latitude": "0", "id": "1456953841", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 19:04:06", "license": "1", "title": "graduation ceremony, law & science", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1313/1457001469_6f63d4af5b_o.jpg", "secret": "cc24a5262d", "media": "photo", "latitude": "0", "id": "1457001469", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 19:11:52", "license": "1", "title": "graduation ceremony, law & science", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1240/1457055265_439fb85cdb_o.jpg", "secret": "c80b15ade4", "media": "photo", "latitude": "0", "id": "1457055265", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 19:13:36", "license": "1", "title": "megan waiting for her presentation", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1019/1457949102_90664b4e52_o.jpg", "secret": "c41f00f89e", "media": "photo", "latitude": "0", "id": "1457949102", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 19:13:46", "license": "1", "title": "megan waiting for her presentation", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1285/1457176269_b4af313899_o.jpg", "secret": "a4214f4c74", "media": "photo", "latitude": "0", "id": "1457176269", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 19:14:13", "license": "1", "title": "megan comes on stage", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1181/1458191288_bbd12915cd_o.jpg", "secret": "63ce535607", "media": "photo", "latitude": "0", "id": "1458191288", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 19:14:22", "license": "1", "title": "megan with her diploma", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1194/1457380515_219d39b677_o.jpg", "secret": "c3480137c8", "media": "photo", "latitude": "0", "id": "1457380515", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 19:16:26", "license": "1", "title": "Banners", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1084/1459536791_6f1b977fc9_o.jpg", "secret": "7e6036931f", "media": "photo", "latitude": "0", "id": "1459536791", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 19:17:02", "license": "1", "title": "Banners", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1354/1459562853_d0e8c8042c_o.jpg", "secret": "98babef1f7", "media": "photo", "latitude": "0", "id": "1459562853", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 19:52:27", "license": "1", "title": "Graduation ceremony, Law & Science", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1107/1459581119_350b6680a1_o.jpg", "secret": "6a98c9e816", "media": "photo", "latitude": "0", "id": "1459581119", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 19:53:01", "license": "1", "title": "Graduation ceremony, Law & Science", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1153/1460470968_b01365c199_o.jpg", "secret": "1f676b746b", "media": "photo", "latitude": "0", "id": "1460470968", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 19:54:19", "license": "1", "title": "Graduation ceremony, Law & Science", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1327/1460488400_a1d83f895b_o.jpg", "secret": "036aac667b", "media": "photo", "latitude": "0", "id": "1460488400", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 19:56:43", "license": "1", "title": "Graduation ceremony, Law & Science", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1340/1459642573_f1ee0e8116_o.jpg", "secret": "2608814692", "media": "photo", "latitude": "0", "id": "1459642573", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 19:59:00", "license": "1", "title": "Graduation ceremony, Law & Science", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1370/1459664223_5ba6983e0c_o.jpg", "secret": "406f0bea0e", "media": "photo", "latitude": "0", "id": "1459664223", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 20:00:50", "license": "1", "title": "Graduation ceremony, Law & Science", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1253/1460550568_1553d8a787_o.jpg", "secret": "13a23e5edc", "media": "photo", "latitude": "0", "id": "1460550568", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 20:02:47", "license": "1", "title": "Graduation ceremony, Law & Science", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1058/1459702453_5dfb30b440_o.jpg", "secret": "723941c9cd", "media": "photo", "latitude": "0", "id": "1459702453", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 20:02:57", "license": "1", "title": "scrambling hoardes", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1262/1460614330_335a03bf14_o.jpg", "secret": "c211688851", "media": "photo", "latitude": "0", "id": "1460614330", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 20:09:38", "license": "1", "title": "Neil and Megan", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1260/1459760857_864b2cd75f_o.jpg", "secret": "e99f2d843d", "media": "photo", "latitude": "0", "id": "1459760857", "tags": "science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 20:09:48", "license": "1", "title": "megan and me", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1006/1460638176_0bba204c89_o.jpg", "secret": "8226a5edf1", "media": "photo", "latitude": "0", "id": "1460638176", "tags": "selfportrait me science year2 megansgraduation concerthall qut qpac graduationceremony 366days 365more lawscience"}, {"datetaken": "2007-09-27 20:09:55", "license": "1", "title": "me and Ashley", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1049/1460639744_9e1b36774f_o.jpg", "secret": "12eb323a6e", "media": "photo", "latitude": "0", "id": "1460639744", "tags": "me ashley science megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-09-27 20:10:09", "license": "1", "title": "Megan and Neil being silly", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1065/1460642374_f9bd8790c1_o.jpg", "secret": "67684b679b", "media": "photo", "latitude": "0", "id": "1460642374", "tags": "neil science megansgraduation concerthall qut qpac graduationceremony personmisterph lawscience"}, {"datetaken": "2007-09-27 20:11:47", "license": "1", "title": "Megan and Grandma", "text": "", "album_id": "72157602202104234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1325/1459782721_46a6299a0f_o.jpg", "secret": "7bd96ddff6", "media": "photo", "latitude": "0", "id": "1459782721", "tags": "grandma science nancy megansgraduation concerthall qut qpac graduationceremony lawscience"}, {"datetaken": "2007-11-22 22:55:24", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2006/2062389740_b9a52acfc6_o.jpg", "secret": "48c5677a88", "media": "photo", "latitude": "0", "id": "2062389740", "tags": ""}, {"datetaken": "2007-11-23 14:31:15", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2014/2062389058_1e0c363a46_o.jpg", "secret": "fc0942a396", "media": "photo", "latitude": "0", "id": "2062389058", "tags": ""}, {"datetaken": "2007-11-23 14:33:30", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2377/2062392016_804270b33b_o.jpg", "secret": "d3c4121b3f", "media": "photo", "latitude": "0", "id": "2062392016", "tags": ""}, {"datetaken": "2007-11-23 15:05:00", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2294/2061602683_f1931d413e_o.jpg", "secret": "0f7ad972ca", "media": "photo", "latitude": "0", "id": "2061602683", "tags": ""}, {"datetaken": "2007-11-23 15:05:34", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2252/2061603431_dcc7f0926e_o.jpg", "secret": "5e5810808a", "media": "photo", "latitude": "0", "id": "2061603431", "tags": ""}, {"datetaken": "2007-11-23 15:05:49", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2372/2061606231_d8e51be28d_o.jpg", "secret": "02a358a1b5", "media": "photo", "latitude": "0", "id": "2061606231", "tags": ""}, {"datetaken": "2007-11-23 15:06:43", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2046/2062392822_a00891268f_o.jpg", "secret": "fca40dcff8", "media": "photo", "latitude": "0", "id": "2062392822", "tags": ""}, {"datetaken": "2007-11-23 15:07:10", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2188/2061605491_a7bc55345e_o.jpg", "secret": "826fc8457c", "media": "photo", "latitude": "0", "id": "2061605491", "tags": ""}, {"datetaken": "2007-11-23 15:40:25", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2205/2061607639_b9b38255b5_o.jpg", "secret": "38320dec3a", "media": "photo", "latitude": "0", "id": "2061607639", "tags": ""}, {"datetaken": "2007-11-23 15:41:28", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2417/2062397786_9cd2c53819_o.jpg", "secret": "da5385d745", "media": "photo", "latitude": "0", "id": "2062397786", "tags": ""}, {"datetaken": "2007-11-23 15:49:33", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2101/2062394954_28b658b23d_o.jpg", "secret": "c208aeb59d", "media": "photo", "latitude": "0", "id": "2062394954", "tags": ""}, {"datetaken": "2007-11-23 15:49:40", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2339/2061608359_fb43e93af7_o.jpg", "secret": "612adf00d8", "media": "photo", "latitude": "0", "id": "2061608359", "tags": ""}, {"datetaken": "2007-11-23 15:54:45", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2145/2061609083_b712debe6b_o.jpg", "secret": "381eac7589", "media": "photo", "latitude": "0", "id": "2061609083", "tags": ""}, {"datetaken": "2007-11-23 15:55:11", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2055/2062401522_aa8e2a4548_o.jpg", "secret": "c8cd6f1686", "media": "photo", "latitude": "0", "id": "2062401522", "tags": ""}, {"datetaken": "2007-11-23 16:31:37", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2279/2062399328_ac309b6f45_o.jpg", "secret": "3a792b24cb", "media": "photo", "latitude": "0", "id": "2062399328", "tags": ""}, {"datetaken": "2007-11-23 17:06:03", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2209/2062400058_d43385faaa_o.jpg", "secret": "9c9a464440", "media": "photo", "latitude": "0", "id": "2062400058", "tags": ""}, {"datetaken": "2007-11-23 17:06:48", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2225/2061612567_d65c83b3cd_o.jpg", "secret": "571e0df242", "media": "photo", "latitude": "0", "id": "2061612567", "tags": ""}, {"datetaken": "2007-11-23 17:11:36", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2042/2062398608_87feb857fa_o.jpg", "secret": "76af491b1a", "media": "photo", "latitude": "0", "id": "2062398608", "tags": ""}, {"datetaken": "2007-11-23 17:12:12", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2097/2061614667_797dfd6308_o.jpg", "secret": "ae6be18a8d", "media": "photo", "latitude": "0", "id": "2061614667", "tags": ""}, {"datetaken": "2007-11-23 17:13:17", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2198/2062402192_7908ca5be7_o.jpg", "secret": "201e792a82", "media": "photo", "latitude": "0", "id": "2062402192", "tags": ""}, {"datetaken": "2007-11-23 17:25:37", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2331/2061616891_6fc9160a3e_o.jpg", "secret": "29cea8ff9d", "media": "photo", "latitude": "0", "id": "2061616891", "tags": ""}, {"datetaken": "2007-11-23 17:28:55", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2402/2062403616_4204b9e4a5_o.jpg", "secret": "1609967f23", "media": "photo", "latitude": "0", "id": "2062403616", "tags": ""}, {"datetaken": "2007-11-23 17:31:44", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2084/2061616167_be5e56212a_o.jpg", "secret": "a62e8bb25c", "media": "photo", "latitude": "0", "id": "2061616167", "tags": ""}, {"datetaken": "2007-11-23 17:43:58", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2351/2062407364_368b1a6e60_o.jpg", "secret": "4a8e14d6fd", "media": "photo", "latitude": "0", "id": "2062407364", "tags": ""}, {"datetaken": "2007-11-23 17:48:08", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2091/2061617631_2832c6df72_o.jpg", "secret": "cad874e8bd", "media": "photo", "latitude": "0", "id": "2061617631", "tags": ""}, {"datetaken": "2007-11-23 18:16:11", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2075/2061618445_9eb4ac3114_o.jpg", "secret": "6f9dbf86d1", "media": "photo", "latitude": "0", "id": "2061618445", "tags": ""}, {"datetaken": "2007-11-23 18:16:30", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2347/2061621295_9051c605e0_o.jpg", "secret": "a62fe5d5dc", "media": "photo", "latitude": "0", "id": "2061621295", "tags": ""}, {"datetaken": "2007-11-23 18:24:03", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2313/2061622043_4efa3b26e4_o.jpg", "secret": "817935157c", "media": "photo", "latitude": "0", "id": "2061622043", "tags": ""}, {"datetaken": "2007-11-23 18:24:20", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2265/2061619839_b2614f58a3_o.jpg", "secret": "ee8330c439", "media": "photo", "latitude": "0", "id": "2061619839", "tags": ""}, {"datetaken": "2007-11-23 18:26:15", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2274/2062408736_5c8c6d9c76_o.jpg", "secret": "3c3cd63e27", "media": "photo", "latitude": "0", "id": "2062408736", "tags": ""}, {"datetaken": "2007-11-23 18:36:39", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2412/2062412874_09a1cd9dbd_o.jpg", "secret": "893079a8ab", "media": "photo", "latitude": "0", "id": "2062412874", "tags": ""}, {"datetaken": "2007-11-23 18:38:14", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2338/2062410814_eb35aea2a2_o.jpg", "secret": "256f26579d", "media": "photo", "latitude": "0", "id": "2062410814", "tags": ""}, {"datetaken": "2007-11-23 18:39:37", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2104/2061623455_9b971f5668_o.jpg", "secret": "8562ede770", "media": "photo", "latitude": "0", "id": "2061623455", "tags": ""}, {"datetaken": "2007-11-23 19:39:39", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2184/2062412192_b6e2bbdb34_o.jpg", "secret": "0cdfdde120", "media": "photo", "latitude": "0", "id": "2062412192", "tags": ""}, {"datetaken": "2007-11-24 00:55:31", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2328/2061625549_2eb0c59d34_o.jpg", "secret": "33f28d7c9c", "media": "photo", "latitude": "0", "id": "2061625549", "tags": ""}, {"datetaken": "2007-11-24 02:07:21", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2163/2061626191_31061b9b61_o.jpg", "secret": "480c09fe85", "media": "photo", "latitude": "0", "id": "2061626191", "tags": ""}, {"datetaken": "2007-11-24 02:41:32", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2089/2062415036_c76b739eed_o.jpg", "secret": "e3f81e6d43", "media": "photo", "latitude": "0", "id": "2062415036", "tags": ""}, {"datetaken": "2007-11-24 02:43:05", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2289/2061627609_7443df9296_o.jpg", "secret": "8cec7e7b19", "media": "photo", "latitude": "0", "id": "2061627609", "tags": ""}, {"datetaken": "2007-11-24 13:14:07", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2279/2062416656_55c0f1a01b_o.jpg", "secret": "5467f65838", "media": "photo", "latitude": "0", "id": "2062416656", "tags": ""}, {"datetaken": "2007-11-24 13:14:14", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2116/2061629289_1a7e68e688_o.jpg", "secret": "9978865dc2", "media": "photo", "latitude": "0", "id": "2061629289", "tags": ""}, {"datetaken": "2007-11-24 13:14:43", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2403/2062419328_4d48372ac6_o.jpg", "secret": "e71253a508", "media": "photo", "latitude": "0", "id": "2062419328", "tags": ""}, {"datetaken": "2007-11-24 13:18:40", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2415/2062420100_9d134b3d0c_o.jpg", "secret": "27040fb835", "media": "photo", "latitude": "0", "id": "2062420100", "tags": ""}, {"datetaken": "2007-11-24 13:19:10", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2408/2061630055_bb39e2fa8a_o.jpg", "secret": "aca5098c89", "media": "photo", "latitude": "0", "id": "2061630055", "tags": ""}, {"datetaken": "2007-11-24 13:36:51", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2215/2061632503_8eb13c7db4_o.jpg", "secret": "e61c0c762f", "media": "photo", "latitude": "0", "id": "2061632503", "tags": ""}, {"datetaken": "2007-11-24 13:37:18", "license": "5", "title": "2007 Graduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2254/2062421600_d17b85ed88_o.jpg", "secret": "dd8cdc548c", "media": "photo", "latitude": "0", "id": "2062421600", "tags": ""}, {"datetaken": "2007-11-24 15:03:30", "license": "5", "title": "2007 Grduation Ceremony", "text": "", "album_id": "72157601271054577", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2171/2062010665_363d0c98b4_o.jpg", "secret": "f7bbbc4eb4", "media": "photo", "latitude": "0", "id": "2062010665", "tags": ""}, {"datetaken": "2008-06-17 18:04:51", "license": "1", "title": "A Sign of Peace", "text": "", "album_id": "72157606154057289", "longitude": "-74.838699", "url_o": "https://farm4.staticflickr.com/3209/2666525572_bd9102978e_o.jpg", "secret": "62643ef625", "media": "photo", "latitude": "40.172828", "id": "2666525572", "tags": "walking evening michael jennifer graduation highschool peacesign graduates pennsbury"}, {"datetaken": "2008-06-17 18:22:21", "license": "1", "title": "Waiting in line", "text": "", "album_id": "72157606154057289", "longitude": "-74.838699", "url_o": "https://farm4.staticflickr.com/3158/2666525672_601320d63a_o.jpg", "secret": "8895da3e59", "media": "photo", "latitude": "40.172828", "id": "2666525672", "tags": "grass walking evening michael waiting profile graduation highschool graduates pennsbury"}, {"datetaken": "2008-06-17 18:34:27", "license": "1", "title": "Next in line", "text": "", "album_id": "72157606154057289", "longitude": "-74.838699", "url_o": "https://farm4.staticflickr.com/3189/2666525934_9b24003bf9_o.jpg", "secret": "7bf65057bc", "media": "photo", "latitude": "40.172828", "id": "2666525934", "tags": "walking evening michael graduation highschool graduates pennsbury"}, {"datetaken": "2008-06-17 18:34:31", "license": "1", "title": "The hand-off", "text": "", "album_id": "72157606154057289", "longitude": "-74.838699", "url_o": "https://farm4.staticflickr.com/3236/2665702091_7cc717799d_o.jpg", "secret": "8bdf75725f", "media": "photo", "latitude": "40.172828", "id": "2665702091", "tags": "walking evening michael diploma stage graduation highschool graduates pennsbury"}, {"datetaken": "2008-06-17 18:34:52", "license": "1", "title": "It's official", "text": "", "album_id": "72157606154057289", "longitude": "-74.838699", "url_o": "https://farm4.staticflickr.com/3162/2666526178_bc825ab7ef_o.jpg", "secret": "6f5d8f1c0f", "media": "photo", "latitude": "40.172828", "id": "2666526178", "tags": "evening michael graduation highschool graduates pennsbury"}, {"datetaken": "2008-06-17 19:45:47", "license": "1", "title": "Fancy Seating", "text": "", "album_id": "72157606154057289", "longitude": "-74.838699", "url_o": "https://farm4.staticflickr.com/3148/2665702403_28c1c9ef8a_o.jpg", "secret": "110a0b17e0", "media": "photo", "latitude": "40.172828", "id": "2665702403", "tags": "sunset clouds evening graduation highschool phs graduates pennsbury"}, {"datetaken": "2008-06-17 19:46:27", "license": "1", "title": "A little premature", "text": "", "album_id": "72157606154057289", "longitude": "-74.838699", "url_o": "https://farm4.staticflickr.com/3271/2666526594_e140d7a1d3_o.jpg", "secret": "442fe64eb4", "media": "photo", "latitude": "40.172828", "id": "2666526594", "tags": "evening graduation hats highschool celebration premature graduates pennsbury"}, {"datetaken": "2008-06-17 19:47:41", "license": "1", "title": "This time for real", "text": "", "album_id": "72157606154057289", "longitude": "-74.838699", "url_o": "https://farm4.staticflickr.com/3018/2666526730_cf02484346_o.jpg", "secret": "1d7f80aa21", "media": "photo", "latitude": "40.172828", "id": "2666526730", "tags": "evening graduation highschool graduates pennsbury"}, {"datetaken": "2008-06-17 21:18:14", "license": "1", "title": "A rare moment", "text": "", "album_id": "72157606154057289", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3033/2657617284_a6954d6aea_o.jpg", "secret": "df97fa9f58", "media": "photo", "latitude": "0", "id": "2657617284", "tags": "cameraphone family nokia jennifer friendlys n95 postgraduation"}, {"datetaken": "2008-06-17 21:18:36", "license": "1", "title": "Awww", "text": "", "album_id": "72157606154057289", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3289/2657617334_64f3c8bc48_o.jpg", "secret": "26328027e1", "media": "photo", "latitude": "0", "id": "2657617334", "tags": "cameraphone family michael nokia jennifer friendlys n95 postgraduation"}, {"datetaken": "2008-09-03 14:50:17", "license": "1", "title": "formal", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3170/2929955837_25b05b34fc_o.jpg", "secret": "2d65931572", "media": "photo", "latitude": "0", "id": "2929955837", "tags": "london graduation ceremony ucl"}, {"datetaken": "2008-09-03 15:03:23", "license": "1", "title": "pomp and circumstance", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3279/2929957499_c85780bc1c_o.jpg", "secret": "f98c1f5c96", "media": "photo", "latitude": "0", "id": "2929957499", "tags": "london graduation ceremony ucl"}, {"datetaken": "2008-09-03 15:03:43", "license": "1", "title": "pomp and circumstance", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3210/2930816678_1eb226258c_o.jpg", "secret": "4cc3653496", "media": "photo", "latitude": "0", "id": "2930816678", "tags": "london graduation ceremony ucl"}, {"datetaken": "2008-09-03 15:23:20", "license": "1", "title": "her shake", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3292/2929961285_32b2727fa3_o.jpg", "secret": "c82ccea375", "media": "photo", "latitude": "0", "id": "2929961285", "tags": "london graduation ceremony ucl yimay"}, {"datetaken": "2008-09-03 15:23:22", "license": "1", "title": "her walk", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3214/2930820128_18cd525f59_o.jpg", "secret": "65a6159f57", "media": "photo", "latitude": "0", "id": "2930820128", "tags": "london graduation ceremony ucl yimay"}, {"datetaken": "2008-09-03 15:24:44", "license": "1", "title": "his walk", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3158/2929964831_438c6cfa2e_o.jpg", "secret": "74236156f5", "media": "photo", "latitude": "0", "id": "2929964831", "tags": "london graduation ceremony ucl adrian"}, {"datetaken": "2008-09-03 15:24:55", "license": "1", "title": "the walk", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3062/2929966185_0144293d19_o.jpg", "secret": "520ae1dd23", "media": "photo", "latitude": "0", "id": "2929966185", "tags": "london me graduation ceremony ucl"}, {"datetaken": "2008-09-03 15:24:59", "license": "1", "title": "handshake", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3183/2929967755_61f9f4cb59_o.jpg", "secret": "273195f67a", "media": "photo", "latitude": "0", "id": "2929967755", "tags": "london me graduation ceremony ucl"}, {"datetaken": "2008-09-03 16:13:58", "license": "1", "title": "the it crowd", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3222/2929969939_9ea4480a13_o.jpg", "secret": "e935203ae2", "media": "photo", "latitude": "0", "id": "2929969939", "tags": "london crowd graduation ceremony ucl"}, {"datetaken": "2008-09-03 16:25:12", "license": "1", "title": "", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3252/2929975185_fdde7e685d_o.jpg", "secret": "6f9920b855", "media": "photo", "latitude": "0", "id": "2929975185", "tags": "london me graduation mona ucl tj"}, {"datetaken": "2008-09-03 16:36:17", "license": "1", "title": "mpeb", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3009/2929976705_bde1c8d5e1_o.jpg", "secret": "7fe3b73e28", "media": "photo", "latitude": "0", "id": "2929976705", "tags": "london me graduation ucl mpeb"}, {"datetaken": "2008-09-03 17:14:42", "license": "1", "title": "", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3156/2930837892_c3406a60d7_o.jpg", "secret": "cc474aa973", "media": "photo", "latitude": "0", "id": "2930837892", "tags": "anna london me graduation ucl annemarie tiina"}, {"datetaken": "2008-09-03 17:15:44", "license": "1", "title": "nearly perfect", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3034/2929982271_ce3c82b320_o.jpg", "secret": "c61df4304b", "media": "photo", "latitude": "0", "id": "2929982271", "tags": "london me anne graduation ucl yimay"}, {"datetaken": "2008-09-03 17:16:25", "license": "1", "title": "", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3048/2929984127_f831b55116_o.jpg", "secret": "b6ab46ee2c", "media": "photo", "latitude": "0", "id": "2929984127", "tags": "london me graduation mona ucl tj yimay"}, {"datetaken": "2008-09-03 17:18:14", "license": "1", "title": "big hats", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3274/2929985541_c6021977fc_o.jpg", "secret": "2f0d883828", "media": "photo", "latitude": "0", "id": "2929985541", "tags": "london me graduation ucl adrian"}, {"datetaken": "2008-09-03 17:22:20", "license": "1", "title": "champagne, yum", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3178/2929987045_b6509bb2b1_o.jpg", "secret": "ca557a8b19", "media": "photo", "latitude": "0", "id": "2929987045", "tags": "london me graduation ucl kasia"}, {"datetaken": "2008-09-03 17:33:04", "license": "1", "title": "trying too hard", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3040/2929988787_482c7b2c53_o.jpg", "secret": "c94ecafebd", "media": "photo", "latitude": "0", "id": "2929988787", "tags": "london me graduation ucl yimay"}, {"datetaken": "2008-09-03 17:33:15", "license": "1", "title": "cool", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3017/2929990655_9d98904a25_o.jpg", "secret": "dbed29afb1", "media": "photo", "latitude": "0", "id": "2929990655", "tags": "london graduation ucl yimay"}, {"datetaken": "2008-09-03 17:36:44", "license": "1", "title": "", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2110/2930850200_2dae81527d_o.jpg", "secret": "452e043317", "media": "photo", "latitude": "0", "id": "2930850200", "tags": "london graduation mona ucl tj yimay"}, {"datetaken": "2008-09-03 17:49:29", "license": "1", "title": "2008", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3047/2929994769_f5ee1633c0_o.jpg", "secret": "45ed2c739d", "media": "photo", "latitude": "0", "id": "2929994769", "tags": "london graduation ucl wilkins"}, {"datetaken": "2008-09-03 17:50:25", "license": "1", "title": "friends forever", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3016/2930853940_d532cc4a0c_o.jpg", "secret": "977a580551", "media": "photo", "latitude": "0", "id": "2930853940", "tags": "london me graduation mona ucl adrian tj wilkins yimay"}, {"datetaken": "2008-09-03 17:50:34", "license": "1", "title": "friends forever", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3284/2930855380_969cf6e38b_o.jpg", "secret": "72a5110830", "media": "photo", "latitude": "0", "id": "2930855380", "tags": "london me graduation mona ucl adrian tj wilkins yimay"}, {"datetaken": "2008-09-03 17:52:19", "license": "1", "title": "hide and seek", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3164/2930857326_758836b47a_o.jpg", "secret": "7d203a5824", "media": "photo", "latitude": "0", "id": "2930857326", "tags": "london graduation ucl wilkins yimay"}, {"datetaken": "2008-09-03 17:53:25", "license": "1", "title": "looking down on the world", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3217/2930859468_bab91211dd_o.jpg", "secret": "cf5b9ce0f3", "media": "photo", "latitude": "0", "id": "2930859468", "tags": "london graduation ucl wilkins yimay"}, {"datetaken": "2008-09-03 17:53:35", "license": "1", "title": "explanation", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3245/2930003395_3716d00541_o.jpg", "secret": "64447808b4", "media": "photo", "latitude": "0", "id": "2930003395", "tags": "london graduation ucl wilkins yimay"}, {"datetaken": "2008-09-03 17:54:29", "license": "1", "title": "", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3249/2930862880_4c815c3264_o.jpg", "secret": "ca70cf5122", "media": "photo", "latitude": "0", "id": "2930862880", "tags": "london graduation mona ucl tj wilkins yimay"}, {"datetaken": "2008-09-03 17:54:45", "license": "1", "title": "", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2245/2930864622_8c4c7bb838_o.jpg", "secret": "a931c31573", "media": "photo", "latitude": "0", "id": "2930864622", "tags": "london graduation mona ucl tj"}, {"datetaken": "2008-09-03 17:55:32", "license": "1", "title": "graduation", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2344/2930866150_1acbaed367_o.jpg", "secret": "40e24b775a", "media": "photo", "latitude": "0", "id": "2930866150", "tags": "london me graduation ucl wilkins"}, {"datetaken": "2008-09-03 18:01:52", "license": "1", "title": "glance", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3232/2930867554_1fb59da0b0_o.jpg", "secret": "ea3d4af28d", "media": "photo", "latitude": "0", "id": "2930867554", "tags": "london me graduation ucl wilkins kasia"}, {"datetaken": "2008-09-03 18:04:20", "license": "1", "title": "box", "text": "", "album_id": "72157607918278026", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3015/2930011467_121bbb9315_o.jpg", "secret": "55d340365d", "media": "photo", "latitude": "0", "id": "2930011467", "tags": "london me graduation ucl jeremybentham"}, {"datetaken": "2008-12-12 18:57:49", "license": "1", "title": "DSC_4156", "text": "", "album_id": "72157611387513908", "longitude": "-84.393562", "url_o": "https://farm4.staticflickr.com/3193/3118013790_55dc78c345_o.jpg", "secret": "66f30e5706", "media": "photo", "latitude": "33.778049", "id": "3118013790", "tags": "atlanta usa moon georgia nikon astrophotography georgiatech facebook sfw d90 flickrpublic nikond90 afsvrzoomnikkor70300mmf4556gifed senswellnet 7003000mmf4556 picasaselect"}, {"datetaken": "2008-12-12 19:11:15", "license": "1", "title": "DSC_4173", "text": "", "album_id": "72157611387513908", "longitude": "-84.392776", "url_o": "https://farm4.staticflickr.com/3078/3117187677_19a6548350_o.jpg", "secret": "b623b2167a", "media": "photo", "latitude": "33.780635", "id": "3117187677", "tags": "atlanta usa georgia nikon graduation ceremony commencement georgiatech facebook sfw d90 flickrpublic nikond90 afsvrzoomnikkor70300mmf4556gifed kylecollins senswellnet 7003000mmf4556 picasaselect"}, {"datetaken": "2008-12-12 19:19:42", "license": "1", "title": "DSC_4188", "text": "", "album_id": "72157611387513908", "longitude": "-84.392776", "url_o": "https://farm4.staticflickr.com/3249/3117187923_87b834c124_o.jpg", "secret": "1a4e595abf", "media": "photo", "latitude": "33.780635", "id": "3117187923", "tags": "atlanta usa georgia nikon graduation ceremony commencement georgiatech facebook sfw d90 flickrpublic nikond90 senswellnet afsdxnikkor1685mmf3556gedvr 160850mmf3556 picasaselect"}, {"datetaken": "2008-12-12 19:24:45", "license": "1", "title": "DSC_4194", "text": "", "album_id": "72157611387513908", "longitude": "-84.392776", "url_o": "https://farm4.staticflickr.com/3179/3117188091_d0b847f45f_o.jpg", "secret": "29c4aedc26", "media": "photo", "latitude": "33.780635", "id": "3117188091", "tags": "atlanta usa georgia nikon graduation ceremony commencement georgiatech facebook sfw d90 flickrpublic nikond90 senswellnet afsdxnikkor1685mmf3556gedvr 160850mmf3556 picasaselect"}, {"datetaken": "2008-12-12 19:24:50", "license": "1", "title": "DSC_4195", "text": "", "album_id": "72157611387513908", "longitude": "-84.392776", "url_o": "https://farm4.staticflickr.com/3120/3118014528_aaf62a32d6_o.jpg", "secret": "37bfebf398", "media": "photo", "latitude": "33.780635", "id": "3118014528", "tags": "atlanta usa georgia nikon graduation ceremony commencement georgiatech facebook sfw d90 flickrpublic nikond90 senswellnet afsdxnikkor1685mmf3556gedvr 160850mmf3556 picasaselect"}, {"datetaken": "2008-12-12 19:32:13", "license": "1", "title": "DSC_4198", "text": "", "album_id": "72157611387513908", "longitude": "-84.392776", "url_o": "https://farm4.staticflickr.com/3066/3118014734_88f614cbd6_o.jpg", "secret": "3322537364", "media": "photo", "latitude": "33.780635", "id": "3118014734", "tags": "atlanta usa georgia nikon graduation ceremony commencement georgiatech facebook sfw d90 flickrpublic nikond90 senswellnet afsdxnikkor1685mmf3556gedvr 160850mmf3556 picasaselect"}, {"datetaken": "2008-12-12 19:42:25", "license": "1", "title": "DSC_4199", "text": "", "album_id": "72157611387513908", "longitude": "-84.392776", "url_o": "https://farm4.staticflickr.com/3293/3118014912_157f535fcc_o.jpg", "secret": "80cc4bd12a", "media": "photo", "latitude": "33.780635", "id": "3118014912", "tags": "atlanta usa georgia nikon graduation ceremony commencement georgiatech facebook sfw d90 flickrpublic nikond90 senswellnet afsdxnikkor1685mmf3556gedvr 160850mmf3556 picasaselect"}, {"datetaken": "2008-12-12 19:42:53", "license": "1", "title": "DSC_4200", "text": "", "album_id": "72157611387513908", "longitude": "-84.392776", "url_o": "https://farm4.staticflickr.com/3254/3118015104_f967c549c9_o.jpg", "secret": "088af42a7d", "media": "photo", "latitude": "33.780635", "id": "3118015104", "tags": "atlanta usa georgia nikon graduation ceremony commencement georgiatech facebook sfw d90 flickrpublic nikond90 senswellnet afsdxnikkor1685mmf3556gedvr 160850mmf3556 picasaselect"}, {"datetaken": "2008-12-12 19:43:34", "license": "1", "title": "DSC_4202", "text": "", "album_id": "72157611387513908", "longitude": "-84.392776", "url_o": "https://farm4.staticflickr.com/3079/3118015358_980e8b4558_o.jpg", "secret": "49c4dc031b", "media": "photo", "latitude": "33.780635", "id": "3118015358", "tags": "atlanta usa georgia nikon graduation ceremony commencement georgiatech facebook sfw d90 flickrpublic nikond90 senswellnet afsdxnikkor1685mmf3556gedvr 160850mmf3556 picasaselect"}, {"datetaken": "2008-12-12 19:44:14", "license": "1", "title": "DSC_4205", "text": "", "album_id": "72157611387513908", "longitude": "-84.392776", "url_o": "https://farm4.staticflickr.com/3163/3117189223_09f040d5b9_o.jpg", "secret": "1961964f80", "media": "photo", "latitude": "33.780635", "id": "3117189223", "tags": "atlanta usa georgia nikon graduation ceremony commencement georgiatech facebook sfw d90 flickrpublic nikond90 senswellnet afsdxnikkor1685mmf3556gedvr 160850mmf3556 picasaselect"}, {"datetaken": "2008-12-12 20:01:22", "license": "1", "title": "DSC_4213", "text": "", "album_id": "72157611387513908", "longitude": "-84.392776", "url_o": "https://farm4.staticflickr.com/3120/3118015704_34f0c94039_o.jpg", "secret": "a207f0d5ec", "media": "photo", "latitude": "33.780635", "id": "3118015704", "tags": "commencement graduation nikond90 nikon georgiatech facebook ceremony picasaselect d90 flickrpublic senswellnet afsdxnikkor1685mmf3556gedvr sfw 160850mmf3556 atlanta georgia usa"}, {"datetaken": "2008-12-12 20:35:14", "license": "1", "title": "Vice-Provost Schuster (7 of 8)", "text": "", "album_id": "72157611387513908", "longitude": "-84.392776", "url_o": "https://farm4.staticflickr.com/3191/3117189461_b2a57eb60e_o.jpg", "secret": "01c710f6e9", "media": "photo", "latitude": "33.780635", "id": "3117189461", "tags": "atlanta usa georgia nikon graduation ceremony commencement georgiatech facebook sfw d90 flickrpublic nikond90 afsvrzoomnikkor70300mmf4556gifed senswellnet 7003000mmf4556 picasaselect"}, {"datetaken": "2008-12-12 21:11:55", "license": "1", "title": "DSC_4283", "text": "", "album_id": "72157611387513908", "longitude": "-84.392776", "url_o": "https://farm4.staticflickr.com/3294/3117189583_2c359df90d_o.jpg", "secret": "1fb99ee986", "media": "photo", "latitude": "33.780635", "id": "3117189583", "tags": "atlanta usa georgia nikon graduation ceremony commencement georgiatech facebook sfw d90 flickrpublic nikond90 senswellnet afsdxnikkor1685mmf3556gedvr 160850mmf3556 picasaselect"}, {"datetaken": "2008-12-12 21:11:58", "license": "1", "title": "DSC_4286", "text": "", "album_id": "72157611387513908", "longitude": "-84.392776", "url_o": "https://farm4.staticflickr.com/3181/3118016150_915cc11116_o.jpg", "secret": "53a0bdaa37", "media": "photo", "latitude": "33.780635", "id": "3118016150", "tags": "atlanta usa georgia nikon graduation ceremony commencement georgiatech facebook sfw d90 flickrpublic nikond90 senswellnet afsdxnikkor1685mmf3556gedvr 160850mmf3556 picasaselect"}, {"datetaken": "2008-12-12 21:12:06", "license": "1", "title": "DSC_4288", "text": "", "album_id": "72157611387513908", "longitude": "-84.392776", "url_o": "https://farm4.staticflickr.com/3039/3118016354_ea0d7329ed_o.jpg", "secret": "3eb9f848c2", "media": "photo", "latitude": "33.780635", "id": "3118016354", "tags": "atlanta usa georgia nikon graduation ceremony commencement georgiatech facebook sfw d90 flickrpublic nikond90 senswellnet afsdxnikkor1685mmf3556gedvr 160850mmf3556 picasaselect"}, {"datetaken": "2008-12-12 21:18:21", "license": "1", "title": "DSC_4301", "text": "", "album_id": "72157611387513908", "longitude": "-84.392776", "url_o": "https://farm4.staticflickr.com/3123/3117190181_2808d67d30_o.jpg", "secret": "b0a647d204", "media": "photo", "latitude": "33.780635", "id": "3117190181", "tags": "atlanta usa georgia nikon graduation ceremony commencement georgiatech facebook sfw d90 flickrpublic nikond90 senswellnet afsdxnikkor1685mmf3556gedvr 160850mmf3556 picasaselect"}, {"datetaken": "2009-04-02 01:38:29", "license": "4", "title": "090402-N-8825R-002", "text": "", "album_id": "72157616261541878", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3565/3406270893_9e09bf4b2c_o.jpg", "secret": "749ff0d5fe", "media": "photo", "latitude": "0", "id": "3406270893", "tags": "afghanistan isaf afhganistan internationalsecurityassistanceforce regionalcommandsouth afghanborderpolice arsic afghanregionalsecurityintegrationcommandsouth spinbuldak"}, {"datetaken": "2009-04-02 01:40:40", "license": "4", "title": "090402-N-8825R-004", "text": "", "album_id": "72157616261541878", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3632/3406272329_76ecc23647_o.jpg", "secret": "16ca4cc6c5", "media": "photo", "latitude": "0", "id": "3406272329", "tags": "afghanistan isaf afhganistan internationalsecurityassistanceforce regionalcommandsouth afghanborderpolice arsic afghanregionalsecurityintegrationcommandsouth spinbuldak"}, {"datetaken": "2009-04-02 01:42:13", "license": "4", "title": "090402-N-8825R-005", "text": "", "album_id": "72157616261541878", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3461/3407082804_cf9e438149_o.jpg", "secret": "9e86320087", "media": "photo", "latitude": "0", "id": "3407082804", "tags": "afghanistan isaf afhganistan internationalsecurityassistanceforce regionalcommandsouth afghanborderpolice arsic afghanregionalsecurityintegrationcommandsouth spinbuldak"}, {"datetaken": "2009-04-02 01:56:50", "license": "4", "title": "090402-N-8825R-006", "text": "", "album_id": "72157616261541878", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3430/3406274037_61833e754d_o.jpg", "secret": "dca9f63023", "media": "photo", "latitude": "0", "id": "3406274037", "tags": "afghanistan isaf afhganistan internationalsecurityassistanceforce regionalcommandsouth afghanborderpolice arsic afghanregionalsecurityintegrationcommandsouth spinbuldak"}, {"datetaken": "2009-04-02 02:01:36", "license": "4", "title": "090402-N-8825R-007", "text": "", "album_id": "72157616261541878", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3439/3407084626_4f54af5dfb_o.jpg", "secret": "024d654102", "media": "photo", "latitude": "0", "id": "3407084626", "tags": "afghanistan isaf afhganistan internationalsecurityassistanceforce regionalcommandsouth afghanborderpolice arsic afghanregionalsecurityintegrationcommandsouth spinbuldak"}, {"datetaken": "2009-04-02 02:02:37", "license": "4", "title": "090402-N-8825R-008", "text": "", "album_id": "72157616261541878", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3610/3407085110_29663cac37_o.jpg", "secret": "26a73353c4", "media": "photo", "latitude": "0", "id": "3407085110", "tags": "afghanistan isaf afhganistan internationalsecurityassistanceforce regionalcommandsouth afghanborderpolice arsic afghanregionalsecurityintegrationcommandsouth spinbuldak"}, {"datetaken": "2009-04-02 02:11:16", "license": "4", "title": "090402-N-8825R-009", "text": "", "album_id": "72157616261541878", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3660/3407085678_c4c5542878_o.jpg", "secret": "f46585c217", "media": "photo", "latitude": "0", "id": "3407085678", "tags": "afghanistan isaf afhganistan internationalsecurityassistanceforce regionalcommandsouth afghanborderpolice arsic afghanregionalsecurityintegrationcommandsouth spinbuldak"}, {"datetaken": "2009-04-02 02:11:26", "license": "4", "title": "090402-N-8825R-010", "text": "", "album_id": "72157616261541878", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3657/3407086362_24188697be_o.jpg", "secret": "30632bf652", "media": "photo", "latitude": "0", "id": "3407086362", "tags": "afghanistan isaf afhganistan internationalsecurityassistanceforce regionalcommandsouth afghanborderpolice arsic afghanregionalsecurityintegrationcommandsouth spinbuldak"}, {"datetaken": "2009-04-02 02:12:52", "license": "4", "title": "090402-N-8825R-011", "text": "", "album_id": "72157616261541878", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3573/3407086848_cd57671e9d_o.jpg", "secret": "5ceb63cfd7", "media": "photo", "latitude": "0", "id": "3407086848", "tags": "afghanistan isaf afhganistan internationalsecurityassistanceforce regionalcommandsouth afghanborderpolice arsic afghanregionalsecurityintegrationcommandsouth spinbuldak"}, {"datetaken": "2009-04-02 02:13:06", "license": "4", "title": "090402-N-8825R-012", "text": "", "album_id": "72157616261541878", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3448/3406278217_a587599f4f_o.jpg", "secret": "4206fb9fde", "media": "photo", "latitude": "0", "id": "3406278217", "tags": "afghanistan isaf afhganistan internationalsecurityassistanceforce regionalcommandsouth afghanborderpolice arsic afghanregionalsecurityintegrationcommandsouth spinbuldak"}, {"datetaken": "2009-04-02 18:04:12", "license": "4", "title": "090402-N-8825R-001", "text": "", "album_id": "72157616261541878", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3611/3407080018_511bfdab56_o.jpg", "secret": "39a11521e0", "media": "photo", "latitude": "0", "id": "3407080018", "tags": "afghanistan isaf afhganistan internationalsecurityassistanceforce regionalcommandsouth afghanborderpolice arsic afghanregionalsecurityintegrationcommandsouth spinbuldak"}, {"datetaken": "2009-04-02 18:05:14", "license": "4", "title": "090402-N-8825R-003", "text": "", "album_id": "72157616261541878", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3630/3407081648_53df23467b_o.jpg", "secret": "ce295de453", "media": "photo", "latitude": "0", "id": "3407081648", "tags": "afghanistan isaf afhganistan internationalsecurityassistanceforce regionalcommandsouth afghanborderpolice arsic afghanregionalsecurityintegrationcommandsouth spinbuldak"}, {"datetaken": "2009-05-09 09:22:10", "license": "4", "title": "A Capital Idea!", "text": "", "album_id": "72157617949218325", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3414/3524878077_d9675f1247_o.jpg", "secret": "d8f5ef79c2", "media": "photo", "latitude": "0", "id": "3524878077", "tags": "college graduation commencement 2009 nazareth nazarethcollege"}, {"datetaken": "2009-05-09 09:23:37", "license": "4", "title": "Mirror, Mirror on the Wall", "text": "", "album_id": "72157617949218325", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3330/3525683588_be57674159_o.jpg", "secret": "15198615ab", "media": "photo", "latitude": "0", "id": "3525683588", "tags": "college graduation commencement 2009 nazareth nazarethcollege"}, {"datetaken": "2009-05-09 09:25:24", "license": "4", "title": "Shady Ladies", "text": "", "album_id": "72157617949218325", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3601/3525683752_7e8b62cc6f_o.jpg", "secret": "c935d94b95", "media": "photo", "latitude": "0", "id": "3525683752", "tags": "college graduation commencement 2009 nazareth nazarethcollege"}, {"datetaken": "2009-05-09 09:27:17", "license": "4", "title": "A Sign of the Times", "text": "", "album_id": "72157617949218325", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3180/3524878467_fed43999a4_o.jpg", "secret": "f51866377f", "media": "photo", "latitude": "0", "id": "3524878467", "tags": "college graduation commencement 2009 nazareth nazarethcollege"}, {"datetaken": "2009-05-09 09:32:34", "license": "4", "title": "Masters of Ceremony", "text": "", "album_id": "72157617949218325", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3343/3525683956_f86a60b3bf_o.jpg", "secret": "f6ae254bac", "media": "photo", "latitude": "0", "id": "3525683956", "tags": "college graduation commencement 2009 nazareth nazarethcollege"}, {"datetaken": "2009-05-09 09:46:50", "license": "4", "title": "The Graduate", "text": "", "album_id": "72157617949218325", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3650/3525684030_16593bc698_o.jpg", "secret": "76e930a480", "media": "photo", "latitude": "0", "id": "3525684030", "tags": "college graduation commencement 2009 nazareth nazarethcollege"}, {"datetaken": "2009-05-09 09:46:59", "license": "4", "title": "Snap!", "text": "", "album_id": "72157617949218325", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3606/3524878737_1627ea5f3d_o.jpg", "secret": "e7fdb349f4", "media": "photo", "latitude": "0", "id": "3524878737", "tags": "college graduation commencement 2009 nazareth nazarethcollege"}, {"datetaken": "2009-05-09 10:59:05", "license": "4", "title": "For Old Times' Sake", "text": "", "album_id": "72157617949218325", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3585/3524878947_42b032ac91_o.jpg", "secret": "52d8a98af4", "media": "photo", "latitude": "0", "id": "3524878947", "tags": "college graduation commencement 2009 nazareth nazarethcollege"}, {"datetaken": "2009-05-09 11:01:46", "license": "4", "title": "Family Photogs", "text": "", "album_id": "72157617949218325", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3333/3524879079_245c88af74_o.jpg", "secret": "7c4d32dc99", "media": "photo", "latitude": "0", "id": "3524879079", "tags": "college graduation commencement 2009 nazareth nazarethcollege"}, {"datetaken": "2009-05-09 11:03:14", "license": "4", "title": "\"I Did It\"", "text": "", "album_id": "72157617949218325", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3404/3525684548_f5b254956b_o.jpg", "secret": "797b253a44", "media": "photo", "latitude": "0", "id": "3525684548", "tags": "college graduation commencement 2009 nazareth nazarethcollege"}, {"datetaken": "2009-05-09 11:25:18", "license": "4", "title": "Mastered This", "text": "", "album_id": "72157617949218325", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3407/3524879265_85a7c72e6a_o.jpg", "secret": "a0d9785230", "media": "photo", "latitude": "0", "id": "3524879265", "tags": "college graduation commencement 2009 nazareth nazarethcollege"}, {"datetaken": "2009-05-09 11:37:58", "license": "4", "title": "Picture Perfect", "text": "", "album_id": "72157617949218325", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3389/3525684706_186b8ec447_o.jpg", "secret": "29a591bd83", "media": "photo", "latitude": "0", "id": "3525684706", "tags": "college graduation commencement 2009 nazareth nazarethcollege"}, {"datetaken": "2009-05-09 11:44:53", "license": "4", "title": "It's All Relative", "text": "", "album_id": "72157617949218325", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3070/3525684786_07a8fd4409_o.jpg", "secret": "9100fbcb35", "media": "photo", "latitude": "0", "id": "3525684786", "tags": "college graduation commencement 2009 nazareth nazarethcollege"}, {"datetaken": "2009-05-02 08:56:33", "license": "1", "title": "Emperor Palpatine", "text": "", "album_id": "72157625503935527", "longitude": "-0.092707", "url_o": "https://farm4.staticflickr.com/3365/3495413146_5f094a1ede_o.jpg", "secret": "252bceb331", "media": "photo", "latitude": "51.519767", "id": "3495413146", "tags": "london graduation ceremony barbican hazel"}, {"datetaken": "2009-05-02 08:57:41", "license": "1", "title": "Portrait", "text": "", "album_id": "72157625503935527", "longitude": "-0.092707", "url_o": "https://farm4.staticflickr.com/3647/3495415862_e2ee6400e4_o.jpg", "secret": "e1c3147a3b", "media": "photo", "latitude": "51.519767", "id": "3495415862", "tags": "london graduation ceremony barbican hazel"}, {"datetaken": "2009-05-02 08:57:47", "license": "1", "title": "Contemplative", "text": "", "album_id": "72157625503935527", "longitude": "-0.092707", "url_o": "https://farm4.staticflickr.com/3331/3495418442_f11e78236b_o.jpg", "secret": "10f23bb21e", "media": "photo", "latitude": "51.519767", "id": "3495418442", "tags": "london graduation ceremony barbican hazel"}, {"datetaken": "2009-05-02 08:57:52", "license": "1", "title": "Waiting", "text": "", "album_id": "72157625503935527", "longitude": "-0.092707", "url_o": "https://farm4.staticflickr.com/3594/3495420898_b2fe0508a7_o.jpg", "secret": "1942b2ea18", "media": "photo", "latitude": "51.519767", "id": "3495420898", "tags": "london graduation ceremony barbican hazel"}, {"datetaken": "2009-05-02 08:58:41", "license": "1", "title": "Andy & Hazel", "text": "", "album_id": "72157625503935527", "longitude": "-0.092707", "url_o": "https://farm4.staticflickr.com/3581/3495423574_cf2aa7e55d_o.jpg", "secret": "9a4d457060", "media": "photo", "latitude": "51.519767", "id": "3495423574", "tags": "london graduation ceremony barbican hazel"}, {"datetaken": "2009-05-02 08:59:09", "license": "1", "title": "Joan, Hazel & Adam", "text": "", "album_id": "72157625503935527", "longitude": "-0.092707", "url_o": "https://farm4.staticflickr.com/3641/3495426178_db64e5f10c_o.jpg", "secret": "9f36b8882c", "media": "photo", "latitude": "51.519767", "id": "3495426178", "tags": "adam london graduation ceremony joan barbican hazel"}, {"datetaken": "2009-05-02 08:59:22", "license": "1", "title": "Joan & Hazel", "text": "", "album_id": "72157625503935527", "longitude": "-0.092707", "url_o": "https://farm4.staticflickr.com/3358/3495428860_d2ed04d97b_o.jpg", "secret": "55e03f89db", "media": "photo", "latitude": "51.519767", "id": "3495428860", "tags": "london graduation ceremony joan barbican hazel"}, {"datetaken": "2009-05-02 08:59:32", "license": "1", "title": "Hazel", "text": "", "album_id": "72157625503935527", "longitude": "-0.092707", "url_o": "https://farm4.staticflickr.com/3590/3494614469_92d4b246cc_o.jpg", "secret": "4dc432bc3c", "media": "photo", "latitude": "51.519767", "id": "3494614469", "tags": "london graduation ceremony barbican hazel"}, {"datetaken": "2009-05-02 09:00:51", "license": "1", "title": "Joan, Hazel & Jim", "text": "", "album_id": "72157625503935527", "longitude": "-0.092707", "url_o": "https://farm4.staticflickr.com/3411/3495434152_fd7b5a8c59_o.jpg", "secret": "c31a7f4022", "media": "photo", "latitude": "51.519767", "id": "3495434152", "tags": "london graduation ceremony joan jim barbican hazel"}, {"datetaken": "2009-05-02 09:35:44", "license": "1", "title": "Looking on", "text": "", "album_id": "72157625503935527", "longitude": "-0.092707", "url_o": "https://farm4.staticflickr.com/3413/3494619793_75088bde32_o.jpg", "secret": "52c27a3be6", "media": "photo", "latitude": "51.519767", "id": "3494619793", "tags": "london graduation ceremony barbican"}, {"datetaken": "2009-05-02 09:56:11", "license": "1", "title": "Angela Mason waits", "text": "", "album_id": "72157625503935527", "longitude": "-0.092707", "url_o": "https://farm4.staticflickr.com/3375/3495439298_d700aee84d_o.jpg", "secret": "f3be24c9a2", "media": "photo", "latitude": "51.519767", "id": "3495439298", "tags": "london graduation ceremony barbican"}, {"datetaken": "2009-05-02 10:24:09", "license": "1", "title": "Hazel waits #2", "text": "", "album_id": "72157625503935527", "longitude": "-0.092707", "url_o": "https://farm4.staticflickr.com/3552/3495441888_b623c705d0_o.jpg", "secret": "dc18063f5e", "media": "photo", "latitude": "51.519767", "id": "3495441888", "tags": "london graduation ceremony barbican hazel"}, {"datetaken": "2009-05-02 10:24:21", "license": "1", "title": "Chuffed", "text": "", "album_id": "72157625503935527", "longitude": "-0.092707", "url_o": "https://farm4.staticflickr.com/3547/3494627487_fe9b33cbc8_o.jpg", "secret": "213b1e3204", "media": "photo", "latitude": "51.519767", "id": "3494627487", "tags": "london graduation ceremony barbican hazel"}, {"datetaken": "2009-05-09 01:08:16", "license": "4", "title": "Max's Defense", "text": "", "album_id": "72157618548780362", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3617/3550131472_48495549cc_o.jpg", "secret": "8612d01f6c", "media": "photo", "latitude": "0", "id": "3550131472", "tags": ""}, {"datetaken": "2009-05-09 01:08:30", "license": "4", "title": "Max's Defense", "text": "", "album_id": "72157618548780362", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2448/3549327589_a52c3fedde_o.jpg", "secret": "5806a34f6a", "media": "photo", "latitude": "0", "id": "3549327589", "tags": ""}, {"datetaken": "2009-05-09 02:49:07", "license": "4", "title": "Max", "text": "", "album_id": "72157618548780362", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3055/3549332283_4764b8920a_o.jpg", "secret": "c8c25b4217", "media": "photo", "latitude": "0", "id": "3549332283", "tags": ""}, {"datetaken": "2009-05-09 02:49:18", "license": "4", "title": "Bridget", "text": "", "album_id": "72157618548780362", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3365/3550142238_4e1f70d00d_o.jpg", "secret": "8b23d85919", "media": "photo", "latitude": "0", "id": "3550142238", "tags": ""}, {"datetaken": "2009-05-09 02:49:50", "license": "4", "title": "Shilad", "text": "", "album_id": "72157618548780362", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3367/3549338865_2e3b2cf420_o.jpg", "secret": "af31c18318", "media": "photo", "latitude": "0", "id": "3549338865", "tags": ""}, {"datetaken": "2009-05-09 02:50:20", "license": "4", "title": "Line of Advanced Degrees", "text": "", "album_id": "72157618548780362", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3632/3550149186_3718ed8c3a_o.jpg", "secret": "820e541ae1", "media": "photo", "latitude": "0", "id": "3550149186", "tags": ""}, {"datetaken": "2009-05-09 03:03:06", "license": "4", "title": "Max processing", "text": "", "album_id": "72157618548780362", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3611/3549346163_75f3166ced_o.jpg", "secret": "57c73a4afb", "media": "photo", "latitude": "0", "id": "3549346163", "tags": ""}, {"datetaken": "2009-05-09 03:16:06", "license": "4", "title": "Our view", "text": "", "album_id": "72157618548780362", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3371/3550154876_7b89fac502_o.jpg", "secret": "602011da18", "media": "photo", "latitude": "0", "id": "3550154876", "tags": ""}, {"datetaken": "2009-05-09 05:16:16", "license": "4", "title": "Hooding", "text": "", "album_id": "72157618548780362", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3303/3549351587_b13d99882e_o.jpg", "secret": "365e90a4c4", "media": "photo", "latitude": "0", "id": "3549351587", "tags": ""}, {"datetaken": "2009-05-09 05:16:32", "license": "4", "title": "Congratulations", "text": "", "album_id": "72157618548780362", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3575/3550160812_09ed29c12f_o.jpg", "secret": "5e04f5aa61", "media": "photo", "latitude": "0", "id": "3550160812", "tags": ""}, {"datetaken": "2009-05-09 05:33:04", "license": "4", "title": "Shilad and Katy", "text": "", "album_id": "72157618548780362", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2468/3550164086_4e4bb0bf7e_o.jpg", "secret": "cdbee6f4e5", "media": "photo", "latitude": "0", "id": "3550164086", "tags": ""}, {"datetaken": "2009-05-09 05:34:30", "license": "4", "title": "The graduates", "text": "", "album_id": "72157618548780362", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3311/3549359579_ce01deb543_o.jpg", "secret": "6d30c248d7", "media": "photo", "latitude": "0", "id": "3549359579", "tags": ""}, {"datetaken": "2009-05-09 05:34:59", "license": "4", "title": "The graduates + supporting cast", "text": "", "album_id": "72157618548780362", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3352/3550167922_f1977e821b_o.jpg", "secret": "e1194e1e62", "media": "photo", "latitude": "0", "id": "3550167922", "tags": ""}, {"datetaken": "2009-05-09 05:37:21", "license": "4", "title": "Katy and Jim", "text": "", "album_id": "72157618548780362", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3412/3550171580_717658a75c_o.jpg", "secret": "f5058446dc", "media": "photo", "latitude": "0", "id": "3550171580", "tags": ""}, {"datetaken": "2009-05-09 05:39:09", "license": "4", "title": "Mary {Kay|Lee}, Katy, Shilad", "text": "", "album_id": "72157618548780362", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3605/3549368069_17cbfc6aa0_o.jpg", "secret": "6956e71283", "media": "photo", "latitude": "0", "id": "3549368069", "tags": ""}, {"datetaken": "2009-05-09 05:40:21", "license": "4", "title": "Shilad and Goldy", "text": "", "album_id": "72157618548780362", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3600/3549370593_98a3783431_o.jpg", "secret": "3f46fa9e25", "media": "photo", "latitude": "0", "id": "3549370593", "tags": ""}, {"datetaken": "2009-05-29 16:59:53", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3644/3586717501_762504de1f_o.jpg", "secret": "a4d8a57298", "media": "photo", "latitude": "0", "id": "3586717501", "tags": "graduation"}, {"datetaken": "2009-05-29 17:02:24", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3330/3586720979_7edd42b6c7_o.jpg", "secret": "518ae3c2fe", "media": "photo", "latitude": "0", "id": "3586720979", "tags": "graduation"}, {"datetaken": "2009-05-29 17:05:36", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3385/3586726069_9288a1c04a_o.jpg", "secret": "726245c523", "media": "photo", "latitude": "0", "id": "3586726069", "tags": "graduation"}, {"datetaken": "2009-05-29 17:14:22", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3600/3586728369_f3e54118c5_o.jpg", "secret": "5b5d768fc5", "media": "photo", "latitude": "0", "id": "3586728369", "tags": "graduation catherine"}, {"datetaken": "2009-05-29 17:14:34", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3320/3587539722_8907527964_o.jpg", "secret": "8164048a02", "media": "photo", "latitude": "0", "id": "3587539722", "tags": "graduation catherine"}, {"datetaken": "2009-05-29 17:14:40", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3325/3586730133_96c4437972_o.jpg", "secret": "4d9a631ec9", "media": "photo", "latitude": "0", "id": "3586730133", "tags": "graduation catherine"}, {"datetaken": "2009-05-29 17:22:27", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3020/3587544808_6db563970b_o.jpg", "secret": "04a156a368", "media": "photo", "latitude": "0", "id": "3587544808", "tags": "graduation"}, {"datetaken": "2009-05-29 17:25:19", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2463/3587547006_acd5a88ec8_o.jpg", "secret": "7d9f9c84ab", "media": "photo", "latitude": "0", "id": "3587547006", "tags": "graduation"}, {"datetaken": "2009-05-29 17:30:11", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3090/3587551896_c2e70d9667_o.jpg", "secret": "df3fc8ef58", "media": "photo", "latitude": "0", "id": "3587551896", "tags": "graduation"}, {"datetaken": "2009-05-29 17:47:02", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3380/3586744949_2b02596cef_o.jpg", "secret": "1dfa5acf5e", "media": "photo", "latitude": "0", "id": "3586744949", "tags": "graduation"}, {"datetaken": "2009-05-29 18:10:50", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3377/3587555900_68a7e56bdf_o.jpg", "secret": "d16f3ac16c", "media": "photo", "latitude": "0", "id": "3587555900", "tags": "james graduation"}, {"datetaken": "2009-05-29 18:26:16", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3641/3587557056_2967e7e341_o.jpg", "secret": "9232bd8f3a", "media": "photo", "latitude": "0", "id": "3587557056", "tags": "graduation"}, {"datetaken": "2009-05-29 18:26:19", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3664/3587557894_7dde125a20_o.jpg", "secret": "a973546b2d", "media": "photo", "latitude": "0", "id": "3587557894", "tags": "graduation"}, {"datetaken": "2009-05-29 18:29:30", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3384/3586748553_5aa89beb80_o.jpg", "secret": "c6d550a132", "media": "photo", "latitude": "0", "id": "3586748553", "tags": "graduation"}, {"datetaken": "2009-05-29 19:03:15", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3364/3587561704_528b1e00d3_o.jpg", "secret": "a8f1df868f", "media": "photo", "latitude": "0", "id": "3587561704", "tags": "graduation"}, {"datetaken": "2009-05-29 19:03:49", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3312/3587579674_4daaec78de_o.jpg", "secret": "2689403bc7", "media": "photo", "latitude": "0", "id": "3587579674", "tags": "amanda scott graduation nathaniel"}, {"datetaken": "2009-05-29 19:03:55", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3395/3586752827_1a8aea971e_o.jpg", "secret": "9cd71e202c", "media": "photo", "latitude": "0", "id": "3586752827", "tags": "graduation nathaniel"}, {"datetaken": "2009-05-29 19:12:36", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2454/3586755157_91a2435313_o.jpg", "secret": "a4429c4ddc", "media": "photo", "latitude": "0", "id": "3586755157", "tags": "graduation catherine nathaniel"}, {"datetaken": "2009-05-29 19:12:54", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3566/3586756557_4b9c1cc236_o.jpg", "secret": "ac0d716f04", "media": "photo", "latitude": "0", "id": "3586756557", "tags": "graduation catherine"}, {"datetaken": "2009-05-29 19:17:10", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3343/3586760665_e9d882b1c7_o.jpg", "secret": "d03d0fd14b", "media": "photo", "latitude": "0", "id": "3586760665", "tags": "james graduation catherine"}, {"datetaken": "2009-05-29 19:17:43", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2440/3587572878_1315a4983a_o.jpg", "secret": "71dff2dfa9", "media": "photo", "latitude": "0", "id": "3587572878", "tags": "graduation"}, {"datetaken": "2009-05-29 19:19:36", "license": "3", "title": "", "text": "", "album_id": "72157619115629898", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3613/3587576040_0415aa95ed_o.jpg", "secret": "9be9462127", "media": "photo", "latitude": "0", "id": "3587576040", "tags": "graduation catherine michaelt"}, {"datetaken": "2009-06-11 00:25:04", "license": "1", "title": "Stage: Groovin into 6th", "text": "", "album_id": "72157619624973860", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3300/3618032207_e64d135bd9_o.jpg", "secret": "1db20c32a9", "media": "photo", "latitude": "0", "id": "3618032207", "tags": ""}, {"datetaken": "2009-06-11 00:39:18", "license": "0", "title": "Emily", "text": "", "album_id": "72157619624973860", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3587/3618032707_236972e109_o.jpg", "secret": "a5bd7f6a39", "media": "photo", "latitude": "0", "id": "3618032707", "tags": ""}, {"datetaken": "2009-06-11 01:51:31", "license": "1", "title": "Graduation Ceremony", "text": "", "album_id": "72157619624973860", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2482/3618853944_fa30484524_o.jpg", "secret": "4770644ed0", "media": "photo", "latitude": "0", "id": "3618853944", "tags": ""}, {"datetaken": "2009-06-11 02:02:58", "license": "1", "title": "Friends", "text": "", "album_id": "72157619624973860", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3132/3618033595_a281486200_o.jpg", "secret": "8d9d4a1de9", "media": "photo", "latitude": "0", "id": "3618033595", "tags": ""}, {"datetaken": "2009-06-11 02:03:13", "license": "1", "title": "Act lady like? Not me!", "text": "", "album_id": "72157619624973860", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3304/3618854864_5193425118_o.jpg", "secret": "bbdb7db551", "media": "photo", "latitude": "0", "id": "3618854864", "tags": ""}, {"datetaken": "2009-06-11 02:04:21", "license": "1", "title": "Em", "text": "", "album_id": "72157619624973860", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2478/3618035115_9f7956d2c0_o.jpg", "secret": "816c338704", "media": "photo", "latitude": "0", "id": "3618035115", "tags": ""}, {"datetaken": "2009-06-11 02:05:32", "license": "1", "title": "Luca and Emily", "text": "", "album_id": "72157619624973860", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3399/3618036061_21ec31fb8e_o.jpg", "secret": "4f81a4e6ec", "media": "photo", "latitude": "0", "id": "3618036061", "tags": ""}, {"datetaken": "2009-06-11 02:07:24", "license": "1", "title": "Friends", "text": "", "album_id": "72157619624973860", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3323/3618037217_df7d185e50_o.jpg", "secret": "a5d5747834", "media": "photo", "latitude": "0", "id": "3618037217", "tags": ""}, {"datetaken": "2009-06-11 02:07:44", "license": "0", "title": "Friends", "text": "", "album_id": "72157619624973860", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2425/3618037905_64d7fd60f5_o.jpg", "secret": "c48c789fe0", "media": "photo", "latitude": "0", "id": "3618037905", "tags": ""}, {"datetaken": "2009-06-11 02:08:37", "license": "0", "title": "Friends", "text": "", "album_id": "72157619624973860", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3391/3618038521_9fff97ec62_o.jpg", "secret": "185e84e057", "media": "photo", "latitude": "0", "id": "3618038521", "tags": ""}, {"datetaken": "2009-06-11 02:09:12", "license": "0", "title": "Friends", "text": "", "album_id": "72157619624973860", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3605/3618860082_301a000d00_o.jpg", "secret": "8c653856ac", "media": "photo", "latitude": "0", "id": "3618860082", "tags": ""}, {"datetaken": "2009-06-11 02:09:23", "license": "0", "title": "Em and Friends", "text": "", "album_id": "72157619624973860", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3414/3618040181_b904cd6cd3_o.jpg", "secret": "d9001fbe0e", "media": "photo", "latitude": "0", "id": "3618040181", "tags": ""}, {"datetaken": "2009-06-11 02:24:05", "license": "1", "title": "Titles Created by Fifth Graders Dedicated to School", "text": "", "album_id": "72157619624973860", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3381/3618040983_e18a025d6c_o.jpg", "secret": "bc08161bc8", "media": "photo", "latitude": "0", "id": "3618040983", "tags": ""}, {"datetaken": "2009-06-06 14:06:36", "license": "4", "title": "DSC03551", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3331/3603621130_30c5f85b8e_o.jpg", "secret": "12fb4e3dc4", "media": "photo", "latitude": "0", "id": "3603621130", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 16:13:14", "license": "4", "title": "DSC03601", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3314/3602815329_4bc9781d72_o.jpg", "secret": "b1e93c1b1e", "media": "photo", "latitude": "0", "id": "3602815329", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 17:05:42", "license": "4", "title": "DSC03613", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3383/3603635448_8e3d01a4d6_o.jpg", "secret": "3530472890", "media": "photo", "latitude": "0", "id": "3603635448", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 17:28:02", "license": "4", "title": "DSC03616", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3411/3602833195_5edffd403a_o.jpg", "secret": "88fd0a32b4", "media": "photo", "latitude": "0", "id": "3602833195", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 17:39:31", "license": "4", "title": "\u5929\u4e0a\u4e00\u9846 \u5730\u4e0a\u4e00\u9846", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3633/3602840055_1d92de8e24_o.jpg", "secret": "ed6c72792d", "media": "photo", "latitude": "0", "id": "3602840055", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 18:35:57", "license": "4", "title": "DSC03655", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2471/3603662302_399e3d4e87_o.jpg", "secret": "5d18b905b0", "media": "photo", "latitude": "0", "id": "3603662302", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 18:57:08", "license": "4", "title": "DSC03691", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2436/3602859307_23bc852f96_o.jpg", "secret": "d9cf63e79f", "media": "photo", "latitude": "0", "id": "3602859307", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 19:05:14", "license": "4", "title": "DSC03717", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2431/3604211230_1e26e93f26_o.jpg", "secret": "d25074db37", "media": "photo", "latitude": "0", "id": "3604211230", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 19:07:48", "license": "4", "title": "DSC03723", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2449/3602877489_fb8bc3b822_o.jpg", "secret": "8fa85d3615", "media": "photo", "latitude": "0", "id": "3602877489", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 19:19:23", "license": "4", "title": "DSC03757", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2439/3603696720_1f554c2385_o.jpg", "secret": "c980573a1e", "media": "photo", "latitude": "0", "id": "3603696720", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 19:26:00", "license": "4", "title": "DSC03770", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3342/3603705424_66f7f158ee_o.jpg", "secret": "03f4faf79a", "media": "photo", "latitude": "0", "id": "3603705424", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 19:27:25", "license": "4", "title": "DSC03773", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3640/3602901501_36ecfeac5e_o.jpg", "secret": "9fb32d307d", "media": "photo", "latitude": "0", "id": "3602901501", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 19:43:05", "license": "4", "title": "DSC03788", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3339/3602911037_dcba189c84_o.jpg", "secret": "c1277fa48f", "media": "photo", "latitude": "0", "id": "3602911037", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 20:22:32", "license": "4", "title": "DSC03815", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3345/3603744692_a5ff9b300b_o.jpg", "secret": "6150678dfe", "media": "photo", "latitude": "0", "id": "3603744692", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 20:44:53", "license": "4", "title": "DSC03826", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3601/3603764698_b281d0f699_o.jpg", "secret": "658c6bc279", "media": "photo", "latitude": "0", "id": "3603764698", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 20:48:53", "license": "4", "title": "DSC03830", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3405/3603793840_60a835589e_o.jpg", "secret": "8bcc986019", "media": "photo", "latitude": "0", "id": "3603793840", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 21:06:31", "license": "4", "title": "DSC03854", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3411/3603808154_5f9366fcdb_o.jpg", "secret": "c9de22384a", "media": "photo", "latitude": "0", "id": "3603808154", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 21:11:23", "license": "4", "title": "DSC03869", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2456/3603009769_7e93f20c47_o.jpg", "secret": "2a1e4138d2", "media": "photo", "latitude": "0", "id": "3603009769", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 21:17:22", "license": "4", "title": "DSC03883", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3344/3603019999_7694ffb023_o.jpg", "secret": "979c876850", "media": "photo", "latitude": "0", "id": "3603019999", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 21:23:20", "license": "4", "title": "DSC03901", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2441/3603030965_ef3ac09cac_o.jpg", "secret": "74beea9aec", "media": "photo", "latitude": "0", "id": "3603030965", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 21:23:26", "license": "4", "title": "DSC03904", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3354/3603848262_1540fb7018_o.jpg", "secret": "d8a1a84bb8", "media": "photo", "latitude": "0", "id": "3603848262", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 21:23:36", "license": "4", "title": "DSC03907", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3384/3603041273_7d7145b02f_o.jpg", "secret": "94f718b3dd", "media": "photo", "latitude": "0", "id": "3603041273", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 21:23:53", "license": "4", "title": "DSC03909", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2484/3603046249_b22845c133_o.jpg", "secret": "3aed0c02f2", "media": "photo", "latitude": "0", "id": "3603046249", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 21:24:38", "license": "4", "title": "DSC03913", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3657/3603865462_515e37692c_o.jpg", "secret": "0cc5377093", "media": "photo", "latitude": "0", "id": "3603865462", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 21:28:02", "license": "4", "title": "DSC03942", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3638/3604231240_c1fd0792bc_o.jpg", "secret": "5473327eff", "media": "photo", "latitude": "0", "id": "3604231240", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 21:28:55", "license": "4", "title": "DSC03944", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3375/3604245468_4ce29a0e7f_o.jpg", "secret": "55cf8183b7", "media": "photo", "latitude": "0", "id": "3604245468", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 21:29:13", "license": "4", "title": "DSC03945", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3381/3604268796_598e4568e4_o.jpg", "secret": "2fb7071a63", "media": "photo", "latitude": "0", "id": "3604268796", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 21:31:46", "license": "4", "title": "DSC03949", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3558/3603061735_f9cd8a7b0d_o.jpg", "secret": "f86a9405e9", "media": "photo", "latitude": "0", "id": "3603061735", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2009-06-06 21:34:38", "license": "4", "title": "DSC03950", "text": "", "album_id": "72157619692962767", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3369/3603885996_06ecab549f_o.jpg", "secret": "41522a9df7", "media": "photo", "latitude": "0", "id": "3603885996", "tags": "98 yzu \u5143\u667a \u7562\u696d\u5178\u79ae graduationceremony"}, {"datetaken": "2011-05-05 17:41:11", "license": "1", "title": "DSC_0990", "text": "", "album_id": "72157626662576104", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5261/5694501782_277f72e633_o.jpg", "secret": "0453b6c130", "media": "photo", "latitude": "0", "id": "5694501782", "tags": "college graduation commencement nwfsc"}, {"datetaken": "2011-05-05 17:59:04", "license": "1", "title": "DSC_1009", "text": "", "album_id": "72157626662576104", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3021/5693928729_cab2abf631_o.jpg", "secret": "210817b81b", "media": "photo", "latitude": "0", "id": "5693928729", "tags": "college graduation commencement nwfsc"}, {"datetaken": "2011-05-05 19:03:42", "license": "1", "title": "DSC_1152", "text": "", "album_id": "72157626662576104", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5141/5694502126_3d573238db_o.jpg", "secret": "3b390a79c3", "media": "photo", "latitude": "0", "id": "5694502126", "tags": "college graduation commencement nwfsc"}, {"datetaken": "2011-05-05 19:04:18", "license": "1", "title": "DSC_1161", "text": "", "album_id": "72157626662576104", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5262/5693929211_0cf3d34643_o.jpg", "secret": "aedec1bf7a", "media": "photo", "latitude": "0", "id": "5693929211", "tags": "college graduation commencement nwfsc"}, {"datetaken": "2011-05-05 19:14:16", "license": "1", "title": "DSC_1235", "text": "", "album_id": "72157626662576104", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3402/5694502472_c4b622e0ee_o.jpg", "secret": "f5783a851f", "media": "photo", "latitude": "0", "id": "5694502472", "tags": "college graduation commencement nwfsc"}, {"datetaken": "2011-05-05 19:38:32", "license": "1", "title": "DSC_1381", "text": "", "album_id": "72157626662576104", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5065/5694502862_1b526307dc_o.jpg", "secret": "b69c62098b", "media": "photo", "latitude": "0", "id": "5694502862", "tags": "college graduation commencement nwfsc"}, {"datetaken": "2011-05-05 19:50:14", "license": "1", "title": "DSC_1448", "text": "", "album_id": "72157626662576104", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3632/5694503202_7191567b66_o.jpg", "secret": "6500ea6760", "media": "photo", "latitude": "0", "id": "5694503202", "tags": "college graduation commencement nwfsc"}, {"datetaken": "2011-05-05 19:57:51", "license": "1", "title": "DSC_1487", "text": "", "album_id": "72157626662576104", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5109/5694503366_6a3f641019_o.jpg", "secret": "a79f9f887a", "media": "photo", "latitude": "0", "id": "5694503366", "tags": "college graduation commencement nwfsc"}, {"datetaken": "2011-05-05 20:06:50", "license": "1", "title": "NWF State College Graduation", "text": "", "album_id": "72157626662576104", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3281/5693930335_dd45a55539_o.jpg", "secret": "267e4c1dfa", "media": "photo", "latitude": "0", "id": "5693930335", "tags": "college graduation commencement nwfsc"}, {"datetaken": "2011-05-05 20:08:30", "license": "1", "title": "DSC_1567", "text": "", "album_id": "72157626662576104", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5189/5694503702_1843db89dd_o.jpg", "secret": "1641dd3d0e", "media": "photo", "latitude": "0", "id": "5694503702", "tags": "college graduation commencement nwfsc"}, {"datetaken": "2011-05-05 20:28:00", "license": "1", "title": "DSC_1764", "text": "", "album_id": "72157626662576104", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3234/5694503874_af69902310_o.jpg", "secret": "8f270c715b", "media": "photo", "latitude": "0", "id": "5694503874", "tags": "college graduation commencement nwfsc"}, {"datetaken": "2011-05-05 20:41:02", "license": "1", "title": "DSC_7689", "text": "", "album_id": "72157626662576104", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3336/5693930951_226896139c_o.jpg", "secret": "b9c2351e4f", "media": "photo", "latitude": "0", "id": "5693930951", "tags": "college graduation commencement nwfsc"}, {"datetaken": "2011-05-05 20:42:35", "license": "1", "title": "DSC_7695", "text": "", "album_id": "72157626662576104", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3524/5694504186_f83ddc61c5_o.jpg", "secret": "33f8a18790", "media": "photo", "latitude": "0", "id": "5694504186", "tags": "college graduation commencement nwfsc"}, {"datetaken": "2011-05-20 14:35:58", "license": "2", "title": "School of Management: Multicultural Marketing Celebration", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3228/5742248788_bc4260e193_o.jpg", "secret": "4706934289", "media": "photo", "latitude": "0", "id": "5742248788", "tags": "usf usfca sf universityofsanfrancisco bps businessandprofessionalstudies marketing globalization strategy multiculturalmarketing mandyortiz may202011 graduation ceremony celebration usfpool usfgrad2011"}, {"datetaken": "2011-05-20 14:38:11", "license": "2", "title": "BPS Multicultural Marketing - 02", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5189/5741695647_2b1d066af6_o.jpg", "secret": "818a2c05a1", "media": "photo", "latitude": "0", "id": "5741695647", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 14:39:13", "license": "2", "title": "BPS Multicultural Marketing - 03", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5267/5741695625_d1312026d5_o.jpg", "secret": "d0188abc17", "media": "photo", "latitude": "0", "id": "5741695625", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 14:40:26", "license": "2", "title": "BPS Multicultural Marketing - 04", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5030/5742248884_6d314c6bd1_o.jpg", "secret": "2e71e45ac5", "media": "photo", "latitude": "0", "id": "5742248884", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 14:40:51", "license": "2", "title": "BPS Multicultural Marketing - 05", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3516/5741695699_15e0028b67_o.jpg", "secret": "175c53bf4d", "media": "photo", "latitude": "0", "id": "5741695699", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 14:44:28", "license": "2", "title": "BPS Multicultural Marketing - 06", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5265/5742248934_88b7d5c8f3_o.jpg", "secret": "9f5f2f4506", "media": "photo", "latitude": "0", "id": "5742248934", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 14:46:16", "license": "2", "title": "BPS Multicultural Marketing - 07", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5029/5741695759_2ac3bb4596_o.jpg", "secret": "6f985f33c2", "media": "photo", "latitude": "0", "id": "5741695759", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 14:47:10", "license": "2", "title": "BPS Multicultural Marketing - 08", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2412/5741695805_387dc6f989_o.jpg", "secret": "0b356b87ce", "media": "photo", "latitude": "0", "id": "5741695805", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 14:47:45", "license": "2", "title": "BPS Multicultural Marketing - 09", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2536/5742249022_7d692124bf_o.jpg", "secret": "88c1cb239c", "media": "photo", "latitude": "0", "id": "5742249022", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 14:54:57", "license": "2", "title": "BPS Multicultural Marketing - 10", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5030/5741695851_f68ea88d51_o.jpg", "secret": "b6e507b566", "media": "photo", "latitude": "0", "id": "5741695851", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 14:55:01", "license": "2", "title": "BPS Multicultural Marketing - 11", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2538/5742249098_5a5fc4bb73_o.jpg", "secret": "a810f5dbc6", "media": "photo", "latitude": "0", "id": "5742249098", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 14:57:27", "license": "2", "title": "BPS Multicultural Marketing - 12", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/5741695929_a71facf6a0_o.jpg", "secret": "945a23d6b1", "media": "photo", "latitude": "0", "id": "5741695929", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 14:58:36", "license": "2", "title": "BPS Multicultural Marketing - 13", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5302/5741695967_25849d9130_o.jpg", "secret": "87015aa875", "media": "photo", "latitude": "0", "id": "5741695967", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 14:59:40", "license": "2", "title": "BPS Multicultural Marketing - 14", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3450/5741695989_9fa69be86f_o.jpg", "secret": "e78ede6045", "media": "photo", "latitude": "0", "id": "5741695989", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 15:01:13", "license": "2", "title": "BPS Multicultural Marketing - 15", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2427/5741696035_e30c4a3a45_o.jpg", "secret": "bca1fb0145", "media": "photo", "latitude": "0", "id": "5741696035", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 15:05:59", "license": "2", "title": "BPS Multicultural Marketing - 16", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3349/5742249246_04e0736a44_o.jpg", "secret": "5e3cacd30f", "media": "photo", "latitude": "0", "id": "5742249246", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 15:07:25", "license": "2", "title": "BPS Multicultural Marketing - 17", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2242/5742249278_cdcd967b03_o.jpg", "secret": "97f6758abd", "media": "photo", "latitude": "0", "id": "5742249278", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 15:09:18", "license": "2", "title": "BPS Multicultural Marketing - 18", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3361/5741696153_396c4c63bc_o.jpg", "secret": "08ff77160d", "media": "photo", "latitude": "0", "id": "5741696153", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 15:09:25", "license": "2", "title": "BPS Multicultural Marketing - 19", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5110/5742249364_50acdb4513_o.jpg", "secret": "8e15ce5e7f", "media": "photo", "latitude": "0", "id": "5742249364", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 15:11:23", "license": "2", "title": "BPS Multicultural Marketing - 20", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3179/5741696215_01385398d0_o.jpg", "secret": "32f4ba20b1", "media": "photo", "latitude": "0", "id": "5741696215", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 15:12:47", "license": "2", "title": "BPS Multicultural Marketing - 21", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2292/5742249444_028d102313_o.jpg", "secret": "3034c3913b", "media": "photo", "latitude": "0", "id": "5742249444", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 15:14:30", "license": "2", "title": "BPS Multicultural Marketing - 22", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3531/5742249518_0f443f7257_o.jpg", "secret": "048ffc3410", "media": "photo", "latitude": "0", "id": "5742249518", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 15:16:40", "license": "2", "title": "BPS Multicultural Marketing - 23", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5142/5742249490_220fef83b4_o.jpg", "secret": "1d60d51d87", "media": "photo", "latitude": "0", "id": "5742249490", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 15:27:32", "license": "2", "title": "BPS Multicultural Marketing - 24", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3516/5742249548_817eea23a9_o.jpg", "secret": "378779b155", "media": "photo", "latitude": "0", "id": "5742249548", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-05-20 15:32:48", "license": "2", "title": "BPS Multicultural Marketing - 25", "text": "", "album_id": "72157626644157407", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3596/5742249572_7e231c5c59_o.jpg", "secret": "3de65e62f6", "media": "photo", "latitude": "0", "id": "5742249572", "tags": "sf marketing graduation ceremony celebration globalization usf strategy universityofsanfrancisco bps usfca multiculturalmarketing usfpool businessandprofessionalstudies mandyortiz may202011 usfgrad2011"}, {"datetaken": "2011-06-02 16:59:50", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3492/5808595429_0ddd7fb6df_o.jpg", "secret": "a6511001f2", "media": "photo", "latitude": "0", "id": "5808595429", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-02 17:16:50", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5108/5809163792_b9cc817f97_o.jpg", "secret": "0fbbc9f341", "media": "photo", "latitude": "0", "id": "5809163792", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-02 17:23:17", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3183/5809165040_c12717e56b_o.jpg", "secret": "bf3219541a", "media": "photo", "latitude": "0", "id": "5809165040", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-02 17:57:38", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5160/5808604465_c75cdcbc1b_o.jpg", "secret": "f092d4d689", "media": "photo", "latitude": "0", "id": "5808604465", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-02 18:16:40", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2349/5809170480_3f792b8272_o.jpg", "secret": "daa18fc828", "media": "photo", "latitude": "0", "id": "5809170480", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-02 18:19:23", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/5809171248_7466906f24_o.jpg", "secret": "60ef914477", "media": "photo", "latitude": "0", "id": "5809171248", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-02 18:23:48", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3475/5809173346_cef5edf32f_o.jpg", "secret": "c2cdf2d621", "media": "photo", "latitude": "0", "id": "5809173346", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-02 18:46:58", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2186/5809156380_ca5aa4012e_o.jpg", "secret": "d61d99924f", "media": "photo", "latitude": "0", "id": "5809156380", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-02 18:48:17", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3576/5809161236_6b1937c1aa_o.jpg", "secret": "3eaac7a521", "media": "photo", "latitude": "0", "id": "5809161236", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 09:01:11", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3178/5808611567_bb84cf471a_o.jpg", "secret": "57ecf80077", "media": "photo", "latitude": "0", "id": "5808611567", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 09:01:28", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3302/5808615527_e3006174e6_o.jpg", "secret": "95a125aa9f", "media": "photo", "latitude": "0", "id": "5808615527", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 09:51:47", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5274/5809187346_70a2270496_o.jpg", "secret": "8047a89198", "media": "photo", "latitude": "0", "id": "5809187346", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 09:53:42", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5262/5809198430_8cb01cd4d5_o.jpg", "secret": "f270125c91", "media": "photo", "latitude": "0", "id": "5809198430", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 09:54:48", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2531/5808633637_b819323afe_o.jpg", "secret": "7eab4d9613", "media": "photo", "latitude": "0", "id": "5808633637", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 09:56:53", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3435/5808635811_ed5dc2f68e_o.jpg", "secret": "2d76d62249", "media": "photo", "latitude": "0", "id": "5808635811", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 09:59:17", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5107/5808637153_52e7858da5_o.jpg", "secret": "ec82d45d7d", "media": "photo", "latitude": "0", "id": "5808637153", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 10:00:33", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2640/5808637951_5ec6d51f7c_o.jpg", "secret": "e2f6de2c75", "media": "photo", "latitude": "0", "id": "5808637951", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 10:02:10", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5120/5809176516_5ae3acd673_o.jpg", "secret": "8ce170047f", "media": "photo", "latitude": "0", "id": "5809176516", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 10:02:48", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5031/5809181726_4b40af4f07_o.jpg", "secret": "1f8f1cf27f", "media": "photo", "latitude": "0", "id": "5809181726", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 10:03:07", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2473/5809183554_211a35b260_o.jpg", "secret": "6d8133a563", "media": "photo", "latitude": "0", "id": "5809183554", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 10:04:58", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2439/5809184458_8f82b3e45b_o.jpg", "secret": "c2569068f5", "media": "photo", "latitude": "0", "id": "5809184458", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 10:08:52", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3019/5808622685_1229cc5f32_o.jpg", "secret": "d686131841", "media": "photo", "latitude": "0", "id": "5808622685", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 10:09:53", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3292/5808624913_81ebaef507_o.jpg", "secret": "8853b82527", "media": "photo", "latitude": "0", "id": "5808624913", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 10:09:54", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3249/5808625853_5775ff28df_o.jpg", "secret": "dce5ed2751", "media": "photo", "latitude": "0", "id": "5808625853", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 10:09:55", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5107/5808627009_6501e66d42_o.jpg", "secret": "51487601c6", "media": "photo", "latitude": "0", "id": "5808627009", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 10:11:00", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3480/5809191944_6049da91ed_o.jpg", "secret": "b579b31532", "media": "photo", "latitude": "0", "id": "5809191944", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-03 10:14:11", "license": "6", "title": "NDU awards diplomas to inaugural class of ARSOF master's degree candidates", "text": "", "album_id": "72157626784170543", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2121/5808631211_eee4fd6f45_o.jpg", "secret": "1a5d48cd3e", "media": "photo", "latitude": "0", "id": "5808631211", "tags": "graduation ceremony northcarolina civilaffairs fortbragg usarmy specialforces nationaldefenseuniversity usarmyjohnfkennedyspecialwarfarecenterandschool militaryinformationsupportoperations directorateofregionalstudiesandeducation johnfkennedyauditorium"}, {"datetaken": "2011-06-11 08:07:42", "license": "1", "title": "The good shot, for Gramma and Grampa", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2085/5822651132_4b293b784f_o.jpg", "secret": "20eb3c6dc2", "media": "photo", "latitude": "0", "id": "5822651132", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 08:08:07", "license": "1", "title": "Picture 2 in day 118's triptych", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5145/5821786793_ee5f8b3257_o.jpg", "secret": "36eeeb0061", "media": "photo", "latitude": "0", "id": "5821786793", "tags": "selfportrait"}, {"datetaken": "2011-06-11 08:08:19", "license": "1", "title": "Picture 1 in day 118's triptych", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2326/5822350514_136c37b839_o.jpg", "secret": "4f825d9701", "media": "photo", "latitude": "0", "id": "5822350514", "tags": "selfportrait"}, {"datetaken": "2011-06-11 08:09:02", "license": "1", "title": "Ceej and the half-finished deck", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2035/5822651088_7dd4732a77_o.jpg", "secret": "d9bd30f2ec", "media": "photo", "latitude": "0", "id": "5822651088", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 08:09:21", "license": "1", "title": "I... I don't know what she's doing here", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5308/5822651032_4ba6e6e97f_o.jpg", "secret": "619fbebb69", "media": "photo", "latitude": "0", "id": "5822651032", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 08:09:27", "license": "1", "title": "Or... here?", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2671/5822650978_2d60508f24_o.jpg", "secret": "079ee6cda6", "media": "photo", "latitude": "0", "id": "5822650978", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 08:09:43", "license": "1", "title": "She's a bit of a goober", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5197/5822650928_dbef95fecc_o.jpg", "secret": "73da851662", "media": "photo", "latitude": "0", "id": "5822650928", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 08:09:54", "license": "1", "title": "The reason for the T-shirt-", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3342/5822650864_2b38595a81_o.jpg", "secret": "ea8473d2a6", "media": "photo", "latitude": "0", "id": "5822650864", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 08:09:57", "license": "1", "title": "", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3167/5822085977_b4aa651d78_o.jpg", "secret": "25068b9096", "media": "photo", "latitude": "0", "id": "5822085977", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 09:17:24", "license": "1", "title": "Ceej!", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2521/5822651322_a0a3e03991_o.jpg", "secret": "1b92726cf5", "media": "photo", "latitude": "0", "id": "5822651322", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 09:26:41", "license": "1", "title": "That arrow is how far away Jase and Kat were.", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5308/5822651262_7fde1b81a7_o.jpg", "secret": "e8347247de", "media": "photo", "latitude": "0", "id": "5822651262", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 09:27:31", "license": "1", "title": "The arrows are pointing to my other two kids", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2186/5822086329_e565873409_o.jpg", "secret": "482da9faff", "media": "photo", "latitude": "0", "id": "5822086329", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 09:35:16", "license": "1", "title": "There's Ceej!", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3116/5822651186_23b417eb21_o.jpg", "secret": "6a0602a5f6", "media": "photo", "latitude": "0", "id": "5822651186", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 10:23:41", "license": "1", "title": "There she is!", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3323/5822086863_6ebff9525a_o.jpg", "secret": "c43f5240bd", "media": "photo", "latitude": "0", "id": "5822086863", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 10:23:45", "license": "1", "title": "I got a little camera-happy...", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3014/5822651718_71d70571f4_o.jpg", "secret": "3cce2b85c5", "media": "photo", "latitude": "0", "id": "5822651718", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 10:23:51", "license": "1", "title": "Just a little...", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2233/5822651682_697b76e895_o.jpg", "secret": "7071ef19af", "media": "photo", "latitude": "0", "id": "5822651682", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 10:23:57", "license": "1", "title": "There she goes...", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2370/5822651648_f38c7ddeeb_o.jpg", "secret": "154c56528c", "media": "photo", "latitude": "0", "id": "5822651648", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 10:24:06", "license": "1", "title": "Now she can go forth and be a productive member of society", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2438/5822086739_09859c88bf_o.jpg", "secret": "ee7679e2d9", "media": "photo", "latitude": "0", "id": "5822086739", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 10:35:15", "license": "1", "title": "Chaos is about to start...", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2454/5822086693_5de5c68740_o.jpg", "secret": "88a5b0d7dc", "media": "photo", "latitude": "0", "id": "5822086693", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 10:35:18", "license": "1", "title": "There it is! Silly string, caps, beach balls...", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3186/5822651564_509ba31a1d_o.jpg", "secret": "5c942df6ba", "media": "photo", "latitude": "0", "id": "5822651564", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 10:35:21", "license": "1", "title": "", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2612/5822086595_c85da33cd1_o.jpg", "secret": "e31619887d", "media": "photo", "latitude": "0", "id": "5822086595", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 10:35:23", "license": "1", "title": "", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2627/5822651502_4616017727_o.jpg", "secret": "c9d03cfd15", "media": "photo", "latitude": "0", "id": "5822651502", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 10:52:30", "license": "1", "title": "Uh...", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2751/5822086523_8cee234d9c_o.jpg", "secret": "c600586e69", "media": "photo", "latitude": "0", "id": "5822086523", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 10:52:32", "license": "1", "title": "Like we ever had any doubt!", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3091/5822651394_c13656de12_o.jpg", "secret": "fc3b79a4d6", "media": "photo", "latitude": "0", "id": "5822651394", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 10:52:42", "license": "1", "title": "Me, my fake smile, and Ceej and her real smile", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/5822651354_6b098fb13a_o.jpg", "secret": "a47694a591", "media": "photo", "latitude": "0", "id": "5822651354", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 13:06:00", "license": "1", "title": "Kat and Christine (aka Ceej)", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5238/5822087063_9082cc05d2_o.jpg", "secret": "f76617f442", "media": "photo", "latitude": "0", "id": "5822087063", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 13:08:10", "license": "1", "title": "Me and the girls", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3065/5822651952_27f00e295f_o.jpg", "secret": "96a79c790c", "media": "photo", "latitude": "0", "id": "5822651952", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 13:08:36", "license": "1", "title": "Poor Kat...", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3396/5822086997_eac6cb01e9_o.jpg", "secret": "0e68b397bd", "media": "photo", "latitude": "0", "id": "5822086997", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 13:09:49", "license": "1", "title": "I don't know why he's making that face.", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3141/5822651862_1e2ba96188_o.jpg", "secret": "c3f13290fa", "media": "photo", "latitude": "0", "id": "5822651862", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-06-11 13:10:25", "license": "1", "title": "With Dad...", "text": "", "album_id": "72157626814267273", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2655/5822651802_a06160e09a_o.jpg", "secret": "d04852c89b", "media": "photo", "latitude": "0", "id": "5822651802", "tags": "graduation highschool highschoolgraduation graduationceremony"}, {"datetaken": "2011-05-26 13:06:51", "license": "2", "title": "IMG_6954", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6236/6286259719_80390ba629_o.jpg", "secret": "80f948ecca", "media": "photo", "latitude": "0", "id": "6286259719", "tags": "ceremony extension uga extend"}, {"datetaken": "2011-05-26 13:07:57", "license": "2", "title": "IMG_6956", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6240/6286260893_3fd037b8a6_o.jpg", "secret": "505d62b589", "media": "photo", "latitude": "0", "id": "6286260893", "tags": "ceremony award extension uga extend"}, {"datetaken": "2011-05-26 13:08:38", "license": "2", "title": "IMG_6958", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6043/6286262377_c27000d50f_o.jpg", "secret": "90cc5c6028", "media": "photo", "latitude": "0", "id": "6286262377", "tags": "ceremony extension uga extend"}, {"datetaken": "2011-05-26 13:09:36", "license": "2", "title": "IMG_6961", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6035/6286263845_0da5b452d0_o.jpg", "secret": "ab878b3178", "media": "photo", "latitude": "0", "id": "6286263845", "tags": "ceremony award extension uga extend"}, {"datetaken": "2011-05-26 13:45:34", "license": "2", "title": "IMG_6969", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6096/6286265173_175f573b1f_o.jpg", "secret": "4d8117a817", "media": "photo", "latitude": "0", "id": "6286265173", "tags": "ceremony award extension uga extend"}, {"datetaken": "2011-05-26 13:46:04", "license": "2", "title": "IMG_6970", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6091/6286266415_4911b0ba68_o.jpg", "secret": "9bfab12877", "media": "photo", "latitude": "0", "id": "6286266415", "tags": "ceremony award extension uga extend"}, {"datetaken": "2011-05-26 13:46:29", "license": "2", "title": "IMG_6972", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6119/6286267597_524dcd58db_o.jpg", "secret": "32f4dbd38e", "media": "photo", "latitude": "0", "id": "6286267597", "tags": "ceremony award extension uga extend"}, {"datetaken": "2011-05-26 13:46:54", "license": "2", "title": "IMG_6974", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6107/6286268635_06351e1a97_o.jpg", "secret": "ed9d80f996", "media": "photo", "latitude": "0", "id": "6286268635", "tags": "ceremony award extension uga extend"}, {"datetaken": "2011-05-26 13:47:13", "license": "2", "title": "IMG_6977", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6222/6286788560_b2bbb8cb3e_o.jpg", "secret": "65fcdcd34d", "media": "photo", "latitude": "0", "id": "6286788560", "tags": "ceremony award extension uga extend"}, {"datetaken": "2011-05-26 13:47:34", "license": "2", "title": "IMG_6978", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6236/6286789786_b91587aeb6_o.jpg", "secret": "161fb44ca3", "media": "photo", "latitude": "0", "id": "6286789786", "tags": "ceremony award extension uga extend"}, {"datetaken": "2011-05-26 13:47:56", "license": "2", "title": "IMG_6980", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6217/6286790846_7eb0e830a9_o.jpg", "secret": "d2bd9d48ed", "media": "photo", "latitude": "0", "id": "6286790846", "tags": "ceremony award extension uga extend"}, {"datetaken": "2011-05-26 13:48:15", "license": "2", "title": "IMG_6983", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6221/6286791980_d8624cb5e1_o.jpg", "secret": "7952c96618", "media": "photo", "latitude": "0", "id": "6286791980", "tags": "ceremony award extension uga extend"}, {"datetaken": "2011-05-26 13:48:36", "license": "2", "title": "IMG_6984", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6049/6286274315_ef19f02222_o.jpg", "secret": "1554fda1c0", "media": "photo", "latitude": "0", "id": "6286274315", "tags": "ceremony award extension uga extend"}, {"datetaken": "2011-05-26 13:48:57", "license": "2", "title": "IMG_6987", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6100/6286275515_f399ec0f36_o.jpg", "secret": "3cb5f3866c", "media": "photo", "latitude": "0", "id": "6286275515", "tags": "ceremony award extension uga extend"}, {"datetaken": "2011-05-26 13:49:13", "license": "2", "title": "IMG_6989", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6233/6286276667_ab7b3f8c7e_o.jpg", "secret": "62777e0496", "media": "photo", "latitude": "0", "id": "6286276667", "tags": "ceremony award extension uga extend"}, {"datetaken": "2011-05-26 13:49:29", "license": "2", "title": "IMG_6990", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6114/6286277873_e8e6bd06b7_o.jpg", "secret": "450bc461bd", "media": "photo", "latitude": "0", "id": "6286277873", "tags": "ceremony award extension uga extend"}, {"datetaken": "2011-05-26 13:53:10", "license": "2", "title": "IMG_6994", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6101/6286797828_6186f40e71_o.jpg", "secret": "cdb0f21759", "media": "photo", "latitude": "0", "id": "6286797828", "tags": "ceremony award extension uga extend"}, {"datetaken": "2011-05-26 14:05:34", "license": "2", "title": "IMG_7000", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6104/6286280529_2cc037f9cd_o.jpg", "secret": "90991cd16a", "media": "photo", "latitude": "0", "id": "6286280529", "tags": "ceremony award extension uga extend"}, {"datetaken": "2011-05-26 14:07:47", "license": "2", "title": "IMG_7001", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6102/6286281939_68b45ca170_o.jpg", "secret": "17253c965c", "media": "photo", "latitude": "0", "id": "6286281939", "tags": "ceremony award extension uga extend"}, {"datetaken": "2011-05-26 14:08:02", "license": "2", "title": "IMG_7005", "text": "", "album_id": "72157627866775475", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6219/6286283613_4ecace3f9f_o.jpg", "secret": "0e2fee37a5", "media": "photo", "latitude": "0", "id": "6286283613", "tags": "ceremony award extension uga extend"}, {"datetaken": "2012-05-05 22:35:46", "license": "1", "title": "Ferrum College Graduation 2", "text": "", "album_id": "72157629972234013", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7050/6999554506_e700971f8a_o.jpg", "secret": "161a28e980", "media": "photo", "latitude": "0", "id": "6999554506", "tags": ""}, {"datetaken": "2012-05-05 23:26:02", "license": "1", "title": "Ferrum College Graduation 3", "text": "", "album_id": "72157629972234013", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8002/6999554500_5a5cd94f8c_o.jpg", "secret": "7edf1a4bf4", "media": "photo", "latitude": "0", "id": "6999554500", "tags": ""}, {"datetaken": "2012-05-05 23:55:49", "license": "1", "title": "Ferrum College Graduation 4", "text": "", "album_id": "72157629972234013", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7124/7145640279_042478aac5_o.jpg", "secret": "1f8518453a", "media": "photo", "latitude": "0", "id": "7145640279", "tags": ""}, {"datetaken": "2012-05-06 00:01:37", "license": "1", "title": "Ferrum College Graduation 6", "text": "", "album_id": "72157629972234013", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7218/7145640251_9df99ede54_o.jpg", "secret": "8bdbb42cf8", "media": "photo", "latitude": "0", "id": "7145640251", "tags": ""}, {"datetaken": "2012-05-06 00:02:41", "license": "1", "title": "Ferrum College Graduation 12", "text": "", "album_id": "72157629972234013", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7263/7145639791_b4bcfd4800_o.jpg", "secret": "50d3bf739e", "media": "photo", "latitude": "0", "id": "7145639791", "tags": ""}, {"datetaken": "2012-05-06 00:07:05", "license": "1", "title": "Ferrum College Graduation 7", "text": "", "album_id": "72157629972234013", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5341/6999554354_a6de9b804e_o.jpg", "secret": "62d0757caa", "media": "photo", "latitude": "0", "id": "6999554354", "tags": ""}, {"datetaken": "2012-05-06 00:09:44", "license": "1", "title": "Ferrum College Graduation 9", "text": "", "album_id": "72157629972234013", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7204/7145640013_192e1750a3_o.jpg", "secret": "05d686f8e6", "media": "photo", "latitude": "0", "id": "7145640013", "tags": ""}, {"datetaken": "2012-05-06 00:14:10", "license": "1", "title": "Ferrum College Graduation 13", "text": "", "album_id": "72157629972234013", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5467/7145639727_f522143864_o.jpg", "secret": "11858ca9df", "media": "photo", "latitude": "0", "id": "7145639727", "tags": ""}, {"datetaken": "2012-05-06 00:22:59", "license": "1", "title": "Ferrum College Graduation 8", "text": "", "album_id": "72157629972234013", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5280/6999554288_ee0b40b2ac_o.jpg", "secret": "15fb86ffb8", "media": "photo", "latitude": "0", "id": "6999554288", "tags": ""}, {"datetaken": "2012-05-06 00:48:21", "license": "1", "title": "Ferrum College Graduation 15", "text": "", "album_id": "72157629972234013", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7199/7145639603_f96322784b_o.jpg", "secret": "33891815c0", "media": "photo", "latitude": "0", "id": "7145639603", "tags": ""}, {"datetaken": "2012-05-06 00:55:14", "license": "1", "title": "Ferrum College Graduation 14", "text": "", "album_id": "72157629972234013", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7097/6999553872_8d2ef7c11d_o.jpg", "secret": "da993001fa", "media": "photo", "latitude": "0", "id": "6999553872", "tags": ""}, {"datetaken": "2012-05-06 01:03:06", "license": "1", "title": "Ferrum College Graduation 16", "text": "", "album_id": "72157629972234013", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7225/7145639601_b950920db2_o.jpg", "secret": "57023d2061", "media": "photo", "latitude": "0", "id": "7145639601", "tags": ""}, {"datetaken": "2012-05-06 01:15:27", "license": "1", "title": "Ferrum College Graduation 17", "text": "", "album_id": "72157629972234013", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8160/7145639435_bc0b8d377f_o.jpg", "secret": "06ba484f0f", "media": "photo", "latitude": "0", "id": "7145639435", "tags": ""}, {"datetaken": "2012-05-06 01:55:42", "license": "1", "title": "Ferrum College Graduation 11", "text": "", "album_id": "72157629972234013", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7069/7145639887_a7c9a6dd6e_o.jpg", "secret": "34049a60e4", "media": "photo", "latitude": "0", "id": "7145639887", "tags": ""}, {"datetaken": "2012-05-06 01:57:12", "license": "1", "title": "Ferrum College Graduation 10", "text": "", "album_id": "72157629972234013", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5327/7145640029_a7d3d8846e_o.jpg", "secret": "81da93d32c", "media": "photo", "latitude": "0", "id": "7145640029", "tags": ""}, {"datetaken": "2012-05-06 01:59:01", "license": "1", "title": "Ferrum College Graduation 18", "text": "", "album_id": "72157629972234013", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7053/6999553640_b0f62a88bd_o.jpg", "secret": "e0691b6ccf", "media": "photo", "latitude": "0", "id": "6999553640", "tags": ""}, {"datetaken": "2012-05-29 09:56:10", "license": "4", "title": "120529-D-TT977-436", "text": "", "album_id": "72157629955722010", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8144/7296534086_4b3c4b4488_o.jpg", "secret": "6b348a6ca5", "media": "photo", "latitude": "0", "id": "7296534086", "tags": "usa commencement annapolis usna amos commissioning navalacademy annapolismd panetta mabus greenart mcneeley navymarinecorpsmemorialstadi"}, {"datetaken": "2012-05-29 10:30:45", "license": "4", "title": "120529-D-TT977-501", "text": "", "album_id": "72157629955722010", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7081/7296535188_34f9a6c025_o.jpg", "secret": "9f73c7c170", "media": "photo", "latitude": "0", "id": "7296535188", "tags": "usa commencement annapolis usna amos commissioning navalacademy annapolismd panetta mabus greenart mcneeley navymarinecorpsmemorialstadi"}, {"datetaken": "2012-05-29 10:55:42", "license": "4", "title": "120529-D-TT977-514", "text": "", "album_id": "72157629955722010", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8005/7296534576_3d1d24886d_o.jpg", "secret": "38afa31864", "media": "photo", "latitude": "0", "id": "7296534576", "tags": "usa commencement annapolis usna amos commissioning navalacademy annapolismd panetta mabus greenart mcneeley navymarinecorpsmemorialstadi"}, {"datetaken": "2012-05-29 11:00:59", "license": "4", "title": "120529-D-TT977-520", "text": "", "album_id": "72157629955722010", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7087/7296536108_8e39d1df76_o.jpg", "secret": "8c1656ffb1", "media": "photo", "latitude": "0", "id": "7296536108", "tags": "usa commencement annapolis usna amos commissioning navalacademy annapolismd panetta mabus greenart mcneeley navymarinecorpsmemorialstadi"}, {"datetaken": "2012-05-29 11:06:00", "license": "4", "title": "120529-D-TT977-548", "text": "", "album_id": "72157629955722010", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7244/7296538730_3a3ba00a8a_o.jpg", "secret": "07165a59fd", "media": "photo", "latitude": "0", "id": "7296538730", "tags": "usa commencement annapolis usna amos commissioning navalacademy annapolismd panetta mabus greenart mcneeley navymarinecorpsmemorialstadi"}, {"datetaken": "2012-05-29 11:21:50", "license": "4", "title": "120529-D-TT977-569", "text": "", "album_id": "72157629955722010", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7093/7296538108_6ea3ed5842_o.jpg", "secret": "97e3fb2b9e", "media": "photo", "latitude": "0", "id": "7296538108", "tags": "usa commencement annapolis usna amos commissioning navalacademy annapolismd panetta mabus greenart mcneeley navymarinecorpsmemorialstadi"}, {"datetaken": "2012-05-29 12:07:07", "license": "4", "title": "120529-D-TT977-606", "text": "", "album_id": "72157629955722010", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7223/7296536896_e508a6ed3c_o.jpg", "secret": "cb0a876f17", "media": "photo", "latitude": "0", "id": "7296536896", "tags": "usa commencement annapolis usna amos commissioning navalacademy annapolismd panetta mabus greenart mcneeley navymarinecorpsmemorialstadi"}, {"datetaken": "2012-05-29 12:17:48", "license": "4", "title": "120529-D-TT977-633", "text": "", "album_id": "72157629955722010", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7234/7296537334_7ff2c54500_o.jpg", "secret": "35c7cf116e", "media": "photo", "latitude": "0", "id": "7296537334", "tags": "usa commencement annapolis usna amos commissioning navalacademy annapolismd panetta mabus greenart mcneeley navymarinecorpsmemorialstadi"}, {"datetaken": "2012-05-29 12:25:13", "license": "4", "title": "120529-D-TT977-654", "text": "", "album_id": "72157629955722010", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7082/7296539512_c0fb5f77c1_o.jpg", "secret": "2c8233db2e", "media": "photo", "latitude": "0", "id": "7296539512", "tags": "usa commencement annapolis usna amos commissioning navalacademy annapolismd panetta mabus greenart mcneeley navymarinecorpsmemorialstadi"}, {"datetaken": "2012-05-29 12:25:50", "license": "4", "title": "120529-D-TT977-662", "text": "", "album_id": "72157629955722010", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7078/7296540374_9ecf0f33f3_o.jpg", "secret": "ff8d4e00c7", "media": "photo", "latitude": "0", "id": "7296540374", "tags": "usa commencement annapolis usna amos commissioning navalacademy annapolismd panetta mabus greenart mcneeley navymarinecorpsmemorialstadi"}, {"datetaken": "2012-05-29 12:38:04", "license": "4", "title": "120529-D-TT977-677", "text": "", "album_id": "72157629955722010", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7211/7296541670_4cd0a1eaa6_o.jpg", "secret": "298da6dd67", "media": "photo", "latitude": "0", "id": "7296541670", "tags": "usa commencement annapolis usna amos commissioning navalacademy annapolismd panetta mabus greenart mcneeley navymarinecorpsmemorialstadi"}, {"datetaken": "2012-05-31 10:03:15", "license": "5", "title": "120531-F-FR276-023", "text": "", "album_id": "72157630056039634", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7103/7340361878_f697a60f67_o.jpg", "secret": "d191a9e3fe", "media": "photo", "latitude": "0", "id": "7340361878", "tags": "afghanistan nato oef operationenduringfreedom spinboldak rscs cstca ansf afghannationalsecurityforces afghanborderpolice ntma natotrainingmission regionalsupportcommandsouth afghangraduation afghanistantransition reneecrisostomo kandaharprovincesouthernafgh kandaharprovincesouthernafghanistan"}, {"datetaken": "2012-05-31 10:03:51", "license": "5", "title": "120531-F-FR276-025", "text": "", "album_id": "72157630056039634", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7094/7155159873_4802e956a8_o.jpg", "secret": "ebefb79ce2", "media": "photo", "latitude": "0", "id": "7155159873", "tags": "afghanistan nato oef operationenduringfreedom spinboldak rscs cstca ansf afghannationalsecurityforces afghanborderpolice ntma natotrainingmission regionalsupportcommandsouth abpgraduation afghanistantransition reneecrisostomo kandaharprovincesouthernafgh kandaharprovincesouthernafghanistan"}, {"datetaken": "2012-05-31 10:09:01", "license": "5", "title": "120531-F-FR276-027", "text": "", "album_id": "72157630056039634", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8142/7340364440_9a7d037bb0_o.jpg", "secret": "f47a8644a7", "media": "photo", "latitude": "0", "id": "7340364440", "tags": "afghanistan nato oef operationenduringfreedom spinboldak rscs cstca ansf afghannationalsecurityforces afghanborderpolice ntma natotrainingmission regionalsupportcommandsouth abpgraduation afghanistantransition reneecrisostomo kandaharprovincesouthernafgh kandaharprovincesouthernafghanistan"}, {"datetaken": "2012-05-31 10:11:40", "license": "5", "title": "120531-F-FR276-029", "text": "", "album_id": "72157630056039634", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7217/7155162371_dd2923f38e_o.jpg", "secret": "2cea1fd5f3", "media": "photo", "latitude": "0", "id": "7155162371", "tags": "afghanistan nato oef operationenduringfreedom spinboldak rscs cstca ansf afghannationalsecurityforces afghanborderpolice ntma natotrainingmission regionalsupportcommandsouth abpgraduation afghanistantransition reneecrisostomo kandaharprovincesouthernafgh kandaharprovincesouthernafghanistan"}, {"datetaken": "2012-05-31 10:22:43", "license": "5", "title": "120531-F-FR276-046", "text": "", "album_id": "72157630056039634", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7086/7340366362_3465f701c1_o.jpg", "secret": "164869623d", "media": "photo", "latitude": "0", "id": "7340366362", "tags": "afghanistan nato oef operationenduringfreedom spinboldak rscs cstca ansf afghannationalsecurityforces afghanborderpolice ntma natotrainingmission regionalsupportcommandsouth abpgraduation abdulraziq afghanistantransition reneecrisostomo kandaharprovincesouthernafgh kandaharprovincesouthernafghanistan"}, {"datetaken": "2012-05-31 10:30:26", "license": "5", "title": "120531-F-FR276-055", "text": "", "album_id": "72157630056039634", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7105/7155164541_c42b8c93c6_o.jpg", "secret": "88e771dedb", "media": "photo", "latitude": "0", "id": "7155164541", "tags": "afghanistan nato oef operationenduringfreedom spinboldak rscs cstca ansf afghannationalsecurityforces afghanborderpolice ntma natotrainingmission regionalsupportcommandsouth abpgraduation afghanistantransition reneecrisostomo kandaharprovincesouthernafgh kandaharprovincesouthernafghanistan christiandupouy"}, {"datetaken": "2012-05-31 10:48:08", "license": "5", "title": "120531-F-FR276-058", "text": "", "album_id": "72157630056039634", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7232/7340367174_aa149baf40_o.jpg", "secret": "f5f7b8f6c3", "media": "photo", "latitude": "0", "id": "7340367174", "tags": "afghanistan nato oef operationenduringfreedom spinboldak rscs cstca ansf afghannationalsecurityforces afghanborderpolice ntma natotrainingmission regionalsupportcommandsouth abpgraduation afghanistantransition reneecrisostomo kandaharprovincesouthernafgh kandaharprovincesouthernafghanistan"}, {"datetaken": "2012-05-31 10:50:53", "license": "5", "title": "120531-F-FR276-023", "text": "", "album_id": "72157630056039634", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7218/7340368690_5554664a48_o.jpg", "secret": "deafa2ddeb", "media": "photo", "latitude": "0", "id": "7340368690", "tags": "afghanistan nato oef operationenduringfreedom spinboldak rscs cstca ansf afghannationalsecurityforces ntma natotrainingmission regionalsupportcommandsouth afghanistantransition reneecrisostomo kandaharprovincesouthernafgh kandaharprovincesouthernafghanistan"}, {"datetaken": "2012-05-31 10:51:04", "license": "5", "title": "120531-F-FR276-072", "text": "", "album_id": "72157630056039634", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7221/7340369856_81dde744a1_o.jpg", "secret": "a05386a9c6", "media": "photo", "latitude": "0", "id": "7340369856", "tags": "afghanistan nato oef operationenduringfreedom spinboldak rscs cstca ansf afghannationalsecurityforces ntma natotrainingmission regionalsupportcommandsouth afghanistantransition reneecrisostomo kandaharprovincesouthernafgh kandaharprovincesouthernafghanistan"}, {"datetaken": "2012-05-31 10:53:36", "license": "5", "title": "120531-F-Fr276-080", "text": "", "album_id": "72157630056039634", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7075/7340370522_bdd157bca4_o.jpg", "secret": "bc1eb03a8d", "media": "photo", "latitude": "0", "id": "7340370522", "tags": "afghanistan nato oef operationenduringfreedom spinboldak rscs cstca ansf afghannationalsecurityforces afghanborderpolice ntma natotrainingmission regionalsupportcommandsouth abpgraduation afghanistantransition reneecrisostomo kandaharprovincesouthernafgh kandaharprovincesouthernafghanistan"}, {"datetaken": "2012-05-31 11:15:29", "license": "5", "title": "120531-F-FR276-103", "text": "", "album_id": "72157630056039634", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7233/7340371720_4d3a22a04e_o.jpg", "secret": "5737c286fd", "media": "photo", "latitude": "0", "id": "7340371720", "tags": "afghanistan nato oef operationenduringfreedom spinboldak rscs cstca ansf afghannationalsecurityforces afghanborderpolice ntma natotrainingmission regionalsupportcommandsouth abpgraduation afghanistantransition reneecrisostomo kandaharprovincesouthernafgh kandaharprovincesouthernafghanistan"}, {"datetaken": "2012-06-08 12:50:17", "license": "6", "title": "DLE Class 18 graduation 01", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7087/7363625882_cfded1c9c0_o.jpg", "secret": "b125e2ba12", "media": "photo", "latitude": "0", "id": "7363625882", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:00:32", "license": "6", "title": "DLE Class 18 graduation 02", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7079/7178399635_8b5d4e9662_o.jpg", "secret": "ab80f22534", "media": "photo", "latitude": "0", "id": "7178399635", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:03:00", "license": "6", "title": "DLE Class 18 graduation 03", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7086/7363625612_13fc480b25_o.jpg", "secret": "ffdc7e44f5", "media": "photo", "latitude": "0", "id": "7363625612", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:04:42", "license": "6", "title": "DLE Class 18 graduation 04", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7215/7178399405_20385c987f_o.jpg", "secret": "0701ef677c", "media": "photo", "latitude": "0", "id": "7178399405", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:09:47", "license": "6", "title": "DLE Class 18 graduation 05", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7228/7178399297_1259608c25_o.jpg", "secret": "dd23f5903e", "media": "photo", "latitude": "0", "id": "7178399297", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:15:06", "license": "6", "title": "DLE Class 18 graduation 06", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7217/7363625198_158a4ae9e0_o.jpg", "secret": "1e36f9dc1c", "media": "photo", "latitude": "0", "id": "7363625198", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:18:32", "license": "6", "title": "DLE Class 18 graduation 07", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5320/7363625130_54dd96d1ea_o.jpg", "secret": "81a472f7d0", "media": "photo", "latitude": "0", "id": "7363625130", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:18:52", "license": "6", "title": "DLE Class 18 graduation 08", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7076/7178398967_029122cd59_o.jpg", "secret": "f43f59f54a", "media": "photo", "latitude": "0", "id": "7178398967", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:23:47", "license": "6", "title": "DLE Class 18 graduation 09", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7226/7363624888_18b427a2ff_o.jpg", "secret": "28091b1d6c", "media": "photo", "latitude": "0", "id": "7363624888", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:26:50", "license": "6", "title": "DLE Class 18 graduation 10", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7081/7363624778_6dd6c9e70b_o.jpg", "secret": "aaa66fca50", "media": "photo", "latitude": "0", "id": "7363624778", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:39:19", "license": "6", "title": "DLE Class 18 graduation 11", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7226/7178422669_e7187fbbc3_o.jpg", "secret": "9490e569e5", "media": "photo", "latitude": "0", "id": "7178422669", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:39:47", "license": "6", "title": "DLE Class 18 graduation 12", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7075/7178398491_6254b824b8_o.jpg", "secret": "4f90749684", "media": "photo", "latitude": "0", "id": "7178398491", "tags": "usa fish animals florida wildlife havana graduation le academy lawenforcement 2012 officers fwc class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:40:20", "license": "6", "title": "DLE Class 18 graduation 13", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7076/7178398387_d1fcbd855c_o.jpg", "secret": "a8441bcf8e", "media": "photo", "latitude": "0", "id": "7178398387", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:43:57", "license": "6", "title": "DLE Class 18 graduation 14", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7087/7363624240_54dff16bae_o.jpg", "secret": "6766a970b0", "media": "photo", "latitude": "0", "id": "7363624240", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:44:40", "license": "6", "title": "DLE Class 18 graduation 15", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5231/7178398021_2ee2dc8220_o.jpg", "secret": "c6221a1938", "media": "photo", "latitude": "0", "id": "7178398021", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:48:20", "license": "6", "title": "DLE Class 18 graduation 16", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7243/7178397959_ee44ddaa0d_o.jpg", "secret": "9786266ce0", "media": "photo", "latitude": "0", "id": "7178397959", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:52:19", "license": "6", "title": "DLE Class 18 graduation 17", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7238/7178397799_b350b336eb_o.jpg", "secret": "2e600d4e01", "media": "photo", "latitude": "0", "id": "7178397799", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:54:37", "license": "6", "title": "DLE Class 18 graduation 18", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7077/7363623786_f500e9a0af_o.jpg", "secret": "fa8512b66e", "media": "photo", "latitude": "0", "id": "7363623786", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 13:59:44", "license": "6", "title": "DLE Class 18 graduation 19", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7105/7178397621_7bc814da4c_o.jpg", "secret": "fcd4151220", "media": "photo", "latitude": "0", "id": "7178397621", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 14:05:51", "license": "6", "title": "DLE Class 18 graduation 20", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5117/7178397555_4f9c2549ef_o.jpg", "secret": "3005d53f97", "media": "photo", "latitude": "0", "id": "7178397555", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 14:13:27", "license": "6", "title": "DLE Class 18 graduation 21", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7211/7178397477_dc62ec0e4c_o.jpg", "secret": "0f52ecb612", "media": "photo", "latitude": "0", "id": "7178397477", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-06-08 14:23:50", "license": "6", "title": "DLE Class 18 graduation 22", "text": "", "album_id": "72157630107880142", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7092/7178397385_4f5e5e4518_o.jpg", "secret": "5f2dac7071", "media": "photo", "latitude": "0", "id": "7178397385", "tags": "usa fish animals florida wildlife havana graduation research le species endangered academy lawenforcement 2012 biologist officers fwc threatened class18 floridafishandwildlife myfwc myfwccom"}, {"datetaken": "2012-07-19 08:21:55", "license": "3", "title": "DSC09845", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8430/7605016084_4facb05c2d_o.jpg", "secret": "a7ffc2aefc", "media": "photo", "latitude": "0", "id": "7605016084", "tags": "london graduation royalfestivalhall 2012 collegeofcommunication photojuliekertesz nearthames londoncentre graduationceremonyofartschoolsinlondon aroundgraduation"}, {"datetaken": "2012-07-19 08:22:03", "license": "3", "title": "DSC09846", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8147/7605018800_e6701586a3_o.jpg", "secret": "08ffca9482", "media": "photo", "latitude": "0", "id": "7605018800", "tags": "london graduation royalfestivalhall 2012 collegeofcommunication photojuliekertesz nearthames londoncentre graduationceremonyofartschoolsinlondon aroundgraduation"}, {"datetaken": "2012-07-19 08:22:14", "license": "3", "title": "DSC09847", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8286/7605020802_f54072637f_o.jpg", "secret": "4ed26d6199", "media": "photo", "latitude": "0", "id": "7605020802", "tags": "london graduation royalfestivalhall 2012 collegeofcommunication photojuliekertesz nearthames londoncentre graduationceremonyofartschoolsinlondon aroundgraduation"}, {"datetaken": "2012-07-19 08:23:36", "license": "3", "title": "DSC09848", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8162/7605022920_394b1be6fb_o.jpg", "secret": "8ff58ece44", "media": "photo", "latitude": "0", "id": "7605022920", "tags": "london graduation royalfestivalhall 2012 collegeofcommunication photojuliekertesz nearthames londoncentre graduationceremonyofartschoolsinlondon aroundgraduation"}, {"datetaken": "2012-07-19 08:23:40", "license": "3", "title": "DSC09849", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8286/7605025214_b69fb61974_o.jpg", "secret": "61c7ff95d5", "media": "photo", "latitude": "0", "id": "7605025214", "tags": "london graduation royalfestivalhall 2012 collegeofcommunication photojuliekertesz nearthames londoncentre graduationceremonyofartschoolsinlondon aroundgraduation"}, {"datetaken": "2012-07-19 08:24:09", "license": "3", "title": "DSC09852", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8015/7605028986_e8eac076a5_o.jpg", "secret": "8005d232e0", "media": "photo", "latitude": "0", "id": "7605028986", "tags": "london graduation royalfestivalhall 2012 collegeofcommunication photojuliekertesz nearthames londoncentre graduationceremonyofartschoolsinlondon aroundgraduation"}, {"datetaken": "2012-07-19 08:24:21", "license": "3", "title": "DSC09854", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8288/7605038228_c842b40aef_o.jpg", "secret": "59c34f0347", "media": "photo", "latitude": "0", "id": "7605038228", "tags": "london graduation royalfestivalhall 2012 collegeofcommunication photojuliekertesz nearthames londoncentre graduationceremonyofartschoolsinlondon aroundgraduation"}, {"datetaken": "2012-07-19 08:24:21", "license": "3", "title": "DSC09854d", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8293/7605586246_2c7160cbee_o.jpg", "secret": "3c75743742", "media": "photo", "latitude": "0", "id": "7605586246", "tags": ""}, {"datetaken": "2012-07-19 08:24:30", "license": "3", "title": "Porte cl\u00e9s \"Londres\"", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7125/7605615692_65c73f6d9d_o.jpg", "secret": "1e7b9ff0d3", "media": "photo", "latitude": "0", "id": "7605615692", "tags": ""}, {"datetaken": "2012-07-19 08:24:46", "license": "3", "title": "DSC09857", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7262/7605026954_75d8c5179e_o.jpg", "secret": "077dd70986", "media": "photo", "latitude": "0", "id": "7605026954", "tags": "london graduation royalfestivalhall 2012 collegeofcommunication photojuliekertesz nearthames londoncentre graduationceremonyofartschoolsinlondon aroundgraduation"}, {"datetaken": "2012-07-19 08:24:50", "license": "3", "title": "DSC09858", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8167/7605030414_4b04896b63_o.jpg", "secret": "541384981f", "media": "photo", "latitude": "0", "id": "7605030414", "tags": "london graduation royalfestivalhall 2012 collegeofcommunication photojuliekertesz nearthames londoncentre graduationceremonyofartschoolsinlondon aroundgraduation"}, {"datetaken": "2012-07-19 08:27:31", "license": "3", "title": "DSC09859", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8156/7605033748_3c7efc980a_o.jpg", "secret": "8e8a4f8925", "media": "photo", "latitude": "0", "id": "7605033748", "tags": "london graduation royalfestivalhall 2012 collegeofcommunication photojuliekertesz nearthames londoncentre graduationceremonyofartschoolsinlondon aroundgraduation"}, {"datetaken": "2012-07-19 08:27:34", "license": "3", "title": "DSC09860", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8141/7605036064_b6b83ff1a2_o.jpg", "secret": "736ac3448c", "media": "photo", "latitude": "0", "id": "7605036064", "tags": "london graduation royalfestivalhall 2012 collegeofcommunication photojuliekertesz nearthames londoncentre graduationceremonyofartschoolsinlondon aroundgraduation"}, {"datetaken": "2012-07-19 08:29:28", "license": "3", "title": "DSC09864", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7267/7605042696_f3fff8d320_o.jpg", "secret": "ca2c8a48a2", "media": "photo", "latitude": "0", "id": "7605042696", "tags": "london graduation royalfestivalhall 2012 collegeofcommunication photojuliekertesz nearthames londoncentre graduationceremonyofartschoolsinlondon aroundgraduation"}, {"datetaken": "2012-07-19 08:32:30", "license": "3", "title": "From the foot bridge at Embarcadere", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7274/7605013664_4b74843999_o.jpg", "secret": "3ec64f02ee", "media": "photo", "latitude": "0", "id": "7605013664", "tags": "panorama london thames pier graduation july royalfestivalhall 2012 collegeofcommunication photojuliekertesz nearthames londoncentre graduationceremonyofartschoolsinlondon aroundgraduation"}, {"datetaken": "2012-07-19 08:33:23", "license": "3", "title": "DSC09866", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7113/7605032138_93540f69c6_o.jpg", "secret": "0351bbd5da", "media": "photo", "latitude": "0", "id": "7605032138", "tags": "london graduation royalfestivalhall 2012 collegeofcommunication photojuliekertesz nearthames londoncentre graduationceremonyofartschoolsinlondon aroundgraduation"}, {"datetaken": "2012-07-19 08:34:35", "license": "3", "title": "DSC09869", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8288/7605582080_3d8b63502b_o.jpg", "secret": "e26a48fc0d", "media": "photo", "latitude": "0", "id": "7605582080", "tags": ""}, {"datetaken": "2012-07-19 08:42:36", "license": "3", "title": "DSC09878", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8428/7605583766_02f0da5ec6_o.jpg", "secret": "a5f4db1295", "media": "photo", "latitude": "0", "id": "7605583766", "tags": ""}, {"datetaken": "2012-07-19 14:36:34", "license": "3", "title": "DSC09938", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8014/7605610994_f653d1107c_o.jpg", "secret": "61f77eb80e", "media": "photo", "latitude": "0", "id": "7605610994", "tags": ""}, {"datetaken": "2012-07-19 14:39:37", "license": "3", "title": "DSC09945", "text": "", "album_id": "72157630655378016", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8025/7605044992_34e2c11999_o.jpg", "secret": "6135e9e7c5", "media": "photo", "latitude": "0", "id": "7605044992", "tags": "london graduation royalfestivalhall 2012 collegeofcommunication photojuliekertesz nearthames londoncentre graduationceremonyofartschoolsinlondon aroundgraduation"}, {"datetaken": "1992-06-06 00:00:00", "license": "4", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3031/2762840297_f443039ba7_o.jpg", "secret": "b1be3f3424", "media": "photo", "latitude": "0", "id": "2762840297", "tags": "princeton 1992 reunions princetonband june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:01", "license": "4", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3260/2763679648_6f615314b7_o.jpg", "secret": "c04f34ced4", "media": "photo", "latitude": "0", "id": "2763679648", "tags": "princeton 1992 reunions princetonband june1992 dougn reunions1992"}, {"datetaken": "1992-06-06 00:00:02", "license": "4", "title": "Behind Bars", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3150/2763686018_f7ebfd3d80_o.jpg", "secret": "e25845b5f2", "media": "photo", "latitude": "0", "id": "2763686018", "tags": "janice princeton 1992 reunions princetonband june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:03", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4700837151_fc16af7961_o.jpg", "secret": "7390b305c8", "media": "photo", "latitude": "0", "id": "4700837151", "tags": "janice princeton 1992 reunions faved princetonband june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:04", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4701380124_20c790579a_o.jpg", "secret": "47c435324c", "media": "photo", "latitude": "0", "id": "4701380124", "tags": "blurry kim peter princeton 1992 reunions princetonband june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:05", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4701475930_f64170be59_o.jpg", "secret": "880d347e01", "media": "photo", "latitude": "0", "id": "4701475930", "tags": "princeton sue 1992 reunions prade princetonband june1992 reunions1992 justsue"}, {"datetaken": "1992-06-06 00:00:06", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4701384760_330fa21d55_o.jpg", "secret": "86f21fc157", "media": "photo", "latitude": "0", "id": "4701384760", "tags": "unicycle princeton 1992 reunions prade princetonband june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:07", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "-74.659888", "url_o": "https://farm5.staticflickr.com/4006/4701465416_d2859a92fd_o.jpg", "secret": "5364459de0", "media": "photo", "latitude": "40.349585", "id": "4701465416", "tags": "princeton 1992 reunions june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:08", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4700756623_25c87427dc_o.jpg", "secret": "19a0081839", "media": "photo", "latitude": "0", "id": "4700756623", "tags": "princeton 1992 natasha edb reunions lyle prade princetonband june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:09", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4700823945_d110990960_o.jpg", "secret": "fbc95ea553", "media": "photo", "latitude": "0", "id": "4700823945", "tags": "princeton 1992 reunions prade princetonband june1992 buttfurr reunions1992"}, {"datetaken": "1992-06-06 00:00:10", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4700760933_6c643cfda6_o.jpg", "secret": "12f7bee5d2", "media": "photo", "latitude": "0", "id": "4700760933", "tags": "princeton 1992 reunions prade june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:11", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4701460670_4419fda621_o.jpg", "secret": "4506abe419", "media": "photo", "latitude": "0", "id": "4701460670", "tags": "princeton 1992 edb reunions lyle prade princetonband june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:12", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4701397532_b4ef67da65_o.jpg", "secret": "70be4c3a7c", "media": "photo", "latitude": "0", "id": "4701397532", "tags": "princeton 1992 irwin reunions prade princetonband june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:13", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4700769117_eeb39aabd6_o.jpg", "secret": "1185394894", "media": "photo", "latitude": "0", "id": "4700769117", "tags": "princeton 1992 reunions prade june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:14", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4701405914_2f48336a8d_o.jpg", "secret": "b7a48482bc", "media": "photo", "latitude": "0", "id": "4701405914", "tags": "steve craig princeton 1992 rodney reunions maryc paulc june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:15", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4701410768_a538e8219c_o.jpg", "secret": "1604016d36", "media": "photo", "latitude": "0", "id": "4701410768", "tags": "rob craig princeton 1992 reunions june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:16", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4700782295_c67e4c89a6_o.jpg", "secret": "df37a53712", "media": "photo", "latitude": "0", "id": "4700782295", "tags": "antiquecar princeton 1992 reunions prade june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:17", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4701418720_429c7bd70b_o.jpg", "secret": "d1fb517750", "media": "photo", "latitude": "0", "id": "4701418720", "tags": "princeton 1992 reunions faved prade june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:18", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4700791073_60b0f3ffba_o.jpg", "secret": "5a9c59500f", "media": "photo", "latitude": "0", "id": "4700791073", "tags": "peter craig princeton sue 1992 natasha reunions princetonband june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:19", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4701428560_a46f1a579f_o.jpg", "secret": "356cb39ff8", "media": "photo", "latitude": "0", "id": "4701428560", "tags": "princeton 1992 reunions prade june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:20", "license": "1", "title": "A Real Live Tiger!", "text": "", "album_id": "72157606729818137", "longitude": "-74.658440", "url_o": "https://farm5.staticflickr.com/4043/4700803867_d1e4e2838b_o.jpg", "secret": "408265f8be", "media": "photo", "latitude": "40.346053", "id": "4700803867", "tags": "blurry tiger cage princeton 1992 reunions prade june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:21", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1279/4701439762_286947d09e_o.jpg", "secret": "c5aab1cbae", "media": "photo", "latitude": "0", "id": "4701439762", "tags": "princeton 1992 reunions prade june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:22", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1299/4701444374_15c642203c_o.jpg", "secret": "4ce3e53dde", "media": "photo", "latitude": "0", "id": "4701444374", "tags": "princeton 1992 rodney reunions prade june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:23", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4701448814_8d79b66875_o.jpg", "secret": "579c3c651e", "media": "photo", "latitude": "0", "id": "4701448814", "tags": "steve rob craig princeton 1992 reunions prade june1992 reunions1992"}, {"datetaken": "1992-06-06 00:00:24", "license": "1", "title": "Reunions 1992", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4701452912_2f3e9a61a1_o.jpg", "secret": "dcf77a743c", "media": "photo", "latitude": "0", "id": "4701452912", "tags": "steve princeton 1992 rodney reunions prade june1992 reunions1992"}, {"datetaken": "1992-06-07 00:00:00", "license": "1", "title": "Graduation Party", "text": "", "album_id": "72157606729818137", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4700744121_4698080acd_o.jpg", "secret": "8cdc6f703a", "media": "photo", "latitude": "0", "id": "4700744121", "tags": "janice peter princeton 1992 natasha reunions june1992 reunions1992"}, {"datetaken": "2010-05-14 19:10:20", "license": "4", "title": "DSC_5353", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1222/4610277492_2fe613603a_o.jpg", "secret": "8e270ee5cc", "media": "photo", "latitude": "0", "id": "4610277492", "tags": "graduation commencement tulane 2010"}, {"datetaken": "2010-05-14 19:36:38", "license": "4", "title": "Anderson Cooper & Tim Clinton", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3334/4610279984_4656a897f7_o.jpg", "secret": "267857f3c6", "media": "photo", "latitude": "0", "id": "4610279984", "tags": "graduation commencement tulane 2010"}, {"datetaken": "2010-05-14 19:39:54", "license": "4", "title": "", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3397/4610280390_e48effd44a_o.jpg", "secret": "315b51d16c", "media": "photo", "latitude": "0", "id": "4610280390", "tags": "graduation commencement tulane 2010"}, {"datetaken": "2010-05-14 20:12:05", "license": "4", "title": "Tulane graduates", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1154/4609674341_d332660b35_o.jpg", "secret": "580839453b", "media": "photo", "latitude": "0", "id": "4609674341", "tags": "graduation commencement tulane 2010"}, {"datetaken": "2010-05-14 20:12:26", "license": "4", "title": "Tulane graduates", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4609674755_31941ce4d1_o.jpg", "secret": "6aaaa6f40c", "media": "photo", "latitude": "0", "id": "4609674755", "tags": "graduation commencement tulane 2010"}, {"datetaken": "2010-05-14 20:48:47", "license": "4", "title": "Tulane graduates", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1001/4610340184_d501d6b522_o.jpg", "secret": "f6d435e8ae", "media": "photo", "latitude": "0", "id": "4610340184", "tags": "graduation commencement tulane 2010"}, {"datetaken": "2010-05-14 21:20:26", "license": "4", "title": "Platform Party", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4609731791_53d35316db_o.jpg", "secret": "fe950fc144", "media": "photo", "latitude": "0", "id": "4609731791", "tags": "graduation commencement tulane 2010 andersoncooper"}, {"datetaken": "2010-05-14 21:54:00", "license": "4", "title": "Tulane graduates", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3194/4609736799_0b8878d653_o.jpg", "secret": "55ab220a50", "media": "photo", "latitude": "0", "id": "4609736799", "tags": "graduation commencement tulane 2010"}, {"datetaken": "2010-05-15 00:06:02", "license": "4", "title": "Tulane graduate and family", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1324/4609790085_cb4622ce09_o.jpg", "secret": "dea641c695", "media": "photo", "latitude": "0", "id": "4609790085", "tags": "graduation commencement tulane 2010"}, {"datetaken": "2010-05-15 09:33:17", "license": "4", "title": "Anderson Cooper and Scott Cowen", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3583/4609790831_06a5ed6715_o.jpg", "secret": "ff52f1504a", "media": "photo", "latitude": "0", "id": "4609790831", "tags": "graduation commencement tulane 2010 andersoncooper scottcowen"}, {"datetaken": "2010-05-15 09:33:51", "license": "4", "title": "Platform Party Members", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4610401388_3ae4b2b993_o.jpg", "secret": "26de6d3f91", "media": "photo", "latitude": "0", "id": "4610401388", "tags": "graduation commencement tulane 2010 andersoncooper scottcowen geoffreycanada"}, {"datetaken": "2010-05-15 09:45:01", "license": "4", "title": "Scott Cowen", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1275/4609793489_b341083927_o.jpg", "secret": "e811539101", "media": "photo", "latitude": "0", "id": "4609793489", "tags": "graduation commencement tulane 2010 scottcowen"}, {"datetaken": "2010-05-15 09:50:01", "license": "4", "title": "Tulane graduate in Who Dat cap", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3399/4610403252_abc52ba2a3_o.jpg", "secret": "49f7fe1f64", "media": "photo", "latitude": "0", "id": "4610403252", "tags": "graduation commencement whodat tulane 2010"}, {"datetaken": "2010-05-15 09:53:12", "license": "4", "title": "Student Speaker Tim Clinton", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3414/4610404184_c25e6d3222_o.jpg", "secret": "6edea9c5f7", "media": "photo", "latitude": "0", "id": "4610404184", "tags": "graduation commencement tulane 2010 timclinton"}, {"datetaken": "2010-05-15 10:05:10", "license": "4", "title": "Geoffrey Canada", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4610405826_bb3c290841_o.jpg", "secret": "aa0292739e", "media": "photo", "latitude": "0", "id": "4610405826", "tags": "graduation commencement tulane 2010 geoffreycanada"}, {"datetaken": "2010-05-15 10:09:14", "license": "4", "title": "Anderson Cooper", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4610485910_6f73fd7289_o.jpg", "secret": "b47260c0f2", "media": "photo", "latitude": "0", "id": "4610485910", "tags": "graduation commencement tulane 2010 andersoncooper"}, {"datetaken": "2010-05-15 10:26:49", "license": "4", "title": "Nghana Lewis", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4609884059_9c962d5bfd_o.jpg", "secret": "dabc9ca528", "media": "photo", "latitude": "0", "id": "4609884059", "tags": "graduation commencement tulane 2010 nghanalewis"}, {"datetaken": "2010-05-15 10:32:41", "license": "4", "title": "Tulane graduates", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1119/4609885541_785814b1c5_o.jpg", "secret": "1543c6ee74", "media": "photo", "latitude": "0", "id": "4609885541", "tags": "graduation commencement tulane 2010"}, {"datetaken": "2010-05-15 10:35:54", "license": "4", "title": "Wanda Rouzan", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1241/4610494744_379e5cf5fa_o.jpg", "secret": "464724a56d", "media": "photo", "latitude": "0", "id": "4610494744", "tags": "graduation commencement tulane 2010 wandarouzan"}, {"datetaken": "2010-05-15 10:57:23", "license": "4", "title": "Fleur de Lis Mortarboard", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3309/4609887683_afed3610db_o.jpg", "secret": "c95acc5def", "media": "photo", "latitude": "0", "id": "4609887683", "tags": "fleur graduation mortarboard cap commencement tulane 2010"}, {"datetaken": "2010-05-15 11:38:29", "license": "4", "title": "DSC_8509", "text": "", "album_id": "72157623931145387", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1239/4609964679_c426530676_o.jpg", "secret": "bb11972edb", "media": "photo", "latitude": "0", "id": "4609964679", "tags": ""}, {"datetaken": "2011-12-17 10:36:41", "license": "1", "title": "Monica's Graduation", "text": "", "album_id": "72157628461758115", "longitude": "-87.393922", "url_o": "https://farm8.staticflickr.com/7023/6528475593_460e934b8e_o.jpg", "secret": "3859ee2d5b", "media": "photo", "latitude": "46.560601", "id": "6528475593", "tags": "school michigan graduation ceremony marquette nmu northernmichiganuniversity danbruell"}, {"datetaken": "2011-12-17 10:36:42", "license": "1", "title": "Monica's Graduation", "text": "", "album_id": "72157628461758115", "longitude": "-87.393922", "url_o": "https://farm8.staticflickr.com/7149/6528479039_7b8c829776_o.jpg", "secret": "371cc57aed", "media": "photo", "latitude": "46.560601", "id": "6528479039", "tags": "school michigan graduation ceremony marquette nmu northernmichiganuniversity danbruell"}, {"datetaken": "2011-12-17 11:51:42", "license": "1", "title": "Monica's Graduation", "text": "", "album_id": "72157628461758115", "longitude": "-87.393922", "url_o": "https://farm8.staticflickr.com/7164/6528482667_7843a8890e_o.jpg", "secret": "d921a7db31", "media": "photo", "latitude": "46.560601", "id": "6528482667", "tags": "school michigan graduation ceremony marquette nmu northernmichiganuniversity danbruell"}, {"datetaken": "2011-12-17 12:25:47", "license": "1", "title": "Monica's Graduation", "text": "", "album_id": "72157628461758115", "longitude": "-87.393922", "url_o": "https://farm8.staticflickr.com/7167/6528483481_6bb30f18f2_o.jpg", "secret": "706167fe9a", "media": "photo", "latitude": "46.560601", "id": "6528483481", "tags": "school michigan graduation ceremony marquette nmu northernmichiganuniversity danbruell"}, {"datetaken": "2011-12-17 12:25:49", "license": "1", "title": "Monica's Graduation", "text": "", "album_id": "72157628461758115", "longitude": "-87.393922", "url_o": "https://farm8.staticflickr.com/7155/6528486735_5f003a4cb3_o.jpg", "secret": "3a2893d1b1", "media": "photo", "latitude": "46.560601", "id": "6528486735", "tags": "school michigan graduation ceremony marquette nmu northernmichiganuniversity danbruell"}, {"datetaken": "2011-12-17 12:32:39", "license": "1", "title": "Monica's Graduation", "text": "", "album_id": "72157628461758115", "longitude": "-87.393922", "url_o": "https://farm8.staticflickr.com/7034/6528489029_458ace0895_o.jpg", "secret": "60b8366f69", "media": "photo", "latitude": "46.560601", "id": "6528489029", "tags": "school michigan graduation ceremony marquette nmu northernmichiganuniversity danbruell"}, {"datetaken": "2011-12-17 12:36:53", "license": "1", "title": "Monica's Graduation", "text": "", "album_id": "72157628461758115", "longitude": "-87.393922", "url_o": "https://farm8.staticflickr.com/7170/6528490095_c3a5c5e81d_o.jpg", "secret": "b812e5bb68", "media": "photo", "latitude": "46.560601", "id": "6528490095", "tags": "school michigan graduation ceremony marquette nmu northernmichiganuniversity danbruell"}, {"datetaken": "2011-12-17 12:38:02", "license": "1", "title": "Monica's Graduation", "text": "", "album_id": "72157628461758115", "longitude": "-87.393922", "url_o": "https://farm8.staticflickr.com/7016/6528492085_c499de9af4_o.jpg", "secret": "d68c053b65", "media": "photo", "latitude": "46.560601", "id": "6528492085", "tags": "school michigan graduation ceremony marquette nmu northernmichiganuniversity danbruell"}, {"datetaken": "2011-12-17 12:39:38", "license": "1", "title": "Monica's Graduation", "text": "", "album_id": "72157628461758115", "longitude": "-87.393922", "url_o": "https://farm8.staticflickr.com/7031/6528493093_b988d599c5_o.jpg", "secret": "88dee6e956", "media": "photo", "latitude": "46.560601", "id": "6528493093", "tags": "school michigan graduation ceremony marquette nmu northernmichiganuniversity danbruell"}, {"datetaken": "2011-12-17 12:39:56", "license": "1", "title": "Monica's Graduation", "text": "", "album_id": "72157628461758115", "longitude": "-87.393922", "url_o": "https://farm8.staticflickr.com/7166/6528495685_60e5522dae_o.jpg", "secret": "b9d7f8e686", "media": "photo", "latitude": "46.560601", "id": "6528495685", "tags": "school michigan graduation ceremony marquette nmu northernmichiganuniversity danbruell"}, {"datetaken": "2011-12-17 12:39:59", "license": "1", "title": "Monica's Graduation", "text": "", "album_id": "72157628461758115", "longitude": "-87.393922", "url_o": "https://farm8.staticflickr.com/7174/6528498135_86e2f51db6_o.jpg", "secret": "16b8d85860", "media": "photo", "latitude": "46.560601", "id": "6528498135", "tags": "school michigan graduation ceremony marquette nmu northernmichiganuniversity danbruell"}, {"datetaken": "2011-12-17 12:40:36", "license": "1", "title": "Monica's Graduation", "text": "", "album_id": "72157628461758115", "longitude": "-87.393922", "url_o": "https://farm8.staticflickr.com/7149/6528499567_ca42d8ed36_o.jpg", "secret": "cd163a485a", "media": "photo", "latitude": "46.560601", "id": "6528499567", "tags": "school michigan graduation ceremony marquette nmu northernmichiganuniversity danbruell"}, {"datetaken": "2011-12-17 12:41:01", "license": "1", "title": "Monica's Graduation", "text": "", "album_id": "72157628461758115", "longitude": "-87.393922", "url_o": "https://farm8.staticflickr.com/7030/6528500229_8064363957_o.jpg", "secret": "9a8f71d3e5", "media": "photo", "latitude": "46.560601", "id": "6528500229", "tags": "school michigan graduation ceremony marquette nmu northernmichiganuniversity danbruell"}, {"datetaken": "2011-12-17 14:19:23", "license": "1", "title": "Char setting up chocolate treats", "text": "", "album_id": "72157628461758115", "longitude": "-87.403333", "url_o": "https://farm8.staticflickr.com/7034/6535561225_2d2725c764_o.jpg", "secret": "1e6d7fa853", "media": "photo", "latitude": "46.563167", "id": "6535561225", "tags": "party cookies charlotte michigan graduation char marquette nmu danbruell"}, {"datetaken": "2010-06-27 19:04:34", "license": "4", "title": "Glasses", "text": "", "album_id": "72157624254024981", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4742871035_cceb287ee6_o.jpg", "secret": "386616c03f", "media": "photo", "latitude": "0", "id": "4742871035", "tags": "birthday party glasses wine hellokitty graduation 18th cups cotillion debut picturebooth krystledario"}, {"datetaken": "2010-06-27 19:15:08", "license": "4", "title": "Darren & Dan", "text": "", "album_id": "72157624254024981", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4742886605_54dc98268b_o.jpg", "secret": "500d49f289", "media": "photo", "latitude": "0", "id": "4742886605", "tags": "birthday party hellokitty graduation 18th cotillion debut picturebooth krystledario"}, {"datetaken": "2010-06-27 19:16:11", "license": "4", "title": "Krystle & Jerahmeel", "text": "", "album_id": "72157624254024981", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4742904699_d58e0eca43_o.jpg", "secret": "4078938706", "media": "photo", "latitude": "0", "id": "4742904699", "tags": "birthday party hellokitty graduation 18th cotillion debut picturebooth krystledario"}, {"datetaken": "2010-06-27 19:18:43", "license": "4", "title": "Darren, Dan, Kim & Gabe", "text": "", "album_id": "72157624254024981", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4742913421_0a59f8c725_o.jpg", "secret": "28197404a3", "media": "photo", "latitude": "0", "id": "4742913421", "tags": "birthday party hellokitty graduation 18th cotillion debut picturebooth krystledario"}, {"datetaken": "2010-06-27 19:27:29", "license": "4", "title": "Blue Hair Miggs", "text": "", "album_id": "72157624254024981", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4742924965_3e528a8d31_o.jpg", "secret": "892e5b05ab", "media": "photo", "latitude": "0", "id": "4742924965", "tags": "birthday costumes party hellokitty graduation 18th wigs cotillion debut picturebooth krystledario"}, {"datetaken": "2010-06-27 20:40:15", "license": "4", "title": "Fly Soup", "text": "", "album_id": "72157624254024981", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4743579546_7dde41699d_o.jpg", "secret": "ff4405afbe", "media": "photo", "latitude": "0", "id": "4743579546", "tags": "birthday party soup hellokitty graduation insects 18th bugs flies bowls cotillion debut picturebooth krystledario flysoup"}, {"datetaken": "2010-06-28 12:12:03", "license": "4", "title": "Dominic", "text": "", "album_id": "72157624254024981", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4742951367_2c8c7fe1df_o.jpg", "secret": "7c3446eaa6", "media": "photo", "latitude": "0", "id": "4742951367", "tags": "birthday party hellokitty graduation 18th cotillion debut picturebooth krystledario"}, {"datetaken": "2010-06-28 12:12:20", "license": "4", "title": "Jericho, Miggs & Dominic", "text": "", "album_id": "72157624254024981", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4742949939_ddb8e3a064_o.jpg", "secret": "50a1362973", "media": "photo", "latitude": "0", "id": "4742949939", "tags": "birthday party hellokitty graduation 18th cotillion debut picturebooth krystledario"}, {"datetaken": "2010-06-28 12:12:33", "license": "4", "title": "Ambrose, Dan, Darren, Jerhameel, Gabe, Brandon & Jericho", "text": "", "album_id": "72157624254024981", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4743585652_ccc233e41f_o.jpg", "secret": "04cf94cc58", "media": "photo", "latitude": "0", "id": "4743585652", "tags": "birthday party hellokitty graduation 18th cotillion debut picturebooth krystledario"}, {"datetaken": "2010-06-28 12:12:44", "license": "4", "title": "Dan, Darren, Miggs, Dillan, Jerahmeel & Jericho", "text": "", "album_id": "72157624254024981", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4742947139_ebfbcebd4e_o.jpg", "secret": "1e13bf1798", "media": "photo", "latitude": "0", "id": "4742947139", "tags": "birthday party hellokitty graduation 18th cotillion debut picturebooth krystledario"}, {"datetaken": "2010-06-28 12:12:54", "license": "4", "title": "Jericho", "text": "", "album_id": "72157624254024981", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4743582646_f629c27127_o.jpg", "secret": "730a9d5b69", "media": "photo", "latitude": "0", "id": "4743582646", "tags": "birthday party hellokitty graduation 18th cotillion debut picturebooth krystledario"}, {"datetaken": "2010-06-28 12:13:03", "license": "4", "title": "Jericho, Miggs & Dominic", "text": "", "album_id": "72157624254024981", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4743580926_7e5e85c24c_o.jpg", "secret": "4f00729944", "media": "photo", "latitude": "0", "id": "4743580926", "tags": "birthday party hellokitty graduation 18th cotillion debut picturebooth krystledario"}, {"datetaken": "2012-05-19 15:50:17", "license": "5", "title": "LU2Y7302", "text": "", "album_id": "72157629960452550", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7085/7298574134_37706d9887_o.jpg", "secret": "6ca5eba091", "media": "photo", "latitude": "0", "id": "7298574134", "tags": "family friends party lake beer boat eric wine graduation chips watersports dip 81disasters"}, {"datetaken": "2012-05-19 15:50:27", "license": "5", "title": "LU2Y7304", "text": "", "album_id": "72157629960452550", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7221/7298576160_53c180f691_o.jpg", "secret": "9febdc34a9", "media": "photo", "latitude": "0", "id": "7298576160", "tags": "family friends party lake beer boat eric wine graduation chips watersports dip 81disasters"}, {"datetaken": "2012-05-19 15:52:27", "license": "5", "title": "LU2Y7308", "text": "", "album_id": "72157629960452550", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7228/7298577446_2cd98f481f_o.jpg", "secret": "7e4a2d4808", "media": "photo", "latitude": "0", "id": "7298577446", "tags": "family friends party lake beer boat eric wine graduation chips watersports dip 81disasters"}, {"datetaken": "2012-05-19 15:55:22", "license": "5", "title": "LU2Y7309", "text": "", "album_id": "72157629960452550", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7080/7298579360_2389330e60_o.jpg", "secret": "f0af916071", "media": "photo", "latitude": "0", "id": "7298579360", "tags": "family friends party lake beer boat eric wine graduation chips watersports dip 81disasters"}, {"datetaken": "2012-05-19 17:23:21", "license": "5", "title": "LU2Y7314", "text": "", "album_id": "72157629960452550", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7075/7298581320_fea823ec27_o.jpg", "secret": "079c05e8bb", "media": "photo", "latitude": "0", "id": "7298581320", "tags": "family friends party lake beer boat eric wine graduation chips watersports dip 81disasters"}, {"datetaken": "2012-05-19 17:24:43", "license": "5", "title": "LU2Y7315-2", "text": "", "album_id": "72157629960452550", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8009/7298583428_c3a073d64a_o.jpg", "secret": "b0b314368a", "media": "photo", "latitude": "0", "id": "7298583428", "tags": "family friends party lake beer boat eric wine graduation chips watersports dip 81disasters"}, {"datetaken": "2012-05-19 17:24:43", "license": "5", "title": "LU2Y7315", "text": "", "album_id": "72157629960452550", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7214/7298585636_c014114aef_o.jpg", "secret": "878f389c3a", "media": "photo", "latitude": "0", "id": "7298585636", "tags": "family friends party lake beer boat eric wine graduation chips watersports dip 81disasters"}, {"datetaken": "2012-05-19 17:25:11", "license": "5", "title": "LU2Y7319", "text": "", "album_id": "72157629960452550", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7073/7298587690_5cb44a2bf0_o.jpg", "secret": "4055b9866c", "media": "photo", "latitude": "0", "id": "7298587690", "tags": "family friends party lake beer boat eric wine graduation chips watersports dip 81disasters"}, {"datetaken": "2012-05-19 17:26:52", "license": "5", "title": "LU2Y7320-2", "text": "", "album_id": "72157629960452550", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7215/7298589158_4fd3ba69c0_o.jpg", "secret": "49e9026c24", "media": "photo", "latitude": "0", "id": "7298589158", "tags": "family friends party lake beer boat eric wine graduation chips watersports dip 81disasters"}, {"datetaken": "2012-05-19 17:26:52", "license": "5", "title": "LU2Y7320", "text": "", "album_id": "72157629960452550", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7237/7298590330_a163911e9c_o.jpg", "secret": "01bf08008d", "media": "photo", "latitude": "0", "id": "7298590330", "tags": "family friends party lake beer boat eric wine graduation chips watersports dip 81disasters"}, {"datetaken": "2012-05-19 17:26:56", "license": "5", "title": "LU2Y7321", "text": "", "album_id": "72157629960452550", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7221/7298593624_7b6daf0b7d_o.jpg", "secret": "64ebacbc84", "media": "photo", "latitude": "0", "id": "7298593624", "tags": "family friends party lake beer boat eric wine graduation chips watersports dip 81disasters"}, {"datetaken": "2012-05-19 17:27:12", "license": "5", "title": "LU2Y7323", "text": "", "album_id": "72157629960452550", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7227/7298596088_987b4e3dbf_o.jpg", "secret": "b5e65218b8", "media": "photo", "latitude": "0", "id": "7298596088", "tags": "family friends party lake beer boat eric wine graduation chips watersports dip 81disasters"}, {"datetaken": "2012-05-19 21:33:30", "license": "5", "title": "LU2Y7330", "text": "", "album_id": "72157629960452550", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7235/7298599220_82dfea1a4b_o.jpg", "secret": "755dd0da9f", "media": "photo", "latitude": "0", "id": "7298599220", "tags": "family friends party lake beer boat eric wine graduation chips watersports dip 81disasters"}, {"datetaken": "2012-05-19 21:41:00", "license": "5", "title": "IMGP7521", "text": "", "album_id": "72157629960452550", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7237/7298601850_2f9d6689f7_o.jpg", "secret": "8f04be000e", "media": "photo", "latitude": "0", "id": "7298601850", "tags": "family friends party lake beer boat eric wine graduation chips watersports dip 81disasters"}, {"datetaken": "2012-05-31 19:57:46", "license": "4", "title": "Eleni Graduation Party - 01", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8163/7321398408_4183af0033_o.jpg", "secret": "5131caba03", "media": "photo", "latitude": "0", "id": "7321398408", "tags": ""}, {"datetaken": "2012-05-31 19:58:11", "license": "4", "title": "Eleni Graduation Party - 02", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7212/7321399146_a76833de92_o.jpg", "secret": "351c52e115", "media": "photo", "latitude": "0", "id": "7321399146", "tags": ""}, {"datetaken": "2012-05-31 19:58:32", "license": "4", "title": "Eleni Graduation Party - 03", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7072/7321400152_0cf07b7a42_o.jpg", "secret": "04554cab5a", "media": "photo", "latitude": "0", "id": "7321400152", "tags": ""}, {"datetaken": "2012-05-31 19:59:30", "license": "4", "title": "Eleni Graduation Party - 04", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7080/7321400858_e4d0b84249_o.jpg", "secret": "d36d546a72", "media": "photo", "latitude": "0", "id": "7321400858", "tags": ""}, {"datetaken": "2012-05-31 19:59:48", "license": "4", "title": "Eleni Graduation Party - 05", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7087/7321401458_4445a47251_o.jpg", "secret": "d6f0d38706", "media": "photo", "latitude": "0", "id": "7321401458", "tags": ""}, {"datetaken": "2012-05-31 20:00:06", "license": "4", "title": "Eleni Graduation Party - 06", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7215/7321402912_980457e0dd_o.jpg", "secret": "512a640cfd", "media": "photo", "latitude": "0", "id": "7321402912", "tags": ""}, {"datetaken": "2012-05-31 20:00:43", "license": "4", "title": "Eleni Graduation Party - 07", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7218/7321403720_9bd5cc959b_o.jpg", "secret": "2c6293d6db", "media": "photo", "latitude": "0", "id": "7321403720", "tags": ""}, {"datetaken": "2012-05-31 20:00:50", "license": "4", "title": "Eleni Graduation Party - 08", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8004/7321404452_96ac172d26_o.jpg", "secret": "1eb2c1803b", "media": "photo", "latitude": "0", "id": "7321404452", "tags": ""}, {"datetaken": "2012-05-31 20:01:02", "license": "4", "title": "Eleni Graduation Party - 09", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8163/7321405276_282ccb10c9_o.jpg", "secret": "8c2af0bac3", "media": "photo", "latitude": "0", "id": "7321405276", "tags": ""}, {"datetaken": "2012-05-31 20:01:14", "license": "4", "title": "Eleni Graduation Party - 10", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8154/7321406104_000eac4ab6_o.jpg", "secret": "1d37a17b17", "media": "photo", "latitude": "0", "id": "7321406104", "tags": ""}, {"datetaken": "2012-05-31 20:01:50", "license": "4", "title": "Eleni Graduation Party - 11", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8156/7321407100_4ffb92a6cc_o.jpg", "secret": "4fafcc3eb2", "media": "photo", "latitude": "0", "id": "7321407100", "tags": ""}, {"datetaken": "2012-05-31 20:02:14", "license": "4", "title": "Eleni Graduation Party - 12", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7090/7321407970_69e8b6c382_o.jpg", "secret": "1c4ca98bc6", "media": "photo", "latitude": "0", "id": "7321407970", "tags": ""}, {"datetaken": "2012-05-31 20:02:17", "license": "4", "title": "Eleni Graduation Party - 13", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8002/7321408600_cea8ef6877_o.jpg", "secret": "dff8870cf7", "media": "photo", "latitude": "0", "id": "7321408600", "tags": ""}, {"datetaken": "2012-05-31 20:03:08", "license": "4", "title": "Eleni Graduation Party - 14", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7098/7321409400_24c043b315_o.jpg", "secret": "d8db063abb", "media": "photo", "latitude": "0", "id": "7321409400", "tags": ""}, {"datetaken": "2012-05-31 20:03:11", "license": "4", "title": "Eleni Graduation Party - 15", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7234/7321410058_2dfa8e16e2_o.jpg", "secret": "27b34cda5c", "media": "photo", "latitude": "0", "id": "7321410058", "tags": ""}, {"datetaken": "2012-05-31 20:04:02", "license": "4", "title": "Eleni Graduation Party - 16", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7078/7321410962_76dfbb0509_o.jpg", "secret": "84d3c1d008", "media": "photo", "latitude": "0", "id": "7321410962", "tags": ""}, {"datetaken": "2012-05-31 20:04:26", "license": "4", "title": "Eleni Graduation Party - 17", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7226/7321411580_b7de10239b_o.jpg", "secret": "306d5239b1", "media": "photo", "latitude": "0", "id": "7321411580", "tags": ""}, {"datetaken": "2012-05-31 20:04:48", "license": "4", "title": "Eleni Graduation Party - 18", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7090/7321412260_555667cddb_o.jpg", "secret": "71be747f67", "media": "photo", "latitude": "0", "id": "7321412260", "tags": ""}, {"datetaken": "2012-05-31 20:05:07", "license": "4", "title": "Eleni Graduation Party - 19", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7098/7321413168_51288ca5f0_o.jpg", "secret": "78467335e0", "media": "photo", "latitude": "0", "id": "7321413168", "tags": ""}, {"datetaken": "2012-05-31 20:05:48", "license": "4", "title": "Eleni Graduation Party - 20", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7088/7321413782_8de341b4c5_o.jpg", "secret": "f64018d48c", "media": "photo", "latitude": "0", "id": "7321413782", "tags": ""}, {"datetaken": "2012-05-31 20:31:07", "license": "4", "title": "Eleni Graduation Party - 21", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7097/7321414932_269f4840e8_o.jpg", "secret": "0ce63803e0", "media": "photo", "latitude": "0", "id": "7321414932", "tags": ""}, {"datetaken": "2012-05-31 20:47:35", "license": "4", "title": "Eleni Graduation Party - 22", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7088/7321415840_cf3464b2ac_o.jpg", "secret": "028e32d9a5", "media": "photo", "latitude": "0", "id": "7321415840", "tags": ""}, {"datetaken": "2012-05-31 20:47:41", "license": "4", "title": "Eleni Graduation Party - 23", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8149/7321416688_c4083a2fb9_o.jpg", "secret": "a48b5568b8", "media": "photo", "latitude": "0", "id": "7321416688", "tags": ""}, {"datetaken": "2012-05-31 20:58:32", "license": "4", "title": "Eleni Graduation Party - 24", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7217/7321417504_231700bc6b_o.jpg", "secret": "406436e90a", "media": "photo", "latitude": "0", "id": "7321417504", "tags": ""}, {"datetaken": "2012-05-31 21:56:45", "license": "4", "title": "Eleni Graduation Party - 25", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7101/7321418320_ef853386f7_o.jpg", "secret": "3a8750ba16", "media": "photo", "latitude": "0", "id": "7321418320", "tags": ""}, {"datetaken": "2012-05-31 21:56:53", "license": "4", "title": "Eleni Graduation Party - 26", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7239/7321419064_6e807aabf8_o.jpg", "secret": "b3489c1d6c", "media": "photo", "latitude": "0", "id": "7321419064", "tags": ""}, {"datetaken": "2012-05-31 21:57:09", "license": "4", "title": "Eleni Graduation Party - 27", "text": "", "album_id": "72157630013916068", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7091/7321419904_300b31eeb7_o.jpg", "secret": "41ffa72369", "media": "photo", "latitude": "0", "id": "7321419904", "tags": ""}, {"datetaken": "2012-05-24 19:33:28", "license": "4", "title": "Mary", "text": "", "album_id": "72157631041082404", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7274/7770229444_b9e9d5bf1f_o.jpg", "secret": "63da58cabf", "media": "photo", "latitude": "0", "id": "7770229444", "tags": "school alaska high graduation valdez"}, {"datetaken": "2012-05-24 19:33:52", "license": "4", "title": "Lucy", "text": "", "album_id": "72157631041082404", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8286/7770203026_e995edec13_o.jpg", "secret": "536c100629", "media": "photo", "latitude": "0", "id": "7770203026", "tags": "school alaska high graduation valdez"}, {"datetaken": "2012-05-24 19:40:43", "license": "4", "title": "Shoney", "text": "", "album_id": "72157631041082404", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7136/7770137708_11965caaf2_o.jpg", "secret": "3ff06202c5", "media": "photo", "latitude": "0", "id": "7770137708", "tags": "school alaska high graduation valdez"}, {"datetaken": "2012-05-25 15:29:31", "license": "4", "title": "The Graduate", "text": "", "album_id": "72157631041082404", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8282/7770114634_44b2e00c84_o.jpg", "secret": "7e90f5da1d", "media": "photo", "latitude": "0", "id": "7770114634", "tags": "school alaska high graduation valdez"}, {"datetaken": "2012-05-25 15:31:24", "license": "4", "title": "Shoney", "text": "", "album_id": "72157631041082404", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8440/7770103310_e1c1819020_o.jpg", "secret": "f6c78ee6ba", "media": "photo", "latitude": "0", "id": "7770103310", "tags": "school alaska high graduation valdez"}, {"datetaken": "2012-05-25 15:39:59", "license": "4", "title": "Josie", "text": "", "album_id": "72157631041082404", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7246/7770079254_67ac68b025_o.jpg", "secret": "7ba17c7cb0", "media": "photo", "latitude": "0", "id": "7770079254", "tags": "school alaska high graduation valdez"}, {"datetaken": "2012-05-25 16:43:44", "license": "4", "title": "Dan", "text": "", "album_id": "72157631041082404", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8292/7770053596_ae17a99e11_o.jpg", "secret": "56ff808ed3", "media": "photo", "latitude": "0", "id": "7770053596", "tags": "school alaska high graduation valdez"}, {"datetaken": "2012-05-25 19:08:01", "license": "4", "title": "Kayla's Graduation", "text": "", "album_id": "72157631041082404", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7133/7769963814_6c74df2dee_o.jpg", "secret": "e2c221fffe", "media": "photo", "latitude": "0", "id": "7769963814", "tags": "school alaska high graduation valdez"}, {"datetaken": "2012-05-25 20:31:18", "license": "4", "title": "Kayla's Graduation", "text": "", "album_id": "72157631041082404", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8434/7769899940_93ba830d65_o.jpg", "secret": "cf44792a92", "media": "photo", "latitude": "0", "id": "7769899940", "tags": "school alaska high graduation valdez"}, {"datetaken": "2012-05-25 20:39:53", "license": "4", "title": "Kayla's Graduation", "text": "", "album_id": "72157631041082404", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8298/7769882490_19b5fd86e7_o.jpg", "secret": "d4ee7cf592", "media": "photo", "latitude": "0", "id": "7769882490", "tags": "school alaska high graduation valdez"}, {"datetaken": "2012-05-25 20:46:36", "license": "4", "title": "Kayla's Graduation", "text": "", "album_id": "72157631041082404", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8437/7769830012_3081dbd822_o.jpg", "secret": "279f73cd44", "media": "photo", "latitude": "0", "id": "7769830012", "tags": "school alaska high graduation valdez"}, {"datetaken": "2012-05-25 20:47:41", "license": "4", "title": "Kayla's Graduation", "text": "", "album_id": "72157631041082404", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7253/7769821350_03dd1bf3b9_o.jpg", "secret": "830c69ca42", "media": "photo", "latitude": "0", "id": "7769821350", "tags": "school alaska high graduation valdez"}, {"datetaken": "2012-05-25 20:48:34", "license": "4", "title": "Kayla's Graduation", "text": "", "album_id": "72157631041082404", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8426/7769800512_a2e776b2f8_o.jpg", "secret": "96cdde4868", "media": "photo", "latitude": "0", "id": "7769800512", "tags": "school alaska high graduation valdez"}, {"datetaken": "2012-05-25 20:49:25", "license": "4", "title": "Kayla's Graduation", "text": "", "album_id": "72157631041082404", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8302/7769777444_00b2cb9a3d_o.jpg", "secret": "0f01fc34a1", "media": "photo", "latitude": "0", "id": "7769777444", "tags": "school alaska high graduation valdez"}, {"datetaken": "2012-05-25 20:49:52", "license": "4", "title": "Kayla's Graduation", "text": "", "album_id": "72157631041082404", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7130/7769754386_c21268ff37_o.jpg", "secret": "8c059809df", "media": "photo", "latitude": "0", "id": "7769754386", "tags": "school alaska high graduation valdez"}, {"datetaken": "2012-05-25 20:51:39", "license": "4", "title": "Kayla's Graduation", "text": "", "album_id": "72157631041082404", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8444/7769738960_b7f8d03b5a_o.jpg", "secret": "525225ec9f", "media": "photo", "latitude": "0", "id": "7769738960", "tags": "school alaska high graduation valdez"}, {"datetaken": "2014-06-07 23:04:01", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2932/14347620926_5db3e0fc73_o.jpg", "secret": "c49de58ba6", "media": "photo", "latitude": "0", "id": "14347620926", "tags": ""}, {"datetaken": "2014-06-07 23:04:14", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3845/14184145060_ebb80b3048_o.jpg", "secret": "ac04f55d4f", "media": "photo", "latitude": "0", "id": "14184145060", "tags": ""}, {"datetaken": "2014-06-07 23:05:08", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3876/14369244842_1889496ca2_o.jpg", "secret": "e6bd0d177a", "media": "photo", "latitude": "0", "id": "14369244842", "tags": ""}, {"datetaken": "2014-06-07 23:10:58", "license": "2", "title": "Devices", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2914/14369236082_838939efaa_o.jpg", "secret": "46ab785529", "media": "photo", "latitude": "0", "id": "14369236082", "tags": ""}, {"datetaken": "2014-06-07 23:11:24", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2910/14184259637_3018f14b87_o.jpg", "secret": "52b410df8f", "media": "photo", "latitude": "0", "id": "14184259637", "tags": ""}, {"datetaken": "2014-06-07 23:13:17", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3860/14369233962_91441983ef_o.jpg", "secret": "5bf00b26d4", "media": "photo", "latitude": "0", "id": "14369233962", "tags": ""}, {"datetaken": "2014-06-07 23:21:10", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2897/14390890693_51fc17f5ea_o.jpg", "secret": "5a6e89f675", "media": "photo", "latitude": "0", "id": "14390890693", "tags": ""}, {"datetaken": "2014-06-07 23:33:09", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3880/14369230582_4300361830_o.jpg", "secret": "44aae929fd", "media": "photo", "latitude": "0", "id": "14369230582", "tags": ""}, {"datetaken": "2014-06-07 23:53:57", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2932/14370702235_5048e9528b_o.jpg", "secret": "5f23687223", "media": "photo", "latitude": "0", "id": "14370702235", "tags": ""}, {"datetaken": "2014-06-07 23:54:14", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3892/14184093168_9e1553116a_o.jpg", "secret": "41a91acd05", "media": "photo", "latitude": "0", "id": "14184093168", "tags": ""}, {"datetaken": "2014-06-07 23:56:51", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5235/14184136320_0b46c6cc94_o.jpg", "secret": "bf1d6edb82", "media": "photo", "latitude": "0", "id": "14184136320", "tags": ""}, {"datetaken": "2014-06-07 23:56:51", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2932/14390882233_91ba7f39da_o.jpg", "secret": "42e2a6c6e4", "media": "photo", "latitude": "0", "id": "14390882233", "tags": ""}, {"datetaken": "2014-06-07 23:57:21", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2937/14367375311_1665c4d2e8_o.jpg", "secret": "389c5c482b", "media": "photo", "latitude": "0", "id": "14367375311", "tags": ""}, {"datetaken": "2014-06-07 23:57:55", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5487/14370697835_d3ba5a3b11_o.jpg", "secret": "95de0c2284", "media": "photo", "latitude": "0", "id": "14370697835", "tags": ""}, {"datetaken": "2014-06-07 23:58:00", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2939/14390881463_37a58865bb_o.jpg", "secret": "3e745c5273", "media": "photo", "latitude": "0", "id": "14390881463", "tags": ""}, {"datetaken": "2014-06-08 02:11:19", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3895/14370695355_4cd762574e_o.jpg", "secret": "81869bcd58", "media": "photo", "latitude": "0", "id": "14370695355", "tags": ""}, {"datetaken": "2014-06-08 02:15:29", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3882/14184064019_3ec726527c_o.jpg", "secret": "2325992b70", "media": "photo", "latitude": "0", "id": "14184064019", "tags": ""}, {"datetaken": "2014-06-08 02:21:14", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3898/14370693505_02d76f3d5d_o.jpg", "secret": "c3d405c4b3", "media": "photo", "latitude": "0", "id": "14370693505", "tags": ""}, {"datetaken": "2014-06-08 02:56:50", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2935/14369779154_fc8b6091d2_o.jpg", "secret": "d3d9c4bb17", "media": "photo", "latitude": "0", "id": "14369779154", "tags": ""}, {"datetaken": "2014-06-08 02:58:19", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3868/14370691375_8fc5975598_o.jpg", "secret": "cd4416de77", "media": "photo", "latitude": "0", "id": "14370691375", "tags": ""}, {"datetaken": "2014-06-08 03:12:14", "license": "2", "title": "MPC graduation, 6/7/14", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2935/14369777134_cb8f80a6b0_o.jpg", "secret": "62bea2cec9", "media": "photo", "latitude": "0", "id": "14369777134", "tags": ""}, {"datetaken": "2014-06-08 03:12:36", "license": "2", "title": "MPC graduation: pool party", "text": "", "album_id": "72157645108368763", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3917/14370688895_680eb97970_o.jpg", "secret": "4f98440532", "media": "photo", "latitude": "0", "id": "14370688895", "tags": ""}, {"datetaken": "2014-06-27 15:48:10", "license": "1", "title": "IMG_2734", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5569/14423289010_3f9454150d_o.jpg", "secret": "e41c72830e", "media": "photo", "latitude": "0", "id": "14423289010", "tags": "finn finian preschoolgraduation vamedicalcenter"}, {"datetaken": "2014-06-27 15:48:54", "license": "1", "title": "IMG_2735", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2930/14423342049_4536257cc6_o.jpg", "secret": "aa0b4c0e0e", "media": "photo", "latitude": "0", "id": "14423342049", "tags": "finn finian preschoolgraduation vamedicalcenter"}, {"datetaken": "2014-06-27 15:49:02", "license": "1", "title": "IMG_2738", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3839/14607865494_f1f3db2e1d_o.jpg", "secret": "029e685287", "media": "photo", "latitude": "0", "id": "14607865494", "tags": "finn finian preschoolgraduation vamedicalcenter"}, {"datetaken": "2014-06-27 15:55:08", "license": "1", "title": "IMG_2757", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5548/14423261170_99ff910197_o.jpg", "secret": "d94a64416a", "media": "photo", "latitude": "0", "id": "14423261170", "tags": "finn finian preschoolgraduation vamedicalcenter"}, {"datetaken": "2014-06-27 15:58:27", "license": "1", "title": "IMG_2765", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5318/14423288198_683168e2b7_o.jpg", "secret": "468745ded1", "media": "photo", "latitude": "0", "id": "14423288198", "tags": "finn finian preschoolgraduation vamedicalcenter"}, {"datetaken": "2014-06-27 15:58:28", "license": "1", "title": "IMG_2766", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3920/14609343992_a516604ba3_o.jpg", "secret": "df960cb1e4", "media": "photo", "latitude": "0", "id": "14609343992", "tags": "finn finian preschoolgraduation vamedicalcenter"}, {"datetaken": "2014-06-27 15:58:34", "license": "1", "title": "IMG_2777", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3895/14607842884_dd683e941a_o.jpg", "secret": "a157f6bc95", "media": "photo", "latitude": "0", "id": "14607842884", "tags": "finn finian preschoolgraduation vamedicalcenter"}, {"datetaken": "2014-06-27 16:09:13", "license": "1", "title": "IMG_2778", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3880/14423275688_046320c4b6_o.jpg", "secret": "1953d8803b", "media": "photo", "latitude": "0", "id": "14423275688", "tags": "finn joanne finian preschoolgraduation vamedicalcenter"}, {"datetaken": "2014-06-27 16:09:29", "license": "1", "title": "IMG_2781", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3866/14423296109_b36071cd71_o.jpg", "secret": "2991d61e3c", "media": "photo", "latitude": "0", "id": "14423296109", "tags": "finn finian preschoolgraduation vamedicalcenter"}, {"datetaken": "2014-06-27 16:14:07", "license": "1", "title": "IMG_2785", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5077/14607822574_efeb3907f9_o.jpg", "secret": "73f1c63074", "media": "photo", "latitude": "0", "id": "14607822574", "tags": "finn finian preschoolgraduation vamedicalcenter"}, {"datetaken": "2014-06-27 16:59:05", "license": "1", "title": "IMG_2790", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2910/14609310572_3867424a36_o.jpg", "secret": "01b6e7f3fa", "media": "photo", "latitude": "0", "id": "14609310572", "tags": "party finn finian preschoolgraduation wabunsplashpool"}, {"datetaken": "2014-06-27 16:59:10", "license": "1", "title": "IMG_2798", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5547/14607803634_684a810c72_o.jpg", "secret": "42b155dec6", "media": "photo", "latitude": "0", "id": "14607803634", "tags": "party finn finian preschoolgraduation wabunsplashpool"}, {"datetaken": "2014-06-27 16:59:13", "license": "1", "title": "IMG_2800", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2936/14423431277_25d4933d35_o.jpg", "secret": "3a89a12716", "media": "photo", "latitude": "0", "id": "14423431277", "tags": "party finn finian preschoolgraduation wabunsplashpool"}, {"datetaken": "2014-06-27 16:59:32", "license": "1", "title": "IMG_2807", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5480/14607781094_002a7ace98_o.jpg", "secret": "61da40a1e5", "media": "photo", "latitude": "0", "id": "14607781094", "tags": "party finn finian preschoolgraduation wabunsplashpool"}, {"datetaken": "2014-06-27 16:59:47", "license": "1", "title": "IMG_2812", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3842/14423213248_6d28b197ff_o.jpg", "secret": "75058cb079", "media": "photo", "latitude": "0", "id": "14423213248", "tags": "party finn finian preschoolgraduation wabunsplashpool"}, {"datetaken": "2014-06-27 17:00:01", "license": "1", "title": "IMG_2821", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3892/14609813555_6fc811f58e_o.jpg", "secret": "73cd0e9ccb", "media": "photo", "latitude": "0", "id": "14609813555", "tags": "party finn finian preschoolgraduation wabunsplashpool"}, {"datetaken": "2014-06-27 17:01:23", "license": "1", "title": "IMG_2835", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3857/14607770684_68dde3bb78_o.jpg", "secret": "97fe7e2d94", "media": "photo", "latitude": "0", "id": "14607770684", "tags": "party finn finian preschoolgraduation wabunsplashpool"}, {"datetaken": "2014-06-27 17:02:38", "license": "1", "title": "IMG_2853", "text": "", "album_id": "72157645175752377", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3871/14586799656_8f01673cc2_o.jpg", "secret": "5d0c508086", "media": "photo", "latitude": "0", "id": "14586799656", "tags": "party finn finian preschoolgraduation wabunsplashpool"}, {"datetaken": "2010-10-31 22:22:57", "license": "6", "title": "Halloween Night 2010", "text": "", "album_id": "72157625287632264", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/5135814666_7fefdbe1c7_o.jpg", "secret": "3be1637cba", "media": "photo", "latitude": "0", "id": "5135814666", "tags": ""}, {"datetaken": "2010-10-31 22:23:05", "license": "6", "title": "Halloween Night 2010", "text": "", "album_id": "72157625287632264", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/5135216559_85716ab442_o.jpg", "secret": "1360a4bb43", "media": "photo", "latitude": "0", "id": "5135216559", "tags": ""}, {"datetaken": "2010-10-31 22:23:15", "license": "6", "title": "Halloween Night 2010", "text": "", "album_id": "72157625287632264", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1425/5135217407_e35d66123a_o.jpg", "secret": "ee2da01763", "media": "photo", "latitude": "0", "id": "5135217407", "tags": ""}, {"datetaken": "2010-10-31 22:23:18", "license": "6", "title": "Halloween Night 2010", "text": "", "album_id": "72157625287632264", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/5135218509_c3933f68aa_o.jpg", "secret": "04f32edef1", "media": "photo", "latitude": "0", "id": "5135218509", "tags": ""}, {"datetaken": "2010-10-31 22:26:05", "license": "6", "title": "Halloween Night 2010", "text": "", "album_id": "72157625287632264", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/5135219345_7291fbd1e5_o.jpg", "secret": "9b61602efe", "media": "photo", "latitude": "0", "id": "5135219345", "tags": ""}, {"datetaken": "2010-10-31 22:27:52", "license": "6", "title": "Halloween Night 2010", "text": "", "album_id": "72157625287632264", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1407/5135819102_d59ff306d0_o.jpg", "secret": "c01dcdd750", "media": "photo", "latitude": "0", "id": "5135819102", "tags": ""}, {"datetaken": "2010-10-31 22:28:19", "license": "6", "title": "Halloween Night 2010", "text": "", "album_id": "72157625287632264", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/5135220675_407336ab8b_o.jpg", "secret": "5429e8493a", "media": "photo", "latitude": "0", "id": "5135220675", "tags": ""}, {"datetaken": "2010-10-31 22:28:31", "license": "6", "title": "Halloween Night 2010", "text": "", "album_id": "72157625287632264", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1370/5135820624_2bd6f1de1e_o.jpg", "secret": "dfcea29c3d", "media": "photo", "latitude": "0", "id": "5135820624", "tags": ""}, {"datetaken": "2010-10-31 22:30:05", "license": "6", "title": "Halloween Night 2010", "text": "", "album_id": "72157625287632264", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/5135222265_342a56019e_o.jpg", "secret": "fd1740f4dc", "media": "photo", "latitude": "0", "id": "5135222265", "tags": ""}, {"datetaken": "2010-10-31 22:32:23", "license": "6", "title": "Halloween Night 2010", "text": "", "album_id": "72157625287632264", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1134/5135223231_97309aa916_o.jpg", "secret": "455c743b58", "media": "photo", "latitude": "0", "id": "5135223231", "tags": ""}, {"datetaken": "2010-10-31 22:34:12", "license": "6", "title": "Halloween Night 2010", "text": "", "album_id": "72157625287632264", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/5135224161_70b61e493c_o.jpg", "secret": "a512e500eb", "media": "photo", "latitude": "0", "id": "5135224161", "tags": ""}, {"datetaken": "2010-10-31 22:36:01", "license": "6", "title": "Halloween Night 2010", "text": "", "album_id": "72157625287632264", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1260/5135224889_6b53f29286_o.jpg", "secret": "8aa4142f40", "media": "photo", "latitude": "0", "id": "5135224889", "tags": ""}, {"datetaken": "2010-10-18 08:42:39", "license": "3", "title": "Welcome to Chicago Talent! by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/5135629427_ee5ca34df3_o.jpg", "secret": "3322eb6334", "media": "photo", "latitude": "0", "id": "5135629427", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-18 14:04:12", "license": "3", "title": "More Preparations, by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1082/5136231626_348035f258_o.jpg", "secret": "ea37fa55c7", "media": "photo", "latitude": "0", "id": "5136231626", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-18 16:36:12", "license": "3", "title": "The City Year Room, by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/5136232110_bb272d4448_o.jpg", "secret": "526222c53d", "media": "photo", "latitude": "0", "id": "5136232110", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-18 16:36:18", "license": "3", "title": "The Team preps the City Year room, by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/5136232664_4ecd9b2bfd_o.jpg", "secret": "b3771d2545", "media": "photo", "latitude": "0", "id": "5136232664", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-19 11:57:51", "license": "3", "title": "Cobwebs over the City Year Logo, by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/5135632395_7197ab0a1c_o.jpg", "secret": "a21485125c", "media": "photo", "latitude": "0", "id": "5135632395", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-19 11:58:35", "license": "3", "title": "Is that pasta or something spooky? by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/5136233730_eb210ff31e_o.jpg", "secret": "d470cbac74", "media": "photo", "latitude": "0", "id": "5136233730", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-19 11:59:42", "license": "3", "title": "Keeping watch over the food, by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/5135633485_ba86d49687_o.jpg", "secret": "0c9b78b1aa", "media": "photo", "latitude": "0", "id": "5135633485", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-19 12:07:34", "license": "3", "title": "Decorations, by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1343/5135635589_a4b95bc7cf_o.jpg", "secret": "9810fd7154", "media": "photo", "latitude": "0", "id": "5135635589", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-19 12:08:27", "license": "3", "title": "A spooky greeting, by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/5136236912_92bb50fe58_o.jpg", "secret": "5eeed27107", "media": "photo", "latitude": "0", "id": "5136236912", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-19 12:12:04", "license": "3", "title": "VIPs Gather around the table, by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1360/5135636617_fddf1f3e15_o.jpg", "secret": "3dcf1e154a", "media": "photo", "latitude": "0", "id": "5135636617", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-19 12:17:02", "license": "3", "title": "Yummy Fruit! by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1411/5136239264_95cb47a2bc_o.jpg", "secret": "d575ac978d", "media": "photo", "latitude": "0", "id": "5136239264", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-19 12:17:11", "license": "3", "title": "Delicious Wraps, by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/5136240084_30ce0a0894_o.jpg", "secret": "9f5895a589", "media": "photo", "latitude": "0", "id": "5136240084", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-19 12:18:25", "license": "3", "title": "City Year is ready to serve! by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/5136240938_718cd8bb31_o.jpg", "secret": "cddbe0ff5f", "media": "photo", "latitude": "0", "id": "5136240938", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-19 12:19:06", "license": "3", "title": "Only VIP's in the VIP Lounge, by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1178/5135640945_82fc4b3e7e_o.jpg", "secret": "58b27beffe", "media": "photo", "latitude": "0", "id": "5135640945", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-19 12:21:14", "license": "3", "title": "Everyone enjoys the Halloween theme feast, by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1366/5136242608_b7a5ba1cf7_o.jpg", "secret": "9f2262616b", "media": "photo", "latitude": "0", "id": "5136242608", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-19 12:23:08", "license": "3", "title": "Getting the refreshments in place, by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1152/5135642541_83702bd51d_o.jpg", "secret": "512a9a5eb9", "media": "photo", "latitude": "0", "id": "5135642541", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-19 12:36:54", "license": "3", "title": "Have a seat and let the feast begin! by Chris Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1320/5136244206_b0055f7656_o.jpg", "secret": "17977ffc88", "media": "photo", "latitude": "0", "id": "5136244206", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-19 12:37:09", "license": "3", "title": "Students enjoy City Year's VIP Lounge, by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/5135644285_be116dceb0_o.jpg", "secret": "abe08ba9a6", "media": "photo", "latitude": "0", "id": "5135644285", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-19 12:37:25", "license": "3", "title": "Ready to Dine in the VIP Lounge, by Chis Lee", "text": "", "album_id": "72157625163882291", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/5135644939_8cb875b87a_o.jpg", "secret": "35e07194d9", "media": "photo", "latitude": "0", "id": "5135644939", "tags": "viplounge diplomasnow"}, {"datetaken": "2010-10-30 21:59:17", "license": "3", "title": "WMBA Halloween Costume Crit", "text": "", "album_id": "72157625163885359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4126/5136284742_f7b0a3219b_o.jpg", "secret": "99110f94ce", "media": "photo", "latitude": "0", "id": "5136284742", "tags": "halloween bike coloradosprings wmbahalloweencostumecrit"}, {"datetaken": "2010-10-30 22:41:41", "license": "3", "title": "WMBA Halloween Bike Crit Start", "text": "", "album_id": "72157625163885359", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1187/5136284840_d1762ea3f3_o.jpg", "secret": "9e7329edd5", "media": "photo", "latitude": "0", "id": "5136284840", "tags": "halloween bike coloradosprings wmbahalloweencostumecrit"}, {"datetaken": "2010-10-30 22:43:41", "license": "3", "title": "WMBA Halloween Crit", "text": "", "album_id": "72157625163885359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/5136284874_48d4f7cbe6_o.jpg", "secret": "51af7b4130", "media": "photo", "latitude": "0", "id": "5136284874", "tags": "halloween bike coloradosprings wmbahalloweencostumecrit"}, {"datetaken": "2010-10-30 22:43:53", "license": "3", "title": "Brian from Pikes Peak Sports", "text": "", "album_id": "72157625163885359", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1191/5136284946_b4e445e6f4_o.jpg", "secret": "f1347cf9b9", "media": "photo", "latitude": "0", "id": "5136284946", "tags": "halloween bike coloradosprings wmbahalloweencostumecrit"}, {"datetaken": "2010-10-30 22:44:08", "license": "3", "title": "WMBA Halloween Crit", "text": "", "album_id": "72157625163885359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/5135683397_db41a8d677_o.jpg", "secret": "ef7e622cdc", "media": "photo", "latitude": "0", "id": "5135683397", "tags": "halloween bike coloradosprings wmbahalloweencostumecrit"}, {"datetaken": "2010-10-30 22:50:13", "license": "3", "title": "WMBA Halloween Crit", "text": "", "album_id": "72157625163885359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4107/5135683453_7e289834d0_o.jpg", "secret": "29f9b2cceb", "media": "photo", "latitude": "0", "id": "5135683453", "tags": "halloween bike coloradosprings wmbahalloweencostumecrit"}, {"datetaken": "2010-10-30 22:50:45", "license": "3", "title": "WMBA Halloween Crit", "text": "", "album_id": "72157625163885359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/5135683523_6bce8cd644_o.jpg", "secret": "42bd81e723", "media": "photo", "latitude": "0", "id": "5135683523", "tags": "halloween bike coloradosprings wmbahalloweencostumecrit"}, {"datetaken": "2010-10-30 22:52:55", "license": "3", "title": "WMBA Halloween Crit", "text": "", "album_id": "72157625163885359", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1373/5136285186_206cd3b95b_o.jpg", "secret": "84fa6f9185", "media": "photo", "latitude": "0", "id": "5136285186", "tags": "halloween bike coloradosprings wmbahalloweencostumecrit"}, {"datetaken": "2010-10-30 22:54:14", "license": "3", "title": "WMBA Halloween Crit", "text": "", "album_id": "72157625163885359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/5135683665_5e0a207624_o.jpg", "secret": "7555f724af", "media": "photo", "latitude": "0", "id": "5135683665", "tags": "halloween bike coloradosprings wmbahalloweencostumecrit"}, {"datetaken": "2010-10-30 22:55:15", "license": "3", "title": "WMBA Halloween Crit", "text": "", "album_id": "72157625163885359", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1371/5136285366_88f375723d_o.jpg", "secret": "7c2e8c18f8", "media": "photo", "latitude": "0", "id": "5136285366", "tags": "halloween bike coloradosprings wmbahalloweencostumecrit"}, {"datetaken": "2010-10-30 22:56:57", "license": "3", "title": "WMBA Halloween Crit", "text": "", "album_id": "72157625163885359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/5135683835_f39380c734_o.jpg", "secret": "32ae435cde", "media": "photo", "latitude": "0", "id": "5135683835", "tags": "halloween bike coloradosprings wmbahalloweencostumecrit"}, {"datetaken": "2010-10-30 22:57:39", "license": "3", "title": "WMBA Halloween Crit", "text": "", "album_id": "72157625163885359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4149/5135683907_dfceba01fc_o.jpg", "secret": "f5e7f6e6dd", "media": "photo", "latitude": "0", "id": "5135683907", "tags": "halloween bike coloradosprings wmbahalloweencostumecrit"}, {"datetaken": "2010-10-30 23:05:43", "license": "3", "title": "WMBA Halloween Kids Crit", "text": "", "album_id": "72157625163885359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/5136285624_091dfb41f6_o.jpg", "secret": "0005d1dda9", "media": "photo", "latitude": "0", "id": "5136285624", "tags": "halloween bike coloradosprings wmbahalloweencostumecrit"}, {"datetaken": "2010-10-30 23:06:30", "license": "3", "title": "WMBA Halloween Kids Crit", "text": "", "album_id": "72157625163885359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/5135684043_34d9ef3e5b_o.jpg", "secret": "74f21f74a2", "media": "photo", "latitude": "0", "id": "5135684043", "tags": "halloween bike coloradosprings wmbahalloweencostumecrit"}, {"datetaken": "2010-10-30 23:06:45", "license": "3", "title": "WMBA Halloween Kids Crit", "text": "", "album_id": "72157625163885359", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1080/5135684131_f7201c1910_o.jpg", "secret": "ea31e7d8bc", "media": "photo", "latitude": "0", "id": "5135684131", "tags": "halloween bike coloradosprings wmbahalloweencostumecrit"}, {"datetaken": "2010-10-30 23:32:54", "license": "3", "title": "WMBA Halloween Crit Duo Winners", "text": "", "album_id": "72157625163885359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/5136285812_94fe37cdaa_o.jpg", "secret": "eac0726b3f", "media": "photo", "latitude": "0", "id": "5136285812", "tags": "halloween bike coloradosprings wmbahalloweencostumecrit"}, {"datetaken": "2006-10-28 17:01:29", "license": "1", "title": "Mask", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/364962730_05134d87cc_o.jpg", "secret": "05134d87cc", "media": "photo", "latitude": "0", "id": "364962730", "tags": "halloween"}, {"datetaken": "2006-10-28 17:39:59", "license": "1", "title": "Brad", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/364980309_7fcc1bff87_o.jpg", "secret": "7fcc1bff87", "media": "photo", "latitude": "0", "id": "364980309", "tags": ""}, {"datetaken": "2006-10-28 18:20:58", "license": "1", "title": "100_0104", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/377970502_a01f0e9f69_o.jpg", "secret": "a01f0e9f69", "media": "photo", "latitude": "0", "id": "377970502", "tags": ""}, {"datetaken": "2006-10-28 18:21:42", "license": "1", "title": "SKULL", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/364962756_7d87c5e807_o.jpg", "secret": "7d87c5e807", "media": "photo", "latitude": "0", "id": "364962756", "tags": "halloween"}, {"datetaken": "2006-10-28 18:25:15", "license": "1", "title": "Good freind", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/364962732_3fc5d5c65e_o.jpg", "secret": "3fc5d5c65e", "media": "photo", "latitude": "0", "id": "364962732", "tags": "halloween"}, {"datetaken": "2006-10-28 20:07:26", "license": "1", "title": "100_0109", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/377975929_e3483bf5a8_o.jpg", "secret": "e3483bf5a8", "media": "photo", "latitude": "0", "id": "377975929", "tags": ""}, {"datetaken": "2006-10-28 20:07:45", "license": "1", "title": "Bartender", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/109/364962755_995b8d172d_o.jpg", "secret": "995b8d172d", "media": "photo", "latitude": "0", "id": "364962755", "tags": "halloween"}, {"datetaken": "2006-10-29 00:04:01", "license": "1", "title": "100_0117", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/377977425_c90012cdff_o.jpg", "secret": "c90012cdff", "media": "photo", "latitude": "0", "id": "377977425", "tags": ""}, {"datetaken": "2006-10-29 00:04:14", "license": "1", "title": "s4", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/364971891_85b06aa5a4_o.jpg", "secret": "85b06aa5a4", "media": "photo", "latitude": "0", "id": "364971891", "tags": ""}, {"datetaken": "2006-10-29 00:04:27", "license": "1", "title": "S4", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/364971882_4aed411137_o.jpg", "secret": "4aed411137", "media": "photo", "latitude": "0", "id": "364971882", "tags": ""}, {"datetaken": "2006-10-29 00:04:27", "license": "1", "title": "Dance floor \"S4\" Dallas", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/377975933_f9b2c3524d_o.jpg", "secret": "f9b2c3524d", "media": "photo", "latitude": "0", "id": "377975933", "tags": ""}, {"datetaken": "2006-10-29 00:04:58", "license": "1", "title": "S4", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/364971911_1b4c15f234_o.jpg", "secret": "1b4c15f234", "media": "photo", "latitude": "0", "id": "364971911", "tags": ""}, {"datetaken": "2006-10-29 00:05:12", "license": "1", "title": "DJ Booth at S4 in Dallas", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/377975932_0e30574414_o.jpg", "secret": "0e30574414", "media": "photo", "latitude": "0", "id": "377975932", "tags": ""}, {"datetaken": "2006-10-29 00:13:33", "license": "1", "title": "100_0125", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/377975936_cd706405e2_o.jpg", "secret": "cd706405e2", "media": "photo", "latitude": "0", "id": "377975936", "tags": ""}, {"datetaken": "2006-10-29 00:16:24", "license": "1", "title": "TMC Dance floor looking up", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/364971895_188a9caaa5_o.jpg", "secret": "188a9caaa5", "media": "photo", "latitude": "0", "id": "364971895", "tags": ""}, {"datetaken": "2006-10-29 00:18:35", "license": "1", "title": "S4 Dallas,Texas", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/364971898_b726c50137_o.jpg", "secret": "b726c50137", "media": "photo", "latitude": "0", "id": "364971898", "tags": "dance nightclub"}, {"datetaken": "2006-10-29 00:18:35", "license": "1", "title": "Night at the \" S4\"", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/377975937_52a98f9db1_o.jpg", "secret": "52a98f9db1", "media": "photo", "latitude": "0", "id": "377975937", "tags": ""}, {"datetaken": "2006-10-29 00:25:07", "license": "1", "title": "100_0149", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/377975939_e4c4e99412_o.jpg", "secret": "e4c4e99412", "media": "photo", "latitude": "0", "id": "377975939", "tags": ""}, {"datetaken": "2006-10-29 00:25:31", "license": "1", "title": "S4", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/364980313_f11b7fa943_o.jpg", "secret": "f11b7fa943", "media": "photo", "latitude": "0", "id": "364980313", "tags": ""}, {"datetaken": "2006-10-29 00:42:16", "license": "1", "title": "100_0162", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/377977424_c6ce148922_o.jpg", "secret": "c6ce148922", "media": "photo", "latitude": "0", "id": "377977424", "tags": ""}, {"datetaken": "2006-10-29 00:46:50", "license": "1", "title": "100_0170", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/377977421_534baeab39_o.jpg", "secret": "534baeab39", "media": "photo", "latitude": "0", "id": "377977421", "tags": ""}, {"datetaken": "2006-10-29 09:26:23", "license": "1", "title": "100_0176", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/377977417_63360c2e7b_o.jpg", "secret": "63360c2e7b", "media": "photo", "latitude": "0", "id": "377977417", "tags": ""}, {"datetaken": "2006-10-29 09:26:35", "license": "1", "title": "100_0177", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/377977419_4b4d7cd3ef_o.jpg", "secret": "4b4d7cd3ef", "media": "photo", "latitude": "0", "id": "377977419", "tags": ""}, {"datetaken": "2006-10-29 10:53:14", "license": "1", "title": "Texas Stadium", "text": "", "album_id": "72157594492450216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/364980307_baaa6e9c30_o.jpg", "secret": "baaa6e9c30", "media": "photo", "latitude": "0", "id": "364980307", "tags": ""}, {"datetaken": "2010-06-26 12:13:35", "license": "3", "title": "Decorations", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4755825187_8efa5c2c12_o.jpg", "secret": "2114f4fc4a", "media": "photo", "latitude": "0", "id": "4755825187", "tags": ""}, {"datetaken": "2010-06-26 12:14:11", "license": "3", "title": "Decorations", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4756462816_5cd89358ec_o.jpg", "secret": "d17901c008", "media": "photo", "latitude": "0", "id": "4756462816", "tags": ""}, {"datetaken": "2010-06-26 12:52:34", "license": "3", "title": "Eating", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4755825303_34beb0a3d5_o.jpg", "secret": "11ab0613a0", "media": "photo", "latitude": "0", "id": "4755825303", "tags": ""}, {"datetaken": "2010-06-26 12:53:39", "license": "3", "title": "Presents", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4755825385_06c24fb7b9_o.jpg", "secret": "8669458e2e", "media": "photo", "latitude": "0", "id": "4755825385", "tags": ""}, {"datetaken": "2010-06-26 13:07:39", "license": "3", "title": "Dessert", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4755825437_4c4a8321d3_o.jpg", "secret": "c2d504667d", "media": "photo", "latitude": "0", "id": "4755825437", "tags": ""}, {"datetaken": "2010-06-26 13:36:52", "license": "3", "title": "Present", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4755825537_d8dc4e06d1_o.jpg", "secret": "6a49d0edbf", "media": "photo", "latitude": "0", "id": "4755825537", "tags": ""}, {"datetaken": "2010-06-26 13:37:43", "license": "3", "title": "Present", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4755825631_9fc8b967c8_o.jpg", "secret": "bf6600d841", "media": "photo", "latitude": "0", "id": "4755825631", "tags": ""}, {"datetaken": "2010-06-26 13:39:44", "license": "3", "title": "Present", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4755825719_d1c09e0564_o.jpg", "secret": "9700ded7e1", "media": "photo", "latitude": "0", "id": "4755825719", "tags": ""}, {"datetaken": "2010-06-26 13:41:03", "license": "3", "title": "Present", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4756463372_2202729d5b_o.jpg", "secret": "7c792005f0", "media": "photo", "latitude": "0", "id": "4756463372", "tags": ""}, {"datetaken": "2010-06-26 13:42:02", "license": "3", "title": "Present", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4755825887_2565e1ebdc_o.jpg", "secret": "de87ffd261", "media": "photo", "latitude": "0", "id": "4755825887", "tags": ""}, {"datetaken": "2010-06-26 13:43:04", "license": "3", "title": "Present", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4755825975_c1bba6b0f1_o.jpg", "secret": "710705fd70", "media": "photo", "latitude": "0", "id": "4755825975", "tags": ""}, {"datetaken": "2010-06-26 13:44:13", "license": "3", "title": "Present", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4756463670_d88da8e7d1_o.jpg", "secret": "fd7073ae29", "media": "photo", "latitude": "0", "id": "4756463670", "tags": ""}, {"datetaken": "2010-06-26 13:46:49", "license": "3", "title": "Present", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4755826163_4b89d8dac6_o.jpg", "secret": "a0f4ed5915", "media": "photo", "latitude": "0", "id": "4755826163", "tags": ""}, {"datetaken": "2010-06-26 13:52:15", "license": "3", "title": "Present", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4756463820_b33c808e5d_o.jpg", "secret": "0ef36ee3c5", "media": "photo", "latitude": "0", "id": "4756463820", "tags": ""}, {"datetaken": "2010-06-26 13:54:08", "license": "3", "title": "Present", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4756463922_aedd7c3e25_o.jpg", "secret": "74dbe45245", "media": "photo", "latitude": "0", "id": "4756463922", "tags": ""}, {"datetaken": "2010-06-26 13:57:13", "license": "3", "title": "Present", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4756464044_170b959750_o.jpg", "secret": "0a91efbfdf", "media": "photo", "latitude": "0", "id": "4756464044", "tags": ""}, {"datetaken": "2010-06-26 18:59:13", "license": "3", "title": "Abby rules", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4756464226_d6e0c9d3a6_o.jpg", "secret": "91ddb3d828", "media": "photo", "latitude": "0", "id": "4756464226", "tags": ""}, {"datetaken": "2010-06-26 20:46:14", "license": "3", "title": "Grandpa Milt and his girls....", "text": "", "album_id": "72157624409430634", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4755826833_ae68fcdcc2_o.jpg", "secret": "dc08f2c1e7", "media": "photo", "latitude": "0", "id": "4755826833", "tags": ""}, {"datetaken": "2010-11-01 13:44:20", "license": "1", "title": "ricky3600", "text": "", "album_id": "72157625178191457", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/5141960499_1929fdd2b1_o.jpg", "secret": "1dff8a1c84", "media": "photo", "latitude": "0", "id": "5141960499", "tags": "halloween concert folk live sacramento oldironsides adrianbourgeois rickyberger"}, {"datetaken": "2010-11-01 13:44:37", "license": "1", "title": "ricky3601", "text": "", "album_id": "72157625178191457", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1198/5142564470_be83223ed7_o.jpg", "secret": "80ae64cff1", "media": "photo", "latitude": "0", "id": "5142564470", "tags": "halloween concert folk live sacramento oldironsides adrianbourgeois rickyberger"}, {"datetaken": "2010-11-01 13:47:46", "license": "1", "title": "ricky3604", "text": "", "album_id": "72157625178191457", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1345/5141961329_6148e41f11_o.jpg", "secret": "90f8dfbe4d", "media": "photo", "latitude": "0", "id": "5141961329", "tags": "halloween concert folk live sacramento oldironsides rickyberger"}, {"datetaken": "2010-11-01 13:49:14", "license": "1", "title": "ricky3610", "text": "", "album_id": "72157625178191457", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1414/5141961147_441fa63a46_o.jpg", "secret": "cf998eaf6c", "media": "photo", "latitude": "0", "id": "5141961147", "tags": "halloween concert folk live sacramento oldironsides rickyberger"}, {"datetaken": "2010-11-01 13:49:22", "license": "1", "title": "ricky3611", "text": "", "album_id": "72157625178191457", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1323/5141960697_c87950df5f_o.jpg", "secret": "d9b3b62294", "media": "photo", "latitude": "0", "id": "5141960697", "tags": "halloween concert folk live sacramento oldironsides adrianbourgeois rickyberger"}, {"datetaken": "2010-11-01 13:49:34", "license": "1", "title": "ricky3612", "text": "", "album_id": "72157625178191457", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1309/5142564294_f875b47bdb_o.jpg", "secret": "8ab60e220f", "media": "photo", "latitude": "0", "id": "5142564294", "tags": "halloween concert folk live sacramento oldironsides adrianbourgeois rickyberger"}, {"datetaken": "2010-11-01 13:56:52", "license": "1", "title": "ricky3615", "text": "", "album_id": "72157625178191457", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/5141961661_64895f63e7_o.jpg", "secret": "d307456673", "media": "photo", "latitude": "0", "id": "5141961661", "tags": "halloween concert folk live sacramento oldironsides rickyberger"}, {"datetaken": "2010-11-01 13:57:16", "license": "1", "title": "ricky3619", "text": "", "album_id": "72157625178191457", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/5142564964_23374166bb_o.jpg", "secret": "7f2772c55b", "media": "photo", "latitude": "0", "id": "5142564964", "tags": "halloween concert folk live sacramento oldironsides rickyberger"}, {"datetaken": "2010-11-01 13:58:44", "license": "1", "title": "ricky3627", "text": "", "album_id": "72157625178191457", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1063/5141961441_a87f154f60_o.jpg", "secret": "f19bd34eee", "media": "photo", "latitude": "0", "id": "5141961441", "tags": "halloween concert folk live sacramento oldironsides rickyberger"}, {"datetaken": "2010-11-01 14:00:04", "license": "1", "title": "ricky3630", "text": "", "album_id": "72157625178191457", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/5142565338_29b1d91c34_o.jpg", "secret": "d53feac827", "media": "photo", "latitude": "0", "id": "5142565338", "tags": "halloween concert folk live sacramento oldironsides rickyberger"}, {"datetaken": "2010-11-01 14:00:10", "license": "1", "title": "ricky3631", "text": "", "album_id": "72157625178191457", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/5142565194_40c97cb386_o.jpg", "secret": "0fa2e6c587", "media": "photo", "latitude": "0", "id": "5142565194", "tags": "halloween concert folk live sacramento oldironsides rickyberger"}, {"datetaken": "2010-11-03 13:44:12", "license": "2", "title": "kahlua halloween-9_KA", "text": "", "album_id": "72157625306347444", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/5144008308_aa6dd69246_o.jpg", "secret": "2ab00a273d", "media": "photo", "latitude": "0", "id": "5144008308", "tags": ""}, {"datetaken": "2010-11-03 13:44:19", "license": "2", "title": "kahlua halloween-8_KA", "text": "", "album_id": "72157625306347444", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1153/5143402065_d14193f89b_o.jpg", "secret": "4a3babfb06", "media": "photo", "latitude": "0", "id": "5143402065", "tags": ""}, {"datetaken": "2010-11-03 13:44:22", "license": "2", "title": "kahlua halloween-7_KA", "text": "", "album_id": "72157625306347444", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/5144008732_1aef9eb9c2_o.jpg", "secret": "b89cf83b88", "media": "photo", "latitude": "0", "id": "5144008732", "tags": ""}, {"datetaken": "2010-11-03 13:44:27", "license": "2", "title": "kahlua halloween-6_KA", "text": "", "album_id": "72157625306347444", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/5144008936_277f337114_o.jpg", "secret": "095de5e82c", "media": "photo", "latitude": "0", "id": "5144008936", "tags": ""}, {"datetaken": "2010-11-03 13:44:30", "license": "2", "title": "kahlua halloween-5_KA", "text": "", "album_id": "72157625306347444", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/5143402577_00d195e612_o.jpg", "secret": "a582a60217", "media": "photo", "latitude": "0", "id": "5143402577", "tags": ""}, {"datetaken": "2010-11-03 13:44:35", "license": "2", "title": "kahlua halloween-4_KA", "text": "", "album_id": "72157625306347444", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1136/5144009208_a2333b1878_o.jpg", "secret": "f77e343b8c", "media": "photo", "latitude": "0", "id": "5144009208", "tags": ""}, {"datetaken": "2010-11-03 13:44:39", "license": "2", "title": "kahlua halloween-3_KA", "text": "", "album_id": "72157625306347444", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/5144009362_3a8052b706_o.jpg", "secret": "b4891220a5", "media": "photo", "latitude": "0", "id": "5144009362", "tags": ""}, {"datetaken": "2010-11-03 13:44:43", "license": "2", "title": "kahlua halloween-2_KA", "text": "", "album_id": "72157625306347444", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1318/5144009532_3bafaacc69_o.jpg", "secret": "2ee4a3ced8", "media": "photo", "latitude": "0", "id": "5144009532", "tags": ""}, {"datetaken": "2010-11-03 13:44:47", "license": "2", "title": "kahlua halloween-16_KA", "text": "", "album_id": "72157625306347444", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1360/5144009718_44f1d7349e_o.jpg", "secret": "9f955c35c5", "media": "photo", "latitude": "0", "id": "5144009718", "tags": ""}, {"datetaken": "2010-11-03 13:44:51", "license": "2", "title": "kahlua halloween-15_KA", "text": "", "album_id": "72157625306347444", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/5144009848_152f9ca8d6_o.jpg", "secret": "a27eb53634", "media": "photo", "latitude": "0", "id": "5144009848", "tags": ""}, {"datetaken": "2010-11-03 13:44:55", "license": "2", "title": "kahlua halloween-14_KA", "text": "", "album_id": "72157625306347444", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1431/5143403645_1de65dbd5b_o.jpg", "secret": "a169cebb84", "media": "photo", "latitude": "0", "id": "5143403645", "tags": ""}, {"datetaken": "2010-11-03 13:44:58", "license": "2", "title": "kahlua halloween-13_KA", "text": "", "album_id": "72157625306347444", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1356/5143403753_3db9ce7ab8_o.jpg", "secret": "815f1e442e", "media": "photo", "latitude": "0", "id": "5143403753", "tags": ""}, {"datetaken": "2010-11-03 13:45:02", "license": "2", "title": "kahlua halloween-12_KA", "text": "", "album_id": "72157625306347444", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1144/5144010254_fb1d7c6931_o.jpg", "secret": "4ea0a2a81f", "media": "photo", "latitude": "0", "id": "5144010254", "tags": ""}, {"datetaken": "2010-11-03 13:45:05", "license": "2", "title": "kahlua halloween-11_KA", "text": "", "album_id": "72157625306347444", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1211/5143404039_d359d9197b_o.jpg", "secret": "6d58802a45", "media": "photo", "latitude": "0", "id": "5143404039", "tags": ""}, {"datetaken": "2010-11-03 13:45:08", "license": "2", "title": "kahlua halloween-10_KA", "text": "", "album_id": "72157625306347444", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1126/5144010534_4451d00e86_o.jpg", "secret": "128840ac36", "media": "photo", "latitude": "0", "id": "5144010534", "tags": ""}, {"datetaken": "2010-11-03 13:45:11", "license": "2", "title": "kahlua halloween-1_KA", "text": "", "album_id": "72157625306347444", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/5143404211_56c5d59898_o.jpg", "secret": "be13b05a3b", "media": "photo", "latitude": "0", "id": "5143404211", "tags": ""}, {"datetaken": "2006-12-29 19:14:01", "license": "3", "title": "mom and david, photobooth", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/352027769_21a7a142e2_o.jpg", "secret": "21a7a142e2", "media": "photo", "latitude": "0", "id": "352027769", "tags": "family david mom photobooth familyalbum filmstrip tangentialism"}, {"datetaken": "2006-12-29 19:22:33", "license": "3", "title": "first day of school", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/361766171_8ba40619bf_o.jpg", "secret": "8ba40619bf", "media": "photo", "latitude": "0", "id": "361766171", "tags": "family ohio me newark firstdayofschool familyalbum"}, {"datetaken": "2006-12-29 19:33:50", "license": "3", "title": "brothers", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/378490638_8b5fcb6504_o.jpg", "secret": "8b5fcb6504", "media": "photo", "latitude": "0", "id": "378490638", "tags": "family david me brother familyalbum tangentialism"}, {"datetaken": "2006-12-29 20:06:15", "license": "3", "title": "christmas nerdery: part 2", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/358996991_601107527a_o.jpg", "secret": "601107527a", "media": "photo", "latitude": "0", "id": "358996991", "tags": "christmas family david me computer nerds present familyalbum unwrapping tangentialism commodore64"}, {"datetaken": "2006-12-29 20:13:11", "license": "3", "title": "pemberton dave", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/385937728_7d1ee6a7e9_o.jpg", "secret": "7d1ee6a7e9", "media": "photo", "latitude": "0", "id": "385937728", "tags": "familyalbum family david tangentialism cambridge boston massachusetts stairs pemberton"}, {"datetaken": "2006-12-30 17:45:10", "license": "3", "title": "gym class, traip academy", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/359630293_c33582b6b0_o.jpg", "secret": "c33582b6b0", "media": "photo", "latitude": "0", "id": "359630293", "tags": "maine class gym familyalbum takenbymom traip traipacademy"}, {"datetaken": "2006-12-30 23:48:08", "license": "3", "title": "cambridge, blizzard of '78", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/393092211_7018c32b0d_o.jpg", "secret": "7018c32b0d", "media": "photo", "latitude": "0", "id": "393092211", "tags": "cambridge snow ice boston 1978 pemberton blizzard familyalbum"}, {"datetaken": "2006-12-31 00:01:04", "license": "3", "title": "benton, pa", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/387031196_ab22f5459a_o.jpg", "secret": "ab22f5459a", "media": "photo", "latitude": "0", "id": "387031196", "tags": "family mom pennsylvania pa familyalbum benton"}, {"datetaken": "2006-12-31 01:29:23", "license": "3", "title": "halloween", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/346790202_8c8dc97392_o.jpg", "secret": "8c8dc97392", "media": "photo", "latitude": "0", "id": "346790202", "tags": "family ohio david halloween me brothers batman roadrunner familyalbum kenyee tangentialism"}, {"datetaken": "2006-12-31 01:57:20", "license": "3", "title": "drawing at straws", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/405234025_81fe949206_o.jpg", "secret": "81fe949206", "media": "photo", "latitude": "0", "id": "405234025", "tags": "family rabbit me straw familyalbum kenyee"}, {"datetaken": "2006-12-31 02:02:13", "license": "3", "title": "christmas excitement, he-man style", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/341921817_4a71c08cf8_o.jpg", "secret": "4a71c08cf8", "media": "photo", "latitude": "0", "id": "341921817", "tags": "christmas me ken present heman familyalbum castlegreyskull mayblealittletooexcited fortressofmysteryandpower"}, {"datetaken": "2006-12-31 02:23:16", "license": "3", "title": "best! bigwheel! ever!", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/354581401_f126690fe3_o.jpg", "secret": "f126690fe3", "media": "photo", "latitude": "0", "id": "354581401", "tags": "me awesome best pacman bigwheel ever familyalbum"}, {"datetaken": "2006-12-31 02:24:11", "license": "3", "title": "whatchoo talkin' 'bout willis?", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/349122532_52d7a84066_o.jpg", "secret": "52d7a84066", "media": "photo", "latitude": "0", "id": "349122532", "tags": "family david me fiesta familyalbum kenyee tangentialism"}, {"datetaken": "2006-12-31 02:31:11", "license": "3", "title": "happy father's day, dad", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1043/559395571_47ad614d65_o.jpg", "secret": "75685a5fe9", "media": "photo", "latitude": "0", "id": "559395571", "tags": "family me grass dad familyalbum"}, {"datetaken": "2006-12-31 02:32:52", "license": "3", "title": "memorial bridge, portsmouth", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/353974580_ad1d13050a_o.jpg", "secret": "ad1d13050a", "media": "photo", "latitude": "0", "id": "353974580", "tags": "bridge maine newhampshire nh portsmouth kittery familyalbum piscataqua"}, {"datetaken": "2006-12-31 02:37:49", "license": "3", "title": "orchard ladder", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/347436150_259ff97f7f_o.jpg", "secret": "259ff97f7f", "media": "photo", "latitude": "0", "id": "347436150", "tags": "me apple dad ken orchard familyalbum kenyee"}, {"datetaken": "2006-12-31 11:38:20", "license": "3", "title": "d.a.v.i.d.", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/416645429_42f482764f_o.jpg", "secret": "d538e43429", "media": "photo", "latitude": "0", "id": "416645429", "tags": "family david halloween computer familyalbum tangentialism"}, {"datetaken": "2006-12-31 11:47:03", "license": "3", "title": "left tackle", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/363951997_02cc45b559_o.jpg", "secret": "02cc45b559", "media": "photo", "latitude": "0", "id": "363951997", "tags": "family oklahoma me football pioneers familyalbum parkview"}, {"datetaken": "2006-12-31 11:48:24", "license": "3", "title": "orchard with dad", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/347436093_3bb4bf9a37_o.jpg", "secret": "3bb4bf9a37", "media": "photo", "latitude": "0", "id": "347436093", "tags": "me apple dad ken orchard familyalbum kenyee"}, {"datetaken": "2006-12-31 11:49:50", "license": "3", "title": "major tom", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/357388419_98a3ce48df_o.jpg", "secret": "98a3ce48df", "media": "photo", "latitude": "0", "id": "357388419", "tags": "family me dad astronaut familyalbum"}, {"datetaken": "2006-12-31 17:49:07", "license": "3", "title": "the birthday party", "text": "", "album_id": "72157594453329123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/352852683_99dafdda57_o.jpg", "secret": "99dafdda57", "media": "photo", "latitude": "0", "id": "352852683", "tags": "birthday family party college cake matt candles cousins grandpa gramps kirk familyalbum"}, {"datetaken": "2009-09-09 01:34:49", "license": "1", "title": "An electrician's worst nightmare", "text": "", "album_id": "72157624218075171", "longitude": "106.692996", "url_o": "https://farm5.staticflickr.com/4044/4571937808_956e9cc07b_o.jpg", "secret": "54734ac141", "media": "photo", "latitude": "10.767206", "id": "4571937808", "tags": "digital canon geotagged eos 350d rebel xt kiss traffic n streetscene vietnam powerlines telephonelines tamron saigon hochiminhcity canonrebelxt buivienstreet 18270 canonkissdigitaln tamron18270"}, {"datetaken": "2009-09-09 02:46:43", "license": "1", "title": "Chilling", "text": "", "album_id": "72157624218075171", "longitude": "106.701364", "url_o": "https://farm5.staticflickr.com/4007/4616236915_7c4db8537c_o.jpg", "secret": "0c3f0894ec", "media": "photo", "latitude": "10.772223", "id": "4616236915", "tags": "street bike digital canon geotagged eos 350d rebel xt kiss n streetscene vietnam motorbike moto tamron saigon hochiminhcity canonrebelxt 18270 canonkissdigitaln tamron18270"}, {"datetaken": "2009-09-09 03:41:12", "license": "1", "title": "This is Saigon too", "text": "", "album_id": "72157624218075171", "longitude": "106.721019", "url_o": "https://farm8.staticflickr.com/7205/6993163603_276d22afe0_o.jpg", "secret": "94978e5299", "media": "photo", "latitude": "10.772771", "id": "6993163603", "tags": "trees house nature digital canon river geotagged eos 350d rebel xt kiss n delta palm vietnam mangrove tropical serene shack tamron saigon idyllic hochiminhcity canonrebelxt 2009 dwelling 18270 canonkissdigitaln thuthiem tamron18270"}, {"datetaken": "2009-09-09 03:57:40", "license": "1", "title": "Gone fishing", "text": "", "album_id": "72157624218075171", "longitude": "106.725568", "url_o": "https://farm2.staticflickr.com/1290/4657168479_9bbe592c93_o.jpg", "secret": "29bfd80e7e", "media": "photo", "latitude": "10.779348", "id": "4657168479", "tags": "digital canon geotagged eos 350d rebel xt fishing kiss fishermen n vietnam tamron saigon hochiminhcity canonrebelxt 2009 anglers 18270 canonkissdigitaln thuthiem tamron18270"}, {"datetaken": "2009-09-09 04:04:38", "license": "1", "title": "Coconut galore", "text": "", "album_id": "72157624218075171", "longitude": "106.725568", "url_o": "https://farm5.staticflickr.com/4071/4571124413_4dfecde949_o.jpg", "secret": "0dc48dd771", "media": "photo", "latitude": "10.779348", "id": "4571124413", "tags": "man digital canon river geotagged eos 350d rebel xt boat kiss coconut harvest n delta vietnam business farmer tamron coconuts saigon hochiminhcity canonrebelxt 2009 18270 canonkissdigitaln thuthiem tamron18270"}, {"datetaken": "2009-09-09 05:54:46", "license": "1", "title": "Ben Thanh Market, Saigon", "text": "", "album_id": "72157624218075171", "longitude": "106.697974", "url_o": "https://farm5.staticflickr.com/4095/4857739681_723084b9a2_o.jpg", "secret": "3719864351", "media": "photo", "latitude": "10.772687", "id": "4857739681", "tags": "people fish vegetables fruit digital canon geotagged eos 350d rebel xt lemon kiss market n vietnam mango durian shops produce melon tamron saigon hochiminhcity canonrebelxt 2009 lychee benthanhmarket 18270 canonkissdigitaln tamron18270"}, {"datetaken": "2009-09-09 05:56:23", "license": "1", "title": "Halloween props for sale", "text": "", "album_id": "72157624218075171", "longitude": "106.697974", "url_o": "https://farm5.staticflickr.com/4068/4581205004_724e949769_o.jpg", "secret": "a7599f78c0", "media": "photo", "latitude": "10.772687", "id": "4581205004", "tags": "food halloween digital canon geotagged eos 350d rebel xt kiss market n meat vietnam ingredients gore horror grizzly tamron saigon hochiminhcity canonrebelxt organs guts benthanhmarket gizzards 18270 canonkissdigitaln tamron18270"}, {"datetaken": "2009-09-09 05:58:00", "license": "1", "title": "Ben Thanh Market, Saigon", "text": "", "album_id": "72157624218075171", "longitude": "106.697974", "url_o": "https://farm5.staticflickr.com/4122/4860273465_9af86faa5a_o.jpg", "secret": "cd0ded7be7", "media": "photo", "latitude": "10.772687", "id": "4860273465", "tags": "people digital canon geotagged eos 350d rebel xt kiss market n crab shrimp clam vietnam shops seafood produce mussel crayfish tamron saigon hochiminhcity canonrebelxt 2009 prawn benthanhmarket 18270 canonkissdigitaln tamron18270"}, {"datetaken": "2009-09-09 05:59:05", "license": "1", "title": "Ben Thanh Market, Saigon", "text": "", "album_id": "72157624218075171", "longitude": "106.697974", "url_o": "https://farm5.staticflickr.com/4114/4858278940_7758f27011_o.jpg", "secret": "d454da3919", "media": "photo", "latitude": "10.772687", "id": "4858278940", "tags": "people fish digital canon geotagged eos 350d rebel xt mackerel kiss market n shrimp vietnam catfish shellfish shops produce crayfish tamron saigon hochiminhcity canonrebelxt 2009 prawn fillet pangasius benthanhmarket 18270 canonkissdigitaln tamron18270"}, {"datetaken": "2009-09-09 06:01:10", "license": "1", "title": "The wait", "text": "", "album_id": "72157624218075171", "longitude": "106.698489", "url_o": "https://farm5.staticflickr.com/4094/4861644294_5dc0664bb6_o.jpg", "secret": "a5e44d01a8", "media": "photo", "latitude": "10.773172", "id": "4861644294", "tags": "street digital canon geotagged eos 350d rebel xt kiss nap relaxing n streetscene vietnam wait rest rickshaw tamron saigon hochiminhcity canonrebelxt rikshaw 18270 canonkissdigitaln tamron18270"}, {"datetaken": "2009-09-09 06:06:51", "license": "1", "title": "Wroom wroom!", "text": "", "album_id": "72157624218075171", "longitude": "106.697759", "url_o": "https://farm5.staticflickr.com/4034/4582521576_6b5b2baa90_o.jpg", "secret": "022fafd77f", "media": "photo", "latitude": "10.775216", "id": "4582521576", "tags": "digital canon geotagged eos 350d rebel xt kiss traffic tricycle n streetscene vietnam motorbike motorcycle tuktuk motor rickshaw tamron saigon hochiminhcity canonrebelxt tuk rikshaw 18270 canonkissdigitaln tamron18270"}, {"datetaken": "2009-09-09 10:10:02", "license": "1", "title": "Against the flow", "text": "", "album_id": "72157624218075171", "longitude": "106.689713", "url_o": "https://farm5.staticflickr.com/4140/4864011441_63e81fdf79_o.jpg", "secret": "d25ed3d8a5", "media": "photo", "latitude": "10.773846", "id": "4864011441", "tags": "road bike digital canon geotagged eos 350d rebel xt kiss traffic n scooter vietnam motorbike rushhour tamron saigon hochiminhcity canonrebelxt congestion 18270 canonkissdigitaln tamron18270"}, {"datetaken": "2009-09-10 08:28:13", "license": "1", "title": "Driving in the rain", "text": "", "album_id": "72157624218075171", "longitude": "106.666334", "url_o": "https://farm7.staticflickr.com/6182/6103814127_a0f818223d_o.jpg", "secret": "b3e62b73a7", "media": "photo", "latitude": "10.753999", "id": "6103814127", "tags": "china road street city reflection wet lines rain bike bicycle digital umbrella canon buildings reflections geotagged eos 350d rebel xt town kiss chinatown power traffic n vietnam motorbike chi rush hour moto motor ho asphalt tamron minh saigon canonrebelxt 2009 cholon 18270 canonkissdigitaln tamron18270"}, {"datetaken": "2009-09-10 10:33:11", "license": "1", "title": "School is out", "text": "", "album_id": "72157624218075171", "longitude": "106.654222", "url_o": "https://farm7.staticflickr.com/6061/6100638407_2ab100d403_o.jpg", "secret": "b72556b254", "media": "photo", "latitude": "10.752007", "id": "6100638407", "tags": "china road street city school bike bicycle digital canon children geotagged eos 350d rebel xt parents town gate kiss chinatown child traffic n vietnam motorbike parent chi rush hour moto motor ho tamron minh saigon canonrebelxt 2009 cholon 18270 canonkissdigitaln tamron18270"}, {"datetaken": "2009-09-10 10:40:25", "license": "1", "title": "A done deal?", "text": "", "album_id": "72157624218075171", "longitude": "106.652741", "url_o": "https://farm5.staticflickr.com/4045/4583889754_a0685b615d_o.jpg", "secret": "1b5fa52290", "media": "photo", "latitude": "10.751312", "id": "4583889754", "tags": "people shop digital canon geotagged eos 350d rebel xt store kiss n streetscene vietnam tamron saigon hochiminhcity canonrebelxt cholon 18270 canonkissdigitaln tamron18270"}, {"datetaken": "2009-09-10 11:32:22", "license": "1", "title": "Cholon crossroads", "text": "", "album_id": "72157624218075171", "longitude": "106.659961", "url_o": "https://farm7.staticflickr.com/6067/6104360096_c08471971f_o.jpg", "secret": "39d7c8124d", "media": "photo", "latitude": "10.750563", "id": "6104360096", "tags": "china road street city tower cars car bike bicycle digital geotagged eos 350d rebel xt town kiss chinatown traffic flat n vietnam motorbike chi hour highrise moto motor ho tamron minh saigon canonrebelxt 2009 cholon 18270 canonkissdigitaln buildingscanon tamron18270 crossroadsrush"}, {"datetaken": "2009-09-10 11:32:53", "license": "1", "title": "Saigon Rush Hour", "text": "", "album_id": "72157624218075171", "longitude": "106.659564", "url_o": "https://farm5.staticflickr.com/4029/4548443949_9c20ec676e_o.jpg", "secret": "7e473ab180", "media": "photo", "latitude": "10.750742", "id": "4548443949", "tags": "china road street city bike bicycle digital canon honda geotagged eos 350d rebel xt town kiss chinatown traffic n vietnam motorbike chi rush hour moto motor ho om tamron minh saigon canonrebelxt 2009 xe cholon 18270 canonkissdigitaln tamron18270"}, {"datetaken": "2009-09-10 11:36:06", "license": "1", "title": "Chilling", "text": "", "album_id": "72157624218075171", "longitude": "106.659715", "url_o": "https://farm5.staticflickr.com/4003/4616280537_2c3b910b5a_o.jpg", "secret": "10fd0deb75", "media": "photo", "latitude": "10.750590", "id": "4616280537", "tags": "street digital canon geotagged eos 350d rebel xt kiss n streetscene vietnam motorbike tamron saigon hochiminhcity canonrebelxt cholon 18270 canonkissdigitaln tamron18270"}, {"datetaken": "2009-09-10 11:37:06", "license": "1", "title": "Evening traffic", "text": "", "album_id": "72157624218075171", "longitude": "106.658728", "url_o": "https://farm7.staticflickr.com/6187/6100639249_353c2eef27_o.jpg", "secret": "451f2c1255", "media": "photo", "latitude": "10.750837", "id": "6100639249", "tags": "china road street city sunset bike bicycle digital canon geotagged eos 350d rebel xt evening town kiss chinatown traffic sundown dusk n vietnam motorbike chi rush hour moto motor ho tamron minh saigon canonrebelxt 2009 cholon 18270 canonkissdigitaln tamron18270"}, {"datetaken": "2009-09-10 11:40:46", "license": "1", "title": "Family outing", "text": "", "album_id": "72157624218075171", "longitude": "106.659082", "url_o": "https://farm7.staticflickr.com/6205/6113570581_213f30c9e2_o.jpg", "secret": "85b94e7ede", "media": "photo", "latitude": "10.751037", "id": "6113570581", "tags": "china road street city bike bicycle digital canon honda geotagged eos 350d rebel xt town kiss chinatown traffic n vietnam motorbike chi rush hour moto motor ho om tamron minh saigon canonrebelxt 2009 xe cholon 18270 canonkissdigitaln tamron18270"}, {"datetaken": "2009-09-10 11:41:04", "license": "1", "title": "Endless stream", "text": "", "album_id": "72157624218075171", "longitude": "106.662966", "url_o": "https://farm4.staticflickr.com/3314/4617110082_1e929e4a19_o.jpg", "secret": "d995f2edf1", "media": "photo", "latitude": "10.750832", "id": "4617110082", "tags": "china road street city bridge bike bicycle digital canon geotagged eos 350d rebel xt town ramp kiss chinatown traffic n overpass vietnam motorbike chi rush hour moto motor ho tamron minh saigon canonrebelxt 2009 cholon 18270 canonkissdigitaln tamron18270"}, {"datetaken": "2012-02-06 00:55:25", "license": "3", "title": "Halloween Night", "text": "", "album_id": "72157629197277031", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7022/6828584669_96b5392de6_o.jpg", "secret": "e41953cbb3", "media": "photo", "latitude": "0", "id": "6828584669", "tags": ""}, {"datetaken": "2012-02-06 00:55:26", "license": "3", "title": "Halloween Night Pumpkins", "text": "", "album_id": "72157629197277031", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7154/6828584731_3ae80721cf_o.jpg", "secret": "fd148c2d16", "media": "photo", "latitude": "0", "id": "6828584731", "tags": ""}, {"datetaken": "2012-02-06 00:55:27", "license": "3", "title": "Halloween Night Pumpkins", "text": "", "album_id": "72157629197277031", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7159/6828584795_0ef3a614a0_o.jpg", "secret": "229877e7a0", "media": "photo", "latitude": "0", "id": "6828584795", "tags": ""}, {"datetaken": "2012-02-06 00:55:28", "license": "3", "title": "Halloween Night Pumpkins", "text": "", "album_id": "72157629197277031", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7142/6828584847_a699a4ca11_o.jpg", "secret": "f64c6c63ff", "media": "photo", "latitude": "0", "id": "6828584847", "tags": ""}, {"datetaken": "2012-02-06 00:55:29", "license": "3", "title": "Halloween Night Pumpkins", "text": "", "album_id": "72157629197277031", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6828584897_55af648154_o.jpg", "secret": "00352a8a55", "media": "photo", "latitude": "0", "id": "6828584897", "tags": ""}, {"datetaken": "2012-02-06 00:55:31", "license": "3", "title": "Halloween Night", "text": "", "album_id": "72157629197277031", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7003/6828584975_1ddc594f7c_o.jpg", "secret": "f0c0c5b0c9", "media": "photo", "latitude": "0", "id": "6828584975", "tags": ""}, {"datetaken": "2012-02-06 00:55:33", "license": "3", "title": "Halloween Night Pumpkins", "text": "", "album_id": "72157629197277031", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7009/6828585033_95943fb104_o.jpg", "secret": "8063bdaa8d", "media": "photo", "latitude": "0", "id": "6828585033", "tags": ""}, {"datetaken": "2012-02-06 00:55:34", "license": "3", "title": "Halloween Night Pumpkins", "text": "", "album_id": "72157629197277031", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6828585077_b93b8c2f83_o.jpg", "secret": "205103f31c", "media": "photo", "latitude": "0", "id": "6828585077", "tags": ""}, {"datetaken": "2012-02-06 00:55:35", "license": "3", "title": "Halloween Night Pumpkins", "text": "", "album_id": "72157629197277031", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7162/6828585119_9b5fed8ff0_o.jpg", "secret": "a0e278daff", "media": "photo", "latitude": "0", "id": "6828585119", "tags": ""}, {"datetaken": "2012-02-06 00:55:36", "license": "3", "title": "Halloween Night", "text": "", "album_id": "72157629197277031", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7141/6828585179_eaaafc9474_o.jpg", "secret": "f1e20fb9ec", "media": "photo", "latitude": "0", "id": "6828585179", "tags": ""}, {"datetaken": "2012-02-06 00:55:38", "license": "3", "title": "Halloween Night", "text": "", "album_id": "72157629197277031", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7002/6828585291_c806f15318_o.jpg", "secret": "f30834019c", "media": "photo", "latitude": "0", "id": "6828585291", "tags": ""}, {"datetaken": "2012-02-06 00:55:40", "license": "3", "title": "Halloween Night", "text": "", "album_id": "72157629197277031", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7016/6828585367_a2e0e20c0b_o.jpg", "secret": "54c653ed9d", "media": "photo", "latitude": "0", "id": "6828585367", "tags": ""}, {"datetaken": "2004-10-20 08:20:10", "license": "1", "title": "Montreal Underground", "text": "", "album_id": "152764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6111577_f17aa53900_o.jpg", "secret": "f17aa53900", "media": "photo", "latitude": "0", "id": "6111577", "tags": "montreal canada 2005"}, {"datetaken": "2004-10-20 08:52:28", "license": "1", "title": "Oratoire Saint-Joseph", "text": "", "album_id": "152764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6111586_fef0f38c51_o.jpg", "secret": "fef0f38c51", "media": "photo", "latitude": "0", "id": "6111586", "tags": "montreal canada 2005"}, {"datetaken": "2004-10-20 08:58:31", "license": "1", "title": "View from Oratoire Saint-Joseph", "text": "", "album_id": "152764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6111588_6e6060e853_o.jpg", "secret": "6e6060e853", "media": "photo", "latitude": "0", "id": "6111588", "tags": "montreal canada 2005"}, {"datetaken": "2004-10-20 09:52:11", "license": "1", "title": "The Original Church", "text": "", "album_id": "152764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6111591_e7ac766153_o.jpg", "secret": "e7ac766153", "media": "photo", "latitude": "0", "id": "6111591", "tags": "montreal canada 2005"}, {"datetaken": "2004-10-20 10:16:38", "license": "1", "title": "Its almost time for Halloween", "text": "", "album_id": "152764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6111594_ca9d4eaacc_o.jpg", "secret": "ca9d4eaacc", "media": "photo", "latitude": "0", "id": "6111594", "tags": "montreal canada 2005"}, {"datetaken": "2004-10-20 11:09:29", "license": "1", "title": "166_6658", "text": "", "album_id": "152764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6111603_2412adb8e7_o.jpg", "secret": "2412adb8e7", "media": "photo", "latitude": "0", "id": "6111603", "tags": "montreal canada 2005"}, {"datetaken": "2004-10-20 13:49:56", "license": "1", "title": "Eglise Notre Dame", "text": "", "album_id": "152764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6111608_8099c9cd66_o.jpg", "secret": "8099c9cd66", "media": "photo", "latitude": "0", "id": "6111608", "tags": "montreal canada 2005"}, {"datetaken": "2004-10-20 14:29:38", "license": "1", "title": "Vieux-Port", "text": "", "album_id": "152764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6111610_ab83183b46_o.jpg", "secret": "ab83183b46", "media": "photo", "latitude": "0", "id": "6111610", "tags": "montreal canada 2005"}, {"datetaken": "2004-10-20 15:28:04", "license": "1", "title": "Pointe-a-Calliere", "text": "", "album_id": "152764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6111609_fcd9a3f2a3_o.jpg", "secret": "fcd9a3f2a3", "media": "photo", "latitude": "0", "id": "6111609", "tags": "montreal canada 2005"}, {"datetaken": "2004-10-20 15:42:41", "license": "1", "title": "Vieux-Port", "text": "", "album_id": "152764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6111612_b3624e555d_o.jpg", "secret": "b3624e555d", "media": "photo", "latitude": "0", "id": "6111612", "tags": "montreal canada 2005"}, {"datetaken": "2010-05-05 16:39:51", "license": "3", "title": "Zero vs Nil", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/4970831494_6cf4029465_o.jpg", "secret": "682deb4195", "media": "photo", "latitude": "0", "id": "4970831494", "tags": ""}, {"datetaken": "2010-05-05 17:18:46", "license": "3", "title": "To Porto", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/4970220003_79510d6aec_o.jpg", "secret": "3106e8cd1d", "media": "photo", "latitude": "0", "id": "4970220003", "tags": ""}, {"datetaken": "2010-05-05 17:20:29", "license": "3", "title": "Douro river", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/4970220713_85cfafdf9a_o.jpg", "secret": "a3fd9ac51f", "media": "photo", "latitude": "0", "id": "4970220713", "tags": ""}, {"datetaken": "2010-05-05 17:24:33", "license": "3", "title": "Mike the mermaid", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4087/4970832764_1a6fb3dfde_o.jpg", "secret": "48cdde724f", "media": "photo", "latitude": "0", "id": "4970832764", "tags": ""}, {"datetaken": "2010-05-05 17:27:53", "license": "3", "title": "We hate the rain", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4146/4970833228_ffa6d2fe74_o.jpg", "secret": "6fe3d504b2", "media": "photo", "latitude": "0", "id": "4970833228", "tags": ""}, {"datetaken": "2010-05-05 17:30:41", "license": "3", "title": "Fuck", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/4970221925_e5e21e8bd7_o.jpg", "secret": "77e1751efe", "media": "photo", "latitude": "0", "id": "4970221925", "tags": ""}, {"datetaken": "2010-05-05 17:35:36", "license": "3", "title": "Joey's House", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/4970223097_21427c098c_o.jpg", "secret": "95cbd24e1a", "media": "photo", "latitude": "0", "id": "4970223097", "tags": ""}, {"datetaken": "2010-05-05 17:43:46", "license": "3", "title": "Andiamo a Etna", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4085/4970224647_8e7cf0ac99_o.jpg", "secret": "eef4d65922", "media": "photo", "latitude": "0", "id": "4970224647", "tags": ""}, {"datetaken": "2010-05-05 17:44:25", "license": "3", "title": "Palermo", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/4970837034_9a9e3e8f50_o.jpg", "secret": "5ca2eb768b", "media": "photo", "latitude": "0", "id": "4970837034", "tags": ""}, {"datetaken": "2010-05-05 17:45:00", "license": "3", "title": "Isola de Mozia", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/4970837910_342b5ec5f5_o.jpg", "secret": "d028c76e2e", "media": "photo", "latitude": "0", "id": "4970837910", "tags": ""}, {"datetaken": "2010-05-05 17:48:50", "license": "3", "title": "Cho Lon District", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/4970838382_fcc9bbeff6_o.jpg", "secret": "02ba2221bb", "media": "photo", "latitude": "0", "id": "4970838382", "tags": ""}, {"datetaken": "2010-05-05 18:14:18", "license": "3", "title": "Bubble of consumerism", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/4970227495_83e8bec4b1_o.jpg", "secret": "4081bab1a4", "media": "photo", "latitude": "0", "id": "4970227495", "tags": ""}, {"datetaken": "2010-05-05 18:14:52", "license": "3", "title": "Super Organism", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/4970227869_37a523e629_o.jpg", "secret": "4c67cfa113", "media": "photo", "latitude": "0", "id": "4970227869", "tags": ""}, {"datetaken": "2010-05-05 18:15:28", "license": "3", "title": "Kate and her Bike", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/4970228131_73813da80b_o.jpg", "secret": "f9de6a21e7", "media": "photo", "latitude": "0", "id": "4970228131", "tags": ""}, {"datetaken": "2010-05-05 18:16:04", "license": "3", "title": "Happy Halloween", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/4970840494_40af9266f6_o.jpg", "secret": "1cc0cd035c", "media": "photo", "latitude": "0", "id": "4970840494", "tags": ""}, {"datetaken": "2010-05-05 18:17:07", "license": "3", "title": "Esspresso and a laburu", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/4970229877_b751fe8572_o.jpg", "secret": "a782254329", "media": "photo", "latitude": "0", "id": "4970229877", "tags": ""}, {"datetaken": "2010-05-05 18:17:48", "license": "3", "title": "Unsweetened sweets", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/4970230385_0b2fa1bf1d_o.jpg", "secret": "55af95a1d4", "media": "photo", "latitude": "0", "id": "4970230385", "tags": ""}, {"datetaken": "2010-05-05 18:19:03", "license": "3", "title": "Balloon Man", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4124/4970849314_201a86da47_o.jpg", "secret": "fc066f6d12", "media": "photo", "latitude": "0", "id": "4970849314", "tags": ""}, {"datetaken": "2010-05-05 18:19:37", "license": "3", "title": "Big fish eat the little ones", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/4970233723_0f5416d35d_o.jpg", "secret": "9f2c604d7b", "media": "photo", "latitude": "0", "id": "4970233723", "tags": ""}, {"datetaken": "2010-05-05 18:20:26", "license": "3", "title": "Dancing Cat", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4970846212_c316d830dd_o.jpg", "secret": "2f623e2bfe", "media": "photo", "latitude": "0", "id": "4970846212", "tags": ""}, {"datetaken": "2010-05-05 18:27:24", "license": "3", "title": "Kate's the King of Bongo", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4087/4970846634_956a858f61_o.jpg", "secret": "dfd25f6804", "media": "photo", "latitude": "0", "id": "4970846634", "tags": ""}, {"datetaken": "2010-05-05 18:31:35", "license": "3", "title": "old lady has a cat", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/4970235587_fedb740abc_o.jpg", "secret": "1529d981f9", "media": "photo", "latitude": "0", "id": "4970235587", "tags": ""}, {"datetaken": "2010-05-05 18:32:07", "license": "3", "title": "Read me", "text": "", "album_id": "72157624907734984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/4970847284_260c713343_o.jpg", "secret": "499293137d", "media": "photo", "latitude": "0", "id": "4970847284", "tags": ""}, {"datetaken": "2007-01-09 18:00:04", "license": "1", "title": "Accident", "text": "", "album_id": "72157594470524497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/352300651_3f6bb0af93_o.jpg", "secret": "3f6bb0af93", "media": "photo", "latitude": "0", "id": "352300651", "tags": ""}, {"datetaken": "2007-01-09 18:00:10", "license": "1", "title": "Bex1", "text": "", "album_id": "72157594470524497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/352300745_d0f3947564_o.jpg", "secret": "d0f3947564", "media": "photo", "latitude": "0", "id": "352300745", "tags": ""}, {"datetaken": "2007-01-09 18:00:15", "license": "1", "title": "BexJimTussle", "text": "", "album_id": "72157594470524497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/352300829_22e2387bde_o.jpg", "secret": "22e2387bde", "media": "photo", "latitude": "0", "id": "352300829", "tags": ""}, {"datetaken": "2007-01-09 18:00:21", "license": "1", "title": "Chris&Miranda", "text": "", "album_id": "72157594470524497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/352300910_74ec586d31_o.jpg", "secret": "74ec586d31", "media": "photo", "latitude": "0", "id": "352300910", "tags": ""}, {"datetaken": "2007-01-09 18:00:23", "license": "1", "title": "HAT DAY 001", "text": "", "album_id": "72157594470524497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/352300956_b5c5b89be4_o.jpg", "secret": "b5c5b89be4", "media": "photo", "latitude": "0", "id": "352300956", "tags": ""}, {"datetaken": "2007-01-09 18:00:27", "license": "1", "title": "Hoch1", "text": "", "album_id": "72157594470524497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/352301019_49c119724f_o.jpg", "secret": "49c119724f", "media": "photo", "latitude": "0", "id": "352301019", "tags": ""}, {"datetaken": "2007-01-09 18:00:28", "license": "1", "title": "jacob likes cake 2", "text": "", "album_id": "72157594470524497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/352301035_b0bb08b992_o.jpg", "secret": "b0bb08b992", "media": "photo", "latitude": "0", "id": "352301035", "tags": ""}, {"datetaken": "2007-01-09 18:00:30", "license": "1", "title": "jacob shockers", "text": "", "album_id": "72157594470524497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/352301064_81b2a2e292_o.jpg", "secret": "81b2a2e292", "media": "photo", "latitude": "0", "id": "352301064", "tags": ""}, {"datetaken": "2007-01-09 18:00:30", "license": "1", "title": "jacob likes cake", "text": "", "album_id": "72157594470524497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/352301054_a336b3adf7_o.jpg", "secret": "a336b3adf7", "media": "photo", "latitude": "0", "id": "352301054", "tags": ""}, {"datetaken": "2007-01-09 18:00:36", "license": "1", "title": "KaraDannonLiz1", "text": "", "album_id": "72157594470524497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/352301153_fb0f2a2a44_o.jpg", "secret": "fb0f2a2a44", "media": "photo", "latitude": "0", "id": "352301153", "tags": ""}, {"datetaken": "2007-01-09 18:00:41", "license": "1", "title": "PartyGroupShot", "text": "", "album_id": "72157594470524497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/352301240_4b666b22c3_o.jpg", "secret": "4b666b22c3", "media": "photo", "latitude": "0", "id": "352301240", "tags": ""}, {"datetaken": "2007-01-09 18:00:44", "license": "1", "title": "plez and lauren gettin freaky", "text": "", "album_id": "72157594470524497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/352301277_82bdd867a5_o.jpg", "secret": "82bdd867a5", "media": "photo", "latitude": "0", "id": "352301277", "tags": ""}, {"datetaken": "2007-01-09 18:00:46", "license": "1", "title": "Plez and Wells halloween", "text": "", "album_id": "72157594470524497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/352301319_9d59136af5_o.jpg", "secret": "9d59136af5", "media": "photo", "latitude": "0", "id": "352301319", "tags": ""}, {"datetaken": "2007-01-09 18:00:52", "license": "1", "title": "Plez1", "text": "", "album_id": "72157594470524497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/352301412_c097d7806c_o.jpg", "secret": "c097d7806c", "media": "photo", "latitude": "0", "id": "352301412", "tags": ""}, {"datetaken": "2007-01-09 18:00:56", "license": "1", "title": "Plez2", "text": "", "album_id": "72157594470524497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/352301493_037d218234_o.jpg", "secret": "037d218234", "media": "photo", "latitude": "0", "id": "352301493", "tags": ""}, {"datetaken": "2007-01-09 18:00:59", "license": "1", "title": "schmirnoff may cause ass grab", "text": "", "album_id": "72157594470524497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/352301527_c0e7e52876_o.jpg", "secret": "c0e7e52876", "media": "photo", "latitude": "0", "id": "352301527", "tags": ""}, {"datetaken": "2002-11-01 12:05:02", "license": "0", "title": "DSC00004", "text": "", "album_id": "167476", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6711181_da29ff71f2_o.jpg", "secret": "da29ff71f2", "media": "photo", "latitude": "0", "id": "6711181", "tags": "castro halloween \u30cf\u30ed\u30a6\u30a3\u30fc\u30f3 sanfrancisco \u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3 \u30ab\u30b9\u30c8\u30ed"}, {"datetaken": "2002-11-01 14:47:01", "license": "0", "title": "DSC00014", "text": "", "album_id": "167476", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6711217_889614e4a0_o.jpg", "secret": "889614e4a0", "media": "photo", "latitude": "0", "id": "6711217", "tags": "castro halloween \u30cf\u30ed\u30a6\u30a3\u30fc\u30f3 sanfrancisco \u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3 \u30ab\u30b9\u30c8\u30ed"}, {"datetaken": "2002-11-01 14:54:48", "license": "0", "title": "DSC00016", "text": "", "album_id": "167476", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6711219_bfeb868f2d_o.jpg", "secret": "bfeb868f2d", "media": "photo", "latitude": "0", "id": "6711219", "tags": "castro halloween \u30cf\u30ed\u30a6\u30a3\u30fc\u30f3 sanfrancisco \u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3 \u30ab\u30b9\u30c8\u30ed"}, {"datetaken": "2002-11-01 14:57:57", "license": "0", "title": "DSC00021", "text": "", "album_id": "167476", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6711236_7e677d2147_o.jpg", "secret": "7e677d2147", "media": "photo", "latitude": "0", "id": "6711236", "tags": "castro halloween \u30cf\u30ed\u30a6\u30a3\u30fc\u30f3 sanfrancisco \u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3 \u30ab\u30b9\u30c8\u30ed"}, {"datetaken": "2002-11-01 15:13:56", "license": "0", "title": "DSC00024", "text": "", "album_id": "167476", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6711245_82eafcb800_o.jpg", "secret": "82eafcb800", "media": "photo", "latitude": "0", "id": "6711245", "tags": "castro halloween \u30cf\u30ed\u30a6\u30a3\u30fc\u30f3 sanfrancisco \u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3 \u30ab\u30b9\u30c8\u30ed"}, {"datetaken": "2002-11-01 15:25:46", "license": "0", "title": "DSC00026", "text": "", "album_id": "167476", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6711246_8e48a5ef38_o.jpg", "secret": "8e48a5ef38", "media": "photo", "latitude": "0", "id": "6711246", "tags": "castro halloween \u30cf\u30ed\u30a6\u30a3\u30fc\u30f3 sanfrancisco \u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3 \u30ab\u30b9\u30c8\u30ed"}, {"datetaken": "2002-11-01 15:32:04", "license": "0", "title": "DSC00030", "text": "", "album_id": "167476", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6711251_43aa2a35bc_o.jpg", "secret": "43aa2a35bc", "media": "photo", "latitude": "0", "id": "6711251", "tags": "castro halloween \u30cf\u30ed\u30a6\u30a3\u30fc\u30f3 sanfrancisco \u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3 \u30ab\u30b9\u30c8\u30ed"}, {"datetaken": "2002-11-01 15:32:19", "license": "0", "title": "DSC00031", "text": "", "album_id": "167476", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6711265_88dfe4aeb3_o.jpg", "secret": "88dfe4aeb3", "media": "photo", "latitude": "0", "id": "6711265", "tags": "castro halloween \u30cf\u30ed\u30a6\u30a3\u30fc\u30f3 sanfrancisco \u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3 \u30ab\u30b9\u30c8\u30ed"}, {"datetaken": "2002-11-01 15:32:42", "license": "0", "title": "DSC00032", "text": "", "album_id": "167476", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6711268_dc05098eac_o.jpg", "secret": "dc05098eac", "media": "photo", "latitude": "0", "id": "6711268", "tags": "castro halloween \u30cf\u30ed\u30a6\u30a3\u30fc\u30f3 sanfrancisco \u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3 \u30ab\u30b9\u30c8\u30ed"}, {"datetaken": "2002-11-01 15:35:43", "license": "0", "title": "DSC00033", "text": "", "album_id": "167476", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6711270_ea4a8ec886_o.jpg", "secret": "ea4a8ec886", "media": "photo", "latitude": "0", "id": "6711270", "tags": "castro halloween \u30cf\u30ed\u30a6\u30a3\u30fc\u30f3 sanfrancisco \u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3 \u30ab\u30b9\u30c8\u30ed"}, {"datetaken": "2002-11-01 15:55:57", "license": "0", "title": "DSC00034", "text": "", "album_id": "167476", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6711271_ce26fef830_o.jpg", "secret": "ce26fef830", "media": "photo", "latitude": "0", "id": "6711271", "tags": "castro halloween \u30cf\u30ed\u30a6\u30a3\u30fc\u30f3 sanfrancisco \u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3 \u30ab\u30b9\u30c8\u30ed"}, {"datetaken": "2002-11-01 15:56:51", "license": "4", "title": "DSC00035", "text": "", "album_id": "167476", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6711274_4d838344d8_o.jpg", "secret": "4d838344d8", "media": "photo", "latitude": "0", "id": "6711274", "tags": "sanfrancisco halloween funny castro \u7b11 \u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3 \u30cf\u30ed\u30a6\u30a3\u30fc\u30f3 \u30ab\u30b9\u30c8\u30ed \u9762\u767d\u3044"}, {"datetaken": "2002-11-01 15:57:05", "license": "0", "title": "Feed Me!", "text": "", "album_id": "167476", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6711280_72201f3daf_o.jpg", "secret": "72201f3daf", "media": "photo", "latitude": "0", "id": "6711280", "tags": "castro halloween \u30cf\u30ed\u30a6\u30a3\u30fc\u30f3 sanfrancisco \u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3 \u30ab\u30b9\u30c8\u30ed"}, {"datetaken": "2010-10-08 18:08:34", "license": "3", "title": "DSC_0005", "text": "", "album_id": "72157625179918732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/5088706570_b2baa38977_o.jpg", "secret": "1f1fec2b12", "media": "photo", "latitude": "0", "id": "5088706570", "tags": "halloween pumpkins"}, {"datetaken": "2010-10-08 18:08:50", "license": "3", "title": "DSC_0008", "text": "", "album_id": "72157625179918732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4107/5088110949_eb8d9ec405_o.jpg", "secret": "b19488d39d", "media": "photo", "latitude": "0", "id": "5088110949", "tags": "halloween pumpkins"}, {"datetaken": "2010-10-08 18:08:52", "license": "3", "title": "DSC_0009", "text": "", "album_id": "72157625179918732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4085/5088112949_f14e097788_o.jpg", "secret": "d3564789ee", "media": "photo", "latitude": "0", "id": "5088112949", "tags": "halloween pumpkins"}, {"datetaken": "2010-10-08 18:09:19", "license": "3", "title": "DSC_0010", "text": "", "album_id": "72157625179918732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/5088712882_40c9c71517_o.jpg", "secret": "a4764f8550", "media": "photo", "latitude": "0", "id": "5088712882", "tags": "halloween pumpkins"}, {"datetaken": "2010-10-08 18:09:21", "license": "3", "title": "DSC_0012", "text": "", "album_id": "72157625179918732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/5088714842_a046f0c666_o.jpg", "secret": "9404740b0c", "media": "photo", "latitude": "0", "id": "5088714842", "tags": "halloween pumpkins"}, {"datetaken": "2010-10-08 18:09:23", "license": "3", "title": "DSC_0013", "text": "", "album_id": "72157625179918732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/5088119129_aac1a0706c_o.jpg", "secret": "b94d3749a5", "media": "photo", "latitude": "0", "id": "5088119129", "tags": "halloween pumpkins"}, {"datetaken": "2010-10-08 18:09:41", "license": "3", "title": "DSC_0014", "text": "", "album_id": "72157625179918732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4124/5088121045_d3ca5003d0_o.jpg", "secret": "49d1eb40f5", "media": "photo", "latitude": "0", "id": "5088121045", "tags": "halloween pumpkins"}, {"datetaken": "2010-10-08 18:09:57", "license": "3", "title": "DSC_0016", "text": "", "album_id": "72157625179918732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/5088122887_dd033b7211_o.jpg", "secret": "6ed488ccff", "media": "photo", "latitude": "0", "id": "5088122887", "tags": "halloween pumpkins"}, {"datetaken": "2010-10-08 18:10:26", "license": "3", "title": "DSC_0020", "text": "", "album_id": "72157625179918732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/5088722214_7f0eb7e439_o.jpg", "secret": "900c984fcc", "media": "photo", "latitude": "0", "id": "5088722214", "tags": "halloween pumpkins"}, {"datetaken": "2010-10-08 18:10:56", "license": "3", "title": "DSC_0022", "text": "", "album_id": "72157625179918732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4149/5088724566_17a7232400_o.jpg", "secret": "b64346a3a9", "media": "photo", "latitude": "0", "id": "5088724566", "tags": "halloween pumpkins"}, {"datetaken": "2010-10-08 18:11:06", "license": "3", "title": "DSC_0023", "text": "", "album_id": "72157625179918732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/5088129347_33ed0f7810_o.jpg", "secret": "4430326269", "media": "photo", "latitude": "0", "id": "5088129347", "tags": "halloween pumpkins"}, {"datetaken": "2010-10-08 18:54:26", "license": "3", "title": "DSC_0024", "text": "", "album_id": "72157625179918732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/5088131897_24c3ff70f7_o.jpg", "secret": "d9d859be42", "media": "photo", "latitude": "0", "id": "5088131897", "tags": "halloween pumpkins"}, {"datetaken": "2010-10-08 18:54:41", "license": "3", "title": "DSC_0026", "text": "", "album_id": "72157625179918732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4088/5088133887_2279722ccf_o.jpg", "secret": "2cf7c06b04", "media": "photo", "latitude": "0", "id": "5088133887", "tags": "halloween pumpkins"}, {"datetaken": "2010-10-08 18:55:01", "license": "3", "title": "DSC_0027", "text": "", "album_id": "72157625179918732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4092/5088734170_d3694d70a5_o.jpg", "secret": "b380b65665", "media": "photo", "latitude": "0", "id": "5088734170", "tags": "halloween pumpkins"}, {"datetaken": "2010-10-08 18:55:08", "license": "3", "title": "DSC_0031", "text": "", "album_id": "72157625179918732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4083/5088139073_89df62b5a1_o.jpg", "secret": "17e8520536", "media": "photo", "latitude": "0", "id": "5088139073", "tags": "halloween pumpkins"}, {"datetaken": "2010-10-08 18:55:18", "license": "3", "title": "DSC_0032", "text": "", "album_id": "72157625179918732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/5088141697_c11da1e5d8_o.jpg", "secret": "b4274989ac", "media": "photo", "latitude": "0", "id": "5088141697", "tags": "halloween pumpkins"}, {"datetaken": "2010-05-22 13:30:47", "license": "2", "title": "Hatchet", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4069/4634157971_3923db4cf8_o.jpg", "secret": "55c72e5d45", "media": "photo", "latitude": "33.945579", "id": "4634157971", "tags": "creation hatchet adamgreen fangoria weekendofhorrors"}, {"datetaken": "2010-05-22 13:49:49", "license": "2", "title": "Fangoria #1", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4026/4634730580_50845e6d4a_o.jpg", "secret": "788d478e6b", "media": "photo", "latitude": "33.945579", "id": "4634730580", "tags": "creation fangoria weekendofhorrors"}, {"datetaken": "2010-05-22 14:14:48", "license": "2", "title": "Michael", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm4.staticflickr.com/3362/4634746718_3597c7b198_o.jpg", "secret": "e460c1af20", "media": "photo", "latitude": "33.945579", "id": "4634746718", "tags": "halloween mask creation fangoria weekendofhorrors michaelmyers theshape"}, {"datetaken": "2010-05-22 14:52:16", "license": "2", "title": "Heather Langenkamp", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4007/4634731416_f1893f76d7_o.jpg", "secret": "25b0ddc36d", "media": "photo", "latitude": "33.945579", "id": "4634731416", "tags": "creation nancy freddykrueger fangoria nightmareonelmstreet weekendofhorrors heatherlangenkamp"}, {"datetaken": "2010-05-22 15:20:41", "license": "2", "title": "Vendors", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4014/4634749614_c730a0176a_o.jpg", "secret": "b814a9d80c", "media": "photo", "latitude": "33.945579", "id": "4634749614", "tags": "creation fangoria weekendofhorrors"}, {"datetaken": "2010-05-22 15:23:16", "license": "2", "title": "IMG_0151", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4004/4634754824_b661c6015d_o.jpg", "secret": "8304805931", "media": "photo", "latitude": "33.945579", "id": "4634754824", "tags": "creation fangoria weekendofhorrors"}, {"datetaken": "2010-05-22 15:28:54", "license": "2", "title": "Hatchet II", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4012/4634732620_fdcaa391b7_o.jpg", "secret": "666bfb87d1", "media": "photo", "latitude": "33.945579", "id": "4634732620", "tags": "creation hatchet adamgreen fangoria kanehodder weekendofhorrors tonytodd danielleharris"}, {"datetaken": "2010-05-22 15:30:06", "license": "2", "title": "Adam Green", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4070/4634134385_9daa9b0fc5_o.jpg", "secret": "021e10b199", "media": "photo", "latitude": "33.945579", "id": "4634134385", "tags": "creation hatchet adamgreen fangoria kanehodder weekendofhorrors"}, {"datetaken": "2010-05-22 15:33:21", "license": "2", "title": "Kane Hodder", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4016/4634735398_a1039cb30e_o.jpg", "secret": "f5149ee866", "media": "photo", "latitude": "33.945579", "id": "4634735398", "tags": "jason creation fridaythe13th hatchet fangoria kanehodder vorhees weekendofhorrors"}, {"datetaken": "2010-05-22 15:43:53", "license": "2", "title": "Hatchet II", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm4.staticflickr.com/3368/4634137411_41a520c107_o.jpg", "secret": "8fda3b2385", "media": "photo", "latitude": "33.945579", "id": "4634137411", "tags": "creation hatchet adamgreen fangoria kanehodder weekendofhorrors danielleharris"}, {"datetaken": "2010-05-22 15:48:59", "license": "2", "title": "Danielle Harris", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4024/4634738318_373616d9bb_o.jpg", "secret": "aaa5ee2c17", "media": "photo", "latitude": "33.945579", "id": "4634738318", "tags": "halloween creation hatchet fangoria weekendofhorrors danielleharris"}, {"datetaken": "2010-05-22 15:51:45", "license": "2", "title": "Kane Hodder", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4004/4634140087_07c0264488_o.jpg", "secret": "ef09fd1321", "media": "photo", "latitude": "33.945579", "id": "4634140087", "tags": "jason creation fridaythe13th hatchet fangoria kanehodder vorhees weekendofhorrors"}, {"datetaken": "2010-05-22 16:18:08", "license": "2", "title": "IMG_0274", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4031/4634753760_6fb4811500_o.jpg", "secret": "777df31659", "media": "photo", "latitude": "33.945579", "id": "4634753760", "tags": "creation fangoria weekendofhorrors"}, {"datetaken": "2010-05-22 16:28:10", "license": "2", "title": "Robert Englund", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4065/4634740270_65774a64bc_o.jpg", "secret": "cc09b9eab2", "media": "photo", "latitude": "33.945579", "id": "4634740270", "tags": "creation freddy freddykrueger fangoria nightmareonelmstreet weekendofhorrors robertenglund"}, {"datetaken": "2010-05-22 16:28:37", "license": "2", "title": "Robert Englund", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4053/4634741676_566dda75b2_o.jpg", "secret": "fba9ca2187", "media": "photo", "latitude": "33.945579", "id": "4634741676", "tags": "creation freddy freddykrueger fangoria nightmareonelmstreet weekendofhorrors robertenglund"}, {"datetaken": "2010-05-22 16:31:16", "license": "2", "title": "Robert Englund", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4054/4634742858_c24868604f_o.jpg", "secret": "976ccde704", "media": "photo", "latitude": "33.945579", "id": "4634742858", "tags": "creation freddy freddykrueger fangoria nightmareonelmstreet weekendofhorrors robertenglund"}, {"datetaken": "2010-05-22 16:39:44", "license": "2", "title": "Robert Englund", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm4.staticflickr.com/3333/4634744278_8e4b863e8c_o.jpg", "secret": "b9fef67a16", "media": "photo", "latitude": "33.945579", "id": "4634744278", "tags": "creation freddy freddykrueger fangoria nightmareonelmstreet weekendofhorrors robertenglund"}, {"datetaken": "2010-05-22 16:44:25", "license": "2", "title": "Robert Englund", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4020/4634145957_c0ef198e0b_o.jpg", "secret": "e1744baec2", "media": "photo", "latitude": "33.945579", "id": "4634145957", "tags": "creation freddy freddykrueger fangoria nightmareonelmstreet weekendofhorrors robertenglund"}, {"datetaken": "2010-05-22 17:32:47", "license": "2", "title": "IMG_0345", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4070/4634150669_a88ec92709_o.jpg", "secret": "6e0c56094c", "media": "photo", "latitude": "33.945579", "id": "4634150669", "tags": "creation fangoria weekendofhorrors"}, {"datetaken": "2010-05-22 18:15:25", "license": "2", "title": "IMG_0346", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm4.staticflickr.com/3341/4634751290_62565a50c7_o.jpg", "secret": "8516f4dfc9", "media": "photo", "latitude": "33.945579", "id": "4634751290", "tags": "creation fangoria weekendofhorrors"}, {"datetaken": "2010-05-22 18:17:29", "license": "2", "title": "IMG_0347", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm4.staticflickr.com/3106/4634152225_b06bfaebcb_o.jpg", "secret": "fbf0fa55e4", "media": "photo", "latitude": "33.945579", "id": "4634152225", "tags": "creation fridaythe13th fangoria weekendofhorrors jasonvorhees"}, {"datetaken": "2010-05-22 18:47:29", "license": "2", "title": "IMG_0363", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm4.staticflickr.com/3364/4634153005_c97a5966b9_o.jpg", "secret": "faeba16e8c", "media": "photo", "latitude": "33.945579", "id": "4634153005", "tags": "creation fangoria weekendofhorrors"}, {"datetaken": "2010-05-22 19:56:13", "license": "2", "title": "The Jasons", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4046/4634748150_2670a66026_o.jpg", "secret": "4e7c42df5e", "media": "photo", "latitude": "33.945579", "id": "4634748150", "tags": "jason creation fridaythe13th fangoria kanehodder weekendofhorrors"}, {"datetaken": "2010-05-22 20:09:37", "license": "2", "title": "Head & Tail", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm5.staticflickr.com/4072/4634757226_1c2cfbf802_o.jpg", "secret": "cc4e71d9e0", "media": "photo", "latitude": "33.945579", "id": "4634757226", "tags": "creation fangoria weekendofhorrors humancentipede ashlynnyennie akihirokitamura"}, {"datetaken": "2010-05-22 20:18:57", "license": "2", "title": "IMG_0419", "text": "", "album_id": "72157623999649361", "longitude": "-118.385032", "url_o": "https://farm4.staticflickr.com/3340/4634755882_bfc5895d50_o.jpg", "secret": "6cc11219f7", "media": "photo", "latitude": "33.945579", "id": "4634755882", "tags": "creation fangoria weekendofhorrors"}, {"datetaken": "2010-10-23 17:40:38", "license": "3", "title": "Eyeballs-on-a-stick", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/5110141321_d9bcf80081_o.jpg", "secret": "98ca97db4f", "media": "photo", "latitude": "0", "id": "5110141321", "tags": "halloween"}, {"datetaken": "2010-10-23 18:19:12", "license": "3", "title": "Scary lady", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/5110140159_fd1f30e99c_o.jpg", "secret": "c9ef37060e", "media": "photo", "latitude": "0", "id": "5110140159", "tags": "halloween"}, {"datetaken": "2010-10-23 18:19:23", "license": "3", "title": "Get away!", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1343/5110736628_54972b5396_o.jpg", "secret": "a53f598bf9", "media": "photo", "latitude": "0", "id": "5110736628", "tags": "halloween"}, {"datetaken": "2010-10-23 18:19:27", "license": "3", "title": "Just a kiss", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1135/5110741216_752833ee89_o.jpg", "secret": "d4826ef474", "media": "photo", "latitude": "0", "id": "5110741216", "tags": "halloween"}, {"datetaken": "2010-10-23 18:19:31", "license": "3", "title": "Get away!", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1199/5110139893_65c1331029_o.jpg", "secret": "d55790be17", "media": "photo", "latitude": "0", "id": "5110139893", "tags": "halloween"}, {"datetaken": "2010-10-23 18:37:49", "license": "3", "title": "Munchies", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1384/5110139643_48af02419a_o.jpg", "secret": "64f3787f39", "media": "photo", "latitude": "0", "id": "5110139643", "tags": "halloween"}, {"datetaken": "2010-10-23 18:38:36", "license": "3", "title": "Goblin brains", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1337/5110739250_e9e931b2ee_o.jpg", "secret": "22acb27904", "media": "photo", "latitude": "0", "id": "5110739250", "tags": "halloween"}, {"datetaken": "2010-10-23 18:38:52", "license": "3", "title": "Munchies", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/5110737748_3259707ea5_o.jpg", "secret": "af685c7811", "media": "photo", "latitude": "0", "id": "5110737748", "tags": "halloween"}, {"datetaken": "2010-10-23 18:39:07", "license": "3", "title": "Goblin brains", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1175/5110138271_55f219d759_o.jpg", "secret": "7068fcca29", "media": "photo", "latitude": "0", "id": "5110138271", "tags": "halloween"}, {"datetaken": "2010-10-23 18:39:33", "license": "3", "title": "Snot salad & tapenade", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1144/5110729350_bcdb135144_o.jpg", "secret": "71625834d5", "media": "photo", "latitude": "0", "id": "5110729350", "tags": "halloween"}, {"datetaken": "2010-10-23 20:41:20", "license": "3", "title": "Rawk!", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4085/5110135237_02d6618013_o.jpg", "secret": "b0c606a4b4", "media": "photo", "latitude": "0", "id": "5110135237", "tags": "halloween"}, {"datetaken": "2010-10-23 20:41:24", "license": "3", "title": "Rocker Jorgen & Scary Annejet", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1309/5110131409_5685e4a839_o.jpg", "secret": "df42ffc8a7", "media": "photo", "latitude": "0", "id": "5110131409", "tags": "halloween"}, {"datetaken": "2010-10-23 20:42:07", "license": "3", "title": "Demon Sven", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1409/5110132151_0c93c7bd7d_o.jpg", "secret": "c19e8dddab", "media": "photo", "latitude": "0", "id": "5110132151", "tags": "halloween"}, {"datetaken": "2010-10-23 20:42:37", "license": "3", "title": "Pirate monster Ank", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4087/5110134499_737f053253_o.jpg", "secret": "508f7715ea", "media": "photo", "latitude": "0", "id": "5110134499", "tags": "halloween"}, {"datetaken": "2010-10-23 20:54:26", "license": "3", "title": "Annejet & Patrick", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/5110733292_d001eae062_o.jpg", "secret": "ebc3c95936", "media": "photo", "latitude": "0", "id": "5110733292", "tags": "halloween"}, {"datetaken": "2010-10-23 20:55:02", "license": "3", "title": "Demon Sven", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4106/5110730766_65e91949e1_o.jpg", "secret": "b2712d4ffc", "media": "photo", "latitude": "0", "id": "5110730766", "tags": "halloween"}, {"datetaken": "2010-10-23 20:57:07", "license": "3", "title": "Burlesque Ellen", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1437/5110133803_5fac75fa06_o.jpg", "secret": "9c0a18f29e", "media": "photo", "latitude": "0", "id": "5110133803", "tags": "halloween"}, {"datetaken": "2010-10-23 21:01:42", "license": "3", "title": "Demon love", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1050/5110136045_3444c31198_o.jpg", "secret": "9c1ebbf938", "media": "photo", "latitude": "0", "id": "5110136045", "tags": "halloween"}, {"datetaken": "2010-10-23 21:01:48", "license": "3", "title": "Demon loooooove", "text": "", "album_id": "72157625230652462", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1177/5110730112_4ef7b212f0_o.jpg", "secret": "c8e6be6516", "media": "photo", "latitude": "0", "id": "5110730112", "tags": "halloween"}, {"datetaken": "2010-10-25 01:47:10", "license": "6", "title": "My little king", "text": "", "album_id": "72157625231799556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/5110811387_81f3666638_o.jpg", "secret": "c0c36a278c", "media": "photo", "latitude": "0", "id": "5110811387", "tags": ""}, {"datetaken": "2010-10-25 01:47:13", "license": "6", "title": "she wants to climb up.....", "text": "", "album_id": "72157625231799556", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1248/5110811559_2aa594a916_o.jpg", "secret": "1f25cd333c", "media": "photo", "latitude": "0", "id": "5110811559", "tags": ""}, {"datetaken": "2010-10-25 01:47:18", "license": "6", "title": "almost there!! >.<~~", "text": "", "album_id": "72157625231799556", "longitude": "114.128465", "url_o": "https://farm2.staticflickr.com/1371/5110811805_343347a18e_o.jpg", "secret": "ce6308c971", "media": "photo", "latitude": "22.500940", "id": "5110811805", "tags": ""}, {"datetaken": "2010-10-25 01:47:22", "license": "6", "title": "OK! ^0^", "text": "", "album_id": "72157625231799556", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1130/5111413930_fab2828d61_o.jpg", "secret": "a7e66fcc04", "media": "photo", "latitude": "0", "id": "5111413930", "tags": ""}, {"datetaken": "2010-10-25 01:47:24", "license": "6", "title": "Happy Halloween!", "text": "", "album_id": "72157625231799556", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1088/5111414034_8a342e434f_o.jpg", "secret": "00a7ac4efd", "media": "photo", "latitude": "0", "id": "5111414034", "tags": ""}, {"datetaken": "2010-10-25 01:47:26", "license": "6", "title": "Just waiting", "text": "", "album_id": "72157625231799556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/5110812279_61086de1e5_o.jpg", "secret": "cf1cac3b6a", "media": "photo", "latitude": "0", "id": "5110812279", "tags": ""}, {"datetaken": "2010-10-25 01:47:29", "license": "6", "title": "Japan style", "text": "", "album_id": "72157625231799556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/5110812469_015c491344_o.jpg", "secret": "6b9ec615fb", "media": "photo", "latitude": "0", "id": "5110812469", "tags": ""}, {"datetaken": "2010-10-25 01:47:31", "license": "6", "title": "He is gentleman, right? (lol)", "text": "", "album_id": "72157625231799556", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1118/5111414414_641abfbeba_o.jpg", "secret": "68c5708b98", "media": "photo", "latitude": "0", "id": "5111414414", "tags": ""}, {"datetaken": "2010-10-25 01:47:33", "license": "6", "title": "He looks got a one eye......:P", "text": "", "album_id": "72157625231799556", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1117/5111414510_ba7d8538f2_o.jpg", "secret": "4d9b008709", "media": "photo", "latitude": "0", "id": "5111414510", "tags": ""}, {"datetaken": "2010-10-25 01:47:36", "license": "6", "title": "Nice dream.....", "text": "", "album_id": "72157625231799556", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1154/5111414652_159a760310_o.jpg", "secret": "fdbd0d6bda", "media": "photo", "latitude": "0", "id": "5111414652", "tags": ""}, {"datetaken": "2010-10-23 20:04:37", "license": "3", "title": "hooded deer halloween weezie and me_1", "text": "", "album_id": "72157625231750582", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1106/5112037066_5161c6f417_o.jpg", "secret": "6e21d3e1e4", "media": "photo", "latitude": "0", "id": "5112037066", "tags": ""}, {"datetaken": "2010-10-23 20:32:55", "license": "3", "title": "hooded deer halloween outtake", "text": "", "album_id": "72157625231750582", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1113/5111394243_6c5baee2a0_o.jpg", "secret": "f515c543cf", "media": "photo", "latitude": "0", "id": "5111394243", "tags": ""}, {"datetaken": "2010-10-23 20:36:59", "license": "3", "title": "DSC_0353", "text": "", "album_id": "72157625231750582", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4088/5110796807_6a93462cdf_o.jpg", "secret": "a79f3d50c0", "media": "photo", "latitude": "0", "id": "5110796807", "tags": ""}, {"datetaken": "2010-10-23 20:37:33", "license": "3", "title": "sweat-a-saurus", "text": "", "album_id": "72157625231750582", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1321/5110797611_c048698cfe_o.jpg", "secret": "706b1469e2", "media": "photo", "latitude": "0", "id": "5110797611", "tags": ""}, {"datetaken": "2010-10-23 20:38:04", "license": "3", "title": "lady gaga", "text": "", "album_id": "72157625231750582", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1185/5110798423_bc2a672ea1_o.jpg", "secret": "b643123bd0", "media": "photo", "latitude": "0", "id": "5110798423", "tags": ""}, {"datetaken": "2010-10-23 20:39:11", "license": "3", "title": "tails are so conformist.", "text": "", "album_id": "72157625231750582", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1077/5110795457_e1381d97aa_o.jpg", "secret": "9a8b0726cd", "media": "photo", "latitude": "0", "id": "5110795457", "tags": ""}, {"datetaken": "2010-10-23 20:40:54", "license": "3", "title": "Meghan aka Ke$ha", "text": "", "album_id": "72157625231750582", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/5111467108_abb6ca3caa_o.jpg", "secret": "4283a98cc0", "media": "photo", "latitude": "0", "id": "5111467108", "tags": ""}, {"datetaken": "2010-10-23 21:03:12", "license": "3", "title": "in bus_4", "text": "", "album_id": "72157625231750582", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1384/5111378345_744db865fc_o.jpg", "secret": "090d64609b", "media": "photo", "latitude": "0", "id": "5111378345", "tags": ""}, {"datetaken": "2010-10-23 22:19:37", "license": "3", "title": "hahahaha dave.", "text": "", "album_id": "72157625231750582", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1319/5111497382_43a8abc082_o.jpg", "secret": "b1b8a977a4", "media": "photo", "latitude": "0", "id": "5111497382", "tags": ""}, {"datetaken": "2010-10-23 22:30:02", "license": "3", "title": "DSC_0455", "text": "", "album_id": "72157625231750582", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1117/5111467136_b87fb8f6cc_o.jpg", "secret": "9e50a5a7e5", "media": "photo", "latitude": "0", "id": "5111467136", "tags": ""}, {"datetaken": "2010-10-23 22:37:40", "license": "3", "title": "DSC_0475", "text": "", "album_id": "72157625231750582", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1054/5110895815_e1904c8988_o.jpg", "secret": "1bc1b1fa80", "media": "photo", "latitude": "0", "id": "5110895815", "tags": ""}, {"datetaken": "2007-01-25 19:34:52", "license": "6", "title": "A Bit Older", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/122/369362775_8f04a434ac_o.jpg", "secret": "8f04a434ac", "media": "photo", "latitude": "0", "id": "369362775", "tags": ""}, {"datetaken": "2007-01-25 21:25:03", "license": "6", "title": "Lynchian", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/369369676_4055edbd36_o.jpg", "secret": "4055edbd36", "media": "photo", "latitude": "0", "id": "369369676", "tags": ""}, {"datetaken": "2007-01-25 21:25:44", "license": "6", "title": "Toothless", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/369369682_570818ae23_o.jpg", "secret": "570818ae23", "media": "photo", "latitude": "0", "id": "369369682", "tags": ""}, {"datetaken": "2007-01-25 23:18:26", "license": "6", "title": "What the fuck is that shirt?", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/369362774_4053c8d34b_o.jpg", "secret": "4053c8d34b", "media": "photo", "latitude": "0", "id": "369362774", "tags": ""}, {"datetaken": "2007-01-25 23:18:26", "license": "6", "title": "Young", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/369362772_094a62f0f7_o.jpg", "secret": "094a62f0f7", "media": "photo", "latitude": "0", "id": "369362772", "tags": ""}, {"datetaken": "2007-01-25 23:18:26", "license": "6", "title": "Jesus, Mary and Joseph", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/369354999_ad0066ae2b_o.jpg", "secret": "ad0066ae2b", "media": "photo", "latitude": "0", "id": "369354999", "tags": ""}, {"datetaken": "2007-01-25 23:18:26", "license": "6", "title": "Danger Mouse and Thomas", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/369354988_66745729a4_o.jpg", "secret": "66745729a4", "media": "photo", "latitude": "0", "id": "369354988", "tags": ""}, {"datetaken": "2007-01-25 23:18:27", "license": "6", "title": "Fancy Dress", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/369369679_e041b23362_o.jpg", "secret": "e041b23362", "media": "photo", "latitude": "0", "id": "369369679", "tags": ""}, {"datetaken": "2007-01-25 23:18:27", "license": "6", "title": "Devil", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/369354995_3da70df4b0_o.jpg", "secret": "3da70df4b0", "media": "photo", "latitude": "0", "id": "369354995", "tags": ""}, {"datetaken": "2007-01-25 23:18:28", "license": "6", "title": "Cast", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/169/369362767_d471396f43_o.jpg", "secret": "d471396f43", "media": "photo", "latitude": "0", "id": "369362767", "tags": ""}, {"datetaken": "2007-01-25 23:18:28", "license": "6", "title": "Box", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/369354992_dbbb996291_o.jpg", "secret": "dbbb996291", "media": "photo", "latitude": "0", "id": "369354992", "tags": ""}, {"datetaken": "2007-01-25 23:18:28", "license": "6", "title": "Dad", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/369381848_30f4d4b74d_o.jpg", "secret": "30f4d4b74d", "media": "photo", "latitude": "0", "id": "369381848", "tags": ""}, {"datetaken": "2007-01-25 23:18:29", "license": "6", "title": "School Photo", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/369369684_b4ad51c930_o.jpg", "secret": "b4ad51c930", "media": "photo", "latitude": "0", "id": "369369684", "tags": ""}, {"datetaken": "2007-01-25 23:18:29", "license": "6", "title": "Tiny Me", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/369354986_83ec0f0d17_o.jpg", "secret": "83ec0f0d17", "media": "photo", "latitude": "0", "id": "369354986", "tags": ""}, {"datetaken": "2007-01-25 23:18:30", "license": "6", "title": "Glasses", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/369369683_ef21111ce7_o.jpg", "secret": "ef21111ce7", "media": "photo", "latitude": "0", "id": "369369683", "tags": ""}, {"datetaken": "2007-01-25 23:18:30", "license": "6", "title": "Cutting Edge", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/369362768_21b4eaa7c9_o.jpg", "secret": "21b4eaa7c9", "media": "photo", "latitude": "0", "id": "369362768", "tags": ""}, {"datetaken": "2007-01-25 23:18:30", "license": "6", "title": "Apple II", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/369362763_c01df25402_o.jpg", "secret": "c01df25402", "media": "photo", "latitude": "0", "id": "369362763", "tags": ""}, {"datetaken": "2007-01-25 23:18:31", "license": "6", "title": "Messy Eater", "text": "", "album_id": "72157594519612355", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/369354994_8772ef2d88_o.jpg", "secret": "8772ef2d88", "media": "photo", "latitude": "0", "id": "369354994", "tags": ""}, {"datetaken": "2002-10-31 01:46:54", "license": "1", "title": "Multipass!", "text": "", "album_id": "137301", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5451982_d5f1adef64_o.jpg", "secret": "d5f1adef64", "media": "photo", "latitude": "0", "id": "5451982", "tags": "halloween fifthelement 2002"}, {"datetaken": "2002-10-31 02:28:48", "license": "1", "title": "Yee-ha, Jester's dead", "text": "", "album_id": "137301", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5451986_6da6f50f07_o.jpg", "secret": "6da6f50f07", "media": "photo", "latitude": "0", "id": "5451986", "tags": "halloween jon 2002"}, {"datetaken": "2002-11-02 00:21:00", "license": "1", "title": "e-xterminator", "text": "", "album_id": "137301", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5451987_0c99129314_o.jpg", "secret": "0c99129314", "media": "photo", "latitude": "0", "id": "5451987", "tags": "halloween nick 2002"}, {"datetaken": "2002-11-02 00:21:11", "license": "1", "title": "Big Pimpin'", "text": "", "album_id": "137301", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5451988_50c9eec641_o.jpg", "secret": "50c9eec641", "media": "photo", "latitude": "0", "id": "5451988", "tags": "halloween corbett 2002"}, {"datetaken": "2002-11-02 00:21:47", "license": "1", "title": "Spike", "text": "", "album_id": "137301", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5451989_198e814552_o.jpg", "secret": "198e814552", "media": "photo", "latitude": "0", "id": "5451989", "tags": "halloween buffy jon spike 2002"}, {"datetaken": "2002-11-02 00:22:55", "license": "1", "title": "OMG! They Killed Kenny!", "text": "", "album_id": "137301", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5451995_259cdb7f40_o.jpg", "secret": "259cdb7f40", "media": "photo", "latitude": "0", "id": "5451995", "tags": "2002 halloween kevin kenny kevincheng kevnull"}, {"datetaken": "2002-11-02 00:25:34", "license": "1", "title": "Psycho Victim", "text": "", "album_id": "137301", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5451997_6c105d91ac_o.jpg", "secret": "6c105d91ac", "media": "photo", "latitude": "0", "id": "5451997", "tags": "halloween 2002"}, {"datetaken": "2002-11-02 00:26:34", "license": "1", "title": "Royal Tennenbaums", "text": "", "album_id": "137301", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5452001_cc8ebac494_o.jpg", "secret": "cc8ebac494", "media": "photo", "latitude": "0", "id": "5452001", "tags": "halloween 2002"}, {"datetaken": "2002-11-02 00:38:57", "license": "1", "title": "Darth Hula", "text": "", "album_id": "137301", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5452002_9fa7509398_o.jpg", "secret": "9fa7509398", "media": "photo", "latitude": "0", "id": "5452002", "tags": "halloween darthmaul 2002"}, {"datetaken": "2002-11-02 00:45:24", "license": "1", "title": "PICT0012", "text": "", "album_id": "137301", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5452005_100748bb24_o.jpg", "secret": "100748bb24", "media": "photo", "latitude": "0", "id": "5452005", "tags": "halloween drew 2002"}, {"datetaken": "2002-11-02 00:46:46", "license": "1", "title": "Reign of Fire", "text": "", "album_id": "137301", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5452006_91b9714e4b_o.jpg", "secret": "91b9714e4b", "media": "photo", "latitude": "0", "id": "5452006", "tags": "halloween adam 2002"}, {"datetaken": "2002-11-02 00:47:22", "license": "1", "title": "You Bastards!", "text": "", "album_id": "137301", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5452009_2bade0f90c_o.jpg", "secret": "2bade0f90c", "media": "photo", "latitude": "0", "id": "5452009", "tags": "2002 halloween kevin kenny kevincheng kevnull"}, {"datetaken": "2010-10-26 09:26:43", "license": "1", "title": "DSC_5179", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1202/5117569725_f0b64611af_o.jpg", "secret": "3e5d40b472", "media": "photo", "latitude": "0", "id": "5117569725", "tags": "eventholidayhalloween peoplefamilyprogenyben thingtenderroots locationnorthamericausavaarlingtonclarendontenderroots"}, {"datetaken": "2010-10-26 09:26:44", "license": "1", "title": "DSC_5180", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1354/5118190978_713d7c520d_o.jpg", "secret": "19f8678cc6", "media": "photo", "latitude": "0", "id": "5118190978", "tags": "eventholidayhalloween peoplefamilyprogenyben thingtenderroots locationnorthamericausavaarlingtonclarendontenderroots"}, {"datetaken": "2010-10-26 09:26:45", "license": "1", "title": "DSC_5181", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1253/5117684627_66708aba4c_o.jpg", "secret": "90a12b5891", "media": "photo", "latitude": "0", "id": "5117684627", "tags": "eventholidayhalloween peoplefamilyprogenyben thingtenderroots locationnorthamericausavaarlingtonclarendontenderroots"}, {"datetaken": "2010-10-26 09:27:23", "license": "1", "title": "DSC_5182", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1223/5118244870_a646139345_o.jpg", "secret": "871daa1a88", "media": "photo", "latitude": "0", "id": "5118244870", "tags": "eventholidayhalloween peoplefamilyprogenyben thingtenderroots locationnorthamericausavaarlingtonclarendontenderroots"}, {"datetaken": "2010-10-26 09:27:24", "license": "1", "title": "DSC_5183", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1395/5118243178_a4d75c59eb_o.jpg", "secret": "3ec2e43d0f", "media": "photo", "latitude": "0", "id": "5118243178", "tags": "eventholidayhalloween peoplefamilyprogenyben thingtenderroots locationnorthamericausavaarlingtonclarendontenderroots"}, {"datetaken": "2010-10-26 09:29:06", "license": "1", "title": "DSC_5184", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1066/5118246192_c7f16dd414_o.jpg", "secret": "4c1bc2c4b0", "media": "photo", "latitude": "0", "id": "5118246192", "tags": "eventholidayhalloween thingtenderroots locationnorthamericausavaarlingtonclarendontenderroots peopleplaymateweston"}, {"datetaken": "2010-10-26 09:31:37", "license": "1", "title": "DSC_5200", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1414/5118144668_ba46c341f7_o.jpg", "secret": "fa96577fc5", "media": "photo", "latitude": "0", "id": "5118144668", "tags": "eventholidayhalloween thingtenderroots locationnorthamericausavaarlingtonclarendontenderroots peopleplaymateweston"}, {"datetaken": "2010-10-26 09:31:38", "license": "1", "title": "DSC_5201", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1154/5117544781_a26dbd4a14_o.jpg", "secret": "7d02ed92ed", "media": "photo", "latitude": "0", "id": "5117544781", "tags": "eventholidayhalloween thingtenderroots locationnorthamericausavaarlingtonclarendontenderroots peopleplaymateweston"}, {"datetaken": "2010-10-26 09:40:46", "license": "1", "title": "DSC_5227", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1062/5118187442_e4a7dba87f_o.jpg", "secret": "b3d714311a", "media": "photo", "latitude": "0", "id": "5118187442", "tags": "eventholidayhalloween peoplefamilyprogenyben thingtenderroots peoplefriendgloria locationnorthamericausavaarlingtonclarendontenderroots"}, {"datetaken": "2010-10-26 09:40:46", "license": "1", "title": "DSC_5228", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1425/5117584713_cc818a1eaf_o.jpg", "secret": "f5667145ff", "media": "photo", "latitude": "0", "id": "5117584713", "tags": "eventholidayhalloween peoplefamilyprogenyben thingtenderroots peoplefriendgloria locationnorthamericausavaarlingtonclarendontenderroots"}, {"datetaken": "2010-10-26 09:47:35", "license": "1", "title": "DSC_5259", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1318/5118206908_c819e94fb3_o.jpg", "secret": "c0befa7f2f", "media": "photo", "latitude": "0", "id": "5118206908", "tags": "locationnorthamericausavaarlingtonclarendon eventholidayhalloween peoplefamilyprogenyben thingtenderroots"}, {"datetaken": "2010-10-26 09:48:50", "license": "1", "title": "DSC_5260", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1124/5118194632_ab0bb7472d_o.jpg", "secret": "d91fa4f44a", "media": "photo", "latitude": "0", "id": "5118194632", "tags": "locationnorthamericausavaarlingtonclarendon eventholidayhalloween thingtenderroots"}, {"datetaken": "2010-10-26 09:49:09", "license": "1", "title": "DSC_5261", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4130/5118123394_df945e6b3e_o.jpg", "secret": "cbf6f16d14", "media": "photo", "latitude": "0", "id": "5118123394", "tags": "locationnorthamericausavaarlingtonclarendon eventholidayhalloween thingtenderroots peopleplaymateweston"}, {"datetaken": "2010-10-26 09:49:10", "license": "1", "title": "DSC_5262", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4126/5117523601_dbfbaf6723_o.jpg", "secret": "678bd83a9e", "media": "photo", "latitude": "0", "id": "5117523601", "tags": "locationnorthamericausavaarlingtonclarendon eventholidayhalloween thingtenderroots peopleplaymateweston"}, {"datetaken": "2010-10-26 09:49:11", "license": "1", "title": "DSC_5263", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/5117525505_1a6eb86242_o.jpg", "secret": "70c3121293", "media": "photo", "latitude": "0", "id": "5117525505", "tags": "locationnorthamericausavaarlingtonclarendon eventholidayhalloween thingtenderroots peopleplaymateweston"}, {"datetaken": "2010-10-26 09:50:20", "license": "1", "title": "DSC_5264", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1373/5118116468_bd7fbfce6b_o.jpg", "secret": "cb2ef4cac3", "media": "photo", "latitude": "0", "id": "5118116468", "tags": "locationnorthamericausavaarlingtonclarendon eventholidayhalloween thingtenderroots"}, {"datetaken": "2010-10-26 09:50:38", "license": "1", "title": "DSC_5265", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1194/5117689069_c6866e3886_o.jpg", "secret": "4cd1462a7e", "media": "photo", "latitude": "0", "id": "5117689069", "tags": "locationnorthamericausavaarlingtonclarendon eventholidayhalloween thingtenderroots"}, {"datetaken": "2010-10-26 09:50:44", "license": "1", "title": "DSC_5266", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1317/5117614643_a715ffa659_o.jpg", "secret": "56321f6217", "media": "photo", "latitude": "0", "id": "5117614643", "tags": "locationnorthamericausavaarlingtonclarendon eventholidayhalloween thingtenderroots"}, {"datetaken": "2010-10-26 10:10:23", "license": "1", "title": "DSC_5270", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1105/5118205330_4996cb06ea_o.jpg", "secret": "b658d39989", "media": "photo", "latitude": "0", "id": "5118205330", "tags": "locationnorthamericausavaarlingtonclarendon eventholidayhalloween thingtenderroots peopleplaymateweston"}, {"datetaken": "2010-10-26 10:10:24", "license": "1", "title": "DSC_5271", "text": "", "album_id": "72157625129431759", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1055/5117435905_d814b7ffa3_o.jpg", "secret": "da146e48a6", "media": "photo", "latitude": "0", "id": "5117435905", "tags": "locationnorthamericausavaarlingtonclarendon eventholidayhalloween thingtenderroots peopleplaymateweston"}, {"datetaken": "2010-10-23 23:12:18", "license": "4", "title": "", "text": "", "album_id": "72157625138326527", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/5124819752_905d54119e_o.jpg", "secret": "0a55133ab9", "media": "photo", "latitude": "0", "id": "5124819752", "tags": "house halloween"}, {"datetaken": "2010-10-23 23:12:38", "license": "4", "title": "", "text": "", "album_id": "72157625138326527", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/5124820826_72645d1d5f_o.jpg", "secret": "7c7470ef08", "media": "photo", "latitude": "0", "id": "5124820826", "tags": "house halloween"}, {"datetaken": "2010-10-23 23:15:18", "license": "4", "title": "", "text": "", "album_id": "72157625138326527", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1251/5124822034_5d6b8a917b_o.jpg", "secret": "4f15e40a55", "media": "photo", "latitude": "0", "id": "5124822034", "tags": "house halloween"}, {"datetaken": "2010-10-23 23:15:26", "license": "4", "title": "", "text": "", "album_id": "72157625138326527", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1124/5124217369_55b55f2aec_o.jpg", "secret": "a37473357c", "media": "photo", "latitude": "0", "id": "5124217369", "tags": "house halloween"}, {"datetaken": "2010-10-23 23:16:05", "license": "4", "title": "", "text": "", "album_id": "72157625138326527", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4124/5124824792_47d0c93c73_o.jpg", "secret": "94aa912c87", "media": "photo", "latitude": "0", "id": "5124824792", "tags": "house halloween"}, {"datetaken": "2010-10-23 23:16:20", "license": "4", "title": "", "text": "", "album_id": "72157625138326527", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1399/5124219675_053dd93201_o.jpg", "secret": "8c904f65e8", "media": "photo", "latitude": "0", "id": "5124219675", "tags": "house halloween"}, {"datetaken": "2010-10-23 23:17:02", "license": "4", "title": "", "text": "", "album_id": "72157625138326527", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/5124826682_6e821292bb_o.jpg", "secret": "bcc97a7801", "media": "photo", "latitude": "0", "id": "5124826682", "tags": "house halloween"}, {"datetaken": "2010-10-23 23:17:24", "license": "4", "title": "", "text": "", "album_id": "72157625138326527", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1074/5124827876_2b326e2b19_o.jpg", "secret": "e48c9fffeb", "media": "photo", "latitude": "0", "id": "5124827876", "tags": "house halloween"}, {"datetaken": "2010-10-23 23:17:51", "license": "4", "title": "", "text": "", "album_id": "72157625138326527", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1172/5124223137_d03bfd247f_o.jpg", "secret": "fa665e8d77", "media": "photo", "latitude": "0", "id": "5124223137", "tags": "house halloween"}, {"datetaken": "2010-10-23 23:17:57", "license": "4", "title": "", "text": "", "album_id": "72157625138326527", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/5124830848_005bb64992_o.jpg", "secret": "9d399bc8ee", "media": "photo", "latitude": "0", "id": "5124830848", "tags": "house halloween"}, {"datetaken": "2010-10-23 23:19:23", "license": "4", "title": "", "text": "", "album_id": "72157625138326527", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1064/5124832182_a2b767d670_o.jpg", "secret": "ff61b3dc6a", "media": "photo", "latitude": "0", "id": "5124832182", "tags": "house halloween"}, {"datetaken": "2010-10-28 15:18:54", "license": "2", "title": "Halloween Beer Festival 01", "text": "", "album_id": "72157625261743758", "longitude": "-0.174853", "url_o": "https://farm2.staticflickr.com/1327/5124259770_3039dc61be_o.jpg", "secret": "9937c981ef", "media": "photo", "latitude": "51.453605", "id": "5124259770", "tags": "halloween beer festival pub pubs beerfestival camra realale casks wandsworthcommon sw18 legothique wandsworthcommonhalloweenbeerfestival camraswl httpcamraswlorguk wwwtwittercomcamraswl wwwfacebookcomcamraswl"}, {"datetaken": "2010-10-28 15:37:04", "license": "2", "title": "Halloween Beer Festival 02", "text": "", "album_id": "72157625261743758", "longitude": "-0.174853", "url_o": "https://farm5.staticflickr.com/4041/5124261220_86b9af3a55_o.jpg", "secret": "4a44f1e54c", "media": "photo", "latitude": "51.453605", "id": "5124261220", "tags": "halloween beer festival pub pubs beerfestival camra realale casks wandsworthcommon sw18 legothique wandsworthcommonhalloweenbeerfestival hapennybrewery londonparticularrubyale camraswl httpcamraswlorguk wwwtwittercomcamraswl wwwfacebookcomcamraswl"}, {"datetaken": "2010-10-28 16:07:43", "license": "2", "title": "Halloween Beer Festival 03", "text": "", "album_id": "72157625261743758", "longitude": "-0.174853", "url_o": "https://farm5.staticflickr.com/4048/5123659565_bcb4db3332_o.jpg", "secret": "08bd2ed63f", "media": "photo", "latitude": "51.453605", "id": "5123659565", "tags": "halloween beer festival pub pubs beerfestival camra realale casks wandsworthcommon sw18 legothique wandsworthcommonhalloweenbeerfestival camraswl httpcamraswlorguk wwwtwittercomcamraswl wwwfacebookcomcamraswl"}, {"datetaken": "2010-10-28 16:07:57", "license": "2", "title": "Halloween Beer Festival 04", "text": "", "album_id": "72157625261743758", "longitude": "-0.174853", "url_o": "https://farm2.staticflickr.com/1324/5123661055_ee0201ee36_o.jpg", "secret": "4e337d706e", "media": "photo", "latitude": "51.453605", "id": "5123661055", "tags": "halloween beer festival pub pubs beerfestival camra realale casks wandsworthcommon sw18 legothique wandsworthcommonhalloweenbeerfestival camraswl httpcamraswlorguk wwwtwittercomcamraswl wwwfacebookcomcamraswl"}, {"datetaken": "2010-10-28 16:10:32", "license": "2", "title": "Halloween Beer Festival 05", "text": "", "album_id": "72157625261743758", "longitude": "-0.174853", "url_o": "https://farm5.staticflickr.com/4071/5123662287_a7c30767ed_o.jpg", "secret": "fa4f8f7b53", "media": "photo", "latitude": "51.453605", "id": "5123662287", "tags": "halloween beer festival pub pubs beerfestival camra realale casks wandsworthcommon sw18 legothique wandsworthcommonhalloweenbeerfestival camraswl httpcamraswlorguk wwwtwittercomcamraswl wwwfacebookcomcamraswl"}, {"datetaken": "2010-10-28 16:11:04", "license": "2", "title": "Halloween Beer Festival 06", "text": "", "album_id": "72157625261743758", "longitude": "-0.174853", "url_o": "https://farm2.staticflickr.com/1139/5124267010_1a7a6df178_o.jpg", "secret": "ca676feef2", "media": "photo", "latitude": "51.453605", "id": "5124267010", "tags": "halloween beer festival pub pubs beerfestival camra realale casks wandsworthcommon sw18 legothique wandsworthcommonhalloweenbeerfestival camraswl httpcamraswlorguk wwwtwittercomcamraswl wwwfacebookcomcamraswl"}, {"datetaken": "2010-10-28 16:13:14", "license": "2", "title": "Halloween Beer Festival 07", "text": "", "album_id": "72157625261743758", "longitude": "-0.174853", "url_o": "https://farm5.staticflickr.com/4050/5124267968_91c0816ae6_o.jpg", "secret": "0e9e57e4a2", "media": "photo", "latitude": "51.453605", "id": "5124267968", "tags": "halloween beer festival pub pubs beerfestival camra realale casks wandsworthcommon sw18 legothique wandsworthcommonhalloweenbeerfestival camraswl httpcamraswlorguk wwwtwittercomcamraswl wwwfacebookcomcamraswl"}, {"datetaken": "2010-10-28 16:21:58", "license": "2", "title": "Halloween Beer Festival 08", "text": "", "album_id": "72157625261743758", "longitude": "-0.174853", "url_o": "https://farm5.staticflickr.com/4132/5124268984_2eb804e97f_o.jpg", "secret": "522bc24388", "media": "photo", "latitude": "51.453605", "id": "5124268984", "tags": "halloween beer festival pub pubs beerfestival camra realale casks wandsworthcommon sw18 legothique wandsworthcommonhalloweenbeerfestival camraswl httpcamraswlorguk wwwtwittercomcamraswl wwwfacebookcomcamraswl"}, {"datetaken": "2010-10-28 17:28:30", "license": "2", "title": "Halloween Beer Festival 09", "text": "", "album_id": "72157625261743758", "longitude": "-0.174853", "url_o": "https://farm2.staticflickr.com/1343/5123666865_5de2493451_o.jpg", "secret": "49054a3166", "media": "photo", "latitude": "51.453605", "id": "5123666865", "tags": "halloween beer festival pub pubs beerfestival camra realale casks wandsworthcommon sw18 legothique wandsworthcommonhalloweenbeerfestival camraswl httpcamraswlorguk geoffstrawbridge"}, {"datetaken": "2010-10-28 18:01:55", "license": "2", "title": "Halloween Beer Festival 10", "text": "", "album_id": "72157625261743758", "longitude": "-0.174853", "url_o": "https://farm2.staticflickr.com/1145/5123667817_ff74f40cfc_o.jpg", "secret": "ee341c18c8", "media": "photo", "latitude": "51.453605", "id": "5123667817", "tags": "halloween beer festival pub pubs beerfestival camra realale casks wandsworthcommon sw18 legothique wandsworthcommonhalloweenbeerfestival camraswl httpcamraswlorguk wwwtwittercomcamraswl wwwfacebookcomcamraswl"}, {"datetaken": "2010-10-30 18:44:45", "license": "5", "title": "DSC_0590.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1432/5127676701_2d83400218_o.jpg", "secret": "3df2e69cdb", "media": "photo", "latitude": "0", "id": "5127676701", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-30 18:46:17", "license": "5", "title": "DSC_0591.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/5128281950_f14f30aae5_o.jpg", "secret": "0bbff98358", "media": "photo", "latitude": "0", "id": "5128281950", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-30 18:48:53", "license": "5", "title": "DSC_0593.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/5127682063_2a06af354a_o.jpg", "secret": "d9ab522fb4", "media": "photo", "latitude": "0", "id": "5127682063", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-30 18:54:09", "license": "5", "title": "DSC_0598.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1057/5127688419_fc82a55332_o.jpg", "secret": "e37338378a", "media": "photo", "latitude": "0", "id": "5127688419", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-30 19:01:58", "license": "5", "title": "DSC_0599.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1342/5127699621_cbb4d1e70a_o.jpg", "secret": "e332620cec", "media": "photo", "latitude": "0", "id": "5127699621", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-30 19:22:39", "license": "5", "title": "DSC_0602.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1406/5128330176_a544af73e8_o.jpg", "secret": "eb4a380d2b", "media": "photo", "latitude": "0", "id": "5128330176", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-30 19:27:00", "license": "5", "title": "DSC_0603.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1357/5127731723_2b38af6bd8_o.jpg", "secret": "7490ff7336", "media": "photo", "latitude": "0", "id": "5127731723", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-30 22:31:48", "license": "5", "title": "\u3068\u308a\u3063\u304f\u3042\u3068\u308a\u30fc\u3068", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/5128645560_17788cd6e4_o.jpg", "secret": "a80b461431", "media": "photo", "latitude": "0", "id": "5128645560", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-31 00:23:52", "license": "5", "title": "DSC_0605.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/5128258557_8205c0e419_o.jpg", "secret": "dbe2b1e11d", "media": "photo", "latitude": "0", "id": "5128258557", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-31 00:25:56", "license": "5", "title": "DSC_0607.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4083/5128868666_0f9ac1b9b6_o.jpg", "secret": "4649cd6ae3", "media": "photo", "latitude": "0", "id": "5128868666", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-31 00:29:56", "license": "5", "title": "DSC_0609.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1071/5128274243_6f5395c0a6_o.jpg", "secret": "52c1028ba6", "media": "photo", "latitude": "0", "id": "5128274243", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-31 00:32:55", "license": "5", "title": "DSC_0613.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4091/5128886684_412e9cdd4d_o.jpg", "secret": "709c2ba848", "media": "photo", "latitude": "0", "id": "5128886684", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-31 00:38:22", "license": "5", "title": "DSC_0614.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/5128296387_a4200c064e_o.jpg", "secret": "874c1dfa34", "media": "photo", "latitude": "0", "id": "5128296387", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-31 00:45:51", "license": "5", "title": "DSC_0615.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1264/5128315933_2d457877f6_o.jpg", "secret": "c35603d6b1", "media": "photo", "latitude": "0", "id": "5128315933", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-31 00:46:10", "license": "5", "title": "DSC_0616.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4149/5128923462_24f612fa54_o.jpg", "secret": "f6792fafc6", "media": "photo", "latitude": "0", "id": "5128923462", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-31 08:25:19", "license": "5", "title": "DSC_0617.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4130/5130134324_c200cacc27_o.jpg", "secret": "be74bff77e", "media": "photo", "latitude": "0", "id": "5130134324", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-31 08:25:40", "license": "5", "title": "DSC_0620.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/5130140188_d977ede46b_o.jpg", "secret": "454201a585", "media": "photo", "latitude": "0", "id": "5130140188", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-31 08:26:24", "license": "5", "title": "DSC_0623.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/5129542793_b9c16c8deb_o.jpg", "secret": "b66d2e7d3a", "media": "photo", "latitude": "0", "id": "5129542793", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-31 08:37:38", "license": "5", "title": "Aniomagic - Program your schemer", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1439/5129585885_631b131a35_o.jpg", "secret": "d83ef89b46", "media": "photo", "latitude": "0", "id": "5129585885", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-31 12:35:45", "license": "5", "title": "DSC_0627.JPG", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/5130763820_870b197b27_o.jpg", "secret": "8485bb4b57", "media": "photo", "latitude": "0", "id": "5130763820", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-31 23:06:35", "license": "5", "title": "Mask for Halloween with Sound Sensor", "text": "", "album_id": "72157625276203234", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1364/5134507343_091f22f706_o.jpg", "secret": "3a77df2e13", "media": "video", "latitude": "0", "id": "5134507343", "tags": "halloween mask craft led schemer lightboard soundsensor aniomagic \u96fb\u5b50\u624b\u82b8 denshisyugei"}, {"datetaken": "2010-10-30 14:06:15", "license": "3", "title": "Boerderijkamer", "text": "", "album_id": "72157625283215680", "longitude": "6.372131", "url_o": "https://farm2.staticflickr.com/1106/5133559786_38dfd209cc_o.jpg", "secret": "7d13992eb9", "media": "photo", "latitude": "52.253784", "id": "5133559786", "tags": ""}, {"datetaken": "2010-10-30 14:25:59", "license": "3", "title": "Halloween in het bos", "text": "", "album_id": "72157625283215680", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/5128521454_bc36a2e708_o.jpg", "secret": "38c1d41f7e", "media": "photo", "latitude": "0", "id": "5128521454", "tags": ""}, {"datetaken": "2010-10-30 15:20:48", "license": "3", "title": "Tja", "text": "", "album_id": "72157625283215680", "longitude": "6.428821", "url_o": "https://farm2.staticflickr.com/1321/5132958761_20a50c784f_o.jpg", "secret": "9b24f733e9", "media": "photo", "latitude": "52.299438", "id": "5132958761", "tags": ""}, {"datetaken": "2010-10-30 15:28:52", "license": "3", "title": "Canadian War Cemetery - Holten", "text": "", "album_id": "72157625283215680", "longitude": "6.428778", "url_o": "https://farm5.staticflickr.com/4002/5132959291_77431cc097_o.jpg", "secret": "9ca2d72ded", "media": "photo", "latitude": "52.299412", "id": "5132959291", "tags": ""}, {"datetaken": "2010-10-30 15:29:32", "license": "3", "title": "Canadian War Cemetery - Holten", "text": "", "album_id": "72157625283215680", "longitude": "6.428833", "url_o": "https://farm5.staticflickr.com/4029/5133561662_36e2144f3e_o.jpg", "secret": "5947eeee68", "media": "photo", "latitude": "52.299499", "id": "5133561662", "tags": ""}, {"datetaken": "2010-10-30 17:29:48", "license": "3", "title": "Na een dagje bossen is het goed rusten...", "text": "", "album_id": "72157625283215680", "longitude": "6.339517", "url_o": "https://farm2.staticflickr.com/1236/5128301795_c182cdc81d_o.jpg", "secret": "edaf71b371", "media": "photo", "latitude": "52.252761", "id": "5128301795", "tags": ""}, {"datetaken": "2010-10-30 18:27:41", "license": "3", "title": "Spoken", "text": "", "album_id": "72157625283215680", "longitude": "6.372131", "url_o": "https://farm5.staticflickr.com/4106/5129059968_3ba9e89c1c_o.jpg", "secret": "7b6d342cd7", "media": "photo", "latitude": "52.253784", "id": "5129059968", "tags": ""}, {"datetaken": "2010-10-30 20:38:24", "license": "3", "title": "Halloween dinner", "text": "", "album_id": "72157625283215680", "longitude": "6.339517", "url_o": "https://farm5.staticflickr.com/4069/5133567910_0403e617e7_o.jpg", "secret": "19412349a0", "media": "photo", "latitude": "52.252761", "id": "5133567910", "tags": ""}, {"datetaken": "2010-10-31 09:23:01", "license": "3", "title": "Twentse wegge", "text": "", "album_id": "72157625283215680", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1360/5133577264_ac3c084186_o.jpg", "secret": "5720728e5d", "media": "photo", "latitude": "0", "id": "5133577264", "tags": ""}, {"datetaken": "2010-10-31 11:22:02", "license": "3", "title": "Steenbok", "text": "", "album_id": "72157625283215680", "longitude": "6.420500", "url_o": "https://farm2.staticflickr.com/1370/5132976909_8cb9187094_o.jpg", "secret": "b0fa236e24", "media": "photo", "latitude": "52.297166", "id": "5132976909", "tags": ""}, {"datetaken": "2010-10-31 11:33:35", "license": "3", "title": "Bokito found a new victim", "text": "", "album_id": "72157625283215680", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/5132977397_be27198dea_o.jpg", "secret": "fbf66afb3c", "media": "photo", "latitude": "0", "id": "5132977397", "tags": ""}, {"datetaken": "2010-10-31 12:30:59", "license": "3", "title": "Grijze dag...", "text": "", "album_id": "72157625283215680", "longitude": "6.434000", "url_o": "https://farm5.staticflickr.com/4084/5130954897_fa26800fe2_o.jpg", "secret": "79e1d1ba12", "media": "photo", "latitude": "52.353500", "id": "5130954897", "tags": ""}, {"datetaken": "2010-10-31 12:31:05", "license": "3", "title": "Natuurpark Sallandse Heuvelrug", "text": "", "album_id": "72157625283215680", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1440/5133586986_65bb391ebf_o.jpg", "secret": "52dbff2e6f", "media": "photo", "latitude": "0", "id": "5133586986", "tags": ""}, {"datetaken": "2010-10-31 14:26:17", "license": "3", "title": "Gehaktballen in blik", "text": "", "album_id": "72157625283215680", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/5132986133_fae890f037_o.jpg", "secret": "e96c0266fb", "media": "photo", "latitude": "0", "id": "5132986133", "tags": ""}, {"datetaken": "2010-10-31 15:17:52", "license": "3", "title": "Anti-gas kinderwagens...", "text": "", "album_id": "72157625283215680", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/5133588098_2ec8be851c_o.jpg", "secret": "2f0201b67b", "media": "photo", "latitude": "0", "id": "5133588098", "tags": ""}, {"datetaken": "2010-10-31 15:46:05", "license": "3", "title": "Plafondschildering in Paleis het Loo", "text": "", "album_id": "72157625283215680", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/5132987269_640230e065_o.jpg", "secret": "971f971679", "media": "photo", "latitude": "0", "id": "5132987269", "tags": ""}, {"datetaken": "2010-10-31 16:06:32", "license": "3", "title": "Paleis het Loo", "text": "", "album_id": "72157625283215680", "longitude": "5.946096", "url_o": "https://farm5.staticflickr.com/4017/5132987853_68a118f391_o.jpg", "secret": "98b57770fd", "media": "photo", "latitude": "52.234272", "id": "5132987853", "tags": ""}, {"datetaken": "2010-10-31 16:08:49", "license": "3", "title": "Martijn in de paleistuinen", "text": "", "album_id": "72157625283215680", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1133/5132988455_7643f37f98_o.jpg", "secret": "3aeca05113", "media": "photo", "latitude": "0", "id": "5132988455", "tags": ""}, {"datetaken": "2010-10-31 16:08:53", "license": "3", "title": "Martijn in de paleistuinen", "text": "", "album_id": "72157625283215680", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1097/5133590562_162f27493a_o.jpg", "secret": "8561910c6c", "media": "photo", "latitude": "0", "id": "5133590562", "tags": ""}, {"datetaken": "2010-10-31 16:19:04", "license": "3", "title": "Paleis het Loo", "text": "", "album_id": "72157625283215680", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1163/5132989737_2b3062a23e_o.jpg", "secret": "9e46ef7b65", "media": "photo", "latitude": "0", "id": "5132989737", "tags": ""}, {"datetaken": "2010-10-31 16:25:46", "license": "3", "title": "Wandschildering in Paleis het Loo", "text": "", "album_id": "72157625283215680", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1382/5133591844_2a4abbc1f0_o.jpg", "secret": "8232d525ac", "media": "photo", "latitude": "0", "id": "5133591844", "tags": ""}, {"datetaken": "2010-10-31 16:39:41", "license": "3", "title": "Martijn op Paleis het Loo", "text": "", "album_id": "72157625283215680", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1047/5132990871_8e1dec3268_o.jpg", "secret": "721dc8bb4c", "media": "photo", "latitude": "0", "id": "5132990871", "tags": ""}, {"datetaken": "2010-10-31 17:12:03", "license": "3", "title": "Er komt mist opzetten", "text": "", "album_id": "72157625283215680", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/5133592888_d714c52521_o.jpg", "secret": "0af0a2c398", "media": "photo", "latitude": "0", "id": "5133592888", "tags": ""}, {"datetaken": "2010-10-31 17:28:36", "license": "3", "title": "Ondergaande zon tegemoet...", "text": "", "album_id": "72157625283215680", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4125/5131781121_6a41270c3d_o.jpg", "secret": "2478dac1e9", "media": "photo", "latitude": "0", "id": "5131781121", "tags": ""}, {"datetaken": "2010-10-31 17:37:22", "license": "3", "title": "Bizarre ondergaande zon", "text": "", "album_id": "72157625283215680", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1096/5133593868_d70ba4c63a_o.jpg", "secret": "7c90163670", "media": "photo", "latitude": "0", "id": "5133593868", "tags": ""}, {"datetaken": "2010-10-31 17:37:32", "license": "3", "title": "Bizarre ondergaande zon", "text": "", "album_id": "72157625283215680", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1132/5132993149_f0727491de_o.jpg", "secret": "5b9e543fa3", "media": "photo", "latitude": "0", "id": "5132993149", "tags": ""}, {"datetaken": "2010-10-29 20:05:52", "license": "3", "title": "Cannibal Pumpkin Alight", "text": "", "album_id": "72157625150106939", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1158/5129104933_91e92187b5_o.jpg", "secret": "091d14c2c4", "media": "photo", "latitude": "0", "id": "5129104933", "tags": "pumpkin carving"}, {"datetaken": "2010-10-30 12:04:24", "license": "3", "title": "Drying Pumpkin Seeds", "text": "", "album_id": "72157625150106939", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4092/5129708728_3fe9cf8727_o.jpg", "secret": "1a1775654c", "media": "photo", "latitude": "0", "id": "5129708728", "tags": "seeds pimpkin"}, {"datetaken": "2010-10-30 12:05:32", "license": "3", "title": "Baby Pumpkin Snack", "text": "", "album_id": "72157625150106939", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/5129710920_02ecf407b4_o.jpg", "secret": "5bf0a211ac", "media": "photo", "latitude": "0", "id": "5129710920", "tags": "pumpkin carving cannibal"}, {"datetaken": "2010-10-30 12:53:29", "license": "3", "title": "Cannibal Pumpkins of Monkey Tree Manor", "text": "", "album_id": "72157625150106939", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1257/5129109331_e89fd68643_o.jpg", "secret": "0028de0406", "media": "photo", "latitude": "0", "id": "5129109331", "tags": "pumpkin carving cannibal"}, {"datetaken": "2010-10-30 12:54:03", "license": "3", "title": "Halloween at Monkey Tree Manor", "text": "", "album_id": "72157625150106939", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1399/5129709970_f343a89061_o.jpg", "secret": "a4355b2eab", "media": "photo", "latitude": "0", "id": "5129709970", "tags": "pumpkin carving"}, {"datetaken": "2010-10-30 18:20:16", "license": "3", "title": "C'Mon Up, Baby Hughie Won't Eat You", "text": "", "album_id": "72157625150106939", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1128/5130712994_5d0553a8b7_o.jpg", "secret": "4440b601cd", "media": "photo", "latitude": "0", "id": "5130712994", "tags": "halloween pumpkin carving"}, {"datetaken": "2010-10-30 18:22:25", "license": "3", "title": "mMMm crispy!", "text": "", "album_id": "72157625150106939", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1401/5130111601_fb104c8bf0_o.jpg", "secret": "a0a9469f24", "media": "photo", "latitude": "0", "id": "5130111601", "tags": "halloween pumpkin carving"}, {"datetaken": "2010-10-30 20:13:55", "license": "3", "title": "Monkey Tree Manor Glows in Sympathy With the Cannibal Pumpkins", "text": "", "album_id": "72157625150106939", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/5130112763_026b89f99f_o.jpg", "secret": "4c88d0b9dd", "media": "photo", "latitude": "0", "id": "5130112763", "tags": "halloween pumpkin carving"}, {"datetaken": "2010-10-30 20:14:27", "license": "3", "title": "Glowing Cannibal Pumpkin", "text": "", "album_id": "72157625150106939", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/5130112939_339df63fec_o.jpg", "secret": "a193315236", "media": "photo", "latitude": "0", "id": "5130112939", "tags": "halloween pumpkin carving"}, {"datetaken": "2010-10-30 20:14:41", "license": "3", "title": "No Escaping the Cannibal Pumpkins of Monkey Tree Manor", "text": "", "album_id": "72157625150106939", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/5130108129_3320e5d997_o.jpg", "secret": "8d66239253", "media": "photo", "latitude": "0", "id": "5130108129", "tags": "halloween pumpkin carving"}, {"datetaken": "2010-10-30 20:15:02", "license": "3", "title": "Glowing Cannibal Pumpkin 2", "text": "", "album_id": "72157625150106939", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/5130711196_4aca2f7000_o.jpg", "secret": "15e21fddc7", "media": "photo", "latitude": "0", "id": "5130711196", "tags": "halloween pumpkin carving"}, {"datetaken": "2010-10-30 20:15:12", "license": "3", "title": "Real Pumpkins Don't Cry", "text": "", "album_id": "72157625150106939", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1146/5130712084_d46b967e84_o.jpg", "secret": "4b4bd87d30", "media": "photo", "latitude": "0", "id": "5130712084", "tags": "halloween pumpkin carving"}, {"datetaken": "2010-10-30 20:16:13", "license": "3", "title": "Baby Hughie", "text": "", "album_id": "72157625150106939", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/5130717540_64acc4e863_o.jpg", "secret": "7a66e7d482", "media": "photo", "latitude": "0", "id": "5130717540", "tags": "halloween pumpkin carving"}, {"datetaken": "2010-10-30 20:16:31", "license": "3", "title": "Pumpkins Guarding the Veranda", "text": "", "album_id": "72157625150106939", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/5130114317_1b2298ef06_o.jpg", "secret": "21c46c136c", "media": "photo", "latitude": "0", "id": "5130114317", "tags": "halloween pumpkin carving"}, {"datetaken": "2009-10-31 06:37:16", "license": "3", "title": "Nov.1 and 6th 011", "text": "", "album_id": "72157623197339229", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4320097894_bccb60e05b_o.jpg", "secret": "0e4c47cc65", "media": "photo", "latitude": "0", "id": "4320097894", "tags": "halloween werewolf 2009"}, {"datetaken": "2009-10-31 11:04:34", "license": "3", "title": "Nov.1 and 6th 012", "text": "", "album_id": "72157623197339229", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4319364221_eacaf489a0_o.jpg", "secret": "1354c13e00", "media": "photo", "latitude": "0", "id": "4319364221", "tags": "halloween werewolf 2009"}, {"datetaken": "2009-10-31 11:04:49", "license": "3", "title": "Nov.1 and 6th 013", "text": "", "album_id": "72157623197339229", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4320097172_7df8096e1b_o.jpg", "secret": "68b64b3067", "media": "photo", "latitude": "0", "id": "4320097172", "tags": "halloween werewolf 2009"}, {"datetaken": "2009-10-31 11:18:41", "license": "3", "title": "Nov.1 and 6th 014", "text": "", "album_id": "72157623197339229", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4319363595_a1b11ac321_o.jpg", "secret": "c4846c868a", "media": "photo", "latitude": "0", "id": "4319363595", "tags": "halloween werewolf 2009"}, {"datetaken": "2009-10-31 11:19:01", "license": "3", "title": "Nov.1 and 6th 015", "text": "", "album_id": "72157623197339229", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4319363277_4fe3b7467d_o.jpg", "secret": "c49971ecb3", "media": "photo", "latitude": "0", "id": "4319363277", "tags": "halloween werewolf 2009"}, {"datetaken": "2009-10-31 11:19:23", "license": "3", "title": "Nov.1 and 6th 016", "text": "", "album_id": "72157623197339229", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2684/4319362945_2ab81bde38_o.jpg", "secret": "e7650fa9c1", "media": "photo", "latitude": "0", "id": "4319362945", "tags": "halloween werewolf 2009"}, {"datetaken": "2009-10-31 11:19:42", "license": "3", "title": "Nov.1 and 6th 017", "text": "", "album_id": "72157623197339229", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4319362615_bdfa5360a0_o.jpg", "secret": "b665d958aa", "media": "photo", "latitude": "0", "id": "4319362615", "tags": "halloween werewolf 2009"}, {"datetaken": "2009-10-31 11:20:17", "license": "3", "title": "Nov.1 and 6th 018", "text": "", "album_id": "72157623197339229", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4320095682_cdecee3f03_o.jpg", "secret": "5a3bb17c28", "media": "photo", "latitude": "0", "id": "4320095682", "tags": "halloween werewolf 2009"}, {"datetaken": "2009-10-31 11:20:56", "license": "3", "title": "Nov.1 and 6th 019", "text": "", "album_id": "72157623197339229", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4320095410_db2081e4ec_o.jpg", "secret": "5df7edfdb8", "media": "photo", "latitude": "0", "id": "4320095410", "tags": "halloween werewolf 2009"}, {"datetaken": "2009-10-31 11:59:29", "license": "3", "title": "Marti's Oct. 2009 406", "text": "", "album_id": "72157623197339229", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2767/4320108268_6e5a781d7a_o.jpg", "secret": "5e0fa132c0", "media": "photo", "latitude": "0", "id": "4320108268", "tags": "halloween werewolf 2009"}, {"datetaken": "2010-01-31 20:18:49", "license": "2", "title": "the guy who built the ugly fireplace!", "text": "", "album_id": "72157623324729396", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4321455414_e9ee4a9726_o.jpg", "secret": "889a37a956", "media": "photo", "latitude": "0", "id": "4321455414", "tags": ""}, {"datetaken": "2010-01-31 20:19:10", "license": "2", "title": "chimney cleaning certificate", "text": "", "album_id": "72157623324729396", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4321455714_9a94baa1e3_o.jpg", "secret": "34b0964532", "media": "photo", "latitude": "0", "id": "4321455714", "tags": ""}, {"datetaken": "2010-01-31 20:19:52", "license": "2", "title": "", "text": "", "album_id": "72157623324729396", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4320997625_2388704222_o.jpg", "secret": "56b0e008ee", "media": "photo", "latitude": "0", "id": "4320997625", "tags": ""}, {"datetaken": "2010-01-31 20:20:10", "license": "2", "title": "soccer trophy", "text": "", "album_id": "72157623324729396", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2743/4320722789_fe8f27fe9d_o.jpg", "secret": "4abe44acde", "media": "photo", "latitude": "0", "id": "4320722789", "tags": ""}, {"datetaken": "2010-01-31 20:20:49", "license": "2", "title": "Eric Langston Elementary", "text": "", "album_id": "72157623324729396", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4321456306_2f821b3b62_o.jpg", "secret": "2b067cb890", "media": "photo", "latitude": "0", "id": "4321456306", "tags": ""}, {"datetaken": "2010-01-31 20:21:00", "license": "2", "title": "Happy Mother's Day", "text": "", "album_id": "72157623324729396", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4320723463_83e7598d33_o.jpg", "secret": "ca9faa9d40", "media": "photo", "latitude": "0", "id": "4320723463", "tags": ""}, {"datetaken": "2010-01-31 20:21:21", "license": "2", "title": "", "text": "", "album_id": "72157623324729396", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4321456952_b6ce22653d_o.jpg", "secret": "5f3a9ff6f5", "media": "photo", "latitude": "0", "id": "4321456952", "tags": ""}, {"datetaken": "2010-01-31 20:24:53", "license": "2", "title": "", "text": "", "album_id": "72157623324729396", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4321730128_96cbe94cf2_o.jpg", "secret": "eb4a948c8e", "media": "photo", "latitude": "0", "id": "4321730128", "tags": ""}, {"datetaken": "2010-01-31 20:26:11", "license": "2", "title": "Red Rose Tea trading cards", "text": "", "album_id": "72157623324729396", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/4320724097_257f38200c_o.jpg", "secret": "ef22e7515e", "media": "photo", "latitude": "0", "id": "4320724097", "tags": ""}, {"datetaken": "2010-01-31 20:26:27", "license": "2", "title": "Red Rose Tea trading cards", "text": "", "album_id": "72157623324729396", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4320724371_6dcd568ca9_o.jpg", "secret": "36df96c0ea", "media": "photo", "latitude": "0", "id": "4320724371", "tags": ""}, {"datetaken": "2010-01-31 20:27:01", "license": "2", "title": "Halloween Gift Certificate", "text": "", "album_id": "72157623324729396", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4321457904_51a71be8fe_o.jpg", "secret": "640d569bc4", "media": "photo", "latitude": "0", "id": "4321457904", "tags": ""}, {"datetaken": "2010-01-31 20:27:58", "license": "2", "title": "", "text": "", "album_id": "72157623324729396", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4320724957_631e4795be_o.jpg", "secret": "1c3972a4a2", "media": "photo", "latitude": "0", "id": "4320724957", "tags": ""}, {"datetaken": "2010-01-31 20:28:20", "license": "2", "title": "first night home", "text": "", "album_id": "72157623324729396", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4320725257_02a965c114_o.jpg", "secret": "7df5fd1eb6", "media": "photo", "latitude": "0", "id": "4320725257", "tags": ""}, {"datetaken": "2010-01-31 21:50:43", "license": "2", "title": "", "text": "", "album_id": "72157623324729396", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2727/4320998043_467b338d62_o.jpg", "secret": "b2d04c28de", "media": "photo", "latitude": "0", "id": "4320998043", "tags": ""}, {"datetaken": "2010-01-31 21:51:08", "license": "2", "title": "", "text": "", "album_id": "72157623324729396", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4320995933_a96104ac02_o.jpg", "secret": "2c2e534af0", "media": "photo", "latitude": "0", "id": "4320995933", "tags": ""}, {"datetaken": "2010-01-31 21:51:40", "license": "2", "title": "", "text": "", "album_id": "72157623324729396", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4320997093_3b56c0665a_o.jpg", "secret": "190ba40371", "media": "photo", "latitude": "0", "id": "4320997093", "tags": ""}, {"datetaken": "2010-01-31 21:52:17", "license": "2", "title": "the best one!", "text": "", "album_id": "72157623324729396", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4321731948_9cd64fd539_o.jpg", "secret": "0c247f53d4", "media": "photo", "latitude": "0", "id": "4321731948", "tags": ""}, {"datetaken": "2010-08-31 18:49:49", "license": "3", "title": "Magic Kingdom", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4947302832_0152f7138f_o.jpg", "secret": "99b38e15e6", "media": "photo", "latitude": "0", "id": "4947302832", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 18:50:26", "license": "3", "title": "Flowers in front of the Train Station", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4946713379_18f6d6716e_o.jpg", "secret": "03a13dac24", "media": "photo", "latitude": "0", "id": "4946713379", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 18:54:29", "license": "3", "title": "Exposition Hall", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4947302938_aa6fba88d1_o.jpg", "secret": "47fb5faa0a", "media": "photo", "latitude": "0", "id": "4947302938", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 18:54:48", "license": "3", "title": "Tony's", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4947303780_27d331f5b7_o.jpg", "secret": "51f0e8e8b6", "media": "photo", "latitude": "0", "id": "4947303780", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 18:55:01", "license": "3", "title": "Tony's Restaurant with Lady and the Tramp Jack-O-Lanterns", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4107/4946713497_fe88f7c398_o.jpg", "secret": "d9efca3720", "media": "photo", "latitude": "0", "id": "4946713497", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 18:55:59", "license": "3", "title": "Arcade", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4946714395_863c341511_o.jpg", "secret": "61478a1d35", "media": "photo", "latitude": "0", "id": "4946714395", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 18:56:06", "license": "3", "title": "Main Street USA Jack-O-Lanterns", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/4946713571_b98e3ef7e8_o.jpg", "secret": "50d7015574", "media": "photo", "latitude": "0", "id": "4946713571", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 18:56:26", "license": "3", "title": "Flowers on Main Street USA", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4946713629_e8127f39ea_o.jpg", "secret": "7c2ca0c9c1", "media": "photo", "latitude": "0", "id": "4946713629", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 18:57:06", "license": "3", "title": "Main Street USA decorations", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4154/4947303210_417c30e7e5_o.jpg", "secret": "278e899dab", "media": "photo", "latitude": "0", "id": "4947303210", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 18:57:16", "license": "3", "title": "Main Street USA buildings", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4947303276_c3578a8325_o.jpg", "secret": "2268955d39", "media": "photo", "latitude": "0", "id": "4947303276", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 18:57:21", "license": "3", "title": "Hall of Champions sports Jack-O-Lanterns", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/4946713811_459dbc2b55_o.jpg", "secret": "d6e8fdeff7", "media": "photo", "latitude": "0", "id": "4946713811", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 18:57:40", "license": "3", "title": "Main Street buildings", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/4946713895_b6c165b1f0_o.jpg", "secret": "fe97a943a4", "media": "photo", "latitude": "0", "id": "4946713895", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 18:57:56", "license": "3", "title": "Hall of Champions", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/4946714491_0f7cc99214_o.jpg", "secret": "ea0fd614ed", "media": "photo", "latitude": "0", "id": "4946714491", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 18:58:20", "license": "3", "title": "Ice cream Jack-O-Lantern", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4946713961_37f93df065_o.jpg", "secret": "b788bc8b12", "media": "photo", "latitude": "0", "id": "4946713961", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 18:58:31", "license": "3", "title": "Jack-O-Lanterns want ice cream!", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4113/4946714023_afff82a7f2_o.jpg", "secret": "dde6b410de", "media": "photo", "latitude": "0", "id": "4946714023", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 18:58:36", "license": "3", "title": "Ice Cream Parlor", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4085/4947304088_56e48b77b9_o.jpg", "secret": "b88986af35", "media": "photo", "latitude": "0", "id": "4947304088", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 18:59:01", "license": "3", "title": "Dapper Dans Jack-O-Lanterns perhaps?", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/4946714125_3866f48040_o.jpg", "secret": "4608406981", "media": "photo", "latitude": "0", "id": "4946714125", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 18:59:07", "license": "3", "title": "Witch Jack-O-Lantern", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4947303648_da11b66188_o.jpg", "secret": "6f5f182698", "media": "photo", "latitude": "0", "id": "4947303648", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2010-08-31 20:40:28", "license": "3", "title": "See Ya Real Soon!", "text": "", "album_id": "72157624852981218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4149/4946714219_460199b8b9_o.jpg", "secret": "3d896e4ddf", "media": "photo", "latitude": "0", "id": "4946714219", "tags": "halloween pumpkin jackolantern decoration magickingdom mainstreetusa"}, {"datetaken": "2004-09-18 13:50:20", "license": "2", "title": "the other half", "text": "", "album_id": "11799", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/483005_8050a6813f_o.jpg", "secret": "8050a6813f", "media": "photo", "latitude": "0", "id": "483005", "tags": "halloween pumpkins mike melissa 2003"}, {"datetaken": "2004-09-18 13:50:25", "license": "2", "title": "all the pumpkins", "text": "", "album_id": "11799", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/483006_2455801802_o.jpg", "secret": "2455801802", "media": "photo", "latitude": "0", "id": "483006", "tags": "halloween pumpkins mike melissa 2003"}, {"datetaken": "2004-09-18 13:50:35", "license": "2", "title": "diana's?", "text": "", "album_id": "11799", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/483009_f0b75fa9a0_o.jpg", "secret": "f0b75fa9a0", "media": "photo", "latitude": "0", "id": "483009", "tags": "halloween pumpkins mike melissa 2003"}, {"datetaken": "2004-09-18 13:50:40", "license": "2", "title": "mine", "text": "", "album_id": "11799", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/483011_9fd6432551_o.jpg", "secret": "9fd6432551", "media": "photo", "latitude": "0", "id": "483011", "tags": "halloween pumpkins mike melissa 2003"}, {"datetaken": "2004-09-18 13:50:44", "license": "2", "title": "shelly and shon's", "text": "", "album_id": "11799", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/483013_cbcfa17c4a_o.jpg", "secret": "cbcfa17c4a", "media": "photo", "latitude": "0", "id": "483013", "tags": "halloween pumpkins mike melissa 2003"}, {"datetaken": "2004-09-18 13:50:50", "license": "2", "title": "jeff's", "text": "", "album_id": "11799", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/483015_731f0c0384_o.jpg", "secret": "731f0c0384", "media": "photo", "latitude": "0", "id": "483015", "tags": "halloween pumpkins mike melissa 2003"}, {"datetaken": "2004-09-18 13:50:54", "license": "2", "title": "maybe this is debbie's?", "text": "", "album_id": "11799", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/483017_5bb1558ae1_o.jpg", "secret": "5bb1558ae1", "media": "photo", "latitude": "0", "id": "483017", "tags": "halloween pumpkins mike melissa 2003"}, {"datetaken": "2004-09-18 13:50:59", "license": "2", "title": "gina's", "text": "", "album_id": "11799", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/483018_0d8925f01d_o.jpg", "secret": "0d8925f01d", "media": "photo", "latitude": "0", "id": "483018", "tags": "halloween pumpkins mike melissa 2003"}, {"datetaken": "2004-09-18 13:51:03", "license": "2", "title": "missy's", "text": "", "album_id": "11799", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/483019_7e8a4c7afe_o.jpg", "secret": "7e8a4c7afe", "media": "photo", "latitude": "0", "id": "483019", "tags": "halloween pumpkins mike melissa 2003"}, {"datetaken": "2004-09-18 13:51:08", "license": "2", "title": "mike's", "text": "", "album_id": "11799", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/483021_683e2a46ca_o.jpg", "secret": "683e2a46ca", "media": "photo", "latitude": "0", "id": "483021", "tags": "halloween pumpkins mike melissa 2003"}, {"datetaken": "2004-09-18 13:51:13", "license": "2", "title": "debbie's pumpkin", "text": "", "album_id": "11799", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/483023_e6ffe3c001_o.jpg", "secret": "e6ffe3c001", "media": "photo", "latitude": "0", "id": "483023", "tags": "halloween pumpkins mike melissa 2003"}, {"datetaken": "2004-09-18 13:51:16", "license": "2", "title": "matt's pumpkin", "text": "", "album_id": "11799", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/483024_e985e1338f_o.jpg", "secret": "e985e1338f", "media": "photo", "latitude": "0", "id": "483024", "tags": "halloween pumpkins mike melissa 2003 matt"}, {"datetaken": "2004-09-18 13:51:20", "license": "2", "title": "digital pics of digital phones", "text": "", "album_id": "11799", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/483025_1bfd4c56eb_o.jpg", "secret": "1bfd4c56eb", "media": "photo", "latitude": "0", "id": "483025", "tags": "halloween pumpkins mike melissa 2003"}, {"datetaken": "2004-09-18 13:51:51", "license": "2", "title": "diana made this blue bird", "text": "", "album_id": "11799", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/483034_a5236ac0c9_o.jpg", "secret": "a5236ac0c9", "media": "photo", "latitude": "0", "id": "483034", "tags": "halloween pumpkins mike melissa 2003 diana"}, {"datetaken": "2007-07-11 05:36:37", "license": "1", "title": "Street View - Halloween", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1406/775768344_7d0a2debd3_o.jpg", "secret": "1d7b171f54", "media": "photo", "latitude": "0", "id": "775768344", "tags": ""}, {"datetaken": "2007-07-11 05:36:38", "license": "1", "title": "Front Door - Halloween", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1405/774893267_856aa16416_o.jpg", "secret": "58f8f346c9", "media": "photo", "latitude": "0", "id": "774893267", "tags": ""}, {"datetaken": "2007-07-11 05:36:39", "license": "1", "title": "Kitchen window - Matt's coffee", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1101/775768392_794487e217_o.jpg", "secret": "00547096b6", "media": "photo", "latitude": "0", "id": "775768392", "tags": ""}, {"datetaken": "2007-07-11 05:36:39", "license": "1", "title": "Living and Dining Rooms", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1356/774893325_bcf0aea400_o.jpg", "secret": "e773e4b259", "media": "photo", "latitude": "0", "id": "774893325", "tags": ""}, {"datetaken": "2007-07-11 05:36:40", "license": "1", "title": "Floorplan by Matt", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1027/775768468_18c5357ce0_o.jpg", "secret": "ad0f9d5962", "media": "photo", "latitude": "0", "id": "775768468", "tags": ""}, {"datetaken": "2007-07-11 05:36:40", "license": "1", "title": "Main Bedroom", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1394/775768492_dccfa112ae_o.jpg", "secret": "b8dfad294c", "media": "photo", "latitude": "0", "id": "775768492", "tags": ""}, {"datetaken": "2007-07-11 05:36:41", "license": "1", "title": "View from bathroom", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1085/774893413_9be4368b69_o.jpg", "secret": "c52666e3ce", "media": "photo", "latitude": "0", "id": "774893413", "tags": ""}, {"datetaken": "2007-07-11 05:36:41", "license": "1", "title": "Matt on deck", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1300/774893437_4213fdddba_o.jpg", "secret": "fa9593cde6", "media": "photo", "latitude": "0", "id": "774893437", "tags": ""}, {"datetaken": "2007-07-11 05:36:42", "license": "1", "title": "Dining Room", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1273/774893463_8788617284_o.jpg", "secret": "d9d534defa", "media": "photo", "latitude": "0", "id": "774893463", "tags": ""}, {"datetaken": "2007-07-11 05:36:42", "license": "1", "title": "Kitchen looking east", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1090/774893493_89a4c57b68_o.jpg", "secret": "5d67d069aa", "media": "photo", "latitude": "0", "id": "774893493", "tags": ""}, {"datetaken": "2007-07-11 05:36:43", "license": "1", "title": "Art doubles as scarf rack", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1067/774893545_a7f9beb51e_o.jpg", "secret": "83e44c6356", "media": "photo", "latitude": "0", "id": "774893545", "tags": ""}, {"datetaken": "2007-07-11 05:36:44", "license": "1", "title": "Uphill (south) from the house", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1009/775768694_1393ae2595_o.jpg", "secret": "4ef88555b1", "media": "photo", "latitude": "0", "id": "775768694", "tags": ""}, {"datetaken": "2007-07-11 05:36:44", "license": "1", "title": "New Years Day 2002 w McKeons", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1289/775768732_5804ac9273_o.jpg", "secret": "f1cfe14698", "media": "photo", "latitude": "0", "id": "775768732", "tags": ""}, {"datetaken": "2007-07-11 05:36:45", "license": "1", "title": "Matt with purple hair", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1160/775768772_73c21c1a9d_o.jpg", "secret": "749e2c3854", "media": "photo", "latitude": "0", "id": "775768772", "tags": ""}, {"datetaken": "2007-07-11 05:36:46", "license": "1", "title": "Matt on swing", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1401/775768792_9cee609dbd_o.jpg", "secret": "67818de54e", "media": "photo", "latitude": "0", "id": "775768792", "tags": ""}, {"datetaken": "2007-07-11 05:36:46", "license": "1", "title": "Point Fountain in Pitt", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1123/775768818_28311919a9_o.jpg", "secret": "d578b3d7f4", "media": "photo", "latitude": "0", "id": "775768818", "tags": ""}, {"datetaken": "2007-07-11 05:36:47", "license": "1", "title": "Oct 2001 - Matt at Point Fount", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1407/774893773_200829e089_o.jpg", "secret": "88d7d7c58e", "media": "photo", "latitude": "0", "id": "774893773", "tags": ""}, {"datetaken": "2007-07-11 05:36:47", "license": "1", "title": "Front Bedroom - My Office", "text": "", "album_id": "72157600759188796", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1393/775768858_d3d29250c9_o.jpg", "secret": "847e17b037", "media": "photo", "latitude": "0", "id": "775768858", "tags": ""}, {"datetaken": "2004-10-31 21:05:18", "license": "1", "title": "Dracula's Ball - Preshow - I Am A Pretty Pretty Undead Princess", "text": "", "album_id": "30356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1183920_d628b27028_o.jpg", "secret": "d628b27028", "media": "photo", "latitude": "0", "id": "1183920", "tags": "draculasball halloween 2004 costume"}, {"datetaken": "2004-10-31 21:12:01", "license": "1", "title": "Dracula's Ball - Preshow - Smiling", "text": "", "album_id": "30356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1183927_c4c1f0ff8d_o.jpg", "secret": "c4c1f0ff8d", "media": "photo", "latitude": "0", "id": "1183927", "tags": "draculasball halloween 2004 costume"}, {"datetaken": "2004-10-31 21:28:02", "license": "1", "title": "Dracula's Ball - Preshow -With Mask", "text": "", "album_id": "30356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1183934_9ca5732d69_o.jpg", "secret": "9ca5732d69", "media": "photo", "latitude": "0", "id": "1183934", "tags": "draculasball halloween 2004 costume manyfaces"}, {"datetaken": "2004-10-31 22:24:37", "license": "1", "title": "Dracula's Ball - Lyn", "text": "", "album_id": "30356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1183939_000eaebd40_o.jpg", "secret": "000eaebd40", "media": "photo", "latitude": "0", "id": "1183939", "tags": "draculasball halloween 2004 costume"}, {"datetaken": "2004-11-01 00:09:41", "license": "1", "title": "Dracula's Ball - Jill", "text": "", "album_id": "30356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1183955_8ac9dbef18_o.jpg", "secret": "8ac9dbef18", "media": "photo", "latitude": "0", "id": "1183955", "tags": "draculasball halloween 2004 costume"}, {"datetaken": "2004-11-01 00:09:47", "license": "1", "title": "Dracula's Ball - Cyn", "text": "", "album_id": "30356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1183962_5a6f0e980b_o.jpg", "secret": "5a6f0e980b", "media": "photo", "latitude": "0", "id": "1183962", "tags": "draculasball halloween 2004 costume"}, {"datetaken": "2004-11-01 00:10:00", "license": "1", "title": "Dracula's Ball - Tim", "text": "", "album_id": "30356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1183966_b2811e915e_o.jpg", "secret": "b2811e915e", "media": "photo", "latitude": "0", "id": "1183966", "tags": "draculasball halloween 2004 costume"}, {"datetaken": "2004-11-01 01:55:37", "license": "1", "title": "Dracula's Ball - More Dancers", "text": "", "album_id": "30356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1183984_423069519d_o.jpg", "secret": "423069519d", "media": "photo", "latitude": "0", "id": "1183984", "tags": "draculasball halloween 2004 costume"}, {"datetaken": "2004-11-01 02:38:12", "license": "1", "title": "Dracula's Ball - Sadako Dances", "text": "", "album_id": "30356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1184000_6929f65afc_o.jpg", "secret": "6929f65afc", "media": "photo", "latitude": "0", "id": "1184000", "tags": "draculasball halloween 2004 costume"}, {"datetaken": "2004-11-01 03:11:01", "license": "1", "title": "Dracula's Ball - After", "text": "", "album_id": "30356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1184018_f934daed55_o.jpg", "secret": "f934daed55", "media": "photo", "latitude": "0", "id": "1184018", "tags": "draculasball halloween 2004 costume"}, {"datetaken": "2004-11-01 03:11:16", "license": "1", "title": "Dracula's Ball - Bad Hair", "text": "", "album_id": "30356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1184048_9a096a9cc0_o.jpg", "secret": "9a096a9cc0", "media": "photo", "latitude": "0", "id": "1184048", "tags": "draculasball halloween 2004 costume"}, {"datetaken": "2005-10-29 19:10:28", "license": "1", "title": "Haunted House", "text": "", "album_id": "1267016", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58578995_3b6303b0a8_o.jpg", "secret": "3b6303b0a8", "media": "photo", "latitude": "0", "id": "58578995", "tags": "alex halloween 2005"}, {"datetaken": "2005-10-29 19:15:53", "license": "1", "title": "Front Yard", "text": "", "album_id": "1267016", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58578941_6caf4f9a7f_o.jpg", "secret": "6caf4f9a7f", "media": "photo", "latitude": "0", "id": "58578941", "tags": "alex halloween 2005"}, {"datetaken": "2005-10-30 11:54:33", "license": "1", "title": "Monster Bash", "text": "", "album_id": "1267016", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58579080_59eb7e3645_o.jpg", "secret": "59eb7e3645", "media": "photo", "latitude": "0", "id": "58579080", "tags": "alex halloween 2005"}, {"datetaken": "2005-10-31 10:31:18", "license": "1", "title": "Sassy Lion", "text": "", "album_id": "1267016", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58579307_5657a5f52b_o.jpg", "secret": "5657a5f52b", "media": "photo", "latitude": "0", "id": "58579307", "tags": "alex halloween 2005"}, {"datetaken": "2005-10-31 10:31:21", "license": "1", "title": "Lollie Lion", "text": "", "album_id": "1267016", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/58579031_b3becde836_o.jpg", "secret": "b3becde836", "media": "photo", "latitude": "0", "id": "58579031", "tags": "alex halloween 2005"}, {"datetaken": "2005-10-31 10:41:23", "license": "1", "title": "Candy!", "text": "", "album_id": "1267016", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/58578892_945c9de593_o.jpg", "secret": "945c9de593", "media": "photo", "latitude": "0", "id": "58578892", "tags": "alex halloween 2005"}, {"datetaken": "2005-10-31 10:43:51", "license": "1", "title": "Playgroup Friends", "text": "", "album_id": "1267016", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/58579222_50facf94ce_o.jpg", "secret": "50facf94ce", "media": "photo", "latitude": "0", "id": "58579222", "tags": "alex halloween 2005"}, {"datetaken": "2005-10-31 10:43:55", "license": "1", "title": "Playgroup Friends2", "text": "", "album_id": "1267016", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/58579137_bf11c11090_o.jpg", "secret": "bf11c11090", "media": "photo", "latitude": "0", "id": "58579137", "tags": "alex halloween 2005"}, {"datetaken": "2005-10-31 10:44:10", "license": "1", "title": "Playgroup Friends 3", "text": "", "album_id": "1267016", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/58579189_d3cc88395f_o.jpg", "secret": "d3cc88395f", "media": "photo", "latitude": "0", "id": "58579189", "tags": "alex halloween 2005"}, {"datetaken": "2005-10-31 10:44:26", "license": "1", "title": "Tootsie Tongue", "text": "", "album_id": "1267016", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58579357_2aea86678e_o.jpg", "secret": "2aea86678e", "media": "photo", "latitude": "0", "id": "58579357", "tags": "alex halloween 2005"}, {"datetaken": "2005-10-31 11:49:10", "license": "1", "title": "Ice Wraith", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58639087_5d71a8271f_o.jpg", "secret": "5d71a8271f", "media": "photo", "latitude": "0", "id": "58639087", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-10-31 20:56:22", "license": "1", "title": "DSC01837", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58639411_12fbe224fa_o.jpg", "secret": "12fbe224fa", "media": "photo", "latitude": "0", "id": "58639411", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-10-31 20:56:57", "license": "1", "title": "DSC01839", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58639454_85022ac230_o.jpg", "secret": "85022ac230", "media": "photo", "latitude": "0", "id": "58639454", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-10-31 22:43:58", "license": "1", "title": "DSC01840", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/58639511_be6cd1e443_o.jpg", "secret": "be6cd1e443", "media": "photo", "latitude": "0", "id": "58639511", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-10-31 22:46:19", "license": "1", "title": "DSC01841", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/58639542_12118e9950_o.jpg", "secret": "12118e9950", "media": "photo", "latitude": "0", "id": "58639542", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-10-31 22:46:30", "license": "1", "title": "DSC01842", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/58639573_4975113147_o.jpg", "secret": "4975113147", "media": "photo", "latitude": "0", "id": "58639573", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-10-31 22:47:08", "license": "1", "title": "DSC01843", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/58639628_7bc910eaba_o.jpg", "secret": "7bc910eaba", "media": "photo", "latitude": "0", "id": "58639628", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-10-31 22:49:11", "license": "1", "title": "DSC01845", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58639725_46fb825da4_o.jpg", "secret": "46fb825da4", "media": "photo", "latitude": "0", "id": "58639725", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-10-31 22:49:35", "license": "1", "title": "DSC01846", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58639827_1160b23122_o.jpg", "secret": "1160b23122", "media": "photo", "latitude": "0", "id": "58639827", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-10-31 22:52:15", "license": "1", "title": "DSC01854", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58640044_7d2bfab1df_o.jpg", "secret": "7d2bfab1df", "media": "photo", "latitude": "0", "id": "58640044", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-10-31 22:53:37", "license": "1", "title": "DSC01858", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/58640168_40a8928a94_o.jpg", "secret": "40a8928a94", "media": "photo", "latitude": "0", "id": "58640168", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:35:44", "license": "1", "title": "DSC01831", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/58639151_6bac4d9e7c_o.jpg", "secret": "6bac4d9e7c", "media": "photo", "latitude": "0", "id": "58639151", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:35:55", "license": "1", "title": "DSC01832", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58639206_5ef36a3014_o.jpg", "secret": "5ef36a3014", "media": "photo", "latitude": "0", "id": "58639206", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:36:01", "license": "1", "title": "DSC01833", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/58639229_697c3653c7_o.jpg", "secret": "697c3653c7", "media": "photo", "latitude": "0", "id": "58639229", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:36:15", "license": "1", "title": "DSC01834", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/58639276_4a1fb6cddc_o.jpg", "secret": "4a1fb6cddc", "media": "photo", "latitude": "0", "id": "58639276", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:36:20", "license": "1", "title": "DSC01835", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58639308_087ed88c8f_o.jpg", "secret": "087ed88c8f", "media": "photo", "latitude": "0", "id": "58639308", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:36:26", "license": "1", "title": "DSC01836", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/58639365_3a9442134e_o.jpg", "secret": "3a9442134e", "media": "photo", "latitude": "0", "id": "58639365", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:37:56", "license": "1", "title": "DSC01847", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58639922_a8a07b7ea2_o.jpg", "secret": "a8a07b7ea2", "media": "photo", "latitude": "0", "id": "58639922", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:38:05", "license": "1", "title": "DSC01849", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58639978_df9a4841a5_o.jpg", "secret": "df9a4841a5", "media": "photo", "latitude": "0", "id": "58639978", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:38:12", "license": "1", "title": "DSC01851", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/58640009_a8c478725b_o.jpg", "secret": "a8c478725b", "media": "photo", "latitude": "0", "id": "58640009", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:38:27", "license": "1", "title": "DSC01855", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/58640074_fe59b156cd_o.jpg", "secret": "fe59b156cd", "media": "photo", "latitude": "0", "id": "58640074", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:38:37", "license": "1", "title": "DSC01856", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58640125_410a36342a_o.jpg", "secret": "410a36342a", "media": "photo", "latitude": "0", "id": "58640125", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:38:56", "license": "1", "title": "DSC01861", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58640263_1cdf75c375_o.jpg", "secret": "1cdf75c375", "media": "photo", "latitude": "0", "id": "58640263", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:39:01", "license": "1", "title": "DSC01862", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/58640291_ecb23ad305_o.jpg", "secret": "ecb23ad305", "media": "photo", "latitude": "0", "id": "58640291", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:42:52", "license": "1", "title": "Ice Wraith", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/58641969_2d2b5b09c1_o.jpg", "secret": "2d2b5b09c1", "media": "photo", "latitude": "0", "id": "58641969", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:42:59", "license": "1", "title": "Ice Wraith", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58642003_ab3b4d07b1_o.jpg", "secret": "ab3b4d07b1", "media": "photo", "latitude": "0", "id": "58642003", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:52:49", "license": "1", "title": "DSC01860", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58646257_869b71ff7d_o.jpg", "secret": "869b71ff7d", "media": "photo", "latitude": "0", "id": "58646257", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:52:58", "license": "1", "title": "DSC01859", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58646315_39f86c5cc8_o.jpg", "secret": "39f86c5cc8", "media": "photo", "latitude": "0", "id": "58646315", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:53:08", "license": "1", "title": "DSC01852", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/58646369_545c1c570d_o.jpg", "secret": "545c1c570d", "media": "photo", "latitude": "0", "id": "58646369", "tags": "halloween costume trickortreat"}, {"datetaken": "2005-11-01 12:53:15", "license": "1", "title": "DSC01853", "text": "", "album_id": "1268379", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/58646420_0b35084611_o.jpg", "secret": "0b35084611", "media": "photo", "latitude": "0", "id": "58646420", "tags": "halloween costume trickortreat"}, {"datetaken": "2007-11-01 00:34:36", "license": "3", "title": "FLUO ROOM", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2012/1813543795_a344a27920_o.jpg", "secret": "e9d19ab0be", "media": "photo", "latitude": "0", "id": "1813543795", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 01:13:56", "license": "3", "title": "LORENZO", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2024/1814388258_2af91bec4c_o.jpg", "secret": "0d422587a1", "media": "photo", "latitude": "0", "id": "1814388258", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 01:26:41", "license": "3", "title": "DAEMON", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2014/1814389972_e8e59387cd_o.jpg", "secret": "e8f335e8b0", "media": "photo", "latitude": "0", "id": "1814389972", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 01:45:00", "license": "3", "title": "CONSOLLE", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2123/1814391874_00047ef265_o.jpg", "secret": "cb1d6765e6", "media": "photo", "latitude": "0", "id": "1814391874", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 01:45:06", "license": "3", "title": "THE ROOM", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2168/1814392710_c30a334585_o.jpg", "secret": "954087d5c3", "media": "photo", "latitude": "0", "id": "1814392710", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 02:08:58", "license": "3", "title": "ME & DAVIDE", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2324/1813551265_d5052de89e_o.jpg", "secret": "80a35d2115", "media": "photo", "latitude": "0", "id": "1813551265", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 02:15:30", "license": "3", "title": "FLUO GLASS", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2112/1814395202_515a9599e8_o.jpg", "secret": "26cec77c55", "media": "photo", "latitude": "0", "id": "1814395202", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 02:16:55", "license": "3", "title": "SIMONE MARCO DAVIDE GIULIO", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2130/1813554677_9e6be7a88d_o.jpg", "secret": "ffb350deeb", "media": "photo", "latitude": "0", "id": "1813554677", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 02:22:17", "license": "3", "title": "TECHNO BOY", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2038/1813557923_455bdba746_o.jpg", "secret": "acbd29605e", "media": "photo", "latitude": "0", "id": "1813557923", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 02:27:41", "license": "3", "title": "GREEN FLUO", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2215/1813560343_af0666eb8c_o.jpg", "secret": "3a99d065b0", "media": "photo", "latitude": "0", "id": "1813560343", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 02:48:13", "license": "3", "title": "PINK FLUO", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2219/1813561819_c0dc1e95b8_o.jpg", "secret": "daee5824d5", "media": "photo", "latitude": "0", "id": "1813561819", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 02:50:07", "license": "3", "title": "SCREAM", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2036/1813562853_49a85eb4a4_o.jpg", "secret": "0a608526d5", "media": "photo", "latitude": "0", "id": "1813562853", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 02:50:59", "license": "3", "title": "RGB", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2132/1814407664_f0198444df_o.jpg", "secret": "2b68ff78e9", "media": "photo", "latitude": "0", "id": "1814407664", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 02:55:25", "license": "3", "title": "PARTY PEOPLE", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2321/1814408940_b3d2f88e57_o.jpg", "secret": "e7d303b7a0", "media": "photo", "latitude": "0", "id": "1814408940", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 02:55:43", "license": "3", "title": "DARK & FUNNY", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2272/1814410702_f664014d58_o.jpg", "secret": "39598ae7fc", "media": "photo", "latitude": "0", "id": "1814410702", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 03:04:03", "license": "3", "title": "DAVIDE IS GOING TO THE WRONG PLACE", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2148/1813568433_f5a01fa3a0_o.jpg", "secret": "ad25734904", "media": "photo", "latitude": "0", "id": "1813568433", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 03:25:57", "license": "3", "title": "STAR WARS", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2323/1814413220_73154b30b7_o.jpg", "secret": "888aa433bc", "media": "photo", "latitude": "0", "id": "1814413220", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 03:26:35", "license": "3", "title": "SUNGLASSES", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2310/1814414318_1f091e2116_o.jpg", "secret": "e0cd733700", "media": "photo", "latitude": "0", "id": "1814414318", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 03:27:19", "license": "3", "title": "MYSPACE CONSOLLE", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2156/1814415266_34f1d7a2b5_o.jpg", "secret": "a8c66f15fe", "media": "photo", "latitude": "0", "id": "1814415266", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 03:27:57", "license": "3", "title": "STARLIGHT", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2007/1813572467_32183e4147_o.jpg", "secret": "6a7b3386e2", "media": "photo", "latitude": "0", "id": "1813572467", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 03:33:14", "license": "3", "title": "STARLIGHT PEOPLE", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2177/1813573963_4c6f66cf3a_o.jpg", "secret": "d14c5f72ae", "media": "photo", "latitude": "0", "id": "1813573963", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 04:17:50", "license": "3", "title": "DRINK MORE.", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2002/1813574999_c5e94cdd8c_o.jpg", "secret": "10ff556cea", "media": "photo", "latitude": "0", "id": "1813574999", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 04:20:59", "license": "3", "title": "ANGEL", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2399/1813576385_63a616fd49_o.jpg", "secret": "f7813b1473", "media": "photo", "latitude": "0", "id": "1813576385", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 04:28:37", "license": "3", "title": "DANCING PEOPLE", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2251/1814421520_c07bfa7fc4_o.jpg", "secret": "17eb385398", "media": "photo", "latitude": "0", "id": "1814421520", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 04:31:02", "license": "3", "title": "PRIVE ROOM - FLUO ROOM CONSOLLE", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2263/1814422346_3c62457347_o.jpg", "secret": "4e41791378", "media": "photo", "latitude": "0", "id": "1814422346", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 04:47:56", "license": "3", "title": "LET'S DANCE", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2361/1814423100_acbb402d12_o.jpg", "secret": "f4b8bcda7c", "media": "photo", "latitude": "0", "id": "1814423100", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 04:48:27", "license": "3", "title": "PARTY PEOPLE", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2044/1813581603_b22212be66_o.jpg", "secret": "89b45e149e", "media": "photo", "latitude": "0", "id": "1813581603", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-11-01 04:51:53", "license": "3", "title": "THE LAST PIC", "text": "", "album_id": "72157602825085661", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2148/1814426430_05ffbfdcc6_o.jpg", "secret": "0feb178eba", "media": "photo", "latitude": "0", "id": "1814426430", "tags": "party halloween myspace gasoline fluo marcopapalecom cathedralfluo"}, {"datetaken": "2007-10-31 08:42:51", "license": "4", "title": "File22", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2311/1814567466_2e9219f508_o.jpg", "secret": "d1467a1167", "media": "photo", "latitude": "0", "id": "1814567466", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 08:44:28", "license": "4", "title": "File23", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2350/1814567506_f4fbfe5fb2_o.jpg", "secret": "0f54e82502", "media": "photo", "latitude": "0", "id": "1814567506", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:03:55", "license": "4", "title": "File25", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2279/1814567558_a34f991b30_o.jpg", "secret": "f01b19ef79", "media": "photo", "latitude": "0", "id": "1814567558", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:04:15", "license": "4", "title": "File26", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2195/1814567624_6ae7a0cfae_o.jpg", "secret": "af92da8f08", "media": "photo", "latitude": "0", "id": "1814567624", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:04:30", "license": "4", "title": "File27", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2236/1813723195_c55024b563_o.jpg", "secret": "0f628bab9e", "media": "photo", "latitude": "0", "id": "1813723195", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:05:08", "license": "4", "title": "File28", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2158/1813723261_9207a450be_o.jpg", "secret": "64e2bb247b", "media": "photo", "latitude": "0", "id": "1813723261", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:06:26", "license": "4", "title": "File29", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2399/1813723349_6a926c1087_o.jpg", "secret": "a02a6351ce", "media": "photo", "latitude": "0", "id": "1813723349", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:06:58", "license": "4", "title": "File30", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2004/1813723401_be32894c13_o.jpg", "secret": "e6cca3da1f", "media": "photo", "latitude": "0", "id": "1813723401", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:08:49", "license": "4", "title": "File31", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2199/1814568054_36023b12f7_o.jpg", "secret": "561450f1d6", "media": "photo", "latitude": "0", "id": "1814568054", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:09:34", "license": "4", "title": "File33", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2223/1814568000_3d0b7fc2c4_o.jpg", "secret": "43ae19c9e8", "media": "photo", "latitude": "0", "id": "1814568000", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:09:41", "license": "4", "title": "File34", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2130/1814568152_152fb19795_o.jpg", "secret": "de317d7a7b", "media": "photo", "latitude": "0", "id": "1814568152", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:10:10", "license": "4", "title": "File35", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2045/1814568096_948cdb5706_o.jpg", "secret": "8e1c4c884d", "media": "photo", "latitude": "0", "id": "1814568096", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:10:50", "license": "4", "title": "File36", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2229/1813723721_7e424676de_o.jpg", "secret": "f68a2afa07", "media": "photo", "latitude": "0", "id": "1813723721", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:11:49", "license": "4", "title": "File37", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2163/1813723653_54885b3ce9_o.jpg", "secret": "1047e6463c", "media": "photo", "latitude": "0", "id": "1813723653", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:12:32", "license": "4", "title": "File38", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2325/1813723803_f63ad2bb3c_o.jpg", "secret": "d051acb437", "media": "photo", "latitude": "0", "id": "1813723803", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:12:52", "license": "4", "title": "File39", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2359/1813723871_ca4c4324c7_o.jpg", "secret": "43ea7fbb32", "media": "photo", "latitude": "0", "id": "1813723871", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:13:07", "license": "4", "title": "File40", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2294/1813723929_d27df0e4db_o.jpg", "secret": "313c80a4a7", "media": "photo", "latitude": "0", "id": "1813723929", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:13:14", "license": "4", "title": "File41", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2145/1814568578_9338efd277_o.jpg", "secret": "f87f146e8a", "media": "photo", "latitude": "0", "id": "1814568578", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:14:11", "license": "4", "title": "File42", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2067/1814568690_a8aa993a08_o.jpg", "secret": "af7e8313a4", "media": "photo", "latitude": "0", "id": "1814568690", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:14:22", "license": "4", "title": "File43", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2080/1814568648_644ad5fdd0_o.jpg", "secret": "5f37333373", "media": "photo", "latitude": "0", "id": "1814568648", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:15:30", "license": "4", "title": "File44", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2406/1813724261_9fa20b5390_o.jpg", "secret": "61ffdeaba0", "media": "photo", "latitude": "0", "id": "1813724261", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:16:29", "license": "4", "title": "File45", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2105/1814568776_101bbff516_o.jpg", "secret": "d6cc1ff8a0", "media": "photo", "latitude": "0", "id": "1814568776", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:17:19", "license": "4", "title": "File46", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2084/1814569024_c4bc3a740e_o.jpg", "secret": "d85800b576", "media": "photo", "latitude": "0", "id": "1814569024", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:22:11", "license": "4", "title": "File47", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2005/1813724319_c5b02de9de_o.jpg", "secret": "d1e68d5638", "media": "photo", "latitude": "0", "id": "1813724319", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:23:16", "license": "4", "title": "File49", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2249/1813724483_c5ef46b733_o.jpg", "secret": "a1e9087ea8", "media": "photo", "latitude": "0", "id": "1813724483", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-31 12:29:29", "license": "4", "title": "File50", "text": "", "album_id": "72157602825367937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2012/1814569068_80edd692e1_o.jpg", "secret": "1fd2ad2ec0", "media": "photo", "latitude": "0", "id": "1814569068", "tags": "americanheartassociation 2007nationalservicecenterhalloweenparty"}, {"datetaken": "2007-10-27 07:12:32", "license": "2", "title": "1", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2344/1816974682_a39b869561_o.jpg", "secret": "bff0f79c94", "media": "photo", "latitude": "0", "id": "1816974682", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 07:13:22", "license": "2", "title": "2", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2401/1816989428_65278e0038_o.jpg", "secret": "531ea79785", "media": "photo", "latitude": "0", "id": "1816989428", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 08:12:04", "license": "2", "title": "3", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2413/1816990584_a899a75c41_o.jpg", "secret": "c957649b28", "media": "photo", "latitude": "0", "id": "1816990584", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 08:12:33", "license": "2", "title": "4", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2043/1816149945_d99a966b02_o.jpg", "secret": "9a9ecfe4ac", "media": "photo", "latitude": "0", "id": "1816149945", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 08:13:15", "license": "2", "title": "Allie and Molly", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2371/1816150907_6004e26ea9_o.jpg", "secret": "a2ff915dc8", "media": "photo", "latitude": "0", "id": "1816150907", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 08:13:40", "license": "2", "title": "Marcie and Allie", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2344/1816993994_e2282fa1b1_o.jpg", "secret": "51e0b24e54", "media": "photo", "latitude": "0", "id": "1816993994", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 08:14:37", "license": "2", "title": "Craig", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2102/1816153299_f9431c0eb9_o.jpg", "secret": "a91cf72b62", "media": "photo", "latitude": "0", "id": "1816153299", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 10:00:09", "license": "2", "title": "Pete and Michelle", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2221/1816154157_bcf7c02788_o.jpg", "secret": "f37ecdeb7f", "media": "photo", "latitude": "0", "id": "1816154157", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 10:00:20", "license": "2", "title": "Kev and Julie", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2229/1816155579_4f9bd3e443_o.jpg", "secret": "c97aed23fe", "media": "photo", "latitude": "0", "id": "1816155579", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 10:00:36", "license": "2", "title": "10", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2337/1816975742_f84da96321_o.jpg", "secret": "1f72d67c81", "media": "photo", "latitude": "0", "id": "1816975742", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 10:00:49", "license": "2", "title": "11", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2418/1816980330_ab81bb1e36_o.jpg", "secret": "88cb4c247e", "media": "photo", "latitude": "0", "id": "1816980330", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 10:01:36", "license": "2", "title": "12", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2014/1816139735_31faf2d660_o.jpg", "secret": "dc78011cba", "media": "photo", "latitude": "0", "id": "1816139735", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 10:02:01", "license": "2", "title": "13", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2052/1816141021_4acae334d0_o.jpg", "secret": "f4e87104dc", "media": "photo", "latitude": "0", "id": "1816141021", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 10:10:03", "license": "2", "title": "14", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2133/1816983852_8e8ad77a5b_o.jpg", "secret": "01ca3741c8", "media": "photo", "latitude": "0", "id": "1816983852", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 10:11:35", "license": "2", "title": "15", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2054/1816143181_398fc238d9_o.jpg", "secret": "ea37ba5416", "media": "photo", "latitude": "0", "id": "1816143181", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 10:11:47", "license": "2", "title": "16", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2002/1816144129_188e817768_o.jpg", "secret": "072e60ccfa", "media": "photo", "latitude": "0", "id": "1816144129", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 10:12:24", "license": "2", "title": "17", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2419/1816145187_b106cacf98_o.jpg", "secret": "cf350074e9", "media": "photo", "latitude": "0", "id": "1816145187", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 11:02:39", "license": "2", "title": "18", "text": "", "album_id": "72157602826978150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2283/1816988088_c7fe31d969_o.jpg", "secret": "23667ea599", "media": "photo", "latitude": "0", "id": "1816988088", "tags": "party halloween 2007"}, {"datetaken": "2007-10-27 00:33:51", "license": "2", "title": "barbie and ken", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2180/1817119967_46a6ff7e79_o.jpg", "secret": "21fdd07013", "media": "photo", "latitude": "0", "id": "1817119967", "tags": "costumes party rabbit bunny halloween skeleton dance costume bee bumblebee sat greenroom greenroommontreal"}, {"datetaken": "2007-10-27 00:34:01", "license": "2", "title": "doodle!", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2306/1817967486_b90d6fcdb2_o.jpg", "secret": "a7b52e3223", "media": "photo", "latitude": "0", "id": "1817967486", "tags": "costumes party rabbit bunny halloween skeleton dance costume bee bumblebee sat greenroom greenroommontreal"}, {"datetaken": "2007-10-27 00:34:27", "license": "2", "title": "barbie, porn director", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2040/1817133573_a3947a6792_o.jpg", "secret": "5e616a436c", "media": "photo", "latitude": "0", "id": "1817133573", "tags": "costumes party rabbit bunny halloween skeleton dance costume bee bumblebee sat greenroom greenroommontreal"}, {"datetaken": "2007-10-27 21:01:22", "license": "2", "title": "fish", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2028/1817138501_dd6868b7de_o.jpg", "secret": "6e5bc3a0cc", "media": "photo", "latitude": "0", "id": "1817138501", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-27 21:03:17", "license": "2", "title": "ballerina, hick, fish", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2409/1817143511_23b7a4eede_o.jpg", "secret": "a919884a1e", "media": "photo", "latitude": "0", "id": "1817143511", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-27 22:17:17", "license": "2", "title": "glitter explosion", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2151/1817989954_fdb44b55d0_o.jpg", "secret": "c80a63dcb2", "media": "photo", "latitude": "0", "id": "1817989954", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-27 23:15:31", "license": "2", "title": "scary!", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2032/1817995126_5f8cc2ff59_o.jpg", "secret": "6996d59cec", "media": "photo", "latitude": "0", "id": "1817995126", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-27 23:15:39", "license": "2", "title": "bee, skeleton, hare", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2089/1818000052_52cd36beb6_o.jpg", "secret": "c3d35bd2c0", "media": "photo", "latitude": "0", "id": "1818000052", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-27 23:16:08", "license": "2", "title": "bee, skeleton, hare", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2399/1817164493_7532957b04_o.jpg", "secret": "e02450c846", "media": "photo", "latitude": "0", "id": "1817164493", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-27 23:16:24", "license": "2", "title": "skeleton", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2309/1817169357_3ce6d4fdeb_o.jpg", "secret": "5a0f6325c5", "media": "photo", "latitude": "0", "id": "1817169357", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-27 23:16:39", "license": "2", "title": "skeleton", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2362/1818014002_f2cc479fcd_o.jpg", "secret": "8596dfc76f", "media": "photo", "latitude": "0", "id": "1818014002", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-28 00:44:18", "license": "2", "title": "terry fox", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2219/1818018618_63e95b2231_o.jpg", "secret": "13a7cdaab7", "media": "photo", "latitude": "0", "id": "1818018618", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-28 00:45:56", "license": "2", "title": "party!", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2182/1818027524_0207afbc72_o.jpg", "secret": "3ff58368b6", "media": "photo", "latitude": "0", "id": "1818027524", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-28 00:46:06", "license": "2", "title": "bee and fish", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2071/1817192189_ac9a1709db_o.jpg", "secret": "3401ed473a", "media": "photo", "latitude": "0", "id": "1817192189", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-28 00:46:23", "license": "2", "title": "fish and slave", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2221/1817197211_e907d3fb5c_o.jpg", "secret": "bf4769c6ca", "media": "photo", "latitude": "0", "id": "1817197211", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-28 00:46:38", "license": "2", "title": "jess, laurel, and slave?", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2174/1817202337_23477bc16c_o.jpg", "secret": "4e0aa5220d", "media": "photo", "latitude": "0", "id": "1817202337", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-28 01:41:41", "license": "2", "title": "We", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2116/1817207489_3617124a15_o.jpg", "secret": "43f96bc0fd", "media": "photo", "latitude": "0", "id": "1817207489", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-28 01:41:52", "license": "2", "title": "don't like", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2237/1817213759_0c3a8f255a_o.jpg", "secret": "302ecf4040", "media": "photo", "latitude": "0", "id": "1817213759", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-28 01:42:16", "license": "2", "title": "the DJ", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2200/1818058250_93bf151c75_o.jpg", "secret": "544ad937cb", "media": "photo", "latitude": "0", "id": "1818058250", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-28 02:50:53", "license": "2", "title": "don't look so pleased!", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2347/1817223143_45c39bd8b6_o.jpg", "secret": "b782ae79d2", "media": "photo", "latitude": "0", "id": "1817223143", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-28 05:05:32", "license": "2", "title": "bang bang", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2347/1817230337_352ade04e8_o.jpg", "secret": "c928f6f87d", "media": "photo", "latitude": "0", "id": "1817230337", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-28 05:05:53", "license": "2", "title": "blue skeleton", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2088/1818078990_d4cbf4b1da_o.jpg", "secret": "44cd37f27c", "media": "photo", "latitude": "0", "id": "1818078990", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2007-10-28 05:06:08", "license": "2", "title": "blue tinted night", "text": "", "album_id": "72157602828723902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2137/1818085460_fc96f26d9e_o.jpg", "secret": "b088db352d", "media": "photo", "latitude": "0", "id": "1818085460", "tags": "costumes party rabbit bunny halloween skeleton dance costume montreal bee bumblebee sat"}, {"datetaken": "2013-10-30 17:20:37", "license": "3", "title": "My new Halloween candy dish, handpainted by me!", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7362/10584799316_c69be0225a_o.jpg", "secret": "f406c752a9", "media": "photo", "latitude": "0", "id": "10584799316", "tags": "crafty ghostspider 303365 halloween2013"}, {"datetaken": "2013-10-30 17:45:33", "license": "3", "title": "303/365", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2851/10584797636_71bc425dc9_o.jpg", "secret": "1feb82c7e4", "media": "photo", "latitude": "0", "id": "10584797636", "tags": "zoe project365 303365 halloween2013"}, {"datetaken": "2013-10-31 14:52:38", "license": "3", "title": "Zoe waiting for Sean's Halloween parade to start", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2816/10611938715_456af0c063_o.jpg", "secret": "ea7b1a8486", "media": "photo", "latitude": "0", "id": "10611938715", "tags": "304365 halloween2013"}, {"datetaken": "2013-10-31 15:02:36", "license": "3", "title": "Here come the babies!", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2869/10611944085_4b6da56632_o.jpg", "secret": "655b3691fb", "media": "photo", "latitude": "0", "id": "10611944085", "tags": "primrose 304365 halloween2013"}, {"datetaken": "2013-10-31 15:02:44", "license": "3", "title": "Little adorable caged animals", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7300/10612206783_7c34e38f40_o.jpg", "secret": "3a04eca6d9", "media": "photo", "latitude": "0", "id": "10612206783", "tags": "primrose 304365 halloween2013"}, {"datetaken": "2013-10-31 15:04:23", "license": "3", "title": "Here comes Batman!", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5527/10611954455_0944b7431a_o.jpg", "secret": "f1e63abfb0", "media": "photo", "latitude": "0", "id": "10611954455", "tags": "sean primrose 304365 halloween2013"}, {"datetaken": "2013-10-31 15:04:29", "license": "3", "title": "Batman sees trouble afoot", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3738/10611986336_cb42fc5152_o.jpg", "secret": "2bc60949e2", "media": "photo", "latitude": "0", "id": "10611986336", "tags": "sean primrose 304365 halloween2013"}, {"datetaken": "2013-10-31 15:04:37", "license": "3", "title": "More of Sean's classmates", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7444/10611991926_3efa63780c_o.jpg", "secret": "7814642174", "media": "photo", "latitude": "0", "id": "10611991926", "tags": "primrose 304365 halloween2013"}, {"datetaken": "2013-10-31 15:12:01", "license": "3", "title": "Ready to party!", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2830/10611970005_f4fa6c87b1_o.jpg", "secret": "b608d96bb3", "media": "photo", "latitude": "0", "id": "10611970005", "tags": "sean primrose 304365 halloween2013"}, {"datetaken": "2013-10-31 15:12:48", "license": "3", "title": "Digging into a cupcake", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5546/10612003556_48235b8bd6_o.jpg", "secret": "8c9e01f2d9", "media": "photo", "latitude": "0", "id": "10612003556", "tags": "sean primrose 304365 halloween2013"}, {"datetaken": "2013-10-31 15:15:42", "license": "3", "title": "Hello, Momma", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5508/10611979785_010479c1e1_o.jpg", "secret": "18d06daf19", "media": "photo", "latitude": "0", "id": "10611979785", "tags": "sean primrose 304365 halloween2013"}, {"datetaken": "2013-10-31 15:17:24", "license": "3", "title": "Sean with his classmate Nick's big brothers", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3713/10612242413_2b978a6eea_o.jpg", "secret": "2d33142ca3", "media": "photo", "latitude": "0", "id": "10612242413", "tags": "sean primrose 304365 halloween2013"}, {"datetaken": "2013-10-31 15:18:55", "license": "3", "title": "Occassionally had to make a few adjustments to Sean's mask", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3810/10611989745_125064920c_o.jpg", "secret": "00ca1fcf90", "media": "photo", "latitude": "0", "id": "10611989745", "tags": "sean primrose 304365 halloween2013"}, {"datetaken": "2013-10-31 15:31:34", "license": "3", "title": "Sean, Zoe, and Ms. Liz", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2838/10612252753_e12b40a31b_o.jpg", "secret": "1dfd90fcd4", "media": "photo", "latitude": "0", "id": "10612252753", "tags": "zoe sean primrose 304365 halloween2013"}, {"datetaken": "2013-10-31 15:39:39", "license": "3", "title": "Batman checks out the competition", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3689/10612000695_8d4d997c71_o.jpg", "secret": "4ae329885d", "media": "photo", "latitude": "0", "id": "10612000695", "tags": "sean primrose 304365 halloween2013"}, {"datetaken": "2013-10-31 15:40:37", "license": "3", "title": "Superheroes unite!", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3742/10612263963_860ae83d22_o.jpg", "secret": "b66d21abbc", "media": "photo", "latitude": "0", "id": "10612263963", "tags": "sean primrose 304365 halloween2013"}, {"datetaken": "2013-10-31 15:41:07", "license": "3", "title": "Batman and Robin conspire with Minnie Mouse", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5519/10612038166_46b3a9f8c4_o.jpg", "secret": "0fd1ec8308", "media": "photo", "latitude": "0", "id": "10612038166", "tags": "zoe sean primrose 304365 halloween2013"}, {"datetaken": "2013-10-31 15:43:39", "license": "3", "title": "Two Batmans", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3737/10612044916_a32f847e1d_o.jpg", "secret": "81e0e012fd", "media": "photo", "latitude": "0", "id": "10612044916", "tags": "sean primrose 304365 halloween2013"}, {"datetaken": "2013-10-31 15:43:51", "license": "3", "title": "Batman and Minnie", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7297/10612022385_194564bd87_o.jpg", "secret": "a10d531b4e", "media": "photo", "latitude": "0", "id": "10612022385", "tags": "sean primrose 304365 halloween2013"}, {"datetaken": "2013-10-31 16:05:16", "license": "3", "title": "Heroic pose!", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2809/10612055554_4ce3ef7fa4_o.jpg", "secret": "5042cc6ceb", "media": "photo", "latitude": "0", "id": "10612055554", "tags": "sean 304365 halloween2013"}, {"datetaken": "2013-10-31 16:58:07", "license": "3", "title": "Heroic Pose!", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7347/10612037035_d2a915f08d_o.jpg", "secret": "016e273e05", "media": "photo", "latitude": "0", "id": "10612037035", "tags": "kaylee 304365 halloween2013"}, {"datetaken": "2013-10-31 16:58:51", "license": "3", "title": "Batman and Robin", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3739/10612069916_b6e49c57e7_o.jpg", "secret": "61c1d52c9a", "media": "photo", "latitude": "0", "id": "10612069916", "tags": "sean kaylee 304365 halloween2013"}, {"datetaken": "2013-10-31 16:59:05", "license": "3", "title": "Batman looks up to Robin", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2887/10600612583_c22b995509_o.jpg", "secret": "f7a6d30b43", "media": "photo", "latitude": "0", "id": "10600612583", "tags": "sean kaylee 304365 halloween2013"}, {"datetaken": "2013-10-31 17:01:17", "license": "3", "title": "304/365", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2871/10600354794_33aa340cbe_o.jpg", "secret": "2d6e5c258b", "media": "photo", "latitude": "0", "id": "10600354794", "tags": "family zoe sean kaylee doyce project365 304365 ktbuffy halloween2013"}, {"datetaken": "2013-10-31 17:01:45", "license": "3", "title": "Batman checks out his other sidekick", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5529/10612075244_bae7c411e6_o.jpg", "secret": "4fdab46693", "media": "photo", "latitude": "0", "id": "10612075244", "tags": "family zoe sean kaylee doyce 304365 ktbuffy halloween2013"}, {"datetaken": "2013-10-31 17:04:07", "license": "3", "title": "Another Batman and Robin", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3669/10612078486_62e1c6062c_o.jpg", "secret": "28c8cd214c", "media": "photo", "latitude": "0", "id": "10612078486", "tags": "zoe doyce 304365 halloween2013"}, {"datetaken": "2013-10-31 18:31:57", "license": "3", "title": "Time to go Trick or Treating!", "text": "", "album_id": "72157637196375134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5471/10612082694_7ced8c9871_o.jpg", "secret": "bc1663a778", "media": "photo", "latitude": "0", "id": "10612082694", "tags": "sean kaylee 304365 halloween2013"}, {"datetaken": "2014-10-31 19:24:15", "license": "1", "title": "Chandelier in Front Room", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm6.staticflickr.com/5609/15500358998_b538c49fe8_o.jpg", "secret": "b381b6dfb2", "media": "photo", "latitude": "35.144666", "id": "15500358998", "tags": "houses haunted memphistennessee"}, {"datetaken": "2014-10-31 19:34:52", "license": "1", "title": "Orange glow", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm4.staticflickr.com/3953/15687606862_bcfd08d80b_o.jpg", "secret": "a52d8784d9", "media": "photo", "latitude": "35.144666", "id": "15687606862", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 19:38:48", "license": "1", "title": "Men's desk and light", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm6.staticflickr.com/5606/15686006125_4012448a36_o.jpg", "secret": "97f8a450da", "media": "photo", "latitude": "35.144666", "id": "15686006125", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 19:39:18", "license": "1", "title": "Portrait of the home owner", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm8.staticflickr.com/7576/15687603812_f676064766_o.jpg", "secret": "6c8bb8060d", "media": "photo", "latitude": "35.144666", "id": "15687603812", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 19:43:54", "license": "1", "title": "Green candle and", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm6.staticflickr.com/5603/15500613658_cc79bf6bb8_o.jpg", "secret": "706fa78924", "media": "photo", "latitude": "35.144666", "id": "15500613658", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 19:46:16", "license": "1", "title": "Description of painting in next photo", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm8.staticflickr.com/7490/15500804977_784c79430c_o.jpg", "secret": "a668e58101", "media": "photo", "latitude": "35.144666", "id": "15500804977", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 19:46:31", "license": "1", "title": "DSCF7400", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm8.staticflickr.com/7509/15685999865_55bee5b170_o.jpg", "secret": "7e0d247ba3", "media": "photo", "latitude": "35.144666", "id": "15685999865", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 19:48:07", "license": "1", "title": "Mollie's Bed", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm8.staticflickr.com/7563/15066064824_9f07e22c15_o.jpg", "secret": "df079c7599", "media": "photo", "latitude": "35.144666", "id": "15066064824", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 19:48:28", "license": "1", "title": "silhouettes", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm4.staticflickr.com/3940/15662513106_b2d1684d55_o.jpg", "secret": "01514ff221", "media": "photo", "latitude": "35.144666", "id": "15662513106", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 19:53:01", "license": "1", "title": "Another parlor or bedroom", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm4.staticflickr.com/3948/15662511256_7b66f5c571_o.jpg", "secret": "a542211650", "media": "photo", "latitude": "35.144666", "id": "15662511256", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 19:55:06", "license": "1", "title": "chair", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm6.staticflickr.com/5597/15686222925_40ba50f72e_o.jpg", "secret": "4efc1bb05f", "media": "photo", "latitude": "35.144666", "id": "15686222925", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 19:59:00", "license": "1", "title": "Another chair photo", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm4.staticflickr.com/3950/15687819652_5eca540f09_o.jpg", "secret": "95599cfd7f", "media": "photo", "latitude": "35.144666", "id": "15687819652", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 20:00:47", "license": "1", "title": "The Third floor \"bad\" room", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm4.staticflickr.com/3944/15501023147_6c21dc9bab_o.jpg", "secret": "8952501e6b", "media": "photo", "latitude": "35.144666", "id": "15501023147", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 20:01:07", "license": "1", "title": "A haunted room part two", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm8.staticflickr.com/7491/15066286184_7fd837a8a3_o.jpg", "secret": "ea88f38d3b", "media": "photo", "latitude": "35.144666", "id": "15066286184", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 20:02:05", "license": "1", "title": "Third floor room and children's toy", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm8.staticflickr.com/7566/15066284804_7df780d32d_o.jpg", "secret": "fb6c107b05", "media": "photo", "latitude": "35.144666", "id": "15066284804", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 20:10:17", "license": "1", "title": "Hallway table", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm4.staticflickr.com/3947/15066854403_e23967de37_o.jpg", "secret": "3349f18e56", "media": "photo", "latitude": "35.144666", "id": "15066854403", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 20:19:28", "license": "1", "title": "Glassware and candles", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm4.staticflickr.com/3951/15687810322_03df98efce_o.jpg", "secret": "97889fd62b", "media": "photo", "latitude": "35.144666", "id": "15687810322", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 20:22:47", "license": "1", "title": "Halloween Cookies", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm6.staticflickr.com/5600/15684604921_33b56d698c_o.jpg", "secret": "ac8d42fcc5", "media": "photo", "latitude": "35.144666", "id": "15684604921", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 20:29:03", "license": "1", "title": "Halloween party favors", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm9.staticflickr.com/8538/15501324907_508a772742_o.jpg", "secret": "4cc8549de8", "media": "photo", "latitude": "35.144666", "id": "15501324907", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 20:35:29", "license": "1", "title": "Halloween party favors", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm8.staticflickr.com/7504/15686517305_0086eefde6_o.jpg", "secret": "66ff6f134e", "media": "photo", "latitude": "35.144666", "id": "15686517305", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 20:35:57", "license": "1", "title": "Pumpkins", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm6.staticflickr.com/5611/15501709830_186603cfdc_o.jpg", "secret": "21a0b4aca1", "media": "photo", "latitude": "35.144666", "id": "15501709830", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 21:02:14", "license": "1", "title": "Photographing the photographer", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm8.staticflickr.com/7462/15501708120_96db7e15f9_o.jpg", "secret": "557f8800c9", "media": "photo", "latitude": "35.144666", "id": "15501708120", "tags": "house haunted memphistennessee"}, {"datetaken": "2014-10-31 21:15:30", "license": "1", "title": "Across from Woodruff Fontaine", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm4.staticflickr.com/3946/15065816694_375200993c_o.jpg", "secret": "a444b01afd", "media": "photo", "latitude": "35.144666", "id": "15065816694", "tags": "houses haunted memphistennessee"}, {"datetaken": "2014-10-31 21:16:21", "license": "1", "title": "Woodruff Fontaine at night", "text": "", "album_id": "72157648674018690", "longitude": "-90.037834", "url_o": "https://farm6.staticflickr.com/5601/15065818094_0b81990038_o.jpg", "secret": "fc449e02a4", "media": "photo", "latitude": "35.144666", "id": "15065818094", "tags": "houses haunted memphistennessee"}, {"datetaken": "2014-09-02 10:44:21", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3918/14931477369_b8ef168f02_o.jpg", "secret": "4404dfed8f", "media": "photo", "latitude": "0", "id": "14931477369", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:22", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3922/15115169371_8237c962e4_o.jpg", "secret": "7909812783", "media": "photo", "latitude": "0", "id": "15115169371", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:22", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5595/14931605648_04cd41d556_o.jpg", "secret": "c5869a15f5", "media": "photo", "latitude": "0", "id": "14931605648", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:22", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5575/14931605708_d9373f1805_o.jpg", "secret": "7bf7cef78c", "media": "photo", "latitude": "0", "id": "14931605708", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:22", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5595/15095180116_37b29d90d7_o.jpg", "secret": "1f1418b53b", "media": "photo", "latitude": "0", "id": "15095180116", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:23", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3872/14931605788_08be740e47_o.jpg", "secret": "4c4b65c07a", "media": "photo", "latitude": "0", "id": "14931605788", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:23", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5593/14931519540_7631a81f13_o.jpg", "secret": "bd51bce906", "media": "photo", "latitude": "0", "id": "14931519540", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:24", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3897/14931606058_cb472276a9_o.jpg", "secret": "c038b058a1", "media": "photo", "latitude": "0", "id": "14931606058", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:24", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3838/15095180336_88749c878c_o.jpg", "secret": "0d3281d050", "media": "photo", "latitude": "0", "id": "15095180336", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:24", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3882/15117799432_4339363506_o.jpg", "secret": "6aaa8b11ef", "media": "photo", "latitude": "0", "id": "15117799432", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:24", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3877/15117799462_5217d220a4_o.jpg", "secret": "767db8f071", "media": "photo", "latitude": "0", "id": "15117799462", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:24", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5558/14931606048_cce24a907e_o.jpg", "secret": "cdf2f7994d", "media": "photo", "latitude": "0", "id": "14931606048", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:24", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3845/14931519740_4abfd14a71_o.jpg", "secret": "1359e7261a", "media": "photo", "latitude": "0", "id": "14931519740", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:25", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3895/15115169961_1b9044bff7_o.jpg", "secret": "ed9f55d606", "media": "photo", "latitude": "0", "id": "15115169961", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:25", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5592/15118166895_033c6368fe_o.jpg", "secret": "48b2deb6b1", "media": "photo", "latitude": "0", "id": "15118166895", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:25", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3878/15095180576_056d4c6a39_o.jpg", "secret": "2709f72623", "media": "photo", "latitude": "0", "id": "15095180576", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:26", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5580/14931606288_fe0d39d203_o.jpg", "secret": "bed449db1a", "media": "photo", "latitude": "0", "id": "14931606288", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:26", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5573/14931606278_9dcde0b017_o.jpg", "secret": "ba0c71c8dd", "media": "photo", "latitude": "0", "id": "14931606278", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:26", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3864/14931520100_b74bcf7beb_o.jpg", "secret": "d550fc35c3", "media": "photo", "latitude": "0", "id": "14931520100", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:27", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5591/14931478079_a6e6f1cb24_o.jpg", "secret": "6032163350", "media": "photo", "latitude": "0", "id": "14931478079", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:27", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5574/14931520250_24deb56dfd_o.jpg", "secret": "8bd0ac2fa5", "media": "photo", "latitude": "0", "id": "14931520250", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:27", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3891/14931606428_768337b476_o.jpg", "secret": "46dcbd9d83", "media": "photo", "latitude": "0", "id": "14931606428", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:28", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3897/14931520330_02e79b1c73_o.jpg", "secret": "ba119de3ea", "media": "photo", "latitude": "0", "id": "14931520330", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 10:44:28", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3882/15115170361_86ba1a5a36_o.jpg", "secret": "fbebfec0d2", "media": "photo", "latitude": "0", "id": "15115170361", "tags": "halloween disney parade waltdisneyworld magickingdom 2014 bootoyou mickeysnotsoscaryhalloweenparty clubvillain"}, {"datetaken": "2014-09-02 11:30:57", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3857/14932029397_40ac577cba_o.jpg", "secret": "7a02c0faf1", "media": "photo", "latitude": "0", "id": "14932029397", "tags": "costume disney waltdisneyworld magickingdom 2014 mickeysnotsoscaryhalloweenparty"}, {"datetaken": "2014-09-02 11:30:57", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5591/14931902999_c4646acb0d_o.jpg", "secret": "4fd83f2715", "media": "photo", "latitude": "0", "id": "14931902999", "tags": "costume disney waltdisneyworld magickingdom 2014 mickeysnotsoscaryhalloweenparty"}, {"datetaken": "2014-09-02 11:30:58", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5577/14932030028_6ac7d610d9_o.jpg", "secret": "92de05715d", "media": "photo", "latitude": "0", "id": "14932030028", "tags": "costume disney waltdisneyworld magickingdom 2014 mickeysnotsoscaryhalloweenparty"}, {"datetaken": "2014-09-02 11:30:58", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5585/14931903099_581a661cce_o.jpg", "secret": "57ce239b3c", "media": "photo", "latitude": "0", "id": "14931903099", "tags": "costume disney waltdisneyworld magickingdom 2014 mickeysnotsoscaryhalloweenparty"}, {"datetaken": "2014-09-02 11:30:58", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3853/14931903129_f13a4e5c4f_o.jpg", "secret": "b8f0c836c5", "media": "photo", "latitude": "0", "id": "14931903129", "tags": "costume disney waltdisneyworld magickingdom 2014 mickeysnotsoscaryhalloweenparty"}, {"datetaken": "2014-09-02 11:30:58", "license": "3", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "text": "", "album_id": "72157646733993369", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3902/14932029447_d8a0547b94_o.jpg", "secret": "fa021dab7d", "media": "photo", "latitude": "0", "id": "14932029447", "tags": "costume disney waltdisneyworld magickingdom 2014 mickeysnotsoscaryhalloweenparty"}, {"datetaken": "2007-10-26 22:40:18", "license": "2", "title": "Julie", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2415/1847149358_33ea1d2d29_o.jpg", "secret": "9ca3937b88", "media": "photo", "latitude": "0", "id": "1847149358", "tags": "halloween lady russellreno 40d catgotti apg102607"}, {"datetaken": "2007-10-26 22:42:36", "license": "2", "title": "Maiden", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2224/1846340873_65939209bc_o.jpg", "secret": "d1408ba612", "media": "photo", "latitude": "0", "id": "1846340873", "tags": "portrait woman halloween russellreno 40d catgotti apg102607 1000portraits"}, {"datetaken": "2007-10-26 23:00:20", "license": "2", "title": "Marilyn", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2083/1846345835_9b6de17561_o.jpg", "secret": "4a8f7838fb", "media": "photo", "latitude": "0", "id": "1846345835", "tags": "wedding halloween garter marilynmonroe 2007 russellreno 40d catgotti apg102607"}, {"datetaken": "2007-10-26 23:00:41", "license": "2", "title": "Marilyn 2", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2067/1847180228_f12804273c_o.jpg", "secret": "319711b5a8", "media": "photo", "latitude": "0", "id": "1847180228", "tags": "white black halloween lady image marilynmonroe russellreno 40d catgotti apg102607"}, {"datetaken": "2007-10-26 23:04:55", "license": "2", "title": "Respect in high contrast.", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2038/1846365677_7b5adf1fab_o.jpg", "secret": "c7a5f1f552", "media": "photo", "latitude": "0", "id": "1846365677", "tags": "portrait woman white halloween makeup kimono russellreno resect 40d catgotti apg102607 1000portraits"}, {"datetaken": "2007-10-26 23:05:08", "license": "2", "title": "Marilyn 3", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2371/1848004296_51d0987ec3_o.jpg", "secret": "6c1c76f94a", "media": "photo", "latitude": "0", "id": "1848004296", "tags": "portrait woman halloween hair big marilynmonroe marylin monroe dressed 2007 russellreno 40d catgotti apg102607 1000portraits"}, {"datetaken": "2007-10-26 23:07:49", "license": "2", "title": "Halloween", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2379/1847213294_340c66df8d_o.jpg", "secret": "037c2f3c85", "media": "photo", "latitude": "0", "id": "1847213294", "tags": "portrait woman halloween water lady jug 2007 russellreno 40d catgotti apg102607 1000portraits"}, {"datetaken": "2007-10-26 23:24:39", "license": "2", "title": "Julie - Makeup Artist", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2145/1847096929_d423de8508_o.jpg", "secret": "e7b2fef2f9", "media": "photo", "latitude": "0", "id": "1847096929", "tags": "portrait woman halloween face paint julie looking scray russellreno goul 40d catgotti apg102607 1000portraits"}, {"datetaken": "2007-10-26 23:27:06", "license": "2", "title": "The devil inside", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2090/1847022365_bde70ee4c6_o.jpg", "secret": "be7ed04a3a", "media": "photo", "latitude": "0", "id": "1847022365", "tags": "red portrait woman halloween devil dressed 2007 russellreno 40d catgotti apg102607 1000portraits"}, {"datetaken": "2007-10-26 23:28:48", "license": "2", "title": "Catwoman", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2188/1847144819_42d48fd3c9_o.jpg", "secret": "eb9c21ead1", "media": "photo", "latitude": "0", "id": "1847144819", "tags": "portrait woman hot halloween face cat paint babe catwoman mahalo 2007 russellreno 40d catgotti apg102607 1000portraits"}, {"datetaken": "2007-10-26 23:33:10", "license": "2", "title": "Press", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2388/1846479631_691a1708d8_o.jpg", "secret": "54d63cc15c", "media": "photo", "latitude": "0", "id": "1846479631", "tags": "portrait man halloween holding can marc press 2007 russellreno 40d brillantz catgotti apg102607 1000portraits"}, {"datetaken": "2007-10-26 23:35:50", "license": "2", "title": "Paris Hilton - aka gudrun", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2357/1847133563_6a2ebcd953_o.jpg", "secret": "9cb0a32a6f", "media": "photo", "latitude": "0", "id": "1847133563", "tags": "portrait woman sun halloween glasses parishilton big gudrun russellreno imagitcha 40d catgotti apg102607 1000portraits"}, {"datetaken": "2007-10-26 23:37:30", "license": "2", "title": "Hooded Warrior", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2262/1847697664_3c3e1aad73_o.jpg", "secret": "fc7c9e0bbb", "media": "photo", "latitude": "0", "id": "1847697664", "tags": "portrait man robert halloween 2007 wananga russellreno 40d catgotti apg102607 hoodedwarrior 1000portraits"}, {"datetaken": "2007-10-26 23:59:12", "license": "2", "title": "Mad Hatter", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2112/1847160857_d98dbf1859_o.jpg", "secret": "69a3496cee", "media": "photo", "latitude": "0", "id": "1847160857", "tags": "portrait man halloween wow style madhatter 2007 russellreno 40d catgotti apg102607 1000portraits"}, {"datetaken": "2007-10-27 00:08:18", "license": "2", "title": "Julie - Makeup Artist 3", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2405/1847081713_bc93f35749_o.jpg", "secret": "987bf9432e", "media": "photo", "latitude": "0", "id": "1847081713", "tags": "halloween blood julie wound pretend russellreno makeupartist 40d catgotti apg102607"}, {"datetaken": "2007-10-27 00:10:01", "license": "2", "title": "Cruella 2", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2387/1846883391_86ade78d72_o.jpg", "secret": "ebc1e36949", "media": "photo", "latitude": "0", "id": "1846883391", "tags": "portrait woman halloween de dressed cruella vil russellreno cruela 40d catgotti apg102607 1000portraits"}, {"datetaken": "2007-10-27 00:10:14", "license": "2", "title": "Cruella 3", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2143/1847716704_cc87560034_o.jpg", "secret": "14f1a03cef", "media": "photo", "latitude": "0", "id": "1847716704", "tags": "portrait woman halloween cruella russellreno 40d catgotti apg102607 1000portraits"}, {"datetaken": "2007-10-27 00:14:33", "license": "2", "title": "Marge celebrates her big win!", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2019/1847869690_c69db9f1a8_o.jpg", "secret": "039aa010ee", "media": "photo", "latitude": "0", "id": "1847869690", "tags": "party halloween up simpsons dressing marge russellreno 40d catgotti apg102607"}, {"datetaken": "2007-10-27 00:20:47", "license": "2", "title": "Looking for the Girl Behind the Couch", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2342/1846904719_b3b453f11b_o.jpg", "secret": "670cc606af", "media": "photo", "latitude": "0", "id": "1846904719", "tags": "party laura halloween up chad dressing guinness catherine will marc 2007 spillingout russellreno 40d catgotti birdpony apg102607"}, {"datetaken": "2007-10-27 00:21:04", "license": "2", "title": "Looking for the Girl Behind the Couch 2", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2131/1847854368_14c55f13fe_o.jpg", "secret": "e640777996", "media": "photo", "latitude": "0", "id": "1847854368", "tags": "party laura halloween up dressing catherine mollie intriguing bizarre gudrun 2007 spillingout russellreno imagitcha 40d catgotti apg102607"}, {"datetaken": "2007-10-27 00:22:12", "license": "2", "title": "Busted", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2264/1846936877_635bf4519e_o.jpg", "secret": "f88890b45e", "media": "photo", "latitude": "0", "id": "1846936877", "tags": "family halloween catherine busted russellreno 40d catgotti apg102607"}, {"datetaken": "2007-10-27 00:22:50", "license": "2", "title": "It's an old Slingerdoo trick!", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2377/1846922811_137c71028f_o.jpg", "secret": "2c3d6763b9", "media": "photo", "latitude": "0", "id": "1846922811", "tags": "halloween legs katie slingerdoo russellreno 40d catgotti apg102607"}, {"datetaken": "2007-10-27 00:26:13", "license": "2", "title": "Marge", "text": "", "album_id": "72157602883754412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2057/1846850193_4cc3d2ca04_o.jpg", "secret": "46abfdade1", "media": "photo", "latitude": "0", "id": "1846850193", "tags": "blue portrait woman halloween hat simpsons marshmallow marge 2007 russellreno 40d catgotti apg102607 1000portraits"}, {"datetaken": "2007-10-27 19:10:48", "license": "3", "title": "DSC_0040", "text": "", "album_id": "72157602938417219", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2099/1875737002_0106b1396f_o.jpg", "secret": "232e97510c", "media": "photo", "latitude": "0", "id": "1875737002", "tags": "boo halloweenparty"}, {"datetaken": "2007-10-27 19:10:58", "license": "3", "title": "DSC_0041", "text": "", "album_id": "72157602938417219", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2083/1874909903_7723d5e0d6_o.jpg", "secret": "88daf6425d", "media": "photo", "latitude": "0", "id": "1874909903", "tags": "boo halloweenparty"}, {"datetaken": "2007-10-27 19:11:36", "license": "3", "title": "DSC_0043", "text": "", "album_id": "72157602938417219", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2288/1875732840_8e9c601ae8_o.jpg", "secret": "4e7f11b56e", "media": "photo", "latitude": "0", "id": "1875732840", "tags": "boo halloweenparty"}, {"datetaken": "2007-10-27 19:11:44", "license": "3", "title": "DSC_0044", "text": "", "album_id": "72157602938417219", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2021/1874910125_d00cb4886c_o.jpg", "secret": "37e9b4ecec", "media": "photo", "latitude": "0", "id": "1874910125", "tags": "boo halloweenparty"}, {"datetaken": "2007-10-27 19:13:27", "license": "3", "title": "DSC_0049", "text": "", "album_id": "72157602938417219", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2297/1875733094_1ea088581e_o.jpg", "secret": "b6a4877511", "media": "photo", "latitude": "0", "id": "1875733094", "tags": "boo halloweenparty"}, {"datetaken": "2007-10-27 19:13:41", "license": "3", "title": "DSC_0050b", "text": "", "album_id": "72157602938417219", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2025/1874911239_bb54576e38_o.jpg", "secret": "6cd39d5fc0", "media": "photo", "latitude": "0", "id": "1874911239", "tags": "boo halloweenparty"}, {"datetaken": "2007-10-27 19:13:41", "license": "3", "title": "DSC_0050", "text": "", "album_id": "72157602938417219", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2151/1875733532_d7c557c5e0_o.jpg", "secret": "6b73a529b5", "media": "photo", "latitude": "0", "id": "1875733532", "tags": "boo halloweenparty"}, {"datetaken": "2007-10-27 19:14:05", "license": "3", "title": "DSC_0051b", "text": "", "album_id": "72157602938417219", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2365/1875733968_e63f8a82de_o.jpg", "secret": "07eeb57fc7", "media": "photo", "latitude": "0", "id": "1875733968", "tags": "boo halloweenparty"}, {"datetaken": "2007-10-27 19:30:00", "license": "3", "title": "DSC_0058b", "text": "", "album_id": "72157602938417219", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2365/1874911893_286630d012_o.jpg", "secret": "fa8fdcd20e", "media": "photo", "latitude": "0", "id": "1874911893", "tags": "boo halloweenparty"}, {"datetaken": "2007-10-27 19:32:58", "license": "3", "title": "DSC_0061", "text": "", "album_id": "72157602938417219", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2371/1874912853_61b8069298_o.jpg", "secret": "a6a00bc755", "media": "photo", "latitude": "0", "id": "1874912853", "tags": "boo halloweenparty"}, {"datetaken": "2007-10-27 19:36:10", "license": "3", "title": "DSC_0065", "text": "", "album_id": "72157602938417219", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2194/1874913179_136d75256d_o.jpg", "secret": "9b2fd19461", "media": "photo", "latitude": "0", "id": "1874913179", "tags": "boo halloweenparty"}, {"datetaken": "2007-10-27 19:36:55", "license": "3", "title": "DSC_0068", "text": "", "album_id": "72157602938417219", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2065/1874913497_e13a1cf255_o.jpg", "secret": "dbb661772d", "media": "photo", "latitude": "0", "id": "1874913497", "tags": "boo halloweenparty"}, {"datetaken": "2007-10-27 19:50:00", "license": "3", "title": "DSC_0069", "text": "", "album_id": "72157602938417219", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2414/1874913735_259135e92d_o.jpg", "secret": "d6cf8f966a", "media": "photo", "latitude": "0", "id": "1874913735", "tags": "boo halloweenparty"}, {"datetaken": "2007-10-27 19:50:22", "license": "3", "title": "DSC_0071b", "text": "", "album_id": "72157602938417219", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2371/1874914127_fac28f3fed_o.jpg", "secret": "848123399d", "media": "photo", "latitude": "0", "id": "1874914127", "tags": "boo halloweenparty"}, {"datetaken": "2013-11-08 21:54:51", "license": "3", "title": "Curtain of Peacock Feathers", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7354/11221982165_ed29de55b9_o.jpg", "secret": "62ec127907", "media": "photo", "latitude": "0", "id": "11221982165", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-08 21:55:02", "license": "3", "title": "No flash -", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5537/11222066803_a03143f858_o.jpg", "secret": "12bc125bf0", "media": "photo", "latitude": "0", "id": "11222066803", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-08 21:55:13", "license": "3", "title": "More of the Feathered Curtain", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3713/11221973166_61293418d5_o.jpg", "secret": "c221109901", "media": "photo", "latitude": "0", "id": "11221973166", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 19:18:57", "license": "3", "title": "Sky Pirate", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5489/11221958546_23b37347c8_o.jpg", "secret": "911cd3a864", "media": "photo", "latitude": "0", "id": "11221958546", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 19:19:08", "license": "3", "title": "Rainbow", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3792/11221949766_b3e1a115d4_o.jpg", "secret": "626bb0bddc", "media": "photo", "latitude": "0", "id": "11221949766", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 19:56:15", "license": "3", "title": "Decorating with Air", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5471/11221941546_e18720f1ef_o.jpg", "secret": "68b5dc0040", "media": "photo", "latitude": "0", "id": "11221941546", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 20:35:07", "license": "3", "title": "from left to right", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5519/11221914315_c14f01327d_o.jpg", "secret": "678a2165ca", "media": "photo", "latitude": "0", "id": "11221914315", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 20:36:42", "license": "3", "title": "Dragon!", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7459/11221907015_a6016597e8_o.jpg", "secret": "1d0bc6dfb9", "media": "photo", "latitude": "0", "id": "11221907015", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 20:36:51", "license": "3", "title": "The Moth", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5507/11221998403_02cff9a2e8_o.jpg", "secret": "b4aaa8e599", "media": "photo", "latitude": "0", "id": "11221998403", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 20:37:02", "license": "3", "title": "The Doctor and the Baron", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3781/11221909046_affdc9dfb2_o.jpg", "secret": "fab91b7e8c", "media": "photo", "latitude": "0", "id": "11221909046", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 20:37:11", "license": "3", "title": "One of our two Angels", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5511/11221882645_d848fc24a3_o.jpg", "secret": "4acc9a24ce", "media": "photo", "latitude": "0", "id": "11221882645", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 20:46:01", "license": "3", "title": "Our Rocketeer and Flight Captain", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5518/11221974313_353225f376_o.jpg", "secret": "5e1b21825d", "media": "photo", "latitude": "0", "id": "11221974313", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 20:56:03", "license": "3", "title": "The party takes flight!", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3754/11221864495_5a14098224_o.jpg", "secret": "63023b7f90", "media": "photo", "latitude": "0", "id": "11221864495", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 21:24:40", "license": "3", "title": "\"Wendy\" tries on some flight protection", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5523/11221957223_01c28fe47d_o.jpg", "secret": "fe098dc00c", "media": "photo", "latitude": "0", "id": "11221957223", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 21:25:05", "license": "3", "title": "Mingling", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2848/11221849154_8410a0e32d_o.jpg", "secret": "e4c8e4ba26", "media": "photo", "latitude": "0", "id": "11221849154", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 21:25:23", "license": "3", "title": "Roar!", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3695/11221940633_c33848c3c0_o.jpg", "secret": "26e39d580a", "media": "photo", "latitude": "0", "id": "11221940633", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 21:26:29", "license": "3", "title": "Playing wth Balloons", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7409/11221847656_f461cf593c_o.jpg", "secret": "913b7fa4e4", "media": "photo", "latitude": "0", "id": "11221847656", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 21:40:37", "license": "3", "title": "Dry Ice", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5514/11221822325_3e51141c9c_o.jpg", "secret": "e54a708829", "media": "photo", "latitude": "0", "id": "11221822325", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 21:41:16", "license": "3", "title": "The Magpie", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7409/11221815104_72f7ed5736_o.jpg", "secret": "1b4bdf166c", "media": "photo", "latitude": "0", "id": "11221815104", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 21:46:09", "license": "3", "title": "Mr. Balloonman", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7339/11221809484_840e857b97_o.jpg", "secret": "363dac0ef4", "media": "photo", "latitude": "0", "id": "11221809484", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 21:46:22", "license": "3", "title": "Chasing Balloons", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3684/11221801784_4e675ee673_o.jpg", "secret": "d95d36cba6", "media": "photo", "latitude": "0", "id": "11221801784", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 21:46:29", "license": "3", "title": "Popping balloons?", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5516/11221796065_9970c530cf_o.jpg", "secret": "b593b335d6", "media": "photo", "latitude": "0", "id": "11221796065", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 21:46:37", "license": "3", "title": "Folding Ballons", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7393/11221887413_c6dce53fa4_o.jpg", "secret": "f265f666d0", "media": "photo", "latitude": "0", "id": "11221887413", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 21:47:24", "license": "3", "title": "Inside the Rocketeer's helmet", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3702/11221881303_fceb076694_o.jpg", "secret": "16a3d56676", "media": "photo", "latitude": "0", "id": "11221881303", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 21:49:21", "license": "3", "title": "Meeting out in the air", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3675/11221775274_06f881bb52_o.jpg", "secret": "203c78c0b1", "media": "photo", "latitude": "0", "id": "11221775274", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 21:56:36", "license": "3", "title": "Dragons have claws", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3770/11221766314_27525c3927_o.jpg", "secret": "b0818fb86a", "media": "photo", "latitude": "0", "id": "11221766314", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 22:22:20", "license": "3", "title": "tangled wings", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2871/11221773956_04b375e1ec_o.jpg", "secret": "c00461260f", "media": "photo", "latitude": "0", "id": "11221773956", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 22:27:10", "license": "3", "title": "Air Party - Group shot!", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3698/11221847483_9f8b40ca56_o.jpg", "secret": "ddb70f16a8", "media": "photo", "latitude": "0", "id": "11221847483", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 22:28:08", "license": "3", "title": "Air Party - Silly shot", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7370/11221739274_a4165ec598_o.jpg", "secret": "07c3702fbd", "media": "photo", "latitude": "0", "id": "11221739274", "tags": "costumes party halloween airtheme"}, {"datetaken": "2013-11-09 23:01:15", "license": "3", "title": "Glowing egg", "text": "", "album_id": "72157638379440683", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5540/11221729155_627c25d32b_o.jpg", "secret": "66600afa42", "media": "photo", "latitude": "0", "id": "11221729155", "tags": "costumes party halloween airtheme"}, {"datetaken": "2006-09-29 22:32:37", "license": "1", "title": "HALLOWEEN PARTY 2012 196", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7265/8162184657_18c9b62dfb_o.jpg", "secret": "b6e07bf03f", "media": "photo", "latitude": "0", "id": "8162184657", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 22:33:35", "license": "1", "title": "HALLOWEEN PARTY 2012 197", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8486/8162218312_078aa90a9a_o.jpg", "secret": "5194d8f1b8", "media": "photo", "latitude": "0", "id": "8162218312", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 22:33:56", "license": "1", "title": "HALLOWEEN PARTY 2012 198", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7140/8162184353_a6217377ae_o.jpg", "secret": "3f5d7a5ddf", "media": "photo", "latitude": "0", "id": "8162184353", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 22:34:05", "license": "1", "title": "HALLOWEEN PARTY 2012 199", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8337/8162217882_38c635a0d9_o.jpg", "secret": "75fe48df82", "media": "photo", "latitude": "0", "id": "8162217882", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 22:36:24", "license": "1", "title": "HALLOWEEN PARTY 2012 200", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7134/8162217706_e1ae22a7da_o.jpg", "secret": "1d7f75321f", "media": "photo", "latitude": "0", "id": "8162217706", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 22:37:36", "license": "1", "title": "HALLOWEEN PARTY 2012 201", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8480/8162183835_a287b7b419_o.jpg", "secret": "d02ca7a86a", "media": "photo", "latitude": "0", "id": "8162183835", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 22:38:35", "license": "1", "title": "HALLOWEEN PARTY 2012 202", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7125/8162183707_324c8447de_o.jpg", "secret": "a8c56682fc", "media": "photo", "latitude": "0", "id": "8162183707", "tags": "county public library harris galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 22:39:16", "license": "1", "title": "HALLOWEEN PARTY 2012 203", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7269/8162183601_f081ef5cd4_o.jpg", "secret": "56bb907c4d", "media": "photo", "latitude": "0", "id": "8162183601", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 22:41:21", "license": "1", "title": "HALLOWEEN PARTY 2012 204", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7137/8162183525_f962cf6f2e_o.jpg", "secret": "06de0e90d4", "media": "photo", "latitude": "0", "id": "8162183525", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 22:41:25", "license": "1", "title": "HALLOWEEN PARTY 2012 205", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8070/8162183361_271a92d997_o.jpg", "secret": "021a53dae9", "media": "photo", "latitude": "0", "id": "8162183361", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 22:46:53", "license": "1", "title": "HALLOWEEN PARTY 2012 206", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8339/8162183289_b47e8617df_o.jpg", "secret": "29b3333231", "media": "photo", "latitude": "0", "id": "8162183289", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 22:50:20", "license": "1", "title": "HALLOWEEN PARTY 2012 207", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8344/8162183173_54be4b4eeb_o.jpg", "secret": "5a11ae9241", "media": "photo", "latitude": "0", "id": "8162183173", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 22:50:58", "license": "1", "title": "HALLOWEEN PARTY 2012 208", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7248/8162216822_6179900a73_o.jpg", "secret": "4bc17ba783", "media": "photo", "latitude": "0", "id": "8162216822", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 22:51:13", "license": "1", "title": "HALLOWEEN PARTY 2012 209", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8349/8162182909_ab0c00ee49_o.jpg", "secret": "4be3c0e17c", "media": "photo", "latitude": "0", "id": "8162182909", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 22:59:28", "license": "1", "title": "HALLOWEEN PARTY 2012 210", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8070/8162216450_2a81c59eb1_o.jpg", "secret": "b5f326a83d", "media": "photo", "latitude": "0", "id": "8162216450", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 23:03:37", "license": "1", "title": "HALLOWEEN PARTY 2012 211", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8209/8162216378_b8a78c0259_o.jpg", "secret": "8888e84d1d", "media": "photo", "latitude": "0", "id": "8162216378", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 23:03:49", "license": "1", "title": "HALLOWEEN PARTY 2012 212", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7139/8162182553_89be9118d2_o.jpg", "secret": "76d58860dc", "media": "photo", "latitude": "0", "id": "8162182553", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 23:17:04", "license": "1", "title": "HALLOWEEN PARTY 2012 213", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8484/8162216150_efff5e8a43_o.jpg", "secret": "c30719f364", "media": "photo", "latitude": "0", "id": "8162216150", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 23:21:46", "license": "1", "title": "HALLOWEEN PARTY 2012 214", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8339/8162216028_5ab7af4fcc_o.jpg", "secret": "a07fec9a77", "media": "photo", "latitude": "0", "id": "8162216028", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 23:26:48", "license": "1", "title": "HALLOWEEN PARTY 2012 215", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7115/8162182127_93589c38c0_o.jpg", "secret": "fb8f207666", "media": "photo", "latitude": "0", "id": "8162182127", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 23:32:48", "license": "1", "title": "HALLOWEEN PARTY 2012 216", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8063/8162215620_b2fbec3618_o.jpg", "secret": "fa1634df22", "media": "photo", "latitude": "0", "id": "8162215620", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-29 23:46:38", "license": "1", "title": "HALLOWEEN PARTY 2012 217", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7253/8162181773_6f0b86f7f3_o.jpg", "secret": "95d78f2450", "media": "photo", "latitude": "0", "id": "8162181773", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2006-09-30 00:00:42", "license": "1", "title": "HALLOWEEN PARTY 2012 218", "text": "", "album_id": "72157631946128075", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8346/8162181643_e838d574ce_o.jpg", "secret": "edbd09ef9a", "media": "photo", "latitude": "0", "id": "8162181643", "tags": "harriscountypubliclibrary galenaparkbranchlibrary halloweenparty2012"}, {"datetaken": "2012-11-06 22:25:46", "license": "6", "title": "PA271276", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7129/8163006618_72a1be343d_o.png", "secret": "31b5308329", "media": "photo", "latitude": "0", "id": "8163006618", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:26:10", "license": "6", "title": "PA271274", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8345/8163007372_6b34a3cd4f_o.png", "secret": "0ccb760fc6", "media": "photo", "latitude": "0", "id": "8163007372", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:26:32", "license": "6", "title": "PA271273", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7258/8162976517_d09a68cea7_o.png", "secret": "c0f1237b16", "media": "photo", "latitude": "0", "id": "8162976517", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:26:52", "license": "6", "title": "PA271272", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8206/8162977083_1073060f56_o.png", "secret": "3e9c561eb9", "media": "photo", "latitude": "0", "id": "8162977083", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:27:11", "license": "6", "title": "PA271271", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8070/8163009230_08bdc04cf7_o.png", "secret": "cb0307f8c3", "media": "photo", "latitude": "0", "id": "8163009230", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:27:32", "license": "6", "title": "PA271269", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7277/8163009818_c4df6c3302_o.png", "secret": "dd86138f4d", "media": "photo", "latitude": "0", "id": "8163009818", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:27:53", "license": "6", "title": "PA271268", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8481/8162978785_43f7c6a64f_o.png", "secret": "457deb90c0", "media": "photo", "latitude": "0", "id": "8162978785", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:28:15", "license": "6", "title": "PA271267", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7278/8163011030_aec0533dfd_o.png", "secret": "45a9e9f82d", "media": "photo", "latitude": "0", "id": "8163011030", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:28:38", "license": "6", "title": "PA271265", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8069/8162980079_9522f9c915_o.png", "secret": "0a0117687a", "media": "photo", "latitude": "0", "id": "8162980079", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:29:07", "license": "6", "title": "PA271261", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7247/8162980899_75b7f5a4eb_o.png", "secret": "9e0f244fca", "media": "photo", "latitude": "0", "id": "8162980899", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:29:27", "license": "6", "title": "PA271260", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7109/8162981471_843f3017b2_o.png", "secret": "a7f5b26737", "media": "photo", "latitude": "0", "id": "8162981471", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:29:49", "license": "6", "title": "PA271259", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7275/8162982083_64c8c0bd08_o.png", "secret": "d591711848", "media": "photo", "latitude": "0", "id": "8162982083", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:30:10", "license": "6", "title": "PA271258", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8206/8162982661_f2aa7edb5a_o.png", "secret": "7c0e0c46a6", "media": "photo", "latitude": "0", "id": "8162982661", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:30:32", "license": "6", "title": "PA271257", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7111/8162983247_e4cb84e78a_o.png", "secret": "9354aa0b40", "media": "photo", "latitude": "0", "id": "8162983247", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:30:53", "license": "6", "title": "PA271254", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7106/8162983797_35abe18455_o.png", "secret": "a7a0b22bd8", "media": "photo", "latitude": "0", "id": "8162983797", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:31:13", "license": "6", "title": "PA271253", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8482/8163016142_de9941e630_o.png", "secret": "4031687d66", "media": "photo", "latitude": "0", "id": "8163016142", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:31:33", "license": "6", "title": "PA271252", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7137/8163016696_160a58cd44_o.png", "secret": "6a56604fda", "media": "photo", "latitude": "0", "id": "8163016696", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:31:56", "license": "6", "title": "PA271249", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7276/8163017300_4c3bbe1184_o.png", "secret": "73b9e7a1e3", "media": "photo", "latitude": "0", "id": "8163017300", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:32:22", "license": "6", "title": "PA271248", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7256/8162986391_a95ae87722_o.png", "secret": "219a5ba357", "media": "photo", "latitude": "0", "id": "8162986391", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:32:43", "license": "6", "title": "PA271247", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8338/8162987043_ae8f16b3d1_o.png", "secret": "8128ca64d0", "media": "photo", "latitude": "0", "id": "8162987043", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:33:05", "license": "6", "title": "PA271246", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7126/8162987653_12a440ef11_o.png", "secret": "73e406c505", "media": "photo", "latitude": "0", "id": "8162987653", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:33:27", "license": "6", "title": "PA271245", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8206/8163019852_72482112f8_o.png", "secret": "f6ac242374", "media": "photo", "latitude": "0", "id": "8163019852", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2012-11-06 22:33:52", "license": "6", "title": "PA271244", "text": "", "album_id": "72157631949230901", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8205/8162989071_95abff7ca7_o.png", "secret": "4248f3724e", "media": "photo", "latitude": "0", "id": "8162989071", "tags": "party halloween roy emblem fire photography cosplay cosplayer cosplayphotography ritzyphotography djcosplays"}, {"datetaken": "2013-11-02 23:10:44", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm4.staticflickr.com/3749/10840947816_b0c65acb69_o.jpg", "secret": "c438851267", "media": "photo", "latitude": "60.450689", "id": "10840947816", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-02 23:34:26", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm3.staticflickr.com/2877/10841071704_6008880aaf_o.jpg", "secret": "1044316df6", "media": "photo", "latitude": "60.450689", "id": "10841071704", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-03 00:26:07", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm3.staticflickr.com/2892/10841280853_b8eda7a4f9_o.jpg", "secret": "381564877c", "media": "photo", "latitude": "60.450689", "id": "10841280853", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-03 00:27:52", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm8.staticflickr.com/7322/10840989065_24c4632c1e_o.jpg", "secret": "f3cabaaf6d", "media": "photo", "latitude": "60.450689", "id": "10840989065", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-03 00:29:06", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm6.staticflickr.com/5524/10841067486_7e800c6ed7_o.jpg", "secret": "6c001db4c7", "media": "photo", "latitude": "60.450689", "id": "10841067486", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-03 00:29:32", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm3.staticflickr.com/2884/10841178154_327c190140_o.jpg", "secret": "7b81cdb178", "media": "photo", "latitude": "60.450689", "id": "10841178154", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-03 01:51:38", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm4.staticflickr.com/3786/10841402923_9083198732_o.jpg", "secret": "a9e83b6ff0", "media": "photo", "latitude": "60.450689", "id": "10841402923", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-03 01:55:30", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm4.staticflickr.com/3829/10841153466_2d0cb99440_o.jpg", "secret": "2868173482", "media": "photo", "latitude": "60.450689", "id": "10841153466", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-03 01:58:32", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm8.staticflickr.com/7436/10841176776_672423b878_o.jpg", "secret": "650fa369e9", "media": "photo", "latitude": "60.450689", "id": "10841176776", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-03 02:02:09", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm4.staticflickr.com/3774/10841471763_70a6ac3ffb_o.jpg", "secret": "f872d5c2d4", "media": "photo", "latitude": "60.450689", "id": "10841471763", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-03 02:50:45", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm4.staticflickr.com/3707/10841236386_6f733e86d7_o.jpg", "secret": "96b740ba93", "media": "photo", "latitude": "60.450689", "id": "10841236386", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-03 02:51:30", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm8.staticflickr.com/7430/10841542513_5540b1880a_o.jpg", "secret": "315d2fd3ef", "media": "photo", "latitude": "60.450689", "id": "10841542513", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-03 03:10:21", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm8.staticflickr.com/7455/10841249735_31932d6d8a_o.jpg", "secret": "e803e8730b", "media": "photo", "latitude": "60.450689", "id": "10841249735", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-03 03:13:18", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm4.staticflickr.com/3744/10841614313_f03443a55f_o.jpg", "secret": "1df4f03a69", "media": "photo", "latitude": "60.450689", "id": "10841614313", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-03 03:24:43", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm3.staticflickr.com/2859/10841358236_8fdb6fd68c_o.jpg", "secret": "51c9f278ac", "media": "photo", "latitude": "60.450689", "id": "10841358236", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-03 03:25:11", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm8.staticflickr.com/7353/10841470314_20085da3bf_o.jpg", "secret": "79113a9401", "media": "photo", "latitude": "60.450689", "id": "10841470314", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-03 03:26:54", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm6.staticflickr.com/5503/10841680673_28d3c5eed3_o.jpg", "secret": "f4654b2e49", "media": "photo", "latitude": "60.450689", "id": "10841680673", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-03 03:27:23", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm4.staticflickr.com/3747/10841707433_eac6418be3_o.jpg", "secret": "86a7166bcf", "media": "photo", "latitude": "60.450689", "id": "10841707433", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2013-11-03 03:40:11", "license": "1", "title": "Liquid Crystal Sounds pres. Halloween Ball, 7th Birthday", "text": "", "album_id": "72157637638220793", "longitude": "22.258740", "url_o": "https://farm8.staticflickr.com/7431/10841729963_0e3708b8b9_o.jpg", "secret": "4aabbfe8f4", "media": "photo", "latitude": "60.450689", "id": "10841729963", "tags": "party halloween suomi finland turku nightlife klubi edm 7thbirthday lcs halloweenball liquidcrystalsounds turunklubi"}, {"datetaken": "2005-06-16 18:35:28", "license": "1", "title": "265969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19770920_902ca24c1d_o.jpg", "secret": "902ca24c1d", "media": "photo", "latitude": "0", "id": "19770920", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:29", "license": "1", "title": "297359430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19770924_820b21fc22_o.jpg", "secret": "820b21fc22", "media": "photo", "latitude": "0", "id": "19770924", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:30", "license": "1", "title": "305969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19770926_43fb8728c3_o.jpg", "secret": "43fb8728c3", "media": "photo", "latitude": "0", "id": "19770926", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:31", "license": "1", "title": "375969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19770931_d4daf20c2c_o.jpg", "secret": "d4daf20c2c", "media": "photo", "latitude": "0", "id": "19770931", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:33", "license": "1", "title": "465969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19770934_e2d6ba6abc_o.jpg", "secret": "e2d6ba6abc", "media": "photo", "latitude": "0", "id": "19770934", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:33", "license": "1", "title": "425969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19770932_6dd0fc7b39_o.jpg", "secret": "6dd0fc7b39", "media": "photo", "latitude": "0", "id": "19770932", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:36", "license": "1", "title": "575969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19770942_7c2717e2f0_o.jpg", "secret": "7c2717e2f0", "media": "photo", "latitude": "0", "id": "19770942", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:37", "license": "1", "title": "625969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19770947_58c99d1297_o.jpg", "secret": "58c99d1297", "media": "photo", "latitude": "0", "id": "19770947", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:37", "license": "1", "title": "615969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19770946_52d937c4c4_o.jpg", "secret": "52d937c4c4", "media": "photo", "latitude": "0", "id": "19770946", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:38", "license": "1", "title": "645969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19770950_06a076289b_o.jpg", "secret": "06a076289b", "media": "photo", "latitude": "0", "id": "19770950", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:39", "license": "1", "title": "marnie and dave tennenbaum", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19770952_4b500b8708_o.jpg", "secret": "4b500b8708", "media": "photo", "latitude": "0", "id": "19770952", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:40", "license": "1", "title": "697359430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19770953_2a70cc762a_o.jpg", "secret": "2a70cc762a", "media": "photo", "latitude": "0", "id": "19770953", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:41", "license": "1", "title": "705969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19770954_f3ca435cda_o.jpg", "secret": "f3ca435cda", "media": "photo", "latitude": "0", "id": "19770954", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:42", "license": "1", "title": "755969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19770959_c2b811e860_o.jpg", "secret": "c2b811e860", "media": "photo", "latitude": "0", "id": "19770959", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:42", "license": "1", "title": "735969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19770956_6607beb1e5_o.jpg", "secret": "6607beb1e5", "media": "photo", "latitude": "0", "id": "19770956", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:43", "license": "1", "title": "765969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19770960_ff292fa837_o.jpg", "secret": "ff292fa837", "media": "photo", "latitude": "0", "id": "19770960", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:44", "license": "1", "title": "775969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19770966_d171319abf_o.jpg", "secret": "d171319abf", "media": "photo", "latitude": "0", "id": "19770966", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:45", "license": "1", "title": "897359430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19770968_6e6f845685_o.jpg", "secret": "6e6f845685", "media": "photo", "latitude": "0", "id": "19770968", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:46", "license": "1", "title": "945969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19770970_3032559ff6_o.jpg", "secret": "3032559ff6", "media": "photo", "latitude": "0", "id": "19770970", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:46", "license": "1", "title": "925969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19770969_1a48434266_o.jpg", "secret": "1a48434266", "media": "photo", "latitude": "0", "id": "19770969", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:47", "license": "1", "title": "975969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19770973_80f836a4d9_o.jpg", "secret": "80f836a4d9", "media": "photo", "latitude": "0", "id": "19770973", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:35:48", "license": "1", "title": "987359430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19770976_12abb00488_o.jpg", "secret": "12abb00488", "media": "photo", "latitude": "0", "id": "19770976", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:36:11", "license": "1", "title": "105969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19771014_bea99bd981_o.jpg", "secret": "bea99bd981", "media": "photo", "latitude": "0", "id": "19771014", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:36:12", "license": "1", "title": "175969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19771016_26c9de79db_o.jpg", "secret": "26c9de79db", "media": "photo", "latitude": "0", "id": "19771016", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2005-06-16 18:36:13", "license": "1", "title": "215969430203_0_ALB", "text": "", "album_id": "463464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19771018_dc0766c0a1_o.jpg", "secret": "dc0766c0a1", "media": "photo", "latitude": "0", "id": "19771018", "tags": "cu nyc halloween party crackersunited wwwcrackersunitedcom"}, {"datetaken": "2007-10-20 19:20:33", "license": "5", "title": "spookily delicious", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2063/1664806037_9174ba1fe4_o.jpg", "secret": "1bebec76b3", "media": "photo", "latitude": "0", "id": "1664806037", "tags": "friends party halloween pumpkin carving"}, {"datetaken": "2007-10-20 19:20:38", "license": "5", "title": "the savory spread", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2152/1665672886_756a71c428_o.jpg", "secret": "e4125612a0", "media": "photo", "latitude": "0", "id": "1665672886", "tags": "friends party halloween"}, {"datetaken": "2007-10-20 21:07:13", "license": "5", "title": "the carvers at work", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2220/1664819935_9839c95384_o.jpg", "secret": "e11fbb2f59", "media": "photo", "latitude": "0", "id": "1664819935", "tags": "friends party halloween pumpkin carving"}, {"datetaken": "2007-10-20 21:07:59", "license": "5", "title": "the birth of 8-bit pumpkin", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2229/1665570052_7d6f25b2c2_o.jpg", "secret": "c4b13cf031", "media": "photo", "latitude": "0", "id": "1665570052", "tags": "friends party halloween pumpkin carving"}, {"datetaken": "2007-10-20 21:08:06", "license": "5", "title": "the birth of pacaderm pumpkin", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2130/1664755389_179e637d6d_o.jpg", "secret": "e8bd37cf49", "media": "photo", "latitude": "0", "id": "1664755389", "tags": "friends party halloween pumpkin carving"}, {"datetaken": "2007-10-20 21:08:14", "license": "5", "title": "the birth of the pirate ship", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2269/1665576192_bd90e3c889_o.jpg", "secret": "927b78b230", "media": "photo", "latitude": "0", "id": "1665576192", "tags": "friends party halloween pumpkin carving"}, {"datetaken": "2007-10-20 21:08:23", "license": "5", "title": "the birth of the bloody clown", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2002/1665582366_3d3cf1d207_o.jpg", "secret": "6dd6cd0e87", "media": "photo", "latitude": "0", "id": "1665582366", "tags": "friends party halloween pumpkin carving"}, {"datetaken": "2007-10-20 21:08:33", "license": "5", "title": "the carvers at work", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2052/1665590410_355db7c20c_o.jpg", "secret": "c5ddc0245a", "media": "photo", "latitude": "0", "id": "1665590410", "tags": "friends party halloween pumpkin carving"}, {"datetaken": "2007-10-20 21:08:51", "license": "5", "title": "the birth of leering pumpkin", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2331/1664738847_9834bd24a3_o.jpg", "secret": "09eeb95950", "media": "photo", "latitude": "0", "id": "1664738847", "tags": "friends party halloween pumpkin carving"}, {"datetaken": "2007-10-20 21:34:14", "license": "5", "title": "the carvers at work", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2060/1665605922_f22dd01722_o.jpg", "secret": "a0a6fdebef", "media": "photo", "latitude": "0", "id": "1665605922", "tags": "friends party halloween pumpkin carving iki"}, {"datetaken": "2007-10-20 21:34:49", "license": "5", "title": "sad clown pumpkin", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2343/1664760381_1d5fe382c3_o.jpg", "secret": "f74b345e4a", "media": "photo", "latitude": "0", "id": "1664760381", "tags": "friends party halloween pumpkin carving"}, {"datetaken": "2007-10-20 22:01:16", "license": "5", "title": "jackolanterns", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2100/1665622686_deac500088_o.jpg", "secret": "e8457d1e5f", "media": "photo", "latitude": "0", "id": "1665622686", "tags": "friends party halloween pumpkin carving"}, {"datetaken": "2007-10-20 22:01:28", "license": "5", "title": "alone in the darth", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2073/1665625466_0e34f71a47_o.jpg", "secret": "a2868fab75", "media": "photo", "latitude": "0", "id": "1665625466", "tags": "friends party halloween pumpkin carving"}, {"datetaken": "2007-10-20 22:01:40", "license": "5", "title": "vampire pumpkin", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2197/1664770843_d9896a1d36_o.jpg", "secret": "f4a9fef049", "media": "photo", "latitude": "0", "id": "1664770843", "tags": "friends party halloween pumpkin carving"}, {"datetaken": "2007-10-20 22:01:51", "license": "5", "title": "pirate ship pumpkin", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2332/1664773777_5589c9ba52_o.jpg", "secret": "d4c91fd24f", "media": "photo", "latitude": "0", "id": "1664773777", "tags": "friends party halloween pumpkin carving"}, {"datetaken": "2007-10-20 22:02:05", "license": "5", "title": "\"hey there sweet thing, trick?.... or treat?\"", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2358/1664776559_8cb1778e60_o.jpg", "secret": "f68274447b", "media": "photo", "latitude": "0", "id": "1664776559", "tags": "friends party halloween pumpkin carving"}, {"datetaken": "2007-10-20 22:02:43", "license": "5", "title": "rawr!", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2371/1665637100_b7a71df23f_o.jpg", "secret": "c2b9f9657d", "media": "photo", "latitude": "0", "id": "1665637100", "tags": "friends party halloween pumpkin carving"}, {"datetaken": "2007-10-20 22:07:38", "license": "5", "title": "jackolanterns", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2411/1665643536_e1e26f7ce6_o.jpg", "secret": "acc19cd296", "media": "photo", "latitude": "0", "id": "1665643536", "tags": "friends party halloween pumpkin carving iki"}, {"datetaken": "2007-10-20 22:08:25", "license": "5", "title": "jackolanterns", "text": "", "album_id": "72157602571938321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2217/1664790389_efc8fd9a3a_o.jpg", "secret": "21f46667f7", "media": "photo", "latitude": "0", "id": "1664790389", "tags": "friends party halloween pumpkin carving iki"}, {"datetaken": "2013-10-03 16:19:48", "license": "2", "title": "Little Ghost", "text": "", "album_id": "72157636777261654", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7356/10393487283_45d5cfb9b2_o.jpg", "secret": "bcbb6ecf4f", "media": "photo", "latitude": "0", "id": "10393487283", "tags": "world party halloween costume scary october cosplay ghost disney walt mickeys 2013 not so"}, {"datetaken": "2013-10-03 16:24:22", "license": "2", "title": "Tweedledee & Tweedledum", "text": "", "album_id": "72157636777261654", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3729/10393501153_cf3dd767e5_o.jpg", "secret": "a82ecb73e0", "media": "photo", "latitude": "0", "id": "10393501153", "tags": "world party halloween costume scary october cosplay alice disney wonderland walt mickeys 2013 not so"}, {"datetaken": "2013-10-03 18:05:43", "license": "2", "title": "Sea Captain", "text": "", "album_id": "72157636777261654", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3684/10393317944_ab7c07137f_o.jpg", "secret": "0e70aa3667", "media": "photo", "latitude": "0", "id": "10393317944", "tags": "world party halloween costume scary october cosplay disney captain walt hauntedmansion mickeys 2013 not so"}, {"datetaken": "2013-10-03 18:36:37", "license": "2", "title": "Fionna the Human", "text": "", "album_id": "72157636777261654", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7365/10393316924_d3e713751f_o.jpg", "secret": "bf6b32c99f", "media": "photo", "latitude": "0", "id": "10393316924", "tags": "world party halloween costume scary october cosplay disney walt mickeys fionna 2013 not so adventuretime"}, {"datetaken": "2013-10-03 18:50:03", "license": "2", "title": "Star Wars Family", "text": "", "album_id": "72157636777261654", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2851/10393316755_8a5b4f5c99_o.jpg", "secret": "3bc20f6c51", "media": "photo", "latitude": "0", "id": "10393316755", "tags": "world party halloween starwars costume scary october yoda princess cosplay luke disney solo walt han leia skywalker mickeys 2013 not so"}, {"datetaken": "2013-10-03 20:45:27", "license": "2", "title": "Wonder Woman and Evel Knievel", "text": "", "album_id": "72157636777261654", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5548/10393346856_db41cfabf1_o.jpg", "secret": "5fe8e30d3b", "media": "photo", "latitude": "0", "id": "10393346856", "tags": "world party halloween dc costume scary october comic cosplay disney wonderwoman 1970s walt stunt evelknievel mickeys 2013 not so"}, {"datetaken": "2013-10-03 22:54:30", "license": "2", "title": "The Doctor and Amy", "text": "", "album_id": "72157636777261654", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2843/10393314865_0a442bc6c2_o.jpg", "secret": "d329f2d0b9", "media": "photo", "latitude": "0", "id": "10393314865", "tags": "world party halloween costume scary october cosplay bowtie disney doctorwho walt mickeys sonicscrewdriver 2013 not so amypond"}, {"datetaken": "2013-10-04 17:53:00", "license": "2", "title": "Incredibles", "text": "", "album_id": "72157636777261654", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3735/10393312274_c119343feb_o.jpg", "secret": "a5b526e6d4", "media": "photo", "latitude": "0", "id": "10393312274", "tags": "world party halloween costume scary october cosplay disney hero superhero walt mickeys 2013 not so"}, {"datetaken": "2013-10-04 17:56:27", "license": "2", "title": "Dipper and Mabel Pines", "text": "", "album_id": "72157636777261654", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2892/10393311134_f79ae62fd2_o.jpg", "secret": "a6883ab4ef", "media": "photo", "latitude": "0", "id": "10393311134", "tags": "world party halloween costume scary october cosplay disney mabel pines walt mickeys dipper waddles 2013 not so gravityfalls"}, {"datetaken": "2013-10-04 18:05:00", "license": "2", "title": "Stormtrooper Dress", "text": "", "album_id": "72157636777261654", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3719/10393490673_3d25e0f84a_o.jpg", "secret": "724939e732", "media": "photo", "latitude": "0", "id": "10393490673", "tags": "world party halloween starwars costume scary october cosplay disney walt mickeys 2013 not so"}, {"datetaken": "2013-10-04 18:18:47", "license": "2", "title": "Hippies", "text": "", "album_id": "72157636777261654", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2843/10393490093_b861722d4a_o.jpg", "secret": "e1454c899b", "media": "photo", "latitude": "0", "id": "10393490093", "tags": "world party flower halloween costume scary october cosplay hippy disney 1960s walt mickeys 2013 not so"}, {"datetaken": "2010-10-24 13:27:12", "license": "1", "title": "Batsto Halloween 2010", "text": "", "album_id": "72157625234587710", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1416/5112203707_76192a41c5_o.jpg", "secret": "2edb2a6040", "media": "photo", "latitude": "0", "id": "5112203707", "tags": ""}, {"datetaken": "2010-10-24 13:27:16", "license": "1", "title": "Francis & Theo in front a glorious fall tree", "text": "", "album_id": "72157625234587710", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1104/5112180949_bd939e9f51_o.jpg", "secret": "ac393f105d", "media": "photo", "latitude": "0", "id": "5112180949", "tags": ""}, {"datetaken": "2010-10-24 13:27:21", "license": "1", "title": "Batsto Halloween 2010", "text": "", "album_id": "72157625234587710", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4085/5112801156_62cf27a189_o.jpg", "secret": "8cff6a10c5", "media": "photo", "latitude": "0", "id": "5112801156", "tags": ""}, {"datetaken": "2010-10-24 14:09:33", "license": "1", "title": "Theo's request for the face-painting table was rather easy!", "text": "", "album_id": "72157625234587710", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1413/5112779228_45438b97d6_o.jpg", "secret": "6bbf2527d8", "media": "photo", "latitude": "0", "id": "5112779228", "tags": ""}, {"datetaken": "2010-10-24 14:09:36", "license": "1", "title": "Batsto Halloween 2010", "text": "", "album_id": "72157625234587710", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1066/5112205441_a00870cc60_o.jpg", "secret": "7e278b8aed", "media": "photo", "latitude": "0", "id": "5112205441", "tags": ""}, {"datetaken": "2010-10-24 14:09:45", "license": "1", "title": "The blue eyebrows!", "text": "", "album_id": "72157625234587710", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/5112204311_9304718639_o.jpg", "secret": "f6985a8d28", "media": "photo", "latitude": "0", "id": "5112204311", "tags": ""}, {"datetaken": "2010-10-24 14:09:50", "license": "1", "title": "At face painting Francis requested blue eyebrows. Umm..., okay.", "text": "", "album_id": "72157625234587710", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/5112181705_69011df651_o.jpg", "secret": "54e878f14d", "media": "photo", "latitude": "0", "id": "5112181705", "tags": ""}, {"datetaken": "2010-10-24 14:10:02", "license": "1", "title": "Batsto Halloween 2010", "text": "", "album_id": "72157625234587710", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1056/5112804618_710c017695_o.jpg", "secret": "fd7ce93bd8", "media": "photo", "latitude": "0", "id": "5112804618", "tags": ""}, {"datetaken": "2010-10-24 14:13:41", "license": "1", "title": "Batsto Halloween 2010", "text": "", "album_id": "72157625234587710", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1378/5112802942_e83339681d_o.jpg", "secret": "13bc9ef030", "media": "photo", "latitude": "0", "id": "5112802942", "tags": ""}, {"datetaken": "2010-10-24 14:13:44", "license": "1", "title": "Doing the bean-bag toss the easy way: go right up to the holes!", "text": "", "album_id": "72157625234587710", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1046/5112182019_a54c2e5727_o.jpg", "secret": "81c8e97d21", "media": "photo", "latitude": "0", "id": "5112182019", "tags": ""}, {"datetaken": "2010-10-24 14:13:59", "license": "1", "title": "Batsto Halloween 2010", "text": "", "album_id": "72157625234587710", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/5112206751_ab73ffa91f_o.jpg", "secret": "b8cca8594c", "media": "photo", "latitude": "0", "id": "5112206751", "tags": ""}, {"datetaken": "2010-10-24 15:04:32", "license": "1", "title": "We went on a hike afterwards: here's some carniverous pitcher plants!", "text": "", "album_id": "72157625234587710", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1384/5112780330_331cec4966_o.jpg", "secret": "368b790962", "media": "photo", "latitude": "0", "id": "5112780330", "tags": ""}, {"datetaken": "2012-10-31 07:36:38", "license": "1", "title": "Sometimes Mangeto prefers to be surrounded by books", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8344/8221897984_3f8c880220_o.jpg", "secret": "7868ddbd5c", "media": "photo", "latitude": "0", "id": "8221897984", "tags": "halloween by costume books be sometimes surrounded 2012 prefers mangeto"}, {"datetaken": "2012-10-31 07:44:17", "license": "1", "title": "Scott Ross - Bob Mann", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8197/8221898312_a9f0b02685_o.jpg", "secret": "18826897f5", "media": "photo", "latitude": "0", "id": "8221898312", "tags": "halloween scott ross bob mann 2012"}, {"datetaken": "2012-10-31 07:44:29", "license": "1", "title": "Zombie Melanie with her undead baby Halloween 2012", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8070/8221898672_3c3b474fbf_o.jpg", "secret": "1e621d03fc", "media": "photo", "latitude": "0", "id": "8221898672", "tags": "baby halloween with zombie melanie her undead 2012"}, {"datetaken": "2012-10-31 11:06:16", "license": "1", "title": "We have no idea why WPGU had a bunch of inflated latex gloves on the quad for Halloween - Dollar Store zombies", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8063/8221899092_8508d3de6e_o.jpg", "secret": "7666cb29e6", "media": "photo", "latitude": "0", "id": "8221899092", "tags": "halloween idea for store no quad we have gloves dollar bunch latex why had zombies 2012 nadja inflated wpgu"}, {"datetaken": "2012-10-31 11:09:38", "license": "1", "title": "Dogs dressed up like Wizard of Oz for Halloween on the quad 2", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8348/8220821539_7083e8d9fc_o.jpg", "secret": "93bd5de51c", "media": "photo", "latitude": "0", "id": "8220821539", "tags": "2 dogs halloween up for oz wizard like quad dressed 2012"}, {"datetaken": "2012-10-31 11:10:27", "license": "1", "title": "Dogs dressed up like Wizard of Oz for Halloween on the quad", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8069/8221899562_2b5b2a26c3_o.jpg", "secret": "da37b21b08", "media": "photo", "latitude": "0", "id": "8221899562", "tags": "dogs halloween up for oz wizard like quad dressed 2012 nadja"}, {"datetaken": "2012-10-31 11:21:38", "license": "1", "title": "A circus and the absent Alma Mater", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8348/8221899820_7709da1325_o.jpg", "secret": "eb0236a251", "media": "photo", "latitude": "0", "id": "8221899820", "tags": "halloween circus alma mater absent 2012 nadja a"}, {"datetaken": "2012-10-31 11:30:35", "license": "1", "title": "Busey Bank's Halloween message", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8058/8220822255_055f67562c_o.jpg", "secret": "e96abf34e9", "media": "photo", "latitude": "0", "id": "8220822255", "tags": "halloween sign message notice banks 2012 busey"}, {"datetaken": "2012-10-31 11:42:08", "license": "1", "title": "Lauren was a Starbucks employee for Halloween instead of an Espresso Royale manager", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8487/8221900110_7c324b65eb_o.jpg", "secret": "e231f6c53c", "media": "photo", "latitude": "0", "id": "8221900110", "tags": "lauren halloween for was an starbucks espresso manager instead employee royale 2012"}, {"datetaken": "2012-10-31 15:57:37", "license": "1", "title": "When I shouted HEY CAP this guy awesomely turned around instantly for this pic", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8350/8220822961_cd3d47fd1e_o.jpg", "secret": "02b435372c", "media": "photo", "latitude": "0", "id": "8220822961", "tags": "guy halloween for this hey pic cap when around turned 2012 awesomely shouted instantly i"}, {"datetaken": "2012-10-31 16:09:21", "license": "1", "title": "These people were all in line to get discounted burritoes at Chipotle for being in costume", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8344/8220823305_a2bb154e4a_o.jpg", "secret": "64f99d3e56", "media": "photo", "latitude": "0", "id": "8220823305", "tags": "people get halloween for costume all being line were these chipotle 2012 burritoes discounted"}, {"datetaken": "2012-10-31 19:09:41", "license": "1", "title": "Fahrenheit 451 at Rentertainment", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8476/8143157320_f78a7baab8_o.jpg", "secret": "14bc9654ac", "media": "photo", "latitude": "0", "id": "8143157320", "tags": "halloween costume dvd ray books fahrenheit 451 fireman bradbury thats truffaut 2012 rentertainment chumps"}, {"datetaken": "2012-10-31 19:38:27", "license": "1", "title": "WALL-E and EVE costumes at Boltini Halloween 2012", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8061/8220823631_09a0819246_o.jpg", "secret": "5024df3491", "media": "photo", "latitude": "0", "id": "8220823631", "tags": "eve costumes halloween 2012 boltini walle"}, {"datetaken": "2012-10-31 19:42:52", "license": "1", "title": "Bob Ross paints a circus at Boltini", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8487/8221901490_bac3f20112_o.jpg", "secret": "7e5d9280c3", "media": "photo", "latitude": "0", "id": "8221901490", "tags": "halloween scott ross circus bob 2012 nadja paints boltini"}, {"datetaken": "2012-10-31 20:02:27", "license": "1", "title": "Making out with a fake person Halloween at Boltini 2012", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8489/8220824035_50ccf3f372_o.jpg", "secret": "31006b5d1e", "media": "photo", "latitude": "0", "id": "8220824035", "tags": "halloween me out person with fake benjamin making 2012 boltini"}, {"datetaken": "2012-10-31 20:03:10", "license": "1", "title": "Grrr", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8337/8221901782_14bba59aee_o.jpg", "secret": "1e6c5224eb", "media": "photo", "latitude": "0", "id": "8221901782", "tags": "halloween me benjamin grrr 2012"}, {"datetaken": "2012-10-31 20:40:44", "license": "1", "title": "Nadja's glowing straw chest 2", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8206/8220824307_194778e827_o.jpg", "secret": "4a514fc1d7", "media": "photo", "latitude": "0", "id": "8220824307", "tags": "halloween chest straw glowing 2012 nadjas"}, {"datetaken": "2012-10-31 20:40:49", "license": "1", "title": "Nadja's glowing straw chest", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8489/8221902138_d0d3fae6cd_o.jpg", "secret": "ae6ca0fd4b", "media": "photo", "latitude": "0", "id": "8221902138", "tags": "halloween chest straw glowing 2012 nadjas"}, {"datetaken": "2012-10-31 20:50:08", "license": "1", "title": "The Great Gazoo was at the Boltini Halloween party 2012", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8059/8220824599_687bc86b52_o.jpg", "secret": "6a49aa224f", "media": "photo", "latitude": "0", "id": "8220824599", "tags": "party halloween was great gazoo 2012 boltini the"}, {"datetaken": "2012-10-31 20:52:18", "license": "1", "title": "Dominque at Boltini's Halloween party 2012", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8349/8220824719_f2c0cb88a1_o.jpg", "secret": "f065a8799d", "media": "photo", "latitude": "0", "id": "8220824719", "tags": "party halloween 2012 boltinis dominque"}, {"datetaken": "2012-10-31 21:28:26", "license": "1", "title": "Bob Ross Scott is uncertain about his new book-burning job", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8478/8221902650_c1201fc55a_o.jpg", "secret": "5decff9830", "media": "photo", "latitude": "0", "id": "8221902650", "tags": "new halloween scott is ross bob his about job uncertain 2012 bookburning"}, {"datetaken": "2012-10-31 21:28:57", "license": "1", "title": "Chuck Dawg borrows my 451 helmet", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8489/8220825159_c8260c3de6_o.jpg", "secret": "ffe385f4e0", "media": "photo", "latitude": "0", "id": "8220825159", "tags": "halloween dawg helmet 451 chuck 2012 borrows"}, {"datetaken": "2012-10-31 21:36:39", "license": "1", "title": "Scott and Dominique rock their fros at Boltini's Halloween party", "text": "", "album_id": "72157631898865749", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8338/8221902990_628f39fe8b_o.jpg", "secret": "a992ebb358", "media": "photo", "latitude": "0", "id": "8221902990", "tags": "party halloween rock scott dominique their 2012 boltinis fros"}, {"datetaken": "2012-10-27 14:37:26", "license": "1", "title": "Ryo the carver, notice what Seri is doing?", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8324/8129604259_50443f5f40_o.jpg", "secret": "ce3cfb2e58", "media": "photo", "latitude": "0", "id": "8129604259", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 16:11:08", "license": "1", "title": "Seri working with the dogs instead of carving", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8053/8129628754_eae6354a8c_o.jpg", "secret": "2a379ff2f0", "media": "photo", "latitude": "0", "id": "8129628754", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 16:21:10", "license": "1", "title": "Seri trys to look like the pumpkin", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8050/8129598973_538a2a4be7_o.jpg", "secret": "71213fcc35", "media": "photo", "latitude": "0", "id": "8129598973", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 16:21:12", "license": "1", "title": "Ryo's Master Piece", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8049/8129597387_24d54dba8a_o.jpg", "secret": "ecdbe9a865", "media": "photo", "latitude": "0", "id": "8129597387", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 16:21:19", "license": "1", "title": "Seri and pumpkin with similar face", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8467/8129596361_b51dd193c3_o.jpg", "secret": "26f3f83839", "media": "photo", "latitude": "0", "id": "8129596361", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 16:30:40", "license": "1", "title": "Go Xeon", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8323/8129595275_e3fcd9c63a_o.jpg", "secret": "a49fc1c3ca", "media": "photo", "latitude": "0", "id": "8129595275", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:32:59", "license": "1", "title": "Our Master Pieces", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8464/8129621282_4b4a4fa22f_o.jpg", "secret": "0e6ac48249", "media": "photo", "latitude": "0", "id": "8129621282", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:33:34", "license": "1", "title": "2012 Pumpkin Carving party -- Halloween", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8469/8129592785_4d9df715ec_o.jpg", "secret": "95bb5a1b20", "media": "photo", "latitude": "0", "id": "8129592785", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:33:48", "license": "1", "title": "Pumpkin Carving 2012 Halloween", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8324/8129617104_e10bbca388_o.jpg", "secret": "dca367a9e2", "media": "photo", "latitude": "0", "id": "8129617104", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:34:02", "license": "1", "title": "The collection", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8476/8129588807_59e6b71f2c_o.jpg", "secret": "f427cd8de6", "media": "photo", "latitude": "0", "id": "8129588807", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:34:07", "license": "1", "title": "Time to light them...", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8050/8129614962_b5830e5103_o.jpg", "secret": "40a4cc6a98", "media": "photo", "latitude": "0", "id": "8129614962", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:34:18", "license": "1", "title": "Pumpkins", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8187/8129783910_b69b71f06a_o.jpg", "secret": "3506becfe5", "media": "photo", "latitude": "0", "id": "8129783910", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:34:52", "license": "1", "title": "Totem Pole pumpkins", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8468/8129584693_f94eddb42a_o.jpg", "secret": "7e53e1a731", "media": "photo", "latitude": "0", "id": "8129584693", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:35:02", "license": "1", "title": "Abominable Snowman", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8471/8129608750_3a0a3d5195_o.jpg", "secret": "1f680c0c33", "media": "photo", "latitude": "0", "id": "8129608750", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:36:28", "license": "1", "title": "Humpty Dumpty", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8054/8129606380_ffc40b4ac2_o.jpg", "secret": "9598ea3647", "media": "photo", "latitude": "0", "id": "8129606380", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:36:45", "license": "1", "title": "Humpty Dumpty", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8185/8129605548_932920f771_o.jpg", "secret": "dbf19e540e", "media": "photo", "latitude": "0", "id": "8129605548", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:37:04", "license": "1", "title": "Master Piece", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8464/8129604614_722cc80090_o.jpg", "secret": "6e8fbd6ac4", "media": "photo", "latitude": "0", "id": "8129604614", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:41:12", "license": "1", "title": "The three carvers", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8193/8129603704_e587fe048c_o.jpg", "secret": "273f50f5d9", "media": "photo", "latitude": "0", "id": "8129603704", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:41:12", "license": "1", "title": "Ryo & Seri", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8330/8129784512_982cac6512_o.jpg", "secret": "265343aba9", "media": "photo", "latitude": "0", "id": "8129784512", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:44:19", "license": "1", "title": "Xeon nocking Seri down", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8465/8129602276_2d3f431dc3_o.jpg", "secret": "1bef004227", "media": "photo", "latitude": "0", "id": "8129602276", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:45:48", "license": "1", "title": "Ryo & Arson", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8475/8129600274_231fec7747_o.jpg", "secret": "e6ce40165d", "media": "photo", "latitude": "0", "id": "8129600274", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:46:14", "license": "1", "title": "Seri, Ryo, Arson, Xeon & Diane", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8044/8129599668_64900ca2f9_o.jpg", "secret": "8d3cabfe7f", "media": "photo", "latitude": "0", "id": "8129599668", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:46:14", "license": "1", "title": "IMG_49662", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8471/8129786348_caf7b89b3b_o.jpg", "secret": "c7e353c5f9", "media": "photo", "latitude": "0", "id": "8129786348", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:46:14", "license": "1", "title": "Pumpkin Carvers", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8185/8129782130_7aa451c837_o.jpg", "secret": "90bfc0a437", "media": "photo", "latitude": "0", "id": "8129782130", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:47:53", "license": "1", "title": "Ryo found a new friend", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8189/8129593738_132764a552_o.jpg", "secret": "1708c73f53", "media": "photo", "latitude": "0", "id": "8129593738", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:47:53", "license": "1", "title": "All our pumpkins -- 2102 Halloween", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8192/8129597238_1c2a614caf_o.jpg", "secret": "8551618fae", "media": "photo", "latitude": "0", "id": "8129597238", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2012-10-27 17:47:53", "license": "1", "title": "Ryo", "text": "", "album_id": "72157631868520388", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8472/8129784786_b498aef9ba_o.jpg", "secret": "fbefe9c115", "media": "photo", "latitude": "0", "id": "8129784786", "tags": "california halloween jack o pumpkins carving lantern 2012"}, {"datetaken": "2007-10-27 21:10:46", "license": "1", "title": "DSCF0710", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2069/1786865551_f06a48c72d_o.jpg", "secret": "4ede40c8e6", "media": "photo", "latitude": "0", "id": "1786865551", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 21:13:07", "license": "1", "title": "DSCF0712", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2138/1786867053_9f43ef4bfe_o.jpg", "secret": "d4d0d2c744", "media": "photo", "latitude": "0", "id": "1786867053", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 21:13:14", "license": "1", "title": "DSCF0713", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2244/1787713820_09375f16b5_o.jpg", "secret": "db6851c2ea", "media": "photo", "latitude": "0", "id": "1787713820", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 21:18:22", "license": "1", "title": "DSCF0714", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2380/1786870285_86445f2049_o.jpg", "secret": "10b30b1ffe", "media": "photo", "latitude": "0", "id": "1786870285", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 21:18:28", "license": "1", "title": "DSCF0715", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2186/1787717148_cdfc096f36_o.jpg", "secret": "74eb0f8b5b", "media": "photo", "latitude": "0", "id": "1787717148", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 22:08:22", "license": "1", "title": "DSCF0726", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2359/1787718906_fe2e936033_o.jpg", "secret": "d3e74c9d4d", "media": "photo", "latitude": "0", "id": "1787718906", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 22:08:32", "license": "1", "title": "DSCF0727", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2148/1787720334_c07f0b3d0c_o.jpg", "secret": "ac83c70804", "media": "photo", "latitude": "0", "id": "1787720334", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 22:15:10", "license": "1", "title": "DSCF0729", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2414/1787721760_e51c5b956a_o.jpg", "secret": "f2fe7e94fc", "media": "photo", "latitude": "0", "id": "1787721760", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 22:28:09", "license": "1", "title": "DSCF0730", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2271/1786877811_53e57bc476_o.jpg", "secret": "fe3fd9eb18", "media": "photo", "latitude": "0", "id": "1786877811", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 22:28:31", "license": "1", "title": "DSCF0731", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2187/1787724788_77f13b72ae_o.jpg", "secret": "eb9e3843e9", "media": "photo", "latitude": "0", "id": "1787724788", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 22:28:42", "license": "1", "title": "DSCF0732", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2232/1787726298_54fc4cf67b_o.jpg", "secret": "d9ce9e3d53", "media": "photo", "latitude": "0", "id": "1787726298", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 22:29:02", "license": "1", "title": "DSCF0733", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2318/1787727742_30fc38baf6_o.jpg", "secret": "807c78fdff", "media": "photo", "latitude": "0", "id": "1787727742", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 22:29:58", "license": "1", "title": "DSCF0735", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2318/1787729212_fe6ebb5c1f_o.jpg", "secret": "32a9d59054", "media": "photo", "latitude": "0", "id": "1787729212", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 23:00:19", "license": "1", "title": "DSCF0741", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2023/1786885267_fd478b3d36_o.jpg", "secret": "512b2dd814", "media": "photo", "latitude": "0", "id": "1786885267", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 23:03:12", "license": "1", "title": "DSCF0742", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2257/1786886733_229bc72eb9_o.jpg", "secret": "f32fdd3da7", "media": "photo", "latitude": "0", "id": "1786886733", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 23:03:58", "license": "1", "title": "DSCF0744", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2160/1786888233_44d4bc7658_o.jpg", "secret": "9e4922b618", "media": "photo", "latitude": "0", "id": "1786888233", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 23:12:51", "license": "1", "title": "DSCF0753", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2083/1786889759_a8a4e4ecf2_o.jpg", "secret": "aec2206745", "media": "photo", "latitude": "0", "id": "1786889759", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 23:25:47", "license": "1", "title": "DSCF0759", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2106/1787736902_2b6faffefd_o.jpg", "secret": "44091aa4c5", "media": "photo", "latitude": "0", "id": "1787736902", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 23:26:29", "license": "1", "title": "DSCF0760", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2079/1787738208_930d525da3_o.jpg", "secret": "b0e7716b04", "media": "photo", "latitude": "0", "id": "1787738208", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 23:28:56", "license": "1", "title": "DSCF0762", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2120/1787740038_e2d1b9ee44_o.jpg", "secret": "f5a9e55071", "media": "photo", "latitude": "0", "id": "1787740038", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 23:34:18", "license": "1", "title": "DSCF0764", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2232/1786895575_3d5b9f7ec8_o.jpg", "secret": "63ca8e289a", "media": "photo", "latitude": "0", "id": "1786895575", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 23:36:56", "license": "1", "title": "DSCF0766", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2393/1787742934_4a3d1e13f4_o.jpg", "secret": "8f7ac12574", "media": "photo", "latitude": "0", "id": "1787742934", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 23:37:50", "license": "1", "title": "DSCF0767", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2317/1786898429_11719b5079_o.jpg", "secret": "ee0aca515f", "media": "photo", "latitude": "0", "id": "1786898429", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 23:39:25", "license": "1", "title": "DSCF0768", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2403/1787746166_abf66b44d2_o.jpg", "secret": "21d94389fa", "media": "photo", "latitude": "0", "id": "1787746166", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-28 00:14:54", "license": "1", "title": "DSCF0769", "text": "", "album_id": "72157602755096582", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2256/1786864087_1fb99302d4_o.jpg", "secret": "b56a4c8a17", "media": "photo", "latitude": "0", "id": "1786864087", "tags": "halloween birthdayparty"}, {"datetaken": "2007-10-27 19:31:01", "license": "1", "title": "Paula", "text": "", "album_id": "72157602757730171", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2327/1787779724_1025880545_o.jpg", "secret": "a38c10532c", "media": "photo", "latitude": "0", "id": "1787779724", "tags": "meetup sultan mse seattleflickrmeetup 20071027 persongapey paulashalloweenpartay"}, {"datetaken": "2007-10-27 19:31:13", "license": "1", "title": "Ninja Attack", "text": "", "album_id": "72157602757730171", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2063/1787782198_5784f94a0c_o.jpg", "secret": "47fb7cf92a", "media": "photo", "latitude": "0", "id": "1787782198", "tags": "meetup sultan mse seattleflickrmeetup 20071027 paulashalloweenpartay"}, {"datetaken": "2007-10-27 19:31:30", "license": "1", "title": "Ninja Attack!", "text": "", "album_id": "72157602757730171", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2332/1787792196_d61c260642_o.jpg", "secret": "43d3499441", "media": "photo", "latitude": "0", "id": "1787792196", "tags": "meetup sultan mse seattleflickrmeetup 20071027 paulashalloweenpartay"}, {"datetaken": "2007-10-27 19:39:01", "license": "1", "title": "Tickle tickle tickle", "text": "", "album_id": "72157602757730171", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2377/1786956571_e912002a21_o.jpg", "secret": "a287b51003", "media": "photo", "latitude": "0", "id": "1786956571", "tags": "meetup sultan mse seattleflickrmeetup 20071027 paulashalloweenpartay"}, {"datetaken": "2007-10-27 20:00:07", "license": "1", "title": "Rock on, yeah, rock on!", "text": "", "album_id": "72157602757730171", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2187/1786968329_5ccde7c0ed_o.jpg", "secret": "2ffd7c251c", "media": "photo", "latitude": "0", "id": "1786968329", "tags": "meetup sultan mse seattleflickrmeetup 20071027 paulashalloweenpartay"}, {"datetaken": "2007-10-27 21:05:34", "license": "1", "title": "Mike the Vike takes a shortcut to balloon removal", "text": "", "album_id": "72157602757730171", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2321/1787824408_2528526100_o.jpg", "secret": "ebdc84bcd2", "media": "photo", "latitude": "0", "id": "1787824408", "tags": "meetup sultan mse seattleflickrmeetup 20071027 paulashalloweenpartay"}, {"datetaken": "2007-10-27 21:24:45", "license": "1", "title": "Dueling Polaroids", "text": "", "album_id": "72157602757730171", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2066/1787836098_a13f2c1bf0_o.jpg", "secret": "0dd6b475c6", "media": "photo", "latitude": "0", "id": "1787836098", "tags": "meetup sultan mse seattleflickrmeetup 20071027 paulashalloweenpartay"}, {"datetaken": "2007-10-27 21:36:53", "license": "1", "title": "Me, as the mad scientist", "text": "", "album_id": "72157602757730171", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2005/1787858002_f88d9f871d_o.jpg", "secret": "6390dd50c2", "media": "photo", "latitude": "0", "id": "1787858002", "tags": "meetup sultan mse seattleflickrmeetup 20071027 paulashalloweenpartay"}, {"datetaken": "2007-10-27 22:35:39", "license": "1", "title": "Margaret and Rob", "text": "", "album_id": "72157602757730171", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2420/1787027917_fbb7caff9e_o.jpg", "secret": "1fdedae22d", "media": "photo", "latitude": "0", "id": "1787027917", "tags": "meetup sultan mse seattleflickrmeetup 20071027 paulashalloweenpartay"}, {"datetaken": "2007-10-27 22:36:36", "license": "1", "title": "Margaret stands in as I setup my lights", "text": "", "album_id": "72157602757730171", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2367/1787888316_dd7f5c5893_o.jpg", "secret": "36c1708baa", "media": "photo", "latitude": "0", "id": "1787888316", "tags": "meetup sultan mse seattleflickrmeetup 20071027 paulashalloweenpartay"}, {"datetaken": "2007-10-27 22:38:19", "license": "1", "title": "Smoke breathing Rob", "text": "", "album_id": "72157602757730171", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2358/1787054677_10f23231a6_o.jpg", "secret": "db2a2329e5", "media": "photo", "latitude": "0", "id": "1787054677", "tags": "meetup sultan mse seattleflickrmeetup 20071027 paulashalloweenpartay"}, {"datetaken": "2007-10-27 22:38:32", "license": "1", "title": "Rob the Devil gets a cold one after a long day's work", "text": "", "album_id": "72157602757730171", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2182/1787912270_acce1358ae_o.jpg", "secret": "f2d7292117", "media": "photo", "latitude": "0", "id": "1787912270", "tags": "meetup sultan mse liquidnitrogen donttrythisathome ln2 seattleflickrmeetup strobist 20071027 sciencegeekparty paulashalloweenpartay"}, {"datetaken": "2007-10-27 23:23:25", "license": "1", "title": "Allen draws his katana", "text": "", "album_id": "72157602757730171", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2060/1787079843_e75dde65a1_o.jpg", "secret": "a050f63992", "media": "photo", "latitude": "0", "id": "1787079843", "tags": "meetup sultan mse seattleflickrmeetup 20071027 paulashalloweenpartay"}, {"datetaken": "2007-10-27 23:27:58", "license": "1", "title": "My turn at battou-jitsu", "text": "", "album_id": "72157602757730171", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2357/1787095025_c73f71813c_o.jpg", "secret": "d19cab1b75", "media": "photo", "latitude": "0", "id": "1787095025", "tags": "meetup sultan mse seattleflickrmeetup 20071027 paulashalloweenpartay"}, {"datetaken": "2007-10-27 23:42:03", "license": "1", "title": "Terence attacks!", "text": "", "album_id": "72157602757730171", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2374/1787112963_0a486a3a50_o.jpg", "secret": "118220778e", "media": "photo", "latitude": "0", "id": "1787112963", "tags": "meetup sultan mse multiburst seattleflickrmeetup strobist 20071027 paulashalloweenpartay"}, {"datetaken": "2007-10-28 00:02:10", "license": "1", "title": "Allen draws his katana", "text": "", "album_id": "72157602757730171", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2140/1786999767_c8b5b43e5c_o.jpg", "secret": "19ebd6204c", "media": "photo", "latitude": "0", "id": "1786999767", "tags": "meetup sultan mse seattleflickrmeetup 20071027 paulashalloweenpartay"}, {"datetaken": "2007-10-28 15:16:29", "license": "3", "title": "", "text": "", "album_id": "72157615947240780", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2361/1789319830_930ff1f597_o.jpg", "secret": "634c78fe1a", "media": "photo", "latitude": "0", "id": "1789319830", "tags": "portrait thriller halloweenthrillerbedroommichellemichellehalloweenpartynisha"}, {"datetaken": "2007-10-28 15:16:40", "license": "3", "title": "", "text": "", "album_id": "72157615947240780", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2053/1796466602_8a9ce6a342_o.jpg", "secret": "d8c46a7992", "media": "photo", "latitude": "0", "id": "1796466602", "tags": "party green nisha thriller michellehalloween"}, {"datetaken": "2007-10-28 16:03:17", "license": "3", "title": "", "text": "", "album_id": "72157615947240780", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2135/1788631812_39b99c4c3f_o.jpg", "secret": "a85f65d809", "media": "photo", "latitude": "0", "id": "1788631812", "tags": "party halloween bedroom michelle nisha thriller michellehalloween"}, {"datetaken": "2007-10-28 16:04:43", "license": "3", "title": "", "text": "", "album_id": "72157615947240780", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2129/1788588010_7957f9bdfb_o.jpg", "secret": "77ee48a924", "media": "photo", "latitude": "0", "id": "1788588010", "tags": "party halloween bedroom michelle nisha thriller michellehalloween twodogsit"}, {"datetaken": "2007-10-28 16:38:41", "license": "3", "title": "", "text": "", "album_id": "72157615947240780", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2290/1788311924_5ae364c5df_o.jpg", "secret": "5929dfdc68", "media": "photo", "latitude": "0", "id": "1788311924", "tags": "halloween michelle nisha thriller"}, {"datetaken": "2007-10-28 17:00:27", "license": "3", "title": "", "text": "", "album_id": "72157615947240780", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2364/1787884221_166b38e23a_o.jpg", "secret": "1f786ecbbe", "media": "photo", "latitude": "0", "id": "1787884221", "tags": "halloween michelle nisha thriller"}, {"datetaken": "2007-10-28 17:30:26", "license": "3", "title": "", "text": "", "album_id": "72157615947240780", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2040/1789406390_96cd05dc82_o.jpg", "secret": "58376af63a", "media": "photo", "latitude": "0", "id": "1789406390", "tags": "milk halloweenmichellenishaherecomesastingraylookoutforthatpirranhathriller"}, {"datetaken": "2007-10-28 17:37:03", "license": "3", "title": "IMG_8731.JPG", "text": "", "album_id": "72157615947240780", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2120/1789179606_fc3f8d0677_o.jpg", "secret": "efac2eae21", "media": "photo", "latitude": "0", "id": "1789179606", "tags": "halloween michelle nisha thriller"}, {"datetaken": "2007-10-28 17:39:27", "license": "3", "title": "", "text": "", "album_id": "72157615947240780", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2349/1788301442_cdeaf33fb0_o.jpg", "secret": "059225d22e", "media": "photo", "latitude": "0", "id": "1788301442", "tags": "halloween michelle nisha thriller"}, {"datetaken": "2007-10-28 17:42:13", "license": "3", "title": "", "text": "", "album_id": "72157615947240780", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2082/1787446975_1b313b4962_o.jpg", "secret": "18c94cf6a7", "media": "photo", "latitude": "0", "id": "1787446975", "tags": "halloween michelle nisha thriller"}, {"datetaken": "2007-10-27 20:48:25", "license": "2", "title": "Costume Party", "text": "", "album_id": "72157602770687293", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2406/1794865704_5deb329b26_o.jpg", "secret": "1ec8021c35", "media": "photo", "latitude": "0", "id": "1794865704", "tags": "party halloween costume"}, {"datetaken": "2007-10-27 23:39:07", "license": "2", "title": "Costume Party", "text": "", "album_id": "72157602770687293", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2294/1794864412_45b16dfd3a_o.jpg", "secret": "4233e97098", "media": "photo", "latitude": "0", "id": "1794864412", "tags": "party halloween costume"}, {"datetaken": "2007-10-27 23:39:27", "license": "2", "title": "Costume Party", "text": "", "album_id": "72157602770687293", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2328/1794865148_b77e64104f_o.jpg", "secret": "ef786810bf", "media": "photo", "latitude": "0", "id": "1794865148", "tags": "party halloween costume"}, {"datetaken": "2007-10-27 23:39:34", "license": "2", "title": "Costume Party", "text": "", "album_id": "72157602770687293", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2024/1794864740_669a70c6c5_o.jpg", "secret": "f9bcf05fb2", "media": "photo", "latitude": "0", "id": "1794864740", "tags": "party halloween costume"}, {"datetaken": "2007-10-27 23:40:27", "license": "2", "title": "Costume Party", "text": "", "album_id": "72157602770687293", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2163/1794023381_0d8fbd752f_o.jpg", "secret": "9c6010aefc", "media": "photo", "latitude": "0", "id": "1794023381", "tags": "party halloween costume"}, {"datetaken": "2007-10-27 23:40:36", "license": "2", "title": "Costume Party", "text": "", "album_id": "72157602770687293", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2273/1794023911_7c2f549265_o.jpg", "secret": "001bcc3e0a", "media": "photo", "latitude": "0", "id": "1794023911", "tags": "party halloween costume"}, {"datetaken": "2007-10-27 23:42:11", "license": "2", "title": "Costume Party", "text": "", "album_id": "72157602770687293", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2327/1794024369_a07f2fd47a_o.jpg", "secret": "69487d413f", "media": "photo", "latitude": "0", "id": "1794024369", "tags": "party halloween costume"}, {"datetaken": "2007-10-27 23:43:56", "license": "2", "title": "Costume Party", "text": "", "album_id": "72157602770687293", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2126/1794024773_f9f56e10e1_o.jpg", "secret": "8e27814536", "media": "photo", "latitude": "0", "id": "1794024773", "tags": "party halloween costume"}, {"datetaken": "2007-10-27 23:44:50", "license": "2", "title": "Costume Party", "text": "", "album_id": "72157602770687293", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2155/1794025049_3186814a48_o.jpg", "secret": "c2345ea8e6", "media": "photo", "latitude": "0", "id": "1794025049", "tags": "party halloween costume"}, {"datetaken": "2007-10-27 23:45:49", "license": "2", "title": "Costume Party", "text": "", "album_id": "72157602770687293", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2255/1794025253_a02f00769c_o.jpg", "secret": "001d8a8b7c", "media": "photo", "latitude": "0", "id": "1794025253", "tags": "party halloween costume"}, {"datetaken": "2007-10-27 23:47:40", "license": "2", "title": "Costume Party", "text": "", "album_id": "72157602770687293", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2102/1794867790_8ad0ce9e1d_o.jpg", "secret": "ad9db2d307", "media": "photo", "latitude": "0", "id": "1794867790", "tags": "party halloween costume"}, {"datetaken": "2007-10-28 00:41:50", "license": "2", "title": "Costume Party", "text": "", "album_id": "72157602770687293", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2219/1794868540_4a928aa431_o.jpg", "secret": "10c7cc09f5", "media": "photo", "latitude": "0", "id": "1794868540", "tags": "party halloween costume"}, {"datetaken": "2007-10-28 00:50:02", "license": "2", "title": "Costume Party", "text": "", "album_id": "72157602770687293", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2221/1794868888_6b6dd92df5_o.jpg", "secret": "352de7efb1", "media": "photo", "latitude": "0", "id": "1794868888", "tags": "party halloween costume"}, {"datetaken": "2007-10-28 00:56:44", "license": "2", "title": "Costume Party", "text": "", "album_id": "72157602770687293", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2234/1794869094_9868d56ab0_o.jpg", "secret": "00553dd0b3", "media": "photo", "latitude": "0", "id": "1794869094", "tags": "party halloween costume"}, {"datetaken": "2007-10-28 01:05:36", "license": "2", "title": "Costume Party", "text": "", "album_id": "72157602770687293", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2098/1794027183_5f18338d0e_o.jpg", "secret": "a6ab7b9f57", "media": "photo", "latitude": "0", "id": "1794027183", "tags": "party halloween costume"}, {"datetaken": "2007-10-28 01:18:34", "license": "2", "title": "Costume Party", "text": "", "album_id": "72157602770687293", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2225/1794027477_e631d5598d_o.jpg", "secret": "067dc5bed8", "media": "photo", "latitude": "0", "id": "1794027477", "tags": "party halloween costume"}, {"datetaken": "2007-10-27 09:25:19", "license": "6", "title": "IMG_1435", "text": "", "album_id": "72157602772357974", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2276/1796064850_a3775f6355_o.jpg", "secret": "c1589a2ffd", "media": "photo", "latitude": "0", "id": "1796064850", "tags": "party halloween kristas"}, {"datetaken": "2007-10-27 09:47:29", "license": "6", "title": "IMG_1454", "text": "", "album_id": "72157602772357974", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2225/1795229885_d25a212e45_o.jpg", "secret": "5b3c0da843", "media": "photo", "latitude": "0", "id": "1795229885", "tags": "party halloween kristas"}, {"datetaken": "2007-10-27 09:48:47", "license": "6", "title": "IMG_1457", "text": "", "album_id": "72157602772357974", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2180/1795230723_1e1f2ecf19_o.jpg", "secret": "c5bf3296c7", "media": "photo", "latitude": "0", "id": "1795230723", "tags": "party halloween kristas"}, {"datetaken": "2007-10-27 10:03:35", "license": "6", "title": "IMG_1487", "text": "", "album_id": "72157602772357974", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2255/1796077246_1dea4f9b21_o.jpg", "secret": "7bc85d9171", "media": "photo", "latitude": "0", "id": "1796077246", "tags": "party halloween kristas"}, {"datetaken": "2007-10-27 10:36:15", "license": "6", "title": "IMG_1524", "text": "", "album_id": "72157602772357974", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2091/1796085266_2de44f8649_o.jpg", "secret": "e8e4e1c221", "media": "photo", "latitude": "0", "id": "1796085266", "tags": "party halloween kristas"}, {"datetaken": "2007-10-27 10:43:37", "license": "6", "title": "IMG_1534", "text": "", "album_id": "72157602772357974", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2324/1795250933_20077ce9df_o.jpg", "secret": "9580eae44f", "media": "photo", "latitude": "0", "id": "1795250933", "tags": "party halloween kristas"}, {"datetaken": "2007-10-27 11:05:04", "license": "6", "title": "IMG_1554", "text": "", "album_id": "72157602772357974", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2173/1796097336_391fcdea17_o.jpg", "secret": "97a4bd6706", "media": "photo", "latitude": "0", "id": "1796097336", "tags": "party halloween kristas"}, {"datetaken": "2007-10-27 11:11:33", "license": "6", "title": "IMG_1567", "text": "", "album_id": "72157602772357974", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2058/1796099462_6f7bafee51_o.jpg", "secret": "dc071cdf9a", "media": "photo", "latitude": "0", "id": "1796099462", "tags": "party halloween kristas"}, {"datetaken": "2007-10-27 11:36:40", "license": "6", "title": "IMG_1607", "text": "", "album_id": "72157602772357974", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2090/1795269355_eb481d2e71_o.jpg", "secret": "f9065bb362", "media": "photo", "latitude": "0", "id": "1795269355", "tags": "party halloween kristas"}, {"datetaken": "2007-10-27 11:39:20", "license": "6", "title": "IMG_1615", "text": "", "album_id": "72157602772357974", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2019/1796111706_75d6ae8e7e_o.jpg", "secret": "cb7aff7a48", "media": "photo", "latitude": "0", "id": "1796111706", "tags": "party halloween kristas"}, {"datetaken": "2007-10-27 12:08:36", "license": "6", "title": "IMG_1685", "text": "", "album_id": "72157602772357974", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2187/1796122226_f0a0163db4_o.jpg", "secret": "40c6acf737", "media": "photo", "latitude": "0", "id": "1796122226", "tags": "party halloween kristas"}, {"datetaken": "2007-10-27 12:29:18", "license": "6", "title": "IMG_1704", "text": "", "album_id": "72157602772357974", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2313/1795284255_5935c8ec6f_o.jpg", "secret": "022e3b20d9", "media": "photo", "latitude": "0", "id": "1795284255", "tags": "party halloween kristas"}, {"datetaken": "2007-10-27 12:31:59", "license": "6", "title": "IMG_1709", "text": "", "album_id": "72157602772357974", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2152/1796126620_24298a81a4_o.jpg", "secret": "99e4b11c0f", "media": "photo", "latitude": "0", "id": "1796126620", "tags": "party halloween kristas"}, {"datetaken": "2007-10-27 12:33:46", "license": "6", "title": "IMG_1711", "text": "", "album_id": "72157602772357974", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2116/1796127826_032f4db9f4_o.jpg", "secret": "f3f1bf6d0d", "media": "photo", "latitude": "0", "id": "1796127826", "tags": "party halloween kristas"}, {"datetaken": "2007-10-27 12:38:46", "license": "6", "title": "IMG_1720", "text": "", "album_id": "72157602772357974", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2028/1796130716_ef9465d34a_o.jpg", "secret": "d13cb79a4f", "media": "photo", "latitude": "0", "id": "1796130716", "tags": "party halloween kristas"}, {"datetaken": "2007-10-27 12:40:34", "license": "6", "title": "IMG_1725", "text": "", "album_id": "72157602772357974", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2292/1796133022_b39a56f55d_o.jpg", "secret": "a2118193a2", "media": "photo", "latitude": "0", "id": "1796133022", "tags": "party halloween kristas"}, {"datetaken": "2007-10-27 17:51:14", "license": "3", "title": "2007-10-27 17-51-14 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2303/1796791735_2bbec494d5_o.jpg", "secret": "878dce3be8", "media": "photo", "latitude": "0", "id": "1796791735", "tags": "party halloween2007"}, {"datetaken": "2007-10-27 17:51:28", "license": "3", "title": "2007-10-27 17-51-28 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2088/1796792721_f80e12901f_o.jpg", "secret": "4c0272dbf4", "media": "photo", "latitude": "0", "id": "1796792721", "tags": ""}, {"datetaken": "2007-10-27 17:52:28", "license": "3", "title": "2007-10-27 17-52-28 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2276/1796793565_308b80475d_o.jpg", "secret": "3adbe67fe6", "media": "photo", "latitude": "0", "id": "1796793565", "tags": ""}, {"datetaken": "2007-10-27 17:53:19", "license": "3", "title": "2007-10-27 17-53-18 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2077/1796794277_139ba43b0e_o.jpg", "secret": "daeebc3760", "media": "photo", "latitude": "0", "id": "1796794277", "tags": ""}, {"datetaken": "2007-10-27 17:58:39", "license": "3", "title": "2007-10-27 17-58-40 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2403/1796795269_87b7fe9615_o.jpg", "secret": "ad45f24449", "media": "photo", "latitude": "0", "id": "1796795269", "tags": ""}, {"datetaken": "2007-10-27 17:58:43", "license": "3", "title": "2007-10-27 17-58-44 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2132/1797636614_1ec56b8cfc_o.jpg", "secret": "04282b6322", "media": "photo", "latitude": "0", "id": "1797636614", "tags": ""}, {"datetaken": "2007-10-27 19:46:34", "license": "3", "title": "2007-10-27 19-46-34 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2356/1796797347_dbada037f9_o.jpg", "secret": "edc2f3aaae", "media": "photo", "latitude": "0", "id": "1796797347", "tags": ""}, {"datetaken": "2007-10-27 19:46:40", "license": "3", "title": "2007-10-27 19-46-40 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2390/1797638724_a0fdafd72a_o.jpg", "secret": "f7c99f24eb", "media": "photo", "latitude": "0", "id": "1797638724", "tags": ""}, {"datetaken": "2007-10-27 19:47:17", "license": "3", "title": "2007-10-27 19-47-18 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2274/1797639804_3133df35ba_o.jpg", "secret": "4400b3ecb8", "media": "photo", "latitude": "0", "id": "1797639804", "tags": ""}, {"datetaken": "2007-10-27 19:47:38", "license": "3", "title": "2007-10-27 19-47-40 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2078/1797640980_adf812cbe3_o.jpg", "secret": "0afe19e0fd", "media": "photo", "latitude": "0", "id": "1797640980", "tags": ""}, {"datetaken": "2007-10-27 19:49:16", "license": "3", "title": "2007-10-27 19-49-16 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2333/1796801903_f8fc072a96_o.jpg", "secret": "789ca6462e", "media": "photo", "latitude": "0", "id": "1796801903", "tags": ""}, {"datetaken": "2007-10-27 19:49:37", "license": "3", "title": "2007-10-27 19-49-38 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2359/1796802911_b7c6d8c9f3_o.jpg", "secret": "1ee27f94db", "media": "photo", "latitude": "0", "id": "1796802911", "tags": ""}, {"datetaken": "2007-10-27 19:49:45", "license": "3", "title": "2007-10-27 19-49-46 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2236/1796803887_601a7e2746_o.jpg", "secret": "2e7cd89dd6", "media": "photo", "latitude": "0", "id": "1796803887", "tags": ""}, {"datetaken": "2007-10-27 19:50:31", "license": "3", "title": "2007-10-27 19-50-32 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2013/1796804997_a9e036664b_o.jpg", "secret": "cdd17a97da", "media": "photo", "latitude": "0", "id": "1796804997", "tags": ""}, {"datetaken": "2007-10-27 19:54:45", "license": "3", "title": "2007-10-27 19-54-46 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2158/1796806125_9397c825b4_o.jpg", "secret": "2a364008b4", "media": "photo", "latitude": "0", "id": "1796806125", "tags": ""}, {"datetaken": "2007-10-27 19:54:50", "license": "3", "title": "2007-10-27 19-54-50 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2236/1797647532_90894a67d0_o.jpg", "secret": "8bfafa9d73", "media": "photo", "latitude": "0", "id": "1797647532", "tags": ""}, {"datetaken": "2007-10-27 19:55:17", "license": "3", "title": "2007-10-27 19-55-18 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2219/1796808541_58af24a8d6_o.jpg", "secret": "f06b0df694", "media": "photo", "latitude": "0", "id": "1796808541", "tags": ""}, {"datetaken": "2007-10-27 19:55:24", "license": "3", "title": "2007-10-27 19-55-24 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2282/1797650088_baccfb702f_o.jpg", "secret": "bc73a36d26", "media": "photo", "latitude": "0", "id": "1797650088", "tags": ""}, {"datetaken": "2007-10-27 19:56:15", "license": "3", "title": "2007-10-27 19-56-16 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2267/1797651016_f1f8d134e7_o.jpg", "secret": "452345a54d", "media": "photo", "latitude": "0", "id": "1797651016", "tags": ""}, {"datetaken": "2007-10-27 19:56:23", "license": "3", "title": "2007-10-27 19-56-24 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2337/1796812039_861cabd73a_o.jpg", "secret": "9282db6b7f", "media": "photo", "latitude": "0", "id": "1796812039", "tags": ""}, {"datetaken": "2007-10-27 20:00:32", "license": "3", "title": "2007-10-27 20-00-32", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2123/1796813107_364ffb1c4f_o.jpg", "secret": "e479253c98", "media": "photo", "latitude": "0", "id": "1796813107", "tags": ""}, {"datetaken": "2007-10-27 20:00:36", "license": "3", "title": "2007-10-27 20-00-36", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2181/1797654248_5287726eab_o.jpg", "secret": "3e032bea26", "media": "photo", "latitude": "0", "id": "1797654248", "tags": ""}, {"datetaken": "2007-10-27 20:02:09", "license": "3", "title": "2007-10-27 20-02-10 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2258/1796815349_9b4befcfc5_o.jpg", "secret": "35e7c4ad5f", "media": "photo", "latitude": "0", "id": "1796815349", "tags": ""}, {"datetaken": "2007-10-27 20:25:13", "license": "3", "title": "2007-10-27 20-25-14 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2083/1797656648_93ff2d8f3b_o.jpg", "secret": "fea558a6ed", "media": "photo", "latitude": "0", "id": "1797656648", "tags": ""}, {"datetaken": "2007-10-27 21:09:13", "license": "3", "title": "2007-10-27 21-09-14 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2266/1796817637_e17075bad2_o.jpg", "secret": "4a517070d1", "media": "photo", "latitude": "0", "id": "1796817637", "tags": ""}, {"datetaken": "2007-10-27 23:04:47", "license": "3", "title": "2007-10-27 23-04-48 - Version 2", "text": "", "album_id": "72157602780268689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2399/1796818703_7e41cd73dc_o.jpg", "secret": "4c6ae1e8e7", "media": "photo", "latitude": "0", "id": "1796818703", "tags": "halloween purple dinosaur"}, {"datetaken": "2013-10-27 13:30:35", "license": "1", "title": "Welcome To The Halloween Party!", "text": "", "album_id": "72157637055790775", "longitude": "-73.847088", "url_o": "https://farm8.staticflickr.com/7388/10543733746_875edeca27_o.jpg", "secret": "d608b33e82", "media": "photo", "latitude": "40.719587", "id": "10543733746", "tags": "halloween costume witch violet superman superboy everett 2013 wstc october2013"}, {"datetaken": "2013-10-27 13:33:22", "license": "1", "title": "Mario, Unicorn, And Witch", "text": "", "album_id": "72157637055790775", "longitude": "-73.847327", "url_o": "https://farm3.staticflickr.com/2815/10544016003_e826716cfa_o.jpg", "secret": "990e57e59f", "media": "photo", "latitude": "40.719589", "id": "10544016003", "tags": "halloween costume witch violet mario sasha unicorn faved gianluca 2013 wstc october2013"}, {"datetaken": "2013-10-27 13:33:40", "license": "1", "title": "Unicorn And Witch", "text": "", "album_id": "72157637055790775", "longitude": "-73.847327", "url_o": "https://farm8.staticflickr.com/7409/10543803375_a565491ba2_o.jpg", "secret": "c5e58f11e5", "media": "photo", "latitude": "40.719589", "id": "10543803375", "tags": "halloween costume witch violet sasha unicorn faved 2013 wstc zeroviewsonefave october2013"}, {"datetaken": "2013-10-27 13:33:44", "license": "1", "title": "Unicorn And Witch", "text": "", "album_id": "72157637055790775", "longitude": "-73.847327", "url_o": "https://farm4.staticflickr.com/3720/10543799816_4ea9b6b004_o.jpg", "secret": "db3053aaff", "media": "photo", "latitude": "40.719589", "id": "10543799816", "tags": "halloween costume witch violet sasha unicorn faved 2013 wstc october2013"}, {"datetaken": "2013-10-27 13:36:06", "license": "1", "title": "At The Party Early", "text": "", "album_id": "72157637055790775", "longitude": "-73.847327", "url_o": "https://farm4.staticflickr.com/3800/10543637766_f9001d8b70_o.jpg", "secret": "4765874ecb", "media": "photo", "latitude": "40.719589", "id": "10543637766", "tags": "halloween sue annas 2013 wstc october2013"}, {"datetaken": "2013-10-27 13:37:11", "license": "1", "title": "WSTC Halloween Party", "text": "", "album_id": "72157637055790775", "longitude": "-73.847327", "url_o": "https://farm8.staticflickr.com/7391/10543646056_7bab84e5cd_o.jpg", "secret": "1db8e3c7d8", "media": "photo", "latitude": "40.719589", "id": "10543646056", "tags": "costumes halloween sasha beah gianluca 2013 wstc october2013"}, {"datetaken": "2013-10-27 13:49:10", "license": "1", "title": "WSTC Halloween Party", "text": "", "album_id": "72157637055790775", "longitude": "-73.847327", "url_o": "https://farm8.staticflickr.com/7307/10543653575_64e39e89f5_o.jpg", "secret": "48eac3ccb4", "media": "photo", "latitude": "40.719589", "id": "10543653575", "tags": "costumes halloween violet sue everett 2013 wstc october2013"}, {"datetaken": "2013-10-27 14:08:55", "license": "1", "title": "A Pair Of Purple Witches", "text": "", "album_id": "72157637055790775", "longitude": "-73.850280", "url_o": "https://farm4.staticflickr.com/3726/10543740035_a288decc6d_o.jpg", "secret": "022a7fc64f", "media": "photo", "latitude": "40.714412", "id": "10543740035", "tags": "halloween costume witch violet sarap 2013 october2013"}, {"datetaken": "2013-10-27 14:08:59", "license": "1", "title": "A Pair Of Purple Witches", "text": "", "album_id": "72157637055790775", "longitude": "-73.850280", "url_o": "https://farm4.staticflickr.com/3761/10543787334_727fe55c26_o.jpg", "secret": "348561d921", "media": "photo", "latitude": "40.714412", "id": "10543787334", "tags": "halloween costume witch violet sarap 2013 october2013"}, {"datetaken": "2013-10-27 14:09:03", "license": "1", "title": "A Pair Of Purple Witches", "text": "", "album_id": "72157637055790775", "longitude": "-73.850280", "url_o": "https://farm4.staticflickr.com/3781/10543787386_4ee96a41ba_o.jpg", "secret": "b0fc78f273", "media": "photo", "latitude": "40.714412", "id": "10543787386", "tags": "halloween costume witch violet sarap 2013 october2013"}, {"datetaken": "2013-10-27 14:09:35", "license": "1", "title": "Boys, Fire And Super", "text": "", "album_id": "72157637055790775", "longitude": "-73.850280", "url_o": "https://farm6.staticflickr.com/5517/10543794584_fe62b0aba2_o.jpg", "secret": "3cb8777bcf", "media": "photo", "latitude": "40.714412", "id": "10543794584", "tags": "halloween superman nicholas fireman superboy everett 2013 october2013"}, {"datetaken": "2013-10-27 14:09:38", "license": "1", "title": "Boys, Fire And Super", "text": "", "album_id": "72157637055790775", "longitude": "-73.850280", "url_o": "https://farm3.staticflickr.com/2873/10543987743_bc5bdacea7_o.jpg", "secret": "6a1c49c85a", "media": "photo", "latitude": "40.714412", "id": "10543987743", "tags": "halloween superman nicholas fireman superboy everett 2013 october2013"}, {"datetaken": "2013-10-27 14:09:41", "license": "1", "title": "Big Sisters And Little Brothers", "text": "", "album_id": "72157637055790775", "longitude": "-73.850280", "url_o": "https://farm4.staticflickr.com/3830/10543771635_5ae1fe4483_o.jpg", "secret": "a69d3b1596", "media": "photo", "latitude": "40.714412", "id": "10543771635", "tags": "halloween costume witch violet nicholas everett sarap 2013 october2013"}, {"datetaken": "2013-10-27 14:18:10", "license": "1", "title": "Light Saber Duel", "text": "", "album_id": "72157637055790775", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3808/10540402053_c603653865_o.jpg", "secret": "c42794ee98", "media": "video", "latitude": "0", "id": "10540402053", "tags": "halloween costume video shane witch violet nicholas don sue lightsaber darthvader everett sarap armen 2013 victoriam nikond7000 october2013"}, {"datetaken": "2013-10-27 14:23:32", "license": "1", "title": "Light Saber Duel", "text": "", "album_id": "72157637055790775", "longitude": "-73.850320", "url_o": "https://farm6.staticflickr.com/5500/10543661296_9011612732_o.jpg", "secret": "618be4015d", "media": "photo", "latitude": "40.714044", "id": "10543661296", "tags": "halloween costume shane witch violet darthvader sarap 2013 october2013"}, {"datetaken": "2013-10-27 14:23:36", "license": "1", "title": "Light Saber Duel", "text": "", "album_id": "72157637055790775", "longitude": "-73.850320", "url_o": "https://farm3.staticflickr.com/2822/10543891343_f8b0a6608d_o.jpg", "secret": "203f8fe9f7", "media": "photo", "latitude": "40.714044", "id": "10543891343", "tags": "halloween costume blurry shane witch violet darthvader sarap 2013 october2013"}, {"datetaken": "2013-10-27 14:23:51", "license": "1", "title": "Kindergarteners At The Party", "text": "", "album_id": "72157637055790775", "longitude": "-73.850320", "url_o": "https://farm4.staticflickr.com/3833/10543897883_ba4e83a3c6_o.jpg", "secret": "58a6a73483", "media": "photo", "latitude": "40.714044", "id": "10543897883", "tags": "halloween costume shane witch violet don darthvader sarap 2013 october2013"}, {"datetaken": "2013-10-27 14:33:30", "license": "1", "title": "School Halloween Party", "text": "", "album_id": "72157637055790775", "longitude": "-73.850320", "url_o": "https://farm4.staticflickr.com/3718/10543679336_0458f46fb0_o.jpg", "secret": "68075083df", "media": "photo", "latitude": "40.714044", "id": "10543679336", "tags": "halloween costume witch violet phantom 2013 october2013"}, {"datetaken": "2013-10-27 14:33:42", "license": "1", "title": "Gangnam Style At The School Halloween Party", "text": "", "album_id": "72157637055790775", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5492/10540037026_400a04558d_o.jpg", "secret": "2716cff8a9", "media": "video", "latitude": "0", "id": "10540037026", "tags": "halloween costume video dancing witch violet 2013 nikond7000 october2013"}, {"datetaken": "2013-10-27 14:34:21", "license": "1", "title": "School Halloween Party", "text": "", "album_id": "72157637055790775", "longitude": "-73.850320", "url_o": "https://farm8.staticflickr.com/7358/10543684445_e02070564d_o.jpg", "secret": "577bc4b6b1", "media": "photo", "latitude": "40.714044", "id": "10543684445", "tags": "costumes halloween violet 2013 october2013"}, {"datetaken": "2013-10-27 14:34:35", "license": "1", "title": "School Halloween Party", "text": "", "album_id": "72157637055790775", "longitude": "-73.850320", "url_o": "https://farm4.staticflickr.com/3804/10543692756_296fa2d79f_o.jpg", "secret": "59ef4f3223", "media": "photo", "latitude": "40.714044", "id": "10543692756", "tags": "costumes halloween violet 2013 october2013"}, {"datetaken": "2013-10-27 14:34:40", "license": "1", "title": "School Halloween Party", "text": "", "album_id": "72157637055790775", "longitude": "-73.850320", "url_o": "https://farm6.staticflickr.com/5519/10543735064_b935a37740_o.jpg", "secret": "0e259515d3", "media": "photo", "latitude": "40.714044", "id": "10543735064", "tags": "costumes halloween violet 2013 october2013"}, {"datetaken": "2013-10-27 14:36:38", "license": "1", "title": "Thrift Shop At The School Halloween Party", "text": "", "album_id": "72157637055790775", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2822/10540031814_1a5c50acb9_o.jpg", "secret": "f5360bf3e2", "media": "video", "latitude": "0", "id": "10540031814", "tags": "costume video dancing shane witch violet darthvader 2013 nikond7000 october2013"}, {"datetaken": "2013-10-27 14:39:14", "license": "1", "title": "Everett & Mommy At The Party", "text": "", "album_id": "72157637055790775", "longitude": "-73.850320", "url_o": "https://farm4.staticflickr.com/3798/10543926543_c290f131bd_o.jpg", "secret": "b5367c0297", "media": "photo", "latitude": "40.714044", "id": "10543926543", "tags": "halloween costume blurry superman sue superboy everett armen proudparents 2013 october2013"}, {"datetaken": "2013-10-27 14:40:16", "license": "1", "title": "Robot Boy", "text": "", "album_id": "72157637055790775", "longitude": "-73.850320", "url_o": "https://farm6.staticflickr.com/5478/10543747934_de4538bf41_o.jpg", "secret": "a7d9062c79", "media": "photo", "latitude": "40.714044", "id": "10543747934", "tags": "halloween robot costume 2013 october2013"}, {"datetaken": "2013-10-27 14:40:22", "license": "1", "title": "Robot Boy", "text": "", "album_id": "72157637055790775", "longitude": "-73.850320", "url_o": "https://farm4.staticflickr.com/3792/10543754704_58bbdc486a_o.jpg", "secret": "feea68e7c8", "media": "photo", "latitude": "40.714044", "id": "10543754704", "tags": "halloween robot costume 2013 october2013"}, {"datetaken": "2013-10-27 14:40:56", "license": "1", "title": "Robot Boy", "text": "", "album_id": "72157637055790775", "longitude": "-73.850320", "url_o": "https://farm4.staticflickr.com/3714/10543762544_43a5f110d6_o.jpg", "secret": "0096485784", "media": "photo", "latitude": "40.714044", "id": "10543762544", "tags": "halloween robot costume 2013 october2013"}, {"datetaken": "2013-10-27 14:50:32", "license": "1", "title": "Darth Vader Gets Some Love", "text": "", "album_id": "72157637055790775", "longitude": "-73.850320", "url_o": "https://farm6.staticflickr.com/5518/10543778725_8e44358b2d_o.jpg", "secret": "7531277b50", "media": "photo", "latitude": "40.714044", "id": "10543778725", "tags": "halloween don darthvader 2013 victoriam october2013"}, {"datetaken": "2012-10-24 12:58:23", "license": "3", "title": "Spidy's Amazing Tits", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8472/8134529181_a56b9423e3_o.jpg", "secret": "0636ac4ea9", "media": "photo", "latitude": "0", "id": "8134529181", "tags": "ohio halloween mannequin hat costume display spiderman zanesville"}, {"datetaken": "2012-10-24 13:01:37", "license": "3", "title": "The Choice of the Previous Generation", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8046/8134555886_22663c32be_o.jpg", "secret": "ae7996f8e2", "media": "photo", "latitude": "0", "id": "8134555886", "tags": "brick sign logo painted faded pepsi laundromat ghostsign putnam"}, {"datetaken": "2012-10-24 15:20:48", "license": "3", "title": "Cedar Falls", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8471/8134618416_c5dc3fe217_o.jpg", "secret": "f89cd93207", "media": "photo", "latitude": "0", "id": "8134618416", "tags": "park ohio nature water forest waterfall rocks state hockinghills"}, {"datetaken": "2012-10-24 15:37:00", "license": "3", "title": "Creek, Cedar Falls", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8332/8134591057_58810a672c_o.jpg", "secret": "f015aa5833", "media": "photo", "latitude": "0", "id": "8134591057", "tags": "park ohio reflection nature water leaves forest state hockinghills"}, {"datetaken": "2012-10-24 15:41:51", "license": "3", "title": "Creek, Cedar Falls", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8333/8134618572_67e56fb6ba_o.jpg", "secret": "5bd93211b8", "media": "photo", "latitude": "0", "id": "8134618572", "tags": "park ohio sun nature forest state burst hockinghills"}, {"datetaken": "2012-10-24 17:05:22", "license": "3", "title": "", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8475/8134529269_f256fbb7b9_o.jpg", "secret": "5921179486", "media": "photo", "latitude": "0", "id": "8134529269", "tags": "street ohio grey streetsign logan davematthewsband dmb"}, {"datetaken": "2012-10-24 17:18:11", "license": "3", "title": "One-Man Party", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8045/8134529319_2662652609_o.jpg", "secret": "62ff06e5ce", "media": "photo", "latitude": "0", "id": "8134529319", "tags": "stella ohio halloween beer pumpkin hotel bucket jackolantern holidayinn logan"}, {"datetaken": "2012-10-24 17:45:46", "license": "3", "title": "Quality Cars & Trucks", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8469/8138244633_f16d391620_o.jpg", "secret": "9867299091", "media": "photo", "latitude": "0", "id": "8138244633", "tags": "old ohio cars sign quality trucks logan dilapidated"}, {"datetaken": "2012-10-25 07:37:58", "license": "3", "title": "Gas Station, Logan, Ohio", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8475/8134529391_23f4c32847_o.jpg", "secret": "58d012082d", "media": "photo", "latitude": "0", "id": "8134529391", "tags": "ohio ice station coke pop oldschool chips gas pepsi snacks logan cigarettes budlight 7up"}, {"datetaken": "2012-10-25 12:58:18", "license": "3", "title": "Logan Mural", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8050/8134529439_820abcf3a1_o.jpg", "secret": "3205a6803d", "media": "photo", "latitude": "0", "id": "8134529439", "tags": "ohio art painting mural downtown deer logan oldmanscave"}, {"datetaken": "2012-10-25 12:59:59", "license": "3", "title": "Logan, Ohio", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8474/8134529499_0cd6f69326_o.jpg", "secret": "4e3764b1ff", "media": "photo", "latitude": "0", "id": "8134529499", "tags": "road ohio sign peeling paint downtown faded logan aniceplacetolive"}, {"datetaken": "2012-10-25 13:49:18", "license": "3", "title": "Tiny People", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8465/8138740848_ed36071974_o.jpg", "secret": "aa86756ca8", "media": "photo", "latitude": "0", "id": "8138740848", "tags": "perspective tiny people woods ash cave hocking hills state forest park ohio"}, {"datetaken": "2012-10-25 13:52:37", "license": "3", "title": "Ought to be Wet Here.", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8045/8138680231_2b3454fa31_o.jpg", "secret": "8089a1d900", "media": "photo", "latitude": "0", "id": "8138680231", "tags": "park ohio rock waterfall state dry falls hills ash cave hocking"}, {"datetaken": "2012-10-25 14:13:45", "license": "3", "title": "Ash Cave", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8474/8134556172_56d6c899dc_o.jpg", "secret": "88b3f62398", "media": "photo", "latitude": "0", "id": "8134556172", "tags": "park ohio panorama vertical composite forest state hills ash cave hocking threephotos"}, {"datetaken": "2012-10-25 14:24:02", "license": "3", "title": "Ash Cave Pano", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8472/8138656725_fc51778bf1_o.jpg", "secret": "1b34b5da20", "media": "photo", "latitude": "0", "id": "8138656725", "tags": "park panorama composite forest photoshop state hills ash cave stitched hocking"}, {"datetaken": "2012-10-25 14:34:56", "license": "3", "title": "Rocks near Ash Cave", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8324/8138303253_dbc030ff72_o.jpg", "secret": "68f7447162", "media": "photo", "latitude": "0", "id": "8138303253", "tags": "park trees ohio nature rock forest woods state roots hills hocking ashcave"}, {"datetaken": "2012-10-25 15:22:55", "license": "3", "title": "Walk-Thru, Old Man's Cave", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8187/8134637252_e039c72033_o.jpg", "secret": "ef35827a1e", "media": "photo", "latitude": "0", "id": "8134637252", "tags": "park ohio rock stairs forest state cut steps walkway manmade hockinghills oldmanscave"}, {"datetaken": "2012-10-25 15:27:04", "license": "3", "title": "Roots", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8195/8138335002_1ef27a1d75_o.jpg", "secret": "cd58429ed7", "media": "photo", "latitude": "0", "id": "8138335002", "tags": "park trees ohio nature rock forest woods state roots hills hocking ashcave"}, {"datetaken": "2012-10-25 15:31:19", "license": "3", "title": "Rise", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8054/8138244821_cc9d690a6a_o.jpg", "secret": "b52636dd23", "media": "photo", "latitude": "0", "id": "8138244821", "tags": "statepark light ohio rock stairs dark carved moss darkness steps hockinghills oldmanscave stateforest"}, {"datetaken": "2012-10-25 15:36:03", "license": "3", "title": "Woods, Exiting Old Man's Cave", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8466/8138275622_6376123fb7_o.jpg", "secret": "332d19a304", "media": "photo", "latitude": "0", "id": "8138275622", "tags": "statepark ohio rock moss darkness steps hockinghills oldmanscave stateforest ohiohockinghills"}, {"datetaken": "2012-10-25 15:53:06", "license": "3", "title": "Carved in Stone", "text": "", "album_id": "72157631879336542", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8054/8138244687_8487735175_o.jpg", "secret": "c510c1dff0", "media": "photo", "latitude": "0", "id": "8138244687", "tags": "statepark ohio etched emblem carved state parks crest hockinghills stateforest"}, {"datetaken": "2012-10-27 19:53:35", "license": "2", "title": "IMG_1580", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8331/8135363659_18f590aa44_o.jpg", "secret": "8ab2c42bc1", "media": "photo", "latitude": "0", "id": "8135363659", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 21:00:28", "license": "2", "title": "IMG_1583", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8055/8135392160_3e1f589c92_o.jpg", "secret": "c89a88b5f3", "media": "photo", "latitude": "0", "id": "8135392160", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 21:05:58", "license": "2", "title": "IMG_1585", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8050/8135364841_ed5737481a_o.jpg", "secret": "0617ac05cd", "media": "photo", "latitude": "0", "id": "8135364841", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 21:08:09", "license": "2", "title": "IMG_1587", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8195/8135393286_a62ecb2e1f_o.jpg", "secret": "cfabb7f8e3", "media": "photo", "latitude": "0", "id": "8135393286", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 21:08:23", "license": "2", "title": "IMG_1588", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8472/8135365683_3606473840_o.jpg", "secret": "d1ee50aafe", "media": "photo", "latitude": "0", "id": "8135365683", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 21:15:07", "license": "2", "title": "IMG_1593", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8189/8135394254_86d691c44b_o.jpg", "secret": "ff195becdf", "media": "photo", "latitude": "0", "id": "8135394254", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 21:15:13", "license": "2", "title": "IMG_1594", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8185/8135394640_8c77285030_o.jpg", "secret": "44314cdbb0", "media": "photo", "latitude": "0", "id": "8135394640", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 21:17:24", "license": "2", "title": "IMG_1596", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8472/8135367001_365ab86390_o.jpg", "secret": "f265045a8e", "media": "photo", "latitude": "0", "id": "8135367001", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 21:29:28", "license": "2", "title": "IMG_1599", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8053/8135367363_ef0b93ff5a_o.jpg", "secret": "176728dff4", "media": "photo", "latitude": "0", "id": "8135367363", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 21:30:30", "license": "2", "title": "IMG_1600", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8327/8135395938_1a066e3080_o.jpg", "secret": "6623b76af1", "media": "photo", "latitude": "0", "id": "8135395938", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 21:36:41", "license": "2", "title": "IMG_1606", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8044/8135368327_cf8cc4c799_o.jpg", "secret": "e14ebc1a01", "media": "photo", "latitude": "0", "id": "8135368327", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 21:39:10", "license": "2", "title": "IMG_1610", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8471/8135397030_355f5966f7_o.jpg", "secret": "7f159da14d", "media": "photo", "latitude": "0", "id": "8135397030", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 22:30:57", "license": "2", "title": "IMG_1626", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8195/8135397516_c85376a454_o.jpg", "secret": "c4e9f00bc0", "media": "photo", "latitude": "0", "id": "8135397516", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 23:00:17", "license": "2", "title": "IMG_1634", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8465/8135369705_40fb0c21e9_o.jpg", "secret": "3bed134b34", "media": "photo", "latitude": "0", "id": "8135369705", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 23:12:06", "license": "2", "title": "IMG_1636", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8333/8135370213_2b723d0ea0_o.jpg", "secret": "eaee744bf7", "media": "photo", "latitude": "0", "id": "8135370213", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 23:14:57", "license": "2", "title": "IMG_1639", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8189/8135398976_0495a7db00_o.jpg", "secret": "6fb1661625", "media": "photo", "latitude": "0", "id": "8135398976", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 23:40:14", "license": "2", "title": "IMG_1659", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8053/8135399582_5dd5521c0a_o.jpg", "secret": "d65cdb81f1", "media": "photo", "latitude": "0", "id": "8135399582", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 23:46:12", "license": "2", "title": "IMG_1664", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8331/8135371775_6d45f349f4_o.jpg", "secret": "a8b45c4446", "media": "photo", "latitude": "0", "id": "8135371775", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 23:48:22", "license": "2", "title": "IMG_1666", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8328/8135400522_89a83f3d79_o.jpg", "secret": "decd9d9bdb", "media": "photo", "latitude": "0", "id": "8135400522", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-28 00:11:56", "license": "2", "title": "IMG_1678", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8054/8135372525_4d4b701aba_o.jpg", "secret": "41b32b299d", "media": "photo", "latitude": "0", "id": "8135372525", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-28 00:41:03", "license": "2", "title": "IMG_1692", "text": "", "album_id": "72157631881098299", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8475/8135401446_f5031253df_o.jpg", "secret": "cb47461ee5", "media": "photo", "latitude": "0", "id": "8135401446", "tags": "halloween halloween2012 mcgaugheyparty"}, {"datetaken": "2012-10-27 23:51:48", "license": "4", "title": "Midnight exit", "text": "", "album_id": "72157631883881971", "longitude": "-70.888627", "url_o": "https://farm9.staticflickr.com/8055/8136684940_4981622de9_o.jpg", "secret": "2e7ae2be98", "media": "photo", "latitude": "42.519750", "id": "8136684940", "tags": "party bw halloween costume massachusetts salem finz"}, {"datetaken": "2012-10-27 23:52:17", "license": "4", "title": "Sunglass Couple", "text": "", "album_id": "72157631883881971", "longitude": "-70.888584", "url_o": "https://farm9.staticflickr.com/8330/8136655939_2b11088bb7_o.jpg", "secret": "dc87475448", "media": "photo", "latitude": "42.519497", "id": "8136655939", "tags": "party bw halloween costume massachusetts salem finz"}, {"datetaken": "2012-10-27 23:53:00", "license": "4", "title": "Its in the Bag", "text": "", "album_id": "72157631883881971", "longitude": "-70.888241", "url_o": "https://farm9.staticflickr.com/8049/8136686618_6a553fb899_o.jpg", "secret": "0e737e0f68", "media": "photo", "latitude": "42.519386", "id": "8136686618", "tags": "party bw halloween costume massachusetts salem finz"}, {"datetaken": "2012-10-27 23:53:24", "license": "4", "title": "Grape crush", "text": "", "album_id": "72157631883881971", "longitude": "-70.888670", "url_o": "https://farm9.staticflickr.com/8189/8136656891_7b4aa1e171_o.jpg", "secret": "c740abd630", "media": "photo", "latitude": "42.519718", "id": "8136656891", "tags": "party bw halloween costume massachusetts salem finz"}, {"datetaken": "2012-10-27 23:54:00", "license": "4", "title": "Proper ID", "text": "", "album_id": "72157631883881971", "longitude": "-70.888541", "url_o": "https://farm9.staticflickr.com/8476/8136657389_ee6f94877d_o.jpg", "secret": "f8c8bc250e", "media": "photo", "latitude": "42.519545", "id": "8136657389", "tags": "party bw halloween costume massachusetts salem finz"}, {"datetaken": "2012-10-27 23:54:40", "license": "4", "title": "Uuuuh!", "text": "", "album_id": "72157631883881971", "longitude": "-70.888477", "url_o": "https://farm9.staticflickr.com/8183/8136687964_ab95c3b8a1_o.jpg", "secret": "fcfee169f4", "media": "photo", "latitude": "42.519560", "id": "8136687964", "tags": "party bw halloween costume massachusetts salem finz"}, {"datetaken": "2012-10-27 23:56:19", "license": "4", "title": "Pixies", "text": "", "album_id": "72157631883881971", "longitude": "-70.888563", "url_o": "https://farm9.staticflickr.com/8194/8136658437_98ef8b0d63_o.jpg", "secret": "58d20c0bc2", "media": "photo", "latitude": "42.519386", "id": "8136658437", "tags": "party bw halloween costume massachusetts salem finz"}, {"datetaken": "2012-10-27 23:56:42", "license": "4", "title": "Flapper", "text": "", "album_id": "72157631883881971", "longitude": "-70.888456", "url_o": "https://farm9.staticflickr.com/8195/8136688978_da6de1088e_o.jpg", "secret": "011fc656c8", "media": "photo", "latitude": "42.519450", "id": "8136688978", "tags": "party bw halloween costume massachusetts salem finz"}, {"datetaken": "2012-10-27 23:58:19", "license": "4", "title": "On TV", "text": "", "album_id": "72157631883881971", "longitude": "-70.888563", "url_o": "https://farm9.staticflickr.com/8192/8136690424_f9bda4e063_o.jpg", "secret": "0b663d9a3f", "media": "photo", "latitude": "42.519418", "id": "8136690424", "tags": "party bw halloween costume massachusetts salem finz"}, {"datetaken": "2012-10-27 23:59:17", "license": "4", "title": "Cowgirl", "text": "", "album_id": "72157631883881971", "longitude": "-70.888584", "url_o": "https://farm9.staticflickr.com/8472/8136662571_d9fa3c7891_o.jpg", "secret": "b6a7358a49", "media": "photo", "latitude": "42.519481", "id": "8136662571", "tags": "party bw halloween costume massachusetts salem finz"}, {"datetaken": "2012-10-28 00:02:57", "license": "4", "title": "Twins", "text": "", "album_id": "72157631883881971", "longitude": "-70.888541", "url_o": "https://farm9.staticflickr.com/8193/8136663189_4b070bc6c8_o.jpg", "secret": "d7da459391", "media": "photo", "latitude": "42.519529", "id": "8136663189", "tags": "party bw halloween costume massachusetts salem finz"}, {"datetaken": "2012-10-28 00:07:45", "license": "4", "title": "Should I kiss her?", "text": "", "album_id": "72157631883881971", "longitude": "-70.888456", "url_o": "https://farm9.staticflickr.com/8045/8136693904_7338cb748f_o.jpg", "secret": "e2a1562655", "media": "photo", "latitude": "42.519465", "id": "8136693904", "tags": "party bw halloween costume massachusetts salem finz"}, {"datetaken": "2012-10-28 00:08:21", "license": "4", "title": "Bo peep?", "text": "", "album_id": "72157631883881971", "longitude": "-70.888541", "url_o": "https://farm9.staticflickr.com/8195/8136694364_e527f8fae3_o.jpg", "secret": "4ed7447846", "media": "photo", "latitude": "42.519529", "id": "8136694364", "tags": "party bw halloween costume massachusetts salem finz"}, {"datetaken": "2012-10-28 00:10:59", "license": "4", "title": "Call home", "text": "", "album_id": "72157631883881971", "longitude": "-70.888413", "url_o": "https://farm9.staticflickr.com/8049/8136664717_2fc623290a_o.jpg", "secret": "95a4ac962f", "media": "photo", "latitude": "42.519497", "id": "8136664717", "tags": "party bw halloween costume massachusetts salem finz"}, {"datetaken": "2012-10-28 00:11:23", "license": "4", "title": "Online Fur", "text": "", "album_id": "72157631883881971", "longitude": "-70.888456", "url_o": "https://farm9.staticflickr.com/8053/8136665133_43f8c76a36_o.jpg", "secret": "7a1c7824fd", "media": "photo", "latitude": "42.519465", "id": "8136665133", "tags": "party bw halloween costume massachusetts salem finz"}, {"datetaken": "2012-10-28 00:12:08", "license": "4", "title": "Light of the Moon", "text": "", "album_id": "72157631883881971", "longitude": "-70.888584", "url_o": "https://farm9.staticflickr.com/8470/8136666001_ff2561ff1d_o.jpg", "secret": "c116c4f9bc", "media": "photo", "latitude": "42.519545", "id": "8136666001", "tags": "party bw halloween costume massachusetts salem finz"}, {"datetaken": "2005-10-30 00:21:19", "license": "3", "title": "beer box", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/57717440_a612df2605_o.jpg", "secret": "a612df2605", "media": "photo", "latitude": "0", "id": "57717440", "tags": "chicago fall halloween 2005 friends costumes party paul bernhardt beer bunny"}, {"datetaken": "2005-10-30 00:21:24", "license": "3", "title": "NO NO NO NIGHTMARE NO", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/57689822_a493acce32_o.jpg", "secret": "a493acce32", "media": "photo", "latitude": "0", "id": "57689822", "tags": "chicago fall halloween 2005 friends costumes party bernhardt scary bunny heebiejeebies"}, {"datetaken": "2005-10-30 00:21:57", "license": "3", "title": "oh ja!", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/57690149_9fc35b2d9b_o.jpg", "secret": "9fc35b2d9b", "media": "photo", "latitude": "0", "id": "57690149", "tags": "chicago fall halloween 2005 friends costumes party ira eurotrash"}, {"datetaken": "2005-10-30 00:22:07", "license": "3", "title": "hahaha OH MY GOD", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/57690302_7de820ad79_o.jpg", "secret": "7de820ad79", "media": "photo", "latitude": "0", "id": "57690302", "tags": "chicago fall halloween 2005 friends costumes party bernhardt jon andrea"}, {"datetaken": "2005-10-30 00:22:13", "license": "3", "title": "whatchawant!?!", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/57690463_5127456bab_o.jpg", "secret": "5127456bab", "media": "photo", "latitude": "0", "id": "57690463", "tags": "chicago fall halloween 2005 friends costumes party me zombie trucker"}, {"datetaken": "2005-10-30 00:22:22", "license": "3", "title": "busted", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/57690703_cca3794121_o.jpg", "secret": "cca3794121", "media": "photo", "latitude": "0", "id": "57690703", "tags": "chicago fall halloween 2005 friends costumes party andy bruised"}, {"datetaken": "2005-10-30 00:22:57", "license": "3", "title": "silf & olly!!!!!!!", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/57690834_0432183303_o.jpg", "secret": "0432183303", "media": "photo", "latitude": "0", "id": "57690834", "tags": "chicago fall halloween 2005 friends costumes party andrea siflolly"}, {"datetaken": "2005-10-30 00:27:08", "license": "3", "title": "a little accident", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/57690934_66d51cf0e5_o.jpg", "secret": "66d51cf0e5", "media": "photo", "latitude": "0", "id": "57690934", "tags": "chicago fall halloween 2005 friends costumes party kelly blood"}, {"datetaken": "2005-10-30 00:30:09", "license": "3", "title": "sailors vs. ninjas", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/57691053_49fa83ab30_o.jpg", "secret": "49fa83ab30", "media": "photo", "latitude": "0", "id": "57691053", "tags": "chicago fall halloween 2005 friends costumes party sailors ninjas"}, {"datetaken": "2005-10-30 01:14:43", "license": "3", "title": "seriously", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/57691213_dd8fd2b22f_o.jpg", "secret": "dd8fd2b22f", "media": "photo", "latitude": "0", "id": "57691213", "tags": "chicago fall halloween 2005 friends costumes party evan ghost beer"}, {"datetaken": "2005-10-30 02:08:38", "license": "3", "title": "so tough.", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/57691374_c808018a8b_o.jpg", "secret": "c808018a8b", "media": "photo", "latitude": "0", "id": "57691374", "tags": "chicago fall halloween 2005 friends costumes party alex woodspirit"}, {"datetaken": "2005-10-30 02:16:23", "license": "3", "title": "what's a white sock to do?", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/57691508_225e6b1d51_o.jpg", "secret": "225e6b1d51", "media": "photo", "latitude": "0", "id": "57691508", "tags": "chicago fall halloween 2005 friends costumes party len whitesock"}, {"datetaken": "2005-10-30 02:16:48", "license": "3", "title": "behold, the levee", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/57691676_e60858b33c_o.jpg", "secret": "e60858b33c", "media": "photo", "latitude": "0", "id": "57691676", "tags": "chicago fall halloween 2005 friends costumes party keelin katrina hurricane"}, {"datetaken": "2005-10-30 02:16:55", "license": "3", "title": "woosh", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/57691837_e0a30ecdfe_o.jpg", "secret": "e0a30ecdfe", "media": "photo", "latitude": "0", "id": "57691837", "tags": "chicago fall halloween 2005 friends costumes party katrina hurricane whitesock keelin len"}, {"datetaken": "2005-10-30 02:17:01", "license": "3", "title": "the storm takes over", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/57692013_cdf303d3cc_o.jpg", "secret": "cdf303d3cc", "media": "photo", "latitude": "0", "id": "57692013", "tags": "chicago fall halloween 2005 friends costumes party len keelin alex katrina hurricane whitesock woodsprite"}, {"datetaken": "2005-10-30 02:17:09", "license": "3", "title": "katrina vs woodspirit", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/57692426_7e0de97a04_o.jpg", "secret": "7e0de97a04", "media": "photo", "latitude": "0", "id": "57692426", "tags": "chicago fall halloween 2005 friends costumes party keelin alex katrina hurricane woodsprite"}, {"datetaken": "2005-10-30 02:17:19", "license": "3", "title": "take that", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/57692561_1bf54bb622_o.jpg", "secret": "1bf54bb622", "media": "photo", "latitude": "0", "id": "57692561", "tags": "chicago fall halloween 2005 friends costumes party alex woodspirit"}, {"datetaken": "2005-10-30 02:18:05", "license": "3", "title": "rita-corn", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/57692696_136335564e_o.jpg", "secret": "136335564e", "media": "photo", "latitude": "0", "id": "57692696", "tags": "chicago fall halloween 2005 friends costumes party rita unicorn"}, {"datetaken": "2005-10-30 02:18:12", "license": "3", "title": "nose grab", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/57717578_677c4a2165_o.jpg", "secret": "677c4a2165", "media": "photo", "latitude": "0", "id": "57717578", "tags": "chicago fall halloween 2005 friends costumes party joaquin seal"}, {"datetaken": "2005-10-30 02:18:34", "license": "3", "title": "taking over", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/57717821_c252b7b73f_o.jpg", "secret": "c252b7b73f", "media": "photo", "latitude": "0", "id": "57717821", "tags": "chicago fall halloween 2005 friends costumes party"}, {"datetaken": "2005-10-30 02:25:10", "license": "3", "title": "wha happen?", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/57717973_3704bed2f9_o.jpg", "secret": "3704bed2f9", "media": "photo", "latitude": "0", "id": "57717973", "tags": "chicago fall halloween 2005 friends costumes party jon bruise"}, {"datetaken": "2005-10-30 02:31:31", "license": "3", "title": "fly, little pegacorn", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/57718088_ffdca8c15c_o.jpg", "secret": "ffdca8c15c", "media": "photo", "latitude": "0", "id": "57718088", "tags": "chicago fall halloween 2005 friends costumes party rita"}, {"datetaken": "2005-10-30 02:31:37", "license": "3", "title": "teeth touch", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/57718196_77ee2dbe24_o.jpg", "secret": "77ee2dbe24", "media": "photo", "latitude": "0", "id": "57718196", "tags": "chicago fall halloween 2005 friends costumes party len rita keelin"}, {"datetaken": "2005-10-30 03:13:45", "license": "3", "title": "aaaahhhh", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/57725644_fcaba420b6_o.jpg", "secret": "fcaba420b6", "media": "photo", "latitude": "0", "id": "57725644", "tags": "chicago fall halloween 2005 friends costume makeup me"}, {"datetaken": "2005-10-30 03:14:02", "license": "3", "title": "you bet", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/57725834_64f693e4ed_o.jpg", "secret": "64f693e4ed", "media": "photo", "latitude": "0", "id": "57725834", "tags": "chicago fall halloween 2005 friends costume makeup"}, {"datetaken": "2005-10-30 03:16:49", "license": "3", "title": "owwww", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/57726103_0141c4b6a1_o.jpg", "secret": "0141c4b6a1", "media": "photo", "latitude": "0", "id": "57726103", "tags": "chicago fall halloween 2005 friends costume makeup jon"}, {"datetaken": "2005-10-30 03:17:58", "license": "3", "title": "shame", "text": "", "album_id": "1249068", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/57726468_e4f0476081_o.jpg", "secret": "e4f0476081", "media": "photo", "latitude": "0", "id": "57726468", "tags": "chicago fall halloween 2005 friends costume makeup jon"}, {"datetaken": "2005-10-29 20:41:32", "license": "5", "title": "My costume: A \"404 Page Not Found\" error page", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/57745979_5280154078_o.jpg", "secret": "5280154078", "media": "photo", "latitude": "0", "id": "57745979", "tags": "halloween halloweenparty sanfrancisco california 404 pagenotfound filenotfound errorpage costume brettl"}, {"datetaken": "2005-10-29 21:37:01", "license": "5", "title": "Kenneth is a ghost", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/57746311_ce5cbbf617_o.jpg", "secret": "ce5cbbf617", "media": "photo", "latitude": "0", "id": "57746311", "tags": "halloween halloweenparty sanfrancisco california ghost costime kennethberger costume"}, {"datetaken": "2005-10-29 21:37:33", "license": "5", "title": "Home-wrecker and Punk Rawker", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/57748369_f3e32c450f_o.jpg", "secret": "f3e32c450f", "media": "photo", "latitude": "0", "id": "57748369", "tags": "halloween halloweenparty sanfrancisco california costume homewrecker punkrocker"}, {"datetaken": "2005-10-29 21:37:57", "license": "5", "title": "Beaker", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/57748567_1a07d44c58_o.jpg", "secret": "1a07d44c58", "media": "photo", "latitude": "0", "id": "57748567", "tags": "halloween halloweenparty sanfrancisco california beaker costume"}, {"datetaken": "2005-10-29 21:38:23", "license": "5", "title": "Jackie O", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/57748809_7fb4f9e99a_o.jpg", "secret": "7fb4f9e99a", "media": "photo", "latitude": "0", "id": "57748809", "tags": "halloween halloweenparty sanfrancisco california amymiller jackieo costume kennedy onassis"}, {"datetaken": "2005-10-29 21:43:41", "license": "5", "title": "Jackie O and Slash", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/57749135_cb26076d2e_o.jpg", "secret": "cb26076d2e", "media": "photo", "latitude": "0", "id": "57749135", "tags": "halloween halloweenparty sanfrancisco california slash jackieo costume"}, {"datetaken": "2005-10-29 21:44:46", "license": "5", "title": "More costume goodness", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/57749389_4bb0067ea9_o.jpg", "secret": "4bb0067ea9", "media": "photo", "latitude": "0", "id": "57749389", "tags": "halloween halloweenparty sanfrancisco california costume homewreecker punkrocker"}, {"datetaken": "2005-10-29 21:45:12", "license": "5", "title": "Love the tat", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/57750706_e68aca3706_o.jpg", "secret": "e68aca3706", "media": "photo", "latitude": "0", "id": "57750706", "tags": "halloween halloweenparty sanfrancisco california costume slash"}, {"datetaken": "2005-10-29 23:27:34", "license": "5", "title": "Rachel from Blade Runner and Norse Shaman", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/57750992_b3238f5c77_o.jpg", "secret": "b3238f5c77", "media": "photo", "latitude": "0", "id": "57750992", "tags": "halloween halloweenparty sanfrancisco california costume bladerunner rachel shaman"}, {"datetaken": "2005-10-29 23:28:09", "license": "5", "title": "Of replicants and hunting knives", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/57751276_7768fd91a1_o.jpg", "secret": "7768fd91a1", "media": "photo", "latitude": "0", "id": "57751276", "tags": "halloween halloweenparty sanfrancisco california costume bladerunner rachel shaman"}, {"datetaken": "2005-10-29 23:32:53", "license": "5", "title": "Filming something out in front", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/57751543_4a650e86a6_o.jpg", "secret": "4a650e86a6", "media": "photo", "latitude": "0", "id": "57751543", "tags": "halloween halloweenparty sanfrancisco california costume cop"}, {"datetaken": "2005-10-29 23:33:03", "license": "5", "title": "Is Prince part of the movie or just spectating?", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/57751899_ac4fdd8e82_o.jpg", "secret": "ac4fdd8e82", "media": "photo", "latitude": "0", "id": "57751899", "tags": "halloween halloweenparty sanfrancisco california costume prince"}, {"datetaken": "2005-10-29 23:33:26", "license": "5", "title": "I love the eyes above the light in this shot", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/57752110_e0817b84f5_o.jpg", "secret": "e0817b84f5", "media": "photo", "latitude": "0", "id": "57752110", "tags": "halloween halloweenparty sanfrancisco california costume cop"}, {"datetaken": "2005-10-30 00:01:28", "license": "5", "title": "Scandalous", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/57752350_0f9914afa6_o.jpg", "secret": "0f9914afa6", "media": "photo", "latitude": "0", "id": "57752350", "tags": "halloween halloweenparty sanfrancisco california costume jackieo"}, {"datetaken": "2005-10-30 00:11:06", "license": "5", "title": "Mr. T, something, something else, Not-Tinkerbell", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/57754038_81709b39fb_o.jpg", "secret": "81709b39fb", "media": "photo", "latitude": "0", "id": "57754038", "tags": "halloween halloweenparty sanfrancisco california costume mrt lunamoth"}, {"datetaken": "2005-10-30 00:50:09", "license": "5", "title": "To the couch!", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/57753154_32e77b16a9_o.jpg", "secret": "32e77b16a9", "media": "photo", "latitude": "0", "id": "57753154", "tags": "halloween halloweenparty sanfrancisco california costume ghost 404 jackieo kennethberger amymiller brettl"}, {"datetaken": "2005-10-30 00:50:23", "license": "5", "title": "Doubling themselves", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/57753480_64688cda9d_o.jpg", "secret": "64688cda9d", "media": "photo", "latitude": "0", "id": "57753480", "tags": "halloween halloweenparty sanfrancisco california costume ghost 404 jackieo kennethberger amymiller brettl"}, {"datetaken": "2005-10-30 00:52:16", "license": "5", "title": "Ghost and Not-Tinkerbell", "text": "", "album_id": "1250283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/57753777_1117052c6c_o.jpg", "secret": "1117052c6c", "media": "photo", "latitude": "0", "id": "57753777", "tags": "halloween halloweenparty sanfrancisco california costume ghost kennethberger lunamoth"}, {"datetaken": "2005-10-30 21:50:03", "license": "4", "title": "Friends", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/57913622_61a5d4df41_o.jpg", "secret": "61a5d4df41", "media": "photo", "latitude": "0", "id": "57913622", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:04", "license": "4", "title": "Gates", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/57913633_a866061afd_o.jpg", "secret": "a866061afd", "media": "photo", "latitude": "0", "id": "57913633", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:06", "license": "4", "title": "Gates 2", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/57913641_d1d3097df0_o.jpg", "secret": "d1d3097df0", "media": "photo", "latitude": "0", "id": "57913641", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:07", "license": "4", "title": "Lots o' zombies", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/57913649_48dead5137_o.jpg", "secret": "48dead5137", "media": "photo", "latitude": "0", "id": "57913649", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:09", "license": "4", "title": "Side shot", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/57913658_a4ce279fdb_o.jpg", "secret": "a4ce279fdb", "media": "photo", "latitude": "0", "id": "57913658", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:10", "license": "4", "title": "Full on", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/57913666_cae5857276_o.jpg", "secret": "cae5857276", "media": "photo", "latitude": "0", "id": "57913666", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:11", "license": "4", "title": "Arr!", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/57913671_cb60e609d2_o.jpg", "secret": "cb60e609d2", "media": "photo", "latitude": "0", "id": "57913671", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:13", "license": "4", "title": "Let's get this party started!", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/57913707_7558dc5251_o.jpg", "secret": "7558dc5251", "media": "photo", "latitude": "0", "id": "57913707", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:15", "license": "4", "title": "Mobbing a car", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/57913718_67a229ff29_o.jpg", "secret": "67a229ff29", "media": "photo", "latitude": "0", "id": "57913718", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:16", "license": "4", "title": "Zombie activist", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/57913727_afcafae9eb_o.jpg", "secret": "afcafae9eb", "media": "photo", "latitude": "0", "id": "57913727", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:17", "license": "4", "title": "More mobbing!", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/57913730_8e97c2aa8b_o.jpg", "secret": "8e97c2aa8b", "media": "photo", "latitude": "0", "id": "57913730", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:18", "license": "4", "title": "BRAAAAAINS", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/57913735_6451f9335e_o.jpg", "secret": "6451f9335e", "media": "photo", "latitude": "0", "id": "57913735", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:19", "license": "4", "title": "Lucky biker!", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/57913747_fa364408a9_o.jpg", "secret": "fa364408a9", "media": "photo", "latitude": "0", "id": "57913747", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:19", "license": "4", "title": "Martial zombies!", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/57913752_9be00133ea_o.jpg", "secret": "9be00133ea", "media": "photo", "latitude": "0", "id": "57913752", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:20", "license": "4", "title": "Lonely zombie", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/57913756_aa83ffda0a_o.jpg", "secret": "aa83ffda0a", "media": "photo", "latitude": "0", "id": "57913756", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:21", "license": "4", "title": "Zombie biker!", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/57913762_20186a488a_o.jpg", "secret": "20186a488a", "media": "photo", "latitude": "0", "id": "57913762", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:22", "license": "4", "title": "Zombie friends", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/57913767_82bbf22e69_o.jpg", "secret": "82bbf22e69", "media": "photo", "latitude": "0", "id": "57913767", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:24", "license": "4", "title": "Stop!", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/57913775_5b04655d3d_o.jpg", "secret": "5b04655d3d", "media": "photo", "latitude": "0", "id": "57913775", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:25", "license": "4", "title": "Don't walk!", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/57913784_793b2b53db_o.jpg", "secret": "793b2b53db", "media": "photo", "latitude": "0", "id": "57913784", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:26", "license": "4", "title": "Plan 9", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/57913791_630b2db340_o.jpg", "secret": "630b2db340", "media": "photo", "latitude": "0", "id": "57913791", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:27", "license": "4", "title": "Raw vitalism!", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/57913796_4e733d1a3d_o.jpg", "secret": "4e733d1a3d", "media": "photo", "latitude": "0", "id": "57913796", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:29", "license": "4", "title": "Onward!", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/57913811_c7a22caff8_o.jpg", "secret": "c7a22caff8", "media": "photo", "latitude": "0", "id": "57913811", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:30", "license": "4", "title": "Bars", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/57913818_03b4fefa63_o.jpg", "secret": "03b4fefa63", "media": "photo", "latitude": "0", "id": "57913818", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:31", "license": "4", "title": "Preach it!", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/57913828_133c1b51ee_o.jpg", "secret": "133c1b51ee", "media": "photo", "latitude": "0", "id": "57913828", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:32", "license": "4", "title": "Taco Bell", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/57913847_869095e544_o.jpg", "secret": "869095e544", "media": "photo", "latitude": "0", "id": "57913847", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:33", "license": "4", "title": "Good luck, guys!", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/57913854_78ddfc53da_o.jpg", "secret": "78ddfc53da", "media": "photo", "latitude": "0", "id": "57913854", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:34", "license": "4", "title": "Success!", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/57913858_491a0b177c_o.jpg", "secret": "491a0b177c", "media": "photo", "latitude": "0", "id": "57913858", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2005-10-30 21:50:35", "license": "4", "title": "Open...", "text": "", "album_id": "1254452", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/57913861_d8785762d8_o.jpg", "secret": "d8785762d8", "media": "photo", "latitude": "0", "id": "57913861", "tags": "zombie mob 2005 bloomington halloween"}, {"datetaken": "2007-10-24 17:00:09", "license": "2", "title": "Halloween Means Monsters, Inc", "text": "", "album_id": "72157602805299990", "longitude": "-89.650336", "url_o": "https://farm3.staticflickr.com/2101/1806896756_bef696d03c_o.jpg", "secret": "562d536a17", "media": "photo", "latitude": "39.827959", "id": "1806896756", "tags": "halloween illinois 2007 springfieldillinois funshop orlandohartshorn sangamoncountyillinois"}, {"datetaken": "2007-10-24 17:02:47", "license": "2", "title": "Our brave knight!", "text": "", "album_id": "72157602805299990", "longitude": "-89.650336", "url_o": "https://farm3.staticflickr.com/2204/1806048445_b0761a1f7e_o.jpg", "secret": "9e6bd909d4", "media": "photo", "latitude": "39.827959", "id": "1806048445", "tags": "halloween illinois 2007 springfieldillinois funshop orlandohartshorn sangamoncountyillinois"}, {"datetaken": "2007-10-24 17:03:38", "license": "2", "title": "Peg Work", "text": "", "album_id": "72157602805299990", "longitude": "-89.650336", "url_o": "https://farm3.staticflickr.com/2013/1806049911_007d3d9990_o.jpg", "secret": "0beb68a022", "media": "photo", "latitude": "39.827959", "id": "1806049911", "tags": "halloween illinois 2007 springfieldillinois funshop orlandohartshorn sangamoncountyillinois"}, {"datetaken": "2007-10-24 17:07:07", "license": "2", "title": "Knight Train", "text": "", "album_id": "72157602805299990", "longitude": "-89.650336", "url_o": "https://farm3.staticflickr.com/2134/1806900712_73091cce5d_o.jpg", "secret": "b1971146ea", "media": "photo", "latitude": "39.827959", "id": "1806900712", "tags": "halloween illinois 2007 springfieldillinois funshop orlandohartshorn sangamoncountyillinois"}, {"datetaken": "2007-10-24 17:21:09", "license": "2", "title": "Lookie at the Wookie!", "text": "", "album_id": "72157602805299990", "longitude": "-89.650336", "url_o": "https://farm3.staticflickr.com/2060/1806902020_60ce5e63e9_o.jpg", "secret": "291ea8b5dc", "media": "photo", "latitude": "39.827959", "id": "1806902020", "tags": "halloween illinois 2007 springfieldillinois funshop orlandohartshorn sangamoncountyillinois"}, {"datetaken": "2007-10-24 17:25:20", "license": "2", "title": "Knightly Balance", "text": "", "album_id": "72157602805299990", "longitude": "-89.650336", "url_o": "https://farm3.staticflickr.com/2370/1806053817_7c7e9441f3_o.jpg", "secret": "3e966938ef", "media": "photo", "latitude": "39.827959", "id": "1806053817", "tags": "halloween illinois 2007 springfieldillinois funshop orlandohartshorn sangamoncountyillinois"}, {"datetaken": "2007-10-24 17:46:11", "license": "2", "title": "Costumed Kids", "text": "", "album_id": "72157602805299990", "longitude": "-89.650336", "url_o": "https://farm3.staticflickr.com/2382/1806904302_a032b5a03a_o.jpg", "secret": "b7ff07b58a", "media": "photo", "latitude": "39.827959", "id": "1806904302", "tags": "halloween illinois 2007 springfieldillinois funshop sangamoncountyillinois"}, {"datetaken": "2007-10-24 17:53:41", "license": "2", "title": "Story Time", "text": "", "album_id": "72157602805299990", "longitude": "-89.650336", "url_o": "https://farm3.staticflickr.com/2072/1806055913_d1ac41bdd5_o.jpg", "secret": "30d2b8c4b6", "media": "photo", "latitude": "39.827959", "id": "1806055913", "tags": "halloween illinois 2007 springfieldillinois funshop orlandohartshorn sangamoncountyillinois"}, {"datetaken": "2007-10-24 17:57:25", "license": "2", "title": "Story Time", "text": "", "album_id": "72157602805299990", "longitude": "-89.650336", "url_o": "https://farm3.staticflickr.com/2268/1806056753_fd7e8c89cb_o.jpg", "secret": "b34124a512", "media": "photo", "latitude": "39.827959", "id": "1806056753", "tags": "halloween illinois 2007 springfieldillinois funshop orlandohartshorn dawnhartshorn sangamoncountyillinois"}, {"datetaken": "2007-10-24 17:59:38", "license": "2", "title": "Cover Your Eyes!", "text": "", "album_id": "72157602805299990", "longitude": "-89.650336", "url_o": "https://farm3.staticflickr.com/2336/1806906894_6f8746a3fe_o.jpg", "secret": "9805003ccd", "media": "photo", "latitude": "39.827959", "id": "1806906894", "tags": "halloween illinois 2007 springfieldillinois funshop orlandohartshorn dawnhartshorn sangamoncountyillinois"}, {"datetaken": "2007-10-24 18:04:25", "license": "2", "title": "Funshop Families", "text": "", "album_id": "72157602805299990", "longitude": "-89.650336", "url_o": "https://farm3.staticflickr.com/2406/1806058949_da367b209e_o.jpg", "secret": "6e95f77e10", "media": "photo", "latitude": "39.827959", "id": "1806058949", "tags": "halloween illinois 2007 springfieldillinois funshop sangamoncountyillinois"}, {"datetaken": "2007-10-24 18:04:43", "license": "2", "title": "Cleanup Time!", "text": "", "album_id": "72157602805299990", "longitude": "-89.650336", "url_o": "https://farm3.staticflickr.com/2114/1806909896_cd8a945e28_o.jpg", "secret": "1a4d806145", "media": "photo", "latitude": "39.827959", "id": "1806909896", "tags": "halloween illinois 2007 springfieldillinois funshop orlandohartshorn sangamoncountyillinois"}, {"datetaken": "2007-10-24 18:05:00", "license": "2", "title": "Funshop Families", "text": "", "album_id": "72157602805299990", "longitude": "-89.650336", "url_o": "https://farm3.staticflickr.com/2293/1806062253_ee0aaac1bf_o.jpg", "secret": "55bb784c85", "media": "photo", "latitude": "39.827959", "id": "1806062253", "tags": "halloween illinois 2007 springfieldillinois funshop sangamoncountyillinois"}, {"datetaken": "2007-10-29 19:56:12", "license": "1", "title": "Carve those damn pumpkins", "text": "", "album_id": "72157604063304707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2063/1806393877_4ef4da959e_o.jpg", "secret": "ea5aa39d44", "media": "photo", "latitude": "0", "id": "1806393877", "tags": "decorations party sculpture holiday halloween vegetables carving"}, {"datetaken": "2007-10-29 19:56:23", "license": "1", "title": "The crew", "text": "", "album_id": "72157604063304707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2001/1806394521_e0155c7ec3_o.jpg", "secret": "24e46c5810", "media": "photo", "latitude": "0", "id": "1806394521", "tags": "decorations party sculpture holiday halloween vegetables carving"}, {"datetaken": "2007-10-29 19:56:44", "license": "1", "title": "Cut that damn pumpkin!", "text": "", "album_id": "72157604063304707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2100/1807244232_ee506f7057_o.jpg", "secret": "21e89851a2", "media": "photo", "latitude": "0", "id": "1807244232", "tags": "decorations party sculpture holiday halloween vegetables carving"}, {"datetaken": "2007-10-29 19:57:12", "license": "1", "title": "My effort", "text": "", "album_id": "72157604063304707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2166/1806396857_7af7a9dc84_o.jpg", "secret": "2a553f8e9f", "media": "photo", "latitude": "0", "id": "1806396857", "tags": "decorations party sculpture holiday halloween vegetables carving"}, {"datetaken": "2007-10-29 19:57:43", "license": "1", "title": "Jason!", "text": "", "album_id": "72157604063304707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2084/1806398637_faacf6a4e0_o.jpg", "secret": "3b8afb864f", "media": "photo", "latitude": "0", "id": "1806398637", "tags": "decorations party sculpture holiday halloween vegetables carving"}, {"datetaken": "2007-10-29 20:11:31", "license": "1", "title": "Jason and his best buddy, the skeleton candy bowl", "text": "", "album_id": "72157604063304707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2179/1807251210_74b37939ca_o.jpg", "secret": "9855b5d078", "media": "photo", "latitude": "0", "id": "1807251210", "tags": "decorations party sculpture holiday halloween vegetables carving"}, {"datetaken": "2007-10-29 20:12:22", "license": "1", "title": "Laurel san Hardy", "text": "", "album_id": "72157604063304707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2143/1807254804_e0269c59d2_o.jpg", "secret": "bb5edd94b2", "media": "photo", "latitude": "0", "id": "1807254804", "tags": "decorations party sculpture holiday halloween vegetables carving"}, {"datetaken": "2007-10-29 20:51:00", "license": "1", "title": "Abandon all hope, ye who enter here for it is the Wilhelm!", "text": "", "album_id": "72157604063304707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2059/1807256080_27fde73749_o.jpg", "secret": "96889422ff", "media": "photo", "latitude": "0", "id": "1807256080", "tags": "decorations party sculpture holiday halloween vegetables carving"}, {"datetaken": "2007-10-29 20:53:34", "license": "1", "title": "Laurel & Hardy meet Jason", "text": "", "album_id": "72157604063304707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2125/1806408889_a61df46ce6_o.jpg", "secret": "e10b3e1dce", "media": "photo", "latitude": "0", "id": "1806408889", "tags": "decorations party sculpture holiday halloween vegetables carving"}, {"datetaken": "2007-10-29 20:55:35", "license": "1", "title": "Vomit, robot cat, and Beware the Bees!", "text": "", "album_id": "72157604063304707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2176/1807258814_89a8d261d1_o.jpg", "secret": "cb97e2fa8d", "media": "photo", "latitude": "0", "id": "1807258814", "tags": "decorations party sculpture holiday halloween vegetables carving"}, {"datetaken": "2007-10-29 20:56:28", "license": "1", "title": "Hopabout & Mum pose", "text": "", "album_id": "72157604063304707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2055/1806413325_8defeb0fbd_o.jpg", "secret": "e2e62bbbdd", "media": "photo", "latitude": "0", "id": "1806413325", "tags": "decorations party sculpture holiday halloween vegetables carving"}, {"datetaken": "2007-10-29 20:57:27", "license": "1", "title": "The context", "text": "", "album_id": "72157604063304707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2354/1806418235_6600811709_o.jpg", "secret": "46562bf6e3", "media": "photo", "latitude": "0", "id": "1806418235", "tags": "decorations party sculpture holiday halloween vegetables carving"}, {"datetaken": "2007-10-29 20:59:36", "license": "1", "title": "They seem a bit too chummy with Jason, don't they?", "text": "", "album_id": "72157604063304707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2072/1806418549_61a83b190e_o.jpg", "secret": "85895e9233", "media": "photo", "latitude": "0", "id": "1806418549", "tags": "decorations party sculpture holiday halloween vegetables carving"}, {"datetaken": "2010-10-30 13:28:41", "license": "3", "title": "IMG_0049", "text": "", "album_id": "72157625150379941", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/5129260213_5ab362aebb_o.jpg", "secret": "02e1a34da4", "media": "photo", "latitude": "0", "id": "5129260213", "tags": ""}, {"datetaken": "2010-10-30 14:10:52", "license": "3", "title": "IMG_0060", "text": "", "album_id": "72157625150379941", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1247/5129260469_dd4ef38556_o.jpg", "secret": "60711394d1", "media": "photo", "latitude": "0", "id": "5129260469", "tags": "party dog halloween hoboken 2010 dogcostume churchpark"}, {"datetaken": "2010-10-30 14:11:16", "license": "3", "title": "IMG_0063", "text": "", "album_id": "72157625150379941", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/5129260703_382ce1166d_o.jpg", "secret": "711070e559", "media": "photo", "latitude": "0", "id": "5129260703", "tags": "party dog halloween hoboken 2010 dogcostume churchpark"}, {"datetaken": "2010-10-30 14:16:10", "license": "3", "title": "IMG_0076", "text": "", "album_id": "72157625150379941", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1347/5129260969_c2149781bd_o.jpg", "secret": "fdf999145c", "media": "photo", "latitude": "0", "id": "5129260969", "tags": "party dog halloween hoboken 2010 dogcostume churchpark"}, {"datetaken": "2010-10-30 14:16:43", "license": "3", "title": "IMG_0077", "text": "", "album_id": "72157625150379941", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/5129261261_ef49ddd9bc_o.jpg", "secret": "62634e6e96", "media": "photo", "latitude": "0", "id": "5129261261", "tags": "party dog halloween hoboken 2010 dogcostume churchpark"}, {"datetaken": "2010-10-30 14:23:07", "license": "3", "title": "IMG_0081", "text": "", "album_id": "72157625150379941", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1239/5129863404_0a7b750813_o.jpg", "secret": "e2787defb8", "media": "photo", "latitude": "0", "id": "5129863404", "tags": "party dog halloween hoboken 2010 dogcostume churchpark"}, {"datetaken": "2010-10-30 14:33:19", "license": "3", "title": "IMG_0088", "text": "", "album_id": "72157625150379941", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/5129261871_2f4f979810_o.jpg", "secret": "d61599bde8", "media": "photo", "latitude": "0", "id": "5129261871", "tags": "party dog halloween hoboken 2010 dogcostume churchpark"}, {"datetaken": "2010-10-30 14:39:53", "license": "3", "title": "IMG_0090", "text": "", "album_id": "72157625150379941", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1175/5129262177_6ec855a5d7_o.jpg", "secret": "6b940af0c3", "media": "photo", "latitude": "0", "id": "5129262177", "tags": "party dog halloween hoboken 2010 dogcostume churchpark"}, {"datetaken": "2010-10-30 15:11:27", "license": "3", "title": "IMG_0101", "text": "", "album_id": "72157625150379941", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/5129262515_e6fa1c6499_o.jpg", "secret": "21c7635239", "media": "photo", "latitude": "0", "id": "5129262515", "tags": "party dog halloween hoboken 2010 dogcostume churchpark"}, {"datetaken": "2010-10-30 15:13:44", "license": "3", "title": "IMG_0103", "text": "", "album_id": "72157625150379941", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1082/5129864604_56ac61d1d3_o.jpg", "secret": "c144c8677f", "media": "photo", "latitude": "0", "id": "5129864604", "tags": "party dog halloween hoboken 2010 dogcostume churchpark"}, {"datetaken": "2010-10-30 15:16:23", "license": "3", "title": "IMG_0113", "text": "", "album_id": "72157625150379941", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1219/5129867942_5986e35f59_o.jpg", "secret": "7beceb83ca", "media": "photo", "latitude": "0", "id": "5129867942", "tags": "party dog halloween hoboken 2010 dogcostume churchpark"}, {"datetaken": "2010-10-30 15:17:08", "license": "3", "title": "IMG_0117", "text": "", "album_id": "72157625150379941", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/5129266395_b0e496f9e7_o.jpg", "secret": "6cb1d6ca2f", "media": "photo", "latitude": "0", "id": "5129266395", "tags": "party dog halloween hoboken 2010 dogcostume churchpark"}, {"datetaken": "2010-10-30 15:20:49", "license": "3", "title": "IMG_0121", "text": "", "album_id": "72157625150379941", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1204/5129868584_8517c9e4b9_o.jpg", "secret": "8348d7bf42", "media": "photo", "latitude": "0", "id": "5129868584", "tags": "party dog halloween hoboken 2010 dogcostume churchpark"}, {"datetaken": "2010-10-30 15:21:01", "license": "3", "title": "IMG_0123", "text": "", "album_id": "72157625150379941", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1369/5129868856_0007bea32c_o.jpg", "secret": "7bd4a204d1", "media": "photo", "latitude": "0", "id": "5129868856", "tags": "party dog halloween hoboken 2010 dogcostume churchpark"}, {"datetaken": "2010-10-30 15:21:15", "license": "3", "title": "IMG_0125", "text": "", "album_id": "72157625150379941", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/5129869152_85822711c8_o.jpg", "secret": "b80851bd2b", "media": "photo", "latitude": "0", "id": "5129869152", "tags": "party dog halloween hoboken 2010 dogcostume churchpark"}, {"datetaken": "2013-10-28 17:25:24", "license": "1", "title": "1I9A8269-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5523/10574715184_046f261af2_o.jpg", "secret": "a64fcf4dcd", "media": "photo", "latitude": "0", "id": "10574715184", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 17:28:11", "license": "1", "title": "1I9A8273-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3736/10574929913_b0a51936ed_o.jpg", "secret": "553daed4a3", "media": "photo", "latitude": "0", "id": "10574929913", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 17:35:53", "license": "1", "title": "1I9A8283-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3679/10574654555_78eefb25bf_o.jpg", "secret": "17bf85d648", "media": "photo", "latitude": "0", "id": "10574654555", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 17:39:35", "license": "1", "title": "1I9A8285-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3751/10574716264_9be1178405_o.jpg", "secret": "69c8f19758", "media": "photo", "latitude": "0", "id": "10574716264", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 17:40:58", "license": "1", "title": "1I9A8286-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5547/10574695076_56d27bef6f_o.jpg", "secret": "664446c5dd", "media": "photo", "latitude": "0", "id": "10574695076", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 17:41:18", "license": "1", "title": "1I9A8289-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2812/10574695346_be4e3685b0_o.jpg", "secret": "c4f61f0344", "media": "photo", "latitude": "0", "id": "10574695346", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 17:41:35", "license": "1", "title": "1I9A8291-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7378/10574931133_7991d3aae7_o.jpg", "secret": "0a873f4109", "media": "photo", "latitude": "0", "id": "10574931133", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 17:41:36", "license": "1", "title": "1I9A8292-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2853/10574931403_9a7b7b44bf_o.jpg", "secret": "7ecb747120", "media": "photo", "latitude": "0", "id": "10574931403", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 17:42:01", "license": "1", "title": "1I9A8295-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3732/10574717514_a5edf35f1b_o.jpg", "secret": "4003c61ac2", "media": "photo", "latitude": "0", "id": "10574717514", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 17:48:32", "license": "1", "title": "1I9A8299-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3765/10574931993_eba492b9c8_o.jpg", "secret": "b152712b84", "media": "photo", "latitude": "0", "id": "10574931993", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 17:48:41", "license": "1", "title": "1I9A8300-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7341/10574718034_e628b9a95c_o.jpg", "secret": "134479d804", "media": "photo", "latitude": "0", "id": "10574718034", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 17:51:33", "license": "1", "title": "1I9A8305-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7391/10574697236_db930f1804_o.jpg", "secret": "2a7ecc94e0", "media": "photo", "latitude": "0", "id": "10574697236", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 17:55:07", "license": "1", "title": "1I9A8319-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5487/10574657395_614ef6ac6c_o.jpg", "secret": "6cef847490", "media": "photo", "latitude": "0", "id": "10574657395", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 17:56:42", "license": "1", "title": "1I9A8327-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5513/10574719124_e71556e348_o.jpg", "secret": "37cc9880ca", "media": "photo", "latitude": "0", "id": "10574719124", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 17:58:25", "license": "1", "title": "1I9A8329-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3689/10574657935_a3acfee805_o.jpg", "secret": "2f398e8e27", "media": "photo", "latitude": "0", "id": "10574657935", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 17:58:58", "license": "1", "title": "1I9A8335-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5532/10574934063_244f48a2c3_o.jpg", "secret": "df16aa59ec", "media": "photo", "latitude": "0", "id": "10574934063", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 18:01:27", "license": "1", "title": "1I9A8346-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5540/10574658705_7d3db4bf7c_o.jpg", "secret": "153ab65f5c", "media": "photo", "latitude": "0", "id": "10574658705", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 18:02:00", "license": "1", "title": "1I9A8348-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3801/10574658935_164612ed75_o.jpg", "secret": "b73d6961cb", "media": "photo", "latitude": "0", "id": "10574658935", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 18:05:48", "license": "1", "title": "1I9A8355-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5498/10574934823_9b1175a397_o.jpg", "secret": "fc7e889e67", "media": "photo", "latitude": "0", "id": "10574934823", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 18:06:41", "license": "1", "title": "1I9A8364-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3823/10574934853_3b5e5949c8_o.jpg", "secret": "65e8ea68e1", "media": "photo", "latitude": "0", "id": "10574934853", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 18:09:57", "license": "1", "title": "1I9A8383-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7377/10574935153_18f7d8e75b_o.jpg", "secret": "af4c602652", "media": "photo", "latitude": "0", "id": "10574935153", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 18:14:15", "license": "1", "title": "1I9A8394-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7405/10574699946_8e46449d9e_o.jpg", "secret": "d8acd563ba", "media": "photo", "latitude": "0", "id": "10574699946", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 18:17:00", "license": "1", "title": "1I9A8405-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3776/10574929303_e4a84f3bcc_o.jpg", "secret": "cae04c9f99", "media": "photo", "latitude": "0", "id": "10574929303", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2013-10-28 18:19:08", "license": "1", "title": "1I9A8412-1", "text": "", "album_id": "72157637122825124", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5538/10574935853_9356839828_o.jpg", "secret": "7ebd076e9d", "media": "photo", "latitude": "0", "id": "10574935853", "tags": "costumes halloween trickortreat communityservice calu californiauniversityofpennsylvania vulcanvillage passhe"}, {"datetaken": "2012-10-31 11:47:28", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8049/8142728147_7955a5604f_o.jpg", "secret": "27a899f5b5", "media": "photo", "latitude": "34.019159", "id": "8142728147", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 11:47:32", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8044/8142728391_80b6b93fca_o.jpg", "secret": "bcdb972775", "media": "photo", "latitude": "34.019159", "id": "8142728391", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 12:46:39", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8187/8142757790_56de5bd4fc_o.jpg", "secret": "df217e62e5", "media": "photo", "latitude": "34.019159", "id": "8142757790", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 12:46:49", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8324/8142728865_b5f0417ac4_o.jpg", "secret": "10262d0820", "media": "photo", "latitude": "34.019159", "id": "8142728865", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 12:47:02", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8469/8142758160_f22edc5bf5_o.jpg", "secret": "83bfcc50fd", "media": "photo", "latitude": "34.019159", "id": "8142758160", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 12:47:32", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8053/8142729263_09b8d34249_o.jpg", "secret": "124b515546", "media": "photo", "latitude": "34.019159", "id": "8142729263", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 13:02:33", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8192/8142729505_0731582680_o.jpg", "secret": "f5743c56ba", "media": "photo", "latitude": "34.019159", "id": "8142729505", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 13:16:18", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8328/8142758814_b29ba24d39_o.jpg", "secret": "edeca5631e", "media": "photo", "latitude": "34.019159", "id": "8142758814", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 13:19:28", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8335/8142729831_4cb827968e_o.jpg", "secret": "f1d6e77a36", "media": "photo", "latitude": "34.019159", "id": "8142729831", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 13:20:03", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8333/8142759172_bbfa0796ae_o.jpg", "secret": "6005eac202", "media": "photo", "latitude": "34.019159", "id": "8142759172", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 13:21:08", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8187/8142730283_fc49a050bf_o.jpg", "secret": "5d870df81f", "media": "photo", "latitude": "34.019159", "id": "8142730283", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 13:23:03", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8466/8142759746_f0c6484253_o.jpg", "secret": "26fc0eed90", "media": "photo", "latitude": "34.019159", "id": "8142759746", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 13:23:11", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8466/8142730775_6ea204f911_o.jpg", "secret": "0078aa7418", "media": "photo", "latitude": "34.019159", "id": "8142730775", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 13:27:35", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8196/8142760166_c2431d08a9_o.jpg", "secret": "35d1e7e439", "media": "photo", "latitude": "34.019159", "id": "8142760166", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 13:28:14", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8336/8142731187_00af6f1f29_o.jpg", "secret": "1b1d418f82", "media": "photo", "latitude": "34.019159", "id": "8142731187", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 13:29:24", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8331/8142760562_02a8f1b5bd_o.jpg", "secret": "f9f083f7a4", "media": "photo", "latitude": "34.019159", "id": "8142760562", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 13:29:28", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8323/8142760762_3bf059e0e5_o.jpg", "secret": "ed7741ae39", "media": "photo", "latitude": "34.019159", "id": "8142760762", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 13:30:03", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8184/8142731769_76e0c85fe2_o.jpg", "secret": "36455361b2", "media": "photo", "latitude": "34.019159", "id": "8142731769", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 13:31:56", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8471/8142761250_46ba7eca60_o.jpg", "secret": "b248852390", "media": "photo", "latitude": "34.019159", "id": "8142761250", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 13:32:31", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8465/8142732233_9e16cc61ce_o.jpg", "secret": "59765f9b0e", "media": "photo", "latitude": "34.019159", "id": "8142732233", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 13:33:39", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8464/8142732429_6f95e25fea_o.jpg", "secret": "a44a88693f", "media": "photo", "latitude": "34.019159", "id": "8142732429", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 13:36:16", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8469/8142732683_32b90abcdb_o.jpg", "secret": "908ff11194", "media": "photo", "latitude": "34.019159", "id": "8142732683", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 13:41:00", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "-118.489679", "url_o": "https://farm9.staticflickr.com/8193/8142732919_f90e04c951_o.jpg", "secret": "51eed1ecab", "media": "photo", "latitude": "34.019159", "id": "8142732919", "tags": "costumes party dog baby halloween dayofthedead fun groom bride costume scary funny witch wizard vampire santamonica dressup frida haunted staff ladybug diadelosmuertos fridakahlo sailor ladybugs halloweenparade outfits daria voodoo hauntedhouse brideandgroom voodoodoll healthebay rosytheriveter replacementrefs"}, {"datetaken": "2012-10-31 15:00:07", "license": "1", "title": "IMG951069", "text": "", "album_id": "72157631897963439", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8050/8143064258_5294aaede6_o.jpg", "secret": "eb7a8597b6", "media": "photo", "latitude": "0", "id": "8143064258", "tags": ""}, {"datetaken": "2012-10-31 16:38:32", "license": "1", "title": "Halloween at Heal the Bay", "text": "", "album_id": "72157631897963439", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8196/8143038025_9c0786e1b6_o.jpg", "secret": "aba44f6f4d", "media": "photo", "latitude": "0", "id": "8143038025", "tags": ""}, {"datetaken": "2012-10-31 09:31:32", "license": "4", "title": "Woolsey School Parade, Trick-or-Treats", "text": "", "album_id": "72157631898749264", "longitude": "-122.263649", "url_o": "https://farm9.staticflickr.com/8323/8142867395_2d462c3edc_o.jpg", "secret": "d60b917f6b", "media": "photo", "latitude": "37.852531", "id": "8142867395", "tags": "halloween12"}, {"datetaken": "2012-10-31 09:32:13", "license": "4", "title": "Woolsey School Parade, Trick-or-Treats", "text": "", "album_id": "72157631898749264", "longitude": "-122.263649", "url_o": "https://farm9.staticflickr.com/8470/8142897356_cff333becd_o.jpg", "secret": "e5fcc8eace", "media": "photo", "latitude": "37.852531", "id": "8142897356", "tags": "halloween12"}, {"datetaken": "2012-10-31 09:39:31", "license": "4", "title": "Woolsey School Parade, Trick-or-Treats", "text": "", "album_id": "72157631898749264", "longitude": "-122.263649", "url_o": "https://farm9.staticflickr.com/8333/8142868045_d47dcee576_o.jpg", "secret": "275ec9d36d", "media": "photo", "latitude": "37.852531", "id": "8142868045", "tags": "halloween12"}, {"datetaken": "2012-10-31 09:39:44", "license": "4", "title": "Woolsey School Parade, Trick-or-Treats", "text": "", "album_id": "72157631898749264", "longitude": "-122.263649", "url_o": "https://farm9.staticflickr.com/8463/8142897994_a64dc57717_o.jpg", "secret": "96bb582fc1", "media": "photo", "latitude": "37.852531", "id": "8142897994", "tags": ""}, {"datetaken": "2012-10-31 09:46:43", "license": "4", "title": "Woolsey School Parade, Trick-or-Treats", "text": "", "album_id": "72157631898749264", "longitude": "-122.263649", "url_o": "https://farm9.staticflickr.com/8051/8142868531_1f10448bc6_o.jpg", "secret": "64eef8df07", "media": "photo", "latitude": "37.852531", "id": "8142868531", "tags": "halloween12"}, {"datetaken": "2012-10-31 09:48:37", "license": "4", "title": "Woolsey School Parade, Trick-or-Treats", "text": "", "album_id": "72157631898749264", "longitude": "-122.263649", "url_o": "https://farm9.staticflickr.com/8056/8142868999_8a5a762337_o.jpg", "secret": "76a76e15fa", "media": "photo", "latitude": "37.852531", "id": "8142868999", "tags": "halloween12"}, {"datetaken": "2012-10-31 09:51:51", "license": "4", "title": "Woolsey School Parade, Trick-or-Treats", "text": "", "album_id": "72157631898749264", "longitude": "-122.263649", "url_o": "https://farm9.staticflickr.com/8048/8142869357_1a28eae825_o.jpg", "secret": "da0e29d26b", "media": "photo", "latitude": "37.852531", "id": "8142869357", "tags": ""}, {"datetaken": "2012-10-31 09:56:09", "license": "4", "title": "Woolsey School Parade, Trick-or-Treats", "text": "", "album_id": "72157631898749264", "longitude": "-122.263649", "url_o": "https://farm9.staticflickr.com/8329/8142869633_fdcf5f3f18_o.jpg", "secret": "627b728e42", "media": "photo", "latitude": "37.852531", "id": "8142869633", "tags": "halloween12"}, {"datetaken": "2012-10-31 10:07:13", "license": "4", "title": "Sadie and Grandma, Tete-a-tete", "text": "", "album_id": "72157631898749264", "longitude": "-122.263650", "url_o": "https://farm9.staticflickr.com/8326/8142899868_3eb09b7caf_o.jpg", "secret": "a6d80bde82", "media": "photo", "latitude": "37.852530", "id": "8142899868", "tags": "halloween12"}, {"datetaken": "2012-10-31 10:07:15", "license": "4", "title": "Sadie and Grandma, Tete-a-tete", "text": "", "album_id": "72157631898749264", "longitude": "-122.263650", "url_o": "https://farm9.staticflickr.com/8048/8142900178_da096db6d4_o.jpg", "secret": "3acdd5d1d7", "media": "photo", "latitude": "37.852530", "id": "8142900178", "tags": "halloween12"}, {"datetaken": "2012-10-31 10:07:18", "license": "4", "title": "Sadie and Grandma, Tete-a-tete", "text": "", "album_id": "72157631898749264", "longitude": "-122.263649", "url_o": "https://farm9.staticflickr.com/8335/8142870739_455483ce21_o.jpg", "secret": "831fd1a409", "media": "photo", "latitude": "37.852531", "id": "8142870739", "tags": "halloween12"}, {"datetaken": "2012-10-31 10:07:20", "license": "4", "title": "Sadie and Grandma, Tete-a-tete", "text": "", "album_id": "72157631898749264", "longitude": "-122.263649", "url_o": "https://farm9.staticflickr.com/8465/8142900882_33b61d2b2d_o.jpg", "secret": "40241ef824", "media": "photo", "latitude": "37.852531", "id": "8142900882", "tags": "halloween12"}, {"datetaken": "2012-10-31 10:08:41", "license": "4", "title": "Sadie and Grandma, Tete-a-tete", "text": "", "album_id": "72157631898749264", "longitude": "-122.263649", "url_o": "https://farm9.staticflickr.com/8183/8142901176_4fab931bef_o.jpg", "secret": "f4a177dd65", "media": "photo", "latitude": "37.852531", "id": "8142901176", "tags": "halloween12"}, {"datetaken": "2012-10-31 12:40:55", "license": "4", "title": "Evan's Halloween Class Party and Dance", "text": "", "album_id": "72157631898749264", "longitude": "-122.273552", "url_o": "https://farm9.staticflickr.com/8336/8142901544_a860bb0452_o.jpg", "secret": "5d657e2bfd", "media": "photo", "latitude": "37.852512", "id": "8142901544", "tags": ""}, {"datetaken": "2012-10-31 12:41:03", "license": "4", "title": "Evan's Halloween Class Party and Dance", "text": "", "album_id": "72157631898749264", "longitude": "-122.273553", "url_o": "https://farm9.staticflickr.com/8476/8142872159_9a25c48d33_o.jpg", "secret": "9896d5f1b0", "media": "photo", "latitude": "37.852511", "id": "8142872159", "tags": "halloween12"}, {"datetaken": "2012-10-31 12:41:26", "license": "4", "title": "Evan's Halloween Class Party and Dance", "text": "", "album_id": "72157631898749264", "longitude": "-122.273552", "url_o": "https://farm9.staticflickr.com/8043/8142902194_6551be7341_o.jpg", "secret": "000c61b8a9", "media": "photo", "latitude": "37.852512", "id": "8142902194", "tags": "halloween12"}, {"datetaken": "2012-10-31 12:48:34", "license": "4", "title": "Evan's Halloween Class Party, dancing to \"Call me Maybe\"", "text": "", "album_id": "72157631898749264", "longitude": "-122.273552", "url_o": "https://farm9.staticflickr.com/8188/8142872763_05a32084b6_o.jpg", "secret": "0d02f61fea", "media": "photo", "latitude": "37.852512", "id": "8142872763", "tags": "halloween12"}, {"datetaken": "2012-10-31 12:49:01", "license": "4", "title": "Evan's Halloween Class Party and Dance", "text": "", "album_id": "72157631898749264", "longitude": "-122.273552", "url_o": "https://farm9.staticflickr.com/8470/8142902682_a8bc69d284_o.jpg", "secret": "17378fbeed", "media": "photo", "latitude": "37.852512", "id": "8142902682", "tags": "halloween12"}, {"datetaken": "2012-10-31 12:49:50", "license": "4", "title": "Evan's Halloween Class Party and Dance", "text": "", "album_id": "72157631898749264", "longitude": "-122.273552", "url_o": "https://farm9.staticflickr.com/8190/8142873315_6b0866b849_o.jpg", "secret": "0923076332", "media": "photo", "latitude": "37.852512", "id": "8142873315", "tags": "halloween12"}, {"datetaken": "2012-10-31 13:01:25", "license": "4", "title": "Malcolm X Faculty Gingnam Style", "text": "", "album_id": "72157631898749264", "longitude": "-122.273500", "url_o": "https://farm9.staticflickr.com/8333/8142903348_27e4d81d62_o.jpg", "secret": "8735fd3ca8", "media": "photo", "latitude": "37.852500", "id": "8142903348", "tags": "halloween12"}, {"datetaken": "2004-10-22 20:58:09", "license": "3", "title": "Pumpkin Carving", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/12966126_7dfc3fba50_o.jpg", "secret": "7dfc3fba50", "media": "photo", "latitude": "0", "id": "12966126", "tags": "wendi halloween aaron justin stephen"}, {"datetaken": "2004-10-22 20:58:29", "license": "3", "title": "What ever happened to freehand?", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13648207_3364de92b3_o.jpg", "secret": "3364de92b3", "media": "photo", "latitude": "0", "id": "13648207", "tags": "halloween dvn kelly doug michelle"}, {"datetaken": "2004-10-22 21:01:20", "license": "3", "title": "Carve It", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12966127_e122c45949_o.jpg", "secret": "e122c45949", "media": "photo", "latitude": "0", "id": "12966127", "tags": "ben halloween justin stephen"}, {"datetaken": "2004-10-22 21:01:43", "license": "3", "title": "Who doesn't love Halloween?", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/13648208_ae91acc37b_o.jpg", "secret": "ae91acc37b", "media": "photo", "latitude": "0", "id": "13648208", "tags": "halloween molly ellie"}, {"datetaken": "2004-10-22 21:04:58", "license": "3", "title": "The Saga Begins", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13648209_678fae7348_o.jpg", "secret": "678fae7348", "media": "photo", "latitude": "0", "id": "13648209", "tags": "halloween gita ben"}, {"datetaken": "2004-10-22 21:24:43", "license": "3", "title": "Gita for Guns and Bush", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/13648210_7ac04933f6_o.jpg", "secret": "7ac04933f6", "media": "photo", "latitude": "0", "id": "13648210", "tags": "halloween gita aaron"}, {"datetaken": "2004-10-22 22:01:06", "license": "3", "title": "A Brighter Pumpkin Line-up", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/13650765_b4f73a7685_o.jpg", "secret": "b4f73a7685", "media": "photo", "latitude": "0", "id": "13650765", "tags": "halloween katya"}, {"datetaken": "2004-10-22 22:14:15", "license": "3", "title": "Post-Carving", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13648211_b8b8df05d4_o.jpg", "secret": "b8b8df05d4", "media": "photo", "latitude": "0", "id": "13648211", "tags": "halloween wendi aaron bruce justin kenny michelle"}, {"datetaken": "2004-10-22 22:14:20", "license": "3", "title": "A Lifelong Friendship", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13648212_c22a2dbdd4_o.jpg", "secret": "c22a2dbdd4", "media": "photo", "latitude": "0", "id": "13648212", "tags": "halloween kenny stephen"}, {"datetaken": "2004-10-22 22:40:08", "license": "3", "title": "My Pumpkin", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12971011_4f46895be3_o.jpg", "secret": "4f46895be3", "media": "photo", "latitude": "0", "id": "12971011", "tags": "halloween stephen"}, {"datetaken": "2004-10-22 22:42:36", "license": "3", "title": "The Pumpkin Line-Up", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13649594_42178f187b_o.jpg", "secret": "42178f187b", "media": "photo", "latitude": "0", "id": "13649594", "tags": "halloween"}, {"datetaken": "2004-10-22 22:43:00", "license": "3", "title": "Manic", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/13649595_1fd7af0ee0_o.jpg", "secret": "1fd7af0ee0", "media": "photo", "latitude": "0", "id": "13649595", "tags": "halloween britt justin"}, {"datetaken": "2004-10-22 22:45:07", "license": "3", "title": "The Pimp and the Woodswoman", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13649596_230c1e69de_o.jpg", "secret": "230c1e69de", "media": "photo", "latitude": "0", "id": "13649596", "tags": "halloween ben britt"}, {"datetaken": "2004-10-23 01:08:01", "license": "3", "title": "We Were Tired", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13649597_685237aca5_o.jpg", "secret": "685237aca5", "media": "photo", "latitude": "0", "id": "13649597", "tags": "halloween dvn aaron bruce ellie stephen"}, {"datetaken": "2004-10-23 01:08:37", "license": "3", "title": "Take It Easy", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/13649598_8d00893de1_o.jpg", "secret": "8d00893de1", "media": "photo", "latitude": "0", "id": "13649598", "tags": "halloween wendi"}, {"datetaken": "2004-10-23 01:08:57", "license": "3", "title": "I have something in my eye", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13649599_d8a622ba30_o.jpg", "secret": "d8a622ba30", "media": "photo", "latitude": "0", "id": "13649599", "tags": "halloween dvn aaron bruce ellie stephen"}, {"datetaken": "2004-10-23 01:10:08", "license": "3", "title": "Halloween Party", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12971012_c55f4f36d1_o.jpg", "secret": "c55f4f36d1", "media": "photo", "latitude": "0", "id": "12971012", "tags": "halloween stephen"}, {"datetaken": "2004-10-23 01:12:02", "license": "3", "title": "Last One", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/13650763_8ba9319764_o.jpg", "secret": "8ba9319764", "media": "photo", "latitude": "0", "id": "13650763", "tags": "halloween aaron bruce ellie stephen"}, {"datetaken": "2004-10-23 01:14:48", "license": "3", "title": "The Hilltopper", "text": "", "album_id": "330946", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13650764_c83fe87fa4_o.jpg", "secret": "c83fe87fa4", "media": "photo", "latitude": "0", "id": "13650764", "tags": "halloween stephen"}, {"datetaken": "2005-05-20 10:19:23", "license": "1", "title": "Angel", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14786888_033e11d2ec_o.jpg", "secret": "033e11d2ec", "media": "photo", "latitude": "0", "id": "14786888", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:19:23", "license": "1", "title": "Ann", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14786889_dc0839f723_o.jpg", "secret": "dc0839f723", "media": "photo", "latitude": "0", "id": "14786889", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:19:23", "license": "1", "title": "Ann with Aliens", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14786890_47fb906687_o.jpg", "secret": "47fb906687", "media": "photo", "latitude": "0", "id": "14786890", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:20:55", "license": "1", "title": "Cheryl and Angel", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14787077_1cd5de10f3_o.jpg", "secret": "1cd5de10f3", "media": "photo", "latitude": "0", "id": "14787077", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:20:55", "license": "1", "title": "TJ the Menace", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14787079_c26615e270_o.jpg", "secret": "c26615e270", "media": "photo", "latitude": "0", "id": "14787079", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:20:55", "license": "1", "title": "The Entry", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14787078_651e6a9c68_o.jpg", "secret": "651e6a9c68", "media": "photo", "latitude": "0", "id": "14787078", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:20:55", "license": "1", "title": "Ed Fay", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14787080_71f9a230c2_o.jpg", "secret": "71f9a230c2", "media": "photo", "latitude": "0", "id": "14787080", "tags": "party halloween ed 1999 fay"}, {"datetaken": "2005-05-20 10:20:55", "license": "1", "title": "Ed again", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14787081_a54459c904_o.jpg", "secret": "a54459c904", "media": "photo", "latitude": "0", "id": "14787081", "tags": "party halloween ed 1999 fay"}, {"datetaken": "2005-05-20 10:20:55", "license": "1", "title": "Cheryl and TJ", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14787076_60d4814d41_o.jpg", "secret": "60d4814d41", "media": "photo", "latitude": "0", "id": "14787076", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:22:30", "license": "1", "title": "Katja y Yosh", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14787295_e636035218_o.jpg", "secret": "e636035218", "media": "photo", "latitude": "0", "id": "14787295", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:22:30", "license": "1", "title": "Jelly Belly", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14787294_1f7d3adf22_o.jpg", "secret": "1f7d3adf22", "media": "photo", "latitude": "0", "id": "14787294", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:22:30", "license": "1", "title": "Ed and Jackie", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14787291_24cf49d7de_o.jpg", "secret": "24cf49d7de", "media": "photo", "latitude": "0", "id": "14787291", "tags": "party halloween ed 1999 fay"}, {"datetaken": "2005-05-20 10:22:30", "license": "1", "title": "Freaky People", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14787292_bdabd3b56c_o.jpg", "secret": "bdabd3b56c", "media": "photo", "latitude": "0", "id": "14787292", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:22:30", "license": "1", "title": "Jackie", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14787293_651178e681_o.jpg", "secret": "651178e681", "media": "photo", "latitude": "0", "id": "14787293", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:23:56", "license": "1", "title": "The Entry - Day", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14787493_6f8a339940_o.jpg", "secret": "6f8a339940", "media": "photo", "latitude": "0", "id": "14787493", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:23:56", "license": "1", "title": "Still Freaky", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14787492_3e424b676b_o.jpg", "secret": "3e424b676b", "media": "photo", "latitude": "0", "id": "14787492", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:23:56", "license": "1", "title": "Log", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14787490_6c01378b34_o.jpg", "secret": "6c01378b34", "media": "photo", "latitude": "0", "id": "14787490", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:23:56", "license": "1", "title": "Log", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14787491_c74282aebb_o.jpg", "secret": "c74282aebb", "media": "photo", "latitude": "0", "id": "14787491", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:25:56", "license": "1", "title": "TJ", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14787703_6628e0aebc_o.jpg", "secret": "6628e0aebc", "media": "photo", "latitude": "0", "id": "14787703", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:25:56", "license": "1", "title": "The Freaky King", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14787702_a2576dc9d5_o.jpg", "secret": "a2576dc9d5", "media": "photo", "latitude": "0", "id": "14787702", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:25:56", "license": "1", "title": "Whitey", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14787706_a9056f7abd_o.jpg", "secret": "a9056f7abd", "media": "photo", "latitude": "0", "id": "14787706", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:25:56", "license": "1", "title": "Toufic", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14787704_87fa4c5cf7_o.jpg", "secret": "87fa4c5cf7", "media": "photo", "latitude": "0", "id": "14787704", "tags": "1999 halloween party"}, {"datetaken": "2005-05-20 10:25:56", "license": "1", "title": "Toupac", "text": "", "album_id": "72157602796939680", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14787705_684c478a93_o.jpg", "secret": "684c478a93", "media": "photo", "latitude": "0", "id": "14787705", "tags": "1999 halloween party"}, {"datetaken": "2005-10-29 20:20:40", "license": "6", "title": "The preparation", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/57381152_8cdef164ef_o.jpg", "secret": "8cdef164ef", "media": "photo", "latitude": "0", "id": "57381152", "tags": "zombie halloween 2005 party jujin"}, {"datetaken": "2005-10-29 21:14:54", "license": "6", "title": "Warming up", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/57381204_30e928610c_o.jpg", "secret": "30e928610c", "media": "photo", "latitude": "0", "id": "57381204", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-29 21:30:47", "license": "6", "title": "\u7f8e\u5973", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/57381232_19117ca609_o.jpg", "secret": "19117ca609", "media": "photo", "latitude": "0", "id": "57381232", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-29 22:50:20", "license": "6", "title": "Full-swing", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/57381295_1dea6499d9_o.jpg", "secret": "1dea6499d9", "media": "photo", "latitude": "0", "id": "57381295", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-29 23:05:01", "license": "6", "title": "Ain't no party like a Jujin party...", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/57381338_83796b4b4e_o.jpg", "secret": "83796b4b4e", "media": "photo", "latitude": "0", "id": "57381338", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-29 23:14:55", "license": "6", "title": "\u7f8e\u5973", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/57381408_46d6f795f0_o.jpg", "secret": "46d6f795f0", "media": "photo", "latitude": "0", "id": "57381408", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-29 23:15:14", "license": "6", "title": "Get the Moet flowin'", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/57381487_df14324829_o.jpg", "secret": "df14324829", "media": "photo", "latitude": "0", "id": "57381487", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-29 23:25:32", "license": "6", "title": "Groopies!", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/57381560_bf21d4faac_o.jpg", "secret": "bf21d4faac", "media": "photo", "latitude": "0", "id": "57381560", "tags": "groopies halloween 2005 party jujin"}, {"datetaken": "2005-10-29 23:29:35", "license": "6", "title": "All Hail Hypnotoad", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/57381604_dd4544789d_o.jpg", "secret": "dd4544789d", "media": "photo", "latitude": "0", "id": "57381604", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-29 23:30:42", "license": "6", "title": "Schmoove", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/57381647_b6ff04ec7b_o.jpg", "secret": "b6ff04ec7b", "media": "photo", "latitude": "0", "id": "57381647", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-29 23:33:53", "license": "6", "title": "\u61d0\u30e1\u30ed in full effect", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/57381734_f0585760f2_o.jpg", "secret": "f0585760f2", "media": "photo", "latitude": "0", "id": "57381734", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-29 23:35:24", "license": "6", "title": "Nobuko & Kyoka", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/57381818_0e939666e7_o.jpg", "secret": "0e939666e7", "media": "photo", "latitude": "0", "id": "57381818", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-29 23:57:03", "license": "6", "title": "More \u7f8e\u5973", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/57381865_41cafef5c3_o.jpg", "secret": "41cafef5c3", "media": "photo", "latitude": "0", "id": "57381865", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-30 00:36:35", "license": "6", "title": "\u4f50\u3005\u6210\u653f", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/57381975_05591d5529_o.jpg", "secret": "05591d5529", "media": "photo", "latitude": "0", "id": "57381975", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-30 01:13:20", "license": "6", "title": "\u30ac\u30f3\u30c0\u30eb\u30d5", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/57382028_9c215ef3f1_o.jpg", "secret": "9c215ef3f1", "media": "photo", "latitude": "0", "id": "57382028", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-30 01:15:22", "license": "6", "title": "Beer in the foreground...", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/57382082_644655e4b4_o.jpg", "secret": "644655e4b4", "media": "photo", "latitude": "0", "id": "57382082", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-30 01:23:48", "license": "6", "title": "Seance", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/57382124_ac7ed82593_o.jpg", "secret": "ac7ed82593", "media": "photo", "latitude": "0", "id": "57382124", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-30 01:25:02", "license": "6", "title": "Chillin'", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/57382152_f37aa1fe40_o.jpg", "secret": "f37aa1fe40", "media": "photo", "latitude": "0", "id": "57382152", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-30 02:46:59", "license": "6", "title": "Best. Photo. Of. The. Night.", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/57382195_3b30c340fb_o.jpg", "secret": "3b30c340fb", "media": "photo", "latitude": "0", "id": "57382195", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-30 02:47:51", "license": "6", "title": "Exit, stage left", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/57382245_42a35903c5_o.jpg", "secret": "42a35903c5", "media": "photo", "latitude": "0", "id": "57382245", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-30 02:51:33", "license": "6", "title": "Aftermath", "text": "", "album_id": "1242576", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/57382297_1d725278b0_o.jpg", "secret": "1d725278b0", "media": "photo", "latitude": "0", "id": "57382297", "tags": "halloween 2005 party jujin"}, {"datetaken": "2005-10-29 23:23:42", "license": "2", "title": "Amigos", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/58278207_c354674bc5_o.jpg", "secret": "c354674bc5", "media": "photo", "latitude": "0", "id": "58278207", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2005-10-30 00:14:03", "license": "2", "title": "El lugar", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/58270294_0abc5546e6_o.jpg", "secret": "0abc5546e6", "media": "photo", "latitude": "0", "id": "58270294", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2005-10-30 01:05:55", "license": "2", "title": "Mis amigos", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/58270617_bee2371ccd_o.jpg", "secret": "bee2371ccd", "media": "photo", "latitude": "0", "id": "58270617", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2005-10-30 01:51:08", "license": "2", "title": "Me va a chupar la sangre", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/58270829_d85301a776_o.jpg", "secret": "d85301a776", "media": "photo", "latitude": "0", "id": "58270829", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2005-10-30 01:51:48", "license": "2", "title": "Scary movie", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58271113_b38b325bce_o.jpg", "secret": "b38b325bce", "media": "photo", "latitude": "0", "id": "58271113", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2005-10-30 01:52:11", "license": "2", "title": "Eh, adonde vas?", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/58271453_babea9d22c_o.jpg", "secret": "babea9d22c", "media": "photo", "latitude": "0", "id": "58271453", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2005-10-30 01:52:30", "license": "2", "title": "Esta me acechaba", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58271818_628a6cf1f4_o.jpg", "secret": "628a6cf1f4", "media": "photo", "latitude": "0", "id": "58271818", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2005-10-30 01:52:52", "license": "2", "title": "Mmm que patas", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/58272301_d2fe56a82b_o.jpg", "secret": "d2fe56a82b", "media": "photo", "latitude": "0", "id": "58272301", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2005-10-30 01:53:17", "license": "2", "title": "Uyy que miedo", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/58272651_a7b2c8f81d_o.jpg", "secret": "a7b2c8f81d", "media": "photo", "latitude": "0", "id": "58272651", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2005-10-30 01:53:34", "license": "2", "title": "No les salia muy bien", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/58272924_01c41a413b_o.jpg", "secret": "01c41a413b", "media": "photo", "latitude": "0", "id": "58272924", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2005-10-30 01:53:51", "license": "2", "title": "Bailaban al ritmo de Bad", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/58273134_589a7a4a39_o.jpg", "secret": "589a7a4a39", "media": "photo", "latitude": "0", "id": "58273134", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2005-10-30 01:54:10", "license": "2", "title": "Cosa e locos", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/58273408_a4423f8618_o.jpg", "secret": "a4423f8618", "media": "photo", "latitude": "0", "id": "58273408", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2005-10-30 01:55:11", "license": "2", "title": "Miedo?", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58273720_922c76b9c1_o.jpg", "secret": "922c76b9c1", "media": "photo", "latitude": "0", "id": "58273720", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2005-10-30 01:56:08", "license": "2", "title": "Y este engendro? no se quien d\u00e1 mas miedo", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58274022_8053a48b8a_o.jpg", "secret": "8053a48b8a", "media": "photo", "latitude": "0", "id": "58274022", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2005-10-30 02:01:35", "license": "2", "title": "Ehhh ehem... mmm creo que puso la marrana", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/58274332_524e04f3d4_o.jpg", "secret": "524e04f3d4", "media": "photo", "latitude": "0", "id": "58274332", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2005-10-30 02:03:03", "license": "2", "title": "Eh!??!? Que hace Silvestre ah\u00ed?!", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/58274586_1057b0d651_o.jpg", "secret": "1057b0d651", "media": "photo", "latitude": "0", "id": "58274586", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2005-10-30 02:08:56", "license": "2", "title": "La angelita flaca era una amarga / The thin angel was angry!", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58274887_536390a977_o.jpg", "secret": "536390a977", "media": "photo", "latitude": "0", "id": "58274887", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2005-10-30 02:15:41", "license": "2", "title": "Bailarinas Jalowinas / Halloween dancers", "text": "", "album_id": "1261073", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/58275247_038d1bcada_o.jpg", "secret": "038d1bcada", "media": "photo", "latitude": "0", "id": "58275247", "tags": "barbados nochedebrujas halloween party"}, {"datetaken": "2003-11-01 23:23:03", "license": "3", "title": "20031101 Halloween Party 007", "text": "", "album_id": "72057594075705296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/108346282_ac245bbf5b_o.jpg", "secret": "ac245bbf5b", "media": "photo", "latitude": "0", "id": "108346282", "tags": "2003 party halloween oren"}, {"datetaken": "2003-11-01 23:28:17", "license": "3", "title": "20031101 Halloween Party 008", "text": "", "album_id": "72057594075705296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/108346636_aca6e92ec2_o.jpg", "secret": "aca6e92ec2", "media": "photo", "latitude": "0", "id": "108346636", "tags": "2003 party halloween oren"}, {"datetaken": "2003-11-01 23:49:53", "license": "3", "title": "20031101 Halloween Party 010", "text": "", "album_id": "72057594075705296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/108347008_2a99845e12_o.jpg", "secret": "2a99845e12", "media": "photo", "latitude": "0", "id": "108347008", "tags": "2003 party halloween oren"}, {"datetaken": "2003-11-01 23:50:27", "license": "3", "title": "20031101 Halloween Party 011", "text": "", "album_id": "72057594075705296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/108347338_49b5d82353_o.jpg", "secret": "49b5d82353", "media": "photo", "latitude": "0", "id": "108347338", "tags": "2003 party halloween oren"}, {"datetaken": "2003-11-01 23:50:39", "license": "3", "title": "20031101 Halloween Party 012", "text": "", "album_id": "72057594075705296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/108347629_352136ed58_o.jpg", "secret": "352136ed58", "media": "photo", "latitude": "0", "id": "108347629", "tags": "2003 party halloween oren"}, {"datetaken": "2003-11-02 00:23:36", "license": "3", "title": "20031101 Halloween Party 013", "text": "", "album_id": "72057594075705296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/108347962_8220349a36_o.jpg", "secret": "8220349a36", "media": "photo", "latitude": "0", "id": "108347962", "tags": "2003 party halloween oren"}, {"datetaken": "2003-11-02 00:23:57", "license": "3", "title": "20031101 Halloween Party 014", "text": "", "album_id": "72057594075705296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/108348261_ea79612ce8_o.jpg", "secret": "ea79612ce8", "media": "photo", "latitude": "0", "id": "108348261", "tags": "2003 party halloween oren"}, {"datetaken": "2003-11-02 00:25:03", "license": "3", "title": "20031101 Halloween Party 016", "text": "", "album_id": "72057594075705296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/108348592_8da045f247_o.jpg", "secret": "8da045f247", "media": "photo", "latitude": "0", "id": "108348592", "tags": "2003 party halloween oren"}, {"datetaken": "2003-11-02 00:26:33", "license": "3", "title": "20031101 Halloween Party 018", "text": "", "album_id": "72057594075705296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/108348913_9d0129d17b_o.jpg", "secret": "9d0129d17b", "media": "photo", "latitude": "0", "id": "108348913", "tags": "2003 party halloween oren"}, {"datetaken": "2003-11-02 00:30:59", "license": "3", "title": "20031101 Halloween Party 019", "text": "", "album_id": "72057594075705296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/108349171_771557fbc1_o.jpg", "secret": "771557fbc1", "media": "photo", "latitude": "0", "id": "108349171", "tags": "2003 party halloween oren"}, {"datetaken": "2003-11-02 00:33:05", "license": "3", "title": "20031101 Halloween Party 020", "text": "", "album_id": "72057594075705296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/108349391_c28786fe28_o.jpg", "secret": "c28786fe28", "media": "photo", "latitude": "0", "id": "108349391", "tags": "2003 party halloween oren"}, {"datetaken": "2003-11-02 01:00:39", "license": "3", "title": "20031101 Halloween Party 021", "text": "", "album_id": "72057594075705296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/108349679_67b6702bd4_o.jpg", "secret": "67b6702bd4", "media": "photo", "latitude": "0", "id": "108349679", "tags": "2003 party halloween oren"}, {"datetaken": "2003-11-02 01:09:24", "license": "3", "title": "20031101 Halloween Party 022", "text": "", "album_id": "72057594075705296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/108349970_45cb40524a_o.jpg", "secret": "45cb40524a", "media": "photo", "latitude": "0", "id": "108349970", "tags": "2003 party halloween oren"}, {"datetaken": "2003-11-02 01:12:39", "license": "3", "title": "20031101 Halloween Party 023", "text": "", "album_id": "72057594075705296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/108350423_bdf0b91fac_o.jpg", "secret": "bdf0b91fac", "media": "photo", "latitude": "0", "id": "108350423", "tags": "2003 party halloween oren"}, {"datetaken": "2003-11-02 01:27:44", "license": "3", "title": "20031101 Halloween Party 024", "text": "", "album_id": "72057594075705296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/108350710_816a16b3a8_o.jpg", "secret": "816a16b3a8", "media": "photo", "latitude": "0", "id": "108350710", "tags": "2003 party halloween oren"}, {"datetaken": "2003-11-02 01:58:14", "license": "3", "title": "20031101 Halloween Party 026", "text": "", "album_id": "72057594075705296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/108350964_5e4b272198_o.jpg", "secret": "5e4b272198", "media": "photo", "latitude": "0", "id": "108350964", "tags": "2003 party halloween oren"}, {"datetaken": "2003-11-02 01:58:42", "license": "3", "title": "20031101 Halloween Party 028", "text": "", "album_id": "72057594075705296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/108351315_9b91f759a3_o.jpg", "secret": "9b91f759a3", "media": "photo", "latitude": "0", "id": "108351315", "tags": "2003 party halloween oren"}, {"datetaken": "2005-10-28 21:07:41", "license": "1", "title": "halloween 2005", "text": "", "album_id": "72057594106619152", "longitude": "-78.397150", "url_o": "https://farm1.staticflickr.com/47/128200663_954f848698_o.jpg", "secret": "954f848698", "media": "photo", "latitude": "36.021969", "id": "128200663", "tags": "2005 party halloween tongue hair glasses costume october mark clown radialmonster"}, {"datetaken": "2005-10-28 21:07:54", "license": "1", "title": "halloween 2005", "text": "", "album_id": "72057594106619152", "longitude": "-78.397150", "url_o": "https://farm1.staticflickr.com/1/128200689_f7db89f223_o.jpg", "secret": "f7db89f223", "media": "photo", "latitude": "36.021969", "id": "128200689", "tags": "2005 party halloween robin tongue hair costume october radialmonster"}, {"datetaken": "2005-10-28 21:08:04", "license": "1", "title": "halloween 2005", "text": "", "album_id": "72057594106619152", "longitude": "-78.397150", "url_o": "https://farm1.staticflickr.com/55/128200714_e9419da911_o.jpg", "secret": "e9419da911", "media": "photo", "latitude": "36.021969", "id": "128200714", "tags": "2005 party halloween robin hair costume october mark radialmonster"}, {"datetaken": "2005-10-28 21:08:34", "license": "1", "title": "halloween 2005", "text": "", "album_id": "72057594106619152", "longitude": "-78.397150", "url_o": "https://farm1.staticflickr.com/56/128200732_1948b11d35_o.jpg", "secret": "1948b11d35", "media": "photo", "latitude": "36.021969", "id": "128200732", "tags": "2005 party halloween costume october jonathan radialmonster lawsuit"}, {"datetaken": "2005-10-28 21:08:54", "license": "1", "title": "halloween 2005", "text": "", "album_id": "72057594106619152", "longitude": "-78.397150", "url_o": "https://farm1.staticflickr.com/45/128200749_d695e626f2_o.jpg", "secret": "d695e626f2", "media": "photo", "latitude": "36.021969", "id": "128200749", "tags": "costume dress barbara gypsy radialmonster"}, {"datetaken": "2005-10-28 21:09:10", "license": "1", "title": "halloween 2005", "text": "", "album_id": "72057594106619152", "longitude": "-78.397150", "url_o": "https://farm1.staticflickr.com/44/128205346_3e50172702_o.jpg", "secret": "3e50172702", "media": "photo", "latitude": "36.021969", "id": "128205346", "tags": "2005 halloween john costume october gun pirate radialmonster"}, {"datetaken": "2005-10-28 21:10:08", "license": "1", "title": "halloween 2005", "text": "", "album_id": "72057594106619152", "longitude": "-78.397150", "url_o": "https://farm1.staticflickr.com/52/128205365_98c4c11740_o.jpg", "secret": "98c4c11740", "media": "photo", "latitude": "36.021969", "id": "128205365", "tags": "2005 halloween scott costume october mask scarecrow radialmonster"}, {"datetaken": "2005-10-28 21:10:51", "license": "1", "title": "halloween 2005", "text": "", "album_id": "72057594106619152", "longitude": "-78.397150", "url_o": "https://farm1.staticflickr.com/45/128205391_ae737ca180_o.jpg", "secret": "ae737ca180", "media": "photo", "latitude": "36.021969", "id": "128205391", "tags": "2005 ex halloween costume october purple lisa pimp radialmonster catgirl"}, {"datetaken": "2005-10-28 21:11:31", "license": "1", "title": "halloween 2005", "text": "", "album_id": "72057594106619152", "longitude": "-78.397150", "url_o": "https://farm1.staticflickr.com/52/128205395_d8f7bacecb_o.jpg", "secret": "d8f7bacecb", "media": "photo", "latitude": "36.021969", "id": "128205395", "tags": "2005 halloween female costume october jo radialmonster"}, {"datetaken": "2005-10-28 21:11:48", "license": "1", "title": "halloween 2005", "text": "", "album_id": "72057594106619152", "longitude": "-78.397150", "url_o": "https://farm1.staticflickr.com/51/128205404_8bc8679d19_o.jpg", "secret": "8bc8679d19", "media": "photo", "latitude": "36.021969", "id": "128205404", "tags": "2005 halloween beer army costume october radialmonster"}, {"datetaken": "2005-10-28 23:00:27", "license": "1", "title": "halloween 2005", "text": "", "album_id": "72057594106619152", "longitude": "-78.397150", "url_o": "https://farm1.staticflickr.com/53/128205421_ce1b2673f3_o.jpg", "secret": "ce1b2673f3", "media": "photo", "latitude": "36.021969", "id": "128205421", "tags": "2005 halloween me hair nicole costume october clown radialmonster catgirl"}, {"datetaken": "2005-10-28 23:00:34", "license": "1", "title": "halloween 2005", "text": "", "album_id": "72057594106619152", "longitude": "-78.397150", "url_o": "https://farm1.staticflickr.com/55/128205462_2082836df8_o.jpg", "secret": "2082836df8", "media": "photo", "latitude": "36.021969", "id": "128205462", "tags": "2005 halloween costume october radialmonster"}, {"datetaken": "2007-10-27 00:16:46", "license": "6", "title": "007", "text": "", "album_id": "72157603657119129", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2344/2174424068_758650eed0_o.jpg", "secret": "81eccce358", "media": "photo", "latitude": "0", "id": "2174424068", "tags": "party halloween oldroberds"}, {"datetaken": "2007-10-27 00:18:29", "license": "6", "title": "008", "text": "", "album_id": "72157603657119129", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2255/2173637129_baf13afa6a_o.jpg", "secret": "5331f95079", "media": "photo", "latitude": "0", "id": "2173637129", "tags": "party halloween oldroberds"}, {"datetaken": "2007-10-27 00:25:18", "license": "6", "title": "010", "text": "", "album_id": "72157603657119129", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2411/2173637875_4cb9b38b12_o.jpg", "secret": "a18745a29d", "media": "photo", "latitude": "0", "id": "2173637875", "tags": "party halloween oldroberds"}, {"datetaken": "2007-10-27 00:25:31", "license": "6", "title": "011", "text": "", "album_id": "72157603657119129", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2021/2174426000_306cd404eb_o.jpg", "secret": "33ac8d349a", "media": "photo", "latitude": "0", "id": "2174426000", "tags": "party halloween oldroberds"}, {"datetaken": "2007-10-27 00:27:55", "license": "6", "title": "013", "text": "", "album_id": "72157603657119129", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2297/2174426992_7796cc1667_o.jpg", "secret": "1b66e97c4c", "media": "photo", "latitude": "0", "id": "2174426992", "tags": "party halloween oldroberds"}, {"datetaken": "2007-10-27 00:28:04", "license": "6", "title": "014", "text": "", "album_id": "72157603657119129", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2420/2173640247_6665014fc5_o.jpg", "secret": "b41f7d5662", "media": "photo", "latitude": "0", "id": "2173640247", "tags": "party halloween oldroberds"}, {"datetaken": "2007-10-27 00:42:16", "license": "6", "title": "Witchy Halloween at Roberds", "text": "", "album_id": "72157603657119129", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2324/2173641389_d3610c5e26_o.jpg", "secret": "f042ebc2f1", "media": "photo", "latitude": "0", "id": "2173641389", "tags": "party halloween oldroberds"}, {"datetaken": "2007-10-27 00:46:49", "license": "6", "title": "037", "text": "", "album_id": "72157603657119129", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2193/2174429800_e27fde7f42_o.jpg", "secret": "5b668b8446", "media": "photo", "latitude": "0", "id": "2174429800", "tags": "party halloween oldroberds"}, {"datetaken": "2007-10-27 01:24:06", "license": "6", "title": "057", "text": "", "album_id": "72157603657119129", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2303/2174430630_4dcdeee03b_o.jpg", "secret": "eec335b11f", "media": "photo", "latitude": "0", "id": "2174430630", "tags": "party halloween oldroberds"}, {"datetaken": "2007-10-27 01:24:23", "license": "6", "title": "058", "text": "", "album_id": "72157603657119129", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2310/2174431318_8ccb41723d_o.jpg", "secret": "d93bd77fe5", "media": "photo", "latitude": "0", "id": "2174431318", "tags": "party halloween oldroberds"}, {"datetaken": "2007-10-27 01:32:06", "license": "6", "title": "063", "text": "", "album_id": "72157603657119129", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2286/2173644547_4dd25768e8_o.jpg", "secret": "0cef03057c", "media": "photo", "latitude": "0", "id": "2173644547", "tags": "party halloween oldroberds"}, {"datetaken": "2007-10-27 02:55:03", "license": "6", "title": "082", "text": "", "album_id": "72157603657119129", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2387/2173645089_2d6ca8045a_o.jpg", "secret": "03c7f4e84a", "media": "photo", "latitude": "0", "id": "2173645089", "tags": "party halloween oldroberds"}, {"datetaken": "2014-09-06 15:42:47", "license": "1", "title": "0906141542b", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5583/15221234241_e0acb5e375_o.jpg", "secret": "84343aeac4", "media": "photo", "latitude": "0", "id": "15221234241", "tags": ""}, {"datetaken": "2014-09-06 15:53:48", "license": "1", "title": "0906141553", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3902/15201291206_105c7c35b2_o.jpg", "secret": "9eee018df0", "media": "photo", "latitude": "0", "id": "15201291206", "tags": ""}, {"datetaken": "2014-09-06 15:55:04", "license": "1", "title": "0906141555", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5581/15224320475_5ff2da5f27_o.jpg", "secret": "4a8f4593f4", "media": "photo", "latitude": "0", "id": "15224320475", "tags": ""}, {"datetaken": "2014-09-06 15:55:15", "license": "1", "title": "0906141555a", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5553/15037747857_373ebc1df6_o.jpg", "secret": "ce271a093e", "media": "photo", "latitude": "0", "id": "15037747857", "tags": ""}, {"datetaken": "2014-09-06 15:55:27", "license": "1", "title": "0906141555b", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5587/15037747617_342dc79a12_o.jpg", "secret": "4797ac92ce", "media": "photo", "latitude": "0", "id": "15037747617", "tags": ""}, {"datetaken": "2014-09-06 15:55:50", "license": "1", "title": "0906141555c", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3875/15037731448_c41aff964e_o.jpg", "secret": "3b601a649e", "media": "photo", "latitude": "0", "id": "15037731448", "tags": ""}, {"datetaken": "2014-09-06 15:58:36", "license": "1", "title": "0906141558", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3903/15037631900_20f0fd5f6e_o.jpg", "secret": "36e7af062c", "media": "photo", "latitude": "0", "id": "15037631900", "tags": ""}, {"datetaken": "2014-09-06 16:12:16", "license": "1", "title": "0906141612", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3919/15221233271_c8c8fc6a73_o.jpg", "secret": "6b9565d56c", "media": "photo", "latitude": "0", "id": "15221233271", "tags": ""}, {"datetaken": "2014-09-06 16:12:32", "license": "1", "title": "0906141612a", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3862/15037746997_13f3424992_o.jpg", "secret": "e4eb215480", "media": "photo", "latitude": "0", "id": "15037746997", "tags": ""}, {"datetaken": "2014-09-06 16:13:01", "license": "1", "title": "0906141613", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5578/15221232581_173e5d1897_o.jpg", "secret": "6245b12fae", "media": "photo", "latitude": "0", "id": "15221232581", "tags": ""}, {"datetaken": "2014-09-06 16:14:41", "license": "1", "title": "0906141614", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3882/15037533829_f4de44d39a_o.jpg", "secret": "f32301377c", "media": "photo", "latitude": "0", "id": "15037533829", "tags": ""}, {"datetaken": "2014-09-06 16:16:10", "license": "1", "title": "0906141616", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3893/15037730038_aea0e8e0db_o.jpg", "secret": "2f496f352d", "media": "photo", "latitude": "0", "id": "15037730038", "tags": ""}, {"datetaken": "2014-09-06 16:18:56", "license": "1", "title": "0906141618", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5557/15201289046_f9879e18c7_o.jpg", "secret": "0661a9dbc9", "media": "photo", "latitude": "0", "id": "15201289046", "tags": ""}, {"datetaken": "2014-09-06 16:19:36", "license": "1", "title": "0906141619a", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5561/15037629850_00fb0b8f38_o.jpg", "secret": "61cf7e8a14", "media": "photo", "latitude": "0", "id": "15037629850", "tags": ""}, {"datetaken": "2014-09-06 16:20:30", "license": "1", "title": "0906141620", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5572/15201289116_e26238280b_o.jpg", "secret": "3941f886be", "media": "photo", "latitude": "0", "id": "15201289116", "tags": ""}, {"datetaken": "2014-09-06 16:29:26", "license": "1", "title": "0906141629", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5594/15224318265_9f389aeff7_o.jpg", "secret": "05efc9c498", "media": "photo", "latitude": "0", "id": "15224318265", "tags": ""}, {"datetaken": "2014-09-06 16:33:17", "license": "1", "title": "0906141633", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3868/15224317925_3e686431be_o.jpg", "secret": "f50b21f329", "media": "photo", "latitude": "0", "id": "15224317925", "tags": ""}, {"datetaken": "2014-09-06 16:33:55", "license": "1", "title": "0906141633a", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5558/15223945162_01878e8f59_o.jpg", "secret": "6cee3e23df", "media": "photo", "latitude": "0", "id": "15223945162", "tags": ""}, {"datetaken": "2014-09-06 16:35:02", "license": "1", "title": "0906141635", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3907/15224316795_0814e9c0bb_o.jpg", "secret": "090f618580", "media": "photo", "latitude": "0", "id": "15224316795", "tags": ""}, {"datetaken": "2014-09-06 16:35:05", "license": "1", "title": "0906141635a", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3861/15037727838_1fc4fe3c43_o.jpg", "secret": "f090080d80", "media": "photo", "latitude": "0", "id": "15037727838", "tags": ""}, {"datetaken": "2014-09-06 16:35:17", "license": "1", "title": "0906141635b", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5580/15224316155_f93c6a5e15_o.jpg", "secret": "d0c5ac0537", "media": "photo", "latitude": "0", "id": "15224316155", "tags": ""}, {"datetaken": "2014-09-06 16:35:47", "license": "1", "title": "0906141635c", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3904/15037628670_1c41e46eec_o.jpg", "secret": "b438e0e5c5", "media": "photo", "latitude": "0", "id": "15037628670", "tags": ""}, {"datetaken": "2014-09-06 16:50:36", "license": "1", "title": "0906141650", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3863/15224315685_08475b33a8_o.jpg", "secret": "9f7d1901db", "media": "photo", "latitude": "0", "id": "15224315685", "tags": ""}, {"datetaken": "2014-09-06 16:50:46", "license": "1", "title": "0906141650a", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5595/15037627850_5473666d08_o.jpg", "secret": "3767edeb91", "media": "photo", "latitude": "0", "id": "15037627850", "tags": ""}, {"datetaken": "2014-09-06 17:20:36", "license": "1", "title": "0906141720", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3912/15223942802_ff4242f1e3_o.jpg", "secret": "e257ae2b24", "media": "photo", "latitude": "0", "id": "15223942802", "tags": ""}, {"datetaken": "2014-09-06 17:20:37", "license": "1", "title": "0906141720a", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5573/15201285626_fc6d579198_o.jpg", "secret": "05975cae4f", "media": "photo", "latitude": "0", "id": "15201285626", "tags": ""}, {"datetaken": "2014-09-06 17:36:28", "license": "1", "title": "0906141736", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5577/15201285496_91b861588d_o.jpg", "secret": "d30b003d23", "media": "photo", "latitude": "0", "id": "15201285496", "tags": ""}, {"datetaken": "2014-09-06 17:36:51", "license": "1", "title": "0906141736a", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5588/15037725658_9d54f0c4ac_o.jpg", "secret": "bd65ac018e", "media": "photo", "latitude": "0", "id": "15037725658", "tags": ""}, {"datetaken": "2014-09-06 17:47:24", "license": "1", "title": "0906141747", "text": "", "album_id": "72157647537163181", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3875/15201285146_204cd82368_o.jpg", "secret": "4ab2838fa4", "media": "photo", "latitude": "0", "id": "15201285146", "tags": ""}, {"datetaken": "2014-10-26 11:34:05", "license": "5", "title": "5D3Q5696", "text": "", "album_id": "72157648675934897", "longitude": "139.773691", "url_o": "https://farm4.staticflickr.com/3940/15506055320_2f24b3beac_o.jpg", "secret": "9673a5f901", "media": "photo", "latitude": "35.626672", "id": "15506055320", "tags": "japan tokyo minato jpn sanriopuroland\u5916\u90e8\u516c\u6f14"}, {"datetaken": "2014-10-26 11:37:18", "license": "5", "title": "5D3Q5699", "text": "", "album_id": "72157648675934897", "longitude": "139.773733", "url_o": "https://farm6.staticflickr.com/5598/15688937311_4320318113_o.jpg", "secret": "2fe6fb69bd", "media": "photo", "latitude": "35.626705", "id": "15688937311", "tags": "japan tokyo minato jpn sanriopuroland\u5916\u90e8\u516c\u6f14"}, {"datetaken": "2014-10-26 11:54:48", "license": "5", "title": "5D3Q5707", "text": "", "album_id": "72157648675934897", "longitude": "139.777397", "url_o": "https://farm9.staticflickr.com/8583/15071500003_1bb390000b_o.jpg", "secret": "6437274b0c", "media": "photo", "latitude": "35.625091", "id": "15071500003", "tags": "japan tokyo minato jpn"}, {"datetaken": "2014-10-26 13:01:35", "license": "5", "title": "5D3Q5725", "text": "", "album_id": "72157648675934897", "longitude": "139.772477", "url_o": "https://farm8.staticflickr.com/7576/15505657287_5c69450e87_o.jpg", "secret": "10e6787ecc", "media": "photo", "latitude": "35.626233", "id": "15505657287", "tags": ""}, {"datetaken": "2014-10-26 13:02:41", "license": "5", "title": "IMG_20141026_130241", "text": "", "album_id": "72157648675934897", "longitude": "139.772480", "url_o": "https://farm9.staticflickr.com/8412/15505467568_e7c9a17f93_o.jpg", "secret": "1c4da8df28", "media": "photo", "latitude": "35.626177", "id": "15505467568", "tags": ""}, {"datetaken": "2014-10-26 13:03:29", "license": "5", "title": "5D3Q5731", "text": "", "album_id": "72157648675934897", "longitude": "139.772477", "url_o": "https://farm8.staticflickr.com/7517/15505656917_8b9e16967c_o.jpg", "secret": "ffa6a2561a", "media": "photo", "latitude": "35.626233", "id": "15505656917", "tags": ""}, {"datetaken": "2014-10-26 13:04:14", "license": "5", "title": "5D3Q5736", "text": "", "album_id": "72157648675934897", "longitude": "139.772477", "url_o": "https://farm6.staticflickr.com/5613/15071499143_e154c6d57d_o.jpg", "secret": "f30ebea06d", "media": "photo", "latitude": "35.626233", "id": "15071499143", "tags": ""}, {"datetaken": "2014-10-26 13:04:29", "license": "5", "title": "5D3Q5740", "text": "", "album_id": "72157648675934897", "longitude": "139.772477", "url_o": "https://farm8.staticflickr.com/7541/15070914714_6500e6320e_o.jpg", "secret": "9bf45d5d9b", "media": "photo", "latitude": "35.626233", "id": "15070914714", "tags": ""}, {"datetaken": "2014-10-26 13:05:18", "license": "5", "title": "5D3Q5745", "text": "", "album_id": "72157648675934897", "longitude": "139.772477", "url_o": "https://farm4.staticflickr.com/3942/15667144206_0390326173_o.jpg", "secret": "288e0492e1", "media": "photo", "latitude": "35.626233", "id": "15667144206", "tags": ""}, {"datetaken": "2014-10-26 13:05:33", "license": "5", "title": "5D3Q5747", "text": "", "album_id": "72157648675934897", "longitude": "139.772477", "url_o": "https://farm8.staticflickr.com/7551/15505656077_04d2f50f86_o.jpg", "secret": "9d74e06cbf", "media": "photo", "latitude": "35.626233", "id": "15505656077", "tags": ""}, {"datetaken": "2014-10-26 13:08:48", "license": "5", "title": "5D3Q5754", "text": "", "album_id": "72157648675934897", "longitude": "139.772477", "url_o": "https://farm4.staticflickr.com/3942/15688935211_3daccc50dc_o.jpg", "secret": "338d2e04c3", "media": "photo", "latitude": "35.626233", "id": "15688935211", "tags": ""}, {"datetaken": "2014-10-26 13:09:10", "license": "5", "title": "5D3Q5762", "text": "", "album_id": "72157648675934897", "longitude": "139.772477", "url_o": "https://farm6.staticflickr.com/5597/15505655907_8a5a33faa0_o.jpg", "secret": "38e7b8254a", "media": "photo", "latitude": "35.626233", "id": "15505655907", "tags": ""}, {"datetaken": "2014-10-26 13:35:39", "license": "5", "title": "5D3Q5767", "text": "", "album_id": "72157648675934897", "longitude": "139.772927", "url_o": "https://farm4.staticflickr.com/3953/15667143456_023dfb3a5a_o.jpg", "secret": "b8269f6eab", "media": "photo", "latitude": "35.626288", "id": "15667143456", "tags": "japan tokyo minato jpn"}, {"datetaken": "2014-10-26 15:25:13", "license": "5", "title": "5D3Q5770", "text": "", "album_id": "72157648675934897", "longitude": "139.773733", "url_o": "https://farm8.staticflickr.com/7481/15688934831_89b04123ec_o.jpg", "secret": "6dc36fa3a6", "media": "photo", "latitude": "35.626705", "id": "15688934831", "tags": "japan tokyo minato jpn sanriopuroland\u5916\u90e8\u516c\u6f14"}, {"datetaken": "2014-10-26 15:27:47", "license": "5", "title": "5D3Q5772", "text": "", "album_id": "72157648675934897", "longitude": "139.773733", "url_o": "https://farm8.staticflickr.com/7574/15505655207_7d790534ed_o.jpg", "secret": "0fd6e9284d", "media": "photo", "latitude": "35.626705", "id": "15505655207", "tags": "japan tokyo minato jpn sanriopuroland\u5916\u90e8\u516c\u6f14"}, {"datetaken": "2014-10-26 15:29:25", "license": "5", "title": "5D3Q5773", "text": "", "album_id": "72157648675934897", "longitude": "139.773733", "url_o": "https://farm4.staticflickr.com/3943/15690860575_70268dc843_o.jpg", "secret": "cf1b5e9c7e", "media": "photo", "latitude": "35.626705", "id": "15690860575", "tags": "japan tokyo minato jpn sanriopuroland\u5916\u90e8\u516c\u6f14"}, {"datetaken": "2014-10-26 15:31:11", "license": "5", "title": "5D3Q5776", "text": "", "album_id": "72157648675934897", "longitude": "139.773733", "url_o": "https://farm8.staticflickr.com/7522/15692454582_b151d64312_o.jpg", "secret": "3d8abb2a6d", "media": "photo", "latitude": "35.626705", "id": "15692454582", "tags": "japan tokyo minato jpn sanriopuroland\u5916\u90e8\u516c\u6f14"}, {"datetaken": "2014-10-26 15:34:32", "license": "5", "title": "5D3Q5785", "text": "", "album_id": "72157648675934897", "longitude": "139.773733", "url_o": "https://farm4.staticflickr.com/3944/15688932501_a52db133c9_o.jpg", "secret": "87f05537a8", "media": "photo", "latitude": "35.626705", "id": "15688932501", "tags": "japan tokyo minato jpn sanriopuroland\u5916\u90e8\u516c\u6f14"}, {"datetaken": "2014-10-26 15:36:27", "license": "5", "title": "5D3Q5788", "text": "", "album_id": "72157648675934897", "longitude": "139.773733", "url_o": "https://farm8.staticflickr.com/7534/15506050500_ff2f4134a4_o.jpg", "secret": "fe02a03436", "media": "photo", "latitude": "35.626705", "id": "15506050500", "tags": "japan tokyo minato jpn sanriopuroland\u5916\u90e8\u516c\u6f14"}, {"datetaken": "2014-10-26 15:41:06", "license": "5", "title": "5D3Q5804", "text": "", "album_id": "72157648675934897", "longitude": "139.773733", "url_o": "https://farm4.staticflickr.com/3950/15688931871_e3dc4fe4ba_o.jpg", "secret": "1d3d905d0c", "media": "photo", "latitude": "35.626705", "id": "15688931871", "tags": "japan tokyo minato jpn sanriopuroland\u5916\u90e8\u516c\u6f14"}, {"datetaken": "2014-10-26 15:41:19", "license": "5", "title": "5D3Q5813", "text": "", "album_id": "72157648675934897", "longitude": "139.773733", "url_o": "https://farm6.staticflickr.com/5602/15505652467_d3282d84b6_o.jpg", "secret": "2e65316455", "media": "photo", "latitude": "35.626705", "id": "15505652467", "tags": "japan tokyo minato jpn sanriopuroland\u5916\u90e8\u516c\u6f14"}, {"datetaken": "2014-10-26 15:42:13", "license": "5", "title": "5D3Q5814", "text": "", "album_id": "72157648675934897", "longitude": "139.773733", "url_o": "https://farm9.staticflickr.com/8681/15688931361_56204fe75f_o.jpg", "secret": "fcaefd6ebc", "media": "photo", "latitude": "35.626705", "id": "15688931361", "tags": ""}, {"datetaken": "2014-10-26 17:01:11", "license": "5", "title": "5D3Q5817", "text": "", "album_id": "72157648675934897", "longitude": "139.773744", "url_o": "https://farm8.staticflickr.com/7483/15071493643_b37037e968_o.jpg", "secret": "d7e7b7b4bb", "media": "photo", "latitude": "35.626713", "id": "15071493643", "tags": "japan tokyo minato jpn sanriopuroland\u5916\u90e8\u516c\u6f14"}, {"datetaken": "2014-10-26 17:01:19", "license": "5", "title": "5D3Q5819", "text": "", "album_id": "72157648675934897", "longitude": "139.773744", "url_o": "https://farm8.staticflickr.com/7576/15070909584_417d0e7a1b_o.jpg", "secret": "1a5a86a9ac", "media": "photo", "latitude": "35.626713", "id": "15070909584", "tags": "japan tokyo minato jpn sanriopuroland\u5916\u90e8\u516c\u6f14"}, {"datetaken": "2014-10-26 17:07:43", "license": "5", "title": "5D3Q5828", "text": "", "album_id": "72157648675934897", "longitude": "139.773733", "url_o": "https://farm4.staticflickr.com/3949/15071492983_054059f9db_o.jpg", "secret": "4e816a1350", "media": "photo", "latitude": "35.626705", "id": "15071492983", "tags": "japan tokyo minato jpn sanriopuroland\u5916\u90e8\u516c\u6f14"}, {"datetaken": "2014-10-26 17:09:15", "license": "5", "title": "5D3Q5833", "text": "", "album_id": "72157648675934897", "longitude": "139.773733", "url_o": "https://farm4.staticflickr.com/3938/15504983919_da64d47187_o.jpg", "secret": "80c40a2e0c", "media": "photo", "latitude": "35.626705", "id": "15504983919", "tags": ""}, {"datetaken": "2014-10-26 17:10:00", "license": "5", "title": "5D3Q5840", "text": "", "album_id": "72157648675934897", "longitude": "139.773733", "url_o": "https://farm4.staticflickr.com/3951/15690855825_374fd7686a_o.jpg", "secret": "9573c6f13c", "media": "photo", "latitude": "35.626705", "id": "15690855825", "tags": "japan tokyo minato jpn sanriopuroland\u5916\u90e8\u516c\u6f14"}, {"datetaken": "2014-10-26 17:11:08", "license": "5", "title": "5D3Q5849", "text": "", "album_id": "72157648675934897", "longitude": "139.773733", "url_o": "https://farm4.staticflickr.com/3942/15504983029_e2e24c2bd6_o.jpg", "secret": "05c86b6814", "media": "photo", "latitude": "35.626705", "id": "15504983029", "tags": "japan tokyo minato jpn sanriopuroland\u5916\u90e8\u516c\u6f14"}, {"datetaken": "2014-10-26 17:16:43", "license": "5", "title": "5D3Q5860", "text": "", "album_id": "72157648675934897", "longitude": "139.773733", "url_o": "https://farm4.staticflickr.com/3955/15070906964_db905c0157_o.jpg", "secret": "33f422e460", "media": "photo", "latitude": "35.626705", "id": "15070906964", "tags": ""}, {"datetaken": "2014-10-26 17:19:53", "license": "5", "title": "5D3Q5866", "text": "", "album_id": "72157648675934897", "longitude": "139.773733", "url_o": "https://farm8.staticflickr.com/7550/15690854395_fabede77ae_o.jpg", "secret": "9ec80c0bcb", "media": "photo", "latitude": "35.626705", "id": "15690854395", "tags": ""}, {"datetaken": "2010-10-01 00:01:47", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 153", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4126/5044778554_8e781ed24c_o.jpg", "secret": "d9acaafbb8", "media": "photo", "latitude": "36.869149", "id": "5044778554", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:01:48", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 147", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4084/5044155285_bc078fe10e_o.jpg", "secret": "ae9ea03d70", "media": "photo", "latitude": "36.869149", "id": "5044155285", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:01:49", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 137", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4084/5044777752_fb6d3cd566_o.jpg", "secret": "172817eaa3", "media": "photo", "latitude": "36.869149", "id": "5044777752", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:01:50", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 136", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4147/5044154977_6163daa994_o.jpg", "secret": "72ee632b7a", "media": "photo", "latitude": "36.869149", "id": "5044154977", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:01:51", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 131", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4111/5044781318_4251f11dde_o.jpg", "secret": "08ce51b68e", "media": "photo", "latitude": "36.869149", "id": "5044781318", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:01:52", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 127", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4111/5044781184_3eb12c1241_o.jpg", "secret": "168127df72", "media": "photo", "latitude": "36.869149", "id": "5044781184", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:01:53", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 120", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4132/5044158473_f7426ab555_o.jpg", "secret": "680c1a4f06", "media": "photo", "latitude": "36.869149", "id": "5044158473", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:01:54", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 111", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4083/5044780824_436b9a01a6_o.jpg", "secret": "9339110508", "media": "photo", "latitude": "36.869149", "id": "5044780824", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:01:55", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 109", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4109/5044158093_ee233858db_o.jpg", "secret": "1193b5f4c8", "media": "photo", "latitude": "36.869149", "id": "5044158093", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:01:56", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 100", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4132/5044157931_4e217faa02_o.jpg", "secret": "b870217f02", "media": "photo", "latitude": "36.869149", "id": "5044157931", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:01:57", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 099", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4147/5044780272_c58ca2b2eb_o.jpg", "secret": "e7ff22921a", "media": "photo", "latitude": "36.869149", "id": "5044780272", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:01:58", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 098", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4127/5044780122_9aa421cb86_o.jpg", "secret": "3cdf06463c", "media": "photo", "latitude": "36.869149", "id": "5044780122", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:01:59", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 095", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4109/5044157315_c97fa193a6_o.jpg", "secret": "5a26ff261b", "media": "photo", "latitude": "36.869149", "id": "5044157315", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:02:00", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 093", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4109/5044157097_c872d966d0_o.jpg", "secret": "7c6036a541", "media": "photo", "latitude": "36.869149", "id": "5044157097", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:02:01", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 088", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4144/5044779556_94c1a5ba6e_o.jpg", "secret": "e3af75cc6a", "media": "photo", "latitude": "36.869149", "id": "5044779556", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:02:02", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 086", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4088/5044779340_6b7088b3c4_o.jpg", "secret": "3918cd1c7a", "media": "photo", "latitude": "36.869149", "id": "5044779340", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:02:03", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 076", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4147/5044156587_0cb818e8f8_o.jpg", "secret": "bdc37b057d", "media": "photo", "latitude": "36.869149", "id": "5044156587", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:02:04", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 063", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4113/5044779030_e4ebc3c844_o.jpg", "secret": "3ce0bc3aa8", "media": "photo", "latitude": "36.869149", "id": "5044779030", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:02:05", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 057", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4089/5044156253_fd40dbc417_o.jpg", "secret": "c941ac45bb", "media": "photo", "latitude": "36.869149", "id": "5044156253", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:02:06", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 048", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4109/5044778704_af7c05ea0b_o.jpg", "secret": "4e1728faf2", "media": "photo", "latitude": "36.869149", "id": "5044778704", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:02:07", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 039", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4095/5044155721_3d70ed6e93_o.jpg", "secret": "1d51b7b58d", "media": "photo", "latitude": "36.869149", "id": "5044155721", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:02:08", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 038", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4147/5044155581_bcb5824026_o.jpg", "secret": "5265a71801", "media": "photo", "latitude": "36.869149", "id": "5044155581", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:02:09", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 037", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4083/5044778070_b20d23fdfb_o.jpg", "secret": "b7a6d4391a", "media": "photo", "latitude": "36.869149", "id": "5044778070", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:02:10", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 033", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4115/5044777386_0dd570434d_o.jpg", "secret": "532f5eb6b1", "media": "photo", "latitude": "36.869149", "id": "5044777386", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:02:11", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 030", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4094/5044154621_ecd613e3d8_o.jpg", "secret": "156f24c359", "media": "photo", "latitude": "36.869149", "id": "5044154621", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:02:12", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 028", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4126/5044777094_e8502bbbfe_o.jpg", "secret": "84ec321bb3", "media": "photo", "latitude": "36.869149", "id": "5044777094", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:02:13", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 025", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4129/5044776964_871d7f1076_o.jpg", "secret": "5136b2d323", "media": "photo", "latitude": "36.869149", "id": "5044776964", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2010-10-01 00:02:14", "license": "4", "title": "WildcatFootballvAgra10012010Homecoming 022", "text": "", "album_id": "72157624955008717", "longitude": "-95.097806", "url_o": "https://farm5.staticflickr.com/4103/5044154101_ce12b383b9_o.jpg", "secret": "248058bf38", "media": "photo", "latitude": "36.869149", "id": "5044154101", "tags": "oklahoma football homecoming welch welchok welchokcom"}, {"datetaken": "2011-03-26 16:45:39", "license": "3", "title": "Class of '01 Mad Hatter Tea & Tent Party", "text": "", "album_id": "72157626529005069", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5303/5690117513_e8605b6364_o.jpg", "secret": "e4800a3cde", "media": "photo", "latitude": "0", "id": "5690117513", "tags": "party tea tent class homecoming 01 mad stetson hatter"}, {"datetaken": "2011-03-26 16:46:49", "license": "3", "title": "Class of '01 Mad Hatter Tea & Tent Party", "text": "", "album_id": "72157626529005069", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5221/5690117559_9c11aff7c0_o.jpg", "secret": "c4cc4e0464", "media": "photo", "latitude": "0", "id": "5690117559", "tags": "party tea tent class homecoming 01 mad stetson hatter"}, {"datetaken": "2011-03-26 16:47:02", "license": "3", "title": "Class of '01 Mad Hatter Tea & Tent Party", "text": "", "album_id": "72157626529005069", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5225/5690693494_bce4a05854_o.jpg", "secret": "ddedc9b44d", "media": "photo", "latitude": "0", "id": "5690693494", "tags": "party tea tent class homecoming 01 mad stetson hatter"}, {"datetaken": "2011-03-26 16:49:17", "license": "3", "title": "Class of '01 Mad Hatter Tea & Tent Party", "text": "", "album_id": "72157626529005069", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5143/5690117677_c2dc71e43e_o.jpg", "secret": "ce95bfa7e8", "media": "photo", "latitude": "0", "id": "5690117677", "tags": "party david tea melissa tent class homecoming 01 knight natalie mad stetson hatter gobeo"}, {"datetaken": "2011-03-26 16:53:05", "license": "3", "title": "Clas of '01 Class of '01 Mad Hatter Tea & Tent Party", "text": "", "album_id": "72157626529005069", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5266/5690117707_cf1e67e6c0_o.jpg", "secret": "7cec207c46", "media": "photo", "latitude": "0", "id": "5690117707", "tags": "party david tea melissa tent class homecoming 01 knight natalie mad sal mancini stetson hatter gobeo"}, {"datetaken": "2011-03-26 16:54:44", "license": "3", "title": "Class of '01 Mad Hatter Tea & Tent Party", "text": "", "album_id": "72157626529005069", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5145/5690693648_473d155113_o.jpg", "secret": "2573f2d1a7", "media": "photo", "latitude": "0", "id": "5690693648", "tags": "party david tea tent class homecoming 01 mad sal mancini stetson hatter gobeo"}, {"datetaken": "2011-03-26 16:57:28", "license": "3", "title": "Class of '01 Mad Hatter Tea & Tent Party", "text": "", "album_id": "72157626529005069", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5223/5690117801_fb20634de0_o.jpg", "secret": "185a8f7e0c", "media": "photo", "latitude": "0", "id": "5690117801", "tags": "party david tea melissa tent class homecoming 01 knight mad sal mancini stetson hatter gobeo"}, {"datetaken": "2011-03-26 17:08:45", "license": "3", "title": "Class of '01 Mad Hatter Tea & Tent Party", "text": "", "album_id": "72157626529005069", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5310/5690693740_52480e1476_o.jpg", "secret": "f7c577c4c9", "media": "photo", "latitude": "0", "id": "5690693740", "tags": "party david tea melissa tent class homecoming 01 knight mad stetson hatter gobeo"}, {"datetaken": "2011-03-26 17:11:07", "license": "3", "title": "Class of '01 Mad Hatter Tea & Tent Party", "text": "", "album_id": "72157626529005069", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5263/5690117903_4e84a5f968_o.jpg", "secret": "2313d2b4ed", "media": "photo", "latitude": "0", "id": "5690117903", "tags": "party david tea tent class homecoming 01 natalie mad stetson hatter goebo"}, {"datetaken": "2011-03-26 17:15:39", "license": "3", "title": "Class of '01 Mad Hatter Tea & Tent Party", "text": "", "album_id": "72157626529005069", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5303/5690117957_519e043288_o.jpg", "secret": "84a8a1c63c", "media": "photo", "latitude": "0", "id": "5690117957", "tags": "party dan tea tent class homecoming 01 mad stetson hatter kerrey"}, {"datetaken": "2010-10-09 08:45:45", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5256/5427984729_d500ce4ea1_o.jpg", "secret": "f9ea8a30f8", "media": "photo", "latitude": "0", "id": "5427984729", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield"}, {"datetaken": "2010-10-09 08:50:44", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5056/5428586052_88fa394ae2_o.jpg", "secret": "b76eb78dc3", "media": "photo", "latitude": "0", "id": "5428586052", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield"}, {"datetaken": "2010-10-09 08:56:47", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5139/5428586116_e6239c8b8e_o.jpg", "secret": "68e313f419", "media": "photo", "latitude": "0", "id": "5428586116", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 08:57:25", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5016/5427984971_923939b0a8_o.jpg", "secret": "9e9bb974c3", "media": "photo", "latitude": "0", "id": "5427984971", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 08:57:28", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5136/5428586514_346f3f0fe6_o.jpg", "secret": "e4883e5299", "media": "photo", "latitude": "0", "id": "5428586514", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 08:58:20", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5016/5427985371_b19fb71ba8_o.jpg", "secret": "b1a7733f0f", "media": "photo", "latitude": "0", "id": "5427985371", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 08:59:41", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5178/5427985503_cb4c66386d_o.jpg", "secret": "eee5de0e31", "media": "photo", "latitude": "0", "id": "5427985503", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:01:31", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5018/5428586982_e392c26e77_o.jpg", "secret": "66a0e90d05", "media": "photo", "latitude": "0", "id": "5428586982", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:01:48", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5011/5427985963_131506c43c_o.jpg", "secret": "8e040e8e26", "media": "photo", "latitude": "0", "id": "5427985963", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:02:21", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5255/5427986147_c11ce1cddc_o.jpg", "secret": "ac412de512", "media": "photo", "latitude": "0", "id": "5427986147", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:02:39", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5014/5428587378_978ffd7ca7_o.jpg", "secret": "1281fda053", "media": "photo", "latitude": "0", "id": "5428587378", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:02:40", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5017/5428587514_e352a8128b_o.jpg", "secret": "67836632e5", "media": "photo", "latitude": "0", "id": "5428587514", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:02:40", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5256/5428587892_38a7a9f37c_o.jpg", "secret": "c374c11233", "media": "photo", "latitude": "0", "id": "5428587892", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:02:41", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5133/5428588130_7012df7bbd_o.jpg", "secret": "93b9d61f31", "media": "photo", "latitude": "0", "id": "5428588130", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:02:42", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5171/5427987055_ea098d2fb9_o.jpg", "secret": "5142ee4e10", "media": "photo", "latitude": "0", "id": "5427987055", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:02:44", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5012/5427987231_453a26c436_o.jpg", "secret": "76ac5ec89d", "media": "photo", "latitude": "0", "id": "5427987231", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:03:27", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5214/5427987405_1c4e1f88be_o.jpg", "secret": "11059ddb2e", "media": "photo", "latitude": "0", "id": "5427987405", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:03:31", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5251/5427987579_a0c545fde9_o.jpg", "secret": "9faff75d8b", "media": "photo", "latitude": "0", "id": "5427987579", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:03:40", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5219/5428588878_ec5a1c9376_o.jpg", "secret": "ac5bbe6964", "media": "photo", "latitude": "0", "id": "5428588878", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:03:48", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5177/5427987841_248b457689_o.jpg", "secret": "3147f801f6", "media": "photo", "latitude": "0", "id": "5427987841", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:07:49", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5059/5428589150_b7e89a33b3_o.jpg", "secret": "6451b9b40e", "media": "photo", "latitude": "0", "id": "5428589150", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:08:33", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5212/5428589414_26252fcebf_o.jpg", "secret": "cf781f0cc8", "media": "photo", "latitude": "0", "id": "5428589414", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:12:53", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5216/5427988717_c161a5f695_o.jpg", "secret": "c1c8b8aed7", "media": "photo", "latitude": "0", "id": "5427988717", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:13:26", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5258/5427988905_c07afcafca_o.jpg", "secret": "be1a3670bc", "media": "photo", "latitude": "0", "id": "5427988905", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:14:01", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5140/5427989021_3a24f636e2_o.jpg", "secret": "78dbbcfcb4", "media": "photo", "latitude": "0", "id": "5427989021", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:14:38", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5252/5428590442_ce2f5bba48_o.jpg", "secret": "bce225acff", "media": "photo", "latitude": "0", "id": "5428590442", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:19:24", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5178/5428590712_0af10b6f8b_o.jpg", "secret": "2201eaf10b", "media": "photo", "latitude": "0", "id": "5428590712", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:22:06", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5180/5427990055_b7c20779fb_o.jpg", "secret": "5c66ea6112", "media": "photo", "latitude": "0", "id": "5427990055", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:24:39", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5013/5428591394_d9fdb31560_o.jpg", "secret": "0d4d96123d", "media": "photo", "latitude": "0", "id": "5428591394", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:25:17", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5258/5428591740_4e3178b9c6_o.jpg", "secret": "894d22d815", "media": "photo", "latitude": "0", "id": "5428591740", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:26:19", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5018/5427990975_71581f02de_o.jpg", "secret": "a46d3e7ec4", "media": "photo", "latitude": "0", "id": "5427990975", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:26:27", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5293/5428592186_31d5e8da78_o.jpg", "secret": "15f3def071", "media": "photo", "latitude": "0", "id": "5428592186", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:28:36", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5218/5428592542_93b0a5f6ee_o.jpg", "secret": "e64c3a973c", "media": "photo", "latitude": "0", "id": "5428592542", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:30:24", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5178/5427991657_eeba525ec8_o.jpg", "secret": "e985a988cd", "media": "photo", "latitude": "0", "id": "5427991657", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:35:31", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5095/5428592834_df9663c96d_o.jpg", "secret": "ea8d8d5f3a", "media": "photo", "latitude": "0", "id": "5428592834", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:35:50", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5298/5427992007_91c69477da_o.jpg", "secret": "a6e2604feb", "media": "photo", "latitude": "0", "id": "5427992007", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:35:57", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5139/5427992197_9b99cfe5fc_o.jpg", "secret": "0e40d89445", "media": "photo", "latitude": "0", "id": "5427992197", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:36:25", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5095/5428593544_358fd2f47c_o.jpg", "secret": "7d798d5ce0", "media": "photo", "latitude": "0", "id": "5428593544", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:38:02", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5217/5427992693_de37f3baa1_o.jpg", "secret": "a795b6fca3", "media": "photo", "latitude": "0", "id": "5427992693", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:38:12", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5291/5427992807_e7cc04e5e8_o.jpg", "secret": "f439b2d290", "media": "photo", "latitude": "0", "id": "5427992807", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:38:35", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5135/5427993015_b047507cda_o.jpg", "secret": "bd38a7fc41", "media": "photo", "latitude": "0", "id": "5427993015", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:39:45", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5179/5427993341_e4e4f1e99b_o.jpg", "secret": "0508a8a77e", "media": "photo", "latitude": "0", "id": "5427993341", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 09:43:20", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5174/5427993627_e32d2305f4_o.jpg", "secret": "37d583be5e", "media": "photo", "latitude": "0", "id": "5427993627", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 10:11:05", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5171/5428594998_593e484f0a_o.jpg", "secret": "842ee438ac", "media": "photo", "latitude": "0", "id": "5428594998", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2010-10-09 10:12:29", "license": "3", "title": "5K Run at UIS Homecoming Week 2010", "text": "", "album_id": "72157625879475637", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5180/5427994435_67ec54e9e8_o.jpg", "secret": "1943ee97df", "media": "photo", "latitude": "0", "id": "5427994435", "tags": "race train training outdoors october exercise walk run homecoming 5k 2010 uis homecomingweek universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield uofispringfield scenery20105khomecominghomecomingweekoctoberracerun"}, {"datetaken": "2011-05-09 14:53:26", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm3.staticflickr.com/2699/5705008408_0514ba0076_o.jpg", "secret": "23174a1331", "media": "photo", "latitude": "37.270023", "id": "5705008408", "tags": "students library traditions exhibit homecoming commencement convocation scrc yulelog collegeofwilliamandmary swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:53:37", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm3.staticflickr.com/2700/5704441793_2a833c5826_o.jpg", "secret": "1469f69fc9", "media": "photo", "latitude": "37.270023", "id": "5704441793", "tags": "students library traditions exhibit homecoming commencement convocation scrc yulelog collegeofwilliamandmary swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:53:45", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm3.staticflickr.com/2641/5705008976_cc046b466b_o.jpg", "secret": "c0f98db700", "media": "photo", "latitude": "37.270023", "id": "5705008976", "tags": "students library traditions exhibit homecoming commencement convocation scrc yulelog collegeofwilliamandmary swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:53:54", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm3.staticflickr.com/2643/5705009252_0ce028b51c_o.jpg", "secret": "84e81d9781", "media": "photo", "latitude": "37.270023", "id": "5705009252", "tags": "students library traditions exhibit homecoming commencement convocation scrc yulelog collegeofwilliamandmary swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:54:57", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm4.staticflickr.com/3212/5705009476_48400919c9_o.jpg", "secret": "1edaf409b5", "media": "photo", "latitude": "37.270023", "id": "5705009476", "tags": "students sex race women library exhibit gender scrc homosexuality collegeofwilliamandmary swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:55:06", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm4.staticflickr.com/3146/5705009668_2a0e9f2905_o.jpg", "secret": "eb3f0ec7f1", "media": "photo", "latitude": "37.270023", "id": "5705009668", "tags": "students sex race women library exhibit gender scrc homosexuality collegeofwilliamandmary swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:55:15", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm4.staticflickr.com/3548/5705009982_08e136b4c4_o.jpg", "secret": "d9454b8a15", "media": "photo", "latitude": "37.270023", "id": "5705009982", "tags": "students sex race women library exhibit gender scrc homosexuality collegeofwilliamandmary swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:55:24", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm4.staticflickr.com/3597/5705010312_8e1ee83f11_o.jpg", "secret": "35b21faf8f", "media": "photo", "latitude": "37.270023", "id": "5705010312", "tags": "students sex race women library exhibit gender scrc homosexuality collegeofwilliamandmary swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:56:22", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm4.staticflickr.com/3507/5705010612_db6d1f85e7_o.jpg", "secret": "0940e8a513", "media": "photo", "latitude": "37.270023", "id": "5705010612", "tags": "students library exhibit scrc collegeofwilliamandmary swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:57:01", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm3.staticflickr.com/2105/5705010934_04f4e08005_o.jpg", "secret": "43a4443a25", "media": "photo", "latitude": "37.270023", "id": "5705010934", "tags": "students library exhibit scrc greeks collegeofwilliamandmary organizations fraternities sororities swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:57:12", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm4.staticflickr.com/3216/5705011236_7794fefaaf_o.jpg", "secret": "1e01d39485", "media": "photo", "latitude": "37.270023", "id": "5705011236", "tags": "students library exhibit scrc greeks collegeofwilliamandmary organizations fraternities sororities swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:57:21", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm3.staticflickr.com/2097/5704444693_d870c59707_o.jpg", "secret": "a4f261328a", "media": "photo", "latitude": "37.270023", "id": "5704444693", "tags": "students library exhibit scrc greeks collegeofwilliamandmary organizations fraternities sororities swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:57:28", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm3.staticflickr.com/2420/5704445021_46ea764918_o.jpg", "secret": "b4714fc893", "media": "photo", "latitude": "37.270023", "id": "5704445021", "tags": "students library exhibit scrc greeks collegeofwilliamandmary organizations fraternities sororities swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:58:14", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm4.staticflickr.com/3017/5705012280_971a7dc3a3_o.jpg", "secret": "b0dc5dd6ac", "media": "photo", "latitude": "37.270023", "id": "5705012280", "tags": "students library exhibit homecoming scrc greeks collegeofwilliamandmary organizations fraternities sororities swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:58:24", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm3.staticflickr.com/2228/5705012646_f05534c305_o.jpg", "secret": "4bae8abca2", "media": "photo", "latitude": "37.270023", "id": "5705012646", "tags": "students library exhibit homecoming scrc greeks collegeofwilliamandmary organizations fraternities sororities swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:58:31", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm3.staticflickr.com/2323/5704446059_aa629007fd_o.jpg", "secret": "b3523c1125", "media": "photo", "latitude": "37.270023", "id": "5704446059", "tags": "students library exhibit organization scrc greeks homcoming collegeofwilliamandmary fraternities sororities swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:58:37", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm4.staticflickr.com/3043/5704446365_09def87373_o.jpg", "secret": "7e067f37c3", "media": "photo", "latitude": "37.270023", "id": "5704446365", "tags": "students library exhibit scrc greeks homcoming collegeofwilliamandmary organizations fraternities sororities swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:59:21", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm4.staticflickr.com/3455/5704446793_8667aac307_o.jpg", "secret": "46b06c6c58", "media": "photo", "latitude": "37.270023", "id": "5704446793", "tags": "sports students library exhibit images advertisements cartoons scrc collegeofwilliamandmary swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:59:38", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm3.staticflickr.com/2003/5704447005_56c1638d0d_o.jpg", "secret": "056b5d7f5a", "media": "photo", "latitude": "37.270023", "id": "5704447005", "tags": "sports students library exhibit images advertisements cartoons scrc collegeofwilliamandmary swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 14:59:56", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm3.staticflickr.com/2499/5704447403_ac6e13fca3_o.jpg", "secret": "cac06ebcd7", "media": "photo", "latitude": "37.270023", "id": "5704447403", "tags": "students war peace library 911 exhibit vietnam terrorism protests scrc collegeofwilliamandmary swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 15:00:13", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm3.staticflickr.com/2740/5704447717_47a386cf7e_o.jpg", "secret": "81f06b6231", "media": "photo", "latitude": "37.270023", "id": "5704447717", "tags": "students war peace library wwi wwii exhibit scrc collegeofwilliamandmary swem flathat zuber universityarchives"}, {"datetaken": "2011-05-09 15:00:28", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "-76.715919", "url_o": "https://farm3.staticflickr.com/2231/5704448107_27f3d5f1fc_o.jpg", "secret": "e9856564df", "media": "photo", "latitude": "37.270023", "id": "5704448107", "tags": "students sex race library exhibit africanamericans gender scrc collegeofwilliamandmary swem flathat zuber universityarchives marilynkaemmerle"}, {"datetaken": "2011-05-09 15:00:45", "license": "3", "title": "\"A Century of Student Voices\" Exhibit", "text": "", "album_id": "72157626713239724", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3465/5713707815_4ab30d9e3d_o.jpg", "secret": "6cff923074", "media": "photo", "latitude": "0", "id": "5713707815", "tags": "students senior library traditions exhibit freshman convocation triathlon scrc classes collegeofwilliamandmary swem flathat zuber universityarchives duccap"}, {"datetaken": "2011-10-09 23:31:20", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6040/6232271276_aa762d7f93_o.jpg", "secret": "fd0de77aa3", "media": "photo", "latitude": "0", "id": "6232271276", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:31:49", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6103/6232272972_6e1f570bd3_o.jpg", "secret": "63c6df35a0", "media": "photo", "latitude": "0", "id": "6232272972", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:33:15", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6174/6231756229_fbb4096a8e_o.jpg", "secret": "037a61d95e", "media": "photo", "latitude": "0", "id": "6231756229", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:34:36", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6218/6232276266_5df830061d_o.jpg", "secret": "c39ee52f73", "media": "photo", "latitude": "0", "id": "6232276266", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:38:45", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6158/6231758753_eb5c68e30f_o.jpg", "secret": "f6243c14e7", "media": "photo", "latitude": "0", "id": "6231758753", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:40:47", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6180/6232278692_f64f301480_o.jpg", "secret": "e4b01c55ca", "media": "photo", "latitude": "0", "id": "6232278692", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:41:04", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6167/6231762135_93fe0f23c7_o.jpg", "secret": "234937fbc8", "media": "photo", "latitude": "0", "id": "6231762135", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:41:16", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6238/6231763583_6977535317_o.jpg", "secret": "cc6fd2eee0", "media": "photo", "latitude": "0", "id": "6231763583", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:42:31", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6239/6232283362_aab1f6d100_o.jpg", "secret": "73fe8a037d", "media": "photo", "latitude": "0", "id": "6232283362", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:42:50", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6047/6231765571_cc5cff8744_o.jpg", "secret": "15bbccb36a", "media": "photo", "latitude": "0", "id": "6231765571", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:44:30", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6174/6231766943_2d94790b0a_o.jpg", "secret": "4d92221629", "media": "photo", "latitude": "0", "id": "6231766943", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:45:02", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6032/6231767459_1d7ec92220_o.jpg", "secret": "820ac0a724", "media": "photo", "latitude": "0", "id": "6231767459", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:45:07", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6160/6231768609_df8101aee9_o.jpg", "secret": "19327c90f2", "media": "photo", "latitude": "0", "id": "6231768609", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:49:01", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6043/6232288626_f43cb0ac91_o.jpg", "secret": "70c8c8d61d", "media": "photo", "latitude": "0", "id": "6232288626", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:53:05", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6163/6232289552_40a3c87307_o.jpg", "secret": "47bc814ff6", "media": "photo", "latitude": "0", "id": "6232289552", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:53:26", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6108/6231771941_1d63d3cacb_o.jpg", "secret": "cda896f843", "media": "photo", "latitude": "0", "id": "6231771941", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:53:38", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6107/6231772897_01c59a864c_o.jpg", "secret": "6b67ab8674", "media": "photo", "latitude": "0", "id": "6231772897", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:53:46", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6112/6232293706_f391cd65db_o.jpg", "secret": "35e67a04f9", "media": "photo", "latitude": "0", "id": "6232293706", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:55:23", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6038/6232294836_8b77c0ee76_o.jpg", "secret": "f3720a6650", "media": "photo", "latitude": "0", "id": "6232294836", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-09 23:55:36", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6038/6232295486_91563b8253_o.jpg", "secret": "a54f85b617", "media": "photo", "latitude": "0", "id": "6232295486", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-10 00:07:39", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6176/6231777761_4d4873f258_o.jpg", "secret": "fe6cd02cb0", "media": "photo", "latitude": "0", "id": "6231777761", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-10 00:08:53", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6097/6231779769_8ec6ba3fae_o.jpg", "secret": "a3751ddba1", "media": "photo", "latitude": "0", "id": "6231779769", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-10 00:12:06", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6237/6232301276_01b74a213d_o.jpg", "secret": "4c59a5b635", "media": "photo", "latitude": "0", "id": "6232301276", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-10 00:17:14", "license": "3", "title": "Reggie Day at Miller Park Zoo", "text": "", "album_id": "72157627739165473", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6116/6232302046_d9a583d020_o.jpg", "secret": "ea77d34b8c", "media": "photo", "latitude": "0", "id": "6232302046", "tags": "athletics homecoming isu reggie redbird millerparkzoo illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-09-30 19:40:36", "license": "1", "title": "Jesus saves racecars", "text": "", "album_id": "72157627864675956", "longitude": "-97.217116", "url_o": "https://farm7.staticflickr.com/6176/6231639667_90af85890f_o.jpg", "secret": "806d0c8a77", "media": "photo", "latitude": "38.933775", "id": "6231639667", "tags": ""}, {"datetaken": "2011-09-30 19:41:02", "license": "1", "title": "Hartman family manse", "text": "", "album_id": "72157627864675956", "longitude": "-97.217116", "url_o": "https://farm7.staticflickr.com/6235/6232158922_47aaf38ace_o.jpg", "secret": "a897bc9289", "media": "photo", "latitude": "38.933775", "id": "6232158922", "tags": ""}, {"datetaken": "2011-09-30 19:41:20", "license": "1", "title": "IMG_5629", "text": "", "album_id": "72157627864675956", "longitude": "-97.217116", "url_o": "https://farm7.staticflickr.com/6157/6232157436_d3eac9e5d5_o.jpg", "secret": "15a90c611f", "media": "photo", "latitude": "38.933775", "id": "6232157436", "tags": ""}, {"datetaken": "2011-09-30 19:57:49", "license": "1", "title": "Gram, Nannie & Kaden @homecoming", "text": "", "album_id": "72157627864675956", "longitude": "-97.219519", "url_o": "https://farm7.staticflickr.com/6035/6231640037_4ca0306a53_o.jpg", "secret": "7181003c44", "media": "photo", "latitude": "38.923926", "id": "6231640037", "tags": ""}, {"datetaken": "2011-09-30 20:03:58", "license": "1", "title": "AHS homecoming pre-game", "text": "", "album_id": "72157627864675956", "longitude": "-97.219519", "url_o": "https://farm7.staticflickr.com/6165/6232157666_9e2a777e4c_o.jpg", "secret": "5305ccafc2", "media": "photo", "latitude": "38.923926", "id": "6232157666", "tags": ""}, {"datetaken": "2011-09-30 20:04:43", "license": "1", "title": "AHS homecoming pre-game", "text": "", "album_id": "72157627864675956", "longitude": "-97.219519", "url_o": "https://farm7.staticflickr.com/6105/6232157164_52a09d1d84_o.jpg", "secret": "c151157aff", "media": "photo", "latitude": "38.923926", "id": "6232157164", "tags": ""}, {"datetaken": "2011-09-30 20:05:43", "license": "1", "title": "IMG_5633", "text": "", "album_id": "72157627864675956", "longitude": "-97.219519", "url_o": "https://farm7.staticflickr.com/6178/6231654895_f5e66e56ca_o.jpg", "secret": "15727a0242", "media": "photo", "latitude": "38.923926", "id": "6231654895", "tags": ""}, {"datetaken": "2011-09-30 20:34:37", "license": "1", "title": "Coach Hartman at work", "text": "", "album_id": "72157627864675956", "longitude": "-97.219519", "url_o": "https://farm7.staticflickr.com/6052/6231655909_0a11743e91_o.jpg", "secret": "067f448a6c", "media": "photo", "latitude": "38.923926", "id": "6231655909", "tags": ""}, {"datetaken": "2011-09-30 20:34:51", "license": "1", "title": "Coach Hartman at work", "text": "", "album_id": "72157627864675956", "longitude": "-97.219519", "url_o": "https://farm7.staticflickr.com/6213/6232173810_815b5de5a4_o.jpg", "secret": "7cfc73de78", "media": "photo", "latitude": "38.923926", "id": "6232173810", "tags": ""}, {"datetaken": "2011-09-30 21:17:38", "license": "1", "title": "AHS homecoming", "text": "", "album_id": "72157627864675956", "longitude": "-97.219519", "url_o": "https://farm7.staticflickr.com/6172/6232174956_561c306b76_o.jpg", "secret": "852ed54ec4", "media": "photo", "latitude": "38.923926", "id": "6232174956", "tags": ""}, {"datetaken": "2011-10-01 18:45:03", "license": "1", "title": "IMG_5638", "text": "", "album_id": "72157627864675956", "longitude": "-95.142116", "url_o": "https://farm7.staticflickr.com/6152/6231656697_37cd7e4480_o.jpg", "secret": "4c56dffbce", "media": "photo", "latitude": "38.854213", "id": "6231656697", "tags": ""}, {"datetaken": "2011-10-01 18:45:23", "license": "1", "title": "IMG_5640", "text": "", "album_id": "72157627864675956", "longitude": "-95.142116", "url_o": "https://farm7.staticflickr.com/6240/6232175180_4066917369_o.jpg", "secret": "815fe41969", "media": "photo", "latitude": "38.854213", "id": "6232175180", "tags": ""}, {"datetaken": "2011-10-01 19:05:39", "license": "1", "title": "IMG_5641", "text": "", "album_id": "72157627864675956", "longitude": "-95.142116", "url_o": "https://farm7.staticflickr.com/6099/6232174432_dde8471672_o.jpg", "secret": "337bc3827c", "media": "photo", "latitude": "38.854213", "id": "6232174432", "tags": ""}, {"datetaken": "2011-10-01 19:05:58", "license": "1", "title": "IMG_5642", "text": "", "album_id": "72157627864675956", "longitude": "-95.142116", "url_o": "https://farm7.staticflickr.com/6175/6231655267_106d82d463_o.jpg", "secret": "1f4af95689", "media": "photo", "latitude": "38.854213", "id": "6231655267", "tags": ""}, {"datetaken": "2011-10-01 19:06:09", "license": "1", "title": "Mike & Emily- Randel family pig roast", "text": "", "album_id": "72157627864675956", "longitude": "-95.142116", "url_o": "https://farm7.staticflickr.com/6175/6232183916_c88f51fc78_o.jpg", "secret": "a9e461111e", "media": "photo", "latitude": "38.854213", "id": "6232183916", "tags": ""}, {"datetaken": "2011-10-01 20:06:52", "license": "1", "title": "Kansas sunset", "text": "", "album_id": "72157627864675956", "longitude": "-95.142116", "url_o": "https://farm7.staticflickr.com/6216/6232183740_f1fc83e47c_o.jpg", "secret": "72b8fe3641", "media": "photo", "latitude": "38.854213", "id": "6232183740", "tags": ""}, {"datetaken": "2011-10-01 20:07:00", "license": "1", "title": "Kansas sunset", "text": "", "album_id": "72157627864675956", "longitude": "-95.142116", "url_o": "https://farm7.staticflickr.com/6177/6231664881_f8a2e1a319_o.jpg", "secret": "6ed09684b4", "media": "photo", "latitude": "38.854213", "id": "6231664881", "tags": ""}, {"datetaken": "2011-10-01 20:07:17", "license": "1", "title": "Kansas sunset", "text": "", "album_id": "72157627864675956", "longitude": "-95.142116", "url_o": "https://farm7.staticflickr.com/6060/6232184152_319ab8746e_o.jpg", "secret": "5f963ee533", "media": "photo", "latitude": "38.854213", "id": "6232184152", "tags": ""}, {"datetaken": "2011-10-01 20:37:57", "license": "1", "title": "Kansas sunset", "text": "", "album_id": "72157627864675956", "longitude": "-95.142116", "url_o": "https://farm7.staticflickr.com/6166/6232184294_d7895588a6_o.jpg", "secret": "a5194852e8", "media": "photo", "latitude": "38.854213", "id": "6232184294", "tags": ""}, {"datetaken": "2011-10-01 20:38:10", "license": "1", "title": "Kansas sunset", "text": "", "album_id": "72157627864675956", "longitude": "-95.142116", "url_o": "https://farm7.staticflickr.com/6042/6232184596_e7a00d061f_o.jpg", "secret": "40d3b76666", "media": "photo", "latitude": "38.854213", "id": "6232184596", "tags": ""}, {"datetaken": "2011-10-14 17:33:41", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6176/6245686374_26c1650602_o.jpg", "secret": "a8769c2edd", "media": "photo", "latitude": "0", "id": "6245686374", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 17:40:52", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6168/6245164969_a1d96daa8a_o.jpg", "secret": "b4003b7f0f", "media": "photo", "latitude": "0", "id": "6245164969", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 17:41:15", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6041/6245165657_6628f331f9_o.jpg", "secret": "cc72d838b2", "media": "photo", "latitude": "0", "id": "6245165657", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 17:41:27", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6227/6245166435_fae066bef1_o.jpg", "secret": "ef7c3b4bd9", "media": "photo", "latitude": "0", "id": "6245166435", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 17:43:16", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6038/6245688688_123c30060f_o.jpg", "secret": "6d59b37827", "media": "photo", "latitude": "0", "id": "6245688688", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 17:45:32", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6215/6245167273_23db8eb362_o.jpg", "secret": "a3a70335ab", "media": "photo", "latitude": "0", "id": "6245167273", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 17:46:17", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6232/6245167825_eaa3706ce3_o.jpg", "secret": "03b76de06b", "media": "photo", "latitude": "0", "id": "6245167825", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 17:49:08", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6211/6245168627_6897f1d956_o.jpg", "secret": "9e36ccd9a7", "media": "photo", "latitude": "0", "id": "6245168627", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 17:49:17", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6114/6245691022_1ba0b50ef0_o.jpg", "secret": "ab768e99fc", "media": "photo", "latitude": "0", "id": "6245691022", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 17:50:28", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6166/6245170081_e2327e0daf_o.jpg", "secret": "0e4e830cde", "media": "photo", "latitude": "0", "id": "6245170081", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 17:50:29", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6039/6245170343_84a0e68234_o.jpg", "secret": "1f0b04a027", "media": "photo", "latitude": "0", "id": "6245170343", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 17:52:18", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6231/6245171177_b42e9951d8_o.jpg", "secret": "d6c4dfe432", "media": "photo", "latitude": "0", "id": "6245171177", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 17:53:39", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6229/6245693400_d9b50ecda4_o.jpg", "secret": "3b303571a9", "media": "photo", "latitude": "0", "id": "6245693400", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 18:26:14", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6229/6245172385_40cbd723b1_o.jpg", "secret": "f696a912e8", "media": "photo", "latitude": "0", "id": "6245172385", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 18:26:48", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6158/6245172885_d8ddc1b3b9_o.jpg", "secret": "cae4d1503e", "media": "photo", "latitude": "0", "id": "6245172885", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 18:27:44", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6107/6245173765_d1fd51b200_o.jpg", "secret": "c4ab7d794d", "media": "photo", "latitude": "0", "id": "6245173765", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 18:28:40", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6042/6245696070_167c10521c_o.jpg", "secret": "9bc6b97cf2", "media": "photo", "latitude": "0", "id": "6245696070", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 18:29:54", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6105/6245175121_9c758be991_o.jpg", "secret": "2174b61937", "media": "photo", "latitude": "0", "id": "6245175121", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 18:30:07", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6235/6245175651_b18f31c8ea_o.jpg", "secret": "8d832da44f", "media": "photo", "latitude": "0", "id": "6245175651", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 18:30:28", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6212/6245176255_53bf3a4fc8_o.jpg", "secret": "96ca46d627", "media": "photo", "latitude": "0", "id": "6245176255", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 18:30:42", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6162/6245176793_7b9587ef12_o.jpg", "secret": "f71a79df66", "media": "photo", "latitude": "0", "id": "6245176793", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 18:31:01", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6111/6245177267_6eca36cf68_o.jpg", "secret": "bc81799873", "media": "photo", "latitude": "0", "id": "6245177267", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 18:32:51", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6031/6245178015_10e158ec21_o.jpg", "secret": "dd7fbe58b1", "media": "photo", "latitude": "0", "id": "6245178015", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 18:34:28", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6112/6245178679_099c26d181_o.jpg", "secret": "2d65af65d2", "media": "photo", "latitude": "0", "id": "6245178679", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 18:36:50", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6158/6245700268_0a13eff953_o.jpg", "secret": "50cb5d14b4", "media": "photo", "latitude": "0", "id": "6245700268", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 18:37:32", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6100/6245179805_27701be2c0_o.jpg", "secret": "56acfcece8", "media": "photo", "latitude": "0", "id": "6245179805", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 18:38:07", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6214/6245701758_c133ef8385_o.jpg", "secret": "6f6bc142e4", "media": "photo", "latitude": "0", "id": "6245701758", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 18:39:03", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6058/6245702262_85057e64e1_o.jpg", "secret": "c940148286", "media": "photo", "latitude": "0", "id": "6245702262", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 18:40:18", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6212/6245181419_b50419433a_o.jpg", "secret": "588c0b3050", "media": "photo", "latitude": "0", "id": "6245181419", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2011-10-14 18:48:04", "license": "3", "title": "2011 HoopFest", "text": "", "album_id": "72157627871513354", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6217/6245703294_f4108c04cb_o.jpg", "secret": "0655506001", "media": "photo", "latitude": "0", "id": "6245703294", "tags": "basketball athletics homecoming isu reggie redbird hoopfest illinoisstate illinoisstatehomecoming"}, {"datetaken": "2010-11-27 10:20:26", "license": "5", "title": "Na Lehua Helele'i", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm4.staticflickr.com/3089/5845674714_914ed1c5e2_o.jpg", "secret": "8ca3035e8f", "media": "photo", "latitude": "21.279007", "id": "5845674714", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 10:26:58", "license": "5", "title": "U.S. 105mm Howitzer M3", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm4.staticflickr.com/3260/5845674870_83de0f39e7_o.jpg", "secret": "283836834a", "media": "photo", "latitude": "21.279007", "id": "5845674870", "tags": "museum army hawaii military wwi wwii artillery howitzer batteryrandolph"}, {"datetaken": "2010-11-27 10:27:24", "license": "5", "title": "U.S. 105mm Howitzer M3", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm6.staticflickr.com/5074/5845122897_9158ed788e_o.jpg", "secret": "455eba4f58", "media": "photo", "latitude": "21.279007", "id": "5845122897", "tags": "museum army hawaii military wwi wwii artillery howitzer batteryrandolph"}, {"datetaken": "2010-11-27 10:38:04", "license": "5", "title": "Map of museum", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm3.staticflickr.com/2593/5845675166_20625becf1_o.jpg", "secret": "f17dd4358c", "media": "photo", "latitude": "21.279007", "id": "5845675166", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 10:46:42", "license": "5", "title": "Knock Knock by Sergeant First Class Darrold Peters", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm3.staticflickr.com/2790/5845123215_e1597cd37c_o.jpg", "secret": "8686ac7efd", "media": "photo", "latitude": "21.279007", "id": "5845123215", "tags": "art museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 11:07:43", "license": "5", "title": "Kepuwaha'ula'ula", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm6.staticflickr.com/5075/5845123417_93955153de_o.jpg", "secret": "1a93c95e55", "media": "photo", "latitude": "21.279007", "id": "5845123417", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 11:27:34", "license": "5", "title": "14\" armor-piercing exploding projectile", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm4.staticflickr.com/3302/5845123583_af6c6285a2_o.jpg", "secret": "faa7a1f112", "media": "photo", "latitude": "21.279007", "id": "5845123583", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 11:27:42", "license": "5", "title": "Cross-section: 14\" armor-piercing exploding projectile", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm4.staticflickr.com/3289/5845123735_fecd4245d9_o.jpg", "secret": "270414dd3b", "media": "photo", "latitude": "21.279007", "id": "5845123735", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 11:39:05", "license": "5", "title": "Japenese occupation money and weapons", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm4.staticflickr.com/3569/5845123959_f909bd5a7b_o.jpg", "secret": "1ed2c4e4ab", "media": "photo", "latitude": "21.279007", "id": "5845123959", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 11:43:26", "license": "5", "title": "Battery Randolph", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm3.staticflickr.com/2469/5845124143_66f7799ed5_o.jpg", "secret": "86b7b65e00", "media": "photo", "latitude": "21.279007", "id": "5845124143", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 11:51:18", "license": "5", "title": "Naval air power", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm6.staticflickr.com/5183/5845676340_621af54fdf_o.jpg", "secret": "789ecab720", "media": "photo", "latitude": "21.279007", "id": "5845676340", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 11:54:37", "license": "5", "title": "December 8, 1941", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm6.staticflickr.com/5231/5845124455_d7a8fa36ba_o.jpg", "secret": "bd7cd4f68a", "media": "photo", "latitude": "21.279007", "id": "5845124455", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 12:01:18", "license": "5", "title": "Pearl Harbor day, buy war bonds", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm3.staticflickr.com/2712/5845676646_f8974b4a27_o.jpg", "secret": "b0cf784730", "media": "photo", "latitude": "21.279007", "id": "5845676646", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 12:06:38", "license": "5", "title": "U.S. Weapons", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm3.staticflickr.com/2558/5845124737_4eda645ebc_o.jpg", "secret": "b7cced3742", "media": "photo", "latitude": "21.279007", "id": "5845124737", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 12:06:51", "license": "5", "title": "Japanese weapons", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm4.staticflickr.com/3095/5845677018_b5a9ae752d_o.jpg", "secret": "e6a00747dd", "media": "photo", "latitude": "21.279007", "id": "5845677018", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 12:10:54", "license": "5", "title": "Portable flame thrower, M1A1 and flame gun, M2A1", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm4.staticflickr.com/3462/5845677214_0ba1a61659_o.jpg", "secret": "af1c1d7a23", "media": "photo", "latitude": "21.279007", "id": "5845677214", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 12:26:10", "license": "5", "title": "American homecomings", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm3.staticflickr.com/2551/5845125197_784e0a0309_o.jpg", "secret": "0bb70f3c21", "media": "photo", "latitude": "21.279007", "id": "5845125197", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 12:32:54", "license": "5", "title": "Rest and relaxation", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm6.staticflickr.com/5069/5845677502_6ab7b10343_o.jpg", "secret": "b01c2094e7", "media": "photo", "latitude": "21.279007", "id": "5845677502", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 12:37:23", "license": "5", "title": "General Eric K. Shinseki Exhibit", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm3.staticflickr.com/2457/5845677666_96f3ffa006_o.jpg", "secret": "296149f493", "media": "photo", "latitude": "21.279007", "id": "5845677666", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 12:53:11", "license": "5", "title": "Gallery of heroes", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm4.staticflickr.com/3569/5845677816_a1830185e3_o.jpg", "secret": "ccff12dc34", "media": "photo", "latitude": "21.279007", "id": "5845677816", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 12:53:43", "license": "5", "title": "Gallery of heroes", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm6.staticflickr.com/5147/5845677974_658f0b1ed7_o.jpg", "secret": "af4f7571a7", "media": "photo", "latitude": "21.279007", "id": "5845677974", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 13:04:50", "license": "5", "title": "Artillery", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm4.staticflickr.com/3606/5845678096_0f6dbe0c49_o.jpg", "secret": "0c0f518993", "media": "photo", "latitude": "21.279007", "id": "5845678096", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2010-11-27 13:05:37", "license": "5", "title": "Helicopter", "text": "", "album_id": "72157626865355029", "longitude": "-157.833924", "url_o": "https://farm3.staticflickr.com/2491/5845678252_72d395c3a8_o.jpg", "secret": "6311012d91", "media": "photo", "latitude": "21.279007", "id": "5845678252", "tags": "museum army hawaii military wwi wwii batteryrandolph"}, {"datetaken": "2011-09-15 05:56:30", "license": "3", "title": "TMP-M homecoming parade - 01", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6172/6167923197_59294e3579_o.jpg", "secret": "f606b7b721", "media": "photo", "latitude": "0", "id": "6167923197", "tags": ""}, {"datetaken": "2011-09-15 05:56:45", "license": "3", "title": "TMP-M homecoming parade - 02", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6168/6167923429_a921baf893_o.jpg", "secret": "5ebb53ac54", "media": "photo", "latitude": "0", "id": "6167923429", "tags": ""}, {"datetaken": "2011-09-15 06:10:39", "license": "3", "title": "TMP-M homecoming parade - 03", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6175/6168460616_fca635bdff_o.jpg", "secret": "c948d96fd2", "media": "photo", "latitude": "0", "id": "6168460616", "tags": ""}, {"datetaken": "2011-09-15 06:11:19", "license": "3", "title": "TMP-M homecoming parade - 04", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6171/6167923823_66b4299eac_o.jpg", "secret": "3f1ecaf5ec", "media": "photo", "latitude": "0", "id": "6167923823", "tags": ""}, {"datetaken": "2011-09-15 07:00:20", "license": "3", "title": "TMP-M homecoming band - 1", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6154/6167924015_d7f39041d6_o.jpg", "secret": "14bc79b689", "media": "photo", "latitude": "0", "id": "6167924015", "tags": ""}, {"datetaken": "2011-09-15 08:26:44", "license": "3", "title": "TMP-M homecoming band - 2", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6161/6167924261_0067e92f06_o.jpg", "secret": "ed4f932c17", "media": "photo", "latitude": "0", "id": "6167924261", "tags": ""}, {"datetaken": "2011-09-15 08:28:33", "license": "3", "title": "TMP-M homecoming band - 3", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6166/6168461536_c895edd455_o.jpg", "secret": "7e54fc2e08", "media": "photo", "latitude": "0", "id": "6168461536", "tags": ""}, {"datetaken": "2011-09-15 08:29:13", "license": "3", "title": "TMP-M homecoming band - 4", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6163/6168461778_10babde57d_o.jpg", "secret": "d670be4413", "media": "photo", "latitude": "0", "id": "6168461778", "tags": ""}, {"datetaken": "2011-09-15 08:37:54", "license": "3", "title": "TMP-M homecoming halftime", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6168/6168461966_7133a5ca50_o.jpg", "secret": "7e4619a467", "media": "photo", "latitude": "0", "id": "6168461966", "tags": ""}, {"datetaken": "2011-09-16 16:39:38", "license": "3", "title": "TMP-M homecoming parade - 05", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6156/6167925201_d8ec0f912e_o.jpg", "secret": "fe5a42d4c6", "media": "photo", "latitude": "0", "id": "6167925201", "tags": ""}, {"datetaken": "2011-09-16 16:39:47", "license": "3", "title": "TMP-M homecoming parade - 06", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6166/6168462420_c56ccba9cc_o.jpg", "secret": "40acb87039", "media": "photo", "latitude": "0", "id": "6168462420", "tags": ""}, {"datetaken": "2011-09-16 16:40:19", "license": "3", "title": "TMP-M homecoming parade - 07", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6179/6167925719_75a285114e_o.jpg", "secret": "bf3177bc5d", "media": "photo", "latitude": "0", "id": "6167925719", "tags": ""}, {"datetaken": "2011-09-16 16:47:09", "license": "3", "title": "TMP-M homecoming parade - 08", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6152/6168462880_fc3152477d_o.jpg", "secret": "bc27f06965", "media": "photo", "latitude": "0", "id": "6168462880", "tags": ""}, {"datetaken": "2011-09-16 16:47:30", "license": "3", "title": "TMP-M homecoming parade - 09", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6176/6167926207_f4e2c82f98_o.jpg", "secret": "b4a26bcb86", "media": "photo", "latitude": "0", "id": "6167926207", "tags": ""}, {"datetaken": "2011-09-16 16:47:34", "license": "3", "title": "TMP-M homecoming parade - 10", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6176/6167926431_c5ff684815_o.jpg", "secret": "93ea9a5d48", "media": "photo", "latitude": "0", "id": "6167926431", "tags": ""}, {"datetaken": "2011-09-16 16:47:39", "license": "3", "title": "TMP-M homecoming parade - 11", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6151/6168463548_92666c7ae5_o.jpg", "secret": "abfd31f000", "media": "photo", "latitude": "0", "id": "6168463548", "tags": ""}, {"datetaken": "2011-09-16 16:58:39", "license": "3", "title": "TMP-M homecoming parade - 12", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6166/6167926889_70874ce70d_o.jpg", "secret": "7983976b10", "media": "photo", "latitude": "0", "id": "6167926889", "tags": ""}, {"datetaken": "2011-09-16 16:59:26", "license": "3", "title": "TMP-M homecoming parade - 13", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6152/6167927129_72db993c71_o.jpg", "secret": "4e97f18c08", "media": "photo", "latitude": "0", "id": "6167927129", "tags": ""}, {"datetaken": "2011-09-16 16:59:28", "license": "3", "title": "TMP-M homecoming parade - 14", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6172/6168464238_5cdbe486cf_o.jpg", "secret": "55609dfa0b", "media": "photo", "latitude": "0", "id": "6168464238", "tags": ""}, {"datetaken": "2011-09-16 16:59:31", "license": "3", "title": "TMP-M homecoming parade - 15", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6174/6168464522_58a7aaf37e_o.jpg", "secret": "ebf2676a60", "media": "photo", "latitude": "0", "id": "6168464522", "tags": ""}, {"datetaken": "2011-09-16 16:59:51", "license": "3", "title": "TMP-M homecoming parade - 16", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6151/6167927913_6bc9b11e66_o.jpg", "secret": "58177ebdaf", "media": "photo", "latitude": "0", "id": "6167927913", "tags": ""}, {"datetaken": "2011-09-16 17:10:13", "license": "3", "title": "TMP-M homecoming parade - 17", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6179/6168465090_0b16614540_o.jpg", "secret": "620f2dc44f", "media": "photo", "latitude": "0", "id": "6168465090", "tags": ""}, {"datetaken": "2011-09-16 17:10:15", "license": "3", "title": "TMP-M homecoming parade - 18", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6154/6168465284_428fceafe5_o.jpg", "secret": "1f48272e56", "media": "photo", "latitude": "0", "id": "6168465284", "tags": ""}, {"datetaken": "2011-09-16 17:10:19", "license": "3", "title": "TMP-M homecoming parade - 19", "text": "", "album_id": "72157627717760892", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6169/6168465520_7fed6e629c_o.jpg", "secret": "790a5aa743", "media": "photo", "latitude": "0", "id": "6168465520", "tags": ""}, {"datetaken": "2011-10-21 16:10:25", "license": "2", "title": "IMG_0471", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6031/6270262423_50da00d1a4_o.jpg", "secret": "f9f9124055", "media": "photo", "latitude": "0", "id": "6270262423", "tags": ""}, {"datetaken": "2011-10-21 16:30:55", "license": "2", "title": "IMG_0475", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6095/6270793094_de28ef780a_o.jpg", "secret": "2f1e64c9be", "media": "photo", "latitude": "0", "id": "6270793094", "tags": ""}, {"datetaken": "2011-10-21 17:27:01", "license": "2", "title": "IMG_0480", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6119/6270794114_7eb38a02e2_o.jpg", "secret": "a390365eb3", "media": "photo", "latitude": "0", "id": "6270794114", "tags": ""}, {"datetaken": "2011-10-21 17:38:44", "license": "2", "title": "IMG_0485", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6116/6270794628_1d2f39ef2f_o.jpg", "secret": "fbc6c6c76d", "media": "photo", "latitude": "0", "id": "6270794628", "tags": ""}, {"datetaken": "2011-10-21 17:40:55", "license": "2", "title": "IMG_0486", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6223/6270795312_31d35a56dd_o.jpg", "secret": "3c991f9f89", "media": "photo", "latitude": "0", "id": "6270795312", "tags": ""}, {"datetaken": "2011-10-21 17:42:30", "license": "2", "title": "IMG_0488", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6047/6270795882_6d3a46b2c4_o.jpg", "secret": "43b8752ea5", "media": "photo", "latitude": "0", "id": "6270795882", "tags": ""}, {"datetaken": "2011-10-21 17:43:16", "license": "2", "title": "IMG_0489", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6047/6270266485_32a7fccaf0_o.jpg", "secret": "40de600cb7", "media": "photo", "latitude": "0", "id": "6270266485", "tags": ""}, {"datetaken": "2011-10-21 17:44:14", "license": "2", "title": "IMG_0490", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6042/6270267149_6c6673fab1_o.jpg", "secret": "96098b8f7b", "media": "photo", "latitude": "0", "id": "6270267149", "tags": ""}, {"datetaken": "2011-10-21 17:49:54", "license": "2", "title": "IMG_0493", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6110/6270798172_c31300fe49_o.jpg", "secret": "c3325c926f", "media": "photo", "latitude": "0", "id": "6270798172", "tags": ""}, {"datetaken": "2011-10-21 17:50:59", "license": "2", "title": "IMG_0495", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6225/6270798902_cca60c8a02_o.jpg", "secret": "09deb2c9b4", "media": "photo", "latitude": "0", "id": "6270798902", "tags": ""}, {"datetaken": "2011-10-21 17:51:27", "license": "2", "title": "IMG_0496", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6103/6270799822_2c23aec6a3_o.jpg", "secret": "e134091d50", "media": "photo", "latitude": "0", "id": "6270799822", "tags": ""}, {"datetaken": "2011-10-21 17:53:23", "license": "2", "title": "IMG_0497", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6099/6270801250_4c7ef22eb2_o.jpg", "secret": "e694bfc0a3", "media": "photo", "latitude": "0", "id": "6270801250", "tags": ""}, {"datetaken": "2011-10-21 17:56:39", "license": "2", "title": "IMG_0501", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6227/6270802122_b0c36e4375_o.jpg", "secret": "6588c25239", "media": "photo", "latitude": "0", "id": "6270802122", "tags": ""}, {"datetaken": "2011-10-21 18:06:59", "license": "2", "title": "IMG_0504", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6223/6270802520_70a91997ee_o.jpg", "secret": "0d4b01c17c", "media": "photo", "latitude": "0", "id": "6270802520", "tags": ""}, {"datetaken": "2011-10-21 18:15:45", "license": "2", "title": "IMG_0506", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6238/6270803144_5c53de83c6_o.jpg", "secret": "cb4202a4e6", "media": "photo", "latitude": "0", "id": "6270803144", "tags": ""}, {"datetaken": "2011-10-21 18:16:39", "license": "2", "title": "IMG_0507", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6232/6270804204_b271b648e3_o.jpg", "secret": "6fa6defc17", "media": "photo", "latitude": "0", "id": "6270804204", "tags": ""}, {"datetaken": "2011-10-21 18:20:21", "license": "2", "title": "IMG_0508", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6053/6270274651_02307a61fe_o.jpg", "secret": "bf35a6ac3e", "media": "photo", "latitude": "0", "id": "6270274651", "tags": ""}, {"datetaken": "2011-10-21 18:23:15", "license": "2", "title": "IMG_0510", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6115/6270805574_79202563b2_o.jpg", "secret": "1f1e6dccdb", "media": "photo", "latitude": "0", "id": "6270805574", "tags": ""}, {"datetaken": "2011-10-21 18:25:24", "license": "2", "title": "IMG_0511", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6058/6270806502_d08fd1a73b_o.jpg", "secret": "086c06685b", "media": "photo", "latitude": "0", "id": "6270806502", "tags": ""}, {"datetaken": "2011-10-21 18:32:31", "license": "2", "title": "IMG_0514", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6238/6270807374_293eac45ee_o.jpg", "secret": "cb08dd9586", "media": "photo", "latitude": "0", "id": "6270807374", "tags": ""}, {"datetaken": "2011-10-21 18:59:06", "license": "2", "title": "IMG_0515", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6237/6270278179_ac3ff52a16_o.jpg", "secret": "627bab55c7", "media": "photo", "latitude": "0", "id": "6270278179", "tags": ""}, {"datetaken": "2011-10-21 20:53:37", "license": "2", "title": "IMG_0517", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6113/6270808710_997b4ecc09_o.jpg", "secret": "ecc55f4a89", "media": "photo", "latitude": "0", "id": "6270808710", "tags": ""}, {"datetaken": "2011-10-22 11:21:28", "license": "2", "title": "IMG_0519", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6222/6270279393_e9ac0edf63_o.jpg", "secret": "68875737e9", "media": "photo", "latitude": "0", "id": "6270279393", "tags": ""}, {"datetaken": "2011-10-22 11:47:00", "license": "2", "title": "IMG_0524", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6099/6270280191_cbe46df4f1_o.jpg", "secret": "394f308efa", "media": "photo", "latitude": "0", "id": "6270280191", "tags": ""}, {"datetaken": "2011-10-22 11:47:07", "license": "2", "title": "IMG_0525", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6234/6270281129_51eb2c315a_o.jpg", "secret": "6dc1450c06", "media": "photo", "latitude": "0", "id": "6270281129", "tags": ""}, {"datetaken": "2011-10-22 11:50:55", "license": "2", "title": "IMG_0528", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6034/6270811678_ee30c52a91_o.jpg", "secret": "1b8e89d903", "media": "photo", "latitude": "0", "id": "6270811678", "tags": ""}, {"datetaken": "2011-10-22 11:52:18", "license": "2", "title": "IMG_0529", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6120/6270282667_bebb533c6e_o.jpg", "secret": "63e9cdc1dc", "media": "photo", "latitude": "0", "id": "6270282667", "tags": ""}, {"datetaken": "2011-10-22 11:52:57", "license": "2", "title": "IMG_0530", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6215/6270283215_c372e46db7_o.jpg", "secret": "e8608a2972", "media": "photo", "latitude": "0", "id": "6270283215", "tags": ""}, {"datetaken": "2011-10-22 11:57:29", "license": "2", "title": "IMG_0532", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6112/6270283897_3bd1cd2251_o.jpg", "secret": "c78828d7c7", "media": "photo", "latitude": "0", "id": "6270283897", "tags": ""}, {"datetaken": "2011-10-22 12:07:40", "license": "2", "title": "IMG_0533", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6240/6270284641_6bfc09f6b1_o.jpg", "secret": "0226a064b8", "media": "photo", "latitude": "0", "id": "6270284641", "tags": ""}, {"datetaken": "2011-10-22 12:10:09", "license": "2", "title": "IMG_0535", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6095/6270285409_9d45c9c2ac_o.jpg", "secret": "590dac01d5", "media": "photo", "latitude": "0", "id": "6270285409", "tags": ""}, {"datetaken": "2011-10-22 12:18:30", "license": "2", "title": "IMG_0536", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6102/6270815986_13a7eb22eb_o.jpg", "secret": "feb0c170d9", "media": "photo", "latitude": "0", "id": "6270815986", "tags": ""}, {"datetaken": "2011-10-22 13:46:58", "license": "2", "title": "IMG_0537", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6232/6270816496_610fe8c25d_o.jpg", "secret": "c27f80a185", "media": "photo", "latitude": "0", "id": "6270816496", "tags": ""}, {"datetaken": "2011-10-22 16:25:45", "license": "2", "title": "IMG_0538", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6031/6270287671_9f1e7cfbf3_o.jpg", "secret": "6f5afc2af8", "media": "photo", "latitude": "0", "id": "6270287671", "tags": ""}, {"datetaken": "2011-10-22 16:37:49", "license": "2", "title": "Purdue Aulumni Band Homecoming 2011", "text": "", "album_id": "72157627829815505", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6238/6270288311_f421683d78_o.jpg", "secret": "f3a69c340a", "media": "photo", "latitude": "0", "id": "6270288311", "tags": ""}, {"datetaken": "2010-09-24 22:02:41", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/5021736899_004e0f4126_o.jpg", "secret": "a9018518bf", "media": "photo", "latitude": "0", "id": "5021736899", "tags": ""}, {"datetaken": "2010-09-24 22:03:09", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4124/5021737613_c5e0a7d58d_o.jpg", "secret": "59ff9d9724", "media": "photo", "latitude": "0", "id": "5021737613", "tags": ""}, {"datetaken": "2010-09-24 22:03:43", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4088/5022344914_28dbea380f_o.jpg", "secret": "a800886e34", "media": "photo", "latitude": "0", "id": "5022344914", "tags": ""}, {"datetaken": "2010-09-24 22:04:30", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/5022346142_b1b2a34251_o.jpg", "secret": "6b3d746ab7", "media": "photo", "latitude": "0", "id": "5022346142", "tags": ""}, {"datetaken": "2010-09-24 22:04:57", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/5022346764_e324e981be_o.jpg", "secret": "822e6c0892", "media": "photo", "latitude": "0", "id": "5022346764", "tags": ""}, {"datetaken": "2010-09-24 22:05:29", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4106/5022347618_2f7aa6bfbc_o.jpg", "secret": "eb40fffc4e", "media": "photo", "latitude": "0", "id": "5022347618", "tags": ""}, {"datetaken": "2010-09-24 22:06:06", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/5021742031_81eeb7b6ec_o.jpg", "secret": "2a717c885b", "media": "photo", "latitude": "0", "id": "5021742031", "tags": ""}, {"datetaken": "2010-09-24 22:06:43", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4091/5021742981_c353d725e7_o.jpg", "secret": "20b32e0dd9", "media": "photo", "latitude": "0", "id": "5021742981", "tags": ""}, {"datetaken": "2010-09-24 22:07:23", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/5021744021_2ec07516bb_o.jpg", "secret": "7f9b087e89", "media": "photo", "latitude": "0", "id": "5021744021", "tags": ""}, {"datetaken": "2010-09-24 22:08:01", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/5021744907_cb77372630_o.jpg", "secret": "a28bda9ce4", "media": "photo", "latitude": "0", "id": "5021744907", "tags": ""}, {"datetaken": "2010-09-24 22:08:46", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/5022352774_e0d02971e2_o.jpg", "secret": "f606be6e6a", "media": "photo", "latitude": "0", "id": "5022352774", "tags": ""}, {"datetaken": "2010-09-24 22:09:17", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4126/5021746689_bfcebbd9a1_o.jpg", "secret": "0aa8125d50", "media": "photo", "latitude": "0", "id": "5021746689", "tags": ""}, {"datetaken": "2010-09-24 22:09:50", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/5022354340_34384be7c3_o.jpg", "secret": "fc126499a6", "media": "photo", "latitude": "0", "id": "5022354340", "tags": ""}, {"datetaken": "2010-09-24 22:10:36", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/5022355466_e098878b38_o.jpg", "secret": "597135bb04", "media": "photo", "latitude": "0", "id": "5022355466", "tags": ""}, {"datetaken": "2010-09-24 22:11:21", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/5022356472_a171dd0a3f_o.jpg", "secret": "86bb246663", "media": "photo", "latitude": "0", "id": "5022356472", "tags": ""}, {"datetaken": "2010-09-24 22:12:09", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4126/5021750713_a0050aa5c4_o.jpg", "secret": "882ae5d166", "media": "photo", "latitude": "0", "id": "5021750713", "tags": ""}, {"datetaken": "2010-09-24 22:12:32", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4154/5022358120_208b0d3b3f_o.jpg", "secret": "9375f58f34", "media": "photo", "latitude": "0", "id": "5022358120", "tags": ""}, {"datetaken": "2010-09-24 22:13:00", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/5022358830_2f3585fcbf_o.jpg", "secret": "5c35ab7b32", "media": "photo", "latitude": "0", "id": "5022358830", "tags": ""}, {"datetaken": "2010-09-24 22:13:27", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/5021752677_541b58f1f2_o.jpg", "secret": "51f28e36e4", "media": "photo", "latitude": "0", "id": "5021752677", "tags": ""}, {"datetaken": "2010-09-24 22:14:02", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/5022360420_3e3db115d0_o.jpg", "secret": "2f57df9107", "media": "photo", "latitude": "0", "id": "5022360420", "tags": ""}, {"datetaken": "2010-09-24 22:14:35", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4126/5022361254_0abcab6fb3_o.jpg", "secret": "275a4bc311", "media": "photo", "latitude": "0", "id": "5022361254", "tags": ""}, {"datetaken": "2010-09-24 22:15:01", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/5021755029_6bf3265baa_o.jpg", "secret": "a12bfa2e07", "media": "photo", "latitude": "0", "id": "5021755029", "tags": ""}, {"datetaken": "2010-09-24 22:15:36", "license": "4", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "text": "", "album_id": "72157624903751507", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/5021756011_24d8e4d71e_o.jpg", "secret": "f599300ed6", "media": "photo", "latitude": "0", "id": "5021756011", "tags": ""}, {"datetaken": "2011-09-24 16:46:37", "license": "5", "title": "Homecoming Dance 001", "text": "", "album_id": "72157627621433723", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6165/6180004872_ff280d5ef5_o.jpg", "secret": "6c5c01a6cb", "media": "photo", "latitude": "0", "id": "6180004872", "tags": "school apple minnesota dance high homecoming valley eastview 2011"}, {"datetaken": "2011-09-24 16:57:47", "license": "5", "title": "Homecoming Dance 009", "text": "", "album_id": "72157627621433723", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6156/6180005048_16951f4727_o.jpg", "secret": "6cf757a4aa", "media": "photo", "latitude": "0", "id": "6180005048", "tags": "school apple minnesota dance high homecoming valley eastview 2011"}, {"datetaken": "2011-09-24 16:58:30", "license": "5", "title": "Homecoming Dance 012", "text": "", "album_id": "72157627621433723", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6177/6179478653_c71bcdc2c7_o.jpg", "secret": "00c6414135", "media": "photo", "latitude": "0", "id": "6179478653", "tags": "school apple minnesota dance high homecoming valley eastview 2011"}, {"datetaken": "2011-09-24 16:59:12", "license": "5", "title": "Homecoming Dance 013", "text": "", "album_id": "72157627621433723", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6170/6179478877_b2dde4b1b0_o.jpg", "secret": "4504f21ce1", "media": "photo", "latitude": "0", "id": "6179478877", "tags": "school apple minnesota dance high homecoming valley eastview 2011"}, {"datetaken": "2011-09-24 17:00:00", "license": "5", "title": "Homecoming Dance 014", "text": "", "album_id": "72157627621433723", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6154/6179479049_af429ce08f_o.jpg", "secret": "6722d7518f", "media": "photo", "latitude": "0", "id": "6179479049", "tags": "school apple minnesota dance high homecoming valley eastview 2011"}, {"datetaken": "2011-09-24 17:01:15", "license": "5", "title": "Homecoming Dance 020", "text": "", "album_id": "72157627621433723", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6168/6179479245_c24cdf3621_o.jpg", "secret": "3aa5e23fb0", "media": "photo", "latitude": "0", "id": "6179479245", "tags": "school apple minnesota dance high homecoming valley eastview 2011"}, {"datetaken": "2011-09-24 17:01:52", "license": "5", "title": "Homecoming Dance 023", "text": "", "album_id": "72157627621433723", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6161/6179479425_3cb856de6e_o.jpg", "secret": "83bde1dcda", "media": "photo", "latitude": "0", "id": "6179479425", "tags": "school apple minnesota dance high homecoming valley eastview 2011"}, {"datetaken": "2011-09-24 17:02:23", "license": "5", "title": "Homecoming Dance 026", "text": "", "album_id": "72157627621433723", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6169/6180006154_b31bb4b63b_o.jpg", "secret": "6680f5ea54", "media": "photo", "latitude": "0", "id": "6180006154", "tags": "school apple minnesota dance high homecoming valley eastview 2011"}, {"datetaken": "2011-09-24 17:03:30", "license": "5", "title": "Homecoming Dance 028", "text": "", "album_id": "72157627621433723", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6162/6179543687_9d0a849a46_o.jpg", "secret": "5dec2657e1", "media": "photo", "latitude": "0", "id": "6179543687", "tags": ""}, {"datetaken": "2011-09-24 17:03:53", "license": "5", "title": "Homecoming Dance 031", "text": "", "album_id": "72157627621433723", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6170/6179588675_2ffdd4d618_o.jpg", "secret": "09d7924573", "media": "photo", "latitude": "0", "id": "6179588675", "tags": ""}, {"datetaken": "2011-09-24 17:04:34", "license": "5", "title": "Homecoming Dance 034", "text": "", "album_id": "72157627621433723", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6156/6179543845_6f2a26b460_o.jpg", "secret": "f7125c4ea3", "media": "photo", "latitude": "0", "id": "6179543845", "tags": ""}, {"datetaken": "2011-09-24 17:05:46", "license": "5", "title": "Homecoming Dance 037", "text": "", "album_id": "72157627621433723", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6153/6180115490_85bab008bc_o.jpg", "secret": "2166f8a1c0", "media": "photo", "latitude": "0", "id": "6180115490", "tags": ""}, {"datetaken": "2011-09-24 17:08:19", "license": "5", "title": "Homecoming Dance 045", "text": "", "album_id": "72157627621433723", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6169/6183975622_0b2f66e502_o.jpg", "secret": "39c5851bbd", "media": "photo", "latitude": "0", "id": "6183975622", "tags": ""}, {"datetaken": "2011-09-24 17:19:08", "license": "5", "title": "Homecoming Dance 052", "text": "", "album_id": "72157627621433723", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6151/6180117838_78b24fc974_o.jpg", "secret": "d8c812e608", "media": "photo", "latitude": "0", "id": "6180117838", "tags": ""}, {"datetaken": "2011-09-24 17:47:19", "license": "5", "title": "Homecoming Dance 078", "text": "", "album_id": "72157627621433723", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6167/6180115702_fcc4bc4807_o.jpg", "secret": "8f286aa444", "media": "photo", "latitude": "0", "id": "6180115702", "tags": ""}, {"datetaken": "2010-12-24 12:14:21", "license": "4", "title": "BoB homecoming_31", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5256/5389359636_c5399d8995_o.jpg", "secret": "7c11762094", "media": "photo", "latitude": "0", "id": "5389359636", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:14:21", "license": "4", "title": "BoB homecoming_31_web", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5136/5389359796_62f9a43ed7_o.jpg", "secret": "3e32c51ccb", "media": "photo", "latitude": "0", "id": "5389359796", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:14:42", "license": "4", "title": "BoB homecoming_23", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5059/5389341422_a6d058e042_o.jpg", "secret": "cd56686b45", "media": "photo", "latitude": "0", "id": "5389341422", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:30:59", "license": "4", "title": "BoB homecoming_30", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5173/5388751261_e53de18730_o.jpg", "secret": "8e58c97f56", "media": "photo", "latitude": "0", "id": "5388751261", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:30:59", "license": "4", "title": "BoB homecoming_30_web", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5092/5388753027_849cc99c56_o.jpg", "secret": "0f428bf7ef", "media": "photo", "latitude": "0", "id": "5388753027", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:33:18", "license": "4", "title": "BoB homecoming_29", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5295/5389356370_28dd3343d4_o.jpg", "secret": "8f6efcabb9", "media": "photo", "latitude": "0", "id": "5389356370", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:33:18", "license": "4", "title": "BoB homecoming_29_web", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5220/5388753309_d29046e26c_o.jpg", "secret": "560ebbd243", "media": "photo", "latitude": "0", "id": "5388753309", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:33:48", "license": "4", "title": "BoB homecoming_28", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5016/5389353978_1610fa75a1_o.jpg", "secret": "1d69dca5f6", "media": "photo", "latitude": "0", "id": "5389353978", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:35:15", "license": "4", "title": "BoB homecoming_27", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5255/5388744591_0c7c0060dd_o.jpg", "secret": "8293ab8385", "media": "photo", "latitude": "0", "id": "5388744591", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:36:53", "license": "4", "title": "BoB homecoming_26", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5260/5388741899_db30955d76_o.jpg", "secret": "b4e16925b9", "media": "photo", "latitude": "0", "id": "5388741899", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:37:19", "license": "4", "title": "BoB homecoming_25", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5220/5389345968_bc90cfc5dd_o.jpg", "secret": "df500d4049", "media": "photo", "latitude": "0", "id": "5389345968", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:38:19", "license": "4", "title": "BoB homecoming_24", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5389344244_854237f729_o.jpg", "secret": "4e3e806db6", "media": "photo", "latitude": "0", "id": "5389344244", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:39:03", "license": "4", "title": "BoB homecoming_22", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5259/5388733565_6e95417b1e_o.jpg", "secret": "ae37cf695c", "media": "photo", "latitude": "0", "id": "5388733565", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:39:03", "license": "4", "title": "BoB homecoming_22_web", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5295/5388753369_f1b6462bfd_o.jpg", "secret": "de6b7bb235", "media": "photo", "latitude": "0", "id": "5388753369", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:39:11", "license": "4", "title": "BoB homecoming_21", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5132/5389338092_0f13699c19_o.jpg", "secret": "7494fcf23c", "media": "photo", "latitude": "0", "id": "5389338092", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:39:13", "license": "4", "title": "BoB homecoming_20", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5131/5389335494_ffed1ba2f8_o.jpg", "secret": "1f9fa368c3", "media": "photo", "latitude": "0", "id": "5389335494", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:39:13", "license": "4", "title": "BoB homecoming_20_web", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5214/5388753427_fbc8a4eb0b_o.jpg", "secret": "6de50ee5c9", "media": "photo", "latitude": "0", "id": "5388753427", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:42:22", "license": "4", "title": "BoB homecoming_19", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5055/5389333624_d186b325c5_o.jpg", "secret": "9445832852", "media": "photo", "latitude": "0", "id": "5389333624", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:42:49", "license": "4", "title": "BoB homecoming_18", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5291/5388725467_371cabc25e_o.jpg", "secret": "4710c9b634", "media": "photo", "latitude": "0", "id": "5388725467", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:43:52", "license": "4", "title": "BoB homecoming_17", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5140/5389330348_9cfb6a23d7_o.jpg", "secret": "4352d80092", "media": "photo", "latitude": "0", "id": "5389330348", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:43:52", "license": "4", "title": "BoB homecoming_17_web", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5211/5388753513_f0ea534300_o.jpg", "secret": "ef62d55d02", "media": "photo", "latitude": "0", "id": "5388753513", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:50:38", "license": "4", "title": "BoB homecoming_16", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5255/5388721805_60d79dfa5c_o.jpg", "secret": "380d735598", "media": "photo", "latitude": "0", "id": "5388721805", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:52:08", "license": "4", "title": "BoB homecoming_14", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5251/5388718101_33bee06ba4_o.jpg", "secret": "20fc8f8a52", "media": "photo", "latitude": "0", "id": "5388718101", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:52:08", "license": "4", "title": "BoB homecoming_15", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5217/5388720009_e059f541a1_o.jpg", "secret": "96b99f66a1", "media": "photo", "latitude": "0", "id": "5388720009", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:52:08", "license": "4", "title": "BoB homecoming_14_web", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5091/5389360274_8260440fe5_o.jpg", "secret": "0917449f70", "media": "photo", "latitude": "0", "id": "5389360274", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:53:16", "license": "4", "title": "BoB homecoming_13", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5296/5388717835_4d37e98b7a_o.jpg", "secret": "88a5e5b32c", "media": "photo", "latitude": "0", "id": "5388717835", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:53:37", "license": "4", "title": "BoB homecoming_12", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5251/5388716313_6a1bf474d9_o.jpg", "secret": "cd7916131e", "media": "photo", "latitude": "0", "id": "5388716313", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:57:31", "license": "4", "title": "BoB homecoming_11", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5013/5389321982_108b339afa_o.jpg", "secret": "519657ef23", "media": "photo", "latitude": "0", "id": "5389321982", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 12:58:06", "license": "4", "title": "BoB homecoming_10", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5020/5388713049_a5587e4d64_o.jpg", "secret": "46e17f07fb", "media": "photo", "latitude": "0", "id": "5388713049", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 13:01:57", "license": "4", "title": "BoB homecoming_9", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5211/5388712149_ab50702713_o.jpg", "secret": "79c7f9a3a2", "media": "photo", "latitude": "0", "id": "5388712149", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 13:01:57", "license": "4", "title": "BoB homecoming_9_web", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5056/5388753223_d0f08dfe8d_o.jpg", "secret": "92f95b3761", "media": "photo", "latitude": "0", "id": "5388753223", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 13:02:03", "license": "4", "title": "BoB homecoming_8", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5171/5389316984_10c47727d4_o.jpg", "secret": "31b4582320", "media": "photo", "latitude": "0", "id": "5389316984", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 13:02:03", "license": "4", "title": "BoB homecoming_8_web", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5292/5388753157_2f1af19ee2_o.jpg", "secret": "7d479f412b", "media": "photo", "latitude": "0", "id": "5388753157", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 13:02:55", "license": "4", "title": "BoB homecoming_7", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5098/5389315248_c0c2ccac2c_o.jpg", "secret": "8fae7bcdae", "media": "photo", "latitude": "0", "id": "5389315248", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 13:03:39", "license": "4", "title": "BoB homecoming_6", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5258/5388706397_2a32de6326_o.jpg", "secret": "e6ac18def3", "media": "photo", "latitude": "0", "id": "5388706397", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 13:04:51", "license": "4", "title": "BoB homecoming_5", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5296/5389312534_385018e150_o.jpg", "secret": "8a0529cb69", "media": "photo", "latitude": "0", "id": "5389312534", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 13:08:50", "license": "4", "title": "BoB homecoming_4", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5134/5388704005_1d9c3a3267_o.jpg", "secret": "0df27ed21a", "media": "photo", "latitude": "0", "id": "5388704005", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 13:08:51", "license": "4", "title": "BoB homecoming_1", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5098/5389299658_d42f6a93bd_o.jpg", "secret": "90d3d303ec", "media": "photo", "latitude": "0", "id": "5389299658", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 13:08:51", "license": "4", "title": "BoB homecoming_3", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5176/5389307626_a1a781378e_o.jpg", "secret": "0e64828a8e", "media": "photo", "latitude": "0", "id": "5389307626", "tags": "bob smithsoldebar"}, {"datetaken": "2010-12-24 13:09:59", "license": "4", "title": "BoB homecoming_2", "text": "", "album_id": "72157625907820708", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5300/5389305344_0c4dfcca28_o.jpg", "secret": "997c30f205", "media": "photo", "latitude": "0", "id": "5389305344", "tags": "bob smithsoldebar"}, {"datetaken": "2011-09-23 20:32:12", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9783", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6157/6187788024_efb64e0892_o.jpg", "secret": "c8c754f1ae", "media": "photo", "latitude": "0", "id": "6187788024", "tags": ""}, {"datetaken": "2011-09-23 20:32:22", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9787", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6160/6187788890_bb9a270a7f_o.jpg", "secret": "f0fbfaf733", "media": "photo", "latitude": "0", "id": "6187788890", "tags": ""}, {"datetaken": "2011-09-23 20:32:33", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9789", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6157/6187789492_afd67e9d6a_o.jpg", "secret": "63aa1f505e", "media": "photo", "latitude": "0", "id": "6187789492", "tags": ""}, {"datetaken": "2011-09-23 20:32:42", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9794", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6164/6187268329_aa57ed6c6e_o.jpg", "secret": "f12e9ba61a", "media": "photo", "latitude": "0", "id": "6187268329", "tags": ""}, {"datetaken": "2011-09-23 20:32:53", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9796", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6166/6187269017_bd239cfaec_o.jpg", "secret": "174158799f", "media": "photo", "latitude": "0", "id": "6187269017", "tags": ""}, {"datetaken": "2011-09-23 20:33:01", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9802", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6162/6187269537_aac521250b_o.jpg", "secret": "96e8cd56b4", "media": "photo", "latitude": "0", "id": "6187269537", "tags": ""}, {"datetaken": "2011-09-23 20:33:13", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9805", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6168/6187792076_4b30ec215c_o.jpg", "secret": "d50a949821", "media": "photo", "latitude": "0", "id": "6187792076", "tags": ""}, {"datetaken": "2011-09-23 20:33:32", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9812", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6179/6187271017_0590880c48_o.jpg", "secret": "023173e42a", "media": "photo", "latitude": "0", "id": "6187271017", "tags": ""}, {"datetaken": "2011-09-23 20:33:39", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9816", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6161/6187271663_ffd266e808_o.jpg", "secret": "8d658b2dc2", "media": "photo", "latitude": "0", "id": "6187271663", "tags": ""}, {"datetaken": "2011-09-23 20:33:48", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9819", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6172/6187793920_a18d43d9bd_o.jpg", "secret": "63df2aec89", "media": "photo", "latitude": "0", "id": "6187793920", "tags": ""}, {"datetaken": "2011-09-23 20:33:55", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9822", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6153/6187794700_636fdc0857_o.jpg", "secret": "9546f7222f", "media": "photo", "latitude": "0", "id": "6187794700", "tags": ""}, {"datetaken": "2011-09-23 20:33:57", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9824", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6162/6187795440_7344a8f25c_o.jpg", "secret": "c9d1e13ef9", "media": "photo", "latitude": "0", "id": "6187795440", "tags": ""}, {"datetaken": "2011-09-23 20:34:09", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9828", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6165/6187274731_2a17ea0a9b_o.jpg", "secret": "89767e3679", "media": "photo", "latitude": "0", "id": "6187274731", "tags": ""}, {"datetaken": "2011-09-23 20:34:13", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9832", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6164/6187796858_bff1893ac0_o.jpg", "secret": "46be9a12ea", "media": "photo", "latitude": "0", "id": "6187796858", "tags": ""}, {"datetaken": "2011-09-23 20:34:17", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9835", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6178/6187797722_8c5247b29e_o.jpg", "secret": "c9df66c71e", "media": "photo", "latitude": "0", "id": "6187797722", "tags": ""}, {"datetaken": "2011-09-23 20:34:33", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9842", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6170/6187276681_de9d70a8d9_o.jpg", "secret": "105985bb7e", "media": "photo", "latitude": "0", "id": "6187276681", "tags": ""}, {"datetaken": "2011-09-23 20:34:36", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9844", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6165/6187277257_5957c6a8b1_o.jpg", "secret": "42b1c92dd4", "media": "photo", "latitude": "0", "id": "6187277257", "tags": ""}, {"datetaken": "2011-09-23 20:34:47", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9846", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6179/6187278075_2f77a5431f_o.jpg", "secret": "becd86a911", "media": "photo", "latitude": "0", "id": "6187278075", "tags": ""}, {"datetaken": "2011-09-23 20:34:54", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9849", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6177/6187278815_280e695e0a_o.jpg", "secret": "504e0e6f2e", "media": "photo", "latitude": "0", "id": "6187278815", "tags": ""}, {"datetaken": "2011-09-23 20:35:11", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9855", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6152/6187279301_bf15e13418_o.jpg", "secret": "a31671c77f", "media": "photo", "latitude": "0", "id": "6187279301", "tags": ""}, {"datetaken": "2011-09-23 20:35:16", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9859", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6176/6187280003_88ca90c62a_o.jpg", "secret": "8da7308840", "media": "photo", "latitude": "0", "id": "6187280003", "tags": ""}, {"datetaken": "2011-09-23 20:35:25", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9863", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6171/6187802168_88af98c33b_o.jpg", "secret": "42b08a8c4d", "media": "photo", "latitude": "0", "id": "6187802168", "tags": ""}, {"datetaken": "2011-09-23 20:35:34", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9870", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6151/6187802764_4973347a76_o.jpg", "secret": "5eca2074fc", "media": "photo", "latitude": "0", "id": "6187802764", "tags": ""}, {"datetaken": "2011-09-23 20:35:48", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9873", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6172/6187803538_5c51a295f4_o.jpg", "secret": "841ae599fc", "media": "photo", "latitude": "0", "id": "6187803538", "tags": ""}, {"datetaken": "2011-09-23 20:35:56", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9879", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6180/6187282689_de55a0803f_o.jpg", "secret": "2542dcb8fa", "media": "photo", "latitude": "0", "id": "6187282689", "tags": ""}, {"datetaken": "2011-09-23 20:36:07", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9883", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6157/6187804834_b162448215_o.jpg", "secret": "86b1e1bfdd", "media": "photo", "latitude": "0", "id": "6187804834", "tags": ""}, {"datetaken": "2011-09-23 20:36:09", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9886", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6154/6187283699_a7a22fecb2_o.jpg", "secret": "d71d6fe0cd", "media": "photo", "latitude": "0", "id": "6187283699", "tags": ""}, {"datetaken": "2011-09-23 20:36:22", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9892", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6151/6187806018_e5e4f4fd1a_o.jpg", "secret": "94ffc7f26e", "media": "photo", "latitude": "0", "id": "6187806018", "tags": ""}, {"datetaken": "2011-09-23 20:36:33", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9900", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6173/6187806778_82fe0d6eb9_o.jpg", "secret": "c782965a81", "media": "photo", "latitude": "0", "id": "6187806778", "tags": ""}, {"datetaken": "2011-09-23 20:36:43", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9904", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6158/6187807348_b390ae97bb_o.jpg", "secret": "5e90a09630", "media": "photo", "latitude": "0", "id": "6187807348", "tags": ""}, {"datetaken": "2011-09-23 20:36:45", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9907", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6165/6187286249_cceb4b8c33_o.jpg", "secret": "0533ded333", "media": "photo", "latitude": "0", "id": "6187286249", "tags": ""}, {"datetaken": "2011-09-23 20:37:20", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9911", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6168/6187286897_6d8492b770_o.jpg", "secret": "8a66169700", "media": "photo", "latitude": "0", "id": "6187286897", "tags": ""}, {"datetaken": "2011-09-23 20:37:25", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9913", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6174/6187287571_583da06d26_o.jpg", "secret": "42882cc714", "media": "photo", "latitude": "0", "id": "6187287571", "tags": ""}, {"datetaken": "2011-09-23 20:37:27", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9916", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6157/6187288271_36ca0416f0_o.jpg", "secret": "5117d36fcd", "media": "photo", "latitude": "0", "id": "6187288271", "tags": ""}, {"datetaken": "2011-09-23 20:37:38", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9918", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6171/6187810396_3fcaae40f1_o.jpg", "secret": "e4d15656df", "media": "photo", "latitude": "0", "id": "6187810396", "tags": ""}, {"datetaken": "2011-09-23 20:37:40", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9921", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6165/6187289267_00f73dd67f_o.jpg", "secret": "878834385d", "media": "photo", "latitude": "0", "id": "6187289267", "tags": ""}, {"datetaken": "2011-09-23 20:37:52", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9929", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6162/6187289835_0fc587b224_o.jpg", "secret": "c9dcedc49b", "media": "photo", "latitude": "0", "id": "6187289835", "tags": ""}, {"datetaken": "2011-09-23 20:38:00", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9934", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6157/6187811930_826164e0bb_o.jpg", "secret": "c81a17b31d", "media": "photo", "latitude": "0", "id": "6187811930", "tags": ""}, {"datetaken": "2011-09-23 20:38:01", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9936", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6155/6187812454_46f9621432_o.jpg", "secret": "6fdc1d7c63", "media": "photo", "latitude": "0", "id": "6187812454", "tags": ""}, {"datetaken": "2011-09-23 20:38:16", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9941", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6174/6187812996_7717c846eb_o.jpg", "secret": "5f4bc0dd18", "media": "photo", "latitude": "0", "id": "6187812996", "tags": ""}, {"datetaken": "2011-09-23 20:38:21", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9944", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6164/6187813392_5a41dd4672_o.jpg", "secret": "b7dfea189c", "media": "photo", "latitude": "0", "id": "6187813392", "tags": ""}, {"datetaken": "2011-09-23 20:38:25", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9947", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6172/6187292673_c916925c80_o.jpg", "secret": "8ebb32bedb", "media": "photo", "latitude": "0", "id": "6187292673", "tags": ""}, {"datetaken": "2011-09-23 20:38:32", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9951", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6174/6187814900_2d61b686c3_o.jpg", "secret": "729c82d18d", "media": "photo", "latitude": "0", "id": "6187814900", "tags": ""}, {"datetaken": "2011-09-23 20:38:46", "license": "2", "title": "McNeil Homecoming 23Sept2011 b_4354", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6166/6187293887_4aa1cb8069_o.jpg", "secret": "50c5228bd7", "media": "photo", "latitude": "0", "id": "6187293887", "tags": ""}, {"datetaken": "2011-09-23 20:38:53", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9957", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6177/6187294697_f44e9bd918_o.jpg", "secret": "bf400f489a", "media": "photo", "latitude": "0", "id": "6187294697", "tags": ""}, {"datetaken": "2011-09-23 20:39:26", "license": "2", "title": "McNeil Homecoming 23Sept2011 a_9960", "text": "", "album_id": "72157627638300109", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6162/6187295451_91f88a59eb_o.jpg", "secret": "dfcd63f9b5", "media": "photo", "latitude": "0", "id": "6187295451", "tags": ""}, {"datetaken": "2010-07-27 15:41:36", "license": "2", "title": "0710presbyterymeeting 001", "text": "", "album_id": "72157624477904553", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4154/4837644779_85de724799_o.jpg", "secret": "ab0149e39d", "media": "photo", "latitude": "0", "id": "4837644779", "tags": "presbyterian presbyterymeetings"}, {"datetaken": "2010-07-27 15:44:15", "license": "2", "title": "0710presbyterymeeting 007", "text": "", "album_id": "72157624477904553", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4113/4837647601_35721ea603_o.jpg", "secret": "82232e98b3", "media": "photo", "latitude": "0", "id": "4837647601", "tags": "presbyterian presbyterymeetings"}, {"datetaken": "2010-07-27 15:50:35", "license": "2", "title": "0710presbyterymeeting 010", "text": "", "album_id": "72157624477904553", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4146/4838260476_ec3b9b519b_o.jpg", "secret": "3b9bd33fdf", "media": "photo", "latitude": "0", "id": "4838260476", "tags": "presbyterian presbyterymeetings"}, {"datetaken": "2010-07-27 15:51:45", "license": "2", "title": "0710presbyterymeeting 012", "text": "", "album_id": "72157624477904553", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/4838261312_245b9c8ae2_o.jpg", "secret": "6a5f3ea3d4", "media": "photo", "latitude": "0", "id": "4838261312", "tags": "presbyterian presbyterymeetings"}, {"datetaken": "2010-07-27 16:02:57", "license": "2", "title": "0710presbyterymeeting 019", "text": "", "album_id": "72157624477904553", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4149/4838262640_c15dfcae2b_o.jpg", "secret": "69945f7d0d", "media": "photo", "latitude": "0", "id": "4838262640", "tags": "presbyterian presbyterymeetings"}, {"datetaken": "2010-07-27 16:04:30", "license": "2", "title": "0710presbyterymeeting 025", "text": "", "album_id": "72157624477904553", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4087/4837652239_83bae87568_o.jpg", "secret": "c20524dd32", "media": "photo", "latitude": "0", "id": "4837652239", "tags": "presbyterian presbyterymeetings"}, {"datetaken": "2010-07-27 16:05:25", "license": "2", "title": "0710presbyterymeeting 028", "text": "", "album_id": "72157624477904553", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4837653271_a33b0c5469_o.jpg", "secret": "510b17f12b", "media": "photo", "latitude": "0", "id": "4837653271", "tags": "presbyterian presbyterymeetings"}, {"datetaken": "2010-07-27 16:08:06", "license": "2", "title": "0710presbyterymeeting 036", "text": "", "album_id": "72157624477904553", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4085/4837654063_f9b89a8c24_o.jpg", "secret": "0e5b2939c0", "media": "photo", "latitude": "0", "id": "4837654063", "tags": "presbyterian presbyterymeetings"}, {"datetaken": "2010-07-27 16:08:28", "license": "2", "title": "0710presbyterymeeting 037", "text": "", "album_id": "72157624477904553", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4113/4838266910_9d4a31d1b9_o.jpg", "secret": "7dbb81aa35", "media": "photo", "latitude": "0", "id": "4838266910", "tags": "presbyterian presbyterymeetings"}, {"datetaken": "2010-07-27 16:14:57", "license": "2", "title": "0710presbyterymeeting 045", "text": "", "album_id": "72157624477904553", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/4837656261_2b05a61de3_o.jpg", "secret": "e038429aa4", "media": "photo", "latitude": "0", "id": "4837656261", "tags": "presbyterian presbyterymeetings"}, {"datetaken": "2010-07-27 16:19:15", "license": "0", "title": "0710presbyterymeeting 049", "text": "", "album_id": "72157624477904553", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/4838269764_fa2ac47c57_o.jpg", "secret": "c3b97469fe", "media": "photo", "latitude": "0", "id": "4838269764", "tags": ""}, {"datetaken": "2010-07-27 16:20:22", "license": "0", "title": "0710presbyterymeeting 051", "text": "", "album_id": "72157624477904553", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/4838270250_03b14d709d_o.jpg", "secret": "e1c1ca10ba", "media": "photo", "latitude": "0", "id": "4838270250", "tags": "presbyterian presbyterymeetings"}, {"datetaken": "2010-07-27 16:21:09", "license": "2", "title": "0710presbyterymeeting 053", "text": "", "album_id": "72157624477904553", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/4838272008_78c32e2aa5_o.jpg", "secret": "b04e278bac", "media": "photo", "latitude": "0", "id": "4838272008", "tags": "presbyterian presbyterymeetings"}, {"datetaken": "2010-07-27 16:25:44", "license": "0", "title": "0710presbyterymeeting 058", "text": "", "album_id": "72157624477904553", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4154/4838273542_e3cb3d508c_o.jpg", "secret": "9d64521be6", "media": "photo", "latitude": "0", "id": "4838273542", "tags": "presbyterian presbyterymeetings"}, {"datetaken": "2010-07-27 16:26:05", "license": "2", "title": "0710presbyterymeeting 060", "text": "", "album_id": "72157624477904553", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4092/4838274128_31f2d1f02c_o.jpg", "secret": "1b6540365a", "media": "photo", "latitude": "0", "id": "4838274128", "tags": "presbyterian presbyterymeetings"}, {"datetaken": "2011-03-28 13:08:33", "license": "2", "title": "Ticket - Regional Final", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5098/5565618266_185e721473_o.jpg", "secret": "f696986a87", "media": "photo", "latitude": "0", "id": "5565618266", "tags": ""}, {"datetaken": "2011-03-28 15:53:06", "license": "2", "title": "Nneka, Lindy, and Joslyn at the Pregame Rally", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5103/5573133771_57a0ee0383_o.jpg", "secret": "ce0e683404", "media": "photo", "latitude": "0", "id": "5573133771", "tags": "lindylarocque nnekaogwumike joslyntinkle"}, {"datetaken": "2011-03-28 16:02:17", "license": "2", "title": "Toni, Jeanette, Lindy, and Joslyn Board the Team Bus", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5108/5573726830_d09a74dca9_o.jpg", "secret": "c13ffa85ee", "media": "photo", "latitude": "0", "id": "5573726830", "tags": "lindylarocque jeanettepohlen joslyntinkle tonikokenis"}, {"datetaken": "2011-03-28 16:02:23", "license": "2", "title": "Kayla, Toni, and Jeanette", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5143/5573141447_2987560060_o.jpg", "secret": "cdae007177", "media": "photo", "latitude": "0", "id": "5573141447", "tags": "jeanettepohlen kaylapedersen tonikokenis"}, {"datetaken": "2011-03-28 17:32:19", "license": "2", "title": "Assembling the Troops", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5296/5573733896_ec24f817d5_o.jpg", "secret": "9f721c3d38", "media": "photo", "latitude": "0", "id": "5573733896", "tags": ""}, {"datetaken": "2011-03-28 18:04:27", "license": "2", "title": "No. 11 Gonzaga Versus No. 1 Stanford", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5133/5573739212_a2c7a44e16_o.jpg", "secret": "aa9fcb9d95", "media": "photo", "latitude": "0", "id": "5573739212", "tags": ""}, {"datetaken": "2011-03-28 18:04:55", "license": "2", "title": "Kelly Bowen and Chiney Ogwumike", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5261/5573152499_5d16d93dee_o.jpg", "secret": "36a2935168", "media": "photo", "latitude": "0", "id": "5573152499", "tags": "kellybowen chineyogwumike"}, {"datetaken": "2011-03-28 18:05:15", "license": "2", "title": "Kayla Standish and Kayla Pedersen", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5258/5573154079_e5220b1e4d_o.jpg", "secret": "f953f02c08", "media": "photo", "latitude": "0", "id": "5573154079", "tags": "kaylapedersen kaylastandish"}, {"datetaken": "2011-03-28 18:05:34", "license": "2", "title": "Janelle Bekkering and Nneka Ogwumike", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5184/5573744008_570d7bfac7_o.jpg", "secret": "bbcf2cb431", "media": "photo", "latitude": "0", "id": "5573744008", "tags": "nnekaogwumike janellebekkering"}, {"datetaken": "2011-03-28 18:05:54", "license": "2", "title": "Katelan Redmon and Lindy La Rocque", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5024/5573745496_dcb37de014_o.jpg", "secret": "baf872952d", "media": "photo", "latitude": "0", "id": "5573745496", "tags": "katelanredmon lindylarocque"}, {"datetaken": "2011-03-28 18:06:10", "license": "2", "title": "Courtney Vandersloot and Jeanette Pohlen", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5180/5573746986_91a7e22c69_o.jpg", "secret": "d53a7ccd3c", "media": "photo", "latitude": "0", "id": "5573746986", "tags": "courtneyvandersloot jeanettepohlen"}, {"datetaken": "2011-03-28 18:07:03", "license": "2", "title": "A Full House at Spokane Arena", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5061/5573748844_4245d788c3_o.jpg", "secret": "ff57e04628", "media": "photo", "latitude": "0", "id": "5573748844", "tags": "spokanearena"}, {"datetaken": "2011-03-28 18:07:13", "license": "2", "title": "Forty Minutes to Indianapolis", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5060/5573750406_e2fbb2143e_o.jpg", "secret": "f7a5bc94d7", "media": "photo", "latitude": "0", "id": "5573750406", "tags": ""}, {"datetaken": "2011-03-28 18:07:55", "license": "2", "title": "The Opening Tip", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5227/5573163255_9ac9cb0efa_o.jpg", "secret": "f0b5874171", "media": "photo", "latitude": "0", "id": "5573163255", "tags": ""}, {"datetaken": "2011-03-28 18:13:43", "license": "2", "title": "Kayla Versus Kayla", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5068/5573753252_41cf50d9bd_o.jpg", "secret": "be821474d0", "media": "photo", "latitude": "0", "id": "5573753252", "tags": "katelanredmon courtneyvandersloot kellybowen kaylapedersen janellebekkering kaylastandish chineyogwumike"}, {"datetaken": "2011-03-28 18:22:50", "license": "2", "title": "Courtney Vandersloot Pulls Up for a Jumper", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5230/5573754912_51f08e129e_o.jpg", "secret": "7db7430bf5", "media": "photo", "latitude": "0", "id": "5573754912", "tags": "courtneyvandersloot"}, {"datetaken": "2011-03-28 18:35:21", "license": "2", "title": "Courtney Vandersloot Weaves Through the Stanford Defense", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5251/5573169685_faaf8fcb1f_o.jpg", "secret": "2480668659", "media": "photo", "latitude": "0", "id": "5573169685", "tags": "courtneyvandersloot kaylapedersen nnekaogwumike kaylastandish"}, {"datetaken": "2011-03-28 18:37:02", "license": "2", "title": "Courtney Vandersloot Scores Again", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5131/5573759878_4d4bbb99fb_o.jpg", "secret": "0c144d4541", "media": "photo", "latitude": "0", "id": "5573759878", "tags": "courtneyvandersloot"}, {"datetaken": "2011-03-28 18:51:15", "license": "2", "title": "Toni Kokenis and Melanie Murphy Double-Team Courtney Vandersloot", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5056/5573173235_11ba386e81_o.jpg", "secret": "9a51ed46ce", "media": "photo", "latitude": "0", "id": "5573173235", "tags": "courtneyvandersloot melaniemurphy tonikokenis"}, {"datetaken": "2011-03-28 18:52:28", "license": "2", "title": "Halftime", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5029/5573763042_e476a0ffbf_o.jpg", "secret": "b30f5c55c2", "media": "photo", "latitude": "0", "id": "5573763042", "tags": ""}, {"datetaken": "2011-03-28 19:14:06", "license": "2", "title": "The 2011 Spokane Regional", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5027/5573766280_5d05ee95de_o.jpg", "secret": "1c3f838dee", "media": "photo", "latitude": "0", "id": "5573766280", "tags": ""}, {"datetaken": "2011-03-28 19:18:14", "license": "2", "title": "Zone Defense", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5060/5573767738_0ab34e9428_o.jpg", "secret": "0831aebaae", "media": "photo", "latitude": "0", "id": "5573767738", "tags": ""}, {"datetaken": "2011-03-28 19:40:49", "license": "2", "title": "The Gonzaga Cheerleaders", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5268/5573784492_86b219f5f8_o.jpg", "secret": "94580f49e7", "media": "photo", "latitude": "0", "id": "5573784492", "tags": ""}, {"datetaken": "2011-03-28 19:52:26", "license": "2", "title": "Kayla Pedersen Shoots from the Top of the Key", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5105/5573197719_3234f9ba17_o.jpg", "secret": "e6304b1070", "media": "photo", "latitude": "0", "id": "5573197719", "tags": "lindylarocque jeanettepohlen kaylapedersen"}, {"datetaken": "2011-03-28 19:53:45", "license": "2", "title": "A Hug for Courtney", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5263/5573787284_962a0308fb_o.jpg", "secret": "7e34d6bf30", "media": "photo", "latitude": "0", "id": "5573787284", "tags": "courtneyvandersloot"}, {"datetaken": "2011-03-28 19:57:57", "license": "2", "title": "Stanford Celebrates", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5091/5573788892_4c3df83365_o.jpg", "secret": "a1afe88aec", "media": "photo", "latitude": "0", "id": "5573788892", "tags": ""}, {"datetaken": "2011-03-28 20:04:31", "license": "2", "title": "Hats? Check. Shirts? Check. Trophy? Check.", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5132/5573202395_8ee76a3d8b_o.jpg", "secret": "6ce4f03be3", "media": "photo", "latitude": "0", "id": "5573202395", "tags": ""}, {"datetaken": "2011-03-28 20:04:51", "license": "2", "title": "The 2011 Spokane Regional Champions", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5297/5573203941_229c1c1e75_o.jpg", "secret": "b1e1847cbb", "media": "photo", "latitude": "0", "id": "5573203941", "tags": ""}, {"datetaken": "2011-03-28 20:07:42", "license": "2", "title": "Joslyn Tinkle", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5011/5573793432_f419ff41f6_o.jpg", "secret": "5b5f23d6a2", "media": "photo", "latitude": "0", "id": "5573793432", "tags": "joslyntinkle"}, {"datetaken": "2011-03-28 20:09:47", "license": "2", "title": "Nneka Ogwumike", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5268/5573794848_30792c331a_o.jpg", "secret": "af23acf273", "media": "photo", "latitude": "0", "id": "5573794848", "tags": "nnekaogwumike"}, {"datetaken": "2011-03-28 20:10:47", "license": "2", "title": "Kayla Pedersen", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5058/5573796446_e34ccf03a6_o.jpg", "secret": "60f4058d0c", "media": "photo", "latitude": "0", "id": "5573796446", "tags": "kaylapedersen"}, {"datetaken": "2011-03-28 20:14:05", "license": "2", "title": "The Final Score", "text": "", "album_id": "72157626367932082", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5066/5573209729_a0dd98abf2_o.jpg", "secret": "cb0285e425", "media": "photo", "latitude": "0", "id": "5573209729", "tags": ""}, {"datetaken": "2005-09-21 18:43:40", "license": "2", "title": "Nah, just put on makeup..", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/45960378_84a096f185_o.jpg", "secret": "84a096f185", "media": "photo", "latitude": "0", "id": "45960378", "tags": "dilo sept 22 morning"}, {"datetaken": "2005-09-21 18:49:53", "license": "2", "title": "Should I take a shower?", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/45960377_3c501cb02b_o.jpg", "secret": "3c501cb02b", "media": "photo", "latitude": "0", "id": "45960377", "tags": "dilo sept 22 morning"}, {"datetaken": "2005-09-21 18:58:34", "license": "2", "title": "Getting Dressed in my Jeans", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/45960380_017e9237d3_o.jpg", "secret": "017e9237d3", "media": "photo", "latitude": "0", "id": "45960380", "tags": "dilo sept 22 morning"}, {"datetaken": "2005-09-21 18:59:28", "license": "2", "title": "5 Last check in the mirror", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/45960381_4f9612031f_o.jpg", "secret": "4f9612031f", "media": "photo", "latitude": "0", "id": "45960381", "tags": "morning me 22 julie sept dilo selfie"}, {"datetaken": "2005-09-21 19:01:46", "license": "2", "title": "Down the Stairs", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/45960382_776ca1c979_o.jpg", "secret": "776ca1c979", "media": "photo", "latitude": "0", "id": "45960382", "tags": "dilo sept 22 morning"}, {"datetaken": "2005-09-21 19:04:27", "license": "2", "title": "The Cat's on the unmade bed already", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/45960379_8b05793787_o.jpg", "secret": "8b05793787", "media": "photo", "latitude": "0", "id": "45960379", "tags": "dilo sept 22 morning"}, {"datetaken": "2005-09-21 19:05:31", "license": "2", "title": "8 Sam making a lunch", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/46054230_9cbdfdacce_o.jpg", "secret": "9cbdfdacce", "media": "photo", "latitude": "0", "id": "46054230", "tags": "dilo sept 22 morning"}, {"datetaken": "2005-09-21 19:16:17", "license": "2", "title": "Tim and I eating breakfast with company", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/46054229_a850830509_o.jpg", "secret": "a850830509", "media": "photo", "latitude": "0", "id": "46054229", "tags": "dilo sept 22 morning"}, {"datetaken": "2005-09-21 19:28:02", "license": "2", "title": "Sunrise off the front porch", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/46055356_ddd5fdcde8_o.jpg", "secret": "ddd5fdcde8", "media": "photo", "latitude": "0", "id": "46055356", "tags": "dilo sept 22 morning drive sunrise country"}, {"datetaken": "2005-09-21 19:30:13", "license": "2", "title": "Goodbye", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/46055357_d61c8d66f8_o.jpg", "secret": "d61c8d66f8", "media": "photo", "latitude": "0", "id": "46055357", "tags": "dilo sept 22 morning drive sunrise country"}, {"datetaken": "2005-09-21 19:47:32", "license": "2", "title": "Zipping Past the Walnut Barn", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/46055359_8d245a1e5e_o.jpg", "secret": "8d245a1e5e", "media": "photo", "latitude": "0", "id": "46055359", "tags": "dilo sept 22 morning drive sunrise country"}, {"datetaken": "2005-09-21 19:47:48", "license": "2", "title": "Off to Work", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46055358_cff034afff_o.jpg", "secret": "cff034afff", "media": "photo", "latitude": "0", "id": "46055358", "tags": "dilo sept 22 morning drive sunrise country"}, {"datetaken": "2005-09-21 20:00:24", "license": "2", "title": "A DILO Morning", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/46055360_60a82690bc_o.jpg", "secret": "60a82690bc", "media": "photo", "latitude": "0", "id": "46055360", "tags": "dilo sept 22 morning drive sunrise country"}, {"datetaken": "2005-09-21 20:02:04", "license": "2", "title": "Coming into Town", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/46055362_a63c763239_o.jpg", "secret": "a63c763239", "media": "photo", "latitude": "0", "id": "46055362", "tags": "dilo sept 22 morning drive sunrise country"}, {"datetaken": "2005-09-21 20:04:45", "license": "2", "title": "Son with Permit Drives", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/46059377_39b241c075_o.jpg", "secret": "39b241c075", "media": "photo", "latitude": "0", "id": "46059377", "tags": "dilo sept 22 morning drive school"}, {"datetaken": "2005-09-21 20:06:39", "license": "2", "title": "Checking Gas Prices", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46059378_43bc9bd16a_o.jpg", "secret": "43bc9bd16a", "media": "photo", "latitude": "0", "id": "46059378", "tags": "dilo sept 22 morning drive school"}, {"datetaken": "2005-09-21 20:31:04", "license": "2", "title": "My Desk", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/46059379_cbb824459e_o.jpg", "secret": "cbb824459e", "media": "photo", "latitude": "0", "id": "46059379", "tags": "dilo sept 22 morning drive school"}, {"datetaken": "2005-09-21 20:31:29", "license": "2", "title": "Halls Filling Up", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/46059380_ef4ec8e103_o.jpg", "secret": "ef4ec8e103", "media": "photo", "latitude": "0", "id": "46059380", "tags": "dilo sept 22 morning drive school"}, {"datetaken": "2005-09-21 21:35:25", "license": "2", "title": "My Teacher's Aide, Courtney", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/46059381_902f48df1a_o.jpg", "secret": "902f48df1a", "media": "photo", "latitude": "0", "id": "46059381", "tags": "dilo sept 22 morning drive school"}, {"datetaken": "2005-09-21 22:04:04", "license": "2", "title": "Working on Long Range Lesson Plans", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/46059383_ffff10f873_o.jpg", "secret": "ffff10f873", "media": "photo", "latitude": "0", "id": "46059383", "tags": "dilo sept 22 morning drive school"}, {"datetaken": "2005-09-21 22:37:04", "license": "2", "title": "My Photos on School Walls", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/46061701_74517d5604_o.jpg", "secret": "74517d5604", "media": "photo", "latitude": "0", "id": "46061701", "tags": "dilo sept 22 school students"}, {"datetaken": "2005-09-21 22:37:23", "license": "2", "title": "Going to the Lounge for Coffeeeeee", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/46061696_21b74d66d8_o.jpg", "secret": "21b74d66d8", "media": "photo", "latitude": "0", "id": "46061696", "tags": "dilo sept 22 school students"}, {"datetaken": "2005-09-21 22:47:40", "license": "2", "title": "Sam Working on Prepositional Phrases", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/46061697_84c689c4c6_o.jpg", "secret": "84c689c4c6", "media": "photo", "latitude": "0", "id": "46061697", "tags": "dilo sept 22 school students"}, {"datetaken": "2005-09-22 00:33:29", "license": "2", "title": "Teachers Lunching in the Lounge", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/46061698_040cdaec5e_o.jpg", "secret": "040cdaec5e", "media": "photo", "latitude": "0", "id": "46061698", "tags": "dilo sept 22 school students"}, {"datetaken": "2005-09-22 00:56:24", "license": "2", "title": "On the Board", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/46063386_b274ff2c62_o.jpg", "secret": "b274ff2c62", "media": "photo", "latitude": "0", "id": "46063386", "tags": "dilo sept 22 school students sardonic"}, {"datetaken": "2005-09-22 00:56:56", "license": "2", "title": "A Student's Artwork", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/46063388_c0d88efbfe_o.jpg", "secret": "c0d88efbfe", "media": "photo", "latitude": "0", "id": "46063388", "tags": "dilo sept 22 school students art"}, {"datetaken": "2005-09-22 00:58:02", "license": "2", "title": "Kristen Bright Yellow", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/46061700_e752d675f3_o.jpg", "secret": "e752d675f3", "media": "photo", "latitude": "0", "id": "46061700", "tags": "dilo sept 22 school students"}, {"datetaken": "2005-09-22 01:12:17", "license": "2", "title": "Student Feet", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/46061699_d32be20bfa_o.jpg", "secret": "d32be20bfa", "media": "photo", "latitude": "0", "id": "46061699", "tags": "dilo sept 22 school students"}, {"datetaken": "2005-09-22 02:04:03", "license": "2", "title": "Emily in AP Lit.", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/46063385_38f8752f5f_o.jpg", "secret": "38f8752f5f", "media": "photo", "latitude": "0", "id": "46063385", "tags": "dilo sept 22 school students"}, {"datetaken": "2005-09-22 02:31:23", "license": "2", "title": "Teaching the Odyssey", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/46063387_dc41e787b6_o.jpg", "secret": "dc41e787b6", "media": "photo", "latitude": "0", "id": "46063387", "tags": "school students reading 22 book sept dilo dilosept05"}, {"datetaken": "2005-09-22 03:22:47", "license": "2", "title": "On the Way Home", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/46063390_8d97692f54_o.jpg", "secret": "8d97692f54", "media": "photo", "latitude": "0", "id": "46063390", "tags": "dilo sept 22 country"}, {"datetaken": "2005-09-22 04:28:53", "license": "2", "title": "After School", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46063389_24a7ad5892_o.jpg", "secret": "24a7ad5892", "media": "photo", "latitude": "0", "id": "46063389", "tags": "dilo sept 22 food treat red"}, {"datetaken": "2005-09-22 04:57:31", "license": "2", "title": "Back Home Again", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/46065984_d910d75497_o.jpg", "secret": "d910d75497", "media": "photo", "latitude": "0", "id": "46065984", "tags": "dilo sept 22 afternoon dog home tv rest"}, {"datetaken": "2005-09-22 04:58:40", "license": "2", "title": "Getting Her Licks In", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/46065986_f2094b6959_o.jpg", "secret": "f2094b6959", "media": "photo", "latitude": "0", "id": "46065986", "tags": "dog home 22 tv afternoon rest sept dilo dilosept05"}, {"datetaken": "2005-09-22 05:13:57", "license": "2", "title": "Watching \"Days of Our Lives\" on Tape", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/46065988_56bbbacce2_o.jpg", "secret": "56bbbacce2", "media": "photo", "latitude": "0", "id": "46065988", "tags": "dog home 22 tv afternoon rest sept dilo sami daysofourlives allisonsweeney"}, {"datetaken": "2005-09-22 05:45:42", "license": "2", "title": "Go Upstairs and Crash", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/46065987_54fa590eff_o.jpg", "secret": "54fa590eff", "media": "photo", "latitude": "0", "id": "46065987", "tags": "dilo sept 22 afternoon dog home tv rest"}, {"datetaken": "2005-09-22 05:53:08", "license": "2", "title": "Storm Warning", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/46065989_cb35bc5ff5_o.jpg", "secret": "cb35bc5ff5", "media": "photo", "latitude": "0", "id": "46065989", "tags": "dilo sept 22 afternoon tv warning"}, {"datetaken": "2005-09-22 06:07:58", "license": "2", "title": "Father In Law Comes Over", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46067547_47eb74c115_o.jpg", "secret": "47eb74c115", "media": "photo", "latitude": "0", "id": "46067547", "tags": "home cat 22 afternoon fil grandpa dennis sept dilo"}, {"datetaken": "2005-09-22 06:09:01", "license": "2", "title": "Lucy Chews on Frisbee or What is Left of It", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/46067548_501968f431_o.jpg", "secret": "501968f431", "media": "photo", "latitude": "0", "id": "46067548", "tags": "dilo sept 22 afternoon dog home"}, {"datetaken": "2005-09-22 06:13:39", "license": "2", "title": "Sweep the porch", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/46067546_0ec129413a_o.jpg", "secret": "0ec129413a", "media": "photo", "latitude": "0", "id": "46067546", "tags": "dilo sept 22 afternoon chores home"}, {"datetaken": "2005-09-22 06:30:18", "license": "2", "title": "Throw in a Load", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/46067545_3eac7b8569_o.jpg", "secret": "3eac7b8569", "media": "photo", "latitude": "0", "id": "46067545", "tags": "dilo sept 22 afternoon laundry home"}, {"datetaken": "2005-09-22 06:31:36", "license": "2", "title": "Casserole", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/46065990_51cd4de064_o.jpg", "secret": "51cd4de064", "media": "photo", "latitude": "0", "id": "46065990", "tags": "dilo sept 22 home dinner food"}, {"datetaken": "2005-09-22 06:33:53", "license": "2", "title": "The Surprise!", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/46067550_39aa1045ab_o.jpg", "secret": "39aa1045ab", "media": "photo", "latitude": "0", "id": "46067550", "tags": "dilo sept 22 afternoon dog home"}, {"datetaken": "2005-09-22 06:37:18", "license": "2", "title": "I thank MIL for Finding the Dishes", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/46067551_a7ee5ebe30_o.jpg", "secret": "a7ee5ebe30", "media": "photo", "latitude": "0", "id": "46067551", "tags": "dilo sept 22 afternoon dog home"}, {"datetaken": "2005-09-22 08:03:15", "license": "2", "title": "Dessert on the Deck", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46069435_98bdf26bdb_o.jpg", "secret": "98bdf26bdb", "media": "photo", "latitude": "0", "id": "46069435", "tags": "dilo sept 22 deck evening"}, {"datetaken": "2005-09-22 08:34:15", "license": "2", "title": "Watching Survivor", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/46069436_d2d20ce522_o.jpg", "secret": "d2d20ce522", "media": "photo", "latitude": "0", "id": "46069436", "tags": "dilo sept 22 television survivor"}, {"datetaken": "2005-09-22 09:56:05", "license": "2", "title": "In Bed at Last", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/46069437_5809a1f83b_o.jpg", "secret": "5809a1f83b", "media": "photo", "latitude": "0", "id": "46069437", "tags": "dilo sept 22 feet bed"}, {"datetaken": "2005-09-22 10:04:32", "license": "2", "title": "Reading \"If You Want to Walk on Water, You've Got to Get Out of the Boat\"", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46069438_fa971fb27c_o.jpg", "secret": "fa971fb27c", "media": "photo", "latitude": "0", "id": "46069438", "tags": "dilo sept 22 book reading joke"}, {"datetaken": "2005-09-22 10:23:46", "license": "2", "title": "Zonked", "text": "", "album_id": "1006285", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/46069439_97ce9dade4_o.jpg", "secret": "97ce9dade4", "media": "photo", "latitude": "0", "id": "46069439", "tags": "dilo sept 22 sleep night"}, {"datetaken": "2011-01-28 19:00:48", "license": "3", "title": "Davis vs Modesto High School, 1-28-11,Homecoming", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5051/5403927438_9a7945b81d_o.jpg", "secret": "f4551662b5", "media": "photo", "latitude": "0", "id": "5403927438", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 19:01:48", "license": "3", "title": "Davis vs Modesto High School, 1-28-11,Homecoming", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5259/5403328551_cf474e4d1d_o.jpg", "secret": "f6d1ed797e", "media": "photo", "latitude": "0", "id": "5403328551", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 19:04:22", "license": "3", "title": "Davis vs Modesto High School, 1-28-11,Homecoming", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5177/5403336043_a516aea118_o.jpg", "secret": "6ab339022d", "media": "photo", "latitude": "0", "id": "5403336043", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 19:27:31", "license": "3", "title": "Davis vs Modesto High School, 1-28-11", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5218/5403953506_1b8408e584_o.jpg", "secret": "2ee417e4bd", "media": "photo", "latitude": "0", "id": "5403953506", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 19:27:47", "license": "3", "title": "Davis vs Modesto High School, 1-28-11", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5172/5403959252_91708746ec_o.jpg", "secret": "5c5812e1b2", "media": "photo", "latitude": "0", "id": "5403959252", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 19:27:47", "license": "3", "title": "Davis vs Modesto High School, 1-28-11", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5171/5403366767_a85c0dac57_o.jpg", "secret": "37abc67c82", "media": "photo", "latitude": "0", "id": "5403366767", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 19:33:56", "license": "3", "title": "Davis vs Modesto High School, 1-28-11", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5220/5403371467_079082ab1f_o.jpg", "secret": "e4ef8498ec", "media": "photo", "latitude": "0", "id": "5403371467", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 19:33:58", "license": "3", "title": "Davis vs Modesto High School, 1-28-11", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5135/5403375311_95c3a5c03d_o.jpg", "secret": "f1f259927d", "media": "photo", "latitude": "0", "id": "5403375311", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 19:36:51", "license": "3", "title": "Davis vs Modesto High School, 1-28-11", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5138/5403378099_223c2b1b4a_o.jpg", "secret": "fd1f9ed33d", "media": "photo", "latitude": "0", "id": "5403378099", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 19:38:02", "license": "3", "title": "Davis vs Modesto High School, 1-28-11", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5403381631_b8454504ab_o.jpg", "secret": "b0e78c3e96", "media": "photo", "latitude": "0", "id": "5403381631", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 19:38:21", "license": "3", "title": "Davis vs Modesto High School, 1-28-11", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5012/5403999506_8341543623_o.jpg", "secret": "e688666171", "media": "photo", "latitude": "0", "id": "5403999506", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 19:50:32", "license": "3", "title": "Davis vs Modesto High School, 1-28-11", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5217/5403984732_8782ae961c_o.jpg", "secret": "05d5c7433c", "media": "photo", "latitude": "0", "id": "5403984732", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 19:58:58", "license": "3", "title": "Davis vs Modesto High School, 1-28-11", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5097/5403400415_ccccff8f8b_o.jpg", "secret": "b7b788d02a", "media": "photo", "latitude": "0", "id": "5403400415", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 20:49:55", "license": "3", "title": "Davis vs Modesto High School, 1-28-11", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5100/5403385611_913716b533_o.jpg", "secret": "398b93a66f", "media": "photo", "latitude": "0", "id": "5403385611", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 20:49:55", "license": "3", "title": "Davis vs Modesto High School, 1-28-11", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5179/5403401627_383a116c92_o.jpg", "secret": "9923993295", "media": "photo", "latitude": "0", "id": "5403401627", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 20:50:09", "license": "3", "title": "Davis vs Modesto High School, 1-28-11", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5218/5403989876_2714c57e39_o.jpg", "secret": "7c4f945f8a", "media": "photo", "latitude": "0", "id": "5403989876", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 20:50:10", "license": "3", "title": "Davis vs Modesto High School, 1-28-11", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5180/5403392201_f139f659eb_o.jpg", "secret": "a3224dbda3", "media": "photo", "latitude": "0", "id": "5403392201", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 20:53:09", "license": "3", "title": "Davis vs Modesto High School, 1-28-11", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5291/5403394087_22323ba5e5_o.jpg", "secret": "87ac8084ce", "media": "photo", "latitude": "0", "id": "5403394087", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2011-01-28 21:01:03", "license": "3", "title": "Davis vs Modesto High School, 1-28-11", "text": "", "album_id": "72157625944175014", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5100/5403997372_e136ee1548_o.jpg", "secret": "40cf3567f6", "media": "photo", "latitude": "0", "id": "5403997372", "tags": "sports basketball nikon varsity panthers mmc spartans thepalace modestohighschool gracedavishighschool modestometroconference"}, {"datetaken": "2010-10-08 18:59:10", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5011/5428092287_b4beca13ea_o.jpg", "secret": "01faaf202f", "media": "photo", "latitude": "0", "id": "5428092287", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:00:19", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5139/5428694698_41d251c531_o.jpg", "secret": "c0006b0300", "media": "photo", "latitude": "0", "id": "5428694698", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:01:54", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5292/5428092677_af651c8b48_o.jpg", "secret": "429a34d43b", "media": "photo", "latitude": "0", "id": "5428092677", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:24:42", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5013/5428092803_2b23cfe35c_o.jpg", "secret": "d4a2a19d8c", "media": "photo", "latitude": "0", "id": "5428092803", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:25:04", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5260/5428695058_77df5a7592_o.jpg", "secret": "a6cfe2fe98", "media": "photo", "latitude": "0", "id": "5428695058", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:25:19", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5100/5428093061_480f6d456a_o.jpg", "secret": "4d1aa2bdc2", "media": "photo", "latitude": "0", "id": "5428093061", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:26:39", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5215/5428093155_1acf81a86d_o.jpg", "secret": "35cd8cb402", "media": "photo", "latitude": "0", "id": "5428093155", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:28:53", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5218/5428093253_40e20d7221_o.jpg", "secret": "1864a6aee5", "media": "photo", "latitude": "0", "id": "5428093253", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:28:54", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5218/5428093387_d365b095bc_o.jpg", "secret": "3e942bb64d", "media": "photo", "latitude": "0", "id": "5428093387", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:29:27", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5091/5428695628_806b7a9a94_o.jpg", "secret": "19d6abb5f1", "media": "photo", "latitude": "0", "id": "5428695628", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:29:39", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5060/5428093683_ab14b90eb6_o.jpg", "secret": "ec95637601", "media": "photo", "latitude": "0", "id": "5428093683", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:31:25", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5258/5428696010_5b713d8957_o.jpg", "secret": "72a0d4d14a", "media": "photo", "latitude": "0", "id": "5428696010", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:31:53", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5255/5428696276_3432a65bfb_o.jpg", "secret": "d85b727d52", "media": "photo", "latitude": "0", "id": "5428696276", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:35:03", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5136/5428696604_09e726774a_o.jpg", "secret": "4673c31c1e", "media": "photo", "latitude": "0", "id": "5428696604", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:35:04", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5291/5428696852_804517cf52_o.jpg", "secret": "403fcb4ce9", "media": "photo", "latitude": "0", "id": "5428696852", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:35:13", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5213/5428697134_41610f431e_o.jpg", "secret": "d1ba42a0f1", "media": "photo", "latitude": "0", "id": "5428697134", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:35:16", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5017/5428095283_ffbbc454b9_o.jpg", "secret": "130c84874a", "media": "photo", "latitude": "0", "id": "5428095283", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:35:17", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5218/5428697820_0a3a8b26d7_o.jpg", "secret": "c1697cba93", "media": "photo", "latitude": "0", "id": "5428697820", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:38:11", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5140/5428698012_e2ffeaa1c2_o.jpg", "secret": "dab75fe323", "media": "photo", "latitude": "0", "id": "5428698012", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:39:02", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5257/5428096021_01ed818afd_o.jpg", "secret": "8b4a88af35", "media": "photo", "latitude": "0", "id": "5428096021", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:45:20", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5058/5428698596_39df962165_o.jpg", "secret": "2796b5d906", "media": "photo", "latitude": "0", "id": "5428698596", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:48:53", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5293/5428096561_9b8cb74342_o.jpg", "secret": "26693ec5a8", "media": "photo", "latitude": "0", "id": "5428096561", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 19:55:53", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5299/5428698902_93e9f4c7a2_o.jpg", "secret": "d735038d06", "media": "photo", "latitude": "0", "id": "5428698902", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2010-10-08 20:11:02", "license": "3", "title": "Men's Soccer at UIS Homecoming 2010", "text": "", "album_id": "72157626005088368", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5052/5428097055_eaa6c22105_o.jpg", "secret": "e894bfe7b7", "media": "photo", "latitude": "0", "id": "5428097055", "tags": "men students october soccer homecoming mens studentlife 2010 kiwanis uis homecomingweek menssoccer universityofillinoisatspringfield universityofillinoisspringfield illinoisspringfield jeremywilburn uofispringfield kiwanisfield 2010homecominghomecomingweekkiwaniskiwanisfieldmenmenssocceroctober"}, {"datetaken": "2004-07-24 15:51:57", "license": "5", "title": "George Ranch Welcomes us?", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3195/2808322861_2feb7b5660_o.jpg", "secret": "d8d8d73b3c", "media": "photo", "latitude": "0", "id": "2808322861", "tags": "andrew"}, {"datetaken": "2004-07-24 15:55:09", "license": "5", "title": "Weaving", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3081/2809172596_d933cb9792_o.jpg", "secret": "b81583f895", "media": "photo", "latitude": "0", "id": "2809172596", "tags": ""}, {"datetaken": "2004-07-24 16:03:26", "license": "5", "title": "Andrew interacts", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3132/2809172764_f24c967d69_o.jpg", "secret": "5e67fdb57c", "media": "photo", "latitude": "0", "id": "2809172764", "tags": "andrew"}, {"datetaken": "2004-07-24 16:13:50", "license": "5", "title": "Pig", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3179/2809172884_e3ca873698_o.jpg", "secret": "a8471326ff", "media": "photo", "latitude": "0", "id": "2809172884", "tags": ""}, {"datetaken": "2004-07-24 16:17:14", "license": "5", "title": "", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3249/2809173010_5c60618f29_o.jpg", "secret": "a6ae424ddf", "media": "photo", "latitude": "0", "id": "2809173010", "tags": ""}, {"datetaken": "2004-07-24 16:18:36", "license": "5", "title": "", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3055/2808323585_876cc3e357_o.jpg", "secret": "e3e341644c", "media": "photo", "latitude": "0", "id": "2808323585", "tags": ""}, {"datetaken": "2004-07-24 16:23:14", "license": "5", "title": "Our Driver, Don", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3100/2809173312_d170572237_o.jpg", "secret": "7e79746828", "media": "photo", "latitude": "0", "id": "2809173312", "tags": "don"}, {"datetaken": "2004-07-24 17:28:50", "license": "5", "title": "Liza in front of the Main House", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3104/2809173478_9abb63dfb9_o.jpg", "secret": "f943766c86", "media": "photo", "latitude": "0", "id": "2809173478", "tags": "liza"}, {"datetaken": "2004-07-24 17:33:50", "license": "5", "title": "Liza on the wagon", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3092/2809173622_cc14a48e5e_o.jpg", "secret": "cec748cf69", "media": "photo", "latitude": "0", "id": "2809173622", "tags": "liza"}, {"datetaken": "2004-07-24 17:40:05", "license": "5", "title": "The Roping Show", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3270/2809173776_8707ea184e_o.jpg", "secret": "e80f1ee88b", "media": "photo", "latitude": "0", "id": "2809173776", "tags": ""}, {"datetaken": "2004-07-24 17:42:53", "license": "5", "title": "", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3146/2808324289_8187691558_o.jpg", "secret": "659116fa31", "media": "photo", "latitude": "0", "id": "2808324289", "tags": ""}, {"datetaken": "2004-07-24 17:44:39", "license": "5", "title": "", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3141/2808324445_8ca1081c45_o.jpg", "secret": "6c392fba83", "media": "photo", "latitude": "0", "id": "2808324445", "tags": ""}, {"datetaken": "2004-07-24 17:49:20", "license": "5", "title": "", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3212/2808324595_1b7539e944_o.jpg", "secret": "78dfe37048", "media": "photo", "latitude": "0", "id": "2808324595", "tags": ""}, {"datetaken": "2004-07-24 17:50:08", "license": "5", "title": "", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3108/2808324811_3808fafb60_o.jpg", "secret": "c99f8bb2ef", "media": "photo", "latitude": "0", "id": "2808324811", "tags": ""}, {"datetaken": "2004-07-24 17:50:42", "license": "5", "title": "", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3199/2809174616_fc303e1202_o.jpg", "secret": "bf2f9ebc73", "media": "photo", "latitude": "0", "id": "2809174616", "tags": ""}, {"datetaken": "2004-07-24 17:51:28", "license": "5", "title": "", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3235/2809174760_5ea369714c_o.jpg", "secret": "185313efee", "media": "photo", "latitude": "0", "id": "2809174760", "tags": ""}, {"datetaken": "2004-07-24 18:19:38", "license": "5", "title": "", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3070/2808325251_6a77d2d605_o.jpg", "secret": "dbd00d3898", "media": "photo", "latitude": "0", "id": "2808325251", "tags": ""}, {"datetaken": "2004-07-24 18:29:11", "license": "5", "title": "The Tree House", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3040/2809175092_a9afc4fa8d_o.jpg", "secret": "d26ce6e88f", "media": "photo", "latitude": "0", "id": "2809175092", "tags": "andrew"}, {"datetaken": "2004-07-24 18:30:20", "license": "5", "title": "Andrew & Liza", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3079/2809175178_d105bbbc52_o.jpg", "secret": "177e1f4a83", "media": "photo", "latitude": "0", "id": "2809175178", "tags": "liza andrew"}, {"datetaken": "2004-07-24 18:30:45", "license": "5", "title": "New Friend", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3111/2809175474_1782c81a1b_o.jpg", "secret": "18a2458570", "media": "photo", "latitude": "0", "id": "2809175474", "tags": ""}, {"datetaken": "2004-07-24 18:31:18", "license": "5", "title": "New Friends", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3250/2808325971_78ed85aca1_o.jpg", "secret": "34554c0b13", "media": "photo", "latitude": "0", "id": "2808325971", "tags": ""}, {"datetaken": "2004-07-24 18:32:10", "license": "5", "title": "Down the stairs", "text": "", "album_id": "72157607012581475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3270/2808326129_dcde358be8_o.jpg", "secret": "31c14364c3", "media": "photo", "latitude": "0", "id": "2808326129", "tags": "liza"}, {"datetaken": "2007-08-12 09:54:13", "license": "5", "title": "View from Charles Island", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3222/2810471722_65788baf4f_o.jpg", "secret": "0f7267a1c7", "media": "photo", "latitude": "0", "id": "2810471722", "tags": "jon megan"}, {"datetaken": "2007-08-12 09:54:26", "license": "5", "title": "Jon & Megan", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3072/2810471878_3c61043743_o.jpg", "secret": "a932fa8f8e", "media": "photo", "latitude": "0", "id": "2810471878", "tags": "jon megan"}, {"datetaken": "2007-08-12 09:55:07", "license": "5", "title": "The Old House", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3144/2810472020_7fbc452c01_o.jpg", "secret": "4aa0b219a1", "media": "photo", "latitude": "0", "id": "2810472020", "tags": ""}, {"datetaken": "2007-08-12 09:55:13", "license": "5", "title": "Turtle Rock", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3037/2810472200_a4c9f71ca6_o.jpg", "secret": "8748df79f8", "media": "photo", "latitude": "0", "id": "2810472200", "tags": ""}, {"datetaken": "2007-08-12 09:55:27", "license": "5", "title": "Cousins", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3269/2810472338_1950c861dd_o.jpg", "secret": "6ee03a9cbf", "media": "photo", "latitude": "0", "id": "2810472338", "tags": "liza jon megan"}, {"datetaken": "2007-08-12 09:55:58", "license": "5", "title": "Sharpteam", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3119/2810472466_98ac8678c0_o.jpg", "secret": "534cd64fe5", "media": "photo", "latitude": "0", "id": "2810472466", "tags": "liza andrew"}, {"datetaken": "2007-08-12 09:59:09", "license": "5", "title": "The old fireplace", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3245/2809625869_91297f48e9_o.jpg", "secret": "db5b789368", "media": "photo", "latitude": "0", "id": "2809625869", "tags": ""}, {"datetaken": "2007-08-12 09:59:18", "license": "5", "title": "Megan and Jon at the Fireplace", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3182/2809625979_599a10fca9_o.jpg", "secret": "b265dee18b", "media": "photo", "latitude": "0", "id": "2809625979", "tags": "jon megan"}, {"datetaken": "2007-08-12 09:59:23", "license": "5", "title": "Jon & Megan", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3108/2810472866_1d2d8af94a_o.jpg", "secret": "4d0bb92100", "media": "photo", "latitude": "0", "id": "2810472866", "tags": "jon megan"}, {"datetaken": "2007-08-12 10:00:06", "license": "5", "title": "Andrew and Liza", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3073/2809626253_994795c1fb_o.jpg", "secret": "b85dac0e94", "media": "photo", "latitude": "0", "id": "2809626253", "tags": "liza andrew"}, {"datetaken": "2007-08-12 10:28:46", "license": "5", "title": "", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3020/2809626413_5d7619ce8a_o.jpg", "secret": "36e2ffa4d0", "media": "photo", "latitude": "0", "id": "2809626413", "tags": ""}, {"datetaken": "2007-08-12 10:30:03", "license": "5", "title": "Rescuers", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3124/2810473288_6c50c04301_o.jpg", "secret": "6404838ab6", "media": "photo", "latitude": "0", "id": "2810473288", "tags": ""}, {"datetaken": "2007-08-12 10:38:16", "license": "5", "title": "", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3001/2810473438_bd0de258e1_o.jpg", "secret": "8e1107f2c7", "media": "photo", "latitude": "0", "id": "2810473438", "tags": ""}, {"datetaken": "2007-08-12 10:39:18", "license": "5", "title": "Turtle Rock", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3112/2809626845_01c64b7e46_o.jpg", "secret": "8c261d3f6f", "media": "photo", "latitude": "0", "id": "2809626845", "tags": ""}, {"datetaken": "2007-08-12 10:39:18", "license": "5", "title": "Good Bye Cousins", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3253/2810473738_cb67c363c1_o.jpg", "secret": "38ff4e70fc", "media": "photo", "latitude": "0", "id": "2810473738", "tags": ""}, {"datetaken": "2007-08-12 12:53:40", "license": "5", "title": "Serenity", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3084/2810473882_90f0936d50_o.jpg", "secret": "d6ab448cac", "media": "photo", "latitude": "0", "id": "2810473882", "tags": "aiden charlie"}, {"datetaken": "2007-08-12 12:53:52", "license": "5", "title": "Canoeing Cousins", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3295/2810474054_6fd1edeee3_o.jpg", "secret": "713653cbf8", "media": "photo", "latitude": "0", "id": "2810474054", "tags": "jon megan"}, {"datetaken": "2007-08-12 16:27:41", "license": "5", "title": "Time to Grill", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3017/2809627489_62f3697e96_o.jpg", "secret": "ef7a3b1b58", "media": "photo", "latitude": "0", "id": "2809627489", "tags": "charlie"}, {"datetaken": "2007-08-12 16:27:54", "license": "5", "title": "Cousins", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3278/2809627621_68ac87d167_o.jpg", "secret": "c27309fae8", "media": "photo", "latitude": "0", "id": "2809627621", "tags": "liza aiden"}, {"datetaken": "2007-08-12 16:30:20", "license": "5", "title": "Cooking Cousins", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3039/2810474454_1afbb06c40_o.jpg", "secret": "8cd7827dea", "media": "photo", "latitude": "0", "id": "2810474454", "tags": "aiden jon megan andrew"}, {"datetaken": "2007-08-12 16:40:16", "license": "5", "title": "A Scrumptious Dinner", "text": "", "album_id": "72157607016527320", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3058/2809627873_c4a333e424_o.jpg", "secret": "6474683c45", "media": "photo", "latitude": "0", "id": "2809627873", "tags": "liza aiden jon megan andrew charlie"}, {"datetaken": "2008-01-19 13:08:18", "license": "5", "title": "House of Seven Gables", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3204/2809278431_6291a14170_o.jpg", "secret": "decc99b7a7", "media": "photo", "latitude": "0", "id": "2809278431", "tags": ""}, {"datetaken": "2008-01-19 13:10:56", "license": "5", "title": "House of Seven Gables", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3128/2809278571_7f83bf08f7_o.jpg", "secret": "fd22c8111c", "media": "photo", "latitude": "0", "id": "2809278571", "tags": ""}, {"datetaken": "2008-01-19 13:19:32", "license": "5", "title": "House of Seven Gables", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3252/2810127898_1c4a5604e1_o.jpg", "secret": "7e7fd675d2", "media": "photo", "latitude": "0", "id": "2810127898", "tags": "liza"}, {"datetaken": "2008-01-19 13:20:14", "license": "5", "title": "Maule's Well", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3254/2809278837_689c65e3d8_o.jpg", "secret": "390ae36b97", "media": "photo", "latitude": "0", "id": "2809278837", "tags": "andrew"}, {"datetaken": "2008-01-19 13:20:24", "license": "5", "title": "View from House of Seven Gables", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3067/2810128238_8b1d316c28_o.jpg", "secret": "12cc6bbd53", "media": "photo", "latitude": "0", "id": "2810128238", "tags": ""}, {"datetaken": "2008-01-19 13:21:03", "license": "5", "title": "House of Seven Gables", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3213/2810128390_d44dd1cf60_o.jpg", "secret": "436018fb07", "media": "photo", "latitude": "0", "id": "2810128390", "tags": "liza andrew"}, {"datetaken": "2008-01-19 13:22:04", "license": "5", "title": "House of Seven Gables", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3070/2810128556_5a99c8cb9a_o.jpg", "secret": "d3b7758576", "media": "photo", "latitude": "0", "id": "2810128556", "tags": "andrew"}, {"datetaken": "2008-01-19 13:23:09", "license": "5", "title": "House of Seven Gables", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3088/2809279383_5110e58bea_o.jpg", "secret": "6366a56a1a", "media": "photo", "latitude": "0", "id": "2809279383", "tags": ""}, {"datetaken": "2008-01-19 14:10:19", "license": "5", "title": "", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3237/2809279461_440480e7ab_o.jpg", "secret": "01638950be", "media": "photo", "latitude": "0", "id": "2809279461", "tags": ""}, {"datetaken": "2008-01-19 14:10:25", "license": "5", "title": "House of Seven Gables", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3201/2810128940_bd6792961d_o.jpg", "secret": "e5d4d4182b", "media": "photo", "latitude": "0", "id": "2810128940", "tags": ""}, {"datetaken": "2008-01-19 14:10:41", "license": "5", "title": "House of Seven Gables", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3083/2810129074_1d3ec93050_o.jpg", "secret": "e317a242bd", "media": "photo", "latitude": "0", "id": "2810129074", "tags": ""}, {"datetaken": "2008-01-19 14:11:06", "license": "5", "title": "House of Seven Gables", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3213/2809279909_1fafea2db7_o.jpg", "secret": "86f4006f5f", "media": "photo", "latitude": "0", "id": "2809279909", "tags": ""}, {"datetaken": "2008-01-19 14:11:24", "license": "5", "title": "House of Seven Gables", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3201/2810129368_cea31676a0_o.jpg", "secret": "a2ebbcbcaa", "media": "photo", "latitude": "0", "id": "2810129368", "tags": ""}, {"datetaken": "2008-01-19 14:11:29", "license": "5", "title": "House of Seven Gables", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3101/2810129502_486928b77b_o.jpg", "secret": "787c654210", "media": "photo", "latitude": "0", "id": "2810129502", "tags": ""}, {"datetaken": "2008-01-19 14:11:34", "license": "5", "title": "Liza telling Andrew to catch up.", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3007/2809280397_0cfe4345db_o.jpg", "secret": "a8238e2cfc", "media": "photo", "latitude": "0", "id": "2809280397", "tags": "liza"}, {"datetaken": "2008-01-19 14:12:11", "license": "5", "title": "", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3074/2809280551_e47e3399c7_o.jpg", "secret": "944c0b7c7b", "media": "photo", "latitude": "0", "id": "2809280551", "tags": ""}, {"datetaken": "2008-01-19 14:12:29", "license": "5", "title": "House of Seven Gables", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3022/2809280617_92908d702a_o.jpg", "secret": "a733d60577", "media": "photo", "latitude": "0", "id": "2809280617", "tags": ""}, {"datetaken": "2008-01-19 14:12:49", "license": "5", "title": "House of Seven Gables", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3254/2810130024_d673606025_o.jpg", "secret": "3cb25294b1", "media": "photo", "latitude": "0", "id": "2810130024", "tags": ""}, {"datetaken": "2008-01-19 14:12:54", "license": "5", "title": "House of Seven Gables", "text": "", "album_id": "72157607017933719", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3217/2810130234_061fd9ff86_o.jpg", "secret": "853d065e3b", "media": "photo", "latitude": "0", "id": "2810130234", "tags": ""}, {"datetaken": "2010-01-01 17:46:41", "license": "1", "title": "SDC12039", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4235248840_e05fb39b8c_o.jpg", "secret": "325c39d63a", "media": "photo", "latitude": "0", "id": "4235248840", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:46:46", "license": "1", "title": "SDC12040", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2578/4235249082_b2e581aa97_o.jpg", "secret": "ed8dcd8134", "media": "photo", "latitude": "0", "id": "4235249082", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:46:48", "license": "1", "title": "SDC12041", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4235249212_3ec645463b_o.jpg", "secret": "4ccde18e2c", "media": "photo", "latitude": "0", "id": "4235249212", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:46:51", "license": "1", "title": "SDC12042_KW_White_House", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2776/4235249352_0e68e2e2d0_o.jpg", "secret": "ee56498bf3", "media": "photo", "latitude": "0", "id": "4235249352", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:46:55", "license": "1", "title": "SDC12043", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2664/4235249586_28f704b1db_o.jpg", "secret": "d6d6d43296", "media": "photo", "latitude": "0", "id": "4235249586", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:46:57", "license": "1", "title": "SDC12044", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4234474743_e9b7ecdd93_o.jpg", "secret": "3dba8690a2", "media": "photo", "latitude": "0", "id": "4234474743", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:47:00", "license": "1", "title": "SDC12045", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4234474841_4cafc17c56_o.jpg", "secret": "71fc0e04ca", "media": "photo", "latitude": "0", "id": "4234474841", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:47:03", "license": "1", "title": "SDC12046", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4235249990_4f06f01ceb_o.jpg", "secret": "cc96c3f1fb", "media": "photo", "latitude": "0", "id": "4235249990", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:47:07", "license": "1", "title": "SDC12047", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2618/4235250164_89e4716cd3_o.jpg", "secret": "803d3ed142", "media": "photo", "latitude": "0", "id": "4235250164", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:47:09", "license": "1", "title": "SDC12128_Key_West", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4234475317_f703dff458_o.jpg", "secret": "c8e08a4525", "media": "photo", "latitude": "0", "id": "4234475317", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:47:11", "license": "1", "title": "SDC12129", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2526/4234475437_6c4b7cc084_o.jpg", "secret": "12ccca4d2a", "media": "photo", "latitude": "0", "id": "4234475437", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:47:15", "license": "1", "title": "SDC12130", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2742/4234475627_c4e5a15e09_o.jpg", "secret": "a224e7c6e5", "media": "photo", "latitude": "0", "id": "4234475627", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:47:17", "license": "1", "title": "SDC12131", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2518/4235250692_32a4d6f8c8_o.jpg", "secret": "45ec97b66e", "media": "photo", "latitude": "0", "id": "4235250692", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:47:19", "license": "1", "title": "SDC12132", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2635/4235250834_66a872a462_o.jpg", "secret": "64d3b58d4a", "media": "photo", "latitude": "0", "id": "4235250834", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:47:22", "license": "1", "title": "SDC12133", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2506/4235250938_3c002e97f8_o.jpg", "secret": "9dd0c19365", "media": "photo", "latitude": "0", "id": "4235250938", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:47:27", "license": "1", "title": "SDC12134", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4234476195_ea3ff18eff_o.jpg", "secret": "7dae87edab", "media": "photo", "latitude": "0", "id": "4234476195", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:47:29", "license": "1", "title": "SDC12135", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2489/4234476275_79e211201a_o.jpg", "secret": "5e4b85e44c", "media": "photo", "latitude": "0", "id": "4234476275", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:47:31", "license": "1", "title": "SDC12136", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2628/4235251422_11e22819cd_o.jpg", "secret": "e47117dc66", "media": "photo", "latitude": "0", "id": "4235251422", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:47:36", "license": "1", "title": "SDC12136_pano_Sunset_Pier", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2591/4235251634_028f30a7cb_o.jpg", "secret": "2b634eaeb9", "media": "photo", "latitude": "0", "id": "4235251634", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:47:39", "license": "1", "title": "SDC12139", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2464/4235251810_22057d790e_o.jpg", "secret": "bc4e526ea3", "media": "photo", "latitude": "0", "id": "4235251810", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:47:41", "license": "1", "title": "SDC12142", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2549/4235251944_e6ccedfe11_o.jpg", "secret": "3474bdc25c", "media": "photo", "latitude": "0", "id": "4235251944", "tags": "sunset keywest 2009"}, {"datetaken": "2010-01-01 17:47:45", "license": "1", "title": "SDC12144", "text": "", "album_id": "72157622991639957", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2667/4235252134_119bd77e78_o.jpg", "secret": "e8425787fc", "media": "photo", "latitude": "0", "id": "4235252134", "tags": "sunset keywest 2009"}, {"datetaken": "2009-12-28 20:59:10", "license": "1", "title": "Pure Green", "text": "", "album_id": "72157623128165856", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2557/4240809176_c6c31654f6_o.jpg", "secret": "8b49f655c0", "media": "photo", "latitude": "0", "id": "4240809176", "tags": "architecture mexico yucatan merida historiccentre"}, {"datetaken": "2009-12-28 21:05:31", "license": "1", "title": "Green Twist", "text": "", "album_id": "72157623128165856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4240042721_5797aa780f_o.jpg", "secret": "2ff3d44eec", "media": "photo", "latitude": "0", "id": "4240042721", "tags": "architecture mexico yucatan merida historiccentre"}, {"datetaken": "2009-12-28 21:26:59", "license": "1", "title": "Princely Price", "text": "", "album_id": "72157623128165856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4240048437_4394735522_o.jpg", "secret": "ddebce1df4", "media": "photo", "latitude": "0", "id": "4240048437", "tags": "architecture mexico yucatan merida historiccentre"}, {"datetaken": "2009-12-28 21:30:34", "license": "1", "title": "Two Quick", "text": "", "album_id": "72157623128165856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4240826042_24ce1dfb9e_o.jpg", "secret": "50ef3da1fe", "media": "photo", "latitude": "0", "id": "4240826042", "tags": "architecture mexico yucatan merida historiccentre"}, {"datetaken": "2009-12-28 21:55:58", "license": "1", "title": "Pump Up The Volume", "text": "", "album_id": "72157623128165856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4240058017_5d57d5ac47_o.jpg", "secret": "4abdfbb495", "media": "photo", "latitude": "0", "id": "4240058017", "tags": "architecture mexico yucatan merida historiccentre"}, {"datetaken": "2009-12-28 22:58:49", "license": "1", "title": "Crowning Achievement", "text": "", "album_id": "72157623128165856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4240062469_8dcc2113d0_o.jpg", "secret": "261730a6ce", "media": "photo", "latitude": "0", "id": "4240062469", "tags": "architecture mexico yucatan merida historiccentre"}, {"datetaken": "2009-12-30 14:53:38", "license": "1", "title": "Look Out House", "text": "", "album_id": "72157623128165856", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2501/4240068233_7c67421490_o.jpg", "secret": "803e48a5b1", "media": "photo", "latitude": "0", "id": "4240068233", "tags": "architecture mexico yucatan merida historiccentre"}, {"datetaken": "2009-12-30 14:58:58", "license": "1", "title": "Guiding Light", "text": "", "album_id": "72157623128165856", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4240072797_0388152a5c_o.jpg", "secret": "674bda531e", "media": "photo", "latitude": "0", "id": "4240072797", "tags": "architecture mexico yucatan merida historiccentre"}, {"datetaken": "2009-12-30 16:09:56", "license": "1", "title": "Which Door Is Yours", "text": "", "album_id": "72157623128165856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4240077861_bf4b991ffb_o.jpg", "secret": "206ed43bbf", "media": "photo", "latitude": "0", "id": "4240077861", "tags": "architecture mexico yucatan merida historiccentre"}, {"datetaken": "2009-12-30 16:11:31", "license": "1", "title": "Angles and Mangles", "text": "", "album_id": "72157623128165856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4240083257_1e98a81549_o.jpg", "secret": "48b75e7727", "media": "photo", "latitude": "0", "id": "4240083257", "tags": "architecture mexico yucatan merida historiccentre"}, {"datetaken": "2009-12-30 18:34:55", "license": "1", "title": "To Be A Pilgrim", "text": "", "album_id": "72157623128165856", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4240860294_4cc9fe7cf4_o.jpg", "secret": "7557157c35", "media": "photo", "latitude": "0", "id": "4240860294", "tags": "architecture mexico yucatan merida historiccentre"}, {"datetaken": "2009-12-30 18:38:26", "license": "1", "title": "Sunshine Rain", "text": "", "album_id": "72157623128165856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4240868044_79fa0fa3f5_o.jpg", "secret": "fef862f218", "media": "photo", "latitude": "0", "id": "4240868044", "tags": "architecture mexico yucatan merida historiccentre"}, {"datetaken": "2009-12-30 18:41:12", "license": "1", "title": "Hot To Trot", "text": "", "album_id": "72157623128165856", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2496/4240101451_dc963c6ca3_o.jpg", "secret": "c8af0c2cac", "media": "photo", "latitude": "0", "id": "4240101451", "tags": "architecture mexico yucatan merida historiccentre"}, {"datetaken": "2009-12-30 20:25:10", "license": "2", "title": "The Mysterious Glo Stick", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4242440422_758b960fb5_o.jpg", "secret": "1a80b582b1", "media": "photo", "latitude": "0", "id": "4242440422", "tags": "lily glostick"}, {"datetaken": "2009-12-30 20:25:22", "license": "2", "title": "Lily Glow Stick", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4241668287_66431e11a6_o.jpg", "secret": "a360b05d62", "media": "photo", "latitude": "0", "id": "4241668287", "tags": "lily glostick"}, {"datetaken": "2009-12-30 20:25:52", "license": "2", "title": "Sam & Kai", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4242440678_288c39351b_o.jpg", "secret": "39539417c7", "media": "photo", "latitude": "0", "id": "4242440678", "tags": "sam"}, {"datetaken": "2009-12-30 20:28:44", "license": "2", "title": "Kai Glo Stick", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4241668489_923dfaf70d_o.jpg", "secret": "422c98041f", "media": "photo", "latitude": "0", "id": "4241668489", "tags": "stick glo"}, {"datetaken": "2009-12-30 20:29:21", "license": "2", "title": "Sam Glo Stick", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2741/4241668647_76c6ed3ba3_o.jpg", "secret": "575ddeab38", "media": "photo", "latitude": "0", "id": "4241668647", "tags": "sam glostick"}, {"datetaken": "2009-12-30 20:29:32", "license": "2", "title": "Sam & Kai Glo Stick 2", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2754/4242441250_bf42bd5a70_o.jpg", "secret": "8228047cee", "media": "photo", "latitude": "0", "id": "4242441250", "tags": "sam glostick"}, {"datetaken": "2009-12-30 20:30:01", "license": "2", "title": "Sam & Kai Glo Stick", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4241669157_e6513ee560_o.jpg", "secret": "e8155cda84", "media": "photo", "latitude": "0", "id": "4241669157", "tags": "sam glostick"}, {"datetaken": "2009-12-30 20:30:17", "license": "2", "title": "Lily Glow Stick", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4241669425_d297f3d487_o.jpg", "secret": "83851e1247", "media": "photo", "latitude": "0", "id": "4241669425", "tags": "lily glostick"}, {"datetaken": "2009-12-30 21:44:02", "license": "2", "title": "Mainstreet Mountclair NJ New Years Eve 2009", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4242442030_c6a258cdea_o.jpg", "secret": "abbc162232", "media": "photo", "latitude": "0", "id": "4242442030", "tags": "nightshot newyearseve mountclair"}, {"datetaken": "2009-12-30 21:45:00", "license": "2", "title": "Mountclair NJ New Years Eve 2009", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2762/4241669849_43455ed11b_o.jpg", "secret": "63bc503b17", "media": "photo", "latitude": "0", "id": "4241669849", "tags": "nightshot newyearseve mountclair"}, {"datetaken": "2009-12-30 21:53:06", "license": "2", "title": "Light Show on New Years Eve", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4241670007_b245a2b243_o.jpg", "secret": "64c6ff8abd", "media": "photo", "latitude": "0", "id": "4241670007", "tags": "new eve years"}, {"datetaken": "2009-12-31 11:14:11", "license": "2", "title": "Sam & Kai Playing Air Hockey", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4242442662_1156c50016_o.jpg", "secret": "c26e3a07b9", "media": "photo", "latitude": "0", "id": "4242442662", "tags": "sam"}, {"datetaken": "2009-12-31 12:57:12", "license": "2", "title": "Paul, the Human Sled", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2717/4242442944_728f594944_o.jpg", "secret": "c549e2a1de", "media": "photo", "latitude": "0", "id": "4242442944", "tags": "winter snow"}, {"datetaken": "2009-12-31 12:58:15", "license": "2", "title": "Sam Snowboarding January 2010", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2736/4241671127_ff5a77c62f_o.jpg", "secret": "e47baec8aa", "media": "photo", "latitude": "0", "id": "4241671127", "tags": "winter snow sam sledding"}, {"datetaken": "2009-12-31 13:29:08", "license": "2", "title": "Sledding January 2010", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4241671403_1bdccc50b5_o.jpg", "secret": "40b1228f7a", "media": "photo", "latitude": "0", "id": "4241671403", "tags": "winter snow lily sledding"}, {"datetaken": "2009-12-31 13:33:00", "license": "2", "title": "Lily: Snow Eater", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4241671631_ce7e24c307_o.jpg", "secret": "48402e5bcf", "media": "photo", "latitude": "0", "id": "4241671631", "tags": "winter snow lily"}, {"datetaken": "2009-12-31 13:39:25", "license": "2", "title": "Sledding January 2010", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4241671843_e4212a4c21_o.jpg", "secret": "c707db26d4", "media": "photo", "latitude": "0", "id": "4241671843", "tags": "winter snow lily sledding"}, {"datetaken": "2009-12-31 13:39:42", "license": "2", "title": "Sledding January 2010", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4242444390_abda047825_o.jpg", "secret": "7470d6b7a7", "media": "photo", "latitude": "0", "id": "4242444390", "tags": "winter snow lily sledding"}, {"datetaken": "2009-12-31 13:51:21", "license": "2", "title": "Lily with \"Papa!\" Face", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4242444672_25919823e5_o.jpg", "secret": "4af2b3061f", "media": "photo", "latitude": "0", "id": "4242444672", "tags": "winter snow lily"}, {"datetaken": "2009-12-31 13:51:24", "license": "2", "title": "Camera Shy Lily", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4241673417_8c17501c97_o.jpg", "secret": "9542420dc1", "media": "photo", "latitude": "0", "id": "4241673417", "tags": "winter snow lily"}, {"datetaken": "2009-12-31 13:51:52", "license": "2", "title": "Lily Eating Snow, Her New Favorite Pastime", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4241674027_a0a3051b4a_o.jpg", "secret": "40bf29af2c", "media": "photo", "latitude": "0", "id": "4241674027", "tags": "winter snow lily"}, {"datetaken": "2009-12-31 14:13:56", "license": "2", "title": "Mary at Paul's", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4242446742_2248d57335_o.jpg", "secret": "5c26abb41c", "media": "photo", "latitude": "0", "id": "4242446742", "tags": "mary"}, {"datetaken": "2009-12-31 14:14:41", "license": "2", "title": "Mary, Paul Rabinovitch & Laura", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2706/4242446906_7430509c1f_o.jpg", "secret": "a8b2914823", "media": "photo", "latitude": "0", "id": "4242446906", "tags": "vacation mary"}, {"datetaken": "2009-12-31 17:51:32", "license": "2", "title": "This is, unfortunetly, how Lily looks when asleep in the car", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2547/4241674847_6e1a315d10_o.jpg", "secret": "b1cd8021ab", "media": "photo", "latitude": "0", "id": "4241674847", "tags": "lily"}, {"datetaken": "2009-12-31 17:51:54", "license": "2", "title": "Sam Sleeping on Long Car Journey", "text": "", "album_id": "72157623007875703", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4241675117_a5d250b799_o.jpg", "secret": "f66ed05e33", "media": "photo", "latitude": "0", "id": "4241675117", "tags": "sam"}, {"datetaken": "2010-01-02 14:20:11", "license": "3", "title": "jascon 27", "text": "", "album_id": "72157623132781720", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4242859406_6a15037b15_o.jpg", "secret": "57fe5b3b7b", "media": "photo", "latitude": "0", "id": "4242859406", "tags": "new york house metal project portland gris for hotel mar us 1982 barco sweden prison sing conflict government 1997 british manager 27 ltd falklands navegar troops imo weare hierro verne offender c\u00e1rcel hmp embarcaci\u00f3n kingstown loating trimline jascon qlis piggybacked jlmera 8636180 flagstvincentandgrenadines csj8b3521 gt13512tons lb10227meters yearofbuild1979insweden"}, {"datetaken": "2010-01-02 14:20:36", "license": "3", "title": "jascon 27 (1)", "text": "", "album_id": "72157623132781720", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4242093229_2a14a6874f_o.jpg", "secret": "fd062ffccf", "media": "photo", "latitude": "0", "id": "4242093229", "tags": "new york house metal project portland gris for hotel mar us 1982 barco sweden prison sing conflict government 1997 british manager 27 ltd falklands navegar troops imo weare hierro verne offender c\u00e1rcel hmp embarcaci\u00f3n kingstown loating trimline jascon qlis piggybacked jlmera 8636180 flagstvincentandgrenadines csj8b3521 gt13512tons lb10227meters yearofbuild1979insweden"}, {"datetaken": "2010-01-02 14:22:46", "license": "3", "title": "jascon 27 (3)", "text": "", "album_id": "72157623132781720", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4242878552_92e6bfc8d0_o.jpg", "secret": "3f1981ecbc", "media": "photo", "latitude": "0", "id": "4242878552", "tags": "new york house metal project portland gris for hotel mar us 1982 barco sweden prison sing conflict government 1997 british manager 27 ltd falklands navegar troops imo weare hierro verne offender c\u00e1rcel hmp embarcaci\u00f3n kingstown loating trimline jascon qlis piggybacked jlmera 8636180 flagstvincentandgrenadines csj8b3521 gt13512tons lb10227meters yearofbuild1979insweden"}, {"datetaken": "2010-01-02 14:23:00", "license": "3", "title": "jascon 27 (4)", "text": "", "album_id": "72157623132781720", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4242113809_299a5fe513_o.jpg", "secret": "2a4da36ed8", "media": "photo", "latitude": "0", "id": "4242113809", "tags": "new york house metal project portland gris for hotel mar us 1982 barco sweden prison sing conflict government 1997 british manager 27 ltd falklands navegar troops imo weare hierro verne offender c\u00e1rcel hmp embarcaci\u00f3n kingstown loating trimline jascon qlis piggybacked jlmera 8636180 flagstvincentandgrenadines csj8b3521 gt13512tons lb10227meters yearofbuild1979insweden"}, {"datetaken": "2010-01-02 14:23:13", "license": "3", "title": "jascon 27 (5)", "text": "", "album_id": "72157623132781720", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2656/4242892426_fd87e0717d_o.jpg", "secret": "ee11a8e85f", "media": "photo", "latitude": "0", "id": "4242892426", "tags": "new york house metal project portland gris for hotel mar us 1982 barco sweden prison sing conflict government 1997 british manager 27 ltd falklands navegar troops imo weare hierro verne offender c\u00e1rcel hmp embarcaci\u00f3n kingstown loating trimline jascon qlis piggybacked jlmera 8636180 flagstvincentandgrenadines csj8b3521 gt13512tons lb10227meters yearofbuild1979insweden"}, {"datetaken": "2010-01-02 14:23:19", "license": "3", "title": "jascon 27 (6)", "text": "", "album_id": "72157623132781720", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4242898432_99eb4796df_o.jpg", "secret": "80dc1cb6ec", "media": "photo", "latitude": "0", "id": "4242898432", "tags": "new york house metal project portland gris for hotel mar us 1982 barco sweden prison sing conflict government 1997 british manager 27 ltd falklands navegar troops imo weare hierro verne offender c\u00e1rcel hmp embarcaci\u00f3n kingstown loating trimline jascon qlis piggybacked jlmera 8636180 flagstvincentandgrenadines csj8b3521 gt13512tons lb10227meters yearofbuild1979insweden"}, {"datetaken": "2010-01-02 14:23:55", "license": "3", "title": "jascon 27 (7)", "text": "", "album_id": "72157623132781720", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4242131931_62f5117298_o.jpg", "secret": "6db22a3b4a", "media": "photo", "latitude": "0", "id": "4242131931", "tags": "new york house metal project portland gris for hotel mar us 1982 barco sweden prison sing conflict government 1997 british manager 27 ltd falklands navegar troops imo weare hierro verne offender c\u00e1rcel hmp embarcaci\u00f3n kingstown loating trimline jascon qlis piggybacked jlmera 8636180 flagstvincentandgrenadines csj8b3521 gt13512tons lb10227meters yearofbuild1979insweden"}, {"datetaken": "2010-01-02 14:24:24", "license": "3", "title": "jascon 27 (8)", "text": "", "album_id": "72157623132781720", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2757/4242911284_0d1de600bb_o.jpg", "secret": "88945e73d9", "media": "photo", "latitude": "0", "id": "4242911284", "tags": "new york house metal project portland gris for hotel mar us 1982 barco sweden prison sing conflict government 1997 british manager 27 ltd falklands navegar troops imo weare hierro verne offender c\u00e1rcel hmp embarcaci\u00f3n kingstown loating trimline jascon qlis piggybacked jlmera 8636180 flagstvincentandgrenadines csj8b3521 gt13512tons lb10227meters yearofbuild1979insweden"}, {"datetaken": "2010-01-02 14:24:54", "license": "3", "title": "jascon 27 (9)", "text": "", "album_id": "72157623132781720", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4242145157_f1ed3efa9d_o.jpg", "secret": "c2291246f3", "media": "photo", "latitude": "0", "id": "4242145157", "tags": "new york house metal project portland gris for hotel mar us 1982 barco sweden prison sing conflict government 1997 british manager 27 ltd falklands navegar troops imo weare hierro verne offender c\u00e1rcel hmp embarcaci\u00f3n kingstown loating trimline jascon qlis piggybacked jlmera 8636180 flagstvincentandgrenadines csj8b3521 gt13512tons lb10227meters yearofbuild1979insweden"}, {"datetaken": "2010-01-02 14:26:52", "license": "3", "title": "jascon 27 (11)", "text": "", "album_id": "72157623132781720", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4242930938_099a5103c9_o.jpg", "secret": "fa6c354d24", "media": "photo", "latitude": "0", "id": "4242930938", "tags": "new york house metal project portland gris for hotel mar us 1982 barco sweden floating prison sing conflict government 1997 british manager 27 ltd falklands navegar troops imo weare hierro verne offender c\u00e1rcel hmp embarcaci\u00f3n kingstown trimline jascon qlis piggybacked jlmera 8636180 flagstvincentandgrenadines csj8b3521 gt13512tons lb10227meters yearofbuild1979insweden"}, {"datetaken": "2010-01-04 16:16:28", "license": "1", "title": "SANY0168", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2725/4248618767_f70b918240_o.jpg", "secret": "e0910744f6", "media": "photo", "latitude": "0", "id": "4248618767", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:17:07", "license": "1", "title": "SANY0169", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2509/4249393724_74d8c2226e_o.jpg", "secret": "a442895bac", "media": "photo", "latitude": "0", "id": "4249393724", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:17:42", "license": "1", "title": "SANY0170", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4248618923_0cb03795ae_o.jpg", "secret": "47a05c4b62", "media": "photo", "latitude": "0", "id": "4248618923", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:19:01", "license": "1", "title": "SANY0174", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4248618721_d68e570690_o.jpg", "secret": "b6a58cb485", "media": "photo", "latitude": "0", "id": "4248618721", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:20:32", "license": "1", "title": "SANY0176", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4248618367_625eeafcdc_o.jpg", "secret": "bff18df885", "media": "photo", "latitude": "0", "id": "4248618367", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:21:38", "license": "1", "title": "SANY0178", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2777/4249393302_6ed80a76ba_o.jpg", "secret": "40d9c0f646", "media": "photo", "latitude": "0", "id": "4249393302", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:22:28", "license": "1", "title": "SANY0180", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4248618589_e16164c022_o.jpg", "secret": "b515939bcf", "media": "photo", "latitude": "0", "id": "4248618589", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:25:05", "license": "1", "title": "SANY0185", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4249393528_1d5ea6db8f_o.jpg", "secret": "503d4ac12f", "media": "photo", "latitude": "0", "id": "4249393528", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:32:17", "license": "1", "title": "SANY0200", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2713/4248618197_8650e4d88d_o.jpg", "secret": "53e43cbc10", "media": "photo", "latitude": "0", "id": "4248618197", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:36:30", "license": "1", "title": "SANY0211", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2741/4248618103_0e43daf6c2_o.jpg", "secret": "20e2f8724f", "media": "photo", "latitude": "0", "id": "4248618103", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:39:01", "license": "1", "title": "SANY0219", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4249392926_9e2276d9a7_o.jpg", "secret": "e138ca8885", "media": "photo", "latitude": "0", "id": "4249392926", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:39:33", "license": "1", "title": "SANY0221", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4248617909_b08e162664_o.jpg", "secret": "f7b8245f6b", "media": "photo", "latitude": "0", "id": "4248617909", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:39:51", "license": "1", "title": "SANY0222", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2627/4248617985_5c153a41ae_o.jpg", "secret": "df02d980b4", "media": "photo", "latitude": "0", "id": "4248617985", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:42:09", "license": "1", "title": "SANY0226", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4249392734_bdbc8bfd7d_o.jpg", "secret": "b926acd902", "media": "photo", "latitude": "0", "id": "4249392734", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:43:13", "license": "1", "title": "SANY0230", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4248617591_7301b47cbb_o.jpg", "secret": "920e55ac29", "media": "photo", "latitude": "0", "id": "4248617591", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:43:37", "license": "1", "title": "SANY0231", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2796/4248617665_d1c624fac6_o.jpg", "secret": "5b42a8d68b", "media": "photo", "latitude": "0", "id": "4248617665", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:43:37", "license": "1", "title": "SANY0231", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4249393156_30b59d611f_o.jpg", "secret": "de4e6751e6", "media": "photo", "latitude": "0", "id": "4249393156", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:43:50", "license": "1", "title": "SANY0232", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4249392660_66d0acef80_o.jpg", "secret": "360deb96d1", "media": "photo", "latitude": "0", "id": "4249392660", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:44:22", "license": "1", "title": "SANY0234", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4249392284_4e998bdd60_o.jpg", "secret": "e9087575b8", "media": "photo", "latitude": "0", "id": "4249392284", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:44:38", "license": "1", "title": "SANY0235", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4249392198_c5671eff04_o.jpg", "secret": "bea51a9d81", "media": "photo", "latitude": "0", "id": "4249392198", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:46:20", "license": "1", "title": "SANY0239", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4248617217_25f69807c1_o.jpg", "secret": "7976c16a98", "media": "photo", "latitude": "0", "id": "4248617217", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2010-01-04 16:48:48", "license": "1", "title": "20200104-KLharbour", "text": "", "album_id": "72157623023149795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4249392080_3e22b5f7d4_o.jpg", "secret": "956f72b792", "media": "photo", "latitude": "0", "id": "4249392080", "tags": "winter white mist seascape cold ice misty silver grey frozen pastels delicate wonderland fairyland seamist subzero kivenlahti wintry pastelshades ruthvilmi ruthvilmicold"}, {"datetaken": "2009-12-20 12:05:19", "license": "4", "title": "L1010510.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4249389604_e3ebc0b650_o.jpg", "secret": "79ff8ed601", "media": "photo", "latitude": "0", "id": "4249389604", "tags": "chile valparaiso"}, {"datetaken": "2009-12-20 13:07:26", "license": "4", "title": "L1010521.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4249390336_6867e6e8d5_o.jpg", "secret": "654b6f7b47", "media": "photo", "latitude": "0", "id": "4249390336", "tags": "chile valparaiso brighton"}, {"datetaken": "2009-12-20 13:18:55", "license": "4", "title": "L1010540.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2680/4249391310_458dfac3b3_o.jpg", "secret": "495651d02a", "media": "photo", "latitude": "0", "id": "4249391310", "tags": "chile valparaiso"}, {"datetaken": "2009-12-20 13:42:21", "license": "4", "title": "L1010546.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2732/4248617341_73a17b342e_o.jpg", "secret": "c74bdc0ffb", "media": "photo", "latitude": "0", "id": "4248617341", "tags": "chile valparaiso"}, {"datetaken": "2009-12-20 13:44:24", "license": "4", "title": "L1010553.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4249393124_798d4c992b_o.jpg", "secret": "2897234587", "media": "photo", "latitude": "0", "id": "4249393124", "tags": "chile valparaiso"}, {"datetaken": "2009-12-21 01:23:09", "license": "4", "title": "L1010566.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4249394002_6af507fabc_o.jpg", "secret": "ca559204fc", "media": "photo", "latitude": "0", "id": "4249394002", "tags": "chile valparaiso"}, {"datetaken": "2009-12-21 01:25:29", "license": "4", "title": "L1010569.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4249394890_edea5c671b_o.jpg", "secret": "aebd807dda", "media": "photo", "latitude": "0", "id": "4249394890", "tags": "chile valparaiso"}, {"datetaken": "2009-12-21 01:26:18", "license": "4", "title": "L1010570.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4249395796_2e162d6944_o.jpg", "secret": "6d6b91b0fb", "media": "photo", "latitude": "0", "id": "4249395796", "tags": "chile valparaiso"}, {"datetaken": "2009-12-21 01:45:24", "license": "4", "title": "L1010572.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4249396572_e955396fba_o.jpg", "secret": "f1d3ab0710", "media": "photo", "latitude": "0", "id": "4249396572", "tags": "chile valparaiso"}, {"datetaken": "2009-12-21 01:53:03", "license": "4", "title": "L1010577.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4249397364_e371cfd5c8_o.jpg", "secret": "90aa903170", "media": "photo", "latitude": "0", "id": "4249397364", "tags": "chile valparaiso"}, {"datetaken": "2009-12-21 01:53:36", "license": "4", "title": "L1010578.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4248623075_9051ac2a8f_o.jpg", "secret": "248e17ff7b", "media": "photo", "latitude": "0", "id": "4248623075", "tags": "chile valparaiso cafe"}, {"datetaken": "2009-12-21 02:03:00", "license": "4", "title": "L1010579.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4249398902_b960389353_o.jpg", "secret": "1a0967ed9e", "media": "photo", "latitude": "0", "id": "4249398902", "tags": "chile tin valparaiso"}, {"datetaken": "2009-12-21 02:04:48", "license": "4", "title": "L1010582.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4248624793_93163c5d7a_o.jpg", "secret": "786e7a032d", "media": "photo", "latitude": "0", "id": "4248624793", "tags": "chile valparaiso"}, {"datetaken": "2009-12-21 02:18:01", "license": "4", "title": "L1010590.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4249400564_e605e778d0_o.jpg", "secret": "d2b664d15d", "media": "photo", "latitude": "0", "id": "4249400564", "tags": "chile valparaiso"}, {"datetaken": "2009-12-21 02:44:07", "license": "4", "title": "L1010599.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4248626593_9f7cbb4be8_o.jpg", "secret": "bc494dfb3a", "media": "photo", "latitude": "0", "id": "4248626593", "tags": "chile valparaiso balcony"}, {"datetaken": "2009-12-21 02:52:04", "license": "4", "title": "L1010609.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4249402354_303cdb2a6c_o.jpg", "secret": "d29aa18154", "media": "photo", "latitude": "0", "id": "4249402354", "tags": "chile valparaiso"}, {"datetaken": "2009-12-21 08:45:39", "license": "4", "title": "L1010616.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2802/4249403114_8a5e707630_o.jpg", "secret": "a6e6ddca87", "media": "photo", "latitude": "0", "id": "4249403114", "tags": "chile valparaiso balcony"}, {"datetaken": "2009-12-21 09:04:36", "license": "4", "title": "L1010618.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2544/4248629085_c1902c174a_o.jpg", "secret": "6687d9127a", "media": "photo", "latitude": "0", "id": "4248629085", "tags": "chile house valparaiso"}, {"datetaken": "2009-12-21 10:16:39", "license": "4", "title": "L1010627.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2596/4249404812_bf093abbba_o.jpg", "secret": "7b1606ab51", "media": "photo", "latitude": "0", "id": "4249404812", "tags": "chile valparaiso harbour"}, {"datetaken": "2009-12-21 11:12:57", "license": "4", "title": "L1010663.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2802/4248630797_6c37a4b6a0_o.jpg", "secret": "6efbfeec5e", "media": "photo", "latitude": "0", "id": "4248630797", "tags": "chile valparaiso"}, {"datetaken": "2009-12-21 11:14:11", "license": "4", "title": "L1010667.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2712/4249406326_f473a34fbb_o.jpg", "secret": "d4ce87740e", "media": "photo", "latitude": "0", "id": "4249406326", "tags": "chile valparaiso lift"}, {"datetaken": "2009-12-21 11:16:34", "license": "4", "title": "L1010671.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4248632535_34a0ab32c3_o.jpg", "secret": "1c9eb6ee43", "media": "photo", "latitude": "0", "id": "4248632535", "tags": "chile architecture valparaiso"}, {"datetaken": "2009-12-21 11:29:30", "license": "4", "title": "L1010683.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4248633385_687f012124_o.jpg", "secret": "46b018e9da", "media": "photo", "latitude": "0", "id": "4248633385", "tags": "chile architecture tin valparaiso"}, {"datetaken": "2009-12-21 12:25:57", "license": "4", "title": "L1010700.jpg", "text": "", "album_id": "72157623165416012", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4248634247_a468667a9b_o.jpg", "secret": "0a1776f942", "media": "photo", "latitude": "0", "id": "4248634247", "tags": "chile valparaiso cafe"}, {"datetaken": "2009-12-27 21:22:38", "license": "3", "title": "Paper mache deer head", "text": "", "album_id": "72157623035815239", "longitude": "-1.483583", "url_o": "https://farm5.staticflickr.com/4065/4253093965_d24fa40aab_o.jpg", "secret": "70201c80ed", "media": "photo", "latitude": "53.553847", "id": "4253093965", "tags": ""}, {"datetaken": "2009-12-27 21:22:55", "license": "3", "title": "I love wood", "text": "", "album_id": "72157623035815239", "longitude": "-1.483583", "url_o": "https://farm3.staticflickr.com/2696/4253095215_4c1a5a3699_o.jpg", "secret": "f534a23c7b", "media": "photo", "latitude": "53.553847", "id": "4253095215", "tags": ""}, {"datetaken": "2009-12-27 21:23:18", "license": "3", "title": "Sitting by the fire at Barnsley House Pub", "text": "", "album_id": "72157623035815239", "longitude": "-1.483583", "url_o": "https://farm5.staticflickr.com/4015/4253096615_23d987eb31_o.jpg", "secret": "335ec38c24", "media": "photo", "latitude": "53.553847", "id": "4253096615", "tags": ""}, {"datetaken": "2009-12-27 21:31:20", "license": "3", "title": "Lower Slaughter", "text": "", "album_id": "72157623035815239", "longitude": "-1.768455", "url_o": "https://farm3.staticflickr.com/2762/4253097911_ef805f398f_o.jpg", "secret": "96885d6702", "media": "photo", "latitude": "51.900011", "id": "4253097911", "tags": ""}, {"datetaken": "2009-12-27 22:37:15", "license": "3", "title": "Bourton on the water", "text": "", "album_id": "72157623035815239", "longitude": "-1.768970", "url_o": "https://farm5.staticflickr.com/4019/4253099117_ce730b650b_o.jpg", "secret": "8f70f6db87", "media": "photo", "latitude": "51.887617", "id": "4253099117", "tags": ""}, {"datetaken": "2009-12-27 22:37:40", "license": "3", "title": "Don't fall in baby!", "text": "", "album_id": "72157623035815239", "longitude": "-1.768970", "url_o": "https://farm3.staticflickr.com/2758/4253100497_4be493550e_o.jpg", "secret": "aa6a0ed365", "media": "photo", "latitude": "51.887617", "id": "4253100497", "tags": ""}, {"datetaken": "2009-12-27 22:50:03", "license": "3", "title": "The Water in Bourton on the water", "text": "", "album_id": "72157623035815239", "longitude": "-1.768970", "url_o": "https://farm5.staticflickr.com/4035/4253101795_85ba8b79dc_o.jpg", "secret": "bd16803464", "media": "photo", "latitude": "51.887617", "id": "4253101795", "tags": ""}, {"datetaken": "2009-12-28 21:03:15", "license": "3", "title": "Gloucester Cathedral", "text": "", "album_id": "72157623035815239", "longitude": "-2.245330", "url_o": "https://farm3.staticflickr.com/2746/4253852754_33d808f5b9_o.jpg", "secret": "e1e159fbe6", "media": "photo", "latitude": "51.866740", "id": "4253852754", "tags": ""}, {"datetaken": "2009-12-28 21:07:17", "license": "3", "title": "Gloucester Cathedral", "text": "", "album_id": "72157623035815239", "longitude": "-2.245330", "url_o": "https://farm3.staticflickr.com/2715/4253085373_2813b1127f_o.jpg", "secret": "3b7f5a1962", "media": "photo", "latitude": "51.866740", "id": "4253085373", "tags": ""}, {"datetaken": "2009-12-28 21:13:56", "license": "3", "title": "DSCN3522", "text": "", "album_id": "72157623035815239", "longitude": "-2.245330", "url_o": "https://farm5.staticflickr.com/4003/4253855546_4baf712550_o.jpg", "secret": "1ebe5c409b", "media": "photo", "latitude": "51.866740", "id": "4253855546", "tags": ""}, {"datetaken": "2009-12-28 21:20:33", "license": "3", "title": "Modern Stained Glass", "text": "", "album_id": "72157623035815239", "longitude": "-2.245330", "url_o": "https://farm3.staticflickr.com/2690/4253088235_dbb1133643_o.jpg", "secret": "1750aa44ec", "media": "photo", "latitude": "51.866740", "id": "4253088235", "tags": ""}, {"datetaken": "2009-12-28 21:23:01", "license": "3", "title": "Ducks in a row", "text": "", "album_id": "72157623035815239", "longitude": "-2.245330", "url_o": "https://farm5.staticflickr.com/4046/4253858132_a249e91e17_o.jpg", "secret": "b33b747a05", "media": "photo", "latitude": "51.866740", "id": "4253858132", "tags": ""}, {"datetaken": "2009-12-28 21:37:54", "license": "3", "title": "Stained Glass Window", "text": "", "album_id": "72157623035815239", "longitude": "-2.245330", "url_o": "https://farm3.staticflickr.com/2738/4253859750_eb1a97d94d_o.jpg", "secret": "bc97182643", "media": "photo", "latitude": "51.866740", "id": "4253859750", "tags": ""}, {"datetaken": "2009-12-28 21:43:45", "license": "3", "title": "Tudor House", "text": "", "album_id": "72157623035815239", "longitude": "-2.245330", "url_o": "https://farm5.staticflickr.com/4013/4253860848_a723e219f2_o.jpg", "secret": "bc6afd832f", "media": "photo", "latitude": "51.866740", "id": "4253860848", "tags": ""}, {"datetaken": "2009-12-29 18:22:07", "license": "3", "title": "The all knowing and seeing eye", "text": "", "album_id": "72157623035815239", "longitude": "-2.195377", "url_o": "https://farm3.staticflickr.com/2753/4253871440_e95ebe9bd0_o.jpg", "secret": "b77636782c", "media": "photo", "latitude": "51.786001", "id": "4253871440", "tags": "holidaysinthecotswolds"}, {"datetaken": "2009-12-29 18:24:20", "license": "3", "title": "Cotswolds 88", "text": "", "album_id": "72157623035815239", "longitude": "-2.195377", "url_o": "https://farm5.staticflickr.com/4058/4253872902_d564b175db_o.jpg", "secret": "0cb1c531f8", "media": "photo", "latitude": "51.786001", "id": "4253872902", "tags": "holidaysinthecotswolds"}, {"datetaken": "2009-12-29 18:24:38", "license": "3", "title": "Zebras everywhere", "text": "", "album_id": "72157623035815239", "longitude": "-2.195377", "url_o": "https://farm3.staticflickr.com/2788/4253874370_3a0fc007a5_o.jpg", "secret": "e24e9bd52e", "media": "photo", "latitude": "51.786001", "id": "4253874370", "tags": "holidaysinthecotswolds"}, {"datetaken": "2009-12-29 18:25:38", "license": "3", "title": "A bit chilly for a meal outdoors", "text": "", "album_id": "72157623035815239", "longitude": "-2.195377", "url_o": "https://farm5.staticflickr.com/4035/4253875856_747a6e4c5e_o.jpg", "secret": "01f9334d2b", "media": "photo", "latitude": "51.786001", "id": "4253875856", "tags": "holidaysinthecotswolds"}, {"datetaken": "2009-12-29 18:26:14", "license": "3", "title": "Sitting in the resident's lounge", "text": "", "album_id": "72157623035815239", "longitude": "-2.195377", "url_o": "https://farm5.staticflickr.com/4068/4253109049_93da9797af_o.jpg", "secret": "b1020cc8fb", "media": "photo", "latitude": "51.786001", "id": "4253109049", "tags": "holidaysinthecotswolds"}, {"datetaken": "2009-12-29 18:27:20", "license": "3", "title": "Back to the 70s", "text": "", "album_id": "72157623035815239", "longitude": "-2.195377", "url_o": "https://farm3.staticflickr.com/2770/4253110387_e8942c9c1f_o.jpg", "secret": "43ee3016a8", "media": "photo", "latitude": "51.786001", "id": "4253110387", "tags": "holidaysinthecotswolds"}, {"datetaken": "2009-12-29 18:27:31", "license": "3", "title": "I'd like a G&T please", "text": "", "album_id": "72157623035815239", "longitude": "-2.195377", "url_o": "https://farm5.staticflickr.com/4012/4253879906_84c06e16df_o.jpg", "secret": "01c76f4e1d", "media": "photo", "latitude": "51.786001", "id": "4253879906", "tags": "holidaysinthecotswolds"}, {"datetaken": "2009-12-29 18:29:46", "license": "3", "title": "Baby and I", "text": "", "album_id": "72157623035815239", "longitude": "-2.195377", "url_o": "https://farm5.staticflickr.com/4005/4253113455_b5b5fdaaa0_o.jpg", "secret": "72aa111b32", "media": "photo", "latitude": "51.786001", "id": "4253113455", "tags": "holidaysinthecotswolds"}, {"datetaken": "2009-12-29 18:30:16", "license": "3", "title": "Our dining room", "text": "", "album_id": "72157623035815239", "longitude": "-2.195377", "url_o": "https://farm3.staticflickr.com/2764/4253883112_4e95e070fe_o.jpg", "secret": "f308f7c323", "media": "photo", "latitude": "51.786001", "id": "4253883112", "tags": "holidaysinthecotswolds"}, {"datetaken": "2009-12-29 18:31:16", "license": "3", "title": "Cotswolds 88", "text": "", "album_id": "72157623035815239", "longitude": "-2.195377", "url_o": "https://farm5.staticflickr.com/4056/4253116607_7291834072_o.jpg", "secret": "97769515f4", "media": "photo", "latitude": "51.786001", "id": "4253116607", "tags": "holidaysinthecotswolds"}, {"datetaken": "2009-12-29 18:34:54", "license": "3", "title": "Painswick", "text": "", "album_id": "72157623035815239", "longitude": "-2.195377", "url_o": "https://farm3.staticflickr.com/2700/4253886156_9e8b6a3069_o.jpg", "secret": "7998cdcbfd", "media": "photo", "latitude": "51.786001", "id": "4253886156", "tags": "holidaysinthecotswolds"}, {"datetaken": "2009-12-29 18:38:06", "license": "3", "title": "99 Yews", "text": "", "album_id": "72157623035815239", "longitude": "-2.195377", "url_o": "https://farm5.staticflickr.com/4002/4253119085_6a773172e0_o.jpg", "secret": "6cf3fef99f", "media": "photo", "latitude": "51.786001", "id": "4253119085", "tags": "holidaysinthecotswolds"}, {"datetaken": "2009-12-29 18:40:49", "license": "3", "title": "Raining as always", "text": "", "album_id": "72157623035815239", "longitude": "-2.195377", "url_o": "https://farm5.staticflickr.com/4029/4253120663_879f95f1c4_o.jpg", "secret": "2172239bac", "media": "photo", "latitude": "51.786001", "id": "4253120663", "tags": "holidaysinthecotswolds"}, {"datetaken": "2009-12-29 20:32:54", "license": "3", "title": "Old Mill", "text": "", "album_id": "72157623035815239", "longitude": "-1.768455", "url_o": "https://farm5.staticflickr.com/4007/4253890174_0c53839694_o.jpg", "secret": "e65aa195b8", "media": "photo", "latitude": "51.900011", "id": "4253890174", "tags": "holidaysinthecotswolds"}, {"datetaken": "2009-05-23 12:33:56", "license": "4", "title": "The Canal", "text": "", "album_id": "72157623160153286", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4254449966_055ae620ff_o.jpg", "secret": "5c5421214f", "media": "photo", "latitude": "0", "id": "4254449966", "tags": "westburyonsevern westburycourt"}, {"datetaken": "2009-05-23 12:35:14", "license": "4", "title": "The Canal", "text": "", "album_id": "72157623160153286", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2754/4253684919_742fdaa34b_o.jpg", "secret": "9225f1fcc6", "media": "photo", "latitude": "0", "id": "4253684919", "tags": "westburyonsevern westburycourt"}, {"datetaken": "2009-05-23 12:35:34", "license": "4", "title": "The Canal", "text": "", "album_id": "72157623160153286", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4254450234_d520e6c2e8_o.jpg", "secret": "d676c5f1f4", "media": "photo", "latitude": "0", "id": "4254450234", "tags": "westburyonsevern westburycourt"}, {"datetaken": "2009-05-23 12:36:17", "license": "4", "title": "Inside the Garden House", "text": "", "album_id": "72157623160153286", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2712/4254450324_6c30b6da00_o.jpg", "secret": "9ecd81885e", "media": "photo", "latitude": "0", "id": "4254450324", "tags": "westburyonsevern westburycourt"}, {"datetaken": "2009-05-23 12:42:25", "license": "4", "title": "The Flower Garden", "text": "", "album_id": "72157623160153286", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2710/4253685433_4e284a9851_o.jpg", "secret": "0ff9a2caa7", "media": "photo", "latitude": "0", "id": "4253685433", "tags": "westburyonsevern westburycourt"}, {"datetaken": "2009-05-23 12:43:09", "license": "4", "title": "The Flower Garden", "text": "", "album_id": "72157623160153286", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4254450768_546568207a_o.jpg", "secret": "a6a23d0ba4", "media": "photo", "latitude": "0", "id": "4254450768", "tags": "westburyonsevern westburycourt"}, {"datetaken": "2009-05-23 12:45:37", "license": "4", "title": "The Garden House", "text": "", "album_id": "72157623160153286", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4254450954_d01ebc2b8a_o.jpg", "secret": "10908197f9", "media": "photo", "latitude": "0", "id": "4254450954", "tags": "westburyonsevern westburycourt"}, {"datetaken": "2009-05-23 12:46:02", "license": "4", "title": "Rictor at Westbury", "text": "", "album_id": "72157623160153286", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4253685935_09f00b4c30_o.jpg", "secret": "e30388830a", "media": "photo", "latitude": "0", "id": "4253685935", "tags": "rictor westburyonsevern westburycourt"}, {"datetaken": "2009-05-23 12:46:23", "license": "4", "title": "Rictor in front of the Garden House", "text": "", "album_id": "72157623160153286", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4254451236_dc8b239238_o.jpg", "secret": "3166459114", "media": "photo", "latitude": "0", "id": "4254451236", "tags": "rictor westburyonsevern westburycourt"}, {"datetaken": "2009-05-23 12:47:31", "license": "4", "title": "The Flower Garden", "text": "", "album_id": "72157623160153286", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4254451390_c2469eaea2_o.jpg", "secret": "a1e099e54c", "media": "photo", "latitude": "0", "id": "4254451390", "tags": "westburyonsevern westburycourt"}, {"datetaken": "2009-05-23 12:52:53", "license": "4", "title": "The Banqueting House", "text": "", "album_id": "72157623160153286", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4253683763_0455415ea4_o.jpg", "secret": "c4d96f0193", "media": "photo", "latitude": "0", "id": "4253683763", "tags": "westburyonsevern westburycourt"}, {"datetaken": "2009-05-23 12:57:34", "license": "4", "title": "The Banqueting House", "text": "", "album_id": "72157623160153286", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4254449090_9ebc884562_o.jpg", "secret": "b9628810a3", "media": "photo", "latitude": "0", "id": "4254449090", "tags": "westburyonsevern westburycourt"}, {"datetaken": "2009-05-23 12:58:04", "license": "4", "title": "The Banqueting House", "text": "", "album_id": "72157623160153286", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4253684081_d0739ec8dc_o.jpg", "secret": "002f9b080a", "media": "photo", "latitude": "0", "id": "4253684081", "tags": "westburyonsevern westburycourt"}, {"datetaken": "2009-05-23 12:58:30", "license": "4", "title": "The Banqueting House", "text": "", "album_id": "72157623160153286", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4253684245_84b77d4bfd_o.jpg", "secret": "8b5cfcb4b7", "media": "photo", "latitude": "0", "id": "4253684245", "tags": "westburyonsevern westburycourt"}, {"datetaken": "2009-05-23 13:02:13", "license": "4", "title": "The Garden House", "text": "", "album_id": "72157623160153286", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4253684397_61b362851f_o.jpg", "secret": "d3a6196d2b", "media": "photo", "latitude": "0", "id": "4253684397", "tags": "westburyonsevern westburycourt"}, {"datetaken": "2009-05-23 13:05:05", "license": "4", "title": "The Garden House", "text": "", "album_id": "72157623160153286", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4253684561_a46f045501_o.jpg", "secret": "70213a9ffd", "media": "photo", "latitude": "0", "id": "4253684561", "tags": "westburyonsevern westburycourt"}, {"datetaken": "2009-05-23 13:09:48", "license": "4", "title": "The Garden House", "text": "", "album_id": "72157623160153286", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4253684677_faa92c067d_o.jpg", "secret": "18aeac6cee", "media": "photo", "latitude": "0", "id": "4253684677", "tags": "westburyonsevern westburycourt"}, {"datetaken": "2008-06-18 11:33:43", "license": "3", "title": "20080618_422", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4259593288_aec9717ce3_o.jpg", "secret": "c725b0e8e6", "media": "photo", "latitude": "0", "id": "4259593288", "tags": "house brittany locmariaquer golfedumorbihan"}, {"datetaken": "2008-06-18 12:35:27", "license": "3", "title": "20080618_426", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4259595084_f6ebc4f462_o.jpg", "secret": "89e41d6771", "media": "photo", "latitude": "0", "id": "4259595084", "tags": "brittany golfedumorbihan"}, {"datetaken": "2008-06-18 13:33:59", "license": "3", "title": "20080618_428", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2764/4258840025_9d0baba09b_o.jpg", "secret": "78a253ab5c", "media": "photo", "latitude": "0", "id": "4258840025", "tags": "brittany \u00eeledarz"}, {"datetaken": "2008-06-18 13:34:19", "license": "3", "title": "20080618_429", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4259596548_f635269f83_o.jpg", "secret": "571b3955ea", "media": "photo", "latitude": "0", "id": "4259596548", "tags": "brittany \u00eeledarz"}, {"datetaken": "2008-06-18 15:38:41", "license": "3", "title": "20080618_436", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4259599916_d977475d7a_o.jpg", "secret": "1a72b30d83", "media": "photo", "latitude": "0", "id": "4259599916", "tags": "boats brittany golfedumorbihan"}, {"datetaken": "2008-06-18 15:58:26", "license": "3", "title": "20080618_437", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4259600278_29e9d82e7b_o.jpg", "secret": "3bb3039c0a", "media": "photo", "latitude": "0", "id": "4259600278", "tags": "brittany golfedumorbihan"}, {"datetaken": "2008-06-18 15:59:16", "license": "3", "title": "20080618_438", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4258844749_fe931ca59b_o.jpg", "secret": "884690b246", "media": "photo", "latitude": "0", "id": "4258844749", "tags": "boats brittany golfedumorbihan sinagot"}, {"datetaken": "2008-06-18 17:02:56", "license": "3", "title": "20080618_443", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4258846553_9379725b60_o.jpg", "secret": "da2754444d", "media": "photo", "latitude": "0", "id": "4258846553", "tags": "boats brittany golfedumorbihan"}, {"datetaken": "2008-06-18 17:05:33", "license": "3", "title": "20080618_445", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4258847603_768b2776ce_o.jpg", "secret": "f7fbb3cf41", "media": "photo", "latitude": "0", "id": "4258847603", "tags": "brittany \u00eeleauxmoines"}, {"datetaken": "2008-06-18 17:22:32", "license": "3", "title": "20080618_448", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4259605088_613616f325_o.jpg", "secret": "3ce27df01e", "media": "photo", "latitude": "0", "id": "4259605088", "tags": "brittany \u00eeleauxmoines"}, {"datetaken": "2008-06-18 17:54:28", "license": "3", "title": "20080618_450", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4259605924_8466cf86b2_o.jpg", "secret": "7b51b35421", "media": "photo", "latitude": "0", "id": "4259605924", "tags": "brittany \u00eeleauxmoines"}, {"datetaken": "2008-06-18 17:54:54", "license": "3", "title": "20080618_451", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4259606322_6cb844f769_o.jpg", "secret": "a86cc89147", "media": "photo", "latitude": "0", "id": "4259606322", "tags": "brittany \u00eeleauxmoines"}, {"datetaken": "2008-06-18 17:55:33", "license": "3", "title": "20080618_453", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4258851249_c0cbb182c1_o.jpg", "secret": "f484b4a693", "media": "photo", "latitude": "0", "id": "4258851249", "tags": "brittany \u00eeleauxmoines"}, {"datetaken": "2008-06-18 17:56:00", "license": "3", "title": "20080618_454", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2668/4259607722_c0a4e197ff_o.jpg", "secret": "5355921d98", "media": "photo", "latitude": "0", "id": "4259607722", "tags": "brittany \u00eeleauxmoines"}, {"datetaken": "2008-06-18 18:03:41", "license": "3", "title": "20080618_455", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2793/4259608170_e703b1b2a6_o.jpg", "secret": "f885c15c5a", "media": "photo", "latitude": "0", "id": "4259608170", "tags": "brittany \u00eeleauxmoines"}, {"datetaken": "2008-06-18 18:04:37", "license": "3", "title": "20080618_457", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2720/4258852823_c53d4028e3_o.jpg", "secret": "99683c868e", "media": "photo", "latitude": "0", "id": "4258852823", "tags": "brittany \u00eeleauxmoines"}, {"datetaken": "2008-06-18 18:30:19", "license": "3", "title": "20080618_480", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4259618850_126346454a_o.jpg", "secret": "900c8e17be", "media": "photo", "latitude": "0", "id": "4259618850", "tags": "brittany golfedumorbihan"}, {"datetaken": "2008-06-18 19:08:52", "license": "3", "title": "20080618_482", "text": "", "album_id": "72157635221100135", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4258863793_7d8892b34e_o.jpg", "secret": "5849bbaa46", "media": "photo", "latitude": "0", "id": "4258863793", "tags": "brittany locmariaquer"}, {"datetaken": "2010-01-09 11:18:28", "license": "3", "title": "sun through the trees", "text": "", "album_id": "72157623063255669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4266031000_9ee7dce9ca_o.jpg", "secret": "b4d972667f", "media": "photo", "latitude": "0", "id": "4266031000", "tags": ""}, {"datetaken": "2010-01-09 11:59:10", "license": "3", "title": "silent", "text": "", "album_id": "72157623063255669", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2738/4266044950_2ebc8a4b19_o.jpg", "secret": "13006242cc", "media": "photo", "latitude": "0", "id": "4266044950", "tags": "winter white snow colour fence scotland still frost aberdeenshire deeside olympuse3 evolte3"}, {"datetaken": "2010-01-09 13:21:35", "license": "3", "title": "blue skys", "text": "", "album_id": "72157623063255669", "longitude": "-3.458118", "url_o": "https://farm5.staticflickr.com/4069/4266045784_76a0f86e2a_o.jpg", "secret": "d79849b7a4", "media": "photo", "latitude": "56.817018", "id": "4266045784", "tags": "blue winter sky white snow colour scotland still woods aberdeenshire deeside olympuse3 evolte3"}, {"datetaken": "2010-01-09 13:22:11", "license": "3", "title": "tree line", "text": "", "album_id": "72157623063255669", "longitude": "-3.458118", "url_o": "https://farm5.staticflickr.com/4061/4265298641_dbd8137690_o.jpg", "secret": "27cd1b2f70", "media": "photo", "latitude": "56.817018", "id": "4265298641", "tags": "trees winter blackandwhite snow aberdeenshire glenshee deeside olympuse3 evolte3"}, {"datetaken": "2010-01-09 13:29:06", "license": "3", "title": "not much to eat here", "text": "", "album_id": "72157623063255669", "longitude": "-3.458118", "url_o": "https://farm5.staticflickr.com/4009/4265299123_14f9e5c1e8_o.jpg", "secret": "0c02cdc730", "media": "photo", "latitude": "56.817018", "id": "4265299123", "tags": "winter snow aberdeenshire deer deeside olympuse3 evolte3"}, {"datetaken": "2010-01-09 13:29:36", "license": "3", "title": "nothing much lives here", "text": "", "album_id": "72157623063255669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4265285701_9f99d199fe_o.jpg", "secret": "7ecc96ff3c", "media": "photo", "latitude": "0", "id": "4265285701", "tags": ""}, {"datetaken": "2010-01-09 13:33:41", "license": "3", "title": "house of birds", "text": "", "album_id": "72157623063255669", "longitude": "-3.458118", "url_o": "https://farm3.staticflickr.com/2754/4265299729_12e247cd18_o.jpg", "secret": "bca2465fdd", "media": "photo", "latitude": "56.817018", "id": "4265299729", "tags": "old winter white snow colour broken scotland aberdeenshire glenshee deeside olympuse3 evolte3"}, {"datetaken": "2010-01-09 13:46:58", "license": "3", "title": "where did they all come from", "text": "", "album_id": "72157623063255669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4266039052_bbabdceb72_o.jpg", "secret": "0181469dd3", "media": "photo", "latitude": "0", "id": "4266039052", "tags": "winter white scotland glenshee olympuse3 evolte3"}, {"datetaken": "2010-01-09 13:47:06", "license": "3", "title": "all alone", "text": "", "album_id": "72157623063255669", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4265292551_19d6aa1f4b_o.jpg", "secret": "758cf19b6b", "media": "photo", "latitude": "0", "id": "4265292551", "tags": "winter white snow abstract aberdeenshire angle glenshee deeside olympuse3 evolte3"}, {"datetaken": "2010-01-09 13:47:54", "license": "3", "title": "sking", "text": "", "album_id": "72157623063255669", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2792/4265292063_80abe473a3_o.jpg", "secret": "2261e44fef", "media": "photo", "latitude": "0", "id": "4265292063", "tags": ""}, {"datetaken": "2010-01-09 14:06:08", "license": "3", "title": "all alone 2", "text": "", "album_id": "72157623063255669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4265289875_f4304505f0_o.jpg", "secret": "a0c01a4d2c", "media": "photo", "latitude": "0", "id": "4265289875", "tags": "winter blackandwhite white snow stone scotland still glenshee deeside olympuse3 evolte3"}, {"datetaken": "2010-01-09 14:16:46", "license": "3", "title": "all alone 3", "text": "", "album_id": "72157623063255669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4265289645_c34c501762_o.jpg", "secret": "b8bfeb42c7", "media": "photo", "latitude": "0", "id": "4265289645", "tags": "trees winter white snow abstract scotland angle glenshee evolte3"}, {"datetaken": "2010-01-09 14:19:46", "license": "3", "title": "its cauld", "text": "", "album_id": "72157623063255669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4266036616_4f4ac0a9d0_o.jpg", "secret": "361b369e7d", "media": "photo", "latitude": "0", "id": "4266036616", "tags": "winter blackandwhite white snow ice architecture deeside olympuse3 evolte3"}, {"datetaken": "2010-01-09 14:26:25", "license": "3", "title": "winter", "text": "", "album_id": "72157623063255669", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2758/4266035984_126e77a4d8_o.jpg", "secret": "68254506fe", "media": "photo", "latitude": "0", "id": "4266035984", "tags": "trees winter blackandwhite white snow scotland woods aberdeenshire evolte3"}, {"datetaken": "2010-01-09 14:27:40", "license": "3", "title": "snow covered trees", "text": "", "album_id": "72157623063255669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4266035112_ba13f431e8_o.jpg", "secret": "9dc6caa30b", "media": "photo", "latitude": "0", "id": "4266035112", "tags": ""}, {"datetaken": "2010-01-09 14:27:52", "license": "3", "title": "trees", "text": "", "album_id": "72157623063255669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4266034638_6ee27b6707_o.jpg", "secret": "32d1b2a16a", "media": "photo", "latitude": "0", "id": "4266034638", "tags": ""}, {"datetaken": "2010-01-09 15:31:58", "license": "3", "title": "river feugh in winter", "text": "", "album_id": "72157623063255669", "longitude": "-2.493059", "url_o": "https://farm5.staticflickr.com/4032/4266034212_16eb3dc13c_o.jpg", "secret": "ebfe14f4fa", "media": "photo", "latitude": "57.045270", "id": "4266034212", "tags": "winter white snow colour ice water stone river scotland waterfall movement woods rocks frost feugh olympuse3 evolte3"}, {"datetaken": "2010-01-09 15:34:45", "license": "3", "title": "heavy", "text": "", "album_id": "72157623063255669", "longitude": "-2.493059", "url_o": "https://farm5.staticflickr.com/4027/4266038374_0a3cfc0501_o.jpg", "secret": "f8cf30aa12", "media": "photo", "latitude": "57.045270", "id": "4266038374", "tags": "winter white snow scotland still woods olympuse3 evolte3"}, {"datetaken": "2010-01-09 15:34:57", "license": "3", "title": "brrrrrr", "text": "", "album_id": "72157623063255669", "longitude": "-2.493059", "url_o": "https://farm5.staticflickr.com/4046/4265296779_3089e22580_o.jpg", "secret": "24a86e66cd", "media": "photo", "latitude": "57.045270", "id": "4265296779", "tags": "blue winter white snow blur colour water river scotland movement rocks frost aberdeenshire olympuse3 evolte3"}, {"datetaken": "2010-01-09 15:35:11", "license": "3", "title": "snow day", "text": "", "album_id": "72157623063255669", "longitude": "-2.493059", "url_o": "https://farm3.staticflickr.com/2755/4265296251_0291c2a778_o.jpg", "secret": "e2142565f5", "media": "photo", "latitude": "57.045270", "id": "4265296251", "tags": "winter white snow colour water stone river scotland movement rocks aberdeenshire olympuse3 evolte3"}, {"datetaken": "2010-01-09 15:35:30", "license": "3", "title": "little bit of colour", "text": "", "album_id": "72157623063255669", "longitude": "-2.493059", "url_o": "https://farm3.staticflickr.com/2714/4266042974_64f1c5d773_o.jpg", "secret": "437b2b907f", "media": "photo", "latitude": "57.045270", "id": "4266042974", "tags": "trees winter white snow scotland woods aberdeenshire"}, {"datetaken": "2010-01-10 13:24:26", "license": "3", "title": "river feugh HDR", "text": "", "album_id": "72157623063255669", "longitude": "-2.493059", "url_o": "https://farm5.staticflickr.com/4001/4266031812_1bdc765424_o.jpg", "secret": "6380b1a2a1", "media": "photo", "latitude": "57.045270", "id": "4266031812", "tags": ""}, {"datetaken": "2010-01-10 13:32:19", "license": "3", "title": "hdr ish", "text": "", "album_id": "72157623063255669", "longitude": "-2.493059", "url_o": "https://farm5.staticflickr.com/4026/4265285301_94328ded83_o.jpg", "secret": "2b8d41bac0", "media": "photo", "latitude": "57.045270", "id": "4265285301", "tags": ""}, {"datetaken": "2010-01-10 14:19:18", "license": "3", "title": "snow balls 1", "text": "", "album_id": "72157623063255669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4265294917_833dbcf29e_o.jpg", "secret": "795a16c10a", "media": "photo", "latitude": "0", "id": "4265294917", "tags": "winter white snow scotland aberdeenshire deeside olympuse3 evolte3"}, {"datetaken": "2010-01-10 14:19:46", "license": "3", "title": "snow balls 2", "text": "", "album_id": "72157623063255669", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4266041872_0e061ffd3f_o.jpg", "secret": "12cda60939", "media": "photo", "latitude": "0", "id": "4266041872", "tags": "winter white snow abstract scotland close aberdeenshire angle"}, {"datetaken": "2010-01-10 14:21:49", "license": "3", "title": "bridge to somewhere", "text": "", "album_id": "72157623063255669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4266041242_f978f79e77_o.jpg", "secret": "a4506ef0df", "media": "photo", "latitude": "0", "id": "4266041242", "tags": "bridge winter white snow colour water architecture river scotland aberdeenshire olympuse3 evolte3"}, {"datetaken": "2010-01-10 14:23:41", "license": "3", "title": "field of snow", "text": "", "album_id": "72157623063255669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4266040762_4d8741b7e6_o.jpg", "secret": "f78e567c1a", "media": "photo", "latitude": "0", "id": "4266040762", "tags": "winter white scotland still aberdeenshire olympuse3 evolte3"}, {"datetaken": "2010-01-10 14:25:16", "license": "3", "title": "still", "text": "", "album_id": "72157623063255669", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4266029672_8948d2db46_o.jpg", "secret": "8b7c026375", "media": "photo", "latitude": "0", "id": "4266029672", "tags": ""}, {"datetaken": "2010-01-11 18:09:32", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1299", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm5.staticflickr.com/4006/4266029369_b93d8742b7_o.jpg", "secret": "986f05b579", "media": "photo", "latitude": "45.837448", "id": "4266029369", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2010-01-11 18:09:55", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1301", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm3.staticflickr.com/2784/4266776062_d8ce0eb5af_o.jpg", "secret": "e46c9e195a", "media": "photo", "latitude": "45.837448", "id": "4266776062", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2010-01-11 18:10:22", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1303", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm5.staticflickr.com/4020/4266776132_43a129dd2e_o.jpg", "secret": "8d9cca5910", "media": "photo", "latitude": "45.837448", "id": "4266776132", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2010-01-11 18:11:19", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1306", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm5.staticflickr.com/4046/4266776218_7c4259fb3e_o.jpg", "secret": "94a4636850", "media": "photo", "latitude": "45.837448", "id": "4266776218", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2010-01-11 18:12:48", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1307", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm5.staticflickr.com/4014/4266029655_aa21ebd34d_o.jpg", "secret": "274184a79a", "media": "photo", "latitude": "45.837448", "id": "4266029655", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2010-01-11 18:17:28", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1312", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm5.staticflickr.com/4064/4266029757_999df9eec1_o.jpg", "secret": "eca288b3f9", "media": "photo", "latitude": "45.837448", "id": "4266029757", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2010-01-11 18:17:33", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1313", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm5.staticflickr.com/4028/4266776442_690f5c1272_o.jpg", "secret": "5fe32494bb", "media": "photo", "latitude": "45.837448", "id": "4266776442", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2010-01-11 18:18:05", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1317", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm5.staticflickr.com/4020/4266776522_4355895379_o.jpg", "secret": "e4b37739cb", "media": "photo", "latitude": "45.837448", "id": "4266776522", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2010-01-11 18:19:19", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1318", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm3.staticflickr.com/2691/4266776580_843be2cf26_o.jpg", "secret": "58087418fc", "media": "photo", "latitude": "45.837448", "id": "4266776580", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2010-01-11 18:19:37", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1319", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm5.staticflickr.com/4035/4266030075_d2887f3af0_o.jpg", "secret": "65781fe69c", "media": "photo", "latitude": "45.837448", "id": "4266030075", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2010-01-11 18:20:17", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1320", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm3.staticflickr.com/2801/4266030173_db559942a5_o.jpg", "secret": "dfde70aac3", "media": "photo", "latitude": "45.837448", "id": "4266030173", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2010-01-11 18:34:00", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1323", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm5.staticflickr.com/4070/4266776906_b03d270506_o.jpg", "secret": "fc7c176cf5", "media": "photo", "latitude": "45.837448", "id": "4266776906", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2010-01-11 18:34:08", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1324", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm5.staticflickr.com/4070/4266777020_728bf1e1cb_o.jpg", "secret": "caf10d7a92", "media": "photo", "latitude": "45.837448", "id": "4266777020", "tags": "inframince ehrmannscrew snowgraff neige art\u00e9ph\u00e9m\u00e8re ephemeralart cart1 graffiti abodeofchaos chaos lespritdelasalamandre salamanderspirit demeureduchaos thierryehrmann ddc 999 groupeserveur taz organmuseum servergroup facteurcheval palaisideal sanctuaire sanctuary artprice portrait painting peinture france museum sculpture architecture maisondartiste art artistshouses streetart sculpturemoderne modernsculpture secret alchimie alchemy landart artbrut artsingulier rawart symbol 911 contemporaryart apocalypse postapocalyptique cyberpunk vanitas ruins prophecy proph\u00e9tie container dadaisme outsiderart mystery francmaconnerie endoftheworld devastation worldwar anarchy saintromainaumontdor crashculture postapocalyptic mystic destroy bombing actingperformance freemasonry"}, {"datetaken": "2010-01-11 18:34:26", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1326", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm3.staticflickr.com/2225/4266777092_3bac6b1e71_o.jpg", "secret": "604272426c", "media": "photo", "latitude": "45.837448", "id": "4266777092", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2010-01-11 18:35:25", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1328", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm5.staticflickr.com/4019/4266777324_33471ca97a_o.jpg", "secret": "a222e73760", "media": "photo", "latitude": "45.837448", "id": "4266777324", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2010-01-11 18:35:38", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1330", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm5.staticflickr.com/4063/4266777430_fba8378d73_o.jpg", "secret": "decc2c860d", "media": "photo", "latitude": "45.837448", "id": "4266777430", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2010-01-11 18:37:14", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1332", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm5.staticflickr.com/4031/4266777530_df79979c9f_o.jpg", "secret": "f38de5aafa", "media": "photo", "latitude": "45.837448", "id": "4266777530", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2010-01-11 18:38:56", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1337", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm5.staticflickr.com/4027/4266777582_5c1c4b78b2_o.jpg", "secret": "2c415478a9", "media": "photo", "latitude": "45.837448", "id": "4266777582", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2010-01-11 18:39:45", "license": "4", "title": "Infra-mince Eph\u00e9m\u00e8re _DDC1340", "text": "", "album_id": "72157623189575342", "longitude": "4.826248", "url_o": "https://farm5.staticflickr.com/4066/4266030961_5346c7e2f5_o.jpg", "secret": "c15d10f8aa", "media": "photo", "latitude": "45.837448", "id": "4266030961", "tags": "portrait sculpture streetart france art mystery museum architecture painting graffiti ruins rawart outsiderart chaos symbol contemporaryart secret 911 apocalypse taz peinture container freemasonry anarchy neige artbrut ddc sanctuary worldwar bombing mystic cyberpunk landart devastation alchemy destroy modernsculpture prophecy 999 vanitas endoftheworld sanctuaire postapocalyptic dadaisme artprice salamanderspirit organmuseum saintromainaumontdor demeureduchaos thierryehrmann alchimie artsingulier ephemeralart cart1 proph\u00e9tie abodeofchaos facteurcheval palaisideal art\u00e9ph\u00e9m\u00e8re postapocalyptique maisondartiste artistshouses actingperformance sculpturemoderne francmaconnerie inframince ehrmannscrew groupeserveur lespritdelasalamandre crashculture snowgraff servergroup"}, {"datetaken": "2007-11-12 05:58:25", "license": "5", "title": "Early Bloomer", "text": "", "album_id": "72157603106928876", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2340/1982917876_a05e7d3f59_o.jpg", "secret": "a3006f53f6", "media": "photo", "latitude": "0", "id": "1982917876", "tags": ""}, {"datetaken": "2007-11-12 05:58:26", "license": "5", "title": "Memorial Statue", "text": "", "album_id": "72157603106928876", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2285/1982104275_801e14feb6_o.jpg", "secret": "a433f4da13", "media": "photo", "latitude": "0", "id": "1982104275", "tags": ""}, {"datetaken": "2007-11-12 05:58:28", "license": "5", "title": "Solitude", "text": "", "album_id": "72157603106928876", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2128/1982104677_6d04aa90be_o.jpg", "secret": "5a59b7e8d8", "media": "photo", "latitude": "0", "id": "1982104677", "tags": ""}, {"datetaken": "2007-11-12 05:58:30", "license": "5", "title": "House", "text": "", "album_id": "72157603106928876", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2328/1982918852_febc7ffeec_o.jpg", "secret": "30a48e69a3", "media": "photo", "latitude": "0", "id": "1982918852", "tags": ""}, {"datetaken": "2007-11-12 05:58:32", "license": "5", "title": "An American Porch", "text": "", "album_id": "72157603106928876", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2249/1982105469_21182c06c5_o.jpg", "secret": "582f61076e", "media": "photo", "latitude": "0", "id": "1982105469", "tags": ""}, {"datetaken": "2007-11-12 05:58:33", "license": "5", "title": "Arthur B Heurtley House", "text": "", "album_id": "72157603106928876", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2324/1982919564_b52cdc50ba_o.jpg", "secret": "17bfa955fb", "media": "photo", "latitude": "0", "id": "1982919564", "tags": ""}, {"datetaken": "2007-11-12 05:58:34", "license": "5", "title": "Frank Llyod Wright Studio Entrance", "text": "", "album_id": "72157603106928876", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2331/1982919820_bbc7a5c76e_o.jpg", "secret": "cbe1e623e5", "media": "photo", "latitude": "0", "id": "1982919820", "tags": ""}, {"datetaken": "2007-11-12 05:58:36", "license": "5", "title": "Garden At A Corner", "text": "", "album_id": "72157603106928876", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2340/1982106435_662e53bd8a_o.jpg", "secret": "c5a83268a5", "media": "photo", "latitude": "0", "id": "1982106435", "tags": ""}, {"datetaken": "2007-11-12 05:58:38", "license": "5", "title": "Nathan G Moore House", "text": "", "album_id": "72157603106928876", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2263/1982106769_5547a6c83d_o.jpg", "secret": "e5435fd35f", "media": "photo", "latitude": "0", "id": "1982106769", "tags": ""}, {"datetaken": "2007-11-12 05:58:40", "license": "5", "title": "Walter H Gale House", "text": "", "album_id": "72157603106928876", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2270/1982107195_9acd63d648_o.jpg", "secret": "c4d86a4110", "media": "photo", "latitude": "0", "id": "1982107195", "tags": ""}, {"datetaken": "2009-12-25 17:31:44", "license": "3", "title": "DSC00109", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4272562637_34fe7bfc21_o.jpg", "secret": "0041c53e88", "media": "photo", "latitude": "0", "id": "4272562637", "tags": "losangeles"}, {"datetaken": "2009-12-25 17:33:08", "license": "3", "title": "DSC00112", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4272602959_230751724a_o.jpg", "secret": "de37c20896", "media": "photo", "latitude": "0", "id": "4272602959", "tags": "mountains losangeles"}, {"datetaken": "2009-12-25 17:33:15", "license": "3", "title": "DSC00113", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2438/4273360140_67a2c6df5a_o.jpg", "secret": "88818df0f9", "media": "photo", "latitude": "0", "id": "4273360140", "tags": "losangeles"}, {"datetaken": "2009-12-25 17:33:27", "license": "3", "title": "DSC00114", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4273381192_35a801d716_o.jpg", "secret": "837565d7a4", "media": "photo", "latitude": "0", "id": "4273381192", "tags": "buildings losangeles"}, {"datetaken": "2009-12-25 17:33:41", "license": "3", "title": "DSC00115", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2739/4272656009_fcc27f10f1_o.jpg", "secret": "592d353033", "media": "photo", "latitude": "0", "id": "4272656009", "tags": "buildings losangeles"}, {"datetaken": "2009-12-25 17:33:55", "license": "3", "title": "DSC00116", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4272677417_2eaf2ac1bc_o.jpg", "secret": "fbf5a18de0", "media": "photo", "latitude": "0", "id": "4272677417", "tags": "losangeles"}, {"datetaken": "2009-12-25 17:34:12", "license": "3", "title": "DSC00117", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2656/4272693945_54974936f8_o.jpg", "secret": "6c888224e7", "media": "photo", "latitude": "0", "id": "4272693945", "tags": "losangeles"}, {"datetaken": "2009-12-25 17:36:52", "license": "3", "title": "DSC00118", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4273451014_a762a2c7e7_o.jpg", "secret": "b778678f68", "media": "photo", "latitude": "0", "id": "4273451014", "tags": "losangeles"}, {"datetaken": "2009-12-25 17:38:55", "license": "3", "title": "DSC00121", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4272738889_db96768aab_o.jpg", "secret": "81f165a6f3", "media": "photo", "latitude": "0", "id": "4272738889", "tags": "trees losangeles"}, {"datetaken": "2009-12-25 17:39:07", "license": "3", "title": "DSC00122", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4272753159_91155f8f15_o.jpg", "secret": "14c612db15", "media": "photo", "latitude": "0", "id": "4272753159", "tags": "trees losangeles"}, {"datetaken": "2009-12-25 17:39:39", "license": "3", "title": "DSC00123", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4273517122_a77e6bcb75_o.jpg", "secret": "67eca69f9a", "media": "photo", "latitude": "0", "id": "4273517122", "tags": "buildings losangeles"}, {"datetaken": "2009-12-25 17:40:36", "license": "3", "title": "DSC00124", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4273534008_16f5cd405c_o.jpg", "secret": "0391ebb12d", "media": "photo", "latitude": "0", "id": "4273534008", "tags": "trees mountains losangeles"}, {"datetaken": "2009-12-25 17:40:57", "license": "3", "title": "DSC00125", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4272811643_c9008de5f3_o.jpg", "secret": "9b392e9dc4", "media": "photo", "latitude": "0", "id": "4272811643", "tags": "flowers losangeles"}, {"datetaken": "2009-12-25 17:41:20", "license": "3", "title": "DSC00126", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4273569794_4715141c3b_o.jpg", "secret": "19c8680d15", "media": "photo", "latitude": "0", "id": "4273569794", "tags": "flowers losangeles"}, {"datetaken": "2009-12-25 17:41:36", "license": "3", "title": "DSC00127", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4272839645_67bf7bc6eb_o.jpg", "secret": "de065b37b5", "media": "photo", "latitude": "0", "id": "4272839645", "tags": "flowers losangeles"}, {"datetaken": "2009-12-25 17:42:05", "license": "3", "title": "DSC00128", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2735/4272849913_1c319c9f95_o.jpg", "secret": "2f701410a5", "media": "photo", "latitude": "0", "id": "4272849913", "tags": "mountains losangeles"}, {"datetaken": "2009-12-25 17:42:25", "license": "3", "title": "DSC00129", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4272866259_19281c47b4_o.jpg", "secret": "2e83d8da07", "media": "photo", "latitude": "0", "id": "4272866259", "tags": "trees buildings losangeles"}, {"datetaken": "2009-12-25 17:43:20", "license": "3", "title": "DSC00130", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4272881717_aaa5a62d26_o.jpg", "secret": "854e2065e4", "media": "photo", "latitude": "0", "id": "4272881717", "tags": "mountains losangeles"}, {"datetaken": "2009-12-25 17:45:05", "license": "3", "title": "DSC00131", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4272895383_80f658be3d_o.jpg", "secret": "5544ef119f", "media": "photo", "latitude": "0", "id": "4272895383", "tags": "flowers losangeles"}, {"datetaken": "2009-12-25 17:46:31", "license": "3", "title": "DSC00132", "text": "", "album_id": "72157623081646221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4272908669_6defa24aa0_o.jpg", "secret": "3c440eb679", "media": "photo", "latitude": "0", "id": "4272908669", "tags": "mountains losangeles"}, {"datetaken": "2010-01-10 19:20:04", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm5.staticflickr.com/4028/4272587927_07bd6bd68e_o.jpg", "secret": "c647b64e8b", "media": "photo", "latitude": "33.495078", "id": "4272587927", "tags": "raw"}, {"datetaken": "2010-01-10 19:20:22", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm5.staticflickr.com/4065/4272588249_fcf97ee56e_o.jpg", "secret": "3165ed2c0a", "media": "photo", "latitude": "33.495078", "id": "4272588249", "tags": "raw"}, {"datetaken": "2010-01-10 19:20:59", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm3.staticflickr.com/2452/4273332190_b4d668e7a2_o.jpg", "secret": "8a91c3f213", "media": "photo", "latitude": "33.495078", "id": "4273332190", "tags": "raw"}, {"datetaken": "2010-01-10 19:21:07", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm3.staticflickr.com/2784/4272588821_c058ec383f_o.jpg", "secret": "4870b1250b", "media": "photo", "latitude": "33.495078", "id": "4272588821", "tags": "raw"}, {"datetaken": "2010-01-10 19:22:44", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm3.staticflickr.com/2770/4273332836_8ff738a0cd_o.jpg", "secret": "21b968a24a", "media": "photo", "latitude": "33.495078", "id": "4273332836", "tags": "raw"}, {"datetaken": "2010-01-10 19:23:08", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm5.staticflickr.com/4034/4273333150_c5b4ca652c_o.jpg", "secret": "771e457a85", "media": "photo", "latitude": "33.495078", "id": "4273333150", "tags": "raw"}, {"datetaken": "2010-01-10 19:27:04", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm5.staticflickr.com/4003/4273333620_ab7fe98724_o.jpg", "secret": "c207c9dd77", "media": "photo", "latitude": "33.495078", "id": "4273333620", "tags": "raw"}, {"datetaken": "2010-01-10 19:29:45", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm3.staticflickr.com/2747/4273333804_2f96b82647_o.jpg", "secret": "03c6938b7c", "media": "photo", "latitude": "33.495078", "id": "4273333804", "tags": "raw"}, {"datetaken": "2010-01-10 19:36:27", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm5.staticflickr.com/4044/4273334274_916ea50aa7_o.jpg", "secret": "eb12ddd347", "media": "photo", "latitude": "33.495078", "id": "4273334274", "tags": "raw"}, {"datetaken": "2010-01-10 19:40:20", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm3.staticflickr.com/2680/4272591265_5426925617_o.jpg", "secret": "7d912dd2a6", "media": "photo", "latitude": "33.495078", "id": "4272591265", "tags": "raw"}, {"datetaken": "2010-01-10 19:41:26", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm3.staticflickr.com/2697/4273335094_ebd4e32639_o.jpg", "secret": "9c8e6461bb", "media": "photo", "latitude": "33.495078", "id": "4273335094", "tags": "raw"}, {"datetaken": "2010-01-10 19:42:37", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm5.staticflickr.com/4006/4273335346_e5a0875b6b_o.jpg", "secret": "8f19fb2d74", "media": "photo", "latitude": "33.495078", "id": "4273335346", "tags": "raw"}, {"datetaken": "2010-01-10 19:47:27", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm5.staticflickr.com/4021/4273335736_9e6676c6d8_o.jpg", "secret": "1fd102365e", "media": "photo", "latitude": "33.495078", "id": "4273335736", "tags": "raw"}, {"datetaken": "2010-01-10 19:50:18", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm5.staticflickr.com/4024/4273335918_8c8208d432_o.jpg", "secret": "8529b7e2a0", "media": "photo", "latitude": "33.495078", "id": "4273335918", "tags": "raw"}, {"datetaken": "2010-01-10 19:51:37", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm5.staticflickr.com/4030/4273336130_68f4fbd2e6_o.jpg", "secret": "0ed19bcbb8", "media": "photo", "latitude": "33.495078", "id": "4273336130", "tags": "raw"}, {"datetaken": "2010-01-10 19:52:50", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm5.staticflickr.com/4036/4272600087_0a6674f083_o.jpg", "secret": "26425dc700", "media": "photo", "latitude": "33.495078", "id": "4272600087", "tags": "raw"}, {"datetaken": "2010-01-10 19:57:57", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm3.staticflickr.com/2463/4273345900_0bd6ee1bc4_o.jpg", "secret": "d86346bc04", "media": "photo", "latitude": "33.495078", "id": "4273345900", "tags": "raw"}, {"datetaken": "2010-01-10 20:01:56", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm3.staticflickr.com/2793/4272603449_3c948f40ef_o.jpg", "secret": "ddab5332e5", "media": "photo", "latitude": "33.495078", "id": "4272603449", "tags": "raw"}, {"datetaken": "2010-01-10 20:03:51", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm5.staticflickr.com/4029/4272604279_a5cbc3b52d_o.jpg", "secret": "54c0165de8", "media": "photo", "latitude": "33.495078", "id": "4272604279", "tags": "raw"}, {"datetaken": "2010-01-10 20:05:23", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm5.staticflickr.com/4001/4273349172_9bc3a35ed2_o.jpg", "secret": "95156d40f5", "media": "photo", "latitude": "33.495078", "id": "4273349172", "tags": "raw"}, {"datetaken": "2010-01-10 20:05:49", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm3.staticflickr.com/2784/4272607517_0c1ff64a6b_o.jpg", "secret": "774d2ec880", "media": "photo", "latitude": "33.495078", "id": "4272607517", "tags": "raw"}, {"datetaken": "2010-01-10 20:31:58", "license": "1", "title": "Open House", "text": "", "album_id": "72157623206241836", "longitude": "-112.083635", "url_o": "https://farm3.staticflickr.com/2621/4273351836_a99934018e_o.jpg", "secret": "be4a1ab75b", "media": "photo", "latitude": "33.495078", "id": "4273351836", "tags": "raw"}, {"datetaken": "2010-01-14 16:25:08", "license": "4", "title": "#140conf #boston", "text": "", "album_id": "72157623093230347", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4277782036_1efbde738b_o.jpg", "secret": "82567cf444", "media": "photo", "latitude": "0", "id": "4277782036", "tags": "cambridge nerd boston ma characters 140conf nerdcentercambridgema"}, {"datetaken": "2010-01-14 16:30:10", "license": "4", "title": "@guidostein", "text": "", "album_id": "72157623093230347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4277036319_3b59a67815_o.jpg", "secret": "d330da8548", "media": "photo", "latitude": "0", "id": "4277036319", "tags": "cambridge nerd boston ma characters guidostein 140conf nerdcentercambridgema"}, {"datetaken": "2010-01-14 16:30:26", "license": "4", "title": "CIMG1371", "text": "", "album_id": "72157623093230347", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4277782742_742c45eb45_o.jpg", "secret": "494e706bf2", "media": "photo", "latitude": "0", "id": "4277782742", "tags": "cambridge nerd boston ma characters 140conf nerdcentercambridgema"}, {"datetaken": "2010-01-14 16:31:21", "license": "4", "title": "CIMG1372", "text": "", "album_id": "72157623093230347", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2703/4277783462_de685a0fec_o.jpg", "secret": "f1f2108b80", "media": "photo", "latitude": "0", "id": "4277783462", "tags": "cambridge nerd boston ma characters 140conf nerdcentercambridgema"}, {"datetaken": "2010-01-14 16:31:32", "license": "4", "title": "CIMG1373", "text": "", "album_id": "72157623093230347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4277038039_8d4aa9bb1f_o.jpg", "secret": "21a075d5a9", "media": "photo", "latitude": "0", "id": "4277038039", "tags": "cambridge nerd boston ma characters 140conf nerdcentercambridgema"}, {"datetaken": "2010-01-14 16:32:05", "license": "4", "title": "#140conf", "text": "", "album_id": "72157623093230347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4277038639_066453920d_o.jpg", "secret": "a8f20afef0", "media": "photo", "latitude": "0", "id": "4277038639", "tags": "cambridge nerd boston ma characters 140conf nerdcentercambridgema"}, {"datetaken": "2010-01-14 16:32:23", "license": "4", "title": "CIMG1375", "text": "", "album_id": "72157623093230347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4277785474_07e7ec60e0_o.jpg", "secret": "067b3f7dd4", "media": "photo", "latitude": "0", "id": "4277785474", "tags": "cambridge nerd boston ma characters 140conf nerdcentercambridgema"}, {"datetaken": "2010-01-14 16:33:40", "license": "4", "title": "CIMG1376", "text": "", "album_id": "72157623093230347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4277786184_cb75115ff2_o.jpg", "secret": "1075fcae20", "media": "photo", "latitude": "0", "id": "4277786184", "tags": "cambridge nerd boston ma characters 140conf nerdcentercambridgema"}, {"datetaken": "2010-01-14 16:35:33", "license": "4", "title": "CIMG1378", "text": "", "album_id": "72157623093230347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4277040901_e9d3d9a0b6_o.jpg", "secret": "03b5ea1641", "media": "photo", "latitude": "0", "id": "4277040901", "tags": "cambridge nerd boston ma characters 140conf nerdcentercambridgema"}, {"datetaken": "2010-01-14 16:36:08", "license": "4", "title": "CIMG1379", "text": "", "album_id": "72157623093230347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4277787746_97f7a24bef_o.jpg", "secret": "eb2ce2f013", "media": "photo", "latitude": "0", "id": "4277787746", "tags": "cambridge nerd boston ma characters 140conf nerdcentercambridgema"}, {"datetaken": "2010-01-14 16:39:09", "license": "4", "title": "#140conf", "text": "", "album_id": "72157623093230347", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4277788498_53846cdd90_o.jpg", "secret": "264e26d4a3", "media": "photo", "latitude": "0", "id": "4277788498", "tags": "cambridge nerd boston ma characters 140conf nerdcentercambridgema"}, {"datetaken": "2010-01-14 17:02:25", "license": "4", "title": "@jeffpulver with packed house", "text": "", "album_id": "72157623093230347", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4277789224_4b797a2bcb_o.jpg", "secret": "20ecda54de", "media": "photo", "latitude": "0", "id": "4277789224", "tags": "cambridge nerd boston ma characters 140conf nerdcentercambridgema"}, {"datetaken": "2010-01-14 17:02:45", "license": "4", "title": "microburritup crowd", "text": "", "album_id": "72157623093230347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4277789914_0ea98667f0_o.jpg", "secret": "ed1dc28da3", "media": "photo", "latitude": "0", "id": "4277789914", "tags": "cambridge nerd boston ma characters 140conf nerdcentercambridgema"}, {"datetaken": "2010-01-15 19:58:32", "license": "4", "title": "garin", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4283992276_ed637e0c02_o.jpg", "secret": "fa97b4194f", "media": "photo", "latitude": "0", "id": "4283992276", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 19:58:43", "license": "4", "title": "imported from the Midwest", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4283992580_d3bedc5a90_o.jpg", "secret": "1c7c1a0beb", "media": "photo", "latitude": "0", "id": "4283992580", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 20:04:44", "license": "4", "title": "pans up high", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4283249791_0c23abbed8_o.jpg", "secret": "1767eb8395", "media": "photo", "latitude": "0", "id": "4283249791", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 20:09:22", "license": "4", "title": "kris, andy", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/4283993292_25685e1034_o.jpg", "secret": "57b81e2d82", "media": "photo", "latitude": "0", "id": "4283993292", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 20:21:29", "license": "4", "title": "sunflower shoot salad with crispy pork, head cheese, sweet potato chips", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4283994026_076c6a59f3_o.jpg", "secret": "73d51bd569", "media": "photo", "latitude": "0", "id": "4283994026", "tags": "food brooklyn ufc reused undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 20:21:40", "license": "4", "title": "shamus", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2764/4283994396_9cee9b02dc_o.jpg", "secret": "5359dd0fbb", "media": "photo", "latitude": "0", "id": "4283994396", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 20:27:12", "license": "4", "title": "duck breast tartare in red endive, lemon taragon sauce", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4283251451_7e649ab00f_o.jpg", "secret": "664b7c87c7", "media": "photo", "latitude": "0", "id": "4283251451", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 20:29:06", "license": "4", "title": "pork rillette with house made pickles, black radish, mushrooms", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2749/4283994966_13bd5a0e00_o.jpg", "secret": "3994dfb5d2", "media": "photo", "latitude": "0", "id": "4283994966", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 20:35:48", "license": "4", "title": "beet and blood orange salad with pea shoots, pistachios, avocado dressing", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/4283995394_7c8e2cf1bd_o.jpg", "secret": "63a2064225", "media": "photo", "latitude": "0", "id": "4283995394", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 20:43:55", "license": "4", "title": "cecily, jonny", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2794/4283996054_9e83c2878c_o.jpg", "secret": "78234c74d9", "media": "photo", "latitude": "0", "id": "4283996054", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 20:51:53", "license": "4", "title": "endive, pear, pecan salad with smoked ricotta", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4283253155_274d6803fb_o.jpg", "secret": "517d0973f0", "media": "photo", "latitude": "0", "id": "4283253155", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 20:53:30", "license": "4", "title": "shaved carrot, fennel, salsify & parsley salad", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4283996784_f2f253c725_o.jpg", "secret": "1e8aa3d1d5", "media": "photo", "latitude": "0", "id": "4283996784", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 21:03:40", "license": "4", "title": "house cured prosciutto with smoked mushrooms, 18-mo. Pleasant Ridge Reserve", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4283997138_33c73f8eb7_o.jpg", "secret": "cb24e482b9", "media": "photo", "latitude": "0", "id": "4283997138", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 21:09:27", "license": "4", "title": "english bitter", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4283997400_e5dbe5b710_o.jpg", "secret": "da319d6483", "media": "photo", "latitude": "0", "id": "4283997400", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 21:16:04", "license": "4", "title": "pork pot pie with root vegetables", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2685/4283997664_f615df28cb_o.jpg", "secret": "a8aa602695", "media": "photo", "latitude": "0", "id": "4283997664", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 21:27:53", "license": "4", "title": "john, kris", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4283997966_d63f9c1859_o.jpg", "secret": "9851251b8e", "media": "photo", "latitude": "0", "id": "4283997966", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 21:42:12", "license": "4", "title": "andy's fermented cake with meyer lemon", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2745/4283998372_696af0db2d_o.jpg", "secret": "d3c28567a6", "media": "photo", "latitude": "0", "id": "4283998372", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 21:54:04", "license": "4", "title": "cecily, grace", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4283255261_bfb364fa1a_o.jpg", "secret": "29af801d29", "media": "photo", "latitude": "0", "id": "4283255261", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-15 22:37:11", "license": "4", "title": "Pig livers", "text": "", "album_id": "72157623107791583", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4283255555_7d4af98b7a_o.jpg", "secret": "5a97024dc3", "media": "photo", "latitude": "0", "id": "4283255555", "tags": "food brooklyn ufc undergroundfoodcollective incelebrationofwinter"}, {"datetaken": "2010-01-16 16:57:27", "license": "1", "title": "10_01_17_milesopenhouse_ 002", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4282893685_1e40cabf64_o.jpg", "secret": "30c9b3b177", "media": "photo", "latitude": "0", "id": "4282893685", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 16:57:45", "license": "1", "title": "10_01_17_milesopenhouse_ 003", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4282894079_cc5bd0ac16_o.jpg", "secret": "84c6b37be5", "media": "photo", "latitude": "0", "id": "4282894079", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 16:57:54", "license": "1", "title": "10_01_17_milesopenhouse_ 004", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2723/4283639188_b08a033f2b_o.jpg", "secret": "70c1c667c8", "media": "photo", "latitude": "0", "id": "4283639188", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 16:57:59", "license": "1", "title": "10_01_17_milesopenhouse_ 005", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4283639782_2a630fa210_o.jpg", "secret": "af130ed8ce", "media": "photo", "latitude": "0", "id": "4283639782", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 16:58:19", "license": "1", "title": "10_01_17_milesopenhouse_ 006", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4282895601_dd8b51f5ce_o.jpg", "secret": "e6f6817d9d", "media": "photo", "latitude": "0", "id": "4282895601", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 16:58:41", "license": "1", "title": "10_01_17_milesopenhouse_ 007", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2757/4283640966_465a5d7555_o.jpg", "secret": "6180f9ef1e", "media": "photo", "latitude": "0", "id": "4283640966", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 16:59:24", "license": "1", "title": "10_01_17_milesopenhouse_ 008", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4283641432_6684fa5939_o.jpg", "secret": "729934fb53", "media": "photo", "latitude": "0", "id": "4283641432", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 16:59:44", "license": "1", "title": "10_01_17_milesopenhouse_ 009", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2783/4283641948_0f5fdc72a9_o.jpg", "secret": "f42b75107c", "media": "photo", "latitude": "0", "id": "4283641948", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 16:59:51", "license": "1", "title": "10_01_17_milesopenhouse_ 010", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2682/4283642550_2f3e049b23_o.jpg", "secret": "25d4a00bdc", "media": "photo", "latitude": "0", "id": "4283642550", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 17:00:06", "license": "1", "title": "10_01_17_milesopenhouse_ 011", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4283643694_6a5f71ae5f_o.jpg", "secret": "6efd01abfd", "media": "photo", "latitude": "0", "id": "4283643694", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 17:00:08", "license": "1", "title": "10_01_17_milesopenhouse_ 012", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2745/4282900015_ff5c22d10a_o.jpg", "secret": "a053697e6f", "media": "photo", "latitude": "0", "id": "4282900015", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 17:01:14", "license": "1", "title": "10_01_17_milesopenhouse_ 013", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4282900569_277ba8a663_o.jpg", "secret": "7389d323bf", "media": "photo", "latitude": "0", "id": "4282900569", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 17:01:27", "license": "1", "title": "10_01_17_milesopenhouse_ 014", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4283646138_c96ce1811e_o.jpg", "secret": "fd8206e18f", "media": "photo", "latitude": "0", "id": "4283646138", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 17:01:39", "license": "1", "title": "10_01_17_milesopenhouse_ 015", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4283646788_9fa66f124e_o.jpg", "secret": "04582e39b5", "media": "photo", "latitude": "0", "id": "4283646788", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 17:01:55", "license": "1", "title": "10_01_17_milesopenhouse_ 016", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4283647400_ec82dcd2ba_o.jpg", "secret": "9b48eebbf9", "media": "photo", "latitude": "0", "id": "4283647400", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 17:02:38", "license": "1", "title": "10_01_17_milesopenhouse_ 017", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4283648016_1f0b0d0782_o.jpg", "secret": "739fedc635", "media": "photo", "latitude": "0", "id": "4283648016", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 17:02:46", "license": "1", "title": "10_01_17_milesopenhouse_ 018", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4283648666_e0c24d4e3e_o.jpg", "secret": "9f0a76af1c", "media": "photo", "latitude": "0", "id": "4283648666", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 17:02:57", "license": "1", "title": "10_01_17_milesopenhouse_ 019", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2739/4283649258_bf753908a2_o.jpg", "secret": "9d3520303c", "media": "photo", "latitude": "0", "id": "4283649258", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 17:09:41", "license": "1", "title": "10_01_17_milesopenhouse_ 020", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4283650202_33428a1e2c_o.jpg", "secret": "daec17b2e4", "media": "photo", "latitude": "0", "id": "4283650202", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 17:09:54", "license": "1", "title": "10_01_17_milesopenhouse_ 021", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4283650878_4e0017ba36_o.jpg", "secret": "9f31676530", "media": "photo", "latitude": "0", "id": "4283650878", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 17:10:03", "license": "1", "title": "10_01_17_milesopenhouse_ 022", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2757/4283651542_8063f2ecda_o.jpg", "secret": "d92d64f31c", "media": "photo", "latitude": "0", "id": "4283651542", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2010-01-16 17:10:08", "license": "1", "title": "10_01_17_milesopenhouse_ 023", "text": "", "album_id": "72157623231573296", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2684/4283652342_f032fcf3a9_o.jpg", "secret": "787c0fb1e2", "media": "photo", "latitude": "0", "id": "4283652342", "tags": "house open miles renovation 100117miscjns"}, {"datetaken": "2007-03-03 10:19:57", "license": "3", "title": "Fountains house entrance", "text": "", "album_id": "72157623130414003", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2735/4293157658_0acc166856_o.jpg", "secret": "4337e77f3b", "media": "photo", "latitude": "0", "id": "4293157658", "tags": "history abbey architecture ruins yorkshire historical fountains nationaltrust cistercian 12thcentury skell"}, {"datetaken": "2007-03-03 10:22:00", "license": "3", "title": "Through the secret doorway at Fountains", "text": "", "album_id": "72157623130414003", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4292416229_865ca4be2f_o.jpg", "secret": "58e34fd713", "media": "photo", "latitude": "0", "id": "4292416229", "tags": "history abbey architecture garden ruins path yorkshire historical fountains nationaltrust cistercian 12thcentury skell"}, {"datetaken": "2007-03-03 10:38:30", "license": "3", "title": "Abbey beyond the trees", "text": "", "album_id": "72157623130414003", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2757/4292421829_a9c0d98cf0_o.jpg", "secret": "17278d65b4", "media": "photo", "latitude": "0", "id": "4292421829", "tags": "history abbey architecture ruins yorkshire historical fountains nationaltrust cistercian 12thcentury skell"}, {"datetaken": "2007-03-03 10:39:18", "license": "3", "title": "Fountains Abbey from mill gate", "text": "", "album_id": "72157623130414003", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4293159218_4d4cb2f7f8_o.jpg", "secret": "d3798c207f", "media": "photo", "latitude": "0", "id": "4293159218", "tags": "history mill abbey architecture ruins stream yorkshire historical fountains nationaltrust cistercian 12thcentury skell"}, {"datetaken": "2007-03-03 10:39:57", "license": "3", "title": "Fountains Abbey Snowdrops", "text": "", "album_id": "72157623130414003", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4293165282_380b5de79a_o.jpg", "secret": "381b6c3ae2", "media": "photo", "latitude": "0", "id": "4293165282", "tags": "history abbey architecture ruins yorkshire historical fountains nationaltrust cistercian 12thcentury skell"}, {"datetaken": "2007-03-03 10:59:15", "license": "3", "title": "suitable for conversion", "text": "", "album_id": "72157623130414003", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4293160550_d5b57ef245_o.jpg", "secret": "4c6903cb8a", "media": "photo", "latitude": "0", "id": "4293160550", "tags": "history abbey architecture ruins yorkshire historical fountains nationaltrust cistercian 12thcentury skell"}, {"datetaken": "2007-03-03 11:12:56", "license": "3", "title": "Fountains abbey full view", "text": "", "album_id": "72157623130414003", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2428/4292424265_a5c9e3536c_o.jpg", "secret": "2409eaa37c", "media": "photo", "latitude": "0", "id": "4292424265", "tags": "history abbey architecture ruins yorkshire historical fountains nationaltrust cistercian 12thcentury skell"}, {"datetaken": "2007-03-03 11:17:01", "license": "3", "title": "Fountains Abbey Kitchen", "text": "", "album_id": "72157623130414003", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2796/4293161290_c05fa6f75f_o.jpg", "secret": "435825de91", "media": "photo", "latitude": "0", "id": "4293161290", "tags": "history abbey architecture ruins yorkshire historical fountains nationaltrust cistercian 12thcentury skell"}, {"datetaken": "2007-03-03 11:21:11", "license": "3", "title": "Undercroft and cross", "text": "", "album_id": "72157623130414003", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4292424943_30b9157514_o.jpg", "secret": "b5ff18258a", "media": "photo", "latitude": "0", "id": "4292424943", "tags": "history abbey architecture ruins yorkshire monastery monks historical fountains nationaltrust cistercian 12thcentury skell"}, {"datetaken": "2007-03-03 11:21:42", "license": "3", "title": "Undercroft roof", "text": "", "album_id": "72157623130414003", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4293161808_3545191052_o.jpg", "secret": "c497ff95bd", "media": "photo", "latitude": "0", "id": "4293161808", "tags": "building history abbey stone architecture ruins stonework yorkshire masonry historical fountains nationaltrust cistercian stonemason 12thcentury skell"}, {"datetaken": "2007-03-03 11:24:35", "license": "3", "title": "From dark to light", "text": "", "album_id": "72157623130414003", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2706/4293168072_313dc6e94a_o.jpg", "secret": "e67ae49c1b", "media": "photo", "latitude": "0", "id": "4293168072", "tags": "history abbey architecture ruins yorkshire historical fountains nationaltrust cistercian 12thcentury skell"}, {"datetaken": "2007-03-03 11:29:11", "license": "3", "title": "Sky and River Skell", "text": "", "album_id": "72157623130414003", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4293168450_b741c6322e_o.jpg", "secret": "c53a45b727", "media": "photo", "latitude": "0", "id": "4293168450", "tags": "history abbey architecture ruins yorkshire historical fountains nationaltrust cistercian 12thcentury skell"}, {"datetaken": "2007-03-03 11:30:03", "license": "3", "title": "Hillside through Norman Arch", "text": "", "album_id": "72157623130414003", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4293168784_31b7f83ebe_o.jpg", "secret": "fcb0a9ba55", "media": "photo", "latitude": "0", "id": "4293168784", "tags": "history abbey architecture ruins yorkshire historical fountains nationaltrust cistercian 12thcentury skell"}, {"datetaken": "2007-03-03 11:34:27", "license": "3", "title": "Old and new", "text": "", "album_id": "72157623130414003", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4293162374_469a402ed1_o.jpg", "secret": "33a323ed70", "media": "photo", "latitude": "0", "id": "4293162374", "tags": "history abbey architecture ruins yorkshire historical fountains nationaltrust cistercian 12thcentury skell"}, {"datetaken": "2007-03-03 11:48:59", "license": "3", "title": "cloisters", "text": "", "album_id": "72157623130414003", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4293162714_acf336003f_o.jpg", "secret": "cd087ea28c", "media": "photo", "latitude": "0", "id": "4293162714", "tags": "history abbey architecture ruins yorkshire historical fountains nationaltrust cistercian 12thcentury skell"}, {"datetaken": "2009-12-27 14:43:11", "license": "3", "title": "\u9306", "text": "", "album_id": "72157623140181961", "longitude": "139.689644", "url_o": "https://farm5.staticflickr.com/4002/4296059151_93fedc3d5b_o.jpg", "secret": "47bd809f1c", "media": "photo", "latitude": "35.562607", "id": "4296059151", "tags": "old japan metal writing geotagged tokyo rust bokeh rusty \u65e5\u672c \u6771\u4eac carradio \u5927\u7530\u533a \u9306 \u77e2\u53e3 \u9244 epsonrd1s geo:lon=139689644 geo:lat=35562607 voigtl\u00e4ndernokton50mmf11 kenkoprond4"}, {"datetaken": "2009-12-27 14:46:35", "license": "3", "title": "Walking by", "text": "", "album_id": "72157623140181961", "longitude": "139.687261", "url_o": "https://farm3.staticflickr.com/2775/4296805164_fe20ba8629_o.jpg", "secret": "591c8ded25", "media": "photo", "latitude": "35.560902", "id": "4296805164", "tags": "street shadow sky people blackandwhite tree japan clouds writing geotagged tokyo \u65e5\u672c \u6771\u4eac \u6728 \u96f2 \u7a7a \u30e2\u30ce\u30af\u30ed \u9053 \u5927\u7530\u533a japanesepeople \u77e2\u53e3 japanesepersons epsonrd1s voigtl\u00e4ndernokton50mmf11 kenkoprond4 geo:lat=35560902 geo:lon=139687261"}, {"datetaken": "2009-12-27 14:53:43", "license": "3", "title": "The big picture", "text": "", "album_id": "72157623140181961", "longitude": "139.681388", "url_o": "https://farm3.staticflickr.com/2790/4296805256_f909ca5323_o.jpg", "secret": "186f4def6c", "media": "photo", "latitude": "35.562631", "id": "4296805256", "tags": "sky people blackandwhite building tree japan clouds geotagged tokyo \u65e5\u672c \u6771\u4eac \u96f2 \u7a7a \u591a\u6469\u5ddd housebuilding \u30e2\u30ce\u30af\u30ed \u5927\u7530\u533a \u2601 geo:lon=139681388 ricohgriii geo:lat=35562631"}, {"datetaken": "2009-12-27 14:59:42", "license": "3", "title": "Disturbance in the Field", "text": "", "album_id": "72157623140181961", "longitude": "139.680428", "url_o": "https://farm3.staticflickr.com/2423/4296805386_6af1d235ca_o.jpg", "secret": "315eb61e11", "media": "photo", "latitude": "35.563150", "id": "4296805386", "tags": "red white green grass japan geotagged tokyo cone bokeh \u65e5\u672c \u6771\u4eac \u7dd1 \u591a\u6469\u5ddd \u8349 \u5927\u7530\u533a epsonrd1s voigtl\u00e4ndernokton50mmf11 kenkoprond8 geo:lat=3556315 geo:lon=139680428"}, {"datetaken": "2009-12-27 15:07:17", "license": "3", "title": "Bent", "text": "", "album_id": "72157623140181961", "longitude": "139.678454", "url_o": "https://farm5.staticflickr.com/4058/4296059691_e8d3c2ca97_o.jpg", "secret": "489cab4627", "media": "photo", "latitude": "35.564673", "id": "4296059691", "tags": "brown water grass japan river geotagged tokyo bokeh \u65e5\u672c \u6771\u4eac \u591a\u6469\u5ddd \u8349 \u5927\u7530\u533a epsonrd1s voigtl\u00e4ndernokton50mmf11 kenkoprond8 geo:lat=35564673 geo:lon=139678454"}, {"datetaken": "2009-12-27 15:08:09", "license": "3", "title": "Hanging in there", "text": "", "album_id": "72157623140181961", "longitude": "139.676431", "url_o": "https://farm5.staticflickr.com/4057/4298518331_64bcb83fba_o.jpg", "secret": "edf55530ea", "media": "photo", "latitude": "35.568526", "id": "4298518331", "tags": "sky kite tree japan clouds geotagged tokyo \u65e5\u672c \u6771\u4eac \u6728 \u96f2 \u7a7a \u5927\u7530\u533a epsonrd1s voigtl\u00e4ndernokton50mmf11 kenkoprond8 geo:lat=35568526 geo:lon=139676431"}, {"datetaken": "2009-12-27 15:16:57", "license": "3", "title": "The river line", "text": "", "album_id": "72157623140181961", "longitude": "139.676056", "url_o": "https://farm3.staticflickr.com/2725/4298518709_70e0b6ebf4_o.jpg", "secret": "a0cc15b5dd", "media": "photo", "latitude": "35.569477", "id": "4298518709", "tags": "green water grass japan reflections river geotagged tokyo bush \u65e5\u672c \u6771\u4eac riverbank \u591a\u6469\u5ddd \u5ddd \u8349 \u5927\u7530\u533a epsonrd1s voigtl\u00e4ndernokton50mmf11 kenkoprond8 geo:lat=35569477 geo:lon=139676056"}, {"datetaken": "2009-12-27 15:18:52", "license": "3", "title": "\u51ac\u306e\u91d1", "text": "", "album_id": "72157623140181961", "longitude": "139.673138", "url_o": "https://farm3.staticflickr.com/2787/4298519095_2fd9ceef2c_o.jpg", "secret": "d3da3421cd", "media": "photo", "latitude": "35.576271", "id": "4298519095", "tags": "light brown reed water japan river geotagged tokyo bokeh \u65e5\u672c \u6771\u4eac riverbank \u591a\u6469\u5ddd \u5ddd \u5927\u7530\u533a epsonrd1s voigtl\u00e4ndernokton50mmf11 kenkoprond8 geo:lon=139673138 geo:lat=35576271"}, {"datetaken": "2009-12-27 15:21:36", "license": "3", "title": "Path to nowhere", "text": "", "album_id": "72157623140181961", "longitude": "139.673009", "url_o": "https://farm5.staticflickr.com/4038/4298519787_6626e0e3fe_o.jpg", "secret": "06cb44db28", "media": "photo", "latitude": "35.576729", "id": "4298519787", "tags": "blackandwhite building water grass japan river geotagged tokyo earth path \u65e5\u672c \u6771\u4eac riverbank housebuilding \u5ddd \u30e2\u30ce\u30af\u30ed \u5927\u7530\u533a ricohgriii geo:lat=35576729 geo:lon=139673009"}, {"datetaken": "2009-12-27 15:27:58", "license": "3", "title": "Dark reflections", "text": "", "album_id": "72157623140181961", "longitude": "139.672086", "url_o": "https://farm3.staticflickr.com/2691/4298520077_ceb76f5f11_o.jpg", "secret": "e879692ab4", "media": "photo", "latitude": "35.578810", "id": "4298520077", "tags": "sky blackandwhite sunlight reflection building water japan clouds reflections river geotagged tokyo \u65e5\u672c \u6771\u4eac riverbank \u96f2 \u7a7a \u591a\u6469\u5ddd housebuilding \u5ddd \u30e2\u30ce\u30af\u30ed \u5927\u7530\u533a geo:lat=3557881 ricohgriii geo:lon=139672086"}, {"datetaken": "2009-12-27 15:34:29", "license": "3", "title": "The Log", "text": "", "album_id": "72157623140181961", "longitude": "139.672290", "url_o": "https://farm3.staticflickr.com/2708/4303822844_76291b0be5_o.jpg", "secret": "4b40902457", "media": "photo", "latitude": "35.578252", "id": "4303822844", "tags": "green mushroom grass japan geotagged tokyo bokeh fungus \u65e5\u672c \u6771\u4eac \u6728 \u591a\u6469\u5ddd \u8349 \u5927\u7530\u533a \u30ad\u30ce\u30b3 epsonrd1s geo:lat=35578252 voigtl\u00e4ndernokton50mmf11 kenkoprond8 geo:lon=13967229"}, {"datetaken": "2009-12-27 15:39:53", "license": "3", "title": "Waiting", "text": "", "album_id": "72157623140181961", "longitude": "139.670649", "url_o": "https://farm3.staticflickr.com/2787/4303077201_8abe71d3c9_o.jpg", "secret": "4726bf792c", "media": "photo", "latitude": "35.583391", "id": "4303077201", "tags": "blackandwhite building reed water grass japan river geotagged japanese tokyo alone \u65e5\u672c depressed \u6771\u4eac riverbank distance \u591a\u6469\u5ddd depressing housebuilding \u6c34 \u5ddd \u8349 \u30e2\u30ce\u30af\u30ed \u5927\u7530\u533a japanesepeople japanesepersons ricohgriii geo:lat=35583391 geo:lon=139670649"}, {"datetaken": "2009-12-27 15:41:45", "license": "3", "title": "The Moon in the Sky", "text": "", "album_id": "72157623140181961", "longitude": "139.670112", "url_o": "https://farm5.staticflickr.com/4002/4303823630_721a6f4a5f_o.jpg", "secret": "78b8dfefa5", "media": "photo", "latitude": "35.584761", "id": "4303823630", "tags": "sky blackandwhite moon building japan clouds geotagged tokyo wires electricity \u65e5\u672c \u6771\u4eac \u96f2 \u7a7a \u591a\u6469\u5ddd housebuilding \u6708 \u30e2\u30ce\u30af\u30ed \u5927\u7530\u533a geo:lon=139670112 ricohgriii geo:lat=35584761"}, {"datetaken": "2009-12-27 15:44:19", "license": "3", "title": "Distance", "text": "", "album_id": "72157623140181961", "longitude": "139.669833", "url_o": "https://farm5.staticflickr.com/4053/4303077923_5df1337705_o.jpg", "secret": "a6ded6947e", "media": "photo", "latitude": "35.585284", "id": "4303077923", "tags": "sky blackandwhite building tree nature grass japan clouds stairs geotagged concrete japanese tokyo alone earth \u65e5\u672c depressed \u6771\u4eac \u6728 distance \u96f2 \u7a7a depressing \u30e2\u30ce\u30af\u30ed \u5927\u7530\u533a japanesepeople japanesepersons geo:lon=139669833 ricohgriii geo:lat=35585284"}, {"datetaken": "2009-12-27 15:46:05", "license": "3", "title": "\u5b50\u4f9b\u306e\u30a2\u30fc\u30c8", "text": "", "album_id": "72157623140181961", "longitude": "139.669479", "url_o": "https://farm5.staticflickr.com/4053/4303824420_eef1dde14f_o.jpg", "secret": "3bd362ac90", "media": "photo", "latitude": "35.585642", "id": "4303824420", "tags": "blackandwhite streetart art japan geotagged concrete tokyo faces \u65e5\u672c \u6771\u4eac cry riverbank kidspainting \u30e2\u30ce\u30af\u30ed \u5927\u7530\u533a ricohgriii geo:lat=35585642 geo:lon=139669479"}, {"datetaken": "2009-12-27 15:46:18", "license": "3", "title": "M", "text": "", "album_id": "72157623140181961", "longitude": "139.669737", "url_o": "https://farm3.staticflickr.com/2776/4318566748_b17fe6d7ac_o.jpg", "secret": "dc26d10d0d", "media": "photo", "latitude": "35.585319", "id": "4318566748", "tags": "japan metal writing geotagged tokyo rust bokeh rusty \u65e5\u672c \u6771\u4eac \u591a\u6469\u5ddd \u5927\u7530\u533a \u9306 \u9244 epsonrd1s hyperbokeh voigtl\u00e4ndernokton50mmf11 kenkoprond8 geo:lat=35585319 geo:lon=139669737"}, {"datetaken": "2009-12-27 15:46:28", "license": "3", "title": "Hello Tokyo", "text": "", "album_id": "72157623140181961", "longitude": "139.668589", "url_o": "https://farm3.staticflickr.com/2683/4318566966_e847ca39f4_o.jpg", "secret": "ba3186f79c", "media": "photo", "latitude": "35.586619", "id": "4318566966", "tags": "bridge sky blackandwhite water japan clouds train river geotagged concrete tokyo electricity \u65e5\u672c \u6771\u4eac riverbank \u96fb\u8eca \u591a\u6469\u5ddd \u6c34 \u6a4b \u5ddd \u30e2\u30ce\u30af\u30ed \u5927\u7530\u533a geo:lon=139668589 ricohgriii geo:lat=35586619"}, {"datetaken": "2009-12-27 15:52:10", "license": "3", "title": "High Water lines", "text": "", "album_id": "72157623140181961", "longitude": "139.667559", "url_o": "https://farm5.staticflickr.com/4052/4317834849_5a4d7e89e5_o.jpg", "secret": "04e07caa41", "media": "photo", "latitude": "35.587806", "id": "4317834849", "tags": "blackandwhite water japan writing river geotagged concrete tokyo \u65e5\u672c \u6771\u4eac \u591a\u6469\u5ddd \u6c34 \u5ddd \u30e2\u30ce\u30af\u30ed \u5927\u7530\u533a geo:lat=35587806 ricohgriii geo:lon=139667559"}, {"datetaken": "2009-12-27 16:00:59", "license": "3", "title": "\u6697", "text": "", "album_id": "72157623140181961", "longitude": "139.665306", "url_o": "https://farm3.staticflickr.com/2721/4317835511_647cf09361_o.jpg", "secret": "c645125bac", "media": "photo", "latitude": "35.590101", "id": "4317835511", "tags": "street blackandwhite tree water japan fence river geotagged tokyo \u65e5\u672c \u6771\u4eac \u6728 \u591a\u6469\u5ddd siluette \u6c34 \u5ddd \u30e2\u30ce\u30af\u30ed \u9053 \u5927\u7530\u533a ricohgriii geo:lat=35590101 geo:lon=139665306"}, {"datetaken": "2009-12-27 16:06:23", "license": "3", "title": "\u6a4b", "text": "", "album_id": "72157623140181961", "longitude": "139.663954", "url_o": "https://farm3.staticflickr.com/2690/4318568302_c231509c8d_o.jpg", "secret": "e6e6097004", "media": "photo", "latitude": "35.592046", "id": "4318568302", "tags": "bridge blackandwhite tree japan stone geotagged tokyo path stones \u65e5\u672c \u6771\u4eac \u6728 \u77f3 \u6a4b \u30e2\u30ce\u30af\u30ed \u5927\u7530\u533a ricohgriii geo:lat=35592046 geo:lon=139663954"}, {"datetaken": "2009-12-27 16:10:49", "license": "3", "title": "\u65e5\u672c\u306e\u51acI", "text": "", "album_id": "72157623140181961", "longitude": "139.663428", "url_o": "https://farm5.staticflickr.com/4032/4333859610_510fa64a73_o.jpg", "secret": "4389ae8e0d", "media": "photo", "latitude": "35.592598", "id": "4333859610", "tags": "orange japan geotagged tokyo leaf bokeh \u65e5\u672c \u6771\u4eac \u7d05\u8449 \u51ac \u591a\u6469\u5ddd \u8449 \u5927\u7530\u533a epsonrd1s geo:lon=139663428 voigtl\u00e4ndernokton50mmf11 geo:lat=35592598"}, {"datetaken": "2009-12-27 16:13:57", "license": "3", "title": "\u65e5\u672c\u306e\u51acII", "text": "", "album_id": "72157623140181961", "longitude": "139.663715", "url_o": "https://farm3.staticflickr.com/2769/4333860122_c46bc88b6f_o.jpg", "secret": "71d400ec78", "media": "photo", "latitude": "35.592238", "id": "4333860122", "tags": "orange japan geotagged tokyo leaf bokeh \u65e5\u672c \u6771\u4eac \u7d05\u8449 \u51ac \u591a\u6469\u5ddd \u8449 \u5927\u7530\u533a epsonrd1s voigtl\u00e4ndernokton50mmf11 geo:lat=35592238 geo:lon=139663715"}, {"datetaken": "2009-12-27 16:40:28", "license": "3", "title": "\u591c\u306e\u30d0\u30e9", "text": "", "album_id": "72157623140181961", "longitude": "139.667105", "url_o": "https://farm5.staticflickr.com/4012/4333860378_8392f283d5_o.jpg", "secret": "f52879f431", "media": "photo", "latitude": "35.595911", "id": "4333860378", "tags": "pink light flower rose japan geotagged lights tokyo leaf bokeh \u65e5\u672c \u6771\u4eac \u82b1 \u51ac \u8449 \u7530\u5712\u8abf\u5e03 \u5927\u7530\u533a epsonrd1s geo:lat=35595911 voigtl\u00e4ndernokton50mmf11 geo:lon=139667105"}, {"datetaken": "2009-12-27 17:14:31", "license": "3", "title": "\u591c\u306e\u9b5a", "text": "", "album_id": "72157623140181961", "longitude": "139.671212", "url_o": "https://farm5.staticflickr.com/4046/4333860506_28e22dd691_o.jpg", "secret": "d8ce5c008d", "media": "photo", "latitude": "35.584861", "id": "4333860506", "tags": "blackandwhite fish water japan river dark geotagged tokyo \u65e5\u672c \u6771\u4eac \u591a\u6469\u5ddd \u9b5a \u6c34 \u5ddd \u30e2\u30ce\u30af\u30ed \u5927\u7530\u533a \u6697\u3044 geo:lon=139671212 ricohgriii geo:lat=35584861"}, {"datetaken": "2009-12-27 17:31:46", "license": "3", "title": "\u98f2\u307f\u5c4b", "text": "", "album_id": "72157623140181961", "longitude": "139.681812", "url_o": "https://farm5.staticflickr.com/4071/4333118929_a63cdd2f0f_o.jpg", "secret": "558115ab98", "media": "photo", "latitude": "35.574892", "id": "4333118929", "tags": "door light blackandwhite building window sign japan writing geotagged lights tokyo \u65e5\u672c \u6771\u4eac housebuilding nomiya \u30e2\u30ce\u30af\u30ed \u5e97 \u5927\u7530\u533a \u98f2\u307f\u5c4b \u9d5c\u306e\u6728 ricohgriii geo:lat=35574892 geo:lon=139681812"}, {"datetaken": "2009-12-27 17:38:05", "license": "3", "title": "\u591c\u306e\u91d1", "text": "", "album_id": "72157623140181961", "longitude": "139.682837", "url_o": "https://farm5.staticflickr.com/4065/4335931431_248eecdffe_o.jpg", "secret": "caae2dcf1f", "media": "photo", "latitude": "35.573871", "id": "4335931431", "tags": "flowers winter plants flower yellow japan night geotagged tokyo bokeh \u65e5\u672c \u6771\u4eac \u82b1 \u51ac \u591a\u6469\u5ddd \u9ec4\u8272 \u5927\u7530\u533a epsonrd1s voigtl\u00e4ndernokton50mmf11 geo:lat=35573871 geo:lon=139682837"}, {"datetaken": "2009-12-27 17:38:49", "license": "3", "title": "The Darkness", "text": "", "album_id": "72157623140181961", "longitude": "139.683276", "url_o": "https://farm3.staticflickr.com/2774/4336677982_3c1135d8ab_o.jpg", "secret": "a4db8b9518", "media": "photo", "latitude": "35.573426", "id": "4336677982", "tags": "light blackandwhite plants black flower building window japan wall night dark geotagged lights tokyo \u65e5\u672c \u6771\u4eac housebuilding \u30e2\u30ce\u30af\u30ed \u58c1 \u5927\u7530\u533a geo:lon=139683276 ricohgriii \u6cbc\u90e8 geo:lat=35573426"}, {"datetaken": "2009-12-27 17:43:18", "license": "3", "title": "The Sign", "text": "", "album_id": "72157623140181961", "longitude": "139.685822", "url_o": "https://farm5.staticflickr.com/4061/4335932031_39cddfb97a_o.jpg", "secret": "f46a0a4cf8", "media": "photo", "latitude": "35.572058", "id": "4335932031", "tags": "blue red sign japan wall night writing geotagged tokyo rust bokeh lock rusty \u65e5\u672c \u6771\u4eac \u591a\u6469\u5ddd \u58c1 \u5927\u7530\u533a \u9306 epsonrd1s voigtl\u00e4ndernokton50mmf11 geo:lat=35572058 geo:lon=139685822"}, {"datetaken": "2009-12-27 17:45:51", "license": "3", "title": "The Graffiti", "text": "", "album_id": "72157623140181961", "longitude": "139.687174", "url_o": "https://farm5.staticflickr.com/4008/4336678488_0739e52260_o.jpg", "secret": "92fa707e5e", "media": "photo", "latitude": "35.571639", "id": "4336678488", "tags": "light blackandwhite black japan wall night dark geotagged lights graffiti tokyo \u65e5\u672c \u6771\u4eac \u30e2\u30ce\u30af\u30ed \u58c1 \u5927\u7530\u533a \u4e0b\u4e38\u5b50 geo:lon=139687174 ricohgriii geo:lat=35571639"}, {"datetaken": "2009-12-27 17:47:26", "license": "3", "title": "The Window", "text": "", "album_id": "72157623140181961", "longitude": "139.687777", "url_o": "https://farm3.staticflickr.com/2708/4336678998_8c1f6a8445_o.jpg", "secret": "946a92d6c2", "media": "photo", "latitude": "35.571321", "id": "4336678998", "tags": "light window japan wall night geotagged lights tokyo wires electricity \u65e5\u672c \u6771\u4eac \u7a93 \u96fb\u7dda \u58c1 \u5927\u7530\u533a \u4e0b\u4e38\u5b50 epsonrd1s voigtl\u00e4ndernokton50mmf11 geo:lat=35571321 geo:lon=139687777"}, {"datetaken": "2010-01-23 18:48:41", "license": "5", "title": "Soportales del Palacio de Rajoy", "text": "", "album_id": "72157623144843189", "longitude": "-8.546150", "url_o": "https://farm5.staticflickr.com/4041/4297996877_7c2d08db1a_o.jpg", "secret": "9ab273359a", "media": "photo", "latitude": "42.880103", "id": "4297996877", "tags": "santiago espa\u00f1a palace galicia compostela rajoy ayuntamiento palacio xunta pazo concello raxoi"}, {"datetaken": "2010-01-23 18:49:46", "license": "5", "title": "Santiago de Compostela", "text": "", "album_id": "72157623144843189", "longitude": "-8.546193", "url_o": "https://farm5.staticflickr.com/4020/4298001041_4411dd7f55_o.jpg", "secret": "75e3ff9c99", "media": "photo", "latitude": "42.879906", "id": "4298001041", "tags": "santiago compostela"}, {"datetaken": "2010-01-23 18:51:25", "license": "5", "title": "Linterna de la Torre de la Berenguela", "text": "", "album_id": "72157623144843189", "longitude": "-8.544176", "url_o": "https://farm3.staticflickr.com/2779/4298004731_4849361112_o.jpg", "secret": "31f1ebc8c7", "media": "photo", "latitude": "42.880362", "id": "4298004731", "tags": "plaza santiago square torre cathedral south catedral reloj sur lantern fachada plater\u00edas linterna berenguela"}, {"datetaken": "2010-01-23 18:52:43", "license": "5", "title": "Galer\u00edas", "text": "", "album_id": "72157623144843189", "longitude": "-8.545936", "url_o": "https://farm5.staticflickr.com/4050/4298756044_ce03622602_o.jpg", "secret": "4fcbb125bd", "media": "photo", "latitude": "42.879879", "id": "4298756044", "tags": "plaza santiago espa\u00f1a square galicia galleries compostela obradoiro galer\u00edas praza"}, {"datetaken": "2010-01-23 18:53:55", "license": "5", "title": "Galer\u00edas", "text": "", "album_id": "72157623144843189", "longitude": "-8.545936", "url_o": "https://farm5.staticflickr.com/4041/4298016169_93cfae4b74_o.jpg", "secret": "c315278e10", "media": "photo", "latitude": "42.879879", "id": "4298016169", "tags": "plaza santiago espa\u00f1a square galicia galleries compostela obradoiro galer\u00edas praza"}, {"datetaken": "2010-01-23 18:54:52", "license": "5", "title": "Fachada principal de la Catedral de Santiago", "text": "", "album_id": "72157623144843189", "longitude": "-8.545206", "url_o": "https://farm3.staticflickr.com/2730/4298021705_86b9e75387_o.jpg", "secret": "3bab290f2e", "media": "photo", "latitude": "42.880618", "id": "4298021705", "tags": "plaza santiago west square cathedral catedral fachada obradoiro oeste"}, {"datetaken": "2010-01-23 18:58:16", "license": "5", "title": "Fachada principal de la Catedral de Santiago", "text": "", "album_id": "72157623144843189", "longitude": "-8.545206", "url_o": "https://farm3.staticflickr.com/2685/4298773190_fb0ea93b82_o.jpg", "secret": "dedc017091", "media": "photo", "latitude": "42.880618", "id": "4298773190", "tags": "plaza santiago west square cathedral catedral fachada obradoiro oeste"}, {"datetaken": "2010-01-23 19:00:58", "license": "5", "title": "Fachada principal de la Catedral de Santiago", "text": "", "album_id": "72157623144843189", "longitude": "-8.545206", "url_o": "https://farm3.staticflickr.com/2777/4298778830_0d952d896b_o.jpg", "secret": "b224d8af39", "media": "photo", "latitude": "42.880618", "id": "4298778830", "tags": "plaza santiago west square cathedral catedral fachada obradoiro oeste"}, {"datetaken": "2010-01-23 19:02:46", "license": "5", "title": "Palacio de Rajoy", "text": "", "album_id": "72157623144843189", "longitude": "-8.546258", "url_o": "https://farm5.staticflickr.com/4046/4298038691_d039914d57_o.jpg", "secret": "d46b24673b", "media": "photo", "latitude": "42.880339", "id": "4298038691", "tags": "santiago espa\u00f1a palace galicia compostela rajoy ayuntamiento palacio xunta pazo concello raxoi"}, {"datetaken": "2010-01-23 19:05:42", "license": "5", "title": "Fachada principal de la Catedral de Santiago", "text": "", "album_id": "72157623144843189", "longitude": "-8.545206", "url_o": "https://farm3.staticflickr.com/2761/4298790558_ef728399c3_o.jpg", "secret": "1dd6c8cf0b", "media": "photo", "latitude": "42.880618", "id": "4298790558", "tags": "plaza santiago west square cathedral catedral fachada obradoiro oeste"}, {"datetaken": "2010-01-23 19:13:15", "license": "5", "title": "Fachada Este de la Catedral de Santiago", "text": "", "album_id": "72157623144843189", "longitude": "-8.544112", "url_o": "https://farm3.staticflickr.com/2740/4298797028_b940852970_o.jpg", "secret": "2251dd2b5e", "media": "photo", "latitude": "42.880681", "id": "4298797028", "tags": "plaza santiago square cathedral catedral east este fachada quintana"}, {"datetaken": "2010-01-23 19:14:12", "license": "5", "title": "Puerta Santa de la Catedral de Santiago", "text": "", "album_id": "72157623144843189", "longitude": "-8.544112", "url_o": "https://farm5.staticflickr.com/4001/4298803046_d9d9527ba8_o.jpg", "secret": "0a0a1f26dc", "media": "photo", "latitude": "42.880681", "id": "4298803046", "tags": "santa door plaza santiago square puerta cathedral catedral holly east este fachada quintana"}, {"datetaken": "2010-01-23 19:15:06", "license": "5", "title": "Fachada Este de la Catedral de Santiago", "text": "", "album_id": "72157623144843189", "longitude": "-8.544112", "url_o": "https://farm5.staticflickr.com/4010/4298062629_6188dc40ed_o.jpg", "secret": "083f07a154", "media": "photo", "latitude": "42.880681", "id": "4298062629", "tags": "plaza santiago square cathedral catedral east este fachada quintana"}, {"datetaken": "2010-01-23 19:16:46", "license": "5", "title": "Plaza de las Plater\u00edas", "text": "", "album_id": "72157623144843189", "longitude": "-8.544112", "url_o": "https://farm5.staticflickr.com/4030/4298820078_41ec6847c5_o.jpg", "secret": "24911db7bc", "media": "photo", "latitude": "42.880681", "id": "4298820078", "tags": "plaza santiago square casa cathedral catedral sur chapter fachada cabildo plater\u00edas cloiter"}, {"datetaken": "2010-01-23 19:18:23", "license": "5", "title": "Fachada Sur de la Catedral de Santiago", "text": "", "album_id": "72157623144843189", "longitude": "-8.544176", "url_o": "https://farm5.staticflickr.com/4063/4298825962_d81182ba6a_o.jpg", "secret": "a27d639379", "media": "photo", "latitude": "42.880362", "id": "4298825962", "tags": "plaza santiago square torre cathedral south catedral reloj sur fachada plater\u00edas berenguela"}, {"datetaken": "2010-01-23 19:19:28", "license": "5", "title": "R\u00faa do Vilar", "text": "", "album_id": "72157623144843189", "longitude": "-8.544241", "url_o": "https://farm3.staticflickr.com/2759/4298831110_dd32be29f7_o.jpg", "secret": "bc07e89807", "media": "photo", "latitude": "42.879832", "id": "4298831110", "tags": "street santiago espa\u00f1a calle galicia compostela vilar r\u00faa villar"}, {"datetaken": "2010-01-22 03:18:50", "license": "1", "title": "A house in NYC", "text": "", "album_id": "72157623156198707", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4303776766_23463d0c79_o.jpg", "secret": "e01fc09e9f", "media": "photo", "latitude": "0", "id": "4303776766", "tags": ""}, {"datetaken": "2010-01-22 03:19:43", "license": "1", "title": "A house in NYC", "text": "", "album_id": "72157623156198707", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4303031065_9ae211aebb_o.jpg", "secret": "fede0625dd", "media": "photo", "latitude": "0", "id": "4303031065", "tags": ""}, {"datetaken": "2010-01-22 03:22:37", "license": "1", "title": "A house in NYC", "text": "", "album_id": "72157623156198707", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4303777548_98e336ae32_o.jpg", "secret": "b7a23c25b9", "media": "photo", "latitude": "0", "id": "4303777548", "tags": ""}, {"datetaken": "2010-01-22 03:23:14", "license": "1", "title": "NYC", "text": "", "album_id": "72157623156198707", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4303778118_1ea2723528_o.jpg", "secret": "5c41d60d53", "media": "photo", "latitude": "0", "id": "4303778118", "tags": ""}, {"datetaken": "2010-01-22 07:49:49", "license": "1", "title": "Brooklyn", "text": "", "album_id": "72157623156198707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2710/4303032559_f154dff493_o.jpg", "secret": "b509ba3cd9", "media": "photo", "latitude": "0", "id": "4303032559", "tags": ""}, {"datetaken": "2010-01-22 07:50:23", "license": "1", "title": "Brooklyn", "text": "", "album_id": "72157623156198707", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4303033039_c49d23d27a_o.jpg", "secret": "5c3a34788b", "media": "photo", "latitude": "0", "id": "4303033039", "tags": ""}, {"datetaken": "2010-01-22 08:02:44", "license": "1", "title": "Brooklyn", "text": "", "album_id": "72157623156198707", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4303033469_a7347fa98c_o.jpg", "secret": "fb3db67b14", "media": "photo", "latitude": "0", "id": "4303033469", "tags": ""}, {"datetaken": "2010-01-22 08:03:11", "license": "1", "title": "Brooklyn", "text": "", "album_id": "72157623156198707", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4303780076_14c98185ed_o.jpg", "secret": "bfa313b657", "media": "photo", "latitude": "0", "id": "4303780076", "tags": "new york ny brooklyn garden day seat name tag lorenzo 50m"}, {"datetaken": "2010-01-22 08:09:17", "license": "1", "title": "NYC", "text": "", "album_id": "72157623156198707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4303780776_494ae8ccbc_o.jpg", "secret": "cdbf3374cc", "media": "photo", "latitude": "0", "id": "4303780776", "tags": ""}, {"datetaken": "2010-01-22 09:14:27", "license": "1", "title": "NYC", "text": "", "album_id": "72157623156198707", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4303781104_c0a9603c0b_o.jpg", "secret": "20f3a1bc93", "media": "photo", "latitude": "0", "id": "4303781104", "tags": ""}, {"datetaken": "2010-01-23 08:40:32", "license": "1", "title": "NYC", "text": "", "album_id": "72157623156198707", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4306414452_e9ddbc36a2_o.jpg", "secret": "c98fe9672f", "media": "photo", "latitude": "0", "id": "4306414452", "tags": ""}, {"datetaken": "2010-01-23 08:41:05", "license": "1", "title": "NYC", "text": "", "album_id": "72157623156198707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2768/4306415090_548ac27ebc_o.jpg", "secret": "a9075c5459", "media": "photo", "latitude": "0", "id": "4306415090", "tags": ""}, {"datetaken": "2010-01-23 08:43:06", "license": "1", "title": "New york sunst", "text": "", "album_id": "72157623156198707", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4331607083_a381d37eac_o.jpg", "secret": "8cb3f52c3b", "media": "photo", "latitude": "0", "id": "4331607083", "tags": "sunset sky cloud ny newyork church"}, {"datetaken": "2010-01-23 08:52:07", "license": "1", "title": "NYC", "text": "", "album_id": "72157623156198707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2764/4305672987_cd92734674_o.jpg", "secret": "05a1dbb873", "media": "photo", "latitude": "0", "id": "4305672987", "tags": ""}, {"datetaken": "2010-01-23 10:26:22", "license": "1", "title": "Indian Restaurant - NYC", "text": "", "album_id": "72157623156198707", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2783/4305673371_6725fe12a9_o.jpg", "secret": "50e86c1a1b", "media": "photo", "latitude": "0", "id": "4305673371", "tags": "street new york nyc window restaurant indian queens"}, {"datetaken": "2010-01-24 13:08:42", "license": "3", "title": "Cherry-tree", "text": "", "album_id": "72157623157272067", "longitude": "22.582054", "url_o": "https://farm3.staticflickr.com/2793/4304182430_1f2010b6ff_o.jpg", "secret": "9a43886871", "media": "photo", "latitude": "44.728930", "id": "4304182430", "tags": "trees snow frost romania roll severin rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2010-01-24 13:09:01", "license": "3", "title": "Three trees", "text": "", "album_id": "72157623157272067", "longitude": "22.576732", "url_o": "https://farm3.staticflickr.com/2707/4304179196_b6f4bea41b_o.jpg", "secret": "b5b2469e88", "media": "photo", "latitude": "44.729723", "id": "4304179196", "tags": "trees snow frost romania roll severin rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2010-01-24 13:13:20", "license": "3", "title": "Mistletoe", "text": "", "album_id": "72157623157272067", "longitude": "22.568664", "url_o": "https://farm3.staticflickr.com/2686/4303438205_81512c3034_o.jpg", "secret": "989ab567a6", "media": "photo", "latitude": "44.735454", "id": "4303438205", "tags": "trees snow frost romania roll severin rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f eeecotourism podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2010-01-24 13:21:58", "license": "3", "title": "Sugar everywhere!", "text": "", "album_id": "72157623157272067", "longitude": "22.568492", "url_o": "https://farm3.staticflickr.com/2756/4303437983_a864fb930b_o.jpg", "secret": "70c06ab756", "media": "photo", "latitude": "44.733564", "id": "4303437983", "tags": "trees snow frost romania roll severin rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap carpathianmountains rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2010-01-24 13:34:57", "license": "3", "title": "Frozen bush", "text": "", "album_id": "72157623157272067", "longitude": "22.560253", "url_o": "https://farm5.staticflickr.com/4019/4303438833_40b27e149b_o.jpg", "secret": "fdb33f2c14", "media": "photo", "latitude": "44.742161", "id": "4303438833", "tags": "trees snow frost romania roll severin rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2010-01-24 13:39:10", "license": "3", "title": "Snow-white!", "text": "", "album_id": "72157623157272067", "longitude": "22.556819", "url_o": "https://farm3.staticflickr.com/2788/4304179036_619c8eec47_o.jpg", "secret": "f43b2c4c55", "media": "photo", "latitude": "44.744050", "id": "4304179036", "tags": "trees snow frost romania roll severin rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap carpathianmountains rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f eeecotourism podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2010-01-24 13:40:51", "license": "3", "title": "HDR on some pines", "text": "", "album_id": "72157623157272067", "longitude": "22.547206", "url_o": "https://farm5.staticflickr.com/4007/4304179374_d57c25d62c_o.jpg", "secret": "27ec32ca87", "media": "photo", "latitude": "44.751365", "id": "4304179374", "tags": "trees snow frost pines romania roll severin hdr rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2010-01-24 13:51:05", "license": "3", "title": "Tunnel", "text": "", "album_id": "72157623157272067", "longitude": "22.562828", "url_o": "https://farm5.staticflickr.com/4021/4303437685_df64b90da4_o.jpg", "secret": "7c82eab50a", "media": "photo", "latitude": "44.742953", "id": "4303437685", "tags": "trees snow frost romania roll severin rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2010-01-24 13:56:32", "license": "3", "title": "Friendship", "text": "", "album_id": "72157623157272067", "longitude": "22.565231", "url_o": "https://farm5.staticflickr.com/4001/4303437537_2b9b016203_o.jpg", "secret": "3e00fcf86e", "media": "photo", "latitude": "44.741429", "id": "4303437537", "tags": "trees snow frost romania roll severin rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2010-01-24 14:03:39", "license": "3", "title": "Trails", "text": "", "album_id": "72157623157272067", "longitude": "22.545490", "url_o": "https://farm5.staticflickr.com/4064/4303437403_cbb52f0610_o.jpg", "secret": "2315693766", "media": "photo", "latitude": "44.752585", "id": "4303437403", "tags": "trees snow frost romania roll severin rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap carpathianmountains rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f eeecotourism podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2010-01-24 14:04:40", "license": "3", "title": "There is still hope!", "text": "", "album_id": "72157623157272067", "longitude": "22.546005", "url_o": "https://farm5.staticflickr.com/4018/4304181078_6a151078e2_o.jpg", "secret": "3f96036190", "media": "photo", "latitude": "44.753621", "id": "4304181078", "tags": "trees snow frost romania roll severin rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2010-01-24 14:06:33", "license": "3", "title": "Little cloud and a moon.... :)", "text": "", "album_id": "72157623157272067", "longitude": "22.546005", "url_o": "https://farm5.staticflickr.com/4002/4303437021_784548b020_o.jpg", "secret": "970782a264", "media": "photo", "latitude": "44.753621", "id": "4303437021", "tags": "trees snow frost romania roll severin rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2010-01-24 14:08:20", "license": "3", "title": "This is heavy... really heavy!", "text": "", "album_id": "72157623157272067", "longitude": "22.546005", "url_o": "https://farm5.staticflickr.com/4018/4303436807_b0c1998a98_o.jpg", "secret": "9ffe695140", "media": "photo", "latitude": "44.753621", "id": "4303436807", "tags": "trees snow frost romania roll severin rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2010-01-24 14:16:54", "license": "3", "title": "Frozen pine branches", "text": "", "album_id": "72157623157272067", "longitude": "22.540512", "url_o": "https://farm5.staticflickr.com/4037/4303436605_33e7a257ae_o.jpg", "secret": "72630646a9", "media": "photo", "latitude": "44.757948", "id": "4303436605", "tags": "trees snow frost romania roll severin rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2010-01-24 14:35:37", "license": "3", "title": "Snow, Curves, Bushes, Trees and ... some poles.", "text": "", "album_id": "72157623157272067", "longitude": "22.558364", "url_o": "https://farm5.staticflickr.com/4009/4303436367_1a5f6f932e_o.jpg", "secret": "c1a3d36b5f", "media": "photo", "latitude": "44.771416", "id": "4303436367", "tags": "trees snow frost romania roll severin rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2010-01-24 14:44:44", "license": "3", "title": "House at Schitu de Sus", "text": "", "album_id": "72157623157272067", "longitude": "22.569866", "url_o": "https://farm5.staticflickr.com/4027/4304180068_4e46b080bd_o.jpg", "secret": "5893e75249", "media": "photo", "latitude": "44.767577", "id": "4304180068", "tags": "trees snow frost romania roll severin rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap carpathianmountains rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2010-01-24 14:47:40", "license": "3", "title": "Me. Almost frozen.", "text": "", "album_id": "72157623157272067", "longitude": "22.570381", "url_o": "https://farm5.staticflickr.com/4012/4303435759_9b242a5120_o.jpg", "secret": "2b9fba44a8", "media": "photo", "latitude": "44.767150", "id": "4303435759", "tags": "trees snow frost romania roll severin rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2010-01-24 15:54:33", "license": "3", "title": "fericirea oamenilor_suferinta copacilor", "text": "", "album_id": "72157623157272067", "longitude": "22.562313", "url_o": "https://farm5.staticflickr.com/4063/4304179608_cdff008b36_o.jpg", "secret": "08d5ea3eec", "media": "photo", "latitude": "44.741795", "id": "4304179608", "tags": "trees snow frost romania roll mistletoe severin rumania romenia rom\u00eania roumanie ger rom\u00e9nia roemenie iarna frig zapada rumunsko romanya rum\u00e4nien roemeni\u00eb rum\u00e6nien ruman\u00eda rumunija rom\u00e2nia rumanien coldsnap vasc rumunia 40d rom\u00e1nia \u0440\u0443\u043c\u044b\u043d\u0438\u044f v\u00e2sc \u0440\u0443\u043c\u0443\u043d\u0438\u0458\u0430 \u0440\u0443\u043c\u0443\u043d\u0456\u044f \u0440\u0443\u043c\u044a\u043d\u0438\u044f rumnija rumunjska \u0440\u0443\u043c\u044b\u0301\u043d\u0438\u044f rumuniya romunija p\u0443\u043c\u044b\u043d\u0438\u044f eeecotourism podisulmehedinti podi\u015fulmehedin\u0163i dj607b"}, {"datetaken": "2001-04-30 16:49:13", "license": "3", "title": "2001_04_30-16_49_13", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/139070237_9d93c6bb4f_o.jpg", "secret": "9d93c6bb4f", "media": "photo", "latitude": "0", "id": "139070237", "tags": "bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-04-30 16:49:25", "license": "3", "title": "2001_04_30-16_49_25", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/139070586_1054fa5fa1_o.jpg", "secret": "1054fa5fa1", "media": "photo", "latitude": "0", "id": "139070586", "tags": "bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-04-30 16:49:38", "license": "3", "title": "2001_04_30-16_49_38", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/139070671_f50ebd2cf5_o.jpg", "secret": "f50ebd2cf5", "media": "photo", "latitude": "0", "id": "139070671", "tags": "bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-04-30 16:49:53", "license": "3", "title": "2001_04_30-16_49_53", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/139070761_134ef124de_o.jpg", "secret": "134ef124de", "media": "photo", "latitude": "0", "id": "139070761", "tags": "bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-04-30 16:50:34", "license": "3", "title": "2001_04_30-16_50_34", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/139070922_d538d437f4_o.jpg", "secret": "d538d437f4", "media": "photo", "latitude": "0", "id": "139070922", "tags": "bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-04-30 16:50:49", "license": "3", "title": "2001_04_30-16_50_49", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/139071089_7d6b96b52f_o.jpg", "secret": "7d6b96b52f", "media": "photo", "latitude": "0", "id": "139071089", "tags": "bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-04-30 19:00:23", "license": "3", "title": "On the roof of Broadcasting House", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/139071190_2c022765ed_o.jpg", "secret": "2c022765ed", "media": "photo", "latitude": "0", "id": "139071190", "tags": "london skyline bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-04-30 19:00:31", "license": "3", "title": "2001_04_30-19_00_31", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/139071384_ec5e2c8459_o.jpg", "secret": "ec5e2c8459", "media": "photo", "latitude": "0", "id": "139071384", "tags": "sunset london skyline bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-04-30 19:00:38", "license": "3", "title": "2001_04_30-19_00_38", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/139071648_b1c5ae2b8f_o.jpg", "secret": "b1c5ae2b8f", "media": "photo", "latitude": "0", "id": "139071648", "tags": "sunset london skyline bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-04-30 19:00:45", "license": "3", "title": "2001_04_30-19_00_45", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/139071745_251f206270_o.jpg", "secret": "251f206270", "media": "photo", "latitude": "0", "id": "139071745", "tags": "london skyline bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-04-30 19:00:53", "license": "3", "title": "2001_04_30-19_00_53", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/139071851_b3229cb5f7_o.jpg", "secret": "b3229cb5f7", "media": "photo", "latitude": "0", "id": "139071851", "tags": "london skyline bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-04-30 19:01:10", "license": "3", "title": "2001_04_30-19_01_10", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/139071892_826a707b15_o.jpg", "secret": "826a707b15", "media": "photo", "latitude": "0", "id": "139071892", "tags": "london skyline bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-04-30 19:02:19", "license": "3", "title": "2001_04_30-19_02_19", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/139071966_8c78e62db2_o.jpg", "secret": "8c78e62db2", "media": "photo", "latitude": "0", "id": "139071966", "tags": "tower bbc broadcastinghouse mayday bt maydayriots"}, {"datetaken": "2001-05-01 07:57:38", "license": "3", "title": "Approaching BH on May Morning", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/139072019_8b7e3b806d_o.jpg", "secret": "8b7e3b806d", "media": "photo", "latitude": "0", "id": "139072019", "tags": "bbc broadcastinghouse mayday bbcbroadcastinghouse maydayriots"}, {"datetaken": "2001-05-01 13:37:58", "license": "3", "title": "2001_05_01-13_37_58", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/139072102_2b6cfc4bbd_o.jpg", "secret": "2b6cfc4bbd", "media": "photo", "latitude": "0", "id": "139072102", "tags": "bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-05-01 13:38:23", "license": "3", "title": "2001_05_01-13_38_23", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/139072185_19f2346da3_o.jpg", "secret": "19f2346da3", "media": "photo", "latitude": "0", "id": "139072185", "tags": "bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-05-01 13:38:57", "license": "3", "title": "2001_05_01-13_38_57", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/139072485_41367833f7_o.jpg", "secret": "41367833f7", "media": "photo", "latitude": "0", "id": "139072485", "tags": "bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-05-01 14:07:20", "license": "3", "title": "News 24 camera crew on the roof of the old building", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/139072606_ff18e9743a_o.jpg", "secret": "ff18e9743a", "media": "photo", "latitude": "0", "id": "139072606", "tags": "bbc broadcastinghouse mayday bbcbroadcastinghouse maydayriots"}, {"datetaken": "2001-05-01 14:07:32", "license": "3", "title": "2001_05_01-14_07_32", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/139072700_3707c41194_o.jpg", "secret": "3707c41194", "media": "photo", "latitude": "0", "id": "139072700", "tags": "bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-05-01 14:07:44", "license": "3", "title": "Riot police move in", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/139072889_d6278d6ba6_o.jpg", "secret": "d6278d6ba6", "media": "photo", "latitude": "0", "id": "139072889", "tags": "police bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-05-01 14:07:59", "license": "3", "title": "Camera positions on the roof of BH capture the crowd", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/139072973_090e05ddf7_o.jpg", "secret": "090e05ddf7", "media": "photo", "latitude": "0", "id": "139072973", "tags": "bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-05-01 14:08:15", "license": "3", "title": "Police and broadcasters helicopters above Oxford Circus", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/139073074_910eae36b6_o.jpg", "secret": "910eae36b6", "media": "photo", "latitude": "0", "id": "139073074", "tags": "bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-05-01 14:08:29", "license": "3", "title": "2001_05_01-14_08_29", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/139073228_52d7c23430_o.jpg", "secret": "52d7c23430", "media": "photo", "latitude": "0", "id": "139073228", "tags": "bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-05-01 14:09:07", "license": "3", "title": "Rain doesn't put off the rioters", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/139074020_65f633e9db_o.jpg", "secret": "65f633e9db", "media": "photo", "latitude": "0", "id": "139074020", "tags": "bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-05-01 14:09:27", "license": "3", "title": "Riot crowds grow in Oxford Circus", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/139074110_daff9d5e75_o.jpg", "secret": "daff9d5e75", "media": "photo", "latitude": "0", "id": "139074110", "tags": "bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-05-01 14:10:41", "license": "3", "title": "Riot crowds grow in Oxford Circus", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/139074197_bc56a8ebf2_o.jpg", "secret": "bc56a8ebf2", "media": "photo", "latitude": "0", "id": "139074197", "tags": "bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-05-01 14:12:19", "license": "3", "title": "Camera position at the front of BH", "text": "", "album_id": "72057594123141054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/139074297_7bf63dc775_o.jpg", "secret": "7bf63dc775", "media": "photo", "latitude": "0", "id": "139074297", "tags": "bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2001-05-01 14:15:00", "license": "3", "title": "Riot crowds penned in at Oxford Circuis, as seen from Broadcasting House", "text": "", "album_id": "72057594123141054", "longitude": "-0.143412", "url_o": "https://farm1.staticflickr.com/44/139074398_99c179e77b_o.jpg", "secret": "99c179e77b", "media": "photo", "latitude": "51.518937", "id": "139074398", "tags": "documentary bbc broadcastinghouse mayday maydayriots"}, {"datetaken": "2007-07-28 10:36:33", "license": "1", "title": "Bay Bridge from Coit Tower", "text": "", "album_id": "72157601053063486", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1260/925423901_de5a073f66_o.jpg", "secret": "07a625353d", "media": "photo", "latitude": "0", "id": "925423901", "tags": ""}, {"datetaken": "2007-07-28 10:36:33", "license": "1", "title": "San Fran from Coit Tower", "text": "", "album_id": "72157601053063486", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1377/925423977_3ed29272ae_o.jpg", "secret": "431c99e9b1", "media": "photo", "latitude": "0", "id": "925423977", "tags": ""}, {"datetaken": "2007-07-28 10:36:34", "license": "1", "title": "Financial District", "text": "", "album_id": "72157601053063486", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1090/926271380_2dc09df2c3_o.jpg", "secret": "b18cc7374d", "media": "photo", "latitude": "0", "id": "926271380", "tags": ""}, {"datetaken": "2007-07-28 10:36:34", "license": "1", "title": "Coit Tower from Lombard Street", "text": "", "album_id": "72157601053063486", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1329/926271470_b3b27081b4_o.jpg", "secret": "d42378e88d", "media": "photo", "latitude": "0", "id": "926271470", "tags": ""}, {"datetaken": "2007-07-28 10:36:35", "license": "1", "title": "Part of the Bridge", "text": "", "album_id": "72157601053063486", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1054/925424227_f139f16d5f_o.jpg", "secret": "cf363507c4", "media": "photo", "latitude": "0", "id": "925424227", "tags": ""}, {"datetaken": "2007-07-28 10:36:39", "license": "1", "title": "Blue House on Lombard Street", "text": "", "album_id": "72157601053063486", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1091/926272026_f19cdda663_o.jpg", "secret": "12f7660f37", "media": "photo", "latitude": "0", "id": "926272026", "tags": ""}, {"datetaken": "2007-07-28 10:36:40", "license": "1", "title": "Coit Tower again", "text": "", "album_id": "72157601053063486", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1286/925424867_b3c9811696_o.jpg", "secret": "638ab2f9d4", "media": "photo", "latitude": "0", "id": "925424867", "tags": ""}, {"datetaken": "2007-07-28 10:36:41", "license": "1", "title": "Lombard Street", "text": "", "album_id": "72157601053063486", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1332/925425005_b99b626a11_o.jpg", "secret": "d0bf827758", "media": "photo", "latitude": "0", "id": "925425005", "tags": ""}, {"datetaken": "2007-07-28 10:36:43", "license": "1", "title": "A strangely dull bit of Coit Tower", "text": "", "album_id": "72157601053063486", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1346/925425283_ed4979b9cc_o.jpg", "secret": "961fdae9be", "media": "photo", "latitude": "0", "id": "925425283", "tags": ""}, {"datetaken": "2007-07-28 10:36:45", "license": "1", "title": "Guy and P at the GGNRA", "text": "", "album_id": "72157601053063486", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1160/926272822_4795f44b74_o.jpg", "secret": "fd4e3e2f8b", "media": "photo", "latitude": "0", "id": "926272822", "tags": ""}, {"datetaken": "2007-07-28 10:36:46", "license": "1", "title": "Panoramic view of the Bridge", "text": "", "album_id": "72157601053063486", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1438/926272916_f691f0131f_o.jpg", "secret": "5bd7d0739e", "media": "photo", "latitude": "0", "id": "926272916", "tags": ""}, {"datetaken": "2007-07-28 10:36:47", "license": "1", "title": "Coit Tower", "text": "", "album_id": "72157601053063486", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1419/925425773_74b0000100_o.jpg", "secret": "0e32dfc341", "media": "photo", "latitude": "0", "id": "925425773", "tags": ""}, {"datetaken": "2007-09-14 11:17:20", "license": "6", "title": "Fishing in the Nile", "text": "", "album_id": "72157602004965238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1210/1380912745_db2663b6f4_o.jpg", "secret": "87bfe84d5c", "media": "photo", "latitude": "0", "id": "1380912745", "tags": ""}, {"datetaken": "2007-09-14 11:17:21", "license": "6", "title": "Sunset at Luxor", "text": "", "album_id": "72157602004965238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1432/1380912859_24cb4e8dc6_o.jpg", "secret": "11409b9af1", "media": "photo", "latitude": "0", "id": "1380912859", "tags": ""}, {"datetaken": "2007-09-14 11:17:22", "license": "6", "title": "Felucca on the Nile - Luxor", "text": "", "album_id": "72157602004965238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1089/1380913009_9f52a1cbf6_o.jpg", "secret": "c731dcb1af", "media": "photo", "latitude": "0", "id": "1380913009", "tags": ""}, {"datetaken": "2007-09-14 11:17:24", "license": "6", "title": "A Bazaar Friend", "text": "", "album_id": "72157602004965238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1379/1381813158_371da932a7_o.jpg", "secret": "6836e150bb", "media": "photo", "latitude": "0", "id": "1381813158", "tags": ""}, {"datetaken": "2007-09-14 11:17:25", "license": "6", "title": "Colossi of Memnon", "text": "", "album_id": "72157602004965238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1365/1381813266_02c469567a_o.jpg", "secret": "64d852f9b5", "media": "photo", "latitude": "0", "id": "1381813266", "tags": ""}, {"datetaken": "2007-09-14 11:17:26", "license": "6", "title": "Queen Hatshepsut", "text": "", "album_id": "72157602004965238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1401/1381813416_41cd98fc65_o.jpg", "secret": "588137b545", "media": "photo", "latitude": "0", "id": "1381813416", "tags": ""}, {"datetaken": "2007-09-14 11:17:27", "license": "6", "title": "Greeting at Mena House Palace", "text": "", "album_id": "72157602004965238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1172/1381813532_a585700bd6_o.jpg", "secret": "12b1d0d051", "media": "photo", "latitude": "0", "id": "1381813532", "tags": ""}, {"datetaken": "2007-09-14 11:17:28", "license": "6", "title": "Karnak Temple", "text": "", "album_id": "72157602004965238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1294/1381813626_66b6f33b38_o.jpg", "secret": "6b4aa2fa63", "media": "photo", "latitude": "0", "id": "1381813626", "tags": ""}, {"datetaken": "2007-09-14 11:17:29", "license": "6", "title": "Pyramid Stones - Giza", "text": "", "album_id": "72157602004965238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1200/1381813712_1865303f33_o.jpg", "secret": "60c3a05148", "media": "photo", "latitude": "0", "id": "1381813712", "tags": ""}, {"datetaken": "2007-09-14 11:17:29", "license": "6", "title": "Our Cruise Boat", "text": "", "album_id": "72157602004965238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1089/1381813818_6505861fab_o.jpg", "secret": "980370b011", "media": "photo", "latitude": "0", "id": "1381813818", "tags": ""}, {"datetaken": "2007-09-14 11:17:30", "license": "6", "title": "Sphinz", "text": "", "album_id": "72157602004965238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1229/1380913861_ff092fe200_o.jpg", "secret": "82298f22d9", "media": "photo", "latitude": "0", "id": "1380913861", "tags": ""}, {"datetaken": "2007-09-14 11:17:31", "license": "6", "title": "Farms along the Nile River", "text": "", "album_id": "72157602004965238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1177/1381814028_8ab127b87d_o.jpg", "secret": "ba379d334e", "media": "photo", "latitude": "0", "id": "1381814028", "tags": ""}, {"datetaken": "2007-09-14 11:17:32", "license": "6", "title": "Sunset on the Nile", "text": "", "album_id": "72157602004965238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1187/1381814122_0cc7ded1dc_o.jpg", "secret": "76aa8fd943", "media": "photo", "latitude": "0", "id": "1381814122", "tags": ""}, {"datetaken": "2007-09-14 11:17:33", "license": "6", "title": "Temple of Philae", "text": "", "album_id": "72157602004965238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1348/1380914201_1ae397b0b1_o.jpg", "secret": "c910e20e4b", "media": "photo", "latitude": "0", "id": "1380914201", "tags": ""}, {"datetaken": "2007-09-14 11:17:34", "license": "6", "title": "Valley of the Kings", "text": "", "album_id": "72157602004965238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1167/1380914323_902147b100_o.jpg", "secret": "5a9f0687b2", "media": "photo", "latitude": "0", "id": "1380914323", "tags": ""}, {"datetaken": "2004-05-24 12:41:26", "license": "2", "title": "Cotehele Entrance to Great Hall", "text": "", "album_id": "72157602689117526", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2251/1742849142_35fb2a72a8_o.jpg", "secret": "385a6817ae", "media": "photo", "latitude": "0", "id": "1742849142", "tags": "doorway elizabethan wisteria"}, {"datetaken": "2004-05-24 12:42:03", "license": "2", "title": "Cotehele House", "text": "", "album_id": "72157602689117526", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2042/1741999331_f1e0ce2f80_o.jpg", "secret": "764a8717d6", "media": "photo", "latitude": "0", "id": "1741999331", "tags": "old houses ancient cornwall cotehele"}, {"datetaken": "2004-05-24 12:42:19", "license": "2", "title": "The Courtyard", "text": "", "album_id": "72157602689117526", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2132/1741999639_2da15b4401_o.jpg", "secret": "884e66251e", "media": "photo", "latitude": "0", "id": "1741999639", "tags": ""}, {"datetaken": "2004-05-24 12:45:28", "license": "2", "title": "House & Garden", "text": "", "album_id": "72157602689117526", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2301/1742849884_fba6944509_o.jpg", "secret": "fb8a689ef5", "media": "photo", "latitude": "0", "id": "1742849884", "tags": "flowers plants gardens terraces"}, {"datetaken": "2004-05-24 12:48:11", "license": "2", "title": "House & Garden", "text": "", "album_id": "72157602689117526", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2137/1742849452_94e8ba631b_o.jpg", "secret": "c976b21000", "media": "photo", "latitude": "0", "id": "1742849452", "tags": "house beautiful garden cornwall"}, {"datetaken": "2004-05-24 12:52:09", "license": "2", "title": "Garden", "text": "", "album_id": "72157602689117526", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2307/1742000603_49b441a076_o.jpg", "secret": "a91d25ff61", "media": "photo", "latitude": "0", "id": "1742000603", "tags": "gardens cornwall dovecote cotehele"}, {"datetaken": "2004-05-24 13:22:48", "license": "2", "title": "Roses", "text": "", "album_id": "72157602689117526", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2077/1742000977_e1183d9a58_o.jpg", "secret": "e90100c7e4", "media": "photo", "latitude": "0", "id": "1742000977", "tags": "pink roses wall rambling"}, {"datetaken": "2004-05-24 13:41:28", "license": "2", "title": "Garden", "text": "", "album_id": "72157602689117526", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2013/1742001211_bfd557eba6_o.jpg", "secret": "1d27024300", "media": "photo", "latitude": "0", "id": "1742001211", "tags": "bridge river cornwall tamar"}, {"datetaken": "2004-05-24 13:47:23", "license": "2", "title": "Garden", "text": "", "album_id": "72157602689117526", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2030/1742001393_476fc6a8c7_o.jpg", "secret": "f4cf02a547", "media": "photo", "latitude": "0", "id": "1742001393", "tags": ""}, {"datetaken": "2004-05-24 13:48:29", "license": "2", "title": "Garden", "text": "", "album_id": "72157602689117526", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2023/1742001577_07f95612e1_o.jpg", "secret": "a90cdd7299", "media": "photo", "latitude": "0", "id": "1742001577", "tags": ""}, {"datetaken": "2004-05-24 13:49:39", "license": "2", "title": "Irises and other flowers", "text": "", "album_id": "72157602689117526", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2250/1742851312_01b41ffee4_o.jpg", "secret": "e51a6e7b31", "media": "photo", "latitude": "0", "id": "1742851312", "tags": "irises"}, {"datetaken": "2004-05-24 14:15:11", "license": "2", "title": "Old buildings by the River Tamar", "text": "", "album_id": "72157602689117526", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2370/1742851524_539eef79f0_o.jpg", "secret": "9498665df5", "media": "photo", "latitude": "0", "id": "1742851524", "tags": "tamar quayside cotehele"}, {"datetaken": "2004-05-24 14:41:44", "license": "2", "title": "The River Tamar", "text": "", "album_id": "72157602689117526", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2358/1742002163_f987e6123c_o.jpg", "secret": "61e0cb5ea8", "media": "photo", "latitude": "0", "id": "1742002163", "tags": "water river reeds quay tamar"}, {"datetaken": "2007-08-11 15:58:26", "license": "4", "title": "Our House", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1133/1085136009_34e5396172_o.jpg", "secret": "aa0e46a347", "media": "photo", "latitude": "47.267450", "id": "1085136009", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:27", "license": "4", "title": "Eenie", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1366/1085997480_d3c2249002_o.jpg", "secret": "77cb5cf808", "media": "photo", "latitude": "47.267450", "id": "1085997480", "tags": "2003 rooster eenie"}, {"datetaken": "2007-08-11 15:58:27", "license": "4", "title": "Eenie", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1067/1085997624_be3f18bf73_o.jpg", "secret": "6cc3cefcc5", "media": "photo", "latitude": "47.267450", "id": "1085997624", "tags": "2003 rooster eenie"}, {"datetaken": "2007-08-11 15:58:28", "license": "4", "title": "Eenie", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1302/1085136333_903c8e4061_o.jpg", "secret": "fc0759957e", "media": "photo", "latitude": "47.267450", "id": "1085136333", "tags": "2003 rooster eenie"}, {"datetaken": "2007-08-11 15:58:29", "license": "4", "title": "Eenie", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1236/1085997856_fcdac66c7d_o.jpg", "secret": "ceaa2c8b63", "media": "photo", "latitude": "47.267450", "id": "1085997856", "tags": "2003 rooster eenie"}, {"datetaken": "2007-08-11 15:58:30", "license": "4", "title": "Eenie", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1048/1085997980_32a9fe66f5_o.jpg", "secret": "3849221fc7", "media": "photo", "latitude": "47.267450", "id": "1085997980", "tags": "2003 rooster eenie"}, {"datetaken": "2007-08-11 15:58:31", "license": "4", "title": "Eenie, Meenie, Miney and Mo", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1289/1085998102_16226b2485_o.jpg", "secret": "539f4c0a25", "media": "photo", "latitude": "47.267450", "id": "1085998102", "tags": "2003 rooster eenie"}, {"datetaken": "2007-08-11 15:58:32", "license": "4", "title": "Eenie and Sandy", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1224/1085136883_07262aace5_o.jpg", "secret": "af1a7b575f", "media": "photo", "latitude": "47.267450", "id": "1085136883", "tags": "2003 sandy rooster eenie"}, {"datetaken": "2007-08-11 15:58:33", "license": "4", "title": "Brendan", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1001/1085998440_2aa508d941_o.jpg", "secret": "acb673e67a", "media": "photo", "latitude": "47.267450", "id": "1085998440", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:34", "license": "4", "title": "Wendy and Brendan", "text": "", "album_id": "72157601372125786", "longitude": "-122.384498", "url_o": "https://farm2.staticflickr.com/1210/1085137231_133d744d7d_o.jpg", "secret": "34eea4de1f", "media": "photo", "latitude": "47.293670", "id": "1085137231", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:35", "license": "4", "title": "Brendan", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1077/1085998730_b55467455a_o.jpg", "secret": "c0921a404f", "media": "photo", "latitude": "47.267450", "id": "1085998730", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:36", "license": "4", "title": "Brendan on trampoline", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1008/1085998874_58c6392607_o.jpg", "secret": "16d2b9fbc7", "media": "photo", "latitude": "47.267450", "id": "1085998874", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:36", "license": "4", "title": "Brendan", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1175/1085137605_6fac07718d_o.jpg", "secret": "93d78cf380", "media": "photo", "latitude": "47.267450", "id": "1085137605", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:37", "license": "4", "title": "Eenie, Meenie, Miney and Mo", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1077/1085999140_b78d5d8cf1_o.jpg", "secret": "866e16ca0e", "media": "photo", "latitude": "47.267450", "id": "1085999140", "tags": "2003 rooster eenie"}, {"datetaken": "2007-08-11 15:58:38", "license": "4", "title": "Sandy", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1255/1085137859_7868fe2d23_o.jpg", "secret": "324c062104", "media": "photo", "latitude": "47.267450", "id": "1085137859", "tags": "2003 sandy"}, {"datetaken": "2007-08-11 15:58:39", "license": "4", "title": "Our House", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1226/1085999374_758eed3d75_o.jpg", "secret": "e21fd980b0", "media": "photo", "latitude": "47.267450", "id": "1085999374", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:40", "license": "4", "title": "Pacific, Washington", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1074/1085999534_ded7311100_o.jpg", "secret": "350bb00102", "media": "photo", "latitude": "47.267450", "id": "1085999534", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:41", "license": "4", "title": "Sandy", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1294/1085138331_25f47952d2_o.jpg", "secret": "c59edc382a", "media": "photo", "latitude": "47.267450", "id": "1085138331", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:42", "license": "4", "title": "Eenie and Sandy", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1240/1085138447_08bcdbdc08_o.jpg", "secret": "588526fc00", "media": "photo", "latitude": "47.267450", "id": "1085138447", "tags": "2003 rooster eenie"}, {"datetaken": "2007-08-11 15:58:43", "license": "4", "title": "Eenie, Meenie, Miney and Mo", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1015/1085138567_948cb89d03_o.jpg", "secret": "9d26de22e6", "media": "photo", "latitude": "47.267450", "id": "1085138567", "tags": "2003 rooster eenie"}, {"datetaken": "2007-08-11 15:58:44", "license": "4", "title": "Allison", "text": "", "album_id": "72157601372125786", "longitude": "-122.252640", "url_o": "https://farm2.staticflickr.com/1044/1086000042_7810baf499_o.jpg", "secret": "8861ff5911", "media": "photo", "latitude": "47.267450", "id": "1086000042", "tags": "2003 allison"}, {"datetaken": "2005-06-30 14:06:28", "license": "3", "title": "Public gardens - sculpture", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22668691_89e874fb07_o.jpg", "secret": "89e874fb07", "media": "photo", "latitude": "0", "id": "22668691", "tags": "2005 sculpture usa travelling water fountain freeassociation june boston wrestling massachusetts unitedstatesofamerica bricks newengland northamerica publicart june2005 publicgardens bostonpublicgardens pleasetagme feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:06:28", "license": "3", "title": "Paul Revere - Boston Public Gardens", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22668690_c72406e210_o.jpg", "secret": "c72406e210", "media": "photo", "latitude": "0", "id": "22668690", "tags": "usa travelling freeassociation statue boston america massachusetts unitedstatesofamerica newengland northamerica paulrevere bostonpublicgardens ushistory feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:08:56", "license": "3", "title": "Me and Andy watching the ducklings", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/22669133_9d2bf50389_o.jpg", "secret": "9d2bf50389", "media": "photo", "latitude": "0", "id": "22669133", "tags": "2005 friends usa travelling june boston duck massachusetts unitedstatesofamerica mary duckling newengland bostoncommons ducklings northamerica june2005 publicgardens makewayforducklings robertmccloskey bostonpublicgardens feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:08:56", "license": "3", "title": "Andy and Mary checking out the ducklings", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22669131_fd64ad5bc9_o.jpg", "secret": "fd64ad5bc9", "media": "photo", "latitude": "0", "id": "22669131", "tags": "2005 friends usa travelling june boston duck massachusetts unitedstatesofamerica mary duckling newengland bostoncommons ducklings northamerica june2005 publicgardens makewayforducklings robertmccloskey bostonpublicgardens feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:08:56", "license": "3", "title": "Old chestnut tree", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22669127_4e9dc9d2f6_o.jpg", "secret": "4e9dc9d2f6", "media": "photo", "latitude": "0", "id": "22669127", "tags": "2005 usa travelling boston massachusetts unitedstatesofamerica newengland northamerica feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:10:38", "license": "3", "title": "real live Boston Public Gardens ducklings", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22669466_9f0df25d13_o.jpg", "secret": "9f0df25d13", "media": "photo", "latitude": "0", "id": "22669466", "tags": "usa travelling boston massachusetts unitedstatesofamerica newengland northamerica feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:10:38", "license": "3", "title": "Fried dough", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22669467_fcb7ae1e0c_o.jpg", "secret": "fcb7ae1e0c", "media": "photo", "latitude": "0", "id": "22669467", "tags": "usa travelling boston casey massachusetts unitedstatesofamerica newengland northamerica frieddough feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:10:38", "license": "3", "title": "Casey and Andy on the Boston Commons", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/22669469_3212c74a0f_o.jpg", "secret": "3212c74a0f", "media": "photo", "latitude": "0", "id": "22669469", "tags": "friends usa travelling boston casey massachusetts unitedstatesofamerica newengland northamerica feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:13:17", "license": "3", "title": "real ducklings in the gardens", "text": "", "album_id": "546589", "longitude": "-71.069451", "url_o": "https://farm1.staticflickr.com/19/22670192_ad4f530499_o.jpg", "secret": "ad4f530499", "media": "photo", "latitude": "42.355166", "id": "22670192", "tags": "usa travelling boston massachusetts unitedstatesofamerica newengland northamerica feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:16:50", "license": "3", "title": "me and the ducks", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22671053_02dab69e7e_o.jpg", "secret": "02dab69e7e", "media": "photo", "latitude": "0", "id": "22671053", "tags": "2005 usa travelling freeassociation june boston massachusetts unitedstatesofamerica mary newengland bostoncommons ducklings northamerica june2005 makewayforducklings robertmccloskey feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:16:50", "license": "3", "title": "duckling sculpture", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22671052_08ca0b52cc_o.jpg", "secret": "08ca0b52cc", "media": "photo", "latitude": "0", "id": "22671052", "tags": "2005 usa travelling june boston casey duck massachusetts unitedstatesofamerica mary duckling newengland bostoncommons ducklings northamerica june2005 publicgardens makewayforducklings robertmccloskey bostonpublicgardens feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:19:55", "license": "3", "title": "Mary and Lauren", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22672089_02ab73813b_o.jpg", "secret": "02ab73813b", "media": "photo", "latitude": "0", "id": "22672089", "tags": "2005 friends usa travelling lauren boston massachusetts unitedstatesofamerica mary newengland northamerica feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:19:55", "license": "3", "title": "Mary and Lauren", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22672086_6c125a44bd_o.jpg", "secret": "6c125a44bd", "media": "photo", "latitude": "0", "id": "22672086", "tags": "friends usa travelling boston massachusetts unitedstatesofamerica mary newengland northamerica feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:19:55", "license": "3", "title": "Lauren, Andy, and Mary, Boston Commons", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22672090_9df2ad47c4_o.jpg", "secret": "9df2ad47c4", "media": "photo", "latitude": "0", "id": "22672090", "tags": "friends usa travelling lauren andy boston massachusetts unitedstatesofamerica mary newengland northamerica feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:27:00", "license": "3", "title": "Andy and Mary with George Washington towering behind", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22673686_fb8059289e_o.jpg", "secret": "fb8059289e", "media": "photo", "latitude": "0", "id": "22673686", "tags": "2005 friends usa travelling andy boston massachusetts unitedstatesofamerica mary newengland northamerica feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:30:02", "license": "3", "title": "festive frog", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22674407_6cf2db1c7b_o.jpg", "secret": "6cf2db1c7b", "media": "photo", "latitude": "0", "id": "22674407", "tags": "usa travelling boston massachusetts unitedstatesofamerica newengland bostoncommons northamerica frogpond feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:31:02", "license": "3", "title": "Civil War sculpture", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22674580_cb7257cc19_o.jpg", "secret": "cb7257cc19", "media": "photo", "latitude": "0", "id": "22674580", "tags": "usa travelling boston massachusetts unitedstatesofamerica newengland bostoncommons northamerica feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:31:02", "license": "3", "title": "Swan boats in Boston Public Gardens", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22674582_cffc168ad3_o.jpg", "secret": "cffc168ad3", "media": "photo", "latitude": "0", "id": "22674582", "tags": "2005 usa travelling june boston massachusetts unitedstatesofamerica newengland bostoncommons ducklings northamerica tagme swanboats june2005 makewayforducklings robertmccloskey bostonpublicgardens feelfreetoaddnotes tagatwill didyoubringthebeer pleaseaddtagstomypictures addtagsifyoucanthinkofany"}, {"datetaken": "2005-06-30 14:32:21", "license": "3", "title": "Ducklings", "text": "", "album_id": "546589", "longitude": "-71.069451", "url_o": "https://farm1.staticflickr.com/17/22674849_cb2561aa42_o.jpg", "secret": "cb2561aa42", "media": "photo", "latitude": "42.355166", "id": "22674849", "tags": "2005 usa travelling june boston duck massachusetts unitedstatesofamerica duckling newengland bostoncommons ducklings northamerica june2005 publicgardens makewayforducklings robertmccloskey bostonpublicgardens feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:32:21", "license": "3", "title": "George and Andy", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/22674844_5635f3f6c8_o.jpg", "secret": "5635f3f6c8", "media": "photo", "latitude": "0", "id": "22674844", "tags": "2005 friends usa travelling history andy freeassociation june statue boston america massachusetts unitedstatesofamerica newengland bostoncommons northamerica georgewashington june2005 humid ushistory pleasetagme feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-06-30 14:35:52", "license": "3", "title": "Mary at frog pond", "text": "", "album_id": "546589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22675525_85de5c20e7_o.jpg", "secret": "85de5c20e7", "media": "photo", "latitude": "0", "id": "22675525", "tags": "usa travelling freeassociation boston massachusetts unitedstatesofamerica mary newengland bostoncommons frogs northamerica bostonpublicgardens feelfreetoaddnotes tagatwill pleaseaddtagstomypictures"}, {"datetaken": "2005-07-04 19:19:18", "license": "1", "title": "Robert and Jenny", "text": "", "album_id": "544979", "longitude": "-105.103132", "url_o": "https://farm1.staticflickr.com/18/23755094_06802574c5_o.jpg", "secret": "06802574c5", "media": "photo", "latitude": "40.584385", "id": "23755094", "tags": "robert jenny"}, {"datetaken": "2005-07-04 19:19:41", "license": "1", "title": "Jason and Jessamine", "text": "", "album_id": "544979", "longitude": "-105.103132", "url_o": "https://farm1.staticflickr.com/18/23755095_7543a86837_o.jpg", "secret": "7543a86837", "media": "photo", "latitude": "40.584385", "id": "23755095", "tags": "jason jessamine"}, {"datetaken": "2005-07-04 19:20:07", "license": "1", "title": "Harmony and Eliaz", "text": "", "album_id": "544979", "longitude": "-105.103132", "url_o": "https://farm1.staticflickr.com/18/23755096_f6c7e77e94_o.jpg", "secret": "f6c7e77e94", "media": "photo", "latitude": "40.584385", "id": "23755096", "tags": "harmony eliaz"}, {"datetaken": "2005-07-04 19:20:27", "license": "1", "title": "Mez", "text": "", "album_id": "544979", "longitude": "-105.103132", "url_o": "https://farm1.staticflickr.com/18/23755097_7cf4fd7370_o.jpg", "secret": "7cf4fd7370", "media": "photo", "latitude": "40.584385", "id": "23755097", "tags": "mez"}, {"datetaken": "2005-07-04 19:20:38", "license": "1", "title": "Mez", "text": "", "album_id": "544979", "longitude": "-105.103132", "url_o": "https://farm1.staticflickr.com/18/23755098_67e65eee43_o.jpg", "secret": "67e65eee43", "media": "photo", "latitude": "40.584385", "id": "23755098", "tags": "mez"}, {"datetaken": "2005-07-04 19:22:17", "license": "1", "title": "Jason and Jessamine", "text": "", "album_id": "544979", "longitude": "-105.103132", "url_o": "https://farm1.staticflickr.com/18/23755099_2a19d7ab1b_o.jpg", "secret": "2a19d7ab1b", "media": "photo", "latitude": "40.584385", "id": "23755099", "tags": "jason jessamine"}, {"datetaken": "2005-07-04 19:22:52", "license": "1", "title": "Me and Robert", "text": "", "album_id": "544979", "longitude": "-105.103132", "url_o": "https://farm1.staticflickr.com/18/23755300_d1c8fa16bb_o.jpg", "secret": "d1c8fa16bb", "media": "photo", "latitude": "40.584385", "id": "23755300", "tags": "robert schwa"}, {"datetaken": "2005-07-04 19:26:41", "license": "1", "title": "Jessamine, Sandy, and Mez", "text": "", "album_id": "544979", "longitude": "-105.103132", "url_o": "https://farm1.staticflickr.com/18/23755303_6621f6423b_o.jpg", "secret": "6621f6423b", "media": "photo", "latitude": "40.584385", "id": "23755303", "tags": "sandy jessamine mez"}, {"datetaken": "2005-07-04 19:41:52", "license": "1", "title": "Mez, Jen, Sara, and Harmony", "text": "", "album_id": "544979", "longitude": "-105.103132", "url_o": "https://farm1.staticflickr.com/18/23755304_63fe1a8d48_o.jpg", "secret": "63fe1a8d48", "media": "photo", "latitude": "40.584385", "id": "23755304", "tags": "sara jen mez"}, {"datetaken": "2005-07-04 20:15:43", "license": "1", "title": "Chuck and Jessamine", "text": "", "album_id": "544979", "longitude": "-105.103132", "url_o": "https://farm1.staticflickr.com/18/23898906_b4b7c48c83_o.jpg", "secret": "b4b7c48c83", "media": "photo", "latitude": "40.584385", "id": "23898906", "tags": "chuck jessamine"}, {"datetaken": "2005-07-04 20:17:07", "license": "1", "title": "Ian and Sam", "text": "", "album_id": "544979", "longitude": "-105.103132", "url_o": "https://farm1.staticflickr.com/18/23898907_98854de8da_o.jpg", "secret": "98854de8da", "media": "photo", "latitude": "40.584385", "id": "23898907", "tags": "ian sam"}, {"datetaken": "2005-07-04 20:43:54", "license": "1", "title": "Freaks", "text": "", "album_id": "544979", "longitude": "-105.103132", "url_o": "https://farm1.staticflickr.com/18/23898908_ba8da9d015_o.jpg", "secret": "ba8da9d015", "media": "photo", "latitude": "40.584385", "id": "23898908", "tags": ""}, {"datetaken": "2005-07-04 20:51:41", "license": "1", "title": "Smaller crowd", "text": "", "album_id": "544979", "longitude": "-105.103132", "url_o": "https://farm1.staticflickr.com/18/23898909_dba33702dc_o.jpg", "secret": "dba33702dc", "media": "photo", "latitude": "40.584385", "id": "23898909", "tags": "amanda claire jen sam harmony"}, {"datetaken": "2005-07-04 21:24:13", "license": "1", "title": "Jessamine and Ragz", "text": "", "album_id": "544979", "longitude": "-105.103132", "url_o": "https://farm1.staticflickr.com/18/23755481_521971cc90_o.jpg", "secret": "521971cc90", "media": "photo", "latitude": "40.584385", "id": "23755481", "tags": "jessamine ragz"}, {"datetaken": "2005-07-04 21:24:30", "license": "1", "title": "Me, Robert, and Jen", "text": "", "album_id": "544979", "longitude": "-105.103132", "url_o": "https://farm1.staticflickr.com/18/23755482_1173f46c4f_o.jpg", "secret": "1173f46c4f", "media": "photo", "latitude": "40.584385", "id": "23755482", "tags": "robert jen schwa"}, {"datetaken": "2005-07-04 21:29:01", "license": "1", "title": "Jason's \"Guns\"", "text": "", "album_id": "544979", "longitude": "-105.103132", "url_o": "https://farm1.staticflickr.com/18/23755484_6eeee2320c_o.jpg", "secret": "6eeee2320c", "media": "photo", "latitude": "40.584385", "id": "23755484", "tags": "jason"}, {"datetaken": "2005-07-04 02:30:55", "license": "5", "title": "Fireworks08", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23682210_b49c2f3e50_o.jpg", "secret": "b49c2f3e50", "media": "photo", "latitude": "0", "id": "23682210", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 02:32:05", "license": "5", "title": "Fireworks09", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23682211_2d6fb0b2bd_o.jpg", "secret": "2d6fb0b2bd", "media": "photo", "latitude": "0", "id": "23682211", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 02:32:20", "license": "5", "title": "Fireworks10", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23682212_2a82c4d576_o.jpg", "secret": "2a82c4d576", "media": "photo", "latitude": "0", "id": "23682212", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 02:33:54", "license": "5", "title": "Fireworks11", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23682213_4193788652_o.jpg", "secret": "4193788652", "media": "photo", "latitude": "0", "id": "23682213", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 02:35:00", "license": "5", "title": "Fireworks12", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23682214_c6843e5f1c_o.jpg", "secret": "c6843e5f1c", "media": "photo", "latitude": "0", "id": "23682214", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 02:37:44", "license": "5", "title": "Fireworks13", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23682716_0c95426de1_o.jpg", "secret": "0c95426de1", "media": "photo", "latitude": "0", "id": "23682716", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 02:37:53", "license": "5", "title": "Fireworks14", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23682717_9c340ec74a_o.jpg", "secret": "9c340ec74a", "media": "photo", "latitude": "0", "id": "23682717", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 02:38:10", "license": "5", "title": "Fireworks15", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23682718_b7f5733123_o.jpg", "secret": "b7f5733123", "media": "photo", "latitude": "0", "id": "23682718", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 02:40:34", "license": "5", "title": "Fireworks16", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23682719_f064a01d46_o.jpg", "secret": "f064a01d46", "media": "photo", "latitude": "0", "id": "23682719", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 02:40:43", "license": "5", "title": "Fireworks17", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23682720_ccbc496141_o.jpg", "secret": "ccbc496141", "media": "photo", "latitude": "0", "id": "23682720", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 02:42:32", "license": "5", "title": "Fireworks18", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23682721_88f7b452c0_o.jpg", "secret": "88f7b452c0", "media": "photo", "latitude": "0", "id": "23682721", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 02:51:43", "license": "5", "title": "Fireworks07", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23682209_811acd365b_o.jpg", "secret": "811acd365b", "media": "photo", "latitude": "0", "id": "23682209", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 02:52:03", "license": "5", "title": "Fireworks06", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23681617_d1541974f2_o.jpg", "secret": "d1541974f2", "media": "photo", "latitude": "0", "id": "23681617", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 02:53:24", "license": "5", "title": "Fireworks05", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23681616_80e61c41dc_o.jpg", "secret": "80e61c41dc", "media": "photo", "latitude": "0", "id": "23681616", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 02:53:50", "license": "5", "title": "Fireworks04", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23681615_9ae2e25841_o.jpg", "secret": "9ae2e25841", "media": "photo", "latitude": "0", "id": "23681615", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 02:54:16", "license": "5", "title": "Fireworks03", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23681614_d98fc1b2bd_o.jpg", "secret": "d98fc1b2bd", "media": "photo", "latitude": "0", "id": "23681614", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 02:55:40", "license": "5", "title": "Fireworks02", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23681613_fdca3ebfac_o.jpg", "secret": "fdca3ebfac", "media": "photo", "latitude": "0", "id": "23681613", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 02:57:01", "license": "5", "title": "Fireworks01", "text": "", "album_id": "546640", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23681612_f3be5ab5aa_o.jpg", "secret": "f3be5ab5aa", "media": "photo", "latitude": "0", "id": "23681612", "tags": "milwaukee wisconsin fireworks 2005 july4 independenceday"}, {"datetaken": "2005-07-04 21:54:21", "license": "4", "title": "Fireworks 01", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/55122358_185531d456_o.jpg", "secret": "185531d456", "media": "photo", "latitude": "0", "id": "55122358", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 21:57:22", "license": "4", "title": "Fireworks 04", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/55122641_dc93398af3_o.jpg", "secret": "dc93398af3", "media": "photo", "latitude": "0", "id": "55122641", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 21:59:24", "license": "4", "title": "Fireworks 05", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/55122667_0c237fbaf9_o.jpg", "secret": "0c237fbaf9", "media": "photo", "latitude": "0", "id": "55122667", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:00:14", "license": "4", "title": "Fireworks 06", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/55122683_41dc3da53d_o.jpg", "secret": "41dc3da53d", "media": "photo", "latitude": "0", "id": "55122683", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:00:57", "license": "4", "title": "Fireworks 07", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/55122688_916af0422f_o.jpg", "secret": "916af0422f", "media": "photo", "latitude": "0", "id": "55122688", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:01:26", "license": "4", "title": "Fireworks 08", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/55122694_af2c6cfa07_o.jpg", "secret": "af2c6cfa07", "media": "photo", "latitude": "0", "id": "55122694", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:01:41", "license": "4", "title": "Fireworks 09", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/55122703_ae7acc2a2a_o.jpg", "secret": "ae7acc2a2a", "media": "photo", "latitude": "0", "id": "55122703", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:01:52", "license": "4", "title": "Fireworks 10", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/55122362_49ebc87709_o.jpg", "secret": "49ebc87709", "media": "photo", "latitude": "0", "id": "55122362", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:02:16", "license": "4", "title": "Fireworks 11", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/55122365_a9edc08f9a_o.jpg", "secret": "a9edc08f9a", "media": "photo", "latitude": "0", "id": "55122365", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:02:27", "license": "4", "title": "Fireworks 12", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/55122370_841fe28f9e_o.jpg", "secret": "841fe28f9e", "media": "photo", "latitude": "0", "id": "55122370", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:02:40", "license": "4", "title": "Fireworks 13", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/55122382_f5e4d32343_o.jpg", "secret": "f5e4d32343", "media": "photo", "latitude": "0", "id": "55122382", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:06:32", "license": "4", "title": "Fireworks 14", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/55122390_02e897af72_o.jpg", "secret": "02e897af72", "media": "photo", "latitude": "0", "id": "55122390", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:07:20", "license": "4", "title": "Fireworks 17", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/55122425_7a35e96b67_o.jpg", "secret": "7a35e96b67", "media": "photo", "latitude": "0", "id": "55122425", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:08:02", "license": "4", "title": "Fireworks 19", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/55122442_77bfcd1695_o.jpg", "secret": "77bfcd1695", "media": "photo", "latitude": "0", "id": "55122442", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:08:32", "license": "4", "title": "Fireworks 21", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/55122462_008bf9c184_o.jpg", "secret": "008bf9c184", "media": "photo", "latitude": "0", "id": "55122462", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:09:27", "license": "4", "title": "Fireworks 22", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/55122468_7e906929b0_o.jpg", "secret": "7e906929b0", "media": "photo", "latitude": "0", "id": "55122468", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:09:40", "license": "4", "title": "Fireworks 23", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/55122472_b60335e924_o.jpg", "secret": "b60335e924", "media": "photo", "latitude": "0", "id": "55122472", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:10:15", "license": "4", "title": "Fireworks 24", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/55122480_859a8f8eb0_o.jpg", "secret": "859a8f8eb0", "media": "photo", "latitude": "0", "id": "55122480", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:12:17", "license": "4", "title": "Fireworks 26", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/55122492_3a32e18042_o.jpg", "secret": "3a32e18042", "media": "photo", "latitude": "0", "id": "55122492", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:14:48", "license": "4", "title": "Fireworks 28", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/55122506_9d794fcee2_o.jpg", "secret": "9d794fcee2", "media": "photo", "latitude": "0", "id": "55122506", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:15:12", "license": "4", "title": "Fireworks 30", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/55122569_2673152dd9_o.jpg", "secret": "2673152dd9", "media": "photo", "latitude": "0", "id": "55122569", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:15:37", "license": "4", "title": "Fireworks 32", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/55122610_0beffd5ef9_o.jpg", "secret": "0beffd5ef9", "media": "photo", "latitude": "0", "id": "55122610", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:17:30", "license": "4", "title": "Fireworks 33", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/55122615_ec8446cf47_o.jpg", "secret": "ec8446cf47", "media": "photo", "latitude": "0", "id": "55122615", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:17:41", "license": "4", "title": "Fireworks 34", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/55122617_6853183a6e_o.jpg", "secret": "6853183a6e", "media": "photo", "latitude": "0", "id": "55122617", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:18:05", "license": "4", "title": "Fireworks 35", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/55122623_6082b5dd13_o.jpg", "secret": "6082b5dd13", "media": "photo", "latitude": "0", "id": "55122623", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-07-04 22:18:19", "license": "4", "title": "Fireworks 36", "text": "", "album_id": "1194349", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/55122639_3086ad1b27_o.jpg", "secret": "3086ad1b27", "media": "photo", "latitude": "0", "id": "55122639", "tags": "fireworks 4thofjuly independence independenceday usa unitedstates"}, {"datetaken": "2005-12-19 16:01:23", "license": "4", "title": "Merry Christmas!", "text": "", "album_id": "1656734", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/77300189_a4c516f2f8_o.jpg", "secret": "a4c516f2f8", "media": "photo", "latitude": "0", "id": "77300189", "tags": "finger thebird middlefinger fingercommathe"}, {"datetaken": "2005-12-19 16:38:50", "license": "4", "title": "Holiday Cookies", "text": "", "album_id": "1656734", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/77300082_e4828e15a7_o.jpg", "secret": "e4828e15a7", "media": "photo", "latitude": "0", "id": "77300082", "tags": "cookies baking holiday"}, {"datetaken": "2005-12-19 16:39:22", "license": "4", "title": "Jack O Lantern", "text": "", "album_id": "1656734", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/77299846_56f12c5c6f_o.jpg", "secret": "56f12c5c6f", "media": "photo", "latitude": "0", "id": "77299846", "tags": "halloween cookie pumpkin skull"}, {"datetaken": "2005-12-19 16:39:33", "license": "4", "title": "Easter Egg", "text": "", "album_id": "1656734", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/77299731_b0bc22d751_o.jpg", "secret": "b0bc22d751", "media": "photo", "latitude": "0", "id": "77299731", "tags": "easteregg cookies holida"}, {"datetaken": "2005-12-19 16:40:01", "license": "4", "title": "Valentine's Lips", "text": "", "album_id": "1656734", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/77299635_b76050c4bc_o.jpg", "secret": "b76050c4bc", "media": "photo", "latitude": "0", "id": "77299635", "tags": "lips valentinesday holiday cookies"}, {"datetaken": "2005-12-19 16:40:12", "license": "4", "title": "Scary Bat!", "text": "", "album_id": "1656734", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/77299543_219e55ec8a_o.jpg", "secret": "219e55ec8a", "media": "photo", "latitude": "0", "id": "77299543", "tags": "halloween holiday cookies"}, {"datetaken": "2005-12-19 16:43:02", "license": "4", "title": "God Bless The Yew Ess Eh", "text": "", "album_id": "1656734", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/77299457_c95d06336c_o.jpg", "secret": "c95d06336c", "media": "photo", "latitude": "0", "id": "77299457", "tags": "usa independence day holiday"}, {"datetaken": "2005-12-19 16:43:24", "license": "4", "title": "Hearts", "text": "", "album_id": "1656734", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/77299378_a499e69d50_o.jpg", "secret": "a499e69d50", "media": "photo", "latitude": "0", "id": "77299378", "tags": ""}, {"datetaken": "2005-12-19 16:45:14", "license": "4", "title": "Scary Bear", "text": "", "album_id": "1656734", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/77299280_ef7e31522d_o.jpg", "secret": "ef7e31522d", "media": "photo", "latitude": "0", "id": "77299280", "tags": ""}, {"datetaken": "2005-12-19 16:45:31", "license": "4", "title": "Elephants", "text": "", "album_id": "1656734", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/77299170_8168f7786b_o.jpg", "secret": "8168f7786b", "media": "photo", "latitude": "0", "id": "77299170", "tags": "elephants blue"}, {"datetaken": "2006-07-04 21:13:00", "license": "3", "title": "Deep Red II", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/182267986_52437b0b10_o.jpg", "secret": "52437b0b10", "media": "photo", "latitude": "0", "id": "182267986", "tags": "fireworks nightsky 4thofjuly july4 independenceday"}, {"datetaken": "2006-07-04 23:46:50", "license": "3", "title": "Happy 4th!", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/182237118_deba8a8bd4_o.jpg", "secret": "deba8a8bd4", "media": "photo", "latitude": "0", "id": "182237118", "tags": "california fireworks 4thofjuly july4 independenceday camarillo summerscenes interestingness299"}, {"datetaken": "2006-07-05 00:25:18", "license": "3", "title": "Finale II", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/182266229_518fd3bec7_o.jpg", "secret": "518fd3bec7", "media": "photo", "latitude": "0", "id": "182266229", "tags": "fireworks nightsky 4thofjuly july4 independenceday"}, {"datetaken": "2006-07-05 00:25:30", "license": "3", "title": "Finale I", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/182266320_8831aa70a5_o.jpg", "secret": "8831aa70a5", "media": "photo", "latitude": "0", "id": "182266320", "tags": "fireworks nightsky 4thofjuly july4 independenceday"}, {"datetaken": "2006-07-05 00:25:55", "license": "3", "title": "Starburst II", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/182266506_45c5cc92fa_o.jpg", "secret": "45c5cc92fa", "media": "photo", "latitude": "0", "id": "182266506", "tags": "fireworks nightsky 4thofjuly july4 independenceday"}, {"datetaken": "2006-07-05 00:26:16", "license": "3", "title": "Light Showers III", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/182266676_bd1ccd81ab_o.jpg", "secret": "bd1ccd81ab", "media": "photo", "latitude": "0", "id": "182266676", "tags": "fireworks nightsky 4thofjuly july4 independenceday"}, {"datetaken": "2006-07-05 00:26:36", "license": "3", "title": "Light Showers II", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/182266823_51d9cdde76_o.jpg", "secret": "51d9cdde76", "media": "photo", "latitude": "0", "id": "182266823", "tags": "fireworks nightsky 4thofjuly july4 independenceday"}, {"datetaken": "2006-07-05 00:27:00", "license": "3", "title": "Light Showers", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/182267018_69a0b92606_o.jpg", "secret": "69a0b92606", "media": "photo", "latitude": "0", "id": "182267018", "tags": "july4 independenceday fireworks nightsky 4thofjuly"}, {"datetaken": "2006-07-05 00:27:03", "license": "3", "title": "Curly Trajectory", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/182267038_c5b5af742b_o.jpg", "secret": "c5b5af742b", "media": "photo", "latitude": "0", "id": "182267038", "tags": "july4 independenceday fireworks nightsky 4thofjuly"}, {"datetaken": "2006-07-05 00:27:21", "license": "3", "title": "Starburst", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/182267182_76b75d1438_o.jpg", "secret": "76b75d1438", "media": "photo", "latitude": "0", "id": "182267182", "tags": "fireworks nightsky 4thofjuly july4 independenceday"}, {"datetaken": "2006-07-05 00:27:43", "license": "3", "title": "Deep Red I", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/182267331_5ad10c90f8_o.jpg", "secret": "5ad10c90f8", "media": "photo", "latitude": "0", "id": "182267331", "tags": "fireworks nightsky 4thofjuly july4 independenceday"}, {"datetaken": "2006-07-05 00:28:00", "license": "3", "title": "Fountain of Light", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/182267464_15031b3a2d_o.jpg", "secret": "15031b3a2d", "media": "photo", "latitude": "0", "id": "182267464", "tags": "fireworks nightsky 4thofjuly july4 independenceday"}, {"datetaken": "2006-07-05 00:28:27", "license": "3", "title": "Bombs Bursting in Air", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/182267665_c19a66f176_o.jpg", "secret": "c19a66f176", "media": "photo", "latitude": "0", "id": "182267665", "tags": "fireworks nightsky 4thofjuly july4 independenceday"}, {"datetaken": "2006-07-05 00:28:42", "license": "3", "title": "Rockets' Red Flare", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/182267809_99c5305cec_o.jpg", "secret": "99c5305cec", "media": "photo", "latitude": "0", "id": "182267809", "tags": "fireworks nightsky 4thofjuly july4 independenceday"}, {"datetaken": "2006-07-05 00:30:03", "license": "3", "title": "Symphony", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/182268459_1fa85a6ced_o.jpg", "secret": "1fa85a6ced", "media": "photo", "latitude": "0", "id": "182268459", "tags": "fireworks nightsky 4thofjuly july4 independenceday"}, {"datetaken": "2006-07-05 00:30:39", "license": "3", "title": "Explosion!", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/182268677_7e5cbd5b1f_o.jpg", "secret": "7e5cbd5b1f", "media": "photo", "latitude": "0", "id": "182268677", "tags": "fireworks nightsky 4thofjuly july4 independenceday interestingness155 bronly"}, {"datetaken": "2006-07-05 00:30:47", "license": "3", "title": "Fireworks Flower", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/182268723_686101d3b1_o.jpg", "secret": "686101d3b1", "media": "photo", "latitude": "0", "id": "182268723", "tags": "fireworks nightsky 4thofjuly july4 independenceday"}, {"datetaken": "2006-07-05 00:30:57", "license": "3", "title": "Sunburst!", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/182268812_cc98cf5f12_o.jpg", "secret": "cc98cf5f12", "media": "photo", "latitude": "0", "id": "182268812", "tags": "fireworks nightsky 4thofjuly july4 independenceday"}, {"datetaken": "2006-07-05 00:31:09", "license": "3", "title": "Red, White and Blue", "text": "", "album_id": "72157594187905192", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/182268910_e7b1797e6a_o.jpg", "secret": "e7b1797e6a", "media": "photo", "latitude": "0", "id": "182268910", "tags": "fireworks nightsky 4thofjuly july4 independenceday"}, {"datetaken": "2006-07-04 14:12:59", "license": "1", "title": "Big Man and cousin T", "text": "", "album_id": "72157594188533603", "longitude": "-76.738997", "url_o": "https://farm1.staticflickr.com/12/182664154_64123707e7_o.jpg", "secret": "64123707e7", "media": "photo", "latitude": "39.264718", "id": "182664154", "tags": "july4 independenceday catonsville ourmao httpyourneighborhoodlibrarianblogspotcom"}, {"datetaken": "2006-07-04 14:34:53", "license": "1", "title": "Cousin B and Baby Cousin B", "text": "", "album_id": "72157594188533603", "longitude": "-76.738997", "url_o": "https://farm1.staticflickr.com/23/182664187_6ef05de562_o.jpg", "secret": "6ef05de562", "media": "photo", "latitude": "39.264718", "id": "182664187", "tags": "july4 independenceday catonsville httpyourneighborhoodlibrarianblogspotcom"}, {"datetaken": "2006-07-04 14:45:42", "license": "1", "title": "the Librarian and the Big Man", "text": "", "album_id": "72157594188533603", "longitude": "-76.738997", "url_o": "https://farm1.staticflickr.com/15/182664249_7089d52d72_o.jpg", "secret": "7089d52d72", "media": "photo", "latitude": "39.264718", "id": "182664249", "tags": "july4 independenceday catonsville ourmao httpyourneighborhoodlibrarianblogspotcom"}, {"datetaken": "2006-07-04 14:46:23", "license": "1", "title": "Grandma and the Big Man", "text": "", "album_id": "72157594188533603", "longitude": "-76.738997", "url_o": "https://farm1.staticflickr.com/9/182664271_cfa31d1bf8_o.jpg", "secret": "cfa31d1bf8", "media": "photo", "latitude": "39.264718", "id": "182664271", "tags": "july4 independenceday catonsville ourmao httpyourneighborhoodlibrarianblogspotcom"}, {"datetaken": "2006-07-04 15:06:55", "license": "1", "title": "parade watch3", "text": "", "album_id": "72157594188533603", "longitude": "-76.741347", "url_o": "https://farm1.staticflickr.com/67/182664285_d191517ca7_o.jpg", "secret": "d191517ca7", "media": "photo", "latitude": "39.270005", "id": "182664285", "tags": "parade july4 independenceday catonsville httpyourneighborhoodlibrarianblogspotcom"}, {"datetaken": "2006-07-04 15:07:00", "license": "1", "title": "parade watch2", "text": "", "album_id": "72157594188533603", "longitude": "-76.741347", "url_o": "https://farm1.staticflickr.com/77/182664318_fcee728105_o.jpg", "secret": "fcee728105", "media": "photo", "latitude": "39.270005", "id": "182664318", "tags": "parade july4 independenceday catonsville httpyourneighborhoodlibrarianblogspotcom"}, {"datetaken": "2006-07-04 15:07:09", "license": "1", "title": "parade watch1", "text": "", "album_id": "72157594188533603", "longitude": "-76.741347", "url_o": "https://farm1.staticflickr.com/77/182664339_1cd6fc3408_o.jpg", "secret": "1cd6fc3408", "media": "photo", "latitude": "39.270005", "id": "182664339", "tags": "parade july4 independenceday catonsville httpyourneighborhoodlibrarianblogspotcom"}, {"datetaken": "2006-07-04 15:08:02", "license": "1", "title": "Violetville FD", "text": "", "album_id": "72157594188533603", "longitude": "-76.741347", "url_o": "https://farm1.staticflickr.com/16/182664359_0273883429_o.jpg", "secret": "0273883429", "media": "photo", "latitude": "39.270005", "id": "182664359", "tags": "parade july4 independenceday catonsville httpyourneighborhoodlibrarianblogspotcom"}, {"datetaken": "2006-07-04 15:32:40", "license": "1", "title": "payback", "text": "", "album_id": "72157594188533603", "longitude": "-76.741347", "url_o": "https://farm1.staticflickr.com/69/182664406_9940fae2da_o.jpg", "secret": "9940fae2da", "media": "photo", "latitude": "39.270005", "id": "182664406", "tags": "parade july4 independenceday catonsville httpyourneighborhoodlibrarianblogspotcom"}, {"datetaken": "2006-07-04 15:32:44", "license": "1", "title": "battle", "text": "", "album_id": "72157594188533603", "longitude": "-76.741347", "url_o": "https://farm1.staticflickr.com/52/182664442_19c4bb64b0_o.jpg", "secret": "19c4bb64b0", "media": "photo", "latitude": "39.270005", "id": "182664442", "tags": "parade july4 independenceday catonsville httpyourneighborhoodlibrarianblogspotcom"}, {"datetaken": "2006-07-04 18:24:33", "license": "1", "title": "Mr. Three is in the house", "text": "", "album_id": "72157594188533603", "longitude": "-76.738997", "url_o": "https://farm1.staticflickr.com/70/182664502_e218d047b2_o.jpg", "secret": "e218d047b2", "media": "photo", "latitude": "39.264718", "id": "182664502", "tags": "july4 independenceday catonsville ourzhou httpyourneighborhoodlibrarianblogspotcom"}, {"datetaken": "2006-07-04 18:24:48", "license": "1", "title": "Mr. Three and cousin T", "text": "", "album_id": "72157594188533603", "longitude": "-76.738997", "url_o": "https://farm1.staticflickr.com/59/182664486_a4e88c9202_o.jpg", "secret": "a4e88c9202", "media": "photo", "latitude": "39.264718", "id": "182664486", "tags": "july4 independenceday catonsville ourzhou httpyourneighborhoodlibrarianblogspotcom"}, {"datetaken": "2005-06-04 07:15:34", "license": "1", "title": "Beach", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17721654_5584ea335c_o.jpg", "secret": "5584ea335c", "media": "photo", "latitude": "0", "id": "17721654", "tags": ""}, {"datetaken": "2005-06-04 07:17:40", "license": "1", "title": "IMG_0635.JPG", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17721693_998c512b05_o.jpg", "secret": "998c512b05", "media": "photo", "latitude": "0", "id": "17721693", "tags": ""}, {"datetaken": "2005-06-04 07:21:19", "license": "1", "title": "Bad Diesel", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17721707_d8cf044719_o.jpg", "secret": "d8cf044719", "media": "photo", "latitude": "0", "id": "17721707", "tags": ""}, {"datetaken": "2005-06-04 07:24:46", "license": "1", "title": "Camp", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17721720_56f9968adc_o.jpg", "secret": "56f9968adc", "media": "photo", "latitude": "0", "id": "17721720", "tags": ""}, {"datetaken": "2005-06-04 07:35:16", "license": "1", "title": "Party list", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17721737_38445ee6fc_o.jpg", "secret": "38445ee6fc", "media": "photo", "latitude": "0", "id": "17721737", "tags": ""}, {"datetaken": "2005-06-04 07:36:23", "license": "1", "title": "Hotel California rules.", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17721752_fb6365b07f_o.jpg", "secret": "fb6365b07f", "media": "photo", "latitude": "0", "id": "17721752", "tags": ""}, {"datetaken": "2005-06-04 07:57:58", "license": "1", "title": "Early morning.", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17721761_fef647b3f4_o.jpg", "secret": "fef647b3f4", "media": "photo", "latitude": "0", "id": "17721761", "tags": ""}, {"datetaken": "2005-06-04 08:01:37", "license": "1", "title": "IMG_0661.JPG", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17721790_6d1c16acd2_o.jpg", "secret": "6d1c16acd2", "media": "photo", "latitude": "0", "id": "17721790", "tags": ""}, {"datetaken": "2005-06-04 08:04:14", "license": "1", "title": "We love this game.", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17721807_87c5ca5309_o.jpg", "secret": "87c5ca5309", "media": "photo", "latitude": "0", "id": "17721807", "tags": ""}, {"datetaken": "2005-06-04 08:06:12", "license": "1", "title": "IMG_0684.JPG", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17721831_6ebc847fad_o.jpg", "secret": "6ebc847fad", "media": "photo", "latitude": "0", "id": "17721831", "tags": ""}, {"datetaken": "2005-06-04 17:24:21", "license": "1", "title": "IMG_0695.JPG", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17721866_f95675efcb_o.jpg", "secret": "f95675efcb", "media": "photo", "latitude": "0", "id": "17721866", "tags": ""}, {"datetaken": "2005-06-04 17:24:44", "license": "1", "title": "IMG_0698.JPG", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17721891_180596eb2e_o.jpg", "secret": "180596eb2e", "media": "photo", "latitude": "0", "id": "17721891", "tags": ""}, {"datetaken": "2005-06-04 17:27:27", "license": "1", "title": "IMG_0707.JPG", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17721918_7cfd5b2a41_o.jpg", "secret": "7cfd5b2a41", "media": "photo", "latitude": "0", "id": "17721918", "tags": ""}, {"datetaken": "2005-06-04 17:32:00", "license": "1", "title": "IMG_0727.JPG", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17721948_56affa83c8_o.jpg", "secret": "56affa83c8", "media": "photo", "latitude": "0", "id": "17721948", "tags": ""}, {"datetaken": "2005-06-04 17:35:51", "license": "1", "title": "IMG_0734.JPG", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17721965_5ae5945537_o.jpg", "secret": "5ae5945537", "media": "photo", "latitude": "0", "id": "17721965", "tags": ""}, {"datetaken": "2005-06-04 17:38:40", "license": "1", "title": "IMG_0767.JPG", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17721987_d3cbf1a277_o.jpg", "secret": "d3cbf1a277", "media": "photo", "latitude": "0", "id": "17721987", "tags": ""}, {"datetaken": "2005-06-05 14:37:06", "license": "1", "title": "IMG_0812.JPG", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17722018_4ba5d3a147_o.jpg", "secret": "4ba5d3a147", "media": "photo", "latitude": "0", "id": "17722018", "tags": ""}, {"datetaken": "2005-06-05 14:42:44", "license": "1", "title": "IMG_0859.JPG", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17722050_6ca2c41321_o.jpg", "secret": "6ca2c41321", "media": "photo", "latitude": "0", "id": "17722050", "tags": ""}, {"datetaken": "2005-06-05 14:44:56", "license": "1", "title": "IMG_0879.JPG", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17722075_902cd3d2d7_o.jpg", "secret": "902cd3d2d7", "media": "photo", "latitude": "0", "id": "17722075", "tags": ""}, {"datetaken": "2005-06-05 14:47:31", "license": "1", "title": "Two babies", "text": "", "album_id": "420260", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17722126_e98850fb99_o.jpg", "secret": "e98850fb99", "media": "photo", "latitude": "0", "id": "17722126", "tags": ""}, {"datetaken": "2011-04-17 07:14:55", "license": "4", "title": "2011-04-17 07-14-55_0101", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7005/6614410253_8ccbb1537c_o.jpg", "secret": "f78411338c", "media": "photo", "latitude": "0", "id": "6614410253", "tags": ""}, {"datetaken": "2011-04-17 07:15:54", "license": "4", "title": "2011-04-17 07-15-54_0102", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7170/6614446053_de68c0f26f_o.jpg", "secret": "5ef097837f", "media": "photo", "latitude": "0", "id": "6614446053", "tags": ""}, {"datetaken": "2011-04-17 07:39:44", "license": "4", "title": "2011-04-17 07-39-44_0103", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7166/6614472941_e335d8ab3b_o.jpg", "secret": "67722a28f6", "media": "photo", "latitude": "0", "id": "6614472941", "tags": ""}, {"datetaken": "2011-04-17 07:39:58", "license": "4", "title": "2011-04-17 07-39-58_0104", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7032/6614502177_763ec24403_o.jpg", "secret": "dc1b415527", "media": "photo", "latitude": "0", "id": "6614502177", "tags": ""}, {"datetaken": "2011-04-17 07:40:23", "license": "4", "title": "2011-04-17 07-40-23_0105", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7142/6614531915_4c4d8f8e72_o.jpg", "secret": "82666b43d1", "media": "photo", "latitude": "0", "id": "6614531915", "tags": ""}, {"datetaken": "2011-04-17 07:46:00", "license": "4", "title": "2011-04-17 07-46-00_0106", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7158/6614565335_aae101a27a_o.jpg", "secret": "00707c4f10", "media": "photo", "latitude": "0", "id": "6614565335", "tags": ""}, {"datetaken": "2011-04-17 07:48:55", "license": "4", "title": "2011-04-17 07-48-55_0107", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7012/6614596299_8f60cc82be_o.jpg", "secret": "4d0bf8343c", "media": "photo", "latitude": "0", "id": "6614596299", "tags": ""}, {"datetaken": "2011-04-17 08:26:54", "license": "4", "title": "2011-04-17 08-26-54_0108", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7001/6614626185_b3d6eece61_o.jpg", "secret": "077b5bdfbc", "media": "photo", "latitude": "0", "id": "6614626185", "tags": ""}, {"datetaken": "2011-04-17 08:32:17", "license": "4", "title": "2011-04-17 08-32-17_0109", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7145/6614656613_22f24d6288_o.jpg", "secret": "5a8a9a2345", "media": "photo", "latitude": "0", "id": "6614656613", "tags": ""}, {"datetaken": "2011-04-17 08:32:25", "license": "4", "title": "2011-04-17 08-32-25_0110", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7026/6614687903_0d213648e9_o.jpg", "secret": "f00c457cc4", "media": "photo", "latitude": "0", "id": "6614687903", "tags": ""}, {"datetaken": "2011-04-17 08:32:31", "license": "4", "title": "2011-04-17 08-32-31_0111", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7013/6614720511_2c29d7d3f0_o.jpg", "secret": "d43dc3824a", "media": "photo", "latitude": "0", "id": "6614720511", "tags": ""}, {"datetaken": "2011-04-17 08:34:38", "license": "4", "title": "2011-04-17 08-34-38_0112", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6614750791_5abb67e5e4_o.jpg", "secret": "f3746d495b", "media": "photo", "latitude": "0", "id": "6614750791", "tags": ""}, {"datetaken": "2011-04-17 08:34:48", "license": "4", "title": "2011-04-17 08-34-48_0113", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7035/6614779941_db71b11216_o.jpg", "secret": "8cd7b61e96", "media": "photo", "latitude": "0", "id": "6614779941", "tags": ""}, {"datetaken": "2011-04-17 08:35:27", "license": "4", "title": "2011-04-17 08-35-27_0114", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7017/6614809369_dcb48aa55f_o.jpg", "secret": "5f583066e2", "media": "photo", "latitude": "0", "id": "6614809369", "tags": ""}, {"datetaken": "2011-04-17 08:35:55", "license": "4", "title": "2011-04-17 08-35-55_0115", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7005/6614837727_dbfec9ca0b_o.jpg", "secret": "6ea6ac3a1b", "media": "photo", "latitude": "0", "id": "6614837727", "tags": ""}, {"datetaken": "2011-04-17 08:36:19", "license": "4", "title": "2011-04-17 08-36-19_0116", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7005/6614868785_88a221bed2_o.jpg", "secret": "ef8545da30", "media": "photo", "latitude": "0", "id": "6614868785", "tags": ""}, {"datetaken": "2011-04-17 08:37:30", "license": "4", "title": "2011-04-17 08-37-30_0117", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7001/6614896009_1b60f678b3_o.jpg", "secret": "68225c010d", "media": "photo", "latitude": "0", "id": "6614896009", "tags": ""}, {"datetaken": "2011-04-17 08:38:07", "license": "4", "title": "2011-04-17 08-38-07_0118", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7004/6614925469_075fb75c39_o.jpg", "secret": "ea5ec2d7ed", "media": "photo", "latitude": "0", "id": "6614925469", "tags": ""}, {"datetaken": "2011-04-17 08:38:51", "license": "4", "title": "2011-04-17 08-38-51_0119", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6614960247_24a32dc716_o.jpg", "secret": "a543e7633a", "media": "photo", "latitude": "0", "id": "6614960247", "tags": ""}, {"datetaken": "2011-04-17 08:40:20", "license": "4", "title": "2011-04-17 08-40-20_0120", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7022/6614989227_6a08c087d8_o.jpg", "secret": "62db18d470", "media": "photo", "latitude": "0", "id": "6614989227", "tags": ""}, {"datetaken": "2011-04-17 08:42:37", "license": "4", "title": "2011-04-17 08-42-37_0121", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7173/6615019561_1e795f4a6c_o.jpg", "secret": "6b0ffea719", "media": "photo", "latitude": "0", "id": "6615019561", "tags": ""}, {"datetaken": "2011-04-17 08:43:13", "license": "4", "title": "2011-04-17 08-43-13_0122", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7163/6615056773_a9d0a86004_o.jpg", "secret": "d78486e3d8", "media": "photo", "latitude": "0", "id": "6615056773", "tags": ""}, {"datetaken": "2011-04-17 08:43:49", "license": "4", "title": "2011-04-17 08-43-49_0123", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7011/6615091869_5ace9b6dc8_o.jpg", "secret": "6880f6ae09", "media": "photo", "latitude": "0", "id": "6615091869", "tags": ""}, {"datetaken": "2011-04-17 08:43:52", "license": "4", "title": "2011-04-17 08-43-52_0124", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7003/6615127171_478229a966_o.jpg", "secret": "3b70164e07", "media": "photo", "latitude": "0", "id": "6615127171", "tags": ""}, {"datetaken": "2011-04-17 08:44:57", "license": "4", "title": "2011-04-17 08-44-57_0125", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7173/6615160301_b7ac1abc40_o.jpg", "secret": "504aa626e9", "media": "photo", "latitude": "0", "id": "6615160301", "tags": ""}, {"datetaken": "2011-04-17 08:58:16", "license": "4", "title": "2011-04-17 08-58-16_0126", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7160/6615195273_9e3ab5c807_o.jpg", "secret": "6bd45e85da", "media": "photo", "latitude": "0", "id": "6615195273", "tags": ""}, {"datetaken": "2011-04-17 08:58:35", "license": "4", "title": "2011-04-17 08-58-35_0127", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6615229499_f6997f376c_o.jpg", "secret": "18e2b68810", "media": "photo", "latitude": "0", "id": "6615229499", "tags": ""}, {"datetaken": "2011-04-17 08:59:53", "license": "4", "title": "2011-04-17 08-59-53_0128", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7163/6615265475_c785ccf7a1_o.jpg", "secret": "7f58f95f06", "media": "photo", "latitude": "0", "id": "6615265475", "tags": ""}, {"datetaken": "2011-04-17 09:00:12", "license": "4", "title": "2011-04-17 09-00-12_0129", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7173/6615298289_4fc497c0ac_o.jpg", "secret": "a93c726c51", "media": "photo", "latitude": "0", "id": "6615298289", "tags": ""}, {"datetaken": "2011-04-17 09:01:54", "license": "4", "title": "2011-04-17 09-01-54_0130", "text": "", "album_id": "72157628667758209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7155/6615330255_d69fa3c426_o.jpg", "secret": "9f5b522db7", "media": "photo", "latitude": "0", "id": "6615330255", "tags": ""}, {"datetaken": "2007-08-19 03:45:05", "license": "6", "title": "Helga and Max", "text": "", "album_id": "72157601536678322", "longitude": "-21.941757", "url_o": "https://farm2.staticflickr.com/1181/1168125586_fdd515256e_o.jpg", "secret": "7c638c24b3", "media": "photo", "latitude": "64.060262", "id": "1168125586", "tags": "max iceland doberman helga"}, {"datetaken": "2007-08-19 03:45:06", "license": "6", "title": "Leather Heather", "text": "", "album_id": "72157601536678322", "longitude": "-21.941757", "url_o": "https://farm2.staticflickr.com/1335/1168125704_e9c2c064e1_o.jpg", "secret": "7b4eb01604", "media": "photo", "latitude": "64.060262", "id": "1168125704", "tags": "leather iceland outfit biking"}, {"datetaken": "2007-08-19 03:45:07", "license": "6", "title": "going biking 2", "text": "", "album_id": "72157601536678322", "longitude": "-21.941757", "url_o": "https://farm2.staticflickr.com/1144/1168125826_3d7ee56a45_o.jpg", "secret": "ad1182eea0", "media": "photo", "latitude": "64.060262", "id": "1168125826", "tags": "iceland biking motorcycle biker"}, {"datetaken": "2007-08-19 03:45:08", "license": "6", "title": "Erna and little Hannes 2", "text": "", "album_id": "72157601536678322", "longitude": "-21.941757", "url_o": "https://farm2.staticflickr.com/1324/1167269853_41804a1433_o.jpg", "secret": "d12a2f8817", "media": "photo", "latitude": "64.060262", "id": "1167269853", "tags": "erna"}, {"datetaken": "2007-08-19 03:45:09", "license": "6", "title": "downtown Reykjavik view - right", "text": "", "album_id": "72157601536678322", "longitude": "-21.910858", "url_o": "https://farm2.staticflickr.com/1359/1168126066_cefa19ee09_o.jpg", "secret": "8e79b88638", "media": "photo", "latitude": "64.140118", "id": "1168126066", "tags": "landscape downtown reykjavik smokyharbour"}, {"datetaken": "2007-08-19 03:45:10", "license": "6", "title": "Einar Einarsson sculpture", "text": "", "album_id": "72157601536678322", "longitude": "-21.910858", "url_o": "https://farm2.staticflickr.com/1377/1167270089_a88f4d82f3_o.jpg", "secret": "e462ef7905", "media": "photo", "latitude": "64.140118", "id": "1167270089", "tags": "sculpture iceland reykjavik einareinarsson"}, {"datetaken": "2007-08-19 03:45:11", "license": "6", "title": "breakfast of champions before the race", "text": "", "album_id": "72157601536678322", "longitude": "-21.944503", "url_o": "https://farm2.staticflickr.com/1083/1167270301_791fb642e5_o.jpg", "secret": "70abffaa38", "media": "photo", "latitude": "64.060112", "id": "1167270301", "tags": ""}, {"datetaken": "2007-08-19 03:45:12", "license": "6", "title": "me before the race", "text": "", "album_id": "72157601536678322", "longitude": "-21.951026", "url_o": "https://farm2.staticflickr.com/1214/1168126400_d6b4a2af06_o.jpg", "secret": "719d902a74", "media": "photo", "latitude": "64.150299", "id": "1168126400", "tags": "downtown runner reykjavikmarathon"}, {"datetaken": "2007-08-19 03:45:13", "license": "6", "title": "half-marathon 2", "text": "", "album_id": "72157601536678322", "longitude": "-21.939697", "url_o": "https://farm2.staticflickr.com/1029/1167270475_23e9a16940_o.jpg", "secret": "c3a5028b5f", "media": "photo", "latitude": "64.148877", "id": "1167270475", "tags": "iceland running reykjavik runner halfmarathon"}, {"datetaken": "2007-08-19 03:45:13", "license": "6", "title": "half-marathon 4", "text": "", "album_id": "72157601536678322", "longitude": "-21.939697", "url_o": "https://farm2.staticflickr.com/1275/1168126596_845edbeabd_o.jpg", "secret": "a2b7c45b5f", "media": "photo", "latitude": "64.148877", "id": "1168126596", "tags": "coast iceland running reykjavik runner halfmarathon"}, {"datetaken": "2007-08-19 03:45:14", "license": "6", "title": "the final stretch", "text": "", "album_id": "72157601536678322", "longitude": "-21.947250", "url_o": "https://farm2.staticflickr.com/1103/1168126734_f338ee3004_o.jpg", "secret": "a70172d38c", "media": "photo", "latitude": "64.144011", "id": "1168126734", "tags": "iceland reykjavik runner halfmarathon finalstretch"}, {"datetaken": "2007-08-19 03:45:15", "license": "6", "title": "Erna", "text": "", "album_id": "72157601536678322", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1204/1167270799_9625d6811c_o.jpg", "secret": "fc045147da", "media": "photo", "latitude": "0", "id": "1167270799", "tags": ""}, {"datetaken": "2007-08-19 03:45:16", "license": "6", "title": "out at the fireworks", "text": "", "album_id": "72157601536678322", "longitude": "-21.947250", "url_o": "https://farm2.staticflickr.com/1247/1167270917_48231a0584_o.jpg", "secret": "dac22a702e", "media": "photo", "latitude": "64.144011", "id": "1167270917", "tags": "cousins heather erna icelandicculturalfesitval"}, {"datetaken": "2007-08-19 03:45:17", "license": "6", "title": "drenched at Gunni's after the fireworks", "text": "", "album_id": "72157601536678322", "longitude": "-21.910171", "url_o": "https://farm2.staticflickr.com/1250/1167271007_04633fd898_o.jpg", "secret": "9376e376c1", "media": "photo", "latitude": "64.139294", "id": "1167271007", "tags": "cousins soaked"}, {"datetaken": "2007-08-19 03:45:18", "license": "6", "title": "tanked at the bar", "text": "", "album_id": "72157601536678322", "longitude": "-21.910171", "url_o": "https://farm2.staticflickr.com/1175/1167271127_467bf0ee87_o.jpg", "secret": "1c0f9101e3", "media": "photo", "latitude": "64.139294", "id": "1167271127", "tags": "drunk iceland reykjavik erna gulli"}, {"datetaken": "2007-08-19 03:45:19", "license": "6", "title": "Gulli and I enjoying hot dogs", "text": "", "album_id": "72157601536678322", "longitude": "-21.917037", "url_o": "https://farm2.staticflickr.com/1333/1168127344_e04f61dea5_o.jpg", "secret": "6c0bfc4157", "media": "photo", "latitude": "64.147604", "id": "1168127344", "tags": "iceland reykjavik hut pylsur icelandichotdog"}, {"datetaken": "2007-08-19 03:45:20", "license": "6", "title": "Gulli", "text": "", "album_id": "72157601536678322", "longitude": "-21.944503", "url_o": "https://farm2.staticflickr.com/1043/1167271353_ce82574f25_o.jpg", "secret": "57c7567ac6", "media": "photo", "latitude": "64.060788", "id": "1167271353", "tags": "baby man iceland hafnarfjordur"}, {"datetaken": "2007-08-19 03:45:21", "license": "6", "title": "Harpa and Little Hannes", "text": "", "album_id": "72157601536678322", "longitude": "-21.944503", "url_o": "https://farm2.staticflickr.com/1040/1168127590_4b3161c208_o.jpg", "secret": "ad7b47ab16", "media": "photo", "latitude": "64.060788", "id": "1168127590", "tags": "baby"}, {"datetaken": "2002-10-27 21:02:41", "license": "3", "title": "My favorite sign..", "text": "", "album_id": "784072", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/35433182_aecfb74b92_o.jpg", "secret": "aecfb74b92", "media": "photo", "latitude": "0", "id": "35433182", "tags": "marathon marinecorps dc"}, {"datetaken": "2002-10-27 21:03:16", "license": "3", "title": "More signs", "text": "", "album_id": "784072", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/35433190_b10de35739_o.jpg", "secret": "b10de35739", "media": "photo", "latitude": "0", "id": "35433190", "tags": "marathon marinecorps dc"}, {"datetaken": "2002-10-27 21:03:39", "license": "3", "title": "Our signs rocked!", "text": "", "album_id": "784072", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/35433209_a27649b164_o.jpg", "secret": "a27649b164", "media": "photo", "latitude": "0", "id": "35433209", "tags": "marathon marinecorps dc"}, {"datetaken": "2002-10-28 00:39:12", "license": "3", "title": "Near the Smithsonian", "text": "", "album_id": "784072", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/35433213_e658c96d29_o.jpg", "secret": "e658c96d29", "media": "photo", "latitude": "0", "id": "35433213", "tags": "marathon marinecorps dc"}, {"datetaken": "2002-10-28 00:39:28", "license": "3", "title": "Our signs rocked!", "text": "", "album_id": "784072", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/35433221_99f4da5230_o.jpg", "secret": "99f4da5230", "media": "photo", "latitude": "0", "id": "35433221", "tags": "marathon marinecorps dc"}, {"datetaken": "2002-10-28 00:46:27", "license": "3", "title": "On the metro home", "text": "", "album_id": "784072", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/35433223_822bda43d7_o.jpg", "secret": "822bda43d7", "media": "photo", "latitude": "0", "id": "35433223", "tags": "marathon marinecorps dc"}, {"datetaken": "2002-10-28 00:52:41", "license": "3", "title": "Sleepy", "text": "", "album_id": "784072", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/35433228_164fcb3761_o.jpg", "secret": "164fcb3761", "media": "photo", "latitude": "0", "id": "35433228", "tags": "marathon marinecorps dc"}, {"datetaken": "2002-10-28 00:52:46", "license": "3", "title": "On the metro home", "text": "", "album_id": "784072", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/35433230_4cddadb106_o.jpg", "secret": "4cddadb106", "media": "photo", "latitude": "0", "id": "35433230", "tags": "marathon marinecorps dc"}, {"datetaken": "2002-10-28 01:20:25", "license": "3", "title": "", "text": "", "album_id": "784072", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/35433234_620de36e7b_o.jpg", "secret": "620de36e7b", "media": "photo", "latitude": "0", "id": "35433234", "tags": "marathon marinecorps dc"}, {"datetaken": "2002-10-28 01:55:09", "license": "3", "title": "Yellow jersey", "text": "", "album_id": "784072", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/35433246_bffe23fb80_o.jpg", "secret": "bffe23fb80", "media": "photo", "latitude": "0", "id": "35433246", "tags": "marathon marinecorps dc"}, {"datetaken": "2002-10-28 01:55:13", "license": "3", "title": "Jason is in there somewhere", "text": "", "album_id": "784072", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/35433250_c9891d16db_o.jpg", "secret": "c9891d16db", "media": "photo", "latitude": "0", "id": "35433250", "tags": "marathon marinecorps dc"}, {"datetaken": "2002-10-28 02:43:00", "license": "3", "title": "Support Team", "text": "", "album_id": "784072", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/35433256_eda84d8c59_o.jpg", "secret": "eda84d8c59", "media": "photo", "latitude": "0", "id": "35433256", "tags": "marathon marinecorps dc"}, {"datetaken": "2002-10-28 02:48:11", "license": "3", "title": "Take me to your leader", "text": "", "album_id": "784072", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/35433261_d93d2cb3af_o.jpg", "secret": "d93d2cb3af", "media": "photo", "latitude": "0", "id": "35433261", "tags": "marathon marinecorps dc"}, {"datetaken": "2002-10-28 02:51:26", "license": "3", "title": "Iwogima", "text": "", "album_id": "784072", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/35433265_7c597bf59f_o.jpg", "secret": "7c597bf59f", "media": "photo", "latitude": "0", "id": "35433265", "tags": "marathon marinecorps dc"}, {"datetaken": "2002-10-28 02:52:26", "license": "3", "title": "Proud family", "text": "", "album_id": "784072", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/35433175_44eeb9b903_o.jpg", "secret": "44eeb9b903", "media": "photo", "latitude": "0", "id": "35433175", "tags": "marathon marinecorps dc"}, {"datetaken": "2005-11-27 07:04:05", "license": "3", "title": "Vani @ START", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/67811751_25a8c2aa1c_o.jpg", "secret": "25a8c2aa1c", "media": "photo", "latitude": "0", "id": "67811751", "tags": "friends"}, {"datetaken": "2005-11-27 07:18:57", "license": "3", "title": "Vani and Kalpita", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/67811892_725ccdfc3e_o.jpg", "secret": "725ccdfc3e", "media": "photo", "latitude": "0", "id": "67811892", "tags": "friends"}, {"datetaken": "2005-11-27 07:35:20", "license": "3", "title": "Vani @ < Mile 1", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/67811929_bcc1a2a734_o.jpg", "secret": "bcc1a2a734", "media": "photo", "latitude": "0", "id": "67811929", "tags": "friends"}, {"datetaken": "2005-11-27 08:48:05", "license": "3", "title": "Pradeep @ Mile 8", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/67811957_57cda312e5_o.jpg", "secret": "57cda312e5", "media": "photo", "latitude": "0", "id": "67811957", "tags": "friends"}, {"datetaken": "2005-11-27 09:08:59", "license": "3", "title": "Vani @ Mile 8", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/67811986_d46c06e662_o.jpg", "secret": "d46c06e662", "media": "photo", "latitude": "0", "id": "67811986", "tags": "friends"}, {"datetaken": "2005-11-27 09:09:04", "license": "3", "title": "Vani @ Mile 8", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/67812034_aa88706822_o.jpg", "secret": "aa88706822", "media": "photo", "latitude": "0", "id": "67812034", "tags": "friends"}, {"datetaken": "2005-11-27 09:09:07", "license": "3", "title": "Vani @ Mile 8", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/67812178_75f06637d6_o.jpg", "secret": "75f06637d6", "media": "photo", "latitude": "0", "id": "67812178", "tags": "friends"}, {"datetaken": "2005-11-27 09:37:12", "license": "3", "title": "Ankur AKA Proud Fan", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/67812195_37763b2d61_o.jpg", "secret": "37763b2d61", "media": "photo", "latitude": "0", "id": "67812195", "tags": "friends"}, {"datetaken": "2005-11-27 09:37:21", "license": "3", "title": "New camera? Looks like mine.", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/67812220_95857ba079_o.jpg", "secret": "95857ba079", "media": "photo", "latitude": "0", "id": "67812220", "tags": "friends"}, {"datetaken": "2005-11-27 09:38:36", "license": "3", "title": "Vani @ Mile 10", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/67812274_4291b51c4e_o.jpg", "secret": "4291b51c4e", "media": "photo", "latitude": "0", "id": "67812274", "tags": "friends"}, {"datetaken": "2005-11-27 09:38:41", "license": "3", "title": "Vani @ Mile 10", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/67812345_217f013cfd_o.jpg", "secret": "217f013cfd", "media": "photo", "latitude": "0", "id": "67812345", "tags": "friends"}, {"datetaken": "2005-11-27 09:38:50", "license": "3", "title": "Vani @ Mile 10", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/67812557_b5c3ae4b3d_o.jpg", "secret": "b5c3ae4b3d", "media": "photo", "latitude": "0", "id": "67812557", "tags": "friends"}, {"datetaken": "2005-11-27 09:38:59", "license": "3", "title": "Vani @ Mile 10", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/67812753_051d282452_o.jpg", "secret": "051d282452", "media": "photo", "latitude": "0", "id": "67812753", "tags": "friends"}, {"datetaken": "2005-11-27 10:19:12", "license": "3", "title": "Vani @ FINISH", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/67812928_518c2e2bbd_o.jpg", "secret": "518c2e2bbd", "media": "photo", "latitude": "0", "id": "67812928", "tags": "friends"}, {"datetaken": "2005-11-27 10:21:38", "license": "3", "title": "Vani AKA Half-Marathon Finisher", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/67812977_b742baf6fb_o.jpg", "secret": "b742baf6fb", "media": "photo", "latitude": "0", "id": "67812977", "tags": "friends"}, {"datetaken": "2005-11-27 10:22:00", "license": "3", "title": "Vani and Kalpita", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/67813152_9be9f5617d_o.jpg", "secret": "9be9f5617d", "media": "photo", "latitude": "0", "id": "67813152", "tags": "friends"}, {"datetaken": "2005-11-27 10:22:43", "license": "3", "title": "Pradeep AKA Half-Marathon Finisher", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/67813204_3e518c42fc_o.jpg", "secret": "3e518c42fc", "media": "photo", "latitude": "0", "id": "67813204", "tags": "friends"}, {"datetaken": "2005-11-27 10:22:51", "license": "3", "title": "Sangeeta and Pradeep", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/67813429_e4c12a78cb_o.jpg", "secret": "e4c12a78cb", "media": "photo", "latitude": "0", "id": "67813429", "tags": "friends"}, {"datetaken": "2005-11-27 11:41:18", "license": "3", "title": "Hagen @ FINISH", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/67813721_5b655dadee_o.jpg", "secret": "5b655dadee", "media": "photo", "latitude": "0", "id": "67813721", "tags": "friends"}, {"datetaken": "2005-11-27 11:41:32", "license": "3", "title": "Hagen getting his medal", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/67814016_0345dec7fd_o.jpg", "secret": "0345dec7fd", "media": "photo", "latitude": "0", "id": "67814016", "tags": "friends"}, {"datetaken": "2005-11-27 11:42:15", "license": "3", "title": "Hagen AKA Marathon Finisher", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/67814227_5e472dd330_o.jpg", "secret": "5e472dd330", "media": "photo", "latitude": "0", "id": "67814227", "tags": "friends"}, {"datetaken": "2005-11-27 11:43:20", "license": "3", "title": "Hagen and Vani", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/67814493_5d512557a8_o.jpg", "secret": "5d512557a8", "media": "photo", "latitude": "0", "id": "67814493", "tags": "friends"}, {"datetaken": "2005-11-27 11:52:47", "license": "3", "title": "Recovery", "text": "", "album_id": "1463239", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/67814650_5c0b346dae_o.jpg", "secret": "5c0b346dae", "media": "photo", "latitude": "0", "id": "67814650", "tags": "friends"}, {"datetaken": "2002-01-19 05:45:10", "license": "4", "title": "DSCF0001", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6328544_7dda0242d0_o.jpg", "secret": "7dda0242d0", "media": "photo", "latitude": "0", "id": "6328544", "tags": "dancemarathon"}, {"datetaken": "2002-01-19 09:51:26", "license": "4", "title": "DSCF0002", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6328546_ec23d044e7_o.jpg", "secret": "ec23d044e7", "media": "photo", "latitude": "0", "id": "6328546", "tags": "dancemarathon"}, {"datetaken": "2002-01-19 09:51:44", "license": "4", "title": "DSCF0003", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6328549_d04011deba_o.jpg", "secret": "d04011deba", "media": "photo", "latitude": "0", "id": "6328549", "tags": "dancemarathon"}, {"datetaken": "2002-01-19 09:52:27", "license": "4", "title": "DSCF0004", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6328550_6dd819f835_o.jpg", "secret": "6dd819f835", "media": "photo", "latitude": "0", "id": "6328550", "tags": "dancemarathon"}, {"datetaken": "2002-01-19 09:52:52", "license": "4", "title": "DSCF0005", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6328551_7c173ee6d0_o.jpg", "secret": "7c173ee6d0", "media": "photo", "latitude": "0", "id": "6328551", "tags": "dancemarathon"}, {"datetaken": "2002-01-19 09:53:22", "license": "4", "title": "DSCF0006", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6328555_a5709d0249_o.jpg", "secret": "a5709d0249", "media": "photo", "latitude": "0", "id": "6328555", "tags": "dancemarathon"}, {"datetaken": "2002-01-19 09:53:50", "license": "4", "title": "DSCF0007", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6328554_bee977960f_o.jpg", "secret": "bee977960f", "media": "photo", "latitude": "0", "id": "6328554", "tags": "dancemarathon"}, {"datetaken": "2002-01-19 09:54:17", "license": "4", "title": "DSCF0008", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6328556_0501010c45_o.jpg", "secret": "0501010c45", "media": "photo", "latitude": "0", "id": "6328556", "tags": "dancemarathon"}, {"datetaken": "2002-01-19 09:54:34", "license": "4", "title": "DSCF0009", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6328557_1c28bebeae_o.jpg", "secret": "1c28bebeae", "media": "photo", "latitude": "0", "id": "6328557", "tags": "dancemarathon"}, {"datetaken": "2002-01-19 13:24:35", "license": "4", "title": "DSCF0010", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6328563_655bddd489_o.jpg", "secret": "655bddd489", "media": "photo", "latitude": "0", "id": "6328563", "tags": "dancemarathon"}, {"datetaken": "2002-01-19 13:25:06", "license": "4", "title": "DSCF0011", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6328570_3fee58f565_o.jpg", "secret": "3fee58f565", "media": "photo", "latitude": "0", "id": "6328570", "tags": "dancemarathon"}, {"datetaken": "2002-01-19 13:25:22", "license": "4", "title": "DSCF0012", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6328566_a1a6e583e1_o.jpg", "secret": "a1a6e583e1", "media": "photo", "latitude": "0", "id": "6328566", "tags": "dancemarathon"}, {"datetaken": "2002-01-19 20:29:44", "license": "4", "title": "Suj", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6328571_95afa96c72_o.jpg", "secret": "95afa96c72", "media": "photo", "latitude": "0", "id": "6328571", "tags": "dancemarathon"}, {"datetaken": "2002-01-19 20:29:59", "license": "4", "title": "DSCF0014", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6328577_9f3c0ee8b0_o.jpg", "secret": "9f3c0ee8b0", "media": "photo", "latitude": "0", "id": "6328577", "tags": "dancemarathon"}, {"datetaken": "2002-01-19 20:30:32", "license": "4", "title": "DSCF0016", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6328580_b02dd3dcad_o.jpg", "secret": "b02dd3dcad", "media": "photo", "latitude": "0", "id": "6328580", "tags": "dancemarathon"}, {"datetaken": "2002-01-20 07:38:59", "license": "4", "title": "DSCF0017", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6328579_d3cd7ba2c9_o.jpg", "secret": "d3cd7ba2c9", "media": "photo", "latitude": "0", "id": "6328579", "tags": "dancemarathon"}, {"datetaken": "2002-01-20 07:39:04", "license": "4", "title": "DSCF0018", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6328582_0e69c6b038_o.jpg", "secret": "0e69c6b038", "media": "photo", "latitude": "0", "id": "6328582", "tags": "dancemarathon"}, {"datetaken": "2002-01-20 07:40:55", "license": "4", "title": "DSCF0019", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6328585_bf7df3f5e2_o.jpg", "secret": "bf7df3f5e2", "media": "photo", "latitude": "0", "id": "6328585", "tags": "dancemarathon"}, {"datetaken": "2002-01-20 07:41:10", "license": "4", "title": "DSCF0020", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6328583_bdac903ec7_o.jpg", "secret": "bdac903ec7", "media": "photo", "latitude": "0", "id": "6328583", "tags": "dancemarathon"}, {"datetaken": "2002-01-20 07:47:39", "license": "4", "title": "DSCF0021", "text": "", "album_id": "158010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6328584_b12797f1ff_o.jpg", "secret": "b12797f1ff", "media": "photo", "latitude": "0", "id": "6328584", "tags": "dancemarathon"}, {"datetaken": "2005-10-23 00:00:09", "license": "3", "title": "san francisco", "text": "", "album_id": "1220564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/56203867_a83459e5f3_o.jpg", "secret": "a83459e5f3", "media": "photo", "latitude": "0", "id": "56203867", "tags": "sanfrancisco marathon"}, {"datetaken": "2005-10-23 00:01:17", "license": "3", "title": "san francisco", "text": "", "album_id": "1220564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/56203873_e189682ced_o.jpg", "secret": "e189682ced", "media": "photo", "latitude": "0", "id": "56203873", "tags": "sanfrancisco marathon"}, {"datetaken": "2005-10-23 00:02:24", "license": "3", "title": "san francisco pre marathon", "text": "", "album_id": "1220564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/56203878_0381df6c90_o.jpg", "secret": "0381df6c90", "media": "photo", "latitude": "0", "id": "56203878", "tags": "sanfrancisco marathon"}, {"datetaken": "2005-10-23 00:08:16", "license": "3", "title": "san francisco pre marathon", "text": "", "album_id": "1220564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/56203881_b4d3960802_o.jpg", "secret": "b4d3960802", "media": "photo", "latitude": "0", "id": "56203881", "tags": "sanfrancisco marathon"}, {"datetaken": "2005-10-23 00:10:21", "license": "3", "title": "san francisco pre marathon", "text": "", "album_id": "1220564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/56203891_a203bcb14b_o.jpg", "secret": "a203bcb14b", "media": "photo", "latitude": "0", "id": "56203891", "tags": "sanfrancisco marathon"}, {"datetaken": "2005-10-23 00:20:01", "license": "3", "title": "san francisco pre marathon", "text": "", "album_id": "1220564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/56203897_1e8787d3a5_o.jpg", "secret": "1e8787d3a5", "media": "photo", "latitude": "0", "id": "56203897", "tags": "sanfrancisco marathon"}, {"datetaken": "2005-10-23 00:20:28", "license": "3", "title": "san francisco pre marathon", "text": "", "album_id": "1220564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/56203904_fc1a5a37fe_o.jpg", "secret": "fc1a5a37fe", "media": "photo", "latitude": "0", "id": "56203904", "tags": "sanfrancisco marathon"}, {"datetaken": "2005-10-23 00:20:42", "license": "3", "title": "san francisco pre marathon", "text": "", "album_id": "1220564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/56203907_ad840b3656_o.jpg", "secret": "ad840b3656", "media": "photo", "latitude": "0", "id": "56203907", "tags": "sanfrancisco marathon"}, {"datetaken": "2005-10-23 02:44:33", "license": "3", "title": "run", "text": "", "album_id": "1220564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/56203977_3c95381941_o.jpg", "secret": "3c95381941", "media": "photo", "latitude": "0", "id": "56203977", "tags": "sanfrancisco marathon"}, {"datetaken": "2005-10-23 02:52:07", "license": "3", "title": "debbie after sf half marathon", "text": "", "album_id": "1220564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/56203988_bb02b1f3bc_o.jpg", "secret": "bb02b1f3bc", "media": "photo", "latitude": "0", "id": "56203988", "tags": "sanfrancisco marathon"}, {"datetaken": "2005-10-30 08:57:11", "license": "1", "title": "paratroopers", "text": "", "album_id": "1259235", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58186491_b959a883fb_o.jpg", "secret": "b959a883fb", "media": "photo", "latitude": "0", "id": "58186491", "tags": "marinecorpsmarathon"}, {"datetaken": "2005-10-30 08:57:35", "license": "1", "title": "paratroopers", "text": "", "album_id": "1259235", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/58186507_96454d0a54_o.jpg", "secret": "96454d0a54", "media": "photo", "latitude": "0", "id": "58186507", "tags": "marinecorpsmarathon"}, {"datetaken": "2005-10-30 08:57:54", "license": "1", "title": "paratroopers", "text": "", "album_id": "1259235", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/58186534_32b873587b_o.jpg", "secret": "32b873587b", "media": "photo", "latitude": "0", "id": "58186534", "tags": "marinecorpsmarathon"}, {"datetaken": "2005-10-30 09:09:35", "license": "1", "title": "Jim & Sharon before the race", "text": "", "album_id": "1259235", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/58186552_671836503e_o.jpg", "secret": "671836503e", "media": "photo", "latitude": "0", "id": "58186552", "tags": "marinecorpsmarathon"}, {"datetaken": "2005-10-30 09:37:31", "license": "1", "title": "Sharon & her t.p.", "text": "", "album_id": "1259235", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/58186621_28ca8be811_o.jpg", "secret": "28ca8be811", "media": "photo", "latitude": "0", "id": "58186621", "tags": "marinecorpsmarathon"}, {"datetaken": "2005-10-30 09:44:06", "license": "1", "title": "MCM start", "text": "", "album_id": "1259235", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58186651_6c99fd099f_o.jpg", "secret": "6c99fd099f", "media": "photo", "latitude": "0", "id": "58186651", "tags": "marinecorpsmarathon"}, {"datetaken": "2005-10-30 09:44:10", "license": "1", "title": "MCM start", "text": "", "album_id": "1259235", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/58186678_f70d5aea47_o.jpg", "secret": "f70d5aea47", "media": "photo", "latitude": "0", "id": "58186678", "tags": "marinecorpsmarathon"}, {"datetaken": "2005-10-30 09:54:28", "license": "1", "title": "Philadelphia Mummers", "text": "", "album_id": "1259235", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/58186694_dfb049052d_o.jpg", "secret": "dfb049052d", "media": "photo", "latitude": "0", "id": "58186694", "tags": "marinecorpsmarathon"}, {"datetaken": "2005-10-30 11:03:19", "license": "1", "title": "C&O Canal", "text": "", "album_id": "1259235", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58186721_0af5bdcb83_o.jpg", "secret": "0af5bdcb83", "media": "photo", "latitude": "0", "id": "58186721", "tags": "marinecorpsmarathon"}, {"datetaken": "2005-10-30 11:03:29", "license": "1", "title": "C&O Canal", "text": "", "album_id": "1259235", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/58186734_a627096fe4_o.jpg", "secret": "a627096fe4", "media": "photo", "latitude": "0", "id": "58186734", "tags": "marinecorpsmarathon"}, {"datetaken": "2005-10-30 11:09:38", "license": "1", "title": "Francis Scott Key Bridge MM4", "text": "", "album_id": "1259235", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/58186764_0a6ee95c63_o.jpg", "secret": "0a6ee95c63", "media": "photo", "latitude": "0", "id": "58186764", "tags": "marinecorpsmarathon"}, {"datetaken": "2005-10-30 11:09:58", "license": "1", "title": "Francis Scott Key Bridge (MM4)", "text": "", "album_id": "1259235", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/58186781_d5e6ef87de_o.jpg", "secret": "d5e6ef87de", "media": "photo", "latitude": "0", "id": "58186781", "tags": "marinecorpsmarathon"}, {"datetaken": "2005-10-30 11:22:06", "license": "1", "title": "Francis Scott Key Bridge (MM4)", "text": "", "album_id": "1259235", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/58186802_cf3caf4c42_o.jpg", "secret": "cf3caf4c42", "media": "photo", "latitude": "0", "id": "58186802", "tags": "marinecorpsmarathon"}, {"datetaken": "2005-10-30 16:58:03", "license": "1", "title": "Jim has survived his first marathon!", "text": "", "album_id": "1259235", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/58186514_98f09b5a14_o.jpg", "secret": "98f09b5a14", "media": "photo", "latitude": "0", "id": "58186514", "tags": "marinecorpsmarathon"}, {"datetaken": "2005-11-06 12:32:05", "license": "3", "title": "IMG_1973.JPG", "text": "", "album_id": "1306323", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/60461831_bd3db8fd82_o.jpg", "secret": "bd3db8fd82", "media": "photo", "latitude": "0", "id": "60461831", "tags": "nyc marathon nycmarathon 2005"}, {"datetaken": "2005-11-06 12:47:16", "license": "3", "title": "IMG_1975.JPG", "text": "", "album_id": "1306323", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/60461920_8278d5807c_o.jpg", "secret": "8278d5807c", "media": "photo", "latitude": "0", "id": "60461920", "tags": "nyc marathon nycmarathon 2005"}, {"datetaken": "2005-11-06 12:51:21", "license": "3", "title": "IMG_1977.JPG", "text": "", "album_id": "1306323", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/60462045_b21a491096_o.jpg", "secret": "b21a491096", "media": "photo", "latitude": "0", "id": "60462045", "tags": "nyc marathon nycmarathon 2005"}, {"datetaken": "2005-11-06 13:03:13", "license": "3", "title": "Sheryl & Greg", "text": "", "album_id": "1306323", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/60462161_e1526c166d_o.jpg", "secret": "e1526c166d", "media": "photo", "latitude": "0", "id": "60462161", "tags": "nyc marathon nycmarathon 2005"}, {"datetaken": "2005-11-06 13:03:15", "license": "3", "title": "Sheryl & Greg", "text": "", "album_id": "1306323", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/60462302_b6ddb87bb6_o.jpg", "secret": "b6ddb87bb6", "media": "photo", "latitude": "0", "id": "60462302", "tags": "nyc marathon nycmarathon 2005"}, {"datetaken": "2005-11-06 13:03:57", "license": "3", "title": "IMG_1981.JPG", "text": "", "album_id": "1306323", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/60462384_b593df3bd6_o.jpg", "secret": "b593df3bd6", "media": "photo", "latitude": "0", "id": "60462384", "tags": "nyc marathon nycmarathon 2005"}, {"datetaken": "2005-11-06 13:15:13", "license": "3", "title": "IMG_1986.JPG", "text": "", "album_id": "1306323", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/60462514_c148ade563_o.jpg", "secret": "c148ade563", "media": "photo", "latitude": "0", "id": "60462514", "tags": "nyc marathon nycmarathon 2005"}, {"datetaken": "2005-11-06 13:15:35", "license": "3", "title": "IMG_1988.JPG", "text": "", "album_id": "1306323", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/60462630_61d4391ac4_o.jpg", "secret": "61d4391ac4", "media": "photo", "latitude": "0", "id": "60462630", "tags": "nyc marathon nycmarathon 2005"}, {"datetaken": "2005-11-06 13:15:46", "license": "3", "title": "IMG_1989.JPG", "text": "", "album_id": "1306323", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/60462738_9cf28c02f6_o.jpg", "secret": "9cf28c02f6", "media": "photo", "latitude": "0", "id": "60462738", "tags": "nyc marathon nycmarathon 2005"}, {"datetaken": "2005-11-06 13:16:39", "license": "3", "title": "IMG_1993.JPG", "text": "", "album_id": "1306323", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/60461735_6addd06846_o.jpg", "secret": "6addd06846", "media": "photo", "latitude": "0", "id": "60461735", "tags": "nyc marathon nycmarathon 2005"}, {"datetaken": "2005-11-06 13:16:46", "license": "3", "title": "IMG_1994.JPG", "text": "", "album_id": "1306323", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/60462868_7b53afd24e_o.jpg", "secret": "7b53afd24e", "media": "photo", "latitude": "0", "id": "60462868", "tags": "nyc marathon nycmarathon 2005"}, {"datetaken": "2005-11-06 13:16:49", "license": "3", "title": "IMG_1995.JPG", "text": "", "album_id": "1306323", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/60462951_d57086f0f5_o.jpg", "secret": "d57086f0f5", "media": "photo", "latitude": "0", "id": "60462951", "tags": "nyc marathon nycmarathon 2005"}, {"datetaken": "2006-01-28 18:28:07", "license": "5", "title": "Loud TNT welcome in the Phoenix airport", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/93462522_6bf74f174d_o.jpg", "secret": "6bf74f174d", "media": "photo", "latitude": "0", "id": "93462522", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:10", "license": "5", "title": "Loud TNT welcome in the Phoenix airport", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/93462541_ee77bb2bc5_o.jpg", "secret": "ee77bb2bc5", "media": "photo", "latitude": "0", "id": "93462541", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:12", "license": "5", "title": "1000 people waiting to be seated for dinner", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/93462558_9817f1c0ef_o.jpg", "secret": "9817f1c0ef", "media": "photo", "latitude": "0", "id": "93462558", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:14", "license": "5", "title": "Last glance before the pasta party", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/93462569_67bf299a87_o.jpg", "secret": "67bf299a87", "media": "photo", "latitude": "0", "id": "93462569", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:15", "license": "5", "title": "Dressed for the big event", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/93462586_edce4ed107_o.jpg", "secret": "edce4ed107", "media": "photo", "latitude": "0", "id": "93462586", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:20", "license": "5", "title": "Milling about before heading out to the start line", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/93462607_908459668e_o.jpg", "secret": "908459668e", "media": "photo", "latitude": "0", "id": "93462607", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:22", "license": "5", "title": "It's early and there's no coffee in sight", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/93462622_0631dbb521_o.jpg", "secret": "0631dbb521", "media": "photo", "latitude": "0", "id": "93462622", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:25", "license": "5", "title": "Warming up", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/93462641_404970b8dd_o.jpg", "secret": "404970b8dd", "media": "photo", "latitude": "0", "id": "93462641", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:27", "license": "5", "title": "Waiting for the start", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/93462679_0225733e1a_o.jpg", "secret": "0225733e1a", "media": "photo", "latitude": "0", "id": "93462679", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:29", "license": "5", "title": "Waiting for the start", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/93462715_10caa94876_o.jpg", "secret": "10caa94876", "media": "photo", "latitude": "0", "id": "93462715", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:30", "license": "5", "title": "Walk in progress", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/93462738_8dc13ed81a_o.jpg", "secret": "8dc13ed81a", "media": "photo", "latitude": "0", "id": "93462738", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:32", "license": "5", "title": "The wonderful scenery", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/93462754_34499c3599_o.jpg", "secret": "34499c3599", "media": "photo", "latitude": "0", "id": "93462754", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:33", "license": "5", "title": "Loads of cups to clean up", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/93462770_22c3893300_o.jpg", "secret": "22c3893300", "media": "photo", "latitude": "0", "id": "93462770", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:35", "license": "5", "title": "Looking back down the itty bitty hill", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/93462792_49a710c206_o.jpg", "secret": "49a710c206", "media": "photo", "latitude": "0", "id": "93462792", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:36", "license": "5", "title": "Crossing the Salt River coming into Tempe", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/93462812_1e8775e7f0_o.jpg", "secret": "1e8775e7f0", "media": "photo", "latitude": "0", "id": "93462812", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:37", "license": "5", "title": "The home stretch in Tempe", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/93462834_f83df008b7_o.jpg", "secret": "f83df008b7", "media": "photo", "latitude": "0", "id": "93462834", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:39", "license": "5", "title": "Just about to cross the finish line", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/93462845_f7f12d2558_o.jpg", "secret": "f7f12d2558", "media": "photo", "latitude": "0", "id": "93462845", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:41", "license": "5", "title": "Just after crossing the finish line", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/93462865_73e86e9084_o.jpg", "secret": "73e86e9084", "media": "photo", "latitude": "0", "id": "93462865", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:42", "license": "5", "title": "It's over and we're home!", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/93462887_a9ec818429_o.jpg", "secret": "a9ec818429", "media": "photo", "latitude": "0", "id": "93462887", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:44", "license": "5", "title": "It's over and we're home!", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/93462910_7d182a0f12_o.jpg", "secret": "7d182a0f12", "media": "photo", "latitude": "0", "id": "93462910", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:45", "license": "5", "title": "It's over and we're home!", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/93462929_600e1be7b9_o.jpg", "secret": "600e1be7b9", "media": "photo", "latitude": "0", "id": "93462929", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:47", "license": "5", "title": "It's over and we're home!", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/93462947_8d093843ee_o.jpg", "secret": "8d093843ee", "media": "photo", "latitude": "0", "id": "93462947", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2006-01-28 18:28:48", "license": "5", "title": "It's over and we're home!", "text": "", "album_id": "72057594068659803", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/93462972_3a5c4331c3_o.jpg", "secret": "3a5c4331c3", "media": "photo", "latitude": "0", "id": "93462972", "tags": "phoenix marathon tnt teamintraining"}, {"datetaken": "2003-10-26 10:27:17", "license": "5", "title": "Marathoners on the National Mall", "text": "", "album_id": "72057594088507493", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/116534546_d44338335a_o.jpg", "secret": "d44338335a", "media": "photo", "latitude": "0", "id": "116534546", "tags": "2003 washingtondc marathon trent marinecorps recoveredphotos"}, {"datetaken": "2003-10-26 12:21:30", "license": "5", "title": "Trent, man of steel", "text": "", "album_id": "72057594088507493", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/116534613_a67cd137ae_o.jpg", "secret": "a67cd137ae", "media": "photo", "latitude": "0", "id": "116534613", "tags": "2003 washingtondc marathon trent marinecorps recoveredphotos"}, {"datetaken": "2003-10-26 12:31:21", "license": "5", "title": "Trent and friends on the course", "text": "", "album_id": "72057594088507493", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/116534653_405bc17b43_o.jpg", "secret": "405bc17b43", "media": "photo", "latitude": "0", "id": "116534653", "tags": "2003 washingtondc marathon trent marinecorps recoveredphotos"}, {"datetaken": "2003-10-26 14:22:06", "license": "5", "title": "Cheering is such hard work", "text": "", "album_id": "72057594088507493", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/116534722_44338051a8_o.jpg", "secret": "44338051a8", "media": "photo", "latitude": "0", "id": "116534722", "tags": "2003 washingtondc marathon alec trent trae marinecorps isadora butch recoveredphotos"}, {"datetaken": "2003-10-26 14:24:32", "license": "5", "title": "Trent and Tara; Mr. B and Isadora", "text": "", "album_id": "72057594088507493", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/116534775_2642e0cc45_o.jpg", "secret": "2642e0cc45", "media": "photo", "latitude": "0", "id": "116534775", "tags": "2003 washingtondc tara marathon alec trent marinecorps isadora recoveredphotos"}, {"datetaken": "2003-10-26 14:24:59", "license": "5", "title": "Trent and Tara", "text": "", "album_id": "72057594088507493", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/116534882_692c6d3490_o.jpg", "secret": "692c6d3490", "media": "photo", "latitude": "0", "id": "116534882", "tags": "2003 washingtondc tara marathon alec trent marinecorps recoveredphotos"}, {"datetaken": "2003-10-26 14:25:55", "license": "5", "title": "The crowd", "text": "", "album_id": "72057594088507493", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/116534958_eb3e3e9f9b_o.jpg", "secret": "eb3e3e9f9b", "media": "photo", "latitude": "0", "id": "116534958", "tags": "2003 washingtondc tara marathon alec trent trae marinecorps isadora recoveredphotos"}, {"datetaken": "2003-10-26 14:27:50", "license": "5", "title": "Trente and the ladies", "text": "", "album_id": "72057594088507493", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/116535009_34d50fd65f_o.jpg", "secret": "34d50fd65f", "media": "photo", "latitude": "0", "id": "116535009", "tags": "2003 washingtondc tara marathon trent marinecorps recoveredphotos"}, {"datetaken": "2003-10-26 14:28:12", "license": "5", "title": "Isadora, Trae, and Butch after the marathon", "text": "", "album_id": "72057594088507493", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/116535063_aaad7e8370_o.jpg", "secret": "aaad7e8370", "media": "photo", "latitude": "0", "id": "116535063", "tags": "2003 washingtondc marathon alec trent trae marinecorps isadora butch recoveredphotos"}, {"datetaken": "2003-10-26 14:28:29", "license": "5", "title": "Marine Corps Marathon 2003; meeting Trent afterward", "text": "", "album_id": "72057594088507493", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/116535114_6c38c09107_o.jpg", "secret": "6c38c09107", "media": "photo", "latitude": "0", "id": "116535114", "tags": "2003 washingtondc marathon trent marinecorps recoveredphotos"}, {"datetaken": "2006-03-29 16:06:19", "license": "5", "title": "Marathon Matt", "text": "", "album_id": "72057594094119797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/119978655_e5e1c9557c_o.jpg", "secret": "e5e1c9557c", "media": "photo", "latitude": "0", "id": "119978655", "tags": ""}, {"datetaken": "2006-03-29 16:06:19", "license": "5", "title": "Mind game", "text": "", "album_id": "72057594094119797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/119978656_f20d8d79ff_o.jpg", "secret": "f20d8d79ff", "media": "photo", "latitude": "0", "id": "119978656", "tags": ""}, {"datetaken": "2006-03-29 16:06:19", "license": "5", "title": "C-130 Reunion Show", "text": "", "album_id": "72057594094119797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/119978654_fb86b0e4d1_o.jpg", "secret": "fb86b0e4d1", "media": "photo", "latitude": "0", "id": "119978654", "tags": ""}, {"datetaken": "2006-03-30 00:25:52", "license": "5", "title": "Shotgun", "text": "", "album_id": "72057594094119797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/120161509_1b9c6a5df2_o.jpg", "secret": "1b9c6a5df2", "media": "photo", "latitude": "0", "id": "120161509", "tags": ""}, {"datetaken": "2006-03-30 00:25:52", "license": "5", "title": "Red eyes", "text": "", "album_id": "72057594094119797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/120161508_425b2ebdd4_o.jpg", "secret": "425b2ebdd4", "media": "photo", "latitude": "0", "id": "120161508", "tags": ""}, {"datetaken": "2006-03-30 00:25:52", "license": "5", "title": "Dali on V", "text": "", "album_id": "72057594094119797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/120161506_9601603911_o.jpg", "secret": "9601603911", "media": "photo", "latitude": "0", "id": "120161506", "tags": ""}, {"datetaken": "2006-03-30 00:47:33", "license": "5", "title": "One banana", "text": "", "album_id": "72057594094119797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/120167493_fb29f152e2_o.jpg", "secret": "fb29f152e2", "media": "photo", "latitude": "0", "id": "120167493", "tags": ""}, {"datetaken": "2006-03-30 00:47:33", "license": "5", "title": "Two banana", "text": "", "album_id": "72057594094119797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/120167494_9743eafa35_o.jpg", "secret": "9743eafa35", "media": "photo", "latitude": "0", "id": "120167494", "tags": ""}, {"datetaken": "2006-03-30 00:47:33", "license": "5", "title": "Three banana", "text": "", "album_id": "72057594094119797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/120167495_20339cd8a9_o.jpg", "secret": "20339cd8a9", "media": "photo", "latitude": "0", "id": "120167495", "tags": ""}, {"datetaken": "2006-03-30 00:47:33", "license": "5", "title": "Four!", "text": "", "album_id": "72057594094119797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/120167496_b9928dd78e_o.jpg", "secret": "b9928dd78e", "media": "photo", "latitude": "0", "id": "120167496", "tags": ""}, {"datetaken": "2006-03-30 00:54:24", "license": "5", "title": "Gora's gay Chakharbharti magic", "text": "", "album_id": "72057594094119797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/120169379_d10915d6ee_o.jpg", "secret": "d10915d6ee", "media": "photo", "latitude": "0", "id": "120169379", "tags": ""}, {"datetaken": "2006-03-30 00:55:40", "license": "5", "title": "S.I.D.A.S.", "text": "", "album_id": "72057594094119797", "longitude": "-77.034049", "url_o": "https://farm1.staticflickr.com/37/120169681_1db471df45_o.jpg", "secret": "1db471df45", "media": "photo", "latitude": "38.931762", "id": "120169681", "tags": ""}, {"datetaken": "2006-03-30 00:55:40", "license": "5", "title": "Yessss!", "text": "", "album_id": "72057594094119797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/120169677_20692d8763_o.jpg", "secret": "20692d8763", "media": "photo", "latitude": "0", "id": "120169677", "tags": ""}, {"datetaken": "2006-03-30 01:01:22", "license": "5", "title": "Donny Does Dirty", "text": "", "album_id": "72057594094119797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/120171260_ff46a8d762_o.jpg", "secret": "ff46a8d762", "media": "photo", "latitude": "0", "id": "120171260", "tags": ""}, {"datetaken": "2006-03-30 01:01:22", "license": "5", "title": "Hail Caesar!", "text": "", "album_id": "72057594094119797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/120171259_73dad83905_o.jpg", "secret": "73dad83905", "media": "photo", "latitude": "0", "id": "120171259", "tags": ""}, {"datetaken": "2006-03-30 01:01:22", "license": "5", "title": "Mes dames", "text": "", "album_id": "72057594094119797", "longitude": "-77.034049", "url_o": "https://farm1.staticflickr.com/39/120171258_8d92c65c7e_o.jpg", "secret": "8d92c65c7e", "media": "photo", "latitude": "38.931762", "id": "120171258", "tags": ""}, {"datetaken": "2006-03-30 01:04:11", "license": "5", "title": "Tim in headlights", "text": "", "album_id": "72057594094119797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/120172064_85b4782439_o.jpg", "secret": "85b4782439", "media": "photo", "latitude": "0", "id": "120172064", "tags": ""}, {"datetaken": "2006-03-30 01:04:11", "license": "5", "title": "J-j-j-jackie", "text": "", "album_id": "72057594094119797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/120172063_bea94e0e20_o.jpg", "secret": "bea94e0e20", "media": "photo", "latitude": "0", "id": "120172063", "tags": ""}, {"datetaken": "2006-03-30 01:06:23", "license": "5", "title": "Shock and awe", "text": "", "album_id": "72057594094119797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/120172627_2b6787ce40_o.jpg", "secret": "2b6787ce40", "media": "photo", "latitude": "0", "id": "120172627", "tags": ""}, {"datetaken": "2006-04-22 20:33:03", "license": "2", "title": "Kieran", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/133705203_39981a0336_o.jpg", "secret": "39981a0336", "media": "photo", "latitude": "0", "id": "133705203", "tags": "people"}, {"datetaken": "2006-04-22 22:38:03", "license": "2", "title": "Stage Lights", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/133705423_08cba89d3b_o.jpg", "secret": "08cba89d3b", "media": "photo", "latitude": "0", "id": "133705423", "tags": ""}, {"datetaken": "2006-04-22 23:28:10", "license": "2", "title": "Max", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/133705535_a1c9c56b8e_o.jpg", "secret": "a1c9c56b8e", "media": "photo", "latitude": "0", "id": "133705535", "tags": "people"}, {"datetaken": "2006-04-22 23:28:59", "license": "2", "title": "Profile", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/133705615_e4d35abdb3_o.jpg", "secret": "e4d35abdb3", "media": "photo", "latitude": "0", "id": "133705615", "tags": ""}, {"datetaken": "2006-04-22 23:29:12", "license": "2", "title": "Holliwood", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/133705761_835e043784_o.jpg", "secret": "835e043784", "media": "photo", "latitude": "0", "id": "133705761", "tags": ""}, {"datetaken": "2006-04-22 23:29:28", "license": "2", "title": "Smile", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/133705869_e4084853f2_o.jpg", "secret": "e4084853f2", "media": "photo", "latitude": "0", "id": "133705869", "tags": ""}, {"datetaken": "2006-04-22 23:29:37", "license": "2", "title": "Straw or what?", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/133706013_cd59145463_o.jpg", "secret": "cd59145463", "media": "photo", "latitude": "0", "id": "133706013", "tags": ""}, {"datetaken": "2006-04-22 23:32:03", "license": "2", "title": "Glasses speak", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/133706192_0edf8d669f_o.jpg", "secret": "0edf8d669f", "media": "photo", "latitude": "0", "id": "133706192", "tags": ""}, {"datetaken": "2006-04-22 23:32:17", "license": "2", "title": "Index", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/133706305_e251fded09_o.jpg", "secret": "e251fded09", "media": "photo", "latitude": "0", "id": "133706305", "tags": ""}, {"datetaken": "2006-04-22 23:35:46", "license": "2", "title": "Time for a smoke", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/133706497_4a1edc35c1_o.jpg", "secret": "4a1edc35c1", "media": "photo", "latitude": "0", "id": "133706497", "tags": ""}, {"datetaken": "2006-04-23 00:41:00", "license": "2", "title": "Never too late to read", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/133706743_b6b151e90b_o.jpg", "secret": "b6b151e90b", "media": "photo", "latitude": "0", "id": "133706743", "tags": ""}, {"datetaken": "2006-04-23 00:41:11", "license": "2", "title": "Laura", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/133707076_d4d7eb4a52_o.jpg", "secret": "d4d7eb4a52", "media": "photo", "latitude": "0", "id": "133707076", "tags": ""}, {"datetaken": "2006-04-23 10:27:57", "license": "2", "title": "Brown coffee", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/133707242_a07e435776_o.jpg", "secret": "a07e435776", "media": "photo", "latitude": "0", "id": "133707242", "tags": ""}, {"datetaken": "2006-04-23 10:28:13", "license": "2", "title": "Sugar and light", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/133707427_fdc9ad7641_o.jpg", "secret": "fdc9ad7641", "media": "photo", "latitude": "0", "id": "133707427", "tags": ""}, {"datetaken": "2006-04-23 10:50:38", "license": "2", "title": "Bricklane's pastries", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/133707665_4df85b037c_o.jpg", "secret": "4df85b037c", "media": "photo", "latitude": "0", "id": "133707665", "tags": ""}, {"datetaken": "2006-04-23 11:25:36", "license": "2", "title": "Almost an indian", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/133707884_dd4c5a872c_o.jpg", "secret": "dd4c5a872c", "media": "photo", "latitude": "0", "id": "133707884", "tags": ""}, {"datetaken": "2006-04-23 11:26:42", "license": "2", "title": "Wheelchair power", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/133708065_685e3b65c4_o.jpg", "secret": "685e3b65c4", "media": "photo", "latitude": "0", "id": "133708065", "tags": ""}, {"datetaken": "2006-04-23 11:26:56", "license": "2", "title": "Solitary runner", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/133708377_ffc820c97f_o.jpg", "secret": "ffc820c97f", "media": "photo", "latitude": "0", "id": "133708377", "tags": ""}, {"datetaken": "2006-04-23 11:45:34", "license": "2", "title": "London bridge (i)", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/133708572_cd0ad0907e_o.jpg", "secret": "cd0ad0907e", "media": "photo", "latitude": "0", "id": "133708572", "tags": ""}, {"datetaken": "2006-04-23 11:45:44", "license": "2", "title": "London bridge (ii)", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/133708806_543d1b7cfc_o.jpg", "secret": "543d1b7cfc", "media": "photo", "latitude": "0", "id": "133708806", "tags": ""}, {"datetaken": "2006-04-23 12:41:33", "license": "2", "title": "Free the rats", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/133709195_4e433a6e43_o.jpg", "secret": "4e433a6e43", "media": "photo", "latitude": "0", "id": "133709195", "tags": "rat banksy"}, {"datetaken": "2006-04-23 15:51:04", "license": "2", "title": "Run home now", "text": "", "album_id": "72057594115071974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/133709549_fd9096dd99_o.jpg", "secret": "fd9096dd99", "media": "photo", "latitude": "0", "id": "133709549", "tags": ""}, {"datetaken": "2005-04-01 18:18:41", "license": "5", "title": "Back street, Venice", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8138852_14dd84180a_o.jpg", "secret": "14dd84180a", "media": "photo", "latitude": "0", "id": "8138852", "tags": "venice italy bluelist"}, {"datetaken": "2005-04-01 18:18:41", "license": "5", "title": "Damn birds, San Marco", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8138855_c2cdcd467e_o.jpg", "secret": "c2cdcd467e", "media": "photo", "latitude": "0", "id": "8138855", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:18:41", "license": "5", "title": "Bridge of Sighs", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8138854_eb206253da_o.jpg", "secret": "eb206253da", "media": "photo", "latitude": "0", "id": "8138854", "tags": "venice italy bluelist"}, {"datetaken": "2005-04-01 18:18:41", "license": "5", "title": "Back canal, Venice", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8138851_fa4f8aa43b_o.jpg", "secret": "fa4f8aa43b", "media": "photo", "latitude": "0", "id": "8138851", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:18:41", "license": "5", "title": "Back canal scene", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8138850_9033da6d34_o.jpg", "secret": "9033da6d34", "media": "photo", "latitude": "0", "id": "8138850", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:18:41", "license": "5", "title": "Ambulance", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8138849_e5f9db41a3_o.jpg", "secret": "e5f9db41a3", "media": "photo", "latitude": "0", "id": "8138849", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:25:54", "license": "5", "title": "Deadend from the other side", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8139394_bf45872089_o.jpg", "secret": "bf45872089", "media": "photo", "latitude": "0", "id": "8139394", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:25:54", "license": "5", "title": "Even in Venice...", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8139395_a7b41dd9ca_o.jpg", "secret": "a7b41dd9ca", "media": "photo", "latitude": "0", "id": "8139395", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:25:54", "license": "5", "title": "Furniture delivery boat", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8139396_74d134cf40_o.jpg", "secret": "74d134cf40", "media": "photo", "latitude": "0", "id": "8139396", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:25:54", "license": "5", "title": "Grand Canal", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8139397_fb08330641_o.jpg", "secret": "fb08330641", "media": "photo", "latitude": "0", "id": "8139397", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:25:54", "license": "5", "title": "Guess where", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8139398_4563a8153e_o.jpg", "secret": "4563a8153e", "media": "photo", "latitude": "0", "id": "8139398", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:25:54", "license": "5", "title": "Lots of street parking", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8139399_85e6dc913f_o.jpg", "secret": "85e6dc913f", "media": "photo", "latitude": "0", "id": "8139399", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:32:17", "license": "5", "title": "Square, Venice", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8139990_21274920d8_o.jpg", "secret": "21274920d8", "media": "photo", "latitude": "0", "id": "8139990", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:32:17", "license": "5", "title": "Square scene, Venice", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8139989_b2068bae4f_o.jpg", "secret": "b2068bae4f", "media": "photo", "latitude": "0", "id": "8139989", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:32:17", "license": "5", "title": "San Marco", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8139988_2583321932_o.jpg", "secret": "2583321932", "media": "photo", "latitude": "0", "id": "8139988", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:32:17", "license": "5", "title": "Produce market", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8139987_d447eb4f30_o.jpg", "secret": "d447eb4f30", "media": "photo", "latitude": "0", "id": "8139987", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:32:17", "license": "5", "title": "Murano", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8139985_5c08f9c75c_o.jpg", "secret": "5c08f9c75c", "media": "photo", "latitude": "0", "id": "8139985", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:32:17", "license": "5", "title": "Porter, Venice", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8139986_39603f212b_o.jpg", "secret": "39603f212b", "media": "photo", "latitude": "0", "id": "8139986", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:39:15", "license": "5", "title": "Yet another small square", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8140631_429a155d02_o.jpg", "secret": "429a155d02", "media": "photo", "latitude": "0", "id": "8140631", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:39:15", "license": "5", "title": "World's most expensive coffee", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8140630_123e0f96f1_o.jpg", "secret": "123e0f96f1", "media": "photo", "latitude": "0", "id": "8140630", "tags": "venice italy"}, {"datetaken": "2005-04-01 18:39:15", "license": "5", "title": "Winnipeg veg dealer in Venice", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8140629_d009d6d558_o.jpg", "secret": "d009d6d558", "media": "photo", "latitude": "0", "id": "8140629", "tags": "venice italy bluelist"}, {"datetaken": "2005-04-01 18:39:15", "license": "5", "title": "Venetian deadend", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8140628_957e42e509_o.jpg", "secret": "957e42e509", "media": "photo", "latitude": "0", "id": "8140628", "tags": "venice italy bluelist"}, {"datetaken": "2005-04-01 18:39:15", "license": "5", "title": "Tight angle church, Venice", "text": "", "album_id": "202700", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8140627_d3959682e6_o.jpg", "secret": "d3959682e6", "media": "photo", "latitude": "0", "id": "8140627", "tags": "venice italy"}, {"datetaken": "2005-05-01 00:15:27", "license": "1", "title": "NBA Playoffs", "text": "", "album_id": "287464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/11716483_715dcf1e66_o.jpg", "secret": "715dcf1e66", "media": "photo", "latitude": "0", "id": "11716483", "tags": "cameraphone dilomay05 television coach sanantoniotx"}, {"datetaken": "2005-05-01 00:29:02", "license": "1", "title": "Late night AM radio", "text": "", "album_id": "287464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/11717916_1f58950b52_o.jpg", "secret": "1f58950b52", "media": "photo", "latitude": "0", "id": "11717916", "tags": "cameraphone radio bose buttons electronics dilomay05 sanantoniotx"}, {"datetaken": "2005-05-01 12:12:24", "license": "1", "title": "Morning.", "text": "", "album_id": "287464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/11792880_57b69f554a_o.jpg", "secret": "57b69f554a", "media": "photo", "latitude": "0", "id": "11792880", "tags": "cameraphone dilomay05 coffee morning sanantoniotx"}, {"datetaken": "2005-05-01 14:06:29", "license": "1", "title": "St. Anthony", "text": "", "album_id": "287464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/11897966_1e5cf3817f_o.jpg", "secret": "1e5cf3817f", "media": "photo", "latitude": "0", "id": "11897966", "tags": "dilomay05 sanantoniotx statue stoneface"}, {"datetaken": "2005-05-01 14:15:34", "license": "1", "title": "Yolanda", "text": "", "album_id": "287464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/11897967_ed9a3c688f_o.jpg", "secret": "ed9a3c688f", "media": "photo", "latitude": "0", "id": "11897967", "tags": "dilomay05 sanantoniotx yolanda stonefaces"}, {"datetaken": "2005-05-01 15:29:10", "license": "1", "title": "San Antonio River", "text": "", "album_id": "287464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/11897968_9188c47b47_o.jpg", "secret": "9188c47b47", "media": "photo", "latitude": "0", "id": "11897968", "tags": "dilomay05 sanantoniotx river bridge city water"}, {"datetaken": "2005-05-01 15:56:01", "license": "1", "title": "tunnel", "text": "", "album_id": "287464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/11897969_1da4a75ef8_o.jpg", "secret": "1da4a75ef8", "media": "photo", "latitude": "0", "id": "11897969", "tags": "dilomay05 sanantoniotx riverwalk portal tunnel glimpse"}, {"datetaken": "2005-05-01 16:04:01", "license": "1", "title": "Steeple", "text": "", "album_id": "287464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/11897970_85a7ce4452_o.jpg", "secret": "85a7ce4452", "media": "photo", "latitude": "0", "id": "11897970", "tags": "dilomay05 sanantoniotx church steeple riverwalk trees"}, {"datetaken": "2005-05-01 16:15:16", "license": "1", "title": "Samurai Sunday", "text": "", "album_id": "287464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/11832726_e448826d14_o.jpg", "secret": "e448826d14", "media": "photo", "latitude": "0", "id": "11832726", "tags": "cameraphone dilomay05 manga sanantoniotx waiting"}, {"datetaken": "2005-05-01 16:31:45", "license": "1", "title": "The Alamo", "text": "", "album_id": "287464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/11897971_f36fa56c8f_o.jpg", "secret": "f36fa56c8f", "media": "photo", "latitude": "0", "id": "11897971", "tags": "dilomay05 sanantoniotx alamo bleachers"}, {"datetaken": "2007-11-30 16:40:03", "license": "5", "title": "St. Johannis Bell", "text": "", "album_id": "72157603348987515", "longitude": "10.571068", "url_o": "https://farm3.staticflickr.com/2201/2078153417_27f1b5f6c1_o.jpg", "secret": "81fe59ed9b", "media": "photo", "latitude": "49.303237", "id": "2078153417", "tags": "church bell ansbach"}, {"datetaken": "2007-11-30 16:51:40", "license": "5", "title": "St. Gumbertus", "text": "", "album_id": "72157603348987515", "longitude": "10.572849", "url_o": "https://farm3.staticflickr.com/2120/2078943824_321a9f3c96_o.jpg", "secret": "d8b0768e1b", "media": "photo", "latitude": "49.303090", "id": "2078943824", "tags": "church ansbach"}, {"datetaken": "2007-11-30 16:51:53", "license": "5", "title": "St. Gumbertus Church", "text": "", "album_id": "72157603348987515", "longitude": "10.572849", "url_o": "https://farm3.staticflickr.com/2309/2078944562_d7c245a6f2_o.jpg", "secret": "cf9a630a26", "media": "photo", "latitude": "49.303090", "id": "2078944562", "tags": "christmas church christmasmarket ansbach"}, {"datetaken": "2007-11-30 16:52:18", "license": "5", "title": "Passage between church towers", "text": "", "album_id": "72157603348987515", "longitude": "10.571068", "url_o": "https://farm3.staticflickr.com/2353/2078155597_faf8a236f7_o.jpg", "secret": "f312d4628a", "media": "photo", "latitude": "49.303237", "id": "2078155597", "tags": "medieval ansbach"}, {"datetaken": "2007-11-30 16:54:29", "license": "5", "title": "Town walls", "text": "", "album_id": "72157603348987515", "longitude": "10.571208", "url_o": "https://farm3.staticflickr.com/2055/2078946160_cd0777284d_o.jpg", "secret": "a24d54ae09", "media": "photo", "latitude": "49.303817", "id": "2078946160", "tags": "bridge medieval ansbach redzat"}, {"datetaken": "2007-11-30 16:54:50", "license": "5", "title": "Medieval Town Center of Ansbach", "text": "", "album_id": "72157603348987515", "longitude": "10.571154", "url_o": "https://farm3.staticflickr.com/2298/2078157153_12ae8ed6d1_o.jpg", "secret": "ac68334158", "media": "photo", "latitude": "49.302915", "id": "2078157153", "tags": "architecture medieval ansbach"}, {"datetaken": "2007-11-30 17:16:02", "license": "5", "title": "Altar of the Ansbach Synagogue", "text": "", "album_id": "72157603348987515", "longitude": "10.571057", "url_o": "https://farm3.staticflickr.com/2380/2078947746_1fb67f0b35_o.jpg", "secret": "3e459a2e1a", "media": "photo", "latitude": "49.301271", "id": "2078947746", "tags": "synagogue altar ansbach"}, {"datetaken": "2007-11-30 17:50:29", "license": "5", "title": "Kaspar-Hauser Column", "text": "", "album_id": "72157603348987515", "longitude": "10.581614", "url_o": "https://farm3.staticflickr.com/2394/2078948442_83b995650c_o.jpg", "secret": "a1fc4c8902", "media": "photo", "latitude": "49.302215", "id": "2078948442", "tags": "ansbach"}, {"datetaken": "2007-11-30 17:53:58", "license": "5", "title": "Kaspar-Hauser Column", "text": "", "album_id": "72157603348987515", "longitude": "10.581614", "url_o": "https://farm3.staticflickr.com/2007/2078949420_e5da8c1233_o.jpg", "secret": "2710f6f703", "media": "photo", "latitude": "49.302215", "id": "2078949420", "tags": "ansbach kasparhauser"}, {"datetaken": "2007-11-30 18:08:20", "license": "5", "title": "Ansbach Coat of Arms", "text": "", "album_id": "72157603348987515", "longitude": "10.572752", "url_o": "https://farm3.staticflickr.com/2358/2078160167_008f457bd3_o.jpg", "secret": "cf0742b4de", "media": "photo", "latitude": "49.302789", "id": "2078160167", "tags": "coatofarms ansbach"}, {"datetaken": "2007-12-02 11:38:18", "license": "2", "title": "P1010056", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2193/2079045953_0f98ea82e3_o.jpg", "secret": "8995fe6ab9", "media": "photo", "latitude": "0", "id": "2079045953", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:39:58", "license": "2", "title": "P1010058", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2311/2079836234_93cbe0e779_o.jpg", "secret": "040cfb1d00", "media": "photo", "latitude": "0", "id": "2079836234", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:40:21", "license": "2", "title": "P1010062", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2347/2079837028_5d914f0404_o.jpg", "secret": "aa89806908", "media": "photo", "latitude": "0", "id": "2079837028", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:40:40", "license": "2", "title": "P1010063", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2206/2079050721_78d42f3f16_o.jpg", "secret": "6f3c527f45", "media": "photo", "latitude": "0", "id": "2079050721", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:40:58", "license": "2", "title": "P1010065", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2219/2079051333_0e27f75253_o.jpg", "secret": "4b773b6c6f", "media": "photo", "latitude": "0", "id": "2079051333", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:41:14", "license": "2", "title": "P1010069", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2065/2079051925_5ccee245bf_o.jpg", "secret": "9e99132726", "media": "photo", "latitude": "0", "id": "2079051925", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:41:32", "license": "2", "title": "P1010073", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2083/2079052481_fc1123d43c_o.jpg", "secret": "f06c83db90", "media": "photo", "latitude": "0", "id": "2079052481", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:41:48", "license": "2", "title": "P1010074", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2038/2079053083_6c092a4980_o.jpg", "secret": "902dc88dd9", "media": "photo", "latitude": "0", "id": "2079053083", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:42:07", "license": "2", "title": "P1010079", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2091/2079840558_7aa07570d3_o.jpg", "secret": "5f952761bd", "media": "photo", "latitude": "0", "id": "2079840558", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:42:26", "license": "2", "title": "P1010083", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2171/2079054475_9eed77ba57_o.jpg", "secret": "54385fa062", "media": "photo", "latitude": "0", "id": "2079054475", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:42:43", "license": "2", "title": "P1010087", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2333/2079055049_6e00e8fac4_o.jpg", "secret": "261bbd9991", "media": "photo", "latitude": "0", "id": "2079055049", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:43:02", "license": "2", "title": "P1010089", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2127/2079842378_4380009fae_o.jpg", "secret": "bf24377bd3", "media": "photo", "latitude": "0", "id": "2079842378", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:43:21", "license": "2", "title": "P1010096", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2415/2079056385_398cedfd81_o.jpg", "secret": "c3a03d8fde", "media": "photo", "latitude": "0", "id": "2079056385", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:43:39", "license": "2", "title": "P1010100", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2135/2079843638_eaedb63467_o.jpg", "secret": "61c94eacbe", "media": "photo", "latitude": "0", "id": "2079843638", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:43:56", "license": "2", "title": "P1010102", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2376/2079844244_224edc62ec_o.jpg", "secret": "684c5c4758", "media": "photo", "latitude": "0", "id": "2079844244", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:44:12", "license": "2", "title": "P1010110", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2140/2079844792_a3b57883f6_o.jpg", "secret": "d0d8a33241", "media": "photo", "latitude": "0", "id": "2079844792", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:44:29", "license": "2", "title": "P1010122", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2347/2079058743_6d87a59dae_o.jpg", "secret": "761d3a60ca", "media": "photo", "latitude": "0", "id": "2079058743", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:52:31", "license": "2", "title": "P1010127", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2347/2079076011_ea2197d7f4_o.jpg", "secret": "9379a7b682", "media": "photo", "latitude": "0", "id": "2079076011", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:52:49", "license": "2", "title": "P1010134", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2020/2079863366_98dac256a3_o.jpg", "secret": "c8157f2f1d", "media": "photo", "latitude": "0", "id": "2079863366", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:53:07", "license": "2", "title": "P1010178", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2165/2079077221_6ca2195b3a_o.jpg", "secret": "389f4f140c", "media": "photo", "latitude": "0", "id": "2079077221", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:53:25", "license": "2", "title": "P1010179", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2030/2079077881_08e134d57c_o.jpg", "secret": "b30f2c7104", "media": "photo", "latitude": "0", "id": "2079077881", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:53:42", "license": "2", "title": "P1010191", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2038/2079865146_c05eff9d42_o.jpg", "secret": "506bf533dc", "media": "photo", "latitude": "0", "id": "2079865146", "tags": "market hougang"}, {"datetaken": "2007-12-02 11:53:58", "license": "2", "title": "P1010193", "text": "", "album_id": "72157603352064009", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2118/2079079007_e3f7ce7a3b_o.jpg", "secret": "0de3cb867f", "media": "photo", "latitude": "0", "id": "2079079007", "tags": "market hougang"}, {"datetaken": "2012-02-01 12:20:49", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7025/6810315695_8b80b75675_o.jpg", "secret": "3631872734", "media": "photo", "latitude": "0", "id": "6810315695", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2012-02-01 12:21:39", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7174/6810315997_2ab8b492b1_o.jpg", "secret": "25f7603449", "media": "photo", "latitude": "0", "id": "6810315997", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2012-02-01 12:22:01", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7014/6810316277_5d01179deb_o.jpg", "secret": "17085bafb8", "media": "photo", "latitude": "0", "id": "6810316277", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2012-02-01 12:22:35", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7164/6810316545_24eb3f62ab_o.jpg", "secret": "852a63d748", "media": "photo", "latitude": "0", "id": "6810316545", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2012-02-01 12:22:49", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7014/6810316861_b612c4e5fe_o.jpg", "secret": "b5031eb957", "media": "photo", "latitude": "0", "id": "6810316861", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2012-02-01 12:25:25", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7172/6810317169_6e7e58a543_o.jpg", "secret": "cf67b2140e", "media": "photo", "latitude": "0", "id": "6810317169", "tags": "hawaii honolulu pier pier38 nicos nicosatpier38 restaurant"}, {"datetaken": "2012-02-01 12:26:43", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7025/6810317413_b4fc365be4_o.jpg", "secret": "fde55bc228", "media": "photo", "latitude": "0", "id": "6810317413", "tags": "hawaii honolulu pier pier38 nicos nicosatpier38 restaurant"}, {"datetaken": "2012-02-01 12:34:17", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7016/6810317629_712ca70448_o.jpg", "secret": "fd2cd4deef", "media": "photo", "latitude": "0", "id": "6810317629", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2012-02-01 12:34:48", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7034/6810317845_0896215f16_o.jpg", "secret": "8e9254267d", "media": "photo", "latitude": "0", "id": "6810317845", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2012-02-01 12:35:14", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7161/6810318091_8b11d3ee9b_o.jpg", "secret": "5c29e972c0", "media": "photo", "latitude": "0", "id": "6810318091", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2012-02-01 12:36:28", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7026/6810318425_a5cfe4d3d1_o.jpg", "secret": "5c0be20a42", "media": "photo", "latitude": "0", "id": "6810318425", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2012-02-01 12:53:49", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7005/6810318693_e61a826cbb_o.jpg", "secret": "8b4ec7cfa4", "media": "photo", "latitude": "0", "id": "6810318693", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2012-02-01 12:54:09", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7028/6810319015_547070b8ae_o.jpg", "secret": "bd0fe228aa", "media": "photo", "latitude": "0", "id": "6810319015", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2012-02-01 12:54:26", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7023/6810319333_2f32e819c5_o.jpg", "secret": "4fb43a5787", "media": "photo", "latitude": "0", "id": "6810319333", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2012-02-01 12:54:41", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7158/6810319587_7e1ef026f2_o.jpg", "secret": "461afe1ef9", "media": "photo", "latitude": "0", "id": "6810319587", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2012-02-01 12:55:07", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7170/6810319815_251a503c1b_o.jpg", "secret": "ed3f0c2483", "media": "photo", "latitude": "0", "id": "6810319815", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2012-02-01 13:08:30", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7165/6810320053_23d439b538_o.jpg", "secret": "b17a5d2f53", "media": "photo", "latitude": "0", "id": "6810320053", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2012-02-01 13:08:47", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7141/6810320367_80339c3b09_o.jpg", "secret": "b5912feb46", "media": "photo", "latitude": "0", "id": "6810320367", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2012-02-01 13:09:05", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7019/6810320611_f579ff5ee0_o.jpg", "secret": "22f3275be8", "media": "photo", "latitude": "0", "id": "6810320611", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2012-02-01 13:09:38", "license": "3", "title": "Nico's at Pier 38", "text": "", "album_id": "72157629152279849", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7022/6810320885_6feaa63565_o.jpg", "secret": "d24ae51a9f", "media": "photo", "latitude": "0", "id": "6810320885", "tags": "hawaii restaurant pier honolulu nicos pier38 nicosatpier38"}, {"datetaken": "2007-11-24 17:32:02", "license": "3", "title": "Lubeck", "text": "", "album_id": "72157603364850497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2068/2083067929_b1f5dd9623_o.jpg", "secret": "0290305214", "media": "photo", "latitude": "0", "id": "2083067929", "tags": "germany lubeck"}, {"datetaken": "2007-11-24 17:48:58", "license": "3", "title": "Lubeck", "text": "", "album_id": "72157603364850497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2242/2083068105_63b2dd804e_o.jpg", "secret": "de71fb5a43", "media": "photo", "latitude": "0", "id": "2083068105", "tags": "germany lubeck"}, {"datetaken": "2007-11-24 17:54:57", "license": "3", "title": "Lubeck", "text": "", "album_id": "72157603364850497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2236/2083068267_e060f8e33f_o.jpg", "secret": "2f14bc1651", "media": "photo", "latitude": "0", "id": "2083068267", "tags": "germany lubeck"}, {"datetaken": "2007-11-24 17:56:28", "license": "3", "title": "Lubeck", "text": "", "album_id": "72157603364850497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2196/2083852338_6492e393af_o.jpg", "secret": "2322796225", "media": "photo", "latitude": "0", "id": "2083852338", "tags": "germany lubeck"}, {"datetaken": "2007-11-24 17:57:26", "license": "3", "title": "Lubeck", "text": "", "album_id": "72157603364850497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2225/2083852510_806c1f4b2c_o.jpg", "secret": "460918b035", "media": "photo", "latitude": "0", "id": "2083852510", "tags": "germany lubeck"}, {"datetaken": "2007-11-24 18:04:09", "license": "3", "title": "Lubeck", "text": "", "album_id": "72157603364850497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2388/2083068745_bc51fcb7da_o.jpg", "secret": "eaac1b89e0", "media": "photo", "latitude": "0", "id": "2083068745", "tags": "germany lubeck"}, {"datetaken": "2007-11-24 18:05:25", "license": "3", "title": "Lubeck", "text": "", "album_id": "72157603364850497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2271/2083068919_669b28cf67_o.jpg", "secret": "e5931d58dd", "media": "photo", "latitude": "0", "id": "2083068919", "tags": "germany lubeck"}, {"datetaken": "2007-11-24 18:11:35", "license": "3", "title": "Lubeck", "text": "", "album_id": "72157603364850497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2342/2083069031_9091069b36_o.jpg", "secret": "5931d22494", "media": "photo", "latitude": "0", "id": "2083069031", "tags": "germany lubeck"}, {"datetaken": "2007-11-24 18:28:34", "license": "3", "title": "Lubeck. Christmas market.", "text": "", "album_id": "72157603364850497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2091/2083853114_e35d3cb510_o.jpg", "secret": "deaee6165f", "media": "photo", "latitude": "0", "id": "2083853114", "tags": "christmas germany market lubeck"}, {"datetaken": "2007-11-24 18:59:18", "license": "3", "title": "Lubeck at night. Docs.", "text": "", "album_id": "72157603364850497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2143/2083853270_27206d3ee9_o.jpg", "secret": "65fcf21234", "media": "photo", "latitude": "0", "id": "2083853270", "tags": "night germany lubeck docs"}, {"datetaken": "2007-11-24 19:22:45", "license": "3", "title": "Lubeck at night", "text": "", "album_id": "72157603364850497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2317/2083853418_211eee0f55_o.jpg", "secret": "d18d73b14a", "media": "photo", "latitude": "0", "id": "2083853418", "tags": "night germany lubeck"}, {"datetaken": "2007-11-24 19:24:54", "license": "3", "title": "Lubeck at night", "text": "", "album_id": "72157603364850497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2198/2083853624_88f8c34e42_o.jpg", "secret": "d3c165354a", "media": "photo", "latitude": "0", "id": "2083853624", "tags": "night germany lubeck"}, {"datetaken": "2007-11-24 19:25:53", "license": "3", "title": "Lubeck at night", "text": "", "album_id": "72157603364850497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2017/2083069751_9df6b4fee9_o.jpg", "secret": "e74706a610", "media": "photo", "latitude": "0", "id": "2083069751", "tags": "night germany lubeck"}, {"datetaken": "2007-12-01 18:01:41", "license": "3", "title": "Frankfurt -1", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2313/2085235918_e75a8a567b_o.jpg", "secret": "a191da78bd", "media": "photo", "latitude": "50.111937", "id": "2085235918", "tags": "building architecture germany europe frankfurt 2007 nizam uddin nizamuddin nizamsphoto"}, {"datetaken": "2007-12-01 18:03:01", "license": "3", "title": "Frankfurt -2", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2083/2085236902_1bbf652263_o.jpg", "secret": "003cd017d4", "media": "photo", "latitude": "50.111937", "id": "2085236902", "tags": "building architecture germany europe frankfurt 2007 nizam uddin nizamuddin nizamsphoto"}, {"datetaken": "2007-12-01 18:04:13", "license": "3", "title": "Frankfurt -3", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2290/2085239140_15d61e9502_o.jpg", "secret": "52f62b1b65", "media": "photo", "latitude": "50.111937", "id": "2085239140", "tags": "building architecture germany europe frankfurt 2007 nizam uddin nizamuddin nizamsphoto"}, {"datetaken": "2007-12-01 19:55:32", "license": "3", "title": "Frankfurt -4", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2278/2085241012_5e81db7244_o.jpg", "secret": "0af862fda6", "media": "photo", "latitude": "50.111937", "id": "2085241012", "tags": "christmas germany europe market frankfurt 2007 nizam uddin nizamuddin market\u201d nizamsphoto"}, {"datetaken": "2007-12-01 19:58:47", "license": "3", "title": "Frankfurt -5", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2265/2084462481_e4f166fb04_o.jpg", "secret": "2b6dea99f3", "media": "photo", "latitude": "50.111937", "id": "2084462481", "tags": "christmas shop germany europe candy market frankfurt sweets 2007 nizam uddin nizamuddin market\u201d nizamsphoto"}, {"datetaken": "2007-12-01 20:01:19", "license": "3", "title": "Frankfurt -6", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2280/2085248306_8953b031f1_o.jpg", "secret": "59aace4d95", "media": "photo", "latitude": "50.111937", "id": "2085248306", "tags": "building architecture germany europe frankfurt 2007 nizam uddin nizamuddin nizamsphoto"}, {"datetaken": "2007-12-01 20:05:28", "license": "3", "title": "Frankfurt -7", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2104/2085249414_bfef329441_o.jpg", "secret": "3bccaf6424", "media": "photo", "latitude": "50.111937", "id": "2085249414", "tags": "christmas germany europe market frankfurt 2007 nizam uddin nizamuddin nizamsphoto"}, {"datetaken": "2007-12-01 20:26:37", "license": "3", "title": "Frankfurt -8", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2224/2085251678_971c78e765_o.jpg", "secret": "0cec6d1780", "media": "photo", "latitude": "50.111937", "id": "2085251678", "tags": "bridge water river germany europe frankfurt bank 2007 nizam uddin nizamuddin nizamsphoto"}, {"datetaken": "2007-12-01 20:27:27", "license": "3", "title": "Frankfurt -9", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2281/2085254876_8a271abef3_o.jpg", "secret": "b9dfd5b2a5", "media": "photo", "latitude": "50.111937", "id": "2085254876", "tags": "bridge water river germany europe frankfurt bank 2007 nizam uddin nizamuddin nizamsphoto"}, {"datetaken": "2007-12-01 20:31:29", "license": "3", "title": "Frankfurt -12", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2031/2084482205_de9e1d3e57_o.jpg", "secret": "82fcca625f", "media": "photo", "latitude": "50.111937", "id": "2084482205", "tags": "bridge water river germany europe frankfurt bank 2007 nizam uddin nizamuddin nizamsphoto"}, {"datetaken": "2007-12-01 20:31:51", "license": "3", "title": "Frankfurt -13", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2184/2084484941_705cdcd664_o.jpg", "secret": "d534592a4f", "media": "photo", "latitude": "50.111937", "id": "2084484941", "tags": "building architecture germany europe frankfurt 2007 nizam uddin nizamuddin nizamsphoto"}, {"datetaken": "2007-12-01 20:32:57", "license": "3", "title": "Frankfurt -14", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2395/2084487853_fb481b0be9_o.jpg", "secret": "7685915444", "media": "photo", "latitude": "50.111937", "id": "2084487853", "tags": "building architecture germany europe frankfurt 2007 nizam uddin nizamuddin nizamsphoto"}, {"datetaken": "2007-12-01 20:35:51", "license": "3", "title": "Frankfurt -15", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2188/2084490917_b9b8da1ab5_o.jpg", "secret": "7a54cc092c", "media": "photo", "latitude": "50.111937", "id": "2084490917", "tags": "building architecture germany europe frankfurt 2007 nizam uddin nizamuddin nizamsphoto"}, {"datetaken": "2007-12-02 18:26:38", "license": "3", "title": "Frankfurt -16", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2112/2085280412_83755b458f_o.jpg", "secret": "0767dc80a8", "media": "photo", "latitude": "50.111937", "id": "2085280412", "tags": "christmas building architecture germany europe market frankfurt 2007 nizam uddin nizamuddin market\u201d nizamsphoto"}, {"datetaken": "2007-12-02 18:27:50", "license": "3", "title": "Frankfurt -17", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2245/2084503081_d0037afd0f_o.jpg", "secret": "c91816d633", "media": "photo", "latitude": "50.111937", "id": "2084503081", "tags": "christmas germany europe market frankfurt 2007 nizam uddin nizamuddin market\u201d nizamsphoto"}, {"datetaken": "2007-12-02 18:34:26", "license": "3", "title": "Frankfurt -18", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2197/2085291246_2322c14aa7_o.jpg", "secret": "b92b056ed0", "media": "photo", "latitude": "50.111937", "id": "2085291246", "tags": "christmas germany europe market frankfurt 2007 nizam uddin nizamuddin market\u201d nizamsphoto"}, {"datetaken": "2007-12-02 18:34:39", "license": "3", "title": "Frankfurt -19", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2065/2084511487_c91838c3db_o.jpg", "secret": "14b67ab190", "media": "photo", "latitude": "50.111937", "id": "2084511487", "tags": "christmas germany europe market frankfurt 2007 nizam uddin nizamuddin market\u201d nizamsphoto"}, {"datetaken": "2007-12-02 18:34:52", "license": "3", "title": "Frankfurt -20", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2283/2085299808_854510f576_o.jpg", "secret": "da0a30bf8a", "media": "photo", "latitude": "50.111937", "id": "2085299808", "tags": "christmas germany europe market frankfurt 2007 nizam uddin nizamuddin market\u201d nizamsphoto"}, {"datetaken": "2007-12-02 18:35:30", "license": "3", "title": "Frankfurt -21", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2374/2085304452_55872c2339_o.jpg", "secret": "2fc92ab207", "media": "photo", "latitude": "50.111937", "id": "2085304452", "tags": "germany europe frankfurt 2007 nizam uddin nizamuddin nizamsphoto"}, {"datetaken": "2007-12-02 18:35:48", "license": "3", "title": "Frankfurt -22", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2190/2084526815_1576480d88_o.jpg", "secret": "6dcd551ee4", "media": "photo", "latitude": "50.111937", "id": "2084526815", "tags": "building architecture germany europe frankfurt 2007 nizam uddin nizamuddin nizamsphoto"}, {"datetaken": "2007-12-02 18:36:17", "license": "3", "title": "Frankfurt -23", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2398/2084529973_339c5cf881_o.jpg", "secret": "6fcf539463", "media": "photo", "latitude": "50.111937", "id": "2084529973", "tags": "christmas germany europe market frankfurt 2007 nizam uddin nizamuddin market\u201d nizamsphoto"}, {"datetaken": "2007-12-02 18:37:08", "license": "3", "title": "Frankfurt -24", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2401/2084533587_a171219cae_o.jpg", "secret": "d779b0a566", "media": "photo", "latitude": "50.111937", "id": "2084533587", "tags": "christmas germany europe market frankfurt 2007 nizam uddin nizamuddin market\u201d nizamsphoto"}, {"datetaken": "2007-12-02 21:39:13", "license": "3", "title": "Frankfurt -25", "text": "", "album_id": "72157603365865172", "longitude": "8.683404", "url_o": "https://farm3.staticflickr.com/2008/2084537435_271f8af017_o.jpg", "secret": "138880e84a", "media": "photo", "latitude": "50.111937", "id": "2084537435", "tags": "germany europe frankfurt 2007 nizam uddin nizamuddin nizamsphoto"}, {"datetaken": "2012-02-04 03:22:13", "license": "2", "title": "February in the City", "text": "", "album_id": "72157629177580209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7142/6820190623_16bcab81c1_o.jpg", "secret": "1488167b74", "media": "photo", "latitude": "0", "id": "6820190623", "tags": ""}, {"datetaken": "2012-02-04 11:51:16", "license": "2", "title": "February in the City", "text": "", "album_id": "72157629177580209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7006/6820190843_0430cd3c4e_o.jpg", "secret": "45b662da5a", "media": "photo", "latitude": "0", "id": "6820190843", "tags": ""}, {"datetaken": "2012-02-04 12:02:46", "license": "2", "title": "February in the City", "text": "", "album_id": "72157629177580209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7162/6820191115_3043658e89_o.jpg", "secret": "ee3520457a", "media": "photo", "latitude": "0", "id": "6820191115", "tags": ""}, {"datetaken": "2012-02-04 12:04:38", "license": "2", "title": "February in the City", "text": "", "album_id": "72157629177580209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7025/6820191781_dcf8092431_o.jpg", "secret": "e55f7b537a", "media": "photo", "latitude": "0", "id": "6820191781", "tags": ""}, {"datetaken": "2012-02-04 12:18:19", "license": "2", "title": "February in the City", "text": "", "album_id": "72157629177580209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7011/6820192807_412958d372_o.jpg", "secret": "ee16746275", "media": "photo", "latitude": "0", "id": "6820192807", "tags": ""}, {"datetaken": "2012-02-04 12:53:19", "license": "2", "title": "February in the City", "text": "", "album_id": "72157629177580209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6820194325_bab00b9774_o.jpg", "secret": "ac2895cf8a", "media": "photo", "latitude": "0", "id": "6820194325", "tags": ""}, {"datetaken": "2012-02-04 12:54:40", "license": "2", "title": "February in the City", "text": "", "album_id": "72157629177580209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6820194865_e5e1ed7e94_o.jpg", "secret": "252062287c", "media": "photo", "latitude": "0", "id": "6820194865", "tags": ""}, {"datetaken": "2012-02-04 13:04:23", "license": "2", "title": "February in the City", "text": "", "album_id": "72157629177580209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7166/6820196191_ddd4bf4422_o.jpg", "secret": "c7a17943d0", "media": "photo", "latitude": "0", "id": "6820196191", "tags": ""}, {"datetaken": "2012-02-04 13:04:37", "license": "2", "title": "February in the City", "text": "", "album_id": "72157629177580209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6820196513_1aacb012b1_o.jpg", "secret": "871cace397", "media": "photo", "latitude": "0", "id": "6820196513", "tags": ""}, {"datetaken": "2012-02-04 13:04:50", "license": "2", "title": "February in the City", "text": "", "album_id": "72157629177580209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7160/6820196935_2a4676ede7_o.jpg", "secret": "1979419fed", "media": "photo", "latitude": "0", "id": "6820196935", "tags": ""}, {"datetaken": "2012-02-04 13:19:48", "license": "2", "title": "February in the City", "text": "", "album_id": "72157629177580209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7028/6820197755_2baf03c1be_o.jpg", "secret": "6ba2cbf493", "media": "photo", "latitude": "0", "id": "6820197755", "tags": ""}, {"datetaken": "2012-02-04 14:15:37", "license": "2", "title": "February in the City", "text": "", "album_id": "72157629177580209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7142/6820198655_e60a1c7a43_o.jpg", "secret": "2814a1eb65", "media": "photo", "latitude": "0", "id": "6820198655", "tags": ""}, {"datetaken": "2012-02-04 15:03:25", "license": "2", "title": "February in the City", "text": "", "album_id": "72157629177580209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7035/6820199441_b025ffa1c6_o.jpg", "secret": "e702656249", "media": "photo", "latitude": "0", "id": "6820199441", "tags": ""}, {"datetaken": "2012-02-04 15:03:27", "license": "2", "title": "February in the City", "text": "", "album_id": "72157629177580209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7143/6820200197_d018aec0a8_o.jpg", "secret": "e1431fb1fd", "media": "photo", "latitude": "0", "id": "6820200197", "tags": ""}, {"datetaken": "2012-02-04 15:09:24", "license": "2", "title": "February in the City", "text": "", "album_id": "72157629177580209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7010/6820200579_d1021eb0cf_o.jpg", "secret": "51a7b5cea2", "media": "photo", "latitude": "0", "id": "6820200579", "tags": ""}, {"datetaken": "2012-02-04 15:32:47", "license": "2", "title": "February in the City", "text": "", "album_id": "72157629177580209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7014/6820201755_fa785a3a26_o.jpg", "secret": "723429738f", "media": "photo", "latitude": "0", "id": "6820201755", "tags": ""}, {"datetaken": "2012-02-04 15:34:14", "license": "2", "title": "February in the City", "text": "", "album_id": "72157629177580209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6820202765_948f1806cc_o.jpg", "secret": "bb68499a73", "media": "photo", "latitude": "0", "id": "6820202765", "tags": ""}, {"datetaken": "2010-02-26 19:13:03", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4407327234_e43923df61_o.jpg", "secret": "399874ee18", "media": "photo", "latitude": "0", "id": "4407327234", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 19:16:56", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4406562233_0a380c315f_o.jpg", "secret": "551a7b4000", "media": "photo", "latitude": "0", "id": "4406562233", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 20:00:44", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2709/4407330164_8d16f8d83c_o.jpg", "secret": "fd1e78330f", "media": "photo", "latitude": "0", "id": "4407330164", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 20:00:49", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4407331300_0fcdeef5ea_o.jpg", "secret": "e4cbd503ce", "media": "photo", "latitude": "0", "id": "4407331300", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 20:05:34", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4407332832_1336c6e8d4_o.jpg", "secret": "241d48d545", "media": "photo", "latitude": "0", "id": "4407332832", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 20:07:54", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4406568539_674db818db_o.jpg", "secret": "faa1aef582", "media": "photo", "latitude": "0", "id": "4406568539", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 20:11:02", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4406570805_60e1046ef0_o.jpg", "secret": "e1e2c4db73", "media": "photo", "latitude": "0", "id": "4406570805", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 20:11:45", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4406572795_b97f166932_o.jpg", "secret": "b903f8545b", "media": "photo", "latitude": "0", "id": "4406572795", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 20:15:30", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4406574841_9831e93e09_o.jpg", "secret": "9715bd23b4", "media": "photo", "latitude": "0", "id": "4406574841", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 20:16:45", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4407342758_db2af919f8_o.jpg", "secret": "9635b50573", "media": "photo", "latitude": "0", "id": "4407342758", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 20:17:05", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2745/4406578873_a19569249b_o.jpg", "secret": "67a00971a1", "media": "photo", "latitude": "0", "id": "4406578873", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 20:17:17", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2758/4407345948_0798d78242_o.jpg", "secret": "c88df483fd", "media": "photo", "latitude": "0", "id": "4407345948", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 20:27:05", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4407347156_76db1c17ba_o.jpg", "secret": "3b735a3883", "media": "photo", "latitude": "0", "id": "4407347156", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 20:28:39", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4407348774_debb286f4c_o.jpg", "secret": "499dc05d2f", "media": "photo", "latitude": "0", "id": "4407348774", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 20:36:54", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4407350334_4bba3776b4_o.jpg", "secret": "1146a66284", "media": "photo", "latitude": "0", "id": "4407350334", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 20:44:36", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2450/4407352052_c72ca95d7f_o.jpg", "secret": "7092d6f4db", "media": "photo", "latitude": "0", "id": "4407352052", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 20:46:39", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4406588667_43b5f9b9fc_o.jpg", "secret": "21bd4a35a5", "media": "photo", "latitude": "0", "id": "4406588667", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 21:08:16", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4406590323_daa30635c0_o.jpg", "secret": "8ca19ae8a9", "media": "photo", "latitude": "0", "id": "4406590323", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 21:54:31", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2694/4407358000_3e0d33a910_o.jpg", "secret": "8f2a7acfd6", "media": "photo", "latitude": "0", "id": "4407358000", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 22:06:24", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4407359468_682199617d_o.jpg", "secret": "8bc6277187", "media": "photo", "latitude": "0", "id": "4407359468", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 22:21:55", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2653/4406596051_d81549d1eb_o.jpg", "secret": "ef974cc72b", "media": "photo", "latitude": "0", "id": "4406596051", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 22:48:52", "license": "4", "title": "hilo tsunami (2-27-10)", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4407363842_97e2f8969d_o.jpg", "secret": "b78dc1b967", "media": "photo", "latitude": "0", "id": "4407363842", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 23:12:00", "license": "4", "title": "still waiting", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4406599881_1e0bee5854_o.jpg", "secret": "69c54f4081", "media": "photo", "latitude": "0", "id": "4406599881", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 23:15:06", "license": "4", "title": "waiting for the wave", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4406601231_6fbcf27263_o.jpg", "secret": "0be67f2f4a", "media": "photo", "latitude": "0", "id": "4406601231", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 23:17:14", "license": "4", "title": "\"is that it?\"", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2742/4407368252_2c52cc092d_o.jpg", "secret": "1bdc142ba9", "media": "photo", "latitude": "0", "id": "4407368252", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-26 23:39:19", "license": "4", "title": "still dont see it- Hilo tsunami", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4406604593_2c28cb94f9_o.jpg", "secret": "2bdde7e11e", "media": "photo", "latitude": "0", "id": "4406604593", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-27 00:13:26", "license": "4", "title": "Mayor's copter", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/4406605865_51c1101670_o.jpg", "secret": "96d82dc4bd", "media": "photo", "latitude": "0", "id": "4406605865", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-27 01:52:35", "license": "4", "title": "civil defense", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4406607473_d20ecd2188_o.jpg", "secret": "e515e09f56", "media": "photo", "latitude": "0", "id": "4406607473", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2010-02-27 01:57:49", "license": "4", "title": "defense is over", "text": "", "album_id": "72157623430943057", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2712/4407374374_cab3a4c191_o.jpg", "secret": "674a16710c", "media": "photo", "latitude": "0", "id": "4407374374", "tags": "island hawaii michael big dot lee kanu productions org dominik walczuk"}, {"datetaken": "2005-06-04 21:32:12", "license": "3", "title": "Le March\u00e9 de l'herboriste 2005", "text": "", "album_id": "414318", "longitude": "2.470305", "url_o": "https://farm1.staticflickr.com/9/17437535_f6f484de64_o.jpg", "secret": "f6f484de64", "media": "photo", "latitude": "48.402918", "id": "17437535", "tags": "millylaforet herboriste lemarch\u00e9delherboriste wwwlemarchedelherboristefr"}, {"datetaken": "2005-06-04 21:32:12", "license": "5", "title": "Le March\u00e9 de l'herboriste 2005", "text": "", "album_id": "414318", "longitude": "2.470305", "url_o": "https://farm1.staticflickr.com/13/17437536_4a57350da7_o.jpg", "secret": "4a57350da7", "media": "photo", "latitude": "48.402918", "id": "17437536", "tags": "stand milly basilic herbes daregal aromatiques surgel\u00e9es"}, {"datetaken": "2005-06-04 21:32:12", "license": "3", "title": "Menthe poivr\u00e9e \"Mitcham Milly\"", "text": "", "album_id": "414318", "longitude": "2.470305", "url_o": "https://farm1.staticflickr.com/12/17437540_b3d663e263_o.jpg", "secret": "b3d663e263", "media": "photo", "latitude": "48.402918", "id": "17437540", "tags": "milly menthe mitcham poivr\u00e9e upcoming:event=193133"}, {"datetaken": "2005-06-04 21:42:18", "license": "4", "title": "Fleuriste Achill\u00e9a", "text": "", "album_id": "414318", "longitude": "2.470305", "url_o": "https://farm1.staticflickr.com/14/17439343_a24d8573d2_o.jpg", "secret": "a24d8573d2", "media": "photo", "latitude": "48.402918", "id": "17439343", "tags": "milly fleuriste achill\u00e9a"}, {"datetaken": "2005-06-04 21:42:18", "license": "0", "title": "Le March\u00e9 de l'herboriste", "text": "", "album_id": "414318", "longitude": "2.470305", "url_o": "https://farm1.staticflickr.com/12/17439347_09104d0597_o.jpg", "secret": "09104d0597", "media": "photo", "latitude": "48.402918", "id": "17439347", "tags": "milly \u00e9pices"}, {"datetaken": "2005-06-04 21:42:18", "license": "0", "title": "Le March\u00e9 de l'herboriste", "text": "", "album_id": "414318", "longitude": "2.470305", "url_o": "https://farm1.staticflickr.com/10/17439348_e9ffbb0b6b_o.jpg", "secret": "e9ffbb0b6b", "media": "photo", "latitude": "48.402918", "id": "17439348", "tags": "milly safran curcuma"}, {"datetaken": "2005-06-04 22:21:37", "license": "0", "title": "Le March\u00e9 de l'herboriste", "text": "", "album_id": "414318", "longitude": "2.470305", "url_o": "https://farm1.staticflickr.com/14/17445851_0d93ca11cf_o.jpg", "secret": "0d93ca11cf", "media": "photo", "latitude": "48.402918", "id": "17445851", "tags": "market halle milly"}, {"datetaken": "2005-06-04 22:21:37", "license": "0", "title": "Le March\u00e9 de l'herboriste", "text": "", "album_id": "414318", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17445852_166727460b_o.jpg", "secret": "166727460b", "media": "photo", "latitude": "0", "id": "17445852", "tags": "milly osier halle"}, {"datetaken": "2005-06-05 00:05:32", "license": "0", "title": "Le March\u00e9 de l'herboriste", "text": "", "album_id": "414318", "longitude": "2.470305", "url_o": "https://farm1.staticflickr.com/12/17461183_9d4dbbe6e7_o.jpg", "secret": "9d4dbbe6e7", "media": "photo", "latitude": "48.402918", "id": "17461183", "tags": "milly banc bois"}, {"datetaken": "2005-06-05 00:05:32", "license": "0", "title": "Le March\u00e9 de l'herboriste", "text": "", "album_id": "414318", "longitude": "2.470305", "url_o": "https://farm1.staticflickr.com/12/17461182_c7f055971e_o.jpg", "secret": "c7f055971e", "media": "photo", "latitude": "48.402918", "id": "17461182", "tags": "milly"}, {"datetaken": "2005-06-05 00:05:32", "license": "3", "title": "Coquelicots de Nemours", "text": "", "album_id": "414318", "longitude": "2.470305", "url_o": "https://farm1.staticflickr.com/10/17461184_882f1ee047_o.jpg", "secret": "882f1ee047", "media": "photo", "latitude": "48.402918", "id": "17461184", "tags": "bonbon vinaigre chocolat coquelicot liqueur confit sirop nemours upcoming:event=193133"}, {"datetaken": "2005-06-05 00:36:38", "license": "3", "title": "Beer 2.0", "text": "", "album_id": "414318", "longitude": "2.476578", "url_o": "https://farm1.staticflickr.com/13/17465339_6b8653cd0e_o.jpg", "secret": "6b8653cd0e", "media": "photo", "latitude": "48.396589", "id": "17465339", "tags": "france beer geotagged googlemaps market bistro wifi googleearth march\u00e9 milly bi\u00e8re wistro g\u00e2tine flickr2map geo:lat=48402918 geo:lon=2470305 g\u00e2tinais millynetsplazes geo:long=24765786584408 geo:lat=48396589091693"}, {"datetaken": "2005-06-05 00:36:38", "license": "0", "title": "Le March\u00e9 de l'Herboriste", "text": "", "album_id": "414318", "longitude": "2.470305", "url_o": "https://farm1.staticflickr.com/13/17465343_d08e590c37_o.jpg", "secret": "d08e590c37", "media": "photo", "latitude": "48.402918", "id": "17465343", "tags": "milly sirop menthe poivr\u00e9e"}, {"datetaken": "2005-06-05 00:36:38", "license": "3", "title": "Le March\u00e9 de l'Herboriste", "text": "", "album_id": "414318", "longitude": "2.470305", "url_o": "https://farm1.staticflickr.com/9/17465342_5653bfa1ad_o.jpg", "secret": "5653bfa1ad", "media": "photo", "latitude": "48.402918", "id": "17465342", "tags": "milly menthe essonne tisane herbier poivr\u00e9e"}, {"datetaken": "2005-06-05 01:00:59", "license": "3", "title": "Le March\u00e9 de l'Herboriste", "text": "", "album_id": "414318", "longitude": "2.470305", "url_o": "https://farm1.staticflickr.com/12/17468416_bee017b957_o.jpg", "secret": "bee017b957", "media": "photo", "latitude": "48.402918", "id": "17468416", "tags": "france geotagged plazes march\u00e9 tablier essonne herboriste millylafor\u00eat geo:long=247052907943726 geo:lat=484027320986771 upcoming:event=193133 lemarch\u00e9delherboriste"}, {"datetaken": "2007-07-27 20:09:06", "license": "1", "title": "BUSH BRACING UP", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1260/923195154_f2c9455727_o.jpg", "secret": "d4949f6b4e", "media": "photo", "latitude": "0", "id": "923195154", "tags": ""}, {"datetaken": "2007-07-27 20:09:06", "license": "1", "title": "VINTAGE CELEBRITIES", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1075/923195080_d110535c49_o.jpg", "secret": "433c42ec9b", "media": "photo", "latitude": "0", "id": "923195080", "tags": ""}, {"datetaken": "2007-07-27 20:09:08", "license": "1", "title": "TERRORIST SCARE", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1003/922348035_9cf92dae6c_o.jpg", "secret": "cbb8abbe7a", "media": "photo", "latitude": "0", "id": "922348035", "tags": ""}, {"datetaken": "2007-07-27 20:09:08", "license": "1", "title": "The White House", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1140/922348117_e24fe645cb_o.jpg", "secret": "cde0639a75", "media": "photo", "latitude": "0", "id": "922348117", "tags": ""}, {"datetaken": "2007-07-27 20:09:09", "license": "1", "title": "An Afghan woman with her child", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1347/923195546_bd204cfefa_o.jpg", "secret": "bdadbc4252", "media": "photo", "latitude": "0", "id": "923195546", "tags": ""}, {"datetaken": "2007-07-27 20:09:10", "license": "1", "title": "Face of Terror", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1068/923195666_4f9e0ba5d3_o.jpg", "secret": "23ddb5d41f", "media": "photo", "latitude": "0", "id": "923195666", "tags": ""}, {"datetaken": "2007-07-27 20:09:11", "license": "1", "title": "A call of Duty", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1122/923195758_9b922f4b98_o.jpg", "secret": "f2157dc3a8", "media": "photo", "latitude": "0", "id": "923195758", "tags": ""}, {"datetaken": "2007-07-27 20:09:11", "license": "1", "title": "A call of Duty---1", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1207/922348541_6413d00785_o.jpg", "secret": "ddb1d3cfd4", "media": "photo", "latitude": "0", "id": "922348541", "tags": ""}, {"datetaken": "2007-07-27 20:09:12", "license": "1", "title": "Women and Power.", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1437/923195906_9862dd2d50_o.jpg", "secret": "c9b4f54e43", "media": "photo", "latitude": "0", "id": "923195906", "tags": ""}, {"datetaken": "2007-07-27 20:09:13", "license": "1", "title": "Cubans and the Internet.", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1005/922348713_4acda6fca1_o.jpg", "secret": "9d51586989", "media": "photo", "latitude": "0", "id": "922348713", "tags": ""}, {"datetaken": "2007-07-27 20:09:13", "license": "1", "title": "On Guard", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1214/922348801_05ca1acd33_o.jpg", "secret": "1e94bfdf61", "media": "photo", "latitude": "0", "id": "922348801", "tags": ""}, {"datetaken": "2007-07-27 20:09:14", "license": "1", "title": "Guards Mark", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1178/922348897_09d983c125_o.jpg", "secret": "c7182544bd", "media": "photo", "latitude": "0", "id": "922348897", "tags": ""}, {"datetaken": "2007-07-27 20:09:15", "license": "1", "title": "Bendown Boutique", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1181/923196278_ff32e4b213_o.jpg", "secret": "2ee55ba96e", "media": "photo", "latitude": "0", "id": "923196278", "tags": ""}, {"datetaken": "2007-07-27 20:09:16", "license": "1", "title": "Tired But Designing.", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1399/922349099_3605425293_o.jpg", "secret": "f7a432cf84", "media": "photo", "latitude": "0", "id": "922349099", "tags": ""}, {"datetaken": "2007-07-27 20:09:17", "license": "1", "title": "Gentle Combatoirs", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1029/923196684_556224745f_o.jpg", "secret": "5d1ede3b65", "media": "photo", "latitude": "0", "id": "923196684", "tags": ""}, {"datetaken": "2007-07-27 20:09:17", "license": "1", "title": "The Pirates.", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1255/922349253_aa5f71395f_o.jpg", "secret": "77ab3e0f5c", "media": "photo", "latitude": "0", "id": "922349253", "tags": ""}, {"datetaken": "2007-07-27 20:09:18", "license": "1", "title": "Death Camp", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1055/922349481_d880c83a8f_o.jpg", "secret": "b6d5f1706f", "media": "photo", "latitude": "0", "id": "922349481", "tags": ""}, {"datetaken": "2007-07-27 20:09:19", "license": "1", "title": "Tunes of death", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1105/923196894_557a169e57_o.jpg", "secret": "98a615543b", "media": "photo", "latitude": "0", "id": "923196894", "tags": ""}, {"datetaken": "2007-07-27 20:09:20", "license": "1", "title": "Birkenau \u0093Death Gate", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1150/923196966_7f8463b227_o.jpg", "secret": "0f2361179f", "media": "photo", "latitude": "0", "id": "923196966", "tags": ""}, {"datetaken": "2007-07-27 20:09:20", "license": "1", "title": "Dead Bodies", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1036/922349837_ecd9c09378_o.jpg", "secret": "d483924d57", "media": "photo", "latitude": "0", "id": "922349837", "tags": ""}, {"datetaken": "2007-07-27 20:09:21", "license": "1", "title": "Oven for Human Bodies", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1372/923197202_36b46b32d0_o.jpg", "secret": "461d805843", "media": "photo", "latitude": "0", "id": "923197202", "tags": ""}, {"datetaken": "2007-07-27 20:09:22", "license": "1", "title": "Forced Labor at Ravensbrueck", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1368/923197324_2d3b1d06b6_o.jpg", "secret": "2f2582fcc3", "media": "photo", "latitude": "0", "id": "923197324", "tags": ""}, {"datetaken": "2007-07-27 20:09:23", "license": "1", "title": "Forced Labor at Sachsenhausen", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1216/922350195_6b8e01ef22_o.jpg", "secret": "d4530c9800", "media": "photo", "latitude": "0", "id": "922350195", "tags": ""}, {"datetaken": "2007-07-27 20:09:24", "license": "1", "title": "Corpses From Death March", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1021/922350303_c1556e8800_o.jpg", "secret": "15e81c6df9", "media": "photo", "latitude": "0", "id": "922350303", "tags": ""}, {"datetaken": "2007-07-27 20:09:25", "license": "1", "title": "Himmler the Angel of Death", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1181/923197710_49e4c2a083_o.jpg", "secret": "bb8cdeb38a", "media": "photo", "latitude": "0", "id": "923197710", "tags": ""}, {"datetaken": "2007-07-27 20:09:25", "license": "1", "title": "Inmates Await Disinfection", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1173/922350463_c41994e165_o.jpg", "secret": "f3d357292d", "media": "photo", "latitude": "0", "id": "922350463", "tags": ""}, {"datetaken": "2007-07-27 20:09:26", "license": "1", "title": "Jewish Police in Westerbork", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1178/923197900_bf71212ff5_o.jpg", "secret": "d6d81a605e", "media": "photo", "latitude": "0", "id": "923197900", "tags": ""}, {"datetaken": "2007-07-27 20:09:27", "license": "1", "title": "Jews Boarding Trains for Chelm", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1350/923197968_b3e4c93382_o.jpg", "secret": "761ee0bf9b", "media": "photo", "latitude": "0", "id": "923197968", "tags": ""}, {"datetaken": "2007-07-27 20:09:27", "license": "1", "title": "Participants in the Sobibor Up", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1234/923198100_8299f5c3dc_o.jpg", "secret": "be0883b4c6", "media": "photo", "latitude": "0", "id": "923198100", "tags": ""}, {"datetaken": "2007-07-27 20:09:28", "license": "1", "title": "Ravensbrueck Experiment on Dzi", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1118/922350897_91af9f9be4_o.jpg", "secret": "7c9c06bdd9", "media": "photo", "latitude": "0", "id": "922350897", "tags": ""}, {"datetaken": "2007-07-27 20:09:29", "license": "1", "title": "Human guinea Pigs", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1213/923198354_15baaf10fe_o.jpg", "secret": "4677636bb7", "media": "photo", "latitude": "0", "id": "923198354", "tags": ""}, {"datetaken": "2007-07-27 20:09:30", "license": "1", "title": "About to Commit Murder", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1099/922351163_d853188ca8_o.jpg", "secret": "8f92b43d39", "media": "photo", "latitude": "0", "id": "922351163", "tags": ""}, {"datetaken": "2007-07-27 20:09:31", "license": "1", "title": "Americans Guard Nuremberg Defe", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1346/923198586_127fc18daf_o.jpg", "secret": "8f78ad1494", "media": "photo", "latitude": "0", "id": "923198586", "tags": ""}, {"datetaken": "2007-07-27 20:09:32", "license": "1", "title": "Hitler's 2nd in command", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1268/923198684_69ff5efd59_o.jpg", "secret": "d2910788fa", "media": "photo", "latitude": "0", "id": "923198684", "tags": ""}, {"datetaken": "2007-07-27 20:09:32", "license": "1", "title": "Killers on trial", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1365/923198776_74d5f23ea2_o.jpg", "secret": "5d6d69bf5b", "media": "photo", "latitude": "0", "id": "923198776", "tags": ""}, {"datetaken": "2007-07-27 20:09:33", "license": "1", "title": "Dead Bodies---1", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1231/922351609_c04f57559a_o.jpg", "secret": "ce5f4e6e99", "media": "photo", "latitude": "0", "id": "922351609", "tags": ""}, {"datetaken": "2007-07-27 20:09:40", "license": "1", "title": "achi7", "text": "", "album_id": "72157601047470846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1387/923199916_17a55abcc7_o.jpg", "secret": "94e146ec72", "media": "photo", "latitude": "0", "id": "923199916", "tags": ""}, {"datetaken": "2006-12-06 22:16:00", "license": "3", "title": "Vienna, Austria", "text": "", "album_id": "72157594460914672", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/346600682_917d4d68bb_o.jpg", "secret": "917d4d68bb", "media": "photo", "latitude": "0", "id": "346600682", "tags": "vienna"}, {"datetaken": "2006-12-06 22:48:38", "license": "3", "title": "Vienna, Austria", "text": "", "album_id": "72157594460914672", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/346600716_3568847b96_o.jpg", "secret": "3568847b96", "media": "photo", "latitude": "0", "id": "346600716", "tags": "vienna"}, {"datetaken": "2006-12-06 22:56:21", "license": "3", "title": "Vienna, Austria", "text": "", "album_id": "72157594460914672", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/346600771_a29ce763f5_o.jpg", "secret": "a29ce763f5", "media": "photo", "latitude": "0", "id": "346600771", "tags": "vienna"}, {"datetaken": "2006-12-06 22:56:52", "license": "3", "title": "Vienna, Austria", "text": "", "album_id": "72157594460914672", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/346600813_bcfd62fb85_o.jpg", "secret": "bcfd62fb85", "media": "photo", "latitude": "0", "id": "346600813", "tags": "vienna"}, {"datetaken": "2006-12-06 22:58:10", "license": "3", "title": "Vienna, Austria", "text": "", "album_id": "72157594460914672", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/346600874_3028e53620_o.jpg", "secret": "3028e53620", "media": "photo", "latitude": "0", "id": "346600874", "tags": "vienna"}, {"datetaken": "2006-12-06 23:05:57", "license": "3", "title": "Front Display Window of a Chocolatier in Vienna", "text": "", "album_id": "72157594460914672", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/346600938_c27aa5c11d_o.jpg", "secret": "c27aa5c11d", "media": "photo", "latitude": "0", "id": "346600938", "tags": "vienna"}, {"datetaken": "2006-12-06 23:07:12", "license": "3", "title": "Vienna, Austria", "text": "", "album_id": "72157594460914672", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/346600977_b82e1823d2_o.jpg", "secret": "b82e1823d2", "media": "photo", "latitude": "0", "id": "346600977", "tags": "vienna"}, {"datetaken": "2006-12-06 23:20:33", "license": "3", "title": "Rathaus in Vienna, Austria", "text": "", "album_id": "72157594460914672", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/346601013_8c7c08d2de_o.jpg", "secret": "8c7c08d2de", "media": "photo", "latitude": "0", "id": "346601013", "tags": "vienna"}, {"datetaken": "2006-12-07 12:06:09", "license": "3", "title": "Christmas Markets in Vienna, Austria", "text": "", "album_id": "72157594460914672", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/346601054_b70bc49874_o.jpg", "secret": "b70bc49874", "media": "photo", "latitude": "0", "id": "346601054", "tags": "vienna"}, {"datetaken": "2006-12-07 13:03:45", "license": "3", "title": "Vienna, Austria", "text": "", "album_id": "72157594460914672", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/346601113_c86ca34ba6_o.jpg", "secret": "c86ca34ba6", "media": "photo", "latitude": "0", "id": "346601113", "tags": "vienna"}, {"datetaken": "2006-12-07 15:23:17", "license": "3", "title": "Vienna, Austria", "text": "", "album_id": "72157594460914672", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/346601149_bfdecb7a42_o.jpg", "secret": "bfdecb7a42", "media": "photo", "latitude": "0", "id": "346601149", "tags": "vienna"}, {"datetaken": "2009-11-25 03:03:41", "license": "3", "title": "Art Installation in Civic Center.", "text": "", "album_id": "72157623365952228", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2689/4335570566_15880c4c82_o.jpg", "secret": "cf7fc01ef4", "media": "photo", "latitude": "0", "id": "4335570566", "tags": "sanfrancisco art cityhall installation civiccenter"}, {"datetaken": "2009-11-25 03:03:52", "license": "3", "title": "", "text": "", "album_id": "72157623365952228", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4335570882_61ea7f4e98_o.jpg", "secret": "4dbbce8582", "media": "photo", "latitude": "0", "id": "4335570882", "tags": "sanfrancisco art cityhall installation civiccenter"}, {"datetaken": "2009-11-25 03:05:08", "license": "3", "title": "Birds nest sculpture and sun", "text": "", "album_id": "72157623365952228", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4334829337_fc5348944b_o.jpg", "secret": "ccfd73cb94", "media": "photo", "latitude": "0", "id": "4334829337", "tags": "sanfrancisco art cityhall installation civiccenter"}, {"datetaken": "2009-11-25 03:05:43", "license": "3", "title": "", "text": "", "album_id": "72157623365952228", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4334829951_a9ba8c8f5e_o.jpg", "secret": "625452292d", "media": "photo", "latitude": "0", "id": "4334829951", "tags": "sanfrancisco art cityhall installation civiccenter"}, {"datetaken": "2009-11-25 03:09:31", "license": "3", "title": "Civic Center Farmer's Market!", "text": "", "album_id": "72157623365952228", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4334830909_b35761c0be_o.jpg", "secret": "b090886527", "media": "photo", "latitude": "0", "id": "4334830909", "tags": "sanfrancisco farmersmarket civiccenter"}, {"datetaken": "2009-11-25 03:09:36", "license": "3", "title": "", "text": "", "album_id": "72157623365952228", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4334831283_92b81a2a20_o.jpg", "secret": "734de6f553", "media": "photo", "latitude": "0", "id": "4334831283", "tags": "sanfrancisco farmersmarket civiccenter"}, {"datetaken": "2009-11-25 03:11:51", "license": "3", "title": "Potatoes!", "text": "", "album_id": "72157623365952228", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4335573480_741d72d812_o.jpg", "secret": "1f34e7cdc5", "media": "photo", "latitude": "0", "id": "4335573480", "tags": "sanfrancisco vegetables farmersmarket potato civiccenter"}, {"datetaken": "2009-11-25 03:11:58", "license": "3", "title": "Vending", "text": "", "album_id": "72157623365952228", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2683/4335573784_9a00a95409_o.jpg", "secret": "f309098893", "media": "photo", "latitude": "0", "id": "4335573784", "tags": "sanfrancisco vegetables farmersmarket yam civiccenter"}, {"datetaken": "2009-11-25 03:16:54", "license": "3", "title": "Brussels Sprouts!", "text": "", "album_id": "72157623365952228", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4334832569_7e4d57412a_o.jpg", "secret": "f4e9de0f86", "media": "photo", "latitude": "0", "id": "4334832569", "tags": "sanfrancisco vegetables farmersmarket civiccenter brusselssprouts"}, {"datetaken": "2009-11-25 03:51:50", "license": "3", "title": "Ferry Building", "text": "", "album_id": "72157623365952228", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2698/4334832867_2f232638ce_o.jpg", "secret": "c98278661c", "media": "photo", "latitude": "0", "id": "4334832867", "tags": "sanfrancisco embarcadero ferrybuilding"}, {"datetaken": "2009-11-25 03:52:17", "license": "3", "title": "", "text": "", "album_id": "72157623365952228", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4335574928_e18f36f442_o.jpg", "secret": "7a66a40f5c", "media": "photo", "latitude": "0", "id": "4335574928", "tags": "sanfrancisco embarcadero ferrybuilding"}, {"datetaken": "2010-02-03 12:25:18", "license": "2", "title": "town market", "text": "", "album_id": "72157623366569792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4334938413_bbae890552_o.jpg", "secret": "45ec21b4ec", "media": "photo", "latitude": "0", "id": "4334938413", "tags": ""}, {"datetaken": "2010-02-03 12:27:05", "license": "2", "title": "town market2", "text": "", "album_id": "72157623366569792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4334937829_56ef342ec8_o.jpg", "secret": "b63b4a148e", "media": "photo", "latitude": "0", "id": "4334937829", "tags": ""}, {"datetaken": "2010-02-03 15:20:47", "license": "2", "title": "mountain farm", "text": "", "album_id": "72157623366569792", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2762/4335682276_f757cb7a6f_o.jpg", "secret": "9b7b714714", "media": "photo", "latitude": "0", "id": "4335682276", "tags": ""}, {"datetaken": "2010-02-03 15:21:32", "license": "2", "title": "mountains", "text": "", "album_id": "72157623366569792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4335682616_49582f52c0_o.jpg", "secret": "7495a87187", "media": "photo", "latitude": "0", "id": "4335682616", "tags": ""}, {"datetaken": "2010-02-03 15:38:57", "license": "2", "title": "lush valleys2", "text": "", "album_id": "72157623366569792", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4334940743_df07c363e0_o.jpg", "secret": "7392cab05c", "media": "photo", "latitude": "0", "id": "4334940743", "tags": ""}, {"datetaken": "2010-02-03 15:40:12", "license": "2", "title": "typical house", "text": "", "album_id": "72157623366569792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4334937165_216369c1b0_o.jpg", "secret": "4d95d9b912", "media": "photo", "latitude": "0", "id": "4334937165", "tags": ""}, {"datetaken": "2010-02-03 15:41:41", "license": "2", "title": "lush valleys", "text": "", "album_id": "72157623366569792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4334941335_5964910984_o.jpg", "secret": "cec3cecb2d", "media": "photo", "latitude": "0", "id": "4334941335", "tags": ""}, {"datetaken": "2010-02-03 16:19:13", "license": "2", "title": "Crossing the mountains", "text": "", "album_id": "72157623366569792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4335684636_4461e88742_o.jpg", "secret": "e1915d6a86", "media": "photo", "latitude": "0", "id": "4335684636", "tags": ""}, {"datetaken": "2010-02-03 17:22:20", "license": "2", "title": "Bois Caimen Main Temple", "text": "", "album_id": "72157623366569792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4335685096_bcf21e849d_o.jpg", "secret": "7155d3c227", "media": "photo", "latitude": "0", "id": "4335685096", "tags": ""}, {"datetaken": "2010-02-03 21:25:10", "license": "2", "title": "inside voodoo temple", "text": "", "album_id": "72157623366569792", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4335683954_605273d18c_o.jpg", "secret": "cbced9c7b8", "media": "photo", "latitude": "0", "id": "4335683954", "tags": ""}, {"datetaken": "2010-02-03 21:29:05", "license": "2", "title": "praying in temple", "text": "", "album_id": "72157623366569792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4334938719_feef3cfe06_o.jpg", "secret": "f228225c68", "media": "photo", "latitude": "0", "id": "4334938719", "tags": ""}, {"datetaken": "2010-02-04 07:47:47", "license": "2", "title": "flooded area", "text": "", "album_id": "72157623366569792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4334941983_768dc2cb73_o.jpg", "secret": "cbfd8cce1d", "media": "photo", "latitude": "0", "id": "4334941983", "tags": ""}, {"datetaken": "2010-02-04 08:12:41", "license": "2", "title": "mud house", "text": "", "album_id": "72157623366569792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4335681702_5c95cd0768_o.jpg", "secret": "566a1abfd5", "media": "photo", "latitude": "0", "id": "4335681702", "tags": ""}, {"datetaken": "2010-02-04 08:13:04", "license": "2", "title": "Rice Field, Haiti", "text": "", "album_id": "72157623366569792", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2784/4335679242_65bbf45c51_o.jpg", "secret": "67c1092d59", "media": "photo", "latitude": "0", "id": "4335679242", "tags": ""}, {"datetaken": "2010-01-28 19:03:51", "license": "3", "title": "Mt. Rainier", "text": "", "album_id": "72157623375467685", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4332006810_b56b5698a4_o.jpg", "secret": "5e4ca56a3e", "media": "photo", "latitude": "0", "id": "4332006810", "tags": ""}, {"datetaken": "2010-01-28 19:04:16", "license": "3", "title": "Mt. Rainier", "text": "", "album_id": "72157623375467685", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4332007916_894dfb0dea_o.jpg", "secret": "2994b6c091", "media": "photo", "latitude": "0", "id": "4332007916", "tags": ""}, {"datetaken": "2010-01-28 19:04:20", "license": "3", "title": "Mt. Rainier", "text": "", "album_id": "72157623375467685", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4331270621_34294fc7d5_o.jpg", "secret": "81d18befa4", "media": "photo", "latitude": "0", "id": "4331270621", "tags": ""}, {"datetaken": "2010-01-28 19:04:57", "license": "3", "title": "Mt. Rainier", "text": "", "album_id": "72157623375467685", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4332009802_ebc2be9d34_o.jpg", "secret": "8913e7306c", "media": "photo", "latitude": "0", "id": "4332009802", "tags": ""}, {"datetaken": "2010-01-29 15:54:53", "license": "3", "title": "Seattle Skyline", "text": "", "album_id": "72157623375467685", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2762/4335064615_bb84f2ce18_o.jpg", "secret": "e5e9b3d6fe", "media": "photo", "latitude": "0", "id": "4335064615", "tags": "seattle skyline washington space needle"}, {"datetaken": "2010-01-29 16:12:04", "license": "3", "title": "Pike's Market", "text": "", "album_id": "72157623375467685", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4335065397_87542d75a5_o.jpg", "secret": "9fe5016617", "media": "photo", "latitude": "0", "id": "4335065397", "tags": "seattle downtown market pike"}, {"datetaken": "2010-01-29 16:12:10", "license": "3", "title": "Street Market", "text": "", "album_id": "72157623375467685", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4335809672_fe9af5182b_o.jpg", "secret": "0847830f8e", "media": "photo", "latitude": "0", "id": "4335809672", "tags": ""}, {"datetaken": "2010-01-29 16:12:50", "license": "3", "title": "Corner of Pike & Pike", "text": "", "album_id": "72157623375467685", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4335810714_0de37075b6_o.jpg", "secret": "610abdfddf", "media": "photo", "latitude": "0", "id": "4335810714", "tags": ""}, {"datetaken": "2010-01-29 16:14:31", "license": "3", "title": "Silhouette Couple", "text": "", "album_id": "72157623375467685", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4335811836_aa174555e3_o.jpg", "secret": "15591bfbe5", "media": "photo", "latitude": "0", "id": "4335811836", "tags": ""}, {"datetaken": "2010-01-29 16:16:42", "license": "3", "title": "Gum Placement", "text": "", "album_id": "72157623375467685", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2689/4335812894_44323807ea_o.jpg", "secret": "362658e6b9", "media": "photo", "latitude": "0", "id": "4335812894", "tags": ""}, {"datetaken": "2010-01-29 16:18:25", "license": "3", "title": "Gum Wall", "text": "", "album_id": "72157623375467685", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4335814318_8298324772_o.jpg", "secret": "1cedd6e9b5", "media": "photo", "latitude": "0", "id": "4335814318", "tags": "seattle gum james pikesmarket katelyn"}, {"datetaken": "2010-01-29 16:40:26", "license": "3", "title": "The First Starbucks", "text": "", "album_id": "72157623375467685", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4335071867_072f6fdfef_o.jpg", "secret": "f7b41ca31a", "media": "photo", "latitude": "0", "id": "4335071867", "tags": ""}, {"datetaken": "2010-01-29 16:43:09", "license": "3", "title": "Piano Man, black and white", "text": "", "album_id": "72157623375467685", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4344983283_322e3c26c8_o.jpg", "secret": "8b845083e0", "media": "photo", "latitude": "0", "id": "4344983283", "tags": "seattle man color piano selective"}, {"datetaken": "2010-01-29 16:43:09", "license": "3", "title": "Pianist on Pike Pl", "text": "", "album_id": "72157623375467685", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2690/4335073137_d526fb11cc_o.jpg", "secret": "029a4e1e83", "media": "photo", "latitude": "0", "id": "4335073137", "tags": ""}, {"datetaken": "2010-01-29 16:57:42", "license": "3", "title": "Fruit Stand", "text": "", "album_id": "72157623375467685", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4335074029_d2630ac1c9_o.jpg", "secret": "25c5a6311a", "media": "photo", "latitude": "0", "id": "4335074029", "tags": ""}, {"datetaken": "2012-01-25 08:05:54", "license": "4", "title": "Pigs and Trash", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7018/6829187067_1a30e882cd_o.jpg", "secret": "b02414fc10", "media": "photo", "latitude": "0", "id": "6829187067", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-25 11:28:08", "license": "4", "title": "View of New Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7148/6829189083_5d6923c4cd_o.jpg", "secret": "f503ed784f", "media": "photo", "latitude": "0", "id": "6829189083", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-25 13:17:09", "license": "4", "title": "Bengali Sweets", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7157/6829190711_1a8ca1e9b5_o.jpg", "secret": "531f31a121", "media": "photo", "latitude": "0", "id": "6829190711", "tags": "food india kolkata westbengal"}, {"datetaken": "2012-01-26 09:36:34", "license": "4", "title": "Men Carrying Flowers at Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7023/6829193623_1ce525583e_o.jpg", "secret": "d17f3ba2c6", "media": "photo", "latitude": "0", "id": "6829193623", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 09:37:05", "license": "4", "title": "Republic Day Decorations", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7024/6829196053_74941795c7_o.jpg", "secret": "e5fcdf9877", "media": "photo", "latitude": "0", "id": "6829196053", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 09:38:18", "license": "4", "title": "Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7148/6829198199_c5fa8ef3a0_o.jpg", "secret": "21b26d96d2", "media": "photo", "latitude": "0", "id": "6829198199", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 09:40:27", "license": "4", "title": "Man Carrying Flowers at Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7172/6829201023_6f1d787cea_o.jpg", "secret": "d4b4c8c09b", "media": "photo", "latitude": "0", "id": "6829201023", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 09:48:19", "license": "4", "title": "Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7143/6829203243_94945dc2cb_o.jpg", "secret": "6e712229f2", "media": "photo", "latitude": "0", "id": "6829203243", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 09:49:50", "license": "4", "title": "Strings of Marigolds at Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7010/6829205209_ecb93599b1_o.jpg", "secret": "5ac882b92f", "media": "photo", "latitude": "0", "id": "6829205209", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 09:50:11", "license": "4", "title": "Vendors Pushing Through the Crowds at Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7157/6829207135_f5ed3b9bbd_o.jpg", "secret": "75f05b9f46", "media": "photo", "latitude": "0", "id": "6829207135", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 09:51:14", "license": "4", "title": "Vendors Taking a Break at Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7166/6829209005_85be1a1e45_o.jpg", "secret": "fb6cd3097d", "media": "photo", "latitude": "0", "id": "6829209005", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 09:52:04", "license": "4", "title": "Republic Day Decorations at Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7024/6829211527_38f5766dce_o.jpg", "secret": "fb9270733c", "media": "photo", "latitude": "0", "id": "6829211527", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 09:53:00", "license": "4", "title": "Man About to Pour a Bucket of Water on His Head at Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7016/6829213479_64d9a2bf99_o.jpg", "secret": "d159b54f82", "media": "photo", "latitude": "0", "id": "6829213479", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 09:53:28", "license": "4", "title": "Orange Marigolds at Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7151/6829215945_bc3ed837ba_o.jpg", "secret": "bdbd18be03", "media": "photo", "latitude": "0", "id": "6829215945", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 09:54:48", "license": "4", "title": "Shrine at Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7002/6829219427_24a47b8af4_o.jpg", "secret": "c3432b6d17", "media": "photo", "latitude": "0", "id": "6829219427", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 09:58:00", "license": "4", "title": "Balancing Act at Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7144/6829222321_88852bfd04_o.jpg", "secret": "0d6e67ff35", "media": "photo", "latitude": "0", "id": "6829222321", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 09:59:52", "license": "4", "title": "Marigolds at Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7028/6829229171_30e72cdd67_o.jpg", "secret": "e5c9ca9928", "media": "photo", "latitude": "0", "id": "6829229171", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 10:00:25", "license": "4", "title": "Weighing Flowers at Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7030/6829236287_22e5c0cfb9_o.jpg", "secret": "4d31bd2ea7", "media": "photo", "latitude": "0", "id": "6829236287", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 10:01:21", "license": "4", "title": "Smiles", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6829241367_9c62dc6de0_o.jpg", "secret": "c624b316ab", "media": "photo", "latitude": "0", "id": "6829241367", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 10:04:02", "license": "4", "title": "Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7145/6829247327_d6dd988f8d_o.jpg", "secret": "d4f63cdd10", "media": "photo", "latitude": "0", "id": "6829247327", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 10:04:28", "license": "4", "title": "Shoppers at Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7143/6829252011_566b82c9a5_o.jpg", "secret": "b8898f0e25", "media": "photo", "latitude": "0", "id": "6829252011", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 10:09:55", "license": "4", "title": "View of Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7154/6829257761_ecb0acc2a2_o.jpg", "secret": "4ede95b244", "media": "photo", "latitude": "0", "id": "6829257761", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 10:10:49", "license": "4", "title": "Howrah Flower Market", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7163/6829263241_5e10136c45_o.jpg", "secret": "8091968aaf", "media": "photo", "latitude": "0", "id": "6829263241", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 10:55:50", "license": "4", "title": "College Street Books", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7002/6829270965_f84d831a7e_o.jpg", "secret": "170c087a52", "media": "photo", "latitude": "0", "id": "6829270965", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 12:03:02", "license": "4", "title": "Walking the Tightrope in the Maidan", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7169/6829274943_ed7bc63760_o.jpg", "secret": "6a2cd5606e", "media": "photo", "latitude": "0", "id": "6829274943", "tags": "india kolkata westbengal"}, {"datetaken": "2012-01-26 12:06:24", "license": "4", "title": "Victoria Memorial", "text": "", "album_id": "72157629210282443", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7004/6829279139_015c710a07_o.jpg", "secret": "c5b3a3e94b", "media": "photo", "latitude": "0", "id": "6829279139", "tags": "india kolkata westbengal"}, {"datetaken": "2011-12-10 09:19:54", "license": "1", "title": "20111210-2", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7024/6556869399_ca7c6d329a_o.jpg", "secret": "57623599d4", "media": "photo", "latitude": "0", "id": "6556869399", "tags": "florida clown auburndale marketworld"}, {"datetaken": "2011-12-10 09:21:04", "license": "1", "title": "20111210-6", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7018/6543310295_edf3bc8786_o.jpg", "secret": "9a179e89e0", "media": "photo", "latitude": "0", "id": "6543310295", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 09:21:12", "license": "1", "title": "20111210-7", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7172/6487681803_1706c97cbc_o.jpg", "secret": "cc4343446a", "media": "photo", "latitude": "0", "id": "6487681803", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 09:22:14", "license": "1", "title": "20111210-9", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7001/6606666361_0cd8aca470_o.jpg", "secret": "daedbdb6ab", "media": "photo", "latitude": "0", "id": "6606666361", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 09:22:49", "license": "1", "title": "20111210-10", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7006/6606667245_b67a6e7abe_o.jpg", "secret": "dff5210848", "media": "photo", "latitude": "0", "id": "6606667245", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 09:25:28", "license": "1", "title": "20111210-11", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7142/6556870141_844dcece76_o.jpg", "secret": "a0c73f595a", "media": "photo", "latitude": "0", "id": "6556870141", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 09:25:41", "license": "1", "title": "20111210-13", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7151/6623779053_0aca2e6199_o.jpg", "secret": "33db7d7a4e", "media": "photo", "latitude": "0", "id": "6623779053", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 09:26:23", "license": "1", "title": "20111210-14", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7011/6608628597_5a2d60eb45_o.jpg", "secret": "177947eb65", "media": "photo", "latitude": "0", "id": "6608628597", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 09:27:59", "license": "1", "title": "20111210-15", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7004/6487680359_b6ea01dcdc_o.jpg", "secret": "b101b2e580", "media": "photo", "latitude": "0", "id": "6487680359", "tags": "florida marley auburndale marketworld"}, {"datetaken": "2011-12-10 09:29:59", "license": "1", "title": "20111210-16", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7158/6556870737_042e46e3eb_o.jpg", "secret": "2afea5cc3c", "media": "photo", "latitude": "0", "id": "6556870737", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 09:35:21", "license": "1", "title": "20111210-20", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7158/6624255773_dfcd4a2157_o.jpg", "secret": "9c4d3760b2", "media": "photo", "latitude": "0", "id": "6624255773", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 09:38:13", "license": "1", "title": "20111210-22", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6624263193_e2762f6a87_o.jpg", "secret": "0e39566d2e", "media": "photo", "latitude": "0", "id": "6624263193", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 09:38:59", "license": "1", "title": "20111210-23", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7174/6624269775_6dcee56a62_o.jpg", "secret": "80a224fc4d", "media": "photo", "latitude": "0", "id": "6624269775", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 09:41:37", "license": "1", "title": "20111210-25", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7173/6543310835_a1c097a0f4_o.jpg", "secret": "9d789b517f", "media": "photo", "latitude": "0", "id": "6543310835", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 09:43:33", "license": "1", "title": "20111210-29", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7162/6624271545_a84b7bf7a8_o.jpg", "secret": "e449e15822", "media": "photo", "latitude": "0", "id": "6624271545", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 09:49:17", "license": "1", "title": "20111210-34", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7027/6623781549_4225d40315_o.jpg", "secret": "9553119783", "media": "photo", "latitude": "0", "id": "6623781549", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 09:56:33", "license": "1", "title": "20111210-37", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7163/6558644183_ba56fa565d_o.jpg", "secret": "4b772534a3", "media": "photo", "latitude": "0", "id": "6558644183", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 09:56:55", "license": "1", "title": "20111210-39", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7029/6487561107_63499667c6_o.jpg", "secret": "a101f3b558", "media": "photo", "latitude": "0", "id": "6487561107", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 10:00:54", "license": "1", "title": "20111210-40", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7158/6558644855_e7831c51a7_o.jpg", "secret": "12549c5afe", "media": "photo", "latitude": "0", "id": "6558644855", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 10:03:56", "license": "1", "title": "20111210-43", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7028/6608629707_f84ef5d032_o.jpg", "secret": "2d80b882d1", "media": "photo", "latitude": "0", "id": "6608629707", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 10:05:24", "license": "1", "title": "20111210-44", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7171/6487690857_306528f66f_o.jpg", "secret": "f00da132a0", "media": "photo", "latitude": "0", "id": "6487690857", "tags": "santa christmas florida auburndale marketworld"}, {"datetaken": "2011-12-10 10:09:23", "license": "1", "title": "20111210-45", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7153/6623785489_b500bdf6ab_o.jpg", "secret": "37db3c2348", "media": "photo", "latitude": "0", "id": "6623785489", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 10:10:35", "license": "1", "title": "20111210-46", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7170/6558645367_9402a2edd1_o.jpg", "secret": "356603c2fc", "media": "photo", "latitude": "0", "id": "6558645367", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 10:11:00", "license": "1", "title": "20111210-47", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7025/6655593469_521a1231d1_o.jpg", "secret": "a4694111e7", "media": "photo", "latitude": "0", "id": "6655593469", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 10:11:07", "license": "1", "title": "20111210-48", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7029/6624401255_3dc5e59e79_o.jpg", "secret": "eeaef3eed9", "media": "photo", "latitude": "0", "id": "6624401255", "tags": "florida tigers auburndale marketworld"}, {"datetaken": "2011-12-10 10:11:56", "license": "1", "title": "20111210-49", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7160/6558645669_905c4d8029_o.jpg", "secret": "bd884ae3da", "media": "photo", "latitude": "0", "id": "6558645669", "tags": "florida detroit redwings auburndale marketworld"}, {"datetaken": "2011-12-10 10:27:59", "license": "1", "title": "20111210-53", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7175/6655654129_a4b932f87d_o.jpg", "secret": "751e222273", "media": "photo", "latitude": "0", "id": "6655654129", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 10:28:41", "license": "1", "title": "20111210-55", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7021/6558646127_f2a1582bd3_o.jpg", "secret": "27ea435ceb", "media": "photo", "latitude": "0", "id": "6558646127", "tags": "florida auburndale marketworld"}, {"datetaken": "2011-12-10 10:29:00", "license": "1", "title": "20111210-56", "text": "", "album_id": "72157628360313137", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7171/6624246769_1d051b967c_o.jpg", "secret": "fe7abbcbdf", "media": "photo", "latitude": "0", "id": "6624246769", "tags": "florida auburndale marketworld"}, {"datetaken": "2007-01-09 10:37:14", "license": "2", "title": "IMG_6347.JPG", "text": "", "album_id": "72157594470595742", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/352347329_7eb3e23be3_o.jpg", "secret": "7eb3e23be3", "media": "photo", "latitude": "0", "id": "352347329", "tags": "sf sanfrancisco apple macworld"}, {"datetaken": "2007-01-09 11:04:29", "license": "2", "title": "IMG_6383.JPG", "text": "", "album_id": "72157594470595742", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/352331189_4699507a1d_o.jpg", "secret": "4699507a1d", "media": "photo", "latitude": "0", "id": "352331189", "tags": "sf sanfrancisco apple maxtor macworld"}, {"datetaken": "2007-01-09 11:10:11", "license": "2", "title": "IMG_6384.JPG", "text": "", "album_id": "72157594470595742", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/352330648_97f15ec10a_o.jpg", "secret": "97f15ec10a", "media": "photo", "latitude": "0", "id": "352330648", "tags": "sf sanfrancisco apple macworld appletv"}, {"datetaken": "2007-01-09 11:13:23", "license": "2", "title": "IMG_6391.JPG", "text": "", "album_id": "72157594470595742", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/352331368_2b744b8c26_o.jpg", "secret": "2b744b8c26", "media": "photo", "latitude": "0", "id": "352331368", "tags": "sf sanfrancisco apple leopard macworld"}, {"datetaken": "2007-01-09 11:13:26", "license": "2", "title": "IMG_6392.JPG", "text": "", "album_id": "72157594470595742", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/352333804_3cdda996da_o.jpg", "secret": "3cdda996da", "media": "photo", "latitude": "0", "id": "352333804", "tags": "sf sanfrancisco apple macworld appletv"}, {"datetaken": "2007-01-09 11:18:31", "license": "2", "title": "IMG_6399.JPG", "text": "", "album_id": "72157594470595742", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/352333161_e3b5553da0_o.jpg", "secret": "e3b5553da0", "media": "photo", "latitude": "0", "id": "352333161", "tags": "sf sanfrancisco apple macworld mophie"}, {"datetaken": "2007-01-09 11:23:04", "license": "2", "title": "IMG_6403.JPG", "text": "", "album_id": "72157594470595742", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/352333380_ec3c80852d_o.jpg", "secret": "ec3c80852d", "media": "photo", "latitude": "0", "id": "352333380", "tags": "sf sanfrancisco apple car ipod macworld brabus"}, {"datetaken": "2007-01-09 11:51:55", "license": "2", "title": "Apple iPhone", "text": "", "album_id": "72157594470595742", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/352361496_79c0ba133a_o.jpg", "secret": "79c0ba133a", "media": "photo", "latitude": "0", "id": "352361496", "tags": "sanfrancisco apple macworld 2007 iphone"}, {"datetaken": "2007-01-09 11:52:21", "license": "2", "title": "IMG_6414.JPG", "text": "", "album_id": "72157594470595742", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/352330274_5a752bb778_o.jpg", "secret": "5a752bb778", "media": "photo", "latitude": "0", "id": "352330274", "tags": "sf sanfrancisco apple macworld iphone"}, {"datetaken": "2007-01-09 11:53:02", "license": "2", "title": "IMG_6415.JPG", "text": "", "album_id": "72157594470595742", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/352331116_4639c079ed_o.jpg", "secret": "4639c079ed", "media": "photo", "latitude": "0", "id": "352331116", "tags": "sf sanfrancisco apple ipod macworld 2007 iphone"}, {"datetaken": "2007-01-09 12:12:09", "license": "2", "title": "IMG_6440.JPG", "text": "", "album_id": "72157594470595742", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/352330099_2272e469f9_o.jpg", "secret": "2272e469f9", "media": "photo", "latitude": "0", "id": "352330099", "tags": "sf sanfrancisco apple macworld 2007 appletv"}, {"datetaken": "2007-01-09 12:14:07", "license": "2", "title": "IMG_6442.JPG", "text": "", "album_id": "72157594470595742", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/352329984_aa2477160a_o.jpg", "secret": "aa2477160a", "media": "photo", "latitude": "0", "id": "352329984", "tags": "sf sanfrancisco apple griffin macworld ikaraoke"}, {"datetaken": "2007-01-09 14:46:07", "license": "2", "title": "IMG_6508.JPG", "text": "", "album_id": "72157594470595742", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/352331592_969b2b8075_o.jpg", "secret": "969b2b8075", "media": "photo", "latitude": "0", "id": "352331592", "tags": "sf sanfrancisco apple mac tablet wacom macworld modbook"}, {"datetaken": "2007-01-09 14:52:07", "license": "2", "title": "IMG_6516.JPG", "text": "", "album_id": "72157594470595742", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/352334658_2b5d0351b2_o.jpg", "secret": "2b5d0351b2", "media": "photo", "latitude": "0", "id": "352334658", "tags": "sf sanfrancisco apple google maps macworld iphone"}, {"datetaken": "2007-01-09 14:53:47", "license": "2", "title": "IMG_6520.JPG", "text": "", "album_id": "72157594470595742", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/352304524_87a1f6f441_o.jpg", "secret": "87a1f6f441", "media": "photo", "latitude": "0", "id": "352304524", "tags": "sanfrancisco apple macworld 2007 iphone"}, {"datetaken": "2010-01-09 11:17:29", "license": "1", "title": "Man's Best Friend", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2764/4261409138_6170e1f361_o.jpg", "secret": "06a4e20b5d", "media": "photo", "latitude": "0", "id": "4261409138", "tags": "sanfrancisco street photography"}, {"datetaken": "2010-01-09 11:21:08", "license": "1", "title": "", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4260655605_892b246b17_o.jpg", "secret": "2fdde7747a", "media": "photo", "latitude": "0", "id": "4260655605", "tags": "sanfrancisco street photography"}, {"datetaken": "2010-01-09 11:21:43", "license": "1", "title": "", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2709/4260655965_3e8ea528ce_o.jpg", "secret": "5c3984cca7", "media": "photo", "latitude": "0", "id": "4260655965", "tags": "sanfrancisco street photography"}, {"datetaken": "2010-01-09 11:29:02", "license": "1", "title": "Cold Steel", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4260656541_6c1f8840ef_o.jpg", "secret": "c37ba32b9d", "media": "photo", "latitude": "0", "id": "4260656541", "tags": "sanfrancisco street photography"}, {"datetaken": "2010-01-09 11:32:07", "license": "1", "title": "Standard parking practice for SF.", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4260656833_00357e2155_o.jpg", "secret": "f3cecb97b1", "media": "photo", "latitude": "0", "id": "4260656833", "tags": "sanfrancisco street photography"}, {"datetaken": "2010-01-09 11:33:58", "license": "1", "title": "Looking for his master", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2680/4261410900_f88116a836_o.jpg", "secret": "a5c8a5fe67", "media": "photo", "latitude": "0", "id": "4261410900", "tags": "sanfrancisco street dog photography themission"}, {"datetaken": "2010-01-09 11:34:24", "license": "1", "title": "Plastic Flowers in the Mission", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4260657579_228cf14d94_o.jpg", "secret": "0ffbce55d9", "media": "photo", "latitude": "0", "id": "4260657579", "tags": "sanfrancisco street photography"}, {"datetaken": "2010-01-09 11:34:40", "license": "1", "title": "", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4260657947_0542faaa2e_o.jpg", "secret": "744ba72490", "media": "photo", "latitude": "0", "id": "4260657947", "tags": "sanfrancisco street photography"}, {"datetaken": "2010-01-09 11:35:53", "license": "1", "title": "Broken", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4261412106_197cb6a271_o.jpg", "secret": "e02c3e1753", "media": "photo", "latitude": "0", "id": "4261412106", "tags": "sanfrancisco street photography"}, {"datetaken": "2010-01-09 11:40:20", "license": "1", "title": "Vespa", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2765/4260658689_6a9eccff06_o.jpg", "secret": "6603dfc46c", "media": "photo", "latitude": "0", "id": "4260658689", "tags": "sanfrancisco street photography"}, {"datetaken": "2010-01-09 11:41:26", "license": "1", "title": "The One who Notices...", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4260659055_8dd912e352_o.jpg", "secret": "d82cdaea82", "media": "photo", "latitude": "0", "id": "4260659055", "tags": "sanfrancisco street photography"}, {"datetaken": "2010-01-09 11:51:09", "license": "1", "title": "Chess", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2712/4260659425_82ce72a6d3_o.jpg", "secret": "d4de05f6bc", "media": "photo", "latitude": "0", "id": "4260659425", "tags": "sanfrancisco street photography"}, {"datetaken": "2010-01-09 11:54:20", "license": "1", "title": "Classic Chevy", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4260659811_eb8d50e7ed_o.jpg", "secret": "6687d6bbe3", "media": "photo", "latitude": "0", "id": "4260659811", "tags": "sanfrancisco street photography"}, {"datetaken": "2010-01-09 12:00:34", "license": "1", "title": "", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4261413926_211c5e95d7_o.jpg", "secret": "1504601556", "media": "photo", "latitude": "0", "id": "4261413926", "tags": "sanfrancisco street photography"}, {"datetaken": "2010-01-09 12:02:56", "license": "1", "title": "Why thank you... I think so too.", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4261414322_e9798c5de9_o.jpg", "secret": "b3fe7feede", "media": "photo", "latitude": "0", "id": "4261414322", "tags": "sanfrancisco street photography"}, {"datetaken": "2010-01-09 12:43:45", "license": "1", "title": "What's Up Dog?", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2783/4260660839_1bfc00300e_o.jpg", "secret": "bf00e14173", "media": "photo", "latitude": "0", "id": "4260660839", "tags": "sanfrancisco street photography"}, {"datetaken": "2010-01-09 13:11:52", "license": "1", "title": "Market & Van Ness, San Francisco", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4261415092_1e18a484fe_o.jpg", "secret": "39300333be", "media": "photo", "latitude": "0", "id": "4261415092", "tags": "sanfrancisco street photography"}, {"datetaken": "2010-01-09 13:17:39", "license": "1", "title": "", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4260661623_3a5fcd3049_o.jpg", "secret": "8196112134", "media": "photo", "latitude": "0", "id": "4260661623", "tags": "sanfrancisco street photography"}, {"datetaken": "2010-01-09 13:32:54", "license": "1", "title": "Crash!", "text": "", "album_id": "72157623052897651", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4260661975_8358cef4f0_o.jpg", "secret": "4683006578", "media": "photo", "latitude": "0", "id": "4260661975", "tags": "sanfrancisco street photography"}, {"datetaken": "2009-11-16 10:15:03", "license": "4", "title": "Roberto Frua TripAdvisor a BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm3.staticflickr.com/2686/4241004647_dff01c6067_o.jpg", "secret": "a63dfe827a", "media": "photo", "latitude": "43.778205", "id": "4241004647", "tags": "oyster bto tripadvisor robertobaggio zoover buytourismonline micheleaggiato robertfrua robpaladino"}, {"datetaken": "2009-11-16 10:15:05", "license": "4", "title": "Rodolfo Baggio Master in Tourism Bocconi a BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm5.staticflickr.com/4043/4241151389_c6351c93d0_o.jpg", "secret": "0426c29cb2", "media": "photo", "latitude": "43.778205", "id": "4241151389", "tags": "oyster bto tripadvisor robertobaggio zoover buytourismonline micheleaggiato robertfrua robpaladino"}, {"datetaken": "2009-11-16 11:00:05", "license": "4", "title": "Laura Valerio Expedia a BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm3.staticflickr.com/2767/4237512991_360ae79659_o.jpg", "secret": "50286bcf6f", "media": "photo", "latitude": "43.778205", "id": "4237512991", "tags": "circus bto expedia lauravalerio buytourismonline morrissim brandkarma"}, {"datetaken": "2009-11-16 11:00:06", "license": "4", "title": "Morris Sim Brand Karma a BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm5.staticflickr.com/4069/4237507857_67555c5442_o.jpg", "secret": "45c14021ff", "media": "photo", "latitude": "43.778205", "id": "4237507857", "tags": "circus bto expedia lauravalerio buytourismonline morrissim brandkarma"}, {"datetaken": "2009-11-16 12:17:45", "license": "4", "title": "Marco Monty Montemagno Show a BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm5.staticflickr.com/4033/4233571807_7b8f344232_o.jpg", "secret": "2ef7bdfb22", "media": "photo", "latitude": "43.778205", "id": "4233571807", "tags": "bto monty montemagno marcomontemagno buytourismonline"}, {"datetaken": "2009-11-16 12:19:54", "license": "4", "title": "Marco Monty Montemagno Show a BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm3.staticflickr.com/2727/4234370018_bd57d129f1_o.jpg", "secret": "1b684c7068", "media": "photo", "latitude": "43.778205", "id": "4234370018", "tags": "bto monty montemagno marcomontemagno buytourismonline"}, {"datetaken": "2009-11-16 12:23:27", "license": "4", "title": "Marco Monty Montemagno Show a BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm3.staticflickr.com/2618/4233603853_a1c2af0194_o.jpg", "secret": "3fb2424ece", "media": "photo", "latitude": "43.778205", "id": "4233603853", "tags": "bto monty montemagno marcomontemagno buytourismonline"}, {"datetaken": "2009-11-16 13:07:03", "license": "4", "title": "Marco Monty Montemagno Show a BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm5.staticflickr.com/4064/4233740605_23ba85cb02_o.jpg", "secret": "8092404e1c", "media": "photo", "latitude": "43.778205", "id": "4233740605", "tags": "bto monty montemagno marcomontemagno buytourismonline"}, {"datetaken": "2009-11-16 13:09:38", "license": "4", "title": "Marco Monty Montemagno Show a BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm3.staticflickr.com/2713/4233774651_0a21eb5bb9_o.jpg", "secret": "4dafd7179e", "media": "photo", "latitude": "43.778205", "id": "4233774651", "tags": "bto monty montemagno marcomontemagno buytourismonline"}, {"datetaken": "2009-11-16 13:11:07", "license": "4", "title": "Marco Monty Montemagno Show a BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm3.staticflickr.com/2625/4233782107_2e28eba16b_o.jpg", "secret": "3ea3a1ede9", "media": "photo", "latitude": "43.778205", "id": "4233782107", "tags": "bto monty montemagno marcomontemagno buytourismonline"}, {"datetaken": "2009-11-16 14:45:00", "license": "4", "title": "Giancarlo Carniani a BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm5.staticflickr.com/4009/4247682975_4fa5ca0140_o.jpg", "secret": "eb5ba75461", "media": "photo", "latitude": "43.778205", "id": "4247682975", "tags": "bto federico picardi robertamilano buytourismonline giancarlocarniani blastnessqntbookassist"}, {"datetaken": "2009-11-16 14:45:10", "license": "4", "title": "Il dibattito sulla disintermediazione a BTO 2009 Panel II", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm5.staticflickr.com/4006/4248408614_8837218a92_o.jpg", "secret": "d88fc52965", "media": "photo", "latitude": "43.778205", "id": "4248408614", "tags": "bto federico picardi robertamilano buytourismonline giancarlocarniani blastnessqntbookassist"}, {"datetaken": "2009-11-17 09:15:05", "license": "4", "title": "Blogsphere and Tourism: How to interact?", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm5.staticflickr.com/4003/4219925562_4d443fb2de_o.jpg", "secret": "fcc8df15a7", "media": "photo", "latitude": "43.778205", "id": "4219925562", "tags": "bto buytourismonline bto2009"}, {"datetaken": "2009-11-17 09:15:07", "license": "4", "title": "Blogsphere and Tourism: How to interact?", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm3.staticflickr.com/2529/4219926278_1112fa68fa_o.jpg", "secret": "fa15c1489f", "media": "photo", "latitude": "43.778205", "id": "4219926278", "tags": "bto buytourismonline bto2009"}, {"datetaken": "2009-11-17 12:15:15", "license": "4", "title": "Mirko Lalli a BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm3.staticflickr.com/2704/4258384845_7c208daf75_o.jpg", "secret": "ffa1624804", "media": "photo", "latitude": "43.778205", "id": "4258384845", "tags": "hart bto ogilvy voglioviverecos\u00ec ninjamarketing zooppa mirkolalli paoloiabichino mirkopallera buytourismonline bto209 elisaperillo massimoventimiglia"}, {"datetaken": "2009-11-17 12:15:18", "license": "4", "title": "Paolo Iabichino a BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm5.staticflickr.com/4006/4259147130_47b7e97f18_o.jpg", "secret": "5a358e1d75", "media": "photo", "latitude": "43.778205", "id": "4259147130", "tags": "hart bto ogilvy voglioviverecos\u00ec ninjamarketing zooppa mirkolalli paoloiabichino mirkopallera buytourismonline bto209 elisaperillo massimoventimiglia"}, {"datetaken": "2009-11-17 12:15:19", "license": "4", "title": "Viral Marketing a BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm5.staticflickr.com/4069/4259149260_44c78d0dff_o.jpg", "secret": "20f27b49a0", "media": "photo", "latitude": "43.778205", "id": "4259149260", "tags": "hart bto ogilvy voglioviverecos\u00ec ninjamarketing zooppa mirkolalli paoloiabichino mirkopallera buytourismonline bto209 elisaperillo massimoventimiglia"}, {"datetaken": "2009-11-17 12:15:20", "license": "4", "title": "Viral Marketing a BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm5.staticflickr.com/4053/4259151192_8691e84de2_o.jpg", "secret": "19a90b983b", "media": "photo", "latitude": "43.778205", "id": "4259151192", "tags": "hart bto ogilvy voglioviverecos\u00ec ninjamarketing zooppa mirkolalli paoloiabichino mirkopallera buytourismonline bto209 elisaperillo massimoventimiglia"}, {"datetaken": "2009-11-17 12:15:25", "license": "4", "title": "Massimiliano Ventimiglia a BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "11.238670", "url_o": "https://farm5.staticflickr.com/4057/4258404787_b1e87f5e3d_o.jpg", "secret": "8e8ffd61c3", "media": "photo", "latitude": "43.778205", "id": "4258404787", "tags": "hart bto ogilvy voglioviverecos\u00ec ninjamarketing zooppa mirkolalli paoloiabichino mirkopallera buytourismonline bto209 elisaperillo massimoventimiglia"}, {"datetaken": "2009-11-17 15:00:03", "license": "4", "title": "Bing, Google e Yahoo! BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4260382634_e0337cae7f_o.jpg", "secret": "d5e4afc5d6", "media": "photo", "latitude": "0", "id": "4260382634", "tags": "yahoo google bing bto admaiora buytourismonline bto2009 bingtravel"}, {"datetaken": "2009-11-17 15:00:19", "license": "4", "title": "Bing, Google e Yahoo! BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4259713957_43d5a37166_o.jpg", "secret": "a68a03d3eb", "media": "photo", "latitude": "0", "id": "4259713957", "tags": "yahoo google bing bto admaiora buytourismonline bto2009 bingtravel"}, {"datetaken": "2009-11-17 15:00:31", "license": "4", "title": "Lorenzo Montagna, Yahoo! BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4259777763_d02ce65979_o.jpg", "secret": "a5af7eb484", "media": "photo", "latitude": "0", "id": "4259777763", "tags": "yahoo google bing bto admaiora buytourismonline bto2009 bingtravel"}, {"datetaken": "2009-11-17 15:00:40", "license": "4", "title": "Roberto Brenner, Google BTO 2009", "text": "", "album_id": "72157623240659927", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4260580338_576c1beb32_o.jpg", "secret": "fd53605895", "media": "photo", "latitude": "0", "id": "4260580338", "tags": "yahoo google bing bto admaiora buytourismonline bto2009 bingtravel"}, {"datetaken": "2005-08-05 22:21:14", "license": "4", "title": "Smith College Dorm Room", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/32598105_f7f7d1c0e5_o.jpg", "secret": "f7f7d1c0e5", "media": "photo", "latitude": "0", "id": "32598105", "tags": "northamptonma smithcollege dorms"}, {"datetaken": "2005-08-05 22:21:37", "license": "4", "title": "Jenny T.", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/32598123_cc49b76c33_o.jpg", "secret": "cc49b76c33", "media": "photo", "latitude": "0", "id": "32598123", "tags": "northamptonma smithcollege jennytoomey dorm barnraising"}, {"datetaken": "2005-08-05 22:22:43", "license": "4", "title": "Pillow Fight!", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32598152_f9afed2ddf_o.jpg", "secret": "f9afed2ddf", "media": "photo", "latitude": "0", "id": "32598152", "tags": "lpfm northamptonma smithcollege dorm pillowfight"}, {"datetaken": "2005-08-05 22:22:52", "license": "4", "title": "Pillow Fight!", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32598176_3a43b242a4_o.jpg", "secret": "3a43b242a4", "media": "photo", "latitude": "0", "id": "32598176", "tags": "northamptonma smithcollege dorm pillowfight barnraising lpfm"}, {"datetaken": "2005-08-05 22:23:00", "license": "4", "title": "Rachel K. and Jenny T.", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32598206_87e7de1414_o.jpg", "secret": "87e7de1414", "media": "photo", "latitude": "0", "id": "32598206", "tags": "northamptonma smithcollege dorm barnraising lpfm pillowfight"}, {"datetaken": "2005-08-05 22:23:07", "license": "4", "title": "Rachel K", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/32598238_779e4c905c_o.jpg", "secret": "779e4c905c", "media": "photo", "latitude": "0", "id": "32598238", "tags": "northamptonma pillowfight smithcollege dorm barnraising lpfm"}, {"datetaken": "2005-08-06 09:03:58", "license": "4", "title": "Northampton Farmers Market", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32780353_80d81bf3aa_o.jpg", "secret": "80d81bf3aa", "media": "photo", "latitude": "0", "id": "32780353", "tags": "northamptonma farmersmarket barnraising lpfm"}, {"datetaken": "2005-08-06 09:06:04", "license": "4", "title": "Northampton", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/32780358_85c84b5aae_o.jpg", "secret": "85c84b5aae", "media": "photo", "latitude": "0", "id": "32780358", "tags": "northamptonma"}, {"datetaken": "2005-08-06 11:03:33", "license": "4", "title": "Bible Jeopardy", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/32780380_8e921574bc_o.jpg", "secret": "8e921574bc", "media": "photo", "latitude": "0", "id": "32780380", "tags": "northamptonma biblejeopardy barnraising lpfm"}, {"datetaken": "2005-08-06 11:21:37", "license": "4", "title": "For the love...", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32781051_1a016efe54_o.jpg", "secret": "1a016efe54", "media": "photo", "latitude": "0", "id": "32781051", "tags": "ripscountryinn"}, {"datetaken": "2005-08-06 11:21:48", "license": "4", "title": "Jenny T. as Habibi", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/32781092_f73ff8bee8_o.jpg", "secret": "f73ff8bee8", "media": "photo", "latitude": "0", "id": "32781092", "tags": ""}, {"datetaken": "2005-08-06 11:39:20", "license": "4", "title": "Grassroots Radio Conference Hub", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32781114_5712d6f184_o.jpg", "secret": "5712d6f184", "media": "photo", "latitude": "0", "id": "32781114", "tags": "ripscountryinn"}, {"datetaken": "2005-08-06 11:47:57", "license": "4", "title": "Jean and David build cables for Valley Free Radio", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/32782550_ef97329550_o.jpg", "secret": "ef97329550", "media": "photo", "latitude": "0", "id": "32782550", "tags": "ripscountryinn"}, {"datetaken": "2005-08-06 12:39:55", "license": "4", "title": "Moon in Northampton", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32782558_a634f9925b_o.jpg", "secret": "a634f9925b", "media": "photo", "latitude": "0", "id": "32782558", "tags": "northhamptonma dwarf gnome moon"}, {"datetaken": "2005-08-06 14:33:59", "license": "4", "title": "Diving House", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/32782570_53b75b2d1c_o.jpg", "secret": "53b75b2d1c", "media": "photo", "latitude": "0", "id": "32782570", "tags": "ripscountryinn"}, {"datetaken": "2005-08-06 15:05:54", "license": "4", "title": "Fundraising Panel - GRC", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32782578_b55b0c14fd_o.jpg", "secret": "b55b0c14fd", "media": "photo", "latitude": "0", "id": "32782578", "tags": ""}, {"datetaken": "2005-08-06 15:06:05", "license": "4", "title": "Fundraising Panel - GRC", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32782602_0ca54f5bb8_o.jpg", "secret": "0ca54f5bb8", "media": "photo", "latitude": "0", "id": "32782602", "tags": "barnraising northamptonma grc conference"}, {"datetaken": "2005-08-06 17:01:21", "license": "4", "title": "Float Materials for the Big Parade", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32783231_e08a0c2b6f_o.jpg", "secret": "e08a0c2b6f", "media": "photo", "latitude": "0", "id": "32783231", "tags": "northamptonma lpfm parade crown"}, {"datetaken": "2005-08-06 18:44:11", "license": "4", "title": "Ladies with Lays Singing for Democracy", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32783279_06970c8e2a_o.jpg", "secret": "06970c8e2a", "media": "photo", "latitude": "0", "id": "32783279", "tags": "northamptonma lpfm barnraising democracynow"}, {"datetaken": "2005-08-07 01:48:42", "license": "4", "title": "Sleepy Wendy", "text": "", "album_id": "72157600249357838", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/32783303_ec3ffa9fd4_o.jpg", "secret": "ec3ffa9fd4", "media": "photo", "latitude": "0", "id": "32783303", "tags": "northamptonma lpfm smithcollege dorms barnraising wendy blue"}, {"datetaken": "2010-02-09 15:14:09", "license": "4", "title": "Cemetary Circle in Snow Before the Big Storm", "text": "", "album_id": "72157623280700593", "longitude": "-74.755654", "url_o": "https://farm3.staticflickr.com/2685/4347954724_77bd2ca00f_o.jpg", "secret": "b92092c4e3", "media": "photo", "latitude": "40.220092", "id": "4347954724", "tags": "trees cemetery circle headges snowtrentonnjstormfrebruary2010city"}, {"datetaken": "2010-02-10 15:30:49", "license": "4", "title": "Smile in the Storm", "text": "", "album_id": "72157623280700593", "longitude": "-74.755868", "url_o": "https://farm5.staticflickr.com/4007/4347206509_3c17d5733e_o.jpg", "secret": "1910c7fbf6", "media": "photo", "latitude": "40.248038", "id": "4347206509", "tags": "city snow storm nj trenton frebruary2010"}, {"datetaken": "2010-02-10 15:48:13", "license": "4", "title": "brunswick_circle_img_2453", "text": "", "album_id": "72157623280700593", "longitude": "-74.743251", "url_o": "https://farm5.staticflickr.com/4024/4347206549_241848971d_o.jpg", "secret": "a92de9b3da", "media": "photo", "latitude": "40.245844", "id": "4347206549", "tags": "city snow storm nj trenton frebruary2010"}, {"datetaken": "2010-02-10 15:57:00", "license": "4", "title": "chambers_img_2456", "text": "", "album_id": "72157623280700593", "longitude": "-74.745268", "url_o": "https://farm5.staticflickr.com/4024/4347206437_a563af5a5f_o.jpg", "secret": "a4afcce04d", "media": "photo", "latitude": "40.220240", "id": "4347206437", "tags": "city snow storm nj trenton frebruary2010"}, {"datetaken": "2010-02-10 15:57:00", "license": "4", "title": "Chambers Street & Snow", "text": "", "album_id": "72157623280700593", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4347955040_fd41e29a1c_o.jpg", "secret": "f71c806781", "media": "photo", "latitude": "0", "id": "4347955040", "tags": "city snow storm nj trenton frebruary2010"}, {"datetaken": "2010-02-10 16:02:04", "license": "4", "title": "Fire Engine at Chambers St & Hamilton Ave", "text": "", "album_id": "72157623280700593", "longitude": "-74.743251", "url_o": "https://farm3.staticflickr.com/2703/4347207527_8d87d5e037_o.jpg", "secret": "57d2c20063", "media": "photo", "latitude": "40.217520", "id": "4347207527", "tags": "city snow fireengine trenton njtrentonsnowstormfrebruary2010city"}, {"datetaken": "2010-02-10 18:04:28", "license": "4", "title": "Car Park Lights on a Snowy Night", "text": "", "album_id": "72157623280700593", "longitude": "-74.741964", "url_o": "https://farm5.staticflickr.com/4023/4347206815_2a2cbf1350_o.jpg", "secret": "b069ed8c49", "media": "photo", "latitude": "40.216143", "id": "4347206815", "tags": "city snow storm nj trenton frebruary2010"}, {"datetaken": "2010-02-10 18:04:49", "license": "4", "title": "Car Park Roof with Snow", "text": "", "album_id": "72157623280700593", "longitude": "-74.741964", "url_o": "https://farm5.staticflickr.com/4069/4347206875_39390eea36_o.jpg", "secret": "bf32955592", "media": "photo", "latitude": "40.216143", "id": "4347206875", "tags": "snow arches nighttrentonnjsnowstormfrebruary2010city"}, {"datetaken": "2010-02-10 18:06:44", "license": "4", "title": "Car Park Grate Shadows 2", "text": "", "album_id": "72157623280700593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4347206751_13294771e1_o.jpg", "secret": "674ae3da6e", "media": "photo", "latitude": "0", "id": "4347206751", "tags": "snow lines shadows texturestrentonnjsnowstormfrebruary2010city"}, {"datetaken": "2010-02-10 18:06:56", "license": "4", "title": "Car Park Grate Shadows 1", "text": "", "album_id": "72157623280700593", "longitude": "-74.741964", "url_o": "https://farm5.staticflickr.com/4072/4347206607_3f9bb5933f_o.jpg", "secret": "de4c1a4dff", "media": "photo", "latitude": "40.216143", "id": "4347206607", "tags": "snow lines night shadows redtrentonnjsnowstormfrebruary2010city"}, {"datetaken": "2010-02-10 18:19:06", "license": "4", "title": "Lonely Walk Sign Walker", "text": "", "album_id": "72157623280700593", "longitude": "-74.759302", "url_o": "https://farm5.staticflickr.com/4062/4347955270_e7890a7156_o.jpg", "secret": "737c3ff223", "media": "photo", "latitude": "40.217782", "id": "4347955270", "tags": "snow storm night walk trafficsignal trentonnjsnowstormfrebruary2010city"}, {"datetaken": "2012-02-10 19:54:34", "license": "3", "title": "Jacob's Antiques", "text": "", "album_id": "72157629261651447", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7062/6852935965_05c27f0f3f_o.jpg", "secret": "b35a52ee9b", "media": "photo", "latitude": "0", "id": "6852935965", "tags": "blackandwhite pentax cardiff beethoven pentaxk1000 ilford ilforddelta400 jacobsantiquesmarket"}, {"datetaken": "2012-02-10 19:54:46", "license": "3", "title": "Jacob's Antiques", "text": "", "album_id": "72157629261651447", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7040/6852936859_1492985f03_o.jpg", "secret": "fd43d91aec", "media": "photo", "latitude": "0", "id": "6852936859", "tags": "blackandwhite pentax cardiff cameras pentaxk1000 ilford ilforddelta400 jacobsantiquesmarket"}, {"datetaken": "2012-02-10 19:54:59", "license": "3", "title": "Jacob's Antiques", "text": "", "album_id": "72157629261651447", "longitude": "-3.176062", "url_o": "https://farm8.staticflickr.com/7156/6852937811_893138290c_o.jpg", "secret": "242ce3265c", "media": "photo", "latitude": "51.475683", "id": "6852937811", "tags": "blackandwhite pentax cardiff pentaxk1000 ilford ilforddelta400 betamax jacobsantiquesmarket"}, {"datetaken": "2012-02-10 19:55:17", "license": "3", "title": "Jacob's Antiques", "text": "", "album_id": "72157629261651447", "longitude": "-3.176261", "url_o": "https://farm8.staticflickr.com/7157/6852939041_9d44fd009a_o.jpg", "secret": "d159dfdc34", "media": "photo", "latitude": "51.475596", "id": "6852939041", "tags": "blackandwhite pentax cardiff pentaxk1000 ilford ilforddelta400 jacobsantiquesmarket"}, {"datetaken": "2012-02-10 19:55:30", "license": "3", "title": "Jacob's Antiques", "text": "", "album_id": "72157629261651447", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6852939929_297ff49e02_o.jpg", "secret": "ff8e4764e9", "media": "photo", "latitude": "0", "id": "6852939929", "tags": "blackandwhite pentax cardiff pentaxk1000 ilford ilforddelta400 jacobsantiquesmarket familybeetlegame ihadthisgameoratleastmyinfanstorjuniorschoolhadit"}, {"datetaken": "2012-02-10 19:55:46", "license": "3", "title": "Jacob/s Antiques", "text": "", "album_id": "72157629261651447", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7206/6852941115_4cf937d89c_o.jpg", "secret": "33fc2b4a77", "media": "photo", "latitude": "0", "id": "6852941115", "tags": "blackandwhite pentax cardiff pentaxk1000 ilford ilforddelta400 jacobsantiquesmarket kodakektaradverts"}, {"datetaken": "2012-02-10 19:55:59", "license": "3", "title": "Jacob's Antiques", "text": "", "album_id": "72157629261651447", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7161/6852942061_b3e6a35f13_o.jpg", "secret": "e16ae22e7a", "media": "photo", "latitude": "0", "id": "6852942061", "tags": "blackandwhite pentax cardiff pentaxk1000 ilford ilforddelta400 gramaphone jacobsantiquesmarket"}, {"datetaken": "2012-02-10 19:56:15", "license": "3", "title": "Jacob's Antiques", "text": "", "album_id": "72157629261651447", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7039/6852943079_55f85cdb62_o.jpg", "secret": "9f3cf5bf78", "media": "photo", "latitude": "0", "id": "6852943079", "tags": "blackandwhite pentax cardiff pentaxk1000 ilford ilforddelta400 jacobsantiquesmarket"}, {"datetaken": "2012-02-10 19:56:27", "license": "3", "title": "Jacob's Antiques", "text": "", "album_id": "72157629261651447", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7042/6852944009_61bd390af6_o.jpg", "secret": "50f489d6b3", "media": "photo", "latitude": "0", "id": "6852944009", "tags": "blackandwhite pentax cardiff pentaxk1000 ilford ilforddelta400 pinballmachine sevenup jacobsantiquesmarket"}, {"datetaken": "2012-02-10 19:56:41", "license": "3", "title": "Jacob's Antiques", "text": "", "album_id": "72157629261651447", "longitude": "-3.176030", "url_o": "https://farm8.staticflickr.com/7031/6852945129_94e7f4ac96_o.jpg", "secret": "63b48c3f6b", "media": "photo", "latitude": "51.475666", "id": "6852945129", "tags": "blackandwhite pentax cardiff cameras pentaxk1000 ilford ilforddelta400 jacobsantiquesmarket"}, {"datetaken": "2012-02-10 19:56:54", "license": "3", "title": "Jacob's Antiques", "text": "", "album_id": "72157629261651447", "longitude": "-3.176116", "url_o": "https://farm8.staticflickr.com/7048/6852946215_19e4e44b20_o.jpg", "secret": "4fdee4f472", "media": "photo", "latitude": "51.475619", "id": "6852946215", "tags": "blackandwhite pentax cardiff pentaxk1000 ilford ilforddelta400 jacobsantiquesmarket lonydal"}, {"datetaken": "2012-02-10 19:57:07", "license": "3", "title": "Jacob's Antiques", "text": "", "album_id": "72157629261651447", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7020/6852947215_16f36e41b3_o.jpg", "secret": "e512f48691", "media": "photo", "latitude": "0", "id": "6852947215", "tags": "blackandwhite pentax cardiff pentaxk1000 knight ilford ilforddelta400 jacobsantiquesmarket"}, {"datetaken": "2012-02-10 19:57:21", "license": "3", "title": "Jacob's Antiques", "text": "", "album_id": "72157629261651447", "longitude": "-3.176159", "url_o": "https://farm8.staticflickr.com/7044/6852948293_174d8086f6_o.jpg", "secret": "942ac75f2b", "media": "photo", "latitude": "51.475623", "id": "6852948293", "tags": "blackandwhite pentax cardiff pentaxk1000 ilford ilforddelta400 gramaphones jacobsantiquesmarket"}, {"datetaken": "2012-02-10 19:57:37", "license": "3", "title": "Jacob's Antiques", "text": "", "album_id": "72157629261651447", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7050/6852949415_1a2b5e6008_o.jpg", "secret": "b3e5df851d", "media": "photo", "latitude": "0", "id": "6852949415", "tags": "blackandwhite pentax cardiff pentaxk1000 ilford ilforddelta400 jacobsantiquesmarket filmpoters"}, {"datetaken": "2012-02-10 19:57:51", "license": "3", "title": "Jacob's Antiques", "text": "", "album_id": "72157629261651447", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7160/6852950527_c0bdccdc8f_o.jpg", "secret": "f79b45a7ed", "media": "photo", "latitude": "0", "id": "6852950527", "tags": "blackandwhite me mirror pentax cardiff pentaxk1000 ilford ilforddelta400 jacobsantiquesmarket"}, {"datetaken": "2012-02-09 06:40:03", "license": "3", "title": "IMGP6125", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7016/6853614075_5eec5a0a57_o.jpg", "secret": "c989972c30", "media": "photo", "latitude": "0", "id": "6853614075", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 06:40:40", "license": "3", "title": "IMGP6126", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7016/6853618667_d2bcc009d0_o.jpg", "secret": "eae0df70af", "media": "photo", "latitude": "0", "id": "6853618667", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 06:46:31", "license": "3", "title": "IMGP6129", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7141/6853630037_a527bfbf37_o.jpg", "secret": "c041cb37cf", "media": "photo", "latitude": "0", "id": "6853630037", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 06:49:37", "license": "3", "title": "IMGP6130", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7183/6853633619_81a2dd4296_o.jpg", "secret": "0b2ec51cd2", "media": "photo", "latitude": "0", "id": "6853633619", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 06:51:42", "license": "3", "title": "IMGP6131", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7035/6853639207_be842d10bb_o.jpg", "secret": "301f348297", "media": "photo", "latitude": "0", "id": "6853639207", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 06:56:24", "license": "3", "title": "IMGP6132", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7004/6853644591_3f2d096cc3_o.jpg", "secret": "acc0bd106e", "media": "photo", "latitude": "0", "id": "6853644591", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 06:57:33", "license": "3", "title": "IMGP6133", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7033/6853650487_76585417e3_o.jpg", "secret": "8357215f07", "media": "photo", "latitude": "0", "id": "6853650487", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 07:01:00", "license": "3", "title": "IMGP6134", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7036/6853652079_1d7d4323fb_o.jpg", "secret": "6fba7aa884", "media": "photo", "latitude": "0", "id": "6853652079", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 07:01:11", "license": "3", "title": "IMGP6135", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7144/6853656887_1a3cd12edc_o.jpg", "secret": "42cd31d950", "media": "photo", "latitude": "0", "id": "6853656887", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 07:02:34", "license": "3", "title": "IMGP6136", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7161/6853661631_3b2fee1553_o.jpg", "secret": "44fd4b5182", "media": "photo", "latitude": "0", "id": "6853661631", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 07:02:39", "license": "3", "title": "IMGP6137", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7190/6853664783_95015d0b62_o.jpg", "secret": "9e2efa21dd", "media": "photo", "latitude": "0", "id": "6853664783", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 07:07:07", "license": "3", "title": "IMGP6138", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7030/6853670211_fcbf77bc04_o.jpg", "secret": "c8734d6e0d", "media": "photo", "latitude": "0", "id": "6853670211", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 07:15:31", "license": "3", "title": "IMGP6139", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7154/6853674937_9186154e35_o.jpg", "secret": "22d77e5c6c", "media": "photo", "latitude": "0", "id": "6853674937", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 07:18:16", "license": "3", "title": "IMGP6140", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7149/6853679701_3b02b3dfde_o.jpg", "secret": "32bc3c1379", "media": "photo", "latitude": "0", "id": "6853679701", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 07:18:50", "license": "3", "title": "IMGP6141", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7168/6853684879_7018a009ef_o.jpg", "secret": "aea1456232", "media": "photo", "latitude": "0", "id": "6853684879", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 07:19:49", "license": "3", "title": "IMGP6142", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7208/6853689897_63ecee3785_o.jpg", "secret": "7bc246b706", "media": "photo", "latitude": "0", "id": "6853689897", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 07:20:34", "license": "3", "title": "IMGP6144", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7044/6853697873_d60f5055d6_o.jpg", "secret": "f78d3e3e45", "media": "photo", "latitude": "0", "id": "6853697873", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 07:20:44", "license": "3", "title": "IMGP6145", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7040/6853702703_8770cf8cd3_o.jpg", "secret": "8115515dcb", "media": "photo", "latitude": "0", "id": "6853702703", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 07:21:05", "license": "3", "title": "IMGP6146", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7182/6853707331_49a2bf4094_o.jpg", "secret": "2bbee1cb85", "media": "photo", "latitude": "0", "id": "6853707331", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 07:21:56", "license": "3", "title": "IMGP6147", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7199/6853712255_6d4a451030_o.jpg", "secret": "a997ef7925", "media": "photo", "latitude": "0", "id": "6853712255", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 07:22:16", "license": "3", "title": "IMGP6148", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7053/6853716959_5ee8ec5893_o.jpg", "secret": "1e62179a80", "media": "photo", "latitude": "0", "id": "6853716959", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 07:22:17", "license": "3", "title": "IMGP6149", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7196/6853722029_31fc482697_o.jpg", "secret": "a04dabf5ab", "media": "photo", "latitude": "0", "id": "6853722029", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 07:22:19", "license": "3", "title": "IMGP6150", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7057/6853727127_ebda441101_o.jpg", "secret": "1e2038aa6d", "media": "photo", "latitude": "0", "id": "6853727127", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2012-02-09 07:25:47", "license": "3", "title": "IMGP6151", "text": "", "album_id": "72157629263336881", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7189/6853733237_c7e3871bfd_o.jpg", "secret": "a06ccba844", "media": "photo", "latitude": "0", "id": "6853733237", "tags": "michigan royaloak royaloakfarmersmarket foodtruckrally"}, {"datetaken": "2011-12-25 11:43:10", "license": "4", "title": "Binh Tay Market", "text": "", "album_id": "72157628821312617", "longitude": "106.637248", "url_o": "https://farm8.staticflickr.com/7016/6678094555_9f3454b40c_o.jpg", "secret": "2b1b6a7427", "media": "photo", "latitude": "10.748655", "id": "6678094555", "tags": "chinatown market burma vietnam saigon hochiminhcity cholon binhtay"}, {"datetaken": "2011-12-25 11:45:33", "license": "4", "title": "Binh Tay Market", "text": "", "album_id": "72157628821312617", "longitude": "106.637248", "url_o": "https://farm8.staticflickr.com/7006/6678096011_c0c24d0de6_o.jpg", "secret": "46f7e5faea", "media": "photo", "latitude": "10.748655", "id": "6678096011", "tags": "chinatown market burma vietnam saigon hochiminhcity cholon binhtay"}, {"datetaken": "2011-12-25 11:45:52", "license": "4", "title": "Binh Tay Market", "text": "", "album_id": "72157628821312617", "longitude": "106.637248", "url_o": "https://farm8.staticflickr.com/7157/6678096507_59f74a6b01_o.jpg", "secret": "d4be528d21", "media": "photo", "latitude": "10.748655", "id": "6678096507", "tags": "chinatown market burma vietnam saigon hochiminhcity cholon binhtay"}, {"datetaken": "2011-12-25 11:49:04", "license": "4", "title": "Binh Tay Market", "text": "", "album_id": "72157628821312617", "longitude": "106.637248", "url_o": "https://farm8.staticflickr.com/7033/6678097759_0bca4a0109_o.jpg", "secret": "ecd7f15ef7", "media": "photo", "latitude": "10.748655", "id": "6678097759", "tags": "chinatown market burma vietnam saigon hochiminhcity cholon binhtay"}, {"datetaken": "2011-12-25 11:50:47", "license": "4", "title": "Binh Tay Market", "text": "", "album_id": "72157628821312617", "longitude": "106.637248", "url_o": "https://farm8.staticflickr.com/7002/6678098375_b1b37b88f0_o.jpg", "secret": "e3beb37041", "media": "photo", "latitude": "10.748655", "id": "6678098375", "tags": "chinatown market burma vietnam saigon hochiminhcity cholon binhtay"}, {"datetaken": "2011-12-25 11:52:48", "license": "4", "title": "Binh Tay Market", "text": "", "album_id": "72157628821312617", "longitude": "106.637248", "url_o": "https://farm8.staticflickr.com/7015/6678098949_244b1530d2_o.jpg", "secret": "2bf84ed802", "media": "photo", "latitude": "10.748655", "id": "6678098949", "tags": "chinatown market burma vietnam saigon hochiminhcity cholon binhtay"}, {"datetaken": "2011-12-25 11:53:58", "license": "4", "title": "Binh Tay Market", "text": "", "album_id": "72157628821312617", "longitude": "106.637248", "url_o": "https://farm8.staticflickr.com/7027/6678099675_7707f4659f_o.jpg", "secret": "d530fee6fb", "media": "photo", "latitude": "10.748655", "id": "6678099675", "tags": "chinatown market burma vietnam saigon hochiminhcity cholon binhtay"}, {"datetaken": "2011-12-25 11:57:00", "license": "4", "title": "Binh Tay Market", "text": "", "album_id": "72157628821312617", "longitude": "106.637248", "url_o": "https://farm8.staticflickr.com/7011/6678100245_cfd7dc1050_o.jpg", "secret": "8ff320fea8", "media": "photo", "latitude": "10.748655", "id": "6678100245", "tags": "chinatown market burma vietnam saigon hochiminhcity cholon binhtay"}, {"datetaken": "2011-12-25 11:59:22", "license": "4", "title": "Binh Tay Market", "text": "", "album_id": "72157628821312617", "longitude": "106.637248", "url_o": "https://farm8.staticflickr.com/7002/6678100971_8c3df08528_o.jpg", "secret": "fb73b6b035", "media": "photo", "latitude": "10.748655", "id": "6678100971", "tags": "chinatown market burma vietnam saigon hochiminhcity cholon binhtay"}, {"datetaken": "2011-12-25 12:08:01", "license": "4", "title": "Binh Tay Market", "text": "", "album_id": "72157628821312617", "longitude": "106.637248", "url_o": "https://farm8.staticflickr.com/7152/6678101503_1dc0ed39c8_o.jpg", "secret": "847ac24c74", "media": "photo", "latitude": "10.748655", "id": "6678101503", "tags": "chinatown market burma vietnam saigon hochiminhcity cholon binhtay"}, {"datetaken": "2011-12-25 12:09:29", "license": "4", "title": "Binh Tay Market", "text": "", "album_id": "72157628821312617", "longitude": "106.637248", "url_o": "https://farm8.staticflickr.com/7148/6678102295_cf47d69f48_o.jpg", "secret": "af63d3d940", "media": "photo", "latitude": "10.748655", "id": "6678102295", "tags": "chinatown market burma vietnam saigon hochiminhcity cholon binhtay"}, {"datetaken": "2005-02-12 13:12:23", "license": "2", "title": "Portobello Road's colourful houses", "text": "", "album_id": "118065", "longitude": "-0.201767", "url_o": "https://farm1.staticflickr.com/3/4690314_d108b06c8f_o.jpg", "secret": "d108b06c8f", "media": "photo", "latitude": "51.512611", "id": "4690314", "tags": "london geotagged market portobello nottinghill own colouredhouses geolat51512611 geolon0201767"}, {"datetaken": "2005-02-12 13:34:28", "license": "2", "title": "Scraggy-haired man", "text": "", "album_id": "118065", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4690322_554e33d461_o.jpg", "secret": "554e33d461", "media": "photo", "latitude": "0", "id": "4690322", "tags": "bw haircut smile portobello nottinghill own"}, {"datetaken": "2005-02-12 13:37:05", "license": "2", "title": "Mum and boy", "text": "", "album_id": "118065", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4690339_d0f78365d2_o.jpg", "secret": "d0f78365d2", "media": "photo", "latitude": "0", "id": "4690339", "tags": "bw portobello nottinghill own"}, {"datetaken": "2005-02-12 13:41:46", "license": "2", "title": "Learning to dance", "text": "", "album_id": "118065", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4690357_1d8ba915ba_o.jpg", "secret": "1d8ba915ba", "media": "photo", "latitude": "0", "id": "4690357", "tags": "own portobello bw dance"}, {"datetaken": "2005-02-12 14:16:01", "license": "2", "title": "Peter the art seller", "text": "", "album_id": "118065", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4690372_6838c09e1b_o.jpg", "secret": "6838c09e1b", "media": "photo", "latitude": "0", "id": "4690372", "tags": "own portobello bw portrait laughterlines"}, {"datetaken": "2005-02-12 14:16:21", "license": "2", "title": "Peter the art seller again", "text": "", "album_id": "118065", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4690392_5fa70bf00d_o.jpg", "secret": "5fa70bf00d", "media": "photo", "latitude": "0", "id": "4690392", "tags": "own portobello bw portrait laughterlines"}, {"datetaken": "2005-02-12 14:32:55", "license": "2", "title": "Sunshine and showers", "text": "", "album_id": "118065", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4690408_9e6568a873_o.jpg", "secret": "9e6568a873", "media": "photo", "latitude": "0", "id": "4690408", "tags": "own portobello rain plastic blue droplets"}, {"datetaken": "2005-02-12 14:56:10", "license": "2", "title": "Colourful bowls", "text": "", "album_id": "118065", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4690426_286cb75c34_o.jpg", "secret": "286cb75c34", "media": "photo", "latitude": "0", "id": "4690426", "tags": "own portobello bowls cafe stack"}, {"datetaken": "2005-02-12 15:32:35", "license": "2", "title": "Cheeky look", "text": "", "album_id": "118065", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4690442_c3d042a6d4_o.jpg", "secret": "c3d042a6d4", "media": "photo", "latitude": "0", "id": "4690442", "tags": "bw eating portobello nottinghill own"}, {"datetaken": "2005-02-12 15:46:06", "license": "2", "title": "End of market day", "text": "", "album_id": "118065", "longitude": "-0.205122", "url_o": "https://farm1.staticflickr.com/5/4690461_ab4c0d501d_o.jpg", "secret": "ab4c0d501d", "media": "photo", "latitude": "51.515882", "id": "4690461", "tags": "bw walking geotagged kyla portobello nottinghill own geotoolyuancc geolat51515882 geolon0205122"}, {"datetaken": "2010-02-07 01:02:46", "license": "4", "title": "Welcoming remarks to P&G Family Home", "text": "", "album_id": "72157623421040528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4351068729_389ab7590b_o.jpg", "secret": "074608a973", "media": "photo", "latitude": "0", "id": "4351068729", "tags": "vancouver olympics 2010"}, {"datetaken": "2010-02-07 01:02:58", "license": "4", "title": "Kristi Yamaguchi, Julie Chu's mom", "text": "", "album_id": "72157623421040528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4351068719_abc8191f9d_o.jpg", "secret": "338c374f9f", "media": "photo", "latitude": "0", "id": "4351068719", "tags": "vancouver olympics 2010"}, {"datetaken": "2010-02-07 01:33:33", "license": "4", "title": "TEAM USA", "text": "", "album_id": "72157623421040528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2711/4351068717_029f8b78f8_o.jpg", "secret": "6f1543dfed", "media": "photo", "latitude": "0", "id": "4351068717", "tags": "vancouver olympics 2010"}, {"datetaken": "2010-02-07 01:36:41", "license": "4", "title": "Team USA", "text": "", "album_id": "72157623421040528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4351822050_9b705878af_o.jpg", "secret": "6627ef6736", "media": "photo", "latitude": "0", "id": "4351822050", "tags": "vancouver olympics 2010"}, {"datetaken": "2010-02-07 01:39:54", "license": "4", "title": "Games galore", "text": "", "album_id": "72157623421040528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2729/4351068711_13775804fd_o.jpg", "secret": "df5e812b09", "media": "photo", "latitude": "0", "id": "4351068711", "tags": "vancouver olympics 2010"}, {"datetaken": "2010-02-07 01:41:01", "license": "4", "title": "Bring in your laundry", "text": "", "album_id": "72157623421040528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4351068723_7233a88fc6_o.jpg", "secret": "e98d918dc7", "media": "photo", "latitude": "0", "id": "4351068723", "tags": "vancouver olympics 2010"}, {"datetaken": "2010-02-07 01:42:29", "license": "4", "title": "Olympic babies", "text": "", "album_id": "72157623421040528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4351822038_8effe56b6f_o.jpg", "secret": "94a90bd651", "media": "photo", "latitude": "0", "id": "4351822038", "tags": "vancouver olympics 2010"}, {"datetaken": "2010-02-07 01:48:19", "license": "4", "title": "P&G Family Home, spa", "text": "", "album_id": "72157623421040528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4351822044_e08a449633_o.jpg", "secret": "1bb0976fbb", "media": "photo", "latitude": "0", "id": "4351822044", "tags": "vancouver olympics 2010"}, {"datetaken": "2010-02-07 02:14:16", "license": "4", "title": "Luge Parents", "text": "", "album_id": "72157623421040528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4351068725_21abea6b61_o.jpg", "secret": "ea29d12d0b", "media": "photo", "latitude": "0", "id": "4351068725", "tags": "vancouver olympics 2010"}, {"datetaken": "2010-02-07 02:16:56", "license": "4", "title": "Grand Opening, P&G Family Home", "text": "", "album_id": "72157623421040528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/4351822032_b07c3b74c2_o.jpg", "secret": "c97372363d", "media": "photo", "latitude": "0", "id": "4351822032", "tags": "vancouver olympics 2010"}, {"datetaken": "2010-03-11 19:58:18", "license": "1", "title": "67/365 for 2010 Quilting Lancaster County", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2747/4425278431_8340c18da5_o.jpg", "secret": "c83293615a", "media": "photo", "latitude": "0", "id": "4425278431", "tags": "quilts lancastercounty project365"}, {"datetaken": "2010-03-11 21:13:26", "license": "1", "title": "68/365 for 2010 Lancaster County Farm", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4426043960_4c5b62cab9_o.jpg", "secret": "a023d495e7", "media": "photo", "latitude": "0", "id": "4426043960", "tags": "farm lancastercounty project365"}, {"datetaken": "2010-03-11 21:24:45", "license": "1", "title": "69/365 for 2010 Spreading Manure", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2717/4426044670_166e4ffe6d_o.jpg", "secret": "53703dcfd4", "media": "photo", "latitude": "0", "id": "4426044670", "tags": "amish lancastercounty project365"}, {"datetaken": "2010-03-11 21:27:36", "license": "1", "title": "Moyer's Book Barn, Strasburg, PA", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4524292097_3be7e69827_o.jpg", "secret": "96579ee23a", "media": "photo", "latitude": "0", "id": "4524292097", "tags": ""}, {"datetaken": "2010-03-11 21:59:24", "license": "1", "title": "70/365 for 2010 The Old Homestead", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4425280361_34008fa90c_o.jpg", "secret": "65915b7f31", "media": "photo", "latitude": "0", "id": "4425280361", "tags": "lancastercounty lampeter project365"}, {"datetaken": "2010-03-12 17:47:48", "license": "1", "title": "Montgomery House", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4467964380_d84964cc1c_o.jpg", "secret": "cce4d4d771", "media": "photo", "latitude": "0", "id": "4467964380", "tags": "county lancaster"}, {"datetaken": "2010-03-12 17:53:13", "license": "1", "title": "Thaddeus Stevens House", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2689/4467964576_f371e8bee8_o.jpg", "secret": "408fa9808b", "media": "photo", "latitude": "0", "id": "4467964576", "tags": "county lancaster"}, {"datetaken": "2010-03-12 17:55:07", "license": "1", "title": "Thaddeus Stevens House", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4467964734_f76ae796c1_o.jpg", "secret": "4119dd4cd0", "media": "photo", "latitude": "0", "id": "4467964734", "tags": "county lancaster"}, {"datetaken": "2010-03-12 18:51:40", "license": "1", "title": "Vistory Faces North", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4467191931_22d9904c31_o.jpg", "secret": "0b8e825626", "media": "photo", "latitude": "0", "id": "4467191931", "tags": "county lancaster"}, {"datetaken": "2010-03-12 18:52:02", "license": "1", "title": "Soldiers and Sailors Monument", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4467191741_4694e01fce_o.jpg", "secret": "189188b443", "media": "photo", "latitude": "0", "id": "4467191741", "tags": "county lancaster"}, {"datetaken": "2010-03-12 18:54:56", "license": "1", "title": "71/365 for 2010 Central Market", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4427751793_ce03f5a2b1_o.jpg", "secret": "0ceea0c533", "media": "photo", "latitude": "0", "id": "4427751793", "tags": "farmersmarket lancastercounty project365"}, {"datetaken": "2010-03-12 18:56:41", "license": "1", "title": "Central Market", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4467965446_165e0f050b_o.jpg", "secret": "90c2bfb2f6", "media": "photo", "latitude": "0", "id": "4467965446", "tags": "lancastercounty centralmarket"}, {"datetaken": "2010-03-12 18:56:41", "license": "1", "title": "P3120427", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4524937344_c14ffd4624_o.jpg", "secret": "f96ff53985", "media": "photo", "latitude": "0", "id": "4524937344", "tags": ""}, {"datetaken": "2010-03-12 18:59:56", "license": "1", "title": "Central Market", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4467965708_7ffa158fb7_o.jpg", "secret": "23c16d83c2", "media": "photo", "latitude": "0", "id": "4467965708", "tags": "lancastercounty centralmarket"}, {"datetaken": "2010-03-12 18:59:56", "license": "1", "title": "P3120429", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4524308419_7c01ef9670_o.jpg", "secret": "08def4408f", "media": "photo", "latitude": "0", "id": "4524308419", "tags": ""}, {"datetaken": "2010-03-12 19:22:55", "license": "1", "title": "Fulton Opera House", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4467966062_bc97cc22b8_o.jpg", "secret": "d3ed6168b4", "media": "photo", "latitude": "0", "id": "4467966062", "tags": "lancastercounty fultonoperahouse"}, {"datetaken": "2010-03-12 19:23:07", "license": "1", "title": "Fulton Opera House", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2703/4467193341_cb54c6c63c_o.jpg", "secret": "78b5069434", "media": "photo", "latitude": "0", "id": "4467193341", "tags": "lancastercounty fultonoperahouse"}, {"datetaken": "2010-03-12 19:23:17", "license": "1", "title": "Fulton Opera House", "text": "", "album_id": "72157623714894246", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4467193103_8cb5023f3d_o.jpg", "secret": "c718ac4e3b", "media": "photo", "latitude": "0", "id": "4467193103", "tags": "lancastercounty fultonoperahouse"}, {"datetaken": "2007-07-11 23:50:19", "license": "6", "title": "interior", "text": "", "album_id": "72157600773345228", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1284/784295046_203d51749b_o.jpg", "secret": "2a36150126", "media": "photo", "latitude": "0", "id": "784295046", "tags": ""}, {"datetaken": "2007-07-11 23:50:20", "license": "6", "title": "Royal Chapel", "text": "", "album_id": "72157600773345228", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1271/784295170_61042d7f20_o.jpg", "secret": "3520b99397", "media": "photo", "latitude": "0", "id": "784295170", "tags": ""}, {"datetaken": "2007-07-11 23:50:21", "license": "6", "title": "Hall of Mirrors", "text": "", "album_id": "72157600773345228", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1013/783418723_e6f8867d76_o.jpg", "secret": "d72f2aa7e6", "media": "photo", "latitude": "0", "id": "783418723", "tags": ""}, {"datetaken": "2007-07-11 23:50:21", "license": "6", "title": "Hall of Mirrors 2", "text": "", "album_id": "72157600773345228", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1320/783418799_b12eeee1f1_o.jpg", "secret": "f29060eb59", "media": "photo", "latitude": "0", "id": "783418799", "tags": ""}, {"datetaken": "2007-07-11 23:50:22", "license": "6", "title": "Hall", "text": "", "album_id": "72157600773345228", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1177/783418909_bb950b1fa4_o.jpg", "secret": "aca4e67a34", "media": "photo", "latitude": "0", "id": "783418909", "tags": ""}, {"datetaken": "2007-07-11 23:50:24", "license": "6", "title": "Hall of Mirrors 3", "text": "", "album_id": "72157600773345228", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1290/783419093_6638efaa6b_o.jpg", "secret": "d4cbc31d9e", "media": "photo", "latitude": "0", "id": "783419093", "tags": ""}, {"datetaken": "2007-07-11 23:50:25", "license": "6", "title": "Versailles alley market", "text": "", "album_id": "72157600773345228", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1415/783419245_3b2794a59e_o.jpg", "secret": "c2d8fef5d7", "media": "photo", "latitude": "0", "id": "783419245", "tags": ""}, {"datetaken": "2007-07-11 23:50:26", "license": "6", "title": "King Louis XIV Statue", "text": "", "album_id": "72157600773345228", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1105/783419383_79e641fc61_o.jpg", "secret": "3f7a88e260", "media": "photo", "latitude": "0", "id": "783419383", "tags": ""}, {"datetaken": "2007-07-11 23:50:26", "license": "6", "title": "Maggie and I", "text": "", "album_id": "72157600773345228", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1065/783419493_4f9e8d73c3_o.jpg", "secret": "49bc26de09", "media": "photo", "latitude": "0", "id": "783419493", "tags": ""}, {"datetaken": "2007-07-11 23:50:27", "license": "6", "title": "Part of the open air market", "text": "", "album_id": "72157600773345228", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1397/784296256_d8f1b974dd_o.jpg", "secret": "ab191c975e", "media": "photo", "latitude": "0", "id": "784296256", "tags": ""}, {"datetaken": "2008-09-05 18:52:20", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2736/4272870702_0fe87af14b_o.jpg", "secret": "cd9692c5d6", "media": "photo", "latitude": "0", "id": "4272870702", "tags": ""}, {"datetaken": "2008-09-05 18:52:34", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4272130395_9c24fb66ee_o.jpg", "secret": "424d32e908", "media": "photo", "latitude": "0", "id": "4272130395", "tags": ""}, {"datetaken": "2008-09-05 18:56:31", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4272131075_6ddac8ca33_o.jpg", "secret": "4439ff8456", "media": "photo", "latitude": "0", "id": "4272131075", "tags": ""}, {"datetaken": "2008-09-05 18:56:42", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4272873098_37854a0ba0_o.jpg", "secret": "f1cdbda339", "media": "photo", "latitude": "0", "id": "4272873098", "tags": ""}, {"datetaken": "2008-09-05 18:57:00", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4272873712_efe238c45a_o.jpg", "secret": "cca2b54530", "media": "photo", "latitude": "0", "id": "4272873712", "tags": ""}, {"datetaken": "2008-09-05 18:57:18", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4272132929_1ed4fe4b98_o.jpg", "secret": "acfa359f7a", "media": "photo", "latitude": "0", "id": "4272132929", "tags": ""}, {"datetaken": "2008-09-05 18:57:49", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4272134213_f8313ec1f2_o.jpg", "secret": "7020c56797", "media": "photo", "latitude": "0", "id": "4272134213", "tags": ""}, {"datetaken": "2008-09-05 18:59:14", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4272135271_dcab7400ba_o.jpg", "secret": "7cacf5fbfe", "media": "photo", "latitude": "0", "id": "4272135271", "tags": ""}, {"datetaken": "2008-09-05 19:00:20", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4272877118_5791f9dded_o.jpg", "secret": "9db0fab433", "media": "photo", "latitude": "0", "id": "4272877118", "tags": ""}, {"datetaken": "2008-09-05 19:00:29", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4272136507_c341b0f3de_o.jpg", "secret": "c663738941", "media": "photo", "latitude": "0", "id": "4272136507", "tags": ""}, {"datetaken": "2008-09-05 19:01:31", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2706/4272878224_c00e2fa627_o.jpg", "secret": "7d3bb70605", "media": "photo", "latitude": "0", "id": "4272878224", "tags": ""}, {"datetaken": "2008-09-05 19:01:58", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4272878934_05c34b1e96_o.jpg", "secret": "c0d8668bab", "media": "photo", "latitude": "0", "id": "4272878934", "tags": ""}, {"datetaken": "2008-09-05 19:02:26", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4272138887_3c20cb06e8_o.jpg", "secret": "eb3db83c34", "media": "photo", "latitude": "0", "id": "4272138887", "tags": ""}, {"datetaken": "2008-09-05 19:03:09", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4272880598_6b996422eb_o.jpg", "secret": "21b5eebf7a", "media": "photo", "latitude": "0", "id": "4272880598", "tags": ""}, {"datetaken": "2008-09-05 19:03:15", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2719/4272881224_9a7f4d7039_o.jpg", "secret": "0c1e2d759b", "media": "photo", "latitude": "0", "id": "4272881224", "tags": ""}, {"datetaken": "2008-09-05 19:03:33", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4272140663_3b0b23f25a_o.jpg", "secret": "47050f4025", "media": "photo", "latitude": "0", "id": "4272140663", "tags": ""}, {"datetaken": "2008-09-05 19:21:29", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4272882572_2beb00962f_o.jpg", "secret": "5c98a1283f", "media": "photo", "latitude": "0", "id": "4272882572", "tags": ""}, {"datetaken": "2008-09-05 19:21:45", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4272142653_715e028c41_o.jpg", "secret": "050f7cecd4", "media": "photo", "latitude": "0", "id": "4272142653", "tags": ""}, {"datetaken": "2008-09-05 19:59:04", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4272143587_755bc2d4db_o.jpg", "secret": "7f523046ff", "media": "photo", "latitude": "0", "id": "4272143587", "tags": ""}, {"datetaken": "2008-09-05 20:03:45", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4272144501_c21ec22d9d_o.jpg", "secret": "b40d1e565b", "media": "photo", "latitude": "0", "id": "4272144501", "tags": ""}, {"datetaken": "2008-09-05 20:13:07", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4272886470_be70830819_o.jpg", "secret": "e82431860c", "media": "photo", "latitude": "0", "id": "4272886470", "tags": ""}, {"datetaken": "2008-09-05 20:13:33", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4272146249_01017c7bef_o.jpg", "secret": "32fa9fe593", "media": "photo", "latitude": "0", "id": "4272146249", "tags": ""}, {"datetaken": "2008-09-05 20:16:02", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4272147145_1dfddd36f0_o.jpg", "secret": "323f874564", "media": "photo", "latitude": "0", "id": "4272147145", "tags": ""}, {"datetaken": "2008-09-05 20:21:27", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4272889164_4549020ebf_o.jpg", "secret": "3648768215", "media": "photo", "latitude": "0", "id": "4272889164", "tags": ""}, {"datetaken": "2008-09-05 20:22:04", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4272148613_1db1608ebd_o.jpg", "secret": "e4ab7ac18b", "media": "photo", "latitude": "0", "id": "4272148613", "tags": ""}, {"datetaken": "2008-09-05 20:24:54", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2788/4272149217_1b34d97ac3_o.jpg", "secret": "f1baee7bd6", "media": "photo", "latitude": "0", "id": "4272149217", "tags": ""}, {"datetaken": "2008-09-05 20:25:14", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4272149865_893cb4b6c1_o.jpg", "secret": "3425cd1472", "media": "photo", "latitude": "0", "id": "4272149865", "tags": ""}, {"datetaken": "2008-09-05 20:26:38", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2802/4272150963_df9c752d59_o.jpg", "secret": "e0b68c9b83", "media": "photo", "latitude": "0", "id": "4272150963", "tags": ""}, {"datetaken": "2008-09-05 20:44:36", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4272892758_136626e607_o.jpg", "secret": "59e4bd8606", "media": "photo", "latitude": "0", "id": "4272892758", "tags": ""}, {"datetaken": "2008-09-05 20:53:46", "license": "2", "title": "Art Market", "text": "", "album_id": "72157623205073294", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/4272152531_e1b26b7248_o.jpg", "secret": "329e72d4a1", "media": "photo", "latitude": "0", "id": "4272152531", "tags": ""}, {"datetaken": "2010-03-14 08:37:21", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2709/4432427036_cd965a2209_o.jpg", "secret": "7d9c4cb682", "media": "photo", "latitude": "0", "id": "4432427036", "tags": ""}, {"datetaken": "2010-03-14 08:37:24", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4432427190_d7dbeb6962_o.jpg", "secret": "1efd5f56d3", "media": "photo", "latitude": "0", "id": "4432427190", "tags": ""}, {"datetaken": "2010-03-14 08:37:28", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4432427376_f6031cee00_o.jpg", "secret": "31fdea2d4c", "media": "photo", "latitude": "0", "id": "4432427376", "tags": ""}, {"datetaken": "2010-03-14 08:37:32", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4432427534_55c3b533b3_o.jpg", "secret": "770d4ceccf", "media": "photo", "latitude": "0", "id": "4432427534", "tags": ""}, {"datetaken": "2010-03-14 08:37:36", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4431657375_1ff0fec614_o.jpg", "secret": "eb6fb4e264", "media": "photo", "latitude": "0", "id": "4431657375", "tags": ""}, {"datetaken": "2010-03-14 08:37:40", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2792/4432427938_c1f1e4a288_o.jpg", "secret": "484a4c28c4", "media": "photo", "latitude": "0", "id": "4432427938", "tags": ""}, {"datetaken": "2010-03-14 08:37:45", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2695/4432428142_d0f7bcbf9f_o.jpg", "secret": "1651b1414c", "media": "photo", "latitude": "0", "id": "4432428142", "tags": ""}, {"datetaken": "2010-03-14 08:37:49", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4432428332_1a40a4c446_o.jpg", "secret": "0c20f9d90c", "media": "photo", "latitude": "0", "id": "4432428332", "tags": ""}, {"datetaken": "2010-03-14 08:37:53", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4431658063_33f910d8fe_o.jpg", "secret": "d22fac66a7", "media": "photo", "latitude": "0", "id": "4431658063", "tags": ""}, {"datetaken": "2010-03-14 08:37:57", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4431658255_9c5d3f0d41_o.jpg", "secret": "df09f88d76", "media": "photo", "latitude": "0", "id": "4431658255", "tags": ""}, {"datetaken": "2010-03-14 08:38:01", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4432428876_02ca429cc4_o.jpg", "secret": "bb616f990e", "media": "photo", "latitude": "0", "id": "4432428876", "tags": ""}, {"datetaken": "2010-03-14 08:38:05", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4432429052_0f4011f8b1_o.jpg", "secret": "2f00ab8ef0", "media": "photo", "latitude": "0", "id": "4432429052", "tags": ""}, {"datetaken": "2010-03-14 08:38:09", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2692/4432429286_347c8d84de_o.jpg", "secret": "3cf50d1f9d", "media": "photo", "latitude": "0", "id": "4432429286", "tags": ""}, {"datetaken": "2010-03-14 08:38:13", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4432429460_c065a51697_o.jpg", "secret": "ed119ffa4c", "media": "photo", "latitude": "0", "id": "4432429460", "tags": ""}, {"datetaken": "2010-03-14 08:38:17", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2792/4432429652_7078ab0d5e_o.jpg", "secret": "64c7c01818", "media": "photo", "latitude": "0", "id": "4432429652", "tags": ""}, {"datetaken": "2010-03-14 08:38:23", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4432429888_e186908584_o.jpg", "secret": "e87cb93b80", "media": "photo", "latitude": "0", "id": "4432429888", "tags": ""}, {"datetaken": "2010-03-14 08:38:27", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4431659537_54c57346d9_o.jpg", "secret": "9587cf1040", "media": "photo", "latitude": "0", "id": "4431659537", "tags": ""}, {"datetaken": "2010-03-14 08:38:31", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4431659755_b9b942afd6_o.jpg", "secret": "be46cc7f1d", "media": "photo", "latitude": "0", "id": "4431659755", "tags": ""}, {"datetaken": "2010-03-14 08:38:36", "license": "4", "title": "Sunday market in Paris: all organic food", "text": "", "album_id": "72157623493523479", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2789/4432430396_b1fab94466_o.jpg", "secret": "d65bf96b33", "media": "photo", "latitude": "0", "id": "4432430396", "tags": ""}, {"datetaken": "2010-03-14 12:41:16", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4431168653_1fca9c4770_o.jpg", "secret": "88edb0ee75", "media": "photo", "latitude": "0", "id": "4431168653", "tags": ""}, {"datetaken": "2010-03-14 12:41:20", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4431939584_cf8767a360_o.jpg", "secret": "3348218010", "media": "photo", "latitude": "0", "id": "4431939584", "tags": ""}, {"datetaken": "2010-03-14 12:41:24", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4431939662_7436df2a24_o.jpg", "secret": "09a94e163b", "media": "photo", "latitude": "0", "id": "4431939662", "tags": ""}, {"datetaken": "2010-03-14 12:41:26", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4431939722_b069e8d1c4_o.jpg", "secret": "6e0e8fe5fe", "media": "photo", "latitude": "0", "id": "4431939722", "tags": ""}, {"datetaken": "2010-03-14 12:41:30", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4431939832_67fd33b9ed_o.jpg", "secret": "cf60f12e50", "media": "photo", "latitude": "0", "id": "4431939832", "tags": ""}, {"datetaken": "2010-03-14 12:41:35", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2791/4431939930_a46ffd1394_o.jpg", "secret": "de60a0563c", "media": "photo", "latitude": "0", "id": "4431939930", "tags": ""}, {"datetaken": "2010-03-14 12:41:39", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4431940028_30ddf5ea93_o.jpg", "secret": "80706a1958", "media": "photo", "latitude": "0", "id": "4431940028", "tags": ""}, {"datetaken": "2010-03-14 12:41:43", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2735/4431940126_ed0b34844d_o.jpg", "secret": "2b3678a29f", "media": "photo", "latitude": "0", "id": "4431940126", "tags": ""}, {"datetaken": "2010-03-14 12:41:47", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4431940214_225b7a0f01_o.jpg", "secret": "c6a5d91d47", "media": "photo", "latitude": "0", "id": "4431940214", "tags": ""}, {"datetaken": "2010-03-14 12:41:51", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2706/4431940282_b8e5af86b9_o.jpg", "secret": "4391085654", "media": "photo", "latitude": "0", "id": "4431940282", "tags": ""}, {"datetaken": "2010-03-14 12:41:55", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4431940384_9f9b4475be_o.jpg", "secret": "c0c9ceda15", "media": "photo", "latitude": "0", "id": "4431940384", "tags": ""}, {"datetaken": "2010-03-14 12:41:59", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4431940498_3d20229eac_o.jpg", "secret": "f663944746", "media": "photo", "latitude": "0", "id": "4431940498", "tags": ""}, {"datetaken": "2010-03-14 12:42:02", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4431940574_4698fabcb5_o.jpg", "secret": "4001723276", "media": "photo", "latitude": "0", "id": "4431940574", "tags": ""}, {"datetaken": "2010-03-14 12:42:07", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4431169787_673b4cfdf9_o.jpg", "secret": "3e784a587a", "media": "photo", "latitude": "0", "id": "4431169787", "tags": ""}, {"datetaken": "2010-03-14 12:42:11", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/4431169897_ec2bfe69c8_o.jpg", "secret": "4a46fcb36c", "media": "photo", "latitude": "0", "id": "4431169897", "tags": ""}, {"datetaken": "2010-03-14 12:42:15", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4431940892_8dd3446d28_o.jpg", "secret": "8468abf837", "media": "photo", "latitude": "0", "id": "4431940892", "tags": ""}, {"datetaken": "2010-03-14 12:42:19", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4431940990_0d94c1419b_o.jpg", "secret": "419caec36e", "media": "photo", "latitude": "0", "id": "4431940990", "tags": ""}, {"datetaken": "2010-03-14 12:42:23", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4431941072_6952aec397_o.jpg", "secret": "2aa735d360", "media": "photo", "latitude": "0", "id": "4431941072", "tags": ""}, {"datetaken": "2010-03-14 12:42:27", "license": "1", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "text": "", "album_id": "72157623616942902", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4431941164_b27229e28e_o.jpg", "secret": "8ae1dd8d39", "media": "photo", "latitude": "0", "id": "4431941164", "tags": ""}, {"datetaken": "2012-01-15 11:49:06", "license": "2", "title": "St Johns and Shard", "text": "", "album_id": "72157628884198187", "longitude": "-0.113060", "url_o": "https://farm8.staticflickr.com/7007/6702997213_ca3177fa03_o.jpg", "secret": "665e2e4467", "media": "photo", "latitude": "51.504348", "id": "6702997213", "tags": "bus london church architecture shard ssc newandold"}, {"datetaken": "2012-01-15 11:49:12", "license": "2", "title": "Curtain Road", "text": "", "album_id": "72157628884198187", "longitude": "-0.080348", "url_o": "https://farm8.staticflickr.com/7172/6702997875_6ef9917e09_o.jpg", "secret": "ab044b16a7", "media": "photo", "latitude": "51.526734", "id": "6702997875", "tags": "london cityoflondon ssc 30sma herontower"}, {"datetaken": "2012-01-15 11:49:19", "license": "2", "title": "Shard", "text": "", "album_id": "72157628884198187", "longitude": "-0.084017", "url_o": "https://farm8.staticflickr.com/7161/6702998603_9feeb25dca_o.jpg", "secret": "8fa45187be", "media": "photo", "latitude": "51.524845", "id": "6702998603", "tags": "london shard ssc"}, {"datetaken": "2012-01-15 11:49:41", "license": "2", "title": "Tower 42 and Shard", "text": "", "album_id": "72157628884198187", "longitude": "-0.084382", "url_o": "https://farm8.staticflickr.com/7155/6703001055_714ee656fb_o.jpg", "secret": "8d7ed85759", "media": "photo", "latitude": "51.523223", "id": "6703001055", "tags": "london shard tower42 cityoflondon ssc"}, {"datetaken": "2012-01-15 11:49:44", "license": "2", "title": "Shard", "text": "", "album_id": "72157628884198187", "longitude": "-0.084360", "url_o": "https://farm8.staticflickr.com/7149/6703001333_5d9606d95f_o.jpg", "secret": "b23dde7e17", "media": "photo", "latitude": "51.523217", "id": "6703001333", "tags": "london shard ssc"}, {"datetaken": "2012-01-15 11:50:00", "license": "2", "title": "Wilson Street", "text": "", "album_id": "72157628884198187", "longitude": "-0.085262", "url_o": "https://farm8.staticflickr.com/7165/6703003089_c9281df6a6_o.jpg", "secret": "ee3d8e1b9b", "media": "photo", "latitude": "51.520139", "id": "6703003089", "tags": "london architecture ssc"}, {"datetaken": "2012-01-15 11:50:17", "license": "2", "title": "Wilson Street", "text": "", "album_id": "72157628884198187", "longitude": "-0.085326", "url_o": "https://farm8.staticflickr.com/7152/6703004765_c19197fac1_o.jpg", "secret": "f92e747f64", "media": "photo", "latitude": "51.519999", "id": "6703004765", "tags": "london architecture ssc"}, {"datetaken": "2012-01-15 11:50:42", "license": "2", "title": "Heron Tower", "text": "", "album_id": "72157628884198187", "longitude": "-0.084124", "url_o": "https://farm8.staticflickr.com/7002/6703007129_0cf37f387b_o.jpg", "secret": "9bf03b2e46", "media": "photo", "latitude": "51.517989", "id": "6703007129", "tags": "london cityoflondon ssc herontower"}, {"datetaken": "2012-01-15 11:50:49", "license": "2", "title": "Skyline from Liverpool Street", "text": "", "album_id": "72157628884198187", "longitude": "-0.082944", "url_o": "https://farm8.staticflickr.com/7170/6703007833_ef7d4a3ee9_o.jpg", "secret": "f438a2c31a", "media": "photo", "latitude": "51.517636", "id": "6703007833", "tags": "london architecture tower42 cityoflondon ssc 30sma herontower"}, {"datetaken": "2012-01-15 11:50:52", "license": "2", "title": "Heron Tower", "text": "", "album_id": "72157628884198187", "longitude": "-0.082408", "url_o": "https://farm8.staticflickr.com/7157/6703008187_6dab98099f_o.jpg", "secret": "17a78bdb31", "media": "photo", "latitude": "51.517402", "id": "6703008187", "tags": "london architecture ssc herontower"}, {"datetaken": "2012-01-15 11:50:59", "license": "2", "title": "Heron Tower", "text": "", "album_id": "72157628884198187", "longitude": "-0.081678", "url_o": "https://farm8.staticflickr.com/7155/6703008889_760ee2f519_o.jpg", "secret": "3df80363ca", "media": "photo", "latitude": "51.516247", "id": "6703008889", "tags": "london architecture night cityoflondon ssc 30sma herontower"}, {"datetaken": "2012-01-15 11:51:03", "license": "2", "title": "Heron Tower", "text": "", "album_id": "72157628884198187", "longitude": "-0.081528", "url_o": "https://farm8.staticflickr.com/7021/6703009357_05e50eb032_o.jpg", "secret": "5fc09b41a7", "media": "photo", "latitude": "51.516133", "id": "6703009357", "tags": "london architecture night ssc herontower"}, {"datetaken": "2012-01-15 11:51:11", "license": "2", "title": "Heron Tower", "text": "", "album_id": "72157628884198187", "longitude": "-0.081228", "url_o": "https://farm8.staticflickr.com/7171/6703010137_e4b9f689f7_o.jpg", "secret": "e8573774d6", "media": "photo", "latitude": "51.515913", "id": "6703010137", "tags": "london night ssc herontower"}, {"datetaken": "2012-01-15 11:51:45", "license": "2", "title": "Willis, Shard and Lloyds", "text": "", "album_id": "72157628884198187", "longitude": "-0.081099", "url_o": "https://farm8.staticflickr.com/7030/6703013391_0476d80e78_o.jpg", "secret": "5fb85d88f3", "media": "photo", "latitude": "51.514197", "id": "6703013391", "tags": "london architecture night shard lloyds cityoflondon ssc"}, {"datetaken": "2012-01-15 11:51:50", "license": "2", "title": "122 Leadenhall and Pinnacle cranes", "text": "", "album_id": "72157628884198187", "longitude": "-0.081335", "url_o": "https://farm8.staticflickr.com/7156/6703013999_bb44129a78_o.jpg", "secret": "4e72d8a1ff", "media": "photo", "latitude": "51.513897", "id": "6703013999", "tags": "london night cityoflondon ssc 122lh"}, {"datetaken": "2012-01-15 11:51:59", "license": "2", "title": "Panorama from St Mary Axe", "text": "", "album_id": "72157628884198187", "longitude": "-0.081378", "url_o": "https://farm8.staticflickr.com/7152/6703014877_275454c976_o.jpg", "secret": "8b286fea4d", "media": "photo", "latitude": "51.513770", "id": "6703014877", "tags": "panorama london architecture night lloyds cityoflondon ssc newandold 122lh"}, {"datetaken": "2012-01-15 11:52:03", "license": "2", "title": "122 Leadenhall / Pinnacle sites", "text": "", "album_id": "72157628884198187", "longitude": "-0.081313", "url_o": "https://farm8.staticflickr.com/7145/6703015321_66d75f4f32_o.jpg", "secret": "f735119d5d", "media": "photo", "latitude": "51.513857", "id": "6703015321", "tags": "london night tower42 cityoflondon ssc 122lh"}, {"datetaken": "2012-01-15 11:52:06", "license": "2", "title": "Leadenhall Market", "text": "", "album_id": "72157628884198187", "longitude": "-0.082257", "url_o": "https://farm8.staticflickr.com/7169/6703015717_acc980de11_o.jpg", "secret": "6075386456", "media": "photo", "latitude": "51.512601", "id": "6703015717", "tags": "london architecture night lloyds cityoflondon ssc"}, {"datetaken": "2012-01-15 11:52:10", "license": "2", "title": "Shard", "text": "", "album_id": "72157628884198187", "longitude": "-0.083867", "url_o": "https://farm8.staticflickr.com/7150/6703016085_4675fe75be_o.jpg", "secret": "8558560eca", "media": "photo", "latitude": "51.511593", "id": "6703016085", "tags": "london night shard ssc"}, {"datetaken": "2012-01-15 11:52:15", "license": "2", "title": "Sunset from London Bridge", "text": "", "album_id": "72157628884198187", "longitude": "-0.087558", "url_o": "https://farm8.staticflickr.com/7170/6703016603_0aa52e9781_o.jpg", "secret": "3b93cb6433", "media": "photo", "latitude": "51.508268", "id": "6703016603", "tags": "road sunset sky london"}, {"datetaken": "2005-05-15 19:35:20", "license": "1", "title": "Radishes", "text": "", "album_id": "342772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14050866_3d8914a9b2_o.jpg", "secret": "3d8914a9b2", "media": "photo", "latitude": "0", "id": "14050866", "tags": "dc tombridge market produce"}, {"datetaken": "2005-05-15 19:35:21", "license": "1", "title": "Tall Bread", "text": "", "album_id": "342772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14051378_a3b65b764c_o.jpg", "secret": "a3b65b764c", "media": "photo", "latitude": "0", "id": "14051378", "tags": "dc tombridge market bread"}, {"datetaken": "2005-05-15 19:35:23", "license": "1", "title": "Marigolds", "text": "", "album_id": "342772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14050311_949d5b347c_o.jpg", "secret": "949d5b347c", "media": "photo", "latitude": "0", "id": "14050311", "tags": "dc tombridge market flower"}, {"datetaken": "2005-05-15 19:35:24", "license": "1", "title": "Soap!", "text": "", "album_id": "342772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14051079_12781df64a_o.jpg", "secret": "12781df64a", "media": "photo", "latitude": "0", "id": "14051079", "tags": "dc tombridge market soap"}, {"datetaken": "2005-05-15 19:35:25", "license": "1", "title": "Polka Dot Soap", "text": "", "album_id": "342772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14050492_83e6f85b0e_o.jpg", "secret": "83e6f85b0e", "media": "photo", "latitude": "0", "id": "14050492", "tags": "dc tombridge market soap"}, {"datetaken": "2005-05-15 19:35:27", "license": "1", "title": "Little White Mushrooms", "text": "", "album_id": "342772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14052128_9ac9bb0470_o.jpg", "secret": "9ac9bb0470", "media": "photo", "latitude": "0", "id": "14052128", "tags": "dc tombridge market produce"}, {"datetaken": "2005-05-15 19:35:30", "license": "1", "title": "Peony", "text": "", "album_id": "342772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14050410_e4cbfd6c93_o.jpg", "secret": "e4cbfd6c93", "media": "photo", "latitude": "0", "id": "14050410", "tags": "dc tombridge market flower"}, {"datetaken": "2005-05-15 19:35:31", "license": "1", "title": "Strawberries", "text": "", "album_id": "342772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14051201_d430ef2564_o.jpg", "secret": "d430ef2564", "media": "photo", "latitude": "0", "id": "14051201", "tags": "dc tombridge market produce"}, {"datetaken": "2005-05-15 19:35:33", "license": "1", "title": "Berries two", "text": "", "album_id": "342772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14051516_9111ffcdfd_o.jpg", "secret": "9111ffcdfd", "media": "photo", "latitude": "0", "id": "14051516", "tags": "dc tombridge market produce"}, {"datetaken": "2005-05-15 19:35:34", "license": "1", "title": "Jam Jars", "text": "", "album_id": "342772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14051990_0f2cc33154_o.jpg", "secret": "0f2cc33154", "media": "photo", "latitude": "0", "id": "14051990", "tags": "dc tombridge market produce"}, {"datetaken": "2005-05-15 19:35:36", "license": "1", "title": "Purple Flower Basket", "text": "", "album_id": "342772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14050660_627c1ad5d2_o.jpg", "secret": "627c1ad5d2", "media": "photo", "latitude": "0", "id": "14050660", "tags": "dc tombridge market produce"}, {"datetaken": "2005-05-15 19:35:38", "license": "1", "title": "Courthouse Morning Glory", "text": "", "album_id": "342772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14051663_a4d3237e22_o.jpg", "secret": "a4d3237e22", "media": "photo", "latitude": "0", "id": "14051663", "tags": "dc tombridge market produce"}, {"datetaken": "2005-05-15 19:35:40", "license": "1", "title": "Soap Artisan", "text": "", "album_id": "342772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14050980_938e98e042_o.jpg", "secret": "938e98e042", "media": "photo", "latitude": "0", "id": "14050980", "tags": "dc tombridge market soap"}, {"datetaken": "2005-05-15 19:35:41", "license": "1", "title": "Courthouse", "text": "", "album_id": "342772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14051885_445abbd0d2_o.jpg", "secret": "445abbd0d2", "media": "photo", "latitude": "0", "id": "14051885", "tags": "dc tombridge market"}, {"datetaken": "2005-02-16 20:27:12", "license": "3", "title": "1 state-wide-watch", "text": "", "album_id": "123763", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4916746_30fcb6fcab_o.jpg", "secret": "30fcb6fcab", "media": "photo", "latitude": "0", "id": "4916746", "tags": "severeweatherawarenessweek nationalweatherservice 2005 drill screencapture"}, {"datetaken": "2005-02-16 20:27:12", "license": "3", "title": "2 tennessee-is-in-trouble", "text": "", "album_id": "123763", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4916745_9c14216721_o.jpg", "secret": "9c14216721", "media": "photo", "latitude": "0", "id": "4916745", "tags": "severeweatherawarenessweek nationalweatherservice 2005 drill screencapture"}, {"datetaken": "2005-02-16 20:27:12", "license": "3", "title": "3 it-gets-worse", "text": "", "album_id": "123763", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4916752_ee236e4517_o.jpg", "secret": "ee236e4517", "media": "photo", "latitude": "0", "id": "4916752", "tags": "severeweatherawarenessweek nationalweatherservice 2005 drill screencapture"}, {"datetaken": "2005-02-16 20:27:12", "license": "3", "title": "4 not-looking-good", "text": "", "album_id": "123763", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4916747_732fc70e68_o.jpg", "secret": "732fc70e68", "media": "photo", "latitude": "0", "id": "4916747", "tags": "severeweatherawarenessweek nationalweatherservice 2005 drill screencapture"}, {"datetaken": "2005-02-16 20:27:12", "license": "3", "title": "5 it-couldn't-get-worse", "text": "", "album_id": "123763", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4916748_1f3eea635f_o.jpg", "secret": "1f3eea635f", "media": "photo", "latitude": "0", "id": "4916748", "tags": "severeweatherawarenessweek nationalweatherservice 2005 drill screencapture"}, {"datetaken": "2005-02-16 20:27:12", "license": "3", "title": "6 it-got-worse", "text": "", "album_id": "123763", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4916753_e7724c4972_o.jpg", "secret": "e7724c4972", "media": "photo", "latitude": "0", "id": "4916753", "tags": "severeweatherawarenessweek nationalweatherservice 2005 drill screencapture"}, {"datetaken": "2005-02-16 20:52:10", "license": "3", "title": "7 we-survived", "text": "", "album_id": "123763", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4917866_c2a02fd74a_o.jpg", "secret": "c2a02fd74a", "media": "photo", "latitude": "0", "id": "4917866", "tags": "weather nationalweatherservice"}, {"datetaken": "2005-02-16 20:52:10", "license": "3", "title": "2004-07-06_gustnado01", "text": "", "album_id": "123763", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4917865_acd5b6d246_o.jpg", "secret": "acd5b6d246", "media": "photo", "latitude": "0", "id": "4917865", "tags": "weather nationalweatherservice"}, {"datetaken": "2005-02-16 20:52:10", "license": "3", "title": "2004-07-06_gustnado02", "text": "", "album_id": "123763", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4917864_eb6f6f3430_o.jpg", "secret": "eb6f6f3430", "media": "photo", "latitude": "0", "id": "4917864", "tags": "weather nationalweatherservice"}, {"datetaken": "2005-02-16 20:52:10", "license": "3", "title": "2004_0714_gustfront_edgewater", "text": "", "album_id": "123763", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4917868_f57dbdeede_o.jpg", "secret": "f57dbdeede", "media": "photo", "latitude": "0", "id": "4917868", "tags": "weather nationalweatherservice"}, {"datetaken": "2005-02-16 20:52:10", "license": "3", "title": "BSBA1-turnaround-SM", "text": "", "album_id": "123763", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4917870_f8e64bcf56_o.jpg", "secret": "f8e64bcf56", "media": "photo", "latitude": "0", "id": "4917870", "tags": "weather nationalweatherservice"}, {"datetaken": "2010-01-16 14:22:17", "license": "1", "title": "Freedom Monument", "text": "", "album_id": "72157623221299462", "longitude": "24.105978", "url_o": "https://farm5.staticflickr.com/4039/4278469199_454dcfac7b_o.jpg", "secret": "67e2e160f3", "media": "photo", "latitude": "56.954874", "id": "4278469199", "tags": "latvia riga"}, {"datetaken": "2010-01-16 14:23:37", "license": "1", "title": "Winter", "text": "", "album_id": "72157623221299462", "longitude": "24.105978", "url_o": "https://farm5.staticflickr.com/4002/4279217328_12b07d9a16_o.jpg", "secret": "de7cb2f966", "media": "photo", "latitude": "56.954874", "id": "4279217328", "tags": ""}, {"datetaken": "2010-01-16 14:23:42", "license": "1", "title": "Winter", "text": "", "album_id": "72157623221299462", "longitude": "24.105978", "url_o": "https://farm3.staticflickr.com/2743/4279217616_d523fd438e_o.jpg", "secret": "be98981347", "media": "photo", "latitude": "56.954874", "id": "4279217616", "tags": "latvia riga"}, {"datetaken": "2010-01-16 14:25:08", "license": "1", "title": "Bridge", "text": "", "album_id": "72157623221299462", "longitude": "24.105978", "url_o": "https://farm3.staticflickr.com/2800/4279217880_5a516a2170_o.jpg", "secret": "c50256ccde", "media": "photo", "latitude": "56.954874", "id": "4279217880", "tags": "latvia riga"}, {"datetaken": "2010-01-16 14:27:07", "license": "1", "title": "Fractal", "text": "", "album_id": "72157623221299462", "longitude": "24.105978", "url_o": "https://farm5.staticflickr.com/4007/4279218148_4d36828874_o.jpg", "secret": "8187e380fa", "media": "photo", "latitude": "56.954874", "id": "4279218148", "tags": "latvia riga"}, {"datetaken": "2010-01-16 14:28:13", "license": "1", "title": "Figure", "text": "", "album_id": "72157623221299462", "longitude": "24.105978", "url_o": "https://farm5.staticflickr.com/4030/4278471895_74bee88f9f_o.jpg", "secret": "64184af59b", "media": "photo", "latitude": "56.954874", "id": "4278471895", "tags": "latvia riga"}, {"datetaken": "2010-01-16 14:28:47", "license": "1", "title": "Winter", "text": "", "album_id": "72157623221299462", "longitude": "24.105978", "url_o": "https://farm5.staticflickr.com/4071/4279218588_052448ccea_o.jpg", "secret": "528b8650a5", "media": "photo", "latitude": "56.954874", "id": "4279218588", "tags": "latvia riga"}, {"datetaken": "2010-01-16 14:34:16", "license": "1", "title": "Sunset", "text": "", "album_id": "72157623221299462", "longitude": "24.105978", "url_o": "https://farm5.staticflickr.com/4057/4279228762_c980a17d1f_o.jpg", "secret": "b725607e43", "media": "photo", "latitude": "56.954874", "id": "4279228762", "tags": "latvia riga"}, {"datetaken": "2010-01-16 14:41:56", "license": "1", "title": "Winter", "text": "", "album_id": "72157623221299462", "longitude": "24.105978", "url_o": "https://farm5.staticflickr.com/4036/4278482499_f6686ec208_o.jpg", "secret": "586e5af39b", "media": "photo", "latitude": "56.954874", "id": "4278482499", "tags": "latvia riga"}, {"datetaken": "2010-01-16 14:42:56", "license": "1", "title": "Freedom Monument", "text": "", "album_id": "72157623221299462", "longitude": "24.105978", "url_o": "https://farm5.staticflickr.com/4024/4279229140_458b8c1057_o.jpg", "secret": "1f2aca55af", "media": "photo", "latitude": "56.954874", "id": "4279229140", "tags": "latvia riga"}, {"datetaken": "2010-01-16 14:44:00", "license": "1", "title": "Freedom Monument", "text": "", "album_id": "72157623221299462", "longitude": "24.105978", "url_o": "https://farm5.staticflickr.com/4016/4278482889_6590fe8f01_o.jpg", "secret": "9754f93d6e", "media": "photo", "latitude": "56.954874", "id": "4278482889", "tags": "latvia riga"}, {"datetaken": "2010-01-16 17:18:06", "license": "1", "title": "At Night", "text": "", "album_id": "72157623221299462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4281798521_66c8743c47_o.jpg", "secret": "60f90ce833", "media": "photo", "latitude": "0", "id": "4281798521", "tags": ""}, {"datetaken": "2010-01-17 09:24:46", "license": "1", "title": "Latvian Academy of Sciences", "text": "", "album_id": "72157623221299462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4281798799_a919863c70_o.jpg", "secret": "5bdeb83fbd", "media": "photo", "latitude": "0", "id": "4281798799", "tags": "latvia riga academyofsciences"}, {"datetaken": "2010-01-17 09:35:34", "license": "1", "title": "Fish", "text": "", "album_id": "72157623221299462", "longitude": "24.114900", "url_o": "https://farm3.staticflickr.com/2802/4281799087_7dfa801d72_o.jpg", "secret": "725b061a9e", "media": "photo", "latitude": "56.945999", "id": "4281799087", "tags": "latvia riga centralmarket"}, {"datetaken": "2010-01-17 09:42:09", "license": "1", "title": "Pumpkins", "text": "", "album_id": "72157623221299462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4282543940_7bfca83ba1_o.jpg", "secret": "a337f56a81", "media": "photo", "latitude": "0", "id": "4282543940", "tags": "centralmarket latviariga"}, {"datetaken": "2010-01-17 10:12:09", "license": "1", "title": "Zeppelin Hangars", "text": "", "album_id": "72157623221299462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2796/4281799751_5c54f7e8ef_o.jpg", "secret": "d51b88ac22", "media": "photo", "latitude": "0", "id": "4281799751", "tags": "centralmarket latviariga"}, {"datetaken": "2010-01-17 11:49:51", "license": "1", "title": "Eels", "text": "", "album_id": "72157623221299462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4282544570_73858610d6_o.jpg", "secret": "26a6cecc64", "media": "photo", "latitude": "0", "id": "4282544570", "tags": "centralmarket latviariga"}, {"datetaken": "2010-01-17 11:50:10", "license": "1", "title": "Zeppelin Hangar", "text": "", "album_id": "72157623221299462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4281800341_49178f3d60_o.jpg", "secret": "2d73640045", "media": "photo", "latitude": "0", "id": "4281800341", "tags": "centralmarket latviariga"}, {"datetaken": "2010-01-17 11:55:14", "license": "1", "title": "Zeppelin Hangar", "text": "", "album_id": "72157623221299462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4282545160_a73aac397c_o.jpg", "secret": "81bb5381b4", "media": "photo", "latitude": "0", "id": "4282545160", "tags": "centralmarket latviariga"}, {"datetaken": "2010-01-17 13:05:43", "license": "1", "title": "Winter", "text": "", "album_id": "72157623221299462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4281800991_9c7ef2ab0c_o.jpg", "secret": "a0c96df258", "media": "photo", "latitude": "0", "id": "4281800991", "tags": "latvia riga"}, {"datetaken": "2010-01-17 13:06:03", "license": "1", "title": "St Peters", "text": "", "album_id": "72157623221299462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4281801313_67388769b6_o.jpg", "secret": "2e3e2d8884", "media": "photo", "latitude": "0", "id": "4281801313", "tags": "latvia riga"}, {"datetaken": "2010-01-17 13:33:29", "license": "1", "title": "Dom Cathedral", "text": "", "album_id": "72157623221299462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4281801599_591a35a625_o.jpg", "secret": "af8a6336b4", "media": "photo", "latitude": "0", "id": "4281801599", "tags": "latvia riga"}, {"datetaken": "2010-01-17 13:33:32", "license": "1", "title": "Riga", "text": "", "album_id": "72157623221299462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4281801957_b02e67f2a2_o.jpg", "secret": "6eab14957d", "media": "photo", "latitude": "0", "id": "4281801957", "tags": "latvia riga"}, {"datetaken": "2010-01-17 13:37:02", "license": "1", "title": "Cat House", "text": "", "album_id": "72157623221299462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4281802299_f8b0769f6a_o.jpg", "secret": "48246b962f", "media": "photo", "latitude": "0", "id": "4281802299", "tags": "latvia riga"}, {"datetaken": "2010-01-17 13:38:39", "license": "1", "title": "Cat House", "text": "", "album_id": "72157623221299462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4281802613_c5c2d3a21f_o.jpg", "secret": "c099f2d90b", "media": "photo", "latitude": "0", "id": "4281802613", "tags": "latvia riga"}, {"datetaken": "2010-01-17 14:16:24", "license": "1", "title": "Daugava", "text": "", "album_id": "72157623221299462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4281803051_82f2de8cac_o.jpg", "secret": "94f6053443", "media": "photo", "latitude": "0", "id": "4281803051", "tags": "latvia riga"}, {"datetaken": "2010-01-17 14:18:06", "license": "1", "title": "Daugava", "text": "", "album_id": "72157623221299462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2719/4282547724_91ddbc088b_o.jpg", "secret": "c543454ecf", "media": "photo", "latitude": "0", "id": "4282547724", "tags": "latvia riga"}, {"datetaken": "2010-01-17 14:19:17", "license": "1", "title": "Daugava", "text": "", "album_id": "72157623221299462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4282548002_c260b1a1ef_o.jpg", "secret": "0e351b245c", "media": "photo", "latitude": "0", "id": "4282548002", "tags": "latvia riga"}, {"datetaken": "2010-01-17 14:26:36", "license": "1", "title": "Shadows", "text": "", "album_id": "72157623221299462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4282548312_9c1ffcdd16_o.jpg", "secret": "231a5064a1", "media": "photo", "latitude": "0", "id": "4282548312", "tags": "latvia riga"}, {"datetaken": "2012-01-17 19:54:41", "license": "1", "title": "ElleDinner_0001", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7006/6719053661_e4a1c5b7b3_o.jpg", "secret": "ee2bb4bbfe", "media": "photo", "latitude": "0", "id": "6719053661", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 20:03:46", "license": "1", "title": "ElleDinner_0002", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7161/6719054837_c153b34f86_o.jpg", "secret": "6fed46121c", "media": "photo", "latitude": "0", "id": "6719054837", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 20:09:56", "license": "1", "title": "ElleDinner_0003", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7015/6719053943_d976ececb9_o.jpg", "secret": "a043327ffa", "media": "photo", "latitude": "0", "id": "6719053943", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 20:20:55", "license": "1", "title": "ElleDinner_0004", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6719052795_bf230a4d93_o.jpg", "secret": "eb32437371", "media": "photo", "latitude": "0", "id": "6719052795", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 20:27:10", "license": "1", "title": "ElleDinner_0006", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7173/6719055187_6b3e3daf65_o.jpg", "secret": "24d8ba789b", "media": "photo", "latitude": "0", "id": "6719055187", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 20:27:35", "license": "1", "title": "ElleDinner_0007", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7172/6719054637_7238d4c74b_o.jpg", "secret": "924b9fb3d6", "media": "photo", "latitude": "0", "id": "6719054637", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 20:44:13", "license": "1", "title": "ElleDinner_0010", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6719051671_3a97c79d28_o.jpg", "secret": "73c839f2ec", "media": "photo", "latitude": "0", "id": "6719051671", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 21:12:50", "license": "1", "title": "ElleDinner_0011", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6719051801_f217644266_o.jpg", "secret": "8046bf683a", "media": "photo", "latitude": "0", "id": "6719051801", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 21:15:29", "license": "1", "title": "ElleDinner_0013", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6719052043_8441316c9e_o.jpg", "secret": "d70f79a26f", "media": "photo", "latitude": "0", "id": "6719052043", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 21:16:04", "license": "1", "title": "ElleDinner_0015", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6719052315_c57a1cd739_o.jpg", "secret": "c4f18d9802", "media": "photo", "latitude": "0", "id": "6719052315", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 21:16:53", "license": "1", "title": "ElleDinner_0016", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6719053477_c32e280a21_o.jpg", "secret": "a3e854a058", "media": "photo", "latitude": "0", "id": "6719053477", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 21:17:15", "license": "1", "title": "ElleDinner_0017", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6719053253_3261dac49f_o.jpg", "secret": "70f9befc38", "media": "photo", "latitude": "0", "id": "6719053253", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 21:18:39", "license": "1", "title": "ElleDinner_0021", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7162/6719053801_f8cf10ed93_o.jpg", "secret": "1d29eb9ea5", "media": "photo", "latitude": "0", "id": "6719053801", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 21:19:11", "license": "1", "title": "ElleDinner_0022", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7021/6719055607_58de3ae501_o.jpg", "secret": "be3ece30fe", "media": "photo", "latitude": "0", "id": "6719055607", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 21:19:47", "license": "1", "title": "ElleDinner_0023", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7152/6719055339_567d467127_o.jpg", "secret": "ccf21685bc", "media": "photo", "latitude": "0", "id": "6719055339", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 21:22:05", "license": "1", "title": "ElleDinner_0025", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6719052553_b4b8c87c67_o.jpg", "secret": "97d07eaca7", "media": "photo", "latitude": "0", "id": "6719052553", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 21:23:24", "license": "1", "title": "ElleDinner_0026", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7169/6719053067_5a4c5433c2_o.jpg", "secret": "b9efa9c4a8", "media": "photo", "latitude": "0", "id": "6719053067", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 21:24:56", "license": "1", "title": "ElleDinner_0027", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7029/6719054099_e54d367cb2_o.jpg", "secret": "d923d01867", "media": "photo", "latitude": "0", "id": "6719054099", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 21:25:53", "license": "1", "title": "ElleDinner_0028", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7174/6719052181_56892ca541_o.jpg", "secret": "6dd4c064d2", "media": "photo", "latitude": "0", "id": "6719052181", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 21:27:04", "license": "1", "title": "ElleDinner_0029", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7009/6719055003_77cfecd70d_o.jpg", "secret": "282b609133", "media": "photo", "latitude": "0", "id": "6719055003", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-01-17 21:28:34", "license": "1", "title": "ElleDinner_0030", "text": "", "album_id": "72157628922775473", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7162/6719054447_65422068de_o.jpg", "secret": "a7d8c5b326", "media": "photo", "latitude": "0", "id": "6719054447", "tags": "china elle fashionweek nedelchev burdastylegroup"}, {"datetaken": "2012-02-07 00:14:32", "license": "3", "title": "Cvent Sales & Marketing Kick-Off 2012", "text": "", "album_id": "72157629406351257", "longitude": "-77.223951", "url_o": "https://farm8.staticflickr.com/7050/6911601251_b8e342b222_o.jpg", "secret": "c613ee86f8", "media": "photo", "latitude": "38.932273", "id": "6911601251", "tags": "companyevent corporateevent cvent cventculture corporateenthusiasm"}, {"datetaken": "2012-02-07 00:15:30", "license": "3", "title": "Cvent Sales & Marketing Kick-Off 2012", "text": "", "album_id": "72157629406351257", "longitude": "-77.223951", "url_o": "https://farm8.staticflickr.com/7047/6911602631_f8f17506b3_o.jpg", "secret": "ff5056fb37", "media": "photo", "latitude": "38.932273", "id": "6911602631", "tags": "companyevent corporateevent cvent cventculture corporateenthusiasm"}, {"datetaken": "2012-02-07 00:40:32", "license": "3", "title": "Cvent Sales & Marketing Kick-Off 2012", "text": "", "album_id": "72157629406351257", "longitude": "-77.223951", "url_o": "https://farm8.staticflickr.com/7063/6911603787_4369d51334_o.jpg", "secret": "4a8636accc", "media": "photo", "latitude": "38.932273", "id": "6911603787", "tags": "companyevent corporateevent cvent cventculture corporateenthusiasm"}, {"datetaken": "2012-02-07 00:43:21", "license": "3", "title": "Cvent Sales & Marketing Kick-Off 2012", "text": "", "album_id": "72157629406351257", "longitude": "-77.223951", "url_o": "https://farm8.staticflickr.com/7210/6911604607_0457a1e5f9_o.jpg", "secret": "c4d45ab574", "media": "photo", "latitude": "38.932273", "id": "6911604607", "tags": "companyevent corporateevent cvent cventculture corporateenthusiasm"}, {"datetaken": "2012-02-07 00:46:51", "license": "3", "title": "Cvent Sales & Marketing Kick-Off 2012", "text": "", "album_id": "72157629406351257", "longitude": "-77.223951", "url_o": "https://farm8.staticflickr.com/7070/6911605725_3ec1d2f441_o.jpg", "secret": "7af568b01e", "media": "photo", "latitude": "38.932273", "id": "6911605725", "tags": "companyevent corporateevent cvent cventculture corporateenthusiasm"}, {"datetaken": "2012-02-07 01:22:25", "license": "3", "title": "Cvent Sales & Marketing Kick-Off 2012", "text": "", "album_id": "72157629406351257", "longitude": "-77.223951", "url_o": "https://farm8.staticflickr.com/7182/6911606753_7b311855ec_o.jpg", "secret": "d39e0d0bcf", "media": "photo", "latitude": "38.932273", "id": "6911606753", "tags": "companyevent corporateevent cvent cventculture corporateenthusiasm"}, {"datetaken": "2012-02-07 01:42:59", "license": "3", "title": "Cvent Sales & Marketing Kick-Off 2012", "text": "", "album_id": "72157629406351257", "longitude": "-77.223951", "url_o": "https://farm8.staticflickr.com/7069/6911607593_e22954b461_o.jpg", "secret": "0c0359889a", "media": "photo", "latitude": "38.932273", "id": "6911607593", "tags": "companyevent corporateevent cvent cventculture corporateenthusiasm"}, {"datetaken": "2012-02-07 02:23:10", "license": "3", "title": "Cvent Sales & Marketing Kick-Off 2012", "text": "", "album_id": "72157629406351257", "longitude": "-77.223951", "url_o": "https://farm8.staticflickr.com/7066/6911608643_2a420f60e3_o.jpg", "secret": "7b29031aeb", "media": "photo", "latitude": "38.932273", "id": "6911608643", "tags": "companyevent corporateevent cvent cventculture corporateenthusiasm"}, {"datetaken": "2012-02-07 02:28:04", "license": "3", "title": "Cvent Sales & Marketing Kick-Off 2012", "text": "", "album_id": "72157629406351257", "longitude": "-77.223951", "url_o": "https://farm8.staticflickr.com/7197/6911609147_87e945a570_o.jpg", "secret": "ab57546b3f", "media": "photo", "latitude": "38.932273", "id": "6911609147", "tags": "companyevent corporateevent cvent cventculture corporateenthusiasm"}, {"datetaken": "2012-02-07 02:34:16", "license": "3", "title": "Cvent Sales & Marketing Kick-Off 2012", "text": "", "album_id": "72157629406351257", "longitude": "-77.223951", "url_o": "https://farm8.staticflickr.com/7070/6911609763_e278297946_o.jpg", "secret": "f988307ff4", "media": "photo", "latitude": "38.932273", "id": "6911609763", "tags": "companyevent corporateevent cvent cventculture corporateenthusiasm"}, {"datetaken": "2012-02-07 02:46:27", "license": "3", "title": "Cvent Sales & Marketing Kick-Off 2012", "text": "", "album_id": "72157629406351257", "longitude": "-77.223951", "url_o": "https://farm8.staticflickr.com/7069/6911610893_4698eae7ee_o.jpg", "secret": "f9d65257f9", "media": "photo", "latitude": "38.932273", "id": "6911610893", "tags": "companyevent corporateevent cvent cventculture corporateenthusiasm"}, {"datetaken": "2012-02-07 07:01:57", "license": "3", "title": "Cvent Sales & Marketing Kick-Off 2012", "text": "", "album_id": "72157629406351257", "longitude": "-77.223951", "url_o": "https://farm8.staticflickr.com/7062/6911612281_703558a7aa_o.jpg", "secret": "f91da08c2f", "media": "photo", "latitude": "38.932273", "id": "6911612281", "tags": "companyevent corporateevent cvent cventculture corporateenthusiasm"}, {"datetaken": "2012-02-07 08:17:15", "license": "3", "title": "Cvent Sales & Marketing Kick-Off 2012", "text": "", "album_id": "72157629406351257", "longitude": "-77.223951", "url_o": "https://farm8.staticflickr.com/7180/6911613285_fc5e0e9bd8_o.jpg", "secret": "125283767e", "media": "photo", "latitude": "38.932273", "id": "6911613285", "tags": "companyevent corporateevent cvent cventculture corporateenthusiasm"}, {"datetaken": "2004-09-25 16:50:00", "license": "1", "title": "Sleazorama", "text": "", "album_id": "142047", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/118630865_c78ed7c1f0_o.jpg", "secret": "c78ed7c1f0", "media": "photo", "latitude": "0", "id": "118630865", "tags": "brussels europe belgium bruxelles striptease exploitation burlesque sleazy strippers sleaze notsexy seedy tiredbusinessmen stripteasesurscene"}, {"datetaken": "2004-09-25 17:53:10", "license": "1", "title": "Boys Boys Boys", "text": "", "album_id": "142047", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1342432_a64b909fe9_o.jpg", "secret": "a64b909fe9", "media": "photo", "latitude": "0", "id": "1342432", "tags": "mannekenpis piss pee urine urinate boys tourist brussels bruxelles belgium"}, {"datetaken": "2004-09-26 06:58:40", "license": "1", "title": "Anus", "text": "", "album_id": "142047", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5474316_bf9d852d3b_o.jpg", "secret": "bf9d852d3b", "media": "photo", "latitude": "0", "id": "5474316", "tags": "street graffiti anus ass asshole arse arsehole anal sphincter europe urban decay saysitallreally brussels bruxelles belgium"}, {"datetaken": "2004-09-26 07:04:12", "license": "1", "title": "Le Sexy Cabaret", "text": "", "album_id": "142047", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5290225_2b6baadd32_o.jpg", "secret": "2b6baadd32", "media": "photo", "latitude": "0", "id": "5290225", "tags": "sexy cabaret club sign notsexy decay seedy sleazy sleaze burlesque strippers tiredbusinessmen lesexycabaret brussels bruxelles belgium lust"}, {"datetaken": "2004-09-26 09:42:02", "license": "1", "title": "Scary, Baby.", "text": "", "album_id": "142047", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6977800_faa0028651_o.jpg", "secret": "faa0028651", "media": "photo", "latitude": "0", "id": "6977800", "tags": "scary baby doll possessed toy pram old decay street market streetmarket brussels bruxelles begium"}, {"datetaken": "2004-09-26 09:45:54", "license": "1", "title": "Pairs", "text": "", "album_id": "142047", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2004685_cce852b666_o.jpg", "secret": "cce852b666", "media": "photo", "latitude": "0", "id": "2004685", "tags": "pairs shoes market streetmarket brussels bruxelles belgium"}, {"datetaken": "2004-09-26 10:12:12", "license": "1", "title": "The Belgian Secret Service", "text": "", "album_id": "142047", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6584854_0c9358d344_o.jpg", "secret": "0c9358d344", "media": "photo", "latitude": "0", "id": "6584854", "tags": "coats raincoats market streetmarket secretservice spies interpol espionage unemployed redundant beige tope bland boring brussels bruxelles belgium"}, {"datetaken": "2004-09-26 11:14:55", "license": "1", "title": "Monsieur et Madame", "text": "", "album_id": "142047", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5455255_867b9483ab_o.jpg", "secret": "867b9483ab", "media": "photo", "latitude": "0", "id": "5455255", "tags": "monsieur madame oldfolk couple man woman husband wife love brussels bruxelles belgium"}, {"datetaken": "2004-09-26 11:18:34", "license": "1", "title": "Je ne suis pas perdu...", "text": "", "album_id": "142047", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2004941_4cfffa2388_o.jpg", "secret": "4cfffa2388", "media": "photo", "latitude": "0", "id": "2004941", "tags": "dog lost missing tag street perdu chien brussels bruxelles belgium"}, {"datetaken": "2004-09-26 12:01:09", "license": "1", "title": "Barbershop Chair", "text": "", "album_id": "142047", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2131218_52b50c856c_o.jpg", "secret": "52b50c856c", "media": "photo", "latitude": "0", "id": "2131218", "tags": "barbershop chair horse junk antique brussels bruxelles belgium"}, {"datetaken": "2004-09-26 13:29:30", "license": "1", "title": "The Palace of Trousers", "text": "", "album_id": "142047", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5661086_d13890abb3_o.jpg", "secret": "d13890abb3", "media": "photo", "latitude": "0", "id": "5661086", "tags": "decay sign palaisdupantalon palace pantalon trousers pants brussels bruxelles begium"}, {"datetaken": "2004-09-26 14:50:09", "license": "1", "title": "The Unexpected Guests", "text": "", "album_id": "142047", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5659742_c2bb13385f_o.jpg", "secret": "c2bb13385f", "media": "photo", "latitude": "0", "id": "5659742", "tags": "tintin captainhadddock herg\u00e9 orange bandedessin\u00e9e centrebelge\u00a0delabandedessin\u00e9e brussels bruxelles begium"}, {"datetaken": "2004-09-26 15:33:34", "license": "1", "title": "Toon Invasion", "text": "", "album_id": "142047", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5660532_ceb115f12b_o.jpg", "secret": "ceb115f12b", "media": "photo", "latitude": "0", "id": "5660532", "tags": "statue bandedessin\u00e9e brussels bruxelles begium"}, {"datetaken": "2005-06-10 11:24:17", "license": "6", "title": "Levinski 008", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20531382_df2e41784f_o.jpg", "secret": "df2e41784f", "media": "photo", "latitude": "0", "id": "20531382", "tags": "market tel aviv pickles levinski"}, {"datetaken": "2005-06-10 11:26:09", "license": "6", "title": "Levinski 009", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20531423_ea19c87eec_o.jpg", "secret": "ea19c87eec", "media": "photo", "latitude": "0", "id": "20531423", "tags": "market tel aviv pickles levinski"}, {"datetaken": "2005-06-10 11:26:29", "license": "6", "title": "Levinski 010", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20531446_a36801648a_o.jpg", "secret": "a36801648a", "media": "photo", "latitude": "0", "id": "20531446", "tags": "market tel aviv pickles levinski"}, {"datetaken": "2005-06-10 11:27:56", "license": "6", "title": "Levinski 013", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20531055_523937a84a_o.jpg", "secret": "523937a84a", "media": "photo", "latitude": "0", "id": "20531055", "tags": "market tel aviv pickles levinski"}, {"datetaken": "2005-06-10 11:28:17", "license": "6", "title": "Levinski 014", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20531078_e2c9135b9a_o.jpg", "secret": "e2c9135b9a", "media": "photo", "latitude": "0", "id": "20531078", "tags": "market tel aviv pickles levinski"}, {"datetaken": "2005-06-10 11:29:15", "license": "6", "title": "Levinski 015", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20531112_96eb0e3de7_o.jpg", "secret": "96eb0e3de7", "media": "photo", "latitude": "0", "id": "20531112", "tags": "market tel aviv pickles levinski"}, {"datetaken": "2005-06-10 11:31:38", "license": "6", "title": "Levinski 019", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20531133_bb8b307555_o.jpg", "secret": "bb8b307555", "media": "photo", "latitude": "0", "id": "20531133", "tags": "market tel aviv pickles levinski"}, {"datetaken": "2005-06-10 11:32:45", "license": "6", "title": "Levinski 020", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20531162_6b4f29c610_o.jpg", "secret": "6b4f29c610", "media": "photo", "latitude": "0", "id": "20531162", "tags": "market tel aviv pickles levinski"}, {"datetaken": "2005-06-10 11:35:09", "license": "6", "title": "Lonely boy", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20531193_df01eb1117_o.jpg", "secret": "df01eb1117", "media": "photo", "latitude": "0", "id": "20531193", "tags": "market tel aviv pickles levinski"}, {"datetaken": "2005-06-10 11:36:51", "license": "6", "title": "Levinski 026", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20531225_00c655279b_o.jpg", "secret": "00c655279b", "media": "photo", "latitude": "0", "id": "20531225", "tags": "market tel aviv pickles levinski"}, {"datetaken": "2005-06-10 11:38:11", "license": "6", "title": "Levinski 0291", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21440223_ebc36624c6_o.jpg", "secret": "ebc36624c6", "media": "photo", "latitude": "0", "id": "21440223", "tags": "fruits israel doll tel aviv"}, {"datetaken": "2005-06-10 11:48:20", "license": "6", "title": "Levinski 031", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20531265_11003d4356_o.jpg", "secret": "11003d4356", "media": "photo", "latitude": "0", "id": "20531265", "tags": "market tel aviv pickles levinski"}, {"datetaken": "2005-06-10 11:53:06", "license": "6", "title": "Levinski 032", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20531292_bf50538f27_o.jpg", "secret": "bf50538f27", "media": "photo", "latitude": "0", "id": "20531292", "tags": "market tel aviv pickles levinski"}, {"datetaken": "2005-06-10 11:56:05", "license": "6", "title": "Levinski 035", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20531321_24dd736496_o.jpg", "secret": "24dd736496", "media": "photo", "latitude": "0", "id": "20531321", "tags": "market tel aviv pickles levinski"}, {"datetaken": "2005-06-10 11:56:27", "license": "6", "title": "Levinski 0361", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21440231_c8dc2eef03_o.jpg", "secret": "c8dc2eef03", "media": "photo", "latitude": "0", "id": "21440231", "tags": "fruits israel doll tel aviv"}, {"datetaken": "2005-06-10 11:57:11", "license": "6", "title": "Levinski 037", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20531352_d7cd80e3d7_o.jpg", "secret": "d7cd80e3d7", "media": "photo", "latitude": "0", "id": "20531352", "tags": "market tel aviv pickles levinski"}, {"datetaken": "2005-06-10 12:01:47", "license": "6", "title": "Levinski 0381", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21440246_4fdc639d24_o.jpg", "secret": "4fdc639d24", "media": "photo", "latitude": "0", "id": "21440246", "tags": "fruits israel doll tel aviv"}, {"datetaken": "2005-06-10 12:07:57", "license": "6", "title": "Levinski 0451", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21440251_7f4d8bcdfd_o.jpg", "secret": "7f4d8bcdfd", "media": "photo", "latitude": "0", "id": "21440251", "tags": "fruits israel doll tel aviv"}, {"datetaken": "2005-06-10 13:24:18", "license": "6", "title": "Levinski 059", "text": "", "album_id": "486365", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21440208_08ac47f104_o.jpg", "secret": "08ac47f104", "media": "photo", "latitude": "0", "id": "21440208", "tags": "fruits israel doll tel aviv"}, {"datetaken": "2012-01-20 13:59:35", "license": "1", "title": "Street Construction", "text": "", "album_id": "72157628976365435", "longitude": "-75.170970", "url_o": "https://farm8.staticflickr.com/7165/6740096117_b917277566_o.jpg", "secret": "bf347ce401", "media": "photo", "latitude": "39.917488", "id": "6740096117", "tags": ""}, {"datetaken": "2012-01-20 14:00:10", "license": "1", "title": "DSC_1017.jpg", "text": "", "album_id": "72157628976365435", "longitude": "-75.171231", "url_o": "https://farm8.staticflickr.com/7002/6740097617_060ab13dbc_o.jpg", "secret": "b3b27c10d4", "media": "photo", "latitude": "39.917069", "id": "6740097617", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 14:13:03", "license": "1", "title": "Sad Septa Face", "text": "", "album_id": "72157628976365435", "longitude": "-75.164762", "url_o": "https://farm8.staticflickr.com/7163/6740098677_6a439463c4_o.jpg", "secret": "28ccca2cbb", "media": "photo", "latitude": "39.952830", "id": "6740098677", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 14:17:49", "license": "1", "title": "Crook Walking", "text": "", "album_id": "72157628976365435", "longitude": "-75.165239", "url_o": "https://farm8.staticflickr.com/7030/6740099575_7a3755e8cf_o.jpg", "secret": "00b43ec8d9", "media": "photo", "latitude": "39.953200", "id": "6740099575", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 14:19:19", "license": "1", "title": "Expressionless Faces", "text": "", "album_id": "72157628976365435", "longitude": "-75.164639", "url_o": "https://farm8.staticflickr.com/7160/6740100719_8d5214a880_o.jpg", "secret": "8d8bed2c74", "media": "photo", "latitude": "39.953819", "id": "6740100719", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 14:19:34", "license": "1", "title": "Tower", "text": "", "album_id": "72157628976365435", "longitude": "-75.164431", "url_o": "https://farm8.staticflickr.com/7149/6740101715_7778e34dd6_o.jpg", "secret": "2eee468dd5", "media": "photo", "latitude": "39.953719", "id": "6740101715", "tags": "city light tower clock philadelphia 35mm lens prime reading hall nikon day bright time market flag center terminal penn government d7000"}, {"datetaken": "2012-01-20 14:32:39", "license": "1", "title": "Glass Touching", "text": "", "album_id": "72157628976365435", "longitude": "-75.159820", "url_o": "https://farm8.staticflickr.com/7034/6740102903_d3b1d67ffd_o.jpg", "secret": "24f151d70a", "media": "photo", "latitude": "39.953019", "id": "6740102903", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 14:33:14", "license": "1", "title": "Thinking", "text": "", "album_id": "72157628976365435", "longitude": "-75.159820", "url_o": "https://farm8.staticflickr.com/7141/6740104461_7a69a6b793_o.jpg", "secret": "eb811ab9ed", "media": "photo", "latitude": "39.953019", "id": "6740104461", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 14:34:44", "license": "1", "title": "Waiting Face", "text": "", "album_id": "72157628976365435", "longitude": "-75.159820", "url_o": "https://farm8.staticflickr.com/7004/6740107965_6317e5986b_o.jpg", "secret": "3f24e3f897", "media": "photo", "latitude": "39.953019", "id": "6740107965", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 14:38:49", "license": "1", "title": "Cheese Exchange", "text": "", "album_id": "72157628976365435", "longitude": "-75.159820", "url_o": "https://farm8.staticflickr.com/7174/6740109353_96fb523441_o.jpg", "secret": "827877303d", "media": "photo", "latitude": "39.953019", "id": "6740109353", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 14:44:59", "license": "1", "title": "Pickle Couple", "text": "", "album_id": "72157628976365435", "longitude": "-75.159820", "url_o": "https://farm8.staticflickr.com/7010/6740110569_b2733dcffd_o.jpg", "secret": "0cc6a9f6ec", "media": "photo", "latitude": "39.953019", "id": "6740110569", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 14:47:59", "license": "1", "title": "Drink Girl", "text": "", "album_id": "72157628976365435", "longitude": "-75.159820", "url_o": "https://farm8.staticflickr.com/7153/6740112019_6c06dc9aef_o.jpg", "secret": "e816545331", "media": "photo", "latitude": "39.953019", "id": "6740112019", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 14:49:44", "license": "1", "title": "HOT Pretzel", "text": "", "album_id": "72157628976365435", "longitude": "-75.159820", "url_o": "https://farm8.staticflickr.com/7014/6740113977_c6793e7b0b_o.jpg", "secret": "c3a6bb314f", "media": "photo", "latitude": "39.953019", "id": "6740113977", "tags": "city light red woman hot philadelphia girl face scarf 35mm mouth hair lens nose prime reading glasses nikon day open bright time market head coat center terminal ring redhead theresa pretzel d7000"}, {"datetaken": "2012-01-20 15:03:51", "license": "1", "title": "That One, There", "text": "", "album_id": "72157628976365435", "longitude": "-75.159850", "url_o": "https://farm8.staticflickr.com/7145/6740116017_c87d988c6d_o.jpg", "secret": "7a8a7f5c90", "media": "photo", "latitude": "39.953138", "id": "6740116017", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 15:04:06", "license": "1", "title": "Ruffage", "text": "", "album_id": "72157628976365435", "longitude": "-75.159850", "url_o": "https://farm8.staticflickr.com/7024/6740117507_99deb42cd0_o.jpg", "secret": "a7fd4b03c9", "media": "photo", "latitude": "39.953138", "id": "6740117507", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 15:07:26", "license": "1", "title": "Lengthy List", "text": "", "album_id": "72157628976365435", "longitude": "-75.159850", "url_o": "https://farm8.staticflickr.com/7004/6740118973_6fcda1853f_o.jpg", "secret": "f1bd0f6042", "media": "photo", "latitude": "39.953138", "id": "6740118973", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 15:11:11", "license": "1", "title": "Please take a number", "text": "", "album_id": "72157628976365435", "longitude": "-75.159850", "url_o": "https://farm8.staticflickr.com/7154/6740120277_de9c678ed9_o.jpg", "secret": "260f0d9ff4", "media": "photo", "latitude": "39.953138", "id": "6740120277", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 15:17:51", "license": "1", "title": "Cascaras", "text": "", "album_id": "72157628976365435", "longitude": "-75.159850", "url_o": "https://farm8.staticflickr.com/7035/6740122181_832488ed5c_o.jpg", "secret": "efd34501e8", "media": "photo", "latitude": "39.953138", "id": "6740122181", "tags": "city light food money reflection chicken philadelphia glass face cheese 35mm lens beard prime reading nikon day hand basket counter bright time market sale center terminal meat deal deli service exchange transaction d7000"}, {"datetaken": "2012-01-20 15:21:06", "license": "1", "title": "Fifty Five", "text": "", "album_id": "72157628976365435", "longitude": "-75.159850", "url_o": "https://farm8.staticflickr.com/7164/6740123541_c67bcd2696_o.jpg", "secret": "bcc9133d5f", "media": "photo", "latitude": "39.953138", "id": "6740123541", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 15:22:46", "license": "1", "title": "Meat Lady", "text": "", "album_id": "72157628976365435", "longitude": "-75.159850", "url_o": "https://farm8.staticflickr.com/7022/6740124599_9cacc749a0_o.jpg", "secret": "826abef013", "media": "photo", "latitude": "39.953138", "id": "6740124599", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 15:29:46", "license": "1", "title": "Merchant", "text": "", "album_id": "72157628976365435", "longitude": "-75.159850", "url_o": "https://farm8.staticflickr.com/7168/6740126177_c86c75e487_o.jpg", "secret": "0eea3178f8", "media": "photo", "latitude": "39.953138", "id": "6740126177", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 15:39:53", "license": "1", "title": "Fence Wreck", "text": "", "album_id": "72157628976365435", "longitude": "-75.161620", "url_o": "https://farm8.staticflickr.com/7010/6740127311_179cbf4599_o.jpg", "secret": "e4c4e150d0", "media": "photo", "latitude": "39.944199", "id": "6740127311", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 16:00:25", "license": "1", "title": "Toting", "text": "", "album_id": "72157628976365435", "longitude": "-75.169539", "url_o": "https://farm8.staticflickr.com/7015/6740128289_8e69ec11d5_o.jpg", "secret": "c62d8a0c26", "media": "photo", "latitude": "39.924280", "id": "6740128289", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2012-01-20 16:07:00", "license": "1", "title": "The Final Step", "text": "", "album_id": "72157628976365435", "longitude": "-75.170441", "url_o": "https://farm8.staticflickr.com/7166/6740129535_a7bb2fbb06_o.jpg", "secret": "90979e6e6f", "media": "photo", "latitude": "39.920697", "id": "6740129535", "tags": "city light philadelphia 35mm lens prime reading nikon day bright time market center terminal d7000"}, {"datetaken": "2005-02-18 19:10:26", "license": "5", "title": "Amanda makes a call", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5234330_7cc1ab68ec_o.jpg", "secret": "7cc1ab68ec", "media": "photo", "latitude": "0", "id": "5234330", "tags": "hongkong phonebooth"}, {"datetaken": "2005-02-18 20:14:30", "license": "5", "title": "Entering the foot massage garden at Hong Kong Park", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5234345_ab06f7082c_o.jpg", "secret": "ab06f7082c", "media": "photo", "latitude": "0", "id": "5234345", "tags": "hongkong footmassage"}, {"datetaken": "2005-02-18 20:14:57", "license": "5", "title": "The \"pebbles\" really hurt!", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5234372_8250a66a2c_o.jpg", "secret": "8250a66a2c", "media": "photo", "latitude": "0", "id": "5234372", "tags": "hongkong footmassage"}, {"datetaken": "2005-02-18 21:05:34", "license": "5", "title": "Western Market", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5234387_e69e47c219_o.jpg", "secret": "e69e47c219", "media": "photo", "latitude": "0", "id": "5234387", "tags": "hongkong urban"}, {"datetaken": "2005-02-18 21:06:27", "license": "5", "title": "Decrepit and Shiny All Together", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5234405_773df37adc_o.jpg", "secret": "773df37adc", "media": "photo", "latitude": "0", "id": "5234405", "tags": "hongkong urban"}, {"datetaken": "2005-02-18 22:17:00", "license": "5", "title": "Amanda gets reflexology", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5234420_3e53c6be93_o.jpg", "secret": "3e53c6be93", "media": "photo", "latitude": "0", "id": "5234420", "tags": "hongkong reflexology"}, {"datetaken": "2005-02-18 22:17:17", "license": "5", "title": "I get reflexology", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5234443_08cc99a1c4_o.jpg", "secret": "08cc99a1c4", "media": "photo", "latitude": "0", "id": "5234443", "tags": "hongkong reflexology"}, {"datetaken": "2005-02-18 23:26:11", "license": "5", "title": "Beer served in refrigerated bowls", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5234456_8ac5ee5031_o.jpg", "secret": "8ac5ee5031", "media": "photo", "latitude": "0", "id": "5234456", "tags": "hongkong beer"}, {"datetaken": "2005-02-18 23:39:18", "license": "5", "title": "Our delightful Shanghainese meal", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5234490_96b7ce84c9_o.jpg", "secret": "96b7ce84c9", "media": "photo", "latitude": "0", "id": "5234490", "tags": "hongkong shanghainese meal"}, {"datetaken": "2005-02-19 00:31:19", "license": "5", "title": "A *real* tree stool!", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5234503_4cdec8758e_o.jpg", "secret": "4cdec8758e", "media": "photo", "latitude": "0", "id": "5234503", "tags": "tree stool"}, {"datetaken": "2005-02-19 02:20:52", "license": "5", "title": "Symmetry on the subway", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5234521_0a488d5b52_o.jpg", "secret": "0a488d5b52", "media": "photo", "latitude": "0", "id": "5234521", "tags": "hongkong subway symmetry"}, {"datetaken": "2005-02-19 21:02:31", "license": "5", "title": "tealight!", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5234527_253ab275cc_o.jpg", "secret": "253ab275cc", "media": "photo", "latitude": "0", "id": "5234527", "tags": "hongkong tea tealight"}, {"datetaken": "2005-02-19 21:56:34", "license": "5", "title": "Amanda is interviewed about Hong Kong", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5234539_77b840e5e8_o.jpg", "secret": "77b840e5e8", "media": "photo", "latitude": "0", "id": "5234539", "tags": "hongkong interview"}, {"datetaken": "2005-02-19 22:37:25", "license": "5", "title": "Generic Hong Kong Street View", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5234552_eff170e77f_o.jpg", "secret": "eff170e77f", "media": "photo", "latitude": "0", "id": "5234552", "tags": "hongkong urban bus"}, {"datetaken": "2005-02-19 23:24:26", "license": "5", "title": "Hong Kong Museum of History - Boat Making", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5234568_97183b673c_o.jpg", "secret": "97183b673c", "media": "photo", "latitude": "0", "id": "5234568", "tags": "hongkong museum"}, {"datetaken": "2005-02-19 23:25:31", "license": "5", "title": "IMG_0298.JPG", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5234590_94567b4e42_o.jpg", "secret": "94567b4e42", "media": "photo", "latitude": "0", "id": "5234590", "tags": "hongkong museum"}, {"datetaken": "2005-02-19 23:28:41", "license": "5", "title": "Fish cleaning, old skool", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5234602_1d0b18dab5_o.jpg", "secret": "1d0b18dab5", "media": "photo", "latitude": "0", "id": "5234602", "tags": "hongkong museum"}, {"datetaken": "2005-02-19 23:29:46", "license": "5", "title": "IMG_0303.JPG", "text": "", "album_id": "134606", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5234618_b5a9d577a6_o.jpg", "secret": "b5a9d577a6", "media": "photo", "latitude": "0", "id": "5234618", "tags": "hongkong museum"}, {"datetaken": "2009-12-22 11:42:11", "license": "1", "title": "Christmas Market Nurenberg Germany", "text": "", "album_id": "72157623146557081", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4298772263_1a7c43dd41_o.jpg", "secret": "5c27a67dd9", "media": "photo", "latitude": "0", "id": "4298772263", "tags": "sausage christmasmarket meat butcher nurenberg"}, {"datetaken": "2009-12-22 11:45:13", "license": "1", "title": "Nurenberg Vegetable Stall", "text": "", "album_id": "72157623146557081", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4298773081_fae5d71a0e_o.jpg", "secret": "a19d11eee3", "media": "photo", "latitude": "0", "id": "4298773081", "tags": "vegetables christmasmarket nurenberg"}, {"datetaken": "2009-12-22 11:45:17", "license": "1", "title": "Nurenberg Vegetable Stall", "text": "", "album_id": "72157623146557081", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2736/4299520682_d7408c6183_o.jpg", "secret": "701c6e11b3", "media": "photo", "latitude": "0", "id": "4299520682", "tags": "vegetables christmasmarket nurenberg"}, {"datetaken": "2009-12-22 11:47:18", "license": "1", "title": "Nurenbery Christmas Market", "text": "", "album_id": "72157623146557081", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4298774787_752725e819_o.jpg", "secret": "142a961c42", "media": "photo", "latitude": "0", "id": "4298774787", "tags": "christmasmarket nurenberg"}, {"datetaken": "2009-12-22 11:48:39", "license": "1", "title": "Nurenberg", "text": "", "album_id": "72157623146557081", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4299522156_210cc1e256_o.jpg", "secret": "bb2a0180ca", "media": "photo", "latitude": "0", "id": "4299522156", "tags": "christmasmarket nurenberg"}, {"datetaken": "2009-12-22 11:51:00", "license": "1", "title": "Carriage in Nurenberg", "text": "", "album_id": "72157623146557081", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4299524320_97d0e88fd4_o.jpg", "secret": "bcc2700cd3", "media": "photo", "latitude": "0", "id": "4299524320", "tags": "christmasmarket nurenberg horsecarriage"}, {"datetaken": "2009-12-22 11:51:02", "license": "1", "title": "Carriage in Nurenberg", "text": "", "album_id": "72157623146557081", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4298778077_1e5022b7ca_o.jpg", "secret": "d71b9263cd", "media": "photo", "latitude": "0", "id": "4298778077", "tags": "christmasmarket nurenberg horsecarraige"}, {"datetaken": "2009-12-22 11:59:10", "license": "1", "title": "Gingerbread Vendor in Nurenberg", "text": "", "album_id": "72157623146557081", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4299526180_93d96ae0c1_o.jpg", "secret": "51be56199b", "media": "photo", "latitude": "0", "id": "4299526180", "tags": "gingerbread christmasmarket nurenberg"}, {"datetaken": "2009-12-22 12:07:20", "license": "1", "title": "Nurenberg Christmas Market", "text": "", "album_id": "72157623146557081", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2734/4299530150_8a550b757c_o.jpg", "secret": "b4de97bfa6", "media": "photo", "latitude": "0", "id": "4299530150", "tags": "christmasmarket nurenberg"}, {"datetaken": "2009-12-23 02:30:42", "license": "1", "title": "Chucky's Family", "text": "", "album_id": "72157623146557081", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4299534200_b66c14fc61_o.jpg", "secret": "056147c932", "media": "photo", "latitude": "0", "id": "4299534200", "tags": "christmasmarket nurenberg"}, {"datetaken": "2009-12-23 02:47:59", "license": "1", "title": "Sweets Vendor in Nurenberg Market", "text": "", "album_id": "72157623146557081", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4298792909_2490f3dbc7_o.jpg", "secret": "5bb287dc8a", "media": "photo", "latitude": "0", "id": "4298792909", "tags": "candy christmasmarket nurenberg"}, {"datetaken": "2005-05-24 11:18:44", "license": "3", "title": "Floating Mosque", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/15397539_d3ca3d225c_o.jpg", "secret": "d3ca3d225c", "media": "photo", "latitude": "0", "id": "15397539", "tags": "terengganu malaysia"}, {"datetaken": "2005-05-24 11:18:50", "license": "3", "title": "Flowers", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15397554_32a79250cb_o.jpg", "secret": "32a79250cb", "media": "photo", "latitude": "0", "id": "15397554", "tags": "terengganu malaysia"}, {"datetaken": "2005-05-24 11:18:53", "license": "3", "title": "Rural Malay House", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/15397558_1865a3af54_o.jpg", "secret": "1865a3af54", "media": "photo", "latitude": "0", "id": "15397558", "tags": "terengganu malaysia"}, {"datetaken": "2005-05-24 11:18:55", "license": "3", "title": "Longhouse", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/15397564_e135c70f8f_o.jpg", "secret": "e135c70f8f", "media": "photo", "latitude": "0", "id": "15397564", "tags": "terengganu malaysia"}, {"datetaken": "2005-05-24 11:18:56", "license": "3", "title": "Monkey on a Leash", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/15397568_8b8fb8ebdb_o.jpg", "secret": "8b8fb8ebdb", "media": "photo", "latitude": "0", "id": "15397568", "tags": "terengganu malaysia animals monkey"}, {"datetaken": "2005-05-24 11:18:59", "license": "3", "title": "Men with Monkeys", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15397573_f8db4399cc_o.jpg", "secret": "f8db4399cc", "media": "photo", "latitude": "0", "id": "15397573", "tags": "terengganu malaysia"}, {"datetaken": "2005-05-24 11:19:00", "license": "3", "title": "Monkey Fight", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/15397576_4e1eccdeb3_o.jpg", "secret": "4e1eccdeb3", "media": "photo", "latitude": "0", "id": "15397576", "tags": "terengganu malaysia animals monkey"}, {"datetaken": "2005-05-24 11:19:00", "license": "3", "title": "Mosque Beside Pasar Payang", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15397579_3a96e8e3d2_o.jpg", "secret": "3a96e8e3d2", "media": "photo", "latitude": "0", "id": "15397579", "tags": "terengganu malaysia"}, {"datetaken": "2005-05-24 11:19:02", "license": "3", "title": "Terengganu State Museum", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15397587_12e5a5101a_o.jpg", "secret": "12e5a5101a", "media": "photo", "latitude": "0", "id": "15397587", "tags": "terengganu malaysia museum"}, {"datetaken": "2005-05-24 11:19:05", "license": "3", "title": "Beach Chalet 3", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/15397596_3301acb616_o.jpg", "secret": "3301acb616", "media": "photo", "latitude": "0", "id": "15397596", "tags": "terengganu malaysia"}, {"datetaken": "2005-05-24 11:19:07", "license": "3", "title": "Beach Chalets 2", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15397599_a04eefe53e_o.jpg", "secret": "a04eefe53e", "media": "photo", "latitude": "0", "id": "15397599", "tags": "terengganu malaysia"}, {"datetaken": "2005-05-24 11:19:09", "license": "3", "title": "Resort Sign", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15397603_0bc4db9dbd_o.jpg", "secret": "0bc4db9dbd", "media": "photo", "latitude": "0", "id": "15397603", "tags": "terengganu malaysia"}, {"datetaken": "2005-05-24 11:19:14", "license": "3", "title": "Songket Close Up", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15397614_3dc7754619_o.jpg", "secret": "3dc7754619", "media": "photo", "latitude": "0", "id": "15397614", "tags": "terengganu malaysia"}, {"datetaken": "2005-05-24 11:19:16", "license": "3", "title": "Little Stuffed Sotong", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15397629_42167befea_o.jpg", "secret": "42167befea", "media": "photo", "latitude": "0", "id": "15397629", "tags": "terengganu malaysia food"}, {"datetaken": "2005-05-24 11:19:17", "license": "3", "title": "Stairs to the Longhouse", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/15397632_4b9bf29d02_o.jpg", "secret": "4b9bf29d02", "media": "photo", "latitude": "0", "id": "15397632", "tags": "terengganu malaysia"}, {"datetaken": "2005-05-24 11:19:19", "license": "3", "title": "Window Curtains", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15397635_842092d538_o.jpg", "secret": "842092d538", "media": "photo", "latitude": "0", "id": "15397635", "tags": "terengganu malaysia"}, {"datetaken": "2005-05-24 11:19:20", "license": "3", "title": "Beach in Terengganu", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/15397637_9fb61bf62c_o.jpg", "secret": "9fb61bf62c", "media": "photo", "latitude": "0", "id": "15397637", "tags": "terengganu malaysia beach"}, {"datetaken": "2005-05-24 11:19:21", "license": "3", "title": "Beach Chalet", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15397638_2d3c43f70b_o.jpg", "secret": "2d3c43f70b", "media": "photo", "latitude": "0", "id": "15397638", "tags": "terengganu malaysia"}, {"datetaken": "2005-05-24 11:19:23", "license": "3", "title": "Fresh Coconuts", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15397641_28890f0050_o.jpg", "secret": "28890f0050", "media": "photo", "latitude": "0", "id": "15397641", "tags": "terengganu malaysia"}, {"datetaken": "2005-05-24 11:20:00", "license": "3", "title": "Chinese Shop Doorway", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15397716_1b5c0d9144_o.jpg", "secret": "1b5c0d9144", "media": "photo", "latitude": "0", "id": "15397716", "tags": "terengganu malaysia"}, {"datetaken": "2005-05-24 11:20:38", "license": "3", "title": "Buffalo at Roadside", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15397802_a603785709_o.jpg", "secret": "a603785709", "media": "photo", "latitude": "0", "id": "15397802", "tags": "terengganu malaysia buffalo animals"}, {"datetaken": "2005-05-24 11:21:03", "license": "3", "title": "Songket Cloth", "text": "", "album_id": "371372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/15397868_e7977d418f_o.jpg", "secret": "e7977d418f", "media": "photo", "latitude": "0", "id": "15397868", "tags": "terengganu malaysia songket weaving fabric"}, {"datetaken": "2005-04-24 10:13:21", "license": "2", "title": "Art museum cat", "text": "", "album_id": "270479", "longitude": "133.792705", "url_o": "https://farm1.staticflickr.com/7/10861289_82e139f15a_o.jpg", "secret": "82e139f15a", "media": "photo", "latitude": "34.288140", "id": "10861289", "tags": "marugame"}, {"datetaken": "2005-04-24 11:52:16", "license": "2", "title": "Marugame castle", "text": "", "album_id": "270479", "longitude": "133.807811", "url_o": "https://farm1.staticflickr.com/6/10861228_d62125d95b_o.jpg", "secret": "d62125d95b", "media": "photo", "latitude": "34.277644", "id": "10861228", "tags": "marugame"}, {"datetaken": "2005-04-24 11:52:59", "license": "2", "title": "Marugame castle", "text": "", "album_id": "270479", "longitude": "133.807811", "url_o": "https://farm1.staticflickr.com/6/10861174_eecb5d46f2_o.jpg", "secret": "eecb5d46f2", "media": "photo", "latitude": "34.277644", "id": "10861174", "tags": "marugame wish koi koinobori"}, {"datetaken": "2005-04-24 11:53:39", "license": "2", "title": "Marugame castle", "text": "", "album_id": "270479", "longitude": "133.807811", "url_o": "https://farm1.staticflickr.com/5/10861133_9aa2a97c5a_o.jpg", "secret": "9aa2a97c5a", "media": "photo", "latitude": "34.277644", "id": "10861133", "tags": "marugame"}, {"datetaken": "2005-04-24 12:00:22", "license": "2", "title": "Marugame castle", "text": "", "album_id": "270479", "longitude": "133.807811", "url_o": "https://farm1.staticflickr.com/6/10861083_97a45d3044_o.jpg", "secret": "97a45d3044", "media": "photo", "latitude": "34.277644", "id": "10861083", "tags": "marugame"}, {"datetaken": "2005-04-24 12:00:43", "license": "2", "title": "Marugame castle", "text": "", "album_id": "270479", "longitude": "133.807811", "url_o": "https://farm1.staticflickr.com/8/10861040_4b500a355c_o.jpg", "secret": "4b500a355c", "media": "photo", "latitude": "34.277644", "id": "10861040", "tags": "marugame samurai spirit busi bushi edo"}, {"datetaken": "2005-04-24 12:02:33", "license": "2", "title": "Marugame castle", "text": "", "album_id": "270479", "longitude": "133.807811", "url_o": "https://farm1.staticflickr.com/8/10861001_370a7420e3_o.jpg", "secret": "370a7420e3", "media": "photo", "latitude": "34.277644", "id": "10861001", "tags": "marugame"}, {"datetaken": "2005-04-24 12:03:06", "license": "2", "title": "Marugame castle", "text": "", "album_id": "270479", "longitude": "133.807811", "url_o": "https://farm1.staticflickr.com/5/10860972_43a7b29774_o.jpg", "secret": "43a7b29774", "media": "photo", "latitude": "34.277644", "id": "10860972", "tags": "marugame"}, {"datetaken": "2005-04-24 12:13:48", "license": "2", "title": "Marugame", "text": "", "album_id": "270479", "longitude": "133.807811", "url_o": "https://farm1.staticflickr.com/6/10860926_5e3e96dcec_o.jpg", "secret": "5e3e96dcec", "media": "photo", "latitude": "34.277644", "id": "10860926", "tags": "marugame"}, {"datetaken": "2005-04-24 12:17:08", "license": "2", "title": "Seto oohashi", "text": "", "album_id": "270479", "longitude": "133.807811", "url_o": "https://farm1.staticflickr.com/8/10860887_5a498ae8e1_o.jpg", "secret": "5a498ae8e1", "media": "photo", "latitude": "34.277644", "id": "10860887", "tags": "marugame"}, {"datetaken": "2005-04-24 12:22:10", "license": "2", "title": "Marugame", "text": "", "album_id": "270479", "longitude": "133.807811", "url_o": "https://farm1.staticflickr.com/7/10860832_ed85f01e5f_o.jpg", "secret": "ed85f01e5f", "media": "photo", "latitude": "34.277644", "id": "10860832", "tags": "marugame"}, {"datetaken": "2005-04-24 12:40:28", "license": "2", "title": "Marugame", "text": "", "album_id": "270479", "longitude": "133.792705", "url_o": "https://farm1.staticflickr.com/7/10860767_2b91906793_o.jpg", "secret": "2b91906793", "media": "photo", "latitude": "34.288140", "id": "10860767", "tags": "marugame japan house design architecture modern"}, {"datetaken": "2005-04-24 12:40:51", "license": "2", "title": "Marugame", "text": "", "album_id": "270479", "longitude": "133.792705", "url_o": "https://farm1.staticflickr.com/6/10860731_3f3edd3c8b_o.jpg", "secret": "3f3edd3c8b", "media": "photo", "latitude": "34.288140", "id": "10860731", "tags": "marugame"}, {"datetaken": "2005-06-25 12:10:57", "license": "3", "title": "Welcome to Oregon!", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21845397_bc5d55fe0f_o.jpg", "secret": "bc5d55fe0f", "media": "photo", "latitude": "0", "id": "21845397", "tags": "travel portland"}, {"datetaken": "2005-06-25 12:18:44", "license": "3", "title": "", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21845415_4413e6cf05_o.jpg", "secret": "4413e6cf05", "media": "photo", "latitude": "0", "id": "21845415", "tags": "travel portland"}, {"datetaken": "2005-06-25 12:23:18", "license": "3", "title": "Hotel Lucia, Portland, Oregon", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21845433_9399abea42_o.jpg", "secret": "9399abea42", "media": "photo", "latitude": "0", "id": "21845433", "tags": "travel portland"}, {"datetaken": "2005-06-25 14:53:11", "license": "3", "title": "Me", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21845446_b11728cd57_o.jpg", "secret": "b11728cd57", "media": "photo", "latitude": "0", "id": "21845446", "tags": "travel portland me"}, {"datetaken": "2005-06-25 15:40:01", "license": "3", "title": "The End of a Margarita", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21845455_17240d3b85_o.jpg", "secret": "17240d3b85", "media": "photo", "latitude": "0", "id": "21845455", "tags": "travel portland"}, {"datetaken": "2005-06-25 20:00:24", "license": "3", "title": "The Greatest Store!", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21845465_321ebcac80_o.jpg", "secret": "321ebcac80", "media": "photo", "latitude": "0", "id": "21845465", "tags": "travel portland"}, {"datetaken": "2005-06-26 11:26:49", "license": "3", "title": "", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21845490_e5426398fa_o.jpg", "secret": "e5426398fa", "media": "photo", "latitude": "0", "id": "21845490", "tags": "travel portland"}, {"datetaken": "2005-06-26 11:41:36", "license": "3", "title": "Sarah before Mehndi", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21845517_6685b3d1f0_o.jpg", "secret": "6685b3d1f0", "media": "photo", "latitude": "0", "id": "21845517", "tags": "travel portland"}, {"datetaken": "2005-06-26 11:43:14", "license": "3", "title": "Sarah during Mehndi application", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21845533_82a9d4f2fa_o.jpg", "secret": "82a9d4f2fa", "media": "photo", "latitude": "0", "id": "21845533", "tags": "travel portland"}, {"datetaken": "2005-06-26 11:44:31", "license": "3", "title": "A little more...", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21845547_f526e3477c_o.jpg", "secret": "f526e3477c", "media": "photo", "latitude": "0", "id": "21845547", "tags": "travel portland"}, {"datetaken": "2005-06-26 12:52:48", "license": "3", "title": "Hot Chocolate", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21845582_9fc61728e6_o.jpg", "secret": "9fc61728e6", "media": "photo", "latitude": "0", "id": "21845582", "tags": "travel food portland"}, {"datetaken": "2005-06-26 14:40:56", "license": "3", "title": "Sarah's finished Mehndi", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21845559_98d0022d9d_o.jpg", "secret": "98d0022d9d", "media": "photo", "latitude": "0", "id": "21845559", "tags": "travel portland"}, {"datetaken": "2005-06-26 14:42:49", "license": "3", "title": "Eye in the tree", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21845629_d3f629dfcf_o.jpg", "secret": "d3f629dfcf", "media": "photo", "latitude": "0", "id": "21845629", "tags": "travel portland nature"}, {"datetaken": "2005-06-26 14:44:59", "license": "3", "title": "Kids in the park", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21845605_ac73f8dc5b_o.jpg", "secret": "ac73f8dc5b", "media": "photo", "latitude": "0", "id": "21845605", "tags": "travel portland"}, {"datetaken": "2005-06-26 15:56:52", "license": "3", "title": "", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21845644_f09ef3bceb_o.jpg", "secret": "f09ef3bceb", "media": "photo", "latitude": "0", "id": "21845644", "tags": "travel portland"}, {"datetaken": "2005-06-26 16:09:41", "license": "3", "title": "Boats", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21845663_353892d3af_o.jpg", "secret": "353892d3af", "media": "photo", "latitude": "0", "id": "21845663", "tags": "travel portland"}, {"datetaken": "2005-06-26 16:26:30", "license": "3", "title": "margarita", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21845688_9ce91726af_o.jpg", "secret": "9ce91726af", "media": "photo", "latitude": "0", "id": "21845688", "tags": "travel portland food"}, {"datetaken": "2005-06-26 16:42:19", "license": "3", "title": "tomato and basil bisque", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21845710_7a85af4ac3_o.jpg", "secret": "7a85af4ac3", "media": "photo", "latitude": "0", "id": "21845710", "tags": "travel portland food"}, {"datetaken": "2005-06-26 16:58:00", "license": "3", "title": "marionberry", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21845725_ee3e232c6c_o.jpg", "secret": "ee3e232c6c", "media": "photo", "latitude": "0", "id": "21845725", "tags": "travel portland food"}, {"datetaken": "2005-06-26 16:59:09", "license": "3", "title": "berries", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21845752_c886903898_o.jpg", "secret": "c886903898", "media": "photo", "latitude": "0", "id": "21845752", "tags": "travel portland food"}, {"datetaken": "2005-06-26 16:59:20", "license": "3", "title": "", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21845795_be3219dc37_o.jpg", "secret": "be3219dc37", "media": "photo", "latitude": "0", "id": "21845795", "tags": "travel portland food"}, {"datetaken": "2005-06-26 16:59:28", "license": "3", "title": "", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21845820_1b37673024_o.jpg", "secret": "1b37673024", "media": "photo", "latitude": "0", "id": "21845820", "tags": "travel portland food"}, {"datetaken": "2005-06-26 16:59:39", "license": "3", "title": "", "text": "", "album_id": "507082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21845780_c62e9229a7_o.jpg", "secret": "c62e9229a7", "media": "photo", "latitude": "0", "id": "21845780", "tags": "travel portland food"}, {"datetaken": "2010-01-24 16:57:32", "license": "6", "title": "Tasty Doner Kebab in Hanoi", "text": "", "album_id": "72157623169361399", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4308260855_fe439b153b_o.jpg", "secret": "046230cbb1", "media": "photo", "latitude": "0", "id": "4308260855", "tags": ""}, {"datetaken": "2010-01-24 17:01:12", "license": "6", "title": "Doner Kabab Bahn My", "text": "", "album_id": "72157623169361399", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4308259951_9a0583ed4a_o.jpg", "secret": "ab2b430cf2", "media": "photo", "latitude": "0", "id": "4308259951", "tags": ""}, {"datetaken": "2010-01-24 18:05:34", "license": "6", "title": "That's furniture moving here :)", "text": "", "album_id": "72157623169361399", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4308261671_e90d178141_o.jpg", "secret": "268db24261", "media": "photo", "latitude": "0", "id": "4308261671", "tags": ""}, {"datetaken": "2010-01-24 18:15:55", "license": "6", "title": "Hoan Kiem lit up at night", "text": "", "album_id": "72157623169361399", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4308264279_c37989bb68_o.jpg", "secret": "984eb1ede5", "media": "photo", "latitude": "0", "id": "4308264279", "tags": ""}, {"datetaken": "2010-01-24 18:16:51", "license": "6", "title": "Swiss's artistic shot of the lake, very nice!", "text": "", "album_id": "72157623169361399", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4309003206_2d18a8e789_o.jpg", "secret": "bbfcc92e47", "media": "photo", "latitude": "0", "id": "4309003206", "tags": ""}, {"datetaken": "2010-01-24 18:18:51", "license": "6", "title": "Awww...what a cute couple", "text": "", "album_id": "72157623169361399", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4309004504_7c306b2db3_o.jpg", "secret": "f80198c8aa", "media": "photo", "latitude": "0", "id": "4309004504", "tags": ""}, {"datetaken": "2010-01-24 18:30:56", "license": "6", "title": "Swiss as a blue drop", "text": "", "album_id": "72157623169361399", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4309005794_160297e9f9_o.jpg", "secret": "2c7a383bbf", "media": "photo", "latitude": "0", "id": "4309005794", "tags": ""}, {"datetaken": "2010-01-24 18:35:20", "license": "6", "title": "Swiss (as a blue drop) accosts Matt", "text": "", "album_id": "72157623169361399", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2709/4309001388_9c8d28a3c2_o.jpg", "secret": "90c01ca68f", "media": "photo", "latitude": "0", "id": "4309001388", "tags": ""}, {"datetaken": "2010-01-24 19:03:37", "license": "6", "title": "Bia Hoi in Hanoi", "text": "", "album_id": "72157623169361399", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2749/4309006912_3b8efe2d30_o.jpg", "secret": "2c85beecf4", "media": "photo", "latitude": "0", "id": "4309006912", "tags": ""}, {"datetaken": "2010-01-24 19:18:16", "license": "6", "title": "Our barmaid in Hanoi", "text": "", "album_id": "72157623169361399", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4308269133_c7a43fbdfa_o.jpg", "secret": "c10ac48a96", "media": "photo", "latitude": "0", "id": "4308269133", "tags": ""}, {"datetaken": "2010-01-24 19:25:05", "license": "6", "title": "That's right, she served us beer!", "text": "", "album_id": "72157623169361399", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4309008396_c1b3f5c4aa_o.jpg", "secret": "522f2bf520", "media": "photo", "latitude": "0", "id": "4309008396", "tags": ""}, {"datetaken": "2010-01-24 20:10:29", "license": "6", "title": "Roadside dinner in Hanoi", "text": "", "album_id": "72157623169361399", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4309009162_38e0e87899_o.jpg", "secret": "5dab479ab3", "media": "photo", "latitude": "0", "id": "4309009162", "tags": ""}, {"datetaken": "2010-01-24 20:15:50", "license": "6", "title": "Cyndi eating on the side of the road, never thought I'd see the day! :)", "text": "", "album_id": "72157623169361399", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4309009962_fb8738a930_o.jpg", "secret": "3816cc50e3", "media": "photo", "latitude": "0", "id": "4309009962", "tags": ""}, {"datetaken": "2010-01-24 22:13:39", "license": "6", "title": "Hoan Kiem Lake and Old Quarter Hanoi at night", "text": "", "album_id": "72157623169361399", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4308267667_4ca85cf171_o.jpg", "secret": "e149e30188", "media": "photo", "latitude": "0", "id": "4308267667", "tags": ""}, {"datetaken": "2010-01-25 10:20:33", "license": "6", "title": "Don Xuan Market, Hanoi", "text": "", "album_id": "72157623169361399", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4309011458_008fae594a_o.jpg", "secret": "dc9f5de6ce", "media": "photo", "latitude": "0", "id": "4309011458", "tags": ""}, {"datetaken": "2010-01-25 12:48:42", "license": "6", "title": "Chicken Hot Pot, Hanoi", "text": "", "album_id": "72157623169361399", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4309012742_d8a6c6ff8e_o.jpg", "secret": "567112b1a0", "media": "photo", "latitude": "0", "id": "4309012742", "tags": ""}, {"datetaken": "2010-01-25 12:49:17", "license": "6", "title": "Very focused on serving the hot pot", "text": "", "album_id": "72157623169361399", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4309010658_4d48ea903d_o.jpg", "secret": "5c76d6b9a8", "media": "photo", "latitude": "0", "id": "4309010658", "tags": ""}, {"datetaken": "2009-12-26 12:21:23", "license": "3", "title": "Lobsters", "text": "", "album_id": "72157623402266877", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4395549474_e13e06c4b0_o.jpg", "secret": "c29a21e009", "media": "photo", "latitude": "0", "id": "4395549474", "tags": "australia melbourne"}, {"datetaken": "2009-12-26 12:26:37", "license": "3", "title": "Colours for sale", "text": "", "album_id": "72157623402266877", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4395550478_3cb18e6ff6_o.jpg", "secret": "4c52eff80b", "media": "photo", "latitude": "0", "id": "4395550478", "tags": "australia melbourne"}, {"datetaken": "2009-12-26 12:26:50", "license": "3", "title": "Colours for sale", "text": "", "album_id": "72157623402266877", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4395551506_ef09b1370b_o.jpg", "secret": "8c594105c3", "media": "photo", "latitude": "0", "id": "4395551506", "tags": "australia melbourne"}, {"datetaken": "2009-12-26 12:27:27", "license": "3", "title": "Baskets for sale", "text": "", "album_id": "72157623402266877", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2712/4395552632_a81a82b650_o.jpg", "secret": "8f94828763", "media": "photo", "latitude": "0", "id": "4395552632", "tags": "australia melbourne"}, {"datetaken": "2009-12-26 12:28:06", "license": "3", "title": "Baskets for sale", "text": "", "album_id": "72157623402266877", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4394787297_1d12a9388e_o.jpg", "secret": "93d1daf850", "media": "photo", "latitude": "0", "id": "4394787297", "tags": "australia melbourne"}, {"datetaken": "2009-12-26 12:40:43", "license": "3", "title": "Didgeridoos for sale", "text": "", "album_id": "72157623402266877", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2780/4394788317_86501305a6_o.jpg", "secret": "ac661f2c51", "media": "photo", "latitude": "0", "id": "4394788317", "tags": "australia melbourne"}, {"datetaken": "2009-12-26 12:41:05", "license": "3", "title": "Boomerangs for sale", "text": "", "album_id": "72157623402266877", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4394789377_9c5c0636e3_o.jpg", "secret": "cabd921bef", "media": "photo", "latitude": "0", "id": "4394789377", "tags": "australia melbourne"}, {"datetaken": "2009-12-26 12:47:03", "license": "3", "title": "Colourful fairy costumes for sale", "text": "", "album_id": "72157623402266877", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4395556790_09280a4f4c_o.jpg", "secret": "21d7b41355", "media": "photo", "latitude": "0", "id": "4395556790", "tags": "australia melbourne"}, {"datetaken": "2009-12-26 12:47:14", "license": "3", "title": "Colourful fairy costumes for sale", "text": "", "album_id": "72157623402266877", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2755/4394791253_cd47efaf8a_o.jpg", "secret": "9601097059", "media": "photo", "latitude": "0", "id": "4394791253", "tags": "australia melbourne"}, {"datetaken": "2009-12-26 13:18:50", "license": "3", "title": "Reflections in a tram mirror", "text": "", "album_id": "72157623402266877", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4395558508_477b8c6047_o.jpg", "secret": "a456a271a5", "media": "photo", "latitude": "0", "id": "4395558508", "tags": "australia melbourne"}, {"datetaken": "2009-12-27 06:13:46", "license": "3", "title": "Harley at St Kildas", "text": "", "album_id": "72157623402266877", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4395559490_e7c0977a3c_o.jpg", "secret": "120b9d7305", "media": "photo", "latitude": "0", "id": "4395559490", "tags": "australia melbourne"}, {"datetaken": "2009-12-28 00:33:52", "license": "3", "title": "Big watch winder", "text": "", "album_id": "72157623402266877", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4394794725_4459708d58_o.jpg", "secret": "b15de6d87b", "media": "photo", "latitude": "0", "id": "4394794725", "tags": "australia melbourne"}, {"datetaken": "2009-12-28 01:11:24", "license": "3", "title": "Royal Exhibition Building", "text": "", "album_id": "72157623402266877", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4395561904_620fdd74b2_o.jpg", "secret": "f47144fc5f", "media": "photo", "latitude": "0", "id": "4395561904", "tags": "australia melbourne"}, {"datetaken": "2009-12-28 01:15:10", "license": "3", "title": "Royal Exhibition Building", "text": "", "album_id": "72157623402266877", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4394796245_c51c39d6a0_o.jpg", "secret": "a07b2634e4", "media": "photo", "latitude": "0", "id": "4394796245", "tags": "australia melbourne"}, {"datetaken": "2009-12-28 02:14:04", "license": "3", "title": "Street Art", "text": "", "album_id": "72157623402266877", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2776/4395563306_a2775d82e0_o.jpg", "secret": "2bcc205491", "media": "photo", "latitude": "0", "id": "4395563306", "tags": "australia melbourne"}, {"datetaken": "2010-01-28 12:34:33", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4313915214_99ddf7d9e9_o.jpg", "secret": "5746976f0b", "media": "photo", "latitude": "0", "id": "4313915214", "tags": "winter italy test canon europe raw bologna s90"}, {"datetaken": "2010-01-28 12:36:10", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2680/4313915576_621dddd7bf_o.jpg", "secret": "731b99a9ec", "media": "photo", "latitude": "0", "id": "4313915576", "tags": "winter italy test canon europe raw bologna s90"}, {"datetaken": "2010-01-28 13:06:10", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2723/4313915930_dba34c7a4a_o.jpg", "secret": "807ed93d5c", "media": "photo", "latitude": "0", "id": "4313915930", "tags": "winter italy test canon europe raw bologna s90 santostefano"}, {"datetaken": "2010-01-28 13:07:08", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4313180675_1f43241336_o.jpg", "secret": "5d7c234ae7", "media": "photo", "latitude": "0", "id": "4313180675", "tags": "winter italy test canon europe raw bologna s90"}, {"datetaken": "2010-01-28 13:07:48", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4313916712_0638be4caa_o.jpg", "secret": "fe2685eb2e", "media": "photo", "latitude": "0", "id": "4313916712", "tags": "winter italy test canon europe raw bologna s90 santostefano"}, {"datetaken": "2010-01-28 13:10:09", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2734/4313181497_de4fa17f17_o.jpg", "secret": "faae328d9c", "media": "photo", "latitude": "0", "id": "4313181497", "tags": "winter italy test canon europe raw bologna s90 santostefano"}, {"datetaken": "2010-01-28 13:10:42", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2773/4313917504_09e263d491_o.jpg", "secret": "7387b19f13", "media": "photo", "latitude": "0", "id": "4313917504", "tags": "winter italy test canon europe raw bologna s90 santostefano"}, {"datetaken": "2010-01-28 13:11:15", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2585/4313182211_dd6daa14c9_o.jpg", "secret": "bf69c10981", "media": "photo", "latitude": "0", "id": "4313182211", "tags": "winter italy test canon europe raw bologna s90 santostefano"}, {"datetaken": "2010-01-28 13:11:50", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4313918118_1715668c87_o.jpg", "secret": "0b5668dbbf", "media": "photo", "latitude": "0", "id": "4313918118", "tags": "winter italy test canon europe raw bologna s90"}, {"datetaken": "2010-01-28 13:12:05", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2435/4313918516_8f8875f607_o.jpg", "secret": "f018de2014", "media": "photo", "latitude": "0", "id": "4313918516", "tags": "winter italy test canon europe raw bologna s90"}, {"datetaken": "2010-01-28 13:33:17", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2778/4313918956_7d9c5def39_o.jpg", "secret": "8f86936293", "media": "photo", "latitude": "0", "id": "4313918956", "tags": "winter italy test canon europe raw bologna s90 duetorri asinelli garisenda"}, {"datetaken": "2010-01-28 13:36:44", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4313183665_f16398dd0e_o.jpg", "secret": "2227aa0067", "media": "photo", "latitude": "0", "id": "4313183665", "tags": "winter italy test canon europe raw bologna s90"}, {"datetaken": "2010-01-28 13:37:33", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4313919778_6b689f9297_o.jpg", "secret": "b2b614002b", "media": "photo", "latitude": "0", "id": "4313919778", "tags": "winter italy test canon europe raw market vegetable bologna s90"}, {"datetaken": "2010-01-28 13:38:00", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4313184613_53ff14e02b_o.jpg", "secret": "63e0aa8b12", "media": "photo", "latitude": "0", "id": "4313184613", "tags": "winter italy test canon europe raw market vegetable bologna s90"}, {"datetaken": "2010-01-28 13:38:35", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4313920688_cedc58cb1f_o.jpg", "secret": "2a6bb64a69", "media": "photo", "latitude": "0", "id": "4313920688", "tags": "winter italy test canon europe raw market vegetable bologna s90"}, {"datetaken": "2010-01-28 13:42:03", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4313921076_8be35be32d_o.jpg", "secret": "702375f70d", "media": "photo", "latitude": "0", "id": "4313921076", "tags": "winter italy test canon europe raw bologna s90"}, {"datetaken": "2010-01-28 13:43:16", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4313185863_39f272e01d_o.jpg", "secret": "2be585cc11", "media": "photo", "latitude": "0", "id": "4313185863", "tags": "winter italy test canon europe raw bologna s90"}, {"datetaken": "2010-01-28 13:45:56", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4313186257_7d51178d83_o.jpg", "secret": "22644e3b6a", "media": "photo", "latitude": "0", "id": "4313186257", "tags": "winter italy test canon europe raw bologna s90"}, {"datetaken": "2010-01-28 13:50:17", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4313922140_425a4ec4cc_o.jpg", "secret": "f8f11545d2", "media": "photo", "latitude": "0", "id": "4313922140", "tags": "winter italy test canon europe raw bologna s90 santostefano"}, {"datetaken": "2010-01-28 13:50:38", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4313922662_4ac895b70c_o.jpg", "secret": "4576e77547", "media": "photo", "latitude": "0", "id": "4313922662", "tags": "winter italy test canon europe raw bologna s90"}, {"datetaken": "2010-01-28 13:51:05", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2773/4313187755_846341deed_o.jpg", "secret": "bde8b377e8", "media": "photo", "latitude": "0", "id": "4313187755", "tags": "winter italy test canon europe raw bologna s90 santostefano"}, {"datetaken": "2010-01-28 13:51:14", "license": "1", "title": "Bologna Canon s90 test", "text": "", "album_id": "72157623182397155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2695/4313923396_540af26f24_o.jpg", "secret": "bc733a038e", "media": "photo", "latitude": "0", "id": "4313923396", "tags": "winter italy test canon europe raw bologna s90 santostefano"}, {"datetaken": "2012-01-28 11:11:12", "license": "6", "title": "Settle market place", "text": "", "album_id": "72157629080161275", "longitude": "-2.277053", "url_o": "https://farm8.staticflickr.com/7005/6781355063_0842f80296_o.jpg", "secret": "6a1119b764", "media": "photo", "latitude": "54.069099", "id": "6781355063", "tags": "yorkshire settle penninebridleway settleloop"}, {"datetaken": "2012-01-28 13:10:09", "license": "6", "title": "The more I looked the more sheep I saw", "text": "", "album_id": "72157629080161275", "longitude": "-2.199668", "url_o": "https://farm8.staticflickr.com/7023/6781356741_4f1e58b0a9_o.jpg", "secret": "6632a00a0e", "media": "photo", "latitude": "54.058118", "id": "6781356741", "tags": "snow sheep yorkshire settle penninebridleway settleloop"}, {"datetaken": "2012-01-28 13:15:11", "license": "6", "title": "Thinking (wrongly) I'd reached the top", "text": "", "album_id": "72157629080161275", "longitude": "-2.184906", "url_o": "https://farm8.staticflickr.com/7167/6781358269_e3795108ba_o.jpg", "secret": "9bf81a79cf", "media": "photo", "latitude": "54.053160", "id": "6781358269", "tags": "yorkshire settle penninebridleway settleloop kirkbyfell"}, {"datetaken": "2012-01-28 13:15:41", "license": "6", "title": "wall", "text": "", "album_id": "72157629080161275", "longitude": "-2.178108", "url_o": "https://farm8.staticflickr.com/7142/6781359767_64d7b8c4aa_o.jpg", "secret": "aa850f83db", "media": "photo", "latitude": "54.055034", "id": "6781359767", "tags": "yorkshire settle penninebridleway settleloop"}, {"datetaken": "2012-01-28 14:21:16", "license": "6", "title": "snow and sky", "text": "", "album_id": "72157629080161275", "longitude": "-2.168838", "url_o": "https://farm8.staticflickr.com/7005/6781360865_231d91fd82_o.jpg", "secret": "1d60969e2d", "media": "photo", "latitude": "54.066802", "id": "6781360865", "tags": "yorkshire settle penninebridleway settleloop"}, {"datetaken": "2012-01-28 14:47:13", "license": "6", "title": "very long path", "text": "", "album_id": "72157629080161275", "longitude": "-2.178314", "url_o": "https://farm8.staticflickr.com/7019/6781362375_2f4a5662aa_o.jpg", "secret": "976085a983", "media": "photo", "latitude": "54.076895", "id": "6781362375", "tags": "yorkshire settle penninebridleway settleloop"}, {"datetaken": "2012-01-28 14:57:40", "license": "6", "title": "stones", "text": "", "album_id": "72157629080161275", "longitude": "-2.192527", "url_o": "https://farm8.staticflickr.com/7015/6781363957_f94ff2c400_o.jpg", "secret": "00f638214c", "media": "photo", "latitude": "54.072947", "id": "6781363957", "tags": "yorkshire settle penninebridleway settleloop"}, {"datetaken": "2012-01-28 15:08:56", "license": "6", "title": "falling behind", "text": "", "album_id": "72157629080161275", "longitude": "-2.199943", "url_o": "https://farm8.staticflickr.com/7170/6781365501_615ca8bddb_o.jpg", "secret": "04ca92caba", "media": "photo", "latitude": "54.075767", "id": "6781365501", "tags": "yorkshire settle penninebridleway settleloop"}, {"datetaken": "2012-01-28 15:09:12", "license": "6", "title": "stile and view of Pen-y-ghent", "text": "", "album_id": "72157629080161275", "longitude": "-2.216491", "url_o": "https://farm8.staticflickr.com/7173/6781367235_27061eeb29_o.jpg", "secret": "01641c50a4", "media": "photo", "latitude": "54.080964", "id": "6781367235", "tags": "yorkshire settle penninebridleway penyghensettleloop"}, {"datetaken": "2012-01-28 15:33:30", "license": "6", "title": "limestone and snow", "text": "", "album_id": "72157629080161275", "longitude": "-2.219993", "url_o": "https://farm8.staticflickr.com/7146/6781368629_33efca88f3_o.jpg", "secret": "26856084b5", "media": "photo", "latitude": "54.085233", "id": "6781368629", "tags": "yorkshire settle penninebridleway settleloop"}, {"datetaken": "2012-01-28 15:34:16", "license": "6", "title": "Langcliffe near caves", "text": "", "album_id": "72157629080161275", "longitude": "-2.236061", "url_o": "https://farm8.staticflickr.com/7019/6781369791_a05b76bdc3_o.jpg", "secret": "6ba7cf764e", "media": "photo", "latitude": "54.084126", "id": "6781369791", "tags": "yorkshire settle penninebridleway settleloop"}, {"datetaken": "2012-01-28 15:50:34", "license": "6", "title": "Langcliffe", "text": "", "album_id": "72157629080161275", "longitude": "-2.249862", "url_o": "https://farm8.staticflickr.com/7149/6781371057_bff0492f42_o.jpg", "secret": "8f74312617", "media": "photo", "latitude": "54.082494", "id": "6781371057", "tags": "yorkshire settle penninebridleway settleloop"}, {"datetaken": "2005-02-01 07:13:25", "license": "3", "title": "Bicycle as Truck", "text": "", "album_id": "102972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4085049_2fda7bc44b_o.jpg", "secret": "2fda7bc44b", "media": "photo", "latitude": "0", "id": "4085049", "tags": "malaysia chowkit market"}, {"datetaken": "2005-02-01 07:13:28", "license": "3", "title": "Cat's Delight", "text": "", "album_id": "102972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4085051_7eb2c9dbd1_o.jpg", "secret": "7eb2c9dbd1", "media": "photo", "latitude": "0", "id": "4085051", "tags": "malaysia chowkit market cat"}, {"datetaken": "2005-02-01 07:13:30", "license": "3", "title": "Chicken Butcher", "text": "", "album_id": "102972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4085055_153fea5d72_o.jpg", "secret": "153fea5d72", "media": "photo", "latitude": "0", "id": "4085055", "tags": "malaysia chowkit market"}, {"datetaken": "2005-02-01 07:13:34", "license": "3", "title": "Green Bananas", "text": "", "album_id": "102972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4085059_f2390c29fa_o.jpg", "secret": "f2390c29fa", "media": "photo", "latitude": "0", "id": "4085059", "tags": "malaysia chowkit market"}, {"datetaken": "2005-02-01 07:13:37", "license": "3", "title": "Man with Hose", "text": "", "album_id": "102972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4085063_6cce86dd1d_o.jpg", "secret": "6cce86dd1d", "media": "photo", "latitude": "0", "id": "4085063", "tags": "malaysia chowkit market"}, {"datetaken": "2005-02-01 07:13:39", "license": "3", "title": "Motorbike as Truck", "text": "", "album_id": "102972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4085067_792498e13b_o.jpg", "secret": "792498e13b", "media": "photo", "latitude": "0", "id": "4085067", "tags": "malaysia chowkit market motorbike"}, {"datetaken": "2005-02-01 07:13:43", "license": "3", "title": "Murtabak", "text": "", "album_id": "102972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4085070_0b1a0482f6_o.jpg", "secret": "0b1a0482f6", "media": "photo", "latitude": "0", "id": "4085070", "tags": "malaysia chowkit market food"}, {"datetaken": "2005-02-01 07:13:45", "license": "3", "title": "Trimming Mutton", "text": "", "album_id": "102972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4085073_addda66c95_o.jpg", "secret": "addda66c95", "media": "photo", "latitude": "0", "id": "4085073", "tags": "malaysia chowkit market"}, {"datetaken": "2005-02-01 07:13:51", "license": "3", "title": "Mystery Fruit", "text": "", "album_id": "102972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4085079_c44982ef11_o.jpg", "secret": "c44982ef11", "media": "photo", "latitude": "0", "id": "4085079", "tags": "malaysia chowkit market fruit"}, {"datetaken": "2005-02-01 07:13:54", "license": "3", "title": "Teksi", "text": "", "album_id": "102972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4085081_9cb4a80de3_o.jpg", "secret": "9cb4a80de3", "media": "photo", "latitude": "0", "id": "4085081", "tags": "malaysia chowkit market taxi"}, {"datetaken": "2005-02-01 07:13:57", "license": "3", "title": "Seed Vendor", "text": "", "album_id": "102972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4085087_d666677cb8_o.jpg", "secret": "d666677cb8", "media": "photo", "latitude": "0", "id": "4085087", "tags": "malaysia chowkit market"}, {"datetaken": "2005-02-01 07:14:03", "license": "3", "title": "Yellow Bananas", "text": "", "album_id": "102972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4085092_a6a826fa43_o.jpg", "secret": "a6a826fa43", "media": "photo", "latitude": "0", "id": "4085092", "tags": "malaysia chowkit market fruit"}, {"datetaken": "2009-12-14 13:30:40", "license": "5", "title": "Caution: Grannies!", "text": "", "album_id": "72157623132152719", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4292523409_66ff4b481a_o.jpg", "secret": "d6bc6e0847", "media": "photo", "latitude": "0", "id": "4292523409", "tags": "street old uk inglaterra england people sign calle triangle crossing cross post devon elderly caution elder se\u00f1al trafico cruzando ancianos totnes precaucion triangulo totness"}, {"datetaken": "2009-12-14 14:02:18", "license": "5", "title": "Una zorra con sombrero", "text": "", "album_id": "72157623132152719", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4319496852_5541655f0d_o.jpg", "secret": "d3cf8b5e26", "media": "photo", "latitude": "0", "id": "4319496852", "tags": "uk inglaterra england hat devon fox sombrero pamela zorra totnes totness"}, {"datetaken": "2009-12-14 14:02:40", "license": "5", "title": "Making friends", "text": "", "album_id": "72157623132152719", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4318824247_95b584b51f_o.jpg", "secret": "184ce4dc87", "media": "photo", "latitude": "0", "id": "4318824247", "tags": "uk inglaterra england devon totnes totness"}, {"datetaken": "2009-12-14 14:03:50", "license": "5", "title": "Totnes: Flea Market", "text": "", "album_id": "72157623132152719", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4328630747_3bb55a0ee1_o.jpg", "secret": "161be32600", "media": "photo", "latitude": "0", "id": "4328630747", "tags": "uk inglaterra england station play market psx videogames devon flea console playstation mercadillo rastro consolas totnes videojuegos totness"}, {"datetaken": "2009-12-14 14:06:53", "license": "5", "title": "Totnes: Flea Market", "text": "", "album_id": "72157623132152719", "longitude": "-3.681370", "url_o": "https://farm3.staticflickr.com/2702/4328653829_db9dae993f_o.jpg", "secret": "d70e91dd17", "media": "photo", "latitude": "50.431621", "id": "4328653829", "tags": "old uk inglaterra england television tv market vinyl player devon recorder flea viejo vinilo antiguo mercadillo totnes televisor totness"}, {"datetaken": "2009-12-14 14:11:10", "license": "5", "title": "Photo-Geeks stay aside!", "text": "", "album_id": "72157623132152719", "longitude": "-3.681370", "url_o": "https://farm5.staticflickr.com/4041/4318839617_8d78af0128_o.jpg", "secret": "c625571897", "media": "photo", "latitude": "50.431621", "id": "4318839617", "tags": "camera old uk inglaterra england photo market picture devon cameras fotos flea camara picnik camaras rastro viejas totnes totness"}, {"datetaken": "2009-12-14 14:13:11", "license": "5", "title": "Totnes: The Bull Inn", "text": "", "album_id": "72157623132152719", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2703/4328608203_902b3f3ac6_o.jpg", "secret": "fa1ce0a114", "media": "photo", "latitude": "0", "id": "4328608203", "tags": "uk inglaterra england pub inn bull devon totnes totness"}, {"datetaken": "2009-12-14 14:14:36", "license": "5", "title": "Totnes", "text": "", "album_id": "72157623132152719", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2723/4329209928_cb03e8c972_o.jpg", "secret": "7160feaaa1", "media": "photo", "latitude": "0", "id": "4329209928", "tags": "park uk inglaterra pink blue parque england tree azul bench arbol purple banco rosa devon totnes morado purpura totness"}, {"datetaken": "2009-12-14 14:14:36", "license": "5", "title": "Totnes", "text": "", "album_id": "72157623132152719", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4328489427_98f4b1535e_o.jpg", "secret": "12807434a3", "media": "photo", "latitude": "0", "id": "4328489427", "tags": "park uk inglaterra pink blue parque england azul bench purple banco rosa devon totnes morado purpura totness"}, {"datetaken": "2009-12-14 14:16:20", "license": "5", "title": "Totnes: Door", "text": "", "album_id": "72157623132152719", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4328595425_a1ea6efdfc_o.jpg", "secret": "495aee4d06", "media": "photo", "latitude": "0", "id": "4328595425", "tags": "door uk inglaterra england puerta gate entrance devon entrada totnes totness"}, {"datetaken": "2009-12-14 14:28:04", "license": "5", "title": "Chien Lunatique !", "text": "", "album_id": "72157623132152719", "longitude": "-3.690676", "url_o": "https://farm3.staticflickr.com/2788/4318777705_bd0926b9d2_o.jpg", "secret": "503e0866dc", "media": "photo", "latitude": "50.431889", "id": "4318777705", "tags": "uk inglaterra england dog chien french loco perro devon mad frances totnes lunatique totness"}, {"datetaken": "2009-12-14 14:29:02", "license": "5", "title": "Totnes Castle", "text": "", "album_id": "72157623132152719", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2689/4328532945_05aafe8fec_o.jpg", "secret": "f8a689c4a8", "media": "photo", "latitude": "0", "id": "4328532945", "tags": "uk inglaterra england house castle casa devon totnes totness"}, {"datetaken": "2009-12-14 14:29:14", "license": "5", "title": "Totnes", "text": "", "album_id": "72157623132152719", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4328415653_67d32ceda8_o.jpg", "secret": "b0c4863445", "media": "photo", "latitude": "0", "id": "4328415653", "tags": "uk inglaterra england castle devon castillo totnes totness"}, {"datetaken": "2009-12-14 14:29:14", "license": "5", "title": "Totnes: Castle", "text": "", "album_id": "72157623132152719", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4329166958_f1b09b8523_o.jpg", "secret": "e94312134d", "media": "photo", "latitude": "0", "id": "4329166958", "tags": "uk inglaterra england castle devon castillo totnes totness"}, {"datetaken": "2009-12-14 14:44:40", "license": "5", "title": "Totnes: Victoria Street", "text": "", "album_id": "72157623132152719", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4319533966_01f9107bef_o.jpg", "secret": "3036dcd2e2", "media": "photo", "latitude": "0", "id": "4319533966", "tags": "uk inglaterra england devon totnes totness"}, {"datetaken": "2009-12-14 15:05:20", "license": "5", "title": "British Breakfast", "text": "", "album_id": "72157623132152719", "longitude": "-3.681370", "url_o": "https://farm5.staticflickr.com/4043/4329064552_98cf5998a5_o.jpg", "secret": "1942199d78", "media": "photo", "latitude": "50.431621", "id": "4329064552", "tags": "uk inglaterra england english breakfast devon british ingles desayuno totnes totness"}, {"datetaken": "2009-12-14 16:47:35", "license": "5", "title": "Totnes: Una calle estrecha, h\u00fameda y oscura que lleva al Guildhall", "text": "", "album_id": "72157623132152719", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2495/4293407796_d306797bdc_o.jpg", "secret": "94ca8f77a2", "media": "photo", "latitude": "0", "id": "4293407796", "tags": "uk inglaterra england devon totnes totness"}, {"datetaken": "2010-01-30 11:10:33", "license": "1", "title": "Wine Train", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4320216433_b4d6638034_o.jpg", "secret": "6d3f0ab05a", "media": "photo", "latitude": "0", "id": "4320216433", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-30 11:10:38", "license": "1", "title": "Wine Train", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4320216657_2876c0e546_o.jpg", "secret": "0d6f1ba8f5", "media": "photo", "latitude": "0", "id": "4320216657", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-30 11:19:33", "license": "1", "title": "Wine Train", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4320950074_1109c87313_o.jpg", "secret": "a1f0ab4ed7", "media": "photo", "latitude": "0", "id": "4320950074", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-30 11:19:58", "license": "1", "title": "Wine Train", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2751/4320950396_11b633fd9f_o.jpg", "secret": "59d9df675c", "media": "photo", "latitude": "0", "id": "4320950396", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-30 11:31:41", "license": "1", "title": "Wine Train", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2717/4320950856_ed17cc6eb0_o.jpg", "secret": "0466cd7cac", "media": "photo", "latitude": "0", "id": "4320950856", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-30 11:52:48", "license": "1", "title": "Oxbow Market", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4320951282_5d7f3c1cc2_o.jpg", "secret": "c5b090be52", "media": "photo", "latitude": "0", "id": "4320951282", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-30 15:41:34", "license": "1", "title": "Domaine Chandon", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4320952202_8ca8443e13_o.jpg", "secret": "f00e72011c", "media": "photo", "latitude": "0", "id": "4320952202", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-30 15:41:49", "license": "1", "title": "Domaine Chandon", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4320219699_790556e976_o.jpg", "secret": "b0a268f89e", "media": "photo", "latitude": "0", "id": "4320219699", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-30 15:42:04", "license": "1", "title": "Domaine Chandon", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4320952904_f98c12d44b_o.jpg", "secret": "397f3954fb", "media": "photo", "latitude": "0", "id": "4320952904", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-30 16:31:31", "license": "1", "title": "Vineyard", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2783/4320220555_a33a8589c2_o.jpg", "secret": "5b55a63b53", "media": "photo", "latitude": "0", "id": "4320220555", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-31 11:57:01", "license": "1", "title": "Cactus", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2765/4320220941_c9510deb14_o.jpg", "secret": "7d9f551255", "media": "photo", "latitude": "0", "id": "4320220941", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-31 11:57:13", "license": "1", "title": "Cactus", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4320954294_f0e5f34c22_o.jpg", "secret": "f2bfa371d3", "media": "photo", "latitude": "0", "id": "4320954294", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-31 13:07:37", "license": "1", "title": "Orange", "text": "", "album_id": "72157623199274325", "longitude": "-122.450480", "url_o": "https://farm3.staticflickr.com/2715/4320226803_6dfeebd3cf_o.jpg", "secret": "0e65e307b1", "media": "photo", "latitude": "38.294551", "id": "4320226803", "tags": "california orange tree fruit leaf flora sonoma citrus winecountry presstrip casasebastiani"}, {"datetaken": "2010-01-31 13:07:52", "license": "1", "title": "Casa Sebastiani", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4320217005_e2942a9e77_o.jpg", "secret": "3cf9ecdc33", "media": "photo", "latitude": "0", "id": "4320217005", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-31 13:08:56", "license": "1", "title": "Pool Detail", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2754/4320954698_2bf9cfe27c_o.jpg", "secret": "5d134893e9", "media": "photo", "latitude": "0", "id": "4320954698", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-31 13:10:09", "license": "1", "title": "Flora", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4320222179_d88733b713_o.jpg", "secret": "80948c003d", "media": "photo", "latitude": "0", "id": "4320222179", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-31 13:11:51", "license": "1", "title": "Landscape", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2692/4320955888_d290b2b805_o.jpg", "secret": "1f8f66aa45", "media": "photo", "latitude": "0", "id": "4320955888", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-31 13:12:04", "license": "1", "title": "Landscape", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2710/4320956558_fb39225aa1_o.jpg", "secret": "07b7edab12", "media": "photo", "latitude": "0", "id": "4320956558", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-31 13:12:36", "license": "1", "title": "Landscape", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4320224099_e55b69e7ea_o.jpg", "secret": "dd4b92ceb1", "media": "photo", "latitude": "0", "id": "4320224099", "tags": "california sonoma winecountry presstrip casasebastiani"}, {"datetaken": "2010-01-31 13:13:52", "license": "1", "title": "Casa Sebastiani", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4320958156_d9dcbb1f27_o.jpg", "secret": "a8f8f5f5e3", "media": "photo", "latitude": "0", "id": "4320958156", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-31 13:55:17", "license": "1", "title": "Landscape", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4320959632_b47e9e0823_o.jpg", "secret": "2131063d33", "media": "photo", "latitude": "0", "id": "4320959632", "tags": "california sonoma winecountry morningfog presstrip"}, {"datetaken": "2010-01-31 13:55:22", "license": "1", "title": "Landscape", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4320958560_119fbef056_o.jpg", "secret": "a535e70df4", "media": "photo", "latitude": "0", "id": "4320958560", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-31 13:55:26", "license": "1", "title": "Landscape", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4320225721_4f1eaec8d6_o.jpg", "secret": "36324b5dbf", "media": "photo", "latitude": "0", "id": "4320225721", "tags": "california sonoma napa winecountry presstrip"}, {"datetaken": "2010-01-31 13:55:30", "license": "1", "title": "Landscape", "text": "", "album_id": "72157623199274325", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4320226049_1b860c7daf_o.jpg", "secret": "e3f09173a9", "media": "photo", "latitude": "0", "id": "4320226049", "tags": "california sonoma winecountry presstrip morningfogburningoff"}, {"datetaken": "2010-01-27 15:19:08", "license": "2", "title": "", "text": "", "album_id": "72157623312651344", "longitude": "19.060592", "url_o": "https://farm3.staticflickr.com/2722/4315352329_d0acb37659_o.jpg", "secret": "34242c2986", "media": "photo", "latitude": "47.503634", "id": "4315352329", "tags": ""}, {"datetaken": "2010-01-27 15:21:58", "license": "2", "title": "", "text": "", "album_id": "72157623312651344", "longitude": "19.060592", "url_o": "https://farm5.staticflickr.com/4046/4316089624_55fa7ee919_o.jpg", "secret": "dc14d9482e", "media": "photo", "latitude": "47.503634", "id": "4316089624", "tags": ""}, {"datetaken": "2010-01-27 15:28:11", "license": "2", "title": "Obsoleteness", "text": "", "album_id": "72157623312651344", "longitude": "19.059476", "url_o": "https://farm5.staticflickr.com/4027/4319676804_3d1ee03bfd_o.jpg", "secret": "33d63d8195", "media": "photo", "latitude": "47.505374", "id": "4319676804", "tags": ""}, {"datetaken": "2010-01-27 19:18:40", "license": "2", "title": "Budapest", "text": "", "album_id": "72157623312651344", "longitude": "19.059785", "url_o": "https://farm5.staticflickr.com/4093/4930069930_8719b0dd5f_o.jpg", "secret": "d571178f80", "media": "photo", "latitude": "47.493141", "id": "4930069930", "tags": ""}, {"datetaken": "2010-01-27 21:39:18", "license": "2", "title": "Monika & Monika in the hostel lobby", "text": "", "album_id": "72157623312651344", "longitude": "19.059785", "url_o": "https://farm5.staticflickr.com/4067/4315352773_e166a6afb6_o.jpg", "secret": "d0446f3756", "media": "photo", "latitude": "47.493141", "id": "4315352773", "tags": ""}, {"datetaken": "2010-01-28 12:42:54", "license": "2", "title": "Groceries at the great market hall", "text": "", "album_id": "72157623312651344", "longitude": "19.059785", "url_o": "https://farm5.staticflickr.com/4005/4320118362_3eb0619544_o.jpg", "secret": "eff6d61544", "media": "photo", "latitude": "47.493141", "id": "4320118362", "tags": ""}, {"datetaken": "2010-01-28 12:44:47", "license": "2", "title": "Fruit at the great market hall", "text": "", "album_id": "72157623312651344", "longitude": "19.059785", "url_o": "https://farm3.staticflickr.com/2686/4319368039_fa39175501_o.jpg", "secret": "16e3f5666a", "media": "photo", "latitude": "47.493141", "id": "4319368039", "tags": ""}, {"datetaken": "2010-01-28 12:45:57", "license": "2", "title": "Great market hall", "text": "", "album_id": "72157623312651344", "longitude": "19.058301", "url_o": "https://farm5.staticflickr.com/4062/4315352997_d2a1601103_o.jpg", "secret": "f64f746233", "media": "photo", "latitude": "47.487388", "id": "4315352997", "tags": ""}, {"datetaken": "2010-01-28 13:30:20", "license": "2", "title": "", "text": "", "album_id": "72157623312651344", "longitude": "19.060592", "url_o": "https://farm5.staticflickr.com/4047/4316090242_3be3eed71e_o.jpg", "secret": "8a70bb5252", "media": "photo", "latitude": "47.503634", "id": "4316090242", "tags": ""}, {"datetaken": "2010-01-28 13:31:30", "license": "2", "title": "Always. Almost.", "text": "", "album_id": "72157623312651344", "longitude": "19.059476", "url_o": "https://farm5.staticflickr.com/4033/4318919095_c56899733d_o.jpg", "secret": "8b6b04ddae", "media": "photo", "latitude": "47.505374", "id": "4318919095", "tags": ""}, {"datetaken": "2010-01-28 17:43:35", "license": "2", "title": "At the spa", "text": "", "album_id": "72157623312651344", "longitude": "19.059785", "url_o": "https://farm5.staticflickr.com/4098/4929484037_e3266d50b9_o.jpg", "secret": "41df91ef44", "media": "photo", "latitude": "47.493141", "id": "4929484037", "tags": ""}, {"datetaken": "2010-01-28 20:16:41", "license": "2", "title": "Metro", "text": "", "album_id": "72157623312651344", "longitude": "19.060592", "url_o": "https://farm5.staticflickr.com/4017/4316090450_68d96a57ea_o.jpg", "secret": "d7247413f1", "media": "photo", "latitude": "47.503634", "id": "4316090450", "tags": ""}, {"datetaken": "2010-01-28 20:42:17", "license": "2", "title": "Budapest", "text": "", "album_id": "72157623312651344", "longitude": "19.059785", "url_o": "https://farm5.staticflickr.com/4122/4930075610_a1b033083c_o.jpg", "secret": "556d6592ca", "media": "photo", "latitude": "47.493141", "id": "4930075610", "tags": ""}, {"datetaken": "2010-01-29 23:38:28", "license": "1", "title": "Apartheid Museum entrance", "text": "", "album_id": "72157623322062438", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/4320181660_358a3690b5_o.jpg", "secret": "27f95e9202", "media": "photo", "latitude": "0", "id": "4320181660", "tags": ""}, {"datetaken": "2010-01-30 23:13:50", "license": "1", "title": "Marianne juggling", "text": "", "album_id": "72157623322062438", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4320182786_66c26a4e95_o.jpg", "secret": "8c4f831aaf", "media": "photo", "latitude": "0", "id": "4320182786", "tags": ""}, {"datetaken": "2010-01-30 23:20:22", "license": "1", "title": "Christina and Auntie Em juggling", "text": "", "album_id": "72157623322062438", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4319450901_1214b9ca66_o.jpg", "secret": "ace0923737", "media": "photo", "latitude": "0", "id": "4319450901", "tags": ""}, {"datetaken": "2010-01-30 23:25:12", "license": "1", "title": "Auntie Em juggling", "text": "", "album_id": "72157623322062438", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4319452497_b2b348233d_o.jpg", "secret": "f5d1d9735e", "media": "photo", "latitude": "0", "id": "4319452497", "tags": ""}, {"datetaken": "2010-01-30 23:27:45", "license": "1", "title": "Christina juggling", "text": "", "album_id": "72157623322062438", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4319453925_4104fea243_o.jpg", "secret": "68fd49a24e", "media": "photo", "latitude": "0", "id": "4319453925", "tags": ""}, {"datetaken": "2010-01-30 23:53:56", "license": "1", "title": "Parkwood residential street", "text": "", "album_id": "72157623322062438", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4319455817_23e0f607e1_o.jpg", "secret": "6e53850531", "media": "photo", "latitude": "0", "id": "4319455817", "tags": ""}, {"datetaken": "2010-01-30 23:54:16", "license": "1", "title": "Security aesthetic: Spikes, electric fence and razor wire", "text": "", "album_id": "72157623322062438", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2732/4320190588_5057aa2054_o.jpg", "secret": "24befcd285", "media": "photo", "latitude": "0", "id": "4320190588", "tags": ""}, {"datetaken": "2010-01-30 23:55:17", "license": "1", "title": "Security aesthetic: spikes and electric fencing", "text": "", "album_id": "72157623322062438", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4319458369_fdd356d1b2_o.jpg", "secret": "26baf42734", "media": "photo", "latitude": "0", "id": "4319458369", "tags": ""}, {"datetaken": "2010-01-30 23:57:52", "license": "1", "title": "Security aesthetic: three pronged palisade", "text": "", "album_id": "72157623322062438", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4320193448_59dcfcc166_o.jpg", "secret": "bc3946dae6", "media": "photo", "latitude": "0", "id": "4320193448", "tags": ""}, {"datetaken": "2010-01-31 02:55:15", "license": "1", "title": "Coffee at Rosebank", "text": "", "album_id": "72157623322062438", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4319461713_de6f41a505_o.jpg", "secret": "c440111cd2", "media": "photo", "latitude": "0", "id": "4319461713", "tags": ""}, {"datetaken": "2010-01-31 02:56:26", "license": "1", "title": "Your choice", "text": "", "album_id": "72157623322062438", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4319463197_9fb46a5b89_o.jpg", "secret": "37f3ee3b42", "media": "photo", "latitude": "0", "id": "4319463197", "tags": ""}, {"datetaken": "2010-01-31 03:09:24", "license": "1", "title": "African market", "text": "", "album_id": "72157623322062438", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4320198704_e6f1f16f9c_o.jpg", "secret": "de3b8ebdae", "media": "photo", "latitude": "0", "id": "4320198704", "tags": ""}, {"datetaken": "2010-01-31 03:26:51", "license": "1", "title": "Street performers at Rosebank", "text": "", "album_id": "72157623322062438", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4320200112_f7925d2218_o.jpg", "secret": "a9d99a58bb", "media": "photo", "latitude": "0", "id": "4320200112", "tags": ""}, {"datetaken": "2010-01-31 05:07:10", "license": "1", "title": "Security aesthetic: very evil spikes and electric fence", "text": "", "album_id": "72157623322062438", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4320201300_63e9829ebc_o.jpg", "secret": "b8ed2d6ea7", "media": "photo", "latitude": "0", "id": "4320201300", "tags": ""}, {"datetaken": "2008-08-06 12:13:06", "license": "1", "title": "P8060604", "text": "", "album_id": "72157632386835732", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4321318264_3fa2051a44_o.jpg", "secret": "8f6647175b", "media": "photo", "latitude": "0", "id": "4321318264", "tags": "boston ma outside massachusetts diner august 2008 allston thebreakfastclub 02134 862008 270westernave edkopp4"}, {"datetaken": "2008-08-06 12:20:41", "license": "1", "title": "P8060605", "text": "", "album_id": "72157632386835732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4320586329_5033e6a947_o.jpg", "secret": "99b1ba4f14", "media": "photo", "latitude": "0", "id": "4320586329", "tags": "boston ma massachusetts diner august mug inside 2008 allston thebreakfastclub 02134 862008 270westernave edkopp4"}, {"datetaken": "2008-08-06 12:20:54", "license": "1", "title": "P8060606", "text": "", "album_id": "72157632386835732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4320586553_e6d718a2dd_o.jpg", "secret": "a34b115ab7", "media": "photo", "latitude": "0", "id": "4320586553", "tags": "boston ma massachusetts diner august inside 2008 allston thebreakfastclub 02134 862008 270westernave edkopp4"}, {"datetaken": "2008-08-06 12:21:04", "license": "1", "title": "P8060607", "text": "", "album_id": "72157632386835732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4320586707_3850c67949_o.jpg", "secret": "4c6b533574", "media": "photo", "latitude": "0", "id": "4320586707", "tags": "boston ma massachusetts diner august booths inside 2008 allston thebreakfastclub 02134 862008 270westernave edkopp4"}, {"datetaken": "2008-08-06 12:35:45", "license": "1", "title": "P8060608", "text": "", "album_id": "72157632386835732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4321319000_b3ab5e7316_o.jpg", "secret": "e6be2189f8", "media": "photo", "latitude": "0", "id": "4321319000", "tags": "food boston pancakes ma massachusetts sausage diner august eggs inside 2008 allston cornedbeefhash thebreakfastclub 02134 862008 270westernave edkopp4"}, {"datetaken": "2008-08-06 12:35:53", "license": "1", "title": "P8060609", "text": "", "album_id": "72157632386835732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4320587007_802bbd719f_o.jpg", "secret": "efae148ae1", "media": "photo", "latitude": "0", "id": "4320587007", "tags": "food boston ma massachusetts sausage diner august eggs inside 2008 allston thebreakfastclub 02134 862008 270westernave edkopp4"}, {"datetaken": "2008-08-06 12:36:06", "license": "1", "title": "P8060610", "text": "", "album_id": "72157632386835732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4321319194_47d73af9f3_o.jpg", "secret": "ef1966a351", "media": "photo", "latitude": "0", "id": "4321319194", "tags": "food boston pancakes ma massachusetts diner august inside 2008 allston thebreakfastclub 02134 862008 270westernave edkopp4"}, {"datetaken": "2008-08-06 12:36:18", "license": "1", "title": "P8060611", "text": "", "album_id": "72157632386835732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4321319316_b8260d5b21_o.jpg", "secret": "a46f3e66e0", "media": "photo", "latitude": "0", "id": "4321319316", "tags": "food boston ma massachusetts diner august inside 2008 allston cornedbeefhash thebreakfastclub 02134 862008 270westernave edkopp4"}, {"datetaken": "2008-08-06 13:10:26", "license": "1", "title": "P8060612", "text": "", "album_id": "72157632386835732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4321319472_d292c19387_o.jpg", "secret": "9f7c3abb39", "media": "photo", "latitude": "0", "id": "4321319472", "tags": "boston ma outside massachusetts diner august 2008 allston thebreakfastclub 02134 862008 270westernave edkopp4"}, {"datetaken": "2008-08-06 13:10:58", "license": "1", "title": "P8060613", "text": "", "album_id": "72157632386835732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4321319636_8e5a5bfe04_o.jpg", "secret": "636bdcdf9f", "media": "photo", "latitude": "0", "id": "4321319636", "tags": "boston ma outside massachusetts diner august 2008 allston thebreakfastclub 02134 862008 270westernave edkopp4"}, {"datetaken": "2008-08-06 13:11:14", "license": "1", "title": "P8060614", "text": "", "album_id": "72157632386835732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4321319954_8040363f21_o.jpg", "secret": "4a92966d33", "media": "photo", "latitude": "0", "id": "4321319954", "tags": "boston ma outside massachusetts diner august 2008 allston thebreakfastclub 02134 862008 270westernave edkopp4"}, {"datetaken": "2008-08-06 13:11:47", "license": "1", "title": "P8060615", "text": "", "album_id": "72157632386835732", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2685/4320587965_caf687ae36_o.jpg", "secret": "68e98a6b6e", "media": "photo", "latitude": "0", "id": "4320587965", "tags": "boston ma outside massachusetts diner august 2008 allston thebreakfastclub 02134 862008 270westernave edkopp4"}, {"datetaken": "2008-08-06 13:12:42", "license": "1", "title": "P8060616", "text": "", "album_id": "72157632386835732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4321320240_1be9cc633d_o.jpg", "secret": "b9f7b81e03", "media": "photo", "latitude": "0", "id": "4321320240", "tags": "boston ma outside massachusetts diner august 2008 allston thebreakfastclub 02134 862008 270westernave edkopp4"}, {"datetaken": "2008-08-06 13:18:16", "license": "1", "title": "P8060617", "text": "", "album_id": "72157632386835732", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2725/4320588315_95daaf27d8_o.jpg", "secret": "827c6dfc66", "media": "photo", "latitude": "0", "id": "4320588315", "tags": "ma outside parkinglot massachusetts august grocerystore 2008 osco starmarket 862008 edkopp4"}, {"datetaken": "2008-08-06 13:19:10", "license": "1", "title": "P8060618", "text": "", "album_id": "72157632386835732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4320588453_11ab2a76e5_o.jpg", "secret": "44a0e09ccd", "media": "photo", "latitude": "0", "id": "4320588453", "tags": "ma outside parkinglot closed massachusetts august 2008 kmart bigk 862008 edkopp4"}, {"datetaken": "2008-08-06 13:26:12", "license": "1", "title": "P8060619", "text": "", "album_id": "72157632386835732", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4320588607_054a17ac7e_o.jpg", "secret": "85201d0d9f", "media": "photo", "latitude": "0", "id": "4320588607", "tags": "ma massachusetts august inside grocerystore 2008 osco starmarket 862008 edkopp4"}, {"datetaken": "2008-08-06 13:26:19", "license": "1", "title": "P8060620", "text": "", "album_id": "72157632386835732", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4321320982_556b7047f9_o.jpg", "secret": "f4dd57cfe9", "media": "photo", "latitude": "0", "id": "4321320982", "tags": "ma massachusetts august inside grocerystore 2008 osco starmarket 862008 edkopp4"}, {"datetaken": "2011-04-11 06:07:04", "license": "2", "title": "James Williams at Miss Teen Ontario World", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7144/6796323181_3654ff7cb3_o.jpg", "secret": "78fb480b47", "media": "photo", "latitude": "0", "id": "6796323181", "tags": "world dancer richmondhill missteencanada jameswilliams sheratoncenter missteenontario choreographersassistant"}, {"datetaken": "2011-04-11 06:09:37", "license": "2", "title": "Make-up professional at Miss Teen Ontario World", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7168/6796324911_7d061334c1_o.jpg", "secret": "ed14fbeb37", "media": "photo", "latitude": "0", "id": "6796324911", "tags": "world makeup richmondhill missteencanada sheratoncenter missteenontario"}, {"datetaken": "2011-04-11 06:10:47", "license": "2", "title": "AVEDA Institute sends in the troops at Miss Teen Ontario World", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7147/6796325717_14a4efa18d_o.jpg", "secret": "fabcbde231", "media": "photo", "latitude": "0", "id": "6796325717", "tags": "world richmondhill aveda hairschool missteencanada sheratoncenter missteenontario"}, {"datetaken": "2011-04-11 06:15:10", "license": "2", "title": "Aveda Institute Hair Stylist works a flat iron at Miss Teen Ontario World", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6796326309_7c6843085c_o.jpg", "secret": "07a9ac20e7", "media": "photo", "latitude": "0", "id": "6796326309", "tags": "world flatiron richmondhill haircurler missteencanada sheratoncenter missteenontario"}, {"datetaken": "2011-04-11 06:16:18", "license": "2", "title": "Aveda Institute helps out at Miss Teen Ontario - World", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7144/6796334005_700dfc8a4f_o.jpg", "secret": "a25d86efe5", "media": "photo", "latitude": "0", "id": "6796334005", "tags": "world hairstyle flatiron richmondhill curlingiron missteencanada sheratoncenter missteenontario professionalhair"}, {"datetaken": "2011-04-11 06:21:05", "license": "2", "title": "Hair Stylists from Aveda Institute at Miss Teen Ontario - World", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7160/6796327383_758de4af69_o.jpg", "secret": "dd39d75d8c", "media": "photo", "latitude": "0", "id": "6796327383", "tags": "world richmondhill missteencanada avedainstitute sheratoncenter missteenontario"}, {"datetaken": "2011-04-11 06:22:04", "license": "2", "title": "Win Your Tuition at one of five different Aveda Institute Hair Schools", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7019/6796328073_352b0744ba_o.jpg", "secret": "b11d1bd8b0", "media": "photo", "latitude": "0", "id": "6796328073", "tags": "world richmondhill missteencanada avedainstitute sheratoncenter missteenontario"}, {"datetaken": "2011-04-11 06:23:30", "license": "2", "title": "Choreograher Assistant with Shawn Cuffie, Choreograher", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7152/6796329127_851c2289e9_o.jpg", "secret": "8e6e6fac1c", "media": "photo", "latitude": "0", "id": "6796329127", "tags": "world dance richmondhill missteencanada jameswilliams sheratoncenter missteenontario shawncuffie canadianchoreographer"}, {"datetaken": "2011-04-11 06:29:39", "license": "2", "title": "Fuzzy pic of Sophie Roe and Chantelle Smith", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7015/6796330057_961325ca31_o.jpg", "secret": "8def4992cd", "media": "photo", "latitude": "0", "id": "6796330057", "tags": "world richmondhill missteencanada sheratoncenter missteenontario sophieroe chantellesmith"}, {"datetaken": "2011-04-11 06:47:09", "license": "2", "title": "Lauren Haywire interviews Shawn Cuffie", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7024/6796330859_01115500af_o.jpg", "secret": "cab0195643", "media": "photo", "latitude": "0", "id": "6796330859", "tags": "world richmondhill missteencanada sheratoncenter laurenhayward missteenontario shawncuffie"}, {"datetaken": "2011-04-11 06:47:27", "license": "2", "title": "Backstage at Miss Teen Ontario World 2012", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7175/6796332319_4a492156ca_o.jpg", "secret": "da371b0f58", "media": "photo", "latitude": "0", "id": "6796332319", "tags": "world makeup richmondhill missteencanada hairstylin avedainstitute sheratoncenter missteenontario"}, {"datetaken": "2011-04-11 06:50:37", "license": "2", "title": "Marisa Market, Danielle Cocchetto, Miranda Kennedy, Frances Moreth", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7033/6796333301_8efc980a9f_o.jpg", "secret": "686af90914", "media": "photo", "latitude": "0", "id": "6796333301", "tags": "world richmondhill missteencanada sheratoncenter marisamarket missteenontario daniellecocchetto mirandakennedy francesmoreth"}, {"datetaken": "2011-04-11 07:09:08", "license": "2", "title": "Choreographer, lighting director and technical director", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7166/6796335007_fe3a7fd43d_o.jpg", "secret": "6bd20e1fbb", "media": "photo", "latitude": "0", "id": "6796335007", "tags": "world richmondhill choreographer missteencanada technicaldirector lightingdirector sheratoncenter missteenontario shawncuffie"}, {"datetaken": "2011-04-11 07:10:01", "license": "2", "title": "Michelle Weswaldi, Pageant Director - Miss Teen Canada World", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7005/6796335769_08407b233a_o.jpg", "secret": "0e68a43b25", "media": "photo", "latitude": "0", "id": "6796335769", "tags": "world podium onstage richmondhill missteencanada sheratoncenter michelleweswaldi missteenontario pageantdirector"}, {"datetaken": "2011-04-11 07:24:22", "license": "2", "title": "Sophie Roe, Aveda Institute, recent graduate", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7016/6796336623_8c11008b29_o.jpg", "secret": "dccf988d16", "media": "photo", "latitude": "0", "id": "6796336623", "tags": "world richmondhill hairstylist missteencanada avedainstitute sheratoncenter recentgraduate missteenontario sophieroe"}, {"datetaken": "2011-04-11 07:34:31", "license": "2", "title": "Girls practising their on stage routines at Miss Teen Ontario - World", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7157/6796340595_58dd642354_o.jpg", "secret": "bfab917d15", "media": "photo", "latitude": "0", "id": "6796340595", "tags": "world stage richmondhill missteencanada sheratoncenter missteenontario"}, {"datetaken": "2011-04-11 07:37:29", "license": "2", "title": "In her bikini, at Miss Teen Ontario World", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7148/6796338007_4156b843b5_o.jpg", "secret": "631aed40f0", "media": "photo", "latitude": "0", "id": "6796338007", "tags": "world swim suit bikini richmondhill swimsuitcompetition missteencanada sheratoncenter missteenontario"}, {"datetaken": "2011-04-11 07:38:12", "license": "2", "title": "Hair stylists from AVEDA Institute at Miss Teen Ontario - World", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7166/6796339769_3325d72de4_o.jpg", "secret": "ba08d6879b", "media": "photo", "latitude": "0", "id": "6796339769", "tags": "world richmondhill hairstylists missteencanada avedainstitute sheratoncenter missteenontario salonquality"}, {"datetaken": "2011-04-11 07:38:20", "license": "2", "title": "Hair Stylists from AVEDA Institute", "text": "", "album_id": "72157629123437977", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7019/6796338917_01416330a1_o.jpg", "secret": "fd44f3b4fc", "media": "photo", "latitude": "0", "id": "6796338917", "tags": "world richmondhill hairstylists missteencanada avedainstitute sheratoncenter missteenontario"}, {"datetaken": "2005-05-12 09:15:32", "license": "3", "title": "IMG_1581", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16744009_8fd5b0addd_o.jpg", "secret": "8fd5b0addd", "media": "photo", "latitude": "0", "id": "16744009", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 09:17:38", "license": "3", "title": "IMG_1585", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16731978_d336b58b86_o.jpg", "secret": "d336b58b86", "media": "photo", "latitude": "0", "id": "16731978", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 09:18:09", "license": "3", "title": "IMG_1586", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16732074_d0a267ac43_o.jpg", "secret": "d0a267ac43", "media": "photo", "latitude": "0", "id": "16732074", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 09:21:44", "license": "3", "title": "IMG_1591", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16744091_4865d306f7_o.jpg", "secret": "4865d306f7", "media": "photo", "latitude": "0", "id": "16744091", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 09:23:29", "license": "3", "title": "IMG_1593", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16732386_173ee462b7_o.jpg", "secret": "173ee462b7", "media": "photo", "latitude": "0", "id": "16732386", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 09:27:15", "license": "3", "title": "IMG_1594", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16732475_3321bbd841_o.jpg", "secret": "3321bbd841", "media": "photo", "latitude": "0", "id": "16732475", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 09:31:00", "license": "3", "title": "IMG_1596", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16732601_65c42589dc_o.jpg", "secret": "65c42589dc", "media": "photo", "latitude": "0", "id": "16732601", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 09:37:13", "license": "3", "title": "IMG_1597", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16744294_8ce93c2953_o.jpg", "secret": "8ce93c2953", "media": "photo", "latitude": "0", "id": "16744294", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 11:27:29", "license": "3", "title": "IMG_1602", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16732872_ffbd048248_o.jpg", "secret": "ffbd048248", "media": "photo", "latitude": "0", "id": "16732872", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 11:33:23", "license": "3", "title": "IMG_1603", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16744443_f410a7ef48_o.jpg", "secret": "f410a7ef48", "media": "photo", "latitude": "0", "id": "16744443", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 11:34:17", "license": "3", "title": "IMG_1605", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16732947_9366d641de_o.jpg", "secret": "9366d641de", "media": "photo", "latitude": "0", "id": "16732947", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 11:34:26", "license": "3", "title": "IMG_1606", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16733037_3d03659d74_o.jpg", "secret": "3d03659d74", "media": "photo", "latitude": "0", "id": "16733037", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 11:34:50", "license": "3", "title": "IMG_1607", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16733116_38103a17b5_o.jpg", "secret": "38103a17b5", "media": "photo", "latitude": "0", "id": "16733116", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 11:35:31", "license": "3", "title": "IMG_1608", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16733200_3e5f258ae8_o.jpg", "secret": "3e5f258ae8", "media": "photo", "latitude": "0", "id": "16733200", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 11:36:12", "license": "3", "title": "IMG_1609", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16733289_55f7cf57e6_o.jpg", "secret": "55f7cf57e6", "media": "photo", "latitude": "0", "id": "16733289", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 11:36:19", "license": "3", "title": "IMG_1610", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16733410_e170b649b6_o.jpg", "secret": "e170b649b6", "media": "photo", "latitude": "0", "id": "16733410", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 11:36:59", "license": "3", "title": "IMG_1611", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16744578_537c0b2772_o.jpg", "secret": "537c0b2772", "media": "photo", "latitude": "0", "id": "16744578", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 11:37:34", "license": "3", "title": "IMG_1613", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16744711_886e196480_o.jpg", "secret": "886e196480", "media": "photo", "latitude": "0", "id": "16744711", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 11:37:57", "license": "3", "title": "IMG_1614", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16744755_89fbf2d1b8_o.jpg", "secret": "89fbf2d1b8", "media": "photo", "latitude": "0", "id": "16744755", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 12:22:10", "license": "3", "title": "IMG_1617", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16733530_4cf5bc1bb5_o.jpg", "secret": "4cf5bc1bb5", "media": "photo", "latitude": "0", "id": "16733530", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 12:29:54", "license": "3", "title": "IMG_1618", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16733647_a1f2ea0dc3_o.jpg", "secret": "a1f2ea0dc3", "media": "photo", "latitude": "0", "id": "16733647", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 19:20:02", "license": "3", "title": "IMG_1670", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16736157_6e617c7f36_o.jpg", "secret": "6e617c7f36", "media": "photo", "latitude": "0", "id": "16736157", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 19:20:36", "license": "3", "title": "IMG_1671", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16736231_ebaebbf545_o.jpg", "secret": "ebaebbf545", "media": "photo", "latitude": "0", "id": "16736231", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 19:21:15", "license": "3", "title": "IMG_1672", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16736301_46532e4804_o.jpg", "secret": "46532e4804", "media": "photo", "latitude": "0", "id": "16736301", "tags": "helsinki finland"}, {"datetaken": "2005-05-12 19:23:52", "license": "3", "title": "IMG_1676", "text": "", "album_id": "402099", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16736427_778088b9e4_o.jpg", "secret": "778088b9e4", "media": "photo", "latitude": "0", "id": "16736427", "tags": "helsinki finland"}, {"datetaken": "2005-05-28 12:15:41", "license": "3", "title": "Flea Market in Festival of my own town", "text": "", "album_id": "448900", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16650306_70b799ad2c_o.jpg", "secret": "70b799ad2c", "media": "photo", "latitude": "0", "id": "16650306", "tags": "ofuna"}, {"datetaken": "2005-05-28 13:11:46", "license": "3", "title": "Orchestra in shopping district", "text": "", "album_id": "448900", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16413264_e31fa6439e_o.jpg", "secret": "e31fa6439e", "media": "photo", "latitude": "0", "id": "16413264", "tags": "ofuna"}, {"datetaken": "2005-05-28 14:17:19", "license": "3", "title": "Orchestra in shopping district", "text": "", "album_id": "448900", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16149703_5a6b0a9b11_o.jpg", "secret": "5a6b0a9b11", "media": "photo", "latitude": "0", "id": "16149703", "tags": "ofuna"}, {"datetaken": "2005-05-28 14:17:44", "license": "3", "title": "Orchestra in shopping district", "text": "", "album_id": "448900", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16650303_8bc4232259_o.jpg", "secret": "8bc4232259", "media": "photo", "latitude": "0", "id": "16650303", "tags": "ofuna"}, {"datetaken": "2005-05-28 14:18:00", "license": "3", "title": "Orchestra in shopping district", "text": "", "album_id": "448900", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16149704_10d31b8efa_o.jpg", "secret": "10d31b8efa", "media": "photo", "latitude": "0", "id": "16149704", "tags": "ofuna"}, {"datetaken": "2005-05-28 14:20:28", "license": "3", "title": "Orchestra in shopping district", "text": "", "album_id": "448900", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16149705_cf0f0aa14c_o.jpg", "secret": "cf0f0aa14c", "media": "photo", "latitude": "0", "id": "16149705", "tags": "ofuna"}, {"datetaken": "2005-05-28 14:34:07", "license": "3", "title": "Orchestra in shopping district", "text": "", "album_id": "448900", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16054906_aec8908f53_o.jpg", "secret": "aec8908f53", "media": "photo", "latitude": "0", "id": "16054906", "tags": "saturday town"}, {"datetaken": "2005-05-28 14:34:27", "license": "3", "title": "Orchestra in shopping district", "text": "", "album_id": "448900", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16054905_3ab0a76a83_o.jpg", "secret": "3ab0a76a83", "media": "photo", "latitude": "0", "id": "16054905", "tags": "saturday town"}, {"datetaken": "2005-05-28 14:39:12", "license": "3", "title": "Festival of my favorite town", "text": "", "album_id": "448900", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16413265_17294f0cb8_o.jpg", "secret": "17294f0cb8", "media": "photo", "latitude": "0", "id": "16413265", "tags": "ofuna"}, {"datetaken": "2005-05-28 14:46:01", "license": "3", "title": "Please Don't cry ...", "text": "", "album_id": "448900", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16650304_2b206de8c3_o.jpg", "secret": "2b206de8c3", "media": "photo", "latitude": "0", "id": "16650304", "tags": "ofuna"}, {"datetaken": "2005-05-28 14:49:52", "license": "3", "title": "Festival of my favorite town", "text": "", "album_id": "448900", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16650305_a5b7ec1583_o.jpg", "secret": "a5b7ec1583", "media": "photo", "latitude": "0", "id": "16650305", "tags": "ofuna"}, {"datetaken": "2004-11-13 12:31:44", "license": "1", "title": "Step 1: \"Gaufres Au BABEURRE\"", "text": "", "album_id": "37058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1451418_48f6b9f397_o.jpg", "secret": "48f6b9f397", "media": "photo", "latitude": "0", "id": "1451418", "tags": "canada flickrup waffles breakfast eggo andysapartment yaletown"}, {"datetaken": "2004-11-13 12:34:05", "license": "1", "title": "Step 2: Butter", "text": "", "album_id": "37058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1451421_099920c914_o.jpg", "secret": "099920c914", "media": "photo", "latitude": "0", "id": "1451421", "tags": "canada flickrup butter andysapartment yaletown"}, {"datetaken": "2004-11-13 12:34:56", "license": "1", "title": "Step 3: Syrup", "text": "", "album_id": "37058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1451425_c3b40ce184_o.jpg", "secret": "c3b40ce184", "media": "photo", "latitude": "0", "id": "1451425", "tags": "canada flickrup syrup maple sex andysapartment yaletown"}, {"datetaken": "2004-11-13 12:36:50", "license": "1", "title": "Step 4: Realize You Have No Way To Open The Syrup", "text": "", "album_id": "37058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1451430_7355b8bb8d_o.jpg", "secret": "7355b8bb8d", "media": "photo", "latitude": "0", "id": "1451430", "tags": "canada flickrup syrup maple cockblock andysapartment yaletown"}, {"datetaken": "2004-11-13 12:59:42", "license": "1", "title": "Step 5: Walk Yo' Ass To Yuppie Market", "text": "", "album_id": "37058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1451432_2773f7f7b3_o.jpg", "secret": "2773f7f7b3", "media": "photo", "latitude": "0", "id": "1451432", "tags": "canada flickrup urbanfare vancouver yaletown"}, {"datetaken": "2004-11-13 13:02:44", "license": "1", "title": "Step 6: Realize Urban Fare, While Selling Syrup, Does Not Sell Anything To Open Them With", "text": "", "album_id": "37058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1451437_89bf695bfc_o.jpg", "secret": "89bf695bfc", "media": "photo", "latitude": "0", "id": "1451437", "tags": "canada flickrup syrup maple urbanfare yaletown"}, {"datetaken": "2004-11-13 13:32:28", "license": "1", "title": "Step 7: Pick Up Cork Puller At Liquor Store", "text": "", "album_id": "37058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1451438_4fa1280940_o.jpg", "secret": "4fa1280940", "media": "photo", "latitude": "0", "id": "1451438", "tags": "canada flickrup andysapartment yaletown"}, {"datetaken": "2004-11-13 13:32:51", "license": "1", "title": "Step 8: Mix Butter And Syrup", "text": "", "album_id": "37058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1451440_896310a19e_o.jpg", "secret": "896310a19e", "media": "photo", "latitude": "0", "id": "1451440", "tags": "canada flickrup butter syrup maple andysapartment yaletown"}, {"datetaken": "2004-11-13 13:35:02", "license": "1", "title": "Step 9: Toaster", "text": "", "album_id": "37058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1451442_0b2d8b955a_o.jpg", "secret": "0b2d8b955a", "media": "photo", "latitude": "0", "id": "1451442", "tags": "canada flickrup toaster waffles andysapartment yaletown"}, {"datetaken": "2004-11-13 13:36:14", "license": "1", "title": "Step 10: Serve.", "text": "", "album_id": "37058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1451444_8af4955b23_o.jpg", "secret": "8af4955b23", "media": "photo", "latitude": "0", "id": "1451444", "tags": "canada flickrup waffles butter syrup andysapartment yaletown"}, {"datetaken": "2004-11-13 13:37:06", "license": "1", "title": "Verdict?", "text": "", "album_id": "37058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1451445_8d26e617a8_o.jpg", "secret": "8d26e617a8", "media": "photo", "latitude": "0", "id": "1451445", "tags": "canada me andy termie smith andysmith yaletown flickrup andysapartment"}, {"datetaken": "2004-11-13 13:37:19", "license": "1", "title": "Victory.", "text": "", "album_id": "37058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1451447_b1a3117753_o.jpg", "secret": "b1a3117753", "media": "photo", "latitude": "0", "id": "1451447", "tags": "canada me andy termie smith andysmith yaletown flickrup andysapartment"}, {"datetaken": "2002-03-13 18:38:38", "license": "1", "title": "Product Placement", "text": "", "album_id": "111086", "longitude": "-83.075137", "url_o": "https://farm1.staticflickr.com/3/4410612_d52f259c46_o.jpg", "secret": "93354c9edb", "media": "photo", "latitude": "39.841330", "id": "4410612", "tags": "2002 kroger grocery store 842 grovecity ohio chips clip lays conns dip"}, {"datetaken": "2002-03-13 18:40:02", "license": "1", "title": "Product Placement", "text": "", "album_id": "111086", "longitude": "-83.075137", "url_o": "https://farm1.staticflickr.com/4/4410712_31ae2a7682_o.jpg", "secret": "ea52aa1a99", "media": "photo", "latitude": "39.841330", "id": "4410712", "tags": "2002 kroger grocery store 842 grovecity ohio clipstrip toys cereal kix trix cornpops wheaties cherrios oatmealcrisp"}, {"datetaken": "2002-03-13 18:41:40", "license": "1", "title": "Product placement", "text": "", "album_id": "111086", "longitude": "-83.075137", "url_o": "https://farm1.staticflickr.com/1/4410879_96d062441d_o.jpg", "secret": "99e17227f0", "media": "photo", "latitude": "39.841330", "id": "4410879", "tags": "2002 kroger grocery store 842 grovecity ohio meat beef buns product placement marketing"}, {"datetaken": "2002-03-13 18:42:52", "license": "1", "title": "Product Placement", "text": "", "album_id": "111086", "longitude": "-83.075137", "url_o": "https://farm1.staticflickr.com/3/4410796_a115f78464_o.jpg", "secret": "cb1baf071b", "media": "photo", "latitude": "39.841330", "id": "4410796", "tags": "2002 kroger grocery store 842 grovecity ohio produce fruit knife apple wine"}, {"datetaken": "2002-03-13 20:32:07", "license": "1", "title": "Counting back tills", "text": "", "album_id": "111086", "longitude": "-83.075137", "url_o": "https://farm1.staticflickr.com/3/4410842_bc2d808c15_o.jpg", "secret": "d626a99e2f", "media": "photo", "latitude": "39.841330", "id": "4410842", "tags": "2002 kroger grocery store 842 grovecity ohio linda vericash till cash count accounting verify"}, {"datetaken": "2002-03-13 20:32:31", "license": "1", "title": "Bill and Linda", "text": "", "album_id": "111086", "longitude": "-83.075137", "url_o": "https://farm1.staticflickr.com/4/4410528_53db85dcc0_o.jpg", "secret": "46e6feaa28", "media": "photo", "latitude": "39.841330", "id": "4410528", "tags": "2002 kroger grocery store 842 grovecity ohio bill linda office vericash"}, {"datetaken": "2002-03-13 20:34:53", "license": "1", "title": "Product Placement", "text": "", "album_id": "111086", "longitude": "-83.075137", "url_o": "https://farm1.staticflickr.com/4/4410678_7617e00c64_o.jpg", "secret": "be93ec5705", "media": "photo", "latitude": "39.841330", "id": "4410678", "tags": "2002 kroger grocery store 842 grovecity ohio toy cereal chex cheerios life"}, {"datetaken": "2002-03-13 20:35:23", "license": "1", "title": "The cereal aisle", "text": "", "album_id": "111086", "longitude": "-83.075137", "url_o": "https://farm1.staticflickr.com/3/4410591_92d07b053e_o.jpg", "secret": "6daa1f76f4", "media": "photo", "latitude": "39.841330", "id": "4410591", "tags": "2002 kroger grocery store 842 grovecity ohio cereal"}, {"datetaken": "2002-03-13 20:42:00", "license": "1", "title": "Brand Identity", "text": "", "album_id": "111086", "longitude": "-83.075137", "url_o": "https://farm1.staticflickr.com/3/4410809_c8697b6ebc_o.jpg", "secret": "8c0e256a98", "media": "photo", "latitude": "39.841330", "id": "4410809", "tags": "2002 kroger grocery store 842 grovecity ohio campbells tomato soup"}, {"datetaken": "2002-03-13 20:43:36", "license": "1", "title": "Product Placement", "text": "", "album_id": "111086", "longitude": "-83.075137", "url_o": "https://farm1.staticflickr.com/3/4410485_7168f6e612_o.jpg", "secret": "772bf2aecc", "media": "photo", "latitude": "39.841330", "id": "4410485", "tags": "2002 kroger grocery store 842 grovecity ohio alcohol wine opener"}, {"datetaken": "2002-03-13 20:43:48", "license": "1", "title": "Product Placement", "text": "", "album_id": "111086", "longitude": "-83.075137", "url_o": "https://farm1.staticflickr.com/3/4410646_81be5b33c3_o.jpg", "secret": "f7298364f5", "media": "photo", "latitude": "39.841330", "id": "4410646", "tags": "2002 kroger grocery store 842 grovecity ohio alcohol snacks miller coors beer"}, {"datetaken": "2002-03-13 20:44:26", "license": "1", "title": "Product Placement", "text": "", "album_id": "111086", "longitude": "-83.075137", "url_o": "https://farm1.staticflickr.com/4/4410768_a10505ed2a_o.jpg", "secret": "b24b42b5f7", "media": "photo", "latitude": "39.841330", "id": "4410768", "tags": "2002 kroger grocery store 842 grovecity ohio giftcard hallmark card"}, {"datetaken": "2002-03-13 20:46:38", "license": "1", "title": "The 'front end'", "text": "", "album_id": "111086", "longitude": "-83.075137", "url_o": "https://farm1.staticflickr.com/3/4410744_3f307135a5_o.jpg", "secret": "cd6244782b", "media": "photo", "latitude": "39.841330", "id": "4410744", "tags": "2002 kroger grocery store 842 grovecity ohio frontend cashier register devon joe"}, {"datetaken": "2011-12-05 08:14:09", "license": "5", "title": "Non-conformity", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7007/6462173231_b2be900d41_o.jpg", "secret": "a97fb8d9d3", "media": "photo", "latitude": "0", "id": "6462173231", "tags": "sticky dream mlk martinlutherking speechbubble stickynote ihaveadream nonconformity martinlutherkingday mindlessly voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:14:13", "license": "5", "title": "Admission", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7030/6462174783_828d87d750_o.jpg", "secret": "0340480d66", "media": "photo", "latitude": "0", "id": "6462174783", "tags": "dream wish phd mlk admissions gradschool ditto martinlutherking speechbubble stickynote admission ihaveadream martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:14:21", "license": "5", "title": "ACTUALIZATION", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7014/6462176055_1940b29d16_o.jpg", "secret": "4612a9de61", "media": "photo", "latitude": "0", "id": "6462176055", "tags": "dream mlk martinlutherking speechbubble stickynote ihaveadream capslock martinlutherkingday businessspeak actualization potenetial voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:14:26", "license": "5", "title": "It's the little things", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7013/6462177977_4df4196c04_o.jpg", "secret": "fe879e0454", "media": "photo", "latitude": "0", "id": "6462177977", "tags": "dream wish mlk martinlutherking speechbubble stickynote ihaveadream rockclimbingwall martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:14:33", "license": "5", "title": "Truth, beauty and Moulin Rouge", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6462179947_cb42f98efc_o.jpg", "secret": "a244aa6ee7", "media": "photo", "latitude": "0", "id": "6462179947", "tags": "beauty truth quote dream moulinrouge mlk bohemian martinlutherking speechbubble stickynote ihaveadream martinlutherkingday lavieboh\u00e8me voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:14:42", "license": "5", "title": "Double occupancy", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7173/6462184045_8c1d57c3de_o.jpg", "secret": "0210b48d7c", "media": "photo", "latitude": "0", "id": "6462184045", "tags": "movement dream boo mlk martinlutherking speechbubble response stickynote ihaveadream martinlutherkingday occupy occupywallstreet voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:14:50", "license": "5", "title": "Triforce", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7013/6462189251_801bb52d02_o.jpg", "secret": "0972ca89e5", "media": "photo", "latitude": "0", "id": "6462189251", "tags": "power dream zelda wisdom mlk legendofzelda martinlutherking courage speechbubble stickynote triforce ihaveadream martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:14:53", "license": "5", "title": "Be careful what you wish for", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6462190701_ecb7ec8755_o.jpg", "secret": "e4c87830b2", "media": "photo", "latitude": "0", "id": "6462190701", "tags": "dream mlk kickass martinlutherking speechbubble stickynote ihaveadream martinlutherkingday asskickery voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:14:56", "license": "5", "title": "Masters league", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6462192147_2c85981af1_o.jpg", "secret": "4be0b3e506", "media": "photo", "latitude": "0", "id": "6462192147", "tags": "star dream mlk martinlutherking speechbubble stickynote ihaveadream martinlutherkingday mastersleague voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:14:59", "license": "5", "title": "not fail", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7153/6462194191_bb5a500824_o.jpg", "secret": "fcb030d515", "media": "photo", "latitude": "0", "id": "6462194191", "tags": "failure dream dreams mlk martinlutherking speechbubble fail stickynote ihaveadream martinlutherkingday notfail voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:15:03", "license": "5", "title": "The Facebook thumbs-up is so passe", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7019/6462186125_4d98f30e11_o.jpg", "secret": "d5eb1e429b", "media": "photo", "latitude": "0", "id": "6462186125", "tags": "1 dream mlk martinlutherking speechbubble mastery stickynote ihaveadream parcour plusone martinlutherkingday googleplus voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:15:07", "license": "5", "title": "Meta-wish", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7018/6462196221_104e8829fd_o.jpg", "secret": "ef83bd9147", "media": "photo", "latitude": "0", "id": "6462196221", "tags": "meta dream desire mlk martinlutherking speechbubble stickynote ihaveadream martinlutherkingday knowwhatiwant voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:15:10", "license": "5", "title": "leave Hyde Park", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7015/6462198407_7aae3371b3_o.jpg", "secret": "d7935bca47", "media": "photo", "latitude": "0", "id": "6462198407", "tags": "chicago leaving dream neighborhood hydepark mlk martinlutherking speechbubble stickynote ihaveadream martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:15:16", "license": "5", "title": "Manifestation of God", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6462200703_94560c976d_o.jpg", "secret": "7621a71546", "media": "photo", "latitude": "0", "id": "6462200703", "tags": "god religion dream christianity eternity mlk martinlutherking speechbubble stickynote ihaveadream martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:15:18", "license": "5", "title": "No regrets", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7015/6462202635_ee90c9417d_o.jpg", "secret": "0a81279c45", "media": "photo", "latitude": "0", "id": "6462202635", "tags": "life dream mlk martinlutherking speechbubble stickynote regrets noregrets ihaveadream martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:15:23", "license": "5", "title": "Tanya wants to eliminate educational inequality", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7003/6462204561_6cdd4ce2a1_o.jpg", "secret": "2d7a31ac72", "media": "photo", "latitude": "0", "id": "6462204561", "tags": "education tanya dream mlk martinlutherking speechbubble inequality stickynote ihaveadream martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:15:29", "license": "5", "title": "Voice", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7002/6462206169_fcd5de03f1_o.jpg", "secret": "10c3ee6230", "media": "photo", "latitude": "0", "id": "6462206169", "tags": "self dream voice mlk contribution martinlutherking speechbubble stickynote ihaveadream martinlutherkingday voiceyourdream findmyvoice mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:15:33", "license": "5", "title": "Humane immigration reform", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7018/6462207797_7362371f9e_o.jpg", "secret": "c101649b89", "media": "photo", "latitude": "0", "id": "6462207797", "tags": "family community alabama dream mlk immigration martinlutherking speechbubble stickynote ihaveadream martinlutherkingday immigrationreform voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:15:36", "license": "5", "title": "Love", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7151/6462209581_be75f568e7_o.jpg", "secret": "1dba53281f", "media": "photo", "latitude": "0", "id": "6462209581", "tags": "blur love dream dreams forever mlk martinlutherking speechbubble stickynote ihaveadream neversleep martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:15:46", "license": "5", "title": "Service learning", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7026/6462211659_2c80bc0383_o.jpg", "secret": "5e27e585f0", "media": "photo", "latitude": "0", "id": "6462211659", "tags": "education dream mlk martinlutherking speechbubble stickynote ihaveadream pedagogy servicelearning martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:15:51", "license": "5", "title": "Happiness and a comfortable life", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7145/6462214101_9aaf8d757d_o.jpg", "secret": "196bed0ebf", "media": "photo", "latitude": "0", "id": "6462214101", "tags": "happy dream happiness comfort mlk martinlutherking speechbubble stickynote ihaveadream martinlutherkingday voiceyourdream livecomfortably mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:15:56", "license": "5", "title": "Somebody's sick of instant ramen", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7005/6462216721_b4be484a03_o.jpg", "secret": "c7ec3a8c47", "media": "photo", "latitude": "0", "id": "6462216721", "tags": "food education peace humanity dream mlk martinlutherking speechbubble stickynote ihaveadream martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:16:00", "license": "5", "title": "Commitment", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7157/6462218837_c564946f28_o.jpg", "secret": "d8d333c6d7", "media": "photo", "latitude": "0", "id": "6462218837", "tags": "dream mlk martinlutherking speechbubble commitment commit stickynote ihaveadream martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:16:10", "license": "5", "title": ":) 4 all", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7166/6462220621_6706f5741f_o.jpg", "secret": "25bb9037e3", "media": "photo", "latitude": "0", "id": "6462220621", "tags": "smile 4 dream mlk martinlutherking speechbubble smileyface stickynote ihaveadream forall martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:16:14", "license": "5", "title": "Money and sugar", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7172/6462222711_c33e8b1ceb_o.jpg", "secret": "93a590fbdd", "media": "photo", "latitude": "0", "id": "6462222711", "tags": "justin money dream sugar mlk azucar martinlutherking speechbubble stickynote ihaveadream martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:16:21", "license": "5", "title": "Landlord hate", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7014/6462224681_be93b2ebd7_o.jpg", "secret": "928d0c6dce", "media": "photo", "latitude": "0", "id": "6462224681", "tags": "apartments dream yay hydepark mlk martinlutherking speechbubble bankrupt stickynote landlord ihaveadream martinlutherkingday macproperties voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:16:23", "license": "5", "title": "An attainable dream", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7005/6462226939_2d58c25ca4_o.jpg", "secret": "53d67a9417", "media": "photo", "latitude": "0", "id": "6462226939", "tags": "dream pizza hunger hungry mlk martinlutherking speechbubble stickynote ihaveadream competitiveeating martinlutherkingday onesitting voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:16:37", "license": "5", "title": "Where actions speak louder than identity", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7030/6462228287_3df5f260df_o.jpg", "secret": "4112fb6547", "media": "photo", "latitude": "0", "id": "6462228287", "tags": "dream identity recognition mlk martinlutherking speechbubble actions stickynote ihaveadream martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:16:39", "license": "5", "title": "A question of definitions", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7147/6462230209_a0dc5a1383_o.jpg", "secret": "a42f8692f3", "media": "photo", "latitude": "0", "id": "6462230209", "tags": "earth religion dream bible christianity mlk martinlutherking speechbubble stickynote ihaveadream martinlutherkingday voiceyourdream lordswill mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:16:41", "license": "5", "title": "Friendship", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6462231665_96bbf1950b_o.jpg", "secret": "08ca194bf4", "media": "photo", "latitude": "0", "id": "6462231665", "tags": "friendship magic dream mlk martinlutherking speechbubble stickynote ihaveadream martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:16:45", "license": "5", "title": "Adidas", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7024/6462234539_21e1e9a160_o.jpg", "secret": "0b7b58f4f0", "media": "photo", "latitude": "0", "id": "6462234539", "tags": "zimmer dream adidas mlk martinlutherking speechbubble stickynote ihaveadream martinlutherkingday presidentzimmer voiceyourdream adidascontract mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:16:49", "license": "5", "title": "Medusa's lament", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7012/6462236165_e6b2c8fde1_o.jpg", "secret": "fce8230762", "media": "photo", "latitude": "0", "id": "6462236165", "tags": "dream sidewalk stare medusa mlk discrimination martinlutherking speechbubble stickynote ihaveadream crossingthestreet martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:16:59", "license": "5", "title": "Neighborhood love", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7155/6462238871_095cba8119_o.jpg", "secret": "b267d0ee44", "media": "photo", "latitude": "0", "id": "6462238871", "tags": "chicago love dream pride neighborhood southside hydepark neighbors relationships mlk martinlutherking speechbubble stickynote ihaveadream martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:17:01", "license": "5", "title": "The beauty queen's answer", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7010/6462249347_221121f155_o.jpg", "secret": "f75d0c9f60", "media": "photo", "latitude": "0", "id": "6462249347", "tags": "peace dream beautyqueen mlk martinlutherking speechbubble stickynote ihaveadream martinlutherkingday voiceyourdream pageantquestionanswerworld mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:17:05", "license": "5", "title": "May everything work out", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6462251805_1e0270e80d_o.jpg", "secret": "d67d7644fe", "media": "photo", "latitude": "0", "id": "6462251805", "tags": "college dream workout mlk martinlutherking speechbubble stickynote 2years ihaveadream martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:17:07", "license": "5", "title": "Creating immigration reform", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7032/6462253573_db872e64fc_o.jpg", "secret": "0632ed6ba3", "media": "photo", "latitude": "0", "id": "6462253573", "tags": "dream creation immigrants create mlk martinlutherking speechbubble acceptance stickynote ihaveadream martinlutherkingday immigrationreform voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:17:09", "license": "5", "title": "Sex trafficking", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7027/6462255553_04c63fd58e_o.jpg", "secret": "b0b3daa7c9", "media": "photo", "latitude": "0", "id": "6462255553", "tags": "chinese dream mlk martinlutherking speechbubble stickynote ihaveadream martinlutherkingday sextrafficking voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:17:11", "license": "5", "title": "agreed", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7010/6462257525_fb22da5280_o.jpg", "secret": "f78402d51d", "media": "photo", "latitude": "0", "id": "6462257525", "tags": "dream arabic mlk martinlutherking speechbubble stickynote ihaveadream martinlutherkingday agreed voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:17:17", "license": "5", "title": "The overachiever", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7008/6462258821_0eff8c6f47_o.jpg", "secret": "8b302ceb48", "media": "photo", "latitude": "0", "id": "6462258821", "tags": "alabama dream immigrants problems racism punishment mlk immigration racist improvement martinlutherking rant speechbubble stickynote paragraph ihaveadream martinlutherkingday socialwelfare voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:17:21", "license": "5", "title": "1-state, 2-state or aqueous solution in the Middle East", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7171/6462260029_4f43f880b3_o.jpg", "secret": "bfb12e22c4", "media": "photo", "latitude": "0", "id": "6462260029", "tags": "israel palestine dream middleeast chemistry mlk martinlutherking speechbubble stickynote ihaveadream martinlutherkingday two1 onestatesolution voiceyourdream 2aqueous mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:17:27", "license": "5", "title": "Get an A(men)", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7165/6462261247_7dd4e6f28d_o.jpg", "secret": "d4f18f8c3b", "media": "photo", "latitude": "0", "id": "6462261247", "tags": "college dream grades amen mlk martinlutherking speechbubble stickynote ihaveadream martinlutherkingday a voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:17:33", "license": "5", "title": "Various flavors of harmony", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7034/6462263861_0abd6d41f9_o.jpg", "secret": "586fa2fe0a", "media": "photo", "latitude": "0", "id": "6462263861", "tags": "god dream harmony mlk humans martinlutherking speechbubble stickynote ihaveadream martinlutherkingday socialorder voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-12-05 08:17:39", "license": "5", "title": "Getting an early start on unionizing the workers of an un-built building", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7022/6462262461_9c6a3e8529_o.jpg", "secret": "ab9ed3409b", "media": "photo", "latitude": "0", "id": "6462262461", "tags": "chicago hotel workers union dream rights hyatt hydepark mlk martinlutherking speechbubble stickynote intimidation ihaveadream hyatthotel martinlutherkingday voiceyourdream unized mlkuchicagoedu"}, {"datetaken": "2011-12-05 09:41:49", "license": "5", "title": "The bibliophile and the dentist", "text": "", "album_id": "72157628296383879", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7034/6462265827_e65f45b3ae_o.jpg", "secret": "6395034e10", "media": "photo", "latitude": "0", "id": "6462265827", "tags": "dream dentist mlk martinlutherking speechbubble bibliophile stickynote morebooks ihaveadream dentalschool martinlutherkingday voiceyourdream mlkuchicagoedu"}, {"datetaken": "2011-01-17 02:11:32", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 005", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5088/5364782085_e23fb55863_o.jpg", "secret": "f5638c3920", "media": "photo", "latitude": "0", "id": "5364782085", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:11:39", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 006", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5088/5365397308_e3ab15f4fb_o.jpg", "secret": "d7a1445fba", "media": "photo", "latitude": "0", "id": "5365397308", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:11:42", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 007", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5083/5365399890_b90dfbf15a_o.jpg", "secret": "0edacd1784", "media": "photo", "latitude": "0", "id": "5365399890", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:11:47", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 008", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5286/5365402054_d129440687_o.jpg", "secret": "a8eac10274", "media": "photo", "latitude": "0", "id": "5365402054", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:11:52", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 009", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5285/5364791141_c4e71f91e7_o.jpg", "secret": "44ebe26537", "media": "photo", "latitude": "0", "id": "5364791141", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:11:55", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 010", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5167/5364792701_59657cf9df_o.jpg", "secret": "c1e2de3eea", "media": "photo", "latitude": "0", "id": "5364792701", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:12:00", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 011", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5163/5365407418_6b0e7a34a3_o.jpg", "secret": "0a7489949e", "media": "photo", "latitude": "0", "id": "5365407418", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:12:15", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 012", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5246/5364796665_5151744411_o.jpg", "secret": "2aa8ce799e", "media": "photo", "latitude": "0", "id": "5364796665", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:12:25", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 013", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5201/5365411698_9691db7bda_o.jpg", "secret": "fb0c8dc742", "media": "photo", "latitude": "0", "id": "5365411698", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:12:50", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 014", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5006/5364801099_af6af6981f_o.jpg", "secret": "309306ce98", "media": "photo", "latitude": "0", "id": "5364801099", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:13:03", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 015", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5122/5365417814_e0367da44f_o.jpg", "secret": "fc2f8a8a4a", "media": "photo", "latitude": "0", "id": "5365417814", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:13:06", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 016", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5082/5365419036_ce556533e9_o.jpg", "secret": "e7d61e6469", "media": "photo", "latitude": "0", "id": "5365419036", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:13:49", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 018", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5203/5365421328_3aa8f46083_o.jpg", "secret": "f044c0b655", "media": "photo", "latitude": "0", "id": "5365421328", "tags": "martinlutherkingjr martinlutherking martinlutherkingday martinlutherkingjrday mlk mlkholiday martinlutherkingholiday rustinjordancoalition blackandgayandheretostay black gay parade crenshaw crenshawblvd nomoredownlow jordanrustincoalition blackpride atthebeach gayblackpride inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:14:26", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 020", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5241/5365423676_9e8f800559_o.jpg", "secret": "03a06659f4", "media": "photo", "latitude": "0", "id": "5365423676", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:16:35", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 024", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5041/5365427244_7fa896757e_o.jpg", "secret": "782b87fc59", "media": "photo", "latitude": "0", "id": "5365427244", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:17:33", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 026", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5006/5365428628_c0b71d638b_o.jpg", "secret": "fe01392acf", "media": "photo", "latitude": "0", "id": "5365428628", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:18:12", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 027", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5042/5365431584_bb8fc4ce3e_o.jpg", "secret": "aed17721ed", "media": "photo", "latitude": "0", "id": "5365431584", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:20:40", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 031", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5245/5364820511_93f725a68e_o.jpg", "secret": "97d6f022c4", "media": "photo", "latitude": "0", "id": "5364820511", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:22:55", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 035", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5287/5364877475_7359309357_o.jpg", "secret": "cfd9e67a56", "media": "photo", "latitude": "0", "id": "5364877475", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:22:55", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 035", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5121/5366314820_62238a4519_o.jpg", "secret": "582957ec91", "media": "photo", "latitude": "0", "id": "5366314820", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:24:00", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 036", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5088/5365704891_5c57a527f6_o.jpg", "secret": "f3df794a5b", "media": "photo", "latitude": "0", "id": "5365704891", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:24:25", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 037", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5005/5366320304_675f05917b_o.jpg", "secret": "5e6a945aa0", "media": "photo", "latitude": "0", "id": "5366320304", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:25:10", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 039", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5049/5365710233_5713d1c81a_o.jpg", "secret": "5b76b073a7", "media": "photo", "latitude": "0", "id": "5365710233", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:25:58", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 040", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5084/5366324608_5919c56a45_o.jpg", "secret": "e8405edf07", "media": "photo", "latitude": "0", "id": "5366324608", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:26:52", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 042", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5288/5365713241_82fb69d345_o.jpg", "secret": "61781b41bf", "media": "photo", "latitude": "0", "id": "5365713241", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:26:55", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 043", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5169/5366326736_d447c4422b_o.jpg", "secret": "a7a8f67407", "media": "photo", "latitude": "0", "id": "5366326736", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:28:29", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 044", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5207/5365714849_2d3623c38e_o.jpg", "secret": "5b208e90c3", "media": "photo", "latitude": "0", "id": "5365714849", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:28:35", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 045", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5130/5365717227_6e4e9d3c9c_o.jpg", "secret": "10b8dcd136", "media": "photo", "latitude": "0", "id": "5365717227", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:29:46", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 046", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5165/5365719311_80a9f901be_o.jpg", "secret": "248138dddc", "media": "photo", "latitude": "0", "id": "5365719311", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:30:11", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 047", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5125/5365721185_5e510dfb3f_o.jpg", "secret": "12d3c164dd", "media": "photo", "latitude": "0", "id": "5365721185", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:30:59", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 049", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5250/5365722255_352f5a730f_o.jpg", "secret": "647f6252e9", "media": "photo", "latitude": "0", "id": "5365722255", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:31:17", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 050", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5245/5365723969_2f5ae0048f_o.jpg", "secret": "e139c520d7", "media": "photo", "latitude": "0", "id": "5365723969", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 02:31:26", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 051", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5084/5366337966_be76d62177_o.jpg", "secret": "a26c9ef104", "media": "photo", "latitude": "0", "id": "5366337966", "tags": "gay black parade atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2011-01-17 03:07:57", "license": "1", "title": "Martin Luther King Jr. Day Parade January 2011 052", "text": "", "album_id": "72157625850715298", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5084/5365875523_022fd9916a_o.jpg", "secret": "329c0d1744", "media": "photo", "latitude": "0", "id": "5365875523", "tags": "trees gay black palm parade palmtrees atthebeach mlk martinlutherkingjr martinlutherking crenshaw martinlutherkingday blackpride martinlutherkingjrday crenshawblvd mlkholiday martinlutherkingholiday gayblackpride jordanrustincoalition nomoredownlow rustinjordancoalition blackandgayandheretostay inthemeantimemensgroup blacklesbiansunited"}, {"datetaken": "2012-01-15 17:00:00", "license": "4", "title": "Downtown New York City Two Months After Zuccotti Park Raid", "text": "", "album_id": "72157628917529603", "longitude": "-74.011266", "url_o": "https://farm8.staticflickr.com/7013/6707891197_6987da59b9_o.jpg", "secret": "c463281151", "media": "photo", "latitude": "40.709312", "id": "6707891197", "tags": "street wall ows occupy"}, {"datetaken": "2012-01-15 17:00:00", "license": "4", "title": "Downtown New York City Two Months After Zuccotti Park Raid", "text": "", "album_id": "72157628917529603", "longitude": "-74.010986", "url_o": "https://farm8.staticflickr.com/7034/6707716953_6b814e7741_o.jpg", "secret": "5cf0aa0973", "media": "photo", "latitude": "40.707347", "id": "6707716953", "tags": "street wall ows occupy"}, {"datetaken": "2012-01-15 17:00:00", "license": "4", "title": "Downtown New York City Two Months After Zuccotti Park Raid", "text": "", "album_id": "72157628917529603", "longitude": "-74.011108", "url_o": "https://farm8.staticflickr.com/7141/6707659705_d3913e6dd7_o.jpg", "secret": "ac4d1a7e82", "media": "photo", "latitude": "40.707424", "id": "6707659705", "tags": "street wall ows occupy"}, {"datetaken": "2012-01-15 20:00:00", "license": "4", "title": "People look upon One World Trade Center under construction", "text": "", "album_id": "72157628917529603", "longitude": "-74.013057", "url_o": "https://farm8.staticflickr.com/7157/6736801191_86b6bcb05c_o.jpg", "secret": "10e19c7f9b", "media": "photo", "latitude": "40.712386", "id": "6736801191", "tags": "world new york city look downtown center gaze trade"}, {"datetaken": "2012-01-16 10:00:00", "license": "4", "title": "Occupy Wall Street MLK march to the Federal Reserve Bank of New York", "text": "", "album_id": "72157628917529603", "longitude": "-74.009635", "url_o": "https://farm8.staticflickr.com/7002/6716576847_32a2aa075b_o.jpg", "secret": "9c42b3e9dd", "media": "photo", "latitude": "40.710223", "id": "6716576847", "tags": "street wall ows occupy"}, {"datetaken": "2012-01-16 10:00:00", "license": "4", "title": "Occupy Wall Street MLK march to the Federal Reserve Bank of New York", "text": "", "album_id": "72157628917529603", "longitude": "-74.009517", "url_o": "https://farm8.staticflickr.com/7154/6716700637_5ba70babab_o.jpg", "secret": "7ac57e0282", "media": "photo", "latitude": "40.710324", "id": "6716700637", "tags": "street wall ows occupy"}, {"datetaken": "2012-01-16 10:00:00", "license": "4", "title": "Occupy Wall Street MLK protest at the Federal Reserve Bank of New York", "text": "", "album_id": "72157628917529603", "longitude": "-74.007972", "url_o": "https://farm8.staticflickr.com/7010/6716514913_b779516562_o.jpg", "secret": "9fae13572d", "media": "photo", "latitude": "40.707705", "id": "6716514913", "tags": "street wall ows occupy"}, {"datetaken": "2012-01-16 11:00:00", "license": "4", "title": "Occupy Wall Street MLK protest at the Federal Reserve Bank of New York", "text": "", "album_id": "72157628917529603", "longitude": "-74.007940", "url_o": "https://farm8.staticflickr.com/7173/6716481343_e790c19005_o.jpg", "secret": "de24c0f616", "media": "photo", "latitude": "40.707710", "id": "6716481343", "tags": "street wall ows occupy"}, {"datetaken": "2012-01-16 11:00:00", "license": "4", "title": "Occupy Wall Street MLK protest at the Federal Reserve Bank of New York", "text": "", "album_id": "72157628917529603", "longitude": "-74.007993", "url_o": "https://farm8.staticflickr.com/7027/6716472221_6cb4fb3497_o.jpg", "secret": "6b9d6ec769", "media": "photo", "latitude": "40.707640", "id": "6716472221", "tags": "street wall ows occupy"}, {"datetaken": "2012-01-16 11:00:00", "license": "4", "title": "Occupy Wall Street MLK protest at the Federal Reserve Bank of New York", "text": "", "album_id": "72157628917529603", "longitude": "-74.007961", "url_o": "https://farm8.staticflickr.com/7169/6716378609_6f06856801_o.jpg", "secret": "8acd820572", "media": "photo", "latitude": "40.707742", "id": "6716378609", "tags": "street wall ows occupy"}, {"datetaken": "2007-01-15 14:59:23", "license": "3", "title": "Reflection", "text": "", "album_id": "72157594482057549", "longitude": "-77.041121", "url_o": "https://farm1.staticflickr.com/140/358882104_9ff0ac82fd_o.jpg", "secret": "9ff0ac82fd", "media": "photo", "latitude": "38.889421", "id": "358882104", "tags": "sky washingtondc reflectingpool 2007 1635canon"}, {"datetaken": "2007-01-15 15:02:15", "license": "3", "title": "Reflecting Pool", "text": "", "album_id": "72157594482057549", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/358873005_d372649ab7_o.jpg", "secret": "d372649ab7", "media": "photo", "latitude": "0", "id": "358873005", "tags": "washingtondc reflectingpool 1635canon"}, {"datetaken": "2007-01-15 15:13:55", "license": "3", "title": "WW II Memorial", "text": "", "album_id": "72157594482057549", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/358850556_5354ee988c_o.jpg", "secret": "5354ee988c", "media": "photo", "latitude": "0", "id": "358850556", "tags": "sky washington wwiimemorial washingtondc1635usmcanon"}, {"datetaken": "2007-01-15 15:20:39", "license": "3", "title": "Blue Skies on the National Mall", "text": "", "album_id": "72157594482057549", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/358847528_2fbfb54edf_o.jpg", "secret": "2fbfb54edf", "media": "photo", "latitude": "0", "id": "358847528", "tags": "washingtondc flag washingtonmonument powmia"}, {"datetaken": "2007-01-15 15:22:28", "license": "3", "title": "Sky WWII Memorial", "text": "", "album_id": "72157594482057549", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/358847533_f960b90e0f_o.jpg", "secret": "f960b90e0f", "media": "photo", "latitude": "0", "id": "358847533", "tags": "sky washingtondc wwiimemorial"}, {"datetaken": "2007-01-15 15:44:48", "license": "3", "title": "Lincoln Memorial MLK Day 2007", "text": "", "album_id": "72157594482057549", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/358790861_17438d25b7_o.jpg", "secret": "17438d25b7", "media": "photo", "latitude": "0", "id": "358790861", "tags": "washingtondc washington mlk martinlutherking mlkday2007"}, {"datetaken": "2007-01-15 15:46:39", "license": "3", "title": "Martin Luther King: \"I Have A Dream\"", "text": "", "album_id": "72157594482057549", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/358745570_7da088169d_o.jpg", "secret": "7da088169d", "media": "photo", "latitude": "0", "id": "358745570", "tags": ""}, {"datetaken": "2007-01-15 15:47:17", "license": "3", "title": "Lincoln Memorial MLK Day 2007", "text": "", "album_id": "72157594482057549", "longitude": "-77.050241", "url_o": "https://farm1.staticflickr.com/132/358767985_01e85327fd_o.jpg", "secret": "01e85327fd", "media": "photo", "latitude": "38.889496", "id": "358767985", "tags": "washingtondc lincolnmemorial 2007 mlkday martinlutherking ihaveadream"}, {"datetaken": "2007-01-15 15:50:08", "license": "3", "title": "I Still Have A Dream", "text": "", "album_id": "72157594482057549", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/358983139_8efea4da3a_o.jpg", "secret": "8efea4da3a", "media": "photo", "latitude": "0", "id": "358983139", "tags": "washingtondc mlk martinlutherking ihaveadream mlkday2007 lincolnmemorialsteps anawesomephotographer"}, {"datetaken": "2007-01-15 15:51:57", "license": "3", "title": "MLK Day", "text": "", "album_id": "72157594482057549", "longitude": "-77.050241", "url_o": "https://farm1.staticflickr.com/146/358943156_da330f5e12_o.jpg", "secret": "da330f5e12", "media": "photo", "latitude": "38.889496", "id": "358943156", "tags": "washingtondc lincolnmemorial mlkday2007"}, {"datetaken": "2007-01-15 15:52:04", "license": "3", "title": "MLK Day", "text": "", "album_id": "72157594482057549", "longitude": "-77.050241", "url_o": "https://farm1.staticflickr.com/131/358943159_915467a175_o.jpg", "secret": "915467a175", "media": "photo", "latitude": "38.889496", "id": "358943159", "tags": "washingtondc lincolnmemorial mlkday2007"}, {"datetaken": "2007-01-15 15:52:15", "license": "3", "title": "MLK Day", "text": "", "album_id": "72157594482057549", "longitude": "-77.050241", "url_o": "https://farm1.staticflickr.com/163/358943162_2ed5947611_o.jpg", "secret": "2ed5947611", "media": "photo", "latitude": "38.889496", "id": "358943162", "tags": "washingtondc lincolnmemorial mlkday2007"}, {"datetaken": "2007-01-15 15:52:29", "license": "3", "title": "MLK Day", "text": "", "album_id": "72157594482057549", "longitude": "-77.050241", "url_o": "https://farm1.staticflickr.com/152/358943165_335e060983_o.jpg", "secret": "335e060983", "media": "photo", "latitude": "38.889496", "id": "358943165", "tags": "washingtondc lincolnmemorial mlkday2007"}, {"datetaken": "2007-01-15 15:52:37", "license": "3", "title": "MLK Day", "text": "", "album_id": "72157594482057549", "longitude": "-77.050241", "url_o": "https://farm1.staticflickr.com/159/358943171_0038e00cc2_o.jpg", "secret": "0038e00cc2", "media": "photo", "latitude": "38.889496", "id": "358943171", "tags": "washingtondc lincolnmemorial mlkday2007"}, {"datetaken": "2007-01-15 15:53:57", "license": "3", "title": "MLK Day", "text": "", "album_id": "72157594482057549", "longitude": "-77.050241", "url_o": "https://farm1.staticflickr.com/149/358946351_45280e9436_o.jpg", "secret": "45280e9436", "media": "photo", "latitude": "38.889496", "id": "358946351", "tags": "washingtondc lincolnmemorial 2007 martinlutherking"}, {"datetaken": "2007-01-15 15:54:15", "license": "3", "title": "MLK0007", "text": "", "album_id": "72157594482057549", "longitude": "-77.050241", "url_o": "https://farm1.staticflickr.com/141/358946354_4834c7d466_o.jpg", "secret": "4834c7d466", "media": "photo", "latitude": "38.889496", "id": "358946354", "tags": "washingtondc lincolnmemorial 2007 martinlutherking"}, {"datetaken": "2007-01-15 15:54:37", "license": "3", "title": "MLK0008", "text": "", "album_id": "72157594482057549", "longitude": "-77.050241", "url_o": "https://farm1.staticflickr.com/165/358946358_0e9291e5f1_o.jpg", "secret": "0e9291e5f1", "media": "photo", "latitude": "38.889496", "id": "358946358", "tags": "washingtondc lincolnmemorial 2007 martinlutherking"}, {"datetaken": "2007-01-15 15:54:53", "license": "3", "title": "MLK0009", "text": "", "album_id": "72157594482057549", "longitude": "-77.050241", "url_o": "https://farm1.staticflickr.com/154/358946359_a88af090d4_o.jpg", "secret": "a88af090d4", "media": "photo", "latitude": "38.889496", "id": "358946359", "tags": "washingtondc lincolnmemorial 2007 martinlutherking"}, {"datetaken": "2007-01-15 15:54:57", "license": "3", "title": "MLK0010", "text": "", "album_id": "72157594482057549", "longitude": "-77.050241", "url_o": "https://farm1.staticflickr.com/152/358946360_c9160f4383_o.jpg", "secret": "c9160f4383", "media": "photo", "latitude": "38.889496", "id": "358946360", "tags": "washingtondc lincolnmemorial 2007 martinlutherking"}, {"datetaken": "2007-01-15 15:56:54", "license": "3", "title": "Lincoln Memorial Steps", "text": "", "album_id": "72157594482057549", "longitude": "-77.050241", "url_o": "https://farm1.staticflickr.com/135/358866474_038eadec30_o.jpg", "secret": "038eadec30", "media": "photo", "latitude": "38.889496", "id": "358866474", "tags": "washingtondc lincolnmemorial mlkday2007"}, {"datetaken": "2007-01-15 21:14:03", "license": "3", "title": "Paying Respect: MLK Day at the Lincoln Memorial", "text": "", "album_id": "72157594482057549", "longitude": "-77.050241", "url_o": "https://farm1.staticflickr.com/139/358952441_4b7f1b001c_o.jpg", "secret": "4b7f1b001c", "media": "photo", "latitude": "38.889496", "id": "358952441", "tags": "fdsflickrtoys"}, {"datetaken": "2009-01-19 10:01:18", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3510/3211625446_e70b9b17d9_o.jpg", "secret": "cc155da29f", "media": "photo", "latitude": "0", "id": "3211625446", "tags": "mlk lewiselementary"}, {"datetaken": "2009-01-19 10:02:10", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3503/3211625310_ce9298f62e_o.jpg", "secret": "66c67ea3b2", "media": "photo", "latitude": "0", "id": "3211625310", "tags": "mlk lewiselementary"}, {"datetaken": "2009-01-19 10:02:14", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3340/3210779525_4475d730f9_o.jpg", "secret": "d9b484d386", "media": "photo", "latitude": "0", "id": "3210779525", "tags": "mlk lewiselementary"}, {"datetaken": "2009-01-19 10:03:05", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3125/3211625046_36fac51c02_o.jpg", "secret": "2ea09e05b2", "media": "photo", "latitude": "0", "id": "3211625046", "tags": "mlk lewiselementary ss5th20e13"}, {"datetaken": "2009-01-19 10:25:07", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3498/3211624900_51f5b23f42_o.jpg", "secret": "96aeccbdd2", "media": "photo", "latitude": "0", "id": "3211624900", "tags": "mlk lewiselementary"}, {"datetaken": "2009-01-19 10:25:19", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3302/3211624790_666582128c_o.jpg", "secret": "1e982aebb1", "media": "photo", "latitude": "0", "id": "3211624790", "tags": "mlk lewiselementary"}, {"datetaken": "2009-01-19 10:25:30", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3379/3211624564_7d841b8f95_o.jpg", "secret": "0a23ea787a", "media": "photo", "latitude": "0", "id": "3211624564", "tags": "mlk lewiselementary"}, {"datetaken": "2009-01-19 10:25:41", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3398/3210778831_2cac433c16_o.jpg", "secret": "2684ee3efc", "media": "photo", "latitude": "0", "id": "3210778831", "tags": "garden mlk lewiselementary"}, {"datetaken": "2009-01-19 10:25:44", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3372/3211624280_527e66c802_o.jpg", "secret": "0b3c45212b", "media": "photo", "latitude": "0", "id": "3211624280", "tags": "garden mlk lewiselementary"}, {"datetaken": "2009-01-19 10:26:07", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3384/3210778555_f721e14080_o.jpg", "secret": "10cb71c11f", "media": "photo", "latitude": "0", "id": "3210778555", "tags": "mlk lewiselementary ss20125 eoyss145thgrade"}, {"datetaken": "2009-01-19 10:26:40", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3338/3210778429_d80c48c7a7_o.jpg", "secret": "7f6588d59f", "media": "photo", "latitude": "0", "id": "3210778429", "tags": "mlk lewiselementary"}, {"datetaken": "2009-01-19 10:26:52", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3354/3211623832_d42e504ee8_o.jpg", "secret": "06bc73b6b5", "media": "photo", "latitude": "0", "id": "3211623832", "tags": "mlk lewiselementary"}, {"datetaken": "2009-01-19 10:27:01", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3536/3210778167_7729898c26_o.jpg", "secret": "c771db4d85", "media": "photo", "latitude": "0", "id": "3210778167", "tags": "mlk lewiselementary"}, {"datetaken": "2009-01-19 11:02:41", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3327/3210778029_88979c83db_o.jpg", "secret": "a16a5b5ef2", "media": "photo", "latitude": "0", "id": "3210778029", "tags": "mlk lewiselementary eoyss145thgrade"}, {"datetaken": "2009-01-19 11:03:33", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3352/3210777881_7f46c68a71_o.jpg", "secret": "4ff37efa66", "media": "photo", "latitude": "0", "id": "3210777881", "tags": "mlk lewiselementary ss5th20e13 eoyss145thgrade"}, {"datetaken": "2009-01-19 11:39:49", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3367/3211623292_b27f5516b5_o.jpg", "secret": "0bf1234c6d", "media": "photo", "latitude": "0", "id": "3211623292", "tags": "mlk lewiselementary"}, {"datetaken": "2009-01-19 11:39:58", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3081/3210777493_ecf9f403f1_o.jpg", "secret": "fd6c2606b8", "media": "photo", "latitude": "0", "id": "3210777493", "tags": "mlk lewiselementary"}, {"datetaken": "2009-01-19 11:40:08", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3526/3211622916_9d5663b185_o.jpg", "secret": "5376726240", "media": "photo", "latitude": "0", "id": "3211622916", "tags": "mlk lewiselementary"}, {"datetaken": "2009-01-19 11:40:11", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3439/3210777233_36cda60ea1_o.jpg", "secret": "954b643a38", "media": "photo", "latitude": "0", "id": "3210777233", "tags": "mlk lewiselementary"}, {"datetaken": "2009-01-19 11:40:17", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3339/3211622626_4d61344e81_o.jpg", "secret": "a8db961fc9", "media": "photo", "latitude": "0", "id": "3211622626", "tags": "mlk lewiselementary"}, {"datetaken": "2009-01-19 11:40:27", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3447/3211622482_bd2f54b1e9_o.jpg", "secret": "129a0f8e50", "media": "photo", "latitude": "0", "id": "3211622482", "tags": "mlk lewiselementary ss20125"}, {"datetaken": "2009-01-19 11:41:21", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3362/3210776467_3f405267b9_o.jpg", "secret": "c96ec4c695", "media": "photo", "latitude": "0", "id": "3210776467", "tags": "garden mlk lewiselementary"}, {"datetaken": "2009-01-19 11:41:34", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3077/3211621878_a272dd1992_o.jpg", "secret": "8596894efb", "media": "photo", "latitude": "0", "id": "3211621878", "tags": "mlk lewiselementary ss20125"}, {"datetaken": "2009-01-19 11:41:43", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3415/3211621708_f8a3371ded_o.jpg", "secret": "6b556ddcf3", "media": "photo", "latitude": "0", "id": "3211621708", "tags": "mlk lewiselementary ss5th20e13"}, {"datetaken": "2009-01-19 12:19:10", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3105/3210775859_9a30fb0b1a_o.jpg", "secret": "75eded4f1d", "media": "photo", "latitude": "0", "id": "3210775859", "tags": "garden mlk lewiselementary"}, {"datetaken": "2009-01-19 12:19:26", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3372/3211621354_66d3120055_o.jpg", "secret": "a0a030297c", "media": "photo", "latitude": "0", "id": "3211621354", "tags": "mlk lewiselementary"}, {"datetaken": "2009-01-19 13:50:37", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3481/3210775475_7e3b328e3c_o.jpg", "secret": "8e389b8230", "media": "photo", "latitude": "0", "id": "3210775475", "tags": "mlk lewiselementary"}, {"datetaken": "2009-01-19 13:51:18", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3355/3211620956_3798162769_o.jpg", "secret": "8fa0a8e1c3", "media": "photo", "latitude": "0", "id": "3211620956", "tags": "mlk lewiselementary ss20125"}, {"datetaken": "2009-01-19 13:55:31", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3435/3211620852_0a54018a45_o.jpg", "secret": "7057c9160f", "media": "photo", "latitude": "0", "id": "3211620852", "tags": "mlk lewiselementary"}, {"datetaken": "2009-01-19 13:56:01", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3480/3211620666_8e00c54f69_o.jpg", "secret": "4f69b6f286", "media": "photo", "latitude": "0", "id": "3211620666", "tags": "mlk lewiselementary ss5th20e13"}, {"datetaken": "2009-01-19 13:57:55", "license": "3", "title": "Martin Luther King Day at Lewis - 2009", "text": "", "album_id": "72157612720327475", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3442/3211620420_7230ea47e6_o.jpg", "secret": "b8d9e22414", "media": "photo", "latitude": "0", "id": "3211620420", "tags": "mlk lewiselementary"}, {"datetaken": "2010-01-18 10:28:39", "license": "5", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10 (1)", "text": "", "album_id": "72157623112779761", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4285343655_497549c257_o.jpg", "secret": "7fbd5bedd2", "media": "photo", "latitude": "0", "id": "4285343655", "tags": "children education 01 mlk 2010 martinlutherkingday"}, {"datetaken": "2010-01-18 10:29:29", "license": "5", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10 (2)", "text": "", "album_id": "72157623112779761", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4285344123_8c330f64f6_o.jpg", "secret": "cb1aa3cebe", "media": "photo", "latitude": "0", "id": "4285344123", "tags": "children education 01 mlk 2010 martinlutherkingday"}, {"datetaken": "2010-01-18 10:31:05", "license": "5", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10 (3)", "text": "", "album_id": "72157623112779761", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4286085852_839ffddff2_o.jpg", "secret": "238aa1d56c", "media": "photo", "latitude": "0", "id": "4286085852", "tags": "children education 01 mlk 2010 martinlutherkingday"}, {"datetaken": "2010-01-18 10:31:36", "license": "5", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10 (4)", "text": "", "album_id": "72157623112779761", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2729/4286086326_cc7a6bb2d6_o.jpg", "secret": "f03f742f05", "media": "photo", "latitude": "0", "id": "4286086326", "tags": "children education 01 mlk 2010 martinlutherkingday"}, {"datetaken": "2010-01-18 10:33:00", "license": "5", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10 (5)", "text": "", "album_id": "72157623112779761", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2681/4286086780_4bd4c6bfd9_o.jpg", "secret": "9aefe8119e", "media": "photo", "latitude": "0", "id": "4286086780", "tags": "children education 01 mlk 2010 martinlutherkingday"}, {"datetaken": "2010-01-18 10:35:24", "license": "5", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10 (6)", "text": "", "album_id": "72157623112779761", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4285346103_472608f981_o.jpg", "secret": "71d567430b", "media": "photo", "latitude": "0", "id": "4285346103", "tags": "children education 01 mlk 2010 martinlutherkingday"}, {"datetaken": "2010-01-18 10:50:42", "license": "5", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10 (7)", "text": "", "album_id": "72157623112779761", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4286087720_3b3caf5c02_o.jpg", "secret": "c41ed2648f", "media": "photo", "latitude": "0", "id": "4286087720", "tags": "children education 01 mlk 2010 martinlutherkingday"}, {"datetaken": "2010-01-18 10:52:12", "license": "5", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10 (8)", "text": "", "album_id": "72157623112779761", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4285347173_a99b0998e2_o.jpg", "secret": "d2c7176a9b", "media": "photo", "latitude": "0", "id": "4285347173", "tags": "children education 01 mlk 2010 martinlutherkingday"}, {"datetaken": "2010-01-18 11:30:25", "license": "5", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10 (9)", "text": "", "album_id": "72157623112779761", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4285347555_7e8a04a8ca_o.jpg", "secret": "57fa273c27", "media": "photo", "latitude": "0", "id": "4285347555", "tags": "children education 01 mlk 2010 martinlutherkingday"}, {"datetaken": "2010-01-18 11:31:16", "license": "5", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10 (10)", "text": "", "album_id": "72157623112779761", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4286089190_fdd7951231_o.jpg", "secret": "d89cbe9543", "media": "photo", "latitude": "0", "id": "4286089190", "tags": "children education 01 mlk 2010 martinlutherkingday"}, {"datetaken": "2010-01-18 11:31:47", "license": "5", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10 (11)", "text": "", "album_id": "72157623112779761", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/4286089558_afd0725f3f_o.jpg", "secret": "0008b00e93", "media": "photo", "latitude": "0", "id": "4286089558", "tags": "children education 01 mlk 2010 martinlutherkingday"}, {"datetaken": "2010-01-18 11:33:27", "license": "5", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10 (12)", "text": "", "album_id": "72157623112779761", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4285348849_a66c3488a2_o.jpg", "secret": "346aabf585", "media": "photo", "latitude": "0", "id": "4285348849", "tags": "children education 01 mlk 2010 martinlutherkingday"}, {"datetaken": "2010-01-18 11:33:51", "license": "5", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10 (13)", "text": "", "album_id": "72157623112779761", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4285349195_14b061b93f_o.jpg", "secret": "5c1b330b33", "media": "photo", "latitude": "0", "id": "4285349195", "tags": "children education 01 mlk 2010 martinlutherkingday"}, {"datetaken": "2010-01-18 11:34:33", "license": "5", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10 (14)", "text": "", "album_id": "72157623112779761", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2461/4285349637_84aabe1313_o.jpg", "secret": "2eae39e808", "media": "photo", "latitude": "0", "id": "4285349637", "tags": "children education 01 mlk 2010 martinlutherkingday"}, {"datetaken": "2010-01-18 11:34:59", "license": "5", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10 (15)", "text": "", "album_id": "72157623112779761", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2698/4285350041_0b8f6d996a_o.jpg", "secret": "62ed64bd59", "media": "photo", "latitude": "0", "id": "4285350041", "tags": "children education 01 mlk 2010 martinlutherkingday"}, {"datetaken": "2010-01-18 11:47:57", "license": "5", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10 (16)", "text": "", "album_id": "72157623112779761", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4285350405_23204b4cbc_o.jpg", "secret": "bfdd489674", "media": "photo", "latitude": "0", "id": "4285350405", "tags": "children education 01 mlk 2010 martinlutherkingday"}, {"datetaken": "2010-01-18 12:44:59", "license": "5", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10 (17)", "text": "", "album_id": "72157623112779761", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4285350837_7603dabe83_o.jpg", "secret": "a0020a10dc", "media": "photo", "latitude": "0", "id": "4285350837", "tags": "children education 01 mlk 2010 martinlutherkingday"}, {"datetaken": "2013-01-21 18:16:50", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8049/8407733111_793595a438_o.jpg", "secret": "9b4a24ff94", "media": "photo", "latitude": "0", "id": "8407733111", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 18:17:26", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8351/8408829206_b3898a492d_o.jpg", "secret": "1215c4478f", "media": "photo", "latitude": "0", "id": "8408829206", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 18:19:06", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8094/8407733477_dd6da38340_o.jpg", "secret": "8370bf0626", "media": "photo", "latitude": "0", "id": "8407733477", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 18:20:25", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8502/8407733621_c4abe75a88_o.jpg", "secret": "6061609dfb", "media": "photo", "latitude": "0", "id": "8407733621", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 18:22:43", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8050/8407733747_1232272b30_o.jpg", "secret": "ba3905599f", "media": "photo", "latitude": "0", "id": "8407733747", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 18:23:42", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8091/8407733803_885778dbc8_o.jpg", "secret": "2f3be95cd3", "media": "photo", "latitude": "0", "id": "8407733803", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 18:27:21", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8501/8407733931_ddc1922a0b_o.jpg", "secret": "6137def433", "media": "photo", "latitude": "0", "id": "8407733931", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 18:29:37", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8079/8407734053_5d169d47b8_o.jpg", "secret": "93bfe64138", "media": "photo", "latitude": "0", "id": "8407734053", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 18:30:15", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8378/8408830086_c98e0348ff_o.jpg", "secret": "5582f6ebcb", "media": "photo", "latitude": "0", "id": "8408830086", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 18:33:02", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8235/8408830180_bbfc25c07d_o.jpg", "secret": "fbd16f788f", "media": "photo", "latitude": "0", "id": "8408830180", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 18:45:26", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8352/8407734423_3b012410a1_o.jpg", "secret": "990beee265", "media": "photo", "latitude": "0", "id": "8407734423", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 18:49:47", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8094/8408830400_efa7fbbbae_o.jpg", "secret": "dc6810ae67", "media": "photo", "latitude": "0", "id": "8408830400", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 18:51:19", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8183/8407734683_6e6b21e161_o.jpg", "secret": "c96153c99e", "media": "photo", "latitude": "0", "id": "8407734683", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 18:53:09", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8236/8408830634_0e8bcff965_o.jpg", "secret": "1fdbbb90dc", "media": "photo", "latitude": "0", "id": "8408830634", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 18:56:18", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8465/8407734893_950d765aa1_o.jpg", "secret": "dd1bb15d72", "media": "photo", "latitude": "0", "id": "8407734893", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 18:56:30", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8238/8407734981_c6fa63c71d_o.jpg", "secret": "f1bf7b5bbe", "media": "photo", "latitude": "0", "id": "8407734981", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 19:01:26", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8048/8407735081_2a0def33d2_o.jpg", "secret": "285d469281", "media": "photo", "latitude": "0", "id": "8407735081", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 19:13:39", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8495/8408831024_716b80036f_o.jpg", "secret": "380a69c99d", "media": "photo", "latitude": "0", "id": "8408831024", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 19:15:40", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8077/8408831114_697a0430dc_o.jpg", "secret": "533b85416b", "media": "photo", "latitude": "0", "id": "8408831114", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 19:17:46", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8373/8408831200_cdcd631c35_o.jpg", "secret": "aefcdd3fdc", "media": "photo", "latitude": "0", "id": "8408831200", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2013-01-21 19:21:42", "license": "4", "title": "MLK Day 1.22.13", "text": "", "album_id": "72157632590003647", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8360/8408831256_afdf7f95de_o.jpg", "secret": "017cb265c8", "media": "photo", "latitude": "0", "id": "8408831256", "tags": "king martin dream parade mlk luther"}, {"datetaken": "2003-08-23 00:00:00", "license": "5", "title": "03.19a.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm6.staticflickr.com/5493/9505886810_0282da2fa7_o.jpg", "secret": "5b3ee6f7ab", "media": "photo", "latitude": "38.889429", "id": "9505886810", "tags": "2003 nationalmall lincolnmemorial august2003 blackvoicesforpeace damusmith nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:01", "license": "5", "title": "03.24.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm4.staticflickr.com/3668/9505886532_5d12fccaa6_o.jpg", "secret": "729138d820", "media": "photo", "latitude": "38.889429", "id": "9505886532", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:02", "license": "5", "title": "03.23.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm8.staticflickr.com/7371/9503088005_67ff138c38_o.jpg", "secret": "93f81fedc4", "media": "photo", "latitude": "38.889429", "id": "9503088005", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:03", "license": "5", "title": "03.22.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm6.staticflickr.com/5494/9503087437_702c5c614b_o.jpg", "secret": "b3517a328f", "media": "photo", "latitude": "38.889429", "id": "9503087437", "tags": "2003 nationalmall lincolnmemorial august2003 blackvoicesforpeace damusmith nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:04", "license": "5", "title": "03.21.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm6.staticflickr.com/5549/9503086821_1657e36d52_o.jpg", "secret": "dbec8de97f", "media": "photo", "latitude": "38.889429", "id": "9503086821", "tags": "2003 nationalmall lincolnmemorial august2003 blackvoicesforpeace damusmith nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:05", "license": "5", "title": "03.20.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm3.staticflickr.com/2832/9505883486_170eb9899c_o.jpg", "secret": "ca50816d85", "media": "photo", "latitude": "38.889429", "id": "9505883486", "tags": "2003 nationalmall lincolnmemorial august2003 blackvoicesforpeace damusmith nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:06", "license": "5", "title": "03.18a.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm8.staticflickr.com/7401/9505839578_60c88d15bf_o.jpg", "secret": "145ca306e4", "media": "photo", "latitude": "38.889429", "id": "9505839578", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:07", "license": "5", "title": "03.16a.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm3.staticflickr.com/2824/9505839326_17f1878b21_o.jpg", "secret": "2e2b3a7f63", "media": "photo", "latitude": "38.889429", "id": "9505839326", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:08", "license": "5", "title": "03.17.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm3.staticflickr.com/2877/9505838974_937cd9b93c_o.jpg", "secret": "0598dc67a9", "media": "photo", "latitude": "38.889429", "id": "9505838974", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:09", "license": "5", "title": "03.15.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm3.staticflickr.com/2828/9505838198_aaccede43c_o.jpg", "secret": "3b88c4c307", "media": "photo", "latitude": "38.889429", "id": "9505838198", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:10", "license": "5", "title": "03.14.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm4.staticflickr.com/3796/9505837674_23e606c18d_o.jpg", "secret": "3d30f24135", "media": "photo", "latitude": "38.889429", "id": "9505837674", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:11", "license": "5", "title": "03.13.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm8.staticflickr.com/7339/9505836976_d45d9fe531_o.jpg", "secret": "dc41511e92", "media": "photo", "latitude": "38.889429", "id": "9505836976", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:12", "license": "5", "title": "03.11a.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm8.staticflickr.com/7424/9502958633_582275b8c8_o.jpg", "secret": "99a5e6a862", "media": "photo", "latitude": "38.889429", "id": "9502958633", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:13", "license": "5", "title": "03.12.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm6.staticflickr.com/5468/9502958341_cba336e352_o.jpg", "secret": "c19a2cdd6a", "media": "photo", "latitude": "38.889429", "id": "9502958341", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:14", "license": "5", "title": "03.10.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm4.staticflickr.com/3673/9502957793_a4550aea07_o.jpg", "secret": "7007009a0c", "media": "photo", "latitude": "38.889429", "id": "9502957793", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:15", "license": "5", "title": "03.09.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm4.staticflickr.com/3715/9502956987_b76f1eff76_o.jpg", "secret": "273742ccec", "media": "photo", "latitude": "38.889429", "id": "9502956987", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:16", "license": "5", "title": "03.08.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm6.staticflickr.com/5508/9505752600_c06bc5702f_o.jpg", "secret": "1ce058bb85", "media": "photo", "latitude": "38.889429", "id": "9505752600", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:17", "license": "5", "title": "03.07.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm4.staticflickr.com/3808/9502954745_57c5c049c0_o.jpg", "secret": "bcc2e39a78", "media": "photo", "latitude": "38.889429", "id": "9502954745", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:18", "license": "5", "title": "03.04a.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm6.staticflickr.com/5455/9502904415_b88c8b2bf3_o.jpg", "secret": "58957044e2", "media": "photo", "latitude": "38.889429", "id": "9502904415", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:19", "license": "5", "title": "03.06.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm4.staticflickr.com/3759/9502904091_bd983b90ee_o.jpg", "secret": "73ac1f9567", "media": "photo", "latitude": "38.889429", "id": "9502904091", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:20", "license": "5", "title": "03.05.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm6.staticflickr.com/5448/9502903203_5ba843d99e_o.jpg", "secret": "e47d5786c2", "media": "photo", "latitude": "38.889429", "id": "9502903203", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:21", "license": "5", "title": "03.03.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm4.staticflickr.com/3700/9505699694_74ac4186f6_o.jpg", "secret": "51e3d15d49", "media": "photo", "latitude": "38.889429", "id": "9505699694", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:22", "license": "5", "title": "03.02.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm3.staticflickr.com/2831/9505698730_0f8ab23385_o.jpg", "secret": "968ef7d1e4", "media": "photo", "latitude": "38.889429", "id": "9505698730", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2003-08-23 00:00:23", "license": "5", "title": "03.01.MLK.MOW.WDC.23August2003", "text": "", "album_id": "72157635062356920", "longitude": "-77.048707", "url_o": "https://farm4.staticflickr.com/3693/9502884597_9eb8023768_o.jpg", "secret": "21117ed09d", "media": "photo", "latitude": "38.889429", "id": "9502884597", "tags": "2003 nationalmall lincolnmemorial august2003 nationalmallwashingtondc 40thanniversaryofthe1963civilrightsmarchonwashington lincolnmemorial2003 filmroll314saturday23august200340thanniversaryofmowdc 23august2003 nationalmall2003 nationalmallwdc2003 40thanniversaryofthe1963civilrightsmarchonwashington23august2003"}, {"datetaken": "2013-08-15 15:45:45", "license": "5", "title": "01.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm8.staticflickr.com/7356/9524831628_6cc99091a8_o.jpg", "secret": "39fe6f8a06", "media": "photo", "latitude": "38.898690", "id": "9524831628", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:45:57", "license": "5", "title": "02.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm8.staticflickr.com/7311/9524984332_7eb6460874_o.jpg", "secret": "c14b3e7799", "media": "photo", "latitude": "38.898690", "id": "9524984332", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:46:04", "license": "5", "title": "03.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm8.staticflickr.com/7299/9522207963_8ec0fdd2e9_o.jpg", "secret": "cbef95423b", "media": "photo", "latitude": "38.898690", "id": "9522207963", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:46:26", "license": "5", "title": "04a.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm8.staticflickr.com/7374/9522210997_8bab0c8d90_o.jpg", "secret": "5fb5685854", "media": "photo", "latitude": "38.898690", "id": "9522210997", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:46:35", "license": "5", "title": "05a.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm6.staticflickr.com/5494/9522212735_72f1c4fbff_o.jpg", "secret": "636366d631", "media": "photo", "latitude": "38.898690", "id": "9522212735", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:46:49", "license": "5", "title": "06.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm6.staticflickr.com/5492/9522219899_bec294b870_o.jpg", "secret": "9860545c73", "media": "photo", "latitude": "38.898690", "id": "9522219899", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:46:55", "license": "5", "title": "07a.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm8.staticflickr.com/7411/9522275309_4f80eb2ec1_o.jpg", "secret": "305ae5415e", "media": "photo", "latitude": "38.898690", "id": "9522275309", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:47:05", "license": "5", "title": "08.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm8.staticflickr.com/7282/9525066104_55fc47e3cc_o.jpg", "secret": "45ba3f4e00", "media": "photo", "latitude": "38.898690", "id": "9525066104", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:47:18", "license": "5", "title": "09a.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm8.staticflickr.com/7310/9522283655_765d688ac6_o.jpg", "secret": "abd1ecf280", "media": "photo", "latitude": "38.898690", "id": "9522283655", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:47:21", "license": "5", "title": "10a.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm6.staticflickr.com/5531/9525071302_0866ee602f_o.jpg", "secret": "bd0b5d3682", "media": "photo", "latitude": "38.898690", "id": "9525071302", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:47:26", "license": "5", "title": "11a.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm3.staticflickr.com/2817/9525075214_7a4380f745_o.jpg", "secret": "d2bc7d43ae", "media": "photo", "latitude": "38.898690", "id": "9525075214", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:47:41", "license": "5", "title": "12.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm6.staticflickr.com/5499/9522297429_2cc06ddc39_o.jpg", "secret": "fce304371d", "media": "photo", "latitude": "38.898690", "id": "9522297429", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:47:50", "license": "5", "title": "13a.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm6.staticflickr.com/5322/9522325387_455f5fcd7a_o.jpg", "secret": "eb2a94d7ee", "media": "photo", "latitude": "38.898690", "id": "9522325387", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:48:00", "license": "5", "title": "14.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm3.staticflickr.com/2823/9525118376_1ba2271b82_o.jpg", "secret": "a90e4877e6", "media": "photo", "latitude": "38.898690", "id": "9525118376", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:48:05", "license": "5", "title": "15.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm3.staticflickr.com/2879/9522340599_12375f4e8a_o.jpg", "secret": "6eafd74d89", "media": "photo", "latitude": "38.898690", "id": "9522340599", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:48:14", "license": "5", "title": "16.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm4.staticflickr.com/3788/9522347289_d22a383745_o.jpg", "secret": "3acae7ddfb", "media": "photo", "latitude": "38.898690", "id": "9522347289", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:48:21", "license": "5", "title": "17a.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm6.staticflickr.com/5459/9522349283_8259d64bb9_o.jpg", "secret": "5edefc116f", "media": "photo", "latitude": "38.898690", "id": "9522349283", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:48:37", "license": "5", "title": "18.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm8.staticflickr.com/7349/9525140378_c8b98f5315_o.jpg", "secret": "85a9e73389", "media": "photo", "latitude": "38.898690", "id": "9525140378", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:48:47", "license": "5", "title": "19.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm8.staticflickr.com/7415/9522373457_0b5f338a7a_o.jpg", "secret": "008184399a", "media": "photo", "latitude": "38.898690", "id": "9522373457", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:49:10", "license": "5", "title": "20a.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm4.staticflickr.com/3813/9525161014_ab4f2c9f4c_o.jpg", "secret": "9a0944e674", "media": "photo", "latitude": "38.898690", "id": "9525161014", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:49:40", "license": "5", "title": "21a.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm6.staticflickr.com/5508/9522378963_8eebfecfbc_o.jpg", "secret": "5d8ecfec9c", "media": "photo", "latitude": "38.898690", "id": "9522378963", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 15:49:51", "license": "5", "title": "22.LeonardFreed.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm4.staticflickr.com/3808/9522385185_9619f5b55c_o.jpg", "secret": "60d07dcee4", "media": "photo", "latitude": "38.898690", "id": "9522385185", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 16:02:31", "license": "5", "title": "01a.Programs.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm4.staticflickr.com/3738/9525603920_4543e94c01_o.jpg", "secret": "c812d097c7", "media": "photo", "latitude": "38.898690", "id": "9525603920", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits 50thanniversary1963mow2013projectmuseumexhibitsposters thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 16:02:43", "license": "5", "title": "02a.Programs.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm4.staticflickr.com/3701/9522853573_1256c40af8_o.jpg", "secret": "7749231bdd", "media": "photo", "latitude": "38.898690", "id": "9522853573", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits 50thanniversary1963mow2013projectmuseumexhibitsposters thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 16:02:49", "license": "5", "title": "03.Programs.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm4.staticflickr.com/3736/9522861129_2cd8bb5c9f_o.jpg", "secret": "4da13411a8", "media": "photo", "latitude": "38.898690", "id": "9522861129", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits 50thanniversary1963mow2013projectmuseumexhibitsposters thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 16:03:05", "license": "5", "title": "04.Programs.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm8.staticflickr.com/7424/9522867723_a3af8963b3_o.jpg", "secret": "87ab030825", "media": "photo", "latitude": "38.898690", "id": "9522867723", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits 50thanniversary1963mow2013projectmuseumexhibitsposters thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 16:03:21", "license": "5", "title": "06a.Programs.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm6.staticflickr.com/5505/9525655900_f3294f8903_o.jpg", "secret": "ae265b3210", "media": "photo", "latitude": "38.898690", "id": "9525655900", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits 50thanniversary1963mow2013projectmuseumexhibitsposters thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2013-08-15 16:03:27", "license": "5", "title": "07.Programs.63MOW.MLKJML.WDC.15August2013", "text": "", "album_id": "72157635093336633", "longitude": "-77.024931", "url_o": "https://farm8.staticflickr.com/7384/9525706138_b5e6ca3b12_o.jpg", "secret": "46ab08b983", "media": "photo", "latitude": "38.898690", "id": "9525706138", "tags": "washingtondc dc publiclibraries gstreet leonardfreed martinlutherkingjrmemoriallibrary 2013 dcpubliclibrary districtofcolumbiapubliclibrary northwestwashingtondc gstreetnwwashingtondc publicartinpublicspaces publicartinpublicspaceswashingtondc gstreet2013 publicartinpublicspaceswdc2013 publicartmartinlutherkingjrmemoriallibrary gstreetnwwdc2013 publicartinpublicspaces2013 50thanniversary1963mow2013project 50thanniversaryofaugust1963marchonwashingtonforjobsfreedom 50thanniversary1963mow2013projectmuseumexhibits 50thanniversary1963mow2013projectmuseumexhibitsposters thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreed thisisthedaythemarchonwashingtonphotoexhibitbyleonardfreedmartinlutherkingjrmemorialdcpubliclibraryaugust2013 thisisthedaythemarchonwashingtonbyleonardfreed"}, {"datetaken": "2014-01-17 05:27:41", "license": "5", "title": "2014.01.17 MLK and KPTotalHealth - Looking forward to a day of service 36457", "text": "", "album_id": "72157639865278703", "longitude": "-77.044213", "url_o": "https://farm4.staticflickr.com/3792/11996835583_1858f8ee93_o.jpg", "secret": "00c4c12e58", "media": "photo", "latitude": "38.886178", "id": "11996835583", "tags": "mlk equality martinlutherkingjunior dayofservice inclusion kaiserpermanente dt18250mmf3563 centerfortotalhealth"}, {"datetaken": "2014-01-17 05:27:56", "license": "5", "title": "2014.01.17 MLK and KPTotalHealth - Looking forward to a day of service 36459", "text": "", "album_id": "72157639865278703", "longitude": "-77.044213", "url_o": "https://farm4.staticflickr.com/3802/11996902904_b9e96697a9_o.jpg", "secret": "a493919766", "media": "photo", "latitude": "38.886178", "id": "11996902904", "tags": "mlk equality martinlutherkingjunior dayofservice inclusion kaiserpermanente dt18250mmf3563 centerfortotalhealth"}, {"datetaken": "2014-01-17 05:29:06", "license": "5", "title": "2014.01.17 MLK and KPTotalHealth - Looking forward to a day of service 36461", "text": "", "album_id": "72157639865278703", "longitude": "-77.044213", "url_o": "https://farm8.staticflickr.com/7408/11997355236_326d7e6d5f_o.jpg", "secret": "3d01754819", "media": "photo", "latitude": "38.886178", "id": "11997355236", "tags": "published dcist mlk equality martinlutherkingjunior dayofservice inclusion kaiserpermanente we3dc dt18250mmf3563 centerfortotalhealth"}, {"datetaken": "2014-01-17 05:29:44", "license": "5", "title": "2014.01.17 MLK and KPTotalHealth - Looking forward to a day of service 36463", "text": "", "album_id": "72157639865278703", "longitude": "-77.044213", "url_o": "https://farm4.staticflickr.com/3697/11997358316_7d84e559a3_o.jpg", "secret": "25043543bf", "media": "photo", "latitude": "38.886178", "id": "11997358316", "tags": "mlk equality martinlutherkingjunior dayofservice inclusion kaiserpermanente dt18250mmf3563 centerfortotalhealth"}, {"datetaken": "2014-01-17 05:51:43", "license": "5", "title": "2014.01.17 MLK and KPTotalHealth - Looking forward to a day of service 36464", "text": "", "album_id": "72157639865278703", "longitude": "-77.044213", "url_o": "https://farm6.staticflickr.com/5524/11997360306_767cfc1a2f_o.jpg", "secret": "61785148d3", "media": "photo", "latitude": "38.886178", "id": "11997360306", "tags": "mlk equality martinlutherkingjunior dayofservice inclusion kaiserpermanente dt18250mmf3563 centerfortotalhealth"}, {"datetaken": "2014-01-17 05:52:09", "license": "5", "title": "2014.01.17 MLK and KPTotalHealth - Looking forward to a day of service 36465", "text": "", "album_id": "72157639865278703", "longitude": "-77.044213", "url_o": "https://farm6.staticflickr.com/5473/11996847493_8bbbd80f1f_o.jpg", "secret": "dc4c1db084", "media": "photo", "latitude": "38.886178", "id": "11996847493", "tags": "mlk equality martinlutherkingjunior dayofservice inclusion kaiserpermanente dt18250mmf3563 centerfortotalhealth"}, {"datetaken": "2014-01-17 08:54:28", "license": "5", "title": "2014.01.17 MLK and KPTotalHealth - Looking forward to a day of service 36470", "text": "", "album_id": "72157639865278703", "longitude": "-77.044173", "url_o": "https://farm3.staticflickr.com/2836/11996849263_df10542b33_o.jpg", "secret": "02785ab6a5", "media": "photo", "latitude": "38.886251", "id": "11996849263", "tags": "mlk equality martinlutherkingjunior dayofservice inclusion kaiserpermanente dt18250mmf3563 centerfortotalhealth"}, {"datetaken": "2014-01-17 08:56:41", "license": "5", "title": "2014.01.17 MLK and KPTotalHealth - Looking forward to a day of service 36472", "text": "", "album_id": "72157639865278703", "longitude": "-77.044173", "url_o": "https://farm4.staticflickr.com/3823/11996561505_20902d19b4_o.jpg", "secret": "e248c5d9f3", "media": "photo", "latitude": "38.886111", "id": "11996561505", "tags": "mlk equality martinlutherkingjunior dayofservice inclusion kaiserpermanente dt18250mmf3563 centerfortotalhealth"}, {"datetaken": "2014-01-17 08:58:10", "license": "5", "title": "2014.01.17 MLK and KPTotalHealth - Looking forward to a day of service 36474", "text": "", "album_id": "72157639865278703", "longitude": "-77.044133", "url_o": "https://farm8.staticflickr.com/7295/11996853103_528b9a02eb_o.jpg", "secret": "5c318220fc", "media": "photo", "latitude": "38.886155", "id": "11996853103", "tags": "mlk equality martinlutherkingjunior dayofservice inclusion kaiserpermanente dt18250mmf3563 centerfortotalhealth"}, {"datetaken": "2014-01-17 08:59:40", "license": "5", "title": "2014.01.17 MLK and KPTotalHealth - Looking forward to a day of service 36476", "text": "", "album_id": "72157639865278703", "longitude": "-77.044155", "url_o": "https://farm8.staticflickr.com/7372/11996918544_82d71a71e2_o.jpg", "secret": "1aae4fa336", "media": "photo", "latitude": "38.886243", "id": "11996918544", "tags": "mlk equality martinlutherkingjunior dayofservice inclusion kaiserpermanente dt18250mmf3563 centerfortotalhealth"}, {"datetaken": "2014-01-17 08:59:59", "license": "5", "title": "2014.01.17 MLK and KPTotalHealth - Looking forward to a day of service 36477", "text": "", "album_id": "72157639865278703", "longitude": "-77.044133", "url_o": "https://farm4.staticflickr.com/3810/11996566825_26c14b6f8e_o.jpg", "secret": "38d2612996", "media": "photo", "latitude": "38.886266", "id": "11996566825", "tags": "mlk equality martinlutherkingjunior dayofservice inclusion kaiserpermanente dt18250mmf3563 centerfortotalhealth"}, {"datetaken": "2014-01-17 09:00:02", "license": "5", "title": "2014.01.17 MLK and KPTotalHealth - Looking forward to a day of service 36478", "text": "", "album_id": "72157639865278703", "longitude": "-77.044136", "url_o": "https://farm6.staticflickr.com/5522/11996858853_599478a2ac_o.jpg", "secret": "54650d8892", "media": "photo", "latitude": "38.886286", "id": "11996858853", "tags": "mlk equality martinlutherkingjunior dayofservice inclusion kaiserpermanente dt18250mmf3563 centerfortotalhealth"}, {"datetaken": "2014-01-17 09:00:14", "license": "5", "title": "2014.01.17 MLK and KPTotalHealth - Looking forward to a day of service 36480", "text": "", "album_id": "72157639865278703", "longitude": "-77.044136", "url_o": "https://farm4.staticflickr.com/3799/11997375526_b97f8838ca_o.jpg", "secret": "7a6c831f4c", "media": "photo", "latitude": "38.886325", "id": "11997375526", "tags": "mlk equality martinlutherkingjunior dayofservice inclusion kaiserpermanente dt18250mmf3563 centerfortotalhealth"}, {"datetaken": "2014-01-17 09:00:17", "license": "5", "title": "2014.01.17 MLK and KPTotalHealth - Looking forward to a day of service 36481", "text": "", "album_id": "72157639865278703", "longitude": "-77.044141", "url_o": "https://farm6.staticflickr.com/5538/11997379826_02f9e938d6_o.jpg", "secret": "24213261fa", "media": "photo", "latitude": "38.886311", "id": "11997379826", "tags": "mlk equality martinlutherkingjunior dayofservice inclusion kaiserpermanente dt18250mmf3563 centerfortotalhealth"}, {"datetaken": "2014-02-13 08:01:03", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3699/12501990373_f2779b012b_o.jpg", "secret": "4acae5b753", "media": "photo", "latitude": "0", "id": "12501990373", "tags": ""}, {"datetaken": "2014-02-13 08:01:03", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3747/12501990253_7ee199bd3e_o.jpg", "secret": "a7824e5dcb", "media": "photo", "latitude": "0", "id": "12501990253", "tags": ""}, {"datetaken": "2014-02-13 08:01:04", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3718/12501990773_85501f0121_o.jpg", "secret": "5306ff1b11", "media": "photo", "latitude": "0", "id": "12501990773", "tags": ""}, {"datetaken": "2014-02-13 08:01:04", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7377/12502338914_3e86c8c6f5_o.jpg", "secret": "65e05c55ac", "media": "photo", "latitude": "0", "id": "12502338914", "tags": ""}, {"datetaken": "2014-02-13 08:01:04", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7420/12501990533_fc25a9d903_o.jpg", "secret": "15933c928e", "media": "photo", "latitude": "0", "id": "12501990533", "tags": ""}, {"datetaken": "2014-02-13 08:01:05", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3682/12501859895_402039a967_o.jpg", "secret": "7369339dda", "media": "photo", "latitude": "0", "id": "12501859895", "tags": ""}, {"datetaken": "2014-02-13 08:01:05", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7321/12501859955_570be3b924_o.jpg", "secret": "bfa8ee43c0", "media": "photo", "latitude": "0", "id": "12501859955", "tags": ""}, {"datetaken": "2014-02-13 08:01:05", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2867/12502339184_24993a2139_o.jpg", "secret": "547d78a6e9", "media": "photo", "latitude": "0", "id": "12502339184", "tags": ""}, {"datetaken": "2014-02-13 08:01:05", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7459/12501991053_02ec0b8221_o.jpg", "secret": "365932c13d", "media": "photo", "latitude": "0", "id": "12501991053", "tags": ""}, {"datetaken": "2014-02-13 08:01:06", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2889/12502339434_4571d796b1_o.jpg", "secret": "ccf5132747", "media": "photo", "latitude": "0", "id": "12502339434", "tags": ""}, {"datetaken": "2014-02-13 08:01:07", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2893/12502339754_a1030fdf35_o.jpg", "secret": "ede4f84a5d", "media": "photo", "latitude": "0", "id": "12502339754", "tags": ""}, {"datetaken": "2014-02-13 08:01:07", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3692/12501991713_bbd976b7fe_o.jpg", "secret": "42e672eeb1", "media": "photo", "latitude": "0", "id": "12501991713", "tags": ""}, {"datetaken": "2014-02-13 08:01:07", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7389/12501860545_af8788bb0a_o.jpg", "secret": "c11a58d34d", "media": "photo", "latitude": "0", "id": "12501860545", "tags": ""}, {"datetaken": "2014-02-13 08:01:07", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3814/12501991503_d531a3f2b3_o.jpg", "secret": "fe37888970", "media": "photo", "latitude": "0", "id": "12501991503", "tags": ""}, {"datetaken": "2014-02-13 08:01:07", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3737/12502339614_52e4fae0b5_o.jpg", "secret": "ae13a3124e", "media": "photo", "latitude": "0", "id": "12502339614", "tags": ""}, {"datetaken": "2014-02-13 08:01:08", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3813/12502339814_6f5f178b9e_o.jpg", "secret": "8e24408420", "media": "photo", "latitude": "0", "id": "12502339814", "tags": ""}, {"datetaken": "2014-02-13 08:01:08", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7293/12502340124_5404fd3d8a_o.jpg", "secret": "b6f7702051", "media": "photo", "latitude": "0", "id": "12502340124", "tags": ""}, {"datetaken": "2014-02-13 08:01:08", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2861/12501860815_9b9f2d15a6_o.jpg", "secret": "52e3bf5c48", "media": "photo", "latitude": "0", "id": "12501860815", "tags": ""}, {"datetaken": "2014-02-13 08:01:08", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7328/12501991943_5dc6a41822_o.jpg", "secret": "e94e7c26df", "media": "photo", "latitude": "0", "id": "12501991943", "tags": ""}, {"datetaken": "2014-02-13 08:01:09", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5526/12502340174_74fc01ff32_o.jpg", "secret": "845dc9cd38", "media": "photo", "latitude": "0", "id": "12502340174", "tags": ""}, {"datetaken": "2014-02-13 08:01:09", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5506/12502340434_e7d6550209_o.jpg", "secret": "a021b1b245", "media": "photo", "latitude": "0", "id": "12502340434", "tags": ""}, {"datetaken": "2014-02-13 08:01:09", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7297/12502340384_c82f0a48ff_o.jpg", "secret": "70a4d6827a", "media": "photo", "latitude": "0", "id": "12502340384", "tags": ""}, {"datetaken": "2014-02-13 08:01:09", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2853/12502340334_8ee04bf956_o.jpg", "secret": "1f55ccaa6b", "media": "photo", "latitude": "0", "id": "12502340334", "tags": ""}, {"datetaken": "2014-02-13 08:01:10", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7436/12502340544_2c5af35ea2_o.jpg", "secret": "07672f9d8d", "media": "photo", "latitude": "0", "id": "12502340544", "tags": ""}, {"datetaken": "2014-02-13 08:01:10", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5510/12501861695_95d75d663d_o.jpg", "secret": "8932e6121d", "media": "photo", "latitude": "0", "id": "12501861695", "tags": ""}, {"datetaken": "2014-02-13 08:01:10", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5486/12502340634_02995f5991_o.jpg", "secret": "891ccf482c", "media": "photo", "latitude": "0", "id": "12502340634", "tags": ""}, {"datetaken": "2014-02-13 08:01:11", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2876/12501861935_1d898fef6a_o.jpg", "secret": "21bebae9a5", "media": "photo", "latitude": "0", "id": "12501861935", "tags": ""}, {"datetaken": "2014-02-13 08:01:11", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2844/12501992673_77bde835cb_o.jpg", "secret": "b7ed5ef174", "media": "photo", "latitude": "0", "id": "12501992673", "tags": ""}, {"datetaken": "2014-02-13 08:01:11", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5485/12502340814_f8e6d77254_o.jpg", "secret": "cf4df66b84", "media": "photo", "latitude": "0", "id": "12502340814", "tags": ""}, {"datetaken": "2014-02-13 08:01:12", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2876/12501993173_f95ab51bf3_o.jpg", "secret": "d1a241c863", "media": "photo", "latitude": "0", "id": "12501993173", "tags": ""}, {"datetaken": "2014-02-13 08:01:12", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5478/12501993103_766702465a_o.jpg", "secret": "b5001e614c", "media": "photo", "latitude": "0", "id": "12501993103", "tags": ""}, {"datetaken": "2014-02-13 08:01:12", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3718/12502341254_a2ecddd48e_o.jpg", "secret": "927a46a576", "media": "photo", "latitude": "0", "id": "12502341254", "tags": ""}, {"datetaken": "2014-02-13 08:01:13", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5516/12501993333_957be3cccf_o.jpg", "secret": "c9a003b1b8", "media": "photo", "latitude": "0", "id": "12501993333", "tags": ""}, {"datetaken": "2014-02-13 08:01:13", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3692/12501993283_e752df734a_o.jpg", "secret": "0fba1850a9", "media": "photo", "latitude": "0", "id": "12501993283", "tags": ""}, {"datetaken": "2014-02-13 08:01:13", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2811/12501993383_09b247bcd8_o.jpg", "secret": "54390915cf", "media": "photo", "latitude": "0", "id": "12501993383", "tags": ""}, {"datetaken": "2014-02-13 08:01:13", "license": "3", "title": "Dr. Martin Luther King Jr Day", "text": "", "album_id": "72157640925549645", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7376/12502341654_69caff8b08_o.jpg", "secret": "65a6dd88c6", "media": "photo", "latitude": "0", "id": "12502341654", "tags": ""}, {"datetaken": "2015-01-08 10:09:18", "license": "4", "title": "20150108-DM-RBN-4354", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7540/15612714863_bf04c80e53_o.jpg", "secret": "573ea239e1", "media": "photo", "latitude": "0", "id": "15612714863", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:10:30", "license": "4", "title": "20150108-DM-RBN-3245", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8565/15610170814_a45daec0e2_o.jpg", "secret": "2430b4179f", "media": "photo", "latitude": "0", "id": "15610170814", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:14:27", "license": "4", "title": "20150108-DM-RBN-4361", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7542/16046712657_da44def590_o.jpg", "secret": "b5827aa6f4", "media": "photo", "latitude": "0", "id": "16046712657", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:15:07", "license": "4", "title": "20150108-DM-RBN-4364", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7570/15610154464_26bc47c480_o.jpg", "secret": "6758c5daf1", "media": "photo", "latitude": "0", "id": "15610154464", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:19:19", "license": "4", "title": "20150108-DM-RBN-4374", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7509/15610154044_34b100cc65_o.jpg", "secret": "0f411ab621", "media": "photo", "latitude": "0", "id": "15610154044", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:21:37", "license": "4", "title": "20150108-DM-RBN-4380", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7513/16232560605_d1e4602577_o.jpg", "secret": "08c92b8a63", "media": "photo", "latitude": "0", "id": "16232560605", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:22:16", "license": "4", "title": "20150108-DM-RBN-4381", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8628/16046710817_20df1ab982_o.jpg", "secret": "96b5ff10c1", "media": "photo", "latitude": "0", "id": "16046710817", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:22:27", "license": "4", "title": "20150108-DM-RBN-4383", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7517/15612712673_c6e4f7e67b_o.jpg", "secret": "ecb1ef24f2", "media": "photo", "latitude": "0", "id": "15612712673", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:24:35", "license": "4", "title": "20150108-DM-RBN-4388", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8677/16230702051_3fc92eee94_o.jpg", "secret": "d63dd143fc", "media": "photo", "latitude": "0", "id": "16230702051", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:30:14", "license": "4", "title": "20150108-DM-RBN-4393", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7508/16230701371_1b81192036_o.jpg", "secret": "312e0c02a8", "media": "photo", "latitude": "0", "id": "16230701371", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:32:03", "license": "4", "title": "20150108-DM-RBN-4394", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7519/16045049758_6fbfb88c4d_o.jpg", "secret": "551fb4928d", "media": "photo", "latitude": "0", "id": "16045049758", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:34:07", "license": "4", "title": "20150108-DM-RBN-4401", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8570/16231745492_5855f5e7e9_o.jpg", "secret": "86efb2a2ae", "media": "photo", "latitude": "0", "id": "16231745492", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:39:54", "license": "4", "title": "20150108-DM-RBN-3248", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7499/16232575785_d26f38de57_o.jpg", "secret": "2c62e08e53", "media": "photo", "latitude": "0", "id": "16232575785", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:40:27", "license": "4", "title": "20150108-DM-RBN-3250", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8562/16045193810_6dc6b1c1f2_o.jpg", "secret": "41ff216573", "media": "photo", "latitude": "0", "id": "16045193810", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:41:54", "license": "4", "title": "20150108-DM-RBN-3253", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7489/16231760882_fa2249c9aa_o.jpg", "secret": "0f70a943ff", "media": "photo", "latitude": "0", "id": "16231760882", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:42:24", "license": "4", "title": "20150108-DM-RBN-3256", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8603/16206675906_68404146dd_o.jpg", "secret": "1c6b8e10ec", "media": "photo", "latitude": "0", "id": "16206675906", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:43:08", "license": "4", "title": "20150108-DM-RBN-3259", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7484/16232556755_8008e5f284_o.jpg", "secret": "f9bb33af26", "media": "photo", "latitude": "0", "id": "16232556755", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:43:10", "license": "4", "title": "20150108-DM-RBN-3260", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7522/16206675136_cff83b7b1e_o.jpg", "secret": "ac99db6e03", "media": "photo", "latitude": "0", "id": "16206675136", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:44:43", "license": "4", "title": "20150108-DM-RBN-3265", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8564/16046721797_8c01d93a59_o.jpg", "secret": "e7d8a86788", "media": "photo", "latitude": "0", "id": "16046721797", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:46:09", "license": "4", "title": "20150108-DM-RBN-3268", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7508/16045061378_f63b8aae2d_o.jpg", "secret": "7ea1920556", "media": "photo", "latitude": "0", "id": "16045061378", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:48:08", "license": "4", "title": "20150108-DM-RBN-3274", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7485/16045188000_d38c4e35d3_o.jpg", "secret": "373fa9e698", "media": "photo", "latitude": "0", "id": "16045188000", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:49:11", "license": "4", "title": "20150108-DM-RBN-3276", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8597/16045060118_9fe39f319c_o.jpg", "secret": "706c49bd8b", "media": "photo", "latitude": "0", "id": "16045060118", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:51:33", "license": "4", "title": "20150108-DM-RBN-3281", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7530/15610161074_0b68e4457b_o.jpg", "secret": "83558978cf", "media": "photo", "latitude": "0", "id": "15610161074", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:52:01", "license": "4", "title": "20150108-DM-RBN-3283", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7534/15610160074_95b9c4939a_o.jpg", "secret": "028b270762", "media": "photo", "latitude": "0", "id": "15610160074", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:53:36", "license": "4", "title": "20150108-DM-RBN-3288", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8629/16046457219_1686dc606c_o.jpg", "secret": "1cb0c57342", "media": "photo", "latitude": "0", "id": "16046457219", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:55:07", "license": "4", "title": "20150108-DM-RBN-3293", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7549/16046456669_05204644c1_o.jpg", "secret": "5ddb986469", "media": "photo", "latitude": "0", "id": "16046456669", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 10:56:32", "license": "4", "title": "20150108-DM-RBN-3301", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7579/16231752522_3db3b341ff_o.jpg", "secret": "17798234ff", "media": "photo", "latitude": "0", "id": "16231752522", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 11:01:09", "license": "4", "title": "20150108-DM-RBN-4407", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7569/16206659906_5cfe82ccd6_o.jpg", "secret": "7670eb79cb", "media": "photo", "latitude": "0", "id": "16206659906", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 11:02:30", "license": "4", "title": "20150108-DM-RBN-4409", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7554/16045047678_a73d9b9f6c_o.jpg", "secret": "d131cfcd79", "media": "photo", "latitude": "0", "id": "16045047678", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-08 11:15:51", "license": "4", "title": "20150108-DM-RBN-3323", "text": "", "album_id": "72157649780970810", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7499/16045182840_642319e83d_o.jpg", "secret": "b6eac8bda3", "media": "photo", "latitude": "0", "id": "16045182840", "tags": "dc washington unitedstates dm usda unitedstatesdepartmentofagriculture jrcelebration usdajeffersonauditorium departmentalmanagement 2015usdadrmartinlutherking"}, {"datetaken": "2015-01-19 13:24:03", "license": "5", "title": "DOA.BlockedTraffic1.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm9.staticflickr.com/8679/16323812651_c6238fc391_o.jpg", "secret": "4be4433e82", "media": "photo", "latitude": "38.899902", "id": "16323812651", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:24:03", "license": "5", "title": "DOA.BlockedTraffic2.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm9.staticflickr.com/8680/16324760412_65f62092c3_o.jpg", "secret": "313248ea67", "media": "photo", "latitude": "38.899902", "id": "16324760412", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:24:10", "license": "5", "title": "DOA.BlockedTraffic3.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm9.staticflickr.com/8648/16139419479_c89fd401b9_o.jpg", "secret": "63c965832b", "media": "photo", "latitude": "38.899902", "id": "16139419479", "tags": "washingtondc dc cops police wdc hstreet mpd 2015 mpdc antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc metropolitanpolicedepartmentofthedistrictofcolumbia elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown cops2015 police2015 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc cop2015 mpdc2015 coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:24:11", "license": "5", "title": "DOA.BlockedTraffic4.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm9.staticflickr.com/8584/15705715403_3d0f7c105f_o.jpg", "secret": "e4c698c074", "media": "photo", "latitude": "38.899902", "id": "15705715403", "tags": "washingtondc dc cops police wdc hstreet mpd 2015 mpdc antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc metropolitanpolicedepartmentofthedistrictofcolumbia elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown cops2015 police2015 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc cop2015 mpdc2015 coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:24:21", "license": "5", "title": "DOA.BlockedTraffic5.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm9.staticflickr.com/8667/16324758262_db2f87d415_o.jpg", "secret": "e2c51b5845", "media": "photo", "latitude": "38.899902", "id": "16324758262", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:24:27", "license": "5", "title": "DOA.BlockedTraffic6.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm9.staticflickr.com/8587/16325627765_773cf5c823_o.jpg", "secret": "328ea49899", "media": "photo", "latitude": "38.899902", "id": "16325627765", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:24:29", "license": "5", "title": "DOA.BlockedTraffic7.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm8.staticflickr.com/7537/16325626965_6e8d413a3a_o.jpg", "secret": "7c4c8f1263", "media": "photo", "latitude": "38.899902", "id": "16325626965", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:24:31", "license": "5", "title": "DOA.BlockedTraffic8.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm9.staticflickr.com/8604/16139450519_fa4b33f9ca_o.jpg", "secret": "521a98478b", "media": "photo", "latitude": "38.899902", "id": "16139450519", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:24:34", "license": "5", "title": "DOA.BlockedTraffic9.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm8.staticflickr.com/7572/15703232374_9ccf3aab40_o.jpg", "secret": "11951bf004", "media": "photo", "latitude": "38.899902", "id": "15703232374", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:24:55", "license": "5", "title": "DOA.BlockedTraffic10.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm9.staticflickr.com/8679/16138272760_8f64230b20_o.jpg", "secret": "7e39f5d2eb", "media": "photo", "latitude": "38.899902", "id": "16138272760", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:24:56", "license": "5", "title": "DOA.BlockedTraffic11.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm8.staticflickr.com/7522/16139448459_dbab8c8d60_o.jpg", "secret": "8b8553ff15", "media": "photo", "latitude": "38.899902", "id": "16139448459", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:25:22", "license": "5", "title": "DOA.BlockedTraffic12.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm8.staticflickr.com/7507/16299707026_e5a0196ed5_o.jpg", "secret": "4c9861b602", "media": "photo", "latitude": "38.899902", "id": "16299707026", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:25:24", "license": "5", "title": "DOA.BlockedTraffic13.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm8.staticflickr.com/7534/16299706266_2d4be7e2de_o.jpg", "secret": "4d4d3f3684", "media": "photo", "latitude": "38.899902", "id": "16299706266", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:25:25", "license": "5", "title": "DOA.BlockedTraffic14.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm8.staticflickr.com/7463/16325714705_fc0dd46541_o.jpg", "secret": "0378f1b712", "media": "photo", "latitude": "38.899902", "id": "16325714705", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:25:31", "license": "5", "title": "DOA.BlockedTraffic15.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm9.staticflickr.com/8580/15703287804_4199cd5fe6_o.jpg", "secret": "93913bf5ec", "media": "photo", "latitude": "38.899902", "id": "15703287804", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:25:37", "license": "5", "title": "DOA.BlockedTraffic16.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm8.staticflickr.com/7501/16299762896_0ae9a71843_o.jpg", "secret": "31d3255f56", "media": "photo", "latitude": "38.899902", "id": "16299762896", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:25:38", "license": "5", "title": "DOA.BlockedTraffic17.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm9.staticflickr.com/8568/15705796653_02e46c0c4b_o.jpg", "secret": "69f81c2e00", "media": "photo", "latitude": "38.899902", "id": "15705796653", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:26:01", "license": "5", "title": "DOA.BlockedTraffic18.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm8.staticflickr.com/7495/16325024452_96f547ae17_o.jpg", "secret": "665e58a24c", "media": "photo", "latitude": "38.899902", "id": "16325024452", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:26:15", "license": "5", "title": "DOA.BlockedTraffic19.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm8.staticflickr.com/7503/16139823507_153585e629_o.jpg", "secret": "67a2a30314", "media": "photo", "latitude": "38.899902", "id": "16139823507", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:26:16", "license": "5", "title": "DOA.BlockedTraffic20.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm8.staticflickr.com/7525/16138325500_cfcd75e974_o.jpg", "secret": "88697d755d", "media": "photo", "latitude": "38.899902", "id": "16138325500", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:26:19", "license": "5", "title": "DOA.BlockedTraffic21.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm8.staticflickr.com/7565/16138245078_60fef6ba57_o.jpg", "secret": "17a89c39c8", "media": "photo", "latitude": "38.899902", "id": "16138245078", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:26:32", "license": "5", "title": "DOA.BlockedTraffic22.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm8.staticflickr.com/7461/16324016301_dbde33a55c_o.jpg", "secret": "47ae598091", "media": "photo", "latitude": "38.899902", "id": "16324016301", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:26:33", "license": "5", "title": "DOA.BlockedTraffic23.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm8.staticflickr.com/7462/16139601579_12d3176fed_o.jpg", "secret": "d1c680074f", "media": "photo", "latitude": "38.899902", "id": "16139601579", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:26:38", "license": "5", "title": "DOA.BlockedTraffic24.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm9.staticflickr.com/8574/16138243158_243013ea0e_o.jpg", "secret": "2431d50137", "media": "photo", "latitude": "38.899902", "id": "16138243158", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:26:39", "license": "5", "title": "DOA.BlockedTraffic25.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm9.staticflickr.com/8569/16138242318_5c5bebf59a_o.jpg", "secret": "f1da8c7f33", "media": "photo", "latitude": "38.899902", "id": "16138242318", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:26:56", "license": "5", "title": "DOA.BlockedTraffic26.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm8.staticflickr.com/7488/16324937502_b741079ed5_o.jpg", "secret": "0a3b3febe5", "media": "photo", "latitude": "38.899902", "id": "16324937502", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:26:57", "license": "5", "title": "DOA.BlockedTraffic27.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm8.staticflickr.com/7553/16139992337_69e334638a_o.jpg", "secret": "0bb769b448", "media": "photo", "latitude": "38.899902", "id": "16139992337", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:27:04", "license": "5", "title": "DOA.BlockedTraffic28.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm9.staticflickr.com/8606/16325010702_d8a2e45b39_o.jpg", "secret": "294fb102f9", "media": "photo", "latitude": "38.899902", "id": "16325010702", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-19 13:27:05", "license": "5", "title": "DOA.BlockedTraffic29.12H.NW.WDC.19January2015", "text": "", "album_id": "72157650396531315", "longitude": "-77.028109", "url_o": "https://farm8.staticflickr.com/7495/16139669679_838c163206_o.jpg", "secret": "2df88662d5", "media": "photo", "latitude": "38.899902", "id": "16139669679", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 2015mlkdayofactionmarchtochinatownblockedtraffic12thandhstreetnwdc monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015"}, {"datetaken": "2015-01-18 23:35:38", "license": "1", "title": "IMG_3340", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8620/16318422551_9c750257cc_o.jpg", "secret": "6c480481f6", "media": "photo", "latitude": "0", "id": "16318422551", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-18 23:36:22", "license": "1", "title": "IMG_3344", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7466/16318775982_d5f40af6e4_o.jpg", "secret": "22a5b91bb9", "media": "photo", "latitude": "0", "id": "16318775982", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-18 23:39:06", "license": "1", "title": "IMG_3345", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7537/16318781062_9d7a1bcc27_o.jpg", "secret": "a987be4fc6", "media": "photo", "latitude": "0", "id": "16318781062", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-18 23:40:08", "license": "1", "title": "IMG_3348", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8612/16132273150_565b61d691_o.jpg", "secret": "5b3520fe21", "media": "photo", "latitude": "0", "id": "16132273150", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-18 23:41:20", "license": "1", "title": "IMG_3349", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7487/16319347132_69914e8ef1_o.jpg", "secret": "46ddce0881", "media": "photo", "latitude": "0", "id": "16319347132", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-18 23:43:03", "license": "1", "title": "IMG_3354", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7550/16319672875_7c2177a3f8_o.jpg", "secret": "7ddf9bd18f", "media": "photo", "latitude": "0", "id": "16319672875", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-18 23:46:04", "license": "1", "title": "IMG_3362", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7463/15697258894_90129d4092_o.jpg", "secret": "bc185ee97d", "media": "photo", "latitude": "0", "id": "15697258894", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-18 23:46:35", "license": "1", "title": "IMG_3364", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7500/16319689465_318b40436c_o.jpg", "secret": "214cdfd075", "media": "photo", "latitude": "0", "id": "16319689465", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-18 23:48:25", "license": "1", "title": "IMG_3368", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7475/16319826885_3503d5d633_o.jpg", "secret": "cf54237e98", "media": "photo", "latitude": "0", "id": "16319826885", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-18 23:49:35", "license": "1", "title": "IMG_3372", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7574/15697397564_13cff04af1_o.jpg", "secret": "533f446ddf", "media": "photo", "latitude": "0", "id": "15697397564", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-18 23:52:48", "license": "1", "title": "IMG_3378", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7497/16319100992_8c20242048_o.jpg", "secret": "6f2cf63200", "media": "photo", "latitude": "0", "id": "16319100992", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:03:33", "license": "1", "title": "IMG_3400", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7498/16132465830_17555574c7_o.jpg", "secret": "568dfcb0c0", "media": "photo", "latitude": "0", "id": "16132465830", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:05:18", "license": "1", "title": "IMG_3402", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7484/16319853355_b95b9d5d93_o.jpg", "secret": "49520ab8a4", "media": "photo", "latitude": "0", "id": "16319853355", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:07:38", "license": "1", "title": "IMG_3405", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7482/16318407221_f3b3263d4f_o.jpg", "secret": "9c4e186baa", "media": "photo", "latitude": "0", "id": "16318407221", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:10:40", "license": "1", "title": "IMG_3412", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8646/16319985325_7d602bd71c_o.jpg", "secret": "38400c2554", "media": "photo", "latitude": "0", "id": "16319985325", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:11:23", "license": "1", "title": "IMG_3413", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7528/15697768004_345d7e83cb_o.jpg", "secret": "ece531d69b", "media": "photo", "latitude": "0", "id": "15697768004", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:20:43", "license": "1", "title": "IMG_3430", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8611/16132319398_13a592a7a8_o.jpg", "secret": "274ceb19e6", "media": "photo", "latitude": "0", "id": "16132319398", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:21:15", "license": "1", "title": "IMG_3432", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7531/16133924439_87159522f5_o.jpg", "secret": "a1660084be", "media": "photo", "latitude": "0", "id": "16133924439", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:35:48", "license": "1", "title": "IMG_3441", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7512/16318092601_4336464832_o.jpg", "secret": "04bde8de3b", "media": "photo", "latitude": "0", "id": "16318092601", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:37:07", "license": "1", "title": "IMG_3447", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7467/15700001723_30e0438e00_o.jpg", "secret": "0b8811048d", "media": "photo", "latitude": "0", "id": "15700001723", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:38:21", "license": "1", "title": "IMG_3453", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7497/16134271087_ed83585219_o.jpg", "secret": "d2c5e195ca", "media": "photo", "latitude": "0", "id": "16134271087", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:39:02", "license": "1", "title": "IMG_3456", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7511/16133705199_7a46ae0392_o.jpg", "secret": "c0ede52189", "media": "photo", "latitude": "0", "id": "16133705199", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:41:45", "license": "1", "title": "IMG_3462", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7566/16318116881_82453b3db6_o.jpg", "secret": "ac51a8a782", "media": "photo", "latitude": "0", "id": "16318116881", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:42:22", "license": "1", "title": "IMG_3466", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7582/16318120441_aeb60c0db7_o.jpg", "secret": "c58d58f262", "media": "photo", "latitude": "0", "id": "16318120441", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:42:52", "license": "1", "title": "IMG_3468", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8592/16133720929_03a4db611f_o.jpg", "secret": "81c197e6c4", "media": "photo", "latitude": "0", "id": "16133720929", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:43:16", "license": "1", "title": "IMG_3470", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7552/15700030913_91ab30c2b9_o.jpg", "secret": "6f3894d5a7", "media": "photo", "latitude": "0", "id": "15700030913", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:46:00", "license": "1", "title": "IMG_3482", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7581/16319936785_1c6365b6c9_o.jpg", "secret": "7b72b8b1f2", "media": "photo", "latitude": "0", "id": "16319936785", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:47:58", "license": "1", "title": "IMG_3489", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7461/16294204476_163f68774a_o.jpg", "secret": "6011f3c002", "media": "photo", "latitude": "0", "id": "16294204476", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 00:48:09", "license": "1", "title": "IMG_3490", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7582/16134084747_fda0428e93_o.jpg", "secret": "45cfeaf412", "media": "photo", "latitude": "0", "id": "16134084747", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 13:05:36", "license": "1", "title": "IMG_1550", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7519/15700585153_dd9cbdeda8_o.jpg", "secret": "585222f993", "media": "photo", "latitude": "0", "id": "15700585153", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 13:05:43", "license": "1", "title": "IMG_1551", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7522/16318686401_88b5f56c55_o.jpg", "secret": "34ca341e7d", "media": "photo", "latitude": "0", "id": "16318686401", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 13:35:40", "license": "1", "title": "Image", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7492/16133298610_7b1cb7b22b_o.jpg", "secret": "dd06411032", "media": "photo", "latitude": "0", "id": "16133298610", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 13:35:58", "license": "1", "title": "Image 2", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8626/16133300790_28bd964840_o.jpg", "secret": "1af0d80f64", "media": "photo", "latitude": "0", "id": "16133300790", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 16:04:37", "license": "1", "title": "IMG_1547", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7480/16294525816_333ec032b1_o.jpg", "secret": "44cd95a398", "media": "photo", "latitude": "0", "id": "16294525816", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 16:05:17", "license": "1", "title": "IMG_1548", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7506/16133082330_8393c25ac1_o.jpg", "secret": "f0a0fa1ae8", "media": "photo", "latitude": "0", "id": "16133082330", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 16:35:49", "license": "1", "title": "Image 1", "text": "", "album_id": "72157650366560532", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7546/15698264314_e227b134fc_o.jpg", "secret": "db91fa7e47", "media": "photo", "latitude": "0", "id": "15698264314", "tags": "martinlutherkingjr ferrum ferrumcollege ferrumva ferrumpanthers"}, {"datetaken": "2015-01-19 13:35:08", "license": "5", "title": "DOA.MarchToChinatown33.WDC.19January2015", "text": "", "album_id": "72157650387632771", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7525/16326641792_6ed6f4060b_o.jpg", "secret": "e18837af51", "media": "photo", "latitude": "0", "id": "16326641792", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015 2015mlkdayofactionmarchtochinatownonbetween7thand9thstreet"}, {"datetaken": "2015-01-19 13:35:18", "license": "5", "title": "DOA.MarchToChinatown34.WDC.19January2015", "text": "", "album_id": "72157650387632771", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8638/16326679292_a896079763_o.jpg", "secret": "c6d1b1778c", "media": "photo", "latitude": "0", "id": "16326679292", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015 2015mlkdayofactionmarchtochinatownonbetween7thand9thstreet"}, {"datetaken": "2015-01-19 13:35:21", "license": "5", "title": "DOA.MarchToChinatown35.WDC.19January2015", "text": "", "album_id": "72157650387632771", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7571/16327543555_777afb5d9c_o.jpg", "secret": "ed8d352ef1", "media": "photo", "latitude": "0", "id": "16327543555", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015 2015mlkdayofactionmarchtochinatownonbetween7thand9thstreet"}, {"datetaken": "2015-01-19 13:35:22", "license": "5", "title": "DOA.MarchToChinatown36.WDC.19January2015", "text": "", "album_id": "72157650387632771", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7464/15705109194_f0d457b2bc_o.jpg", "secret": "19b198aa64", "media": "photo", "latitude": "0", "id": "15705109194", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015 2015mlkdayofactionmarchtochinatownonbetween7thand9thstreet"}, {"datetaken": "2015-01-19 13:35:39", "license": "5", "title": "DOA.MarchToChinatown37.WDC.19January2015", "text": "", "album_id": "72157650387632771", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7471/16327542235_82e0f7d764_o.jpg", "secret": "4660bd3f73", "media": "photo", "latitude": "0", "id": "16327542235", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015 2015mlkdayofactionmarchtochinatownonbetween7thand9thstreet"}, {"datetaken": "2015-01-19 13:35:49", "license": "5", "title": "DOA.MarchToChinatown38.WDC.19January2015", "text": "", "album_id": "72157650387632771", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7545/16140156360_1cb48f0564_o.jpg", "secret": "cc854979e8", "media": "photo", "latitude": "0", "id": "16140156360", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015 2015mlkdayofactionmarchtochinatownonbetween7thand9thstreet"}, {"datetaken": "2015-01-19 13:36:02", "license": "5", "title": "DOA.MarchToChinatown39.WDC.19January2015", "text": "", "album_id": "72157650387632771", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8632/16139972608_fe3c63e786_o.jpg", "secret": "e43767e8ff", "media": "photo", "latitude": "0", "id": "16139972608", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015 2015mlkdayofactionmarchtochinatownonbetween7thand9thstreet"}, {"datetaken": "2015-01-19 13:36:27", "license": "5", "title": "DOA.MarchToChinatown40.WDC.19January2015", "text": "", "album_id": "72157650387632771", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7516/16140010998_baa3339df1_o.jpg", "secret": "608f6b63a5", "media": "photo", "latitude": "0", "id": "16140010998", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015 2015mlkdayofactionmarchtochinatownonbetween7thand9thstreet"}, {"datetaken": "2015-01-19 13:36:43", "license": "5", "title": "DOA.MarchToChinatown41.WDC.19January2015", "text": "", "album_id": "72157650387632771", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8573/16140010448_e0e825c79c_o.jpg", "secret": "e4f857a660", "media": "photo", "latitude": "0", "id": "16140010448", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015 2015mlkdayofactionmarchtochinatownonbetween7thand9thstreet"}, {"datetaken": "2015-01-19 13:36:53", "license": "5", "title": "DOA.MarchToChinatown42.WDC.19January2015", "text": "", "album_id": "72157650387632771", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7514/15707662793_6912cebf12_o.jpg", "secret": "8592f729dd", "media": "photo", "latitude": "0", "id": "15707662793", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015 2015mlkdayofactionmarchtochinatownonbetween7thand9thstreet"}, {"datetaken": "2015-01-19 13:36:56", "license": "5", "title": "DOA.MarchToChinatown43.WDC.19January2015", "text": "", "album_id": "72157650387632771", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8605/15705143184_89bf3c26d8_o.jpg", "secret": "b8e58bfc6d", "media": "photo", "latitude": "0", "id": "15705143184", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015 2015mlkdayofactionmarchtochinatownonbetween7thand9thstreet"}, {"datetaken": "2015-01-19 13:36:57", "license": "5", "title": "DOA.MarchToChinatown44.WDC.19January2015", "text": "", "album_id": "72157650387632771", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7572/15705142164_ff875d41db_o.jpg", "secret": "242777dd6f", "media": "photo", "latitude": "0", "id": "15705142164", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015 2015mlkdayofactionmarchtochinatownonbetween7thand9thstreet"}, {"datetaken": "2015-01-19 13:37:08", "license": "5", "title": "DOA.MarchToChinatown45.WDC.19January2015", "text": "", "album_id": "72157650387632771", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8595/16141365699_b331652ec3_o.jpg", "secret": "f21cc4b07f", "media": "photo", "latitude": "0", "id": "16141365699", "tags": "washingtondc dc wdc hstreet 2015 antipolicebrutality protestphotography martinlutherkingjrday northwestwashingtondc hstreetnwwashingtondc elvertbarnesprotestphotography january2015 protestphotography2015 mlkday2015washingtondc monday19january2015mlkdayofactionresistanceempowermentdaremarchfromwhitehousetochinatown 19january2015 martinlutherkingjrday2015 hstreetnwwdc2015 monday19january2015capvmlkdayofactionwashingtondc monday19january2015mlkdayofactionresistanceempowermentdarewashingtondc coalitionagainstpoliceviolence hstreet2015 2015mlkdayofactionmarchtochinatownonbetween7thand9thstreet"}, {"datetaken": "2005-07-08 16:01:01", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24566700_79700cfb0a_o.jpg", "secret": "79700cfb0a", "media": "photo", "latitude": "0", "id": "24566700", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings media tv television cnn bbc itv circus 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:01:32", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24565089_d853612405_o.jpg", "secret": "d853612405", "media": "photo", "latitude": "0", "id": "24565089", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings media tv television cnn bbc itv circus 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury topv333"}, {"datetaken": "2005-07-08 16:02:08", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24568574_d74507d69f_o.jpg", "secret": "d74507d69f", "media": "photo", "latitude": "0", "id": "24568574", "tags": "circus july7 television unionjack tv terrorist terrorism terror media londres londonbombblasts londonbombblast london kingscross itv cnn bombs bombings bombing blasts blast bbc aftermath beckyanderson 77 topv333 londonbombings explosions londonbomb england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:02:26", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24567525_8cab9befe2_o.jpg", "secret": "8cab9befe2", "media": "photo", "latitude": "0", "id": "24567525", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings media tv television cnn bbc itv circus 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:04:21", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24568258_f9afec8e8a_o.jpg", "secret": "f9afec8e8a", "media": "photo", "latitude": "0", "id": "24568258", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:04:52", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24565591_503116658b_o.jpg", "secret": "503116658b", "media": "photo", "latitude": "0", "id": "24565591", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings media tv television cnn bbc itv circus 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:05:18", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24569025_ffed6720ad_o.jpg", "secret": "ffed6720ad", "media": "photo", "latitude": "0", "id": "24569025", "tags": "circus july7 television unionjack tv terrorist terrorism terror media londres londonbombblasts londonbombblast london kingscross itv cnn bombs bombings bombing blasts blast bbc aftermath 77 topv333 londonbombings explosions londonbomb england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:06:27", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24568181_564cf9e9e0_o.jpg", "secret": "564cf9e9e0", "media": "photo", "latitude": "0", "id": "24568181", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings mourning flowers memorial 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury topv555"}, {"datetaken": "2005-07-08 16:06:39", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24566387_a31a219388_o.jpg", "secret": "a31a219388", "media": "photo", "latitude": "0", "id": "24566387", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings media tv television cnn bbc itv circus 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:07:39", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24567275_522564c807_o.jpg", "secret": "522564c807", "media": "photo", "latitude": "0", "id": "24567275", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings media tv television cnn bbc itv circus 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:08:14", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24566150_56a72d2bbc_o.jpg", "secret": "56a72d2bbc", "media": "photo", "latitude": "0", "id": "24566150", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings media tv television cnn bbc itv circus beckyanderson 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:08:21", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24568011_eb6220b913_o.jpg", "secret": "eb6220b913", "media": "photo", "latitude": "0", "id": "24568011", "tags": "beckyanderson kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings media tv television cnn bbc itv circus 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:08:28", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24568407_5d6404278c_o.jpg", "secret": "5d6404278c", "media": "photo", "latitude": "0", "id": "24568407", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings media tv television cnn bbc itv circus beckyanderson 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:08:47", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24566940_3d48d1dbac_o.jpg", "secret": "3d48d1dbac", "media": "photo", "latitude": "0", "id": "24566940", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings media tv television cnn bbc itv circus 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:09:47", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24568818_d974729296_o.jpg", "secret": "d974729296", "media": "photo", "latitude": "0", "id": "24568818", "tags": "circus july7 television unionjack tv terrorist terrorism terror media londres londonbombblasts londonbombblast london kingscross itv cnn bombs bombings bombing blasts blast bbc aftermath police 77 topv111 londonbombings explosions londonbomb england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:10:21", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24564653_5237441479_o.jpg", "secret": "5237441479", "media": "photo", "latitude": "0", "id": "24564653", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings media tv television cnn bbc itv circus 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:10:26", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24564953_d850ce3ab6_o.jpg", "secret": "d850ce3ab6", "media": "photo", "latitude": "0", "id": "24564953", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings media tv television cnn bbc itv circus 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:10:51", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24569233_f915aa4f12_o.jpg", "secret": "f915aa4f12", "media": "photo", "latitude": "0", "id": "24569233", "tags": "circus july7 television unionjack tv terrorist terrorism terror media londres londonbombblasts londonbombblast london kingscross itv cnn bombs bombings bombing blasts blast bbc aftermath 77 topv111 londonbombings explosions londonbomb england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:11:02", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24565843_2c44418fb9_o.jpg", "secret": "2c44418fb9", "media": "photo", "latitude": "0", "id": "24565843", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings media tv television cnn bbc itv circus beckyanderson 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:11:05", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24564310_23a6b27a0b_o.jpg", "secret": "23a6b27a0b", "media": "photo", "latitude": "0", "id": "24564310", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings media tv television cnn bbc itv circus 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury topv333"}, {"datetaken": "2005-07-08 16:11:36", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24564865_7a99a14d8b_o.jpg", "secret": "7a99a14d8b", "media": "photo", "latitude": "0", "id": "24564865", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings media tv television cnn bbc itv circus 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:11:48", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24565373_88cf3dbbfd_o.jpg", "secret": "88cf3dbbfd", "media": "photo", "latitude": "0", "id": "24565373", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings media tv television cnn bbc itv circus 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-07-08 16:16:22", "license": "6", "title": "King's Cross, day 2", "text": "", "album_id": "561620", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24565206_4c20645ee8_o.jpg", "secret": "4c20645ee8", "media": "photo", "latitude": "0", "id": "24565206", "tags": "kingscross london bombs londonbombblasts bombings londonbombblast bombing terrorism blasts blast terrorist aftermath terror londres unionjack kings media tv television cnn bbc itv circus usatoday 77 topv111 londonbombings explosions londonbomb july7 england unitedkingdom greatbritain europe attentat storbrittanien tube tunnelbana ubahn londra bloomsbury"}, {"datetaken": "2005-11-28 17:23:06", "license": "4", "title": "Only 25 More Days Till Christmas", "text": "", "album_id": "1476996", "longitude": "-74.010128", "url_o": "https://farm1.staticflickr.com/20/68472933_5910f881cd_o.jpg", "secret": "5910f881cd", "media": "photo", "latitude": "40.226580", "id": "68472933", "tags": "daystillchristmas riggingupthelights asburypark nj 2005 publicworkscrew decorations treelighting thousandsoflightbulbs carefulupthere firetruck ladder monmouthcountynj christmastree christmastreedecorating bigjob publicworksguys"}, {"datetaken": "2005-11-28 17:23:28", "license": "4", "title": "Only 25 More Days Till Christmas", "text": "", "album_id": "1476996", "longitude": "-74.010128", "url_o": "https://farm1.staticflickr.com/35/68472934_b75ba098d4_o.jpg", "secret": "b75ba098d4", "media": "photo", "latitude": "40.226580", "id": "68472934", "tags": "daystillchristmas riggingupthelights asburypark nj 2005 publicworkscrew decorations treelighting thousandsoflightbulbs carefulupthere firetruck ladder monmouthcountynj christmastree christmastreedecorating bigjob publicworksguys"}, {"datetaken": "2005-11-28 17:25:17", "license": "4", "title": "Only 25 More Days Till Christmas", "text": "", "album_id": "1476996", "longitude": "-74.010128", "url_o": "https://farm1.staticflickr.com/35/68472935_d4ed5f0876_o.jpg", "secret": "d4ed5f0876", "media": "photo", "latitude": "40.226580", "id": "68472935", "tags": "daystillchristmas riggingupthelights asburypark nj 2005 publicworkscrew decorations treelighting thousandsoflightbulbs carefulupthere firetruck ladder monmouthcountynj christmastree christmastreedecorating bigjob publicworksguys"}, {"datetaken": "2005-11-28 17:25:41", "license": "4", "title": "Only 25 More Days Till Christmas", "text": "", "album_id": "1476996", "longitude": "-74.010128", "url_o": "https://farm1.staticflickr.com/35/68472936_c813531a9b_o.jpg", "secret": "c813531a9b", "media": "photo", "latitude": "40.226580", "id": "68472936", "tags": "daystillchristmas riggingupthelights asburypark nj 2005 publicworkscrew decorations treelighting thousandsoflightbulbs carefulupthere firetruck ladder monmouthcountynj christmastree christmastreedecorating bigjob publicworksguys"}, {"datetaken": "2005-11-28 17:26:56", "license": "4", "title": "Only 25 More Days Till Christmas", "text": "", "album_id": "1476996", "longitude": "-74.010128", "url_o": "https://farm1.staticflickr.com/20/68472937_55c5069a4a_o.jpg", "secret": "55c5069a4a", "media": "photo", "latitude": "40.226580", "id": "68472937", "tags": "daystillchristmas riggingupthelights asburypark nj 2005 publicworkscrew decorations treelighting thousandsoflightbulbs carefulupthere firetruck ladder monmouthcountynj christmastree christmastreedecorating bigjob publicworksguys"}, {"datetaken": "2005-11-28 17:28:23", "license": "4", "title": "Only 25 More Days Till Christmas!", "text": "", "album_id": "1476996", "longitude": "-74.010128", "url_o": "https://farm1.staticflickr.com/15/68475473_4d2ee5ac58_o.jpg", "secret": "4d2ee5ac58", "media": "photo", "latitude": "40.226580", "id": "68475473", "tags": "daystillchristmas riggingupthelights asburypark nj christmastreelighting publicworksguys bigjob decorating christmastreet sunsetandmain ladder wayupthere 2005 sister72"}, {"datetaken": "2005-11-28 17:28:35", "license": "4", "title": "Only 25 More Days Till Christmas!", "text": "", "album_id": "1476996", "longitude": "-74.010300", "url_o": "https://farm1.staticflickr.com/6/68475474_d645d30e1a_o.jpg", "secret": "d645d30e1a", "media": "photo", "latitude": "40.226252", "id": "68475474", "tags": "daystillchristmas riggingupthelights asburypark nj christmastreelighting publicworksguys bigjob decorating christmastreet sunsetandmain ladder wayupthere 2005 sister72"}, {"datetaken": "2005-11-28 17:30:20", "license": "4", "title": "Only 25 More Days Till Christmas!", "text": "", "album_id": "1476996", "longitude": "-74.010300", "url_o": "https://farm1.staticflickr.com/35/68475475_c7e3733c5f_o.jpg", "secret": "c7e3733c5f", "media": "photo", "latitude": "40.226252", "id": "68475475", "tags": "daystillchristmas riggingupthelights asburypark nj christmastreelighting publicworksguys bigjob decorating christmastreet sunsetandmain ladder wayupthere 2005 sister72"}, {"datetaken": "2005-11-28 17:30:32", "license": "4", "title": "Only 25 More Days Till Christmas!", "text": "", "album_id": "1476996", "longitude": "-74.010300", "url_o": "https://farm1.staticflickr.com/34/68475477_7326caa8d2_o.jpg", "secret": "7326caa8d2", "media": "photo", "latitude": "40.226252", "id": "68475477", "tags": "daystillchristmas riggingupthelights asburypark nj christmastreelighting publicworksguys bigjob decorating christmastreet sunsetandmain ladder wayupthere 2005 sister72"}, {"datetaken": "2005-11-28 17:30:53", "license": "4", "title": "Only 25 More Days Till Christmas!", "text": "", "album_id": "1476996", "longitude": "-74.010300", "url_o": "https://farm1.staticflickr.com/20/68475479_ffc7964abb_o.jpg", "secret": "ffc7964abb", "media": "photo", "latitude": "40.226252", "id": "68475479", "tags": "daystillchristmas riggingupthelights asburypark nj christmastreelighting publicworksguys bigjob decorating christmastreet sunsetandmain ladder wayupthere 2005 sister72"}, {"datetaken": "2005-11-28 17:32:10", "license": "4", "title": "Only 25 More Days Till Christmas!", "text": "", "album_id": "1476996", "longitude": "-74.010300", "url_o": "https://farm1.staticflickr.com/18/68475482_2b5b9665d4_o.jpg", "secret": "2b5b9665d4", "media": "photo", "latitude": "40.226252", "id": "68475482", "tags": "daystillchristmas riggingupthelights asburypark nj christmastreelighting publicworksguys bigjob decorating christmastreet sunsetandmain ladder wayupthere 2005 sister72"}, {"datetaken": "2005-11-28 18:25:24", "license": "4", "title": "Only 25 More Days Till Christmas", "text": "", "album_id": "1476996", "longitude": "-74.010128", "url_o": "https://farm1.staticflickr.com/12/68472932_f4de79ae8d_o.jpg", "secret": "f4de79ae8d", "media": "photo", "latitude": "40.226580", "id": "68472932", "tags": "daystillchristmas riggingupthelights asburypark nj 2005 publicworkscrew decorations treelighting thousandsoflightbulbs carefulupthere firetruck ladder monmouthcountynj christmastree christmastreedecorating bigjob publicworksguys"}, {"datetaken": "2005-05-28 09:36:11", "license": "4", "title": "Fountain", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/12/16075343_084383eaea_o.jpg", "secret": "084383eaea", "media": "photo", "latitude": "38.889897", "id": "16075343", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 09:39:16", "license": "4", "title": "The Grant Memorial", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/10/16216168_44a6056b37_o.jpg", "secret": "44a6056b37", "media": "photo", "latitude": "38.889897", "id": "16216168", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 11:17:16", "license": "4", "title": "The Capitol", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/9/16216303_9e2aff3cad_o.jpg", "secret": "9e2aff3cad", "media": "photo", "latitude": "38.889897", "id": "16216303", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 12:10:25", "license": "4", "title": "The flag atop the bandshell", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/11/16219552_27a3b4602c_o.jpg", "secret": "27a3b4602c", "media": "photo", "latitude": "38.889897", "id": "16219552", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 12:15:04", "license": "4", "title": "The Capitol", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/14/16216462_5a6208129b_o.jpg", "secret": "5a6208129b", "media": "photo", "latitude": "38.889897", "id": "16216462", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 12:26:20", "license": "4", "title": "Peace Circle", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/14/16216573_1295d28ef0_o.jpg", "secret": "1295d28ef0", "media": "photo", "latitude": "38.889897", "id": "16216573", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 12:27:34", "license": "4", "title": "The top of the bandshell", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/14/16216684_78a72dc805_o.jpg", "secret": "78a72dc805", "media": "photo", "latitude": "38.889897", "id": "16216684", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 12:33:53", "license": "4", "title": "Rows and Rows", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/13/16100070_936a64a0bf_o.jpg", "secret": "936a64a0bf", "media": "photo", "latitude": "38.889897", "id": "16100070", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 14:04:46", "license": "4", "title": "Stormy Summer", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/9/16219028_23db44cec1_o.jpg", "secret": "23db44cec1", "media": "photo", "latitude": "38.889897", "id": "16219028", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 14:09:03", "license": "4", "title": "Stormy Summer", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/12/16219164_b00123e140_o.jpg", "secret": "b00123e140", "media": "photo", "latitude": "38.889897", "id": "16219164", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 15:56:10", "license": "4", "title": "The Marine Legion", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/12/16219275_5de4a0c9bd_o.jpg", "secret": "5de4a0c9bd", "media": "photo", "latitude": "38.889897", "id": "16219275", "tags": "capitalconcerts memorialday uscapitol pbs production marines red washingtondc"}, {"datetaken": "2005-05-28 16:45:49", "license": "4", "title": "How Production runs...", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/14/16219421_ff7d307cde_o.jpg", "secret": "ff7d307cde", "media": "photo", "latitude": "38.889897", "id": "16219421", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 17:53:09", "license": "4", "title": "Flags", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/12/16218899_2dcb46bad3_o.jpg", "secret": "2dcb46bad3", "media": "photo", "latitude": "38.889897", "id": "16218899", "tags": "capitalconcerts memorialday uscapitol pbs production flags washingtondc"}, {"datetaken": "2005-05-28 19:05:58", "license": "4", "title": "The Marine Band prepares", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/11/16216826_441dbc9eb8_o.jpg", "secret": "441dbc9eb8", "media": "photo", "latitude": "38.889897", "id": "16216826", "tags": "capitalconcerts memorialday uscapitol pbs production marines washingtondc"}, {"datetaken": "2005-05-28 19:20:55", "license": "4", "title": "From the west terrace", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/13/16216920_59f92a3d04_o.jpg", "secret": "59f92a3d04", "media": "photo", "latitude": "38.889897", "id": "16216920", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 19:26:15", "license": "4", "title": "The Army Herald Trumpets", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/10/16216985_dd83c888dc_o.jpg", "secret": "dd83c888dc", "media": "photo", "latitude": "38.889897", "id": "16216985", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 19:36:10", "license": "4", "title": "The Army Herald Trumpets", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/11/16217114_d8a24cc01b_o.jpg", "secret": "d8a24cc01b", "media": "photo", "latitude": "38.889897", "id": "16217114", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 19:36:31", "license": "4", "title": "The Army Herald Trumpets", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/12/16217242_e2d8f3f6db_o.jpg", "secret": "e2d8f3f6db", "media": "photo", "latitude": "38.889897", "id": "16217242", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 19:36:47", "license": "4", "title": "The Army Herald Trumpets", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/13/16217348_f7b5533826_o.jpg", "secret": "f7b5533826", "media": "photo", "latitude": "38.889897", "id": "16217348", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 19:37:46", "license": "4", "title": "The Army Herald Trumpets", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/9/16217502_28e9b205f7_o.jpg", "secret": "28e9b205f7", "media": "photo", "latitude": "38.889897", "id": "16217502", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 19:50:37", "license": "4", "title": "The Marine Band", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/13/16217673_5985a4ecf6_o.jpg", "secret": "5985a4ecf6", "media": "photo", "latitude": "38.889897", "id": "16217673", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 19:56:42", "license": "4", "title": "Jen and Eric", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/11/16217853_0a67e95667_o.jpg", "secret": "0a67e95667", "media": "photo", "latitude": "38.889897", "id": "16217853", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 20:18:24", "license": "4", "title": "Sunset over the District", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/11/16217992_6905c3f8f7_o.jpg", "secret": "6905c3f8f7", "media": "photo", "latitude": "38.889897", "id": "16217992", "tags": "capitalconcerts memorialday uscapitol pbs production sunset washingtondc"}, {"datetaken": "2005-05-28 20:57:15", "license": "4", "title": "Reading a letter", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/13/16218110_b0e1347afe_o.jpg", "secret": "b0e1347afe", "media": "photo", "latitude": "38.889897", "id": "16218110", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 20:59:57", "license": "4", "title": "All lit up.", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/14/16218274_28781bc8c0_o.jpg", "secret": "28781bc8c0", "media": "photo", "latitude": "38.889897", "id": "16218274", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-28 21:11:42", "license": "4", "title": "Taps", "text": "", "album_id": "389187", "longitude": "-77.011735", "url_o": "https://farm1.staticflickr.com/10/16218462_4cc03fe158_o.jpg", "secret": "4cc03fe158", "media": "photo", "latitude": "38.889897", "id": "16218462", "tags": "capitalconcerts memorialday uscapitol pbs production washingtondc"}, {"datetaken": "2005-05-15 15:47:52", "license": "5", "title": "Chatelherault Park", "text": "", "album_id": "800359", "longitude": "-4.014945", "url_o": "https://farm1.staticflickr.com/25/36200502_89947996b3_o.jpg", "secret": "89947996b3", "media": "photo", "latitude": "55.762112", "id": "36200502", "tags": "chatelheraultpark scotland"}, {"datetaken": "2005-05-15 15:48:08", "license": "5", "title": "Chatelherault Park", "text": "", "album_id": "800359", "longitude": "-4.014945", "url_o": "https://farm1.staticflickr.com/31/36200877_6eff5ad6ba_o.jpg", "secret": "6eff5ad6ba", "media": "photo", "latitude": "55.762112", "id": "36200877", "tags": "chatelheraultpark scotland"}, {"datetaken": "2005-05-15 15:48:36", "license": "5", "title": "The Stone-mason's Road", "text": "", "album_id": "800359", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/36201356_08554e05c5_o.jpg", "secret": "08554e05c5", "media": "photo", "latitude": "0", "id": "36201356", "tags": "chatelheraultpark scotland"}, {"datetaken": "2005-05-15 15:49:04", "license": "5", "title": "Hunting Lodge of the Dukes of Hamilton", "text": "", "album_id": "800359", "longitude": "-4.014945", "url_o": "https://farm1.staticflickr.com/25/36201652_61e812bafe_o.jpg", "secret": "61e812bafe", "media": "photo", "latitude": "55.762112", "id": "36201652", "tags": "chatelheraultpark dukeofhamilton huntinglodge scotland"}, {"datetaken": "2005-05-15 15:51:31", "license": "5", "title": "The gateway between the two houses of the Hunting Lodge of the Dukes of Hamilton", "text": "", "album_id": "800359", "longitude": "-4.014945", "url_o": "https://farm1.staticflickr.com/29/36201915_1383233e4b_o.jpg", "secret": "1383233e4b", "media": "photo", "latitude": "55.762112", "id": "36201915", "tags": "chatelheraultpark dukeofhamilton huntinglodge scotland"}, {"datetaken": "2005-05-15 15:51:50", "license": "5", "title": "Hunting Lodge of the Dukes of Hamilton", "text": "", "album_id": "800359", "longitude": "-4.014945", "url_o": "https://farm1.staticflickr.com/32/36202192_97dda1742d_o.jpg", "secret": "97dda1742d", "media": "photo", "latitude": "55.762112", "id": "36202192", "tags": "chatelheraultpark dukeofhamilton huntinglodge scotland"}, {"datetaken": "2005-05-15 16:19:29", "license": "5", "title": "River Avon", "text": "", "album_id": "800359", "longitude": "-4.016854", "url_o": "https://farm1.staticflickr.com/33/36203183_8997afddcc_o.jpg", "secret": "8997afddcc", "media": "photo", "latitude": "55.761297", "id": "36203183", "tags": "chatelheraultpark scotland riveravon dukesbridge"}, {"datetaken": "2005-05-15 16:19:51", "license": "5", "title": "River Avon", "text": "", "album_id": "800359", "longitude": "-4.016854", "url_o": "https://farm1.staticflickr.com/32/36203903_b025b2f4bf_o.jpg", "secret": "b025b2f4bf", "media": "photo", "latitude": "55.761297", "id": "36203903", "tags": "chatelheraultpark scotland riveravon dukesbridge"}, {"datetaken": "2005-05-15 16:25:32", "license": "5", "title": "Cadzow Castle ruins", "text": "", "album_id": "800359", "longitude": "-4.017434", "url_o": "https://farm1.staticflickr.com/21/36204346_5fa4a38c1a_o.jpg", "secret": "5fa4a38c1a", "media": "photo", "latitude": "55.761140", "id": "36204346", "tags": "chatelheraultpark scotland ruins cadzowcastle"}, {"datetaken": "2005-05-15 16:27:50", "license": "5", "title": "Cadzow Castle ruins", "text": "", "album_id": "800359", "longitude": "-4.017434", "url_o": "https://farm1.staticflickr.com/24/36204819_5bbe630622_o.jpg", "secret": "5bbe630622", "media": "photo", "latitude": "55.761140", "id": "36204819", "tags": "chatelheraultpark scotland cadzowcastle ruins"}, {"datetaken": "2005-05-15 16:31:15", "license": "5", "title": "Duke's Bridge in Chatelherault Country Park", "text": "", "album_id": "800359", "longitude": "-4.016854", "url_o": "https://farm1.staticflickr.com/26/36205416_2e8e42ff7d_o.jpg", "secret": "2e8e42ff7d", "media": "photo", "latitude": "55.761297", "id": "36205416", "tags": "chatelheraultpark riveravon scotland dukesbridge"}, {"datetaken": "2005-05-15 16:36:53", "license": "5", "title": "Forest path", "text": "", "album_id": "800359", "longitude": "-4.016854", "url_o": "https://farm1.staticflickr.com/29/36206051_bdd5413901_o.jpg", "secret": "bdd5413901", "media": "photo", "latitude": "55.761297", "id": "36206051", "tags": "chatelheraultpark scotland"}, {"datetaken": "2005-05-15 16:44:02", "license": "5", "title": "River Avon in Chatelherault Country Park", "text": "", "album_id": "800359", "longitude": "-4.016854", "url_o": "https://farm1.staticflickr.com/22/36206508_bce1d8c10c_o.jpg", "secret": "bce1d8c10c", "media": "photo", "latitude": "55.761297", "id": "36206508", "tags": "scotland wikipedia riveravon chatelheraultpark"}, {"datetaken": "2005-05-15 16:50:37", "license": "5", "title": "Duke's Bridge crossing River Avon in Chatelherault Country Park", "text": "", "album_id": "800359", "longitude": "-4.016854", "url_o": "https://farm1.staticflickr.com/25/36207240_9899d89117_o.jpg", "secret": "9899d89117", "media": "photo", "latitude": "55.761297", "id": "36207240", "tags": "scotland wikipedia riveravon chatelheraultpark dukesbridge"}, {"datetaken": "2005-05-15 17:01:01", "license": "5", "title": "Duke's Bridge crossing River Avon in Chatelherault Country Park", "text": "", "album_id": "800359", "longitude": "-4.016854", "url_o": "https://farm1.staticflickr.com/32/36206816_637f3133da_o.jpg", "secret": "637f3133da", "media": "photo", "latitude": "55.761297", "id": "36206816", "tags": "riveravon chatelheraultpark dukesbridge scotland"}, {"datetaken": "2005-05-15 17:01:25", "license": "5", "title": "A leg of the Duke's Bridge standing in the River Avon", "text": "", "album_id": "800359", "longitude": "-4.016854", "url_o": "https://farm1.staticflickr.com/30/36207725_37531dc114_o.jpg", "secret": "37531dc114", "media": "photo", "latitude": "55.761297", "id": "36207725", "tags": "chatelheraultpark riveravon dukesbridge scotland"}, {"datetaken": "2005-05-15 17:12:16", "license": "5", "title": "Hunting Lodge of the Dukes of Hamilton", "text": "", "album_id": "800359", "longitude": "-4.014945", "url_o": "https://farm1.staticflickr.com/24/36202545_b106bc1f58_o.jpg", "secret": "b106bc1f58", "media": "photo", "latitude": "55.762112", "id": "36202545", "tags": "chatelheraultpark dukeofhamilton huntinglodge scotland"}, {"datetaken": "2005-05-15 17:16:31", "license": "5", "title": "World War II memorial in Chatelherault Country Park", "text": "", "album_id": "800359", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/36208165_aad195e1a7_o.jpg", "secret": "aad195e1a7", "media": "photo", "latitude": "0", "id": "36208165", "tags": "chatelheraultpark scotland worldwarii warmemorial"}, {"datetaken": "2006-05-27 11:48:33", "license": "3", "title": "baha fish taco's", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/154481753_01b4a8f528_o.jpg", "secret": "01b4a8f528", "media": "photo", "latitude": "0", "id": "154481753", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:15:21", "license": "3", "title": "what ferry?", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/154482721_0ef7a3cb46_o.jpg", "secret": "0ef7a3cb46", "media": "photo", "latitude": "0", "id": "154482721", "tags": "goldengatebridge memorialdayweekend susanmiller"}, {"datetaken": "2006-05-27 13:36:15", "license": "3", "title": "view from alcatraz?", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/154484666_b3c1e96a7a_o.jpg", "secret": "b3c1e96a7a", "media": "photo", "latitude": "0", "id": "154484666", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:36:49", "license": "3", "title": "bridge under the bridge", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/154485475_d52857b7c0_o.jpg", "secret": "d52857b7c0", "media": "photo", "latitude": "0", "id": "154485475", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:37:26", "license": "3", "title": "oops this part isn't painted!", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/154485934_3b8e06bc89_o.jpg", "secret": "3b8e06bc89", "media": "photo", "latitude": "0", "id": "154485934", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:37:41", "license": "3", "title": "barbed wire", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/154486290_4cc237aadd_o.jpg", "secret": "4cc237aadd", "media": "photo", "latitude": "0", "id": "154486290", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:38:06", "license": "3", "title": "under the bridge", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/154486547_db57248522_o.jpg", "secret": "db57248522", "media": "photo", "latitude": "0", "id": "154486547", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:40:54", "license": "3", "title": "3", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/154486860_2deb873998_o.jpg", "secret": "2deb873998", "media": "photo", "latitude": "0", "id": "154486860", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:42:11", "license": "3", "title": "walking across the bridge", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/154487190_2ab6d21cb2_o.jpg", "secret": "2ab6d21cb2", "media": "photo", "latitude": "0", "id": "154487190", "tags": "goldengatebridge memorialdayweekend patriciamiller"}, {"datetaken": "2006-05-27 13:43:02", "license": "3", "title": "the shot", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/154487550_adca4ac6c4_o.jpg", "secret": "adca4ac6c4", "media": "photo", "latitude": "0", "id": "154487550", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:43:28", "license": "3", "title": "earthquake!", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/154487871_a31e7de2d1_o.jpg", "secret": "a31e7de2d1", "media": "photo", "latitude": "0", "id": "154487871", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:47:14", "license": "3", "title": "vista point", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/154488305_e72b86a1a7_o.jpg", "secret": "e72b86a1a7", "media": "photo", "latitude": "0", "id": "154488305", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:47:43", "license": "3", "title": "concrete + sky", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/154488997_e9de19b17d_o.jpg", "secret": "e9de19b17d", "media": "photo", "latitude": "0", "id": "154488997", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:49:15", "license": "3", "title": "this bird didn't get the memo", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/154489931_2d98e3233d_o.jpg", "secret": "2d98e3233d", "media": "photo", "latitude": "0", "id": "154489931", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:49:46", "license": "3", "title": "vista", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/154490291_1c3051a93c_o.jpg", "secret": "1c3051a93c", "media": "photo", "latitude": "0", "id": "154490291", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:50:32", "license": "3", "title": "the best house in the bay area", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/154490687_ace657a371_o.jpg", "secret": "ace657a371", "media": "photo", "latitude": "0", "id": "154490687", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:51:58", "license": "3", "title": "baycam!", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/154491479_a26496b04f_o.jpg", "secret": "a26496b04f", "media": "photo", "latitude": "0", "id": "154491479", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:52:35", "license": "3", "title": "Roger Moore was here", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/154492347_107329122a_o.jpg", "secret": "107329122a", "media": "photo", "latitude": "0", "id": "154492347", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:55:04", "license": "3", "title": "31", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/154492763_4ebce22514_o.jpg", "secret": "4ebce22514", "media": "photo", "latitude": "0", "id": "154492763", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:55:34", "license": "3", "title": "bay traffic", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/154493345_042a18d97a_o.jpg", "secret": "042a18d97a", "media": "photo", "latitude": "0", "id": "154493345", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 13:58:28", "license": "3", "title": "high tension", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/154493720_45c0c4fc1a_o.jpg", "secret": "45c0c4fc1a", "media": "photo", "latitude": "0", "id": "154493720", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 14:00:12", "license": "3", "title": "tourist cone", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/154494681_fa95c58f7b_o.jpg", "secret": "fa95c58f7b", "media": "photo", "latitude": "0", "id": "154494681", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 14:01:29", "license": "3", "title": "matchy matchy", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/154495136_0cbeda8cdd_o.jpg", "secret": "0cbeda8cdd", "media": "photo", "latitude": "0", "id": "154495136", "tags": "goldengatebridge davidmiller memorialdayweekend patriciamiller"}, {"datetaken": "2006-05-27 14:01:49", "license": "3", "title": "tower", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/154495483_2f24102f2a_o.jpg", "secret": "2f24102f2a", "media": "photo", "latitude": "0", "id": "154495483", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 14:02:13", "license": "3", "title": "speed limit 45", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/154495917_bf5f61159d_o.jpg", "secret": "bf5f61159d", "media": "photo", "latitude": "0", "id": "154495917", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 14:03:41", "license": "3", "title": "i didn't know the bridge was so art deco", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/154496820_3b1ca50056_o.jpg", "secret": "3b1ca50056", "media": "photo", "latitude": "0", "id": "154496820", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 14:04:19", "license": "3", "title": "looks cool until you realize this is what separates you from death by falling", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/154497330_e996dba215_o.jpg", "secret": "e996dba215", "media": "photo", "latitude": "0", "id": "154497330", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 14:06:00", "license": "3", "title": "the tower", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/154498812_bd6bb05780_o.jpg", "secret": "bd6bb05780", "media": "photo", "latitude": "0", "id": "154498812", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 14:08:37", "license": "3", "title": "this streetcar has gone way off its tracks", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/154499084_aaaa585bc2_o.jpg", "secret": "aaaa585bc2", "media": "photo", "latitude": "0", "id": "154499084", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 14:09:26", "license": "3", "title": "bridge-painting dolly", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/154499757_f193f09614_o.jpg", "secret": "f193f09614", "media": "photo", "latitude": "0", "id": "154499757", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 14:15:07", "license": "3", "title": "no trespassing! that means YOU, Roger Moore.", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/154500224_a804e83f18_o.jpg", "secret": "a804e83f18", "media": "photo", "latitude": "0", "id": "154500224", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 14:20:27", "license": "3", "title": "cleverly disguised port-a-john", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/154500712_ae6b232407_o.jpg", "secret": "ae6b232407", "media": "photo", "latitude": "0", "id": "154500712", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 14:36:19", "license": "3", "title": "space", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/154501819_d34b1280fc_o.jpg", "secret": "d34b1280fc", "media": "photo", "latitude": "0", "id": "154501819", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 14:58:09", "license": "3", "title": "coastal trail", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/154483985_a9a8d1d35c_o.jpg", "secret": "a9a8d1d35c", "media": "photo", "latitude": "0", "id": "154483985", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-27 18:01:37", "license": "3", "title": "stitched wide angle view", "text": "", "album_id": "72157594147086240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/154498203_b939507a64_o.jpg", "secret": "b939507a64", "media": "photo", "latitude": "0", "id": "154498203", "tags": "goldengatebridge memorialdayweekend"}, {"datetaken": "2006-05-29 08:38:13", "license": "5", "title": "Puppet", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/155752138_0486983da0_o.jpg", "secret": "0486983da0", "media": "photo", "latitude": "0", "id": "155752138", "tags": "parade speech memorialday natick memorialdayparade natickma iphoto:rating=3 checksum:md5=7f74b3123494f20097da87711f4cc6de checksum:sha1=19820fdb8b765c58148fd72c0ac3b28d450f7e14"}, {"datetaken": "2006-05-29 08:39:17", "license": "5", "title": "IMG_3010.JPG", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/155752441_82d2541181_o.jpg", "secret": "82d2541181", "media": "photo", "latitude": "0", "id": "155752441", "tags": "parade speech memorialday natick memorialdayparade natickma iphoto:rating=3 checksum:sha1=2d2980c62fba7b2849f4a28cdb1f54f601159cf7 checksum:md5=ff6602186c0b817601afc5f06f52c9e7"}, {"datetaken": "2006-05-29 08:47:50", "license": "5", "title": "they prefer the music on their iPod", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/155752707_d305565ad2_o.jpg", "secret": "d305565ad2", "media": "photo", "latitude": "0", "id": "155752707", "tags": "band parade memorialday natick memorialdayparade natickma checksum:md5=4a1353efb899cc7cce0c61c1f8f66bf6 checksum:sha1=757325aa84b507becb4916217966d026b50a6237"}, {"datetaken": "2006-05-29 08:50:52", "license": "5", "title": "Sitting down on the job", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/155753074_21e0a944cd_o.jpg", "secret": "21e0a944cd", "media": "photo", "latitude": "0", "id": "155753074", "tags": "police parade memorialday natick memorialdayparade natickma iphoto:rating=3 checksum:md5=0b18796460e5d5204207e1c92e15b039 checksum:sha1=24bedc3512e8e9dbb0b6552901a5cc8acf0e3a8d"}, {"datetaken": "2006-05-29 09:52:21", "license": "5", "title": "Unveiling of the WWI memorial", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/155753566_bbea6c1748_o.jpg", "secret": "bbea6c1748", "media": "photo", "latitude": "0", "id": "155753566", "tags": "wwi parade memorialday natick memorialdayparade natickma iphoto:rating=3 checksum:sha1=c7e5bd44706be43ed93817d49d3d5242cd08d864 checksum:md5=c3bb5d6391f9f4f9fca7a300ae662497"}, {"datetaken": "2006-05-29 09:56:10", "license": "5", "title": "Kids on bikes", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/155754036_dd853a690c_o.jpg", "secret": "dd853a690c", "media": "photo", "latitude": "0", "id": "155754036", "tags": "kids parade memorialday natick memorialdayparade natickma iphoto:rating=3 checksum:sha1=892755f679de1c84b30a282d33d3e592d1ed7e1f checksum:md5=09c402a858529f74faba120f8f28258d"}, {"datetaken": "2006-05-29 10:02:31", "license": "5", "title": "Police Officer", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/155754129_d4cebcfbb2_o.jpg", "secret": "d4cebcfbb2", "media": "photo", "latitude": "0", "id": "155754129", "tags": "police parade cop officer memorialday natick memorialdayparade natickma checksum:md5=f78161667639d5b109c5fc67b70eded4 checksum:sha1=daaa3f774bb779d64c4e65f4208ae52cec3a81b4"}, {"datetaken": "2006-05-29 10:02:44", "license": "5", "title": "Marine Corps League", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/155754227_e2b1a7c925_o.jpg", "secret": "e2b1a7c925", "media": "photo", "latitude": "0", "id": "155754227", "tags": "marine parade marines memorialday natick memorialdayparade natickma checksum:md5=0b213f65ef471f14c67dcba9844e529d checksum:sha1=f400f3755dc83b9d51d30216848ec2266ae903d8"}, {"datetaken": "2006-05-29 10:03:26", "license": "5", "title": "Trombone", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/155754668_2c2d4506d7_o.jpg", "secret": "2c2d4506d7", "media": "photo", "latitude": "0", "id": "155754668", "tags": "parade instrument trombone horn memorialday natick memorialdayparade natickma iphoto:rating=3 checksum:sha1=22a08639ece2711c4fcad28b6f348aa5a061a434 checksum:md5=be6cf14c312cc0bbfebdeec2f2f86490"}, {"datetaken": "2006-05-29 10:04:55", "license": "5", "title": "Natick High School marching band", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/155755239_e1eb2e8543_o.jpg", "secret": "e1eb2e8543", "media": "photo", "latitude": "0", "id": "155755239", "tags": "band parade marching memorialday natick memorialdayparade natickma iphoto:rating=3 checksum:md5=cf5232d70f7e8f618d3765e8908db224 checksum:sha1=8715b86588f1e8642dd5d194fe45024ac3c5c127"}, {"datetaken": "2006-05-29 10:09:44", "license": "5", "title": "Parade watchers", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/155755366_8f904d2708_o.jpg", "secret": "8f904d2708", "media": "photo", "latitude": "0", "id": "155755366", "tags": "kids parade memorialday natick memorialdayparade natickma checksum:sha1=87cfbade9c424fb1339b2268d0443855ccd22730 checksum:md5=363f3206a53ba32143a1d53d9ae572e1"}, {"datetaken": "2006-05-29 10:10:34", "license": "5", "title": "American Legion drummer", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/155755501_a141b1b0dc_o.jpg", "secret": "a141b1b0dc", "media": "photo", "latitude": "0", "id": "155755501", "tags": "drum band parade memorialday americanlegion natick memorialdayparade natickma checksum:sha1=5f05612e9c294421ac5cc97e07d12ae37fc39975 checksum:md5=304c15d7ea88f9e449594bea7ed335cf"}, {"datetaken": "2006-05-29 10:11:08", "license": "5", "title": "American Legion band", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/155756078_6253f134d0_o.jpg", "secret": "6253f134d0", "media": "photo", "latitude": "0", "id": "155756078", "tags": "band parade marching memorialday natick memorialdayparade natickma iphoto:rating=3 checksum:sha1=cb260f3ea65be3a817b792ad900c007f26c4138d checksum:md5=49cc83a837a5e2265c4a3f63db4ed1e7"}, {"datetaken": "2006-05-29 10:14:01", "license": "5", "title": "Parade watchers follow the parade", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/155756537_7dfcb66890_o.jpg", "secret": "7dfcb66890", "media": "photo", "latitude": "0", "id": "155756537", "tags": "parade memorialday natick memorialdayparade natickma iphoto:rating=3 checksum:sha1=1bb8315955dffec9e06cafd42347e1af13f9756f checksum:md5=65382cd36fc512804511de382e95f90d"}, {"datetaken": "2006-05-29 10:15:14", "license": "5", "title": "Natick Girl Scouts", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/155756697_8495468b62_o.jpg", "secret": "8495468b62", "media": "photo", "latitude": "0", "id": "155756697", "tags": "girl parade scouts girlscouts memorialday natick memorialdayparade natickma checksum:md5=02e87b29da887eed586100cb95471745 checksum:sha1=9e220b3e0400e2324e46142a08343f17656f98ea"}, {"datetaken": "2006-05-29 10:15:29", "license": "5", "title": "Antique Car", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/155757282_d49e5a712e_o.jpg", "secret": "d49e5a712e", "media": "photo", "latitude": "0", "id": "155757282", "tags": "old car automobile antique parade memorialday natick memorialdayparade natickma iphoto:rating=3 checksum:sha1=8493d88252b8446ac6d020caf3e11b364a1645d2 checksum:md5=d9c88dff50f707d51dc5bb0fe1ff5f6c"}, {"datetaken": "2006-05-29 10:16:36", "license": "5", "title": "Unveiling of the Lt. Paul K Bremner Memorial Square", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/155757710_0757ac0349_o.jpg", "secret": "0757ac0349", "media": "photo", "latitude": "0", "id": "155757710", "tags": "memorial parade memorialday natick memorialdayparade natickma checksum:sha1=777c7c93ce6be680098e1003f77fff88d3af1e1b checksum:md5=323c2dbfa11bf1690db2a5d04ce3712a"}, {"datetaken": "2006-05-29 10:17:28", "license": "5", "title": "Parade participants", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/155758199_9803dfb2bb_o.jpg", "secret": "9803dfb2bb", "media": "photo", "latitude": "0", "id": "155758199", "tags": "parade memorialday natick memorialdayparade natickma iphoto:rating=3 checksum:md5=cde060d5e779b7892a918b58056f1aac checksum:sha1=24a1766e93a0e0f31aa57ee3cf391773b8d9fe06"}, {"datetaken": "2006-05-29 10:18:08", "license": "5", "title": "Parade watcher", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/155758280_6dbf04542a_o.jpg", "secret": "6dbf04542a", "media": "photo", "latitude": "0", "id": "155758280", "tags": "boy parade thinking memorialday natick memorialdayparade natickma checksum:sha1=11898c8cb5854f5ef2acba54d2f579d6a1e9b63a checksum:md5=d0f52e776eb5b4d3dbd0934ba5923cf2"}, {"datetaken": "2006-05-29 10:20:21", "license": "5", "title": "National Anthem", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/155758465_9582887f5f_o.jpg", "secret": "9582887f5f", "media": "photo", "latitude": "0", "id": "155758465", "tags": "tattoo hands parade memorialday natick memorialdayparade natickma checksum:md5=cf38fd91f87d177efc1014e6dd40f945 checksum:sha1=c7aeda89b1b50136cbf6988350a167cadf168366"}, {"datetaken": "2006-05-29 10:25:49", "license": "5", "title": "Drummers", "text": "", "album_id": "72157594148848294", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/155758806_f43a5772e5_o.jpg", "secret": "f43a5772e5", "media": "photo", "latitude": "0", "id": "155758806", "tags": "drums drum parade drummer memorialday drumsticks natick memorialdayparade natickma checksum:sha1=10f774a6251259dbacff47599eff37a7b4c830bb checksum:md5=94d7e302a8f91d7ba3c75054834fef98"}, {"datetaken": "2006-05-28 04:50:30", "license": "1", "title": "Biker family", "text": "", "album_id": "72157594149306041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/156090611_a9b65bdf9b_o.jpg", "secret": "a9b65bdf9b", "media": "photo", "latitude": "0", "id": "156090611", "tags": "washingtondc memorial moto memorialday bikers veterans usafra"}, {"datetaken": "2006-05-28 04:55:49", "license": "1", "title": "group in black", "text": "", "album_id": "72157594149306041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/156090335_b9d594293a_o.jpg", "secret": "b9d594293a", "media": "photo", "latitude": "0", "id": "156090335", "tags": "washingtondc memorial moto memorialday bikers veterans usafra"}, {"datetaken": "2006-05-28 04:58:46", "license": "1", "title": "group", "text": "", "album_id": "72157594149306041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/157588142_d7d5eadfa9_o.jpg", "secret": "d7d5eadfa9", "media": "photo", "latitude": "0", "id": "157588142", "tags": "washingtondc memorialday bikers usafra"}, {"datetaken": "2006-05-28 05:04:08", "license": "1", "title": "beautiful red", "text": "", "album_id": "72157594149306041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/157588194_a366fa2b91_o.jpg", "secret": "a366fa2b91", "media": "photo", "latitude": "0", "id": "157588194", "tags": "washingtondc memorialday bikers usafra"}, {"datetaken": "2006-05-28 05:06:19", "license": "1", "title": "orange", "text": "", "album_id": "72157594149306041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/156090430_c3f5f21724_o.jpg", "secret": "c3f5f21724", "media": "photo", "latitude": "0", "id": "156090430", "tags": "washingtondc memorial moto memorialday bikers veterans usafra"}, {"datetaken": "2006-05-28 05:11:42", "license": "1", "title": "couple", "text": "", "album_id": "72157594149306041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/156090469_3f2b488677_o.jpg", "secret": "3f2b488677", "media": "photo", "latitude": "0", "id": "156090469", "tags": "washingtondc memorial moto memorialday bikers veterans usafra"}, {"datetaken": "2006-05-28 05:51:18", "license": "1", "title": "contrast one", "text": "", "album_id": "72157594149306041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/156090395_b44e1a2ed6_o.jpg", "secret": "b44e1a2ed6", "media": "photo", "latitude": "0", "id": "156090395", "tags": "washingtondc memorial moto memorialday bikers veterans usafra"}, {"datetaken": "2006-05-28 06:23:22", "license": "1", "title": "Corean War memorial", "text": "", "album_id": "72157594149306041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/156090274_5dc20ee09a_o.jpg", "secret": "5dc20ee09a", "media": "photo", "latitude": "0", "id": "156090274", "tags": "washingtondc memorial moto memorialday bikers veterans usafra"}, {"datetaken": "2006-05-28 06:37:58", "license": "1", "title": "", "text": "", "album_id": "72157594149306041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/157588378_ffb863f553_o.jpg", "secret": "ffb863f553", "media": "photo", "latitude": "0", "id": "157588378", "tags": "washingtondc memorialday bikers usafra"}, {"datetaken": "2006-05-28 06:50:31", "license": "1", "title": "Watching the parade", "text": "", "album_id": "72157594149306041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/156090514_eee5171703_o.jpg", "secret": "eee5171703", "media": "photo", "latitude": "0", "id": "156090514", "tags": "washingtondc memorial moto memorialday bikers veterans usafra"}, {"datetaken": "2006-05-28 07:02:02", "license": "1", "title": "white house", "text": "", "album_id": "72157594149306041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/157588312_0fb339eced_o.jpg", "secret": "0fb339eced", "media": "photo", "latitude": "0", "id": "157588312", "tags": "washingtondc memorialday bikers usafra"}, {"datetaken": "2006-05-29 16:09:30", "license": "1", "title": "L1050170", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/156083361_ca924f4d61_o.jpg", "secret": "ca924f4d61", "media": "photo", "latitude": "0", "id": "156083361", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 16:09:58", "license": "1", "title": "L1050171", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/156083441_721020cada_o.jpg", "secret": "721020cada", "media": "photo", "latitude": "0", "id": "156083441", "tags": "sanfrancisco boyfriend cookout memorialday brice"}, {"datetaken": "2006-05-29 16:10:27", "license": "1", "title": "L1050172", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/156083506_59cb85c957_o.jpg", "secret": "59cb85c957", "media": "photo", "latitude": "0", "id": "156083506", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 16:22:33", "license": "1", "title": "L1050173", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/156083554_8358160e2d_o.jpg", "secret": "8358160e2d", "media": "photo", "latitude": "0", "id": "156083554", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 16:23:07", "license": "1", "title": "L1050174", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/156083608_8b2f0dd511_o.jpg", "secret": "8b2f0dd511", "media": "photo", "latitude": "0", "id": "156083608", "tags": "sanfrancisco boyfriend cookout memorialday brice"}, {"datetaken": "2006-05-29 16:23:58", "license": "1", "title": "L1050175", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/156083673_ea752a6e61_o.jpg", "secret": "ea752a6e61", "media": "photo", "latitude": "0", "id": "156083673", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 16:41:49", "license": "1", "title": "L1050176", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/156083755_965cf35f27_o.jpg", "secret": "965cf35f27", "media": "photo", "latitude": "0", "id": "156083755", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 16:42:15", "license": "1", "title": "L1050177", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/156083798_a1f3face1c_o.jpg", "secret": "a1f3face1c", "media": "photo", "latitude": "0", "id": "156083798", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 17:00:24", "license": "1", "title": "L1050178", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/156086063_350835bcef_o.jpg", "secret": "350835bcef", "media": "photo", "latitude": "0", "id": "156086063", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 17:00:44", "license": "1", "title": "L1050179", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/156086135_eba020bc68_o.jpg", "secret": "eba020bc68", "media": "photo", "latitude": "0", "id": "156086135", "tags": "sanfrancisco boyfriend cookout memorialday brice"}, {"datetaken": "2006-05-29 17:01:02", "license": "1", "title": "L1050180", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/156086172_5906bd9f85_o.jpg", "secret": "5906bd9f85", "media": "photo", "latitude": "0", "id": "156086172", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 17:01:17", "license": "1", "title": "L1050181", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/156086215_d0d5df4faa_o.jpg", "secret": "d0d5df4faa", "media": "photo", "latitude": "0", "id": "156086215", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 17:01:57", "license": "1", "title": "L1050185", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/156086274_1b7f4397bf_o.jpg", "secret": "1b7f4397bf", "media": "photo", "latitude": "0", "id": "156086274", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 17:02:32", "license": "1", "title": "L1050186", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/156086323_af4069368b_o.jpg", "secret": "af4069368b", "media": "photo", "latitude": "0", "id": "156086323", "tags": "sanfrancisco boyfriend cookout memorialday brice"}, {"datetaken": "2006-05-29 17:02:45", "license": "1", "title": "L1050187", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/156086362_93faa38198_o.jpg", "secret": "93faa38198", "media": "photo", "latitude": "0", "id": "156086362", "tags": "sanfrancisco boyfriend cookout memorialday brice"}, {"datetaken": "2006-05-29 17:03:21", "license": "1", "title": "L1050188", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/156086379_935bd4515d_o.jpg", "secret": "935bd4515d", "media": "photo", "latitude": "0", "id": "156086379", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 17:03:31", "license": "1", "title": "L1050189", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/156086427_7f84f1af68_o.jpg", "secret": "7f84f1af68", "media": "photo", "latitude": "0", "id": "156086427", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 17:06:43", "license": "1", "title": "L1050190", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/156086852_d8eef3acde_o.jpg", "secret": "d8eef3acde", "media": "photo", "latitude": "0", "id": "156086852", "tags": "sanfrancisco boyfriend cookout memorialday brice"}, {"datetaken": "2006-05-29 17:36:30", "license": "1", "title": "L1050191", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/156086940_aca758b354_o.jpg", "secret": "aca758b354", "media": "photo", "latitude": "0", "id": "156086940", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 17:37:07", "license": "1", "title": "L1050192", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/156087051_2757edf23d_o.jpg", "secret": "2757edf23d", "media": "photo", "latitude": "0", "id": "156087051", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 17:46:11", "license": "1", "title": "L1050193", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/156087108_c0a5790804_o.jpg", "secret": "c0a5790804", "media": "photo", "latitude": "0", "id": "156087108", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 18:24:05", "license": "1", "title": "L1050194", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/156087179_eaa2343223_o.jpg", "secret": "eaa2343223", "media": "photo", "latitude": "0", "id": "156087179", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 18:24:19", "license": "1", "title": "L1050195", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/156087241_97acdf1be9_o.jpg", "secret": "97acdf1be9", "media": "photo", "latitude": "0", "id": "156087241", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 18:24:36", "license": "1", "title": "L1050196", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/156087287_e331e2e2cb_o.jpg", "secret": "e331e2e2cb", "media": "photo", "latitude": "0", "id": "156087287", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 18:26:44", "license": "1", "title": "L1050199", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/156087858_32c91eb2a9_o.jpg", "secret": "32c91eb2a9", "media": "photo", "latitude": "0", "id": "156087858", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 18:26:53", "license": "1", "title": "L1050200", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/156087921_52f0eabee1_o.jpg", "secret": "52f0eabee1", "media": "photo", "latitude": "0", "id": "156087921", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 18:32:39", "license": "1", "title": "L1050201", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/156087956_362a9d703b_o.jpg", "secret": "362a9d703b", "media": "photo", "latitude": "0", "id": "156087956", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 18:48:38", "license": "1", "title": "L1050202", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/156088023_080928b9ba_o.jpg", "secret": "080928b9ba", "media": "photo", "latitude": "0", "id": "156088023", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 18:51:00", "license": "1", "title": "L1050203", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/156088092_84a2bf7b3c_o.jpg", "secret": "84a2bf7b3c", "media": "photo", "latitude": "0", "id": "156088092", "tags": "sanfrancisco boyfriend cookout memorialday brice"}, {"datetaken": "2006-05-29 18:52:56", "license": "1", "title": "L1050204", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/156088134_0550a0d467_o.jpg", "secret": "0550a0d467", "media": "photo", "latitude": "0", "id": "156088134", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 18:53:09", "license": "1", "title": "L1050205", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/156088185_fc3a48ddd6_o.jpg", "secret": "fc3a48ddd6", "media": "photo", "latitude": "0", "id": "156088185", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 18:53:22", "license": "1", "title": "L1050206", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/156088749_78af1a2c3b_o.jpg", "secret": "78af1a2c3b", "media": "photo", "latitude": "0", "id": "156088749", "tags": "sanfrancisco boyfriend cookout memorialday brice"}, {"datetaken": "2006-05-29 18:58:21", "license": "1", "title": "L1050207", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/156088777_8f01cd21b9_o.jpg", "secret": "8f01cd21b9", "media": "photo", "latitude": "0", "id": "156088777", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 18:58:25", "license": "1", "title": "L1050208", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/156088822_7b99cf7d2b_o.jpg", "secret": "7b99cf7d2b", "media": "photo", "latitude": "0", "id": "156088822", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 18:58:33", "license": "1", "title": "L1050209", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/156088875_c393dbaf1b_o.jpg", "secret": "c393dbaf1b", "media": "photo", "latitude": "0", "id": "156088875", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 19:05:25", "license": "1", "title": "L1050210", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/156088962_d89f33dc25_o.jpg", "secret": "d89f33dc25", "media": "photo", "latitude": "0", "id": "156088962", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 19:05:44", "license": "1", "title": "L1050211", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/156089028_22e7bbc891_o.jpg", "secret": "22e7bbc891", "media": "photo", "latitude": "0", "id": "156089028", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-29 19:07:40", "license": "1", "title": "L1050212", "text": "", "album_id": "72157594149296972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/156089077_13b24ea693_o.jpg", "secret": "13b24ea693", "media": "photo", "latitude": "0", "id": "156089077", "tags": "sanfrancisco cookout memorialday"}, {"datetaken": "2006-05-28 16:47:32", "license": "6", "title": "Happy", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/156822286_a8f10fe811_o.jpg", "secret": "a8f10fe811", "media": "photo", "latitude": "0", "id": "156822286", "tags": "bbq memorialday joolz"}, {"datetaken": "2006-05-28 16:47:53", "license": "6", "title": "Silly Faces 2", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/156822676_7b7bf56981_o.jpg", "secret": "7b7bf56981", "media": "photo", "latitude": "0", "id": "156822676", "tags": "bbq memorialday joolz"}, {"datetaken": "2006-05-28 16:48:04", "license": "6", "title": "You got something on your face.", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/156822863_536ed4790d_o.jpg", "secret": "536ed4790d", "media": "photo", "latitude": "0", "id": "156822863", "tags": "bbq quentin memorialday"}, {"datetaken": "2006-05-28 16:48:35", "license": "6", "title": "Father and Son Grill Conference", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/156823003_0679bcddbb_o.jpg", "secret": "0679bcddbb", "media": "photo", "latitude": "0", "id": "156823003", "tags": "rich bob bbq memorialday bork"}, {"datetaken": "2006-05-28 16:48:54", "license": "6", "title": "GRRRR", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/156823121_4bb0b9362f_o.jpg", "secret": "4bb0b9362f", "media": "photo", "latitude": "0", "id": "156823121", "tags": "bbq memorialday joolz"}, {"datetaken": "2006-05-28 16:49:40", "license": "6", "title": "Matthew in between activities", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/156823307_d5b122e5b6_o.jpg", "secret": "d5b122e5b6", "media": "photo", "latitude": "0", "id": "156823307", "tags": "matthew bbq memorialday"}, {"datetaken": "2006-05-28 16:50:38", "license": "6", "title": "Cheese!", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/156823384_e8f4d65c82_o.jpg", "secret": "e8f4d65c82", "media": "photo", "latitude": "0", "id": "156823384", "tags": "meghan bbq memorialday"}, {"datetaken": "2006-05-28 16:50:49", "license": "6", "title": "", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/156823450_aaf6faf0e3_o.jpg", "secret": "aaf6faf0e3", "media": "photo", "latitude": "0", "id": "156823450", "tags": "meghan bbq memorialday"}, {"datetaken": "2006-05-28 16:50:59", "license": "6", "title": "Meghan and her million dollar smile", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/156823587_d466bd98eb_o.jpg", "secret": "d466bd98eb", "media": "photo", "latitude": "0", "id": "156823587", "tags": "meghan bbq memorialday"}, {"datetaken": "2006-05-28 16:52:16", "license": "6", "title": "", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/156823646_f1495c3b53_o.jpg", "secret": "f1495c3b53", "media": "photo", "latitude": "0", "id": "156823646", "tags": "bbq memorialday marykatherine"}, {"datetaken": "2006-05-28 16:53:20", "license": "6", "title": "", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/156823744_6096e2f96d_o.jpg", "secret": "6096e2f96d", "media": "photo", "latitude": "0", "id": "156823744", "tags": "matt bbq vaughan memorialday"}, {"datetaken": "2006-05-28 16:53:21", "license": "6", "title": "That's my boy!", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/156823854_d54e5025a7_o.jpg", "secret": "d54e5025a7", "media": "photo", "latitude": "0", "id": "156823854", "tags": "matt bbq vaughan memorialday"}, {"datetaken": "2006-05-28 16:54:17", "license": "6", "title": "Karen and Meghan", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/156824085_28b1c3dabc_o.jpg", "secret": "28b1c3dabc", "media": "photo", "latitude": "0", "id": "156824085", "tags": "meghan bbq karen memorialday"}, {"datetaken": "2006-05-28 16:54:50", "license": "6", "title": "Rich workin' the grill", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/156824174_268e217e94_o.jpg", "secret": "268e217e94", "media": "photo", "latitude": "0", "id": "156824174", "tags": "rich bbq grill memorialday bork"}, {"datetaken": "2006-05-28 16:57:31", "license": "6", "title": "Q and MK", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/156824433_d27aa24f71_o.jpg", "secret": "d27aa24f71", "media": "photo", "latitude": "0", "id": "156824433", "tags": "bbq quentin memorialday marykatherine"}, {"datetaken": "2006-05-28 17:43:48", "license": "6", "title": "Popsicle Time", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/156824515_68c9d2a899_o.jpg", "secret": "68c9d2a899", "media": "photo", "latitude": "0", "id": "156824515", "tags": "kids bbq memorialday popsicles"}, {"datetaken": "2006-05-28 17:44:15", "license": "6", "title": "Karen lovin' on Vaughan", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/156824582_cdefefb1b1_o.jpg", "secret": "cdefefb1b1", "media": "photo", "latitude": "0", "id": "156824582", "tags": "bbq karen vaughan memorialday"}, {"datetaken": "2006-05-28 17:44:32", "license": "6", "title": "", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/156824657_3a2bd411d2_o.jpg", "secret": "3a2bd411d2", "media": "photo", "latitude": "0", "id": "156824657", "tags": "bbq memorialday joolz"}, {"datetaken": "2006-05-28 18:51:28", "license": "6", "title": "you comin?", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/156824721_6f597f0a92_o.jpg", "secret": "6f597f0a92", "media": "photo", "latitude": "0", "id": "156824721", "tags": "drew bbq memorialday"}, {"datetaken": "2006-05-28 18:51:36", "license": "6", "title": "", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/156824797_cc503dd0bc_o.jpg", "secret": "cc503dd0bc", "media": "photo", "latitude": "0", "id": "156824797", "tags": "smile drew bbq memorialday"}, {"datetaken": "2006-05-28 18:51:38", "license": "6", "title": "", "text": "", "album_id": "72157594150383025", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/156824906_0c6e215116_o.jpg", "secret": "0c6e215116", "media": "photo", "latitude": "0", "id": "156824906", "tags": "smile drew bbq memorialday"}, {"datetaken": "2005-05-08 16:37:54", "license": "3", "title": "The Pump House @ Mines Fall", "text": "", "album_id": "375116", "longitude": "-71.500396", "url_o": "https://farm1.staticflickr.com/11/15575968_aed9df975a_o.jpg", "secret": "aed9df975a", "media": "photo", "latitude": "42.756024", "id": "15575968", "tags": "water river geotagged mine newhampshire nh falls mothersday nashua geolat42750122 geolon71503771 minefalls starrgazrsown nhtownlandmarks"}, {"datetaken": "2005-05-08 16:38:01", "license": "3", "title": "@ Mines Fall", "text": "", "album_id": "375116", "longitude": "-71.500396", "url_o": "https://farm1.staticflickr.com/10/15577542_8ee8fc3e07_o.jpg", "secret": "8ee8fc3e07", "media": "photo", "latitude": "42.756024", "id": "15577542", "tags": "water river geotagged mine newhampshire nh falls mothersday nashua geolat42750122 geolon71503771 minefalls starrgazrsown"}, {"datetaken": "2005-05-08 16:38:51", "license": "3", "title": "@ Mines Fall", "text": "", "album_id": "375116", "longitude": "-71.500396", "url_o": "https://farm1.staticflickr.com/14/15576101_1cbd7b2f87_o.jpg", "secret": "1cbd7b2f87", "media": "photo", "latitude": "42.756024", "id": "15576101", "tags": "water river geotagged mine newhampshire nh falls mothersday nashua geolat42750122 geolon71503771 minefalls nhwaterfallproject starrgazrsown"}, {"datetaken": "2005-05-08 16:39:59", "license": "3", "title": "Locks @ Mines Fall", "text": "", "album_id": "375116", "longitude": "-71.500396", "url_o": "https://farm1.staticflickr.com/10/15576285_e2c3364925_o.jpg", "secret": "e2c3364925", "media": "photo", "latitude": "42.756024", "id": "15576285", "tags": "water river geotagged mine newhampshire nh falls mothersday nashua geolat42750122 geolon71503771 minefalls starrgazrsown"}, {"datetaken": "2005-05-08 16:40:51", "license": "3", "title": "Locks @ Mines Fall", "text": "", "album_id": "375116", "longitude": "-71.500396", "url_o": "https://farm1.staticflickr.com/10/15576442_ad3fdbce38_o.jpg", "secret": "ad3fdbce38", "media": "photo", "latitude": "42.756024", "id": "15576442", "tags": "water river geotagged mine newhampshire nh falls mothersday nashua geolat42750122 geolon71503771 minefalls starrgazrsown"}, {"datetaken": "2005-05-08 16:41:37", "license": "3", "title": "Locks and Falls @ Mine Falls", "text": "", "album_id": "375116", "longitude": "-71.500396", "url_o": "https://farm1.staticflickr.com/11/15576579_f7100240a5_o.jpg", "secret": "f7100240a5", "media": "photo", "latitude": "42.756024", "id": "15576579", "tags": "water river geotagged mine newhampshire nh falls mothersday nashua geolat42750122 geolon71503771 minefalls starrgazrsown"}, {"datetaken": "2005-05-08 16:41:53", "license": "3", "title": "@ Mines Fall", "text": "", "album_id": "375116", "longitude": "-71.500396", "url_o": "https://farm1.staticflickr.com/11/15576766_02416776a3_o.jpg", "secret": "02416776a3", "media": "photo", "latitude": "42.756024", "id": "15576766", "tags": "water river geotagged mine newhampshire nh falls mothersday nashua geolat42750122 geolon71503771 minefalls nhwaterfallproject starrgazrsown"}, {"datetaken": "2005-05-08 16:46:55", "license": "3", "title": "Small Lock @ Mine Falls", "text": "", "album_id": "375116", "longitude": "-71.500396", "url_o": "https://farm1.staticflickr.com/14/15576952_8219143f35_o.jpg", "secret": "8219143f35", "media": "photo", "latitude": "42.756024", "id": "15576952", "tags": "water river geotagged mine newhampshire nh falls mothersday nashua geolat42750122 geolon71503771 minefalls nhwaterfallproject starrgazrsown"}, {"datetaken": "2005-05-08 16:48:39", "license": "3", "title": "Brotherly Love", "text": "", "album_id": "375116", "longitude": "-71.500396", "url_o": "https://farm1.staticflickr.com/13/15577182_4d209ab912_o.jpg", "secret": "4d209ab912", "media": "photo", "latitude": "42.756024", "id": "15577182", "tags": "water river children geotagged ian amber mine newhampshire nh siblings falls 16 mothersday nashua minefalls starrgazrsown geo:lat=42750122 geo:lon=71503771"}, {"datetaken": "2005-05-08 16:51:35", "license": "3", "title": "@ Mine Falls", "text": "", "album_id": "375116", "longitude": "-71.500396", "url_o": "https://farm1.staticflickr.com/9/15577358_57a70029f7_o.jpg", "secret": "57a70029f7", "media": "photo", "latitude": "42.756024", "id": "15577358", "tags": "water river geotagged mine newhampshire nh falls mothersday nashua geolat42750122 geolon71503771 minefalls starrgazrsown"}, {"datetaken": "2005-05-08 16:56:01", "license": "3", "title": "@ Mines Falls", "text": "", "album_id": "375116", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/15581263_aadbd42e10_o.jpg", "secret": "aadbd42e10", "media": "photo", "latitude": "0", "id": "15581263", "tags": "mothersday starrgazrsown"}, {"datetaken": "2005-05-08 16:57:49", "license": "3", "title": "@ Mines Falls", "text": "", "album_id": "375116", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15581515_83e04638f7_o.jpg", "secret": "83e04638f7", "media": "photo", "latitude": "0", "id": "15581515", "tags": "mothersday starrgazrsown"}, {"datetaken": "2005-05-08 16:59:55", "license": "3", "title": "@ Mines Falls", "text": "", "album_id": "375116", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/15581803_f7b41fc02b_o.jpg", "secret": "f7b41fc02b", "media": "photo", "latitude": "0", "id": "15581803", "tags": "mothersday starrgazrsown"}, {"datetaken": "2005-05-08 17:00:20", "license": "3", "title": "@ Mines Falls", "text": "", "album_id": "375116", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15582018_9eedb8c9ff_o.jpg", "secret": "9eedb8c9ff", "media": "photo", "latitude": "0", "id": "15582018", "tags": "mothersday starrgazrsown"}, {"datetaken": "2005-05-08 17:02:28", "license": "3", "title": "@ Mine Falls", "text": "", "album_id": "375116", "longitude": "-71.500396", "url_o": "https://farm1.staticflickr.com/12/15582142_33bbab0cc8_o.jpg", "secret": "33bbab0cc8", "media": "photo", "latitude": "42.756024", "id": "15582142", "tags": "river geotagged mine newhampshire nh falls mothersday nashua geolat42750122 geolon71503771 minefalls starrgazrsown"}, {"datetaken": "2005-05-08 17:06:30", "license": "3", "title": "Bridge @ Mine Falls", "text": "", "album_id": "375116", "longitude": "-71.500396", "url_o": "https://farm1.staticflickr.com/9/15582736_9acad16708_o.jpg", "secret": "9acad16708", "media": "photo", "latitude": "42.756024", "id": "15582736", "tags": "river geotagged mine newhampshire nh falls mothersday nashua geolat42750122 geolon71503771 minefalls starrgazrsown"}, {"datetaken": "2005-05-08 17:06:39", "license": "3", "title": "@ Mine Falls", "text": "", "album_id": "375116", "longitude": "-71.500396", "url_o": "https://farm1.staticflickr.com/11/15582906_d89b4274c9_o.jpg", "secret": "d89b4274c9", "media": "photo", "latitude": "42.756024", "id": "15582906", "tags": "river geotagged mine newhampshire nh falls mothersday nashua geolat42750122 geolon71503771 minefalls starrgazrsown"}, {"datetaken": "2005-05-08 17:07:37", "license": "3", "title": "Violets @ Mine Falls", "text": "", "album_id": "375116", "longitude": "-71.500396", "url_o": "https://farm1.staticflickr.com/10/15582974_c3f3e45660_o.jpg", "secret": "c3f3e45660", "media": "photo", "latitude": "42.756024", "id": "15582974", "tags": "river geotagged mine newhampshire nh falls mothersday nashua geolat42750122 geolon71503771 minefalls starrgazrsown"}, {"datetaken": "2005-05-08 17:14:31", "license": "3", "title": "@ Mine Falls", "text": "", "album_id": "375116", "longitude": "-71.500396", "url_o": "https://farm1.staticflickr.com/13/15583175_77f0d0031f_o.jpg", "secret": "77f0d0031f", "media": "photo", "latitude": "42.756024", "id": "15583175", "tags": "river geotagged mine newhampshire nh falls mothersday nashua geolat42750122 geolon71503771 minefalls starrgazrsown"}, {"datetaken": "2005-05-08 17:15:53", "license": "3", "title": "Ian @ Mine Falls", "text": "", "album_id": "375116", "longitude": "-71.500396", "url_o": "https://farm1.staticflickr.com/11/15583406_c001f59e61_o.jpg", "secret": "c001f59e61", "media": "photo", "latitude": "42.756024", "id": "15583406", "tags": "river geotagged mine newhampshire nh falls mothersday nashua geolat42750122 geolon71503771 minefalls starrgazrsown"}, {"datetaken": "2001-09-06 21:44:21", "license": "1", "title": "DCP_0993", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/79408119_c2859a4c71_o.jpg", "secret": "c2859a4c71", "media": "photo", "latitude": "0", "id": "79408119", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-06 21:53:08", "license": "1", "title": "DCP_0999", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/79408199_3c38710303_o.jpg", "secret": "3c38710303", "media": "photo", "latitude": "0", "id": "79408199", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-06 21:54:42", "license": "1", "title": "DCP_1000", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/79408257_df3b42acc6_o.jpg", "secret": "df3b42acc6", "media": "photo", "latitude": "0", "id": "79408257", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-06 21:56:23", "license": "1", "title": "DCP_1001", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/79408350_113c8dbc5b_o.jpg", "secret": "113c8dbc5b", "media": "photo", "latitude": "0", "id": "79408350", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-06 21:56:44", "license": "1", "title": "DCP_1002", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/79408436_2213124544_o.jpg", "secret": "2213124544", "media": "photo", "latitude": "0", "id": "79408436", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-06 22:09:54", "license": "1", "title": "DCP_1003", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/79408488_11f6d014a7_o.jpg", "secret": "11f6d014a7", "media": "photo", "latitude": "0", "id": "79408488", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-06 22:17:55", "license": "1", "title": "DCP_1007", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/79408514_44a64e05e7_o.jpg", "secret": "44a64e05e7", "media": "photo", "latitude": "0", "id": "79408514", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-06 22:17:55", "license": "1", "title": "Mother's Day Photo", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/79411764_b5213f113e_o.jpg", "secret": "b5213f113e", "media": "photo", "latitude": "0", "id": "79411764", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-06 22:18:49", "license": "1", "title": "DCP_1008", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/79408569_d0079de6f9_o.jpg", "secret": "d0079de6f9", "media": "photo", "latitude": "0", "id": "79408569", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-06 22:19:46", "license": "1", "title": "DCP_1009", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/79408611_2b2881987f_o.jpg", "secret": "2b2881987f", "media": "photo", "latitude": "0", "id": "79408611", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 09:20:25", "license": "1", "title": "DCP_1010", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/79408720_3b1999e24b_o.jpg", "secret": "3b1999e24b", "media": "photo", "latitude": "0", "id": "79408720", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 09:20:31", "license": "1", "title": "DCP_1011", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/79408789_1dad146a44_o.jpg", "secret": "1dad146a44", "media": "photo", "latitude": "0", "id": "79408789", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 09:20:35", "license": "1", "title": "DCP_1012", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/79408862_bb142cb7e5_o.jpg", "secret": "bb142cb7e5", "media": "photo", "latitude": "0", "id": "79408862", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 09:20:39", "license": "1", "title": "DCP_1013", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/79408934_0e537fafe3_o.jpg", "secret": "0e537fafe3", "media": "photo", "latitude": "0", "id": "79408934", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 09:20:44", "license": "1", "title": "DCP_1014", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/79409027_108cd6cab5_o.jpg", "secret": "108cd6cab5", "media": "photo", "latitude": "0", "id": "79409027", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 09:21:00", "license": "1", "title": "DCP_1016", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/79409115_293b71ee1f_o.jpg", "secret": "293b71ee1f", "media": "photo", "latitude": "0", "id": "79409115", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 09:21:08", "license": "1", "title": "DCP_1017", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/79409201_1e112d9360_o.jpg", "secret": "1e112d9360", "media": "photo", "latitude": "0", "id": "79409201", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 09:21:26", "license": "1", "title": "DCP_1018", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/79409292_5e0047c31a_o.jpg", "secret": "5e0047c31a", "media": "photo", "latitude": "0", "id": "79409292", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:04:38", "license": "1", "title": "DCP_1019", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/79409368_4d9389facd_o.jpg", "secret": "4d9389facd", "media": "photo", "latitude": "0", "id": "79409368", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:04:43", "license": "1", "title": "DCP_1020", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/79409444_d8e6b2c726_o.jpg", "secret": "d8e6b2c726", "media": "photo", "latitude": "0", "id": "79409444", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:05:38", "license": "1", "title": "DCP_1021", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/79409508_4779e620a9_o.jpg", "secret": "4779e620a9", "media": "photo", "latitude": "0", "id": "79409508", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:05:56", "license": "1", "title": "DCP_1022", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/79409574_f0dbae6399_o.jpg", "secret": "f0dbae6399", "media": "photo", "latitude": "0", "id": "79409574", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:18:57", "license": "1", "title": "DCP_1023", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/79409723_612c9f71b1_o.jpg", "secret": "612c9f71b1", "media": "photo", "latitude": "0", "id": "79409723", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:19:03", "license": "1", "title": "DCP_1024", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/79409831_efec4789a8_o.jpg", "secret": "efec4789a8", "media": "photo", "latitude": "0", "id": "79409831", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:21:24", "license": "1", "title": "DCP_1025", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/79409923_8a438f7bf7_o.jpg", "secret": "8a438f7bf7", "media": "photo", "latitude": "0", "id": "79409923", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:25:02", "license": "1", "title": "DCP_1026", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/79410023_24dae58d59_o.jpg", "secret": "24dae58d59", "media": "photo", "latitude": "0", "id": "79410023", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:25:11", "license": "1", "title": "DCP_1027", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/79410090_14a422a118_o.jpg", "secret": "14a422a118", "media": "photo", "latitude": "0", "id": "79410090", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:25:19", "license": "1", "title": "DCP_1028", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/79410163_71a4b30bbe_o.jpg", "secret": "71a4b30bbe", "media": "photo", "latitude": "0", "id": "79410163", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:25:34", "license": "1", "title": "DCP_1029", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/79410239_6029d791f3_o.jpg", "secret": "6029d791f3", "media": "photo", "latitude": "0", "id": "79410239", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:29:14", "license": "1", "title": "DCP_1030", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/79410344_c882e4a5c9_o.jpg", "secret": "c882e4a5c9", "media": "photo", "latitude": "0", "id": "79410344", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:29:20", "license": "1", "title": "DCP_1031", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/79410496_20a5878e75_o.jpg", "secret": "20a5878e75", "media": "photo", "latitude": "0", "id": "79410496", "tags": "beach maine higginsbeach"}, {"datetaken": "2001-09-07 10:29:27", "license": "1", "title": "DCP_1032", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/79410593_9a0bf1ef24_o.jpg", "secret": "9a0bf1ef24", "media": "photo", "latitude": "0", "id": "79410593", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:30:37", "license": "1", "title": "DCP_1033", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/79410673_2691ce0612_o.jpg", "secret": "2691ce0612", "media": "photo", "latitude": "0", "id": "79410673", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:33:17", "license": "1", "title": "DCP_1034", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/79410779_c699d957a1_o.jpg", "secret": "c699d957a1", "media": "photo", "latitude": "0", "id": "79410779", "tags": "ocean family seaweed beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:33:30", "license": "1", "title": "DCP_1035", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/79410913_840f7446cf_o.jpg", "secret": "840f7446cf", "media": "photo", "latitude": "0", "id": "79410913", "tags": "ocean seaweed beach maine higginsbeach"}, {"datetaken": "2001-09-07 10:34:20", "license": "1", "title": "DCP_1036", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/79411038_dd11a0a9c5_o.jpg", "secret": "dd11a0a9c5", "media": "photo", "latitude": "0", "id": "79411038", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:39:24", "license": "1", "title": "DCP_1037", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/79411155_986aeb18d8_o.jpg", "secret": "986aeb18d8", "media": "photo", "latitude": "0", "id": "79411155", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:39:34", "license": "1", "title": "DCP_1038", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/79411228_35ead45e8c_o.jpg", "secret": "35ead45e8c", "media": "photo", "latitude": "0", "id": "79411228", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:39:43", "license": "1", "title": "DCP_1039", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/79411297_03c5d89013_o.jpg", "secret": "03c5d89013", "media": "photo", "latitude": "0", "id": "79411297", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:50:26", "license": "1", "title": "DCP_1040", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/79411350_bb29621a3a_o.jpg", "secret": "bb29621a3a", "media": "photo", "latitude": "0", "id": "79411350", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 10:54:25", "license": "1", "title": "DCP_1041", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/79411406_44ec266bab_o.jpg", "secret": "44ec266bab", "media": "photo", "latitude": "0", "id": "79411406", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 11:35:58", "license": "1", "title": "DCP_1042", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/79411506_2afb8bad31_o.jpg", "secret": "2afb8bad31", "media": "photo", "latitude": "0", "id": "79411506", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 11:36:08", "license": "1", "title": "DCP_1043", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/79411619_3784b77b5d_o.jpg", "secret": "3784b77b5d", "media": "photo", "latitude": "0", "id": "79411619", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2001-09-07 11:36:29", "license": "1", "title": "DCP_1044", "text": "", "album_id": "1699506", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/79411673_a20f2b6b66_o.jpg", "secret": "a20f2b6b66", "media": "photo", "latitude": "0", "id": "79411673", "tags": "family beach mom kate maine higginsbeach"}, {"datetaken": "2003-02-05 13:59:47", "license": "5", "title": "The Trees", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/118261131_e90f249c28_o.jpg", "secret": "e90f249c28", "media": "photo", "latitude": "0", "id": "118261131", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:05:10", "license": "5", "title": "****ed Forest", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/118261427_e234741033_o.jpg", "secret": "e234741033", "media": "photo", "latitude": "0", "id": "118261427", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:09:09", "license": "5", "title": "Rotten", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/118261713_e740057247_o.jpg", "secret": "e740057247", "media": "photo", "latitude": "0", "id": "118261713", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:12:15", "license": "5", "title": "Babies", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/118262039_c6606edc82_o.jpg", "secret": "c6606edc82", "media": "photo", "latitude": "0", "id": "118262039", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:14:42", "license": "5", "title": "Stump", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/118262379_6f7563958c_o.jpg", "secret": "6f7563958c", "media": "photo", "latitude": "0", "id": "118262379", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:17:19", "license": "5", "title": "Feeding", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/118262641_f79c4280a1_o.jpg", "secret": "f79c4280a1", "media": "photo", "latitude": "0", "id": "118262641", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:17:25", "license": "5", "title": "Moss Elixir", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/118262891_4ea022e4b7_o.jpg", "secret": "4ea022e4b7", "media": "photo", "latitude": "0", "id": "118262891", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:18:24", "license": "5", "title": "Pathfinder", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/118263158_af5732f38a_o.jpg", "secret": "af5732f38a", "media": "photo", "latitude": "0", "id": "118263158", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:18:54", "license": "5", "title": "Callum Bare", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/118263376_e44b0907f9_o.jpg", "secret": "e44b0907f9", "media": "photo", "latitude": "0", "id": "118263376", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:24:03", "license": "5", "title": "DSCF0029", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/118263605_6f81d72c08_o.jpg", "secret": "6f81d72c08", "media": "photo", "latitude": "0", "id": "118263605", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:24:09", "license": "5", "title": "Onwards and Upwards", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/118264400_a1511e5fd0_o.jpg", "secret": "a1511e5fd0", "media": "photo", "latitude": "0", "id": "118264400", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:24:32", "license": "5", "title": "Roots", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/118264638_b39246c30f_o.jpg", "secret": "b39246c30f", "media": "photo", "latitude": "0", "id": "118264638", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:35:25", "license": "5", "title": "Why Keep a Tree and Bark Yourself!", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/118264891_ab5963c39c_o.jpg", "secret": "ab5963c39c", "media": "photo", "latitude": "0", "id": "118264891", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:35:56", "license": "5", "title": "Rural", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/118265160_783919128d_o.jpg", "secret": "783919128d", "media": "photo", "latitude": "0", "id": "118265160", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:36:41", "license": "5", "title": "Gate, Never!", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/118265428_6b350ed369_o.jpg", "secret": "6b350ed369", "media": "photo", "latitude": "0", "id": "118265428", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:38:47", "license": "5", "title": "Coo!", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/118265697_a8a27e7c37_o.jpg", "secret": "a8a27e7c37", "media": "photo", "latitude": "0", "id": "118265697", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:43:05", "license": "5", "title": "Another Gate!", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/118265924_75656543d1_o.jpg", "secret": "75656543d1", "media": "photo", "latitude": "0", "id": "118265924", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:44:55", "license": "5", "title": "Farm", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/118266148_00dfe23e04_o.jpg", "secret": "00dfe23e04", "media": "photo", "latitude": "0", "id": "118266148", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:46:23", "license": "5", "title": "Ivy, Ivy, Ivy", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/118266909_83fc36ea0e_o.jpg", "secret": "83fc36ea0e", "media": "photo", "latitude": "0", "id": "118266909", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:52:21", "license": "5", "title": "Fleur", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/118267158_8dae1d6553_o.jpg", "secret": "8dae1d6553", "media": "photo", "latitude": "0", "id": "118267158", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 14:57:27", "license": "5", "title": "Spring is Springing With Catkins", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/118267386_8f898d5ede_o.jpg", "secret": "8f898d5ede", "media": "photo", "latitude": "0", "id": "118267386", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 15:03:43", "license": "5", "title": "Barn", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/118267622_60e4768e12_o.jpg", "secret": "60e4768e12", "media": "photo", "latitude": "0", "id": "118267622", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 15:04:28", "license": "5", "title": "Nice Bricks!", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/118267858_d6a6acb879_o.jpg", "secret": "d6a6acb879", "media": "photo", "latitude": "0", "id": "118267858", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 15:05:46", "license": "5", "title": "The Goats Are Gonna Get You", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/118268111_557b853f36_o.jpg", "secret": "557b853f36", "media": "photo", "latitude": "0", "id": "118268111", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 15:08:19", "license": "5", "title": "Fields", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/118268372_7c08321a10_o.jpg", "secret": "7c08321a10", "media": "photo", "latitude": "0", "id": "118268372", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 15:20:21", "license": "5", "title": "Cheshire Soil", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/118268710_e15e325596_o.jpg", "secret": "e15e325596", "media": "photo", "latitude": "0", "id": "118268710", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 15:23:51", "license": "5", "title": "Gorse I Can", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/118269001_035e06b123_o.jpg", "secret": "035e06b123", "media": "photo", "latitude": "0", "id": "118269001", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 15:23:59", "license": "5", "title": "Putting on the Stile", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/118269228_48668301fb_o.jpg", "secret": "48668301fb", "media": "photo", "latitude": "0", "id": "118269228", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 15:24:51", "license": "5", "title": "Gorse You Can Malcolm!", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/118269512_a2d1fc46bb_o.jpg", "secret": "a2d1fc46bb", "media": "photo", "latitude": "0", "id": "118269512", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 15:31:37", "license": "5", "title": "Way Up There", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/118269774_8709e86d6e_o.jpg", "secret": "8709e86d6e", "media": "photo", "latitude": "0", "id": "118269774", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2003-02-05 15:31:52", "license": "5", "title": "Trees, the Trees", "text": "", "album_id": "72057594091145852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/118270001_db9b32a83b_o.jpg", "secret": "db9b32a83b", "media": "photo", "latitude": "0", "id": "118270001", "tags": "cheshire mothersday rambling delamereforest calsnewboots"}, {"datetaken": "2006-05-13 23:15:44", "license": "5", "title": "mothers-day-00", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/146740612_5d9e979c16_o.jpg", "secret": "5d9e979c16", "media": "photo", "latitude": "0", "id": "146740612", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-13 23:16:03", "license": "5", "title": "mothers-day-01", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/146740697_65e52aab8a_o.jpg", "secret": "65e52aab8a", "media": "photo", "latitude": "0", "id": "146740697", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-13 23:16:42", "license": "5", "title": "mothers-day-02", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/146740793_d0f93acd4f_o.jpg", "secret": "d0f93acd4f", "media": "photo", "latitude": "0", "id": "146740793", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-13 23:21:26", "license": "5", "title": "mothers-day-03", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/146740869_ef1c0b4cf7_o.jpg", "secret": "ef1c0b4cf7", "media": "photo", "latitude": "0", "id": "146740869", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-13 23:21:34", "license": "5", "title": "mothers-day-04", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/146740960_f559764436_o.jpg", "secret": "f559764436", "media": "photo", "latitude": "0", "id": "146740960", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-13 23:27:29", "license": "5", "title": "mothers-day-05", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/146741059_d7e06890d9_o.jpg", "secret": "d7e06890d9", "media": "photo", "latitude": "0", "id": "146741059", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-13 23:27:45", "license": "5", "title": "mothers-day-06", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/146741160_ca45c50c80_o.jpg", "secret": "ca45c50c80", "media": "photo", "latitude": "0", "id": "146741160", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-13 23:28:44", "license": "5", "title": "mothers-day-07", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/146741276_b824c92793_o.jpg", "secret": "b824c92793", "media": "photo", "latitude": "0", "id": "146741276", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-13 23:49:04", "license": "5", "title": "mothers-day-08", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/146741368_26102beea5_o.jpg", "secret": "26102beea5", "media": "photo", "latitude": "0", "id": "146741368", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-13 23:49:19", "license": "5", "title": "mothers-day-09", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/146741439_b854b06f02_o.jpg", "secret": "b854b06f02", "media": "photo", "latitude": "0", "id": "146741439", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-13 23:49:26", "license": "5", "title": "mothers-day-10", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/146741521_d5da182ccc_o.jpg", "secret": "d5da182ccc", "media": "photo", "latitude": "0", "id": "146741521", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-13 23:49:30", "license": "5", "title": "mothers-day-11", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/146741616_52c862df71_o.jpg", "secret": "52c862df71", "media": "photo", "latitude": "0", "id": "146741616", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-13 23:49:35", "license": "5", "title": "mothers-day-12", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/146741757_d658a206fb_o.jpg", "secret": "d658a206fb", "media": "photo", "latitude": "0", "id": "146741757", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-13 23:49:38", "license": "5", "title": "mothers-day-13", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/146741878_bde41f5a30_o.jpg", "secret": "bde41f5a30", "media": "photo", "latitude": "0", "id": "146741878", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-13 23:49:44", "license": "5", "title": "mothers-day-14", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/146741979_c0605d4d8b_o.jpg", "secret": "c0605d4d8b", "media": "photo", "latitude": "0", "id": "146741979", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-13 23:54:01", "license": "5", "title": "mothers-day-15", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/146742057_240f6f6862_o.jpg", "secret": "240f6f6862", "media": "photo", "latitude": "0", "id": "146742057", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-13 23:54:07", "license": "5", "title": "mothers-day-16", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/146742164_943aec35ff_o.jpg", "secret": "943aec35ff", "media": "photo", "latitude": "0", "id": "146742164", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-14 00:02:25", "license": "5", "title": "mothers-day-17", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/146742237_b26f711a1b_o.jpg", "secret": "b26f711a1b", "media": "photo", "latitude": "0", "id": "146742237", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-14 00:02:32", "license": "5", "title": "mothers-day-18", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/146742317_e208d630f0_o.jpg", "secret": "e208d630f0", "media": "photo", "latitude": "0", "id": "146742317", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-14 00:03:39", "license": "5", "title": "mothers-day-19", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/146742400_37ad7ed07a_o.jpg", "secret": "37ad7ed07a", "media": "photo", "latitude": "0", "id": "146742400", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-14 00:10:05", "license": "5", "title": "mothers-day-20", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/146742490_bf0b1842fc_o.jpg", "secret": "bf0b1842fc", "media": "photo", "latitude": "0", "id": "146742490", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-14 00:35:13", "license": "5", "title": "mothers-day-21", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/146742565_fde39dd78f_o.jpg", "secret": "fde39dd78f", "media": "photo", "latitude": "0", "id": "146742565", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-14 00:44:26", "license": "5", "title": "mothers-day-22", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/146742627_af3f5c3911_o.jpg", "secret": "af3f5c3911", "media": "photo", "latitude": "0", "id": "146742627", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-14 00:50:45", "license": "5", "title": "mothers-day-23", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/146742685_19e6ff7d95_o.jpg", "secret": "19e6ff7d95", "media": "photo", "latitude": "0", "id": "146742685", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-14 00:52:13", "license": "5", "title": "mothers-day-24", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/146742716_2c04342fda_o.jpg", "secret": "2c04342fda", "media": "photo", "latitude": "0", "id": "146742716", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-14 00:53:07", "license": "5", "title": "mothers-day-25", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/146742770_f2215d5314_o.jpg", "secret": "f2215d5314", "media": "photo", "latitude": "0", "id": "146742770", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-14 00:53:22", "license": "5", "title": "mothers-day-26", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/146742856_c3bd6ba31a_o.jpg", "secret": "c3bd6ba31a", "media": "photo", "latitude": "0", "id": "146742856", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-14 00:54:51", "license": "5", "title": "mothers-day-27", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/146742923_74f2759992_o.jpg", "secret": "74f2759992", "media": "photo", "latitude": "0", "id": "146742923", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-14 00:55:04", "license": "5", "title": "mothers-day-28", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/146742967_5053359660_o.jpg", "secret": "5053359660", "media": "photo", "latitude": "0", "id": "146742967", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-14 02:23:56", "license": "5", "title": "mothers-day-29", "text": "", "album_id": "72057594135262167", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/146743025_cb29c06229_o.jpg", "secret": "cb29c06229", "media": "photo", "latitude": "0", "id": "146743025", "tags": "sachin beach mom la day 2006 mothers biking jolla suneel"}, {"datetaken": "2006-05-14 18:39:41", "license": "1", "title": "My new Palm Treo 650", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/147651477_6e4c7662d7_o.jpg", "secret": "6e4c7662d7", "media": "photo", "latitude": "0", "id": "147651477", "tags": "treo treo650 2006 palm mothersday"}, {"datetaken": "2006-05-14 18:41:18", "license": "1", "title": "Janene", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/147651368_e565a841bc_o.jpg", "secret": "e565a841bc", "media": "photo", "latitude": "0", "id": "147651368", "tags": "2006 mothersday janene"}, {"datetaken": "2006-05-14 18:42:35", "license": "1", "title": "Puzzle piece", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/147651531_ddbff20759_o.jpg", "secret": "ddbff20759", "media": "photo", "latitude": "0", "id": "147651531", "tags": "2006 puzzle jigsaw piece mothersday"}, {"datetaken": "2006-05-14 18:43:19", "license": "1", "title": "Puzzle piece", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/147651554_1a357ce6d0_o.jpg", "secret": "1a357ce6d0", "media": "photo", "latitude": "0", "id": "147651554", "tags": "2006 puzzle jigsaw piece mothersday"}, {"datetaken": "2006-05-14 18:45:35", "license": "1", "title": "Mother's Day 2006 005", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/147651626_d4dcfe4d79_o.jpg", "secret": "d4dcfe4d79", "media": "photo", "latitude": "0", "id": "147651626", "tags": "2006 mothersday georgine"}, {"datetaken": "2006-05-14 18:45:48", "license": "1", "title": "Mother's Day 2006 006", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/147651670_fe7ce73ef5_o.jpg", "secret": "fe7ce73ef5", "media": "photo", "latitude": "0", "id": "147651670", "tags": "2006 mothersday georgine"}, {"datetaken": "2006-05-14 18:47:01", "license": "1", "title": "Mother's Day 2006 007", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/147651701_a30b7bd6b1_o.jpg", "secret": "a30b7bd6b1", "media": "photo", "latitude": "0", "id": "147651701", "tags": "2006 mothersday georgine"}, {"datetaken": "2006-05-14 18:47:51", "license": "1", "title": "Mother's Day 2006 008", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/147651752_d9b24bac0a_o.jpg", "secret": "d9b24bac0a", "media": "photo", "latitude": "0", "id": "147651752", "tags": "foot 2006 slippers mothersday georgine"}, {"datetaken": "2006-05-14 18:48:10", "license": "1", "title": "Mother's Day 2006 009", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/147651795_34a86a458f_o.jpg", "secret": "34a86a458f", "media": "photo", "latitude": "0", "id": "147651795", "tags": "2006 janet mothersday"}, {"datetaken": "2006-05-14 18:59:39", "license": "1", "title": "Mother's Day 2006 010", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/147651829_90c96b8b46_o.jpg", "secret": "90c96b8b46", "media": "photo", "latitude": "0", "id": "147651829", "tags": "2006 simba mothersday kathlene"}, {"datetaken": "2006-05-14 19:44:07", "license": "1", "title": "Mother's Day 2006 013", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/147651862_80642647ce_o.jpg", "secret": "80642647ce", "media": "photo", "latitude": "0", "id": "147651862", "tags": "2006 janet mothersday georgine christene"}, {"datetaken": "2006-05-14 19:57:39", "license": "1", "title": "Mother's Day 2006 015", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/147651900_c1da41444a_o.jpg", "secret": "c1da41444a", "media": "photo", "latitude": "0", "id": "147651900", "tags": "bowl 2006 punch mothersday"}, {"datetaken": "2006-05-14 19:58:07", "license": "1", "title": "Mother's Day 2006 016", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/147651965_fcdc31ec2f_o.jpg", "secret": "fcdc31ec2f", "media": "photo", "latitude": "0", "id": "147651965", "tags": "bowl 2006 punch mothersday"}, {"datetaken": "2006-05-14 19:58:50", "license": "1", "title": "Mother's Day 2006 017", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/147652020_4b0c045e65_o.jpg", "secret": "4b0c045e65", "media": "photo", "latitude": "0", "id": "147652020", "tags": "gene 2006 janet mothersday georgine"}, {"datetaken": "2006-05-14 20:00:19", "license": "1", "title": "Mother's Day 2006 018", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/147652058_8c758693ac_o.jpg", "secret": "8c758693ac", "media": "photo", "latitude": "0", "id": "147652058", "tags": "pie frozen strawberry 2006 mothersday"}, {"datetaken": "2006-05-14 20:00:39", "license": "1", "title": "Mother's Day 2006 019", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/147652116_1b1e68dfb1_o.jpg", "secret": "1b1e68dfb1", "media": "photo", "latitude": "0", "id": "147652116", "tags": "pie frozen strawberry 2006 mothersday"}, {"datetaken": "2006-05-14 20:03:32", "license": "1", "title": "Mother's Day 2006 020", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/147652186_f72435d57f_o.jpg", "secret": "f72435d57f", "media": "photo", "latitude": "0", "id": "147652186", "tags": "pie frozen strawberry 2006 mothersday"}, {"datetaken": "2006-05-14 21:03:22", "license": "1", "title": "Mother's Day 2006 022", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/147652243_c2ef1901cb_o.jpg", "secret": "c2ef1901cb", "media": "photo", "latitude": "0", "id": "147652243", "tags": "2006 janet mothersday"}, {"datetaken": "2006-05-14 21:04:08", "license": "1", "title": "Mother's Day 2006 023", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/147652297_11049eaa8e_o.jpg", "secret": "11049eaa8e", "media": "photo", "latitude": "0", "id": "147652297", "tags": "2006 janet mothersday"}, {"datetaken": "2006-05-14 21:04:25", "license": "1", "title": "Mother's Day 2006 024", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/147652384_64a6557c33_o.jpg", "secret": "64a6557c33", "media": "photo", "latitude": "0", "id": "147652384", "tags": "2006 janet mothersday"}, {"datetaken": "2006-05-14 21:04:46", "license": "1", "title": "Mother's Day 2006 025", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/147652417_0cd5f14a2c_o.jpg", "secret": "0cd5f14a2c", "media": "photo", "latitude": "0", "id": "147652417", "tags": "2006 janet mothersday"}, {"datetaken": "2006-05-14 21:05:11", "license": "1", "title": "Mother's Day 2006 026", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/147652480_02fcffef0c_o.jpg", "secret": "02fcffef0c", "media": "photo", "latitude": "0", "id": "147652480", "tags": "2006 mothersday"}, {"datetaken": "2006-05-14 21:05:26", "license": "1", "title": "Mother's Day 2006 027", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/147652533_52500021b5_o.jpg", "secret": "52500021b5", "media": "photo", "latitude": "0", "id": "147652533", "tags": "2006 mothersday"}, {"datetaken": "2006-05-14 21:05:54", "license": "1", "title": "Mother's Day 2006 028", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/147652622_a40c52bab2_o.jpg", "secret": "a40c52bab2", "media": "photo", "latitude": "0", "id": "147652622", "tags": "2006 janet mothersday"}, {"datetaken": "2006-05-14 21:06:05", "license": "1", "title": "Mother's Day 2006 029", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/147652698_c1bb4234fd_o.jpg", "secret": "c1bb4234fd", "media": "photo", "latitude": "0", "id": "147652698", "tags": "2006 simba mothersday"}, {"datetaken": "2006-05-14 21:06:21", "license": "1", "title": "Mother's Day 2006 030", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/147652740_9431670381_o.jpg", "secret": "9431670381", "media": "photo", "latitude": "0", "id": "147652740", "tags": "2006 janet mothersday"}, {"datetaken": "2006-05-14 21:07:03", "license": "1", "title": "Mother's Day 2006 033", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/147652834_2854a74d24_o.jpg", "secret": "2854a74d24", "media": "photo", "latitude": "0", "id": "147652834", "tags": "2006 janet mothersday"}, {"datetaken": "2006-05-14 21:12:00", "license": "1", "title": "Mother's Day 2006 031", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/147652793_dfe62d3b69_o.jpg", "secret": "dfe62d3b69", "media": "photo", "latitude": "0", "id": "147652793", "tags": "2006 cricket mothersday"}, {"datetaken": "2006-05-14 21:13:25", "license": "1", "title": "Mother's Day 2006 035", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/147652890_665930bf9d_o.jpg", "secret": "665930bf9d", "media": "photo", "latitude": "0", "id": "147652890", "tags": "2006 simba mothersday christene"}, {"datetaken": "2006-05-14 21:13:41", "license": "1", "title": "Mother's Day 2006 036", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/147652925_037319c2bc_o.jpg", "secret": "037319c2bc", "media": "photo", "latitude": "0", "id": "147652925", "tags": "2006 simba mothersday christene"}, {"datetaken": "2006-05-14 21:13:48", "license": "1", "title": "Mother's Day 2006 037", "text": "", "album_id": "72057594136696437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/147652959_43ce9d6f7b_o.jpg", "secret": "43ce9d6f7b", "media": "photo", "latitude": "0", "id": "147652959", "tags": "2006 simba mothersday"}, {"datetaken": "2006-05-14 12:40:13", "license": "3", "title": "Mother's Day 2006", "text": "", "album_id": "72157594357207240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/116/286774206_b4d3f18ef4_o.jpg", "secret": "b4d3f18ef4", "media": "photo", "latitude": "0", "id": "286774206", "tags": ""}, {"datetaken": "2006-05-14 12:40:47", "license": "3", "title": "Mother's Day 2006", "text": "", "album_id": "72157594357207240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/101/286774214_843dfd4971_o.jpg", "secret": "843dfd4971", "media": "photo", "latitude": "0", "id": "286774214", "tags": ""}, {"datetaken": "2006-05-14 12:41:35", "license": "3", "title": "Mother's Day 2006", "text": "", "album_id": "72157594357207240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/111/286774224_f2c7adf162_o.jpg", "secret": "f2c7adf162", "media": "photo", "latitude": "0", "id": "286774224", "tags": ""}, {"datetaken": "2006-05-14 12:41:48", "license": "3", "title": "Mother's Day 2006", "text": "", "album_id": "72157594357207240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/100/286774228_85de2a480a_o.jpg", "secret": "85de2a480a", "media": "photo", "latitude": "0", "id": "286774228", "tags": ""}, {"datetaken": "2006-05-14 12:42:18", "license": "3", "title": "Mother's Day 2006", "text": "", "album_id": "72157594357207240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/103/286774190_fe51a42ced_o.jpg", "secret": "fe51a42ced", "media": "photo", "latitude": "0", "id": "286774190", "tags": ""}, {"datetaken": "2006-05-14 12:46:28", "license": "3", "title": "Mother's Day 2006", "text": "", "album_id": "72157594357207240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/117/286774142_39d9bc142f_o.jpg", "secret": "39d9bc142f", "media": "photo", "latitude": "0", "id": "286774142", "tags": ""}, {"datetaken": "2006-05-14 12:47:01", "license": "3", "title": "Mother's Day 2006", "text": "", "album_id": "72157594357207240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/286774149_e31b5204ae_o.jpg", "secret": "e31b5204ae", "media": "photo", "latitude": "0", "id": "286774149", "tags": ""}, {"datetaken": "2006-05-14 12:48:50", "license": "3", "title": "Mother's Day 2006", "text": "", "album_id": "72157594357207240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/108/286774160_dcf3f17c93_o.jpg", "secret": "dcf3f17c93", "media": "photo", "latitude": "0", "id": "286774160", "tags": ""}, {"datetaken": "2006-05-14 14:01:28", "license": "3", "title": "Mother's Day 2006", "text": "", "album_id": "72157594357207240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/101/286774165_521286fea8_o.jpg", "secret": "521286fea8", "media": "photo", "latitude": "0", "id": "286774165", "tags": ""}, {"datetaken": "2006-05-14 14:01:41", "license": "3", "title": "Mother's Day 2006", "text": "", "album_id": "72157594357207240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/115/286774180_b2c2df15a9_o.jpg", "secret": "b2c2df15a9", "media": "photo", "latitude": "0", "id": "286774180", "tags": ""}, {"datetaken": "2003-05-09 22:53:52", "license": "2", "title": "Mom's living room", "text": "", "album_id": "72157594369842318", "longitude": "-90.134239", "url_o": "https://farm1.staticflickr.com/108/294148269_b817e9a396_o.jpg", "secret": "b817e9a396", "media": "photo", "latitude": "32.408244", "id": "294148269", "tags": "mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-09 22:55:02", "license": "2", "title": "Family piano", "text": "", "album_id": "72157594369842318", "longitude": "-90.134239", "url_o": "https://farm1.staticflickr.com/112/294148450_d2c7278d29_o.jpg", "secret": "d2c7278d29", "media": "photo", "latitude": "32.408244", "id": "294148450", "tags": "mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-09 22:55:16", "license": "2", "title": "Dad", "text": "", "album_id": "72157594369842318", "longitude": "-90.134239", "url_o": "https://farm1.staticflickr.com/107/294148678_8c00f2263f_o.jpg", "secret": "8c00f2263f", "media": "photo", "latitude": "32.408244", "id": "294148678", "tags": "mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-09 23:19:55", "license": "2", "title": "Me and Dad", "text": "", "album_id": "72157594369842318", "longitude": "-90.134239", "url_o": "https://farm1.staticflickr.com/104/294148838_01b8cfc852_o.jpg", "secret": "01b8cfc852", "media": "photo", "latitude": "32.408244", "id": "294148838", "tags": "mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-09 23:22:18", "license": "2", "title": "Me and Dad", "text": "", "album_id": "72157594369842318", "longitude": "-90.134239", "url_o": "https://farm1.staticflickr.com/104/294148981_573600c122_o.jpg", "secret": "573600c122", "media": "photo", "latitude": "32.408244", "id": "294148981", "tags": "mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 11:20:34", "license": "2", "title": "Sam", "text": "", "album_id": "72157594369842318", "longitude": "-90.134239", "url_o": "https://farm1.staticflickr.com/114/294149250_ce7ef1f4d7_o.jpg", "secret": "ce7ef1f4d7", "media": "photo", "latitude": "32.408244", "id": "294149250", "tags": "mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 11:20:43", "license": "2", "title": "Dad with chainsaw", "text": "", "album_id": "72157594369842318", "longitude": "-90.134239", "url_o": "https://farm1.staticflickr.com/113/294149517_d1d783f05f_o.jpg", "secret": "d1d783f05f", "media": "photo", "latitude": "32.408244", "id": "294149517", "tags": "mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 11:20:57", "license": "2", "title": "Dad with chainsaw 2", "text": "", "album_id": "72157594369842318", "longitude": "-90.134239", "url_o": "https://farm1.staticflickr.com/121/294149866_fd7ba8b10b_o.jpg", "secret": "fd7ba8b10b", "media": "photo", "latitude": "32.408244", "id": "294149866", "tags": "mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 11:21:12", "license": "2", "title": "Go Dad, Go", "text": "", "album_id": "72157594369842318", "longitude": "-90.134239", "url_o": "https://farm1.staticflickr.com/110/294150101_f1ad070edb_o.jpg", "secret": "f1ad070edb", "media": "photo", "latitude": "32.408244", "id": "294150101", "tags": "mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 11:22:49", "license": "2", "title": "Flag - Ridgeland, Mississippi", "text": "", "album_id": "72157594369842318", "longitude": "-90.134239", "url_o": "https://farm1.staticflickr.com/122/294150251_27c47c43ff_o.jpg", "secret": "27c47c43ff", "media": "photo", "latitude": "32.408244", "id": "294150251", "tags": "mississippi flag jackson mothersday"}, {"datetaken": "2003-05-10 13:03:21", "license": "2", "title": "IMG_0077", "text": "", "album_id": "72157594369842318", "longitude": "-90.185565", "url_o": "https://farm1.staticflickr.com/118/294150421_6ff471a903_o.jpg", "secret": "6ff471a903", "media": "photo", "latitude": "32.313540", "id": "294150421", "tags": "mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 13:12:08", "license": "2", "title": "Farmer's market flowers", "text": "", "album_id": "72157594369842318", "longitude": "-90.174751", "url_o": "https://farm1.staticflickr.com/118/294150772_aa97ac7465_o.jpg", "secret": "aa97ac7465", "media": "photo", "latitude": "32.301861", "id": "294150772", "tags": "mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 13:13:07", "license": "2", "title": "Farmer's market produce", "text": "", "album_id": "72157594369842318", "longitude": "-90.174751", "url_o": "https://farm1.staticflickr.com/99/294150989_0472972c9f_o.jpg", "secret": "0472972c9f", "media": "photo", "latitude": "32.301861", "id": "294150989", "tags": "mississippi jackson catfish mothersday msh06077 msh0607"}, {"datetaken": "2003-05-10 13:24:50", "license": "2", "title": "Greyhound Catfish", "text": "", "album_id": "72157594369842318", "longitude": "-90.195093", "url_o": "https://farm1.staticflickr.com/103/294151161_0b2f5c3a45_o.jpg", "secret": "0b2f5c3a45", "media": "photo", "latitude": "32.303058", "id": "294151161", "tags": "fish mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 13:25:27", "license": "2", "title": "Greyhound Catfish", "text": "", "album_id": "72157594369842318", "longitude": "-90.195093", "url_o": "https://farm1.staticflickr.com/102/294151346_338c59a939_o.jpg", "secret": "338c59a939", "media": "photo", "latitude": "32.303058", "id": "294151346", "tags": "fish mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 13:28:36", "license": "2", "title": "Gail Pittman Catfish", "text": "", "album_id": "72157594369842318", "longitude": "-90.195093", "url_o": "https://farm1.staticflickr.com/103/294151585_056161588b_o.jpg", "secret": "056161588b", "media": "photo", "latitude": "32.303058", "id": "294151585", "tags": "fish mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 13:29:01", "license": "2", "title": "Can't remember", "text": "", "album_id": "72157594369842318", "longitude": "-90.195093", "url_o": "https://farm1.staticflickr.com/112/294151865_9eaa4cd877_o.jpg", "secret": "9eaa4cd877", "media": "photo", "latitude": "32.303058", "id": "294151865", "tags": "fish mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 13:30:22", "license": "2", "title": "Catfish", "text": "", "album_id": "72157594369842318", "longitude": "-90.195093", "url_o": "https://farm1.staticflickr.com/103/294152011_7d1ace7f61_o.jpg", "secret": "7d1ace7f61", "media": "photo", "latitude": "32.303058", "id": "294152011", "tags": "fish mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 13:31:23", "license": "2", "title": "Chamber Catfish", "text": "", "album_id": "72157594369842318", "longitude": "-90.195093", "url_o": "https://farm1.staticflickr.com/106/294152192_479d7c33df_o.jpg", "secret": "479d7c33df", "media": "photo", "latitude": "32.303058", "id": "294152192", "tags": "fish mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 13:32:41", "license": "2", "title": "Matisse Catfish", "text": "", "album_id": "72157594369842318", "longitude": "-90.195093", "url_o": "https://farm1.staticflickr.com/119/294152386_b07b0d2a9c_o.jpg", "secret": "b07b0d2a9c", "media": "photo", "latitude": "32.303058", "id": "294152386", "tags": "fish mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 13:37:37", "license": "2", "title": "Famous Mississippians Catfish", "text": "", "album_id": "72157594369842318", "longitude": "-90.195093", "url_o": "https://farm1.staticflickr.com/114/294152593_a2f6f90f6e_o.jpg", "secret": "a2f6f90f6e", "media": "photo", "latitude": "32.303058", "id": "294152593", "tags": "fish mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 13:38:17", "license": "2", "title": "Famous Mississippians Catfish", "text": "", "album_id": "72157594369842318", "longitude": "-90.195093", "url_o": "https://farm1.staticflickr.com/120/294152824_2b326afd86_o.jpg", "secret": "2b326afd86", "media": "photo", "latitude": "32.303058", "id": "294152824", "tags": "fish mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 13:38:59", "license": "2", "title": "Beach Catfish", "text": "", "album_id": "72157594369842318", "longitude": "-90.195093", "url_o": "https://farm1.staticflickr.com/102/294153097_a81ee4ed55_o.jpg", "secret": "a81ee4ed55", "media": "photo", "latitude": "32.303058", "id": "294153097", "tags": "fish mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 13:40:07", "license": "2", "title": "Cleocatra Queen of the Pearl Catfish", "text": "", "album_id": "72157594369842318", "longitude": "-90.195093", "url_o": "https://farm1.staticflickr.com/120/294153313_b6a0bd70a6_o.jpg", "secret": "b6a0bd70a6", "media": "photo", "latitude": "32.303058", "id": "294153313", "tags": "fish mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 13:52:19", "license": "2", "title": "Caticus Finch Catfish", "text": "", "album_id": "72157594369842318", "longitude": "-90.195093", "url_o": "https://farm1.staticflickr.com/122/294153506_5d281f128c_o.jpg", "secret": "5d281f128c", "media": "photo", "latitude": "32.303058", "id": "294153506", "tags": "fish mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 14:01:27", "license": "2", "title": "Waiter Catfish", "text": "", "album_id": "72157594369842318", "longitude": "-90.195093", "url_o": "https://farm1.staticflickr.com/110/294153912_efb86f4d62_o.jpg", "secret": "efb86f4d62", "media": "photo", "latitude": "32.303058", "id": "294153912", "tags": "fish mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 14:07:03", "license": "2", "title": "Mississippi Department of Archives and History", "text": "", "album_id": "72157594369842318", "longitude": "-90.195093", "url_o": "https://farm1.staticflickr.com/103/294154083_b8cdfaa5a9_o.jpg", "secret": "b8cdfaa5a9", "media": "photo", "latitude": "32.303058", "id": "294154083", "tags": "mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 14:11:02", "license": "2", "title": "Catfish on a Hot Tin Roof", "text": "", "album_id": "72157594369842318", "longitude": "-90.195093", "url_o": "https://farm1.staticflickr.com/110/294154253_c36410c995_o.jpg", "secret": "c36410c995", "media": "photo", "latitude": "32.303058", "id": "294154253", "tags": "fish mississippi jackson catfish mothersday"}, {"datetaken": "2003-05-10 14:14:15", "license": "2", "title": "Patriotic Catfish", "text": "", "album_id": "72157594369842318", "longitude": "-90.195093", "url_o": "https://farm1.staticflickr.com/122/294154422_c279925de4_o.jpg", "secret": "c279925de4", "media": "photo", "latitude": "32.303058", "id": "294154422", "tags": "fish mississippi jackson catfish mothersday"}, {"datetaken": "2007-04-22 15:14:31", "license": "2", "title": "Danielle!", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/187/470636848_317184f0ea_o.jpg", "secret": "9a4a9ca85b", "media": "photo", "latitude": "42.361397", "id": "470636848", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:16:38", "license": "2", "title": "My Broham is silly", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/209/470655807_d3db3e178c_o.jpg", "secret": "de4322c5bb", "media": "photo", "latitude": "42.361397", "id": "470655807", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:18:02", "license": "2", "title": "Brittany loves Pineapple", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/183/470655911_118fb51e80_o.jpg", "secret": "8d3d93a73d", "media": "photo", "latitude": "42.361397", "id": "470655911", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:18:08", "license": "2", "title": "Emily fights for her headband!", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/194/470656029_0637604235_o.jpg", "secret": "7e35476bb0", "media": "photo", "latitude": "42.361397", "id": "470656029", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:18:45", "license": "2", "title": "Olivia and Aunt Wendy", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/217/470656091_dfa8227455_o.jpg", "secret": "06bc32800d", "media": "photo", "latitude": "42.361397", "id": "470656091", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:19:33", "license": "2", "title": "We are camera twins!", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/200/470637302_5fd512eb57_o.jpg", "secret": "2a3c2a71e3", "media": "photo", "latitude": "42.361397", "id": "470637302", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:20:00", "license": "2", "title": "Mom & Daddy-o", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/205/470656299_ea83cf1fa1_o.jpg", "secret": "e01fecaa76", "media": "photo", "latitude": "42.361397", "id": "470656299", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:35:48", "license": "2", "title": "My Beautiful Mommy", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/191/470656383_1186727437_o.jpg", "secret": "eba3aeecd3", "media": "photo", "latitude": "42.361397", "id": "470656383", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:36:57", "license": "2", "title": "Hollywood Danielle", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/221/470637520_10f23e74ea_o.jpg", "secret": "952d5202a1", "media": "photo", "latitude": "42.361397", "id": "470637520", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:37:23", "license": "2", "title": "Thank goodness for sunshine!", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/202/470656589_68393ce7a7_o.jpg", "secret": "cab27e75c9", "media": "photo", "latitude": "42.361397", "id": "470656589", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:37:43", "license": "2", "title": "Sisters", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/197/470637642_35ebba7118_o.jpg", "secret": "048e976491", "media": "photo", "latitude": "42.361397", "id": "470637642", "tags": "family pink dresses mothersday littlegirls foxhills"}, {"datetaken": "2007-04-22 15:37:57", "license": "2", "title": "Emily & Olivia", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/224/470637714_a81b543b25_o.jpg", "secret": "6abcae6fd9", "media": "photo", "latitude": "42.361397", "id": "470637714", "tags": "family pink dresses mothersday littlegirls foxhills"}, {"datetaken": "2007-04-22 15:38:14", "license": "2", "title": "Spinning!", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/191/470637816_787adaf0f9_o.jpg", "secret": "a3303a3920", "media": "photo", "latitude": "42.361397", "id": "470637816", "tags": "family pink girls dancing dresses spinning mothersday twirling littlegirls foxhills"}, {"datetaken": "2007-04-22 15:38:21", "license": "2", "title": "Pretty in Pink", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/198/470656915_eb7ec8c8d6_o.jpg", "secret": "5a2abbc8a3", "media": "photo", "latitude": "42.361397", "id": "470656915", "tags": "family pink girls wonder interesting lookingup dresses mothersday littlegirls foxhills"}, {"datetaken": "2007-04-22 15:38:27", "license": "2", "title": "Beautiful", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/210/470638000_ddb18505fc_o.jpg", "secret": "ce5b4c77df", "media": "photo", "latitude": "42.361397", "id": "470638000", "tags": "family pink girls dancing dresses spinning mothersday twirling littlegirls foxhills"}, {"datetaken": "2007-04-22 15:38:32", "license": "2", "title": "Without a care", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/205/470638108_69c79993f2_o.jpg", "secret": "10b16f5f81", "media": "photo", "latitude": "42.361397", "id": "470638108", "tags": "family pink girls interesting dancing dresses spinning mothersday twirling littlegirls foxhills"}, {"datetaken": "2007-04-22 15:38:34", "license": "2", "title": "Emily and Olivia", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/215/470657229_04deffeee2_o.jpg", "secret": "7279973766", "media": "photo", "latitude": "42.361397", "id": "470657229", "tags": "family pink girls dancing dresses precious mothersday twirling littlegirls foxhills"}, {"datetaken": "2007-04-22 15:38:37", "license": "2", "title": "Quite Graceful", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/204/470657395_b3fe50247c_o.jpg", "secret": "8a0e3b2760", "media": "photo", "latitude": "42.361397", "id": "470657395", "tags": "family pink girls cute spring dancing dresses spinning mothersday twirling littlegirls foxhills"}, {"datetaken": "2007-04-22 15:38:38", "license": "2", "title": "Swirly Girlies", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/219/470657509_903161ea1b_o.jpg", "secret": "793f81ce51", "media": "photo", "latitude": "42.361397", "id": "470657509", "tags": "family pink girls cute spring dancing dresses spinning mothersday twirling littlegirls foxhills"}, {"datetaken": "2007-04-22 15:39:44", "license": "2", "title": "Zemkonians", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/225/470658039_267ed997fc_o.jpg", "secret": "1ca1228d5c", "media": "photo", "latitude": "42.361397", "id": "470658039", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:40:23", "license": "2", "title": "The Zemko's", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/203/470638774_03ba57d4ce_o.jpg", "secret": "5c605e5601", "media": "photo", "latitude": "42.361397", "id": "470638774", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:41:07", "license": "2", "title": "The Zemko's", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/216/470639190_d787e1c3f4_o.jpg", "secret": "8b7eec7ac8", "media": "photo", "latitude": "42.361397", "id": "470639190", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:42:37", "license": "2", "title": "Family Ties", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/193/470658281_c3719ebba8_o.jpg", "secret": "22a0bf0115", "media": "photo", "latitude": "42.361397", "id": "470658281", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:43:14", "license": "2", "title": "Ohiopeans", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/225/470658405_937f89e377_o.jpg", "secret": "66c3e11765", "media": "photo", "latitude": "42.361397", "id": "470658405", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:44:42", "license": "2", "title": "The Boys", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/193/470639448_bd0f36c240_o.jpg", "secret": "7aa9233b15", "media": "photo", "latitude": "42.361397", "id": "470639448", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:46:08", "license": "2", "title": "Soleckis", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/216/470639548_2351a503a6_o.jpg", "secret": "c403b9b6c6", "media": "photo", "latitude": "42.361397", "id": "470639548", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:46:32", "license": "2", "title": "Soleckis", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/185/470639672_c44cd7d66c_o.jpg", "secret": "29a1ee3a51", "media": "photo", "latitude": "42.361397", "id": "470639672", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:46:45", "license": "2", "title": "Fluff your dress, Olivia!", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/199/470639738_47d29e895f_o.jpg", "secret": "b1cb7a2126", "media": "photo", "latitude": "42.361397", "id": "470639738", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:48:58", "license": "2", "title": "Cheese", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/216/470658985_3085450332_o.jpg", "secret": "d826e86f59", "media": "photo", "latitude": "42.361397", "id": "470658985", "tags": ""}, {"datetaken": "2007-04-22 15:50:51", "license": "2", "title": "Craig, Aunt Bev, Unce Harry & Scott", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/179/470639992_c9b06d2819_o.jpg", "secret": "b7302d5e00", "media": "photo", "latitude": "42.361397", "id": "470639992", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:52:41", "license": "2", "title": "The DuPont Family", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/174/470640088_c506aff50a_o.jpg", "secret": "e53e313508", "media": "photo", "latitude": "42.361397", "id": "470640088", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:53:33", "license": "2", "title": "The Bowers Ladies", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/225/470640256_c2d4940467_o.jpg", "secret": "917fc3024e", "media": "photo", "latitude": "42.361397", "id": "470640256", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:54:53", "license": "2", "title": "Smiles", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/229/470640344_2f95684ebd_o.jpg", "secret": "8e43cf651d", "media": "photo", "latitude": "42.361397", "id": "470640344", "tags": "family smile eyelashes lookingdown kendall mothersday foxhills"}, {"datetaken": "2007-04-22 15:55:05", "license": "2", "title": "Girlies", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/215/470659483_2c0684511a_o.jpg", "secret": "13a409a229", "media": "photo", "latitude": "42.361397", "id": "470659483", "tags": "family mothersday foxhills"}, {"datetaken": "2007-04-22 15:56:29", "license": "2", "title": "Kendall and Ross", "text": "", "album_id": "72157600116992263", "longitude": "-83.594541", "url_o": "https://farm1.staticflickr.com/191/470659605_bc036f5de7_o.jpg", "secret": "9eb524d871", "media": "photo", "latitude": "42.361397", "id": "470659605", "tags": "family mothersday foxhills"}, {"datetaken": "2007-05-13 11:33:25", "license": "1", "title": "BOSTON", "text": "", "album_id": "72157600210655682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/219/496413044_5e36313b80_o.jpg", "secret": "8269ab7f99", "media": "photo", "latitude": "0", "id": "496413044", "tags": "boston jamaicaplain mothersday arnoldarboretum universalhub llilacsunday"}, {"datetaken": "2007-05-13 11:40:44", "license": "1", "title": "Lilac Sunday", "text": "", "album_id": "72157600210655682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/197/496411664_542166cbed_o.jpg", "secret": "e10c7797f1", "media": "photo", "latitude": "0", "id": "496411664", "tags": "boston jamaicaplain mothersday arnoldarboretum llilacsunday"}, {"datetaken": "2007-05-13 11:51:53", "license": "1", "title": "Through the Tree", "text": "", "album_id": "72157600210655682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/496410906_d5e167e38c_o.jpg", "secret": "6ea15ee914", "media": "photo", "latitude": "0", "id": "496410906", "tags": "boston jamaicaplain mothersday arnoldarboretum llilacsunday"}, {"datetaken": "2007-05-13 11:58:10", "license": "1", "title": "Three Lilac Watchers", "text": "", "album_id": "72157600210655682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/193/496409902_6544fe9c6b_o.jpg", "secret": "6d2245d366", "media": "photo", "latitude": "0", "id": "496409902", "tags": "boston jamaicaplain mothersday arnoldarboretum llilacsunday"}, {"datetaken": "2007-05-13 11:58:48", "license": "1", "title": "Lilac Bush", "text": "", "album_id": "72157600210655682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/213/496439853_5bc4063290_o.jpg", "secret": "7e777fb2cb", "media": "photo", "latitude": "0", "id": "496439853", "tags": "boston jamaicaplain mothersday arnoldarboretum llilacsunday"}, {"datetaken": "2007-05-13 12:01:53", "license": "1", "title": "Purple Lilac", "text": "", "album_id": "72157600210655682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/225/496438357_cdcde61d6d_o.jpg", "secret": "cc2ff12520", "media": "photo", "latitude": "0", "id": "496438357", "tags": "boston jamaicaplain mothersday arnoldarboretum llilacsunday"}, {"datetaken": "2007-05-13 12:04:08", "license": "1", "title": "Purple People", "text": "", "album_id": "72157600210655682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/226/496405800_3f1abd649e_o.jpg", "secret": "61b2274705", "media": "photo", "latitude": "0", "id": "496405800", "tags": "boston jamaicaplain mothersday arnoldarboretum llilacsunday"}, {"datetaken": "2007-05-13 12:04:32", "license": "1", "title": "Purple People", "text": "", "album_id": "72157600210655682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/222/496436447_3ea84e525d_o.jpg", "secret": "0460f770b8", "media": "photo", "latitude": "0", "id": "496436447", "tags": "boston jamaicaplain mothersday arnoldarboretum llilacsunday"}, {"datetaken": "2007-05-13 12:09:07", "license": "1", "title": "Water Color People", "text": "", "album_id": "72157600210655682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/496435775_a9641641b5_o.jpg", "secret": "9f1d0de9d4", "media": "photo", "latitude": "0", "id": "496435775", "tags": "boston jamaicaplain mothersday arnoldarboretum llilacsunday"}, {"datetaken": "2007-05-13 12:09:14", "license": "1", "title": "Water Color People", "text": "", "album_id": "72157600210655682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/201/496434905_8be7a86200_o.jpg", "secret": "fe6d2066b5", "media": "photo", "latitude": "0", "id": "496434905", "tags": "boston jamaicaplain mothersday arnoldarboretum lilacsunday"}, {"datetaken": "2007-05-13 12:09:53", "license": "1", "title": "Tour", "text": "", "album_id": "72157600210655682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/193/496403076_c62f470bf1_o.jpg", "secret": "5940de28e0", "media": "photo", "latitude": "0", "id": "496403076", "tags": "boston jamaicaplain mothersday arnoldarboretum llilacsunday"}, {"datetaken": "2007-05-13 12:12:47", "license": "1", "title": "Family Tree", "text": "", "album_id": "72157600210655682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/231/496402482_3779b45efc_o.jpg", "secret": "11a7256c09", "media": "photo", "latitude": "0", "id": "496402482", "tags": "boston jamaicaplain mothersday arnoldarboretum llilacsunday"}, {"datetaken": "2007-05-13 16:26:15", "license": "1", "title": "Mother's Day 2007 - 1", "text": "", "album_id": "72157600212214546", "longitude": "0", "url_o": "https://farm1.staticflickr.com/202/496677202_2b4521bd6e_o.jpg", "secret": "a80554d289", "media": "photo", "latitude": "0", "id": "496677202", "tags": "singapore"}, {"datetaken": "2007-05-13 16:33:57", "license": "1", "title": "Mother's Day 2007 - 2", "text": "", "album_id": "72157600212214546", "longitude": "0", "url_o": "https://farm1.staticflickr.com/230/496678894_d433156f60_o.jpg", "secret": "49e046b5a5", "media": "photo", "latitude": "0", "id": "496678894", "tags": "singapore"}, {"datetaken": "2007-05-13 16:34:13", "license": "1", "title": "Mother's Day 2007 - 3", "text": "", "album_id": "72157600212214546", "longitude": "0", "url_o": "https://farm1.staticflickr.com/222/496712271_c5b0dceb6a_o.jpg", "secret": "6d20ea70dd", "media": "photo", "latitude": "0", "id": "496712271", "tags": "singapore"}, {"datetaken": "2007-05-13 17:07:32", "license": "1", "title": "Mother's Day 2007 - 4", "text": "", "album_id": "72157600212214546", "longitude": "0", "url_o": "https://farm1.staticflickr.com/213/496682476_3117553feb_o.jpg", "secret": "097f70bb9a", "media": "photo", "latitude": "0", "id": "496682476", "tags": "singapore"}, {"datetaken": "2007-05-13 17:10:14", "license": "1", "title": "Mother's Day 2007 - 5", "text": "", "album_id": "72157600212214546", "longitude": "0", "url_o": "https://farm1.staticflickr.com/207/496715999_c2111b0ec3_o.jpg", "secret": "ec5aa29f37", "media": "photo", "latitude": "0", "id": "496715999", "tags": "singapore"}, {"datetaken": "2007-05-13 17:10:27", "license": "1", "title": "Mother's Day 2007 - 6", "text": "", "album_id": "72157600212214546", "longitude": "0", "url_o": "https://farm1.staticflickr.com/209/496686762_345f17719e_o.jpg", "secret": "34d562cc09", "media": "photo", "latitude": "0", "id": "496686762", "tags": "singapore"}, {"datetaken": "2007-05-13 17:11:30", "license": "1", "title": "Mother's Day 2007 - 7", "text": "", "album_id": "72157600212214546", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/496688488_8a073dc72b_o.jpg", "secret": "f68ba6221d", "media": "photo", "latitude": "0", "id": "496688488", "tags": "singapore"}, {"datetaken": "2007-05-13 17:12:35", "license": "1", "title": "Mother's Day 2007 - 8", "text": "", "album_id": "72157600212214546", "longitude": "0", "url_o": "https://farm1.staticflickr.com/190/496690226_2fb9850f9a_o.jpg", "secret": "ea8ec6cf35", "media": "photo", "latitude": "0", "id": "496690226", "tags": "singapore"}, {"datetaken": "2007-05-13 18:00:58", "license": "1", "title": "Mother's Day 2007 - 9", "text": "", "album_id": "72157600212214546", "longitude": "0", "url_o": "https://farm1.staticflickr.com/222/496692330_a33fddb5d3_o.jpg", "secret": "ba2e2aa8cc", "media": "photo", "latitude": "0", "id": "496692330", "tags": "singapore"}, {"datetaken": "2007-05-13 18:21:46", "license": "1", "title": "Mother's Day 2007 - 10", "text": "", "album_id": "72157600212214546", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/496725723_047600c587_o.jpg", "secret": "8ea2572c3c", "media": "photo", "latitude": "0", "id": "496725723", "tags": "singapore"}, {"datetaken": "2007-05-13 18:21:59", "license": "1", "title": "Mother's Day 2007 - 11", "text": "", "album_id": "72157600212214546", "longitude": "0", "url_o": "https://farm1.staticflickr.com/197/496727581_4576b68802_o.jpg", "secret": "055f4a1342", "media": "photo", "latitude": "0", "id": "496727581", "tags": "singapore"}, {"datetaken": "2007-05-13 18:28:29", "license": "1", "title": "Mother's Day 2007 - 12", "text": "", "album_id": "72157600212214546", "longitude": "0", "url_o": "https://farm1.staticflickr.com/206/496698050_8f0ddb801e_o.jpg", "secret": "66a2550612", "media": "photo", "latitude": "0", "id": "496698050", "tags": "singapore"}, {"datetaken": "2007-05-13 18:40:40", "license": "1", "title": "Mother's Day 2007 - 13", "text": "", "album_id": "72157600212214546", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/496731279_124fd101b6_o.jpg", "secret": "7fba9e2b3a", "media": "photo", "latitude": "0", "id": "496731279", "tags": "singapore"}, {"datetaken": "2007-03-26 07:22:48", "license": "2", "title": "Specialist Addiction Unit", "text": "", "album_id": "72157600041151400", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/442711876_8f663a5f90_o.jpg", "secret": "6bf2dfa723", "media": "photo", "latitude": "0", "id": "442711876", "tags": "london hospital empty bow stclements"}, {"datetaken": "2007-03-26 07:24:57", "license": "2", "title": "Faded Way Out", "text": "", "album_id": "72157600041151400", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/442714901_5b863a6b95_o.jpg", "secret": "d805b34b2c", "media": "photo", "latitude": "0", "id": "442714901", "tags": "london hospital empty bow stclements"}, {"datetaken": "2007-03-26 07:36:32", "license": "2", "title": "Stairs", "text": "", "album_id": "72157600041151400", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/442711898_323d2e0632_o.jpg", "secret": "b96640739c", "media": "photo", "latitude": "0", "id": "442711898", "tags": "london hospital empty bow stclements"}, {"datetaken": "2007-03-26 07:39:00", "license": "2", "title": "Two Chairs and a Table", "text": "", "album_id": "72157600041151400", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/442711312_2f5e36902f_o.jpg", "secret": "969ac8b11a", "media": "photo", "latitude": "0", "id": "442711312", "tags": "london hospital empty bow stclements"}, {"datetaken": "2007-03-26 07:43:48", "license": "2", "title": "Personal Chair", "text": "", "album_id": "72157600041151400", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/442715111_925b1e74b8_o.jpg", "secret": "b548643dbf", "media": "photo", "latitude": "0", "id": "442715111", "tags": "london hospital empty bow stclements"}, {"datetaken": "2007-03-26 07:47:16", "license": "2", "title": "TV Room", "text": "", "album_id": "72157600041151400", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/442711938_8b2d568b16_o.jpg", "secret": "708f2c399d", "media": "photo", "latitude": "0", "id": "442711938", "tags": "london hospital empty bow stclements"}, {"datetaken": "2007-03-26 07:49:36", "license": "2", "title": "Edith", "text": "", "album_id": "72157600041151400", "longitude": "0", "url_o": "https://farm1.staticflickr.com/200/442714839_98a8d9edca_o.jpg", "secret": "e755195a2e", "media": "photo", "latitude": "0", "id": "442714839", "tags": "london hospital empty bow stclements"}, {"datetaken": "2007-03-26 07:50:47", "license": "2", "title": "Sit Here", "text": "", "album_id": "72157600041151400", "longitude": "0", "url_o": "https://farm1.staticflickr.com/198/442711820_667bfa9e7f_o.jpg", "secret": "6f4725d971", "media": "photo", "latitude": "0", "id": "442711820", "tags": "london hospital empty bow stclements"}, {"datetaken": "2007-03-26 07:51:58", "license": "2", "title": "Office", "text": "", "album_id": "72157600041151400", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/442715057_890fca8ed3_o.jpg", "secret": "3a7e9c7c5b", "media": "photo", "latitude": "0", "id": "442715057", "tags": "london hospital empty bow stclements"}, {"datetaken": "2007-03-26 07:54:51", "license": "2", "title": "Male Bedroom", "text": "", "album_id": "72157600041151400", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/442711462_cbee0e65c1_o.jpg", "secret": "78d626e218", "media": "photo", "latitude": "0", "id": "442711462", "tags": "london hospital empty bow stclements"}, {"datetaken": "2007-03-26 07:55:45", "license": "2", "title": "Rubber Mattress", "text": "", "album_id": "72157600041151400", "longitude": "0", "url_o": "https://farm1.staticflickr.com/210/442711744_d4d18c9eea_o.jpg", "secret": "6062dbdba5", "media": "photo", "latitude": "0", "id": "442711744", "tags": "london hospital empty bow stclements"}, {"datetaken": "2007-03-26 08:09:59", "license": "2", "title": "Hall", "text": "", "album_id": "72157600041151400", "longitude": "0", "url_o": "https://farm1.staticflickr.com/169/442714953_0c5dad31e5_o.jpg", "secret": "ca03bb28fd", "media": "photo", "latitude": "0", "id": "442714953", "tags": "london hospital empty bow stclements"}, {"datetaken": "2007-03-26 08:11:23", "license": "2", "title": "Sink", "text": "", "album_id": "72157600041151400", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/442711786_d9893926b4_o.jpg", "secret": "0e00875fa7", "media": "photo", "latitude": "0", "id": "442711786", "tags": "london hospital empty bow stclements"}, {"datetaken": "2007-03-26 08:12:24", "license": "2", "title": "Mousse", "text": "", "album_id": "72157600041151400", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/442711512_d3a17e9951_o.jpg", "secret": "5fbc8f161c", "media": "photo", "latitude": "0", "id": "442711512", "tags": "london hospital empty bow stclements"}, {"datetaken": "2007-03-26 08:13:24", "license": "2", "title": "Recreation", "text": "", "album_id": "72157600041151400", "longitude": "0", "url_o": "https://farm1.staticflickr.com/209/442711714_41f3f1b462_o.jpg", "secret": "1108919d2a", "media": "photo", "latitude": "0", "id": "442711714", "tags": "london hospital empty bow stclements"}, {"datetaken": "2007-03-26 08:15:55", "license": "2", "title": "Piano", "text": "", "album_id": "72157600041151400", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/442711606_c1a8efa838_o.jpg", "secret": "7fe32b019e", "media": "photo", "latitude": "0", "id": "442711606", "tags": "london hospital empty bow stclements"}, {"datetaken": "2007-03-26 08:22:27", "license": "2", "title": "Rapport Trust Belief", "text": "", "album_id": "72157600041151400", "longitude": "0", "url_o": "https://farm1.staticflickr.com/208/442715179_b7eb4a1329_o.jpg", "secret": "082b0232f1", "media": "photo", "latitude": "0", "id": "442715179", "tags": "london hospital empty bow stclements"}, {"datetaken": "2010-08-07 09:56:26", "license": "1", "title": "Children in Kawangware", "text": "", "album_id": "72157624126371626", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4874540645_809408d05a_o.jpg", "secret": "46f049c18d", "media": "photo", "latitude": "0", "id": "4874540645", "tags": "kawangware nairobikenyaafricaslum"}, {"datetaken": "2010-08-07 10:19:27", "license": "1", "title": "Children in Kawangware", "text": "", "album_id": "72157624126371626", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4874541877_086c3ea644_o.jpg", "secret": "8c8da42e5e", "media": "photo", "latitude": "0", "id": "4874541877", "tags": "kawangware nairobikenyaafricaslum"}, {"datetaken": "2010-08-07 10:19:58", "license": "1", "title": "Girl in Kawangware", "text": "", "album_id": "72157624126371626", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4875151100_5aef06cfae_o.jpg", "secret": "09a467f444", "media": "photo", "latitude": "0", "id": "4875151100", "tags": "kawangware nairobikenyaafricaslum"}, {"datetaken": "2010-08-07 10:20:50", "license": "1", "title": "Children in Kawangware", "text": "", "album_id": "72157624126371626", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4875152526_2bccccc9ac_o.jpg", "secret": "ba65a63006", "media": "photo", "latitude": "0", "id": "4875152526", "tags": "kawangware nairobikenyaafricaslum"}, {"datetaken": "2010-08-08 07:30:07", "license": "1", "title": "A view in Kibera", "text": "", "album_id": "72157624126371626", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4875153986_9840132fc6_o.jpg", "secret": "efa0a70c88", "media": "photo", "latitude": "0", "id": "4875153986", "tags": "kibera nairobikenyaafricaslum"}, {"datetaken": "2010-08-08 07:42:51", "license": "1", "title": "Dumping site in Kibera", "text": "", "album_id": "72157624126371626", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4875156300_7a01b3261e_o.jpg", "secret": "68bb5220a4", "media": "photo", "latitude": "0", "id": "4875156300", "tags": "kibera nairobikenyaafricaslum"}, {"datetaken": "2010-08-08 07:45:30", "license": "1", "title": "children and Kibera", "text": "", "album_id": "72157624126371626", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4874549705_061d6281af_o.jpg", "secret": "df3b7c9392", "media": "photo", "latitude": "0", "id": "4874549705", "tags": "kibera nairobikenyaafricaslum"}, {"datetaken": "2010-08-08 07:48:30", "license": "1", "title": "Preschool in Kibera", "text": "", "album_id": "72157624126371626", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4875159858_6e2587660a_o.jpg", "secret": "581a0204f7", "media": "photo", "latitude": "0", "id": "4875159858", "tags": "kibera nairobikenyaafricaslum"}, {"datetaken": "2010-08-08 07:50:11", "license": "1", "title": "Goat in Kibera", "text": "", "album_id": "72157624126371626", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4874553379_3e8d70430e_o.jpg", "secret": "8466783968", "media": "photo", "latitude": "0", "id": "4874553379", "tags": "kibera nairobikenyaafricaslum"}, {"datetaken": "2010-08-08 07:50:35", "license": "1", "title": "Children in Kibera", "text": "", "album_id": "72157624126371626", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4118/4875173804_149d71b07b_o.jpg", "secret": "a09c38f32e", "media": "photo", "latitude": "0", "id": "4875173804", "tags": "kibera nairobikenyaafricaslum"}, {"datetaken": "2010-08-08 07:59:06", "license": "1", "title": "A view of Kibera", "text": "", "album_id": "72157624126371626", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4874554919_c3a6e06f29_o.jpg", "secret": "350356444e", "media": "photo", "latitude": "0", "id": "4874554919", "tags": "kibera nairobikenyaafricaslum"}, {"datetaken": "2010-08-08 08:05:58", "license": "1", "title": "The Kibera \"river\"", "text": "", "album_id": "72157624126371626", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4874557065_37274ffc1d_o.jpg", "secret": "58e1fa04ae", "media": "photo", "latitude": "0", "id": "4874557065", "tags": "kibera nairobikenyaafricaslum"}, {"datetaken": "2010-08-08 08:09:02", "license": "1", "title": "A view in Kibera", "text": "", "album_id": "72157624126371626", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4875167142_b2e5c7622b_o.jpg", "secret": "9044ceb336", "media": "photo", "latitude": "0", "id": "4875167142", "tags": "kibera nairobikenyaafricaslum"}, {"datetaken": "2010-08-08 08:13:11", "license": "1", "title": "A view in Kibera", "text": "", "album_id": "72157624126371626", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4875168604_54f6cb21d9_o.jpg", "secret": "b4399b4188", "media": "photo", "latitude": "0", "id": "4875168604", "tags": "kibera nairobikenyaafricaslum"}, {"datetaken": "2010-08-08 08:16:19", "license": "1", "title": "A view in Kibera", "text": "", "album_id": "72157624126371626", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4874568833_36060f67ac_o.jpg", "secret": "50f34cf422", "media": "photo", "latitude": "0", "id": "4874568833", "tags": "kibera nairobikenyaafricaslum"}, {"datetaken": "2010-08-08 08:20:00", "license": "1", "title": "The new government-owned apartments in Kibera", "text": "", "album_id": "72157624126371626", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4874562481_83eae31cb5_o.jpg", "secret": "067d1410ed", "media": "photo", "latitude": "0", "id": "4874562481", "tags": "kibera nairobikenyaafricaslum"}, {"datetaken": "2010-08-08 08:21:47", "license": "1", "title": "A view of Kibera", "text": "", "album_id": "72157624126371626", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4875172074_ac327d7f7e_o.jpg", "secret": "8c92d2ba69", "media": "photo", "latitude": "0", "id": "4875172074", "tags": "kibera nairobikenyaafricaslum"}, {"datetaken": "2007-12-12 15:16:33", "license": "2", "title": "Morris Cemetery Civil War Memorial", "text": "", "album_id": "72157603481848222", "longitude": "-75.523002", "url_o": "https://farm3.staticflickr.com/2317/2118873632_5536eaa9de_o.jpg", "secret": "0994057e07", "media": "photo", "latitude": "40.126079", "id": "2118873632", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery manavon"}, {"datetaken": "2007-12-12 15:16:57", "license": "2", "title": "Civil War Monument: pedestal detail", "text": "", "album_id": "72157603481848222", "longitude": "-75.523002", "url_o": "https://farm3.staticflickr.com/2319/2118095713_4034f9cd04_o.jpg", "secret": "37c706aaf1", "media": "photo", "latitude": "40.126079", "id": "2118095713", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery manavon"}, {"datetaken": "2007-12-12 15:17:11", "license": "2", "title": "Pedestal detail 2", "text": "", "album_id": "72157603481848222", "longitude": "-75.523002", "url_o": "https://farm3.staticflickr.com/2015/2118095613_80cc29067b_o.jpg", "secret": "3711352760", "media": "photo", "latitude": "40.126079", "id": "2118095613", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery manavon"}, {"datetaken": "2007-12-12 15:17:28", "license": "2", "title": "Thomas Homacer", "text": "", "album_id": "72157603481848222", "longitude": "-75.523002", "url_o": "https://farm3.staticflickr.com/2064/2118095537_9518693cf8_o.jpg", "secret": "907c5edb0b", "media": "photo", "latitude": "40.126079", "id": "2118095537", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery thomashomacer manavon"}, {"datetaken": "2007-12-12 15:18:06", "license": "2", "title": "David Somers (David Jones)", "text": "", "album_id": "72157603481848222", "longitude": "-75.523002", "url_o": "https://farm3.staticflickr.com/2298/2118095305_8cd2289153_o.jpg", "secret": "4fd3e339fa", "media": "photo", "latitude": "40.126079", "id": "2118095305", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery davidsomers manavon"}, {"datetaken": "2007-12-12 15:18:18", "license": "2", "title": "Sylvester Neiman", "text": "", "album_id": "72157603481848222", "longitude": "-75.523002", "url_o": "https://farm3.staticflickr.com/2038/2118872948_cf9d8935fa_o.jpg", "secret": "436cd215a0", "media": "photo", "latitude": "40.126079", "id": "2118872948", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery slyvesterneiman manavon"}, {"datetaken": "2007-12-12 15:18:28", "license": "2", "title": "Enos Shelly and a bit of Blue and Grey History", "text": "", "album_id": "72157603481848222", "longitude": "-75.523002", "url_o": "https://farm3.staticflickr.com/2026/2118094921_b87e4a5865_o.jpg", "secret": "9b5222df69", "media": "photo", "latitude": "40.126079", "id": "2118094921", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery enosshelly manavon"}, {"datetaken": "2007-12-12 15:18:38", "license": "2", "title": "Joseph Ray", "text": "", "album_id": "72157603481848222", "longitude": "-75.523002", "url_o": "https://farm3.staticflickr.com/2159/2118094647_22540711a2_o.jpg", "secret": "fb714d743a", "media": "photo", "latitude": "40.126079", "id": "2118094647", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery josephray manavon"}, {"datetaken": "2007-12-12 15:18:51", "license": "2", "title": "Jacob Demetry", "text": "", "album_id": "72157603481848222", "longitude": "-75.523002", "url_o": "https://farm3.staticflickr.com/2072/2118094381_c348f7791e_o.jpg", "secret": "536fa6c87b", "media": "photo", "latitude": "40.126079", "id": "2118094381", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery jacobdemetry manavon"}, {"datetaken": "2007-12-12 15:19:04", "license": "2", "title": "Edward B. Rossiter", "text": "", "album_id": "72157603481848222", "longitude": "-75.523002", "url_o": "https://farm3.staticflickr.com/2235/2118872066_0637ac76b7_o.jpg", "secret": "7a66f5f461", "media": "photo", "latitude": "40.126079", "id": "2118872066", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery edwardbrossiter manavon"}, {"datetaken": "2007-12-12 15:19:26", "license": "2", "title": "Jacob D. Taney", "text": "", "album_id": "72157603481848222", "longitude": "-75.523002", "url_o": "https://farm3.staticflickr.com/2028/2118871814_e288d6c1ef_o.jpg", "secret": "345eb8a59d", "media": "photo", "latitude": "40.126079", "id": "2118871814", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery jacobdtaney manavon"}, {"datetaken": "2007-12-12 15:30:11", "license": "2", "title": "ANTHONY P. SHIMER Monument", "text": "", "album_id": "72157603481848222", "longitude": "-75.524761", "url_o": "https://farm3.staticflickr.com/2231/2118095921_3db4d0bc11_o.jpg", "secret": "c83661a740", "media": "photo", "latitude": "40.126538", "id": "2118095921", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery manavon"}, {"datetaken": "2007-12-12 15:30:26", "license": "2", "title": "Anthony P. Shimer, Civil War Veteran", "text": "", "album_id": "72157603481848222", "longitude": "-75.524761", "url_o": "https://farm3.staticflickr.com/2275/2118093713_b90f445b7c_o.jpg", "secret": "356ed96e18", "media": "photo", "latitude": "40.126538", "id": "2118093713", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery manavon"}, {"datetaken": "2007-12-12 15:30:48", "license": "2", "title": "Mary Stella Pennypacker", "text": "", "album_id": "72157603481848222", "longitude": "-75.524761", "url_o": "https://farm3.staticflickr.com/2191/2118871452_292cbe8378_o.jpg", "secret": "07e0bc752f", "media": "photo", "latitude": "40.126538", "id": "2118871452", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery manavon"}, {"datetaken": "2007-12-12 15:31:00", "license": "2", "title": "Emma and Marcia C Pennypacker", "text": "", "album_id": "72157603481848222", "longitude": "-75.524761", "url_o": "https://farm3.staticflickr.com/2420/2118093409_a354ec3a3c_o.jpg", "secret": "28e8607e33", "media": "photo", "latitude": "40.126538", "id": "2118093409", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery manavon"}, {"datetaken": "2007-12-12 15:33:01", "license": "2", "title": "Nathan A. Pennypacker M.D., Civil War Physician", "text": "", "album_id": "72157603481848222", "longitude": "-75.524761", "url_o": "https://farm3.staticflickr.com/2125/2118093173_d45173be28_o.jpg", "secret": "5204e0bf3a", "media": "photo", "latitude": "40.126538", "id": "2118093173", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery manavon"}, {"datetaken": "2007-12-12 15:33:49", "license": "2", "title": "Everett W Anderson, Medal Of Honor recipient.", "text": "", "album_id": "72157603481848222", "longitude": "-75.524761", "url_o": "https://farm3.staticflickr.com/2291/2118092975_0be5ec8325_o.jpg", "secret": "7aae8a0178", "media": "photo", "latitude": "40.126538", "id": "2118092975", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery everettwanderson manavon"}, {"datetaken": "2007-12-12 15:35:04", "license": "2", "title": "Maria B. Bradley (White Bronze)", "text": "", "album_id": "72157603481848222", "longitude": "-75.524761", "url_o": "https://farm3.staticflickr.com/2209/2118092861_1085430bac_o.jpg", "secret": "e300097c12", "media": "photo", "latitude": "40.126538", "id": "2118092861", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery manavon"}, {"datetaken": "2007-12-12 15:35:21", "license": "2", "title": "Morris Cemetery white bronze", "text": "", "album_id": "72157603481848222", "longitude": "-75.524761", "url_o": "https://farm3.staticflickr.com/2069/2118092761_16fa06d42c_o.jpg", "secret": "c33b08e645", "media": "photo", "latitude": "40.126538", "id": "2118092761", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery manavon"}, {"datetaken": "2007-12-12 15:36:45", "license": "2", "title": "Bert Vanderslice, \"Our Darling Boy\"", "text": "", "album_id": "72157603481848222", "longitude": "-75.524761", "url_o": "https://farm3.staticflickr.com/2416/2118870496_c572a27f58_o.jpg", "secret": "62afebc310", "media": "photo", "latitude": "40.126538", "id": "2118870496", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery manavon"}, {"datetaken": "2007-12-12 15:36:59", "license": "2", "title": "Mary and E. F. Vanderslice", "text": "", "album_id": "72157603481848222", "longitude": "-75.524761", "url_o": "https://farm3.staticflickr.com/2321/2118092461_bfd68c674b_o.jpg", "secret": "175f5c0a53", "media": "photo", "latitude": "40.126538", "id": "2118092461", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery manavon"}, {"datetaken": "2007-12-12 15:37:14", "license": "2", "title": "Vanderslice Memorial; Morris Cemetery, Phoenixville, PA", "text": "", "album_id": "72157603481848222", "longitude": "-75.524761", "url_o": "https://farm3.staticflickr.com/2366/2118096031_e303547f89_o.jpg", "secret": "3f9783e93c", "media": "photo", "latitude": "40.126538", "id": "2118096031", "tags": "graveyards pennsylvania pa civilwar monuments chestercounty phoenixville veteransgraves phoenixvillepa morriscemetery manavon"}, {"datetaken": "2012-02-21 10:00:02", "license": "4", "title": "Boomerang c.1926", "text": "", "album_id": "72157629550887349", "longitude": "151.228183", "url_o": "https://farm8.staticflickr.com/7059/6914436913_871bf68394_o.jpg", "secret": "121d62c7b3", "media": "photo", "latitude": "-33.870161", "id": "6914436913", "tags": "heritage history architecture frank point geotagged bay elizabeth cross albert sydney australia kings nsw hdr boomerang potts neville hampson c1926 thinkingmedia geo:lat=33870161 geo:lon=151228183"}, {"datetaken": "2012-02-21 10:00:46", "license": "4", "title": "Harry\u2019s Caf\u00e9 de Wheels c.1930", "text": "", "album_id": "72157629550887349", "longitude": "151.221165", "url_o": "https://farm8.staticflickr.com/7176/6914445773_43760309bf_o.jpg", "secret": "b2302021a9", "media": "photo", "latitude": "-33.869273", "id": "6914445773", "tags": "heritage history caf\u00e9 architecture de point geotagged bay elizabeth cross tiger wheels sydney harry australia kings nsw edwards hdr potts c1930 harry\u2019s thinkingmedia geo:lat=338692732444026 geo:lon=15122116591055487"}, {"datetaken": "2012-02-21 10:01:43", "license": "4", "title": "Woolloomooloo Finger Wharf c.1910", "text": "", "album_id": "72157629550887349", "longitude": "151.220805", "url_o": "https://farm8.staticflickr.com/7200/6914458951_786508a751_o.jpg", "secret": "6c3411991d", "media": "photo", "latitude": "-33.867894", "id": "6914458951", "tags": "heritage history architecture point geotagged bay elizabeth cross finger sydney australia woolloomooloo kings wharf nsw hdr potts c1910 thinkingmedia geo:lat=33867894 geo:lon=151220805"}, {"datetaken": "2012-02-21 10:02:31", "license": "4", "title": "Tusculum c.1831", "text": "", "album_id": "72157629550887349", "longitude": "151.224731", "url_o": "https://farm8.staticflickr.com/7193/6914461747_95259b2f71_o.jpg", "secret": "0e1fe9696b", "media": "photo", "latitude": "-33.870761", "id": "6914461747", "tags": "heritage history architecture john point geotagged bay elizabeth cross brodie sydney australia kings nsw alexander spark hdr potts verge tusculum thinkingmedia c1831 geo:lat=33870761 geo:lon=151224731"}, {"datetaken": "2012-02-21 10:03:11", "license": "4", "title": "Victoria Street Terrace house", "text": "", "album_id": "72157629550887349", "longitude": "151.222883", "url_o": "https://farm8.staticflickr.com/7193/6914447471_0209debef2_o.jpg", "secret": "507203255d", "media": "photo", "latitude": "-33.872121", "id": "6914447471", "tags": "street house heritage history architecture point geotagged bay elizabeth cross terrace sydney australia victoria kings nsw hdr potts thinkingmedia geo:lat=33872121 geo:lon=151222883"}, {"datetaken": "2012-02-21 10:09:30", "license": "4", "title": "Butler Stairs c.1870", "text": "", "album_id": "72157629550887349", "longitude": "151.222508", "url_o": "https://farm8.staticflickr.com/7048/6914451259_0fa1e038ee_o.jpg", "secret": "107b02c492", "media": "photo", "latitude": "-33.872106", "id": "6914451259", "tags": "heritage history film architecture stairs point geotagged bay kid elizabeth silent cross sydney australian australia kings fatty nsw butler finn hdr stakes potts the thinkingmedia c1870 geo:lat=3387210625459908 geo:lon=15122250858895495"}, {"datetaken": "2012-02-21 10:28:08", "license": "4", "title": "Coca-Cola billboard c.1976", "text": "", "album_id": "72157629550887349", "longitude": "151.222243", "url_o": "https://farm8.staticflickr.com/7204/6914504273_21a239cd06_o.jpg", "secret": "03a4eb5f96", "media": "photo", "latitude": "-33.875312", "id": "6914504273", "tags": "heritage history architecture point geotagged bay elizabeth cross sydney australia billboard kings nsw cocacola hdr potts c1974 thinkingmedia geo:lat=3387531297890195 geo:lon=15122224316931147"}, {"datetaken": "2012-02-21 10:29:28", "license": "4", "title": "Victoria Street Terrace houses", "text": "", "album_id": "72157629550887349", "longitude": "151.222486", "url_o": "https://farm8.staticflickr.com/7053/6914457001_a1eb2608de_o.jpg", "secret": "deb7c036cf", "media": "photo", "latitude": "-33.872847", "id": "6914457001", "tags": "street houses heritage history architecture point geotagged bay elizabeth cross terrace sydney australia victoria kings nsw hdr potts thinkingmedia geo:lat=33872847 geo:lon=151222486"}, {"datetaken": "2012-02-21 10:30:08", "license": "4", "title": "Winston", "text": "", "album_id": "72157629550887349", "longitude": "151.228773", "url_o": "https://farm8.staticflickr.com/7198/6914443677_2a7bd5a8da_o.jpg", "secret": "838f06b14c", "media": "photo", "latitude": "-33.870696", "id": "6914443677", "tags": "road heritage history architecture point geotagged bay elizabeth cross sydney australia kings nsw ithaca winston hdr potts thinkingmedia geo:lat=33870696 geo:lon=151228773"}, {"datetaken": "2012-02-21 10:30:47", "license": "4", "title": "Boomerang c.1926", "text": "", "album_id": "72157629550887349", "longitude": "151.228172", "url_o": "https://farm8.staticflickr.com/7037/6914439285_628c53433c_o.jpg", "secret": "3b8e30fa58", "media": "photo", "latitude": "-33.870188", "id": "6914439285", "tags": "heritage history architecture frank point geotagged bay elizabeth cross albert sydney australia kings nsw hdr boomerang potts neville hampson c1926 thinkingmedia geo:lat=3387018890032542 geo:lon=15122817237070853"}, {"datetaken": "2012-02-21 10:31:15", "license": "4", "title": "Beare Park Fountain", "text": "", "album_id": "72157629550887349", "longitude": "151.228945", "url_o": "https://farm8.staticflickr.com/7044/6914433355_620cfa4ddd_o.jpg", "secret": "5fcdfd016d", "media": "photo", "latitude": "-33.870433", "id": "6914433355", "tags": "park heritage history fountain architecture point geotagged bay elizabeth cross sydney australia kings nsw hdr potts beare thinkingmedia geo:lat=33870433 geo:lon=151228945"}, {"datetaken": "2012-02-21 10:32:25", "license": "4", "title": "Elizabeth Bay House c.1835", "text": "", "album_id": "72157629550887349", "longitude": "151.226391", "url_o": "https://farm8.staticflickr.com/7051/6914435195_bf8543f9e2_o.jpg", "secret": "35e58a8c59", "media": "photo", "latitude": "-33.870130", "id": "6914435195", "tags": "house heritage history architecture point geotagged bay elizabeth cross colonial sydney australia governor kings nsw alexander secretary darling ralph hdr potts macleay geo:lat=3387013 thinkingmedia c1835 geo:lon=151226391"}, {"datetaken": "2012-02-21 10:33:14", "license": "4", "title": "Elizabeth Bay House c.1835", "text": "", "album_id": "72157629550887349", "longitude": "151.226413", "url_o": "https://farm8.staticflickr.com/7207/6914429999_b7d1d6576d_o.jpg", "secret": "1b93bd2275", "media": "photo", "latitude": "-33.870152", "id": "6914429999", "tags": "house heritage history architecture point geotagged bay elizabeth cross sydney australia kings nsw hdr potts thinkingmedia c1835 geo:lat=33870152 geo:lon=151226413"}, {"datetaken": "2012-02-21 10:39:51", "license": "4", "title": "Woolloomooloo Finger Wharf c.1910", "text": "", "album_id": "72157629550887349", "longitude": "151.220977", "url_o": "https://farm8.staticflickr.com/7045/6914460339_c3d8381c20_o.jpg", "secret": "59dffe008b", "media": "photo", "latitude": "-33.867707", "id": "6914460339", "tags": "heritage history architecture point geotagged bay elizabeth cross finger sydney australia woolloomooloo kings wharf nsw hdr potts c1910 thinkingmedia geo:lat=33867707 geo:lon=151220977"}, {"datetaken": "2012-02-21 10:40:25", "license": "4", "title": "Challis Street Terrace houses", "text": "", "album_id": "72157629550887349", "longitude": "151.224101", "url_o": "https://farm8.staticflickr.com/7041/6914426015_d11d843b96_o.jpg", "secret": "75aeea57a0", "media": "photo", "latitude": "-33.868633", "id": "6914426015", "tags": "street houses heritage history architecture point geotagged bay elizabeth cross terrace sydney australia kings nsw hdr potts challis thinkingmedia geo:lat=33868633 geo:lon=151224101"}, {"datetaken": "2012-02-21 10:40:53", "license": "4", "title": "Simpsons of Potts Point", "text": "", "album_id": "72157629550887349", "longitude": "151.224544", "url_o": "https://farm8.staticflickr.com/7184/6914428513_581083bcc4_o.jpg", "secret": "69e41114e5", "media": "photo", "latitude": "-33.868765", "id": "6914428513", "tags": "heritage history architecture point geotagged bay elizabeth cross sydney australia simpsons kings nsw hdr potts thinkingmedia geo:lat=33868765047943526 geo:lon=15122454420122335"}, {"datetaken": "2012-02-21 10:41:33", "license": "4", "title": "St Vincent's Ladies College c.1863", "text": "", "album_id": "72157629550887349", "longitude": "151.224494", "url_o": "https://farm8.staticflickr.com/7197/6914417649_0212d4ee11_o.jpg", "secret": "9bfa03a75e", "media": "photo", "latitude": "-33.868942", "id": "6914417649", "tags": "heritage history college st architecture point geotagged bay elizabeth cross sydney australia kings nsw hdr vincents potts c1863 thinkingmedia geo:lat=33868942772923006 geo:lon=15122449492030717 oldestgirlsschool"}, {"datetaken": "2012-02-21 10:41:59", "license": "4", "title": "The Yellow House c.1970", "text": "", "album_id": "72157629550887349", "longitude": "151.225646", "url_o": "https://farm8.staticflickr.com/7200/6914423825_e771499f6e_o.jpg", "secret": "167827eb09", "media": "photo", "latitude": "-33.868839", "id": "6914423825", "tags": "house heritage history yellow architecture point geotagged bay elizabeth cross martin sydney australia sharp kings nsw hdr potts the thinkingmedia geo:lat=33868839 geo:lon=151225646"}, {"datetaken": "2012-02-21 10:42:22", "license": "4", "title": "St Vincent's Ladies College c.1863", "text": "", "album_id": "72157629550887349", "longitude": "151.224462", "url_o": "https://farm8.staticflickr.com/7198/6914420315_4a896f4cfe_o.jpg", "secret": "e67c849c81", "media": "photo", "latitude": "-33.868981", "id": "6914420315", "tags": "ladies heritage history college st architecture point geotagged bay elizabeth cross sydney australia kings nsw hdr vincents potts c1863 thinkingmedia geo:lat=33868981270762944 geo:lon=15122446258168407"}, {"datetaken": "2012-02-21 10:53:44", "license": "4", "title": "Minerva Cinema c.1937", "text": "", "album_id": "72157629550887349", "longitude": "151.224367", "url_o": "https://farm8.staticflickr.com/7039/6914487079_3ccf328aa4_o.jpg", "secret": "0e4d501231", "media": "photo", "latitude": "-33.871965", "id": "6914487079", "tags": "cinema building heritage history architecture point geotagged bay elizabeth cross metro sydney australia kings nsw minerva hdr potts c1937 thinkingmedia geo:lat=33871965 geo:lon=151224367"}, {"datetaken": "2012-02-21 10:54:08", "license": "4", "title": "Minerva Cinema c.1937", "text": "", "album_id": "72157629550887349", "longitude": "151.224238", "url_o": "https://farm8.staticflickr.com/7050/6914482409_3dde5899dc_o.jpg", "secret": "c99c6cfb3c", "media": "photo", "latitude": "-33.871938", "id": "6914482409", "tags": "cinema heritage history architecture point geotagged bay elizabeth cross metro sydney australia kings nsw minerva hdr potts c1937 thinkingmedia geo:lat=33871938 geo:lon=151224238"}, {"datetaken": "2012-02-21 10:54:39", "license": "4", "title": "Minerva Cinema c.1937", "text": "", "album_id": "72157629550887349", "longitude": "151.224367", "url_o": "https://farm8.staticflickr.com/7193/6914488863_df57eb5991_o.jpg", "secret": "25ce879613", "media": "photo", "latitude": "-33.871938", "id": "6914488863", "tags": "cinema building heritage history architecture point geotagged bay elizabeth cross metro sydney australia kings nsw minerva hdr potts c1937 thinkingmedia geo:lat=33871938 geo:lon=151224367"}, {"datetaken": "2012-02-21 10:55:08", "license": "4", "title": "Byron Hall c.1929", "text": "", "album_id": "72157629550887349", "longitude": "151.225112", "url_o": "https://farm8.staticflickr.com/7190/6914476471_4040eff173_o.jpg", "secret": "8d9d20f2c3", "media": "photo", "latitude": "-33.871761", "id": "6914476471", "tags": "heritage history architecture point geotagged bay hall elizabeth cross c hamilton sydney australia kings nsw byron hdr wilton potts halligan c1912 thinkingmedia geo:lat=33871573 geo:lon=151225308"}, {"datetaken": "2012-02-21 10:55:34", "license": "4", "title": "Byron Hall c.1929", "text": "", "album_id": "72157629550887349", "longitude": "151.224911", "url_o": "https://farm8.staticflickr.com/7187/6914484703_87fed8f4fc_o.jpg", "secret": "6b12295c40", "media": "photo", "latitude": "-33.871898", "id": "6914484703", "tags": "heritage history architecture point geotagged bay hall elizabeth cross c hamilton sydney australia kings nsw byron hdr potts c1929 thinkingmedia geo:lat=33871898 geo:lon=151224911"}, {"datetaken": "2012-02-21 10:59:36", "license": "4", "title": "Kingsclere c.1912", "text": "", "album_id": "72157629550887349", "longitude": "151.225329", "url_o": "https://farm8.staticflickr.com/7205/6914463871_74b15545c0_o.jpg", "secret": "0d18255d37", "media": "photo", "latitude": "-33.871649", "id": "6914463871", "tags": "heritage history architecture point geotagged bay elizabeth cross sydney australia kings nsw hdr kingsclere wilton potts halligan c1912 thinkingmedia geo:lat=33871649 geo:lon=151225329"}, {"datetaken": "2012-02-21 11:00:05", "license": "4", "title": "Kingsclere c.1912", "text": "", "album_id": "72157629550887349", "longitude": "151.225265", "url_o": "https://farm8.staticflickr.com/7045/6914480329_0048d150cd_o.jpg", "secret": "8e017472b0", "media": "photo", "latitude": "-33.871604", "id": "6914480329", "tags": "heritage history architecture point geotagged bay elizabeth cross sydney australia kings nsw hdr kingsclere potts c1912 thinkingmedia geo:lat=33871604 geo:lon=151225265"}, {"datetaken": "2012-02-21 11:02:19", "license": "4", "title": "Rockwall Cresent Terrace houses", "text": "", "album_id": "72157629550887349", "longitude": "151.224441", "url_o": "https://farm8.staticflickr.com/7207/6914467001_c3c32b1a46_o.jpg", "secret": "b47e02be3c", "media": "photo", "latitude": "-33.869524", "id": "6914467001", "tags": "houses heritage history architecture point geotagged bay elizabeth cross terrace sydney australia kings nsw hdr rockwall potts cresent thinkingmedia geo:lat=3386952419286288 geo:lon=15122444159755332"}, {"datetaken": "2012-02-21 11:02:47", "license": "4", "title": "Rockwall c.1831", "text": "", "album_id": "72157629550887349", "longitude": "151.224674", "url_o": "https://farm8.staticflickr.com/7049/6914473853_a1bda1fe30_o.jpg", "secret": "16d0dace48", "media": "photo", "latitude": "-33.869833", "id": "6914473853", "tags": "heritage history architecture john point geotagged bay elizabeth cross sydney australia kings nsw hdr rockwall potts verge thinkingmedia c1831 geo:lat=3386983306044585 geo:lon=15122467426371952"}, {"datetaken": "2012-02-21 11:04:40", "license": "4", "title": "202 Victoria Street", "text": "", "album_id": "72157629550887349", "longitude": "151.222442", "url_o": "https://farm8.staticflickr.com/7048/6914453091_c1aa4924c1_o.jpg", "secret": "e3f917f0cf", "media": "photo", "latitude": "-33.873600", "id": "6914453091", "tags": "street heritage history architecture point geotagged bay elizabeth cross sydney australia victoria kings nsw juanita hdr 202 nielsen potts thinkingmedia geo:lat=338736 geo:lon=151222442"}, {"datetaken": "2007-04-25 17:18:52", "license": "3", "title": "carmelite monastery dining room", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/472175936_ee2559a65b_o.jpg", "secret": "a5b8ec3c8e", "media": "photo", "latitude": "0", "id": "472175936", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:18:52", "license": "3", "title": "carmelite monastery main courtyard", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/195/472175934_e7b1f8cce7_o.jpg", "secret": "eacca5b2c5", "media": "photo", "latitude": "0", "id": "472175934", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:18:52", "license": "3", "title": "carmelite monastery bell tower", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/199/472175930_f692ffa290_o.jpg", "secret": "baa81edc97", "media": "photo", "latitude": "0", "id": "472175930", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:18:52", "license": "3", "title": "carmelite monastery computer room", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/472175928_07a8668d2b_o.jpg", "secret": "9f759ceac0", "media": "photo", "latitude": "0", "id": "472175928", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:18:52", "license": "3", "title": "carmelite monastery cel", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/209/472175926_fdc98858f2_o.jpg", "secret": "885dd11ec1", "media": "photo", "latitude": "0", "id": "472175926", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:18:52", "license": "3", "title": "carmelite monastery", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/472175920_311f2eb31b_o.jpg", "secret": "8ab4cfa839", "media": "photo", "latitude": "0", "id": "472175920", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:31:10", "license": "3", "title": "carmelite monastery dining area", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/212/472183318_0e92829fa4_o.jpg", "secret": "7c17e01a1c", "media": "photo", "latitude": "0", "id": "472183318", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:31:11", "license": "3", "title": "carmelite monastery inner courtyard", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/472183340_db758d6ba3_o.jpg", "secret": "7a92694803", "media": "photo", "latitude": "0", "id": "472183340", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:31:11", "license": "3", "title": "carmelite monastery laundry", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/472183338_4c7b241c8b_o.jpg", "secret": "09d10b403e", "media": "photo", "latitude": "0", "id": "472183338", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:31:11", "license": "3", "title": "carmelite monastery wolf oven", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/472183336_5e6413b117_o.jpg", "secret": "2d34eb2ba7", "media": "photo", "latitude": "0", "id": "472183336", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:31:11", "license": "3", "title": "carmelite monastery kitchen 1", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/190/472183334_81ba42f351_o.jpg", "secret": "5276dc19a2", "media": "photo", "latitude": "0", "id": "472183334", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:31:11", "license": "3", "title": "carmelite monastery kitchen", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/230/472183332_83e1467a83_o.jpg", "secret": "009ba1b544", "media": "photo", "latitude": "0", "id": "472183332", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:36:46", "license": "3", "title": "carmelite monastery therese", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/472201667_cc543c9b04_o.jpg", "secret": "1736c51401", "media": "photo", "latitude": "0", "id": "472201667", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:36:46", "license": "3", "title": "carmelite monastery window", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/472201665_a418310c15_o.jpg", "secret": "d33a259985", "media": "photo", "latitude": "0", "id": "472201665", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:36:46", "license": "3", "title": "carmelite monastery main reception", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/472201659_f751cee6d3_o.jpg", "secret": "dca263645c", "media": "photo", "latitude": "0", "id": "472201659", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:36:46", "license": "3", "title": "carmelite monastery reception area", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/217/472201653_f31f3c2f64_o.jpg", "secret": "bcf9e1589e", "media": "photo", "latitude": "0", "id": "472201653", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:36:46", "license": "3", "title": "carmelite monastery cemetery 1", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/220/472201649_522afbcf5f_o.jpg", "secret": "cc03662582", "media": "photo", "latitude": "0", "id": "472201649", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:36:46", "license": "3", "title": "carmelite monastery cemetery", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/231/472201645_3828ad33f1_o.jpg", "secret": "4e205628d9", "media": "photo", "latitude": "0", "id": "472201645", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:44:32", "license": "3", "title": "left behind.", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/214/472192100_abc1835587_o.jpg", "secret": "9a78a20051", "media": "photo", "latitude": "0", "id": "472192100", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:44:32", "license": "3", "title": "carmelite monastery chickencoops", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/211/472192098_d683b0b278_o.jpg", "secret": "12ddc4fa69", "media": "photo", "latitude": "0", "id": "472192098", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:44:32", "license": "3", "title": "carmelite monastery view", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/472192094_9ce8fb8505_o.jpg", "secret": "073b6c3c60", "media": "photo", "latitude": "0", "id": "472192094", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:44:32", "license": "3", "title": "carmelite monastery grounds 1", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/201/472192092_2d94222e0f_o.jpg", "secret": "fbfe7f09b1", "media": "photo", "latitude": "0", "id": "472192092", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:44:32", "license": "3", "title": "carmelite monastery grounds", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/472192090_041d8c233d_o.jpg", "secret": "35b78d722e", "media": "photo", "latitude": "0", "id": "472192090", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:44:32", "license": "3", "title": "carmelite monastery grotto", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/214/472192088_8848efe5d0_o.jpg", "secret": "1a645dc25e", "media": "photo", "latitude": "0", "id": "472192088", "tags": "religious south monastery retreathouse guam inarajan carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:49:08", "license": "3", "title": "these boots were made for gardening.", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/206/472195100_865e2a5d8a_o.jpg", "secret": "d564cd9afc", "media": "photo", "latitude": "0", "id": "472195100", "tags": "tile boots south monastery retreathouse guam inarajan carmelitenuns malojloj lotsoftile"}, {"datetaken": "2007-04-25 17:49:08", "license": "3", "title": "san isidro church", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/222/472195094_2c70a48d9a_o.jpg", "secret": "7e366b02be", "media": "photo", "latitude": "0", "id": "472195094", "tags": "church religious south monastery retreathouse guam inarajan sanisidro carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:49:08", "license": "3", "title": "san isidro", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/189/472195092_b8d314761a_o.jpg", "secret": "f4b687632f", "media": "photo", "latitude": "0", "id": "472195092", "tags": "church religious south monastery retreathouse guam inarajan sanisidro carmelitenuns malojloj"}, {"datetaken": "2007-04-25 17:49:08", "license": "3", "title": "silence", "text": "", "album_id": "72157600124891007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/197/472195090_44e843ffb4_o.jpg", "secret": "badcc23262", "media": "photo", "latitude": "0", "id": "472195090", "tags": "church religious south monastery retreathouse guam inarajan sanisidro carmelitenuns malojloj"}, {"datetaken": "2007-06-27 10:34:27", "license": "1", "title": "Forgotten 2", "text": "", "album_id": "72157600545101238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1395/656688181_22d13fee17_o.jpg", "secret": "d7e72a7446", "media": "photo", "latitude": "0", "id": "656688181", "tags": "color abandoned photoshop texas nolan weeklysurvivor windturbine chiceaux xceaux"}, {"datetaken": "2007-06-28 23:17:25", "license": "1", "title": "Giants", "text": "", "album_id": "72157600545101238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1255/656793006_cb7f1b0bff_o.jpg", "secret": "f8ba5918b6", "media": "photo", "latitude": "0", "id": "656793006", "tags": "texas nolan country workinprogress windturbine chiceaux xceaux"}, {"datetaken": "2007-06-28 23:18:24", "license": "1", "title": "Reaching into the Clouds", "text": "", "album_id": "72157600545101238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1075/656783750_55e8bd6e56_o.jpg", "secret": "bd6667a709", "media": "photo", "latitude": "0", "id": "656783750", "tags": "texas nolan country workinprogress surreal hdr windturbine chiceaux xceaux"}, {"datetaken": "2007-06-28 23:18:40", "license": "1", "title": "Stopping to Watch the Wind Blow", "text": "", "album_id": "72157600545101238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1039/656779234_284b9f695c_o.jpg", "secret": "a0082cc3c9", "media": "photo", "latitude": "0", "id": "656779234", "tags": "texas nolan country workinprogress surreal hdr windturbine chiceaux xceaux"}, {"datetaken": "2007-06-28 23:19:07", "license": "1", "title": "Intense", "text": "", "album_id": "72157600545101238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1042/656773976_ae71c1d2cc_o.jpg", "secret": "a1600838aa", "media": "photo", "latitude": "0", "id": "656773976", "tags": "texas nolan country workinprogress surreal hdr windturbine chiceaux xceaux"}, {"datetaken": "2007-06-28 23:19:21", "license": "1", "title": "Just Passing Through", "text": "", "album_id": "72157600545101238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1346/655912331_4c23d95ce7_o.jpg", "secret": "426ba9bc3c", "media": "photo", "latitude": "0", "id": "655912331", "tags": "texas nolan country workinprogress surreal hdr windturbine chiceaux xceaux"}, {"datetaken": "2007-06-28 23:19:37", "license": "1", "title": "Solo", "text": "", "album_id": "72157600545101238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1123/656758658_bdf3bf590b_o.jpg", "secret": "69c755adb3", "media": "photo", "latitude": "0", "id": "656758658", "tags": "texas nolan country workinprogress surreal windturbine chiceaux xceaux"}, {"datetaken": "2007-06-28 23:20:20", "license": "1", "title": "Forgotten", "text": "", "album_id": "72157600545101238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1195/656744414_a035c9d146_o.jpg", "secret": "46816317dc", "media": "photo", "latitude": "0", "id": "656744414", "tags": "texas nolan country workinprogress surreal infrared windturbine chiceaux xceaux"}, {"datetaken": "2007-06-29 01:57:52", "license": "1", "title": "Finding the Wind", "text": "", "album_id": "72157600545101238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1367/657081239_670ab74f93_o.jpg", "secret": "9a663b1b8a", "media": "photo", "latitude": "0", "id": "657081239", "tags": "photoshop texas nolan hdr windturbine chiceaux xceaux"}, {"datetaken": "2007-06-29 02:29:43", "license": "1", "title": "Earth, Wind and Fire", "text": "", "album_id": "72157600545101238", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1207/658194078_cd8b5c0584_o.jpg", "secret": "3549c4ea87", "media": "photo", "latitude": "0", "id": "658194078", "tags": "sunset photoshop texas nolan hdr windturbine chiceaux xceaux"}, {"datetaken": "2010-10-30 14:03:08", "license": "3", "title": "Heapspace", "text": "", "album_id": "72157625152211431", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1346/5130131515_8ff8ec16c3_o.jpg", "secret": "8c6afc4133", "media": "photo", "latitude": "0", "id": "5130131515", "tags": "test lumix olympus pancake 20mm"}, {"datetaken": "2010-10-30 14:12:02", "license": "3", "title": "Recycling", "text": "", "album_id": "72157625152211431", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/5130733500_42d95a407d_o.jpg", "secret": "266912fc60", "media": "photo", "latitude": "0", "id": "5130733500", "tags": "test lumix olympus pancake 20mm"}, {"datetaken": "2010-10-30 14:59:16", "license": "3", "title": "Fun With Polymers", "text": "", "album_id": "72157625152211431", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/5130132125_59ff95c75e_o.jpg", "secret": "c9d652a9c1", "media": "photo", "latitude": "0", "id": "5130132125", "tags": "test lumix olympus pancake 20mm"}, {"datetaken": "2010-10-30 15:02:58", "license": "3", "title": "The Table That Launched A Thousand Sunday Dinners", "text": "", "album_id": "72157625152211431", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/5130734044_fc777dc28d_o.jpg", "secret": "0745c3a90e", "media": "photo", "latitude": "0", "id": "5130734044", "tags": "test lumix olympus pancake 20mm"}, {"datetaken": "2010-10-30 15:11:44", "license": "3", "title": "Shave...and-a-hair-cut...", "text": "", "album_id": "72157625152211431", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/5130132647_ce159254ed_o.jpg", "secret": "7f284800f8", "media": "photo", "latitude": "0", "id": "5130132647", "tags": "test lumix olympus pancake 20mm"}, {"datetaken": "2010-10-30 15:12:58", "license": "3", "title": "Mission Accomplished", "text": "", "album_id": "72157625152211431", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/5130734626_d07b79519e_o.jpg", "secret": "7abf5db3ba", "media": "photo", "latitude": "0", "id": "5130734626", "tags": "test lumix olympus pancake 20mm"}, {"datetaken": "2010-10-30 15:19:12", "license": "3", "title": "The Platters", "text": "", "album_id": "72157625152211431", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/5130734920_e46bb3780e_o.jpg", "secret": "f445b60216", "media": "photo", "latitude": "0", "id": "5130734920", "tags": "test lumix olympus pancake 20mm"}, {"datetaken": "2010-10-30 15:40:56", "license": "3", "title": "Be There!", "text": "", "album_id": "72157625152211431", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1230/5130133473_f59faa3c2d_o.jpg", "secret": "792ff440fa", "media": "photo", "latitude": "0", "id": "5130133473", "tags": "test lumix olympus pancake 20mm"}, {"datetaken": "2010-10-30 15:47:18", "license": "3", "title": "...And I'm a PC.", "text": "", "album_id": "72157625152211431", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4130/5130133711_d7203af246_o.jpg", "secret": "21ff3cf0a6", "media": "photo", "latitude": "0", "id": "5130133711", "tags": "test lumix olympus pancake 20mm"}, {"datetaken": "2010-10-30 15:49:20", "license": "3", "title": "Well-Loved", "text": "", "album_id": "72157625152211431", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1332/5130133961_7d22340aa1_o.jpg", "secret": "92bc43d4f7", "media": "photo", "latitude": "0", "id": "5130133961", "tags": "test lumix olympus pancake 20mm"}, {"datetaken": "2010-10-30 16:45:10", "license": "3", "title": "Glug", "text": "", "album_id": "72157625152211431", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1258/5130134223_30246dfb68_o.jpg", "secret": "02c31135b1", "media": "photo", "latitude": "0", "id": "5130134223", "tags": "test lumix olympus pancake 20mm"}, {"datetaken": "2010-10-30 18:34:14", "license": "3", "title": "Glamour Shot", "text": "", "album_id": "72157625152211431", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/5130134467_6f1af8d981_o.jpg", "secret": "a4a2553381", "media": "photo", "latitude": "0", "id": "5130134467", "tags": "test lumix olympus pancake 20mm"}, {"datetaken": "2010-10-30 19:29:10", "license": "3", "title": "The Dark Night", "text": "", "album_id": "72157625152211431", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1061/5130736512_b9d318da5c_o.jpg", "secret": "52af6e8970", "media": "photo", "latitude": "0", "id": "5130736512", "tags": "test lumix olympus pancake 20mm"}, {"datetaken": "2006-10-22 19:27:59", "license": "3", "title": "Monument at the highest point, behind and below is the Oconee river", "text": "", "album_id": "72157594341890810", "longitude": "-83.207306", "url_o": "https://farm1.staticflickr.com/113/277610966_44b9ed21bf_o.jpg", "secret": "44b9ed21bf", "media": "photo", "latitude": "33.046407", "id": "277610966", "tags": "georgia baldwin dbb1 smalltowngeorgia fortwilkinson geo:lat=33046407geolon83207306dbb1geotaggedmilledgeville"}, {"datetaken": "2006-10-22 19:34:02", "license": "3", "title": "another D.A.R sign", "text": "", "album_id": "72157594341890810", "longitude": "-83.209429", "url_o": "https://farm1.staticflickr.com/110/277610763_61a89f3dc6_o.jpg", "secret": "61a89f3dc6", "media": "photo", "latitude": "33.046177", "id": "277610763", "tags": "geotagged dbb1 weirdgeorgia wierdgeorgia geo:lat=33046177 geo:lon=83209429"}, {"datetaken": "2006-10-22 19:34:19", "license": "3", "title": "D.A.R", "text": "", "album_id": "72157594341890810", "longitude": "-83.207284", "url_o": "https://farm1.staticflickr.com/103/277611824_b29a3609a5_o.jpg", "secret": "b29a3609a5", "media": "photo", "latitude": "33.046362", "id": "277611824", "tags": "georgia geotagged drivebybiscuits1 dbb1 geo:lat=33046362 geo:lon=83207284"}, {"datetaken": "2006-10-22 19:34:32", "license": "3", "title": "Sign on the gate on the trail leading to the site", "text": "", "album_id": "72157594341890810", "longitude": "-83.207273", "url_o": "https://farm1.staticflickr.com/71/277612010_4df4a53837_o.jpg", "secret": "4df4a53837", "media": "photo", "latitude": "33.046407", "id": "277612010", "tags": "geotagged drivebybiscuits1 dbb1 geolat33046407 geolon83207273"}, {"datetaken": "2006-10-22 19:35:13", "license": "3", "title": "trail leading to the site of Fort Wilkinson", "text": "", "album_id": "72157594341890810", "longitude": "-83.207327", "url_o": "https://farm1.staticflickr.com/62/277611662_49d224d618_o.jpg", "secret": "49d224d618", "media": "photo", "latitude": "33.046452", "id": "277611662", "tags": "georgia geotagged drivebybiscuits1 dbb1 geo:lat=33046452 geo:lon=83207327"}, {"datetaken": "2006-10-22 19:37:59", "license": "3", "title": "Fort Wilkinson", "text": "", "album_id": "72157594341890810", "longitude": "-83.212262", "url_o": "https://farm1.staticflickr.com/92/277586806_a809c75543_o.jpg", "secret": "a809c75543", "media": "photo", "latitude": "33.045229", "id": "277586806", "tags": "ghm00523 georgiahistoricalmarker vinsonhighwaymilledgevillebaldwin countygeorgiageolat33045229geolon83212262"}, {"datetaken": "2006-10-24 01:22:49", "license": "3", "title": "Foundation stone", "text": "", "album_id": "72157594341890810", "longitude": "0", "url_o": "https://farm1.staticflickr.com/103/279034799_83aa92ad46_o.jpg", "secret": "83aa92ad46", "media": "photo", "latitude": "0", "id": "279034799", "tags": "dbb1 fortwilkinson"}, {"datetaken": "2006-10-24 01:23:37", "license": "3", "title": "MONUMENT", "text": "", "album_id": "72157594341890810", "longitude": "-83.207241", "url_o": "https://farm1.staticflickr.com/97/279034846_a2c19f2aa8_o.jpg", "secret": "a2c19f2aa8", "media": "photo", "latitude": "33.046452", "id": "279034846", "tags": "geotagged dbb1 fortwilkinson geo:lat=33046452 geo:lon=83207241"}, {"datetaken": "2006-10-24 01:23:50", "license": "3", "title": "Fort Wilkinson", "text": "", "album_id": "72157594341890810", "longitude": "-83.207263", "url_o": "https://farm1.staticflickr.com/95/279034894_a5bb7cdf78_o.jpg", "secret": "a5bb7cdf78", "media": "photo", "latitude": "33.046425", "id": "279034894", "tags": "geotagged dbb1 fortwilkinsongeolat33046425 geo:lon=83207263"}, {"datetaken": "2006-10-24 01:24:17", "license": "3", "title": "Rocks", "text": "", "album_id": "72157594341890810", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/279056375_70e6a652bc_o.jpg", "secret": "70e6a652bc", "media": "photo", "latitude": "0", "id": "279056375", "tags": "drivebybiscuits1weirdgeorgia"}, {"datetaken": "2006-10-24 01:26:10", "license": "3", "title": "PICT0120", "text": "", "album_id": "72157594341890810", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/279034930_8f977f022e_o.jpg", "secret": "8f977f022e", "media": "photo", "latitude": "0", "id": "279034930", "tags": "drivebybiscuits1"}, {"datetaken": "2006-10-24 01:26:44", "license": "3", "title": "Fort Wilkinson", "text": "", "album_id": "72157594341890810", "longitude": "-83.207316", "url_o": "https://farm1.staticflickr.com/114/279034968_f1b4d5a740_o.jpg", "secret": "f1b4d5a740", "media": "photo", "latitude": "33.046398", "id": "279034968", "tags": "geotagged drivebybiscuits1 dbb1 geolat33046398 geolon83207316"}, {"datetaken": "2007-07-16 11:09:46", "license": "5", "title": "Git in yer bikini and on yer bike, soldier!", "text": "", "album_id": "72157602309308014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2207/1511545315_71d85e7f0f_o.jpg", "secret": "eede836682", "media": "photo", "latitude": "0", "id": "1511545315", "tags": "bikes shift bikini bikefun bikinibikemove se0l16 porkhouse"}, {"datetaken": "2007-07-16 11:19:46", "license": "5", "title": "Git in yer bikini and on yer bike, soldier!", "text": "", "album_id": "72157602309308014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2267/1511543713_dc40e66cff_o.jpg", "secret": "6828dc0db5", "media": "photo", "latitude": "0", "id": "1511543713", "tags": "bikes shift bikini bikefun bikinibikemove se0l16 porkhouse"}, {"datetaken": "2007-07-16 11:19:51", "license": "5", "title": "Git in yer bikini and on yer bike, soldier!", "text": "", "album_id": "72157602309308014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2106/1511541537_fb8e04f8ef_o.jpg", "secret": "1341a85010", "media": "photo", "latitude": "0", "id": "1511541537", "tags": "bikes shift bikini bikefun bikinibikemove se0l16 porkhouse"}, {"datetaken": "2007-07-16 11:20:25", "license": "5", "title": "Git in yer bikini and on yer bike, soldier!", "text": "", "album_id": "72157602309308014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2338/1512393918_ee38e6ac8b_o.jpg", "secret": "7fb3e83cce", "media": "photo", "latitude": "0", "id": "1512393918", "tags": "bikes shift bikini bikefun bikinibikemove se0l16 porkhouse"}, {"datetaken": "2007-07-16 11:20:39", "license": "5", "title": "Git in yer bikini and on yer bike, soldier!", "text": "", "album_id": "72157602309308014", "longitude": "0", "url_o": "https://farm1.staticflickr.com/232/1511535605_d6f2253ade_o.jpg", "secret": "d786b32c2b", "media": "photo", "latitude": "0", "id": "1511535605", "tags": "bikes shift bikini bikefun bikinibikemove se0l16 porkhouse"}, {"datetaken": "2007-07-16 11:38:21", "license": "5", "title": "Git in yer bikini and on yer bike, soldier!", "text": "", "album_id": "72157602309308014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2266/1511532001_203e7c0c2a_o.jpg", "secret": "c7da1ff653", "media": "photo", "latitude": "0", "id": "1511532001", "tags": "bikes shift bikini bikefun bikinibikemove se0l16 porkhouse"}, {"datetaken": "2007-07-16 11:38:33", "license": "5", "title": "Move all my crap!", "text": "", "album_id": "72157602309308014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2390/1512369562_fef2d98df0_o.jpg", "secret": "f862c4eab3", "media": "photo", "latitude": "0", "id": "1512369562", "tags": "bikes shift bikini bikefun bikinibikemove se0l16 porkhouse"}, {"datetaken": "2007-07-16 11:47:33", "license": "5", "title": "Move all my crap!", "text": "", "album_id": "72157602309308014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2039/1511486813_6a951bbbff_o.jpg", "secret": "179ea9bc8f", "media": "photo", "latitude": "0", "id": "1511486813", "tags": "bikes shift bikini bikefun bikinibikemove se0l16 porkhouse"}, {"datetaken": "2007-07-16 11:58:09", "license": "5", "title": "Move all my crap!", "text": "", "album_id": "72157602309308014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2356/1511480489_880f48c601_o.jpg", "secret": "f50607e2d0", "media": "photo", "latitude": "0", "id": "1511480489", "tags": "bikes shift bikini bikefun bikinibikemove se0l16 porkhouse"}, {"datetaken": "2007-07-16 11:58:42", "license": "5", "title": "Move all my crap!", "text": "", "album_id": "72157602309308014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2419/1512332944_277e813397_o.jpg", "secret": "051d679adf", "media": "photo", "latitude": "0", "id": "1512332944", "tags": "bikes shift bikini bikefun bikinibikemove se0l16 porkhouse"}, {"datetaken": "2007-07-16 11:59:30", "license": "5", "title": "Move all my crap!", "text": "", "album_id": "72157602309308014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2376/1512330382_af85861258_o.jpg", "secret": "1080edfa2d", "media": "photo", "latitude": "0", "id": "1512330382", "tags": "bikes shift bikini bikefun bikinibikemove se0l16 porkhouse"}, {"datetaken": "2007-07-16 12:00:34", "license": "5", "title": "Move all my crap!", "text": "", "album_id": "72157602309308014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2207/1512327816_8b863e68e6_o.jpg", "secret": "05709941f6", "media": "photo", "latitude": "0", "id": "1512327816", "tags": "bikes shift bikini bikefun bikinibikemove se0l16 porkhouse"}, {"datetaken": "2007-07-16 12:01:24", "license": "5", "title": "Move all my crap!", "text": "", "album_id": "72157602309308014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2061/1511469393_0561ef2bd9_o.jpg", "secret": "28e1aafe7c", "media": "photo", "latitude": "0", "id": "1511469393", "tags": "bikes shift bikini bikefun bikinibikemove se0l16 porkhouse"}, {"datetaken": "2007-07-16 12:04:54", "license": "5", "title": "Move all my crap!", "text": "", "album_id": "72157602309308014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2313/1512323842_a232d9872a_o.jpg", "secret": "705a05d3ff", "media": "photo", "latitude": "0", "id": "1512323842", "tags": "bikes shift bikini bikefun bikinibikemove se0l16 porkhouse"}, {"datetaken": "2007-07-16 12:21:00", "license": "5", "title": "Move all my crap!", "text": "", "album_id": "72157602309308014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2269/1511465443_41518f90fa_o.jpg", "secret": "d60460ed88", "media": "photo", "latitude": "0", "id": "1511465443", "tags": "bikes shift bikini bikefun bikinibikemove se0l16 porkhouse"}, {"datetaken": "2007-07-16 12:56:38", "license": "5", "title": "Move all my crap!", "text": "", "album_id": "72157602309308014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2231/1511462409_c89dc6f4a2_o.jpg", "secret": "89ad41e7c7", "media": "photo", "latitude": "0", "id": "1511462409", "tags": "bikes shift bikini bikefun bikinibikemove se0l16 porkhouse"}, {"datetaken": "2007-07-16 13:53:43", "license": "5", "title": "Move all my crap!", "text": "", "album_id": "72157602309308014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2305/1512316274_05cb19c0a0_o.jpg", "secret": "d02b7b3595", "media": "photo", "latitude": "0", "id": "1512316274", "tags": "bikes shift bikini bikefun bikinibikemove se0l16 porkhouse"}, {"datetaken": "2008-02-17 13:20:53", "license": "4", "title": "Sumner to Pegasus Bay", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2019/2273561989_f18cf4f2c8_o.jpg", "secret": "138d14c59a", "media": "photo", "latitude": "0", "id": "2273561989", "tags": "christchurch sumner godleyhead pegasusbay"}, {"datetaken": "2008-02-17 13:23:13", "license": "4", "title": "New Brighton beach", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2354/2273566315_854f20db3f_o.jpg", "secret": "f966d3994c", "media": "photo", "latitude": "0", "id": "2273566315", "tags": "christchurch beach newbrighton godleyhead"}, {"datetaken": "2008-02-17 13:28:37", "license": "4", "title": "Scarborough, Godley Head", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2103/2273571087_7cc5eb2e76_o.jpg", "secret": "66742e9337", "media": "photo", "latitude": "0", "id": "2273571087", "tags": "christchurch scarborough godleyhead"}, {"datetaken": "2008-02-17 13:31:24", "license": "4", "title": "Scarborough, Godley Head", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2249/2274367858_b2e0548f1d_o.jpg", "secret": "750170e09a", "media": "photo", "latitude": "0", "id": "2274367858", "tags": "christchurch scarborough godleyhead"}, {"datetaken": "2008-02-17 13:48:38", "license": "4", "title": "Lyttelton Harbour", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2020/2273578277_b07aef0ed8_o.jpg", "secret": "30a8a467a2", "media": "photo", "latitude": "0", "id": "2273578277", "tags": "christchurch godleyhead lytteltonharbour"}, {"datetaken": "2008-02-17 13:50:31", "license": "4", "title": "Toilet foundations, Godley Head", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2147/2273585357_e8caeb7da5_o.jpg", "secret": "c2218c4dda", "media": "photo", "latitude": "0", "id": "2273585357", "tags": "christchurch toilets foundations godleyhead"}, {"datetaken": "2008-02-17 13:51:35", "license": "4", "title": "Engine Room, Godley Head", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2033/2273588941_025f22b41c_o.jpg", "secret": "c7c408465c", "media": "photo", "latitude": "0", "id": "2273588941", "tags": "christchurch godleyhead"}, {"datetaken": "2008-02-17 14:04:40", "license": "4", "title": "Yacht on Lyttelton Harbour", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2234/2274389014_9df408a04f_o.jpg", "secret": "6ef970ee8f", "media": "photo", "latitude": "0", "id": "2274389014", "tags": "christchurch yacht godleyhead lytteltonharbour"}, {"datetaken": "2008-02-17 14:18:02", "license": "4", "title": "Drips in tunnel", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2245/2274395542_7c3f0a7505_o.jpg", "secret": "733ba8afc9", "media": "photo", "latitude": "0", "id": "2274395542", "tags": "christchurch tunnel drips godleyhead"}, {"datetaken": "2008-02-17 14:23:38", "license": "4", "title": "Canterbury Cat, Lyttelton Harbour heads", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2010/2273609911_53a49a7661_o.jpg", "secret": "58dbdcafc2", "media": "photo", "latitude": "0", "id": "2273609911", "tags": "christchurch godleyhead lytteltonharbour canterburycat"}, {"datetaken": "2008-02-17 14:25:20", "license": "4", "title": "Tunnel, Godley Head", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2057/2273611713_78658f0e87_o.jpg", "secret": "242896e305", "media": "photo", "latitude": "0", "id": "2273611713", "tags": "christchurch tunnel godleyhead"}, {"datetaken": "2008-02-17 14:29:07", "license": "4", "title": "Tunnel exit, Godley Head", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2187/2273613831_b65ae889bb_o.jpg", "secret": "bacef1bc9f", "media": "photo", "latitude": "0", "id": "2273613831", "tags": "christchurch tunnel godleyhead"}, {"datetaken": "2008-02-17 14:35:21", "license": "4", "title": "Search light station, Godley Head", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2205/2273620031_1cf99032fb_o.jpg", "secret": "0660e6271c", "media": "photo", "latitude": "0", "id": "2273620031", "tags": "christchurch godleyhead searchlightstation"}, {"datetaken": "2008-02-17 14:39:46", "license": "4", "title": "Search light station, Godley Head", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2398/2273627909_87b8d6dc55_o.jpg", "secret": "f13c3a813d", "media": "photo", "latitude": "0", "id": "2273627909", "tags": "christchurch godleyhead searchlightstation"}, {"datetaken": "2008-02-17 14:43:11", "license": "4", "title": "Above Search light station, Godley Head", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2021/2274423504_eaee399e47_o.jpg", "secret": "2130f07224", "media": "photo", "latitude": "0", "id": "2274423504", "tags": "christchurch godleyhead searchlightstation"}, {"datetaken": "2008-02-17 14:43:22", "license": "4", "title": "Search light station, Godley Head", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2237/2274424592_9f9e3f12ae_o.jpg", "secret": "1225c2e3e6", "media": "photo", "latitude": "0", "id": "2274424592", "tags": "christchurch godleyhead searchlightstation"}, {"datetaken": "2008-02-17 14:49:38", "license": "4", "title": "Search light station, Godley Head", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2009/2273642959_1d7d7df9b3_o.jpg", "secret": "1df2df9f97", "media": "photo", "latitude": "0", "id": "2273642959", "tags": "christchurch godleyhead searchlightstation"}, {"datetaken": "2008-02-17 15:07:55", "license": "4", "title": "Tunnel entrance, Godley Head", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2418/2273653333_606eb84775_o.jpg", "secret": "b5a5236eea", "media": "photo", "latitude": "0", "id": "2273653333", "tags": "christchurch tunnel godleyhead"}, {"datetaken": "2008-02-17 15:13:09", "license": "4", "title": "Lyttelton Harbour", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2351/2274448414_a704db8bdc_o.jpg", "secret": "ffa8a1cc88", "media": "photo", "latitude": "0", "id": "2274448414", "tags": "christchurch godleyhead lytteltonharbour"}, {"datetaken": "2008-02-17 15:19:56", "license": "4", "title": "Battery observation post, Godley Head", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2236/2274450564_dbfc14c2fe_o.jpg", "secret": "a7fd3fb1da", "media": "photo", "latitude": "0", "id": "2274450564", "tags": "christchurch godleyhead batteryobservationpost"}, {"datetaken": "2008-02-17 15:23:57", "license": "4", "title": "Battery observation post, Godley Head", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2160/2273662573_48cff9c305_o.jpg", "secret": "975c598bf6", "media": "photo", "latitude": "0", "id": "2273662573", "tags": "christchurch godleyhead batteryobservationpost"}, {"datetaken": "2008-02-17 15:41:01", "license": "4", "title": "Godley Head Battery Compound gate", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2137/2274769349_28ec7a2481_o.jpg", "secret": "a6b6da3ee0", "media": "photo", "latitude": "0", "id": "2274769349", "tags": "christchurch gate barbedwire godleyhead batterycompound"}, {"datetaken": "2008-02-17 15:43:48", "license": "4", "title": "No. 3 Magazine, Godley Head Battery Compound", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2318/2274777061_cd24240d96_o.jpg", "secret": "dd244e1afa", "media": "photo", "latitude": "0", "id": "2274777061", "tags": "christchurch mesh godleyhead"}, {"datetaken": "2008-02-17 15:46:51", "license": "4", "title": "Gun Emplacement 1, Godley Head Battery Compound", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2224/2274779247_929ec14f6f_o.jpg", "secret": "f87e04b321", "media": "photo", "latitude": "0", "id": "2274779247", "tags": "christchurch godleyhead gunemplacement"}, {"datetaken": "2008-02-17 15:55:59", "license": "4", "title": "Lighthouse, Godley Head", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2080/2274792893_18eefc9f16_o.jpg", "secret": "f013320beb", "media": "photo", "latitude": "0", "id": "2274792893", "tags": "christchurch lighthouse godleyhead lytteltonharbour"}, {"datetaken": "2008-02-17 15:56:10", "license": "4", "title": "Port Levy headlands", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2214/2275590194_8fb7495736_o.jpg", "secret": "e70018ab1e", "media": "photo", "latitude": "0", "id": "2275590194", "tags": "christchurch portlevy godleyhead lytteltonharbour"}, {"datetaken": "2008-02-17 15:56:54", "license": "4", "title": "Lighthouse, Godley Head", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2395/2274797965_ce5576a039_o.jpg", "secret": "340866da8b", "media": "photo", "latitude": "0", "id": "2274797965", "tags": "christchurch lighthouse godleyhead lytteltonharbour"}, {"datetaken": "2008-02-17 15:58:48", "license": "4", "title": "Gun Emplacement 2, Godley Head Battery Compound", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2171/2274800431_c907506577_o.jpg", "secret": "6f616d7d59", "media": "photo", "latitude": "0", "id": "2274800431", "tags": "christchurch godleyhead gunemplacement"}, {"datetaken": "2008-02-17 16:04:53", "license": "4", "title": "Gun Emplacement 2, Godley Head Battery Compound", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2052/2274810649_8730982835_o.jpg", "secret": "c15e44e547", "media": "photo", "latitude": "0", "id": "2274810649", "tags": "christchurch godleyhead gunemplacement"}, {"datetaken": "2008-02-17 16:08:01", "license": "4", "title": "War shelter tunnel, Godley Head Battery Compound", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2396/2275610950_e00f7c68fa_o.jpg", "secret": "734dcf1e12", "media": "photo", "latitude": "0", "id": "2275610950", "tags": "christchurch tunnel godleyhead"}, {"datetaken": "2008-02-17 16:12:21", "license": "4", "title": "War shelter, Godley Head Battery Compound", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2404/2275613346_550abbe6a8_o.jpg", "secret": "4cf5b1761a", "media": "photo", "latitude": "0", "id": "2275613346", "tags": "christchurch godleyhead warshelter"}, {"datetaken": "2008-02-17 16:18:53", "license": "4", "title": "Gun Emplacement 3, Godley Head Battery Compound", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2416/2274829943_fe6916418d_o.jpg", "secret": "1b04b024a7", "media": "photo", "latitude": "0", "id": "2274829943", "tags": "christchurch godleyhead gunemplacement"}, {"datetaken": "2008-02-17 16:24:21", "license": "4", "title": "Godley Head Battery Compound", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2216/2274839207_39eda3d972_o.jpg", "secret": "509f292f7c", "media": "photo", "latitude": "0", "id": "2274839207", "tags": "christchurch godleyhead"}, {"datetaken": "2008-02-17 16:26:02", "license": "4", "title": "Little house, Godley Head", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2082/2274841875_88ef87b289_o.jpg", "secret": "1b8e251ec0", "media": "photo", "latitude": "0", "id": "2274841875", "tags": "christchurch house pine trailer godleyhead"}, {"datetaken": "2008-02-17 16:50:19", "license": "4", "title": "Cycling on Summit Rd", "text": "", "album_id": "72157603934726675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2204/2275641858_3202c9d698_o.jpg", "secret": "4f43748529", "media": "photo", "latitude": "0", "id": "2275641858", "tags": "christchurch cycling porthills godleyhead summitrd"}, {"datetaken": "2008-08-02 08:47:40", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 03 - Title Page (E)", "text": "", "album_id": "72157606503374257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3103/2725567404_e7be6a9761_o.jpg", "secret": "9c3c7bc147", "media": "photo", "latitude": "0", "id": "2725567404", "tags": "losangeles historichouses titlepage westadams historicwestadams losangelesandvicinity kansassebastian"}, {"datetaken": "2008-08-02 08:47:44", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 04 - Introduction (E)", "text": "", "album_id": "72157606503374257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3242/2724744907_686d8b54ea_o.jpg", "secret": "729b1bbc4d", "media": "photo", "latitude": "0", "id": "2724744907", "tags": "losangeles introduction historichouses westadams historicwestadams losangelesandvicinity kansassebastian"}, {"datetaken": "2008-08-02 08:47:46", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 10 - Chester Place (E)", "text": "", "album_id": "72157606503374257", "longitude": "-118.277853", "url_o": "https://farm4.staticflickr.com/3279/2725568470_e9e4aaaac6_o.jpg", "secret": "2543076fe2", "media": "photo", "latitude": "34.030211", "id": "2725568470", "tags": "losangeles historichouses westadams chesterplace historicwestadams losangelesandvicinity thenorthentrance kansassebastian"}, {"datetaken": "2008-08-02 08:47:49", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 11 - Harry Gray/P Max Kuehnrich Residence (E)", "text": "", "album_id": "72157606503374257", "longitude": "-118.277496", "url_o": "https://farm4.staticflickr.com/3221/2724745793_a696f889e0_o.jpg", "secret": "98c64239cb", "media": "photo", "latitude": "34.030784", "id": "2724745793", "tags": "losangeles historichouses westadams chesterplace historicwestadams losangelesandvicinity pmaxkuehnrich kuehnrichresidence residenceofpmaxkuehnrich kansassebastian"}, {"datetaken": "2008-08-02 08:47:51", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 15 - Vermilion Residence (E)", "text": "", "album_id": "72157606503374257", "longitude": "-118.277412", "url_o": "https://farm4.staticflickr.com/3224/2725569362_f922690859_o.jpg", "secret": "efbf97b0fd", "media": "photo", "latitude": "34.030921", "id": "2725569362", "tags": "losangeles historichouses westadams chesterplace historicwestadams losangelesandvicinity asvermilian vermilianresidence residenceofmrsasvermilian kansassebastian"}, {"datetaken": "2008-08-02 08:47:53", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 22 - Harvard Military Academy (E)", "text": "", "album_id": "72157606503374257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3152/2725569740_6c139ac6cd_o.jpg", "secret": "f7cd8fb03d", "media": "photo", "latitude": "0", "id": "2725569740", "tags": "losangeles westernavenue historichouses westadams historicwestadams losangelesandvicinity harvardmilitaryschool kansassebastian"}, {"datetaken": "2008-08-02 08:47:56", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 23 - Harvard Military Academy (E)", "text": "", "album_id": "72157606503374257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3180/2725570114_a3b7570e03_o.jpg", "secret": "0c37e41d34", "media": "photo", "latitude": "0", "id": "2725570114", "tags": "losangeles westernavenue historichouses westadams historicwestadams losangelesandvicinity harvardmilitaryschool commissionedofficers kansassebastian"}, {"datetaken": "2008-08-02 08:47:58", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 25 - Laughlin Residence (E)", "text": "", "album_id": "72157606503374257", "longitude": "-118.275793", "url_o": "https://farm4.staticflickr.com/3090/2725570546_6c4feb9999_o.jpg", "secret": "2d09e8949e", "media": "photo", "latitude": "34.028931", "id": "2725570546", "tags": "losangeles historichouses adamsstreet homerlaughlin westadams historicwestadams losangelesandvicinity westadamsboulevard laughlinresidence residenceofhomerlaughlin kansassebastian"}, {"datetaken": "2008-08-02 08:48:00", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 26 - Laughlin Residence (E)", "text": "", "album_id": "72157606503374257", "longitude": "-118.275804", "url_o": "https://farm4.staticflickr.com/3259/2724747845_322fd6afb7_o.jpg", "secret": "1cd3c5b991", "media": "photo", "latitude": "34.028108", "id": "2724747845", "tags": "losangeles historichouses adamsstreet homerlaughlin westadams historicwestadams losangelesandvicinity westadamsboulevard laughlinresidence residenceofhomerlaughlin kansassebastian"}, {"datetaken": "2008-08-02 08:48:03", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 28 - Silent Residence (E)", "text": "", "album_id": "72157606503374257", "longitude": "-118.277853", "url_o": "https://farm4.staticflickr.com/3212/2725571450_6dda0d8d0b_o.jpg", "secret": "7b8ac54ab9", "media": "photo", "latitude": "34.030211", "id": "2725571450", "tags": "losangeles historichouses westadams chesterplace historicwestadams losangelesandvicinity silentresidence residenceofjudgecharlessilent judgecharlessilent kansassebastian"}, {"datetaken": "2008-08-02 08:48:05", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 29 - Bayly Residence (E)", "text": "", "album_id": "72157606503374257", "longitude": "-118.277412", "url_o": "https://farm4.staticflickr.com/3071/2725571920_7a5ecf9dc9_o.jpg", "secret": "dbea5077a3", "media": "photo", "latitude": "34.030921", "id": "2725571920", "tags": "losangeles historichouses westadams chesterplace historicwestadams losangelesandvicinity williambayly baylyresidence residenceandgroundsofwilliambayly kansassebastian"}, {"datetaken": "2008-08-02 08:48:07", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 36 - Casa de Rosas (E)", "text": "", "album_id": "72157606503374257", "longitude": "-118.283979", "url_o": "https://farm4.staticflickr.com/3069/2724749245_2e8f115028_o.jpg", "secret": "24f59e4513", "media": "photo", "latitude": "34.031411", "id": "2724749245", "tags": "losangeles historichouses westadams historicwestadams losangelesandvicinity westadamsboulevard casaderosas homeofgirscollegiateschool kansassebastian"}, {"datetaken": "2008-08-02 08:48:10", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 37 - Casa de Rosas (E)", "text": "", "album_id": "72157606503374257", "longitude": "-118.283979", "url_o": "https://farm4.staticflickr.com/3058/2725572770_9e9363fa25_o.jpg", "secret": "f017fb17c4", "media": "photo", "latitude": "34.031411", "id": "2725572770", "tags": "losangeles historichouses westadams historicwestadams losangelesandvicinity westadamsboulevard casaderosas homeofgirscollegiateschool kansassebastian"}, {"datetaken": "2008-08-02 08:48:13", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 48 - St James Park (E)", "text": "", "album_id": "72157606503374257", "longitude": "-118.279935", "url_o": "https://farm4.staticflickr.com/3133/2725573228_b64773a79d_o.jpg", "secret": "7cca7fbd15", "media": "photo", "latitude": "34.031456", "id": "2725573228", "tags": "losangeles stjamespark historichouses westadams historicwestadams losangelesandvicinity adrinkingfountain kansassebastian"}, {"datetaken": "2008-08-02 08:48:15", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 49 - St James Park (E)", "text": "", "album_id": "72157606503374257", "longitude": "-118.279935", "url_o": "https://farm4.staticflickr.com/3086/2725573686_45f8103369_o.jpg", "secret": "2ab2e34769", "media": "photo", "latitude": "34.031456", "id": "2725573686", "tags": "losangeles stjamespark historichouses westadams historicwestadams losangelesandvicinity aviewinstjamespark kansassebastian"}, {"datetaken": "2008-08-02 08:48:17", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 55 - Stearns Residence (E)", "text": "", "album_id": "72157606503374257", "longitude": "-118.280546", "url_o": "https://farm4.staticflickr.com/3220/2725574104_cbbc44bdab_o.jpg", "secret": "afbf69eafc", "media": "photo", "latitude": "34.031509", "id": "2725574104", "tags": "losangeles stjamespark historichouses westadams historicwestadams losangelesandvicinity stearnsresidence residenceofjestearns jestearns kansassebastian"}, {"datetaken": "2008-08-02 08:48:20", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 60 - Chester Place (E)", "text": "", "album_id": "72157606503374257", "longitude": "-118.277853", "url_o": "https://farm4.staticflickr.com/3034/2724751335_6283c84b5e_o.jpg", "secret": "ffdd7c7b0e", "media": "photo", "latitude": "34.030211", "id": "2724751335", "tags": "losangeles historichouses westadams historicwestadams chesterpark losangelesandvicinity asmallforest kansassebastian"}, {"datetaken": "2008-08-02 08:48:22", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 65 - Clark Residence (E)", "text": "", "album_id": "72157606503374257", "longitude": "-118.277633", "url_o": "https://farm4.staticflickr.com/3227/2725574858_e7effccfa4_o.jpg", "secret": "de50b8f613", "media": "photo", "latitude": "34.028938", "id": "2725574858", "tags": "losangeles historichouses westadamsstreet westadams historicwestadams losangelesandvicinity clarkresidence residenceofjrossclark jrossclark kansassebastian"}, {"datetaken": "2008-08-02 08:48:25", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 68 - Doheny Residence (E)", "text": "", "album_id": "72157606503374257", "longitude": "-118.277412", "url_o": "https://farm4.staticflickr.com/3165/2724752177_19c4601bac_o.jpg", "secret": "a426bf686e", "media": "photo", "latitude": "34.030921", "id": "2724752177", "tags": "losangeles historichouses westadams chesterplace historicwestadams losangelesandvicinity residenceofedwardldoheny edwardldoheny dohenyresidence kansassebastian"}, {"datetaken": "2008-08-02 08:48:27", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 72 - Schmidt Residence (E)", "text": "", "album_id": "72157606503374257", "longitude": "-118.277359", "url_o": "https://farm4.staticflickr.com/3151/2725575626_e2831cf4d9_o.jpg", "secret": "b17f21fcec", "media": "photo", "latitude": "34.031009", "id": "2725575626", "tags": "losangeles historichouses westadams chesterplace historicwestadams losangelesandvicinity schmidtresidence residenceofjarovonschmidt jarovonschmidt kansassebastian"}, {"datetaken": "2008-08-02 08:48:30", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 74 - Doheny Residence (E)", "text": "", "album_id": "72157606503374257", "longitude": "-118.277412", "url_o": "https://farm4.staticflickr.com/3187/2725576056_98a0a64908_o.jpg", "secret": "5577155767", "media": "photo", "latitude": "34.030921", "id": "2725576056", "tags": "losangeles historichouses westadams chesterplace historicwestadams losangelesandvicinity residenceofedwardldoheny edwardldoheny dohenyresidence kansassebastian"}, {"datetaken": "2008-08-02 08:48:33", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 82 - Jesrurun Residence (E)", "text": "", "album_id": "72157606503374257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3201/2724753493_cf6c4574f6_o.jpg", "secret": "f2f2da555c", "media": "photo", "latitude": "0", "id": "2724753493", "tags": "losangeles washingtonstreet historichouses westadams historicwestadams losangelesandvicinity mrsfrancescajesrurun jersurunresidence residenceofmrsfrancescajesrurun kansassebastian"}, {"datetaken": "2008-08-02 08:48:35", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 84 - F W Braun/B L Harding Residence (E)", "text": "", "album_id": "72157606503374257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3121/2725576894_f7679e3920_o.jpg", "secret": "67e8dd42c3", "media": "photo", "latitude": "0", "id": "2725576894", "tags": "losangeles historichouses westadams chesterplace historicwestadams losangelesandvicinity braunresidence residenceoffwbraun fwbraun kansassebastian"}, {"datetaken": "2008-08-02 08:48:38", "license": "3", "title": "1908-06-19 - Los Angeles and Vicinity - West Adams - Page 86 - Davis Residence (E)", "text": "", "album_id": "72157606503374257", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3176/2725577306_602e0e435c_o.jpg", "secret": "4d2f2ef6ab", "media": "photo", "latitude": "0", "id": "2725577306", "tags": "losangeles historichouses westadams chesterplace historicwestadams losangelesandvicinity davisresidence residenceofwjdavis wjdavis kansassebastian"}, {"datetaken": "2008-08-23 08:23:23", "license": "2", "title": "Tinker Toys", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3247/2793988687_b1719e1878_o.jpg", "secret": "d1a19f0a22", "media": "photo", "latitude": "39.282222", "id": "2793988687", "tags": "construction scaffolding baltimore photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 08:23:43", "license": "2", "title": "A Big Boy's Tricycle", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3207/2793956279_3d9afed8b1_o.jpg", "secret": "cd3ace4e7a", "media": "photo", "latitude": "39.282222", "id": "2793956279", "tags": "bike tricycle baltimore photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk bigboystricycle"}, {"datetaken": "2008-08-23 08:24:06", "license": "2", "title": "Trashed Trash", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3047/2793989501_933809b748_o.jpg", "secret": "30878efd00", "media": "photo", "latitude": "39.282222", "id": "2793989501", "tags": "blackandwhite trash garbage baltimore photowalk trashcan fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 08:27:35", "license": "2", "title": "Glass", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3046/2794819556_a4849243c4_o.jpg", "secret": "bde3e9f7a8", "media": "photo", "latitude": "39.282222", "id": "2794819556", "tags": "window glass stainedglass baltimore photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 08:31:07", "license": "2", "title": "The Guardian", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3169/2794820174_191dd6a532_o.jpg", "secret": "5922f07cc5", "media": "photo", "latitude": "39.282222", "id": "2794820174", "tags": "chimney bird baltimore photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 08:38:57", "license": "2", "title": "Drainage", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3268/2794812866_1d99071948_o.jpg", "secret": "de265b4b18", "media": "photo", "latitude": "39.282222", "id": "2794812866", "tags": "blackandwhite alley 10 baltimore drain ten photowalk gutter fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 08:40:43", "license": "2", "title": "Flower", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3069/2793970185_22bbf8dfed_o.jpg", "secret": "d163903fc4", "media": "photo", "latitude": "39.282222", "id": "2793970185", "tags": "flower baltimore photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 08:41:38", "license": "2", "title": "Wreath", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3073/2793994373_9e191ebfcd_o.jpg", "secret": "8b9e95b809", "media": "photo", "latitude": "39.282222", "id": "2793994373", "tags": "door baltimore doorway wreath photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 08:43:03", "license": "2", "title": "Knock Knock. Who's There? A Moose. A Moose? Yeah, With Bells On!", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3109/2793976009_b963f02d8a_o.jpg", "secret": "80dbb2d8d2", "media": "photo", "latitude": "39.282222", "id": "2793976009", "tags": "moose baltimore photowalk knocker doorknocker fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 08:44:01", "license": "2", "title": "They Made Their Point", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3278/2793974923_004d98524a_o.jpg", "secret": "3e45cf56eb", "media": "photo", "latitude": "39.282222", "id": "2793974923", "tags": "cemetery baltimore photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk thefellfamilycemetery"}, {"datetaken": "2008-08-23 08:45:31", "license": "2", "title": "Secret Garden", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3197/2793984083_b123c08d13_o.jpg", "secret": "daf08ffb61", "media": "photo", "latitude": "39.282222", "id": "2793984083", "tags": "statue garden shrine baltimore patio photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 08:47:02", "license": "2", "title": "Photowalk", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3080/2794830562_8aac8f8d2e_o.jpg", "secret": "3801af916b", "media": "photo", "latitude": "39.282222", "id": "2794830562", "tags": "stacie photographers baltimore photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 08:51:50", "license": "2", "title": "Cobbled", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3171/2793960809_cbf432a910_o.jpg", "secret": "54d3d34ca0", "media": "photo", "latitude": "39.282222", "id": "2793960809", "tags": "street baltimore cobbled cobblestones photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 08:55:45", "license": "2", "title": "Disposable Construction", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3014/2798251473_dd27220503_o.jpg", "secret": "7a61ab3f90", "media": "photo", "latitude": "39.282222", "id": "2798251473", "tags": "water harbor pier baltimore photowalk fellspoint cwd baltimorephotowalk week84 tacwd takeaclasswithdavedave tacwdd cwdrs scottkelbysworldwidephotowalk cwd842 cwdweek84 august232008worldwidephotowalk cwdrs84"}, {"datetaken": "2008-08-23 09:02:24", "license": "2", "title": "Long Street Warf", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3028/2794824950_a83cb35a87_o.jpg", "secret": "4a0b7ec9fb", "media": "photo", "latitude": "39.282222", "id": "2794824950", "tags": "architecture baltimore photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk longstreetwarf august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 09:13:54", "license": "2", "title": "Where A House Once Stood", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3153/2794840732_1ff588435f_o.jpg", "secret": "65f30becbd", "media": "photo", "latitude": "39.282222", "id": "2794840732", "tags": "baltimore photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 09:20:06", "license": "2", "title": "Fells Point", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3053/2793968037_5c21891ce7_o.jpg", "secret": "e0f2418e32", "media": "photo", "latitude": "39.282222", "id": "2793968037", "tags": "baltimore photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 09:20:28", "license": "2", "title": "The Cat's Eye", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3077/2793958305_d2f96bdeab_o.jpg", "secret": "285304f446", "media": "photo", "latitude": "39.282222", "id": "2793958305", "tags": "baltimore photowalk trashcans fellspoint thecatseye baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 09:30:09", "license": "2", "title": "Holy Mackerel", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3218/2794815894_9975893a42_o.jpg", "secret": "f6bf44b52c", "media": "photo", "latitude": "39.282222", "id": "2794815894", "tags": "fish statue baltimore photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 09:32:24", "license": "2", "title": "Masts", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3173/2793973717_f741ed897c_o.jpg", "secret": "6ef9e9f266", "media": "photo", "latitude": "39.282222", "id": "2793973717", "tags": "blackandwhite baltimore photowalk sailboats masts fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 09:34:14", "license": "2", "title": "Night Light", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3120/2793978663_a128b08f4c_o.jpg", "secret": "bb0dab77a5", "media": "photo", "latitude": "39.282222", "id": "2793978663", "tags": "light marina boats harbor 10 baltimore ten photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 09:42:26", "license": "2", "title": "Photowalk Selfie", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3282/2793982205_b405f86b30_o.jpg", "secret": "edf3ed1306", "media": "photo", "latitude": "39.282222", "id": "2793982205", "tags": "selfportrait self mirror bart baltimore photowalk yeartwo 365 reject fellspoint baltimorephotowalk 366days 365daysrejected 365daysyeartwo scottkelbysworldwidephotowalk august232008worldwidephotowalk daytwohundredandthirtysixreject day236reject 365236reject 365day236reject"}, {"datetaken": "2008-08-23 09:45:39", "license": "2", "title": "Saint Michael The Archangel", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3074/2793983643_933f9f44e4_o.jpg", "secret": "c13cf39bc6", "media": "photo", "latitude": "39.282222", "id": "2793983643", "tags": "church gold baltimore photowalk fellspoint baltimorephotowalk saintmichaelthearchangel scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 09:54:06", "license": "2", "title": "Stone And Steel", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3110/2793986181_38a72bb9c7_o.jpg", "secret": "6636752f68", "media": "photo", "latitude": "39.282222", "id": "2793986181", "tags": "tracks baltimore cobblestones photowalk rails fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 09:55:18", "license": "2", "title": "Patriotic", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3181/2794829024_dace320064_o.jpg", "secret": "abb5faca6e", "media": "photo", "latitude": "39.282222", "id": "2794829024", "tags": "usa flag patriotic baltimore photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 09:56:42", "license": "2", "title": "Constructed Diptych", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm3.staticflickr.com/2007/2793955781_a35e4c7c5a_o.jpg", "secret": "7785e36fb5", "media": "photo", "latitude": "39.282222", "id": "2793955781", "tags": "diptych doors baltimore photowalk doorways fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 09:57:30", "license": "2", "title": "A Sad Sad Sight", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3049/2793980743_cb18a6a19e_o.jpg", "secret": "a665f8bd65", "media": "photo", "latitude": "39.282222", "id": "2793980743", "tags": "bar closed empty baltimore photowalk barstools fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 09:58:32", "license": "2", "title": "Down On The Corner", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3271/2794811400_6f53f6eb92_o.jpg", "secret": "0f4327d50d", "media": "photo", "latitude": "39.282222", "id": "2794811400", "tags": "building architecture baltimore photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 09:59:30", "license": "2", "title": "Maryland Is For Crabs After All", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3069/2794808844_3ba28f433c_o.jpg", "secret": "fa40182e04", "media": "photo", "latitude": "39.282222", "id": "2794808844", "tags": "door crab baltimore photowalk knocker doorknocker fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-23 10:01:12", "license": "2", "title": "Flower And Cross", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm3.staticflickr.com/2359/2793971219_7e19406f09_o.jpg", "secret": "b1620cea97", "media": "photo", "latitude": "39.282222", "id": "2793971219", "tags": "flowers church cross baltimore photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-24 03:59:24", "license": "2", "title": "Tugs", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3157/2793991039_1fa9a395e3_o.jpg", "secret": "e48d063607", "media": "photo", "latitude": "39.282222", "id": "2793991039", "tags": "harbor boat baltimore photowalk tugboat aged fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-08-24 04:20:47", "license": "2", "title": "Marge! Those Pesky Paparazzi Are Back!", "text": "", "album_id": "72157606932450262", "longitude": "-76.593214", "url_o": "https://farm4.staticflickr.com/3177/2794821288_07561031f1_o.jpg", "secret": "76e5586972", "media": "photo", "latitude": "39.282222", "id": "2794821288", "tags": "simpsons baltimore homer photowalk fellspoint baltimorephotowalk scottkelbysworldwidephotowalk august232008worldwidephotowalk"}, {"datetaken": "2008-12-02 10:26:24", "license": "0", "title": "Max Dupain photograph of AGNSW", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3274/3075923050_600077f0fa_o.jpg", "secret": "c64d8ac72f", "media": "photo", "latitude": "0", "id": "3075923050", "tags": "cars entrance triumph 1959 artgalleryofnewsouthwales maxdupain"}, {"datetaken": "2008-12-02 10:26:24", "license": "3", "title": "Travelling Art Exhibition", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3006/3075923046_c750dedca2_o.jpg", "secret": "9e3a7622f3", "media": "photo", "latitude": "0", "id": "3075923046", "tags": "truck artgalleryofnewsouthwales travellingartexhibition"}, {"datetaken": "2008-12-02 10:26:24", "license": "3", "title": "Burst water main", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3061/3075923042_e5be620463_o.jpg", "secret": "943e2bc342", "media": "photo", "latitude": "0", "id": "3075923042", "tags": "water artgalleryofnewsouthwales"}, {"datetaken": "2008-12-02 10:26:24", "license": "3", "title": "Andrew Anderson's side", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3136/3075923036_abd9c0154f_o.jpg", "secret": "4980ceb91d", "media": "photo", "latitude": "0", "id": "3075923036", "tags": "artgalleryofnewsouthwales andrewanderson walterlibertyvernon"}, {"datetaken": "2008-12-02 10:26:24", "license": "3", "title": "Hunt side", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3037/3075923034_e44848481b_o.jpg", "secret": "321d65996c", "media": "photo", "latitude": "0", "id": "3075923034", "tags": "artgalleryofnewsouthwales walterlibertyvernon johnhorburyhunt"}, {"datetaken": "2008-12-02 10:26:24", "license": "3", "title": "Henry Moore", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3185/3075923030_9c8c4da74a_o.jpg", "secret": "1917a3547b", "media": "photo", "latitude": "0", "id": "3075923030", "tags": "sculpture henrymoore artgalleryofnewsouthwales"}, {"datetaken": "2008-12-02 10:29:00", "license": "3", "title": "Exterior c.1919", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3055/3075928728_980464d2ee_o.jpg", "secret": "f169df1534", "media": "photo", "latitude": "0", "id": "3075928728", "tags": "plinths artgalleryofnewsouthwales"}, {"datetaken": "2008-12-02 10:29:00", "license": "3", "title": "1927 exterior", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3013/3075928726_b539ac3c10_o.jpg", "secret": "f88d8cfc10", "media": "photo", "latitude": "0", "id": "3075928726", "tags": "1927 artgalleryofnewsouthwales samuelwood"}, {"datetaken": "2008-12-02 10:29:00", "license": "3", "title": "Frank Hurley", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3057/3075928722_ef62480729_o.jpg", "secret": "599c3be07d", "media": "photo", "latitude": "0", "id": "3075928722", "tags": "cityofsydney artgalleryofnewsouthwales frankhurley c1948"}, {"datetaken": "2008-12-02 10:29:00", "license": "3", "title": "Exterior c.1960", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3001/3075928714_ba8d59006b_o.jpg", "secret": "3ba70173c2", "media": "photo", "latitude": "0", "id": "3075928714", "tags": "artgalleryofnewsouthwales c1960"}, {"datetaken": "2008-12-02 10:29:01", "license": "3", "title": "Light of the World", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3019/3075928744_6b93eab142_o.jpg", "secret": "249456281f", "media": "photo", "latitude": "0", "id": "3075928744", "tags": "1909 lightoftheworld artgalleryofnewsouthwales holmanhunt"}, {"datetaken": "2008-12-02 10:29:01", "license": "3", "title": "Electric light", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3056/3075928736_4da969c77d_o.jpg", "secret": "61739265fe", "media": "photo", "latitude": "0", "id": "3075928736", "tags": "domain artgalleryofnewsouthwales"}, {"datetaken": "2008-12-02 10:30:55", "license": "3", "title": "1906 colour photograph", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3252/3075100291_57af3b2a45_o.jpg", "secret": "de0ba63431", "media": "photo", "latitude": "0", "id": "3075100291", "tags": "1906 christmascard artgalleryofnewsouthwales"}, {"datetaken": "2008-12-02 10:30:56", "license": "3", "title": "Watercolour section", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3013/3075100327_d9256250e6_o.jpg", "secret": "b49930e849", "media": "photo", "latitude": "0", "id": "3075100327", "tags": "artgalleryofnewsouthwales henryking"}, {"datetaken": "2008-12-02 10:30:56", "license": "3", "title": "Watercolour section", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3218/3075100323_92ee6ba91a_o.jpg", "secret": "1d67b878ba", "media": "photo", "latitude": "0", "id": "3075100323", "tags": "watercolour artgalleryofnewsouthwales henryking"}, {"datetaken": "2008-12-02 10:30:56", "license": "3", "title": "Entrance to British Court", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3064/3075100319_1b9dd0c6fb_o.jpg", "secret": "8b0c14bd8d", "media": "photo", "latitude": "0", "id": "3075100319", "tags": "artgalleryofnewsouthwales henryking thesonsofclovisii"}, {"datetaken": "2008-12-02 10:30:56", "license": "3", "title": "Portico being built", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3142/3075100315_0a407843e6_o.jpg", "secret": "19e71c4938", "media": "photo", "latitude": "0", "id": "3075100315", "tags": "pediment portico 1902 artgalleryofnewsouthwales"}, {"datetaken": "2008-12-02 10:30:56", "license": "3", "title": "Commercial postcard c.1904", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3233/3075100301_436a948db8_o.jpg", "secret": "1a43c9ae33", "media": "photo", "latitude": "0", "id": "3075100301", "tags": "postcard 1904 artgalleryofnewsouthwales"}, {"datetaken": "2008-12-02 10:33:49", "license": "3", "title": "Chaucer painting in distance", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3192/3075939358_2c328af17e_o.jpg", "secret": "5393417846", "media": "photo", "latitude": "0", "id": "3075939358", "tags": "artgalleryofnewsouthwales fordmaddoxbrown chauceratthecourtofedwardiii"}, {"datetaken": "2008-12-02 10:33:49", "license": "3", "title": "New Galleries", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3003/3075939348_6a5020e30a_o.jpg", "secret": "40b9476b90", "media": "photo", "latitude": "0", "id": "3075939348", "tags": "hat gallery bowlerhat artgalleryofnewsouthwales henryking johnhorburyhunt thedefenseofrorkesdrift alphonsededeneuville"}, {"datetaken": "2008-12-02 10:33:50", "license": "3", "title": "Interior of Fine Arts Annexe", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3039/3075939386_6e9b69c713_o.jpg", "secret": "2638b58a88", "media": "photo", "latitude": "0", "id": "3075939386", "tags": "1881 artgalleryofnewsouthwales fineartsannexe"}, {"datetaken": "2008-12-02 10:33:50", "license": "3", "title": "Visitors to the AGNSW", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3201/3075939378_f075e60149_o.jpg", "secret": "644d0bedf1", "media": "photo", "latitude": "0", "id": "3075939378", "tags": "artgalleryofnewsouthwales"}, {"datetaken": "2008-12-02 10:33:50", "license": "3", "title": "Plaster casts", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3013/3075939368_4e8e56de81_o.jpg", "secret": "961e4bb701", "media": "photo", "latitude": "0", "id": "3075939368", "tags": "sculpture aphrodite artgalleryofnewsouthwales thedyinggaul fineartsannexe"}, {"datetaken": "2008-12-02 10:33:50", "license": "3", "title": "Dying Gaul in distance", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3201/3075939362_81131f2019_o.jpg", "secret": "9def74fe64", "media": "photo", "latitude": "0", "id": "3075939362", "tags": "artgalleryofnewsouthwales thedyinggaul fineartsannexe"}, {"datetaken": "2008-12-02 10:37:40", "license": "3", "title": "Clark's Assembly Hall", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3276/3075947672_dc68093d95_o.jpg", "secret": "edb2c01886", "media": "photo", "latitude": "0", "id": "3075947672", "tags": "sydney 1875 elizabethstreet artgalleryofnewsouthwales clarksassemblyrooms"}, {"datetaken": "2008-12-02 10:37:40", "license": "3", "title": "Aerial drawing of Garden Palace & Fine Arts Annexe", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3289/3075947668_77f9afd6d1_o.jpg", "secret": "453cb2d639", "media": "photo", "latitude": "0", "id": "3075947668", "tags": "crystalpalace artgalleryofnewsouthwales royalbotanicgardenssydney fineartsannexe"}, {"datetaken": "2008-12-02 10:37:40", "license": "3", "title": "Fine Arts Annexe", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3161/3075947664_60e5a27187_o.jpg", "secret": "df9fce41a4", "media": "photo", "latitude": "0", "id": "3075947664", "tags": "garden palace artgalleryofnewsouthwales fineartsannexe"}, {"datetaken": "2008-12-02 10:37:40", "license": "3", "title": "Artist's impression of Fine Arts Annexe", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3002/3075947652_c815ac0776_o.jpg", "secret": "05837eb901", "media": "photo", "latitude": "0", "id": "3075947652", "tags": "1879 artgalleryofnewsouthwales fineartsannexe"}, {"datetaken": "2008-12-02 10:37:41", "license": "3", "title": "Barnet's design for a combined Art Gallery, Museum and Library, 1874", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3029/3075947690_a9a954b97e_o.jpg", "secret": "7598f9bcb3", "media": "photo", "latitude": "0", "id": "3075947690", "tags": "architecture jamesbarnett artgalleryofnewsouthwales australianmuseum"}, {"datetaken": "2008-12-02 10:37:41", "license": "3", "title": "Barnet's floorplan", "text": "", "album_id": "72157610561797005", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3026/3075947680_7bdcfc60d1_o.jpg", "secret": "841b6c2f19", "media": "photo", "latitude": "0", "id": "3075947680", "tags": "floorplan artgalleryofnewsouthwales"}, {"datetaken": "2010-01-01 02:47:27", "license": "0", "title": "New Year's Day, Lake George, NY", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2521/4233984745_8b3ef7cb51_o.jpg", "secret": "cf2173cd0a", "media": "photo", "latitude": "0", "id": "4233984745", "tags": ""}, {"datetaken": "2010-01-01 02:48:39", "license": "0", "title": "Stripping for action", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4233985155_4dbe5c2e4b_o.jpg", "secret": "3a9b5b9634", "media": "photo", "latitude": "0", "id": "4233985155", "tags": ""}, {"datetaken": "2010-01-01 02:49:02", "license": "0", "title": "Participants wore a variety of pre- and post-Plunge clothing", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2671/4233985791_59155aac38_o.jpg", "secret": "6ed8cb9c2e", "media": "photo", "latitude": "0", "id": "4233985791", "tags": ""}, {"datetaken": "2010-01-01 02:51:20", "license": "0", "title": "Beautiful winter day on the Lake", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4234760816_4ab0cc1ed5_o.jpg", "secret": "516f738ce2", "media": "photo", "latitude": "0", "id": "4234760816", "tags": ""}, {"datetaken": "2010-01-01 02:51:45", "license": "0", "title": "Waiting on the slushy beach", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2636/4234760572_d3edbe19c6_o.jpg", "secret": "6c7847e831", "media": "photo", "latitude": "0", "id": "4234760572", "tags": ""}, {"datetaken": "2010-01-01 02:52:01", "license": "0", "title": "A large and festive crowd, many with cameras", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4233987539_88f0c88416_o.jpg", "secret": "097b8ac0c3", "media": "photo", "latitude": "0", "id": "4233987539", "tags": ""}, {"datetaken": "2010-01-01 02:52:32", "license": "0", "title": "Getting ready to hit the water", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2494/4233987047_dabbfb19d5_o.jpg", "secret": "040b39eb75", "media": "photo", "latitude": "0", "id": "4233987047", "tags": ""}, {"datetaken": "2010-01-01 02:55:19", "license": "0", "title": "Family members and Polar Plunge participants mingle on the beach", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2628/4233988729_7199b6724c_o.jpg", "secret": "b74bfe353e", "media": "photo", "latitude": "0", "id": "4233988729", "tags": ""}, {"datetaken": "2010-01-01 02:56:06", "license": "0", "title": "About to jump", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2596/4233989059_36553f2f67_o.jpg", "secret": "0048cebd41", "media": "photo", "latitude": "0", "id": "4233989059", "tags": ""}, {"datetaken": "2010-01-01 02:57:36", "license": "0", "title": "Hundreds gathered to watch the spectacle", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4233989489_00eace10ac_o.jpg", "secret": "f14521c89e", "media": "photo", "latitude": "0", "id": "4233989489", "tags": ""}, {"datetaken": "2010-01-01 02:58:07", "license": "0", "title": "Leaping from the dock", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2630/4234763838_4d70757b15_o.jpg", "secret": "cdf4aed1ec", "media": "photo", "latitude": "0", "id": "4234763838", "tags": ""}, {"datetaken": "2010-01-01 02:58:19", "license": "0", "title": "Waiting", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2511/4234764130_c2557f35d7_o.jpg", "secret": "4db1f36791", "media": "photo", "latitude": "0", "id": "4234764130", "tags": ""}, {"datetaken": "2010-01-01 02:58:26", "license": "0", "title": "Kayakers wait for swimmers to enter the water", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2663/4234764838_45acab6142_o.jpg", "secret": "0c6029d283", "media": "photo", "latitude": "0", "id": "4234764838", "tags": ""}, {"datetaken": "2010-01-01 02:58:41", "license": "0", "title": "Posing for pictures", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2725/4234764508_133e6a22d3_o.jpg", "secret": "93dcc422c8", "media": "photo", "latitude": "0", "id": "4234764508", "tags": ""}, {"datetaken": "2010-01-01 02:59:13", "license": "0", "title": "For some, a quick dunking is enough", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2728/4233991147_e53f7c8234_o.jpg", "secret": "a64e4e5cbb", "media": "photo", "latitude": "0", "id": "4233991147", "tags": ""}, {"datetaken": "2010-01-01 03:00:41", "license": "0", "title": "This is icy slush, not sand", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4233991757_c33cfaf711_o.jpg", "secret": "d4af8756f4", "media": "photo", "latitude": "0", "id": "4233991757", "tags": ""}, {"datetaken": "2010-01-01 03:01:05", "license": "0", "title": "Heading for the water", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2508/4234765574_ffeeebf5be_o.jpg", "secret": "62d723a1d3", "media": "photo", "latitude": "0", "id": "4234765574", "tags": ""}, {"datetaken": "2010-01-01 03:01:15", "license": "0", "title": "Splashing in icy Lake George", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4234766166_62f68faf23_o.jpg", "secret": "9566432e9c", "media": "photo", "latitude": "0", "id": "4234766166", "tags": ""}, {"datetaken": "2010-01-01 03:01:21", "license": "0", "title": "Some chose to linger in the frigid water", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2632/4234766588_da03530ee1_o.jpg", "secret": "ed763e1180", "media": "photo", "latitude": "0", "id": "4234766588", "tags": ""}, {"datetaken": "2010-01-01 03:01:29", "license": "0", "title": "Abandoned shoe (Polar Plunge), Lake George, NY 1/01/10", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4234767424_92d9ddaf30_o.jpg", "secret": "e02af2839a", "media": "photo", "latitude": "0", "id": "4234767424", "tags": ""}, {"datetaken": "2010-01-01 03:01:40", "license": "0", "title": "Participants head for shore", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2770/4234767088_ef31787c17_o.jpg", "secret": "056dba7304", "media": "photo", "latitude": "0", "id": "4234767088", "tags": ""}, {"datetaken": "2010-01-01 03:04:00", "license": "0", "title": "Drying off after the Plunge", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2555/4234767664_93e75a301e_o.jpg", "secret": "c3ec270274", "media": "photo", "latitude": "0", "id": "4234767664", "tags": ""}, {"datetaken": "2010-01-01 03:04:53", "license": "0", "title": "Ice shards", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2567/4233993839_02024bed55_o.jpg", "secret": "bc299b511a", "media": "photo", "latitude": "0", "id": "4233993839", "tags": ""}, {"datetaken": "2010-01-01 03:05:15", "license": "0", "title": "Icy water, looking towards the southern end of Lake George", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4233994753_1d372d73e9_o.jpg", "secret": "1b63948908", "media": "photo", "latitude": "0", "id": "4233994753", "tags": ""}, {"datetaken": "2010-01-01 14:06:36", "license": "3", "title": "New Year's Day, Lake George, NY 1/01/10", "text": "", "album_id": "72157622990628531", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2784/4234769076_f28bbcb1e6_o.jpg", "secret": "d788be3040", "media": "photo", "latitude": "0", "id": "4234769076", "tags": "winter ice january changes polarplunge lakegeorgeny project365 edtech3652010 2010365"}, {"datetaken": "2010-01-01 10:39:24", "license": "1", "title": "#64 Cradlehall Park Inverness", "text": "", "album_id": "72157623112594684", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4232775135_898bd024d6_o.jpg", "secret": "3d52c351a3", "media": "photo", "latitude": "0", "id": "4232775135", "tags": "snow inverness newyearsday cradlehallpark"}, {"datetaken": "2010-01-01 10:39:47", "license": "1", "title": "Cradlehall Park Inverness 2", "text": "", "album_id": "72157623112594684", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4232775141_8ea2ed0aab_o.jpg", "secret": "5af36d15a2", "media": "photo", "latitude": "0", "id": "4232775141", "tags": "snow inverness newyearsday cradlehallpark"}, {"datetaken": "2010-01-01 10:40:12", "license": "1", "title": "#72 Cradlehall Park Inverness", "text": "", "album_id": "72157623112594684", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4232775131_4300307a0f_o.jpg", "secret": "35d8fc62cc", "media": "photo", "latitude": "0", "id": "4232775131", "tags": "snow inverness newyearsday cradlehallpark"}, {"datetaken": "2010-01-01 10:40:30", "license": "1", "title": "Cradlehall Park, Inverness", "text": "", "album_id": "72157623112594684", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4233561356_0bc82959c7_o.jpg", "secret": "26cd93483f", "media": "photo", "latitude": "0", "id": "4233561356", "tags": "snow inverness cradlehallpark"}, {"datetaken": "2010-01-01 10:40:52", "license": "1", "title": "Cradlehall Park, Inverness", "text": "", "album_id": "72157623112594684", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2660/4233561354_e189de79ff_o.jpg", "secret": "2dc9621417", "media": "photo", "latitude": "0", "id": "4233561354", "tags": "snow inverness cradlehallpark"}, {"datetaken": "2010-01-01 10:41:06", "license": "1", "title": "Cradlehall Park Inverness 1", "text": "", "album_id": "72157623112594684", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4232775139_a24a6bac48_o.jpg", "secret": "438c166a40", "media": "photo", "latitude": "0", "id": "4232775139", "tags": "snow inverness newyearsday cradlehallpark"}, {"datetaken": "2010-01-01 10:41:43", "license": "1", "title": "Cradlehall Park, Inverness", "text": "", "album_id": "72157623112594684", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4233561350_b5da717afc_o.jpg", "secret": "59214aa557", "media": "photo", "latitude": "0", "id": "4233561350", "tags": "snow inverness cradlehallpark"}, {"datetaken": "2010-01-01 10:42:00", "license": "1", "title": "Cradlehall Park, Inverness", "text": "", "album_id": "72157623112594684", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2513/4233561342_7f47616abc_o.jpg", "secret": "8eeec1308f", "media": "photo", "latitude": "0", "id": "4233561342", "tags": "snow inverness cradlehallpark"}, {"datetaken": "2010-01-01 10:42:41", "license": "1", "title": "#69 Cradlehall Park Inverness", "text": "", "album_id": "72157623112594684", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4232775133_4f82cc74c9_o.jpg", "secret": "71462cde19", "media": "photo", "latitude": "0", "id": "4232775133", "tags": "snow inverness newyearsday cradlehallpark"}, {"datetaken": "2010-01-01 10:54:24", "license": "1", "title": "Cradlehall Park Inverness 3", "text": "", "album_id": "72157623112594684", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2492/4232775137_3975ec7898_o.jpg", "secret": "a47b2d70b9", "media": "photo", "latitude": "0", "id": "4232775137", "tags": "snow inverness newyearsday cradlehallpark"}, {"datetaken": "2010-01-01 10:55:17", "license": "1", "title": "Cradlehall Park, Inverness", "text": "", "album_id": "72157623112594684", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4233561362_d56c9211ce_o.jpg", "secret": "60b83064b6", "media": "photo", "latitude": "0", "id": "4233561362", "tags": "snow inverness cradlehallpark"}, {"datetaken": "2010-01-01 10:56:40", "license": "1", "title": "B9006 at Cradlehall, Inverness", "text": "", "album_id": "72157623112594684", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2602/4233561360_e97ac15145_o.jpg", "secret": "56a6314bfc", "media": "photo", "latitude": "0", "id": "4233561360", "tags": "snow inverness cradlehallpark"}, {"datetaken": "2009-12-31 19:51:31", "license": "1", "title": "NYE_2009-6022", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4234484202_d8f11d5cd1_o.jpg", "secret": "cd4b877536", "media": "photo", "latitude": "0", "id": "4234484202", "tags": "alex john december texas waco newyearseve 2009"}, {"datetaken": "2009-12-31 20:16:03", "license": "1", "title": "NYE_2009-6026", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2788/4233712293_ae3a6eb134_o.jpg", "secret": "1997e82a68", "media": "photo", "latitude": "0", "id": "4233712293", "tags": "alex december texas waco tommy newyearseve 2009 johnwill"}, {"datetaken": "2009-12-31 20:16:39", "license": "1", "title": "NYE_2009-6027", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2585/4234488988_1044454462_o.jpg", "secret": "20268fbf4e", "media": "photo", "latitude": "0", "id": "4234488988", "tags": "alex december texas waco tommy newyearseve 2009 johnwill"}, {"datetaken": "2009-12-31 20:16:49", "license": "1", "title": "NYE_2009-6028", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4234491610_e886206bbb_o.jpg", "secret": "69b3da20a3", "media": "photo", "latitude": "0", "id": "4234491610", "tags": "alex december texas waco tommy newyearseve 2009 johnwill"}, {"datetaken": "2009-12-31 20:17:36", "license": "1", "title": "NYE_2009-6029", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2573/4234494084_183a039f86_o.jpg", "secret": "b43ac869da", "media": "photo", "latitude": "0", "id": "4234494084", "tags": "alex december texas waco tommy newyearseve 2009 johnwill"}, {"datetaken": "2009-12-31 20:21:15", "license": "1", "title": "NYE_2009-6030", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4234496372_503b9cbd6a_o.jpg", "secret": "fa8ea300ba", "media": "photo", "latitude": "0", "id": "4234496372", "tags": "alex december texas waco tommy newyearseve 2009 johnwill"}, {"datetaken": "2009-12-31 21:11:17", "license": "1", "title": "NYE_2009-6032", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4233724295_9e7e512c34_o.jpg", "secret": "e8426f4a51", "media": "photo", "latitude": "0", "id": "4233724295", "tags": "december texas amy waco karen newyearseve kelly damon 2009"}, {"datetaken": "2009-12-31 21:11:28", "license": "1", "title": "NYE_2009-6033", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2651/4233725921_df039f2d80_o.jpg", "secret": "e358714e67", "media": "photo", "latitude": "0", "id": "4233725921", "tags": "december texas greg waco newyearseve 2009"}, {"datetaken": "2009-12-31 21:12:32", "license": "1", "title": "NYE_2009-6035", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2584/4234502948_e3f73a3d0b_o.jpg", "secret": "6d29399fd9", "media": "photo", "latitude": "0", "id": "4234502948", "tags": "december texas amy waco karen newyearseve damon 2009"}, {"datetaken": "2009-12-31 22:41:44", "license": "1", "title": "NYE_2009-6036", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2657/4233731433_2824b3fc69_o.jpg", "secret": "b1ba3a23ef", "media": "photo", "latitude": "0", "id": "4233731433", "tags": "december texas waco newyearseve 2009"}, {"datetaken": "2009-12-31 22:41:53", "license": "1", "title": "NYE_2009-6037", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4234507044_e598041d73_o.jpg", "secret": "55179c4c84", "media": "photo", "latitude": "0", "id": "4234507044", "tags": "alex john december texas waco tommy will newyearseve 2009"}, {"datetaken": "2009-12-31 22:42:13", "license": "1", "title": "NYE_2009-6039", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2639/4234509262_c60687f137_o.jpg", "secret": "e3814f097f", "media": "photo", "latitude": "0", "id": "4234509262", "tags": "alex john december texas waco tommy will newyearseve 2009"}, {"datetaken": "2009-12-31 22:56:58", "license": "1", "title": "NYE_2009-6040", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2666/4234512148_3c8e0fb62f_o.jpg", "secret": "e57c863a5e", "media": "photo", "latitude": "0", "id": "4234512148", "tags": "alex john december texas waco tommy will newyearseve 2009"}, {"datetaken": "2009-12-31 22:57:09", "license": "1", "title": "NYE_2009-6041", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4234515314_226fc2de48_o.jpg", "secret": "988a36161a", "media": "photo", "latitude": "0", "id": "4234515314", "tags": "alex john december texas waco tommy will newyearseve 2009"}, {"datetaken": "2009-12-31 23:59:16", "license": "1", "title": "NYE_2009-6042", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2614/4233745509_155bd61309_o.jpg", "secret": "4b5eb9351e", "media": "photo", "latitude": "0", "id": "4233745509", "tags": "alex john december texas waco karen tommy will newyearseve damon 2009 almostmidnight"}, {"datetaken": "2010-01-01 00:00:37", "license": "1", "title": "NYD_2010-6044", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2487/4233738595_1634ed4a99_o.jpg", "secret": "589f90ace2", "media": "photo", "latitude": "0", "id": "4233738595", "tags": "alex john texas greg waco january karen tommy will kelly damon newyearsday 2010"}, {"datetaken": "2010-01-01 00:00:59", "license": "1", "title": "NYD_2010-6045", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4233741243_48e489b8ef_o.jpg", "secret": "43edb63353", "media": "photo", "latitude": "0", "id": "4233741243", "tags": "alex john texas greg waco january karen tommy will kelly damon newyearsday 2010"}, {"datetaken": "2010-01-01 00:01:12", "license": "1", "title": "NYD_2010-6046", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4233744471_77be27ce4c_o.jpg", "secret": "336a5f7f98", "media": "photo", "latitude": "0", "id": "4233744471", "tags": "alex john texas greg waco january karen tommy will kelly damon newyearsday 2010"}, {"datetaken": "2010-01-01 00:01:32", "license": "1", "title": "NYD_2010-6047 - Welcome to the future", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4233746587_e0cc680314_o.jpg", "secret": "6ae512cdf6", "media": "photo", "latitude": "0", "id": "4233746587", "tags": "alex john texas greg waco mosaic january karen newyearsday 2010 3651 proj365 project36612010 hoohaa365"}, {"datetaken": "2010-01-01 00:20:47", "license": "1", "title": "NYD_2010-6050", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2695/4233748947_50ab4f3eb5_o.jpg", "secret": "dc204939bd", "media": "photo", "latitude": "0", "id": "4233748947", "tags": "alex john texas waco january tommy newyearsday 2010"}, {"datetaken": "2010-01-01 00:21:11", "license": "1", "title": "NYD_2010-6051", "text": "", "album_id": "72157623114581602", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2764/4234524752_97842182c0_o.jpg", "secret": "7ea3bc9830", "media": "photo", "latitude": "0", "id": "4234524752", "tags": "texas greg waco january kelly newyearsday 2010"}, {"datetaken": "2008-12-31 15:44:23", "license": "2", "title": "New Year's Eve Recap 001", "text": "", "album_id": "72157625207403904", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/4952494166_8d73ee3053_o.jpg", "secret": "2b621e70f3", "media": "photo", "latitude": "0", "id": "4952494166", "tags": "california losangeles events tent pennstate newyearseve kickoff fans rosebowl luncheon recap creditjillshockey"}, {"datetaken": "2008-12-31 16:33:33", "license": "2", "title": "New Year's Eve Recap 002", "text": "", "album_id": "72157625207403904", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/4951903323_195a72d5db_o.jpg", "secret": "41b9bb2761", "media": "photo", "latitude": "0", "id": "4951903323", "tags": "california students losangeles cheerleaders events tent pennstate newyearseve kickoff rosebowl luncheon recap creditjillshockey"}, {"datetaken": "2008-12-31 17:05:59", "license": "2", "title": "New Year's Eve Recap 003", "text": "", "album_id": "72157625207403904", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/4951903611_19dcf99a1a_o.jpg", "secret": "0a7d7c7c67", "media": "photo", "latitude": "0", "id": "4951903611", "tags": "california losangeles football coach athletics events pennstate newyearseve kickoff rosebowl interview luncheon espn recap petecarroll joepaterno creditjillshockey"}, {"datetaken": "2008-12-31 17:09:14", "license": "2", "title": "New Year's Eve Recap 004", "text": "", "album_id": "72157625207403904", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/4951903827_1150c85435_o.jpg", "secret": "b8ab9842af", "media": "photo", "latitude": "0", "id": "4951903827", "tags": "california students losangeles football team athletics events pennstate newyearseve kickoff rosebowl interview luncheon nittanylions recap rosequeen studentathletes jeromehayes creditjillshockey"}, {"datetaken": "2008-12-31 17:16:22", "license": "2", "title": "New Year's Eve Recap 005", "text": "", "album_id": "72157625207403904", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4088/4952495212_a065e485c3_o.jpg", "secret": "0e8df88ab6", "media": "photo", "latitude": "0", "id": "4952495212", "tags": "california students losangeles football athletics events pennstate newyearseve kickoff rosebowl players interview luncheon nittanylions recap derrickwilliams studentathletes creditjillshockey"}, {"datetaken": "2008-12-31 19:13:48", "license": "2", "title": "New Year's Eve Recap 006", "text": "", "album_id": "72157625207403904", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4124/4952495468_b9597de662_o.jpg", "secret": "b2c60c679c", "media": "photo", "latitude": "0", "id": "4952495468", "tags": "california students field losangeles football athletics events crowd pennstate newyearseve fans rosebowl peprally nittanylions recap beverlyhillshighschool studentathletes creditjillshockey"}, {"datetaken": "2008-12-31 19:16:39", "license": "2", "title": "New Year's Eve Recap 007", "text": "", "album_id": "72157625207403904", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4146/4951904893_8567bc4566_o.jpg", "secret": "0b327d0e82", "media": "photo", "latitude": "0", "id": "4951904893", "tags": "california music students drums losangeles bass events performance entertainment pennstate newyearseve rosebowl instruments peprally blueband recap rosebowlparade creditjillshockey"}, {"datetaken": "2008-12-31 20:07:23", "license": "2", "title": "New Year's Eve Recap 008", "text": "", "album_id": "72157625207403904", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/4951905315_5ec384da97_o.jpg", "secret": "8f661c82e7", "media": "photo", "latitude": "0", "id": "4951905315", "tags": "california music students losangeles events performance entertainment pennstate newyearseve rosebowl peprally silks blueband recap beverlyhillshighschool creditjillshockey"}, {"datetaken": "2008-12-31 20:39:16", "license": "2", "title": "New Year's Eve Recap 009", "text": "", "album_id": "72157625207403904", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/4952496908_cbdd0ef297_o.jpg", "secret": "8d30b6205e", "media": "photo", "latitude": "0", "id": "4952496908", "tags": "california art students hotel losangeles football athletics display events pennstate newyearseve rosebowl alumni peprally nittanylions recap matthewrice creditjillshockey"}, {"datetaken": "2008-12-31 23:02:35", "license": "2", "title": "New Year's Eve Recap 010", "text": "", "album_id": "72157625207403904", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/4951905887_054a39b750_o.jpg", "secret": "6874838aa9", "media": "photo", "latitude": "0", "id": "4951905887", "tags": "california park amusement events pennstate newyearseve rides fans universalstudios nittanylions recap creditjillshockey"}, {"datetaken": "2009-01-01 01:00:14", "license": "2", "title": "New Year's Eve Recap 011", "text": "", "album_id": "72157625207403904", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4124/4952497298_839e472b0b_o.jpg", "secret": "cf65b17650", "media": "photo", "latitude": "0", "id": "4952497298", "tags": "california party events pennstate newyearseve universalstudios speakers recap globetheater alumniassociation presidentgrahamspanier creditjillshockey"}, {"datetaken": "2009-01-01 01:01:19", "license": "2", "title": "New Year's Eve Recap 012", "text": "", "album_id": "72157625207403904", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/4952497504_438f642cd7_o.jpg", "secret": "0d910bdb6b", "media": "photo", "latitude": "0", "id": "4952497504", "tags": "california party newyork television tv events pennstate timessquare newyearseve recap presidentgrahamspanier creditjillshockey"}, {"datetaken": "2010-12-29 05:33:51", "license": "4", "title": "Helping Secure Times Square Armed Forces Recruiting Station Around New Year's Eve", "text": "", "album_id": "72157625737489714", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5003/5319771773_d381e619bd_o.jpg", "secret": "f1ed5a6e75", "media": "photo", "latitude": "0", "id": "5319771773", "tags": "nye usace usarmycorpsofengineers armedforcesrecruiting timessquarenewyearseve newyorkdistrict usarmycorpsofengineersnewyorkdistrict corpsofengineerstimessquare timessquarearmedforcesrecruitingstation"}, {"datetaken": "2010-12-29 05:40:18", "license": "4", "title": "Helping Secure Times Square Armed Forces Recruiting Station Around New Year's Eve", "text": "", "album_id": "72157625737489714", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5202/5319772427_cb49e0c8a3_o.jpg", "secret": "28065dfa34", "media": "photo", "latitude": "0", "id": "5319772427", "tags": "nye usace usarmycorpsofengineers armedforcesrecruiting timessquarenewyearseve newyorkdistrict usarmycorpsofengineersnewyorkdistrict corpsofengineerstimessquare timessquarearmedforcesrecruitingstation"}, {"datetaken": "2010-12-30 22:20:55", "license": "4", "title": "Helping Secure Times Square Armed Forces Recruiting Station Around New Year's Eve", "text": "", "album_id": "72157625737489714", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5164/5320374248_505580211b_o.jpg", "secret": "dc96ce6970", "media": "photo", "latitude": "0", "id": "5320374248", "tags": "nye usace usarmycorpsofengineers armedforcesrecruiting timessquarenewyearseve newyorkdistrict usarmycorpsofengineersnewyorkdistrict corpsofengineerstimessquare timessquarearmedforcesrecruitingstation"}, {"datetaken": "2010-12-30 22:21:06", "license": "4", "title": "Helping Secure Times Square Armed Forces Recruiting Station Around New Year's Eve", "text": "", "album_id": "72157625737489714", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5043/5319773579_291bca51c6_o.jpg", "secret": "1edefdd8d3", "media": "photo", "latitude": "0", "id": "5319773579", "tags": "nye usace usarmycorpsofengineers armedforcesrecruiting timessquarenewyearseve newyorkdistrict usarmycorpsofengineersnewyorkdistrict corpsofengineerstimessquare timessquarearmedforcesrecruitingstation"}, {"datetaken": "2010-12-30 22:25:16", "license": "4", "title": "Helping Secure Times Square Armed Forces Recruiting Station Around New Year's Eve", "text": "", "album_id": "72157625737489714", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5289/5320375014_8c957beaa2_o.jpg", "secret": "e7e2ce1a95", "media": "photo", "latitude": "0", "id": "5320375014", "tags": "nye usace usarmycorpsofengineers armedforcesrecruiting timessquarenewyearseve newyorkdistrict usarmycorpsofengineersnewyorkdistrict corpsofengineerstimessquare timessquarearmedforcesrecruitingstation"}, {"datetaken": "2010-12-30 22:25:33", "license": "4", "title": "Helping Secure Times Square Armed Forces Recruiting Station Around New Year's Eve", "text": "", "album_id": "72157625737489714", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5244/5319774285_e7cc388568_o.jpg", "secret": "164cee10c5", "media": "photo", "latitude": "0", "id": "5319774285", "tags": "nye usace usarmycorpsofengineers armedforcesrecruiting timessquarenewyearseve newyorkdistrict usarmycorpsofengineersnewyorkdistrict corpsofengineerstimessquare timessquarearmedforcesrecruitingstation"}, {"datetaken": "2010-12-30 22:27:07", "license": "4", "title": "Helping Secure Times Square Armed Forces Recruiting Station Around New Year's Eve", "text": "", "album_id": "72157625737489714", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5121/5319774907_a42f388f30_o.jpg", "secret": "d3d14e1411", "media": "photo", "latitude": "0", "id": "5319774907", "tags": "nye usace usarmycorpsofengineers armedforcesrecruiting timessquarenewyearseve newyorkdistrict usarmycorpsofengineersnewyorkdistrict corpsofengineerstimessquare timessquarearmedforcesrecruitingstation"}, {"datetaken": "2010-12-30 22:31:45", "license": "4", "title": "Helping Secure Times Square Armed Forces Recruiting Station Around New Year's Eve", "text": "", "album_id": "72157625737489714", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5130/5319775407_c916f30113_o.jpg", "secret": "fba82bdd76", "media": "photo", "latitude": "0", "id": "5319775407", "tags": "nye usace usarmycorpsofengineers armedforcesrecruiting timessquarenewyearseve newyorkdistrict usarmycorpsofengineersnewyorkdistrict corpsofengineerstimessquare timessquarearmedforcesrecruitingstation"}, {"datetaken": "2010-12-30 22:33:37", "license": "4", "title": "Helping Secure Times Square Armed Forces Recruiting Station Around New Year's Eve", "text": "", "album_id": "72157625737489714", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5245/5320376968_087757826d_o.jpg", "secret": "1d89a5bdc9", "media": "photo", "latitude": "0", "id": "5320376968", "tags": "nye usace usarmycorpsofengineers armedforcesrecruiting timessquarenewyearseve newyorkdistrict usarmycorpsofengineersnewyorkdistrict corpsofengineerstimessquare timessquarearmedforcesrecruitingstation"}, {"datetaken": "2010-12-30 22:35:39", "license": "4", "title": "Helping Secure Times Square Armed Forces Recruiting Station Around New Year's Eve", "text": "", "album_id": "72157625737489714", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5284/5319776357_58b538d4a7_o.jpg", "secret": "d49da408bb", "media": "photo", "latitude": "0", "id": "5319776357", "tags": "nye usace usarmycorpsofengineers armedforcesrecruiting timessquarenewyearseve newyorkdistrict usarmycorpsofengineersnewyorkdistrict corpsofengineerstimessquare timessquarearmedforcesrecruitingstation"}, {"datetaken": "2010-12-30 22:44:28", "license": "4", "title": "Helping Secure Times Square Armed Forces Recruiting Station Around New Year's Eve", "text": "", "album_id": "72157625737489714", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5170/5320589612_51d77cba64_o.jpg", "secret": "5959ec46b2", "media": "photo", "latitude": "0", "id": "5320589612", "tags": "nye usace usarmycorpsofengineers armedforcesrecruiting timessquarenewyearseve newyorkdistrict usarmycorpsofengineersnewyorkdistrict corpsofengineerstimessquare timessquarearmedforcesrecruitingstation"}, {"datetaken": "2010-06-14 08:09:06", "license": "1", "title": "Oscar Grant Protest in Los Angeles #5", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4706815776_344f4e4db5_o.jpg", "secret": "2eb118518e", "media": "photo", "latitude": "0", "id": "4706815776", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 08:12:23", "license": "1", "title": "Oscar Grant Protest in Los Angeles #6", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4706815790_913d8c0056_o.jpg", "secret": "489b944efa", "media": "photo", "latitude": "0", "id": "4706815790", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 08:12:59", "license": "1", "title": "Oscar Grant Protest in Los Angeles #4", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4706815810_5f32d0cde4_o.jpg", "secret": "825eb5a869", "media": "photo", "latitude": "0", "id": "4706815810", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 08:13:11", "license": "1", "title": "Oscar Grant Protest in Los Angeles #3", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4706815816_e296a6999a_o.jpg", "secret": "3fc7b1b94b", "media": "photo", "latitude": "0", "id": "4706815816", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 08:13:20", "license": "1", "title": "Oscar Grant Protest in Los Angeles #1", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1273/4706815824_e494e6e05a_o.jpg", "secret": "2284b77433", "media": "photo", "latitude": "0", "id": "4706815824", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 08:35:13", "license": "1", "title": "Oscar Grant Protest in Los Angeles #2", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4706815838_f60e64e71e_o.jpg", "secret": "0f27bd1b64", "media": "photo", "latitude": "0", "id": "4706815838", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 08:39:36", "license": "1", "title": "Oscar Grant Protest in Los Angeles #12", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4706867072_92a5ee4cb1_o.jpg", "secret": "1157b56281", "media": "photo", "latitude": "0", "id": "4706867072", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 08:39:49", "license": "1", "title": "Oscar Grant Protest in Los Angeles #11", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4706867078_017009d097_o.jpg", "secret": "57e888c26c", "media": "photo", "latitude": "0", "id": "4706867078", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 08:46:54", "license": "1", "title": "Oscar Grant Protest in Los Angeles #9", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4706867132_78d920bcdd_o.jpg", "secret": "4b086ff2a7", "media": "photo", "latitude": "0", "id": "4706867132", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 08:55:37", "license": "1", "title": "Oscar Grant Protest in Los Angeles #10", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4706867098_ef248359dc_o.jpg", "secret": "915cd0f3d8", "media": "photo", "latitude": "0", "id": "4706867098", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 08:56:03", "license": "1", "title": "Oscar Grant Protest in Los Angeles #7", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4706867162_1b554a47fc_o.jpg", "secret": "7c8f14184e", "media": "photo", "latitude": "0", "id": "4706867162", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 09:25:41", "license": "1", "title": "Oscar Grant Protest in Los Angeles #8", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4706867172_868d755c90_o.jpg", "secret": "417257627b", "media": "photo", "latitude": "0", "id": "4706867172", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 09:32:07", "license": "1", "title": "Oscar Grant Protest in Los Angeles #18", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1304/4706265765_56de419c6e_o.jpg", "secret": "8b3303b325", "media": "photo", "latitude": "0", "id": "4706265765", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 10:56:07", "license": "1", "title": "Oscar Grant Protest in Los Angeles #17", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4706265769_df85261a8b_o.jpg", "secret": "69498ca306", "media": "photo", "latitude": "0", "id": "4706265769", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 10:56:17", "license": "1", "title": "Oscar Grant Protest in Los Angeles #14", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4706265773_8bdc6b33b3_o.jpg", "secret": "093f21151d", "media": "photo", "latitude": "0", "id": "4706265773", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 10:56:24", "license": "1", "title": "Oscar Grant Protest in Los Angeles #15", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4706265781_44636da6d1_o.jpg", "secret": "62bac0cbc4", "media": "photo", "latitude": "0", "id": "4706265781", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 10:56:42", "license": "1", "title": "Oscar Grant Protest in Los Angeles #16", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4706265791_726c416086_o.jpg", "secret": "9bdb96e10f", "media": "photo", "latitude": "0", "id": "4706265791", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 10:57:05", "license": "1", "title": "Oscar Grant Protest in Los Angeles #13", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4706265797_0ebc7c6479_o.jpg", "secret": "4dce095721", "media": "photo", "latitude": "0", "id": "4706265797", "tags": "oakland bart oscargrant bartshooting johannesmeheserle"}, {"datetaken": "2010-06-14 12:49:42", "license": "1", "title": "To Serve & Protect whom?", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4701043820_66d7bffd2e_o.jpg", "secret": "42e8ae7d27", "media": "photo", "latitude": "0", "id": "4701043820", "tags": ""}, {"datetaken": "2010-06-14 13:44:12", "license": "1", "title": "Making signs", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4701216550_3fa39b67f2_o.jpg", "secret": "e9192f032b", "media": "photo", "latitude": "0", "id": "4701216550", "tags": "signs"}, {"datetaken": "2010-06-14 17:23:23", "license": "1", "title": "kids protest for Oscar Grant", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4701044260_e66ba0bf5e_o.jpg", "secret": "de24921b5f", "media": "photo", "latitude": "0", "id": "4701044260", "tags": ""}, {"datetaken": "2010-06-14 17:27:31", "license": "1", "title": "NYC Won't Forget", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4701044168_4c533b35aa_o.jpg", "secret": "1a683d86c9", "media": "photo", "latitude": "0", "id": "4701044168", "tags": ""}, {"datetaken": "2010-06-14 17:38:02", "license": "1", "title": "Justice For Oscar Grant", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4700413361_2d985c967c_o.jpg", "secret": "c1bd649bc7", "media": "photo", "latitude": "0", "id": "4700413361", "tags": ""}, {"datetaken": "2010-06-14 18:22:10", "license": "1", "title": "Justice 4 Michael", "text": "", "album_id": "72157624150850699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4700412833_b63e3cd95a_o.jpg", "secret": "8f61496cfb", "media": "photo", "latitude": "0", "id": "4700412833", "tags": ""}, {"datetaken": "2011-04-14 00:00:35", "license": "1", "title": "On the road from Rte 48 to Prek Smach, Koh Kong Province", "text": "", "album_id": "72157626390694245", "longitude": "103.256978", "url_o": "https://farm6.staticflickr.com/5224/5626785329_9fefa07528_o.jpg", "secret": "b4ea395d60", "media": "photo", "latitude": "10.934281", "id": "5626785329", "tags": "cambodia kohkongprovince"}, {"datetaken": "2011-04-14 00:10:54", "license": "1", "title": "Ingenious ferry for motorbikes, Koh Kong", "text": "", "album_id": "72157626390694245", "longitude": "103.256978", "url_o": "https://farm6.staticflickr.com/5067/5626792975_0734141cf4_o.jpg", "secret": "b202894195", "media": "photo", "latitude": "10.934281", "id": "5626792975", "tags": "cambodia kohkongprovince"}, {"datetaken": "2011-04-14 01:22:50", "license": "1", "title": "The drivers check out - and \"rebuild\" an impromtu bridge", "text": "", "album_id": "72157626390694245", "longitude": "103.207388", "url_o": "https://farm6.staticflickr.com/5226/5627386094_376b095963_o.jpg", "secret": "e7f491190c", "media": "photo", "latitude": "10.935320", "id": "5627386094", "tags": "cambodia kohkongprovince"}, {"datetaken": "2011-04-14 01:25:10", "license": "1", "title": "One driver directing the other", "text": "", "album_id": "72157626390694245", "longitude": "103.207388", "url_o": "https://farm6.staticflickr.com/5102/5627393482_850de8e754_o.jpg", "secret": "4604fb2cce", "media": "photo", "latitude": "10.935320", "id": "5627393482", "tags": "cambodia kohkongprovince"}, {"datetaken": "2011-04-14 01:44:54", "license": "1", "title": "And then another challenge....", "text": "", "album_id": "72157626390694245", "longitude": "103.153143", "url_o": "https://farm6.staticflickr.com/5228/5627403356_23ed2fbd93_o.jpg", "secret": "11b3fe5565", "media": "photo", "latitude": "10.933972", "id": "5627403356", "tags": "cambodia kohkongprovince"}, {"datetaken": "2011-04-14 02:33:59", "license": "1", "title": "Calling the hotel from Prek Smach for the boat pick-up", "text": "", "album_id": "72157626390694245", "longitude": "103.099585", "url_o": "https://farm6.staticflickr.com/5310/5627409420_b269c4d1e7_o.jpg", "secret": "8e09d707c3", "media": "photo", "latitude": "10.928916", "id": "5627409420", "tags": "cambodia kohsdach kohkongprovince"}, {"datetaken": "2011-04-14 03:45:30", "license": "1", "title": "Ou j'\u00e9tais la fin de semaine", "text": "", "album_id": "72157626390694245", "longitude": "103.073430", "url_o": "https://farm6.staticflickr.com/5267/5626657525_f11f2bb6e5_o.jpg", "secret": "06d0414cc8", "media": "photo", "latitude": "10.927497", "id": "5626657525", "tags": "cambodia kohsdach kohkongprovince"}, {"datetaken": "2011-04-14 22:41:47", "license": "1", "title": "Koh Sdach scene", "text": "", "album_id": "72157626390694245", "longitude": "103.074298", "url_o": "https://farm6.staticflickr.com/5105/5627423468_e13d5ea6b2_o.jpg", "secret": "8cca5da8d5", "media": "photo", "latitude": "10.931177", "id": "5627423468", "tags": "cambodia kohsdach kohkongprovince"}, {"datetaken": "2011-04-14 22:57:15", "license": "1", "title": "Even on a holiday, the laundry needs to be done, Koh Sdach", "text": "", "album_id": "72157626390694245", "longitude": "103.079619", "url_o": "https://farm6.staticflickr.com/5223/5627429434_c3033330e3_o.jpg", "secret": "d5ec9d1a70", "media": "photo", "latitude": "10.936233", "id": "5627429434", "tags": "cambodia kohsdach kohkongprovince"}, {"datetaken": "2011-04-14 23:07:02", "license": "1", "title": "Harbor scene, Koh Sdach", "text": "", "album_id": "72157626390694245", "longitude": "103.079619", "url_o": "https://farm6.staticflickr.com/5063/5626856027_1a5da6cfd0_o.jpg", "secret": "ffd9d766eb", "media": "photo", "latitude": "10.936233", "id": "5626856027", "tags": "cambodia kohsdach kohkongprovince"}, {"datetaken": "2011-04-14 23:08:12", "license": "1", "title": "Harbor scene, Koh Sdach", "text": "", "album_id": "72157626390694245", "longitude": "103.079619", "url_o": "https://farm6.staticflickr.com/5024/5626866641_3bec0561a6_o.jpg", "secret": "0f0889c569", "media": "photo", "latitude": "10.936233", "id": "5626866641", "tags": "cambodia kohsdach kohkongprovince"}, {"datetaken": "2011-04-14 23:12:22", "license": "1", "title": "Harbor scene, Koh Sdach", "text": "", "album_id": "72157626390694245", "longitude": "103.079619", "url_o": "https://farm6.staticflickr.com/5303/5626876043_84966291a4_o.jpg", "secret": "7f3f01ff62", "media": "photo", "latitude": "10.936233", "id": "5626876043", "tags": "cambodia kohsdach kohkongprovince"}, {"datetaken": "2011-04-14 23:20:38", "license": "1", "title": "Brother and sister, Koh Sdach", "text": "", "album_id": "72157626390694245", "longitude": "103.079619", "url_o": "https://farm6.staticflickr.com/5187/5626887729_d5e87f555f_o.jpg", "secret": "c82eb2e395", "media": "photo", "latitude": "10.936233", "id": "5626887729", "tags": "cambodia kohsdach kohkongprovince"}, {"datetaken": "2011-04-14 23:23:24", "license": "1", "title": "The ladies' card game (1), Koh Sdach", "text": "", "album_id": "72157626390694245", "longitude": "103.079619", "url_o": "https://farm6.staticflickr.com/5147/5627482228_5276917f91_o.jpg", "secret": "1d72f3a42c", "media": "photo", "latitude": "10.936233", "id": "5627482228", "tags": "cambodia kohsdach kohkongprovince"}, {"datetaken": "2011-04-14 23:23:49", "license": "1", "title": "The ladies' card game (2), Koh Sdach", "text": "", "album_id": "72157626390694245", "longitude": "103.079619", "url_o": "https://farm6.staticflickr.com/5146/5626908143_e8e22954e3_o.jpg", "secret": "c8ca4dfa02", "media": "photo", "latitude": "10.936233", "id": "5626908143", "tags": "cambodia kohsdach kohkongprovince"}, {"datetaken": "2011-04-14 23:26:25", "license": "1", "title": "Buddhist altar table, Koh Sdach", "text": "", "album_id": "72157626390694245", "longitude": "103.079619", "url_o": "https://farm6.staticflickr.com/5185/5627501790_3ef50ba2e1_o.jpg", "secret": "1e9709905c", "media": "photo", "latitude": "10.936233", "id": "5627501790", "tags": "cambodia kohsdach kohkongprovince"}, {"datetaken": "2011-04-14 23:27:01", "license": "1", "title": "Well-positioned sewing machine, Koh Sdach", "text": "", "album_id": "72157626390694245", "longitude": "103.079619", "url_o": "https://farm6.staticflickr.com/5188/5627512434_2547f30823_o.jpg", "secret": "c12419c4fc", "media": "photo", "latitude": "10.936233", "id": "5627512434", "tags": ""}, {"datetaken": "2011-04-14 23:27:59", "license": "1", "title": "The remainders of the family New Year party, along with the Buddhist altar table, Koh Sdach", "text": "", "album_id": "72157626390694245", "longitude": "103.079619", "url_o": "https://farm6.staticflickr.com/5107/5627524868_8897a79351_o.jpg", "secret": "d62590ff18", "media": "photo", "latitude": "10.936233", "id": "5627524868", "tags": "cambodia kohsdach kohkongprovince"}, {"datetaken": "2011-04-14 23:28:35", "license": "1", "title": "Sugar cane press, Koh Sdach", "text": "", "album_id": "72157626390694245", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5270/5627531292_0c7f2bbebb_o.jpg", "secret": "feee8fcc9c", "media": "photo", "latitude": "0", "id": "5627531292", "tags": "cambodia kohsdach kohkongprovince"}, {"datetaken": "2011-04-14 23:33:56", "license": "1", "title": "The back side of main street, Koh Sdach", "text": "", "album_id": "72157626390694245", "longitude": "103.079619", "url_o": "https://farm6.staticflickr.com/5188/5626956329_7c64ddc06a_o.jpg", "secret": "ba6bf8d84f", "media": "photo", "latitude": "10.936233", "id": "5626956329", "tags": "cambodia kohsdach kohkongprovince"}, {"datetaken": "2011-04-14 23:36:12", "license": "1", "title": "Buddhist altar table, Koh Sdach", "text": "", "album_id": "72157626390694245", "longitude": "103.079619", "url_o": "https://farm6.staticflickr.com/5102/5627553866_ce355f6bc0_o.jpg", "secret": "e16495f699", "media": "photo", "latitude": "10.936233", "id": "5627553866", "tags": "cambodia kohsdach kohkongprovince"}, {"datetaken": "2011-04-14 23:46:24", "license": "1", "title": "The guys' card game, Koh Sdach", "text": "", "album_id": "72157626390694245", "longitude": "103.079619", "url_o": "https://farm6.staticflickr.com/5143/5627561848_e41cbefd90_o.jpg", "secret": "642795e10a", "media": "photo", "latitude": "10.936233", "id": "5627561848", "tags": "cambodia kohsdach kohkongprovince"}, {"datetaken": "2011-04-15 00:47:07", "license": "1", "title": "Meanwhile, back at the hotel", "text": "", "album_id": "72157626390694245", "longitude": "103.073430", "url_o": "https://farm6.staticflickr.com/5142/5627182247_c7fd4ebf66_o.jpg", "secret": "876ef0e704", "media": "photo", "latitude": "10.927497", "id": "5627182247", "tags": "cambodia kohsdach kohkongprovince"}, {"datetaken": "2006-01-01 17:51:08", "license": "1", "title": "Richard and Kitty pulling the pork", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/83919822_d71e89e990_o.jpg", "secret": "d71e89e990", "media": "photo", "latitude": "0", "id": "83919822", "tags": "newyear 2006 food party storrsbray southern usa pulledpork atlanta georgia"}, {"datetaken": "2006-01-01 17:55:04", "license": "1", "title": "Some of the ladies", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/83919883_95fc3cce56_o.jpg", "secret": "95fc3cce56", "media": "photo", "latitude": "0", "id": "83919883", "tags": "newyear 2006 party storrsbray southern usa ladies atlanta georgia"}, {"datetaken": "2006-01-01 17:59:13", "license": "1", "title": "My L with Sapelo", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/83919924_44c4056834_o.jpg", "secret": "44c4056834", "media": "photo", "latitude": "0", "id": "83919924", "tags": "newyear 2006 party storrsbray southern usa l sapelo dog atlanta georgia"}, {"datetaken": "2006-01-01 18:21:36", "license": "1", "title": "Girls watching the skink", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/83919999_f51b8574e7_o.jpg", "secret": "f51b8574e7", "media": "photo", "latitude": "0", "id": "83919999", "tags": "newyear 2006 party storrsbray southern usa skink atlanta georgia"}, {"datetaken": "2006-01-01 18:35:31", "license": "1", "title": "The chiminea (outdoor fireplace)", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/83932928_f2784b7d43_o.jpg", "secret": "f2784b7d43", "media": "photo", "latitude": "0", "id": "83932928", "tags": "newyear 2006 party storrsbray southern usa atlanta georgia chiminea"}, {"datetaken": "2006-01-01 18:59:50", "license": "1", "title": "Part of the New Year's Day spread at the Storrs/Brays", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/83912790_4c75bfa6b2_o.jpg", "secret": "4c75bfa6b2", "media": "photo", "latitude": "0", "id": "83912790", "tags": "newyear 2006 food party storrsbray southern table atlanta georgia"}, {"datetaken": "2006-01-01 19:00:08", "license": "1", "title": "Collard greens", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/83919565_c92034353c_o.jpg", "secret": "c92034353c", "media": "photo", "latitude": "0", "id": "83919565", "tags": "newyear 2006 food party storrsbray southern usa collardgreens money bills atlanta georgia"}, {"datetaken": "2006-01-01 19:00:28", "license": "1", "title": "Stewed tomatoes with rice", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/83919759_8584b89a56_o.jpg", "secret": "8584b89a56", "media": "photo", "latitude": "0", "id": "83919759", "tags": "newyear 2006 food party storrsbray southern usa stewedtomatoes rice atlanta georgia"}, {"datetaken": "2006-01-01 19:00:41", "license": "1", "title": "Hog jowl", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/83913088_6d19f6de2a_o.jpg", "secret": "6d19f6de2a", "media": "photo", "latitude": "0", "id": "83913088", "tags": "newyear 2006 food party storrsbray southern hogjowl goodluck atlanta georgia"}, {"datetaken": "2006-01-01 19:01:11", "license": "1", "title": "Black-eyed peas", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/83919656_3f8ba9e109_o.jpg", "secret": "3f8ba9e109", "media": "photo", "latitude": "0", "id": "83919656", "tags": "newyear 2006 food party storrsbray southern usa blackeyedpeas change money atlanta georgia"}, {"datetaken": "2006-01-01 19:01:17", "license": "1", "title": "Mashed potatoes", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/83919697_76df96fffa_o.jpg", "secret": "76df96fffa", "media": "photo", "latitude": "0", "id": "83919697", "tags": "newyear 2006 food party storrsbray southern usa mashedpotatoes atlanta georgia"}, {"datetaken": "2006-01-01 19:01:42", "license": "1", "title": "Pulled pork", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/83912999_03f0eebbf2_o.jpg", "secret": "03f0eebbf2", "media": "photo", "latitude": "0", "id": "83912999", "tags": "newyear 2006 food party storrsbray southern pulledpork atlanta georgia"}, {"datetaken": "2006-01-01 19:01:47", "license": "1", "title": "Cornbread muffins", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/83912889_14d96968fd_o.jpg", "secret": "14d96968fd", "media": "photo", "latitude": "0", "id": "83912889", "tags": "newyear 2006 food party storrsbray southern cornbread atlanta georgia"}, {"datetaken": "2006-01-01 19:30:43", "license": "1", "title": "Don't forget the dessert!", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/83933153_590fdab8bc_o.jpg", "secret": "590fdab8bc", "media": "photo", "latitude": "0", "id": "83933153", "tags": "newyear 2006 food party storrsbray southern usa atlanta georgia"}, {"datetaken": "2006-01-01 19:31:56", "license": "1", "title": "Kitty taking a break", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/83932996_0ec87b2154_o.jpg", "secret": "0ec87b2154", "media": "photo", "latitude": "0", "id": "83932996", "tags": "newyear 2006 party storrsbray southern usa kitty atlanta georgia"}, {"datetaken": "2006-01-01 19:42:50", "license": "1", "title": "Pepper vinegar", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/83919594_3e64497b53_o.jpg", "secret": "3e64497b53", "media": "photo", "latitude": "0", "id": "83919594", "tags": "newyear 2006 food party storrsbray southern usa peppervinegar atlanta georgia"}, {"datetaken": "2006-01-01 20:11:43", "license": "1", "title": "", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/83933071_32d348a66b_o.jpg", "secret": "32d348a66b", "media": "photo", "latitude": "0", "id": "83933071", "tags": "newyear 2006 party storrsbray southern usa ladies atlanta georgia"}, {"datetaken": "2006-01-01 20:19:45", "license": "1", "title": "Our hosts", "text": "", "album_id": "1792064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/83933212_a77156a4db_o.jpg", "secret": "a77156a4db", "media": "photo", "latitude": "0", "id": "83933212", "tags": "newyear 2006 party storrsbray southern usa hosts atlanta georgia"}, {"datetaken": "2007-01-01 12:10:28", "license": "1", "title": "New Year Slide04", "text": "", "album_id": "72157594477476263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/340476096_ffa44acc60_o.jpg", "secret": "ffa44acc60", "media": "photo", "latitude": "0", "id": "340476096", "tags": "from new old our signs water out day hill slide we years put 2007 premises"}, {"datetaken": "2007-01-01 12:11:14", "license": "1", "title": "New Year Slide07", "text": "", "album_id": "72157594477476263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/356146291_20d6ce3b16_o.jpg", "secret": "20d6ce3b16", "media": "photo", "latitude": "0", "id": "356146291", "tags": "alice patrick"}, {"datetaken": "2007-01-01 12:11:43", "license": "1", "title": "New Year Slide09", "text": "", "album_id": "72157594477476263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/340476101_6e2923ac29_o.jpg", "secret": "6e2923ac29", "media": "photo", "latitude": "0", "id": "340476101", "tags": "from new old our signs water out day hill slide we years put 2007 premises"}, {"datetaken": "2007-01-01 12:12:41", "license": "1", "title": "New Year Slide14", "text": "", "album_id": "72157594477476263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/340476102_1fdeea4fc6_o.jpg", "secret": "1fdeea4fc6", "media": "photo", "latitude": "0", "id": "340476102", "tags": "from new old our signs water out day hill slide we years put 2007 premises"}, {"datetaken": "2007-01-01 12:17:19", "license": "1", "title": "New Year Slide18", "text": "", "album_id": "72157594477476263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/340479896_c46fa71bc4_o.jpg", "secret": "c46fa71bc4", "media": "photo", "latitude": "0", "id": "340479896", "tags": ""}, {"datetaken": "2007-01-01 12:25:55", "license": "1", "title": "New Year Slide25", "text": "", "album_id": "72157594477476263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/340479904_02e595429f_o.jpg", "secret": "02e595429f", "media": "photo", "latitude": "0", "id": "340479904", "tags": ""}, {"datetaken": "2007-01-01 12:29:34", "license": "1", "title": "New Year Slide31", "text": "", "album_id": "72157594477476263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/340479906_2a6be17339_o.jpg", "secret": "2a6be17339", "media": "photo", "latitude": "0", "id": "340479906", "tags": ""}, {"datetaken": "2007-01-01 12:33:47", "license": "1", "title": "New Year Slide38", "text": "", "album_id": "72157594477476263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/356146293_679c0ef848_o.jpg", "secret": "679c0ef848", "media": "photo", "latitude": "0", "id": "356146293", "tags": ""}, {"datetaken": "2007-01-01 12:35:07", "license": "1", "title": "New Year Slide44", "text": "", "album_id": "72157594477476263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/340479914_ee9a30f546_o.jpg", "secret": "ee9a30f546", "media": "photo", "latitude": "0", "id": "340479914", "tags": ""}, {"datetaken": "2007-01-01 12:38:44", "license": "1", "title": "New Year Slide46", "text": "", "album_id": "72157594477476263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/356146298_8ac1a5342e_o.jpg", "secret": "8ac1a5342e", "media": "photo", "latitude": "0", "id": "356146298", "tags": ""}, {"datetaken": "2006-12-31 22:37:35", "license": "1", "title": "IMG_9990.JPG", "text": "", "album_id": "72157594463433934", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/348043411_2bde046f6d_o.jpg", "secret": "2bde046f6d", "media": "photo", "latitude": "0", "id": "348043411", "tags": "parents newyearsday 2007 oshogatsu"}, {"datetaken": "2007-01-01 13:27:23", "license": "1", "title": "IMG_9996.JPG", "text": "", "album_id": "72157594463433934", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/348043583_b6bf17966d_o.jpg", "secret": "b6bf17966d", "media": "photo", "latitude": "0", "id": "348043583", "tags": "parents newyearsday 2007 oshogatsu"}, {"datetaken": "2007-01-01 13:27:57", "license": "1", "title": "IMG_0001.JPG", "text": "", "album_id": "72157594463433934", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/348043918_ed76a4e0fc_o.jpg", "secret": "ed76a4e0fc", "media": "photo", "latitude": "0", "id": "348043918", "tags": "parents newyearsday 2007 oshogatsu"}, {"datetaken": "2007-01-01 13:29:43", "license": "1", "title": "IMG_0005.JPG", "text": "", "album_id": "72157594463433934", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/348044130_ebe16e7423_o.jpg", "secret": "ebe16e7423", "media": "photo", "latitude": "0", "id": "348044130", "tags": "parents newyearsday 2007 oshogatsu"}, {"datetaken": "2007-01-01 13:30:16", "license": "1", "title": "IMG_0008.JPG", "text": "", "album_id": "72157594463433934", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/348044325_9c5e4cfc02_o.jpg", "secret": "9c5e4cfc02", "media": "photo", "latitude": "0", "id": "348044325", "tags": "parents newyearsday 2007 oshogatsu"}, {"datetaken": "2007-01-01 13:30:32", "license": "1", "title": "IMG_0009.JPG", "text": "", "album_id": "72157594463433934", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/348044547_ef98fc4b9e_o.jpg", "secret": "ef98fc4b9e", "media": "photo", "latitude": "0", "id": "348044547", "tags": "parents newyearsday 2007 oshogatsu"}, {"datetaken": "2007-01-01 13:30:51", "license": "1", "title": "IMG_0011.JPG", "text": "", "album_id": "72157594463433934", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/348044808_51fc36f008_o.jpg", "secret": "51fc36f008", "media": "photo", "latitude": "0", "id": "348044808", "tags": "parents newyearsday 2007 oshogatsu"}, {"datetaken": "2007-01-02 12:22:43", "license": "1", "title": "IMG_0031.JPG", "text": "", "album_id": "72157594463433934", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/348044945_92fd9cc4de_o.jpg", "secret": "92fd9cc4de", "media": "photo", "latitude": "0", "id": "348044945", "tags": "parents newyearsday 2007 oshogatsu"}, {"datetaken": "2007-01-02 12:23:03", "license": "1", "title": "IMG_0032.JPG", "text": "", "album_id": "72157594463433934", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/348045105_7cb91870bc_o.jpg", "secret": "7cb91870bc", "media": "photo", "latitude": "0", "id": "348045105", "tags": "parents newyearsday 2007 oshogatsu"}, {"datetaken": "2007-01-02 12:23:43", "license": "1", "title": "IMG_0035.JPG", "text": "", "album_id": "72157594463433934", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/348045224_e48fec96bb_o.jpg", "secret": "e48fec96bb", "media": "photo", "latitude": "0", "id": "348045224", "tags": "parents newyearsday 2007 oshogatsu"}, {"datetaken": "2007-01-02 13:51:43", "license": "1", "title": "IMG_0036.JPG", "text": "", "album_id": "72157594463433934", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/348045440_4450cb2482_o.jpg", "secret": "4450cb2482", "media": "photo", "latitude": "0", "id": "348045440", "tags": "parents newyearsday 2007 oshogatsu"}, {"datetaken": "2007-01-15 17:03:01", "license": "3", "title": "Anne's Ready to Go", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/358758598_1d6ed1d448_o.jpg", "secret": "1d6ed1d448", "media": "photo", "latitude": "0", "id": "358758598", "tags": "california camping bike bicycle anne highway1 touring"}, {"datetaken": "2007-01-15 17:03:33", "license": "3", "title": "Assembling the Bike", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/358759160_6a4a01e292_o.jpg", "secret": "6a4a01e292", "media": "photo", "latitude": "0", "id": "358759160", "tags": "california camping bike bicycle airport grant highway1 touring"}, {"datetaken": "2007-01-15 17:04:40", "license": "3", "title": "View from Marin Headlands", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/358760264_7d6133b051_o.jpg", "secret": "7d6133b051", "media": "photo", "latitude": "0", "id": "358760264", "tags": "sanfrancisco california bridge camping bike bicycle bay highway1 goldengate touring"}, {"datetaken": "2007-01-15 17:05:50", "license": "3", "title": "Sea Lions", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/358761496_9e43e22a04_o.jpg", "secret": "9e43e22a04", "media": "photo", "latitude": "0", "id": "358761496", "tags": "california camping bike bicycle san francisco highway1 worf sealion touring"}, {"datetaken": "2007-01-15 17:07:17", "license": "3", "title": "Golden Gate Bridge", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/358762947_4f5c52c801_o.jpg", "secret": "4f5c52c801", "media": "photo", "latitude": "0", "id": "358762947", "tags": "sanfrancisco california bridge camping bike bicycle anne highway1 goldengate touring"}, {"datetaken": "2007-01-15 17:08:47", "license": "3", "title": "Casket", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/358764628_837e4c3ed0_o.jpg", "secret": "837e4c3ed0", "media": "photo", "latitude": "0", "id": "358764628", "tags": "sanfrancisco california camping bike bicycle casket highway1 touring"}, {"datetaken": "2007-01-15 17:10:04", "license": "3", "title": "Anne & Jim", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/358765928_a5346c4f9b_o.jpg", "secret": "a5346c4f9b", "media": "photo", "latitude": "0", "id": "358765928", "tags": "california camping bike bicycle anne bob jim highway1 trailer touring"}, {"datetaken": "2007-01-15 17:11:45", "license": "3", "title": "Anne, Adrian, and Grant", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/358767765_cd8390cad8_o.jpg", "secret": "cd8390cad8", "media": "photo", "latitude": "0", "id": "358767765", "tags": "ocean california camping sea bike bicycle anne coast grant highway1 adrian touring"}, {"datetaken": "2007-01-15 17:12:17", "license": "3", "title": "Anne and Jim on the Road", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/358768356_e17ed7c9bb_o.jpg", "secret": "e17ed7c9bb", "media": "photo", "latitude": "0", "id": "358768356", "tags": "california camping bike bicycle anne jim highway1 touring"}, {"datetaken": "2007-01-15 17:12:46", "license": "3", "title": "Anne and Jim on the Road", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/358768903_28d428360a_o.jpg", "secret": "28d428360a", "media": "photo", "latitude": "0", "id": "358768903", "tags": "ocean california camping sea bike bicycle anne coast seaside jim highway1 touring"}, {"datetaken": "2007-01-15 17:14:12", "license": "3", "title": "Lighthouse", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/358770221_b034d31262_o.jpg", "secret": "b034d31262", "media": "photo", "latitude": "0", "id": "358770221", "tags": "california camping lighthouse bike bicycle anne highway1 touring"}, {"datetaken": "2007-01-15 17:15:22", "license": "3", "title": "Anne", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/358771367_ef3d00098b_o.jpg", "secret": "ef3d00098b", "media": "photo", "latitude": "0", "id": "358771367", "tags": "ocean california camping sea bike bicycle anne coast seaside highway1 touring"}, {"datetaken": "2007-01-15 17:16:28", "license": "3", "title": "Anne and the Sea", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/358772470_8052a4affc_o.jpg", "secret": "8052a4affc", "media": "photo", "latitude": "0", "id": "358772470", "tags": "ocean california camping sea beach bike bicycle anne seaside highway1 touring"}, {"datetaken": "2007-01-15 17:16:41", "license": "3", "title": "Grant", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/358772702_604ebc6b70_o.jpg", "secret": "604ebc6b70", "media": "photo", "latitude": "0", "id": "358772702", "tags": "california camping bike bicycle grant highway1 touring"}, {"datetaken": "2007-01-15 17:17:52", "license": "3", "title": "Morning of New Year's Day", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/358773943_967a3cc051_o.jpg", "secret": "967a3cc051", "media": "photo", "latitude": "0", "id": "358773943", "tags": "california camping camp bike bicycle grant highway1 campground touring"}, {"datetaken": "2007-01-15 17:18:42", "license": "3", "title": "Lunch Break", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/358774930_d79ed54ac0_o.jpg", "secret": "d79ed54ac0", "media": "photo", "latitude": "0", "id": "358774930", "tags": "california camping bike bicycle lunch grant highway1 touring"}, {"datetaken": "2007-01-15 17:19:43", "license": "3", "title": "17", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/358776114_c0985e2ac8_o.jpg", "secret": "c0985e2ac8", "media": "photo", "latitude": "0", "id": "358776114", "tags": "california camping bike bicycle highway1 touring"}, {"datetaken": "2007-01-15 17:24:13", "license": "3", "title": "Anne and Sea Lions", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/358781209_d2650431ee_o.jpg", "secret": "d2650431ee", "media": "photo", "latitude": "0", "id": "358781209", "tags": "ocean california sea beach bike bicycle anne coast seaside highway1 sealion touring"}, {"datetaken": "2007-01-15 17:25:35", "license": "3", "title": "Grant & Anne on the Beach", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/358782658_df76773c15_o.jpg", "secret": "df76773c15", "media": "photo", "latitude": "0", "id": "358782658", "tags": "ocean california sea beach bike bicycle seaside highway1 touring"}, {"datetaken": "2007-01-15 17:27:51", "license": "3", "title": "Toshi", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/358785086_0f11cec201_o.jpg", "secret": "0f11cec201", "media": "photo", "latitude": "0", "id": "358785086", "tags": "california bike bicycle highway1 touring toshi"}, {"datetaken": "2007-01-15 17:30:13", "license": "3", "title": "22", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/358787587_eaa564dd1f_o.jpg", "secret": "eaa564dd1f", "media": "photo", "latitude": "0", "id": "358787587", "tags": "california bike bicycle anne highway1 touring"}, {"datetaken": "2007-01-15 17:31:30", "license": "3", "title": "Anne & Toshi", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/358788933_03297e07da_o.jpg", "secret": "03297e07da", "media": "photo", "latitude": "0", "id": "358788933", "tags": "california bike bicycle anne highway1 touring toshi"}, {"datetaken": "2007-01-15 17:33:22", "license": "3", "title": "Campground", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/358790947_b2f4c14006_o.jpg", "secret": "b2f4c14006", "media": "photo", "latitude": "0", "id": "358790947", "tags": "california camping camp bike bicycle highway1 campground touring"}, {"datetaken": "2007-01-15 17:34:12", "license": "3", "title": "Campground", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/358791809_5ec3fc2e88_o.jpg", "secret": "5ec3fc2e88", "media": "photo", "latitude": "0", "id": "358791809", "tags": "california camping camp bike bicycle highway1 campground touring"}, {"datetaken": "2007-01-15 17:34:52", "license": "3", "title": "Grant & Anne Climbing to Tim's", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/358792547_db6bcde97e_o.jpg", "secret": "db6bcde97e", "media": "photo", "latitude": "0", "id": "358792547", "tags": "california bike bicycle anne grant highway1 touring"}, {"datetaken": "2007-01-15 17:35:42", "license": "3", "title": "Grant", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/358793412_ccba059faa_o.jpg", "secret": "ccba059faa", "media": "photo", "latitude": "0", "id": "358793412", "tags": "california bike bicycle grant highway1 touring"}, {"datetaken": "2007-01-15 17:36:56", "license": "3", "title": "View from Anne's Uncle Tim's House", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/358794711_f84f64970c_o.jpg", "secret": "f84f64970c", "media": "photo", "latitude": "0", "id": "358794711", "tags": "california bike bicycle anne grant highway1 touring"}, {"datetaken": "2007-01-15 17:37:17", "license": "3", "title": "19", "text": "", "album_id": "72157594481790103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/358795071_e0c198a540_o.jpg", "secret": "e0c198a540", "media": "photo", "latitude": "0", "id": "358795071", "tags": "california bike bicycle highway1 touring"}, {"datetaken": "1999-12-31 00:00:00", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1338/1082674276_e1a92ad42b_o.jpg", "secret": "478da2501f", "media": "photo", "latitude": "33.823505", "id": "1082674276", "tags": "party frankie newyears bg"}, {"datetaken": "1999-12-31 00:00:01", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1204/1082674426_dc05996142_o.jpg", "secret": "4780414789", "media": "photo", "latitude": "33.823505", "id": "1082674426", "tags": "party newyears bg larball"}, {"datetaken": "1999-12-31 00:00:02", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1298/1082674612_d141c94ce0_o.jpg", "secret": "fc6680151d", "media": "photo", "latitude": "33.823505", "id": "1082674612", "tags": "party newyears rawb thedirt"}, {"datetaken": "1999-12-31 00:00:03", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1146/1081820011_24da90be05_o.jpg", "secret": "8e67b54229", "media": "photo", "latitude": "33.823505", "id": "1081820011", "tags": "party newyears bg larball"}, {"datetaken": "1999-12-31 00:00:04", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1022/1081822725_89bdb6e1c1_o.jpg", "secret": "d658b5c139", "media": "photo", "latitude": "33.823505", "id": "1081822725", "tags": "party chuck newyears"}, {"datetaken": "1999-12-31 00:00:05", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1272/1081822953_99c507c7ba_o.jpg", "secret": "4c08f9ba14", "media": "photo", "latitude": "33.823505", "id": "1081822953", "tags": "party newyears thedirt larball"}, {"datetaken": "1999-12-31 00:00:06", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1026/1081823101_472355273f_o.jpg", "secret": "368f572bcd", "media": "photo", "latitude": "33.823505", "id": "1081823101", "tags": "party chuck newyears thegord"}, {"datetaken": "1999-12-31 00:00:07", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1371/1081824379_16711293e6_o.jpg", "secret": "0b70f896d8", "media": "photo", "latitude": "33.823505", "id": "1081824379", "tags": "party frankie newyears kramer bg strain thedirt larball"}, {"datetaken": "1999-12-31 00:00:08", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1231/1081827041_d0b3e62051_o.jpg", "secret": "a73b7b3f8c", "media": "photo", "latitude": "33.823505", "id": "1081827041", "tags": "party frankie newyears strain larball"}, {"datetaken": "1999-12-31 00:00:09", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1102/1082697274_5ad71d88a0_o.jpg", "secret": "b18b07efab", "media": "photo", "latitude": "33.823505", "id": "1082697274", "tags": "party newyears kramer bg rawb"}, {"datetaken": "1999-12-31 00:00:10", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1219/1082682482_6a828ac3c1_o.jpg", "secret": "2a16888c5d", "media": "photo", "latitude": "33.823505", "id": "1082682482", "tags": "party newyears bg larball"}, {"datetaken": "1999-12-31 00:00:11", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1174/1081827965_6456ee786e_o.jpg", "secret": "127718f706", "media": "photo", "latitude": "33.823505", "id": "1081827965", "tags": "party chuck newyears kramer thegord"}, {"datetaken": "1999-12-31 00:00:12", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1038/1081832997_abd5c12aef_o.jpg", "secret": "b9bf77a42b", "media": "photo", "latitude": "33.823505", "id": "1081832997", "tags": "party newyears kramer strain thedirt larball"}, {"datetaken": "1999-12-31 00:00:13", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1325/1081833433_bc7da49c19_o.jpg", "secret": "2d3ea86473", "media": "photo", "latitude": "33.823505", "id": "1081833433", "tags": "party chuck newyears bg thegord"}, {"datetaken": "1999-12-31 00:00:14", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1061/1082689442_e7e15efc80_o.jpg", "secret": "5db7e70f28", "media": "photo", "latitude": "33.823505", "id": "1082689442", "tags": "party frankie newyears larball"}, {"datetaken": "1999-12-31 00:00:15", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1286/1082690734_e460df6a8b_o.jpg", "secret": "2cd84a99f7", "media": "photo", "latitude": "33.823505", "id": "1082690734", "tags": "party newyears kramer thedirt"}, {"datetaken": "1999-12-31 00:00:16", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1042/1081837195_9085ef86c1_o.jpg", "secret": "feec6cf0be", "media": "photo", "latitude": "33.823505", "id": "1081837195", "tags": "party newyears larball"}, {"datetaken": "1999-12-31 00:00:17", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1161/1081838657_b7ae8f2f81_o.jpg", "secret": "0d7f87bd56", "media": "photo", "latitude": "33.823505", "id": "1081838657", "tags": "party newyears"}, {"datetaken": "1999-12-31 00:00:18", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1109/1082694806_a69ff63508_o.jpg", "secret": "891c85427c", "media": "photo", "latitude": "33.823505", "id": "1082694806", "tags": "party newyears hernesto"}, {"datetaken": "1999-12-31 00:00:19", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1028/1082675042_4d0990712b_o.jpg", "secret": "cff636b54c", "media": "photo", "latitude": "33.823505", "id": "1082675042", "tags": "party newyears"}, {"datetaken": "1999-12-31 00:00:20", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1120/1081840987_e72b2ba230_o.jpg", "secret": "2264d62755", "media": "photo", "latitude": "33.823505", "id": "1081840987", "tags": "party newyears bg thegord"}, {"datetaken": "1999-12-31 00:00:21", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1133/1081820491_285715c27e_o.jpg", "secret": "9f2c007b51", "media": "photo", "latitude": "33.823505", "id": "1081820491", "tags": "party newyears kb therev"}, {"datetaken": "1999-12-31 00:00:22", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1352/1082675454_837b16ec94_o.jpg", "secret": "6a968b2d4f", "media": "photo", "latitude": "33.823505", "id": "1082675454", "tags": "party newyears kramer"}, {"datetaken": "2000-01-01 00:00:00", "license": "6", "title": "", "text": "", "album_id": "72157601366268174", "longitude": "-84.344596", "url_o": "https://farm2.staticflickr.com/1218/1081843481_5cf893eeb5_o.jpg", "secret": "76082374e1", "media": "photo", "latitude": "33.823505", "id": "1081843481", "tags": "party newyears kb thedirt"}, {"datetaken": "2008-01-01 07:57:57", "license": "5", "title": "rebecca and jaren", "text": "", "album_id": "72157603608431779", "longitude": "-106.449472", "url_o": "https://farm3.staticflickr.com/2250/2156551961_341b119128_o.jpg", "secret": "30f1788f34", "media": "photo", "latitude": "35.210067", "id": "2156551961", "tags": "morning winter mountain newmexico sunrise sandiacrest yearsday"}, {"datetaken": "2008-01-01 08:06:19", "license": "5", "title": "sunrise one", "text": "", "album_id": "72157603608431779", "longitude": "-106.449472", "url_o": "https://farm3.staticflickr.com/2049/2156550151_4c0def7949_o.jpg", "secret": "4dbfc7caa5", "media": "photo", "latitude": "35.210067", "id": "2156550151", "tags": "morning winter mountain newmexico sunrise sandiacrest yearsday"}, {"datetaken": "2008-01-01 08:06:59", "license": "5", "title": "sunrise two", "text": "", "album_id": "72157603608431779", "longitude": "-106.449472", "url_o": "https://farm3.staticflickr.com/2091/2156549129_b63e12c8b2_o.jpg", "secret": "65dec8442c", "media": "photo", "latitude": "35.210067", "id": "2156549129", "tags": "morning winter mountain newmexico sunrise sandiacrest yearsday"}, {"datetaken": "2008-01-01 08:07:04", "license": "5", "title": "sunrise three", "text": "", "album_id": "72157603608431779", "longitude": "-106.449472", "url_o": "https://farm3.staticflickr.com/2088/2157342144_a2f4c40ff1_o.jpg", "secret": "147e03864a", "media": "photo", "latitude": "35.210067", "id": "2157342144", "tags": "morning winter mountain newmexico sunrise sandiacrest yearsday"}, {"datetaken": "2008-01-01 08:07:50", "license": "5", "title": "rebecca and steven", "text": "", "album_id": "72157603608431779", "longitude": "-106.449472", "url_o": "https://farm3.staticflickr.com/2085/2157340708_a095eb03f5_o.jpg", "secret": "813a7cff8f", "media": "photo", "latitude": "35.210067", "id": "2157340708", "tags": "morning winter mountain newmexico sunrise sandiacrest yearsday"}, {"datetaken": "2008-01-01 08:08:50", "license": "5", "title": "sunrise four", "text": "", "album_id": "72157603608431779", "longitude": "-106.449472", "url_o": "https://farm3.staticflickr.com/2172/2156545339_879a3faef7_o.jpg", "secret": "7067391885", "media": "photo", "latitude": "35.210067", "id": "2156545339", "tags": "morning winter mountain newmexico sunrise sandiacrest yearsday"}, {"datetaken": "2008-01-01 08:09:05", "license": "5", "title": "nice warm truck", "text": "", "album_id": "72157603608431779", "longitude": "-106.449472", "url_o": "https://farm3.staticflickr.com/2004/2156544889_db66e258ef_o.jpg", "secret": "f4cd8394f9", "media": "photo", "latitude": "35.210067", "id": "2156544889", "tags": "morning winter mountain newmexico sunrise sandiacrest yearsday"}, {"datetaken": "2008-01-01 20:16:31", "license": "5", "title": "not just yet", "text": "", "album_id": "72157603608431779", "longitude": "-106.449472", "url_o": "https://farm3.staticflickr.com/2054/2156542761_aa02315bab_o.jpg", "secret": "bdf99cd167", "media": "photo", "latitude": "35.210067", "id": "2156542761", "tags": "morning winter mountain newmexico sunrise sandiacrest yearsday"}, {"datetaken": "2008-01-01 20:16:38", "license": "5", "title": "city lights", "text": "", "album_id": "72157603608431779", "longitude": "-106.449472", "url_o": "https://farm3.staticflickr.com/2123/2157337930_7f51ddbbb4_o.jpg", "secret": "44c4d5377c", "media": "photo", "latitude": "35.210067", "id": "2157337930", "tags": "morning winter mountain newmexico sunrise sandiacrest yearsday"}, {"datetaken": "2008-01-01 20:16:52", "license": "5", "title": "frozen signage", "text": "", "album_id": "72157603608431779", "longitude": "-106.449472", "url_o": "https://farm3.staticflickr.com/2341/2156543905_d5782ec7f7_o.jpg", "secret": "d621cfe961", "media": "photo", "latitude": "35.210067", "id": "2156543905", "tags": "morning winter mountain newmexico sunrise sandiacrest yearsday"}, {"datetaken": "2008-01-01 20:16:59", "license": "5", "title": "frozen pixels", "text": "", "album_id": "72157603608431779", "longitude": "-106.449472", "url_o": "https://farm3.staticflickr.com/2221/2157339040_69e70b2d46_o.jpg", "secret": "a36f1a0f75", "media": "photo", "latitude": "35.210067", "id": "2157339040", "tags": "morning winter mountain newmexico sunrise sandiacrest yearsday"}, {"datetaken": "2011-01-02 12:10:02", "license": "1", "title": "Sign of the times?", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5245/5324497057_46f97a7d46_o.jpg", "secret": "738fc4e890", "media": "photo", "latitude": "0", "id": "5324497057", "tags": ""}, {"datetaken": "2011-01-02 13:29:48", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5282/5324503085_f02cbb9b35_o.jpg", "secret": "9f3bf8226c", "media": "photo", "latitude": "0", "id": "5324503085", "tags": ""}, {"datetaken": "2011-01-02 13:32:46", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5164/5325111116_28cca93eae_o.jpg", "secret": "761a430265", "media": "photo", "latitude": "0", "id": "5325111116", "tags": ""}, {"datetaken": "2011-01-02 13:32:55", "license": "1", "title": "Joseph looks scared, to me", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5121/5325114578_f2b50e00bb_o.jpg", "secret": "a6fcc27854", "media": "photo", "latitude": "0", "id": "5325114578", "tags": ""}, {"datetaken": "2011-01-02 13:33:04", "license": "1", "title": "Scary?", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5090/5324512381_1bf2725f25_o.jpg", "secret": "4a5770fa89", "media": "photo", "latitude": "0", "id": "5324512381", "tags": ""}, {"datetaken": "2011-01-02 13:33:34", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5161/5325122012_133e6dc8d9_o.jpg", "secret": "0f7d961754", "media": "photo", "latitude": "0", "id": "5325122012", "tags": ""}, {"datetaken": "2011-01-02 13:47:14", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5210/5324518239_f52a3e31fd_o.jpg", "secret": "920599f8e6", "media": "photo", "latitude": "0", "id": "5324518239", "tags": ""}, {"datetaken": "2011-01-02 13:47:23", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5002/5325126444_d6054c13a5_o.jpg", "secret": "819b9d067b", "media": "photo", "latitude": "0", "id": "5325126444", "tags": ""}, {"datetaken": "2011-01-02 13:47:35", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5049/5325127772_f84baefeeb_o.jpg", "secret": "462ccda91c", "media": "photo", "latitude": "0", "id": "5325127772", "tags": ""}, {"datetaken": "2011-01-02 13:47:45", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5043/5325129702_a88c76467e_o.jpg", "secret": "a3d940fb6f", "media": "photo", "latitude": "0", "id": "5325129702", "tags": ""}, {"datetaken": "2011-01-02 14:41:17", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5082/5324525499_9f69fcca85_o.jpg", "secret": "0faeb4bcfc", "media": "photo", "latitude": "0", "id": "5324525499", "tags": ""}, {"datetaken": "2011-01-02 14:44:29", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5165/5324526995_f61ac366ba_o.jpg", "secret": "65d74ae0ef", "media": "photo", "latitude": "0", "id": "5324526995", "tags": ""}, {"datetaken": "2011-01-02 15:17:52", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5006/5324528089_c671b42158_o.jpg", "secret": "3e52757f73", "media": "photo", "latitude": "0", "id": "5324528089", "tags": ""}, {"datetaken": "2011-01-02 15:43:41", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5130/5325138342_27f952f1eb_o.jpg", "secret": "e9fa5925f1", "media": "photo", "latitude": "0", "id": "5325138342", "tags": ""}, {"datetaken": "2011-01-02 15:43:59", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5128/5324533725_57324ffa09_o.jpg", "secret": "82341bab69", "media": "photo", "latitude": "0", "id": "5324533725", "tags": ""}, {"datetaken": "2011-01-02 15:44:18", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5248/5325142274_910f98a82d_o.jpg", "secret": "f680328dd2", "media": "photo", "latitude": "0", "id": "5325142274", "tags": ""}, {"datetaken": "2011-01-02 15:53:46", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5130/5324537711_d7a1f00df7_o.jpg", "secret": "5e6282af8f", "media": "photo", "latitude": "0", "id": "5324537711", "tags": ""}, {"datetaken": "2011-01-02 15:54:24", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5085/5324539159_6628435415_o.jpg", "secret": "5d0365cdd9", "media": "photo", "latitude": "0", "id": "5324539159", "tags": ""}, {"datetaken": "2011-01-02 15:54:35", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5126/5324541061_15bcd29909_o.jpg", "secret": "59020f8eb0", "media": "photo", "latitude": "0", "id": "5324541061", "tags": ""}, {"datetaken": "2011-01-02 16:46:07", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5008/5325149234_0403fd86d4_o.jpg", "secret": "35a98ce3fb", "media": "photo", "latitude": "0", "id": "5325149234", "tags": ""}, {"datetaken": "2011-01-02 17:05:40", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5168/5324545301_98098667cc_o.jpg", "secret": "820c6e5929", "media": "photo", "latitude": "0", "id": "5324545301", "tags": ""}, {"datetaken": "2011-01-02 17:06:41", "license": "1", "title": "Fantastic Hat", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5130/5325154924_efe9d6e3d1_o.jpg", "secret": "9c2285d501", "media": "photo", "latitude": "0", "id": "5325154924", "tags": ""}, {"datetaken": "2011-01-02 17:44:35", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5287/5324550687_6597548166_o.jpg", "secret": "1f65c24b2b", "media": "photo", "latitude": "0", "id": "5324550687", "tags": ""}, {"datetaken": "2011-01-02 17:44:54", "license": "1", "title": "Rome, New Year's Day 2011", "text": "", "album_id": "72157625623198327", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5281/5325159334_b9b915ab40_o.jpg", "secret": "a4f18c3136", "media": "photo", "latitude": "0", "id": "5325159334", "tags": ""}, {"datetaken": "2010-12-31 20:43:22", "license": "1", "title": "New Year's Eve", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5168/5322559402_bf985279e7_o.jpg", "secret": "a00c01e6c1", "media": "photo", "latitude": "40.966794", "id": "5322559402", "tags": "sarahm 2010 ericp alexr bryann sharonbeth december2010"}, {"datetaken": "2010-12-31 20:43:52", "license": "1", "title": "Feeding Everett", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5167/5322620350_de350fe321_o.jpg", "secret": "220a2dc733", "media": "photo", "latitude": "40.966794", "id": "5322620350", "tags": "sue everett 2010 proudparents december2010"}, {"datetaken": "2010-12-31 20:54:58", "license": "1", "title": "Violet Discovers Doritos", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5284/5322561620_42d6220648_o.jpg", "secret": "11513dfff9", "media": "photo", "latitude": "40.966794", "id": "5322561620", "tags": "violet 2010 december2010"}, {"datetaken": "2010-12-31 20:55:44", "license": "1", "title": "Sarah And Sharon Beth", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5210/5322563750_d40c65a656_o.jpg", "secret": "0aa0882b9c", "media": "photo", "latitude": "40.966794", "id": "5322563750", "tags": "sarahm 2010 sharonbeth december2010"}, {"datetaken": "2010-12-31 21:04:13", "license": "1", "title": "Alexa", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5249/5322565702_63c6252ee5_o.jpg", "secret": "efc532c15b", "media": "photo", "latitude": "40.966794", "id": "5322565702", "tags": "alexa 2010 december2010"}, {"datetaken": "2010-12-31 21:04:36", "license": "1", "title": "New Year's Eve", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5123/5321964297_81f3cfce19_o.jpg", "secret": "7eedcbb305", "media": "photo", "latitude": "40.966794", "id": "5321964297", "tags": "2010 jillb december2010"}, {"datetaken": "2010-12-31 21:05:09", "license": "1", "title": "Eric And Johann", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5046/5321966125_cac06440a1_o.jpg", "secret": "dd96b18f5f", "media": "photo", "latitude": "40.966794", "id": "5321966125", "tags": "johann 2010 ericp december2010"}, {"datetaken": "2010-12-31 21:05:25", "license": "1", "title": "Feeding The Twins", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5287/5321969405_10ff35c417_o.jpg", "secret": "a3272af399", "media": "photo", "latitude": "40.966794", "id": "5321969405", "tags": "tavi 2010 lenore tora december2010"}, {"datetaken": "2010-12-31 21:05:33", "license": "1", "title": "New Year's Eve", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5243/5322574638_e9df105223_o.jpg", "secret": "fdabaf8a3e", "media": "photo", "latitude": "40.966794", "id": "5322574638", "tags": "saraht 2010 sharonbeth december2010"}, {"datetaken": "2010-12-31 21:07:49", "license": "1", "title": "Alexa And Everett", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5044/5322616256_bebcb3efb7_o.jpg", "secret": "b1c0dd62cb", "media": "photo", "latitude": "40.966794", "id": "5322616256", "tags": "alexa everett 2010 december2010"}, {"datetaken": "2010-12-31 22:16:02", "license": "1", "title": "Tending To The Fire", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5282/5322577234_252b7a4d81_o.jpg", "secret": "e858a39379", "media": "photo", "latitude": "40.966794", "id": "5322577234", "tags": "fireplace 2010 bryann december2010"}, {"datetaken": "2010-12-31 22:16:27", "license": "1", "title": "New Year's Eve", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5168/5322636016_080890a046_o.jpg", "secret": "d4cf7d467c", "media": "photo", "latitude": "40.966794", "id": "5322636016", "tags": "violet 2010 december2010"}, {"datetaken": "2010-12-31 22:16:41", "license": "1", "title": "New Year's Eve", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5122/5322582870_47ae62e5dc_o.jpg", "secret": "7b39d8eb55", "media": "photo", "latitude": "40.966794", "id": "5322582870", "tags": "violet 2010 johnw alexr december2010"}, {"datetaken": "2010-12-31 22:20:25", "license": "1", "title": "Helen And Violet", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5287/5322014827_1bc5fc850a_o.jpg", "secret": "045774f6b2", "media": "photo", "latitude": "40.966794", "id": "5322014827", "tags": "violet 2010 helenw december2010"}, {"datetaken": "2010-12-31 22:20:36", "license": "1", "title": "Helen And Violet", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5246/5322584972_4e494e1934_o.jpg", "secret": "7e24c4629b", "media": "photo", "latitude": "40.966794", "id": "5322584972", "tags": "violet 2010 helenw december2010"}, {"datetaken": "2010-12-31 22:50:08", "license": "1", "title": "New Year's Eve", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5001/5321983769_74ef480c1f_o.jpg", "secret": "411f72dc5d", "media": "photo", "latitude": "40.966794", "id": "5321983769", "tags": "mikel 2010 december2010"}, {"datetaken": "2010-12-31 22:52:59", "license": "1", "title": "Everett And Daddy", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5122/5322622604_a20ce9abdd_o.jpg", "secret": "e52c26f4dc", "media": "photo", "latitude": "40.966794", "id": "5322622604", "tags": "peter everett 2010 proudparents december2010"}, {"datetaken": "2010-12-31 22:53:03", "license": "1", "title": "Helen And Daddy", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5243/5322589292_136379620b_o.jpg", "secret": "9c27cef754", "media": "photo", "latitude": "40.966794", "id": "5322589292", "tags": "2010 johnw helenw december2010"}, {"datetaken": "2010-12-31 23:00:55", "license": "1", "title": "Zack And Violet", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5126/5321987905_ea6cf83d84_o.jpg", "secret": "7b69852418", "media": "photo", "latitude": "40.966794", "id": "5321987905", "tags": "violet zack 2010 december2010"}, {"datetaken": "2010-12-31 23:58:11", "license": "1", "title": "One Minute Fifty Seconds Until Midnight!", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5123/5322594004_f25636b2de_o.jpg", "secret": "e7a852d11f", "media": "photo", "latitude": "40.966794", "id": "5322594004", "tags": "christmas tree television tv newyearseve 2010 ryanseacrest december2010"}, {"datetaken": "2010-12-31 23:58:31", "license": "1", "title": "Erik And Mommy", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5125/5321992457_c9c22b5492_o.jpg", "secret": "623ef51881", "media": "photo", "latitude": "40.966794", "id": "5321992457", "tags": "kris 2010 erikw december2010"}, {"datetaken": "2010-12-31 23:58:41", "license": "1", "title": "Everett On New Year's Eve", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5165/5322021371_85ee7a3479_o.jpg", "secret": "2aa8e62e03", "media": "photo", "latitude": "40.966794", "id": "5322021371", "tags": "everett 2010 december2010 justeverett"}, {"datetaken": "2010-12-31 23:58:46", "license": "1", "title": "New Year's Eve", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5121/5322598036_00930b4807_o.jpg", "secret": "0b103dcb60", "media": "photo", "latitude": "40.966794", "id": "5322598036", "tags": "mikel saraht 2010 bryann december2010"}, {"datetaken": "2010-12-31 23:58:52", "license": "1", "title": "Everett On New Year's Eve", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5287/5321996519_fbfe83df81_o.jpg", "secret": "2ca38efc3c", "media": "photo", "latitude": "40.966794", "id": "5321996519", "tags": "2010 december2010"}, {"datetaken": "2010-12-31 23:59:00", "license": "1", "title": "Almost Midnight", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5048/5322602532_ff4a6b2426_o.jpg", "secret": "0eb33bc566", "media": "photo", "latitude": "40.966794", "id": "5322602532", "tags": "violet zack 2010 december2010"}, {"datetaken": "2010-12-31 23:59:10", "license": "1", "title": "Almost Midnight", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5284/5322001579_ee46a182c8_o.jpg", "secret": "2e80f6e6bd", "media": "photo", "latitude": "40.966794", "id": "5322001579", "tags": "violet zack 2010 december2010"}, {"datetaken": "2010-12-31 23:59:26", "license": "1", "title": "36 Seconds To Midnight", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5205/5322004101_bdfe631503_o.jpg", "secret": "2138f58304", "media": "photo", "latitude": "40.966794", "id": "5322004101", "tags": "television tv violet newyearseve sue alexa zack dickclark 2010 jillb december2010"}, {"datetaken": "2011-01-01 00:03:45", "license": "1", "title": "New Year's Day", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5163/5322006581_c311136f13_o.jpg", "secret": "f5439faa85", "media": "photo", "latitude": "40.966794", "id": "5322006581", "tags": "violet sue alexa johann everett jillb 2011 january2011"}, {"datetaken": "2011-01-01 00:04:07", "license": "1", "title": "New Year's Day", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5124/5322009179_7878146c5d_o.jpg", "secret": "a82f71b0aa", "media": "photo", "latitude": "40.966794", "id": "5322009179", "tags": "kris sue everett 2011 erikw january2011"}, {"datetaken": "2011-01-01 00:06:23", "license": "1", "title": "Doesn't Work Well With Others", "text": "", "album_id": "72157625742513764", "longitude": "-74.133055", "url_o": "https://farm6.staticflickr.com/5006/5322010883_d5a287205b_o.jpg", "secret": "a7ca1cd844", "media": "photo", "latitude": "40.966794", "id": "5322010883", "tags": "sarahm 2011 alexr january2011"}, {"datetaken": "2010-12-31 20:41:35", "license": "3", "title": "\u4eca\u5e74\u3082\u3042\u3068\uff13\u6642\u959315\u5206\u2026", "text": "", "album_id": "72157625746272588", "longitude": "139.424277", "url_o": "https://farm6.staticflickr.com/5082/5324157762_04500394b0_o.jpg", "secret": "17dcb5121f", "media": "photo", "latitude": "35.936614", "id": "5324157762", "tags": "clock station japan train newyearseve saitama \u96fb\u8eca \u99c5 \u57fc\u7389 k7 \u6642\u8a08 \u5e74\u8d8a\u3057 \u5927\u6666\u65e5 sigma30mmf14exdc tsurugashima \u9db4\u30f6\u5cf6 \u30af\u30ed\u30c3\u30af"}, {"datetaken": "2010-12-31 22:11:49", "license": "3", "title": "\u5897\u4e0a\u5bfa\u7740", "text": "", "album_id": "72157625746272588", "longitude": "139.750001", "url_o": "https://farm6.staticflickr.com/5089/5323553535_4297893ea6_o.jpg", "secret": "73635b6c3d", "media": "photo", "latitude": "35.657203", "id": "5323553535", "tags": "japan geotagged temple tokyo stall newyearseve tokyotower \u6771\u4eac shiba daimon \u5bfa \u6771\u4eac\u30bf\u30ef\u30fc zojoji foodstand hatsumode \u521d\u8a63 \u5c4b\u53f0 k7 \u5e74\u8d8a\u3057 \u5897\u4e0a\u5bfa \u5927\u9580 \u5927\u6666\u65e5 \u829d sigma30mmf14exdc rawdevelopment \u51fa\u5e97 raw\u73fe\u50cf geo:lat=3565720360052674 geo:lon=13975000190922736"}, {"datetaken": "2010-12-31 22:13:10", "license": "3", "title": "\u5897\u4e0a\u5bfa\u306e\u51fa\u5e97", "text": "", "album_id": "72157625746272588", "longitude": "139.749845", "url_o": "https://farm6.staticflickr.com/5089/5324158446_a8a8d719a4_o.jpg", "secret": "4f8b5df1f0", "media": "photo", "latitude": "35.657171", "id": "5324158446", "tags": "japan geotagged temple tokyo stall newyearseve tokyotower \u6771\u4eac shiba daimon \u5bfa \u6771\u4eac\u30bf\u30ef\u30fc zojoji foodstand hatsumode \u521d\u8a63 \u5c4b\u53f0 k7 \u5e74\u8d8a\u3057 \u5897\u4e0a\u5bfa \u5927\u9580 \u5927\u6666\u65e5 \u829d sigma30mmf14exdc rawdevelopment \u51fa\u5e97 raw\u73fe\u50cf geo:lat=3565717173097941 geo:lon=13974984514847944"}, {"datetaken": "2010-12-31 22:43:34", "license": "3", "title": "\u63d0\u706f\u3068", "text": "", "album_id": "72157625746272588", "longitude": "139.749573", "url_o": "https://farm6.staticflickr.com/5009/5323554339_20549fa310_o.jpg", "secret": "43f0987730", "media": "photo", "latitude": "35.657162", "id": "5323554339", "tags": "japan geotagged temple tokyo newyearseve tokyotower \u6771\u4eac lantern shiba daimon \u5bfa \u6771\u4eac\u30bf\u30ef\u30fc zojoji hatsumode \u521d\u8a63 k7 \u5e74\u8d8a\u3057 \u5897\u4e0a\u5bfa \u63d0\u706f \u5927\u9580 \u5927\u6666\u65e5 \u829d sigma30mmf14exdc rawdevelopment raw\u73fe\u50cf geo:lat=3565716239946944 geo:lon=1397495731865082"}, {"datetaken": "2010-12-31 22:59:27", "license": "3", "title": "\u3044\u304b\u306b\u3082", "text": "", "album_id": "72157625746272588", "longitude": "139.749541", "url_o": "https://farm6.staticflickr.com/5168/5323558681_da91d8acf8_o.jpg", "secret": "a6decfb59a", "media": "photo", "latitude": "35.657194", "id": "5323558681", "tags": "japan geotagged temple tokyo newyearseve tokyotower \u6771\u4eac shiba daimon \u5bfa \u6771\u4eac\u30bf\u30ef\u30fc zojoji hatsumode \u521d\u8a63 k7 \u5e74\u8d8a\u3057 \u5897\u4e0a\u5bfa \u5927\u9580 \u5927\u6666\u65e5 \u829d sigma30mmf14exdc geo:lat=35657194048899115 geo:lon=1397495413791332"}, {"datetaken": "2010-12-31 23:33:34", "license": "3", "title": "\u9858\u3044\u3092\u98a8\u8239\u306b\u8a17\u3057\u3066", "text": "", "album_id": "72157625746272588", "longitude": "139.749591", "url_o": "https://farm6.staticflickr.com/5208/5324167978_5082d1276d_o.jpg", "secret": "3798c34e38", "media": "photo", "latitude": "35.657157", "id": "5324167978", "tags": "japan geotagged temple tokyo balloon event newyearseve \u6771\u4eac shiba daimon \u5bfa zojoji \u30a4\u30d9\u30f3\u30c8 hatsumode \u98a8\u8239 \u521d\u8a63 k7 \u5e74\u8d8a\u3057 \u5897\u4e0a\u5bfa \u5927\u9580 \u5927\u6666\u65e5 \u829d sigma30mmf14exdc geo:lat=35657157 geo:lon=139749591"}, {"datetaken": "2010-12-31 23:51:41", "license": "3", "title": "\u307e\u3060\u304b\u306a", "text": "", "album_id": "72157625746272588", "longitude": "139.749591", "url_o": "https://farm6.staticflickr.com/5044/5324172054_555d54febd_o.jpg", "secret": "ccf593cd42", "media": "photo", "latitude": "35.657157", "id": "5324172054", "tags": "japan geotagged temple tokyo balloon event newyearseve tokyotower \u6771\u4eac shiba daimon \u5bfa \u6771\u4eac\u30bf\u30ef\u30fc zojoji \u30a4\u30d9\u30f3\u30c8 hatsumode \u98a8\u8239 \u521d\u8a63 k7 \u5e74\u8d8a\u3057 \u5897\u4e0a\u5bfa \u5927\u9580 \u5927\u6666\u65e5 \u829d sigma30mmf14exdc geo:lat=35657157 geo:lon=139749591"}, {"datetaken": "2010-12-31 23:56:32", "license": "3", "title": "\u30ab\u30e1\u30e9\u3084\u30b1\u30fc\u30bf\u30a4\u306e\u753b\u9762\u3068\u8fce\u3048\u308b\u65b0\u5e74", "text": "", "album_id": "72157625746272588", "longitude": "139.749591", "url_o": "https://farm6.staticflickr.com/5129/5323567565_6c85592ff4_o.jpg", "secret": "eb61e49020", "media": "photo", "latitude": "35.657157", "id": "5323567565", "tags": "japan geotagged temple tokyo display balloon event newyearseve \u6771\u4eac shiba daimon \u5bfa zojoji \u30a4\u30d9\u30f3\u30c8 hatsumode \u98a8\u8239 \u521d\u8a63 k7 \u5e74\u8d8a\u3057 \u5897\u4e0a\u5bfa \u753b\u9762 \u5927\u9580 \u5927\u6666\u65e5 \u829d sigma30mmf14exdc rawdevelopment geo:lat=35657157 raw\u73fe\u50cf geo:lon=139749591"}, {"datetaken": "2010-12-31 23:57:13", "license": "3", "title": "2011\u5e74\uff01", "text": "", "album_id": "72157625746272588", "longitude": "139.749590", "url_o": "https://farm6.staticflickr.com/5082/5323571453_afe156d1bb_o.jpg", "secret": "2d87640fc3", "media": "photo", "latitude": "35.657157", "id": "5323571453", "tags": "japan geotagged temple tokyo balloon event newyearseve \u6771\u4eac shiba daimon \u5bfa zojoji \u65b0\u5e74 \u30a4\u30d9\u30f3\u30c8 hatsumode \u98a8\u8239 \u521d\u8a63 k7 \u5e74\u8d8a\u3057 \u5897\u4e0a\u5bfa \u5927\u9580 \u5927\u6666\u65e5 \u5143\u65e5 \u829d sigma30mmf14exdc geo:lat=3565715724151183 geo:lon=13974959089832117"}, {"datetaken": "2011-01-01 00:27:53", "license": "3", "title": "TOGE TOGE", "text": "", "album_id": "72157625746272588", "longitude": "139.748572", "url_o": "https://farm6.staticflickr.com/5046/5323574791_6137b62c1d_o.jpg", "secret": "893138801f", "media": "photo", "latitude": "35.656243", "id": "5323574791", "tags": "longexposure japan geotagged tokyo illumination tokyotower \u6771\u4eac shiba daimon \u6771\u4eac\u30bf\u30ef\u30fc newyearsday \u65b0\u5e74 k7 \u9577\u6642\u9593\u9732\u5149 thenewyear \u30a4\u30eb\u30df\u30cd\u30fc\u30b7\u30e7\u30f3 \u5927\u9580 \u5143\u65e5 \u829d smcpentaxda35mmf28macrolimited geo:lat=3565624310766969 geo:lon=1397485726405449"}, {"datetaken": "2011-01-01 00:34:04", "license": "3", "title": "\u5148\u7aef", "text": "", "album_id": "72157625746272588", "longitude": "139.748231", "url_o": "https://farm6.staticflickr.com/5006/5324181964_f14fdfa140_o.jpg", "secret": "b9bc9abf9a", "media": "photo", "latitude": "35.656339", "id": "5324181964", "tags": "longexposure japan geotagged tokyo tokyotower \u6771\u4eac shiba daimon \u6771\u4eac\u30bf\u30ef\u30fc newyearsday \u65b0\u5e74 k7 \u9577\u6642\u9593\u9732\u5149 thenewyear \u5927\u9580 \u5143\u65e5 \u829d smcpentaxm50mmf17 geo:lat=35656339336337496 geo:lon=1397482318773155"}, {"datetaken": "2011-01-01 00:36:22", "license": "3", "title": "bokeh tokyo tower", "text": "", "album_id": "72157625746272588", "longitude": "139.748237", "url_o": "https://farm6.staticflickr.com/5128/5324185808_561930f6b1_o.jpg", "secret": "2faed29d6d", "media": "photo", "latitude": "35.656335", "id": "5324185808", "tags": "japan geotagged tokyo bokeh tokyotower \u6771\u4eac shiba daimon \u6771\u4eac\u30bf\u30ef\u30fc newyearsday \u65b0\u5e74 k7 thenewyear \u5927\u9580 \u30dc\u30b1 \u5143\u65e5 \u829d smcpentaxm50mmf17 geo:lat=3565633531835399 geo:lon=13974823731779102"}, {"datetaken": "2011-01-01 00:39:01", "license": "3", "title": "little bokeh", "text": "", "album_id": "72157625746272588", "longitude": "139.748138", "url_o": "https://farm6.staticflickr.com/5165/5324189398_aed03461ee_o.jpg", "secret": "c07ce8782f", "media": "photo", "latitude": "35.656153", "id": "5324189398", "tags": "japan geotagged tokyo bokeh tokyotower \u6771\u4eac shiba daimon \u6771\u4eac\u30bf\u30ef\u30fc newyearsday \u65b0\u5e74 k7 thenewyear \u5927\u9580 \u30dc\u30b1 \u5143\u65e5 \u829d smcpentaxm50mmf17 geo:lat=35656153340757044 geo:lon=13974813841716198"}, {"datetaken": "2011-01-01 00:43:08", "license": "3", "title": "\u5143\u65e5\u306e\u6771\u4eac\u30bf\u30ef\u30fc", "text": "", "album_id": "72157625746272588", "longitude": "139.748150", "url_o": "https://farm6.staticflickr.com/5241/5324193784_b4e4dd2528_o.jpg", "secret": "56ceecebeb", "media": "photo", "latitude": "35.656063", "id": "5324193784", "tags": "longexposure japan geotagged tokyo illumination tokyotower \u6771\u4eac shiba daimon \u6771\u4eac\u30bf\u30ef\u30fc newyearsday \u65b0\u5e74 k7 \u9577\u6642\u9593\u9732\u5149 thenewyear \u30a4\u30eb\u30df\u30cd\u30fc\u30b7\u30e7\u30f3 \u5927\u9580 \u5143\u65e5 \u829d sigma30mmf14exdc geo:lat=3565606300432792 geo:lon=1397481500491085"}, {"datetaken": "2011-01-01 00:48:41", "license": "3", "title": "\u9006\u3055\u6771\u4eac\u30bf\u30ef\u30fc - 1", "text": "", "album_id": "72157625746272588", "longitude": "139.747969", "url_o": "https://farm6.staticflickr.com/5085/5323592207_40bf01ae65_o.jpg", "secret": "5fa18493d0", "media": "photo", "latitude": "35.656147", "id": "5323592207", "tags": "longexposure reflection japan geotagged tokyo illumination tokyotower \u6771\u4eac shiba daimon \u6771\u4eac\u30bf\u30ef\u30fc newyearsday \u65b0\u5e74 k7 \u9577\u6642\u9593\u9732\u5149 thenewyear \u53cd\u5c04 \u30a4\u30eb\u30df\u30cd\u30fc\u30b7\u30e7\u30f3 \u5927\u9580 \u5143\u65e5 \u829d sigma30mmf14exdc geo:lat=3565614764124992 geo:lon=13974796927878188"}, {"datetaken": "2011-01-01 00:56:29", "license": "3", "title": "\u9006\u3055\u6771\u4eac\u30bf\u30ef\u30fc - 2", "text": "", "album_id": "72157625746272588", "longitude": "139.746368", "url_o": "https://farm6.staticflickr.com/5208/5323596079_1955a91257_o.jpg", "secret": "d69c5fc25e", "media": "photo", "latitude": "35.656151", "id": "5323596079", "tags": "reflection japan geotagged tokyo illumination tokyotower \u6771\u4eac shiba daimon \u6771\u4eac\u30bf\u30ef\u30fc newyearsday \u65b0\u5e74 k7 thenewyear \u53cd\u5c04 \u30a4\u30eb\u30df\u30cd\u30fc\u30b7\u30e7\u30f3 \u5927\u9580 \u5143\u65e5 \u829d sigma30mmf14exdc geo:lat=3565615179995901 geo:lon=13974636801910114"}, {"datetaken": "2011-01-01 01:05:54", "license": "3", "title": "\u4e0b\u304b\u3089", "text": "", "album_id": "72157625746272588", "longitude": "139.745847", "url_o": "https://farm6.staticflickr.com/5203/5324202258_020d3ddbe3_o.jpg", "secret": "d82198ff02", "media": "photo", "latitude": "35.658219", "id": "5324202258", "tags": "longexposure japan geotagged tokyo illumination tokyotower \u6771\u4eac shiba daimon \u6771\u4eac\u30bf\u30ef\u30fc newyearsday \u65b0\u5e74 k7 \u9577\u6642\u9593\u9732\u5149 thenewyear \u30a4\u30eb\u30df\u30cd\u30fc\u30b7\u30e7\u30f3 \u5927\u9580 \u5143\u65e5 \u829d sigma30mmf14exdc geo:lat=35658219979609775 geo:lon=13974584714374637"}, {"datetaken": "2011-01-01 01:53:39", "license": "3", "title": "\u521d\u8a63", "text": "", "album_id": "72157625746272588", "longitude": "139.748525", "url_o": "https://farm6.staticflickr.com/5205/5323600211_f812a0b135_o.jpg", "secret": "bb7b02f5b2", "media": "photo", "latitude": "35.657406", "id": "5323600211", "tags": "japan geotagged temple gold tokyo \u6771\u4eac budha shiba daimon \u5bfa newyearsday zojoji \u65b0\u5e74 hatsumode \u521d\u8a63 k7 \u5897\u4e0a\u5bfa thenewyear \u91d1\u8272 \u5927\u9580 \u5143\u65e5 \u829d sigma30mmf14exdc \u4ecf geo:lat=35657406321571244 geo:lon=13974852570552252"}, {"datetaken": "2011-01-01 02:01:12", "license": "3", "title": "\u304a\u307f\u304f\u3058\u884c\u5217\u304b\u3089", "text": "", "album_id": "72157625746272588", "longitude": "139.748518", "url_o": "https://farm6.staticflickr.com/5125/5323604349_fa695356a5_o.jpg", "secret": "0cbb5281bd", "media": "photo", "latitude": "35.657609", "id": "5323604349", "tags": "japan geotagged temple tokyo balloon \u6771\u4eac shiba daimon \u5bfa newyearsday zojoji \u65b0\u5e74 hatsumode \u98a8\u8239 \u521d\u8a63 k7 \u5897\u4e0a\u5bfa thenewyear \u5927\u9580 \u5143\u65e5 \u829d sigma30mmf14exdc geo:lat=3565760944534267 geo:lon=13974851895146844"}, {"datetaken": "2011-01-01 02:15:03", "license": "3", "title": "\u3059\u3067\u3093 \u968a\u30ab\u30eb\u30d3\u30d5\u30e9\u30f3\u30af", "text": "", "album_id": "72157625746272588", "longitude": "139.748929", "url_o": "https://farm6.staticflickr.com/5123/5324210462_b9f5eed891_o.jpg", "secret": "41431371b0", "media": "photo", "latitude": "35.657919", "id": "5324210462", "tags": "japan menu geotagged temple tokyo sausage stall \u6771\u4eac shiba daimon \u5bfa oden newyearsday zojoji foodstand \u65b0\u5e74 \u304a\u3067\u3093 hatsumode galbi \u521d\u8a63 \u5c4b\u53f0 k7 \u30e1\u30cb\u30e5\u30fc \u5897\u4e0a\u5bfa thenewyear \u30bd\u30fc\u30bb\u30fc\u30b8 \u5927\u9580 \u5143\u65e5 \u829d sigma30mmf14exdc \u30ab\u30eb\u30d3 erratum rawdevelopment \u51fa\u5e97 \u8aa4\u5b57 raw\u73fe\u50cf geo:lat=35657919906954135 geo:lon=13974892958678242"}, {"datetaken": "2011-01-01 05:13:16", "license": "3", "title": "\u30ad\uff0a\uff0a\u30a4\u3063\u3066\u4f55\u3084\u3089\u304b\u3059\u304b\u308f\u304b\u3089\u3093\u7b11", "text": "", "album_id": "72157625746272588", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5087/5323605237_dc62c317e2_o.jpg", "secret": "c24af13f4a", "media": "photo", "latitude": "0", "id": "5323605237", "tags": "japan fireworks newyearsday \u65b0\u5e74 \u82b1\u706b k7 \u5143\u65e6 thenewyear \u5143\u65e5 sigma30mmf14exdc rawdevelopment raw\u73fe\u50cf"}, {"datetaken": "2011-01-01 05:54:04", "license": "3", "title": "\u6708\u3082\u3044\u3044\u611f\u3058", "text": "", "album_id": "72157625746272588", "longitude": "139.839424", "url_o": "https://farm6.staticflickr.com/5287/5324214630_9925419f56_o.jpg", "secret": "79025a918e", "media": "photo", "latitude": "35.627739", "id": "5324214630", "tags": "morning blue orange japan geotagged tokyo \u6771\u4eac nightview gradation \u591c\u666f \u9752 tokyobay newyearsday \u65b0\u5e74 \u521d\u65e5\u306e\u51fa \u30aa\u30ec\u30f3\u30b8 shinkiba k7 seasidepark \u5143\u65e6 \u65b0\u6728\u5834 \u6771\u4eac\u6e7e thenewyear \u5143\u65e5 firstsunrise \u30b0\u30e9\u30c7\u30fc\u30b7\u30e7\u30f3 sigma30mmf14exdc \u82e5\u6d32\u6d77\u6d5c\u516c\u5712 geo:lat=35627739 geo:lon=139839424"}, {"datetaken": "2011-01-01 06:14:54", "license": "3", "title": "\u660e\u308b\u304f\u306a\u3063\u3066\u304d\u305f", "text": "", "album_id": "72157625746272588", "longitude": "139.839424", "url_o": "https://farm6.staticflickr.com/5202/5324218486_6ca7a15caf_o.jpg", "secret": "b268ea1f28", "media": "photo", "latitude": "35.627739", "id": "5324218486", "tags": "morning blue orange silhouette japan geotagged tokyo \u6771\u4eac nightview gradation \u591c\u666f \u9752 tokyobay newyearsday \u65b0\u5e74 \u521d\u65e5\u306e\u51fa \u30aa\u30ec\u30f3\u30b8 shinkiba k7 \u30b7\u30eb\u30a8\u30c3\u30c8 seasidepark \u5143\u65e6 \u65b0\u6728\u5834 \u6771\u4eac\u6e7e thenewyear \u5143\u65e5 firstsunrise \u30b0\u30e9\u30c7\u30fc\u30b7\u30e7\u30f3 sigma30mmf14exdc \u82e5\u6d32\u6d77\u6d5c\u516c\u5712 geo:lat=35627739 geo:lon=139839424"}, {"datetaken": "2011-01-01 06:21:40", "license": "3", "title": "\u304d\u308c\u3044\u2026", "text": "", "album_id": "72157625746272588", "longitude": "139.839424", "url_o": "https://farm6.staticflickr.com/5088/5324222704_59bbe8a8c3_o.jpg", "secret": "df2e97e990", "media": "photo", "latitude": "35.627739", "id": "5324222704", "tags": "morning blue orange japan geotagged tokyo \u6771\u4eac nightview gradation \u591c\u666f \u9752 tokyobay newyearsday \u65b0\u5e74 \u521d\u65e5\u306e\u51fa \u30aa\u30ec\u30f3\u30b8 shinkiba k7 seasidepark \u5143\u65e6 \u65b0\u6728\u5834 \u6771\u4eac\u6e7e thenewyear \u5143\u65e5 firstsunrise \u30b0\u30e9\u30c7\u30fc\u30b7\u30e7\u30f3 sigma30mmf14exdc \u82e5\u6d32\u6d77\u6d5c\u516c\u5712 geo:lat=35627739 geo:lon=139839424"}, {"datetaken": "2011-01-01 06:45:32", "license": "3", "title": "\u3082\u3046\u3059\u3050\u306e\u30b5\u30a4\u30f3\u3001\u5149\u8292", "text": "", "album_id": "72157625746272588", "longitude": "139.839424", "url_o": "https://farm6.staticflickr.com/5284/5324226768_620b681458_o.jpg", "secret": "89a11a2389", "media": "photo", "latitude": "35.627739", "id": "5324226768", "tags": "morning japan geotagged tokyo \u6771\u4eac tokyobay newyearsday \u65b0\u5e74 \u521d\u65e5\u306e\u51fa shinkiba k7 seasidepark \u5143\u65e6 \u65b0\u6728\u5834 beamoflight \u6771\u4eac\u6e7e thenewyear \u5149\u8292 \u5143\u65e5 firstsunrise \u82e5\u6d32\u6d77\u6d5c\u516c\u5712 smcpentaxm50mmf17 rawdevelopment raw\u73fe\u50cf geo:lat=35627739 geo:lon=139839424"}, {"datetaken": "2011-01-01 06:49:56", "license": "3", "title": "\u672c\u5e74\u3082\u9759\u304b\u306a\u521d\u65e5\u306e\u51fa\u3067\u3054\u3056\u3044\u307e\u3059", "text": "", "album_id": "72157625746272588", "longitude": "139.839424", "url_o": "https://farm6.staticflickr.com/5201/5323625341_a10f1eaecb_o.jpg", "secret": "1706ffb9ea", "media": "photo", "latitude": "35.627739", "id": "5323625341", "tags": "morning blue orange japan geotagged tokyo \u6771\u4eac gradation \u9752 risingsun tokyobay newyearsday \u65b0\u5e74 \u521d\u65e5\u306e\u51fa \u30aa\u30ec\u30f3\u30b8 shinkiba k7 seasidepark \u5143\u65e6 \u65b0\u6728\u5834 \u6771\u4eac\u6e7e thenewyear \u671d\u65e5 \u5143\u65e5 firstsunrise \u30b0\u30e9\u30c7\u30fc\u30b7\u30e7\u30f3 \u82e5\u6d32\u6d77\u6d5c\u516c\u5712 geo:lat=35627739 smcpentaxda1855mmf3556alwr geo:lon=139839424"}, {"datetaken": "2011-01-01 06:53:22", "license": "3", "title": "\u307e\u3060\u4e00\u4eba\u8db3\u308a\u306a\u3044^^;", "text": "", "album_id": "72157625746272588", "longitude": "139.839424", "url_o": "https://farm6.staticflickr.com/5082/5324231346_fe3c2cd901_o.jpg", "secret": "7907556bdd", "media": "photo", "latitude": "35.627738", "id": "5324231346", "tags": "morning blue orange silhouette japan geotagged tokyo \u6771\u4eac gradation \u9752 risingsun tokyobay newyearsday \u65b0\u5e74 \u521d\u65e5\u306e\u51fa \u30aa\u30ec\u30f3\u30b8 shinkiba k7 \u30b7\u30eb\u30a8\u30c3\u30c8 seasidepark \u5143\u65e6 \u65b0\u6728\u5834 \u6771\u4eac\u6e7e thenewyear \u671d\u65e5 \u5143\u65e5 firstsunrise \u30b0\u30e9\u30c7\u30fc\u30b7\u30e7\u30f3 \u82e5\u6d32\u6d77\u6d5c\u516c\u5712 rawdevelopment raw\u73fe\u50cf smcpentaxda1855mmf3556alwr geo:lat=3562773869499067 geo:lon=1398394240391264"}, {"datetaken": "2011-01-01 07:31:08", "license": "3", "title": "\u306d\u3053", "text": "", "album_id": "72157625746272588", "longitude": "139.836426", "url_o": "https://farm6.staticflickr.com/5207/5324232056_18733ea96e_o.jpg", "secret": "3375726565", "media": "photo", "latitude": "35.637697", "id": "5324232056", "tags": "morning japan cat geotagged tokyo \u6771\u4eac newyearsday \u65b0\u5e74 \u30cd\u30b3 shinkiba k7 \u5143\u65e6 \u65b0\u6728\u5834 thenewyear \u5143\u65e5 smcpentaxm50mmf17 rawdevelopment raw\u73fe\u50cf geo:lat=3563769717476196 geo:lon=1398364261706066"}, {"datetaken": "2012-01-01 14:40:06", "license": "3", "title": "Orange Berries", "text": "", "album_id": "72157628671377835", "longitude": "-70.797116", "url_o": "https://farm8.staticflickr.com/7007/6616036623_1d684fdeb5_o.jpg", "secret": "d4d7a48fb9", "media": "photo", "latitude": "42.744577", "id": "6616036623", "tags": ""}, {"datetaken": "2012-01-01 14:46:21", "license": "3", "title": "Reeds along the walkway", "text": "", "album_id": "72157628671377835", "longitude": "-70.797116", "url_o": "https://farm8.staticflickr.com/7142/6616037501_14f6b88909_o.jpg", "secret": "be6f2968a8", "media": "photo", "latitude": "42.744577", "id": "6616037501", "tags": ""}, {"datetaken": "2012-01-01 14:49:48", "license": "3", "title": "Marsh Walk", "text": "", "album_id": "72157628671377835", "longitude": "-70.797116", "url_o": "https://farm8.staticflickr.com/7151/6616038459_da059df6bd_o.jpg", "secret": "7a5b203606", "media": "photo", "latitude": "42.744577", "id": "6616038459", "tags": ""}, {"datetaken": "2012-01-01 14:50:23", "license": "3", "title": "Wind whipped clouds", "text": "", "album_id": "72157628671377835", "longitude": "-70.797116", "url_o": "https://farm8.staticflickr.com/7032/6616039221_d9ede115d5_o.jpg", "secret": "331d5d36b3", "media": "photo", "latitude": "42.744577", "id": "6616039221", "tags": ""}, {"datetaken": "2012-01-01 14:51:31", "license": "3", "title": "Reeds on blue sky", "text": "", "album_id": "72157628671377835", "longitude": "-70.797116", "url_o": "https://farm8.staticflickr.com/7023/6616040055_a0929a5817_o.jpg", "secret": "58f23f0dde", "media": "photo", "latitude": "42.744577", "id": "6616040055", "tags": ""}, {"datetaken": "2012-01-01 14:54:46", "license": "3", "title": "Winter food", "text": "", "album_id": "72157628671377835", "longitude": "-70.797116", "url_o": "https://farm8.staticflickr.com/7158/6616041457_cd7d448e23_o.jpg", "secret": "d266d394f7", "media": "photo", "latitude": "42.744577", "id": "6616041457", "tags": ""}, {"datetaken": "2012-01-01 14:57:15", "license": "3", "title": "Two kinds", "text": "", "album_id": "72157628671377835", "longitude": "-70.797116", "url_o": "https://farm8.staticflickr.com/7024/6616042305_59b03e5406_o.jpg", "secret": "617fdc1497", "media": "photo", "latitude": "42.744577", "id": "6616042305", "tags": ""}, {"datetaken": "2012-01-01 15:09:53", "license": "3", "title": "Clayton from afar", "text": "", "album_id": "72157628671377835", "longitude": "-70.796107", "url_o": "https://farm8.staticflickr.com/7032/6616044629_0b8bf7e818_o.jpg", "secret": "95c7375ab3", "media": "photo", "latitude": "42.741402", "id": "6616044629", "tags": ""}, {"datetaken": "2012-01-01 15:10:04", "license": "3", "title": "On the walkway", "text": "", "album_id": "72157628671377835", "longitude": "-70.796107", "url_o": "https://farm8.staticflickr.com/7030/6616045169_9e90fa5267_o.jpg", "secret": "753a0bc01b", "media": "photo", "latitude": "42.741402", "id": "6616045169", "tags": ""}, {"datetaken": "2012-01-01 15:14:32", "license": "3", "title": "Looking out to the sea", "text": "", "album_id": "72157628671377835", "longitude": "-70.796107", "url_o": "https://farm8.staticflickr.com/7161/6616046037_98733a2385_o.jpg", "secret": "12cc4b638f", "media": "photo", "latitude": "42.741402", "id": "6616046037", "tags": ""}, {"datetaken": "2012-01-01 15:29:49", "license": "3", "title": "Busy as a", "text": "", "album_id": "72157628671377835", "longitude": "-70.796107", "url_o": "https://farm8.staticflickr.com/7016/6616047183_cd32972abb_o.jpg", "secret": "768f21641e", "media": "photo", "latitude": "42.741402", "id": "6616047183", "tags": ""}, {"datetaken": "2012-01-01 15:31:28", "license": "3", "title": "Green head", "text": "", "album_id": "72157628671377835", "longitude": "-70.796107", "url_o": "https://farm8.staticflickr.com/7004/6616047935_c8214595a6_o.jpg", "secret": "8a72e4c7ac", "media": "photo", "latitude": "42.741402", "id": "6616047935", "tags": ""}, {"datetaken": "2012-01-01 15:34:54", "license": "3", "title": "Half moon in the afternoon", "text": "", "album_id": "72157628671377835", "longitude": "-70.796107", "url_o": "https://farm8.staticflickr.com/7152/6616048783_125598d6f4_o.jpg", "secret": "87d075048a", "media": "photo", "latitude": "42.741402", "id": "6616048783", "tags": ""}, {"datetaken": "2012-01-01 16:16:50", "license": "3", "title": "And into the air I leap", "text": "", "album_id": "72157628671377835", "longitude": "-70.802083", "url_o": "https://farm8.staticflickr.com/7156/6616049313_8b8636b668_o.jpg", "secret": "acb988385e", "media": "photo", "latitude": "42.771927", "id": "6616049313", "tags": ""}, {"datetaken": "2012-01-01 16:17:11", "license": "3", "title": "Crazy legs", "text": "", "album_id": "72157628671377835", "longitude": "-70.802083", "url_o": "https://farm8.staticflickr.com/7150/6616050503_0de8058b22_o.jpg", "secret": "a60b6ec01f", "media": "photo", "latitude": "42.771927", "id": "6616050503", "tags": ""}, {"datetaken": "2012-01-01 16:21:27", "license": "3", "title": "Sand Graffiti", "text": "", "album_id": "72157628671377835", "longitude": "-70.802083", "url_o": "https://farm8.staticflickr.com/7150/6616053019_4b795d59bc_o.jpg", "secret": "c9c6ff485e", "media": "photo", "latitude": "42.771927", "id": "6616053019", "tags": ""}, {"datetaken": "2012-01-01 16:22:45", "license": "3", "title": "Ali at Sunset", "text": "", "album_id": "72157628671377835", "longitude": "-70.802083", "url_o": "https://farm8.staticflickr.com/7148/6616053831_692516b314_o.jpg", "secret": "c4ac54cc5f", "media": "photo", "latitude": "42.771927", "id": "6616053831", "tags": ""}, {"datetaken": "2012-01-01 16:25:41", "license": "3", "title": "Sea Foam", "text": "", "album_id": "72157628671377835", "longitude": "-70.802083", "url_o": "https://farm8.staticflickr.com/7151/6616054639_454457388f_o.jpg", "secret": "b15debd924", "media": "photo", "latitude": "42.771927", "id": "6616054639", "tags": ""}, {"datetaken": "2012-01-01 16:29:36", "license": "3", "title": "Dunes to the Sea", "text": "", "album_id": "72157628671377835", "longitude": "-70.802083", "url_o": "https://farm8.staticflickr.com/7014/6616056353_c4aa9434f7_o.jpg", "secret": "03b0bd3551", "media": "photo", "latitude": "42.771927", "id": "6616056353", "tags": ""}, {"datetaken": "2012-01-01 16:04:42", "license": "3", "title": "Early injury for Worcester - Ezra Taylor", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7147/6622212201_7b3e97d169_o.jpg", "secret": "a4b6d9c995", "media": "photo", "latitude": "51.630536", "id": "6622212201", "tags": "sports action rugby buckinghamshire injury knee wasps physio highwycombe number8 adamspark rugbyunion londonwasps worcesterwarriors canonef300mmf4lisusm canon7d avivapremiership anonef300mmf4lis ezrataylor stretcheredoff"}, {"datetaken": "2012-01-01 16:06:33", "license": "3", "title": "London Wasps", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7147/6622220143_03dbfd6dc3_o.jpg", "secret": "152f5e1aeb", "media": "photo", "latitude": "51.630536", "id": "6622220143", "tags": "sports team action rugby buckinghamshire wasps huddle highwycombe robwebber adamspark joesimpson rugbyunion rikiflutey samjones londonwasps worcesterwarriors timpayne canonef300mmf4lisusm tomvarndell benbroster dominicwaldouck richardbirkett canon7d elliotdaly avivapremiership christianwade marcowentzel jonathanpoff nicyrobinson tinusduplessis"}, {"datetaken": "2012-01-01 16:10:55", "license": "3", "title": "Joe Simpson", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7150/6622225775_35215c8c71_o.jpg", "secret": "d265335a79", "media": "photo", "latitude": "51.630536", "id": "6622225775", "tags": "sports action rugby buckinghamshire catch wasps highwycombe adamspark joesimpson rugbyunion londonwasps worcesterwarriors canonef300mmf4lisusm canon7d joecarlisle mattmullan avivapremiership johnnyarr anonef300mmf4lis"}, {"datetaken": "2012-01-01 16:10:58", "license": "3", "title": "Jonathan Poff", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7011/6622228967_b6edb824da_o.jpg", "secret": "31b4a3bfb1", "media": "photo", "latitude": "51.630536", "id": "6622228967", "tags": "sports action rugby buckinghamshire wasps highwycombe adamspark rugbyunion flanker londonwasps worcesterwarriors canonef300mmf4lisusm openside canon7d avivapremiership anonef300mmf4lis jonathanpoff"}, {"datetaken": "2012-01-01 16:13:20", "license": "3", "title": "Elliot Daly", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7009/6622234997_8ed7d7d20a_o.jpg", "secret": "bc9caab5d0", "media": "photo", "latitude": "51.630536", "id": "6622234997", "tags": "sports action rugby buckinghamshire wasps highwycombe fullback adamspark rugbyunion londonwasps worcesterwarriors canonef300mmf4lisusm canon7d elliotdaly avivapremiership anonef300mmf4lis"}, {"datetaken": "2012-01-01 16:15:53", "license": "3", "title": "Lineout - Marco Wentzel", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7165/6622244495_af47e5aa5a_o.jpg", "secret": "85fd9b19ea", "media": "photo", "latitude": "51.630536", "id": "6622244495", "tags": "sports action rugby buckinghamshire wasps lineout highwycombe robwebber adamspark joesimpson rugbyunion samjones londonwasps worcesterwarriors timpayne canonef300mmf4lisusm richardbirkett canon7d avivapremiership marcowentzel anonef300mmf4lis"}, {"datetaken": "2012-01-01 16:18:28", "license": "3", "title": "Lineout - Jonathan Poff", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7017/6622248475_379843d1fb_o.jpg", "secret": "ede6533980", "media": "photo", "latitude": "51.630536", "id": "6622248475", "tags": "sports action rugby buckinghamshire wasps lineout highwycombe adamspark rugbyunion londonwasps worcesterwarriors timpayne canonef300mmf4lisusm canon7d avivapremiership anonef300mmf4lis jonathanpoff"}, {"datetaken": "2012-01-01 16:18:54", "license": "3", "title": "Joe Simpson", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7005/6622253435_e95815cb4b_o.jpg", "secret": "51bc2c1bf5", "media": "photo", "latitude": "51.630536", "id": "6622253435", "tags": "sports action rugby buckinghamshire wasps highwycombe adamspark joesimpson rugbyunion londonwasps worcesterwarriors timpayne canonef300mmf4lisusm canon7d avivapremiership anonef300mmf4lis"}, {"datetaken": "2012-01-01 16:22:25", "license": "3", "title": "Elliot Daly", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7021/6622348423_c0f4a6a28b_o.jpg", "secret": "cbbc7763a6", "media": "photo", "latitude": "51.630536", "id": "6622348423", "tags": "sports action rugby buckinghamshire wasps highwycombe fullback adamspark rugbyunion londonwasps worcesterwarriors canonef300mmf4lisusm canon7d elliotdaly avivapremiership anonef300mmf4lis"}, {"datetaken": "2012-01-01 16:27:18", "license": "3", "title": "Tackle - Elliot Daly and Marco Wentzel", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7007/6622260071_310d7dbca1_o.jpg", "secret": "e0440a0b70", "media": "photo", "latitude": "51.630536", "id": "6622260071", "tags": "sports action rugby buckinghamshire wasps tackle highwycombe adamspark joesimpson rugbyunion londonwasps worcesterwarriors canonef300mmf4lisusm canon7d elliotdaly avivapremiership marcowentzel anonef300mmf4lis"}, {"datetaken": "2012-01-01 16:27:26", "license": "3", "title": "Miles Benjamin", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7033/6622269353_5474ec8f84_o.jpg", "secret": "911c771eb0", "media": "photo", "latitude": "51.630536", "id": "6622269353", "tags": "sports action rugby buckinghamshire wasps highwycombe adamspark rugbyunion londonwasps worcesterwarriors canonef300mmf4lisusm milesbenjamin canon7d avivapremiership anonef300mmf4lis"}, {"datetaken": "2012-01-01 16:29:35", "license": "3", "title": "Catch - Joe Simpson", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7150/6622367275_b1df1e30c5_o.jpg", "secret": "35deb652d5", "media": "photo", "latitude": "51.630536", "id": "6622367275", "tags": "sports action rugby buckinghamshire catch wasps highwycombe adamspark joesimpson rugbyunion londonwasps worcesterwarriors canonef300mmf4lisusm chrispennell canon7d avivapremiership christianwade anonef300mmf4lis"}, {"datetaken": "2012-01-01 16:33:11", "license": "3", "title": "Charge Down - Joe Simpson", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7160/6622375065_ae09478b7b_o.jpg", "secret": "2e7c35656e", "media": "photo", "latitude": "51.630536", "id": "6622375065", "tags": "sports action kick rugby buckinghamshire wasps highwycombe adamspark joesimpson rugbyunion londonwasps worcesterwarriors canonef300mmf4lisusm chargedown chrispennell canon7d avivapremiership anonef300mmf4lis"}, {"datetaken": "2012-01-01 16:35:07", "license": "3", "title": "Elliot Daly taken in the air", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7010/6622372269_5748cda9d9_o.jpg", "secret": "036bbd47cd", "media": "photo", "latitude": "51.630536", "id": "6622372269", "tags": "sports action rugby buckinghamshire catch wasps foul highwycombe adamspark rugbyunion rikiflutey londonwasps worcesterwarriors canonef300mmf4lisusm canon7d elliotdaly avivapremiership christianwade anonef300mmf4lis"}, {"datetaken": "2012-01-01 16:48:31", "license": "3", "title": "A talking to", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7025/6622275571_3ca272596d_o.jpg", "secret": "c13f4aa995", "media": "photo", "latitude": "51.630536", "id": "6622275571", "tags": "sports action rugby buckinghamshire handbags wasps foul highwycombe adamspark joesimpson rugbyunion londonwasps worcesterwarriors canonef300mmf4lisusm chrispennell canon7d waynebarnes avivapremiership marcowentzel anonef300mmf4lis"}, {"datetaken": "2012-01-01 16:52:12", "license": "3", "title": "Tom Varndell", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7013/6622287789_036e2652fe_o.jpg", "secret": "f04907b0fe", "media": "photo", "latitude": "51.630536", "id": "6622287789", "tags": "sports action rugby buckinghamshire wasps highwycombe adamspark rugbyunion rikiflutey londonwasps worcesterwarriors canonef300mmf4lisusm tomvarndell milesbenjamin canon7d avivapremiership mattkvesic anonef300mmf4lis"}, {"datetaken": "2012-01-01 16:52:13", "license": "3", "title": "Tom Varndell", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7005/6622294487_7b263b1737_o.jpg", "secret": "e584539906", "media": "photo", "latitude": "51.630536", "id": "6622294487", "tags": "sports action rugby buckinghamshire wasps highwycombe winger adamspark rugbyunion londonwasps worcesterwarriors canonef300mmf4lisusm tomvarndell canon7d avivapremiership"}, {"datetaken": "2012-01-01 17:12:59", "license": "3", "title": "Elliot Daly", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7023/6622298695_907e0fa128_o.jpg", "secret": "d7d48c5849", "media": "photo", "latitude": "51.630536", "id": "6622298695", "tags": "sports action rugby buckinghamshire wasps highwycombe fullback adamspark rugbyunion londonwasps worcesterwarriors canonef300mmf4lisusm canon7d elliotdaly avivapremiership anonef300mmf4lis"}, {"datetaken": "2012-01-01 17:23:22", "license": "3", "title": "Sam Jones", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7002/6622314643_a037946854_o.jpg", "secret": "230e56e3cb", "media": "photo", "latitude": "51.630536", "id": "6622314643", "tags": "sports action rugby buckinghamshire wasps lineout highwycombe adamspark rugbyunion samjones londonwasps worcesterwarriors timpayne canonef300mmf4lisusm richardbirkett canon7d avivapremiership marcowentzel anonef300mmf4lis"}, {"datetaken": "2012-01-01 17:24:53", "license": "3", "title": "Chris Mayor", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7023/6622320919_c493361140_o.jpg", "secret": "fb3224c021", "media": "photo", "latitude": "51.630536", "id": "6622320919", "tags": "sports dale action rugby buckinghamshire rasmussen wasps highwycombe robwebber adamspark joesimpson rugbyunion londonwasps worcesterwarriors ryandavis canonef300mmf4lisusm canon7d waynebarnes chrismayor avivapremiership anonef300mmf4lis"}, {"datetaken": "2012-01-01 17:26:26", "license": "3", "title": "Riki Flutey", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7152/6622327107_a12cf6a6b5_o.jpg", "secret": "7e17968809", "media": "photo", "latitude": "51.630536", "id": "6622327107", "tags": "sports action rugby buckinghamshire wasps highwycombe adamspark rugbyunion rikiflutey londonwasps worcesterwarriors ryandavis canonef300mmf4lisusm canon7d joecarlisle jakeabbott avivapremiership mattkvesic anonef300mmf4lis"}, {"datetaken": "2012-01-01 17:31:17", "license": "3", "title": "Tackle - Dominic Waldouck", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7011/6622352683_4563c7baa1_o.jpg", "secret": "56b1eb4918", "media": "photo", "latitude": "51.630536", "id": "6622352683", "tags": "sports action rugby buckinghamshire wasps tackle highwycombe adamspark rugbyunion londonwasps worcesterwarriors canonef300mmf4lisusm dominicwaldouck milesbenjamin canon7d joecarlisle mattmullan chrismayor avivapremiership anonef300mmf4lis"}, {"datetaken": "2012-01-01 17:37:01", "license": "3", "title": "\"Wasn't Me\"", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7161/6622363181_ca668f4c95_o.jpg", "secret": "e781cfcd2a", "media": "photo", "latitude": "51.630536", "id": "6622363181", "tags": "sports action rugby buckinghamshire wasps highwycombe discipline adamspark rugbyunion londonwasps worcesterwarriors canonef300mmf4lisusm marcelgarvey jamespercival canon7d avivapremiership anonef300mmf4lis"}, {"datetaken": "2012-01-01 17:38:42", "license": "3", "title": "Binding", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7165/6622337957_1713c3c781_o.jpg", "secret": "4fc64723b7", "media": "photo", "latitude": "51.630536", "id": "6622337957", "tags": "sports action rugby buckinghamshire wasps binding scrum highwycombe robwebber adamspark rugbyunion londonwasps worcesterwarriors timpayne canonef300mmf4lisusm jamespercival canon7d avivapremiership mattkvesic anonef300mmf4lis tinusduplessis"}, {"datetaken": "2012-01-01 17:44:41", "license": "3", "title": "Nick Berry", "text": "", "album_id": "72157628685616919", "longitude": "-0.800169", "url_o": "https://farm8.staticflickr.com/7003/6622341743_4b2458e667_o.jpg", "secret": "c56e25a5d2", "media": "photo", "latitude": "51.630536", "id": "6622341743", "tags": "sports action rugby buckinghamshire wasps highwycombe adamspark rugbyunion nickberry scrumhalf londonwasps worcesterwarriors canonef300mmf4lisusm canon7d avivapremiership anonef300mmf4lis"}, {"datetaken": "2011-12-31 17:23:36", "license": "1", "title": "Liquid city", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7162/6611991737_f8420bc7e2_o.jpg", "secret": "9e05bd2452", "media": "photo", "latitude": "0", "id": "6611991737", "tags": "london noir shoreditch newyearseve bricklane spitalfields cityoflondon"}, {"datetaken": "2011-12-31 17:40:34", "license": "1", "title": "Ascenseur", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7146/6611994035_a185eb6836_o.jpg", "secret": "613ec674d9", "media": "photo", "latitude": "0", "id": "6611994035", "tags": "london noir shoreditch newyearseve bricklane spitalfields cityoflondon"}, {"datetaken": "2011-12-31 17:45:26", "license": "1", "title": "GENTLEMEN", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7154/6612002195_fb20bb35dd_o.jpg", "secret": "30d9fe0ddc", "media": "photo", "latitude": "0", "id": "6612002195", "tags": "london noir shoreditch newyearseve bricklane spitalfields cityoflondon"}, {"datetaken": "2011-12-31 17:47:21", "license": "1", "title": "ECITON", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7027/6612005227_f4c661173c_o.jpg", "secret": "d5c1a94eef", "media": "photo", "latitude": "0", "id": "6612005227", "tags": "london noir shoreditch newyearseve bricklane spitalfields cityoflondon"}, {"datetaken": "2011-12-31 17:53:42", "license": "1", "title": "Painting with", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7034/6612007063_79a68d9f3f_o.jpg", "secret": "84e0c68ef8", "media": "photo", "latitude": "0", "id": "6612007063", "tags": "christchurch london noir shoreditch newyearseve bricklane spitalfields hawksmoor cityoflondon"}, {"datetaken": "2011-12-31 17:53:51", "license": "1", "title": "Invader", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7023/6612009053_31fb51edb4_o.jpg", "secret": "f72265ca81", "media": "photo", "latitude": "0", "id": "6612009053", "tags": "christchurch london noir shoreditch newyearseve bricklane spitalfields hawksmoor cityoflondon"}, {"datetaken": "2011-12-31 17:54:00", "license": "1", "title": "Impasto", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7141/6612010987_ab9528c508_o.jpg", "secret": "fa05a6696b", "media": "photo", "latitude": "0", "id": "6612010987", "tags": "christchurch london noir shoreditch newyearseve bricklane spitalfields hawksmoor cityoflondon"}, {"datetaken": "2011-12-31 17:54:40", "license": "1", "title": "Light cage", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7162/6612013333_d85bf41c0a_o.jpg", "secret": "e9565dc736", "media": "photo", "latitude": "0", "id": "6612013333", "tags": "christchurch london noir shoreditch newyearseve bricklane spitalfields hawksmoor cityoflondon"}, {"datetaken": "2011-12-31 17:56:23", "license": "1", "title": "Street light", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6612014841_d956291742_o.jpg", "secret": "38eb346fda", "media": "photo", "latitude": "0", "id": "6612014841", "tags": "london noir shoreditch newyearseve bricklane spitalfields cityoflondon"}, {"datetaken": "2011-12-31 18:16:40", "license": "1", "title": "Glance", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7028/6612017623_f1fbb8dddb_o.jpg", "secret": "759f0bd95a", "media": "photo", "latitude": "0", "id": "6612017623", "tags": "london noir shoreditch newyearseve bricklane spitalfields cityoflondon"}, {"datetaken": "2011-12-31 18:18:37", "license": "1", "title": "WEAK BRIDGE", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7142/6612020217_5c9cabda56_o.jpg", "secret": "2fc800b927", "media": "photo", "latitude": "0", "id": "6612020217", "tags": "london noir shoreditch newyearseve bricklane spitalfields cityoflondon"}, {"datetaken": "2011-12-31 18:20:37", "license": "1", "title": "Iron frame", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7013/6612022519_606068fcd4_o.jpg", "secret": "e696596cdf", "media": "photo", "latitude": "0", "id": "6612022519", "tags": "london noir shoreditch newyearseve bricklane spitalfields cityoflondon"}, {"datetaken": "2011-12-31 18:21:16", "license": "1", "title": "Black metal", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7005/6612026171_4f5c3dfcfb_o.jpg", "secret": "51161b2cd6", "media": "photo", "latitude": "0", "id": "6612026171", "tags": "london noir shoreditch newyearseve bricklane spitalfields cityoflondon"}, {"datetaken": "2011-12-31 18:21:44", "license": "1", "title": "Ghost train", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7013/6612029289_d599825972_o.jpg", "secret": "a8e3eb0b90", "media": "photo", "latitude": "0", "id": "6612029289", "tags": "london noir shoreditch newyearseve bricklane spitalfields cityoflondon"}, {"datetaken": "2011-12-31 18:22:30", "license": "1", "title": "Noir set", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7026/6612031847_34d747fb33_o.jpg", "secret": "e1388e879f", "media": "photo", "latitude": "0", "id": "6612031847", "tags": "london noir shoreditch newyearseve bricklane spitalfields cityoflondon"}, {"datetaken": "2011-12-31 18:23:01", "license": "1", "title": "Night walk", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7149/6612035579_37b48d088d_o.jpg", "secret": "b9e73512c1", "media": "photo", "latitude": "0", "id": "6612035579", "tags": "london noir shoreditch newyearseve bricklane spitalfields cityoflondon"}, {"datetaken": "2011-12-31 18:23:24", "license": "1", "title": "Colour scene", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7146/6612039927_d8d88849ed_o.jpg", "secret": "a00e2fb842", "media": "photo", "latitude": "0", "id": "6612039927", "tags": "london noir shoreditch newyearseve bricklane spitalfields cityoflondon"}, {"datetaken": "2011-12-31 18:27:47", "license": "1", "title": "BAR people", "text": "", "album_id": "72157628662080341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7164/6612044291_fbe7f77cb0_o.jpg", "secret": "d14be17bb5", "media": "photo", "latitude": "0", "id": "6612044291", "tags": "spitalfields"}, {"datetaken": "2012-01-01 19:55:39", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7146/6614004589_d81c3e9d0a_o.jpg", "secret": "32dc5f89be", "media": "photo", "latitude": "0", "id": "6614004589", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 19:57:39", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7169/6614030671_a8f3a43fc6_o.jpg", "secret": "203eb12845", "media": "photo", "latitude": "0", "id": "6614030671", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 19:58:52", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7029/6614043583_40bb81143a_o.jpg", "secret": "cbdc23a0f1", "media": "photo", "latitude": "0", "id": "6614043583", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 19:58:59", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7030/6614058877_9e07def423_o.jpg", "secret": "e9f4b00dc9", "media": "photo", "latitude": "0", "id": "6614058877", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 19:59:49", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7003/6614072879_e2189cf851_o.jpg", "secret": "f662c926dd", "media": "photo", "latitude": "0", "id": "6614072879", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 20:03:11", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7014/6614091753_0c52b26dde_o.jpg", "secret": "3614289bc0", "media": "photo", "latitude": "0", "id": "6614091753", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 20:04:04", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7028/6614105651_0c58032eb6_o.jpg", "secret": "0cf105ec25", "media": "photo", "latitude": "0", "id": "6614105651", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 20:05:29", "license": "1", "title": "From where I stand", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7032/6614121539_1db3d09d3b_o.jpg", "secret": "3fe091c9d3", "media": "photo", "latitude": "0", "id": "6614121539", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 20:06:23", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7018/6614134701_2a41f294bb_o.jpg", "secret": "d32b961bd5", "media": "photo", "latitude": "0", "id": "6614134701", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 20:06:37", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7029/6614146319_65d48e5af0_o.jpg", "secret": "6f475e407a", "media": "photo", "latitude": "0", "id": "6614146319", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 20:08:02", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7016/6614163791_0152a23160_o.jpg", "secret": "be15a13f6b", "media": "photo", "latitude": "0", "id": "6614163791", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 20:09:01", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7028/6614180547_8804ba35fe_o.jpg", "secret": "bde9492479", "media": "photo", "latitude": "0", "id": "6614180547", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 20:09:47", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6614199031_7daf0d7bc2_o.jpg", "secret": "03f3231268", "media": "photo", "latitude": "0", "id": "6614199031", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 20:16:29", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7029/6614211847_95c79f1eeb_o.jpg", "secret": "3e7a99fe0a", "media": "photo", "latitude": "0", "id": "6614211847", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 20:18:51", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7152/6614243773_79739afff2_o.jpg", "secret": "bf4a49e4ac", "media": "photo", "latitude": "0", "id": "6614243773", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 20:19:00", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7017/6614260287_60ddd835fc_o.jpg", "secret": "3ceeb3be95", "media": "photo", "latitude": "0", "id": "6614260287", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 20:20:14", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7157/6614289853_5411720738_o.jpg", "secret": "d521b3e772", "media": "photo", "latitude": "0", "id": "6614289853", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 20:20:50", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7028/6614308277_c932b1b413_o.jpg", "secret": "d54279b50d", "media": "photo", "latitude": "0", "id": "6614308277", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 20:23:38", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7142/6614322315_3ac0e473a8_o.jpg", "secret": "4672a0191d", "media": "photo", "latitude": "0", "id": "6614322315", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 20:33:55", "license": "1", "title": "Evidence", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7163/6614340199_6f8d02b136_o.jpg", "secret": "28ea81e5a0", "media": "photo", "latitude": "0", "id": "6614340199", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 20:34:38", "license": "1", "title": "Evidence", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7149/6614350627_c5d69d53d3_o.jpg", "secret": "9fde5e245c", "media": "photo", "latitude": "0", "id": "6614350627", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 20:35:11", "license": "1", "title": "Frogner Park", "text": "", "album_id": "72157628666827543", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7153/6614364495_dd0381ef86_o.jpg", "secret": "4cec61a779", "media": "photo", "latitude": "0", "id": "6614364495", "tags": "frognerpark locationnorwayoslofrognerpark"}, {"datetaken": "2012-01-01 05:52:25", "license": "4", "title": "Girls during Fremont Street Experience", "text": "", "album_id": "72157628670921099", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7145/6615804279_e2e2d7da02_o.jpg", "secret": "5f9693e4f2", "media": "photo", "latitude": "0", "id": "6615804279", "tags": "show las vegas metal fremont experience steelpanther"}, {"datetaken": "2012-01-01 08:12:27", "license": "4", "title": "Steel Panther", "text": "", "album_id": "72157628670921099", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7153/6615792751_bc22e78b2f_o.jpg", "secret": "d614a450a3", "media": "photo", "latitude": "0", "id": "6615792751", "tags": "show las vegas metal fremont experience steelpanther"}, {"datetaken": "2012-01-01 08:12:28", "license": "4", "title": "Steel Panther", "text": "", "album_id": "72157628670921099", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7142/6615793473_951781bbf8_o.jpg", "secret": "5e74b35646", "media": "photo", "latitude": "0", "id": "6615793473", "tags": "show las vegas metal fremont experience steelpanther"}, {"datetaken": "2012-01-01 08:15:57", "license": "4", "title": "Steel Panther", "text": "", "album_id": "72157628670921099", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7029/6615795201_643fd09910_o.jpg", "secret": "c4c6297c30", "media": "photo", "latitude": "0", "id": "6615795201", "tags": "show las vegas metal fremont experience steelpanther"}, {"datetaken": "2012-01-01 08:27:07", "license": "4", "title": "Steel Panther", "text": "", "album_id": "72157628670921099", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7173/6615794179_d30eb0a58f_o.jpg", "secret": "22cce51987", "media": "photo", "latitude": "0", "id": "6615794179", "tags": "show las vegas metal fremont experience steelpanther"}, {"datetaken": "2012-01-01 08:29:55", "license": "4", "title": "Steel Panther", "text": "", "album_id": "72157628670921099", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7164/6615796041_238659e32f_o.jpg", "secret": "10f5b7629a", "media": "photo", "latitude": "0", "id": "6615796041", "tags": "show las vegas metal fremont experience steelpanther"}, {"datetaken": "2012-01-01 08:30:08", "license": "4", "title": "Steel Panther", "text": "", "album_id": "72157628670921099", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7173/6615796879_451e0814d4_o.jpg", "secret": "c3c65db91c", "media": "photo", "latitude": "0", "id": "6615796879", "tags": "show las vegas metal fremont experience steelpanther"}, {"datetaken": "2012-01-01 08:32:00", "license": "4", "title": "Steel Panther", "text": "", "album_id": "72157628670921099", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7030/6615797821_9397bbf652_o.jpg", "secret": "48b935667b", "media": "photo", "latitude": "0", "id": "6615797821", "tags": "show las vegas metal fremont experience steelpanther"}, {"datetaken": "2012-01-01 08:42:26", "license": "4", "title": "Steel Panther", "text": "", "album_id": "72157628670921099", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6615798721_ce8fec1696_o.jpg", "secret": "da4146cebc", "media": "photo", "latitude": "0", "id": "6615798721", "tags": "show las vegas metal fremont experience steelpanther"}, {"datetaken": "2012-01-01 09:19:45", "license": "4", "title": "Steel Panther", "text": "", "album_id": "72157628670921099", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7002/6615799647_283f60f8dc_o.jpg", "secret": "c276f76007", "media": "photo", "latitude": "0", "id": "6615799647", "tags": "show las vegas metal fremont experience steelpanther"}, {"datetaken": "2012-01-01 09:22:46", "license": "4", "title": "Steel Panther", "text": "", "album_id": "72157628670921099", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7004/6615800561_632dc60c2e_o.jpg", "secret": "f3fee46055", "media": "photo", "latitude": "0", "id": "6615800561", "tags": "show las vegas metal fremont experience steelpanther"}, {"datetaken": "2012-01-01 09:26:08", "license": "4", "title": "Steel Panther", "text": "", "album_id": "72157628670921099", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7034/6615801151_b6a2d50605_o.jpg", "secret": "31be5d2507", "media": "photo", "latitude": "0", "id": "6615801151", "tags": "show las vegas metal fremont experience steelpanther"}, {"datetaken": "2012-01-01 09:26:23", "license": "4", "title": "Steel Panther", "text": "", "album_id": "72157628670921099", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7008/6615801923_3fcc4fd3a0_o.jpg", "secret": "07acaa915b", "media": "photo", "latitude": "0", "id": "6615801923", "tags": "show las vegas metal fremont experience steelpanther"}, {"datetaken": "2012-01-01 09:48:58", "license": "4", "title": "Steel Panther", "text": "", "album_id": "72157628670921099", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7012/6615802561_ed69a53c51_o.jpg", "secret": "6b5f618544", "media": "photo", "latitude": "0", "id": "6615802561", "tags": "show las vegas metal fremont experience steelpanther"}, {"datetaken": "2012-01-01 15:34:35", "license": "4", "title": "Girl on podium", "text": "", "album_id": "72157628670921099", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7029/6615803365_91b343a004_o.jpg", "secret": "e42b335f60", "media": "photo", "latitude": "0", "id": "6615803365", "tags": "show las vegas metal fremont experience steelpanther"}, {"datetaken": "2011-12-31 20:51:12", "license": "1", "title": "New Years Eve 03", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7173/6617573703_0571cd9a0b_o.jpg", "secret": "4747e82ec6", "media": "photo", "latitude": "0", "id": "6617573703", "tags": "night newyearseve hollow longexposures"}, {"datetaken": "2011-12-31 20:57:08", "license": "1", "title": "New Years Eve 02", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7009/6617568849_dc2e517d8e_o.jpg", "secret": "7e26669b47", "media": "photo", "latitude": "0", "id": "6617568849", "tags": "night newyearseve hollow longexposures"}, {"datetaken": "2011-12-31 22:34:32", "license": "1", "title": "New Years Eve 04", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7159/6617580367_cf43f19013_o.jpg", "secret": "e812719dd5", "media": "photo", "latitude": "0", "id": "6617580367", "tags": "night sparklers newyearseve hollow longexposures"}, {"datetaken": "2011-12-31 22:44:08", "license": "1", "title": "New Years Eve 05", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7032/6617585839_8402af63e7_o.jpg", "secret": "f3af2df58a", "media": "photo", "latitude": "0", "id": "6617585839", "tags": "night newyearseve hollow longexposures"}, {"datetaken": "2012-01-01 00:01:37", "license": "1", "title": "New Years Eve 01", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7141/6617558595_032c37356e_o.jpg", "secret": "4f8b5e5203", "media": "photo", "latitude": "0", "id": "6617558595", "tags": "night newyearseve hollow longexposures"}, {"datetaken": "2012-01-01 00:14:46", "license": "1", "title": "New Years Eve 06", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7175/6617596633_58aed1c5e0_o.jpg", "secret": "2ed6695212", "media": "photo", "latitude": "0", "id": "6617596633", "tags": "night newyearseve hollow longexposures"}, {"datetaken": "2012-01-01 01:44:54", "license": "1", "title": "New Years Eve 08", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7164/6617608591_cd60836620_o.jpg", "secret": "1f9fed0f4a", "media": "photo", "latitude": "0", "id": "6617608591", "tags": "night fireworks sparklers newyearseve hollow longexposures"}, {"datetaken": "2012-01-01 02:02:23", "license": "1", "title": "New Years Eve 07", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7154/6617626033_d05e869013_o.jpg", "secret": "d7a2c7b377", "media": "photo", "latitude": "0", "id": "6617626033", "tags": "night fireworks sparklers newyearseve hollow longexposures"}, {"datetaken": "2012-01-01 02:04:47", "license": "1", "title": "New Years Eve 11", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7009/6617642675_c706ab33dd_o.jpg", "secret": "10373eb866", "media": "photo", "latitude": "0", "id": "6617642675", "tags": "night newyearseve hollow longexposures"}, {"datetaken": "2012-01-01 02:24:06", "license": "1", "title": "New Years Eve 10", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7174/6617633279_2bdabbf010_o.jpg", "secret": "18bae8d30b", "media": "photo", "latitude": "0", "id": "6617633279", "tags": "night fireworks sparklers newyearseve hollow longexposures"}, {"datetaken": "2012-01-01 02:26:15", "license": "1", "title": "New Years Eve 09", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7146/6617613653_b175e13c77_o.jpg", "secret": "7da9f348dc", "media": "photo", "latitude": "0", "id": "6617613653", "tags": "night fireworks sparklers newyearseve hollow longexposures"}, {"datetaken": "2012-01-01 02:51:41", "license": "1", "title": "New Years Eve 12", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7002/6617651973_c413215b52_o.jpg", "secret": "eddf3c62b5", "media": "photo", "latitude": "0", "id": "6617651973", "tags": "night fireworks sparklers newyearseve hollow longexposures"}, {"datetaken": "2012-01-01 02:55:04", "license": "1", "title": "New Years Eve 13", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7034/6617663459_404734a4b3_o.jpg", "secret": "1623282eb8", "media": "photo", "latitude": "0", "id": "6617663459", "tags": "night fireworks sparklers newyearseve hollow longexposures"}, {"datetaken": "2012-01-01 02:56:01", "license": "1", "title": "New Years Eve 14", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7141/6617672299_8f5f368ff6_o.jpg", "secret": "b5a9089b30", "media": "photo", "latitude": "0", "id": "6617672299", "tags": "night fireworks sparklers newyearseve hollow longexposures"}, {"datetaken": "2012-01-01 03:15:16", "license": "1", "title": "New Years Eve 16", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7170/6617693287_43faa9c4a0_o.jpg", "secret": "cdbf867ccd", "media": "photo", "latitude": "0", "id": "6617693287", "tags": "night fireworks sparklers newyearseve hollow longexposures"}, {"datetaken": "2012-01-01 03:23:07", "license": "1", "title": "New Years Eve 15", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7142/6617683667_045c3456cf_o.jpg", "secret": "1c405d988c", "media": "photo", "latitude": "0", "id": "6617683667", "tags": "night newyearseve hollow longexposures"}, {"datetaken": "2012-01-01 03:25:25", "license": "1", "title": "New Years Eve 17", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7157/6617704439_82b85a7d74_o.jpg", "secret": "a99d654719", "media": "photo", "latitude": "0", "id": "6617704439", "tags": "night fireworks sparklers newyearseve hollow longexposures"}, {"datetaken": "2012-01-01 03:36:45", "license": "1", "title": "New Years Eve 18", "text": "", "album_id": "72157628674795963", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7157/6617711545_ef4e2b8d2e_o.jpg", "secret": "ffc7eca732", "media": "photo", "latitude": "0", "id": "6617711545", "tags": "night fireworks sparklers newyearseve hollow longexposures"}, {"datetaken": "2012-12-31 22:57:11", "license": "6", "title": "DSC_0510", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8495/8334694236_a3aca3c6ed_o.jpg", "secret": "0f789fbf6a", "media": "photo", "latitude": "0", "id": "8334694236", "tags": "new eve years 2012"}, {"datetaken": "2012-12-31 22:57:16", "license": "6", "title": "DSC_0511", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8078/8333638083_769a60835c_o.jpg", "secret": "74fbfb566c", "media": "photo", "latitude": "0", "id": "8333638083", "tags": "new eve years 2012"}, {"datetaken": "2012-12-31 22:57:20", "license": "6", "title": "DSC_0512", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8073/8334696864_6bfe3608f1_o.jpg", "secret": "463686aa0f", "media": "photo", "latitude": "0", "id": "8334696864", "tags": "new eve years 2012"}, {"datetaken": "2012-12-31 23:02:40", "license": "6", "title": "DSC_0514", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8214/8334697904_00c52c9d82_o.jpg", "secret": "357c99b08b", "media": "photo", "latitude": "0", "id": "8334697904", "tags": "new eve years 2012"}, {"datetaken": "2012-12-31 23:02:52", "license": "6", "title": "DSC_0515", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8504/8333641823_dc94605de2_o.jpg", "secret": "e1d3a1923d", "media": "photo", "latitude": "0", "id": "8333641823", "tags": "new eve years 2012"}, {"datetaken": "2012-12-31 23:03:11", "license": "6", "title": "DSC_0516", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8213/8333644045_a6e0c78e92_o.jpg", "secret": "aef0682d5f", "media": "photo", "latitude": "0", "id": "8333644045", "tags": "new eve years 2012"}, {"datetaken": "2012-12-31 23:03:15", "license": "6", "title": "DSC_0517", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8498/8333645455_a1cb6ca447_o.jpg", "secret": "13330e1fc6", "media": "photo", "latitude": "0", "id": "8333645455", "tags": "new eve years 2012"}, {"datetaken": "2012-12-31 23:04:31", "license": "6", "title": "DSC_0519", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8224/8333646653_0ee8e99184_o.jpg", "secret": "81dda6f609", "media": "photo", "latitude": "0", "id": "8333646653", "tags": "new eve years 2012"}, {"datetaken": "2012-12-31 23:07:09", "license": "6", "title": "DSC_0520", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8363/8334705680_a2c0eacb08_o.jpg", "secret": "2a50b2d3e6", "media": "photo", "latitude": "0", "id": "8334705680", "tags": "new eve years 2012"}, {"datetaken": "2012-12-31 23:07:16", "license": "6", "title": "DSC_0521", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8219/8334706984_0391f518e0_o.jpg", "secret": "7bbafc0c6c", "media": "photo", "latitude": "0", "id": "8334706984", "tags": "new eve years 2012"}, {"datetaken": "2012-12-31 23:34:15", "license": "6", "title": "DSC_0522", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8351/8333650481_0b1be172ff_o.jpg", "secret": "fd5f3d1132", "media": "photo", "latitude": "0", "id": "8333650481", "tags": "new eve years 2012"}, {"datetaken": "2012-12-31 23:39:03", "license": "6", "title": "DSC_0523", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8361/8333653277_1bb2373589_o.jpg", "secret": "91b91b27e5", "media": "photo", "latitude": "0", "id": "8333653277", "tags": "new eve years 2012"}, {"datetaken": "2012-12-31 23:55:05", "license": "6", "title": "DSC_0524", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8500/8333654261_18a049e43d_o.jpg", "secret": "8da72f26eb", "media": "photo", "latitude": "0", "id": "8333654261", "tags": "new eve years 2012"}, {"datetaken": "2012-12-31 23:55:10", "license": "6", "title": "DSC_0525", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8354/8333655485_b47020a639_o.jpg", "secret": "e7d0e970e3", "media": "photo", "latitude": "0", "id": "8333655485", "tags": "new eve years 2012"}, {"datetaken": "2013-01-01 00:04:42", "license": "6", "title": "DSC_0526", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8353/8333655991_10fc7d8caf_o.jpg", "secret": "f57041c1a0", "media": "photo", "latitude": "0", "id": "8333655991", "tags": "new eve years 2012"}, {"datetaken": "2013-01-01 00:04:53", "license": "6", "title": "DSC_0527", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8082/8334714156_efdb448b99_o.jpg", "secret": "9ceff41c15", "media": "photo", "latitude": "0", "id": "8334714156", "tags": "new eve years 2012"}, {"datetaken": "2013-01-01 00:05:00", "license": "6", "title": "DSC_0528", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8361/8334715112_7d716f6358_o.jpg", "secret": "c77266b406", "media": "photo", "latitude": "0", "id": "8334715112", "tags": "new eve years 2012"}, {"datetaken": "2013-01-01 00:13:52", "license": "6", "title": "DSC_0531", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8353/8334715906_7c669d998c_o.jpg", "secret": "7105f2bff7", "media": "photo", "latitude": "0", "id": "8334715906", "tags": "new eve years 2012"}, {"datetaken": "2013-01-01 00:14:44", "license": "6", "title": "DSC_0532", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8504/8334716838_13b2a87804_o.jpg", "secret": "33a3f4476e", "media": "photo", "latitude": "0", "id": "8334716838", "tags": "new eve years 2012"}, {"datetaken": "2013-01-01 00:35:26", "license": "6", "title": "DSC_0533", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8353/8334717954_760a761955_o.jpg", "secret": "0504d5213d", "media": "photo", "latitude": "0", "id": "8334717954", "tags": "new eve years 2012"}, {"datetaken": "2013-01-01 00:36:28", "license": "6", "title": "DSC_0535", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8221/8334720480_4e98fee50e_o.jpg", "secret": "46a8cb62de", "media": "photo", "latitude": "0", "id": "8334720480", "tags": "new eve years 2012"}, {"datetaken": "2013-01-01 00:39:53", "license": "6", "title": "DSC_0537", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8224/8334722810_14c390bb3d_o.jpg", "secret": "f9e03033af", "media": "photo", "latitude": "0", "id": "8334722810", "tags": "new eve years 2012"}, {"datetaken": "2013-01-01 00:39:59", "license": "6", "title": "DSC_0538", "text": "", "album_id": "72157632405596244", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8081/8333666945_49f0946e20_o.jpg", "secret": "998cb36d5f", "media": "photo", "latitude": "0", "id": "8333666945", "tags": "new eve years 2012"}, {"datetaken": "2012-12-31 18:08:38", "license": "3", "title": "\"As you embrace the present... (366/366 Dec. 31, 2012)", "text": "", "album_id": "72157632405642272", "longitude": "24.807610", "url_o": "https://farm9.staticflickr.com/8211/8333623867_6c1d5d5d6e_o.jpg", "secret": "e2d84f105b", "media": "photo", "latitude": "60.178498", "id": "8333623867", "tags": "espoo finland joy newyearseve tapiola project365 3651for2012"}, {"datetaken": "2012-12-31 18:28:26", "license": "3", "title": "08", "text": "", "album_id": "72157632405642272", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8362/8333623623_47f037fe88_o.jpg", "secret": "e7f9de3dcc", "media": "photo", "latitude": "0", "id": "8333623623", "tags": "espoo finland newyearseve tapiola"}, {"datetaken": "2012-12-31 18:29:17", "license": "3", "title": "09", "text": "", "album_id": "72157632405642272", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8493/8333623721_9178731c25_o.jpg", "secret": "5f1049d8a2", "media": "photo", "latitude": "0", "id": "8333623721", "tags": "espoo finland newyearseve tapiola"}, {"datetaken": "2012-12-31 18:29:54", "license": "3", "title": "12", "text": "", "album_id": "72157632405642272", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8211/8333624079_fd8f0b2ce6_o.jpg", "secret": "178b051cea", "media": "photo", "latitude": "0", "id": "8333624079", "tags": "espoo finland newyearseve tapiola"}, {"datetaken": "2012-12-31 18:47:10", "license": "3", "title": "07", "text": "", "album_id": "72157632405642272", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8358/8333623423_af63979ea4_o.jpg", "secret": "d2a5f76a6d", "media": "photo", "latitude": "0", "id": "8333623423", "tags": "espoo finland newyearseve tapiola"}, {"datetaken": "2012-12-31 18:49:40", "license": "3", "title": "11", "text": "", "album_id": "72157632405642272", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8499/8333623941_39067cdff6_o.jpg", "secret": "d82a911965", "media": "photo", "latitude": "0", "id": "8333623941", "tags": "espoo finland newyearseve tapiola"}, {"datetaken": "2012-12-31 18:57:51", "license": "3", "title": "06", "text": "", "album_id": "72157632405642272", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8217/8333610341_53b6eea698_o.jpg", "secret": "c678b92fb8", "media": "photo", "latitude": "0", "id": "8333610341", "tags": "espoo finland newyearseve tapiola"}, {"datetaken": "2012-12-31 19:00:44", "license": "3", "title": "05", "text": "", "album_id": "72157632405642272", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8358/8333610231_1b7d170305_o.jpg", "secret": "7d79466dce", "media": "photo", "latitude": "0", "id": "8333610231", "tags": "espoo finland newyearseve tapiola"}, {"datetaken": "2012-12-31 19:03:15", "license": "3", "title": "04", "text": "", "album_id": "72157632405642272", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8075/8333610163_83f72a237b_o.jpg", "secret": "b41b3823fb", "media": "photo", "latitude": "0", "id": "8333610163", "tags": "espoo finland newyearseve tapiola"}, {"datetaken": "2012-12-31 19:07:47", "license": "3", "title": "14/15 Feeling the next Light - New Year's Eve in Tapiola", "text": "", "album_id": "72157632405642272", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8351/8334689494_04655625f4_o.jpg", "secret": "497beb0913", "media": "photo", "latitude": "0", "id": "8334689494", "tags": "espoo finland newyearseve tapiola"}, {"datetaken": "2012-12-31 19:13:18", "license": "3", "title": "03", "text": "", "album_id": "72157632405642272", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8492/8333610097_b985115009_o.jpg", "secret": "a7178c6be2", "media": "photo", "latitude": "0", "id": "8333610097", "tags": "espoo finland newyearseve tapiola"}, {"datetaken": "2012-12-31 19:14:41", "license": "3", "title": "1/15 Feeling the next Light - New Year's Eve in Tapiola", "text": "", "album_id": "72157632405642272", "longitude": "24.803447", "url_o": "https://farm9.staticflickr.com/8497/8333609909_bed42c19d0_o.jpg", "secret": "112cabf5ea", "media": "photo", "latitude": "60.176129", "id": "8333609909", "tags": "espoo finland newyearseve tapiola"}, {"datetaken": "2012-12-31 19:16:10", "license": "3", "title": "02", "text": "", "album_id": "72157632405642272", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8216/8333610001_86fa48e1fa_o.jpg", "secret": "b4ef504a34", "media": "photo", "latitude": "0", "id": "8333610001", "tags": "espoo finland newyearseve tapiola"}, {"datetaken": "2012-12-31 23:24:48", "license": "3", "title": "13", "text": "", "album_id": "72157632405642272", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8212/8334689394_73878142b6_o.jpg", "secret": "37e7bdfa0a", "media": "photo", "latitude": "0", "id": "8334689394", "tags": "espoo finland newyearseve tapiola"}, {"datetaken": "2013-01-01 00:04:28", "license": "3", "title": "1st Perception of 2013 (365/1 Jan. 01, 2013)", "text": "", "album_id": "72157632405642272", "longitude": "24.803018", "url_o": "https://farm9.staticflickr.com/8074/8334689570_1a66034f8c_o.jpg", "secret": "8bf75beb84", "media": "photo", "latitude": "60.173301", "id": "8334689570", "tags": "espoo finland joy newyearsday tapiola project365 3651 pad2013365"}, {"datetaken": "2014-01-01 00:45:08", "license": "1", "title": "DSC_1589", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7376/11687781763_bdfe9c6fe9_o.jpg", "secret": "4a28a242a0", "media": "photo", "latitude": "0", "id": "11687781763", "tags": "castle bratislava"}, {"datetaken": "2014-01-01 00:45:20", "license": "1", "title": "DSC_1590", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7353/11687781163_994b640459_o.jpg", "secret": "1465acc0af", "media": "photo", "latitude": "0", "id": "11687781163", "tags": "slovakia bratislava bratislavacastle bratislavacastleatnight"}, {"datetaken": "2014-01-01 00:47:30", "license": "1", "title": "Couple", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5512/11688296186_23d8dce46f_o.jpg", "secret": "078b3277f6", "media": "photo", "latitude": "0", "id": "11688296186", "tags": "bratislava"}, {"datetaken": "2014-01-01 00:48:22", "license": "1", "title": "DSC_1598", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3757/11687769043_2ed22c2a80_o.jpg", "secret": "4701b74383", "media": "photo", "latitude": "0", "id": "11687769043", "tags": "bratislava"}, {"datetaken": "2014-01-01 00:49:29", "license": "1", "title": "DSC_1600", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3743/11687520285_a937d5e347_o.jpg", "secret": "83aa13ffeb", "media": "photo", "latitude": "0", "id": "11687520285", "tags": "bratislava"}, {"datetaken": "2014-01-01 00:52:06", "license": "1", "title": "DSC_1602", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7293/11687881004_fc119d2e9e_o.jpg", "secret": "6534423203", "media": "photo", "latitude": "0", "id": "11687881004", "tags": "bratislava"}, {"datetaken": "2014-01-01 00:53:08", "license": "1", "title": "DSC_1605", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7363/11687761033_587f54eaa6_o.jpg", "secret": "24a1c640c4", "media": "photo", "latitude": "0", "id": "11687761033", "tags": "bratislava"}, {"datetaken": "2014-01-01 01:17:41", "license": "1", "title": "DSC_1644", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2862/11687705673_b5661ea4c2_o.jpg", "secret": "a9bc460f62", "media": "photo", "latitude": "0", "id": "11687705673", "tags": "bratislava"}, {"datetaken": "2014-01-01 01:22:31", "license": "1", "title": "DSC_1650", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3665/11687460165_2fd3678b2d_o.jpg", "secret": "c1eacbd728", "media": "photo", "latitude": "0", "id": "11687460165", "tags": "bratislava"}, {"datetaken": "2014-01-01 01:29:14", "license": "1", "title": "DSC_1656", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7428/11688231756_b4d2906aa2_o.jpg", "secret": "2126644335", "media": "photo", "latitude": "0", "id": "11688231756", "tags": "bratislava"}, {"datetaken": "2014-01-01 01:32:04", "license": "1", "title": "DSC_1659", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3729/11687819634_9d5b746fe9_o.jpg", "secret": "ba483560ed", "media": "photo", "latitude": "0", "id": "11687819634", "tags": "bratislava"}, {"datetaken": "2014-01-01 01:43:25", "license": "1", "title": "DSC_1690", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2831/11688346846_e0f0722f93_o.jpg", "secret": "b0a0e26a65", "media": "photo", "latitude": "0", "id": "11688346846", "tags": ""}, {"datetaken": "2014-01-01 01:45:57", "license": "1", "title": "Bratislava Castle, New Years Eve 2014", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5493/11687825783_1e88b0380e_o.jpg", "secret": "a87e0d311c", "media": "photo", "latitude": "0", "id": "11687825783", "tags": "bratislava castillo 2014"}, {"datetaken": "2014-01-01 01:46:13", "license": "1", "title": "DSC_1697", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7394/11687580985_16947b61fc_o.jpg", "secret": "e7bee4c266", "media": "photo", "latitude": "0", "id": "11687580985", "tags": ""}, {"datetaken": "2014-01-01 01:47:05", "license": "1", "title": "DSC_1700", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5486/11687825903_f763835478_o.jpg", "secret": "2bc7aa7a00", "media": "photo", "latitude": "0", "id": "11687825903", "tags": ""}, {"datetaken": "2014-01-01 01:50:13", "license": "1", "title": "DSC_1709", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7297/11687566995_284f6549a7_o.jpg", "secret": "93c417fb13", "media": "photo", "latitude": "0", "id": "11687566995", "tags": ""}, {"datetaken": "2014-01-01 02:00:36", "license": "1", "title": "DSC_1711", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3697/11687811043_9887c7cda9_o.jpg", "secret": "6e5af418e8", "media": "photo", "latitude": "0", "id": "11687811043", "tags": ""}, {"datetaken": "2014-01-01 02:01:55", "license": "1", "title": "DSC_1715", "text": "", "album_id": "72157639271334604", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3746/11687803603_a5b9f34b15_o.jpg", "secret": "300d357d10", "media": "photo", "latitude": "0", "id": "11687803603", "tags": ""}, {"datetaken": "2013-12-31 19:41:18", "license": "2", "title": "Becky'sParents", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3798/11693615656_00e41e1685_o.jpg", "secret": "8a279f0262", "media": "photo", "latitude": "0", "id": "11693615656", "tags": "fireworks newyearseve malm\u00f6"}, {"datetaken": "2013-12-31 19:41:22", "license": "2", "title": "BeckyCheering", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5508/11693614316_36b2ec748d_o.jpg", "secret": "2140b9508d", "media": "photo", "latitude": "0", "id": "11693614316", "tags": "fireworks newyearseve malm\u00f6"}, {"datetaken": "2013-12-31 19:44:43", "license": "2", "title": "SwedishCow", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3804/11693156283_853458a2b6_o.jpg", "secret": "d2f4fbce97", "media": "photo", "latitude": "0", "id": "11693156283", "tags": "newyearseve malm\u00f6"}, {"datetaken": "2013-12-31 19:45:22", "license": "2", "title": "Screen", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7346/11692915455_8917057493_o.jpg", "secret": "85b2f3f873", "media": "photo", "latitude": "0", "id": "11692915455", "tags": "newyearseve malm\u00f6"}, {"datetaken": "2013-12-31 20:36:31", "license": "2", "title": "Becky'sDad", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3693/11692854945_222d93fdc7_o.jpg", "secret": "20ff135916", "media": "photo", "latitude": "0", "id": "11692854945", "tags": "fireworks newyearseve malm\u00f6"}, {"datetaken": "2013-12-31 20:43:23", "license": "2", "title": "USA", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3719/11693278414_55f3da9975_o.jpg", "secret": "1df9c7dddd", "media": "photo", "latitude": "0", "id": "11693278414", "tags": "newyearseve malm\u00f6"}, {"datetaken": "2014-01-01 01:04:00", "license": "2", "title": "RedFireworkTree", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3697/11693160683_0889535d32_o.jpg", "secret": "c25c19f33c", "media": "photo", "latitude": "0", "id": "11693160683", "tags": "newyearseve malm\u00f6"}, {"datetaken": "2014-01-01 01:04:21", "license": "2", "title": "TheMostBokehI'veEverSeen", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2889/11693154673_02414d17ec_o.jpg", "secret": "5bae9c51c8", "media": "photo", "latitude": "0", "id": "11693154673", "tags": "newyearseve malm\u00f6"}, {"datetaken": "2014-01-01 01:05:06", "license": "2", "title": "AbtractishB&W", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5514/11693621616_4aae385069_o.jpg", "secret": "9c6f85c9f9", "media": "photo", "latitude": "0", "id": "11693621616", "tags": "fireworks newyearseve malm\u00f6"}, {"datetaken": "2014-01-01 01:05:09", "license": "2", "title": "ReddishTree", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2846/11693289564_45173492e0_o.jpg", "secret": "b76560997b", "media": "photo", "latitude": "0", "id": "11693289564", "tags": "newyearseve malm\u00f6"}, {"datetaken": "2014-01-01 01:05:09", "license": "2", "title": "1. AtmosphericTrees", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7452/11693101403_ec311508a9_o.jpg", "secret": "db51871a9b", "media": "photo", "latitude": "0", "id": "11693101403", "tags": "fireworks newyearseve malm\u00f6"}, {"datetaken": "2014-01-01 01:05:12", "license": "2", "title": "Abstract", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3752/11693110353_31545c7662_o.jpg", "secret": "4745121a99", "media": "photo", "latitude": "0", "id": "11693110353", "tags": "fireworks newyearseve malm\u00f6"}, {"datetaken": "2014-01-01 01:06:47", "license": "2", "title": "RedBokeh", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5478/11693167963_0673848677_o.jpg", "secret": "20ea00b39e", "media": "photo", "latitude": "0", "id": "11693167963", "tags": "newyearseve malm\u00f6"}, {"datetaken": "2014-01-01 01:06:50", "license": "2", "title": "Dandelionish", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7332/11693215874_3bcbd87d83_o.jpg", "secret": "fd8496164d", "media": "photo", "latitude": "0", "id": "11693215874", "tags": "fireworks newyearseve malm\u00f6"}, {"datetaken": "2014-01-01 01:06:57", "license": "2", "title": "Red&Green", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7390/11693299214_98808a5471_o.jpg", "secret": "939f304e45", "media": "photo", "latitude": "0", "id": "11693299214", "tags": "newyearseve malm\u00f6"}, {"datetaken": "2014-01-01 01:07:07", "license": "2", "title": "LargerBokeh", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7341/11693309994_b74f6377d9_o.jpg", "secret": "12d3b16839", "media": "photo", "latitude": "0", "id": "11693309994", "tags": "newyearseve malm\u00f6"}, {"datetaken": "2014-01-01 01:07:15", "license": "2", "title": "PurplishFirework", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5504/11693177783_263ea3c297_o.jpg", "secret": "69db71455d", "media": "photo", "latitude": "0", "id": "11693177783", "tags": "newyearseve malm\u00f6"}, {"datetaken": "2014-01-01 01:07:20", "license": "2", "title": "FireworkImpression", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7314/11692951045_97f4c60e02_o.jpg", "secret": "da989420ee", "media": "photo", "latitude": "0", "id": "11692951045", "tags": "newyearseve malm\u00f6"}, {"datetaken": "2014-01-01 01:07:22", "license": "2", "title": "AbstractFirework", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3748/11693231304_2a4280a4f9_o.jpg", "secret": "2ecf2b00af", "media": "photo", "latitude": "0", "id": "11693231304", "tags": "fireworks newyearseve malm\u00f6"}, {"datetaken": "2014-01-01 01:07:25", "license": "2", "title": "Flowerish", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5514/11692948795_46fd4e7b44_o.jpg", "secret": "d815a85d6e", "media": "photo", "latitude": "0", "id": "11692948795", "tags": "newyearseve malm\u00f6"}, {"datetaken": "2014-01-01 01:07:41", "license": "2", "title": "Bokey", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3785/11693094453_598b492eef_o.jpg", "secret": "e5675e2e3b", "media": "photo", "latitude": "0", "id": "11693094453", "tags": "fireworks newyearseve malm\u00f6"}, {"datetaken": "2014-01-01 01:10:46", "license": "2", "title": "Lantern2", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7326/11693705746_79c9be01a9_o.jpg", "secret": "423f3a0294", "media": "photo", "latitude": "0", "id": "11693705746", "tags": "newyearseve malm\u00f6"}, {"datetaken": "2014-01-01 01:11:29", "license": "2", "title": "Lantern", "text": "", "album_id": "72157639281932693", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5521/11693312654_ab32191fb4_o.jpg", "secret": "a366ba9375", "media": "photo", "latitude": "0", "id": "11693312654", "tags": "newyearseve malm\u00f6"}, {"datetaken": "1998-12-31 00:00:00", "license": "4", "title": "img034", "text": "", "album_id": "678460", "longitude": "-1.450635", "url_o": "https://farm1.staticflickr.com/22/30304790_dcd8e19a8c_o.jpg", "secret": "dcd8e19a8c", "media": "photo", "latitude": "53.232884", "id": "30304790", "tags": "newyearseve bramptonalehouse andykaye nicolawainwright philcarolan helentaylor leedove benredfern"}, {"datetaken": "1998-12-31 00:00:01", "license": "4", "title": "New year passions", "text": "", "album_id": "678460", "longitude": "-1.450635", "url_o": "https://farm1.staticflickr.com/23/30304783_f738e9fe38_o.jpg", "secret": "f738e9fe38", "media": "photo", "latitude": "53.232884", "id": "30304783", "tags": "newyearseve bramptonalehouse andykaye nicolawainwright benredfern"}, {"datetaken": "1998-12-31 00:00:02", "license": "4", "title": "Andy blows", "text": "", "album_id": "678460", "longitude": "-1.450635", "url_o": "https://farm1.staticflickr.com/22/30304773_4a5d0b831c_o.jpg", "secret": "4a5d0b831c", "media": "photo", "latitude": "53.232884", "id": "30304773", "tags": "newyearseve bramptonalehouse andykaye davidthomas nicolawainwright"}, {"datetaken": "1998-12-31 00:00:03", "license": "4", "title": "Midnight beckons", "text": "", "album_id": "678460", "longitude": "-1.450635", "url_o": "https://farm1.staticflickr.com/22/30304763_be90b8ff31_o.jpg", "secret": "be90b8ff31", "media": "photo", "latitude": "53.232884", "id": "30304763", "tags": "newyearseve bramptonalehouse robmadin leedove benredfern nicolawainwright stevewatson"}, {"datetaken": "1998-12-31 00:00:04", "license": "4", "title": "img030", "text": "", "album_id": "678460", "longitude": "-1.450635", "url_o": "https://farm1.staticflickr.com/22/30304756_c783e5f5fc_o.jpg", "secret": "c783e5f5fc", "media": "photo", "latitude": "53.232884", "id": "30304756", "tags": "newyearseve bramptonalehouse leedove benredfern nicolawainwright"}, {"datetaken": "1998-12-31 00:00:05", "license": "4", "title": "img029", "text": "", "album_id": "678460", "longitude": "-1.450635", "url_o": "https://farm1.staticflickr.com/22/30304752_ef0d9bd464_o.jpg", "secret": "ef0d9bd464", "media": "photo", "latitude": "53.232884", "id": "30304752", "tags": "robmadin"}, {"datetaken": "1998-12-31 00:00:06", "license": "4", "title": "img028", "text": "", "album_id": "678460", "longitude": "-1.450635", "url_o": "https://farm1.staticflickr.com/23/30304748_e6fc5d39e5_o.jpg", "secret": "e6fc5d39e5", "media": "photo", "latitude": "53.232884", "id": "30304748", "tags": "newyearseve bramptonalehouse helentaylor benredfern nicolawainwright stevewatson"}, {"datetaken": "1998-12-31 00:00:07", "license": "4", "title": "Redders disagrees", "text": "", "album_id": "678460", "longitude": "-1.450635", "url_o": "https://farm1.staticflickr.com/22/30304739_e772b8ff78_o.jpg", "secret": "e772b8ff78", "media": "photo", "latitude": "53.232884", "id": "30304739", "tags": "newyearseve bramptonalehouse helentaylor benredfern nicolawainwright stevewatson"}, {"datetaken": "1998-12-31 00:00:08", "license": "4", "title": "img026", "text": "", "album_id": "678460", "longitude": "-1.450635", "url_o": "https://farm1.staticflickr.com/21/30304726_b6991a111a_o.jpg", "secret": "b6991a111a", "media": "photo", "latitude": "53.232884", "id": "30304726", "tags": "newyearseve bramptonalehouse benredfern nicolawainwright"}, {"datetaken": "1998-12-31 00:00:09", "license": "4", "title": "A new year's kiss", "text": "", "album_id": "678460", "longitude": "-1.450635", "url_o": "https://farm1.staticflickr.com/23/30304716_fb7144a5fc_o.jpg", "secret": "fb7144a5fc", "media": "photo", "latitude": "53.232884", "id": "30304716", "tags": "newyearseve bramptonalehouse benredfern nicolawainwright"}, {"datetaken": "1998-12-31 00:00:10", "license": "4", "title": "Packed in O'Neill's", "text": "", "album_id": "678460", "longitude": "-1.450635", "url_o": "https://farm1.staticflickr.com/22/30304708_5d5b67d90d_o.jpg", "secret": "5d5b67d90d", "media": "photo", "latitude": "53.232884", "id": "30304708", "tags": "newyearseve oneills benredfern chrisroberts leedove davidthomas bensutherland andykaye"}, {"datetaken": "1998-12-31 00:00:11", "license": "4", "title": "img023", "text": "", "album_id": "678460", "longitude": "-1.424703", "url_o": "https://farm1.staticflickr.com/22/30304697_4e9486ca8f_o.jpg", "secret": "4e9486ca8f", "media": "photo", "latitude": "53.237013", "id": "30304697", "tags": "newyearseve oneills benredfern robmadin davidthomas philcarolan"}, {"datetaken": "1998-12-31 00:00:12", "license": "4", "title": "img022", "text": "", "album_id": "678460", "longitude": "-1.424703", "url_o": "https://farm1.staticflickr.com/22/30304692_5a52ff6fb3_o.jpg", "secret": "5a52ff6fb3", "media": "photo", "latitude": "53.237013", "id": "30304692", "tags": "newyearseve oneills nicolawainwright benredfern robmadin davidthomas"}, {"datetaken": "1998-12-31 00:00:13", "license": "4", "title": "Preparing to move on", "text": "", "album_id": "678460", "longitude": "-1.424703", "url_o": "https://farm1.staticflickr.com/22/30304682_9cdd3c3756_o.jpg", "secret": "9cdd3c3756", "media": "photo", "latitude": "53.237013", "id": "30304682", "tags": "newyearseve oneills philcarolan leedove rebeccabarnet benredfern chrisroberts rachaelmacdona nicolawainwright stevewatson"}, {"datetaken": "1998-12-31 00:00:14", "license": "4", "title": "Not at all drunk", "text": "", "album_id": "678460", "longitude": "-1.424703", "url_o": "https://farm1.staticflickr.com/23/30304672_916217ac04_o.jpg", "secret": "916217ac04", "media": "photo", "latitude": "53.237013", "id": "30304672", "tags": "newyearseve oneills philcarolan leedove rebeccabarnet benredfern chrisroberts rachaelmacdona stevewatson"}, {"datetaken": "1998-12-31 00:00:15", "license": "4", "title": "Phil looks less impressed", "text": "", "album_id": "678460", "longitude": "-1.424703", "url_o": "https://farm1.staticflickr.com/22/30304661_a8bacbbb62_o.jpg", "secret": "a8bacbbb62", "media": "photo", "latitude": "53.237013", "id": "30304661", "tags": "newyearseve oneills philcarolan leedove rebeccabarnet benredfern chrisroberts rachaelmacdona stevewatson"}, {"datetaken": "1998-12-31 00:00:16", "license": "4", "title": "Rachel with Chris as Lee gets a hug", "text": "", "album_id": "678460", "longitude": "-1.424703", "url_o": "https://farm1.staticflickr.com/23/30304655_e7454dbf44_o.jpg", "secret": "e7454dbf44", "media": "photo", "latitude": "53.237013", "id": "30304655", "tags": "newyearseve oneills leedove rebeccabarnet rachaelmacdona chrisroberts"}, {"datetaken": "1998-12-31 00:00:17", "license": "4", "title": "Oh good god, the hair! The hair!", "text": "", "album_id": "678460", "longitude": "-1.424703", "url_o": "https://farm1.staticflickr.com/21/30304651_5fc8353b7d_o.jpg", "secret": "5fc8353b7d", "media": "photo", "latitude": "53.237013", "id": "30304651", "tags": "newyearseve oneills bensutherland benredfern nicolawainwright philcarolan"}, {"datetaken": "1998-12-31 00:00:18", "license": "4", "title": "img016", "text": "", "album_id": "678460", "longitude": "-1.424703", "url_o": "https://farm1.staticflickr.com/23/30304643_4f1b41b26c_o.jpg", "secret": "4f1b41b26c", "media": "photo", "latitude": "53.237013", "id": "30304643", "tags": "newyearseve oneills leedove rebeccabarnet chrisroberts rachaelmacdona"}, {"datetaken": "1998-12-31 00:00:19", "license": "4", "title": "Propping up the bar", "text": "", "album_id": "678460", "longitude": "-1.424703", "url_o": "https://farm1.staticflickr.com/23/30304638_fd075d9ee3_o.jpg", "secret": "fd075d9ee3", "media": "photo", "latitude": "53.237013", "id": "30304638", "tags": "newyearseve oneills bensutherland"}, {"datetaken": "1998-12-31 00:00:20", "license": "4", "title": "Rob Madin looks glum", "text": "", "album_id": "678460", "longitude": "-1.424703", "url_o": "https://farm1.staticflickr.com/22/30304632_80a0e5ff42_o.jpg", "secret": "80a0e5ff42", "media": "photo", "latitude": "53.237013", "id": "30304632", "tags": "newyearseve oneills robmadin"}, {"datetaken": "1998-12-31 00:00:21", "license": "4", "title": "img012", "text": "", "album_id": "678460", "longitude": "-1.424703", "url_o": "https://farm1.staticflickr.com/23/30304622_1584b472e3_o.jpg", "secret": "1584b472e3", "media": "photo", "latitude": "53.237013", "id": "30304622", "tags": "newyearseve oneills philcarolan benredfern stevewatson"}, {"datetaken": "1998-12-31 00:00:22", "license": "4", "title": "img013", "text": "", "album_id": "678460", "longitude": "-1.424703", "url_o": "https://farm1.staticflickr.com/21/30304614_28484d986e_o.jpg", "secret": "28484d986e", "media": "photo", "latitude": "53.237013", "id": "30304614", "tags": "newyearseve oneills philcarolan stevewatson"}, {"datetaken": "2005-09-02 20:25:37", "license": "3", "title": "P1010006", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/39718767_d52bf4fbcc_o.jpg", "secret": "d52bf4fbcc", "media": "photo", "latitude": "0", "id": "39718767", "tags": "sutton dressing door closet hunterstreet"}, {"datetaken": "2005-09-02 20:26:00", "license": "3", "title": "P1010008", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/39718822_ee4ebda780_o.jpg", "secret": "ee4ebda780", "media": "photo", "latitude": "0", "id": "39718822", "tags": "amy vanessa christmas tree presents hunterstreet newyears"}, {"datetaken": "2005-09-02 20:26:04", "license": "3", "title": "P1010016", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/39718835_3bd40e1435_o.jpg", "secret": "3bd40e1435", "media": "photo", "latitude": "0", "id": "39718835", "tags": "eric party copycatbuilding loft apartment warehouse newyears movement people glance look eyes gaze"}, {"datetaken": "2005-09-02 20:26:34", "license": "3", "title": "P1010018", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/39718866_378f247ae0_o.jpg", "secret": "378f247ae0", "media": "photo", "latitude": "0", "id": "39718866", "tags": "tara party copycatbuilding loft apartment warehouse newyears vanessa movement"}, {"datetaken": "2005-09-02 20:26:39", "license": "3", "title": "P1010026", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/39718874_13a1a2c6d7_o.jpg", "secret": "13a1a2c6d7", "media": "photo", "latitude": "0", "id": "39718874", "tags": "party copycatbuilding loft apartment warehouse newyears breasts burlesque bottles liqour booze rum bacardi seagrams pour spouts"}, {"datetaken": "2005-09-02 20:26:42", "license": "3", "title": "P1010034", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/39718881_b36f49e7a5_o.jpg", "secret": "b36f49e7a5", "media": "photo", "latitude": "0", "id": "39718881", "tags": "party copycatbuilding loft apartment warehouse newyears"}, {"datetaken": "2005-09-02 20:26:48", "license": "3", "title": "P1010050", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/39718886_706088675a_o.jpg", "secret": "706088675a", "media": "photo", "latitude": "0", "id": "39718886", "tags": "eric party copycatbuilding loft apartment warehouse newyears beer refrigerator fridge bottles door light"}, {"datetaken": "2005-09-02 20:26:51", "license": "3", "title": "P1010053", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/39718890_feb9a1c293_o.jpg", "secret": "feb9a1c293", "media": "photo", "latitude": "0", "id": "39718890", "tags": "vanessa party copycatbuilding loft apartment warehouse newyears refrigerator fridge armpit door smile"}, {"datetaken": "2005-09-02 20:26:56", "license": "3", "title": "P1010054", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/39718897_48886b7dd7_o.jpg", "secret": "48886b7dd7", "media": "photo", "latitude": "0", "id": "39718897", "tags": "vanessa party copycatbuilding loft apartment warehouse newyears refrigerator beer fridge amy door light condiments"}, {"datetaken": "2005-09-02 20:26:59", "license": "3", "title": "P1010055", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/39718905_eaf4bb6f25_o.jpg", "secret": "eaf4bb6f25", "media": "photo", "latitude": "0", "id": "39718905", "tags": "party copycatbuilding loft apartment warehouse newyears rope hand wrist"}, {"datetaken": "2005-09-02 20:27:02", "license": "3", "title": "P1010056", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/39718914_2b42be3939_o.jpg", "secret": "2b42be3939", "media": "photo", "latitude": "0", "id": "39718914", "tags": "party copycatbuilding loft apartment warehouse newyears woman cleavage rope drink"}, {"datetaken": "2005-09-02 20:27:05", "license": "3", "title": "P1010058", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/39718919_b387bc9c06_o.jpg", "secret": "b387bc9c06", "media": "photo", "latitude": "0", "id": "39718919", "tags": "vanessa drinking alcohol beer party girl light night holiday"}, {"datetaken": "2005-09-02 20:27:09", "license": "3", "title": "P1010061", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/39718927_cb4d528a97_o.jpg", "secret": "cb4d528a97", "media": "photo", "latitude": "0", "id": "39718927", "tags": "party glass beer bottle distortion"}, {"datetaken": "2005-09-02 20:27:13", "license": "3", "title": "P1010082", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/39718936_39f1b6cf72_o.jpg", "secret": "39f1b6cf72", "media": "photo", "latitude": "0", "id": "39718936", "tags": "bartender drink newyears happynewyear champagne champers cups pour cork"}, {"datetaken": "2005-09-02 20:27:17", "license": "3", "title": "P1010085", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/39718950_000ce7f50d_o.jpg", "secret": "000ce7f50d", "media": "photo", "latitude": "0", "id": "39718950", "tags": "bartender drink newyears happynewyear champagne champers cups pour cork"}, {"datetaken": "2005-09-02 20:27:23", "license": "3", "title": "P1010092", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/39718962_d5c7ddd02c_o.jpg", "secret": "d5c7ddd02c", "media": "photo", "latitude": "0", "id": "39718962", "tags": "amy drink newyears happynewyear champagne champers chug swallow"}, {"datetaken": "2005-09-02 20:27:27", "license": "3", "title": "P1010102", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/39718974_c18eebf99d_o.jpg", "secret": "c18eebf99d", "media": "photo", "latitude": "0", "id": "39718974", "tags": "woman party girl scarf glove"}, {"datetaken": "2005-09-02 20:27:31", "license": "3", "title": "P1010103 1", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/39718981_62eaef967e_o.jpg", "secret": "62eaef967e", "media": "photo", "latitude": "0", "id": "39718981", "tags": "refrigerator bottle door"}, {"datetaken": "2005-09-02 20:27:37", "license": "3", "title": "P1010118", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/39719017_5e3674c690_o.jpg", "secret": "5e3674c690", "media": "photo", "latitude": "0", "id": "39719017", "tags": "bar doll nipples bottles mirror"}, {"datetaken": "2005-09-02 20:27:41", "license": "3", "title": "P1010133", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/39719028_5e76c78f30_o.jpg", "secret": "5e76c78f30", "media": "photo", "latitude": "0", "id": "39719028", "tags": "dj deejay turntablist ceiling turntable decks party record copycatbuilding loft apartment warehouse newyears"}, {"datetaken": "2005-09-02 20:27:46", "license": "3", "title": "P1010132", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/39719035_bf88642c9f_o.jpg", "secret": "bf88642c9f", "media": "photo", "latitude": "0", "id": "39719035", "tags": "dj deejay turntablist ceiling turntable decks party record copycatbuilding loft apartment warehouse newyears"}, {"datetaken": "2005-09-02 20:27:56", "license": "3", "title": "P1010136", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/39719060_f124754dc0_o.jpg", "secret": "f124754dc0", "media": "photo", "latitude": "0", "id": "39719060", "tags": "party jamie mike couple threesome copycatbuilding loft apartment warehouse newyears"}, {"datetaken": "2005-09-02 20:28:00", "license": "3", "title": "P1010155", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/39719068_2a630ebc18_o.jpg", "secret": "2a630ebc18", "media": "photo", "latitude": "0", "id": "39719068", "tags": "party lights bar copycatbuilding loft apartment warehouse newyears gina"}, {"datetaken": "2005-09-02 20:28:05", "license": "3", "title": "P1010157", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/39719089_aa93f516e3_o.jpg", "secret": "aa93f516e3", "media": "photo", "latitude": "0", "id": "39719089", "tags": "amy party cider smile copycatbuilding loft apartment warehouse newyears"}, {"datetaken": "2005-09-02 20:28:09", "license": "3", "title": "P1010164", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/39719099_21462a8599_o.jpg", "secret": "21462a8599", "media": "photo", "latitude": "0", "id": "39719099", "tags": "chair couple intimate kiss party"}, {"datetaken": "2005-09-02 20:28:13", "license": "3", "title": "P1010163", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/39719112_cdd5030d4b_o.jpg", "secret": "cdd5030d4b", "media": "photo", "latitude": "0", "id": "39719112", "tags": "dj deejay turntablist ceiling turntable decks party"}, {"datetaken": "2005-09-02 20:28:18", "license": "3", "title": "P1010167", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/39719127_e415f619c9_o.jpg", "secret": "e415f619c9", "media": "photo", "latitude": "0", "id": "39719127", "tags": "hallway hall party crowd people inside"}, {"datetaken": "2005-09-02 20:46:06", "license": "3", "title": "P1010017", "text": "", "album_id": "927231", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/39721865_4fb1754a99_o.jpg", "secret": "4fb1754a99", "media": "photo", "latitude": "0", "id": "39721865", "tags": "party copycatbuilding loft apartment warehouse newyears chair green girls women furniture vanessa tara"}, {"datetaken": "2011-12-31 10:24:02", "license": "6", "title": "Minolta_Velvia50XPRO_NY2012_41730017", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7023/6629464053_2075d99b4f_o.jpg", "secret": "390f890e64", "media": "photo", "latitude": "37.749407", "id": "6629464053", "tags": "elephant playground xpro lomography crossprocess slide velvia oaklandzoo iso50"}, {"datetaken": "2011-12-31 10:24:02", "license": "6", "title": "Minolta_Velvia50XPRO_NY2012_41730019", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7164/6629464603_219fa1f791_o.jpg", "secret": "9186e21955", "media": "photo", "latitude": "37.749407", "id": "6629464603", "tags": "xpro lomography crossprocess velvia oaklandzoo iso50"}, {"datetaken": "2011-12-31 10:24:02", "license": "6", "title": "Minolta_Velvia50XPRO_NY2012_41730022", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7159/6629465313_e50106e5e9_o.jpg", "secret": "c38ba5d445", "media": "photo", "latitude": "37.749407", "id": "6629465313", "tags": "xpro lomography crossprocess velvia emu oaklandzoo iso50"}, {"datetaken": "2011-12-31 10:24:02", "license": "6", "title": "Minolta_Velvia50XPRO_NY2012_41730026", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7143/6629466167_3f207b1e61_o.jpg", "secret": "3e78ca68cc", "media": "photo", "latitude": "37.749407", "id": "6629466167", "tags": "elephant xpro lomography crossprocess velvia oaklandzoo iso50"}, {"datetaken": "2011-12-31 10:24:02", "license": "6", "title": "Minolta_Velvia50XPRO_NY2012_41730027", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7021/6629466387_16a4deb0a1_o.jpg", "secret": "82b1362b59", "media": "photo", "latitude": "37.749407", "id": "6629466387", "tags": "xpro lomography crossprocess velvia gondola oaklandzoo iso50"}, {"datetaken": "2011-12-31 10:24:02", "license": "6", "title": "Minolta_Velvia50XPRO_NY2012_41730028", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7175/6629466637_c8fb975f12_o.jpg", "secret": "7e0b3b4d76", "media": "photo", "latitude": "37.749407", "id": "6629466637", "tags": "tree monkey xpro lomography crossprocess velvia oaklandzoo iso50"}, {"datetaken": "2011-12-31 10:24:02", "license": "6", "title": "Minolta_Velvia50XPRO_NY2012_41730029", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7031/6629467039_071657b5fa_o.jpg", "secret": "d083b351fd", "media": "photo", "latitude": "37.749407", "id": "6629467039", "tags": "monkey xpro lomography crossprocess velvia oaklandzoo iso50"}, {"datetaken": "2011-12-31 10:24:02", "license": "6", "title": "Minolta_Velvia50XPRO_NY2012_41730030", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7015/6629467301_b9b75255bc_o.jpg", "secret": "d52c7bee13", "media": "photo", "latitude": "37.749407", "id": "6629467301", "tags": "blur xpro lomography velvia"}, {"datetaken": "2011-12-31 10:24:02", "license": "6", "title": "Minolta_Velvia50XPRO_NY2012_41730032", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7147/6629467987_5b2ed9919c_o.jpg", "secret": "97588dd02e", "media": "photo", "latitude": "37.749407", "id": "6629467987", "tags": "xpro lomography crossprocess insects bugs velvia oaklandzoo iso50 milesarthuranderer"}, {"datetaken": "2011-12-31 10:24:02", "license": "6", "title": "Minolta_Velvia50XPRO_NY2012_41730036", "text": "", "album_id": "72157628799634257", "longitude": "-121.993238", "url_o": "https://farm8.staticflickr.com/7164/6629469115_04ec18cd24_o.jpg", "secret": "2705c0b7a4", "media": "photo", "latitude": "37.812750", "id": "6629469115", "tags": "xpro lomography crossprocess velvia iso50"}, {"datetaken": "2011-12-31 14:48:52", "license": "6", "title": "SDC10045", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7008/6669424705_77cc217963_o.jpg", "secret": "882e49ac02", "media": "photo", "latitude": "37.749407", "id": "6669424705", "tags": "reflection window miles oaklandzoo milesarthuranderer"}, {"datetaken": "2011-12-31 15:06:43", "license": "6", "title": "SDC10049", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7142/6669429657_b391a5720d_o.jpg", "secret": "40b3192cac", "media": "photo", "latitude": "37.749407", "id": "6669429657", "tags": "monkey oaklandzoo"}, {"datetaken": "2011-12-31 15:06:48", "license": "6", "title": "SDC10050", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7016/6669432491_716eda7010_o.jpg", "secret": "dd85644fc7", "media": "photo", "latitude": "37.749407", "id": "6669432491", "tags": "monkey oaklandzoo"}, {"datetaken": "2011-12-31 15:06:55", "license": "6", "title": "SDC10051", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7150/6669433561_b1fb07d41f_o.jpg", "secret": "b86d98a7f9", "media": "photo", "latitude": "37.749407", "id": "6669433561", "tags": "monkey oaklandzoo"}, {"datetaken": "2011-12-31 15:06:59", "license": "6", "title": "SDC10052", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7016/6669434503_3cb22b49d3_o.jpg", "secret": "85e45ee52d", "media": "photo", "latitude": "37.749407", "id": "6669434503", "tags": "monkey oaklandzoo"}, {"datetaken": "2011-12-31 15:16:04", "license": "6", "title": "SDC10055", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7008/6669435687_cb12bfa3ff_o.jpg", "secret": "7db757df1f", "media": "photo", "latitude": "37.749407", "id": "6669435687", "tags": "bear oaklandzoo"}, {"datetaken": "2011-12-31 15:16:22", "license": "6", "title": "SDC10057", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7162/6669436891_9d3a9a6a74_o.jpg", "secret": "e811674275", "media": "photo", "latitude": "37.749407", "id": "6669436891", "tags": "bear oaklandzoo"}, {"datetaken": "2011-12-31 16:10:25", "license": "6", "title": "SDC10058", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7005/6669437953_f6dbbfaee9_o.jpg", "secret": "4b04ee9e49", "media": "photo", "latitude": "37.749407", "id": "6669437953", "tags": "lion oaklandzoo"}, {"datetaken": "2011-12-31 16:18:19", "license": "6", "title": "SDC10062", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7019/6669440391_b636c60487_o.jpg", "secret": "d364557e2c", "media": "photo", "latitude": "37.749407", "id": "6669440391", "tags": ""}, {"datetaken": "2011-12-31 16:18:44", "license": "6", "title": "SDC10063", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7024/6669441297_de68192cb0_o.jpg", "secret": "8f59fb1357", "media": "photo", "latitude": "37.749407", "id": "6669441297", "tags": "zebra oaklandzoo"}, {"datetaken": "2011-12-31 17:21:00", "license": "6", "title": "SDC10069", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7017/6669446947_0e08f1000a_o.jpg", "secret": "e3e0ec15b1", "media": "photo", "latitude": "37.749407", "id": "6669446947", "tags": "sunset tree oaklandzoo"}, {"datetaken": "2011-12-31 17:22:06", "license": "6", "title": "SDC10070", "text": "", "album_id": "72157628799634257", "longitude": "-122.147455", "url_o": "https://farm8.staticflickr.com/7164/6669447809_21b9e61368_o.jpg", "secret": "e18d9090b9", "media": "photo", "latitude": "37.749407", "id": "6669447809", "tags": "sunset tree oaklandzoo"}, {"datetaken": "2012-01-01 10:22:14", "license": "6", "title": "Minolta_Velvia50XPRO_NY2012_41730006", "text": "", "album_id": "72157628799634257", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7159/6629461767_d85f591035_o.jpg", "secret": "b9761c8617", "media": "photo", "latitude": "0", "id": "6629461767", "tags": "xpro lomography crossprocess velvia iso50"}, {"datetaken": "2012-12-31 23:37:51", "license": "5", "title": "DSCN2486", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8233/8350333342_c1ce2ca8ab_o.jpg", "secret": "1c9ab8f65c", "media": "photo", "latitude": "32.948164", "id": "8350333342", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2012-12-31 23:38:39", "license": "5", "title": "DSCN2487", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8469/8350332648_e00f7dab61_o.jpg", "secret": "f8fde58224", "media": "photo", "latitude": "32.948164", "id": "8350332648", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2012-12-31 23:44:08", "license": "5", "title": "DSCN2488", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8237/8350332048_3bf4fe63f0_o.jpg", "secret": "97fafeb8a7", "media": "photo", "latitude": "32.948164", "id": "8350332048", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2012-12-31 23:44:32", "license": "5", "title": "DSCN2489", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8358/8349268997_966a24d664_o.jpg", "secret": "88fef86187", "media": "photo", "latitude": "32.948164", "id": "8349268997", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2012-12-31 23:45:25", "license": "5", "title": "DSCN2491", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8220/8349268393_2d08d0054c_o.jpg", "secret": "727ddc710a", "media": "photo", "latitude": "32.948164", "id": "8349268393", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2012-12-31 23:45:49", "license": "5", "title": "DSCN2492", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8189/8349267615_de1fae04ea_o.jpg", "secret": "99fb190bee", "media": "photo", "latitude": "32.948164", "id": "8349267615", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2012-12-31 23:46:01", "license": "5", "title": "DSCN2493", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8364/8350329404_c222c8061d_o.jpg", "secret": "b6c5e94d9b", "media": "photo", "latitude": "32.948164", "id": "8350329404", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2012-12-31 23:51:05", "license": "5", "title": "DSCN2495", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8188/8350328680_781aab8ea9_o.jpg", "secret": "30e2ccc468", "media": "photo", "latitude": "32.948164", "id": "8350328680", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2012-12-31 23:51:32", "license": "5", "title": "DSCN2496", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8227/8350328154_fb5af27893_o.jpg", "secret": "54e93b8610", "media": "photo", "latitude": "32.948164", "id": "8350328154", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2012-12-31 23:58:21", "license": "5", "title": "DSCN2497", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8472/8350327656_0e83d4c764_o.jpg", "secret": "64954ee0a9", "media": "photo", "latitude": "32.948164", "id": "8350327656", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2012-12-31 23:58:38", "license": "5", "title": "DSCN2498", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8185/8349264555_f8d3614cf6_o.jpg", "secret": "9dd4e2fd55", "media": "photo", "latitude": "32.948164", "id": "8349264555", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2012-12-31 23:59:18", "license": "5", "title": "DSCN2499", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8358/8350326316_01775629b9_o.jpg", "secret": "c62f75a0f6", "media": "photo", "latitude": "32.948164", "id": "8350326316", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2013-01-01 00:16:39", "license": "5", "title": "DSCN2504", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8502/8349263551_581c2a605f_o.jpg", "secret": "44f1d98787", "media": "photo", "latitude": "32.948164", "id": "8349263551", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2013-01-01 00:16:49", "license": "5", "title": "DSCN2505", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8081/8349262971_b5876fff0b_o.jpg", "secret": "e07a7636bd", "media": "photo", "latitude": "32.948164", "id": "8349262971", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2013-01-01 00:17:06", "license": "5", "title": "DSCN2507", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8213/8349262525_a5fd993edb_o.jpg", "secret": "445dce4f9c", "media": "photo", "latitude": "32.948164", "id": "8349262525", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2013-01-01 00:17:49", "license": "5", "title": "DSCN2512", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8185/8350324574_198cb906c6_o.jpg", "secret": "2869f47fd9", "media": "photo", "latitude": "32.948164", "id": "8350324574", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2013-01-01 00:40:05", "license": "5", "title": "DSCN2519", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8186/8349261695_a3ffe494d6_o.jpg", "secret": "7872e240ab", "media": "photo", "latitude": "32.948164", "id": "8349261695", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2013-01-01 00:40:53", "license": "5", "title": "DSCN2522", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8188/8350323328_26ee22f8e0_o.jpg", "secret": "4cf6150866", "media": "photo", "latitude": "32.948164", "id": "8350323328", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2013-01-01 00:41:07", "license": "5", "title": "DSCN2523", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8468/8349260199_4b6474e341_o.jpg", "secret": "f94cee1f9e", "media": "photo", "latitude": "32.948164", "id": "8349260199", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2013-01-01 00:45:29", "license": "5", "title": "DSCN2525", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8051/8349259523_10888d4f5d_o.jpg", "secret": "8770b61e30", "media": "photo", "latitude": "32.948164", "id": "8349259523", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2013-01-01 00:53:11", "license": "5", "title": "DSCN2527", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8074/8349258945_3b6fc9e14c_o.jpg", "secret": "aab9be8e25", "media": "photo", "latitude": "32.948164", "id": "8349258945", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2013-01-01 00:53:31", "license": "5", "title": "DSCN2528", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8328/8350320724_428ff82df7_o.jpg", "secret": "6878b12132", "media": "photo", "latitude": "32.948164", "id": "8350320724", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2013-01-01 00:56:58", "license": "5", "title": "DSCN2531", "text": "", "album_id": "72157632439821875", "longitude": "-96.702539", "url_o": "https://farm9.staticflickr.com/8470/8350334004_98929a202e_o.jpg", "secret": "eb27edbc69", "media": "photo", "latitude": "32.948164", "id": "8350334004", "tags": "2012 newyearseve2012 marysbrewers"}, {"datetaken": "2012-05-06 14:19:27", "license": "3", "title": "Exhibition at Hamburgerbanhof Berlin", "text": "", "album_id": "72157629614500404", "longitude": "13.372045", "url_o": "https://farm8.staticflickr.com/7275/7002675114_d38dcc0b66_o.jpg", "secret": "e3708cb0a0", "media": "photo", "latitude": "52.528421", "id": "7002675114", "tags": "berlin film museum kopp exhibition 400 instalation rossman corentin hamburgerbanhof"}, {"datetaken": "2012-05-06 14:31:42", "license": "3", "title": "Fireworks in Kreuzberg, NYE 2012", "text": "", "album_id": "72157629614500404", "longitude": "13.421559", "url_o": "https://farm8.staticflickr.com/7072/7002674332_d15502dca5_o.jpg", "secret": "a11aa963ca", "media": "photo", "latitude": "52.490489", "id": "7002674332", "tags": "berlin film kreuzberg fireworks kodak trix nye kopp 400 newyearseve roofview corentin"}, {"datetaken": "2012-05-06 14:31:54", "license": "3", "title": "Home sweet home session : Thibault playing", "text": "", "album_id": "72157629614500404", "longitude": "13.426537", "url_o": "https://farm8.staticflickr.com/7201/7002673268_e3417ab441_o.jpg", "secret": "c314b26c53", "media": "photo", "latitude": "52.498785", "id": "7002673268", "tags": "party berlin film dj kodak trix kopp 400 newyearseve techno madmax homesweethome thibault corentin"}, {"datetaken": "2012-05-06 14:35:38", "license": "3", "title": "Pierre", "text": "", "album_id": "72157629614500404", "longitude": "13.426666", "url_o": "https://farm8.staticflickr.com/7251/7002670224_2cf8a3dde6_o.jpg", "secret": "dc3219e962", "media": "photo", "latitude": "52.498719", "id": "7002670224", "tags": "film kodak portait trix kopp 400 newyearseve corentin"}, {"datetaken": "2012-05-06 14:35:49", "license": "3", "title": "ceiling @ home sweet home session NYE 2012", "text": "", "album_id": "72157629614500404", "longitude": "13.426451", "url_o": "https://farm6.staticflickr.com/5316/7148761587_fb2bd0b2df_o.jpg", "secret": "80277e3be6", "media": "photo", "latitude": "52.498915", "id": "7148761587", "tags": "light film kodak trix kopp 400 newyearseve ceilling corentin partyclub"}, {"datetaken": "2012-05-06 14:36:32", "license": "3", "title": "Hannah", "text": "", "album_id": "72157629614500404", "longitude": "13.426537", "url_o": "https://farm8.staticflickr.com/7257/7002671666_6d40805600_o.jpg", "secret": "a7e9dc3ea3", "media": "photo", "latitude": "52.498824", "id": "7002671666", "tags": "party film girl dancing kodak trix kopp 400 newyearseve corentin"}, {"datetaken": "2012-05-06 14:41:19", "license": "3", "title": "Exhibition at Hamburgerbanhof Berlin", "text": "", "album_id": "72157629614500404", "longitude": "13.372067", "url_o": "https://farm8.staticflickr.com/7256/7002675998_3bb355d68b_o.jpg", "secret": "f00cbae579", "media": "photo", "latitude": "52.528477", "id": "7002675998", "tags": "berlin film museum kopp exhibition 400 instalation rossman corentin hamburgerbanhof"}, {"datetaken": "2012-05-06 14:41:41", "license": "3", "title": "Exhibition at Hamburgerbanhof Berlin : Tomas Saraceno", "text": "", "album_id": "72157629614500404", "longitude": "13.372045", "url_o": "https://farm8.staticflickr.com/7123/7148771071_ca72c07919_o.jpg", "secret": "a6d0ffffea", "media": "photo", "latitude": "52.528490", "id": "7148771071", "tags": "berlin film museum kopp exhibition 400 tomas instalation saraceno rossman corentin hamburgerbanhof"}, {"datetaken": "2012-05-06 14:42:16", "license": "3", "title": "Exhibition at Hamburgerbanhof Berlin : Tomas Saraceno", "text": "", "album_id": "72157629614500404", "longitude": "13.372056", "url_o": "https://farm8.staticflickr.com/7195/7148772049_e7c31aef6a_o.jpg", "secret": "3e4314a871", "media": "photo", "latitude": "52.528467", "id": "7148772049", "tags": "berlin film museum kopp exhibition 400 tomas instalation saraceno rossman corentin hamburgerbanhof"}, {"datetaken": "2012-05-06 14:42:30", "license": "3", "title": "Exhibition at Hamburgerbanhof Berlin : Tomas Saraceno", "text": "", "album_id": "72157629614500404", "longitude": "13.372131", "url_o": "https://farm9.staticflickr.com/8004/7002677306_3a484c7fa8_o.jpg", "secret": "15ec90fb78", "media": "photo", "latitude": "52.528428", "id": "7002677306", "tags": "berlin film museum kopp exhibition 400 tomas instalation saraceno rossman corentin hamburgerbanhof"}, {"datetaken": "2012-05-06 14:42:56", "license": "3", "title": "Exhibition at Hamburgerbanhof Berlin : Tomas Saraceno", "text": "", "album_id": "72157629614500404", "longitude": "13.372099", "url_o": "https://farm8.staticflickr.com/7258/7148769497_5520674323_o.jpg", "secret": "3c920073b5", "media": "photo", "latitude": "52.528451", "id": "7148769497", "tags": "berlin film museum kopp exhibition 400 tomas instalation saraceno rossman corentin hamburgerbanhof"}, {"datetaken": "2012-05-06 14:43:23", "license": "3", "title": "Wroclaw, next to the multimedia fountain", "text": "", "album_id": "72157629614500404", "longitude": "17.026699", "url_o": "https://farm9.staticflickr.com/8154/7002682260_1b7e7638dd_o.jpg", "secret": "442c58854b", "media": "photo", "latitude": "51.108039", "id": "7002682260", "tags": "film fountain kopp 400 multimedia wroclaw breslau rossman corentin"}, {"datetaken": "2012-05-06 17:25:37", "license": "3", "title": "Exhibition at Hamburgerbanhof Berlin : Anouk", "text": "", "album_id": "72157629614500404", "longitude": "13.372077", "url_o": "https://farm8.staticflickr.com/7247/7148770327_8fa3b05389_o.jpg", "secret": "e79b544007", "media": "photo", "latitude": "52.528441", "id": "7148770327", "tags": "berlin film museum kopp exhibition 400 tomas instalation saraceno rossman corentin hamburgerbanhof"}, {"datetaken": "2004-12-31 13:57:28", "license": "3", "title": "IMG_1425", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4257579_79cf2cbb50_o.jpg", "secret": "79cf2cbb50", "media": "photo", "latitude": "0", "id": "4257579", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 13:57:44", "license": "3", "title": "IMG_1428", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4257686_131f23a3a4_o.jpg", "secret": "131f23a3a4", "media": "photo", "latitude": "0", "id": "4257686", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 13:58:02", "license": "3", "title": "IMG_1432", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4257763_85f740610d_o.jpg", "secret": "85f740610d", "media": "photo", "latitude": "0", "id": "4257763", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 15:29:14", "license": "3", "title": "IMG_1445", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4257842_26572415f3_o.jpg", "secret": "26572415f3", "media": "photo", "latitude": "0", "id": "4257842", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 16:13:51", "license": "3", "title": "IMG_1460", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4257909_6d28992302_o.jpg", "secret": "6d28992302", "media": "photo", "latitude": "0", "id": "4257909", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 16:14:51", "license": "3", "title": "IMG_1463", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3479460_1fdc717cce_o.jpg", "secret": "1fdc717cce", "media": "photo", "latitude": "0", "id": "3479460", "tags": "london night landscape gherkin moody dramatic"}, {"datetaken": "2004-12-31 16:15:20", "license": "3", "title": "IMG_1465", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4257985_98e6c144ce_o.jpg", "secret": "98e6c144ce", "media": "photo", "latitude": "0", "id": "4257985", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 16:15:32", "license": "3", "title": "IMG_1466", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4258055_bb2f345c5b_o.jpg", "secret": "bb2f345c5b", "media": "photo", "latitude": "0", "id": "4258055", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 16:15:53", "license": "3", "title": "IMG_1468", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4258121_cc0f9fe814_o.jpg", "secret": "cc0f9fe814", "media": "photo", "latitude": "0", "id": "4258121", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 16:16:07", "license": "3", "title": "IMG_1469", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4258213_06080dbea5_o.jpg", "secret": "06080dbea5", "media": "photo", "latitude": "0", "id": "4258213", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 16:16:21", "license": "3", "title": "IMG_1470", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4258305_2d26c11548_o.jpg", "secret": "2d26c11548", "media": "photo", "latitude": "0", "id": "4258305", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 16:16:39", "license": "3", "title": "IMG_1472", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4258385_d04202a8d7_o.jpg", "secret": "d04202a8d7", "media": "photo", "latitude": "0", "id": "4258385", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 16:16:46", "license": "3", "title": "IMG_1473", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4258458_a3fb5792d1_o.jpg", "secret": "a3fb5792d1", "media": "photo", "latitude": "0", "id": "4258458", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 16:22:41", "license": "3", "title": "IMG_1492", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4258527_65eb9cabc8_o.jpg", "secret": "65eb9cabc8", "media": "photo", "latitude": "0", "id": "4258527", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 16:29:19", "license": "3", "title": "IMG_1500", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3480842_a7ce68f849_o.jpg", "secret": "a7ce68f849", "media": "photo", "latitude": "0", "id": "3480842", "tags": "london megacities"}, {"datetaken": "2004-12-31 16:34:00", "license": "3", "title": "IMG_1502", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4258609_bbe64453d2_o.jpg", "secret": "bbe64453d2", "media": "photo", "latitude": "0", "id": "4258609", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 16:38:44", "license": "3", "title": "IMG_1509", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4258677_bd09e0b7f8_o.jpg", "secret": "bd09e0b7f8", "media": "photo", "latitude": "0", "id": "4258677", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 16:41:10", "license": "3", "title": "IMG_1515", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4258728_9926fa9777_o.jpg", "secret": "9926fa9777", "media": "photo", "latitude": "0", "id": "4258728", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 16:45:12", "license": "3", "title": "IMG_1521", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4258823_24530d300d_o.jpg", "secret": "24530d300d", "media": "photo", "latitude": "0", "id": "4258823", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 22:52:40", "license": "3", "title": "IMG_1549", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4258910_7fab85d894_o.jpg", "secret": "7fab85d894", "media": "photo", "latitude": "0", "id": "4258910", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 22:55:14", "license": "3", "title": "IMG_1555", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4258995_22dfb735bd_o.jpg", "secret": "22dfb735bd", "media": "photo", "latitude": "0", "id": "4258995", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 23:04:02", "license": "3", "title": "IMG_1573", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4259085_92d0d17222_o.jpg", "secret": "92d0d17222", "media": "photo", "latitude": "0", "id": "4259085", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 23:09:13", "license": "3", "title": "IMG_1577", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4259150_8860e19319_o.jpg", "secret": "8860e19319", "media": "photo", "latitude": "0", "id": "4259150", "tags": "nye04 london newyear"}, {"datetaken": "2004-12-31 23:12:16", "license": "3", "title": "IMG_1578", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4259247_21ad65b7f7_o.jpg", "secret": "21ad65b7f7", "media": "photo", "latitude": "0", "id": "4259247", "tags": "nye04 london newyear"}, {"datetaken": "2005-01-01 00:01:31", "license": "3", "title": "IMG_1628", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4259325_7bf496db98_o.jpg", "secret": "7bf496db98", "media": "photo", "latitude": "0", "id": "4259325", "tags": "nye04 london newyear"}, {"datetaken": "2005-01-01 00:02:54", "license": "3", "title": "IMG_1638", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4259391_e05e7758fa_o.jpg", "secret": "e05e7758fa", "media": "photo", "latitude": "0", "id": "4259391", "tags": "nye04 london newyear"}, {"datetaken": "2005-01-01 00:06:03", "license": "3", "title": "IMG_1672", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4259460_45421babc9_o.jpg", "secret": "45421babc9", "media": "photo", "latitude": "0", "id": "4259460", "tags": "nye04 london newyear"}, {"datetaken": "2005-01-01 00:09:09", "license": "3", "title": "IMG_1688", "text": "", "album_id": "100423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4259558_c0ed22916e_o.jpg", "secret": "c0ed22916e", "media": "photo", "latitude": "0", "id": "4259558", "tags": "nye04 london newyear"}, {"datetaken": "2013-12-27 12:06:15", "license": "4", "title": "New Waterford Crystal Installed On The New Year's Eve Ball", "text": "", "album_id": "72157639090930144", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3705/11591117916_34e7137fc2_o.jpg", "secret": "4282526d65", "media": "photo", "latitude": "0", "id": "11591117916", "tags": "nyc newyorkcity ball crystal nye landmark timessquare newyearseve waterford balldrop 2014 tsq nyeball newyearseveball 2013 nyetsq"}, {"datetaken": "2013-12-27 12:11:34", "license": "4", "title": "New Waterford Crystal Installed On The New Year's Eve Ball", "text": "", "album_id": "72157639090930144", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5496/11590525183_27471ca307_o.jpg", "secret": "a31a632681", "media": "photo", "latitude": "0", "id": "11590525183", "tags": "nyc newyorkcity ball crystal nye landmark timessquare newyearseve waterford balldrop 2014 tsq nyeball newyearseveball 2013 nyetsq"}, {"datetaken": "2013-12-27 12:17:42", "license": "4", "title": "New Waterford Crystal Installed On The New Year's Eve Ball", "text": "", "album_id": "72157639090930144", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7311/11590523983_0d08cfd10a_o.jpg", "secret": "f5bffa69cc", "media": "photo", "latitude": "0", "id": "11590523983", "tags": "nyc newyorkcity ball crystal nye landmark timessquare newyearseve waterford balldrop 2014 tsq nyeball newyearseveball 2013 nyetsq"}, {"datetaken": "2013-12-27 12:18:44", "license": "4", "title": "New Waterford Crystal Installed On The New Year's Eve Ball", "text": "", "album_id": "72157639090930144", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2868/11591111666_dabd4d1a86_o.jpg", "secret": "92416041c3", "media": "photo", "latitude": "0", "id": "11591111666", "tags": "nyc newyorkcity ball crystal nye landmark timessquare newyearseve waterford balldrop 2014 tsq nyeball newyearseveball 2013 nyetsq"}, {"datetaken": "2013-12-27 12:19:10", "license": "4", "title": "New Waterford Crystal Installed On The New Year's Eve Ball", "text": "", "album_id": "72157639090930144", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3671/11590519273_c67622d5c7_o.jpg", "secret": "6c660e215c", "media": "photo", "latitude": "0", "id": "11590519273", "tags": "nyc newyorkcity ball crystal nye landmark timessquare newyearseve waterford balldrop 2014 tsq nyeball newyearseveball 2013 nyetsq"}, {"datetaken": "2013-12-27 12:20:00", "license": "4", "title": "New Waterford Crystal Installed On The New Year's Eve Ball", "text": "", "album_id": "72157639090930144", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2835/11591493763_8d5086905f_o.jpg", "secret": "58bd93acf7", "media": "photo", "latitude": "0", "id": "11591493763", "tags": "nyc newyorkcity ball nye timessquare newyearseve waterfordcrystal nyetsq"}, {"datetaken": "2013-12-27 12:21:13", "license": "4", "title": "New Waterford Crystal Installed On The New Year's Eve Ball", "text": "", "album_id": "72157639090930144", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7445/11590516603_6daa9a7744_o.jpg", "secret": "1bdd8f87ca", "media": "photo", "latitude": "0", "id": "11590516603", "tags": "nyc newyorkcity ball crystal nye landmark timessquare newyearseve waterford balldrop 2014 tsq nyeball newyearseveball 2013 nyetsq"}, {"datetaken": "2013-12-27 12:21:29", "license": "4", "title": "New Waterford Crystal Installed On The New Year's Eve Ball", "text": "", "album_id": "72157639090930144", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7353/11591103646_0d820bdb7d_o.jpg", "secret": "110063cd82", "media": "photo", "latitude": "0", "id": "11591103646", "tags": "nyc newyorkcity ball crystal nye landmark timessquare newyearseve waterford balldrop 2014 tsq nyeball newyearseveball 2013 nyetsq"}, {"datetaken": "2013-12-27 12:24:25", "license": "4", "title": "New Waterford Crystal Installed On The New Year's Eve Ball", "text": "", "album_id": "72157639090930144", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2861/11590760395_1ff0a358d6_o.jpg", "secret": "32d0156b2b", "media": "photo", "latitude": "0", "id": "11590760395", "tags": "nyc newyorkcity ball nye timessquare newyearseve waterfordcrystal nyetsq"}, {"datetaken": "2013-12-27 12:25:07", "license": "4", "title": "New Waterford Crystal Installed On The New Year's Eve Ball", "text": "", "album_id": "72157639090930144", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5505/11590625934_f81597a141_o.jpg", "secret": "652c8f418f", "media": "photo", "latitude": "0", "id": "11590625934", "tags": "nyc newyorkcity ball crystal nye landmark timessquare newyearseve waterford balldrop 2014 tsq nyeball newyearseveball 2013 nyetsq"}, {"datetaken": "2013-12-27 12:33:07", "license": "4", "title": "New Waterford Crystal Installed On The New Year's Eve Ball", "text": "", "album_id": "72157639090930144", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7293/11590622884_6cf3ce516c_o.jpg", "secret": "fcf0051b83", "media": "photo", "latitude": "0", "id": "11590622884", "tags": "nyc newyorkcity ball crystal nye landmark timessquare newyearseve waterford balldrop 2014 tsq nyeball newyearseveball 2013 nyetsq"}, {"datetaken": "2013-12-27 12:34:13", "license": "4", "title": "New Waterford Crystal Installed On The New Year's Eve Ball", "text": "", "album_id": "72157639090930144", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2838/11590506193_65cf25ccb4_o.jpg", "secret": "0ef99b224f", "media": "photo", "latitude": "0", "id": "11590506193", "tags": "nyc newyorkcity ball crystal nye landmark timessquare newyearseve waterford balldrop 2014 tsq nyeball newyearseveball 2013 nyetsq"}, {"datetaken": "2013-12-27 12:38:00", "license": "4", "title": "New Waterford Crystal Installed On The New Year's Eve Ball", "text": "", "album_id": "72157639090930144", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2818/11591092826_2e9eca28c7_o.jpg", "secret": "f47ac9e56a", "media": "photo", "latitude": "0", "id": "11591092826", "tags": "nyc newyorkcity ball crystal nye landmark timessquare newyearseve waterford balldrop 2014 tsq nyeball newyearseveball 2013 nyetsq"}, {"datetaken": "2013-12-27 12:38:40", "license": "4", "title": "New Waterford Crystal Installed On The New Year's Eve Ball", "text": "", "album_id": "72157639090930144", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3721/11590441285_aee9b89512_o.jpg", "secret": "92b7f30fbe", "media": "photo", "latitude": "0", "id": "11590441285", "tags": "nyc newyorkcity ball nye timessquare newyearseve waterfordcrystal nyetsq"}, {"datetaken": "2013-12-27 12:44:05", "license": "4", "title": "New Waterford Crystal Installed On The New Year's Eve Ball", "text": "", "album_id": "72157639090930144", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5502/11590612724_6788fe45aa_o.jpg", "secret": "477195b2c6", "media": "photo", "latitude": "0", "id": "11590612724", "tags": "nyc newyorkcity ball crystal nye landmark timessquare newyearseve waterford balldrop 2014 tsq nyeball newyearseveball 2013 nyetsq"}, {"datetaken": "2013-12-27 12:50:37", "license": "4", "title": "New Waterford Crystal Installed On The New Year's Eve Ball", "text": "", "album_id": "72157639090930144", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7429/11590291765_6d79c6ca06_o.jpg", "secret": "7a5bed9cbe", "media": "photo", "latitude": "0", "id": "11590291765", "tags": "nyc newyorkcity ball crystal nye landmark timessquare newyearseve waterford balldrop 2014 tsq nyeball newyearseveball 2013 nyetsq"}, {"datetaken": "2013-12-30 13:42:46", "license": "1", "title": "Starting NYE with coffee and reading", "text": "", "album_id": "72157641674917713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7437/12843468144_1e0ee68b05_o.jpg", "secret": "30f7dfafbb", "media": "photo", "latitude": "0", "id": "12843468144", "tags": "newyork coffee book cafe nye salt hudson swallow latteart cortado swallowcoffee"}, {"datetaken": "2013-12-30 14:43:03", "license": "1", "title": "We lunched with Peter as he was driving through Hudson!", "text": "", "album_id": "72157641674917713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7391/12843048515_27de562b6d_o.jpg", "secret": "0820f18f44", "media": "photo", "latitude": "0", "id": "12843048515", "tags": "newyork nye hudson grazin reinakubota grazindiner"}, {"datetaken": "2013-12-30 14:45:02", "license": "1", "title": "The Stines at Grazin' Diner", "text": "", "album_id": "72157641674917713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7291/12843462804_c310895b6a_o.jpg", "secret": "6af7298c8e", "media": "photo", "latitude": "0", "id": "12843462804", "tags": "newyork nye hudson grazin grazindiner"}, {"datetaken": "2013-12-30 18:11:37", "license": "1", "title": "Spotty Dog Books and Ale", "text": "", "album_id": "72157641674917713", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2859/12843042835_962aba7b38_o.jpg", "secret": "1e28698136", "media": "photo", "latitude": "0", "id": "12843042835", "tags": "newyork nye hudson spottydogbooksandale"}, {"datetaken": "2013-12-30 21:03:25", "license": "1", "title": "Hudson Food Studio", "text": "", "album_id": "72157641674917713", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3731/12844395593_f9406ea4a4_o.jpg", "secret": "f03baefdcd", "media": "photo", "latitude": "0", "id": "12844395593", "tags": "ny newyork nye upstate newyearseve hudson hudsonfoodstudio"}, {"datetaken": "2013-12-30 21:29:55", "license": "1", "title": "Roasted Brussel Sprouts", "text": "", "album_id": "72157641674917713", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2826/12844315645_33230c12c4_o.jpg", "secret": "150f59dac7", "media": "photo", "latitude": "0", "id": "12844315645", "tags": "food ny newyork nye upstate newyearseve hudson hudsonfoodstudio"}, {"datetaken": "2013-12-30 21:40:36", "license": "1", "title": "Spicy Chicken and Rice Noodles", "text": "", "album_id": "72157641674917713", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3807/12844723404_d54657891c_o.jpg", "secret": "2e0647ae11", "media": "photo", "latitude": "0", "id": "12844723404", "tags": "food ny newyork nye upstate newyearseve hudson hudsonfoodstudio"}, {"datetaken": "2013-12-31 14:02:03", "license": "1", "title": "Wonderful sandwich at Bonfiglio & Bread", "text": "", "album_id": "72157641674917713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7311/12844386723_f48c4e6f3b_o.jpg", "secret": "c07933b4b6", "media": "photo", "latitude": "0", "id": "12844386723", "tags": "food ny newyork purple nye upstate ham sandwich slaw newyearseve hudson bonfiglio bonfigliobread"}, {"datetaken": "2013-12-31 17:30:29", "license": "1", "title": "Warren St., Hudson", "text": "", "album_id": "72157641674917713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7419/12844384423_b181214819_o.jpg", "secret": "886c241f62", "media": "photo", "latitude": "0", "id": "12844384423", "tags": "blackandwhite bw ny newyork nye upstate newyearseve hudson"}, {"datetaken": "2013-12-31 17:32:15", "license": "1", "title": "I hear ya", "text": "", "album_id": "72157641674917713", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3748/12844305455_6fc251445e_o.jpg", "secret": "76c9e8a13d", "media": "photo", "latitude": "0", "id": "12844305455", "tags": "ny newyork nye upstate newyearseve hudson"}, {"datetaken": "2013-12-31 23:33:22", "license": "1", "title": "A quiet New Year's Eve at Swoon Kitchenbar", "text": "", "album_id": "72157641674917713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7324/12844380223_edb02592fd_o.jpg", "secret": "7f47217d83", "media": "photo", "latitude": "0", "id": "12844380223", "tags": "ny newyork swoon nye upstate newyearseve hudson swoonkitchenbar"}, {"datetaken": "2014-01-01 00:22:41", "license": "1", "title": "The kitchen at Swoon on New Year's Eve", "text": "", "album_id": "72157641674917713", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2855/12844711864_4c2509ccf0_o.jpg", "secret": "6c3a0f3636", "media": "photo", "latitude": "0", "id": "12844711864", "tags": "blackandwhite bw ny newyork swoon nye upstate newyearseve hudson swoonkitchenbar"}, {"datetaken": "2014-01-01 13:07:53", "license": "1", "title": "Sandwich for the road (train!)", "text": "", "album_id": "72157641674917713", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3769/12844709524_a5e0932fc9_o.jpg", "secret": "19d2198558", "media": "photo", "latitude": "0", "id": "12844709524", "tags": "food ny newyork nye upstate ham sandwich homemade greens newyearseve eggs hudson fav homecooked spinach jamon serrano"}, {"datetaken": "2014-01-01 13:08:58", "license": "1", "title": "I love making sandwiches", "text": "", "album_id": "72157641674917713", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3689/12844706914_a629c0873c_o.jpg", "secret": "b44c37c9c0", "media": "photo", "latitude": "0", "id": "12844706914", "tags": "food ny newyork nye upstate ham sandwich homemade greens newyearseve eggs hudson homecooked spinach jamon serrano"}, {"datetaken": "2004-01-07 00:00:00", "license": "5", "title": "Empire State Building", "text": "", "album_id": "842625", "longitude": "-73.985323", "url_o": "https://farm1.staticflickr.com/30/38220331_d8c1d0facc_o.jpg", "secret": "d8c1d0facc", "media": "photo", "latitude": "40.748305", "id": "38220331", "tags": "newyork building state empire"}, {"datetaken": "2004-01-07 07:47:08", "license": "5", "title": "Times Square, New Year's Eve", "text": "", "album_id": "842625", "longitude": "-73.985066", "url_o": "https://farm1.staticflickr.com/31/38219748_f9d7e9672b_o.jpg", "secret": "f9d7e9672b", "media": "photo", "latitude": "40.759236", "id": "38219748", "tags": "timessquare newyork newyear"}, {"datetaken": "2004-01-07 07:47:08", "license": "5", "title": "Times Square, New Year (just)", "text": "", "album_id": "842625", "longitude": "-73.985066", "url_o": "https://farm1.staticflickr.com/23/38219730_a622d4f87f_o.jpg", "secret": "a622d4f87f", "media": "photo", "latitude": "40.759236", "id": "38219730", "tags": "timessquare newyork newyear"}, {"datetaken": "2004-01-07 07:47:08", "license": "5", "title": "Chrysler Building", "text": "", "album_id": "842625", "longitude": "-73.976140", "url_o": "https://farm1.staticflickr.com/28/38220315_76205e1bbe_o.jpg", "secret": "76205e1bbe", "media": "photo", "latitude": "40.751450", "id": "38220315", "tags": "newyork building chrysler"}, {"datetaken": "2004-01-08 07:27:21", "license": "5", "title": "New York Stock Exchange", "text": "", "album_id": "842625", "longitude": "-74.011169", "url_o": "https://farm1.staticflickr.com/24/38220341_20a50f98f5_o.jpg", "secret": "20a50f98f5", "media": "photo", "latitude": "40.706986", "id": "38220341", "tags": "christmas newyork stock exchange nyse"}, {"datetaken": "2004-01-08 07:27:21", "license": "5", "title": "WTC Memorial", "text": "", "album_id": "842625", "longitude": "-74.016888", "url_o": "https://farm1.staticflickr.com/28/38220307_a20854674d_o.jpg", "secret": "a20854674d", "media": "photo", "latitude": "40.702553", "id": "38220307", "tags": "world park newyork memorial centre battery center wtc trade"}, {"datetaken": "2004-01-08 07:27:21", "license": "5", "title": "Flatiron Building", "text": "", "album_id": "842625", "longitude": "-73.989615", "url_o": "https://farm1.staticflickr.com/24/38220295_b42e466b8d_o.jpg", "secret": "b42e466b8d", "media": "photo", "latitude": "40.741233", "id": "38220295", "tags": "newyork building flatiron"}, {"datetaken": "2004-01-08 07:27:21", "license": "5", "title": "P1100014", "text": "", "album_id": "842625", "longitude": "-74.010525", "url_o": "https://farm1.staticflickr.com/25/38220291_bc79f2e38c_o.jpg", "secret": "bc79f2e38c", "media": "photo", "latitude": "40.711162", "id": "38220291", "tags": "newyork"}, {"datetaken": "2004-01-08 07:27:21", "license": "5", "title": "National Museum of the American Indian, Smithsonian, NYC", "text": "", "album_id": "842625", "longitude": "-74.012886", "url_o": "https://farm1.staticflickr.com/26/38220276_7c38c4cd53_o.jpg", "secret": "7c38c4cd53", "media": "photo", "latitude": "40.702667", "id": "38220276", "tags": "new york newyork museum smithsonian george gustav heye"}, {"datetaken": "2004-01-08 07:27:21", "license": "5", "title": "James A Farley Post Office, New York", "text": "", "album_id": "842625", "longitude": "-73.994700", "url_o": "https://farm1.staticflickr.com/27/38220259_352333fcdc_o.jpg", "secret": "352333fcdc", "media": "photo", "latitude": "40.750995", "id": "38220259", "tags": "new york newyork james office post farley"}, {"datetaken": "2005-12-31 23:00:11", "license": "5", "title": "Stacey & Larry", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/80127954_14a30ed2e5_o.jpg", "secret": "14a30ed2e5", "media": "photo", "latitude": "0", "id": "80127954", "tags": "larry newyearseve newyears staceys"}, {"datetaken": "2005-12-31 23:00:16", "license": "5", "title": "Davey & Misha", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/80128120_5e54e7488f_o.jpg", "secret": "5e54e7488f", "media": "photo", "latitude": "0", "id": "80128120", "tags": "newyears davey misha newyearseve"}, {"datetaken": "2005-12-31 23:02:38", "license": "5", "title": "Snack table", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80128293_ce74bf3a27_o.jpg", "secret": "ce74bf3a27", "media": "photo", "latitude": "0", "id": "80128293", "tags": "newyears newyearseve"}, {"datetaken": "2005-12-31 23:02:43", "license": "5", "title": "Matthew gets elbowed", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/80128495_675150ad95_o.jpg", "secret": "675150ad95", "media": "photo", "latitude": "0", "id": "80128495", "tags": "newyears matthew newyearseve"}, {"datetaken": "2005-12-31 23:05:41", "license": "5", "title": "Dance", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80128693_20d20b2aeb_o.jpg", "secret": "20d20b2aeb", "media": "photo", "latitude": "0", "id": "80128693", "tags": "newyears newyearseve"}, {"datetaken": "2005-12-31 23:07:35", "license": "5", "title": "Larry & Viki (1)", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/80128836_baddf57625_o.jpg", "secret": "baddf57625", "media": "photo", "latitude": "0", "id": "80128836", "tags": "newyears newyearseve larry viki"}, {"datetaken": "2005-12-31 23:08:11", "license": "5", "title": "Larry & Viki (2)", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/80129193_4c88634221_o.jpg", "secret": "4c88634221", "media": "photo", "latitude": "0", "id": "80129193", "tags": "newyears newyearseve larry viki"}, {"datetaken": "2005-12-31 23:15:28", "license": "5", "title": "Sandy & Cornelia", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/80129394_bf3421fb98_o.jpg", "secret": "bf3421fb98", "media": "photo", "latitude": "0", "id": "80129394", "tags": "newyears newyearseve sandy cornelia"}, {"datetaken": "2005-12-31 23:20:58", "license": "5", "title": "The bar", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/80129594_47c86abb01_o.jpg", "secret": "47c86abb01", "media": "photo", "latitude": "0", "id": "80129594", "tags": "newyears newyearseve"}, {"datetaken": "2005-12-31 23:40:39", "license": "5", "title": "No more TV", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/80129802_e643783dc2_o.jpg", "secret": "e643783dc2", "media": "photo", "latitude": "0", "id": "80129802", "tags": "newyears newyearseve"}, {"datetaken": "2006-01-01 00:00:01", "license": "5", "title": "Happy New Year", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/80130000_4d6556e053_o.jpg", "secret": "4d6556e053", "media": "photo", "latitude": "0", "id": "80130000", "tags": "newyears newyearsday cornelia dave"}, {"datetaken": "2006-01-01 00:06:17", "license": "5", "title": "Smile", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/80130287_ba89064cf0_o.jpg", "secret": "ba89064cf0", "media": "photo", "latitude": "0", "id": "80130287", "tags": "newyears newyearsday allison"}, {"datetaken": "2006-01-01 00:50:07", "license": "5", "title": "Misha on Train", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/80130498_f734af9f31_o.jpg", "secret": "f734af9f31", "media": "photo", "latitude": "0", "id": "80130498", "tags": "newyears newyearsday misha redline chicago topv111"}, {"datetaken": "2006-01-01 00:50:16", "license": "5", "title": "Misha behind hood", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/80130718_97bbb91fba_o.jpg", "secret": "97bbb91fba", "media": "photo", "latitude": "0", "id": "80130718", "tags": "newyears newyearsday misha redline chicago topv111"}, {"datetaken": "2006-01-01 00:53:42", "license": "5", "title": "Heart glasses", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/80130859_81b1d3a1eb_o.jpg", "secret": "81b1d3a1eb", "media": "photo", "latitude": "0", "id": "80130859", "tags": "newyears newyearsday redline sunglasses"}, {"datetaken": "2006-01-01 01:07:03", "license": "5", "title": "Girl on train", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/80131030_eb62c7e2f2_o.jpg", "secret": "eb62c7e2f2", "media": "photo", "latitude": "0", "id": "80131030", "tags": "newyears newyearsday redline"}, {"datetaken": "2006-01-01 01:08:25", "license": "5", "title": "Crowded train (1)", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/80131205_7d15ae9c44_o.jpg", "secret": "7d15ae9c44", "media": "photo", "latitude": "0", "id": "80131205", "tags": "newyears newyearsday redline"}, {"datetaken": "2006-01-01 01:10:05", "license": "5", "title": "Crowded train (2)", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/80131400_97c62cf441_o.jpg", "secret": "97c62cf441", "media": "photo", "latitude": "0", "id": "80131400", "tags": "newyears newyearsday redline"}, {"datetaken": "2006-01-01 01:10:42", "license": "5", "title": "Crowded train (3)", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80131567_aab77d8ca3_o.jpg", "secret": "aab77d8ca3", "media": "photo", "latitude": "0", "id": "80131567", "tags": "newyears newyearsday redline"}, {"datetaken": "2006-01-01 01:10:52", "license": "5", "title": "Viagra ad guy on crowded train", "text": "", "album_id": "1716566", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/80131749_e8400bcc7c_o.jpg", "secret": "e8400bcc7c", "media": "photo", "latitude": "0", "id": "80131749", "tags": "newyears newyearsday redline"}, {"datetaken": "2006-01-01 01:14:29", "license": "5", "title": "New Year's couple", "text": "", "album_id": "1716566", "longitude": "-87.628133", "url_o": "https://farm1.staticflickr.com/43/80131985_235dce5c86_o.jpg", "secret": "235dce5c86", "media": "photo", "latitude": "41.885921", "id": "80131985", "tags": "newyears newyearsday"}, {"datetaken": "2005-12-31 23:41:12", "license": "3", "title": "mathias", "text": "", "album_id": "1715903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80266934_8ff45bab87_o.jpg", "secret": "8ff45bab87", "media": "photo", "latitude": "0", "id": "80266934", "tags": "newyearseve charlyn christan party newyears newyears2006"}, {"datetaken": "2005-12-31 23:44:46", "license": "3", "title": "", "text": "", "album_id": "1715903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80264771_968c113545_o.jpg", "secret": "968c113545", "media": "photo", "latitude": "0", "id": "80264771", "tags": "newyearseve charlyn christan party newyears newyears2006"}, {"datetaken": "2005-12-31 23:47:13", "license": "3", "title": "", "text": "", "album_id": "1715903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/80260314_bb2e08a6d1_o.jpg", "secret": "bb2e08a6d1", "media": "photo", "latitude": "0", "id": "80260314", "tags": "newyearseve charlyn christan party newyears newyears2006"}, {"datetaken": "2005-12-31 23:48:24", "license": "3", "title": "", "text": "", "album_id": "1715903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/80265899_3ec4186e0a_o.jpg", "secret": "3ec4186e0a", "media": "photo", "latitude": "0", "id": "80265899", "tags": "newyearseve charlyn christan party newyears newyears2006"}, {"datetaken": "2005-12-31 23:53:55", "license": "3", "title": "", "text": "", "album_id": "1715903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/80352603_06b4dea585_o.jpg", "secret": "06b4dea585", "media": "photo", "latitude": "0", "id": "80352603", "tags": "newyearsatcharlyns newyears newyearseve party newyears2006"}, {"datetaken": "2005-12-31 23:54:53", "license": "3", "title": "", "text": "", "album_id": "1715903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/80258802_ebffe83985_o.jpg", "secret": "ebffe83985", "media": "photo", "latitude": "0", "id": "80258802", "tags": "newyearseve charlyn christan party newyears newyears2006"}, {"datetaken": "2006-01-01 00:06:58", "license": "3", "title": "", "text": "", "album_id": "1715903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/80503996_1129cd6bcb_o.jpg", "secret": "1129cd6bcb", "media": "photo", "latitude": "0", "id": "80503996", "tags": "newyearseve party newyears newyears2006"}, {"datetaken": "2006-01-01 00:08:58", "license": "3", "title": "", "text": "", "album_id": "1715903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80265230_ce12135209_o.jpg", "secret": "ce12135209", "media": "photo", "latitude": "0", "id": "80265230", "tags": "newyearseve charlyn christan party newyears newyears2006"}, {"datetaken": "2006-01-01 01:01:55", "license": "3", "title": "parlor trick", "text": "", "album_id": "1715903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/80262084_c9ab1166bb_o.jpg", "secret": "c9ab1166bb", "media": "photo", "latitude": "0", "id": "80262084", "tags": "newyearseve charlyn christan party newyears magnet newyears2006"}, {"datetaken": "2006-01-01 01:07:10", "license": "3", "title": "bangin' mac'n cheese", "text": "", "album_id": "1715903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80263513_1a3331926e_o.jpg", "secret": "1a3331926e", "media": "photo", "latitude": "0", "id": "80263513", "tags": "newyearseve charlyn christan party newyears newyears2006"}, {"datetaken": "2006-01-01 01:20:14", "license": "3", "title": "", "text": "", "album_id": "1715903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80504383_b4983c51f5_o.jpg", "secret": "b4983c51f5", "media": "photo", "latitude": "0", "id": "80504383", "tags": "newyearseve party newyears newyears2006"}, {"datetaken": "2006-01-01 01:20:24", "license": "3", "title": "", "text": "", "album_id": "1715903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/80264410_be786d75a0_o.jpg", "secret": "be786d75a0", "media": "photo", "latitude": "0", "id": "80264410", "tags": "newyearseve charlyn christan party newyears newyears2006"}, {"datetaken": "2006-01-01 01:26:43", "license": "3", "title": "fire", "text": "", "album_id": "1715903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/80266416_c04b0d2c41_o.jpg", "secret": "c04b0d2c41", "media": "photo", "latitude": "0", "id": "80266416", "tags": "newyearseve charlyn christan party newyears newyears2006"}, {"datetaken": "2006-01-01 02:11:10", "license": "3", "title": "", "text": "", "album_id": "1715903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80504815_a5efdfe0e8_o.jpg", "secret": "a5efdfe0e8", "media": "photo", "latitude": "0", "id": "80504815", "tags": "newyearseve party newyears newyears2006"}, {"datetaken": "2006-01-01 02:11:21", "license": "3", "title": "", "text": "", "album_id": "1715903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/80263939_2f988df2c1_o.jpg", "secret": "2f988df2c1", "media": "photo", "latitude": "0", "id": "80263939", "tags": "newyearseve charlyn christan party newyears newyears2006"}, {"datetaken": "2006-01-01 02:26:09", "license": "5", "title": "Adnan the grandmaster of celebrations", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/80264991_265ad8f598_o.jpg", "secret": "265ad8f598", "media": "photo", "latitude": "0", "id": "80264991", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:26:15", "license": "5", "title": "Adnan and Maria", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80264992_eb827d503b_o.jpg", "secret": "eb827d503b", "media": "photo", "latitude": "0", "id": "80264992", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:26:29", "license": "5", "title": "Rachel", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/80264993_a66922a8f5_o.jpg", "secret": "a66922a8f5", "media": "photo", "latitude": "0", "id": "80264993", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:26:32", "license": "5", "title": "other members of the new year's eve crew", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/80264994_79f0deab60_o.jpg", "secret": "79f0deab60", "media": "photo", "latitude": "0", "id": "80264994", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:26:37", "license": "5", "title": "other members of the new year's eve crew", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/80264995_fadf10d383_o.jpg", "secret": "fadf10d383", "media": "photo", "latitude": "0", "id": "80264995", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:26:41", "license": "5", "title": "other members of the new year's eve crew", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/80264996_2c82c8f90e_o.jpg", "secret": "2c82c8f90e", "media": "photo", "latitude": "0", "id": "80264996", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:26:45", "license": "5", "title": "Antonis", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/80269100_01f90b0cc6_o.jpg", "secret": "01f90b0cc6", "media": "photo", "latitude": "0", "id": "80269100", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:26:51", "license": "5", "title": "other members of the New Year's Eve crew...", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/80269101_67e0eb24e1_o.jpg", "secret": "67e0eb24e1", "media": "photo", "latitude": "0", "id": "80269101", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:26:54", "license": "5", "title": "other members of the New Year's Eve crew...", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/80269103_e9bdcf4c45_o.jpg", "secret": "e9bdcf4c45", "media": "photo", "latitude": "0", "id": "80269103", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:26:59", "license": "5", "title": "...as if the bike helmet was waterproof...", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/80269104_78d841697f_o.jpg", "secret": "78d841697f", "media": "photo", "latitude": "0", "id": "80269104", "tags": "newyearseve london waterloobridge me"}, {"datetaken": "2006-01-01 02:27:04", "license": "5", "title": "Maria", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/80269106_f20c5298bb_o.jpg", "secret": "f20c5298bb", "media": "photo", "latitude": "0", "id": "80269106", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:27:10", "license": "5", "title": "the Liquid Culture subcrew", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/80269107_1e85cd1e5c_o.jpg", "secret": "1e85cd1e5c", "media": "photo", "latitude": "0", "id": "80269107", "tags": "newyearseve london waterloobridge liquidculture me"}, {"datetaken": "2006-01-01 02:27:37", "license": "5", "title": "Adnan and Maria", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/80277378_18d6e14341_o.jpg", "secret": "18d6e14341", "media": "photo", "latitude": "0", "id": "80277378", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:28:01", "license": "5", "title": "Maria and the flashing bike light", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80277379_26f42878fe_o.jpg", "secret": "26f42878fe", "media": "photo", "latitude": "0", "id": "80277379", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:29:33", "license": "5", "title": "Adnan", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/80277380_c8ea8abb2c_o.jpg", "secret": "c8ea8abb2c", "media": "photo", "latitude": "0", "id": "80277380", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:30:07", "license": "5", "title": "Adnan gets noisy", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/80277381_77c269d7bd_o.jpg", "secret": "77c269d7bd", "media": "photo", "latitude": "0", "id": "80277381", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:30:12", "license": "5", "title": "Maria gets noisy too", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/80277382_e5d8f91c37_o.jpg", "secret": "e5d8f91c37", "media": "photo", "latitude": "0", "id": "80277382", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:30:16", "license": "5", "title": "Rachel", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/80277383_7878eaa616_o.jpg", "secret": "7878eaa616", "media": "photo", "latitude": "0", "id": "80277383", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:31:11", "license": "5", "title": "Maria", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/80285900_10006217d1_o.jpg", "secret": "10006217d1", "media": "photo", "latitude": "0", "id": "80285900", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:34:40", "license": "5", "title": "the New Year's Eve crew", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/80285902_5f0b825031_o.jpg", "secret": "5f0b825031", "media": "photo", "latitude": "0", "id": "80285902", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:36:56", "license": "5", "title": "the South Bank at midnight", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/80285903_8d4d5fbfb8_o.jpg", "secret": "8d4d5fbfb8", "media": "photo", "latitude": "0", "id": "80285903", "tags": "newyearseve london waterloobridge southbank"}, {"datetaken": "2006-01-01 02:37:09", "license": "5", "title": "the South Bank at midnight", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/80285904_5246a79423_o.jpg", "secret": "5246a79423", "media": "photo", "latitude": "0", "id": "80285904", "tags": "newyearseve london waterloobridge southbank"}, {"datetaken": "2006-01-01 02:37:25", "license": "5", "title": "the South Bank at midnight", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/80285905_aeebb3337e_o.jpg", "secret": "aeebb3337e", "media": "photo", "latitude": "0", "id": "80285905", "tags": "newyearseve london waterloobridge southbank"}, {"datetaken": "2006-01-01 02:37:35", "license": "5", "title": "South Bank and the London Eye (in outline) at midnight", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80298950_219c4f7167_o.jpg", "secret": "219c4f7167", "media": "photo", "latitude": "0", "id": "80298950", "tags": "newyearseve london waterloobridge southbank londoneye"}, {"datetaken": "2006-01-01 02:48:22", "license": "5", "title": "Westminster at midnight", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/80298954_c93b0124ce_o.jpg", "secret": "c93b0124ce", "media": "photo", "latitude": "0", "id": "80298954", "tags": "newyearseve london waterloobridge westminster"}, {"datetaken": "2006-01-01 02:48:55", "license": "5", "title": "South Bank from Waterloo Bridge", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/80298956_5e9a9f0aea_o.jpg", "secret": "5e9a9f0aea", "media": "photo", "latitude": "0", "id": "80298956", "tags": "newyearseve london waterloobridge southbank"}, {"datetaken": "2006-01-01 02:49:10", "license": "5", "title": "South Bank from Waterloo Bridge", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/80298962_df2ba6083d_o.jpg", "secret": "df2ba6083d", "media": "photo", "latitude": "0", "id": "80298962", "tags": "newyearseve london waterloobridge southbank"}, {"datetaken": "2006-01-01 02:49:19", "license": "5", "title": "South Bank from Waterloo Bridge", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/80298967_039a59d3ec_o.jpg", "secret": "039a59d3ec", "media": "photo", "latitude": "0", "id": "80298967", "tags": "newyearseve london waterloobridge southbank"}, {"datetaken": "2006-01-01 02:49:29", "license": "5", "title": "South Bank from Waterloo Bridge", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/80298970_7c8a61ccf8_o.jpg", "secret": "7c8a61ccf8", "media": "photo", "latitude": "0", "id": "80298970", "tags": "newyearseve london waterloobridge southbank"}, {"datetaken": "2006-01-01 02:49:29", "license": "5", "title": "South Bank from Waterloo Bridge", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80304401_ae00b47f90_o.jpg", "secret": "ae00b47f90", "media": "photo", "latitude": "0", "id": "80304401", "tags": "newyearseve london waterloobridge southbank"}, {"datetaken": "2006-01-01 02:49:42", "license": "5", "title": "London Eye", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/80304402_b8b44e40e9_o.jpg", "secret": "b8b44e40e9", "media": "photo", "latitude": "0", "id": "80304402", "tags": "newyearseve london waterloobridge londoneye"}, {"datetaken": "2006-01-01 02:50:07", "license": "5", "title": "St. Paul's and the City", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80304403_4878c891ed_o.jpg", "secret": "4878c891ed", "media": "photo", "latitude": "0", "id": "80304403", "tags": "newyearseve london waterloobridge stpauls city"}, {"datetaken": "2006-01-01 02:50:20", "license": "5", "title": "St. Paul's and the City", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/80304404_d2f576f519_o.jpg", "secret": "d2f576f519", "media": "photo", "latitude": "0", "id": "80304404", "tags": "newyearseve london waterloobridge stpauls city"}, {"datetaken": "2006-01-01 02:50:50", "license": "5", "title": "Victoria Embankment", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/80304405_efa0c3325d_o.jpg", "secret": "efa0c3325d", "media": "photo", "latitude": "0", "id": "80304405", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:51:20", "license": "5", "title": "Victoria Embankment", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/80304406_41946e9172_o.jpg", "secret": "41946e9172", "media": "photo", "latitude": "0", "id": "80304406", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:52:05", "license": "5", "title": "Victoria Embankment", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80309568_8ffd0a7174_o.jpg", "secret": "8ffd0a7174", "media": "photo", "latitude": "0", "id": "80309568", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2006-01-01 02:52:48", "license": "5", "title": "South Bank from Waterloo Bridge", "text": "", "album_id": "1718007", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/80309569_ac005561da_o.jpg", "secret": "ac005561da", "media": "photo", "latitude": "0", "id": "80309569", "tags": "newyearseve london waterloobridge"}, {"datetaken": "2005-12-31 20:47:26", "license": "2", "title": "Surf and Turf", "text": "", "album_id": "1731229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/81050778_58f951658a_o.jpg", "secret": "58f951658a", "media": "photo", "latitude": "0", "id": "81050778", "tags": "2005 party food vancouver 2006 newyear miller derek tuxedo newyearseve penmachinecom tux surfandturf 2000s joefortes adamwoodall derekmiller penmachine"}, {"datetaken": "2005-12-31 20:47:46", "license": "2", "title": "Derek in Tux", "text": "", "album_id": "1731229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/81050606_ebadaf4e88_o.jpg", "secret": "ebadaf4e88", "media": "photo", "latitude": "0", "id": "81050606", "tags": "2005 party vancouver 2006 newyear miller derek tuxedo newyearseve penmachinecom tux 2000s joefortes millhair adamwoodall derekmiller penmachine"}, {"datetaken": "2005-12-31 21:26:32", "license": "2", "title": "Band 1", "text": "", "album_id": "1731229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/81050479_9dbf1c5892_o.jpg", "secret": "9dbf1c5892", "media": "photo", "latitude": "0", "id": "81050479", "tags": "2005 party distortion vancouver kodak 2006 newyear miller derek tuxedo newyearseve ccd penmachinecom tux 2000s joefortes millhair adamwoodall derekmiller penmachine"}, {"datetaken": "2005-12-31 21:26:42", "license": "2", "title": "Band 2", "text": "", "album_id": "1731229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/81050518_c836158e6a_o.jpg", "secret": "c836158e6a", "media": "photo", "latitude": "0", "id": "81050518", "tags": "2005 party distortion vancouver kodak 2006 newyear miller derek tuxedo newyearseve ccd penmachinecom tux 2000s joefortes millhair adamwoodall derekmiller penmachine"}, {"datetaken": "2005-12-31 21:55:19", "license": "2", "title": "Band 3", "text": "", "album_id": "1731229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/81050539_4dc315094e_o.jpg", "secret": "4dc315094e", "media": "photo", "latitude": "0", "id": "81050539", "tags": "party distortion kodak fave ccd 2000s millhair 2005fave derekmiller penmachine"}, {"datetaken": "2005-12-31 22:38:39", "license": "2", "title": "Baked Alaska!", "text": "", "album_id": "1731229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/81050444_834fd5ee7a_o.jpg", "secret": "834fd5ee7a", "media": "photo", "latitude": "0", "id": "81050444", "tags": "2005 party vancouver 2006 newyear miller derek tuxedo newyearseve penmachinecom tux 2000s joefortes adamwoodall derekmiller penmachine"}, {"datetaken": "2005-12-31 23:30:03", "license": "2", "title": "Drum Mannequin", "text": "", "album_id": "1731229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/81050646_52679fe007_o.jpg", "secret": "52679fe007", "media": "photo", "latitude": "0", "id": "81050646", "tags": "2005 party vancouver 2006 newyear miller derek tuxedo newyearseve penmachinecom tux 2000s joefortes millhair adamwoodall derekmiller penmachine"}, {"datetaken": "2005-12-31 23:43:51", "license": "2", "title": "New Year Headgear", "text": "", "album_id": "1731229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/81050730_ce48f52c61_o.jpg", "secret": "ce48f52c61", "media": "photo", "latitude": "0", "id": "81050730", "tags": "2005 party vancouver 2006 newyear miller derek tuxedo newyearseve penmachinecom tux 2000s joefortes adamwoodall derekmiller penmachine"}, {"datetaken": "2006-01-01 00:43:10", "license": "2", "title": "Choco-Chin", "text": "", "album_id": "1731229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/81050569_d190ed2453_o.jpg", "secret": "d190ed2453", "media": "photo", "latitude": "0", "id": "81050569", "tags": "2005 party vancouver 2006 newyear miller derek tuxedo newyearseve penmachinecom tux 2000s joefortes adamwoodall derekmiller penmachine"}, {"datetaken": "2006-01-01 02:25:27", "license": "2", "title": "End of the Night", "text": "", "album_id": "1731229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/81050690_4d14d8a6f5_o.jpg", "secret": "4d14d8a6f5", "media": "photo", "latitude": "0", "id": "81050690", "tags": "2005 party vancouver 2006 newyear miller derek tuxedo newyearseve penmachinecom tux 2000s joefortes millhair derekmiller penmachine"}, {"datetaken": "2006-01-03 15:16:21", "license": "1", "title": "DSC01770", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/81318935_defd8e7ebe_o.jpg", "secret": "defd8e7ebe", "media": "photo", "latitude": "0", "id": "81318935", "tags": ""}, {"datetaken": "2006-01-03 15:16:26", "license": "1", "title": "DSC01773", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/81318968_1851ea4f12_o.jpg", "secret": "1851ea4f12", "media": "photo", "latitude": "0", "id": "81318968", "tags": ""}, {"datetaken": "2006-01-03 15:16:31", "license": "1", "title": "DSC01775", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/81319011_21f708082e_o.jpg", "secret": "21f708082e", "media": "photo", "latitude": "0", "id": "81319011", "tags": ""}, {"datetaken": "2006-01-03 15:16:34", "license": "1", "title": "DSC01776", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/81319049_a39eb06b3b_o.jpg", "secret": "a39eb06b3b", "media": "photo", "latitude": "0", "id": "81319049", "tags": ""}, {"datetaken": "2006-01-03 15:16:39", "license": "1", "title": "DSC01778", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/81319086_4e68dd11a2_o.jpg", "secret": "4e68dd11a2", "media": "photo", "latitude": "0", "id": "81319086", "tags": ""}, {"datetaken": "2006-01-03 15:16:44", "license": "1", "title": "DSC01781", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/81319110_216d08b211_o.jpg", "secret": "216d08b211", "media": "photo", "latitude": "0", "id": "81319110", "tags": ""}, {"datetaken": "2006-01-03 15:16:48", "license": "1", "title": "DSC01782", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/81319144_0814dfcf09_o.jpg", "secret": "0814dfcf09", "media": "photo", "latitude": "0", "id": "81319144", "tags": ""}, {"datetaken": "2006-01-03 15:16:52", "license": "1", "title": "DSC01783", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/81319190_fa00ad4bab_o.jpg", "secret": "fa00ad4bab", "media": "photo", "latitude": "0", "id": "81319190", "tags": ""}, {"datetaken": "2006-01-03 15:16:56", "license": "1", "title": "DSC01784", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/81319231_96097c3732_o.jpg", "secret": "96097c3732", "media": "photo", "latitude": "0", "id": "81319231", "tags": ""}, {"datetaken": "2006-01-03 15:16:59", "license": "1", "title": "DSC01787", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/81319271_04e8e7db53_o.jpg", "secret": "04e8e7db53", "media": "photo", "latitude": "0", "id": "81319271", "tags": ""}, {"datetaken": "2006-01-03 15:17:03", "license": "1", "title": "DSC01788", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/81319303_e756aa7c57_o.jpg", "secret": "e756aa7c57", "media": "photo", "latitude": "0", "id": "81319303", "tags": ""}, {"datetaken": "2006-01-03 15:17:07", "license": "1", "title": "DSC01789", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/81319333_4c47e1d062_o.jpg", "secret": "4c47e1d062", "media": "photo", "latitude": "0", "id": "81319333", "tags": ""}, {"datetaken": "2006-01-03 15:17:10", "license": "1", "title": "DSC01790", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/81319364_1e56175973_o.jpg", "secret": "1e56175973", "media": "photo", "latitude": "0", "id": "81319364", "tags": ""}, {"datetaken": "2006-01-03 15:17:14", "license": "1", "title": "DSC01791", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/81319391_b2f7ad58ca_o.jpg", "secret": "b2f7ad58ca", "media": "photo", "latitude": "0", "id": "81319391", "tags": ""}, {"datetaken": "2006-01-03 15:17:18", "license": "1", "title": "DSC01792", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/81319436_d91abcff27_o.jpg", "secret": "d91abcff27", "media": "photo", "latitude": "0", "id": "81319436", "tags": ""}, {"datetaken": "2006-01-03 15:17:22", "license": "1", "title": "DSC01793", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/81319478_08b7740d69_o.jpg", "secret": "08b7740d69", "media": "photo", "latitude": "0", "id": "81319478", "tags": ""}, {"datetaken": "2006-01-03 15:17:27", "license": "1", "title": "DSC01796", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/81319524_2ea397b41e_o.jpg", "secret": "2ea397b41e", "media": "photo", "latitude": "0", "id": "81319524", "tags": ""}, {"datetaken": "2006-01-03 15:17:32", "license": "1", "title": "DSC01797", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/81319575_eaae853931_o.jpg", "secret": "eaae853931", "media": "photo", "latitude": "0", "id": "81319575", "tags": ""}, {"datetaken": "2006-01-03 15:17:35", "license": "1", "title": "DSC01799", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/81319624_85fff30f1a_o.jpg", "secret": "85fff30f1a", "media": "photo", "latitude": "0", "id": "81319624", "tags": ""}, {"datetaken": "2006-01-03 15:17:39", "license": "1", "title": "DSC01808", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/81319677_61b44fde1f_o.jpg", "secret": "61b44fde1f", "media": "photo", "latitude": "0", "id": "81319677", "tags": ""}, {"datetaken": "2006-01-03 15:17:43", "license": "1", "title": "DSC01809", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/81319718_9ab0ad3fe5_o.jpg", "secret": "9ab0ad3fe5", "media": "photo", "latitude": "0", "id": "81319718", "tags": ""}, {"datetaken": "2006-01-03 15:17:47", "license": "1", "title": "DSC01810", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/81319761_01eb904594_o.jpg", "secret": "01eb904594", "media": "photo", "latitude": "0", "id": "81319761", "tags": ""}, {"datetaken": "2006-01-03 15:17:51", "license": "1", "title": "DSC01813", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/81319802_f1c01028d3_o.jpg", "secret": "f1c01028d3", "media": "photo", "latitude": "0", "id": "81319802", "tags": ""}, {"datetaken": "2006-01-03 15:17:54", "license": "1", "title": "DSC01814", "text": "", "album_id": "1737217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/81319836_25111eb918_o.jpg", "secret": "25111eb918", "media": "photo", "latitude": "0", "id": "81319836", "tags": ""}, {"datetaken": "2005-12-31 18:43:20", "license": "4", "title": "It's raining...", "text": "", "album_id": "1761721", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/82400781_48b875f26f_o.jpg", "secret": "48b875f26f", "media": "photo", "latitude": "0", "id": "82400781", "tags": "2005 blue party rain yellow bar night lights downtown sandiego nye january inthecar newyearseve canonsd500 nye2005 january2005 thelocal"}, {"datetaken": "2005-12-31 19:15:42", "license": "4", "title": "Sound Check", "text": "", "album_id": "1761721", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/82400784_dab5a163c1_o.jpg", "secret": "dab5a163c1", "media": "photo", "latitude": "0", "id": "82400784", "tags": "2005 party bar downtown dj sandiego nye january turntables newyearseve canonsd500 virgil nye2005 january2005 thelocal"}, {"datetaken": "2005-12-31 19:55:44", "license": "4", "title": "Let's get started", "text": "", "album_id": "1761721", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/82400786_be88a28d51_o.jpg", "secret": "be88a28d51", "media": "photo", "latitude": "0", "id": "82400786", "tags": "2005 party bar downtown dj sandiego nye january turntables newyearseve canonsd500 virgil nye2005 january2005 thelocal ardy"}, {"datetaken": "2005-12-31 20:26:18", "license": "4", "title": "DJ Clobber & DJ Rtype", "text": "", "album_id": "1761721", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/83035966_13fa16bc78_o.jpg", "secret": "13fa16bc78", "media": "photo", "latitude": "0", "id": "83035966", "tags": "2005 party bar downtown dj sandiego nye january newyearseve canonsd500 virgil nye2005 january2005 thelocal ardy"}, {"datetaken": "2005-12-31 21:53:44", "license": "4", "title": "Rock it Ardy!", "text": "", "album_id": "1761721", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/83035975_9b2a514140_o.jpg", "secret": "9b2a514140", "media": "photo", "latitude": "0", "id": "83035975", "tags": "2005 party bar downtown dj sandiego nye january newyearseve canonsd500 nye2005 january2005 thelocal ardy"}, {"datetaken": "2005-12-31 21:54:49", "license": "4", "title": "Another round...", "text": "", "album_id": "1761721", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/84023446_d03da7efea_o.jpg", "secret": "d03da7efea", "media": "photo", "latitude": "0", "id": "84023446", "tags": "2005 party bar downtown sandiego nye january sean newyearseve canonsd500 nye2005 january2005 thelocal"}, {"datetaken": "2005-12-31 21:56:24", "license": "4", "title": "What are you getting Virg?", "text": "", "album_id": "1761721", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/84023448_151409c3cc_o.jpg", "secret": "151409c3cc", "media": "photo", "latitude": "0", "id": "84023448", "tags": "2005 party bar downtown sandiego nye january nancy brent newyearseve canonsd500 virgil nye2005 january2005 thelocal"}, {"datetaken": "2005-12-31 21:57:15", "license": "4", "title": "Errrbody gettin' tipsy?", "text": "", "album_id": "1761721", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/84023449_33c6b071c9_o.jpg", "secret": "33c6b071c9", "media": "photo", "latitude": "0", "id": "84023449", "tags": "2005 party sign bar downtown sandiego nye january newyearseve canonsd500 nye2005 january2005 thelocal"}, {"datetaken": "2005-12-31 23:29:04", "license": "4", "title": "V, Mina, & Ardy", "text": "", "album_id": "1761721", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/84026468_351aefba97_o.jpg", "secret": "351aefba97", "media": "photo", "latitude": "0", "id": "84026468", "tags": "2005 party bar downtown sandiego nye january newyearseve canonsd500 virgil nye2005 january2005 thelocal ardy"}, {"datetaken": "2005-12-31 23:29:30", "license": "4", "title": "D-D-D-Don't Stop Believin'", "text": "", "album_id": "1761721", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/84026470_9a6247dc0f_o.jpg", "secret": "9a6247dc0f", "media": "photo", "latitude": "0", "id": "84026470", "tags": "2005 party bar downtown sandiego nye january newyearseve canonsd500 nye2005 january2005 thelocal ardy"}, {"datetaken": "2005-12-31 23:36:28", "license": "4", "title": "New Year's Eve SOLD OUT!", "text": "", "album_id": "1761721", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/84051114_3944cf69e5_o.jpg", "secret": "3944cf69e5", "media": "photo", "latitude": "0", "id": "84051114", "tags": "2005 party sign bar downtown sandiego nye january newyearseve canonsd500 nye2005 january2005 thelocal soldout"}, {"datetaken": "2005-12-31 23:56:29", "license": "4", "title": "Yeeeaaah!", "text": "", "album_id": "1761721", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/84044982_e5cc80897a_o.jpg", "secret": "e5cc80897a", "media": "photo", "latitude": "0", "id": "84044982", "tags": "2005 party bar downtown sandiego nye january newyearseve ann canonsd500 nye2005 january2005 thelocal dhore"}, {"datetaken": "2013-12-31 20:00:34", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3814/11681476516_20009a08e2_o.jpg", "secret": "97f29550f3", "media": "photo", "latitude": "0", "id": "11681476516", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 20:00:41", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3795/11680698865_20cc50d9b1_o.jpg", "secret": "27452e03b1", "media": "photo", "latitude": "0", "id": "11680698865", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 20:00:53", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3785/11681480856_d1471e0575_o.jpg", "secret": "5a1bef68a8", "media": "photo", "latitude": "0", "id": "11681480856", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 20:44:07", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5520/11680953153_04340638be_o.jpg", "secret": "4c4c231356", "media": "photo", "latitude": "0", "id": "11680953153", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 20:44:23", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7352/11681062544_667f86287b_o.jpg", "secret": "d4e91b872a", "media": "photo", "latitude": "0", "id": "11681062544", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 20:47:55", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5550/11680956263_3a8bae7d7f_o.jpg", "secret": "5a63a6a986", "media": "photo", "latitude": "0", "id": "11680956263", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 21:31:52", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5496/11680957513_f12e389cc7_o.jpg", "secret": "446073d8ea", "media": "photo", "latitude": "0", "id": "11680957513", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 21:57:14", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7433/11681066884_551a2f7bfa_o.jpg", "secret": "f5d78d91fa", "media": "photo", "latitude": "0", "id": "11681066884", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 22:40:04", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5529/11680960503_9b433b672d_o.jpg", "secret": "0c25550baf", "media": "photo", "latitude": "0", "id": "11680960503", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 22:40:10", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2872/11680712675_ae27e4102e_o.jpg", "secret": "dca2dda5b5", "media": "photo", "latitude": "0", "id": "11680712675", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 22:40:28", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3772/11681072844_1e4f57f42c_o.jpg", "secret": "48ce429029", "media": "photo", "latitude": "0", "id": "11681072844", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 22:40:47", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3819/11681495116_e6889ed2ba_o.jpg", "secret": "130605a455", "media": "photo", "latitude": "0", "id": "11681495116", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 22:40:57", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5472/11680718365_da9ccc8fac_o.jpg", "secret": "40e3ed97ed", "media": "photo", "latitude": "0", "id": "11680718365", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 22:43:22", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3718/11680720075_fe5f9963a8_o.jpg", "secret": "2e70a4ec91", "media": "photo", "latitude": "0", "id": "11680720075", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 22:43:41", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5490/11680972013_3dcf8ca9e4_o.jpg", "secret": "1fa10ab47b", "media": "photo", "latitude": "0", "id": "11680972013", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 22:44:35", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5547/11681081034_689025437d_o.jpg", "secret": "06007b7e55", "media": "photo", "latitude": "0", "id": "11681081034", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 22:46:20", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2806/11680723305_852522201a_o.jpg", "secret": "4de1430685", "media": "photo", "latitude": "0", "id": "11680723305", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 22:46:48", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3773/11681082644_8116082704_o.jpg", "secret": "2997d35e74", "media": "photo", "latitude": "0", "id": "11681082644", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 22:58:33", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3717/11680726705_84e4fea4ef_o.jpg", "secret": "880216d194", "media": "photo", "latitude": "0", "id": "11680726705", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 23:00:02", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2888/11681508056_30a9fba35e_o.jpg", "secret": "32c742db27", "media": "photo", "latitude": "0", "id": "11681508056", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 23:00:31", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5491/11680980363_cd58983738_o.jpg", "secret": "581e74d372", "media": "photo", "latitude": "0", "id": "11680980363", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 23:01:58", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5499/11681511196_fe44fd298f_o.jpg", "secret": "cc74de8ea7", "media": "photo", "latitude": "0", "id": "11681511196", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 23:03:47", "license": "1", "title": "New Year's Eve 2013: Potluck session at Dakota Residences.", "text": "", "album_id": "72157639253910706", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3695/11681091744_7fc4419b3b_o.jpg", "secret": "2d443d5522", "media": "photo", "latitude": "0", "id": "11681091744", "tags": "new eve festive session years dakota potluck occasions residences 2013 sukianto orangeous"}, {"datetaken": "2013-12-31 20:19:45", "license": "3", "title": "Waiting for a Table on New Year's Eve", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7405/11681274675_078fb4e9c3_o.jpg", "secret": "fa6b6c2559", "media": "photo", "latitude": "0", "id": "11681274675", "tags": "sanfrancisco california fashion tile carpet waiting couple market entrance skirt retro polkadots heels dots woodhouse lynnfriedman instagram lynnrfriedman"}, {"datetaken": "2013-12-31 20:21:41", "license": "3", "title": "Castro Marquee New Year's Eve: Audrey Hepburn \"Breakfast at Tiffany's\"", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3790/11682052736_a6a02e55a3_o.jpg", "secret": "d3571f0570", "media": "photo", "latitude": "0", "id": "11682052736", "tags": "sanfrancisco california usa film sign movie marquee theater neon audreyhepburn theatre audrey castro hepburn breakfastattiffanys 94114 lynnfriedman instagram lynnrfriedman"}, {"datetaken": "2013-12-31 20:22:47", "license": "3", "title": "2014 painted sign in restaurant window", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5508/11681525683_a0aa9f6368_o.jpg", "secret": "20b66ee25e", "media": "photo", "latitude": "0", "id": "11681525683", "tags": "sanfrancisco california usa window sign restaurant paint market 21 newyear sliders 2014 uppermarket lynnfriedman sliderbar instagram webstagram lynnrfriedman"}, {"datetaken": "2013-12-31 20:24:32", "license": "3", "title": "Watch Step Slippery When Wet Sign Instagram", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2834/11682055606_9031c82a3d_o.jpg", "secret": "3c31614177", "media": "photo", "latitude": "0", "id": "11682055606", "tags": "sanfrancisco california usa water rain sign danger warning parkinglot stickfigure slipperywhenwet lynnfriedman watchstep instagram webstagram lynnrfriedman"}, {"datetaken": "2013-12-31 20:26:46", "license": "3", "title": "THis is how the Pet Mercantile store cat spends New Year's eve. Instagram", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7311/11681638194_5db0b940ed_o.jpg", "secret": "7d6c8a87da", "media": "photo", "latitude": "0", "id": "11681638194", "tags": "sanfrancisco california blackandwhite usa pet cute animal cat relax store kitten kat feline chat nap unitedstates adorable kitty fluffy gato meow neko fillmore ko\u010dka overload lowerhaight \u8c93 katt kissa chaton waller mercantile 94117 \u03b3\u03ac\u03c4\u03b1 lynnfriedman \u092c\u093f\u0932\u094d\u0932\u0940 \u5bff\u53f8\u58fd\u53f8 \u732b\u5bf5\u7269 kotpisic\u0103 lynnrfriedman"}, {"datetaken": "2014-01-01 13:45:34", "license": "3", "title": "Stock: Duboce Park Dog Park Morning on the Bench", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7411/11714387566_4d730c5fc7_o.jpg", "secret": "7be6367538", "media": "photo", "latitude": "0", "id": "11714387566", "tags": "sanfrancisco california park usa dog bench dubocetriangle lowerhaight duboce 94117 lynnfriedman lynnrfriedman"}, {"datetaken": "2014-01-01 13:47:17", "license": "3", "title": "Stock: New Year's Day Sitting Against the Duboce Park Tree, San Francisco", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7385/11713622935_78571ca2d9_o.jpg", "secret": "b1b10a4415", "media": "photo", "latitude": "0", "id": "11713622935", "tags": "sanfrancisco california park houses red usa reflection grass fashion relax head hill stock sneakers sit thinking rest lonely plaid leggings duboce 94117 lynnfriedman lynnrfriedman"}, {"datetaken": "2014-01-01 13:49:58", "license": "3", "title": "Mystery Truck in Duboce Triangle, San Francisco", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5526/11713991714_502e62a1db_o.jpg", "secret": "7e83c57f93", "media": "photo", "latitude": "0", "id": "11713991714", "tags": "sanfrancisco california usa window truck design dubocetriangle lynnfriedman lynnrfriedman"}, {"datetaken": "2014-01-01 13:51:09", "license": "3", "title": "In the European Countryside People Carry Branches on their Heads", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5507/11713628205_00cbb74b43_o.jpg", "secret": "9254d8c370", "media": "photo", "latitude": "0", "id": "11713628205", "tags": "sanfrancisco roof tree car branches transportation limbs dubocetriangle lynnfriedman lynnrfriedman"}, {"datetaken": "2014-01-01 13:55:29", "license": "3", "title": "Intersection of Church and Market, San Francisco", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3694/11714397526_a20bd1effb_o.jpg", "secret": "dbeed14194", "media": "photo", "latitude": "0", "id": "11714397526", "tags": "sanfrancisco california usa church electric market utility pole muni wires intersection 37 overhead munidiaries"}, {"datetaken": "2014-01-01 13:56:49", "license": "3", "title": "Aardvark Store Cat Tired of Being Adored", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3832/11713882673_4c3a53214a_o.jpg", "secret": "1620d3d05e", "media": "photo", "latitude": "0", "id": "11713882673", "tags": "sanfrancisco california usa pet cute church animal cat book store kitten kat feline chat adorable kitty fluffy gato meow neko ko\u010dka overload \u8c93 ignore turnyourback katt kissa chaton \u03b3\u03ac\u03c4\u03b1 ignor lynnfriedman \u092c\u093f\u0932\u094d\u0932\u0940 \u5bff\u53f8\u58fd\u53f8 \u732b\u5bf5\u7269 kotpisic\u0103 lynnrfriedman"}, {"datetaken": "2014-01-01 13:56:53", "license": "3", "title": "How Store Cats Celebrate New Year's Day at Aardvark Book Store, San Francisco", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5504/11713884523_db756ee0fa_o.jpg", "secret": "355ce1bff3", "media": "photo", "latitude": "0", "id": "11713884523", "tags": "sanfrancisco california usa pet cute church nature animal cat book store kitten kat feline chat stock adorable kitty fluffy gato creativecommons meow neko aardvark ko\u010dka ots overload whatareyoulookingat \u8c93 katt overtheshoulder kissa chaton attribution \u03b3\u03ac\u03c4\u03b1 lynnfriedman \u092c\u093f\u0932\u094d\u0932\u0940 \u5bff\u53f8\u58fd\u53f8 \u732b\u5bf5\u7269 kotpisic\u0103 lynnrfriedman"}, {"datetaken": "2014-01-01 14:16:18", "license": "3", "title": "Liquor Store Cat Likes Tecate Best, Snubs Bud Light", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3715/11713423233_d4c8974e8c_o.jpg", "secret": "eae8ccf763", "media": "photo", "latitude": "0", "id": "11713423233", "tags": "sanfrancisco california usa pet cute animal cat kitten kat feline chat adorable kitty fluffy gato meow neko ko\u010dka overload \u8c93 katt kissa chaton \u03b3\u03ac\u03c4\u03b1 lynnfriedman \u092c\u093f\u0932\u094d\u0932\u0940 \u5bff\u53f8\u58fd\u53f8 \u732b\u5bf5\u7269 kotpisic\u0103"}, {"datetaken": "2014-01-01 14:17:40", "license": "3", "title": "Liquor Store Cat Warms Up to Budwiser Beer", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5485/11713945676_2bcb16364d_o.jpg", "secret": "1d4dfab0d7", "media": "photo", "latitude": "0", "id": "11713945676", "tags": "sanfrancisco california usa pet cute beer animal vertical cat store kitten kat feline chat adorable kitty fluffy tecate gato stare meow neko budlight budweiser ko\u010dka overload cases \u8c93 katt kissa chaton \u03b3\u03ac\u03c4\u03b1 lynnfriedman \u092c\u093f\u0932\u094d\u0932\u0940 \u5bff\u53f8\u58fd\u53f8 \u732b\u5bf5\u7269 kotpisic\u0103 lynnrfriedman"}, {"datetaken": "2014-01-01 14:18:24", "license": "3", "title": "Waiting to Cross Church Street at Market and 14th, San Francisco", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3833/11713947326_5229b4ed3a_o.jpg", "secret": "c826c2a19f", "media": "photo", "latitude": "0", "id": "11713947326", "tags": "sanfrancisco street hat fashion hair coat purse crosswalk puffycoat leggins lynnfriedman lynnrfriedman"}, {"datetaken": "2014-01-01 22:51:56", "license": "3", "title": "View of San Francisco from the St Regis Hotel, San Francisco", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3709/11713430733_a571a5cc06_o.jpg", "secret": "d8d504719d", "media": "photo", "latitude": "0", "id": "11713430733", "tags": "sanfrancisco california skyline downtown view stregis lynnfriedman lynnrfriedman"}, {"datetaken": "2014-01-02 00:06:30", "license": "3", "title": "Uber Ride Through San Francisco", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3703/11713448563_cde8e9e233_o.jpg", "secret": "c5a4b0581f", "media": "photo", "latitude": "0", "id": "11713448563", "tags": "sanfrancisco california usa car driving ride cab taxi transportation shaky confessional uber lynnfriedman lynnrfriedman"}, {"datetaken": "2014-01-02 00:07:43", "license": "3", "title": "The Back of City Target, San Francisco", "text": "", "album_id": "72157639258283935", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7350/11713450723_0a9e22f282_o.jpg", "secret": "1013a5262d", "media": "photo", "latitude": "0", "id": "11713450723", "tags": "sanfrancisco california street usa window sign logo design neon howard pickup target guest stepinside lynnfriedman lynnrfriedman"}, {"datetaken": "2013-12-31 21:41:17", "license": "3", "title": "Danny and Frank", "text": "", "album_id": "72157639904095615", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2826/12017644236_4227ea547b_o.jpg", "secret": "479e68b542", "media": "photo", "latitude": "0", "id": "12017644236", "tags": "danny frankfarm"}, {"datetaken": "2013-12-31 21:41:54", "license": "3", "title": "Matt and Danny", "text": "", "album_id": "72157639904095615", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7294/12017094473_61af887399_o.jpg", "secret": "cdfc8ca7c0", "media": "photo", "latitude": "0", "id": "12017094473", "tags": "danny matts"}, {"datetaken": "2013-12-31 21:42:25", "license": "3", "title": "Matt and Danny", "text": "", "album_id": "72157639904095615", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3731/12017081313_acb0e2cd20_o.jpg", "secret": "c61f39da0e", "media": "photo", "latitude": "0", "id": "12017081313", "tags": "danny matts"}, {"datetaken": "2013-12-31 21:44:46", "license": "3", "title": "Danny and Romy", "text": "", "album_id": "72157639904095615", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5505/12017609306_65a40aa06b_o.jpg", "secret": "7bbc3137fd", "media": "photo", "latitude": "0", "id": "12017609306", "tags": "romy danny"}, {"datetaken": "2013-12-31 22:01:50", "license": "3", "title": "Dave in the living room", "text": "", "album_id": "72157639904095615", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3684/12017596166_109bdd3eee_o.jpg", "secret": "13b2f4bca2", "media": "photo", "latitude": "0", "id": "12017596166", "tags": ""}, {"datetaken": "2013-12-31 22:02:41", "license": "3", "title": "Matt and Dave in the living room", "text": "", "album_id": "72157639904095615", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5521/12016755585_9cb064eec4_o.jpg", "secret": "fa021d48de", "media": "photo", "latitude": "0", "id": "12016755585", "tags": ""}, {"datetaken": "2013-12-31 22:03:02", "license": "3", "title": "hallway", "text": "", "album_id": "72157639904095615", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5514/12016738595_e7d5dc7663_o.jpg", "secret": "169af23e77", "media": "photo", "latitude": "0", "id": "12016738595", "tags": ""}, {"datetaken": "2013-12-31 22:03:15", "license": "3", "title": "living room 2", "text": "", "album_id": "72157639904095615", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5475/12017547036_4febb26a5e_o.jpg", "secret": "96977883ec", "media": "photo", "latitude": "0", "id": "12017547036", "tags": ""}, {"datetaken": "2013-12-31 22:04:09", "license": "3", "title": "bedroom", "text": "", "album_id": "72157639904095615", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7361/12017057244_317ebbf3d8_o.jpg", "secret": "82f8302409", "media": "photo", "latitude": "0", "id": "12017057244", "tags": ""}, {"datetaken": "2013-12-31 22:10:44", "license": "3", "title": "Dong-Yi and Quyen", "text": "", "album_id": "72157639904095615", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3743/12016691135_c4d62754d5_o.jpg", "secret": "9bd6f0838b", "media": "photo", "latitude": "0", "id": "12016691135", "tags": "quyen dongyi"}, {"datetaken": "2014-01-01 00:04:41", "license": "3", "title": "watching New Year's Eve on television", "text": "", "album_id": "72157639904095615", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3764/12017026164_0722ceb2a9_o.jpg", "secret": "e586e959e7", "media": "photo", "latitude": "0", "id": "12017026164", "tags": ""}, {"datetaken": "2014-01-01 00:04:44", "license": "3", "title": "watching New Year's Eve on television", "text": "", "album_id": "72157639904095615", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3812/12016943803_1e2cd1e389_o.jpg", "secret": "0e23a15816", "media": "photo", "latitude": "0", "id": "12016943803", "tags": "danny"}, {"datetaken": "2014-01-01 00:04:46", "license": "3", "title": "watching New Year's Eve on television", "text": "", "album_id": "72157639904095615", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7442/12016929613_522dbe5c0e_o.jpg", "secret": "3cc1b5d418", "media": "photo", "latitude": "0", "id": "12016929613", "tags": "danny"}, {"datetaken": "2014-01-01 00:04:52", "license": "3", "title": "watching New Year's Eve on television", "text": "", "album_id": "72157639904095615", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3803/12016983074_941464fca8_o.jpg", "secret": "ebd442dcb4", "media": "photo", "latitude": "0", "id": "12016983074", "tags": ""}, {"datetaken": "2014-01-01 00:05:06", "license": "3", "title": "watching New Year's Eve on television", "text": "", "album_id": "72157639904095615", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3720/12016969564_f70579aebc_o.jpg", "secret": "6ac2e4e577", "media": "photo", "latitude": "0", "id": "12016969564", "tags": ""}, {"datetaken": "2014-01-01 01:06:22", "license": "3", "title": "Tim and Perty", "text": "", "album_id": "72157639904095615", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3830/12016605335_9c431195a1_o.jpg", "secret": "cf724e108c", "media": "photo", "latitude": "0", "id": "12016605335", "tags": "tim perty"}, {"datetaken": "2014-12-31 11:15:01", "license": "4", "title": "Shep presides over snacks and toys", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7480/15973438307_95122e109e_o.jpg", "secret": "23a15a39fa", "media": "photo", "latitude": "0", "id": "15973438307", "tags": ""}, {"datetaken": "2014-12-31 13:16:17", "license": "4", "title": "Molly unveils NYE dinner", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7553/15981616459_7895083fa3_o.jpg", "secret": "27a05a9cdf", "media": "photo", "latitude": "0", "id": "15981616459", "tags": ""}, {"datetaken": "2014-12-31 13:16:27", "license": "4", "title": "Noche vieja dinner at home with the whole family", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7550/16133408456_0750a5a99b_o.jpg", "secret": "d7052b3e0b", "media": "photo", "latitude": "0", "id": "16133408456", "tags": ""}, {"datetaken": "2014-12-31 15:07:06", "license": "4", "title": "This year's nochevieja cocktail", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7565/16167672505_74faa7ed6c_o.jpg", "secret": "38c552f715", "media": "photo", "latitude": "0", "id": "16167672505", "tags": ""}, {"datetaken": "2014-12-31 15:51:51", "license": "4", "title": "Shep surrounded by the New Year's Eve party in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7563/15980364060_3dbd7ddd62_o.jpg", "secret": "7a49322fb1", "media": "photo", "latitude": "0", "id": "15980364060", "tags": ""}, {"datetaken": "2014-12-31 16:09:13", "license": "4", "title": "New year, same party as always in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7539/15981613329_a6ac51fe34_o.jpg", "secret": "8f23924dfc", "media": "photo", "latitude": "0", "id": "15981613329", "tags": ""}, {"datetaken": "2014-12-31 19:02:10", "license": "4", "title": "Ben, Aubrey & Shep NYE", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7554/16013163709_c50f6cc725_o.jpg", "secret": "7b6073874f", "media": "photo", "latitude": "0", "id": "16013163709", "tags": ""}, {"datetaken": "2014-12-31 19:20:36", "license": "4", "title": "NYE in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7545/16197432271_e9cb999a65_o.jpg", "secret": "910e0a7c29", "media": "photo", "latitude": "0", "id": "16197432271", "tags": ""}, {"datetaken": "2014-12-31 23:57:47", "license": "4", "title": "Happy New Year!", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8586/16167408922_2528cf47b4_o.jpg", "secret": "ea75651fcf", "media": "photo", "latitude": "0", "id": "16167408922", "tags": ""}, {"datetaken": "2014-12-31 23:57:51", "license": "4", "title": "Happy New Year!", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7514/15982109729_9a7bdaae9c_o.jpg", "secret": "879dbc3842", "media": "photo", "latitude": "0", "id": "15982109729", "tags": ""}, {"datetaken": "2015-01-01 00:01:35", "license": "4", "title": "NYE in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7562/16166274081_1b03916ac6_o.jpg", "secret": "804f80728c", "media": "photo", "latitude": "0", "id": "16166274081", "tags": ""}, {"datetaken": "2015-01-01 00:01:48", "license": "4", "title": "Molly teaches Shep \"YMCA\" while Ben and Aubrey look on skeptically", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7544/16168155995_fb94f5e11d_o.jpg", "secret": "63c2f06ae0", "media": "photo", "latitude": "0", "id": "16168155995", "tags": ""}, {"datetaken": "2015-01-01 00:02:01", "license": "4", "title": "Molly teaches Shep \"YMCA\" while Ben and Aubrey look on skeptically", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7532/16166276391_f050d2e757_o.jpg", "secret": "80c5dfe43c", "media": "photo", "latitude": "0", "id": "16166276391", "tags": ""}, {"datetaken": "2015-01-01 04:48:07", "license": "4", "title": "NYE in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8646/15544549573_e66b05cfda_o.jpg", "secret": "a30d26453e", "media": "photo", "latitude": "0", "id": "15544549573", "tags": ""}, {"datetaken": "2015-01-01 04:48:19", "license": "4", "title": "NYE in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7462/15541956764_ea0a67b394_o.jpg", "secret": "902966000d", "media": "photo", "latitude": "0", "id": "15541956764", "tags": ""}, {"datetaken": "2015-01-01 04:48:28", "license": "4", "title": "NYE in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7541/15541960974_96b13d96bf_o.jpg", "secret": "05bcd430af", "media": "photo", "latitude": "0", "id": "15541960974", "tags": ""}, {"datetaken": "2015-01-01 04:48:34", "license": "4", "title": "NYE in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7523/15976869638_8485ca923f_o.jpg", "secret": "3d00b43c2f", "media": "photo", "latitude": "0", "id": "15976869638", "tags": ""}, {"datetaken": "2015-01-01 04:49:09", "license": "4", "title": "NYE in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7508/15978247169_91799da30c_o.jpg", "secret": "0e88b4a83a", "media": "photo", "latitude": "0", "id": "15978247169", "tags": ""}, {"datetaken": "2015-01-01 04:49:13", "license": "4", "title": "NYE in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7576/15544537473_e919ca825e_o.jpg", "secret": "4bac58991a", "media": "photo", "latitude": "0", "id": "15544537473", "tags": ""}, {"datetaken": "2015-01-01 04:49:13", "license": "4", "title": "NYE in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7465/15978376249_f38a146c42_o.jpg", "secret": "c89eb8cafe", "media": "photo", "latitude": "0", "id": "15978376249", "tags": ""}, {"datetaken": "2015-01-01 04:55:10", "license": "4", "title": "NYE in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7559/16164310435_48c9f4d4aa_o.jpg", "secret": "c6d8dc3641", "media": "photo", "latitude": "0", "id": "16164310435", "tags": ""}, {"datetaken": "2015-01-01 04:55:10", "license": "4", "title": "NYE in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7529/15978256369_b6abef72b3_o.jpg", "secret": "b439d9b738", "media": "photo", "latitude": "0", "id": "15978256369", "tags": ""}, {"datetaken": "2015-01-01 05:26:35", "license": "4", "title": "NYE in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7503/15978382429_7483257eb9_o.jpg", "secret": "fa1fa1b897", "media": "photo", "latitude": "0", "id": "15978382429", "tags": ""}, {"datetaken": "2015-01-01 05:27:05", "license": "4", "title": "NYE in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7479/16138652086_427937b54c_o.jpg", "secret": "2415789718", "media": "photo", "latitude": "0", "id": "16138652086", "tags": ""}, {"datetaken": "2015-01-01 05:27:17", "license": "4", "title": "NYE in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7562/16162548631_36c9bf9556_o.jpg", "secret": "437e1f2e65", "media": "photo", "latitude": "0", "id": "16162548631", "tags": ""}, {"datetaken": "2015-01-01 05:27:25", "license": "4", "title": "NYE in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8647/15978379789_994c33af78_o.jpg", "secret": "20abbc2caa", "media": "photo", "latitude": "0", "id": "15978379789", "tags": ""}, {"datetaken": "2015-01-01 05:27:58", "license": "4", "title": "Teaching Shep the \"YMCA\" on NYE in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7577/16163694702_c770245f23_o.jpg", "secret": "8a554b4dcb", "media": "photo", "latitude": "0", "id": "16163694702", "tags": ""}, {"datetaken": "2015-01-01 05:28:45", "license": "4", "title": "NYE in Fornalutx", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7481/15977133030_3902652406_o.jpg", "secret": "4bfcb02043", "media": "photo", "latitude": "0", "id": "15977133030", "tags": ""}, {"datetaken": "2015-01-01 05:42:30", "license": "4", "title": "017039aa5a60d109ec8f364cf60b8845fbf4d2267b", "text": "", "album_id": "72157649648811240", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8595/15544806083_1114f4a573_o.jpg", "secret": "eb7b7ba98b", "media": "photo", "latitude": "0", "id": "15544806083", "tags": ""}, {"datetaken": "2014-12-31 18:24:32", "license": "3", "title": "Select Wines' Tom on NYE (02)", "text": "", "album_id": "72157649987300306", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7577/15978645897_e4bc0f371a_o.jpg", "secret": "ef9571f401", "media": "photo", "latitude": "0", "id": "15978645897", "tags": "arlington virginia winetasting clarendon newyearseve wineshop"}, {"datetaken": "2014-12-31 18:24:57", "license": "3", "title": "Select Wines' Tom on NYE (01)", "text": "", "album_id": "72157649987300306", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8620/16173780332_e39fee1783_o.jpg", "secret": "33980fea85", "media": "photo", "latitude": "0", "id": "16173780332", "tags": "arlington virginia winetasting clarendon newyearseve wineshop"}, {"datetaken": "2014-12-31 18:28:24", "license": "3", "title": "Treats for New Year's Eve", "text": "", "album_id": "72157649987300306", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8653/16172653701_59d9854d80_o.jpg", "secret": "f162ff6f97", "media": "photo", "latitude": "0", "id": "16172653701", "tags": "arlington virginia winetasting clarendon newyearseve wineshop"}, {"datetaken": "2014-12-31 18:29:11", "license": "3", "title": "Cheers to 2015!", "text": "", "album_id": "72157649987300306", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7554/16172654121_30780fff46_o.jpg", "secret": "f51e530ae8", "media": "photo", "latitude": "0", "id": "16172654121", "tags": "arlington virginia winetasting clarendon newyearseve wineshop"}, {"datetaken": "2014-12-31 18:30:42", "license": "3", "title": "Say cheese for New Year's", "text": "", "album_id": "72157649987300306", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8663/15552165604_fccf44ec2f_o.jpg", "secret": "5da84a4ba3", "media": "photo", "latitude": "0", "id": "15552165604", "tags": "cheese arlington virginia winetasting clarendon newyearseve wineshop"}, {"datetaken": "2014-12-31 18:31:11", "license": "3", "title": "Sentiment for the season", "text": "", "album_id": "72157649987300306", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8626/16173780292_70a5fb2c85_o.jpg", "secret": "7ab39ea137", "media": "photo", "latitude": "0", "id": "16173780292", "tags": "arlington virginia winetasting clarendon newyearseve wineshop"}, {"datetaken": "2014-12-31 18:31:34", "license": "3", "title": "Wreath and light", "text": "", "album_id": "72157649987300306", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8674/15987210770_e8d1776fe3_o.jpg", "secret": "c0bde4c7c3", "media": "photo", "latitude": "0", "id": "15987210770", "tags": "arlington virginia winetasting clarendon newyearseve wineshop"}, {"datetaken": "2014-12-31 18:40:29", "license": "3", "title": "Tiaras & beads", "text": "", "album_id": "72157649987300306", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7557/15988466629_72cd877b29_o.jpg", "secret": "819a849970", "media": "photo", "latitude": "0", "id": "15988466629", "tags": "arlington virginia winetasting clarendon newyearseve wineshop"}, {"datetaken": "2014-12-31 18:40:51", "license": "3", "title": "Tiaras & beads (02)", "text": "", "album_id": "72157649987300306", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7502/16162517841_2cfaa4dfed_o.jpg", "secret": "94052d188a", "media": "photo", "latitude": "0", "id": "16162517841", "tags": "arlington virginia winetasting clarendon newyearseve wineshop"}, {"datetaken": "2014-12-31 18:49:36", "license": "3", "title": "Wendy & Amy", "text": "", "album_id": "72157649987300306", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8670/15987093758_72255cf36d_o.jpg", "secret": "9bfa9193b9", "media": "photo", "latitude": "0", "id": "15987093758", "tags": "arlington virginia winetasting clarendon newyearseve wineshop"}, {"datetaken": "2014-12-31 18:58:27", "license": "3", "title": "1st guests on New Year's Eve", "text": "", "album_id": "72157649987300306", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7531/16174531045_f6c0d824b8_o.jpg", "secret": "ef2d50f469", "media": "photo", "latitude": "0", "id": "16174531045", "tags": "arlington virginia winetasting clarendon newyearseve wineshop"}, {"datetaken": "2014-12-31 19:29:32", "license": "3", "title": "New Year's Eve hors d'oeuvres", "text": "", "album_id": "72157649987300306", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7523/16173780402_7c7faea748_o.jpg", "secret": "6b5e0dce9b", "media": "photo", "latitude": "0", "id": "16173780402", "tags": "arlington virginia winetasting clarendon newyearseve wineshop"}, {"datetaken": "2014-12-31 20:44:27", "license": "3", "title": "Empty wine bottles", "text": "", "album_id": "72157649987300306", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7498/16172653931_14f005bdd7_o.jpg", "secret": "d3e1bef6e5", "media": "photo", "latitude": "0", "id": "16172653931", "tags": "arlington virginia winetasting clarendon newyearseve wineshop"}, {"datetaken": "2015-01-01 16:02:11", "license": "4", "title": "New Year's Eve Hike Hoedenpyl Woods January 01, 2015 1", "text": "", "album_id": "72157649714582760", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7562/15578419354_2eb110ccf4_o.jpg", "secret": "f805c5a887", "media": "photo", "latitude": "0", "id": "15578419354", "tags": "eastgrandrapids lourdie hodenpylwoodspark"}, {"datetaken": "2015-01-01 16:04:44", "license": "4", "title": "New Year's Eve Hike Hoedenpyl Woods January 01, 2015 2", "text": "", "album_id": "72157649714582760", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7551/16015023607_75c81f3d78_o.jpg", "secret": "db44bdb59a", "media": "photo", "latitude": "0", "id": "16015023607", "tags": "eastgrandrapids lourdie hodenpylwoodspark"}, {"datetaken": "2015-01-01 16:06:30", "license": "4", "title": "New Year's Eve Hike Hoedenpyl Woods January 01, 2015 3", "text": "", "album_id": "72157649714582760", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7487/15578424044_39c476e33c_o.jpg", "secret": "c61c537e91", "media": "photo", "latitude": "0", "id": "15578424044", "tags": "eastgrandrapids lourdie hodenpylwoodspark"}, {"datetaken": "2015-01-01 16:14:51", "license": "4", "title": "New Year's Eve Hike Hoedenpyl Woods January 01, 2015 4", "text": "", "album_id": "72157649714582760", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7499/16014741319_449f86b007_o.jpg", "secret": "416da59b51", "media": "photo", "latitude": "0", "id": "16014741319", "tags": "eastgrandrapids lourdie hodenpylwoodspark"}, {"datetaken": "2015-01-01 16:18:52", "license": "4", "title": "New Year's Eve Hike Hoedenpyl Woods January 01, 2015 5", "text": "", "album_id": "72157649714582760", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7553/16013493560_976d20e6a2_o.jpg", "secret": "e27891159d", "media": "photo", "latitude": "0", "id": "16013493560", "tags": "eastgrandrapids lourdie hodenpylwoodspark"}, {"datetaken": "2015-01-01 16:18:58", "license": "4", "title": "New Year's Eve Hike Hoedenpyl Woods January 01, 2015 6", "text": "", "album_id": "72157649714582760", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7545/15581022483_3f02663c2b_o.jpg", "secret": "d05e860c53", "media": "photo", "latitude": "0", "id": "15581022483", "tags": "eastgrandrapids lourdie hodenpylwoodspark"}, {"datetaken": "2015-01-01 16:22:05", "license": "4", "title": "New Year's Eve Hike Hoedenpyl Woods January 01, 2015 7", "text": "", "album_id": "72157649714582760", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7516/16200025102_10cfdedf63_o.jpg", "secret": "319f595f94", "media": "photo", "latitude": "0", "id": "16200025102", "tags": "eastgrandrapids lourdie hodenpylwoodspark"}, {"datetaken": "2015-01-01 16:22:45", "license": "4", "title": "New Year's Eve Hike Hoedenpyl Woods January 01, 2015 8", "text": "", "album_id": "72157649714582760", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7535/16174995166_059c0ef989_o.jpg", "secret": "169ca72aa7", "media": "photo", "latitude": "0", "id": "16174995166", "tags": "eastgrandrapids lourdie hodenpylwoodspark"}, {"datetaken": "2015-01-01 16:24:41", "license": "4", "title": "", "text": "", "album_id": "72157649714582760", "longitude": "-85.610978", "url_o": "https://farm8.staticflickr.com/7534/15984878087_60ffed5ff0_o.jpg", "secret": "b70748b0b1", "media": "photo", "latitude": "42.958316", "id": "15984878087", "tags": ""}, {"datetaken": "2015-01-01 16:28:39", "license": "4", "title": "New Year's Eve Hike Hoedenpyl Woods January 01, 2015 9", "text": "", "album_id": "72157649714582760", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8621/16200845285_6909ebd024_o.jpg", "secret": "5e56bd759f", "media": "photo", "latitude": "0", "id": "16200845285", "tags": "eastgrandrapids lourdie hodenpylwoodspark"}, {"datetaken": "2015-01-01 16:33:31", "license": "4", "title": "New Year's Eve Hike Hoedenpyl Woods January 01, 2015 10", "text": "", "album_id": "72157649714582760", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7481/16198971361_76278739c5_o.jpg", "secret": "cd4f3c4385", "media": "photo", "latitude": "0", "id": "16198971361", "tags": "eastgrandrapids lourdie hodenpylwoodspark"}, {"datetaken": "2015-01-01 22:12:19", "license": "4", "title": "", "text": "", "album_id": "72157649714582760", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8643/15983224598_870060d577_o.jpg", "secret": "05b3d14e09", "media": "photo", "latitude": "0", "id": "15983224598", "tags": ""}, {"datetaken": "2015-01-01 22:12:27", "license": "4", "title": "", "text": "", "album_id": "72157649714582760", "longitude": "-85.645059", "url_o": "https://farm8.staticflickr.com/7580/15984880087_0be482fcb4_o.jpg", "secret": "66c79a6e95", "media": "photo", "latitude": "42.957391", "id": "15984880087", "tags": ""}, {"datetaken": "2010-03-30 14:01:03", "license": "2", "title": "6280 Desoto Living Room", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4482272452_dd61c15c22_o.jpg", "secret": "756b7fc924", "media": "photo", "latitude": "0", "id": "4482272452", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:01:31", "license": "2", "title": "6280 Desoto Entry", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2780/4482272602_0dc0a5f3a2_o.jpg", "secret": "4aced3dd2c", "media": "photo", "latitude": "0", "id": "4482272602", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:02:32", "license": "2", "title": "6280 Desoto Kitchen", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4482272660_4d96c0eaf4_o.jpg", "secret": "73c00277f3", "media": "photo", "latitude": "0", "id": "4482272660", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:02:45", "license": "2", "title": "6280 Desoto Kitchen Desk Area", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4482272724_2b13559140_o.jpg", "secret": "00ec734ef7", "media": "photo", "latitude": "0", "id": "4482272724", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:03:06", "license": "2", "title": "6280 Desoto Laundry Room", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4482272782_0cfc405a1d_o.jpg", "secret": "ba86ececc6", "media": "photo", "latitude": "0", "id": "4482272782", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:03:38", "license": "2", "title": "6280 Desoto Kitchen3", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4481624161_3e05384dfa_o.jpg", "secret": "41dffd773d", "media": "photo", "latitude": "0", "id": "4481624161", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:04:38", "license": "2", "title": "6280 Desoto Bedroom2", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4482272874_884e97d07b_o.jpg", "secret": "d84a5a8aff", "media": "photo", "latitude": "0", "id": "4482272874", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:05:11", "license": "2", "title": "6280 Desoto Full Bathroom Upper", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2682/4481624291_34e487952d_o.jpg", "secret": "7e2f0c582d", "media": "photo", "latitude": "0", "id": "4481624291", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:06:02", "license": "2", "title": "6280 Desoto Master Bedroom", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4481624337_bc23eb1ab4_o.jpg", "secret": "8edd138574", "media": "photo", "latitude": "0", "id": "4481624337", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:06:33", "license": "2", "title": "6280 Desoto Master Bath1", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4482273048_42ee8807b3_o.jpg", "secret": "2fe027e274", "media": "photo", "latitude": "0", "id": "4482273048", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:06:55", "license": "2", "title": "6280 Desoto Master Bath2", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4481624459_50441f5468_o.jpg", "secret": "d80e6b23ca", "media": "photo", "latitude": "0", "id": "4481624459", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:07:19", "license": "2", "title": "6280 Desoto LivingRoom2", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4481624523_0ab9b50dc9_o.jpg", "secret": "e39d4077e2", "media": "photo", "latitude": "0", "id": "4481624523", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:07:42", "license": "2", "title": "6280 Desoto Half Bath Main", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4482273162_9f9587976a_o.jpg", "secret": "56b292ab6f", "media": "photo", "latitude": "0", "id": "4482273162", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:10:04", "license": "2", "title": "6280 Desoto Bedroom4", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4481624631_170a3d6e8b_o.jpg", "secret": "f0f05f4e16", "media": "photo", "latitude": "0", "id": "4481624631", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:10:24", "license": "2", "title": "6280 Desoto Bath Basement", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2717/4482273284_5127a6179f_o.jpg", "secret": "2c782137df", "media": "photo", "latitude": "0", "id": "4482273284", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:10:50", "license": "2", "title": "6280 Desoto Den or Office", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4481624757_6ebe715393_o.jpg", "secret": "fc69406312", "media": "photo", "latitude": "0", "id": "4481624757", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:13:29", "license": "2", "title": "6280 Desoto Rec Room1", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2792/4482273396_1b7f59804c_o.jpg", "secret": "7e9948bbcc", "media": "photo", "latitude": "0", "id": "4482273396", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:13:36", "license": "2", "title": "6280 Desoto Rec Room2", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4481624861_f87860e47f_o.jpg", "secret": "5a212e30fb", "media": "photo", "latitude": "0", "id": "4481624861", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:14:43", "license": "2", "title": "6280 Desoto Rear of Home", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4482273520_2fa8d10477_o.jpg", "secret": "8cc02e8336", "media": "photo", "latitude": "0", "id": "4482273520", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:15:11", "license": "2", "title": "6280 Desoto Rear Patio", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4482273632_4534483db8_o.jpg", "secret": "69719d1e4c", "media": "photo", "latitude": "0", "id": "4482273632", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:15:19", "license": "2", "title": "6280 Desoto Rear Yard", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2741/4481625201_bde1ef92c6_o.jpg", "secret": "42865fe0ec", "media": "photo", "latitude": "0", "id": "4481625201", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:15:27", "license": "2", "title": "6280 Desoto Rear Yard2", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4482273984_9a29ac89c1_o.jpg", "secret": "d90990b9c2", "media": "photo", "latitude": "0", "id": "4482273984", "tags": "house 6280desoto"}, {"datetaken": "2010-03-30 14:19:46", "license": "2", "title": "6280 Desoto Front 4", "text": "", "album_id": "72157623748328220", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4481625685_a61df4f7de_o.jpg", "secret": "0b330a22b2", "media": "photo", "latitude": "0", "id": "4481625685", "tags": "house 6280desoto"}, {"datetaken": "2010-02-02 10:24:35", "license": "2", "title": "001", "text": "", "album_id": "72157623213948893", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4326096709_d78a3a33da_o.jpg", "secret": "549a9462c7", "media": "photo", "latitude": "0", "id": "4326096709", "tags": "fec russellsenateofficebuilding campaignfinance federalelectioncommission citizensunited politicallaw politicalactivitylaw senatorrussell"}, {"datetaken": "2010-02-02 10:43:10", "license": "2", "title": "002", "text": "", "album_id": "72157623213948893", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4326096875_ebe26690c5_o.jpg", "secret": "cd08e17be1", "media": "photo", "latitude": "0", "id": "4326096875", "tags": "fec campaignfinance federalelectioncommission citizensunited politicallaw politicalactivitylaw"}, {"datetaken": "2010-02-02 10:54:09", "license": "2", "title": "006", "text": "", "album_id": "72157623213948893", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4326097133_b12caf847f_o.jpg", "secret": "a486aca1d6", "media": "photo", "latitude": "0", "id": "4326097133", "tags": "wertheimer fec campaignfinance federalelectioncommission citizensunited politicallaw politicalactivitylaw"}, {"datetaken": "2010-02-02 10:54:39", "license": "2", "title": "008", "text": "", "album_id": "72157623213948893", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4326833540_b2f51d1263_o.jpg", "secret": "297a62c7b1", "media": "photo", "latitude": "0", "id": "4326833540", "tags": "fec campaignfinance federalelectioncommission citizensunited politicallaw politicalactivitylaw"}, {"datetaken": "2010-02-02 10:55:51", "license": "2", "title": "009", "text": "", "album_id": "72157623213948893", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2696/4326833754_5b953949b6_o.jpg", "secret": "98bd1a2805", "media": "photo", "latitude": "0", "id": "4326833754", "tags": "fec campaignfinance federalelectioncommission citizensunited politicallaw politicalactivitylaw"}, {"datetaken": "2010-02-02 10:57:36", "license": "2", "title": "013", "text": "", "album_id": "72157623213948893", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2776/4326097721_7f3549fd73_o.jpg", "secret": "ecf0dd4bc7", "media": "photo", "latitude": "0", "id": "4326097721", "tags": "fec campaignfinance federalelectioncommission citizensunited politicallaw politicalactivitylaw"}, {"datetaken": "2010-02-02 10:59:26", "license": "2", "title": "015", "text": "", "album_id": "72157623213948893", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4326097901_6348206779_o.jpg", "secret": "820eebd1d6", "media": "photo", "latitude": "0", "id": "4326097901", "tags": "fec campaignfinance federalelectioncommission citizensunited politicallaw politicalactivitylaw normeisen"}, {"datetaken": "2010-02-02 11:02:47", "license": "2", "title": "020", "text": "", "album_id": "72157623213948893", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4326098101_10725c4c85_o.jpg", "secret": "5560e2e59d", "media": "photo", "latitude": "0", "id": "4326098101", "tags": "schumer fec campaignfinance federalelectioncommission citizensunited politicallaw politicalactivitylaw"}, {"datetaken": "2010-02-02 11:20:42", "license": "2", "title": "025", "text": "", "album_id": "72157623213948893", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4326834514_a3ab167b87_o.jpg", "secret": "3b3b45c828", "media": "photo", "latitude": "0", "id": "4326834514", "tags": "fec campaignfinance federalelectioncommission citizensunited politicallaw politicalactivitylaw"}, {"datetaken": "2010-02-02 12:23:46", "license": "2", "title": "028", "text": "", "album_id": "72157623213948893", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4326098467_588e6af20f_o.jpg", "secret": "1c113f0578", "media": "photo", "latitude": "0", "id": "4326098467", "tags": "feinstein fec durbin campaignfinance federalelectioncommission citizensunited politicallaw politicalactivitylaw"}, {"datetaken": "2010-02-02 12:24:28", "license": "2", "title": "030", "text": "", "album_id": "72157623213948893", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4326098687_2e2d9b60d0_o.jpg", "secret": "e16ee4511b", "media": "photo", "latitude": "0", "id": "4326098687", "tags": "commissioners fec campaignfinance federalelectioncommission citizensunited politicallaw politicalactivitylaw"}, {"datetaken": "2010-02-02 12:25:16", "license": "2", "title": "031", "text": "", "album_id": "72157623213948893", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4326835136_3ceea2a316_o.jpg", "secret": "8b81890fab", "media": "photo", "latitude": "0", "id": "4326835136", "tags": "fec donsimon campaignfinance federalelectioncommission citizensunited politicallaw politicalactivitylaw"}, {"datetaken": "2010-02-02 12:29:26", "license": "2", "title": "035", "text": "", "album_id": "72157623213948893", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4326835286_75637701da_o.jpg", "secret": "4022ec1eed", "media": "photo", "latitude": "0", "id": "4326835286", "tags": "fec campaignfinance federalelectioncommission citizensunited politicallaw politicalactivitylaw"}, {"datetaken": "2010-02-02 12:46:56", "license": "2", "title": "038", "text": "", "album_id": "72157623213948893", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4326099247_ba1a785f00_o.jpg", "secret": "aec01ba20d", "media": "photo", "latitude": "0", "id": "4326099247", "tags": "fec campaignfinance federalelectioncommission citizensunited politicallaw politicalactivitylaw davidbossie"}, {"datetaken": "2010-02-02 13:07:52", "license": "2", "title": "041", "text": "", "album_id": "72157623213948893", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2773/4326099493_24fa08a649_o.jpg", "secret": "8a039604a7", "media": "photo", "latitude": "0", "id": "4326099493", "tags": "fec campaignfinance federalelectioncommission citizensunited politicallaw politicalactivitylaw normeisen"}, {"datetaken": "2007-01-03 17:18:01", "license": "1", "title": "First Shot", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/344863306_530dbacbb7_o.jpg", "secret": "530dbacbb7", "media": "photo", "latitude": "0", "id": "344863306", "tags": "work office books bookshelf bookcase"}, {"datetaken": "2007-01-03 17:45:14", "license": "1", "title": "Keyboard with Flash", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/344863469_0e8341add7_o.jpg", "secret": "0e8341add7", "media": "photo", "latitude": "0", "id": "344863469", "tags": ""}, {"datetaken": "2007-01-03 17:45:54", "license": "1", "title": "Keyboard without Flash", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/344864919_f1bee6c02e_o.jpg", "secret": "f1bee6c02e", "media": "photo", "latitude": "0", "id": "344864919", "tags": ""}, {"datetaken": "2007-01-03 17:51:21", "license": "1", "title": "Queen of Tarts", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/344866732_d92f169917_o.jpg", "secret": "d92f169917", "media": "photo", "latitude": "0", "id": "344866732", "tags": ""}, {"datetaken": "2007-01-03 18:02:19", "license": "1", "title": "Smart Monkey Cafe", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/344867930_635c205f61_o.jpg", "secret": "635c205f61", "media": "photo", "latitude": "0", "id": "344867930", "tags": ""}, {"datetaken": "2007-01-03 18:03:37", "license": "1", "title": "Inside the Smart Monkey", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/344869553_8acae46ebe_o.jpg", "secret": "8acae46ebe", "media": "photo", "latitude": "0", "id": "344869553", "tags": ""}, {"datetaken": "2007-01-03 18:09:48", "license": "1", "title": "Fooood!", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/344870673_158e5063a2_o.jpg", "secret": "158e5063a2", "media": "photo", "latitude": "0", "id": "344870673", "tags": ""}, {"datetaken": "2007-01-03 18:11:28", "license": "1", "title": "Menu", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/344871581_c7d2538e47_o.jpg", "secret": "c7d2538e47", "media": "photo", "latitude": "0", "id": "344871581", "tags": ""}, {"datetaken": "2007-01-03 18:27:03", "license": "1", "title": "Burger with Flash", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/344873004_6cf4d25298_o.jpg", "secret": "6cf4d25298", "media": "photo", "latitude": "0", "id": "344873004", "tags": ""}, {"datetaken": "2007-01-03 18:27:45", "license": "1", "title": "Burger without Flash", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/344874225_c115b968b2_o.jpg", "secret": "c115b968b2", "media": "photo", "latitude": "0", "id": "344874225", "tags": ""}, {"datetaken": "2007-01-03 18:50:24", "license": "1", "title": "Staircase with Flash", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/344876665_cdeeb9d693_o.jpg", "secret": "cdeeb9d693", "media": "photo", "latitude": "0", "id": "344876665", "tags": ""}, {"datetaken": "2007-01-03 18:50:57", "license": "1", "title": "Staircase without Flash", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/344878352_26f888e687_o.jpg", "secret": "26f888e687", "media": "photo", "latitude": "0", "id": "344878352", "tags": ""}, {"datetaken": "2007-01-04 12:07:33", "license": "1", "title": "Houses", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/345894190_616cd01c1a_o.jpg", "secret": "616cd01c1a", "media": "photo", "latitude": "0", "id": "345894190", "tags": ""}, {"datetaken": "2007-01-04 12:14:39", "license": "1", "title": "Johnny's", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/345894487_de87c5e2d4_o.jpg", "secret": "de87c5e2d4", "media": "photo", "latitude": "0", "id": "345894487", "tags": "sign collegetown drydenroad johnnysbigred johnnysbigredgrill"}, {"datetaken": "2007-01-04 12:52:41", "license": "1", "title": "Nines Pizza", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/345894683_bc07d1716e_o.jpg", "secret": "bc07d1716e", "media": "photo", "latitude": "0", "id": "345894683", "tags": "food pizza ithaca nines"}, {"datetaken": "2007-01-04 13:14:34", "license": "1", "title": "Hydrant", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/345894881_2f4f1a0db1_o.jpg", "secret": "2f4f1a0db1", "media": "photo", "latitude": "0", "id": "345894881", "tags": "postcard firehydrant collegetown"}, {"datetaken": "2007-01-04 13:16:54", "license": "1", "title": "Collegetown House", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/345895086_10ca55d43c_o.jpg", "secret": "10ca55d43c", "media": "photo", "latitude": "0", "id": "345895086", "tags": "sky collegetown"}, {"datetaken": "2007-01-04 14:15:53", "license": "1", "title": "Baguettes", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/345895345_719fb4cf4e_o.jpg", "secret": "719fb4cf4e", "media": "photo", "latitude": "0", "id": "345895345", "tags": "bread baguette queenoftarts coaloffice"}, {"datetaken": "2007-01-04 14:55:06", "license": "1", "title": "Gingerbread House", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/345895629_7f3e548bd9_o.jpg", "secret": "7f3e548bd9", "media": "photo", "latitude": "0", "id": "345895629", "tags": "gingerbread stainedglass gingerbreadhouse"}, {"datetaken": "2007-01-04 16:04:29", "license": "1", "title": "Coal", "text": "", "album_id": "72157594458032284", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/345895935_894fe768cb_o.jpg", "secret": "894fe768cb", "media": "photo", "latitude": "0", "id": "345895935", "tags": "ithaca coal queenoftarts coaloffice"}, {"datetaken": "2011-12-14 11:32:12", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7007/6630052893_67a291d1aa_o.jpg", "secret": "3a95be7d6a", "media": "photo", "latitude": "0", "id": "6630052893", "tags": ""}, {"datetaken": "2011-12-14 11:32:18", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7168/6630053565_9ef3e43394_o.jpg", "secret": "6c6dbec0a1", "media": "photo", "latitude": "0", "id": "6630053565", "tags": ""}, {"datetaken": "2011-12-14 12:11:28", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7175/6630054209_1cb53415f5_o.jpg", "secret": "fc685fc2f9", "media": "photo", "latitude": "0", "id": "6630054209", "tags": ""}, {"datetaken": "2011-12-14 12:13:11", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7164/6630054875_31752dbf76_o.jpg", "secret": "5d09f374f1", "media": "photo", "latitude": "0", "id": "6630054875", "tags": ""}, {"datetaken": "2011-12-14 12:21:50", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7159/6630055683_3a2363a544_o.jpg", "secret": "43fb237478", "media": "photo", "latitude": "0", "id": "6630055683", "tags": ""}, {"datetaken": "2011-12-14 13:38:50", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7027/6630056949_4a3d9c0fc1_o.jpg", "secret": "a03bf71e3f", "media": "photo", "latitude": "0", "id": "6630056949", "tags": ""}, {"datetaken": "2011-12-14 13:38:58", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6630057643_2c2f5e5fa8_o.jpg", "secret": "8db959542c", "media": "photo", "latitude": "0", "id": "6630057643", "tags": ""}, {"datetaken": "2011-12-14 13:39:10", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7148/6630058361_53bc45bdf0_o.jpg", "secret": "d84104ef18", "media": "photo", "latitude": "0", "id": "6630058361", "tags": ""}, {"datetaken": "2011-12-14 16:19:31", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7018/6630059085_5b23ca92d3_o.jpg", "secret": "db3d8b4cf9", "media": "photo", "latitude": "0", "id": "6630059085", "tags": ""}, {"datetaken": "2011-12-14 16:19:48", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7016/6630060427_eebcfac3f4_o.jpg", "secret": "65c6917b40", "media": "photo", "latitude": "0", "id": "6630060427", "tags": ""}, {"datetaken": "2011-12-15 11:03:54", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6630061269_a3c1f13bb4_o.jpg", "secret": "f806aace91", "media": "photo", "latitude": "0", "id": "6630061269", "tags": ""}, {"datetaken": "2011-12-15 11:06:47", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7166/6630062055_ae10a7e84c_o.jpg", "secret": "a0b8f3490e", "media": "photo", "latitude": "0", "id": "6630062055", "tags": ""}, {"datetaken": "2011-12-15 11:07:15", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7165/6630062797_6ec3d17168_o.jpg", "secret": "8edddac452", "media": "photo", "latitude": "0", "id": "6630062797", "tags": ""}, {"datetaken": "2011-12-15 11:07:23", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7170/6630063757_30964b8fac_o.jpg", "secret": "32e6cde947", "media": "photo", "latitude": "0", "id": "6630063757", "tags": ""}, {"datetaken": "2011-12-15 11:07:29", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7015/6630064553_974cb670f6_o.jpg", "secret": "2ccc2962ee", "media": "photo", "latitude": "0", "id": "6630064553", "tags": ""}, {"datetaken": "2011-12-15 18:15:15", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7011/6630065207_180ac10f4b_o.jpg", "secret": "dcc8d5756e", "media": "photo", "latitude": "0", "id": "6630065207", "tags": ""}, {"datetaken": "2011-12-15 18:22:02", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7009/6630066211_9d9a58e6f4_o.jpg", "secret": "0b4acca202", "media": "photo", "latitude": "0", "id": "6630066211", "tags": ""}, {"datetaken": "2011-12-15 18:22:17", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7145/6630066865_23d0e68a67_o.jpg", "secret": "0bcd1082e6", "media": "photo", "latitude": "0", "id": "6630066865", "tags": ""}, {"datetaken": "2011-12-15 18:22:41", "license": "2", "title": "", "text": "", "album_id": "72157628703718831", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7001/6630067587_af1ee889b1_o.jpg", "secret": "01bc399f11", "media": "photo", "latitude": "0", "id": "6630067587", "tags": ""}, {"datetaken": "2012-01-03 21:55:29", "license": "5", "title": "New York", "text": "", "album_id": "72157628704515723", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7164/6630278879_9a312ae4dd_o.jpg", "secret": "7f93cc3423", "media": "photo", "latitude": "0", "id": "6630278879", "tags": "usa newyork manhattan sony broadway oneway alpha amerika verkehrsschild 580 sonyalpha sonyalpha580 alpha580"}, {"datetaken": "2012-01-03 21:56:41", "license": "5", "title": "New York", "text": "", "album_id": "72157628704515723", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7028/6630285767_f8767b4424_o.jpg", "secret": "7e40c90365", "media": "photo", "latitude": "0", "id": "6630285767", "tags": "new york usa newyork caf\u00e9 rock manhattan sony hard police policecar alpha amerika yankees 580 sonyalpha sonyalpha580 alpha580"}, {"datetaken": "2012-01-03 21:58:00", "license": "5", "title": "New York", "text": "", "album_id": "72157628704515723", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6630293309_3e3e99aee0_o.jpg", "secret": "3d46dbb739", "media": "photo", "latitude": "0", "id": "6630293309", "tags": "usa newyork office manhattan sony police nypd policecar alpha amerika polizei 580 polizist policeofficer polizeiauto blaulicht sonyalpha sonyalpha580 alpha580"}, {"datetaken": "2012-01-03 21:59:56", "license": "5", "title": "New York", "text": "", "album_id": "72157628704515723", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7005/6630304699_c65dc20cba_o.jpg", "secret": "e25d38287c", "media": "photo", "latitude": "0", "id": "6630304699", "tags": "street usa newyork cola manhattan sony coke alpha amerika lastwagen coka lkw 580 strase sonyalpha sonyalpha580 alpha580"}, {"datetaken": "2012-01-03 22:01:04", "license": "5", "title": "New York", "text": "", "album_id": "72157628704515723", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7032/6630311425_eb858e771e_o.jpg", "secret": "c61f03c485", "media": "photo", "latitude": "0", "id": "6630311425", "tags": "usa newyork angel fishing manhattan sony alpha amerika fischer 580 sonyalpha sonyalpha580 alpha580"}, {"datetaken": "2012-01-03 22:02:05", "license": "5", "title": "New York", "text": "", "album_id": "72157628704515723", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7169/6630317443_20a92aee47_o.jpg", "secret": "155323a9d4", "media": "photo", "latitude": "0", "id": "6630317443", "tags": "usa newyork manhattan sony alpha amerika strips 580 sonyalpha sonyalpha580 alpha580 br\u00fcckefahnestars"}, {"datetaken": "2012-01-03 22:02:37", "license": "5", "title": "New York", "text": "", "album_id": "72157628704515723", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7025/6630320383_a36b2f8809_o.jpg", "secret": "607d57ac89", "media": "photo", "latitude": "0", "id": "6630320383", "tags": "usa newyork manhattan sony alpha amerika 580 sonyalpha sonyalpha580 alpha580"}, {"datetaken": "2012-01-03 22:03:14", "license": "5", "title": "New York", "text": "", "album_id": "72157628704515723", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6630323985_4f7a6664a7_o.jpg", "secret": "744382c234", "media": "photo", "latitude": "0", "id": "6630323985", "tags": "usa newyork bus manhattan sony 123 gelb schoolbus alpha amerika 580 schulbus sonyalpha sonyalpha580 alpha580"}, {"datetaken": "2012-01-03 22:03:45", "license": "5", "title": "New York", "text": "", "album_id": "72157628704515723", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7018/6630326891_dc688e4fde_o.jpg", "secret": "50e5812d3a", "media": "photo", "latitude": "0", "id": "6630326891", "tags": "usa newyork manhattan sony alpha amerika 580 sonyalpha sonyalpha580 alpha580"}, {"datetaken": "2012-01-03 22:04:23", "license": "5", "title": "New York", "text": "", "album_id": "72157628704515723", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7026/6630330455_2a0bd3f363_o.jpg", "secret": "a28e551a91", "media": "photo", "latitude": "0", "id": "6630330455", "tags": "usa newyork manhattan sony alpha amerika 580 sonyalpha sonyalpha580 alpha580"}, {"datetaken": "2012-01-03 22:04:54", "license": "5", "title": "New York", "text": "", "album_id": "72157628704515723", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7158/6630333575_30c548060e_o.jpg", "secret": "6a1d739348", "media": "photo", "latitude": "0", "id": "6630333575", "tags": "usa newyork manhattan sony alpha amerika 580 sonyalpha sonyalpha580 alpha580"}, {"datetaken": "2012-01-03 22:05:28", "license": "5", "title": "New York", "text": "", "album_id": "72157628704515723", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7005/6630336757_2010c6de69_o.jpg", "secret": "5c03e837d5", "media": "photo", "latitude": "0", "id": "6630336757", "tags": "usa newyork manhattan sony schild wallstreet alpha amerika ampel 580 sonyalpha sonyalpha580 alpha580"}, {"datetaken": "2012-01-03 22:06:05", "license": "5", "title": "New York", "text": "", "album_id": "72157628704515723", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7169/6630340383_41943077c4_o.jpg", "secret": "8deecebe26", "media": "photo", "latitude": "0", "id": "6630340383", "tags": "usa newyork manhattan sony alpha amerika 580 sonyalpha sonyalpha580 alpha580"}, {"datetaken": "2012-01-03 22:06:39", "license": "5", "title": "New York", "text": "", "album_id": "72157628704515723", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7155/6630343467_cd981c32a2_o.jpg", "secret": "2cd5365be3", "media": "photo", "latitude": "0", "id": "6630343467", "tags": "street usa newyork manhattan sony alpha amerika firefighter 54 fdny feuerwehr 580 einsatz strase sonyalpha sonyalpha580 alpha580"}, {"datetaken": "2012-01-03 22:07:10", "license": "5", "title": "New York", "text": "", "album_id": "72157628704515723", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7029/6630346235_30a73901f0_o.jpg", "secret": "314e0cbf27", "media": "photo", "latitude": "0", "id": "6630346235", "tags": "park usa newyork water wasser autum centralpark manhattan sony laub herbst alpha amerika 580 hochh\u00e4user sonyalpha sonyalpha580 alpha580"}, {"datetaken": "2010-03-26 11:22:55", "license": "3", "title": "IMG_2997", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4488468130_bef1a4e5eb_o.jpg", "secret": "19008a449b", "media": "photo", "latitude": "0", "id": "4488468130", "tags": ""}, {"datetaken": "2010-03-26 11:28:57", "license": "3", "title": "IMG_2998", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4487819525_0bcf3fd280_o.jpg", "secret": "51ff5ec37e", "media": "photo", "latitude": "0", "id": "4487819525", "tags": ""}, {"datetaken": "2010-03-26 11:30:50", "license": "3", "title": "IMG_3000", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4487819677_a45453c602_o.jpg", "secret": "150a2bf4e9", "media": "photo", "latitude": "0", "id": "4487819677", "tags": ""}, {"datetaken": "2010-03-26 11:30:57", "license": "3", "title": "IMG_3001", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4487819921_afdf49bbed_o.jpg", "secret": "ed334dbfe2", "media": "photo", "latitude": "0", "id": "4487819921", "tags": ""}, {"datetaken": "2010-03-26 11:32:47", "license": "3", "title": "IMG_3002", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4487820391_3b6d1b10b3_o.jpg", "secret": "3ac3509aa3", "media": "photo", "latitude": "0", "id": "4487820391", "tags": ""}, {"datetaken": "2010-03-26 11:34:30", "license": "3", "title": "IMG_3004", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2680/4487820885_c924cfd72d_o.jpg", "secret": "548db69769", "media": "photo", "latitude": "0", "id": "4487820885", "tags": ""}, {"datetaken": "2010-03-26 11:38:06", "license": "3", "title": "IMG_3005", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2720/4487821435_25e5e97e50_o.jpg", "secret": "c7ff1a81a4", "media": "photo", "latitude": "0", "id": "4487821435", "tags": ""}, {"datetaken": "2010-03-26 11:40:16", "license": "3", "title": "IMG_3011", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2716/4487821745_0aedd14530_o.jpg", "secret": "17dc0f3323", "media": "photo", "latitude": "0", "id": "4487821745", "tags": ""}, {"datetaken": "2010-03-26 11:45:08", "license": "3", "title": "IMG_3012", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4488470792_e9b91ca669_o.jpg", "secret": "ff262c35d4", "media": "photo", "latitude": "0", "id": "4488470792", "tags": ""}, {"datetaken": "2010-03-26 11:45:14", "license": "3", "title": "IMG_3013", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2682/4487822401_1589b87952_o.jpg", "secret": "5c1b151e72", "media": "photo", "latitude": "0", "id": "4487822401", "tags": ""}, {"datetaken": "2010-03-27 06:08:50", "license": "3", "title": "IMG_3034", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4487822673_87140a197b_o.jpg", "secret": "be836643d1", "media": "photo", "latitude": "0", "id": "4487822673", "tags": ""}, {"datetaken": "2010-03-27 11:33:43", "license": "3", "title": "IMG_3052", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4487823235_404196889a_o.jpg", "secret": "6381817ec7", "media": "photo", "latitude": "0", "id": "4487823235", "tags": ""}, {"datetaken": "2010-03-27 11:34:07", "license": "3", "title": "IMG_3053", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4488472464_7210b775fd_o.jpg", "secret": "98424515e6", "media": "photo", "latitude": "0", "id": "4488472464", "tags": ""}, {"datetaken": "2010-03-27 12:06:25", "license": "3", "title": "IMG_3054", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2701/4487824137_4fdbd98e95_o.jpg", "secret": "87bef9bb97", "media": "photo", "latitude": "0", "id": "4487824137", "tags": ""}, {"datetaken": "2010-03-27 12:42:28", "license": "3", "title": "IMG_3055", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4487824563_262a330ff6_o.jpg", "secret": "e1815f4116", "media": "photo", "latitude": "0", "id": "4487824563", "tags": ""}, {"datetaken": "2010-03-27 12:42:39", "license": "3", "title": "IMG_3056", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4487825069_0834f14623_o.jpg", "secret": "d268971308", "media": "photo", "latitude": "0", "id": "4487825069", "tags": ""}, {"datetaken": "2010-03-27 12:44:28", "license": "3", "title": "IMG_3057", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4487825457_435e4c10a7_o.jpg", "secret": "501081a351", "media": "photo", "latitude": "0", "id": "4487825457", "tags": ""}, {"datetaken": "2010-03-27 12:46:15", "license": "3", "title": "IMG_3058", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4488474594_b61a33d1e5_o.jpg", "secret": "2ce5dbc571", "media": "photo", "latitude": "0", "id": "4488474594", "tags": ""}, {"datetaken": "2010-03-27 12:47:35", "license": "3", "title": "IMG_3059", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4488474918_4a6b487eb9_o.jpg", "secret": "71e1ae14db", "media": "photo", "latitude": "0", "id": "4488474918", "tags": ""}, {"datetaken": "2010-03-27 12:47:46", "license": "3", "title": "IMG_3060", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4488475922_3516ebe554_o.jpg", "secret": "73192ef1b0", "media": "photo", "latitude": "0", "id": "4488475922", "tags": ""}, {"datetaken": "2010-03-27 12:49:38", "license": "3", "title": "IMG_3061", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4488476508_2caa492dea_o.jpg", "secret": "15f3d4e68a", "media": "photo", "latitude": "0", "id": "4488476508", "tags": ""}, {"datetaken": "2010-03-27 12:54:18", "license": "3", "title": "IMG_3062", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4487828447_98e13f1b33_o.jpg", "secret": "6d59fed9c5", "media": "photo", "latitude": "0", "id": "4487828447", "tags": ""}, {"datetaken": "2010-03-27 12:55:26", "license": "3", "title": "IMG_3063", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4487829017_5c8bdea2ed_o.jpg", "secret": "f9ce402ce5", "media": "photo", "latitude": "0", "id": "4487829017", "tags": ""}, {"datetaken": "2010-03-27 13:08:58", "license": "3", "title": "IMG_3064", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2709/4487829801_69ca6ed851_o.jpg", "secret": "9f28c02446", "media": "photo", "latitude": "0", "id": "4487829801", "tags": ""}, {"datetaken": "2010-03-27 13:09:04", "license": "3", "title": "IMG_3065", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4488479696_a6f5b5b9c9_o.jpg", "secret": "e26910db96", "media": "photo", "latitude": "0", "id": "4488479696", "tags": ""}, {"datetaken": "2010-03-27 13:09:23", "license": "3", "title": "IMG_3066", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4488480890_34e32d52fa_o.jpg", "secret": "ef43b81edf", "media": "photo", "latitude": "0", "id": "4488480890", "tags": ""}, {"datetaken": "2010-03-27 13:11:41", "license": "3", "title": "IMG_3067", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4487833693_c7efb37544_o.jpg", "secret": "edcda0e141", "media": "photo", "latitude": "0", "id": "4487833693", "tags": ""}, {"datetaken": "2010-03-27 13:12:13", "license": "3", "title": "IMG_3068", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4488484148_eaf4627de1_o.jpg", "secret": "f8c48d9571", "media": "photo", "latitude": "0", "id": "4488484148", "tags": ""}, {"datetaken": "2010-03-27 13:27:48", "license": "3", "title": "IMG_3069", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4488485088_ecde61d2e0_o.jpg", "secret": "ee2022bd01", "media": "photo", "latitude": "0", "id": "4488485088", "tags": ""}, {"datetaken": "2010-03-27 13:45:38", "license": "3", "title": "IMG_3070", "text": "", "album_id": "72157623639739647", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4488486382_6477e87c2e_o.jpg", "secret": "499e66ec3a", "media": "photo", "latitude": "0", "id": "4488486382", "tags": ""}, {"datetaken": "2001-12-03 12:14:14", "license": "1", "title": "employee roster? - dscf0314", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/133241041_9b2919ed54_o.jpg", "secret": "9b2919ed54", "media": "photo", "latitude": "0", "id": "133241041", "tags": "sandiego nbcbuilding interactivate interctivate 20011203 interctivateconsultinggroup employeeroster interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:15:29", "license": "1", "title": "view of downtown san diego / harbor - dscf0315", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/133241056_708a880471_o.jpg", "secret": "708a880471", "media": "photo", "latitude": "0", "id": "133241056", "tags": "sandiego nbcbuilding interactivate interctivate peterfeldman 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:15:39", "license": "1", "title": "larry sica and a big printer - dscf0316", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/133241063_c0e8cb5ac9_o.jpg", "secret": "c0e8cb5ac9", "media": "photo", "latitude": "0", "id": "133241063", "tags": "sandiego nbcbuilding interactivate interctivate seandreilinger 20011203 interctivateconsultinggroup larrysica lawrencesica interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:19:19", "license": "1", "title": "doug main at his desk - dscf0317", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/133241079_140a72c217_o.jpg", "secret": "140a72c217", "media": "photo", "latitude": "0", "id": "133241079", "tags": "sandiego nbcbuilding interactiveagency interactivate interctivate seandreilinger 20011203 interctivateconsultinggroup dougmain interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:20:27", "license": "1", "title": "mary gross and jack abbott deck the halls - dscf0318", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/133241105_5bf566b079_o.jpg", "secret": "5bf566b079", "media": "photo", "latitude": "0", "id": "133241105", "tags": "sandiego nbcbuilding interactivate interctivate jackabbott marygross 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:21:01", "license": "1", "title": "hard at work - dscf0319", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/133241121_4a0e8d56fd_o.jpg", "secret": "4a0e8d56fd", "media": "photo", "latitude": "0", "id": "133241121", "tags": "sandiego nbcbuilding interactivate interctivate 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:21:34", "license": "1", "title": "morgan and mary - dscf0320", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/133241135_ec8a42dc41_o.jpg", "secret": "ec8a42dc41", "media": "photo", "latitude": "0", "id": "133241135", "tags": "sandiego morganbrown nbcbuilding interactivate interctivate marygross 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:22:57", "license": "1", "title": "view of downtown san diego from the office - dscf0323", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/133241146_c9d6e2cb36_o.jpg", "secret": "c9d6e2cb36", "media": "photo", "latitude": "0", "id": "133241146", "tags": "harbor downtown view sandiego nbcbuilding interactivate interctivate seandreilinger 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:23:34", "license": "1", "title": "on the phone - dscf0325", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/133241164_10d4e383e4_o.jpg", "secret": "10d4e383e4", "media": "photo", "latitude": "0", "id": "133241164", "tags": "sandiego nbcbuilding interactivate interctivate seandreilinger 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:24:18", "license": "1", "title": "downtown san diego view - dscf0326", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/133241174_547a96022b_o.jpg", "secret": "547a96022b", "media": "photo", "latitude": "0", "id": "133241174", "tags": "clouds view sandiego coronado coronadobridge nbcbuilding interactivate interctivate 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:24:29", "license": "1", "title": "katy at her desk - dscf0327", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/133241189_eb8d69391d_o.jpg", "secret": "eb8d69391d", "media": "photo", "latitude": "0", "id": "133241189", "tags": "katy sandiego nbcbuilding interactivate interctivate 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:25:43", "license": "1", "title": "debbie & colleague - dscf0328", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/133241210_40d1554806_o.jpg", "secret": "40d1554806", "media": "photo", "latitude": "0", "id": "133241210", "tags": "sandiego nbcbuilding interactivate interctivate seandreilinger jackabbott marygross peterfeldman 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:26:24", "license": "1", "title": "employee of the month - dscf0329", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/133241220_76a263f163_o.jpg", "secret": "76a263f163", "media": "photo", "latitude": "0", "id": "133241220", "tags": "sandiego employeeofthemonth nbcbuilding interactivate interctivate 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:27:08", "license": "1", "title": "mary & jack and colleague - dscf0330", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/133241231_943a7a8539_o.jpg", "secret": "943a7a8539", "media": "photo", "latitude": "0", "id": "133241231", "tags": "computer sandiego desk nbcbuilding interactivate interctivate jackabbott marygross 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:28:01", "license": "1", "title": "network diagram - dscf0331", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/133241253_17f9824f5c_o.jpg", "secret": "17f9824f5c", "media": "photo", "latitude": "0", "id": "133241253", "tags": "sandiego nbcbuilding networkdiagram interactivate interctivate 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:29:20", "license": "1", "title": "binoculars - dscf0332", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/133241262_0ca75c1529_o.jpg", "secret": "0ca75c1529", "media": "photo", "latitude": "0", "id": "133241262", "tags": "sandiego binoculars nbcbuilding interactivate interctivate 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:29:41", "license": "1", "title": "dscf0333", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/133241273_7ea73009b5_o.jpg", "secret": "7ea73009b5", "media": "photo", "latitude": "0", "id": "133241273", "tags": "sandiego nbcbuilding interactivate interctivate 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:32:02", "license": "1", "title": "mybart website redesign - dscf0335", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/133241287_a2ca3ae03d_o.jpg", "secret": "a2ca3ae03d", "media": "photo", "latitude": "0", "id": "133241287", "tags": "sandiego bart website nbcbuilding interactivate interctivate 20011203 interctivateconsultinggroup mybart interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 12:33:24", "license": "1", "title": "san diego zoo schwag - dscf0336", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/133241297_f9ca1fde44_o.jpg", "secret": "f9ca1fde44", "media": "photo", "latitude": "0", "id": "133241297", "tags": "sandiego merch wildanimalpark sandiegozoo schwag nbcbuilding interactivate interctivate 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 13:46:30", "license": "1", "title": "jack in the new construction zone - dscf0338", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/133241312_7e1243eed3_o.jpg", "secret": "7e1243eed3", "media": "photo", "latitude": "0", "id": "133241312", "tags": "sandiego washingtonmutualbuilding interactivate interctivate jackabbott marygross 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 13:50:56", "license": "1", "title": "jack in the new office space - dscf0342", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/133241317_c1111c2cbe_o.jpg", "secret": "c1111c2cbe", "media": "photo", "latitude": "0", "id": "133241317", "tags": "sandiego washingtonmutualbuilding interactivate interctivate jackabbott 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 14:03:28", "license": "1", "title": "nbc building - dscf0346", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/133241329_453759c555_o.jpg", "secret": "453759c555", "media": "photo", "latitude": "0", "id": "133241329", "tags": "sandiego nbcbuilding interactivate interctivate jackabbott marygross 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 14:05:47", "license": "1", "title": "advertising awards and trophies - dscf0347", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/133241350_f1a6e34a61_o.jpg", "secret": "f1a6e34a61", "media": "photo", "latitude": "0", "id": "133241350", "tags": "sandiego awards trophies nbcbuilding interactivate interctivate 20011203 interctivateconsultinggroup interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2001-12-03 14:06:20", "license": "1", "title": "peter feldman and jack abbott - dscf0349", "text": "", "album_id": "72157594324557686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/133241364_a6374cf726_o.jpg", "secret": "a6374cf726", "media": "photo", "latitude": "0", "id": "133241364", "tags": "sandiego nbcbuilding interactivate interctivate peterfeldman 20011203 interctivateconsultinggroup interactivatejackabbott interactivatecom interactivateconsultinggroup wwwinteractivatecom"}, {"datetaken": "2010-03-04 19:58:14", "license": "3", "title": "Shad K Promo Poster", "text": "", "album_id": "72157623510015317", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2782/4407773672_cc5d638b15_o.jpg", "secret": "46263beaaf", "media": "photo", "latitude": "0", "id": "4407773672", "tags": "hiphop shad shadk thecomeupshow shadatcalltheoffice"}, {"datetaken": "2010-03-04 21:44:39", "license": "3", "title": "Shad at Call The Office", "text": "", "album_id": "72157623510015317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4407194567_9ba460fa8b_o.png", "secret": "993fe1a029", "media": "photo", "latitude": "0", "id": "4407194567", "tags": "shad calltheoffice thecomeupshow shadatcalltheoffice shadthecomeupshow"}, {"datetaken": "2010-03-04 21:44:49", "license": "3", "title": "Shad at Call The Office", "text": "", "album_id": "72157623510015317", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2551/4407194845_1783e4bbf6_o.png", "secret": "250d905955", "media": "photo", "latitude": "0", "id": "4407194845", "tags": "shad calltheoffice thecomeupshow shadatcalltheoffice shadthecomeupshow"}, {"datetaken": "2010-03-04 21:44:52", "license": "3", "title": "Shad at Call The Office", "text": "", "album_id": "72157623510015317", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4407962334_131e5764f0_o.png", "secret": "bb0771f6db", "media": "photo", "latitude": "0", "id": "4407962334", "tags": "shad calltheoffice thecomeupshow shadatcalltheoffice shadthecomeupshow"}, {"datetaken": "2010-03-04 21:44:55", "license": "3", "title": "Shad at Call The Office", "text": "", "album_id": "72157623510015317", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2717/4407962442_3b2b30e227_o.png", "secret": "3ce7dd0772", "media": "photo", "latitude": "0", "id": "4407962442", "tags": "shad calltheoffice thecomeupshow shadatcalltheoffice shadthecomeupshow"}, {"datetaken": "2010-03-04 21:44:59", "license": "3", "title": "Shad at Call The Office", "text": "", "album_id": "72157623510015317", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2723/4407195147_2dbc91ca93_o.png", "secret": "6cd6094ccf", "media": "photo", "latitude": "0", "id": "4407195147", "tags": "shad calltheoffice thecomeupshow shadatcalltheoffice shadthecomeupshow"}, {"datetaken": "2010-03-04 21:45:02", "license": "3", "title": "Shad at Call The Office", "text": "", "album_id": "72157623510015317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4407962612_c1fbc30b5c_o.png", "secret": "481cfbffe2", "media": "photo", "latitude": "0", "id": "4407962612", "tags": "shad calltheoffice thecomeupshow shadatcalltheoffice shadthecomeupshow"}, {"datetaken": "2010-03-04 21:45:08", "license": "3", "title": "Shad at Call The Office", "text": "", "album_id": "72157623510015317", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4407195445_244448b4da_o.png", "secret": "1e15033ea1", "media": "photo", "latitude": "0", "id": "4407195445", "tags": "shad calltheoffice thecomeupshow shadatcalltheoffice shadthecomeupshow"}, {"datetaken": "2010-03-04 21:45:17", "license": "3", "title": "Shad at Call The Office", "text": "", "album_id": "72157623510015317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4407195755_22cd1d6523_o.png", "secret": "3d8b8d1ce0", "media": "photo", "latitude": "0", "id": "4407195755", "tags": "shad calltheoffice thecomeupshow shadatcalltheoffice shadthecomeupshow"}, {"datetaken": "2010-03-04 22:07:54", "license": "3", "title": "Shad at Call The Office", "text": "", "album_id": "72157623510015317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4408002320_ef91b2f454_o.png", "secret": "ede1c2ff82", "media": "photo", "latitude": "0", "id": "4408002320", "tags": "shad calltheoffice thecomeupshow shadatcalltheoffice shadthecomeupshow"}, {"datetaken": "2010-03-04 22:07:59", "license": "3", "title": "Shad at Call The Office", "text": "", "album_id": "72157623510015317", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4408002458_8d535bcbcd_o.png", "secret": "921e74e21b", "media": "photo", "latitude": "0", "id": "4408002458", "tags": "shad calltheoffice thecomeupshow shadatcalltheoffice shadthecomeupshow"}, {"datetaken": "2010-03-04 22:08:03", "license": "3", "title": "Shad at Call The Office", "text": "", "album_id": "72157623510015317", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4408002538_e48bd78bc1_o.png", "secret": "e8707f96bc", "media": "photo", "latitude": "0", "id": "4408002538", "tags": "shad calltheoffice thecomeupshow shadatcalltheoffice shadthecomeupshow"}, {"datetaken": "2006-12-29 12:21:45", "license": "2", "title": "food table", "text": "", "album_id": "72157594462307386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/347377939_d751c3f368_o.jpg", "secret": "d751c3f368", "media": "photo", "latitude": "0", "id": "347377939", "tags": "ocean street food lunch office singapore year chinese end amoy"}, {"datetaken": "2006-12-29 12:22:18", "license": "2", "title": "baby sausages", "text": "", "album_id": "72157594462307386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/347372875_0477ab0366_o.jpg", "secret": "0477ab0366", "media": "photo", "latitude": "0", "id": "347372875", "tags": "ocean street food lunch office singapore year chinese end amoy"}, {"datetaken": "2006-12-29 12:22:23", "license": "2", "title": "Kang kong", "text": "", "album_id": "72157594462307386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/347372877_56c0d8d3b8_o.jpg", "secret": "56c0d8d3b8", "media": "photo", "latitude": "0", "id": "347372877", "tags": "ocean street food lunch office singapore year chinese end amoy"}, {"datetaken": "2006-12-29 12:22:28", "license": "2", "title": "honeyed chicken cutlets", "text": "", "album_id": "72157594462307386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/347372879_6c4e73b3ee_o.jpg", "secret": "6c4e73b3ee", "media": "photo", "latitude": "0", "id": "347372879", "tags": "ocean street food lunch office singapore year chinese end amoy"}, {"datetaken": "2006-12-29 12:22:35", "license": "2", "title": "Fish curry", "text": "", "album_id": "72157594462307386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/347372880_4c20c5ad39_o.jpg", "secret": "4c20c5ad39", "media": "photo", "latitude": "0", "id": "347372880", "tags": "ocean street food lunch office singapore year chinese end amoy"}, {"datetaken": "2006-12-29 12:22:40", "license": "2", "title": "Mermaid ( i din noe this was called Mermaid)", "text": "", "album_id": "72157594462307386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/347372883_9312eb4bf0_o.jpg", "secret": "9312eb4bf0", "media": "photo", "latitude": "0", "id": "347372883", "tags": "ocean street food lunch office singapore year chinese end amoy"}, {"datetaken": "2006-12-29 12:22:48", "license": "2", "title": "Prawn paste fried chicken", "text": "", "album_id": "72157594462307386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/347372884_a76047f7a5_o.jpg", "secret": "a76047f7a5", "media": "photo", "latitude": "0", "id": "347372884", "tags": "ocean street food lunch office singapore year chinese end amoy"}, {"datetaken": "2006-12-29 12:22:53", "license": "2", "title": "vegetables", "text": "", "album_id": "72157594462307386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/347377936_723b91e7b6_o.jpg", "secret": "723b91e7b6", "media": "photo", "latitude": "0", "id": "347377936", "tags": "ocean street food lunch office singapore year chinese end amoy"}, {"datetaken": "2006-12-29 12:25:12", "license": "2", "title": "fruits!", "text": "", "album_id": "72157594462307386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/347377943_a014d8b412_o.jpg", "secret": "a014d8b412", "media": "photo", "latitude": "0", "id": "347377943", "tags": "ocean street food lunch office singapore year chinese end amoy"}, {"datetaken": "2006-12-29 12:25:43", "license": "2", "title": "fried bee hoon", "text": "", "album_id": "72157594462307386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/347377942_441aa4b7ee_o.jpg", "secret": "441aa4b7ee", "media": "photo", "latitude": "0", "id": "347377942", "tags": "ocean street food lunch office singapore year chinese end amoy"}, {"datetaken": "2006-12-29 13:17:56", "license": "2", "title": "kuey (sticky cake?)", "text": "", "album_id": "72157594462307386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/347377946_195c76f878_o.jpg", "secret": "195c76f878", "media": "photo", "latitude": "0", "id": "347377946", "tags": "ocean street food lunch office singapore year chinese end amoy"}, {"datetaken": "2007-01-06 15:00:48", "license": "4", "title": "Random Buildings in DC", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/349287486_c4ab7be49e_o.jpg", "secret": "c4ab7be49e", "media": "photo", "latitude": "0", "id": "349287486", "tags": "washingtondc"}, {"datetaken": "2007-01-06 15:01:08", "license": "4", "title": "National Cathedral", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/349288560_8c9fc0d2b9_o.jpg", "secret": "8c9fc0d2b9", "media": "photo", "latitude": "0", "id": "349288560", "tags": "washingtondc"}, {"datetaken": "2007-01-06 15:01:25", "license": "4", "title": "Shrine of the Immaculate Conception", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/349289602_6b2ad9ea14_o.jpg", "secret": "6b2ad9ea14", "media": "photo", "latitude": "0", "id": "349289602", "tags": "washingtondc"}, {"datetaken": "2007-01-06 15:01:48", "license": "4", "title": "The Capitol", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/349291068_86d61f969a_o.jpg", "secret": "86d61f969a", "media": "photo", "latitude": "0", "id": "349291068", "tags": "washingtondc"}, {"datetaken": "2007-01-06 15:02:04", "license": "4", "title": "The Capitol", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/349292493_8e04838435_o.jpg", "secret": "8e04838435", "media": "photo", "latitude": "0", "id": "349292493", "tags": "washingtondc"}, {"datetaken": "2007-01-06 15:02:42", "license": "4", "title": "The Capitol & Supreme Court", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/349293394_d6d19f0c36_o.jpg", "secret": "d6d19f0c36", "media": "photo", "latitude": "0", "id": "349293394", "tags": "washingtondc"}, {"datetaken": "2007-01-06 15:03:39", "license": "4", "title": "P1060184", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/349294474_c6d94f7f69_o.jpg", "secret": "c6d94f7f69", "media": "photo", "latitude": "0", "id": "349294474", "tags": "washingtondc"}, {"datetaken": "2007-01-06 15:03:58", "license": "4", "title": "Washington Monument", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/349295485_b6b819a58a_o.jpg", "secret": "b6b819a58a", "media": "photo", "latitude": "0", "id": "349295485", "tags": "washingtondc"}, {"datetaken": "2007-01-06 15:04:31", "license": "4", "title": "National Mall", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/349296588_4a08706220_o.jpg", "secret": "4a08706220", "media": "photo", "latitude": "0", "id": "349296588", "tags": "washingtondc"}, {"datetaken": "2007-01-06 15:05:07", "license": "4", "title": "White House", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/349297782_eeb5308466_o.jpg", "secret": "eeb5308466", "media": "photo", "latitude": "0", "id": "349297782", "tags": "washingtondc"}, {"datetaken": "2007-01-06 15:05:42", "license": "4", "title": "DC", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/349299401_65456313c7_o.jpg", "secret": "65456313c7", "media": "photo", "latitude": "0", "id": "349299401", "tags": "washingtondc"}, {"datetaken": "2007-01-06 15:06:34", "license": "4", "title": "Freedom Plaza", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/349301233_58a037aaf4_o.jpg", "secret": "58a037aaf4", "media": "photo", "latitude": "0", "id": "349301233", "tags": "washingtondc"}, {"datetaken": "2007-01-06 15:09:30", "license": "4", "title": "Old Post Office", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/349303407_0e3dde3b35_o.jpg", "secret": "0e3dde3b35", "media": "photo", "latitude": "0", "id": "349303407", "tags": "washingtondc"}, {"datetaken": "2007-01-06 16:00:00", "license": "2", "title": "Building in Rosslyn", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2030/2408118409_bba28aab2c_o.png", "secret": "fd8eb36c08", "media": "video", "latitude": "0", "id": "2408118409", "tags": "arlington va rosslyn"}, {"datetaken": "2007-01-06 16:11:04", "license": "4", "title": "Arlington Cemetery", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/349304596_423ff753c9_o.jpg", "secret": "423ff753c9", "media": "photo", "latitude": "0", "id": "349304596", "tags": "washingtondc"}, {"datetaken": "2007-01-06 16:11:56", "license": "4", "title": "Me & Gravestones", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/349305459_fb1709b273_o.jpg", "secret": "fb1709b273", "media": "photo", "latitude": "0", "id": "349305459", "tags": "washingtondc"}, {"datetaken": "2007-01-06 16:14:26", "license": "4", "title": "Eternal Flame", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/349306316_9bd4b4df49_o.jpg", "secret": "9bd4b4df49", "media": "photo", "latitude": "0", "id": "349306316", "tags": "washingtondc"}, {"datetaken": "2007-01-06 16:14:41", "license": "4", "title": "DC Skyline", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/349307223_63b38347a2_o.jpg", "secret": "63b38347a2", "media": "photo", "latitude": "0", "id": "349307223", "tags": "washingtondc"}, {"datetaken": "2007-01-06 16:15:17", "license": "4", "title": "DC Skyline", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/349308172_65838accb6_o.jpg", "secret": "65838accb6", "media": "photo", "latitude": "0", "id": "349308172", "tags": "washingtondc"}, {"datetaken": "2007-01-06 16:15:28", "license": "4", "title": "Pentagon & Arlington Cemetery", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/349308932_eb3447a437_o.jpg", "secret": "eb3447a437", "media": "photo", "latitude": "0", "id": "349308932", "tags": "washingtondc"}, {"datetaken": "2007-01-06 16:16:10", "license": "4", "title": "DC Skyline", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/349309668_dc8405fe13_o.jpg", "secret": "dc8405fe13", "media": "photo", "latitude": "0", "id": "349309668", "tags": "washingtondc"}, {"datetaken": "2007-01-06 16:18:23", "license": "4", "title": "Tribute to Two Dead Presidents Original", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/349310671_c3201d287f_o.jpg", "secret": "c3201d287f", "media": "photo", "latitude": "0", "id": "349310671", "tags": "washingtondc"}, {"datetaken": "2007-01-06 16:18:23", "license": "4", "title": "Tribute to Two Dead Presidents \"Fixed\"", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/349312501_f61eb031b9_o.jpg", "secret": "f61eb031b9", "media": "photo", "latitude": "0", "id": "349312501", "tags": "washingtondc"}, {"datetaken": "2007-01-06 16:19:20", "license": "4", "title": "Day 68: Me & DC Skyline", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/349313493_59ffca8673_o.jpg", "secret": "59ffca8673", "media": "photo", "latitude": "0", "id": "349313493", "tags": "washingtondc 365days"}, {"datetaken": "2007-01-06 16:22:41", "license": "4", "title": "Arlington Cemetery", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/349314481_fa6a0b5b92_o.jpg", "secret": "fa6a0b5b92", "media": "photo", "latitude": "0", "id": "349314481", "tags": "washingtondc"}, {"datetaken": "2007-01-06 16:37:54", "license": "4", "title": "Arlington Cemetery", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/349315362_c7f92b0935_o.jpg", "secret": "c7f92b0935", "media": "photo", "latitude": "0", "id": "349315362", "tags": "washingtondc"}, {"datetaken": "2007-01-06 16:41:22", "license": "4", "title": "DC Skyline", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/349316327_916924753e_o.jpg", "secret": "916924753e", "media": "photo", "latitude": "0", "id": "349316327", "tags": "washingtondc"}, {"datetaken": "2007-01-06 16:43:33", "license": "4", "title": "Iwo Jima", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/349317253_e14d10f732_o.jpg", "secret": "e14d10f732", "media": "photo", "latitude": "0", "id": "349317253", "tags": "washingtondc"}, {"datetaken": "2007-01-06 16:54:47", "license": "4", "title": "Building in Rosslyn", "text": "", "album_id": "72157594465479147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/349318315_bb52e2255e_o.jpg", "secret": "bb52e2255e", "media": "photo", "latitude": "0", "id": "349318315", "tags": "washingtondc"}, {"datetaken": "2010-02-08 11:16:24", "license": "2", "title": "New Dells, Collaborations with San Diego FabLab and a DIY Flyer Maker", "text": "", "album_id": "72157623619778624", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2783/4343109372_f00b82c2c1_o.jpg", "secret": "47fbe9ccf4", "media": "photo", "latitude": "0", "id": "4343109372", "tags": "new studio media diynewmedialab"}, {"datetaken": "2010-02-08 11:16:35", "license": "2", "title": "New Dells, Collaborations with San Diego FabLab and a DIY Flyer Maker", "text": "", "album_id": "72157623619778624", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2716/4342372979_d3f67dd144_o.jpg", "secret": "82ff403644", "media": "photo", "latitude": "0", "id": "4342372979", "tags": "new studio media diynewmedialab"}, {"datetaken": "2010-02-08 11:16:41", "license": "2", "title": "New Dells, Collaborations with San Diego FabLab and a DIY Flyer Maker", "text": "", "album_id": "72157623619778624", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2689/4342373125_e0f70cc948_o.jpg", "secret": "9a59c02222", "media": "photo", "latitude": "0", "id": "4342373125", "tags": "new studio media diynewmedialab"}, {"datetaken": "2010-02-08 11:16:47", "license": "2", "title": "New Dells, Collaborations with San Diego FabLab and a DIY Flyer Maker", "text": "", "album_id": "72157623619778624", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4342373209_a92de732e8_o.jpg", "secret": "bb73842ed9", "media": "photo", "latitude": "0", "id": "4342373209", "tags": "new studio media diynewmedialab"}, {"datetaken": "2010-02-08 12:02:12", "license": "2", "title": "New Dells, Collaborations with San Diego FabLab and a DIY Flyer Maker", "text": "", "album_id": "72157623619778624", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4342373323_c38c28ec1d_o.jpg", "secret": "b0f0c7e69f", "media": "photo", "latitude": "0", "id": "4342373323", "tags": "new studio media diynewmedialab"}, {"datetaken": "2010-02-08 12:02:28", "license": "2", "title": "New Dells, Collaborations with San Diego FabLab and a DIY Flyer Maker", "text": "", "album_id": "72157623619778624", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4343109816_ed86ef45e5_o.jpg", "secret": "16e874cd54", "media": "photo", "latitude": "0", "id": "4343109816", "tags": "new studio media diynewmedialab"}, {"datetaken": "2010-02-08 13:00:00", "license": "2", "title": "New Dells, Collaborations with San Diego FabLab and a DIY Flyer Maker", "text": "", "album_id": "72157623619778624", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2738/4343109936_baf25e7523_o.jpg", "secret": "2a3db0b741", "media": "photo", "latitude": "0", "id": "4343109936", "tags": "new studio media diynewmedialab"}, {"datetaken": "2010-02-08 13:00:09", "license": "2", "title": "New Dells, Collaborations with San Diego FabLab and a DIY Flyer Maker", "text": "", "album_id": "72157623619778624", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2694/4343110020_fe445a23fc_o.jpg", "secret": "c5de521bf9", "media": "photo", "latitude": "0", "id": "4343110020", "tags": "new studio media diynewmedialab"}, {"datetaken": "2010-02-08 13:03:04", "license": "2", "title": "New Dells, Collaborations with San Diego FabLab and a DIY Flyer Maker", "text": "", "album_id": "72157623619778624", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4343110090_0429f2fcb6_o.jpg", "secret": "0692f4f766", "media": "photo", "latitude": "0", "id": "4343110090", "tags": "new studio media diynewmedialab"}, {"datetaken": "2010-02-08 13:03:09", "license": "2", "title": "New Dells, Collaborations with San Diego FabLab and a DIY Flyer Maker", "text": "", "album_id": "72157623619778624", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2770/4343110162_1e0467f12b_o.jpg", "secret": "8daa1356ec", "media": "photo", "latitude": "0", "id": "4343110162", "tags": "new studio media diynewmedialab"}, {"datetaken": "2010-02-08 13:03:18", "license": "2", "title": "New Dells, Collaborations with San Diego FabLab and a DIY Flyer Maker", "text": "", "album_id": "72157623619778624", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4343110244_ec708ac1c2_o.jpg", "secret": "eee270b4b2", "media": "photo", "latitude": "0", "id": "4343110244", "tags": "new studio media diynewmedialab"}, {"datetaken": "2010-02-08 13:19:03", "license": "2", "title": "New Dells, Collaborations with San Diego FabLab and a DIY Flyer Maker", "text": "", "album_id": "72157623619778624", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4343110326_931b163c2a_o.jpg", "secret": "ef302d4a91", "media": "photo", "latitude": "0", "id": "4343110326", "tags": "new studio media diynewmedialab"}, {"datetaken": "2010-03-08 12:18:56", "license": "1", "title": "Cannon River Watershed Parthnership 20th Annual Meeting", "text": "", "album_id": "72157623456487091", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4417008139_70b3f47d62_o.jpg", "secret": "605bd60a74", "media": "photo", "latitude": "0", "id": "4417008139", "tags": "email usersubmission"}, {"datetaken": "2010-03-08 12:19:01", "license": "1", "title": "Cannon River Watershed Parthnership 20th Annual Meeting", "text": "", "album_id": "72157623456487091", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4417773518_5a8f9d10d9_o.jpg", "secret": "d4818ae70b", "media": "photo", "latitude": "0", "id": "4417773518", "tags": "email usersubmission"}, {"datetaken": "2010-03-08 12:19:04", "license": "1", "title": "Cannon River Watershed Parthnership 20th Annual Meeting", "text": "", "album_id": "72157623456487091", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2743/4417008533_d0c76d2074_o.jpg", "secret": "57230be396", "media": "photo", "latitude": "0", "id": "4417008533", "tags": "email usersubmission"}, {"datetaken": "2010-03-08 12:19:10", "license": "1", "title": "Cannon River Watershed Parthnership 20th Annual Meeting", "text": "", "album_id": "72157623456487091", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4417773864_230099edae_o.jpg", "secret": "16039017f2", "media": "photo", "latitude": "0", "id": "4417773864", "tags": "email usersubmission"}, {"datetaken": "2010-03-08 12:19:13", "license": "1", "title": "Cannon River Watershed Parthnership 20th Annual Meeting", "text": "", "album_id": "72157623456487091", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2791/4417008869_676a479ecb_o.jpg", "secret": "031236b7e3", "media": "photo", "latitude": "0", "id": "4417008869", "tags": "email usersubmission"}, {"datetaken": "2010-03-08 12:19:16", "license": "1", "title": "Cannon River Watershed Parthnership 20th Annual Meeting", "text": "", "album_id": "72157623456487091", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4417009011_7d960a5390_o.jpg", "secret": "d40ed3bd11", "media": "photo", "latitude": "0", "id": "4417009011", "tags": "email usersubmission"}, {"datetaken": "2010-03-08 12:19:19", "license": "1", "title": "Cannon River Watershed Parthnership 20th Annual Meeting", "text": "", "album_id": "72157623456487091", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4417774260_4f5a34c46f_o.jpg", "secret": "9a8eb23ce6", "media": "photo", "latitude": "0", "id": "4417774260", "tags": "email usersubmission"}, {"datetaken": "2010-03-08 12:19:22", "license": "1", "title": "Cannon River Watershed Parthnership 20th Annual Meeting", "text": "", "album_id": "72157623456487091", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4417774368_d0196f8ed7_o.jpg", "secret": "bb81268afd", "media": "photo", "latitude": "0", "id": "4417774368", "tags": "email usersubmission"}, {"datetaken": "2010-03-08 12:19:25", "license": "1", "title": "Cannon River Watershed Parthnership 20th Annual Meeting", "text": "", "album_id": "72157623456487091", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4417009403_6b7c05e94e_o.jpg", "secret": "13f168477b", "media": "photo", "latitude": "0", "id": "4417009403", "tags": "email usersubmission"}, {"datetaken": "2010-03-08 12:19:28", "license": "1", "title": "Cannon River Watershed Parthnership 20th Annual Meeting", "text": "", "album_id": "72157623456487091", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4417009535_9dd9a7a344_o.jpg", "secret": "cc11167b0f", "media": "photo", "latitude": "0", "id": "4417009535", "tags": "email usersubmission"}, {"datetaken": "2010-03-08 12:19:31", "license": "1", "title": "Cannon River Watershed Parthnership 20th Annual Meeting", "text": "", "album_id": "72157623456487091", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4417774776_8066963554_o.jpg", "secret": "2aea4e8a89", "media": "photo", "latitude": "0", "id": "4417774776", "tags": "email usersubmission"}, {"datetaken": "2010-03-08 12:19:34", "license": "1", "title": "Cannon River Watershed Parthnership 20th Annual Meeting", "text": "", "album_id": "72157623456487091", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2729/4417774942_6b41de4eb5_o.jpg", "secret": "187b2e47ba", "media": "photo", "latitude": "0", "id": "4417774942", "tags": "email usersubmission"}, {"datetaken": "2010-03-08 12:19:37", "license": "1", "title": "Cannon River Watershed Parthnership 20th Annual Meeting", "text": "", "album_id": "72157623456487091", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2692/4417775086_00111d6639_o.jpg", "secret": "d2502eb5d2", "media": "photo", "latitude": "0", "id": "4417775086", "tags": "email usersubmission"}, {"datetaken": "2010-03-08 12:19:38", "license": "1", "title": "Cannon River Watershed Parthnership 20th Annual Meeting", "text": "", "album_id": "72157623456487091", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4417775116_fb2f87a3c5_o.jpg", "secret": "84130bfb8d", "media": "photo", "latitude": "0", "id": "4417775116", "tags": "email usersubmission"}, {"datetaken": "2010-03-08 12:19:41", "license": "1", "title": "Cannon River Watershed Parthnership 20th Annual Meeting", "text": "", "album_id": "72157623456487091", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4417775234_3a0af3d62a_o.jpg", "secret": "9c144411fa", "media": "photo", "latitude": "0", "id": "4417775234", "tags": "email usersubmission"}, {"datetaken": "2010-03-07 11:27:52", "license": "5", "title": "Yea Post Office", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/4416927966_29a51acc64_o.jpg", "secret": "af05466740", "media": "photo", "latitude": "0", "id": "4416927966", "tags": "postoffice victoria yea australiapost yeavic"}, {"datetaken": "2010-03-07 14:44:09", "license": "5", "title": "Gum trees and blue skies - Maroondah Highway B300 - photo by Julia", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4416169469_d1ddbaf24e_o.jpg", "secret": "9c6c7c2c07", "media": "photo", "latitude": "0", "id": "4416169469", "tags": "road highway eucalyptus blueskies eucalypts gumtrees maroondahhighway booniedoon booniedoonvic"}, {"datetaken": "2010-03-07 16:33:06", "license": "5", "title": "Kids playing in muddy Jamieson River", "text": "", "album_id": "72157623578109828", "longitude": "146.140758", "url_o": "https://farm3.staticflickr.com/2684/4415774417_13bb9f9e37_o.jpg", "secret": "dab351894d", "media": "photo", "latitude": "-37.302937", "id": "4415774417", "tags": "australia victoria vic swift muddy jamieson goldfields goldminingtown jamiesonriver jamiesonvic"}, {"datetaken": "2010-03-07 16:33:34", "license": "5", "title": "Droplet in - muddy Jamieson River", "text": "", "album_id": "72157623578109828", "longitude": "146.140758", "url_o": "https://farm5.staticflickr.com/4043/4415774789_1cef098ba4_o.jpg", "secret": "97fb4220e1", "media": "photo", "latitude": "-37.302937", "id": "4415774789", "tags": "australia victoria vic swift muddy jamieson goldfields goldminingtown jamiesonriver jamiesonvic"}, {"datetaken": "2010-03-07 16:43:32", "license": "5", "title": "Fast-flowing Jamieson River muddied by rains", "text": "", "album_id": "72157623578109828", "longitude": "146.140758", "url_o": "https://farm5.staticflickr.com/4006/4416542628_253de1b121_o.jpg", "secret": "b2c9c8f3cb", "media": "photo", "latitude": "-37.302937", "id": "4416542628", "tags": "australia victoria vic swift muddy jamieson goldfields goldminingtown jamiesonriver jamiesonvic"}, {"datetaken": "2010-03-07 16:54:30", "license": "5", "title": "Lichen - tree near Foots Bridge", "text": "", "album_id": "72157623578109828", "longitude": "146.135694", "url_o": "https://farm3.staticflickr.com/2799/4416543332_e165412865_o.jpg", "secret": "39c91c63d5", "media": "photo", "latitude": "-37.304542", "id": "4416543332", "tags": "australia victoria fungus vic lichen algae jamieson goldfields goldminingtown jamiesonvic"}, {"datetaken": "2010-03-07 17:04:06", "license": "5", "title": "Acorn and Oak Tree near Foots Bridge", "text": "", "album_id": "72157623578109828", "longitude": "146.133677", "url_o": "https://farm5.staticflickr.com/4010/4416544934_e2087eb133_o.jpg", "secret": "95ee41afdc", "media": "photo", "latitude": "-37.303040", "id": "4416544934", "tags": "plant oak seed australia victoria acorn vic nut jamieson goldfields goldminingtown jamiesonvic"}, {"datetaken": "2010-03-07 17:18:58", "license": "5", "title": "Jamieson Post Office", "text": "", "album_id": "72157623578109828", "longitude": "146.137658", "url_o": "https://farm5.staticflickr.com/4049/4416545530_fce39ef698_o.jpg", "secret": "94bb16797f", "media": "photo", "latitude": "-37.302144", "id": "4416545530", "tags": "building architecture postoffice australia victoria vic jamieson australiapost goldfields goldminingtown jamiesonvic"}, {"datetaken": "2010-03-07 17:19:23", "license": "5", "title": "Jamieson Memorial Hall", "text": "", "album_id": "72157623578109828", "longitude": "146.137824", "url_o": "https://farm5.staticflickr.com/4064/4416546004_019c17762f_o.jpg", "secret": "e1e6a44bf2", "media": "photo", "latitude": "-37.301922", "id": "4416546004", "tags": "building architecture australia victoria vic jamieson memorialhall goldfields goldminingtown jamiesonvic"}, {"datetaken": "2010-03-07 18:20:41", "license": "5", "title": "Muscles - Foodworks, Mansfield AUD7.99 per kg", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4416934984_2436cc4a38_o.jpg", "secret": "87339f343b", "media": "photo", "latitude": "0", "id": "4416934984", "tags": "muscles supermarket engrish shellfish seafood vic mansfield mussells foodworks mansfieldvic"}, {"datetaken": "2010-03-07 19:47:49", "license": "5", "title": "Asian Home Gourmet - Foodworks, Mansfield AUD2.09", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4416184035_31d466144a_o.jpg", "secret": "fa01afbcb1", "media": "photo", "latitude": "0", "id": "4416184035", "tags": "soup paste thai packaging instant packet tomyum fail asianhomegourmetthaitomyumsoup"}, {"datetaken": "2010-03-07 19:47:59", "license": "5", "title": "Asian Home Gourmet - Foodworks, Mansfield AUD2.09 - back", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4416950678_faca79ee3c_o.jpg", "secret": "5f76002f27", "media": "photo", "latitude": "0", "id": "4416950678", "tags": "soup paste thai packaging instant packet tomyum fail asianhomegourmetthaitomyumsoup"}, {"datetaken": "2010-03-07 19:55:29", "license": "5", "title": "Tom Yum Noodles with prawns, mushroom, frankfurters", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4416185107_384e2a8034_o.jpg", "secret": "5c1a497e7a", "media": "photo", "latitude": "0", "id": "4416185107", "tags": "food mushroom soup paste thai instant noodle lime coriander cilantro frankfurter prawn tomyum fail tomyumgoong asianhomegourmetthaitomyumsoup"}, {"datetaken": "2010-03-08 08:50:33", "license": "5", "title": "Lichen - Grand Mercure Pinnacle Valley Resort", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4416172975_8cefb0e015_o.jpg", "secret": "c7212dc776", "media": "photo", "latitude": "0", "id": "4416172975", "tags": "plant leaves bokeh fungi lichen algae mottled"}, {"datetaken": "2010-03-08 10:13:54", "license": "5", "title": "Sign - Mansfield Post Office", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4416958160_ea0cc97aae_o.jpg", "secret": "790fd8577b", "media": "photo", "latitude": "0", "id": "4416958160", "tags": "postoffice victoria mansfield australiapost 3722 mansfieldvic"}, {"datetaken": "2010-03-08 10:14:46", "license": "5", "title": "Mansfield Post Office", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4416957550_efce11130c_o.jpg", "secret": "c2d3004bcb", "media": "photo", "latitude": "0", "id": "4416957550", "tags": "postoffice victoria mansfield australiapost 3722 mansfieldvic"}, {"datetaken": "2010-03-08 10:15:37", "license": "5", "title": "Hotel Delatite, Mansfield", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2696/4416996494_443dc47838_o.jpg", "secret": "d60162a341", "media": "photo", "latitude": "0", "id": "4416996494", "tags": "building architecture facade hotel pub bistro vic artdeco mansfield hoteldelatite mansfieldvic"}, {"datetaken": "2010-03-08 10:18:52", "license": "5", "title": "Sign - Commercial Hotel, Mansfield", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4416230885_5fa9a48245_o.jpg", "secret": "f9cb42f1fa", "media": "photo", "latitude": "0", "id": "4416230885", "tags": "building architecture facade hotel pub bistro vic artdeco mansfield commercialhotel mansfieldvic commercialhotelmansfield"}, {"datetaken": "2010-03-08 11:02:45", "license": "5", "title": "Ominous rain clouds - Maroondah Highway B300", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2783/4416235721_69bc18b5b8_o.jpg", "secret": "e1a2c5cc20", "media": "photo", "latitude": "0", "id": "4416235721", "tags": "road highway eucalyptus darkclouds rainclouds eucalypts maroondahhighway umtrees booniedoon booniedoonvic"}, {"datetaken": "2010-03-08 12:02:41", "license": "5", "title": "Bushy regrowth after 2009 Kinglake fires", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4416253057_a894efcb7a_o.jpg", "secret": "fa6c1eeb45", "media": "photo", "latitude": "0", "id": "4416253057", "tags": "vic eucalyptus eucalypts kinglake regrowth bushy gumtrees kinglakevic"}, {"datetaken": "2010-03-08 17:30:13", "license": "5", "title": "Jamieson short walks brochure", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4416546880_cafc6e2787_o.jpg", "secret": "73e165f227", "media": "photo", "latitude": "0", "id": "4416546880", "tags": "australia victoria vic brochure jamieson memorialhall goldfields goldminingtown jamiesonvic"}, {"datetaken": "2010-03-08 17:30:24", "license": "5", "title": "Jamieson short walks brochure - map", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2695/4415780313_a7a40fa614_o.jpg", "secret": "4baf5c673d", "media": "photo", "latitude": "0", "id": "4415780313", "tags": "map australia victoria vic brochure jamieson goldfields goldminingtown jamiesonvic"}, {"datetaken": "2010-03-08 17:30:36", "license": "5", "title": "Jamieson Heritage Walk - map", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4415780829_235fc4d6a8_o.jpg", "secret": "ce460c6ba2", "media": "photo", "latitude": "0", "id": "4415780829", "tags": "map australia victoria vic brochure jamieson goldfields goldminingtown jamiesonvic jamiesonheritagewalk"}, {"datetaken": "2010-03-08 17:30:50", "license": "5", "title": "Jamieson Heritage Walk", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4416548380_1f2f8f8681_o.jpg", "secret": "45805d76d0", "media": "photo", "latitude": "0", "id": "4416548380", "tags": "australia victoria vic brochure jamieson goldfields goldminingtown jamiesonvic jamiesonheritagewalk"}, {"datetaken": "2010-03-08 23:41:45", "license": "5", "title": "Dead trees in the Yarra Valley after 2009 fires - panorama.orig", "text": "", "album_id": "72157623578109828", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4416252043_41132e7002_o.jpg", "secret": "39edf092c5", "media": "photo", "latitude": "0", "id": "4416252043", "tags": "autostitch panorama yarravalley valley vic kinglake kinglakevic"}, {"datetaken": "2009-09-07 11:30:47", "license": "2", "title": "lower bath", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2680/4259533167_4f1fcbab3e_o.jpg", "secret": "2de706fa7f", "media": "photo", "latitude": "0", "id": "4259533167", "tags": ""}, {"datetaken": "2009-09-07 11:31:17", "license": "2", "title": "laundry", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4259533555_a865bb09eb_o.jpg", "secret": "e2d535a4a7", "media": "photo", "latitude": "0", "id": "4259533555", "tags": ""}, {"datetaken": "2009-09-07 11:32:47", "license": "2", "title": "kitchen", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4259533909_7127108b9b_o.jpg", "secret": "532fc5c748", "media": "photo", "latitude": "0", "id": "4259533909", "tags": ""}, {"datetaken": "2009-09-07 11:32:56", "license": "2", "title": "kitchen left", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4260290210_4b6a984bf0_o.jpg", "secret": "42447e8fd7", "media": "photo", "latitude": "0", "id": "4260290210", "tags": ""}, {"datetaken": "2009-09-07 11:33:15", "license": "2", "title": "kitchen right", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4260290572_b07e67d748_o.jpg", "secret": "6272c3247f", "media": "photo", "latitude": "0", "id": "4260290572", "tags": ""}, {"datetaken": "2009-09-07 11:35:09", "license": "2", "title": "dining", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/4259534905_2a84670993_o.jpg", "secret": "a385ffc1c1", "media": "photo", "latitude": "0", "id": "4259534905", "tags": ""}, {"datetaken": "2009-09-07 11:36:29", "license": "2", "title": "dining window", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4259535215_ff1795f145_o.jpg", "secret": "698c11426b", "media": "photo", "latitude": "0", "id": "4259535215", "tags": ""}, {"datetaken": "2009-09-07 11:36:55", "license": "2", "title": "entry", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2737/4259535531_cb111ba1e5_o.jpg", "secret": "f142e99eb9", "media": "photo", "latitude": "0", "id": "4259535531", "tags": ""}, {"datetaken": "2009-09-07 11:37:47", "license": "2", "title": "living room", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2466/4259535855_56c29762ce_o.jpg", "secret": "b71df3c4c5", "media": "photo", "latitude": "0", "id": "4259535855", "tags": ""}, {"datetaken": "2009-09-07 11:38:37", "license": "2", "title": "living fireplace", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2675/4260292152_a6556e3740_o.jpg", "secret": "93c138bd39", "media": "photo", "latitude": "0", "id": "4260292152", "tags": ""}, {"datetaken": "2009-09-07 11:39:55", "license": "2", "title": "den fireplace", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4259536487_1929cca7f8_o.jpg", "secret": "79124aee4b", "media": "photo", "latitude": "0", "id": "4259536487", "tags": ""}, {"datetaken": "2009-09-07 11:40:56", "license": "2", "title": "den", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4260292774_ff923abf64_o.jpg", "secret": "c4db45eb13", "media": "photo", "latitude": "0", "id": "4260292774", "tags": ""}, {"datetaken": "2009-09-07 11:41:18", "license": "2", "title": "west porch", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4259537175_f3bc313343_o.jpg", "secret": "c1416e393d", "media": "photo", "latitude": "0", "id": "4259537175", "tags": ""}, {"datetaken": "2009-09-07 11:41:48", "license": "2", "title": "east porch", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4260293432_80e015df83_o.jpg", "secret": "5287d11777", "media": "photo", "latitude": "0", "id": "4260293432", "tags": ""}, {"datetaken": "2009-09-07 11:42:52", "license": "2", "title": "home", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4259537955_3aa5589ca9_o.jpg", "secret": "8a6bae7ed9", "media": "photo", "latitude": "0", "id": "4259537955", "tags": ""}, {"datetaken": "2009-09-07 11:44:14", "license": "2", "title": "stairs", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4259538721_95962d75ee_o.jpg", "secret": "b6b171b595", "media": "photo", "latitude": "0", "id": "4259538721", "tags": ""}, {"datetaken": "2009-09-07 11:46:01", "license": "2", "title": "master", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2742/4259539091_da01759ba0_o.jpg", "secret": "5452c11e7a", "media": "photo", "latitude": "0", "id": "4259539091", "tags": ""}, {"datetaken": "2009-09-07 11:46:56", "license": "2", "title": "Shea's room 2", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4259539471_5bcd196694_o.jpg", "secret": "009a8b4c2c", "media": "photo", "latitude": "0", "id": "4259539471", "tags": ""}, {"datetaken": "2009-09-07 11:47:07", "license": "2", "title": "Shea's room", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2689/4260295776_8602a4d621_o.jpg", "secret": "cfab75d40d", "media": "photo", "latitude": "0", "id": "4260295776", "tags": ""}, {"datetaken": "2009-09-07 11:48:18", "license": "2", "title": "Sam's room", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4259540475_776d79b28f_o.jpg", "secret": "2e55e927f5", "media": "photo", "latitude": "0", "id": "4259540475", "tags": ""}, {"datetaken": "2009-09-07 11:48:26", "license": "2", "title": "office", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4259540833_350ffb7fec_o.jpg", "secret": "3db2edebcc", "media": "photo", "latitude": "0", "id": "4259540833", "tags": ""}, {"datetaken": "2009-09-07 11:48:49", "license": "2", "title": "Martha's Room", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2711/4259541241_93492c986c_o.jpg", "secret": "3c36c20523", "media": "photo", "latitude": "0", "id": "4259541241", "tags": ""}, {"datetaken": "2009-09-07 11:48:58", "license": "2", "title": "Martha's room", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4260297274_f834ed8b2c_o.jpg", "secret": "eef5b89b26", "media": "photo", "latitude": "0", "id": "4260297274", "tags": ""}, {"datetaken": "2009-09-07 11:49:13", "license": "2", "title": "Martha's Room", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/4260297646_ee239f927e_o.jpg", "secret": "22ddaa6c60", "media": "photo", "latitude": "0", "id": "4260297646", "tags": ""}, {"datetaken": "2009-09-07 11:49:37", "license": "2", "title": "Upper bath", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4259542307_b05cc7bccb_o.jpg", "secret": "0ebf8535c2", "media": "photo", "latitude": "0", "id": "4259542307", "tags": ""}, {"datetaken": "2009-09-07 11:51:25", "license": "2", "title": "upper bath", "text": "", "album_id": "72157623174760750", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4260298376_4de45d6eeb_o.jpg", "secret": "131679f7c3", "media": "photo", "latitude": "0", "id": "4260298376", "tags": ""}, {"datetaken": "2008-01-20 08:08:41", "license": "2", "title": "Grand Canyon - Bald Eagle", "text": "", "album_id": "72157603781151759", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2355/2217163903_95aefe6564_o.jpg", "secret": "6e779af18a", "media": "photo", "latitude": "0", "id": "2217163903", "tags": "park wild arizona bird fauna 1025fav ilovenature nationalpark eagle hiking grandcanyon baldeagle free grand canyon hike national backpacking backcountry avian southrim grandcanyonnationalpark haliaeetus leucocephalus kaibab coloradoplateau accipitridae supershot gcnp awesomenature \u30b0\u30e9\u30f3\u30c9\u30ad\u30e3\u30cb\u30aa\u30f3 outdoorbeauty unature diamondclassphotographer azwbird alhikesaz gc2008 distinguishedraptors"}, {"datetaken": "2008-01-20 08:56:04", "license": "2", "title": "Backcountry Information Center - Grand Canyon National Park", "text": "", "album_id": "72157603781151759", "longitude": "-112.143738", "url_o": "https://farm5.staticflickr.com/4019/4267501373_0dd9e3ee8d_o.jpg", "secret": "be3a036788", "media": "photo", "latitude": "36.053024", "id": "4267501373", "tags": "park county winter arizona snow building ice architecture office nationalpark nps flag grandcanyon americanflag grand canyon national backcountry nationalparkservice southrim bic coconino oldglory rangerstation grandcanyonnationalpark bco grandcanyonvillage granca\u00f1on coconinocounty gcnp backcountryoffice alhikesaz backcountryinformationcenter gc2008 backcountrycenter"}, {"datetaken": "2008-01-20 09:01:46", "license": "2", "title": "Grand Canyon - Young Buck", "text": "", "album_id": "72157603781151759", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2341/2229330283_81e87b92a0_o.jpg", "secret": "7e70c77fc3", "media": "photo", "latitude": "0", "id": "2229330283", "tags": "park winter wild arizona snow fauna ilovenature nationalpark hiking wildlife grandcanyon young grand canyon hike deer explore national backpacking backcountry immature buck muledeer mule southrim grandcanyonnationalpark 2x2 coloradoplateau naturesfinest 15fave blueribbonwinner cervidae odocoileushemionus supershot gcnp awesomenature \u30b0\u30e9\u30f3\u30c9\u30ad\u30e3\u30cb\u30aa\u30f3 unature alhikesaz gc2008"}, {"datetaken": "2008-01-20 09:01:59", "license": "2", "title": "Grand Canyon - Young Buck profile", "text": "", "album_id": "72157603781151759", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2102/2229330929_91978d65d3_o.jpg", "secret": "c2cacbba67", "media": "photo", "latitude": "0", "id": "2229330929", "tags": "park wild arizona snow fauna 510fav ilovenature nationalpark hiking wildlife grandcanyon young grand canyon hike deer national backpacking backcountry immature buck mule southrim grandcanyonnationalpark 2x2 coloradoplateau odocoileushemionus 100v5f gcnp awesomenature \u30b0\u30e9\u30f3\u30c9\u30ad\u30e3\u30cb\u30aa\u30f3 unature alhikesaz gc2008"}, {"datetaken": "2008-01-20 10:50:36", "license": "2", "title": "Grand Canyon - Hermit's Trail to Dripping Springs", "text": "", "album_id": "72157603781151759", "longitude": "-112.214135", "url_o": "https://farm3.staticflickr.com/2048/2221883340_7a1782d493_o.jpg", "secret": "4738abc7f6", "media": "photo", "latitude": "36.060591", "id": "2221883340", "tags": "park camping arizona snow ice landscape nationalpark spring hiking grandcanyon grand traverse canyon hike trail national backpacking backcountry rest redwall cobbles dripping southrim hermits inthecanyon grandcanyonnationalpark coloradoplateau gcnp awesomenature \u30b0\u30e9\u30f3\u30c9\u30ad\u30e3\u30cb\u30aa\u30f3 unature hermitstrail alhikesaz gc2008 belowtherim"}, {"datetaken": "2008-01-20 10:51:30", "license": "2", "title": "Grand Canyon - Hermit's Trail looking at Waldron Basin", "text": "", "album_id": "72157603781151759", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2411/2232112830_356f510e39_o.jpg", "secret": "0c51d06da8", "media": "photo", "latitude": "0", "id": "2232112830", "tags": "park camping arizona snow ice landscape nationalpark spring hiking quote grandcanyon grand canyon hike trail national backpacking backcountry rest dripping southrim hermits inthecanyon \u5927\u5cfd\u8c37 grandcanyonnationalpark coloradoplateau gcnp awesomenature \u30b0\u30e9\u30f3\u30c9\u30ad\u30e3\u30cb\u30aa\u30f3 platinumphoto unature alhikesaz gc2008 \u4e9a\u5229\u6851\u90a3 \u4e9e\u5229\u6851\u90a3 belowtherim"}, {"datetaken": "2008-01-20 11:23:40", "license": "2", "title": "Grand Canyon - Dripping Springs Redwall traverse - packed powder trail", "text": "", "album_id": "72157603781151759", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2184/2233429071_64e1317934_o.jpg", "secret": "4738512d2e", "media": "photo", "latitude": "0", "id": "2233429071", "tags": "park camping arizona snow ice landscape nationalpark spring hiking quote grandcanyon grand canyon hike trail national backpacking backcountry rest dripping southrim hermits inthecanyon \u5927\u5cfd\u8c37 grandcanyonnationalpark coloradoplateau gcnp alhikesaz gc2008 \u4e9a\u5229\u6851\u90a3 \u4e9e\u5229\u6851\u90a3 belowtherim"}, {"datetaken": "2008-01-20 11:29:36", "license": "2", "title": "Grand Canyon - Dripping Springs Trail - break in the Redwall", "text": "", "album_id": "72157603781151759", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2174/2231316731_86f78f0f8c_o.jpg", "secret": "45b8ddefde", "media": "photo", "latitude": "0", "id": "2231316731", "tags": "park camping arizona snow ice landscape nationalpark spring hiking quote grandcanyon grand canyon hike trail national backpacking backcountry rest redwall dripping southrim hermits inthecanyon \u5927\u5cfd\u8c37 grandcanyonnationalpark coloradoplateau gcnp \u30b0\u30e9\u30f3\u30c9\u30ad\u30e3\u30cb\u30aa\u30f3 unature alhikesaz gc2008 \u4e9a\u5229\u6851\u90a3 \u4e9e\u5229\u6851\u90a3 belowtherim"}, {"datetaken": "2008-01-20 11:34:36", "license": "2", "title": "Grand Canyon - Dripping Springs - Redwall Traverse - staring down Hermits", "text": "", "album_id": "72157603781151759", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2326/2234218140_6cfe96f4f0_o.jpg", "secret": "09f744f480", "media": "photo", "latitude": "0", "id": "2234218140", "tags": "alhikesaz arizona grandcanyon nationalpark gc2008 southrim hermits rest dripping spring trail hiking hike camping backpacking backcountry snow ice quote landscape coloradoplateau belowtherim inthecanyon gcnp \u5927\u5cfd\u8c37 \u4e9e\u5229\u6851\u90a3 \u4e9a\u5229\u6851\u90a3 grandcanyonnationalpark grand canyon national park"}, {"datetaken": "2008-01-20 12:04:40", "license": "2", "title": "Grand Canyon - Dripping Springs looking back at Hermit's Trail TH", "text": "", "album_id": "72157603781151759", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2291/2227569708_377cd2819e_o.jpg", "secret": "47ae5664af", "media": "photo", "latitude": "0", "id": "2227569708", "tags": "park camping arizona snow ice 510fav nationalpark spring hiking grandcanyon grand canyon hike trail national backpacking backcountry rest dripping southrim hermits inthecanyon grandcanyonnationalpark coloradoplateau 100v5f gcnp \u30b0\u30e9\u30f3\u30c9\u30ad\u30e3\u30cb\u30aa\u30f3 unature alhikesaz gc2008 belowtherim"}, {"datetaken": "2008-01-20 12:05:23", "license": "2", "title": "Grand Canyon - Dripping Springs frozen waterfall vertical", "text": "", "album_id": "72157603781151759", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2212/2224842562_611950fa67_o.jpg", "secret": "9bc9280c03", "media": "photo", "latitude": "0", "id": "2224842562", "tags": "camping arizona snow ice rock frozen waterfall nationalpark spring hiking grandcanyon hike trail backpacking backcountry rest soe icicles dripping southrim hermits inthecanyon gcnp alhikesaz gc2008 belowtherim"}, {"datetaken": "2008-01-20 12:18:59", "license": "2", "title": "Grand Canyon - Dripping Springs icicles", "text": "", "album_id": "72157603781151759", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2223/2224834170_afdf1c193c_o.jpg", "secret": "93dd34157b", "media": "photo", "latitude": "0", "id": "2224834170", "tags": "camping arizona snow ice rock frozen waterfall nationalpark spring hiking grandcanyon hike trail backpacking backcountry rest icicles dripping southrim hermits inthecanyon gcnp alhikesaz gc2008 belowtherim"}, {"datetaken": "2008-01-20 12:22:23", "license": "2", "title": "Grand Canyon - Dripping Springs frozen waterfall distant", "text": "", "album_id": "72157603781151759", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2005/2235308207_b6e3fa2cf6_o.jpg", "secret": "d1c6d9b19c", "media": "photo", "latitude": "0", "id": "2235308207", "tags": "park camping arizona snow ice rock landscape frozen waterfall nationalpark spring hiking grandcanyon grand canyon hike trail national backpacking backcountry rest icicles dripping southrim hermits inthecanyon \u5927\u5cfd\u8c37 grandcanyonnationalpark coloradoplateau gcnp alhikesaz gc2008 \u4e9a\u5229\u6851\u90a3 \u4e9e\u5229\u6851\u90a3 belowtherim"}, {"datetaken": "2008-01-20 12:22:55", "license": "2", "title": "Grand Canyon - Dripping Springs frozen Waterfall close", "text": "", "album_id": "72157603781151759", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2081/2236097920_36c6de9f7c_o.jpg", "secret": "47b556942b", "media": "photo", "latitude": "0", "id": "2236097920", "tags": "park camping arizona 15fav snow ice rock landscape frozen waterfall nationalpark spring hiking grandcanyon grand canyon hike trail national backpacking backcountry rest icicles dripping southrim hermits inthecanyon \u5927\u5cfd\u8c37 grandcanyonnationalpark coloradoplateau gcnp alhikesaz gc2008 \u4e9a\u5229\u6851\u90a3 \u4e9e\u5229\u6851\u90a3 belowtherim"}, {"datetaken": "2008-01-20 14:53:27", "license": "2", "title": "Grand Canyon Village - El Tovar Hotel", "text": "", "album_id": "72157603781151759", "longitude": "-112.137129", "url_o": "https://farm3.staticflickr.com/2249/2214995937_54e40980c9_o.jpg", "secret": "55e0a6ab1c", "media": "photo", "latitude": "36.057087", "id": "2214995937", "tags": "park county winter arizona food snow building architecture 510fav landscape restaurant hotel nationalpark village hiking district lodging grandcanyon rustic passages grand az landmark el canyon hike historic lodge national backpacking backcountry dining register stay southrim accomodations coconino \u5927\u5cfd\u8c37 tovar grandcanyonnationalpark coloradoplateau grandcanyonvillage nationalhistoriclandmark eltovar supershot coconinocounty gcnp \u30b0\u30e9\u30f3\u30c9\u30ad\u30e3\u30cb\u30aa\u30f3 holidaysvacanzeurlaub \u30a2\u30ea\u30be\u30ca\u5dde alhikesaz eltovarhotel arizonamemoryproject gc2008 \u4e9a\u5229\u6851\u90a3 \u4e9e\u5229\u6851\u90a3 azarchnhp arizonapassages dopplr:explore=cmf1 dopplr:stay=cmf1 dopplr:stay=zm11 dopplr:eat=zm11"}, {"datetaken": "2008-01-20 14:53:35", "license": "2", "title": "Grand Canyon Village - El Tovar Hotel & South Rim", "text": "", "album_id": "72157603781151759", "longitude": "-112.137129", "url_o": "https://farm3.staticflickr.com/2308/2214993635_ff8d193b7d_o.jpg", "secret": "832c19314c", "media": "photo", "latitude": "36.057087", "id": "2214993635", "tags": "park winter arizona snow building architecture landscape hotel nationalpark village hiking lodging grandcanyon grand landmark el canyon hike lodge national backpacking backcountry southrim accomodations rimshot tovar grandcanyonnationalpark coloradoplateau nationalhistoriclandmark blueribbonwinner eltovar gcnp \u30b0\u30e9\u30f3\u30c9\u30ad\u30e3\u30cb\u30aa\u30f3 alhikesaz eltovarhotel gc2008 eltovarlodge"}, {"datetaken": "2008-01-20 15:30:36", "license": "2", "title": "Grand Canyon Airport - Bell Helicopter 407", "text": "", "album_id": "72157603781151759", "longitude": "-112.133352", "url_o": "https://farm3.staticflickr.com/2184/2212858609_a702bfc829_o.jpg", "secret": "8b452447b5", "media": "photo", "latitude": "35.963314", "id": "2212858609", "tags": "park winter arizona snow nationalpark airport bell hiking grandcanyon grand canyon hike helicopter papillon national transportation helicopters southrim grandcanyonnationalpark coloradoplateau tusayan gcnp \u30b0\u30e9\u30f3\u30c9\u30ad\u30e3\u30cb\u30aa\u30f3 alhikesaz gc2008 n407pa"}, {"datetaken": "2008-01-20 15:30:45", "license": "2", "title": "Grand Canyon Airport - Papillon Tours Bell Helicopter Textron 206L-1", "text": "", "album_id": "72157603781151759", "longitude": "-112.133352", "url_o": "https://farm3.staticflickr.com/2206/2212858297_1c64077faf_o.jpg", "secret": "a0d598a629", "media": "photo", "latitude": "35.963314", "id": "2212858297", "tags": "park winter arizona snow nationalpark airport tour bell hiking grandcanyon south grand canyon hike helicopter papillon national transportation helicopters rim southrim longranger grandcanyonnationalpark coloradoplateau textron tusayan gcnp \u30b0\u30e9\u30f3\u30c9\u30ad\u30e3\u30cb\u30aa\u30f3 206l1 papillonhelicopters alhikesaz n3895d gc2008 dopplr:explore=cmf1 dopplr:explore=zm11 papillonhelicopter"}, {"datetaken": "2008-01-20 15:45:03", "license": "2", "title": "Immature Bald Eagle - Grand Canyon South Rim", "text": "", "album_id": "72157603781151759", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2394/2219144405_5ddfd6e717_o.jpg", "secret": "d6a67f73a2", "media": "photo", "latitude": "0", "id": "2219144405", "tags": "park wild arizona bird fauna ilovenature nationalpark eagle hiking grandcanyon baldeagle grand canyon hike national backpacking backcountry immature avian southrim grandcanyonnationalpark haliaeetus leucocephalus kaibab coloradoplateau accipitridae gcnp awesomenature \u30b0\u30e9\u30f3\u30c9\u30ad\u30e3\u30cb\u30aa\u30f3 unature alhikesaz gc2008"}, {"datetaken": "2010-01-11 09:04:54", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2713/4265972494_06d47c2431_o.jpg", "secret": "c48fa27c5f", "media": "photo", "latitude": "0", "id": "4265972494", "tags": "localch"}, {"datetaken": "2010-01-11 09:04:54", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4265227819_51e13ecb14_o.jpg", "secret": "8f75bb92a7", "media": "photo", "latitude": "0", "id": "4265227819", "tags": "localch"}, {"datetaken": "2010-01-11 09:06:33", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4265972746_ed5586e28e_o.jpg", "secret": "3902cc1595", "media": "photo", "latitude": "0", "id": "4265972746", "tags": "localch"}, {"datetaken": "2010-01-11 09:07:07", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4265972954_9968cc5c70_o.jpg", "secret": "c41ff269a8", "media": "photo", "latitude": "0", "id": "4265972954", "tags": "localch"}, {"datetaken": "2010-01-11 09:08:26", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4265224845_5dc5821c15_o.jpg", "secret": "107c385614", "media": "photo", "latitude": "0", "id": "4265224845", "tags": "localch"}, {"datetaken": "2010-01-11 09:14:39", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4265224057_32a95ab1e4_o.jpg", "secret": "d7317a66a6", "media": "photo", "latitude": "0", "id": "4265224057", "tags": "localch"}, {"datetaken": "2010-01-11 09:28:22", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2696/4265225061_41c6176423_o.jpg", "secret": "b49f64b2a3", "media": "photo", "latitude": "0", "id": "4265225061", "tags": "localch"}, {"datetaken": "2010-01-11 10:29:46", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2457/4265973472_d8fb761494_o.jpg", "secret": "e2a8f64d18", "media": "photo", "latitude": "0", "id": "4265973472", "tags": "localch"}, {"datetaken": "2010-01-11 10:36:01", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4265973796_e4b4975941_o.jpg", "secret": "7fd06eed62", "media": "photo", "latitude": "0", "id": "4265973796", "tags": "localch"}, {"datetaken": "2010-01-11 10:36:11", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4265225761_eb901b8c01_o.jpg", "secret": "0eab753a0b", "media": "photo", "latitude": "0", "id": "4265225761", "tags": "localch"}, {"datetaken": "2010-01-11 10:44:26", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4265225943_f21df33b7d_o.jpg", "secret": "0c12de610d", "media": "photo", "latitude": "0", "id": "4265225943", "tags": "localch"}, {"datetaken": "2010-01-11 10:44:53", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4265974808_0bd8690651_o.jpg", "secret": "635a552fdd", "media": "photo", "latitude": "0", "id": "4265974808", "tags": "localch"}, {"datetaken": "2010-01-11 10:45:19", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4265226681_aa4b078b1b_o.jpg", "secret": "c31b36afd0", "media": "photo", "latitude": "0", "id": "4265226681", "tags": "localch"}, {"datetaken": "2010-01-11 10:45:27", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4265226911_10facfd1d1_o.jpg", "secret": "fdac2bec91", "media": "photo", "latitude": "0", "id": "4265226911", "tags": "localch"}, {"datetaken": "2010-01-11 10:45:36", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4265227159_63b9bca36a_o.jpg", "secret": "0aca0c3104", "media": "photo", "latitude": "0", "id": "4265227159", "tags": "localch"}, {"datetaken": "2010-01-11 10:45:50", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2791/4265227303_602e0590e8_o.jpg", "secret": "47d9fac361", "media": "photo", "latitude": "0", "id": "4265227303", "tags": "localch"}, {"datetaken": "2010-01-11 10:46:26", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4265227457_962b652492_o.jpg", "secret": "ded90177f1", "media": "photo", "latitude": "0", "id": "4265227457", "tags": "localch"}, {"datetaken": "2010-01-11 10:49:51", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2774/4265227611_082ba6e256_o.jpg", "secret": "5ee2ebfeed", "media": "photo", "latitude": "0", "id": "4265227611", "tags": "localch"}, {"datetaken": "2010-01-11 11:22:41", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4265976406_f4626ba65e_o.jpg", "secret": "3f5fc117d5", "media": "photo", "latitude": "0", "id": "4265976406", "tags": "localch"}, {"datetaken": "2010-01-11 11:23:05", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4265228253_17024d6d52_o.jpg", "secret": "3aa95a50e6", "media": "photo", "latitude": "0", "id": "4265228253", "tags": "localch"}, {"datetaken": "2010-01-11 11:23:27", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2585/4265228405_a7b3433c5e_o.jpg", "secret": "2ebc86f7c3", "media": "photo", "latitude": "0", "id": "4265228405", "tags": "localch"}, {"datetaken": "2010-01-11 12:34:40", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4265977006_850d4f301b_o.jpg", "secret": "5e71998c1e", "media": "photo", "latitude": "0", "id": "4265977006", "tags": "localch"}, {"datetaken": "2010-01-11 12:36:17", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4265228765_9a8abf9635_o.jpg", "secret": "b190de895b", "media": "photo", "latitude": "0", "id": "4265228765", "tags": "localch"}, {"datetaken": "2010-01-11 13:18:23", "license": "1", "title": "local.ch office opening @ limmatquai 2", "text": "", "album_id": "72157623063047547", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2689/4265977378_ff68853e6c_o.jpg", "secret": "22f610c9fa", "media": "photo", "latitude": "0", "id": "4265977378", "tags": "localch"}, {"datetaken": "2010-02-12 11:31:53", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4350372885_1fc2c8eaae_o.jpg", "secret": "ab05144225", "media": "photo", "latitude": "0", "id": "4350372885", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:31:56", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4351118602_7fcb7030de_o.jpg", "secret": "5709b7e72a", "media": "photo", "latitude": "0", "id": "4351118602", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:31:59", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4351118634_6f45f58224_o.jpg", "secret": "a43f217c82", "media": "photo", "latitude": "0", "id": "4351118634", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:32:02", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4351118688_0ace80df33_o.jpg", "secret": "e36a72efae", "media": "photo", "latitude": "0", "id": "4351118688", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:32:05", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4351118750_7c1befae2a_o.jpg", "secret": "90d97afbe5", "media": "photo", "latitude": "0", "id": "4351118750", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:32:08", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4351118788_d439c89ae1_o.jpg", "secret": "2d9303e3f4", "media": "photo", "latitude": "0", "id": "4351118788", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:32:11", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4350373157_a1a96d98fd_o.jpg", "secret": "4091f06eba", "media": "photo", "latitude": "0", "id": "4350373157", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:32:14", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4351118908_9a46841bed_o.jpg", "secret": "b96f77dd76", "media": "photo", "latitude": "0", "id": "4351118908", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:32:17", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4351118966_14c78c038f_o.jpg", "secret": "434f24ec4d", "media": "photo", "latitude": "0", "id": "4351118966", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:32:20", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2732/4351119036_4e6c758ae5_o.jpg", "secret": "3f4312f97a", "media": "photo", "latitude": "0", "id": "4351119036", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:32:24", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2760/4350373393_468ec628e7_o.jpg", "secret": "bf436173a3", "media": "photo", "latitude": "0", "id": "4350373393", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:32:27", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4351119152_0681c564c2_o.jpg", "secret": "d7fbee58d0", "media": "photo", "latitude": "0", "id": "4351119152", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:32:30", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4350373479_e583777480_o.jpg", "secret": "624a9ac143", "media": "photo", "latitude": "0", "id": "4350373479", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:32:32", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4351119258_a60e1e6bdc_o.jpg", "secret": "964300cc5c", "media": "photo", "latitude": "0", "id": "4351119258", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:32:36", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4351119330_f4e5ab6ebc_o.jpg", "secret": "291fd7dea5", "media": "photo", "latitude": "0", "id": "4351119330", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:32:41", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4350373645_098ed52208_o.jpg", "secret": "7c52621b7f", "media": "photo", "latitude": "0", "id": "4350373645", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:32:45", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4350373715_b5365c2ff0_o.jpg", "secret": "3258861cc0", "media": "photo", "latitude": "0", "id": "4350373715", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:32:48", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4351119530_112383cbe5_o.jpg", "secret": "32a216d86b", "media": "photo", "latitude": "0", "id": "4351119530", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:32:51", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4350373831_b863399c99_o.jpg", "secret": "2b22f40a01", "media": "photo", "latitude": "0", "id": "4350373831", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 11:32:56", "license": "4", "title": "Meeting Kristiansand-Karlstad-Lillesand", "text": "", "album_id": "72157623292282441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2737/4350373933_5228197e7e_o.jpg", "secret": "a5afd48d2b", "media": "photo", "latitude": "0", "id": "4350373933", "tags": "smartcities northsearegion interregivb"}, {"datetaken": "2010-02-12 01:42:05", "license": "4", "title": "Greyhound from Savannah to Atlanta", "text": "", "album_id": "72157623416538636", "longitude": "-81.731414", "url_o": "https://farm5.staticflickr.com/4009/4351063454_e30ac7c118_o.jpg", "secret": "58b2f38569", "media": "photo", "latitude": "32.268052", "id": "4351063454", "tags": "atlanta georgia"}, {"datetaken": "2010-02-12 01:43:22", "license": "4", "title": "Former World of Coca-Cola", "text": "", "album_id": "72157623416538636", "longitude": "-84.389081", "url_o": "https://farm3.staticflickr.com/2776/4351064944_6285370a0f_o.jpg", "secret": "3e18fa94d1", "media": "photo", "latitude": "33.750773", "id": "4351064944", "tags": "atlanta georgia"}, {"datetaken": "2010-02-12 01:44:38", "license": "4", "title": "Georgia State Capitol in Atlanta", "text": "", "album_id": "72157623416538636", "longitude": "-84.388341", "url_o": "https://farm3.staticflickr.com/2725/4350320223_3ddc592e43_o.jpg", "secret": "c792b54ae8", "media": "photo", "latitude": "33.749078", "id": "4350320223", "tags": "atlanta georgia"}, {"datetaken": "2010-02-12 01:46:48", "license": "4", "title": "Atlanta, Georgia", "text": "", "album_id": "72157623416538636", "longitude": "-84.391334", "url_o": "https://farm5.staticflickr.com/4008/4351068490_4a70ecf12e_o.jpg", "secret": "f1fe962281", "media": "photo", "latitude": "33.752165", "id": "4351068490", "tags": "atlanta georgia"}, {"datetaken": "2010-02-12 01:48:41", "license": "4", "title": "Southwest Corner of Woodruff Park, Atlanta", "text": "", "album_id": "72157623416538636", "longitude": "-84.389489", "url_o": "https://farm3.staticflickr.com/2681/4350324579_7be0168054_o.jpg", "secret": "2228326a85", "media": "photo", "latitude": "33.754618", "id": "4350324579", "tags": "atlanta georgia"}, {"datetaken": "2010-02-12 01:50:14", "license": "4", "title": "Fountain at Auburn Ave NE and Peachtree St NW", "text": "", "album_id": "72157623416538636", "longitude": "-84.388094", "url_o": "https://farm5.staticflickr.com/4011/4350326269_56c208e8c8_o.jpg", "secret": "5ce325cf82", "media": "photo", "latitude": "33.756322", "id": "4350326269", "tags": "atlanta georgia"}, {"datetaken": "2010-02-12 01:52:22", "license": "4", "title": "Pavilion at Auburn Ave NE and Peachtree St NW", "text": "", "album_id": "72157623416538636", "longitude": "-84.388094", "url_o": "https://farm5.staticflickr.com/4045/4350328579_890001f9f1_o.jpg", "secret": "7e8732ca5d", "media": "photo", "latitude": "33.756322", "id": "4350328579", "tags": "atlanta georgia"}, {"datetaken": "2010-02-12 01:54:00", "license": "4", "title": "Statues in the SunTrust Plaza", "text": "", "album_id": "72157623416538636", "longitude": "-84.387246", "url_o": "https://farm5.staticflickr.com/4029/4350330419_46f04c2ac3_o.jpg", "secret": "13f6d5af05", "media": "photo", "latitude": "33.762458", "id": "4350330419", "tags": "atlanta georgia"}, {"datetaken": "2010-02-12 01:55:26", "license": "4", "title": "One Sweet Office for the Day", "text": "", "album_id": "72157623416538636", "longitude": "-84.387472", "url_o": "https://farm3.staticflickr.com/2779/4351077858_c8102287e6_o.jpg", "secret": "4de9a9c41b", "media": "photo", "latitude": "33.758882", "id": "4351077858", "tags": "atlanta georgia"}, {"datetaken": "2010-02-12 01:57:12", "license": "4", "title": "Lobby of 181 Peachtree Street", "text": "", "album_id": "72157623416538636", "longitude": "-84.387472", "url_o": "https://farm3.staticflickr.com/2500/4351079806_a2a1bbd0af_o.jpg", "secret": "58c16037fe", "media": "photo", "latitude": "33.758882", "id": "4351079806", "tags": "atlanta georgia"}, {"datetaken": "2010-02-12 01:58:17", "license": "4", "title": "Tom at the Original Chick-fil-A", "text": "", "album_id": "72157623416538636", "longitude": "-84.404067", "url_o": "https://farm3.staticflickr.com/2699/4350335317_87b4b7bb7c_o.jpg", "secret": "8c0184ca7e", "media": "photo", "latitude": "33.656112", "id": "4350335317", "tags": "atlanta georgia"}, {"datetaken": "2010-02-12 01:59:32", "license": "4", "title": "Grey at the Original Chick-fil-A", "text": "", "album_id": "72157623416538636", "longitude": "-84.404067", "url_o": "https://farm5.staticflickr.com/4031/4350336575_9919bd1b3e_o.jpg", "secret": "cf008dcef2", "media": "photo", "latitude": "33.656112", "id": "4350336575", "tags": "atlanta georgia"}, {"datetaken": "2010-02-12 02:00:46", "license": "4", "title": "Tom and Grey at the Atlanta Airport", "text": "", "album_id": "72157623416538636", "longitude": "-84.441905", "url_o": "https://farm3.staticflickr.com/2702/4350337917_9251caa6c2_o.jpg", "secret": "88a7d219c3", "media": "photo", "latitude": "33.641118", "id": "4350337917", "tags": "atlanta georgia"}, {"datetaken": "2010-02-12 02:02:57", "license": "4", "title": "Grey Strokes Ming Beard", "text": "", "album_id": "72157623416538636", "longitude": "-84.441905", "url_o": "https://farm3.staticflickr.com/2677/4351085760_25e9e6f6d0_o.jpg", "secret": "3290741e68", "media": "photo", "latitude": "33.641118", "id": "4351085760", "tags": "atlanta georgia"}, {"datetaken": "2010-02-12 02:04:36", "license": "4", "title": "Tom Tweets", "text": "", "album_id": "72157623416538636", "longitude": "-84.441905", "url_o": "https://farm5.staticflickr.com/4024/4350342107_e322c07f35_o.jpg", "secret": "4d505ea3f4", "media": "photo", "latitude": "33.641118", "id": "4350342107", "tags": "atlanta georgia"}, {"datetaken": "2010-02-12 02:06:36", "license": "4", "title": "Randy Pausch on a values.com ad", "text": "", "album_id": "72157623416538636", "longitude": "-84.429717", "url_o": "https://farm3.staticflickr.com/2678/4351089832_f95647bff1_o.jpg", "secret": "52bd685b51", "media": "photo", "latitude": "33.641403", "id": "4351089832", "tags": "atlanta georgia"}, {"datetaken": "2010-02-11 13:29:23", "license": "4", "title": "Draper Fisher Jurvetson Ventures", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4353031996_2d2fbe6f40_o.jpg", "secret": "c6ce3dd033", "media": "photo", "latitude": "0", "id": "4353031996", "tags": ""}, {"datetaken": "2010-02-11 15:19:04", "license": "4", "title": "Lunch at The Sundeck", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4353032434_aa3da067eb_o.jpg", "secret": "fd129a04a4", "media": "photo", "latitude": "0", "id": "4353032434", "tags": ""}, {"datetaken": "2010-02-12 12:03:03", "license": "4", "title": "Plaque Dedicated to Tom Ford at The Sundeck", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4352287385_b6b4d2e126_o.jpg", "secret": "fc073682ea", "media": "photo", "latitude": "0", "id": "4352287385", "tags": ""}, {"datetaken": "2010-02-12 12:03:09", "license": "4", "title": "The Sundeck", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2788/4352287801_23395b6ddf_o.jpg", "secret": "d046330b9b", "media": "photo", "latitude": "0", "id": "4352287801", "tags": ""}, {"datetaken": "2010-02-12 12:04:52", "license": "4", "title": "The Sundeck", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4352288505_1a7c0703e0_o.jpg", "secret": "201644b311", "media": "photo", "latitude": "0", "id": "4352288505", "tags": ""}, {"datetaken": "2010-02-12 12:17:13", "license": "4", "title": "Millenium Falcon Conference Room", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2728/4352289121_2cfcb0d8d0_o.jpg", "secret": "626a882a4c", "media": "photo", "latitude": "0", "id": "4352289121", "tags": ""}, {"datetaken": "2010-02-12 12:17:41", "license": "4", "title": "Millenium Falcon Conference Room", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4352289661_dd3d5fee5e_o.jpg", "secret": "803c6fe298", "media": "photo", "latitude": "0", "id": "4352289661", "tags": ""}, {"datetaken": "2010-02-12 12:17:47", "license": "4", "title": "Millenium Falcon Conference Room", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4353036750_a0a4a4bdae_o.jpg", "secret": "88e8c0fd50", "media": "photo", "latitude": "0", "id": "4353036750", "tags": ""}, {"datetaken": "2010-02-12 12:18:43", "license": "4", "title": "Dr. Michael Camp, Dan Oglevee and Jim Terranova at DFJ Ventures", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4352291333_e6a3276d34_o.jpg", "secret": "eec3b8a0f0", "media": "photo", "latitude": "0", "id": "4352291333", "tags": ""}, {"datetaken": "2010-02-12 13:58:13", "license": "4", "title": "Bill Reichert at Garage Tech Ventures", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4353038184_db94721b78_o.jpg", "secret": "c065dc1858", "media": "photo", "latitude": "0", "id": "4353038184", "tags": ""}, {"datetaken": "2010-02-12 15:28:45", "license": "4", "title": "Fisher Students at Il Fornaio", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4353038824_fe05986412_o.jpg", "secret": "9cc2d7c537", "media": "photo", "latitude": "0", "id": "4353038824", "tags": ""}, {"datetaken": "2010-02-12 15:44:21", "license": "4", "title": "Fisher Students at Il Fornaio", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4352293227_f71409f699_o.jpg", "secret": "17d2256ee6", "media": "photo", "latitude": "0", "id": "4352293227", "tags": ""}, {"datetaken": "2010-02-12 17:29:11", "license": "4", "title": "Fisher Students at KleenSpeed", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4352293863_e014f095ef_o.jpg", "secret": "7fc570baf0", "media": "photo", "latitude": "0", "id": "4352293863", "tags": ""}, {"datetaken": "2010-02-12 17:36:44", "license": "4", "title": "Tim Collins, CEO of KleenSpeed", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2747/4352294417_68322bf203_o.jpg", "secret": "cb5ca5c61b", "media": "photo", "latitude": "0", "id": "4352294417", "tags": "nasa kleenspeed"}, {"datetaken": "2010-02-12 17:55:04", "license": "4", "title": "Jeff Davis at NASA Ames Research Center", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4352295447_2d9f833bb9_o.jpg", "secret": "de2f99f8ef", "media": "photo", "latitude": "0", "id": "4352295447", "tags": "nasa"}, {"datetaken": "2010-02-12 17:55:11", "license": "4", "title": "Elias Miller at NASA Ames Research Center", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2768/4352296013_144a0f5a32_o.jpg", "secret": "b0ba3c61a3", "media": "photo", "latitude": "0", "id": "4352296013", "tags": "nasa"}, {"datetaken": "2010-02-12 17:55:17", "license": "4", "title": "David Shaw at NASA Ames Research Center", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4353042876_6ffb4c8ca1_o.jpg", "secret": "b256a23247", "media": "photo", "latitude": "0", "id": "4353042876", "tags": "nasa"}, {"datetaken": "2010-02-12 17:55:24", "license": "4", "title": "Dr. Michael Camp at NASA Ames Research Center", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4353041302_61e44984d6_o.jpg", "secret": "e89479ed8c", "media": "photo", "latitude": "0", "id": "4353041302", "tags": "nasa"}, {"datetaken": "2010-02-12 17:56:25", "license": "4", "title": "Fisher Students at NASA Ames Research Center", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4352297279_3fddf5e396_o.jpg", "secret": "80972bc3bd", "media": "photo", "latitude": "0", "id": "4352297279", "tags": "nasa"}, {"datetaken": "2010-02-12 19:31:14", "license": "4", "title": "Attorney \"Term Sheet\" Panel at WSGR", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4352298821_6537f717ae_o.jpg", "secret": "37e391ef4f", "media": "photo", "latitude": "0", "id": "4352298821", "tags": "wsgr"}, {"datetaken": "2010-02-12 19:31:25", "license": "4", "title": "Attorney \"Term Sheet\" Panel at WSGR", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2542/4352299513_f67d773cbe_o.jpg", "secret": "83f0f375c2", "media": "photo", "latitude": "0", "id": "4352299513", "tags": "wsgr"}, {"datetaken": "2010-02-12 20:29:32", "license": "4", "title": "Jim Terranova at WSGR Office", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4353046216_1b4ca943cf_o.jpg", "secret": "32569b6b5c", "media": "photo", "latitude": "0", "id": "4353046216", "tags": "wsgr"}, {"datetaken": "2010-02-12 21:08:30", "license": "4", "title": "Fisher Students at WSGR Office", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4352300835_abecfb9bb1_o.jpg", "secret": "a02f328f2c", "media": "photo", "latitude": "0", "id": "4352300835", "tags": "wsgr"}, {"datetaken": "2010-02-12 21:10:24", "license": "4", "title": "Jim Terranova at WSGR Office", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2684/4353047436_5286769acf_o.jpg", "secret": "41aab7cf3e", "media": "photo", "latitude": "0", "id": "4353047436", "tags": "wsgr"}, {"datetaken": "2010-02-12 21:22:32", "license": "4", "title": "Wilson Sonsini Goodrich & Rosati Law Firm", "text": "", "album_id": "72157623424455540", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4352298067_7cc5ee0987_o.jpg", "secret": "f94c95fe45", "media": "photo", "latitude": "0", "id": "4352298067", "tags": "wsgr"}, {"datetaken": "2005-03-09 15:03:21", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 2", "text": "", "album_id": "159883", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6404337_eff15d07a0_o.jpg", "secret": "eff15d07a0", "media": "photo", "latitude": "0", "id": "6404337", "tags": "rolandtanglao bryght vancouver"}, {"datetaken": "2005-03-09 15:03:25", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 3", "text": "", "album_id": "159883", "longitude": "-123.114010", "url_o": "https://farm1.staticflickr.com/8/6404342_740d7311a6_o.jpg", "secret": "740d7311a6", "media": "photo", "latitude": "49.284019", "id": "6404342", "tags": "rolandtanglao bryght vancouver kk plazebryghtvancouveroffice canada geolong12311401 geolat49284019612966 geotagged plazes kriskrug"}, {"datetaken": "2005-03-09 15:03:36", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 4", "text": "", "album_id": "159883", "longitude": "-123.114010", "url_o": "https://farm1.staticflickr.com/7/6404350_bb4de5c739_o.jpg", "secret": "bb4de5c739", "media": "photo", "latitude": "49.284019", "id": "6404350", "tags": "rolandtanglao bryght vancouver plaze3bc4cc3f07134f5ae8f2fecf46e1a6bc bryghtvancouveroffice canada geolong12311401 geolat49284019612966 geotagged plazes"}, {"datetaken": "2005-03-09 15:03:46", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 5", "text": "", "album_id": "159883", "longitude": "-123.114010", "url_o": "https://farm1.staticflickr.com/3/6404352_01e00ced47_o.jpg", "secret": "01e00ced47", "media": "photo", "latitude": "49.284019", "id": "6404352", "tags": "rolandtanglao bryght vancouver plazebryghtvancouveroffice canada geolong12311401 geolat49284019612966 geotagged plazes"}, {"datetaken": "2005-03-09 15:03:51", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 6", "text": "", "album_id": "159883", "longitude": "-123.114010", "url_o": "https://farm1.staticflickr.com/4/6404357_3d1d6d1564_o.jpg", "secret": "3d1d6d1564", "media": "photo", "latitude": "49.284019", "id": "6404357", "tags": "rolandtanglao bryght vancouver plaze3bc4cc3f07134f5ae8f2fecf46e1a6bc bryghtvancouveroffice canada geolong12311401 geolat49284019612966 geotagged plazes"}, {"datetaken": "2005-03-09 15:05:49", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 7", "text": "", "album_id": "159883", "longitude": "-123.114010", "url_o": "https://farm1.staticflickr.com/4/6404373_2198bde394_o.jpg", "secret": "2198bde394", "media": "photo", "latitude": "49.284019", "id": "6404373", "tags": "rolandtanglao bryght vancouver plaze3bc4cc3f07134f5ae8f2fecf46e1a6bc bryghtvancouveroffice canada geolong12311401 geolat49284019612966 geotagged plazes"}, {"datetaken": "2005-03-09 15:06:02", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 8", "text": "", "album_id": "159883", "longitude": "-123.114010", "url_o": "https://farm1.staticflickr.com/5/6404377_f4cde22a05_o.jpg", "secret": "f4cde22a05", "media": "photo", "latitude": "49.284019", "id": "6404377", "tags": "rolandtanglao bryght vancouver plaze3bc4cc3f07134f5ae8f2fecf46e1a6bc bryghtvancouveroffice canada geolong12311401 geolat49284019612966 geotagged plazes"}, {"datetaken": "2005-03-09 15:06:17", "license": "2", "title": "A picture of a picture - Checking my Compact Flash card works at Bryght - 9", "text": "", "album_id": "159883", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6404378_f6563fa9e6_o.jpg", "secret": "f6563fa9e6", "media": "photo", "latitude": "0", "id": "6404378", "tags": "rolandtanglao bryght vancouver"}, {"datetaken": "2005-03-09 15:13:32", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 10", "text": "", "album_id": "159883", "longitude": "-123.114010", "url_o": "https://farm1.staticflickr.com/4/6404384_efc16499ce_o.jpg", "secret": "efc16499ce", "media": "photo", "latitude": "49.284019", "id": "6404384", "tags": "rolandtanglao bryght vancouver borismann plaze3bc4cc3f07134f5ae8f2fecf46e1a6bc bryghtvancouveroffice canada geolong12311401 geolat49284019612966 geotagged plazes"}, {"datetaken": "2005-03-09 15:13:39", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 11", "text": "", "album_id": "159883", "longitude": "-123.114010", "url_o": "https://farm1.staticflickr.com/7/6404392_206a5b2b77_o.jpg", "secret": "206a5b2b77", "media": "photo", "latitude": "49.284019", "id": "6404392", "tags": "rolandtanglao bryght vancouver plaze3bc4cc3f07134f5ae8f2fecf46e1a6bc bryghtvancouveroffice canada geolong12311401 geolat49284019612966 geotagged plazes"}, {"datetaken": "2005-03-09 15:13:51", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 12", "text": "", "album_id": "159883", "longitude": "-123.114010", "url_o": "https://farm1.staticflickr.com/6/6404398_398f98c3ce_o.jpg", "secret": "398f98c3ce", "media": "photo", "latitude": "49.284019", "id": "6404398", "tags": "rolandtanglao bryght vancouver plaze3bc4cc3f07134f5ae8f2fecf46e1a6bc bryghtvancouveroffice canada geolong12311401 geolat49284019612966 geotagged plazes"}, {"datetaken": "2005-03-09 15:22:35", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 13", "text": "", "album_id": "159883", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6404410_da938c0dee_o.jpg", "secret": "da938c0dee", "media": "photo", "latitude": "0", "id": "6404410", "tags": "rolandtanglao bryght vancouver"}, {"datetaken": "2005-03-09 15:22:49", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 14", "text": "", "album_id": "159883", "longitude": "-123.114010", "url_o": "https://farm1.staticflickr.com/3/6404419_6b3dd65b75_o.jpg", "secret": "6b3dd65b75", "media": "photo", "latitude": "49.284019", "id": "6404419", "tags": "rolandtanglao bryght vancouver plazebryghtvancouveroffice canada geolong12311401 geolat49284019612966 geotagged plazes"}, {"datetaken": "2005-03-09 15:23:02", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 15", "text": "", "album_id": "159883", "longitude": "-123.114010", "url_o": "https://farm1.staticflickr.com/6/6404426_193d941458_o.jpg", "secret": "193d941458", "media": "photo", "latitude": "49.284019", "id": "6404426", "tags": "rolandtanglao bryght vancouver plaze3bc4cc3f07134f5ae8f2fecf46e1a6bc bryghtvancouveroffice canada geolong12311401 geolat49284019612966 geotagged plazes"}, {"datetaken": "2005-03-09 15:37:02", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 16", "text": "", "album_id": "159883", "longitude": "-123.114010", "url_o": "https://farm1.staticflickr.com/7/6404435_2a18bc8c01_o.jpg", "secret": "2a18bc8c01", "media": "photo", "latitude": "49.284019", "id": "6404435", "tags": "rolandtanglao bryght vancouver plaze3bc4cc3f07134f5ae8f2fecf46e1a6bc bryghtvancouveroffice canada geolong12311401 geolat49284019612966 geotagged plazes"}, {"datetaken": "2005-03-09 15:37:21", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 17", "text": "", "album_id": "159883", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6404444_32aa5939d6_o.jpg", "secret": "32aa5939d6", "media": "photo", "latitude": "0", "id": "6404444", "tags": "rolandtanglao bryght vancouver"}, {"datetaken": "2005-03-09 15:37:42", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 18", "text": "", "album_id": "159883", "longitude": "-123.114010", "url_o": "https://farm1.staticflickr.com/3/6404452_da0a2d5492_o.jpg", "secret": "da0a2d5492", "media": "photo", "latitude": "49.284019", "id": "6404452", "tags": "rolandtanglao bryght vancouver plaze3bc4cc3f07134f5ae8f2fecf46e1a6bc bryghtvancouveroffice canada geolong12311401 geolat49284019612966 geotagged plazes"}, {"datetaken": "2005-03-09 15:56:38", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 19", "text": "", "album_id": "159883", "longitude": "-123.114010", "url_o": "https://farm1.staticflickr.com/8/6404459_5f69fc86e5_o.jpg", "secret": "5f69fc86e5", "media": "photo", "latitude": "49.284019", "id": "6404459", "tags": "rolandtanglao bryght vancouver plaze3bc4cc3f07134f5ae8f2fecf46e1a6bc bryghtvancouveroffice canada geolong12311401 geolat49284019612966 geotagged plazes"}, {"datetaken": "2005-03-09 15:56:44", "license": "2", "title": "Checking my Compact Flash card works at Bryght - 1", "text": "", "album_id": "159883", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6404336_9ea3c21c6c_o.jpg", "secret": "9ea3c21c6c", "media": "photo", "latitude": "0", "id": "6404336", "tags": "rolandtanglao bryght vancouver"}, {"datetaken": "2010-01-12 10:51:00", "license": "1", "title": "Smitwinkel Bay", "text": "", "album_id": "72157623077077427", "longitude": "18.460980", "url_o": "https://farm5.staticflickr.com/4003/4271562228_f595b9f3aa_o.jpg", "secret": "b6bd6e0dfc", "media": "photo", "latitude": "-34.317284", "id": "4271562228", "tags": "sea landscape southafrica capetown coastline smitwinkelbay"}, {"datetaken": "2010-01-12 11:34:16", "license": "1", "title": "Views outside while eating at Cape Point", "text": "", "album_id": "72157623077077427", "longitude": "18.484602", "url_o": "https://farm5.staticflickr.com/4043/4270817109_461e02a5b8_o.jpg", "secret": "3c1d8cdf72", "media": "photo", "latitude": "-34.350539", "id": "4270817109", "tags": "southafrica eating capetown capepoint capenaturereserve twooceansrestaurant"}, {"datetaken": "2010-01-12 11:44:12", "license": "1", "title": "Watchful bird waiting for scraps of food", "text": "", "album_id": "72157623077077427", "longitude": "18.484602", "url_o": "https://farm5.staticflickr.com/4061/4271563310_07b3a7538f_o.jpg", "secret": "6e8e228ef3", "media": "photo", "latitude": "-34.350539", "id": "4271563310", "tags": "bird southafrica capetown capepoint capenaturereserve"}, {"datetaken": "2010-01-12 11:46:59", "license": "1", "title": "Mice scrurrying around after food", "text": "", "album_id": "72157623077077427", "longitude": "18.484602", "url_o": "https://farm5.staticflickr.com/4058/4270817895_1b7ca967d5_o.jpg", "secret": "8dac54384c", "media": "photo", "latitude": "-34.350539", "id": "4270817895", "tags": "southafrica mouse capetown capepoint capenaturereserve"}, {"datetaken": "2010-01-12 11:56:16", "license": "1", "title": "Old Flying Dutcman Funicular at Cape Point", "text": "", "album_id": "72157623077077427", "longitude": "18.484602", "url_o": "https://farm3.staticflickr.com/2779/4271564204_4d0ef81014_o.jpg", "secret": "5db203558f", "media": "photo", "latitude": "-34.350539", "id": "4271564204", "tags": "southafrica capetown capepoint funicular capenaturereserve flyingdutchmanfunicular"}, {"datetaken": "2010-01-12 11:58:42", "license": "1", "title": "Buffer at bottom of funicular track", "text": "", "album_id": "72157623077077427", "longitude": "18.484602", "url_o": "https://farm5.staticflickr.com/4029/4270818521_c3ae0d44ed_o.jpg", "secret": "6ae2261636", "media": "photo", "latitude": "-34.350539", "id": "4270818521", "tags": "southafrica capetown capepoint funicular capenaturereserve flyingdutchmanfunicular"}, {"datetaken": "2010-01-12 11:59:07", "license": "1", "title": "Funicular track", "text": "", "album_id": "72157623077077427", "longitude": "18.484602", "url_o": "https://farm5.staticflickr.com/4004/4271564914_f3bd57de16_o.jpg", "secret": "677fc7c2d6", "media": "photo", "latitude": "-34.350539", "id": "4271564914", "tags": "southafrica capetown capepoint funicular capenaturereserve flyingdutchmanfunicular"}, {"datetaken": "2010-01-12 12:02:40", "license": "1", "title": "Inside the old Flying Dutchman Funicular at Cape Point", "text": "", "album_id": "72157623077077427", "longitude": "18.484602", "url_o": "https://farm3.staticflickr.com/2753/4271565150_d80359b4fd_o.jpg", "secret": "3eb7294374", "media": "photo", "latitude": "-34.350539", "id": "4271565150", "tags": "southafrica capetown capepoint funicular capenaturereserve flyingdutchmanfunicular"}, {"datetaken": "2010-01-12 12:03:29", "license": "1", "title": "Flying Dutchman Funicular controls", "text": "", "album_id": "72157623077077427", "longitude": "18.484602", "url_o": "https://farm3.staticflickr.com/2780/4270819443_c9e6e88dbc_o.jpg", "secret": "8816093e9e", "media": "photo", "latitude": "-34.350539", "id": "4270819443", "tags": "southafrica capetown capepoint funicular capenaturereserve flyingdutchmanfunicular"}, {"datetaken": "2010-01-12 12:05:09", "license": "1", "title": "Funiculars passing each other at Cape Point", "text": "", "album_id": "72157623077077427", "longitude": "18.487091", "url_o": "https://farm3.staticflickr.com/2707/4270820043_67dd723d46_o.jpg", "secret": "842cbbce72", "media": "photo", "latitude": "-34.351639", "id": "4270820043", "tags": "southafrica capetown capepoint funicular capenaturereserve flyingdutchmanfunicular"}, {"datetaken": "2010-01-12 12:09:36", "license": "1", "title": "Steps leading up to the historic Cape Point Lighthouse", "text": "", "album_id": "72157623077077427", "longitude": "18.489283", "url_o": "https://farm5.staticflickr.com/4012/4271569918_25b2e8957c_o.jpg", "secret": "82bba53a19", "media": "photo", "latitude": "-34.353534", "id": "4271569918", "tags": "lighthouse southafrica steps capetown capepoint capenaturereserve"}, {"datetaken": "2010-01-12 12:11:42", "license": "1", "title": "Old Lighthouse-Keepers Office building circa 1860", "text": "", "album_id": "72157623077077427", "longitude": "18.489283", "url_o": "https://farm3.staticflickr.com/2767/4271570158_1e50d3ee03_o.jpg", "secret": "83b050b355", "media": "photo", "latitude": "-34.353534", "id": "4271570158", "tags": "southafrica capetown capepoint capenaturereserve"}, {"datetaken": "2010-01-12 12:12:00", "license": "1", "title": "Plaque on Lighthouse-Keepers Office Building", "text": "", "album_id": "72157623077077427", "longitude": "18.489283", "url_o": "https://farm5.staticflickr.com/4024/4270824811_0a4bfee59d_o.jpg", "secret": "41c3c023d7", "media": "photo", "latitude": "-34.353534", "id": "4270824811", "tags": "plaque southafrica capetown capepoint capenaturereserve"}, {"datetaken": "2010-01-12 12:12:58", "license": "1", "title": "View through telescope at Cape Point", "text": "", "album_id": "72157623077077427", "longitude": "18.489283", "url_o": "https://farm3.staticflickr.com/2795/4270825073_c7f07a9561_o.jpg", "secret": "e179ff766f", "media": "photo", "latitude": "-34.353534", "id": "4270825073", "tags": "southafrica capetown telescope capepoint capenaturereserve"}, {"datetaken": "2010-01-12 12:14:25", "license": "1", "title": "Kaylyn being a statue", "text": "", "album_id": "72157623077077427", "longitude": "18.489283", "url_o": "https://farm3.staticflickr.com/2692/4270825593_527c63f01b_o.jpg", "secret": "c3cfd43cc5", "media": "photo", "latitude": "-34.353534", "id": "4270825593", "tags": "southafrica capetown capepoint kaylyn capenaturereserve"}, {"datetaken": "2010-01-12 12:15:56", "license": "1", "title": "Weathered sign at Cape Point showing layout", "text": "", "album_id": "72157623077077427", "longitude": "18.489283", "url_o": "https://farm5.staticflickr.com/4060/4271571658_e8803dd026_o.jpg", "secret": "4fc52de406", "media": "photo", "latitude": "-34.353534", "id": "4271571658", "tags": "southafrica capetown capepoint capenaturereserve"}, {"datetaken": "2010-01-12 12:19:00", "license": "1", "title": "Kaylyn taking a photo of the lighthouse", "text": "", "album_id": "72157623077077427", "longitude": "18.490130", "url_o": "https://farm5.staticflickr.com/4037/4271571808_4c4dfd3afd_o.jpg", "secret": "bba457622c", "media": "photo", "latitude": "-34.353595", "id": "4271571808", "tags": "southafrica capetown capepoint kaylyn capenaturereserve"}, {"datetaken": "2010-01-12 12:19:26", "license": "1", "title": "Plaque on the lighthouse", "text": "", "album_id": "72157623077077427", "longitude": "18.490130", "url_o": "https://farm3.staticflickr.com/2693/4271572074_1bd6b35503_o.jpg", "secret": "cb2580fbdb", "media": "photo", "latitude": "-34.353595", "id": "4271572074", "tags": "plaque southafrica capetown capepoint capenaturereserve"}, {"datetaken": "2010-01-12 12:19:35", "license": "1", "title": "Plaque on lighthouse", "text": "", "album_id": "72157623077077427", "longitude": "18.490130", "url_o": "https://farm3.staticflickr.com/2761/4271598428_fbdc18c91e_o.jpg", "secret": "1f6d8cfaa6", "media": "photo", "latitude": "-34.353595", "id": "4271598428", "tags": "plaque southafrica capetown capepoint capenaturereserve"}, {"datetaken": "2010-01-12 12:21:15", "license": "1", "title": "Wide angle view of old lighthouse at Cape Point", "text": "", "album_id": "72157623077077427", "longitude": "18.490130", "url_o": "https://farm3.staticflickr.com/2752/4271604506_48ea0935e4_o.jpg", "secret": "3fab6d891b", "media": "photo", "latitude": "-34.353595", "id": "4271604506", "tags": "southafrica published capetown capepoint capenaturereserve"}, {"datetaken": "2010-01-12 12:22:04", "license": "1", "title": "Southern most tip of Cape Peninsula at Cape Point", "text": "", "album_id": "72157623077077427", "longitude": "18.490130", "url_o": "https://farm5.staticflickr.com/4051/4271605004_b7a8e46a34_o.jpg", "secret": "bc72725bf4", "media": "photo", "latitude": "-34.353595", "id": "4271605004", "tags": "southafrica capetown capepoint capenaturereserve"}, {"datetaken": "2010-01-12 12:25:52", "license": "1", "title": "11,642km to Sydney from Cape Point", "text": "", "album_id": "72157623077077427", "longitude": "18.490130", "url_o": "https://farm5.staticflickr.com/4068/4271605136_379fb275ab_o.jpg", "secret": "5ca96d6b78", "media": "photo", "latitude": "-34.353595", "id": "4271605136", "tags": "signs southafrica sydney capetown capepoint capenaturereserve"}, {"datetaken": "2010-01-12 12:26:25", "license": "1", "title": "Wildlife at Cape Point", "text": "", "album_id": "72157623077077427", "longitude": "18.490130", "url_o": "https://farm5.staticflickr.com/4009/4271605624_33f7eb6f38_o.jpg", "secret": "b1f2ff123d", "media": "photo", "latitude": "-34.353595", "id": "4271605624", "tags": "southafrica capetown capepoint capenaturereserve"}, {"datetaken": "2010-01-12 12:26:55", "license": "1", "title": "Direction plaque at the lighthouse.... and graffitti", "text": "", "album_id": "72157623077077427", "longitude": "18.490130", "url_o": "https://farm5.staticflickr.com/4003/4270860295_cb2392dfde_o.jpg", "secret": "ca42c59487", "media": "photo", "latitude": "-34.353595", "id": "4270860295", "tags": "southafrica graffiti capetown capepoint capenaturereserve"}, {"datetaken": "2010-01-12 12:27:20", "license": "1", "title": "Graffitti on rock at Ca[pe Point Lighthouse", "text": "", "album_id": "72157623077077427", "longitude": "18.490130", "url_o": "https://farm3.staticflickr.com/2682/4270860825_a93244d9fd_o.jpg", "secret": "fe4c4687ab", "media": "photo", "latitude": "-34.353595", "id": "4270860825", "tags": "rock southafrica graffiti capetown capepoint capenaturereserve"}, {"datetaken": "2010-01-12 12:29:18", "license": "1", "title": "View from Cape Point Lighthouse", "text": "", "album_id": "72157623077077427", "longitude": "18.490130", "url_o": "https://farm3.staticflickr.com/2698/4270861111_af6476b311_o.jpg", "secret": "b36209910e", "media": "photo", "latitude": "-34.353595", "id": "4270861111", "tags": "southafrica published capetown capepoint capenaturereserve"}, {"datetaken": "2010-01-12 12:49:40", "license": "1", "title": "Flying Dutchman Funicular notice for upgrade", "text": "", "album_id": "72157623077077427", "longitude": "18.484630", "url_o": "https://farm5.staticflickr.com/4057/4270820391_e770abcf5b_o.jpg", "secret": "7d1264b4a3", "media": "photo", "latitude": "-34.350345", "id": "4270820391", "tags": "sign southafrica capetown capepoint funicular capenaturereserve flyingdutchmanfunicular"}, {"datetaken": "2010-01-12 13:41:12", "license": "1", "title": "Driving through Cape Point Nature Reserve", "text": "", "album_id": "72157623077077427", "longitude": "18.460422", "url_o": "https://farm5.staticflickr.com/4006/4270861247_f08840e46f_o.jpg", "secret": "43117dc63e", "media": "photo", "latitude": "-34.330856", "id": "4270861247", "tags": "southafrica capetown"}, {"datetaken": "2010-01-12 13:55:34", "license": "1", "title": "Site of fire at Scarborough about two years ago", "text": "", "album_id": "72157623077077427", "longitude": "18.382508", "url_o": "https://farm3.staticflickr.com/2759/4270861493_ce8e831b02_o.jpg", "secret": "26b2d3aa23", "media": "photo", "latitude": "-34.201634", "id": "4270861493", "tags": "southafrica capetown scarborough"}, {"datetaken": "2010-01-12 14:08:23", "license": "1", "title": "Slangkop Lighthouse near Kommetjie", "text": "", "album_id": "72157623077077427", "longitude": "18.319261", "url_o": "https://farm5.staticflickr.com/4026/4270861675_4a4dd57bba_o.jpg", "secret": "78e667cd47", "media": "photo", "latitude": "-34.148564", "id": "4270861675", "tags": "sea lighthouse southafrica capetown slangkop"}, {"datetaken": "2010-02-14 06:51:53", "license": "1", "title": "DSCN9924", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2488/4355394581_c9029a2125_o.jpg", "secret": "9f09e5df6c", "media": "photo", "latitude": "0", "id": "4355394581", "tags": ""}, {"datetaken": "2010-02-14 06:53:19", "license": "1", "title": "DSCN9925", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2683/4356138276_8ca0b8789f_o.jpg", "secret": "ecee41b535", "media": "photo", "latitude": "0", "id": "4356138276", "tags": ""}, {"datetaken": "2010-02-14 06:55:44", "license": "1", "title": "DSCN9926", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4356138474_a01180a4bb_o.jpg", "secret": "1897cdba7d", "media": "photo", "latitude": "0", "id": "4356138474", "tags": ""}, {"datetaken": "2010-02-14 06:56:34", "license": "1", "title": "DSCN9927", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4355395091_b6e997d5b9_o.jpg", "secret": "570c38e77b", "media": "photo", "latitude": "0", "id": "4355395091", "tags": ""}, {"datetaken": "2010-02-14 06:57:04", "license": "1", "title": "DSCN9928", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4355395295_dbd026b7d0_o.jpg", "secret": "45c91dbabf", "media": "photo", "latitude": "0", "id": "4355395295", "tags": ""}, {"datetaken": "2010-02-14 06:58:35", "license": "1", "title": "DSCN9929", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4356138974_295eede0d5_o.jpg", "secret": "15e8b5b031", "media": "photo", "latitude": "0", "id": "4356138974", "tags": ""}, {"datetaken": "2010-02-14 06:59:01", "license": "1", "title": "DSCN9930", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2685/4355395669_9490c21bed_o.jpg", "secret": "d7f0fd33ab", "media": "photo", "latitude": "0", "id": "4355395669", "tags": ""}, {"datetaken": "2010-02-14 06:59:29", "license": "1", "title": "DSCN9931", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4355395859_e2932ed30c_o.jpg", "secret": "df9393e07e", "media": "photo", "latitude": "0", "id": "4355395859", "tags": ""}, {"datetaken": "2010-02-14 07:00:07", "license": "1", "title": "DSCN9932", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2754/4355396051_daabe5d396_o.jpg", "secret": "acd0c0d45f", "media": "photo", "latitude": "0", "id": "4355396051", "tags": ""}, {"datetaken": "2010-02-14 07:01:30", "license": "1", "title": "DSCN9934", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4355396279_7b17e24482_o.jpg", "secret": "4dec343615", "media": "photo", "latitude": "0", "id": "4355396279", "tags": ""}, {"datetaken": "2010-02-14 07:02:48", "license": "1", "title": "DSCN9936", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4356139944_a2e36ab639_o.jpg", "secret": "b3bfe4137d", "media": "photo", "latitude": "0", "id": "4356139944", "tags": ""}, {"datetaken": "2010-02-14 07:03:49", "license": "1", "title": "DSCN9937", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2681/4356140180_1b9d340e18_o.jpg", "secret": "6eeaa8a011", "media": "photo", "latitude": "0", "id": "4356140180", "tags": ""}, {"datetaken": "2010-02-14 07:04:27", "license": "1", "title": "DSCN9938", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4355396923_e5a94c6a91_o.jpg", "secret": "3efd8dbb9d", "media": "photo", "latitude": "0", "id": "4355396923", "tags": ""}, {"datetaken": "2010-02-14 07:08:37", "license": "1", "title": "DSCN9939", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4356140514_bc5549a079_o.jpg", "secret": "18ea9be296", "media": "photo", "latitude": "0", "id": "4356140514", "tags": ""}, {"datetaken": "2010-02-14 07:09:06", "license": "1", "title": "DSCN9940", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4356140732_167d04bcc3_o.jpg", "secret": "2c9cebbd82", "media": "photo", "latitude": "0", "id": "4356140732", "tags": ""}, {"datetaken": "2010-02-14 07:09:45", "license": "1", "title": "DSCN9941", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4356140956_8669ba637d_o.jpg", "secret": "34c1223511", "media": "photo", "latitude": "0", "id": "4356140956", "tags": ""}, {"datetaken": "2010-02-14 07:13:45", "license": "1", "title": "DSCN9942", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4355397721_b0c7ed77fd_o.jpg", "secret": "40c0f09327", "media": "photo", "latitude": "0", "id": "4355397721", "tags": ""}, {"datetaken": "2010-02-14 07:15:13", "license": "1", "title": "DSCN9943", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4355397909_80307b1daa_o.jpg", "secret": "309f746654", "media": "photo", "latitude": "0", "id": "4355397909", "tags": ""}, {"datetaken": "2010-02-14 07:15:54", "license": "1", "title": "DSCN9944", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4356141576_e14044542e_o.jpg", "secret": "40ebf903fe", "media": "photo", "latitude": "0", "id": "4356141576", "tags": ""}, {"datetaken": "2010-02-14 07:16:39", "license": "1", "title": "DSCN9945", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4356141800_6147bf7953_o.jpg", "secret": "ba751677df", "media": "photo", "latitude": "0", "id": "4356141800", "tags": ""}, {"datetaken": "2010-02-14 07:17:24", "license": "1", "title": "DSCN9946", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4355398551_4d8ff9cddf_o.jpg", "secret": "40633a3e24", "media": "photo", "latitude": "0", "id": "4355398551", "tags": ""}, {"datetaken": "2010-02-14 07:17:51", "license": "1", "title": "DSCN9947", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4355398799_98a75bab85_o.jpg", "secret": "e87233ced3", "media": "photo", "latitude": "0", "id": "4355398799", "tags": ""}, {"datetaken": "2010-02-14 07:19:55", "license": "1", "title": "DSCN9948", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4355394119_087d92bf79_o.jpg", "secret": "057d7218bf", "media": "photo", "latitude": "0", "id": "4355394119", "tags": ""}, {"datetaken": "2010-02-14 07:20:36", "license": "1", "title": "DSCN9949", "text": "", "album_id": "72157623307191679", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2742/4356137904_f417fc2cf9_o.jpg", "secret": "05a9f0f26e", "media": "photo", "latitude": "0", "id": "4356137904", "tags": ""}, {"datetaken": "2010-03-14 13:07:23", "license": "4", "title": "Low bridge 75 yards ahead sign on Bear Road - off Station Road, Henley-in-Arden", "text": "", "album_id": "72157623619601364", "longitude": "-1.782950", "url_o": "https://farm5.staticflickr.com/4039/4433116462_08c3886abf_o.jpg", "secret": "7946cff346", "media": "photo", "latitude": "52.293126", "id": "4433116462", "tags": "greatbritain england sign unitedkingdom warwickshire stationrd henleyinarden bearlane stationrdhenleyinarden lowbridge75ydsahead bearln"}, {"datetaken": "2010-03-14 13:07:28", "license": "4", "title": "Bear Lane - road sign off Station Road, Henley-in-Arden", "text": "", "album_id": "72157623619601364", "longitude": "-1.782950", "url_o": "https://farm3.staticflickr.com/2677/4432344885_a20af94c09_o.jpg", "secret": "00f4a9ed50", "media": "photo", "latitude": "52.293126", "id": "4432344885", "tags": "greatbritain england sign unitedkingdom roadsign warwickshire stationrd henleyinarden bearlane stationrdhenleyinarden bearln"}, {"datetaken": "2010-03-14 13:09:09", "license": "4", "title": "Three Chimneys - Station Road, Henley-in-Arden", "text": "", "album_id": "72157623619601364", "longitude": "-1.782767", "url_o": "https://farm3.staticflickr.com/2692/4432348109_b2c44fcaa4_o.jpg", "secret": "0b4ab7db28", "media": "photo", "latitude": "52.293336", "id": "4432348109", "tags": "greatbritain england sign unitedkingdom warwickshire stationrd henleyinarden threechimneys stationrdhenleyinarden"}, {"datetaken": "2010-03-14 13:09:28", "license": "4", "title": "Orchard Rise - road sign off Station Road, Henley-in-Arden", "text": "", "album_id": "72157623619601364", "longitude": "-1.782478", "url_o": "https://farm3.staticflickr.com/2748/4433125556_bc0f7a9b90_o.jpg", "secret": "b13aff253a", "media": "photo", "latitude": "52.293572", "id": "4433125556", "tags": "greatbritain england sign unitedkingdom roadsign warwickshire stationrd henleyinarden housingdevelopment stationrdhenleyinarden orchardrise"}, {"datetaken": "2010-03-14 13:09:34", "license": "4", "title": "Orchard Rise - housing development sign", "text": "", "album_id": "72157623619601364", "longitude": "-1.782478", "url_o": "https://farm5.staticflickr.com/4053/4432354083_d6442b2057_o.jpg", "secret": "f1f5dc91ba", "media": "photo", "latitude": "52.293572", "id": "4432354083", "tags": "greatbritain england unitedkingdom warwickshire stationrd henleyinarden housingdevelopment nhbc stationrdhenleyinarden orchardrise johnshepardnewhomes pimlicohomes"}, {"datetaken": "2010-03-14 13:09:59", "license": "4", "title": "The Birches, Station Road", "text": "", "album_id": "72157623619601364", "longitude": "-1.782263", "url_o": "https://farm3.staticflickr.com/2690/4433131370_53fd8d7c0e_o.jpg", "secret": "4f8d29b08a", "media": "photo", "latitude": "52.293769", "id": "4433131370", "tags": "greatbritain england unitedkingdom warwickshire stationrd henleyinarden thebirches stationrdhenleyinarden thebirchesstationroad"}, {"datetaken": "2010-03-14 13:10:08", "license": "4", "title": "Chestnut Walk - road sign off Station Road, Henley-in-Arden", "text": "", "album_id": "72157623619601364", "longitude": "-1.781909", "url_o": "https://farm5.staticflickr.com/4004/4432360257_8e6eeb3142_o.jpg", "secret": "7e852d304d", "media": "photo", "latitude": "52.293887", "id": "4432360257", "tags": "greatbritain england sign unitedkingdom roadsign warwickshire stationrd henleyinarden chestnutwalk stationrdhenleyinarden"}, {"datetaken": "2010-03-14 13:10:57", "license": "4", "title": "Henley-in-Arden Delivery Office, Station Road, Henley-in-Arden", "text": "", "album_id": "72157623619601364", "longitude": "-1.781190", "url_o": "https://farm3.staticflickr.com/2761/4433187676_20d8ce584a_o.jpg", "secret": "77ef7e9cab", "media": "photo", "latitude": "52.293966", "id": "4433187676", "tags": "greatbritain england unitedkingdom royalmail warwickshire stationrd henleyinarden deliveryoffice stationrdhenleyinarden henleyinardendeliveryoffice"}, {"datetaken": "2010-03-14 13:11:04", "license": "4", "title": "Henley-in-Arden Delivery Office, Station Road, Henley-in-Arden - sign", "text": "", "album_id": "72157623619601364", "longitude": "-1.781190", "url_o": "https://farm5.staticflickr.com/4045/4433190550_97f19300d5_o.jpg", "secret": "58e47649cb", "media": "photo", "latitude": "52.293966", "id": "4433190550", "tags": "greatbritain england sign unitedkingdom royalmail warwickshire stationrd henleyinarden deliveryoffice stationrdhenleyinarden henleyinardendeliveryoffice"}, {"datetaken": "2010-03-14 13:11:39", "license": "4", "title": "Warwickshire Fire and Rescue Service - Henley-in-Arden - training area", "text": "", "album_id": "72157623619601364", "longitude": "-1.780225", "url_o": "https://farm3.staticflickr.com/2717/4432491419_d7e098acdd_o.jpg", "secret": "c2617dccb1", "media": "photo", "latitude": "52.294051", "id": "4432491419", "tags": "greatbritain england unitedkingdom firemen firestation warwickshire stationrd henleyinarden firemansam trainingarea stationrdhenleyinarden warwickshirefireandrescueservice"}, {"datetaken": "2010-03-14 13:12:00", "license": "4", "title": "Warwickshire Fire and Rescue Service - Henley-in-Arden", "text": "", "album_id": "72157623619601364", "longitude": "-1.780225", "url_o": "https://farm5.staticflickr.com/4042/4432494439_17af41312f_o.jpg", "secret": "db9b007777", "media": "photo", "latitude": "52.294051", "id": "4432494439", "tags": "greatbritain england unitedkingdom sabre firemen firestation warwickshire stationrd henleyinarden firemansam dennisfireengine stationrdhenleyinarden warwickshirefireandrescueservice"}, {"datetaken": "2010-03-14 13:12:07", "license": "4", "title": "Warwickshire Fire and Rescue Service - Henley-in-Arden", "text": "", "album_id": "72157623619601364", "longitude": "-1.780225", "url_o": "https://farm5.staticflickr.com/4064/4432497527_dc28963489_o.jpg", "secret": "098a818123", "media": "photo", "latitude": "52.294051", "id": "4432497527", "tags": "greatbritain england unitedkingdom firemen firestation warwickshire stationrd henleyinarden firemansam stationrdhenleyinarden warwickshirefireandrescueservice"}, {"datetaken": "2010-03-14 13:12:20", "license": "4", "title": "Warwickshire Fire and Rescue Service - Henley-in-Arden", "text": "", "album_id": "72157623619601364", "longitude": "-1.780225", "url_o": "https://farm5.staticflickr.com/4064/4432500515_1fa44cfd82_o.jpg", "secret": "4324281829", "media": "photo", "latitude": "52.294051", "id": "4432500515", "tags": "greatbritain england unitedkingdom firemen firestation warwickshire stationrd henleyinarden firemansam stationrdhenleyinarden warwickshirefireandrescueservice"}, {"datetaken": "2010-03-14 13:12:37", "license": "4", "title": "Station Road leading to Brook End Drive - road sign", "text": "", "album_id": "72157623619601364", "longitude": "-1.780225", "url_o": "https://farm3.staticflickr.com/2783/4433278324_3344b7cda5_o.jpg", "secret": "3a08ab0b8a", "media": "photo", "latitude": "52.294051", "id": "4433278324", "tags": "greatbritain england sign unitedkingdom roadsign firemen firestation warwickshire stationrd henleyinarden firemansam brookenddrive stationrdhenleyinarden warwickshirefireandrescueservice stationroadleadingtobrookenddrive"}, {"datetaken": "2010-03-14 13:13:02", "license": "4", "title": "Henley-in-Arden Police Station", "text": "", "album_id": "72157623619601364", "longitude": "-1.779527", "url_o": "https://farm5.staticflickr.com/4051/4433329702_87423d590c_o.jpg", "secret": "45f5e2d3cf", "media": "photo", "latitude": "52.293926", "id": "4433329702", "tags": "greatbritain england unitedkingdom police policestation warwickshire highst stationrd henleyinarden warwickshireconstabulary stationrdhenleyinarden highsthenleyinarden"}, {"datetaken": "2010-03-14 13:13:12", "license": "4", "title": "Henley-in-Arden Police Station - Warwickshire Constabulary sign", "text": "", "album_id": "72157623619601364", "longitude": "-1.779527", "url_o": "https://farm3.staticflickr.com/2737/4432557667_5d967d27ba_o.jpg", "secret": "9bec415aa0", "media": "photo", "latitude": "52.293926", "id": "4432557667", "tags": "bear greatbritain england sign unitedkingdom police policestation warwickshire highst stationrd henleyinarden warwickshireconstabulary stationrdhenleyinarden highsthenleyinarden"}, {"datetaken": "2010-03-14 13:13:21", "license": "4", "title": "Warwickshire Fire and Rescue Service - Henley-in-Arden - gate", "text": "", "album_id": "72157623619601364", "longitude": "-1.779506", "url_o": "https://farm5.staticflickr.com/4068/4433290772_f6253b1746_o.jpg", "secret": "1d0df7d360", "media": "photo", "latitude": "52.294110", "id": "4433290772", "tags": "greatbritain england gate unitedkingdom firemen firestation warwickshire highst stationrd henleyinarden firemansam stationrdhenleyinarden warwickshirefireandrescueservice highsthenleyinarden"}, {"datetaken": "2010-03-14 13:43:54", "license": "4", "title": "Henley-in-Arden Police Station", "text": "", "album_id": "72157623619601364", "longitude": "-1.779527", "url_o": "https://farm5.staticflickr.com/4035/4432560865_7949c842a3_o.jpg", "secret": "967bd2ba2a", "media": "photo", "latitude": "52.293926", "id": "4432560865", "tags": "greatbritain england unitedkingdom police policestation warwickshire highst stationrd henleyinarden warwickshireconstabulary stationrdhenleyinarden highsthenleyinarden"}, {"datetaken": "2010-03-14 14:27:27", "license": "4", "title": "Thai Cottage, Henley-in-Arden", "text": "", "album_id": "72157623619601364", "longitude": "-1.779634", "url_o": "https://farm3.staticflickr.com/2764/4432855343_9bb5be63df_o.jpg", "secret": "f183901897", "media": "photo", "latitude": "52.293752", "id": "4432855343", "tags": "greatbritain england unitedkingdom warwickshire highst thairestaurant stationrd henleyinarden thaicottage gradeiilisted gradeiilistedbuilding finethaicuisine stationrdhenleyinarden highsthenleyinarden filbertcottagefrenchrestaurant lefilbertcottage filbertcottage 64highst"}, {"datetaken": "2010-03-14 14:27:31", "license": "4", "title": "Thai Cottage, 64 High Street, Henley-in-Arden", "text": "", "album_id": "72157623619601364", "longitude": "-1.779634", "url_o": "https://farm3.staticflickr.com/2685/4433632198_2552c38a1b_o.jpg", "secret": "d1cc785235", "media": "photo", "latitude": "52.293752", "id": "4433632198", "tags": "greatbritain england unitedkingdom warwickshire highst thairestaurant stationrd henleyinarden thaicottage gradeiilisted gradeiilistedbuilding finethaicuisine stationrdhenleyinarden highsthenleyinarden filbertcottagefrenchrestaurant lefilbertcottage filbertcottage 64highst"}, {"datetaken": "2010-03-14 14:27:46", "license": "4", "title": "Thai Cottage, Henley-in-Arden", "text": "", "album_id": "72157623619601364", "longitude": "-1.779634", "url_o": "https://farm5.staticflickr.com/4002/4433634656_a224122b0e_o.jpg", "secret": "07c0d2d4e5", "media": "photo", "latitude": "52.293752", "id": "4433634656", "tags": "greatbritain england unitedkingdom warwickshire highst thairestaurant stationrd henleyinarden thaicottage gradeiilisted gradeiilistedbuilding finethaicuisine stationrdhenleyinarden highsthenleyinarden filbertcottagefrenchrestaurant lefilbertcottage filbertcottage 64highst"}, {"datetaken": "2010-03-14 14:27:53", "license": "4", "title": "Thai Cottage, Henley-in-Arden - sign", "text": "", "album_id": "72157623619601364", "longitude": "-1.779634", "url_o": "https://farm5.staticflickr.com/4055/4433637504_e5783e04ea_o.jpg", "secret": "bce3e08b0e", "media": "photo", "latitude": "52.293752", "id": "4433637504", "tags": "greatbritain england sign unitedkingdom warwickshire highst thairestaurant stationrd henleyinarden thaicottage gradeiilisted gradeiilistedbuilding finethaicuisine stationrdhenleyinarden highsthenleyinarden filbertcottagefrenchrestaurant lefilbertcottage filbertcottage 64highst"}, {"datetaken": "2010-03-14 14:27:59", "license": "4", "title": "Thai Cottage, Henley-in-Arden - Station Road - road sign", "text": "", "album_id": "72157623619601364", "longitude": "-1.779634", "url_o": "https://farm5.staticflickr.com/4040/4432866215_b31637d0ed_o.jpg", "secret": "ce733faed5", "media": "photo", "latitude": "52.293752", "id": "4432866215", "tags": "greatbritain england sign unitedkingdom roadsign warwickshire highst thairestaurant stationrd henleyinarden thaicottage gradeiilisted gradeiilistedbuilding finethaicuisine stationrdhenleyinarden highsthenleyinarden filbertcottagefrenchrestaurant lefilbertcottage filbertcottage 64highst"}, {"datetaken": "2010-03-14 14:28:18", "license": "4", "title": "Thai Cottage, Henley-in-Arden", "text": "", "album_id": "72157623619601364", "longitude": "-1.779634", "url_o": "https://farm5.staticflickr.com/4055/4432868951_e9fd8bed6d_o.jpg", "secret": "e27b07f9da", "media": "photo", "latitude": "52.293752", "id": "4432868951", "tags": "greatbritain england unitedkingdom warwickshire highst thairestaurant stationrd henleyinarden thaicottage gradeiilisted gradeiilistedbuilding finethaicuisine stationrdhenleyinarden highsthenleyinarden filbertcottagefrenchrestaurant lefilbertcottage filbertcottage 64highst"}, {"datetaken": "2010-03-14 14:28:29", "license": "4", "title": "Warwickshire Fire and Rescue Service - Henley-in-Arden - Fireman Sam", "text": "", "album_id": "72157623619601364", "longitude": "-1.780225", "url_o": "https://farm5.staticflickr.com/4064/4433281550_cbca001b8c_o.jpg", "secret": "e85a7df081", "media": "photo", "latitude": "52.294051", "id": "4433281550", "tags": "greatbritain england fire unitedkingdom firemen firestation warwickshire dunlop stationrd henleyinarden firemansam stationrdhenleyinarden warwickshirefireandrescueservice"}, {"datetaken": "2010-03-14 14:28:36", "license": "4", "title": "Warwickshire Fire and Rescue Service - Henley-in-Arden", "text": "", "album_id": "72157623619601364", "longitude": "-1.780225", "url_o": "https://farm5.staticflickr.com/4024/4433284788_6f6cc62cf7_o.jpg", "secret": "ac2204f546", "media": "photo", "latitude": "52.294051", "id": "4433284788", "tags": "greatbritain england unitedkingdom sabre firemen firestation warwickshire stationrd henleyinarden firemansam dennisfireengine stationrdhenleyinarden warwickshirefireandrescueservice"}, {"datetaken": "2010-03-14 14:28:43", "license": "4", "title": "Warwickshire Fire and Rescue Service - Henley-in-Arden - sign", "text": "", "album_id": "72157623619601364", "longitude": "-1.780225", "url_o": "https://farm5.staticflickr.com/4068/4433287736_3382431cd3_o.jpg", "secret": "1e8375e513", "media": "photo", "latitude": "52.294051", "id": "4433287736", "tags": "greatbritain england unitedkingdom firemen firestation warwickshire stationrd henleyinarden firemansam stationrdhenleyinarden warwickshirefireandrescueservice"}, {"datetaken": "2007-01-15 14:18:48", "license": "4", "title": "IMG00124", "text": "", "album_id": "72157594482035348", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/358954338_91d54fcf4b_o.jpg", "secret": "91d54fcf4b", "media": "photo", "latitude": "0", "id": "358954338", "tags": "office 191alexander"}, {"datetaken": "2007-01-15 14:18:58", "license": "4", "title": "IMG00125", "text": "", "album_id": "72157594482035348", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/358954321_6f5ed890be_o.jpg", "secret": "6f5ed890be", "media": "photo", "latitude": "0", "id": "358954321", "tags": "office 191alexander"}, {"datetaken": "2007-01-15 14:19:26", "license": "4", "title": "IMG00126", "text": "", "album_id": "72157594482035348", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/358954417_4b6ab6b310_o.jpg", "secret": "4b6ab6b310", "media": "photo", "latitude": "0", "id": "358954417", "tags": "office 191alexander"}, {"datetaken": "2007-01-15 14:19:32", "license": "4", "title": "IMG00127", "text": "", "album_id": "72157594482035348", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/358954361_8d14aadcca_o.jpg", "secret": "8d14aadcca", "media": "photo", "latitude": "0", "id": "358954361", "tags": "office 191alexander"}, {"datetaken": "2007-01-15 14:19:37", "license": "4", "title": "IMG00128", "text": "", "album_id": "72157594482035348", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/358954397_039c6bb638_o.jpg", "secret": "039c6bb638", "media": "photo", "latitude": "0", "id": "358954397", "tags": "office 191alexander"}, {"datetaken": "2007-01-15 14:19:53", "license": "4", "title": "IMG00129", "text": "", "album_id": "72157594482035348", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/358954432_3b67a5bc5c_o.jpg", "secret": "3b67a5bc5c", "media": "photo", "latitude": "0", "id": "358954432", "tags": "office 191alexander"}, {"datetaken": "2007-01-15 14:20:03", "license": "4", "title": "IMG00130", "text": "", "album_id": "72157594482035348", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/358954463_fb941c4ea5_o.jpg", "secret": "fb941c4ea5", "media": "photo", "latitude": "0", "id": "358954463", "tags": "office 191alexander"}, {"datetaken": "2007-01-15 14:20:11", "license": "4", "title": "IMG00131", "text": "", "album_id": "72157594482035348", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/358954519_9213d9f3dd_o.jpg", "secret": "9213d9f3dd", "media": "photo", "latitude": "0", "id": "358954519", "tags": "office 191alexander"}, {"datetaken": "2007-01-15 14:20:18", "license": "4", "title": "IMG00132", "text": "", "album_id": "72157594482035348", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/358954537_0bca3aa0e2_o.jpg", "secret": "0bca3aa0e2", "media": "photo", "latitude": "0", "id": "358954537", "tags": "office 191alexander"}, {"datetaken": "2007-01-15 14:20:24", "license": "4", "title": "IMG00133", "text": "", "album_id": "72157594482035348", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/358954568_4f25ae7dc3_o.jpg", "secret": "4f25ae7dc3", "media": "photo", "latitude": "0", "id": "358954568", "tags": "office 191alexander"}, {"datetaken": "2007-01-15 14:20:35", "license": "4", "title": "IMG00134", "text": "", "album_id": "72157594482035348", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/358954598_c0a49f7f1b_o.jpg", "secret": "c0a49f7f1b", "media": "photo", "latitude": "0", "id": "358954598", "tags": "office 191alexander"}, {"datetaken": "2007-01-15 14:20:47", "license": "4", "title": "IMG00135", "text": "", "album_id": "72157594482035348", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/358954644_75eb113d69_o.jpg", "secret": "75eb113d69", "media": "photo", "latitude": "0", "id": "358954644", "tags": "office 191alexander"}, {"datetaken": "2007-01-15 14:21:37", "license": "4", "title": "IMG00136", "text": "", "album_id": "72157594482035348", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/358954664_03e29e6289_o.jpg", "secret": "03e29e6289", "media": "photo", "latitude": "0", "id": "358954664", "tags": "office 191alexander"}, {"datetaken": "2007-01-15 14:22:03", "license": "4", "title": "IMG00137", "text": "", "album_id": "72157594482035348", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/358954686_1daa423019_o.jpg", "secret": "1daa423019", "media": "photo", "latitude": "0", "id": "358954686", "tags": "office 191alexander"}, {"datetaken": "2007-01-15 14:22:31", "license": "4", "title": "IMG00138", "text": "", "album_id": "72157594482035348", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/358954714_5fd77d6019_o.jpg", "secret": "5fd77d6019", "media": "photo", "latitude": "0", "id": "358954714", "tags": "office 191alexander"}, {"datetaken": "2007-01-15 14:40:24", "license": "4", "title": "IMG00139", "text": "", "album_id": "72157594482035348", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/358954754_0e68785357_o.jpg", "secret": "0e68785357", "media": "photo", "latitude": "0", "id": "358954754", "tags": "office 191alexander"}, {"datetaken": "2007-01-15 14:45:18", "license": "4", "title": "IMG00140", "text": "", "album_id": "72157594482035348", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/358954298_0563a59aeb_o.jpg", "secret": "0563a59aeb", "media": "photo", "latitude": "0", "id": "358954298", "tags": "office 191alexander"}, {"datetaken": "2010-01-17 22:23:28", "license": "4", "title": "at central", "text": "", "album_id": "72157623117965103", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4290317621_a9f2efae11_o.jpg", "secret": "4ab0e54f19", "media": "photo", "latitude": "0", "id": "4290317621", "tags": ""}, {"datetaken": "2010-01-18 00:11:06", "license": "4", "title": "entrance Concordia", "text": "", "album_id": "72157623117965103", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4291059130_af28f2f935_o.jpg", "secret": "b48d63f906", "media": "photo", "latitude": "0", "id": "4291059130", "tags": ""}, {"datetaken": "2010-01-18 00:11:27", "license": "4", "title": "at entrance concordia", "text": "", "album_id": "72157623117965103", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4291058986_35192873b9_o.jpg", "secret": "5ef28ca4d7", "media": "photo", "latitude": "0", "id": "4291058986", "tags": ""}, {"datetaken": "2010-01-18 00:17:12", "license": "4", "title": "inside concordia", "text": "", "album_id": "72157623117965103", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4291059184_62b3ac2960_o.jpg", "secret": "5d41e06b34", "media": "photo", "latitude": "0", "id": "4291059184", "tags": ""}, {"datetaken": "2010-01-18 02:01:28", "license": "4", "title": "concordia", "text": "", "album_id": "72157623117965103", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4290317743_7b7783c668_o.jpg", "secret": "f4d45e12e5", "media": "photo", "latitude": "0", "id": "4290317743", "tags": ""}, {"datetaken": "2010-01-18 16:47:38", "license": "4", "title": "MLK Day - DDI", "text": "", "album_id": "72157623117965103", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4288247208_d6efc9e849_o.jpg", "secret": "522bbc4da6", "media": "photo", "latitude": "0", "id": "4288247208", "tags": ""}, {"datetaken": "2010-01-18 16:54:09", "license": "4", "title": "MLK Day - DDI", "text": "", "album_id": "72157623117965103", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4287506293_ee20674872_o.jpg", "secret": "bee2cca40c", "media": "photo", "latitude": "0", "id": "4287506293", "tags": ""}, {"datetaken": "2010-01-18 16:54:23", "license": "4", "title": "MLK Day - DDI", "text": "", "album_id": "72157623117965103", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4288276988_c2ae5490d8_o.jpg", "secret": "1a8c22d61f", "media": "photo", "latitude": "0", "id": "4288276988", "tags": ""}, {"datetaken": "2010-01-18 16:56:31", "license": "4", "title": "MLK Day - DDI", "text": "", "album_id": "72157623117965103", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2804/4287544477_e5db6a6af5_o.jpg", "secret": "f0ca4488dd", "media": "photo", "latitude": "0", "id": "4287544477", "tags": ""}, {"datetaken": "2010-01-18 18:11:40", "license": "4", "title": "MLK Day - March", "text": "", "album_id": "72157623117965103", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4288286860_605d9ab79f_o.jpg", "secret": "a0fc9e57e9", "media": "photo", "latitude": "0", "id": "4288286860", "tags": ""}, {"datetaken": "2010-01-18 18:12:43", "license": "4", "title": "MLK Day - March", "text": "", "album_id": "72157623117965103", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4288291612_b755c8165a_o.jpg", "secret": "1348e3b3a8", "media": "photo", "latitude": "0", "id": "4288291612", "tags": ""}, {"datetaken": "2010-01-18 18:13:18", "license": "4", "title": "MLK Day - March", "text": "", "album_id": "72157623117965103", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4287551075_bde9dab95f_o.jpg", "secret": "b2a2a68180", "media": "photo", "latitude": "0", "id": "4287551075", "tags": ""}, {"datetaken": "2010-02-19 01:14:57", "license": "2", "title": "Digipen Redmond Art Campus", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm5.staticflickr.com/4009/4378969709_274aaf639b_o.jpg", "secret": "55a62acacb", "media": "photo", "latitude": "47.674335", "id": "4378969709", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-20 19:57:42", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm3.staticflickr.com/2776/4378969793_e408595686_o.jpg", "secret": "cb35297aa7", "media": "photo", "latitude": "47.674335", "id": "4378969793", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-20 19:59:02", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm3.staticflickr.com/2803/4378969899_3ddf67160a_o.jpg", "secret": "71f3861f8e", "media": "photo", "latitude": "47.674335", "id": "4378969899", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-20 19:59:26", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm3.staticflickr.com/2761/4378970019_dce404a3f5_o.jpg", "secret": "02042db6df", "media": "photo", "latitude": "47.674335", "id": "4378970019", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-20 19:59:44", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm3.staticflickr.com/2686/4379725726_7ffd713a64_o.jpg", "secret": "db2df62915", "media": "photo", "latitude": "47.674335", "id": "4379725726", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-20 20:00:38", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm5.staticflickr.com/4064/4378970213_209003f105_o.jpg", "secret": "aac7a180b0", "media": "photo", "latitude": "47.674335", "id": "4378970213", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-20 20:00:51", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm3.staticflickr.com/2792/4379726010_80c489598b_o.jpg", "secret": "a5f401a9ce", "media": "photo", "latitude": "47.674335", "id": "4379726010", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-20 21:05:17", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm5.staticflickr.com/4024/4378970423_107ee43ac4_o.jpg", "secret": "e8b92a39c1", "media": "photo", "latitude": "47.674335", "id": "4378970423", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-20 21:05:26", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm3.staticflickr.com/2705/4378970537_e2e9fe1bc7_o.jpg", "secret": "8b251c74e0", "media": "photo", "latitude": "47.674335", "id": "4378970537", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-20 21:05:36", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm5.staticflickr.com/4057/4379726342_e084b3bc6f_o.jpg", "secret": "06fab46880", "media": "photo", "latitude": "47.674335", "id": "4379726342", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-20 21:59:19", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm3.staticflickr.com/2733/4379726452_f6f5398c80_o.jpg", "secret": "a4471dbd6e", "media": "photo", "latitude": "47.674335", "id": "4379726452", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-20 21:59:55", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm5.staticflickr.com/4010/4378970883_7e41728127_o.jpg", "secret": "bb33ec4013", "media": "photo", "latitude": "47.674335", "id": "4378970883", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-20 22:00:36", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm3.staticflickr.com/2752/4378971009_be79ccdfa8_o.jpg", "secret": "82d976bdb4", "media": "photo", "latitude": "47.674335", "id": "4378971009", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-20 22:30:09", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm3.staticflickr.com/2721/4378971121_5f0c629d53_o.jpg", "secret": "ac551e3f8b", "media": "photo", "latitude": "47.674335", "id": "4378971121", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-20 22:30:20", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm5.staticflickr.com/4042/4379726906_c10c590f1b_o.jpg", "secret": "f85c17a5d8", "media": "photo", "latitude": "47.674335", "id": "4379726906", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-20 22:30:44", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm3.staticflickr.com/2763/4379726998_2dda7861f0_o.jpg", "secret": "9be6f0b656", "media": "photo", "latitude": "47.674335", "id": "4379726998", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-20 23:16:00", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm3.staticflickr.com/2685/4378971453_7908b56049_o.jpg", "secret": "e226c2df0b", "media": "photo", "latitude": "47.674335", "id": "4378971453", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-20 23:50:38", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm5.staticflickr.com/4004/4379727256_deb0e9ffd8_o.jpg", "secret": "d11952d22b", "media": "photo", "latitude": "47.674335", "id": "4379727256", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-21 00:28:57", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm3.staticflickr.com/2766/4379727374_06fe34463b_o.jpg", "secret": "bab27dbe65", "media": "photo", "latitude": "47.674335", "id": "4379727374", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-21 01:11:34", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm5.staticflickr.com/4010/4379727606_cc9284ab47_o.jpg", "secret": "bf64013d38", "media": "photo", "latitude": "47.674335", "id": "4379727606", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-21 01:12:28", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm5.staticflickr.com/4060/4379727718_ccb711be28_o.jpg", "secret": "0406de0b2d", "media": "photo", "latitude": "47.674335", "id": "4379727718", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-21 01:12:59", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm5.staticflickr.com/4001/4378972117_1fdf5a402d_o.jpg", "secret": "04f9c002df", "media": "photo", "latitude": "47.674335", "id": "4378972117", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-21 01:13:54", "license": "2", "title": "altnetseattle February 2010", "text": "", "album_id": "72157623362769573", "longitude": "-122.133552", "url_o": "https://farm3.staticflickr.com/2713/4378972213_106335dc36_o.jpg", "secret": "279a07acd2", "media": "photo", "latitude": "47.674335", "id": "4378972213", "tags": "redmond altnetseattle"}, {"datetaken": "2010-02-22 12:13:59", "license": "4", "title": "Gritty", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm5.staticflickr.com/4054/4380025130_e8344cb457_o.jpg", "secret": "3d45fc973f", "media": "photo", "latitude": "51.583026", "id": "4380025130", "tags": "southwales yard buildings rust industrial decay cab vehicles scrap sheds lorries urbex rhydyfelin gritter"}, {"datetaken": "2010-02-22 12:15:18", "license": "4", "title": "Broken engine", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm5.staticflickr.com/4021/4379270527_1e6d7e2443_o.jpg", "secret": "3777c21954", "media": "photo", "latitude": "51.583026", "id": "4379270527", "tags": "southwales yard buildings rust industrial decay vehicles fireengine scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 12:16:09", "license": "4", "title": "Needs TLC", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm5.staticflickr.com/4023/4380025920_3480d57c58_o.jpg", "secret": "c7bfe88431", "media": "photo", "latitude": "51.583026", "id": "4380025920", "tags": "southwales yard buildings rust industrial decay engine vehicles scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 12:23:52", "license": "4", "title": "Tired", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm5.staticflickr.com/4032/4379271193_2293ac995c_o.jpg", "secret": "c981546ede", "media": "photo", "latitude": "51.583026", "id": "4379271193", "tags": "southwales yard buildings rust industrial decay vehicles scrap tyres sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 12:25:48", "license": "4", "title": "Puncture(s)", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm5.staticflickr.com/4021/4380026396_baf409ec66_o.jpg", "secret": "4a5400ca9c", "media": "photo", "latitude": "51.583026", "id": "4380026396", "tags": "electric southwales yard buildings rust industrial decay vehicles scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 12:27:57", "license": "4", "title": "It's where it came out", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm5.staticflickr.com/4025/4379271513_2efdd37c2e_o.jpg", "secret": "a4fbea7541", "media": "photo", "latitude": "51.583026", "id": "4379271513", "tags": "southwales yard buildings rust industrial decay vehicles fireengine scrap valves sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 12:28:08", "license": "4", "title": "Strange fruit", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm3.staticflickr.com/2790/4380026710_0a927b194a_o.jpg", "secret": "6e1d1055d5", "media": "photo", "latitude": "51.583026", "id": "4380026710", "tags": "southwales yard buildings rust industrial decay vehicles scrap sheds lorries urbex indicators rhydyfelin"}, {"datetaken": "2010-02-22 12:30:40", "license": "4", "title": "You're not in the army now", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm3.staticflickr.com/2786/4380026876_855dcb39eb_o.jpg", "secret": "4b05deaa70", "media": "photo", "latitude": "51.583026", "id": "4380026876", "tags": "southwales yard buildings army rust industrial decay vehicles lorry scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 12:31:56", "license": "4", "title": "Naturally", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm3.staticflickr.com/2779/4379272219_3041ec676d_o.jpg", "secret": "f963523f81", "media": "photo", "latitude": "51.583026", "id": "4379272219", "tags": "southwales yard buildings rust industrial decay vehicles scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 12:38:33", "license": "4", "title": "The Ark is within?", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm5.staticflickr.com/4011/4379272399_efc0aa8240_o.jpg", "secret": "f5fa55dfde", "media": "photo", "latitude": "51.583026", "id": "4379272399", "tags": "southwales yard buildings rust industrial decay vehicles scrap crates sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 12:39:48", "license": "4", "title": "Prohibited", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm5.staticflickr.com/4059/4379272563_479cee9e0e_o.jpg", "secret": "8c2a8b7b2e", "media": "photo", "latitude": "51.583026", "id": "4379272563", "tags": "southwales yard buildings rust industrial decay vehicles barbedwire scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 12:44:34", "license": "4", "title": "Mission control", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm3.staticflickr.com/2727/4380027518_90af386f73_o.jpg", "secret": "72d3f070ec", "media": "photo", "latitude": "51.583026", "id": "4380027518", "tags": "southwales yard buildings rust industrial decay vehicles scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 12:45:19", "license": "4", "title": "It's what's inside", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm5.staticflickr.com/4059/4380027816_2b4bd9bfd3_o.jpg", "secret": "9e450a8c06", "media": "photo", "latitude": "51.583026", "id": "4380027816", "tags": "southwales yard buildings rust industrial decay vehicles scrap bt gpo sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 12:45:56", "license": "4", "title": "Tanked up", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm3.staticflickr.com/2748/4380027994_dd25c9ded3_o.jpg", "secret": "0547ba7119", "media": "photo", "latitude": "51.583026", "id": "4380027994", "tags": "southwales yard buildings rust industrial decay vehicles scrap tanker sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 12:47:19", "license": "4", "title": "Dirty dash", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm3.staticflickr.com/2684/4380028168_8a0ab9206c_o.jpg", "secret": "849ae29135", "media": "photo", "latitude": "51.583026", "id": "4380028168", "tags": "southwales yard buildings rust industrial decay vehicles dashboard scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 12:50:21", "license": "4", "title": "Sexy bus", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm3.staticflickr.com/2775/4380028382_cdd4c8708d_o.jpg", "secret": "76eb035fd0", "media": "photo", "latitude": "51.583026", "id": "4380028382", "tags": "southwales yard buildings rust industrial decay vehicles scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 12:52:27", "license": "4", "title": "The nerve centre", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm5.staticflickr.com/4063/4380028572_1e7979f771_o.jpg", "secret": "ae34d05671", "media": "photo", "latitude": "51.583026", "id": "4380028572", "tags": "southwales yard buildings office rust industrial decay vehicles scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 12:53:01", "license": "4", "title": "\"honi soit qui mal y pense\"", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm3.staticflickr.com/2697/4379274213_18551fc35f_o.jpg", "secret": "1f3075af2d", "media": "photo", "latitude": "51.583026", "id": "4379274213", "tags": "southwales yard buildings rust industrial decay vehicles scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 13:03:15", "license": "4", "title": "Wheels", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm3.staticflickr.com/2726/4379273987_c249fa804d_o.jpg", "secret": "a0a4612cda", "media": "photo", "latitude": "51.583026", "id": "4379273987", "tags": "southwales yard buildings rust industrial decay wheels vehicles scrap tyres sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 13:05:32", "license": "4", "title": "Hidden", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm3.staticflickr.com/2738/4380029262_2c757eddbd_o.jpg", "secret": "f9117214c0", "media": "photo", "latitude": "51.583026", "id": "4380029262", "tags": "tree southwales yard buildings rust industrial decay vehicles scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 13:07:14", "license": "4", "title": "They had 'Bin' lorries once", "text": "", "album_id": "72157623488082540", "longitude": "-3.317578", "url_o": "https://farm3.staticflickr.com/2769/4379274695_021ebdbaa7_o.jpg", "secret": "f3fa79c1ae", "media": "photo", "latitude": "51.582395", "id": "4379274695", "tags": "southwales yard buildings geotagged rust industrial decay vehicles rubbish waste refuse scrap sheds lorries urbex rhydyfelin binlorries shelvoke geo:lat=5158239516071086 geo:lon=3317578045299534"}, {"datetaken": "2010-02-22 13:11:57", "license": "4", "title": "Trains passed this way", "text": "", "album_id": "72157623488082540", "longitude": "-3.318203", "url_o": "https://farm5.staticflickr.com/4039/4379274917_86d238cd0d_o.jpg", "secret": "14ed73a968", "media": "photo", "latitude": "51.583026", "id": "4379274917", "tags": "southwales yard buildings rust industrial decay railway vehicles scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 13:33:57", "license": "4", "title": "Curved interior", "text": "", "album_id": "72157623488082540", "longitude": "-3.320327", "url_o": "https://farm5.staticflickr.com/4068/4379275239_1ca95e7742_o.jpg", "secret": "cd3e01c5ef", "media": "photo", "latitude": "51.585436", "id": "4379275239", "tags": "southwales yard buildings rust industrial decay railway tunnel vehicles scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 13:36:26", "license": "4", "title": "Strutted", "text": "", "album_id": "72157623488082540", "longitude": "-3.320327", "url_o": "https://farm5.staticflickr.com/4035/4380030264_0b407a6c40_o.jpg", "secret": "fdf58243af", "media": "photo", "latitude": "51.585436", "id": "4380030264", "tags": "southwales yard buildings rust industrial decay railway tunnel vehicles scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 13:37:36", "license": "4", "title": "Looking out", "text": "", "album_id": "72157623488082540", "longitude": "-3.320327", "url_o": "https://farm5.staticflickr.com/4062/4380030428_510503e834_o.jpg", "secret": "9c68cddd1c", "media": "photo", "latitude": "51.585436", "id": "4380030428", "tags": "southwales yard buildings rust industrial decay railway tunnel vehicles scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 13:41:55", "license": "4", "title": "The BIG hole", "text": "", "album_id": "72157623488082540", "longitude": "-3.320327", "url_o": "https://farm3.staticflickr.com/2685/4380030748_17760e7933_o.jpg", "secret": "2214436315", "media": "photo", "latitude": "51.585436", "id": "4380030748", "tags": "southwales yard buildings rust industrial decay railway tunnel vehicles scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 13:52:28", "license": "4", "title": "Abuse", "text": "", "album_id": "72157623488082540", "longitude": "-3.319458", "url_o": "https://farm3.staticflickr.com/2694/4380030932_e3bb02d86e_o.jpg", "secret": "3caf857ffc", "media": "photo", "latitude": "51.584409", "id": "4380030932", "tags": "southwales yard buildings rust industrial decay vehicles scrap abuse sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 13:54:54", "license": "4", "title": "He saw the light", "text": "", "album_id": "72157623488082540", "longitude": "-3.319458", "url_o": "https://farm3.staticflickr.com/2787/4380031072_0e1b54f661_o.jpg", "secret": "1c3ee68360", "media": "photo", "latitude": "51.584409", "id": "4380031072", "tags": "man southwales yard buildings rust industrial decay vehicles scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2010-02-22 14:31:13", "license": "4", "title": "Pub talk", "text": "", "album_id": "72157623488082540", "longitude": "-3.307571", "url_o": "https://farm5.staticflickr.com/4032/4380025348_8e5f727bd5_o.jpg", "secret": "2b80e3457b", "media": "photo", "latitude": "51.580276", "id": "4380025348", "tags": "beer southwales yard buildings pub rust industrial decay vehicles scrap sheds lorries urbex rhydyfelin"}, {"datetaken": "2007-01-02 05:04:04", "license": "4", "title": "img_3309", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/367691019_f342ae5915_o.jpg", "secret": "f342ae5915", "media": "photo", "latitude": "0", "id": "367691019", "tags": "television minnesota saintpaul comopark wcco newsvan softnews slownewsday"}, {"datetaken": "2007-01-02 05:04:38", "license": "4", "title": "img_3310", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/367691027_e923b78567_o.jpg", "secret": "e923b78567", "media": "photo", "latitude": "0", "id": "367691027", "tags": "television minnesota saintpaul comopark wcco newsvan softnews slownewsday microwavemast"}, {"datetaken": "2007-01-02 05:06:50", "license": "4", "title": "img_3313", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/367691035_ab267fd5af_o.jpg", "secret": "ab267fd5af", "media": "photo", "latitude": "0", "id": "367691035", "tags": "television minnesota saintpaul comopark wcco softnews slownewsday"}, {"datetaken": "2007-01-02 05:30:44", "license": "4", "title": "img_3314-crop", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/367691041_537c439d49_o.jpg", "secret": "537c439d49", "media": "photo", "latitude": "0", "id": "367691041", "tags": "television minnesota saintpaul comopark wcco softnews slownewsday"}, {"datetaken": "2007-01-02 05:32:15", "license": "4", "title": "img_3316", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/367691043_d39781820c_o.jpg", "secret": "d39781820c", "media": "photo", "latitude": "0", "id": "367691043", "tags": "television minnesota saintpaul comopark wcco softnews slownewsday"}, {"datetaken": "2007-01-02 05:33:09", "license": "4", "title": "img_3319", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/102/367691045_c71bb88b7f_o.jpg", "secret": "c71bb88b7f", "media": "photo", "latitude": "0", "id": "367691045", "tags": "television minnesota saintpaul comopark wcco softnews slownewsday"}, {"datetaken": "2007-01-02 05:34:21", "license": "4", "title": "img_3321", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/367717973_abb9423dc8_o.jpg", "secret": "abb9423dc8", "media": "photo", "latitude": "0", "id": "367717973", "tags": "television minnesota saintpaul comopark wcco softnews slownewsday"}, {"datetaken": "2007-01-02 05:35:42", "license": "4", "title": "img_3323", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/367717974_722d304d35_o.jpg", "secret": "722d304d35", "media": "photo", "latitude": "0", "id": "367717974", "tags": "television minnesota saintpaul comopark wcco softnews slownewsday"}, {"datetaken": "2007-01-02 05:55:36", "license": "4", "title": "img_3327", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/367717977_290c1e5673_o.jpg", "secret": "290c1e5673", "media": "photo", "latitude": "0", "id": "367717977", "tags": "television minnesota saintpaul comopark wcco softnews slownewsday"}, {"datetaken": "2007-01-02 05:57:55", "license": "4", "title": "img_3329", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/367750344_8bc1e4b432_o.jpg", "secret": "8bc1e4b432", "media": "photo", "latitude": "0", "id": "367750344", "tags": "television minnesota saintpaul comopark wcco softnews slownewsday"}, {"datetaken": "2007-01-02 05:58:16", "license": "4", "title": "img_3330", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/367750346_0ce2b0fb35_o.jpg", "secret": "0ce2b0fb35", "media": "photo", "latitude": "0", "id": "367750346", "tags": "television minnesota saintpaul comopark wcco softnews slownewsday"}, {"datetaken": "2007-01-02 05:58:25", "license": "4", "title": "img_3331", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/367750348_824eaadb63_o.jpg", "secret": "824eaadb63", "media": "photo", "latitude": "0", "id": "367750348", "tags": "television minnesota saintpaul comopark wcco softnews slownewsday"}, {"datetaken": "2007-01-02 05:58:34", "license": "4", "title": "img_3332", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/114/367750350_8c2446e41f_o.jpg", "secret": "8c2446e41f", "media": "photo", "latitude": "0", "id": "367750350", "tags": "television minnesota saintpaul comopark wcco softnews slownewsday"}, {"datetaken": "2007-01-02 05:59:00", "license": "4", "title": "img_3333", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/367750354_636afd78d6_o.jpg", "secret": "636afd78d6", "media": "photo", "latitude": "0", "id": "367750354", "tags": "television minnesota saintpaul comopark wcco softnews slownewsday"}, {"datetaken": "2007-01-02 05:59:54", "license": "4", "title": "img_3335", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/109/367750357_092966a6c6_o.jpg", "secret": "092966a6c6", "media": "photo", "latitude": "0", "id": "367750357", "tags": "television minnesota saintpaul comopark wcco softnews slownewsday"}, {"datetaken": "2007-01-02 06:01:47", "license": "4", "title": "img_3336", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/367777628_d6f3ed74f5_o.jpg", "secret": "d6f3ed74f5", "media": "photo", "latitude": "0", "id": "367777628", "tags": "television minnesota saintpaul comopark wcco softnews slownewsday"}, {"datetaken": "2007-01-02 06:02:04", "license": "4", "title": "img_3337", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/367777636_0c934963ef_o.jpg", "secret": "0c934963ef", "media": "photo", "latitude": "0", "id": "367777636", "tags": "television minnesota saintpaul comopark wcco softnews slownewsday"}, {"datetaken": "2007-01-02 06:04:02", "license": "4", "title": "img_3339", "text": "", "album_id": "72157594497148917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/367777639_573a212717_o.jpg", "secret": "573a212717", "media": "photo", "latitude": "0", "id": "367777639", "tags": "television minnesota saintpaul comopark wcco softnews slownewsday"}, {"datetaken": "2010-03-08 01:35:30", "license": "1", "title": "Sparrow in CDG Paris", "text": "", "album_id": "72157623560377845", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4460288142_8e1ac806b2_o.jpg", "secret": "3948d5a24f", "media": "photo", "latitude": "0", "id": "4460288142", "tags": "paris bird airport cdg"}, {"datetaken": "2010-03-08 01:35:41", "license": "1", "title": "Sparrow in CDG Paris", "text": "", "album_id": "72157623560377845", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2777/4460292766_512a735272_o.jpg", "secret": "ce187f8ce6", "media": "photo", "latitude": "0", "id": "4460292766", "tags": "paris bird airport cdg"}, {"datetaken": "2010-03-08 01:35:51", "license": "1", "title": "Sparrow in CDG Paris", "text": "", "album_id": "72157623560377845", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4459517973_f8dc973717_o.jpg", "secret": "bcb149e900", "media": "photo", "latitude": "0", "id": "4459517973", "tags": "paris bird airport cdg"}, {"datetaken": "2010-03-08 01:36:07", "license": "1", "title": "Sparrow in CDG Paris", "text": "", "album_id": "72157623560377845", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4459523729_1daf02a5f5_o.jpg", "secret": "293c34e01f", "media": "photo", "latitude": "0", "id": "4459523729", "tags": "paris bird airport cdg"}, {"datetaken": "2010-03-08 01:36:29", "license": "1", "title": "Sparrow in CDG Paris", "text": "", "album_id": "72157623560377845", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2743/4459528243_f0beaf9328_o.jpg", "secret": "10fa41a441", "media": "photo", "latitude": "0", "id": "4459528243", "tags": "paris bird airport cdg"}, {"datetaken": "2010-03-08 01:37:06", "license": "1", "title": "Sparrow in CDG Paris", "text": "", "album_id": "72157623560377845", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4459533277_08afc4fa2b_o.jpg", "secret": "d55072c60d", "media": "photo", "latitude": "0", "id": "4459533277", "tags": "paris bird airport cdg"}, {"datetaken": "2010-03-08 02:06:50", "license": "1", "title": "Sparrow in CDG Paris", "text": "", "album_id": "72157623560377845", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4459537723_7bdc1588e8_o.jpg", "secret": "d988df86ee", "media": "photo", "latitude": "0", "id": "4459537723", "tags": "paris bird airport cdg"}, {"datetaken": "2010-03-08 02:07:42", "license": "1", "title": "Sparrow in CDG Paris", "text": "", "album_id": "72157623560377845", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4459543219_719edbc65e_o.jpg", "secret": "a740930f6a", "media": "photo", "latitude": "0", "id": "4459543219", "tags": "paris bird airport cdg"}, {"datetaken": "2010-03-08 02:07:45", "license": "1", "title": "Sparrow in CDG Paris", "text": "", "album_id": "72157623560377845", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4459548523_c7cae5e5e4_o.jpg", "secret": "b7b1700a28", "media": "photo", "latitude": "0", "id": "4459548523", "tags": "paris bird airport cdg"}, {"datetaken": "2010-03-08 02:07:48", "license": "1", "title": "Sparrow in CDG Paris", "text": "", "album_id": "72157623560377845", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4459554149_6208d49d23_o.jpg", "secret": "b998de16c6", "media": "photo", "latitude": "0", "id": "4459554149", "tags": "paris bird airport cdg"}, {"datetaken": "2010-03-08 02:09:09", "license": "1", "title": "Sparrow in CDG Paris", "text": "", "album_id": "72157623560377845", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4460339166_222262f06c_o.jpg", "secret": "324432ceaa", "media": "photo", "latitude": "0", "id": "4460339166", "tags": "paris bird airport cdg"}, {"datetaken": "2010-03-24 13:23:21", "license": "3", "title": "title page", "text": "", "album_id": "72157623566889139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4459852419_985b44c22a_o.jpg", "secret": "fd695b6d09", "media": "photo", "latitude": "0", "id": "4459852419", "tags": "schools medicalschools schoolsmedical\u2013history"}, {"datetaken": "2010-03-24 13:23:23", "license": "3", "title": "Office", "text": "", "album_id": "72157623566889139", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2755/4460631014_fb1e598131_o.jpg", "secret": "3b064d6c31", "media": "photo", "latitude": "0", "id": "4460631014", "tags": "schools medicalschools schoolsmedical\u2013history"}, {"datetaken": "2010-03-24 13:23:24", "license": "3", "title": "Surgical Preparation Room", "text": "", "album_id": "72157623566889139", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4459852549_605bcf90a2_o.jpg", "secret": "6431d124a7", "media": "photo", "latitude": "0", "id": "4459852549", "tags": "schools medicalschools schoolsmedical\u2013history"}, {"datetaken": "2010-03-24 13:23:26", "license": "3", "title": "Archibald Church, M.D.", "text": "", "album_id": "72157623566889139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4460631116_d94ce24705_o.jpg", "secret": "a3fae7fd5f", "media": "photo", "latitude": "0", "id": "4460631116", "tags": "schools medicalschools schoolsmedical\u2013history"}, {"datetaken": "2010-03-24 13:23:28", "license": "3", "title": "W.T. Eckley, M.D.", "text": "", "album_id": "72157623566889139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4460631150_ff583d57e4_o.jpg", "secret": "c03b1882cd", "media": "photo", "latitude": "0", "id": "4460631150", "tags": "schools medicalschools schoolsmedical\u2013history"}, {"datetaken": "2010-03-24 13:23:29", "license": "3", "title": "Occlusal Surfaces Restored", "text": "", "album_id": "72157623566889139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4460631186_b839763d22_o.jpg", "secret": "496b465643", "media": "photo", "latitude": "0", "id": "4460631186", "tags": "schools medicalschools schoolsmedical\u2013history"}, {"datetaken": "2010-03-24 13:23:31", "license": "3", "title": "advertisement", "text": "", "album_id": "72157623566889139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4459852765_c60538fbc0_o.jpg", "secret": "84235a0343", "media": "photo", "latitude": "0", "id": "4459852765", "tags": "schools medicalschools schoolsmedical\u2013history"}, {"datetaken": "2010-03-24 13:23:33", "license": "3", "title": "Volt-ohm Tubes (advertisement)", "text": "", "album_id": "72157623566889139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4459852863_abb73b859b_o.jpg", "secret": "316e85550f", "media": "photo", "latitude": "0", "id": "4459852863", "tags": "schools medicalschools schoolsmedical\u2013history"}, {"datetaken": "2010-03-24 13:23:35", "license": "3", "title": "Silver Spoon", "text": "", "album_id": "72157623566889139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4460631402_4baa72e258_o.jpg", "secret": "8d36dea4f6", "media": "photo", "latitude": "0", "id": "4460631402", "tags": "schools medicalschools schoolsmedical\u2013history"}, {"datetaken": "2010-03-24 13:23:37", "license": "3", "title": "advertisement", "text": "", "album_id": "72157623566889139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4459852961_8e1a10a9db_o.jpg", "secret": "eb7ea06ffd", "media": "photo", "latitude": "0", "id": "4459852961", "tags": "schools medicalschools schoolsmedical\u2013history"}, {"datetaken": "2010-03-13 13:09:34", "license": "5", "title": "United International First Lounge - LAX", "text": "", "album_id": "72157623687984190", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4460684049_98b0511473_o.jpg", "secret": "ed38028048", "media": "photo", "latitude": "0", "id": "4460684049", "tags": ""}, {"datetaken": "2010-03-13 13:11:15", "license": "5", "title": "United International First Lounge - LAX", "text": "", "album_id": "72157623687984190", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4460685193_5da292c8db_o.jpg", "secret": "84afa495de", "media": "photo", "latitude": "0", "id": "4460685193", "tags": ""}, {"datetaken": "2010-03-13 14:02:36", "license": "5", "title": "United First Class - 777-200ER", "text": "", "album_id": "72157623687984190", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4461464560_7e37e6c07f_o.jpg", "secret": "0c0f79db12", "media": "photo", "latitude": "0", "id": "4461464560", "tags": ""}, {"datetaken": "2010-03-13 14:04:32", "license": "5", "title": "United First Class - 777-200ER", "text": "", "album_id": "72157623687984190", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4461465672_a8c9a6a1cb_o.jpg", "secret": "40d80f096e", "media": "photo", "latitude": "0", "id": "4461465672", "tags": ""}, {"datetaken": "2010-03-13 19:25:12", "license": "5", "title": "United First Class - 777-200ER", "text": "", "album_id": "72157623687984190", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4460688931_70c3a7c569_o.jpg", "secret": "2749931949", "media": "photo", "latitude": "0", "id": "4460688931", "tags": ""}, {"datetaken": "2010-03-13 19:26:54", "license": "5", "title": "United First Class - 777-200ER", "text": "", "album_id": "72157623687984190", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4461468360_8908e3147c_o.jpg", "secret": "a8a15bf8f7", "media": "photo", "latitude": "0", "id": "4461468360", "tags": ""}, {"datetaken": "2010-03-14 03:45:16", "license": "5", "title": "Sunset at Tokyo Narita", "text": "", "album_id": "72157623687984190", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4461469324_61657f94f3_o.jpg", "secret": "b8f3df7b22", "media": "photo", "latitude": "0", "id": "4461469324", "tags": ""}, {"datetaken": "2010-03-14 03:50:17", "license": "5", "title": "Qantas Club - Tokyo Narita", "text": "", "album_id": "72157623687984190", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4460692665_d8bae09dab_o.jpg", "secret": "7896b94010", "media": "photo", "latitude": "0", "id": "4460692665", "tags": ""}, {"datetaken": "2010-03-14 03:51:06", "license": "5", "title": "Qantas Club - Tokyo Narita", "text": "", "album_id": "72157623687984190", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2755/4460694027_145d884a3a_o.jpg", "secret": "53b47b69dd", "media": "photo", "latitude": "0", "id": "4460694027", "tags": ""}, {"datetaken": "2010-03-14 03:57:02", "license": "5", "title": "Air New Zealand Business Class - 777-200ER", "text": "", "album_id": "72157623687984190", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4461473736_fdddae424d_o.jpg", "secret": "97365a7a6a", "media": "photo", "latitude": "0", "id": "4461473736", "tags": ""}, {"datetaken": "2010-03-14 03:57:58", "license": "5", "title": "Air New Zealand Business Class - 777-200ER", "text": "", "album_id": "72157623687984190", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4461475158_64b654595d_o.jpg", "secret": "577cfd8983", "media": "photo", "latitude": "0", "id": "4461475158", "tags": ""}, {"datetaken": "2010-03-14 15:51:58", "license": "5", "title": "Air New Zealand Koru Club - Auckland", "text": "", "album_id": "72157623687984190", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4461476084_0430f5a26e_o.jpg", "secret": "9f5a294c2c", "media": "photo", "latitude": "0", "id": "4461476084", "tags": ""}, {"datetaken": "2010-03-14 15:52:43", "license": "5", "title": "Air New Zealand Koru Club - Auckland", "text": "", "album_id": "72157623687984190", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2680/4461477176_25814da273_o.jpg", "secret": "05f97142d7", "media": "photo", "latitude": "0", "id": "4461477176", "tags": ""}, {"datetaken": "2010-03-14 19:01:02", "license": "5", "title": "Air New Zealand Koru Club - Auckland", "text": "", "album_id": "72157623687984190", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4460700939_1c1a8c050b_o.jpg", "secret": "fa1d9d39b8", "media": "photo", "latitude": "0", "id": "4460700939", "tags": ""}, {"datetaken": "2010-03-14 19:33:03", "license": "5", "title": "Air New Zealand Business Class - 767-300ER", "text": "", "album_id": "72157623687984190", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4461480266_5683e50b23_o.jpg", "secret": "e42d479d61", "media": "photo", "latitude": "0", "id": "4461480266", "tags": ""}, {"datetaken": "2010-03-14 19:36:55", "license": "5", "title": "Air New Zealand Business Class - 767-300ER", "text": "", "album_id": "72157623687984190", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2714/4461481442_03e5508526_o.jpg", "secret": "2c227f4a92", "media": "photo", "latitude": "0", "id": "4461481442", "tags": ""}, {"datetaken": "2010-01-10 19:06:44", "license": "2", "title": "HHS Lady Lions vs. Wiesbaden", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4303384296_0b6fd4dae7_o.jpg", "secret": "567eddab72", "media": "photo", "latitude": "0", "id": "4303384296", "tags": "basketball germany army europe military highschool heidelberg ladylions"}, {"datetaken": "2010-01-10 19:07:31", "license": "2", "title": "HHS Lady Lions vs. Wiesbaden", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4303387124_9ef1d56ea6_o.jpg", "secret": "0273e84a44", "media": "photo", "latitude": "0", "id": "4303387124", "tags": "basketball germany army europe military highschool heidelberg ladylions"}, {"datetaken": "2010-01-10 19:09:02", "license": "2", "title": "HHS Lady Lions vs. Wiesbaden", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4302640043_4fb72c71f8_o.jpg", "secret": "1d93266035", "media": "photo", "latitude": "0", "id": "4302640043", "tags": "basketball germany army europe military highschool heidelberg ladylions"}, {"datetaken": "2010-01-10 19:12:32", "license": "2", "title": "HHS Lady Lions vs. Wiesbaden", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4303393452_6d90341117_o.jpg", "secret": "565f23dd86", "media": "photo", "latitude": "0", "id": "4303393452", "tags": "basketball germany army europe military highschool heidelberg ladylions"}, {"datetaken": "2010-01-10 19:19:33", "license": "2", "title": "HHS Lady Lions vs. Wiesbaden", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4302648503_bf9ef0d317_o.jpg", "secret": "203ff1b3ba", "media": "photo", "latitude": "0", "id": "4302648503", "tags": "basketball germany army europe military highschool heidelberg ladylions"}, {"datetaken": "2010-01-10 19:27:48", "license": "2", "title": "HHS Lady Lions vs. Wiesbaden", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4303401498_329af0ac1a_o.jpg", "secret": "fa0fb903fc", "media": "photo", "latitude": "0", "id": "4303401498", "tags": "basketball germany army europe military highschool heidelberg ladylions"}, {"datetaken": "2010-01-10 19:30:44", "license": "2", "title": "HHS Lady Lions vs. Wiesbaden", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4303404362_3ac0ce9d88_o.jpg", "secret": "034a2efa14", "media": "photo", "latitude": "0", "id": "4303404362", "tags": "basketball germany army europe military highschool heidelberg ladylions"}, {"datetaken": "2010-01-10 19:43:36", "license": "2", "title": "HHS Lady Lions vs. Wiesbaden", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4302659145_b9a8d9f01c_o.jpg", "secret": "09efd52868", "media": "photo", "latitude": "0", "id": "4302659145", "tags": "basketball germany army europe military highschool heidelberg ladylions"}, {"datetaken": "2010-01-10 19:47:32", "license": "2", "title": "HHS Lady Lions vs. Wiesbaden", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2715/4303412080_80d2458187_o.jpg", "secret": "677cf26cf2", "media": "photo", "latitude": "0", "id": "4303412080", "tags": "basketball germany army europe military highschool heidelberg ladylions"}, {"datetaken": "2010-01-10 19:49:22", "license": "2", "title": "HHS Lady Lions vs. Wiesbaden", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4303414634_53d61bfe69_o.jpg", "secret": "b54e83f188", "media": "photo", "latitude": "0", "id": "4303414634", "tags": "basketball germany army europe military highschool heidelberg ladylions"}, {"datetaken": "2010-01-10 19:50:35", "license": "2", "title": "HHS Lady Lions vs. Wiesbaden", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2793/4303417480_fe7dc75a33_o.jpg", "secret": "af6c875e0f", "media": "photo", "latitude": "0", "id": "4303417480", "tags": "basketball germany army europe military highschool heidelberg ladylions"}, {"datetaken": "2010-01-10 19:55:55", "license": "2", "title": "HHS Lady Lions vs. Wiesbaden", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4303420306_902347031e_o.jpg", "secret": "5eb4e91d33", "media": "photo", "latitude": "0", "id": "4303420306", "tags": "basketball germany army europe military highschool heidelberg ladylions"}, {"datetaken": "2010-01-10 19:56:54", "license": "2", "title": "HHS Lady Lions vs. Wiesbaden", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2788/4303422764_b723630048_o.jpg", "secret": "b3f8161f3b", "media": "photo", "latitude": "0", "id": "4303422764", "tags": "basketball germany army europe military highschool heidelberg ladylions"}, {"datetaken": "2010-01-10 20:03:22", "license": "2", "title": "HHS Lady Lions vs. Wiesbaden", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2783/4303425808_d1eb3bd402_o.jpg", "secret": "e56e7823bf", "media": "photo", "latitude": "0", "id": "4303425808", "tags": "basketball germany army europe military highschool heidelberg ladylions"}, {"datetaken": "2010-01-10 20:05:15", "license": "2", "title": "HHS Lady Lions vs. Wiesbaden", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4302679589_2ac9cf36d7_o.jpg", "secret": "bd9706a691", "media": "photo", "latitude": "0", "id": "4302679589", "tags": "basketball germany army europe military highschool heidelberg ladylions"}, {"datetaken": "2010-01-11 20:20:11", "license": "2", "title": "HHS Lions vs. Mannheim", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4302586219_0bce0b5fee_o.jpg", "secret": "7819a8bdf6", "media": "photo", "latitude": "0", "id": "4302586219", "tags": "basketball germany army europe military highschool lions heidelberg"}, {"datetaken": "2010-01-11 20:29:15", "license": "2", "title": "HHS Lions vs. Mannheim", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4302590281_d51df94090_o.jpg", "secret": "06a1529d3d", "media": "photo", "latitude": "0", "id": "4302590281", "tags": "basketball germany army europe military highschool lions heidelberg"}, {"datetaken": "2010-01-11 20:29:36", "license": "2", "title": "HHS Lions vs. Mannheim", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4303346456_e95f0fdd20_o.jpg", "secret": "a03c446272", "media": "photo", "latitude": "0", "id": "4303346456", "tags": "basketball germany army europe military highschool lions heidelberg"}, {"datetaken": "2010-01-11 20:33:24", "license": "2", "title": "HHS Lions vs. Mannheim", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4302600147_5dd075d576_o.jpg", "secret": "c328b2ee51", "media": "photo", "latitude": "0", "id": "4302600147", "tags": "basketball germany army europe military highschool lions heidelberg"}, {"datetaken": "2010-01-11 20:34:17", "license": "2", "title": "HHS Lions vs. Mannheim", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2780/4303354354_0da895c3f0_o.jpg", "secret": "dda68afd65", "media": "photo", "latitude": "0", "id": "4303354354", "tags": "basketball germany army europe military highschool lions heidelberg"}, {"datetaken": "2010-01-11 20:35:30", "license": "2", "title": "HHS Lions vs. Mannheim", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4302608603_b9ba7b4229_o.jpg", "secret": "47439e8958", "media": "photo", "latitude": "0", "id": "4302608603", "tags": "basketball germany army europe military highschool lions heidelberg"}, {"datetaken": "2010-01-11 20:40:22", "license": "2", "title": "HHS Lions vs. Mannheim", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2716/4303361502_ae6b44f629_o.jpg", "secret": "8eb3b9de14", "media": "photo", "latitude": "0", "id": "4303361502", "tags": "basketball germany army europe military highschool lions heidelberg"}, {"datetaken": "2010-01-11 20:53:38", "license": "2", "title": "HHS Lions vs. Mannheim", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4302614801_44e0c34dff_o.jpg", "secret": "80e2504001", "media": "photo", "latitude": "0", "id": "4302614801", "tags": "basketball germany army europe military highschool lions heidelberg"}, {"datetaken": "2010-01-11 20:55:20", "license": "2", "title": "HHS Lions vs. Mannheim", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4303368420_5ac0b5899b_o.jpg", "secret": "f243d0be42", "media": "photo", "latitude": "0", "id": "4303368420", "tags": "basketball germany army europe military highschool lions heidelberg"}, {"datetaken": "2010-01-11 20:57:22", "license": "2", "title": "HHS Lions vs. Mannheim", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2727/4303371404_8df6104a21_o.jpg", "secret": "9f6aca3d7c", "media": "photo", "latitude": "0", "id": "4303371404", "tags": "basketball germany army europe military highschool lions heidelberg"}, {"datetaken": "2010-01-11 21:16:04", "license": "2", "title": "HHS Lions vs. Mannheim", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2736/4303374486_7dfede3b9b_o.jpg", "secret": "f57a67cb8a", "media": "photo", "latitude": "0", "id": "4303374486", "tags": "basketball germany army europe military highschool lions heidelberg"}, {"datetaken": "2010-01-11 21:18:09", "license": "2", "title": "HHS Lions vs. Mannheim", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2725/4302627607_fa8a72f86c_o.jpg", "secret": "0bb5b337e1", "media": "photo", "latitude": "0", "id": "4302627607", "tags": "basketball germany army europe military highschool lions heidelberg"}, {"datetaken": "2010-01-11 21:23:28", "license": "2", "title": "HHS Lions vs. Mannheim", "text": "", "album_id": "72157623279962310", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4303381038_20f22aa929_o.jpg", "secret": "332591e8a9", "media": "photo", "latitude": "0", "id": "4303381038", "tags": "basketball germany army europe military highschool lions heidelberg"}, {"datetaken": "2010-02-25 17:52:17", "license": "4", "title": "lafayette-st-dusk", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4394070262_4ecb4700fc_o.jpg", "secret": "753bdeb2c8", "media": "photo", "latitude": "0", "id": "4394070262", "tags": "newyork"}, {"datetaken": "2010-02-25 17:53:31", "license": "4", "title": "lafayette-st-dusk-2", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4394070548_e8718b41c9_o.jpg", "secret": "61d01fcf01", "media": "photo", "latitude": "0", "id": "4394070548", "tags": "newyork"}, {"datetaken": "2010-02-26 09:20:27", "license": "4", "title": "my-backyard-in-the-snow", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4390743107_491abfbbe0_o.jpg", "secret": "9028ec63f6", "media": "photo", "latitude": "0", "id": "4390743107", "tags": "snow newyork"}, {"datetaken": "2010-02-26 09:35:39", "license": "4", "title": "2nd-ave-in-the-snow", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4390743335_4795807c05_o.jpg", "secret": "0c00633b10", "media": "photo", "latitude": "0", "id": "4390743335", "tags": "snow newyork"}, {"datetaken": "2010-02-26 09:36:32", "license": "4", "title": "5th-st-in-the-snow-2", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4391511658_a4da37be05_o.jpg", "secret": "95a8f91888", "media": "photo", "latitude": "0", "id": "4391511658", "tags": "snow newyork"}, {"datetaken": "2010-02-26 09:37:26", "license": "4", "title": "5th-st-in-the-snow", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4391511966_d5cdc633c1_o.jpg", "secret": "ed0f8e7966", "media": "photo", "latitude": "0", "id": "4391511966", "tags": "snow newyork"}, {"datetaken": "2010-02-26 09:38:58", "license": "4", "title": "snow-on-fire-escape", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4391512258_b1606231fc_o.jpg", "secret": "e9021d1430", "media": "photo", "latitude": "0", "id": "4391512258", "tags": "snow newyork"}, {"datetaken": "2010-02-26 09:41:37", "license": "4", "title": "bower-in-the-snow", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4391512502_4dc3949147_o.jpg", "secret": "615f637ef4", "media": "photo", "latitude": "0", "id": "4391512502", "tags": "snow newyork"}, {"datetaken": "2010-02-26 09:42:27", "license": "4", "title": "shoveling-snow", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4391525282_b749f1dd8c_o.jpg", "secret": "82e278a0de", "media": "photo", "latitude": "0", "id": "4391525282", "tags": "snow newyork"}, {"datetaken": "2010-02-26 09:44:07", "license": "4", "title": "astor-place-in-the-snow", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4390744913_36e3bc9f6b_o.jpg", "secret": "07d0dbd427", "media": "photo", "latitude": "0", "id": "4390744913", "tags": "snow newyork"}, {"datetaken": "2010-02-26 09:46:40", "license": "4", "title": "lafayette-st-in-the-snow", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/4391524182_aeb9772cd1_o.jpg", "secret": "70dc3a9edd", "media": "photo", "latitude": "0", "id": "4391524182", "tags": "snow newyork"}, {"datetaken": "2010-02-26 09:55:28", "license": "4", "title": "cleanup-crew-by-brooklyn-bridge", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4391524362_3c179f5916_o.jpg", "secret": "0f11faac9a", "media": "photo", "latitude": "0", "id": "4391524362", "tags": "snow newyork"}, {"datetaken": "2010-02-26 09:57:26", "license": "4", "title": "city-hall-in-the-snow", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4391513630_43cc4a1922_o.jpg", "secret": "f74595d4dd", "media": "photo", "latitude": "0", "id": "4391513630", "tags": "snow newyork"}, {"datetaken": "2010-02-26 10:16:48", "license": "4", "title": "fresh-snow", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4391513828_fd97e3f1ab_o.jpg", "secret": "c70e6bd334", "media": "photo", "latitude": "0", "id": "4391513828", "tags": "snow newyork"}, {"datetaken": "2010-02-26 19:06:15", "license": "4", "title": "snowy-spring-st-at-night", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4391514072_be5c4d9ee8_o.jpg", "secret": "6a82aa2c89", "media": "photo", "latitude": "0", "id": "4391514072", "tags": "snow newyork"}, {"datetaken": "2010-02-26 19:07:50", "license": "4", "title": "snowy-spring-st-at-night-2", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4390746433_42e15f411b_o.jpg", "secret": "4ddbebd373", "media": "photo", "latitude": "0", "id": "4390746433", "tags": "snow newyork"}, {"datetaken": "2010-02-26 19:15:02", "license": "4", "title": "snowy-elizabeth-st-at-night", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4390746735_2ca0f084f2_o.jpg", "secret": "5c86d0a113", "media": "photo", "latitude": "0", "id": "4390746735", "tags": "snow newyork"}, {"datetaken": "2010-02-26 19:19:13", "license": "4", "title": "snowy-bowery-at-night-3", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2734/4391514842_2b743c16bb_o.jpg", "secret": "6b672996e1", "media": "photo", "latitude": "0", "id": "4391514842", "tags": "snow newyork"}, {"datetaken": "2010-02-26 19:19:26", "license": "4", "title": "snowy-bowery-at-night-2", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4391515072_3b74f2e116_o.jpg", "secret": "1df8d7eaed", "media": "photo", "latitude": "0", "id": "4391515072", "tags": "snow newyork"}, {"datetaken": "2010-02-26 19:20:43", "license": "4", "title": "snowy-bowery-at-night", "text": "", "album_id": "72157623517255524", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4390747487_43e9de596b_o.jpg", "secret": "caff02b2f3", "media": "photo", "latitude": "0", "id": "4390747487", "tags": "snow newyork"}, {"datetaken": "2007-01-27 16:33:03", "license": "3", "title": "Fuji 10th Anniversary Edition", "text": "", "album_id": "72157594503266848", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/371228552_00f9811c0f_o.jpg", "secret": "00f9811c0f", "media": "photo", "latitude": "0", "id": "371228552", "tags": "bike bicycle fuji commuter"}, {"datetaken": "2007-01-27 16:33:20", "license": "3", "title": "Fuji", "text": "", "album_id": "72157594503266848", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/371229699_f585a1f839_o.jpg", "secret": "f585a1f839", "media": "photo", "latitude": "0", "id": "371229699", "tags": "bike bicycle fuji commuter"}, {"datetaken": "2007-01-27 16:33:43", "license": "3", "title": "Fuji", "text": "", "album_id": "72157594503266848", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/371230853_3de52285b1_o.jpg", "secret": "3de52285b1", "media": "photo", "latitude": "0", "id": "371230853", "tags": "bike bicycle fuji commuter"}, {"datetaken": "2007-01-27 16:34:18", "license": "3", "title": "Fuji", "text": "", "album_id": "72157594503266848", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/371231968_7b62ddaed4_o.jpg", "secret": "7b62ddaed4", "media": "photo", "latitude": "0", "id": "371231968", "tags": "bike bicycle fuji commuter"}, {"datetaken": "2007-01-27 16:35:00", "license": "3", "title": "10th Anniversary Edition", "text": "", "album_id": "72157594503266848", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/371232760_92f380a155_o.jpg", "secret": "92f380a155", "media": "photo", "latitude": "0", "id": "371232760", "tags": "bike bicycle fuji commuter 12thanniversaryedition"}, {"datetaken": "2007-01-27 16:35:08", "license": "3", "title": "Downtube Detail", "text": "", "album_id": "72157594503266848", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/371234093_fac3c21cac_o.jpg", "secret": "fac3c21cac", "media": "photo", "latitude": "0", "id": "371234093", "tags": "bike bicycle fuji commuter"}, {"datetaken": "2007-01-27 16:35:15", "license": "3", "title": "Double Butted Chrome Molyboenum Steel Tubing 331", "text": "", "album_id": "72157594503266848", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/371235412_b372c9cfef_o.jpg", "secret": "b372c9cfef", "media": "photo", "latitude": "0", "id": "371235412", "tags": "bike bicycle fuji commuter"}, {"datetaken": "2007-01-27 16:35:29", "license": "3", "title": "Down Tube Decal", "text": "", "album_id": "72157594503266848", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/371236008_40b97f39de_o.jpg", "secret": "40b97f39de", "media": "photo", "latitude": "0", "id": "371236008", "tags": "bike bicycle fuji commuter decal"}, {"datetaken": "2007-01-27 16:36:00", "license": "3", "title": "Belt Saddle", "text": "", "album_id": "72157594503266848", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/371237253_53ffc9008d_o.jpg", "secret": "53ffc9008d", "media": "photo", "latitude": "0", "id": "371237253", "tags": "leather bike bicycle belt fuji commuter saddle brooks knockoff beltsaddle"}, {"datetaken": "2007-01-27 16:36:07", "license": "3", "title": "Belt Saddle Detail", "text": "", "album_id": "72157594503266848", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/371237848_30d03a2e33_o.jpg", "secret": "30d03a2e33", "media": "photo", "latitude": "0", "id": "371237848", "tags": "bike bicycle tokyo belt fuji commuter saddle beltsaddle"}, {"datetaken": "2007-01-27 16:36:25", "license": "3", "title": "Fuji", "text": "", "album_id": "72157594503266848", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/371239318_07e1a81515_o.jpg", "secret": "07e1a81515", "media": "photo", "latitude": "0", "id": "371239318", "tags": "bike bicycle fuji rack commuter saddle"}, {"datetaken": "2007-01-27 16:36:33", "license": "3", "title": "Fuji", "text": "", "album_id": "72157594503266848", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/371240887_f6f1eecabc_o.jpg", "secret": "f6f1eecabc", "media": "photo", "latitude": "0", "id": "371240887", "tags": "bike bicycle wheel fuji tire fender rack commuter saddle tyre reflector"}, {"datetaken": "2007-01-27 16:36:53", "license": "3", "title": "Shimano 600 Rear Derailleur", "text": "", "album_id": "72157594503266848", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/371242254_4426adb138_o.jpg", "secret": "4426adb138", "media": "photo", "latitude": "0", "id": "371242254", "tags": "bike bicycle fuji commuter shimano shimano600 derailler rearderailleur"}, {"datetaken": "2007-01-27 16:37:01", "license": "3", "title": "Shimano 600 Rear Derailleur", "text": "", "album_id": "72157594503266848", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/371243758_87dd9bdb4e_o.jpg", "secret": "87dd9bdb4e", "media": "photo", "latitude": "0", "id": "371243758", "tags": "bike bicycle fuji commuter shimano shimano600 derailler rearderailleur"}, {"datetaken": "2007-01-27 16:37:30", "license": "3", "title": "SunTour Dropouts", "text": "", "album_id": "72157594503266848", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/371245006_0a9345ea19_o.jpg", "secret": "0a9345ea19", "media": "photo", "latitude": "0", "id": "371245006", "tags": "bike bicycle fuji chain commuter cassette suntour dropout sram"}, {"datetaken": "2010-01-21 16:48:53", "license": "2", "title": "Lions vs. Patch", "text": "", "album_id": "72157623294550334", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4309072438_c8f12576d6_o.jpg", "secret": "baefc72635", "media": "photo", "latitude": "0", "id": "4309072438", "tags": "basketball germany army europe military highschool heidelberg doddse"}, {"datetaken": "2010-01-21 16:49:54", "license": "2", "title": "Lions vs. Patch", "text": "", "album_id": "72157623294550334", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4309073668_50dbac6de0_o.jpg", "secret": "b8bc51f366", "media": "photo", "latitude": "0", "id": "4309073668", "tags": "basketball germany army europe military highschool heidelberg doddse"}, {"datetaken": "2010-01-21 16:50:37", "license": "2", "title": "Lions vs. Patch", "text": "", "album_id": "72157623294550334", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4308336755_8912d16382_o.jpg", "secret": "f1c13682aa", "media": "photo", "latitude": "0", "id": "4308336755", "tags": "basketball germany army europe military highschool heidelberg doddse"}, {"datetaken": "2010-01-21 17:00:41", "license": "2", "title": "Lions vs. Patch", "text": "", "album_id": "72157623294550334", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4309076642_1d6341ac7a_o.jpg", "secret": "ab6b72f5d4", "media": "photo", "latitude": "0", "id": "4309076642", "tags": "basketball germany army europe military highschool heidelberg doddse"}, {"datetaken": "2010-01-21 17:01:13", "license": "2", "title": "Lions vs. Patch", "text": "", "album_id": "72157623294550334", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4308339563_cc9b55856d_o.jpg", "secret": "1e743f72a2", "media": "photo", "latitude": "0", "id": "4308339563", "tags": "basketball germany army europe military highschool heidelberg doddse"}, {"datetaken": "2010-01-21 17:01:14", "license": "2", "title": "Lions vs. Patch", "text": "", "album_id": "72157623294550334", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4308340593_b1fe14d4c3_o.jpg", "secret": "30061c15bd", "media": "photo", "latitude": "0", "id": "4308340593", "tags": "basketball germany army europe military highschool heidelberg doddse"}, {"datetaken": "2010-01-21 17:02:04", "license": "2", "title": "Lions vs. Patch", "text": "", "album_id": "72157623294550334", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4308341927_0726fd3de5_o.jpg", "secret": "92c576cac2", "media": "photo", "latitude": "0", "id": "4308341927", "tags": "basketball germany army europe military highschool heidelberg doddse"}, {"datetaken": "2010-01-21 17:08:28", "license": "2", "title": "Lions vs. Patch", "text": "", "album_id": "72157623294550334", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4308343275_a7ba676aa7_o.jpg", "secret": "838c812a08", "media": "photo", "latitude": "0", "id": "4308343275", "tags": "basketball germany army europe military highschool heidelberg doddse"}, {"datetaken": "2010-01-21 17:10:39", "license": "2", "title": "Lions vs. Patch", "text": "", "album_id": "72157623294550334", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4308344697_bb0d830327_o.jpg", "secret": "72407b6bba", "media": "photo", "latitude": "0", "id": "4308344697", "tags": "basketball germany army europe military highschool heidelberg doddse"}, {"datetaken": "2010-01-21 17:13:09", "license": "2", "title": "Lions vs. Patch", "text": "", "album_id": "72157623294550334", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4309084606_02e76b2e60_o.jpg", "secret": "1162a6e3a7", "media": "photo", "latitude": "0", "id": "4309084606", "tags": "basketball germany army europe military highschool heidelberg doddse"}, {"datetaken": "2010-01-21 17:33:30", "license": "2", "title": "Lions vs. Patch", "text": "", "album_id": "72157623294550334", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4309085582_ee53bed431_o.jpg", "secret": "c22ee706a1", "media": "photo", "latitude": "0", "id": "4309085582", "tags": "basketball germany army europe military highschool heidelberg doddse"}, {"datetaken": "2010-03-24 03:03:05", "license": "1", "title": "DSCF1788", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2574/4469774750_b8b2fd0504_o.jpg", "secret": "fd4ef70a3a", "media": "photo", "latitude": "0", "id": "4469774750", "tags": ""}, {"datetaken": "2010-03-24 03:03:43", "license": "1", "title": "DSCF1789", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4469775010_d61aa985d9_o.jpg", "secret": "aba34f71a6", "media": "photo", "latitude": "0", "id": "4469775010", "tags": ""}, {"datetaken": "2010-03-24 03:05:40", "license": "1", "title": "DSCF1790", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2760/4468995791_f0e11b8c88_o.jpg", "secret": "670e923d16", "media": "photo", "latitude": "0", "id": "4468995791", "tags": ""}, {"datetaken": "2010-03-24 03:07:05", "license": "1", "title": "DSCF1792", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4468995985_f2919563c5_o.jpg", "secret": "fe60e20612", "media": "photo", "latitude": "0", "id": "4468995985", "tags": ""}, {"datetaken": "2010-03-24 03:07:57", "license": "1", "title": "DSCF1793", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4468996307_9e33f9d8ee_o.jpg", "secret": "1e6d0e99cd", "media": "photo", "latitude": "0", "id": "4468996307", "tags": ""}, {"datetaken": "2010-03-24 05:12:56", "license": "1", "title": "DSCF1794", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4468996637_3552afe2f8_o.jpg", "secret": "8837234c78", "media": "photo", "latitude": "0", "id": "4468996637", "tags": ""}, {"datetaken": "2010-03-24 05:13:13", "license": "1", "title": "DSCF1796", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4469776402_38dec0e8bc_o.jpg", "secret": "9969b8ab15", "media": "photo", "latitude": "0", "id": "4469776402", "tags": ""}, {"datetaken": "2010-03-24 05:18:59", "license": "1", "title": "DSCF1799", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4469776766_8458b89dfc_o.jpg", "secret": "57ea2738dd", "media": "photo", "latitude": "0", "id": "4469776766", "tags": ""}, {"datetaken": "2010-03-24 05:19:20", "license": "1", "title": "DSCF1800", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4469777042_059c1a1742_o.jpg", "secret": "a33a5154c1", "media": "photo", "latitude": "0", "id": "4469777042", "tags": ""}, {"datetaken": "2010-03-24 05:21:08", "license": "1", "title": "DSCF1802", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2701/4469777322_4a0d8b3f0f_o.jpg", "secret": "be94946300", "media": "photo", "latitude": "0", "id": "4469777322", "tags": ""}, {"datetaken": "2010-03-24 05:21:48", "license": "1", "title": "DSCF1803", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4469777634_28cc230b8e_o.jpg", "secret": "4f530e9ee4", "media": "photo", "latitude": "0", "id": "4469777634", "tags": ""}, {"datetaken": "2010-03-24 08:41:35", "license": "1", "title": "DSCF1807", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4469777940_02dfd54101_o.jpg", "secret": "397da68a7d", "media": "photo", "latitude": "0", "id": "4469777940", "tags": ""}, {"datetaken": "2010-03-25 03:08:25", "license": "1", "title": "DSCF1808", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4468998829_302852907e_o.jpg", "secret": "a480fe1f8f", "media": "photo", "latitude": "0", "id": "4468998829", "tags": ""}, {"datetaken": "2010-03-25 03:08:53", "license": "1", "title": "DSCF1809", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4469778542_16c732abfd_o.jpg", "secret": "eafa95c83e", "media": "photo", "latitude": "0", "id": "4469778542", "tags": ""}, {"datetaken": "2010-03-25 03:09:08", "license": "1", "title": "DSCF1810", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4469778810_fa4ccf06ed_o.jpg", "secret": "3bc1fe5dc3", "media": "photo", "latitude": "0", "id": "4469778810", "tags": ""}, {"datetaken": "2010-03-25 03:09:25", "license": "1", "title": "DSCF1811", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2709/4468999647_545359a248_o.jpg", "secret": "eefc34ff67", "media": "photo", "latitude": "0", "id": "4468999647", "tags": ""}, {"datetaken": "2010-03-25 03:10:13", "license": "1", "title": "DSCF1813", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4469779378_d521afb9a7_o.jpg", "secret": "2c4684b83e", "media": "photo", "latitude": "0", "id": "4469779378", "tags": ""}, {"datetaken": "2010-03-25 03:10:42", "license": "1", "title": "DSCF1814", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4469000161_f9495a5f7b_o.jpg", "secret": "d6112be741", "media": "photo", "latitude": "0", "id": "4469000161", "tags": ""}, {"datetaken": "2010-03-25 04:59:54", "license": "1", "title": "DSCF1816", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4469000405_f7309cd516_o.jpg", "secret": "65fddd4565", "media": "photo", "latitude": "0", "id": "4469000405", "tags": ""}, {"datetaken": "2010-03-25 05:47:41", "license": "1", "title": "DSCF1828", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2789/4469000685_218a3dedcb_o.jpg", "secret": "e44a7011f2", "media": "photo", "latitude": "0", "id": "4469000685", "tags": ""}, {"datetaken": "2010-03-25 05:54:37", "license": "1", "title": "DSCF1838", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4469000939_53f9cd315d_o.jpg", "secret": "e2a0577f86", "media": "photo", "latitude": "0", "id": "4469000939", "tags": ""}, {"datetaken": "2010-03-25 07:20:10", "license": "1", "title": "DSCF1843", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2686/4469035491_17a46fb164_o.jpg", "secret": "37f827f0bf", "media": "photo", "latitude": "0", "id": "4469035491", "tags": ""}, {"datetaken": "2010-03-25 07:21:11", "license": "1", "title": "DSCF1846", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4469814920_56072e1240_o.jpg", "secret": "d640446e3e", "media": "photo", "latitude": "0", "id": "4469814920", "tags": ""}, {"datetaken": "2010-03-25 07:53:28", "license": "1", "title": "DSCF1851", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4469815190_e93a0f2cf5_o.jpg", "secret": "1df117d88f", "media": "photo", "latitude": "0", "id": "4469815190", "tags": ""}, {"datetaken": "2010-03-25 07:56:35", "license": "1", "title": "DSCF1855", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4469036235_1a15f20a04_o.jpg", "secret": "cdd59f2b85", "media": "photo", "latitude": "0", "id": "4469036235", "tags": ""}, {"datetaken": "2010-03-25 08:21:44", "license": "1", "title": "DSCF1858", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4469036523_1c6f557eec_o.jpg", "secret": "e9e2c80f02", "media": "photo", "latitude": "0", "id": "4469036523", "tags": ""}, {"datetaken": "2010-03-25 10:10:55", "license": "1", "title": "DSCF1860", "text": "", "album_id": "72157623718997598", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4469036723_d207f42437_o.jpg", "secret": "cc90e83633", "media": "photo", "latitude": "0", "id": "4469036723", "tags": ""}, {"datetaken": "2010-03-19 22:31:44", "license": "3", "title": "GA Representative Tom Price's Office", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4471349962_d581c7579b_o.jpg", "secret": "cc1ec83ec7", "media": "photo", "latitude": "0", "id": "4471349962", "tags": "dc washington"}, {"datetaken": "2010-03-19 22:39:50", "license": "3", "title": "Cannon Building", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4470572183_cc09fd4cd3_o.jpg", "secret": "12bf54c1db", "media": "photo", "latitude": "0", "id": "4470572183", "tags": "dc washington"}, {"datetaken": "2010-03-19 22:45:52", "license": "3", "title": "US Capitol", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2741/4471350676_e650d5e483_o.jpg", "secret": "f551cdbc1e", "media": "photo", "latitude": "0", "id": "4471350676", "tags": "dc washington"}, {"datetaken": "2010-03-19 22:50:26", "license": "3", "title": "US Capitol", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4471350992_06e0d7296c_o.jpg", "secret": "4b8076c3b4", "media": "photo", "latitude": "0", "id": "4471350992", "tags": "dc washington"}, {"datetaken": "2010-03-19 22:58:47", "license": "3", "title": "US Capitol", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4470573161_c3d1828c09_o.jpg", "secret": "b7145c5b72", "media": "photo", "latitude": "0", "id": "4470573161", "tags": "dc washington"}, {"datetaken": "2010-03-19 23:00:57", "license": "3", "title": "Tea Party 3/20/10", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4470563877_82ba16961a_o.jpg", "secret": "e95b6a7be6", "media": "photo", "latitude": "0", "id": "4470563877", "tags": "dc washington"}, {"datetaken": "2010-03-19 23:14:50", "license": "3", "title": "Tea Party 3/20/10", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2685/4470564235_7f4149f872_o.jpg", "secret": "002f435d82", "media": "photo", "latitude": "0", "id": "4470564235", "tags": "dc washington"}, {"datetaken": "2010-03-19 23:15:52", "license": "3", "title": "Tea Party 3/20/10", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4470564759_dd04be4808_o.jpg", "secret": "9ed15470a5", "media": "photo", "latitude": "0", "id": "4470564759", "tags": "dc washington"}, {"datetaken": "2010-03-19 23:16:36", "license": "3", "title": "Tea Party 3/20/10", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4471343500_502343b276_o.jpg", "secret": "3f49fa4d34", "media": "photo", "latitude": "0", "id": "4471343500", "tags": "dc washington"}, {"datetaken": "2010-03-19 23:16:54", "license": "3", "title": "Tea Party 3/20/10", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4470565705_e33fc39408_o.jpg", "secret": "27737a2177", "media": "photo", "latitude": "0", "id": "4470565705", "tags": "dc washington"}, {"datetaken": "2010-03-19 23:17:15", "license": "3", "title": "Tea Party 3/20/10", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4470566033_f4dd2397ba_o.jpg", "secret": "74baf92fa4", "media": "photo", "latitude": "0", "id": "4470566033", "tags": "dc washington"}, {"datetaken": "2010-03-19 23:30:27", "license": "3", "title": "Tea Party 3/20/10", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4470566319_9e02071913_o.jpg", "secret": "d131780159", "media": "photo", "latitude": "0", "id": "4470566319", "tags": "dc washington"}, {"datetaken": "2010-03-19 23:35:38", "license": "3", "title": "Tea Party 3/20/10", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4470566731_ea9f29c2bc_o.jpg", "secret": "6087066b31", "media": "photo", "latitude": "0", "id": "4470566731", "tags": "dc washington"}, {"datetaken": "2010-03-19 23:39:23", "license": "3", "title": "Tea Party 3/20/10", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2727/4470567199_9dfa4f55c4_o.jpg", "secret": "0d14a4ec4a", "media": "photo", "latitude": "0", "id": "4470567199", "tags": "dc washington"}, {"datetaken": "2010-03-19 23:44:46", "license": "3", "title": "Tea Party 3/20/10", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2469/4471345788_cc1924767d_o.jpg", "secret": "c831deb2b4", "media": "photo", "latitude": "0", "id": "4471345788", "tags": "dc washington"}, {"datetaken": "2010-03-19 23:47:16", "license": "3", "title": "Tea Party 3/20/10", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4471346230_29fdf3147f_o.jpg", "secret": "eb85e0114e", "media": "photo", "latitude": "0", "id": "4471346230", "tags": "dc washington"}, {"datetaken": "2010-03-20 00:04:25", "license": "3", "title": "Tea Party 3/20/10", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4470568437_4aa6e75720_o.jpg", "secret": "94664b4208", "media": "photo", "latitude": "0", "id": "4470568437", "tags": "dc washington"}, {"datetaken": "2010-03-20 00:39:39", "license": "3", "title": "Tea Party 3/20/10", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4471347306_afd7d05e45_o.jpg", "secret": "5aed2478d7", "media": "photo", "latitude": "0", "id": "4471347306", "tags": "dc washington"}, {"datetaken": "2010-03-20 02:20:02", "license": "3", "title": "White House", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4470569339_fba07f2665_o.jpg", "secret": "06c438f047", "media": "photo", "latitude": "0", "id": "4470569339", "tags": "dc washington"}, {"datetaken": "2010-03-20 02:24:54", "license": "3", "title": "Security", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4470569717_13c2f89bdc_o.jpg", "secret": "f1f043bb88", "media": "photo", "latitude": "0", "id": "4470569717", "tags": "dc washington"}, {"datetaken": "2010-03-20 02:30:42", "license": "3", "title": "US Treasury", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4471348118_d2c8f463c4_o.jpg", "secret": "f27930511a", "media": "photo", "latitude": "0", "id": "4471348118", "tags": "dc washington"}, {"datetaken": "2010-03-20 02:31:47", "license": "3", "title": "US Treasury", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4471348352_5c885652e6_o.jpg", "secret": "438e7bfdea", "media": "photo", "latitude": "0", "id": "4471348352", "tags": "dc washington"}, {"datetaken": "2010-03-20 02:53:21", "license": "3", "title": "Washington Monument", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4471348552_b87c5216e1_o.jpg", "secret": "551028373b", "media": "photo", "latitude": "0", "id": "4471348552", "tags": "dc washington"}, {"datetaken": "2010-03-20 03:07:34", "license": "3", "title": "White House", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4470570661_52b4056a25_o.jpg", "secret": "61a02296e5", "media": "photo", "latitude": "0", "id": "4470570661", "tags": "dc washington"}, {"datetaken": "2010-03-20 04:22:07", "license": "3", "title": "Baltimore", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4470570761_77fdb5f55b_o.jpg", "secret": "a021c739db", "media": "photo", "latitude": "0", "id": "4470570761", "tags": "baltimore"}, {"datetaken": "2010-03-20 21:24:29", "license": "3", "title": "Baltimore", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2762/4470570897_93834ffc36_o.jpg", "secret": "93bbda0ec9", "media": "photo", "latitude": "0", "id": "4470570897", "tags": "washington dcbaltimore"}, {"datetaken": "2010-03-20 21:25:02", "license": "3", "title": "Baltimore", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4471349144_d8a30c8be7_o.jpg", "secret": "597520b70c", "media": "photo", "latitude": "0", "id": "4471349144", "tags": "baltimore"}, {"datetaken": "2010-03-20 21:35:27", "license": "3", "title": "Baltimore Ravens", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4470571225_4a72314030_o.jpg", "secret": "d233c47a16", "media": "photo", "latitude": "0", "id": "4470571225", "tags": "baltimore"}, {"datetaken": "2010-03-20 22:23:28", "license": "3", "title": "University of Maryland", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2680/4471349526_6829df4722_o.jpg", "secret": "528b37819d", "media": "photo", "latitude": "0", "id": "4471349526", "tags": "university maryland"}, {"datetaken": "2010-03-21 02:51:15", "license": "3", "title": "Big Gas Sign In Nashville, NC", "text": "", "album_id": "72157623722453984", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4470571717_da5684e9dc_o.jpg", "secret": "805844eaba", "media": "photo", "latitude": "0", "id": "4470571717", "tags": ""}, {"datetaken": "2010-01-28 19:59:20", "license": "1", "title": "Inauguraci\u00f3n CERI", "text": "", "album_id": "72157623308603824", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4314521168_a9d4d09dfd_o.jpg", "secret": "894c389880", "media": "photo", "latitude": "0", "id": "4314521168", "tags": "seguridad ceri ayuntamiento culiacan ayuntamientoculiacan"}, {"datetaken": "2010-01-28 20:00:05", "license": "1", "title": "Inauguraci\u00f3n CERI", "text": "", "album_id": "72157623308603824", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2777/4313786099_a72c956926_o.jpg", "secret": "6ed938fcd8", "media": "photo", "latitude": "0", "id": "4313786099", "tags": "seguridad ceri ayuntamiento culiacan ayuntamientoculiacan"}, {"datetaken": "2010-01-28 20:01:03", "license": "1", "title": "Inauguraci\u00f3n CERI", "text": "", "album_id": "72157623308603824", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4314523222_0796a1cc9b_o.jpg", "secret": "2e093291e2", "media": "photo", "latitude": "0", "id": "4314523222", "tags": "seguridad ceri ayuntamiento culiacan ayuntamientoculiacan"}, {"datetaken": "2010-01-28 20:02:05", "license": "1", "title": "Inauguraci\u00f3n CERI", "text": "", "album_id": "72157623308603824", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4314524590_59ef879d16_o.jpg", "secret": "1509474f4e", "media": "photo", "latitude": "0", "id": "4314524590", "tags": "seguridad ceri ayuntamiento culiacan ayuntamientoculiacan"}, {"datetaken": "2010-01-28 20:02:55", "license": "1", "title": "Inauguraci\u00f3n CERI", "text": "", "album_id": "72157623308603824", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4314525696_6eba52849b_o.jpg", "secret": "e5b89c7c7a", "media": "photo", "latitude": "0", "id": "4314525696", "tags": "seguridad ceri ayuntamiento culiacan ayuntamientoculiacan"}, {"datetaken": "2010-01-28 20:03:23", "license": "1", "title": "Inauguraci\u00f3n CERI", "text": "", "album_id": "72157623308603824", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2694/4314526770_60b34cea14_o.jpg", "secret": "b63c13f130", "media": "photo", "latitude": "0", "id": "4314526770", "tags": "seguridad ceri ayuntamiento culiacan ayuntamientoculiacan"}, {"datetaken": "2010-01-28 20:03:54", "license": "1", "title": "Inauguraci\u00f3n CERI", "text": "", "album_id": "72157623308603824", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2788/4313791695_81a03fc1c9_o.jpg", "secret": "2ebddc55ce", "media": "photo", "latitude": "0", "id": "4313791695", "tags": "seguridad ceri ayuntamiento culiacan ayuntamientoculiacan"}, {"datetaken": "2010-01-28 20:10:43", "license": "1", "title": "Inauguraci\u00f3n CERI", "text": "", "album_id": "72157623308603824", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4313793131_56b01a2505_o.jpg", "secret": "ddc7d3dd85", "media": "photo", "latitude": "0", "id": "4313793131", "tags": "seguridad ceri ayuntamiento culiacan ayuntamientoculiacan"}, {"datetaken": "2010-01-28 20:12:12", "license": "1", "title": "Inauguraci\u00f3n CERI", "text": "", "album_id": "72157623308603824", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4313794033_98cc082d58_o.jpg", "secret": "0caa430c85", "media": "photo", "latitude": "0", "id": "4313794033", "tags": "seguridad ceri ayuntamiento culiacan ayuntamientoculiacan"}, {"datetaken": "2010-01-28 20:14:08", "license": "1", "title": "Inauguraci\u00f3n CERI", "text": "", "album_id": "72157623308603824", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4313795117_e658234497_o.jpg", "secret": "264541cf61", "media": "photo", "latitude": "0", "id": "4313795117", "tags": "seguridad ceri ayuntamiento culiacan ayuntamientoculiacan"}, {"datetaken": "2010-01-28 20:14:29", "license": "1", "title": "Inauguraci\u00f3n CERI", "text": "", "album_id": "72157623308603824", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4313796261_15fa492a32_o.jpg", "secret": "2ee7629a24", "media": "photo", "latitude": "0", "id": "4313796261", "tags": "seguridad ceri ayuntamiento culiacan ayuntamientoculiacan"}, {"datetaken": "2010-01-28 21:37:05", "license": "1", "title": "Inauguraci\u00f3n CERI", "text": "", "album_id": "72157623308603824", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2511/4313797915_f6aee7d544_o.jpg", "secret": "1c0df4fd53", "media": "photo", "latitude": "0", "id": "4313797915", "tags": "seguridad ceri ayuntamiento culiacan ayuntamientoculiacan"}, {"datetaken": "2010-01-28 21:40:11", "license": "1", "title": "Inauguraci\u00f3n CERI", "text": "", "album_id": "72157623308603824", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4314534554_1de619e8e1_o.jpg", "secret": "c3d582bb30", "media": "photo", "latitude": "0", "id": "4314534554", "tags": "seguridad ceri ayuntamiento culiacan ayuntamientoculiacan"}, {"datetaken": "2010-01-28 21:49:07", "license": "1", "title": "Inauguraci\u00f3n CERI", "text": "", "album_id": "72157623308603824", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4313801155_b1dbcb02c0_o.jpg", "secret": "7385e03925", "media": "photo", "latitude": "0", "id": "4313801155", "tags": "seguridad ceri ayuntamiento culiacan ayuntamientoculiacan"}, {"datetaken": "2010-01-28 21:49:42", "license": "1", "title": "Inauguraci\u00f3n CERI", "text": "", "album_id": "72157623308603824", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4314539596_d10f676feb_o.jpg", "secret": "a008142672", "media": "photo", "latitude": "0", "id": "4314539596", "tags": "seguridad ceri ayuntamiento culiacan ayuntamientoculiacan"}, {"datetaken": "2010-01-28 21:59:34", "license": "1", "title": "Inauguraci\u00f3n CERI", "text": "", "album_id": "72157623308603824", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4313804767_698d455b39_o.jpg", "secret": "0a4d4aea50", "media": "photo", "latitude": "0", "id": "4313804767", "tags": "seguridad ceri ayuntamiento culiacan ayuntamientoculiacan"}, {"datetaken": "2006-01-01 00:06:52", "license": "1", "title": "Taller sobre pol\u00edticas nacionales de negociaci\u00f3n de bonos de carbono", "text": "", "album_id": "72157623735481090", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4476163569_9f2259dbee_o.jpg", "secret": "1162e54e99", "media": "photo", "latitude": "0", "id": "4476163569", "tags": "particular universidad loja ambiente ministerio tecnica utpl wwwutpleduec"}, {"datetaken": "2006-01-01 00:07:49", "license": "1", "title": "Taller sobre pol\u00edticas nacionales de negociaci\u00f3n de bonos de carbono", "text": "", "album_id": "72157623735481090", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4476163905_1b0047953f_o.jpg", "secret": "b08508a371", "media": "photo", "latitude": "0", "id": "4476163905", "tags": "particular universidad loja ambiente ministerio tecnica utpl wwwutpleduec"}, {"datetaken": "2006-01-01 00:08:01", "license": "1", "title": "Taller sobre pol\u00edticas nacionales de negociaci\u00f3n de bonos de carbono", "text": "", "album_id": "72157623735481090", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4476163725_199d6b2ea1_o.jpg", "secret": "ab9cf20cef", "media": "photo", "latitude": "0", "id": "4476163725", "tags": "particular universidad loja ambiente ministerio tecnica utpl wwwutpleduec"}, {"datetaken": "2006-01-01 00:08:13", "license": "1", "title": "Taller sobre pol\u00edticas nacionales de negociaci\u00f3n de bonos de carbono", "text": "", "album_id": "72157623735481090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4476940166_76ee28bb0c_o.jpg", "secret": "d9ec6623c9", "media": "photo", "latitude": "0", "id": "4476940166", "tags": "particular universidad loja ambiente ministerio tecnica utpl wwwutpleduec"}, {"datetaken": "2006-01-01 00:08:21", "license": "1", "title": "Sarah Doty", "text": "", "album_id": "72157623735481090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4476940376_8d0274c1a5_o.jpg", "secret": "fb6cf8084e", "media": "photo", "latitude": "0", "id": "4476940376", "tags": "particular universidad loja ambiente ministerio tecnica utpl wwwutpleduec"}, {"datetaken": "2006-01-01 00:08:52", "license": "1", "title": "Sarah Doty", "text": "", "album_id": "72157623735481090", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4476164093_d75486c5ab_o.jpg", "secret": "21430f5afa", "media": "photo", "latitude": "0", "id": "4476164093", "tags": "particular universidad loja ambiente ministerio tecnica utpl wwwutpleduec"}, {"datetaken": "2006-01-01 00:09:21", "license": "1", "title": "Sarah Doty", "text": "", "album_id": "72157623735481090", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2762/4476940522_3ffddff698_o.jpg", "secret": "1feb3715f7", "media": "photo", "latitude": "0", "id": "4476940522", "tags": "particular universidad loja ambiente ministerio tecnica utpl wwwutpleduec"}, {"datetaken": "2006-01-01 00:09:35", "license": "1", "title": "Sarah Doty", "text": "", "album_id": "72157623735481090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4476164267_115269ee78_o.jpg", "secret": "09621888bf", "media": "photo", "latitude": "0", "id": "4476164267", "tags": "particular universidad loja ambiente ministerio tecnica utpl wwwutpleduec"}, {"datetaken": "2006-01-01 00:09:44", "license": "1", "title": "Taller sobre pol\u00edticas nacionales de negociaci\u00f3n de bonos de carbono", "text": "", "album_id": "72157623735481090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4476940700_1940e8496e_o.jpg", "secret": "9d5d798df7", "media": "photo", "latitude": "0", "id": "4476940700", "tags": "particular universidad loja ambiente ministerio tecnica utpl wwwutpleduec"}, {"datetaken": "2006-01-01 00:09:51", "license": "1", "title": "Taller sobre pol\u00edticas nacionales de negociaci\u00f3n de bonos de carbono", "text": "", "album_id": "72157623735481090", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4476940952_dabc8a2883_o.jpg", "secret": "7a7ffbf9b9", "media": "photo", "latitude": "0", "id": "4476940952", "tags": "particular universidad loja ambiente ministerio tecnica utpl wwwutpleduec"}, {"datetaken": "2006-01-01 00:10:09", "license": "1", "title": "Taller sobre pol\u00edticas nacionales de negociaci\u00f3n de bonos de carbono", "text": "", "album_id": "72157623735481090", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2742/4476941026_8436a1276b_o.jpg", "secret": "d8593e4c83", "media": "photo", "latitude": "0", "id": "4476941026", "tags": "particular universidad loja ambiente ministerio tecnica utpl wwwutpleduec"}, {"datetaken": "2006-01-01 00:10:24", "license": "1", "title": "Taller sobre pol\u00edticas nacionales de negociaci\u00f3n de bonos de carbono", "text": "", "album_id": "72157623735481090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4476940778_a8da3ca500_o.jpg", "secret": "b835a17976", "media": "photo", "latitude": "0", "id": "4476940778", "tags": "particular universidad loja ambiente ministerio tecnica utpl wwwutpleduec"}, {"datetaken": "2006-01-01 00:10:29", "license": "1", "title": "Taller sobre pol\u00edticas nacionales de negociaci\u00f3n de bonos de carbono", "text": "", "album_id": "72157623735481090", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4476164769_591b83e0dd_o.jpg", "secret": "5524edf150", "media": "photo", "latitude": "0", "id": "4476164769", "tags": "particular universidad loja ambiente ministerio tecnica utpl wwwutpleduec"}, {"datetaken": "2010-01-29 18:29:29", "license": "2", "title": "Ovechkin Warming", "text": "", "album_id": "72157623320493940", "longitude": "-77.021090", "url_o": "https://farm5.staticflickr.com/4034/4319503176_658d035f0c_o.jpg", "secret": "34aafb75da", "media": "photo", "latitude": "38.897978", "id": "4319503176", "tags": "usa ice hockey nhl washingtondc dc washington caps icehockey center verizon warmups capitals ovechkin nationalhockeyleague verizoncenter rockthered"}, {"datetaken": "2010-01-29 18:30:26", "license": "2", "title": "Clemmensen and Vokoun Warm Up", "text": "", "album_id": "72157623320493940", "longitude": "-77.021090", "url_o": "https://farm3.staticflickr.com/2715/4318769963_04e699836b_o.jpg", "secret": "9b7b35b8e7", "media": "photo", "latitude": "38.897978", "id": "4318769963", "tags": "usa ice hockey nhl washingtondc dc washington goalie florida caps icehockey center stretch panthers warmup verizon warmups capitals nationalhockeyleague verizoncenter clemmensen rockthered vokoum"}, {"datetaken": "2010-01-29 18:41:01", "license": "2", "title": "Neuvirth Prepares", "text": "", "album_id": "72157623320493940", "longitude": "-77.021090", "url_o": "https://farm5.staticflickr.com/4020/4319503290_3ecd60871d_o.jpg", "secret": "370d562e4f", "media": "photo", "latitude": "38.897978", "id": "4319503290", "tags": "usa ice hockey nhl washingtondc dc washington florida caps arc icehockey center panthers verizon warmups capitals nationalhockeyleague verizoncenter neuvirth rockthered"}, {"datetaken": "2010-01-29 18:42:15", "license": "2", "title": "Neuvirth Stretches", "text": "", "album_id": "72157623320493940", "longitude": "-77.021090", "url_o": "https://farm5.staticflickr.com/4040/4319505218_f99427235b_o.jpg", "secret": "6bf3df0fbc", "media": "photo", "latitude": "38.897978", "id": "4319505218", "tags": "usa ice hockey nhl washingtondc dc washington goalie florida caps icehockey center stretch panthers verizon warmups capitals nationalhockeyleague verizoncenter neuvirth rockthered"}, {"datetaken": "2010-01-29 18:42:34", "license": "2", "title": "Neuvirth Tells 5-Hole to be Good", "text": "", "album_id": "72157623320493940", "longitude": "-77.021090", "url_o": "https://farm5.staticflickr.com/4046/4319503386_60328030d2_o.jpg", "secret": "4bc31d3524", "media": "photo", "latitude": "38.897978", "id": "4319503386", "tags": "usa ice hockey nhl washingtondc dc washington goalie florida caps icehockey center panthers preparation verizon warmups capitals nationalhockeyleague verizoncenter 5hole fivehole neuvirth rockthered"}, {"datetaken": "2010-01-29 19:17:37", "license": "2", "title": "Potheir Checks Weiss", "text": "", "album_id": "72157623320493940", "longitude": "-77.021090", "url_o": "https://farm5.staticflickr.com/4022/4319499164_9f1d3b9e57_o.jpg", "secret": "8ba5fa51dc", "media": "photo", "latitude": "38.897978", "id": "4319499164", "tags": "caps capitals center nhl dc nationalhockeyleague verizon verizoncenter washington hockey ice icehockey florida panthers rockthered pothier weiss check bench boards washingtondc usa"}, {"datetaken": "2010-01-29 19:19:36", "license": "2", "title": "Knuble Sets Up Backstrom From His Office", "text": "", "album_id": "72157623320493940", "longitude": "-77.021090", "url_o": "https://farm5.staticflickr.com/4003/4318765867_87d3351f0e_o.jpg", "secret": "70507cfda8", "media": "photo", "latitude": "38.897978", "id": "4318765867", "tags": "usa ice hockey nhl washingtondc dc washington goal goalie allen florida caps icehockey center panthers puck score crease dvorak verizon capitals seidenberg vokoun nationalhockeyleague verizoncenter crashingthenet knuble backstrom rockthered"}, {"datetaken": "2010-01-29 19:19:39", "license": "2", "title": "Backstrom Scores From Crease", "text": "", "album_id": "72157623320493940", "longitude": "-77.021090", "url_o": "https://farm5.staticflickr.com/4038/4318765955_0e8142e367_o.jpg", "secret": "4a750d2913", "media": "photo", "latitude": "38.897978", "id": "4318765955", "tags": "usa ice hockey nhl washingtondc dc washington goal referee official allen florida caps icehockey center panthers score celebrate dvorak verizon capitals fleischmann seidenberg vokoun ovechkin nationalhockeyleague verizoncenter knuble backstrom olesz rockthered"}, {"datetaken": "2010-01-29 19:39:07", "license": "2", "title": "Weiss and Backstrom", "text": "", "album_id": "72157623320493940", "longitude": "-77.021090", "url_o": "https://farm3.staticflickr.com/2710/4319499376_53d6d167fd_o.jpg", "secret": "c5e7c83a33", "media": "photo", "latitude": "38.897978", "id": "4319499376", "tags": "usa ice hockey nhl washingtondc dc washington florida caps icehockey center panthers puck weiss verizon capitals defend nationalhockeyleague verizoncenter backstrom rockthered"}, {"datetaken": "2010-01-29 20:08:08", "license": "2", "title": "Green and McCardle", "text": "", "album_id": "72157623320493940", "longitude": "-77.021090", "url_o": "https://farm5.staticflickr.com/4058/4318766115_59dc44c550_o.jpg", "secret": "2610824175", "media": "photo", "latitude": "38.897978", "id": "4318766115", "tags": "usa green ice hockey nhl washingtondc dc washington check florida caps icehockey center panthers verizon capitals nationalhockeyleague verizoncenter mccardle rockthered"}, {"datetaken": "2010-01-29 20:11:30", "license": "2", "title": "Ovechkin Skates in on Leopold", "text": "", "album_id": "72157623320493940", "longitude": "-77.021090", "url_o": "https://farm5.staticflickr.com/4033/4318766171_b035e94f2c_o.jpg", "secret": "627308db38", "media": "photo", "latitude": "38.897978", "id": "4318766171", "tags": "usa ice hockey nhl washingtondc dc washington florida caps icehockey center panthers puck verizon capitals leopold ovechkin nationalhockeyleague verizoncenter rockthered"}, {"datetaken": "2010-01-29 20:14:09", "license": "2", "title": "Ovechkin Prepares Shot", "text": "", "album_id": "72157623320493940", "longitude": "-77.021090", "url_o": "https://farm5.staticflickr.com/4065/4319499542_744a8bd3ef_o.jpg", "secret": "64e21dd9da", "media": "photo", "latitude": "38.897978", "id": "4319499542", "tags": "usa ice hockey nhl washingtondc dc washington florida caps icehockey center panthers verizon capitals ovechkin nationalhockeyleague verizoncenter rockthered"}, {"datetaken": "2010-01-29 20:15:06", "license": "2", "title": "Ovechkin at Center Ice", "text": "", "album_id": "72157623320493940", "longitude": "-77.021090", "url_o": "https://farm3.staticflickr.com/2696/4319499584_ddfe419468_o.jpg", "secret": "3503d39d13", "media": "photo", "latitude": "38.897978", "id": "4319499584", "tags": "usa ice hockey nhl washingtondc dc washington florida caps icehockey center panthers puck verizon capitals ovechkin nationalhockeyleague verizoncenter rockthered"}, {"datetaken": "2010-01-29 20:24:04", "license": "2", "title": "Semin Skates With Puck", "text": "", "album_id": "72157623320493940", "longitude": "-77.021090", "url_o": "https://farm5.staticflickr.com/4030/4319499652_345b58b5b4_o.jpg", "secret": "3abbc9e7d7", "media": "photo", "latitude": "38.897978", "id": "4319499652", "tags": "usa ice hockey nhl washingtondc dc washington florida caps icehockey center skate panthers puck verizon capitals semin nationalhockeyleague verizoncenter rockthered"}, {"datetaken": "2010-01-29 20:54:44", "license": "2", "title": "Semin and McCabe", "text": "", "album_id": "72157623320493940", "longitude": "-77.021090", "url_o": "https://farm5.staticflickr.com/4063/4318766417_f04c767b8a_o.jpg", "secret": "63d6fd1260", "media": "photo", "latitude": "38.897978", "id": "4318766417", "tags": "usa fall ice hockey nhl washingtondc dc washington florida caps icehockey center panthers verizon capitals mccabe semin nationalhockeyleague verizoncenter rockthered"}, {"datetaken": "2010-01-29 21:05:56", "license": "2", "title": "Knuble Scores Again", "text": "", "album_id": "72157623320493940", "longitude": "-77.021090", "url_o": "https://farm5.staticflickr.com/4048/4318766491_e7dd4d2155_o.jpg", "secret": "cb21c0202a", "media": "photo", "latitude": "38.897978", "id": "4318766491", "tags": "usa ice hockey nhl washingtondc dc washington goal florida caps icehockey center spotlight panthers score celebrate verizon capitals ovechkin nationalhockeyleague verizoncenter knuble rockthered"}, {"datetaken": "2004-09-15 13:10:56", "license": "1", "title": "The costume came today", "text": "", "album_id": "11090", "longitude": "10.674151", "url_o": "https://farm1.staticflickr.com/1/450792_652ff592bb_o.jpg", "secret": "652ff592bb", "media": "photo", "latitude": "59.921812", "id": "450792", "tags": "gorilla london charity costume funcom dreamfall"}, {"datetaken": "2004-09-15 13:11:17", "license": "1", "title": "Renate looks sceptical", "text": "", "album_id": "11090", "longitude": "10.674151", "url_o": "https://farm1.staticflickr.com/1/450799_a81d107890_o.jpg", "secret": "a81d107890", "media": "photo", "latitude": "59.921812", "id": "450799", "tags": "gorilla london charity costume funcom dreamfall"}, {"datetaken": "2004-09-15 13:11:30", "license": "1", "title": "Try it on!", "text": "", "album_id": "11090", "longitude": "10.674151", "url_o": "https://farm1.staticflickr.com/1/450803_a65971b772_o.jpg", "secret": "a65971b772", "media": "photo", "latitude": "59.921812", "id": "450803", "tags": "gorilla london charity costume funcom dreamfall"}, {"datetaken": "2004-09-15 13:11:41", "license": "1", "title": "Half human, half ape", "text": "", "album_id": "11090", "longitude": "10.674151", "url_o": "https://farm1.staticflickr.com/1/450804_6868d09454_o.jpg", "secret": "6868d09454", "media": "photo", "latitude": "59.921812", "id": "450804", "tags": "gorilla london charity costume funcom dreamfall"}, {"datetaken": "2004-09-15 13:11:53", "license": "1", "title": "Look! Batman-nipples!", "text": "", "album_id": "11090", "longitude": "10.674151", "url_o": "https://farm1.staticflickr.com/1/450805_f4118bad0c_o.jpg", "secret": "f4118bad0c", "media": "photo", "latitude": "59.921812", "id": "450805", "tags": "gorilla london charity costume funcom dreamfall"}, {"datetaken": "2004-09-15 13:12:03", "license": "1", "title": "Work doesn't stop", "text": "", "album_id": "11090", "longitude": "10.674151", "url_o": "https://farm1.staticflickr.com/1/450807_416b106bd2_o.jpg", "secret": "416b106bd2", "media": "photo", "latitude": "59.921812", "id": "450807", "tags": "gorilla london charity costume funcom dreamfall"}, {"datetaken": "2004-09-15 13:12:14", "license": "1", "title": "The Fez", "text": "", "album_id": "11090", "longitude": "10.674151", "url_o": "https://farm1.staticflickr.com/1/450810_4301b31b81_o.jpg", "secret": "4301b31b81", "media": "photo", "latitude": "59.921812", "id": "450810", "tags": "gorilla london charity costume funcom dreamfall"}, {"datetaken": "2004-09-15 13:12:26", "license": "1", "title": "No costume required", "text": "", "album_id": "11090", "longitude": "10.674151", "url_o": "https://farm1.staticflickr.com/1/450812_c8c773c9ec_o.jpg", "secret": "c8c773c9ec", "media": "photo", "latitude": "59.921812", "id": "450812", "tags": "gorilla london charity costume funcom dreamfall"}, {"datetaken": "2004-09-15 13:12:36", "license": "1", "title": "The full monty", "text": "", "album_id": "11090", "longitude": "10.674151", "url_o": "https://farm1.staticflickr.com/1/450813_c905ec2683_o.jpg", "secret": "c905ec2683", "media": "photo", "latitude": "59.921812", "id": "450813", "tags": "gorilla london charity costume funcom dreamfall"}, {"datetaken": "2004-09-15 13:12:47", "license": "1", "title": "This should really come with a fez", "text": "", "album_id": "11090", "longitude": "10.674151", "url_o": "https://farm1.staticflickr.com/1/450816_576859c495_o.jpg", "secret": "576859c495", "media": "photo", "latitude": "59.921812", "id": "450816", "tags": "gorilla london charity costume funcom dreamfall"}, {"datetaken": "2004-09-15 13:12:59", "license": "1", "title": "Going Ape", "text": "", "album_id": "11090", "longitude": "10.674151", "url_o": "https://farm1.staticflickr.com/1/450820_91674ca28b_o.jpg", "secret": "91674ca28b", "media": "photo", "latitude": "59.921812", "id": "450820", "tags": "gorilla london charity costume funcom dreamfall"}, {"datetaken": "2004-12-21 08:47:30", "license": "1", "title": "This is breakfast", "text": "", "album_id": "60550", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2408632_399f32bf0c_o.jpg", "secret": "399f32bf0c", "media": "photo", "latitude": "0", "id": "2408632", "tags": "dilodec04 wiesbaden europe aemterderwelt bureaucracy"}, {"datetaken": "2004-12-21 12:52:49", "license": "1", "title": "This is work", "text": "", "album_id": "60550", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2408623_4d754fd2db_o.jpg", "secret": "4d754fd2db", "media": "photo", "latitude": "0", "id": "2408623", "tags": "dilodec04 wiesbaden europe aemterderwelt bureaucracy"}, {"datetaken": "2004-12-21 12:54:35", "license": "1", "title": "This is work", "text": "", "album_id": "60550", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2408617_390b38f68c_o.jpg", "secret": "390b38f68c", "media": "photo", "latitude": "0", "id": "2408617", "tags": "dilodec04 wiesbaden europe aemterderwelt bureaucracy"}, {"datetaken": "2004-12-21 13:06:18", "license": "1", "title": "This is lunch", "text": "", "album_id": "60550", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2408601_85b95b69e4_o.jpg", "secret": "85b95b69e4", "media": "photo", "latitude": "0", "id": "2408601", "tags": "dilodec04 wiesbaden europe"}, {"datetaken": "2004-12-21 13:43:37", "license": "1", "title": "This was lunch", "text": "", "album_id": "60550", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2408590_698e1e5588_o.jpg", "secret": "698e1e5588", "media": "photo", "latitude": "0", "id": "2408590", "tags": "dilodec04 wiesbaden europe"}, {"datetaken": "2004-12-21 14:42:12", "license": "1", "title": "Okay, I am not *that* tall", "text": "", "album_id": "60550", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2408583_eadbf291f9_o.jpg", "secret": "eadbf291f9", "media": "photo", "latitude": "0", "id": "2408583", "tags": "dilodec04 wiesbaden europe aemterderwelt bureaucracy"}, {"datetaken": "2004-12-21 14:49:56", "license": "1", "title": "Writing and revising memos", "text": "", "album_id": "60550", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2408574_a5d9de7dcd_o.jpg", "secret": "a5d9de7dcd", "media": "photo", "latitude": "0", "id": "2408574", "tags": "dilodec04 wiesbaden europe aemterderwelt bureaucracy"}, {"datetaken": "2004-12-21 15:29:25", "license": "1", "title": "Tape fixed wall", "text": "", "album_id": "60550", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2408556_83ab00203d_o.jpg", "secret": "83ab00203d", "media": "photo", "latitude": "0", "id": "2408556", "tags": "dilodec04 wiesbaden europe aemterderwelt bureaucracy"}, {"datetaken": "2004-12-21 15:30:27", "license": "1", "title": "My pets", "text": "", "album_id": "60550", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2408547_a2f64a3312_o.jpg", "secret": "a2f64a3312", "media": "photo", "latitude": "0", "id": "2408547", "tags": "dilodec04 wiesbaden europe aemterderwelt bureaucracy"}, {"datetaken": "2004-12-21 17:08:46", "license": "1", "title": "I don't work for a startup", "text": "", "album_id": "60550", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2408542_a623e10a69_o.jpg", "secret": "a623e10a69", "media": "photo", "latitude": "0", "id": "2408542", "tags": "dilodec04 wiesbaden europe aemterderwelt bureaucracy"}, {"datetaken": "2004-12-21 17:11:15", "license": "1", "title": "Biking home", "text": "", "album_id": "60550", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2408535_8f65d45eb4_o.jpg", "secret": "8f65d45eb4", "media": "photo", "latitude": "0", "id": "2408535", "tags": "dilodec04 wiesbaden europe"}, {"datetaken": "2004-12-21 17:11:27", "license": "1", "title": "Luckily the reflecting wheels are mine", "text": "", "album_id": "60550", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2408530_544f573b19_o.jpg", "secret": "544f573b19", "media": "photo", "latitude": "0", "id": "2408530", "tags": "dilodec04 wiesbaden europe"}, {"datetaken": "2004-12-21 18:06:38", "license": "1", "title": "This should be my evening", "text": "", "album_id": "60550", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2408498_7940c8db2f_o.jpg", "secret": "7940c8db2f", "media": "photo", "latitude": "0", "id": "2408498", "tags": "dilodec04 wiesbaden europe"}, {"datetaken": "2004-12-21 06:21:47", "license": "2", "title": "A Late Start", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2434212_333e0a3a5d_o.jpg", "secret": "333e0a3a5d", "media": "photo", "latitude": "0", "id": "2434212", "tags": "dilo carrollton texas dilodec04 canondigitalrebel"}, {"datetaken": "2004-12-21 06:42:34", "license": "2", "title": "Men At Breakfast", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2434215_c1613e03f8_o.jpg", "secret": "c1613e03f8", "media": "photo", "latitude": "0", "id": "2434215", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor solstice"}, {"datetaken": "2004-12-21 07:31:00", "license": "2", "title": "Mission Accomplished", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2434224_68da38ea39_o.jpg", "secret": "68da38ea39", "media": "photo", "latitude": "0", "id": "2434224", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor food"}, {"datetaken": "2004-12-21 07:45:14", "license": "2", "title": "Heigh-Ho, Off I Go", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2434229_e45f0da5ca_o.jpg", "secret": "e45f0da5ca", "media": "photo", "latitude": "0", "id": "2434229", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor"}, {"datetaken": "2004-12-21 09:43:56", "license": "2", "title": "Normal SOP: Disassembled", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2434240_bf1b5e8903_o.jpg", "secret": "bf1b5e8903", "media": "photo", "latitude": "0", "id": "2434240", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor"}, {"datetaken": "2004-12-21 09:47:41", "license": "2", "title": "The Sin Table", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2434251_7a9c2d235c_o.jpg", "secret": "7a9c2d235c", "media": "photo", "latitude": "0", "id": "2434251", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor food"}, {"datetaken": "2004-12-21 09:54:32", "license": "2", "title": "Yet Another Visit To The Sin Table", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2434266_0dd3ee5ac0_o.jpg", "secret": "0dd3ee5ac0", "media": "photo", "latitude": "0", "id": "2434266", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor"}, {"datetaken": "2004-12-21 10:02:11", "license": "2", "title": "It's That Time Of Year", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2434281_6ced37f195_o.jpg", "secret": "6ced37f195", "media": "photo", "latitude": "0", "id": "2434281", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor"}, {"datetaken": "2004-12-21 10:14:16", "license": "2", "title": "It's A Long Story", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2434285_7b6ba0a3d8_o.jpg", "secret": "7b6ba0a3d8", "media": "photo", "latitude": "0", "id": "2434285", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor"}, {"datetaken": "2004-12-21 11:26:36", "license": "2", "title": "Working Hard at Hardly Working", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2434291_7e212da279_o.jpg", "secret": "7e212da279", "media": "photo", "latitude": "0", "id": "2434291", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor me selfportrait"}, {"datetaken": "2004-12-21 15:33:53", "license": "2", "title": "Watching And Waiting", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2434297_0915552eb7_o.jpg", "secret": "0915552eb7", "media": "photo", "latitude": "0", "id": "2434297", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor"}, {"datetaken": "2004-12-21 16:52:46", "license": "2", "title": "Close Enough!", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2434308_052c02fddc_o.jpg", "secret": "052c02fddc", "media": "photo", "latitude": "0", "id": "2434308", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor"}, {"datetaken": "2004-12-21 16:53:31", "license": "2", "title": "Home Again, Jiggety Jig", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2434311_36d90618a3_o.jpg", "secret": "36d90618a3", "media": "photo", "latitude": "0", "id": "2434311", "tags": "dilo carrollton texas dilodec04 canondigitalrebel outdoor"}, {"datetaken": "2004-12-21 16:57:59", "license": "2", "title": "Chevron Is Still At $1.55?", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2434315_ee554194b3_o.jpg", "secret": "ee554194b3", "media": "photo", "latitude": "0", "id": "2434315", "tags": "dilo carrollton texas dilodec04 canondigitalrebel outdoor driveby"}, {"datetaken": "2004-12-21 17:10:57", "license": "2", "title": "My Tree, Dying", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2434317_28063572fc_o.jpg", "secret": "28063572fc", "media": "photo", "latitude": "0", "id": "2434317", "tags": "dilo carrollton texas dilodec04 canondigitalrebel outdoor"}, {"datetaken": "2004-12-21 17:23:47", "license": "2", "title": "Must Have Been Baking Day!", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2434327_5d63a01d78_o.jpg", "secret": "5d63a01d78", "media": "photo", "latitude": "0", "id": "2434327", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor"}, {"datetaken": "2004-12-21 17:24:48", "license": "2", "title": "Sandbox Cleanup", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2434335_2d7d29dc46_o.jpg", "secret": "2d7d29dc46", "media": "photo", "latitude": "0", "id": "2434335", "tags": "dilo carrollton texas dilodec04 canondigitalrebel outdoor"}, {"datetaken": "2004-12-21 17:26:09", "license": "2", "title": "Attack Of The Clones", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2434368_77e7f21676_o.jpg", "secret": "77e7f21676", "media": "photo", "latitude": "0", "id": "2434368", "tags": "dilo carrollton texas dilodec04 canondigitalrebel christmas food"}, {"datetaken": "2004-12-21 17:29:56", "license": "2", "title": "An Invitation To Join Netflix, Plus Two Netflix DVDs", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2434371_90ca3264a4_o.jpg", "secret": "90ca3264a4", "media": "photo", "latitude": "0", "id": "2434371", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor"}, {"datetaken": "2004-12-21 18:47:25", "license": "2", "title": "Creating A \"Podcast\"", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2434388_fff4517af8_o.jpg", "secret": "fff4517af8", "media": "photo", "latitude": "0", "id": "2434388", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor"}, {"datetaken": "2004-12-21 18:56:54", "license": "2", "title": "Out To Dinner", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2434394_121b74f520_o.jpg", "secret": "121b74f520", "media": "photo", "latitude": "0", "id": "2434394", "tags": "dilo carrollton texas dilodec04 canondigitalrebel outdoor"}, {"datetaken": "2004-12-21 19:18:31", "license": "2", "title": "That'll Hit The Spot", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2434396_661199d59a_o.jpg", "secret": "661199d59a", "media": "photo", "latitude": "0", "id": "2434396", "tags": "dilo carrollton texas dilodec04 canondigitalrebel outdoor sign"}, {"datetaken": "2004-12-21 20:24:05", "license": "2", "title": "Lunch Tomorrow", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2434406_bd7ef69378_o.jpg", "secret": "bd7ef69378", "media": "photo", "latitude": "0", "id": "2434406", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor food"}, {"datetaken": "2004-12-21 20:39:39", "license": "2", "title": "$1.519 Today, Minus 3 Cents", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2434417_a62806b1e0_o.jpg", "secret": "a62806b1e0", "media": "photo", "latitude": "0", "id": "2434417", "tags": "dilo carrollton texas dilodec04 canondigitalrebel outdoor sign"}, {"datetaken": "2004-12-21 20:47:10", "license": "2", "title": "Overkill", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2434429_146d4484c9_o.jpg", "secret": "146d4484c9", "media": "photo", "latitude": "0", "id": "2434429", "tags": "dilo carrollton texas dilodec04 canondigitalrebel outdoor christmas"}, {"datetaken": "2004-12-21 20:47:56", "license": "2", "title": "Santa's Longhorn", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2434447_2be8464d74_o.jpg", "secret": "2be8464d74", "media": "photo", "latitude": "0", "id": "2434447", "tags": "dilo carrollton texas dilodec04 canondigitalrebel outdoor christmas driveby"}, {"datetaken": "2004-12-21 20:48:05", "license": "2", "title": "Tragic Accident", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2434481_e4a47371ea_o.jpg", "secret": "e4a47371ea", "media": "photo", "latitude": "0", "id": "2434481", "tags": "dilo carrollton texas dilodec04 canondigitalrebel outdoor christmas driveby"}, {"datetaken": "2004-12-21 20:58:41", "license": "2", "title": "Laser-Etched Marvel", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2434498_408aab6c23_o.jpg", "secret": "408aab6c23", "media": "photo", "latitude": "0", "id": "2434498", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor"}, {"datetaken": "2004-12-21 22:35:31", "license": "2", "title": "Time To Upload", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2434506_1c78b17857_o.jpg", "secret": "1c78b17857", "media": "photo", "latitude": "0", "id": "2434506", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor sometaithurts"}, {"datetaken": "2004-12-21 23:11:10", "license": "2", "title": "DILO Overview", "text": "", "album_id": "61237", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2434528_4224dddbc6_o.jpg", "secret": "4224dddbc6", "media": "photo", "latitude": "0", "id": "2434528", "tags": "dilo carrollton texas dilodec04 canondigitalrebel indoor recursive"}, {"datetaken": "2004-12-22 12:09:18", "license": "5", "title": "Snow covered tree branches.", "text": "", "album_id": "61562", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2439934_609ad4d425_o.jpg", "secret": "609ad4d425", "media": "photo", "latitude": "0", "id": "2439934", "tags": "2004 denton snow tree unt"}, {"datetaken": "2004-12-22 12:11:07", "license": "5", "title": "Cold Miserable Squirrel.", "text": "", "album_id": "61562", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2439926_0a34ae9243_o.jpg", "secret": "0a34ae9243", "media": "photo", "latitude": "0", "id": "2439926", "tags": "2004 denton snow squirrel tree unt"}, {"datetaken": "2004-12-22 12:39:55", "license": "5", "title": "Snow at UNT.", "text": "", "album_id": "61562", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2444816_44d44bf9b2_o.jpg", "secret": "44d44bf9b2", "media": "photo", "latitude": "0", "id": "2444816", "tags": "2004 snow unt"}, {"datetaken": "2004-12-22 12:40:33", "license": "5", "title": "Flags in the Snow.", "text": "", "album_id": "61562", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2440785_181ee1e047_o.jpg", "secret": "181ee1e047", "media": "photo", "latitude": "0", "id": "2440785", "tags": ""}, {"datetaken": "2004-12-22 12:41:05", "license": "5", "title": "Flags in the snow (again).", "text": "", "album_id": "61562", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2440828_a0fe82022c_o.jpg", "secret": "a0fe82022c", "media": "photo", "latitude": "0", "id": "2440828", "tags": "2004 snow unt"}, {"datetaken": "2004-12-22 12:43:46", "license": "5", "title": "Snow covered vines.", "text": "", "album_id": "61562", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2440803_f40170a2af_o.jpg", "secret": "f40170a2af", "media": "photo", "latitude": "0", "id": "2440803", "tags": "2004 snow unt"}, {"datetaken": "2004-12-22 12:44:48", "license": "5", "title": "Snow and Berries.", "text": "", "album_id": "61562", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2440992_ddab87b423_o.jpg", "secret": "ddab87b423", "media": "photo", "latitude": "0", "id": "2440992", "tags": "2004 snow unt"}, {"datetaken": "2004-12-22 12:45:45", "license": "5", "title": "Snow covered flower.", "text": "", "album_id": "61562", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2441000_230d2e6f31_o.jpg", "secret": "230d2e6f31", "media": "photo", "latitude": "0", "id": "2441000", "tags": "2004 snow unt"}, {"datetaken": "2004-12-22 13:15:47", "license": "5", "title": "A Flower in the Snow.", "text": "", "album_id": "61562", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2444917_20e4490edd_o.jpg", "secret": "20e4490edd", "media": "photo", "latitude": "0", "id": "2444917", "tags": "2004 snow unt"}, {"datetaken": "2004-12-22 13:15:56", "license": "5", "title": "Yet Another Flower in the Snow.", "text": "", "album_id": "61562", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2444937_afcf6bbd93_o.jpg", "secret": "afcf6bbd93", "media": "photo", "latitude": "0", "id": "2444937", "tags": "2004 denton unt snow flower"}, {"datetaken": "2004-12-22 13:16:30", "license": "5", "title": "More stuff covered in snow.", "text": "", "album_id": "61562", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2447687_b20bedddd9_o.jpg", "secret": "b20bedddd9", "media": "photo", "latitude": "0", "id": "2447687", "tags": "2004 snow unt"}, {"datetaken": "2004-12-22 13:17:27", "license": "5", "title": "Pampas grass covered in snow.", "text": "", "album_id": "61562", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2444870_f2b2bbf1d2_o.jpg", "secret": "f2b2bbf1d2", "media": "photo", "latitude": "0", "id": "2444870", "tags": "2004 snow unt"}, {"datetaken": "2004-12-22 13:18:26", "license": "5", "title": "UNT Logo.", "text": "", "album_id": "61562", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2444847_6d872e10b9_o.jpg", "secret": "6d872e10b9", "media": "photo", "latitude": "0", "id": "2444847", "tags": ""}, {"datetaken": "2004-12-22 16:40:24", "license": "5", "title": "Snowy Vent.", "text": "", "album_id": "61562", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2447638_9a9c59c618_o.jpg", "secret": "9a9c59c618", "media": "photo", "latitude": "0", "id": "2447638", "tags": "2004 snow unt"}, {"datetaken": "2004-12-22 16:43:09", "license": "5", "title": "Snowy tree reflected in a window.", "text": "", "album_id": "61562", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2447654_2ed9a89034_o.jpg", "secret": "2ed9a89034", "media": "photo", "latitude": "0", "id": "2447654", "tags": "2004 snow unt"}, {"datetaken": "2004-12-22 16:54:04", "license": "5", "title": "UNT Clock Tower.", "text": "", "album_id": "61562", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2447860_6cbca504dc_o.jpg", "secret": "6cbca504dc", "media": "photo", "latitude": "0", "id": "2447860", "tags": "2004 snow unt"}, {"datetaken": "2011-10-29 13:17:25", "license": "2", "title": "Sunburst Pole", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7001/6392821063_90bb9ab931_o.jpg", "secret": "9880f7fb24", "media": "photo", "latitude": "0", "id": "6392821063", "tags": "losangeles google santamonica tokina photowalk getty 1755mmf28g nikkor 1224mmf4 50mmf14g photowalkla d300snikon"}, {"datetaken": "2011-10-29 13:20:29", "license": "2", "title": "The Rides", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7143/6392828155_07a8084698_o.jpg", "secret": "1f148986d5", "media": "photo", "latitude": "0", "id": "6392828155", "tags": "losangeles google santamonica tokina photowalk getty 1755mmf28g af nikkor 1224mm f4 1224mmf4 50mmf14g photowalkla d300snikon"}, {"datetaken": "2011-10-29 13:20:53", "license": "2", "title": "Wingspread", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7030/6392836401_3b6541dbcf_o.jpg", "secret": "44841889f0", "media": "photo", "latitude": "0", "id": "6392836401", "tags": "losangeles google santamonica tokina photowalk getty 1755mmf28g nikkor 1224mmf4 50mmf14g photowalkla d300snikon"}, {"datetaken": "2011-10-29 13:37:37", "license": "2", "title": "End of the route", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6392840215_b42256b339_o.jpg", "secret": "4e8e3217da", "media": "photo", "latitude": "0", "id": "6392840215", "tags": "losangeles google santamonica tokina photowalk getty 1755mmf28g nikkor 1224mmf4 50mmf14g photowalkla d300snikon"}, {"datetaken": "2011-10-29 13:44:50", "license": "2", "title": "Santa Monica", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6392843399_2a3ed0050b_o.jpg", "secret": "7535ac1f6b", "media": "photo", "latitude": "0", "id": "6392843399", "tags": "losangeles google santamonica tokina photowalk getty 1755mmf28g nikkor 1224mmf4 50mmf14g photowalkla d300snikon"}, {"datetaken": "2011-10-29 14:06:38", "license": "2", "title": "Red boat", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7163/6392851943_5636c3be80_o.jpg", "secret": "01ff304a46", "media": "photo", "latitude": "0", "id": "6392851943", "tags": "losangeles google santamonica tokina photowalk getty 1755mmf28g af nikkor 1224mm f4 1224mmf4 50mmf14g photowalkla d300snikon"}, {"datetaken": "2011-10-29 14:10:29", "license": "2", "title": "Under the Pier", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7034/6392858427_43a2dd1fbf_o.jpg", "secret": "2484f0e8f5", "media": "photo", "latitude": "0", "id": "6392858427", "tags": "losangeles google santamonica tokina photowalk getty 1755mmf28g af nikkor 1224mm f4 1224mmf4 50mmf14g photowalkla d300snikon"}, {"datetaken": "2011-10-29 14:21:48", "license": "2", "title": "Take a ride", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7021/6392866607_3b3b31c502_o.jpg", "secret": "2b42ccda58", "media": "photo", "latitude": "0", "id": "6392866607", "tags": "losangeles google santamonica tokina photowalk getty 1755mmf28g af nikkor 1224mm f4 1224mmf4 50mmf14g photowalkla d300snikon"}, {"datetaken": "2011-10-29 14:24:00", "license": "2", "title": "Out of focus spin", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7010/6392870391_bd3f061f2f_o.jpg", "secret": "4bb6d0065d", "media": "photo", "latitude": "0", "id": "6392870391", "tags": "losangeles google santamonica tokina photowalk getty 1755mmf28g af nikkor 1224mm f4 1224mmf4 50mmf14g photowalkla d300snikon"}, {"datetaken": "2011-10-29 14:46:58", "license": "2", "title": "Eye in the Side", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7154/6392871319_5da2032f89_o.jpg", "secret": "3c5992728c", "media": "photo", "latitude": "0", "id": "6392871319", "tags": "losangeles google nikon santamonica photowalk getty nikkor d40 50mmf14g photowalkla"}, {"datetaken": "2011-10-29 17:11:56", "license": "2", "title": "the Getty", "text": "", "album_id": "72157628033104348", "longitude": "-118.474689", "url_o": "https://farm7.staticflickr.com/6216/6304912852_534565e519_o.jpg", "secret": "4901399d6e", "media": "photo", "latitude": "34.077179", "id": "6304912852", "tags": "geotagged losangeles google santamonica tokina photowalk getty 1755mmf28g af nikkor 1224mm f4 1224mmf4 50mmf14g photowalkla d300snikon geo:lat=3407717998934294 geo:lon=11847468963558197"}, {"datetaken": "2011-10-29 17:13:26", "license": "2", "title": "the Getty", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6037/6304391025_e187fb67e2_o.jpg", "secret": "a9613f909b", "media": "photo", "latitude": "0", "id": "6304391025", "tags": "losangeles google santamonica tokina photowalk getty 1755mmf28g af nikkor 1224mm f4 1224mmf4 50mmf14g photowalkla d300snikon"}, {"datetaken": "2011-10-29 17:16:05", "license": "2", "title": "the Getty", "text": "", "album_id": "72157628033104348", "longitude": "-118.473673", "url_o": "https://farm7.staticflickr.com/6054/6304922228_400e4fa133_o.jpg", "secret": "6c686174ae", "media": "photo", "latitude": "34.076488", "id": "6304922228", "tags": "geotagged losangeles google santamonica tokina photowalk getty 1755mmf28g af nikkor 1224mm f4 1224mmf4 50mmf14g photowalkla d300snikon geo:lat=3407648811082391 geo:lon=11847367341964343"}, {"datetaken": "2011-10-29 17:33:41", "license": "2", "title": "the Getty", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6105/6304398593_5a6ec6b97c_o.jpg", "secret": "c0e8525051", "media": "photo", "latitude": "0", "id": "6304398593", "tags": "losangeles google nikon santamonica photowalk getty nikkor d40 50mmf14g photowalkla"}, {"datetaken": "2011-10-29 17:34:49", "license": "2", "title": "the Getty", "text": "", "album_id": "72157628033104348", "longitude": "-118.473594", "url_o": "https://farm7.staticflickr.com/6031/6304400267_05cf77632c_o.jpg", "secret": "e73747b4d5", "media": "photo", "latitude": "34.076254", "id": "6304400267", "tags": "geotagged losangeles google nikon santamonica photowalk getty nikkor d40 50mmf14g photowalkla geo:lat=3407625489941276 geo:lon=11847359458283807"}, {"datetaken": "2011-10-29 17:38:37", "license": "2", "title": "Brian Rose", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7010/6392872413_bb811712a2_o.jpg", "secret": "dcbf644661", "media": "photo", "latitude": "0", "id": "6392872413", "tags": "losangeles google nikon santamonica photowalk getty nikkor d40 50mmf14g photowalkla"}, {"datetaken": "2011-10-29 17:38:46", "license": "2", "title": "Snap", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7019/6392873987_fcbaac31af_o.jpg", "secret": "0a31e8281c", "media": "photo", "latitude": "0", "id": "6392873987", "tags": "losangeles google nikon santamonica photowalk getty nikkor d40 50mmf14g photowalkla"}, {"datetaken": "2011-10-29 17:39:38", "license": "2", "title": "Huddle", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7025/6392879089_242e05cca7_o.jpg", "secret": "0b2e84ede7", "media": "photo", "latitude": "0", "id": "6392879089", "tags": "losangeles google santamonica tokina photowalk getty 1755mmf28g nikkor 1224mmf4 50mmf14g photowalkla d300snikon"}, {"datetaken": "2011-10-29 17:47:17", "license": "2", "title": "the Getty", "text": "", "album_id": "72157628033104348", "longitude": "-118.474259", "url_o": "https://farm7.staticflickr.com/6097/6304926948_c7fc8816a1_o.jpg", "secret": "b4318444b9", "media": "photo", "latitude": "34.076780", "id": "6304926948", "tags": "geotagged losangeles google nikon santamonica photowalk getty nikkor d40 50mmf14g photowalkla geo:lat=3407678065968557 geo:lon=1184742595669689"}, {"datetaken": "2011-10-29 17:51:59", "license": "2", "title": "Maze Bush", "text": "", "album_id": "72157628033104348", "longitude": "-118.474706", "url_o": "https://farm8.staticflickr.com/7023/6392888245_daf4c1b1b8_o.jpg", "secret": "5b5f03abd3", "media": "photo", "latitude": "34.076158", "id": "6392888245", "tags": "geotagged losangeles google santamonica tokina photowalk getty 1755mmf28g af nikkor 1224mm f4 1224mmf4 50mmf14g photowalkla d300snikon geo:lat=34076158 geo:lon=118474706"}, {"datetaken": "2011-10-29 18:24:18", "license": "2", "title": "Hill Rays", "text": "", "album_id": "72157628033104348", "longitude": "-118.473607", "url_o": "https://farm8.staticflickr.com/7156/6392894003_ea20e7b8f6_o.jpg", "secret": "8ea7269c50", "media": "photo", "latitude": "34.076236", "id": "6392894003", "tags": "geotagged losangeles google nikon santamonica tokina photowalk getty af nikkor 1224mm f4 1224mmf4 d300s photowalkla geo:lat=3407623656180529 geo:lon=11847360716319463"}, {"datetaken": "2011-10-29 18:52:17", "license": "2", "title": "405 way", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7024/6392896895_863848d0c7_o.jpg", "secret": "ce2b151cb1", "media": "photo", "latitude": "0", "id": "6392896895", "tags": "losangeles google santamonica tokina photowalk getty 1755mmf28g af nikkor 1224mm f4 1224mmf4 50mmf14g photowalkla d300snikon"}, {"datetaken": "2011-10-29 19:48:08", "license": "2", "title": "Google Photogs", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6230/6392902839_7de6169122_o.jpg", "secret": "1e17f36eab", "media": "photo", "latitude": "0", "id": "6392902839", "tags": "losangeles google santamonica tokina photowalk getty 1755mmf28g nikkor 1224mmf4 50mmf14g photowalkla d300snikon"}, {"datetaken": "2011-10-29 20:04:49", "license": "2", "title": "Chat'N", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7158/6392906987_09b180abfb_o.jpg", "secret": "9f62b35153", "media": "photo", "latitude": "0", "id": "6392906987", "tags": "losangeles google santamonica tokina photowalk getty 1755mmf28g nikkor 1224mmf4 50mmf14g photowalkla d300snikon"}, {"datetaken": "2011-10-29 20:06:34", "license": "2", "title": "Stairlights", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7175/6392911633_154114d1c6_o.jpg", "secret": "705a7a44bd", "media": "photo", "latitude": "0", "id": "6392911633", "tags": "losangeles google santamonica tokina photowalk getty 1755mmf28g nikkor 1224mmf4 50mmf14g photowalkla d300snikon"}, {"datetaken": "2011-10-29 20:20:51", "license": "2", "title": "Colour Stairs", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6237/6392917277_309a7246e5_o.jpg", "secret": "d0c1c3c64a", "media": "photo", "latitude": "0", "id": "6392917277", "tags": "losangeles google santamonica tokina photowalk getty 1755mmf28g nikkor 1224mmf4 50mmf14g photowalkla d300snikon"}, {"datetaken": "2011-10-29 20:21:36", "license": "2", "title": "Light this way", "text": "", "album_id": "72157628033104348", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7022/6392922517_63fd1bec93_o.jpg", "secret": "ba7ea2c473", "media": "photo", "latitude": "0", "id": "6392922517", "tags": "losangeles google santamonica tokina photowalk getty 1755mmf28g nikkor 1224mmf4 50mmf14g photowalkla d300snikon"}, {"datetaken": "2010-01-28 18:17:04", "license": "3", "title": "2010.01.28_0156.jpg", "text": "", "album_id": "72157623229321139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4331676970_f257f69f05_o.jpg", "secret": "35f60f450e", "media": "photo", "latitude": "0", "id": "4331676970", "tags": "art boston cheese exhibition dmi massart loususi"}, {"datetaken": "2010-01-28 18:17:42", "license": "3", "title": "2010.01.28_0158.jpg", "text": "", "album_id": "72157623229321139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4330940567_da21330335_o.jpg", "secret": "4e373b2a5d", "media": "photo", "latitude": "0", "id": "4330940567", "tags": "art boston cheese exhibition dmi massart loususi"}, {"datetaken": "2010-01-28 18:17:59", "license": "3", "title": "2010.01.28_0159.jpg", "text": "", "album_id": "72157623229321139", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4331678056_6628d8e17f_o.jpg", "secret": "12c843a8b9", "media": "photo", "latitude": "0", "id": "4331678056", "tags": "art boston cheese exhibition dmi massart loususi"}, {"datetaken": "2010-01-28 18:18:46", "license": "3", "title": "2010.01.28_0162.jpg", "text": "", "album_id": "72157623229321139", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4331678744_727ef6a29d_o.jpg", "secret": "db6524565b", "media": "photo", "latitude": "0", "id": "4331678744", "tags": "art boston cheese exhibition dmi massart loususi"}, {"datetaken": "2010-01-28 18:19:12", "license": "3", "title": "2010.01.28_0163.jpg", "text": "", "album_id": "72157623229321139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4330942419_9edfe1edb8_o.jpg", "secret": "67ebb30bbd", "media": "photo", "latitude": "0", "id": "4330942419", "tags": "art boston cheese exhibition dmi massart loususi"}, {"datetaken": "2010-01-28 18:19:57", "license": "3", "title": "2010.01.28_0166.jpg", "text": "", "album_id": "72157623229321139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4330942989_6862f5c533_o.jpg", "secret": "9f3f1f21e5", "media": "photo", "latitude": "0", "id": "4330942989", "tags": "art boston cheese exhibition dmi massart loususi"}, {"datetaken": "2010-01-28 18:20:33", "license": "3", "title": "2010.01.28_0168.jpg", "text": "", "album_id": "72157623229321139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4331680436_1022f8a223_o.jpg", "secret": "1b803f7fa0", "media": "photo", "latitude": "0", "id": "4331680436", "tags": "art boston cheese exhibition dmi massart loususi"}, {"datetaken": "2010-01-28 18:21:10", "license": "3", "title": "2010.01.28_0169.jpg", "text": "", "album_id": "72157623229321139", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4330944241_af204af0bf_o.jpg", "secret": "161751530f", "media": "photo", "latitude": "0", "id": "4330944241", "tags": "art boston cheese exhibition dmi massart loususi"}, {"datetaken": "2010-01-28 18:36:06", "license": "3", "title": "2010.01.28_0172.jpg", "text": "", "album_id": "72157623229321139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4331681822_c73a07cfa7_o.jpg", "secret": "9b2818ab20", "media": "photo", "latitude": "0", "id": "4331681822", "tags": "art boston cheese exhibition dmi massart loususi"}, {"datetaken": "2010-01-28 19:13:35", "license": "3", "title": "2010.01.28_0189.jpg", "text": "", "album_id": "72157623229321139", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2698/4330945643_1643254e86_o.jpg", "secret": "707a566f04", "media": "photo", "latitude": "0", "id": "4330945643", "tags": "art boston cheese exhibition dmi massart loususi"}, {"datetaken": "2010-01-28 19:16:37", "license": "3", "title": "2010.01.28_0192.jpg", "text": "", "album_id": "72157623229321139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4331683506_1ff1a772f4_o.jpg", "secret": "44b2583b3c", "media": "photo", "latitude": "0", "id": "4331683506", "tags": "art boston cheese exhibition dmi massart loususi"}, {"datetaken": "2010-01-28 19:24:24", "license": "3", "title": "2010.01.28_0193.jpg", "text": "", "album_id": "72157623229321139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4331684326_36ce48a8d2_o.jpg", "secret": "13c6205821", "media": "photo", "latitude": "0", "id": "4331684326", "tags": "art boston cheese exhibition dmi massart loususi"}, {"datetaken": "2010-01-28 19:25:18", "license": "3", "title": "2010.01.28_0197.jpg", "text": "", "album_id": "72157623229321139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4331685242_4bfcd25abe_o.jpg", "secret": "d7dddb7351", "media": "photo", "latitude": "0", "id": "4331685242", "tags": "art boston cheese exhibition dmi massart loususi"}, {"datetaken": "2010-01-28 19:30:24", "license": "3", "title": "2010.01.28_0200.jpg", "text": "", "album_id": "72157623229321139", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2757/4331686112_bf278f7abd_o.jpg", "secret": "b571708c92", "media": "photo", "latitude": "0", "id": "4331686112", "tags": "art boston cheese exhibition dmi massart loususi"}, {"datetaken": "2010-01-28 19:30:42", "license": "3", "title": "2010.01.28_0203.jpg", "text": "", "album_id": "72157623229321139", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4331686940_46c14ec026_o.jpg", "secret": "2846274c52", "media": "photo", "latitude": "0", "id": "4331686940", "tags": "art boston cheese exhibition dmi massart loususi"}, {"datetaken": "2010-01-28 19:31:54", "license": "3", "title": "2010.01.28_0213.jpg", "text": "", "album_id": "72157623229321139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4330950723_c343882e5f_o.jpg", "secret": "e3e6990342", "media": "photo", "latitude": "0", "id": "4330950723", "tags": "art boston cheese exhibition dmi massart loususi"}, {"datetaken": "2010-01-28 19:36:06", "license": "3", "title": "2010.01.28_0219.jpg", "text": "", "album_id": "72157623229321139", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4330951569_b040eddc47_o.jpg", "secret": "70dc0324e8", "media": "photo", "latitude": "0", "id": "4330951569", "tags": "art boston cheese exhibition dmi massart loususi"}, {"datetaken": "2011-07-03 11:22:19", "license": "1", "title": "super frame, drawn out comb, some honey", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6042/5901446736_3c6fde754b_o.jpg", "secret": "c24e3a05cd", "media": "photo", "latitude": "0", "id": "5901446736", "tags": ""}, {"datetaken": "2011-07-03 11:22:38", "license": "1", "title": "this super was only added a few days ago and is already being filled with honey", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5119/5900883575_e9a82bb31c_o.jpg", "secret": "87e19bcc48", "media": "photo", "latitude": "0", "id": "5900883575", "tags": ""}, {"datetaken": "2011-07-03 11:22:45", "license": "1", "title": "super frame, see how the comb has been drawn out by the bees into hexagonal cells - the frame starts out with an almost flat piece of wax base.", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6011/5901447802_607c95c953_o.jpg", "secret": "cb2259c9aa", "media": "photo", "latitude": "0", "id": "5901447802", "tags": ""}, {"datetaken": "2011-07-03 11:22:54", "license": "1", "title": "", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5315/5901448250_54e6a52722_o.jpg", "secret": "77250bf55f", "media": "photo", "latitude": "0", "id": "5901448250", "tags": ""}, {"datetaken": "2011-07-03 11:25:01", "license": "1", "title": "", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5278/5901448728_2bb1d55e26_o.jpg", "secret": "c1163a282e", "media": "photo", "latitude": "0", "id": "5901448728", "tags": ""}, {"datetaken": "2011-07-03 11:25:08", "license": "1", "title": "these bees are a lovely light colour and really furry!", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5078/5900885697_1f04cb29ef_o.jpg", "secret": "b7eb87617f", "media": "photo", "latitude": "0", "id": "5900885697", "tags": ""}, {"datetaken": "2011-07-03 11:25:31", "license": "1", "title": "smoker at the ready, although not needed much with these ones", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5152/5901449710_67af4b332a_o.jpg", "secret": "630d698985", "media": "photo", "latitude": "0", "id": "5901449710", "tags": ""}, {"datetaken": "2011-07-03 11:25:43", "license": "1", "title": "this grid over the brood box is a queen excluder, makes sure she stays in the brood box, the other bees can pass freely", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6039/5900886757_c07c354e6a_o.jpg", "secret": "bef3ee116f", "media": "photo", "latitude": "0", "id": "5900886757", "tags": ""}, {"datetaken": "2011-07-03 11:25:55", "license": "1", "title": "using the hive tool to prise off the queen excluder, the bees stick it down each time", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5075/5901450748_e924e4dd2f_o.jpg", "secret": "5faf2d9cb4", "media": "photo", "latitude": "0", "id": "5901450748", "tags": ""}, {"datetaken": "2011-07-03 11:28:06", "license": "1", "title": "partially capped honey, the honey on the left is still being processed by the bees", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6099/5901451338_26100526eb_o.jpg", "secret": "83aeb76188", "media": "photo", "latitude": "0", "id": "5901451338", "tags": ""}, {"datetaken": "2011-07-03 11:29:05", "license": "1", "title": "a textbook brood box frame - brood cells in the centre, honey stores around the edges", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5239/5900888481_95552703fa_o.jpg", "secret": "4d0cf9067e", "media": "photo", "latitude": "0", "id": "5900888481", "tags": ""}, {"datetaken": "2011-07-03 11:29:18", "license": "1", "title": "capped brood and capped honey (top right)", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5116/5901452546_43a7622aa7_o.jpg", "secret": "63fcd5efc1", "media": "photo", "latitude": "0", "id": "5901452546", "tags": ""}, {"datetaken": "2011-07-03 11:29:49", "license": "1", "title": "busy bees", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5280/5901453428_d27163a8bc_o.jpg", "secret": "b0190fa987", "media": "photo", "latitude": "0", "id": "5901453428", "tags": ""}, {"datetaken": "2011-07-03 11:30:39", "license": "1", "title": "", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6025/5900890729_fe71c22e96_o.jpg", "secret": "3e540e075c", "media": "photo", "latitude": "0", "id": "5900890729", "tags": ""}, {"datetaken": "2011-07-03 11:32:14", "license": "1", "title": "look carefully at this photo ... not only is the queen here but there are bee larvae in the cells on the bottom left", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6039/5901454676_226910ebd1_o.jpg", "secret": "24ea32589e", "media": "photo", "latitude": "0", "id": "5901454676", "tags": ""}, {"datetaken": "2011-07-03 11:32:22", "license": "1", "title": "queen slightly below centre", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5116/5900892049_ce08f000ab_o.jpg", "secret": "1174683bde", "media": "photo", "latitude": "0", "id": "5900892049", "tags": ""}, {"datetaken": "2011-07-03 11:34:25", "license": "1", "title": "", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5035/5900892673_732a8612fd_o.jpg", "secret": "ed53537f0b", "media": "photo", "latitude": "0", "id": "5900892673", "tags": ""}, {"datetaken": "2011-07-03 11:40:20", "license": "1", "title": "holding the frame vertically over the brodd box just in case the queen falls off", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5031/5900893251_ea6ec7b4f9_o.jpg", "secret": "9302e3b215", "media": "photo", "latitude": "0", "id": "5900893251", "tags": ""}, {"datetaken": "2011-07-03 11:40:27", "license": "1", "title": "", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5152/5900893991_40b34b34bb_o.jpg", "secret": "748340fa17", "media": "photo", "latitude": "0", "id": "5900893991", "tags": ""}, {"datetaken": "2011-07-03 11:40:52", "license": "1", "title": "", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6050/5901457860_ab02fb0712_o.jpg", "secret": "4c2d675f8e", "media": "photo", "latitude": "0", "id": "5901457860", "tags": ""}, {"datetaken": "2011-07-03 11:57:24", "license": "1", "title": "hive no. 1 team writing up notes", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5311/5900895173_24cfa58b12_o.jpg", "secret": "e311d42fb5", "media": "photo", "latitude": "0", "id": "5900895173", "tags": ""}, {"datetaken": "2011-07-03 11:57:31", "license": "1", "title": "hives 1 and 4 teams at work", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6008/5901458942_5c76631001_o.jpg", "secret": "fe9f01a020", "media": "photo", "latitude": "0", "id": "5901458942", "tags": ""}, {"datetaken": "2011-07-03 12:05:20", "license": "1", "title": "hive entrance", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5313/5900896505_d68ef4a4ea_o.jpg", "secret": "9c7ce1a81f", "media": "photo", "latitude": "0", "id": "5900896505", "tags": ""}, {"datetaken": "2011-07-03 12:05:28", "license": "1", "title": "", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5155/5901460328_b15d24526f_o.jpg", "secret": "78af66378d", "media": "photo", "latitude": "0", "id": "5901460328", "tags": ""}, {"datetaken": "2011-07-03 12:05:46", "license": "1", "title": "", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5031/5900897985_c729a23b5c_o.jpg", "secret": "245c88d9b9", "media": "photo", "latitude": "0", "id": "5900897985", "tags": ""}, {"datetaken": "2011-07-03 12:06:19", "license": "1", "title": "30 seconds of activity at a hive entrance, spot the bees coming in with pollen", "text": "", "album_id": "72157626989753927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6014/5901484610_2705fcf268_o.jpg", "secret": "ebdb7a9624", "media": "video", "latitude": "0", "id": "5901484610", "tags": "movie"}, {"datetaken": "2010-05-05 16:40:22", "license": "1", "title": "Bocce - Washington Park - 05.05.10 -1", "text": "", "album_id": "72157624067292822", "longitude": "-73.768215", "url_o": "https://farm2.staticflickr.com/1362/4609993868_e4098f006f_o.jpg", "secret": "b761d8d700", "media": "photo", "latitude": "42.653009", "id": "4609993868", "tags": "park usa ny washington spring may albany 2010 washingtonpark canonef24105mmf4lisusm"}, {"datetaken": "2010-05-05 17:22:51", "license": "1", "title": "Bocce - Washington Park - 05.05.10 -2", "text": "", "album_id": "72157624067292822", "longitude": "-73.768150", "url_o": "https://farm4.staticflickr.com/3307/4609995844_0ae7330fe0_o.jpg", "secret": "c202b28245", "media": "photo", "latitude": "42.656039", "id": "4609995844", "tags": "usa ny spring may albany 2010 washingtonpark canonef24105mmf40lisusm"}, {"datetaken": "2010-05-05 17:29:01", "license": "1", "title": "Bocce - Washington Park - 05.05.10 -3", "text": "", "album_id": "72157624067292822", "longitude": "-73.768150", "url_o": "https://farm4.staticflickr.com/3338/4609997874_867a51b84d_o.jpg", "secret": "4d590eb1ae", "media": "photo", "latitude": "42.656039", "id": "4609997874", "tags": "usa ny spring may albany 2010 washingtonpark canonef24105mmf40lisusm"}, {"datetaken": "2010-05-05 17:38:33", "license": "1", "title": "Bocce - Washington Park - 05.05.10 -4", "text": "", "album_id": "72157624067292822", "longitude": "-73.768150", "url_o": "https://farm5.staticflickr.com/4055/4609390413_0fac47cbed_o.jpg", "secret": "687fb7269a", "media": "photo", "latitude": "42.656039", "id": "4609390413", "tags": "usa ny spring may albany 2010 washingtonpark canonef24105mmf40lisusm"}, {"datetaken": "2010-05-05 18:12:48", "license": "1", "title": "Bocce - Washington Park - 05.05.10 -5", "text": "", "album_id": "72157624067292822", "longitude": "-73.769717", "url_o": "https://farm5.staticflickr.com/4019/4610001494_71a085fedb_o.jpg", "secret": "710d35dece", "media": "photo", "latitude": "42.654769", "id": "4610001494", "tags": "usa ny ball spring may albany bocce 2010 bocceball washingtonpark canonef24105mmf40lisusm"}, {"datetaken": "2010-05-05 18:14:07", "license": "1", "title": "Bocce - Washington Park - 05.05.10 -7", "text": "", "album_id": "72157624067292822", "longitude": "-73.769717", "url_o": "https://farm2.staticflickr.com/1002/4610004458_bb34b819e4_o.jpg", "secret": "a588f36f17", "media": "photo", "latitude": "42.654769", "id": "4610004458", "tags": "usa ny ball spring may albany bocce 2010 bocceball washingtonpark canonef24105mmf40lisusm"}, {"datetaken": "2010-05-05 18:14:30", "license": "1", "title": "Bocce - Washington Park - 05.05.10 -8", "text": "", "album_id": "72157624067292822", "longitude": "-73.769717", "url_o": "https://farm2.staticflickr.com/1121/4610005746_1891bfa5fd_o.jpg", "secret": "e49e76a4b3", "media": "photo", "latitude": "42.654769", "id": "4610005746", "tags": "usa ny ball spring may albany bocce 2010 bocceball washingtonpark canonef24105mmf40lisusm"}, {"datetaken": "2010-05-05 18:21:23", "license": "1", "title": "Bocce - Washington Park - 05.05.10 -9", "text": "", "album_id": "72157624067292822", "longitude": "-73.769717", "url_o": "https://farm2.staticflickr.com/1354/4609398093_17d8eb5fe1_o.jpg", "secret": "59030a6845", "media": "photo", "latitude": "42.654769", "id": "4609398093", "tags": "usa ny ball spring may albany bocce 2010 bocceball washingtonpark canonef24105mmf40lisusm"}, {"datetaken": "2010-05-05 18:22:43", "license": "1", "title": "Bocce - Washington Park - 05.05.10 -16", "text": "", "album_id": "72157624067292822", "longitude": "-73.769717", "url_o": "https://farm2.staticflickr.com/1045/4610021684_e6c801e53c_o.jpg", "secret": "5c31a61bdf", "media": "photo", "latitude": "42.654769", "id": "4610021684", "tags": "usa ny ball spring may albany bocce 2010 bocceball washingtonpark canonef24105mmf40lisusm"}, {"datetaken": "2010-05-05 18:23:02", "license": "1", "title": "Bocce - Washington Park - 05.05.10 -10", "text": "", "album_id": "72157624067292822", "longitude": "-73.769717", "url_o": "https://farm2.staticflickr.com/1426/4610008512_7699ee69a2_o.jpg", "secret": "27caae3698", "media": "photo", "latitude": "42.654769", "id": "4610008512", "tags": "usa ny ball spring may albany bocce 2010 bocceball washingtonpark canonef24105mmf40lisusm"}, {"datetaken": "2010-05-05 18:24:45", "license": "1", "title": "Bocce - Washington Park - 05.05.10 -12", "text": "", "album_id": "72157624067292822", "longitude": "-73.769717", "url_o": "https://farm2.staticflickr.com/1225/4609402943_6e945d1fab_o.jpg", "secret": "a6834a6f09", "media": "photo", "latitude": "42.654769", "id": "4609402943", "tags": "usa ny ball spring may albany bocce 2010 bocceball washingtonpark canonef24105mmf40lisusm"}, {"datetaken": "2010-05-05 18:25:45", "license": "1", "title": "Bocce - Washington Park - 05.05.10 -11", "text": "", "album_id": "72157624067292822", "longitude": "-73.769717", "url_o": "https://farm2.staticflickr.com/1311/4609401317_017d47d1b9_o.jpg", "secret": "0548b82c24", "media": "photo", "latitude": "42.654769", "id": "4609401317", "tags": "usa ny ball spring may albany bocce 2010 bocceball washingtonpark canonef24105mmf40lisusm"}, {"datetaken": "2010-05-05 18:31:53", "license": "1", "title": "Bocce - Washington Park - 05.05.10 -13", "text": "", "album_id": "72157624067292822", "longitude": "-73.769717", "url_o": "https://farm4.staticflickr.com/3330/4609404817_9485b0fa5b_o.jpg", "secret": "d2b0656c9d", "media": "photo", "latitude": "42.654769", "id": "4609404817", "tags": "usa ny ball spring may albany bocce 2010 bocceball washingtonpark canonef24105mmf40lisusm"}, {"datetaken": "2010-05-05 18:32:34", "license": "1", "title": "Bocce - Washington Park - 05.05.10 -6", "text": "", "album_id": "72157624067292822", "longitude": "-73.769717", "url_o": "https://farm5.staticflickr.com/4010/4609394025_e5e1696603_o.jpg", "secret": "27b7796b5b", "media": "photo", "latitude": "42.654769", "id": "4609394025", "tags": "usa ny ball spring may albany bocce 2010 bocceball washingtonpark canonef24105mmf40lisusm"}, {"datetaken": "2010-05-05 18:33:44", "license": "1", "title": "Bocce - Washington Park - 05.05.10 -14", "text": "", "album_id": "72157624067292822", "longitude": "-73.769717", "url_o": "https://farm5.staticflickr.com/4053/4609406907_1ce4d255f8_o.jpg", "secret": "c0bf0edf28", "media": "photo", "latitude": "42.654769", "id": "4609406907", "tags": "usa ny ball spring may albany bocce 2010 bocceball washingtonpark canonef24105mmf40lisusm"}, {"datetaken": "2010-05-05 18:33:46", "license": "1", "title": "Bocce - Washington Park - 05.05.10 -15", "text": "", "album_id": "72157624067292822", "longitude": "-73.769717", "url_o": "https://farm2.staticflickr.com/1085/4610018654_6d6c08b332_o.jpg", "secret": "c507dc18e3", "media": "photo", "latitude": "42.654769", "id": "4610018654", "tags": "usa ny ball spring may albany bocce 2010 bocceball washingtonpark canonef24105mmf40lisusm"}, {"datetaken": "2010-05-05 18:38:35", "license": "1", "title": "Bocce - Washington Park - 05.05.10 -17", "text": "", "album_id": "72157624067292822", "longitude": "-73.769717", "url_o": "https://farm5.staticflickr.com/4037/4609416053_dd63b91b99_o.jpg", "secret": "5bf39f76e5", "media": "photo", "latitude": "42.654769", "id": "4609416053", "tags": "usa ny spring may albany guns 2010 washingtonpark canonef24105mmf40lisusm"}, {"datetaken": "2011-12-01 10:40:26", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7025/6462087475_d2e2c073ae_o.jpg", "secret": "b6e89fe56c", "media": "photo", "latitude": "0", "id": "6462087475", "tags": "marketing orlando florida events unitedstatesofamerica places activity tradeshow gokarts karts worldkartingassociation redbullkartfight"}, {"datetaken": "2011-12-01 10:41:30", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7162/6462088395_435e3c0c2c_o.jpg", "secret": "50b93df323", "media": "photo", "latitude": "0", "id": "6462088395", "tags": "marketing orlando florida events unitedstatesofamerica places activity tradeshow gokarts karts worldkartingassociation redbullkartfight"}, {"datetaken": "2011-12-01 10:42:08", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6462089195_4eb65df208_o.jpg", "secret": "477b31248b", "media": "photo", "latitude": "0", "id": "6462089195", "tags": "marketing orlando florida events unitedstatesofamerica places activity tradeshow gokarts karts worldkartingassociation redbullkartfight"}, {"datetaken": "2011-12-01 10:43:17", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7157/6462090401_531ca35ab6_o.jpg", "secret": "ca503a195e", "media": "photo", "latitude": "0", "id": "6462090401", "tags": "marketing orlando florida events unitedstatesofamerica places activity tradeshow gokarts karts worldkartingassociation redbullkartfight"}, {"datetaken": "2011-12-01 11:02:41", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7151/6462091217_9c633686d1_o.jpg", "secret": "f4e16ac751", "media": "photo", "latitude": "0", "id": "6462091217", "tags": "marketing orlando florida events unitedstatesofamerica places activity tradeshow gokarts karts worldkartingassociation redbullkartfight"}, {"datetaken": "2011-12-01 11:15:38", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7151/6462092037_25022a2b02_o.jpg", "secret": "7d953f2b2f", "media": "photo", "latitude": "0", "id": "6462092037", "tags": "marketing orlando florida events unitedstatesofamerica places activity cnc tradeshow rottler"}, {"datetaken": "2011-12-01 11:17:06", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7004/6462092707_8e635fa5b5_o.jpg", "secret": "12aab07499", "media": "photo", "latitude": "0", "id": "6462092707", "tags": "marketing orlando florida events unitedstatesofamerica places activity tradeshow"}, {"datetaken": "2011-12-01 11:21:23", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7035/6462093329_d0031315d8_o.jpg", "secret": "dea258e206", "media": "photo", "latitude": "0", "id": "6462093329", "tags": "marketing orlando florida events unitedstatesofamerica places chassis activity f11 tradeshow kitcar shelbyseries1"}, {"datetaken": "2011-12-01 12:17:01", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7165/6462094123_d93c070807_o.jpg", "secret": "1fa65bb832", "media": "photo", "latitude": "0", "id": "6462094123", "tags": "marketing orlando florida events unitedstatesofamerica places activity tradeshow idg industrialdistributiongroup"}, {"datetaken": "2011-12-01 12:26:17", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7014/6462094651_06ef8e79dd_o.jpg", "secret": "0c7c03bea2", "media": "photo", "latitude": "0", "id": "6462094651", "tags": "marketing orlando florida events unitedstatesofamerica places activity tradeshow idg industrialdistributiongroup"}, {"datetaken": "2011-12-01 13:50:27", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7016/6462095147_9e702bbcfd_o.jpg", "secret": "cb983d8ec6", "media": "photo", "latitude": "0", "id": "6462095147", "tags": "marketing orlando florida events unitedstatesofamerica places packaging activity bubblewrap tradeshow sealedair"}, {"datetaken": "2011-12-01 13:55:28", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7158/6462095753_346d550994_o.jpg", "secret": "b5cc790fd7", "media": "photo", "latitude": "0", "id": "6462095753", "tags": "marketing orlando florida events unitedstatesofamerica performance places activity tradeshow fordracing"}, {"datetaken": "2011-12-01 13:56:24", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7033/6462096331_deb63871a2_o.jpg", "secret": "cf1a494583", "media": "photo", "latitude": "0", "id": "6462096331", "tags": "marketing orlando florida events unitedstatesofamerica performance places activity tradeshow fordracing"}, {"datetaken": "2011-12-01 14:01:46", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7020/6462097129_688dd05b24_o.jpg", "secret": "be430bd2b9", "media": "photo", "latitude": "0", "id": "6462097129", "tags": "marketing orlando florida events unitedstatesofamerica places chassis activity f11 tradeshow kitcar shelbyseries1"}, {"datetaken": "2011-12-01 14:27:58", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6462097681_72cc0bd49f_o.jpg", "secret": "158de8891c", "media": "photo", "latitude": "0", "id": "6462097681", "tags": "marketing orlando florida events unitedstatesofamerica places racing dodge hemi mopar activity tradeshow"}, {"datetaken": "2011-12-01 14:33:50", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6462098595_91c1d3db08_o.jpg", "secret": "7b7abea76a", "media": "photo", "latitude": "0", "id": "6462098595", "tags": "marketing orlando florida events unitedstatesofamerica battery places braille activity tradeshow lithium leadfree"}, {"datetaken": "2011-12-01 15:00:04", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7143/6462099367_7218461a3e_o.jpg", "secret": "41a029bcc6", "media": "photo", "latitude": "0", "id": "6462099367", "tags": "marketing orlando florida events unitedstatesofamerica places activity tradeshow compressedair staubli"}, {"datetaken": "2011-12-01 15:22:32", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7160/6462100069_baaf92d826_o.jpg", "secret": "f1bbe4c558", "media": "photo", "latitude": "0", "id": "6462100069", "tags": "photography marketing video 3d orlando florida events unitedstatesofamerica places hero highdefinition activity tradeshow gopro"}, {"datetaken": "2011-12-01 15:47:00", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7030/6462100717_569979fc99_o.jpg", "secret": "19313bd92f", "media": "photo", "latitude": "0", "id": "6462100717", "tags": "photography marketing video 3d orlando florida events unitedstatesofamerica places hero highdefinition activity tradeshow gopro"}, {"datetaken": "2011-12-01 15:47:07", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7173/6462101469_af8d3faf16_o.jpg", "secret": "fa9b6bac31", "media": "photo", "latitude": "0", "id": "6462101469", "tags": "photography marketing video 3d orlando florida events unitedstatesofamerica places hero highdefinition activity tradeshow gopro"}, {"datetaken": "2011-12-01 15:47:30", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7033/6462102007_37f2c2a6a0_o.jpg", "secret": "4880d1a79c", "media": "photo", "latitude": "0", "id": "6462102007", "tags": "photography marketing video 3d orlando florida events unitedstatesofamerica places hero highdefinition activity tradeshow gopro"}, {"datetaken": "2011-12-01 15:55:38", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7004/6462102487_d26b0dd835_o.jpg", "secret": "85d50b80bc", "media": "photo", "latitude": "0", "id": "6462102487", "tags": "photography marketing video 3d orlando florida events unitedstatesofamerica places hero highdefinition activity tradeshow gopro"}, {"datetaken": "2011-12-01 16:00:09", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7149/6462103235_dc82d81b98_o.jpg", "secret": "0981df3f19", "media": "photo", "latitude": "0", "id": "6462103235", "tags": "marketing orlando florida events unitedstatesofamerica places prototype bmw activity daytona tradeshow dinan rileyracecar"}, {"datetaken": "2011-12-01 16:00:46", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7014/6462103981_f55f051d35_o.jpg", "secret": "2fd7cb5808", "media": "photo", "latitude": "0", "id": "6462103981", "tags": "marketing orlando florida events unitedstatesofamerica places activity spicer tradeshow drivetrain"}, {"datetaken": "2011-12-01 16:24:48", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6462104805_bfc2588e48_o.jpg", "secret": "4c5fc85044", "media": "photo", "latitude": "0", "id": "6462104805", "tags": "marketing orlando florida events unitedstatesofamerica places activity tradeshow gokarts karts sodi sodikart worldkartingassociation redbullkartfight"}, {"datetaken": "2011-12-01 16:29:44", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6462105477_92ac37cf80_o.jpg", "secret": "a0f804d108", "media": "photo", "latitude": "0", "id": "6462105477", "tags": "marketing orlando florida events unitedstatesofamerica places activity tradeshow hendrickmotorsports crudensimulators"}, {"datetaken": "2011-12-01 16:32:33", "license": "3", "title": "Performance Racing Industry 2011 Trade Show", "text": "", "album_id": "72157628295941191", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7035/6462106083_2ced7425ea_o.jpg", "secret": "72ee63df67", "media": "photo", "latitude": "0", "id": "6462106083", "tags": "marketing orlando florida events unitedstatesofamerica places activity tradeshow hendrickmotorsports crudensimulators"}, {"datetaken": "2011-05-20 11:43:31", "license": "1", "title": "Puerto antiguo", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5278/5806461074_33d12e204d_o.jpg", "secret": "de1dedeec6", "media": "photo", "latitude": "0", "id": "5806461074", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 08:47:22", "license": "1", "title": "El tiempo", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5275/5806462186_1dd9554308_o.jpg", "secret": "e6a5df77bc", "media": "photo", "latitude": "0", "id": "5806462186", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 08:49:30", "license": "1", "title": "Tudor medieval", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3374/5805899977_25d1b645c6_o.jpg", "secret": "61094c8a38", "media": "photo", "latitude": "0", "id": "5805899977", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 08:51:20", "license": "1", "title": "Winchester City Mill", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2582/5806465536_035d3711c0_o.jpg", "secret": "6df5fbc440", "media": "photo", "latitude": "0", "id": "5806465536", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 08:51:35", "license": "1", "title": "R\u00edo Itchen", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3223/5805902961_41e8e59ca7_o.jpg", "secret": "2f7da2eb8d", "media": "photo", "latitude": "0", "id": "5805902961", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 08:51:48", "license": "1", "title": "The Broadway", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2583/5805904377_07b20041fc_o.jpg", "secret": "9263db271f", "media": "photo", "latitude": "0", "id": "5805904377", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 08:52:30", "license": "1", "title": "Puente", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2158/5806469750_1c22c74dc5_o.jpg", "secret": "50d10b0dd0", "media": "photo", "latitude": "0", "id": "5806469750", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 08:58:47", "license": "1", "title": "Tejas", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3131/5805907303_f6ccf756b9_o.jpg", "secret": "97c40e2c81", "media": "photo", "latitude": "0", "id": "5805907303", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 09:16:52", "license": "1", "title": "High St", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2267/5805908895_da2934e451_o.jpg", "secret": "d25a1355d5", "media": "photo", "latitude": "0", "id": "5805908895", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 09:17:34", "license": "1", "title": "Tudoroso cerca de Winchester Buttercross", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2526/5805909969_46a2303abf_o.jpg", "secret": "4e72feb276", "media": "photo", "latitude": "0", "id": "5805909969", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 09:18:50", "license": "1", "title": "Winchester Buttercross", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2444/5806475138_977f4ac351_o.jpg", "secret": "9b24afd50c", "media": "photo", "latitude": "0", "id": "5806475138", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 09:31:08", "license": "1", "title": "Huarache: Winchester Cathedral", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2160/5805912431_571f95bd75_o.jpg", "secret": "4f76653160", "media": "photo", "latitude": "0", "id": "5805912431", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 10:01:53", "license": "1", "title": "Winchester Cathedral", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5104/5806478022_78000c9e67_o.jpg", "secret": "22e2e34aae", "media": "photo", "latitude": "0", "id": "5806478022", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 10:10:59", "license": "1", "title": "Westgate Museum to High St", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3301/5805915541_c46eef232d_o.jpg", "secret": "33c5fa5e95", "media": "photo", "latitude": "0", "id": "5805915541", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 10:11:09", "license": "1", "title": "Westgate", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3646/5806481246_93f57d0bfe_o.jpg", "secret": "7c03a9366c", "media": "photo", "latitude": "0", "id": "5806481246", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 10:13:23", "license": "1", "title": "Westgate Museum", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5182/5805918913_a312a7758f_o.jpg", "secret": "fb62919b83", "media": "photo", "latitude": "0", "id": "5805918913", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 10:17:20", "license": "1", "title": "The Royal Green Jackets Museum\u200e", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/5806484504_df146d4c87_o.jpg", "secret": "d1669b826f", "media": "photo", "latitude": "0", "id": "5806484504", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 10:23:13", "license": "1", "title": "Edificio moderno \"tudoresco\"", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2081/5805922243_e145e61339_o.jpg", "secret": "ff4d75d1fe", "media": "photo", "latitude": "0", "id": "5805922243", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 11:11:04", "license": "1", "title": "Kinsgate St - 1", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5309/5805923753_6f6f90484e_o.jpg", "secret": "711a4bae35", "media": "photo", "latitude": "0", "id": "5805923753", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 11:11:15", "license": "1", "title": "Kinsgate St - 0", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5141/5805925393_e2dd12ecf5_o.jpg", "secret": "99eb28646e", "media": "photo", "latitude": "0", "id": "5805925393", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 11:21:01", "license": "1", "title": "Wolvesey Castle 2", "text": "", "album_id": "72157626778373335", "longitude": "-1.310334", "url_o": "https://farm4.staticflickr.com/3185/5805927197_df1dc0ca25_o.jpg", "secret": "235d1c3996", "media": "photo", "latitude": "51.058579", "id": "5805927197", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 11:21:12", "license": "1", "title": "Wolvesey Castle 1", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2545/5805928867_c68e153c5e_o.jpg", "secret": "8792d0afdc", "media": "photo", "latitude": "0", "id": "5805928867", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 11:23:41", "license": "1", "title": "Wolvesey Castle 0", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2381/5805930381_1f6419685a_o.jpg", "secret": "da1c85b101", "media": "photo", "latitude": "0", "id": "5805930381", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 12:14:00", "license": "1", "title": "Arboles 2", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3266/5805932143_22d94e4963_o.jpg", "secret": "5ce9d071ce", "media": "photo", "latitude": "0", "id": "5805932143", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 12:14:09", "license": "1", "title": "Arboles 1", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2054/5806497850_67706a88b3_o.jpg", "secret": "27eccd02c3", "media": "photo", "latitude": "0", "id": "5806497850", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 12:30:59", "license": "1", "title": "Techo 1", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5233/5805934875_d19140cf31_o.jpg", "secret": "0d2eddf60a", "media": "photo", "latitude": "0", "id": "5805934875", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 12:32:30", "license": "1", "title": "Escena", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3210/5805935457_2f5db4de17_o.jpg", "secret": "97162e393a", "media": "photo", "latitude": "0", "id": "5805935457", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 12:34:11", "license": "1", "title": "Techo", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5040/5805935991_5e6c07f5c8_o.jpg", "secret": "118d2032cc", "media": "photo", "latitude": "0", "id": "5805935991", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2011-05-21 12:36:12", "license": "1", "title": "Interior pub o taverna", "text": "", "album_id": "72157626778373335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2502/5805895767_57134b9b21_o.jpg", "secret": "4d1ec193e5", "media": "photo", "latitude": "0", "id": "5805895767", "tags": "hampshire pubs southampton winchester beerfestival ales pubcrawl"}, {"datetaken": "2010-07-06 11:13:10", "license": "1", "title": "Shadow", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4767060319_4850191dcf_o.jpg", "secret": "4c4512314b", "media": "photo", "latitude": "0", "id": "4767060319", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 11:13:53", "license": "1", "title": "Petrina", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4767700264_ce60150d4d_o.jpg", "secret": "d064f7693d", "media": "photo", "latitude": "0", "id": "4767700264", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 11:36:53", "license": "1", "title": "Walking to meet their donkeys", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4767063007_411898314c_o.jpg", "secret": "c0ce5fa2d3", "media": "photo", "latitude": "0", "id": "4767063007", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 11:40:56", "license": "1", "title": "Groucho", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4767064377_3192d22797_o.jpg", "secret": "9d8de216de", "media": "photo", "latitude": "0", "id": "4767064377", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 11:41:42", "license": "1", "title": "Connor", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4767704742_ed2f670be0_o.jpg", "secret": "a217d039df", "media": "photo", "latitude": "0", "id": "4767704742", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 11:41:45", "license": "1", "title": "Daragh", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4767706020_2453f56f28_o.jpg", "secret": "9147f94009", "media": "photo", "latitude": "0", "id": "4767706020", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 11:44:58", "license": "1", "title": "Ned with Brian", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4767707262_047c288ecc_o.jpg", "secret": "6d2d79c5e5", "media": "photo", "latitude": "0", "id": "4767707262", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 11:46:54", "license": "1", "title": "Shirgar with Isabel", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4767708588_e675ee260d_o.jpg", "secret": "98a94d2d56", "media": "photo", "latitude": "0", "id": "4767708588", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 11:48:34", "license": "1", "title": "Joseph with Margaret", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4767072091_7bddd38677_o.jpg", "secret": "5048c9b7f3", "media": "photo", "latitude": "0", "id": "4767072091", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 11:50:03", "license": "1", "title": "Daragh with June", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4767074103_e7e50ce836_o.jpg", "secret": "69b42ca8a5", "media": "photo", "latitude": "0", "id": "4767074103", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 11:51:39", "license": "1", "title": "Sebastian with Diane", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4767714228_581bdb4c37_o.jpg", "secret": "9d1c4dc378", "media": "photo", "latitude": "0", "id": "4767714228", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 11:53:05", "license": "1", "title": "Dixie with Karen", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4767715310_e0dd5df88f_o.jpg", "secret": "405bd6747d", "media": "photo", "latitude": "0", "id": "4767715310", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 11:54:15", "license": "1", "title": "Groucho with Kim", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4767079103_87e36edeca_o.jpg", "secret": "aa77af992d", "media": "photo", "latitude": "0", "id": "4767079103", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 11:55:18", "license": "1", "title": "Dennis with Chris", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4767719312_d33a572c08_o.jpg", "secret": "884587d275", "media": "photo", "latitude": "0", "id": "4767719312", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 11:56:28", "license": "1", "title": "Connor with Valerie", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4767082517_279c2c37a1_o.jpg", "secret": "89e51abb46", "media": "photo", "latitude": "0", "id": "4767082517", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 11:58:20", "license": "1", "title": "Abbie with Sandra", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4767726936_9119ae3b3b_o.jpg", "secret": "b0263602c5", "media": "photo", "latitude": "0", "id": "4767726936", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 12:02:50", "license": "1", "title": "A gentle stroll", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4767722826_a32dfc5364_o.jpg", "secret": "f63b4c59c9", "media": "photo", "latitude": "0", "id": "4767722826", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 12:02:58", "license": "1", "title": "Abbie takes the lead", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4767086431_d480d5797c_o.jpg", "secret": "1bf8a850e3", "media": "photo", "latitude": "0", "id": "4767086431", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 12:03:11", "license": "1", "title": "A lovely day for a stroll", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4767685986_a7cd6cd35f_o.jpg", "secret": "751fd65615", "media": "photo", "latitude": "0", "id": "4767685986", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 12:03:16", "license": "1", "title": "Daragh", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4767689428_ed22c5499d_o.jpg", "secret": "fd1e106a05", "media": "photo", "latitude": "0", "id": "4767689428", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 12:03:19", "license": "1", "title": "Dixie", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4767693032_c4207b1d50_o.jpg", "secret": "50beeda380", "media": "photo", "latitude": "0", "id": "4767693032", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 12:05:13", "license": "1", "title": "Fred", "text": "", "album_id": "72157624434518516", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4767057545_07d1150f90_o.jpg", "secret": "42c8ce7aaa", "media": "photo", "latitude": "0", "id": "4767057545", "tags": "charity animal donkey devon sanctuary sidmouth equine"}, {"datetaken": "2010-07-06 12:27:12", "license": "3", "title": "bilde", "text": "", "album_id": "72157624437275314", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4768987074_807b9bd544_o.jpg", "secret": "f8593686c2", "media": "photo", "latitude": "0", "id": "4768987074", "tags": "kids children haiti earthquake savethechildren jacmel portauprince l\u00e9og\u00e2ne"}, {"datetaken": "2010-07-06 12:27:12", "license": "3", "title": "bilde2", "text": "", "album_id": "72157624437275314", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4768987116_5fd2039b4b_o.jpg", "secret": "38345ee008", "media": "photo", "latitude": "0", "id": "4768987116", "tags": "kids children haiti earthquake savethechildren jacmel portauprince l\u00e9og\u00e2ne"}, {"datetaken": "2010-07-06 12:27:13", "license": "3", "title": "bilde3", "text": "", "album_id": "72157624437275314", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4768987148_968e44daf4_o.jpg", "secret": "794e181ac3", "media": "photo", "latitude": "0", "id": "4768987148", "tags": "kids children haiti earthquake savethechildren jacmel portauprince l\u00e9og\u00e2ne"}, {"datetaken": "2010-07-06 12:27:13", "license": "3", "title": "bilde4", "text": "", "album_id": "72157624437275314", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4768349783_b141ce9b6f_o.jpg", "secret": "7ac7cf2b29", "media": "photo", "latitude": "0", "id": "4768349783", "tags": "kids children haiti earthquake savethechildren jacmel portauprince l\u00e9og\u00e2ne"}, {"datetaken": "2010-07-06 12:27:14", "license": "3", "title": "bilde7", "text": "", "album_id": "72157624437275314", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4768349829_38449ed44e_o.jpg", "secret": "8d55c3cec1", "media": "photo", "latitude": "0", "id": "4768349829", "tags": "kids children haiti earthquake savethechildren jacmel portauprince l\u00e9og\u00e2ne"}, {"datetaken": "2010-07-06 12:27:14", "license": "3", "title": "bilde5", "text": "", "album_id": "72157624437275314", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4768349805_7b8ecd8b1e_o.jpg", "secret": "d5180f32ca", "media": "photo", "latitude": "0", "id": "4768349805", "tags": "kids children haiti earthquake savethechildren jacmel portauprince l\u00e9og\u00e2ne"}, {"datetaken": "2010-07-06 12:27:14", "license": "3", "title": "bilde6", "text": "", "album_id": "72157624437275314", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4768987234_5f898d3982_o.jpg", "secret": "98251e8795", "media": "photo", "latitude": "0", "id": "4768987234", "tags": "kids children haiti earthquake savethechildren jacmel portauprince l\u00e9og\u00e2ne"}, {"datetaken": "2010-07-06 12:27:15", "license": "3", "title": "bilde9", "text": "", "album_id": "72157624437275314", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4768987282_fbb2a06517_o.jpg", "secret": "6dcfbda673", "media": "photo", "latitude": "0", "id": "4768987282", "tags": "kids children haiti earthquake savethechildren jacmel portauprince l\u00e9og\u00e2ne"}, {"datetaken": "2010-07-06 12:27:15", "license": "3", "title": "bilde8", "text": "", "album_id": "72157624437275314", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4768349865_2cebfa54b0_o.jpg", "secret": "79be01b3cb", "media": "photo", "latitude": "0", "id": "4768349865", "tags": "kids children haiti earthquake savethechildren jacmel portauprince l\u00e9og\u00e2ne"}, {"datetaken": "2010-07-06 12:27:15", "license": "3", "title": "bilde10", "text": "", "album_id": "72157624437275314", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4768987298_265eb45585_o.jpg", "secret": "d62f45a60a", "media": "photo", "latitude": "0", "id": "4768987298", "tags": "kids children haiti earthquake savethechildren jacmel portauprince l\u00e9og\u00e2ne"}, {"datetaken": "2011-05-07 14:06:09", "license": "1", "title": "Stone Soup Festiveal", "text": "", "album_id": "72157626582851995", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2298/5698417550_619639a0f3_o.jpg", "secret": "76aec9cfcc", "media": "photo", "latitude": "0", "id": "5698417550", "tags": ""}, {"datetaken": "2011-05-07 14:06:19", "license": "1", "title": "Vendor and Stone Soup Festiveal", "text": "", "album_id": "72157626582851995", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5062/5697848519_fae02c706b_o.jpg", "secret": "6f8f6f94c8", "media": "photo", "latitude": "0", "id": "5697848519", "tags": ""}, {"datetaken": "2011-05-07 14:06:32", "license": "1", "title": "Stone Soup Festival Saturday May 7, 2011", "text": "", "album_id": "72157626582851995", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5225/5698427664_80f549ca6f_o.jpg", "secret": "028dfd3064", "media": "photo", "latitude": "0", "id": "5698427664", "tags": ""}, {"datetaken": "2011-05-07 14:15:40", "license": "1", "title": "Ian Marcuse", "text": "", "album_id": "72157626582851995", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5270/5698430576_8fc7a27292_o.jpg", "secret": "75d8f018af", "media": "photo", "latitude": "0", "id": "5698430576", "tags": ""}, {"datetaken": "2011-05-07 14:15:50", "license": "1", "title": "Ian Marcuse", "text": "", "album_id": "72157626582851995", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2702/5697861253_97c3fa811a_o.jpg", "secret": "4e3203acbd", "media": "photo", "latitude": "0", "id": "5697861253", "tags": ""}, {"datetaken": "2011-05-07 14:35:12", "license": "1", "title": "Carissa and Erin", "text": "", "album_id": "72157626582851995", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3092/5697869463_f64b4b5433_o.jpg", "secret": "06398eec66", "media": "photo", "latitude": "0", "id": "5697869463", "tags": ""}, {"datetaken": "2011-05-07 14:35:20", "license": "1", "title": "Carissa and Erin", "text": "", "album_id": "72157626582851995", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5223/5697878235_0e224b8688_o.jpg", "secret": "576624bc52", "media": "photo", "latitude": "0", "id": "5697878235", "tags": ""}, {"datetaken": "2011-05-07 14:35:24", "license": "1", "title": "Carissa Murphy and Erin Nicols", "text": "", "album_id": "72157626582851995", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3586/5697882787_ce807e9400_o.jpg", "secret": "c54704f298", "media": "photo", "latitude": "0", "id": "5697882787", "tags": ""}, {"datetaken": "2011-05-07 14:35:28", "license": "1", "title": "Carissa Murphy and Erin Nicols", "text": "", "album_id": "72157626582851995", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3323/5697887413_91e0f7fc73_o.jpg", "secret": "de7e899bef", "media": "photo", "latitude": "0", "id": "5697887413", "tags": ""}, {"datetaken": "2011-05-07 14:40:26", "license": "1", "title": "EYA at Stone Soup Festival", "text": "", "album_id": "72157626582851995", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5145/5697892207_901dbe3f13_o.jpg", "secret": "ae7589e1ef", "media": "photo", "latitude": "0", "id": "5697892207", "tags": ""}, {"datetaken": "2002-05-25 12:43:05", "license": "3", "title": "0428-014 Kenny at Inverkip 1.JPG", "text": "", "album_id": "72157624109110897", "longitude": "-4.881856", "url_o": "https://farm5.staticflickr.com/4050/4683461418_b97094518e_o.jpg", "secret": "3792231e4c", "media": "photo", "latitude": "55.913511", "id": "4683461418", "tags": "uk scotland sailing location activities"}, {"datetaken": "2002-05-25 12:43:41", "license": "3", "title": "0428-017 Kingsley & Andy at Kip- adjusted.jpg", "text": "", "album_id": "72157624109110897", "longitude": "-4.881856", "url_o": "https://farm5.staticflickr.com/4018/4682832421_b2b0b9e9dc_o.jpg", "secret": "a04663668b", "media": "photo", "latitude": "55.913511", "id": "4682832421", "tags": "uk andy scotland sailing location davy"}, {"datetaken": "2002-05-25 12:43:55", "license": "3", "title": "0428-015 Kenny at Inverkip 2.JPG", "text": "", "album_id": "72157624109110897", "longitude": "-4.881856", "url_o": "https://farm5.staticflickr.com/4003/4683461930_2c4657ec5a_o.jpg", "secret": "32d408ed5b", "media": "photo", "latitude": "55.913511", "id": "4683461930", "tags": "uk scotland sailing location activities"}, {"datetaken": "2002-05-25 12:44:21", "license": "3", "title": "0428-019 Kingsley at Inverkip 1.JPG", "text": "", "album_id": "72157624109110897", "longitude": "-4.881856", "url_o": "https://farm5.staticflickr.com/4056/4683464050_7932d9dac4_o.jpg", "secret": "e9f67aba55", "media": "photo", "latitude": "55.913511", "id": "4683464050", "tags": "uk scotland sailing location activities"}, {"datetaken": "2002-05-25 12:44:29", "license": "3", "title": "0428-003 Alastair at Inverkip 1- adjusted.jpg", "text": "", "album_id": "72157624109110897", "longitude": "-4.881856", "url_o": "https://farm5.staticflickr.com/4061/4683457262_6440f50f3f_o.jpg", "secret": "bf6e253c30", "media": "photo", "latitude": "55.913511", "id": "4683457262", "tags": "uk scotland sailing location"}, {"datetaken": "2002-05-25 14:23:02", "license": "3", "title": "0428-013 Kenny & Kingsley.JPG", "text": "", "album_id": "72157624109110897", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4682830135_d34b12ea08_o.jpg", "secret": "707149e414", "media": "photo", "latitude": "0", "id": "4682830135", "tags": "uk scotland sailing location activities"}, {"datetaken": "2002-05-25 14:23:09", "license": "3", "title": "0428-001 Alastair 1.JPG", "text": "", "album_id": "72157624109110897", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4683455742_8bfe5826b6_o.jpg", "secret": "98fd94b7c2", "media": "photo", "latitude": "0", "id": "4683455742", "tags": "uk scotland sailing location activities"}, {"datetaken": "2002-05-25 14:23:40", "license": "3", "title": "0428-027 Stormy weather 1.JPG", "text": "", "album_id": "72157624109110897", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4683468666_2b09229426_o.jpg", "secret": "348c01461a", "media": "photo", "latitude": "0", "id": "4683468666", "tags": "uk scotland sailing location activities"}, {"datetaken": "2002-05-25 14:24:05", "license": "3", "title": "0428-028 Stormy weather 2.JPG", "text": "", "album_id": "72157624109110897", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4683469068_e211345fb1_o.jpg", "secret": "898051565b", "media": "photo", "latitude": "0", "id": "4683469068", "tags": "uk scotland sailing location activities"}, {"datetaken": "2002-05-25 15:32:11", "license": "3", "title": "0428-004 Andy & Kenny 1- adjusted.jpg", "text": "", "album_id": "72157624109110897", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4682827003_ec08989a41_o.jpg", "secret": "05d39126fe", "media": "photo", "latitude": "0", "id": "4682827003", "tags": "uk andy scotland sailing location davy"}, {"datetaken": "2002-05-25 15:32:23", "license": "3", "title": "0428-005 Andy & Kenny 2- adjusted.jpg", "text": "", "album_id": "72157624109110897", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4683458214_917f06c3e5_o.jpg", "secret": "9f23eb4dea", "media": "photo", "latitude": "0", "id": "4683458214", "tags": "uk andy scotland sailing location davy"}, {"datetaken": "2002-05-25 15:32:57", "license": "3", "title": "0428-007 Andy & Kenny 3.JPG", "text": "", "album_id": "72157624109110897", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4683458684_232a6024e6_o.jpg", "secret": "ab42441bd7", "media": "photo", "latitude": "0", "id": "4683458684", "tags": "uk people andy scotland sailing location activities davy"}, {"datetaken": "2002-05-25 16:40:05", "license": "3", "title": "0428-020 Kingsley, Kenny & Alastair.JPG", "text": "", "album_id": "72157624109110897", "longitude": "-5.058002", "url_o": "https://farm5.staticflickr.com/4060/4682834231_91391da93c_o.jpg", "secret": "0b75c84300", "media": "photo", "latitude": "55.844626", "id": "4682834231", "tags": "uk scotland sailing location activities"}, {"datetaken": "2002-05-25 16:40:22", "license": "3", "title": "0428-025 Rothesay Rainbow.JPG", "text": "", "album_id": "72157624109110897", "longitude": "-5.058002", "url_o": "https://farm5.staticflickr.com/4027/4683467540_2a9ef91847_o.jpg", "secret": "d8f6162117", "media": "photo", "latitude": "55.844626", "id": "4683467540", "tags": "uk scotland sailing location activities rothesay"}, {"datetaken": "2002-05-25 16:40:59", "license": "3", "title": "0428-026 Rothesay.JPG", "text": "", "album_id": "72157624109110897", "longitude": "-5.058002", "url_o": "https://farm5.staticflickr.com/4006/4683468180_f9dbe56907_o.jpg", "secret": "e185113870", "media": "photo", "latitude": "55.844626", "id": "4683468180", "tags": "uk scotland sailing location activities rothesay"}, {"datetaken": "2002-05-25 16:45:57", "license": "3", "title": "0428-021 Kingsley, Kenny & Andy.JPG", "text": "", "album_id": "72157624109110897", "longitude": "-5.058002", "url_o": "https://farm5.staticflickr.com/4062/4683465394_104014380c_o.jpg", "secret": "528085420f", "media": "photo", "latitude": "55.844626", "id": "4683465394", "tags": "uk andy scotland sailing location activities davy rothesay"}, {"datetaken": "2002-05-25 16:46:17", "license": "3", "title": "0428-009 Andy.JPG", "text": "", "album_id": "72157624109110897", "longitude": "-5.058002", "url_o": "https://farm5.staticflickr.com/4044/4682828385_86a4723d46_o.jpg", "secret": "16a9c5787d", "media": "photo", "latitude": "55.844626", "id": "4682828385", "tags": "uk andy scotland sailing location activities davy rothesay"}, {"datetaken": "2002-05-25 16:46:53", "license": "3", "title": "0428-024 On the moorings.JPG", "text": "", "album_id": "72157624109110897", "longitude": "-5.058002", "url_o": "https://farm5.staticflickr.com/4071/4683467152_99ac57279e_o.jpg", "secret": "80c8bd924f", "media": "photo", "latitude": "55.844626", "id": "4683467152", "tags": "uk scotland sailing location activities rothesay"}, {"datetaken": "2002-05-25 18:27:33", "license": "3", "title": "0428-011 Kenny & Alastair - A well-earned beer 1.JPG", "text": "", "album_id": "72157624109110897", "longitude": "-5.058002", "url_o": "https://farm5.staticflickr.com/4034/4683460114_2e217c8874_o.jpg", "secret": "bbeb6fb00f", "media": "photo", "latitude": "55.844626", "id": "4683460114", "tags": "uk scotland sailing location activities rothesay"}, {"datetaken": "2002-05-25 18:29:29", "license": "3", "title": "0428-012 Kenny & Alastair - A well-earned beer 2.JPG", "text": "", "album_id": "72157624109110897", "longitude": "-5.058002", "url_o": "https://farm5.staticflickr.com/4010/4682829875_d4d40ffbed_o.jpg", "secret": "2d867d293d", "media": "photo", "latitude": "55.844626", "id": "4682829875", "tags": "uk scotland sailing location activities rothesay"}, {"datetaken": "2002-05-25 20:23:40", "license": "3", "title": "0428-016 Kenny, Alastair & Andy - Lasagne for 4.JPG", "text": "", "album_id": "72157624109110897", "longitude": "-5.058002", "url_o": "https://farm5.staticflickr.com/4035/4683462492_c27e6da61c_o.jpg", "secret": "8412e447c1", "media": "photo", "latitude": "55.844626", "id": "4683462492", "tags": "uk food andy scotland sailing location category activities davy rothesay"}, {"datetaken": "2002-05-26 09:38:04", "license": "3", "title": "0428-002 Alastair 2.JPG", "text": "", "album_id": "72157624109110897", "longitude": "-5.058002", "url_o": "https://farm5.staticflickr.com/4071/4683456328_7cf71e61b5_o.jpg", "secret": "862a20492a", "media": "photo", "latitude": "55.844626", "id": "4683456328", "tags": "uk scotland sailing location activities rothesay"}, {"datetaken": "2002-05-26 09:38:31", "license": "3", "title": "0428-018 Kingsley & Kenny.JPG", "text": "", "album_id": "72157624109110897", "longitude": "-5.129842", "url_o": "https://farm5.staticflickr.com/4009/4682832843_6bab4f0f1d_o.jpg", "secret": "dcb622de04", "media": "photo", "latitude": "55.906451", "id": "4682832843", "tags": "uk scotland sailing location activities"}, {"datetaken": "2002-05-26 11:00:12", "license": "3", "title": "0428-022 Kingsley.JPG", "text": "", "album_id": "72157624109110897", "longitude": "-5.129842", "url_o": "https://farm5.staticflickr.com/4048/4682835399_ae6383caa3_o.jpg", "secret": "07acded860", "media": "photo", "latitude": "55.906451", "id": "4682835399", "tags": "uk scotland sailing location activities"}, {"datetaken": "2002-05-26 11:00:37", "license": "3", "title": "0428-023 Lunch.JPG", "text": "", "album_id": "72157624109110897", "longitude": "-5.129842", "url_o": "https://farm5.staticflickr.com/4013/4683466664_05b254172f_o.jpg", "secret": "179a93ac91", "media": "photo", "latitude": "55.906451", "id": "4683466664", "tags": "uk food scotland sailing location category activities"}, {"datetaken": "2002-05-26 11:00:47", "license": "3", "title": "0428-010 Kenny - The skipper.JPG", "text": "", "album_id": "72157624109110897", "longitude": "-5.129842", "url_o": "https://farm5.staticflickr.com/4057/4682828885_ed91c5ceb4_o.jpg", "secret": "60bb2bb8fc", "media": "photo", "latitude": "55.906451", "id": "4682828885", "tags": "uk scotland sailing location activities"}, {"datetaken": "2011-06-24 11:30:45", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6013/5916039494_6e8b9f82dc_o.jpg", "secret": "55e73a5a74", "media": "photo", "latitude": "0", "id": "5916039494", "tags": ""}, {"datetaken": "2011-06-24 11:31:57", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5035/5915480113_d57dd81663_o.jpg", "secret": "10a59a49b1", "media": "photo", "latitude": "0", "id": "5915480113", "tags": ""}, {"datetaken": "2011-06-24 11:48:10", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6047/5916093340_66a72f8240_o.jpg", "secret": "dcfb86eab7", "media": "photo", "latitude": "0", "id": "5916093340", "tags": ""}, {"datetaken": "2011-06-24 12:40:42", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6028/5916055792_dcb8143316_o.jpg", "secret": "38fcfe266f", "media": "photo", "latitude": "0", "id": "5916055792", "tags": ""}, {"datetaken": "2011-06-24 12:47:57", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6023/5916041344_77063be365_o.jpg", "secret": "8b696cb9ac", "media": "photo", "latitude": "0", "id": "5916041344", "tags": ""}, {"datetaken": "2011-06-24 13:08:48", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6055/5915498403_2c526ac6f3_o.jpg", "secret": "c2c1c5089d", "media": "photo", "latitude": "0", "id": "5915498403", "tags": ""}, {"datetaken": "2011-06-24 13:28:47", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6002/5916057840_9a769f74d9_o.jpg", "secret": "2fb2bdf5b2", "media": "photo", "latitude": "0", "id": "5916057840", "tags": ""}, {"datetaken": "2011-06-24 13:56:36", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5231/5915482177_d5e0f57880_o.jpg", "secret": "7e83df3399", "media": "photo", "latitude": "0", "id": "5915482177", "tags": ""}, {"datetaken": "2011-06-24 13:58:38", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6027/5915495691_21d6cdae15_o.jpg", "secret": "4113c1ef55", "media": "photo", "latitude": "0", "id": "5915495691", "tags": ""}, {"datetaken": "2011-06-24 13:59:11", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6059/5915482865_b64cd1b3d8_o.jpg", "secret": "9b39554201", "media": "photo", "latitude": "0", "id": "5915482865", "tags": ""}, {"datetaken": "2011-06-24 14:02:47", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5075/5915483763_ea91d0e473_o.jpg", "secret": "dbb1ef147a", "media": "photo", "latitude": "0", "id": "5915483763", "tags": ""}, {"datetaken": "2011-06-24 14:11:24", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5312/5915484537_92e51cf325_o.jpg", "secret": "34feee6f14", "media": "photo", "latitude": "0", "id": "5915484537", "tags": ""}, {"datetaken": "2011-06-24 14:14:19", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5234/5916045984_7a84a13cd5_o.jpg", "secret": "1210ca266f", "media": "photo", "latitude": "0", "id": "5916045984", "tags": ""}, {"datetaken": "2011-06-24 14:31:25", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5116/5916047040_2884777288_o.jpg", "secret": "fdccbc1495", "media": "photo", "latitude": "0", "id": "5916047040", "tags": ""}, {"datetaken": "2011-06-24 14:37:04", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6003/5916048002_53b4b8deef_o.jpg", "secret": "72de204a5d", "media": "photo", "latitude": "0", "id": "5916048002", "tags": ""}, {"datetaken": "2011-06-24 14:38:49", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6043/5916048982_dbcfb4068d_o.jpg", "secret": "277b4ed0fd", "media": "photo", "latitude": "0", "id": "5916048982", "tags": ""}, {"datetaken": "2011-06-24 14:39:13", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5039/5916049948_0b44f08b30_o.jpg", "secret": "d8561a6691", "media": "photo", "latitude": "0", "id": "5916049948", "tags": ""}, {"datetaken": "2011-06-24 14:44:19", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5152/5915490355_b90cca2f0f_o.jpg", "secret": "0d6734f336", "media": "photo", "latitude": "0", "id": "5915490355", "tags": ""}, {"datetaken": "2011-06-24 17:18:39", "license": "4", "title": "Corps Day 2011", "text": "", "album_id": "72157627022622825", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6045/5916128538_7319c65092_o.jpg", "secret": "5dce2c51c3", "media": "photo", "latitude": "0", "id": "5916128538", "tags": ""}, {"datetaken": "2011-10-05 12:54:20", "license": "1", "title": "Nancy, our guide", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6162/6224488401_300d8dbfb2_o.jpg", "secret": "9a003fe5e9", "media": "photo", "latitude": "0", "id": "6224488401", "tags": ""}, {"datetaken": "2011-10-05 12:57:10", "license": "1", "title": "Beading", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6095/6225010822_8f10fc7c49_o.jpg", "secret": "2b513dd44a", "media": "photo", "latitude": "0", "id": "6225010822", "tags": ""}, {"datetaken": "2011-10-05 12:57:49", "license": "1", "title": "Pottery", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6221/6225013014_008bb03fd3_o.jpg", "secret": "5fb4217688", "media": "photo", "latitude": "0", "id": "6225013014", "tags": ""}, {"datetaken": "2011-10-05 13:04:56", "license": "1", "title": "Blowgun, tools for making it, and dart", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6163/6224495001_47ab67b4a1_o.jpg", "secret": "0a94a20fdf", "media": "photo", "latitude": "0", "id": "6224495001", "tags": ""}, {"datetaken": "2011-10-05 13:07:19", "license": "1", "title": "Heating river cane (bamboo relative- http://en.wikipedia.org/wiki/Arundinaria) so it can be straightened", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6106/6225017948_b655a99024_o.jpg", "secret": "1819f8903b", "media": "photo", "latitude": "0", "id": "6225017948", "tags": ""}, {"datetaken": "2011-10-05 13:08:22", "license": "1", "title": "Plant material the dart tails are made of", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6038/6225020344_652cc7417c_o.jpg", "secret": "369407310b", "media": "photo", "latitude": "0", "id": "6225020344", "tags": ""}, {"datetaken": "2011-10-05 13:10:38", "license": "1", "title": "Basket making", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6057/6225025694_c3dcbe3c0e_o.jpg", "secret": "46725254f4", "media": "photo", "latitude": "0", "id": "6225025694", "tags": ""}, {"datetaken": "2011-10-05 13:12:00", "license": "1", "title": "Basket making", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6215/6224508571_627412ed73_o.jpg", "secret": "9a0b915a9c", "media": "photo", "latitude": "0", "id": "6224508571", "tags": ""}, {"datetaken": "2011-10-05 13:15:59", "license": "1", "title": "Basket", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6095/6225030466_d21a358d9d_o.jpg", "secret": "d2a5f5fb51", "media": "photo", "latitude": "0", "id": "6225030466", "tags": ""}, {"datetaken": "2011-10-05 13:30:23", "license": "1", "title": "Dancing", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6111/6225032172_512d9c8560_o.jpg", "secret": "15c6f22a2d", "media": "photo", "latitude": "0", "id": "6225032172", "tags": ""}, {"datetaken": "2011-10-05 13:34:16", "license": "1", "title": "Corn harvest dance", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6166/6224513869_946f2c1722_o.jpg", "secret": "7cdcd103b4", "media": "photo", "latitude": "0", "id": "6224513869", "tags": ""}, {"datetaken": "2011-10-05 13:36:12", "license": "1", "title": "Buffalo dance", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6039/6224516001_c45efa1679_o.jpg", "secret": "a31c0422f0", "media": "photo", "latitude": "0", "id": "6224516001", "tags": ""}, {"datetaken": "2011-10-05 13:36:28", "license": "1", "title": "Buffalo dance", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6056/6224516801_3fbb4a8d78_o.jpg", "secret": "17dcd1eb0f", "media": "photo", "latitude": "0", "id": "6224516801", "tags": ""}, {"datetaken": "2011-10-05 13:39:30", "license": "1", "title": "Ground hog dance", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6159/6225037758_c4d0c19cb6_o.jpg", "secret": "55d153d669", "media": "photo", "latitude": "0", "id": "6225037758", "tags": ""}, {"datetaken": "2011-10-05 13:41:40", "license": "1", "title": "Bear dance", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6152/6225038610_ea98cf5526_o.jpg", "secret": "aee5d99bae", "media": "photo", "latitude": "0", "id": "6225038610", "tags": ""}, {"datetaken": "2011-10-05 13:42:29", "license": "1", "title": "Bear dance", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6228/6224519273_c78aec1ebb_o.jpg", "secret": "009b6b4535", "media": "photo", "latitude": "0", "id": "6224519273", "tags": ""}, {"datetaken": "2011-10-05 13:42:46", "license": "1", "title": "Bear dance", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6222/6225040708_59438f3ccb_o.jpg", "secret": "e2ed6de906", "media": "photo", "latitude": "0", "id": "6225040708", "tags": ""}, {"datetaken": "2011-10-05 13:50:04", "license": "1", "title": "Arrow heads", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6096/6225042158_c7d4bb4785_o.jpg", "secret": "0150fbbeee", "media": "photo", "latitude": "0", "id": "6225042158", "tags": ""}, {"datetaken": "2011-10-05 13:52:58", "license": "1", "title": "Blow gun", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6157/6224523323_ae31630265_o.jpg", "secret": "ec5f7b1532", "media": "photo", "latitude": "0", "id": "6224523323", "tags": ""}, {"datetaken": "2011-10-05 13:54:18", "license": "1", "title": "Our guide explains the bear trap", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6233/6225045802_f8b2325314_o.jpg", "secret": "2a2b6f37a0", "media": "photo", "latitude": "0", "id": "6225045802", "tags": ""}, {"datetaken": "2011-10-05 13:54:50", "license": "1", "title": "Our guide explains the traps", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6225/6224527893_a247692bc8_o.jpg", "secret": "c302f77685", "media": "photo", "latitude": "0", "id": "6224527893", "tags": ""}, {"datetaken": "2011-10-05 13:58:05", "license": "1", "title": "The wooden chimney is lined with stones", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6059/6225049750_36374e8179_o.jpg", "secret": "a737559c5c", "media": "photo", "latitude": "0", "id": "6225049750", "tags": ""}, {"datetaken": "2011-10-05 14:00:17", "license": "1", "title": "Pounding cornmeal", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6233/6224532327_29819fcf14_o.jpg", "secret": "64dbbb1a87", "media": "photo", "latitude": "0", "id": "6224532327", "tags": ""}, {"datetaken": "2011-10-05 14:04:57", "license": "1", "title": "Sweat lodge", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6107/6225054170_d442456c6d_o.jpg", "secret": "a4353f05c0", "media": "photo", "latitude": "0", "id": "6225054170", "tags": ""}, {"datetaken": "2011-10-05 14:05:43", "license": "1", "title": "Finger weaving", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6092/6224536483_810b7c3a8a_o.jpg", "secret": "616d210a15", "media": "photo", "latitude": "0", "id": "6224536483", "tags": ""}, {"datetaken": "2011-10-05 14:06:04", "license": "1", "title": "Finger weaving", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6041/6225058532_071811cff3_o.jpg", "secret": "9233a1a840", "media": "photo", "latitude": "0", "id": "6225058532", "tags": ""}, {"datetaken": "2011-10-05 14:09:07", "license": "1", "title": "Finger weaving", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6120/6224540957_d1d6427cdd_o.jpg", "secret": "a18f77fbdc", "media": "photo", "latitude": "0", "id": "6224540957", "tags": ""}, {"datetaken": "2011-10-05 14:11:03", "license": "1", "title": "Woven reeds", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6107/6224543797_e456036028_o.jpg", "secret": "09a6698491", "media": "photo", "latitude": "0", "id": "6224543797", "tags": ""}, {"datetaken": "2011-10-05 14:15:18", "license": "1", "title": "hollowing out a log with fire", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6219/6224545797_8978c120e2_o.jpg", "secret": "18b5703ff6", "media": "photo", "latitude": "0", "id": "6224545797", "tags": ""}, {"datetaken": "2011-10-05 14:25:30", "license": "1", "title": "Nancy, our guide", "text": "", "album_id": "72157627849092412", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6060/6224548543_a084e71920_o.jpg", "secret": "8246fb081f", "media": "photo", "latitude": "0", "id": "6224548543", "tags": ""}, {"datetaken": "2011-08-16 11:01:10", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.621529", "url_o": "https://farm7.staticflickr.com/6093/6329391862_69e39a7b20_o.jpg", "secret": "f5664d8e11", "media": "photo", "latitude": "44.803926", "id": "6329391862", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:06:08", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.621500", "url_o": "https://farm7.staticflickr.com/6236/6329393320_0754652ee6_o.jpg", "secret": "7eaa38d5f4", "media": "photo", "latitude": "44.803999", "id": "6329393320", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:12:38", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.616833", "url_o": "https://farm7.staticflickr.com/6041/6328641537_d5bbf59513_o.jpg", "secret": "c25cdb0496", "media": "photo", "latitude": "44.800333", "id": "6328641537", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:12:51", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.616833", "url_o": "https://farm7.staticflickr.com/6116/6328643623_f0448504be_o.jpg", "secret": "b6d3ca20af", "media": "photo", "latitude": "44.800333", "id": "6328643623", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:17:28", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.617833", "url_o": "https://farm7.staticflickr.com/6216/6329398140_9c7a734bf7_o.jpg", "secret": "8fe50fbde3", "media": "photo", "latitude": "44.799833", "id": "6329398140", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:17:36", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.617833", "url_o": "https://farm7.staticflickr.com/6240/6329399412_7416c3d92d_o.jpg", "secret": "db7047d44a", "media": "photo", "latitude": "44.799833", "id": "6329399412", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:20:20", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.618000", "url_o": "https://farm7.staticflickr.com/6215/6329400522_2cf9601acc_o.jpg", "secret": "47951f23d6", "media": "photo", "latitude": "44.799833", "id": "6329400522", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:21:11", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.617500", "url_o": "https://farm7.staticflickr.com/6035/6328648389_0097ae038e_o.jpg", "secret": "1b5d3f8b5a", "media": "photo", "latitude": "44.799333", "id": "6328648389", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:21:21", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.617500", "url_o": "https://farm7.staticflickr.com/6231/6329403132_0edbd3e44d_o.jpg", "secret": "cf519e420e", "media": "photo", "latitude": "44.799333", "id": "6329403132", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:21:39", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.617333", "url_o": "https://farm7.staticflickr.com/6033/6329404268_5e3f1a03d4_o.jpg", "secret": "082f882454", "media": "photo", "latitude": "44.799499", "id": "6329404268", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:28:01", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.619166", "url_o": "https://farm7.staticflickr.com/6101/6329405466_b20f28cb6d_o.jpg", "secret": "9b71328fd9", "media": "photo", "latitude": "44.801166", "id": "6329405466", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:33:56", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.617500", "url_o": "https://farm7.staticflickr.com/6037/6329406698_a09f4b0b02_o.jpg", "secret": "8b3896f1da", "media": "photo", "latitude": "44.798500", "id": "6329406698", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:34:03", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.617500", "url_o": "https://farm7.staticflickr.com/6102/6328654361_23315839b5_o.jpg", "secret": "1130cafa88", "media": "photo", "latitude": "44.798500", "id": "6328654361", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:38:02", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.615666", "url_o": "https://farm7.staticflickr.com/6107/6328655621_e0a825a56c_o.jpg", "secret": "cbdff29987", "media": "photo", "latitude": "44.795833", "id": "6328655621", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:39:12", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.615833", "url_o": "https://farm7.staticflickr.com/6238/6329410012_08879765a6_o.jpg", "secret": "f59091d807", "media": "photo", "latitude": "44.795833", "id": "6329410012", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:39:55", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.616333", "url_o": "https://farm7.staticflickr.com/6233/6329411254_4f34ec08e8_o.jpg", "secret": "40f7d9fca9", "media": "photo", "latitude": "44.796333", "id": "6329411254", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:54:55", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.626666", "url_o": "https://farm7.staticflickr.com/6059/6329413100_4d4faab32d_o.jpg", "secret": "33da67b4be", "media": "photo", "latitude": "44.802666", "id": "6329413100", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:55:03", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.626704", "url_o": "https://farm7.staticflickr.com/6234/6329414220_3693767513_o.jpg", "secret": "d65df7130a", "media": "photo", "latitude": "44.802649", "id": "6329414220", "tags": "france lot rocamadour"}, {"datetaken": "2011-08-16 11:55:10", "license": "5", "title": "Rocamadour", "text": "", "album_id": "72157627965597479", "longitude": "1.626666", "url_o": "https://farm7.staticflickr.com/6052/6329415584_dcd505d346_o.jpg", "secret": "d7b0526ddb", "media": "photo", "latitude": "44.802666", "id": "6329415584", "tags": "france lot rocamadour"}, {"datetaken": "2011-12-08 11:18:19", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7030/6481835497_8ecc495033_o.jpg", "secret": "be1e054a0e", "media": "photo", "latitude": "0", "id": "6481835497", "tags": "army virginia suffolk december iraq guard 8 national welcomehome 2011 2ndsquadron tf183 183rdcavalry"}, {"datetaken": "2011-12-08 11:18:55", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7026/6481836173_3596e94522_o.jpg", "secret": "4952a3afe9", "media": "photo", "latitude": "0", "id": "6481836173", "tags": "army virginia suffolk december iraq guard 8 national welcomehome 2011 2ndsquadron tf183 183rdcavalry"}, {"datetaken": "2011-12-08 11:20:45", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7018/6481837389_509172d08c_o.jpg", "secret": "779c20018f", "media": "photo", "latitude": "0", "id": "6481837389", "tags": "army virginia suffolk december iraq guard 8 national welcomehome 2011 2ndsquadron tf183 183rdcavalry"}, {"datetaken": "2011-12-08 11:22:49", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7010/6481837747_751b443420_o.jpg", "secret": "e45895891e", "media": "photo", "latitude": "0", "id": "6481837747", "tags": "army virginia suffolk december iraq guard 8 national welcomehome 2011 2ndsquadron tf183 183rdcavalry"}, {"datetaken": "2011-12-08 11:23:32", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7174/6481838601_6217502189_o.jpg", "secret": "d500729340", "media": "photo", "latitude": "0", "id": "6481838601", "tags": "army virginia suffolk december iraq guard 8 national welcomehome 2011 2ndsquadron tf183 183rdcavalry"}, {"datetaken": "2011-12-08 11:24:36", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7169/6481839487_0b0403c23b_o.jpg", "secret": "dd8cc101fa", "media": "photo", "latitude": "0", "id": "6481839487", "tags": "army virginia suffolk december iraq guard 8 national welcomehome 2011 2ndsquadron tf183 183rdcavalry"}, {"datetaken": "2011-12-08 11:25:24", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7158/6481840541_e3ec3d3d3c_o.jpg", "secret": "fa63eafbb9", "media": "photo", "latitude": "0", "id": "6481840541", "tags": "army virginia suffolk december iraq guard 8 national welcomehome 2011 2ndsquadron tf183 183rdcavalry"}, {"datetaken": "2011-12-08 11:29:42", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7151/6481841137_ffa07bc7c6_o.jpg", "secret": "7b3b5fd814", "media": "photo", "latitude": "0", "id": "6481841137", "tags": "army virginia suffolk december iraq guard 8 national welcomehome 2011 2ndsquadron tf183 183rdcavalry"}, {"datetaken": "2011-12-08 11:30:43", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7001/6481843217_f9bab095d8_o.jpg", "secret": "6813cc01cc", "media": "photo", "latitude": "0", "id": "6481843217", "tags": "army virginia suffolk december iraq guard 8 national welcomehome 2011 2ndsquadron tf183 183rdcavalry"}, {"datetaken": "2011-12-09 01:06:01", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7157/6481268499_e101976f65_o.jpg", "secret": "4f2161b33c", "media": "photo", "latitude": "0", "id": "6481268499", "tags": "virginia suffolk 2ndsquadron virginianationalguard troopb 116thbrigadecombatteam 183rdcavalryregiment soldierreturn"}, {"datetaken": "2011-12-09 01:14:50", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7033/6481268929_e00ceee1c6_o.jpg", "secret": "a9a7c3ca45", "media": "photo", "latitude": "0", "id": "6481268929", "tags": "virginia suffolk 2ndsquadron virginianationalguard troopb 116thbrigadecombatteam 183rdcavalryregiment soldierreturn"}, {"datetaken": "2011-12-09 01:16:11", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7033/6481269409_c8c18e1f7d_o.jpg", "secret": "420a9a1a29", "media": "photo", "latitude": "0", "id": "6481269409", "tags": "virginia suffolk 2ndsquadron virginianationalguard troopb 116thbrigadecombatteam 183rdcavalryregiment soldierreturn"}, {"datetaken": "2011-12-09 01:16:20", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7152/6481269793_04b3628e41_o.jpg", "secret": "dec64a2e3e", "media": "photo", "latitude": "0", "id": "6481269793", "tags": "virginia suffolk 2ndsquadron virginianationalguard troopb 116thbrigadecombatteam 183rdcavalryregiment soldierreturn"}, {"datetaken": "2011-12-09 01:16:26", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7164/6481270249_c5cc8547a2_o.jpg", "secret": "fefc68dd77", "media": "photo", "latitude": "0", "id": "6481270249", "tags": "virginia suffolk 2ndsquadron virginianationalguard troopb 116thbrigadecombatteam 183rdcavalryregiment soldierreturn"}, {"datetaken": "2011-12-09 01:16:41", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7161/6481270635_bf01e27103_o.jpg", "secret": "7f4bcb9b9b", "media": "photo", "latitude": "0", "id": "6481270635", "tags": "virginia suffolk 2ndsquadron virginianationalguard troopb 116thbrigadecombatteam 183rdcavalryregiment soldierreturn"}, {"datetaken": "2011-12-09 01:17:15", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7173/6481270987_d82527a331_o.jpg", "secret": "1509311c9c", "media": "photo", "latitude": "0", "id": "6481270987", "tags": "virginia suffolk 2ndsquadron virginianationalguard troopb 116thbrigadecombatteam 183rdcavalryregiment soldierreturn"}, {"datetaken": "2011-12-09 01:18:54", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7169/6481271471_5dbb26eb38_o.jpg", "secret": "be1f4f03ce", "media": "photo", "latitude": "0", "id": "6481271471", "tags": "virginia suffolk 2ndsquadron virginianationalguard troopb 116thbrigadecombatteam 183rdcavalryregiment soldierreturn"}, {"datetaken": "2011-12-09 01:19:11", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7013/6481271799_4536d7b6ee_o.jpg", "secret": "4b40ae67f0", "media": "photo", "latitude": "0", "id": "6481271799", "tags": "virginia suffolk 2ndsquadron virginianationalguard troopb 116thbrigadecombatteam 183rdcavalryregiment soldierreturn"}, {"datetaken": "2011-12-09 01:21:42", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7018/6481272245_eaf1e98bfa_o.jpg", "secret": "c865617828", "media": "photo", "latitude": "0", "id": "6481272245", "tags": "virginia suffolk 2ndsquadron virginianationalguard troopb 116thbrigadecombatteam 183rdcavalryregiment soldierreturn"}, {"datetaken": "2011-12-09 01:22:24", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7034/6481272609_184c330dce_o.jpg", "secret": "5016695295", "media": "photo", "latitude": "0", "id": "6481272609", "tags": "virginia suffolk 2ndsquadron virginianationalguard troopb 116thbrigadecombatteam 183rdcavalryregiment soldierreturn"}, {"datetaken": "2011-12-09 01:24:20", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7023/6481272943_0966123554_o.jpg", "secret": "f06caa169b", "media": "photo", "latitude": "0", "id": "6481272943", "tags": "virginia suffolk 2ndsquadron virginianationalguard troopb 116thbrigadecombatteam 183rdcavalryregiment soldierreturn"}, {"datetaken": "2011-12-09 01:24:41", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7015/6481273249_d00cf6e1d2_o.jpg", "secret": "c8ffc2b1da", "media": "photo", "latitude": "0", "id": "6481273249", "tags": "virginia suffolk 2ndsquadron virginianationalguard troopb 116thbrigadecombatteam 183rdcavalryregiment soldierreturn"}, {"datetaken": "2011-12-09 01:26:24", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7146/6481273581_0794e6662d_o.jpg", "secret": "75458b336b", "media": "photo", "latitude": "0", "id": "6481273581", "tags": "virginia suffolk 2ndsquadron virginianationalguard troopb 116thbrigadecombatteam 183rdcavalryregiment soldierreturn"}, {"datetaken": "2011-12-09 01:26:50", "license": "2", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq", "text": "", "album_id": "72157628343838277", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7152/6481273937_132efaa097_o.jpg", "secret": "8d3585aff7", "media": "photo", "latitude": "0", "id": "6481273937", "tags": "virginia suffolk 2ndsquadron virginianationalguard troopb 116thbrigadecombatteam 183rdcavalryregiment soldierreturn"}, {"datetaken": "2010-09-10 10:09:39", "license": "5", "title": "DSC_0152", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4085/4976754288_a89bde3a04_o.jpg", "secret": "9101678405", "media": "photo", "latitude": "17.928762", "id": "4976754288", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 10:10:17", "license": "5", "title": "DSC_0155", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4085/4976147365_7d74a59f44_o.jpg", "secret": "e377365784", "media": "photo", "latitude": "17.928762", "id": "4976147365", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 10:11:53", "license": "5", "title": "Into the distance", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4116/4976762224_bbfb6a4ec5_o.jpg", "secret": "fa4c586b93", "media": "photo", "latitude": "17.928762", "id": "4976762224", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 10:12:38", "license": "5", "title": "Waterfall at Kate's Point", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4088/4976768910_d1d4805076_o.jpg", "secret": "4cbf18264e", "media": "photo", "latitude": "17.928762", "id": "4976768910", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 10:15:01", "license": "5", "title": "DSC_0175", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4130/4976773322_fc651a1ba5_o.jpg", "secret": "e24c21d1fe", "media": "photo", "latitude": "17.928762", "id": "4976773322", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 10:15:57", "license": "5", "title": "From Kate's Point into the distance", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4147/4976776812_2c0e66ce84_o.jpg", "secret": "53fa61408a", "media": "photo", "latitude": "17.928762", "id": "4976776812", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 10:17:27", "license": "5", "title": "Writings on cactii", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4147/4976169347_93e0ba8470_o.jpg", "secret": "513b455a33", "media": "photo", "latitude": "17.928762", "id": "4976169347", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 10:17:51", "license": "5", "title": "DSC_0185", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4109/4976172849_0b8617e467_o.jpg", "secret": "bf1fb51399", "media": "photo", "latitude": "17.928762", "id": "4976172849", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 10:18:09", "license": "5", "title": "DSC_0187", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4133/4976177579_4027dd2136_o.jpg", "secret": "178445bd60", "media": "photo", "latitude": "17.928762", "id": "4976177579", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 10:19:04", "license": "5", "title": "Waterfall, cobweb and people", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4088/4976182557_be4244463d_o.jpg", "secret": "cb8138aae8", "media": "photo", "latitude": "17.928762", "id": "4976182557", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 10:20:50", "license": "5", "title": "Niddal Hole Point", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4144/4976797408_aaec8e9000_o.jpg", "secret": "1e5635360e", "media": "photo", "latitude": "17.928762", "id": "4976797408", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 10:24:28", "license": "5", "title": "Activities by the stream", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4090/4976802958_4aa0b25bee_o.jpg", "secret": "4a4f58a1f5", "media": "photo", "latitude": "17.928762", "id": "4976802958", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 10:28:50", "license": "5", "title": "Needle Hole Point", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4108/4976807806_0f55184b21_o.jpg", "secret": "74c5493b88", "media": "photo", "latitude": "17.928762", "id": "4976807806", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 11:49:08", "license": "5", "title": "Red earth and moody sky", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4129/4976198669_51481bf5b6_o.jpg", "secret": "6b77201e06", "media": "photo", "latitude": "17.928762", "id": "4976198669", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 11:51:49", "license": "5", "title": "DSC_0270", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4105/4976813948_39941b9250_o.jpg", "secret": "7ba1e11e6e", "media": "photo", "latitude": "17.928762", "id": "4976813948", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 11:51:56", "license": "5", "title": "Green,brown and moody", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4083/4976205571_8161a1506a_o.jpg", "secret": "dfdb1a23b4", "media": "photo", "latitude": "17.928762", "id": "4976205571", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 11:52:53", "license": "5", "title": "Me", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4145/4976208089_0063559f09_o.jpg", "secret": "7c72191395", "media": "photo", "latitude": "17.928762", "id": "4976208089", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 11:54:03", "license": "5", "title": "The motorcycle at the edge", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4132/4976824094_1591f63c94_o.jpg", "secret": "22530c2cac", "media": "photo", "latitude": "17.928762", "id": "4976824094", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 11:54:58", "license": "5", "title": "Runa again", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4111/4976827842_ab6cdea35a_o.jpg", "secret": "a2010f4c62", "media": "photo", "latitude": "17.928762", "id": "4976827842", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 11:55:26", "license": "5", "title": "Runa", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4106/4976220125_0d827c5a02_o.jpg", "secret": "28e4187771", "media": "photo", "latitude": "17.928762", "id": "4976220125", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 11:56:32", "license": "5", "title": "The valley and sun again", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4132/4976836510_efa50ef006_o.jpg", "secret": "238793ce4d", "media": "photo", "latitude": "17.928762", "id": "4976836510", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 11:57:12", "license": "5", "title": "The obligatory shot of a flower", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4107/4976841708_8c9b9bbde0_o.jpg", "secret": "c0d5fb5204", "media": "photo", "latitude": "17.928762", "id": "4976841708", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 11:57:17", "license": "5", "title": "DSC_0287", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4148/4976234237_1ce87679a5_o.jpg", "secret": "befedfc546", "media": "photo", "latitude": "17.928762", "id": "4976234237", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 11:59:35", "license": "5", "title": "DSC_0290", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4105/4976853036_43b9cf8f73_o.jpg", "secret": "1b14b61284", "media": "photo", "latitude": "17.928762", "id": "4976853036", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 11:59:41", "license": "5", "title": "View from Harrison's Folly", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4126/4976858774_ea0b99decf_o.jpg", "secret": "9e09db358e", "media": "photo", "latitude": "17.928762", "id": "4976858774", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-09-10 12:00:28", "license": "5", "title": "At Harrison's Folly outside of Panchgani", "text": "", "album_id": "72157624923667378", "longitude": "73.671998", "url_o": "https://farm5.staticflickr.com/4152/4976251261_af9d84acbe_o.jpg", "secret": "162fbd42c5", "media": "photo", "latitude": "17.928762", "id": "4976251261", "tags": "trip drive mahabaleshwar panchgani"}, {"datetaken": "2010-10-10 09:07:17", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4126/5068124457_7e12dda734_o.jpg", "secret": "9606687389", "media": "photo", "latitude": "26.574403", "id": "5068124457", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:iso_speed=100 exif:focal_length=28mm camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019290 geo:city=fortmyers"}, {"datetaken": "2010-10-10 09:08:00", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4127/5068125873_51b2a935a3_o.jpg", "secret": "7817e12572", "media": "photo", "latitude": "26.574403", "id": "5068125873", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:iso_speed=100 exif:focal_length=28mm camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019290 geo:city=fortmyers"}, {"datetaken": "2010-10-10 09:11:13", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4124/5068736400_a8d540b3a4_o.jpg", "secret": "0c08ca5f12", "media": "photo", "latitude": "26.574403", "id": "5068736400", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:iso_speed=400 exif:focal_length=28mm camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019250 geo:city=fortmyers"}, {"datetaken": "2010-10-10 09:12:42", "license": "1", "title": "A couple of piglets", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4086/5068128405_445d19979f_o.jpg", "secret": "f610fa55b6", "media": "photo", "latitude": "26.574403", "id": "5068128405", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=117mm exif:iso_speed=400 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019256 geo:city=fortmyers"}, {"datetaken": "2010-10-10 09:12:46", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4149/5068738364_3885300aaf_o.jpg", "secret": "af2c43f1a9", "media": "photo", "latitude": "26.574403", "id": "5068738364", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:iso_speed=400 exif:focal_length=90mm camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019256 geo:city=fortmyers"}, {"datetaken": "2010-10-10 09:13:02", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4084/5068739410_1b43143de7_o.jpg", "secret": "0165d70a98", "media": "photo", "latitude": "26.574403", "id": "5068739410", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:iso_speed=400 exif:focal_length=65mm camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019250 geo:city=fortmyers"}, {"datetaken": "2010-10-10 09:13:12", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4153/5068740376_987651b377_o.jpg", "secret": "6b61e3092d", "media": "photo", "latitude": "26.574403", "id": "5068740376", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:iso_speed=400 exif:focal_length=85mm camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019256 geo:city=fortmyers"}, {"datetaken": "2010-10-10 09:20:46", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4132/5068741310_452e673bd1_o.jpg", "secret": "24e902ceb0", "media": "photo", "latitude": "26.574403", "id": "5068741310", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=135mm exif:iso_speed=400 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019256 geo:city=fortmyers"}, {"datetaken": "2010-10-10 09:25:05", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4092/5068133809_8df6baafb7_o.jpg", "secret": "693b416769", "media": "photo", "latitude": "26.574403", "id": "5068133809", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:iso_speed=400 exif:focal_length=28mm camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019250 geo:city=fortmyers"}, {"datetaken": "2010-10-10 09:33:22", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4147/5068743778_b3c63fb22f_o.jpg", "secret": "9d3a9c84f5", "media": "photo", "latitude": "26.574403", "id": "5068743778", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=28mm exif:iso_speed=320 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019280 geo:city=fortmyers"}, {"datetaken": "2010-10-10 09:34:50", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4086/5068745064_b0c08017bc_o.jpg", "secret": "8aa3ef9132", "media": "photo", "latitude": "26.574403", "id": "5068745064", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=85mm exif:iso_speed=500 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019256 geo:city=fortmyers"}, {"datetaken": "2010-10-10 09:58:39", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4151/5068746658_1e1e494543_o.jpg", "secret": "c0457db727", "media": "photo", "latitude": "26.574403", "id": "5068746658", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=28mm exif:iso_speed=500 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019256 geo:city=fortmyers"}, {"datetaken": "2010-10-10 10:02:29", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4087/5068747540_c945ac9b59_o.jpg", "secret": "2067508bc1", "media": "photo", "latitude": "26.574403", "id": "5068747540", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=50mm exif:iso_speed=500 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019256 geo:city=fortmyers"}, {"datetaken": "2010-10-10 10:02:42", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4105/5068139741_ae1ec9e5bd_o.jpg", "secret": "c6f6e57a1e", "media": "photo", "latitude": "26.574403", "id": "5068139741", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=28mm exif:iso_speed=500 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019256 geo:city=fortmyers"}, {"datetaken": "2010-10-10 10:03:33", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4145/5068141159_83eaf1501b_o.jpg", "secret": "667dbbafd2", "media": "photo", "latitude": "26.574403", "id": "5068141159", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=41mm exif:iso_speed=500 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019256 geo:city=fortmyers"}, {"datetaken": "2010-10-10 10:03:49", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4149/5068751078_e646505525_o.jpg", "secret": "a22f40b1b4", "media": "photo", "latitude": "26.574403", "id": "5068751078", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=41mm exif:iso_speed=500 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019256 geo:city=fortmyers"}, {"datetaken": "2010-10-10 10:04:11", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4083/5068753364_a095c2c0f7_o.jpg", "secret": "072f1ae7fa", "media": "photo", "latitude": "26.574403", "id": "5068753364", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=28mm exif:iso_speed=500 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019256 geo:city=fortmyers"}, {"datetaken": "2010-10-10 10:06:29", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4083/5068145983_8a7e08f941_o.jpg", "secret": "c2c223baea", "media": "photo", "latitude": "26.574403", "id": "5068145983", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=28mm exif:iso_speed=320 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019256 geo:city=fortmyers"}, {"datetaken": "2010-10-10 10:07:24", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4151/5068755508_aa6563e34c_o.jpg", "secret": "6585ee83ca", "media": "photo", "latitude": "26.574403", "id": "5068755508", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=122mm exif:iso_speed=320 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019256 geo:city=fortmyers"}, {"datetaken": "2010-10-10 10:14:56", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4145/5068756586_aab38df899_o.jpg", "secret": "69cd49a881", "media": "photo", "latitude": "26.574403", "id": "5068756586", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=28mm exif:iso_speed=320 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019256 geo:city=fortmyers"}, {"datetaken": "2010-10-10 10:22:54", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4129/5068148923_6de28e160e_o.jpg", "secret": "3c8a24a765", "media": "photo", "latitude": "26.574403", "id": "5068148923", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=135mm exif:iso_speed=320 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019280 geo:city=fortmyers"}, {"datetaken": "2010-10-10 10:23:07", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4086/5068758412_723f9e82c8_o.jpg", "secret": "1f145fa50d", "media": "photo", "latitude": "26.574403", "id": "5068758412", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=65mm exif:iso_speed=320 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019280 geo:city=fortmyers"}, {"datetaken": "2010-10-10 10:36:57", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4127/5068150933_9bd34e92bd_o.jpg", "secret": "6e4d8054ba", "media": "photo", "latitude": "26.574403", "id": "5068150933", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:iso_speed=320 camera:model=canoneos40d exif:focal_length=125mm geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019280 geo:city=fortmyers"}, {"datetaken": "2010-10-10 10:37:31", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4112/5068151665_4c280b47b7_o.jpg", "secret": "c0dd49d1b0", "media": "photo", "latitude": "26.574403", "id": "5068151665", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=80mm exif:iso_speed=320 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019280 geo:city=fortmyers"}, {"datetaken": "2010-10-10 10:38:09", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4148/5068761190_8e65e0903b_o.jpg", "secret": "9e5f9f1fb5", "media": "photo", "latitude": "26.574403", "id": "5068761190", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=80mm exif:iso_speed=320 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019280 geo:city=fortmyers"}, {"datetaken": "2010-10-10 10:38:42", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4089/5068762342_4405fbc110_o.jpg", "secret": "d7bbc86348", "media": "photo", "latitude": "26.574403", "id": "5068762342", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=105mm exif:iso_speed=320 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019280 geo:city=fortmyers"}, {"datetaken": "2010-10-10 10:39:39", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4127/5068155527_c9c301c176_o.jpg", "secret": "831ac5f71f", "media": "photo", "latitude": "26.574403", "id": "5068155527", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=47mm exif:iso_speed=320 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019280 geo:city=fortmyers"}, {"datetaken": "2010-10-10 10:40:14", "license": "1", "title": "Reflections of Grandeur", "text": "", "album_id": "72157625134324560", "longitude": "-81.822652", "url_o": "https://farm5.staticflickr.com/4153/5068765542_0d9495a7aa_o.jpg", "secret": "02c5b51ca8", "media": "photo", "latitude": "26.574403", "id": "5068765542", "tags": "usa hiking trail fl activities theslough fortmyers camera:make=canon exif:make=canon exif:focal_length=30mm exif:iso_speed=320 camera:model=canoneos40d geo:countrys=usa exif:lens=ef28135mmf3556isusm exif:model=canoneos40d geo:state=fl exif:aperture=\u019240 geo:city=fortmyers"}, {"datetaken": "2010-09-13 10:50:00", "license": "2", "title": "A team from Oracle participates in Blind Bull Ring, a Team Collaboration activity during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4146/4985764548_c91cc99c29_o.jpg", "secret": "e9e5f62da2", "media": "photo", "latitude": "0", "id": "4985764548", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:03", "license": "2", "title": "Team from Oracle cherishes their victory after Team Activity during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/4985764646_faee6532e1_o.jpg", "secret": "c39263a0f9", "media": "photo", "latitude": "0", "id": "4985764646", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:06", "license": "2", "title": "Team Work at its best as participants from Oracle implement all their skills in building a Raft Team from Oracle busy utilizing all resources in order to build a Raft during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4091/4985764778_ee7b327e49_o.jpg", "secret": "1152bedfa5", "media": "photo", "latitude": "0", "id": "4985764778", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:10", "license": "2", "title": "Team Work at its best as participants from Oracle implement all their skills in building a Raft Team from Oracle busy utilizing all resources in order to build a Raft during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4154/4985764894_e90594a123_o.jpg", "secret": "b47c46d174", "media": "photo", "latitude": "0", "id": "4985764894", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:13", "license": "2", "title": "Team from Oracle carrying fully constructed Raft to the Private Lake during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4154/4985165557_b0986f4b7a_o.jpg", "secret": "2e2f80009b", "media": "photo", "latitude": "0", "id": "4985165557", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:16", "license": "2", "title": "Team from Oracle busy utilizing all resources in order to build a Raft during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/4985165707_25843f4047_o.jpg", "secret": "9753131fd6", "media": "photo", "latitude": "0", "id": "4985165707", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:20", "license": "2", "title": "A Team from Oracle happy lifting their Raft after succesful construction during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/4985165819_9384193385_o.jpg", "secret": "8ed59e7115", "media": "photo", "latitude": "0", "id": "4985165819", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:23", "license": "2", "title": "A Team from Oracle happy lifting their Raft after succesful construction during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4125/4985765422_0423ab3b4f_o.jpg", "secret": "3a0a69255c", "media": "photo", "latitude": "0", "id": "4985765422", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:26", "license": "2", "title": "Team from Oracle enjoying their Raft Ride in a private Lake during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/4985765526_d626aea49c_o.jpg", "secret": "aedcff8bee", "media": "photo", "latitude": "0", "id": "4985765526", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:29", "license": "2", "title": "Team from Oracle enjoying their Raft Ride in a private Lake during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4146/4985765614_3ed17afe9b_o.jpg", "secret": "f874053689", "media": "photo", "latitude": "0", "id": "4985765614", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:31", "license": "2", "title": "Senior Leader from an Oracle at His best while diving into the Pool during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4985765728_7c91406687_o.jpg", "secret": "877109522d", "media": "photo", "latitude": "0", "id": "4985765728", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:34", "license": "2", "title": "Team Leaders and other participants from Oracle enjoying Aerial Leaps during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/4985765844_0c1df2935b_o.jpg", "secret": "a4c5a4c1e0", "media": "photo", "latitude": "0", "id": "4985765844", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:38", "license": "2", "title": "Team Leaders and other participants from Oracle enjoying Aerial Leaps during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/4985765950_647b7d8588_o.jpg", "secret": "7130d8e456", "media": "photo", "latitude": "0", "id": "4985765950", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:41", "license": "2", "title": "Team Leaders and other participants from Oracle having fun while Cycling during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/4985166615_de2f3ba184_o.jpg", "secret": "ddcab8809d", "media": "photo", "latitude": "0", "id": "4985166615", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:43", "license": "2", "title": "Participant from Oracle enjoying evening DJ during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/4985166693_33cb18b3fa_o.jpg", "secret": "ce71c5e7c8", "media": "photo", "latitude": "0", "id": "4985166693", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:45", "license": "2", "title": "Participant from Oracle making dance moves during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/4985166777_c395c948f5_o.jpg", "secret": "17ce72f9c3", "media": "photo", "latitude": "0", "id": "4985166777", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:48", "license": "2", "title": "Entire Team Oracle poses for a group photograph at the end of session during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/4985766338_060f985b1d_o.jpg", "secret": "3290bb16b0", "media": "photo", "latitude": "0", "id": "4985766338", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:52", "license": "2", "title": "Different teams of Oracle in quest of identifying a Leader through Universal Pointing System during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4092/4985166999_7ac9cf7607_o.jpg", "secret": "94b66b8098", "media": "photo", "latitude": "0", "id": "4985166999", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:56", "license": "2", "title": "A team from Oracle participates in Hoopla Down, a Team Synchronization activity during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/4985167107_7d6a7f970b_o.jpg", "secret": "a4acc6ee05", "media": "photo", "latitude": "0", "id": "4985167107", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-09-13 10:50:59", "license": "2", "title": "A team from Oracle participates in Blind Bull Ring, a Team Collaboration activity during an Offsite at Camp Redstone organized by Zicelife", "text": "", "album_id": "72157624944950104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/4985167221_97479c26af_o.jpg", "secret": "79fbf2a518", "media": "photo", "latitude": "0", "id": "4985167221", "tags": "oracle motivation leisure leadership teambuilding zicelife oracleatcampredstone offsitefororacle"}, {"datetaken": "2010-05-04 03:41:04", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3322/4594101811_868113c4a2_o.jpg", "secret": "088324121a", "media": "photo", "latitude": "0", "id": "4594101811", "tags": "soldier transformation southkorea mwr afn camplong chinookhelicopter pyeongtaek wonju apachehelicopter americanforcesnetwork camphumphreys militaryspouses blackhawkhelicopters usaghumphreys usarmykorea imcomcommander imcomkinstallationmanagementcommand 2ndcombataviationbrigade humphreysamericanschool newcomertokorea josephpmoore 652amd 35thadabrigade suwonairbase"}, {"datetaken": "2010-05-04 03:41:35", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1290/4605891950_685292727b_o.jpg", "secret": "bc873f7051", "media": "photo", "latitude": "0", "id": "4605891950", "tags": ""}, {"datetaken": "2010-05-04 03:42:10", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1251/4605892948_7019f0a630_o.jpg", "secret": "1e55c09704", "media": "photo", "latitude": "0", "id": "4605892948", "tags": ""}, {"datetaken": "2010-05-04 03:43:43", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4594715218_3d0c127d79_o.jpg", "secret": "fbe7b52e4b", "media": "photo", "latitude": "0", "id": "4594715218", "tags": "soldier transformation southkorea mwr afn camplong chinookhelicopter pyeongtaek wonju apachehelicopter americanforcesnetwork camphumphreys militaryspouses blackhawkhelicopters usaghumphreys usarmykorea imcomcommander imcomkinstallationmanagementcommand 2ndcombataviationbrigade humphreysamericanschool newcomertokorea josephpmoore 652amd 35thadabrigade suwonairbase"}, {"datetaken": "2010-05-04 03:43:57", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1138/4605278963_70abb5873d_o.jpg", "secret": "90f624aaa6", "media": "photo", "latitude": "0", "id": "4605278963", "tags": ""}, {"datetaken": "2010-05-04 03:51:16", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4605279709_58c86cc870_o.jpg", "secret": "baa12f6f36", "media": "photo", "latitude": "0", "id": "4605279709", "tags": ""}, {"datetaken": "2010-05-04 04:09:39", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4605897606_00c84de747_o.jpg", "secret": "d67668792a", "media": "photo", "latitude": "0", "id": "4605897606", "tags": ""}, {"datetaken": "2010-05-04 04:11:23", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1076/4605283197_4b4883076a_o.jpg", "secret": "afba0e898f", "media": "photo", "latitude": "0", "id": "4605283197", "tags": ""}, {"datetaken": "2010-05-04 04:12:03", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1242/4594717632_80dd64e2e3_o.jpg", "secret": "acbfd306fd", "media": "photo", "latitude": "0", "id": "4594717632", "tags": "soldier transformation southkorea mwr afn camplong chinookhelicopter pyeongtaek wonju apachehelicopter americanforcesnetwork camphumphreys militaryspouses blackhawkhelicopters usaghumphreys usarmykorea imcomcommander imcomkinstallationmanagementcommand 2ndcombataviationbrigade humphreysamericanschool newcomertokorea josephpmoore 652amd 35thadabrigade suwonairbase"}, {"datetaken": "2010-05-04 04:16:48", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4594101219_a408f94de4_o.jpg", "secret": "e78229c0a7", "media": "photo", "latitude": "0", "id": "4594101219", "tags": "soldier transformation southkorea mwr afn camplong chinookhelicopter pyeongtaek wonju apachehelicopter americanforcesnetwork camphumphreys militaryspouses blackhawkhelicopters usaghumphreys usarmykorea imcomcommander imcomkinstallationmanagementcommand 2ndcombataviationbrigade humphreysamericanschool newcomertokorea josephpmoore 652amd 35thadabrigade suwonairbase"}, {"datetaken": "2010-05-04 04:30:15", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1008/4594103489_d78c98dc83_o.jpg", "secret": "b9892df315", "media": "photo", "latitude": "0", "id": "4594103489", "tags": "soldier transformation southkorea mwr afn camplong chinookhelicopter pyeongtaek wonju apachehelicopter americanforcesnetwork camphumphreys militaryspouses blackhawkhelicopters usaghumphreys usarmykorea imcomcommander imcomkinstallationmanagementcommand 2ndcombataviationbrigade humphreysamericanschool newcomertokorea josephpmoore 652amd 35thadabrigade suwonairbase"}, {"datetaken": "2010-05-04 04:47:48", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4605284335_e27f47dcc0_o.jpg", "secret": "e0a02bc301", "media": "photo", "latitude": "0", "id": "4605284335", "tags": ""}, {"datetaken": "2010-05-04 05:01:33", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3356/4594713524_52206dac70_o.jpg", "secret": "3730702148", "media": "photo", "latitude": "0", "id": "4594713524", "tags": "soldier transformation southkorea mwr afn camplong chinookhelicopter pyeongtaek wonju apachehelicopter americanforcesnetwork camphumphreys militaryspouses blackhawkhelicopters usaghumphreys usarmykorea imcomcommander imcomkinstallationmanagementcommand 2ndcombataviationbrigade humphreysamericanschool newcomertokorea josephpmoore 652amd 35thadabrigade suwonairbase"}, {"datetaken": "2010-05-04 05:01:52", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3379/4594714102_cde86a0499_o.jpg", "secret": "80eb86c7f5", "media": "photo", "latitude": "0", "id": "4594714102", "tags": "soldier transformation southkorea mwr afn camplong chinookhelicopter pyeongtaek wonju apachehelicopter americanforcesnetwork camphumphreys militaryspouses blackhawkhelicopters usaghumphreys usarmykorea imcomcommander imcomkinstallationmanagementcommand 2ndcombataviationbrigade humphreysamericanschool newcomertokorea josephpmoore 652amd 35thadabrigade suwonairbase"}, {"datetaken": "2010-05-04 05:35:30", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1335/4594102391_16d0d3d07f_o.jpg", "secret": "6aaa214199", "media": "photo", "latitude": "0", "id": "4594102391", "tags": "soldier transformation southkorea mwr afn camplong chinookhelicopter pyeongtaek wonju apachehelicopter americanforcesnetwork camphumphreys militaryspouses blackhawkhelicopters usaghumphreys usarmykorea imcomcommander imcomkinstallationmanagementcommand 2ndcombataviationbrigade humphreysamericanschool newcomertokorea josephpmoore 652amd 35thadabrigade suwonairbase"}, {"datetaken": "2010-05-04 05:38:34", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1297/4605900480_6961057bba_o.jpg", "secret": "029ac04caa", "media": "photo", "latitude": "0", "id": "4605900480", "tags": ""}, {"datetaken": "2010-05-04 05:40:42", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4605901534_459678c190_o.jpg", "secret": "125eb629fe", "media": "photo", "latitude": "0", "id": "4605901534", "tags": ""}, {"datetaken": "2010-05-04 05:43:19", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1406/4605287447_b29af89dd3_o.jpg", "secret": "5dcb2e3a93", "media": "photo", "latitude": "0", "id": "4605287447", "tags": ""}, {"datetaken": "2010-05-04 05:46:56", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1178/4605288437_c668fb95af_o.jpg", "secret": "fe0b02e7e2", "media": "photo", "latitude": "0", "id": "4605288437", "tags": ""}, {"datetaken": "2010-05-04 05:47:19", "license": "4", "title": "Army Secretary McHugh visits Humphreys", "text": "", "album_id": "72157624030292358", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3373/4594100103_cdfbc0b83e_o.jpg", "secret": "d8a5d4dba6", "media": "photo", "latitude": "0", "id": "4594100103", "tags": "soldier transformation southkorea mwr afn camplong chinookhelicopter pyeongtaek wonju apachehelicopter americanforcesnetwork camphumphreys militaryspouses blackhawkhelicopters usaghumphreys usarmykorea imcomcommander imcomkinstallationmanagementcommand 2ndcombataviationbrigade humphreysamericanschool newcomertokorea josephpmoore 652amd 35thadabrigade suwonairbase"}, {"datetaken": "2010-06-26 11:11:27", "license": "2", "title": "Learning about invasive plants.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4793227788_274cd0a9f0_o.jpg", "secret": "b06fca4877", "media": "photo", "latitude": "0", "id": "4793227788", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 11:59:06", "license": "2", "title": "Building a bird house.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4793228066_19e6b38374_o.jpg", "secret": "d1a2db9a6c", "media": "photo", "latitude": "0", "id": "4793228066", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 11:59:11", "license": "2", "title": "Constructing a bird house.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4793228276_63da7eda2b_o.jpg", "secret": "570425a568", "media": "photo", "latitude": "0", "id": "4793228276", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 11:59:38", "license": "2", "title": "Hammering a nail.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4793228542_3d6f63b204_o.jpg", "secret": "dd6b5d125a", "media": "photo", "latitude": "0", "id": "4793228542", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 11:59:52", "license": "2", "title": "Volunteers help kids make birdhouses.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4792594207_3471a542ab_o.jpg", "secret": "5ca788be2f", "media": "photo", "latitude": "0", "id": "4792594207", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 12:00:07", "license": "2", "title": "Volunteers help kids make bird houses.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4793229242_8f4c844e94_o.jpg", "secret": "0f14431cdd", "media": "photo", "latitude": "0", "id": "4793229242", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 12:00:17", "license": "2", "title": "Look what we made! Two new birdhouses.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4793229520_9a02b518c5_o.jpg", "secret": "55c1a060fb", "media": "photo", "latitude": "0", "id": "4793229520", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 12:00:49", "license": "2", "title": "Plant growing 101", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4792595171_fdea2b33e8_o.jpg", "secret": "2b3eac102e", "media": "photo", "latitude": "0", "id": "4792595171", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 12:00:56", "license": "2", "title": "Learning about plants.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4792595467_709b89e01f_o.jpg", "secret": "a551aee588", "media": "photo", "latitude": "0", "id": "4792595467", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 12:01:34", "license": "2", "title": "Soap carving for the family.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4792595731_6e10ac1206_o.jpg", "secret": "93caa875d6", "media": "photo", "latitude": "0", "id": "4792595731", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 12:01:54", "license": "2", "title": "Carving nature themes in soap.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4793230626_3ba8ec567d_o.jpg", "secret": "8df3910e2f", "media": "photo", "latitude": "0", "id": "4793230626", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 12:03:26", "license": "2", "title": "Checking out items in the nature store.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4793230818_02b18c070c_o.jpg", "secret": "f93f9d3a39", "media": "photo", "latitude": "0", "id": "4793230818", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 12:03:50", "license": "2", "title": "Soap carving.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4793231094_0bde8af65a_o.jpg", "secret": "3d9c4fb3bb", "media": "photo", "latitude": "0", "id": "4793231094", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 12:04:26", "license": "2", "title": "Looking at what owls may have eaten.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4793231306_fc9fce3c5a_o.jpg", "secret": "0b9315b6fb", "media": "photo", "latitude": "0", "id": "4793231306", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 12:05:47", "license": "2", "title": "Children examined owl pellets to learn what owls eat.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4792596797_bbd6a842c4_o.jpg", "secret": "5c433db295", "media": "photo", "latitude": "0", "id": "4792596797", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 12:07:40", "license": "2", "title": "Foresters taught people about trees.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4793231902_ea4a1331bb_o.jpg", "secret": "6750dac78f", "media": "photo", "latitude": "0", "id": "4793231902", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 12:11:35", "license": "2", "title": "An expert in Native American history interacts with people.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4792597473_876d1266b5_o.jpg", "secret": "f9b0e14a52", "media": "photo", "latitude": "0", "id": "4792597473", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 12:11:48", "license": "2", "title": "Native American lore and acitvities.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4793232504_9a60b3525b_o.jpg", "secret": "0bf3bcdf85", "media": "photo", "latitude": "0", "id": "4793232504", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 12:14:18", "license": "2", "title": "Master Gardner booth", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4792598027_985154c004_o.jpg", "secret": "2ef5c06acf", "media": "photo", "latitude": "0", "id": "4792598027", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 12:14:27", "license": "2", "title": "Master Gardner Lynn gives advice.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4793232962_72c743608f_o.jpg", "secret": "f8e3ea4d71", "media": "photo", "latitude": "0", "id": "4793232962", "tags": "hoosiernationalforest"}, {"datetaken": "2010-06-26 12:14:55", "license": "2", "title": "Invasive plant activities with Judi Brown.", "text": "", "album_id": "72157624492137536", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4793233244_dccd842c38_o.jpg", "secret": "acb0732a31", "media": "photo", "latitude": "0", "id": "4793233244", "tags": "hoosiernationalforest"}, {"datetaken": "2011-07-14 09:36:28", "license": "2", "title": "Arts Fest 2011-9", "text": "", "album_id": "72157627071164103", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6141/5937578775_ccc79b81a0_o.jpg", "secret": "6e6c12d5ec", "media": "photo", "latitude": "0", "id": "5937578775", "tags": "summer people art mobile community downtown events festivals pennstate artists statecollege involvement artsfest centralpennsylvaniafestivalofthearts universityparkcampus creditpatrickmansell"}, {"datetaken": "2011-07-14 10:24:29", "license": "2", "title": "Arts Fest 2011-2", "text": "", "album_id": "72157627071164103", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6121/5938135696_6c8126a945_o.jpg", "secret": "281cdd3cca", "media": "photo", "latitude": "0", "id": "5938135696", "tags": "summer people art community downtown events festivals pennstate artists statecollege involvement woodworking artsfest centralpennsylvaniafestivalofthearts universityparkcampus creditpatrickmansell"}, {"datetaken": "2011-07-14 10:27:09", "license": "2", "title": "Arts Fest 2011-4", "text": "", "album_id": "72157627071164103", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6140/5937579157_04c8cb2bb3_o.jpg", "secret": "3bb5eed3f8", "media": "photo", "latitude": "0", "id": "5937579157", "tags": "summer people community events festivals telescope pennstate involvement astrofest universityparkcampus departmentofastronomyandastrophysics creditreidarjensen"}, {"datetaken": "2011-07-14 10:29:28", "license": "2", "title": "Arts Fest 2011-6", "text": "", "album_id": "72157627071164103", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6133/5937579321_087c01f9b4_o.jpg", "secret": "166cc31926", "media": "photo", "latitude": "0", "id": "5937579321", "tags": "summer people art mirror community downtown events festivals hats pennstate artists statecollege involvement artsfest centralpennsylvaniafestivalofthearts universityparkcampus creditpatrickmansell"}, {"datetaken": "2011-07-14 10:34:24", "license": "2", "title": "Arts Fest 2011-3", "text": "", "album_id": "72157627071164103", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6137/5938136362_7423bc919e_o.jpg", "secret": "e8013a3ef2", "media": "photo", "latitude": "0", "id": "5938136362", "tags": "summer people music art community downtown events festivals pennstate artists statecollege instruments involvement didjeridoo artsfest centralpennsylvaniafestivalofthearts universityparkcampus creditannemariemountz"}, {"datetaken": "2011-07-14 10:45:34", "license": "2", "title": "Arts Fest 2011-5", "text": "", "album_id": "72157627071164103", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6123/5937579725_270dfa2f1a_o.jpg", "secret": "c2fbd74311", "media": "photo", "latitude": "0", "id": "5937579725", "tags": "summer people art children community downtown events festivals pennstate artists scarves statecollege involvement artsfest centralpennsylvaniafestivalofthearts universityparkcampus creditannemariemountz"}, {"datetaken": "2011-07-14 10:47:17", "license": "2", "title": "Arts Fest 2011-12", "text": "", "album_id": "72157627071164103", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6142/5937580039_909b5baa07_o.jpg", "secret": "33e3c88581", "media": "photo", "latitude": "0", "id": "5937580039", "tags": "summer people sculpture art sand community downtown events festivals pennstate artists statecollege sandscapes involvement artsfest centralpennsylvaniafestivalofthearts universityparkcampus creditreidarjensen sidneyfreidmanpark"}, {"datetaken": "2011-07-14 11:10:55", "license": "2", "title": "Arts Fest 2011-8", "text": "", "album_id": "72157627071164103", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6139/5937580225_57de8cbf06_o.jpg", "secret": "d49ce97e8b", "media": "photo", "latitude": "0", "id": "5937580225", "tags": "summer people art community ceramics downtown events festivals pennstate artists statecollege involvement artsfest centralpennsylvaniafestivalofthearts universityparkcampus creditannemariemountz"}, {"datetaken": "2011-07-14 11:20:12", "license": "2", "title": "Arts Fest 2011-11", "text": "", "album_id": "72157627071164103", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6007/5937580503_a151bac67d_o.jpg", "secret": "104bb48e2d", "media": "photo", "latitude": "0", "id": "5937580503", "tags": "summer people music art community downtown events performance festivals entertainment pennstate artists statecollege tuba involvement artsfest centralpennsylvaniafestivalofthearts universityparkcampus heritagebrassquintet creditpatrickmansell allenstreetstage"}, {"datetaken": "2011-07-14 11:25:54", "license": "2", "title": "Arts Fest 2011-1", "text": "", "album_id": "72157627071164103", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6012/5938137496_2c7678c8e9_o.jpg", "secret": "75ab96afe6", "media": "photo", "latitude": "0", "id": "5938137496", "tags": "summer people art community downtown events crowd festivals pennstate artists statecollege involvement artsfest centralpennsylvaniafestivalofthearts universityparkcampus creditreidarjensen linkflickrset72157627071164103"}, {"datetaken": "2011-07-14 11:47:33", "license": "2", "title": "Arts Fest 2011-10", "text": "", "album_id": "72157627071164103", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6138/5937580831_54c1f39903_o.jpg", "secret": "292bf925d8", "media": "photo", "latitude": "0", "id": "5937580831", "tags": "summer people art children community downtown bell events festivals pennstate artists statecollege involvement artsfest centralpennsylvaniafestivalofthearts universityparkcampus creditannemariemountz"}, {"datetaken": "2011-07-14 13:44:09", "license": "2", "title": "Arts Fest 2011-7", "text": "", "album_id": "72157627071164103", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6126/5938137866_5c8d5cdd33_o.jpg", "secret": "2705529326", "media": "photo", "latitude": "0", "id": "5938137866", "tags": "street summer people art chalk community downtown events festivals pennstate artists statecollege involvement artsfest centralpennsylvaniafestivalofthearts universityparkcampus creditreidarjensen"}, {"datetaken": "2010-03-16 08:19:19", "license": "1", "title": "Day 2-005", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2692/4439078374_154fec903c_o.jpg", "secret": "82b2a3c844", "media": "photo", "latitude": "0", "id": "4439078374", "tags": "usa flood air nationalguard northdakota nd airforce emergency fargo lipp sandbag hoeven airman airmen riverdrive saatoff hectoriapfargo ndang sprynczynatyk besette"}, {"datetaken": "2010-03-16 08:34:41", "license": "1", "title": "Day 2-041", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2524/4439081106_99cd6bc037_o.jpg", "secret": "93ca253001", "media": "photo", "latitude": "0", "id": "4439081106", "tags": "usa flood air nationalguard northdakota nd airforce emergency fargo lipp sandbag hoeven airman airmen riverdrive saatoff hectoriapfargo ndang sprynczynatyk besette"}, {"datetaken": "2010-03-16 09:58:45", "license": "1", "title": "Day 2-070", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4438306627_a5b98da474_o.jpg", "secret": "7bdbe66762", "media": "photo", "latitude": "0", "id": "4438306627", "tags": "usa flood air nationalguard northdakota nd airforce emergency fargo lipp sandbag hoeven airman airmen riverdrive saatoff hectoriapfargo ndang sprynczynatyk besette"}, {"datetaken": "2010-03-16 10:04:45", "license": "1", "title": "Day 2-140", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2789/4438308417_36e1f9e5ba_o.jpg", "secret": "1b1810fc53", "media": "photo", "latitude": "0", "id": "4438308417", "tags": "usa flood air governor nationalguard northdakota nd airforce emergency fargo lipp sandbag hoeven airman airmen riverdrive saatoff hectoriapfargo ndang sprynczynatyk besette"}, {"datetaken": "2010-03-16 10:06:37", "license": "1", "title": "Day 2-162", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4439087920_e8fc6603eb_o.jpg", "secret": "c52e45079d", "media": "photo", "latitude": "0", "id": "4439087920", "tags": "usa flood air governor nationalguard northdakota nd airforce emergency fargo lipp sandbag hoeven airman airmen riverdrive saatoff hectoriapfargo ndang sprynczynatyk besette"}, {"datetaken": "2010-03-16 10:25:26", "license": "1", "title": "Day 2-265", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4439090980_542f3ddc2d_o.jpg", "secret": "d1d957bfd6", "media": "photo", "latitude": "0", "id": "4439090980", "tags": "usa flood air nationalguard northdakota nd airforce emergency fargo lipp sandbag hoeven airman airmen riverdrive saatoff hectoriapfargo ndang sprynczynatyk besette"}, {"datetaken": "2010-03-16 10:42:05", "license": "1", "title": "Day 2-335", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2706/4438319351_9531dfaf0d_o.jpg", "secret": "8c69658cd9", "media": "photo", "latitude": "0", "id": "4438319351", "tags": "usa flood air tag nationalguard northdakota nd airforce emergency fargo lipp sandbag hoeven airman airmen riverdrive saatoff hectoriapfargo ndang sprynczynatyk besette"}, {"datetaken": "2010-03-16 10:48:50", "license": "1", "title": "Day 2-463", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4439099274_a58b663ccc_o.jpg", "secret": "83516da897", "media": "photo", "latitude": "0", "id": "4439099274", "tags": "usa flood air nationalguard northdakota nd airforce emergency fargo lipp sandbag hoeven airman airmen riverdrive saatoff hectoriapfargo ndang sprynczynatyk besette"}, {"datetaken": "2010-03-16 10:50:45", "license": "1", "title": "Day 2-490", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4438324533_613c1ef8a4_o.jpg", "secret": "eb9ee3fb0c", "media": "photo", "latitude": "0", "id": "4438324533", "tags": "usa flood air nationalguard northdakota nd airforce emergency fargo lipp sandbag hoeven airman airmen riverdrive saatoff hectoriapfargo ndang sprynczynatyk besette"}, {"datetaken": "2010-03-16 11:03:47", "license": "1", "title": "Day 2-637", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2736/4438327037_c295ac77d1_o.jpg", "secret": "486268563e", "media": "photo", "latitude": "0", "id": "4438327037", "tags": "usa flood air nationalguard northdakota nd airforce emergency fargo lipp sandbag hoeven airman airmen riverdrive saatoff hectoriapfargo ndang sprynczynatyk besette"}, {"datetaken": "2010-03-16 11:05:23", "license": "1", "title": "Day 2-670", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4439107164_5aee12cac5_o.jpg", "secret": "da52dc96a5", "media": "photo", "latitude": "0", "id": "4439107164", "tags": "usa flood air nationalguard northdakota nd airforce emergency fargo lipp sandbag hoeven airman airmen riverdrive saatoff hectoriapfargo ndang sprynczynatyk besette"}, {"datetaken": "2010-03-16 15:43:48", "license": "1", "title": "Traffic Control Point 761", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4440038383_f5e5d2c701_o.jpg", "secret": "95c35f6742", "media": "photo", "latitude": "0", "id": "4440038383", "tags": "usa flood nd emergency fargo hectoriapfargo ndang"}, {"datetaken": "2010-03-16 15:47:50", "license": "1", "title": "Traffic Control Point 782", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4440815296_c8b2ba7ace_o.jpg", "secret": "f3d6079538", "media": "photo", "latitude": "0", "id": "4440815296", "tags": "usa flood nd emergency fargo hectoriapfargo ndang"}, {"datetaken": "2010-03-16 15:53:02", "license": "1", "title": "Traffic Control Point 816", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4440816782_7073b9ef65_o.jpg", "secret": "851b1110dc", "media": "photo", "latitude": "0", "id": "4440816782", "tags": "usa flood nd emergency fargo hectoriapfargo ndang"}, {"datetaken": "2010-03-16 16:33:55", "license": "1", "title": "Sandbagging 855", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4440043015_5345f0424b_o.jpg", "secret": "8eaa694c7d", "media": "photo", "latitude": "0", "id": "4440043015", "tags": "usa flood nd emergency fargo hectoriapfargo ndang"}, {"datetaken": "2010-03-16 16:34:48", "license": "1", "title": "Sandbagging 867", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4440820922_9e2a94ebcc_o.jpg", "secret": "291114cd5a", "media": "photo", "latitude": "0", "id": "4440820922", "tags": "usa flood nd emergency fargo hectoriapfargo ndang"}, {"datetaken": "2010-03-16 16:39:00", "license": "1", "title": "Sandbagging 899", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4440822444_c80d151f94_o.jpg", "secret": "24c53eac88", "media": "photo", "latitude": "0", "id": "4440822444", "tags": "usa flood nd emergency fargo hectoriapfargo ndang"}, {"datetaken": "2010-03-16 16:41:32", "license": "1", "title": "Sandbagging 912", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4440048395_f6a8618867_o.jpg", "secret": "cb01f44bae", "media": "photo", "latitude": "0", "id": "4440048395", "tags": "usa flood nd emergency fargo hectoriapfargo ndang"}, {"datetaken": "2010-03-16 16:46:11", "license": "1", "title": "Sandbagging 934", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4440050155_7097e0e9d0_o.jpg", "secret": "65d1213e15", "media": "photo", "latitude": "0", "id": "4440050155", "tags": "usa flood nd emergency fargo hectoriapfargo ndang"}, {"datetaken": "2010-03-16 16:47:58", "license": "1", "title": "Sandbagging 947", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2754/4440827046_b06180f822_o.jpg", "secret": "3c1800c6fc", "media": "photo", "latitude": "0", "id": "4440827046", "tags": "usa flood nd emergency fargo hectoriapfargo ndang"}, {"datetaken": "2010-03-16 16:48:20", "license": "1", "title": "Sandbagging 952", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4440828458_633c261016_o.jpg", "secret": "79c29d13cb", "media": "photo", "latitude": "0", "id": "4440828458", "tags": "usa flood nd emergency fargo hectoriapfargo ndang"}, {"datetaken": "2010-03-16 16:50:21", "license": "1", "title": "Sandbagging 955", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4440054565_dc62f6a10d_o.jpg", "secret": "195a6a89b0", "media": "photo", "latitude": "0", "id": "4440054565", "tags": "usa flood nd emergency fargo hectoriapfargo ndang"}, {"datetaken": "2010-03-16 17:13:38", "license": "1", "title": "Traffic Control Point 978", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4440831542_905915cc4f_o.jpg", "secret": "1d912dbff8", "media": "photo", "latitude": "0", "id": "4440831542", "tags": "usa flood nd emergency fargo hectoriapfargo ndang"}, {"datetaken": "2010-03-16 17:17:04", "license": "1", "title": "Traffic Control Point 994", "text": "", "album_id": "72157623509449753", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4440057713_52b2538802_o.jpg", "secret": "2521039b2a", "media": "photo", "latitude": "0", "id": "4440057713", "tags": "usa flood nd emergency fargo hectoriapfargo ndang"}, {"datetaken": "2011-03-15 11:33:11", "license": "2", "title": "Packing list of the weapons cache found aboard the Victoria cargo ship 15 March 2011", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5293/5528995843_ff696b51ba_o.jpg", "secret": "2bcfd5f163", "media": "photo", "latitude": "0", "id": "5528995843", "tags": "arms iran running victoria illegal terrorists capture weapons idf cargoship"}, {"datetaken": "2011-03-15 16:19:27", "license": "2", "title": "Part of the weapons cache found aboard the Victoria cargo ship 15 March 2011", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5054/5529583354_a3479f5542_o.jpg", "secret": "9884ac0777", "media": "photo", "latitude": "0", "id": "5529583354", "tags": "arms iran running victoria illegal terrorists capture weapons idf cargoship"}, {"datetaken": "2011-03-15 17:32:24", "license": "2", "title": "Part of the weapons cache found aboard the Victoria cargo ship 15 March 2011", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5296/5529583178_33f4f4f0f7_o.jpg", "secret": "724b86a13f", "media": "photo", "latitude": "0", "id": "5529583178", "tags": "arms iran running victoria illegal terrorists capture weapons idf cargoship"}, {"datetaken": "2011-03-15 17:32:39", "license": "2", "title": "Part of the weapons cache found aboard the Victoria cargo ship 15 March 2011", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5257/5529583746_6e2a85ff8c_o.jpg", "secret": "c48e9b91ca", "media": "photo", "latitude": "0", "id": "5529583746", "tags": "arms iran running victoria illegal terrorists capture weapons idf cargoship"}, {"datetaken": "2011-03-15 17:32:42", "license": "2", "title": "Part of the weapons cache found aboard the Victoria cargo ship 15 March 2011", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5213/5528996177_b51e110518_o.jpg", "secret": "c71bb552ef", "media": "photo", "latitude": "0", "id": "5528996177", "tags": "arms iran running victoria illegal terrorists capture weapons idf cargoship"}, {"datetaken": "2011-03-15 20:04:48", "license": "2", "title": "Weaponry Found On-Board the \"Victoria\" Photo: IDF", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5256/5532537498_063dc53c81_o.jpg", "secret": "30f564c679", "media": "photo", "latitude": "0", "id": "5532537498", "tags": ""}, {"datetaken": "2011-03-16 18:42:28", "license": "2", "title": "Weaponry Found On-Board the \"Victoria\" Photo: IDF", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5171/5532536460_5aec2e5768_o.jpg", "secret": "7fea0afcf0", "media": "photo", "latitude": "0", "id": "5532536460", "tags": ""}, {"datetaken": "2011-03-16 18:42:30", "license": "2", "title": "Weaponry Found On-Board the \"Victoria\" Photo: IDF", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5138/5531953301_7aa11f78bd_o.jpg", "secret": "e300cca878", "media": "photo", "latitude": "0", "id": "5531953301", "tags": ""}, {"datetaken": "2011-03-16 18:42:33", "license": "2", "title": "Weaponry Found On-Board the \"Victoria\" Photo: IDF", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5133/5531953401_4f1401087d_o.jpg", "secret": "3b473d9cb8", "media": "photo", "latitude": "0", "id": "5531953401", "tags": ""}, {"datetaken": "2011-03-16 18:42:36", "license": "2", "title": "Weaponry Found On-Board the \"Victoria\" Photo: IDF", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5136/5532536740_937c47783a_o.jpg", "secret": "a1996f9332", "media": "photo", "latitude": "0", "id": "5532536740", "tags": ""}, {"datetaken": "2011-03-16 18:42:39", "license": "2", "title": "Weaponry Found On-Board the \"Victoria\" Photo: IDF", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5095/5532536852_cba14ac3ae_o.jpg", "secret": "34658acf96", "media": "photo", "latitude": "0", "id": "5532536852", "tags": ""}, {"datetaken": "2011-03-16 18:42:43", "license": "2", "title": "Weaponry Found On-Board the \"Victoria\" Photo: IDF", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5254/5532536954_f10c93c930_o.jpg", "secret": "9d597fbc62", "media": "photo", "latitude": "0", "id": "5532536954", "tags": ""}, {"datetaken": "2011-03-16 18:42:45", "license": "2", "title": "Weaponry Found On-Board the \"Victoria\" Photo: IDF", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5256/5532537072_3c14a17a28_o.jpg", "secret": "01083ac9ae", "media": "photo", "latitude": "0", "id": "5532537072", "tags": ""}, {"datetaken": "2011-03-16 18:42:48", "license": "2", "title": "Weaponry Found On-Board the \"Victoria\" Photo: IDF", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5098/5531953859_c2da775625_o.jpg", "secret": "e0e7cb04f9", "media": "photo", "latitude": "0", "id": "5531953859", "tags": ""}, {"datetaken": "2011-03-16 18:42:50", "license": "2", "title": "Chief of Staff Speaks Before Displayed Weaponry Photo: IDF", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5214/5531953959_b0d914f38d_o.jpg", "secret": "b8386ca3a5", "media": "photo", "latitude": "0", "id": "5531953959", "tags": ""}, {"datetaken": "2011-03-16 18:42:53", "license": "2", "title": "Prime Minister and Defense Minister at Weaponry Display Photo: IDF", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5293/5532537308_8275544d72_o.jpg", "secret": "c32f2bca94", "media": "photo", "latitude": "0", "id": "5532537308", "tags": ""}, {"datetaken": "2011-03-16 18:42:56", "license": "2", "title": "Weaponry Found On-Board the \"Victoria\" Photo: IDF", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5296/5532537404_ae345ab786_o.jpg", "secret": "33b30176ff", "media": "photo", "latitude": "0", "id": "5532537404", "tags": ""}, {"datetaken": "2011-03-16 18:43:02", "license": "2", "title": "Weaponry Found On-Board the \"Victoria\" Photo: IDF", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5057/5531954331_f2624cce52_o.jpg", "secret": "09e1bea197", "media": "photo", "latitude": "0", "id": "5531954331", "tags": ""}, {"datetaken": "2011-03-16 18:43:04", "license": "2", "title": "Weaponry Found On-Board the \"Victoria\" Photo: IDF", "text": "", "album_id": "72157626147554929", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5256/5532537668_59fa5ca50b_o.jpg", "secret": "ae4f7f748b", "media": "photo", "latitude": "0", "id": "5532537668", "tags": ""}, {"datetaken": "2010-06-01 19:13:14", "license": "3", "title": "IMG_0005", "text": "", "album_id": "72157624289348266", "longitude": "-88.186161", "url_o": "https://farm5.staticflickr.com/4060/4706306929_a0260ef29e_o.jpg", "secret": "f8852702b3", "media": "photo", "latitude": "42.516176", "id": "4706306929", "tags": "activities powderpuff wuhs"}, {"datetaken": "2010-06-01 19:14:03", "license": "3", "title": "IMG_0006", "text": "", "album_id": "72157624289348266", "longitude": "-88.186161", "url_o": "https://farm2.staticflickr.com/1301/4706307467_f8b51826c9_o.jpg", "secret": "492d1fdcba", "media": "photo", "latitude": "42.516176", "id": "4706307467", "tags": "activities powderpuff wuhs"}, {"datetaken": "2010-06-01 19:15:16", "license": "3", "title": "IMG_0007", "text": "", "album_id": "72157624289348266", "longitude": "-88.186161", "url_o": "https://farm5.staticflickr.com/4056/4706948314_125b63d24d_o.jpg", "secret": "5e21cb182e", "media": "photo", "latitude": "42.516176", "id": "4706948314", "tags": "activities powderpuff wuhs"}, {"datetaken": "2010-06-01 19:15:50", "license": "3", "title": "IMG_0009", "text": "", "album_id": "72157624289348266", "longitude": "-88.186161", "url_o": "https://farm5.staticflickr.com/4007/4706949238_4f7e4b68e5_o.jpg", "secret": "bbc94fe96a", "media": "photo", "latitude": "42.516176", "id": "4706949238", "tags": "activities powderpuff wuhs"}, {"datetaken": "2010-06-01 19:16:25", "license": "3", "title": "IMG_0010", "text": "", "album_id": "72157624289348266", "longitude": "-88.186161", "url_o": "https://farm5.staticflickr.com/4016/4706308887_798ea6e9c6_o.jpg", "secret": "227080872c", "media": "photo", "latitude": "42.516176", "id": "4706308887", "tags": "activities powderpuff wuhs"}, {"datetaken": "2010-06-01 19:16:42", "license": "3", "title": "IMG_0012", "text": "", "album_id": "72157624289348266", "longitude": "-88.186161", "url_o": "https://farm5.staticflickr.com/4066/4706309107_08d7e6c44e_o.jpg", "secret": "47991a3177", "media": "photo", "latitude": "42.516176", "id": "4706309107", "tags": "activities powderpuff wuhs"}, {"datetaken": "2010-06-01 19:20:52", "license": "3", "title": "IMG_0014", "text": "", "album_id": "72157624289348266", "longitude": "-88.186161", "url_o": "https://farm5.staticflickr.com/4067/4706309325_3f472ba5c8_o.jpg", "secret": "e55e7583b9", "media": "photo", "latitude": "42.516176", "id": "4706309325", "tags": "activities powderpuff wuhs"}, {"datetaken": "2010-06-01 19:23:53", "license": "3", "title": "IMG_0019", "text": "", "album_id": "72157624289348266", "longitude": "-88.186161", "url_o": "https://farm5.staticflickr.com/4010/4706309567_b3aed82f56_o.jpg", "secret": "a94311be71", "media": "photo", "latitude": "42.516176", "id": "4706309567", "tags": "activities powderpuff wuhs"}, {"datetaken": "2010-06-01 19:25:03", "license": "3", "title": "IMG_0021", "text": "", "album_id": "72157624289348266", "longitude": "-88.186161", "url_o": "https://farm2.staticflickr.com/1288/4706950474_4ed59fc25c_o.jpg", "secret": "2cf5b220ca", "media": "photo", "latitude": "42.516176", "id": "4706950474", "tags": "activities powderpuff wuhs"}, {"datetaken": "2010-06-01 19:26:44", "license": "3", "title": "IMG_0024", "text": "", "album_id": "72157624289348266", "longitude": "-88.186161", "url_o": "https://farm5.staticflickr.com/4020/4706950772_7f165c98e0_o.jpg", "secret": "71a97fd61b", "media": "photo", "latitude": "42.516176", "id": "4706950772", "tags": "activities powderpuff wuhs"}, {"datetaken": "2010-06-01 19:28:31", "license": "3", "title": "IMG_0025", "text": "", "album_id": "72157624289348266", "longitude": "-88.186161", "url_o": "https://farm5.staticflickr.com/4023/4706951182_28e19aaa12_o.jpg", "secret": "1ed7a0ce46", "media": "photo", "latitude": "42.516176", "id": "4706951182", "tags": "activities powderpuff wuhs"}, {"datetaken": "2010-06-01 19:29:01", "license": "3", "title": "IMG_0027", "text": "", "album_id": "72157624289348266", "longitude": "-88.186161", "url_o": "https://farm2.staticflickr.com/1305/4706310787_dff96c0e56_o.jpg", "secret": "82f5fa765f", "media": "photo", "latitude": "42.516176", "id": "4706310787", "tags": "activities powderpuff wuhs"}, {"datetaken": "2010-06-01 19:37:07", "license": "3", "title": "IMG_0044", "text": "", "album_id": "72157624289348266", "longitude": "-88.186161", "url_o": "https://farm5.staticflickr.com/4049/4706951630_2d7c2b9fea_o.jpg", "secret": "49f7b28bb8", "media": "photo", "latitude": "42.516176", "id": "4706951630", "tags": "activities powderpuff wuhs"}, {"datetaken": "2010-06-01 19:56:03", "license": "3", "title": "IMG_0070", "text": "", "album_id": "72157624289348266", "longitude": "-88.186161", "url_o": "https://farm5.staticflickr.com/4006/4706311239_81c213caa1_o.jpg", "secret": "229a57af07", "media": "photo", "latitude": "42.516176", "id": "4706311239", "tags": "activities powderpuff wuhs"}, {"datetaken": "2011-07-30 11:18:00", "license": "5", "title": "Exotic Heights", "text": "", "album_id": "72157627332233871", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6087/6053198753_7234be6aa6_o.jpg", "secret": "99e69fef22", "media": "photo", "latitude": "0", "id": "6053198753", "tags": "tropical canaryislands gomera lagomera"}, {"datetaken": "2011-07-30 11:36:04", "license": "5", "title": "Reaching to the Gods", "text": "", "album_id": "72157627332233871", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6087/6055998435_a4f06a274a_o.jpg", "secret": "58204681b7", "media": "photo", "latitude": "0", "id": "6055998435", "tags": "tropical canaryislands gomera lagomera supershot"}, {"datetaken": "2011-07-30 12:05:41", "license": "5", "title": "I love the windows and doors of La Gomera", "text": "", "album_id": "72157627332233871", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6088/6061887344_706d9c625b_o.jpg", "secret": "a05e4b253c", "media": "photo", "latitude": "0", "id": "6061887344", "tags": ""}, {"datetaken": "2011-07-30 12:06:31", "license": "5", "title": "Where the livin' is easy !", "text": "", "album_id": "72157627332233871", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6068/6059468949_64de7ee627_o.jpg", "secret": "b0be76a705", "media": "photo", "latitude": "0", "id": "6059468949", "tags": "gomera"}, {"datetaken": "2011-07-30 13:17:24", "license": "5", "title": "Colour Co-Ordination", "text": "", "album_id": "72157627332233871", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6203/6064266349_77bd90c316_o.jpg", "secret": "7985fd6133", "media": "photo", "latitude": "0", "id": "6064266349", "tags": ""}, {"datetaken": "2011-07-30 13:19:42", "license": "5", "title": "Blue in the face", "text": "", "album_id": "72157627332233871", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6181/6068390883_d5779780e0_o.jpg", "secret": "f93c37fb07", "media": "photo", "latitude": "0", "id": "6068390883", "tags": ""}, {"datetaken": "2011-07-30 13:20:24", "license": "5", "title": "Number 15", "text": "", "album_id": "72157627332233871", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6210/6072389143_ffe4bc244f_o.jpg", "secret": "75e50fda29", "media": "photo", "latitude": "0", "id": "6072389143", "tags": "blinkagain"}, {"datetaken": "2011-07-30 13:20:34", "license": "5", "title": "Once an elegant verandah !", "text": "", "album_id": "72157627332233871", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6075/6070735290_3e65f6a161_o.jpg", "secret": "51ab2ef96c", "media": "photo", "latitude": "0", "id": "6070735290", "tags": ""}, {"datetaken": "2011-07-30 13:22:35", "license": "5", "title": "A woman's work is never done !", "text": "", "album_id": "72157627332233871", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6063/6074236772_8c58b56048_o.jpg", "secret": "a289955980", "media": "photo", "latitude": "0", "id": "6074236772", "tags": "canaryislands gomera"}, {"datetaken": "2011-07-30 16:14:12", "license": "5", "title": "Looking Back", "text": "", "album_id": "72157627332233871", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6165/6143698378_31f6e2afcd_o.jpg", "secret": "0e98310607", "media": "photo", "latitude": "0", "id": "6143698378", "tags": "sansebastian canaryislands lagomera"}, {"datetaken": "2011-07-30 16:28:10", "license": "5", "title": "a grand street for a stroll", "text": "", "album_id": "72157627332233871", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6177/6178288219_69603c2c34_o.jpg", "secret": "9b39df47c4", "media": "photo", "latitude": "0", "id": "6178288219", "tags": ""}, {"datetaken": "2007-04-17 11:03:41", "license": "1", "title": "rocky_valley_dam", "text": "", "album_id": "72157600006405360", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/425115794_1938495d09_o.jpg", "secret": "c548fede35", "media": "photo", "latitude": "0", "id": "425115794", "tags": "wildflowers fallscreek victorianalps heathyspur edmondsonhut"}, {"datetaken": "2007-04-17 11:35:42", "license": "1", "title": "blocking_out", "text": "", "album_id": "72157600006405360", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/425113508_0604058f9c_o.jpg", "secret": "d902194dd6", "media": "photo", "latitude": "0", "id": "425113508", "tags": "fallscreek victorianalps rockyvalleydam heathyspur"}, {"datetaken": "2007-04-17 11:40:34", "license": "1", "title": "macro_shots", "text": "", "album_id": "72157600006405360", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/425114749_f902f608b2_o.jpg", "secret": "2eaacbd37c", "media": "photo", "latitude": "0", "id": "425114749", "tags": "wildflowers fallscreek victorianalps heathyspur"}, {"datetaken": "2007-04-17 11:44:06", "license": "1", "title": "everlasting", "text": "", "album_id": "72157600006405360", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/425114150_fdd77fd470_o.jpg", "secret": "40695345ea", "media": "photo", "latitude": "0", "id": "425114150", "tags": "wildflowers fallscreek victorianalps heathyspur"}, {"datetaken": "2007-04-17 11:48:32", "license": "1", "title": "classic_alpine_flora", "text": "", "album_id": "72157600006405360", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/425113720_3878c7c5ee_o.jpg", "secret": "988b1e1f6b", "media": "photo", "latitude": "0", "id": "425113720", "tags": "wildflowers fallscreek victorianalps heathyspur"}, {"datetaken": "2007-04-17 12:12:42", "license": "1", "title": "pentachondra_pumila_carpet_heath", "text": "", "album_id": "72157600006405360", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/425115299_b6001523e6_o.jpg", "secret": "c67fd85bcc", "media": "photo", "latitude": "0", "id": "425115299", "tags": "wildflowers fallscreek victorianalps heathyspur edmondsonhut"}, {"datetaken": "2007-04-17 12:13:13", "license": "1", "title": "pentachondra_pumila_carpet_heath2", "text": "", "album_id": "72157600006405360", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/425115629_de9761cc94_o.jpg", "secret": "774fbd7944", "media": "photo", "latitude": "0", "id": "425115629", "tags": "wildflowers fallscreek victorianalps heathyspur"}, {"datetaken": "2007-04-17 12:17:43", "license": "1", "title": "heathy_spur_scenery", "text": "", "album_id": "72157600006405360", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/425114371_8a3d15a388_o.jpg", "secret": "67170864a8", "media": "photo", "latitude": "0", "id": "425114371", "tags": "wildflowers fallscreek victorianalps heathyspur"}, {"datetaken": "2007-04-17 12:19:12", "license": "1", "title": "eucalyptus_pauciflora_snow_gum", "text": "", "album_id": "72157600006405360", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/425113948_47f2de2103_o.jpg", "secret": "a71dfc6187", "media": "photo", "latitude": "0", "id": "425113948", "tags": "wildflowers fallscreek snowgums victorianalps heathyspur"}, {"datetaken": "2007-04-17 12:44:45", "license": "1", "title": "shower_facilities_johnson_hut", "text": "", "album_id": "72157600006405360", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/425116262_7a01173922_o.jpg", "secret": "444924dbc0", "media": "photo", "latitude": "0", "id": "425116262", "tags": "wildflowers fallscreek victorianalps heathyspur johnsonhut"}, {"datetaken": "2007-04-17 14:31:59", "license": "1", "title": "senecio_lautus_alpinus", "text": "", "album_id": "72157600006405360", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/425116098_854ac19f1b_o.jpg", "secret": "3a9781aba8", "media": "photo", "latitude": "0", "id": "425116098", "tags": "wildflowers fallscreek victorianalps heathyspur johnsonhut"}, {"datetaken": "2007-04-17 14:44:20", "license": "1", "title": "snowgum_edmondson_hut", "text": "", "album_id": "72157600006405360", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/425116555_cef00d4433_o.jpg", "secret": "1a57f15481", "media": "photo", "latitude": "0", "id": "425116555", "tags": "wildflowers fallscreek victorianalps heathyspur edmondsonhut"}, {"datetaken": "2007-04-17 14:45:39", "license": "1", "title": "inside_edmondson_hut", "text": "", "album_id": "72157600006405360", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/425114521_06f4b8b851_o.jpg", "secret": "9be7651f7d", "media": "photo", "latitude": "0", "id": "425114521", "tags": "wildflowers fallscreek victorianalps heathyspur edmondsonhut"}, {"datetaken": "2007-04-17 14:47:14", "license": "1", "title": "outside_edmondson_hut", "text": "", "album_id": "72157600006405360", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/425114991_942eddc03b_o.jpg", "secret": "63648c575d", "media": "photo", "latitude": "0", "id": "425114991", "tags": "wildflowers fallscreek victorianalps heathyspur edmondsonhut"}, {"datetaken": "2007-04-17 14:49:14", "license": "1", "title": "stylidium_graminifolium", "text": "", "album_id": "72157600006405360", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/425116756_5053c6bc6c_o.jpg", "secret": "0f039e650f", "media": "photo", "latitude": "0", "id": "425116756", "tags": "wildflowers fallscreek victorianalps heathyspur edmondsonhut"}, {"datetaken": "2010-05-25 13:46:11", "license": "3", "title": "SR 99 S. Holgate to S. King Street Viaduct Replacement Archaeological Dig - 1", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4711369098_6fd6f35100_o.jpg", "secret": "f639cece67", "media": "photo", "latitude": "0", "id": "4711369098", "tags": "seattle history archaeology way viaduct gp sodo alaskan archaeologists wsdot"}, {"datetaken": "2010-05-25 13:50:07", "license": "3", "title": "SR 99 S. Holgate to S. King Street Viaduct Replacement Archaeological Dig-2", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4710727619_665b793631_o.jpg", "secret": "2aff37bd9b", "media": "photo", "latitude": "0", "id": "4710727619", "tags": "seattle history archaeology way pix viaduct gp sodo alaskan seattlest archaeologists wsdot"}, {"datetaken": "2010-05-25 14:01:26", "license": "3", "title": "SR 99 S. Holgate to S. King Street Viaduct Replacement Archaeological Dig-3", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4710727991_a9ebf056ed_o.jpg", "secret": "3cef68ce69", "media": "photo", "latitude": "0", "id": "4710727991", "tags": "seattle history archaeology way viaduct gp sodo alaskan archaeologists wsdot"}, {"datetaken": "2010-05-25 14:04:55", "license": "3", "title": "SR 99 S. Holgate to S. King Street Viaduct Replacement Archaeological Dig-4", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4710728623_fa06010d8b_o.jpg", "secret": "be32cc5d4a", "media": "photo", "latitude": "0", "id": "4710728623", "tags": "seattle history archaeology way pix viaduct gp sodo alaskan seattlest archaeologists wsdot"}, {"datetaken": "2010-05-25 14:10:53", "license": "3", "title": "SR 99 S. Holgate to S. King Street Viaduct Replacement Archaeological Dig-5", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4710729509_c60297a7ee_o.jpg", "secret": "9d6cd7b6d2", "media": "photo", "latitude": "0", "id": "4710729509", "tags": "seattle history archaeology way viaduct gp sodo alaskan archaeologists wsdot"}, {"datetaken": "2010-05-25 14:13:57", "license": "3", "title": "SR 99 S. Holgate to S. King Street Viaduct Replacement Archaeological Dig-6", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4710730065_c00b8af9e1_o.jpg", "secret": "555f9f6fdf", "media": "photo", "latitude": "0", "id": "4710730065", "tags": "seattle history archaeology way pix viaduct gp sodo alaskan excavation seattlest archaeologists wsdot"}, {"datetaken": "2010-05-25 14:19:54", "license": "3", "title": "SR 99 S. Holgate to S. King Street Viaduct Replacement Archaeological Dig-7", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4710730567_4c861f4791_o.jpg", "secret": "91145d2443", "media": "photo", "latitude": "0", "id": "4710730567", "tags": "seattle history archaeology way pix viaduct gp sodo alaskan seattlest archaeologists wsdot"}, {"datetaken": "2010-05-25 14:20:35", "license": "3", "title": "SR 99 S. Holgate to S. King Street Viaduct Replacement Archaeological Dig-8", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4711373072_2d71b3e025_o.jpg", "secret": "37821559a5", "media": "photo", "latitude": "0", "id": "4711373072", "tags": "seattle history archaeology way viaduct gp sodo alaskan archaeologists wsdot"}, {"datetaken": "2010-05-25 14:22:48", "license": "3", "title": "SR 99 S. Holgate to S. King Street Viaduct Replacement Archaeological Dig-9", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4711373556_4f149c99b1_o.jpg", "secret": "9b9337a1aa", "media": "photo", "latitude": "0", "id": "4711373556", "tags": "seattle history archaeology way viaduct gp sodo alaskan archaeologists wsdot"}, {"datetaken": "2010-05-25 14:24:16", "license": "3", "title": "SR 99 S. Holgate to S. King Street Viaduct Replacement Project Archaeological Dig-10", "text": "", "album_id": "72157624300611300", "longitude": "-122.335038", "url_o": "https://farm5.staticflickr.com/4066/4711374116_fcd14a59ea_o.jpg", "secret": "991de279e7", "media": "photo", "latitude": "47.594182", "id": "4711374116", "tags": "seattle history archaeology way viaduct gp sodo alaskan archaeologists wsdot"}, {"datetaken": "2010-05-25 14:30:08", "license": "3", "title": "SR 99 S. Holgate to S. King Street Viaduct Replacement Project Archaeological Dig-11", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4710736143_3e7893afd9_o.jpg", "secret": "46d99aec35", "media": "photo", "latitude": "0", "id": "4710736143", "tags": "seattle history archaeology way viaduct gp sodo alaskan archaeologists wsdot"}, {"datetaken": "2010-05-25 14:32:01", "license": "3", "title": "SR 99 S. Holgate to S. King Street Viaduct Replacement Project Archaeological Dig-12", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4711386836_1110f868f7_o.jpg", "secret": "aa9a0620b0", "media": "photo", "latitude": "0", "id": "4711386836", "tags": "seattle history archaeology way viaduct gp sodo alaskan archaeologists wsdot"}, {"datetaken": "2010-05-25 14:32:19", "license": "3", "title": "SR 99 S. Holgate to S. King Street Viaduct Replacement Project Archaeological Dig-13", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4711387398_c763c3fc01_o.jpg", "secret": "f6d18b0951", "media": "photo", "latitude": "0", "id": "4711387398", "tags": "seattle history archaeology way viaduct gp sodo alaskan archaeologists wsdot"}, {"datetaken": "2010-05-25 14:32:57", "license": "3", "title": "SR 99 S. Holgate to S. King Street Viaduct Replacement Archaeological Dig-14", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4710746189_44aaeb6bc0_o.jpg", "secret": "2023b608e9", "media": "photo", "latitude": "0", "id": "4710746189", "tags": "seattle history archaeology way pix viaduct gp sodo alaskan seattlest archaeologists wsdot"}, {"datetaken": "2010-05-25 14:38:01", "license": "3", "title": "Archaeological dig", "text": "", "album_id": "72157624300611300", "longitude": "-122.334952", "url_o": "https://farm5.staticflickr.com/4068/4710748213_4286f1d62f_o.jpg", "secret": "c1bef225fd", "media": "photo", "latitude": "47.594573", "id": "4710748213", "tags": "seattle history archaeology way viaduct gp sodo alaskan archaeologists wsdot"}, {"datetaken": "2010-05-25 14:40:02", "license": "3", "title": "SR 99 Alaskan Way Viaduct Replacement Project Archaeological Dig-16", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1294/4710750715_00778a4c64_o.jpg", "secret": "83a7c6ce86", "media": "photo", "latitude": "0", "id": "4710750715", "tags": "seattle history archaeology way viaduct gp sodo alaskan archaeologists wsdot"}, {"datetaken": "2010-05-25 14:55:49", "license": "3", "title": "SR 99 S. Holgate to S. King Street Replacement Project Archaeological Dig-17", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4710751315_cfa887df0a_o.jpg", "secret": "cdd8d77a70", "media": "photo", "latitude": "0", "id": "4710751315", "tags": "seattle history archaeology way viaduct gp sodo alaskan archaeologists wsdot"}, {"datetaken": "2010-05-25 15:00:35", "license": "3", "title": "SR 99 S. Holgate to S. King Street Viaduct Replacement Archaeological Dig-18", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4711393570_c1a44f99ab_o.jpg", "secret": "146692103b", "media": "photo", "latitude": "0", "id": "4711393570", "tags": "seattle history archaeology way viaduct gp sodo alaskan archaeologists wsdot"}, {"datetaken": "2010-05-25 15:02:58", "license": "3", "title": "SR 99 S. Holgate to S. King Street Viaduct Replacement Archaeological Dig-19", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4711394144_aee19f1e47_o.jpg", "secret": "8826e42124", "media": "photo", "latitude": "0", "id": "4711394144", "tags": "seattle history archaeology way pix viaduct gp sodo alaskan seattlest archaeologists wsdot"}, {"datetaken": "2010-05-25 15:05:03", "license": "3", "title": "SR 99 S. Holgate to S. King Street Viaduct Replacement Archaeological Dig - 20", "text": "", "album_id": "72157624300611300", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4711394756_09f40e9538_o.jpg", "secret": "a329b56f45", "media": "photo", "latitude": "0", "id": "4711394756", "tags": "seattle history archaeology way viaduct gp sodo alaskan archaeologists wsdot"}, {"datetaken": "2010-05-25 15:07:08", "license": "3", "title": "Archaeological dig items", "text": "", "album_id": "72157624300611300", "longitude": "-122.335038", "url_o": "https://farm2.staticflickr.com/1296/4710753367_044cebe44d_o.jpg", "secret": "92f7e0f2a4", "media": "photo", "latitude": "47.595282", "id": "4710753367", "tags": "seattle history archaeology way pix viaduct gp sodo alaskan seattlest archaeologists wsdot"}, {"datetaken": "2005-10-18 12:15:56", "license": "1", "title": "Trucks waiting in the rain at Foz do Igua\u00e7u border point, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/53696512_28e1819307_o.jpg", "secret": "28e1819307", "media": "photo", "latitude": "0", "id": "53696512", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:15:57", "license": "1", "title": "Union representatives talk to truck drivers at the ITF activity at Foz do Igua\u00e7u, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/53696515_1c6ba5e4e5_o.jpg", "secret": "1c6ba5e4e5", "media": "photo", "latitude": "0", "id": "53696515", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:15:59", "license": "1", "title": "Union representatives talk to truck drivers at the ITF activity at Foz do Igua\u00e7u, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/53696529_97bf820712_o.jpg", "secret": "97bf820712", "media": "photo", "latitude": "0", "id": "53696529", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:16:01", "license": "1", "title": "Union representatives talk to truck drivers at the ITF activity at Foz do Igua\u00e7u, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/53696534_4c1567105e_o.jpg", "secret": "4c1567105e", "media": "photo", "latitude": "0", "id": "53696534", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:16:02", "license": "1", "title": "Union representatives talk to truck drivers at the ITF activity at Foz do Igua\u00e7u, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/53696541_9beceafb0b_o.jpg", "secret": "9beceafb0b", "media": "photo", "latitude": "0", "id": "53696541", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:16:05", "license": "1", "title": "Union representatives talk to truck drivers at the ITF activity at Foz do Igua\u00e7u, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/53696558_b03158b8c4_o.jpg", "secret": "b03158b8c4", "media": "photo", "latitude": "0", "id": "53696558", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:16:07", "license": "1", "title": "Union representatives talk to bus drivers at the ITF activity at Foz do Igua\u00e7u, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/53696569_6c8f7d6538_o.jpg", "secret": "6c8f7d6538", "media": "photo", "latitude": "0", "id": "53696569", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:16:09", "license": "1", "title": "Union representatives at the ITF activity at Foz do Igua\u00e7u, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/53696573_6bcfb2eff2_o.jpg", "secret": "6bcfb2eff2", "media": "photo", "latitude": "0", "id": "53696573", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:16:11", "license": "1", "title": "Unionists from Brazil, Chile, Paraguay and Uruguay as well as ITF representatives at the ITF/SASK seminar", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/53696577_4ae11c2bc0_o.jpg", "secret": "4ae11c2bc0", "media": "photo", "latitude": "0", "id": "53696577", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:16:13", "license": "1", "title": "Union representatives at the ITF activity at Foz do Igua\u00e7u, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/53696582_e52ddca5a8_o.jpg", "secret": "e52ddca5a8", "media": "photo", "latitude": "0", "id": "53696582", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:16:15", "license": "1", "title": "Union representatives talk to coach drivers at the ITF activity at Foz do Igua\u00e7u, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/53696595_24371e7af6_o.jpg", "secret": "24371e7af6", "media": "photo", "latitude": "0", "id": "53696595", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:16:17", "license": "1", "title": "Union representatives talk to truck drivers at the ITF activity at Foz do Igua\u00e7u, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/53696606_614ab925ea_o.jpg", "secret": "614ab925ea", "media": "photo", "latitude": "0", "id": "53696606", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:16:19", "license": "1", "title": "Union representatives talk to truck drivers at the ITF activity at Foz do Igua\u00e7u, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/53696616_6154078727_o.jpg", "secret": "6154078727", "media": "photo", "latitude": "0", "id": "53696616", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:16:20", "license": "1", "title": "Union representatives talk to truck drivers at the ITF activity at Foz do Igua\u00e7u, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/53696628_5e879f069c_o.jpg", "secret": "5e879f069c", "media": "photo", "latitude": "0", "id": "53696628", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:16:22", "license": "1", "title": "Union representatives talk to truck drivers at the ITF activity at Foz do Igua\u00e7u, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/53696642_84db6559db_o.jpg", "secret": "84db6559db", "media": "photo", "latitude": "0", "id": "53696642", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:16:25", "license": "1", "title": "Union representatives talk to truck drivers at the ITF activity at Foz do Igua\u00e7u, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/53696646_17e16f9713_o.jpg", "secret": "17e16f9713", "media": "photo", "latitude": "0", "id": "53696646", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:16:27", "license": "1", "title": "Union representatives talk to truck drivers at the ITF activity at Foz do Igua\u00e7u, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/53696653_2dc9f49797_o.jpg", "secret": "2dc9f49797", "media": "photo", "latitude": "0", "id": "53696653", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:16:29", "license": "1", "title": "Union representatives talk to truck drivers at the ITF activity at Foz do Igua\u00e7u, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/53696662_8fb44ebbab_o.jpg", "secret": "8fb44ebbab", "media": "photo", "latitude": "0", "id": "53696662", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2005-10-18 12:16:31", "license": "1", "title": "Union representatives talk to truck drivers at the ITF activity at Foz do Igua\u00e7u, Brazil", "text": "", "album_id": "1164233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/53696665_165b37b2a7_o.jpg", "secret": "165b37b2a7", "media": "photo", "latitude": "0", "id": "53696665", "tags": "roadtransport 2005rtactionweek"}, {"datetaken": "2010-04-17 11:39:39", "license": "5", "title": "View from the balcony / 2nd closest neighbors", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4535471448_07f7ce456d_o.jpg", "secret": "23cbb1f610", "media": "photo", "latitude": "0", "id": "4535471448", "tags": "california cabin sonoma occidental"}, {"datetaken": "2010-04-17 11:40:32", "license": "5", "title": "The bench and firepit", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4535470694_245d1bce63_o.jpg", "secret": "ed663a507e", "media": "photo", "latitude": "0", "id": "4535470694", "tags": "california cabin sonoma occidental"}, {"datetaken": "2010-04-17 11:41:13", "license": "5", "title": "Spider's breakfast", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4535471640_d990449bf1_o.jpg", "secret": "a7aec374cf", "media": "photo", "latitude": "0", "id": "4535471640", "tags": "california spider cabin web sonoma occidental"}, {"datetaken": "2010-04-17 11:41:16", "license": "5", "title": "Spider's breakfast", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4534838059_ef499b6a6a_o.jpg", "secret": "19bc67ec75", "media": "photo", "latitude": "0", "id": "4534838059", "tags": "california spider cabin web sonoma occidental"}, {"datetaken": "2010-04-17 11:43:12", "license": "5", "title": "Stairs down from the cabin", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4534836719_f845d8e3d7_o.jpg", "secret": "e28df5d068", "media": "photo", "latitude": "0", "id": "4534836719", "tags": "california cabin sonoma occidental"}, {"datetaken": "2010-04-17 11:44:41", "license": "5", "title": "The Tree of Life", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2804/4534838581_6ae71e02be_o.jpg", "secret": "c951aa0713", "media": "photo", "latitude": "0", "id": "4534838581", "tags": "life california tree moss cabin sonoma occidental"}, {"datetaken": "2010-04-17 11:44:45", "license": "5", "title": "The Tree of Life", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4534838305_08cdda03f9_o.jpg", "secret": "0df1c3f55a", "media": "photo", "latitude": "0", "id": "4534838305", "tags": "life california tree moss cabin sonoma occidental"}, {"datetaken": "2010-04-17 11:45:01", "license": "5", "title": "The Tree of Life", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4534838969_6a5edbf098_o.jpg", "secret": "3d1a2756b6", "media": "photo", "latitude": "0", "id": "4534838969", "tags": "life california tree moss cabin sonoma occidental"}, {"datetaken": "2010-04-17 11:45:10", "license": "5", "title": "The Tree of Life", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2764/4534839351_e006fd4ca7_o.jpg", "secret": "75865b5032", "media": "photo", "latitude": "0", "id": "4534839351", "tags": "life california tree moss cabin sonoma occidental"}, {"datetaken": "2010-04-17 11:45:16", "license": "5", "title": "The Tree of Life", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4534839629_06947bb628_o.jpg", "secret": "6e3fc0494e", "media": "photo", "latitude": "0", "id": "4534839629", "tags": "life california tree moss cabin sonoma occidental"}, {"datetaken": "2010-04-17 11:45:22", "license": "5", "title": "The Tree of Life", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4534839811_bbe24e6ec8_o.jpg", "secret": "6d7c60c78a", "media": "photo", "latitude": "0", "id": "4534839811", "tags": "life california tree moss cabin sonoma occidental"}, {"datetaken": "2010-04-17 11:45:43", "license": "5", "title": "The Tree of Life", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4535473596_1d26d91b7b_o.jpg", "secret": "6d982a0981", "media": "photo", "latitude": "0", "id": "4535473596", "tags": "life california tree moss cabin sonoma occidental"}, {"datetaken": "2010-04-17 11:45:49", "license": "5", "title": "The Tree of Life", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4534840157_bb25eec29a_o.jpg", "secret": "d0dbe9af13", "media": "photo", "latitude": "0", "id": "4534840157", "tags": "life california tree moss cabin sonoma occidental"}, {"datetaken": "2010-04-17 11:45:53", "license": "5", "title": "The Tree of Life", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4535473982_2540dea8e6_o.jpg", "secret": "68da7e7436", "media": "photo", "latitude": "0", "id": "4535473982", "tags": "life california tree moss cabin sonoma occidental"}, {"datetaken": "2010-04-17 11:46:37", "license": "5", "title": "The bench and firepit", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2729/4535471054_5f0ac89aef_o.jpg", "secret": "3105ac42fb", "media": "photo", "latitude": "0", "id": "4535471054", "tags": "california cabin sonoma occidental"}, {"datetaken": "2010-04-17 11:51:50", "license": "5", "title": "The Cabin", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2689/4534836465_e086ce7259_o.jpg", "secret": "432e27db02", "media": "photo", "latitude": "0", "id": "4534836465", "tags": "california cabin sonoma occidental"}, {"datetaken": "2010-04-18 11:17:34", "license": "5", "title": "Morning hunt", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4535474156_6f19554dc5_o.jpg", "secret": "1a5acc7af8", "media": "photo", "latitude": "0", "id": "4535474156", "tags": "california bird cabin hawk sonoma occidental"}, {"datetaken": "2010-04-18 11:18:46", "license": "5", "title": "Morning hunt", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2677/4534840691_b48ba08f17_o.jpg", "secret": "fd536aba56", "media": "photo", "latitude": "0", "id": "4534840691", "tags": "california bird cabin hawk sonoma occidental"}, {"datetaken": "2010-04-18 11:18:46", "license": "5", "title": "Morning hunt", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4535474440_3bcfb1610f_o.jpg", "secret": "3398c54bde", "media": "photo", "latitude": "0", "id": "4535474440", "tags": "california bird cabin hawk sonoma occidental"}, {"datetaken": "2010-04-18 11:18:47", "license": "5", "title": "Morning hunt", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4534841143_996bcc9335_o.jpg", "secret": "711a5720db", "media": "photo", "latitude": "0", "id": "4534841143", "tags": "california bird cabin hawk sonoma occidental"}, {"datetaken": "2010-04-18 11:18:49", "license": "5", "title": "Morning hunt", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2776/4534841257_d4521645d7_o.jpg", "secret": "6fb9cfcd1a", "media": "photo", "latitude": "0", "id": "4534841257", "tags": "california bird cabin hawk sonoma occidental"}, {"datetaken": "2010-04-18 11:19:05", "license": "5", "title": "Morning hunt", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4534841407_21552a1fbe_o.jpg", "secret": "9cef3eb3b2", "media": "photo", "latitude": "0", "id": "4534841407", "tags": "california bird cabin hawk sonoma occidental"}, {"datetaken": "2010-04-19 10:01:17", "license": "5", "title": "Panoramic view from the balcony", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4535475150_fd1676436e_o.jpg", "secret": "ffb9abe493", "media": "photo", "latitude": "0", "id": "4535475150", "tags": "california panorama cabin pano sonoma panoramic occidental"}, {"datetaken": "2010-04-19 10:04:21", "license": "5", "title": "Panoramic view from the kitchen", "text": "", "album_id": "72157623765822085", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2792/4534841763_742e5f8188_o.jpg", "secret": "dbfa3d23a2", "media": "photo", "latitude": "0", "id": "4534841763", "tags": "california panorama cabin pano sonoma panoramic occidental"}, {"datetaken": "2011-04-16 12:41:00", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5144/5635527669_bcc01dcc08_o.jpg", "secret": "413e91fd59", "media": "photo", "latitude": "0", "id": "5635527669", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 12:42:26", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5141/5636107960_b9cbb7f9f0_o.jpg", "secret": "107298d13c", "media": "photo", "latitude": "0", "id": "5636107960", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 12:48:47", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5224/5636108012_ca4f080dab_o.jpg", "secret": "0593848108", "media": "photo", "latitude": "0", "id": "5636108012", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 12:49:19", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5262/5635527817_b368b2bbac_o.jpg", "secret": "458c2cf131", "media": "photo", "latitude": "0", "id": "5635527817", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 12:49:39", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5262/5636108104_ca4d544655_o.jpg", "secret": "8a06097511", "media": "photo", "latitude": "0", "id": "5636108104", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 12:49:57", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5104/5635527933_2f2ff401bb_o.jpg", "secret": "964e0b7a3a", "media": "photo", "latitude": "0", "id": "5635527933", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 12:50:21", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5304/5635527975_eaa421ce8b_o.jpg", "secret": "d12c120c59", "media": "photo", "latitude": "0", "id": "5635527975", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 12:50:30", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5263/5636108208_c813d41679_o.jpg", "secret": "f9c164d2c4", "media": "photo", "latitude": "0", "id": "5636108208", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 12:51:14", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5261/5635528073_f59822a6a8_o.jpg", "secret": "da18f35b48", "media": "photo", "latitude": "0", "id": "5635528073", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 12:51:44", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5303/5635528107_78901e3596_o.jpg", "secret": "5dee17b5c0", "media": "photo", "latitude": "0", "id": "5635528107", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 12:51:53", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5145/5636108356_a696c63d72_o.jpg", "secret": "2c78cb3ff9", "media": "photo", "latitude": "0", "id": "5636108356", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 12:52:30", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5261/5635528195_f39b4b562a_o.jpg", "secret": "21156ac5e0", "media": "photo", "latitude": "0", "id": "5635528195", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 12:53:04", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5106/5636108478_6018e6a238_o.jpg", "secret": "bfc68168bc", "media": "photo", "latitude": "0", "id": "5636108478", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 12:54:30", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5144/5636108518_b28e7bafe5_o.jpg", "secret": "34a867d8d7", "media": "photo", "latitude": "0", "id": "5636108518", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 12:55:30", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5144/5636108554_a652afc71d_o.jpg", "secret": "9309eff3ea", "media": "photo", "latitude": "0", "id": "5636108554", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 12:55:47", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5150/5635528355_3b05ddf433_o.jpg", "secret": "7e44f7e52f", "media": "photo", "latitude": "0", "id": "5635528355", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 12:56:12", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5266/5635528379_a470ac5985_o.jpg", "secret": "c966e35407", "media": "photo", "latitude": "0", "id": "5635528379", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 12:59:01", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5309/5635528427_e78d0e6a71_o.jpg", "secret": "6ae67f310b", "media": "photo", "latitude": "0", "id": "5635528427", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 13:16:53", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5264/5636108732_1a419f151d_o.jpg", "secret": "9cf498c4ff", "media": "photo", "latitude": "0", "id": "5636108732", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 13:34:01", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5102/5636108774_785077fcd6_o.jpg", "secret": "12471bace9", "media": "photo", "latitude": "0", "id": "5636108774", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 13:46:52", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5186/5636108812_9921eb74c4_o.jpg", "secret": "609534a700", "media": "photo", "latitude": "0", "id": "5636108812", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 13:51:43", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5303/5635528609_3700907bb9_o.jpg", "secret": "b7333eef18", "media": "photo", "latitude": "0", "id": "5635528609", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 14:06:36", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5230/5635528651_6cda578039_o.jpg", "secret": "7a09143a08", "media": "photo", "latitude": "0", "id": "5635528651", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 14:16:44", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5306/5635528693_fac9dbdc31_o.jpg", "secret": "754a019d01", "media": "photo", "latitude": "0", "id": "5635528693", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 14:18:49", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5304/5635528715_fd029eee71_o.jpg", "secret": "b468b04c16", "media": "photo", "latitude": "0", "id": "5635528715", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 14:57:45", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5108/5635528759_09a5dcdaf8_o.jpg", "secret": "ff412e7c5e", "media": "photo", "latitude": "0", "id": "5635528759", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2011-04-16 14:59:01", "license": "1", "title": "Open MAKE: Wood", "text": "", "album_id": "72157626534937894", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5306/5636109052_a7b2165b8a_o.jpg", "secret": "e10c05cc95", "media": "photo", "latitude": "0", "id": "5636109052", "tags": "sanfrancisco wood make shop museum diy workshop toothpicks maker exploratorium tinker makemagazine daledougherty makerfaire scottweaver openmake tinkeringstudio"}, {"datetaken": "2010-06-18 00:04:14", "license": "6", "title": "Downtown Chelsea Michigan photos by Michigan Municipal League", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1224/4723640713_e1e59a546b_o.jpg", "secret": "0252f7d8bd", "media": "photo", "latitude": "42.317854", "id": "4723640713", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:04:43", "license": "6", "title": "Downtown Chelsea Michigan photos by Michigan Municipal League", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1157/4723641013_62b0a11133_o.jpg", "secret": "a01d464fdd", "media": "photo", "latitude": "42.317854", "id": "4723641013", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:06:55", "license": "6", "title": "Downtown Chelsea Michigan photos by Michigan Municipal League", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1260/4724293534_e047ef0b82_o.jpg", "secret": "f552dc9183", "media": "photo", "latitude": "42.317854", "id": "4724293534", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:07:11", "license": "6", "title": "Jiffy Mixes Factory in Chelsea Michigan", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1217/4724293796_af11899245_o.jpg", "secret": "b612ef4355", "media": "photo", "latitude": "42.317854", "id": "4724293796", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:07:30", "license": "6", "title": "Jiffy Mixes Factory in Chelsea Michigan", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1241/4724294030_17960d04cf_o.jpg", "secret": "c17d6ae487", "media": "photo", "latitude": "42.317854", "id": "4724294030", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:08:13", "license": "6", "title": "Downtown Chelsea Michigan photos by Michigan Municipal League", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1377/4724294314_7bf0d1e22f_o.jpg", "secret": "234371df57", "media": "photo", "latitude": "42.317854", "id": "4724294314", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:09:01", "license": "6", "title": "Jiffy Factory in Chelsea Michigan", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1036/4723642315_4522489e67_o.jpg", "secret": "d0567e7edb", "media": "photo", "latitude": "42.317854", "id": "4723642315", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:09:06", "license": "6", "title": "Downtown Chelsea Michigan photos by Michigan Municipal League", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1080/4723642649_f1620016f1_o.jpg", "secret": "5f09bcae0c", "media": "photo", "latitude": "42.317854", "id": "4723642649", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:11:06", "license": "6", "title": "Decorative Signing in Downtown Chelsea Michigan", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1196/4724295240_546507d444_o.jpg", "secret": "7a28d4d264", "media": "photo", "latitude": "42.317854", "id": "4724295240", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:11:13", "license": "6", "title": "Downtown Chelsea Michigan photos by Michigan Municipal League", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1185/4723643299_0d58727699_o.jpg", "secret": "1aa8ff8b5d", "media": "photo", "latitude": "42.317854", "id": "4723643299", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:12:00", "license": "6", "title": "Decorative Signing in Downtown Chelsea Michigan", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1412/4723643631_2f829f3339_o.jpg", "secret": "1d71ab1970", "media": "photo", "latitude": "42.317854", "id": "4723643631", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:12:34", "license": "6", "title": "Downtown Chelsea Michigan photos by Michigan Municipal League", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1053/4723643939_40f5a889ae_o.jpg", "secret": "aacdd0d94b", "media": "photo", "latitude": "42.317854", "id": "4723643939", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:13:06", "license": "6", "title": "Decorative Signing in Downtown Chelsea Michigan", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1185/4723644225_f577e7d119_o.jpg", "secret": "03d0eb7c8a", "media": "photo", "latitude": "42.317854", "id": "4723644225", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:14:56", "license": "6", "title": "Sculpture Art in Downtown Chelsea Michigan", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1120/4724296714_136d84bdb2_o.jpg", "secret": "187f56382c", "media": "photo", "latitude": "42.317854", "id": "4724296714", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:15:22", "license": "6", "title": "Downtown Chelsea Michigan photos by Michigan Municipal League", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1203/4723644863_db5e03e9ac_o.jpg", "secret": "a900dc5876", "media": "photo", "latitude": "42.317854", "id": "4723644863", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:17:47", "license": "6", "title": "Chelsea Michigan photos by Michigan Municipal League", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1345/4723645201_cdbb3fe99a_o.jpg", "secret": "92d387d629", "media": "photo", "latitude": "42.317854", "id": "4723645201", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:18:07", "license": "6", "title": "Chelsea Michigan photos by Michigan Municipal League", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1039/4724297530_8e1a87bd3b_o.jpg", "secret": "51176d105b", "media": "photo", "latitude": "42.317854", "id": "4724297530", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:18:51", "license": "6", "title": "Chelsea Michigan photos by Michigan Municipal League", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1057/4723645757_95f0076432_o.jpg", "secret": "09eb18abd1", "media": "photo", "latitude": "42.317854", "id": "4723645757", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:19:55", "license": "6", "title": "Sculpture Art in Downtown Chelsea Michigan", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1402/4723646005_0464ff1feb_o.jpg", "secret": "e8fe9f3a8c", "media": "photo", "latitude": "42.317854", "id": "4723646005", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:20:03", "license": "6", "title": "Sculpture Art in Downtown Chelsea Michigan", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1013/4723646271_07c93aa09f_o.jpg", "secret": "9a0512df3f", "media": "photo", "latitude": "42.317854", "id": "4723646271", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:20:28", "license": "6", "title": "Purple Rose Theatre photos by Michigan Municipal League", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1337/4724298658_70893c4cb3_o.jpg", "secret": "ddc06e821b", "media": "photo", "latitude": "42.317854", "id": "4724298658", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:20:34", "license": "6", "title": "Chelsea's Purple Rose Theatre photos by Michigan Municipal League", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1421/4723646825_85d86f1da5_o.jpg", "secret": "5af7506344", "media": "photo", "latitude": "42.317854", "id": "4723646825", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2010-06-18 00:23:08", "license": "6", "title": "Chelsea Michigan photos by Michigan Municipal League", "text": "", "album_id": "72157624331727446", "longitude": "-84.020233", "url_o": "https://farm2.staticflickr.com/1005/4724299222_ae1c6b2057_o.jpg", "secret": "1ce42d18e5", "media": "photo", "latitude": "42.317854", "id": "4724299222", "tags": "chelseamichigan jeffdaniels purplerosetheatre walkablecommunity michiganmunicipalleague vibrantdowntown"}, {"datetaken": "2011-09-23 10:47:22", "license": "2", "title": "Alligator move at Australian Reptile Park Wyoming 1", "text": "", "album_id": "72157627607446867", "longitude": "151.351432", "url_o": "https://farm7.staticflickr.com/6151/6174056728_c4ef4018b6_o.jpg", "secret": "df7d10a516", "media": "photo", "latitude": "-33.407746", "id": "6174056728", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 10:48:00", "license": "2", "title": "Alligator move at Australian Reptile Park Wyoming 2", "text": "", "album_id": "72157627607446867", "longitude": "151.351346", "url_o": "https://farm7.staticflickr.com/6159/6173529819_e00639f7ed_o.jpg", "secret": "efab3520a1", "media": "photo", "latitude": "-33.407634", "id": "6173529819", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 10:48:56", "license": "2", "title": "Alligator move at Australian Reptile Park Wyoming 3", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6156/6173530477_a4d314c24c_o.jpg", "secret": "caa5709e7f", "media": "photo", "latitude": "0", "id": "6173530477", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 10:51:00", "license": "2", "title": "Alligator move at Australian Reptile Park Wyoming 4", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6174/6174058782_5754e59b49_o.jpg", "secret": "9d15f15465", "media": "photo", "latitude": "0", "id": "6174058782", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 10:51:45", "license": "2", "title": "Alligator move at Australian Reptile Park Wyoming 5", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6171/6174059582_f2f98ca805_o.jpg", "secret": "349bd0ab7f", "media": "photo", "latitude": "0", "id": "6174059582", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 10:52:16", "license": "2", "title": "Alligator move at Australian Reptile Park Wyoming 6", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6156/6174060140_59193a7047_o.jpg", "secret": "40271a6368", "media": "photo", "latitude": "0", "id": "6174060140", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 10:54:00", "license": "2", "title": "Alligator move at Australian Reptile Park Wyoming 7", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6170/6173533233_54a30734a0_o.jpg", "secret": "9d5329b4fd", "media": "photo", "latitude": "0", "id": "6173533233", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 10:54:40", "license": "2", "title": "Alligator move at Australian Reptile Park Wyoming 9", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6169/6173533927_0c32ef5682_o.jpg", "secret": "c14a8b286d", "media": "photo", "latitude": "0", "id": "6173533927", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 10:55:11", "license": "2", "title": "Alligator move at Australian Reptile Park Wyoming 10", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6155/6173534715_3cda6d781b_o.jpg", "secret": "df70ed4011", "media": "photo", "latitude": "0", "id": "6173534715", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 10:55:41", "license": "2", "title": "Alligator move at Australian Reptile Park Wyoming 11", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6171/6173535627_6d853a82d6_o.jpg", "secret": "a119d8f6f4", "media": "photo", "latitude": "0", "id": "6173535627", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 10:56:32", "license": "2", "title": "Staff collecting tortoises, Australian Reptile Park, Wyoming", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6172/6173536319_9ff214c874_o.jpg", "secret": "ae5a5f572b", "media": "photo", "latitude": "0", "id": "6173536319", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 10:57:00", "license": "2", "title": "Snake and tortoise enclosures during the last days at Australian Reptile Park, Wyoming", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6154/6173536747_edbe7ff431_o.jpg", "secret": "6d831e1e53", "media": "photo", "latitude": "0", "id": "6173536747", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 10:57:42", "license": "2", "title": "Snake enclosures during the last days at Australian Reptile Park, Wyoming", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6169/6173537227_6a5ce9bc87_o.jpg", "secret": "cda9f602b4", "media": "photo", "latitude": "0", "id": "6173537227", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 10:58:21", "license": "2", "title": "Alligator move at Australian Reptile Park 12", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6165/6173537641_4c03053b3d_o.jpg", "secret": "b48a14894d", "media": "photo", "latitude": "0", "id": "6173537641", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 10:58:59", "license": "2", "title": "Alligator move at Australian Reptile Park Wyoming 13", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6162/6173538105_c4e1136507_o.jpg", "secret": "3f4c45777e", "media": "photo", "latitude": "0", "id": "6173538105", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 10:59:45", "license": "2", "title": "Alligator move at Australian Reptile Park Wyoming14", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6178/6173538535_532124b6fe_o.jpg", "secret": "048e2e95ce", "media": "photo", "latitude": "0", "id": "6173538535", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 11:00:10", "license": "2", "title": "Alligator move at Australian Reptile Park Wyoming15", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6164/6174066318_7efe3ec82a_o.jpg", "secret": "d323bee34d", "media": "photo", "latitude": "0", "id": "6174066318", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 11:00:46", "license": "2", "title": "Ploddy's unkindest cut 1", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6169/6173539261_59b19fdfa0_o.jpg", "secret": "80253f8ffd", "media": "photo", "latitude": "0", "id": "6173539261", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 11:01:16", "license": "2", "title": "Ploddy's unkindest cut 2", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6178/6173539595_1f8e930f18_o.jpg", "secret": "5c33b1d713", "media": "photo", "latitude": "0", "id": "6173539595", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 11:01:47", "license": "2", "title": "Ploddy's unkindest cut 3", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6155/6174067476_86267232f4_o.jpg", "secret": "438dded3f0", "media": "photo", "latitude": "0", "id": "6174067476", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2011-09-23 11:02:19", "license": "2", "title": "Ploddy's unkindest cut 4", "text": "", "album_id": "72157627607446867", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6173/6174068006_22c996a0bb_o.jpg", "secret": "ee3b167b6c", "media": "photo", "latitude": "0", "id": "6174068006", "tags": "staff dinosaurs reptiles alligators australianreptilepark ploddy wyomingnsw"}, {"datetaken": "2005-12-29 21:25:31", "license": "3", "title": "Casey Garrison Rock/Luau", "text": "", "album_id": "72157624137503998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4640140937_2416436c1c_o.jpg", "secret": "7a464a31fc", "media": "photo", "latitude": "0", "id": "4640140937", "tags": "family soldier civilian areai imcom"}, {"datetaken": "2005-12-29 21:33:48", "license": "3", "title": "Casey Garrison Rock/Luau", "text": "", "album_id": "72157624137503998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4640748850_e7653372fe_o.jpg", "secret": "96290067cf", "media": "photo", "latitude": "0", "id": "4640748850", "tags": "family soldier civilian areai imcom"}, {"datetaken": "2005-12-29 21:33:48", "license": "3", "title": "Casey Garrison Rock/Luau", "text": "", "album_id": "72157624137503998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4640749230_308d3a01b5_o.jpg", "secret": "fcbc2ae578", "media": "photo", "latitude": "0", "id": "4640749230", "tags": "family soldier civilian areai imcom"}, {"datetaken": "2005-12-29 21:33:48", "license": "3", "title": "Casey Garrison Rock/Luau", "text": "", "album_id": "72157624137503998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4640749570_a5383d895f_o.jpg", "secret": "5ce2891511", "media": "photo", "latitude": "0", "id": "4640749570", "tags": "family soldier civilian areai imcom"}, {"datetaken": "2005-12-29 21:33:48", "license": "3", "title": "Casey Garrison Rock/Luau", "text": "", "album_id": "72157624137503998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4640750056_ea2dbd682e_o.jpg", "secret": "bc6ce63137", "media": "photo", "latitude": "0", "id": "4640750056", "tags": "family soldier civilian areai imcom"}, {"datetaken": "2005-12-29 22:03:10", "license": "3", "title": "Casey Garrison Rock/Luau", "text": "", "album_id": "72157624137503998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4640750512_afff16a6c3_o.jpg", "secret": "ea7086a44a", "media": "photo", "latitude": "0", "id": "4640750512", "tags": "family soldier civilian areai imcom"}, {"datetaken": "2005-12-29 22:15:14", "license": "3", "title": "Casey Garrison Rock/Luau", "text": "", "album_id": "72157624137503998", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3394/4640750892_c509a296e8_o.jpg", "secret": "dd4091a572", "media": "photo", "latitude": "0", "id": "4640750892", "tags": "family soldier civilian areai imcom"}, {"datetaken": "2005-12-29 22:15:14", "license": "3", "title": "Casey Garrison Rock/Luau", "text": "", "album_id": "72157624137503998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4640751212_7ed92e7e8e_o.jpg", "secret": "6a824fabd2", "media": "photo", "latitude": "0", "id": "4640751212", "tags": "family soldier civilian areai imcom"}, {"datetaken": "2005-12-29 22:15:14", "license": "3", "title": "Casey Garrison Rock/Luau", "text": "", "album_id": "72157624137503998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4640143849_01371e3e74_o.jpg", "secret": "ebf33f25f9", "media": "photo", "latitude": "0", "id": "4640143849", "tags": "family soldier civilian areai imcom"}, {"datetaken": "2005-12-29 22:15:14", "license": "3", "title": "Casey Garrison Rock/Luau", "text": "", "album_id": "72157624137503998", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3339/4640751908_db7c75bce4_o.jpg", "secret": "0eb55e10f6", "media": "photo", "latitude": "0", "id": "4640751908", "tags": "family soldier civilian areai imcom"}, {"datetaken": "2005-12-29 22:15:14", "license": "3", "title": "Casey Garrison Rock/Luau", "text": "", "album_id": "72157624137503998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4640144509_ccc72208c1_o.jpg", "secret": "0e83200d34", "media": "photo", "latitude": "0", "id": "4640144509", "tags": "family soldier civilian areai imcom"}, {"datetaken": "2005-12-29 22:15:14", "license": "3", "title": "Casey Garrison Rock/Luau", "text": "", "album_id": "72157624137503998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4640752626_281291c0a6_o.jpg", "secret": "93ebde1cfa", "media": "photo", "latitude": "0", "id": "4640752626", "tags": "family soldier civilian areai imcom"}, {"datetaken": "2005-12-29 22:15:14", "license": "3", "title": "Casey Garrison Rock/Luau", "text": "", "album_id": "72157624137503998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4640145183_1bb50e32e0_o.jpg", "secret": "104bdb6ca4", "media": "photo", "latitude": "0", "id": "4640145183", "tags": "family soldier civilian areai imcom"}, {"datetaken": "2005-12-29 22:25:02", "license": "3", "title": "Casey Garrison Rock/Luau", "text": "", "album_id": "72157624137503998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4640145803_c5e0c086f6_o.jpg", "secret": "8f0e7694f2", "media": "photo", "latitude": "0", "id": "4640145803", "tags": "family soldier civilian areai imcom"}, {"datetaken": "2005-12-29 22:25:02", "license": "3", "title": "Casey Garrison Rock/Luau May 22", "text": "", "album_id": "72157624137503998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4640753838_47c70ca3b5_o.jpg", "secret": "2af141d41b", "media": "photo", "latitude": "0", "id": "4640753838", "tags": "family soldier civilian areai imcom"}, {"datetaken": "2010-08-25 20:13:06", "license": "2", "title": "West Auckland A 12", "text": "", "album_id": "72157624807908194", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4927330667_16ee734110_o.jpg", "secret": "d302f5a17f", "media": "photo", "latitude": "0", "id": "4927330667", "tags": "craigmcfarlane"}, {"datetaken": "2010-08-25 20:15:28", "license": "2", "title": "West Auckland A 13", "text": "", "album_id": "72157624807908194", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4927331095_bf0078c5d4_o.jpg", "secret": "68821e1592", "media": "photo", "latitude": "0", "id": "4927331095", "tags": "stevegibson"}, {"datetaken": "2010-08-25 20:15:40", "license": "2", "title": "West Auckland A 11", "text": "", "album_id": "72157624807908194", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4927330229_40b5f8edc3_o.jpg", "secret": "5e8ce0971b", "media": "photo", "latitude": "0", "id": "4927330229", "tags": "paulchow"}, {"datetaken": "2010-08-25 20:15:54", "license": "2", "title": "West Auckland A 10", "text": "", "album_id": "72157624807908194", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4927329761_c46aaca98b_o.jpg", "secret": "071856697c", "media": "photo", "latitude": "0", "id": "4927329761", "tags": "paulchow craigmcfarlane garyormston davidpounder"}, {"datetaken": "2010-08-25 20:16:16", "license": "2", "title": "West Auckland A 09", "text": "", "album_id": "72157624807908194", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4927925334_4536b58c74_o.jpg", "secret": "e2804ec7b8", "media": "photo", "latitude": "0", "id": "4927925334", "tags": "adamjohnston"}, {"datetaken": "2010-08-25 20:17:03", "license": "2", "title": "West Auckland A 08", "text": "", "album_id": "72157624807908194", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4927328801_44cf30bb99_o.jpg", "secret": "c38ac9b5b9", "media": "photo", "latitude": "0", "id": "4927328801", "tags": "paulchow"}, {"datetaken": "2010-08-25 20:17:33", "license": "2", "title": "West Auckland A 07", "text": "", "album_id": "72157624807908194", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4114/4927924420_6ea6d00fbd_o.jpg", "secret": "3c911d50d8", "media": "photo", "latitude": "0", "id": "4927924420", "tags": "paulchow craigmcfarlane damonrobson"}, {"datetaken": "2010-08-25 20:17:51", "license": "2", "title": "West Auckland A 06", "text": "", "album_id": "72157624807908194", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4927924022_8f0e86c22a_o.jpg", "secret": "3e13699828", "media": "photo", "latitude": "0", "id": "4927924022", "tags": "adamjohnston paulchow craigmcfarlane"}, {"datetaken": "2010-08-25 20:18:04", "license": "2", "title": "West Auckland A 05", "text": "", "album_id": "72157624807908194", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4927327407_7d366334f9_o.jpg", "secret": "e975bb4140", "media": "photo", "latitude": "0", "id": "4927327407", "tags": "craigmcfarlane"}, {"datetaken": "2010-08-25 20:18:19", "license": "2", "title": "West Auckland A 04", "text": "", "album_id": "72157624807908194", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4927923018_8f377aa619_o.jpg", "secret": "81fe0d076e", "media": "photo", "latitude": "0", "id": "4927923018", "tags": "paulchow"}, {"datetaken": "2010-08-25 20:19:33", "license": "2", "title": "West Auckland A 03", "text": "", "album_id": "72157624807908194", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4927326217_902fcd3a7b_o.jpg", "secret": "d22b9ea18f", "media": "photo", "latitude": "0", "id": "4927326217", "tags": "briansmith adamjohnston garyormston"}, {"datetaken": "2010-08-25 20:20:02", "license": "2", "title": "West Auckland A 02", "text": "", "album_id": "72157624807908194", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4927325651_a4f37eb56e_o.jpg", "secret": "b260d92f35", "media": "photo", "latitude": "0", "id": "4927325651", "tags": ""}, {"datetaken": "2010-08-25 20:20:46", "license": "2", "title": "West Auckland A 01", "text": "", "album_id": "72157624807908194", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4927325115_da322d9253_o.jpg", "secret": "bddf152b2a", "media": "photo", "latitude": "0", "id": "4927325115", "tags": "damonrobson garyormston"}, {"datetaken": "2009-11-11 17:04:38", "license": "1", "title": "eSeL_zweiter-bezirk_0324", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4830640188_75b8ec384e_o.jpg", "secret": "aaa992d33c", "media": "photo", "latitude": "0", "id": "4830640188", "tags": "zweiter bezirk zweiterbezirk"}, {"datetaken": "2009-11-11 17:10:28", "license": "1", "title": "eSeL_zweiter-bezirk_5696", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4830640420_b106506512_o.jpg", "secret": "252675c8dc", "media": "photo", "latitude": "0", "id": "4830640420", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 17:10:59", "license": "1", "title": "eSeL_zweiter-bezirk_5699", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4830640768_792dcd2ac5_o.jpg", "secret": "f9af2dc5e5", "media": "photo", "latitude": "0", "id": "4830640768", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 17:13:22", "license": "1", "title": "eSeL_zweiter-bezirk_5701", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4830028597_312344b411_o.jpg", "secret": "324c5e6ded", "media": "photo", "latitude": "0", "id": "4830028597", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 17:28:55", "license": "1", "title": "eSeL_zweiter-bezirk_5702", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4830028737_5eca2d7acd_o.jpg", "secret": "0aeabb433b", "media": "photo", "latitude": "0", "id": "4830028737", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 17:29:04", "license": "1", "title": "eSeL_zweiter-bezirk_5703", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4830028925_b9de719458_o.jpg", "secret": "a864d0c9c0", "media": "photo", "latitude": "0", "id": "4830028925", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 17:33:02", "license": "1", "title": "eSeL_zweiter-bezirk_5706", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4830029085_79753dea6a_o.jpg", "secret": "4570305e07", "media": "photo", "latitude": "0", "id": "4830029085", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 17:39:03", "license": "1", "title": "eSeL_zweiter-bezirk_5707", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4830029253_ea0c7eda94_o.jpg", "secret": "4226d1d911", "media": "photo", "latitude": "0", "id": "4830029253", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 17:42:09", "license": "1", "title": "eSeL_zweiter-bezirk_5709", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4830641798_45dd922e98_o.jpg", "secret": "214fb11e09", "media": "photo", "latitude": "0", "id": "4830641798", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 17:50:35", "license": "1", "title": "eSeL_zweiter-bezirk_5713", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4830642004_7b70aef8a6_o.jpg", "secret": "f3e2cdc594", "media": "photo", "latitude": "0", "id": "4830642004", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 17:51:57", "license": "1", "title": "eSeL_zweiter-bezirk_5714", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4830642182_c419ce8796_o.jpg", "secret": "bc579b5732", "media": "photo", "latitude": "0", "id": "4830642182", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 17:53:25", "license": "1", "title": "eSeL_zweiter-bezirk_5716", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4830029993_d11c5c3a03_o.jpg", "secret": "697d9e6867", "media": "photo", "latitude": "0", "id": "4830029993", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 17:54:16", "license": "1", "title": "eSeL_zweiter-bezirk_5719", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4830642550_c2160b886e_o.jpg", "secret": "b86333aed8", "media": "photo", "latitude": "0", "id": "4830642550", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 17:54:32", "license": "1", "title": "eSeL_zweiter-bezirk_5721", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4830642746_c01bfb4c5c_o.jpg", "secret": "33ab33512a", "media": "photo", "latitude": "0", "id": "4830642746", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 17:54:49", "license": "1", "title": "eSeL_zweiter-bezirk_5722", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4830030629_ab968fb271_o.jpg", "secret": "375478146c", "media": "photo", "latitude": "0", "id": "4830030629", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 17:54:59", "license": "1", "title": "eSeL_zweiter-bezirk_5723", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4830643204_33cb1970c6_o.jpg", "secret": "e713966662", "media": "photo", "latitude": "0", "id": "4830643204", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 18:03:33", "license": "1", "title": "eSeL_zweiter-bezirk_5726", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4830643376_1dd0af382c_o.jpg", "secret": "f73b157ca9", "media": "photo", "latitude": "0", "id": "4830643376", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 18:03:55", "license": "1", "title": "eSeL_zweiter-bezirk_5728", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4830031233_f467e54e86_o.jpg", "secret": "68d4ab34c3", "media": "photo", "latitude": "0", "id": "4830031233", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 18:04:02", "license": "1", "title": "eSeL_zweiter-bezirk_5729", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4830643782_04d8690054_o.jpg", "secret": "c1a2943df9", "media": "photo", "latitude": "0", "id": "4830643782", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 18:04:14", "license": "1", "title": "eSeL_zweiter-bezirk_5730", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4830643980_7a00bcaacb_o.jpg", "secret": "f399e4d75f", "media": "photo", "latitude": "0", "id": "4830643980", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 18:04:25", "license": "1", "title": "eSeL_zweiter-bezirk_5731", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4830031781_14b51bfd2c_o.jpg", "secret": "6e73ece6e5", "media": "photo", "latitude": "0", "id": "4830031781", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 18:19:34", "license": "1", "title": "eSeL_zweiter-bezirk_5740", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4830031949_69a4535566_o.jpg", "secret": "2d311934b2", "media": "photo", "latitude": "0", "id": "4830031949", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 18:20:00", "license": "1", "title": "eSeL_zweiter-bezirk_5742", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4830644600_6e307e5334_o.jpg", "secret": "9bce691bc9", "media": "photo", "latitude": "0", "id": "4830644600", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 18:20:17", "license": "1", "title": "eSeL_zweiter-bezirk_5743", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4830644786_c19aee744a_o.jpg", "secret": "fe0e259b15", "media": "photo", "latitude": "0", "id": "4830644786", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 19:09:44", "license": "1", "title": "eSeL_zweiter-bezirk_5746", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4830032613_1fea05b62d_o.jpg", "secret": "941d0b51a2", "media": "photo", "latitude": "0", "id": "4830032613", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 19:10:41", "license": "1", "title": "eSeL_zweiter-bezirk_5747", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4830032763_8a771df75d_o.jpg", "secret": "b902e4570b", "media": "photo", "latitude": "0", "id": "4830032763", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 19:10:45", "license": "1", "title": "eSeL_zweiter-bezirk_5748", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4830032941_8ed37f69c1_o.jpg", "secret": "86ce002669", "media": "photo", "latitude": "0", "id": "4830032941", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 19:10:55", "license": "1", "title": "eSeL_zweiter-bezirk_5749", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4830033145_e94030e3fa_o.jpg", "secret": "0ca297c372", "media": "photo", "latitude": "0", "id": "4830033145", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2009-11-11 19:11:11", "license": "1", "title": "eSeL_zweiter-bezirk_5755", "text": "", "album_id": "72157624585498856", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4830033339_d37ef86354_o.jpg", "secret": "24de71d805", "media": "photo", "latitude": "0", "id": "4830033339", "tags": "zweiter bezirk artweek eselactivities zweiterbezirk"}, {"datetaken": "2005-04-27 17:43:29", "license": "2", "title": "The entrance from the road we have walked", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/11301909_a8bc22b20f_o.jpg", "secret": "a8bc22b20f", "media": "photo", "latitude": "0", "id": "11301909", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 17:44:32", "license": "2", "title": "Chiswicks' sports ground #1", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/11301789_26c1e65622_o.jpg", "secret": "26c1e65622", "media": "photo", "latitude": "0", "id": "11301789", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 17:44:34", "license": "2", "title": "Chiswicks' sports ground #2", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/11301715_3d84824d9d_o.jpg", "secret": "3d84824d9d", "media": "photo", "latitude": "0", "id": "11301715", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 17:44:58", "license": "2", "title": "The complex in profile", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/11253667_076dd33872_o.jpg", "secret": "076dd33872", "media": "photo", "latitude": "0", "id": "11253667", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 17:46:47", "license": "2", "title": "The first function room #1", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/11252935_bc4a4ca030_o.jpg", "secret": "bc4a4ca030", "media": "photo", "latitude": "0", "id": "11252935", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 17:58:09", "license": "2", "title": "The second function room #2", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/11252712_d421044845_o.jpg", "secret": "d421044845", "media": "photo", "latitude": "0", "id": "11252712", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 17:58:11", "license": "2", "title": "The second function room #1", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/11252577_eec9d25fd5_o.jpg", "secret": "eec9d25fd5", "media": "photo", "latitude": "0", "id": "11252577", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 18:04:56", "license": "2", "title": "The first function room #2", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/11252375_a4c308d687_o.jpg", "secret": "a4c308d687", "media": "photo", "latitude": "0", "id": "11252375", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 18:12:32", "license": "2", "title": "The second function room #3", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/11251358_d4cd37bbb6_o.jpg", "secret": "d4cd37bbb6", "media": "photo", "latitude": "0", "id": "11251358", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 18:13:16", "license": "2", "title": "The second function room #4", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/11251067_bae06b8221_o.jpg", "secret": "bae06b8221", "media": "photo", "latitude": "0", "id": "11251067", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 18:23:28", "license": "2", "title": "The carparking space available #1", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/11250886_0f4a62b3ee_o.jpg", "secret": "0f4a62b3ee", "media": "photo", "latitude": "0", "id": "11250886", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 18:34:25", "license": "2", "title": "Where the marquee would be erected", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/11249989_885c8a9dab_o.jpg", "secret": "885c8a9dab", "media": "photo", "latitude": "0", "id": "11249989", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 18:34:35", "license": "2", "title": "Where the marquee would be erected", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/11249754_dc16724eb3_o.jpg", "secret": "dc16724eb3", "media": "photo", "latitude": "0", "id": "11249754", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 18:34:49", "license": "2", "title": "The carparking space available #2", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/11249591_e938472c9a_o.jpg", "secret": "e938472c9a", "media": "photo", "latitude": "0", "id": "11249591", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 18:38:36", "license": "2", "title": "Front view of the complex", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/11248828_a05c27522e_o.jpg", "secret": "a05c27522e", "media": "photo", "latitude": "0", "id": "11248828", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 18:59:56", "license": "2", "title": "Chiswick panorama #2", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/11247324_37e8fa45af_o.jpg", "secret": "37e8fa45af", "media": "photo", "latitude": "0", "id": "11247324", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 19:01:23", "license": "2", "title": "Chiswick panorama #1", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/11247124_e806ed10e3_o.jpg", "secret": "e806ed10e3", "media": "photo", "latitude": "0", "id": "11247124", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 19:02:37", "license": "2", "title": "Distance from the station #3", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/11246800_7bb142ea6b_o.jpg", "secret": "7bb142ea6b", "media": "photo", "latitude": "0", "id": "11246800", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 19:04:29", "license": "2", "title": "Distance from the station #2", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/11245672_4e9967d830_o.jpg", "secret": "4e9967d830", "media": "photo", "latitude": "0", "id": "11245672", "tags": "westminster 2005 freshersfayre uwsu chiswick"}, {"datetaken": "2005-04-27 19:10:01", "license": "2", "title": "Distance from the station #1", "text": "", "album_id": "292343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/11244467_69f0b70d94_o.jpg", "secret": "69f0b70d94", "media": "photo", "latitude": "0", "id": "11244467", "tags": "chiswick uwsu freshersfayre 2005 westminster"}, {"datetaken": "2010-06-17 06:53:52", "license": "1", "title": "Motacilla flava", "text": "", "album_id": "72157624199731521", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1034/4720556755_b31499c5f9_o.jpg", "secret": "623441187f", "media": "photo", "latitude": "0", "id": "4720556755", "tags": "bird siberia birdwatching steppe wagtail \u043f\u0440\u0438\u0440\u043e\u0434\u0430 yellowwagtail motacillaflava \u043f\u0442\u0438\u0446\u0430 westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:binomial=motacillaflava taxonomy:family=motacillidae \u0436\u0435\u043b\u0442\u0430\u044f\u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 gorkoyelake novokliuchi novoklyuchi"}, {"datetaken": "2010-06-17 06:59:25", "license": "1", "title": "Motacilla flava", "text": "", "album_id": "72157624199731521", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1214/4721208252_718e9fe9d9_o.jpg", "secret": "d092e3297d", "media": "photo", "latitude": "0", "id": "4721208252", "tags": "bird siberia birdwatching steppe wagtail \u043f\u0440\u0438\u0440\u043e\u0434\u0430 yellowwagtail motacillaflava \u043f\u0442\u0438\u0446\u0430 westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:binomial=motacillaflava taxonomy:family=motacillidae \u0436\u0435\u043b\u0442\u0430\u044f\u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 kulundasteppe \u043e\u0437\u0435\u0440\u043e\u0433\u043e\u0440\u044c\u043a\u043e\u0435 \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 gorkoyelake novokliuchi novoklyuchi"}, {"datetaken": "2010-06-17 07:00:33", "license": "1", "title": "Motacilla flava", "text": "", "album_id": "72157624199731521", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1392/4720558759_dd7bd36bef_o.jpg", "secret": "9be16292ff", "media": "photo", "latitude": "0", "id": "4720558759", "tags": "bird siberia birdwatching steppe wagtail \u043f\u0440\u0438\u0440\u043e\u0434\u0430 yellowwagtail motacillaflava \u043f\u0442\u0438\u0446\u0430 westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:binomial=motacillaflava taxonomy:family=motacillidae \u0436\u0435\u043b\u0442\u0430\u044f\u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 kulundasteppe \u043e\u0437\u0435\u0440\u043e\u0433\u043e\u0440\u044c\u043a\u043e\u0435 \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 gorkoyelake novokliuchi novoklyuchi"}, {"datetaken": "2010-06-17 07:00:38", "license": "1", "title": "Motacilla flava", "text": "", "album_id": "72157624199731521", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1078/4721209392_4f356b8cc5_o.jpg", "secret": "cfc299f2f2", "media": "photo", "latitude": "0", "id": "4721209392", "tags": "bird siberia birdwatching steppe wagtail \u043f\u0440\u0438\u0440\u043e\u0434\u0430 yellowwagtail motacillaflava \u043f\u0442\u0438\u0446\u0430 westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:binomial=motacillaflava taxonomy:family=motacillidae \u0436\u0435\u043b\u0442\u0430\u044f\u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 kulundasteppe \u043e\u0437\u0435\u0440\u043e\u0433\u043e\u0440\u044c\u043a\u043e\u0435 \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 gorkoyelake novokliuchi novoklyuchi"}, {"datetaken": "2010-06-17 07:05:07", "license": "1", "title": "Motacilla flava", "text": "", "album_id": "72157624199731521", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1390/4720560161_e36814a137_o.jpg", "secret": "08266efd3f", "media": "photo", "latitude": "0", "id": "4720560161", "tags": "bird siberia birdwatching steppe wagtail \u043f\u0440\u0438\u0440\u043e\u0434\u0430 yellowwagtail motacillaflava \u043f\u0442\u0438\u0446\u0430 westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:binomial=motacillaflava taxonomy:family=motacillidae \u0436\u0435\u043b\u0442\u0430\u044f\u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 kulundasteppe \u043e\u0437\u0435\u0440\u043e\u0433\u043e\u0440\u044c\u043a\u043e\u0435 \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 gorkoyelake novokliuchi novoklyuchi"}, {"datetaken": "2010-06-17 07:26:41", "license": "1", "title": "Marsh Harrier", "text": "", "album_id": "72157624199731521", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4742285806_7c5f92da02_o.jpg", "secret": "08bb9a9c12", "media": "photo", "latitude": "0", "id": "4742285806", "tags": "bird nature fauna siberia raptor predator ornithology birdwatching birdofprey harrier \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b circusaeruginosus accipitridae \u043f\u0442\u0438\u0446\u0430 marshharrier westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0445\u0438\u0449\u043d\u0438\u043a \u0444\u0430\u0443\u043d\u0430 \u0445\u0438\u0449\u043d\u0430\u044f\u043f\u0442\u0438\u0446\u0430 taxonomy:order=ciconiiformes taxonomy:family=accipitridae novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:binomial=circusaeruginosus taxonomy:genus=circus \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f \u043b\u0443\u043d\u044c kulundasteppe \u6b27\u7f85\u5df4\u6ca2\u9d5f \u6ca2\u9d5f"}, {"datetaken": "2010-06-17 07:46:51", "license": "1", "title": "Hooded Crow", "text": "", "album_id": "72157624199731521", "longitude": "77.997608", "url_o": "https://farm2.staticflickr.com/1374/4732516184_fdfecd9ec6_o.jpg", "secret": "cfb7d7658c", "media": "photo", "latitude": "54.233831", "id": "4732516184", "tags": "bird nature fauna siberia rook ornithology corvusfrugilegus \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b \u043f\u0442\u0438\u0446\u0430 westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c \u0433\u0440\u0430\u0447 taxonomy:binomial=corvusfrugilegus \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f kulundasteppe \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c novokliuchi novoklyuchi lakegorkoye"}, {"datetaken": "2010-06-17 07:48:45", "license": "1", "title": "Motacilla flava", "text": "", "album_id": "72157624199731521", "longitude": "77.994689", "url_o": "https://farm2.staticflickr.com/1353/4720562367_9b05ff5b62_o.jpg", "secret": "31be96c8d4", "media": "photo", "latitude": "54.228614", "id": "4720562367", "tags": "bird siberia birdwatching steppe wagtail \u043f\u0440\u0438\u0440\u043e\u0434\u0430 yellowwagtail motacillaflava \u043f\u0442\u0438\u0446\u0430 westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:binomial=motacillaflava taxonomy:family=motacillidae \u0436\u0435\u043b\u0442\u0430\u044f\u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 kulundasteppe \u043e\u0437\u0435\u0440\u043e\u0433\u043e\u0440\u044c\u043a\u043e\u0435 \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 gorkoyelake novokliuchi novoklyuchi"}, {"datetaken": "2010-06-17 08:26:43", "license": "1", "title": "Motacilla flava", "text": "", "album_id": "72157624199731521", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1176/4721211536_0123b31d6c_o.jpg", "secret": "88507d02e4", "media": "photo", "latitude": "0", "id": "4721211536", "tags": "bird siberia birdwatching steppe wagtail \u043f\u0440\u0438\u0440\u043e\u0434\u0430 yellowwagtail motacillaflava \u043f\u0442\u0438\u0446\u0430 westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:binomial=motacillaflava taxonomy:family=motacillidae \u0436\u0435\u043b\u0442\u0430\u044f\u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 kulundasteppe \u043e\u0437\u0435\u0440\u043e\u0433\u043e\u0440\u044c\u043a\u043e\u0435 \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 gorkoyelake novokliuchi novoklyuchi"}, {"datetaken": "2010-06-17 08:29:26", "license": "1", "title": "Saxicola torquata", "text": "", "album_id": "72157624199731521", "longitude": "77.993659", "url_o": "https://farm2.staticflickr.com/1335/4723667077_47748c5219_o.jpg", "secret": "01947e0b80", "media": "photo", "latitude": "54.235637", "id": "4723667077", "tags": "bird nature fauna wildlife birding saltlake siberia ornithology \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b saxicolatorquata commonstonechat stonechat \u043f\u0442\u0438\u0446\u0430 muscicapidae westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 novosibirskregion taxonomy:family=muscicapidae \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c \u0447\u0435\u0440\u043d\u043e\u0433\u043e\u043b\u043e\u0432\u044b\u0439\u0447\u0435\u043a\u0430\u043d \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f \u0447\u0435\u043a\u0430\u043d kulundasteppe \u043e\u0437\u0435\u0440\u043e\u0433\u043e\u0440\u044c\u043a\u043e\u0435 \u043a\u0443\u043b\u0443\u043d\u0434\u0430 taxonomy:genus=saxicolarubicola \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 gorkoyelake novokliuchi novoklyuchi"}, {"datetaken": "2010-06-17 08:33:01", "license": "1", "title": "Saxicola torquata", "text": "", "album_id": "72157624199731521", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1260/4724319642_490d07d9e7_o.jpg", "secret": "77c2efb14d", "media": "photo", "latitude": "0", "id": "4724319642", "tags": "bird nature fauna wildlife birding saltlake siberia ornithology \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b saxicolatorquata commonstonechat stonechat \u043f\u0442\u0438\u0446\u0430 muscicapidae westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 novosibirskregion taxonomy:family=muscicapidae \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c \u0447\u0435\u0440\u043d\u043e\u0433\u043e\u043b\u043e\u0432\u044b\u0439\u0447\u0435\u043a\u0430\u043d \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f \u0447\u0435\u043a\u0430\u043d kulundasteppe \u043e\u0437\u0435\u0440\u043e\u0433\u043e\u0440\u044c\u043a\u043e\u0435 \u043a\u0443\u043b\u0443\u043d\u0434\u0430 taxonomy:genus=saxicolarubicola \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 gorkoyelake novokliuchi novoklyuchi"}, {"datetaken": "2010-06-17 08:34:02", "license": "1", "title": "Motacilla flava", "text": "", "album_id": "72157624199731521", "longitude": "77.994689", "url_o": "https://farm2.staticflickr.com/1436/4721212264_dd21c939ba_o.jpg", "secret": "de082a086c", "media": "photo", "latitude": "54.228614", "id": "4721212264", "tags": "bird siberia birdwatching steppe wagtail \u043f\u0440\u0438\u0440\u043e\u0434\u0430 yellowwagtail motacillaflava \u043f\u0442\u0438\u0446\u0430 westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:binomial=motacillaflava taxonomy:family=motacillidae \u0436\u0435\u043b\u0442\u0430\u044f\u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 kulundasteppe \u043e\u0437\u0435\u0440\u043e\u0433\u043e\u0440\u044c\u043a\u043e\u0435 \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 gorkoyelake novokliuchi novoklyuchi"}, {"datetaken": "2010-06-17 10:03:05", "license": "1", "title": "Tree Sparrow", "text": "", "album_id": "72157624199731521", "longitude": "77.994689", "url_o": "https://farm2.staticflickr.com/1116/4732516500_5c62efd757_o.jpg", "secret": "70ca281905", "media": "photo", "latitude": "54.228614", "id": "4732516500", "tags": "bird nature fauna siberia ornithology treesparrow passermontanus \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b \u043f\u0442\u0438\u0446\u0430 westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:binomial=passermontanus \u043f\u043e\u043b\u0435\u0432\u043e\u0439\u0432\u043e\u0440\u043e\u0431\u0435\u0439 \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f \u0432\u043e\u0440\u043e\u0431\u0443\u0448\u0435\u043a kulundasteppe \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c novokliuchi novoklyuchi lakegorkoye"}, {"datetaken": "2010-06-17 12:45:45", "license": "1", "title": "Black tern", "text": "", "album_id": "72157624199731521", "longitude": "77.991943", "url_o": "https://farm5.staticflickr.com/4080/4735095105_347bbb2317_o.jpg", "secret": "d8d4f16017", "media": "photo", "latitude": "54.239048", "id": "4735095105", "tags": "lake bird nature fauna wildlife gull siberia tern ornithology birdwatching steppe \u0441\u0442\u0435\u043f\u044c \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b \u043f\u0442\u0438\u0446\u0430 whitewingedblacktern westernsiberia chlidoniasleucopterus \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 \u0447\u0430\u0439\u043a\u0438 taxonomy:family=laridae \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c \u043a\u0440\u0430\u0447\u043a\u0430 \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f kulundasteppe \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 novokliuchi novoklyuchi novosibriskregion taxonomy:binomial=chlidoniasleucopterus \u0431\u0435\u043b\u043e\u043a\u0440\u044b\u043b\u0430\u044f\u043a\u0440\u0430\u0447\u043a\u0430"}, {"datetaken": "2010-06-17 13:10:02", "license": "1", "title": "Buzzard", "text": "", "album_id": "72157624199731521", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4741650643_f0bc0648ca_o.jpg", "secret": "b24cb4f392", "media": "photo", "latitude": "0", "id": "4741650643", "tags": "bird nature fauna siberia raptor buzzard predator ornithology birdwatching buteobuteo birdofprey \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b accipitridae commonbuzzard \u043f\u0442\u0438\u0446\u0430 westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0445\u0438\u0449\u043d\u0438\u043a \u0444\u0430\u0443\u043d\u0430 \u0445\u0438\u0449\u043d\u0430\u044f\u043f\u0442\u0438\u0446\u0430 taxonomy:order=ciconiiformes taxonomy:family=accipitridae novosibirskregion \u043a\u0430\u043d\u044e\u043a \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:binomial=buteobuteo \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f \u0441\u0430\u0440\u044b\u0447 kulundasteppe \u043e\u0431\u044b\u043a\u043d\u043e\u0432\u0435\u043d\u043d\u044b\u0439\u0441\u0430\u0440\u044b\u0447 \u7cde\u9cf6"}, {"datetaken": "2010-06-17 15:56:14", "license": "1", "title": "Saxicola torquata", "text": "", "album_id": "72157624199731521", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1129/4724320098_b81d3ef5c9_o.jpg", "secret": "ab02f06309", "media": "photo", "latitude": "0", "id": "4724320098", "tags": "bird nature fauna wildlife birding saltlake siberia ornithology \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b saxicolatorquata commonstonechat stonechat \u043f\u0442\u0438\u0446\u0430 muscicapidae westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 novosibirskregion taxonomy:family=muscicapidae \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c \u0447\u0435\u0440\u043d\u043e\u0433\u043e\u043b\u043e\u0432\u044b\u0439\u0447\u0435\u043a\u0430\u043d \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f \u0447\u0435\u043a\u0430\u043d kulundasteppe \u043e\u0437\u0435\u0440\u043e\u0433\u043e\u0440\u044c\u043a\u043e\u0435 \u043a\u0443\u043b\u0443\u043d\u0434\u0430 taxonomy:genus=saxicolarubicola \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 gorkoyelake novokliuchi novoklyuchi"}, {"datetaken": "2010-06-17 15:56:40", "license": "1", "title": "Wagtail fledgling", "text": "", "album_id": "72157624199731521", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1061/4723668745_8410df2334_o.jpg", "secret": "c1fb51242d", "media": "photo", "latitude": "0", "id": "4723668745", "tags": "bird nature fauna wildlife birding saltlake siberia ornithology \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b yellowwagtail motacillaflava \u043f\u0442\u0438\u0446\u0430 westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:binomial=motacillaflava taxonomy:family=motacillidae \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f \u0436\u0451\u043b\u0442\u0430\u044f\u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 kulundasteppe \u043e\u0437\u0435\u0440\u043e\u0433\u043e\u0440\u044c\u043a\u043e\u0435 \u043a\u0443\u043b\u0443\u043d\u0434\u0430 \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 gorkoyelake novokliuchi novoklyuchi"}, {"datetaken": "2010-06-17 15:56:57", "license": "1", "title": "Saxicola torquata", "text": "", "album_id": "72157624199731521", "longitude": "77.993488", "url_o": "https://farm2.staticflickr.com/1208/4723668235_dc8bd9d890_o.jpg", "secret": "376b25948e", "media": "photo", "latitude": "54.236540", "id": "4723668235", "tags": "bird nature fauna wildlife birding saltlake siberia ornithology \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b saxicolatorquata commonstonechat stonechat \u043f\u0442\u0438\u0446\u0430 muscicapidae westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 novosibirskregion taxonomy:family=muscicapidae \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c \u0447\u0435\u0440\u043d\u043e\u0433\u043e\u043b\u043e\u0432\u044b\u0439\u0447\u0435\u043a\u0430\u043d \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f \u0447\u0435\u043a\u0430\u043d kulundasteppe \u043e\u0437\u0435\u0440\u043e\u0433\u043e\u0440\u044c\u043a\u043e\u0435 \u043a\u0443\u043b\u0443\u043d\u0434\u0430 taxonomy:genus=saxicolarubicola \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 gorkoyelake novokliuchi novoklyuchi"}, {"datetaken": "2010-06-17 16:33:35", "license": "1", "title": "Selfless", "text": "", "album_id": "72157624199731521", "longitude": "78.000011", "url_o": "https://farm5.staticflickr.com/4118/4773234663_b3ab96cfd5_o.jpg", "secret": "2ab128039e", "media": "photo", "latitude": "54.224801", "id": "4773234663", "tags": "\u043f\u0440\u0438\u0440\u043e\u0434\u0430 greypartridge \u043f\u0442\u0438\u0446\u0430 perdixperdix westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 taxonomy:family=phasianidae \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c \u043a\u0443\u0440\u043e\u043f\u0430\u0442\u043a\u0430 taxonomy:binomial=perdixperdix \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c kulundasteppe \u043e\u0437\u0435\u0440\u043e\u0433\u043e\u0440\u044c\u043a\u043e\u0435 \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 \u0441\u0435\u0440\u0430\u044f\u043a\u0443\u0440\u043e\u043f\u0430\u0442\u043a\u0430"}, {"datetaken": "2010-06-17 20:46:05", "license": "1", "title": "Larus ridibundus", "text": "", "album_id": "72157624199731521", "longitude": "77.988510", "url_o": "https://farm5.staticflickr.com/4099/4735744870_53e76e121e_o.jpg", "secret": "ec964b8c78", "media": "photo", "latitude": "54.240704", "id": "4735744870", "tags": "lake bird nature fauna wildlife gull siberia ornithology birdwatching steppe larusridibundus blackheadedgull \u0441\u0442\u0435\u043f\u044c \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b \u043f\u0442\u0438\u0446\u0430 westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 \u0447\u0430\u0439\u043a\u0438 taxonomy:family=laridae \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:binomial=larusridibundus \u043e\u0437\u0451\u0440\u043d\u0430\u044f\u0447\u0430\u0439\u043a\u0430 \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f kulundasteppe \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 novokliuchi novoklyuchi novosibriskregion"}, {"datetaken": "2010-06-18 09:56:35", "license": "1", "title": "Artemia tunisiana (?)", "text": "", "album_id": "72157624199731521", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1358/4721835938_2910151153_o.jpg", "secret": "a8f681f982", "media": "photo", "latitude": "0", "id": "4721835938", "tags": "siberia steppe brineshrimp \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043e\u0437\u0435\u0440\u043e westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c artemia \u0444\u0430\u0443\u043d\u0430 novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:genus=artemia taxonomy:family=artemiidae \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0440\u0430\u043a\u043e\u043e\u0431\u0440\u0430\u0437\u043d\u044b\u0435 kulundasteppe \u043e\u0437\u0435\u0440\u043e\u0433\u043e\u0440\u044c\u043a\u043e\u0435 artemiatunisiana \u0430\u0440\u0442\u0435\u043c\u0438\u044f \u0440\u0430\u0447\u043e\u043a \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 gorkoyelake novokliuchi taxonomy:order=anostraca taxonomy:subclass=branchiopoda taxonomy:class=crustacea novoklyuchi"}, {"datetaken": "2010-06-18 12:09:03", "license": "1", "title": "Motacilla flava", "text": "", "album_id": "72157624199731521", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1167/4724321398_4d68c6322b_o.jpg", "secret": "3bf68d667c", "media": "photo", "latitude": "0", "id": "4724321398", "tags": "bird nature fauna wildlife birding saltlake siberia ornithology \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b yellowwagtail motacillaflava \u043f\u0442\u0438\u0446\u0430 westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:binomial=motacillaflava taxonomy:family=motacillidae \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f \u0436\u0451\u043b\u0442\u0430\u044f\u0442\u0440\u044f\u0441\u043e\u0433\u0443\u0437\u043a\u0430 kulundasteppe \u043e\u0437\u0435\u0440\u043e\u0433\u043e\u0440\u044c\u043a\u043e\u0435 \u043a\u0443\u043b\u0443\u043d\u0434\u0430 \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 gorkoyelake novokliuchi novoklyuchi"}, {"datetaken": "2010-06-18 12:12:22", "license": "1", "title": "Pallid Harrier", "text": "", "album_id": "72157624199731521", "longitude": "77.946968", "url_o": "https://farm5.staticflickr.com/4135/4741648403_585e5f98ac_o.jpg", "secret": "6a7bec7645", "media": "photo", "latitude": "54.220887", "id": "4741648403", "tags": "bird nature fauna siberia raptor predator ornithology birdwatching redbook birdofprey harrier \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b rarespecies accipitridae \u043f\u0442\u0438\u0446\u0430 westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0445\u0438\u0449\u043d\u0438\u043a \u0444\u0430\u0443\u043d\u0430 pallidharrier circusmacrourus \u0445\u0438\u0449\u043d\u0430\u044f\u043f\u0442\u0438\u0446\u0430 taxonomy:order=ciconiiformes taxonomy:family=accipitridae novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:genus=circus \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f \u043b\u0443\u043d\u044c kulundasteppe \u0441\u0442\u0435\u043f\u043d\u043e\u0439\u043b\u0443\u043d\u044c taxonomy:binomial=circusmacrourus \u8584\u7070\u8272\u6ca2\u9d5f \u6ca2\u9d5f"}, {"datetaken": "2010-06-18 18:20:26", "license": "1", "title": "Marsh Harrier", "text": "", "album_id": "72157624199731521", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4741649217_81fb361089_o.jpg", "secret": "6f657e91b1", "media": "photo", "latitude": "0", "id": "4741649217", "tags": "bird nature fauna siberia raptor predator ornithology birdwatching birdofprey harrier \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b circusaeruginosus accipitridae \u043f\u0442\u0438\u0446\u0430 marshharrier westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0445\u0438\u0449\u043d\u0438\u043a \u0444\u0430\u0443\u043d\u0430 \u0445\u0438\u0449\u043d\u0430\u044f\u043f\u0442\u0438\u0446\u0430 taxonomy:order=ciconiiformes taxonomy:family=accipitridae novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:binomial=circusaeruginosus taxonomy:genus=circus \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f \u043b\u0443\u043d\u044c kulundasteppe \u6b27\u7f85\u5df4\u6ca2\u9d5f \u6ca2\u9d5f"}, {"datetaken": "2010-06-18 18:50:00", "license": "1", "title": "Larus barabensis/heuglini (?)", "text": "", "album_id": "72157624199731521", "longitude": "78.153305", "url_o": "https://farm5.staticflickr.com/4118/4735745196_28d49610a5_o.jpg", "secret": "91ac353689", "media": "photo", "latitude": "54.233530", "id": "4735745196", "tags": "lake bird nature fauna wildlife gull siberia ornithology birdwatching steppe \u0441\u0442\u0435\u043f\u044c \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b \u043f\u0442\u0438\u0446\u0430 westernsiberia \u0447\u0430\u0439\u043a\u0430 \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 \u0447\u0430\u0439\u043a\u0438 taxonomy:family=laridae \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c siberiangull \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f larusbarabensis kulundasteppe \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 novokliuchi novoklyuchi novosibriskregion \u043a\u043b\u0443\u0448\u0430 \u0437\u0430\u043f\u0430\u0434\u043d\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u0447\u0430\u0439\u043a\u0430 \u0431\u0430\u0440\u0430\u0431\u0438\u043d\u0441\u043a\u0430\u044f\u0447\u0430\u0439\u043a\u0430 steppegull larusheughlini"}, {"datetaken": "2010-06-18 18:50:11", "license": "1", "title": "Larus barabensis/heuglini (?)", "text": "", "album_id": "72157624199731521", "longitude": "78.153305", "url_o": "https://farm5.staticflickr.com/4075/4735108093_8e87b8db02_o.jpg", "secret": "e1a1f42d4f", "media": "photo", "latitude": "54.233530", "id": "4735108093", "tags": "lake bird nature fauna wildlife gull siberia ornithology birdwatching steppe \u0441\u0442\u0435\u043f\u044c \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b \u043f\u0442\u0438\u0446\u0430 westernsiberia \u0447\u0430\u0439\u043a\u0430 \u0441\u0438\u0431\u0438\u0440\u044c \u0444\u0430\u0443\u043d\u0430 \u0447\u0430\u0439\u043a\u0438 fbwnewbird taxonomy:family=laridae \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c siberiangull \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f larusbarabensis kulundasteppe \u043a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f\u0441\u0442\u0435\u043f\u044c \u043d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438 novokliuchi novoklyuchi novosibriskregion \u043a\u043b\u0443\u0448\u0430 \u0437\u0430\u043f\u0430\u0434\u043d\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u0447\u0430\u0439\u043a\u0430 \u0431\u0430\u0440\u0430\u0431\u0438\u043d\u0441\u043a\u0430\u044f\u0447\u0430\u0439\u043a\u0430 steppegull"}, {"datetaken": "2010-06-18 19:19:34", "license": "1", "title": "Short-eared Owl", "text": "", "album_id": "72157624199731521", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4741651319_41a283b59b_o.jpg", "secret": "360c2a0c89", "media": "photo", "latitude": "0", "id": "4741651319", "tags": "bird nature fauna siberia raptor owl predator ornithology birdwatching birdofprey \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b \u043f\u0442\u0438\u0446\u0430 shortearedowl asioflammeus \u043d\u043e\u0447\u043d\u043e\u0439 westernsiberia notcurnal \u689f \u0441\u0438\u0431\u0438\u0440\u044c \u0445\u0438\u0449\u043d\u0438\u043a \u0444\u0430\u0443\u043d\u0430 \u0445\u0438\u0449\u043d\u0430\u044f\u043f\u0442\u0438\u0446\u0430 taxonomy:order=strigiformes taxonomy:family=strigidae \u0441\u043e\u0432\u0430 novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:binomial=asiootus taxonomy:genus=asio \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f kulundasteppe lepokurovo \u043b\u0435\u043f\u043e\u043a\u0443\u0440\u043e\u0432\u043e \u5c0f\u8033\u6728\u83df"}, {"datetaken": "2010-06-18 19:40:08", "license": "1", "title": "Marsh Harrier", "text": "", "album_id": "72157624199731521", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4742286400_189fd3bf27_o.jpg", "secret": "0dac2efaec", "media": "photo", "latitude": "0", "id": "4742286400", "tags": "bird nature fauna siberia raptor predator ornithology birdwatching birdofprey harrier \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b circusaeruginosus accipitridae \u043f\u0442\u0438\u0446\u0430 marshharrier westernsiberia \u0441\u0438\u0431\u0438\u0440\u044c \u0445\u0438\u0449\u043d\u0438\u043a \u0444\u0430\u0443\u043d\u0430 \u0445\u0438\u0449\u043d\u0430\u044f\u043f\u0442\u0438\u0446\u0430 taxonomy:order=ciconiiformes taxonomy:family=accipitridae novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c taxonomy:binomial=circusaeruginosus taxonomy:genus=circus \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f \u043b\u0443\u043d\u044c kulundasteppe \u6b27\u7f85\u5df4\u6ca2\u9d5f \u6ca2\u9d5f"}, {"datetaken": "2010-06-18 19:41:50", "license": "1", "title": "Falco subbuteo", "text": "", "album_id": "72157624199731521", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4742287136_7d3616f816_o.jpg", "secret": "677c61b9bd", "media": "photo", "latitude": "0", "id": "4742287136", "tags": "bird nature fauna siberia raptor falcon predator ornithology birdwatching birdofprey \u043f\u0440\u0438\u0440\u043e\u0434\u0430 \u043f\u0442\u0438\u0446\u044b accipitridae \u043f\u0442\u0438\u0446\u0430 falcosubbuteo westernsiberia \u0441\u043e\u043a\u043e\u043b \u0441\u0438\u0431\u0438\u0440\u044c \u0445\u0438\u0449\u043d\u0438\u043a \u0444\u0430\u0443\u043d\u0430 \u0445\u0438\u0449\u043d\u0430\u044f\u043f\u0442\u0438\u0446\u0430 taxonomy:order=ciconiiformes taxonomy:family=accipitridae taxonomy:genus=falco novosibirskregion \u0437\u0430\u043f\u0430\u0434\u043d\u0430\u044f\u0441\u0438\u0431\u0438\u0440\u044c \u043d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043e\u0440\u043d\u0438\u0442\u043e\u043b\u043e\u0433\u0438\u044f kulundasteppe taxonomy:binomial=falcosubbuteo"}, {"datetaken": "2010-06-22 08:45:07", "license": "4", "title": "Let the Play Begin!", "text": "", "album_id": "72157624251724973", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4741999203_b86e490062_o.jpg", "secret": "2b0f43c0fc", "media": "photo", "latitude": "0", "id": "4741999203", "tags": "children education"}, {"datetaken": "2010-06-22 08:45:59", "license": "4", "title": "Strike a Pose!", "text": "", "album_id": "72157624251724973", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4742518252_9c767a3081_o.jpg", "secret": "04b310792c", "media": "photo", "latitude": "0", "id": "4742518252", "tags": "children"}, {"datetaken": "2010-06-22 09:15:51", "license": "4", "title": "Snack Time", "text": "", "album_id": "72157624251724973", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4742518254_4a3844cd1d_o.jpg", "secret": "f370a70a20", "media": "photo", "latitude": "0", "id": "4742518254", "tags": "children education"}, {"datetaken": "2010-06-22 09:16:32", "license": "4", "title": "Snack Time", "text": "", "album_id": "72157624251724973", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4742518262_3d843cca0a_o.jpg", "secret": "b7ee868509", "media": "photo", "latitude": "0", "id": "4742518262", "tags": "children education"}, {"datetaken": "2010-06-22 09:16:56", "license": "4", "title": "Snack Time", "text": "", "album_id": "72157624251724973", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4742518270_b825b7445d_o.jpg", "secret": "3db7a322f9", "media": "photo", "latitude": "0", "id": "4742518270", "tags": "children education"}, {"datetaken": "2010-06-22 09:43:58", "license": "4", "title": "Wetlands Exploration", "text": "", "album_id": "72157624251724973", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4742518298_1de0ac770a_o.jpg", "secret": "92c341f83e", "media": "photo", "latitude": "0", "id": "4742518298", "tags": "children education conservation wetlands"}, {"datetaken": "2010-06-22 10:28:33", "license": "4", "title": "Children Learn Water Safey", "text": "", "album_id": "72157624251724973", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4742518306_4f4eeea720_o.jpg", "secret": "2d6f730faf", "media": "photo", "latitude": "0", "id": "4742518306", "tags": "children education safety"}, {"datetaken": "2010-06-22 10:46:07", "license": "4", "title": "Fishing For All", "text": "", "album_id": "72157624251724973", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4741916523_01b2f44eee_o.jpg", "secret": "322b09d0da", "media": "photo", "latitude": "0", "id": "4741916523", "tags": "fish children education"}, {"datetaken": "2010-06-22 10:46:26", "license": "4", "title": "Fishing For All", "text": "", "album_id": "72157624251724973", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4741919743_46a10e280a_o.jpg", "secret": "de5e2ba0c5", "media": "photo", "latitude": "0", "id": "4741919743", "tags": "fish children education"}, {"datetaken": "2010-06-22 10:52:41", "license": "4", "title": "Fishing For All", "text": "", "album_id": "72157624251724973", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4741924763_6401244014_o.jpg", "secret": "93a7bd409d", "media": "photo", "latitude": "0", "id": "4741924763", "tags": "fish children education"}, {"datetaken": "2010-06-22 10:58:22", "license": "4", "title": "Fishing For All", "text": "", "album_id": "72157624251724973", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4742560266_acb70ed171_o.jpg", "secret": "11462d4b4d", "media": "photo", "latitude": "0", "id": "4742560266", "tags": "fish children education"}, {"datetaken": "2011-04-30 10:42:15", "license": "3", "title": "Spring Weekend", "text": "", "album_id": "72157626943968859", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5265/5881195006_3fa578cb3e_o.jpg", "secret": "d052b02d41", "media": "photo", "latitude": "0", "id": "5881195006", "tags": ""}, {"datetaken": "2011-04-30 10:44:35", "license": "3", "title": "Spring Weekend", "text": "", "album_id": "72157626943968859", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5277/5881194946_b4a494da36_o.jpg", "secret": "03a49fdee8", "media": "photo", "latitude": "0", "id": "5881194946", "tags": ""}, {"datetaken": "2011-04-30 10:53:52", "license": "3", "title": "Spring Weekend", "text": "", "album_id": "72157626943968859", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5187/5881194904_f80219b747_o.jpg", "secret": "59163f63cb", "media": "photo", "latitude": "0", "id": "5881194904", "tags": ""}, {"datetaken": "2011-04-30 11:03:36", "license": "3", "title": "Spring Weekend", "text": "", "album_id": "72157626943968859", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5158/5880633427_fe5a3d49bf_o.jpg", "secret": "7f167f97c8", "media": "photo", "latitude": "0", "id": "5880633427", "tags": ""}, {"datetaken": "2011-04-30 11:07:18", "license": "3", "title": "Spring Weekend", "text": "", "album_id": "72157626943968859", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5107/5880633305_b2d1d22bea_o.jpg", "secret": "781a10cc2a", "media": "photo", "latitude": "0", "id": "5880633305", "tags": ""}, {"datetaken": "2011-04-30 11:15:23", "license": "3", "title": "Spring Weekend", "text": "", "album_id": "72157626943968859", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5074/5881194686_436a7148d0_o.jpg", "secret": "9246652538", "media": "photo", "latitude": "0", "id": "5881194686", "tags": ""}, {"datetaken": "2011-04-30 11:32:46", "license": "3", "title": "Spring Weekend", "text": "", "album_id": "72157626943968859", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6013/5880633215_9755e846e1_o.jpg", "secret": "7defe1020a", "media": "photo", "latitude": "0", "id": "5880633215", "tags": ""}, {"datetaken": "2011-04-30 15:06:22", "license": "3", "title": "Spring Weekend", "text": "", "album_id": "72157626943968859", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5275/5881195072_c7df6ec142_o.jpg", "secret": "1ffa3e6191", "media": "photo", "latitude": "0", "id": "5881195072", "tags": ""}, {"datetaken": "2011-04-30 16:44:00", "license": "3", "title": "Spring Weekend", "text": "", "album_id": "72157626943968859", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5230/5880634141_e1c2d98b75_o.jpg", "secret": "5ed568f32f", "media": "photo", "latitude": "0", "id": "5880634141", "tags": ""}, {"datetaken": "2011-04-30 17:04:00", "license": "3", "title": "Spring Weekend", "text": "", "album_id": "72157626943968859", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6055/5880634063_5ed54c9b7e_o.jpg", "secret": "d15af47aa4", "media": "photo", "latitude": "0", "id": "5880634063", "tags": ""}, {"datetaken": "2011-04-30 20:48:47", "license": "3", "title": "Spring Weekend", "text": "", "album_id": "72157626943968859", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6010/5881195414_7649252d00_o.jpg", "secret": "4cd2a9e46e", "media": "photo", "latitude": "0", "id": "5881195414", "tags": ""}, {"datetaken": "2011-04-30 20:54:59", "license": "3", "title": "Spring Weekend", "text": "", "album_id": "72157626943968859", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6056/5880633867_22456d934c_o.jpg", "secret": "231c38ee45", "media": "photo", "latitude": "0", "id": "5880633867", "tags": ""}, {"datetaken": "2011-04-30 20:55:57", "license": "3", "title": "Spring Weekend", "text": "", "album_id": "72157626943968859", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6037/5881195254_2ae6e80eb8_o.jpg", "secret": "264e255d6c", "media": "photo", "latitude": "0", "id": "5881195254", "tags": ""}, {"datetaken": "2011-04-30 21:00:22", "license": "3", "title": "Spring Weekend", "text": "", "album_id": "72157626943968859", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5315/5881195190_38eca2ae54_o.jpg", "secret": "dcee0b2814", "media": "photo", "latitude": "0", "id": "5881195190", "tags": ""}, {"datetaken": "2011-04-30 21:00:46", "license": "3", "title": "Spring Weekend", "text": "", "album_id": "72157626943968859", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5039/5881195122_8cd5a0b260_o.jpg", "secret": "76b274ca7f", "media": "photo", "latitude": "0", "id": "5881195122", "tags": ""}, {"datetaken": "2011-10-28 13:07:51", "license": "3", "title": "Palpics_Ka3ek_Festival-10.jpg", "text": "", "album_id": "72157627892108009", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6214/6288165549_82fe32ddb6_o.jpg", "secret": "095df44fc4", "media": "photo", "latitude": "0", "id": "6288165549", "tags": "family portrait musician woman male art boys girl kids female youth concert palestine jerusalem exhibition event groupportrait youngster oud neighbourhood organisation poetryreading comedyshow 2011 clownshow musicevents kidsevents tableh activitiesandevents poetryevents sheikhjarrah ahmadabusal\u2019oum ayeshaalquds citizenperson comedyevents imagesetting issaqawasmi jerusalemka3ekfestival oudtableh zamanmusicband beautifulfacesofpalestine regionorcityorvillagelocation ridvanyumlu"}, {"datetaken": "2011-10-28 13:12:29", "license": "3", "title": "Palpics_Ka3ek_Festival-12.jpg", "text": "", "album_id": "72157627892108009", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6033/6288172461_19bd9e11f5_o.jpg", "secret": "d43fdaf546", "media": "photo", "latitude": "0", "id": "6288172461", "tags": "family portrait musician woman male art boys girl kids female youth concert palestine jerusalem exhibition event groupportrait youngster oud neighbourhood organisation poetryreading comedyshow 2011 clownshow musicevents kidsevents tableh activitiesandevents poetryevents sheikhjarrah ahmadabusal\u2019oum ayeshaalquds citizenperson comedyevents imagesetting issaqawasmi jerusalemka3ekfestival oudtableh zamanmusicband beautifulfacesofpalestine regionorcityorvillagelocation ridvanyumlu"}, {"datetaken": "2011-10-28 13:13:40", "license": "3", "title": "Palpics_Ka3ek_Festival-13.jpg", "text": "", "album_id": "72157627892108009", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6113/6288174131_8c5bd26d4c_o.jpg", "secret": "c5d7b2c75a", "media": "photo", "latitude": "0", "id": "6288174131", "tags": "family portrait musician woman male art boys girl kids female youth concert palestine jerusalem exhibition event groupportrait youngster oud neighbourhood organisation poetryreading comedyshow 2011 clownshow musicevents kidsevents tableh activitiesandevents poetryevents sheikhjarrah ahmadabusal\u2019oum ayeshaalquds citizenperson comedyevents imagesetting issaqawasmi jerusalemka3ekfestival oudtableh zamanmusicband beautifulfacesofpalestine regionorcityorvillagelocation ridvanyumlu"}, {"datetaken": "2011-10-28 13:16:00", "license": "3", "title": "Palpics_Ka3ek_Festival-14.jpg", "text": "", "album_id": "72157627892108009", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6053/6288697462_d09c689c49_o.jpg", "secret": "a77d9141ce", "media": "photo", "latitude": "0", "id": "6288697462", "tags": "2011 activitiesandevents ahmadabusal\u2019oum art ayeshaalquds beautifulfacesofpalestine boys citizenperson clownshow comedyevents comedyshow concert event exhibition family female girl groupportrait imagesetting issaqawasmi jerusalem jerusalemka3ekfestival kids kidsevents male musicevents musician neighbourhood organisation oud oudtableh palestine poetryevents poetryreading portrait regionorcityorvillagelocation ridvanyumlu sheikhjarrah tableh woman youngster youth zamanmusicband"}, {"datetaken": "2011-10-28 13:17:51", "license": "3", "title": "Palpics_Ka3ek_Festival-15.jpg", "text": "", "album_id": "72157627892108009", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6221/6288180139_75e69b1a3a_o.jpg", "secret": "e9ee9beb15", "media": "photo", "latitude": "0", "id": "6288180139", "tags": "family portrait musician woman male art boys girl kids female youth concert palestine jerusalem exhibition event groupportrait youngster oud neighbourhood organisation poetryreading comedyshow 2011 clownshow musicevents kidsevents tableh activitiesandevents poetryevents sheikhjarrah ahmadabusal\u2019oum ayeshaalquds citizenperson comedyevents imagesetting issaqawasmi jerusalemka3ekfestival oudtableh zamanmusicband beautifulfacesofpalestine regionorcityorvillagelocation ridvanyumlu"}, {"datetaken": "2011-10-28 13:19:29", "license": "3", "title": "Palpics_Ka3ek_Festival-16.jpg", "text": "", "album_id": "72157627892108009", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6098/6288182561_120683cea8_o.jpg", "secret": "50da59d21c", "media": "photo", "latitude": "0", "id": "6288182561", "tags": "family portrait musician woman male art boys girl kids female youth concert palestine jerusalem exhibition event groupportrait youngster oud neighbourhood organisation poetryreading comedyshow 2011 clownshow musicevents kidsevents tableh activitiesandevents poetryevents sheikhjarrah ahmadabusal\u2019oum ayeshaalquds citizenperson comedyevents imagesetting issaqawasmi jerusalemka3ekfestival oudtableh zamanmusicband beautifulfacesofpalestine regionorcityorvillagelocation ridvanyumlu"}, {"datetaken": "2011-10-28 13:20:51", "license": "3", "title": "Palpics_Ka3ek_Festival-17.jpg", "text": "", "album_id": "72157627892108009", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6225/6288184503_4cbd217fe0_o.jpg", "secret": "56c9e6e4c7", "media": "photo", "latitude": "0", "id": "6288184503", "tags": "family portrait musician woman male art boys girl kids female youth concert palestine jerusalem exhibition event groupportrait youngster oud neighbourhood organisation poetryreading comedyshow 2011 clownshow musicevents kidsevents tableh activitiesandevents poetryevents sheikhjarrah ahmadabusal\u2019oum ayeshaalquds citizenperson comedyevents imagesetting issaqawasmi jerusalemka3ekfestival oudtableh zamanmusicband beautifulfacesofpalestine regionorcityorvillagelocation ridvanyumlu"}, {"datetaken": "2011-10-28 13:27:56", "license": "3", "title": "Palpics_Ka3ek_Festival-20.jpg", "text": "", "album_id": "72157627892108009", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6223/6288195189_70f407350d_o.jpg", "secret": "a28865c569", "media": "photo", "latitude": "0", "id": "6288195189", "tags": "family portrait musician woman male art boys girl kids female youth concert palestine jerusalem exhibition event groupportrait youngster oud neighbourhood organisation poetryreading comedyshow 2011 clownshow musicevents kidsevents tableh activitiesandevents poetryevents sheikhjarrah ahmadabusal\u2019oum ayeshaalquds citizenperson comedyevents imagesetting issaqawasmi jerusalemka3ekfestival oudtableh zamanmusicband beautifulfacesofpalestine regionorcityorvillagelocation ridvanyumlu"}, {"datetaken": "2011-10-28 13:31:45", "license": "3", "title": "Palpics_Ka3ek_Festival-23.jpg", "text": "", "album_id": "72157627892108009", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6106/6288720152_209a453a26_o.jpg", "secret": "6ee8b28695", "media": "photo", "latitude": "0", "id": "6288720152", "tags": "family portrait musician woman male art boys girl kids female youth concert palestine jerusalem exhibition event groupportrait youngster oud neighbourhood organisation poetryreading comedyshow 2011 clownshow musicevents kidsevents tableh activitiesandevents poetryevents sheikhjarrah ahmadabusal\u2019oum ayeshaalquds citizenperson comedyevents imagesetting issaqawasmi jerusalemka3ekfestival oudtableh zamanmusicband beautifulfacesofpalestine regionorcityorvillagelocation ridvanyumlu"}, {"datetaken": "2011-10-28 13:36:40", "license": "3", "title": "Palpics_Ka3ek_Festival-26.jpg", "text": "", "album_id": "72157627892108009", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6031/6288207689_8dc67b68bc_o.jpg", "secret": "011e5c56b3", "media": "photo", "latitude": "0", "id": "6288207689", "tags": "family portrait musician woman male art boys girl kids female youth concert palestine jerusalem exhibition event groupportrait youngster oud neighbourhood organisation poetryreading comedyshow 2011 clownshow musicevents kidsevents tableh activitiesandevents poetryevents sheikhjarrah ahmadabusal\u2019oum ayeshaalquds citizenperson comedyevents imagesetting issaqawasmi jerusalemka3ekfestival oudtableh zamanmusicband beautifulfacesofpalestine regionorcityorvillagelocation ridvanyumlu"}, {"datetaken": "2011-10-28 13:38:32", "license": "3", "title": "Palpics_Ka3ek_Festival-27.jpg", "text": "", "album_id": "72157627892108009", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6116/6288730380_7949f06bfc_o.jpg", "secret": "a942e7bddf", "media": "photo", "latitude": "0", "id": "6288730380", "tags": "family portrait musician woman male art boys girl kids female youth concert palestine jerusalem exhibition event groupportrait youngster oud neighbourhood organisation poetryreading comedyshow 2011 clownshow musicevents kidsevents tableh activitiesandevents poetryevents sheikhjarrah ahmadabusal\u2019oum ayeshaalquds citizenperson comedyevents imagesetting issaqawasmi jerusalemka3ekfestival oudtableh zamanmusicband beautifulfacesofpalestine regionorcityorvillagelocation ridvanyumlu"}, {"datetaken": "2011-10-28 13:48:50", "license": "3", "title": "Palpics_Ka3ek_Festival-34.jpg", "text": "", "album_id": "72157627892108009", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6230/6288225651_decc53eeda_o.jpg", "secret": "76e4cbc19d", "media": "photo", "latitude": "0", "id": "6288225651", "tags": "family portrait musician woman male art boys girl kids female youth concert palestine jerusalem exhibition event groupportrait youngster oud neighbourhood organisation poetryreading comedyshow 2011 clownshow musicevents kidsevents tableh activitiesandevents poetryevents sheikhjarrah ahmadabusal\u2019oum ayeshaalquds citizenperson comedyevents imagesetting issaqawasmi jerusalemka3ekfestival oudtableh zamanmusicband beautifulfacesofpalestine regionorcityorvillagelocation ridvanyumlu"}, {"datetaken": "2011-10-28 13:49:26", "license": "3", "title": "Palpics_Ka3ek_Festival-35.jpg", "text": "", "album_id": "72157627892108009", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6211/6288226493_198e7576c5_o.jpg", "secret": "e15d5ab95e", "media": "photo", "latitude": "0", "id": "6288226493", "tags": "family portrait musician woman male art boys girl kids female youth concert palestine jerusalem exhibition event groupportrait youngster oud neighbourhood organisation poetryreading comedyshow 2011 clownshow musicevents kidsevents tableh activitiesandevents poetryevents sheikhjarrah ahmadabusal\u2019oum ayeshaalquds citizenperson comedyevents imagesetting issaqawasmi jerusalemka3ekfestival oudtableh zamanmusicband beautifulfacesofpalestine regionorcityorvillagelocation ridvanyumlu"}, {"datetaken": "2011-10-28 13:51:45", "license": "3", "title": "Palpics_Ka3ek_Festival-36.jpg", "text": "", "album_id": "72157627892108009", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6105/6288749506_85669f616a_o.jpg", "secret": "df9c430413", "media": "photo", "latitude": "0", "id": "6288749506", "tags": "family portrait musician woman male art boys girl kids female youth concert palestine jerusalem exhibition event groupportrait youngster oud neighbourhood organisation poetryreading comedyshow 2011 clownshow musicevents kidsevents tableh activitiesandevents poetryevents sheikhjarrah ahmadabusal\u2019oum ayeshaalquds citizenperson comedyevents imagesetting issaqawasmi jerusalemka3ekfestival oudtableh zamanmusicband beautifulfacesofpalestine regionorcityorvillagelocation ridvanyumlu"}, {"datetaken": "2011-10-28 13:54:46", "license": "3", "title": "Palpics_Ka3ek_Festival-39.jpg", "text": "", "album_id": "72157627892108009", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6056/6288234361_b2bc805acb_o.jpg", "secret": "c512ceb3ce", "media": "photo", "latitude": "0", "id": "6288234361", "tags": "family portrait musician woman male art boys girl kids female youth concert palestine jerusalem exhibition event groupportrait youngster oud neighbourhood organisation poetryreading comedyshow 2011 clownshow musicevents kidsevents tableh activitiesandevents poetryevents sheikhjarrah ahmadabusal\u2019oum ayeshaalquds citizenperson comedyevents imagesetting issaqawasmi jerusalemka3ekfestival oudtableh zamanmusicband beautifulfacesofpalestine regionorcityorvillagelocation ridvanyumlu"}, {"datetaken": "2011-10-28 13:58:06", "license": "3", "title": "Palpics_Ka3ek_Festival-41.jpg", "text": "", "album_id": "72157627892108009", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6111/6288239579_666fd9ef9b_o.jpg", "secret": "e565dc010a", "media": "photo", "latitude": "0", "id": "6288239579", "tags": "family portrait musician woman male art boys girl kids female youth concert palestine jerusalem exhibition event groupportrait youngster oud neighbourhood organisation poetryreading comedyshow 2011 clownshow musicevents kidsevents tableh activitiesandevents poetryevents sheikhjarrah ahmadabusal\u2019oum ayeshaalquds citizenperson comedyevents imagesetting issaqawasmi jerusalemka3ekfestival oudtableh zamanmusicband beautifulfacesofpalestine regionorcityorvillagelocation ridvanyumlu"}, {"datetaken": "2011-01-29 08:45:25", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5175/5399029982_6825fb1462_o.jpg", "secret": "d5e3b24fa1", "media": "photo", "latitude": "0", "id": "5399029982", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 08:47:06", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5218/5399030206_cc02c59bcf_o.jpg", "secret": "65bcda0b42", "media": "photo", "latitude": "0", "id": "5399030206", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 08:47:14", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5015/5399030488_575a8cee1a_o.jpg", "secret": "ae2102ba1e", "media": "photo", "latitude": "0", "id": "5399030488", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 08:47:25", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5253/5399030648_39b97244f6_o.jpg", "secret": "6f213f6ef8", "media": "photo", "latitude": "0", "id": "5399030648", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 08:47:46", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5095/5399030796_d762a25a3a_o.jpg", "secret": "7cd2887669", "media": "photo", "latitude": "0", "id": "5399030796", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 08:48:00", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5053/5398427603_8b993d72b1_o.jpg", "secret": "97cc9b387c", "media": "photo", "latitude": "0", "id": "5398427603", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:14:57", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5399031132_84780890cc_o.jpg", "secret": "08323d81cb", "media": "photo", "latitude": "0", "id": "5399031132", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:15:09", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5019/5398427983_675f5439ff_o.jpg", "secret": "414a5a95a9", "media": "photo", "latitude": "0", "id": "5398427983", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:15:20", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5216/5399031578_758086a1a4_o.jpg", "secret": "63d5dd4e50", "media": "photo", "latitude": "0", "id": "5399031578", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:15:28", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5220/5399031980_5ea184cd2d_o.jpg", "secret": "e3bc4d6034", "media": "photo", "latitude": "0", "id": "5399031980", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:17:28", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5014/5398428379_5ed7a19156_o.jpg", "secret": "797d24681b", "media": "photo", "latitude": "0", "id": "5398428379", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:17:38", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5253/5398428863_6656a0e407_o.jpg", "secret": "ddf06090c8", "media": "photo", "latitude": "0", "id": "5398428863", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:17:49", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5054/5398429141_36e1527b80_o.jpg", "secret": "51dde67d6d", "media": "photo", "latitude": "0", "id": "5398429141", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:18:00", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5174/5399032774_1b8234fd18_o.jpg", "secret": "b6429f38a5", "media": "photo", "latitude": "0", "id": "5399032774", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:19:06", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5211/5399033716_b8341abce9_o.jpg", "secret": "ce075c562c", "media": "photo", "latitude": "0", "id": "5399033716", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:19:14", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5139/5399033996_3b0f113234_o.jpg", "secret": "7d9b64434a", "media": "photo", "latitude": "0", "id": "5399033996", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:19:23", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5300/5398430801_fcd3d940e5_o.jpg", "secret": "4ebb5beb5b", "media": "photo", "latitude": "0", "id": "5398430801", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:19:39", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5173/5398431085_5f83a6d208_o.jpg", "secret": "d245ea868d", "media": "photo", "latitude": "0", "id": "5398431085", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:20:00", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5017/5398431347_03dbd30edf_o.jpg", "secret": "aa517bdb6e", "media": "photo", "latitude": "0", "id": "5398431347", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:20:15", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5298/5399035034_29a377ffd2_o.jpg", "secret": "44a26fcd2f", "media": "photo", "latitude": "0", "id": "5399035034", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:20:30", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5056/5398431783_6b38ffccbf_o.jpg", "secret": "2eb2730ccf", "media": "photo", "latitude": "0", "id": "5398431783", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:20:46", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5252/5399035510_c6ae816fe2_o.jpg", "secret": "8d9886f901", "media": "photo", "latitude": "0", "id": "5399035510", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:20:55", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5174/5398429819_9f20660efe_o.jpg", "secret": "069a1ebbc7", "media": "photo", "latitude": "0", "id": "5398429819", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-01-29 11:21:09", "license": "5", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "text": "", "album_id": "72157625807339605", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5211/5398429501_8aceecf892_o.jpg", "secret": "ffe260d362", "media": "photo", "latitude": "0", "id": "5398429501", "tags": "photography eagle michigan wildlife bald deer"}, {"datetaken": "2011-04-29 13:29:35", "license": "3", "title": "Meeting with Michaela's class", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5181/5670532428_a5349ae79e_o.jpg", "secret": "e15d517609", "media": "photo", "latitude": "0", "id": "5670532428", "tags": "school michaela"}, {"datetaken": "2011-04-29 13:29:51", "license": "3", "title": "Michaela showing off her new shirt", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5144/5669966859_96bc6647b5_o.jpg", "secret": "93637643dc", "media": "photo", "latitude": "0", "id": "5669966859", "tags": "school michaela"}, {"datetaken": "2011-04-29 13:30:06", "license": "3", "title": "Getting ready to start the activities", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5262/5669969407_3f5cc13cf4_o.jpg", "secret": "32afeec838", "media": "photo", "latitude": "0", "id": "5669969407", "tags": "school michaela"}, {"datetaken": "2011-04-29 13:30:29", "license": "3", "title": "Michaela and Ms. Kathryn", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5021/5670539720_77401a2bfb_o.jpg", "secret": "71ee56b819", "media": "photo", "latitude": "0", "id": "5670539720", "tags": "school michaela"}, {"datetaken": "2011-04-29 13:30:55", "license": "3", "title": "The class is getting ready to do the warm-up lap around the track", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5188/5669973565_81e7bb44f5_o.jpg", "secret": "f69a84fc6b", "media": "photo", "latitude": "0", "id": "5669973565", "tags": "school michaela"}, {"datetaken": "2011-04-29 13:31:08", "license": "3", "title": "Off they go!!!!", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5186/5669975385_326826c5cf_o.jpg", "secret": "02963fcf6a", "media": "photo", "latitude": "0", "id": "5669975385", "tags": "school michaela"}, {"datetaken": "2011-04-29 13:32:21", "license": "3", "title": "On the other side of the track", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5302/5670546884_b287742442_o.jpg", "secret": "5bc9e56630", "media": "photo", "latitude": "0", "id": "5670546884", "tags": "school michaela"}, {"datetaken": "2011-04-29 13:34:38", "license": "3", "title": "Almost done!", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5028/5669981611_6fa4241a47_o.jpg", "secret": "8a87e28f55", "media": "photo", "latitude": "0", "id": "5669981611", "tags": "school michaela"}, {"datetaken": "2011-04-29 13:35:07", "license": "3", "title": "Now its time to start the activities", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5225/5669984577_e1f64d31b2_o.jpg", "secret": "fbea16db78", "media": "photo", "latitude": "0", "id": "5669984577", "tags": "school michaela"}, {"datetaken": "2011-04-29 13:37:52", "license": "3", "title": "Melanie showing her support for Michaela and her classmates!", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5303/5670555098_92c3e203fc_o.jpg", "secret": "ca06f5a167", "media": "photo", "latitude": "0", "id": "5670555098", "tags": "school melanie"}, {"datetaken": "2011-04-29 13:38:19", "license": "3", "title": "Michaela was the outfielder", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5144/5669988405_296d5aa879_o.jpg", "secret": "d6890eae6b", "media": "photo", "latitude": "0", "id": "5669988405", "tags": "school michaela"}, {"datetaken": "2011-04-29 13:38:37", "license": "3", "title": "Michaela getting the ball", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5306/5670559748_ccf9686191_o.jpg", "secret": "0049aa8b96", "media": "photo", "latitude": "0", "id": "5670559748", "tags": "school michaela"}, {"datetaken": "2011-04-29 13:40:26", "license": "3", "title": "Michaela batting", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5190/5669993937_6f340576a1_o.jpg", "secret": "b23d02067b", "media": "photo", "latitude": "0", "id": "5669993937", "tags": "michaela"}, {"datetaken": "2011-04-29 13:42:43", "license": "3", "title": "Time to throw the bean bags", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5181/5670564906_ebd99beab2_o.jpg", "secret": "bfb339ef23", "media": "photo", "latitude": "0", "id": "5670564906", "tags": "school michaela"}, {"datetaken": "2011-04-29 13:43:15", "license": "3", "title": "Good job Michaela", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5022/5670567740_40aeb10486_o.jpg", "secret": "3f45deb547", "media": "photo", "latitude": "0", "id": "5670567740", "tags": "school michaela"}, {"datetaken": "2011-04-29 13:46:03", "license": "3", "title": "Melanie watching Michaela", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5269/5670002453_304e68d505_o.jpg", "secret": "dae1699da9", "media": "photo", "latitude": "0", "id": "5670002453", "tags": "school melanie michaela"}, {"datetaken": "2011-04-29 13:48:25", "license": "3", "title": "Michaela starting the obstacle course", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5185/5670004949_118aa1bf31_o.jpg", "secret": "dc43c3d14a", "media": "photo", "latitude": "0", "id": "5670004949", "tags": "school michaela"}, {"datetaken": "2011-04-29 13:49:57", "license": "3", "title": "GO MICHAELA", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5269/5670008243_dd11ff895a_o.jpg", "secret": "cc30dbe994", "media": "photo", "latitude": "0", "id": "5670008243", "tags": "school michalea"}, {"datetaken": "2011-04-29 14:10:16", "license": "3", "title": "Starting the school parade around the track", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5108/5670578270_e7ed8d9e5e_o.jpg", "secret": "6a60c7ede3", "media": "photo", "latitude": "0", "id": "5670578270", "tags": "school michaela"}, {"datetaken": "2011-04-29 14:10:32", "license": "3", "title": "Michaela holding her torch", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5063/5670013009_d21b6cde63_o.jpg", "secret": "e46ab14a5f", "media": "photo", "latitude": "0", "id": "5670013009", "tags": "school michaela"}, {"datetaken": "2011-04-29 14:12:54", "license": "3", "title": "Sawmill Woods Elementary School", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5184/5670014811_7a2715427a_o.jpg", "secret": "1ac7f91ee5", "media": "photo", "latitude": "0", "id": "5670014811", "tags": "school michaela"}, {"datetaken": "2011-04-29 14:13:17", "license": "3", "title": "Michaela walking the school parade", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5107/5670584782_1c85787b28_o.jpg", "secret": "900eeb0a48", "media": "photo", "latitude": "0", "id": "5670584782", "tags": "school michaela"}, {"datetaken": "2011-04-29 14:26:31", "license": "3", "title": "Snack time!", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5301/5670019279_decc90ec5b_o.jpg", "secret": "68998e8675", "media": "photo", "latitude": "0", "id": "5670019279", "tags": "school michaela"}, {"datetaken": "2011-04-29 14:26:42", "license": "3", "title": "All the childern were tired and hungry", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5309/5670589398_bfd638eeef_o.jpg", "secret": "f363d88a4a", "media": "photo", "latitude": "0", "id": "5670589398", "tags": "school michaela"}, {"datetaken": "2011-04-29 14:34:09", "license": "3", "title": "The awards cermony", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5064/5670592650_0fc2ac6981_o.jpg", "secret": "b30a132ff1", "media": "photo", "latitude": "0", "id": "5670592650", "tags": "school michaela"}, {"datetaken": "2011-04-29 14:34:14", "license": "3", "title": "Michaela receiving her ribbon", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5224/5670027153_41c10f2eba_o.jpg", "secret": "2d4fe327e6", "media": "photo", "latitude": "0", "id": "5670027153", "tags": "school michaela"}, {"datetaken": "2011-04-29 14:34:45", "license": "3", "title": "Michaela watching the other children receive ribbons", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5102/5670029465_7043d5e3fa_o.jpg", "secret": "c7c03a6204", "media": "photo", "latitude": "0", "id": "5670029465", "tags": "school michaela"}, {"datetaken": "2011-04-29 14:35:12", "license": "3", "title": "Melanie was clapping for Michaela and the other children", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5267/5670031871_a0a30596fa_o.jpg", "secret": "229cfeec67", "media": "photo", "latitude": "0", "id": "5670031871", "tags": "school melanie"}, {"datetaken": "2011-04-29 14:36:00", "license": "3", "title": "Great job everyone!!!", "text": "", "album_id": "72157626609231048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5266/5670034059_19aebb2aac_o.jpg", "secret": "2495d29c9e", "media": "photo", "latitude": "0", "id": "5670034059", "tags": "school michaela"}, {"datetaken": "2011-04-28 08:34:34", "license": "6", "title": "20110428_DM_LSC_0005", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5184/5670103479_5933bba57c_o.jpg", "secret": "4a0681b7e5", "media": "photo", "latitude": "0", "id": "5670103479", "tags": "truck us dc washington usda foodsafety discoveryzone"}, {"datetaken": "2011-04-28 08:35:18", "license": "6", "title": "20110428_DM_LSC_0012", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5145/5670103123_57fc2edfaf_o.jpg", "secret": "bcf76b0d18", "media": "photo", "latitude": "0", "id": "5670103123", "tags": "truck us dc washington usda foodsafety discoveryzone"}, {"datetaken": "2011-04-28 09:02:49", "license": "6", "title": "20110428_DM_LSC_0023", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5223/5670102697_87c5b451ea_o.jpg", "secret": "2780269288", "media": "photo", "latitude": "0", "id": "5670102697", "tags": "us dc washington usda takeyourchildtoworkday"}, {"datetaken": "2011-04-28 09:15:10", "license": "6", "title": "20110428_DM_LSC_0040", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5303/5670672790_ccf6cc350e_o.jpg", "secret": "e6b6a20901", "media": "photo", "latitude": "0", "id": "5670672790", "tags": "us dc washington usda takeyourchildtoworkday"}, {"datetaken": "2011-04-28 09:15:57", "license": "6", "title": "20110428_DM_LSC_0042", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5262/5670104947_d83bfccb14_o.jpg", "secret": "4b9e9660f6", "media": "photo", "latitude": "0", "id": "5670104947", "tags": "us dc washington usda takeyourchildtoworkday"}, {"datetaken": "2011-04-28 09:26:48", "license": "6", "title": "20110428_DM_LSC_0047", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5309/5670104361_b25c1ebeac_o.jpg", "secret": "6900a0a5a1", "media": "photo", "latitude": "0", "id": "5670104361", "tags": "us dc washington usda"}, {"datetaken": "2011-04-28 09:29:52", "license": "6", "title": "20110428_DM_LSC_0053", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5067/5670671402_54eba0f7be_o.jpg", "secret": "2a1934b66d", "media": "photo", "latitude": "0", "id": "5670671402", "tags": "us dc washington usda smokeybear takeyourchildtoworkday"}, {"datetaken": "2011-04-28 09:45:31", "license": "6", "title": "20110428_DM_LSC_0088", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5183/5670674774_328314ccc1_o.jpg", "secret": "047e676ef9", "media": "photo", "latitude": "0", "id": "5670674774", "tags": "us dc washington usda takeyourchildtoworkday"}, {"datetaken": "2011-04-28 09:58:34", "license": "6", "title": "20110428_dm_LSC_0104", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5266/5670674480_e5715f17e0_o.jpg", "secret": "63e50f9d98", "media": "photo", "latitude": "0", "id": "5670674480", "tags": "us dc washington bac usda takeyourchildtoworkday thermy"}, {"datetaken": "2011-04-28 10:09:15", "license": "6", "title": "20110428_DM_LSC_0133", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5221/5670106815_b9ac3613b6_o.jpg", "secret": "622c234710", "media": "photo", "latitude": "0", "id": "5670106815", "tags": "us dc washington usda takeyourchildtoworkday"}, {"datetaken": "2011-04-28 10:13:03", "license": "6", "title": "20110428_DM_LSC_0156", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5061/5670105653_3b50c2dc16_o.jpg", "secret": "ed6d0ae68f", "media": "photo", "latitude": "0", "id": "5670105653", "tags": "us dc washington usda takeyourchildtoworkday"}, {"datetaken": "2011-04-28 10:18:15", "license": "6", "title": "20110428_DM_LSC_0179", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5070/5670675854_88993dd543_o.jpg", "secret": "4d1f990079", "media": "photo", "latitude": "0", "id": "5670675854", "tags": "us dc washington usda takeyourchildtoworkday discoveryzone"}, {"datetaken": "2011-04-28 10:40:07", "license": "6", "title": "20110428_DM_LSC_0202", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5269/5670675406_b3604cec77_o.jpg", "secret": "f34299cec3", "media": "photo", "latitude": "0", "id": "5670675406", "tags": "us dc washington usda takeyourchildtoworkday discoveryzone"}, {"datetaken": "2011-04-28 10:45:38", "license": "6", "title": "20110428_DM_LSC_0255", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5222/5670108043_d925ce8bab_o.jpg", "secret": "a87ef718f4", "media": "photo", "latitude": "0", "id": "5670108043", "tags": "us dc washington usda takeyourchildtoworkday discoveryzone"}, {"datetaken": "2011-04-28 11:04:41", "license": "6", "title": "20110428_DM_LSC_0313", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5261/5670110193_dae15531e3_o.jpg", "secret": "aa1af6a66a", "media": "photo", "latitude": "0", "id": "5670110193", "tags": "us dc washington usda takeyourchildtoworkday"}, {"datetaken": "2011-04-28 11:11:24", "license": "6", "title": "20110428_DM_LSC_0328", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5105/5670679118_af20face51_o.jpg", "secret": "39ce5151ef", "media": "photo", "latitude": "0", "id": "5670679118", "tags": "us dc washington usda takeyourchildtoworkday"}, {"datetaken": "2011-04-28 11:13:40", "license": "6", "title": "20110428_DM_LSC_0338", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5303/5670679650_7d04634a9c_o.jpg", "secret": "13be371f66", "media": "photo", "latitude": "0", "id": "5670679650", "tags": "us dc washington usda takeyourchildtoworkday"}, {"datetaken": "2011-04-28 11:20:43", "license": "6", "title": "20110428_DM_LSC_0347", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5263/5670676946_b0fe8c5201_o.jpg", "secret": "692c541ce0", "media": "photo", "latitude": "0", "id": "5670676946", "tags": "us dc washington usda takeyourchildtoworkday"}, {"datetaken": "2011-04-28 11:23:59", "license": "6", "title": "20110428_DM_LSC_0355", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5030/5670109439_8e826fb85d_o.jpg", "secret": "53d43ca785", "media": "photo", "latitude": "0", "id": "5670109439", "tags": "us dc washington usda takeyourchildtoworkday"}, {"datetaken": "2011-04-28 11:26:28", "license": "6", "title": "20110428_DM_LSC_0370", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2514/5703747526_85f4e8ca39_o.jpg", "secret": "af676222f7", "media": "photo", "latitude": "0", "id": "5703747526", "tags": "us dc washington takeyourchildtoworkday"}, {"datetaken": "2011-04-28 11:27:21", "license": "6", "title": "20110428_DM_LSC_0375", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3624/5703746800_0a40fdb412_o.jpg", "secret": "4415e89fca", "media": "photo", "latitude": "0", "id": "5703746800", "tags": "us dc washington takeyourchildtoworkday"}, {"datetaken": "2011-04-28 11:33:47", "license": "6", "title": "20110428_DM_LSC_0388", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3562/5703748088_4b4cbd43ba_o.jpg", "secret": "ab6fc5cf38", "media": "photo", "latitude": "0", "id": "5703748088", "tags": "us dc washington takeyourchildtoworkday"}, {"datetaken": "2011-04-28 11:40:35", "license": "6", "title": "20110428_DM_LSC_0390", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5263/5670111867_06738bd5d2_o.jpg", "secret": "ded5c4d7d8", "media": "photo", "latitude": "0", "id": "5670111867", "tags": "us dc washington gotmilk usda takeyourchildtoworkday"}, {"datetaken": "2011-04-28 11:44:07", "license": "6", "title": "20110428_DM_LSC_0393", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5186/5670111359_922e802e02_o.jpg", "secret": "a02f22172b", "media": "photo", "latitude": "0", "id": "5670111359", "tags": "us dc washington usda takeyourchildtoworkday"}, {"datetaken": "2011-04-28 12:17:06", "license": "6", "title": "20110428_DM_LSC_0431", "text": "", "album_id": "72157626609579922", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5063/5670677636_b44f205bb4_o.jpg", "secret": "656b28bc4d", "media": "photo", "latitude": "0", "id": "5670677636", "tags": "us dc washington usda takeyourchildtoworkday"}, {"datetaken": "2011-05-27 11:16:31", "license": "1", "title": "Barry The Buzzard", "text": "", "album_id": "72157626831653238", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5150/5771060421_769660fa32_o.jpg", "secret": "4e20e8b99e", "media": "photo", "latitude": "0", "id": "5771060421", "tags": "birds canon cheshire raptors birdsofprey gauntlet sdnphotography shaunnewman eos40dbirdsofpreybirdsgauntletraptors"}, {"datetaken": "2011-05-27 15:06:55", "license": "1", "title": "Eagle Flight 2", "text": "", "album_id": "72157626831653238", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5261/5771606582_cfb39ae30d_o.jpg", "secret": "ba6c1bfc82", "media": "photo", "latitude": "0", "id": "5771606582", "tags": "birds canon cheshire raptors birdsofprey gauntlet sdnphotography shaunnewman eos40dbirdsofpreybirdsgauntletraptors"}, {"datetaken": "2011-05-27 15:06:55", "license": "1", "title": "Eagle Flight 3", "text": "", "album_id": "72157626831653238", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5224/5771063793_726b07ca06_o.jpg", "secret": "956552b878", "media": "photo", "latitude": "0", "id": "5771063793", "tags": "birds canon cheshire raptors birdsofprey gauntlet sdnphotography shaunnewman eos40dbirdsofpreybirdsgauntletraptors"}, {"datetaken": "2011-05-27 15:10:26", "license": "1", "title": "Eagle Landing CP", "text": "", "album_id": "72157626831653238", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3636/5771064211_13d14bf845_o.jpg", "secret": "159616aabf", "media": "photo", "latitude": "0", "id": "5771064211", "tags": "birds canon cheshire raptors birdsofprey gauntlet sdnphotography shaunnewman eos40dbirdsofpreybirdsgauntletraptors"}, {"datetaken": "2011-05-27 15:10:26", "license": "1", "title": "Gotcha CP", "text": "", "album_id": "72157626831653238", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5107/5771607620_ff5a297a0f_o.jpg", "secret": "96cb17f6fc", "media": "photo", "latitude": "0", "id": "5771607620", "tags": "birds canon cheshire raptors birdsofprey gauntlet sdnphotography shaunnewman eos40dbirdsofpreybirdsgauntletraptors"}, {"datetaken": "2011-05-27 15:15:05", "license": "1", "title": "Owl In Flight BW", "text": "", "album_id": "72157626831653238", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5304/5771064869_c6b323efd2_o.jpg", "secret": "e77d529dcf", "media": "photo", "latitude": "0", "id": "5771064869", "tags": "birds canon cheshire raptors birdsofprey gauntlet sdnphotography shaunnewman eos40dbirdsofpreybirdsgauntletraptors"}, {"datetaken": "2011-05-27 15:15:06", "license": "1", "title": "Owl Landing BW", "text": "", "album_id": "72157626831653238", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5143/5771608172_4f1482e8d8_o.jpg", "secret": "d270717a43", "media": "photo", "latitude": "0", "id": "5771608172", "tags": "birds canon cheshire raptors birdsofprey gauntlet sdnphotography shaunnewman eos40dbirdsofpreybirdsgauntletraptors"}, {"datetaken": "2011-05-27 15:20:07", "license": "1", "title": "Vulture", "text": "", "album_id": "72157626831653238", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3076/5771065561_f924b70194_o.jpg", "secret": "9758f6ea66", "media": "photo", "latitude": "0", "id": "5771065561", "tags": "birds canon cheshire raptors birdsofprey gauntlet sdnphotography shaunnewman eos40dbirdsofpreybirdsgauntletraptors"}, {"datetaken": "2011-05-27 16:09:07", "license": "1", "title": "Gliding Owl BW", "text": "", "album_id": "72157626831653238", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3069/5771609320_06523b47b5_o.jpg", "secret": "04fa1b42dc", "media": "photo", "latitude": "0", "id": "5771609320", "tags": "birds canon cheshire raptors birdsofprey gauntlet sdnphotography shaunnewman eos40dbirdsofpreybirdsgauntletraptors"}, {"datetaken": "2011-05-27 16:09:45", "license": "1", "title": "Gliding In BW", "text": "", "album_id": "72157626831653238", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2767/5771609808_a51dcd5438_o.jpg", "secret": "763ca03fb7", "media": "photo", "latitude": "0", "id": "5771609808", "tags": "birds canon cheshire raptors birdsofprey gauntlet sdnphotography shaunnewman eos40dbirdsofpreybirdsgauntletraptors"}, {"datetaken": "2011-05-27 16:11:57", "license": "1", "title": "Incoming BW", "text": "", "album_id": "72157626831653238", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3569/5771610264_975a1d2dce_o.jpg", "secret": "e1e629dda2", "media": "photo", "latitude": "0", "id": "5771610264", "tags": "birds canon cheshire raptors birdsofprey gauntlet sdnphotography shaunnewman eos40dbirdsofpreybirdsgauntletraptors"}, {"datetaken": "2011-05-27 16:14:59", "license": "1", "title": "Owl Swoop BW", "text": "", "album_id": "72157626831653238", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3197/5771067703_431bc0f21c_o.jpg", "secret": "f81fa13a89", "media": "photo", "latitude": "0", "id": "5771067703", "tags": "birds canon cheshire raptors birdsofprey gauntlet sdnphotography shaunnewman eos40dbirdsofpreybirdsgauntletraptors"}, {"datetaken": "2011-05-27 16:17:31", "license": "1", "title": "On Target BW", "text": "", "album_id": "72157626831653238", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5262/5771611216_c0e3b0a375_o.jpg", "secret": "4c03624763", "media": "photo", "latitude": "0", "id": "5771611216", "tags": "birds canon cheshire raptors birdsofprey gauntlet sdnphotography shaunnewman eos40dbirdsofpreybirdsgauntletraptors"}, {"datetaken": "2011-05-27 16:27:22", "license": "1", "title": "Lunch BW", "text": "", "album_id": "72157626831653238", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2357/5771069029_be650a84af_o.jpg", "secret": "bf09fec4bd", "media": "photo", "latitude": "0", "id": "5771069029", "tags": "birds canon cheshire raptors birdsofprey gauntlet sdnphotography shaunnewman eos40dbirdsofpreybirdsgauntletraptors"}, {"datetaken": "2010-11-26 11:07:10", "license": "4", "title": "101126-F-3682S-078", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/5220205722_659c9f3d9f_o.jpg", "secret": "932446c79d", "media": "photo", "latitude": "0", "id": "5220205722", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 11:16:51", "license": "4", "title": "101126-F-3682S-097", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4085/5220212034_65b0876096_o.jpg", "secret": "b39492b080", "media": "photo", "latitude": "0", "id": "5220212034", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 11:22:28", "license": "4", "title": "101126-F-3682S-093", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/5220211030_86f5ee59dd_o.jpg", "secret": "24eb5b6fa0", "media": "photo", "latitude": "0", "id": "5220211030", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 11:25:41", "license": "4", "title": "101126-F-3682S-084", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5081/5220208456_6242714a09_o.jpg", "secret": "fbe72351c4", "media": "photo", "latitude": "0", "id": "5220208456", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 12:33:02", "license": "4", "title": "101126-F-3682S-433", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5202/5220219304_75323555a4_o.jpg", "secret": "754d291d74", "media": "photo", "latitude": "0", "id": "5220219304", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 13:23:00", "license": "4", "title": "101126-F-3682S-049", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5210/5220202696_dcc97d1308_o.jpg", "secret": "4530005d3f", "media": "photo", "latitude": "0", "id": "5220202696", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 13:25:27", "license": "4", "title": "101126-F-3682S-055", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4083/5219613089_d534192a90_o.jpg", "secret": "77ee1085b7", "media": "photo", "latitude": "0", "id": "5219613089", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 13:27:52", "license": "4", "title": "101126-F-3682S-068", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5163/5220203314_477d8bcda7_o.jpg", "secret": "b86f9f604f", "media": "photo", "latitude": "0", "id": "5220203314", "tags": "afghanistan tagabdistrict isafspecialoperationsforces fobkutschbach anpprc tagabvalley afghanrmt buildingacheckpointintagabvalley snipers minigun"}, {"datetaken": "2010-11-26 13:40:17", "license": "4", "title": "101126-F-3682S-081", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5203/5219616173_fea0f47acf_o.jpg", "secret": "79dd9782b4", "media": "photo", "latitude": "0", "id": "5219616173", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 13:49:25", "license": "4", "title": "101126-F-3682S-089", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5210/5220209964_e63c76aa88_o.jpg", "secret": "ca46dab65e", "media": "photo", "latitude": "0", "id": "5220209964", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 14:02:50", "license": "4", "title": "101126-F-3682S-102", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5282/5219621591_33141fece7_o.jpg", "secret": "06e2b94512", "media": "photo", "latitude": "0", "id": "5219621591", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 14:03:40", "license": "4", "title": "101126-F-3682S-106", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4125/5220213746_1d23d6f5d2_o.jpg", "secret": "c61ec413f4", "media": "photo", "latitude": "0", "id": "5220213746", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 14:11:00", "license": "4", "title": "101126-F-3682S-144", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4083/5219623197_8eab63817f_o.jpg", "secret": "542e3e162a", "media": "photo", "latitude": "0", "id": "5219623197", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 14:35:02", "license": "4", "title": "101126-F-3682S-565", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5081/5220221174_93ae181ce4_o.jpg", "secret": "67f69c4bdc", "media": "photo", "latitude": "0", "id": "5220221174", "tags": "afghanistan tagabdistrict isafspecialoperationsforces fobkutschbach anpprc tagabvalley afghanrmt buildingacheckpointintagabvalley snipers minigun"}, {"datetaken": "2010-11-26 14:40:21", "license": "4", "title": "101126-F-3682S-252", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5243/5219624077_2b7fb258f8_o.jpg", "secret": "d2ac81bd05", "media": "photo", "latitude": "0", "id": "5219624077", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 14:45:50", "license": "4", "title": "101126-F-3682S-319", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5290/5219624875_738a0783d8_o.jpg", "secret": "f3b7008ccd", "media": "photo", "latitude": "0", "id": "5219624875", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 14:46:57", "license": "4", "title": "101126-F-3682S-328", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5048/5220217696_8f168257a5_o.jpg", "secret": "7609bc1208", "media": "photo", "latitude": "0", "id": "5220217696", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 15:04:33", "license": "4", "title": "101126-F-3682S-414", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5044/5220218704_d52dc344fb_o.jpg", "secret": "fbba9bfa7d", "media": "photo", "latitude": "0", "id": "5220218704", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 15:20:48", "license": "4", "title": "101126-F-3682S-443", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/5219629045_ebe4b71f55_o.jpg", "secret": "a21b3cec50", "media": "photo", "latitude": "0", "id": "5219629045", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 15:30:49", "license": "4", "title": "101126-F-3682S-486", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5041/5220220890_7c8e63f38e_o.jpg", "secret": "e6154640db", "media": "photo", "latitude": "0", "id": "5220220890", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 15:47:12", "license": "4", "title": "101126-F-3682S-505", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5287/5219630429_39b5b8ddaa_o.jpg", "secret": "9ddacea770", "media": "photo", "latitude": "0", "id": "5219630429", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 17:11:59", "license": "4", "title": "101126-F-3682S-592", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5210/5219631545_055ca9fdc5_o.jpg", "secret": "bbf21e945c", "media": "photo", "latitude": "0", "id": "5219631545", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 17:38:11", "license": "4", "title": "101126-F-3682S-610", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5130/5220223736_01ef3b545e_o.jpg", "secret": "8a2ae8931f", "media": "photo", "latitude": "0", "id": "5220223736", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 17:38:51", "license": "4", "title": "101126-F-3682S-621", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5129/5220226574_d0d1cdab3b_o.jpg", "secret": "b8220ca436", "media": "photo", "latitude": "0", "id": "5220226574", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 17:49:33", "license": "4", "title": "101126-F-3682S-713", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4085/5220224768_5d46f27606_o.jpg", "secret": "245c6ca674", "media": "photo", "latitude": "0", "id": "5220224768", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 19:06:57", "license": "4", "title": "101126-F-3682S-778", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5284/5219633837_dfa166f0ec_o.jpg", "secret": "0c3dcd3d68", "media": "photo", "latitude": "0", "id": "5219633837", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2010-11-26 19:39:03", "license": "4", "title": "101126-F-3682S-793", "text": "", "album_id": "72157625372394771", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5161/5219634555_ec971087e8_o.jpg", "secret": "2726e99aac", "media": "photo", "latitude": "0", "id": "5219634555", "tags": "afghanistan minigun snipers tagabdistrict tagabvalley fobkutschbach isafspecialoperationsforces anpprc afghanrmt buildingacheckpointintagabvalley"}, {"datetaken": "2011-06-25 13:15:55", "license": "3", "title": "Koala 1", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5156/5883895734_b9eaf3e331_o.jpg", "secret": "94f08ac1a7", "media": "photo", "latitude": "0", "id": "5883895734", "tags": "california zoo san diego koala 2011"}, {"datetaken": "2011-06-25 13:15:59", "license": "3", "title": "Koala 2", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5072/5883335371_76f4916a08_o.jpg", "secret": "2997a73f2d", "media": "photo", "latitude": "0", "id": "5883335371", "tags": "california zoo san diego koala 2011"}, {"datetaken": "2011-06-25 13:16:09", "license": "3", "title": "Slumpist", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5303/5883339795_abc3a3362b_o.jpg", "secret": "bda13e59b6", "media": "photo", "latitude": "0", "id": "5883339795", "tags": "california zoo san diego koala 2011"}, {"datetaken": "2011-06-25 13:17:44", "license": "3", "title": "Koala 4", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5026/5883910368_5b05f577ff_o.jpg", "secret": "966ca7a9bf", "media": "photo", "latitude": "0", "id": "5883910368", "tags": "california zoo san diego koala 2011"}, {"datetaken": "2011-06-25 13:26:11", "license": "3", "title": "Alert Sentinel", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5157/5883350743_d30a0a26de_o.jpg", "secret": "8f447be318", "media": "photo", "latitude": "0", "id": "5883350743", "tags": "california zoo meerkat san diego 2011"}, {"datetaken": "2011-06-25 13:49:22", "license": "3", "title": "Beady Eyed Flamingo", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5077/5883366997_7cda9e6f7e_o.jpg", "secret": "3754de055e", "media": "photo", "latitude": "0", "id": "5883366997", "tags": "california zoo san flamingo diego 2011"}, {"datetaken": "2011-06-25 13:49:31", "license": "3", "title": "WHAT WHAT WHAT WHAT? HUH HUH HUH HUH?", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5151/5883370449_3d82e9ee47_o.jpg", "secret": "8eb3ba5725", "media": "photo", "latitude": "0", "id": "5883370449", "tags": "california flamingoes zoo san flamingo diego 2011"}, {"datetaken": "2011-06-25 13:57:33", "license": "3", "title": "Giraffe Head", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5112/5889183420_7a0082403f_o.jpg", "secret": "ac8a6efc46", "media": "photo", "latitude": "0", "id": "5889183420", "tags": "california zoo san diego giraffe 2011"}, {"datetaken": "2011-06-25 13:57:46", "license": "3", "title": "Giraffe Coat", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6005/5889191864_e08b877b5c_o.jpg", "secret": "6c0dd4345f", "media": "photo", "latitude": "0", "id": "5889191864", "tags": "california zoo san diego giraffe 2011"}, {"datetaken": "2011-06-25 13:59:36", "license": "3", "title": "Baby Giraffe", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5063/5889197670_5d123d6c9c_o.jpg", "secret": "0e9fdb2837", "media": "photo", "latitude": "0", "id": "5889197670", "tags": "california baby zoo san diego giraffe 2011"}, {"datetaken": "2011-06-25 13:59:42", "license": "3", "title": "Giraffe Face", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5265/5889205810_8d06856650_o.jpg", "secret": "801db8ebfe", "media": "photo", "latitude": "0", "id": "5889205810", "tags": "california zoo san diego giraffe 2011"}, {"datetaken": "2011-06-25 14:06:56", "license": "3", "title": "Meercute", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5231/5888644243_c631e2fe92_o.jpg", "secret": "91b75cf295", "media": "photo", "latitude": "0", "id": "5888644243", "tags": "california zoo meerkat san diego 2011"}, {"datetaken": "2011-06-25 14:08:11", "license": "3", "title": "Dirtkat", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5072/5889219886_243d26218d_o.jpg", "secret": "c76a919a54", "media": "photo", "latitude": "0", "id": "5889219886", "tags": "california zoo meerkat san diego 2011"}, {"datetaken": "2011-06-25 14:33:25", "license": "3", "title": "Hideous Warthog", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5232/5889227472_4ab75e2cae_o.jpg", "secret": "422571fb73", "media": "photo", "latitude": "0", "id": "5889227472", "tags": "california zoo san diego warthog 2011"}, {"datetaken": "2011-06-25 14:44:54", "license": "3", "title": "Super Dirtcat", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5317/5888665079_dfa839eaba_o.jpg", "secret": "3ff5ab2d3d", "media": "photo", "latitude": "0", "id": "5888665079", "tags": "california zoo san diego jaguar 2011"}, {"datetaken": "2011-06-25 15:16:20", "license": "3", "title": "Kingfisher", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5318/5889240768_55686695fb_o.jpg", "secret": "be605bc3ba", "media": "photo", "latitude": "0", "id": "5889240768", "tags": "california zoo san diego kingfisher 2011"}, {"datetaken": "2011-06-25 15:38:49", "license": "3", "title": "Fancy Hair", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5034/5889249188_9aaa77d746_o.jpg", "secret": "2dcbb70ed4", "media": "photo", "latitude": "0", "id": "5889249188", "tags": "california zoo san diego 2011"}, {"datetaken": "2011-06-25 16:50:38", "license": "3", "title": "Fishing Cat", "text": "", "album_id": "72157627074673796", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5031/5889256248_72f341032b_o.jpg", "secret": "9b7a18f8dd", "media": "photo", "latitude": "0", "id": "5889256248", "tags": "california cat zoo fishing san diego 2011"}, {"datetaken": "2011-10-30 14:47:08", "license": "1", "title": "iv-_DSC1324-20111030-361.jpg", "text": "", "album_id": "72157628013505086", "longitude": "27.912139", "url_o": "https://farm8.staticflickr.com/7166/6498377149_0360b61498_o.jpg", "secret": "e90e1372e2", "media": "photo", "latitude": "43.204174", "id": "6498377149", "tags": "woman girl rock stone female youth kid women rocks europe child young dirt teen bulgaria age mineral teenager females tween gender varna teenaged pobitikamani stonecolumns rockphenomenon"}, {"datetaken": "2011-10-30 14:49:46", "license": "1", "title": "iv-_DSC1333-20111030-370.jpg", "text": "", "album_id": "72157628013505086", "longitude": "27.912139", "url_o": "https://farm8.staticflickr.com/7162/6498377945_8c4ff87e8b_o.jpg", "secret": "02b6645009", "media": "photo", "latitude": "43.204174", "id": "6498377945", "tags": "rock stone rocks europe dirt bulgaria mineral varna pobitikamani stonecolumns rockphenomenon"}, {"datetaken": "2011-10-30 14:54:45", "license": "1", "title": "iv-_DSC1346-20111030-383.jpg", "text": "", "album_id": "72157628013505086", "longitude": "27.912139", "url_o": "https://farm8.staticflickr.com/7004/6498378711_3f7a873ba3_o.jpg", "secret": "a1afc1d8c7", "media": "photo", "latitude": "43.204174", "id": "6498378711", "tags": "rock stone rocks europe dirt bulgaria mineral varna pobitikamani stonecolumns rockphenomenon"}, {"datetaken": "2011-10-30 14:58:18", "license": "1", "title": "iv-_DSC1357-20111030-394.jpg", "text": "", "album_id": "72157628013505086", "longitude": "27.912139", "url_o": "https://farm8.staticflickr.com/7006/6498379483_76bd04f2f6_o.jpg", "secret": "030cd14d50", "media": "photo", "latitude": "43.204174", "id": "6498379483", "tags": "woman girl rock stone female youth kid women rocks europe child young dirt teen bulgaria age mineral teenager females tween gender varna teenaged pobitikamani stonecolumns rockphenomenon"}, {"datetaken": "2011-10-30 15:02:33", "license": "1", "title": "iv-_DSC1369-20111030-406.jpg", "text": "", "album_id": "72157628013505086", "longitude": "27.912139", "url_o": "https://farm8.staticflickr.com/7012/6498380173_279df21fb8_o.jpg", "secret": "99326447c8", "media": "photo", "latitude": "43.204174", "id": "6498380173", "tags": "woman girl rock stone female youth kid women rocks europe child young dirt teen bulgaria age mineral teenager females tween gender varna teenaged pobitikamani stonecolumns rockphenomenon"}, {"datetaken": "2011-10-30 15:06:26", "license": "1", "title": "iv-_DSC1385-20111030-421.jpg", "text": "", "album_id": "72157628013505086", "longitude": "27.912139", "url_o": "https://farm8.staticflickr.com/7023/6498380663_13c97bcd3e_o.jpg", "secret": "6ed1af933b", "media": "photo", "latitude": "43.204174", "id": "6498380663", "tags": "man male men rock stone rocks europe adult dirt bulgaria age mineral males adults gender grownups varna grownup pobitikamani stonecolumns rockphenomenon"}, {"datetaken": "2011-10-30 15:06:51", "license": "1", "title": "iv-_DSC1388-20111030-424.jpg", "text": "", "album_id": "72157628013505086", "longitude": "27.912139", "url_o": "https://farm8.staticflickr.com/7003/6498381357_b2c7304efc_o.jpg", "secret": "b7b8a3b1be", "media": "photo", "latitude": "43.204174", "id": "6498381357", "tags": "rock stone rocks europe dirt bulgaria mineral varna pobitikamani stonecolumns rockphenomenon"}, {"datetaken": "2011-10-30 15:06:59", "license": "1", "title": "iv-_DSC1389-20111030-425.jpg", "text": "", "album_id": "72157628013505086", "longitude": "27.912139", "url_o": "https://farm8.staticflickr.com/7030/6498382447_3c483c3200_o.jpg", "secret": "3d911f1628", "media": "photo", "latitude": "43.204174", "id": "6498382447", "tags": "woman girl rock stone female youth kid women rocks europe child young dirt teen bulgaria age mineral teenager females tween gender varna teenaged pobitikamani stonecolumns rockphenomenon"}, {"datetaken": "2011-10-30 15:07:05", "license": "1", "title": "iv-_DSC1390-20111030-426.jpg", "text": "", "album_id": "72157628013505086", "longitude": "27.912139", "url_o": "https://farm8.staticflickr.com/7172/6498383255_fd667fd6bc_o.jpg", "secret": "a72ea01ae4", "media": "photo", "latitude": "43.204174", "id": "6498383255", "tags": "man male men rock stone rocks europe adult pray hobby dirt bulgaria age mineral males hobbies activity adults begging gender grownups activities varna passtime grownup pobitikamani stonecolumns rockphenomenon"}, {"datetaken": "2011-10-30 15:12:42", "license": "1", "title": "iv-_DSC1405-20111030-432.jpg", "text": "", "album_id": "72157628013505086", "longitude": "27.912139", "url_o": "https://farm8.staticflickr.com/7001/6498383873_72e4c30464_o.jpg", "secret": "9bae5b85b3", "media": "photo", "latitude": "43.204174", "id": "6498383873", "tags": "rock stone flying rocks europe adult flight hobby dirt bulgaria age mineral hobbies activity adults grownups airborn activities varna passtime levitate grownup pobitikamani stonecolumns rockphenomenon"}, {"datetaken": "2011-10-30 15:14:07", "license": "1", "title": "iv-_DSC1411-20111030-437.jpg", "text": "", "album_id": "72157628013505086", "longitude": "27.912139", "url_o": "https://farm8.staticflickr.com/7157/6498385447_f9659a5550_o.jpg", "secret": "be8a6eb653", "media": "photo", "latitude": "43.204174", "id": "6498385447", "tags": "rock stone rocks europe dirt bulgaria mineral varna pobitikamani stonecolumns rockphenomenon"}, {"datetaken": "2011-10-30 15:18:44", "license": "1", "title": "iv-_DSC1428-20111030-454.jpg", "text": "", "album_id": "72157628013505086", "longitude": "27.912139", "url_o": "https://farm8.staticflickr.com/7171/6498386053_67fbfc95fb_o.jpg", "secret": "2e827b7075", "media": "photo", "latitude": "43.204174", "id": "6498386053", "tags": "woman girl rock stone female youth kid women rocks europe child young dirt teen bulgaria age mineral teenager females tween gender varna teenaged pobitikamani stonecolumns rockphenomenon"}, {"datetaken": "2011-10-30 15:19:16", "license": "1", "title": "iv-_DSC1430-20111030-456.jpg", "text": "", "album_id": "72157628013505086", "longitude": "27.912139", "url_o": "https://farm8.staticflickr.com/7028/6498386651_8568542ec0_o.jpg", "secret": "de457e6d3d", "media": "photo", "latitude": "43.204174", "id": "6498386651", "tags": "woman girl rock stone female youth kid women rocks europe child young dirt teen bulgaria age mineral teenager females tween gender varna teenaged pobitikamani stonecolumns rockphenomenon"}, {"datetaken": "2011-10-30 15:31:57", "license": "1", "title": "iv-_DSC1473-20111030-495.jpg", "text": "", "album_id": "72157628013505086", "longitude": "27.912139", "url_o": "https://farm8.staticflickr.com/7164/6498387373_99ee8c3f69_o.jpg", "secret": "9dc9e807be", "media": "photo", "latitude": "43.204174", "id": "6498387373", "tags": "woman girl rock stone female youth kid women rocks europe child young dirt teen bulgaria age mineral teenager females tween gender varna teenaged pobitikamani stonecolumns rockphenomenon"}, {"datetaken": "2011-10-30 15:32:48", "license": "1", "title": "iv-_DSC1476-20111030-498.jpg", "text": "", "album_id": "72157628013505086", "longitude": "27.912139", "url_o": "https://farm8.staticflickr.com/7023/6498388143_3ac875c29b_o.jpg", "secret": "3c14211cdb", "media": "photo", "latitude": "43.204174", "id": "6498388143", "tags": "plants plant grass europe bulgaria varna pobitikamani stonecolumns rockphenomenon"}, {"datetaken": "2011-10-30 15:33:56", "license": "1", "title": "iv-_DSC1481-20111030-503.jpg", "text": "", "album_id": "72157628013505086", "longitude": "27.912139", "url_o": "https://farm8.staticflickr.com/7003/6498388725_0355196bb0_o.jpg", "secret": "15cd1cf404", "media": "photo", "latitude": "43.204174", "id": "6498388725", "tags": "woman girl rock stone female youth kid women rocks europe child young dirt teen bulgaria age mineral teenager females tween gender varna teenaged pobitikamani stonecolumns rockphenomenon"}, {"datetaken": "2011-10-30 15:39:36", "license": "1", "title": "iv-_DSC1502-20111030-521.jpg", "text": "", "album_id": "72157628013505086", "longitude": "27.912139", "url_o": "https://farm8.staticflickr.com/7015/6498389269_585686e94a_o.jpg", "secret": "021422f3fe", "media": "photo", "latitude": "43.204174", "id": "6498389269", "tags": "plants plant bush europe bulgaria shrub varna pobitikamani stonecolumns rockphenomenon"}, {"datetaken": "2006-04-26 09:36:59", "license": "2", "title": "English Martyrs", "text": "", "album_id": "72057594117511166", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/135785930_53ba4f29b6_o.jpg", "secret": "53ba4f29b6", "media": "photo", "latitude": "0", "id": "135785930", "tags": "york church catholic mount englishmartyrs april2006"}, {"datetaken": "2006-04-26 09:40:15", "license": "2", "title": "Prize Winner", "text": "", "album_id": "72057594117511166", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/135788723_0a0272dd8e_o.jpg", "secret": "0a0272dd8e", "media": "photo", "latitude": "0", "id": "135788723", "tags": "york water design space prizewinner citygarden april2006 pd42302"}, {"datetaken": "2006-04-26 09:41:48", "license": "2", "title": "City By-way", "text": "", "album_id": "72057594117511166", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/135354433_da57c22758_o.jpg", "secret": "da57c22758", "media": "photo", "latitude": "0", "id": "135354433", "tags": "york april2006"}, {"datetaken": "2006-04-26 09:43:49", "license": "2", "title": "Agricultural Roots - Corn & Seed Merchants", "text": "", "album_id": "72057594117511166", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/135354525_dc5bd9a79e_o.jpg", "secret": "dc5bd9a79e", "media": "photo", "latitude": "0", "id": "135354525", "tags": "york april2006"}, {"datetaken": "2006-04-26 09:49:36", "license": "2", "title": "Micklegate Bar and Clouds", "text": "", "album_id": "72057594117511166", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/135354320_d9178e1450_o.jpg", "secret": "d9178e1450", "media": "photo", "latitude": "0", "id": "135354320", "tags": "york april2006 photodomino24301"}, {"datetaken": "2006-04-26 09:59:27", "license": "2", "title": "Lucky St Andrews", "text": "", "album_id": "72057594117511166", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/135329229_992f872be2_o.jpg", "secret": "992f872be2", "media": "photo", "latitude": "0", "id": "135329229", "tags": "york walk models shopwindow annsummers april2006 standrewssocietyofyork photodomino21843"}, {"datetaken": "2006-04-27 08:57:51", "license": "2", "title": "Ouse banks", "text": "", "album_id": "72057594117511166", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/136044960_2fdea07630_o.jpg", "secret": "2fdea07630", "media": "photo", "latitude": "0", "id": "136044960", "tags": "york river riverside yorkshire milleniumbridge ouse banks northyorkshire newwalk"}, {"datetaken": "2006-04-27 09:04:58", "license": "2", "title": "Orange bouy", "text": "", "album_id": "72057594117511166", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/135948127_aa6445eafc_o.jpg", "secret": "aa6445eafc", "media": "photo", "latitude": "0", "id": "135948127", "tags": "york river milleniumbridge ouse april2006 theworldthroughmyeyes pd41619"}, {"datetaken": "2006-04-27 09:08:09", "license": "2", "title": "Span", "text": "", "album_id": "72057594117511166", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/135991327_00db73984c_o.jpg", "secret": "00db73984c", "media": "photo", "latitude": "0", "id": "135991327", "tags": "york bridge bw milleniumbridge ouse april2006 frombelowright photodomino31124"}, {"datetaken": "2006-04-27 09:08:39", "license": "2", "title": "Arc", "text": "", "album_id": "72057594117511166", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/135948295_eee1c16cb0_o.jpg", "secret": "eee1c16cb0", "media": "photo", "latitude": "0", "id": "135948295", "tags": "york river milleniumbridge ouse april2006 photodomino24204"}, {"datetaken": "2006-04-27 09:11:42", "license": "2", "title": "Carve me a croc out of that log ... and make it snappy.", "text": "", "album_id": "72057594117511166", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/135947944_3357794415_o.jpg", "secret": "3357794415", "media": "photo", "latitude": "0", "id": "135947944", "tags": "york river log milleniumbridge croc ouse picnicsite april2006 pd40523"}, {"datetaken": "2006-04-27 09:23:01", "license": "2", "title": "The Blue Bridge over the Foss", "text": "", "album_id": "72057594117511166", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/136035155_996badfe2d_o.jpg", "secret": "996badfe2d", "media": "photo", "latitude": "0", "id": "136035155", "tags": "york riverside foss bluebridge bluebridgelane williamcourt"}, {"datetaken": "2006-05-02 08:59:19", "license": "1", "title": "Egg and Spoon Relay", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/141441379_8ce32ce07f_o.jpg", "secret": "8ce32ce07f", "media": "photo", "latitude": "0", "id": "141441379", "tags": "school usa students georgia nashville fieldday elementary bes physicaleducation"}, {"datetaken": "2006-05-02 09:11:24", "license": "1", "title": "Tossing the Chicken", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/141468247_30aeba646b_o.jpg", "secret": "30aeba646b", "media": "photo", "latitude": "0", "id": "141468247", "tags": "usa students georgia nashville fieldday elementary bes physicaleducation"}, {"datetaken": "2006-05-02 09:14:12", "license": "1", "title": "Chicken Toss", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/141446216_80a8babb5b_o.jpg", "secret": "80a8babb5b", "media": "photo", "latitude": "0", "id": "141446216", "tags": "bes school elementary fieldday physicaleducation students nashville georgia usa"}, {"datetaken": "2006-05-02 09:20:08", "license": "1", "title": "Baton Relay Action", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/141475218_d2d66022e4_o.jpg", "secret": "d2d66022e4", "media": "photo", "latitude": "0", "id": "141475218", "tags": "school usa students georgia nashville fieldday elementary bes physicaleducation"}, {"datetaken": "2006-05-02 09:20:19", "license": "1", "title": "Baton Relay", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/141478987_403cb916aa_o.jpg", "secret": "403cb916aa", "media": "photo", "latitude": "0", "id": "141478987", "tags": "school usa students georgia nashville fieldday elementary bes physicaleducation"}, {"datetaken": "2006-05-02 09:36:07", "license": "1", "title": "Football Toss", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/141520602_fc1a50f447_o.jpg", "secret": "fc1a50f447", "media": "photo", "latitude": "0", "id": "141520602", "tags": "school usa students georgia nashville fieldday bes physicaleducation"}, {"datetaken": "2006-05-02 09:36:44", "license": "1", "title": "Tossing the Football Through the Hoop", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/141522649_2a91898f7e_o.jpg", "secret": "2a91898f7e", "media": "photo", "latitude": "0", "id": "141522649", "tags": "school usa students georgia nashville fieldday bes physicaleducation"}, {"datetaken": "2006-05-02 09:59:36", "license": "1", "title": "Soccer Kick", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/141527418_9084505dfd_o.jpg", "secret": "9084505dfd", "media": "photo", "latitude": "0", "id": "141527418", "tags": "school usa students georgia nashville fieldday bes physicaleducation"}, {"datetaken": "2006-05-02 10:00:24", "license": "1", "title": "Kick the Soccer Ball", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/141602195_6ed297e978_o.jpg", "secret": "6ed297e978", "media": "photo", "latitude": "0", "id": "141602195", "tags": "school usa students georgia nashville fieldday bes physicaleducation"}, {"datetaken": "2006-05-02 10:26:06", "license": "1", "title": "Basketball Shoot", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/141609995_ba9f68e5d5_o.jpg", "secret": "ba9f68e5d5", "media": "photo", "latitude": "0", "id": "141609995", "tags": "school usa students georgia nashville fieldday bes physicaleducation"}, {"datetaken": "2006-05-02 10:27:01", "license": "1", "title": "Shooting the Hoops", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/141619407_1f80503dd2_o.jpg", "secret": "1f80503dd2", "media": "photo", "latitude": "0", "id": "141619407", "tags": "school usa students basketball georgia nashville fieldday gym gymnasium bes physicaleducation"}, {"datetaken": "2006-05-02 10:27:01", "license": "1", "title": "Retrieving the Basketball", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/141619561_34b628639c_o.jpg", "secret": "34b628639c", "media": "photo", "latitude": "0", "id": "141619561", "tags": "school usa students basketball georgia nashville fieldday gym gymnasium bes physicaleducation"}, {"datetaken": "2006-05-02 10:28:23", "license": "1", "title": "Dribble the Basketball", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/141619727_faa995c54d_o.jpg", "secret": "faa995c54d", "media": "photo", "latitude": "0", "id": "141619727", "tags": "school usa students basketball georgia nashville fieldday gym gymnasium bes physicaleducation"}, {"datetaken": "2006-05-02 10:28:53", "license": "1", "title": "Ring the Hoop", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/141619859_61c78ffd9f_o.jpg", "secret": "61c78ffd9f", "media": "photo", "latitude": "0", "id": "141619859", "tags": "school usa students basketball georgia nashville fieldday gym gymnasium bes physicaleducation"}, {"datetaken": "2006-05-02 10:41:11", "license": "1", "title": "Building the Hula Hut as PE Coaches Watch", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/141625237_626891a622_o.jpg", "secret": "626891a622", "media": "photo", "latitude": "0", "id": "141625237", "tags": "school usa students georgia nashville fieldday pe gym bes physicaleducation pecoach"}, {"datetaken": "2006-05-02 10:41:19", "license": "1", "title": "Hula Hut is Finished", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/141670038_a1ab799cfe_o.jpg", "secret": "a1ab799cfe", "media": "photo", "latitude": "0", "id": "141670038", "tags": "school usa students georgia nashville hulahoops fieldday pe gym gymnasium bes hulahut physicaleducation"}, {"datetaken": "2006-05-02 10:42:30", "license": "1", "title": "Crawling Through the Hula Hut", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/141694426_924405e4a0_o.jpg", "secret": "924405e4a0", "media": "photo", "latitude": "0", "id": "141694426", "tags": "school usa students georgia nashville fieldday pe gym hulahoop gymnasium bes hulahut physicaleducation"}, {"datetaken": "2006-05-02 10:42:42", "license": "1", "title": "Don't Knock Down the Hula Hut", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/141694625_8d347fe661_o.jpg", "secret": "8d347fe661", "media": "photo", "latitude": "0", "id": "141694625", "tags": "school usa students georgia nashville fieldday pe gym hulahoop gymnasium bes hulahut physicaleducation"}, {"datetaken": "2006-05-02 11:52:06", "license": "1", "title": "Big Foot Walk", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/141881087_8e5daf9651_o.jpg", "secret": "8e5daf9651", "media": "photo", "latitude": "0", "id": "141881087", "tags": "school usa students georgia nashville fieldday gym gymnasium bes physicaleducation bigfootrelay"}, {"datetaken": "2006-05-02 11:52:36", "license": "1", "title": "Walk with Those Big Feet", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/142360437_8e86c24871_o.jpg", "secret": "8e86c24871", "media": "photo", "latitude": "0", "id": "142360437", "tags": "school usa students georgia nashville fieldday gym gymnasium elementary bes bigfootwalk"}, {"datetaken": "2006-05-02 11:53:26", "license": "1", "title": "Fun Walking with Big Feet", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/142368234_d744ab4a52_o.jpg", "secret": "d744ab4a52", "media": "photo", "latitude": "0", "id": "142368234", "tags": "school usa students georgia nashville fieldday bes physicaleducation bigfootwalk"}, {"datetaken": "2006-05-02 11:54:14", "license": "1", "title": "Go, Big Foot, Walk", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/142376206_99b536fcb2_o.jpg", "secret": "99b536fcb2", "media": "photo", "latitude": "0", "id": "142376206", "tags": "school usa students georgia nashville fieldday bes physicaleducation bigfootwalk"}, {"datetaken": "2006-05-02 11:55:11", "license": "1", "title": "Put On Your Big Feet", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/142460087_0d039b367e_o.jpg", "secret": "0d039b367e", "media": "photo", "latitude": "0", "id": "142460087", "tags": "school usa students georgia nashville fieldday bes physicaleducation bigfootwalk"}, {"datetaken": "2006-05-02 11:56:05", "license": "1", "title": "Let's Walk with Big Feet", "text": "", "album_id": "72057594127107722", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/142489436_fc9f925d0b_o.jpg", "secret": "fc9f925d0b", "media": "photo", "latitude": "0", "id": "142489436", "tags": "school usa students georgia fieldday bes physicaleducation"}, {"datetaken": "2007-07-04 06:54:32", "license": "3", "title": "Igloos", "text": "", "album_id": "72157600637630564", "longitude": "10.986156", "url_o": "https://farm2.staticflickr.com/1356/712720882_673a6fa58a_o.jpg", "secret": "eacfa06a0e", "media": "photo", "latitude": "47.416240", "id": "712720882", "tags": "germany europe skiing glacier garmisch igloo garmischpartenkirchen powderday alpineskiing glacierskiing mountainsalpsbavarianalps zugspitse"}, {"datetaken": "2007-07-04 06:54:34", "license": "3", "title": "DSCN9268", "text": "", "album_id": "72157600637630564", "longitude": "10.986156", "url_o": "https://farm2.staticflickr.com/1002/711846309_473ab2b585_o.jpg", "secret": "fd22f7882d", "media": "photo", "latitude": "47.416240", "id": "711846309", "tags": "germany europe skiing glacier garmisch garmischpartenkirchen powderday alpineskiing downhillskiing glacierskiing mountainsalpsbavarianalps zugspitse"}, {"datetaken": "2007-07-04 06:54:35", "license": "3", "title": "DSCN9273", "text": "", "album_id": "72157600637630564", "longitude": "10.986156", "url_o": "https://farm2.staticflickr.com/1216/711846461_12a1528cc7_o.jpg", "secret": "ef50f56477", "media": "photo", "latitude": "47.416240", "id": "711846461", "tags": "germany europe skiing glacier garmisch garmischpartenkirchen powderday alpineskiing downhillskiing glacierskiing mountainsalpsbavarianalps zugspitse"}, {"datetaken": "2007-07-04 06:54:37", "license": "3", "title": "DSCN9276", "text": "", "album_id": "72157600637630564", "longitude": "10.986156", "url_o": "https://farm2.staticflickr.com/1209/712721446_a2696545a5_o.jpg", "secret": "df23cd06c0", "media": "photo", "latitude": "47.416240", "id": "712721446", "tags": "germany europe skiing glacier garmisch garmischpartenkirchen powderday alpineskiing downhillskiing glacierskiing mountainsalpsbavarianalps zugspitse"}, {"datetaken": "2007-07-04 06:54:38", "license": "3", "title": "DSCN9277", "text": "", "album_id": "72157600637630564", "longitude": "10.986156", "url_o": "https://farm2.staticflickr.com/1177/711846813_f29e782698_o.jpg", "secret": "f5ca35dbe7", "media": "photo", "latitude": "47.416240", "id": "711846813", "tags": "germany europe skiing glacier garmisch garmischpartenkirchen powderday alpineskiing downhillskiing glacierskiing mountainsalpsbavarianalps zugspitse"}, {"datetaken": "2007-07-04 06:54:39", "license": "3", "title": "DSCN9278", "text": "", "album_id": "72157600637630564", "longitude": "10.986156", "url_o": "https://farm2.staticflickr.com/1120/712721796_588ab81d4f_o.jpg", "secret": "5738f2cafa", "media": "photo", "latitude": "47.416240", "id": "712721796", "tags": "germany europe skiing glacier garmisch garmischpartenkirchen powderday alpineskiing downhillskiing glacierskiing mountainsalpsbavarianalps zugspitse"}, {"datetaken": "2007-07-04 06:54:41", "license": "3", "title": "Clouds in Garmisch - Bluebird at the Zugspitze", "text": "", "album_id": "72157600637630564", "longitude": "10.986156", "url_o": "https://farm2.staticflickr.com/1269/712721964_ac18b170c7_o.jpg", "secret": "cff79e01c2", "media": "photo", "latitude": "47.416240", "id": "712721964", "tags": "mountains alps germany europe skiing glacier garmisch garmischpartenkirchen zugspitze powderday alpineskiing bavarianalps downhillskiing zugspitzplatt glacierskiing"}, {"datetaken": "2007-07-04 06:54:42", "license": "3", "title": "Storms below, blue skies above and Powder Off Piste", "text": "", "album_id": "72157600637630564", "longitude": "10.986156", "url_o": "https://farm2.staticflickr.com/1140/712722138_1209633936_o.jpg", "secret": "8c584cadae", "media": "photo", "latitude": "47.416240", "id": "712722138", "tags": "alpineskiing downhillskiing europe garmisch garmischpartenkirchen germany glacier glacierskiing mountainsalpsbavarianalps offpiste powderday skiing zugspitze zugspitzplatt"}, {"datetaken": "2007-07-04 06:56:01", "license": "3", "title": "DSCN8801", "text": "", "album_id": "72157600637630564", "longitude": "10.992851", "url_o": "https://farm2.staticflickr.com/1114/711856849_fee5e4b358_o.jpg", "secret": "fa106d0153", "media": "photo", "latitude": "47.458156", "id": "711856849", "tags": "germany europe skiing glacier garmisch garmischpartenkirchen powderday alpineskiing downhillskiing glacierskiing mountainsalpsbavarianalps zugspitse"}, {"datetaken": "2007-07-04 06:56:04", "license": "3", "title": "Zugspitze Chapel", "text": "", "album_id": "72157600637630564", "longitude": "10.986156", "url_o": "https://farm2.staticflickr.com/1351/712732044_3d660bd160_o.jpg", "secret": "a18da6bcc3", "media": "photo", "latitude": "47.416240", "id": "712732044", "tags": "mountains alps germany europe catholic churches cathedrals glacier chapels garmisch garmischpartenkirchen bavarianalps zugspitzeplatt zugspitse"}, {"datetaken": "2007-07-04 06:56:07", "license": "3", "title": "View from Zugspitzeplatt", "text": "", "album_id": "72157600637630564", "longitude": "10.986156", "url_o": "https://farm2.staticflickr.com/1158/711857563_74e755798c_o.jpg", "secret": "adeb84bce1", "media": "photo", "latitude": "47.416240", "id": "711857563", "tags": "mountains alps germany europe skiing glacier garmisch garmischpartenkirchen zugspitze powderday alpineskiing bavarianalps downhillskiing zugspitzplatt glacierskiing"}, {"datetaken": "2007-07-04 06:56:10", "license": "3", "title": "DSCN8804", "text": "", "album_id": "72157600637630564", "longitude": "10.986156", "url_o": "https://farm2.staticflickr.com/1149/711858007_bfd63269d5_o.jpg", "secret": "ad78d0bb52", "media": "photo", "latitude": "47.416240", "id": "711858007", "tags": "germany europe skiing glacier garmisch garmischpartenkirchen powderday alpineskiing downhillskiing glacierskiing mountainsalpsbavarianalps zugspitse"}, {"datetaken": "2007-07-04 06:56:13", "license": "3", "title": "DSCN8805", "text": "", "album_id": "72157600637630564", "longitude": "10.990791", "url_o": "https://farm2.staticflickr.com/1317/712732984_f7f5b2bcf4_o.jpg", "secret": "dc0ec54663", "media": "photo", "latitude": "47.412291", "id": "712732984", "tags": "germany europe skiing glacier garmisch garmischpartenkirchen powderday alpineskiing downhillskiing glacierskiing mountainsalpsbavarianalps zugspitse"}, {"datetaken": "2007-07-04 06:56:16", "license": "3", "title": "DSCN8806", "text": "", "album_id": "72157600637630564", "longitude": "10.985641", "url_o": "https://farm2.staticflickr.com/1412/711858727_a27df54223_o.jpg", "secret": "8bcf14588a", "media": "photo", "latitude": "47.418563", "id": "711858727", "tags": "germany europe skiing glacier garmisch garmischpartenkirchen powderday alpineskiing downhillskiing glacierskiing mountainsalpsbavarianalps zugspitse"}, {"datetaken": "2007-07-04 06:56:18", "license": "3", "title": "Zugspitze Summit", "text": "", "album_id": "72157600637630564", "longitude": "10.988731", "url_o": "https://farm2.staticflickr.com/1108/712733596_571c4c4618_o.jpg", "secret": "1505cc3855", "media": "photo", "latitude": "47.418563", "id": "712733596", "tags": "germany europe skiing glacier cablecar summit garmisch garmischpartenkirchen powderday alpineskiing downhillskiing glacierskiing mountainsalpsbavarianalps zugspitse"}, {"datetaken": "2007-07-04 06:56:21", "license": "3", "title": "Austrian Alps", "text": "", "album_id": "72157600637630564", "longitude": "10.986156", "url_o": "https://farm2.staticflickr.com/1397/712733944_014797d5c3_o.jpg", "secret": "40f37b29dc", "media": "photo", "latitude": "47.416240", "id": "712733944", "tags": "germany europe skiing glacier garmisch garmischpartenkirchen zugspitze powderday alpineskiing austrianalps downhillskiing zugspitzplatt glacierskiing mountainsalpsbavarianalps"}, {"datetaken": "2007-07-04 07:01:35", "license": "3", "title": "DSCN9274", "text": "", "album_id": "72157600637630564", "longitude": "10.986156", "url_o": "https://farm2.staticflickr.com/1135/711896545_263da387f0_o.jpg", "secret": "b6b59c6d8e", "media": "photo", "latitude": "47.416240", "id": "711896545", "tags": "germany europe skiing glacier garmisch garmischpartenkirchen powderday alpineskiing downhillskiing glacierskiing mountainsalpsbavarianalps zugspitse"}, {"datetaken": "2007-07-04 07:01:36", "license": "3", "title": "DSCN9279", "text": "", "album_id": "72157600637630564", "longitude": "10.986156", "url_o": "https://farm2.staticflickr.com/1179/711896671_446355ba3c_o.jpg", "secret": "a4000d2cf2", "media": "photo", "latitude": "47.416240", "id": "711896671", "tags": "germany europe skiing glacier garmisch garmischpartenkirchen powderday alpineskiing downhillskiing glacierskiing mountainsalpsbavarianalps zugspitse"}, {"datetaken": "2007-07-04 07:01:37", "license": "3", "title": "DSCN9280", "text": "", "album_id": "72157600637630564", "longitude": "10.983324", "url_o": "https://farm2.staticflickr.com/1022/712771168_a9de3f9ea0_o.jpg", "secret": "50c9eca87a", "media": "photo", "latitude": "47.413859", "id": "712771168", "tags": "germany europe skiing glacier garmisch garmischpartenkirchen powderday alpineskiing downhillskiing glacierskiing mountainsalpsbavarianalps zugspitse"}, {"datetaken": "2007-07-04 07:01:38", "license": "3", "title": "DSCN9283", "text": "", "album_id": "72157600637630564", "longitude": "10.983324", "url_o": "https://farm2.staticflickr.com/1026/711896923_851b888f74_o.jpg", "secret": "217b4b30d2", "media": "photo", "latitude": "47.413859", "id": "711896923", "tags": "germany europe skiing glacier garmisch garmischpartenkirchen powderday alpineskiing downhillskiing glacierskiing mountainsalpsbavarianalps zugspitse"}, {"datetaken": "2007-07-04 07:17:07", "license": "3", "title": "DSCN9275", "text": "", "album_id": "72157600637630564", "longitude": "10.986156", "url_o": "https://farm2.staticflickr.com/1349/712879642_00e47b6595_o.jpg", "secret": "e3d2146b24", "media": "photo", "latitude": "47.416240", "id": "712879642", "tags": "germany europe skiing glacier garmisch garmischpartenkirchen powderday alpineskiing downhillskiing glacierskiing mountainsalpsbavarianalps zugspitse"}, {"datetaken": "2007-07-04 07:17:08", "license": "3", "title": "DSCN9281", "text": "", "album_id": "72157600637630564", "longitude": "10.983324", "url_o": "https://farm2.staticflickr.com/1217/712879740_cd604bad8c_o.jpg", "secret": "3cb4574adf", "media": "photo", "latitude": "47.413859", "id": "712879740", "tags": "germany europe skiing glacier garmisch garmischpartenkirchen powderday alpineskiing downhillskiing glacierskiing mountainsalpsbavarianalps zugspitse"}, {"datetaken": "2006-09-30 17:14:58", "license": "3", "title": "Oktoberfest", "text": "", "album_id": "72157594308439717", "longitude": "-89.913160", "url_o": "https://farm1.staticflickr.com/120/258132232_33b0411646_o.jpg", "secret": "33b0411646", "media": "photo", "latitude": "38.590480", "id": "258132232", "tags": "charity food church illinois catholic german octoberfest ofallen 10d2999996"}, {"datetaken": "2006-09-30 17:15:40", "license": "3", "title": "Oktoberfest", "text": "", "album_id": "72157594308439717", "longitude": "-89.913160", "url_o": "https://farm1.staticflickr.com/121/258131821_613014a6cd_o.jpg", "secret": "613014a6cd", "media": "photo", "latitude": "38.590480", "id": "258131821", "tags": "charity church illinois catholic octoberfest ofallen 10d2999997"}, {"datetaken": "2006-09-30 17:20:02", "license": "3", "title": "Oktoberfest", "text": "", "album_id": "72157594308439717", "longitude": "-89.913160", "url_o": "https://farm1.staticflickr.com/82/258131982_017fba5ee5_o.jpg", "secret": "017fba5ee5", "media": "photo", "latitude": "38.590480", "id": "258131982", "tags": "charity church illinois catholic octoberfest ofallen 10d3000001"}, {"datetaken": "2006-09-30 17:20:52", "license": "3", "title": "Oktoberfest - St Claire Catholic Church - O'Fallon IL", "text": "", "album_id": "72157594308439717", "longitude": "-89.913160", "url_o": "https://farm1.staticflickr.com/93/258132113_f0ecc647c8_o.jpg", "secret": "f0ecc647c8", "media": "photo", "latitude": "38.590480", "id": "258132113", "tags": "charity food church illinois catholic german octoberfest ofallen 10d3000002"}, {"datetaken": "2006-09-30 17:24:42", "license": "3", "title": "Too many sweet choices!", "text": "", "album_id": "72157594308439717", "longitude": "-89.913160", "url_o": "https://farm1.staticflickr.com/98/258515149_cdf9538a01_o.jpg", "secret": "cdf9538a01", "media": "photo", "latitude": "38.590480", "id": "258515149", "tags": "oktoberfest ofallen 10d3000003"}, {"datetaken": "2006-09-30 17:25:20", "license": "3", "title": "Flowers a center piece", "text": "", "album_id": "72157594308439717", "longitude": "-89.913160", "url_o": "https://farm1.staticflickr.com/84/258515243_8510988fc6_o.jpg", "secret": "8510988fc6", "media": "photo", "latitude": "38.590480", "id": "258515243", "tags": "oktoberfest ofallen 10d3000004"}, {"datetaken": "2006-09-30 17:53:48", "license": "3", "title": "Sidewalk fair", "text": "", "album_id": "72157594308439717", "longitude": "-89.913160", "url_o": "https://farm1.staticflickr.com/98/258515357_283fd59d25_o.jpg", "secret": "283fd59d25", "media": "photo", "latitude": "38.590480", "id": "258515357", "tags": "oktoberfest ofallen 10d3000007"}, {"datetaken": "2006-09-30 17:55:54", "license": "3", "title": "Playground activities", "text": "", "album_id": "72157594308439717", "longitude": "-89.913160", "url_o": "https://farm1.staticflickr.com/88/258515450_f51f2c0066_o.jpg", "secret": "f51f2c0066", "media": "photo", "latitude": "38.590480", "id": "258515450", "tags": "oktoberfest ofallen 10d3000009"}, {"datetaken": "2006-09-30 17:57:54", "license": "3", "title": "Games of chance", "text": "", "album_id": "72157594308439717", "longitude": "-89.913160", "url_o": "https://farm1.staticflickr.com/112/259700218_7bca7d2d96_o.jpg", "secret": "7bca7d2d96", "media": "photo", "latitude": "38.590480", "id": "259700218", "tags": "oktoberfest german ofallonil 10d3000011"}, {"datetaken": "2006-09-30 17:59:30", "license": "3", "title": "Sleeping", "text": "", "album_id": "72157594308439717", "longitude": "-89.913160", "url_o": "https://farm1.staticflickr.com/112/259700308_6eb80a6f58_o.jpg", "secret": "6eb80a6f58", "media": "photo", "latitude": "38.590480", "id": "259700308", "tags": "oktoberfest german ofallonil 10d3000012"}, {"datetaken": "2006-09-30 18:00:08", "license": "3", "title": "Babies at the Carnival", "text": "", "album_id": "72157594308439717", "longitude": "-89.913160", "url_o": "https://farm1.staticflickr.com/86/259700393_51e7ac98ac_o.jpg", "secret": "51e7ac98ac", "media": "photo", "latitude": "38.590480", "id": "259700393", "tags": "carnival oktoberfest german ofallonil 10d3000014"}, {"datetaken": "2006-09-30 18:32:56", "license": "3", "title": "Sunset - Home Bound", "text": "", "album_id": "72157594308439717", "longitude": "-90.424969", "url_o": "https://farm1.staticflickr.com/74/259700440_3949bbc30b_o.jpg", "secret": "3949bbc30b", "media": "photo", "latitude": "38.691325", "id": "259700440", "tags": "sunset fall oktoberfest german ofallonil 10d3000016"}, {"datetaken": "2006-10-13 13:36:51", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/120/268647965_ea948b2675_o.jpg", "secret": "ea948b2675", "media": "photo", "latitude": "0", "id": "268647965", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 13:38:07", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/268648143_a982f8e498_o.jpg", "secret": "a982f8e498", "media": "photo", "latitude": "0", "id": "268648143", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 13:39:27", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/114/268648177_6508c232cb_o.jpg", "secret": "6508c232cb", "media": "photo", "latitude": "0", "id": "268648177", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 13:41:03", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/113/268648213_9e4dea37f3_o.jpg", "secret": "9e4dea37f3", "media": "photo", "latitude": "0", "id": "268648213", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 13:42:56", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/116/268648235_24d870f25c_o.jpg", "secret": "24d870f25c", "media": "photo", "latitude": "0", "id": "268648235", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 13:44:53", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/114/268648259_c66c2a09b8_o.jpg", "secret": "c66c2a09b8", "media": "photo", "latitude": "0", "id": "268648259", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 13:47:27", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/107/268648305_3aed78f465_o.jpg", "secret": "3aed78f465", "media": "photo", "latitude": "0", "id": "268648305", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 13:47:58", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/268647584_1fd702b525_o.jpg", "secret": "1fd702b525", "media": "photo", "latitude": "0", "id": "268647584", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 13:48:55", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/116/268647643_8cd3872632_o.jpg", "secret": "8cd3872632", "media": "photo", "latitude": "0", "id": "268647643", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 13:50:59", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/121/268647680_c46b0c3fb1_o.jpg", "secret": "c46b0c3fb1", "media": "photo", "latitude": "0", "id": "268647680", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 13:53:06", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/268647742_4370ffdff3_o.jpg", "secret": "4370ffdff3", "media": "photo", "latitude": "0", "id": "268647742", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 13:54:41", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/111/268647774_80da53e364_o.jpg", "secret": "80da53e364", "media": "photo", "latitude": "0", "id": "268647774", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 13:56:02", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/118/268647823_ed2d3a0ca0_o.jpg", "secret": "ed2d3a0ca0", "media": "photo", "latitude": "0", "id": "268647823", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 13:57:36", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/268647884_38efd7ab5f_o.jpg", "secret": "38efd7ab5f", "media": "photo", "latitude": "0", "id": "268647884", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 13:59:19", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/268647941_8c8efee352_o.jpg", "secret": "8c8efee352", "media": "photo", "latitude": "0", "id": "268647941", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 14:05:47", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/268647996_0909d0885f_o.jpg", "secret": "0909d0885f", "media": "photo", "latitude": "0", "id": "268647996", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 14:08:51", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/268648036_0b2d5d63d1_o.jpg", "secret": "0b2d5d63d1", "media": "photo", "latitude": "0", "id": "268648036", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 14:09:40", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/268648062_ca37604342_o.jpg", "secret": "ca37604342", "media": "photo", "latitude": "0", "id": "268648062", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2006-10-13 14:15:33", "license": "1", "title": "Activities by TRAN-U", "text": "", "album_id": "72157594326560194", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/268648098_e181ca5ab1_o.jpg", "secret": "e181ca5ab1", "media": "photo", "latitude": "0", "id": "268648098", "tags": "roadtransport 2006rtactionweek"}, {"datetaken": "2011-02-05 19:43:35", "license": "3", "title": "Group shot", "text": "", "album_id": "72157626023683282", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5292/5435359991_5e225e56ff_o.jpg", "secret": "8cc1f79c3b", "media": "photo", "latitude": "0", "id": "5435359991", "tags": "friends people tristan aj andreas photowalk adelaide activity locations ourfamily portadelaide"}, {"datetaken": "2011-02-05 19:47:00", "license": "3", "title": "IMG_20110205_5628", "text": "", "album_id": "72157626023683282", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4118/5435360057_96044f50ce_o.jpg", "secret": "f85d3f67a4", "media": "photo", "latitude": "0", "id": "5435360057", "tags": "photowalk adelaide activity locations portadelaide"}, {"datetaken": "2011-02-05 19:48:06", "license": "3", "title": "IMG_20110205_5630", "text": "", "album_id": "72157626023683282", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5217/5435969276_54d6ea0180_o.jpg", "secret": "6b1d0217f2", "media": "photo", "latitude": "0", "id": "5435969276", "tags": "photowalk adelaide activity locations portadelaide"}, {"datetaken": "2011-02-05 19:54:31", "license": "3", "title": "IMG_20110205_5638", "text": "", "album_id": "72157626023683282", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5100/5435969360_da5a5e6175_o.jpg", "secret": "281617cb06", "media": "photo", "latitude": "0", "id": "5435969360", "tags": "photowalk adelaide activity locations portadelaide"}, {"datetaken": "2011-02-05 20:17:07", "license": "3", "title": "IMG_20110205_5661", "text": "", "album_id": "72157626023683282", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5051/5435360291_4b4ed2656d_o.jpg", "secret": "90428dcc82", "media": "photo", "latitude": "0", "id": "5435360291", "tags": "photowalk adelaide activity locations portadelaide"}, {"datetaken": "2011-02-05 20:23:40", "license": "3", "title": "IMG_20110205_5665", "text": "", "album_id": "72157626023683282", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5259/5435360379_4372c6fa26_o.jpg", "secret": "46b5946303", "media": "photo", "latitude": "0", "id": "5435360379", "tags": "photowalk adelaide activity locations portadelaide"}, {"datetaken": "2011-02-05 20:30:59", "license": "3", "title": "IMG_20110205_5671", "text": "", "album_id": "72157626023683282", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5212/5435360449_607c22f888_o.jpg", "secret": "128eae3a54", "media": "photo", "latitude": "0", "id": "5435360449", "tags": "sunset landscape photowalk adelaide activity locations portadelaide"}, {"datetaken": "2011-02-05 20:32:03", "license": "3", "title": "Pirates Ahoi!", "text": "", "album_id": "72157626023683282", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5014/5435360513_6a8d341c0f_o.jpg", "secret": "0ddebc7661", "media": "photo", "latitude": "0", "id": "5435360513", "tags": "sunset landscape photowalk activity"}, {"datetaken": "2011-02-05 20:34:38", "license": "3", "title": "IMG_20110205_5678", "text": "", "album_id": "72157626023683282", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5291/5435969704_25f3a6f0e2_o.jpg", "secret": "ff61aba9ee", "media": "photo", "latitude": "0", "id": "5435969704", "tags": "landscape photowalk adelaide activity locations portadelaide"}, {"datetaken": "2011-02-05 20:41:57", "license": "3", "title": "IMG_20110205_5685", "text": "", "album_id": "72157626023683282", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4118/5435360641_3d85bc9e2a_o.jpg", "secret": "fc81727e5e", "media": "photo", "latitude": "0", "id": "5435360641", "tags": "landscape nightshot photowalk adelaide activity locations portadelaide"}, {"datetaken": "2011-02-05 20:46:44", "license": "3", "title": "Ghost at the port", "text": "", "album_id": "72157626023683282", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5131/5435969814_187f1d779f_o.jpg", "secret": "4918af44cd", "media": "photo", "latitude": "0", "id": "5435969814", "tags": "people nightshot andreas photowalk adelaide activity locations ourfamily portadelaide"}, {"datetaken": "2011-03-12 10:38:02", "license": "2", "title": "Pancakes in the Park 2011 (2) copy", "text": "", "album_id": "72157626133271663", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5214/5523188585_b06ee25da7_o.jpg", "secret": "8a04e5edfe", "media": "photo", "latitude": "0", "id": "5523188585", "tags": "maple tap clermontcounty pattisonpark pancakesinthepark"}, {"datetaken": "2011-03-12 10:40:53", "license": "2", "title": "Pancakes in the Park 2011 (7) copy", "text": "", "album_id": "72157626133271663", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5256/5523780890_5ec8bda8cc_o.jpg", "secret": "031ebd8549", "media": "photo", "latitude": "0", "id": "5523780890", "tags": "pancakes maplesyrup clermontcounty pattisonpark clermontcountyparkdistrict pancakesinthepark"}, {"datetaken": "2011-03-12 10:46:46", "license": "2", "title": "Pancakes in the Park 2011 (10) copy", "text": "", "album_id": "72157626133271663", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5177/5523781784_652b919010_o.jpg", "secret": "faafae6051", "media": "photo", "latitude": "0", "id": "5523781784", "tags": ""}, {"datetaken": "2011-03-12 12:02:44", "license": "2", "title": "Pancakes in the Park 2011 (19) copy", "text": "", "album_id": "72157626133271663", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5523192295_5c48d3845e_o.jpg", "secret": "59ff12bdd8", "media": "photo", "latitude": "0", "id": "5523192295", "tags": ""}, {"datetaken": "2011-03-12 12:03:03", "license": "2", "title": "Pancakes in the Park 2011 (20) copy", "text": "", "album_id": "72157626133271663", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5057/5523194855_ed180bbcf9_o.jpg", "secret": "301f979753", "media": "photo", "latitude": "0", "id": "5523194855", "tags": "maplesyrup clermontcounty maplesap pattisonpark pancakesinthepark"}, {"datetaken": "2011-03-12 12:12:12", "license": "2", "title": "Pancakes in the Park 2011 (24) copy", "text": "", "album_id": "72157626133271663", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5259/5523787958_b69cbf14c4_o.jpg", "secret": "10ea041f0b", "media": "photo", "latitude": "0", "id": "5523787958", "tags": "dulcimer clermontcounty pattisonpark pancakesinthepark"}, {"datetaken": "2011-03-12 12:14:41", "license": "2", "title": "Pancakes in the Park 2011 (26) copy", "text": "", "album_id": "72157626133271663", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5013/5523197721_7f3d10143b_o.jpg", "secret": "0317ac660c", "media": "photo", "latitude": "0", "id": "5523197721", "tags": "mapletree sap sugarmaple clermontcounty pattisonpark"}, {"datetaken": "2011-03-12 12:14:49", "license": "2", "title": "Pancakes in the Park 2011 (28) copy", "text": "", "album_id": "72157626133271663", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5093/5523199127_158b17078d_o.jpg", "secret": "1502b49aa6", "media": "photo", "latitude": "0", "id": "5523199127", "tags": "maple maplesyrup clermontcounty pattisonpark pancakesinthepark"}, {"datetaken": "2011-03-12 12:16:53", "license": "2", "title": "Pancakes in the Park 2011 (32) copy", "text": "", "album_id": "72157626133271663", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5180/5523791888_9de64b802e_o.jpg", "secret": "e8ff816f90", "media": "photo", "latitude": "0", "id": "5523791888", "tags": "maple maplesyrup evaporator clermontcounty pattisonpark"}, {"datetaken": "2011-03-12 12:46:32", "license": "2", "title": "Pancakes in the Park 2011 (37) copy", "text": "", "album_id": "72157626133271663", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5138/5523793108_b527b14937_o.jpg", "secret": "8bb4c3da78", "media": "photo", "latitude": "0", "id": "5523793108", "tags": "maple maplesyrup evaporator clermontcounty pattisonpark"}, {"datetaken": "2011-03-16 11:40:58", "license": "6", "title": "America Day in the HU No.003FL", "text": "", "album_id": "72157626285768710", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5299/5534275287_2d7a6c61a8_o.jpg", "secret": "5aaf97889e", "media": "photo", "latitude": "0", "id": "5534275287", "tags": "israel jerusalem hilary center pd studentunion isr dcm hebrewuniversity americanday daveburnett julieadams olsinwindecker tomgoldberger"}, {"datetaken": "2011-03-16 11:43:46", "license": "6", "title": "America Day in the HU No.008FL", "text": "", "album_id": "72157626285768710", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5180/5534855206_bb12c0d7fe_o.jpg", "secret": "a6003beb2d", "media": "photo", "latitude": "0", "id": "5534855206", "tags": "israel jerusalem hilary center pd studentunion isr dcm hebrewuniversity americanday daveburnett julieadams olsinwindecker tomgoldberger"}, {"datetaken": "2011-03-16 11:45:48", "license": "6", "title": "America Day in the HU No.011FL", "text": "", "album_id": "72157626285768710", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5219/5534855488_2c60d2eeff_o.jpg", "secret": "4922073876", "media": "photo", "latitude": "0", "id": "5534855488", "tags": "israel jerusalem hilary center pd studentunion isr dcm hebrewuniversity americanday daveburnett julieadams olsinwindecker tomgoldberger"}, {"datetaken": "2011-03-16 11:46:23", "license": "6", "title": "America Day in the HU No.013FL", "text": "", "album_id": "72157626285768710", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5051/5534855812_ffafc34cb7_o.jpg", "secret": "b689a4a1c2", "media": "photo", "latitude": "0", "id": "5534855812", "tags": "israel jerusalem hilary center pd studentunion isr dcm hebrewuniversity americanday daveburnett julieadams olsinwindecker tomgoldberger"}, {"datetaken": "2011-03-16 11:57:52", "license": "6", "title": "America Day in the HU No.018FL", "text": "", "album_id": "72157626285768710", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5253/5534276385_822f033116_o.jpg", "secret": "b0a7e9041d", "media": "photo", "latitude": "0", "id": "5534276385", "tags": "israel jerusalem hilary center pd studentunion isr dcm hebrewuniversity americanday daveburnett julieadams olsinwindecker tomgoldberger"}, {"datetaken": "2011-03-16 11:58:20", "license": "6", "title": "America Day in the HU No.019FL", "text": "", "album_id": "72157626285768710", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5132/5534856352_7976601566_o.jpg", "secret": "8f6961475d", "media": "photo", "latitude": "0", "id": "5534856352", "tags": "israel jerusalem hilary center pd studentunion isr dcm hebrewuniversity americanday daveburnett julieadams olsinwindecker tomgoldberger"}, {"datetaken": "2011-03-16 11:58:54", "license": "6", "title": "America Day in the HU No.021FL", "text": "", "album_id": "72157626285768710", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5294/5534276933_af2b9537f8_o.jpg", "secret": "b28c95ee62", "media": "photo", "latitude": "0", "id": "5534276933", "tags": "israel jerusalem hilary center pd studentunion isr dcm hebrewuniversity americanday daveburnett julieadams olsinwindecker tomgoldberger"}, {"datetaken": "2011-03-16 12:20:09", "license": "6", "title": "America Day in the HU No.027FL", "text": "", "album_id": "72157626285768710", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5100/5534857062_39610fa0d5_o.jpg", "secret": "195df78c13", "media": "photo", "latitude": "0", "id": "5534857062", "tags": "israel jerusalem hilary center pd studentunion isr dcm hebrewuniversity americanday daveburnett julieadams olsinwindecker tomgoldberger"}, {"datetaken": "2011-03-16 12:44:56", "license": "6", "title": "America Day in the HU No.041FL", "text": "", "album_id": "72157626285768710", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5300/5534857232_a5114a1801_o.jpg", "secret": "ba54dc2c02", "media": "photo", "latitude": "0", "id": "5534857232", "tags": "israel jerusalem hilary center pd studentunion isr dcm hebrewuniversity americanday daveburnett julieadams olsinwindecker tomgoldberger"}, {"datetaken": "2011-03-16 12:48:15", "license": "6", "title": "America Day in the HU No.051FL", "text": "", "album_id": "72157626285768710", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5252/5534857392_32daa69741_o.jpg", "secret": "eb4365a90f", "media": "photo", "latitude": "0", "id": "5534857392", "tags": "israel jerusalem hilary center pd studentunion isr dcm hebrewuniversity americanday daveburnett julieadams olsinwindecker tomgoldberger"}, {"datetaken": "2011-03-16 14:36:35", "license": "6", "title": "America Day in the HU No.053FL", "text": "", "album_id": "72157626285768710", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5180/5534857714_c5b6348a57_o.jpg", "secret": "c9266df9f9", "media": "photo", "latitude": "0", "id": "5534857714", "tags": "israel jerusalem hilary center pd studentunion isr dcm hebrewuniversity americanday daveburnett julieadams olsinwindecker tomgoldberger"}, {"datetaken": "2011-03-16 14:45:47", "license": "6", "title": "America Day in the HU No.060FL", "text": "", "album_id": "72157626285768710", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5213/5534858130_c124691572_o.jpg", "secret": "31b836a437", "media": "photo", "latitude": "0", "id": "5534858130", "tags": "israel jerusalem hilary center pd studentunion isr dcm hebrewuniversity americanday daveburnett julieadams olsinwindecker tomgoldberger"}, {"datetaken": "2011-03-16 15:15:06", "license": "6", "title": "America Day in the HU No.067FL", "text": "", "album_id": "72157626285768710", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5292/5534858414_2a6e407707_o.jpg", "secret": "ccf6962f7a", "media": "photo", "latitude": "0", "id": "5534858414", "tags": "israel jerusalem hilary center pd studentunion isr dcm hebrewuniversity americanday daveburnett julieadams olsinwindecker tomgoldberger"}, {"datetaken": "2011-03-16 16:50:07", "license": "6", "title": "America Day in the HU No.081FL", "text": "", "album_id": "72157626285768710", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5298/5534278931_90b3e4104b_o.jpg", "secret": "392369a046", "media": "photo", "latitude": "0", "id": "5534278931", "tags": "israel jerusalem hilary center pd studentunion isr dcm hebrewuniversity americanday daveburnett julieadams olsinwindecker tomgoldberger"}, {"datetaken": "2011-03-16 19:03:51", "license": "6", "title": "America Day in the HU No.106FL", "text": "", "album_id": "72157626285768710", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5180/5534279715_4849322048_o.jpg", "secret": "1741234cf4", "media": "photo", "latitude": "0", "id": "5534279715", "tags": "israel jerusalem hilary center pd studentunion isr dcm hebrewuniversity americanday daveburnett julieadams olsinwindecker tomgoldberger"}, {"datetaken": "2011-03-16 19:10:26", "license": "6", "title": "America Day in the HU No.110FL", "text": "", "album_id": "72157626285768710", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5135/5534859722_76313f4e0c_o.jpg", "secret": "28d73e6f15", "media": "photo", "latitude": "0", "id": "5534859722", "tags": "israel jerusalem hilary center pd studentunion isr dcm hebrewuniversity americanday daveburnett julieadams olsinwindecker tomgoldberger"}, {"datetaken": "2011-03-16 19:58:11", "license": "6", "title": "America Day in the HU No.113FL", "text": "", "album_id": "72157626285768710", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5177/5534280291_ce649de2af_o.jpg", "secret": "00b11921a6", "media": "photo", "latitude": "0", "id": "5534280291", "tags": "israel jerusalem hilary center pd studentunion isr dcm hebrewuniversity americanday daveburnett julieadams olsinwindecker tomgoldberger"}, {"datetaken": "2011-04-01 12:30:37", "license": "2", "title": "CAB_Jammin_01", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5174/5583656260_4f31ee0a68_o.jpg", "secret": "92d51482ff", "media": "photo", "latitude": "0", "id": "5583656260", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 12:37:03", "license": "2", "title": "CAB_Jammin_02", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5137/5583068903_7e42aafdf6_o.jpg", "secret": "756a89ca07", "media": "photo", "latitude": "0", "id": "5583068903", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 12:37:05", "license": "2", "title": "CAB_Jammin_03", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5064/5583656384_a7732f8d28_o.jpg", "secret": "983d5d11ce", "media": "photo", "latitude": "0", "id": "5583656384", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 12:37:22", "license": "2", "title": "CAB_Jammin_04", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5222/5583656456_4417d5efc7_o.jpg", "secret": "6bb7096a28", "media": "photo", "latitude": "0", "id": "5583656456", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 12:37:59", "license": "2", "title": "CAB_Jammin_05", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5291/5583656500_32d36ec386_o.jpg", "secret": "3e1075bf64", "media": "photo", "latitude": "0", "id": "5583656500", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 12:38:02", "license": "2", "title": "CAB_Jammin_06", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5183/5583656556_61860b0ae4_o.jpg", "secret": "c27d5787fd", "media": "photo", "latitude": "0", "id": "5583656556", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 12:38:21", "license": "2", "title": "CAB_Jammin_07", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5132/5583069149_b7d79c925a_o.jpg", "secret": "76d92bf029", "media": "photo", "latitude": "0", "id": "5583069149", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 12:39:05", "license": "2", "title": "CAB_Jammin_08", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5092/5583069221_03a0e0bf71_o.jpg", "secret": "2b9969facd", "media": "photo", "latitude": "0", "id": "5583069221", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 13:38:51", "license": "2", "title": "CAB_Jammin_09", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5148/5583656786_5ed725da71_o.jpg", "secret": "77a465947e", "media": "photo", "latitude": "0", "id": "5583656786", "tags": "show music concert cab band usf augustana universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 13:38:58", "license": "2", "title": "CAB_Jammin_10", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5138/5583656730_83b3b7dec0_o.jpg", "secret": "d45c3ebaa8", "media": "photo", "latitude": "0", "id": "5583656730", "tags": "show music concert cab band usf augustana universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 13:40:24", "license": "2", "title": "CAB_Jammin_11", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5020/5583069403_bb7bb01f53_o.jpg", "secret": "500ab64705", "media": "photo", "latitude": "0", "id": "5583069403", "tags": "show music concert cab band usf augustana universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 13:48:20", "license": "2", "title": "CAB_Jammin_12", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5227/5583069489_5a461ca0e0_o.jpg", "secret": "9a8256a241", "media": "photo", "latitude": "0", "id": "5583069489", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 13:48:28", "license": "2", "title": "CAB_Jammin_13", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5106/5583656966_c07379f19d_o.jpg", "secret": "76d78590e0", "media": "photo", "latitude": "0", "id": "5583656966", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 13:48:51", "license": "2", "title": "CAB Jammin\u2019 for Justice Concert at War Memorial", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5306/5583657022_e1f0afe0be_o.jpg", "secret": "f8394f78e9", "media": "photo", "latitude": "0", "id": "5583657022", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 13:49:36", "license": "2", "title": "CAB_Jammin_15", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5301/5583657076_98a23f3cae_o.jpg", "secret": "17dbc30bf3", "media": "photo", "latitude": "0", "id": "5583657076", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 13:49:53", "license": "2", "title": "CAB_Jammin_16", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5181/5583069795_27db523be0_o.jpg", "secret": "db90fbb68c", "media": "photo", "latitude": "0", "id": "5583069795", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 13:50:29", "license": "2", "title": "CAB_Jammin_17", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5058/5583069733_d87f17bf5c_o.jpg", "secret": "c129da19b8", "media": "photo", "latitude": "0", "id": "5583069733", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 13:51:01", "license": "2", "title": "CAB_Jammin_18", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5059/5583069851_99caf21e15_o.jpg", "secret": "1a098c2227", "media": "photo", "latitude": "0", "id": "5583069851", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 14:48:02", "license": "2", "title": "CAB_Jammin_19", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5136/5583069911_38c22e1a5e_o.jpg", "secret": "d9f7dae757", "media": "photo", "latitude": "0", "id": "5583069911", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 14:49:14", "license": "2", "title": "CAB_Jammin_20", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5103/5583069959_7f8ac1580d_o.jpg", "secret": "8fb7a2c26f", "media": "photo", "latitude": "0", "id": "5583069959", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 14:52:31", "license": "2", "title": "CAB_Jammin_21", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5293/5583657376_7a4879d918_o.jpg", "secret": "a9de4226f9", "media": "photo", "latitude": "0", "id": "5583657376", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 14:52:46", "license": "2", "title": "CAB_Jammin_22", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5184/5583657420_6e1e46d338_o.jpg", "secret": "62542e9844", "media": "photo", "latitude": "0", "id": "5583657420", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 14:55:36", "license": "2", "title": "CAB_Jammin_23", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5583070109_45ed2191a5_o.jpg", "secret": "fc50bc61cd", "media": "photo", "latitude": "0", "id": "5583070109", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 14:59:00", "license": "2", "title": "CAB_Jammin_24", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5092/5583657538_7e52b6903a_o.jpg", "secret": "9d06494eb2", "media": "photo", "latitude": "0", "id": "5583657538", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2011-04-01 14:59:01", "license": "2", "title": "CAB_Jammin_25", "text": "", "album_id": "72157626290154193", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5228/5583070233_f8dd1d3be5_o.jpg", "secret": "fccf7ccb55", "media": "photo", "latitude": "0", "id": "5583070233", "tags": "show music concert cab band usf universityofsanfrancisco usfca jamminforjustice rawg weshotthemoon campusactivitiesboard almadesnuda usfpool"}, {"datetaken": "2005-05-29 11:57:58", "license": "3", "title": "A \"Young Marine\"", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17149937_a4869fba64_o.jpg", "secret": "a4869fba64", "media": "photo", "latitude": "0", "id": "17149937", "tags": "usmc soldier washingtondc dc washington districtofcolumbia memorial child district flag motorcycles parade wdc mia motorcycle pow veteran patriotism memorialbridge marinecorps memorialday veterans nationalism nationalholiday honorguard rollingthunder militarism veteransrights youngmarines flagbearer montfordpoint mchn"}, {"datetaken": "2005-05-29 12:03:11", "license": "3", "title": "Arlington National Cemetery Overlooking Rolling Thunder Happenings on Memorial Bridge", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17149936_df2b63f1ad_o.jpg", "secret": "df2b63f1ad", "media": "photo", "latitude": "0", "id": "17149936", "tags": "rollingthunder veteran veterans veteransrights memorial pow mia arlingtonnationalcemetery flag holiday memorialbridge memorialday patriotism militarism nationalism nationalholiday washington dc wdc districtofcolumbia district dcist washingtondc"}, {"datetaken": "2005-05-29 12:06:49", "license": "3", "title": "Huey fly-over of Memorial Bridge", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17149935_214d5cdbb2_o.jpg", "secret": "214d5cdbb2", "media": "photo", "latitude": "0", "id": "17149935", "tags": "helicopter huey memorialday patriotism militarism nationalism nationalholiday homelandsecurity dhs homesec security police washington dc wdc districtofcolumbia district washingtondc"}, {"datetaken": "2005-05-29 12:06:54", "license": "3", "title": "Lookin' at you, kid", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17148556_26271ea2cf_o.jpg", "secret": "26271ea2cf", "media": "photo", "latitude": "0", "id": "17148556", "tags": "helicopter huey memorialday patriotism militarism nationalism nationalholiday homelandsecurity dhs homesec security police washington dc wdc districtofcolumbia district dcist washingtondc"}, {"datetaken": "2005-05-29 12:09:19", "license": "3", "title": "", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17148555_c25ba8994c_o.jpg", "secret": "c25ba8994c", "media": "photo", "latitude": "0", "id": "17148555", "tags": "washingtondc dc washington districtofcolumbia district surveillance homelandsecurity police security wdc helicopter dcist potomac blackhawk patriotism dhs memorialday nationalism helo nationalholiday militarism homesec mchn"}, {"datetaken": "2005-05-29 12:10:08", "license": "3", "title": "Rolling Thunder", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17148554_0a0836cccd_o.jpg", "secret": "0a0836cccd", "media": "photo", "latitude": "0", "id": "17148554", "tags": "motorcycle holiday memorialbridge bridge memorial veteran pow mia rollingthunder veterans veteransrights motorcycles memorialday patriotism militarism nationalism nationalholiday washington dc wdc districtofcolumbia district washingtondc"}, {"datetaken": "2005-05-29 12:11:31", "license": "3", "title": "Rolling Thunder", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17148553_2e0bef5683_o.jpg", "secret": "2e0bef5683", "media": "photo", "latitude": "0", "id": "17148553", "tags": "rollingthunder veteran veterans veteransrights memorial pow mia motorcycles motorcycle memorialday patriotism militarism nationalism nationalholiday washington dc wdc districtofcolumbia district washingtondc"}, {"datetaken": "2005-05-29 12:11:41", "license": "3", "title": "Rolling Thunder", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17148552_d294ec9268_o.jpg", "secret": "d294ec9268", "media": "photo", "latitude": "0", "id": "17148552", "tags": "rollingthunder veteran veterans veteransrights memorial pow mia motorcycles motorcycle memorialday patriotism militarism nationalism nationalholiday washington dc wdc districtofcolumbia district washingtondc"}, {"datetaken": "2005-05-29 12:17:45", "license": "3", "title": "Hand slaps", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17148551_7d24a86403_o.jpg", "secret": "7d24a86403", "media": "photo", "latitude": "0", "id": "17148551", "tags": "rollingthunder veteran veterans veteransrights memorial pow mia motorcycles motorcycle memorialday patriotism militarism nationalism nationalholiday washington dc wdc districtofcolumbia district washingtondc"}, {"datetaken": "2005-05-29 12:18:38", "license": "3", "title": "Rolling Thunder", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17147304_7ca02fce85_o.jpg", "secret": "7ca02fce85", "media": "photo", "latitude": "0", "id": "17147304", "tags": "rollingthunder veteran veterans veteransrights memorial pow mia motorcycles motorcycle memorialday patriotism militarism nationalism nationalholiday washington dc wdc districtofcolumbia district washingtondc"}, {"datetaken": "2005-05-29 12:19:09", "license": "3", "title": "", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17147303_efd6f45b98_o.jpg", "secret": "efd6f45b98", "media": "photo", "latitude": "0", "id": "17147303", "tags": "rollingthunder veteran veterans veteransrights memorial pow mia motorcycles motorcycle memorialbridge memorialday patriotism militarism nationalism nationalholiday washington dc wdc districtofcolumbia district dcist washingtondc"}, {"datetaken": "2005-05-29 12:20:49", "license": "3", "title": "Biker face", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17147302_36e06e9cce_o.jpg", "secret": "36e06e9cce", "media": "photo", "latitude": "0", "id": "17147302", "tags": "rollingthunder veteran veterans veteransrights memorial pow mia motorcycles motorcycle memorialday patriotism militarism nationalism nationalholiday washington dc wdc districtofcolumbia district washingtondc"}, {"datetaken": "2005-05-29 12:23:18", "license": "3", "title": "Muggin' for the camera", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17147301_55429db2c2_o.jpg", "secret": "55429db2c2", "media": "photo", "latitude": "0", "id": "17147301", "tags": "rollingthunder veteran veterans veteransrights memorial pow mia motorcycles motorcycle memorialday patriotism militarism nationalism nationalholiday washington dc wdc districtofcolumbia district washingtondc"}, {"datetaken": "2005-05-29 12:37:42", "license": "3", "title": "Directing traffic", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17147299_e973436212_o.jpg", "secret": "e973436212", "media": "photo", "latitude": "0", "id": "17147299", "tags": "rollingthunder veteran veterans veteransrights memorial pow mia motorcycles motorcycle memorialday patriotism militarism nationalism nationalholiday washington dc wdc districtofcolumbia district washingtondc"}, {"datetaken": "2005-05-29 12:51:16", "license": "3", "title": "Ready to ride", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/17145931_619fe46e00_o.jpg", "secret": "619fe46e00", "media": "photo", "latitude": "0", "id": "17145931", "tags": "rollingthunder veteran veterans veteransrights memorial pow mia motorcycles motorcycle memorialday patriotism militarism nationalism nationalholiday washington dc wdc districtofcolumbia district dcist washingtondc"}, {"datetaken": "2005-05-29 12:55:58", "license": "3", "title": "Rolling THunder", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17145930_1db29bc9d2_o.jpg", "secret": "1db29bc9d2", "media": "photo", "latitude": "0", "id": "17145930", "tags": "rollingthunder veteran veterans veteransrights memorial pow mia motorcycles motorcycle memorialday patriotism militarism nationalism nationalholiday flag harleydavidson harley washington dc wdc districtofcolumbia district washingtondc"}, {"datetaken": "2005-05-29 13:08:27", "license": "3", "title": "", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17145929_5c4d729d86_o.jpg", "secret": "5c4d729d86", "media": "photo", "latitude": "0", "id": "17145929", "tags": "rollingthunder veteran veterans veteransrights memorial pow mia motorcycles motorcycle memorialday patriotism militarism nationalism nationalholiday janefonda traitor bitch politics opinion monkey plush stuffedanimal washington dc wdc districtofcolumbia district washingtondc"}, {"datetaken": "2005-05-29 13:22:58", "license": "3", "title": "Rolling Thunder", "text": "", "album_id": "408457", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17145928_1d20d67138_o.jpg", "secret": "1d20d67138", "media": "photo", "latitude": "0", "id": "17145928", "tags": "rollingthunder veteran veterans veteransrights memorial pow mia motorcycles motorcycle memorialday patriotism militarism nationalism nationalholiday flag confederate south departmentofagriculture usda washington dc wdc districtofcolumbia district washingtondc"}, {"datetaken": "2007-02-03 16:35:56", "license": "2", "title": "PICT7108", "text": "", "album_id": "72157594517283383", "longitude": "4.856504", "url_o": "https://farm1.staticflickr.com/146/379401173_a715a450b8_o.jpg", "secret": "a715a450b8", "media": "photo", "latitude": "45.777984", "id": "379401173", "tags": "zoo lyon tiger tigre t\u00eatedor parcdelat\u00eatedor annee2008"}, {"datetaken": "2007-02-03 16:40:23", "license": "2", "title": "PICT7118", "text": "", "album_id": "72157594517283383", "longitude": "4.856504", "url_o": "https://farm1.staticflickr.com/187/379402087_a8e6b21a0f_o.jpg", "secret": "a8e6b21a0f", "media": "photo", "latitude": "45.777984", "id": "379402087", "tags": "zoo lyon lion t\u00eatedor parcdelat\u00eatedor lionne annee2008"}, {"datetaken": "2007-02-03 16:52:39", "license": "2", "title": "PICT7123", "text": "", "album_id": "72157594517283383", "longitude": "4.856504", "url_o": "https://farm1.staticflickr.com/185/379402741_5747a00e55_o.jpg", "secret": "5747a00e55", "media": "photo", "latitude": "45.777984", "id": "379402741", "tags": "zoo monkey lulu lyon ape guenon singe t\u00eatedor parcdelat\u00eatedor annee2008"}, {"datetaken": "2007-02-03 16:59:20", "license": "2", "title": "PICT7125", "text": "", "album_id": "72157594517283383", "longitude": "4.856504", "url_o": "https://farm1.staticflickr.com/169/379403570_cf849e7eab_o.jpg", "secret": "cf849e7eab", "media": "photo", "latitude": "45.777984", "id": "379403570", "tags": "zoo lyon girafe t\u00eatedor parcdelat\u00eatedor annee2008"}, {"datetaken": "2007-02-03 17:00:08", "license": "2", "title": "PICT7128", "text": "", "album_id": "72157594517283383", "longitude": "4.855437", "url_o": "https://farm1.staticflickr.com/170/379404413_fbba9ee3f0_o.jpg", "secret": "fbba9ee3f0", "media": "photo", "latitude": "45.776836", "id": "379404413", "tags": "geotagged zoo eau lyon pinkflamingo t\u00eatedor parcdelat\u00eatedor flamantrose geo:lat=45776836 geo:lon=4855437 annee2008"}, {"datetaken": "2007-02-03 17:04:48", "license": "2", "title": "PICT7131", "text": "", "album_id": "72157594517283383", "longitude": "4.855415", "url_o": "https://farm1.staticflickr.com/175/379404674_2a88742e22_o.jpg", "secret": "2a88742e22", "media": "photo", "latitude": "45.776847", "id": "379404674", "tags": "geotagged zoo duck lyon parade canard t\u00eatedor parcdelat\u00eatedor geo:lat=45776847 geo:lon=4855415 annee2008"}, {"datetaken": "2007-02-03 17:05:19", "license": "2", "title": "PICT7133", "text": "", "album_id": "72157594517283383", "longitude": "4.856504", "url_o": "https://farm1.staticflickr.com/123/379405076_9ef17a4103_o.jpg", "secret": "9ef17a4103", "media": "photo", "latitude": "45.777984", "id": "379405076", "tags": "zoo lyon t\u00eatedor parcdelat\u00eatedor pintade annee2008"}, {"datetaken": "2007-02-03 17:07:31", "license": "2", "title": "PICT7135", "text": "", "album_id": "72157594517283383", "longitude": "4.856504", "url_o": "https://farm1.staticflickr.com/172/379405545_c3abe53edd_o.jpg", "secret": "c3abe53edd", "media": "photo", "latitude": "45.777984", "id": "379405545", "tags": "pink rose zoo lyon t\u00eatedor p\u00e9lican parcdelat\u00eatedor annee2008"}, {"datetaken": "2007-02-03 17:10:19", "license": "2", "title": "PICT7143", "text": "", "album_id": "72157594517283383", "longitude": "4.856504", "url_o": "https://farm1.staticflickr.com/157/379406314_0a6c8d1658_o.jpg", "secret": "0a6c8d1658", "media": "photo", "latitude": "45.777984", "id": "379406314", "tags": "pink rose zoo lyon t\u00eatedor naturesfinest p\u00e9lican parcdelat\u00eatedor specanimal animalkingdomelite annee2008"}, {"datetaken": "2007-02-03 17:12:23", "license": "2", "title": "PICT7145", "text": "", "album_id": "72157594517283383", "longitude": "4.856504", "url_o": "https://farm1.staticflickr.com/160/379407052_5b6c96e810_o.jpg", "secret": "5b6c96e810", "media": "photo", "latitude": "45.777984", "id": "379407052", "tags": "zoo lyon pinkflamingo t\u00eatedor parcdelat\u00eatedor flamantrose annee2008"}, {"datetaken": "2007-02-03 17:13:44", "license": "2", "title": "PICT7150", "text": "", "album_id": "72157594517283383", "longitude": "4.856504", "url_o": "https://farm1.staticflickr.com/153/379407350_6af7bb71bc_o.jpg", "secret": "6af7bb71bc", "media": "photo", "latitude": "45.777984", "id": "379407350", "tags": "bird zoo lyon oiseau t\u00eatedor parcdelat\u00eatedor annee2008"}, {"datetaken": "2007-02-03 17:13:59", "license": "2", "title": "PICT7152", "text": "", "album_id": "72157594517283383", "longitude": "4.854788", "url_o": "https://farm1.staticflickr.com/160/379407672_d70e202192_o.jpg", "secret": "d70e202192", "media": "photo", "latitude": "45.776907", "id": "379407672", "tags": "bird geotagged zoo duck lyon oiseau canard t\u00eatedor parcdelat\u00eatedor geo:lat=45776907 geo:lon=4854788 avianexcellence annee2008"}, {"datetaken": "2007-02-03 17:29:47", "license": "2", "title": "PICT7159", "text": "", "album_id": "72157594517283383", "longitude": "4.856504", "url_o": "https://farm1.staticflickr.com/174/379408692_edf0465b81_o.jpg", "secret": "537f6185f7", "media": "photo", "latitude": "45.777984", "id": "379408692", "tags": "wood metal fence lyon fanny m\u00e9tal bois barri\u00e8re parcdelat\u00eatedor virela virela2 virela3 virela4 virela5 virela6 virela7 virela8 virela9 virela10 candidatauviremoi annee2008"}, {"datetaken": "2005-06-18 11:44:25", "license": "1", "title": "DSCN9442", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/14/20118822_05ab1c0bc2_o.jpg", "secret": "05ab1c0bc2", "media": "photo", "latitude": "47.651397", "id": "20118822", "tags": "seattle fremontsummersolsticeparade adrianne kevine amber"}, {"datetaken": "2005-06-18 12:00:28", "license": "1", "title": "DSCN9453", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/17/20119694_db76ffb822_o.jpg", "secret": "db76ffb822", "media": "photo", "latitude": "47.651397", "id": "20119694", "tags": "seattle fremontsummersolsticeparade naked"}, {"datetaken": "2005-06-18 12:01:13", "license": "1", "title": "DSCN9457", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/14/20119987_06b106bb38_o.jpg", "secret": "06b106bb38", "media": "photo", "latitude": "47.651397", "id": "20119987", "tags": "seattle fremontsummersolsticeparade"}, {"datetaken": "2005-06-18 12:01:23", "license": "1", "title": "DSCN9458", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/15/20120079_4f04cd1904_o.jpg", "secret": "4f04cd1904", "media": "photo", "latitude": "47.651397", "id": "20120079", "tags": "seattle fremontsummersolsticeparade"}, {"datetaken": "2005-06-18 12:01:53", "license": "1", "title": "DSCN9460", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/16/20120220_c5cf1f0d07_o.jpg", "secret": "c5cf1f0d07", "media": "photo", "latitude": "47.651397", "id": "20120220", "tags": "seattle fremontsummersolsticeparade yin yang"}, {"datetaken": "2005-06-18 12:03:55", "license": "1", "title": "DSCN9474", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/16/20121222_6e65490237_o.jpg", "secret": "6e65490237", "media": "photo", "latitude": "47.651397", "id": "20121222", "tags": "seattle fremontsummersolsticeparade"}, {"datetaken": "2005-06-18 12:04:24", "license": "1", "title": "DSCN9477", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/14/20121406_fc0512ce03_o.jpg", "secret": "fc0512ce03", "media": "photo", "latitude": "47.651397", "id": "20121406", "tags": "seattle fremontsummersolsticeparade naked"}, {"datetaken": "2005-06-18 12:04:49", "license": "1", "title": "DSCN9480", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/17/20121575_6f06367fae_o.jpg", "secret": "6f06367fae", "media": "photo", "latitude": "47.651397", "id": "20121575", "tags": "seattle fremontsummersolsticeparade naked"}, {"datetaken": "2005-06-18 12:04:58", "license": "1", "title": "DSCN9481", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/14/20121626_5726c04adf_o.jpg", "secret": "5726c04adf", "media": "photo", "latitude": "47.651397", "id": "20121626", "tags": "seattle fremontsummersolsticeparade naked"}, {"datetaken": "2005-06-18 12:09:28", "license": "1", "title": "DSCN9492", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/14/20122260_3280f14082_o.jpg", "secret": "3280f14082", "media": "photo", "latitude": "47.651397", "id": "20122260", "tags": "seattle fremontsummersolsticeparade"}, {"datetaken": "2005-06-18 12:10:13", "license": "1", "title": "DSCN9495", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/15/20122431_feef761582_o.jpg", "secret": "feef761582", "media": "photo", "latitude": "47.651397", "id": "20122431", "tags": "seattle fremontsummersolsticeparade naked"}, {"datetaken": "2005-06-18 12:10:33", "license": "1", "title": "DSCN9497", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/15/20122567_238b865b21_o.jpg", "secret": "238b865b21", "media": "photo", "latitude": "47.651397", "id": "20122567", "tags": "seattle fremontsummersolsticeparade naked"}, {"datetaken": "2005-06-18 12:11:37", "license": "1", "title": "DSCN9501", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/16/20122822_0cd9ed554f_o.jpg", "secret": "0cd9ed554f", "media": "photo", "latitude": "47.651397", "id": "20122822", "tags": "seattle fremontsummersolsticeparade"}, {"datetaken": "2005-06-18 12:12:41", "license": "1", "title": "DSCN9504", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/15/20122997_4419e21eac_o.jpg", "secret": "4419e21eac", "media": "photo", "latitude": "47.651397", "id": "20122997", "tags": "seattle fremontsummersolsticeparade"}, {"datetaken": "2005-06-18 12:13:24", "license": "1", "title": "DSCN9506", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/14/20123157_81efe8273b_o.jpg", "secret": "81efe8273b", "media": "photo", "latitude": "47.651397", "id": "20123157", "tags": "seattle fremontsummersolsticeparade"}, {"datetaken": "2005-06-18 12:17:07", "license": "1", "title": "DSCN9517", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/16/20123746_61a8367402_o.jpg", "secret": "61a8367402", "media": "photo", "latitude": "47.651397", "id": "20123746", "tags": "seattle fremontsummersolsticeparade"}, {"datetaken": "2005-06-18 12:17:51", "license": "1", "title": "DSCN9520", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/14/20123948_49d112c67a_o.jpg", "secret": "49d112c67a", "media": "photo", "latitude": "47.651397", "id": "20123948", "tags": "seattle fremontsummersolsticeparade adrianne"}, {"datetaken": "2005-06-18 12:18:36", "license": "1", "title": "DSCN9522", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/16/20124060_837d8c5d1a_o.jpg", "secret": "837d8c5d1a", "media": "photo", "latitude": "47.651397", "id": "20124060", "tags": "seattle fremontsummersolsticeparade"}, {"datetaken": "2005-06-18 12:23:27", "license": "1", "title": "DSCN9532", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/14/20124626_b2a734ac89_o.jpg", "secret": "b2a734ac89", "media": "photo", "latitude": "47.651397", "id": "20124626", "tags": "seattle fremontsummersolsticeparade"}, {"datetaken": "2005-06-18 12:27:18", "license": "1", "title": "DSCN9546", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/14/20125617_7fd2c36101_o.jpg", "secret": "7fd2c36101", "media": "photo", "latitude": "47.651397", "id": "20125617", "tags": "seattle fremontsummersolsticeparade"}, {"datetaken": "2005-06-18 12:28:59", "license": "1", "title": "DSCN9553", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/15/20126121_774a4ab2b7_o.jpg", "secret": "774a4ab2b7", "media": "photo", "latitude": "47.651397", "id": "20126121", "tags": "seattle fremontsummersolsticeparade"}, {"datetaken": "2005-06-18 12:29:28", "license": "1", "title": "DSCN9555", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/14/20126278_ca44952374_o.jpg", "secret": "ca44952374", "media": "photo", "latitude": "47.651397", "id": "20126278", "tags": "seattle fremontsummersolsticeparade"}, {"datetaken": "2005-06-18 12:32:03", "license": "1", "title": "DSCN9561", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/17/20126613_1f05e743e1_o.jpg", "secret": "1f05e743e1", "media": "photo", "latitude": "47.651397", "id": "20126613", "tags": "seattle fremontsummersolsticeparade"}, {"datetaken": "2005-06-18 12:46:56", "license": "1", "title": "DSCN9586", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/16/20128935_4305e39e57_o.jpg", "secret": "4305e39e57", "media": "photo", "latitude": "47.651397", "id": "20128935", "tags": "seattle fremontsummersolsticeparade car amber"}, {"datetaken": "2005-06-18 13:13:45", "license": "1", "title": "DSCN9608", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/16/20130756_ce353eca22_o.jpg", "secret": "ce353eca22", "media": "photo", "latitude": "47.651397", "id": "20130756", "tags": "seattle fremontsummersolsticeparade joshua amber"}, {"datetaken": "2005-06-18 13:23:14", "license": "1", "title": "DSCN9612", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/16/20131042_f59a7c91c0_o.jpg", "secret": "f59a7c91c0", "media": "photo", "latitude": "47.651397", "id": "20131042", "tags": "seattle fremontsummersolsticeparade shoe facepainter"}, {"datetaken": "2005-06-18 13:59:59", "license": "1", "title": "DSCN9616", "text": "", "album_id": "489485", "longitude": "-122.353792", "url_o": "https://farm1.staticflickr.com/17/20131353_01f204540c_o.jpg", "secret": "01f204540c", "media": "photo", "latitude": "47.651397", "id": "20131353", "tags": "seattle fremontsummersolsticeparade icecream spongebob adrianne"}, {"datetaken": "2002-12-07 11:32:27", "license": "3", "title": "DSCF0169", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/6/9953693_82f9106b60_o.jpg", "secret": "82f9106b60", "media": "photo", "latitude": "51.507967", "id": "9953693", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 11:32:38", "license": "3", "title": "DSCF0170", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/7/9953732_65e7b21dc4_o.jpg", "secret": "65e7b21dc4", "media": "photo", "latitude": "51.507967", "id": "9953732", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 11:51:45", "license": "3", "title": "DSCF0176", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/5/9953757_def8b10018_o.jpg", "secret": "def8b10018", "media": "photo", "latitude": "51.507967", "id": "9953757", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 11:52:17", "license": "3", "title": "DSCF0177", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/7/9953790_0550247155_o.jpg", "secret": "0550247155", "media": "photo", "latitude": "51.507967", "id": "9953790", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 11:52:41", "license": "3", "title": "DSCF0178", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/5/9953815_5f62cae91d_o.jpg", "secret": "5f62cae91d", "media": "photo", "latitude": "51.507967", "id": "9953815", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 12:24:35", "license": "3", "title": "DSCF0181", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/8/9953837_67c78024f4_o.jpg", "secret": "67c78024f4", "media": "photo", "latitude": "51.507967", "id": "9953837", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 12:25:26", "license": "3", "title": "DSCF0182", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/8/9953857_b7a6bc9406_o.jpg", "secret": "b7a6bc9406", "media": "photo", "latitude": "51.507967", "id": "9953857", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 12:26:11", "license": "3", "title": "DSCF0183", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/6/9953870_83c0b64820_o.jpg", "secret": "83c0b64820", "media": "photo", "latitude": "51.507967", "id": "9953870", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 12:26:28", "license": "3", "title": "DSCF0184", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/6/9953878_7733224dec_o.jpg", "secret": "7733224dec", "media": "photo", "latitude": "51.507967", "id": "9953878", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 12:27:06", "license": "3", "title": "DSCF0185", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/8/9953898_19f3d22c6a_o.jpg", "secret": "19f3d22c6a", "media": "photo", "latitude": "51.507967", "id": "9953898", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 12:28:39", "license": "3", "title": "DSCF0186", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/6/9953911_4300f07501_o.jpg", "secret": "4300f07501", "media": "photo", "latitude": "51.507967", "id": "9953911", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 12:34:41", "license": "3", "title": "DSCF0187", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/7/9953932_cedcababd7_o.jpg", "secret": "cedcababd7", "media": "photo", "latitude": "51.507967", "id": "9953932", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 12:52:44", "license": "3", "title": "DSCF0189", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/7/9953949_f48b2ad784_o.jpg", "secret": "f48b2ad784", "media": "photo", "latitude": "51.507967", "id": "9953949", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 12:52:52", "license": "3", "title": "DSCF0190", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/8/9953973_45cdd96ccf_o.jpg", "secret": "45cdd96ccf", "media": "photo", "latitude": "51.507967", "id": "9953973", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:19:22", "license": "3", "title": "DSCF0191", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/8/9954002_6b53dc49f2_o.jpg", "secret": "6b53dc49f2", "media": "photo", "latitude": "51.507967", "id": "9954002", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:20:01", "license": "3", "title": "DSCF0192", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/7/9954031_76197cc0b1_o.jpg", "secret": "76197cc0b1", "media": "photo", "latitude": "51.507967", "id": "9954031", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:20:36", "license": "3", "title": "DSCF0193", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/5/9954097_3d788a509b_o.jpg", "secret": "3d788a509b", "media": "photo", "latitude": "51.507967", "id": "9954097", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:20:56", "license": "3", "title": "DSCF0194", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/6/9954133_a06e960ea8_o.jpg", "secret": "a06e960ea8", "media": "photo", "latitude": "51.507967", "id": "9954133", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:28:45", "license": "3", "title": "DSCF0195", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/7/9954158_67de211102_o.jpg", "secret": "67de211102", "media": "photo", "latitude": "51.507967", "id": "9954158", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:38:02", "license": "3", "title": "DSCF0196", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/6/9954187_40ec3611c3_o.jpg", "secret": "40ec3611c3", "media": "photo", "latitude": "51.507967", "id": "9954187", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:39:11", "license": "3", "title": "DSCF0197", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/7/9954225_b5d7dc5162_o.jpg", "secret": "b5d7dc5162", "media": "photo", "latitude": "51.507967", "id": "9954225", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:39:25", "license": "3", "title": "DSCF0198", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/8/9954251_d58b5e4bc2_o.jpg", "secret": "d58b5e4bc2", "media": "photo", "latitude": "51.507967", "id": "9954251", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:39:43", "license": "3", "title": "DSCF0199", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/7/9954286_39ca6c320d_o.jpg", "secret": "39ca6c320d", "media": "photo", "latitude": "51.507967", "id": "9954286", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:42:54", "license": "3", "title": "DSCF0200", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/5/9954329_6deddd14b5_o.jpg", "secret": "6deddd14b5", "media": "photo", "latitude": "51.507967", "id": "9954329", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:43:06", "license": "3", "title": "DSCF0201", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/7/9954365_7789b33faf_o.jpg", "secret": "7789b33faf", "media": "photo", "latitude": "51.507967", "id": "9954365", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:43:13", "license": "3", "title": "DSCF0202", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/5/9954399_2b24450e37_o.jpg", "secret": "2b24450e37", "media": "photo", "latitude": "51.507967", "id": "9954399", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:54:13", "license": "3", "title": "DSCF0204", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/6/9954443_7c09e9d8fd_o.jpg", "secret": "7c09e9d8fd", "media": "photo", "latitude": "51.507967", "id": "9954443", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:54:46", "license": "3", "title": "DSCF0205", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/8/9954479_d65b6b9f83_o.jpg", "secret": "d65b6b9f83", "media": "photo", "latitude": "51.507967", "id": "9954479", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:55:57", "license": "3", "title": "DSCF0206", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/8/9954507_bb75b36ced_o.jpg", "secret": "bb75b36ced", "media": "photo", "latitude": "51.507967", "id": "9954507", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:56:11", "license": "3", "title": "DSCF0207", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/8/9954533_84e45ba68e_o.jpg", "secret": "84e45ba68e", "media": "photo", "latitude": "51.507967", "id": "9954533", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:56:49", "license": "3", "title": "DSCF0208", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/7/9954567_4c1ce8afba_o.jpg", "secret": "4c1ce8afba", "media": "photo", "latitude": "51.507967", "id": "9954567", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:57:02", "license": "3", "title": "DSCF0209", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/7/9954586_33109f2d95_o.jpg", "secret": "33109f2d95", "media": "photo", "latitude": "51.507967", "id": "9954586", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 13:59:05", "license": "3", "title": "DSCF0210", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/5/9954625_7dbef1ef75_o.jpg", "secret": "7dbef1ef75", "media": "photo", "latitude": "51.507967", "id": "9954625", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 14:05:15", "license": "3", "title": "DSCF0211", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/7/9954683_80ca27ddae_o.jpg", "secret": "80ca27ddae", "media": "photo", "latitude": "51.507967", "id": "9954683", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 14:07:23", "license": "3", "title": "DSCF0213", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/5/9954698_95b46a9070_o.jpg", "secret": "95b46a9070", "media": "photo", "latitude": "51.507967", "id": "9954698", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 14:07:49", "license": "3", "title": "DSCF0214", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/7/9954720_fb8332d604_o.jpg", "secret": "fb8332d604", "media": "photo", "latitude": "51.507967", "id": "9954720", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 14:08:14", "license": "3", "title": "DSCF0215", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/7/9954742_4573baa961_o.jpg", "secret": "4573baa961", "media": "photo", "latitude": "51.507967", "id": "9954742", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 14:08:35", "license": "3", "title": "DSCF0216", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/7/9954768_4469d7b503_o.jpg", "secret": "4469d7b503", "media": "photo", "latitude": "51.507967", "id": "9954768", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 14:08:48", "license": "3", "title": "DSCF0217", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/8/9954779_21f8a77344_o.jpg", "secret": "21f8a77344", "media": "photo", "latitude": "51.507967", "id": "9954779", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 14:10:44", "license": "3", "title": "DSCF0219", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/6/9954806_fb996e9eb2_o.jpg", "secret": "fb996e9eb2", "media": "photo", "latitude": "51.507967", "id": "9954806", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 14:31:53", "license": "3", "title": "DSCF0220", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/8/9954833_38bb4444b3_o.jpg", "secret": "38bb4444b3", "media": "photo", "latitude": "51.507967", "id": "9954833", "tags": "worldcup parade london england"}, {"datetaken": "2002-12-07 14:33:36", "license": "3", "title": "DSCF0221", "text": "", "album_id": "245967", "longitude": "-0.128016", "url_o": "https://farm1.staticflickr.com/8/9954863_bd93ecccc3_o.jpg", "secret": "bd93ecccc3", "media": "photo", "latitude": "51.507967", "id": "9954863", "tags": "worldcup parade london england"}, {"datetaken": "2007-01-20 14:58:13", "license": "3", "title": "wanna be a football hero", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/364832283_6ec097fede_o.jpg", "secret": "6ec097fede", "media": "photo", "latitude": "0", "id": "364832283", "tags": "blue orange fiesta parade idaho fans cheer broncos bsu boisestate threeholepunch andrewhahn"}, {"datetaken": "2007-01-20 14:58:44", "license": "3", "title": "shade from our heros' luminance", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/364832278_3154f2b09a_o.jpg", "secret": "3154f2b09a", "media": "photo", "latitude": "0", "id": "364832278", "tags": "blue orange fiesta parade idaho fans cheer broncos bsu boisestate threeholepunch andrewhahn"}, {"datetaken": "2007-01-20 14:59:04", "license": "3", "title": "STAAAAATE", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/365609152_ab27dbe0bc_o.jpg", "secret": "ab27dbe0bc", "media": "photo", "latitude": "0", "id": "365609152", "tags": "blue orange parade idaho boise broncos bsu fiestabowl flickrdoesntagreewithreallylongwordsorphrasessometimesrefridgerator andrewhahn"}, {"datetaken": "2007-01-20 14:59:26", "license": "3", "title": "stupid street lights", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/364832276_e4d553dfe8_o.jpg", "secret": "e4d553dfe8", "media": "photo", "latitude": "0", "id": "364832276", "tags": "blue orange fiesta parade idaho fans cheer broncos bsu boisestate threeholepunch andrewhahn"}, {"datetaken": "2007-01-20 15:01:55", "license": "3", "title": "Unused entry way", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/120/364832268_66d645e56c_o.jpg", "secret": "66d645e56c", "media": "photo", "latitude": "0", "id": "364832268", "tags": "blue orange fiesta parade idaho fans cheer broncos bsu boisestate threeholepunch andrewhahn"}, {"datetaken": "2007-01-20 15:06:11", "license": "3", "title": "take_off_every_zig", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/365609150_64ca430ed9_o.jpg", "secret": "64ca430ed9", "media": "photo", "latitude": "0", "id": "365609150", "tags": "blue orange parade idaho boise broncos bsu fiestabowl flickrdoesntagreewithreallylongwordsorphrasessometimesrefridgerator andrewhahn"}, {"datetaken": "2007-01-20 15:08:05", "license": "3", "title": "icanfeelthesunonmyteeth", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/122/365595712_c534da6513_o.jpg", "secret": "c534da6513", "media": "photo", "latitude": "0", "id": "365595712", "tags": "blue orange parade idaho boise broncos bsu fiestabowl eatingawholepieonehanded andrewhahn"}, {"datetaken": "2007-01-20 15:08:24", "license": "3", "title": "freedom", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/365595706_677233eaee_o.jpg", "secret": "677233eaee", "media": "photo", "latitude": "0", "id": "365595706", "tags": "blue orange parade idaho boise broncos bsu fiestabowl eatingawholepieonehanded andrewhahn"}, {"datetaken": "2007-01-20 15:15:04", "license": "3", "title": "cheer regardless", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/364832270_db8699c1c7_o.jpg", "secret": "db8699c1c7", "media": "photo", "latitude": "0", "id": "364832270", "tags": "blue orange fiesta parade idaho fans cheer broncos bsu boisestate threeholepunch andrewhahn"}, {"datetaken": "2007-01-20 15:22:06", "license": "3", "title": "allthatglitters", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/365595695_e6087463d9_o.jpg", "secret": "e6087463d9", "media": "photo", "latitude": "0", "id": "365595695", "tags": "blue orange parade idaho boise broncos bsu fiestabowl eatingawholepieonehanded andrewhahn"}, {"datetaken": "2007-01-20 15:22:18", "license": "3", "title": "rouge_streamer", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/108/365601081_55be6c9f03_o.jpg", "secret": "55be6c9f03", "media": "photo", "latitude": "0", "id": "365601081", "tags": "blue orange parade idaho boise broncos bsu fiestabowl ihaventhuggedsomeoneformorethan5secondsintoolong andrewhahn"}, {"datetaken": "2007-01-20 15:22:22", "license": "3", "title": "lookupinthesky", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/365601072_939a26ef6e_o.jpg", "secret": "939a26ef6e", "media": "photo", "latitude": "0", "id": "365601072", "tags": "blue orange parade idaho boise broncos bsu fiestabowl ihaventhuggedsomeoneformorethan5secondsintoolong andrewhahn"}, {"datetaken": "2007-01-20 15:22:26", "license": "3", "title": "streamerattack", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/365609156_0ca72f3e80_o.jpg", "secret": "0ca72f3e80", "media": "photo", "latitude": "0", "id": "365609156", "tags": "blue orange parade idaho boise broncos bsu fiestabowl flickrdoesntagreewithreallylongwordsorphrasessometimesrefridgerator andrewhahn"}, {"datetaken": "2007-01-20 15:23:04", "license": "3", "title": "drseussgotnothingonme", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/365595702_85aeee10dc_o.jpg", "secret": "85aeee10dc", "media": "photo", "latitude": "0", "id": "365595702", "tags": "blue orange parade idaho boise broncos bsu fiestabowl eatingawholepieonehanded andrewhahn"}, {"datetaken": "2007-01-20 15:23:50", "license": "3", "title": "pleasedontsteponmytentacles", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/122/365601077_6f46787d48_o.jpg", "secret": "6f46787d48", "media": "photo", "latitude": "0", "id": "365601077", "tags": "blue orange parade idaho boise broncos bsu fiestabowl ihaventhuggedsomeoneformorethan5secondsintoolong andrewhahn"}, {"datetaken": "2007-01-20 15:27:48", "license": "3", "title": "lovethecamera", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/114/365601074_023fada979_o.jpg", "secret": "023fada979", "media": "photo", "latitude": "0", "id": "365601074", "tags": "blue orange parade idaho boise broncos bsu fiestabowl ihaventhuggedsomeoneformorethan5secondsintoolong andrewhahn"}, {"datetaken": "2007-01-20 15:31:39", "license": "3", "title": "viewingatapremium", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/365609145_0f2a3f7a7e_o.jpg", "secret": "0f2a3f7a7e", "media": "photo", "latitude": "0", "id": "365609145", "tags": "blue orange parade idaho boise broncos bsu fiestabowl flickrdoesntagreewithreallylongwordsorphrasessometimesrefridgerator andrewhahn"}, {"datetaken": "2007-01-20 15:36:46", "license": "3", "title": "quitethelooker", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/365601078_60eda481f3_o.jpg", "secret": "60eda481f3", "media": "photo", "latitude": "0", "id": "365601078", "tags": "blue orange parade idaho boise broncos bsu fiestabowl ihaventhuggedsomeoneformorethan5secondsintoolong andrewhahn"}, {"datetaken": "2007-01-20 15:39:23", "license": "3", "title": "chrome dome", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/364832274_50888f3a3e_o.jpg", "secret": "50888f3a3e", "media": "photo", "latitude": "0", "id": "364832274", "tags": "blue orange fiesta parade idaho fans cheer broncos bsu boisestate threeholepunch andrewhahn"}, {"datetaken": "2007-01-20 15:39:23", "license": "3", "title": "zing", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/365609142_81927bc238_o.jpg", "secret": "81927bc238", "media": "photo", "latitude": "0", "id": "365609142", "tags": "blue orange parade idaho boise broncos bsu fiestabowl flickrdoesntagreewithreallylongwordsorphrasessometimesrefridgerator andrewhahn"}, {"datetaken": "2007-01-20 15:41:57", "license": "3", "title": "somanyflagssolittlecorrugatedpipe", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/117/365601083_3c6fe893e1_o.jpg", "secret": "3c6fe893e1", "media": "photo", "latitude": "0", "id": "365601083", "tags": "blue orange parade idaho boise broncos bsu fiestabowl ihaventhuggedsomeoneformorethan5secondsintoolong andrewhahn"}, {"datetaken": "2007-01-20 15:49:24", "license": "3", "title": "howmanytimeshasthathelmutsavedyourlife", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/365595707_acc000275d_o.jpg", "secret": "acc000275d", "media": "photo", "latitude": "0", "id": "365595707", "tags": "blue orange parade idaho boise broncos bsu fiestabowl eatingawholepieonehanded andrewhahn"}, {"datetaken": "2007-01-20 15:52:58", "license": "3", "title": "UNDERDRESSED", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/365609148_e41cee5b4d_o.jpg", "secret": "e41cee5b4d", "media": "photo", "latitude": "0", "id": "365609148", "tags": "blue orange parade idaho boise broncos bsu fiestabowl flickrdoesntagreewithreallylongwordsorphrasessometimesrefridgerator andrewhahn"}, {"datetaken": "2007-01-20 15:58:24", "license": "3", "title": "istheworldinclipmode", "text": "", "album_id": "72157594492208302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/365595714_dd3560e7d5_o.jpg", "secret": "dd3560e7d5", "media": "photo", "latitude": "0", "id": "365595714", "tags": "blue orange parade idaho boise broncos bsu fiestabowl eatingawholepieonehanded andrewhahn"}, {"datetaken": "2006-02-11 16:45:35", "license": "1", "title": "Coit Tower", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1387/1068063621_d25f0787f4_o.jpg", "secret": "5aef83c68c", "media": "photo", "latitude": "0", "id": "1068063621", "tags": ""}, {"datetaken": "2006-02-11 18:22:32", "license": "1", "title": "P1010070", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1254/1068064017_d68c8fc586_o.jpg", "secret": "1c8b75c6d3", "media": "photo", "latitude": "0", "id": "1068064017", "tags": ""}, {"datetaken": "2006-02-11 18:24:11", "license": "1", "title": "P1010072", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1201/1068069017_1315d7584b_o.jpg", "secret": "56bfc368b8", "media": "photo", "latitude": "0", "id": "1068069017", "tags": ""}, {"datetaken": "2006-02-11 18:24:49", "license": "1", "title": "SF Chinese New Year Parade", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1300/1068064469_48464bccd8_o.jpg", "secret": "d3bfb9c0c8", "media": "photo", "latitude": "0", "id": "1068064469", "tags": ""}, {"datetaken": "2006-02-11 18:31:22", "license": "1", "title": "P1010075", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1356/1068065135_f15c46b07a_o.jpg", "secret": "0728b92587", "media": "photo", "latitude": "0", "id": "1068065135", "tags": ""}, {"datetaken": "2006-02-11 18:52:13", "license": "1", "title": "P1010079", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1274/1068932162_9607240599_o.jpg", "secret": "0ef2428a9b", "media": "photo", "latitude": "0", "id": "1068932162", "tags": ""}, {"datetaken": "2006-02-11 19:08:08", "license": "1", "title": "P1010080", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1186/1068928990_3219fbe389_o.jpg", "secret": "da49da970b", "media": "photo", "latitude": "0", "id": "1068928990", "tags": ""}, {"datetaken": "2006-02-11 19:33:26", "license": "1", "title": "P1010082", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1003/1068065807_ee9054c8b8_o.jpg", "secret": "1744a1cdb3", "media": "photo", "latitude": "0", "id": "1068065807", "tags": ""}, {"datetaken": "2006-02-11 19:42:49", "license": "1", "title": "The Year OF The Dog", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1329/1068929922_4848932f99_o.jpg", "secret": "067e301b2d", "media": "photo", "latitude": "0", "id": "1068929922", "tags": ""}, {"datetaken": "2006-02-11 19:47:26", "license": "1", "title": "P1010088", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1105/1068930356_81393faa13_o.jpg", "secret": "01834bc684", "media": "photo", "latitude": "0", "id": "1068930356", "tags": ""}, {"datetaken": "2006-02-11 19:50:44", "license": "1", "title": "P1010089", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1108/1068069499_ea743410dd_o.jpg", "secret": "4d15cdcaa8", "media": "photo", "latitude": "0", "id": "1068069499", "tags": ""}, {"datetaken": "2006-02-11 19:55:41", "license": "1", "title": "P1010090", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1216/1068933704_602a2a4782_o.jpg", "secret": "21e2fbb30d", "media": "photo", "latitude": "0", "id": "1068933704", "tags": ""}, {"datetaken": "2006-02-11 20:22:58", "license": "1", "title": "P1010093", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1320/1068934196_3c26aca532_o.jpg", "secret": "d38366a25f", "media": "photo", "latitude": "0", "id": "1068934196", "tags": ""}, {"datetaken": "2006-02-11 20:27:48", "license": "1", "title": "Chinese New Year Parade", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/113/364886489_c928b9e17f_o.jpg", "secret": "c928b9e17f", "media": "photo", "latitude": "0", "id": "364886489", "tags": "sanfrancisco chinatown chinesenewyear nightparade"}, {"datetaken": "2006-02-11 20:36:02", "license": "1", "title": "P1010099", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1364/1068070901_3649712a81_o.jpg", "secret": "0b5135668a", "media": "photo", "latitude": "0", "id": "1068070901", "tags": ""}, {"datetaken": "2006-02-11 20:36:13", "license": "1", "title": "P1010100", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1213/1068071299_05c068e6ea_o.jpg", "secret": "125129cf13", "media": "photo", "latitude": "0", "id": "1068071299", "tags": ""}, {"datetaken": "2006-02-11 20:36:54", "license": "1", "title": "Lotus Beauties", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1042/1068935392_588ca455af_o.jpg", "secret": "351e42784a", "media": "photo", "latitude": "0", "id": "1068935392", "tags": ""}, {"datetaken": "2006-02-11 20:37:23", "license": "1", "title": "P1010102", "text": "", "album_id": "72157601341863571", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1033/1068931572_4271a66d50_o.jpg", "secret": "c290e2aff8", "media": "photo", "latitude": "0", "id": "1068931572", "tags": ""}, {"datetaken": "2005-05-17 15:41:35", "license": "3", "title": "Stars and Motorcars Parade", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16180499_7c7b017270_o.jpg", "secret": "7c7b017270", "media": "photo", "latitude": "0", "id": "16180499", "tags": "wdw disney disneyworld mgm parade motorcars"}, {"datetaken": "2005-05-17 15:42:03", "license": "3", "title": "Start of Parade", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16180590_71f1599baf_o.jpg", "secret": "71f1599baf", "media": "photo", "latitude": "0", "id": "16180590", "tags": "wdw disney disneyworld mgm parade motorcars"}, {"datetaken": "2005-05-17 15:42:22", "license": "3", "title": "Toy Story characters", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16180659_ebad817437_o.jpg", "secret": "ebad817437", "media": "photo", "latitude": "0", "id": "16180659", "tags": "wdw disney disneyworld mgm parade motorcars toystory"}, {"datetaken": "2005-05-17 15:42:39", "license": "3", "title": "Green Army Men", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16180717_80bf1c2e3e_o.jpg", "secret": "80bf1c2e3e", "media": "photo", "latitude": "0", "id": "16180717", "tags": "wdw disney disneyworld mgm parade motorcars"}, {"datetaken": "2005-05-17 15:42:56", "license": "3", "title": "Toy Story Stars", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16180770_74ca47fa9e_o.jpg", "secret": "74ca47fa9e", "media": "photo", "latitude": "0", "id": "16180770", "tags": "wdw disney disneyworld mgm parade motorcars toystory"}, {"datetaken": "2005-05-17 15:43:24", "license": "3", "title": "Mary Poppin's Penguins", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16180799_96d35d4717_o.jpg", "secret": "96d35d4717", "media": "photo", "latitude": "0", "id": "16180799", "tags": "wdw disney disneyworld mgm parade motorcars"}, {"datetaken": "2005-05-17 15:43:37", "license": "3", "title": "Mary Poppins", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16180858_931fdbd8bb_o.jpg", "secret": "931fdbd8bb", "media": "photo", "latitude": "0", "id": "16180858", "tags": "wdw disney disneyworld mgm parade motorcars"}, {"datetaken": "2005-05-17 15:43:56", "license": "3", "title": "Sweetums", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16275622_c81d1cce9e_o.jpg", "secret": "c81d1cce9e", "media": "photo", "latitude": "0", "id": "16275622", "tags": "wdw disney disneyworld mgm parade motorcars muppets sweetums"}, {"datetaken": "2005-05-17 15:44:25", "license": "3", "title": "The Muppets Car", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16180952_0538c1c2b2_o.jpg", "secret": "0538c1c2b2", "media": "photo", "latitude": "0", "id": "16180952", "tags": "wdw disney disneyworld mgm parade motorcars muppets"}, {"datetaken": "2005-05-17 15:44:39", "license": "3", "title": "R2-D2", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16181007_fc43cb36ef_o.jpg", "secret": "fc43cb36ef", "media": "photo", "latitude": "0", "id": "16181007", "tags": "disney parade disneyworld wdw mgm motorcars r2s5"}, {"datetaken": "2005-05-17 15:44:55", "license": "3", "title": "Miss Piggy", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16181050_39622c789e_o.jpg", "secret": "39622c789e", "media": "photo", "latitude": "0", "id": "16181050", "tags": "wdw disney disneyworld mgm parade motorcars muppets"}, {"datetaken": "2005-05-17 15:45:06", "license": "3", "title": "R2-D2", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16181087_dd7c53b855_o.jpg", "secret": "dd7c53b855", "media": "photo", "latitude": "0", "id": "16181087", "tags": "wdw disney disneyworld mgm parade motorcars"}, {"datetaken": "2005-05-17 15:45:18", "license": "3", "title": "Star Wars Car", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16181122_94510d1db5_o.jpg", "secret": "94510d1db5", "media": "photo", "latitude": "0", "id": "16181122", "tags": "wdw disney disneyworld mgm parade motorcars starwars"}, {"datetaken": "2005-05-17 15:45:43", "license": "3", "title": "Star Wars", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16181156_397fe6f5ee_o.jpg", "secret": "397fe6f5ee", "media": "photo", "latitude": "0", "id": "16181156", "tags": "wdw disney disneyworld mgm parade motorcars"}, {"datetaken": "2005-05-17 15:45:52", "license": "3", "title": "Darth Vader", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16181206_a9ffd0c498_o.jpg", "secret": "a9ffd0c498", "media": "photo", "latitude": "0", "id": "16181206", "tags": "wdw disney disneyworld mgm parade motorcars darthvader"}, {"datetaken": "2005-05-17 15:46:06", "license": "3", "title": "Mulan", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16181283_4fd29a3725_o.jpg", "secret": "4fd29a3725", "media": "photo", "latitude": "0", "id": "16181283", "tags": "wdw disney disneyworld mgm parade motorcars mulan"}, {"datetaken": "2005-05-17 15:46:19", "license": "3", "title": "Mulan and Mushu", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16181347_021c83bee8_o.jpg", "secret": "021c83bee8", "media": "photo", "latitude": "0", "id": "16181347", "tags": "wdw disney disneyworld mgm parade motorcars mulan mushu"}, {"datetaken": "2005-05-17 15:46:30", "license": "3", "title": "Mushu", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16181391_02b2ee8346_o.jpg", "secret": "02b2ee8346", "media": "photo", "latitude": "0", "id": "16181391", "tags": "wdw disney disneyworld mgm parade motorcars mushu"}, {"datetaken": "2005-05-17 15:46:44", "license": "3", "title": "Monsters, Inc.", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16181476_3c92cf3e92_o.jpg", "secret": "3c92cf3e92", "media": "photo", "latitude": "0", "id": "16181476", "tags": "wdw disney disneyworld mgm parade motorcars monstersinc"}, {"datetaken": "2005-05-17 15:47:12", "license": "3", "title": "Arabian Dancers", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16181557_df72df2775_o.jpg", "secret": "df72df2775", "media": "photo", "latitude": "0", "id": "16181557", "tags": "wdw disney disneyworld mgm parade motorcars"}, {"datetaken": "2005-05-17 15:47:29", "license": "3", "title": "Arabian Dancers strike a pose", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16181620_b195624830_o.jpg", "secret": "b195624830", "media": "photo", "latitude": "0", "id": "16181620", "tags": "wdw disney disneyworld mgm parade motorcars"}, {"datetaken": "2005-05-17 15:47:42", "license": "3", "title": "Alladin and Jasmine", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16181705_2a2ca3a2bc_o.jpg", "secret": "2a2ca3a2bc", "media": "photo", "latitude": "0", "id": "16181705", "tags": "wdw disney disneyworld mgm parade motorcars alladin"}, {"datetaken": "2005-05-17 15:47:58", "license": "3", "title": "The Villains", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16181772_edd4ef8ab6_o.jpg", "secret": "edd4ef8ab6", "media": "photo", "latitude": "0", "id": "16181772", "tags": "wdw disney disneyworld mgm parade motorcars disneyvillains cruella"}, {"datetaken": "2005-05-17 15:48:15", "license": "3", "title": "Alladin and Jasmine", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16181838_31f32a8976_o.jpg", "secret": "31f32a8976", "media": "photo", "latitude": "0", "id": "16181838", "tags": "wdw disney disneyworld mgm parade motorcars alladin"}, {"datetaken": "2005-05-17 15:48:26", "license": "3", "title": "Disney Villains", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16181880_f0b4c7eeaa_o.jpg", "secret": "f0b4c7eeaa", "media": "photo", "latitude": "0", "id": "16181880", "tags": "wdw disney disneyworld mgm parade motorcars"}, {"datetaken": "2005-05-17 15:48:44", "license": "3", "title": "The Evil Queen strikes a pose", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16181907_12b9a3a0cc_o.jpg", "secret": "12b9a3a0cc", "media": "photo", "latitude": "0", "id": "16181907", "tags": "wdw disney disneyworld mgm parade motorcars snowwhite disneyvillains"}, {"datetaken": "2005-05-17 15:49:14", "license": "3", "title": "Hades from Hercules", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16181952_6d040e8770_o.jpg", "secret": "6d040e8770", "media": "photo", "latitude": "0", "id": "16181952", "tags": "wdw disney disneyworld mgm parade motorcars hades"}, {"datetaken": "2005-05-17 15:49:25", "license": "3", "title": "Lilo and Stitch", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16181983_0340061b63_o.jpg", "secret": "0340061b63", "media": "photo", "latitude": "0", "id": "16181983", "tags": "wdw disney disneyworld mgm parade motorcars liloandstitch"}, {"datetaken": "2005-05-17 15:49:36", "license": "3", "title": "Lilo and Stitch", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16182019_59bd17a07a_o.jpg", "secret": "59bd17a07a", "media": "photo", "latitude": "0", "id": "16182019", "tags": "wdw disney disneyworld mgm parade motorcars liloandstitch"}, {"datetaken": "2005-05-17 15:49:50", "license": "3", "title": "Fish Dancers", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16182078_3336a04544_o.jpg", "secret": "3336a04544", "media": "photo", "latitude": "0", "id": "16182078", "tags": "wdw disney disneyworld mgm parade motorcars"}, {"datetaken": "2005-05-17 15:50:07", "license": "3", "title": "The Little Mermaid", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16182140_3ea134f614_o.jpg", "secret": "3ea134f614", "media": "photo", "latitude": "0", "id": "16182140", "tags": "wdw disney disneyworld mgm parade motorcars littlemermaid ariel"}, {"datetaken": "2005-05-17 15:50:34", "license": "3", "title": "Ariel and Flounder", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16182203_41b4288802_o.jpg", "secret": "41b4288802", "media": "photo", "latitude": "0", "id": "16182203", "tags": "wdw disney disneyworld mgm parade motorcars littlemermaid ariel"}, {"datetaken": "2005-05-17 15:50:44", "license": "3", "title": "The Little Mermaid", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16182258_a90096eb57_o.jpg", "secret": "a90096eb57", "media": "photo", "latitude": "0", "id": "16182258", "tags": "wdw disney disneyworld mgm parade motorcars littlemermaid ariel"}, {"datetaken": "2005-05-17 15:50:55", "license": "3", "title": "Power Rangers", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16182316_549c300bea_o.jpg", "secret": "549c300bea", "media": "photo", "latitude": "0", "id": "16182316", "tags": "wdw disney disneyworld mgm parade motorcars powerrangers"}, {"datetaken": "2005-05-17 15:51:38", "license": "3", "title": "Big Brown Bear", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16182359_7cc0b4ca7f_o.jpg", "secret": "7cc0b4ca7f", "media": "photo", "latitude": "0", "id": "16182359", "tags": "wdw disney disneyworld mgm parade motorcars"}, {"datetaken": "2005-05-17 15:52:36", "license": "3", "title": "Snow White", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16182434_2a279322f0_o.jpg", "secret": "2a279322f0", "media": "photo", "latitude": "0", "id": "16182434", "tags": "wdw disney disneyworld mgm parade motorcars"}, {"datetaken": "2005-05-17 15:52:58", "license": "3", "title": "Chip and Dale & Alice and White Rabbit", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16182515_66477f8569_o.jpg", "secret": "66477f8569", "media": "photo", "latitude": "0", "id": "16182515", "tags": "disney parade disneyworld wdw mgm aliceinwonderland whiterabbit chipanddale motorcars"}, {"datetaken": "2005-05-17 15:53:27", "license": "3", "title": "Mickey, Minnie, Donald and Goofy", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16182629_345c588bf9_o.jpg", "secret": "345c588bf9", "media": "photo", "latitude": "0", "id": "16182629", "tags": "goofy disney mickey parade disneyworld minniemouse wdw mgm donaldduck motorcars"}, {"datetaken": "2005-05-17 15:53:40", "license": "3", "title": "Mickey and Minnie", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16182709_71ff515abc_o.jpg", "secret": "71ff515abc", "media": "photo", "latitude": "0", "id": "16182709", "tags": "goofy disney mickey parade disneyworld minniemouse wdw mgm donaldduck motorcars"}, {"datetaken": "2005-05-17 15:53:52", "license": "3", "title": "Mickey and Minnie", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16182765_0f92e56382_o.jpg", "secret": "0f92e56382", "media": "photo", "latitude": "0", "id": "16182765", "tags": "goofy disney mickey parade disneyworld minniemouse wdw mgm donaldduck motorcars"}, {"datetaken": "2005-05-17 15:54:00", "license": "3", "title": "Mickey and Minnie", "text": "", "album_id": "388393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16182813_cb02d52f85_o.jpg", "secret": "cb02d52f85", "media": "photo", "latitude": "0", "id": "16182813", "tags": "wdw disney disneyworld mgm parade motorcars mickey goofy minniemouse"}, {"datetaken": "2004-10-31 19:00:00", "license": "3", "title": "Drag Cops", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182145_3e2e3772c9_o.jpg", "secret": "3e2e3772c9", "media": "photo", "latitude": "40.725189", "id": "1182145", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:01", "license": "3", "title": "Parade Watchers", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182149_6e39b3f440_o.jpg", "secret": "6e39b3f440", "media": "photo", "latitude": "40.725189", "id": "1182149", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:02", "license": "3", "title": "Gargoyle", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182152_642c0e5e5b_o.jpg", "secret": "642c0e5e5b", "media": "photo", "latitude": "40.725189", "id": "1182152", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:03", "license": "3", "title": "Secretary", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182156_0ab2dd1541_o.jpg", "secret": "0ab2dd1541", "media": "photo", "latitude": "40.725189", "id": "1182156", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:04", "license": "3", "title": "Lambchop", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182159_30df758542_o.jpg", "secret": "30df758542", "media": "photo", "latitude": "40.725189", "id": "1182159", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:05", "license": "3", "title": "MICHAEL!!!!!", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182162_00da2358fb_o.jpg", "secret": "00da2358fb", "media": "photo", "latitude": "40.725189", "id": "1182162", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:06", "license": "3", "title": "Britney and Kevin", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182167_2fa1d224c8_o.jpg", "secret": "2fa1d224c8", "media": "photo", "latitude": "40.725189", "id": "1182167", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:07", "license": "3", "title": "Brady Bunch", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182174_c1dd334ce7_o.jpg", "secret": "c1dd334ce7", "media": "photo", "latitude": "40.725189", "id": "1182174", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:08", "license": "3", "title": "Breakfast at Tiffany's", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182180_701106e4e7_o.jpg", "secret": "701106e4e7", "media": "photo", "latitude": "40.725189", "id": "1182180", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:09", "license": "3", "title": "Z-100 Float", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182183_8f8b058cb2_o.jpg", "secret": "8f8b058cb2", "media": "photo", "latitude": "40.725189", "id": "1182183", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:10", "license": "3", "title": "NYPD", "text": "", "album_id": "30323", "longitude": "-73.998273", "url_o": "https://farm1.staticflickr.com/1/1182188_4d72de4808_o.jpg", "secret": "4d72de4808", "media": "photo", "latitude": "40.730397", "id": "1182188", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:11", "license": "3", "title": "Albert", "text": "", "album_id": "30323", "longitude": "-73.999679", "url_o": "https://farm1.staticflickr.com/1/1182192_365627b3df_o.jpg", "secret": "365627b3df", "media": "photo", "latitude": "40.729795", "id": "1182192", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:12", "license": "3", "title": "NICE", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182196_d5b7ad38a7_o.jpg", "secret": "d5b7ad38a7", "media": "photo", "latitude": "40.725189", "id": "1182196", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:13", "license": "3", "title": "West Broadway", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182214_ea2f2d02f1_o.jpg", "secret": "ea2f2d02f1", "media": "photo", "latitude": "40.725189", "id": "1182214", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:14", "license": "3", "title": "Spanking Bush", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182224_7cf8f9d3c2_o.jpg", "secret": "7cf8f9d3c2", "media": "photo", "latitude": "40.725189", "id": "1182224", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:15", "license": "3", "title": "Vote Nader.", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182232_65926d58a7_o.jpg", "secret": "65926d58a7", "media": "photo", "latitude": "40.725189", "id": "1182232", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:16", "license": "3", "title": "Ecto-1", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182235_f1ba333182_o.jpg", "secret": "f1ba333182", "media": "photo", "latitude": "40.725189", "id": "1182235", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:17", "license": "3", "title": "Dallas Cowgirls", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182234_01ba684617_o.jpg", "secret": "01ba684617", "media": "photo", "latitude": "40.725189", "id": "1182234", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:18", "license": "3", "title": "Shiba-Inu", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182242_c720fdb0bd_o.jpg", "secret": "c720fdb0bd", "media": "photo", "latitude": "40.725189", "id": "1182242", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:19", "license": "3", "title": "Crows.", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182243_660205fdd6_o.jpg", "secret": "660205fdd6", "media": "photo", "latitude": "40.725189", "id": "1182243", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:20", "license": "3", "title": "Gorey", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182245_e4cf5417ee_o.jpg", "secret": "e4cf5417ee", "media": "photo", "latitude": "40.725189", "id": "1182245", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:21", "license": "3", "title": "Skeleton puppets", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182248_8ef3bebed3_o.jpg", "secret": "8ef3bebed3", "media": "photo", "latitude": "40.725189", "id": "1182248", "tags": "newyorkcity costumes halloween skeleton parade puppets halloween2004 halloweenparade greenwichvillage"}, {"datetaken": "2004-10-31 19:00:22", "license": "3", "title": "No Crow", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182238_f6c075350f_o.jpg", "secret": "f6c075350f", "media": "photo", "latitude": "40.725189", "id": "1182238", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:23", "license": "3", "title": "Blue Meanie", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182250_80943fe5ec_o.jpg", "secret": "80943fe5ec", "media": "photo", "latitude": "40.725189", "id": "1182250", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:24", "license": "3", "title": "Gingerbread", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182253_35ecc25552_o.jpg", "secret": "35ecc25552", "media": "photo", "latitude": "40.725189", "id": "1182253", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:25", "license": "3", "title": "Black Elvis", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182259_275c724bd3_o.jpg", "secret": "275c724bd3", "media": "photo", "latitude": "40.725189", "id": "1182259", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:26", "license": "3", "title": "Liberace.", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182261_34beb76f78_o.jpg", "secret": "34beb76f78", "media": "photo", "latitude": "40.725189", "id": "1182261", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:27", "license": "3", "title": "Candy Girl", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182266_b3888a0f33_o.jpg", "secret": "b3888a0f33", "media": "photo", "latitude": "40.725189", "id": "1182266", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:28", "license": "3", "title": "Ummmm.....Yeah", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182269_c4769c79f4_o.jpg", "secret": "c4769c79f4", "media": "photo", "latitude": "40.725189", "id": "1182269", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:29", "license": "3", "title": "Some Star Wars Dorks.", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182274_b25dcf7975_o.jpg", "secret": "b25dcf7975", "media": "photo", "latitude": "40.725189", "id": "1182274", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:30", "license": "3", "title": "Stepford \"Wives\"", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182275_1a5fa40f64_o.jpg", "secret": "1a5fa40f64", "media": "photo", "latitude": "40.725189", "id": "1182275", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:31", "license": "3", "title": "Kill Bill", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182277_749232dcae_o.jpg", "secret": "749232dcae", "media": "photo", "latitude": "40.725189", "id": "1182277", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:32", "license": "3", "title": "More cool costumes...", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182279_b17b981aea_o.jpg", "secret": "b17b981aea", "media": "photo", "latitude": "40.725189", "id": "1182279", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:33", "license": "3", "title": "Boyakasha!", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182283_bf0a384b31_o.jpg", "secret": "bf0a384b31", "media": "photo", "latitude": "40.725189", "id": "1182283", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:34", "license": "3", "title": "The Bushes", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182286_8847804591_o.jpg", "secret": "8847804591", "media": "photo", "latitude": "40.725189", "id": "1182286", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:35", "license": "3", "title": "Hooray for Starbucks!", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182287_930ee4dbe8_o.jpg", "secret": "930ee4dbe8", "media": "photo", "latitude": "40.725189", "id": "1182287", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:36", "license": "3", "title": "Evil", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182290_05d0ba3488_o.jpg", "secret": "05d0ba3488", "media": "photo", "latitude": "40.725189", "id": "1182290", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:37", "license": "3", "title": "Wha?!?!?!", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182299_a9b1689c9f_o.jpg", "secret": "a9b1689c9f", "media": "photo", "latitude": "40.725189", "id": "1182299", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:38", "license": "3", "title": "Candy Corn", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182302_f359b2fb51_o.jpg", "secret": "f359b2fb51", "media": "photo", "latitude": "40.725189", "id": "1182302", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:39", "license": "3", "title": "More hotness", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182303_dcf3366248_o.jpg", "secret": "dcf3366248", "media": "photo", "latitude": "40.725189", "id": "1182303", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:40", "license": "3", "title": "YES!!!!!", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182306_718f10f620_o.jpg", "secret": "718f10f620", "media": "photo", "latitude": "40.725189", "id": "1182306", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:41", "license": "3", "title": "Taxi Girls", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182309_8daac28ba2_o.jpg", "secret": "8daac28ba2", "media": "photo", "latitude": "40.725189", "id": "1182309", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-10-31 19:00:42", "license": "3", "title": "Carrie", "text": "", "album_id": "30323", "longitude": "-74.004249", "url_o": "https://farm1.staticflickr.com/1/1182282_0bbea145bb_o.jpg", "secret": "0bbea145bb", "media": "photo", "latitude": "40.725189", "id": "1182282", "tags": "halloween2004 halloween parade greenwichvillage halloweenparade costumes newyorkcity"}, {"datetaken": "2004-12-31 20:20:38", "license": "1", "title": "IMG_0771.JPG", "text": "", "album_id": "82746", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3297775_b81b1d353d_o.jpg", "secret": "b81b1d353d", "media": "photo", "latitude": "0", "id": "3297775", "tags": ""}, {"datetaken": "2004-12-31 20:21:32", "license": "1", "title": "IMG_0773.JPG", "text": "", "album_id": "82746", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3297760_e51cc674f9_o.jpg", "secret": "e51cc674f9", "media": "photo", "latitude": "0", "id": "3297760", "tags": ""}, {"datetaken": "2004-12-31 20:22:19", "license": "1", "title": "IMG_0774.JPG", "text": "", "album_id": "82746", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3297734_ecef390e30_o.jpg", "secret": "ecef390e30", "media": "photo", "latitude": "0", "id": "3297734", "tags": ""}, {"datetaken": "2004-12-31 20:23:16", "license": "1", "title": "IMG_0776.JPG", "text": "", "album_id": "82746", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3297714_f666f8c2b1_o.jpg", "secret": "f666f8c2b1", "media": "photo", "latitude": "0", "id": "3297714", "tags": ""}, {"datetaken": "2004-12-31 20:23:36", "license": "1", "title": "IMG_0777.JPG", "text": "", "album_id": "82746", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3297692_a8ab2f3f4d_o.jpg", "secret": "a8ab2f3f4d", "media": "photo", "latitude": "0", "id": "3297692", "tags": ""}, {"datetaken": "2004-12-31 20:23:46", "license": "1", "title": "IMG_0778.JPG", "text": "", "album_id": "82746", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3297643_68cca4e79d_o.jpg", "secret": "68cca4e79d", "media": "photo", "latitude": "0", "id": "3297643", "tags": ""}, {"datetaken": "2004-12-31 20:24:42", "license": "1", "title": "IMG_0779.JPG", "text": "", "album_id": "82746", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3297655_6808dc3f6e_o.jpg", "secret": "6808dc3f6e", "media": "photo", "latitude": "0", "id": "3297655", "tags": ""}, {"datetaken": "2004-12-31 20:27:36", "license": "1", "title": "IMG_0781.JPG", "text": "", "album_id": "82746", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3297660_298b249074_o.jpg", "secret": "298b249074", "media": "photo", "latitude": "0", "id": "3297660", "tags": ""}, {"datetaken": "2004-12-31 20:29:13", "license": "1", "title": "IMG_0782.JPG", "text": "", "album_id": "82746", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3297667_aed691589d_o.jpg", "secret": "aed691589d", "media": "photo", "latitude": "0", "id": "3297667", "tags": ""}, {"datetaken": "2004-12-31 20:30:07", "license": "1", "title": "IMG_0784.JPG", "text": "", "album_id": "82746", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3297678_ef31453290_o.jpg", "secret": "ef31453290", "media": "photo", "latitude": "0", "id": "3297678", "tags": ""}, {"datetaken": "2004-12-31 21:35:48", "license": "1", "title": "IMG_0785.JPG", "text": "", "album_id": "82746", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3297625_156c5b6adc_o.jpg", "secret": "156c5b6adc", "media": "photo", "latitude": "0", "id": "3297625", "tags": ""}, {"datetaken": "2004-12-31 21:35:59", "license": "1", "title": "IMG_0786.JPG", "text": "", "album_id": "82746", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3297616_e067e58ac9_o.jpg", "secret": "e067e58ac9", "media": "photo", "latitude": "0", "id": "3297616", "tags": ""}, {"datetaken": "2004-12-31 23:13:01", "license": "1", "title": "IMG_0791.JPG", "text": "", "album_id": "82746", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3297631_a3cb4630d9_o.jpg", "secret": "a3cb4630d9", "media": "photo", "latitude": "0", "id": "3297631", "tags": ""}, {"datetaken": "2005-03-17 10:15:44", "license": "1", "title": "follow the yellow stripe", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6753787_2e1891b970_o.jpg", "secret": "2e1891b970", "media": "photo", "latitude": "0", "id": "6753787", "tags": "kansascity stpatricksday parade"}, {"datetaken": "2005-03-17 10:18:41", "license": "1", "title": "in position", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6753788_ba5f27bcf7_o.jpg", "secret": "ba5f27bcf7", "media": "photo", "latitude": "0", "id": "6753788", "tags": "kansascity stpatricksday parade"}, {"datetaken": "2005-03-17 10:23:08", "license": "1", "title": "rainbow coalition", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6753789_d26ed0c9c0_o.jpg", "secret": "d26ed0c9c0", "media": "photo", "latitude": "0", "id": "6753789", "tags": "kansascity stpatricksday parade"}, {"datetaken": "2005-03-17 10:26:26", "license": "1", "title": "cobra drumline", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6753790_54414d95eb_o.jpg", "secret": "54414d95eb", "media": "photo", "latitude": "0", "id": "6753790", "tags": "kansascity stpatricksday parade"}, {"datetaken": "2005-03-17 10:29:55", "license": "1", "title": "stuff", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6753791_a051ecdc7f_o.jpg", "secret": "a051ecdc7f", "media": "photo", "latitude": "0", "id": "6753791", "tags": "kansascity stpatricksday parade"}, {"datetaken": "2005-03-17 10:30:04", "license": "1", "title": "dude, let's start a drum circle!", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6753792_088268852b_o.jpg", "secret": "088268852b", "media": "photo", "latitude": "0", "id": "6753792", "tags": "kansascity stpatricksday parade washington statue"}, {"datetaken": "2005-03-17 10:40:13", "license": "1", "title": "waiting", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6754181_caed3df4ae_o.jpg", "secret": "caed3df4ae", "media": "photo", "latitude": "0", "id": "6754181", "tags": "kansascity stpatricksday parade green hats"}, {"datetaken": "2005-03-17 10:57:32", "license": "1", "title": "banner", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6754182_d7091a13cd_o.jpg", "secret": "d7091a13cd", "media": "photo", "latitude": "0", "id": "6754182", "tags": "kansascity stpatricksday parade"}, {"datetaken": "2005-03-17 10:57:44", "license": "1", "title": "confetti cannon", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6754183_58c7ce1a22_o.jpg", "secret": "58c7ce1a22", "media": "photo", "latitude": "0", "id": "6754183", "tags": "kansascity stpatricksday parade confetti"}, {"datetaken": "2005-03-17 11:00:52", "license": "1", "title": "o'riarda academy of dance", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6754184_9e453e5541_o.jpg", "secret": "9e453e5541", "media": "photo", "latitude": "0", "id": "6754184", "tags": "kansascity stpatricksday parade"}, {"datetaken": "2005-03-17 11:00:59", "license": "1", "title": "o'riarda academy of dance pt 2", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6754185_ec7fecd193_o.jpg", "secret": "ec7fecd193", "media": "photo", "latitude": "0", "id": "6754185", "tags": "kansascity stpatricksday parade"}, {"datetaken": "2005-03-17 11:09:03", "license": "1", "title": "the pipes, the pipes, the pipes", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6754186_5bb67d4e62_o.jpg", "secret": "5bb67d4e62", "media": "photo", "latitude": "0", "id": "6754186", "tags": "kansascity stpatricksday parade bagpipesrock"}, {"datetaken": "2005-03-17 11:09:17", "license": "1", "title": "prince harry plays a tune", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6754687_f7eecbbd37_o.jpg", "secret": "f7eecbbd37", "media": "photo", "latitude": "0", "id": "6754687", "tags": "kansascity stpatricksday parade bagpipesrock"}, {"datetaken": "2005-03-17 11:09:23", "license": "1", "title": "tassels and plaid", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6754688_e8b119b350_o.jpg", "secret": "e8b119b350", "media": "photo", "latitude": "0", "id": "6754688", "tags": "kansascity stpatricksday parade bagpipesrock"}, {"datetaken": "2005-03-17 11:19:28", "license": "1", "title": "THE marching cobra", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6754689_23ed1b6b4d_o.jpg", "secret": "23ed1b6b4d", "media": "photo", "latitude": "0", "id": "6754689", "tags": "kansascity stpatricksday parade marchingcobras"}, {"datetaken": "2005-03-17 11:19:33", "license": "1", "title": "concentration", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6754690_0378e54c62_o.jpg", "secret": "0378e54c62", "media": "photo", "latitude": "0", "id": "6754690", "tags": "kansascity stpatricksday parade marchingcobras"}, {"datetaken": "2005-03-17 11:27:13", "license": "1", "title": "showin' how it's done", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6754691_e7ed0fe903_o.jpg", "secret": "e7ed0fe903", "media": "photo", "latitude": "0", "id": "6754691", "tags": "kansascity stpatricksday parade"}, {"datetaken": "2005-03-17 12:06:28", "license": "1", "title": "parking lot performance", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6754692_8be3b86cef_o.jpg", "secret": "8be3b86cef", "media": "photo", "latitude": "0", "id": "6754692", "tags": "kansascity stpatricksday parade middleschoolofthearts unionstation"}, {"datetaken": "2005-03-17 12:08:55", "license": "1", "title": "go girls", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6754918_e8c30f71fb_o.jpg", "secret": "e8c30f71fb", "media": "photo", "latitude": "0", "id": "6754918", "tags": "kansascity stpatricksday parade"}, {"datetaken": "2005-03-17 12:12:42", "license": "1", "title": "there they go", "text": "", "album_id": "168494", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6754919_0feded0db1_o.jpg", "secret": "0feded0db1", "media": "photo", "latitude": "0", "id": "6754919", "tags": "kansascity stpatricksday parade"}, {"datetaken": "2005-04-02 15:08:24", "license": "1", "title": "Reclaim the streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8323295_cb7181b08f_o.jpg", "secret": "cb7181b08f", "media": "photo", "latitude": "0", "id": "8323295", "tags": "reclaimthesteets activism fun sanfrancisco"}, {"datetaken": "2005-04-02 15:08:58", "license": "1", "title": "Reclaim the streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8323378_e347f0f582_o.jpg", "secret": "e347f0f582", "media": "photo", "latitude": "0", "id": "8323378", "tags": "reclaimthesteets activism fun sanfrancisco"}, {"datetaken": "2005-04-02 15:09:16", "license": "1", "title": "Reclaim the streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8323458_1e5135f08f_o.jpg", "secret": "1e5135f08f", "media": "photo", "latitude": "0", "id": "8323458", "tags": "reclaimthesteets activism fun"}, {"datetaken": "2005-04-02 15:09:35", "license": "1", "title": "Reclaim the streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8323588_5a233d5594_o.jpg", "secret": "5a233d5594", "media": "photo", "latitude": "0", "id": "8323588", "tags": "reclaimthesteets activism fun sanfrancisco"}, {"datetaken": "2005-04-02 15:10:05", "license": "1", "title": "Reclaim the streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8323664_abc36fb40f_o.jpg", "secret": "abc36fb40f", "media": "photo", "latitude": "0", "id": "8323664", "tags": "reclaimthesteets activism fun"}, {"datetaken": "2005-04-02 15:10:30", "license": "1", "title": "Reclaim the streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8323739_dfdef07f1c_o.jpg", "secret": "dfdef07f1c", "media": "photo", "latitude": "0", "id": "8323739", "tags": "reclaimthesteets activism fun"}, {"datetaken": "2005-04-02 15:10:49", "license": "1", "title": "Reclaim the streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8323840_0950668d88_o.jpg", "secret": "0950668d88", "media": "photo", "latitude": "0", "id": "8323840", "tags": "reclaimthesteets activism fun"}, {"datetaken": "2005-04-02 15:11:18", "license": "1", "title": "Reclaim the streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8324066_dd369fe507_o.jpg", "secret": "dd369fe507", "media": "photo", "latitude": "0", "id": "8324066", "tags": "reclaimthesteets activism fun sanfrancisco"}, {"datetaken": "2005-04-02 15:11:39", "license": "1", "title": "Homer", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8324185_e29934b170_o.jpg", "secret": "e29934b170", "media": "photo", "latitude": "0", "id": "8324185", "tags": "reclaimthesteets activism fun sanfrancisco homersimpson"}, {"datetaken": "2005-04-02 15:11:45", "license": "1", "title": "Reclaim the streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8324302_d75d7033ba_o.jpg", "secret": "d75d7033ba", "media": "photo", "latitude": "0", "id": "8324302", "tags": "reclaimthesteets activism fun"}, {"datetaken": "2005-04-02 15:12:01", "license": "1", "title": "Reclaim the streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8324408_1587709ace_o.jpg", "secret": "1587709ace", "media": "photo", "latitude": "0", "id": "8324408", "tags": "reclaimthesteets sanfrancisco activism protest fun"}, {"datetaken": "2005-04-02 15:12:17", "license": "1", "title": "Reclaim the Streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8324841_9ca39bc746_o.jpg", "secret": "9ca39bc746", "media": "photo", "latitude": "0", "id": "8324841", "tags": "sanfrancisco fun reclaimthestreets protest activism davidletterman dave television"}, {"datetaken": "2005-04-02 15:12:35", "license": "1", "title": "Reclaim the Streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8325051_1be437640c_o.jpg", "secret": "1be437640c", "media": "photo", "latitude": "0", "id": "8325051", "tags": "sanfrancisco fun reclaimthestreets protest activism"}, {"datetaken": "2005-04-02 15:12:45", "license": "1", "title": "Reclaim the Streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8325091_e3019bda0a_o.jpg", "secret": "e3019bda0a", "media": "photo", "latitude": "0", "id": "8325091", "tags": "sanfrancisco fun reclaimthestreets protest activism davidletterman dave muni television"}, {"datetaken": "2005-04-02 15:12:59", "license": "1", "title": "Reclaim the Streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8325187_bcaebc1f05_o.jpg", "secret": "bcaebc1f05", "media": "photo", "latitude": "0", "id": "8325187", "tags": "sanfrancisco fun reclaimthestreets protest activism"}, {"datetaken": "2005-04-02 15:13:21", "license": "1", "title": "Reclaim the Streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8325237_293080a840_o.jpg", "secret": "293080a840", "media": "photo", "latitude": "0", "id": "8325237", "tags": "sanfrancisco fun reclaimthestreets protest activism"}, {"datetaken": "2005-04-02 15:13:36", "license": "1", "title": "Reclaim the Streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8325278_e8da09a1ed_o.jpg", "secret": "e8da09a1ed", "media": "photo", "latitude": "0", "id": "8325278", "tags": "sanfrancisco fun reclaimthestreets protest activism"}, {"datetaken": "2005-04-02 15:14:08", "license": "1", "title": "Reclaim the Streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8325358_3a955ea53b_o.jpg", "secret": "3a955ea53b", "media": "photo", "latitude": "0", "id": "8325358", "tags": "sanfrancisco fun reclaimthestreets protest activism"}, {"datetaken": "2005-04-02 15:14:28", "license": "1", "title": "Reclaim the Streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8325436_7c8293eaa9_o.jpg", "secret": "7c8293eaa9", "media": "photo", "latitude": "0", "id": "8325436", "tags": "sanfrancisco fun reclaimthestreets protest activism"}, {"datetaken": "2005-04-02 15:15:05", "license": "1", "title": "Reclaim the Streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8325507_895155fa93_o.jpg", "secret": "895155fa93", "media": "photo", "latitude": "0", "id": "8325507", "tags": "sanfrancisco fun reclaimthestreets protest activism"}, {"datetaken": "2005-04-02 15:15:07", "license": "1", "title": "Reclaim the Streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8325571_0af6fccf2e_o.jpg", "secret": "0af6fccf2e", "media": "photo", "latitude": "0", "id": "8325571", "tags": "sanfrancisco fun reclaimthestreets protest activism"}, {"datetaken": "2005-04-02 15:15:16", "license": "1", "title": "Reclaim the Streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8325679_0d6cf83051_o.jpg", "secret": "0d6cf83051", "media": "photo", "latitude": "0", "id": "8325679", "tags": "sanfrancisco fun reclaimthestreets protest activism"}, {"datetaken": "2005-04-02 15:15:21", "license": "1", "title": "Reclaim the Streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8325788_138a958478_o.jpg", "secret": "138a958478", "media": "photo", "latitude": "0", "id": "8325788", "tags": "sanfrancisco fun reclaimthestreets protest activism"}, {"datetaken": "2005-04-02 15:15:46", "license": "1", "title": "Reclaim the Streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8325926_60fa320af1_o.jpg", "secret": "60fa320af1", "media": "photo", "latitude": "0", "id": "8325926", "tags": "sanfrancisco fun reclaimthestreets protest activism"}, {"datetaken": "2005-04-02 15:16:04", "license": "1", "title": "Reclaim the Streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8326012_8328088d57_o.jpg", "secret": "8328088d57", "media": "photo", "latitude": "0", "id": "8326012", "tags": "sanfrancisco fun reclaimthestreets protest activism"}, {"datetaken": "2005-04-02 15:17:55", "license": "1", "title": "Reclaim the streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8332763_8e8daefd7b_o.jpg", "secret": "8e8daefd7b", "media": "photo", "latitude": "0", "id": "8332763", "tags": "sanfrancisco reclaimthestreets fun protest parade activism"}, {"datetaken": "2005-04-02 15:17:59", "license": "1", "title": "Reclaim the streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8332855_44c2b275cc_o.jpg", "secret": "44c2b275cc", "media": "photo", "latitude": "0", "id": "8332855", "tags": "sanfrancisco reclaimthestreets fun protest parade activism"}, {"datetaken": "2005-04-02 15:18:07", "license": "1", "title": "Reclaim the streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8332949_44ab3a80c4_o.jpg", "secret": "44ab3a80c4", "media": "photo", "latitude": "0", "id": "8332949", "tags": "sanfrancisco reclaimthestreets fun protest parade activism"}, {"datetaken": "2005-04-02 17:11:06", "license": "1", "title": "Reclaim the Streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8395116_2d6498eb91_o.jpg", "secret": "2d6498eb91", "media": "photo", "latitude": "0", "id": "8395116", "tags": "reclaimthestreets fun sanfrancisco"}, {"datetaken": "2005-04-02 17:21:02", "license": "1", "title": "Reclaim the Streets", "text": "", "album_id": "208690", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8396581_3a6b8ba866_o.jpg", "secret": "3a6b8ba866", "media": "photo", "latitude": "0", "id": "8396581", "tags": "reclaimthestreets muni protest sanfrancisco"}, {"datetaken": "2005-04-04 17:02:05", "license": "4", "title": "P1010130", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8459476_8d43467208_o.jpg", "secret": "8d43467208", "media": "photo", "latitude": "0", "id": "8459476", "tags": "paws parade dogs pets waveland mississippi 2005"}, {"datetaken": "2005-04-04 17:09:09", "license": "4", "title": "P1010003", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8460049_1400922472_o.jpg", "secret": "1400922472", "media": "photo", "latitude": "0", "id": "8460049", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:09:15", "license": "4", "title": "P1010004", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8460056_7ec262018c_o.jpg", "secret": "7ec262018c", "media": "photo", "latitude": "0", "id": "8460056", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:09:20", "license": "4", "title": "P1010005", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8460062_38499ce701_o.jpg", "secret": "38499ce701", "media": "photo", "latitude": "0", "id": "8460062", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:09:24", "license": "4", "title": "P1010008", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8460068_4718cb92da_o.jpg", "secret": "4718cb92da", "media": "photo", "latitude": "0", "id": "8460068", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:09:29", "license": "4", "title": "P1010009", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8460075_2c2d05e440_o.jpg", "secret": "2c2d05e440", "media": "photo", "latitude": "0", "id": "8460075", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:09:35", "license": "4", "title": "P1010010", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8460089_b0b150001a_o.jpg", "secret": "b0b150001a", "media": "photo", "latitude": "0", "id": "8460089", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:09:38", "license": "4", "title": "P1010017", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8460098_3256d45341_o.jpg", "secret": "3256d45341", "media": "photo", "latitude": "0", "id": "8460098", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:09:43", "license": "4", "title": "P1010018", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8460118_0f33e24eb9_o.jpg", "secret": "0f33e24eb9", "media": "photo", "latitude": "0", "id": "8460118", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:09:48", "license": "4", "title": "P1010019", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8460138_5c84f242dd_o.jpg", "secret": "5c84f242dd", "media": "photo", "latitude": "0", "id": "8460138", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:09:59", "license": "4", "title": "P1010020", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8460159_c85df2d8c4_o.jpg", "secret": "c85df2d8c4", "media": "photo", "latitude": "0", "id": "8460159", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:10:04", "license": "4", "title": "P1010021", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8460167_df5356f09f_o.jpg", "secret": "df5356f09f", "media": "photo", "latitude": "0", "id": "8460167", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:10:07", "license": "4", "title": "P1010022", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8460174_4c4a815630_o.jpg", "secret": "4c4a815630", "media": "photo", "latitude": "0", "id": "8460174", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:10:20", "license": "4", "title": "P1010023", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8460194_e6cd2ff510_o.jpg", "secret": "e6cd2ff510", "media": "photo", "latitude": "0", "id": "8460194", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:10:31", "license": "4", "title": "P1010024", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8460208_0be27a7cca_o.jpg", "secret": "0be27a7cca", "media": "photo", "latitude": "0", "id": "8460208", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:10:43", "license": "4", "title": "P1010025", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8460222_2e156e339f_o.jpg", "secret": "2e156e339f", "media": "photo", "latitude": "0", "id": "8460222", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:10:55", "license": "4", "title": "P1010026", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8460240_30d1183bbb_o.jpg", "secret": "30d1183bbb", "media": "photo", "latitude": "0", "id": "8460240", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:11:00", "license": "4", "title": "P1010027", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8460247_499d328821_o.jpg", "secret": "499d328821", "media": "photo", "latitude": "0", "id": "8460247", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:11:04", "license": "4", "title": "P1010028", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8460250_4fa0ec3667_o.jpg", "secret": "4fa0ec3667", "media": "photo", "latitude": "0", "id": "8460250", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:11:16", "license": "4", "title": "P1010029", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8460266_9ad04dd705_o.jpg", "secret": "9ad04dd705", "media": "photo", "latitude": "0", "id": "8460266", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:11:22", "license": "4", "title": "P1010031", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8460273_920c8e228d_o.jpg", "secret": "920c8e228d", "media": "photo", "latitude": "0", "id": "8460273", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:11:27", "license": "4", "title": "P1010032", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8460279_39319870f5_o.jpg", "secret": "39319870f5", "media": "photo", "latitude": "0", "id": "8460279", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:11:39", "license": "4", "title": "P1010038", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8460301_77464a99e7_o.jpg", "secret": "77464a99e7", "media": "photo", "latitude": "0", "id": "8460301", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:11:42", "license": "4", "title": "P1010042", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8460302_9b1b0425fa_o.jpg", "secret": "9b1b0425fa", "media": "photo", "latitude": "0", "id": "8460302", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:11:45", "license": "4", "title": "P1010047", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8460313_02f817353b_o.jpg", "secret": "02f817353b", "media": "photo", "latitude": "0", "id": "8460313", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:11:49", "license": "4", "title": "P1010049", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8460316_ad1eab520c_o.jpg", "secret": "ad1eab520c", "media": "photo", "latitude": "0", "id": "8460316", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:11:54", "license": "4", "title": "P1010050", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8460328_a7207129a3_o.jpg", "secret": "a7207129a3", "media": "photo", "latitude": "0", "id": "8460328", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:11:58", "license": "4", "title": "P1010053", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8460339_3bce4bfc52_o.jpg", "secret": "3bce4bfc52", "media": "photo", "latitude": "0", "id": "8460339", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:12:08", "license": "4", "title": "P1010054", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8460351_fef6606a73_o.jpg", "secret": "fef6606a73", "media": "photo", "latitude": "0", "id": "8460351", "tags": "san antonio texas"}, {"datetaken": "2005-04-04 17:12:20", "license": "4", "title": "P1010055", "text": "", "album_id": "210164", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8460366_48473f797c_o.jpg", "secret": "48473f797c", "media": "photo", "latitude": "0", "id": "8460366", "tags": "san antonio texas"}, {"datetaken": "2006-12-31 08:35:22", "license": "2", "title": "CIMG2151.JPG", "text": "", "album_id": "72157594452138486", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/341081399_7d8369f04e_o.jpg", "secret": "7d8369f04e", "media": "photo", "latitude": "0", "id": "341081399", "tags": "party brooklyn nye"}, {"datetaken": "2006-12-31 08:35:52", "license": "2", "title": "CIMG2152.JPG", "text": "", "album_id": "72157594452138486", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/341079575_46c3181c21_o.jpg", "secret": "46c3181c21", "media": "photo", "latitude": "0", "id": "341079575", "tags": "party brooklyn nye"}, {"datetaken": "2006-12-31 08:40:19", "license": "2", "title": "CIMG2153.JPG", "text": "", "album_id": "72157594452138486", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/341077771_cee41db0a4_o.jpg", "secret": "cee41db0a4", "media": "photo", "latitude": "0", "id": "341077771", "tags": "party brooklyn nye"}, {"datetaken": "2007-01-01 08:29:29", "license": "2", "title": "IMG_2469.JPG", "text": "", "album_id": "72157594452138486", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/341105132_1e9e4eac02_o.jpg", "secret": "1e9e4eac02", "media": "photo", "latitude": "0", "id": "341105132", "tags": "party brooklyn nye"}, {"datetaken": "2007-01-01 08:30:08", "license": "2", "title": "IMG_2470.JPG", "text": "", "album_id": "72157594452138486", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/341103226_6d2346bf34_o.jpg", "secret": "6d2346bf34", "media": "photo", "latitude": "0", "id": "341103226", "tags": "party brooklyn nye"}, {"datetaken": "2007-01-01 13:46:46", "license": "2", "title": "IMG_2478.JPG", "text": "", "album_id": "72157594452138486", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/341101377_94586e9e64_o.jpg", "secret": "94586e9e64", "media": "photo", "latitude": "0", "id": "341101377", "tags": "party brooklyn nye"}, {"datetaken": "2007-01-01 13:47:11", "license": "2", "title": "IMG_2479.JPG", "text": "", "album_id": "72157594452138486", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/341099957_3e74cb044d_o.jpg", "secret": "3e74cb044d", "media": "photo", "latitude": "0", "id": "341099957", "tags": "party brooklyn nye"}, {"datetaken": "2007-01-01 14:04:50", "license": "2", "title": "IMG_2481.JPG", "text": "", "album_id": "72157594452138486", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/341098580_fbeb64ed4a_o.jpg", "secret": "fbeb64ed4a", "media": "photo", "latitude": "0", "id": "341098580", "tags": "party brooklyn nye"}, {"datetaken": "2007-01-01 14:05:13", "license": "2", "title": "IMG_2482.JPG", "text": "", "album_id": "72157594452138486", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/341096870_69da429ef7_o.jpg", "secret": "69da429ef7", "media": "photo", "latitude": "0", "id": "341096870", "tags": "party brooklyn nye"}, {"datetaken": "2007-01-01 14:05:39", "license": "2", "title": "IMG_2483.JPG", "text": "", "album_id": "72157594452138486", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/341095181_ae691b01a4_o.jpg", "secret": "ae691b01a4", "media": "photo", "latitude": "0", "id": "341095181", "tags": "party brooklyn nye"}, {"datetaken": "2007-01-01 14:05:45", "license": "2", "title": "IMG_2484.JPG", "text": "", "album_id": "72157594452138486", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/341093808_22aa99ef0c_o.jpg", "secret": "22aa99ef0c", "media": "photo", "latitude": "0", "id": "341093808", "tags": "party brooklyn nye"}, {"datetaken": "2007-01-01 14:06:02", "license": "2", "title": "IMG_2485.JPG", "text": "", "album_id": "72157594452138486", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/341092316_aeea8cfcde_o.jpg", "secret": "aeea8cfcde", "media": "photo", "latitude": "0", "id": "341092316", "tags": "party brooklyn nye"}, {"datetaken": "2007-01-01 14:10:57", "license": "2", "title": "IMG_2486.JPG", "text": "", "album_id": "72157594452138486", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/341090390_b513f034e7_o.jpg", "secret": "b513f034e7", "media": "photo", "latitude": "0", "id": "341090390", "tags": "party brooklyn nye"}, {"datetaken": "2007-01-01 14:12:55", "license": "2", "title": "IMG_2487.JPG", "text": "", "album_id": "72157594452138486", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/341088549_b88340753f_o.jpg", "secret": "b88340753f", "media": "photo", "latitude": "0", "id": "341088549", "tags": "party brooklyn nye"}, {"datetaken": "2007-01-01 14:14:36", "license": "2", "title": "IMG_2488.JPG", "text": "", "album_id": "72157594452138486", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/341086910_03f82b9054_o.jpg", "secret": "03f82b9054", "media": "photo", "latitude": "0", "id": "341086910", "tags": "party brooklyn nye"}, {"datetaken": "2007-01-01 14:53:33", "license": "2", "title": "IMG_2489.JPG", "text": "", "album_id": "72157594452138486", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/341085269_5455067960_o.jpg", "secret": "5455067960", "media": "photo", "latitude": "0", "id": "341085269", "tags": "party brooklyn nye"}, {"datetaken": "2007-01-01 14:53:44", "license": "2", "title": "IMG_2490.JPG", "text": "", "album_id": "72157594452138486", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/341083293_19edcb7c72_o.jpg", "secret": "19edcb7c72", "media": "photo", "latitude": "0", "id": "341083293", "tags": "party brooklyn nye"}, {"datetaken": "2006-12-31 23:26:14", "license": "4", "title": "Nym", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/341167307_b2ada5c7cc_o.jpg", "secret": "b2ada5c7cc", "media": "photo", "latitude": "0", "id": "341167307", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2006-12-31 23:41:03", "license": "4", "title": "Curious Josh", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/341168945_77bf5ce496_o.jpg", "secret": "77bf5ce496", "media": "photo", "latitude": "0", "id": "341168945", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2006-12-31 23:46:50", "license": "4", "title": "Jo Praying to the Dance Gods", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/341169507_ee77397863_o.jpg", "secret": "ee77397863", "media": "photo", "latitude": "0", "id": "341169507", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2006-12-31 23:46:58", "license": "4", "title": "Jo & Mo", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/341170025_d5181c9e36_o.jpg", "secret": "d5181c9e36", "media": "photo", "latitude": "0", "id": "341170025", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2006-12-31 23:47:23", "license": "4", "title": "KBun", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/341170341_74d40c6102_o.jpg", "secret": "74d40c6102", "media": "photo", "latitude": "0", "id": "341170341", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2006-12-31 23:47:30", "license": "4", "title": "Jo Dancing", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/341170806_341e786ed4_o.jpg", "secret": "341e786ed4", "media": "photo", "latitude": "0", "id": "341170806", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2006-12-31 23:47:43", "license": "4", "title": "Cristina", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/341171150_b4d1db296b_o.jpg", "secret": "b4d1db296b", "media": "photo", "latitude": "0", "id": "341171150", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2006-12-31 23:48:11", "license": "4", "title": "Mo", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/341171629_c7088c8815_o.jpg", "secret": "c7088c8815", "media": "photo", "latitude": "0", "id": "341171629", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2006-12-31 23:48:25", "license": "4", "title": "Mo & Cristina", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/341172139_fe5ea07a36_o.jpg", "secret": "fe5ea07a36", "media": "photo", "latitude": "0", "id": "341172139", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2006-12-31 23:48:47", "license": "4", "title": "KBunny & LilFlower", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/341172620_ed36dff130_o.jpg", "secret": "ed36dff130", "media": "photo", "latitude": "0", "id": "341172620", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2006-12-31 23:49:26", "license": "4", "title": "Nym", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/341173369_4aaa687e77_o.jpg", "secret": "4aaa687e77", "media": "photo", "latitude": "0", "id": "341173369", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2006-12-31 23:49:36", "license": "4", "title": "Nym", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/341173854_b8c1666696_o.jpg", "secret": "b8c1666696", "media": "photo", "latitude": "0", "id": "341173854", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2007-01-01 00:07:52", "license": "4", "title": "FatFinger on the Decks", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/341174317_c3de7a2dfa_o.jpg", "secret": "c3de7a2dfa", "media": "photo", "latitude": "0", "id": "341174317", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2007-01-01 00:07:58", "license": "4", "title": "FatFinger on the Decks", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/341174742_fd27695aca_o.jpg", "secret": "fd27695aca", "media": "photo", "latitude": "0", "id": "341174742", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2007-01-01 00:11:47", "license": "4", "title": "Christian", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/341175121_8f99b473e1_o.jpg", "secret": "8f99b473e1", "media": "photo", "latitude": "0", "id": "341175121", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2007-01-01 00:26:22", "license": "4", "title": "Myster-E With Clothes On", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/341175321_a9ddcd67b9_o.jpg", "secret": "a9ddcd67b9", "media": "photo", "latitude": "0", "id": "341175321", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2007-01-01 00:28:43", "license": "4", "title": "RoBo with Cyborg Glowstick Technology", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/341175736_d86b422fd2_o.jpg", "secret": "d86b422fd2", "media": "photo", "latitude": "0", "id": "341175736", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2007-01-01 01:57:06", "license": "4", "title": "Cristina and Jo Dancing", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/341176627_963a16c341_o.jpg", "secret": "963a16c341", "media": "photo", "latitude": "0", "id": "341176627", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2007-01-01 01:59:31", "license": "4", "title": "KBunny", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/341177063_bb00c049a0_o.jpg", "secret": "bb00c049a0", "media": "photo", "latitude": "0", "id": "341177063", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2007-01-01 01:59:37", "license": "4", "title": "Cristina & KBunny", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/341177485_8630b4afba_o.jpg", "secret": "8630b4afba", "media": "photo", "latitude": "0", "id": "341177485", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2007-01-01 02:13:52", "license": "4", "title": "Rev Kate", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/341177951_e95557df5f_o.jpg", "secret": "e95557df5f", "media": "photo", "latitude": "0", "id": "341177951", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2007-01-01 02:20:06", "license": "4", "title": "FatFinger", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/341178324_0f399a8f2f_o.jpg", "secret": "0f399a8f2f", "media": "photo", "latitude": "0", "id": "341178324", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2007-01-01 02:36:20", "license": "4", "title": "NinaSkillz Mark Z", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/341178730_5b2d5a13b2_o.jpg", "secret": "5b2d5a13b2", "media": "photo", "latitude": "0", "id": "341178730", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2007-01-01 02:36:47", "license": "4", "title": "Mark Z & Mr. (of Electric Enlightenment)", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/341179144_9f93303b44_o.jpg", "secret": "9f93303b44", "media": "photo", "latitude": "0", "id": "341179144", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2007-01-01 03:02:56", "license": "4", "title": "Sammy Bliss", "text": "", "album_id": "72157594452246340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/341179530_4e97089a1e_o.jpg", "secret": "4e97089a1e", "media": "photo", "latitude": "0", "id": "341179530", "tags": "party losangeles nye warehouse newyearseve nexus nye2007 nye07 newyears07"}, {"datetaken": "2009-12-31 22:53:04", "license": "3", "title": "Kevin & his literary friends", "text": "", "album_id": "72157623114382738", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4233618513_ee3442dd0e_o.jpg", "secret": "5e05d7b61a", "media": "photo", "latitude": "0", "id": "4233618513", "tags": ""}, {"datetaken": "2009-12-31 22:54:00", "license": "3", "title": "party decorations!", "text": "", "album_id": "72157623114382738", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4234393570_4496cd5985_o.jpg", "secret": "3babeddaf3", "media": "photo", "latitude": "0", "id": "4234393570", "tags": ""}, {"datetaken": "2009-12-31 22:55:55", "license": "3", "title": "Harris & Brooks", "text": "", "album_id": "72157623114382738", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2654/4234395750_b41298e203_o.jpg", "secret": "bfa59ee725", "media": "photo", "latitude": "0", "id": "4234395750", "tags": ""}, {"datetaken": "2009-12-31 23:03:00", "license": "3", "title": "accidentally shooting on \"Sunset\" mode", "text": "", "album_id": "72157623114382738", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2624/4234398136_96b9e1d37f_o.jpg", "secret": "0c97cc3eac", "media": "photo", "latitude": "0", "id": "4234398136", "tags": ""}, {"datetaken": "2009-12-31 23:04:45", "license": "3", "title": "party girl", "text": "", "album_id": "72157623114382738", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4234400610_650a76d9b7_o.jpg", "secret": "05520fd9bb", "media": "photo", "latitude": "0", "id": "4234400610", "tags": ""}, {"datetaken": "2010-01-01 00:52:11", "license": "3", "title": "woo hoo!", "text": "", "album_id": "72157623114382738", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4234402878_dd6801f62c_o.jpg", "secret": "163f799252", "media": "photo", "latitude": "0", "id": "4234402878", "tags": ""}, {"datetaken": "2010-01-01 00:53:03", "license": "3", "title": "noisemakers", "text": "", "album_id": "72157623114382738", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4233633077_2177e736c3_o.jpg", "secret": "81cac5ca37", "media": "photo", "latitude": "0", "id": "4233633077", "tags": ""}, {"datetaken": "2010-01-01 00:53:46", "license": "3", "title": "I kinda like this one", "text": "", "album_id": "72157623114382738", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4234407944_3d9c8a4a8c_o.jpg", "secret": "9be40a9055", "media": "photo", "latitude": "0", "id": "4234407944", "tags": ""}, {"datetaken": "2010-01-01 00:54:32", "license": "3", "title": "me n Rory", "text": "", "album_id": "72157623114382738", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4233637719_f95962b1db_o.jpg", "secret": "3c831efc87", "media": "photo", "latitude": "0", "id": "4233637719", "tags": ""}, {"datetaken": "2010-01-01 00:55:43", "license": "3", "title": "me & my love", "text": "", "album_id": "72157623114382738", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4233640387_d8bb7a75a9_o.jpg", "secret": "e73299e0d4", "media": "photo", "latitude": "0", "id": "4233640387", "tags": ""}, {"datetaken": "2010-01-01 00:56:07", "license": "3", "title": "silly", "text": "", "album_id": "72157623114382738", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4234415968_c27c8e60b5_o.jpg", "secret": "95b42cd867", "media": "photo", "latitude": "0", "id": "4234415968", "tags": ""}, {"datetaken": "2010-01-01 01:01:52", "license": "3", "title": "?", "text": "", "album_id": "72157623114382738", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2706/4233646421_6330298a26_o.jpg", "secret": "f01699b4b9", "media": "photo", "latitude": "0", "id": "4233646421", "tags": ""}, {"datetaken": "2010-01-01 01:02:27", "license": "3", "title": "why so sad?", "text": "", "album_id": "72157623114382738", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2672/4234421972_fe2b79ceeb_o.jpg", "secret": "1a16e62dc6", "media": "photo", "latitude": "0", "id": "4234421972", "tags": ""}, {"datetaken": "2010-01-01 01:05:16", "license": "3", "title": "us", "text": "", "album_id": "72157623114382738", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4233652135_f075c9bd21_o.jpg", "secret": "ec110c383a", "media": "photo", "latitude": "0", "id": "4233652135", "tags": ""}, {"datetaken": "2010-01-01 01:07:01", "license": "3", "title": "more party decorations", "text": "", "album_id": "72157623114382738", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2620/4234427216_40444c94bf_o.jpg", "secret": "2522bb3e0b", "media": "photo", "latitude": "0", "id": "4234427216", "tags": ""}, {"datetaken": "2009-12-18 07:22:37", "license": "1", "title": "spikey ball tree in full Fall (in December) colors", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4234087389_d9bde21d36_o.jpg", "secret": "4305bb3e59", "media": "photo", "latitude": "0", "id": "4234087389", "tags": ""}, {"datetaken": "2009-12-18 09:24:09", "license": "1", "title": "Sonja and I on an adventure", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4234086757_41142efe7f_o.jpg", "secret": "2d66bf0005", "media": "photo", "latitude": "0", "id": "4234086757", "tags": ""}, {"datetaken": "2009-12-18 21:57:32", "license": "1", "title": "sleepy Sonja on the train", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2639/4234862900_9918d26e01_o.jpg", "secret": "07dda95923", "media": "photo", "latitude": "0", "id": "4234862900", "tags": ""}, {"datetaken": "2009-12-19 13:03:36", "license": "1", "title": "Marin headlands", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2620/4234088343_14251acb60_o.jpg", "secret": "7ec49f6dc9", "media": "photo", "latitude": "0", "id": "4234088343", "tags": ""}, {"datetaken": "2009-12-19 13:08:34", "license": "1", "title": "Dena on the trail", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2675/4234863844_ec37f93b57_o.jpg", "secret": "01d200dd4f", "media": "photo", "latitude": "0", "id": "4234863844", "tags": ""}, {"datetaken": "2009-12-19 13:20:25", "license": "1", "title": "enchanted redwoods on the way", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2494/4234864348_d3221c9d41_o.jpg", "secret": "4976e11f00", "media": "photo", "latitude": "0", "id": "4234864348", "tags": ""}, {"datetaken": "2009-12-19 14:01:32", "license": "1", "title": "Zane with fluffed beard in Muir Woods", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2631/4234089849_93d80d604d_o.jpg", "secret": "43e7eb037f", "media": "photo", "latitude": "0", "id": "4234089849", "tags": ""}, {"datetaken": "2009-12-19 14:01:55", "license": "1", "title": "D and K in Muir Woods", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4234090371_00c10a3fa5_o.jpg", "secret": "47ca3ecd1e", "media": "photo", "latitude": "0", "id": "4234090371", "tags": ""}, {"datetaken": "2009-12-19 14:13:37", "license": "1", "title": "pretty leaves!", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4234091241_9cbc25b5b0_o.jpg", "secret": "54839eea6a", "media": "photo", "latitude": "0", "id": "4234091241", "tags": ""}, {"datetaken": "2009-12-19 14:28:22", "license": "1", "title": "me in Muir Woods with the new hiking skirt", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4234866740_91f1d336ce_o.jpg", "secret": "e68711469f", "media": "photo", "latitude": "0", "id": "4234866740", "tags": ""}, {"datetaken": "2009-12-19 14:39:29", "license": "1", "title": "little white mushrooms", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2618/4234092457_c13bfd8fcc_o.jpg", "secret": "9cd13c7669", "media": "photo", "latitude": "0", "id": "4234092457", "tags": ""}, {"datetaken": "2009-12-19 14:55:50", "license": "1", "title": "squirrel carnage on the trail", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2749/4234093165_7f38b18537_o.jpg", "secret": "89d0a52d06", "media": "photo", "latitude": "0", "id": "4234093165", "tags": ""}, {"datetaken": "2009-12-19 15:07:13", "license": "1", "title": "seductive sky", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4234868670_a2b432f90b_o.jpg", "secret": "7ef96991a5", "media": "photo", "latitude": "0", "id": "4234868670", "tags": ""}, {"datetaken": "2009-12-19 15:09:08", "license": "1", "title": "Marin dusk", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2544/4234094197_fe71623466_o.jpg", "secret": "e322036f75", "media": "photo", "latitude": "0", "id": "4234094197", "tags": ""}, {"datetaken": "2009-12-19 15:09:37", "license": "1", "title": "shades of Marin hillside", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4234094653_1103e4b678_o.jpg", "secret": "cd1eeae949", "media": "photo", "latitude": "0", "id": "4234094653", "tags": ""}, {"datetaken": "2009-12-19 15:22:30", "license": "1", "title": "the Tourist Club", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2735/4234870306_81a0ba7da6_o.jpg", "secret": "492e8c69e8", "media": "photo", "latitude": "0", "id": "4234870306", "tags": ""}, {"datetaken": "2009-12-19 15:35:50", "license": "1", "title": "splitting a pitcher at the Tourist Club", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2569/4234870718_02e113e70e_o.jpg", "secret": "c88761486a", "media": "photo", "latitude": "0", "id": "4234870718", "tags": ""}, {"datetaken": "2009-12-19 15:51:04", "license": "1", "title": "Dena and I down our beers", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2672/4234096113_54c3e6bd1d_o.jpg", "secret": "4aea739de8", "media": "photo", "latitude": "0", "id": "4234096113", "tags": ""}, {"datetaken": "2009-12-19 20:36:38", "license": "1", "title": "getting ready for a dress-up party in Dena's building", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4234871648_98a3c473a6_o.jpg", "secret": "0f1f8898d6", "media": "photo", "latitude": "0", "id": "4234871648", "tags": ""}, {"datetaken": "2009-12-19 20:38:19", "license": "1", "title": "Dena and Lily", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2656/4234872096_27b8afc070_o.jpg", "secret": "854c9dabee", "media": "photo", "latitude": "0", "id": "4234872096", "tags": ""}, {"datetaken": "2009-12-19 20:39:31", "license": "1", "title": "Dena and I in perfect formal attire", "text": "", "album_id": "72157622990809751", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2755/4234097583_1cffcea849_o.jpg", "secret": "f5225d6b61", "media": "photo", "latitude": "0", "id": "4234097583", "tags": ""}, {"datetaken": "2009-12-31 22:23:14", "license": "1", "title": "New Years Eve 2009", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4234224973_aa6277804e_o.jpg", "secret": "f3eb0bcdc6", "media": "photo", "latitude": "0", "id": "4234224973", "tags": "friends party performance band myfriendlisa newyearseve2009"}, {"datetaken": "2009-12-31 22:23:27", "license": "1", "title": "New Years Eve 2009", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2604/4235003414_5d5d2fcda9_o.jpg", "secret": "2da827d840", "media": "photo", "latitude": "0", "id": "4235003414", "tags": "friends party performance band myfriendlisa newyearseve2009"}, {"datetaken": "2009-12-31 22:59:41", "license": "1", "title": "All NYE parties need a cool live band #hipsterNYE", "text": "", "album_id": "72157622991071411", "longitude": "-123.099500", "url_o": "https://farm5.staticflickr.com/4001/4232411171_50f0d5f7eb_o.jpg", "secret": "4d69c2e5cb", "media": "photo", "latitude": "49.285000", "id": "4232411171", "tags": "cameraphone iphone3gs"}, {"datetaken": "2009-12-31 23:07:57", "license": "1", "title": "Guitar pedals shot with the Hipstamatic #HipsterNYE", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2518/4232419105_7af9075cfc_o.jpg", "secret": "a964a74e12", "media": "photo", "latitude": "0", "id": "4232419105", "tags": "cameraphone iphone3gs"}, {"datetaken": "2009-12-31 23:15:40", "license": "1", "title": "New Years Eve 2009", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2650/4235006926_23b0ebd47f_o.jpg", "secret": "476d38b5aa", "media": "photo", "latitude": "0", "id": "4235006926", "tags": "friends party performance band myfriendlisa newyearseve2009"}, {"datetaken": "2009-12-31 23:20:09", "license": "1", "title": "New Years Eve 2009", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4235010494_c7677225a8_o.jpg", "secret": "71bf25300e", "media": "photo", "latitude": "0", "id": "4235010494", "tags": "friends party performance band myfriendlisa newyearseve2009"}, {"datetaken": "2009-12-31 23:27:55", "license": "1", "title": "New Years Eve 2009", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4234240129_f0f7b608d5_o.jpg", "secret": "f1d276dc2d", "media": "photo", "latitude": "0", "id": "4234240129", "tags": "friends party performance band myfriendlisa newyearseve2009"}, {"datetaken": "2009-12-31 23:28:05", "license": "1", "title": "New Years Eve 2009", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4234243853_e5882c92a4_o.jpg", "secret": "138d021d09", "media": "photo", "latitude": "0", "id": "4234243853", "tags": "friends party performance band myfriendlisa newyearseve2009"}, {"datetaken": "2009-12-31 23:38:26", "license": "1", "title": "New Years Eve 2009", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4235021220_a35bd207e3_o.jpg", "secret": "c80defef5a", "media": "photo", "latitude": "0", "id": "4235021220", "tags": "friends party performance band myfriendlisa newyearseve2009"}, {"datetaken": "2009-12-31 23:39:02", "license": "1", "title": "New Years Eve 2009", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2521/4235024774_e49b84b7b5_o.jpg", "secret": "ca11e52303", "media": "photo", "latitude": "0", "id": "4235024774", "tags": "friends party performance band myfriendlisa newyearseve2009"}, {"datetaken": "2009-12-31 23:40:13", "license": "1", "title": "New Years Eve 2009", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2594/4234254367_439c48f320_o.jpg", "secret": "b39941fc6a", "media": "photo", "latitude": "0", "id": "4234254367", "tags": "friends party performance band myfriendlisa newyearseve2009"}, {"datetaken": "2009-12-31 23:40:21", "license": "1", "title": "New Years Eve 2009", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4235032112_7afd1f3752_o.jpg", "secret": "b196f79966", "media": "photo", "latitude": "0", "id": "4235032112", "tags": "friends party performance band myfriendlisa newyearseve2009"}, {"datetaken": "2009-12-31 23:42:24", "license": "1", "title": "Hello Kitteh", "text": "", "album_id": "72157622991071411", "longitude": "-123.099500", "url_o": "https://farm3.staticflickr.com/2619/4232465703_494fe2e858_o.jpg", "secret": "73ebe1dd29", "media": "photo", "latitude": "49.285000", "id": "4232465703", "tags": "cameraphone iphone3gs"}, {"datetaken": "2010-01-01 00:22:46", "license": "1", "title": "New Years Eve 2009", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4235036002_881c7f1433_o.jpg", "secret": "412f1dc070", "media": "photo", "latitude": "0", "id": "4235036002", "tags": "friends party performance band myfriendlisa newyearseve2009"}, {"datetaken": "2010-01-01 00:22:58", "license": "1", "title": "New Years Eve 2009", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2780/4234265077_beb323217e_o.jpg", "secret": "94e5aa6cec", "media": "photo", "latitude": "0", "id": "4234265077", "tags": "friends party performance band whiskey single scotch malt auchentoshan myfriendlisa newyearseve2009"}, {"datetaken": "2010-01-01 00:24:27", "license": "1", "title": "Bella is tired", "text": "", "album_id": "72157622991071411", "longitude": "-123.099500", "url_o": "https://farm5.staticflickr.com/4015/4233292614_134612571b_o.jpg", "secret": "4ac3df216a", "media": "photo", "latitude": "49.285000", "id": "4233292614", "tags": "cameraphone iphone3gs"}, {"datetaken": "2010-01-01 01:34:21", "license": "1", "title": "Extreme Chopsticks #hipsternye", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4233372050_56ede16a61_o.jpg", "secret": "a5490074cc", "media": "photo", "latitude": "0", "id": "4233372050", "tags": "cameraphone iphone3gs"}, {"datetaken": "2010-01-01 01:56:07", "license": "1", "title": "New Years Eve 2009", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4235042876_be5a90776f_o.jpg", "secret": "ae0578002e", "media": "photo", "latitude": "0", "id": "4235042876", "tags": "friends party performance band myfriendlisa newyearseve2009"}, {"datetaken": "2010-01-01 01:58:52", "license": "1", "title": "New Years Eve 2009", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2490/4234272447_f3c4247187_o.jpg", "secret": "1c9b8e9e98", "media": "photo", "latitude": "0", "id": "4234272447", "tags": "friends party performance band myfriendlisa newyearseve2009"}, {"datetaken": "2010-01-01 02:03:11", "license": "1", "title": "New Years Eve 2009", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2508/4234276891_0ffa95849a_o.jpg", "secret": "ae0a0e5254", "media": "photo", "latitude": "0", "id": "4234276891", "tags": "friends party performance band myfriendlisa newyearseve2009"}, {"datetaken": "2010-01-01 02:07:26", "license": "1", "title": "New Years Eve 2009", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4235054890_314961ba0d_o.jpg", "secret": "2ac46c7eca", "media": "photo", "latitude": "0", "id": "4235054890", "tags": "friends party performance band myfriendlisa newyearseve2009"}, {"datetaken": "2010-01-01 02:13:01", "license": "1", "title": "New Years Eve 2009", "text": "", "album_id": "72157622991071411", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4234220779_7a253c74fc_o.jpg", "secret": "82ceb4b02f", "media": "photo", "latitude": "0", "id": "4234220779", "tags": "friends party performance band myfriendlisa newyearseve2009"}, {"datetaken": "2009-12-31 21:45:18", "license": "4", "title": "New Year's Eve party", "text": "", "album_id": "72157622991566633", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4234466545_96ed14de53_o.jpg", "secret": "248e27a05f", "media": "photo", "latitude": "0", "id": "4234466545", "tags": ""}, {"datetaken": "2009-12-31 22:14:42", "license": "4", "title": "New Year's Eve party", "text": "", "album_id": "72157622991566633", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4234467441_a349629a8e_o.jpg", "secret": "937c2cd985", "media": "photo", "latitude": "0", "id": "4234467441", "tags": ""}, {"datetaken": "2009-12-31 22:15:17", "license": "4", "title": "New Year's Eve party", "text": "", "album_id": "72157622991566633", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2789/4235242846_57fef157c6_o.jpg", "secret": "6b97ba0741", "media": "photo", "latitude": "0", "id": "4235242846", "tags": ""}, {"datetaken": "2009-12-31 22:16:10", "license": "4", "title": "New Year's Eve party", "text": "", "album_id": "72157622991566633", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4234468087_a48ec3eea2_o.jpg", "secret": "d0fee6661f", "media": "photo", "latitude": "0", "id": "4234468087", "tags": ""}, {"datetaken": "2009-12-31 22:16:51", "license": "4", "title": "New Year's Eve party", "text": "", "album_id": "72157622991566633", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4234468591_b715145423_o.jpg", "secret": "257a1b5bab", "media": "photo", "latitude": "0", "id": "4234468591", "tags": ""}, {"datetaken": "2009-12-31 22:16:56", "license": "4", "title": "New Year's Eve party", "text": "", "album_id": "72157622991566633", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4234469093_3356b0cf2a_o.jpg", "secret": "beecd32c60", "media": "photo", "latitude": "0", "id": "4234469093", "tags": ""}, {"datetaken": "2009-12-31 22:17:16", "license": "4", "title": "New Year's Eve party", "text": "", "album_id": "72157622991566633", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4234469417_d56c85b25e_o.jpg", "secret": "b485b805b9", "media": "photo", "latitude": "0", "id": "4234469417", "tags": ""}, {"datetaken": "2010-01-01 01:01:09", "license": "4", "title": "IMG_2526", "text": "", "album_id": "72157622991566633", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4234517129_3621481df4_o.jpg", "secret": "e98e49c328", "media": "photo", "latitude": "0", "id": "4234517129", "tags": ""}, {"datetaken": "2010-01-01 01:01:13", "license": "4", "title": "IMG_2527", "text": "", "album_id": "72157622991566633", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2489/4234474715_04c8a8b6b3_o.jpg", "secret": "18ac3e1c64", "media": "photo", "latitude": "0", "id": "4234474715", "tags": ""}, {"datetaken": "2010-01-01 01:36:47", "license": "4", "title": "IMG_2535", "text": "", "album_id": "72157622991566633", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2633/4235249988_0e1658bdef_o.jpg", "secret": "f426b1237e", "media": "photo", "latitude": "0", "id": "4235249988", "tags": ""}, {"datetaken": "2005-05-01 06:35:19", "license": "1", "title": "Coffee", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/11867531_cca5e35f63_o.jpg", "secret": "cca5e35f63", "media": "photo", "latitude": "0", "id": "11867531", "tags": "dilomay05"}, {"datetaken": "2005-05-01 08:00:39", "license": "1", "title": "The Bus", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/11867490_02b7418242_o.jpg", "secret": "02b7418242", "media": "photo", "latitude": "0", "id": "11867490", "tags": "dilomay05"}, {"datetaken": "2005-05-01 08:20:44", "license": "1", "title": "Dog Lounge", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/11867440_2344b0dd17_o.jpg", "secret": "2344b0dd17", "media": "photo", "latitude": "0", "id": "11867440", "tags": "dilomay05"}, {"datetaken": "2005-05-01 08:31:21", "license": "1", "title": "Kindergarten", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/11867412_15a182c9c0_o.jpg", "secret": "15a182c9c0", "media": "photo", "latitude": "0", "id": "11867412", "tags": "dilomay05"}, {"datetaken": "2005-05-01 08:33:58", "license": "1", "title": "We're at MARSEC 1", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/11867386_e3b1b5b2a0_o.jpg", "secret": "e3b1b5b2a0", "media": "photo", "latitude": "0", "id": "11867386", "tags": "dilomay05"}, {"datetaken": "2005-05-01 08:39:05", "license": "1", "title": "Seagull; City", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/11867330_e5c77c5e68_o.jpg", "secret": "e5c77c5e68", "media": "photo", "latitude": "0", "id": "11867330", "tags": "dilomay05"}, {"datetaken": "2005-05-01 08:43:42", "license": "1", "title": "Sunday Morning Ferry Trip", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/11867269_85edb3f2c3_o.jpg", "secret": "85edb3f2c3", "media": "photo", "latitude": "0", "id": "11867269", "tags": "dilomay05"}, {"datetaken": "2005-05-01 08:44:40", "license": "1", "title": "Play Freeboad!", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/11867211_5f341b73a1_o.jpg", "secret": "5f341b73a1", "media": "photo", "latitude": "0", "id": "11867211", "tags": "dilomay05"}, {"datetaken": "2005-05-01 08:45:15", "license": "1", "title": "Betwixt the Pickleforks", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/11867152_0169820f98_o.jpg", "secret": "0169820f98", "media": "photo", "latitude": "0", "id": "11867152", "tags": "dilomay05"}, {"datetaken": "2005-05-01 08:50:01", "license": "1", "title": "Like minds", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/11867134_43ca11da0e_o.jpg", "secret": "43ca11da0e", "media": "photo", "latitude": "0", "id": "11867134", "tags": "dilomay05"}, {"datetaken": "2005-05-01 08:57:56", "license": "1", "title": "Discovery Point", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/11867088_5dc71ca5c5_o.jpg", "secret": "5dc71ca5c5", "media": "photo", "latitude": "0", "id": "11867088", "tags": "dilomay05"}, {"datetaken": "2005-05-01 09:11:27", "license": "1", "title": "City in Haze", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/11867030_1f0c67ce57_o.jpg", "secret": "1f0c67ce57", "media": "photo", "latitude": "0", "id": "11867030", "tags": "dilomay05"}, {"datetaken": "2005-05-01 09:12:11", "license": "1", "title": "LIfe Ring", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/11867070_189d33faad_o.jpg", "secret": "189d33faad", "media": "photo", "latitude": "0", "id": "11867070", "tags": "dilomay05"}, {"datetaken": "2005-05-01 09:12:43", "license": "1", "title": "M.V. Tacoma", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/11866993_04c0dec419_o.jpg", "secret": "04c0dec419", "media": "photo", "latitude": "0", "id": "11866993", "tags": "dilomay05"}, {"datetaken": "2005-05-01 09:13:52", "license": "1", "title": "Life Ring", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/11866939_dfef8f3a97_o.jpg", "secret": "dfef8f3a97", "media": "photo", "latitude": "0", "id": "11866939", "tags": "dilomay05"}, {"datetaken": "2005-05-01 09:16:54", "license": "1", "title": "Landing", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/11866911_e31b60b48e_o.jpg", "secret": "e31b60b48e", "media": "photo", "latitude": "0", "id": "11866911", "tags": "dilomay05"}, {"datetaken": "2005-05-01 09:20:45", "license": "1", "title": "Getting off the Ferry", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/11866882_cf48e9d0f3_o.jpg", "secret": "cf48e9d0f3", "media": "photo", "latitude": "0", "id": "11866882", "tags": "dilomay05"}, {"datetaken": "2005-05-01 09:26:40", "license": "1", "title": "Contrarian Party?", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/11866817_106407d9c0_o.jpg", "secret": "106407d9c0", "media": "photo", "latitude": "0", "id": "11866817", "tags": "dilomay05 no"}, {"datetaken": "2005-05-01 09:30:41", "license": "1", "title": "Streamliner Diner", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/11866764_a2f3b1b76b_o.jpg", "secret": "a2f3b1b76b", "media": "photo", "latitude": "0", "id": "11866764", "tags": "dilomay05"}, {"datetaken": "2005-05-01 09:33:31", "license": "1", "title": "Left behind", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/11866724_07e1b976dd_o.jpg", "secret": "07e1b976dd", "media": "photo", "latitude": "0", "id": "11866724", "tags": "dilomay05"}, {"datetaken": "2005-05-01 09:36:15", "license": "1", "title": "Kitchen", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/11866691_fd14d5ebb4_o.jpg", "secret": "fd14d5ebb4", "media": "photo", "latitude": "0", "id": "11866691", "tags": "dilomay05"}, {"datetaken": "2005-05-01 09:38:45", "license": "1", "title": "Plates", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/11866651_3635f203e6_o.jpg", "secret": "3635f203e6", "media": "photo", "latitude": "0", "id": "11866651", "tags": "dilomay05"}, {"datetaken": "2005-05-01 10:21:28", "license": "1", "title": "Plant sale", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/11866576_b18e64a817_o.jpg", "secret": "b18e64a817", "media": "photo", "latitude": "0", "id": "11866576", "tags": "dilomay05"}, {"datetaken": "2005-05-01 10:29:03", "license": "1", "title": "Window of Barber Shop", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/11866540_d740f9c9af_o.jpg", "secret": "d740f9c9af", "media": "photo", "latitude": "0", "id": "11866540", "tags": "dilomay05"}, {"datetaken": "2005-05-01 10:29:12", "license": "1", "title": "Tonsorialist", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/11866466_4786f6d5b1_o.jpg", "secret": "4786f6d5b1", "media": "photo", "latitude": "0", "id": "11866466", "tags": "dilomay05"}, {"datetaken": "2005-05-01 10:43:36", "license": "1", "title": "Comfy Chair", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/11866396_98fe8e9349_o.jpg", "secret": "98fe8e9349", "media": "photo", "latitude": "0", "id": "11866396", "tags": "dilomay05"}, {"datetaken": "2005-05-01 10:59:15", "license": "1", "title": "Artists at Work", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/11866350_9db1d7e2bd_o.jpg", "secret": "9db1d7e2bd", "media": "photo", "latitude": "0", "id": "11866350", "tags": "dilomay05"}, {"datetaken": "2005-05-01 11:06:41", "license": "1", "title": "Palimpsest", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/11866298_ba9658dedf_o.jpg", "secret": "ba9658dedf", "media": "photo", "latitude": "0", "id": "11866298", "tags": "dilomay05"}, {"datetaken": "2005-05-01 11:07:49", "license": "1", "title": "Ivy covered Coffeehouse", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/11866262_6f51092e97_o.jpg", "secret": "6f51092e97", "media": "photo", "latitude": "0", "id": "11866262", "tags": "dilomay05"}, {"datetaken": "2005-05-01 11:11:43", "license": "1", "title": "Pegasus Paraphernalia", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/11866204_be1ab90963_o.jpg", "secret": "be1ab90963", "media": "photo", "latitude": "0", "id": "11866204", "tags": "dilomay05"}, {"datetaken": "2005-05-01 11:11:50", "license": "1", "title": "Huge Tea Ball", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/11866186_6bc31c47a7_o.jpg", "secret": "6bc31c47a7", "media": "photo", "latitude": "0", "id": "11866186", "tags": "dilomay05"}, {"datetaken": "2005-05-01 11:19:41", "license": "1", "title": "Poppy. Bee.", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/11866129_e3413189b0_o.jpg", "secret": "e3413189b0", "media": "photo", "latitude": "0", "id": "11866129", "tags": "dilomay05"}, {"datetaken": "2005-05-01 11:22:46", "license": "1", "title": "Root Cellar", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/11866056_60d5912acb_o.jpg", "secret": "60d5912acb", "media": "photo", "latitude": "0", "id": "11866056", "tags": "dilomay05"}, {"datetaken": "2005-05-01 11:24:19", "license": "1", "title": "Spurge and Fence", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/11865942_3dfb74d8db_o.jpg", "secret": "3dfb74d8db", "media": "photo", "latitude": "0", "id": "11865942", "tags": "dilomay05"}, {"datetaken": "2005-05-01 11:33:17", "license": "1", "title": "Gate Gargoyle", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/11865867_95d12e7b7e_o.jpg", "secret": "95d12e7b7e", "media": "photo", "latitude": "0", "id": "11865867", "tags": "dilomay05"}, {"datetaken": "2005-05-01 11:53:40", "license": "1", "title": "Southern Overexposure", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/11865671_6ece9ffe36_o.jpg", "secret": "6ece9ffe36", "media": "photo", "latitude": "0", "id": "11865671", "tags": "dilomay05"}, {"datetaken": "2005-05-01 12:28:43", "license": "1", "title": "Ha-ha-ha!", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/11865635_37e4318af9_o.jpg", "secret": "37e4318af9", "media": "photo", "latitude": "0", "id": "11865635", "tags": "dilomay05"}, {"datetaken": "2005-05-01 12:45:25", "license": "1", "title": "Youth Orchestra", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/11865596_d088ca2839_o.jpg", "secret": "d088ca2839", "media": "photo", "latitude": "0", "id": "11865596", "tags": "dilomay05"}, {"datetaken": "2005-05-01 12:46:17", "license": "1", "title": "Fountain", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/11865543_42af22a58f_o.jpg", "secret": "42af22a58f", "media": "photo", "latitude": "0", "id": "11865543", "tags": "dilomay05 shprint"}, {"datetaken": "2005-05-01 12:46:36", "license": "6", "title": "Cello Power", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/11865494_34bae1feed_o.jpg", "secret": "34bae1feed", "media": "photo", "latitude": "0", "id": "11865494", "tags": "dilomay05"}, {"datetaken": "2005-05-01 13:06:23", "license": "1", "title": "Amazing Batik", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/11865426_5a476ca58c_o.jpg", "secret": "5a476ca58c", "media": "photo", "latitude": "0", "id": "11865426", "tags": "dilomay05"}, {"datetaken": "2005-05-01 13:06:38", "license": "1", "title": "Batiks", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/11865340_7a1349f59e_o.jpg", "secret": "7a1349f59e", "media": "photo", "latitude": "0", "id": "11865340", "tags": "dilomay05"}, {"datetaken": "2005-05-01 13:11:04", "license": "1", "title": "Number Field", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/11865294_ae3497484a_o.jpg", "secret": "ae3497484a", "media": "photo", "latitude": "0", "id": "11865294", "tags": "dilomay05"}, {"datetaken": "2005-05-01 13:30:22", "license": "1", "title": "W23", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/11865166_9f62ec1cd4_o.jpg", "secret": "9f62ec1cd4", "media": "photo", "latitude": "0", "id": "11865166", "tags": "dilomay05"}, {"datetaken": "2005-05-01 13:49:17", "license": "1", "title": "Security Alert", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/11865122_8cc0e8c802_o.jpg", "secret": "8cc0e8c802", "media": "photo", "latitude": "0", "id": "11865122", "tags": "dilomay05"}, {"datetaken": "2005-05-01 13:56:36", "license": "1", "title": "Wenatchee", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/11865050_c6001a715f_o.jpg", "secret": "c6001a715f", "media": "photo", "latitude": "0", "id": "11865050", "tags": "dilomay05"}, {"datetaken": "2005-05-01 15:31:41", "license": "1", "title": "Shopping for Hawaiian Shirt Day", "text": "", "album_id": "290987", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/11864997_f02238a92f_o.jpg", "secret": "f02238a92f", "media": "photo", "latitude": "0", "id": "11864997", "tags": "dilomay05 shopping hawaii"}, {"datetaken": "2005-07-30 17:37:48", "license": "1", "title": "Kitty litter cake", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30162763_17462e6507_o.jpg", "secret": "17462e6507", "media": "photo", "latitude": "0", "id": "30162763", "tags": "chris birthdayparty brooklyn cake kittylittercake"}, {"datetaken": "2005-07-30 17:38:13", "license": "1", "title": "This one's my favorite", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30162925_c45ffc8138_o.jpg", "secret": "c45ffc8138", "media": "photo", "latitude": "0", "id": "30162925", "tags": "chris birthdayparty brooklyn cake kitty litter"}, {"datetaken": "2005-07-30 21:43:23", "license": "1", "title": "You're a wonder, Wonder Woman", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30440943_27ffca393a_o.jpg", "secret": "27ffca393a", "media": "photo", "latitude": "0", "id": "30440943", "tags": "chris brooklyn jimmy birthdayparty wonderwoman joneil"}, {"datetaken": "2005-07-30 21:58:57", "license": "1", "title": "It's all Bradford's fault", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30161654_82ea007ea7_o.jpg", "secret": "82ea007ea7", "media": "photo", "latitude": "0", "id": "30161654", "tags": "chris brooklyn bradford birthdayparty"}, {"datetaken": "2005-07-30 21:59:04", "license": "1", "title": "Mike!", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30161653_fe78468406_o.jpg", "secret": "fe78468406", "media": "photo", "latitude": "0", "id": "30161653", "tags": "mike brooklyn birthdayparty"}, {"datetaken": "2005-07-30 22:41:39", "license": "1", "title": "Cupcakes!", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30163107_92437895da_o.jpg", "secret": "92437895da", "media": "photo", "latitude": "0", "id": "30163107", "tags": "chris birthdayparty brooklyn cupcakes"}, {"datetaken": "2005-07-30 22:42:54", "license": "1", "title": "Allison displays her masterpiece", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30163267_fd4d0e6fc2_o.jpg", "secret": "fd4d0e6fc2", "media": "photo", "latitude": "0", "id": "30163267", "tags": "cake brooklyn allison chocolate birthdayparty"}, {"datetaken": "2005-07-30 22:49:15", "license": "1", "title": "Blaise is so tasty, so chocolatey, so delicious", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30163511_48144fd36c_o.jpg", "secret": "48144fd36c", "media": "photo", "latitude": "0", "id": "30163511", "tags": "chris dan brooklyn birthdayparty blaise tootsieroll ultrasparky bazima"}, {"datetaken": "2005-07-30 22:52:16", "license": "1", "title": "I'm old", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29872392_0a7e84586e_o.jpg", "secret": "0a7e84586e", "media": "photo", "latitude": "0", "id": "29872392", "tags": "birthday cake brooklyn chocolate booze"}, {"datetaken": "2005-07-30 22:55:17", "license": "1", "title": "Fire!", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30442237_8371ce835b_o.jpg", "secret": "8371ce835b", "media": "photo", "latitude": "0", "id": "30442237", "tags": "chris birthdayparty brooklyn"}, {"datetaken": "2005-07-30 22:55:43", "license": "1", "title": "For me?", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30161655_4cc2468d01_o.jpg", "secret": "4cc2468d01", "media": "photo", "latitude": "0", "id": "30161655", "tags": "chris cake brooklyn allison candles maria birthdayparty"}, {"datetaken": "2005-07-30 22:55:54", "license": "1", "title": "Party people", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30163697_d02df538e8_o.jpg", "secret": "d02df538e8", "media": "photo", "latitude": "0", "id": "30163697", "tags": "chris birthdayparty brooklyn"}, {"datetaken": "2005-07-30 22:56:02", "license": "1", "title": "More party people", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30163854_9c5a356b59_o.jpg", "secret": "9c5a356b59", "media": "photo", "latitude": "0", "id": "30163854", "tags": "chris birthdayparty brooklyn"}, {"datetaken": "2005-07-30 23:09:55", "license": "1", "title": "Hugh is a must for parties", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30164056_69ea5b14d1_o.jpg", "secret": "69ea5b14d1", "media": "photo", "latitude": "0", "id": "30164056", "tags": "chris birthdayparty brooklyn firespinning fire"}, {"datetaken": "2005-07-30 23:10:01", "license": "1", "title": "Fire!", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30164198_11022584df_o.jpg", "secret": "11022584df", "media": "photo", "latitude": "0", "id": "30164198", "tags": "chris birthdayparty brooklyn firespinning fire"}, {"datetaken": "2005-07-30 23:10:07", "license": "1", "title": "Round and round and round he goes", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30164374_7da8367cc4_o.jpg", "secret": "7da8367cc4", "media": "photo", "latitude": "0", "id": "30164374", "tags": "chris birthdayparty brooklyn firespinning fire"}, {"datetaken": "2005-07-30 23:33:39", "license": "1", "title": "On yer knees, punk", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30164705_65c63761f7_o.jpg", "secret": "65c63761f7", "media": "photo", "latitude": "0", "id": "30164705", "tags": "chris brooklyn mark birthdayparty kneeling marky"}, {"datetaken": "2005-07-30 23:33:46", "license": "1", "title": "Open up", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30161652_0ec44cc689_o.jpg", "secret": "0ec44cc689", "media": "photo", "latitude": "0", "id": "30161652", "tags": "chris brooklyn mark birthdayparty marky"}, {"datetaken": "2005-07-30 23:35:08", "license": "1", "title": "No, I haven't tried putting milk in it yet", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30161657_03b41f441e_o.jpg", "secret": "03b41f441e", "media": "photo", "latitude": "0", "id": "30161657", "tags": "chris birthdayparty brooklyn"}, {"datetaken": "2005-07-30 23:35:38", "license": "1", "title": "Such a happy face", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30161656_80487790e1_o.jpg", "secret": "80487790e1", "media": "photo", "latitude": "0", "id": "30161656", "tags": "birthdayparty brooklyn johnny john jan"}, {"datetaken": "2005-07-30 23:36:34", "license": "1", "title": "Hugh, super secret penis agent", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30442014_fc29a724a1_o.jpg", "secret": "fc29a724a1", "media": "photo", "latitude": "0", "id": "30442014", "tags": "chris brooklyn hugh birthdayparty"}, {"datetaken": "2005-07-31 00:01:14", "license": "1", "title": "Josecito samples the kitty litter cake", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30441832_1c308fac85_o.jpg", "secret": "1c308fac85", "media": "photo", "latitude": "0", "id": "30441832", "tags": "chris cake brooklyn jose lick birthdayparty litterbox josecito"}, {"datetaken": "2005-07-31 00:04:19", "license": "1", "title": "Bill Roundy", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30155271_b4033dcc78_o.jpg", "secret": "b4033dcc78", "media": "photo", "latitude": "0", "id": "30155271", "tags": "brooklyn bill birthdayparty"}, {"datetaken": "2005-07-31 00:18:27", "license": "1", "title": "*Smooch*", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30155275_1940eded9a_o.jpg", "secret": "1940eded9a", "media": "photo", "latitude": "0", "id": "30155275", "tags": "chris brooklyn mark birthdayparty marky"}, {"datetaken": "2005-07-31 00:18:58", "license": "1", "title": "I *heart* Andy", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30165333_63ef9dfb25_o.jpg", "secret": "63ef9dfb25", "media": "photo", "latitude": "0", "id": "30165333", "tags": "chris andy brooklyn birthdayparty"}, {"datetaken": "2005-07-31 00:23:39", "license": "1", "title": "I *heart* my old roomies", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30155274_51b468841d_o.jpg", "secret": "51b468841d", "media": "photo", "latitude": "0", "id": "30155274", "tags": "chris brooklyn john jan birthdayparty johnny"}, {"datetaken": "2005-07-31 00:24:04", "license": "1", "title": "Jase!", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30164918_622cc8d195_o.jpg", "secret": "622cc8d195", "media": "photo", "latitude": "0", "id": "30164918", "tags": "brooklyn birthdayparty jase"}, {"datetaken": "2005-07-31 00:24:11", "license": "1", "title": "Atticus!", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30165194_f1705281e3_o.jpg", "secret": "f1705281e3", "media": "photo", "latitude": "0", "id": "30165194", "tags": "brooklyn birthdayparty atticus"}, {"datetaken": "2005-07-31 00:25:12", "license": "1", "title": "Hmm, perhaps I shouldn't be drinking anymore", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30155273_e6e040343f_o.jpg", "secret": "e6e040343f", "media": "photo", "latitude": "0", "id": "30155273", "tags": "chris brooklyn drunk drinking birthdayparty rum atticus jase"}, {"datetaken": "2005-07-31 00:28:01", "license": "1", "title": "Buhzima", "text": "", "album_id": "675903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30155272_4681e4c04a_o.jpg", "secret": "4681e4c04a", "media": "photo", "latitude": "0", "id": "30155272", "tags": "brooklyn birthdayparty blaise bazima"}, {"datetaken": "2005-07-31 16:42:50", "license": "1", "title": "intersection", "text": "", "album_id": "679261", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30350010_7bd05f27dd_o.jpg", "secret": "7bd05f27dd", "media": "photo", "latitude": "0", "id": "30350010", "tags": "capitolhill seattle capitolhillblockparty"}, {"datetaken": "2005-07-31 16:43:54", "license": "1", "title": "horses collage", "text": "", "album_id": "679261", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30350277_9fbd724839_o.jpg", "secret": "9fbd724839", "media": "photo", "latitude": "0", "id": "30350277", "tags": "capitolhill seattle capitolhillblockparty bandofhorses"}, {"datetaken": "2005-07-31 16:44:03", "license": "1", "title": "bookish", "text": "", "album_id": "679261", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30350211_d6baff0ac7_o.jpg", "secret": "d6baff0ac7", "media": "photo", "latitude": "0", "id": "30350211", "tags": "capitolhill seattle capitolhillblockparty reading"}, {"datetaken": "2005-07-31 18:25:25", "license": "1", "title": "(Band of) horses", "text": "", "album_id": "679261", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30127725_3e00379875_o.jpg", "secret": "3e00379875", "media": "photo", "latitude": "0", "id": "30127725", "tags": "sidekick camphone livemusic bandofhorses capitolhill seattle"}, {"datetaken": "2005-07-31 20:13:15", "license": "1", "title": "Contests!", "text": "", "album_id": "679261", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30157729_a3a318d12a_o.jpg", "secret": "a3a318d12a", "media": "photo", "latitude": "0", "id": "30157729", "tags": "sidekick camphone capitolhill blockparty seattle"}, {"datetaken": "2005-07-31 20:42:04", "license": "1", "title": "built to spill", "text": "", "album_id": "679261", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30166237_112e7e0139_o.jpg", "secret": "112e7e0139", "media": "photo", "latitude": "0", "id": "30166237", "tags": "sidekick camphone capitolhill blockparty seattle builttospill"}, {"datetaken": "2005-07-31 20:42:07", "license": "1", "title": "Block party", "text": "", "album_id": "679261", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30166247_1881440251_o.jpg", "secret": "1881440251", "media": "photo", "latitude": "0", "id": "30166247", "tags": "sidekick camphone capitolhill blockparty seattle"}, {"datetaken": "2005-07-31 20:42:11", "license": "1", "title": "Block party (aqueduct)", "text": "", "album_id": "679261", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30166266_048915bfd1_o.jpg", "secret": "048915bfd1", "media": "photo", "latitude": "0", "id": "30166266", "tags": "sidekick camphone capitolhill seattle blockparty aqueduct livemusic"}, {"datetaken": "2005-07-31 21:29:45", "license": "1", "title": "ring toss", "text": "", "album_id": "679261", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30350376_42dda66af3_o.jpg", "secret": "42dda66af3", "media": "photo", "latitude": "0", "id": "30350376", "tags": "capitolhill seattle capitolhillblockparty blockparty"}, {"datetaken": "2005-07-31 21:47:47", "license": "1", "title": "built to spill", "text": "", "album_id": "679261", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30350549_c2b59bb69a_o.jpg", "secret": "c2b59bb69a", "media": "photo", "latitude": "0", "id": "30350549", "tags": "capitolhill seattle capitolhillblockparty"}, {"datetaken": "2005-07-31 22:13:27", "license": "1", "title": "box seats", "text": "", "album_id": "679261", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30350646_5e13096517_o.jpg", "secret": "5e13096517", "media": "photo", "latitude": "0", "id": "30350646", "tags": "capitolhill seattle capitolhillblockparty"}, {"datetaken": "2005-07-31 22:34:49", "license": "1", "title": "love is in the air", "text": "", "album_id": "679261", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30350830_8ad948f8b6_o.jpg", "secret": "8ad948f8b6", "media": "photo", "latitude": "0", "id": "30350830", "tags": "capitolhill seattle capitolhillblockparty"}, {"datetaken": "2005-08-01 01:54:21", "license": "1", "title": "afterparty", "text": "", "album_id": "679261", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30351077_4e5cdc50c9_o.jpg", "secret": "4e5cdc50c9", "media": "photo", "latitude": "0", "id": "30351077", "tags": "capitolhill seattle capitolhillblockparty"}, {"datetaken": "2005-07-31 18:21:18", "license": "2", "title": "IMG_0118", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30097899_46f75c2edd_o.jpg", "secret": "46f75c2edd", "media": "photo", "latitude": "0", "id": "30097899", "tags": "matt birthdayparty carissa deannas30th"}, {"datetaken": "2005-07-31 18:22:40", "license": "2", "title": "IMG_0126", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30098217_48956ec1e3_o.jpg", "secret": "48956ec1e3", "media": "photo", "latitude": "0", "id": "30098217", "tags": "me brad birthdayparty mallory deannas30th"}, {"datetaken": "2005-07-31 18:23:17", "license": "2", "title": "IMG_0128", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30098359_1b58949f5a_o.jpg", "secret": "1b58949f5a", "media": "photo", "latitude": "0", "id": "30098359", "tags": "me brad birthdayparty mallory deannas30th"}, {"datetaken": "2005-07-31 18:23:35", "license": "2", "title": "IMG_0130", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30098429_4bb97c7493_o.jpg", "secret": "4bb97c7493", "media": "photo", "latitude": "0", "id": "30098429", "tags": "matt birthdayparty mallory deannas30th"}, {"datetaken": "2005-07-31 18:24:15", "license": "2", "title": "IMG_0134", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30098552_853b1283dc_o.jpg", "secret": "853b1283dc", "media": "photo", "latitude": "0", "id": "30098552", "tags": "matt birthdayparty 30th mallory deannas deannas30th"}, {"datetaken": "2005-07-31 18:24:30", "license": "2", "title": "IMG_0136", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30098613_f9da6149bb_o.jpg", "secret": "f9da6149bb", "media": "photo", "latitude": "0", "id": "30098613", "tags": "birthdayparty 30th mallory deannas deannas30th"}, {"datetaken": "2005-07-31 19:10:00", "license": "2", "title": "classic just classic", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30429377_0bcbb37d0a_o.jpg", "secret": "0bcbb37d0a", "media": "photo", "latitude": "0", "id": "30429377", "tags": "matt 30th mallory deannas"}, {"datetaken": "2005-08-01 17:07:24", "license": "2", "title": "IMG_0120", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30428162_ddffd515ba_o.jpg", "secret": "ddffd515ba", "media": "photo", "latitude": "0", "id": "30428162", "tags": "me brad"}, {"datetaken": "2005-08-01 17:07:42", "license": "2", "title": "stupid face", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30428246_f970012d40_o.jpg", "secret": "f970012d40", "media": "photo", "latitude": "0", "id": "30428246", "tags": "me brad"}, {"datetaken": "2005-08-01 17:07:57", "license": "2", "title": "chickaboom", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30428305_6e19c2e9d9_o.jpg", "secret": "6e19c2e9d9", "media": "photo", "latitude": "0", "id": "30428305", "tags": "carissa"}, {"datetaken": "2005-08-01 17:08:14", "license": "2", "title": "Chickaboom..I'm cool, really", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30428370_1643aef5a0_o.jpg", "secret": "1643aef5a0", "media": "photo", "latitude": "0", "id": "30428370", "tags": "edited carissa"}, {"datetaken": "2005-08-01 17:08:31", "license": "2", "title": "IMG_0126", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30428445_0616406641_o.jpg", "secret": "0616406641", "media": "photo", "latitude": "0", "id": "30428445", "tags": "me brad mallory"}, {"datetaken": "2005-08-01 17:08:49", "license": "2", "title": "b & w", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30428531_a62063c943_o.jpg", "secret": "a62063c943", "media": "photo", "latitude": "0", "id": "30428531", "tags": "me brad mallory deannas"}, {"datetaken": "2005-08-01 17:09:09", "license": "2", "title": "Mallory & Brad", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30428641_348cad038a_o.jpg", "secret": "348cad038a", "media": "photo", "latitude": "0", "id": "30428641", "tags": "me brad 30th mallory deannas"}, {"datetaken": "2005-08-01 17:09:25", "license": "2", "title": "smile everyone", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30428730_8619335d87_o.jpg", "secret": "8619335d87", "media": "photo", "latitude": "0", "id": "30428730", "tags": "matt 30th mallory deannas"}, {"datetaken": "2005-08-01 17:09:42", "license": "2", "title": "Chickaboom", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30428812_f9887ae75a_o.jpg", "secret": "f9887ae75a", "media": "photo", "latitude": "0", "id": "30428812", "tags": "30th carissa deannas"}, {"datetaken": "2005-08-01 17:10:02", "license": "2", "title": "Strike a pose", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30428902_fdf49f76ba_o.jpg", "secret": "fdf49f76ba", "media": "photo", "latitude": "0", "id": "30428902", "tags": "matt 30th mallory deannas"}, {"datetaken": "2005-08-01 17:10:21", "license": "2", "title": "Mallory, pool break", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30428979_ebeda78b78_o.jpg", "secret": "ebeda78b78", "media": "photo", "latitude": "0", "id": "30428979", "tags": "30th mallory deannas"}, {"datetaken": "2005-08-01 17:10:38", "license": "2", "title": "Matt, pool break", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30429045_dc14efc608_o.jpg", "secret": "dc14efc608", "media": "photo", "latitude": "0", "id": "30429045", "tags": "matt 30th deannas"}, {"datetaken": "2005-08-01 17:10:54", "license": "2", "title": "Beer Bong", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30429110_148f7bc100_o.jpg", "secret": "148f7bc100", "media": "photo", "latitude": "0", "id": "30429110", "tags": "shawn 30th deannas jerimiah"}, {"datetaken": "2005-08-01 17:11:10", "license": "2", "title": "Deanna & Erik", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30429170_51282356e9_o.jpg", "secret": "51282356e9", "media": "photo", "latitude": "0", "id": "30429170", "tags": "erik 30th deanna"}, {"datetaken": "2005-08-01 17:11:26", "license": "2", "title": "laughing fit", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30429266_e0f1675c22_o.jpg", "secret": "e0f1675c22", "media": "photo", "latitude": "0", "id": "30429266", "tags": "matt 30th deannas"}, {"datetaken": "2005-08-01 17:12:12", "license": "2", "title": "A chip is much better tasting than a rose", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30429488_fc5fe50a64_o.jpg", "secret": "fc5fe50a64", "media": "photo", "latitude": "0", "id": "30429488", "tags": "matt 30th mallory deannas"}, {"datetaken": "2005-08-01 17:12:28", "license": "2", "title": "Mallory & Brad", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30429556_1fe32b2fba_o.jpg", "secret": "1fe32b2fba", "media": "photo", "latitude": "0", "id": "30429556", "tags": "me brad 30th mallory deannas"}, {"datetaken": "2005-08-01 17:12:52", "license": "2", "title": "Doci Doe", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30429664_d87ec7dd59_o.jpg", "secret": "d87ec7dd59", "media": "photo", "latitude": "0", "id": "30429664", "tags": "matt 30th mallory deannas"}, {"datetaken": "2005-08-01 17:13:10", "license": "2", "title": "Doci Doe", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30429774_fecd785791_o.jpg", "secret": "fecd785791", "media": "photo", "latitude": "0", "id": "30429774", "tags": "matt 30th mallory deannas"}, {"datetaken": "2005-08-01 17:13:29", "license": "2", "title": "Drunk Falls on Floor", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30429855_5b2730d135_o.jpg", "secret": "5b2730d135", "media": "photo", "latitude": "0", "id": "30429855", "tags": "matt 30th deannas"}, {"datetaken": "2005-08-01 17:13:47", "license": "2", "title": "Matt & Mallory Dancing", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30429913_51cb7d9db4_o.jpg", "secret": "51cb7d9db4", "media": "photo", "latitude": "0", "id": "30429913", "tags": "matt 30th mallory deannas"}, {"datetaken": "2005-08-01 17:14:06", "license": "2", "title": "Yoga, country dancing style", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30430007_a85da7e00c_o.jpg", "secret": "a85da7e00c", "media": "photo", "latitude": "0", "id": "30430007", "tags": "matt 30th mallory deannas"}, {"datetaken": "2005-08-01 17:14:22", "license": "2", "title": "Doiiii", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30430088_bb45e0b966_o.jpg", "secret": "bb45e0b966", "media": "photo", "latitude": "0", "id": "30430088", "tags": "matt 30th mallory deannas"}, {"datetaken": "2005-08-01 17:14:41", "license": "2", "title": "Mallory & Matt", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30430165_4df18b0c09_o.jpg", "secret": "4df18b0c09", "media": "photo", "latitude": "0", "id": "30430165", "tags": "matt 30th mallory deannas"}, {"datetaken": "2005-08-01 17:14:57", "license": "2", "title": "Mallory & Matt", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30430232_946bd22cd7_o.jpg", "secret": "946bd22cd7", "media": "photo", "latitude": "0", "id": "30430232", "tags": "matt 30th mallory deannas"}, {"datetaken": "2005-08-01 17:15:19", "license": "2", "title": "IMG_0169", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30430344_6e3f13da88_o.jpg", "secret": "6e3f13da88", "media": "photo", "latitude": "0", "id": "30430344", "tags": "me brad"}, {"datetaken": "2005-08-01 17:15:39", "license": "2", "title": "Brad and the blonde lady", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30430419_3ba038ebad_o.jpg", "secret": "3ba038ebad", "media": "photo", "latitude": "0", "id": "30430419", "tags": "me brad 30th deannas"}, {"datetaken": "2005-08-01 17:15:57", "license": "2", "title": "Brad and the blonde lady", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30430519_96e1dbd3c5_o.jpg", "secret": "96e1dbd3c5", "media": "photo", "latitude": "0", "id": "30430519", "tags": "me brad 30th deannas"}, {"datetaken": "2005-08-01 17:16:11", "license": "2", "title": "Mallory", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30430595_b07dddc187_o.jpg", "secret": "b07dddc187", "media": "photo", "latitude": "0", "id": "30430595", "tags": "30th mallory deannas"}, {"datetaken": "2005-08-01 17:16:30", "license": "2", "title": "Brad and the blonde lady", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30430711_9ce3d7b8fa_o.jpg", "secret": "9ce3d7b8fa", "media": "photo", "latitude": "0", "id": "30430711", "tags": "me brad 30th deannas"}, {"datetaken": "2005-08-01 17:16:46", "license": "2", "title": "Mallory and the blonde lady", "text": "", "album_id": "72157594171848171", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30430798_bb6c0836b2_o.jpg", "secret": "bb6c0836b2", "media": "photo", "latitude": "0", "id": "30430798", "tags": "30th mallory deannas"}, {"datetaken": "2004-09-01 07:40:57", "license": "1", "title": "Emily", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315395_6bef3aee01_o.jpg", "secret": "6bef3aee01", "media": "photo", "latitude": "0", "id": "315395", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:41:53", "license": "1", "title": "Behee", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315398_b8fa16c675_o.jpg", "secret": "b8fa16c675", "media": "photo", "latitude": "0", "id": "315398", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:42:56", "license": "1", "title": "Collin and friends", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315399_86837b67e4_o.jpg", "secret": "86837b67e4", "media": "photo", "latitude": "0", "id": "315399", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:43:58", "license": "1", "title": "Rob", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315411_212b1169dc_o.jpg", "secret": "212b1169dc", "media": "photo", "latitude": "0", "id": "315411", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:44:54", "license": "1", "title": "Steve arrives", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315416_07fa71d618_o.jpg", "secret": "07fa71d618", "media": "photo", "latitude": "0", "id": "315416", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:45:42", "license": "1", "title": "Jeremy and Janae", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315417_dcee2e4680_o.jpg", "secret": "dcee2e4680", "media": "photo", "latitude": "0", "id": "315417", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:46:41", "license": "1", "title": "Micah, Sharon, Demond and Amanda discuss the rules", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315429_90851c7eef_o.jpg", "secret": "90851c7eef", "media": "photo", "latitude": "0", "id": "315429", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:47:37", "license": "1", "title": "Me and Isaac", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315437_86d28e0495_o.jpg", "secret": "86d28e0495", "media": "photo", "latitude": "0", "id": "315437", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:48:34", "license": "1", "title": "A room full of technical wizards", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315445_de1b29cb1b_o.jpg", "secret": "de1b29cb1b", "media": "photo", "latitude": "0", "id": "315445", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:49:33", "license": "1", "title": "Lil' Janae", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315447_26913aacfe_o.jpg", "secret": "26913aacfe", "media": "photo", "latitude": "0", "id": "315447", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:50:25", "license": "1", "title": "David in the trophy pose", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315454_7b533502c4_o.jpg", "secret": "7b533502c4", "media": "photo", "latitude": "0", "id": "315454", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:51:10", "license": "1", "title": "John \"The destroyer\" Holland", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315457_e56f04e725_o.jpg", "secret": "e56f04e725", "media": "photo", "latitude": "0", "id": "315457", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:51:57", "license": "1", "title": "Rob trying to bowl on other people's lanes", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315458_d1323678f1_o.jpg", "secret": "d1323678f1", "media": "photo", "latitude": "0", "id": "315458", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:52:50", "license": "1", "title": "caught cheating...", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315461_dae464e58a_o.jpg", "secret": "dae464e58a", "media": "photo", "latitude": "0", "id": "315461", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:53:51", "license": "1", "title": "Shuffling balls", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315465_3ed44e6d4d_o.jpg", "secret": "3ed44e6d4d", "media": "photo", "latitude": "0", "id": "315465", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:54:44", "license": "1", "title": "Lil' Ike", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315467_d55d64b72f_o.jpg", "secret": "d55d64b72f", "media": "photo", "latitude": "0", "id": "315467", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:55:38", "license": "1", "title": "Ken displays \"The Hammer\"", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315472_bb194354a1_o.jpg", "secret": "bb194354a1", "media": "photo", "latitude": "0", "id": "315472", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:56:39", "license": "1", "title": "Scoot in repose", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315474_9d25917f61_o.jpg", "secret": "9d25917f61", "media": "photo", "latitude": "0", "id": "315474", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:57:24", "license": "1", "title": "Behee was telling a joke but then forgot the punchline", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315476_cb4fbfcf89_o.jpg", "secret": "cb4fbfcf89", "media": "photo", "latitude": "0", "id": "315476", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:58:04", "license": "1", "title": "Soupy was very excited to recieve this one.", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315479_455c00aae5_o.jpg", "secret": "455c00aae5", "media": "photo", "latitude": "0", "id": "315479", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:58:52", "license": "1", "title": "It's the end of '97 and I'm still looking goofy", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315482_a1312e714e_o.jpg", "secret": "a1312e714e", "media": "photo", "latitude": "0", "id": "315482", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 07:59:31", "license": "1", "title": "Astrachan exclaims: \"I will be well manicured!\"", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315484_5a3894ec58_o.jpg", "secret": "5a3894ec58", "media": "photo", "latitude": "0", "id": "315484", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 08:00:15", "license": "1", "title": "Wow! This really is cosmic bowling", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315491_71131f4da6_o.jpg", "secret": "71131f4da6", "media": "photo", "latitude": "0", "id": "315491", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 08:01:05", "license": "1", "title": "Rob loves the Pat Boone Christmas tunes", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315498_e802b35463_o.jpg", "secret": "e802b35463", "media": "photo", "latitude": "0", "id": "315498", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 08:01:49", "license": "1", "title": "Scoot opens his mystery gift (secretly hoping for bacon)", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315501_4d8238aeaa_o.jpg", "secret": "4d8238aeaa", "media": "photo", "latitude": "0", "id": "315501", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 08:02:27", "license": "1", "title": "Because nothing says Susan Parker like a NASCAR record", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315502_41d4590d1e_o.jpg", "secret": "41d4590d1e", "media": "photo", "latitude": "0", "id": "315502", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 08:03:21", "license": "1", "title": "John Holland with tons of former employee's business cards", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315507_a353c6c0dc_o.jpg", "secret": "a353c6c0dc", "media": "photo", "latitude": "0", "id": "315507", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 08:04:01", "license": "1", "title": "Jeremy with the mystery gift of unmentionable evil", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/315510_d916c7b1b2_o.jpg", "secret": "d916c7b1b2", "media": "photo", "latitude": "0", "id": "315510", "tags": "bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2004-09-01 09:27:09", "license": "1", "title": "Demond excitedly opens his Sea Monkeys\u2122!", "text": "", "album_id": "6998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/316018_54a52b5549_o.jpg", "secret": "54a52b5549", "media": "photo", "latitude": "0", "id": "316018", "tags": "monkey smile glasses bowling blairlake bowlarama white elephant gift party 1997 web company old pics"}, {"datetaken": "2003-06-28 19:59:23", "license": "1", "title": "000_0002", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17050800_6476e441ad_o.jpg", "secret": "6476e441ad", "media": "photo", "latitude": "0", "id": "17050800", "tags": "pennysparty"}, {"datetaken": "2003-06-28 19:59:36", "license": "1", "title": "000_0003", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17050817_bdd8ea71ac_o.jpg", "secret": "bdd8ea71ac", "media": "photo", "latitude": "0", "id": "17050817", "tags": "pennysparty"}, {"datetaken": "2003-06-28 21:52:41", "license": "1", "title": "000_0004", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17050828_6b704fee4a_o.jpg", "secret": "6b704fee4a", "media": "photo", "latitude": "0", "id": "17050828", "tags": "pennysparty"}, {"datetaken": "2003-06-28 21:52:55", "license": "1", "title": "000_0005", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17050837_b02d6e5e8c_o.jpg", "secret": "b02d6e5e8c", "media": "photo", "latitude": "0", "id": "17050837", "tags": "pennysparty"}, {"datetaken": "2003-06-28 22:02:49", "license": "1", "title": "000_0007", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17050845_2190f9e884_o.jpg", "secret": "2190f9e884", "media": "photo", "latitude": "0", "id": "17050845", "tags": "pennysparty"}, {"datetaken": "2003-06-28 22:07:40", "license": "1", "title": "000_0008", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17050852_a622baeaff_o.jpg", "secret": "a622baeaff", "media": "photo", "latitude": "0", "id": "17050852", "tags": "pennysparty"}, {"datetaken": "2003-06-28 22:09:13", "license": "1", "title": "000_0009", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17050869_429ebf4233_o.jpg", "secret": "429ebf4233", "media": "photo", "latitude": "0", "id": "17050869", "tags": "pennysparty"}, {"datetaken": "2003-06-29 00:00:33", "license": "1", "title": "000_0015", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17050548_c26c0001ee_o.jpg", "secret": "c26c0001ee", "media": "photo", "latitude": "0", "id": "17050548", "tags": "pennysparty"}, {"datetaken": "2003-06-29 00:31:38", "license": "1", "title": "000_0017", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17050566_29703d4008_o.jpg", "secret": "29703d4008", "media": "photo", "latitude": "0", "id": "17050566", "tags": "pennysparty"}, {"datetaken": "2003-06-29 00:32:21", "license": "1", "title": "000_0019", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17050584_87ea38a4ef_o.jpg", "secret": "87ea38a4ef", "media": "photo", "latitude": "0", "id": "17050584", "tags": "pennysparty"}, {"datetaken": "2003-06-29 00:58:58", "license": "1", "title": "000_0020", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17050591_e0645eb690_o.jpg", "secret": "e0645eb690", "media": "photo", "latitude": "0", "id": "17050591", "tags": "pennysparty"}, {"datetaken": "2003-06-29 01:37:34", "license": "1", "title": "000_0021", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17050611_3836ec0503_o.jpg", "secret": "3836ec0503", "media": "photo", "latitude": "0", "id": "17050611", "tags": "pennysparty"}, {"datetaken": "2003-06-29 01:37:55", "license": "1", "title": "000_0022", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17050629_d51a5cf351_o.jpg", "secret": "d51a5cf351", "media": "photo", "latitude": "0", "id": "17050629", "tags": "pennysparty"}, {"datetaken": "2003-06-29 01:38:18", "license": "1", "title": "000_0023", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17050658_09f7ede963_o.jpg", "secret": "09f7ede963", "media": "photo", "latitude": "0", "id": "17050658", "tags": "pennysparty"}, {"datetaken": "2003-06-29 01:38:37", "license": "1", "title": "000_0024", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17050681_e053a39f12_o.jpg", "secret": "e053a39f12", "media": "photo", "latitude": "0", "id": "17050681", "tags": "pennysparty"}, {"datetaken": "2003-06-29 01:39:13", "license": "1", "title": "000_0025", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17050704_773a5bf1f7_o.jpg", "secret": "773a5bf1f7", "media": "photo", "latitude": "0", "id": "17050704", "tags": "pennysparty"}, {"datetaken": "2003-06-29 01:40:01", "license": "1", "title": "000_0026", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17050714_7e127aeba6_o.jpg", "secret": "7e127aeba6", "media": "photo", "latitude": "0", "id": "17050714", "tags": "pennysparty"}, {"datetaken": "2003-06-29 01:43:59", "license": "1", "title": "000_0028", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17050729_05faa813f1_o.jpg", "secret": "05faa813f1", "media": "photo", "latitude": "0", "id": "17050729", "tags": "pennysparty"}, {"datetaken": "2003-06-29 01:47:59", "license": "1", "title": "000_0029", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17050736_b1b81d43c9_o.jpg", "secret": "b1b81d43c9", "media": "photo", "latitude": "0", "id": "17050736", "tags": "pennysparty"}, {"datetaken": "2003-06-29 01:48:16", "license": "1", "title": "000_0030", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17050747_f97483065c_o.jpg", "secret": "f97483065c", "media": "photo", "latitude": "0", "id": "17050747", "tags": "pennysparty"}, {"datetaken": "2003-06-29 01:48:31", "license": "1", "title": "000_0031", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17050774_7025ce96a0_o.jpg", "secret": "7025ce96a0", "media": "photo", "latitude": "0", "id": "17050774", "tags": "pennysparty"}, {"datetaken": "2003-06-29 01:49:05", "license": "1", "title": "000_0032", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17050785_9a86a00f9c_o.jpg", "secret": "9a86a00f9c", "media": "photo", "latitude": "0", "id": "17050785", "tags": "pennysparty"}, {"datetaken": "2003-06-29 02:38:21", "license": "1", "title": "000_0033", "text": "", "album_id": "406196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17050789_39e540b711_o.jpg", "secret": "39e540b711", "media": "photo", "latitude": "0", "id": "17050789", "tags": "pennysparty"}, {"datetaken": "2005-07-02 20:29:54", "license": "1", "title": "200204200069F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23165143_68f64f303d_o.jpg", "secret": "68f64f303d", "media": "photo", "latitude": "0", "id": "23165143", "tags": "fridayharborlabs party virginia ryan"}, {"datetaken": "2005-07-02 20:29:57", "license": "1", "title": "200204200075F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23165152_bfe237d59b_o.jpg", "secret": "bfe237d59b", "media": "photo", "latitude": "0", "id": "23165152", "tags": "fridayharborlabs party lisa andrewm"}, {"datetaken": "2005-07-02 20:29:58", "license": "1", "title": "200204200072F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23165153_f7bec4b446_o.jpg", "secret": "f7bec4b446", "media": "photo", "latitude": "0", "id": "23165153", "tags": "fridayharborlabs party ryan bradl"}, {"datetaken": "2005-07-02 20:29:59", "license": "1", "title": "200204200077F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23165157_4e95d267ac_o.jpg", "secret": "4e95d267ac", "media": "photo", "latitude": "0", "id": "23165157", "tags": "fridayharborlabs party andrewm"}, {"datetaken": "2005-07-02 22:32:39", "license": "1", "title": "200204290172F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23186261_39a28f513d_o.jpg", "secret": "39a28f513d", "media": "photo", "latitude": "0", "id": "23186261", "tags": "fridayharborlabs rochelle andrewm"}, {"datetaken": "2005-07-02 22:32:43", "license": "1", "title": "200204290156F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23186274_e6fcb27a3c_o.jpg", "secret": "e6fcb27a3c", "media": "photo", "latitude": "0", "id": "23186274", "tags": "fridayharborlabs amandas heatherm"}, {"datetaken": "2005-07-02 22:32:48", "license": "1", "title": "200204290165F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23186291_164ac40606_o.jpg", "secret": "164ac40606", "media": "photo", "latitude": "0", "id": "23186291", "tags": "fridayharborlabs amandas"}, {"datetaken": "2005-07-02 22:32:49", "license": "1", "title": "200204290154F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23186295_6daef7cdac_o.jpg", "secret": "6daef7cdac", "media": "photo", "latitude": "0", "id": "23186295", "tags": "fridayharborlabs heatherm"}, {"datetaken": "2005-07-02 22:32:54", "license": "1", "title": "200204290117F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23186316_adf47bd4a7_o.jpg", "secret": "adf47bd4a7", "media": "photo", "latitude": "0", "id": "23186316", "tags": "fridayharborlabs rory"}, {"datetaken": "2005-07-02 22:34:19", "license": "1", "title": "200204290169F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23186602_305fbcf83e_o.jpg", "secret": "305fbcf83e", "media": "photo", "latitude": "0", "id": "23186602", "tags": "fridayharborlabs"}, {"datetaken": "2005-07-02 22:34:20", "license": "1", "title": "200204290110F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23186605_a0249d3bf7_o.jpg", "secret": "a0249d3bf7", "media": "photo", "latitude": "0", "id": "23186605", "tags": "fridayharborlabs heatherm"}, {"datetaken": "2005-07-02 22:34:22", "license": "1", "title": "200204290112F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23186610_f5661b2d75_o.jpg", "secret": "f5661b2d75", "media": "photo", "latitude": "0", "id": "23186610", "tags": "fridayharborlabs heatherm"}, {"datetaken": "2005-07-02 22:34:24", "license": "1", "title": "200204290163F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23186615_b1887a7dae_o.jpg", "secret": "b1887a7dae", "media": "photo", "latitude": "0", "id": "23186615", "tags": "fridayharborlabs jung"}, {"datetaken": "2005-07-02 22:34:26", "license": "1", "title": "200204290170F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23186618_518619899a_o.jpg", "secret": "518619899a", "media": "photo", "latitude": "0", "id": "23186618", "tags": "fridayharborlabs"}, {"datetaken": "2005-07-02 22:34:29", "license": "1", "title": "200204290171F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23186631_51a2fc4088_o.jpg", "secret": "51a2fc4088", "media": "photo", "latitude": "0", "id": "23186631", "tags": "fridayharborlabs heatherm"}, {"datetaken": "2005-07-02 22:34:30", "license": "1", "title": "200204290166F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23186634_f8977471bb_o.jpg", "secret": "f8977471bb", "media": "photo", "latitude": "0", "id": "23186634", "tags": "fridayharborlabs jasong"}, {"datetaken": "2005-07-02 22:34:32", "license": "1", "title": "200204290118F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23186637_e750213e25_o.jpg", "secret": "e750213e25", "media": "photo", "latitude": "0", "id": "23186637", "tags": "fridayharborlabs heatherm"}, {"datetaken": "2005-07-02 22:34:33", "license": "1", "title": "200204290161F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23186638_2758b620e0_o.jpg", "secret": "2758b620e0", "media": "photo", "latitude": "0", "id": "23186638", "tags": "fridayharborlabs heatherm"}, {"datetaken": "2005-07-02 22:34:34", "license": "1", "title": "200204290168F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23186641_cdc3e8e5e6_o.jpg", "secret": "cdc3e8e5e6", "media": "photo", "latitude": "0", "id": "23186641", "tags": "fridayharborlabs"}, {"datetaken": "2005-07-02 22:58:03", "license": "1", "title": "200204300078F", "text": "", "album_id": "533451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23189833_ca47392688_o.jpg", "secret": "ca47392688", "media": "photo", "latitude": "0", "id": "23189833", "tags": "fridayharborlabs amandas"}, {"datetaken": "2005-07-02 10:57:24", "license": "1", "title": "People walking towards the demonstration", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23052844_b03e6d25c0_o.jpg", "secret": "b03e6d25c0", "media": "photo", "latitude": "0", "id": "23052844", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 12:08:05", "license": "1", "title": "A video speech by Nelson Mandela", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23053120_b610b35072_o.jpg", "secret": "b610b35072", "media": "photo", "latitude": "0", "id": "23053120", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 12:22:55", "license": "1", "title": "Texas", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23053440_17c36b3fef_o.jpg", "secret": "17c36b3fef", "media": "photo", "latitude": "0", "id": "23053440", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 12:33:17", "license": "1", "title": "There were many kids out there", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23053764_a801c106c3_o.jpg", "secret": "a801c106c3", "media": "photo", "latitude": "0", "id": "23053764", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 12:39:00", "license": "1", "title": "It was supposed to be a Make Poverty History March", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23054290_6ba26db30b_o.jpg", "secret": "6ba26db30b", "media": "photo", "latitude": "0", "id": "23054290", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 12:48:41", "license": "1", "title": "Good friends", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23054594_f5709c165f_o.jpg", "secret": "f5709c165f", "media": "photo", "latitude": "0", "id": "23054594", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 12:49:09", "license": "1", "title": "", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23055050_de96515191_o.jpg", "secret": "de96515191", "media": "photo", "latitude": "0", "id": "23055050", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 12:49:52", "license": "1", "title": "It does sound simple like that", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23055349_77f2c79b04_o.jpg", "secret": "77f2c79b04", "media": "photo", "latitude": "0", "id": "23055349", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 12:56:48", "license": "1", "title": "The tabloids were smart by handing out these protest boards", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23055773_387397391d_o.jpg", "secret": "387397391d", "media": "photo", "latitude": "0", "id": "23055773", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 13:16:28", "license": "1", "title": "Never too young to stop being ignorant I guess.", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23057111_f64307bde9_o.jpg", "secret": "f64307bde9", "media": "photo", "latitude": "0", "id": "23057111", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 13:23:27", "license": "1", "title": "Good to see lots of young people around", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23056176_33f5f6e60a_o.jpg", "secret": "33f5f6e60a", "media": "photo", "latitude": "0", "id": "23056176", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 13:30:54", "license": "1", "title": "All kinds of people were there", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23056709_820530193d_o.jpg", "secret": "820530193d", "media": "photo", "latitude": "0", "id": "23056709", "tags": "edinburgh 20005"}, {"datetaken": "2005-07-02 13:45:24", "license": "1", "title": "But being in a queue for more than 2 hours makes one tired", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23057434_91a5b49b1d_o.jpg", "secret": "91a5b49b1d", "media": "photo", "latitude": "0", "id": "23057434", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 14:08:42", "license": "1", "title": "watched from above", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23057708_1f1d90e767_o.jpg", "secret": "1f1d90e767", "media": "photo", "latitude": "0", "id": "23057708", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 14:22:45", "license": "1", "title": "", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23058084_fd6d21b166_o.jpg", "secret": "fd6d21b166", "media": "photo", "latitude": "0", "id": "23058084", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 14:23:17", "license": "1", "title": "This is some special character", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23058628_74ba2c80d1_o.jpg", "secret": "74ba2c80d1", "media": "photo", "latitude": "0", "id": "23058628", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 14:27:28", "license": "1", "title": "Oh, oh, Dutch people", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23059231_b02579d147_o.jpg", "secret": "b02579d147", "media": "photo", "latitude": "0", "id": "23059231", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 14:30:00", "license": "1", "title": "It was a very orderly demonstration", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23061850_4fdfb1795c_o.jpg", "secret": "4fdfb1795c", "media": "photo", "latitude": "0", "id": "23061850", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 14:40:14", "license": "1", "title": "Hurray for underwear!", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23062278_7139a8a174_o.jpg", "secret": "7139a8a174", "media": "photo", "latitude": "0", "id": "23062278", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 14:40:22", "license": "1", "title": "I assume they are not the Scottish supporters of Bush' party", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23062526_08eb88e396_o.jpg", "secret": "08eb88e396", "media": "photo", "latitude": "0", "id": "23062526", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 14:42:21", "license": "1", "title": "Yep, it was crowded", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23063089_3cfb59bad4_o.jpg", "secret": "3cfb59bad4", "media": "photo", "latitude": "0", "id": "23063089", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 14:47:36", "license": "1", "title": "Make Povery History march", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23069412_8b948eaf74_o.jpg", "secret": "8b948eaf74", "media": "photo", "latitude": "0", "id": "23069412", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 14:48:50", "license": "1", "title": "She was brave walking such a long distance", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23063551_8279212506_o.jpg", "secret": "8279212506", "media": "photo", "latitude": "0", "id": "23063551", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 14:59:21", "license": "1", "title": "And being watched again", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23063874_337d39b2e6_o.jpg", "secret": "337d39b2e6", "media": "photo", "latitude": "0", "id": "23063874", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 15:01:13", "license": "1", "title": "Ann is scared", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23064295_cb94eed34d_o.jpg", "secret": "cb94eed34d", "media": "photo", "latitude": "0", "id": "23064295", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 15:01:53", "license": "1", "title": "And so is the Body Shop", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23064651_5ceed185c4_o.jpg", "secret": "5ceed185c4", "media": "photo", "latitude": "0", "id": "23064651", "tags": "edinburgh 20005"}, {"datetaken": "2005-07-02 15:03:31", "license": "1", "title": "", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23064880_bf9eaafd0f_o.jpg", "secret": "bf9eaafd0f", "media": "photo", "latitude": "0", "id": "23064880", "tags": "edinburgh 20005"}, {"datetaken": "2005-07-02 15:04:25", "license": "1", "title": "Even Belgian people...", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23065413_8da62b44fb_o.jpg", "secret": "8da62b44fb", "media": "photo", "latitude": "0", "id": "23065413", "tags": "edinburgh 20005"}, {"datetaken": "2005-07-02 15:17:50", "license": "1", "title": "They were dancing and singing all the time!", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23065770_e432ff5fa1_o.jpg", "secret": "e432ff5fa1", "media": "photo", "latitude": "0", "id": "23065770", "tags": "edinburgh 20005"}, {"datetaken": "2005-07-02 15:19:38", "license": "1", "title": "People could write their name on these papers", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23066136_cdb8833e4d_o.jpg", "secret": "cdb8833e4d", "media": "photo", "latitude": "0", "id": "23066136", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 15:20:24", "license": "1", "title": "", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23066585_2510592f43_o.jpg", "secret": "2510592f43", "media": "photo", "latitude": "0", "id": "23066585", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 15:21:35", "license": "1", "title": "", "text": "", "album_id": "531768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23068629_952846c091_o.jpg", "secret": "952846c091", "media": "photo", "latitude": "0", "id": "23068629", "tags": "edinburgh 2005"}, {"datetaken": "2005-07-02 20:07:11", "license": "1", "title": "high school friends", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23168529_40d05e9356_o.jpg", "secret": "40d05e9356", "media": "photo", "latitude": "0", "id": "23168529", "tags": "melbourne victoria australia pc3150 seansbirthday jeff sean"}, {"datetaken": "2005-07-02 20:07:25", "license": "1", "title": "carl and dave the dog :)", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23168537_14d1a64236_o.jpg", "secret": "14d1a64236", "media": "photo", "latitude": "0", "id": "23168537", "tags": "melbourne victoria australia pc3150 seansbirthday carl davethedog"}, {"datetaken": "2005-07-02 20:32:05", "license": "1", "title": "Jeff's snazzy sneakers", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23168564_e42cd622fa_o.jpg", "secret": "e42cd622fa", "media": "photo", "latitude": "0", "id": "23168564", "tags": "melbourne victoria australia pc3150 seansbirthday"}, {"datetaken": "2005-07-02 20:47:29", "license": "1", "title": "it's a carl off!", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23168574_6bae6a5216_o.jpg", "secret": "6bae6a5216", "media": "photo", "latitude": "0", "id": "23168574", "tags": "melbourne victoria australia pc3150 seansbirthday carl"}, {"datetaken": "2005-07-02 20:50:41", "license": "1", "title": "fuzzy", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23168584_f928bb90f4_o.jpg", "secret": "f928bb90f4", "media": "photo", "latitude": "0", "id": "23168584", "tags": "melbourne victoria australia pc3150 seansbirthday"}, {"datetaken": "2005-07-02 20:52:36", "license": "1", "title": "ink", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23168597_9e779a2b9d_o.jpg", "secret": "9e779a2b9d", "media": "photo", "latitude": "0", "id": "23168597", "tags": "melbourne victoria australia pc3150 seansbirthday jeff"}, {"datetaken": "2005-07-02 21:29:27", "license": "1", "title": "doing the do", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23168605_28d0e4e958_o.jpg", "secret": "28d0e4e958", "media": "photo", "latitude": "0", "id": "23168605", "tags": "john australia melbourne victoria carl pc3150 seansbirthday johndfox"}, {"datetaken": "2005-07-02 22:00:35", "license": "1", "title": "joe bop", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23168613_d8fb157046_o.jpg", "secret": "d8fb157046", "media": "photo", "latitude": "0", "id": "23168613", "tags": "australia melbourne joe victoria pc3150 seansbirthday joebennett"}, {"datetaken": "2005-07-02 22:01:57", "license": "1", "title": "CDJ", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23168626_19c6b4c3bb_o.jpg", "secret": "19c6b4c3bb", "media": "photo", "latitude": "0", "id": "23168626", "tags": "melbourne victoria australia pc3150 seansbirthday"}, {"datetaken": "2005-07-02 22:08:58", "license": "1", "title": "model", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23168639_fb90472ea7_o.jpg", "secret": "fb90472ea7", "media": "photo", "latitude": "0", "id": "23168639", "tags": "melbourne victoria australia pc3150 seansbirthday lincoln"}, {"datetaken": "2005-07-02 22:49:33", "license": "1", "title": "smooth", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23168670_b263cace49_o.jpg", "secret": "b263cace49", "media": "photo", "latitude": "0", "id": "23168670", "tags": "melbourne victoria australia pc3150 seansbirthday"}, {"datetaken": "2005-07-02 22:53:46", "license": "1", "title": "memories", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23168680_c829cc3a76_o.jpg", "secret": "c829cc3a76", "media": "photo", "latitude": "0", "id": "23168680", "tags": "melbourne victoria australia pc3150 seansbirthday"}, {"datetaken": "2005-07-02 22:57:54", "license": "1", "title": "dave", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23168704_1e4fdd9eed_o.jpg", "secret": "1e4fdd9eed", "media": "photo", "latitude": "0", "id": "23168704", "tags": "melbourne victoria australia pc3150 seansbirthday davethedog"}, {"datetaken": "2005-07-02 22:58:02", "license": "1", "title": "", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23168724_42845cb2fd_o.jpg", "secret": "42845cb2fd", "media": "photo", "latitude": "0", "id": "23168724", "tags": "melbourne victoria australia pc3150 seansbirthday lincoln doug"}, {"datetaken": "2005-07-02 22:58:04", "license": "1", "title": "bedebedebede", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23168738_bb75fa4118_o.jpg", "secret": "bb75fa4118", "media": "photo", "latitude": "0", "id": "23168738", "tags": "melbourne victoria australia pc3150 seansbirthday sean"}, {"datetaken": "2005-07-02 23:07:06", "license": "1", "title": "new yorks", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23168758_0436aef08f_o.jpg", "secret": "0436aef08f", "media": "photo", "latitude": "0", "id": "23168758", "tags": "melbourne victoria australia pc3150 seansbirthday sean carl lincoln"}, {"datetaken": "2005-07-03 00:23:39", "license": "1", "title": "Relax", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23168771_fa71997c3b_o.jpg", "secret": "fa71997c3b", "media": "photo", "latitude": "0", "id": "23168771", "tags": "melbourne victoria australia seansbirthday pc3065 relaxwithmax thenightcat"}, {"datetaken": "2005-07-03 00:39:26", "license": "1", "title": "", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23168782_57b79bc3c2_o.jpg", "secret": "57b79bc3c2", "media": "photo", "latitude": "0", "id": "23168782", "tags": "melbourne victoria australia seansbirthday pc3065 relaxwithmax thenightcat"}, {"datetaken": "2005-07-03 00:40:35", "license": "1", "title": "", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23168799_74a748503e_o.jpg", "secret": "74a748503e", "media": "photo", "latitude": "0", "id": "23168799", "tags": "melbourne victoria australia seansbirthday pc3065 thenightcat beautifulmelbourne"}, {"datetaken": "2005-07-03 00:54:59", "license": "1", "title": "", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23168814_641bbc4c47_o.jpg", "secret": "641bbc4c47", "media": "photo", "latitude": "0", "id": "23168814", "tags": "melbourne victoria australia seansbirthday pc3065 relaxwithmax thenightcat"}, {"datetaken": "2005-07-03 01:01:49", "license": "1", "title": "", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23168825_ba758f989e_o.jpg", "secret": "ba758f989e", "media": "photo", "latitude": "0", "id": "23168825", "tags": "melbourne victoria australia seansbirthday pc3065 thenightcat sean"}, {"datetaken": "2005-07-03 01:03:59", "license": "1", "title": "", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23168841_2e370d76b0_o.jpg", "secret": "2e370d76b0", "media": "photo", "latitude": "0", "id": "23168841", "tags": "melbourne victoria australia seansbirthday pc3065 thenightcat"}, {"datetaken": "2005-07-03 02:05:09", "license": "1", "title": "next?", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23168852_db47216768_o.jpg", "secret": "db47216768", "media": "photo", "latitude": "0", "id": "23168852", "tags": "doug australia melbourne joe victoria sean pc3065 seansbirthday thenightcat joebennett"}, {"datetaken": "2005-07-03 02:07:31", "license": "1", "title": "street craziness", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23168871_3e9727edcd_o.jpg", "secret": "3e9727edcd", "media": "photo", "latitude": "0", "id": "23168871", "tags": "john doug australia melbourne joe victoria sean pc3065 seansbirthday johndfox joebennett"}, {"datetaken": "2005-07-03 02:10:04", "license": "1", "title": "text break", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23168887_6128797e30_o.jpg", "secret": "6128797e30", "media": "photo", "latitude": "0", "id": "23168887", "tags": "melbourne victoria australia seansbirthday pc3065"}, {"datetaken": "2005-07-03 02:12:28", "license": "1", "title": "", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23168898_770b015194_o.jpg", "secret": "770b015194", "media": "photo", "latitude": "0", "id": "23168898", "tags": "australia melbourne joe victoria pc3065 seansbirthday joebennett"}, {"datetaken": "2005-07-03 02:14:38", "license": "1", "title": "twist my arm", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23168901_a8068f9981_o.jpg", "secret": "a8068f9981", "media": "photo", "latitude": "0", "id": "23168901", "tags": "melbourne victoria australia seansbirthday pc3065 baropen beautifulmelbourne"}, {"datetaken": "2005-07-03 02:16:56", "license": "1", "title": "madness", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23168907_d55bd192f3_o.jpg", "secret": "d55bd192f3", "media": "photo", "latitude": "0", "id": "23168907", "tags": "melbourne victoria australia seansbirthday pc3065 baropen fave"}, {"datetaken": "2005-07-03 02:20:15", "license": "1", "title": "John", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23168917_7a024bd5ae_o.jpg", "secret": "7a024bd5ae", "media": "photo", "latitude": "0", "id": "23168917", "tags": "john australia melbourne victoria pc3065 baropen seansbirthday menwithhats johndfox"}, {"datetaken": "2005-07-03 02:22:53", "license": "1", "title": "", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23168937_58a363ba24_o.jpg", "secret": "58a363ba24", "media": "photo", "latitude": "0", "id": "23168937", "tags": "melbourne victoria australia seansbirthday pc3065 baropen"}, {"datetaken": "2005-07-03 02:24:15", "license": "1", "title": "", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23168954_e2bb1a58be_o.jpg", "secret": "e2bb1a58be", "media": "photo", "latitude": "0", "id": "23168954", "tags": "melbourne victoria australia seansbirthday pc3065 baropen"}, {"datetaken": "2005-07-03 02:32:23", "license": "1", "title": "beer manoeuvre", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23168970_338c1c18e9_o.jpg", "secret": "338c1c18e9", "media": "photo", "latitude": "0", "id": "23168970", "tags": "australia melbourne joe victoria pc3065 baropen seansbirthday joebennett"}, {"datetaken": "2005-07-03 02:54:13", "license": "1", "title": "rave tech", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23473981_908df8e550_o.jpg", "secret": "908df8e550", "media": "photo", "latitude": "0", "id": "23473981", "tags": "melbourne victoria australia seansbirthday pc3065"}, {"datetaken": "2005-07-03 05:47:23", "license": "1", "title": "nice fro", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23473988_fc6b8931ea_o.jpg", "secret": "fc6b8931ea", "media": "photo", "latitude": "0", "id": "23473988", "tags": "street australia melbourne victoria pc3000 seansbirthday"}, {"datetaken": "2005-07-03 06:15:54", "license": "1", "title": "strange sightings", "text": "", "album_id": "533977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23473996_032a974185_o.jpg", "secret": "032a974185", "media": "photo", "latitude": "0", "id": "23473996", "tags": "street australia melbourne victoria menatwork pc3000 seansbirthday"}, {"datetaken": "2004-12-31 17:24:27", "license": "3", "title": "Martyn as Clark Crumpet", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2871013_67c3bed989_o.jpg", "secret": "67c3bed989", "media": "photo", "latitude": "0", "id": "2871013", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-31 18:03:21", "license": "3", "title": "Anna as Sue Spender", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2870959_fa1ee3bd67_o.jpg", "secret": "fa1ee3bd67", "media": "photo", "latitude": "0", "id": "2870959", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-31 18:12:48", "license": "3", "title": "Simon as Onnis Uppers", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2870942_995e2b1629_o.jpg", "secret": "995e2b1629", "media": "photo", "latitude": "0", "id": "2870942", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-31 18:13:54", "license": "3", "title": "Sophie as Malicia Forethought", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2870922_a64ffee2c4_o.jpg", "secret": "a64ffee2c4", "media": "photo", "latitude": "0", "id": "2870922", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-31 18:17:57", "license": "3", "title": "Rob as Johnny Come-Lately", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2870893_84983291bf_o.jpg", "secret": "84983291bf", "media": "photo", "latitude": "0", "id": "2870893", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-31 18:51:51", "license": "3", "title": "Allie as Losta Morals", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2870864_667204d7a5_o.jpg", "secret": "667204d7a5", "media": "photo", "latitude": "0", "id": "2870864", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-31 18:56:24", "license": "3", "title": "Cecil smokes", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2870837_c6a7b81de2_o.jpg", "secret": "c6a7b81de2", "media": "photo", "latitude": "0", "id": "2870837", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-31 18:59:14", "license": "3", "title": "Losta glams up", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2870795_2520400e92_o.jpg", "secret": "2520400e92", "media": "photo", "latitude": "0", "id": "2870795", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-31 18:59:44", "license": "3", "title": "Gloves on", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2870759_04f5ec473a_o.jpg", "secret": "04f5ec473a", "media": "photo", "latitude": "0", "id": "2870759", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-31 19:27:11", "license": "3", "title": "Sam, Rose and Louisa", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2870734_55c9d123b3_o.jpg", "secret": "55c9d123b3", "media": "photo", "latitude": "0", "id": "2870734", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-31 19:40:55", "license": "3", "title": "Michelle as Fanny Chez-Longe", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2870701_cd013eae8e_o.jpg", "secret": "cd013eae8e", "media": "photo", "latitude": "0", "id": "2870701", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-31 20:09:10", "license": "3", "title": "Cecil & Sue", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2870652_e2057d1e36_o.jpg", "secret": "e2057d1e36", "media": "photo", "latitude": "0", "id": "2870652", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-31 20:43:41", "license": "3", "title": "Cecil holds forth", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2870605_d1fc6fac46_o.jpg", "secret": "d1fc6fac46", "media": "photo", "latitude": "0", "id": "2870605", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-31 20:45:11", "license": "3", "title": "Onnis remembers the old days", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2870559_70a3968ffe_o.jpg", "secret": "70a3968ffe", "media": "photo", "latitude": "0", "id": "2870559", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-31 20:51:46", "license": "3", "title": "Michelle & Rose", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2870517_e7a42bfe56_o.jpg", "secret": "e7a42bfe56", "media": "photo", "latitude": "0", "id": "2870517", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-31 20:52:25", "license": "3", "title": "The brothers Uppers", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2870471_cd964ab9e4_o.jpg", "secret": "cd964ab9e4", "media": "photo", "latitude": "0", "id": "2870471", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-31 20:53:40", "license": "3", "title": "Sam", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2870426_9c5addeef9_o.jpg", "secret": "9c5addeef9", "media": "photo", "latitude": "0", "id": "2870426", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-31 21:12:33", "license": "3", "title": "Lorna makes good cover", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2870402_186813a711_o.jpg", "secret": "186813a711", "media": "photo", "latitude": "0", "id": "2870402", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2005-01-01 00:01:09", "license": "3", "title": "Martyn & Sophie", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2870350_c46ffebe01_o.jpg", "secret": "c46ffebe01", "media": "photo", "latitude": "0", "id": "2870350", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2005-01-01 00:01:21", "license": "3", "title": "Rob & Anna", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2870309_c75e65ca36_o.jpg", "secret": "c75e65ca36", "media": "photo", "latitude": "0", "id": "2870309", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2005-01-01 00:01:54", "license": "3", "title": "The Dulson family", "text": "", "album_id": "71769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2870247_8d6ced9927_o.jpg", "secret": "8d6ced9927", "media": "photo", "latitude": "0", "id": "2870247", "tags": "newyear 2005 murdermystery party friends fancydress roleplaying costumes"}, {"datetaken": "2004-12-30 12:54:06", "license": "1", "title": "CIMG0060", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2883592_9903a1003b_o.jpg", "secret": "9903a1003b", "media": "photo", "latitude": "0", "id": "2883592", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2004-12-30 12:54:12", "license": "1", "title": "CIMG0061", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2883623_9d8883223a_o.jpg", "secret": "9d8883223a", "media": "photo", "latitude": "0", "id": "2883623", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2004-12-30 13:14:44", "license": "1", "title": "CIMG0062", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2883641_4ad609a0e0_o.jpg", "secret": "4ad609a0e0", "media": "photo", "latitude": "0", "id": "2883641", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2004-12-30 13:57:03", "license": "1", "title": "CIMG0063", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2883666_a223d86f3b_o.jpg", "secret": "a223d86f3b", "media": "photo", "latitude": "0", "id": "2883666", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2004-12-30 13:58:34", "license": "1", "title": "CIMG0064", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2883685_c05c7218eb_o.jpg", "secret": "c05c7218eb", "media": "photo", "latitude": "0", "id": "2883685", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2004-12-30 14:08:24", "license": "1", "title": "CIMG0065", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2883706_f9502ecbf4_o.jpg", "secret": "f9502ecbf4", "media": "photo", "latitude": "0", "id": "2883706", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2004-12-30 14:35:34", "license": "1", "title": "CIMG0066", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2883732_1a309203aa_o.jpg", "secret": "1a309203aa", "media": "photo", "latitude": "0", "id": "2883732", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2004-12-30 14:35:44", "license": "1", "title": "CIMG0067", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2883780_184df49126_o.jpg", "secret": "184df49126", "media": "photo", "latitude": "0", "id": "2883780", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2004-12-31 17:58:26", "license": "1", "title": "CIMG0071", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2883859_5bd679385e_o.jpg", "secret": "5bd679385e", "media": "photo", "latitude": "0", "id": "2883859", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2004-12-31 18:49:10", "license": "1", "title": "CIMG0072", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2883883_8c95c3c3d0_o.jpg", "secret": "8c95c3c3d0", "media": "photo", "latitude": "0", "id": "2883883", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2004-12-31 20:32:20", "license": "1", "title": "CIMG0073", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2883930_4f5001b9eb_o.jpg", "secret": "4f5001b9eb", "media": "photo", "latitude": "0", "id": "2883930", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2004-12-31 23:43:49", "license": "1", "title": "CIMG0074", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2883948_ff2c3ae00f_o.jpg", "secret": "ff2c3ae00f", "media": "photo", "latitude": "0", "id": "2883948", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2004-12-31 23:56:50", "license": "1", "title": "CIMG0075", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2883970_3c054d5c91_o.jpg", "secret": "3c054d5c91", "media": "photo", "latitude": "0", "id": "2883970", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2004-12-31 23:56:55", "license": "1", "title": "CIMG0076", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2884007_7b0d64583a_o.jpg", "secret": "7b0d64583a", "media": "photo", "latitude": "0", "id": "2884007", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2004-12-31 23:57:06", "license": "1", "title": "CIMG0077", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2884053_eec27e2e38_o.jpg", "secret": "eec27e2e38", "media": "photo", "latitude": "0", "id": "2884053", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2004-12-31 23:57:14", "license": "1", "title": "CIMG0078", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2884138_26660eefe0_o.jpg", "secret": "26660eefe0", "media": "photo", "latitude": "0", "id": "2884138", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2004-12-31 23:57:23", "license": "1", "title": "CIMG0079", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2884154_1603c581f8_o.jpg", "secret": "1603c581f8", "media": "photo", "latitude": "0", "id": "2884154", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2005-01-01 00:04:55", "license": "1", "title": "CIMG0080", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2884165_419077612c_o.jpg", "secret": "419077612c", "media": "photo", "latitude": "0", "id": "2884165", "tags": "fest party frederiksborggade newyearseve copenhagen"}, {"datetaken": "2005-01-01 00:05:13", "license": "1", "title": "CIMG0081", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2884191_88bd1f25b2_o.jpg", "secret": "88bd1f25b2", "media": "photo", "latitude": "0", "id": "2884191", "tags": "fest party frederiksborggade newyearseve copenhagen"}, {"datetaken": "2005-01-01 00:13:55", "license": "1", "title": "CIMG0082", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2884218_73971b9c84_o.jpg", "secret": "73971b9c84", "media": "photo", "latitude": "0", "id": "2884218", "tags": "fest party frederiksborggade newyearseve copenhagen"}, {"datetaken": "2005-01-01 00:21:14", "license": "1", "title": "CIMG0083", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2884243_b96b67e5ec_o.jpg", "secret": "b96b67e5ec", "media": "photo", "latitude": "0", "id": "2884243", "tags": "fest party frederiksborggade newyearseve copenhagen"}, {"datetaken": "2005-01-01 00:25:27", "license": "1", "title": "CIMG0087", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2884335_ba9c66ddd5_o.jpg", "secret": "ba9c66ddd5", "media": "photo", "latitude": "0", "id": "2884335", "tags": "fest party frederiksborggade newyearseve copenhagen"}, {"datetaken": "2005-01-01 00:25:32", "license": "1", "title": "CIMG0088", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2884354_1bdd52752e_o.jpg", "secret": "1bdd52752e", "media": "photo", "latitude": "0", "id": "2884354", "tags": "fest party frederiksborggade newyearseve copenhagen"}, {"datetaken": "2005-01-01 00:25:50", "license": "1", "title": "CIMG0089", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2884376_26d9097062_o.jpg", "secret": "26d9097062", "media": "photo", "latitude": "0", "id": "2884376", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2005-01-01 00:26:08", "license": "1", "title": "CIMG0090", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2884385_89021b0759_o.jpg", "secret": "89021b0759", "media": "photo", "latitude": "0", "id": "2884385", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2005-01-01 00:43:39", "license": "1", "title": "CIMG0091", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2884403_92941569cc_o.jpg", "secret": "92941569cc", "media": "photo", "latitude": "0", "id": "2884403", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2005-01-01 01:20:05", "license": "1", "title": "CIMG0092", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2884427_a63ff9e8d5_o.jpg", "secret": "a63ff9e8d5", "media": "photo", "latitude": "0", "id": "2884427", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2005-01-01 01:28:36", "license": "1", "title": "CIMG0093", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2884449_48c1a4aaf7_o.jpg", "secret": "48c1a4aaf7", "media": "photo", "latitude": "0", "id": "2884449", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2005-01-01 02:21:01", "license": "1", "title": "CIMG0094", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2884475_57d2ad4991_o.jpg", "secret": "57d2ad4991", "media": "photo", "latitude": "0", "id": "2884475", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2005-01-01 02:21:25", "license": "1", "title": "CIMG0095", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2884490_6c9163c7d8_o.jpg", "secret": "6c9163c7d8", "media": "photo", "latitude": "0", "id": "2884490", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2005-01-01 06:57:54", "license": "1", "title": "CIMG0100", "text": "", "album_id": "72083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2883581_3e2ec90dca_o.jpg", "secret": "3e2ec90dca", "media": "photo", "latitude": "0", "id": "2883581", "tags": "fest party frederiksborggade newyearseve"}, {"datetaken": "2009-12-24 20:01:15", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.205666", "url_o": "https://farm3.staticflickr.com/2703/4240974381_02f7df833e_o.jpg", "secret": "e415903f62", "media": "photo", "latitude": "22.324666", "id": "4240974381", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-24 22:26:12", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.168500", "url_o": "https://farm5.staticflickr.com/4056/4240976437_1de1d186cb_o.jpg", "secret": "fb46470545", "media": "photo", "latitude": "22.299833", "id": "4240976437", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-24 22:44:11", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.169166", "url_o": "https://farm3.staticflickr.com/2748/4241749786_4115470e84_o.jpg", "secret": "b5960a4cc4", "media": "photo", "latitude": "22.296333", "id": "4241749786", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-24 22:54:54", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.168833", "url_o": "https://farm3.staticflickr.com/2681/4240980379_198cfd93c2_o.jpg", "secret": "a398b8e683", "media": "photo", "latitude": "22.297500", "id": "4240980379", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-24 22:55:21", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.167666", "url_o": "https://farm3.staticflickr.com/2498/4240982671_ce00b4070f_o.jpg", "secret": "3ede59437d", "media": "photo", "latitude": "22.297000", "id": "4240982671", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-24 23:01:18", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.168833", "url_o": "https://farm3.staticflickr.com/2730/4241756946_f7971afb55_o.jpg", "secret": "3c9e87b5c6", "media": "photo", "latitude": "22.297500", "id": "4241756946", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-24 23:01:37", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.168000", "url_o": "https://farm5.staticflickr.com/4067/4240987385_572ca7f2dd_o.jpg", "secret": "1a107d78c6", "media": "photo", "latitude": "22.297500", "id": "4240987385", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-24 23:14:20", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.169666", "url_o": "https://farm3.staticflickr.com/2751/4240989507_ce7cc4f7ff_o.jpg", "secret": "8ae4e635e4", "media": "photo", "latitude": "22.297500", "id": "4240989507", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-24 23:16:04", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.169166", "url_o": "https://farm5.staticflickr.com/4002/4240992195_ae25d021b4_o.jpg", "secret": "5a7906ba5f", "media": "photo", "latitude": "22.297833", "id": "4240992195", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-24 23:25:32", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.168833", "url_o": "https://farm3.staticflickr.com/2517/4240994527_c9d5e792a4_o.jpg", "secret": "148014dae3", "media": "photo", "latitude": "22.297500", "id": "4240994527", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-24 23:36:47", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.168833", "url_o": "https://farm3.staticflickr.com/2672/4240996749_78533dc93f_o.jpg", "secret": "0892004301", "media": "photo", "latitude": "22.297500", "id": "4240996749", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-24 23:42:42", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.167833", "url_o": "https://farm3.staticflickr.com/2507/4241770744_4fd9f82865_o.jpg", "secret": "aaa94279b9", "media": "photo", "latitude": "22.297500", "id": "4241770744", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-24 23:46:05", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.168833", "url_o": "https://farm5.staticflickr.com/4061/4241773974_5bd5bc4e4f_o.jpg", "secret": "e678050bec", "media": "photo", "latitude": "22.297833", "id": "4241773974", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-24 23:47:29", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.169000", "url_o": "https://farm3.staticflickr.com/2543/4241003585_44c10f2ba7_o.jpg", "secret": "04ca5c77d1", "media": "photo", "latitude": "22.297500", "id": "4241003585", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-24 23:47:32", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.169000", "url_o": "https://farm3.staticflickr.com/2664/4241777018_3a51913b3c_o.jpg", "secret": "65732335e4", "media": "photo", "latitude": "22.297500", "id": "4241777018", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-24 23:52:06", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.169000", "url_o": "https://farm3.staticflickr.com/2740/4241779642_4b7c0ca798_o.jpg", "secret": "f4d0775606", "media": "photo", "latitude": "22.297333", "id": "4241779642", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-24 23:54:32", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.169166", "url_o": "https://farm3.staticflickr.com/2792/4241009631_f00a8831b6_o.jpg", "secret": "f8a6dafe96", "media": "photo", "latitude": "22.296500", "id": "4241009631", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-25 00:00:00", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.168833", "url_o": "https://farm3.staticflickr.com/2508/4241783648_78dcf3b231_o.jpg", "secret": "88f5733106", "media": "photo", "latitude": "22.297333", "id": "4241783648", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-25 00:00:05", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.168166", "url_o": "https://farm5.staticflickr.com/4010/4241785838_7d097f6bbe_o.jpg", "secret": "bf344f4d8d", "media": "photo", "latitude": "22.297333", "id": "4241785838", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-25 00:00:09", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.168166", "url_o": "https://farm5.staticflickr.com/4050/4241015791_6cf90a37bf_o.jpg", "secret": "bd7b7b736b", "media": "photo", "latitude": "22.297333", "id": "4241015791", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-25 00:00:13", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.168166", "url_o": "https://farm3.staticflickr.com/2527/4241789870_eeaf455bb0_o.jpg", "secret": "7b7a140398", "media": "photo", "latitude": "22.297333", "id": "4241789870", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-25 00:00:17", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.168166", "url_o": "https://farm3.staticflickr.com/2501/4241019123_391742ca71_o.jpg", "secret": "751b8c32d7", "media": "photo", "latitude": "22.297333", "id": "4241019123", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-25 00:00:23", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.168833", "url_o": "https://farm5.staticflickr.com/4058/4241020865_08c62edf49_o.jpg", "secret": "83c7fb9274", "media": "photo", "latitude": "22.297333", "id": "4241020865", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-25 00:00:28", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.168833", "url_o": "https://farm3.staticflickr.com/2725/4241022339_ddde1a2b5b_o.jpg", "secret": "984f522c22", "media": "photo", "latitude": "22.297333", "id": "4241022339", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-25 00:00:33", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.168833", "url_o": "https://farm5.staticflickr.com/4042/4241795882_0180a796ab_o.jpg", "secret": "9f9764bc6b", "media": "photo", "latitude": "22.297333", "id": "4241795882", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-25 00:01:02", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.168166", "url_o": "https://farm3.staticflickr.com/2658/4241025671_939de2eab2_o.jpg", "secret": "11bca35774", "media": "photo", "latitude": "22.297333", "id": "4241025671", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-12-25 00:01:22", "license": "1", "title": "\u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "text": "", "album_id": "72157623005606487", "longitude": "114.168666", "url_o": "https://farm3.staticflickr.com/2513/4241027695_47ca26eca1_o.jpg", "secret": "221a34c38b", "media": "photo", "latitude": "22.297500", "id": "4241027695", "tags": "christmas party hongkong \u9999\u6e2f countdown harbourcity \u8056\u8a95\u7bc0 \u6d77\u6e2f\u57ce"}, {"datetaken": "2009-09-23 12:57:22", "license": "1", "title": "No Entry", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2519/4241116321_dc9cbd3f99_o.jpg", "secret": "572aca8372", "media": "photo", "latitude": "0", "id": "4241116321", "tags": "blue sleeping gold chair nap doors pots noentry asleep urns wattraimit"}, {"datetaken": "2009-09-23 12:57:56", "license": "1", "title": "Golden Buddha", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4241135097_b3f4968a79_o.jpg", "secret": "56b2c7b9b3", "media": "photo", "latitude": "0", "id": "4241135097", "tags": "window statue gold buddha frame goldenbuddha wattraimit"}, {"datetaken": "2009-09-23 13:08:14", "license": "1", "title": "Smile", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2681/4241153685_c3159eda57_o.jpg", "secret": "baf306613e", "media": "photo", "latitude": "0", "id": "4241153685", "tags": "eye smile face statue mouth thailand nose gold bangkok buddha buddhist lips goldleaf"}, {"datetaken": "2009-09-23 13:09:52", "license": "1", "title": "Outward Eye", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4241946522_25343df390_o.jpg", "secret": "87b97a9af3", "media": "photo", "latitude": "0", "id": "4241946522", "tags": "face statue thailand gold chinatown bangkok buddhist goldleaf bugeyed"}, {"datetaken": "2009-09-23 13:10:49", "license": "1", "title": "Inward Eye", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4241985748_3f174071b8_o.jpg", "secret": "acbf1bc28e", "media": "photo", "latitude": "0", "id": "4241985748", "tags": "face statue thailand gold bangkok buddha goldleaf"}, {"datetaken": "2009-09-23 13:22:44", "license": "1", "title": "Joints", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4241191037_e0a147fddf_o.jpg", "secret": "d262ca47fc", "media": "photo", "latitude": "0", "id": "4241191037", "tags": "reflection metal screws parts small windown"}, {"datetaken": "2009-09-23 13:27:14", "license": "1", "title": "Parts", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4242005292_f3a66b04a6_o.jpg", "secret": "857a7094d5", "media": "photo", "latitude": "0", "id": "4242005292", "tags": "metal thailand rust chinatown barrels bangkok parts machine gears scrap"}, {"datetaken": "2009-09-23 13:27:47", "license": "1", "title": "Junk Appraisal", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4242025576_d226c2a805_o.jpg", "secret": "a339868481", "media": "photo", "latitude": "0", "id": "4242025576", "tags": "thailand junk chinatown bangkok scraps"}, {"datetaken": "2009-09-23 13:32:19", "license": "1", "title": "Kirk and Leah", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4242044916_c55ef8f532_o.jpg", "secret": "97041e2473", "media": "photo", "latitude": "0", "id": "4242044916", "tags": "thailand chinatown bangkok sidewalk tiles"}, {"datetaken": "2009-09-23 13:33:56", "license": "1", "title": "Buildup", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2694/4241293041_0854048e2c_o.jpg", "secret": "6e7137e19d", "media": "photo", "latitude": "0", "id": "4241293041", "tags": "wall thailand sticker bangkok flag dirt burn frame palimpsest grime incenseholder"}, {"datetaken": "2009-09-23 13:34:51", "license": "1", "title": "No Blue", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2782/4241313733_85ef656ea2_o.jpg", "secret": "30da9aa193", "media": "photo", "latitude": "0", "id": "4241313733", "tags": "sign corner thailand chinatown traffic bangkok motorcycle tuktuk"}, {"datetaken": "2009-09-23 13:36:42", "license": "1", "title": "Portal", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4241334039_e125d173a0_o.jpg", "secret": "e9258b5bdc", "media": "photo", "latitude": "0", "id": "4241334039", "tags": "orange standing thailand gate chinatown arch bangkok taxi doorway"}, {"datetaken": "2009-09-23 13:38:54", "license": "1", "title": "Bagged Basket", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4241354661_73110d9e80_o.jpg", "secret": "4908c84e8a", "media": "photo", "latitude": "0", "id": "4241354661", "tags": "light basket sack wicker"}, {"datetaken": "2009-09-23 13:41:38", "license": "1", "title": "Paper Crane", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2710/4242149390_fc3549cdde_o.jpg", "secret": "58a6384d68", "media": "photo", "latitude": "0", "id": "4242149390", "tags": "wall paper thailand origami bangkok empty blank"}, {"datetaken": "2009-09-23 13:42:46", "license": "1", "title": "Into Alley", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2615/4242169896_0b5baa6e5c_o.jpg", "secret": "5a4d9db1a4", "media": "photo", "latitude": "0", "id": "4242169896", "tags": "awning thailand alley chinatown bangkok motorcycle moped narrow"}, {"datetaken": "2009-09-23 13:44:45", "license": "1", "title": "Hidden Neighbourhood", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2783/4242190716_400358588c_o.jpg", "secret": "f97655d965", "media": "photo", "latitude": "0", "id": "4242190716", "tags": "thailand alley chinatown bangkok flags lantern narrow"}, {"datetaken": "2009-09-23 13:47:20", "license": "1", "title": "Back Alley", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2659/4242210620_6dabde8712_o.jpg", "secret": "c8c23f1cc9", "media": "photo", "latitude": "0", "id": "4242210620", "tags": "thailand wire alley chinatown bangkok helmet motorcycle moped narrow"}, {"datetaken": "2009-09-23 13:58:41", "license": "1", "title": "Mushroom Merchant", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4241455859_306e0b9d18_o.jpg", "secret": "025d89f4f0", "media": "photo", "latitude": "0", "id": "4241455859", "tags": "man mushroom mushrooms thailand chinatown bangkok vendor bags dried merchant scoop"}, {"datetaken": "2009-09-23 13:59:02", "license": "1", "title": "Yaowarat Road", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2487/4242274286_accb50e4ed_o.jpg", "secret": "7b33a8f7ed", "media": "photo", "latitude": "0", "id": "4242274286", "tags": "road street smile thailand chinatown traffic bangkok crowd busy tuktuk yaowarat"}, {"datetaken": "2009-09-23 13:59:49", "license": "1", "title": "Sure I Know Where We Are", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2732/4242249380_f1597dee62_o.jpg", "secret": "1014d51634", "media": "photo", "latitude": "0", "id": "4242249380", "tags": "thailand lost chinatown map bangkok directions pointing yaowarat"}, {"datetaken": "2009-09-23 14:01:37", "license": "1", "title": "Go With Your Gut", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4242293664_5f405d08df_o.jpg", "secret": "b409657822", "media": "photo", "latitude": "0", "id": "4242293664", "tags": "street man blur thailand chinatown bangkok busy"}, {"datetaken": "2009-09-23 14:06:56", "license": "1", "title": "Every Which Way", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2764/4241539227_9c6211f5e3_o.jpg", "secret": "442ce94806", "media": "photo", "latitude": "0", "id": "4241539227", "tags": "thailand chinatown bangkok crowd busy intersection"}, {"datetaken": "2009-09-23 14:09:59", "license": "1", "title": "Sizzling Cubes", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4242331260_bbe9ff427a_o.jpg", "secret": "58a948e952", "media": "photo", "latitude": "0", "id": "4242331260", "tags": "thailand bangkok grease oil pan cubes frying"}, {"datetaken": "2009-09-23 14:26:43", "license": "1", "title": "Clown in Chinatown", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4241577091_c13325aec9_o.jpg", "secret": "4c5771a352", "media": "photo", "latitude": "0", "id": "4241577091", "tags": "party thailand glasses chinatown bangkok clown plastic blower noisemaker fakenose"}, {"datetaken": "2009-09-23 14:42:46", "license": "1", "title": "Dock Man", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2526/4241594539_9eda753a84_o.jpg", "secret": "c95b543485", "media": "photo", "latitude": "0", "id": "4241594539", "tags": "ferry river thailand dock mask bangkok chaopraya"}, {"datetaken": "2009-09-23 16:27:30", "license": "1", "title": "Lizard Hunting", "text": "", "album_id": "72157623010818465", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2802/4242385568_2e86677300_o.jpg", "secret": "1ae7af7a23", "media": "photo", "latitude": "0", "id": "4242385568", "tags": "sculpture thailand bangkok tentacles lumphinipark"}, {"datetaken": "2010-01-01 02:08:50", "license": "2", "title": "DSC_0422", "text": "", "album_id": "72157623133202486", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4242362769_110431f414_o.jpg", "secret": "b70c17e0d2", "media": "photo", "latitude": "0", "id": "4242362769", "tags": "party musician music band newyear decatur newyearseve elcapitan localband twains grindernova"}, {"datetaken": "2010-01-01 02:08:53", "license": "2", "title": "DSC_0423", "text": "", "album_id": "72157623133202486", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4242363169_255504969c_o.jpg", "secret": "d81d82ecb2", "media": "photo", "latitude": "0", "id": "4242363169", "tags": "party musician music band newyear decatur newyearseve elcapitan localband twains grindernova"}, {"datetaken": "2010-01-01 02:09:01", "license": "2", "title": "DSC_0424", "text": "", "album_id": "72157623133202486", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2719/4243136352_9b871e5486_o.jpg", "secret": "9853734688", "media": "photo", "latitude": "0", "id": "4243136352", "tags": "party musician music band newyear decatur newyearseve elcapitan localband twains grindernova"}, {"datetaken": "2010-01-01 02:09:08", "license": "2", "title": "DSC_0425", "text": "", "album_id": "72157623133202486", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4243136776_feaa2ec9e4_o.jpg", "secret": "912d08abb7", "media": "photo", "latitude": "0", "id": "4243136776", "tags": "party musician music band newyear decatur newyearseve elcapitan localband twains grindernova"}, {"datetaken": "2010-01-01 02:09:41", "license": "2", "title": "DSC_0426", "text": "", "album_id": "72157623133202486", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4242364459_a0e50b0129_o.jpg", "secret": "7a358dd7e3", "media": "photo", "latitude": "0", "id": "4242364459", "tags": "party musician music band newyear decatur newyearseve elcapitan localband twains grindernova"}, {"datetaken": "2010-01-01 02:09:45", "license": "2", "title": "DSC_0427", "text": "", "album_id": "72157623133202486", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2668/4243137664_bbb444989e_o.jpg", "secret": "e6c578623b", "media": "photo", "latitude": "0", "id": "4243137664", "tags": "party musician music band newyear decatur newyearseve elcapitan localband twains grindernova"}, {"datetaken": "2010-01-01 02:09:58", "license": "2", "title": "DSC_0428", "text": "", "album_id": "72157623133202486", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4243138084_252eea49e1_o.jpg", "secret": "cddddc1248", "media": "photo", "latitude": "0", "id": "4243138084", "tags": "party musician music band newyear decatur newyearseve elcapitan localband twains grindernova"}, {"datetaken": "2010-01-01 02:10:06", "license": "2", "title": "DSC_0429", "text": "", "album_id": "72157623133202486", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4243138496_30a74235cd_o.jpg", "secret": "ee4df310fc", "media": "photo", "latitude": "0", "id": "4243138496", "tags": "party musician music band newyear decatur newyearseve elcapitan localband twains grindernova"}, {"datetaken": "2010-01-01 02:10:13", "license": "2", "title": "DSC_0430", "text": "", "album_id": "72157623133202486", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4242366275_f18338d300_o.jpg", "secret": "6e37fae273", "media": "photo", "latitude": "0", "id": "4242366275", "tags": "party musician music band newyear decatur newyearseve elcapitan localband twains grindernova"}, {"datetaken": "2010-01-01 02:10:22", "license": "2", "title": "DSC_0431", "text": "", "album_id": "72157623133202486", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4243139390_dc94bee9e0_o.jpg", "secret": "0e9e4f5baf", "media": "photo", "latitude": "0", "id": "4243139390", "tags": "party musician music band newyear decatur newyearseve elcapitan localband twains grindernova"}, {"datetaken": "2009-12-23 22:37:54", "license": "1", "title": "Breakfast", "text": "", "album_id": "72157623259212490", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2581/4243045735_4167ac4eee_o.jpg", "secret": "2c3b2b0f19", "media": "photo", "latitude": "0", "id": "4243045735", "tags": "food fish japan breakfast soup hostel hokkaido rice pentax tea jan \u5317\u6d77\u9053 \u65e5\u672c pickles janne moren genya kussharo k10d janmoren"}, {"datetaken": "2009-12-24 00:27:37", "license": "1", "title": "Farmhouse", "text": "", "album_id": "72157623259212490", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2532/4243046217_dd76354db8_o.jpg", "secret": "ea35f14648", "media": "photo", "latitude": "0", "id": "4243046217", "tags": "winter mountain snow sunshine japan hokkaido pentax jan farm \u5317\u6d77\u9053 \u65e5\u672c janne moren k10d janmoren"}, {"datetaken": "2009-12-24 00:34:13", "license": "1", "title": "Hokkaido hills", "text": "", "album_id": "72157623259212490", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4243820034_289e443024_o.jpg", "secret": "c4611ab665", "media": "photo", "latitude": "0", "id": "4243820034", "tags": "winter mountain snow sunshine japan hokkaido view pentax jan \u5317\u6d77\u9053 \u65e5\u672c janne moren k10d janmoren"}, {"datetaken": "2009-12-24 02:45:16", "license": "1", "title": "Seed Pod", "text": "", "album_id": "72157623259212490", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2737/4243820432_26e5cca309_o.jpg", "secret": "730ceae10c", "media": "photo", "latitude": "0", "id": "4243820432", "tags": "winter red white snow plant sunshine japan pod hokkaido pentax jan \u5317\u6d77\u9053 \u65e5\u672c janne moren k10d janmoren"}, {"datetaken": "2009-12-24 03:33:36", "license": "1", "title": "Checkerboard", "text": "", "album_id": "72157623259212490", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4302227882_f5e2246cd3_o.jpg", "secret": "6d0b1e8d56", "media": "photo", "latitude": "0", "id": "4302227882", "tags": "winter white mountain snow black sunshine japan hokkaido pattern view pentax jan \u5317\u6d77\u9053 \u65e5\u672c checkerboard janne moren k10d janmoren"}, {"datetaken": "2009-12-24 05:20:42", "license": "1", "title": "Kussharo Genya", "text": "", "album_id": "72157623259212490", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2614/4243039545_662db6b09c_o.jpg", "secret": "06f3096d55", "media": "photo", "latitude": "0", "id": "4243039545", "tags": "winter snow building sunshine japan hostel hokkaido pentax jan \u5317\u6d77\u9053 \u65e5\u672c janne moren genya kussharo k10d janmoren"}, {"datetaken": "2009-12-24 09:19:37", "license": "1", "title": "Christmas Sushi", "text": "", "album_id": "72157623259212490", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4243048059_99816f52dc_o.jpg", "secret": "8d4b02be7c", "media": "photo", "latitude": "0", "id": "4243048059", "tags": "christmas party food japan sushi hostel hokkaido pentax jan \u5317\u6d77\u9053 \u65e5\u672c janne moren genya kussharo k10d janmoren"}, {"datetaken": "2009-12-24 12:00:45", "license": "1", "title": "It Turns Right", "text": "", "album_id": "72157623259212490", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2738/4293424681_0a24c36f1d_o.jpg", "secret": "8d2bcb3304", "media": "photo", "latitude": "0", "id": "4293424681", "tags": "road winter shadow bw snow tree 120 film sunshine sign japan mediumformat hokkaido track jan right d76 mat \u5317\u6d77\u9053 \u65e5\u672c hp5 arrow 800 ilford yashica janne ritsuko moren kussharo janmoren"}, {"datetaken": "2009-12-24 12:00:45", "license": "5", "title": "Winter Scene II", "text": "", "album_id": "72157623259212490", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4294372072_4620e64a0f_o.jpg", "secret": "191e05aa5a", "media": "photo", "latitude": "0", "id": "4294372072", "tags": "winter shadow bw cloud snow tree 120 film sunshine japan mediumformat landscape hokkaido jan d76 mat \u5317\u6d77\u9053 \u65e5\u672c hp5 800 ilford yashica janne moren kussharo janmoren"}, {"datetaken": "2009-12-24 12:00:45", "license": "1", "title": "Winter Morning", "text": "", "album_id": "72157623259212490", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4293630189_cdd3d59ccd_o.jpg", "secret": "36895a0942", "media": "photo", "latitude": "0", "id": "4293630189", "tags": "road winter shadow bw snow tree 120 film sunshine japan mediumformat landscape hokkaido jan d76 mat \u5317\u6d77\u9053 \u65e5\u672c hp5 800 ilford yashica janne moren kussharo janmoren"}, {"datetaken": "2009-12-24 12:00:45", "license": "1", "title": "Winter Scene", "text": "", "album_id": "72157623259212490", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4293427643_b1f464dd15_o.jpg", "secret": "bcc2272dcd", "media": "photo", "latitude": "0", "id": "4293427643", "tags": "winter shadow bw cloud snow tree 120 film sunshine japan mediumformat landscape hokkaido jan d76 mat \u5317\u6d77\u9053 \u65e5\u672c hp5 800 ilford yashica janne moren kussharo janmoren"}, {"datetaken": "2009-12-24 12:00:46", "license": "5", "title": "The Silo", "text": "", "album_id": "72157623259212490", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4293999957_935dd60f69_o.jpg", "secret": "bcf66cb2e2", "media": "photo", "latitude": "0", "id": "4293999957", "tags": "winter bw mountain snow 120 film japan mediumformat landscape hokkaido jan ruin silo d76 mat \u5317\u6d77\u9053 \u65e5\u672c hp5 800 ilford yashica janne moren kussharo janmoren"}, {"datetaken": "2004-08-06 11:20:45", "license": "1", "title": "Paula at Pueblo Bonito", "text": "", "album_id": "415579", "longitude": "-105.942000", "url_o": "https://farm1.staticflickr.com/14/17496335_c42d4a2841_o.jpg", "secret": "c42d4a2841", "media": "photo", "latitude": "35.681800", "id": "17496335", "tags": "santafe geotagged opera paula paulakechichian geo:lat=356818 geo:lon=105942"}, {"datetaken": "2004-08-06 12:53:14", "license": "1", "title": "Sculpture on Canyon Road", "text": "", "album_id": "415579", "longitude": "-105.932000", "url_o": "https://farm1.staticflickr.com/12/17496345_7ad32accd1_o.jpg", "secret": "7ad32accd1", "media": "photo", "latitude": "35.682800", "id": "17496345", "tags": "sculpture santafe geotagged opera geolat356828 geolon105932"}, {"datetaken": "2004-08-06 17:54:51", "license": "1", "title": "Paula outside Ten Thousand Waves", "text": "", "album_id": "415579", "longitude": "-105.890000", "url_o": "https://farm1.staticflickr.com/10/17496355_92a1bcd13f_o.jpg", "secret": "92a1bcd13f", "media": "photo", "latitude": "35.717950", "id": "17496355", "tags": "santafe geotagged opera paula paulakechichian tenthousandwaves geo:lat=3571795 geo:lon=10589"}, {"datetaken": "2004-08-06 17:55:32", "license": "1", "title": "Me outside Ten Thousand Waves", "text": "", "album_id": "415579", "longitude": "-105.890000", "url_o": "https://farm1.staticflickr.com/10/17496364_97be65908b_o.jpg", "secret": "97be65908b", "media": "photo", "latitude": "35.717950", "id": "17496364", "tags": "santafe geotagged opera peter pete peterbatty tenthousandwaves geo:lat=3571795 geo:lon=10589"}, {"datetaken": "2004-08-06 19:59:28", "license": "1", "title": "Paula at Pueblo Bonito", "text": "", "album_id": "415579", "longitude": "-105.942000", "url_o": "https://farm1.staticflickr.com/13/17496372_f647b869a7_o.jpg", "secret": "f647b869a7", "media": "photo", "latitude": "35.681800", "id": "17496372", "tags": "santafe geotagged opera paula paulakechichian geo:lat=356818 geo:lon=105942"}, {"datetaken": "2004-08-06 20:01:34", "license": "1", "title": "Santa Fe, New Mexico", "text": "", "album_id": "415579", "longitude": "-105.942000", "url_o": "https://farm1.staticflickr.com/11/17496382_a7777df2b1_o.jpg", "secret": "a7777df2b1", "media": "photo", "latitude": "35.681800", "id": "17496382", "tags": "santafe geotagged opera peter paula pete peterbatty paulakechichian geo:lat=356818 geo:lon=105942"}, {"datetaken": "2004-08-07 18:38:09", "license": "1", "title": "Me at the tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/9/17496393_bac3d49023_o.jpg", "secret": "bac3d49023", "media": "photo", "latitude": "35.763250", "id": "17496393", "tags": "santafe geotagged opera peter tailgate pete peterbatty geo:lon=1059465 geo:lat=3576325"}, {"datetaken": "2004-08-07 18:38:42", "license": "1", "title": "Me at the tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/10/17496397_b7123b3a1b_o.jpg", "secret": "b7123b3a1b", "media": "photo", "latitude": "35.763250", "id": "17496397", "tags": "santafe geotagged opera peter tailgate pete peterbatty geo:lon=1059465 geo:lat=3576325"}, {"datetaken": "2004-08-07 18:38:51", "license": "1", "title": "Me at the tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/13/17496402_f6a7c68ddc_o.jpg", "secret": "f6a7c68ddc", "media": "photo", "latitude": "35.763250", "id": "17496402", "tags": "santafe geotagged opera peter tailgate pete peterbatty geo:lon=1059465 geo:lat=3576325"}, {"datetaken": "2004-08-07 18:39:08", "license": "1", "title": "Tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/11/17496414_c1bd56f801_o.jpg", "secret": "c1bd56f801", "media": "photo", "latitude": "35.763250", "id": "17496414", "tags": "santafe geotagged opera peter tailgate pete peterbatty warrenferguson geo:lon=1059465 geo:lat=3576325"}, {"datetaken": "2004-08-07 18:59:01", "license": "1", "title": "Tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/13/17496419_f67b86b2f6_o.jpg", "secret": "f67b86b2f6", "media": "photo", "latitude": "35.763250", "id": "17496419", "tags": "santafe geotagged opera paula tailgate judyferguson paulakechichian geo:lon=1059465 geo:lat=3576325"}, {"datetaken": "2004-08-07 18:59:07", "license": "1", "title": "Tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/13/17496426_aef8809f97_o.jpg", "secret": "aef8809f97", "media": "photo", "latitude": "35.763250", "id": "17496426", "tags": "santafe geotagged opera tailgate warrenferguson russchandler geolon1059465 geolat3576325"}, {"datetaken": "2004-08-07 18:59:23", "license": "1", "title": "Tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/11/17496430_2e8129457e_o.jpg", "secret": "2e8129457e", "media": "photo", "latitude": "35.763250", "id": "17496430", "tags": "santafe geotagged opera tailgate geolon1059465 geolat3576325"}, {"datetaken": "2004-08-07 18:59:43", "license": "1", "title": "Tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/12/17496437_272fbf523c_o.jpg", "secret": "272fbf523c", "media": "photo", "latitude": "35.763250", "id": "17496437", "tags": "santafe geotagged opera tailgate geolon1059465 geolat3576325"}, {"datetaken": "2004-08-07 19:02:07", "license": "1", "title": "Tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/14/17496440_d0ce908c1b_o.jpg", "secret": "d0ce908c1b", "media": "photo", "latitude": "35.763250", "id": "17496440", "tags": "santafe geotagged opera paula tailgate judyferguson paulakechichian geo:lon=1059465 geo:lat=3576325"}, {"datetaken": "2004-08-07 19:33:26", "license": "1", "title": "Tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/9/17496442_4c99a3e840_o.jpg", "secret": "4c99a3e840", "media": "photo", "latitude": "35.763250", "id": "17496442", "tags": "santafe geotagged opera tailgate geolon1059465 geolat3576325"}, {"datetaken": "2004-08-07 19:37:01", "license": "1", "title": "Tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/14/17496446_5b4ec176ac_o.jpg", "secret": "5b4ec176ac", "media": "photo", "latitude": "35.763250", "id": "17496446", "tags": "santafe geotagged opera peter tailgate pete peterbatty russchandler geo:lon=1059465 geo:lat=3576325"}, {"datetaken": "2004-08-07 19:37:13", "license": "1", "title": "Tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/11/17496458_78ca7645af_o.jpg", "secret": "78ca7645af", "media": "photo", "latitude": "35.763250", "id": "17496458", "tags": "santafe geotagged opera peter tailgate pete peterbatty russchandler geo:lon=1059465 geo:lat=3576325"}, {"datetaken": "2004-08-07 19:37:46", "license": "1", "title": "Tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/11/17496465_9746c481ac_o.jpg", "secret": "9746c481ac", "media": "photo", "latitude": "35.763250", "id": "17496465", "tags": "santafe geotagged opera tailgate geolon1059465 geolat3576325"}, {"datetaken": "2004-08-07 19:37:56", "license": "1", "title": "Tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/11/17496472_72355c7c90_o.jpg", "secret": "72355c7c90", "media": "photo", "latitude": "35.763250", "id": "17496472", "tags": "santafe geotagged opera tailgate russchandler geolon1059465 geolat3576325"}, {"datetaken": "2004-08-07 19:38:14", "license": "1", "title": "Tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/14/17496487_c6f83b1dfc_o.jpg", "secret": "c6f83b1dfc", "media": "photo", "latitude": "35.763250", "id": "17496487", "tags": "santafe geotagged opera tailgate judyferguson geolon1059465 geolat3576325"}, {"datetaken": "2004-08-07 19:38:23", "license": "1", "title": "Tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/9/17496493_ed346d7c17_o.jpg", "secret": "ed346d7c17", "media": "photo", "latitude": "35.763250", "id": "17496493", "tags": "santafe geotagged opera tailgate warrenferguson geolon1059465 geolat3576325"}, {"datetaken": "2004-08-07 19:38:36", "license": "1", "title": "Tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/11/17496504_5933bb1da3_o.jpg", "secret": "5933bb1da3", "media": "photo", "latitude": "35.763250", "id": "17496504", "tags": "santafe geotagged opera tailgate geolon1059465 geolat3576325"}, {"datetaken": "2004-08-07 19:39:16", "license": "1", "title": "Me and Paula at the tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/9/17496519_e6215c0f89_o.jpg", "secret": "e6215c0f89", "media": "photo", "latitude": "35.763250", "id": "17496519", "tags": "santafe geotagged opera peter paula tailgate pete peterbatty paulakechichian geo:lon=1059465 geo:lat=3576325"}, {"datetaken": "2004-08-07 19:39:35", "license": "1", "title": "Tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/13/17496526_0260612161_o.jpg", "secret": "0260612161", "media": "photo", "latitude": "35.763250", "id": "17496526", "tags": "santafe geotagged opera tailgate geolon1059465 geolat3576325"}, {"datetaken": "2004-08-07 19:40:10", "license": "1", "title": "Tailgate party", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/14/17496529_dc845d3104_o.jpg", "secret": "dc845d3104", "media": "photo", "latitude": "35.763250", "id": "17496529", "tags": "santafe geotagged opera tailgate geolon1059465 geolat3576325"}, {"datetaken": "2004-08-07 19:41:41", "license": "1", "title": "Group photo", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/13/17496533_63d62b302c_o.jpg", "secret": "63d62b302c", "media": "photo", "latitude": "35.763250", "id": "17496533", "tags": "santafe geotagged opera peter paula tailgate pete peterbatty warrenferguson judyferguson russchandler santafegroup paulakechichian geo:lon=1059465 geo:lat=3576325"}, {"datetaken": "2004-08-07 19:42:00", "license": "1", "title": "Group photo", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/10/17496536_03515ed3ab_o.jpg", "secret": "03515ed3ab", "media": "photo", "latitude": "35.763250", "id": "17496536", "tags": "santafe geotagged opera peter paula tailgate pete peterbatty warrenferguson judyferguson russchandler santafegroup paulakechichian geo:lon=1059465 geo:lat=3576325"}, {"datetaken": "2004-08-07 19:47:20", "license": "1", "title": "New Mexico sunset", "text": "", "album_id": "415579", "longitude": "-105.946500", "url_o": "https://farm1.staticflickr.com/14/17496545_c6c18f9bc7_o.jpg", "secret": "c6c18f9bc7", "media": "photo", "latitude": "35.763250", "id": "17496545", "tags": "sunset santafe geotagged opera tailgate geolon1059465 geolat3576325"}, {"datetaken": "2005-06-03 20:22:08", "license": "1", "title": "IMG_1850.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17397769_37d3d928f2_o.jpg", "secret": "37d3d928f2", "media": "photo", "latitude": "0", "id": "17397769", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 20:32:37", "license": "1", "title": "IMG_1851.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17397893_acb81e1c0f_o.jpg", "secret": "acb81e1c0f", "media": "photo", "latitude": "0", "id": "17397893", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 20:38:07", "license": "1", "title": "IMG_1852.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17398037_6d9481ad52_o.jpg", "secret": "6d9481ad52", "media": "photo", "latitude": "0", "id": "17398037", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 20:38:25", "license": "1", "title": "IMG_1853.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17398173_085a019c79_o.jpg", "secret": "085a019c79", "media": "photo", "latitude": "0", "id": "17398173", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 20:40:51", "license": "1", "title": "IMG_1854.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17398357_4cfa222e87_o.jpg", "secret": "4cfa222e87", "media": "photo", "latitude": "0", "id": "17398357", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 20:41:11", "license": "1", "title": "IMG_1855.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17398589_19e046e191_o.jpg", "secret": "19e046e191", "media": "photo", "latitude": "0", "id": "17398589", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 20:45:07", "license": "1", "title": "IMG_1858.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17398763_b58825394e_o.jpg", "secret": "b58825394e", "media": "photo", "latitude": "0", "id": "17398763", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 20:45:22", "license": "1", "title": "IMG_1859.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17398912_7f18afafb0_o.jpg", "secret": "7f18afafb0", "media": "photo", "latitude": "0", "id": "17398912", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 20:45:30", "license": "1", "title": "IMG_1860.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17399141_3afaeac850_o.jpg", "secret": "3afaeac850", "media": "photo", "latitude": "0", "id": "17399141", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 20:47:35", "license": "1", "title": "IMG_1861.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17399304_c0ec99f6a7_o.jpg", "secret": "c0ec99f6a7", "media": "photo", "latitude": "0", "id": "17399304", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 20:47:52", "license": "1", "title": "IMG_1862.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/17399509_44eefdf66f_o.jpg", "secret": "44eefdf66f", "media": "photo", "latitude": "0", "id": "17399509", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 20:48:45", "license": "1", "title": "IMG_1863.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17399712_f87a525459_o.jpg", "secret": "f87a525459", "media": "photo", "latitude": "0", "id": "17399712", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 20:50:07", "license": "1", "title": "IMG_1864.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17399866_20f0940ba0_o.jpg", "secret": "20f0940ba0", "media": "photo", "latitude": "0", "id": "17399866", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 20:54:05", "license": "1", "title": "IMG_1865.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17400033_0b4b42152d_o.jpg", "secret": "0b4b42152d", "media": "photo", "latitude": "0", "id": "17400033", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 20:54:12", "license": "1", "title": "IMG_1866.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17400189_f3a40a8dfc_o.jpg", "secret": "f3a40a8dfc", "media": "photo", "latitude": "0", "id": "17400189", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 20:54:17", "license": "1", "title": "IMG_1867.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17400459_257703dbe0_o.jpg", "secret": "257703dbe0", "media": "photo", "latitude": "0", "id": "17400459", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 20:54:22", "license": "1", "title": "IMG_1868.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17400636_4e14c2989d_o.jpg", "secret": "4e14c2989d", "media": "photo", "latitude": "0", "id": "17400636", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 20:54:30", "license": "1", "title": "IMG_1869.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17400793_747e01aec0_o.jpg", "secret": "747e01aec0", "media": "photo", "latitude": "0", "id": "17400793", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 21:42:44", "license": "1", "title": "IMG_1871.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17400946_c73eec209c_o.jpg", "secret": "c73eec209c", "media": "photo", "latitude": "0", "id": "17400946", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 21:58:59", "license": "1", "title": "IMG_1873.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17401136_cdefbf7ace_o.jpg", "secret": "cdefbf7ace", "media": "photo", "latitude": "0", "id": "17401136", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 21:59:07", "license": "1", "title": "IMG_1874.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17401336_4fb491b61b_o.jpg", "secret": "4fb491b61b", "media": "photo", "latitude": "0", "id": "17401336", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 21:59:25", "license": "1", "title": "IMG_1875.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17401534_8d45d57c9b_o.jpg", "secret": "8d45d57c9b", "media": "photo", "latitude": "0", "id": "17401534", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 22:21:28", "license": "1", "title": "B-52", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17401748_5c73fbfd8d_o.jpg", "secret": "5c73fbfd8d", "media": "photo", "latitude": "0", "id": "17401748", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 22:24:26", "license": "1", "title": "IMG_1878.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17401981_39bb32cc72_o.jpg", "secret": "39bb32cc72", "media": "photo", "latitude": "0", "id": "17401981", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 22:24:46", "license": "1", "title": "IMG_1879.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17402192_25421660b7_o.jpg", "secret": "25421660b7", "media": "photo", "latitude": "0", "id": "17402192", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 22:25:11", "license": "1", "title": "IMG_1880.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17402295_ca00a25b2c_o.jpg", "secret": "ca00a25b2c", "media": "photo", "latitude": "0", "id": "17402295", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 22:44:03", "license": "1", "title": "IMG_1881.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17402415_b07f2d0813_o.jpg", "secret": "b07f2d0813", "media": "photo", "latitude": "0", "id": "17402415", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 22:44:16", "license": "1", "title": "IMG_1882.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17402559_ad8b00dd34_o.jpg", "secret": "ad8b00dd34", "media": "photo", "latitude": "0", "id": "17402559", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 22:44:32", "license": "1", "title": "IMG_1883.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17402650_7b57f4cda0_o.jpg", "secret": "7b57f4cda0", "media": "photo", "latitude": "0", "id": "17402650", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 22:44:38", "license": "1", "title": "IMG_1884.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17402764_8b4b5e1366_o.jpg", "secret": "8b4b5e1366", "media": "photo", "latitude": "0", "id": "17402764", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 22:44:59", "license": "1", "title": "IMG_1885.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17402889_e90f9ef50c_o.jpg", "secret": "e90f9ef50c", "media": "photo", "latitude": "0", "id": "17402889", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 22:46:35", "license": "1", "title": "IMG_1886.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17402987_b7976758cd_o.jpg", "secret": "b7976758cd", "media": "photo", "latitude": "0", "id": "17402987", "tags": "2005 goingaway party"}, {"datetaken": "2005-06-03 22:46:54", "license": "1", "title": "IMG_1887.JPG", "text": "", "album_id": "413663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17403103_deea3a84f9_o.jpg", "secret": "deea3a84f9", "media": "photo", "latitude": "0", "id": "17403103", "tags": "2005 goingaway party"}, {"datetaken": "2005-07-04 22:07:45", "license": "3", "title": "Fireworks Display", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698061_c7c8d2ee52_o.jpg", "secret": "c7c8d2ee52", "media": "photo", "latitude": "0", "id": "23698061", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:07:54", "license": "3", "title": "More Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698084_f04da1d96e_o.jpg", "secret": "f04da1d96e", "media": "photo", "latitude": "0", "id": "23698084", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:08:02", "license": "3", "title": "Beautiful Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698101_8e4ca03b02_o.jpg", "secret": "8e4ca03b02", "media": "photo", "latitude": "0", "id": "23698101", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:08:10", "license": "3", "title": "Breathtaking Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698128_66c8408d1e_o.jpg", "secret": "66c8408d1e", "media": "photo", "latitude": "0", "id": "23698128", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:08:53", "license": "3", "title": "Flowery Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698157_1b32837e6f_o.jpg", "secret": "1b32837e6f", "media": "photo", "latitude": "0", "id": "23698157", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:11:40", "license": "3", "title": "Purple Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698187_eeec4156b7_o.jpg", "secret": "eeec4156b7", "media": "photo", "latitude": "0", "id": "23698187", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:11:48", "license": "3", "title": "Seattle Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698230_6289d95d82_o.jpg", "secret": "6289d95d82", "media": "photo", "latitude": "0", "id": "23698230", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:12:23", "license": "3", "title": "Bellevue Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698243_71390f3c8f_o.jpg", "secret": "71390f3c8f", "media": "photo", "latitude": "0", "id": "23698243", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:13:50", "license": "3", "title": "Huge Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698275_6167f2ebab_o.jpg", "secret": "6167f2ebab", "media": "photo", "latitude": "0", "id": "23698275", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:14:15", "license": "3", "title": "Fireworks Show", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698297_165c750e8c_o.jpg", "secret": "165c750e8c", "media": "photo", "latitude": "0", "id": "23698297", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:14:24", "license": "3", "title": "Blue Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698323_b179888595_o.jpg", "secret": "b179888595", "media": "photo", "latitude": "0", "id": "23698323", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:15:17", "license": "3", "title": "Explosive Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698350_04d95cbdf7_o.jpg", "secret": "04d95cbdf7", "media": "photo", "latitude": "0", "id": "23698350", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:15:27", "license": "3", "title": "Grand Finale Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698371_a193bcd7d5_o.jpg", "secret": "a193bcd7d5", "media": "photo", "latitude": "0", "id": "23698371", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:15:53", "license": "3", "title": "Big Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698394_2a92cdffb0_o.jpg", "secret": "2a92cdffb0", "media": "photo", "latitude": "0", "id": "23698394", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:16:03", "license": "3", "title": "Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698411_5255244b4a_o.jpg", "secret": "5255244b4a", "media": "photo", "latitude": "0", "id": "23698411", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:16:23", "license": "3", "title": "Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698433_df9afea11b_o.jpg", "secret": "df9afea11b", "media": "photo", "latitude": "0", "id": "23698433", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:18:13", "license": "3", "title": "Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698451_548b9a080f_o.jpg", "secret": "548b9a080f", "media": "photo", "latitude": "0", "id": "23698451", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:18:32", "license": "3", "title": "Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698486_72f4539522_o.jpg", "secret": "72f4539522", "media": "photo", "latitude": "0", "id": "23698486", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:18:40", "license": "3", "title": "Fireworks Party", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698507_a69a424b30_o.jpg", "secret": "a69a424b30", "media": "photo", "latitude": "0", "id": "23698507", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:18:48", "license": "3", "title": "Fourth of July Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698529_e7a8709899_o.jpg", "secret": "e7a8709899", "media": "photo", "latitude": "0", "id": "23698529", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:18:57", "license": "3", "title": "American Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698550_d1888ee62f_o.jpg", "secret": "d1888ee62f", "media": "photo", "latitude": "0", "id": "23698550", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:19:05", "license": "3", "title": "Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698559_2af20873e8_o.jpg", "secret": "2af20873e8", "media": "photo", "latitude": "0", "id": "23698559", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:19:14", "license": "3", "title": "Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698585_5f534262be_o.jpg", "secret": "5f534262be", "media": "photo", "latitude": "0", "id": "23698585", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:19:22", "license": "3", "title": "Yellow Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23697915_173248a748_o.jpg", "secret": "173248a748", "media": "photo", "latitude": "0", "id": "23697915", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:20:11", "license": "3", "title": "Sparkle Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23697931_8970472751_o.jpg", "secret": "8970472751", "media": "photo", "latitude": "0", "id": "23697931", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:20:20", "license": "3", "title": "Orange Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23697947_3b3a314aa0_o.jpg", "secret": "3b3a314aa0", "media": "photo", "latitude": "0", "id": "23697947", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:20:39", "license": "3", "title": "Hot Red Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698033_610ed04d6e_o.jpg", "secret": "610ed04d6e", "media": "photo", "latitude": "0", "id": "23698033", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:25:43", "license": "3", "title": "Green Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23697973_13b238eb15_o.jpg", "secret": "13b238eb15", "media": "photo", "latitude": "0", "id": "23697973", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2005-07-04 22:26:23", "license": "3", "title": "Red Fireworks", "text": "", "album_id": "543686", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23698011_4df5130490_o.jpg", "secret": "4df5130490", "media": "photo", "latitude": "0", "id": "23698011", "tags": "fireworks july4th independenceday seattle bellevue washington firecrackers pyrotechnics lightshow nightphoto"}, {"datetaken": "2009-12-31 21:08:48", "license": "1", "title": "Hot Pot", "text": "", "album_id": "72157623021292833", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4247867651_d6df23b1eb_o.jpg", "secret": "3d9e5e609b", "media": "photo", "latitude": "0", "id": "4247867651", "tags": ""}, {"datetaken": "2009-12-31 21:51:05", "license": "1", "title": "My Dad", "text": "", "album_id": "72157623021292833", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2553/4248642144_eda2359c6d_o.jpg", "secret": "9143902d21", "media": "photo", "latitude": "0", "id": "4248642144", "tags": "dad"}, {"datetaken": "2009-12-31 22:15:52", "license": "1", "title": "IMG_0609", "text": "", "album_id": "72157623021292833", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4248644562_b0e197fc4a_o.jpg", "secret": "3f4a7bacfd", "media": "photo", "latitude": "0", "id": "4248644562", "tags": ""}, {"datetaken": "2009-12-31 22:17:34", "license": "1", "title": "IMG_0625", "text": "", "album_id": "72157623021292833", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4247874315_a8c823c96b_o.jpg", "secret": "1015d24939", "media": "photo", "latitude": "0", "id": "4247874315", "tags": ""}, {"datetaken": "2009-12-31 23:12:53", "license": "1", "title": "Behave..", "text": "", "album_id": "72157623021292833", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2764/4248649718_c61f50fe4d_o.jpg", "secret": "0203e46294", "media": "photo", "latitude": "0", "id": "4248649718", "tags": ""}, {"datetaken": "2009-12-31 23:16:46", "license": "1", "title": "Lovley Wine, Lovley Anne", "text": "", "album_id": "72157623021292833", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2710/4247879159_98aa7e471e_o.jpg", "secret": "8110fea5eb", "media": "photo", "latitude": "0", "id": "4247879159", "tags": "wine drinking"}, {"datetaken": "2010-01-01 00:04:17", "license": "1", "title": "Oli and Anne", "text": "", "album_id": "72157623021292833", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4247881795_9bb5d4392a_o.jpg", "secret": "ab5c84eb37", "media": "photo", "latitude": "0", "id": "4247881795", "tags": ""}, {"datetaken": "2010-01-01 00:06:02", "license": "1", "title": "Champagne", "text": "", "album_id": "72157623021292833", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4248656524_d6058190d3_o.jpg", "secret": "2ef9b15752", "media": "photo", "latitude": "0", "id": "4248656524", "tags": ""}, {"datetaken": "2010-01-01 00:24:06", "license": "1", "title": "IMG_0876", "text": "", "album_id": "72157623021292833", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4247886911_3d688b100d_o.jpg", "secret": "9a50ab9220", "media": "photo", "latitude": "0", "id": "4247886911", "tags": ""}, {"datetaken": "2010-01-01 02:18:34", "license": "1", "title": "New Year Cock", "text": "", "album_id": "72157623021292833", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4248661530_9269d567c4_o.jpg", "secret": "1d22989b88", "media": "photo", "latitude": "0", "id": "4248661530", "tags": ""}, {"datetaken": "2010-01-01 02:19:28", "license": "1", "title": "Cock", "text": "", "album_id": "72157623021292833", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4247891519_855c3b0475_o.jpg", "secret": "a19009d4a8", "media": "photo", "latitude": "0", "id": "4247891519", "tags": ""}, {"datetaken": "2010-01-01 02:22:07", "license": "1", "title": "Party Cock", "text": "", "album_id": "72157623021292833", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2512/4247893779_c0227d1435_o.jpg", "secret": "82eac42601", "media": "photo", "latitude": "0", "id": "4247893779", "tags": "cock"}, {"datetaken": "2007-08-15 04:11:16", "license": "1", "title": "2009 Holiday Party & Lizard Auction_3", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4247692179_1025bc5a55_o.jpg", "secret": "31809b519a", "media": "photo", "latitude": "0", "id": "4247692179", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 04:14:07", "license": "1", "title": "2009 Holiday Party & Lizard Auction_10", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4247696867_053f97b8b9_o.jpg", "secret": "9f37f9671f", "media": "photo", "latitude": "0", "id": "4247696867", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 04:15:57", "license": "1", "title": "2009 Holiday Party & Lizard Auction_14", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2661/4247698065_43af98f68c_o.jpg", "secret": "c9ab82e5a3", "media": "photo", "latitude": "0", "id": "4247698065", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 04:16:25", "license": "1", "title": "2009 Holiday Party & Lizard Auction_15", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4247698777_8f8ab38ca1_o.jpg", "secret": "927a56dd1e", "media": "photo", "latitude": "0", "id": "4247698777", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 04:16:55", "license": "1", "title": "2009 Holiday Party & Lizard Auction_16", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4248471596_6a1be5aee1_o.jpg", "secret": "22c4323706", "media": "photo", "latitude": "0", "id": "4248471596", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 04:17:01", "license": "1", "title": "2009 Holiday Party & Lizard Auction_17", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4247700015_49a88beac3_o.jpg", "secret": "4e79035737", "media": "photo", "latitude": "0", "id": "4247700015", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 04:17:23", "license": "1", "title": "2009 Holiday Party & Lizard Auction_18", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4248472628_93da4f15cf_o.jpg", "secret": "a9c18c1543", "media": "photo", "latitude": "0", "id": "4248472628", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 04:17:40", "license": "1", "title": "2009 Holiday Party & Lizard Auction_19", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4247700495_c04fc2dc41_o.jpg", "secret": "8bde7a2ef4", "media": "photo", "latitude": "0", "id": "4247700495", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 04:18:02", "license": "1", "title": "2009 Holiday Party & Lizard Auction_20_copy", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4248479702_7f0cdd74b4_o.jpg", "secret": "b210dc352d", "media": "photo", "latitude": "0", "id": "4248479702", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 04:20:46", "license": "1", "title": "2009 Holiday Party & Lizard Auction_23", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4247704215_54d6820bd6_o.jpg", "secret": "27fe96f71b", "media": "photo", "latitude": "0", "id": "4247704215", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 04:21:47", "license": "1", "title": "2009 Holiday Party & Lizard Auction_24", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4248477524_77cd826f4d_o.jpg", "secret": "c9ed3d8f8e", "media": "photo", "latitude": "0", "id": "4248477524", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 04:22:01", "license": "1", "title": "2009 Holiday Party & Lizard Auction_26", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4248478446_27257713b6_o.jpg", "secret": "23964eaf09", "media": "photo", "latitude": "0", "id": "4248478446", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 04:22:24", "license": "1", "title": "2009 Holiday Party & Lizard Auction_28", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2729/4247709473_896c9c6984_o.jpg", "secret": "b85c2bf2d8", "media": "photo", "latitude": "0", "id": "4247709473", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 04:22:47", "license": "1", "title": "2009 Holiday Party & Lizard Auction_29", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4247710625_58711988dd_o.jpg", "secret": "020c6e0f38", "media": "photo", "latitude": "0", "id": "4247710625", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 04:23:06", "license": "1", "title": "2009 Holiday Party & Lizard Auction_30", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4248484112_495e1fc27c_o.jpg", "secret": "335948333c", "media": "photo", "latitude": "0", "id": "4248484112", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 04:29:49", "license": "1", "title": "2009 Holiday Party & Lizard Auction_32", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4248485178_9c86ef2576_o.jpg", "secret": "28fd59c622", "media": "photo", "latitude": "0", "id": "4248485178", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 04:34:35", "license": "1", "title": "2009 Holiday Party & Lizard Auction_40", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4248493586_1b6672fd56_o.jpg", "secret": "2205e6e11f", "media": "photo", "latitude": "0", "id": "4248493586", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 04:34:57", "license": "1", "title": "2009 Holiday Party & Lizard Auction_42", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2745/4247723043_0aea5360ec_o.jpg", "secret": "968d0369d9", "media": "photo", "latitude": "0", "id": "4247723043", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2007-08-15 05:46:56", "license": "1", "title": "2009 Holiday Party & Lizard Auction 146", "text": "", "album_id": "72157623145509240", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/4248469844_f8876534fe_o.jpg", "secret": "6e578f03f3", "media": "photo", "latitude": "0", "id": "4248469844", "tags": "party holiday auction lizard national mississippiriver member dubuque 2009 historicalsociety museumaquarium"}, {"datetaken": "2009-12-31 17:33:12", "license": "1", "title": "Gastgeber", "text": "", "album_id": "72157623159821460", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4253547383_ac47ba0c34_o.jpg", "secret": "773032e280", "media": "photo", "latitude": "0", "id": "4253547383", "tags": "switzerland m\u00fcrren"}, {"datetaken": "2009-12-31 17:33:18", "license": "1", "title": "Gastgeberin", "text": "", "album_id": "72157623159821460", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4253547573_07b938dc04_o.jpg", "secret": "80e1a77be4", "media": "photo", "latitude": "0", "id": "4253547573", "tags": "switzerland m\u00fcrren"}, {"datetaken": "2009-12-31 18:27:57", "license": "1", "title": "Mondaufgang", "text": "", "album_id": "72157623159821460", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2794/4253546369_d16a8b473e_o.jpg", "secret": "97120fc902", "media": "photo", "latitude": "0", "id": "4253546369", "tags": "switzerland eiger m\u00fcrren"}, {"datetaken": "2009-12-31 18:28:02", "license": "1", "title": "Unterwegs", "text": "", "album_id": "72157623159821460", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4254312396_961321b900_o.jpg", "secret": "75dfd055ac", "media": "photo", "latitude": "0", "id": "4254312396", "tags": "switzerland m\u00fcrren"}, {"datetaken": "2009-12-31 18:41:09", "license": "1", "title": "Eiger im Mondlicht", "text": "", "album_id": "72157623159821460", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/4254311274_ba90c9530e_o.jpg", "secret": "cd48a7727c", "media": "photo", "latitude": "0", "id": "4254311274", "tags": "mond eiger jungfraujochswitzerlandm\u00fcrren"}, {"datetaken": "2009-12-31 18:42:08", "license": "1", "title": "Jungfraujoch", "text": "", "album_id": "72157623159821460", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4254311464_90dd12b1fb_o.jpg", "secret": "8abc2dd97a", "media": "photo", "latitude": "0", "id": "4254311464", "tags": "eiger jungfraujoch m\u00f6nchswitzerlandm\u00fcrren"}, {"datetaken": "2009-12-31 18:44:55", "license": "1", "title": "Bier in der Suppe", "text": "", "album_id": "72157623159821460", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2711/4253547195_665d13264b_o.jpg", "secret": "3161ffb7e9", "media": "photo", "latitude": "0", "id": "4253547195", "tags": "suppenalp m\u00fcrrenswitzerland"}, {"datetaken": "2010-01-01 01:05:28", "license": "1", "title": "Eigergletscher", "text": "", "album_id": "72157623159821460", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4253546189_e9e2538ef0_o.jpg", "secret": "6265b22e80", "media": "photo", "latitude": "0", "id": "4253546189", "tags": "eiger m\u00f6nchswitzerlandm\u00fcrren"}, {"datetaken": "2010-01-01 01:14:06", "license": "1", "title": "Mitternacht", "text": "", "album_id": "72157623159821460", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4254311806_2147b72732_o.jpg", "secret": "09a2c9fc50", "media": "photo", "latitude": "0", "id": "4254311806", "tags": "party switzerland m\u00fcrren"}, {"datetaken": "2010-01-01 02:03:26", "license": "1", "title": "Espresso", "text": "", "album_id": "72157623159821460", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4253546883_37ff5d7099_o.jpg", "secret": "92457a38a0", "media": "photo", "latitude": "0", "id": "4253546883", "tags": "kaffee espressoswitzerlandm\u00fcrren"}, {"datetaken": "2010-01-02 16:15:09", "license": "1", "title": "Slow Travel", "text": "", "album_id": "72157623159821460", "longitude": "7.895140", "url_o": "https://farm5.staticflickr.com/4053/4253547883_c2f6eb8b37_o.jpg", "secret": "0fcf887eb9", "media": "photo", "latitude": "46.560218", "id": "4253547883", "tags": "zug trainswitzerlandm\u00fcrren"}, {"datetaken": "2005-04-07 11:52:02", "license": "1", "title": "Parti ffarw\u00e9l Liz Jenkins", "text": "", "album_id": "217084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8736914_2ab65a3d46_o.jpg", "secret": "2ab65a3d46", "media": "photo", "latitude": "0", "id": "8736914", "tags": "caerdydd parties partion"}, {"datetaken": "2005-04-07 12:08:29", "license": "1", "title": "Parti ffarw\u00e9l Liz Jenkins", "text": "", "album_id": "217084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8736966_27e2237991_o.jpg", "secret": "27e2237991", "media": "photo", "latitude": "0", "id": "8736966", "tags": "caerdydd partion parties"}, {"datetaken": "2005-04-07 12:11:31", "license": "1", "title": "Parti ffarw\u00e9l Liz Jenkins", "text": "", "album_id": "217084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8736984_416b612f5f_o.jpg", "secret": "416b612f5f", "media": "photo", "latitude": "0", "id": "8736984", "tags": "caerdydd parties partion"}, {"datetaken": "2005-04-07 12:14:58", "license": "1", "title": "Parti ffarw\u00e9l Liz Jenkins", "text": "", "album_id": "217084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8737026_c4f994756f_o.jpg", "secret": "c4f994756f", "media": "photo", "latitude": "0", "id": "8737026", "tags": "caerdydd parties partion"}, {"datetaken": "2005-04-07 12:15:11", "license": "1", "title": "Parti ffarw\u00e9l Liz Jenkins", "text": "", "album_id": "217084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8737076_b462c04749_o.jpg", "secret": "b462c04749", "media": "photo", "latitude": "0", "id": "8737076", "tags": "caerdydd parties partion"}, {"datetaken": "2005-04-07 12:28:32", "license": "1", "title": "Parti ffarw\u00e9l Liz Jenkins", "text": "", "album_id": "217084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8737113_ed5a0b7334_o.jpg", "secret": "ed5a0b7334", "media": "photo", "latitude": "0", "id": "8737113", "tags": "caerdydd parties partion"}, {"datetaken": "2005-04-07 12:30:06", "license": "1", "title": "Parti ffarw\u00e9l Liz Jenkins", "text": "", "album_id": "217084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8737141_fe70e174bf_o.jpg", "secret": "fe70e174bf", "media": "photo", "latitude": "0", "id": "8737141", "tags": "caerdydd partion parties"}, {"datetaken": "2005-04-07 12:31:14", "license": "1", "title": "Parti ffarw\u00e9l Liz Jenkins", "text": "", "album_id": "217084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8737174_311f24c6dd_o.jpg", "secret": "311f24c6dd", "media": "photo", "latitude": "0", "id": "8737174", "tags": "caerdydd parties partion"}, {"datetaken": "2005-04-07 12:32:34", "license": "1", "title": "Parti ffarw\u00e9l Liz Jenkins", "text": "", "album_id": "217084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8737217_5e40126e18_o.jpg", "secret": "5e40126e18", "media": "photo", "latitude": "0", "id": "8737217", "tags": "caerdydd parties partion"}, {"datetaken": "2005-04-07 12:47:07", "license": "1", "title": "Parti ffarw\u00e9l Liz Jenkins", "text": "", "album_id": "217084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8737253_1524151701_o.jpg", "secret": "1524151701", "media": "photo", "latitude": "0", "id": "8737253", "tags": "caerdydd parties partion"}, {"datetaken": "2005-04-07 14:04:04", "license": "1", "title": "Parti ffarw\u00e9l Liz Jenkins", "text": "", "album_id": "217084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8737278_098d60f3ed_o.jpg", "secret": "098d60f3ed", "media": "photo", "latitude": "0", "id": "8737278", "tags": "caerdydd parties partion"}, {"datetaken": "2005-04-07 14:51:26", "license": "1", "title": "Parti ffarw\u00e9l Liz Jenkins", "text": "", "album_id": "217084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8737318_696387e9bf_o.jpg", "secret": "696387e9bf", "media": "photo", "latitude": "0", "id": "8737318", "tags": "caerdydd parties partion"}, {"datetaken": "2005-04-07 15:18:56", "license": "1", "title": "Capsule, Heol Siarl, Caerdydd", "text": "", "album_id": "217084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8737351_655e84ed62_o.jpg", "secret": "655e84ed62", "media": "photo", "latitude": "0", "id": "8737351", "tags": "caerdydd bars bariau caffis cafes"}, {"datetaken": "2005-05-06 23:02:04", "license": "6", "title": "Game 1", "text": "", "album_id": "311966", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/12806199_6dd8c226d4_o.jpg", "secret": "6dd8c226d4", "media": "photo", "latitude": "0", "id": "12806199", "tags": "caps drinking beer tehnorcalawesome party beerpong"}, {"datetaken": "2005-05-07 00:06:10", "license": "6", "title": "wow", "text": "", "album_id": "311966", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12806115_49773e20ba_o.jpg", "secret": "49773e20ba", "media": "photo", "latitude": "0", "id": "12806115", "tags": "caps drinking beer tehnorcalawesome party beerpong"}, {"datetaken": "2005-05-07 00:06:28", "license": "6", "title": "DSC07889", "text": "", "album_id": "311966", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12806122_6f7a1a1530_o.jpg", "secret": "6f7a1a1530", "media": "photo", "latitude": "0", "id": "12806122", "tags": "caps drinking beer tehnorcalawesome party beerpong"}, {"datetaken": "2005-05-07 00:07:05", "license": "6", "title": "Go Evan", "text": "", "album_id": "311966", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12806110_34b3f6613e_o.jpg", "secret": "34b3f6613e", "media": "photo", "latitude": "0", "id": "12806110", "tags": "caps drinking beer tehnorcalawesome party beerpong"}, {"datetaken": "2005-05-07 00:07:38", "license": "6", "title": "DSC07892", "text": "", "album_id": "311966", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12806141_3f85994b0b_o.jpg", "secret": "3f85994b0b", "media": "photo", "latitude": "0", "id": "12806141", "tags": "caps drinking beer tehnorcalawesome party beerpong"}, {"datetaken": "2005-05-07 00:08:07", "license": "6", "title": "Ouch", "text": "", "album_id": "311966", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/12806148_67d76c8405_o.jpg", "secret": "67d76c8405", "media": "photo", "latitude": "0", "id": "12806148", "tags": "caps drinking beer tehnorcalawesome party beerpong"}, {"datetaken": "2005-05-07 00:09:52", "license": "6", "title": "Count IT", "text": "", "album_id": "311966", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/12806094_4c3e4b9c04_o.jpg", "secret": "4c3e4b9c04", "media": "photo", "latitude": "0", "id": "12806094", "tags": "caps drinking beer tehnorcalawesome party beerpong"}, {"datetaken": "2005-05-07 00:12:01", "license": "6", "title": "Planning", "text": "", "album_id": "311966", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/12806081_bc3a69a1b1_o.jpg", "secret": "bc3a69a1b1", "media": "photo", "latitude": "0", "id": "12806081", "tags": "caps drinking beer tehnorcalawesome party beerpong"}, {"datetaken": "2005-05-07 00:12:22", "license": "6", "title": "pirate", "text": "", "album_id": "311966", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12806060_22f041a60e_o.jpg", "secret": "22f041a60e", "media": "photo", "latitude": "0", "id": "12806060", "tags": "caps drinking beer tehnorcalawesome party beerpong"}, {"datetaken": "2005-05-07 00:13:01", "license": "6", "title": "Loooose", "text": "", "album_id": "311966", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12806155_0ea8b62ba1_o.jpg", "secret": "0ea8b62ba1", "media": "photo", "latitude": "0", "id": "12806155", "tags": "caps drinking beer tehnorcalawesome party beerpong"}, {"datetaken": "2005-05-07 00:13:45", "license": "6", "title": "Distractions", "text": "", "album_id": "311966", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12806176_9c7cb01789_o.jpg", "secret": "9c7cb01789", "media": "photo", "latitude": "0", "id": "12806176", "tags": "caps drinking beer tehnorcalawesome party beerpong"}, {"datetaken": "2005-05-07 00:13:53", "license": "6", "title": "SCORE", "text": "", "album_id": "311966", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12806053_4a95383080_o.jpg", "secret": "4a95383080", "media": "photo", "latitude": "0", "id": "12806053", "tags": "caps drinking beer tehnorcalawesome party beerpong"}, {"datetaken": "2005-05-07 00:14:04", "license": "6", "title": "MISSSSSSSSS", "text": "", "album_id": "311966", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/12806041_0914032798_o.jpg", "secret": "0914032798", "media": "photo", "latitude": "0", "id": "12806041", "tags": "caps drinking beer tehnorcalawesome party beerpong"}, {"datetaken": "2005-05-07 00:14:38", "license": "6", "title": "MISSSS", "text": "", "album_id": "311966", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12806038_256e0ca6b5_o.jpg", "secret": "256e0ca6b5", "media": "photo", "latitude": "0", "id": "12806038", "tags": "caps drinking beer tehnorcalawesome party beerpong"}, {"datetaken": "2005-05-07 00:16:27", "license": "6", "title": "Curious (azn) spectators", "text": "", "album_id": "311966", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/12806033_ea15a351e7_o.jpg", "secret": "ea15a351e7", "media": "photo", "latitude": "0", "id": "12806033", "tags": "caps drinking beer tehnorcalawesome party beerpong"}, {"datetaken": "2005-05-07 00:16:36", "license": "6", "title": "Pro", "text": "", "album_id": "311966", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12806197_93272a5849_o.jpg", "secret": "93272a5849", "media": "photo", "latitude": "0", "id": "12806197", "tags": "caps drinking beer tehnorcalawesome party beerpong"}, {"datetaken": "2005-08-06 15:11:56", "license": "4", "title": "P8060003-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31995289_48b2248fd1_o.jpg", "secret": "48b2248fd1", "media": "photo", "latitude": "0", "id": "31995289", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 15:12:16", "license": "4", "title": "P8060004-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31995316_9c654c5581_o.jpg", "secret": "9c654c5581", "media": "photo", "latitude": "0", "id": "31995316", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 15:12:32", "license": "4", "title": "P8060006-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31995362_f59073546b_o.jpg", "secret": "f59073546b", "media": "photo", "latitude": "0", "id": "31995362", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 15:12:32", "license": "4", "title": "P8060006-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31995346_1dcff0e734_o.jpg", "secret": "1dcff0e734", "media": "photo", "latitude": "0", "id": "31995346", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 15:13:06", "license": "4", "title": "P8060007-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31995378_bdaeb24a9b_o.jpg", "secret": "bdaeb24a9b", "media": "photo", "latitude": "0", "id": "31995378", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 15:14:35", "license": "4", "title": "P8060008-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31995432_eee3a99d20_o.jpg", "secret": "eee3a99d20", "media": "photo", "latitude": "0", "id": "31995432", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 15:14:35", "license": "4", "title": "P8060008-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31995413_095827846d_o.jpg", "secret": "095827846d", "media": "photo", "latitude": "0", "id": "31995413", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 15:15:17", "license": "4", "title": "P8060009-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31995450_1bfe3138ac_o.jpg", "secret": "1bfe3138ac", "media": "photo", "latitude": "0", "id": "31995450", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 15:54:23", "license": "4", "title": "P8060010-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31995460_996c17b602_o.jpg", "secret": "996c17b602", "media": "photo", "latitude": "0", "id": "31995460", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 15:54:46", "license": "4", "title": "P80600111-Helen and Dean", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31995618_3c3e4bb73a_o.jpg", "secret": "3c3e4bb73a", "media": "photo", "latitude": "0", "id": "31995618", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 15:54:52", "license": "4", "title": "P8060012-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31995644_92abfe7ddb_o.jpg", "secret": "92abfe7ddb", "media": "photo", "latitude": "0", "id": "31995644", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 15:55:24", "license": "4", "title": "P8060013-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31995655_0d4ab895f0_o.jpg", "secret": "0d4ab895f0", "media": "photo", "latitude": "0", "id": "31995655", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 16:32:38", "license": "4", "title": "P8060015-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31995699_d74be4cbbf_o.jpg", "secret": "d74be4cbbf", "media": "photo", "latitude": "0", "id": "31995699", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 16:32:50", "license": "4", "title": "P8060016-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31995721_a5ea79946f_o.jpg", "secret": "a5ea79946f", "media": "photo", "latitude": "0", "id": "31995721", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 16:33:18", "license": "4", "title": "Diving in", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31995723_b0771ff38b_o.jpg", "secret": "b0771ff38b", "media": "photo", "latitude": "0", "id": "31995723", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 16:33:39", "license": "4", "title": "P8060018-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31995748_4568f42feb_o.jpg", "secret": "4568f42feb", "media": "photo", "latitude": "0", "id": "31995748", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 16:40:32", "license": "4", "title": "P8060020-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31995804_f7b5ecedb7_o.jpg", "secret": "f7b5ecedb7", "media": "photo", "latitude": "0", "id": "31995804", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 16:41:00", "license": "4", "title": "P8060021-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31995833_08db51d6ee_o.jpg", "secret": "08db51d6ee", "media": "photo", "latitude": "0", "id": "31995833", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 16:58:22", "license": "4", "title": "P8060022-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31995867_f384ae09a9_o.jpg", "secret": "f384ae09a9", "media": "photo", "latitude": "0", "id": "31995867", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 16:58:41", "license": "4", "title": "P8060023-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31995922_4ac4a8cd68_o.jpg", "secret": "4ac4a8cd68", "media": "photo", "latitude": "0", "id": "31995922", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 16:59:02", "license": "4", "title": "P8060024-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31995959_3ca3b4ef59_o.jpg", "secret": "3ca3b4ef59", "media": "photo", "latitude": "0", "id": "31995959", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 16:59:02", "license": "4", "title": "P8060024-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31995946_a0e958d937_o.jpg", "secret": "a0e958d937", "media": "photo", "latitude": "0", "id": "31995946", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 16:59:18", "license": "4", "title": "P8060025-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31995982_d6109d1923_o.jpg", "secret": "d6109d1923", "media": "photo", "latitude": "0", "id": "31995982", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 17:36:42", "license": "4", "title": "P80600261-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31996010_85a4af238d_o.jpg", "secret": "85a4af238d", "media": "photo", "latitude": "0", "id": "31996010", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 17:37:30", "license": "4", "title": "P8060027-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31996026_1b200e94d3_o.jpg", "secret": "1b200e94d3", "media": "photo", "latitude": "0", "id": "31996026", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 17:38:38", "license": "4", "title": "P8060028-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31996049_0c5a1df024_o.jpg", "secret": "0c5a1df024", "media": "photo", "latitude": "0", "id": "31996049", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 17:39:07", "license": "4", "title": "P80600292-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31996083_b02625f2b2_o.jpg", "secret": "b02625f2b2", "media": "photo", "latitude": "0", "id": "31996083", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 17:39:07", "license": "4", "title": "P80600291", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31996067_b2877d2629_o.jpg", "secret": "b2877d2629", "media": "photo", "latitude": "0", "id": "31996067", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 17:40:14", "license": "4", "title": "P8060030-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31996104_94f0114154_o.jpg", "secret": "94f0114154", "media": "photo", "latitude": "0", "id": "31996104", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 17:43:08", "license": "4", "title": "P80600321", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31996142_04011abea2_o.jpg", "secret": "04011abea2", "media": "photo", "latitude": "0", "id": "31996142", "tags": "trees annualsummerparty2005"}, {"datetaken": "2005-08-06 17:47:56", "license": "4", "title": "P8060034-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31996187_81266af837_o.jpg", "secret": "81266af837", "media": "photo", "latitude": "0", "id": "31996187", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 18:06:33", "license": "4", "title": "P8060035-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31996211_c67bd17fcf_o.jpg", "secret": "c67bd17fcf", "media": "photo", "latitude": "0", "id": "31996211", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 18:37:23", "license": "4", "title": "P8060045-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31996286_1e561285e8_o.jpg", "secret": "1e561285e8", "media": "photo", "latitude": "0", "id": "31996286", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 18:37:36", "license": "4", "title": "P8060046-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31996317_5bbb535c82_o.jpg", "secret": "5bbb535c82", "media": "photo", "latitude": "0", "id": "31996317", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 18:37:51", "license": "4", "title": "P8060047-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31996349_0f8e67a78a_o.jpg", "secret": "0f8e67a78a", "media": "photo", "latitude": "0", "id": "31996349", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 18:38:35", "license": "4", "title": "P8060049-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31996391_490776fbcc_o.jpg", "secret": "490776fbcc", "media": "photo", "latitude": "0", "id": "31996391", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 18:48:40", "license": "4", "title": "P8060059-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/31996421_b83f70704e_o.jpg", "secret": "b83f70704e", "media": "photo", "latitude": "0", "id": "31996421", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 18:51:22", "license": "4", "title": "P8060063-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31996463_7fcc227755_o.jpg", "secret": "7fcc227755", "media": "photo", "latitude": "0", "id": "31996463", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 18:51:33", "license": "4", "title": "P8060064-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31995498_628a9dca24_o.jpg", "secret": "628a9dca24", "media": "photo", "latitude": "0", "id": "31995498", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 18:53:08", "license": "4", "title": "P8060067-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/31995545_786a27e315_o.jpg", "secret": "786a27e315", "media": "photo", "latitude": "0", "id": "31995545", "tags": "annualsummerparty2005"}, {"datetaken": "2005-08-06 18:54:12", "license": "4", "title": "P8060070-Our almost-annual summer party", "text": "", "album_id": "712904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/31995600_8f7881c042_o.jpg", "secret": "8f7881c042", "media": "photo", "latitude": "0", "id": "31995600", "tags": "annualsummerparty2005"}, {"datetaken": "2004-12-03 11:00:00", "license": "1", "title": "dave and the AT-AT", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4499512_3afc012c68_o.jpg", "secret": "a39857ee6c", "media": "photo", "latitude": "0", "id": "4499512", "tags": "friends bw dave kevinshouseparty"}, {"datetaken": "2004-12-03 11:00:01", "license": "1", "title": "justing shoots amanda's boob", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4499515_7c658ea387_o.jpg", "secret": "704b0f9d3a", "media": "photo", "latitude": "0", "id": "4499515", "tags": "justin friends bw amanda dave ryan amandam picturesofpictures ryanhengst hengst kevinshouseparty"}, {"datetaken": "2004-12-03 11:00:02", "license": "1", "title": "matt by lily", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4499627_141a64eb16_o.jpg", "secret": "f772dd4221", "media": "photo", "latitude": "0", "id": "4499627", "tags": "bw kevinshouseparty mattwright matt me"}, {"datetaken": "2004-12-03 11:00:03", "license": "1", "title": "lily by matt", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4499831_3d326a110e_o.jpg", "secret": "0c7efb41ba", "media": "photo", "latitude": "0", "id": "4499831", "tags": "friends lily portraits bw kevinshouseparty"}, {"datetaken": "2004-12-03 11:00:04", "license": "1", "title": "thomas and lily slant", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4499951_d70a533a54_o.jpg", "secret": "045f8c0948", "media": "photo", "latitude": "0", "id": "4499951", "tags": "bw friends thomas lily kevinshouseparty"}, {"datetaken": "2004-12-03 11:00:05", "license": "1", "title": "nick's hair", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4552052_2ea979d640_o.jpg", "secret": "fec702c1fb", "media": "photo", "latitude": "0", "id": "4552052", "tags": "visitors music bw kevinshouseparty saldana nick jason"}, {"datetaken": "2004-12-03 11:00:06", "license": "1", "title": "lauri and justin", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4551595_905316c55e_o.jpg", "secret": "ca2e993a4f", "media": "photo", "latitude": "0", "id": "4551595", "tags": "justin bw music visitors lauri kevinshouseparty"}, {"datetaken": "2004-12-03 11:00:07", "license": "1", "title": "louis smile", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4551600_47e27ff08f_o.jpg", "secret": "94eb202e02", "media": "photo", "latitude": "0", "id": "4551600", "tags": "visitors music bw louis kevinshouseparty drums"}, {"datetaken": "2004-12-03 11:00:08", "license": "1", "title": "louis drumming", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4574398_d111cee651_o.jpg", "secret": "17c2a65687", "media": "photo", "latitude": "0", "id": "4574398", "tags": "visitors music bw louis kevinshouseparty drums"}, {"datetaken": "2004-12-03 11:00:09", "license": "1", "title": "ghost nick 2", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4551881_0598b1bba7_o.jpg", "secret": "bf842d01b5", "media": "photo", "latitude": "0", "id": "4551881", "tags": "visitors music bw kevinshouseparty saldana nick jason"}, {"datetaken": "2004-12-03 11:00:10", "license": "1", "title": "jason and crowd", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4551597_73500c9bf6_o.jpg", "secret": "1d4e6e276d", "media": "photo", "latitude": "0", "id": "4551597", "tags": "justin bw music jason nick visitors lauri saldana kevinshouseparty"}, {"datetaken": "2004-12-03 11:00:11", "license": "1", "title": "saldana bros", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4551882_2e78501678_o.jpg", "secret": "681111ba2b", "media": "photo", "latitude": "0", "id": "4551882", "tags": "visitors music bw kevinshouseparty saldana nick jason"}, {"datetaken": "2004-12-03 11:00:12", "license": "1", "title": "dave and louis", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4551887_fe4ae9ded3_o.jpg", "secret": "73e6714a5d", "media": "photo", "latitude": "0", "id": "4551887", "tags": "visitors music bw louis kevinshouseparty drums daveyelacic dave"}, {"datetaken": "2004-12-03 11:00:13", "license": "1", "title": "dave preshow 2", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4551603_919dec7779_o.jpg", "secret": "674e63532e", "media": "photo", "latitude": "0", "id": "4551603", "tags": "visitors music bw kevinshouseparty daveyelacic dave"}, {"datetaken": "2004-12-03 11:00:14", "license": "1", "title": "dave preshow 1", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4551598_4e3a9c399f_o.jpg", "secret": "e769fa5eb0", "media": "photo", "latitude": "0", "id": "4551598", "tags": "visitors music bw kevinshouseparty daveyelacic dave"}, {"datetaken": "2004-12-03 11:00:15", "license": "1", "title": "ghost nick", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4551596_e62e37139a_o.jpg", "secret": "9c5fd3d93f", "media": "photo", "latitude": "0", "id": "4551596", "tags": "visitors music bw kevinshouseparty saldana nick jason"}, {"datetaken": "2004-12-03 11:00:16", "license": "1", "title": "jason fuzzy", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4551888_a8927f8638_o.jpg", "secret": "f9a6cdc16c", "media": "photo", "latitude": "0", "id": "4551888", "tags": "visitors music bw kevinshouseparty saldana nick jason"}, {"datetaken": "2004-12-03 11:00:17", "license": "1", "title": "nick and dave flash", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4450984_19667e0500_o.jpg", "secret": "f881194816", "media": "photo", "latitude": "0", "id": "4450984", "tags": "visitors music bw motion kevinshouseparty saldana nick jason daveyelacic dave"}, {"datetaken": "2004-12-03 11:00:18", "license": "1", "title": "nick wistful", "text": "", "album_id": "661616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4451105_fc1c70a368_o.jpg", "secret": "59c8c927e4", "media": "photo", "latitude": "0", "id": "4451105", "tags": "bw music jason 2004 dave sweater nick bands blogged visitors 777 saldana daveyelacic houseshow kevinshouseparty christmassweater"}, {"datetaken": "2005-06-08 09:41:34", "license": "4", "title": "01.01.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18165727_d687cc76dc_o.jpg", "secret": "d687cc76dc", "media": "photo", "latitude": "0", "id": "18165727", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc"}, {"datetaken": "2005-06-08 09:41:34", "license": "4", "title": "01.02.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18165728_0a82914949_o.jpg", "secret": "0a82914949", "media": "photo", "latitude": "0", "id": "18165728", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc"}, {"datetaken": "2005-06-08 10:05:16", "license": "4", "title": "02.01.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18167909_42ab9351a6_o.jpg", "secret": "42ab9351a6", "media": "photo", "latitude": "0", "id": "18167909", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc"}, {"datetaken": "2005-06-08 10:05:16", "license": "4", "title": "02.02.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18167910_3536a9b80d_o.jpg", "secret": "3536a9b80d", "media": "photo", "latitude": "0", "id": "18167910", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc"}, {"datetaken": "2005-06-08 10:05:16", "license": "4", "title": "02.03.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18167911_c28e33787c_o.jpg", "secret": "c28e33787c", "media": "photo", "latitude": "0", "id": "18167911", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc"}, {"datetaken": "2005-06-08 10:42:31", "license": "4", "title": "02.04.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18171581_c204eb7f39_o.jpg", "secret": "c204eb7f39", "media": "photo", "latitude": "0", "id": "18171581", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc"}, {"datetaken": "2005-06-08 10:42:31", "license": "4", "title": "02.06.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18171582_55e26436ea_o.jpg", "secret": "55e26436ea", "media": "photo", "latitude": "0", "id": "18171582", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc"}, {"datetaken": "2005-06-08 10:43:45", "license": "4", "title": "02.05.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18171766_795754f4fc_o.jpg", "secret": "795754f4fc", "media": "photo", "latitude": "0", "id": "18171766", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc"}, {"datetaken": "2005-06-08 10:58:41", "license": "4", "title": "Hands.Lisa.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18173321_6b9d1703b1_o.jpg", "secret": "6b9d1703b1", "media": "photo", "latitude": "0", "id": "18173321", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc crotch crotchshot hands dc"}, {"datetaken": "2005-06-08 10:58:41", "license": "4", "title": "02.07.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18173320_bdf548b12a_o.jpg", "secret": "bdf548b12a", "media": "photo", "latitude": "0", "id": "18173320", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc hands crotch crotchshot"}, {"datetaken": "2005-06-08 11:23:51", "license": "4", "title": "02.08.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18175501_ef882102d5_o.jpg", "secret": "ef882102d5", "media": "photo", "latitude": "0", "id": "18175501", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc hands crotch crotchshot"}, {"datetaken": "2005-06-08 11:23:51", "license": "4", "title": "02.09.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18175502_2af0fef28a_o.jpg", "secret": "2af0fef28a", "media": "photo", "latitude": "0", "id": "18175502", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc hands"}, {"datetaken": "2005-06-08 11:23:51", "license": "4", "title": "02.10.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18175503_38301c5bd6_o.jpg", "secret": "38301c5bd6", "media": "photo", "latitude": "0", "id": "18175503", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc hands chest breasts"}, {"datetaken": "2005-06-08 12:49:59", "license": "4", "title": "02.11.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18185980_2600020c24_o.jpg", "secret": "2600020c24", "media": "photo", "latitude": "0", "id": "18185980", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc hands crotch crotchshot"}, {"datetaken": "2005-06-08 12:49:59", "license": "4", "title": "02.12.Veronique.WDC.20jun95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18185981_0305782cfc_o.jpg", "secret": "0305782cfc", "media": "photo", "latitude": "0", "id": "18185981", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc hands fingers"}, {"datetaken": "2005-06-08 12:49:59", "license": "4", "title": "02.13.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18185982_176f208a6a_o.jpg", "secret": "176f208a6a", "media": "photo", "latitude": "0", "id": "18185982", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc hand crotch crotchshot"}, {"datetaken": "2005-06-08 13:06:46", "license": "4", "title": "02.14.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18188276_03d4b9eb34_o.jpg", "secret": "03d4b9eb34", "media": "photo", "latitude": "0", "id": "18188276", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc hands crotch crotchshot"}, {"datetaken": "2005-06-08 13:06:46", "license": "4", "title": "02.15.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18188277_19cd9b131a_o.jpg", "secret": "19cd9b131a", "media": "photo", "latitude": "0", "id": "18188277", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc hands crotch crotchshot"}, {"datetaken": "2005-06-08 13:06:46", "license": "4", "title": "02.16.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18188278_f826d7e6df_o.jpg", "secret": "f826d7e6df", "media": "photo", "latitude": "0", "id": "18188278", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc hands crotcch crotchshot elvertbarnes"}, {"datetaken": "2005-06-08 13:30:17", "license": "4", "title": "03.01.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18191792_79207ad268_o.jpg", "secret": "79207ad268", "media": "photo", "latitude": "0", "id": "18191792", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc feet shoes"}, {"datetaken": "2005-06-08 13:30:17", "license": "4", "title": "03.02.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18191793_d9a6728634_o.jpg", "secret": "d9a6728634", "media": "photo", "latitude": "0", "id": "18191793", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc feet shoes sandles"}, {"datetaken": "2005-06-08 13:30:17", "license": "4", "title": "03.03.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18191794_dce272b898_o.jpg", "secret": "dce272b898", "media": "photo", "latitude": "0", "id": "18191794", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc feet shoes"}, {"datetaken": "2005-06-08 14:51:34", "license": "4", "title": "03.04.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18203987_e314fff657_o.jpg", "secret": "e314fff657", "media": "photo", "latitude": "0", "id": "18203987", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc feet shoes"}, {"datetaken": "2005-06-08 14:51:34", "license": "4", "title": "03.05.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18203988_10b0969077_o.jpg", "secret": "10b0969077", "media": "photo", "latitude": "0", "id": "18203988", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc"}, {"datetaken": "2005-06-08 14:51:34", "license": "4", "title": "03.06.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18203989_5893241116_o.jpg", "secret": "5893241116", "media": "photo", "latitude": "0", "id": "18203989", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc feet shoes"}, {"datetaken": "2005-06-08 15:15:11", "license": "4", "title": "04.01.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18207287_9e56cf9e5e_o.jpg", "secret": "9e56cf9e5e", "media": "photo", "latitude": "0", "id": "18207287", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc"}, {"datetaken": "2005-06-08 15:15:11", "license": "4", "title": "04.02.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18207288_b0b2392a1a_o.jpg", "secret": "b0b2392a1a", "media": "photo", "latitude": "0", "id": "18207288", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc hands jewelry"}, {"datetaken": "2005-06-08 15:37:37", "license": "4", "title": "04.03.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18210472_a25202b12a_o.jpg", "secret": "a25202b12a", "media": "photo", "latitude": "0", "id": "18210472", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc hand crotch crotchshot"}, {"datetaken": "2005-06-08 15:37:37", "license": "4", "title": "04.04.Veronique.WDC.20jul95", "text": "", "album_id": "429580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/18210473_8fa11acbe5_o.jpg", "secret": "8fa11acbe5", "media": "photo", "latitude": "0", "id": "18210473", "tags": "bonvoyage veroniquebonvoyage party friends washingtondc"}, {"datetaken": "2005-05-15 00:00:00", "license": "3", "title": "terry, mom, aunt pat & grandma", "text": "", "album_id": "560264", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24507522_e757715ac7_o.jpg", "secret": "e757715ac7", "media": "photo", "latitude": "0", "id": "24507522", "tags": "party mom family quadcities illinois"}, {"datetaken": "2005-05-15 00:00:01", "license": "3", "title": "terry and mom", "text": "", "album_id": "560264", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24507536_16990812d3_o.jpg", "secret": "16990812d3", "media": "photo", "latitude": "0", "id": "24507536", "tags": "party mom quadcities illinois"}, {"datetaken": "2005-05-15 00:00:03", "license": "3", "title": "gentlemen", "text": "", "album_id": "560264", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24507376_66bbff421c_o.jpg", "secret": "66bbff421c", "media": "photo", "latitude": "0", "id": "24507376", "tags": "party family grandpa quadcities illinois"}, {"datetaken": "2005-05-15 00:00:04", "license": "3", "title": "i had her in grade school", "text": "", "album_id": "560264", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24507436_59fe2fea3f_o.jpg", "secret": "59fe2fea3f", "media": "photo", "latitude": "0", "id": "24507436", "tags": "party mom dad quadcities illinois"}, {"datetaken": "2005-05-15 00:00:05", "license": "3", "title": "the goodes & jay", "text": "", "album_id": "560264", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24507350_9186dd0bd1_o.jpg", "secret": "9186dd0bd1", "media": "photo", "latitude": "0", "id": "24507350", "tags": "party family quadcities illinois"}, {"datetaken": "2005-05-15 00:00:06", "license": "3", "title": "grandma!", "text": "", "album_id": "560264", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24507368_2aad8288b0_o.jpg", "secret": "2aad8288b0", "media": "photo", "latitude": "0", "id": "24507368", "tags": "party grandma quadcities illinois"}, {"datetaken": "2005-05-15 00:00:07", "license": "3", "title": "shirley & mom", "text": "", "album_id": "560264", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24507472_136a0b5156_o.jpg", "secret": "136a0b5156", "media": "photo", "latitude": "0", "id": "24507472", "tags": "party mom quadcities illinois"}, {"datetaken": "2005-05-15 00:00:08", "license": "3", "title": "his wares", "text": "", "album_id": "560264", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24507330_6fbdc15b2a_o.jpg", "secret": "6fbdc15b2a", "media": "photo", "latitude": "0", "id": "24507330", "tags": "party dad food quadcities illinois"}, {"datetaken": "2005-05-15 00:00:09", "license": "3", "title": "dad", "text": "", "album_id": "560264", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24507318_c70cfb61a6_o.jpg", "secret": "c70cfb61a6", "media": "photo", "latitude": "0", "id": "24507318", "tags": "party dad food quadcities illinois"}, {"datetaken": "2005-05-15 00:00:10", "license": "3", "title": "delicious desserts!", "text": "", "album_id": "560264", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24507346_e53278552e_o.jpg", "secret": "e53278552e", "media": "photo", "latitude": "0", "id": "24507346", "tags": "party food quadcities illinois"}, {"datetaken": "2005-05-15 00:00:11", "license": "3", "title": "mom & carolyn", "text": "", "album_id": "560264", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24507398_627b0bafd3_o.jpg", "secret": "627b0bafd3", "media": "photo", "latitude": "0", "id": "24507398", "tags": "party mom quadcities illinois"}, {"datetaken": "2005-05-15 00:00:12", "license": "3", "title": "grandpa", "text": "", "album_id": "560264", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24507381_f752e38d41_o.jpg", "secret": "f752e38d41", "media": "photo", "latitude": "0", "id": "24507381", "tags": "party grandpa cake quadcities illinois"}, {"datetaken": "2005-05-15 00:00:13", "license": "3", "title": "the crowd", "text": "", "album_id": "560264", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24507302_423ac4216e_o.jpg", "secret": "423ac4216e", "media": "photo", "latitude": "0", "id": "24507302", "tags": "party quadcities illinois"}, {"datetaken": "2005-05-15 00:00:14", "license": "3", "title": "mom, jess, pat", "text": "", "album_id": "560264", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24507409_3efa7dccb1_o.jpg", "secret": "3efa7dccb1", "media": "photo", "latitude": "0", "id": "24507409", "tags": "party family mom quadcities illinois"}, {"datetaken": "2005-05-15 00:00:15", "license": "3", "title": "aunt pat & my cousin, matt", "text": "", "album_id": "560264", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24507467_4e1120613b_o.jpg", "secret": "4e1120613b", "media": "photo", "latitude": "0", "id": "24507467", "tags": "party family quadcities illinois"}, {"datetaken": "2005-05-15 00:00:17", "license": "3", "title": "the gym", "text": "", "album_id": "560264", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24507497_630486ca1b_o.jpg", "secret": "630486ca1b", "media": "photo", "latitude": "0", "id": "24507497", "tags": "party tree type quadcities illinois"}, {"datetaken": "2005-01-08 20:11:42", "license": "5", "title": "2005-01-09 001", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3139743_51a029e8ce_o.jpg", "secret": "51a029e8ce", "media": "photo", "latitude": "0", "id": "3139743", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-08 20:13:31", "license": "5", "title": "2005-01-09 002", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3139747_4b4b0c6c8f_o.jpg", "secret": "4b4b0c6c8f", "media": "photo", "latitude": "0", "id": "3139747", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-08 20:14:42", "license": "5", "title": "2005-01-09 003", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3139752_a15c8fbb24_o.jpg", "secret": "a15c8fbb24", "media": "photo", "latitude": "0", "id": "3139752", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-08 20:20:37", "license": "5", "title": "2005-01-09 005", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3139755_8c3f36112b_o.jpg", "secret": "8c3f36112b", "media": "photo", "latitude": "0", "id": "3139755", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-08 20:21:52", "license": "5", "title": "2005-01-09 006", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3139757_37f5a0861f_o.jpg", "secret": "37f5a0861f", "media": "photo", "latitude": "0", "id": "3139757", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-08 20:27:53", "license": "5", "title": "2005-01-09 009", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3139763_bbfa0078b2_o.jpg", "secret": "bbfa0078b2", "media": "photo", "latitude": "0", "id": "3139763", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-08 20:28:19", "license": "5", "title": "2005-01-09 010", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3139765_288bbbad1e_o.jpg", "secret": "288bbbad1e", "media": "photo", "latitude": "0", "id": "3139765", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-08 20:33:18", "license": "5", "title": "2005-01-09 011", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3139767_f065b46ffd_o.jpg", "secret": "f065b46ffd", "media": "photo", "latitude": "0", "id": "3139767", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-08 20:37:33", "license": "5", "title": "2005-01-09 014", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3139777_64f7626340_o.jpg", "secret": "64f7626340", "media": "photo", "latitude": "0", "id": "3139777", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-08 21:35:57", "license": "5", "title": "2005-01-09 013", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3139775_f89ffe7281_o.jpg", "secret": "f89ffe7281", "media": "photo", "latitude": "0", "id": "3139775", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-08 21:36:12", "license": "5", "title": "2005-01-09 015b", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3139778_1a5a6cdb6b_o.jpg", "secret": "1a5a6cdb6b", "media": "photo", "latitude": "0", "id": "3139778", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-08 21:36:32", "license": "5", "title": "2005-01-09 016b", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3139779_91a8406b6b_o.jpg", "secret": "91a8406b6b", "media": "photo", "latitude": "0", "id": "3139779", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-08 21:40:47", "license": "5", "title": "2005-01-09 017b", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3139780_ad38af9b12_o.jpg", "secret": "ad38af9b12", "media": "photo", "latitude": "0", "id": "3139780", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-08 21:45:02", "license": "5", "title": "2005-01-09 018", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3139783_384147f2e8_o.jpg", "secret": "384147f2e8", "media": "photo", "latitude": "0", "id": "3139783", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-08 21:57:49", "license": "5", "title": "2005-01-09 020", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3139786_7eb67eb48f_o.jpg", "secret": "7eb67eb48f", "media": "photo", "latitude": "0", "id": "3139786", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-08 21:58:02", "license": "5", "title": "2005-01-09 021", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3139787_fea81389a8_o.jpg", "secret": "fea81389a8", "media": "photo", "latitude": "0", "id": "3139787", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 01:47:13", "license": "5", "title": "2005-01-09 022", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3139789_f13b824f77_o.jpg", "secret": "f13b824f77", "media": "photo", "latitude": "0", "id": "3139789", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 02:18:33", "license": "5", "title": "2005-01-09 023", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3139792_2203693011_o.jpg", "secret": "2203693011", "media": "photo", "latitude": "0", "id": "3139792", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 02:19:41", "license": "5", "title": "2005-01-09 024", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3139794_0e7cd1a2df_o.jpg", "secret": "0e7cd1a2df", "media": "photo", "latitude": "0", "id": "3139794", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 02:19:50", "license": "5", "title": "2005-01-09 025", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3139795_ff930c7217_o.jpg", "secret": "ff930c7217", "media": "photo", "latitude": "0", "id": "3139795", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 02:20:48", "license": "5", "title": "2005-01-09 026", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3139803_605c75acda_o.jpg", "secret": "605c75acda", "media": "photo", "latitude": "0", "id": "3139803", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 02:21:14", "license": "5", "title": "2005-01-09 027", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3139804_4a433a7b08_o.jpg", "secret": "4a433a7b08", "media": "photo", "latitude": "0", "id": "3139804", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 02:48:17", "license": "5", "title": "2005-01-09 028", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3139806_39f98e0573_o.jpg", "secret": "39f98e0573", "media": "photo", "latitude": "0", "id": "3139806", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 03:01:55", "license": "5", "title": "2005-01-09 030", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3139808_b70701efbe_o.jpg", "secret": "b70701efbe", "media": "photo", "latitude": "0", "id": "3139808", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 03:02:10", "license": "5", "title": "2005-01-09 031", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3139809_f88534c175_o.jpg", "secret": "f88534c175", "media": "photo", "latitude": "0", "id": "3139809", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 03:04:53", "license": "5", "title": "2005-01-09 032", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3139814_341b9f133f_o.jpg", "secret": "341b9f133f", "media": "photo", "latitude": "0", "id": "3139814", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 03:06:04", "license": "5", "title": "2005-01-09 033", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3139818_77c4c27361_o.jpg", "secret": "77c4c27361", "media": "photo", "latitude": "0", "id": "3139818", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 03:14:41", "license": "5", "title": "2005-01-09 034", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3139821_b4f87b7a2a_o.jpg", "secret": "b4f87b7a2a", "media": "photo", "latitude": "0", "id": "3139821", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 03:21:02", "license": "5", "title": "2005-01-09 035", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3139823_4181eaad19_o.jpg", "secret": "4181eaad19", "media": "photo", "latitude": "0", "id": "3139823", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 03:21:16", "license": "5", "title": "2005-01-09 036", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3139835_d854f4bf19_o.jpg", "secret": "d854f4bf19", "media": "photo", "latitude": "0", "id": "3139835", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 03:37:07", "license": "5", "title": "2005-01-09 037", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3139846_666d7324cc_o.jpg", "secret": "666d7324cc", "media": "photo", "latitude": "0", "id": "3139846", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 03:43:27", "license": "5", "title": "2005-01-09 038", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3139848_10038d6697_o.jpg", "secret": "10038d6697", "media": "photo", "latitude": "0", "id": "3139848", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 03:43:38", "license": "5", "title": "2005-01-09 039", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3139847_cfa14b6310_o.jpg", "secret": "cfa14b6310", "media": "photo", "latitude": "0", "id": "3139847", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 03:53:18", "license": "5", "title": "2005-01-09 040", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3139851_6c93be56c7_o.jpg", "secret": "6c93be56c7", "media": "photo", "latitude": "0", "id": "3139851", "tags": "junior grace dinner party"}, {"datetaken": "2005-01-09 03:53:56", "license": "5", "title": "2005-01-09 042", "text": "", "album_id": "78660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3139862_e2f76788d2_o.jpg", "secret": "e2f76788d2", "media": "photo", "latitude": "0", "id": "3139862", "tags": "junior grace dinner party"}, {"datetaken": "2005-04-09 12:28:44", "license": "1", "title": "Kristin and Lily", "text": "", "album_id": "227929", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8933097_55e3943c84_o.jpg", "secret": "55e3943c84", "media": "photo", "latitude": "0", "id": "8933097", "tags": "cameraphone 2005 baby lily kristin"}, {"datetaken": "2005-04-09 12:28:56", "license": "1", "title": "visiting lilly - 38", "text": "", "album_id": "227929", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8933088_0f20453122_o.jpg", "secret": "0f20453122", "media": "photo", "latitude": "0", "id": "8933088", "tags": "cameraphone 2005 baby lily"}, {"datetaken": "2005-04-09 12:30:08", "license": "1", "title": "visiting lily - 36", "text": "", "album_id": "227929", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8933054_534353ad53_o.jpg", "secret": "534353ad53", "media": "photo", "latitude": "0", "id": "8933054", "tags": "cameraphone 2005 baby jay lily kristin debbie"}, {"datetaken": "2005-04-09 12:30:16", "license": "1", "title": "visiting lilly - 35", "text": "", "album_id": "227929", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8933102_23dcdc73ba_o.jpg", "secret": "23dcdc73ba", "media": "photo", "latitude": "0", "id": "8933102", "tags": "2005 cameraphone"}, {"datetaken": "2005-04-09 12:30:28", "license": "1", "title": "visiting lilly - 34", "text": "", "album_id": "227929", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8933107_652298e57f_o.jpg", "secret": "652298e57f", "media": "photo", "latitude": "0", "id": "8933107", "tags": "cameraphone 2005 baby lily"}, {"datetaken": "2005-04-09 12:30:36", "license": "1", "title": "Kristing with tiny Lily", "text": "", "album_id": "227929", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8933116_6952930529_o.jpg", "secret": "6952930529", "media": "photo", "latitude": "0", "id": "8933116", "tags": "cameraphone 2005 baby lily kristin"}, {"datetaken": "2005-04-09 12:34:26", "license": "1", "title": "clipping Lily's fingernails", "text": "", "album_id": "227929", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8933125_f06d844eaf_o.jpg", "secret": "f06d844eaf", "media": "photo", "latitude": "0", "id": "8933125", "tags": "cameraphone 2005 baby lily kristin"}, {"datetaken": "2005-04-09 12:53:50", "license": "1", "title": "Lily looks at Kristin", "text": "", "album_id": "227929", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8933130_a7eef5318f_o.jpg", "secret": "a7eef5318f", "media": "photo", "latitude": "0", "id": "8933130", "tags": "cameraphone 2005 baby lily kristin"}, {"datetaken": "2005-04-09 12:53:52", "license": "1", "title": "visiting lilly - 30", "text": "", "album_id": "227929", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8933145_4b9b62f4da_o.jpg", "secret": "4b9b62f4da", "media": "photo", "latitude": "0", "id": "8933145", "tags": "cameraphone 2005 baby lily"}, {"datetaken": "2005-04-09 12:54:16", "license": "1", "title": "visiting lilly - 29", "text": "", "album_id": "227929", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8933141_452f61c998_o.jpg", "secret": "452f61c998", "media": "photo", "latitude": "0", "id": "8933141", "tags": "cameraphone 2005 baby lily"}, {"datetaken": "2005-04-09 12:56:42", "license": "1", "title": "visiting lily - 27", "text": "", "album_id": "227929", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8933147_3da762f2dc_o.jpg", "secret": "3da762f2dc", "media": "photo", "latitude": "0", "id": "8933147", "tags": "cameraphone 2005 baby lily expression rob"}, {"datetaken": "2005-04-09 12:57:14", "license": "1", "title": "visiting lilly - 26", "text": "", "album_id": "227929", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8933150_36da1e33c7_o.jpg", "secret": "36da1e33c7", "media": "photo", "latitude": "0", "id": "8933150", "tags": "cameraphone 2005 baby lily"}, {"datetaken": "2005-04-09 13:01:08", "license": "1", "title": "Lily", "text": "", "album_id": "227929", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8933165_05600a81c3_o.jpg", "secret": "05600a81c3", "media": "photo", "latitude": "0", "id": "8933165", "tags": "cameraphone 2005 baby lily"}, {"datetaken": "2005-04-09 13:02:02", "license": "1", "title": "Debbie and her daughter", "text": "", "album_id": "227929", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8933169_6837d8cad9_o.jpg", "secret": "6837d8cad9", "media": "photo", "latitude": "0", "id": "8933169", "tags": "cameraphone 2005 baby lily debbie"}, {"datetaken": "2005-04-09 13:02:06", "license": "1", "title": "visiting lily - 21", "text": "", "album_id": "227929", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8933173_dc89d57637_o.jpg", "secret": "dc89d57637", "media": "photo", "latitude": "0", "id": "8933173", "tags": "cameraphone 2005 baby lily debbie"}, {"datetaken": "2005-04-09 17:45:08", "license": "1", "title": "visiting lilly - 7", "text": "", "album_id": "227929", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8936952_3596783d1c_o.jpg", "secret": "3596783d1c", "media": "photo", "latitude": "0", "id": "8936952", "tags": "cameraphone 2005 rob"}, {"datetaken": "2005-08-05 08:19:34", "license": "5", "title": "\"Bon Voyage\" cake for Wang and Huang", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/32666126_d8b567602d_o.jpg", "secret": "d8b567602d", "media": "photo", "latitude": "0", "id": "32666126", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:19:52", "license": "5", "title": "\"Bon Voyage\" cake for Wang and Huang", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/32666154_7908a1014b_o.jpg", "secret": "7908a1014b", "media": "photo", "latitude": "0", "id": "32666154", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:20:18", "license": "5", "title": "Send-off party for Wang and Huang", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32666179_67baf27c44_o.jpg", "secret": "67baf27c44", "media": "photo", "latitude": "0", "id": "32666179", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:21:33", "license": "5", "title": "Send-off party for Wang and Huang", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32666195_91cdd71640_o.jpg", "secret": "91cdd71640", "media": "photo", "latitude": "0", "id": "32666195", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:21:59", "license": "5", "title": "Kartik", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/32666213_1123f3b723_o.jpg", "secret": "1123f3b723", "media": "photo", "latitude": "0", "id": "32666213", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:23:49", "license": "5", "title": "Send-off party for Wang and Huang", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/32666221_f9053f7e08_o.jpg", "secret": "f9053f7e08", "media": "photo", "latitude": "0", "id": "32666221", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:24:16", "license": "5", "title": "Wang and Huang", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/32666232_0c6a09e326_o.jpg", "secret": "0c6a09e326", "media": "photo", "latitude": "0", "id": "32666232", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:24:24", "license": "5", "title": "Send-off party for Wang and Huang", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32666242_6530e509f4_o.jpg", "secret": "6530e509f4", "media": "photo", "latitude": "0", "id": "32666242", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:24:48", "license": "5", "title": "Send-off party for Wang and Huang", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/32666251_cf468bd0c6_o.jpg", "secret": "cf468bd0c6", "media": "photo", "latitude": "0", "id": "32666251", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:25:31", "license": "5", "title": "Huang and Roy (CEO)", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/32666264_e7f5786c34_o.jpg", "secret": "e7f5786c34", "media": "photo", "latitude": "0", "id": "32666264", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:25:39", "license": "5", "title": "Huang, Roy (CEO), and Wang", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/32666282_e62cf78a4b_o.jpg", "secret": "e62cf78a4b", "media": "photo", "latitude": "0", "id": "32666282", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:26:08", "license": "5", "title": "Send-off party for Wang and Huang", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/32666289_08edef5ea3_o.jpg", "secret": "08edef5ea3", "media": "photo", "latitude": "0", "id": "32666289", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:26:38", "license": "5", "title": "Huang cutting the \"Bon Voyage\" cake", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/32666308_0c7d02f746_o.jpg", "secret": "0c7d02f746", "media": "photo", "latitude": "0", "id": "32666308", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:27:11", "license": "5", "title": "Wang cutting the \"Bon Voyage\" cake", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/32666323_bdfb945922_o.jpg", "secret": "bdfb945922", "media": "photo", "latitude": "0", "id": "32666323", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:28:08", "license": "5", "title": "Tejal and Wang", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/32666334_0e9a4619da_o.jpg", "secret": "0e9a4619da", "media": "photo", "latitude": "0", "id": "32666334", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:29:08", "license": "5", "title": "Huang, Basu, and Wang", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/32666346_cc241f9068_o.jpg", "secret": "cc241f9068", "media": "photo", "latitude": "0", "id": "32666346", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:29:56", "license": "5", "title": "Send-off party for Wang and Huang", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32666361_80ea063526_o.jpg", "secret": "80ea063526", "media": "photo", "latitude": "0", "id": "32666361", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:30:44", "license": "5", "title": "Sidu and a giant spoon", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/32666372_72faddd21f_o.jpg", "secret": "72faddd21f", "media": "photo", "latitude": "0", "id": "32666372", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2005-08-05 08:31:51", "license": "5", "title": "Raymond, Wang, and Vyv", "text": "", "album_id": "1012491", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/32666386_ec927fe478_o.jpg", "secret": "ec927fe478", "media": "photo", "latitude": "0", "id": "32666386", "tags": "bangalore thoughtworks thoughtworksuniversity"}, {"datetaken": "2004-09-09 06:23:19", "license": "1", "title": "Avante - Main stage", "text": "", "album_id": "8955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384783_5e7130aa6c_o.jpg", "secret": "5e7130aa6c", "media": "photo", "latitude": "0", "id": "384783", "tags": "party avante portugal atalaia amora seixal partido comunista stage"}, {"datetaken": "2004-09-09 06:23:22", "license": "1", "title": "Avante - Main stage 2", "text": "", "album_id": "8955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384784_d6de9bae59_o.jpg", "secret": "d6de9bae59", "media": "photo", "latitude": "0", "id": "384784", "tags": "party avante portugal atalaia amora seixal partido comunista stage"}, {"datetaken": "2004-09-09 06:23:26", "license": "1", "title": "Avante - JCP stage", "text": "", "album_id": "8955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384786_ae92240657_o.jpg", "secret": "ae92240657", "media": "photo", "latitude": "0", "id": "384786", "tags": "party avante portugal atalaia amora seixal partido comunista jcp"}, {"datetaken": "2004-09-09 06:23:30", "license": "1", "title": "Avante - Flying saucer", "text": "", "album_id": "8955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384788_5dd38c38a4_o.jpg", "secret": "5dd38c38a4", "media": "photo", "latitude": "0", "id": "384788", "tags": "party avante portugal atalaia amora seixal partido comunista lamp"}, {"datetaken": "2004-09-09 06:23:33", "license": "1", "title": "Avante - Camping", "text": "", "album_id": "8955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384789_9c0dfc1feb_o.jpg", "secret": "9c0dfc1feb", "media": "photo", "latitude": "0", "id": "384789", "tags": "party avante portugal atalaia amora seixal partido comunista camping tents"}, {"datetaken": "2004-09-09 06:23:36", "license": "1", "title": "Avante - Camping 2", "text": "", "album_id": "8955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384790_b8b48d2daa_o.jpg", "secret": "b8b48d2daa", "media": "photo", "latitude": "0", "id": "384790", "tags": "party avante portugal atalaia amora seixal partido comunista camping tents"}, {"datetaken": "2004-09-09 06:29:26", "license": "1", "title": "Avante - Main stage, with concert", "text": "", "album_id": "8955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384818_1de9e7b739_o.jpg", "secret": "1de9e7b739", "media": "photo", "latitude": "0", "id": "384818", "tags": "party avante portugal atalaia amora seixal partido comunista stage concert people"}, {"datetaken": "2004-09-09 06:29:31", "license": "1", "title": "Avante - People", "text": "", "album_id": "8955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384819_f52115f31b_o.jpg", "secret": "f52115f31b", "media": "photo", "latitude": "0", "id": "384819", "tags": "party avante portugal atalaia amora seixal partido comunista people"}, {"datetaken": "2004-09-09 06:29:34", "license": "1", "title": "Avante - Party", "text": "", "album_id": "8955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384820_e43140d574_o.jpg", "secret": "e43140d574", "media": "photo", "latitude": "0", "id": "384820", "tags": "party avante portugal atalaia amora seixal partido comunista people crowd"}, {"datetaken": "2004-09-09 06:29:37", "license": "1", "title": "Avante - Party 2", "text": "", "album_id": "8955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384821_b3993c82c9_o.jpg", "secret": "b3993c82c9", "media": "photo", "latitude": "0", "id": "384821", "tags": "party avante portugal atalaia amora seixal partido comunista people crowd"}, {"datetaken": "2005-06-12 00:36:41", "license": "2", "title": "It begins... on an island at 45th street and Broadway", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18876662_f521a8edab_o.jpg", "secret": "f521a8edab", "media": "photo", "latitude": "0", "id": "18876662", "tags": "street nyc people guy cars standing walking other paulstockamore just timessquare around behind too amitgupta something folding zachklein pitchcamp"}, {"datetaken": "2005-06-12 00:38:40", "license": "2", "title": "Tent #1 has been pitched", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18876778_dca4cda3d6_o.jpg", "secret": "dca4cda3d6", "media": "photo", "latitude": "0", "id": "18876778", "tags": "street nyc paulstockamore tent timessquare amitgupta newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-06-12 00:57:17", "license": "2", "title": "People start asking us what we're doing", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18876844_4945d77834_o.jpg", "secret": "4945d77834", "media": "photo", "latitude": "0", "id": "18876844", "tags": "nyc couple paulstockamore timessquare amitgupta newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-06-12 00:57:27", "license": "2", "title": "Then people start sitting down and hanging out with us", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18876923_07c1ef9e54_o.jpg", "secret": "07c1ef9e54", "media": "photo", "latitude": "0", "id": "18876923", "tags": "nyc people paulstockamore group timessquare bubba gump amitgupta newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-06-12 00:58:47", "license": "2", "title": "We have but one rule: no one may leave the island for any reason. One of our new friends brings us the first of many batches of supplies from the outside.", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18877005_06b51c5508_o.jpg", "secret": "06b51c5508", "media": "photo", "latitude": "0", "id": "18877005", "tags": "city nyc water girl bag spring blurry paulstockamore image bottles timessquare newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-06-12 01:04:01", "license": "2", "title": "Tent #2 is pitched, and an audience gathers", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18877077_5f9f5b386c_o.jpg", "secret": "5f9f5b386c", "media": "photo", "latitude": "0", "id": "18877077", "tags": "street nyc people paulstockamore watching tent together timessquare socializing putting amitgupta newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-06-12 01:05:37", "license": "2", "title": "This man gives us some advice on what to say to cops", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18877171_2a34b52b2d_o.jpg", "secret": "2a34b52b2d", "media": "photo", "latitude": "0", "id": "18877171", "tags": "street new york city nyc camping urban square paulstockamore competition tent timessquare round times amitgupta sixth nasdaq newyearseve2005 zachklein galatletica pitchcamp"}, {"datetaken": "2005-06-12 01:05:50", "license": "2", "title": "This man then jumps in our tent", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18877304_cddb0d3029_o.jpg", "secret": "cddb0d3029", "media": "photo", "latitude": "0", "id": "18877304", "tags": "nyc man paulstockamore tent timessquare zachklein pitchcamp"}, {"datetaken": "2005-06-12 01:06:00", "license": "2", "title": "And a woman joins him. He seems to want the tent to himself", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18877241_e3fa655f97_o.jpg", "secret": "e3fa655f97", "media": "photo", "latitude": "0", "id": "18877241", "tags": "nyc woman man paulstockamore tent timessquare amitgupta newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-06-12 01:08:06", "license": "2", "title": "Chilling..", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18877395_a5a5dcf07b_o.jpg", "secret": "a5a5dcf07b", "media": "photo", "latitude": "0", "id": "18877395", "tags": "nyc family paulstockamore timessquare newyearseve2005 pitchcamp"}, {"datetaken": "2005-06-12 01:08:14", "license": "2", "title": "Chilling..", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18877489_72553ec4b4_o.jpg", "secret": "72553ec4b4", "media": "photo", "latitude": "0", "id": "18877489", "tags": "nyc man against loss st t day paulstockamore looking symbol you d machine saturday photograph timessquare round after amitgupta sixth newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-06-12 01:15:51", "license": "2", "title": "People start to sign our guest book", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18877559_b4e304c04c_o.jpg", "secret": "b4e304c04c", "media": "photo", "latitude": "0", "id": "18877559", "tags": "nyc man book paulstockamore timessquare amitgupta signing newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-06-12 01:24:35", "license": "2", "title": "The cops arrive. This is a fuzzy pictures of cops #3 and #4. In all, we fended off about 8 cops before being asked to leave at sunrise", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18877637_0a85363563_o.jpg", "secret": "0a85363563", "media": "photo", "latitude": "0", "id": "18877637", "tags": "nyc lady paulstockamore timessquare amitgupta newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-06-12 01:27:38", "license": "2", "title": "The guestbook grows", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18877750_e1484ebf28_o.jpg", "secret": "e1484ebf28", "media": "photo", "latitude": "0", "id": "18877750", "tags": "street nyc red man shirt writing paulstockamore timessquare amitgupta tablet newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-06-12 01:46:00", "license": "2", "title": "These guys lived in new york and found us funny.", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18877686_68c354d513_o.jpg", "secret": "68c354d513", "media": "photo", "latitude": "0", "id": "18877686", "tags": "nyc holding hands couple paulstockamore timessquare amitgupta newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-06-12 01:52:47", "license": "2", "title": "Around 2am things started to quiet a little", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18877802_34a451faac_o.jpg", "secret": "34a451faac", "media": "photo", "latitude": "0", "id": "18877802", "tags": "city nyc camping two orange men yellow night paulstockamore tent timessquare amitgupta zachklein pitchcamp"}, {"datetaken": "2005-06-12 02:11:00", "license": "2", "title": "2:15am: These gals rock because they bought us pizza!", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18877871_3ceb0e2e3b_o.jpg", "secret": "3ceb0e2e3b", "media": "photo", "latitude": "0", "id": "18877871", "tags": "road nyc paulstockamore timessquare amitgupta zachklein pitchcamp"}, {"datetaken": "2005-06-12 02:11:39", "license": "2", "title": "Pizza party!", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18877958_90a827ab7d_o.jpg", "secret": "90a827ab7d", "media": "photo", "latitude": "0", "id": "18877958", "tags": "nyc people paulstockamore eating pizza timessquare pitchcamp"}, {"datetaken": "2005-06-12 02:20:13", "license": "2", "title": "More visitors...", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18878040_d842c88e36_o.jpg", "secret": "d842c88e36", "media": "photo", "latitude": "0", "id": "18878040", "tags": "street nyc family paulstockamore cops tent busy timessquare amitgupta newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-06-12 02:44:40", "license": "2", "title": "One of many groups from abroad. Everyone wanted to know what we were doing, and we made up stories about waiting in line for tickets, being photographers for North Face, etc.", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18878083_80b316efb6_o.jpg", "secret": "80b316efb6", "media": "photo", "latitude": "0", "id": "18878083", "tags": "nyc people paulstockamore timessquare amitgupta newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-06-12 02:48:06", "license": "2", "title": "2:48am: This dude stole away from his group of high school seniors on a school trip", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18878150_6effe83604_o.jpg", "secret": "6effe83604", "media": "photo", "latitude": "0", "id": "18878150", "tags": "nyc boy timessquare newyearseve2005 pitchcamp"}, {"datetaken": "2005-06-12 02:50:31", "license": "2", "title": "Hanging out some more...", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18878352_ef660438ee_o.jpg", "secret": "ef660438ee", "media": "photo", "latitude": "0", "id": "18878352", "tags": "nyc camping paulstockamore timessquare amitgupta newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-06-12 02:58:40", "license": "2", "title": "more guests...", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18878544_0cab630459_o.jpg", "secret": "0cab630459", "media": "photo", "latitude": "0", "id": "18878544", "tags": "nyc ladies paulstockamore timessquare amitgupta newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-06-12 03:26:20", "license": "2", "title": "We're starting to tire out", "text": "", "album_id": "444564", "longitude": "-73.986203", "url_o": "https://farm1.staticflickr.com/12/18878250_2ba9956362_o.jpg", "secret": "2ba9956362", "media": "photo", "latitude": "40.757400", "id": "18878250", "tags": "street nyc camping paulstockamore timessquare zachklein pitchcamp"}, {"datetaken": "2005-06-12 03:36:20", "license": "2", "title": "more guests... they'd just come from leaving their friend at the hospital", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18878640_e008c117bd_o.jpg", "secret": "e008c117bd", "media": "photo", "latitude": "0", "id": "18878640", "tags": "street nyc girls two guy one evening paulstockamore view timessquare newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-06-12 04:12:21", "license": "2", "title": "more guests... they'd just gotten off their shift at planet hollywood", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18878735_3a13e5beb0_o.jpg", "secret": "3a13e5beb0", "media": "photo", "latitude": "0", "id": "18878735", "tags": "nyc camping people paulstockamore timessquare pitchcamp"}, {"datetaken": "2005-06-12 04:16:20", "license": "2", "title": "more guests... they'd just gotten off their shift at planet hollywood", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18878796_95fcabd521_o.jpg", "secret": "95fcabd521", "media": "photo", "latitude": "0", "id": "18878796", "tags": "nyc women eating tent timessquare newyearseve2005 pitchcamp"}, {"datetaken": "2005-06-12 04:28:14", "license": "2", "title": "This guy hung out for a while. He's a graphic designer from seattle who was in brooklyn for a wedding.", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18878885_3277690c68_o.jpg", "secret": "3277690c68", "media": "photo", "latitude": "0", "id": "18878885", "tags": "city nyc man fall paulstockamore sting timessquare plug zachklein pitchcamp"}, {"datetaken": "2005-06-12 05:12:40", "license": "2", "title": "Cops #9 & #10 finally persuaded us to pick up camp at sunrise.", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18878974_372d4f2e05_o.jpg", "secret": "372d4f2e05", "media": "photo", "latitude": "0", "id": "18878974", "tags": "street nyc people paulstockamore cant read timessquare shops billboards amitgupta cabs lots newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-06-12 05:22:05", "license": "2", "title": "The sun has risen. It's time to go home!", "text": "", "album_id": "444564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18879042_2c08fa6c8d_o.jpg", "secret": "2c08fa6c8d", "media": "photo", "latitude": "0", "id": "18879042", "tags": "city nyc men up three paulstockamore looking young sidewalk timessquare amitgupta newyearseve2005 zachklein pitchcamp"}, {"datetaken": "2005-08-12 20:15:14", "license": "1", "title": "stef", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34219843_b38c29560d_o.jpg", "secret": "b38c29560d", "media": "photo", "latitude": "0", "id": "34219843", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-12 21:27:44", "license": "1", "title": "the ballroom", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34220509_6c819e0fd7_o.jpg", "secret": "6c819e0fd7", "media": "photo", "latitude": "0", "id": "34220509", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-12 21:30:04", "license": "1", "title": "sam and kay", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34220377_9f15742ca0_o.jpg", "secret": "9f15742ca0", "media": "photo", "latitude": "0", "id": "34220377", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-12 21:36:32", "license": "1", "title": "12082005(007)", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34219383_61b1cd9e1e_o.jpg", "secret": "61b1cd9e1e", "media": "photo", "latitude": "0", "id": "34219383", "tags": "lostvagueness festival ianbetteridge"}, {"datetaken": "2005-08-12 21:36:56", "license": "1", "title": "big spinny ride", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34220260_0e1391b1f4_o.jpg", "secret": "0e1391b1f4", "media": "photo", "latitude": "0", "id": "34220260", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-12 21:53:51", "license": "1", "title": "12082005(009)", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34217524_90189be0b0_o.jpg", "secret": "90189be0b0", "media": "photo", "latitude": "0", "id": "34217524", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-12 21:54:03", "license": "1", "title": "12082005(010)", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34219340_85eab9e496_o.jpg", "secret": "85eab9e496", "media": "photo", "latitude": "0", "id": "34219340", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-12 21:54:13", "license": "1", "title": "big spinny ride", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34220170_619f728b0e_o.jpg", "secret": "619f728b0e", "media": "photo", "latitude": "0", "id": "34220170", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-12 21:54:24", "license": "1", "title": "anno serena sam kay", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34219699_309d6d4a8c_o.jpg", "secret": "309d6d4a8c", "media": "photo", "latitude": "0", "id": "34219699", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-12 21:57:50", "license": "1", "title": "kay leaning back", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34219735_da46e209ee_o.jpg", "secret": "da46e209ee", "media": "photo", "latitude": "0", "id": "34219735", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-12 21:58:41", "license": "1", "title": "kay", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34220082_61111d6049_o.jpg", "secret": "61111d6049", "media": "photo", "latitude": "0", "id": "34220082", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-12 21:58:59", "license": "1", "title": "anno", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34219786_f8297a52f4_o.jpg", "secret": "f8297a52f4", "media": "photo", "latitude": "0", "id": "34219786", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-12 21:59:11", "license": "1", "title": "stef", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34219819_8b46778b2a_o.jpg", "secret": "8b46778b2a", "media": "photo", "latitude": "0", "id": "34219819", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-12 22:01:38", "license": "1", "title": "serena and stranger", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34220041_000f33d211_o.jpg", "secret": "000f33d211", "media": "photo", "latitude": "0", "id": "34220041", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 00:15:28", "license": "1", "title": "trapeze", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34219997_be1aeed409_o.jpg", "secret": "be1aeed409", "media": "photo", "latitude": "0", "id": "34219997", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 00:15:39", "license": "1", "title": "trapeze", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34219882_ee711889f3_o.jpg", "secret": "ee711889f3", "media": "photo", "latitude": "0", "id": "34219882", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:14:30", "license": "1", "title": "kay", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34219924_80af86084b_o.jpg", "secret": "80af86084b", "media": "photo", "latitude": "0", "id": "34219924", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:14:38", "license": "1", "title": "DSC00711", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34217855_2af0012a56_o.jpg", "secret": "2af0012a56", "media": "photo", "latitude": "0", "id": "34217855", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:14:47", "license": "1", "title": "anno", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34218407_4e38314b79_o.jpg", "secret": "4e38314b79", "media": "photo", "latitude": "0", "id": "34218407", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:14:57", "license": "1", "title": "becky (not rebecca)", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34218019_60f9ce7790_o.jpg", "secret": "60f9ce7790", "media": "photo", "latitude": "0", "id": "34218019", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:15:08", "license": "1", "title": "DSC00715", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34218491_97432ab00a_o.jpg", "secret": "97432ab00a", "media": "photo", "latitude": "0", "id": "34218491", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:17:12", "license": "1", "title": "DSC00718", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34218541_8dcd400a33_o.jpg", "secret": "8dcd400a33", "media": "photo", "latitude": "0", "id": "34218541", "tags": "lostvagueness festival stefanmagdalinski blacktie"}, {"datetaken": "2005-08-13 15:17:43", "license": "1", "title": "can't go travelling without one's valet.", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34218647_2fd0aa0a57_o.jpg", "secret": "2fd0aa0a57", "media": "photo", "latitude": "0", "id": "34218647", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:26:39", "license": "1", "title": "Dr Livingstone", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34218959_d47d449912_o.jpg", "secret": "d47d449912", "media": "photo", "latitude": "0", "id": "34218959", "tags": "lostvagueness festival ianbetteridge"}, {"datetaken": "2005-08-13 15:26:47", "license": "1", "title": "DSC00725", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34218707_4117848d56_o.jpg", "secret": "4117848d56", "media": "photo", "latitude": "0", "id": "34218707", "tags": "lostvagueness festival ianbetteridge"}, {"datetaken": "2005-08-13 15:26:58", "license": "1", "title": "Kim arrived from Mombasa in her biplane this morning", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34218803_5d0fa5edce_o.jpg", "secret": "5d0fa5edce", "media": "photo", "latitude": "0", "id": "34218803", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:27:05", "license": "1", "title": "kim", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34219032_5bb487bf4e_o.jpg", "secret": "5bb487bf4e", "media": "photo", "latitude": "0", "id": "34219032", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:27:16", "license": "1", "title": "Dr Livingstone and Auntie Reenie", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34218873_73c19dc4a1_o.jpg", "secret": "73c19dc4a1", "media": "photo", "latitude": "0", "id": "34218873", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:27:54", "license": "1", "title": "kay", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34219120_5bfc6bd9c2_o.jpg", "secret": "5bfc6bd9c2", "media": "photo", "latitude": "0", "id": "34219120", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:29:04", "license": "1", "title": "anna", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34219179_088438039a_o.jpg", "secret": "088438039a", "media": "photo", "latitude": "0", "id": "34219179", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:29:35", "license": "1", "title": "stef and kay", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34219240_fde297d204_o.jpg", "secret": "fde297d204", "media": "photo", "latitude": "0", "id": "34219240", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:37:09", "license": "1", "title": "DSC00735", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34218095_2075e6f95a_o.jpg", "secret": "2075e6f95a", "media": "photo", "latitude": "0", "id": "34218095", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:37:34", "license": "1", "title": "sam and serena", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34220329_46a0320574_o.jpg", "secret": "46a0320574", "media": "photo", "latitude": "0", "id": "34220329", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:38:13", "license": "1", "title": "the neighbours", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34218212_25ce91991a_o.jpg", "secret": "25ce91991a", "media": "photo", "latitude": "0", "id": "34218212", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:38:59", "license": "1", "title": "The colonial garden party party", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/34219662_d9fd0e548d_o.jpg", "secret": "d9fd0e548d", "media": "photo", "latitude": "0", "id": "34219662", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:43:46", "license": "1", "title": "DSC00740", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/34217796_397cda8684_o.jpg", "secret": "397cda8684", "media": "photo", "latitude": "0", "id": "34217796", "tags": "lostvagueness festival"}, {"datetaken": "2005-08-13 15:43:58", "license": "1", "title": "Dr Livingstone", "text": "", "album_id": "758123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/34219589_932bfefc40_o.jpg", "secret": "932bfefc40", "media": "photo", "latitude": "0", "id": "34219589", "tags": "lostvagueness festival ianbetteridge"}, {"datetaken": "2005-06-15 22:31:49", "license": "3", "title": "kele", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19730000_7ebff25644_o.jpg", "secret": "7ebff25644", "media": "photo", "latitude": "0", "id": "19730000", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 22:32:23", "license": "3", "title": "russell", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19731267_4239817f34_o.jpg", "secret": "4239817f34", "media": "photo", "latitude": "0", "id": "19731267", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 22:33:15", "license": "3", "title": "kele", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19731231_70ea943177_o.jpg", "secret": "70ea943177", "media": "photo", "latitude": "0", "id": "19731231", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 22:34:22", "license": "3", "title": "gordon", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19731173_e6972566bb_o.jpg", "secret": "e6972566bb", "media": "photo", "latitude": "0", "id": "19731173", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 22:40:28", "license": "3", "title": "kele", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19731124_cd39b7b726_o.jpg", "secret": "cd39b7b726", "media": "photo", "latitude": "0", "id": "19731124", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 22:41:21", "license": "3", "title": "kele", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19731075_9dfa1d0a2d_o.jpg", "secret": "9dfa1d0a2d", "media": "photo", "latitude": "0", "id": "19731075", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 22:43:42", "license": "3", "title": "russell and kele", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19731025_67e12ee89d_o.jpg", "secret": "67e12ee89d", "media": "photo", "latitude": "0", "id": "19731025", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 22:44:21", "license": "3", "title": "russell, kele and gordon", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19730982_5f46b3859c_o.jpg", "secret": "5f46b3859c", "media": "photo", "latitude": "0", "id": "19730982", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 22:44:59", "license": "3", "title": "matt", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19730920_0bb82c05b4_o.jpg", "secret": "0bb82c05b4", "media": "photo", "latitude": "0", "id": "19730920", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 22:52:52", "license": "3", "title": "kele", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19730821_f521bea836_o.jpg", "secret": "f521bea836", "media": "photo", "latitude": "0", "id": "19730821", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 23:03:44", "license": "3", "title": "matt", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19730774_5e94715d26_o.jpg", "secret": "5e94715d26", "media": "photo", "latitude": "0", "id": "19730774", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 23:05:17", "license": "3", "title": "russell", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19730725_0fe60209d6_o.jpg", "secret": "0fe60209d6", "media": "photo", "latitude": "0", "id": "19730725", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 23:07:49", "license": "3", "title": "kele", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19730669_67de789838_o.jpg", "secret": "67de789838", "media": "photo", "latitude": "0", "id": "19730669", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 23:18:36", "license": "3", "title": "matt", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19730621_7a24449044_o.jpg", "secret": "7a24449044", "media": "photo", "latitude": "0", "id": "19730621", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 23:22:50", "license": "3", "title": "kele reaching", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19730540_74e81b93a4_o.jpg", "secret": "74e81b93a4", "media": "photo", "latitude": "0", "id": "19730540", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 23:27:49", "license": "3", "title": "kele and russell", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19730469_23fc0f5faa_o.jpg", "secret": "23fc0f5faa", "media": "photo", "latitude": "0", "id": "19730469", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 23:28:08", "license": "3", "title": "russell", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19730430_6f3de1f942_o.jpg", "secret": "6f3de1f942", "media": "photo", "latitude": "0", "id": "19730430", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 23:28:59", "license": "3", "title": "matt", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19730375_4f14c4d6f9_o.jpg", "secret": "4f14c4d6f9", "media": "photo", "latitude": "0", "id": "19730375", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 23:29:16", "license": "3", "title": "kele and matt", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19730313_5f387bf296_o.jpg", "secret": "5f387bf296", "media": "photo", "latitude": "0", "id": "19730313", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 23:32:04", "license": "3", "title": "kele", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19730228_c56c029998_o.jpg", "secret": "c56c029998", "media": "photo", "latitude": "0", "id": "19730228", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 23:46:04", "license": "3", "title": "kele", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19730162_4d44218403_o.jpg", "secret": "4d44218403", "media": "photo", "latitude": "0", "id": "19730162", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 23:48:47", "license": "3", "title": "russell and kele", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19730127_a039a3d24e_o.jpg", "secret": "a039a3d24e", "media": "photo", "latitude": "0", "id": "19730127", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2005-06-15 23:48:53", "license": "3", "title": "gordon on matt's drums", "text": "", "album_id": "462656", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19730075_2b9661922f_o.jpg", "secret": "2b9661922f", "media": "photo", "latitude": "0", "id": "19730075", "tags": "blocparty websterhall nyc newyorkcity june152005 rock concert newyork ny"}, {"datetaken": "2003-02-15 12:49:58", "license": "2", "title": "Outside Bush house I think", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2253572_e94f80a2d6_o.jpg", "secret": "e94f80a2d6", "media": "photo", "latitude": "0", "id": "2253572", "tags": "2003 london drummers february2003 antiwarmarch"}, {"datetaken": "2003-02-15 13:12:08", "license": "2", "title": "Phil gives away how bloody cold it was", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2253610_d80dc6292d_o.jpg", "secret": "d80dc6292d", "media": "photo", "latitude": "0", "id": "2253610", "tags": "london antiwarmarch phil"}, {"datetaken": "2003-02-15 13:20:11", "license": "2", "title": "A sea of anti-warrists", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2253574_984246a2a5_o.jpg", "secret": "984246a2a5", "media": "photo", "latitude": "0", "id": "2253574", "tags": "2003 london february2003 antiwarmarch"}, {"datetaken": "2003-02-15 13:22:23", "license": "2", "title": "Many, many, many", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2253573_3a94d92bc2_o.jpg", "secret": "3a94d92bc2", "media": "photo", "latitude": "0", "id": "2253573", "tags": "2003 london february2003 antiwarmarch"}, {"datetaken": "2003-02-15 13:24:34", "license": "2", "title": "London Anti-War march banner", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2253617_625dbe7f17_o.jpg", "secret": "625dbe7f17", "media": "photo", "latitude": "0", "id": "2253617", "tags": "london antiwarmarch banners"}, {"datetaken": "2003-02-15 13:30:29", "license": "2", "title": "A bunch of monks", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2253531_5258b027c5_o.jpg", "secret": "5258b027c5", "media": "photo", "latitude": "0", "id": "2253531", "tags": "2003 london banners february2003 antiwarmarch"}, {"datetaken": "2003-02-15 13:36:24", "license": "2", "title": "Home made banner", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2253539_e0edd353d5_o.jpg", "secret": "e0edd353d5", "media": "photo", "latitude": "0", "id": "2253539", "tags": "2003 london banners february2003 antiwarmarch"}, {"datetaken": "2003-02-15 13:46:43", "license": "2", "title": "Make Tea, not war", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2253540_c22ecefeb0_o.jpg", "secret": "c22ecefeb0", "media": "photo", "latitude": "0", "id": "2253540", "tags": "2003 london banners february2003 antiwarmarch"}, {"datetaken": "2003-02-15 13:51:30", "license": "2", "title": "French anti-war sentiment in London", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2253553_84b2830927_o.jpg", "secret": "84b2830927", "media": "photo", "latitude": "0", "id": "2253553", "tags": "2003 london banners february2003 antiwarmarch"}, {"datetaken": "2003-02-15 13:57:45", "license": "2", "title": "Anno and Anna", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2253468_c3be624962_o.jpg", "secret": "c3be624962", "media": "photo", "latitude": "0", "id": "2253468", "tags": "london antiwarmarch anno anna"}, {"datetaken": "2003-02-15 13:58:08", "license": "2", "title": "Des", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2253581_4273609ffb_o.jpg", "secret": "4273609ffb", "media": "photo", "latitude": "0", "id": "2253581", "tags": "2003 london des february2003 antiwarmarch"}, {"datetaken": "2003-02-15 13:59:48", "license": "2", "title": "Me and Lee Maguire", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2253473_d08e57e23e_o.jpg", "secret": "d08e57e23e", "media": "photo", "latitude": "0", "id": "2253473", "tags": "london antiwarmarch lee cait"}, {"datetaken": "2003-02-15 14:08:30", "license": "2", "title": "Banksy banner", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2253474_72822db49c_o.jpg", "secret": "72822db49c", "media": "photo", "latitude": "0", "id": "2253474", "tags": "london antiwarmarch banners banksy"}, {"datetaken": "2003-02-15 14:09:38", "license": "2", "title": "Banksy's mates out and about", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2253631_43c8c4f0e8_o.jpg", "secret": "43c8c4f0e8", "media": "photo", "latitude": "0", "id": "2253631", "tags": "london antiwarmarch banners banksy"}, {"datetaken": "2003-02-15 14:15:33", "license": "2", "title": "Home made banners make most sense", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2253477_075f781958_o.jpg", "secret": "075f781958", "media": "photo", "latitude": "0", "id": "2253477", "tags": "london antiwarmarch banners"}, {"datetaken": "2003-02-15 14:16:42", "license": "2", "title": "Jimmy Hill says:", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2253630_d9f1ea06b5_o.jpg", "secret": "d9f1ea06b5", "media": "photo", "latitude": "0", "id": "2253630", "tags": "london antiwarmarch banners"}, {"datetaken": "2003-02-15 14:35:48", "license": "2", "title": "Some MPs show willing", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2253585_db88a5f6b2_o.jpg", "secret": "db88a5f6b2", "media": "photo", "latitude": "0", "id": "2253585", "tags": "2003 london february2003 antiwarmarch mps"}, {"datetaken": "2003-02-15 14:49:51", "license": "2", "title": "And we're at big Ben, at last", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2253584_d475eb1b23_o.jpg", "secret": "d475eb1b23", "media": "photo", "latitude": "0", "id": "2253584", "tags": "2003 london bigben february2003 antiwarmarch"}, {"datetaken": "2003-02-15 15:12:26", "license": "2", "title": "This was a big Greenpeace dove", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2253632_2ba011d9d6_o.jpg", "secret": "2ba011d9d6", "media": "photo", "latitude": "0", "id": "2253632", "tags": "london greenpeace banners antiwarmarch"}, {"datetaken": "2003-02-15 15:21:09", "license": "2", "title": "War is pants", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2253482_34ae539c45_o.jpg", "secret": "34ae539c45", "media": "photo", "latitude": "0", "id": "2253482", "tags": "london antiwarmarch banners"}, {"datetaken": "2003-02-15 15:21:40", "license": "2", "title": "More home made banners", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2253641_4ad0393e27_o.jpg", "secret": "4ad0393e27", "media": "photo", "latitude": "0", "id": "2253641", "tags": "london antiwarmarch banners"}, {"datetaken": "2003-02-15 15:26:37", "license": "2", "title": "Bomb from 50,000 feet - Inspire terror", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2253485_b20116d5b1_o.jpg", "secret": "b20116d5b1", "media": "photo", "latitude": "0", "id": "2253485", "tags": "london antiwarmarch banners"}, {"datetaken": "2003-02-15 15:30:10", "license": "2", "title": "US Gov Born again Looney", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2253493_008aa8781c_o.jpg", "secret": "008aa8781c", "media": "photo", "latitude": "0", "id": "2253493", "tags": "london antiwarmarch banners"}, {"datetaken": "2003-02-15 16:02:14", "license": "2", "title": "London anti-war march", "text": "", "album_id": "56858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2253508_2b8c86dd7b_o.jpg", "secret": "2b8c86dd7b", "media": "photo", "latitude": "0", "id": "2253508", "tags": "london antiwarmarch"}, {"datetaken": "2004-12-15 09:08:03", "license": "3", "title": "the camera loves me.", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2269238_3cf2fba2ff_o.jpg", "secret": "3cf2fba2ff", "media": "photo", "latitude": "0", "id": "2269238", "tags": "me end school party"}, {"datetaken": "2004-12-15 10:32:23", "license": "3", "title": "\"will you marry me?\"", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2269199_6e98081eea_o.jpg", "secret": "6e98081eea", "media": "photo", "latitude": "0", "id": "2269199", "tags": "me end school party"}, {"datetaken": "2004-12-15 10:34:36", "license": "3", "title": "\"no.\"", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2269200_8815693431_o.jpg", "secret": "8815693431", "media": "photo", "latitude": "0", "id": "2269200", "tags": "me end school party"}, {"datetaken": "2004-12-15 16:04:17", "license": "3", "title": "bladeofgrass", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2316482_1ec524fd8f_o.jpg", "secret": "1ec524fd8f", "media": "photo", "latitude": "0", "id": "2316482", "tags": "nature"}, {"datetaken": "2004-12-15 16:05:45", "license": "3", "title": "oh look", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2316481_cb478a2b03_o.jpg", "secret": "cb478a2b03", "media": "photo", "latitude": "0", "id": "2316481", "tags": "nature"}, {"datetaken": "2004-12-15 21:25:48", "license": "3", "title": "Connor", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2389869_cca463322c_o.jpg", "secret": "cca463322c", "media": "photo", "latitude": "0", "id": "2389869", "tags": ""}, {"datetaken": "2004-12-15 21:25:58", "license": "3", "title": "Mr Kauk", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2389870_25c477d5ee_o.jpg", "secret": "25c477d5ee", "media": "photo", "latitude": "0", "id": "2389870", "tags": ""}, {"datetaken": "2004-12-15 21:26:07", "license": "3", "title": "Jerod", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2389892_5cfc690881_o.jpg", "secret": "5cfc690881", "media": "photo", "latitude": "0", "id": "2389892", "tags": ""}, {"datetaken": "2004-12-15 21:27:18", "license": "3", "title": "Seriously", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2389867_b85049763e_o.jpg", "secret": "b85049763e", "media": "photo", "latitude": "0", "id": "2389867", "tags": ""}, {"datetaken": "2004-12-15 21:27:57", "license": "3", "title": "Secluded", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2389880_4215ceefc3_o.jpg", "secret": "4215ceefc3", "media": "photo", "latitude": "0", "id": "2389880", "tags": ""}, {"datetaken": "2004-12-15 21:28:08", "license": "3", "title": "Jeremy.", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2389895_8f7f72162c_o.jpg", "secret": "8f7f72162c", "media": "photo", "latitude": "0", "id": "2389895", "tags": ""}, {"datetaken": "2004-12-15 21:29:22", "license": "3", "title": "We got a room", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2390165_362422c61a_o.jpg", "secret": "362422c61a", "media": "photo", "latitude": "0", "id": "2390165", "tags": ""}, {"datetaken": "2004-12-15 21:29:30", "license": "3", "title": "Jerod and his lil bro", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2390166_938e98fe20_o.jpg", "secret": "938e98fe20", "media": "photo", "latitude": "0", "id": "2390166", "tags": ""}, {"datetaken": "2004-12-15 21:29:43", "license": "3", "title": "Stephen and Tom", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2390183_62399a01d2_o.jpg", "secret": "62399a01d2", "media": "photo", "latitude": "0", "id": "2390183", "tags": ""}, {"datetaken": "2004-12-15 21:29:58", "license": "3", "title": "Everybody", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2390162_9179f6c380_o.jpg", "secret": "9179f6c380", "media": "photo", "latitude": "0", "id": "2390162", "tags": ""}, {"datetaken": "2004-12-15 21:30:56", "license": "3", "title": "Connor isn't very photogenic", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2390163_6e87d4d5d3_o.jpg", "secret": "6e87d4d5d3", "media": "photo", "latitude": "0", "id": "2390163", "tags": ""}, {"datetaken": "2004-12-15 21:31:05", "license": "3", "title": "Sweet", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2390182_0637a14fe8_o.jpg", "secret": "0637a14fe8", "media": "photo", "latitude": "0", "id": "2390182", "tags": ""}, {"datetaken": "2004-12-15 21:31:28", "license": "3", "title": "i have no idea", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2390672_18589b798f_o.jpg", "secret": "18589b798f", "media": "photo", "latitude": "0", "id": "2390672", "tags": ""}, {"datetaken": "2004-12-15 21:31:43", "license": "3", "title": "Connor", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2390670_eeb23ae983_o.jpg", "secret": "eeb23ae983", "media": "photo", "latitude": "0", "id": "2390670", "tags": ""}, {"datetaken": "2004-12-15 21:32:07", "license": "3", "title": "Adam", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2390666_28f7707e04_o.jpg", "secret": "28f7707e04", "media": "photo", "latitude": "0", "id": "2390666", "tags": ""}, {"datetaken": "2004-12-15 21:32:29", "license": "3", "title": "why the heck", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2390671_a0d6d580b2_o.jpg", "secret": "a0d6d580b2", "media": "photo", "latitude": "0", "id": "2390671", "tags": ""}, {"datetaken": "2004-12-15 21:32:50", "license": "3", "title": "i never got why this was funny", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2390694_cf786100a5_o.jpg", "secret": "cf786100a5", "media": "photo", "latitude": "0", "id": "2390694", "tags": ""}, {"datetaken": "2004-12-15 21:33:04", "license": "3", "title": "Model shoot #1", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2390691_e85abe530e_o.jpg", "secret": "e85abe530e", "media": "photo", "latitude": "0", "id": "2390691", "tags": ""}, {"datetaken": "2004-12-15 21:33:20", "license": "3", "title": "you and your bong", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2391154_338e4e536c_o.jpg", "secret": "338e4e536c", "media": "photo", "latitude": "0", "id": "2391154", "tags": ""}, {"datetaken": "2004-12-15 21:33:58", "license": "3", "title": "cars and peoples.", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2391163_053b353b8c_o.jpg", "secret": "053b353b8c", "media": "photo", "latitude": "0", "id": "2391163", "tags": ""}, {"datetaken": "2004-12-15 21:34:26", "license": "3", "title": "peoples", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2391155_72e6cdd524_o.jpg", "secret": "72e6cdd524", "media": "photo", "latitude": "0", "id": "2391155", "tags": ""}, {"datetaken": "2004-12-15 21:34:55", "license": "3", "title": "i was never like that", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2391148_829d13fb06_o.jpg", "secret": "829d13fb06", "media": "photo", "latitude": "0", "id": "2391148", "tags": ""}, {"datetaken": "2004-12-15 21:35:02", "license": "3", "title": "and up here the city lights burn...", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2391150_4f9339642b_o.jpg", "secret": "4f9339642b", "media": "photo", "latitude": "0", "id": "2391150", "tags": ""}, {"datetaken": "2004-12-15 21:35:41", "license": "3", "title": "gavin", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2391165_04d2bc400f_o.jpg", "secret": "04d2bc400f", "media": "photo", "latitude": "0", "id": "2391165", "tags": ""}, {"datetaken": "2004-12-15 21:36:18", "license": "3", "title": "hehe", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2391556_012ff6ce08_o.jpg", "secret": "012ff6ce08", "media": "photo", "latitude": "0", "id": "2391556", "tags": ""}, {"datetaken": "2004-12-15 21:37:30", "license": "3", "title": "woah", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2391549_3537d6f4ed_o.jpg", "secret": "3537d6f4ed", "media": "photo", "latitude": "0", "id": "2391549", "tags": ""}, {"datetaken": "2004-12-15 21:39:30", "license": "3", "title": "woah", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2391543_0d0ec32708_o.jpg", "secret": "0d0ec32708", "media": "photo", "latitude": "0", "id": "2391543", "tags": ""}, {"datetaken": "2004-12-15 21:39:45", "license": "3", "title": "talk is good", "text": "", "album_id": "60113", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2391557_fdb6cbadfb_o.jpg", "secret": "fdb6cbadfb", "media": "photo", "latitude": "0", "id": "2391557", "tags": ""}, {"datetaken": "2005-04-16 12:12:56", "license": "2", "title": "insane sean", "text": "", "album_id": "246334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9860784_9207fdd023_o.jpg", "secret": "9207fdd023", "media": "photo", "latitude": "0", "id": "9860784", "tags": "party blood sean bloodfeast"}, {"datetaken": "2005-04-16 12:14:23", "license": "2", "title": "minty", "text": "", "album_id": "246334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9860783_d81ef8555c_o.jpg", "secret": "d81ef8555c", "media": "photo", "latitude": "0", "id": "9860783", "tags": "bloodfeast blood party"}, {"datetaken": "2005-04-16 12:33:12", "license": "2", "title": "nurse & doctor", "text": "", "album_id": "246334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9860785_aa0b9be2d4_o.jpg", "secret": "aa0b9be2d4", "media": "photo", "latitude": "0", "id": "9860785", "tags": "party blood nadja bloodfeast wilja"}, {"datetaken": "2005-04-16 12:55:48", "license": "2", "title": "Starr & Me", "text": "", "album_id": "246334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9686701_158ff0a957_o.jpg", "secret": "158ff0a957", "media": "photo", "latitude": "0", "id": "9686701", "tags": "party costume blood cosplay nurse bloody bloodfeast"}, {"datetaken": "2005-04-16 13:09:48", "license": "2", "title": "bloody tongues", "text": "", "album_id": "246334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9860786_abf6ed56cb_o.jpg", "secret": "abf6ed56cb", "media": "photo", "latitude": "0", "id": "9860786", "tags": "party blood kiss sean bloodfeast wilja"}, {"datetaken": "2005-04-16 13:11:51", "license": "2", "title": "bloody Sean & Wilja", "text": "", "album_id": "246334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9686506_fa80fdb63c_o.jpg", "secret": "fa80fdb63c", "media": "photo", "latitude": "0", "id": "9686506", "tags": "party blood bloodfeast"}, {"datetaken": "2005-04-16 13:13:16", "license": "2", "title": "nurse mel", "text": "", "album_id": "246334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9686505_d451926c0f_o.jpg", "secret": "d451926c0f", "media": "photo", "latitude": "0", "id": "9686505", "tags": "party blood bloodfeast nurse"}, {"datetaken": "2005-04-16 13:27:11", "license": "2", "title": "Pills", "text": "", "album_id": "246334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9686504_469162ae00_o.jpg", "secret": "469162ae00", "media": "photo", "latitude": "0", "id": "9686504", "tags": "party blood bloodfeast pills"}, {"datetaken": "2005-04-16 13:30:07", "license": "2", "title": "Mel & Eric", "text": "", "album_id": "246334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9686503_e3fedc167e_o.jpg", "secret": "e3fedc167e", "media": "photo", "latitude": "0", "id": "9686503", "tags": "party blood bloodfeast"}, {"datetaken": "2005-04-16 14:00:31", "license": "2", "title": "Blood Feast Party People", "text": "", "album_id": "246334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9686502_b6fda86c76_o.jpg", "secret": "b6fda86c76", "media": "photo", "latitude": "0", "id": "9686502", "tags": "party blood bloodfeast"}, {"datetaken": "2005-04-16 14:57:50", "license": "2", "title": "Mel Spinning", "text": "", "album_id": "246334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9686501_2cf388a5ca_o.jpg", "secret": "2cf388a5ca", "media": "photo", "latitude": "0", "id": "9686501", "tags": "party blood bloodfeast dj"}, {"datetaken": "2002-12-07 21:50:46", "license": "1", "title": "DSCF0016", "text": "", "album_id": "347575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14354842_1c859b1912_o.jpg", "secret": "1c859b1912", "media": "photo", "latitude": "0", "id": "14354842", "tags": "xmas chris party tom stuart tsflp"}, {"datetaken": "2002-12-07 21:50:55", "license": "1", "title": "DSCF0017", "text": "", "album_id": "347575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14354873_8535e7a071_o.jpg", "secret": "8535e7a071", "media": "photo", "latitude": "0", "id": "14354873", "tags": "chris xmas party neil"}, {"datetaken": "2002-12-07 21:51:13", "license": "1", "title": "DSCF0019", "text": "", "album_id": "347575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14354645_e6251d2219_o.jpg", "secret": "e6251d2219", "media": "photo", "latitude": "0", "id": "14354645", "tags": "chris xmas party me"}, {"datetaken": "2002-12-07 21:51:26", "license": "1", "title": "DSCF0020", "text": "", "album_id": "347575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14354506_e8886ba7b8_o.jpg", "secret": "e8886ba7b8", "media": "photo", "latitude": "0", "id": "14354506", "tags": "chris xmas party rich richard"}, {"datetaken": "2002-12-07 21:51:34", "license": "1", "title": "DSCF0021", "text": "", "album_id": "347575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14354588_198ab486d8_o.jpg", "secret": "198ab486d8", "media": "photo", "latitude": "0", "id": "14354588", "tags": "chris xmas party"}, {"datetaken": "2002-12-07 21:51:42", "license": "1", "title": "DSCF0022", "text": "", "album_id": "347575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14354533_d2bc9520a6_o.jpg", "secret": "d2bc9520a6", "media": "photo", "latitude": "0", "id": "14354533", "tags": "chris xmas party rob"}, {"datetaken": "2002-12-08 00:00:47", "license": "1", "title": "DSCF0027", "text": "", "album_id": "347575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14354615_855ccdc4d4_o.jpg", "secret": "855ccdc4d4", "media": "photo", "latitude": "0", "id": "14354615", "tags": "chris xmas party rich richard neil"}, {"datetaken": "2002-12-08 00:00:58", "license": "1", "title": "DSCF0028", "text": "", "album_id": "347575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14354667_61478d0e84_o.jpg", "secret": "61478d0e84", "media": "photo", "latitude": "0", "id": "14354667", "tags": "chris xmas party tom rob"}, {"datetaken": "2002-12-08 00:01:08", "license": "1", "title": "DSCF0029", "text": "", "album_id": "347575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14354691_87b40c3890_o.jpg", "secret": "87b40c3890", "media": "photo", "latitude": "0", "id": "14354691", "tags": "chris xmas party rob"}, {"datetaken": "2002-12-08 00:01:25", "license": "1", "title": "stuart", "text": "", "album_id": "347575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14354793_1bce651cf8_o.jpg", "secret": "1bce651cf8", "media": "photo", "latitude": "0", "id": "14354793", "tags": "chris xmas party stuart"}, {"datetaken": "2002-12-08 00:47:26", "license": "1", "title": "DSCF0031", "text": "", "album_id": "347575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14354724_5007bd51c0_o.jpg", "secret": "5007bd51c0", "media": "photo", "latitude": "0", "id": "14354724", "tags": "chris xmas party alex blue"}, {"datetaken": "2002-12-08 00:48:52", "license": "1", "title": "DSCF0032", "text": "", "album_id": "347575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14354762_1a4eff74e7_o.jpg", "secret": "1a4eff74e7", "media": "photo", "latitude": "0", "id": "14354762", "tags": "chris xmas party cara rob stuart"}, {"datetaken": "2005-05-14 10:06:59", "license": "1", "title": "Karen's Graduation", "text": "", "album_id": "349272", "longitude": "-87.637365", "url_o": "https://farm1.staticflickr.com/13/14427021_3c87e4b6ca_o.jpg", "secret": "3c87e4b6ca", "media": "photo", "latitude": "41.882614", "id": "14427021", "tags": "chicago graduation civicoperahouse"}, {"datetaken": "2005-05-14 10:58:21", "license": "1", "title": "Karen's Graduation", "text": "", "album_id": "349272", "longitude": "-87.637365", "url_o": "https://farm1.staticflickr.com/11/14427241_b62e3dfc37_o.jpg", "secret": "b62e3dfc37", "media": "photo", "latitude": "41.882614", "id": "14427241", "tags": "graduation chicago jonas sleeping civicoperahouse resurreccion"}, {"datetaken": "2005-05-14 11:08:25", "license": "1", "title": "Karen's Graduation", "text": "", "album_id": "349272", "longitude": "-87.637365", "url_o": "https://farm1.staticflickr.com/11/14427385_8fa28acdb4_o.jpg", "secret": "8fa28acdb4", "media": "photo", "latitude": "41.882614", "id": "14427385", "tags": "graduation chicago karen graduate civicoperahouse resurreccion"}, {"datetaken": "2005-05-14 11:08:33", "license": "1", "title": "Karen's Graduation", "text": "", "album_id": "349272", "longitude": "-87.637365", "url_o": "https://farm1.staticflickr.com/12/14427508_9c9384e54b_o.jpg", "secret": "9c9384e54b", "media": "photo", "latitude": "41.882614", "id": "14427508", "tags": "graduation chicago karen graduate civicoperahouse resurreccion"}, {"datetaken": "2005-05-14 11:08:43", "license": "1", "title": "Karen's Graduation", "text": "", "album_id": "349272", "longitude": "-87.637365", "url_o": "https://farm1.staticflickr.com/10/14427640_ccce44b034_o.jpg", "secret": "ccce44b034", "media": "photo", "latitude": "41.882614", "id": "14427640", "tags": "graduation chicago karen graduate civicoperahouse resurreccion"}, {"datetaken": "2005-05-14 12:32:42", "license": "1", "title": "Karen's Graduation", "text": "", "album_id": "349272", "longitude": "-87.637365", "url_o": "https://farm1.staticflickr.com/9/14427709_963ab77b85_o.jpg", "secret": "963ab77b85", "media": "photo", "latitude": "41.882614", "id": "14427709", "tags": "graduation chicago karen graduate graduating civicoperahouse resurreccion"}, {"datetaken": "2005-05-14 12:33:26", "license": "1", "title": "Karen's Graduation", "text": "", "album_id": "349272", "longitude": "-87.637365", "url_o": "https://farm1.staticflickr.com/14/14427840_f7bc8cd078_o.jpg", "secret": "f7bc8cd078", "media": "photo", "latitude": "41.882614", "id": "14427840", "tags": "graduation chicago karen graduate civicoperahouse resurreccion"}, {"datetaken": "2005-05-14 12:45:46", "license": "1", "title": "Karen's Graduation", "text": "", "album_id": "349272", "longitude": "-87.637365", "url_o": "https://farm1.staticflickr.com/10/14427977_30a48b6a22_o.jpg", "secret": "30a48b6a22", "media": "photo", "latitude": "41.882614", "id": "14427977", "tags": "graduation chicago civicoperahouse"}, {"datetaken": "2005-05-14 13:07:20", "license": "1", "title": "Karen's Graduation", "text": "", "album_id": "349272", "longitude": "-87.637494", "url_o": "https://farm1.staticflickr.com/11/14428066_9529ab189a_o.jpg", "secret": "9529ab189a", "media": "photo", "latitude": "41.881975", "id": "14428066", "tags": "graduation chicago karen ernesto donna jonas kristin resurreccion filipinos"}, {"datetaken": "2005-05-14 13:07:41", "license": "1", "title": "Karen's Graduation", "text": "", "album_id": "349272", "longitude": "-87.637494", "url_o": "https://farm1.staticflickr.com/14/14428161_6a5298c6ab_o.jpg", "secret": "6a5298c6ab", "media": "photo", "latitude": "41.881975", "id": "14428161", "tags": "graduation chicago resurreccion karen ernesto donna filipinos"}, {"datetaken": "2005-05-14 13:08:20", "license": "1", "title": "Karen's Graduation", "text": "", "album_id": "349272", "longitude": "-87.637494", "url_o": "https://farm1.staticflickr.com/10/14428319_ae331a4c02_o.jpg", "secret": "ae331a4c02", "media": "photo", "latitude": "41.881975", "id": "14428319", "tags": "chicago graduation resurreccion ernesto jonas karen kristin donna shelly filipinos"}, {"datetaken": "2005-05-14 15:25:56", "license": "1", "title": "Karen's Graduation", "text": "", "album_id": "349272", "longitude": "-88.030877", "url_o": "https://farm1.staticflickr.com/12/14428450_5cadc06fd7_o.jpg", "secret": "5cadc06fd7", "media": "photo", "latitude": "42.053969", "id": "14428450", "tags": "graduation chicago party beer"}, {"datetaken": "2005-05-14 15:26:15", "license": "1", "title": "Karen's Graduation", "text": "", "album_id": "349272", "longitude": "-88.030877", "url_o": "https://farm1.staticflickr.com/10/14428570_3545790ac8_o.jpg", "secret": "3545790ac8", "media": "photo", "latitude": "42.053969", "id": "14428570", "tags": "graduation chicago party kristin drinking"}, {"datetaken": "2005-05-14 16:12:13", "license": "1", "title": "Karen's Graduation", "text": "", "album_id": "349272", "longitude": "-88.030877", "url_o": "https://farm1.staticflickr.com/11/14428672_10ea9696c8_o.jpg", "secret": "10ea9696c8", "media": "photo", "latitude": "42.053969", "id": "14428672", "tags": "graduation chicago party jonas"}, {"datetaken": "2005-05-14 16:13:05", "license": "1", "title": "Karen's Graduation", "text": "", "album_id": "349272", "longitude": "-88.030877", "url_o": "https://farm1.staticflickr.com/11/14430370_b4289a4edb_o.jpg", "secret": "b4289a4edb", "media": "photo", "latitude": "42.053969", "id": "14430370", "tags": "graduation chicago marissa party straw"}, {"datetaken": "2005-05-14 19:25:42", "license": "1", "title": "Karen's Graduation", "text": "", "album_id": "349272", "longitude": "-88.035845", "url_o": "https://farm1.staticflickr.com/14/14430503_0261f4a6b3_o.jpg", "secret": "0261f4a6b3", "media": "photo", "latitude": "42.047508", "id": "14430503", "tags": "graduation chicago resurreccion kristin ernesto donna jonas karen filipinos"}, {"datetaken": "2005-07-15 19:11:42", "license": "1", "title": "Ericka's Party - 01", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26813511_c141ea14b1_o.jpg", "secret": "c141ea14b1", "media": "photo", "latitude": "0", "id": "26813511", "tags": "ericka party crawfordsville chinainn berrys"}, {"datetaken": "2005-07-15 19:12:08", "license": "1", "title": "Ericka's Party - 02", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26813542_2137ff8409_o.jpg", "secret": "2137ff8409", "media": "photo", "latitude": "0", "id": "26813542", "tags": "ericka party crawfordsville chinainn berrys"}, {"datetaken": "2005-07-15 19:12:34", "license": "1", "title": "Ericka's Party - 03", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26813577_e1db1bf0c6_o.jpg", "secret": "e1db1bf0c6", "media": "photo", "latitude": "0", "id": "26813577", "tags": "ericka party crawfordsville chinainn berrys bob faces"}, {"datetaken": "2005-07-15 19:12:50", "license": "1", "title": "Ericka's Party - 04", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26813629_562855a61c_o.jpg", "secret": "562855a61c", "media": "photo", "latitude": "0", "id": "26813629", "tags": "ericka party crawfordsville chinainn berrys asahi beer"}, {"datetaken": "2005-07-15 19:12:58", "license": "1", "title": "Ericka's Party - 05", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26813664_3c087bda0a_o.jpg", "secret": "3c087bda0a", "media": "photo", "latitude": "0", "id": "26813664", "tags": "ericka party crawfordsville chinainn berrys asahi beer"}, {"datetaken": "2005-07-15 19:14:40", "license": "1", "title": "Ericka's Party - 06", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26813718_d25d6d5b3e_o.jpg", "secret": "d25d6d5b3e", "media": "photo", "latitude": "0", "id": "26813718", "tags": "ericka party crawfordsville chinainn berrys dawn rena"}, {"datetaken": "2005-07-15 19:45:58", "license": "1", "title": "Ericka's Party - 07", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26813765_9a67ef6f1d_o.jpg", "secret": "9a67ef6f1d", "media": "photo", "latitude": "0", "id": "26813765", "tags": "ericka party crawfordsville chinainn berrys steve faces"}, {"datetaken": "2005-07-15 19:46:11", "license": "1", "title": "Ericka's Party - 08", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26813798_04b2cc0790_o.jpg", "secret": "04b2cc0790", "media": "photo", "latitude": "0", "id": "26813798", "tags": "ericka party crawfordsville chinainn berrys steve faces"}, {"datetaken": "2005-07-15 19:46:32", "license": "1", "title": "Ericka's Party - 09", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26813830_6fdea86832_o.jpg", "secret": "6fdea86832", "media": "photo", "latitude": "0", "id": "26813830", "tags": "party matt ericka berrys crawfordsville chinainn erikayoung"}, {"datetaken": "2005-07-15 19:47:02", "license": "1", "title": "Ericka's Party - 10", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26813901_16d65da378_o.jpg", "secret": "16d65da378", "media": "photo", "latitude": "0", "id": "26813901", "tags": "ericka party crawfordsville chinainn berrys bob rena ross russ"}, {"datetaken": "2005-07-15 19:47:14", "license": "1", "title": "Ericka's Party - 11", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26813950_6f75cfeb2c_o.jpg", "secret": "6f75cfeb2c", "media": "photo", "latitude": "0", "id": "26813950", "tags": "ericka party crawfordsville chinainn berrys sweetrolls"}, {"datetaken": "2005-07-15 19:47:55", "license": "1", "title": "Ericka's Party - 12", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26813981_7218bc53e6_o.jpg", "secret": "7218bc53e6", "media": "photo", "latitude": "0", "id": "26813981", "tags": "party ericka berrys crawfordsville chinainn erikayoung"}, {"datetaken": "2005-07-15 19:50:01", "license": "1", "title": "Ericka's Party - 13", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26814025_ac874860a7_o.jpg", "secret": "ac874860a7", "media": "photo", "latitude": "0", "id": "26814025", "tags": "ericka party crawfordsville chinainn berrys jerry"}, {"datetaken": "2005-07-15 19:50:22", "license": "1", "title": "Ericka's Party - 14", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26814070_79b5fdd543_o.jpg", "secret": "79b5fdd543", "media": "photo", "latitude": "0", "id": "26814070", "tags": "ericka party crawfordsville chinainn berrys matt faces"}, {"datetaken": "2005-07-15 19:50:30", "license": "1", "title": "Ericka's Party - 15", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26814121_646360b4a3_o.jpg", "secret": "646360b4a3", "media": "photo", "latitude": "0", "id": "26814121", "tags": "party faces ericka berrys crawfordsville chinainn erikayoung"}, {"datetaken": "2005-07-15 19:50:38", "license": "1", "title": "Ericka's Party - 16", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26814173_5a1a59e47f_o.jpg", "secret": "5a1a59e47f", "media": "photo", "latitude": "0", "id": "26814173", "tags": "party faces ericka berrys crawfordsville chinainn erikayoung"}, {"datetaken": "2005-07-15 19:51:07", "license": "1", "title": "Ericka's Party - 17", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26814200_8234a6eff8_o.jpg", "secret": "8234a6eff8", "media": "photo", "latitude": "0", "id": "26814200", "tags": "ericka party crawfordsville chinainn berrys jerry faces"}, {"datetaken": "2005-07-15 19:51:26", "license": "1", "title": "Ericka's Party - 18", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26814230_3c85527c10_o.jpg", "secret": "3c85527c10", "media": "photo", "latitude": "0", "id": "26814230", "tags": "ericka party crawfordsville chinainn berrys dawn faces"}, {"datetaken": "2005-07-15 19:51:40", "license": "1", "title": "Ericka's Party - 19", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26818043_ec4d7bf2db_o.jpg", "secret": "ec4d7bf2db", "media": "photo", "latitude": "0", "id": "26818043", "tags": "erick party crawfordsvill chinainn rena faces"}, {"datetaken": "2005-07-15 19:51:47", "license": "1", "title": "Ericka's Party - 20", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26814702_019a735e90_o.jpg", "secret": "019a735e90", "media": "photo", "latitude": "0", "id": "26814702", "tags": "ericka party crawfordsville chinainn berrys ross faces"}, {"datetaken": "2005-07-15 19:52:09", "license": "1", "title": "Ericka's Party - 21", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26814752_b0d9d9649b_o.jpg", "secret": "b0d9d9649b", "media": "photo", "latitude": "0", "id": "26814752", "tags": "ericka party crawfordsville chinainn berrys chris topher faces"}, {"datetaken": "2005-07-15 19:52:42", "license": "1", "title": "Ericka's Party - 22", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26814798_1f5afe4d5f_o.jpg", "secret": "1f5afe4d5f", "media": "photo", "latitude": "0", "id": "26814798", "tags": "ericka party crawfordsville chinainn berrys bob faces bigbobonthejob"}, {"datetaken": "2005-07-15 19:53:27", "license": "1", "title": "Ericka's Party - 23", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26814844_837696c463_o.jpg", "secret": "837696c463", "media": "photo", "latitude": "0", "id": "26814844", "tags": "party faces ericka berrys foresman crawfordsville chinainn chrisforesman"}, {"datetaken": "2005-07-15 19:53:46", "license": "1", "title": "Ericka's Party - 24", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26814884_0104d1d124_o.jpg", "secret": "0104d1d124", "media": "photo", "latitude": "0", "id": "26814884", "tags": "party selfportrait faces ericka berrys foresman crawfordsville chinainn chrisforesman"}, {"datetaken": "2005-07-15 20:50:14", "license": "1", "title": "Ericka's Party - 25", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26814931_88722c334a_o.jpg", "secret": "88722c334a", "media": "photo", "latitude": "0", "id": "26814931", "tags": "ericka party crawfordsville chinainn berrys bob hat"}, {"datetaken": "2005-07-15 20:50:41", "license": "1", "title": "Ericka's Party - 26", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26814977_b4b9597bab_o.jpg", "secret": "b4b9597bab", "media": "photo", "latitude": "0", "id": "26814977", "tags": "party faces ericka berrys crawfordsville chinainn erikayoung"}, {"datetaken": "2005-07-15 20:50:53", "license": "1", "title": "Ericka's Party - 27", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26815016_b718f01baa_o.jpg", "secret": "b718f01baa", "media": "photo", "latitude": "0", "id": "26815016", "tags": "chris party ericka berrys foresman crawfordsville chinainn erikayoung"}, {"datetaken": "2005-07-15 20:51:50", "license": "1", "title": "Ericka's Party - 28", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26815085_a916524aa8_o.jpg", "secret": "a916524aa8", "media": "photo", "latitude": "0", "id": "26815085", "tags": "party ericka berrys foresman crawfordsville chinainn chrisforesman erikayoung"}, {"datetaken": "2005-07-15 20:52:16", "license": "1", "title": "Ericka's Party - 29", "text": "", "album_id": "608134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26815146_bf09609863_o.jpg", "secret": "bf09609863", "media": "photo", "latitude": "0", "id": "26815146", "tags": "ericka party crawfordsville chinainn berrys sign neon"}, {"datetaken": "2005-07-16 00:00:00", "license": "3", "title": "Upcoming sunrise", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26895139_4f9ba808e2_o.jpg", "secret": "4f9ba808e2", "media": "photo", "latitude": "0", "id": "26895139", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:01", "license": "3", "title": "Leaving...", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26895019_59de32d898_o.jpg", "secret": "59de32d898", "media": "photo", "latitude": "0", "id": "26895019", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:02", "license": "3", "title": "Dance floor", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26891157_d26ce8b7ec_o.jpg", "secret": "d26ce8b7ec", "media": "photo", "latitude": "0", "id": "26891157", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:03", "license": "3", "title": "Boss Barbara", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26895091_cb03526360_o.jpg", "secret": "cb03526360", "media": "photo", "latitude": "0", "id": "26895091", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:04", "license": "3", "title": "Four thoughts", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26895046_94cc50a563_o.jpg", "secret": "94cc50a563", "media": "photo", "latitude": "0", "id": "26895046", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:05", "license": "3", "title": "Sexy dancing", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26895070_8aa5e07af3_o.jpg", "secret": "8aa5e07af3", "media": "photo", "latitude": "0", "id": "26895070", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:06", "license": "3", "title": "Sculptures", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26895158_54f40be1b0_o.jpg", "secret": "54f40be1b0", "media": "photo", "latitude": "0", "id": "26895158", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:07", "license": "3", "title": "Lovin'", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26895233_6fe94e077f_o.jpg", "secret": "6fe94e077f", "media": "photo", "latitude": "0", "id": "26895233", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:08", "license": "3", "title": "Dancing more and more", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26895204_fc5571fe7a_o.jpg", "secret": "fc5571fe7a", "media": "photo", "latitude": "0", "id": "26895204", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:09", "license": "3", "title": "AnneBelle", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26895183_9c2a144806_o.jpg", "secret": "9c2a144806", "media": "photo", "latitude": "0", "id": "26895183", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:10", "license": "3", "title": "Drinking the # beer", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26895257_5d7e9b1ee5_o.jpg", "secret": "5d7e9b1ee5", "media": "photo", "latitude": "0", "id": "26895257", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:11", "license": "3", "title": "Hippo women", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26894973_6f39e2e2fa_o.jpg", "secret": "6f39e2e2fa", "media": "photo", "latitude": "0", "id": "26894973", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:12", "license": "3", "title": "Manuela and his French friend", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26894987_aa846a8881_o.jpg", "secret": "aa846a8881", "media": "photo", "latitude": "0", "id": "26894987", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:13", "license": "3", "title": "Latin lover at work #4", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26894410_ce9a1de5b4_o.jpg", "secret": "ce9a1de5b4", "media": "photo", "latitude": "0", "id": "26894410", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:14", "license": "3", "title": "Friendly Matteo & Pablo", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26894364_a45f84cdcb_o.jpg", "secret": "a45f84cdcb", "media": "photo", "latitude": "0", "id": "26894364", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:15", "license": "3", "title": "Curly girl", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26894275_816f3dfd2c_o.jpg", "secret": "816f3dfd2c", "media": "photo", "latitude": "0", "id": "26894275", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:16", "license": "3", "title": "Limbo n. 4", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26894402_ba588f5feb_o.jpg", "secret": "ba588f5feb", "media": "photo", "latitude": "0", "id": "26894402", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:17", "license": "3", "title": "Limbo n. 3", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26894306_4007be77c0_o.jpg", "secret": "4007be77c0", "media": "photo", "latitude": "0", "id": "26894306", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:18", "license": "3", "title": "Limbo n. 2", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26894222_d50ca204d2_o.jpg", "secret": "d50ca204d2", "media": "photo", "latitude": "0", "id": "26894222", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:19", "license": "3", "title": "Limbo n. 1", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26894339_fe569715ce_o.jpg", "secret": "fe569715ce", "media": "photo", "latitude": "0", "id": "26894339", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:20", "license": "3", "title": "Ahhh!!!", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26894170_ba357f92de_o.jpg", "secret": "ba357f92de", "media": "photo", "latitude": "0", "id": "26894170", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:21", "license": "3", "title": "Latin lover at work #3", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26894136_4b863c79f2_o.jpg", "secret": "4b863c79f2", "media": "photo", "latitude": "0", "id": "26894136", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:22", "license": "3", "title": "Latin lover at work #2", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26894097_4ea0e9a8aa_o.jpg", "secret": "4ea0e9a8aa", "media": "photo", "latitude": "0", "id": "26894097", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:23", "license": "3", "title": "Blonde girls", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26894058_d3facdc461_o.jpg", "secret": "d3facdc461", "media": "photo", "latitude": "0", "id": "26894058", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:24", "license": "3", "title": "Dancing on...", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26893878_ce7061fb40_o.jpg", "secret": "ce7061fb40", "media": "photo", "latitude": "0", "id": "26893878", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:25", "license": "3", "title": "Thin guy", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26893853_b0a52808da_o.jpg", "secret": "b0a52808da", "media": "photo", "latitude": "0", "id": "26893853", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:26", "license": "3", "title": "Chica caliente", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26893814_c15605db27_o.jpg", "secret": "c15605db27", "media": "photo", "latitude": "0", "id": "26893814", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:27", "license": "3", "title": "Me, Giulio and Davide", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26893784_d44dbdfc00_o.jpg", "secret": "d44dbdfc00", "media": "photo", "latitude": "0", "id": "26893784", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:28", "license": "3", "title": "Strange guys", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26893735_aea53b01d6_o.jpg", "secret": "aea53b01d6", "media": "photo", "latitude": "0", "id": "26893735", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:29", "license": "3", "title": "Oldstyle dancing", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26893767_442e64d8ef_o.jpg", "secret": "442e64d8ef", "media": "photo", "latitude": "0", "id": "26893767", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:30", "license": "3", "title": "From Mainz: the rising fashion designer and his assistant", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26891207_4de4f842fc_o.jpg", "secret": "4de4f842fc", "media": "photo", "latitude": "0", "id": "26891207", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:31", "license": "3", "title": "Latin lover at work #1", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26891180_81032686f7_o.jpg", "secret": "81032686f7", "media": "photo", "latitude": "0", "id": "26891180", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:32", "license": "3", "title": "Fashion guy?", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26891089_d9579e47e3_o.jpg", "secret": "d9579e47e3", "media": "photo", "latitude": "0", "id": "26891089", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-07-16 00:00:33", "license": "3", "title": "Clouds inside", "text": "", "album_id": "609587", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26891225_3f94548429_o.jpg", "secret": "3f94548429", "media": "photo", "latitude": "0", "id": "26891225", "tags": "itsfour trieste fashionparty"}, {"datetaken": "2005-01-16 01:16:28", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3564697_7bc4076a25_o.jpg", "secret": "7bc4076a25", "media": "photo", "latitude": "0", "id": "3564697", "tags": "chc maitencillo live band crowd party"}, {"datetaken": "2005-01-16 01:17:06", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3564689_4f1fc1fada_o.jpg", "secret": "4f1fc1fada", "media": "photo", "latitude": "0", "id": "3564689", "tags": "chc maitencillo live band lamps lights"}, {"datetaken": "2005-01-16 01:17:56", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3564685_1f579fb176_o.jpg", "secret": "1f579fb176", "media": "photo", "latitude": "0", "id": "3564685", "tags": "chc maitencillo live band leoprieto"}, {"datetaken": "2005-01-16 01:22:44", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3564678_60d721bdbc_o.jpg", "secret": "60d721bdbc", "media": "photo", "latitude": "0", "id": "3564678", "tags": "chc maitencillo live band crowd party"}, {"datetaken": "2005-01-16 01:27:47", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3564670_56760d92c3_o.jpg", "secret": "56760d92c3", "media": "photo", "latitude": "0", "id": "3564670", "tags": "chc maitencillo live band pedrosubercaseaux guitar"}, {"datetaken": "2005-01-16 01:29:33", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3564658_c71f3e0c25_o.jpg", "secret": "c71f3e0c25", "media": "photo", "latitude": "0", "id": "3564658", "tags": "chc maitencillo live band gabdiaz"}, {"datetaken": "2005-01-16 01:30:14", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3564645_21648a4de6_o.jpg", "secret": "21648a4de6", "media": "photo", "latitude": "0", "id": "3564645", "tags": "chc maitencillo live band josemartinez"}, {"datetaken": "2005-01-16 01:30:42", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3564633_bfcc598e66_o.jpg", "secret": "bfcc598e66", "media": "photo", "latitude": "0", "id": "3564633", "tags": "chc maitencillo live band sebsilva clarasubercaseaux danaluna"}, {"datetaken": "2005-01-16 01:32:30", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3564619_47e8be6ebf_o.jpg", "secret": "47e8be6ebf", "media": "photo", "latitude": "0", "id": "3564619", "tags": "chc maitencillo live band danaluna pablogonzalez"}, {"datetaken": "2005-01-16 01:33:40", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3564610_c57db01571_o.jpg", "secret": "c57db01571", "media": "photo", "latitude": "0", "id": "3564610", "tags": "chc maitencillo live band lamp light"}, {"datetaken": "2005-01-16 01:37:13", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3564602_6dd492aa22_o.jpg", "secret": "6dd492aa22", "media": "photo", "latitude": "0", "id": "3564602", "tags": "chc maitencillo live band sebsilva"}, {"datetaken": "2005-01-16 01:39:44", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3564592_b1677f69c4_o.jpg", "secret": "b1677f69c4", "media": "photo", "latitude": "0", "id": "3564592", "tags": "chc maitencillo live band josemartinez danaluna leoprieto"}, {"datetaken": "2005-01-16 01:40:30", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3564581_b0c59cb1ee_o.jpg", "secret": "b0c59cb1ee", "media": "photo", "latitude": "0", "id": "3564581", "tags": "chc maitencillo live band santiagosubercaseaux clarasubercaseaux"}, {"datetaken": "2005-01-16 01:42:38", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3564547_0333df6442_o.jpg", "secret": "0333df6442", "media": "photo", "latitude": "0", "id": "3564547", "tags": "chc maitencillo live band leoprieto danaluna"}, {"datetaken": "2005-01-16 01:48:41", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3564530_1c30534113_o.jpg", "secret": "1c30534113", "media": "photo", "latitude": "0", "id": "3564530", "tags": "chc maitencillo live band"}, {"datetaken": "2005-01-16 01:53:44", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3564513_8ece562370_o.jpg", "secret": "8ece562370", "media": "photo", "latitude": "0", "id": "3564513", "tags": "chc maitencillo live band breakdance"}, {"datetaken": "2005-01-16 01:56:09", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3564500_017e9faafc_o.jpg", "secret": "017e9faafc", "media": "photo", "latitude": "0", "id": "3564500", "tags": "chc maitencillo live band"}, {"datetaken": "2005-01-16 01:57:05", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3564486_8085976ca4_o.jpg", "secret": "8085976ca4", "media": "photo", "latitude": "0", "id": "3564486", "tags": "chc maitencillo live band"}, {"datetaken": "2005-01-16 01:58:23", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3564474_e9c6477f39_o.jpg", "secret": "e9c6477f39", "media": "photo", "latitude": "0", "id": "3564474", "tags": "chc maitencillo live band"}, {"datetaken": "2005-01-16 01:59:47", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3564465_192aac5214_o.jpg", "secret": "192aac5214", "media": "photo", "latitude": "0", "id": "3564465", "tags": "chc maitencillo live band"}, {"datetaken": "2005-01-16 02:06:02", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3564452_fb10c3c505_o.jpg", "secret": "fb10c3c505", "media": "photo", "latitude": "0", "id": "3564452", "tags": "chc maitencillo live band"}, {"datetaken": "2005-01-16 02:07:43", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3564440_a6961e4f0e_o.jpg", "secret": "a6961e4f0e", "media": "photo", "latitude": "0", "id": "3564440", "tags": "chc maitencillo live band pedrosubercaseaux chichoespinoza"}, {"datetaken": "2005-01-16 02:08:00", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3564427_418727c6b4_o.jpg", "secret": "418727c6b4", "media": "photo", "latitude": "0", "id": "3564427", "tags": "chc maitencillo live band pedrosubercaseaux chichoespinoza gabdiaz"}, {"datetaken": "2005-01-16 02:08:14", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3564411_ee821e8a8b_o.jpg", "secret": "ee821e8a8b", "media": "photo", "latitude": "0", "id": "3564411", "tags": "chc maitencillo live band pedrosubercaseaux chichoespinoza sebsilva"}, {"datetaken": "2005-01-16 02:09:53", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3564403_d25d73d1ef_o.jpg", "secret": "d25d73d1ef", "media": "photo", "latitude": "0", "id": "3564403", "tags": "chc maitencillo live band"}, {"datetaken": "2005-01-16 02:10:29", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3564391_ec6436a961_o.jpg", "secret": "ec6436a961", "media": "photo", "latitude": "0", "id": "3564391", "tags": "chc maitencillo live band"}, {"datetaken": "2005-01-16 02:12:18", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3564384_3ee41fc4cb_o.jpg", "secret": "3ee41fc4cb", "media": "photo", "latitude": "0", "id": "3564384", "tags": "chc maitencillo live band josemartinez juliogreene jorgedelcampo"}, {"datetaken": "2005-01-16 02:12:47", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3564370_c21c3e6605_o.jpg", "secret": "c21c3e6605", "media": "photo", "latitude": "0", "id": "3564370", "tags": "chc maitencillo live band"}, {"datetaken": "2005-01-16 02:13:20", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3564361_42ba26c6d8_o.jpg", "secret": "42ba26c6d8", "media": "photo", "latitude": "0", "id": "3564361", "tags": "live band chc maitencillo danaluna carolinaroa"}, {"datetaken": "2005-01-16 02:16:15", "license": "3", "title": "CHC en Maitencillo", "text": "", "album_id": "89327", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3564863_8c181eac62_o.jpg", "secret": "8c181eac62", "media": "photo", "latitude": "0", "id": "3564863", "tags": "chc maitencillo band live"}, {"datetaken": "2005-02-21 09:21:13", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5128809_51a2aaa083_o.jpg", "secret": "51a2aaa083", "media": "photo", "latitude": "0", "id": "5128809", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:21:18", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5128817_cad398c837_o.jpg", "secret": "cad398c837", "media": "photo", "latitude": "0", "id": "5128817", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:21:28", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5128826_4879f59536_o.jpg", "secret": "4879f59536", "media": "photo", "latitude": "0", "id": "5128826", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:21:33", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5128834_6d92ea1999_o.jpg", "secret": "6d92ea1999", "media": "photo", "latitude": "0", "id": "5128834", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:21:38", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5128839_05c0888f0b_o.jpg", "secret": "05c0888f0b", "media": "photo", "latitude": "0", "id": "5128839", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:21:43", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5128846_221063541f_o.jpg", "secret": "221063541f", "media": "photo", "latitude": "0", "id": "5128846", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:21:48", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5128850_64f50b21c5_o.jpg", "secret": "64f50b21c5", "media": "photo", "latitude": "0", "id": "5128850", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:21:53", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5128854_a00df4d920_o.jpg", "secret": "a00df4d920", "media": "photo", "latitude": "0", "id": "5128854", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:22:02", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5128863_814025500b_o.jpg", "secret": "814025500b", "media": "photo", "latitude": "0", "id": "5128863", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:25:12", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5129090_36e70e4aae_o.jpg", "secret": "36e70e4aae", "media": "photo", "latitude": "0", "id": "5129090", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:25:17", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5129101_8c7aaa0efc_o.jpg", "secret": "8c7aaa0efc", "media": "photo", "latitude": "0", "id": "5129101", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:25:27", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5129112_fb6826b3ca_o.jpg", "secret": "fb6826b3ca", "media": "photo", "latitude": "0", "id": "5129112", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:25:32", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5129122_a328669ea1_o.jpg", "secret": "a328669ea1", "media": "photo", "latitude": "0", "id": "5129122", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:25:37", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5129129_8be1413ef9_o.jpg", "secret": "8be1413ef9", "media": "photo", "latitude": "0", "id": "5129129", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:25:42", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5129134_0cf1bed0ff_o.jpg", "secret": "0cf1bed0ff", "media": "photo", "latitude": "0", "id": "5129134", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:25:47", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5129140_376798d542_o.jpg", "secret": "376798d542", "media": "photo", "latitude": "0", "id": "5129140", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:25:52", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5129150_9e12369a1b_o.jpg", "secret": "9e12369a1b", "media": "photo", "latitude": "0", "id": "5129150", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:32:54", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5129585_67e2160d3a_o.jpg", "secret": "67e2160d3a", "media": "photo", "latitude": "0", "id": "5129585", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:32:57", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5129588_8924cdfe4d_o.jpg", "secret": "8924cdfe4d", "media": "photo", "latitude": "0", "id": "5129588", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:33:02", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5129593_6fd5e821e2_o.jpg", "secret": "6fd5e821e2", "media": "photo", "latitude": "0", "id": "5129593", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:33:11", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5129600_0a60e5f8b5_o.jpg", "secret": "0a60e5f8b5", "media": "photo", "latitude": "0", "id": "5129600", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:33:14", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5129603_693ad59f61_o.jpg", "secret": "693ad59f61", "media": "photo", "latitude": "0", "id": "5129603", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:33:19", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5129610_0b20018536_o.jpg", "secret": "0b20018536", "media": "photo", "latitude": "0", "id": "5129610", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:33:22", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5129613_94b7437d14_o.jpg", "secret": "94b7437d14", "media": "photo", "latitude": "0", "id": "5129613", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:33:25", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5129616_2bf726ddb8_o.jpg", "secret": "2bf726ddb8", "media": "photo", "latitude": "0", "id": "5129616", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:33:30", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5129618_0509891692_o.jpg", "secret": "0509891692", "media": "photo", "latitude": "0", "id": "5129618", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:36:55", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5129782_3330e8d271_o.jpg", "secret": "3330e8d271", "media": "photo", "latitude": "0", "id": "5129782", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:37:00", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5129794_68f7bb8d4b_o.jpg", "secret": "68f7bb8d4b", "media": "photo", "latitude": "0", "id": "5129794", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:37:09", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5129804_f35442b706_o.jpg", "secret": "f35442b706", "media": "photo", "latitude": "0", "id": "5129804", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:37:18", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5129806_51baa08865_o.jpg", "secret": "51baa08865", "media": "photo", "latitude": "0", "id": "5129806", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:37:26", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5129810_4c1362bddb_o.jpg", "secret": "4c1362bddb", "media": "photo", "latitude": "0", "id": "5129810", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:37:31", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5129813_e05478c20d_o.jpg", "secret": "e05478c20d", "media": "photo", "latitude": "0", "id": "5129813", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:37:36", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5129815_ca76d92815_o.jpg", "secret": "ca76d92815", "media": "photo", "latitude": "0", "id": "5129815", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-02-21 09:37:41", "license": "2", "title": "the tray of death", "text": "", "album_id": "129154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5129819_b54e9b44ff_o.jpg", "secret": "b54e9b44ff", "media": "photo", "latitude": "0", "id": "5129819", "tags": "partyboy trayofdeath havanabar provoke"}, {"datetaken": "2005-03-18 18:49:05", "license": "4", "title": "Ben the Leprechaun", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6935527_e7f4208d08_o.jpg", "secret": "e7f4208d08", "media": "photo", "latitude": "0", "id": "6935527", "tags": "stpatricksday"}, {"datetaken": "2005-03-19 16:09:54", "license": "4", "title": "Backyard Preparation", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6935534_bedb738450_o.jpg", "secret": "bedb738450", "media": "photo", "latitude": "0", "id": "6935534", "tags": "stpatricksday"}, {"datetaken": "2005-03-19 17:15:04", "license": "4", "title": "Hanging Tarps", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6935580_c57b44277f_o.jpg", "secret": "c57b44277f", "media": "photo", "latitude": "0", "id": "6935580", "tags": "stpatricksday"}, {"datetaken": "2005-03-19 17:15:54", "license": "4", "title": "Tarps", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6935591_d881fe423e_o.jpg", "secret": "d881fe423e", "media": "photo", "latitude": "0", "id": "6935591", "tags": "stpatricksday"}, {"datetaken": "2005-03-19 17:17:17", "license": "4", "title": "Plastic", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6935592_488d0954f0_o.jpg", "secret": "488d0954f0", "media": "photo", "latitude": "0", "id": "6935592", "tags": "stpatricksday"}, {"datetaken": "2005-03-19 17:19:10", "license": "4", "title": "Ben Stringing Rope", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6935600_187902fbf2_o.jpg", "secret": "187902fbf2", "media": "photo", "latitude": "0", "id": "6935600", "tags": "stpatricksday"}, {"datetaken": "2005-03-19 21:08:06", "license": "4", "title": "Mike the Mick", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6935604_44d00553cd_o.jpg", "secret": "44d00553cd", "media": "photo", "latitude": "0", "id": "6935604", "tags": "stpatricksday"}, {"datetaken": "2005-03-19 21:53:25", "license": "4", "title": "I've Got One Laptop and No Microphone", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6935610_1e7cdb039d_o.jpg", "secret": "1e7cdb039d", "media": "photo", "latitude": "0", "id": "6935610", "tags": "me stpatricksday"}, {"datetaken": "2005-03-19 22:54:30", "license": "4", "title": "Dude", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6935611_61fa5e2dde_o.jpg", "secret": "61fa5e2dde", "media": "photo", "latitude": "0", "id": "6935611", "tags": "stpatricksday"}, {"datetaken": "2005-03-19 22:55:04", "license": "4", "title": "Here's How We Party", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6935614_d2b6c46a10_o.jpg", "secret": "d2b6c46a10", "media": "photo", "latitude": "0", "id": "6935614", "tags": "stpatricksday"}, {"datetaken": "2005-03-19 22:56:06", "license": "4", "title": "Mike and KB", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6935621_8b29da1c49_o.jpg", "secret": "8b29da1c49", "media": "photo", "latitude": "0", "id": "6935621", "tags": "stpatricksday"}, {"datetaken": "2005-03-19 22:57:12", "license": "4", "title": "Big Ol' Party Shot", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6935628_6d781ecb05_o.jpg", "secret": "6d781ecb05", "media": "photo", "latitude": "0", "id": "6935628", "tags": "stpatricksday"}, {"datetaken": "2005-03-19 23:00:30", "license": "4", "title": "Ben, Kris, and Mike, Los Angeles", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6935629_c4d753f09a_o.jpg", "secret": "c4d753f09a", "media": "photo", "latitude": "0", "id": "6935629", "tags": "stpatricksday"}, {"datetaken": "2005-03-19 23:19:26", "license": "4", "title": "Mike, Kris, and Luke", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6935635_f6126f8a77_o.jpg", "secret": "f6126f8a77", "media": "photo", "latitude": "0", "id": "6935635", "tags": "me stpatricksday"}, {"datetaken": "2005-03-19 23:48:05", "license": "4", "title": "The Scene", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6935644_5441544f1e_o.jpg", "secret": "5441544f1e", "media": "photo", "latitude": "0", "id": "6935644", "tags": "stpatricksday"}, {"datetaken": "2005-03-20 00:29:17", "license": "4", "title": "Mike, Jen, and David", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6935648_eed560c409_o.jpg", "secret": "eed560c409", "media": "photo", "latitude": "0", "id": "6935648", "tags": "stpatricksday"}, {"datetaken": "2005-03-20 01:28:57", "license": "4", "title": "Heat Lamp", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6935655_5bc54e4011_o.jpg", "secret": "5bc54e4011", "media": "photo", "latitude": "0", "id": "6935655", "tags": "stpatricksday"}, {"datetaken": "2005-03-20 01:29:32", "license": "4", "title": "Party", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6935659_b322849382_o.jpg", "secret": "b322849382", "media": "photo", "latitude": "0", "id": "6935659", "tags": "stpatricksday"}, {"datetaken": "2005-03-20 02:05:57", "license": "4", "title": "Kris and Rory", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6935666_2c218a8264_o.jpg", "secret": "2c218a8264", "media": "photo", "latitude": "0", "id": "6935666", "tags": "me stpatricksday"}, {"datetaken": "2005-03-20 02:06:31", "license": "4", "title": "Kris and Jen", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6935670_0a86b7fca1_o.jpg", "secret": "0a86b7fca1", "media": "photo", "latitude": "0", "id": "6935670", "tags": "me stpatricksday"}, {"datetaken": "2005-03-20 02:14:01", "license": "4", "title": "More Instant Art", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6935677_bb24de77bc_o.jpg", "secret": "bb24de77bc", "media": "photo", "latitude": "0", "id": "6935677", "tags": "stpatricksday"}, {"datetaken": "2005-03-20 02:15:40", "license": "4", "title": "Mike Got Crazy With the Camera", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6935687_8b389f7779_o.jpg", "secret": "8b389f7779", "media": "photo", "latitude": "0", "id": "6935687", "tags": "stpatricksday light night"}, {"datetaken": "2005-03-20 02:22:04", "license": "4", "title": "Mike", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6935689_3f1d36e3cd_o.jpg", "secret": "3f1d36e3cd", "media": "photo", "latitude": "0", "id": "6935689", "tags": "stpatricksday"}, {"datetaken": "2005-03-20 02:26:12", "license": "4", "title": "Ben", "text": "", "album_id": "172875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6935694_71bab8adb0_o.jpg", "secret": "71bab8adb0", "media": "photo", "latitude": "0", "id": "6935694", "tags": "stpatricksday"}, {"datetaken": "2005-06-19 00:19:46", "license": "1", "title": "Cheryl, Tracey and Sena", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20452243_3d9cc94d77_o.jpg", "secret": "3d9cc94d77", "media": "photo", "latitude": "0", "id": "20452243", "tags": "amsterdam thenetherlands senasparty tracey cheryl sena"}, {"datetaken": "2005-06-19 00:20:18", "license": "1", "title": "Cheryl and Dave", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20452290_26364d5d26_o.jpg", "secret": "26364d5d26", "media": "photo", "latitude": "0", "id": "20452290", "tags": "amsterdam thenetherlands senasparty cheryl dave"}, {"datetaken": "2005-06-19 00:20:41", "license": "1", "title": "Party action", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20452331_671bcc7254_o.jpg", "secret": "671bcc7254", "media": "photo", "latitude": "0", "id": "20452331", "tags": "amsterdam thenetherlands senasparty party sara"}, {"datetaken": "2005-06-19 00:20:57", "license": "1", "title": "Tracey and Cheryl", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20452367_93bba978e8_o.jpg", "secret": "93bba978e8", "media": "photo", "latitude": "0", "id": "20452367", "tags": "amsterdam thenetherlands senasparty tracey cheryl"}, {"datetaken": "2005-06-19 00:21:22", "license": "1", "title": "Dayv from behind", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20452384_144225d1d2_o.jpg", "secret": "144225d1d2", "media": "photo", "latitude": "0", "id": "20452384", "tags": "amsterdam thenetherlands senasparty dayv"}, {"datetaken": "2005-06-19 00:21:46", "license": "1", "title": "Girls dancing", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20452425_a06b0a4a1d_o.jpg", "secret": "a06b0a4a1d", "media": "photo", "latitude": "0", "id": "20452425", "tags": "amsterdam thenetherlands senasparty"}, {"datetaken": "2005-06-19 00:21:58", "license": "1", "title": "Girls dancing", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20452463_b04f78dcf6_o.jpg", "secret": "b04f78dcf6", "media": "photo", "latitude": "0", "id": "20452463", "tags": "amsterdam thenetherlands senasparty lucie"}, {"datetaken": "2005-06-19 00:22:19", "license": "1", "title": "Dayv DJing", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20452497_8bd3380467_o.jpg", "secret": "8bd3380467", "media": "photo", "latitude": "0", "id": "20452497", "tags": "amsterdam thenetherlands senasparty dayv apple"}, {"datetaken": "2005-06-19 00:22:44", "license": "1", "title": "Julie and Rolf", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20452551_1701732b97_o.jpg", "secret": "1701732b97", "media": "photo", "latitude": "0", "id": "20452551", "tags": "amsterdam thenetherlands senasparty julie rolf"}, {"datetaken": "2005-06-19 00:23:19", "license": "1", "title": "Julie and Rolf", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20452615_1b9dcda457_o.jpg", "secret": "1b9dcda457", "media": "photo", "latitude": "0", "id": "20452615", "tags": "amsterdam thenetherlands senasparty julie rolf"}, {"datetaken": "2005-06-19 00:23:55", "license": "1", "title": "Julie, Dave and Rolf", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20452681_77c96690a5_o.jpg", "secret": "77c96690a5", "media": "photo", "latitude": "0", "id": "20452681", "tags": "amsterdam thenetherlands senasparty julie rolf dave"}, {"datetaken": "2005-06-19 02:45:18", "license": "1", "title": "Julie, Caroline, Larry and Rolf", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20452806_74925d2d9c_o.jpg", "secret": "74925d2d9c", "media": "photo", "latitude": "0", "id": "20452806", "tags": "amsterdam thenetherlands senasparty julie rolf caroline larry"}, {"datetaken": "2005-06-19 18:59:05", "license": "1", "title": "Caroline shoots the door", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20452849_7c2b846cb0_o.jpg", "secret": "7c2b846cb0", "media": "photo", "latitude": "0", "id": "20452849", "tags": "amsterdam thenetherlands senasparty caroline"}, {"datetaken": "2005-06-19 18:59:17", "license": "1", "title": "Chop", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20452893_1cfc25e6d3_o.jpg", "secret": "1cfc25e6d3", "media": "photo", "latitude": "0", "id": "20452893", "tags": "amsterdam thenetherlands senasparty phil"}, {"datetaken": "2005-06-19 18:59:28", "license": "1", "title": "Cockblocker", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20452929_599981b6d6_o.jpg", "secret": "599981b6d6", "media": "photo", "latitude": "0", "id": "20452929", "tags": "amsterdam thenetherlands senasparty phil"}, {"datetaken": "2005-06-19 19:01:41", "license": "1", "title": "Louisa and James", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20453018_6758aa336d_o.jpg", "secret": "6758aa336d", "media": "photo", "latitude": "0", "id": "20453018", "tags": "amsterdam thenetherlands senasparty james louisa"}, {"datetaken": "2005-06-19 19:08:39", "license": "1", "title": "Joy", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20453112_495bad159a_o.jpg", "secret": "495bad159a", "media": "photo", "latitude": "0", "id": "20453112", "tags": "amsterdam thenetherlands senasparty joy"}, {"datetaken": "2005-06-19 19:08:54", "license": "1", "title": "Joy", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20453155_e48385b893_o.jpg", "secret": "e48385b893", "media": "photo", "latitude": "0", "id": "20453155", "tags": "amsterdam thenetherlands senasparty joy"}, {"datetaken": "2005-06-19 19:10:36", "license": "1", "title": "Louisa", "text": "", "album_id": "477308", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/20453200_5f932fb7c4_o.jpg", "secret": "5f932fb7c4", "media": "photo", "latitude": "0", "id": "20453200", "tags": "amsterdam thenetherlands senasparty louisa"}, {"datetaken": "2005-07-04 04:06:02", "license": "1", "title": "The Party", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27498978_58cde1b202_o.jpg", "secret": "58cde1b202", "media": "photo", "latitude": "0", "id": "27498978", "tags": "4thofjuly july4th fourth barbeque bbq properriot poolparty"}, {"datetaken": "2005-07-04 04:06:17", "license": "1", "title": "Verdell, Jeff", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27498987_34d6af9244_o.jpg", "secret": "34d6af9244", "media": "photo", "latitude": "0", "id": "27498987", "tags": "bbq barbeque july4th 4thofjuly fourth verdell poolparty properriot squigg"}, {"datetaken": "2005-07-04 04:15:15", "license": "1", "title": "Me, grilling 2", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27498988_d488c3cb8c_o.jpg", "secret": "d488c3cb8c", "media": "photo", "latitude": "0", "id": "27498988", "tags": "bbq grill barbeque july4th 4thofjuly fourth jasoncarlin poolparty properriot"}, {"datetaken": "2005-07-04 04:20:42", "license": "1", "title": "Me, grilling 1", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27498993_c501133ade_o.jpg", "secret": "c501133ade", "media": "photo", "latitude": "0", "id": "27498993", "tags": "bbq grill barbeque july4th 4thofjuly fourth jasoncarlin poolparty properriot"}, {"datetaken": "2005-07-04 04:26:35", "license": "1", "title": "Johnny 2", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27498995_7bded7a080_o.jpg", "secret": "7bded7a080", "media": "photo", "latitude": "0", "id": "27498995", "tags": "bbq barbeque july4th 4thofjuly fourth poolparty properriot johnnyjetson"}, {"datetaken": "2005-07-04 04:26:42", "license": "1", "title": "Johnny 1", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27498998_073f93ce19_o.jpg", "secret": "073f93ce19", "media": "photo", "latitude": "0", "id": "27498998", "tags": "bbq barbeque july4th 4thofjuly fourth poolparty properriot johnnyjetson"}, {"datetaken": "2005-07-04 04:26:55", "license": "1", "title": "Shopping", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27499001_cbff9668b4_o.jpg", "secret": "cbff9668b4", "media": "photo", "latitude": "0", "id": "27499001", "tags": "bbq barbeque july4th 4thofjuly fourth verdell poolparty properriot"}, {"datetaken": "2005-07-04 04:27:06", "license": "1", "title": "Betsy 2", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27499006_b88317eef8_o.jpg", "secret": "b88317eef8", "media": "photo", "latitude": "0", "id": "27499006", "tags": "bbq betsy barbeque july4th 4thofjuly fourth poolparty properriot"}, {"datetaken": "2005-07-04 04:27:43", "license": "1", "title": "IMG_1948", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27499008_bc8fa9df3d_o.jpg", "secret": "bc8fa9df3d", "media": "photo", "latitude": "0", "id": "27499008", "tags": "bbq barbeque july4th 4thofjuly fourth verdell poolparty properriot"}, {"datetaken": "2005-07-04 04:31:48", "license": "1", "title": "Jeff, Emilie 2", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27499011_52aece97ce_o.jpg", "secret": "52aece97ce", "media": "photo", "latitude": "0", "id": "27499011", "tags": "bbq barbeque emilie july4th 4thofjuly fourth poolparty properriot squigg rubbersnap"}, {"datetaken": "2005-07-04 04:32:33", "license": "1", "title": "Jeff", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27499013_e43e99a133_o.jpg", "secret": "e43e99a133", "media": "photo", "latitude": "0", "id": "27499013", "tags": "bbq barbeque july4th 4thofjuly fourth poolparty properriot squigg"}, {"datetaken": "2005-07-04 04:32:42", "license": "1", "title": "Jeff, Emilie", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27499015_6a8c22264b_o.jpg", "secret": "6a8c22264b", "media": "photo", "latitude": "0", "id": "27499015", "tags": "bbq barbeque july4th 4thofjuly fourth poolparty properriot squigg"}, {"datetaken": "2005-07-04 04:33:06", "license": "1", "title": "Betsy", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27499016_af81771580_o.jpg", "secret": "af81771580", "media": "photo", "latitude": "0", "id": "27499016", "tags": "bbq betsy barbeque july4th 4thofjuly fourth poolparty properriot"}, {"datetaken": "2005-07-04 04:33:17", "license": "1", "title": "Johnny, Betsy", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27499017_0985d067ba_o.jpg", "secret": "0985d067ba", "media": "photo", "latitude": "0", "id": "27499017", "tags": "4thofjuly july4th fourth barbeque bbq properriot poolparty"}, {"datetaken": "2005-07-04 04:35:08", "license": "1", "title": "Verdel, Vinny", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27499020_db64c37b82_o.jpg", "secret": "db64c37b82", "media": "photo", "latitude": "0", "id": "27499020", "tags": "bbq barbeque july4th 4thofjuly fourth verdell poolparty properriot"}, {"datetaken": "2005-07-04 04:35:27", "license": "1", "title": "Micki 2", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27499037_fd15108950_o.jpg", "secret": "fd15108950", "media": "photo", "latitude": "0", "id": "27499037", "tags": "bbq barbeque july4th 4thofjuly fourth mickikrimmel poolparty properriot"}, {"datetaken": "2005-07-04 04:35:35", "license": "1", "title": "Micki", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27499039_8da4445e39_o.jpg", "secret": "8da4445e39", "media": "photo", "latitude": "0", "id": "27499039", "tags": "bbq barbeque july4th 4thofjuly fourth mickikrimmel poolparty properriot"}, {"datetaken": "2005-07-04 05:36:57", "license": "1", "title": "Me, Vinny", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27499042_bce85abfaa_o.jpg", "secret": "bce85abfaa", "media": "photo", "latitude": "0", "id": "27499042", "tags": "bbq barbeque july4th 4thofjuly fourth jasoncarlin poolparty properriot"}, {"datetaken": "2005-07-04 05:37:08", "license": "1", "title": "IMG_1960", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27499043_0e1ec90e6c_o.jpg", "secret": "0e1ec90e6c", "media": "photo", "latitude": "0", "id": "27499043", "tags": "bbq barbeque july4th 4thofjuly fourth jasoncarlin poolparty properriot"}, {"datetaken": "2005-07-04 05:37:35", "license": "1", "title": "Jeff, Verdel", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27499045_3ec3188aaa_o.jpg", "secret": "3ec3188aaa", "media": "photo", "latitude": "0", "id": "27499045", "tags": "bbq barbeque july4th 4thofjuly fourth verdell poolparty properriot squigg"}, {"datetaken": "2005-07-04 05:38:00", "license": "1", "title": "Me, perturbed", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27499055_2c6d193985_o.jpg", "secret": "2c6d193985", "media": "photo", "latitude": "0", "id": "27499055", "tags": "bbq barbeque wtf july4th 4thofjuly fourth jasoncarlin escapist poolparty properriot"}, {"datetaken": "2005-07-04 05:38:17", "license": "1", "title": "Chillaxin'", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27499060_d2d027f326_o.jpg", "secret": "d2d027f326", "media": "photo", "latitude": "0", "id": "27499060", "tags": "4thofjuly july4th fourth barbeque bbq properriot poolparty"}, {"datetaken": "2005-07-04 05:39:19", "license": "1", "title": "Micki, Me, Chip", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27499061_08aea9f335_o.jpg", "secret": "08aea9f335", "media": "photo", "latitude": "0", "id": "27499061", "tags": "kiss bbq chip barbeque july4th 4thofjuly fourth mickikrimmel jasoncarlin poolparty properriot"}, {"datetaken": "2005-07-04 05:40:01", "license": "1", "title": "Carly, Allison", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27499067_af1535da55_o.jpg", "secret": "af1535da55", "media": "photo", "latitude": "0", "id": "27499067", "tags": "4thofjuly july4th fourth barbeque bbq properriot poolparty"}, {"datetaken": "2005-07-04 05:40:13", "license": "1", "title": "Verdel, Ross (Again)", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27499071_e6dbea9590_o.jpg", "secret": "e6dbea9590", "media": "photo", "latitude": "0", "id": "27499071", "tags": "4thofjuly july4th fourth barbeque bbq properriot poolparty"}, {"datetaken": "2005-07-04 05:40:54", "license": "1", "title": "Me", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27499074_6794e58a9d_o.jpg", "secret": "6794e58a9d", "media": "photo", "latitude": "0", "id": "27499074", "tags": "4thofjuly july4th fourth barbeque bbq properriot poolparty jasoncarlin"}, {"datetaken": "2005-07-04 05:42:02", "license": "1", "title": "Verdell, Ross 4", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27498890_7d2ea6041d_o.jpg", "secret": "7d2ea6041d", "media": "photo", "latitude": "0", "id": "27498890", "tags": "bbq barbeque july4th 4thofjuly fourth verdell poolparty properriot"}, {"datetaken": "2005-07-04 05:42:13", "license": "1", "title": "Verdell, Ross 3", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27498893_55120c92fd_o.jpg", "secret": "55120c92fd", "media": "photo", "latitude": "0", "id": "27498893", "tags": "bbq barbeque july4th 4thofjuly fourth verdell poolparty properriot"}, {"datetaken": "2005-07-04 05:42:32", "license": "1", "title": "Verdell, Ross 1", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27498903_dc88d2fb1a_o.jpg", "secret": "dc88d2fb1a", "media": "photo", "latitude": "0", "id": "27498903", "tags": "bbq barbeque july4th 4thofjuly fourth verdell poolparty properriot"}, {"datetaken": "2005-07-04 05:42:41", "license": "1", "title": "so much angst", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27498906_ea25546261_o.jpg", "secret": "ea25546261", "media": "photo", "latitude": "0", "id": "27498906", "tags": "4thofjuly july4th fourth barbeque bbq properriot poolparty"}, {"datetaken": "2005-07-04 05:43:04", "license": "1", "title": "Verdell, Ross 2", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27498908_d2dc732244_o.jpg", "secret": "d2dc732244", "media": "photo", "latitude": "0", "id": "27498908", "tags": "bbq barbeque july4th 4thofjuly fourth verdell poolparty properriot"}, {"datetaken": "2005-07-04 05:43:24", "license": "1", "title": "Verdell, Ross", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27498924_3737e5667f_o.jpg", "secret": "3737e5667f", "media": "photo", "latitude": "0", "id": "27498924", "tags": "bbq barbeque july4th 4thofjuly fourth verdell poolparty properriot"}, {"datetaken": "2005-07-04 05:57:41", "license": "1", "title": "Ross, Networking", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27498927_24e0d5e6d2_o.jpg", "secret": "24e0d5e6d2", "media": "photo", "latitude": "0", "id": "27498927", "tags": "4thofjuly july4th fourth barbeque bbq properriot poolparty"}, {"datetaken": "2005-07-04 05:57:52", "license": "1", "title": "Jeff", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27498929_89f95224dd_o.jpg", "secret": "89f95224dd", "media": "photo", "latitude": "0", "id": "27498929", "tags": "bbq barbeque july4th 4thofjuly fourth poolparty properriot squigg"}, {"datetaken": "2005-07-04 05:58:16", "license": "1", "title": "The Party 2", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27498933_c2fd6c83ac_o.jpg", "secret": "c2fd6c83ac", "media": "photo", "latitude": "0", "id": "27498933", "tags": "4thofjuly july4th fourth barbeque bbq properriot poolparty"}, {"datetaken": "2005-07-04 05:58:51", "license": "1", "title": "Potato, Salad", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27498940_de80193c60_o.jpg", "secret": "de80193c60", "media": "photo", "latitude": "0", "id": "27498940", "tags": "4thofjuly july4th fourth barbeque bbq properriot poolparty"}, {"datetaken": "2005-07-04 08:12:02", "license": "1", "title": "Me, Emilie", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27498944_fb21f0dd69_o.jpg", "secret": "fb21f0dd69", "media": "photo", "latitude": "0", "id": "27498944", "tags": "bbq barbeque emilie july4th 4thofjuly fourth jasoncarlin poolparty properriot rubbersnap"}, {"datetaken": "2005-07-04 08:12:10", "license": "1", "title": "Jeff, Micki", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27498946_4d9e4357eb_o.jpg", "secret": "4d9e4357eb", "media": "photo", "latitude": "0", "id": "27498946", "tags": "bbq barbeque july4th 4thofjuly fourth mickikrimmel poolparty properriot squigg"}, {"datetaken": "2005-07-04 08:13:32", "license": "1", "title": "IMG_1990", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27498949_9a912cc5c4_o.jpg", "secret": "9a912cc5c4", "media": "photo", "latitude": "0", "id": "27498949", "tags": "bbq barbeque emilie july4th 4thofjuly fourth poolparty properriot rubbersnap"}, {"datetaken": "2005-07-04 08:15:02", "license": "1", "title": "New friend 3", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27498956_0c29e9e0d8_o.jpg", "secret": "0c29e9e0d8", "media": "photo", "latitude": "0", "id": "27498956", "tags": "dog bbq barbeque july4th 4thofjuly fourth jasoncarlin poolparty properriot"}, {"datetaken": "2005-07-04 08:15:12", "license": "1", "title": "New friend 2", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27498957_ddeef75579_o.jpg", "secret": "ddeef75579", "media": "photo", "latitude": "0", "id": "27498957", "tags": "dog bbq barbeque emilie july4th 4thofjuly fourth poolparty properriot rubbersnap"}, {"datetaken": "2005-07-04 08:15:59", "license": "1", "title": "New friend", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27498959_566b58e199_o.jpg", "secret": "566b58e199", "media": "photo", "latitude": "0", "id": "27498959", "tags": "dog bbq barbeque july4th 4thofjuly fourth poolparty properriot"}, {"datetaken": "2005-07-04 08:52:34", "license": "1", "title": "Still representing", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27498969_e142ac332b_o.jpg", "secret": "e142ac332b", "media": "photo", "latitude": "0", "id": "27498969", "tags": "4thofjuly july4th fourth barbeque bbq properriot poolparty"}, {"datetaken": "2005-07-04 09:05:10", "license": "1", "title": "Err...", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27498971_e19b6e3379_o.jpg", "secret": "e19b6e3379", "media": "photo", "latitude": "0", "id": "27498971", "tags": "bbq barbeque july4th 4thofjuly fourth mickikrimmel jasoncarlin poolparty"}, {"datetaken": "2005-07-04 09:07:47", "license": "1", "title": "Umm...", "text": "", "album_id": "622334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27498974_c27b5899b5_o.jpg", "secret": "c27b5899b5", "media": "photo", "latitude": "0", "id": "27498974", "tags": "bbq barbeque emilie july4th 4thofjuly fourth poolparty properriot squigg rubbersnap"}, {"datetaken": "2004-04-21 18:53:45", "license": "2", "title": "Kick Off Party @T.Y. Harbor Brewery", "text": "", "album_id": "255769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10264118_607e53b699_o.jpg", "secret": "607e53b699", "media": "photo", "latitude": "0", "id": "10264118", "tags": "beer tyharborbrewing"}, {"datetaken": "2004-04-21 18:54:42", "license": "2", "title": "Kick Off Party @T.Y. Harbor Brewery", "text": "", "album_id": "255769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10264127_31fc9b4a69_o.jpg", "secret": "31fc9b4a69", "media": "photo", "latitude": "0", "id": "10264127", "tags": "beer tyharborbrewing"}, {"datetaken": "2004-04-21 18:58:39", "license": "2", "title": "Kick Off Party @T.Y. Harbor Brewery", "text": "", "album_id": "255769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10264130_d7087aa980_o.jpg", "secret": "d7087aa980", "media": "photo", "latitude": "0", "id": "10264130", "tags": "beer tyharborbrewing"}, {"datetaken": "2004-04-21 19:09:59", "license": "2", "title": "Pale Ale @T.Y. Harbor Brewery", "text": "", "album_id": "255769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10264133_28ac034c2b_o.jpg", "secret": "28ac034c2b", "media": "photo", "latitude": "0", "id": "10264133", "tags": "beer tyharborbrewing"}, {"datetaken": "2004-04-21 19:38:39", "license": "2", "title": "Wheat Ale @T.Y. Harbor Brewery", "text": "", "album_id": "255769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10264136_ac624e1443_o.jpg", "secret": "ac624e1443", "media": "photo", "latitude": "0", "id": "10264136", "tags": "beer tyharborbrewing"}, {"datetaken": "2004-04-21 19:44:59", "license": "2", "title": "sausage @T.Y. Harbor Brewery", "text": "", "album_id": "255769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10264140_dfd9a3428d_o.jpg", "secret": "dfd9a3428d", "media": "photo", "latitude": "0", "id": "10264140", "tags": "beer tyharborbrewing"}, {"datetaken": "2004-04-21 20:18:36", "license": "2", "title": "Amber @T.Y. Harbor Brewery", "text": "", "album_id": "255769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10264146_63fbc59610_o.jpg", "secret": "63fbc59610", "media": "photo", "latitude": "0", "id": "10264146", "tags": "beer tyharborbrewing"}, {"datetaken": "2004-04-21 21:10:50", "license": "2", "title": "STOUT @T.Y. Harbor Brewery", "text": "", "album_id": "255769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10264149_c75f560c31_o.jpg", "secret": "c75f560c31", "media": "photo", "latitude": "0", "id": "10264149", "tags": "beer tyharborbrewing"}, {"datetaken": "2004-04-21 22:05:43", "license": "2", "title": "Real Ale @T.Y. Harbor Brewery", "text": "", "album_id": "255769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10264151_4687dc28e4_o.jpg", "secret": "4687dc28e4", "media": "photo", "latitude": "0", "id": "10264151", "tags": "beer tyharborbrewing"}, {"datetaken": "2004-04-21 22:06:39", "license": "2", "title": "crazy drunks @T.Y. Harbor Brewery", "text": "", "album_id": "255769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10264153_07da4d741b_o.jpg", "secret": "07da4d741b", "media": "photo", "latitude": "0", "id": "10264153", "tags": "beer tyharborbrewing"}, {"datetaken": "2004-04-21 22:47:37", "license": "2", "title": "T.Y. Harbor Brewery", "text": "", "album_id": "255769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10264158_49003ca1c5_o.jpg", "secret": "49003ca1c5", "media": "photo", "latitude": "0", "id": "10264158", "tags": "beer tyharborbrewing"}, {"datetaken": "2005-08-20 11:56:03", "license": "2", "title": "Bay & platform", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/35913777_dc006eab38_o.jpg", "secret": "dc006eab38", "media": "photo", "latitude": "0", "id": "35913777", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 11:56:37", "license": "2", "title": "Outlook", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/35913841_6333b84d2d_o.jpg", "secret": "6333b84d2d", "media": "photo", "latitude": "0", "id": "35913841", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 11:57:22", "license": "2", "title": "Sky, water, rock", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/35913991_1006742b53_o.jpg", "secret": "1006742b53", "media": "photo", "latitude": "0", "id": "35913991", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 12:03:24", "license": "2", "title": "The Mysterious Sink", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/35914151_4267de2f0a_o.jpg", "secret": "4267de2f0a", "media": "photo", "latitude": "0", "id": "35914151", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 12:04:54", "license": "2", "title": "Pier", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/35914320_cc38999079_o.jpg", "secret": "cc38999079", "media": "photo", "latitude": "0", "id": "35914320", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 12:05:54", "license": "2", "title": "Transport", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/35914468_e73c85775d_o.jpg", "secret": "e73c85775d", "media": "photo", "latitude": "0", "id": "35914468", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 12:06:47", "license": "2", "title": "The cabin", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/35914563_ab10207eb3_o.jpg", "secret": "ab10207eb3", "media": "photo", "latitude": "0", "id": "35914563", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 12:08:19", "license": "2", "title": "Deck", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/35914714_d38731d3ce_o.jpg", "secret": "d38731d3ce", "media": "photo", "latitude": "0", "id": "35914714", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 12:09:08", "license": "2", "title": "Looking in", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/35914839_16b0d6bce7_o.jpg", "secret": "16b0d6bce7", "media": "photo", "latitude": "0", "id": "35914839", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 12:12:01", "license": "2", "title": "Swing horse", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/35914940_0f8aa19907_o.jpg", "secret": "0f8aa19907", "media": "photo", "latitude": "0", "id": "35914940", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 14:08:16", "license": "2", "title": "Relax", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/35915044_dcd69aa085_o.jpg", "secret": "dcd69aa085", "media": "photo", "latitude": "0", "id": "35915044", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 14:22:58", "license": "2", "title": "Toss", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/35915218_030d1ed4dd_o.jpg", "secret": "030d1ed4dd", "media": "photo", "latitude": "0", "id": "35915218", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 14:25:02", "license": "2", "title": "Jump for it", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/35915289_1d9a29ee77_o.jpg", "secret": "1d9a29ee77", "media": "photo", "latitude": "0", "id": "35915289", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 14:27:54", "license": "2", "title": "View", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/35915365_bf20d74a7e_o.jpg", "secret": "bf20d74a7e", "media": "photo", "latitude": "0", "id": "35915365", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:01:27", "license": "2", "title": "Marie & Jason", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/35915466_7d5e4e5287_o.jpg", "secret": "7d5e4e5287", "media": "photo", "latitude": "0", "id": "35915466", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:04:42", "license": "2", "title": "Jay finds something funny", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/35915553_b5e23d5cef_o.jpg", "secret": "b5e23d5cef", "media": "photo", "latitude": "0", "id": "35915553", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:05:15", "license": "2", "title": "Ryan", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/35915702_aaa5f7cc3c_o.jpg", "secret": "aaa5f7cc3c", "media": "photo", "latitude": "0", "id": "35915702", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:05:42", "license": "2", "title": "More Marie & Jason", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/35915788_fcb07170de_o.jpg", "secret": "fcb07170de", "media": "photo", "latitude": "0", "id": "35915788", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:06:32", "license": "2", "title": "Edgar & Ryan", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/35915904_6af82594a4_o.jpg", "secret": "6af82594a4", "media": "photo", "latitude": "0", "id": "35915904", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:08:51", "license": "2", "title": "Pat", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/35916079_b3d86eb31c_o.jpg", "secret": "b3d86eb31c", "media": "photo", "latitude": "0", "id": "35916079", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:10:44", "license": "2", "title": "Now we're cooking", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/35916148_65d67100df_o.jpg", "secret": "65d67100df", "media": "photo", "latitude": "0", "id": "35916148", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:13:18", "license": "2", "title": "On the deck", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/35916325_afc12428bd_o.jpg", "secret": "afc12428bd", "media": "photo", "latitude": "0", "id": "35916325", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:15:54", "license": "2", "title": "Greg", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/35916423_555b0972f6_o.jpg", "secret": "555b0972f6", "media": "photo", "latitude": "0", "id": "35916423", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:17:44", "license": "2", "title": "Early moon", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/35916568_b26f94aaec_o.jpg", "secret": "b26f94aaec", "media": "photo", "latitude": "0", "id": "35916568", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:19:22", "license": "2", "title": "Relaxing on the deck", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/35916664_49b682af80_o.jpg", "secret": "49b682af80", "media": "photo", "latitude": "0", "id": "35916664", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:22:38", "license": "2", "title": "Relaxing on the deck 2", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/35916763_4d42c143be_o.jpg", "secret": "4d42c143be", "media": "photo", "latitude": "0", "id": "35916763", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:23:00", "license": "2", "title": "Aaron", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/35916934_c35679c299_o.jpg", "secret": "c35679c299", "media": "photo", "latitude": "0", "id": "35916934", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:24:37", "license": "2", "title": "Eye poppin'", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/35917086_658ae6a268_o.jpg", "secret": "658ae6a268", "media": "photo", "latitude": "0", "id": "35917086", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:24:54", "license": "2", "title": "Peter", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/35917210_792ce41fbb_o.jpg", "secret": "792ce41fbb", "media": "photo", "latitude": "0", "id": "35917210", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:25:10", "license": "2", "title": "Jason", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/35917310_01f2bd31bf_o.jpg", "secret": "01f2bd31bf", "media": "photo", "latitude": "0", "id": "35917310", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:26:07", "license": "2", "title": "Amanda", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/35917417_a80a192985_o.jpg", "secret": "a80a192985", "media": "photo", "latitude": "0", "id": "35917417", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:26:58", "license": "2", "title": "Bay", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/35917668_d82a1af616_o.jpg", "secret": "d82a1af616", "media": "photo", "latitude": "0", "id": "35917668", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:27:55", "license": "2", "title": "Table sweeping", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/35917802_4126bd4691_o.jpg", "secret": "4126bd4691", "media": "photo", "latitude": "0", "id": "35917802", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:29:57", "license": "2", "title": "Raise or call?", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/35917881_b9247d5281_o.jpg", "secret": "b9247d5281", "media": "photo", "latitude": "0", "id": "35917881", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:32:24", "license": "2", "title": "Edgar", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/35918021_6f8e869d61_o.jpg", "secret": "6f8e869d61", "media": "photo", "latitude": "0", "id": "35918021", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:33:14", "license": "2", "title": "Kitchen window", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/35918151_44a927b5a2_o.jpg", "secret": "44a927b5a2", "media": "photo", "latitude": "0", "id": "35918151", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:34:33", "license": "2", "title": "Talk talk", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/35918221_98b2566afc_o.jpg", "secret": "98b2566afc", "media": "photo", "latitude": "0", "id": "35918221", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 18:43:10", "license": "2", "title": "Serious poker business", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/35918310_fce229199a_o.jpg", "secret": "fce229199a", "media": "photo", "latitude": "0", "id": "35918310", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 20:21:23", "license": "2", "title": "Sunset", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/35918448_c7df0e73f6_o.jpg", "secret": "c7df0e73f6", "media": "photo", "latitude": "0", "id": "35918448", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-08-20 20:35:38", "license": "2", "title": "Sundown", "text": "", "album_id": "794103", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/35918519_1e21a8df62_o.jpg", "secret": "1e21a8df62", "media": "photo", "latitude": "0", "id": "35918519", "tags": "pittlake summer 2005 cabin amandasparty"}, {"datetaken": "2005-04-23 11:14:22", "license": "1", "title": "spectating stalker and having fun", "text": "", "album_id": "258924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10484356_bc57e3f3bb_o.jpg", "secret": "f87bc346d3", "media": "photo", "latitude": "0", "id": "10484356", "tags": "party ipod minne cellspace adriaan cshwdpt verstijnen belger djstalker nyoj adriaanverstijnenaatski"}, {"datetaken": "2005-04-23 11:14:33", "license": "1", "title": "stalker", "text": "", "album_id": "258924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10484374_d9ae5b0b57_o.jpg", "secret": "4587321600", "media": "photo", "latitude": "0", "id": "10484374", "tags": "party ipod minne cellspace adriaan cshwdpt verstijnen belger djstalker nyoj adriaanverstijnenaatski"}, {"datetaken": "2005-04-23 11:14:39", "license": "1", "title": "stalker in beweging op de vloer", "text": "", "album_id": "258924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10484386_7cebc75706_o.jpg", "secret": "01c8514e34", "media": "photo", "latitude": "0", "id": "10484386", "tags": "party ipod minne cellspace adriaan cshwdpt verstijnen belger djstalker nyoj adriaanverstijnenaatski"}, {"datetaken": "2005-04-23 11:14:47", "license": "1", "title": "stalker krijgt platencontract", "text": "", "album_id": "258924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/10484390_6537086bdd_o.jpg", "secret": "31d645bbd0", "media": "photo", "latitude": "0", "id": "10484390", "tags": "party ipod minne cellspace adriaan cshwdpt verstijnen belger djstalker nyoj adriaanverstijnenaatski"}, {"datetaken": "2005-04-23 11:14:54", "license": "1", "title": "stalker licking the bulls ass", "text": "", "album_id": "258924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10484400_beaac5a572_o.jpg", "secret": "aa48d72940", "media": "photo", "latitude": "0", "id": "10484400", "tags": "party ipod minne cellspace adriaan cshwdpt verstijnen belger djstalker nyoj adriaanverstijnenaatski"}, {"datetaken": "2005-04-23 11:15:02", "license": "1", "title": "stalker met ipod dance team", "text": "", "album_id": "258924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10484406_ddd1719a42_o.jpg", "secret": "cc38de5413", "media": "photo", "latitude": "0", "id": "10484406", "tags": "party ipod minne cellspace adriaan cshwdpt verstijnen belger djstalker nyoj adriaanverstijnenaatski"}, {"datetaken": "2005-04-23 11:15:15", "license": "1", "title": "stalker networking", "text": "", "album_id": "258924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10484422_ab675fd256_o.jpg", "secret": "caaa6e4643", "media": "photo", "latitude": "0", "id": "10484422", "tags": "party ipod minne cellspace adriaan cshwdpt verstijnen belger djstalker nyoj adriaanverstijnenaatski"}, {"datetaken": "2005-04-23 11:15:22", "license": "1", "title": "stalker playing the piano", "text": "", "album_id": "258924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10484430_e655120124_o.jpg", "secret": "c777283b59", "media": "photo", "latitude": "0", "id": "10484430", "tags": "party ipod minne cellspace adriaan cshwdpt verstijnen belger djstalker nyoj adriaanverstijnenaatski"}, {"datetaken": "2005-04-23 11:15:30", "license": "1", "title": "stalker podding", "text": "", "album_id": "258924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10484438_a819245065_o.jpg", "secret": "b59d62fc28", "media": "photo", "latitude": "0", "id": "10484438", "tags": "party ipod minne cellspace adriaan cshwdpt verstijnen belger djstalker nyoj adriaanverstijnenaatski"}, {"datetaken": "2005-04-23 11:15:37", "license": "1", "title": "stalker podding 2", "text": "", "album_id": "258924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10484443_1179491103_o.jpg", "secret": "aa47a01a24", "media": "photo", "latitude": "0", "id": "10484443", "tags": "party ipod minne cellspace adriaan cshwdpt verstijnen belger djstalker nyoj adriaanverstijnenaatski"}, {"datetaken": "2005-04-23 11:15:44", "license": "1", "title": "stalker podding 3", "text": "", "album_id": "258924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10484463_26b6de1a07_o.jpg", "secret": "d9aa2f3816", "media": "photo", "latitude": "0", "id": "10484463", "tags": "party ipod minne cellspace adriaan cshwdpt verstijnen belger djstalker nyoj adriaanverstijnenaatski"}, {"datetaken": "2005-04-23 11:15:52", "license": "1", "title": "stalker podding 4", "text": "", "album_id": "258924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10484475_80b2d28a65_o.jpg", "secret": "126b28ac16", "media": "photo", "latitude": "0", "id": "10484475", "tags": "party ipod minne cellspace adriaan cshwdpt verstijnen belger djstalker nyoj adriaanverstijnenaatski"}, {"datetaken": "2005-04-23 11:15:59", "license": "1", "title": "stalker podding 5", "text": "", "album_id": "258924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10484495_b0a930d82a_o.jpg", "secret": "95e5fbfb00", "media": "photo", "latitude": "0", "id": "10484495", "tags": "party ipod minne cellspace adriaan cshwdpt verstijnen belger djstalker nyoj adriaanverstijnenaatski"}, {"datetaken": "2005-04-23 11:16:05", "license": "1", "title": "stalker posing", "text": "", "album_id": "258924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10484505_799049fba6_o.jpg", "secret": "050188858b", "media": "photo", "latitude": "0", "id": "10484505", "tags": "party ipod minne cellspace adriaan cshwdpt verstijnen belger djstalker nyoj adriaanverstijnenaatski"}, {"datetaken": "2005-04-23 11:16:11", "license": "1", "title": "stalker the shy guy", "text": "", "album_id": "258924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10484516_7fca145c63_o.jpg", "secret": "17107878db", "media": "photo", "latitude": "0", "id": "10484516", "tags": "party ipod minne cellspace adriaan cshwdpt verstijnen belger djstalker nyoj adriaanverstijnenaatski"}, {"datetaken": "2005-04-23 11:16:18", "license": "1", "title": "stalker with young fans", "text": "", "album_id": "258924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10484531_4c9e96e480_o.jpg", "secret": "54d01cc65d", "media": "photo", "latitude": "0", "id": "10484531", "tags": "party ipod minne cellspace adriaan cshwdpt verstijnen belger djstalker nyoj adriaanverstijnenaatski"}, {"datetaken": "2005-05-21 21:25:24", "license": "3", "title": "Ben and Staci", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15358398_94f1f78ce4_o.jpg", "secret": "94f1f78ce4", "media": "photo", "latitude": "0", "id": "15358398", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 21:31:12", "license": "3", "title": "Me and Staci", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/15358435_587633f53f_o.jpg", "secret": "587633f53f", "media": "photo", "latitude": "0", "id": "15358435", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 21:37:14", "license": "3", "title": "Staci's graduation party", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15358634_1bf1478666_o.jpg", "secret": "1bf1478666", "media": "photo", "latitude": "0", "id": "15358634", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 21:39:13", "license": "3", "title": "More fireworks", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15358576_2c17229a24_o.jpg", "secret": "2c17229a24", "media": "photo", "latitude": "0", "id": "15358576", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 21:40:05", "license": "3", "title": "neon fiesta", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15358516_e275a4929f_o.jpg", "secret": "e275a4929f", "media": "photo", "latitude": "0", "id": "15358516", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 21:41:34", "license": "3", "title": "Staci's graduation party", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15364576_a7642ae609_o.jpg", "secret": "a7642ae609", "media": "photo", "latitude": "0", "id": "15364576", "tags": ""}, {"datetaken": "2005-05-21 21:42:21", "license": "3", "title": "shiny star", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15358756_273185d53b_o.jpg", "secret": "273185d53b", "media": "photo", "latitude": "0", "id": "15358756", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 21:42:25", "license": "3", "title": "blurryworks", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/15358665_bcef946efd_o.jpg", "secret": "bcef946efd", "media": "photo", "latitude": "0", "id": "15358665", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 21:48:30", "license": "3", "title": "Staci's graduation party", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15364518_87d55fa946_o.jpg", "secret": "87d55fa946", "media": "photo", "latitude": "0", "id": "15364518", "tags": ""}, {"datetaken": "2005-05-21 21:49:11", "license": "3", "title": "No good can come of this", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/15358779_343724c984_o.jpg", "secret": "343724c984", "media": "photo", "latitude": "0", "id": "15358779", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 21:49:11", "license": "3", "title": "Staci's graduation party", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/15364471_c8f04f659e_o.jpg", "secret": "c8f04f659e", "media": "photo", "latitude": "0", "id": "15364471", "tags": ""}, {"datetaken": "2005-05-21 21:49:23", "license": "3", "title": "It's a wiffleball bat, really", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/15358709_24b6368dff_o.jpg", "secret": "24b6368dff", "media": "photo", "latitude": "0", "id": "15358709", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 21:52:03", "license": "3", "title": "Sharing a moment", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15358807_743b076fa6_o.jpg", "secret": "743b076fa6", "media": "photo", "latitude": "0", "id": "15358807", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 21:53:13", "license": "3", "title": "Fireworks", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15358851_51468f8caf_o.jpg", "secret": "51468f8caf", "media": "photo", "latitude": "0", "id": "15358851", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 21:58:31", "license": "3", "title": "Me, Cedric", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/15358280_9b1c2aebe7_o.jpg", "secret": "9b1c2aebe7", "media": "photo", "latitude": "0", "id": "15358280", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 22:09:18", "license": "3", "title": "Kate is in charge", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15358911_1c54bdc4d5_o.jpg", "secret": "1c54bdc4d5", "media": "photo", "latitude": "0", "id": "15358911", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 22:10:29", "license": "3", "title": "Keith is so blue", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15359024_08c641fa22_o.jpg", "secret": "08c641fa22", "media": "photo", "latitude": "0", "id": "15359024", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 22:27:55", "license": "3", "title": "Kate and Keith", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15359044_c838f03d09_o.jpg", "secret": "c838f03d09", "media": "photo", "latitude": "0", "id": "15359044", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 22:32:28", "license": "3", "title": "Parker resting after partying", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15358058_493480da71_o.jpg", "secret": "493480da71", "media": "photo", "latitude": "0", "id": "15358058", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 22:46:17", "license": "3", "title": "Parker looking tired", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15358172_7496047db2_o.jpg", "secret": "7496047db2", "media": "photo", "latitude": "0", "id": "15358172", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 22:53:58", "license": "3", "title": "Staci's graduation party", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15359082_873cf3c0df_o.jpg", "secret": "873cf3c0df", "media": "photo", "latitude": "0", "id": "15359082", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 23:03:54", "license": "3", "title": "Parker loves his leash", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15358234_1604303248_o.jpg", "secret": "1604303248", "media": "photo", "latitude": "0", "id": "15358234", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 23:23:04", "license": "3", "title": "Staci's graduation party", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15359143_1a5e96703f_o.jpg", "secret": "1a5e96703f", "media": "photo", "latitude": "0", "id": "15359143", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 23:23:22", "license": "3", "title": "Keith's out of body experience", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15359193_9fa4566798_o.jpg", "secret": "9fa4566798", "media": "photo", "latitude": "0", "id": "15359193", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 23:28:53", "license": "3", "title": "Staci's graduation party", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/15364272_ca210e4b99_o.jpg", "secret": "ca210e4b99", "media": "photo", "latitude": "0", "id": "15364272", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 23:29:02", "license": "3", "title": "Staci's graduation party", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15359253_4aefcd195f_o.jpg", "secret": "4aefcd195f", "media": "photo", "latitude": "0", "id": "15359253", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 23:57:23", "license": "3", "title": "Staci's graduation party", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/15359306_a8f3c1f4f3_o.jpg", "secret": "a8f3c1f4f3", "media": "photo", "latitude": "0", "id": "15359306", "tags": "party graduation 2005"}, {"datetaken": "2005-05-21 23:57:32", "license": "3", "title": "When the party's over..", "text": "", "album_id": "369939", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15364360_d4e44cbde2_o.jpg", "secret": "d4e44cbde2", "media": "photo", "latitude": "0", "id": "15364360", "tags": ""}, {"datetaken": "2002-12-10 15:12:58", "license": "2", "title": "EFF SF Office", "text": "", "album_id": "497938", "longitude": "-122.416105", "url_o": "https://farm1.staticflickr.com/15/21396976_c69b64f4f0_o.jpg", "secret": "c69b64f4f0", "media": "photo", "latitude": "37.761135", "id": "21396976", "tags": "eff zip941101914 zip94110"}, {"datetaken": "2002-12-10 15:13:15", "license": "2", "title": "EFF SF Office", "text": "", "album_id": "497938", "longitude": "-122.416105", "url_o": "https://farm1.staticflickr.com/15/21397015_2c35d62097_o.jpg", "secret": "2c35d62097", "media": "photo", "latitude": "37.761135", "id": "21397015", "tags": "eff zip941101914 zip94110"}, {"datetaken": "2002-12-10 15:13:43", "license": "2", "title": "EFF SF Office", "text": "", "album_id": "497938", "longitude": "-122.416105", "url_o": "https://farm1.staticflickr.com/17/21397050_25db1884c9_o.jpg", "secret": "25db1884c9", "media": "photo", "latitude": "37.761135", "id": "21397050", "tags": "eff zip941101914 zip94110"}, {"datetaken": "2002-12-10 15:14:05", "license": "2", "title": "EFF SF Office", "text": "", "album_id": "497938", "longitude": "-122.416105", "url_o": "https://farm1.staticflickr.com/17/21397089_4b2bf6c055_o.jpg", "secret": "4b2bf6c055", "media": "photo", "latitude": "37.761135", "id": "21397089", "tags": "eff zip941101914 zip94110"}, {"datetaken": "2002-12-10 15:14:23", "license": "2", "title": "EFF Toilets", "text": "", "album_id": "497938", "longitude": "-122.416105", "url_o": "https://farm1.staticflickr.com/16/21397148_63ea5f8988_o.jpg", "secret": "63ea5f8988", "media": "photo", "latitude": "37.761135", "id": "21397148", "tags": "eff zip941101914 zip94110 sanfrancisco geotagged geolat37761135 geolon122416105 toilet wc"}, {"datetaken": "2002-12-10 15:14:33", "license": "2", "title": "EFF SF Office", "text": "", "album_id": "497938", "longitude": "-122.416105", "url_o": "https://farm1.staticflickr.com/16/21397212_bd78d14045_o.jpg", "secret": "bd78d14045", "media": "photo", "latitude": "37.761135", "id": "21397212", "tags": "eff zip941101914 zip94110"}, {"datetaken": "2002-12-10 18:20:05", "license": "2", "title": "EFF SF Office", "text": "", "album_id": "497938", "longitude": "-122.416105", "url_o": "https://farm1.staticflickr.com/16/21397269_d794944b32_o.jpg", "secret": "d794944b32", "media": "photo", "latitude": "37.761135", "id": "21397269", "tags": "eff zip941101914 zip94110"}, {"datetaken": "2002-12-10 18:20:22", "license": "2", "title": "EFF SF Office", "text": "", "album_id": "497938", "longitude": "-122.416105", "url_o": "https://farm1.staticflickr.com/17/21397345_1a4414b9e9_o.jpg", "secret": "1a4414b9e9", "media": "photo", "latitude": "37.761135", "id": "21397345", "tags": "eff zip941101914 zip94110"}, {"datetaken": "2002-12-10 18:37:15", "license": "2", "title": "EFF SF Office", "text": "", "album_id": "497938", "longitude": "-122.416105", "url_o": "https://farm1.staticflickr.com/17/21397394_a0df40ed15_o.jpg", "secret": "a0df40ed15", "media": "photo", "latitude": "37.761135", "id": "21397394", "tags": "eff zip941101914 zip94110"}, {"datetaken": "2002-12-10 18:37:25", "license": "2", "title": "EFF SF Office", "text": "", "album_id": "497938", "longitude": "-122.416105", "url_o": "https://farm1.staticflickr.com/16/21397434_d77bf75d13_o.jpg", "secret": "d77bf75d13", "media": "photo", "latitude": "37.761135", "id": "21397434", "tags": "eff zip941101914 zip94110"}, {"datetaken": "2002-12-10 19:30:35", "license": "2", "title": "EFF SF Office", "text": "", "album_id": "497938", "longitude": "-122.416105", "url_o": "https://farm1.staticflickr.com/16/21397471_b6297b78da_o.jpg", "secret": "b6297b78da", "media": "photo", "latitude": "37.761135", "id": "21397471", "tags": "eff zip941101914 zip94110"}, {"datetaken": "2002-12-10 19:30:50", "license": "2", "title": "EFF SF Office", "text": "", "album_id": "497938", "longitude": "-122.416105", "url_o": "https://farm1.staticflickr.com/16/21397546_f4f4abe121_o.jpg", "secret": "f4f4abe121", "media": "photo", "latitude": "37.761135", "id": "21397546", "tags": "eff zip941101914 zip94110"}, {"datetaken": "2002-12-10 19:31:01", "license": "2", "title": "EFF SF Office", "text": "", "album_id": "497938", "longitude": "-122.416105", "url_o": "https://farm1.staticflickr.com/17/21397596_51426cabec_o.jpg", "secret": "51426cabec", "media": "photo", "latitude": "37.761135", "id": "21397596", "tags": "eff zip941101914 zip94110"}, {"datetaken": "2005-06-23 21:47:41", "license": "2", "title": "Vance Hotel", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21316437_a31f11b849_o.jpg", "secret": "a31f11b849", "media": "photo", "latitude": "0", "id": "21316437", "tags": "seattle gnomedex vancehotel boutiquehotel hotel retro gnomedex2005"}, {"datetaken": "2005-06-23 21:51:07", "license": "2", "title": "Flags and Sky", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21322164_1535135ec1_o.jpg", "secret": "1535135ec1", "media": "photo", "latitude": "0", "id": "21322164", "tags": "seattle gnomedex sky flags"}, {"datetaken": "2005-06-23 21:52:47", "license": "2", "title": "Mono...d'oh!", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21411553_78d7a58ca8_o.jpg", "secret": "78d7a58ca8", "media": "photo", "latitude": "0", "id": "21411553", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-23 22:01:23", "license": "2", "title": "Castle Apartments", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21411645_25c3998d32_o.jpg", "secret": "25c3998d32", "media": "photo", "latitude": "0", "id": "21411645", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-23 22:11:38", "license": "2", "title": "Silly Shoreline Highway", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21411748_8963a82c18_o.jpg", "secret": "8963a82c18", "media": "photo", "latitude": "0", "id": "21411748", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-23 23:36:32", "license": "2", "title": "Mt. Rainer and Cranes", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21411837_8e182818fa_o.jpg", "secret": "8e182818fa", "media": "photo", "latitude": "0", "id": "21411837", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-23 23:47:12", "license": "2", "title": "Neon Sign", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21411940_0d6861883e_o.jpg", "secret": "0d6861883e", "media": "photo", "latitude": "0", "id": "21411940", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-24 14:28:49", "license": "2", "title": "Old Media", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21409285_9f6860a5ff_o.jpg", "secret": "9f6860a5ff", "media": "photo", "latitude": "0", "id": "21409285", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-24 15:03:49", "license": "2", "title": "Veggies", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21409422_625cad48ad_o.jpg", "secret": "625cad48ad", "media": "photo", "latitude": "0", "id": "21409422", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-24 15:04:32", "license": "2", "title": "Tiny Dog", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21409529_4c26de5ad9_o.jpg", "secret": "4c26de5ad9", "media": "photo", "latitude": "0", "id": "21409529", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-24 15:05:20", "license": "2", "title": "Cherries", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21409636_09be379b80_o.jpg", "secret": "09be379b80", "media": "photo", "latitude": "0", "id": "21409636", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-24 15:06:08", "license": "2", "title": "They've Got Crabs", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21409779_eb846933d0_o.jpg", "secret": "eb846933d0", "media": "photo", "latitude": "0", "id": "21409779", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-24 15:07:29", "license": "2", "title": "Lavender", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21409944_fff01369e2_o.jpg", "secret": "fff01369e2", "media": "photo", "latitude": "0", "id": "21409944", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-24 15:07:55", "license": "2", "title": "Sunflowers", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21410116_ff81dc3758_o.jpg", "secret": "ff81dc3758", "media": "photo", "latitude": "0", "id": "21410116", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-24 15:09:15", "license": "2", "title": "Busker", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21410302_b9d8ea3fd8_o.jpg", "secret": "b9d8ea3fd8", "media": "photo", "latitude": "0", "id": "21410302", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-24 15:12:09", "license": "2", "title": "Ol' School Starbucks", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21410443_a5a5d73d69_o.jpg", "secret": "a5a5d73d69", "media": "photo", "latitude": "0", "id": "21410443", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-24 20:25:10", "license": "2", "title": "Monorail", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21410534_2c64597e07_o.jpg", "secret": "2c64597e07", "media": "photo", "latitude": "0", "id": "21410534", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-24 20:28:01", "license": "2", "title": "Space Needle", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21410624_aa970b116b_o.jpg", "secret": "aa970b116b", "media": "photo", "latitude": "0", "id": "21410624", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-24 20:28:05", "license": "2", "title": "Chillin' Julie", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21410741_c90f686b3a_o.jpg", "secret": "c90f686b3a", "media": "photo", "latitude": "0", "id": "21410741", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-24 21:47:05", "license": "2", "title": "Seattle Public Library", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21410861_df550b208c_o.jpg", "secret": "df550b208c", "media": "photo", "latitude": "0", "id": "21410861", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-24 23:20:10", "license": "2", "title": "Candles at Bar", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21410963_43d97b9d6c_o.jpg", "secret": "43d97b9d6c", "media": "photo", "latitude": "0", "id": "21410963", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-24 23:45:03", "license": "2", "title": "Mack and his Podcasting Robot", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21411082_e0e26614ba_o.jpg", "secret": "e0e26614ba", "media": "photo", "latitude": "0", "id": "21411082", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-24 23:53:39", "license": "2", "title": "Geeky Party", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21411189_ef09e7f7be_o.jpg", "secret": "ef09e7f7be", "media": "photo", "latitude": "0", "id": "21411189", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-25 00:19:22", "license": "2", "title": "Roland BOFing", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21411264_288fe5b807_o.jpg", "secret": "288fe5b807", "media": "photo", "latitude": "0", "id": "21411264", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-06-25 00:24:58", "license": "2", "title": "Pricey Bustier", "text": "", "album_id": "499924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21411397_2d29f0882f_o.jpg", "secret": "2d29f0882f", "media": "photo", "latitude": "0", "id": "21411397", "tags": "seattle gnomedex publicmarket gnomedex2005"}, {"datetaken": "2005-08-24 20:53:21", "license": "1", "title": "If Hitler ate cookies", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/37114997_86ab8be515_o.jpg", "secret": "86ab8be515", "media": "photo", "latitude": "0", "id": "37114997", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-24 20:53:48", "license": "1", "title": "The clown door", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/37115000_3520beae57_o.jpg", "secret": "3520beae57", "media": "photo", "latitude": "0", "id": "37115000", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-24 21:01:25", "license": "1", "title": "Camera shot", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/37115002_62c8df33d8_o.jpg", "secret": "62c8df33d8", "media": "photo", "latitude": "0", "id": "37115002", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-24 21:03:57", "license": "1", "title": "Paint Party '05", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/37115006_1781447853_o.jpg", "secret": "1781447853", "media": "photo", "latitude": "0", "id": "37115006", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-24 21:21:55", "license": "1", "title": "Framing the projector", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/37115016_93763e2854_o.jpg", "secret": "93763e2854", "media": "photo", "latitude": "0", "id": "37115016", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-24 21:23:00", "license": "1", "title": "Karyn the overseer", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/37115027_82ddfab368_o.jpg", "secret": "82ddfab368", "media": "photo", "latitude": "0", "id": "37115027", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-24 21:23:22", "license": "1", "title": "Hard at work", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/37115029_1a63a76911_o.jpg", "secret": "1a63a76911", "media": "photo", "latitude": "0", "id": "37115029", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-24 21:55:39", "license": "1", "title": "Matt admiring his wall", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/37115031_c71b8377ec_o.jpg", "secret": "c71b8377ec", "media": "photo", "latitude": "0", "id": "37115031", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-24 21:55:55", "license": "1", "title": "Nick drawing", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/37115034_299bf7bfb8_o.jpg", "secret": "299bf7bfb8", "media": "photo", "latitude": "0", "id": "37115034", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-24 21:56:02", "license": "1", "title": "Pencil robots and monkeys", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/37115035_a79f748e6b_o.jpg", "secret": "a79f748e6b", "media": "photo", "latitude": "0", "id": "37115035", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-24 21:56:06", "license": "1", "title": "Jason penciling in the battle", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/37115038_7cd8923a21_o.jpg", "secret": "7cd8923a21", "media": "photo", "latitude": "0", "id": "37115038", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-24 23:11:48", "license": "1", "title": "Karyn's retarded cow makes a comeback", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/37115050_8279ef50a2_o.jpg", "secret": "8279ef50a2", "media": "photo", "latitude": "0", "id": "37115050", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-24 23:11:59", "license": "1", "title": "Allison's Unicorn", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/37115053_15276fe6f1_o.jpg", "secret": "15276fe6f1", "media": "photo", "latitude": "0", "id": "37115053", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-24 23:13:11", "license": "1", "title": "Secret Ninja", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/37115056_e4cb6983ba_o.jpg", "secret": "e4cb6983ba", "media": "photo", "latitude": "0", "id": "37115056", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-24 23:13:26", "license": "1", "title": "Follow the ducks to the bathroom", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/37115059_3ab86d7f3e_o.jpg", "secret": "3ab86d7f3e", "media": "photo", "latitude": "0", "id": "37115059", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-24 23:13:33", "license": "1", "title": "Loving fish by the bathroom", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/37115062_9c597363f5_o.jpg", "secret": "9c597363f5", "media": "photo", "latitude": "0", "id": "37115062", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-24 23:13:45", "license": "1", "title": "Dave's Door", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/37115067_435fd48cc1_o.jpg", "secret": "435fd48cc1", "media": "photo", "latitude": "0", "id": "37115067", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-24 23:14:10", "license": "1", "title": "Painting the frame", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/37115068_ee6747e572_o.jpg", "secret": "ee6747e572", "media": "photo", "latitude": "0", "id": "37115068", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-25 00:08:16", "license": "1", "title": "Karyn admiring the monkeys", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/37115070_b362aff41d_o.jpg", "secret": "b362aff41d", "media": "photo", "latitude": "0", "id": "37115070", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-25 00:08:24", "license": "1", "title": "Monkey vs Robot Mural p4", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/37115073_50d5f1fe56_o.jpg", "secret": "50d5f1fe56", "media": "photo", "latitude": "0", "id": "37115073", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-25 00:08:58", "license": "1", "title": "Monkey vs Robot Mural p3", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/37115077_c431c0c5b0_o.jpg", "secret": "c431c0c5b0", "media": "photo", "latitude": "0", "id": "37115077", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-25 00:09:07", "license": "1", "title": "Monkey vs Robot Mural p2", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/37115079_28ff75a492_o.jpg", "secret": "28ff75a492", "media": "photo", "latitude": "0", "id": "37115079", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-25 00:09:14", "license": "1", "title": "Monkey vs Robot Mural p1", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/37114992_f622d25097_o.jpg", "secret": "f622d25097", "media": "photo", "latitude": "0", "id": "37114992", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-25 00:09:43", "license": "1", "title": "Fish love complete", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/37114994_a7be6e5985_o.jpg", "secret": "a7be6e5985", "media": "photo", "latitude": "0", "id": "37114994", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-08-25 00:09:56", "license": "1", "title": "Toilet fish", "text": "", "album_id": "819764", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/37114995_7e2b4eade6_o.jpg", "secret": "7e2b4eade6", "media": "photo", "latitude": "0", "id": "37114995", "tags": "paintingparty monkeyvsrobot monkey robot painting dave mattressfactory fuckyouninja"}, {"datetaken": "2005-02-20 17:01:41", "license": "1", "title": "Blow that horn, son!", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5386000_52e9deb64f_o.jpg", "secret": "52e9deb64f", "media": "photo", "latitude": "0", "id": "5386000", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill saxophone guitar soprano resonator david gray"}, {"datetaken": "2005-02-20 17:01:50", "license": "1", "title": "Let 'er rip, Pearl!", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5385018_d88025f45c_o.jpg", "secret": "d88025f45c", "media": "photo", "latitude": "0", "id": "5385018", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill harmonica guitar"}, {"datetaken": "2005-02-20 17:02:00", "license": "1", "title": "Matteo Casini, the Italian Jimi Hendrix", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5385016_b03cbf4eba_o.jpg", "secret": "b03cbf4eba", "media": "photo", "latitude": "0", "id": "5385016", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill matteocasini guitar harmonica"}, {"datetaken": "2005-02-20 17:02:25", "license": "1", "title": "Donna and Bags", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5385003_abe53a06a2_o.jpg", "secret": "abe53a06a2", "media": "photo", "latitude": "0", "id": "5385003", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill bags donna guitar trumpet fletcher"}, {"datetaken": "2005-02-20 17:02:56", "license": "1", "title": "Bags takes it to the bridge...", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5385004_de01dde7e4_o.jpg", "secret": "de01dde7e4", "media": "photo", "latitude": "0", "id": "5385004", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill bags trumpet"}, {"datetaken": "2005-02-20 17:03:11", "license": "1", "title": "Croon a tune...", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5385002_56760a9693_o.jpg", "secret": "56760a9693", "media": "photo", "latitude": "0", "id": "5385002", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill bags donna sing guitar trumpet fletcher"}, {"datetaken": "2005-02-20 17:03:43", "license": "1", "title": "The comedian harmonists", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5385001_acb03dad04_o.jpg", "secret": "acb03dad04", "media": "photo", "latitude": "0", "id": "5385001", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill bags donna sing piano trumpet guitar"}, {"datetaken": "2005-02-20 17:38:53", "license": "1", "title": "Donna sings one of her fav's", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5386019_5052f0d497_o.jpg", "secret": "5052f0d497", "media": "photo", "latitude": "0", "id": "5386019", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill jeffglassie matteocasini guitar harmonica sing donna fletcher"}, {"datetaken": "2005-02-20 17:39:12", "license": "1", "title": "Nothing else sounds quite like a resonator...", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5489833_1365b85ec0_o.jpg", "secret": "1365b85ec0", "media": "photo", "latitude": "0", "id": "5489833", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill guitar resonator steelguitar david gray"}, {"datetaken": "2005-02-20 17:40:11", "license": "1", "title": "Harp and guitar boogie", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5386021_b5d785813d_o.jpg", "secret": "b5d785813d", "media": "photo", "latitude": "0", "id": "5386021", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill matteocasini jeffglassie guitar harmonica saxophone"}, {"datetaken": "2005-02-20 17:55:22", "license": "1", "title": "Bags on the trumpet", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5386012_ef16eeb889_o.jpg", "secret": "ef16eeb889", "media": "photo", "latitude": "0", "id": "5386012", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill bags trumpet"}, {"datetaken": "2005-02-20 17:55:48", "license": "1", "title": "Joel and Matteo", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5386006_09ac4c09fa_o.jpg", "secret": "09ac4c09fa", "media": "photo", "latitude": "0", "id": "5386006", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill matteocasini piano guitar harmonica"}, {"datetaken": "2005-02-20 17:56:02", "license": "1", "title": "All in on the bridge...", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5385998_4163e0d51d_o.jpg", "secret": "4163e0d51d", "media": "photo", "latitude": "0", "id": "5385998", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill matteocasini harmonica guitar piano"}, {"datetaken": "2005-02-20 18:48:23", "license": "1", "title": "Tag team'n the solo", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5489838_6cfb834b18_o.jpg", "secret": "6cfb834b18", "media": "photo", "latitude": "0", "id": "5489838", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill harmonica jeff glassie"}, {"datetaken": "2005-02-20 18:49:06", "license": "1", "title": "A gospel moment...", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5489834_76b40d9204_o.jpg", "secret": "76b40d9204", "media": "photo", "latitude": "0", "id": "5489834", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill jeff glassie matteo casini guitar harmonica resonator"}, {"datetaken": "2005-02-20 19:42:20", "license": "1", "title": "Yup, it's a pickin' party alright", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5489836_aebab24ead_o.jpg", "secret": "aebab24ead", "media": "photo", "latitude": "0", "id": "5489836", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill guitar resonator steelguitar"}, {"datetaken": "2005-02-20 19:42:42", "license": "1", "title": "Bird's-eye-view of Joel's noggin", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5388820_072541243c_o.jpg", "secret": "072541243c", "media": "photo", "latitude": "0", "id": "5388820", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill piano bald"}, {"datetaken": "2005-02-20 19:43:25", "license": "1", "title": "Guitars and soup", "text": "", "album_id": "135741", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5489837_e2842d7a9a_o.jpg", "secret": "e2842d7a9a", "media": "photo", "latitude": "0", "id": "5489837", "tags": "bailes joel pearl houseparty jam music blues swing tinpanalley jazz 2004 february washington capitolhill guitar steelguitar soup"}, {"datetaken": "2005-07-23 20:09:08", "license": "1", "title": "Frankie, Pipe, and Stella", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/22/28415638_92efe7da40_o.jpg", "secret": "92efe7da40", "media": "photo", "latitude": "53.304210", "id": "28415638", "tags": "danehy party 2005 pipe drink frankie"}, {"datetaken": "2005-07-23 20:09:30", "license": "1", "title": "Frankie", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/22/28415662_7a219fa801_o.jpg", "secret": "7a219fa801", "media": "photo", "latitude": "53.304210", "id": "28415662", "tags": "danehy party 2005 pipe frankie drink hands"}, {"datetaken": "2005-07-23 20:22:32", "license": "1", "title": "Wes and Cows", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/21/28415726_2223a6a958_o.jpg", "secret": "2223a6a958", "media": "photo", "latitude": "53.304210", "id": "28415726", "tags": "danehy party 2005 cows wes green drink"}, {"datetaken": "2005-07-23 20:22:36", "license": "1", "title": "Wes, Cows and Will", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/21/28415792_e4db7aa679_o.jpg", "secret": "e4db7aa679", "media": "photo", "latitude": "53.304210", "id": "28415792", "tags": "2005 party green animals cows drink will favourite wes pf danehy"}, {"datetaken": "2005-07-23 20:48:20", "license": "1", "title": "Danehy 006", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/21/28415813_c613ed7d94_o.jpg", "secret": "c613ed7d94", "media": "photo", "latitude": "53.304210", "id": "28415813", "tags": "danehy party 2005 sky scenic"}, {"datetaken": "2005-07-23 20:48:30", "license": "1", "title": "Danehy 007", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/23/28415842_63a98aa069_o.jpg", "secret": "63a98aa069", "media": "photo", "latitude": "53.304210", "id": "28415842", "tags": "danehy party 2005 sky scenic"}, {"datetaken": "2005-07-23 21:17:42", "license": "1", "title": "Telling A Story", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/22/28415880_87c0c52553_o.jpg", "secret": "87c0c52553", "media": "photo", "latitude": "53.304210", "id": "28415880", "tags": "danehy party 2005 frankie wes drink"}, {"datetaken": "2005-07-23 22:18:12", "license": "1", "title": "Burning Guitar", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/21/28415908_20b8ad2542_o.jpg", "secret": "20b8ad2542", "media": "photo", "latitude": "53.304210", "id": "28415908", "tags": "danehy party 2005 fire wantondestruction beev"}, {"datetaken": "2005-07-23 22:18:18", "license": "1", "title": "Burning Guitar", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/21/28415939_09356dc51e_o.jpg", "secret": "09356dc51e", "media": "photo", "latitude": "53.304210", "id": "28415939", "tags": "danehy party 2005 fire wantondestruction beev"}, {"datetaken": "2005-07-23 22:20:44", "license": "1", "title": "Neil On Fire", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/22/28415967_df216145c1_o.jpg", "secret": "df216145c1", "media": "photo", "latitude": "53.304210", "id": "28415967", "tags": "danehy party 2005 fire"}, {"datetaken": "2005-07-23 22:21:31", "license": "1", "title": "Sparks", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/22/28415982_e9bcd3cac5_o.jpg", "secret": "e9bcd3cac5", "media": "photo", "latitude": "53.304210", "id": "28415982", "tags": "danehy party 2005 fire sky"}, {"datetaken": "2005-07-23 22:30:28", "license": "1", "title": "Orange KT and Wes", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/22/28416003_6f307df557_o.jpg", "secret": "6f307df557", "media": "photo", "latitude": "53.304210", "id": "28416003", "tags": "danehy party 2005 fire kt wes couple armslength"}, {"datetaken": "2005-07-23 22:32:05", "license": "1", "title": "Curly Fire", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/21/28416020_f97cc08a44_o.jpg", "secret": "f97cc08a44", "media": "photo", "latitude": "53.304210", "id": "28416020", "tags": "2005 party fire favourite pf danehy tccomp034"}, {"datetaken": "2005-07-23 22:35:42", "license": "1", "title": "Danehy 026", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/21/28416031_ce92c1a702_o.jpg", "secret": "ce92c1a702", "media": "photo", "latitude": "53.304210", "id": "28416031", "tags": "danehy party 2005 fire will"}, {"datetaken": "2005-07-23 22:42:42", "license": "1", "title": "Danehy 034", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/21/28416059_959918b720_o.jpg", "secret": "959918b720", "media": "photo", "latitude": "53.304210", "id": "28416059", "tags": "danehy party 2005 fire wes wantondestruction beev"}, {"datetaken": "2005-07-23 22:42:59", "license": "1", "title": "Danehy 036", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/22/28416090_b811f23e36_o.jpg", "secret": "b811f23e36", "media": "photo", "latitude": "53.304210", "id": "28416090", "tags": "danehy party 2005 fire wes wantondestruction beev"}, {"datetaken": "2005-07-23 22:43:53", "license": "1", "title": "Danehy 038", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/21/28416112_4e48bed493_o.jpg", "secret": "4e48bed493", "media": "photo", "latitude": "53.304210", "id": "28416112", "tags": "danehy party 2005 fire wes wantondestruction beev"}, {"datetaken": "2005-07-23 22:45:12", "license": "1", "title": "Will On Fire", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/21/28416130_4841d82a74_o.jpg", "secret": "4841d82a74", "media": "photo", "latitude": "53.304210", "id": "28416130", "tags": "danehy party 2005 fire will"}, {"datetaken": "2005-07-23 22:45:13", "license": "1", "title": "Exploding Fire", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/21/28416158_ed6e2b385d_o.jpg", "secret": "ed6e2b385d", "media": "photo", "latitude": "53.304210", "id": "28416158", "tags": "danehy party 2005 fire"}, {"datetaken": "2005-07-23 22:48:41", "license": "1", "title": "Danehy 048", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/23/28416166_c586d796eb_o.jpg", "secret": "c586d796eb", "media": "photo", "latitude": "53.304210", "id": "28416166", "tags": "danehy party 2005 fire silhouette will frankie hats"}, {"datetaken": "2005-07-23 22:49:02", "license": "1", "title": "Danehy 052", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/21/28416189_8efc963225_o.jpg", "secret": "8efc963225", "media": "photo", "latitude": "53.304210", "id": "28416189", "tags": "2005 party silhouette fire will favourite danehy"}, {"datetaken": "2005-07-23 22:49:43", "license": "1", "title": "Danehy 053", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/23/28416198_09b8cf6d6f_o.jpg", "secret": "09b8cf6d6f", "media": "photo", "latitude": "53.304210", "id": "28416198", "tags": "danehy party 2005 fire silhouette will frankie"}, {"datetaken": "2005-07-23 23:03:33", "license": "1", "title": "Burning Bed", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/22/28416217_29fca06021_o.jpg", "secret": "29fca06021", "media": "photo", "latitude": "53.304210", "id": "28416217", "tags": "danehy party 2005 fire"}, {"datetaken": "2005-07-23 23:04:26", "license": "1", "title": "Burning Bed", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/23/28416260_0023cf28b2_o.jpg", "secret": "0023cf28b2", "media": "photo", "latitude": "53.304210", "id": "28416260", "tags": "2005 party fire favourite pf danehy"}, {"datetaken": "2005-07-24 02:21:21", "license": "1", "title": "Old Men By Fire Number Two", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/23/28784275_5eac5c3f32_o.jpg", "secret": "5eac5c3f32", "media": "photo", "latitude": "53.304210", "id": "28784275", "tags": "danehy 2005 party frankie will fire drink"}, {"datetaken": "2005-07-24 02:21:30", "license": "1", "title": "Camera Shy Wes (or not...)", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/23/28784372_ee76eadde4_o.jpg", "secret": "ee76eadde4", "media": "photo", "latitude": "53.304210", "id": "28784372", "tags": "danehy 2005 party wes"}, {"datetaken": "2005-07-24 02:21:47", "license": "1", "title": "Rather Drunk Lady", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/22/28784305_1806822f2c_o.jpg", "secret": "1806822f2c", "media": "photo", "latitude": "53.304210", "id": "28784305", "tags": "danehy 2005 party drink"}, {"datetaken": "2005-07-24 02:22:15", "license": "1", "title": "Old Men By Fire Number One", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/22/28784226_86b707b94d_o.jpg", "secret": "86b707b94d", "media": "photo", "latitude": "53.304210", "id": "28784226", "tags": "danehy 2005 party frankie will drink"}, {"datetaken": "2005-07-24 02:22:42", "license": "1", "title": "Snug KT", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/21/28784334_5cb9fdc7d6_o.jpg", "secret": "5cb9fdc7d6", "media": "photo", "latitude": "53.304210", "id": "28784334", "tags": "danehy 2005 party kt"}, {"datetaken": "2005-07-24 03:18:58", "license": "1", "title": "Danehy 070", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/23/28416375_3f2c3205fc_o.jpg", "secret": "3f2c3205fc", "media": "photo", "latitude": "53.304210", "id": "28416375", "tags": "danehy party 2005 wes will beev"}, {"datetaken": "2005-07-24 11:00:12", "license": "1", "title": "Comfy Tent", "text": "", "album_id": "1237313", "longitude": "-1.939773", "url_o": "https://farm1.staticflickr.com/22/28416397_a57dac24aa_o.jpg", "secret": "a57dac24aa", "media": "photo", "latitude": "53.304210", "id": "28416397", "tags": "danehy party 2005 wes tent orange"}, {"datetaken": "2005-07-26 15:53:06", "license": "5", "title": "DSCF2252.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28797753_742c30f18b_o.jpg", "secret": "742c30f18b", "media": "photo", "latitude": "0", "id": "28797753", "tags": "blueribbonwinner"}, {"datetaken": "2005-07-26 15:53:14", "license": "5", "title": "DSCF2253.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28798148_8d02394560_o.jpg", "secret": "8d02394560", "media": "photo", "latitude": "0", "id": "28798148", "tags": ""}, {"datetaken": "2005-07-26 15:53:18", "license": "5", "title": "DSCF2254.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28798658_a700f494b6_o.jpg", "secret": "a700f494b6", "media": "photo", "latitude": "0", "id": "28798658", "tags": ""}, {"datetaken": "2005-07-26 15:54:12", "license": "5", "title": "DSCF2255.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28799054_8b9ae3f0bb_o.jpg", "secret": "8b9ae3f0bb", "media": "photo", "latitude": "0", "id": "28799054", "tags": ""}, {"datetaken": "2005-07-26 15:55:02", "license": "5", "title": "DSCF2256.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28799591_bc723d727d_o.jpg", "secret": "bc723d727d", "media": "photo", "latitude": "0", "id": "28799591", "tags": ""}, {"datetaken": "2005-07-26 15:55:47", "license": "5", "title": "DSCF2257.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28800143_f19447159e_o.jpg", "secret": "f19447159e", "media": "photo", "latitude": "0", "id": "28800143", "tags": ""}, {"datetaken": "2005-07-26 15:55:51", "license": "5", "title": "Billige Stimmungsmache", "text": "", "album_id": "649651", "longitude": "11.583784", "url_o": "https://farm1.staticflickr.com/22/28800766_95696f394d_o.jpg", "secret": "95696f394d", "media": "photo", "latitude": "48.130053", "id": "28800766", "tags": "people flyer politics nuclear campaign greenparty deutschesmuseum bananasuit campaigning"}, {"datetaken": "2005-07-26 15:56:25", "license": "5", "title": "DSCF2259.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28801191_eee46eec32_o.jpg", "secret": "eee46eec32", "media": "photo", "latitude": "0", "id": "28801191", "tags": ""}, {"datetaken": "2005-07-26 15:57:04", "license": "5", "title": "DSCF2260.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28801655_c01f17479e_o.jpg", "secret": "c01f17479e", "media": "photo", "latitude": "0", "id": "28801655", "tags": ""}, {"datetaken": "2005-07-26 15:57:30", "license": "5", "title": "DSCF2261.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28802384_c25d954b89_o.jpg", "secret": "c25d954b89", "media": "photo", "latitude": "0", "id": "28802384", "tags": ""}, {"datetaken": "2005-07-26 15:57:53", "license": "5", "title": "DSCF2262.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28803080_60c57cd539_o.jpg", "secret": "60c57cd539", "media": "photo", "latitude": "0", "id": "28803080", "tags": ""}, {"datetaken": "2005-07-26 15:58:13", "license": "5", "title": "DSCF2263.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28803641_95bd0679ec_o.jpg", "secret": "95bd0679ec", "media": "photo", "latitude": "0", "id": "28803641", "tags": ""}, {"datetaken": "2005-07-26 15:58:23", "license": "5", "title": "DSCF2264.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28804256_97f8da5dbd_o.jpg", "secret": "97f8da5dbd", "media": "photo", "latitude": "0", "id": "28804256", "tags": ""}, {"datetaken": "2005-07-26 15:58:35", "license": "5", "title": "DSCF2265.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28804875_6dc22417b5_o.jpg", "secret": "6dc22417b5", "media": "photo", "latitude": "0", "id": "28804875", "tags": ""}, {"datetaken": "2005-07-26 15:58:50", "license": "5", "title": "DSCF2266.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28805356_811ec7ccf0_o.jpg", "secret": "811ec7ccf0", "media": "photo", "latitude": "0", "id": "28805356", "tags": ""}, {"datetaken": "2005-07-26 15:59:04", "license": "5", "title": "DSCF2267.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28805812_21ee3fc30a_o.jpg", "secret": "21ee3fc30a", "media": "photo", "latitude": "0", "id": "28805812", "tags": ""}, {"datetaken": "2005-07-26 15:59:14", "license": "5", "title": "DSCF2268.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28806087_fa5885f90e_o.jpg", "secret": "fa5885f90e", "media": "photo", "latitude": "0", "id": "28806087", "tags": ""}, {"datetaken": "2005-07-26 15:59:18", "license": "5", "title": "DSCF2269.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28806485_94deca195b_o.jpg", "secret": "94deca195b", "media": "photo", "latitude": "0", "id": "28806485", "tags": ""}, {"datetaken": "2005-07-26 15:59:27", "license": "5", "title": "DSCF2270.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28806999_33b9b9f19e_o.jpg", "secret": "33b9b9f19e", "media": "photo", "latitude": "0", "id": "28806999", "tags": ""}, {"datetaken": "2005-07-26 16:02:13", "license": "5", "title": "DSCF2271.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28807415_5f4e918a46_o.jpg", "secret": "5f4e918a46", "media": "photo", "latitude": "0", "id": "28807415", "tags": ""}, {"datetaken": "2005-07-26 16:02:22", "license": "5", "title": "DSCF2272.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28807851_3668b91b0e_o.jpg", "secret": "3668b91b0e", "media": "photo", "latitude": "0", "id": "28807851", "tags": ""}, {"datetaken": "2005-07-26 16:03:29", "license": "5", "title": "DSCF2273.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28808350_d4463bc5d1_o.jpg", "secret": "d4463bc5d1", "media": "photo", "latitude": "0", "id": "28808350", "tags": ""}, {"datetaken": "2005-07-26 16:03:34", "license": "5", "title": "DSCF2274.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28808763_e0f0953fd4_o.jpg", "secret": "e0f0953fd4", "media": "photo", "latitude": "0", "id": "28808763", "tags": ""}, {"datetaken": "2005-07-26 16:03:51", "license": "5", "title": "DSCF2275.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28809175_caffeb30fc_o.jpg", "secret": "caffeb30fc", "media": "photo", "latitude": "0", "id": "28809175", "tags": ""}, {"datetaken": "2005-07-26 16:06:22", "license": "5", "title": "DSCF2276.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28809618_87f14ca6b2_o.jpg", "secret": "87f14ca6b2", "media": "photo", "latitude": "0", "id": "28809618", "tags": ""}, {"datetaken": "2005-07-26 16:06:33", "license": "5", "title": "DSCF2277.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28810077_e7ffd2e11e_o.jpg", "secret": "e7ffd2e11e", "media": "photo", "latitude": "0", "id": "28810077", "tags": ""}, {"datetaken": "2005-07-26 16:11:14", "license": "5", "title": "DSCF2279.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28810464_5431aba2d7_o.jpg", "secret": "5431aba2d7", "media": "photo", "latitude": "0", "id": "28810464", "tags": ""}, {"datetaken": "2005-07-26 16:12:42", "license": "5", "title": "DSCF2280.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28811082_2c3606dc39_o.jpg", "secret": "2c3606dc39", "media": "photo", "latitude": "0", "id": "28811082", "tags": ""}, {"datetaken": "2005-07-26 16:15:13", "license": "5", "title": "DSCF2281.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28811608_ebd6e9e263_o.jpg", "secret": "ebd6e9e263", "media": "photo", "latitude": "0", "id": "28811608", "tags": ""}, {"datetaken": "2005-07-26 16:16:18", "license": "5", "title": "DSCF2282.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28812317_a8e4a81a3d_o.jpg", "secret": "a8e4a81a3d", "media": "photo", "latitude": "0", "id": "28812317", "tags": ""}, {"datetaken": "2005-07-26 16:17:28", "license": "5", "title": "DSCF2283.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28812879_6aae0051ce_o.jpg", "secret": "6aae0051ce", "media": "photo", "latitude": "0", "id": "28812879", "tags": ""}, {"datetaken": "2005-07-26 16:17:33", "license": "5", "title": "DSCF2284.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28813417_338aae1bc8_o.jpg", "secret": "338aae1bc8", "media": "photo", "latitude": "0", "id": "28813417", "tags": ""}, {"datetaken": "2005-07-26 16:17:38", "license": "5", "title": "DSCF2285.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28814014_1366b618b2_o.jpg", "secret": "1366b618b2", "media": "photo", "latitude": "0", "id": "28814014", "tags": ""}, {"datetaken": "2005-07-26 16:17:45", "license": "5", "title": "DSCF2286.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28814618_6206143f6a_o.jpg", "secret": "6206143f6a", "media": "photo", "latitude": "0", "id": "28814618", "tags": ""}, {"datetaken": "2005-07-26 16:18:46", "license": "5", "title": "DSCF2288.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28815273_e31574a920_o.jpg", "secret": "e31574a920", "media": "photo", "latitude": "0", "id": "28815273", "tags": ""}, {"datetaken": "2005-07-26 16:18:51", "license": "5", "title": "DSCF2289.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28815717_5f0147a2e0_o.jpg", "secret": "5f0147a2e0", "media": "photo", "latitude": "0", "id": "28815717", "tags": ""}, {"datetaken": "2005-07-26 16:25:29", "license": "5", "title": "DSCF2290.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28816250_988858a699_o.jpg", "secret": "988858a699", "media": "photo", "latitude": "0", "id": "28816250", "tags": ""}, {"datetaken": "2005-07-26 16:25:33", "license": "5", "title": "DSCF2291.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28816760_efe26b28cc_o.jpg", "secret": "efe26b28cc", "media": "photo", "latitude": "0", "id": "28816760", "tags": ""}, {"datetaken": "2005-07-26 16:26:18", "license": "5", "title": "DSCF2292.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28817348_3e2d176a9d_o.jpg", "secret": "3e2d176a9d", "media": "photo", "latitude": "0", "id": "28817348", "tags": ""}, {"datetaken": "2005-07-26 16:26:54", "license": "5", "title": "DSCF2293.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28818057_ec882d2c4f_o.jpg", "secret": "ec882d2c4f", "media": "photo", "latitude": "0", "id": "28818057", "tags": ""}, {"datetaken": "2005-07-26 16:26:59", "license": "5", "title": "DSCF2294.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28818620_3f55f3693e_o.jpg", "secret": "3f55f3693e", "media": "photo", "latitude": "0", "id": "28818620", "tags": ""}, {"datetaken": "2005-07-26 16:27:09", "license": "5", "title": "DSCF2295.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28819143_6d811e2887_o.jpg", "secret": "6d811e2887", "media": "photo", "latitude": "0", "id": "28819143", "tags": ""}, {"datetaken": "2005-07-26 16:27:15", "license": "5", "title": "DSCF2296.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28819663_7f3a172a27_o.jpg", "secret": "7f3a172a27", "media": "photo", "latitude": "0", "id": "28819663", "tags": ""}, {"datetaken": "2005-07-26 16:27:20", "license": "5", "title": "DSCF2297.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28820074_6bd1c344aa_o.jpg", "secret": "6bd1c344aa", "media": "photo", "latitude": "0", "id": "28820074", "tags": ""}, {"datetaken": "2005-07-26 16:27:29", "license": "5", "title": "DSCF2298.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28820400_a9891b5a47_o.jpg", "secret": "a9891b5a47", "media": "photo", "latitude": "0", "id": "28820400", "tags": ""}, {"datetaken": "2005-07-26 17:50:04", "license": "5", "title": "DSCF2304.JPG", "text": "", "album_id": "649651", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28820984_1bd07fefaa_o.jpg", "secret": "1bd07fefaa", "media": "photo", "latitude": "0", "id": "28820984", "tags": ""}, {"datetaken": "2004-08-26 21:37:45", "license": "1", "title": "Tokyo station", "text": "", "album_id": "5521", "longitude": "139.766092", "url_o": "https://farm1.staticflickr.com/1/269110_ffccba27c9_o.jpg", "secret": "ffccba27c9", "media": "photo", "latitude": "35.682119", "id": "269110", "tags": "japan tokyo station train densha eki"}, {"datetaken": "2004-08-26 21:37:49", "license": "1", "title": "Garrett in Tokyo station", "text": "", "album_id": "5521", "longitude": "139.766092", "url_o": "https://farm1.staticflickr.com/1/269111_9dbd10cdaa_o.jpg", "secret": "9dbd10cdaa", "media": "photo", "latitude": "35.682119", "id": "269111", "tags": "japan tokyo station train densha eki garrett"}, {"datetaken": "2004-08-26 21:37:53", "license": "1", "title": "Nemuru otoko", "text": "", "album_id": "5521", "longitude": "139.766092", "url_o": "https://farm1.staticflickr.com/1/269112_17254d0043_o.jpg", "secret": "17254d0043", "media": "photo", "latitude": "35.682119", "id": "269112", "tags": "japan tokyo shinkansen sleeping man"}, {"datetaken": "2004-08-26 21:37:56", "license": "1", "title": "Ice cream vending machine", "text": "", "album_id": "5521", "longitude": "140.899744", "url_o": "https://farm1.staticflickr.com/1/269114_1e9d8ea65f_o.jpg", "secret": "1e9d8ea65f", "media": "photo", "latitude": "38.260962", "id": "269114", "tags": "japan sendai vending machine garrett"}, {"datetaken": "2004-08-26 21:37:59", "license": "1", "title": "Shinkansen hit and run", "text": "", "album_id": "5521", "longitude": "140.899744", "url_o": "https://farm1.staticflickr.com/1/269115_82dfee4b3f_o.jpg", "secret": "82dfee4b3f", "media": "photo", "latitude": "38.260962", "id": "269115", "tags": "japan sendai shinkansen"}, {"datetaken": "2004-08-26 21:38:03", "license": "1", "title": "Sendai station at night", "text": "", "album_id": "5521", "longitude": "140.899744", "url_o": "https://farm1.staticflickr.com/1/269116_0194bb29ec_o.jpg", "secret": "0194bb29ec", "media": "photo", "latitude": "38.260962", "id": "269116", "tags": "japan sendai station"}, {"datetaken": "2004-08-26 21:38:07", "license": "1", "title": "Sendai station platform exit", "text": "", "album_id": "5521", "longitude": "140.899744", "url_o": "https://farm1.staticflickr.com/1/269117_cfe1f2813d_o.jpg", "secret": "cfe1f2813d", "media": "photo", "latitude": "38.260962", "id": "269117", "tags": "japan sendai station"}, {"datetaken": "2004-08-26 21:38:13", "license": "1", "title": "Empty Sendai station", "text": "", "album_id": "5521", "longitude": "140.899744", "url_o": "https://farm1.staticflickr.com/1/269118_02de5c38d1_o.jpg", "secret": "02de5c38d1", "media": "photo", "latitude": "38.260962", "id": "269118", "tags": "japan sendai station"}, {"datetaken": "2004-08-26 21:38:16", "license": "1", "title": "Downtown Sendai", "text": "", "album_id": "5521", "longitude": "140.898542", "url_o": "https://farm1.staticflickr.com/1/269119_af7f2d8a7d_o.jpg", "secret": "af7f2d8a7d", "media": "photo", "latitude": "38.267769", "id": "269119", "tags": "japan sendai buildings"}, {"datetaken": "2004-08-26 21:38:20", "license": "1", "title": "Hotel Shirahagi", "text": "", "album_id": "5521", "longitude": "140.898542", "url_o": "https://farm1.staticflickr.com/1/269121_30b93c8d8a_o.jpg", "secret": "30b93c8d8a", "media": "photo", "latitude": "38.267769", "id": "269121", "tags": "japan sendai hotel"}, {"datetaken": "2004-08-26 21:38:25", "license": "1", "title": "Zuihoden", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269122_6a1484588b_o.jpg", "secret": "6a1484588b", "media": "photo", "latitude": "0", "id": "269122", "tags": "japan miyagi"}, {"datetaken": "2004-08-26 21:38:28", "license": "1", "title": "Stairway to Zuihoden", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269123_366fb94afa_o.jpg", "secret": "366fb94afa", "media": "photo", "latitude": "0", "id": "269123", "tags": "japan miyagi"}, {"datetaken": "2004-08-26 21:38:32", "license": "1", "title": "Zuihoden inner sanctum", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269124_88fadaacfd_o.jpg", "secret": "88fadaacfd", "media": "photo", "latitude": "0", "id": "269124", "tags": "japan miyagi"}, {"datetaken": "2004-08-26 21:38:37", "license": "1", "title": "Ramen in Miyagi", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269125_62f5083b83_o.jpg", "secret": "62f5083b83", "media": "photo", "latitude": "0", "id": "269125", "tags": "japan miyagi ramen"}, {"datetaken": "2004-08-26 21:38:39", "license": "1", "title": "Statue on Sendai overlook", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269127_cf49a57448_o.jpg", "secret": "cf49a57448", "media": "photo", "latitude": "0", "id": "269127", "tags": "japan sendai statue"}, {"datetaken": "2004-08-26 21:38:43", "license": "1", "title": "Overlooking Sendai", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269128_37f8ef173f_o.jpg", "secret": "37f8ef173f", "media": "photo", "latitude": "0", "id": "269128", "tags": "japan sendai"}, {"datetaken": "2004-08-26 21:38:47", "license": "1", "title": "Don't overlook Sendai", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269129_4ed2c1ea88_o.jpg", "secret": "4ed2c1ea88", "media": "photo", "latitude": "0", "id": "269129", "tags": "japan sendai"}, {"datetaken": "2004-08-26 21:38:53", "license": "1", "title": "Miyagi festival grounds", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269130_bfe8e77249_o.jpg", "secret": "bfe8e77249", "media": "photo", "latitude": "0", "id": "269130", "tags": "japan miyagi david"}, {"datetaken": "2004-08-26 21:38:56", "license": "1", "title": "Sendai loves Garrett", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269131_0dea2fc6e0_o.jpg", "secret": "0dea2fc6e0", "media": "photo", "latitude": "0", "id": "269131", "tags": "japan sendai garrett"}, {"datetaken": "2004-08-26 21:38:59", "license": "1", "title": "Sendai square", "text": "", "album_id": "5521", "longitude": "140.895023", "url_o": "https://farm1.staticflickr.com/1/269132_b03b1f9088_o.jpg", "secret": "b03b1f9088", "media": "photo", "latitude": "38.253279", "id": "269132", "tags": "japan sendai"}, {"datetaken": "2004-08-26 21:39:05", "license": "1", "title": "Hanamaki", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269134_d650488144_o.jpg", "secret": "d650488144", "media": "photo", "latitude": "0", "id": "269134", "tags": "japan iwate garrett"}, {"datetaken": "2004-08-26 21:39:09", "license": "1", "title": "Shinkansen at Morioka station", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269136_ad565a3fb9_o.jpg", "secret": "ad565a3fb9", "media": "photo", "latitude": "0", "id": "269136", "tags": "japan morioka station shinkansen"}, {"datetaken": "2004-08-26 21:39:13", "license": "1", "title": "Low clouds in Morioka", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269137_0908d727b3_o.jpg", "secret": "0908d727b3", "media": "photo", "latitude": "0", "id": "269137", "tags": "japan morioka clouds"}, {"datetaken": "2004-08-26 21:39:17", "license": "1", "title": "Iwate-ken countryside", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269138_c496229611_o.jpg", "secret": "c496229611", "media": "photo", "latitude": "0", "id": "269138", "tags": "japan iwate field"}, {"datetaken": "2004-08-26 21:39:22", "license": "1", "title": "Nyuto Onsen Village", "text": "", "album_id": "5521", "longitude": "140.778379", "url_o": "https://farm1.staticflickr.com/1/269139_1f89657e74_o.jpg", "secret": "1f89657e74", "media": "photo", "latitude": "39.805305", "id": "269139", "tags": "japan onsen"}, {"datetaken": "2004-08-26 21:39:26", "license": "1", "title": "Nyuto fare", "text": "", "album_id": "5521", "longitude": "140.778379", "url_o": "https://farm1.staticflickr.com/1/269142_353d7ef938_o.jpg", "secret": "353d7ef938", "media": "photo", "latitude": "39.805305", "id": "269142", "tags": "japan food"}, {"datetaken": "2004-08-26 21:39:31", "license": "1", "title": "Nyuto bath", "text": "", "album_id": "5521", "longitude": "140.778379", "url_o": "https://farm1.staticflickr.com/1/269143_ae2e4cb2b7_o.jpg", "secret": "ae2e4cb2b7", "media": "photo", "latitude": "39.805305", "id": "269143", "tags": "japan bath onsen nyuto tsurunoyu"}, {"datetaken": "2004-08-26 21:39:34", "license": "1", "title": "Outside pools", "text": "", "album_id": "5521", "longitude": "140.778379", "url_o": "https://farm1.staticflickr.com/1/269145_ac0d2a31fa_o.jpg", "secret": "ac0d2a31fa", "media": "photo", "latitude": "39.805305", "id": "269145", "tags": "japan onsen bath"}, {"datetaken": "2004-08-26 21:39:38", "license": "1", "title": "Onsen bathing", "text": "", "album_id": "5521", "longitude": "140.778379", "url_o": "https://farm1.staticflickr.com/1/269147_454317cecb_o.jpg", "secret": "454317cecb", "media": "photo", "latitude": "39.805305", "id": "269147", "tags": "japan onsen bath christian"}, {"datetaken": "2004-08-26 21:39:43", "license": "1", "title": "Nyuto Onsen stream", "text": "", "album_id": "5521", "longitude": "140.778379", "url_o": "https://farm1.staticflickr.com/1/269148_717df71e5d_o.jpg", "secret": "717df71e5d", "media": "photo", "latitude": "39.805305", "id": "269148", "tags": "japan onsen"}, {"datetaken": "2004-08-26 21:39:47", "license": "1", "title": "Garrett getting down, meal-wise", "text": "", "album_id": "5521", "longitude": "140.778379", "url_o": "https://farm1.staticflickr.com/1/269150_7a62fbd931_o.jpg", "secret": "7a62fbd931", "media": "photo", "latitude": "39.805305", "id": "269150", "tags": "japan food garrett"}, {"datetaken": "2004-08-26 21:39:52", "license": "1", "title": "From whence we came", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269151_e7ebcba9db_o.jpg", "secret": "e7ebcba9db", "media": "photo", "latitude": "0", "id": "269151", "tags": "japan train"}, {"datetaken": "2004-08-26 21:39:56", "license": "1", "title": "Some ofuro in the middle of Akita-ken", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269153_97b75a7b20_o.jpg", "secret": "97b75a7b20", "media": "photo", "latitude": "0", "id": "269153", "tags": "japan akitaken"}, {"datetaken": "2004-08-26 21:39:59", "license": "1", "title": "Surfbreaker production area", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269156_51516ec424_o.jpg", "secret": "51516ec424", "media": "photo", "latitude": "0", "id": "269156", "tags": "japan surfbreaker"}, {"datetaken": "2004-08-26 21:40:04", "license": "1", "title": "Koganezaki Furoshi Onsen", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269157_ef8840783f_o.jpg", "secret": "ef8840783f", "media": "photo", "latitude": "0", "id": "269157", "tags": "japan onsen"}, {"datetaken": "2004-08-26 21:40:08", "license": "1", "title": "Seaside baths", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269158_fcc100c704_o.jpg", "secret": "fcc100c704", "media": "photo", "latitude": "0", "id": "269158", "tags": "japan akita"}, {"datetaken": "2004-08-26 21:40:13", "license": "1", "title": "Koganezaki meal", "text": "", "album_id": "5521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/269159_54e68bb256_o.jpg", "secret": "54e68bb256", "media": "photo", "latitude": "0", "id": "269159", "tags": "japan food"}, {"datetaken": "2004-12-25 12:29:26", "license": "1", "title": "Christmas tree and fireplace", "text": "", "album_id": "63789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2544681_a4dbab979b_o.jpg", "secret": "a4dbab979b", "media": "photo", "latitude": "0", "id": "2544681", "tags": "christmas 2004 tree fireplace christmas2004"}, {"datetaken": "2004-12-25 12:40:19", "license": "1", "title": "Piano in dining area", "text": "", "album_id": "63789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2544693_b6fa813ef4_o.jpg", "secret": "b6fa813ef4", "media": "photo", "latitude": "0", "id": "2544693", "tags": "christmas 2004 piano diningroom"}, {"datetaken": "2004-12-25 12:55:39", "license": "1", "title": "Cat in tree", "text": "", "album_id": "63789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2544709_4f13abf7b1_o.jpg", "secret": "4f13abf7b1", "media": "photo", "latitude": "0", "id": "2544709", "tags": "christmas 2004 cat tree brandonhanvey brandon"}, {"datetaken": "2004-12-25 12:55:57", "license": "1", "title": "Cat in tree, close-up", "text": "", "album_id": "63789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2544717_acec3db37c_o.jpg", "secret": "acec3db37c", "media": "photo", "latitude": "0", "id": "2544717", "tags": "christmas 2004 cat tree brandonhanvey brandon nutmeg"}, {"datetaken": "2004-12-25 12:58:17", "license": "1", "title": "Brownie squares", "text": "", "album_id": "63789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2544725_1b25c50372_o.jpg", "secret": "1b25c50372", "media": "photo", "latitude": "0", "id": "2544725", "tags": "christmas food 2004 cookies foodporn homecooked brownies"}, {"datetaken": "2004-12-25 13:28:39", "license": "1", "title": "Dustin & baby Mira", "text": "", "album_id": "63789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2544790_c7ca63f146_o.jpg", "secret": "c7ca63f146", "media": "photo", "latitude": "0", "id": "2544790", "tags": "christmas 2004 baby mira dustin hanvey"}, {"datetaken": "2004-12-25 13:28:53", "license": "1", "title": "Fire keeps Brandon warm", "text": "", "album_id": "63789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2544796_2f2f501004_o.jpg", "secret": "2f2f501004", "media": "photo", "latitude": "0", "id": "2544796", "tags": "christmas 2004 tree brandon hanvey"}, {"datetaken": "2004-12-25 18:51:06", "license": "1", "title": "Sweet potato pie", "text": "", "album_id": "63789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2544803_75f8abf77f_o.jpg", "secret": "75f8abf77f", "media": "photo", "latitude": "0", "id": "2544803", "tags": "christmas food 2004 homecooked"}, {"datetaken": "2004-12-25 19:25:42", "license": "1", "title": "Me", "text": "", "album_id": "63789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2544820_bed7c72cd7_o.jpg", "secret": "bed7c72cd7", "media": "photo", "latitude": "0", "id": "2544820", "tags": "christmas 2004 nicole lee nicolelee"}, {"datetaken": "2004-12-25 19:25:49", "license": "1", "title": "Brandon", "text": "", "album_id": "63789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2544829_9faf069bda_o.jpg", "secret": "9faf069bda", "media": "photo", "latitude": "0", "id": "2544829", "tags": "christmas 2004 brandon hanvey"}, {"datetaken": "2004-12-25 19:29:11", "license": "1", "title": "Mira gets a feeding from mommy Yulinda", "text": "", "album_id": "63789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2544864_560bcba14f_o.jpg", "secret": "560bcba14f", "media": "photo", "latitude": "0", "id": "2544864", "tags": "christmas 2004 baby mira hanvey yulinda"}, {"datetaken": "2004-12-25 19:29:46", "license": "1", "title": "Brandon & I", "text": "", "album_id": "63789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2544851_b36595f3cd_o.jpg", "secret": "b36595f3cd", "media": "photo", "latitude": "0", "id": "2544851", "tags": "christmas 2004 brandon hanvey nicole lee nicolelee"}, {"datetaken": "2004-12-25 19:37:30", "license": "1", "title": "Flowery skirt", "text": "", "album_id": "63789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2544892_85c6dc64a6_o.jpg", "secret": "85c6dc64a6", "media": "photo", "latitude": "0", "id": "2544892", "tags": "christmas 2004 skirts"}, {"datetaken": "2004-12-25 20:03:34", "license": "1", "title": "Brandon & I", "text": "", "album_id": "63789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2544878_17292778b9_o.jpg", "secret": "17292778b9", "media": "photo", "latitude": "0", "id": "2544878", "tags": "christmas 2004 brandon nicole lee hanvey nicolelee"}, {"datetaken": "2004-12-25 20:38:25", "license": "1", "title": "Taffy grooming herself", "text": "", "album_id": "63789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2544909_08e7784e28_o.jpg", "secret": "08e7784e28", "media": "photo", "latitude": "0", "id": "2544909", "tags": "christmas 2004 cats"}, {"datetaken": "2007-07-22 03:24:12", "license": "1", "title": "index001", "text": "", "album_id": "72157600940028059", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1376/865188461_8c62048c06_o.jpg", "secret": "3bde726bff", "media": "photo", "latitude": "0", "id": "865188461", "tags": ""}, {"datetaken": "2007-07-22 03:24:12", "license": "1", "title": "index002", "text": "", "album_id": "72157600940028059", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1258/866045006_7c99079a8e_o.jpg", "secret": "d466b657af", "media": "photo", "latitude": "0", "id": "866045006", "tags": ""}, {"datetaken": "2007-07-22 03:24:13", "license": "1", "title": "index003", "text": "", "album_id": "72157600940028059", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1052/866045062_1ae1704079_o.jpg", "secret": "f2b3d1989d", "media": "photo", "latitude": "0", "id": "866045062", "tags": ""}, {"datetaken": "2007-07-22 03:24:13", "license": "1", "title": "lomo party", "text": "", "album_id": "72157600940028059", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1137/865188579_f3e240feda_o.jpg", "secret": "adeba30874", "media": "photo", "latitude": "0", "id": "865188579", "tags": ""}, {"datetaken": "2007-07-22 03:24:14", "license": "1", "title": "place001", "text": "", "album_id": "72157600940028059", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1208/865188621_a030d4a670_o.jpg", "secret": "e6f67e904c", "media": "photo", "latitude": "0", "id": "865188621", "tags": ""}, {"datetaken": "2007-07-22 03:24:15", "license": "1", "title": "place002", "text": "", "album_id": "72157600940028059", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1105/866045176_568c5359ca_o.jpg", "secret": "8f51f02ed0", "media": "photo", "latitude": "0", "id": "866045176", "tags": ""}, {"datetaken": "2007-07-22 03:24:15", "license": "1", "title": "place003", "text": "", "album_id": "72157600940028059", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1110/866045220_0b1c5a87a0_o.jpg", "secret": "84ded76d22", "media": "photo", "latitude": "0", "id": "866045220", "tags": ""}, {"datetaken": "2007-07-22 03:24:16", "license": "1", "title": "place004", "text": "", "album_id": "72157600940028059", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1042/866045248_56c199c09e_o.jpg", "secret": "435b1b2452", "media": "photo", "latitude": "0", "id": "866045248", "tags": ""}, {"datetaken": "2007-07-22 03:24:16", "license": "1", "title": "\u5317\u7f8e\u9928001", "text": "", "album_id": "72157600940028059", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1322/866045298_2610432d4e_o.jpg", "secret": "56c199c09e", "media": "photo", "latitude": "0", "id": "866045298", "tags": ""}, {"datetaken": "2007-07-22 03:24:17", "license": "1", "title": "\u95dc\u6e21001", "text": "", "album_id": "72157600940028059", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1338/865188769_47c9b2426b_o.jpg", "secret": "1720f405bc", "media": "photo", "latitude": "0", "id": "865188769", "tags": ""}, {"datetaken": "2007-07-22 03:24:17", "license": "1", "title": "\u95dc\u6e21002", "text": "", "album_id": "72157600940028059", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1269/865188815_7a276dfc47_o.jpg", "secret": "4fc3895f5d", "media": "photo", "latitude": "0", "id": "865188815", "tags": ""}, {"datetaken": "2007-07-22 03:24:18", "license": "1", "title": "LOMO-LCA", "text": "", "album_id": "72157600940028059", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1114/865188851_f35c8fdfb9_o.jpg", "secret": "ba99aff7d5", "media": "photo", "latitude": "0", "id": "865188851", "tags": ""}, {"datetaken": "2003-07-26 00:00:00", "license": "4", "title": "mDSCN1546", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22769512_fab73fa37f_o.jpg", "secret": "fab73fa37f", "media": "photo", "latitude": "0", "id": "22769512", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:01", "license": "4", "title": "mDSCN1545", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22769501_e84809cca8_o.jpg", "secret": "e84809cca8", "media": "photo", "latitude": "0", "id": "22769501", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:02", "license": "4", "title": "mDSCN1542", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22769493_895031675d_o.jpg", "secret": "895031675d", "media": "photo", "latitude": "0", "id": "22769493", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:03", "license": "4", "title": "mDSCN1539", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22769489_87cab22ba1_o.jpg", "secret": "87cab22ba1", "media": "photo", "latitude": "0", "id": "22769489", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:04", "license": "4", "title": "mDSCN1538", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22769478_4231456c5a_o.jpg", "secret": "4231456c5a", "media": "photo", "latitude": "0", "id": "22769478", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:05", "license": "4", "title": "mDSCN1534", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/22769474_df60818650_o.jpg", "secret": "df60818650", "media": "photo", "latitude": "0", "id": "22769474", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:06", "license": "4", "title": "mDSCN1532", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22769467_f04e3a9e4f_o.jpg", "secret": "f04e3a9e4f", "media": "photo", "latitude": "0", "id": "22769467", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:07", "license": "4", "title": "mDSCN1531", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22769456_863490b470_o.jpg", "secret": "863490b470", "media": "photo", "latitude": "0", "id": "22769456", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:08", "license": "4", "title": "mDSCN1527", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22769449_99c0245ad0_o.jpg", "secret": "99c0245ad0", "media": "photo", "latitude": "0", "id": "22769449", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:09", "license": "4", "title": "mDSCN1526", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22769439_338bc114c2_o.jpg", "secret": "338bc114c2", "media": "photo", "latitude": "0", "id": "22769439", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:10", "license": "4", "title": "mDSCN1525", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22769428_e73f8209f6_o.jpg", "secret": "e73f8209f6", "media": "photo", "latitude": "0", "id": "22769428", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:11", "license": "4", "title": "mDSCN1524", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22769423_218aa13b64_o.jpg", "secret": "218aa13b64", "media": "photo", "latitude": "0", "id": "22769423", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:12", "license": "4", "title": "mDSCN1521", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22769417_84ac6561b0_o.jpg", "secret": "84ac6561b0", "media": "photo", "latitude": "0", "id": "22769417", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:13", "license": "4", "title": "mDSCN1519", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22769413_d68626dcb6_o.jpg", "secret": "d68626dcb6", "media": "photo", "latitude": "0", "id": "22769413", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:14", "license": "4", "title": "mDSCN1518", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22769409_180a0aba2f_o.jpg", "secret": "180a0aba2f", "media": "photo", "latitude": "0", "id": "22769409", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:15", "license": "4", "title": "mDSCN1517", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22769399_7e46079fdb_o.jpg", "secret": "7e46079fdb", "media": "photo", "latitude": "0", "id": "22769399", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:16", "license": "4", "title": "mDSCN1516", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22769377_8171c67b79_o.jpg", "secret": "8171c67b79", "media": "photo", "latitude": "0", "id": "22769377", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:17", "license": "4", "title": "mDSCN1515", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22769375_5364824473_o.jpg", "secret": "5364824473", "media": "photo", "latitude": "0", "id": "22769375", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:18", "license": "4", "title": "mDSCN1514", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22769366_e759859c8c_o.jpg", "secret": "e759859c8c", "media": "photo", "latitude": "0", "id": "22769366", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:19", "license": "4", "title": "mDSCN1513", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22769355_f943917a1b_o.jpg", "secret": "f943917a1b", "media": "photo", "latitude": "0", "id": "22769355", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:20", "license": "4", "title": "mDSCN1512", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22769351_d9fb664d9f_o.jpg", "secret": "d9fb664d9f", "media": "photo", "latitude": "0", "id": "22769351", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:21", "license": "4", "title": "mDSCN1510", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22769349_4c20bc9797_o.jpg", "secret": "4c20bc9797", "media": "photo", "latitude": "0", "id": "22769349", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:22", "license": "4", "title": "mDSCN1509", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22769346_b7d4a5b94e_o.jpg", "secret": "b7d4a5b94e", "media": "photo", "latitude": "0", "id": "22769346", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:23", "license": "4", "title": "mDSCN1508", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/22769342_a4bf83b013_o.jpg", "secret": "a4bf83b013", "media": "photo", "latitude": "0", "id": "22769342", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:24", "license": "4", "title": "mDSCN1507", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22769337_411a162779_o.jpg", "secret": "411a162779", "media": "photo", "latitude": "0", "id": "22769337", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:25", "license": "4", "title": "mDSCN1506", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22769329_1e07c32afc_o.jpg", "secret": "1e07c32afc", "media": "photo", "latitude": "0", "id": "22769329", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:26", "license": "4", "title": "mDSCN1504", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22769326_5ba5c7fd47_o.jpg", "secret": "5ba5c7fd47", "media": "photo", "latitude": "0", "id": "22769326", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:27", "license": "4", "title": "mDSCN1502", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22769322_af1ca348f8_o.jpg", "secret": "af1ca348f8", "media": "photo", "latitude": "0", "id": "22769322", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:28", "license": "4", "title": "mDSCN1501", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22769319_968601e491_o.jpg", "secret": "968601e491", "media": "photo", "latitude": "0", "id": "22769319", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:29", "license": "4", "title": "mDSCN1500", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22769315_0973a61f4f_o.jpg", "secret": "0973a61f4f", "media": "photo", "latitude": "0", "id": "22769315", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:30", "license": "4", "title": "mDSCN1498", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22769307_3e29016cd8_o.jpg", "secret": "3e29016cd8", "media": "photo", "latitude": "0", "id": "22769307", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:31", "license": "4", "title": "mDSCN1497", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22769303_8d3b86b196_o.jpg", "secret": "8d3b86b196", "media": "photo", "latitude": "0", "id": "22769303", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:32", "license": "4", "title": "mDSCN1496", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22769293_ab23594ec3_o.jpg", "secret": "ab23594ec3", "media": "photo", "latitude": "0", "id": "22769293", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:33", "license": "4", "title": "mDSCN1495", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22769288_36f6634617_o.jpg", "secret": "36f6634617", "media": "photo", "latitude": "0", "id": "22769288", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:34", "license": "4", "title": "mDSCN1494", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22769277_c4d97e4b81_o.jpg", "secret": "c4d97e4b81", "media": "photo", "latitude": "0", "id": "22769277", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:35", "license": "4", "title": "mDSCN1493", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/22769274_7c427e78d7_o.jpg", "secret": "7c427e78d7", "media": "photo", "latitude": "0", "id": "22769274", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:36", "license": "4", "title": "mDSCN1492", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22769266_6496fa1d34_o.jpg", "secret": "6496fa1d34", "media": "photo", "latitude": "0", "id": "22769266", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:37", "license": "4", "title": "mDSCN1491", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22769263_2a4e05bc13_o.jpg", "secret": "2a4e05bc13", "media": "photo", "latitude": "0", "id": "22769263", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:38", "license": "4", "title": "mDSCN1490", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22769257_d39c26332e_o.jpg", "secret": "d39c26332e", "media": "photo", "latitude": "0", "id": "22769257", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:39", "license": "4", "title": "mDSCN1489", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/22769251_572183fe36_o.jpg", "secret": "572183fe36", "media": "photo", "latitude": "0", "id": "22769251", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:40", "license": "4", "title": "mDSCN1487", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22769246_30a7e29e89_o.jpg", "secret": "30a7e29e89", "media": "photo", "latitude": "0", "id": "22769246", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:41", "license": "4", "title": "mDSCN1486", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22769242_8d04bbf3ea_o.jpg", "secret": "8d04bbf3ea", "media": "photo", "latitude": "0", "id": "22769242", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:42", "license": "4", "title": "mDSCN1485", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22769238_bba8641d48_o.jpg", "secret": "bba8641d48", "media": "photo", "latitude": "0", "id": "22769238", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:43", "license": "4", "title": "mDSCN1484", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/22769226_dc22881278_o.jpg", "secret": "dc22881278", "media": "photo", "latitude": "0", "id": "22769226", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:44", "license": "4", "title": "mDSCN1481", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22769215_6c02a12ac7_o.jpg", "secret": "6c02a12ac7", "media": "photo", "latitude": "0", "id": "22769215", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:45", "license": "4", "title": "mDSCN1480", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22769205_f298d9e65a_o.jpg", "secret": "f298d9e65a", "media": "photo", "latitude": "0", "id": "22769205", "tags": "toga togaparty"}, {"datetaken": "2003-07-26 00:00:46", "license": "4", "title": "mDSCN1478", "text": "", "album_id": "525776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/22769193_34c4722179_o.jpg", "secret": "34c4722179", "media": "photo", "latitude": "0", "id": "22769193", "tags": "toga togaparty"}, {"datetaken": "2005-07-29 10:54:05", "license": "2", "title": "Gunny, Me and Lee", "text": "", "album_id": "667714", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29713746_ed91db19f0_o.jpg", "secret": "ed91db19f0", "media": "photo", "latitude": "0", "id": "29713746", "tags": "mikoshi 31 july 05"}, {"datetaken": "2005-07-29 11:30:14", "license": "2", "title": "Gunny and Lee", "text": "", "album_id": "667714", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29713747_d03346e103_o.jpg", "secret": "d03346e103", "media": "photo", "latitude": "0", "id": "29713747", "tags": "mikoshi 31 july 05"}, {"datetaken": "2005-07-29 11:35:45", "license": "2", "title": "1st Stop", "text": "", "album_id": "667714", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29713748_e68fd296fb_o.jpg", "secret": "e68fd296fb", "media": "photo", "latitude": "0", "id": "29713748", "tags": "mikoshi 31 july 05"}, {"datetaken": "2005-07-29 12:06:21", "license": "2", "title": "Stop in front of the shrine", "text": "", "album_id": "667714", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29713750_d0ecddd6dd_o.jpg", "secret": "d0ecddd6dd", "media": "photo", "latitude": "0", "id": "29713750", "tags": "mikoshi 31 july 05"}, {"datetaken": "2005-07-29 12:06:21", "license": "2", "title": "Party at the Shrine", "text": "", "album_id": "667714", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29855438_72a8a5aa59_o.jpg", "secret": "72a8a5aa59", "media": "photo", "latitude": "0", "id": "29855438", "tags": "mikoshi 31 july 05"}, {"datetaken": "2005-07-29 12:31:56", "license": "2", "title": "Gunny, Lee, and I", "text": "", "album_id": "667714", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29713751_fbbb1c26e3_o.jpg", "secret": "fbbb1c26e3", "media": "photo", "latitude": "0", "id": "29713751", "tags": "mikoshi 31 july 05"}, {"datetaken": "2005-07-29 12:35:33", "license": "2", "title": "Carrying Mikoshi 2", "text": "", "album_id": "667714", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29855437_95043d9b17_o.jpg", "secret": "95043d9b17", "media": "photo", "latitude": "0", "id": "29855437", "tags": "mikoshi 31 july 05"}, {"datetaken": "2005-07-29 12:35:33", "license": "2", "title": "Carrying the Mikoshi 1", "text": "", "album_id": "667714", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29713749_fc94580663_o.jpg", "secret": "fc94580663", "media": "photo", "latitude": "0", "id": "29713749", "tags": "mikoshi 31 july 05"}, {"datetaken": "2005-07-29 12:36:18", "license": "2", "title": "Carrying Mikoshi 3", "text": "", "album_id": "667714", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29855439_b8c5e034e5_o.jpg", "secret": "b8c5e034e5", "media": "photo", "latitude": "0", "id": "29855439", "tags": "mikoshi 31 july 05"}, {"datetaken": "2005-07-29 12:40:37", "license": "2", "title": "Carrying Mikoshi 4", "text": "", "album_id": "667714", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29855440_3500896d52_o.jpg", "secret": "3500896d52", "media": "photo", "latitude": "0", "id": "29855440", "tags": "mikoshi 31 july 05"}, {"datetaken": "2005-07-29 14:15:31", "license": "2", "title": "Gunny and Lee Carrying the Mikoshi", "text": "", "album_id": "667714", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29855441_d687df5d4d_o.jpg", "secret": "d687df5d4d", "media": "photo", "latitude": "0", "id": "29855441", "tags": "mikoshi 31 july 05"}, {"datetaken": "2005-07-29 14:24:19", "license": "2", "title": "Kompai!", "text": "", "album_id": "667714", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29855442_71fe2791bf_o.jpg", "secret": "71fe2791bf", "media": "photo", "latitude": "0", "id": "29855442", "tags": "mikoshi 31 july 05"}, {"datetaken": "2005-07-30 11:57:20", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29656354_d731de2c44_o.jpg", "secret": "d731de2c44", "media": "photo", "latitude": "0", "id": "29656354", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 11:58:18", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29655673_0ca4b39fc0_o.jpg", "secret": "0ca4b39fc0", "media": "photo", "latitude": "0", "id": "29655673", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 11:59:49", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29654612_3496fe2622_o.jpg", "secret": "3496fe2622", "media": "photo", "latitude": "0", "id": "29654612", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:01:11", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29654533_968cbc963c_o.jpg", "secret": "968cbc963c", "media": "photo", "latitude": "0", "id": "29654533", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:02:30", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29654356_fa68caecfd_o.jpg", "secret": "fa68caecfd", "media": "photo", "latitude": "0", "id": "29654356", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:03:10", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29654165_1a450aee99_o.jpg", "secret": "1a450aee99", "media": "photo", "latitude": "0", "id": "29654165", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:03:50", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29653751_3b790a503a_o.jpg", "secret": "3b790a503a", "media": "photo", "latitude": "0", "id": "29653751", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:06:53", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29656562_6761b59bc3_o.jpg", "secret": "6761b59bc3", "media": "photo", "latitude": "0", "id": "29656562", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:08:00", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29656397_eb312f4b1a_o.jpg", "secret": "eb312f4b1a", "media": "photo", "latitude": "0", "id": "29656397", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:08:42", "license": "3", "title": "DSC00783", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29655826_64e6fd8ea0_o.jpg", "secret": "64e6fd8ea0", "media": "photo", "latitude": "0", "id": "29655826", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:09:20", "license": "3", "title": "DSC00782", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29655724_5f3898ccc9_o.jpg", "secret": "5f3898ccc9", "media": "photo", "latitude": "0", "id": "29655724", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:09:56", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29655592_4584c199f8_o.jpg", "secret": "4584c199f8", "media": "photo", "latitude": "0", "id": "29655592", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:12:15", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29655303_52c38ee72f_o.jpg", "secret": "52c38ee72f", "media": "photo", "latitude": "0", "id": "29655303", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:12:48", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29655222_1296588e1a_o.jpg", "secret": "1296588e1a", "media": "photo", "latitude": "0", "id": "29655222", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:14:53", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29655109_6a61b061b8_o.jpg", "secret": "6a61b061b8", "media": "photo", "latitude": "0", "id": "29655109", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:16:14", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29655036_1300b1391e_o.jpg", "secret": "1300b1391e", "media": "photo", "latitude": "0", "id": "29655036", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:17:19", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29654961_450de1261a_o.jpg", "secret": "450de1261a", "media": "photo", "latitude": "0", "id": "29654961", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:18:12", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29654851_31af4ba85f_o.jpg", "secret": "31af4ba85f", "media": "photo", "latitude": "0", "id": "29654851", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:18:59", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29654768_e59bdd9398_o.jpg", "secret": "e59bdd9398", "media": "photo", "latitude": "0", "id": "29654768", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:19:56", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29654690_6a52a26f5c_o.jpg", "secret": "6a52a26f5c", "media": "photo", "latitude": "0", "id": "29654690", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:21:49", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29653669_fd7fddc92e_o.jpg", "secret": "fd7fddc92e", "media": "photo", "latitude": "0", "id": "29653669", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:23:13", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29653823_785d5f5705_o.jpg", "secret": "785d5f5705", "media": "photo", "latitude": "0", "id": "29653823", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:24:03", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29653928_f93d44bd2d_o.jpg", "secret": "f93d44bd2d", "media": "photo", "latitude": "0", "id": "29653928", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:24:32", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29653984_0e05701508_o.jpg", "secret": "0e05701508", "media": "photo", "latitude": "0", "id": "29653984", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:25:03", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29654036_4ba985a12d_o.jpg", "secret": "4ba985a12d", "media": "photo", "latitude": "0", "id": "29654036", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:25:41", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29654094_1979f52e4c_o.jpg", "secret": "1979f52e4c", "media": "photo", "latitude": "0", "id": "29654094", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:26:46", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29654214_9e419a0f5d_o.jpg", "secret": "9e419a0f5d", "media": "photo", "latitude": "0", "id": "29654214", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:27:17", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29654270_d6e961ce6c_o.jpg", "secret": "d6e961ce6c", "media": "photo", "latitude": "0", "id": "29654270", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:28:27", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29654431_978ad07403_o.jpg", "secret": "978ad07403", "media": "photo", "latitude": "0", "id": "29654431", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:31:55", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29654912_26d1bab0c7_o.jpg", "secret": "26d1bab0c7", "media": "photo", "latitude": "0", "id": "29654912", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:35:47", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29655377_c0df354f3c_o.jpg", "secret": "c0df354f3c", "media": "photo", "latitude": "0", "id": "29655377", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:37:02", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29655520_64fe763d2b_o.jpg", "secret": "64fe763d2b", "media": "photo", "latitude": "0", "id": "29655520", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:39:57", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29655924_311f812c08_o.jpg", "secret": "311f812c08", "media": "photo", "latitude": "0", "id": "29655924", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:40:38", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29656027_55a9f7d67c_o.jpg", "secret": "55a9f7d67c", "media": "photo", "latitude": "0", "id": "29656027", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:41:17", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29656127_713b8ff0fb_o.jpg", "secret": "713b8ff0fb", "media": "photo", "latitude": "0", "id": "29656127", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:41:45", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29656180_34b5ad5eac_o.jpg", "secret": "34b5ad5eac", "media": "photo", "latitude": "0", "id": "29656180", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:42:31", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29656289_f123fc1421_o.jpg", "secret": "f123fc1421", "media": "photo", "latitude": "0", "id": "29656289", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:44:02", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29656464_2d59d78156_o.jpg", "secret": "2d59d78156", "media": "photo", "latitude": "0", "id": "29656464", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:45:11", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29656614_b24e43f5b2_o.jpg", "secret": "b24e43f5b2", "media": "photo", "latitude": "0", "id": "29656614", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:45:46", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29656670_00c4b29d76_o.jpg", "secret": "00c4b29d76", "media": "photo", "latitude": "0", "id": "29656670", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-07-30 12:46:23", "license": "3", "title": "Sarah's Birthday", "text": "", "album_id": "666831", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29656747_ca34bedd72_o.jpg", "secret": "ca34bedd72", "media": "photo", "latitude": "0", "id": "29656747", "tags": "frankie bennys restauraunt birthday party food drinks drunk pissed"}, {"datetaken": "2005-05-28 18:03:47", "license": "4", "title": "IMG_0708", "text": "", "album_id": "400403", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16763474_cf11fb24d4_o.jpg", "secret": "cf11fb24d4", "media": "photo", "latitude": "0", "id": "16763474", "tags": "party"}, {"datetaken": "2005-05-28 18:03:57", "license": "4", "title": "IMG_0709", "text": "", "album_id": "400403", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16763542_cdcf6f5d3f_o.jpg", "secret": "cdcf6f5d3f", "media": "photo", "latitude": "0", "id": "16763542", "tags": "party"}, {"datetaken": "2005-05-28 18:04:05", "license": "4", "title": "IMG_0710", "text": "", "album_id": "400403", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16763378_3fc194240b_o.jpg", "secret": "3fc194240b", "media": "photo", "latitude": "0", "id": "16763378", "tags": "party"}, {"datetaken": "2005-05-28 18:04:13", "license": "4", "title": "IMG_0711", "text": "", "album_id": "400403", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16763387_696c2232ff_o.jpg", "secret": "696c2232ff", "media": "photo", "latitude": "0", "id": "16763387", "tags": "party"}, {"datetaken": "2005-05-28 18:04:44", "license": "4", "title": "IMG_0712", "text": "", "album_id": "400403", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16763466_ca6dc5d082_o.jpg", "secret": "ca6dc5d082", "media": "photo", "latitude": "0", "id": "16763466", "tags": "party"}, {"datetaken": "2005-05-28 18:04:52", "license": "4", "title": "IMG_0713", "text": "", "album_id": "400403", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16763523_221917c208_o.jpg", "secret": "221917c208", "media": "photo", "latitude": "0", "id": "16763523", "tags": "party"}, {"datetaken": "2005-05-28 18:05:01", "license": "4", "title": "IMG_0714", "text": "", "album_id": "400403", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16763501_c90c7f92f9_o.jpg", "secret": "c90c7f92f9", "media": "photo", "latitude": "0", "id": "16763501", "tags": "party"}, {"datetaken": "2005-05-28 18:05:11", "license": "4", "title": "IMG_0715", "text": "", "album_id": "400403", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16763463_78ccbcd509_o.jpg", "secret": "78ccbcd509", "media": "photo", "latitude": "0", "id": "16763463", "tags": "party steph 2005"}, {"datetaken": "2005-05-28 20:39:47", "license": "4", "title": "IMG_0716", "text": "", "album_id": "400403", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16763490_61a6f6a3ab_o.jpg", "secret": "61a6f6a3ab", "media": "photo", "latitude": "0", "id": "16763490", "tags": "party"}, {"datetaken": "2005-05-28 20:40:07", "license": "4", "title": "IMG_0717", "text": "", "album_id": "400403", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16763413_1f7b8e418f_o.jpg", "secret": "1f7b8e418f", "media": "photo", "latitude": "0", "id": "16763413", "tags": "party"}, {"datetaken": "2005-05-28 20:41:33", "license": "4", "title": "IMG_0718", "text": "", "album_id": "400403", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16763418_6b72c4ea55_o.jpg", "secret": "6b72c4ea55", "media": "photo", "latitude": "0", "id": "16763418", "tags": "party"}, {"datetaken": "2005-05-28 20:47:42", "license": "4", "title": "IMG_0719", "text": "", "album_id": "400403", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16763430_0edb971706_o.jpg", "secret": "0edb971706", "media": "photo", "latitude": "0", "id": "16763430", "tags": "party"}, {"datetaken": "2005-05-28 20:47:51", "license": "4", "title": "IMG_0720", "text": "", "album_id": "400403", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16763441_0ceb9b9f14_o.jpg", "secret": "0ceb9b9f14", "media": "photo", "latitude": "0", "id": "16763441", "tags": "party"}, {"datetaken": "2005-05-28 20:47:58", "license": "4", "title": "IMG_0721", "text": "", "album_id": "400403", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16763558_3450493627_o.jpg", "secret": "3450493627", "media": "photo", "latitude": "0", "id": "16763558", "tags": "party"}, {"datetaken": "2005-05-28 23:36:35", "license": "4", "title": "IMG_0722", "text": "", "album_id": "400403", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16763399_9c341d223c_o.jpg", "secret": "9c341d223c", "media": "photo", "latitude": "0", "id": "16763399", "tags": "party"}, {"datetaken": "2004-09-12 17:39:12", "license": "3", "title": "Anti-war art display at the Power to the People Festival - Golden Gate Park 2004", "text": "", "album_id": "10332", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/418906_39cd60da9e_o.jpg", "secret": "39cd60da9e", "media": "photo", "latitude": "0", "id": "418906", "tags": "sf sanfrancisco powertothepeaceful festival goldengatepark iraqwar wariniraq protest demonstration oilwar bloodforoil"}, {"datetaken": "2004-09-12 17:39:19", "license": "3", "title": "Stilts guys at the Power to the People Festival - Golden Gate Park 2004", "text": "", "album_id": "10332", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/418907_c1600ab89b_o.jpg", "secret": "c1600ab89b", "media": "photo", "latitude": "0", "id": "418907", "tags": "sf sanfrancisco powertothepeaceful festival goldengatepark iraqwar wariniraq protest demonstration oilwar bloodforoil stilts"}, {"datetaken": "2004-09-12 17:39:25", "license": "3", "title": "Hula Hooper lady at the Power to the People Festival - Golden Gate Park 2004", "text": "", "album_id": "10332", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/418909_2457a1ecb6_o.jpg", "secret": "2457a1ecb6", "media": "photo", "latitude": "0", "id": "418909", "tags": "sf sanfrancisco powertothepeaceful festival goldengatepark iraqwar wariniraq protest demonstration oilwar bloodforoil hula allthefreakypeoplemakethebeautyoftheworld"}, {"datetaken": "2004-09-12 17:39:30", "license": "3", "title": "Medea Benjamin at the Power to the People Festival - Golden Gate Park 2004", "text": "", "album_id": "10332", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/418911_6215b16a82_o.jpg", "secret": "6215b16a82", "media": "photo", "latitude": "0", "id": "418911", "tags": "sf sanfrancisco powertothepeaceful festival goldengatepark iraqwar wariniraq protest demonstration oilwar bloodforoil pinkslip rants 911 medea benjamin"}, {"datetaken": "2004-09-12 17:39:35", "license": "3", "title": "Medea Benjamin - Former Green Party Candidate for U.S. Senate from California, Co-Founder of Code Pink, also Founding Director of Global Exchange", "text": "", "album_id": "10332", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/418912_9ca99852ca_o.jpg", "secret": "9ca99852ca", "media": "photo", "latitude": "0", "id": "418912", "tags": "sf sanfrancisco powertothepeaceful festival goldengatepark iraqwar wariniraq protest demonstration oilwar bloodforoil 911 pinkslip rants"}, {"datetaken": "2004-09-12 17:39:41", "license": "3", "title": "Medea Benjamin at the Power to the People Festival - Golden Gate Park 2004", "text": "", "album_id": "10332", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/418914_2fa04d9387_o.jpg", "secret": "2fa04d9387", "media": "photo", "latitude": "0", "id": "418914", "tags": "sf sanfrancisco powertothepeaceful festival goldengatepark iraqwar wariniraq protest demonstration oilwar bloodforoil pinkslip medeabenjamin"}, {"datetaken": "2004-09-12 17:39:45", "license": "3", "title": "Dennis Kucinich at the Power to the People Festival - Golden Gate Park 2004", "text": "", "album_id": "10332", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/418915_11f880409e_o.jpg", "secret": "11f880409e", "media": "photo", "latitude": "0", "id": "418915", "tags": "sf sanfrancisco powertothepeaceful festival goldengatepark iraqwar wariniraq protest demonstration oilwar bloodforoil denniskucinich"}, {"datetaken": "2004-09-12 17:39:51", "license": "3", "title": "Power to the People Festival - Golden Gate Park 2004", "text": "", "album_id": "10332", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/418916_f5b2627842_o.jpg", "secret": "f5b2627842", "media": "photo", "latitude": "0", "id": "418916", "tags": "sf sanfrancisco powertothepeaceful festival goldengatepark iraqwar wariniraq protest demonstration oilwar bloodforoil"}, {"datetaken": "2004-09-12 17:40:09", "license": "3", "title": "The huge crowd at Power to the People Festival - Golden Gate Park 2004", "text": "", "album_id": "10332", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/418919_24cc8784f3_o.jpg", "secret": "24cc8784f3", "media": "photo", "latitude": "0", "id": "418919", "tags": "sf sanfrancisco powertothepeaceful festival goldengatepark iraqwar wariniraq protest demonstration oilwar bloodforoil crowd"}, {"datetaken": "2004-09-12 17:40:14", "license": "3", "title": "The huge crowd at Power to the People Festival - Golden Gate Park 2004", "text": "", "album_id": "10332", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/418920_8a6f0b597f_o.jpg", "secret": "8a6f0b597f", "media": "photo", "latitude": "0", "id": "418920", "tags": "sf sanfrancisco powertothepeaceful festival goldengatepark iraqwar wariniraq protest demonstration oilwar bloodforoil crowd"}, {"datetaken": "2004-09-12 17:40:19", "license": "3", "title": "String Cheese Incident at Power to the People Festival - Golden Gate Park 2004", "text": "", "album_id": "10332", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/418921_8aa6b0024f_o.jpg", "secret": "8aa6b0024f", "media": "photo", "latitude": "0", "id": "418921", "tags": "sf sanfrancisco powertothepeaceful festival goldengatepark iraqwar wariniraq protest demonstration oilwar bloodforoil stringcheeseincident"}, {"datetaken": "2004-09-12 17:40:24", "license": "3", "title": "String Cheese Incident at Power to the People Festival - Golden Gate Park 2004", "text": "", "album_id": "10332", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/418922_2a98dd69a9_o.jpg", "secret": "2a98dd69a9", "media": "photo", "latitude": "0", "id": "418922", "tags": "sf sanfrancisco powertothepeaceful festival goldengatepark iraqwar wariniraq protest demonstration oilwar bloodforoil stringcheeseincident dove puppet"}, {"datetaken": "2004-09-12 17:40:30", "license": "3", "title": "Michael Franti at Power to the People Festival - Golden Gate Park 2004", "text": "", "album_id": "10332", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/418924_8326faa102_o.jpg", "secret": "8326faa102", "media": "photo", "latitude": "0", "id": "418924", "tags": "sf sanfrancisco powertothepeaceful festival goldengatepark iraqwar wariniraq protest demonstration oilwar bloodforoil crowd michaelfranti spearhead"}, {"datetaken": "2004-09-12 17:40:35", "license": "3", "title": "Michael Franti at Power to the People Festival - Golden Gate Park 2004", "text": "", "album_id": "10332", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/418925_0295a51b95_o.jpg", "secret": "0295a51b95", "media": "photo", "latitude": "0", "id": "418925", "tags": "sf sanfrancisco powertothepeaceful festival goldengatepark iraqwar wariniraq protest demonstration oilwar bloodforoil crowd michaelfranti spearhead"}, {"datetaken": "2004-09-12 17:40:40", "license": "3", "title": "Michael Franti at Power to the People Festival - Golden Gate Park 2004", "text": "", "album_id": "10332", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/418926_2d508a73a3_o.jpg", "secret": "2d508a73a3", "media": "photo", "latitude": "0", "id": "418926", "tags": "sf sanfrancisco powertothepeaceful festival goldengatepark iraqwar wariniraq protest demonstration oilwar bloodforoil crowd michaelfranti spearhead"}, {"datetaken": "2004-10-07 06:04:06", "license": "3", "title": "Sandy Dances", "text": "", "album_id": "19074", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/749408_53d26cf588_o.jpg", "secret": "53d26cf588", "media": "photo", "latitude": "0", "id": "749408", "tags": ""}, {"datetaken": "2004-10-07 06:21:16", "license": "3", "title": "club-babes", "text": "", "album_id": "19074", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/749538_70cf0c64a6_o.jpg", "secret": "70cf0c64a6", "media": "photo", "latitude": "0", "id": "749538", "tags": ""}, {"datetaken": "2004-10-07 06:21:19", "license": "3", "title": "dance-flore", "text": "", "album_id": "19074", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/749540_051552fc81_o.jpg", "secret": "051552fc81", "media": "photo", "latitude": "0", "id": "749540", "tags": ""}, {"datetaken": "2004-10-07 06:21:21", "license": "3", "title": "gavin-ravin", "text": "", "album_id": "19074", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/749541_304dd7847a_o.jpg", "secret": "304dd7847a", "media": "photo", "latitude": "0", "id": "749541", "tags": ""}, {"datetaken": "2004-10-07 06:21:30", "license": "3", "title": "sara-and-stevie", "text": "", "album_id": "19074", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/749545_f37c00e7d1_o.jpg", "secret": "f37c00e7d1", "media": "photo", "latitude": "0", "id": "749545", "tags": ""}, {"datetaken": "2004-10-08 05:45:14", "license": "3", "title": "Robot Dylan", "text": "", "album_id": "19074", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/764371_ca35cd88eb_o.jpg", "secret": "ca35cd88eb", "media": "photo", "latitude": "0", "id": "764371", "tags": ""}, {"datetaken": "2004-10-08 05:45:22", "license": "3", "title": "Tracy and Graeme", "text": "", "album_id": "19074", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/764375_b64c08b3d7_o.jpg", "secret": "b64c08b3d7", "media": "photo", "latitude": "0", "id": "764375", "tags": ""}, {"datetaken": "2004-10-08 05:45:33", "license": "3", "title": "Test Monkeys", "text": "", "album_id": "19074", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/764378_ce7ecee8d6_o.jpg", "secret": "ce7ecee8d6", "media": "photo", "latitude": "0", "id": "764378", "tags": ""}, {"datetaken": "2004-10-08 05:49:24", "license": "3", "title": "Lord Dempsey", "text": "", "album_id": "19074", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/764437_af4935accf_o.jpg", "secret": "af4935accf", "media": "photo", "latitude": "0", "id": "764437", "tags": ""}, {"datetaken": "2004-10-08 06:06:57", "license": "3", "title": "Dan in a mask", "text": "", "album_id": "19074", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/764622_69fb34e3b6_o.jpg", "secret": "69fb34e3b6", "media": "photo", "latitude": "0", "id": "764622", "tags": "party mask horror"}, {"datetaken": "2003-11-21 23:55:38", "license": "3", "title": "IMG_1484", "text": "", "album_id": "37189", "longitude": "-95.934097", "url_o": "https://farm1.staticflickr.com/2/1458544_94d9fe92e7_o.jpg", "secret": "94d9fe92e7", "media": "photo", "latitude": "36.121540", "id": "1458544", "tags": "thelab party"}, {"datetaken": "2003-11-21 23:57:15", "license": "3", "title": "IMG_1485", "text": "", "album_id": "37189", "longitude": "-95.934097", "url_o": "https://farm1.staticflickr.com/2/1458548_0cb0af8744_o.jpg", "secret": "0cb0af8744", "media": "photo", "latitude": "36.121540", "id": "1458548", "tags": "thelab party"}, {"datetaken": "2003-11-21 23:57:39", "license": "3", "title": "IMG_1486", "text": "", "album_id": "37189", "longitude": "-95.934097", "url_o": "https://farm1.staticflickr.com/2/1458557_79495ea73d_o.jpg", "secret": "79495ea73d", "media": "photo", "latitude": "36.121540", "id": "1458557", "tags": "thelab party"}, {"datetaken": "2003-11-21 23:58:10", "license": "3", "title": "IMG_1487", "text": "", "album_id": "37189", "longitude": "-95.934097", "url_o": "https://farm1.staticflickr.com/2/1458561_a2eaecad2f_o.jpg", "secret": "a2eaecad2f", "media": "photo", "latitude": "36.121540", "id": "1458561", "tags": "thelab party"}, {"datetaken": "2003-11-21 23:58:49", "license": "3", "title": "IMG_1488", "text": "", "album_id": "37189", "longitude": "-95.934097", "url_o": "https://farm1.staticflickr.com/2/1458569_107f998483_o.jpg", "secret": "107f998483", "media": "photo", "latitude": "36.121540", "id": "1458569", "tags": "thelab party"}, {"datetaken": "2003-11-22 00:07:19", "license": "3", "title": "IMG_1489", "text": "", "album_id": "37189", "longitude": "-95.934097", "url_o": "https://farm1.staticflickr.com/2/1458572_73f233ae18_o.jpg", "secret": "73f233ae18", "media": "photo", "latitude": "36.121540", "id": "1458572", "tags": "thelab party"}, {"datetaken": "2003-11-22 00:34:12", "license": "3", "title": "IMG_1490", "text": "", "album_id": "37189", "longitude": "-95.934097", "url_o": "https://farm1.staticflickr.com/2/1458583_a0d457da8d_o.jpg", "secret": "a0d457da8d", "media": "photo", "latitude": "36.121540", "id": "1458583", "tags": "thelab party"}, {"datetaken": "2003-11-22 00:50:37", "license": "3", "title": "IMG_1491", "text": "", "album_id": "37189", "longitude": "-95.934097", "url_o": "https://farm1.staticflickr.com/2/1458588_b30360c773_o.jpg", "secret": "b30360c773", "media": "photo", "latitude": "36.121540", "id": "1458588", "tags": "thelab party"}, {"datetaken": "2003-11-22 00:51:15", "license": "3", "title": "IMG_1492", "text": "", "album_id": "37189", "longitude": "-95.934097", "url_o": "https://farm1.staticflickr.com/2/1458595_90efa8a532_o.jpg", "secret": "90efa8a532", "media": "photo", "latitude": "36.121540", "id": "1458595", "tags": "thelab party"}, {"datetaken": "2003-11-22 00:51:27", "license": "3", "title": "IMG_1493", "text": "", "album_id": "37189", "longitude": "-95.934097", "url_o": "https://farm1.staticflickr.com/2/1458597_76c08bfd8d_o.jpg", "secret": "76c08bfd8d", "media": "photo", "latitude": "36.121540", "id": "1458597", "tags": "thelab party"}, {"datetaken": "2003-11-22 00:53:32", "license": "3", "title": "IMG_1494", "text": "", "album_id": "37189", "longitude": "-95.934097", "url_o": "https://farm1.staticflickr.com/2/1458598_2487882d40_o.jpg", "secret": "2487882d40", "media": "photo", "latitude": "36.121540", "id": "1458598", "tags": "thelab party"}, {"datetaken": "2003-11-22 00:56:21", "license": "3", "title": "IMG_1495", "text": "", "album_id": "37189", "longitude": "-95.934097", "url_o": "https://farm1.staticflickr.com/2/1458602_d65933238e_o.jpg", "secret": "d65933238e", "media": "photo", "latitude": "36.121540", "id": "1458602", "tags": "thelab party"}, {"datetaken": "2003-11-22 00:56:31", "license": "3", "title": "IMG_1496", "text": "", "album_id": "37189", "longitude": "-95.934097", "url_o": "https://farm1.staticflickr.com/2/1458604_4669169f73_o.jpg", "secret": "4669169f73", "media": "photo", "latitude": "36.121540", "id": "1458604", "tags": "thelab party"}, {"datetaken": "2003-11-22 00:56:39", "license": "3", "title": "IMG_1497", "text": "", "album_id": "37189", "longitude": "-95.934097", "url_o": "https://farm1.staticflickr.com/2/1458607_f6ae4e56ba_o.jpg", "secret": "f6ae4e56ba", "media": "photo", "latitude": "36.121540", "id": "1458607", "tags": "thelab party"}, {"datetaken": "2003-11-22 00:56:48", "license": "3", "title": "IMG_1498", "text": "", "album_id": "37189", "longitude": "-95.934097", "url_o": "https://farm1.staticflickr.com/2/1458612_a5aeab63f8_o.jpg", "secret": "a5aeab63f8", "media": "photo", "latitude": "36.121540", "id": "1458612", "tags": "thelab party"}, {"datetaken": "2004-11-12 22:16:30", "license": "2", "title": "Singers", "text": "", "album_id": "37246", "longitude": "-87.528242", "url_o": "https://farm1.staticflickr.com/2/1460872_5afde6b12b_o.jpg", "secret": "5afde6b12b", "media": "photo", "latitude": "37.969634", "id": "1460872", "tags": "friends party friday"}, {"datetaken": "2004-11-12 22:17:07", "license": "2", "title": "Ambush Singers 2", "text": "", "album_id": "37246", "longitude": "-87.528242", "url_o": "https://farm1.staticflickr.com/2/1460845_5032941dbc_o.jpg", "secret": "5032941dbc", "media": "photo", "latitude": "37.969634", "id": "1460845", "tags": "friends party friday"}, {"datetaken": "2004-11-12 22:25:36", "license": "2", "title": "Raking it In", "text": "", "album_id": "37246", "longitude": "-87.528242", "url_o": "https://farm1.staticflickr.com/2/1460834_949ffb3348_o.jpg", "secret": "949ffb3348", "media": "photo", "latitude": "37.969634", "id": "1460834", "tags": "friends party poker friday pennies"}, {"datetaken": "2004-11-12 22:43:20", "license": "2", "title": "Guitar", "text": "", "album_id": "37246", "longitude": "-87.528242", "url_o": "https://farm1.staticflickr.com/2/1460850_51cd9da016_o.jpg", "secret": "51cd9da016", "media": "photo", "latitude": "37.969634", "id": "1460850", "tags": "friends party guitar friday"}, {"datetaken": "2004-11-12 22:46:23", "license": "2", "title": "Jeremy", "text": "", "album_id": "37246", "longitude": "-87.528242", "url_o": "https://farm1.staticflickr.com/2/1460854_59fd674a25_o.jpg", "secret": "59fd674a25", "media": "photo", "latitude": "37.969634", "id": "1460854", "tags": "friends party friday"}, {"datetaken": "2004-11-12 22:49:12", "license": "2", "title": "Banjo", "text": "", "album_id": "37246", "longitude": "-87.528242", "url_o": "https://farm1.staticflickr.com/2/1460860_c1e72e78aa_o.jpg", "secret": "c1e72e78aa", "media": "photo", "latitude": "37.969634", "id": "1460860", "tags": "friends party banjo friday"}, {"datetaken": "2004-11-12 23:19:18", "license": "2", "title": "A Little to the Left", "text": "", "album_id": "37246", "longitude": "-87.528242", "url_o": "https://farm1.staticflickr.com/2/1460866_3da974ae34_o.jpg", "secret": "3da974ae34", "media": "photo", "latitude": "37.969634", "id": "1460866", "tags": "friends party nintendo friday"}, {"datetaken": "2004-11-12 23:20:16", "license": "2", "title": "Vintage", "text": "", "album_id": "37246", "longitude": "-87.528242", "url_o": "https://farm1.staticflickr.com/2/1460838_b48103ab35_o.jpg", "secret": "b48103ab35", "media": "photo", "latitude": "37.969634", "id": "1460838", "tags": "friends party nintendo friday"}, {"datetaken": "2004-11-12 23:44:21", "license": "2", "title": "My Buddy", "text": "", "album_id": "37246", "longitude": "-87.528242", "url_o": "https://farm1.staticflickr.com/2/1460836_7ec7fc544f_o.jpg", "secret": "7ec7fc544f", "media": "photo", "latitude": "37.969634", "id": "1460836", "tags": "friends party starwars darthvader friday"}, {"datetaken": "2004-11-12 23:45:05", "license": "2", "title": "Prospector", "text": "", "album_id": "37246", "longitude": "-87.528242", "url_o": "https://farm1.staticflickr.com/2/1460851_88351eed28_o.jpg", "secret": "88351eed28", "media": "photo", "latitude": "37.969634", "id": "1460851", "tags": "friends party hat cowboy friday"}, {"datetaken": "2004-11-12 23:46:29", "license": "2", "title": "Brad", "text": "", "album_id": "37246", "longitude": "-87.528242", "url_o": "https://farm1.staticflickr.com/2/1460841_d9caa5e611_o.jpg", "secret": "d9caa5e611", "media": "photo", "latitude": "37.969634", "id": "1460841", "tags": "friends party nintendo friday zapper"}, {"datetaken": "2004-11-12 23:49:26", "license": "2", "title": "Mike", "text": "", "album_id": "37246", "longitude": "-87.528242", "url_o": "https://farm1.staticflickr.com/2/1460842_2a9eb47e03_o.jpg", "secret": "2a9eb47e03", "media": "photo", "latitude": "37.969634", "id": "1460842", "tags": "friends party nintendo friday zapper"}, {"datetaken": "2004-11-12 23:53:55", "license": "2", "title": "Conversation", "text": "", "album_id": "37246", "longitude": "-87.528242", "url_o": "https://farm1.staticflickr.com/2/1460862_fc29a7624f_o.jpg", "secret": "fc29a7624f", "media": "photo", "latitude": "37.969634", "id": "1460862", "tags": "friends party friday"}, {"datetaken": "2004-11-13 00:00:43", "license": "2", "title": "Who's Talking", "text": "", "album_id": "37246", "longitude": "-87.528242", "url_o": "https://farm1.staticflickr.com/2/1460874_ead2287762_o.jpg", "secret": "ead2287762", "media": "photo", "latitude": "37.969634", "id": "1460874", "tags": "friends party friday"}, {"datetaken": "2004-11-13 00:10:38", "license": "2", "title": "Reclined", "text": "", "album_id": "37246", "longitude": "-87.528242", "url_o": "https://farm1.staticflickr.com/2/1460861_e731223924_o.jpg", "secret": "e731223924", "media": "photo", "latitude": "37.969634", "id": "1460861", "tags": "friends party nintendo friday"}, {"datetaken": "2004-11-13 00:11:18", "license": "2", "title": "Zapper", "text": "", "album_id": "37246", "longitude": "-87.528242", "url_o": "https://farm1.staticflickr.com/2/1460852_b27f59cd3d_o.jpg", "secret": "b27f59cd3d", "media": "photo", "latitude": "37.969634", "id": "1460852", "tags": "party nintendo friday zapper"}, {"datetaken": "2004-11-13 00:11:58", "license": "2", "title": "It's Over", "text": "", "album_id": "37246", "longitude": "-87.528242", "url_o": "https://farm1.staticflickr.com/2/1460871_3071a8490d_o.jpg", "secret": "3071a8490d", "media": "photo", "latitude": "37.969634", "id": "1460871", "tags": "party nintendo friday controller"}, {"datetaken": "2004-12-11 13:02:20", "license": "2", "title": "100_1178", "text": "", "album_id": "72057594060732425", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2101589_cdbaea6876_o.jpg", "secret": "cdbaea6876", "media": "photo", "latitude": "0", "id": "2101589", "tags": "deadmanjones"}, {"datetaken": "2004-12-11 13:02:41", "license": "2", "title": "100_1181", "text": "", "album_id": "72057594060732425", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2101595_26d50781fd_o.jpg", "secret": "26d50781fd", "media": "photo", "latitude": "0", "id": "2101595", "tags": "karenmillar"}, {"datetaken": "2004-12-11 13:02:49", "license": "2", "title": "100_1183", "text": "", "album_id": "72057594060732425", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2101598_3c01122fb1_o.jpg", "secret": "3c01122fb1", "media": "photo", "latitude": "0", "id": "2101598", "tags": "christmas party manchesterapollo faithless"}, {"datetaken": "2004-12-11 13:02:56", "license": "2", "title": "100_1184", "text": "", "album_id": "72057594060732425", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2101599_e5104b4df7_o.jpg", "secret": "e5104b4df7", "media": "photo", "latitude": "0", "id": "2101599", "tags": "christmas party manchesterapollo faithless"}, {"datetaken": "2004-12-11 13:03:00", "license": "2", "title": "100_1185", "text": "", "album_id": "72057594060732425", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2101602_a819777eff_o.jpg", "secret": "a819777eff", "media": "photo", "latitude": "0", "id": "2101602", "tags": "christmas party manchesterapollo faithless"}, {"datetaken": "2004-12-11 13:03:07", "license": "2", "title": "100_1191", "text": "", "album_id": "72057594060732425", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2101603_cf289921eb_o.jpg", "secret": "cf289921eb", "media": "photo", "latitude": "0", "id": "2101603", "tags": "christmas party manchesterapollo faithless"}, {"datetaken": "2004-12-11 13:03:16", "license": "2", "title": "100_1192", "text": "", "album_id": "72057594060732425", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2101604_33735ee966_o.jpg", "secret": "33735ee966", "media": "photo", "latitude": "0", "id": "2101604", "tags": "christmas party manchesterapollo faithless"}, {"datetaken": "2004-12-11 13:03:30", "license": "2", "title": "100_1201", "text": "", "album_id": "72057594060732425", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2101607_9f493ebca2_o.jpg", "secret": "9f493ebca2", "media": "photo", "latitude": "0", "id": "2101607", "tags": "christmas party manchesterapollo faithless"}, {"datetaken": "2004-12-11 13:03:41", "license": "2", "title": "100_1202", "text": "", "album_id": "72057594060732425", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2101609_cbcdc1b368_o.jpg", "secret": "cbcdc1b368", "media": "photo", "latitude": "0", "id": "2101609", "tags": "christmas party manchesterapollo faithless"}, {"datetaken": "2004-12-11 13:03:50", "license": "2", "title": "100_1204", "text": "", "album_id": "72057594060732425", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2101610_f6350ad11f_o.jpg", "secret": "f6350ad11f", "media": "photo", "latitude": "0", "id": "2101610", "tags": "christmas party manchesterapollo faithless"}, {"datetaken": "2004-12-11 13:04:00", "license": "2", "title": "100_1206", "text": "", "album_id": "72057594060732425", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2101612_57ac44c304_o.jpg", "secret": "57ac44c304", "media": "photo", "latitude": "0", "id": "2101612", "tags": "christmas party manchesterapollo faithless"}, {"datetaken": "2004-12-11 13:04:07", "license": "2", "title": "100_1207", "text": "", "album_id": "72057594060732425", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2101614_e5b1d5efb6_o.jpg", "secret": "e5b1d5efb6", "media": "photo", "latitude": "0", "id": "2101614", "tags": "christmas party manchesterapollo faithless"}, {"datetaken": "2004-12-11 13:11:05", "license": "2", "title": "faithless", "text": "", "album_id": "72057594060732425", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2101692_7a5c39ca1b_o.jpg", "secret": "7a5c39ca1b", "media": "photo", "latitude": "0", "id": "2101692", "tags": "christmas party manchesterapollo faithless"}, {"datetaken": "2006-03-17 17:54:11", "license": "2", "title": "1951", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2462/3953532774_be6ec51f72_o.jpg", "secret": "6616dfaea3", "media": "photo", "latitude": "0", "id": "3953532774", "tags": "passover"}, {"datetaken": "2006-03-17 18:40:45", "license": "2", "title": "1952", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2490/3953533086_6d9e1cb4d5_o.jpg", "secret": "669c7833e6", "media": "photo", "latitude": "0", "id": "3953533086", "tags": "richard passover"}, {"datetaken": "2006-03-17 18:41:36", "license": "2", "title": "1953", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2533/3952755889_b0c2850844_o.jpg", "secret": "b8c60776a8", "media": "photo", "latitude": "0", "id": "3952755889", "tags": "richard passover"}, {"datetaken": "2006-03-17 18:43:04", "license": "2", "title": "1954", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2475/3952756233_272a6675cd_o.jpg", "secret": "20aab943ce", "media": "photo", "latitude": "0", "id": "3952756233", "tags": "richard passover"}, {"datetaken": "2006-03-17 18:52:40", "license": "2", "title": "1955", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2588/3953534140_1b792b56b1_o.jpg", "secret": "af1bc013c7", "media": "photo", "latitude": "0", "id": "3953534140", "tags": "richard passover"}, {"datetaken": "2006-03-17 18:59:40", "license": "2", "title": "1956", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2638/3952756837_cced53437a_o.jpg", "secret": "31cd92e53f", "media": "photo", "latitude": "0", "id": "3952756837", "tags": "richard passover"}, {"datetaken": "2006-03-17 19:00:50", "license": "2", "title": "1957", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3448/3952757287_b55549483c_o.jpg", "secret": "b7a3351d00", "media": "photo", "latitude": "0", "id": "3952757287", "tags": "richard passover"}, {"datetaken": "2006-03-17 19:01:30", "license": "2", "title": "1958", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2618/3953535314_bc5ae732ea_o.jpg", "secret": "6388e4d305", "media": "photo", "latitude": "0", "id": "3953535314", "tags": "richard passover"}, {"datetaken": "2006-03-17 19:04:29", "license": "2", "title": "1959", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2555/3952758021_40f338a3ea_o.jpg", "secret": "86ae9470dc", "media": "photo", "latitude": "0", "id": "3952758021", "tags": "richard passover"}, {"datetaken": "2006-03-17 19:12:04", "license": "2", "title": "1960", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2624/3952758543_d112de2232_o.jpg", "secret": "ec86f76552", "media": "photo", "latitude": "0", "id": "3952758543", "tags": "lionel passover"}, {"datetaken": "2006-03-17 19:36:33", "license": "2", "title": "1961", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3498/3953536416_ef67181476_o.jpg", "secret": "0d1798bccb", "media": "photo", "latitude": "0", "id": "3953536416", "tags": "passover"}, {"datetaken": "2006-03-17 20:06:28", "license": "2", "title": "1962", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2623/3953536590_4ff86659db_o.jpg", "secret": "513108278e", "media": "photo", "latitude": "0", "id": "3953536590", "tags": "thomas mark maria passover"}, {"datetaken": "2006-03-17 20:07:27", "license": "2", "title": "1963", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2611/3953536936_73d398c22c_o.jpg", "secret": "60af3c51b1", "media": "photo", "latitude": "0", "id": "3953536936", "tags": "john amy jonathan leslie passover"}, {"datetaken": "2006-03-17 20:08:25", "license": "2", "title": "1964", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3420/3953537258_635ed2ce99_o.jpg", "secret": "6058b05ac4", "media": "photo", "latitude": "0", "id": "3953537258", "tags": "richard passover"}, {"datetaken": "2006-03-17 20:09:28", "license": "2", "title": "1965", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2483/3952760131_8f41c09d8b_o.jpg", "secret": "6d5882fa69", "media": "photo", "latitude": "0", "id": "3952760131", "tags": "jan passover"}, {"datetaken": "2006-03-17 20:22:04", "license": "2", "title": "1966", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2525/3953537986_dcefae82eb_o.jpg", "secret": "faa355a2da", "media": "photo", "latitude": "0", "id": "3953537986", "tags": "amy jonathan passover"}, {"datetaken": "2006-03-17 20:26:31", "license": "2", "title": "1967", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2593/3952760831_0b0ba4b43a_o.jpg", "secret": "f38e342576", "media": "photo", "latitude": "0", "id": "3952760831", "tags": "rosemary passover"}, {"datetaken": "2006-03-17 20:58:39", "license": "2", "title": "1968", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2559/3953538692_f1a8e7c6a8_o.jpg", "secret": "e5b4d8c7e4", "media": "photo", "latitude": "0", "id": "3953538692", "tags": "richard passover"}, {"datetaken": "2006-03-17 21:19:53", "license": "2", "title": "1969", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2593/3952761487_2eaec5fdda_o.jpg", "secret": "6a08a36109", "media": "photo", "latitude": "0", "id": "3952761487", "tags": "richard passover"}, {"datetaken": "2006-03-17 21:28:38", "license": "2", "title": "1970", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3439/3952761793_1c91fd9723_o.jpg", "secret": "00b6af1a79", "media": "photo", "latitude": "0", "id": "3952761793", "tags": "rosemary passover"}, {"datetaken": "2006-03-17 21:31:46", "license": "2", "title": "1971", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2569/3952762215_1ab8752bd9_o.jpg", "secret": "7f3c3dea29", "media": "photo", "latitude": "0", "id": "3952762215", "tags": "mark passover"}, {"datetaken": "2006-03-17 21:32:28", "license": "2", "title": "1972", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2456/3953540658_6287b40965_o.jpg", "secret": "22de236b40", "media": "photo", "latitude": "0", "id": "3953540658", "tags": "lionel alison passover"}, {"datetaken": "2006-03-17 21:33:16", "license": "2", "title": "1973", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2567/3953540882_dd2d004949_o.jpg", "secret": "a61a8b121c", "media": "photo", "latitude": "0", "id": "3953540882", "tags": "stefan passover"}, {"datetaken": "2006-03-17 21:41:55", "license": "2", "title": "1974", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2506/3953541342_0924b21ccd_o.jpg", "secret": "e2a7a05f0e", "media": "photo", "latitude": "0", "id": "3953541342", "tags": "chris leslie passover"}, {"datetaken": "2006-03-17 21:42:26", "license": "2", "title": "1975", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3464/3952764465_21e2da6949_o.jpg", "secret": "fbfb28477d", "media": "photo", "latitude": "0", "id": "3952764465", "tags": "john leslie passover"}, {"datetaken": "2006-03-17 21:51:45", "license": "2", "title": "1976", "text": "", "album_id": "72157622457999530", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3462/3952764849_d3a979cfc1_o.jpg", "secret": "c13f410b7b", "media": "photo", "latitude": "0", "id": "3952764849", "tags": "valerie cora passover"}, {"datetaken": "2006-03-13 11:04:04", "license": "1", "title": "IMG_4381", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/19/112493759_d3b4a0f64e_o.jpg", "secret": "d3b4a0f64e", "media": "photo", "latitude": "26.936762", "id": "112493759", "tags": "beach florida turtle rita sue fl jupiter malkoff seaturtle juno jupiterisland"}, {"datetaken": "2006-03-13 11:04:27", "license": "1", "title": "IMG_4383", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/40/112493767_94d46cecee_o.jpg", "secret": "94d46cecee", "media": "photo", "latitude": "26.936762", "id": "112493767", "tags": "beach florida turtle rita sue fl jupiter malkoff seaturtle juno jupiterisland"}, {"datetaken": "2006-03-13 11:04:53", "license": "1", "title": "IMG_4384", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/52/112493774_c397f935fd_o.jpg", "secret": "c397f935fd", "media": "photo", "latitude": "26.936762", "id": "112493774", "tags": "beach florida turtle rita sue fl jupiter malkoff seaturtle juno jupiterisland"}, {"datetaken": "2006-03-13 11:05:37", "license": "1", "title": "IMG_4385", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/43/112493784_20cd03a0a9_o.jpg", "secret": "20cd03a0a9", "media": "photo", "latitude": "26.936762", "id": "112493784", "tags": "beach florida turtle rita sue fl jupiter malkoff seaturtle juno jupiterisland"}, {"datetaken": "2006-03-13 11:05:47", "license": "1", "title": "IMG_4386", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/40/112493802_c79aafbae1_o.jpg", "secret": "c79aafbae1", "media": "photo", "latitude": "26.936762", "id": "112493802", "tags": "beach florida turtle rita sue fl jupiter malkoff seaturtle juno jupiterisland"}, {"datetaken": "2006-03-13 11:08:43", "license": "1", "title": "IMG_4390", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/50/112493816_b3ae14f684_o.jpg", "secret": "b3ae14f684", "media": "photo", "latitude": "26.936762", "id": "112493816", "tags": "beach florida turtle rita sue fl jupiter malkoff seaturtle juno jupiterisland"}, {"datetaken": "2006-03-13 11:09:47", "license": "1", "title": "IMG_4394", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/9/112493822_91f18fee00_o.jpg", "secret": "91f18fee00", "media": "photo", "latitude": "26.936762", "id": "112493822", "tags": "beach florida turtle rita sue fl jupiter malkoff seaturtle juno jupiterisland"}, {"datetaken": "2006-03-13 11:10:57", "license": "1", "title": "IMG_4395", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/40/112493828_369a3925f7_o.jpg", "secret": "369a3925f7", "media": "photo", "latitude": "26.936762", "id": "112493828", "tags": "beach florida turtle rita sue fl jupiter malkoff seaturtle juno jupiterisland"}, {"datetaken": "2006-03-13 11:13:17", "license": "1", "title": "IMG_4396", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/56/112493845_d79d189871_o.jpg", "secret": "d79d189871", "media": "photo", "latitude": "26.936762", "id": "112493845", "tags": "beach skull florida turtle rita sue fl jupiter malkoff seaturtle juno jupiterisland"}, {"datetaken": "2006-03-13 11:15:14", "license": "1", "title": "IMG_4398", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/56/112493852_a090b409d5_o.jpg", "secret": "a090b409d5", "media": "photo", "latitude": "26.936762", "id": "112493852", "tags": "beach florida turtle rita sue fl jupiter malkoff seaturtle juno jupiterisland"}, {"datetaken": "2006-03-13 11:16:39", "license": "1", "title": "IMG_4402", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/50/112493857_d11ef38e5f_o.jpg", "secret": "d11ef38e5f", "media": "photo", "latitude": "26.936762", "id": "112493857", "tags": "beach florida rita sue fl jupiter eel malkoff juno jupiterisland"}, {"datetaken": "2006-03-13 11:16:59", "license": "1", "title": "IMG_4406", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/36/112493864_b553e68d02_o.jpg", "secret": "b553e68d02", "media": "photo", "latitude": "26.936762", "id": "112493864", "tags": "beach florida rita sue fl jupiter eel malkoff juno jupiterisland"}, {"datetaken": "2006-03-13 11:18:11", "license": "1", "title": "IMG_4408", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/45/112493888_ff69eb87be_o.jpg", "secret": "ff69eb87be", "media": "photo", "latitude": "26.936762", "id": "112493888", "tags": "beach florida turtle rita sue fl jupiter malkoff seaturtle juno jupiterisland"}, {"datetaken": "2006-03-13 11:19:52", "license": "1", "title": "IMG_4410", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/49/112493953_7e886d1014_o.jpg", "secret": "7e886d1014", "media": "photo", "latitude": "26.936762", "id": "112493953", "tags": "beach florida rita lizard sue fl jupiter malkoff juno jupiterisland"}, {"datetaken": "2006-03-13 11:37:56", "license": "1", "title": "IMG_4415", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/54/112493966_bb0ae7aa31_o.jpg", "secret": "bb0ae7aa31", "media": "photo", "latitude": "26.936762", "id": "112493966", "tags": "orange beach candy florida rita sue fl jupiter malkoff slices juno jupiterisland"}, {"datetaken": "2006-03-13 11:54:42", "license": "1", "title": "IMG_4416", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/19/112493976_98538cb8ac_o.jpg", "secret": "98538cb8ac", "media": "photo", "latitude": "26.936762", "id": "112493976", "tags": "beach florida rita sue fl jupiter malkoff juno jupiterisland"}, {"datetaken": "2006-03-13 12:08:09", "license": "1", "title": "IMG_4417", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/51/112494012_0a69b80249_o.jpg", "secret": "0a69b80249", "media": "photo", "latitude": "26.936762", "id": "112494012", "tags": "beach florida rita sue fl jupiter malkoff juno jupiterisland"}, {"datetaken": "2006-03-13 12:33:30", "license": "1", "title": "IMG_4420", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/50/112494066_4839643eeb_o.jpg", "secret": "4839643eeb", "media": "photo", "latitude": "26.936762", "id": "112494066", "tags": "beach florida rita sue fl jupiter malkoff juno jupiterisland"}, {"datetaken": "2006-03-13 12:34:05", "license": "1", "title": "IMG_4422", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/47/112494101_53be306b4c_o.jpg", "secret": "53be306b4c", "media": "photo", "latitude": "26.936762", "id": "112494101", "tags": "beach florida rita sue fl jupiter malkoff juno jupiterisland"}, {"datetaken": "2006-03-13 12:34:55", "license": "1", "title": "IMG_4423", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/42/112494140_69ac94e3fc_o.jpg", "secret": "69ac94e3fc", "media": "photo", "latitude": "26.936762", "id": "112494140", "tags": "beach florida rita sue fl jupiter malkoff juno jupiterisland"}, {"datetaken": "2006-03-13 12:35:19", "license": "1", "title": "IMG_4424", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/43/112494188_bbfb9b75ac_o.jpg", "secret": "bbfb9b75ac", "media": "photo", "latitude": "26.936762", "id": "112494188", "tags": "jupiter juno beach jupiterisland florida sue rita malkoff fl"}, {"datetaken": "2006-03-13 12:36:59", "license": "1", "title": "IMG_4426", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/36/112494216_81bf60ff6a_o.jpg", "secret": "81bf60ff6a", "media": "photo", "latitude": "26.936762", "id": "112494216", "tags": "beach florida rita sue fl jupiter malkoff juno jupiterisland"}, {"datetaken": "2006-03-13 12:37:51", "license": "1", "title": "IMG_4427", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/49/112494257_491a10840a_o.jpg", "secret": "491a10840a", "media": "photo", "latitude": "26.936762", "id": "112494257", "tags": "beach rock florida rita sue fl jupiter malkoff juno jupiterisland"}, {"datetaken": "2006-03-13 12:38:07", "license": "1", "title": "IMG_4429", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/50/112494289_d9c2b2902c_o.jpg", "secret": "d9c2b2902c", "media": "photo", "latitude": "26.936762", "id": "112494289", "tags": "beach rock florida rita sue fl jupiter malkoff juno jupiterisland"}, {"datetaken": "2006-03-13 12:38:35", "license": "1", "title": "IMG_4431", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/38/112494314_3d19b33284_o.jpg", "secret": "3d19b33284", "media": "photo", "latitude": "26.936762", "id": "112494314", "tags": "beach florida rita sue fl jupiter malkoff juno jupiterisland"}, {"datetaken": "2006-03-13 12:38:43", "license": "1", "title": "IMG_4434", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/43/112494324_445ac239a2_o.jpg", "secret": "445ac239a2", "media": "photo", "latitude": "26.936762", "id": "112494324", "tags": "beach florida rita sue fl jupiter malkoff juno jupiterisland"}, {"datetaken": "2006-03-13 12:40:12", "license": "1", "title": "IMG_4436", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/36/112494343_010e491fa3_o.jpg", "secret": "010e491fa3", "media": "photo", "latitude": "26.936762", "id": "112494343", "tags": "beach florida rita sue fl jupiter malkoff juno jupiterisland"}, {"datetaken": "2006-03-13 12:40:31", "license": "1", "title": "IMG_4437", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/47/112494354_ed66e50669_o.jpg", "secret": "ed66e50669", "media": "photo", "latitude": "26.936762", "id": "112494354", "tags": "beach florida rita sue fl jupiter malkoff juno jupiterisland"}, {"datetaken": "2006-03-13 12:41:23", "license": "1", "title": "IMG_4439", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/44/112494372_9d0fee326d_o.jpg", "secret": "9d0fee326d", "media": "photo", "latitude": "26.936762", "id": "112494372", "tags": "beach florida rita sue fl jupiter malkoff juno jupiterisland"}, {"datetaken": "2006-03-13 12:41:38", "license": "1", "title": "IMG_4440", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/53/112493642_b9bf2ed059_o.jpg", "secret": "b9bf2ed059", "media": "photo", "latitude": "26.936762", "id": "112493642", "tags": "beach florida rita sue fl jupiter malkoff juno jupiterisland"}, {"datetaken": "2006-03-13 13:06:54", "license": "1", "title": "IMG_4441", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/54/112493650_24de480451_o.jpg", "secret": "24de480451", "media": "photo", "latitude": "26.936762", "id": "112493650", "tags": "food beach florida rita sue shack fl jupiter malkoff juno jupiterisland foodshack"}, {"datetaken": "2006-03-13 13:08:53", "license": "1", "title": "IMG_4442", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/50/112493658_ddb366bc49_o.jpg", "secret": "ddb366bc49", "media": "photo", "latitude": "26.936762", "id": "112493658", "tags": "food beach florida rita sue shack fl jupiter malkoff juno jupiterisland foodshack"}, {"datetaken": "2006-03-13 13:09:36", "license": "1", "title": "IMG_4443", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/37/112493672_268552e1e9_o.jpg", "secret": "268552e1e9", "media": "photo", "latitude": "26.936762", "id": "112493672", "tags": "food beach florida rita sue shack fl jupiter malkoff juno jupiterisland foodshack"}, {"datetaken": "2006-03-13 13:09:52", "license": "1", "title": "IMG_4445", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/34/112493679_ff8b3de0b0_o.jpg", "secret": "ff8b3de0b0", "media": "photo", "latitude": "26.936762", "id": "112493679", "tags": "food beach florida rita sue shack fl jupiter malkoff juno jupiterisland foodshack"}, {"datetaken": "2006-03-13 14:14:57", "license": "1", "title": "IMG_4448", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/9/112493690_905d7522cf_o.jpg", "secret": "905d7522cf", "media": "photo", "latitude": "26.936762", "id": "112493690", "tags": "beach florida rita chips sue fl jupiter malkoff publix juno jupiterisland"}, {"datetaken": "2006-03-13 14:15:06", "license": "1", "title": "IMG_4449", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/44/112493709_9a453546be_o.jpg", "secret": "9a453546be", "media": "photo", "latitude": "26.936762", "id": "112493709", "tags": "beach florida rita chips sue fl jupiter malkoff publix juno jupiterisland"}, {"datetaken": "2006-03-13 14:15:32", "license": "1", "title": "IMG_4450", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/51/112493726_3885c7ede4_o.jpg", "secret": "3885c7ede4", "media": "photo", "latitude": "26.936762", "id": "112493726", "tags": "beach florida rita chips sue fl jupiter malkoff publix juno jupiterisland"}, {"datetaken": "2006-03-13 18:45:09", "license": "1", "title": "IMG_4452", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/9/112493742_4c691cf040_o.jpg", "secret": "4c691cf040", "media": "photo", "latitude": "26.936762", "id": "112493742", "tags": "beach mall florida rita sue fl jupiter malkoff juno jupiterisland gardensmall"}, {"datetaken": "2006-03-13 20:10:14", "license": "1", "title": "IMG_4456", "text": "", "album_id": "72057594082085903", "longitude": "-80.100116", "url_o": "https://farm1.staticflickr.com/45/112499774_55681a6113_o.jpg", "secret": "55681a6113", "media": "photo", "latitude": "26.936762", "id": "112499774", "tags": "music david apple cd fiona fionaapple gilmour davidgilmour"}, {"datetaken": "2006-04-13 21:06:01", "license": "3", "title": "Jo", "text": "", "album_id": "72057594107464030", "longitude": "1.003961", "url_o": "https://farm1.staticflickr.com/54/128757225_ea4a79a5a2_o.jpg", "secret": "ea4a79a5a2", "media": "photo", "latitude": "51.277165", "id": "128757225", "tags": "home group christian meal passover kentish charthamhatch haggadah pict0991"}, {"datetaken": "2006-04-13 21:08:31", "license": "3", "title": "Graham, Mark, John and Rose", "text": "", "album_id": "72057594107464030", "longitude": "1.003961", "url_o": "https://farm1.staticflickr.com/48/128757293_3c722dcf1c_o.jpg", "secret": "3c722dcf1c", "media": "photo", "latitude": "51.277165", "id": "128757293", "tags": "home group christian meal passover kentish charthamhatch haggadah pict0992"}, {"datetaken": "2006-04-13 22:34:04", "license": "3", "title": "Our home group plus friends celebrate a Passover Meal", "text": "", "album_id": "72057594107464030", "longitude": "1.003961", "url_o": "https://farm1.staticflickr.com/49/128757360_57451290ac_o.jpg", "secret": "57451290ac", "media": "photo", "latitude": "51.277165", "id": "128757360", "tags": "home group christian meal passover kentish charthamhatch haggadah pict0995"}, {"datetaken": "2006-04-13 22:34:45", "license": "3", "title": "Vicki (behind Menora)", "text": "", "album_id": "72057594107464030", "longitude": "1.003961", "url_o": "https://farm1.staticflickr.com/45/128757426_710c917f5c_o.jpg", "secret": "710c917f5c", "media": "photo", "latitude": "51.277165", "id": "128757426", "tags": "home group christian meal passover kentish charthamhatch haggadah pict0996"}, {"datetaken": "2006-04-13 23:57:15", "license": "3", "title": "Chris, Ruth and Kay", "text": "", "album_id": "72057594107464030", "longitude": "1.003961", "url_o": "https://farm1.staticflickr.com/1/128757482_ddbda5d320_o.jpg", "secret": "ddbda5d320", "media": "photo", "latitude": "51.277165", "id": "128757482", "tags": "home group christian meal passover kentish charthamhatch haggadah pict0997"}, {"datetaken": "2006-04-13 23:57:21", "license": "3", "title": "Graham, Jenny, Barbs and Chris", "text": "", "album_id": "72057594107464030", "longitude": "1.003961", "url_o": "https://farm1.staticflickr.com/46/128757559_d2665b59de_o.jpg", "secret": "d2665b59de", "media": "photo", "latitude": "51.277165", "id": "128757559", "tags": "home group christian meal passover kentish charthamhatch haggadah pict0998"}, {"datetaken": "2006-04-13 23:58:01", "license": "3", "title": "Jo, Mark, Sue and Rose", "text": "", "album_id": "72057594107464030", "longitude": "1.003961", "url_o": "https://farm1.staticflickr.com/47/128757641_a20f5a39cf_o.jpg", "secret": "a20f5a39cf", "media": "photo", "latitude": "51.277165", "id": "128757641", "tags": "home group christian meal passover kentish charthamhatch haggadah pict1000"}, {"datetaken": "2006-04-13 23:58:16", "license": "3", "title": "Chris", "text": "", "album_id": "72057594107464030", "longitude": "1.003961", "url_o": "https://farm1.staticflickr.com/56/128757734_39687e4b62_o.jpg", "secret": "39687e4b62", "media": "photo", "latitude": "51.277165", "id": "128757734", "tags": "home group christian meal passover kentish charthamhatch haggadah pict1001"}, {"datetaken": "2006-04-14 00:02:43", "license": "3", "title": "Coconut cakes", "text": "", "album_id": "72057594107464030", "longitude": "1.003961", "url_o": "https://farm1.staticflickr.com/55/128757799_f0e0e3460a_o.jpg", "secret": "f0e0e3460a", "media": "photo", "latitude": "51.277165", "id": "128757799", "tags": "home group christian meal passover kentish charthamhatch haggadah pict1005"}, {"datetaken": "2006-04-14 00:03:22", "license": "3", "title": "Candles", "text": "", "album_id": "72057594107464030", "longitude": "1.003961", "url_o": "https://farm1.staticflickr.com/44/128757856_26a3c95af5_o.jpg", "secret": "26a3c95af5", "media": "photo", "latitude": "51.277165", "id": "128757856", "tags": "home candle group christian meal passover kentish charthamhatch haggadah pict1006"}, {"datetaken": "2006-04-14 00:04:50", "license": "3", "title": "Candle", "text": "", "album_id": "72057594107464030", "longitude": "1.003961", "url_o": "https://farm1.staticflickr.com/51/128757915_2b8180f816_o.jpg", "secret": "2b8180f816", "media": "photo", "latitude": "51.277165", "id": "128757915", "tags": "home candle group christian meal passover kentish charthamhatch haggadah pict1008"}, {"datetaken": "2006-04-14 00:06:14", "license": "3", "title": "Chris and Ruth", "text": "", "album_id": "72057594107464030", "longitude": "1.003961", "url_o": "https://farm1.staticflickr.com/44/128757985_7471c7127c_o.jpg", "secret": "7471c7127c", "media": "photo", "latitude": "51.277165", "id": "128757985", "tags": "home group christian meal passover kentish charthamhatch haggadah pict1011"}, {"datetaken": "2006-04-14 23:05:50", "license": "2", "title": "leah's scared", "text": "", "album_id": "72057594111789928", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/131521911_abafebf044_o.jpg", "secret": "abafebf044", "media": "photo", "latitude": "0", "id": "131521911", "tags": "portrait tufts oxfamcafe"}, {"datetaken": "2006-04-14 23:07:59", "license": "2", "title": "ef & the harpoons", "text": "", "album_id": "72057594111789928", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/131522312_a13596e69b_o.jpg", "secret": "a13596e69b", "media": "photo", "latitude": "0", "id": "131522312", "tags": "concert massachusetts ezra tufts trunker oxfamcafe ezrafurmanandtheharpoons yftm"}, {"datetaken": "2006-04-14 23:10:57", "license": "2", "title": "ef & the harpoons", "text": "", "album_id": "72057594111789928", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/131522503_2973f9df35_o.jpg", "secret": "2973f9df35", "media": "photo", "latitude": "0", "id": "131522503", "tags": "concert massachusetts tufts oxfamcafe ezrafurmanandtheharpoons"}, {"datetaken": "2006-04-14 23:11:38", "license": "2", "title": "kisses", "text": "", "album_id": "72057594111789928", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/131522753_9dae8b0ce3_o.jpg", "secret": "9dae8b0ce3", "media": "photo", "latitude": "0", "id": "131522753", "tags": "kiss chelsey trunker"}, {"datetaken": "2006-04-14 23:12:08", "license": "2", "title": "silly little hipsters", "text": "", "album_id": "72057594111789928", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/131526391_8f48b35d45_o.jpg", "secret": "8f48b35d45", "media": "photo", "latitude": "0", "id": "131526391", "tags": "bw laughing concert rachel tufts oxfamcafe"}, {"datetaken": "2006-04-14 23:13:15", "license": "2", "title": "we all tasted it like tv detectives", "text": "", "album_id": "72057594111789928", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/131522845_88c753f060_o.jpg", "secret": "88c753f060", "media": "photo", "latitude": "0", "id": "131522845", "tags": "kitchen baking sugar cocaine"}, {"datetaken": "2006-04-14 23:15:39", "license": "2", "title": "boyfriends", "text": "", "album_id": "72057594111789928", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/131523611_c2e3eb1e8e_o.jpg", "secret": "c2e3eb1e8e", "media": "photo", "latitude": "0", "id": "131523611", "tags": "party joe makingfaces trunker"}, {"datetaken": "2006-04-14 23:45:24", "license": "2", "title": "movie star", "text": "", "album_id": "72057594111789928", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/131524250_307c0b5a08_o.jpg", "secret": "307c0b5a08", "media": "photo", "latitude": "0", "id": "131524250", "tags": "party portrait stephanie makingfaces onthephone trunker"}, {"datetaken": "2006-04-14 23:58:40", "license": "2", "title": "she is hot", "text": "", "album_id": "72057594111789928", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/131524702_a6fa04e74d_o.jpg", "secret": "a6fa04e74d", "media": "photo", "latitude": "0", "id": "131524702", "tags": "party portrait sarah makingfaces trunker"}, {"datetaken": "2006-04-14 23:59:57", "license": "2", "title": "chug!chug!chug!trunk!trunk!trunk!", "text": "", "album_id": "72057594111789928", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/131523179_429b6c131b_o.jpg", "secret": "429b6c131b", "media": "photo", "latitude": "0", "id": "131523179", "tags": "party motion laughing lj joe stephanie chelsey trunker"}, {"datetaken": "2006-04-15 00:44:45", "license": "2", "title": "checking for ticks", "text": "", "album_id": "72057594111789928", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/131525080_d1ae5d41b0_o.jpg", "secret": "d1ae5d41b0", "media": "photo", "latitude": "0", "id": "131525080", "tags": "rosie joe makingfaces trunker"}, {"datetaken": "2006-04-15 01:24:23", "license": "2", "title": "rosie and matthew monkeys", "text": "", "album_id": "72057594111789928", "longitude": "-71.120692", "url_o": "https://farm1.staticflickr.com/47/131525439_c6b45234f5_o.jpg", "secret": "c6b45234f5", "media": "photo", "latitude": "42.409238", "id": "131525439", "tags": "night campus massachusetts rosie tufts hillel"}, {"datetaken": "2006-04-15 11:57:18", "license": "2", "title": "pesach!", "text": "", "album_id": "72057594111789928", "longitude": "-71.121336", "url_o": "https://farm1.staticflickr.com/49/131523445_d4294f3ea0_o.jpg", "secret": "d4294f3ea0", "media": "photo", "latitude": "42.405222", "id": "131523445", "tags": "food dininghall tufts judaism passover dewick"}, {"datetaken": "2006-04-15 11:57:39", "license": "2", "title": "mmm... bulk canned fish", "text": "", "album_id": "72057594111789928", "longitude": "-71.121336", "url_o": "https://farm1.staticflickr.com/51/131526005_dc5509ccb6_o.jpg", "secret": "dc5509ccb6", "media": "photo", "latitude": "42.405222", "id": "131526005", "tags": "dininghall eggs tufts passover dewick gefiltefish gefilte"}, {"datetaken": "2006-04-15 15:53:41", "license": "2", "title": "portaits", "text": "", "album_id": "72057594111789928", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/131526510_13934274e6_o.jpg", "secret": "13934274e6", "media": "photo", "latitude": "0", "id": "131526510", "tags": "boston mfa massachusetts hockney"}, {"datetaken": "2006-04-16 11:42:27", "license": "2", "title": "today's hymns will be...", "text": "", "album_id": "72057594111789928", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/131525530_e4ce3c837e_o.jpg", "secret": "e4ce3c837e", "media": "photo", "latitude": "0", "id": "131525530", "tags": "church massachusetts somerville pulpit lectern firstchurchsomerville"}, {"datetaken": "2006-04-16 11:43:27", "license": "2", "title": "my sanctuary", "text": "", "album_id": "72057594111789928", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/131526079_cb612b42c3_o.jpg", "secret": "cb612b42c3", "media": "photo", "latitude": "0", "id": "131526079", "tags": "church massachusetts piano somerville pews firstchurchsomerville"}, {"datetaken": "2006-04-16 12:52:17", "license": "2", "title": "happy, all!", "text": "", "album_id": "72057594111789928", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/131523861_fa28e3cc90_o.jpg", "secret": "fa28e3cc90", "media": "photo", "latitude": "0", "id": "131523861", "tags": "sun easter flag massachusetts somerville"}, {"datetaken": "2006-04-16 12:57:02", "license": "2", "title": "magnolia blossoms delight", "text": "", "album_id": "72057594111789928", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/131525739_107e83a578_o.jpg", "secret": "107e83a578", "media": "photo", "latitude": "0", "id": "131525739", "tags": "flower spring massachusetts somerville magnolia"}, {"datetaken": "2007-04-02 16:45:52", "license": "3", "title": "Matza Ball Soup - YUM!", "text": "", "album_id": "72157600044428041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/444493974_ec8ee3c504_o.jpg", "secret": "76da47a08f", "media": "photo", "latitude": "0", "id": "444493974", "tags": "food passover2007"}, {"datetaken": "2007-04-02 16:45:56", "license": "3", "title": "Green Beans", "text": "", "album_id": "72157600044428041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/444502039_122c1c2a2a_o.jpg", "secret": "eb3b7b07bd", "media": "photo", "latitude": "0", "id": "444502039", "tags": "food passover2007"}, {"datetaken": "2007-04-02 16:46:02", "license": "3", "title": "Mom's Brisket - Before the gravy was poured over it.", "text": "", "album_id": "72157600044428041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/444502311_fa4f48f069_o.jpg", "secret": "173218dfce", "media": "photo", "latitude": "0", "id": "444502311", "tags": "food passover2007"}, {"datetaken": "2007-04-02 17:34:48", "license": "3", "title": "", "text": "", "album_id": "72157600044428041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/444495500_174566aa04_o.jpg", "secret": "359e6b85cb", "media": "photo", "latitude": "0", "id": "444495500", "tags": "passover2007"}, {"datetaken": "2007-04-02 17:35:12", "license": "3", "title": "Preparing the table", "text": "", "album_id": "72157600044428041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/251/444495734_4ba5130c67_o.jpg", "secret": "d7600fa0ae", "media": "photo", "latitude": "0", "id": "444495734", "tags": "passover2007"}, {"datetaken": "2007-04-02 17:42:05", "license": "3", "title": "Passover - First Night - Charoset - YUM!", "text": "", "album_id": "72157600044428041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/444900953_5497cf7c7c_o.jpg", "secret": "8f1bfbbc89", "media": "photo", "latitude": "0", "id": "444900953", "tags": "food passover2007"}, {"datetaken": "2007-04-02 17:43:53", "license": "3", "title": "Passover First Night - Gefilte Fish", "text": "", "album_id": "72157600044428041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/444895080_46499bdf82_o.jpg", "secret": "422ba31ac9", "media": "photo", "latitude": "0", "id": "444895080", "tags": "food passover2007"}, {"datetaken": "2007-04-02 17:51:27", "license": "3", "title": "The Seder Plate", "text": "", "album_id": "72157600044428041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/220/444499900_0dbac19b67_o.jpg", "secret": "e722d2b55e", "media": "photo", "latitude": "0", "id": "444499900", "tags": "passover2007"}, {"datetaken": "2007-04-02 17:51:35", "license": "3", "title": "The Four Questions", "text": "", "album_id": "72157600044428041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/243/444499566_978b4c2d88_o.jpg", "secret": "dcf0492deb", "media": "photo", "latitude": "0", "id": "444499566", "tags": "passover2007"}, {"datetaken": "2007-04-03 05:32:14", "license": "3", "title": "Sunday School Project for the Passover Seder", "text": "", "album_id": "72157600044428041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/444903075_46cf41be67_o.jpg", "secret": "7a2e33f126", "media": "photo", "latitude": "0", "id": "444903075", "tags": "sabina passover2007"}, {"datetaken": "2007-04-03 05:32:41", "license": "3", "title": "Proud Artist!", "text": "", "album_id": "72157600044428041", "longitude": "0", "url_o": "https://farm1.staticflickr.com/209/444902875_61eb54473f_o.jpg", "secret": "c6da654f6b", "media": "photo", "latitude": "0", "id": "444902875", "tags": "sabina passover2007"}, {"datetaken": "2007-04-02 17:11:00", "license": "2", "title": "SederTable", "text": "", "album_id": "72157600046387670", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/445432751_5a1411b8b5_o.jpg", "secret": "cf07a031a0", "media": "photo", "latitude": "0", "id": "445432751", "tags": "family food passover seder"}, {"datetaken": "2007-04-02 18:17:43", "license": "2", "title": "DerekMaror", "text": "", "album_id": "72157600046387670", "longitude": "0", "url_o": "https://farm1.staticflickr.com/227/445423976_b6f33db9b6_o.jpg", "secret": "89a06e2b6a", "media": "photo", "latitude": "0", "id": "445423976", "tags": "family food passover seder"}, {"datetaken": "2007-04-02 18:20:26", "license": "2", "title": "Chicken!", "text": "", "album_id": "72157600046387670", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/445423196_68338800ec_o.jpg", "secret": "70e019aaf2", "media": "photo", "latitude": "0", "id": "445423196", "tags": "family food passover seder"}, {"datetaken": "2007-04-02 18:21:41", "license": "2", "title": "ChickenLiver!", "text": "", "album_id": "72157600046387670", "longitude": "0", "url_o": "https://farm1.staticflickr.com/197/445427183_a40548ff2c_o.jpg", "secret": "ecd824dda2", "media": "photo", "latitude": "0", "id": "445427183", "tags": "family food passover seder"}, {"datetaken": "2007-04-02 18:22:13", "license": "2", "title": "ZoeMaror", "text": "", "album_id": "72157600046387670", "longitude": "0", "url_o": "https://farm1.staticflickr.com/193/445435265_6a057a28da_o.jpg", "secret": "4a71a165f8", "media": "photo", "latitude": "0", "id": "445435265", "tags": "family food passover seder"}, {"datetaken": "2007-04-02 18:44:09", "license": "2", "title": "NoSoup", "text": "", "album_id": "72157600046387670", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/445427986_bbc8538ab1_o.jpg", "secret": "7887693d81", "media": "photo", "latitude": "0", "id": "445427986", "tags": "family food passover seder"}, {"datetaken": "2007-04-02 18:45:22", "license": "2", "title": "Soup", "text": "", "album_id": "72157600046387670", "longitude": "0", "url_o": "https://farm1.staticflickr.com/207/445433439_8ec129208b_o.jpg", "secret": "40bf345b93", "media": "photo", "latitude": "0", "id": "445433439", "tags": "family food passover seder"}, {"datetaken": "2007-04-02 18:53:51", "license": "2", "title": "HappyRemi", "text": "", "album_id": "72157600046387670", "longitude": "0", "url_o": "https://farm1.staticflickr.com/224/445429933_82cdd1afb0_o.jpg", "secret": "874dd63d43", "media": "photo", "latitude": "0", "id": "445429933", "tags": "family food passover seder"}, {"datetaken": "2007-04-02 19:01:43", "license": "2", "title": "Supper", "text": "", "album_id": "72157600046387670", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/445430358_0c3654faf9_o.jpg", "secret": "919a79f5bd", "media": "photo", "latitude": "0", "id": "445430358", "tags": "family food passover seder"}, {"datetaken": "2007-04-02 19:20:52", "license": "2", "title": "NoMoreChicken", "text": "", "album_id": "72157600046387670", "longitude": "0", "url_o": "https://farm1.staticflickr.com/235/445427242_532176c58a_o.jpg", "secret": "be3cf0b60b", "media": "photo", "latitude": "0", "id": "445427242", "tags": "family food passover seder"}, {"datetaken": "2007-04-02 19:21:18", "license": "2", "title": "Tsimmis&Matzo", "text": "", "album_id": "72157600046387670", "longitude": "0", "url_o": "https://farm1.staticflickr.com/203/445431052_ebfc56efbb_o.jpg", "secret": "6dc258e880", "media": "photo", "latitude": "0", "id": "445431052", "tags": "family food passover seder"}, {"datetaken": "2007-04-02 19:35:42", "license": "2", "title": "Matzotorte", "text": "", "album_id": "72157600046387670", "longitude": "0", "url_o": "https://farm1.staticflickr.com/230/445430433_bdd5f27e11_o.jpg", "secret": "f235559c65", "media": "photo", "latitude": "0", "id": "445430433", "tags": "family food passover seder"}, {"datetaken": "2007-04-02 19:35:50", "license": "2", "title": "DessertPlatter", "text": "", "album_id": "72157600046387670", "longitude": "0", "url_o": "https://farm1.staticflickr.com/191/445428339_427863923f_o.jpg", "secret": "7ceb3a8fe6", "media": "photo", "latitude": "0", "id": "445428339", "tags": "family food passover seder"}, {"datetaken": "2007-04-02 19:50:56", "license": "2", "title": "AfikomenKiss", "text": "", "album_id": "72157600046387670", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/445426275_bd475119b8_o.jpg", "secret": "09af81b2fa", "media": "photo", "latitude": "0", "id": "445426275", "tags": "family food passover seder"}, {"datetaken": "2007-04-02 20:08:54", "license": "2", "title": "Family", "text": "", "album_id": "72157600046387670", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/445429517_f749a75fd5_o.jpg", "secret": "bc5c6c0af1", "media": "photo", "latitude": "0", "id": "445429517", "tags": "family food passover seder"}, {"datetaken": "2007-02-11 13:22:15", "license": "2", "title": "Lincoln College interior", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/386606162_296268bfc5_o.jpg", "secret": "296268bfc5", "media": "photo", "latitude": "0", "id": "386606162", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:22:45", "license": "2", "title": "Bronze Serpent", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/386607308_d1b03042a1_o.jpg", "secret": "d1b03042a1", "media": "photo", "latitude": "0", "id": "386607308", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:23:16", "license": "2", "title": "Ascension of Elijah", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/386607664_4f3b25cb65_o.jpg", "secret": "4f3b25cb65", "media": "photo", "latitude": "0", "id": "386607664", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:23:36", "license": "2", "title": "Jonah and the Whale", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/386607469_2fc76b04f8_o.jpg", "secret": "2fc76b04f8", "media": "photo", "latitude": "0", "id": "386607469", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:24:02", "license": "2", "title": "Adam & Eve - the Fall of Humanity", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/386606725_f62da0b16b_o.jpg", "secret": "f62da0b16b", "media": "photo", "latitude": "0", "id": "386606725", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:24:16", "license": "2", "title": "Exodus", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/386606960_1a474730fd_o.jpg", "secret": "1a474730fd", "media": "photo", "latitude": "0", "id": "386606960", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:24:45", "license": "2", "title": "Pharaoh and his chariot", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/386607018_2df30a2677_o.jpg", "secret": "2df30a2677", "media": "photo", "latitude": "0", "id": "386607018", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:25:05", "license": "2", "title": "Passover", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/386607152_cf4711cca9_o.jpg", "secret": "cf4711cca9", "media": "photo", "latitude": "0", "id": "386607152", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:25:12", "license": "2", "title": "Passover Lamb", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/386607201_805302624a_o.jpg", "secret": "805302624a", "media": "photo", "latitude": "0", "id": "386607201", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:25:28", "license": "2", "title": "Bronze Serpent detail", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/386607359_3e2880ff22_o.jpg", "secret": "3e2880ff22", "media": "photo", "latitude": "0", "id": "386607359", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:25:34", "license": "2", "title": "Detail of Israelites looking at the Bronze Serpent", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/389296614_bfa9e7b5d9_o.jpg", "secret": "bfa9e7b5d9", "media": "photo", "latitude": "0", "id": "389296614", "tags": "windows college chapel oxford lincoln vanlinge"}, {"datetaken": "2007-02-11 13:26:02", "license": "2", "title": "Nativity of Christ", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/386606906_59d154203d_o.jpg", "secret": "59d154203d", "media": "photo", "latitude": "0", "id": "386606906", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:26:22", "license": "2", "title": "Detail of Christ being baptised by St John", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/389296617_77708580a3_o.jpg", "secret": "77708580a3", "media": "photo", "latitude": "0", "id": "389296617", "tags": "windows college chapel oxford lincoln vanlinge"}, {"datetaken": "2007-02-11 13:26:31", "license": "2", "title": "Baptism of Christ", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/386607107_4e67670217_o.jpg", "secret": "4e67670217", "media": "photo", "latitude": "0", "id": "386607107", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:26:43", "license": "2", "title": "Last Supper", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/386607256_a9849da873_o.jpg", "secret": "a9849da873", "media": "photo", "latitude": "0", "id": "386607256", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:27:19", "license": "2", "title": "Golgotha detail", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/389418367_2c80a163eb_o.jpg", "secret": "2c80a163eb", "media": "photo", "latitude": "0", "id": "389418367", "tags": "windows college chapel oxford lincoln vanlinge"}, {"datetaken": "2007-02-11 13:27:37", "license": "2", "title": "Crucifixion of Christ", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/386607418_3e0474021a_o.jpg", "secret": "3e0474021a", "media": "photo", "latitude": "0", "id": "386607418", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:28:10", "license": "2", "title": "Mary Magdalene in the Garden", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/386607606_71f03dca63_o.jpg", "secret": "71f03dca63", "media": "photo", "latitude": "0", "id": "386607606", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:28:33", "license": "2", "title": "Resurrection of the Lord", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/386607533_fac2cee3f2_o.jpg", "secret": "fac2cee3f2", "media": "photo", "latitude": "0", "id": "386607533", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:28:52", "license": "2", "title": "Ascension of the Lord", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/386607773_7bb934fdfc_o.jpg", "secret": "7bb934fdfc", "media": "photo", "latitude": "0", "id": "386607773", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:29:07", "license": "2", "title": "Men of Galilee...", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/386607845_e690436730_o.jpg", "secret": "e690436730", "media": "photo", "latitude": "0", "id": "386607845", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:33:25", "license": "2", "title": "King David", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/386607983_2565d97136_o.jpg", "secret": "2565d97136", "media": "photo", "latitude": "0", "id": "386607983", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:33:37", "license": "2", "title": "Arms of Lincoln & Williams", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/386607897_e754e8484e_o.jpg", "secret": "e754e8484e", "media": "photo", "latitude": "0", "id": "386607897", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:35:06", "license": "2", "title": "Ezekiel", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/386608064_3f17dbffe8_o.jpg", "secret": "3f17dbffe8", "media": "photo", "latitude": "0", "id": "386608064", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:35:48", "license": "2", "title": "Apostles", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/386608279_ed9bed5260_o.jpg", "secret": "ed9bed5260", "media": "photo", "latitude": "0", "id": "386608279", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:36:03", "license": "2", "title": "Prophets", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/386608201_72ec66fe6c_o.jpg", "secret": "72ec66fe6c", "media": "photo", "latitude": "0", "id": "386608201", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:36:15", "license": "2", "title": "Detail of an angel", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/389296618_a1908789b5_o.jpg", "secret": "a1908789b5", "media": "photo", "latitude": "0", "id": "389296618", "tags": "windows college chapel oxford lincoln vanlinge"}, {"datetaken": "2007-02-11 13:36:28", "license": "2", "title": "Detail of Zachariah's boots", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/389296622_8842e92043_o.jpg", "secret": "8842e92043", "media": "photo", "latitude": "0", "id": "389296622", "tags": "windows college chapel oxford lincoln vanlinge"}, {"datetaken": "2007-02-11 13:36:53", "license": "2", "title": "Jonah's Whale!", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/386608129_a7a6e71f78_o.jpg", "secret": "a7a6e71f78", "media": "photo", "latitude": "0", "id": "386608129", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:37:08", "license": "2", "title": "Detail of Elisha", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/389296628_40a773e7b8_o.jpg", "secret": "40a773e7b8", "media": "photo", "latitude": "0", "id": "389296628", "tags": "windows college chapel oxford lincoln vanlinge"}, {"datetaken": "2007-02-11 13:39:19", "license": "2", "title": "Through the glass doors", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/386605721_31a0d3c3b3_o.jpg", "secret": "31a0d3c3b3", "media": "photo", "latitude": "0", "id": "386605721", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:42:41", "license": "2", "title": "Priest of Israel", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/386606455_e47862da43_o.jpg", "secret": "e47862da43", "media": "photo", "latitude": "0", "id": "386606455", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:45:01", "license": "2", "title": "Lincoln College ceiling", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/386606093_c0bb767c7e_o.jpg", "secret": "c0bb767c7e", "media": "photo", "latitude": "0", "id": "386606093", "tags": "wood roof college heraldry chapel ceiling oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:45:47", "license": "2", "title": "Ceiling and Pediment", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/386606036_022aa59967_o.jpg", "secret": "022aa59967", "media": "photo", "latitude": "0", "id": "386606036", "tags": "wood roof college heraldry chapel ceiling oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:46:34", "license": "2", "title": "Lincoln College chapel screen", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/386605989_2f4f042985_o.jpg", "secret": "2f4f042985", "media": "photo", "latitude": "0", "id": "386605989", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:47:47", "license": "2", "title": "Aaron", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/386606509_0592a0f070_o.jpg", "secret": "0592a0f070", "media": "photo", "latitude": "0", "id": "386606509", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:52:41", "license": "2", "title": "Lincoln College east window", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/386606595_54e8b05474_o.jpg", "secret": "54e8b05474", "media": "photo", "latitude": "0", "id": "386606595", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-02-11 13:53:14", "license": "2", "title": "Through the screen", "text": "", "album_id": "72157594529682304", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/386605899_b9740144ef_o.jpg", "secret": "b9740144ef", "media": "photo", "latitude": "0", "id": "386605899", "tags": "college chapel oxford lincoln bernardvanlinge"}, {"datetaken": "2007-04-03 21:22:00", "license": "3", "title": "The Black Angels 1.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/446634997_0b11a6db7a_o.jpg", "secret": "dc4d2fa01d", "media": "photo", "latitude": "0", "id": "446634997", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 21:59:20", "license": "3", "title": "The Black Angels 2.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/446636523_ba410f3dc8_o.jpg", "secret": "844a7723d6", "media": "photo", "latitude": "0", "id": "446636523", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 21:59:47", "license": "3", "title": "The Black Angels 3.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/251/446638085_7bb507b5e7_o.jpg", "secret": "a99fe4b306", "media": "photo", "latitude": "0", "id": "446638085", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:00:52", "license": "3", "title": "The Black Angels 4.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/221/446632330_2742b20323_o.jpg", "secret": "1aa9543ffd", "media": "photo", "latitude": "0", "id": "446632330", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:04:56", "license": "3", "title": "The Black Angels 6.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/446641333_268fc9da47_o.jpg", "secret": "163cfda7f8", "media": "photo", "latitude": "0", "id": "446641333", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:08:33", "license": "3", "title": "The Black Angels 9.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/215/446634550_33f3875132_o.jpg", "secret": "9ec2114961", "media": "photo", "latitude": "0", "id": "446634550", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:11:01", "license": "3", "title": "The Black Angels 14.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/226/446635527_00937ad256_o.jpg", "secret": "3772de2c07", "media": "photo", "latitude": "0", "id": "446635527", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:12:09", "license": "3", "title": "The Black Angels 15.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/215/446629052_cf7060a73c_o.jpg", "secret": "6fe0d70f4f", "media": "photo", "latitude": "0", "id": "446629052", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:12:51", "license": "3", "title": "The Black Angels 16.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/243/446635793_6a277cdc94_o.jpg", "secret": "012f7b8587", "media": "photo", "latitude": "0", "id": "446635793", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:14:53", "license": "3", "title": "The Black Angels 17.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/198/446636019_fa303a20ff_o.jpg", "secret": "cad85f1b12", "media": "photo", "latitude": "0", "id": "446636019", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:19:19", "license": "3", "title": "The Black Angels 19.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/225/446629608_3274ac5ed3_o.jpg", "secret": "6998127f51", "media": "photo", "latitude": "0", "id": "446629608", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:22:09", "license": "3", "title": "The Black Angels 22.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/446630162_6c026ae913_o.jpg", "secret": "310963180a", "media": "photo", "latitude": "0", "id": "446630162", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:22:20", "license": "3", "title": "The Black Angels 23.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/219/446630228_d0273d3b7f_o.jpg", "secret": "681c58e63d", "media": "photo", "latitude": "0", "id": "446630228", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:23:26", "license": "3", "title": "The Black Angels 25.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/446630456_48228441cb_o.jpg", "secret": "576ac32ce3", "media": "photo", "latitude": "0", "id": "446630456", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:23:44", "license": "3", "title": "The Black Angels 26.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/213/446637353_ac00962825_o.jpg", "secret": "f7ce08ab58", "media": "photo", "latitude": "0", "id": "446637353", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:25:26", "license": "3", "title": "The Black Angels 29.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/239/446637781_44af20a90a_o.jpg", "secret": "10a2b63e34", "media": "photo", "latitude": "0", "id": "446637781", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:25:40", "license": "3", "title": "The Black Angels 30.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/238/446638243_bd7d796292_o.jpg", "secret": "5aa45abea8", "media": "photo", "latitude": "0", "id": "446638243", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:47:38", "license": "3", "title": "The Black Angels 42.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/446632712_b35619301b_o.jpg", "secret": "96cc8910d4", "media": "photo", "latitude": "0", "id": "446632712", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:48:02", "license": "3", "title": "The Black Angels 43.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/446639877_cb1d421703_o.jpg", "secret": "588ec9f4ea", "media": "photo", "latitude": "0", "id": "446639877", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:49:30", "license": "3", "title": "The Black Angels 47.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/446640285_5a670889f7_o.jpg", "secret": "e721073667", "media": "photo", "latitude": "0", "id": "446640285", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:51:55", "license": "3", "title": "The Black Angels 48.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/446640475_b58566b72d_o.jpg", "secret": "a650619382", "media": "photo", "latitude": "0", "id": "446640475", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:52:31", "license": "3", "title": "The Black Angels 49.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/223/446640625_e589137fd7_o.jpg", "secret": "7b5faf3431", "media": "photo", "latitude": "0", "id": "446640625", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:55:12", "license": "3", "title": "The Black Angels 52.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/201/446633846_d59e5dd796_o.jpg", "secret": "0fd87a9715", "media": "photo", "latitude": "0", "id": "446633846", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:56:14", "license": "3", "title": "The Black Angels 53.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/217/446641101_53fb7b2e41_o.jpg", "secret": "563f5a7147", "media": "photo", "latitude": "0", "id": "446641101", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-03 22:59:05", "license": "3", "title": "The Black Angels 54.jpg", "text": "", "album_id": "72157600048223185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/446641219_44abfb6102_o.jpg", "secret": "d0ff05ff4a", "media": "photo", "latitude": "0", "id": "446641219", "tags": "columbus ohio music black rock angels passover littlebrothers drone theblackangels"}, {"datetaken": "2007-04-04 17:04:19", "license": "1", "title": "alien v. predator: the passover", "text": "", "album_id": "72157600050438193", "longitude": "0", "url_o": "https://farm1.staticflickr.com/221/447843090_ce6238dae6_o.jpg", "secret": "a883832ace", "media": "photo", "latitude": "0", "id": "447843090", "tags": "jamie tali passover"}, {"datetaken": "2007-04-04 17:04:26", "license": "1", "title": "alien v. predator: the passover", "text": "", "album_id": "72157600050438193", "longitude": "0", "url_o": "https://farm1.staticflickr.com/203/447843320_a2ce54fcba_o.jpg", "secret": "267ef3e1a7", "media": "photo", "latitude": "0", "id": "447843320", "tags": "jamie tali passover"}, {"datetaken": "2007-04-04 17:06:47", "license": "1", "title": "alien v. predator: the passover", "text": "", "album_id": "72157600050438193", "longitude": "0", "url_o": "https://farm1.staticflickr.com/200/447847363_741104b815_o.jpg", "secret": "72c3a93849", "media": "photo", "latitude": "0", "id": "447847363", "tags": "jamie tali passover"}, {"datetaken": "2007-04-04 17:37:55", "license": "1", "title": "alien v. predator: the passover", "text": "", "album_id": "72157600050438193", "longitude": "0", "url_o": "https://farm1.staticflickr.com/237/447847629_1e2c8e6e29_o.jpg", "secret": "dad80102c6", "media": "photo", "latitude": "0", "id": "447847629", "tags": "jamie tali passover"}, {"datetaken": "2007-04-04 17:38:15", "license": "1", "title": "alien v. predator: the passover", "text": "", "album_id": "72157600050438193", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/447847933_c8df79d02c_o.jpg", "secret": "7482d82d2a", "media": "photo", "latitude": "0", "id": "447847933", "tags": "jamie tali passover"}, {"datetaken": "2007-04-04 17:38:32", "license": "1", "title": "alien v. predator: the passover", "text": "", "album_id": "72157600050438193", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/447848181_b2cfd35c4d_o.jpg", "secret": "741248e460", "media": "photo", "latitude": "0", "id": "447848181", "tags": "jamie tali passover"}, {"datetaken": "2007-04-04 19:40:13", "license": "1", "title": "alien v. predator: the passover", "text": "", "album_id": "72157600050438193", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/447844640_250a192da6_o.jpg", "secret": "928b9ed64d", "media": "photo", "latitude": "0", "id": "447844640", "tags": "jamie tali passover"}, {"datetaken": "2007-04-04 19:41:17", "license": "1", "title": "alien v. predator: the passover", "text": "", "album_id": "72157600050438193", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/447844892_ae33c24c42_o.jpg", "secret": "af339afaf4", "media": "photo", "latitude": "0", "id": "447844892", "tags": "jamie tali passover"}, {"datetaken": "2007-04-04 19:42:34", "license": "1", "title": "alien v. predator: the passover", "text": "", "album_id": "72157600050438193", "longitude": "0", "url_o": "https://farm1.staticflickr.com/246/447848941_3baca35439_o.jpg", "secret": "b8216a55e7", "media": "photo", "latitude": "0", "id": "447848941", "tags": "jamie tali passover"}, {"datetaken": "2007-04-04 19:42:43", "license": "1", "title": "alien v. predator: the passover", "text": "", "album_id": "72157600050438193", "longitude": "0", "url_o": "https://farm1.staticflickr.com/249/447845518_a75f02adb9_o.jpg", "secret": "019e5d1006", "media": "photo", "latitude": "0", "id": "447845518", "tags": "jamie tali passover"}, {"datetaken": "2007-04-04 19:57:28", "license": "1", "title": "alien v. predator: the passover", "text": "", "album_id": "72157600050438193", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/447849525_a6cf5fefe9_o.jpg", "secret": "4ea4e06af5", "media": "photo", "latitude": "0", "id": "447849525", "tags": "jamie tali passover"}, {"datetaken": "2007-04-02 20:44:29", "license": "3", "title": "Passover Begins", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/451565320_9442b51c99_o.jpg", "secret": "7095ca3d32", "media": "photo", "latitude": "0", "id": "451565320", "tags": "joe merle passover seder"}, {"datetaken": "2007-04-02 20:44:57", "license": "3", "title": "Sam Listens", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/451560498_188f1d8d4b_o.jpg", "secret": "5fb0b1f956", "media": "photo", "latitude": "0", "id": "451560498", "tags": "dinner passover samfelder seder"}, {"datetaken": "2007-04-02 20:45:22", "license": "3", "title": "Candles", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/230/451572663_6003e7f89f_o.jpg", "secret": "4061fe5cbd", "media": "photo", "latitude": "0", "id": "451572663", "tags": "lighting dinner candles passover seder"}, {"datetaken": "2007-04-02 20:46:11", "license": "3", "title": "Julie Listens", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/189/451571605_a86d187aeb_o.jpg", "secret": "21dee6ba0d", "media": "photo", "latitude": "0", "id": "451571605", "tags": "dinner julie passover seder"}, {"datetaken": "2007-04-02 20:48:02", "license": "3", "title": "Seder Plate", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/451557210_090ef1219d_o.jpg", "secret": "08d7b97775", "media": "photo", "latitude": "0", "id": "451557210", "tags": "dinner herbs egg plate lamb bitter passover shank seder"}, {"datetaken": "2007-04-02 20:48:50", "license": "3", "title": "Egg in Saltwater", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/216/451556124_4c80403ae4_o.jpg", "secret": "ef510c49ac", "media": "photo", "latitude": "0", "id": "451556124", "tags": "dinner wine egg herb bitter saltwater passover seder"}, {"datetaken": "2007-04-02 20:50:21", "license": "3", "title": "Wine", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/240/451546621_d8df1fda8d_o.jpg", "secret": "6f5866be89", "media": "photo", "latitude": "0", "id": "451546621", "tags": "dinner wine passover samfelder seder"}, {"datetaken": "2007-04-02 20:50:42", "license": "3", "title": "Reading the Questions", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/204/451531828_4041640548_o.jpg", "secret": "48a12123d6", "media": "photo", "latitude": "0", "id": "451531828", "tags": "dinner julie aaron plate merle passover seder haggadah"}, {"datetaken": "2007-04-02 20:53:56", "license": "3", "title": "Hand Washing (Shhh! I've just washed)", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/196/451530988_7dff885b04_o.jpg", "secret": "c54a2dd89f", "media": "photo", "latitude": "0", "id": "451530988", "tags": "julie passover seder handwashing"}, {"datetaken": "2007-04-02 20:56:58", "license": "3", "title": "Merle Follows", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/243/451529794_0b92b83672_o.jpg", "secret": "3c57d8c8ed", "media": "photo", "latitude": "0", "id": "451529794", "tags": "dinner merle passover seder haggadah"}, {"datetaken": "2007-04-02 20:57:16", "license": "3", "title": "Bitter Herbs", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/237/451542217_8715b9c345_o.jpg", "secret": "1540121283", "media": "photo", "latitude": "0", "id": "451542217", "tags": "dinner herbs bitter passover seder fourquestions"}, {"datetaken": "2007-04-02 21:00:46", "license": "3", "title": "4 Questions", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/240/451525434_3dc1513804_o.jpg", "secret": "0ade720ac1", "media": "photo", "latitude": "0", "id": "451525434", "tags": "dinner passover seder haggadah fourquestions"}, {"datetaken": "2007-04-02 21:05:36", "license": "3", "title": "Lamb Shank", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/451537633_8658d4a8d0_o.jpg", "secret": "4e9a75cd2f", "media": "photo", "latitude": "0", "id": "451537633", "tags": "dinner julie lamb passover shank seder fourquestions"}, {"datetaken": "2007-04-02 21:06:35", "license": "3", "title": "Matzah", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/451523204_94e7173fa1_o.jpg", "secret": "85c5a9cabb", "media": "photo", "latitude": "0", "id": "451523204", "tags": "dinner joe passover matzah samfelder seder fourquestions"}, {"datetaken": "2007-04-02 21:22:31", "license": "3", "title": "Is this Kosher for Passover?", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/451522124_6a46b12c7c_o.jpg", "secret": "63b6b4dabf", "media": "photo", "latitude": "0", "id": "451522124", "tags": "dinner wine joe kosher passover seder manischewitz"}, {"datetaken": "2007-04-02 21:26:57", "license": "3", "title": "Hillel Sandwich Time", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/251/451517550_af7cf849b3_o.jpg", "secret": "1305ea16bc", "media": "photo", "latitude": "0", "id": "451517550", "tags": "dinner herbs plate lamb bitter passover shank seder maror charosis fourquestions"}, {"datetaken": "2007-04-02 21:27:31", "license": "3", "title": "Aaron", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/215/451528843_a13e27b80c_o.jpg", "secret": "e7dea9b579", "media": "photo", "latitude": "0", "id": "451528843", "tags": "dinner aaron passover seder"}, {"datetaken": "2007-04-02 21:27:50", "license": "3", "title": "Merle Makes a Sandwich", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/201/451514636_7e6f6daed5_o.jpg", "secret": "e079d516b4", "media": "photo", "latitude": "0", "id": "451514636", "tags": "dinner joe merle passover samfelder seder fourquestions hillelsandwich"}, {"datetaken": "2007-04-02 21:31:57", "license": "3", "title": "Sam Sips Soup", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/217/451513506_15bd13baf0_o.jpg", "secret": "104543a361", "media": "photo", "latitude": "0", "id": "451513506", "tags": "dinner passover samfelder seder"}, {"datetaken": "2007-04-02 21:36:03", "license": "3", "title": "Gefilte Fish!", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/201/451509310_a1268147cb_o.jpg", "secret": "83e05832a9", "media": "photo", "latitude": "0", "id": "451509310", "tags": "fish dinner carrots passover seder gefilte"}, {"datetaken": "2007-04-02 21:36:44", "license": "3", "title": "Gefilte with Horseradish", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/451508604_f7f2b84b87_o.jpg", "secret": "865acf708a", "media": "photo", "latitude": "0", "id": "451508604", "tags": "fish dinner passover seder gefilte"}, {"datetaken": "2007-04-02 21:44:55", "license": "3", "title": "Chicken & Peppers Dinner", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/217/451520995_163e1c619f_o.jpg", "secret": "8f39faf5da", "media": "photo", "latitude": "0", "id": "451520995", "tags": "chicken dinner peppers passover matzah seder"}, {"datetaken": "2007-04-02 22:02:24", "license": "3", "title": "Too Much Food!", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/451519817_d3958814a8_o.jpg", "secret": "37fc9bb386", "media": "photo", "latitude": "0", "id": "451519817", "tags": "dinner eating aaron passover seder"}, {"datetaken": "2007-04-02 22:04:35", "license": "3", "title": "Wine", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/246/451518775_b8b06e9e3d_o.jpg", "secret": "0f483e92ff", "media": "photo", "latitude": "0", "id": "451518775", "tags": "dinner wine drinking passover samfelder seder"}, {"datetaken": "2007-04-02 22:11:42", "license": "3", "title": "Dessert Plate!", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/451502114_91cf9315ff_o.jpg", "secret": "9cf3d5df3c", "media": "photo", "latitude": "0", "id": "451502114", "tags": "dessert strawberries passover macaroons matzah spongecake seder"}, {"datetaken": "2007-04-02 22:13:10", "license": "3", "title": "Matzoh Sponge Cake & Strawberries", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/215/451514431_a92edf303e_o.jpg", "secret": "45f7b6f709", "media": "photo", "latitude": "0", "id": "451514431", "tags": "dessert strawberries passover matzah spongecake seder"}, {"datetaken": "2007-04-02 23:26:01", "license": "3", "title": "After Dinner Drinks", "text": "", "album_id": "72157600057236853", "longitude": "0", "url_o": "https://farm1.staticflickr.com/206/451499040_3652a9ae42_o.jpg", "secret": "ab7d35ab2f", "media": "photo", "latitude": "0", "id": "451499040", "tags": "dinner glasses wine drinks passover seder manischewitz"}, {"datetaken": "2003-01-17 05:21:41", "license": "2", "title": "PICT5299", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/456277658_43e70d8fd3_o.jpg", "secret": "0fb0c505c5", "media": "photo", "latitude": "0", "id": "456277658", "tags": "kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 05:22:22", "license": "2", "title": "PICT5300", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/215/456277848_ab7629b093_o.jpg", "secret": "977398802d", "media": "photo", "latitude": "0", "id": "456277848", "tags": "wine kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 05:22:52", "license": "2", "title": "PICT5301", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/211/456292041_1c2403d8d1_o.jpg", "secret": "a37b082601", "media": "photo", "latitude": "0", "id": "456292041", "tags": "kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 05:23:02", "license": "2", "title": "PICT5302", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/223/456292263_4d6c4d3c03_o.jpg", "secret": "0da7b0c819", "media": "photo", "latitude": "0", "id": "456292263", "tags": "barbecue kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 07:03:15", "license": "2", "title": "PICT5303", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/199/456278598_8be9172c68_o.jpg", "secret": "48d805d68b", "media": "photo", "latitude": "0", "id": "456278598", "tags": "kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 18:44:41", "license": "2", "title": "PICT5304", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/456292789_ca91fae3fe_o.jpg", "secret": "ecb14a6bf7", "media": "photo", "latitude": "0", "id": "456292789", "tags": "barbecue kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 18:44:52", "license": "2", "title": "PICT5305", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/217/456279208_8a0dd4f38d_o.jpg", "secret": "1a0edb41c3", "media": "photo", "latitude": "0", "id": "456279208", "tags": "barbecue kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 18:44:59", "license": "2", "title": "PICT5306", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/456293377_12bc96e72a_o.jpg", "secret": "50cad5ef1b", "media": "photo", "latitude": "0", "id": "456293377", "tags": "barbecue kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 18:50:03", "license": "2", "title": "PICT5307", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/212/456293797_16244d077b_o.jpg", "secret": "135298671b", "media": "photo", "latitude": "0", "id": "456293797", "tags": "motorcycle kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 18:52:00", "license": "2", "title": "PICT5308", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/222/456280152_86e8d3b381_o.jpg", "secret": "34902ac970", "media": "photo", "latitude": "0", "id": "456280152", "tags": "motorcycle kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 18:52:20", "license": "2", "title": "PICT5309", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/250/456294143_ea123ea81e_o.jpg", "secret": "c89d4a4c8f", "media": "photo", "latitude": "0", "id": "456294143", "tags": "kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 18:53:59", "license": "2", "title": "PICT5310", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/224/456294561_ce25a1259c_o.jpg", "secret": "e94bb33170", "media": "photo", "latitude": "0", "id": "456294561", "tags": "motorcycle kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 18:54:31", "license": "2", "title": "PICT5311", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/456281260_00ee57c885_o.jpg", "secret": "77731ba73c", "media": "photo", "latitude": "0", "id": "456281260", "tags": "motorcycle kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 18:55:46", "license": "2", "title": "PICT5312", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/252/456295367_c171af7d77_o.jpg", "secret": "f005fc342a", "media": "photo", "latitude": "0", "id": "456295367", "tags": "kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 18:56:28", "license": "2", "title": "PICT5313", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/215/456281880_c19c82b687_o.jpg", "secret": "90f544ebaf", "media": "photo", "latitude": "0", "id": "456281880", "tags": "motorcycle kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 18:58:44", "license": "2", "title": "PICT5314", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/221/456296027_acade2f3a7_o.jpg", "secret": "c9dbfed694", "media": "photo", "latitude": "0", "id": "456296027", "tags": "kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 18:58:52", "license": "2", "title": "PICT5315", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/219/456282330_7afd1a9df6_o.jpg", "secret": "b6b0b3dc7f", "media": "photo", "latitude": "0", "id": "456282330", "tags": "kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 18:58:58", "license": "2", "title": "PICT5316", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/231/456282560_f79b0d5e19_o.jpg", "secret": "f79b0d5e19", "media": "photo", "latitude": "0", "id": "456282560", "tags": "kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 18:59:58", "license": "2", "title": "PICT5317", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/200/456282734_0a7fbc5e10_o.jpg", "secret": "01207606ea", "media": "photo", "latitude": "0", "id": "456282734", "tags": "kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 19:00:15", "license": "2", "title": "PICT5318", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/456296937_ba1d870e96_o.jpg", "secret": "1a2a968a93", "media": "photo", "latitude": "0", "id": "456296937", "tags": "kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 19:00:23", "license": "2", "title": "PICT5319", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/207/456297117_583469e009_o.jpg", "secret": "9b289e1001", "media": "photo", "latitude": "0", "id": "456297117", "tags": "kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 19:01:11", "license": "2", "title": "PICT5320", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/213/456297247_28cdf09629_o.jpg", "secret": "7c9df9489a", "media": "photo", "latitude": "0", "id": "456297247", "tags": "tshirt kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 19:02:16", "license": "2", "title": "PICT5321", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/203/456283560_02ad7a5176_o.jpg", "secret": "5e03bd42f6", "media": "photo", "latitude": "0", "id": "456283560", "tags": "kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 20:00:01", "license": "2", "title": "PICT5323", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/456297847_c00c6f9cb8_o.jpg", "secret": "6398c28ad3", "media": "photo", "latitude": "0", "id": "456297847", "tags": "motorcycle kinneret passover seaofgalilee"}, {"datetaken": "2003-01-17 20:00:07", "license": "2", "title": "PICT5324", "text": "", "album_id": "72157600068572282", "longitude": "0", "url_o": "https://farm1.staticflickr.com/209/456298045_649257ec82_o.jpg", "secret": "37aa9a4210", "media": "photo", "latitude": "0", "id": "456298045", "tags": "motorcycle kinneret passover seaofgalilee"}, {"datetaken": "2007-04-02 17:46:48", "license": "1", "title": "20070402 001 Passover at Richters", "text": "", "album_id": "72157602018934338", "longitude": "34.988193", "url_o": "https://farm2.staticflickr.com/1130/1385788852_0dd0a90785_o.jpg", "secret": "a5716f2b65", "media": "photo", "latitude": "32.779914", "id": "1385788852", "tags": "israel holidays passover richters gilpiazza raoulvalenbergstreet hannakaro"}, {"datetaken": "2007-04-02 18:37:08", "license": "1", "title": "20070402 002 Passover at Richters", "text": "", "album_id": "72157602018934338", "longitude": "34.988193", "url_o": "https://farm2.staticflickr.com/1024/1384879037_07d616ddab_o.jpg", "secret": "ed117e9c14", "media": "photo", "latitude": "32.779914", "id": "1384879037", "tags": "israel holidays passover richters gilpiazza raoulvalenbergstreet hannakaro"}, {"datetaken": "2007-04-02 18:38:31", "license": "1", "title": "20070402 003 Passover at Richters", "text": "", "album_id": "72157602018934338", "longitude": "34.988193", "url_o": "https://farm2.staticflickr.com/1212/1384869603_68fb7285a5_o.jpg", "secret": "80e6d920fe", "media": "photo", "latitude": "32.779914", "id": "1384869603", "tags": "israel holidays passover richters raoulvalenbergstreet"}, {"datetaken": "2007-04-02 18:40:38", "license": "1", "title": "20070402 004 Passover at Richters", "text": "", "album_id": "72157602018934338", "longitude": "34.988193", "url_o": "https://farm2.staticflickr.com/1160/1384859697_20049d1f6d_o.jpg", "secret": "11f4a72ca8", "media": "photo", "latitude": "32.779914", "id": "1384859697", "tags": "israel holidays passover richters ganitrichter raoulvalenbergstreet hannakaro"}, {"datetaken": "2007-04-02 18:43:46", "license": "1", "title": "20070402 005 Passover at Richters", "text": "", "album_id": "72157602018934338", "longitude": "34.988193", "url_o": "https://farm2.staticflickr.com/1319/1385743804_663855b1c6_o.jpg", "secret": "e81d03b248", "media": "photo", "latitude": "32.779914", "id": "1385743804", "tags": "israel holidays passover richters raoulvalenbergstreet ettyhonig"}, {"datetaken": "2007-04-02 19:21:53", "license": "1", "title": "20070402 006 Passover at Richters", "text": "", "album_id": "72157602018934338", "longitude": "34.988193", "url_o": "https://farm2.staticflickr.com/1009/1385729842_eea4cb4d61_o.jpg", "secret": "616aa2dee1", "media": "photo", "latitude": "32.779914", "id": "1385729842", "tags": "israel holidays passover richters raoulvalenbergstreet leahhonig"}, {"datetaken": "2007-04-02 19:22:11", "license": "1", "title": "20070402 007 Passover at Richters", "text": "", "album_id": "72157602018934338", "longitude": "34.988193", "url_o": "https://farm2.staticflickr.com/1032/1385720204_1e080f9799_o.jpg", "secret": "f773855894", "media": "photo", "latitude": "32.779914", "id": "1385720204", "tags": "israel holidays passover richters raoulvalenbergstreet leahhonig"}, {"datetaken": "2007-04-02 19:27:44", "license": "1", "title": "20070402 008 Passover at Richters", "text": "", "album_id": "72157602018934338", "longitude": "34.988193", "url_o": "https://farm2.staticflickr.com/1106/1385710798_2a7bd9a1f4_o.jpg", "secret": "598338c043", "media": "photo", "latitude": "32.779914", "id": "1385710798", "tags": "israel holidays passover richters ettyrichter raoulvalenbergstreet"}, {"datetaken": "2007-04-02 19:28:02", "license": "1", "title": "20070402 009 Passover at Richters", "text": "", "album_id": "72157602018934338", "longitude": "34.988193", "url_o": "https://farm2.staticflickr.com/1215/1385700560_4e5d4c8164_o.jpg", "secret": "0c6741fa91", "media": "photo", "latitude": "32.779914", "id": "1385700560", "tags": "israel holidays passover richters ettyrichter raoulvalenbergstreet ettyhonig"}, {"datetaken": "2007-04-02 19:28:03", "license": "1", "title": "20070402 010 Passover at Richters", "text": "", "album_id": "72157602018934338", "longitude": "34.988193", "url_o": "https://farm2.staticflickr.com/1007/1385690740_ab406675ab_o.jpg", "secret": "45f7a3e0c7", "media": "photo", "latitude": "32.779914", "id": "1385690740", "tags": "israel holidays passover richters ettyrichter raoulvalenbergstreet ettyhonig"}, {"datetaken": "2007-04-02 21:27:19", "license": "1", "title": "20070402 011 Passover at Richters", "text": "", "album_id": "72157602018934338", "longitude": "34.988193", "url_o": "https://farm2.staticflickr.com/1077/1385678686_68f47f89af_o.jpg", "secret": "6bf9a83cc0", "media": "photo", "latitude": "32.779914", "id": "1385678686", "tags": "israel holidays passover richters raoulvalenbergstreet"}, {"datetaken": "2007-04-02 21:27:29", "license": "1", "title": "20070402 012 Passover at Richters", "text": "", "album_id": "72157602018934338", "longitude": "34.988193", "url_o": "https://farm2.staticflickr.com/1328/1385667730_92e727b29c_o.jpg", "secret": "33c443b6bd", "media": "photo", "latitude": "32.779914", "id": "1385667730", "tags": "israel holidays passover richters raoulvalenbergstreet ettyhonig hannakaro"}, {"datetaken": "2006-04-13 18:28:24", "license": "1", "title": "20060413 01 Etty and Orr", "text": "", "album_id": "72157602403457113", "longitude": "35.149726", "url_o": "https://farm3.staticflickr.com/2301/1560719769_d4339ce825_o.jpg", "secret": "50365f4acc", "media": "photo", "latitude": "32.764397", "id": "1560719769", "tags": "israel holidays passover piazzas nofit ettyrichter"}, {"datetaken": "2006-04-13 18:29:01", "license": "1", "title": "20060413 02 Family", "text": "", "album_id": "72157602403457113", "longitude": "35.149726", "url_o": "https://farm3.staticflickr.com/2058/1561641852_ef40f06014_o.jpg", "secret": "9a7ca4fc41", "media": "photo", "latitude": "32.764397", "id": "1561641852", "tags": "israel holidays passover piazzas nofit itayyatskan ettyrichter"}, {"datetaken": "2006-04-13 18:30:02", "license": "1", "title": "20060413 03 Kids with Fireworks", "text": "", "album_id": "72157602403457113", "longitude": "35.149726", "url_o": "https://farm3.staticflickr.com/2107/1560809449_4f1b7c6adc_o.jpg", "secret": "b21ff119f3", "media": "photo", "latitude": "32.764397", "id": "1560809449", "tags": "israel holidays passover piazzas nofit guypiazza"}, {"datetaken": "2006-04-13 18:30:16", "license": "1", "title": "20060413 04 Kids with Fireworks", "text": "", "album_id": "72157602403457113", "longitude": "35.149726", "url_o": "https://farm3.staticflickr.com/2122/1561733670_b9f0ffd63a_o.jpg", "secret": "d6ec7744b6", "media": "photo", "latitude": "32.764397", "id": "1561733670", "tags": "israel holidays passover piazzas nofit itayyatskan guypiazza"}, {"datetaken": "2006-04-13 18:30:21", "license": "1", "title": "20060413 05 Kids with Fireworks", "text": "", "album_id": "72157602403457113", "longitude": "35.149726", "url_o": "https://farm3.staticflickr.com/2174/1561783330_e5c518069b_o.jpg", "secret": "e33d777c47", "media": "photo", "latitude": "32.764397", "id": "1561783330", "tags": "israel holidays passover piazzas nofit guypiazza"}, {"datetaken": "2006-04-13 18:32:40", "license": "1", "title": "20060413 06 Ravit, Anat and Noga", "text": "", "album_id": "72157602403457113", "longitude": "35.149726", "url_o": "https://farm3.staticflickr.com/2404/1561831958_a1a4f42045_o.jpg", "secret": "7231db1567", "media": "photo", "latitude": "32.764397", "id": "1561831958", "tags": "israel holidays passover piazzas nofit ganitrichter"}, {"datetaken": "2006-04-13 18:39:31", "license": "1", "title": "20060413 07 Ravit and Anat", "text": "", "album_id": "72157602403457113", "longitude": "35.149726", "url_o": "https://farm3.staticflickr.com/2135/1561002829_a7caf16c5b_o.jpg", "secret": "43dd63f019", "media": "photo", "latitude": "32.764397", "id": "1561002829", "tags": "israel holidays passover piazzas nofit"}, {"datetaken": "2006-04-13 18:42:39", "license": "1", "title": "20060413 08 Family", "text": "", "album_id": "72157602403457113", "longitude": "35.149726", "url_o": "https://farm3.staticflickr.com/2021/1561048897_36cb034c8f_o.jpg", "secret": "9c88bf9358", "media": "photo", "latitude": "32.764397", "id": "1561048897", "tags": "israel holidays passover piazzas nofit itsikyatskan"}, {"datetaken": "2006-04-13 18:44:50", "license": "1", "title": "20060413 09 Family Eating Ice Cream", "text": "", "album_id": "72157602403457113", "longitude": "35.149726", "url_o": "https://farm3.staticflickr.com/2392/1561958698_e9e10293b6_o.jpg", "secret": "22f99c4304", "media": "photo", "latitude": "32.764397", "id": "1561958698", "tags": "israel holidays passover piazzas nofit ganitrichter"}, {"datetaken": "2006-04-13 18:44:55", "license": "1", "title": "20060413 10 Family Eating Ice Cream", "text": "", "album_id": "72157602403457113", "longitude": "35.149726", "url_o": "https://farm3.staticflickr.com/2389/1561126505_cd17b162c7_o.jpg", "secret": "0123d9e7d6", "media": "photo", "latitude": "32.764397", "id": "1561126505", "tags": "israel holidays passover piazzas nofit guypiazza ganitrichter"}, {"datetaken": "2005-10-06 12:43:57", "license": "1", "title": "Ives Park", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/27/50015993_16cd2df644_o.jpg", "secret": "16cd2df644", "media": "photo", "latitude": "44.671826", "id": "50015993", "tags": "trees sky water grass digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 12:44:37", "license": "1", "title": "Ives Park", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/25/50016029_04c598ad25_o.jpg", "secret": "04c598ad25", "media": "photo", "latitude": "44.671826", "id": "50016029", "tags": "trees plants water lamp grass sign rock post plate gazebo sidewalk gazeebo digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 12:45:03", "license": "1", "title": "Trinity Church", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/24/50016058_9179808f1d_o.jpg", "secret": "9179808f1d", "media": "photo", "latitude": "44.671826", "id": "50016058", "tags": "trees brick tower clock church top digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 12:47:06", "license": "1", "title": "View from a Bridge", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/30/50016071_090a881938_o.jpg", "secret": "090a881938", "media": "photo", "latitude": "44.671826", "id": "50016071", "tags": "river digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 12:47:30", "license": "1", "title": "Ives Park from a Distance", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/25/50016099_a1742b18f7_o.jpg", "secret": "a1742b18f7", "media": "photo", "latitude": "44.671826", "id": "50016099", "tags": "river digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 12:48:58", "license": "1", "title": "The front gate of Trinity Church.", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/30/50016117_e6392805b3_o.jpg", "secret": "e6392805b3", "media": "photo", "latitude": "44.671826", "id": "50016117", "tags": "church gate digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 12:49:22", "license": "1", "title": "Trinity Church", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/25/50016139_da96cba3d5_o.jpg", "secret": "da96cba3d5", "media": "photo", "latitude": "44.671826", "id": "50016139", "tags": "church digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 12:49:29", "license": "1", "title": "Top of the tower", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/33/50016173_80e3d39619_o.jpg", "secret": "80e3d39619", "media": "photo", "latitude": "44.671826", "id": "50016173", "tags": "tower clock church spire digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 12:50:17", "license": "1", "title": "Built in 1901", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/28/50016200_589c9b10d8_o.jpg", "secret": "589c9b10d8", "media": "photo", "latitude": "44.671826", "id": "50016200", "tags": "building network northwestern financial digitalphotography mutual potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 12:51:03", "license": "1", "title": "Another bridge", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/29/50016227_4a58cfc689_o.jpg", "secret": "4a58cfc689", "media": "photo", "latitude": "44.671826", "id": "50016227", "tags": "lake digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 12:55:11", "license": "1", "title": "Waterfall #1", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/29/50016247_1f3e3f1b16_o.jpg", "secret": "1f3e3f1b16", "media": "photo", "latitude": "44.671826", "id": "50016247", "tags": "waterfall digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 12:55:25", "license": "1", "title": "I love that Branch", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/32/50016263_cacc20c01f_o.jpg", "secret": "cacc20c01f", "media": "photo", "latitude": "44.671826", "id": "50016263", "tags": "waterfall digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 12:55:56", "license": "1", "title": "Another Waterfall Shot", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/25/50016280_3c1de45708_o.jpg", "secret": "3c1de45708", "media": "photo", "latitude": "44.671826", "id": "50016280", "tags": "river digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 12:57:31", "license": "1", "title": "Trees", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/33/50016309_f751d0ab03_o.jpg", "secret": "f751d0ab03", "media": "photo", "latitude": "44.671826", "id": "50016309", "tags": "bridge tree river digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 12:58:41", "license": "1", "title": "Waterfall #2", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/26/50016515_567ca9b043_o.jpg", "secret": "567ca9b043", "media": "photo", "latitude": "44.671826", "id": "50016515", "tags": "river waterfall dam digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 12:58:50", "license": "1", "title": "A close up of the waterfall.", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/29/50016543_bdef330b07_o.jpg", "secret": "bdef330b07", "media": "photo", "latitude": "44.671826", "id": "50016543", "tags": "waterfall digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 12:59:02", "license": "1", "title": "Seagulls", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/28/50016559_636db2c4e0_o.jpg", "secret": "636db2c4e0", "media": "photo", "latitude": "44.671826", "id": "50016559", "tags": "seagulls waterfall digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 12:59:25", "license": "1", "title": "Gull Falls", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/29/50016572_553aa99546_o.jpg", "secret": "553aa99546", "media": "photo", "latitude": "44.671826", "id": "50016572", "tags": "water gulls digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 13:01:24", "license": "1", "title": "Through the Trees", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/24/50016593_74d97e7415_o.jpg", "secret": "74d97e7415", "media": "photo", "latitude": "44.671826", "id": "50016593", "tags": "trees building clock digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 13:34:16", "license": "1", "title": "Clarkson", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/29/50016615_1ab1c483d8_o.jpg", "secret": "1ab1c483d8", "media": "photo", "latitude": "44.671826", "id": "50016615", "tags": "building sign buildings university carlson several digitalphotography clarkson potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 13:36:42", "license": "1", "title": "Another Stone Church", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/25/50016644_7a183c3e49_o.jpg", "secret": "7a183c3e49", "media": "photo", "latitude": "44.671826", "id": "50016644", "tags": "building stone large digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2005-10-06 13:37:13", "license": "1", "title": "Stained Glass.", "text": "", "album_id": "1085694", "longitude": "-74.988040", "url_o": "https://farm1.staticflickr.com/32/50015974_e9b3adcba3_o.jpg", "secret": "e9b3adcba3", "media": "photo", "latitude": "44.671826", "id": "50015974", "tags": "window glass stained digitalphotography potsdamnewyork digitalphotographer benspark bensparkcom"}, {"datetaken": "2006-11-09 20:36:55", "license": "1", "title": "Juicing it up", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/112/294203978_ec8993a7fc_o.jpg", "secret": "ec8993a7fc", "media": "photo", "latitude": "37.763276", "id": "294203978", "tags": "party apple cider exploratorium juicer explainers yeoldetimeycideyciderclubbeshoppe juicying"}, {"datetaken": "2006-11-09 20:37:18", "license": "1", "title": "Old timey flava", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/103/294257833_eb720a48ae_o.jpg", "secret": "eb720a48ae", "media": "photo", "latitude": "37.763276", "id": "294257833", "tags": "party apple dawn christina cider youngjin exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 20:38:05", "license": "1", "title": "Sylvia+Ryan", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/114/294267394_1a80c196f9_o.jpg", "secret": "1a80c196f9", "media": "photo", "latitude": "37.763276", "id": "294267394", "tags": "party apple ryan cider sylvia exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 20:38:17", "license": "1", "title": "Kristin+Molly", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/105/294213302_360b876005_o.jpg", "secret": "360b876005", "media": "photo", "latitude": "37.763276", "id": "294213302", "tags": "party apple dawn cider kristin exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 20:38:24", "license": "1", "title": "Old Timey Molly", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/113/294538769_c373e46b1a_o.jpg", "secret": "c373e46b1a", "media": "photo", "latitude": "37.763276", "id": "294538769", "tags": "party apple cider molly exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 20:38:36", "license": "1", "title": "Carolyn", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/99/294191992_578e295f8c_o.jpg", "secret": "578e295f8c", "media": "photo", "latitude": "37.763276", "id": "294191992", "tags": "party apple carolyn cider exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 20:39:41", "license": "1", "title": "The juice of love", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/117/294551464_bc29805ff4_o.jpg", "secret": "bc29805ff4", "media": "photo", "latitude": "37.763276", "id": "294551464", "tags": "party apple cider exploratorium juicer explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 20:40:01", "license": "1", "title": "Carolyn+beer", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/116/294188657_ceb6764229_o.jpg", "secret": "ceb6764229", "media": "photo", "latitude": "37.763276", "id": "294188657", "tags": "party apple carolyn cider exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 20:40:06", "license": "1", "title": "Old Timey Shonky", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/99/294541649_4ba2628a14_o.jpg", "secret": "4ba2628a14", "media": "photo", "latitude": "37.763276", "id": "294541649", "tags": "party apple christina cider exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 20:40:17", "license": "1", "title": "Old Timey Youngjin", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/99/294544608_1c6275b548_o.jpg", "secret": "1c6275b548", "media": "photo", "latitude": "37.763276", "id": "294544608", "tags": "party apple cider youngjin exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 20:40:32", "license": "1", "title": "A hard night's work", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/100/294183892_70291d572b_o.jpg", "secret": "70291d572b", "media": "photo", "latitude": "37.763276", "id": "294183892", "tags": "party apple cider exploratorium juicer explainers juicing yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 20:41:02", "license": "1", "title": "John, of dubious reputation", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/100/294201994_2a855e57ef_o.jpg", "secret": "2a855e57ef", "media": "photo", "latitude": "37.763276", "id": "294201994", "tags": "party apple john cider exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 20:45:04", "license": "1", "title": "Ryan: Old Timey?", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/103/294546038_ebfd0d0713_o.jpg", "secret": "ebfd0d0713", "media": "photo", "latitude": "37.763276", "id": "294546038", "tags": "party apple ryan cider exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 21:17:24", "license": "1", "title": "Jammin'", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/121/294195661_cecc59afd7_o.jpg", "secret": "cecc59afd7", "media": "photo", "latitude": "37.763276", "id": "294195661", "tags": "party apple cider organ exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 21:17:59", "license": "1", "title": "Fast fingers", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/117/294193970_38352de6bb_o.jpg", "secret": "38352de6bb", "media": "photo", "latitude": "37.763276", "id": "294193970", "tags": "party apple cider organ exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 21:18:55", "license": "1", "title": "Kristin+The Frog", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/122/294215647_b639def5bd_o.jpg", "secret": "b639def5bd", "media": "photo", "latitude": "37.763276", "id": "294215647", "tags": "party apple cider frog kristin exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 21:19:38", "license": "1", "title": "Kristin vs. The Frog", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/101/294208300_a44683a9d9_o.jpg", "secret": "a44683a9d9", "media": "photo", "latitude": "37.763276", "id": "294208300", "tags": "party apple cider frog kristin exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 22:45:33", "license": "1", "title": "John, a handsome devil", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/114/294199663_8575897b82_o.jpg", "secret": "8575897b82", "media": "photo", "latitude": "37.763276", "id": "294199663", "tags": "party playing apple hat john fur guitar cider exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 22:45:57", "license": "1", "title": "That's bunnies he's wearing", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/118/294547782_3045bb629a_o.jpg", "secret": "3045bb629a", "media": "photo", "latitude": "37.763276", "id": "294547782", "tags": "party playing apple hat john fur guitar cider exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 22:48:01", "license": "1", "title": "Kristin", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/104/294218636_b12682d579_o.jpg", "secret": "b12682d579", "media": "photo", "latitude": "37.763276", "id": "294218636", "tags": "party apple cider kristin exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 22:48:30", "license": "1", "title": "Armand", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/114/294186703_540ef857e9_o.jpg", "secret": "540ef857e9", "media": "photo", "latitude": "37.763276", "id": "294186703", "tags": "party apple cider armand exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 22:48:43", "license": "1", "title": "Sylvia+Eric", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/118/294267390_6e13e99689_o.jpg", "secret": "6e13e99689", "media": "photo", "latitude": "37.763276", "id": "294267390", "tags": "party apple eric cider sylvia exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 22:49:04", "license": "1", "title": "Old Timey Kristin", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/104/294534491_4ef5e18c5b_o.jpg", "secret": "4ef5e18c5b", "media": "photo", "latitude": "37.763276", "id": "294534491", "tags": "party apple cider kristin exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 22:49:55", "license": "1", "title": "Kristin's boots", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/109/294211183_1e8800b504_o.jpg", "secret": "1e8800b504", "media": "photo", "latitude": "37.763276", "id": "294211183", "tags": "party feet apple shoes boots cider kristin exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 22:51:37", "license": "1", "title": "\"...And then the monster attacked!\"", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/113/294178249_3a726206fa_o.jpg", "secret": "3a726206fa", "media": "photo", "latitude": "37.763276", "id": "294178249", "tags": "party apple cider molly exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 22:52:09", "license": "1", "title": "The Dream Machine", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/115/294548943_d263887899_o.jpg", "secret": "d263887899", "media": "photo", "latitude": "37.763276", "id": "294548943", "tags": "party apple cider organ exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 22:52:32", "license": "1", "title": "Suzanne", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/117/294267389_6220a54da6_o.jpg", "secret": "6220a54da6", "media": "photo", "latitude": "37.763276", "id": "294267389", "tags": "party apple cider suzanne exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 22:53:05", "license": "1", "title": "A gang of misfits and outlaws", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/119/294181585_f53921826e_o.jpg", "secret": "f53921826e", "media": "photo", "latitude": "37.763276", "id": "294181585", "tags": "party apple carolyn cider molly youngjin armand exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 22:57:37", "license": "1", "title": "The Shonkmeister", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/99/294550187_c31ea0dfc6_o.jpg", "secret": "c31ea0dfc6", "media": "photo", "latitude": "37.763276", "id": "294550187", "tags": "party apple christina cider exploratorium explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-09 22:57:49", "license": "1", "title": "Shonky+Akiko doing a Kenny impersonation", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/111/294267387_1ae8ebe02e_o.jpg", "secret": "1ae8ebe02e", "media": "photo", "latitude": "37.763276", "id": "294267387", "tags": "party apple christina cider exploratorium akiko explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2006-11-10 22:48:16", "license": "1", "title": "OMG! A camera!", "text": "", "album_id": "72157594370002393", "longitude": "-122.491496", "url_o": "https://farm1.staticflickr.com/103/294252548_1d635a59ec_o.jpg", "secret": "1d635a59ec", "media": "photo", "latitude": "37.763276", "id": "294252548", "tags": "party apple christina cider exploratorium akiko explainers yeoldetimeycideyciderclubbeshoppe"}, {"datetaken": "2007-03-16 06:00:42", "license": "2", "title": "Kilauea Crater", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/422887509_1771e5a729_o.jpg", "secret": "7be3ebee62", "media": "photo", "latitude": "0", "id": "422887509", "tags": "forest volcano hawaii crater bigisland kilauea hawaiivolcanoes"}, {"datetaken": "2007-03-16 06:03:13", "license": "2", "title": "The Steam Bluffs, from Volcano House", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/422888126_7a7748b085_o.jpg", "secret": "ce1e7464b1", "media": "photo", "latitude": "0", "id": "422888126", "tags": "forest volcano hawaii steam telephoto bigisland kilauea hawaiivolcanoes steambluffs"}, {"datetaken": "2007-03-16 06:17:20", "license": "2", "title": "Greenhouse gases", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/422888564_35385138a9_o.jpg", "secret": "e5487b9993", "media": "photo", "latitude": "0", "id": "422888564", "tags": "volcano hawaii funny greenhouse bigisland kilauea globalwarming hawaiivolcanoes"}, {"datetaken": "2007-03-16 06:43:41", "license": "2", "title": "Hell", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/422889733_83f0a90769_o.jpg", "secret": "61e42be889", "media": "photo", "latitude": "0", "id": "422889733", "tags": "rock volcano hawaii steam sulphur bigisland sulfur kilauea hawaiivolcanoes"}, {"datetaken": "2007-03-16 06:50:41", "license": "2", "title": "Sulfur crystals", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/422890286_dde94d4bdf_o.jpg", "secret": "59025056bd", "media": "photo", "latitude": "0", "id": "422890286", "tags": "macro yellow rock volcano hawaii crystal chemistry sulphur bigisland sulfur kilauea hawaiivolcanoes"}, {"datetaken": "2007-03-16 06:51:09", "license": "2", "title": "Sulfur crystals 2", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/422890715_93d7676d57_o.jpg", "secret": "2e21bad3fa", "media": "photo", "latitude": "0", "id": "422890715", "tags": "macro rock volcano hawaii crystal chemistry sulphur bigisland sulfur kilauea hawaiivolcanoes"}, {"datetaken": "2007-03-16 06:52:39", "license": "2", "title": "The Sulfur Banks", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/422891587_244f3325c7_o.jpg", "secret": "5ef180c37d", "media": "photo", "latitude": "0", "id": "422891587", "tags": "rock volcano hawaii painted steam sulphur bigisland sulfur banks kilauea hawaiivolcanoes"}, {"datetaken": "2007-03-16 06:53:20", "license": "2", "title": "Painted rocks", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/422892605_763270aa0d_o.jpg", "secret": "c3cafd7e49", "media": "photo", "latitude": "0", "id": "422892605", "tags": "rock volcano hawaii painted sulphur bigisland sulfur gypsum kilauea hawaiivolcanoes"}, {"datetaken": "2007-03-16 07:00:28", "license": "2", "title": "Natural selection at work", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/422893029_d7f3b8d6c5_o.jpg", "secret": "79f176c9df", "media": "photo", "latitude": "0", "id": "422893029", "tags": "plant flower tree volcano hawaii evolution bigisland kilauea hawaiivolcanoes"}, {"datetaken": "2007-03-16 07:03:37", "license": "2", "title": "Rift", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/422893513_4bdb7b5811_o.jpg", "secret": "a2a65b3ffb", "media": "photo", "latitude": "0", "id": "422893513", "tags": "vent volcano hawaii steam bigisland kilauea rift hawaiivolcanoes"}, {"datetaken": "2007-03-16 07:09:10", "license": "2", "title": "Sulfur strands", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/422893989_a55025d143_o.jpg", "secret": "27c6026e17", "media": "photo", "latitude": "0", "id": "422893989", "tags": "plant volcano hawaii chemistry sulphur bigisland sulfur kilauea hawaiivolcanoes"}, {"datetaken": "2007-03-16 07:19:47", "license": "2", "title": "Life and death", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/422894731_a5e82e23bd_o.jpg", "secret": "2cd9650e44", "media": "photo", "latitude": "0", "id": "422894731", "tags": "forest volcano hawaii lava telephoto bigisland kilauea hawaiivolcanoes"}, {"datetaken": "2007-03-16 07:20:14", "license": "2", "title": "Steam Bluffs", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/422895371_9665794710_o.jpg", "secret": "b75d70f6be", "media": "photo", "latitude": "0", "id": "422895371", "tags": "volcano hawaii steam bigisland kilauea hawaiivolcanoes steambluffs"}, {"datetaken": "2007-03-16 08:37:43", "license": "2", "title": "Hear my prayer", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/422895939_3e5f913541_o.jpg", "secret": "a4bc8f2fb0", "media": "photo", "latitude": "0", "id": "422895939", "tags": "hawaii bigisland kilauea volcano hawaiivolcanoes halemaumau crater lei sacrifice offering"}, {"datetaken": "2007-03-16 08:39:18", "license": "2", "title": "Fumes", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/422896854_67956a22d3_o.jpg", "secret": "22351cd736", "media": "photo", "latitude": "0", "id": "422896854", "tags": "vent volcano hawaii lava cone steam crater bigisland kilauea halemaumau spatter hawaiivolcanoes"}, {"datetaken": "2007-03-16 08:40:04", "license": "2", "title": "Fire and brimstone", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/422897406_222c38691f_o.jpg", "secret": "2c111d92d5", "media": "photo", "latitude": "0", "id": "422897406", "tags": "volcano hawaii lava crater sulphur bigisland sulfur kilauea halemaumau hawaiivolcanoes"}, {"datetaken": "2007-03-16 08:58:55", "license": "2", "title": "My car!", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/422898082_ff35e8cc66_o.jpg", "secret": "3bb90e56bc", "media": "photo", "latitude": "0", "id": "422898082", "tags": "car trash hawaii gm slow boring crap terrible vehicle pontiac bigisland awful useless kilauea illfitting underpowered hawaiivolcanoes underequipped"}, {"datetaken": "2007-03-16 09:16:19", "license": "2", "title": "Hawaii's newest real estate!", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/422898512_02b01c4a20_o.jpg", "secret": "570af88e8b", "media": "photo", "latitude": "0", "id": "422898512", "tags": "panorama volcano hawaii lava bigisland kilauea chainofcraters hawaiivolcanoes"}, {"datetaken": "2007-03-16 09:22:12", "license": "2", "title": "Panorama", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/422899179_c092bbfc12_o.jpg", "secret": "4f6d7b012b", "media": "photo", "latitude": "0", "id": "422899179", "tags": "road travel panorama volcano hawaii steam pontiac bigisland g6 kilauea plume chainofcraters hawaiivolcanoes"}, {"datetaken": "2007-03-16 09:23:25", "license": "2", "title": "Lopsided", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/422899546_88f18ebab3_o.jpg", "secret": "4d8e349f73", "media": "photo", "latitude": "0", "id": "422899546", "tags": "tree volcano hawaii bigisland kilauea chainofcraters hawaiivolcanoes"}, {"datetaken": "2007-03-16 09:34:33", "license": "2", "title": "Over the hills and far away", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/422900036_83832c29e6_o.jpg", "secret": "705035ca6a", "media": "photo", "latitude": "0", "id": "422900036", "tags": "road mountain volcano hawaii lava hill bigisland kilauea chainofcraters hawaiivolcanoes"}, {"datetaken": "2007-03-16 09:48:49", "license": "2", "title": "The end of the road", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/422900503_4ef2c97760_o.jpg", "secret": "508eb2b0d0", "media": "photo", "latitude": "0", "id": "422900503", "tags": "ocean trees sea cliff volcano hawaii lava bigisland kilauea basalt chainofcraters hawaiivolcanoes"}, {"datetaken": "2007-03-16 09:54:59", "license": "2", "title": "The sea", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/422901031_d7782c5cea_o.jpg", "secret": "db1cde1e5b", "media": "photo", "latitude": "0", "id": "422901031", "tags": "ocean sea cliff volcano hawaii bigisland kilauea basalt chainofcraters hawaiivolcanoes"}, {"datetaken": "2007-03-16 10:01:22", "license": "2", "title": "Welcome to Hawaii", "text": "", "album_id": "72157600002596744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/422901679_81e3ce189c_o.jpg", "secret": "14ac1821e5", "media": "photo", "latitude": "0", "id": "422901679", "tags": "ocean sea plants volcano hawaii lava bigisland kilauea basalt chainofcraters hawaiivolcanoes"}, {"datetaken": "2005-09-15 07:04:16", "license": "3", "title": "P1060588", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/44250531_130de70ff3_o.jpg", "secret": "130de70ff3", "media": "photo", "latitude": "0", "id": "44250531", "tags": "bike fun friends"}, {"datetaken": "2005-09-15 07:07:56", "license": "3", "title": "A cat's glance", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/44250551_0bd7811fb1_o.jpg", "secret": "0bd7811fb1", "media": "photo", "latitude": "0", "id": "44250551", "tags": "bike fun friends"}, {"datetaken": "2005-09-15 07:35:24", "license": "3", "title": "On the boat", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/44250569_e45c5e7d9c_o.jpg", "secret": "e45c5e7d9c", "media": "photo", "latitude": "0", "id": "44250569", "tags": "bike fun friends"}, {"datetaken": "2005-09-15 08:07:04", "license": "3", "title": "A last look at SG", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/44250590_731e90dbdb_o.jpg", "secret": "731e90dbdb", "media": "photo", "latitude": "0", "id": "44250590", "tags": "bike fun friends"}, {"datetaken": "2005-09-15 08:07:20", "license": "3", "title": "Wave people!", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/44250643_9e6c38b994_o.jpg", "secret": "9e6c38b994", "media": "photo", "latitude": "0", "id": "44250643", "tags": "bike fun friends"}, {"datetaken": "2005-09-15 08:07:25", "license": "3", "title": "Swirling waves", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44251231_3fbd69911a_o.jpg", "secret": "3fbd69911a", "media": "photo", "latitude": "0", "id": "44251231", "tags": "sea bike fun friends"}, {"datetaken": "2005-09-15 09:39:09", "license": "3", "title": "Aspen", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/44251270_ce76e2a8fa_o.jpg", "secret": "ce76e2a8fa", "media": "photo", "latitude": "0", "id": "44251270", "tags": "bike fun friends"}, {"datetaken": "2005-09-15 09:39:30", "license": "3", "title": "Scottie, Beam me up!", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/44251319_f84136bb1f_o.jpg", "secret": "f84136bb1f", "media": "photo", "latitude": "0", "id": "44251319", "tags": "bike fun friends"}, {"datetaken": "2005-09-15 09:39:41", "license": "3", "title": "We are here!", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/44251341_1581c10d3c_o.jpg", "secret": "1581c10d3c", "media": "photo", "latitude": "0", "id": "44251341", "tags": "friends bike fun"}, {"datetaken": "2005-09-15 09:39:54", "license": "3", "title": "Bottles up!", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/44251364_6ae6b6a18a_o.jpg", "secret": "6ae6b6a18a", "media": "photo", "latitude": "0", "id": "44251364", "tags": "friends bike fun"}, {"datetaken": "2005-09-15 09:52:42", "license": "3", "title": "Lonely tree", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/44251426_d1c6c5f0db_o.jpg", "secret": "d1c6c5f0db", "media": "photo", "latitude": "0", "id": "44251426", "tags": "plants bike fun friends"}, {"datetaken": "2005-09-15 11:23:08", "license": "3", "title": "Our first break!", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/44251455_7fdfd4aaf2_o.jpg", "secret": "7fdfd4aaf2", "media": "photo", "latitude": "0", "id": "44251455", "tags": "friends bike fun"}, {"datetaken": "2005-09-15 11:23:13", "license": "3", "title": "Shagged?", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/44251481_633a669d86_o.jpg", "secret": "633a669d86", "media": "photo", "latitude": "0", "id": "44251481", "tags": "friends bike fun"}, {"datetaken": "2005-09-15 11:23:19", "license": "3", "title": "Giant", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/44251508_b957b03b47_o.jpg", "secret": "b957b03b47", "media": "photo", "latitude": "0", "id": "44251508", "tags": "bike fun friends"}, {"datetaken": "2005-09-15 11:23:23", "license": "3", "title": "GT!!", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/44251536_806afce182_o.jpg", "secret": "806afce182", "media": "photo", "latitude": "0", "id": "44251536", "tags": "bike fun friends"}, {"datetaken": "2005-09-15 11:23:27", "license": "3", "title": "Scott", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/44251557_53dbb7a7cc_o.jpg", "secret": "53dbb7a7cc", "media": "photo", "latitude": "0", "id": "44251557", "tags": "bike fun friends"}, {"datetaken": "2005-09-15 11:24:35", "license": "3", "title": "Somewhere ulu...", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/44251610_9dacf9b3dd_o.jpg", "secret": "9dacf9b3dd", "media": "photo", "latitude": "0", "id": "44251610", "tags": "trees bike fun friends"}, {"datetaken": "2005-09-15 12:36:33", "license": "3", "title": "lunch", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/44251631_76fc5a3ec8_o.jpg", "secret": "76fc5a3ec8", "media": "photo", "latitude": "0", "id": "44251631", "tags": "food bike fun friends"}, {"datetaken": "2005-09-15 12:36:54", "license": "3", "title": "I'm hungry too...", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44251647_eade8f2463_o.jpg", "secret": "eade8f2463", "media": "photo", "latitude": "0", "id": "44251647", "tags": "cat bike fun friends"}, {"datetaken": "2005-09-15 12:37:11", "license": "3", "title": "Dish of the day", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/44251660_35036d380c_o.jpg", "secret": "35036d380c", "media": "photo", "latitude": "0", "id": "44251660", "tags": "food bike fun friends"}, {"datetaken": "2005-09-15 12:44:59", "license": "3", "title": "Mew....", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/44251706_a76ea54307_o.jpg", "secret": "a76ea54307", "media": "photo", "latitude": "0", "id": "44251706", "tags": "cat bike fun friends"}, {"datetaken": "2005-09-15 12:51:29", "license": "3", "title": "The 3 burnt warriors", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/44251775_071527366c_o.jpg", "secret": "071527366c", "media": "photo", "latitude": "0", "id": "44251775", "tags": "friends bike fun"}, {"datetaken": "2005-09-15 16:01:40", "license": "3", "title": "Kota Tinggi!", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/44251849_a7e9c3c3fd_o.jpg", "secret": "a7e9c3c3fd", "media": "photo", "latitude": "0", "id": "44251849", "tags": "river bike fun friends"}, {"datetaken": "2005-09-15 16:03:42", "license": "3", "title": "Pin pointing", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/44251898_80c2ff9c83_o.jpg", "secret": "80c2ff9c83", "media": "photo", "latitude": "0", "id": "44251898", "tags": "friends bike fun"}, {"datetaken": "2005-09-15 16:04:26", "license": "3", "title": "Lek-pointing", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/44251945_e9e37538df_o.jpg", "secret": "e9e37538df", "media": "photo", "latitude": "0", "id": "44251945", "tags": "friends bike fun"}, {"datetaken": "2005-09-15 16:14:25", "license": "3", "title": "Welcome to Kota Tinggi", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/44251984_f5757a6535_o.jpg", "secret": "f5757a6535", "media": "photo", "latitude": "0", "id": "44251984", "tags": "friends bike fun"}, {"datetaken": "2005-09-15 16:15:51", "license": "3", "title": "Destination", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/44252044_379df5663b_o.jpg", "secret": "379df5663b", "media": "photo", "latitude": "0", "id": "44252044", "tags": "friends bike fun"}, {"datetaken": "2005-09-15 16:15:59", "license": "3", "title": "Welcome to Kota Tinggi (Shagged ver)", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/44252091_be321488d2_o.jpg", "secret": "be321488d2", "media": "photo", "latitude": "0", "id": "44252091", "tags": "friends bike fun"}, {"datetaken": "2005-09-15 18:06:35", "license": "3", "title": "Our hotel room!", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/44252153_85938e735e_o.jpg", "secret": "85938e735e", "media": "photo", "latitude": "0", "id": "44252153", "tags": "places bike fun friends"}, {"datetaken": "2005-09-15 19:27:29", "license": "3", "title": "Zzz..", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/44259726_5fb299e17a_o.jpg", "secret": "5fb299e17a", "media": "photo", "latitude": "0", "id": "44259726", "tags": "bike fun friends"}, {"datetaken": "2005-09-16 06:17:11", "license": "3", "title": "Breakfast on the bed!", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/44259743_8a803b25bd_o.jpg", "secret": "8a803b25bd", "media": "photo", "latitude": "0", "id": "44259743", "tags": "bike fun friends"}, {"datetaken": "2005-09-16 09:31:29", "license": "3", "title": "Why must we wait?", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/44259772_22d9d03004_o.jpg", "secret": "22d9d03004", "media": "photo", "latitude": "0", "id": "44259772", "tags": "bike fun friends"}, {"datetaken": "2005-09-16 09:31:35", "license": "3", "title": "I like bees", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44259792_3d37dbd821_o.jpg", "secret": "3d37dbd821", "media": "photo", "latitude": "0", "id": "44259792", "tags": "bike fun friends"}, {"datetaken": "2005-09-16 13:02:39", "license": "3", "title": "Our faithful steeds", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/44259818_d081495424_o.jpg", "secret": "d081495424", "media": "photo", "latitude": "0", "id": "44259818", "tags": "bike fun friends"}, {"datetaken": "2005-09-16 13:02:55", "license": "3", "title": "Mr. Cool", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/44259847_7deb36ade7_o.jpg", "secret": "7deb36ade7", "media": "photo", "latitude": "0", "id": "44259847", "tags": "bike fun friends"}, {"datetaken": "2005-09-16 13:02:59", "license": "3", "title": "Smirks", "text": "", "album_id": "968378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/44259864_810d747a97_o.jpg", "secret": "810d747a97", "media": "photo", "latitude": "0", "id": "44259864", "tags": "bike fun friends"}, {"datetaken": "2012-01-21 07:53:09", "license": "3", "title": "P1040152", "text": "", "album_id": "72157628974721157", "longitude": "-122.685699", "url_o": "https://farm8.staticflickr.com/7026/6739429279_cd9ae11381_o.jpg", "secret": "51d4572931", "media": "photo", "latitude": "45.516932", "id": "6739429279", "tags": "urban tree oregon portland planting hawthorn friendsoftrees"}, {"datetaken": "2012-01-21 09:27:52", "license": "3", "title": "P1040153", "text": "", "album_id": "72157628974721157", "longitude": "-122.685699", "url_o": "https://farm8.staticflickr.com/7161/6739431151_e32eb1cb1c_o.jpg", "secret": "da58f3b80d", "media": "photo", "latitude": "45.516932", "id": "6739431151", "tags": "urban tree oregon portland planting hawthorn friendsoftrees"}, {"datetaken": "2012-01-21 09:28:09", "license": "3", "title": "P1040154", "text": "", "album_id": "72157628974721157", "longitude": "-122.685699", "url_o": "https://farm8.staticflickr.com/7157/6739432703_51147c12e1_o.jpg", "secret": "f58ce57dff", "media": "photo", "latitude": "45.516932", "id": "6739432703", "tags": "urban tree oregon portland planting hawthorn friendsoftrees"}, {"datetaken": "2012-01-21 09:54:30", "license": "3", "title": "P1040155", "text": "", "album_id": "72157628974721157", "longitude": "-122.685699", "url_o": "https://farm8.staticflickr.com/7025/6739434589_6c59c031fa_o.jpg", "secret": "8b1ddff11d", "media": "photo", "latitude": "45.516932", "id": "6739434589", "tags": "urban tree oregon portland planting hawthorn friendsoftrees"}, {"datetaken": "2012-01-21 09:54:36", "license": "3", "title": "P1040156", "text": "", "album_id": "72157628974721157", "longitude": "-122.685699", "url_o": "https://farm8.staticflickr.com/7034/6739436371_f60d8e8d8e_o.jpg", "secret": "903bd11fcc", "media": "photo", "latitude": "45.516932", "id": "6739436371", "tags": "urban tree oregon portland planting hawthorn friendsoftrees"}, {"datetaken": "2012-01-21 10:13:46", "license": "3", "title": "P1040159", "text": "", "album_id": "72157628974721157", "longitude": "-122.685699", "url_o": "https://farm8.staticflickr.com/7163/6739438181_c14abacb02_o.jpg", "secret": "9ccd1bd9c9", "media": "photo", "latitude": "45.516932", "id": "6739438181", "tags": "urban tree oregon portland planting hawthorn friendsoftrees"}, {"datetaken": "2012-01-21 11:25:58", "license": "3", "title": "P1040160", "text": "", "album_id": "72157628974721157", "longitude": "-122.685699", "url_o": "https://farm8.staticflickr.com/7154/6739440413_dba26182b8_o.jpg", "secret": "226276431e", "media": "photo", "latitude": "45.516932", "id": "6739440413", "tags": "urban tree oregon portland planting hawthorn friendsoftrees"}, {"datetaken": "2012-01-21 11:26:05", "license": "3", "title": "P1040161", "text": "", "album_id": "72157628974721157", "longitude": "-122.685699", "url_o": "https://farm8.staticflickr.com/7154/6739441963_f508ea274a_o.jpg", "secret": "8925756a41", "media": "photo", "latitude": "45.516932", "id": "6739441963", "tags": "urban tree oregon portland planting hawthorn friendsoftrees"}, {"datetaken": "2012-01-21 11:26:19", "license": "3", "title": "P1040162", "text": "", "album_id": "72157628974721157", "longitude": "-122.685699", "url_o": "https://farm8.staticflickr.com/7002/6739443471_31772572b1_o.jpg", "secret": "198372c559", "media": "photo", "latitude": "45.516932", "id": "6739443471", "tags": "urban tree oregon portland planting hawthorn friendsoftrees"}, {"datetaken": "2012-01-21 11:26:23", "license": "3", "title": "P1040163", "text": "", "album_id": "72157628974721157", "longitude": "-122.685699", "url_o": "https://farm8.staticflickr.com/7008/6739445051_8ca6963a6a_o.jpg", "secret": "12a1ef18af", "media": "photo", "latitude": "45.516932", "id": "6739445051", "tags": "urban tree oregon portland planting hawthorn friendsoftrees"}, {"datetaken": "2012-01-21 11:30:02", "license": "3", "title": "P1040166", "text": "", "album_id": "72157628974721157", "longitude": "-122.685699", "url_o": "https://farm8.staticflickr.com/7023/6739446965_578eb205fb_o.jpg", "secret": "329033714f", "media": "photo", "latitude": "45.516932", "id": "6739446965", "tags": "urban tree oregon portland planting hawthorn friendsoftrees"}, {"datetaken": "2012-01-21 11:35:47", "license": "3", "title": "P1040167", "text": "", "album_id": "72157628974721157", "longitude": "-122.685699", "url_o": "https://farm8.staticflickr.com/7171/6739448383_aafbccf27b_o.jpg", "secret": "75b7d5a170", "media": "photo", "latitude": "45.516932", "id": "6739448383", "tags": "urban tree oregon portland planting hawthorn friendsoftrees"}, {"datetaken": "2012-01-21 12:13:31", "license": "3", "title": "P1040168", "text": "", "album_id": "72157628974721157", "longitude": "-122.685699", "url_o": "https://farm8.staticflickr.com/7030/6739450493_70eb26494a_o.jpg", "secret": "ff284b7515", "media": "photo", "latitude": "45.516932", "id": "6739450493", "tags": "urban tree oregon portland planting hawthorn friendsoftrees"}, {"datetaken": "2012-01-21 12:13:36", "license": "3", "title": "P1040169", "text": "", "album_id": "72157628974721157", "longitude": "-122.685699", "url_o": "https://farm8.staticflickr.com/7165/6739452445_0d70646412_o.jpg", "secret": "97a5d3a9da", "media": "photo", "latitude": "45.516932", "id": "6739452445", "tags": "urban tree oregon portland planting hawthorn friendsoftrees"}, {"datetaken": "2005-07-29 05:10:20", "license": "3", "title": "5.30 am", "text": "", "album_id": "665897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29418469_979e6336bc_o.jpg", "secret": "979e6336bc", "media": "photo", "latitude": "0", "id": "29418469", "tags": "morning 5 am sun rise sunrise awake waking palm trees palmtrees tree palmtree plants"}, {"datetaken": "2005-07-29 05:10:59", "license": "3", "title": "Getting Ready", "text": "", "album_id": "665897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29420164_5317b3dd71_o.jpg", "secret": "5317b3dd71", "media": "photo", "latitude": "0", "id": "29420164", "tags": "morning 5 am sun rise sunrise awake waking palm trees palmtrees tree palmtree plants skating skaters ollie"}, {"datetaken": "2005-07-29 05:11:05", "license": "3", "title": "Practice Run 1", "text": "", "album_id": "665897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29420165_1e0ef87f10_o.jpg", "secret": "1e0ef87f10", "media": "photo", "latitude": "0", "id": "29420165", "tags": "morning 5 am sun rise sunrise awake waking palm trees palmtrees tree palmtree plants skating skaters ollie"}, {"datetaken": "2005-07-29 05:13:13", "license": "3", "title": "Practice Run 2", "text": "", "album_id": "665897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29420166_8fcbc89132_o.jpg", "secret": "8fcbc89132", "media": "photo", "latitude": "0", "id": "29420166", "tags": "morning 5 am sun rise sunrise awake waking palm trees palmtrees tree palmtree plants skating skaters ollie"}, {"datetaken": "2005-07-29 05:19:10", "license": "3", "title": "About to...", "text": "", "album_id": "665897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29420167_9e43a68c3b_o.jpg", "secret": "9e43a68c3b", "media": "photo", "latitude": "0", "id": "29420167", "tags": "morning 5 am sun rise sunrise awake waking palm trees palmtrees tree palmtree plants skating skaters ollie"}, {"datetaken": "2005-07-29 05:19:38", "license": "3", "title": "Pop it", "text": "", "album_id": "665897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29420168_a794a39225_o.jpg", "secret": "a794a39225", "media": "photo", "latitude": "0", "id": "29420168", "tags": "morning 5 am sun rise sunrise awake waking palm trees palmtrees tree palmtree plants skating skaters ollie"}, {"datetaken": "2005-07-29 05:19:58", "license": "3", "title": "Ooops!", "text": "", "album_id": "665897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29420169_3dade01d07_o.jpg", "secret": "3dade01d07", "media": "photo", "latitude": "0", "id": "29420169", "tags": "morning 5 am sun rise sunrise awake waking palm trees palmtrees tree palmtree plants skating skaters ollie"}, {"datetaken": "2005-07-29 05:21:05", "license": "3", "title": "Ollie", "text": "", "album_id": "665897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29421848_af89b4d301_o.jpg", "secret": "af89b4d301", "media": "photo", "latitude": "0", "id": "29421848", "tags": "morning 5 am sun rise sunrise awake waking palm trees palmtrees tree palmtree plants skating skaters ollie"}, {"datetaken": "2005-07-29 05:22:48", "license": "3", "title": "Ollie 2", "text": "", "album_id": "665897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29421850_fe82ff2d77_o.jpg", "secret": "fe82ff2d77", "media": "photo", "latitude": "0", "id": "29421850", "tags": "morning 5 am sun rise sunrise awake waking palm trees palmtrees tree palmtree plants skating skaters ollie"}, {"datetaken": "2005-07-29 05:23:36", "license": "3", "title": "Mistake Shot", "text": "", "album_id": "665897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29421851_cad7d6aac1_o.jpg", "secret": "cad7d6aac1", "media": "photo", "latitude": "0", "id": "29421851", "tags": "morning 5 am sun rise sunrise awake waking palm trees palmtrees tree palmtree plants skating skaters ollie"}, {"datetaken": "2005-07-29 05:25:09", "license": "3", "title": "Grass Roots", "text": "", "album_id": "665897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29421852_4b94a73107_o.jpg", "secret": "4b94a73107", "media": "photo", "latitude": "0", "id": "29421852", "tags": "morning 5 am sun rise sunrise awake waking palm trees palmtrees tree palmtree plants skating skaters ollie"}, {"datetaken": "2006-02-07 12:22:27", "license": "3", "title": "Butt end", "text": "", "album_id": "72057594061082572", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/97030876_8435dc0efa_o.jpg", "secret": "8435dc0efa", "media": "photo", "latitude": "0", "id": "97030876", "tags": "white monument safari national sands airstream"}, {"datetaken": "2006-02-07 12:28:40", "license": "3", "title": "Oliver Lee Memorial State Park", "text": "", "album_id": "72057594061082572", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/97030985_a6819529da_o.jpg", "secret": "a6819529da", "media": "photo", "latitude": "0", "id": "97030985", "tags": "white monument national sands airstream"}, {"datetaken": "2006-02-07 15:21:32", "license": "3", "title": "Bird tracks", "text": "", "album_id": "72057594061082572", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/97031109_4007253ac8_o.jpg", "secret": "4007253ac8", "media": "photo", "latitude": "0", "id": "97031109", "tags": "white monument national sands"}, {"datetaken": "2006-02-07 15:22:40", "license": "3", "title": "Aspiring photographer", "text": "", "album_id": "72057594061082572", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/97030433_e969981157_o.jpg", "secret": "e969981157", "media": "photo", "latitude": "0", "id": "97030433", "tags": "white monument national sands"}, {"datetaken": "2006-02-07 15:24:16", "license": "3", "title": "Bert Gildart again", "text": "", "album_id": "72057594061082572", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/97030507_775e6b9d05_o.jpg", "secret": "775e6b9d05", "media": "photo", "latitude": "0", "id": "97030507", "tags": "white monument national sands"}, {"datetaken": "2006-02-07 15:38:45", "license": "3", "title": "A day at the beach", "text": "", "album_id": "72057594061082572", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/97030583_6e90ddfc74_o.jpg", "secret": "6e90ddfc74", "media": "photo", "latitude": "0", "id": "97030583", "tags": "white monument national sands"}, {"datetaken": "2006-02-07 15:40:07", "license": "3", "title": "Great fun!", "text": "", "album_id": "72057594061082572", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/97030642_ddd8005da8_o.jpg", "secret": "ddd8005da8", "media": "photo", "latitude": "0", "id": "97030642", "tags": "white monument national sands"}, {"datetaken": "2006-02-07 15:46:45", "license": "3", "title": "Skipping down the sand", "text": "", "album_id": "72057594061082572", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/97031222_2daa1b4866_o.jpg", "secret": "2daa1b4866", "media": "photo", "latitude": "0", "id": "97031222", "tags": "white sands national monument"}, {"datetaken": "2006-02-07 16:19:09", "license": "3", "title": "Mountains near and far", "text": "", "album_id": "72057594061082572", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/97031323_f51362ea32_o.jpg", "secret": "f51362ea32", "media": "photo", "latitude": "0", "id": "97031323", "tags": "white monument national sands"}, {"datetaken": "2006-02-07 16:20:47", "license": "3", "title": "Bert Gildart", "text": "", "album_id": "72057594061082572", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/97030771_a79ad1f666_o.jpg", "secret": "a79ad1f666", "media": "photo", "latitude": "0", "id": "97030771", "tags": "white monument national sands"}, {"datetaken": "2006-02-07 16:27:37", "license": "3", "title": "Trekking in the sand", "text": "", "album_id": "72057594061082572", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/97031437_08804b4f22_o.jpg", "secret": "08804b4f22", "media": "photo", "latitude": "0", "id": "97031437", "tags": "white monument national sands"}, {"datetaken": "2006-02-07 16:31:13", "license": "3", "title": "Remains of Cottonwood", "text": "", "album_id": "72057594061082572", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/97031511_ec4243dc3a_o.jpg", "secret": "ec4243dc3a", "media": "photo", "latitude": "0", "id": "97031511", "tags": "white monument national sands"}, {"datetaken": "2005-11-26 19:22:45", "license": "3", "title": "Feathered Friends", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/67296411_4c4496ac46_o.jpg", "secret": "4c4496ac46", "media": "photo", "latitude": "0", "id": "67296411", "tags": ""}, {"datetaken": "2005-11-26 19:22:48", "license": "3", "title": "Feathered Friends", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/67296430_2bd833342d_o.jpg", "secret": "2bd833342d", "media": "photo", "latitude": "0", "id": "67296430", "tags": ""}, {"datetaken": "2005-11-27 12:27:51", "license": "3", "title": "Nature", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/67788185_eb8291282a_o.jpg", "secret": "eb8291282a", "media": "photo", "latitude": "0", "id": "67788185", "tags": ""}, {"datetaken": "2005-11-27 12:28:53", "license": "3", "title": "Nature", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/67788205_e55bd492aa_o.jpg", "secret": "e55bd492aa", "media": "photo", "latitude": "0", "id": "67788205", "tags": ""}, {"datetaken": "2005-11-27 12:33:56", "license": "3", "title": "Feathered Friends", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/67797450_45973acd0d_o.jpg", "secret": "45973acd0d", "media": "photo", "latitude": "0", "id": "67797450", "tags": ""}, {"datetaken": "2005-11-27 12:46:09", "license": "3", "title": "Nature", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/67788236_2feb384ba8_o.jpg", "secret": "2feb384ba8", "media": "photo", "latitude": "0", "id": "67788236", "tags": ""}, {"datetaken": "2005-11-27 12:50:57", "license": "3", "title": "Nature", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/67788255_00b925ce9e_o.jpg", "secret": "00b925ce9e", "media": "photo", "latitude": "0", "id": "67788255", "tags": ""}, {"datetaken": "2005-11-27 12:52:48", "license": "3", "title": "Nature", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/67788267_62664b75a0_o.jpg", "secret": "62664b75a0", "media": "photo", "latitude": "0", "id": "67788267", "tags": ""}, {"datetaken": "2005-11-27 12:56:05", "license": "3", "title": "Wildlife", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/67729965_22e2f7be84_o.jpg", "secret": "22e2f7be84", "media": "photo", "latitude": "0", "id": "67729965", "tags": ""}, {"datetaken": "2005-11-27 12:56:30", "license": "3", "title": "Wildlife", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/67729974_d2fdd72cc9_o.jpg", "secret": "d2fdd72cc9", "media": "photo", "latitude": "0", "id": "67729974", "tags": ""}, {"datetaken": "2005-11-27 12:58:48", "license": "3", "title": "Nature", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/67788280_5585ed8a71_o.jpg", "secret": "5585ed8a71", "media": "photo", "latitude": "0", "id": "67788280", "tags": ""}, {"datetaken": "2005-11-27 13:10:46", "license": "3", "title": "Nature", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/67788295_4ff33401c0_o.jpg", "secret": "4ff33401c0", "media": "photo", "latitude": "0", "id": "67788295", "tags": ""}, {"datetaken": "2005-11-27 13:11:14", "license": "3", "title": "Nature", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/67788319_05ce6400d9_o.jpg", "secret": "05ce6400d9", "media": "photo", "latitude": "0", "id": "67788319", "tags": ""}, {"datetaken": "2005-11-27 14:43:31", "license": "3", "title": "Insects", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/67777579_334fea6261_o.jpg", "secret": "334fea6261", "media": "photo", "latitude": "0", "id": "67777579", "tags": ""}, {"datetaken": "2005-11-27 14:43:38", "license": "3", "title": "Insects", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/67777613_8b61d7d22b_o.jpg", "secret": "8b61d7d22b", "media": "photo", "latitude": "0", "id": "67777613", "tags": ""}, {"datetaken": "2005-11-27 14:43:39", "license": "3", "title": "Insects", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/67777638_07b39862ce_o.jpg", "secret": "07b39862ce", "media": "photo", "latitude": "0", "id": "67777638", "tags": ""}, {"datetaken": "2005-11-27 15:05:30", "license": "3", "title": "Feathered Friends", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/67797436_5950c22c40_o.jpg", "secret": "5950c22c40", "media": "photo", "latitude": "0", "id": "67797436", "tags": ""}, {"datetaken": "2005-11-27 15:05:31", "license": "3", "title": "Feathered Friends", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/67797425_19ab9571eb_o.jpg", "secret": "19ab9571eb", "media": "photo", "latitude": "0", "id": "67797425", "tags": ""}, {"datetaken": "2005-11-27 15:13:16", "license": "3", "title": "Nature", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/68130490_3662024f2e_o.jpg", "secret": "3662024f2e", "media": "photo", "latitude": "0", "id": "68130490", "tags": ""}, {"datetaken": "2005-11-27 15:13:48", "license": "3", "title": "Nature", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/68130501_b8e2252770_o.jpg", "secret": "b8e2252770", "media": "photo", "latitude": "0", "id": "68130501", "tags": ""}, {"datetaken": "2005-11-27 15:18:48", "license": "3", "title": "Nature", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/68130457_725f50357f_o.jpg", "secret": "725f50357f", "media": "photo", "latitude": "0", "id": "68130457", "tags": ""}, {"datetaken": "2005-11-27 15:20:20", "license": "3", "title": "Nature", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/68130481_97356bd968_o.jpg", "secret": "97356bd968", "media": "photo", "latitude": "0", "id": "68130481", "tags": ""}, {"datetaken": "2005-11-27 15:20:21", "license": "3", "title": "Nature", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/68134056_df39bdba5b_o.jpg", "secret": "df39bdba5b", "media": "photo", "latitude": "0", "id": "68134056", "tags": ""}, {"datetaken": "2005-11-27 15:21:23", "license": "3", "title": "Nature", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/68134076_bec5b7858a_o.jpg", "secret": "bec5b7858a", "media": "photo", "latitude": "0", "id": "68134076", "tags": ""}, {"datetaken": "2005-11-27 15:21:46", "license": "3", "title": "Nature", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/68134090_018b08fb9f_o.jpg", "secret": "018b08fb9f", "media": "photo", "latitude": "0", "id": "68134090", "tags": ""}, {"datetaken": "2005-11-27 15:46:25", "license": "3", "title": "Insects", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/67777653_9d33beaa7d_o.jpg", "secret": "9d33beaa7d", "media": "photo", "latitude": "0", "id": "67777653", "tags": ""}, {"datetaken": "2005-11-27 15:46:26", "license": "3", "title": "Insects", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/67777676_82ac0b04f5_o.jpg", "secret": "82ac0b04f5", "media": "photo", "latitude": "0", "id": "67777676", "tags": ""}, {"datetaken": "2005-11-27 15:46:27", "license": "3", "title": "Insects", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/67777700_bc5057240a_o.jpg", "secret": "bc5057240a", "media": "photo", "latitude": "0", "id": "67777700", "tags": ""}, {"datetaken": "2005-11-27 15:46:37", "license": "3", "title": "Insects", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/67777719_3d818a2aca_o.jpg", "secret": "3d818a2aca", "media": "photo", "latitude": "0", "id": "67777719", "tags": ""}, {"datetaken": "2005-11-27 15:46:37", "license": "3", "title": "Insects", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/67777737_a6c52c4bb7_o.jpg", "secret": "a6c52c4bb7", "media": "photo", "latitude": "0", "id": "67777737", "tags": ""}, {"datetaken": "2005-11-27 15:46:38", "license": "3", "title": "Insects", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/67777781_2de53d534d_o.jpg", "secret": "2de53d534d", "media": "photo", "latitude": "0", "id": "67777781", "tags": ""}, {"datetaken": "2005-11-27 15:46:46", "license": "3", "title": "Insects", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/67777809_f5f64198b0_o.jpg", "secret": "f5f64198b0", "media": "photo", "latitude": "0", "id": "67777809", "tags": ""}, {"datetaken": "2005-11-27 17:01:30", "license": "3", "title": "Wildlife", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/68147897_d5eba58642_o.jpg", "secret": "d5eba58642", "media": "photo", "latitude": "0", "id": "68147897", "tags": ""}, {"datetaken": "2005-11-27 17:01:31", "license": "3", "title": "Wildlife", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/68147906_26a7f19b50_o.jpg", "secret": "26a7f19b50", "media": "photo", "latitude": "0", "id": "68147906", "tags": ""}, {"datetaken": "2005-11-27 17:02:06", "license": "3", "title": "Wildlife", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/68149732_8e9292200f_o.jpg", "secret": "8e9292200f", "media": "photo", "latitude": "0", "id": "68149732", "tags": ""}, {"datetaken": "2005-11-27 17:04:40", "license": "3", "title": "Wildlife", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/68149281_eda02d1432_o.jpg", "secret": "eda02d1432", "media": "photo", "latitude": "0", "id": "68149281", "tags": ""}, {"datetaken": "2005-11-27 17:04:43", "license": "3", "title": "Wildlife", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/68149291_c2dcabeb5b_o.jpg", "secret": "c2dcabeb5b", "media": "photo", "latitude": "0", "id": "68149291", "tags": ""}, {"datetaken": "2005-11-27 17:17:28", "license": "3", "title": "Flight of the Hawk", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/68148248_480f343fd5_o.jpg", "secret": "480f343fd5", "media": "photo", "latitude": "0", "id": "68148248", "tags": ""}, {"datetaken": "2005-11-27 17:17:42", "license": "3", "title": "Feathered Friends", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/67773088_07058aa096_o.jpg", "secret": "07058aa096", "media": "photo", "latitude": "0", "id": "67773088", "tags": ""}, {"datetaken": "2005-11-27 17:18:02", "license": "3", "title": "Feathered Friends", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/67773114_00cc94bfe7_o.jpg", "secret": "00cc94bfe7", "media": "photo", "latitude": "0", "id": "67773114", "tags": ""}, {"datetaken": "2005-11-27 17:18:06", "license": "3", "title": "Feathered Friends", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/67773145_ea20eff622_o.jpg", "secret": "ea20eff622", "media": "photo", "latitude": "0", "id": "67773145", "tags": ""}, {"datetaken": "2005-11-27 17:18:14", "license": "3", "title": "Feathered Friends", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/67773181_fe61f1f697_o.jpg", "secret": "fe61f1f697", "media": "photo", "latitude": "0", "id": "67773181", "tags": ""}, {"datetaken": "2005-11-27 17:18:37", "license": "3", "title": "Feathered Friends", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/67773211_e7629c8af1_o.jpg", "secret": "e7629c8af1", "media": "photo", "latitude": "0", "id": "67773211", "tags": ""}, {"datetaken": "2005-11-27 17:18:47", "license": "3", "title": "Feathered Friends", "text": "", "album_id": "1462648", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/67773231_ad684d7952_o.jpg", "secret": "ad684d7952", "media": "photo", "latitude": "0", "id": "67773231", "tags": ""}, {"datetaken": "2006-05-06 13:29:14", "license": "1", "title": "Pink and purple and pink", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/141640351_6e2b3b8109_o.jpg", "secret": "6e2b3b8109", "media": "photo", "latitude": "0", "id": "141640351", "tags": "pink flowers trees plants brooklyn garden spring purple botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 13:29:26", "license": "1", "title": "Purple and pink", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/141640402_5b95e1b125_o.jpg", "secret": "5b95e1b125", "media": "photo", "latitude": "0", "id": "141640402", "tags": "pink flowers trees plants brooklyn garden spring purple botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 13:30:56", "license": "1", "title": "Drippy", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/141640454_2ec1426e08_o.jpg", "secret": "2ec1426e08", "media": "photo", "latitude": "0", "id": "141640454", "tags": "flowers trees plants brooklyn garden spring botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 13:31:22", "license": "1", "title": "Jose, emoting", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/141640509_908b779a74_o.jpg", "secret": "908b779a74", "media": "photo", "latitude": "0", "id": "141640509", "tags": "flowers trees plants brooklyn garden spring jose botanic brooklynbotanicgarden wisteria josecito"}, {"datetaken": "2006-05-06 13:31:41", "license": "1", "title": "Was that a bee?", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/141640548_0effe7e561_o.jpg", "secret": "0effe7e561", "media": "photo", "latitude": "0", "id": "141640548", "tags": "flowers trees plants brooklyn garden spring jose botanic brooklynbotanicgarden wisteria josecito"}, {"datetaken": "2006-05-06 13:34:54", "license": "1", "title": "More", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/141640600_033098d8c1_o.jpg", "secret": "033098d8c1", "media": "photo", "latitude": "0", "id": "141640600", "tags": "flowers trees plants brooklyn garden spring lilac botanic brooklynbotanicgarden lilacs"}, {"datetaken": "2006-05-06 13:36:43", "license": "1", "title": "Lilac", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/141640641_ba54613419_o.jpg", "secret": "ba54613419", "media": "photo", "latitude": "0", "id": "141640641", "tags": "flowers trees plants brooklyn garden spring lilac botanic brooklynbotanicgarden lilacs"}, {"datetaken": "2006-05-06 13:37:34", "license": "1", "title": "Lilacs", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/141640684_d6fe48fbfc_o.jpg", "secret": "d6fe48fbfc", "media": "photo", "latitude": "0", "id": "141640684", "tags": "flowers trees plants brooklyn garden spring lilac botanic brooklynbotanicgarden lilacs"}, {"datetaken": "2006-05-06 13:38:09", "license": "1", "title": "Stand and model", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/141640739_8396f0478a_o.jpg", "secret": "8396f0478a", "media": "photo", "latitude": "0", "id": "141640739", "tags": "flowers trees plants brooklyn garden spring mark jose lilac botanic brooklynbotanicgarden marky lilacs josecito"}, {"datetaken": "2006-05-06 13:39:40", "license": "1", "title": "Lilacs", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/141640797_a4ae83874c_o.jpg", "secret": "a4ae83874c", "media": "photo", "latitude": "0", "id": "141640797", "tags": "flowers trees plants brooklyn garden spring bush lilac botanic brooklynbotanicgarden bushes lilacs"}, {"datetaken": "2006-05-06 13:42:01", "license": "1", "title": "The come tree", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/141640834_6347f97c82_o.jpg", "secret": "6347f97c82", "media": "photo", "latitude": "0", "id": "141640834", "tags": "flowers trees plants brooklyn garden spring botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 13:45:17", "license": "1", "title": "Blue", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/141640935_93f6fa6791_o.jpg", "secret": "93f6fa6791", "media": "photo", "latitude": "0", "id": "141640935", "tags": "flowers blue trees plants tree brooklyn garden spring botanic brooklynbotanicgarden brooklynian"}, {"datetaken": "2006-05-06 13:47:09", "license": "1", "title": "Cool tree", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/141640967_82a5a0b3d2_o.jpg", "secret": "82a5a0b3d2", "media": "photo", "latitude": "0", "id": "141640967", "tags": "flowers trees plants tree brooklyn garden spring botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 13:47:42", "license": "1", "title": "There's a gnome in there, I just know it", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/141641022_5b1d6c9308_o.jpg", "secret": "5b1d6c9308", "media": "photo", "latitude": "0", "id": "141641022", "tags": "flowers trees plants tree brooklyn garden spring botanic brooklynbotanicgarden gnarled"}, {"datetaken": "2006-05-06 13:50:44", "license": "1", "title": "Don't go, Jason Waterfalls", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/141641149_dd922621a4_o.jpg", "secret": "dd922621a4", "media": "photo", "latitude": "0", "id": "141641149", "tags": "flowers trees plants water brooklyn garden waterfall spring botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 13:51:39", "license": "1", "title": "White lines", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/141641430_1f39c04eac_o.jpg", "secret": "1f39c04eac", "media": "photo", "latitude": "0", "id": "141641430", "tags": "flowers trees plants white brooklyn garden spring botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 13:51:50", "license": "1", "title": "White", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/141641468_d23206dd62_o.jpg", "secret": "d23206dd62", "media": "photo", "latitude": "0", "id": "141641468", "tags": "flowers trees plants white brooklyn garden spring botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 13:54:00", "license": "1", "title": "Up", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/141641504_3359a0294d_o.jpg", "secret": "3359a0294d", "media": "photo", "latitude": "0", "id": "141641504", "tags": "garden brooklynbotanicgarden brooklyn botanic flowers trees plants spring sky"}, {"datetaken": "2006-05-06 14:02:15", "license": "1", "title": "Japan, represent!", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/141641695_d2cfa6ad5b_o.jpg", "secret": "d2cfa6ad5b", "media": "photo", "latitude": "0", "id": "141641695", "tags": "flowers trees plants brooklyn garden spring mark bonsai botanic brooklynbotanicgarden marky represent brooklynian"}, {"datetaken": "2006-05-06 14:12:03", "license": "1", "title": "Schwartzkopf", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/141641732_bd3b10891c_o.jpg", "secret": "bd3b10891c", "media": "photo", "latitude": "0", "id": "141641732", "tags": "flowers trees plants brooklyn garden spring botanic brooklynbotanicgarden schwartzkopf"}, {"datetaken": "2006-05-06 14:14:31", "license": "1", "title": "Gazongas", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/141641759_b051a194bd_o.jpg", "secret": "b051a194bd", "media": "photo", "latitude": "0", "id": "141641759", "tags": "flowers trees plants brooklyn garden spring botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 14:14:49", "license": "1", "title": "Underneath", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/141641816_cd0225c796_o.jpg", "secret": "cd0225c796", "media": "photo", "latitude": "0", "id": "141641816", "tags": "flowers trees plants brooklyn garden spring botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 14:15:41", "license": "1", "title": "Shrimp plant", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/141641864_b4457b5351_o.jpg", "secret": "b4457b5351", "media": "photo", "latitude": "0", "id": "141641864", "tags": "flowers trees plants plant brooklyn garden spring shrimp botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 14:16:10", "license": "1", "title": "Purty", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/141641935_ba8342f08c_o.jpg", "secret": "ba8342f08c", "media": "photo", "latitude": "0", "id": "141641935", "tags": "flowers trees plants brooklyn garden spring botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 14:16:35", "license": "1", "title": "Something jungly", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/141641982_3d9ea872bf_o.jpg", "secret": "3d9ea872bf", "media": "photo", "latitude": "0", "id": "141641982", "tags": "flowers trees plants brooklyn garden spring rainforest botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 14:19:48", "license": "1", "title": "May the bird of paradise fly up your nose", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/141642012_5dfab4c15d_o.jpg", "secret": "5dfab4c15d", "media": "photo", "latitude": "0", "id": "141642012", "tags": "flowers trees plants bird brooklyn garden spring paradise birdofparadise botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 14:24:59", "license": "1", "title": "Tulips!", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/141642073_9396eef6a9_o.jpg", "secret": "9396eef6a9", "media": "photo", "latitude": "0", "id": "141642073", "tags": "pink flowers trees plants brooklyn garden spring tulips botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 14:25:27", "license": "1", "title": "Big cartoony tulips", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/141642111_77c681b4f2_o.jpg", "secret": "77c681b4f2", "media": "photo", "latitude": "0", "id": "141642111", "tags": "flowers trees orange plants brooklyn garden spring tulips botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 14:37:22", "license": "1", "title": "Flat on my back", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/141642168_75c8575c49_o.jpg", "secret": "75c8575c49", "media": "photo", "latitude": "0", "id": "141642168", "tags": "flowers trees sky plants leaves brooklyn garden spring branches botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 14:37:38", "license": "1", "title": "Winter white", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/141642244_6733f4c074_o.jpg", "secret": "6733f4c074", "media": "photo", "latitude": "0", "id": "141642244", "tags": "flowers trees plants brooklyn garden spring jose botanic brooklynbotanicgarden josecito"}, {"datetaken": "2006-05-06 14:37:45", "license": "1", "title": "\"Pardon me folks, but you can't lie on the grass here\"", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/141642323_4f72a9d725_o.jpg", "secret": "4f72a9d725", "media": "photo", "latitude": "0", "id": "141642323", "tags": "flowers trees plants brooklyn garden spring mark botanic brooklynbotanicgarden marky brooklynian"}, {"datetaken": "2006-05-06 14:42:57", "license": "1", "title": "She's tinklin'", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/141642382_523a113023_o.jpg", "secret": "523a113023", "media": "photo", "latitude": "0", "id": "141642382", "tags": "flowers trees sculpture plants water fountain brooklyn garden spring child botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 14:44:28", "license": "1", "title": "Gate and crane", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/141642423_90f17fa260_o.jpg", "secret": "90f17fa260", "media": "photo", "latitude": "0", "id": "141642423", "tags": "flowers trees plants bird water brooklyn garden japanese spring pond gate crane botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 14:53:52", "license": "1", "title": "Pink", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/141642469_396228d8f0_o.jpg", "secret": "396228d8f0", "media": "photo", "latitude": "0", "id": "141642469", "tags": "flowers trees plants brooklyn garden spring botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 14:54:03", "license": "1", "title": "I just liked the way these looked together", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/141642576_c3b19d5862_o.jpg", "secret": "c3b19d5862", "media": "photo", "latitude": "0", "id": "141642576", "tags": "flowers trees plants brooklyn garden spring botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 14:54:21", "license": "1", "title": "Pond", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/141642631_2ba4f221e3_o.jpg", "secret": "2ba4f221e3", "media": "photo", "latitude": "0", "id": "141642631", "tags": "flowers trees plants water brooklyn garden spring pond botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 14:55:22", "license": "1", "title": "The rare and beautiful bunghole tree", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/141642699_7dc8a46914_o.jpg", "secret": "7dc8a46914", "media": "photo", "latitude": "0", "id": "141642699", "tags": "flowers trees plants tree brooklyn garden spring wrong botanic brooklynbotanicgarden brooklynian"}, {"datetaken": "2006-05-06 14:59:57", "license": "1", "title": "Maze", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/141642747_738eb0af7f_o.jpg", "secret": "738eb0af7f", "media": "photo", "latitude": "0", "id": "141642747", "tags": "flowers trees plants brooklyn garden spring botanic brooklynbotanicgarden"}, {"datetaken": "2006-05-06 15:00:13", "license": "1", "title": "Maze", "text": "", "album_id": "72057594127440513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/141642833_c71bd93f4b_o.jpg", "secret": "c71bd93f4b", "media": "photo", "latitude": "0", "id": "141642833", "tags": "flowers trees plants brooklyn garden spring botanic brooklynbotanicgarden brooklynian"}, {"datetaken": "2006-05-22 14:08:00", "license": "5", "title": "School Sunrise", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/151444803_e0cf249ba0_o.jpg", "secret": "e0cf249ba0", "media": "photo", "latitude": "0", "id": "151444803", "tags": "sunrise"}, {"datetaken": "2006-05-22 14:58:10", "license": "5", "title": "Leaf Flare", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/151474183_cbed3d1be9_o.jpg", "secret": "cbed3d1be9", "media": "photo", "latitude": "0", "id": "151474183", "tags": "trees sun flare"}, {"datetaken": "2006-05-22 14:58:10", "license": "5", "title": "Lamp Shadow", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/151474184_f3dc02bcb2_o.jpg", "secret": "f3dc02bcb2", "media": "photo", "latitude": "0", "id": "151474184", "tags": "camp lamp night"}, {"datetaken": "2006-05-22 14:58:10", "license": "5", "title": "The Pyrimid Roof", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/151474182_ec3e64030d_o.jpg", "secret": "ec3e64030d", "media": "photo", "latitude": "0", "id": "151474182", "tags": "roof pyrimid"}, {"datetaken": "2006-05-22 16:12:02", "license": "5", "title": "KaRi", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/151513650_b5f16c74ca_o.jpg", "secret": "b5f16c74ca", "media": "photo", "latitude": "0", "id": "151513650", "tags": ""}, {"datetaken": "2006-05-22 16:12:02", "license": "5", "title": "Laura", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/151513649_412b2eea16_o.jpg", "secret": "412b2eea16", "media": "photo", "latitude": "0", "id": "151513649", "tags": ""}, {"datetaken": "2006-05-22 16:12:02", "license": "5", "title": "Zak and Anthony", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/151513652_b8ea9e4a5b_o.jpg", "secret": "b8ea9e4a5b", "media": "photo", "latitude": "0", "id": "151513652", "tags": ""}, {"datetaken": "2006-05-22 16:12:04", "license": "5", "title": "I Debate, I Win", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/151513655_be873ad1bb_o.jpg", "secret": "be873ad1bb", "media": "photo", "latitude": "0", "id": "151513655", "tags": ""}, {"datetaken": "2006-05-22 17:06:35", "license": "5", "title": "Pointing it Out", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/151539957_dfb0d8fe7a_o.jpg", "secret": "dfb0d8fe7a", "media": "photo", "latitude": "0", "id": "151539957", "tags": "pencils"}, {"datetaken": "2006-05-22 17:06:35", "license": "5", "title": "Bobbing", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/151539953_f2d76e4b1d_o.jpg", "secret": "f2d76e4b1d", "media": "photo", "latitude": "0", "id": "151539953", "tags": ""}, {"datetaken": "2006-05-22 17:06:35", "license": "5", "title": "More than Green Thumbs", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/151539951_d2d4958a43_o.jpg", "secret": "d2d4958a43", "media": "photo", "latitude": "0", "id": "151539951", "tags": ""}, {"datetaken": "2006-05-22 17:06:35", "license": "5", "title": "Still Preparing", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/151539955_586c0f76f5_o.jpg", "secret": "586c0f76f5", "media": "photo", "latitude": "0", "id": "151539955", "tags": ""}, {"datetaken": "2006-05-22 17:06:35", "license": "5", "title": "Vassa the Siberian", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/151539948_55bc819e4a_o.jpg", "secret": "55bc819e4a", "media": "photo", "latitude": "0", "id": "151539948", "tags": ""}, {"datetaken": "2006-05-22 17:06:35", "license": "5", "title": "Brittany in Flight", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/151539956_957d174159_o.jpg", "secret": "957d174159", "media": "photo", "latitude": "0", "id": "151539956", "tags": ""}, {"datetaken": "2006-05-22 17:11:04", "license": "5", "title": "The Path", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/151542258_cbf321be1b_o.jpg", "secret": "cbf321be1b", "media": "photo", "latitude": "0", "id": "151542258", "tags": "plant delights"}, {"datetaken": "2006-05-22 17:11:04", "license": "5", "title": "Fountain Drops", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/151542259_36e59113b6_o.jpg", "secret": "36e59113b6", "media": "photo", "latitude": "0", "id": "151542259", "tags": "plant delights"}, {"datetaken": "2006-05-22 17:11:04", "license": "5", "title": "The Class, Horticulture", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/151542256_7ac8ba4212_o.jpg", "secret": "7ac8ba4212", "media": "photo", "latitude": "0", "id": "151542256", "tags": ""}, {"datetaken": "2006-05-22 17:11:04", "license": "5", "title": "It's Time", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/151542254_26d17b2646_o.jpg", "secret": "26d17b2646", "media": "photo", "latitude": "0", "id": "151542254", "tags": ""}, {"datetaken": "2006-05-22 17:11:05", "license": "5", "title": "Serene Falls", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/151542261_d252ea5998_o.jpg", "secret": "d252ea5998", "media": "photo", "latitude": "0", "id": "151542261", "tags": "plant delights"}, {"datetaken": "2006-05-22 17:14:27", "license": "5", "title": "Droplets [Daisy]", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/151543705_578e1c507c_o.jpg", "secret": "578e1c507c", "media": "photo", "latitude": "0", "id": "151543705", "tags": ""}, {"datetaken": "2006-05-22 17:14:27", "license": "5", "title": "Splash of Pink", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/151543702_d307135c4d_o.jpg", "secret": "d307135c4d", "media": "photo", "latitude": "0", "id": "151543702", "tags": "flower"}, {"datetaken": "2006-05-22 17:14:27", "license": "5", "title": "Crescent", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/151543704_bf16fb2146_o.jpg", "secret": "bf16fb2146", "media": "photo", "latitude": "0", "id": "151543704", "tags": "tree trunk"}, {"datetaken": "2006-05-22 17:14:27", "license": "5", "title": "Reflection", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/151543703_1211475d55_o.jpg", "secret": "1211475d55", "media": "photo", "latitude": "0", "id": "151543703", "tags": "reflection water"}, {"datetaken": "2006-05-22 17:14:27", "license": "5", "title": "Droplet [Leaf]", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/151543700_1bef838b7a_o.jpg", "secret": "1bef838b7a", "media": "photo", "latitude": "0", "id": "151543700", "tags": "water leaf drop droplet"}, {"datetaken": "2006-05-22 17:14:27", "license": "5", "title": "The Cat at Plant Delights", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/151543707_6ec5ffb137_o.jpg", "secret": "6ec5ffb137", "media": "photo", "latitude": "0", "id": "151543707", "tags": "plant cat delights"}, {"datetaken": "2006-05-22 17:38:44", "license": "5", "title": "Bee's Eye", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/151555391_01767d0471_o.jpg", "secret": "01767d0471", "media": "photo", "latitude": "0", "id": "151555391", "tags": ""}, {"datetaken": "2006-05-22 17:38:44", "license": "5", "title": "Desert Flower", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/151555390_9d94879d87_o.jpg", "secret": "9d94879d87", "media": "photo", "latitude": "0", "id": "151555390", "tags": "flower sedum"}, {"datetaken": "2006-05-22 17:38:44", "license": "5", "title": "Droplets [in small flowers]", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/151555385_aa32730749_o.jpg", "secret": "aa32730749", "media": "photo", "latitude": "0", "id": "151555385", "tags": "flower water drops nikonstunninggallery"}, {"datetaken": "2006-05-22 17:38:44", "license": "5", "title": "Fish Under Water", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/151555386_9258a3525d_o.jpg", "secret": "9258a3525d", "media": "photo", "latitude": "0", "id": "151555386", "tags": "fish goldfish"}, {"datetaken": "2006-05-22 17:38:44", "license": "5", "title": "Lily Pads", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/151555388_f021810bfb_o.jpg", "secret": "f021810bfb", "media": "photo", "latitude": "0", "id": "151555388", "tags": "lilypad"}, {"datetaken": "2006-05-22 17:38:44", "license": "5", "title": "Shadow of Me", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/151555389_5ef621aee4_o.jpg", "secret": "5ef621aee4", "media": "photo", "latitude": "0", "id": "151555389", "tags": "shadow"}, {"datetaken": "2006-05-22 17:45:13", "license": "5", "title": "Rose 1", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/151558998_d764888891_o.jpg", "secret": "d764888891", "media": "photo", "latitude": "0", "id": "151558998", "tags": "rose"}, {"datetaken": "2006-05-22 17:45:13", "license": "5", "title": "Droplets [Hosta]", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/151558995_0ad939de6b_o.jpg", "secret": "0ad939de6b", "media": "photo", "latitude": "0", "id": "151558995", "tags": ""}, {"datetaken": "2006-05-22 17:45:14", "license": "5", "title": "Rose 2", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/151559000_8005f0f02b_o.jpg", "secret": "8005f0f02b", "media": "photo", "latitude": "0", "id": "151559000", "tags": ""}, {"datetaken": "2006-05-22 17:45:14", "license": "5", "title": "Facing Down", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/151559006_fea2da98d8_o.jpg", "secret": "fea2da98d8", "media": "photo", "latitude": "0", "id": "151559006", "tags": ""}, {"datetaken": "2006-05-22 17:45:14", "license": "5", "title": "Bright and Blue", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/151559010_8afab9d56f_o.jpg", "secret": "8afab9d56f", "media": "photo", "latitude": "0", "id": "151559010", "tags": "nikonstunninggallery"}, {"datetaken": "2006-05-22 17:45:14", "license": "5", "title": "Alien Buds", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/151559003_d7abbb0b9e_o.jpg", "secret": "d7abbb0b9e", "media": "photo", "latitude": "0", "id": "151559003", "tags": ""}, {"datetaken": "2006-05-22 17:58:07", "license": "5", "title": "Pixie Fight", "text": "", "album_id": "72057594142632397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/151565582_da0ad900ae_o.jpg", "secret": "da0ad900ae", "media": "photo", "latitude": "0", "id": "151565582", "tags": ""}, {"datetaken": "2006-09-21 12:25:14", "license": "3", "title": "IMG_1505", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/117/259449864_0ff924da1a_o.jpg", "secret": "0ff924da1a", "media": "photo", "latitude": "0", "id": "259449864", "tags": "japan fear deer nara"}, {"datetaken": "2006-09-21 12:26:51", "license": "3", "title": "IMG_1508", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/112/259451095_2dcf05e287_o.jpg", "secret": "2dcf05e287", "media": "photo", "latitude": "0", "id": "259451095", "tags": "japan brandon deer nara"}, {"datetaken": "2006-09-21 12:31:23", "license": "3", "title": "IMG_1514", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/112/259476138_071b1e6e26_o.jpg", "secret": "071b1e6e26", "media": "photo", "latitude": "0", "id": "259476138", "tags": "japan pagoda nara kofukujitemple"}, {"datetaken": "2006-09-21 12:38:16", "license": "3", "title": "IMG_1522", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/259477310_328a8c45ce_o.jpg", "secret": "328a8c45ce", "media": "photo", "latitude": "0", "id": "259477310", "tags": "japan brandon christine deer nara kofukujitemple"}, {"datetaken": "2006-09-21 12:39:50", "license": "3", "title": "Inter-speices kissing", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/108/259484540_4e6c84e88d_o.jpg", "secret": "4e6c84e88d", "media": "photo", "latitude": "0", "id": "259484540", "tags": "japan kissing deer nara kofukujitemple"}, {"datetaken": "2006-09-21 13:19:43", "license": "3", "title": "IMG_1530", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/114/259452924_9491d23d58_o.jpg", "secret": "9491d23d58", "media": "photo", "latitude": "0", "id": "259452924", "tags": "tree japan brandon nara"}, {"datetaken": "2006-09-21 13:25:06", "license": "3", "title": "IMGP3852", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/111/259473562_4c14e40aa8_o.jpg", "secret": "4c14e40aa8", "media": "photo", "latitude": "0", "id": "259473562", "tags": "japan pagoda christine nara kofukujitemple"}, {"datetaken": "2006-09-21 13:33:54", "license": "3", "title": "IMGP3861", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/259473940_a6df74126d_o.jpg", "secret": "a6df74126d", "media": "photo", "latitude": "0", "id": "259473940", "tags": "japan kissing christine deer nara kofukujitemple"}, {"datetaken": "2006-09-21 13:35:58", "license": "3", "title": "IMGP3862", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/113/259474250_147aa2dfa9_o.jpg", "secret": "147aa2dfa9", "media": "photo", "latitude": "0", "id": "259474250", "tags": "japan nara kofukujitemple"}, {"datetaken": "2006-09-21 13:36:35", "license": "3", "title": "IMGP3863", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/113/259474645_e42f3b34ba_o.jpg", "secret": "e42f3b34ba", "media": "photo", "latitude": "0", "id": "259474645", "tags": "japan nara kofukujitemple"}, {"datetaken": "2006-09-21 13:41:13", "license": "3", "title": "IMGP3868", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/115/259444351_82025bc6e1_o.jpg", "secret": "82025bc6e1", "media": "photo", "latitude": "0", "id": "259444351", "tags": "japan pond nara"}, {"datetaken": "2006-09-21 13:58:47", "license": "3", "title": "IMGP3874", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/112/259444689_1349ede673_o.jpg", "secret": "1349ede673", "media": "photo", "latitude": "0", "id": "259444689", "tags": "japan closeup deer nara"}, {"datetaken": "2006-09-21 14:16:09", "license": "3", "title": "IMG_1533", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/259446131_034d951d53_o.jpg", "secret": "034d951d53", "media": "photo", "latitude": "0", "id": "259446131", "tags": "japan nara botanicalgarden frenzy koy"}, {"datetaken": "2006-09-21 14:49:22", "license": "3", "title": "IMG_1535", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/107/259447632_b6c4778dd5_o.jpg", "secret": "b6c4778dd5", "media": "photo", "latitude": "0", "id": "259447632", "tags": "japan lanterns nara kasugataishashrine"}, {"datetaken": "2006-09-21 14:58:47", "license": "3", "title": "IMG_1538", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/259448610_e22b950160_o.jpg", "secret": "e22b950160", "media": "photo", "latitude": "0", "id": "259448610", "tags": "japan lanterns nara kasugataishashrine"}, {"datetaken": "2006-09-21 15:05:18", "license": "3", "title": "IMGP3882", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/111/259442929_257e86e4fe_o.jpg", "secret": "257e86e4fe", "media": "photo", "latitude": "0", "id": "259442929", "tags": "japan nara botanicalgarden frenzy koy"}, {"datetaken": "2006-09-21 15:11:29", "license": "3", "title": "IMGP3884", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/106/259443333_d3bcbc07d2_o.jpg", "secret": "d3bcbc07d2", "media": "photo", "latitude": "0", "id": "259443333", "tags": "tree japan nara botanicalgarden"}, {"datetaken": "2006-09-21 15:32:35", "license": "3", "title": "IMG_1541", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/259485813_5d7a19747a_o.jpg", "secret": "5d7a19747a", "media": "photo", "latitude": "0", "id": "259485813", "tags": "japan deer nara todaijitemple"}, {"datetaken": "2006-09-21 15:37:50", "license": "3", "title": "IMGP3892", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/259443675_0f1b3f9b21_o.jpg", "secret": "0f1b3f9b21", "media": "photo", "latitude": "0", "id": "259443675", "tags": "japan nara kasugataishashrine"}, {"datetaken": "2006-09-21 15:40:03", "license": "3", "title": "IMG_1544", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/110/259487065_41e1a1357b_o.jpg", "secret": "41e1a1357b", "media": "photo", "latitude": "0", "id": "259487065", "tags": "japan nara todaijitemple"}, {"datetaken": "2006-09-21 15:52:25", "license": "3", "title": "IMG_1555", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/259490077_160e3c765d_o.jpg", "secret": "160e3c765d", "media": "photo", "latitude": "0", "id": "259490077", "tags": "statue japan buddha nara todaijitemple"}, {"datetaken": "2006-09-21 15:54:10", "license": "3", "title": "IMG_1557", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/259491943_c583e220b1_o.jpg", "secret": "c583e220b1", "media": "photo", "latitude": "0", "id": "259491943", "tags": "statue japan buddha nara todaijitemple"}, {"datetaken": "2006-09-21 15:55:42", "license": "3", "title": "IMGP3899", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/115/259444041_1bde830f73_o.jpg", "secret": "1bde830f73", "media": "photo", "latitude": "0", "id": "259444041", "tags": "japan brandon nara kasugataishashrine"}, {"datetaken": "2006-09-21 15:55:44", "license": "3", "title": "IMG_1561", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/102/259493644_5a4053dc07_o.jpg", "secret": "5a4053dc07", "media": "photo", "latitude": "0", "id": "259493644", "tags": "statue japan nara todaijitemple"}, {"datetaken": "2006-09-21 16:14:43", "license": "3", "title": "IMGP3901", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/259445143_ce3d6f77ca_o.jpg", "secret": "ce3d6f77ca", "media": "photo", "latitude": "0", "id": "259445143", "tags": "japan pond nara"}, {"datetaken": "2006-09-21 16:27:41", "license": "3", "title": "IMGP3905", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/259474992_836537458d_o.jpg", "secret": "836537458d", "media": "photo", "latitude": "0", "id": "259474992", "tags": "statue japan nara todaijitemple"}, {"datetaken": "2006-09-21 16:35:21", "license": "3", "title": "IMGP3909", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/259475396_aec1050c84_o.jpg", "secret": "aec1050c84", "media": "photo", "latitude": "0", "id": "259475396", "tags": "japan nara todaijitemple"}, {"datetaken": "2006-09-21 16:51:51", "license": "3", "title": "IMGP3916", "text": "", "album_id": "72157594310500030", "longitude": "0", "url_o": "https://farm1.staticflickr.com/115/259475783_e64992f78c_o.jpg", "secret": "e64992f78c", "media": "photo", "latitude": "0", "id": "259475783", "tags": "japan nara todaijitemple"}, {"datetaken": "2006-10-07 09:33:20", "license": "3", "title": "Natural Falls State Park 3", "text": "", "album_id": "72157594422873458", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/323164832_c1d4616080_o.jpg", "secret": "c1d4616080", "media": "photo", "latitude": "0", "id": "323164832", "tags": "blogoklahomaus naturalfallsstatepark"}, {"datetaken": "2006-10-07 09:36:20", "license": "3", "title": "Natural Falls State Park 5", "text": "", "album_id": "72157594422873458", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/323164838_b1db338ce2_o.jpg", "secret": "b1db338ce2", "media": "photo", "latitude": "0", "id": "323164838", "tags": "naturalfallsstatepark"}, {"datetaken": "2006-10-07 09:37:08", "license": "3", "title": "Natural Falls State Park 4", "text": "", "album_id": "72157594422873458", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/323164836_cc47b67932_o.jpg", "secret": "cc47b67932", "media": "photo", "latitude": "0", "id": "323164836", "tags": "naturalfallsstatepark"}, {"datetaken": "2006-10-07 09:37:54", "license": "3", "title": "Natural Falls State Park 2", "text": "", "album_id": "72157594422873458", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/323164831_228a7a4a59_o.jpg", "secret": "228a7a4a59", "media": "photo", "latitude": "0", "id": "323164831", "tags": "naturalfallsstatepark"}, {"datetaken": "2006-10-07 09:41:01", "license": "3", "title": "Natural Falls State Park", "text": "", "album_id": "72157594422873458", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/323164829_c5886b38b0_o.jpg", "secret": "c5886b38b0", "media": "photo", "latitude": "0", "id": "323164829", "tags": "blogoklahomaus naturalfallsstatepark"}, {"datetaken": "2006-10-07 09:43:06", "license": "3", "title": "Natural Falls State Park 6", "text": "", "album_id": "72157594422873458", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/323164841_1cad107fe3_o.jpg", "secret": "1cad107fe3", "media": "photo", "latitude": "0", "id": "323164841", "tags": "naturalfallsstatepark"}, {"datetaken": "2006-10-07 09:45:38", "license": "3", "title": "Natural Falls State Park 7", "text": "", "album_id": "72157594422873458", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/323189814_844c1bbbdf_o.jpg", "secret": "844c1bbbdf", "media": "photo", "latitude": "0", "id": "323189814", "tags": "naturalfallsstatepark"}, {"datetaken": "2006-10-07 09:47:22", "license": "3", "title": "Natural Falls State Park 8", "text": "", "album_id": "72157594422873458", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/323189816_993238b7f8_o.jpg", "secret": "993238b7f8", "media": "photo", "latitude": "0", "id": "323189816", "tags": "naturalfallsstatepark"}, {"datetaken": "2006-10-07 09:51:30", "license": "3", "title": "Natural Falls State Park 9", "text": "", "album_id": "72157594422873458", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/323189818_c744a12172_o.jpg", "secret": "c744a12172", "media": "photo", "latitude": "0", "id": "323189818", "tags": "naturalfallsstatepark"}, {"datetaken": "2006-10-07 09:53:26", "license": "3", "title": "Natural Falls State Park 10", "text": "", "album_id": "72157594422873458", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/323189821_e5277c0fac_o.jpg", "secret": "e5277c0fac", "media": "photo", "latitude": "0", "id": "323189821", "tags": "naturalfallsstatepark"}, {"datetaken": "2007-02-23 09:17:39", "license": "1", "title": "Today's hike - Helderberg Mountain", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/399537897_db5daed49d_o.jpg", "secret": "db5daed49d", "media": "photo", "latitude": "0", "id": "399537897", "tags": "southafrica phonepic"}, {"datetaken": "2007-02-23 09:21:16", "license": "1", "title": "Have time to dream...", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/399540137_0995d35496_o.jpg", "secret": "0995d35496", "media": "photo", "latitude": "0", "id": "399540137", "tags": "southafrica phonepic"}, {"datetaken": "2007-02-23 09:22:05", "license": "1", "title": "Helderberg Mountain", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/400028138_f1ca5eadf3_o.jpg", "secret": "f1ca5eadf3", "media": "photo", "latitude": "0", "id": "400028138", "tags": "southafrica"}, {"datetaken": "2007-02-23 09:26:14", "license": "1", "title": "Helderberg Mountain", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/400029880_ddf6b8bcc9_o.jpg", "secret": "ddf6b8bcc9", "media": "photo", "latitude": "0", "id": "400029880", "tags": "southafrica"}, {"datetaken": "2007-02-23 09:48:38", "license": "1", "title": "Helderberg Mountain", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/400032143_19ec46d9e8_o.jpg", "secret": "19ec46d9e8", "media": "photo", "latitude": "0", "id": "400032143", "tags": "southafrica"}, {"datetaken": "2007-02-23 10:24:20", "license": "1", "title": "Helderberg Mountain", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/400034540_9e0b4169fd_o.jpg", "secret": "9e0b4169fd", "media": "photo", "latitude": "0", "id": "400034540", "tags": "southafrica"}, {"datetaken": "2007-02-23 10:30:01", "license": "1", "title": "Helderberg Mountain", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/400036602_61b6c1006e_o.jpg", "secret": "61b6c1006e", "media": "photo", "latitude": "0", "id": "400036602", "tags": "southafrica"}, {"datetaken": "2007-02-23 10:44:35", "license": "1", "title": "Helderberg Mountain", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/400038633_b81d83a201_o.jpg", "secret": "b81d83a201", "media": "photo", "latitude": "0", "id": "400038633", "tags": "southafrica"}, {"datetaken": "2007-02-23 11:04:34", "license": "1", "title": "Helderberg Mountain", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/400040466_b643903433_o.jpg", "secret": "b643903433", "media": "photo", "latitude": "0", "id": "400040466", "tags": "southafrica"}, {"datetaken": "2007-02-23 11:07:57", "license": "1", "title": "Helderberg Mountain", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/400042564_5f7d030b57_o.jpg", "secret": "5f7d030b57", "media": "photo", "latitude": "0", "id": "400042564", "tags": "southafrica"}, {"datetaken": "2007-02-23 11:08:19", "license": "1", "title": "Helderberg Mountain", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/400046225_6ea3bd28ea_o.jpg", "secret": "6ea3bd28ea", "media": "photo", "latitude": "0", "id": "400046225", "tags": "southafrica"}, {"datetaken": "2007-02-23 11:17:00", "license": "1", "title": "Danger", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/399621923_51bc124b45_o.jpg", "secret": "51bc124b45", "media": "photo", "latitude": "0", "id": "399621923", "tags": "southafrica phonepic"}, {"datetaken": "2007-02-23 11:19:15", "license": "1", "title": "Helderberg Mnt", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/399625223_576e509df4_o.jpg", "secret": "576e509df4", "media": "photo", "latitude": "0", "id": "399625223", "tags": "southafrica phonepic"}, {"datetaken": "2007-02-23 11:55:01", "license": "1", "title": "Helderberg Mountain", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/400051184_605e8594c5_o.jpg", "secret": "605e8594c5", "media": "photo", "latitude": "0", "id": "400051184", "tags": "southafrica"}, {"datetaken": "2007-02-23 12:04:06", "license": "1", "title": "Helderberg Mountain", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/400090995_25cdd9620b_o.jpg", "secret": "25cdd9620b", "media": "photo", "latitude": "0", "id": "400090995", "tags": "southafrica"}, {"datetaken": "2007-02-23 12:29:46", "license": "1", "title": "Helderberg Mountain", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/400093249_f8b05f4289_o.jpg", "secret": "f8b05f4289", "media": "photo", "latitude": "0", "id": "400093249", "tags": "southafrica"}, {"datetaken": "2007-02-23 12:45:53", "license": "1", "title": "Helderberg Mountain", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/400094300_2ddbe25680_o.jpg", "secret": "2ddbe25680", "media": "photo", "latitude": "0", "id": "400094300", "tags": "southafrica"}, {"datetaken": "2007-02-23 13:00:35", "license": "1", "title": "Pine forest", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/399708419_4180b9f2ba_o.jpg", "secret": "4180b9f2ba", "media": "photo", "latitude": "0", "id": "399708419", "tags": "southafrica phonepic"}, {"datetaken": "2007-02-23 14:48:48", "license": "1", "title": "Guardian Peak Winery", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/399717450_0d53eebe08_o.jpg", "secret": "0d53eebe08", "media": "photo", "latitude": "0", "id": "399717450", "tags": "southafrica phonepic"}, {"datetaken": "2007-02-23 15:21:18", "license": "1", "title": "Guardian Peak restaurant", "text": "", "album_id": "72157594553148814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/400095912_366ac26224_o.jpg", "secret": "366ac26224", "media": "photo", "latitude": "0", "id": "400095912", "tags": "southafrica"}, {"datetaken": "2006-11-16 02:49:52", "license": "4", "title": "Steamy Kuirau Park", "text": "", "album_id": "72157600060241193", "longitude": "176.224308", "url_o": "https://farm1.staticflickr.com/157/380615062_3729c35f32_o.jpg", "secret": "3729c35f32", "media": "photo", "latitude": "-38.117271", "id": "380615062", "tags": "newzealand rotorua steam geothermal treefern kuiraupark"}, {"datetaken": "2006-11-16 02:55:36", "license": "4", "title": "Steam droplets on dead branches", "text": "", "album_id": "72157600060241193", "longitude": "176.224308", "url_o": "https://farm1.staticflickr.com/149/380616468_7ddca5b67c_o.jpg", "secret": "7ddca5b67c", "media": "photo", "latitude": "-38.117271", "id": "380616468", "tags": "newzealand tree water dead droplets rotorua steam geothermal kuiraupark"}, {"datetaken": "2006-11-16 02:56:22", "license": "4", "title": "Dead tree in the steam", "text": "", "album_id": "72157600060241193", "longitude": "176.224308", "url_o": "https://farm1.staticflickr.com/133/380617699_65c396ae13_o.jpg", "secret": "65c396ae13", "media": "photo", "latitude": "-38.117271", "id": "380617699", "tags": "newzealand tree dead rotorua steam hotspring geothermal kuiraupark"}, {"datetaken": "2006-11-16 02:56:54", "license": "4", "title": "Boiling mud pool in Kuirau Park", "text": "", "album_id": "72157600060241193", "longitude": "176.224308", "url_o": "https://farm1.staticflickr.com/132/373643243_3e770d6f02_o.jpg", "secret": "3e770d6f02", "media": "photo", "latitude": "-38.117271", "id": "373643243", "tags": "park newzealand rotorua mud hotspring geothermal boiling kuirau msh0107 msh01074"}, {"datetaken": "2006-11-16 03:02:10", "license": "4", "title": "Hot pool in Kuirau Park", "text": "", "album_id": "72157600060241193", "longitude": "176.224308", "url_o": "https://farm1.staticflickr.com/182/373656152_d6ab20b7e0_o.jpg", "secret": "d6ab20b7e0", "media": "photo", "latitude": "-38.117271", "id": "373656152", "tags": "park newzealand pool rotorua steam hotspring geothermal kuirau"}, {"datetaken": "2006-11-16 03:06:41", "license": "4", "title": "Boiling mud in Kuirau Park", "text": "", "album_id": "72157600060241193", "longitude": "176.224308", "url_o": "https://farm1.staticflickr.com/175/373664950_816b6d01e0_o.jpg", "secret": "816b6d01e0", "media": "photo", "latitude": "-38.117271", "id": "373664950", "tags": "park newzealand hot rotorua mud hotspring geothermal boiling kuirau msh0308 msh030818"}, {"datetaken": "2006-11-16 03:06:56", "license": "4", "title": "Boiling mud in Kuirau Park", "text": "", "album_id": "72157600060241193", "longitude": "176.224308", "url_o": "https://farm1.staticflickr.com/142/373664958_d81b81c33c_o.jpg", "secret": "d81b81c33c", "media": "photo", "latitude": "-38.117271", "id": "373664958", "tags": "park newzealand hot rotorua mud hotspring geothermal boiling kuirau"}, {"datetaken": "2006-11-16 03:10:23", "license": "4", "title": "Dead vegetation, Kuirau Park", "text": "", "album_id": "72157600060241193", "longitude": "176.224308", "url_o": "https://farm1.staticflickr.com/187/380620148_b7cb7e4e99_o.jpg", "secret": "b7cb7e4e99", "media": "photo", "latitude": "-38.117271", "id": "380620148", "tags": "newzealand tree dead rotorua hotspring geothermal kuiraupark"}, {"datetaken": "2006-11-16 03:11:15", "license": "4", "title": "Hot pools and dead trees, Kuirau Park", "text": "", "album_id": "72157600060241193", "longitude": "176.224308", "url_o": "https://farm1.staticflickr.com/153/374492198_c9070c423f_o.jpg", "secret": "c9070c423f", "media": "photo", "latitude": "-38.117271", "id": "374492198", "tags": "park newzealand rotorua geothermal hotsprings kuirau"}, {"datetaken": "2006-11-16 03:20:59", "license": "4", "title": "Dead plants in Kuirau Park hot springs", "text": "", "album_id": "72157600060241193", "longitude": "176.224308", "url_o": "https://farm1.staticflickr.com/164/374498729_dabbc616bc_o.jpg", "secret": "dabbc616bc", "media": "photo", "latitude": "-38.117271", "id": "374498729", "tags": "park newzealand dead rotorua branches hotspring geothermal kuirau"}, {"datetaken": "2006-11-16 03:21:31", "license": "4", "title": "Steamy hot pool, Kuirau Park", "text": "", "album_id": "72157600060241193", "longitude": "176.224308", "url_o": "https://farm1.staticflickr.com/143/374513474_61d568f338_o.jpg", "secret": "61d568f338", "media": "photo", "latitude": "-38.117271", "id": "374513474", "tags": "park trees newzealand dead rotorua steam walkway hotspring geothermal kuirau"}, {"datetaken": "2006-11-16 03:23:51", "license": "4", "title": "Steamy hot pool, Kuirau Park", "text": "", "album_id": "72157600060241193", "longitude": "176.224308", "url_o": "https://farm1.staticflickr.com/170/374513482_5ce4316541_o.jpg", "secret": "5ce4316541", "media": "photo", "latitude": "-38.117271", "id": "374513482", "tags": "park newzealand rotorua steam walkway hotspring geothermal kuirau"}, {"datetaken": "2006-11-16 03:24:03", "license": "4", "title": "Steamy hot pool, Kuirau Park", "text": "", "album_id": "72157600060241193", "longitude": "176.224308", "url_o": "https://farm1.staticflickr.com/179/374513487_7a816b25a2_o.jpg", "secret": "7a816b25a2", "media": "photo", "latitude": "-38.117271", "id": "374513487", "tags": "park newzealand rotorua steam walkway smoky hotspring geothermal fumes kuirau msh0308 msh030810"}, {"datetaken": "2006-11-16 03:24:25", "license": "4", "title": "Steamy hot pool, Kuirau Park", "text": "", "album_id": "72157600060241193", "longitude": "176.224308", "url_o": "https://farm1.staticflickr.com/158/374513504_7a0a409f2c_o.jpg", "secret": "7a0a409f2c", "media": "photo", "latitude": "-38.117271", "id": "374513504", "tags": "park newzealand rotorua steam walkway hotspring geothermal kuirau"}, {"datetaken": "2006-11-16 03:24:29", "license": "4", "title": "Dave ventures into the mist", "text": "", "album_id": "72157600060241193", "longitude": "176.224308", "url_o": "https://farm1.staticflickr.com/126/380622547_bb33225096_o.jpg", "secret": "bb33225096", "media": "photo", "latitude": "-38.117271", "id": "380622547", "tags": "newzealand dave rotorua steam walkway hotspring geothermal kuiraupark"}, {"datetaken": "2006-11-16 03:25:25", "license": "4", "title": "Hot pool, Kuirau Park", "text": "", "album_id": "72157600060241193", "longitude": "176.224308", "url_o": "https://farm1.staticflickr.com/158/380624072_7498b088db_o.jpg", "secret": "7498b088db", "media": "photo", "latitude": "-38.117271", "id": "380624072", "tags": "newzealand pool rotorua mud hotspring geothermal kuiraupark"}, {"datetaken": "2006-11-16 03:29:26", "license": "4", "title": "Hanging on to life", "text": "", "album_id": "72157600060241193", "longitude": "176.224308", "url_o": "https://farm1.staticflickr.com/185/374533633_c110ac5814_o.jpg", "secret": "c110ac5814", "media": "photo", "latitude": "-38.117271", "id": "374533633", "tags": "park trees newzealand dead rotorua steam hotspring geothermal kuirau"}, {"datetaken": "2006-11-17 05:02:39", "license": "4", "title": "Sculpture in Rotorua Government Gardens", "text": "", "album_id": "72157600060241193", "longitude": "176.236495", "url_o": "https://farm1.staticflickr.com/182/378393135_5c2f1a3d5a_o.jpg", "secret": "5c2f1a3d5a", "media": "photo", "latitude": "-38.110788", "id": "378393135", "tags": "newzealand sculpture statue rotorua maori governmentgardens"}, {"datetaken": "2006-11-17 05:03:05", "license": "4", "title": "Mask sculpture in Rotorua Government Gardens", "text": "", "album_id": "72157600060241193", "longitude": "176.236495", "url_o": "https://farm1.staticflickr.com/148/378395497_111e211bb4_o.jpg", "secret": "eb098212d7", "media": "photo", "latitude": "-38.110788", "id": "378395497", "tags": "newzealand sculpture rotorua mask maori governmentgardens msh0412 msh041212"}, {"datetaken": "2006-11-17 05:09:29", "license": "4", "title": "Lake Rotorua", "text": "", "album_id": "72157600060241193", "longitude": "176.236495", "url_o": "https://farm1.staticflickr.com/131/378398600_9bdc7ae449_o.jpg", "secret": "9bdc7ae449", "media": "photo", "latitude": "-38.110788", "id": "378398600", "tags": "newzealand lake rotorua geothermal"}, {"datetaken": "2006-11-17 05:18:54", "license": "4", "title": "Thermal area on shores of Lake Rotorua", "text": "", "album_id": "72157600060241193", "longitude": "176.236495", "url_o": "https://farm1.staticflickr.com/168/380658799_e484cb188e_o.jpg", "secret": "e484cb188e", "media": "photo", "latitude": "-38.110788", "id": "380658799", "tags": "newzealand lake sign danger rotorua shore hotspring geothermal"}, {"datetaken": "2006-11-17 05:21:38", "license": "4", "title": "Would you swim in this?", "text": "", "album_id": "72157600060241193", "longitude": "176.236495", "url_o": "https://farm1.staticflickr.com/187/380661236_752d2c535f_o.jpg", "secret": "752d2c535f", "media": "photo", "latitude": "-38.110788", "id": "380661236", "tags": "newzealand pool rotorua mud scum hotspring geothermal governmentgardens noxious"}, {"datetaken": "2006-11-17 06:14:52", "license": "4", "title": "I thought this was New Zealand?!", "text": "", "album_id": "72157600060241193", "longitude": "176.236495", "url_o": "https://farm1.staticflickr.com/156/380663341_571ff306f4_o.jpg", "secret": "571ff306f4", "media": "photo", "latitude": "-38.110788", "id": "380663341", "tags": "newzealand art rotorua totem canadian firstnations governmentgardens"}, {"datetaken": "2006-10-31 08:39:20", "license": "2", "title": "Leaving Shenyang", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/345095482_704916ca2f_o.jpg", "secret": "704916ca2f", "media": "photo", "latitude": "0", "id": "345095482", "tags": "china road trip travel vacation holiday bus asia \u4e2d\u56fd \u6c88\u9633 bustrip shenyang \u4e2d\u570b pedestriancrossing eastasia liaoning longdistancebus mukden \u8fbd \u8fbd\u5b81 \u8fbd\u5b81\u7701 zh\u014dnggu\u00f3 \u700b\u967d li\u00e1on\u00edng \u6e16\u9633 sh\u011bny\u00e1ng shenyangtoharbin photostakenfromabus"}, {"datetaken": "2006-10-31 08:55:24", "license": "2", "title": "Out onto the espressway", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/345095696_6f685e9284_o.jpg", "secret": "6f685e9284", "media": "photo", "latitude": "0", "id": "345095696", "tags": "china road trip travel vacation holiday bus highway asia expressway \u4e2d\u56fd bustrip \u4e2d\u570b eastasia longdistancebus zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus"}, {"datetaken": "2006-10-31 09:26:20", "license": "2", "title": "expressway", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/345095893_de98123cf4_o.jpg", "secret": "de98123cf4", "media": "photo", "latitude": "0", "id": "345095893", "tags": "china road trip travel vacation holiday bus highway asia expressway \u4e2d\u56fd bustrip \u4e2d\u570b eastasia longdistancebus zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus"}, {"datetaken": "2006-10-31 09:27:15", "license": "2", "title": "Electronic signs", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/345096125_761d862f1d_o.jpg", "secret": "761d862f1d", "media": "photo", "latitude": "0", "id": "345096125", "tags": "china road trip travel vacation holiday signs bus asia \u4e2d\u56fd bustrip electronic \u4e2d\u570b 152 eastasia longdistancebus zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus"}, {"datetaken": "2006-10-31 09:33:27", "license": "2", "title": "Police", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/345096290_ca4640bed8_o.jpg", "secret": "ca4640bed8", "media": "photo", "latitude": "0", "id": "345096290", "tags": "china trip travel vacation holiday building bus sign asia police \u4e2d\u56fd bustrip \u4e2d\u570b eastasia sideroad longdistancebus zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus"}, {"datetaken": "2006-10-31 09:36:11", "license": "2", "title": "Expressway distance", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/345096501_282aa06ab5_o.jpg", "secret": "282aa06ab5", "media": "photo", "latitude": "0", "id": "345096501", "tags": "china trip travel vacation holiday bus asia expressway \u4e2d\u56fd bustrip distance harbin \u4e2d\u570b \u957f\u6625 eastasia siping \u54c8\u5c14\u6ee8 longdistancebus zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus \u56db\u5e73 changchung"}, {"datetaken": "2006-10-31 09:56:26", "license": "2", "title": "The harvest is done", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/345096781_a8577a227b_o.jpg", "secret": "a8577a227b", "media": "photo", "latitude": "0", "id": "345096781", "tags": "china trip travel vacation holiday bus spring haze asia village farm harvest \u4e2d\u56fd bustrip \u4e2d\u570b eastasia longdistancebus zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus"}, {"datetaken": "2006-10-31 09:58:08", "license": "2", "title": "trees", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/345097188_68ff71987d_o.jpg", "secret": "68ff71987d", "media": "photo", "latitude": "0", "id": "345097188", "tags": "china trip travel trees vacation holiday bus fence asia farm \u4e2d\u56fd bustrip \u4e2d\u570b eastasia longdistancebus windbreak zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus"}, {"datetaken": "2006-10-31 09:59:24", "license": "2", "title": "farmhouse", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/345097465_a6979ef469_o.jpg", "secret": "a6979ef469", "media": "photo", "latitude": "0", "id": "345097465", "tags": "china road trip travel vacation house holiday bus asia farm expressway \u4e2d\u56fd bustrip \u4e2d\u570b eastasia longdistancebus zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus"}, {"datetaken": "2006-10-31 10:06:09", "license": "2", "title": "Windmills", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/345097669_0e58b08688_o.jpg", "secret": "0e58b08688", "media": "photo", "latitude": "0", "id": "345097669", "tags": "china road trip travel vacation holiday bus windmill highway asia expressway \u4e2d\u56fd bustrip windturbine windfarm \u4e2d\u570b eastasia longdistancebus zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus"}, {"datetaken": "2006-10-31 10:06:23", "license": "2", "title": "new building", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/345097882_752d48c302_o.jpg", "secret": "752d48c302", "media": "photo", "latitude": "0", "id": "345097882", "tags": "china new trip travel vacation holiday building bus asia \u4e2d\u56fd bustrip \u4e2d\u570b eastasia redroof longdistancebus zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus"}, {"datetaken": "2006-10-31 10:07:35", "license": "2", "title": "Logging truck", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/345098049_9d98aa33e0_o.jpg", "secret": "9d98aa33e0", "media": "photo", "latitude": "0", "id": "345098049", "tags": "china road trip travel vacation holiday bus truck highway asia expressway \u4e2d\u56fd bustrip \u4e2d\u570b eastasia longdistancebus loggingtruck zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus"}, {"datetaken": "2006-10-31 10:08:33", "license": "2", "title": "wind turbine", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/345098314_109e7cf01f_o.jpg", "secret": "109e7cf01f", "media": "photo", "latitude": "0", "id": "345098314", "tags": "china trip travel vacation holiday bus windmill asia hill powerline \u4e2d\u56fd bustrip windturbine \u4e2d\u570b eastasia longdistancebus zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus"}, {"datetaken": "2006-10-31 10:11:57", "license": "2", "title": "bridge", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/345098600_3b63ed1ca8_o.jpg", "secret": "3b63ed1ca8", "media": "photo", "latitude": "0", "id": "345098600", "tags": "china trip travel bridge vacation holiday bus asia \u4e2d\u56fd bustrip length \u4e2d\u570b eastasia longdistancebus zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus majialinzi 112m \u9a6c\u5bb6\u6797\u5b50"}, {"datetaken": "2006-10-31 10:16:03", "license": "2", "title": "overtaking lane", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/345098784_675e6905cf_o.jpg", "secret": "675e6905cf", "media": "photo", "latitude": "0", "id": "345098784", "tags": "china road trip travel bridge vacation holiday bus highway asia expressway \u4e2d\u56fd bustrip \u4e2d\u570b eastasia longdistancebus zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus overtakinglane carriagelane"}, {"datetaken": "2006-10-31 10:19:16", "license": "2", "title": "oncomming trucks", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/345098997_2f4aa6e226_o.jpg", "secret": "2f4aa6e226", "media": "photo", "latitude": "0", "id": "345098997", "tags": "china road trip travel vacation holiday bus highway asia trucks expressway \u4e2d\u56fd bustrip \u4e2d\u570b eastasia longdistancebus zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus"}, {"datetaken": "2006-10-31 10:21:29", "license": "2", "title": "farmland", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/345099156_24825e0819_o.jpg", "secret": "24825e0819", "media": "photo", "latitude": "0", "id": "345099156", "tags": "china trip travel vacation holiday bus farmhouse asia farmland \u4e2d\u56fd bustrip \u4e2d\u570b eastasia longdistancebus zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus"}, {"datetaken": "2006-10-31 10:22:45", "license": "2", "title": "village", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/345099454_f99dbc4d2f_o.jpg", "secret": "f99dbc4d2f", "media": "photo", "latitude": "0", "id": "345099454", "tags": "china trip travel vacation holiday bus asia village small farmland \u4e2d\u56fd bustrip \u4e2d\u570b eastasia longdistancebus zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus"}, {"datetaken": "2006-10-31 10:25:58", "license": "2", "title": "logging truck", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/345099739_b2a27c62c7_o.jpg", "secret": "b2a27c62c7", "media": "photo", "latitude": "0", "id": "345099739", "tags": "china road trip travel vacation holiday bus truck highway asia logging expressway \u4e2d\u56fd bustrip \u4e2d\u570b eastasia longdistancebus zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus"}, {"datetaken": "2006-10-31 10:30:58", "license": "2", "title": "road works", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/345099957_6364f3d8b1_o.jpg", "secret": "6364f3d8b1", "media": "photo", "latitude": "0", "id": "345099957", "tags": "china road trip travel vacation holiday bus highway asia slow traffic roadworks trucks \u4e2d\u56fd bustrip \u4e2d\u570b eastasia longdistancebus zh\u014dnggu\u00f3 shenyangtoharbin photostakenfromabus"}, {"datetaken": "2006-10-31 12:00:58", "license": "2", "title": "detour", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/345100121_93fd65f6b1_o.jpg", "secret": "93fd65f6b1", "media": "photo", "latitude": "0", "id": "345100121", "tags": "china road trip travel vacation holiday bus highway asia factory \u4e2d\u56fd bustrip kirin logistics \u4e2d\u570b eastasia jilin \u5409\u6797 longdistancebus zh\u014dnggu\u00f3 \u5409\u6797\u7701 \u7269\u6d41 baicheng shenyangtoharbin photostakenfromabus j\u00edl\u00ednsh\u011bng girinula \u5409\u6797\u7531\u653f\u7269\u6d41 \u7531\u653f"}, {"datetaken": "2006-10-31 12:46:00", "license": "2", "title": "village", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/345100444_714849d23a_o.jpg", "secret": "714849d23a", "media": "photo", "latitude": "0", "id": "345100444", "tags": "china trip travel vacation holiday bus fence asia village horizon farmland \u4e2d\u56fd bustrip kirin \u4e2d\u570b eastasia jilin \u5409\u6797 longdistancebus zh\u014dnggu\u00f3 \u5409\u6797\u7701 shenyangtoharbin photostakenfromabus j\u00edl\u00ednsh\u011bng girinula"}, {"datetaken": "2006-10-31 12:48:21", "license": "2", "title": "farming with three wheeled trucks", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/345100698_64976aeab7_o.jpg", "secret": "64976aeab7", "media": "photo", "latitude": "0", "id": "345100698", "tags": "china trip travel vacation holiday bus truck asia farmers farm farming \u4e2d\u56fd bustrip kirin \u4e2d\u570b eastasia jilin \u5409\u6797 longdistancebus threewheels zh\u014dnggu\u00f3 \u5409\u6797\u7701 shenyangtoharbin photostakenfromabus ricestalks j\u00edl\u00ednsh\u011bng girinula"}, {"datetaken": "2006-10-31 12:55:52", "license": "2", "title": "cars", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/345100897_24fbefdd08_o.jpg", "secret": "24fbefdd08", "media": "photo", "latitude": "0", "id": "345100897", "tags": "china trip travel vacation holiday bus cars truck highway asia transport rod expressway \u4e2d\u56fd bustrip kirin \u4e2d\u570b eastasia jilin \u5409\u6797 longdistancebus bdouble zh\u014dnggu\u00f3 \u5409\u6797\u7701 shenyangtoharbin photostakenfromabus j\u00edl\u00ednsh\u011bng girinula"}, {"datetaken": "2006-10-31 13:01:27", "license": "2", "title": "tractors", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/345101182_ee97ac6002_o.jpg", "secret": "ee97ac6002", "media": "photo", "latitude": "0", "id": "345101182", "tags": "china trip travel red vacation holiday tractor bus truck asia \u4e2d\u56fd bustrip kirin tractors \u4e2d\u570b eastasia jilin \u5409\u6797 redtractor longdistancebus zh\u014dnggu\u00f3 \u5409\u6797\u7701 shenyangtoharbin photostakenfromabus j\u00edl\u00ednsh\u011bng girinula"}, {"datetaken": "2006-10-31 13:06:08", "license": "2", "title": "village", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/345101456_7c3390616f_o.jpg", "secret": "7c3390616f", "media": "photo", "latitude": "0", "id": "345101456", "tags": "china trip travel houses vacation holiday bus asia village housing crops \u4e2d\u56fd bustrip kirin \u4e2d\u570b eastasia jilin \u5409\u6797 longdistancebus zh\u014dnggu\u00f3 \u5409\u6797\u7701 shenyangtoharbin photostakenfromabus processingcrops j\u00edl\u00ednsh\u011bng girinula"}, {"datetaken": "2006-10-31 13:06:54", "license": "2", "title": "paddock", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/345101751_18fc54fac2_o.jpg", "secret": "18fc54fac2", "media": "photo", "latitude": "0", "id": "345101751", "tags": "china trip travel vacation holiday bus asia farm farmland \u4e2d\u56fd bustrip kirin paddock \u4e2d\u570b eastasia jilin \u5409\u6797 longdistancebus zh\u014dnggu\u00f3 \u5409\u6797\u7701 shenyangtoharbin photostakenfromabus j\u00edl\u00ednsh\u011bng girinula"}, {"datetaken": "2006-10-31 13:11:12", "license": "2", "title": "petrol station", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/345101994_6e443ebaed_o.jpg", "secret": "6e443ebaed", "media": "photo", "latitude": "0", "id": "345101994", "tags": "china trip travel vacation holiday bus station asia petrol \u4e2d\u56fd bustrip kirin \u4e2d\u570b eastasia jilin \u5409\u6797 longdistancebus zh\u014dnggu\u00f3 \u5409\u6797\u7701 shenyangtoharbin photostakenfromabus j\u00edl\u00ednsh\u011bng girinula"}, {"datetaken": "2006-10-31 13:39:01", "license": "2", "title": "bales of hay", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/345102197_b12abfaaa2_o.jpg", "secret": "b12abfaaa2", "media": "photo", "latitude": "0", "id": "345102197", "tags": "china trip travel vacation holiday bus asia village farming farmland farms hay \u4e2d\u56fd bustrip kirin bale \u4e2d\u570b eastasia jilin balesofhay \u5409\u6797 longdistancebus zh\u014dnggu\u00f3 \u5409\u6797\u7701 shenyangtoharbin photostakenfromabus j\u00edl\u00ednsh\u011bng girinula"}, {"datetaken": "2006-10-31 13:42:10", "license": "2", "title": "river", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/345102415_495ed2ffeb_o.jpg", "secret": "495ed2ffeb", "media": "photo", "latitude": "0", "id": "345102415", "tags": "china road trip travel bridge vacation holiday bus river highway asia expressway \u4e2d\u56fd bustrip kirin \u4e2d\u570b eastasia jilin \u5409\u6797 longdistancebus zh\u014dnggu\u00f3 \u5409\u6797\u7701 shenyangtoharbin photostakenfromabus j\u00edl\u00ednsh\u011bng girinula"}, {"datetaken": "2006-10-31 13:44:11", "license": "2", "title": "water filled", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/345102645_74f22bbe51_o.jpg", "secret": "74f22bbe51", "media": "photo", "latitude": "0", "id": "345102645", "tags": "china road trip travel vacation holiday bus water highway asia rice filled expressway ricepaddies \u4e2d\u56fd bustrip kirin \u4e2d\u570b paddie eastasia jilin \u5409\u6797 longdistancebus zh\u014dnggu\u00f3 \u5409\u6797\u7701 shenyangtoharbin photostakenfromabus j\u00edl\u00ednsh\u011bng girinula"}, {"datetaken": "2006-10-31 13:52:24", "license": "2", "title": "In bus TV", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/345102888_ea26d87f61_o.jpg", "secret": "ea26d87f61", "media": "photo", "latitude": "0", "id": "345102888", "tags": "china trip travel vacation holiday bus tv asia chinese karaoke \u4e2d\u56fd bustrip kirin \u4e2d\u570b vcd eastasia jilin \u5409\u6797 longdistancebus zh\u014dnggu\u00f3 \u5409\u6797\u7701 shenyangtoharbin photostakenfromabus j\u00edl\u00ednsh\u011bng girinula"}, {"datetaken": "2006-10-31 13:54:45", "license": "2", "title": "Nearly there", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/345103136_9385bdab98_o.jpg", "secret": "9385bdab98", "media": "photo", "latitude": "0", "id": "345103136", "tags": "china road trip travel bridge vacation holiday bus underpass highway asia expressway \u4e2d\u56fd bustrip kirin harbin \u4e2d\u570b eastasia fuyu jilin \u5409\u6797 \u54c8\u5c14\u6ee8 longdistancebus songyuan \u677e\u539f zh\u014dnggu\u00f3 \u5409\u6797\u7701 shenyangtoharbin photostakenfromabus 93km \u6276\u4f59 j\u00edl\u00ednsh\u011bng girinula"}, {"datetaken": "2006-10-31 13:55:30", "license": "2", "title": "Nearly there", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/345103366_2ac615809a_o.jpg", "secret": "2ac615809a", "media": "photo", "latitude": "0", "id": "345103366", "tags": "china trip travel vacation holiday building bus buildings asia village \u4e2d\u56fd bustrip kirin \u4e2d\u570b eastasia jilin \u5409\u6797 longdistancebus zh\u014dnggu\u00f3 \u5409\u6797\u7701 shenyangtoharbin photostakenfromabus j\u00edl\u00ednsh\u011bng girinula"}, {"datetaken": "2006-10-31 14:11:04", "license": "2", "title": "confused", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/345103565_c71eb61e0c_o.jpg", "secret": "c71eb61e0c", "media": "photo", "latitude": "0", "id": "345103565", "tags": "china road trip travel vacation holiday signs bus heilongjiang highway asia expressway \u4e2d\u56fd bustrip kirin \u4e2d\u570b eastasia jilin \u5409\u6797 longdistancebus \u9ed1\u9f99\u6c5f\u7701 zh\u014dnggu\u00f3 \u5409\u6797\u7701 shenyangtoharbin photostakenfromabus j\u00edl\u00ednsh\u011bng girinula welcometojinlinagain \u6b22\u8fce\u60a8\u518d\u6765\u5409\u6797"}, {"datetaken": "2006-10-31 14:11:12", "license": "2", "title": "A river", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/345103710_664dd19427_o.jpg", "secret": "664dd19427", "media": "photo", "latitude": "0", "id": "345103710", "tags": "china trip travel bridge vacation holiday bus heilongjiang river asia \u4e2d\u56fd bustrip \u4e2d\u570b eastasia longdistancebus \u9ed1 \u9ed1\u9f99\u6c5f\u7701 \u9ed1\u9f8d\u6c5f\u7701 zh\u014dnggu\u00f3 heilungkiang sahaliyanula shenyangtoharbin photostakenfromabus h\u0113il\u00f3ngji\u0101ngsh\u011bng"}, {"datetaken": "2006-10-31 14:12:43", "license": "2", "title": "road side stop", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/345103870_501c2c2bd0_o.jpg", "secret": "501c2c2bd0", "media": "photo", "latitude": "0", "id": "345103870", "tags": "china trip travel vacation holiday building bus heilongjiang asia stop \u4e2d\u56fd roadside bustrip carpark \u4e2d\u570b eastasia longdistancebus \u9ed1 \u9ed1\u9f99\u6c5f\u7701 \u9ed1\u9f8d\u6c5f\u7701 zh\u014dnggu\u00f3 heilungkiang sahaliyanula shenyangtoharbin photostakenfromabus h\u0113il\u00f3ngji\u0101ngsh\u011bng"}, {"datetaken": "2006-10-31 14:16:31", "license": "2", "title": "village", "text": "", "album_id": "72157594458372207", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/345104068_3f7d68aef2_o.jpg", "secret": "3f7d68aef2", "media": "photo", "latitude": "0", "id": "345104068", "tags": "china trip travel houses vacation holiday bus heilongjiang buildings asia village farm farms \u4e2d\u56fd bustrip \u4e2d\u570b eastasia longdistancebus \u9ed1 \u9ed1\u9f99\u6c5f\u7701 \u9ed1\u9f8d\u6c5f\u7701 zh\u014dnggu\u00f3 heilungkiang sahaliyanula shenyangtoharbin photostakenfromabus h\u0113il\u00f3ngji\u0101ngsh\u011bng"}, {"datetaken": "2007-01-13 05:00:34", "license": "1", "title": "Contemplating the jungle before taking the plunge inside", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/355728429_c9bbd50b53_o.jpg", "secret": "c9bbd50b53", "media": "photo", "latitude": "0", "id": "355728429", "tags": "plant tree green nature forest thailand peaceful ficus jungle parasite 2007"}, {"datetaken": "2007-01-13 05:00:34", "license": "1", "title": "Base of a ficus \"tree\"", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/355728436_b6f67930ea_o.jpg", "secret": "b6f67930ea", "media": "photo", "latitude": "0", "id": "355728436", "tags": "plant tree green nature thailand ficus bark jungle parasite 2007"}, {"datetaken": "2007-01-13 05:00:34", "license": "1", "title": "Ficus branches and membranes fusing", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/355728433_a2b0c7e96b_o.jpg", "secret": "a2b0c7e96b", "media": "photo", "latitude": "0", "id": "355728433", "tags": "plant tree green nature thailand ficus bark jungle parasite 2007"}, {"datetaken": "2007-01-13 05:00:34", "license": "1", "title": "Ficus taking over a tree.", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/355728431_e82f897172_o.jpg", "secret": "e82f897172", "media": "photo", "latitude": "0", "id": "355728431", "tags": "plant tree green nature thailand ficus bark jungle parasite 2007"}, {"datetaken": "2007-01-13 05:00:34", "license": "1", "title": "Ficus spiraling up itself.", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/355728432_423b89e3dd_o.jpg", "secret": "423b89e3dd", "media": "photo", "latitude": "0", "id": "355728432", "tags": "plant tree green nature thailand ficus bark jungle parasite 2007"}, {"datetaken": "2007-01-13 05:00:35", "license": "1", "title": "Towering ficus, Khao Yai National Park, Thailand", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/355728438_cc4faa9cc3_o.jpg", "secret": "cc4faa9cc3", "media": "photo", "latitude": "0", "id": "355728438", "tags": "plant tree green nature thailand ficus bark jungle parasite 2007 top20tree"}, {"datetaken": "2007-01-13 05:02:23", "license": "1", "title": "Ficus tree with gibbons", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/355729380_a871c4e8e0_o.jpg", "secret": "a871c4e8e0", "media": "photo", "latitude": "0", "id": "355729380", "tags": "plant green nature thailand 2007"}, {"datetaken": "2007-01-13 05:02:23", "license": "1", "title": "Gibbon sitting in a tree", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/355729381_1d2c871e09_o.jpg", "secret": "1d2c871e09", "media": "photo", "latitude": "0", "id": "355729381", "tags": "plant green nature thailand 2007"}, {"datetaken": "2007-01-13 05:02:23", "license": "1", "title": "A gibbon eating ficus fruit", "text": "", "album_id": "72157594583750217", "longitude": "101.482772", "url_o": "https://farm1.staticflickr.com/146/355729378_46065aebf6_o.jpg", "secret": "46065aebf6", "media": "photo", "latitude": "14.364514", "id": "355729378", "tags": "wild plant green nature animal thailand monkey native eating wildlife 2007 gibbon"}, {"datetaken": "2007-01-15 03:27:47", "license": "1", "title": "Light shining through a holey leaf", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/358115448_ccb77a334e_o.jpg", "secret": "ccb77a334e", "media": "photo", "latitude": "0", "id": "358115448", "tags": "park brown plant tree green nature sunshine forest thailand top20decay leaf asia national jungle edge 2007 khaoyai"}, {"datetaken": "2007-01-15 03:27:47", "license": "1", "title": "Sitting at the edge of an elephant mudbath", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/358115446_80e4ff6bb3_o.jpg", "secret": "80e4ff6bb3", "media": "photo", "latitude": "0", "id": "358115446", "tags": "park plant tree green nature forest thailand asia peaceful national jungle 2007 khaoyai"}, {"datetaken": "2007-01-15 03:27:47", "license": "1", "title": "Elephant footprints", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/358115445_8eb40d336a_o.jpg", "secret": "8eb40d336a", "media": "photo", "latitude": "0", "id": "358115445", "tags": "park tree green nature thailand asia national bark jungle 2007"}, {"datetaken": "2007-01-15 03:27:48", "license": "1", "title": "Bear claw marks on a tree", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/358115454_f221564fe5_o.jpg", "secret": "f221564fe5", "media": "photo", "latitude": "0", "id": "358115454", "tags": "bear park plant tree green nature thailand nationalpark asia bark jungle scratch claws 2007 khaoyai"}, {"datetaken": "2007-01-15 03:27:48", "license": "1", "title": "The leafy jungle", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/358115449_5453f37944_o.jpg", "secret": "5453f37944", "media": "photo", "latitude": "0", "id": "358115449", "tags": "park plant tree green nature forest thailand asia palm national jungle 2007 khaoyai"}, {"datetaken": "2007-01-15 03:27:48", "license": "1", "title": "Climbing a liana", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/358115451_d783698df9_o.jpg", "secret": "d783698df9", "media": "photo", "latitude": "0", "id": "358115451", "tags": "park red plant tree green nature thailand asia climbing national jungle marc 2007 liana khaoyai ngui"}, {"datetaken": "2007-01-15 03:35:12", "license": "1", "title": "Bear claw marks up a tree", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/358119823_ff7d4391ef_o.jpg", "secret": "ff7d4391ef", "media": "photo", "latitude": "0", "id": "358119823", "tags": "bear park plant tree green nature thailand nationalpark asia bark claws 2007 khaoyai"}, {"datetaken": "2007-01-15 03:35:12", "license": "1", "title": "Cinnamon tree stump", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/358119825_32c1b80b5d_o.jpg", "secret": "32c1b80b5d", "media": "photo", "latitude": "0", "id": "358119825", "tags": "park plant tree green nature forest thailand nationalpark asia cinnamon stump 2007 khaoyai"}, {"datetaken": "2007-01-15 03:35:12", "license": "1", "title": "Edge of jungle haze", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/358119827_f09e1db46a_o.jpg", "secret": "f09e1db46a", "media": "photo", "latitude": "0", "id": "358119827", "tags": "park plant green nature grass landscape thailand nationalpark haze asia peaceful jungle 2007 khaoyai"}, {"datetaken": "2007-01-15 03:35:12", "license": "1", "title": "Path through burnt grass", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/358119828_fa102c941a_o.jpg", "secret": "fa102c941a", "media": "photo", "latitude": "0", "id": "358119828", "tags": "plant nature grass landscape thailand asia 2007"}, {"datetaken": "2007-01-15 03:35:13", "license": "1", "title": "Wet-dry panorama, Khao Yai National Park, Thailand", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/358119831_bfdefe08ab_o.jpg", "secret": "bfdefe08ab", "media": "photo", "latitude": "0", "id": "358119831", "tags": "blue plant green nature grass landscape thailand asia peaceful 2007"}, {"datetaken": "2007-01-15 03:35:13", "license": "1", "title": "Red earth of a spot used by elephants as salt lick, Khao Yai National Park, Thailand", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/358119829_4c7b2f17d3_o.jpg", "secret": "4c7b2f17d3", "media": "photo", "latitude": "0", "id": "358119829", "tags": "park red nature thailand nationalpark asia earth ochre 2007 khaoyai"}, {"datetaken": "2007-01-15 03:38:23", "license": "1", "title": "Road leading through dried grassland", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/358121692_7723d8757c_o.jpg", "secret": "7723d8757c", "media": "photo", "latitude": "0", "id": "358121692", "tags": "park blue plant nature grass landscape thailand nationalpark asia peaceful 2007 khaoyai"}, {"datetaken": "2007-01-15 03:38:23", "license": "1", "title": "Figures from overhead standing on dried out grass, Khao Yai National Park, Thailand", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/358121690_42a6b4ceb2_o.jpg", "secret": "42a6b4ceb2", "media": "photo", "latitude": "0", "id": "358121690", "tags": "park plant nature grass thailand nationalpark asia marc dried 2007 khaoyai"}, {"datetaken": "2007-01-15 03:38:23", "license": "1", "title": "Fresh elephant poo", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/358121697_21ab5c7942_o.jpg", "secret": "21ab5c7942", "media": "photo", "latitude": "0", "id": "358121697", "tags": "park plant elephant green nature thailand nationalpark asia poo dung 2007 khaoyai"}, {"datetaken": "2007-01-15 03:38:24", "license": "1", "title": "Photo-op at the top of a waterfall", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/358121699_09ebfd64cf_o.jpg", "secret": "09ebfd64cf", "media": "photo", "latitude": "0", "id": "358121699", "tags": "park plant green nature thailand nationalpark asia 2007 khaoyai"}, {"datetaken": "2007-01-15 03:38:24", "license": "1", "title": "At the top of a waterfall with setting sun", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/358121700_aa309ab998_o.jpg", "secret": "aa309ab998", "media": "photo", "latitude": "0", "id": "358121700", "tags": "park sunlight nature landscape thailand nationalpark asia 2007 khaoyai"}, {"datetaken": "2007-01-15 03:46:29", "license": "1", "title": "Waterfall from on top", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/358125967_257085eba9_o.jpg", "secret": "257085eba9", "media": "photo", "latitude": "0", "id": "358125967", "tags": "park plant green nature landscape thailand waterfall nationalpark asia jungle 2007 khaoyai"}, {"datetaken": "2007-01-15 03:46:29", "license": "1", "title": "At the top of the waterfall, small fish and shadow", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/358125966_4bad297d3b_o.jpg", "secret": "4bad297d3b", "media": "photo", "latitude": "0", "id": "358125966", "tags": "park shadow brown fish plant nature water thailand nationalpark asia jungle 2007 khaoyai"}, {"datetaken": "2007-01-15 03:46:30", "license": "1", "title": "Waterfall from the ground", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/358125969_3f2916ece7_o.jpg", "secret": "3f2916ece7", "media": "photo", "latitude": "0", "id": "358125969", "tags": "park plant nature thailand nationalpark asia jungle 2007 khaoyai"}, {"datetaken": "2007-01-15 03:46:30", "license": "1", "title": "Gaur skeleton", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/358125972_ae8600c793_o.jpg", "secret": "ae8600c793", "media": "photo", "latitude": "0", "id": "358125972", "tags": "park nature thailand nationalpark asia 2007 khaoyai"}, {"datetaken": "2007-01-15 03:46:30", "license": "1", "title": "Gaur skeleton - ribcage closeup", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/358125973_5432965575_o.jpg", "secret": "5432965575", "media": "photo", "latitude": "0", "id": "358125973", "tags": "park nature thailand nationalpark asia 2007 khaoyai"}, {"datetaken": "2007-01-15 03:46:30", "license": "1", "title": "Wild elephant and baby crossing the road", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/358125971_96363e6d4c_o.jpg", "secret": "96363e6d4c", "media": "photo", "latitude": "0", "id": "358125971", "tags": "park plant elephant green nature animal thailand nationalpark asia jungle 2007 khaoyai"}, {"datetaken": "2007-01-15 03:48:04", "license": "1", "title": "Spiraling liana", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/358126765_9c422255e2_o.jpg", "secret": "9c422255e2", "media": "photo", "latitude": "0", "id": "358126765", "tags": "wild plant nature thailand asia branch bark 2007 khaoyai cruved nationalparkpark"}, {"datetaken": "2007-01-15 03:48:04", "license": "1", "title": "Gaur horn", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/358126758_0e30826de0_o.jpg", "secret": "0e30826de0", "media": "photo", "latitude": "0", "id": "358126758", "tags": "park nature animal thailand nationalpark asia horn curved 2007 gaur khaoyai"}, {"datetaken": "2007-01-15 03:48:04", "license": "1", "title": "Gaur teeth", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/358126761_584c31bb2c_o.jpg", "secret": "584c31bb2c", "media": "photo", "latitude": "0", "id": "358126761", "tags": "nature animal thailand asia teeth 2007 gaur khaoyai nationalparkpark"}, {"datetaken": "2007-01-15 03:48:04", "license": "1", "title": "Photographing a python", "text": "", "album_id": "72157594583750217", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/358126767_5aecca70fc_o.jpg", "secret": "5aecca70fc", "media": "photo", "latitude": "0", "id": "358126767", "tags": "park nature thailand nationalpark asia dusk flash tourists python 2007 khaoyai"}, {"datetaken": "2007-03-25 13:22:24", "license": "6", "title": "tree", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/434667776_69a8f658fc_o.jpg", "secret": "5fdf6e25fe", "media": "photo", "latitude": "0", "id": "434667776", "tags": "flowers plant flower gardens d50 flora nikon nikond50 claremont botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:22:39", "license": "6", "title": "wildflowers", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/434668825_8ecbd50a39_o.jpg", "secret": "ef633c5d2c", "media": "photo", "latitude": "0", "id": "434668825", "tags": "flowers plant flower gardens d50 flora nikon nikond50 wildflowers claremont wildflower botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:22:51", "license": "6", "title": "wildflowers", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/434667986_b86a0f5712_o.jpg", "secret": "4a6136d72c", "media": "photo", "latitude": "0", "id": "434667986", "tags": "flowers plant flower gardens d50 flora nikon nikond50 wildflowers claremont wildflower botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:23:17", "license": "6", "title": "blue star", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/434668046_500f11feeb_o.jpg", "secret": "9c9778871c", "media": "photo", "latitude": "0", "id": "434668046", "tags": "flowers plant flower gardens d50 flora nikon nikond50 wildflowers claremont wildflower botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:26:51", "license": "6", "title": "cactus", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/434668172_fe149c061e_o.jpg", "secret": "f6680c789a", "media": "photo", "latitude": "0", "id": "434668172", "tags": "flowers cactus plant flower gardens d50 flora nikon nikond50 claremont botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:28:07", "license": "6", "title": "buggin", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/434669241_f7deab1e64_o.jpg", "secret": "26ad462e48", "media": "photo", "latitude": "0", "id": "434669241", "tags": "gardens bug d50 insect nikon nikond50 claremont botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:32:03", "license": "6", "title": "cactus", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/434669313_89e41edc15_o.jpg", "secret": "8e8e468c7c", "media": "photo", "latitude": "0", "id": "434669313", "tags": "cactus plant gardens d50 flora nikon nikond50 claremont botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:32:13", "license": "6", "title": "cacti", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/434668408_65d28607a9_o.jpg", "secret": "3884f249bc", "media": "photo", "latitude": "0", "id": "434668408", "tags": "flowers cactus plant flower gardens d50 flora nikon nikond50 claremont botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:33:04", "license": "6", "title": "redbud", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/434668466_6d89cb6a51_o.jpg", "secret": "910143479d", "media": "photo", "latitude": "0", "id": "434668466", "tags": "flowers plant flower gardens d50 flora nikon nikond50 claremont botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:33:42", "license": "6", "title": "Redbuds", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/434669563_d000414cb6_o.jpg", "secret": "27dd9becaf", "media": "photo", "latitude": "0", "id": "434669563", "tags": "flowers plant flower gardens d50 flora nikon nikond50 claremont botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:41:50", "license": "6", "title": "wildflowers", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/434668652_47d69aa002_o.jpg", "secret": "b745c96007", "media": "photo", "latitude": "0", "id": "434668652", "tags": "flowers plant flower gardens d50 flora nikon nikond50 wildflowers claremont wildflower botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:45:30", "license": "6", "title": "roof", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/434669691_216fa3880c_o.jpg", "secret": "9c69f8913f", "media": "photo", "latitude": "0", "id": "434669691", "tags": "light shadow gardens d50 nikon nikond50 claremont botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:47:19", "license": "6", "title": "curls", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/434669727_9738be4236_o.jpg", "secret": "8d80ae52a6", "media": "photo", "latitude": "0", "id": "434669727", "tags": "plant gardens d50 flora nikon nikond50 claremont botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:47:30", "license": "6", "title": "curls", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/434669769_6c8d875501_o.jpg", "secret": "d0a183be84", "media": "photo", "latitude": "0", "id": "434669769", "tags": "plant gardens d50 flora nikon nikond50 claremont botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:48:46", "license": "6", "title": "water", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/434668910_d2ab2101e9_o.jpg", "secret": "16a26feb44", "media": "photo", "latitude": "0", "id": "434668910", "tags": "gardens d50 nikon nikond50 claremont botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:49:59", "license": "6", "title": "squirrel", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/434669048_53a9b0da2f_o.jpg", "secret": "fca1b3184d", "media": "photo", "latitude": "0", "id": "434669048", "tags": "animal gardens d50 nikon squirrel nikond50 claremont botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:50:13", "license": "6", "title": "squirrel", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/434669188_ae560b4f89_o.jpg", "secret": "e421caaf59", "media": "photo", "latitude": "0", "id": "434669188", "tags": "animal gardens d50 nikon squirrel nikond50 claremont botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:50:24", "license": "6", "title": "Squirrel", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/434669304_0051c064d1_o.jpg", "secret": "565a796470", "media": "photo", "latitude": "0", "id": "434669304", "tags": "animal gardens d50 nikon squirrel nikond50 claremont botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:51:31", "license": "6", "title": "Lillian's pink", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/434670297_6851888600_o.jpg", "secret": "e54b2f1007", "media": "photo", "latitude": "0", "id": "434670297", "tags": "flowers plant flower gardens d50 flora nikon nikond50 claremont botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:55:46", "license": "6", "title": "purple", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/434670371_88bfd11287_o.jpg", "secret": "3590167eae", "media": "photo", "latitude": "0", "id": "434670371", "tags": "flowers plant flower gardens d50 flora nikon nikond50 claremont botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:59:09", "license": "6", "title": "white flower", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/434669506_0910b4bf10_o.jpg", "secret": "ba13bbf452", "media": "photo", "latitude": "0", "id": "434669506", "tags": "flowers plant flower gardens d50 flora nikon nikond50 wildflowers claremont wildflower botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:59:16", "license": "6", "title": "lonely", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/434670495_b038020180_o.jpg", "secret": "0f36877a46", "media": "photo", "latitude": "0", "id": "434670495", "tags": "flowers plant flower gardens d50 flora nikon nikond50 wildflowers claremont wildflower botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 13:59:21", "license": "6", "title": "Yellow", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/434670707_0153280416_o.jpg", "secret": "f10a4dc589", "media": "photo", "latitude": "0", "id": "434670707", "tags": "flowers plant flower gardens d50 flora nikon nikond50 wildflowers claremont wildflower botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 14:00:00", "license": "6", "title": "wildflowers", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/434669964_021a2c1901_o.jpg", "secret": "aad189986f", "media": "photo", "latitude": "0", "id": "434669964", "tags": "flowers plant flower gardens d50 flora nikon nikond50 wildflowers claremont wildflower botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 14:00:17", "license": "6", "title": "bee", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/434670823_f6c8d25967_o.jpg", "secret": "7a16530abe", "media": "photo", "latitude": "0", "id": "434670823", "tags": "flowers plant flower gardens d50 flora nikon nikond50 bee wildflowers claremont wildflower botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 14:00:18", "license": "6", "title": "Bee", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/434670911_af4d3c6c7b_o.jpg", "secret": "2f66201c61", "media": "photo", "latitude": "0", "id": "434670911", "tags": "flowers plant flower gardens d50 flora nikon nikond50 bee wildflowers claremont wildflower botanicgardens ranchosantaanabotanicgarden"}, {"datetaken": "2007-03-25 15:23:37", "license": "6", "title": "Reds", "text": "", "album_id": "72157600027450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/434671019_f458f6a7b4_o.jpg", "secret": "31a7320b58", "media": "photo", "latitude": "0", "id": "434671019", "tags": "street flowers plant flower gardens d50 la flora nikon nikond50 botanicgardens"}, {"datetaken": "2007-04-01 13:36:47", "license": "3", "title": "dscf5806.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.845706", "url_o": "https://farm1.staticflickr.com/236/449295753_3777ed6460_o.jpg", "secret": "a63711078d", "media": "photo", "latitude": "51.867428", "id": "449295753", "tags": "industry netherlands koudenhoek"}, {"datetaken": "2007-04-01 13:40:13", "license": "3", "title": "dscf5817.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.844128", "url_o": "https://farm1.staticflickr.com/213/449290420_7d58161ddf_o.jpg", "secret": "7e3d637b0b", "media": "photo", "latitude": "51.870253", "id": "449290420", "tags": "netherlands birds animals koudenhoek"}, {"datetaken": "2007-04-01 13:46:32", "license": "3", "title": "dscf5823.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.814787", "url_o": "https://farm1.staticflickr.com/169/449296561_3ef1a0dee3_o.jpg", "secret": "beed267467", "media": "photo", "latitude": "51.875278", "id": "449296561", "tags": "netherlands birds animals slijkewijk floodplanes"}, {"datetaken": "2007-04-01 13:54:25", "license": "3", "title": "dscf5825.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.782971", "url_o": "https://farm1.staticflickr.com/221/449291220_80cbf493f4_o.jpg", "secret": "e2cd314cdb", "media": "photo", "latitude": "51.882977", "id": "449291220", "tags": "plants netherlands loenen"}, {"datetaken": "2007-04-01 14:04:29", "license": "3", "title": "dscf5826.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.738744", "url_o": "https://farm1.staticflickr.com/228/449291642_5221af16c7_o.jpg", "secret": "8bf425415b", "media": "photo", "latitude": "51.887827", "id": "449291642", "tags": "road signs cars netherlands river waal betuwe andelst"}, {"datetaken": "2007-04-01 14:07:13", "license": "3", "title": "dscf5829.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.737446", "url_o": "https://farm1.staticflickr.com/247/449297971_ca67276f47_o.jpg", "secret": "9517ffa151", "media": "photo", "latitude": "51.885039", "id": "449297971", "tags": "netherlands river waal betuwe ewijk"}, {"datetaken": "2007-04-01 14:07:31", "license": "3", "title": "dscf5832.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.736797", "url_o": "https://farm1.staticflickr.com/175/449292746_f8976e24fa_o.jpg", "secret": "6661eb107e", "media": "photo", "latitude": "51.883460", "id": "449292746", "tags": "road cars netherlands bridges waal betuwe ewijk"}, {"datetaken": "2007-04-01 14:07:53", "license": "3", "title": "dscf5834.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.736378", "url_o": "https://farm1.staticflickr.com/231/449298617_837c274920_o.jpg", "secret": "493785de2f", "media": "photo", "latitude": "51.882505", "id": "449298617", "tags": "betuwe ewijk netherlands waal bikes bridges river road"}, {"datetaken": "2007-04-01 14:18:00", "license": "3", "title": "dscf5835.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.746751", "url_o": "https://farm1.staticflickr.com/200/449299039_a742d7798a_o.jpg", "secret": "61b55867dd", "media": "photo", "latitude": "51.872721", "id": "449299039", "tags": "netherlands ewijk"}, {"datetaken": "2007-04-01 14:20:39", "license": "3", "title": "dscf5837.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.748210", "url_o": "https://farm1.staticflickr.com/248/449293896_0aa7269502_o.jpg", "secret": "074d7d3a93", "media": "photo", "latitude": "51.873558", "id": "449293896", "tags": "castle netherlands buildings ewijk"}, {"datetaken": "2007-04-01 14:21:01", "license": "3", "title": "dscf5839.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.748672", "url_o": "https://farm1.staticflickr.com/230/449299729_4c77196f82_o.jpg", "secret": "404f797686", "media": "photo", "latitude": "51.873893", "id": "449299729", "tags": "castle netherlands buildings ewijk"}, {"datetaken": "2007-04-01 14:24:11", "license": "3", "title": "dscf5842.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.748425", "url_o": "https://farm1.staticflickr.com/191/449300051_f21de96367_o.jpg", "secret": "27ac7704d2", "media": "photo", "latitude": "51.874453", "id": "449300051", "tags": "castle netherlands buildings ewijk"}, {"datetaken": "2007-04-01 14:24:42", "license": "3", "title": "dscf5844.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.748754", "url_o": "https://farm1.staticflickr.com/240/449295030_bb7951602e_o.jpg", "secret": "e0254fac64", "media": "photo", "latitude": "51.874609", "id": "449295030", "tags": "trees plants netherlands ewijk"}, {"datetaken": "2007-04-01 14:26:05", "license": "3", "title": "dscf5847.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.748478", "url_o": "https://farm1.staticflickr.com/197/449300951_b40c2c9b34_o.jpg", "secret": "6f5f07ea84", "media": "photo", "latitude": "51.874496", "id": "449300951", "tags": "castle netherlands buildings ewijk"}, {"datetaken": "2007-04-01 14:26:29", "license": "3", "title": "dscf5848.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.748825", "url_o": "https://farm1.staticflickr.com/217/449301357_e76f2eea77_o.jpg", "secret": "d0ffbd51b0", "media": "photo", "latitude": "51.874038", "id": "449301357", "tags": "netherlands animals amphibians ewijk"}, {"datetaken": "2007-04-01 14:28:52", "license": "3", "title": "dscf5853.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.747281", "url_o": "https://farm1.staticflickr.com/200/449301735_1cdd589cf8_o.jpg", "secret": "4324dfc09d", "media": "photo", "latitude": "51.873491", "id": "449301735", "tags": "netherlands animals amphibians ewijk"}, {"datetaken": "2007-04-01 14:29:47", "license": "3", "title": "dscf5854.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.746944", "url_o": "https://farm1.staticflickr.com/237/449296532_859a4ad0e5_o.jpg", "secret": "a349fd6a05", "media": "photo", "latitude": "51.873512", "id": "449296532", "tags": "netherlands bridges swamp ewijk"}, {"datetaken": "2007-04-01 14:30:21", "license": "3", "title": "dscf5856.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.746838", "url_o": "https://farm1.staticflickr.com/217/449296906_280ed88724_o.jpg", "secret": "b53ed8b0b0", "media": "photo", "latitude": "51.873661", "id": "449296906", "tags": "netherlands swamp ewijk"}, {"datetaken": "2007-04-01 14:31:24", "license": "3", "title": "dscf5860.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.746533", "url_o": "https://farm1.staticflickr.com/232/449302691_91a8e9666f_o.jpg", "secret": "deed28a888", "media": "photo", "latitude": "51.874010", "id": "449302691", "tags": "netherlands swamp ewijk"}, {"datetaken": "2007-04-01 14:32:01", "license": "3", "title": "dscf5861.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.746569", "url_o": "https://farm1.staticflickr.com/167/449297514_344c232eb3_o.jpg", "secret": "72f932eed7", "media": "photo", "latitude": "51.874137", "id": "449297514", "tags": "netherlands swamp ewijk"}, {"datetaken": "2007-04-01 14:40:16", "license": "3", "title": "dscf5863.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.746230", "url_o": "https://farm1.staticflickr.com/241/449297850_74efbcf6e8_o.jpg", "secret": "14a1a4555c", "media": "photo", "latitude": "51.874228", "id": "449297850", "tags": "netherlands birds animals swamp eggs ewijk"}, {"datetaken": "2007-04-01 14:43:45", "license": "3", "title": "dscf5867.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.746626", "url_o": "https://farm1.staticflickr.com/180/449303673_e3adefaa00_o.jpg", "secret": "b119bef7cc", "media": "photo", "latitude": "51.874219", "id": "449303673", "tags": "netherlands birds animals swamp eggs ewijk"}, {"datetaken": "2007-04-01 14:58:19", "license": "3", "title": "dscf5872.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.746377", "url_o": "https://farm1.staticflickr.com/231/449305251_db0c0e7fce_o.jpg", "secret": "3a70e155ea", "media": "photo", "latitude": "51.874436", "id": "449305251", "tags": "castle netherlands buildings ewijk"}, {"datetaken": "2007-04-01 15:15:08", "license": "3", "title": "dscf5876.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.748923", "url_o": "https://farm1.staticflickr.com/227/449300130_0a022f8c59_o.jpg", "secret": "34aa54518a", "media": "photo", "latitude": "51.875877", "id": "449300130", "tags": "trees plants netherlands meadows ewijk"}, {"datetaken": "2007-04-01 15:18:37", "license": "3", "title": "dscf5878.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.749896", "url_o": "https://farm1.staticflickr.com/239/449300426_4738fc5f16_o.jpg", "secret": "6a592d106c", "media": "photo", "latitude": "51.876462", "id": "449300426", "tags": "plants netherlands ewijk"}, {"datetaken": "2007-04-01 15:21:23", "license": "3", "title": "dscf5881.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.750681", "url_o": "https://farm1.staticflickr.com/225/449300834_e82e72fc9a_o.jpg", "secret": "0fa34c10d7", "media": "photo", "latitude": "51.876864", "id": "449300834", "tags": "plants netherlands ewijk"}, {"datetaken": "2007-04-01 15:34:53", "license": "3", "title": "dscf5891.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.754617", "url_o": "https://farm1.staticflickr.com/178/449306635_c28185850e_o.jpg", "secret": "7d72314e59", "media": "photo", "latitude": "51.879226", "id": "449306635", "tags": "netherlands ewijk floodplanes"}, {"datetaken": "2007-04-01 15:44:18", "license": "3", "title": "dscf5900.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.757313", "url_o": "https://farm1.staticflickr.com/219/449302724_4ce65b1c33_o.jpg", "secret": "1cabcb4b5f", "media": "photo", "latitude": "51.880012", "id": "449302724", "tags": "plants netherlands loenen floodplanes"}, {"datetaken": "2007-04-01 15:44:38", "license": "3", "title": "dscf5901.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.757594", "url_o": "https://farm1.staticflickr.com/253/449303042_73a884d8fa_o.jpg", "secret": "f562583212", "media": "photo", "latitude": "51.879930", "id": "449303042", "tags": "plants netherlands loenen floodplanes"}, {"datetaken": "2007-04-01 15:45:45", "license": "3", "title": "dscf5903.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.758794", "url_o": "https://farm1.staticflickr.com/237/449303402_c6df0ca8db_o.jpg", "secret": "65e92e2865", "media": "photo", "latitude": "51.879473", "id": "449303402", "tags": "trees plants netherlands waal loenen floodplanes"}, {"datetaken": "2007-04-01 15:48:08", "license": "3", "title": "dscf5911.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.759647", "url_o": "https://farm1.staticflickr.com/204/449309077_6542cb2e7d_o.jpg", "secret": "be70f3e516", "media": "photo", "latitude": "51.879287", "id": "449309077", "tags": "netherlands waal loenen floodplanes"}, {"datetaken": "2007-04-01 15:49:22", "license": "3", "title": "dscf5917.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.760450", "url_o": "https://farm1.staticflickr.com/172/449309413_4f677eeb1e_o.jpg", "secret": "fa9b833c31", "media": "photo", "latitude": "51.879290", "id": "449309413", "tags": "trees plants netherlands roots waal loenen floodplanes"}, {"datetaken": "2007-04-01 15:49:59", "license": "3", "title": "dscf5920.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.760938", "url_o": "https://farm1.staticflickr.com/229/449304486_fb4ba213c0_o.jpg", "secret": "abf5f83f0b", "media": "photo", "latitude": "51.879287", "id": "449304486", "tags": "trees plants netherlands roots waal loenen floodplanes"}, {"datetaken": "2007-04-01 15:51:02", "license": "3", "title": "dscf5924.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.762035", "url_o": "https://farm1.staticflickr.com/237/449310063_dccf2eadfe_o.jpg", "secret": "af1f5b3138", "media": "photo", "latitude": "51.878999", "id": "449310063", "tags": "netherlands animals cows mammals photographing loenen floodplanes"}, {"datetaken": "2007-04-01 16:00:26", "license": "3", "title": "dscf5935.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.771103", "url_o": "https://farm1.staticflickr.com/232/449305166_50654d9f59_o.jpg", "secret": "406e098abe", "media": "photo", "latitude": "51.877056", "id": "449305166", "tags": "trees plants netherlands loenen floodplanes"}, {"datetaken": "2007-04-01 16:18:05", "license": "3", "title": "dscf5936.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.778623", "url_o": "https://farm1.staticflickr.com/186/449310723_9750fa9577_o.jpg", "secret": "1d56215319", "media": "photo", "latitude": "51.874171", "id": "449310723", "tags": "signs netherlands beuningen"}, {"datetaken": "2007-04-01 16:48:25", "license": "3", "title": "dscf5945.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.771762", "url_o": "https://farm1.staticflickr.com/211/449307006_3cc87a330b_o.jpg", "secret": "c811d33a00", "media": "photo", "latitude": "51.872677", "id": "449307006", "tags": "plants netherlands beuningen"}, {"datetaken": "2007-04-01 16:50:22", "license": "3", "title": "dscf5950.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.770006", "url_o": "https://farm1.staticflickr.com/245/449307332_b85bb643ee_o.jpg", "secret": "80df2383a9", "media": "photo", "latitude": "51.873193", "id": "449307332", "tags": "netherlands beuningen"}, {"datetaken": "2007-04-01 16:57:03", "license": "3", "title": "dscf5951.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.765734", "url_o": "https://farm1.staticflickr.com/235/449307690_028af7f3e0_o.jpg", "secret": "1b4d99a5b9", "media": "photo", "latitude": "51.874673", "id": "449307690", "tags": "netherlands beuningen"}, {"datetaken": "2007-04-01 16:57:33", "license": "3", "title": "dscf5954.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.766478", "url_o": "https://farm1.staticflickr.com/244/449313397_40c9bf9cc3_o.jpg", "secret": "9120055541", "media": "photo", "latitude": "51.874835", "id": "449313397", "tags": "trees plants netherlands beuningen"}, {"datetaken": "2007-04-01 17:15:28", "license": "3", "title": "dscf5961.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.758893", "url_o": "https://farm1.staticflickr.com/197/449313755_83ba6d3baa_o.jpg", "secret": "56e9e8ef33", "media": "photo", "latitude": "51.878120", "id": "449313755", "tags": "netherlands animals sheep mammals loenen"}, {"datetaken": "2007-04-01 17:16:28", "license": "3", "title": "dscf5967.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.759038", "url_o": "https://farm1.staticflickr.com/228/449308654_3e093b6c0f_o.jpg", "secret": "6b664fc88c", "media": "photo", "latitude": "51.878067", "id": "449308654", "tags": "netherlands animals sheep mammals loenen"}, {"datetaken": "2007-04-01 17:16:56", "license": "3", "title": "dscf5971.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.759002", "url_o": "https://farm1.staticflickr.com/195/449308962_ff3f57a1dd_o.jpg", "secret": "b5d00810bf", "media": "photo", "latitude": "51.878057", "id": "449308962", "tags": "netherlands animals sheep mammals loenen"}, {"datetaken": "2007-04-01 18:00:01", "license": "3", "title": "dscf5989.jpg", "text": "", "album_id": "72157600053481092", "longitude": "5.744020", "url_o": "https://farm1.staticflickr.com/189/449317889_a66a0acb5d_o.jpg", "secret": "2a15bdafa5", "media": "photo", "latitude": "51.873451", "id": "449317889", "tags": "netherlands animals amphibians ewijk"}, {"datetaken": "2007-05-18 07:57:39", "license": "1", "title": "carob.", "text": "", "album_id": "72157600249028369", "longitude": "0", "url_o": "https://farm1.staticflickr.com/232/510335859_82a2f07547_o.jpg", "secret": "9bcdbf9bc2", "media": "photo", "latitude": "0", "id": "510335859", "tags": "plants edibleplants"}, {"datetaken": "2007-05-18 07:58:21", "license": "1", "title": "Toyon.", "text": "", "album_id": "72157600249028369", "longitude": "0", "url_o": "https://farm1.staticflickr.com/211/510335163_cd18a0c3e0_o.jpg", "secret": "7c7448ca9b", "media": "photo", "latitude": "0", "id": "510335163", "tags": "plants edibleplants"}, {"datetaken": "2007-05-18 07:58:50", "license": "1", "title": "Mustard", "text": "", "album_id": "72157600249028369", "longitude": "0", "url_o": "https://farm1.staticflickr.com/195/510335503_c4cfe37668_o.jpg", "secret": "e205e5635b", "media": "photo", "latitude": "0", "id": "510335503", "tags": "plants edibleplants"}, {"datetaken": "2007-05-18 07:59:58", "license": "1", "title": "Lemon Verbena", "text": "", "album_id": "72157600249028369", "longitude": "0", "url_o": "https://farm1.staticflickr.com/227/510336251_6659a0bee2_o.jpg", "secret": "cb6be1e0c0", "media": "photo", "latitude": "0", "id": "510336251", "tags": "plants edibleplants"}, {"datetaken": "2007-05-18 08:00:11", "license": "1", "title": "California Bay", "text": "", "album_id": "72157600249028369", "longitude": "0", "url_o": "https://farm1.staticflickr.com/217/510336407_f3f4d1a973_o.jpg", "secret": "7ce69a95e4", "media": "photo", "latitude": "0", "id": "510336407", "tags": "plants edibleplants"}, {"datetaken": "2007-05-18 08:00:38", "license": "1", "title": "Nasturtium", "text": "", "album_id": "72157600249028369", "longitude": "0", "url_o": "https://farm1.staticflickr.com/197/510336639_5a6a1e7f6c_o.jpg", "secret": "8850181cd3", "media": "photo", "latitude": "0", "id": "510336639", "tags": "plants edibleplants"}, {"datetaken": "2007-05-18 08:02:09", "license": "1", "title": "Sweet Alyssum", "text": "", "album_id": "72157600249028369", "longitude": "0", "url_o": "https://farm1.staticflickr.com/230/510317148_7c47183337_o.jpg", "secret": "ca3cb6022a", "media": "photo", "latitude": "0", "id": "510317148", "tags": "plants edibleplants"}, {"datetaken": "2007-05-18 08:03:27", "license": "1", "title": "Mulberry", "text": "", "album_id": "72157600249028369", "longitude": "0", "url_o": "https://farm1.staticflickr.com/204/510337317_6fdc9bd450_o.jpg", "secret": "12eb5bdc80", "media": "photo", "latitude": "0", "id": "510337317", "tags": "plants edibleplants"}, {"datetaken": "2007-05-18 08:04:29", "license": "1", "title": "Mexican Elder", "text": "", "album_id": "72157600249028369", "longitude": "0", "url_o": "https://farm1.staticflickr.com/204/510317666_dbe19a11f8_o.jpg", "secret": "26d631d5c9", "media": "photo", "latitude": "0", "id": "510317666", "tags": "plants edibleplants"}, {"datetaken": "2007-05-18 08:09:01", "license": "1", "title": "native cherry", "text": "", "album_id": "72157600249028369", "longitude": "0", "url_o": "https://farm1.staticflickr.com/229/510317956_ed1937dfe8_o.jpg", "secret": "897e79311a", "media": "photo", "latitude": "0", "id": "510317956", "tags": "plants edibleplants"}, {"datetaken": "2007-05-18 08:14:06", "license": "1", "title": "acorn", "text": "", "album_id": "72157600249028369", "longitude": "0", "url_o": "https://farm1.staticflickr.com/221/510338155_0b6f14bcce_o.jpg", "secret": "4399ab611b", "media": "photo", "latitude": "0", "id": "510338155", "tags": "plants edibleplants"}, {"datetaken": "2007-05-18 08:23:58", "license": "1", "title": "Sow Thistle", "text": "", "album_id": "72157600249028369", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/510318560_16154adab5_o.jpg", "secret": "4537c2f09b", "media": "photo", "latitude": "0", "id": "510318560", "tags": "plants edibleplants"}, {"datetaken": "2007-05-18 08:25:34", "license": "1", "title": "lamb's quarter", "text": "", "album_id": "72157600249028369", "longitude": "0", "url_o": "https://farm1.staticflickr.com/226/510318996_6e5323d5e9_o.jpg", "secret": "57b6a006a4", "media": "photo", "latitude": "0", "id": "510318996", "tags": "plants edibleplants"}, {"datetaken": "2007-05-18 08:29:05", "license": "1", "title": "Mallow", "text": "", "album_id": "72157600249028369", "longitude": "0", "url_o": "https://farm1.staticflickr.com/211/510338989_f25cd33d48_o.jpg", "secret": "397dbea7a9", "media": "photo", "latitude": "0", "id": "510338989", "tags": "plants edibleplants"}, {"datetaken": "2007-05-18 08:30:18", "license": "1", "title": "White Sage", "text": "", "album_id": "72157600249028369", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/510314518_50a0c3c5ce_o.jpg", "secret": "961598feeb", "media": "photo", "latitude": "0", "id": "510314518", "tags": "plants edibleplants"}, {"datetaken": "2007-05-18 08:31:56", "license": "1", "title": "Black Sage", "text": "", "album_id": "72157600249028369", "longitude": "0", "url_o": "https://farm1.staticflickr.com/206/510316038_044cf95331_o.jpg", "secret": "f7c26c579b", "media": "photo", "latitude": "0", "id": "510316038", "tags": "plants edibleplants"}, {"datetaken": "2007-06-04 13:07:19", "license": "3", "title": "Orange Tree", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1403/535208804_f386af01c7_o.jpg", "secret": "3e12a3ed0a", "media": "photo", "latitude": "-34.475712", "id": "535208804", "tags": "southamerica uruguay colonia orangetree 2007"}, {"datetaken": "2007-06-04 13:08:25", "license": "3", "title": "Colonia Lighthouse", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1213/535209590_69f10e7341_o.jpg", "secret": "7d51ecd3b3", "media": "photo", "latitude": "-34.475712", "id": "535209590", "tags": "lighthouse southamerica uruguay colonia 2007"}, {"datetaken": "2007-06-04 13:11:00", "license": "3", "title": "", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1334/535331141_112da09c13_o.jpg", "secret": "6d339c15ef", "media": "photo", "latitude": "-34.475712", "id": "535331141", "tags": "light shadow southamerica lamp yellow uruguay colonia 2007"}, {"datetaken": "2007-06-04 13:11:09", "license": "3", "title": "Colonia, Uruguay", "text": "", "album_id": "72157600324602921", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1163/535241352_c75d4a7a7b_o.jpg", "secret": "57f26405d3", "media": "photo", "latitude": "0", "id": "535241352", "tags": "light shadow southamerica lamp yellow uruguay colonia 2007"}, {"datetaken": "2007-06-04 13:11:27", "license": "3", "title": "Lamp Shadow", "text": "", "album_id": "72157600324602921", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1259/535242006_d94c723269_o.jpg", "secret": "9f0e8ab4c3", "media": "photo", "latitude": "0", "id": "535242006", "tags": "light shadow southamerica lamp yellow uruguay colonia 2007"}, {"datetaken": "2007-06-04 13:12:46", "license": "3", "title": "Warburtons", "text": "", "album_id": "72157600324602921", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1437/535242604_2dc4d04b4b_o.jpg", "secret": "de90505812", "media": "photo", "latitude": "0", "id": "535242604", "tags": "blackandwhite southamerica bicycle walking uruguay colonia 2007 cobbledstreets warburtons manandbike titledbysuzienewshoes"}, {"datetaken": "2007-06-04 13:14:54", "license": "3", "title": "Caught ya", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1198/535333017_8f9551f646_o.jpg", "secret": "ea092241ab", "media": "photo", "latitude": "-34.475712", "id": "535333017", "tags": "southamerica uruguay suzanne colonia suze 2007"}, {"datetaken": "2007-06-04 13:15:09", "license": "3", "title": "", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1067/535216722_3a53072035_o.jpg", "secret": "660ab98ff5", "media": "photo", "latitude": "-34.475712", "id": "535216722", "tags": "lighthouse southamerica uruguay colonia 2007"}, {"datetaken": "2007-06-04 13:43:09", "license": "3", "title": "", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1176/535337735_01bae35b0c_o.jpg", "secret": "e19563e3c0", "media": "photo", "latitude": "-34.475712", "id": "535337735", "tags": "sea lighthouse southamerica uruguay colonia 2007"}, {"datetaken": "2007-06-04 13:43:18", "license": "3", "title": "Lighthouse views", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1159/535339947_2f380b32d8_o.jpg", "secret": "e40e237271", "media": "photo", "latitude": "-34.475712", "id": "535339947", "tags": "sea lighthouse southamerica uruguay colonia 2007"}, {"datetaken": "2007-06-04 13:43:35", "license": "3", "title": "On top of the lighthouse", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1278/535342269_51a1f430b4_o.jpg", "secret": "36572aedd1", "media": "photo", "latitude": "-34.475712", "id": "535342269", "tags": "sea lighthouse southamerica uruguay suzanne colonia suze 2007"}, {"datetaken": "2007-06-04 14:36:27", "license": "3", "title": "", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1133/535344507_1760207abc_o.jpg", "secret": "7af5b27fa6", "media": "photo", "latitude": "-34.475712", "id": "535344507", "tags": "southamerica uruguay suzanne colonia suze 2007"}, {"datetaken": "2007-06-04 15:04:23", "license": "3", "title": "Pretty damn perfect", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1348/535227840_cb20de0b79_o.jpg", "secret": "9823c29f27", "media": "photo", "latitude": "-34.475712", "id": "535227840", "tags": "southamerica uruguay suzanne colonia suze 2007 titlebysuzienewshoes"}, {"datetaken": "2007-06-04 16:35:22", "license": "3", "title": "", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1402/535347105_ad8ad51468_o.jpg", "secret": "df6f8828cb", "media": "photo", "latitude": "-34.475712", "id": "535347105", "tags": "red southamerica uruguay suzanne colonia suze 2007"}, {"datetaken": "2007-06-04 16:49:14", "license": "3", "title": "", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1421/535228808_456276ac17_o.jpg", "secret": "a7d634704a", "media": "photo", "latitude": "-34.475712", "id": "535228808", "tags": "light shadow building southamerica lamp yellow uruguay colonia 2007"}, {"datetaken": "2007-06-04 16:49:42", "license": "3", "title": "San Jose (do you know the way to?)", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1296/535349643_9a0fcc096e_o.jpg", "secret": "b54db66029", "media": "photo", "latitude": "-34.475712", "id": "535349643", "tags": "southamerica tile ceramic uruguay sanjose colonia 2007"}, {"datetaken": "2007-06-04 16:50:09", "license": "3", "title": "Colonia", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1413/535351641_c4f3a29def_o.jpg", "secret": "9f5e9986d4", "media": "photo", "latitude": "-34.475712", "id": "535351641", "tags": "blackandwhite building southamerica uruguay colonia 2007"}, {"datetaken": "2007-06-04 16:50:22", "license": "3", "title": "Colonia, Uruguay", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1431/535235204_a4a66340c3_o.jpg", "secret": "62466df420", "media": "photo", "latitude": "-34.475712", "id": "535235204", "tags": "blue sky building southamerica uruguay colonia 2007"}, {"datetaken": "2007-06-04 17:34:06", "license": "3", "title": "A car used as a planting pot", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1407/535322697_1ee9a6e99a_o.jpg", "secret": "4b426537bf", "media": "photo", "latitude": "-34.475712", "id": "535322697", "tags": "trees black southamerica overgrown car uruguay classiccar colonia bushes shrubs 2007 oldfashionedcar"}, {"datetaken": "2007-06-04 17:34:27", "license": "3", "title": "Copycat", "text": "", "album_id": "72157600324602921", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1194/535239210_c2516d2bce_o.jpg", "secret": "7076ee0b01", "media": "photo", "latitude": "0", "id": "535239210", "tags": "black southamerica overgrown car uruguay bush classiccar colonia 2007 cobbledstreets oldfashionedcar twinphoto titlebysuzienewshoes gardeninacar"}, {"datetaken": "2007-06-04 17:35:03", "license": "3", "title": "Church", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1420/535206094_ac163e1edd_o.jpg", "secret": "f674ac613a", "media": "photo", "latitude": "-34.475712", "id": "535206094", "tags": "church southamerica uruguay cross colonia 2007"}, {"datetaken": "2007-06-04 17:35:45", "license": "3", "title": "\"I'll miss those blue skies\"", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1264/535182808_d542641543_o.jpg", "secret": "ba36f65277", "media": "photo", "latitude": "-34.475712", "id": "535182808", "tags": "blackandwhite southamerica uruguay suzanne thinking colonia suze pondering 2007"}, {"datetaken": "2007-06-04 17:36:22", "license": "3", "title": "", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1043/535304473_966b30a5e9_o.jpg", "secret": "f82a166afd", "media": "photo", "latitude": "-34.475712", "id": "535304473", "tags": "blackandwhite southamerica uruguay colonia pondering 2007 meandsuze meandsuzanne"}, {"datetaken": "2007-06-04 17:36:32", "license": "3", "title": "", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1095/535187122_d27619142d_o.jpg", "secret": "8c968aa229", "media": "photo", "latitude": "-34.475712", "id": "535187122", "tags": "blackandwhite southamerica uruguay colonia pondering 2007 meandsuze meandsuzanne"}, {"datetaken": "2007-06-04 18:00:24", "license": "3", "title": "Clerico", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1144/535187512_89a55f9509_o.jpg", "secret": "2f2c32ccc1", "media": "photo", "latitude": "-34.475712", "id": "535187512", "tags": "southamerica uruguay colonia 2007 bigspoon clerico"}, {"datetaken": "2007-06-04 18:01:53", "license": "3", "title": "", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1052/535189754_9ff4cb050c_o.jpg", "secret": "eb809e3524", "media": "photo", "latitude": "-34.475712", "id": "535189754", "tags": "me southamerica uruguay colonia 2007"}, {"datetaken": "2007-06-04 18:02:01", "license": "3", "title": "", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1043/535191578_f7948de760_o.jpg", "secret": "fdd40ea717", "media": "photo", "latitude": "-34.475712", "id": "535191578", "tags": "me southamerica uruguay colonia 2007"}, {"datetaken": "2007-06-04 18:17:13", "license": "3", "title": "", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1348/535313619_363e2e2423_o.jpg", "secret": "3cbceb4e5f", "media": "photo", "latitude": "-34.475712", "id": "535313619", "tags": "southamerica uruguay suzanne colonia suze 2007 bigspoon clerico"}, {"datetaken": "2007-06-04 18:17:21", "license": "3", "title": "mmm, clerico", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1298/535315995_4d0a48ddd5_o.jpg", "secret": "b58f4fa7fc", "media": "photo", "latitude": "-34.475712", "id": "535315995", "tags": "southamerica uruguay suzanne colonia suze 2007 bigspoon clerico"}, {"datetaken": "2007-06-04 18:17:58", "license": "3", "title": "Suze, a big spoon and clerico", "text": "", "album_id": "72157600324602921", "longitude": "-57.844562", "url_o": "https://farm2.staticflickr.com/1189/535199034_0fa631bf12_o.jpg", "secret": "bb4f2be67d", "media": "photo", "latitude": "-34.475712", "id": "535199034", "tags": "southamerica uruguay suzanne colonia suze 2007 bigspoon clerico"}, {"datetaken": "2007-06-03 15:11:31", "license": "3", "title": "Stanford Quad - New Garden - 1", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1383/535218539_df12dd9881_o.jpg", "secret": "a2bf391b4b", "media": "photo", "latitude": "0", "id": "535218539", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:11:31", "license": "3", "title": "Stanford Quad - New Garden - 1", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1033/535097212_13362bf48e_o.jpg", "secret": "b37ab63c58", "media": "photo", "latitude": "0", "id": "535097212", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:11:57", "license": "3", "title": "Stanford Quad - New Garden - 2", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1011/535220159_d6d14f4301_o.jpg", "secret": "55838b658e", "media": "photo", "latitude": "0", "id": "535220159", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:12:10", "license": "3", "title": "Stanford Quad - New Garden - 3", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1138/535103212_f3ea184cd6_o.jpg", "secret": "bc92f018e4", "media": "photo", "latitude": "0", "id": "535103212", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:12:36", "license": "3", "title": "Stanford Quad - New Garden - 4", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1184/535107044_cff8116d60_o.jpg", "secret": "1e0abe6108", "media": "photo", "latitude": "0", "id": "535107044", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:13:30", "license": "3", "title": "Stanford Quad - New Garden - 5", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1326/535225923_b9ffa875b0_o.jpg", "secret": "00dcfebde3", "media": "photo", "latitude": "0", "id": "535225923", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:14:32", "license": "3", "title": "Stanford Quad - New Garden - 6", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1301/535226859_269fd1150c_o.jpg", "secret": "e5e1916dfa", "media": "photo", "latitude": "0", "id": "535226859", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:15:06", "license": "3", "title": "Stanford Quad - New Garden - 7", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1326/535108100_e5634ddfa2_o.jpg", "secret": "aad998566f", "media": "photo", "latitude": "0", "id": "535108100", "tags": "architecture garden campus landscape stanford mawep"}, {"datetaken": "2007-06-03 15:15:47", "license": "3", "title": "Stanford Quad - New Garden - 8", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1119/535227833_41da3f4b09_o.jpg", "secret": "e8fe992e28", "media": "photo", "latitude": "0", "id": "535227833", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:16:49", "license": "3", "title": "Stanford Quad - New Garden - 9", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1127/535228547_1a9f028eac_o.jpg", "secret": "49a58b0047", "media": "photo", "latitude": "0", "id": "535228547", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:17:51", "license": "3", "title": "Stanford Quad - New Garden - 10", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1390/535230291_8c6f2723b4_o.jpg", "secret": "5f5e4d0174", "media": "photo", "latitude": "0", "id": "535230291", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:19:32", "license": "3", "title": "Stanford Quad - New Garden - 11", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1203/535111084_6fbecfc09d_o.jpg", "secret": "2558995ca6", "media": "photo", "latitude": "0", "id": "535111084", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:20:59", "license": "3", "title": "Stanford Quad - New Garden - 12", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1240/535231373_4531bccfe7_o.jpg", "secret": "0b7c0524ff", "media": "photo", "latitude": "0", "id": "535231373", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:22:59", "license": "3", "title": "Stanford Quad - New Garden - 13", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1131/535231401_fe13f1f05d_o.jpg", "secret": "c6db612fde", "media": "photo", "latitude": "0", "id": "535231401", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:23:26", "license": "3", "title": "Stanford Quad - New Garden - 14", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1137/535232919_002819c98c_o.jpg", "secret": "8a75599f96", "media": "photo", "latitude": "0", "id": "535232919", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:23:48", "license": "3", "title": "Stanford Quad - New Garden - 15", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1288/535115068_f309d38e2a_o.jpg", "secret": "3d8656af50", "media": "photo", "latitude": "0", "id": "535115068", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:24:25", "license": "3", "title": "Stanford Quad - New Garden - 16", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1351/535115262_0f11f5ac77_o.jpg", "secret": "89f29ead74", "media": "photo", "latitude": "0", "id": "535115262", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:24:40", "license": "3", "title": "Stanford Quad - New Garden - 17", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1144/535117244_797de3ab62_o.jpg", "secret": "16430ceebb", "media": "photo", "latitude": "0", "id": "535117244", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:24:53", "license": "3", "title": "Stanford Quad - New Garden - 18", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1428/535116730_d7315825c2_o.jpg", "secret": "e5295c92a3", "media": "photo", "latitude": "0", "id": "535116730", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-03 15:25:24", "license": "3", "title": "Stanford Quad - New Garden - 19", "text": "", "album_id": "72157600325422018", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1099/535117810_16c0d24cc5_o.jpg", "secret": "c22dbc75fa", "media": "photo", "latitude": "0", "id": "535117810", "tags": "architecture garden campus landscape stanford"}, {"datetaken": "2007-06-09 12:07:23", "license": "1", "title": "KenilworthGardens20070609mmg0549FungusStump.jpg", "text": "", "album_id": "72157600334514375", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1225/538173358_4807325296_o.jpg", "secret": "5fd0902ab0", "media": "photo", "latitude": "0", "id": "538173358", "tags": "flowers trees summer flower tree dragonflies swamp marsh derwood kenilworthgardens justinemorgan"}, {"datetaken": "2007-06-09 12:09:24", "license": "1", "title": "KenilworthGardens20070609mmg0561Dragonfly.jpg", "text": "", "album_id": "72157600334514375", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1227/538303249_394c6a9057_o.jpg", "secret": "f0ba878e09", "media": "photo", "latitude": "0", "id": "538303249", "tags": "flowers trees summer flower tree geotagged dragonflies swamp marsh derwood kenilworthgardens justinemorgan geo:lat=38912875 geo:lon=76943524"}, {"datetaken": "2007-06-09 12:17:15", "license": "1", "title": "KenilworthGardens20070609mmg0595SwampyMarshesPathJustine.jpg", "text": "", "album_id": "72157600334514375", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1260/538173892_63cb46a622_o.jpg", "secret": "4a94099bf5", "media": "photo", "latitude": "0", "id": "538173892", "tags": "flowers trees summer flower tree dragonflies swamp marsh derwood kenilworthgardens justinemorgan"}, {"datetaken": "2007-06-09 12:21:13", "license": "1", "title": "KenilworthGardens20070609mmg0618Flower.jpg", "text": "", "album_id": "72157600334514375", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1404/538293119_abcc3ddbdf_o.jpg", "secret": "0299ab21aa", "media": "photo", "latitude": "0", "id": "538293119", "tags": "flowers trees summer flower tree dragonflies swamp marsh derwood kenilworthgardens justinemorgan"}, {"datetaken": "2007-06-09 12:38:39", "license": "1", "title": "KenilworthGardens20070609mmg0644FieldsPano.jpg", "text": "", "album_id": "72157600334514375", "longitude": "-76.946711", "url_o": "https://farm2.staticflickr.com/1266/539253667_abd81f53ef_o.jpg", "secret": "cca0261dfd", "media": "photo", "latitude": "38.911464", "id": "539253667", "tags": "trees summer panorama tree geotagged dragonflies maryland swamp wetlands marsh anacostia kenilworthgardens justinemorgan geo:lat=38911464 geo:lon=76946711"}, {"datetaken": "2007-06-09 12:48:56", "license": "1", "title": "KenilworthGardens20070609mmg0689Butterfly.jpg", "text": "", "album_id": "72157600334514375", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1370/538175380_9806a0cbd1_o.jpg", "secret": "cd826d5f2e", "media": "photo", "latitude": "0", "id": "538175380", "tags": "flowers trees summer flower tree dragonflies swamp marsh derwood kenilworthgardens justinemorgan"}, {"datetaken": "2007-06-09 12:58:42", "license": "1", "title": "KenilworthGardens20070609mmg0713JustineAndI.jpg", "text": "", "album_id": "72157600334514375", "longitude": "-76.946115", "url_o": "https://farm2.staticflickr.com/1180/538294693_e4fba123e6_o.jpg", "secret": "6c0dca8c2e", "media": "photo", "latitude": "38.912094", "id": "538294693", "tags": "flowers trees summer flower tree geotagged dragonflies swamp marsh derwood kenilworthgardens justinemorgan geo:lat=38912094 geo:lon=76946115"}, {"datetaken": "2007-06-09 13:03:35", "license": "1", "title": "KenilworthGardens20070609mmg0725Flowers.jpg", "text": "", "album_id": "72157600334514375", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1051/538177924_8db3c5efb7_o.jpg", "secret": "80f5249a46", "media": "photo", "latitude": "0", "id": "538177924", "tags": "flowers trees summer flower tree dragonflies swamp marsh derwood kenilworthgardens justinemorgan"}, {"datetaken": "2007-06-09 13:08:58", "license": "1", "title": "KenilworthGardens20070609mmg0740Three.jpg", "text": "", "album_id": "72157600334514375", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1369/538297379_9d72449ab7_o.jpg", "secret": "2a2e09c0bf", "media": "photo", "latitude": "0", "id": "538297379", "tags": "flowers trees summer flower tree dragonflies swamp marsh derwood kenilworthgardens justinemorgan"}, {"datetaken": "2007-06-09 13:10:31", "license": "1", "title": "KenilworthGardens20070609mmg0741Bridge.jpg", "text": "", "album_id": "72157600334514375", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1134/538297851_aa4ccde88a_o.jpg", "secret": "a55c1d4b2e", "media": "photo", "latitude": "0", "id": "538297851", "tags": "flowers trees summer flower tree geotagged dragonflies swamp marsh derwood kenilworthgardens justinemorgan geo:lat=3891313 geo:lon=76944326"}, {"datetaken": "2007-06-09 13:19:26", "license": "1", "title": "KenilworthGardens20070609mmg0765MarshCones.jpg", "text": "", "album_id": "72157600334514375", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1134/538180502_8b3f1234e8_o.jpg", "secret": "6db89c48ea", "media": "photo", "latitude": "0", "id": "538180502", "tags": "flowers trees summer flower tree geotagged dragonflies swamp marsh derwood kenilworthgardens justinemorgan geo:lat=38915462 geo:lon=76941864"}, {"datetaken": "2007-06-09 13:25:51", "license": "1", "title": "KenilworthGardens20070609mmg0799GeeseFamily.jpg", "text": "", "album_id": "72157600334514375", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1347/538183004_42983c631b_o.jpg", "secret": "e82c97d1d7", "media": "photo", "latitude": "0", "id": "538183004", "tags": "flowers trees summer flower tree geotagged dragonflies swamp marsh derwood kenilworthgardens justinemorgan geo:lat=38912858 geo:lon=76942121"}, {"datetaken": "2007-07-07 08:33:13", "license": "4", "title": "", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1302/765359781_1949a5151d_o.jpg", "secret": "98b2592659", "media": "photo", "latitude": "0", "id": "765359781", "tags": ""}, {"datetaken": "2007-07-07 08:34:32", "license": "4", "title": "", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1318/766292776_4829bffe91_o.jpg", "secret": "1ab8a4ee07", "media": "photo", "latitude": "0", "id": "766292776", "tags": ""}, {"datetaken": "2007-07-07 08:41:11", "license": "4", "title": "", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1282/766228474_c871dd4e8a_o.jpg", "secret": "0e53299e78", "media": "photo", "latitude": "0", "id": "766228474", "tags": ""}, {"datetaken": "2007-07-07 08:42:09", "license": "4", "title": "", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1351/765367401_edde80617a_o.jpg", "secret": "9eb56f5c6c", "media": "photo", "latitude": "0", "id": "765367401", "tags": ""}, {"datetaken": "2007-07-07 08:44:39", "license": "4", "title": "", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1413/765370795_dd46846cf3_o.jpg", "secret": "c53f8cda59", "media": "photo", "latitude": "0", "id": "765370795", "tags": ""}, {"datetaken": "2007-07-07 08:45:51", "license": "4", "title": "", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1232/766238488_ae07d5d10e_o.jpg", "secret": "cdeb30d1da", "media": "photo", "latitude": "0", "id": "766238488", "tags": ""}, {"datetaken": "2007-07-07 08:46:42", "license": "4", "title": "", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1420/766242276_3a7be43eef_o.jpg", "secret": "cebfa200e4", "media": "photo", "latitude": "0", "id": "766242276", "tags": ""}, {"datetaken": "2007-07-07 08:47:50", "license": "4", "title": "", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1187/765383103_426b3ff2b7_o.jpg", "secret": "7dee336dc1", "media": "photo", "latitude": "0", "id": "765383103", "tags": ""}, {"datetaken": "2007-07-07 08:49:13", "license": "4", "title": "", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1045/765387567_45b1306258_o.jpg", "secret": "02338dc9c1", "media": "photo", "latitude": "0", "id": "765387567", "tags": ""}, {"datetaken": "2007-07-07 08:50:26", "license": "4", "title": "", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1243/766255128_8f09868081_o.jpg", "secret": "229a65c2ca", "media": "photo", "latitude": "0", "id": "766255128", "tags": ""}, {"datetaken": "2007-07-07 08:50:48", "license": "4", "title": "", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1014/766258504_fdb92ee093_o.jpg", "secret": "e767bbeb29", "media": "photo", "latitude": "0", "id": "766258504", "tags": ""}, {"datetaken": "2007-07-07 08:51:40", "license": "4", "title": "overdressed gwailo", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1422/765396901_2a231a495c_o.jpg", "secret": "4371077c42", "media": "photo", "latitude": "0", "id": "765396901", "tags": ""}, {"datetaken": "2007-07-07 08:52:31", "license": "4", "title": "window", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1132/766263320_8f62530b68_o.jpg", "secret": "b15f442fd0", "media": "photo", "latitude": "0", "id": "766263320", "tags": ""}, {"datetaken": "2007-07-07 08:55:01", "license": "4", "title": "tranquility", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1005/766270320_c343ff763c_o.jpg", "secret": "b9380cf3cb", "media": "photo", "latitude": "0", "id": "766270320", "tags": ""}, {"datetaken": "2007-07-07 08:56:02", "license": "4", "title": "giant roots", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1008/765409293_64a4bc8144_o.jpg", "secret": "9d96307a00", "media": "photo", "latitude": "0", "id": "765409293", "tags": ""}, {"datetaken": "2007-07-07 08:57:30", "license": "4", "title": "", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1290/765413537_464ce31b78_o.jpg", "secret": "108a85914c", "media": "photo", "latitude": "0", "id": "765413537", "tags": ""}, {"datetaken": "2007-07-07 08:57:36", "license": "4", "title": "", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1094/766295932_b7c1cf50a8_o.jpg", "secret": "5ddbc34111", "media": "photo", "latitude": "0", "id": "766295932", "tags": ""}, {"datetaken": "2007-07-07 09:03:26", "license": "4", "title": "silk cotton tree roots", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1054/766282856_5a468c5e7a_o.jpg", "secret": "d57aef94c7", "media": "photo", "latitude": "0", "id": "766282856", "tags": ""}, {"datetaken": "2007-07-07 09:04:42", "license": "4", "title": "", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1433/765422765_a697fefae4_o.jpg", "secret": "806e12d8d3", "media": "photo", "latitude": "0", "id": "765422765", "tags": ""}, {"datetaken": "2007-07-07 09:13:46", "license": "4", "title": "", "text": "", "album_id": "72157600738834989", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1395/766289586_3ee425f7d4_o.jpg", "secret": "db319adad7", "media": "photo", "latitude": "0", "id": "766289586", "tags": ""}, {"datetaken": "2007-07-08 21:48:50", "license": "1", "title": "Stairs", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1010/854028751_b0e61ff03d_o.jpg", "secret": "cb7efb6f7e", "media": "photo", "latitude": "35.534251", "id": "854028751", "tags": "trees plant tree nature wet water rock stairs river fun waterfall nc northcarolina hike adventure cherokee missions steep thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 21:50:00", "license": "1", "title": "Stream", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1126/854887050_3a99ac8ff8_o.jpg", "secret": "091d702f31", "media": "photo", "latitude": "35.534251", "id": "854887050", "tags": "trees plant tree nature wet water rock river fun waterfall nc stream northcarolina hike adventure cherokee missions thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 21:50:40", "license": "1", "title": "Stream", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1429/854027339_98f11194a5_o.jpg", "secret": "793c4f5e4a", "media": "photo", "latitude": "35.534251", "id": "854027339", "tags": "trees plant tree nature wet water rock river fun waterfall nc stream northcarolina hike adventure cherokee missions thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 21:54:25", "license": "1", "title": "Plant", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1239/854884738_55f99495d9_o.jpg", "secret": "a3ca13bf73", "media": "photo", "latitude": "35.534251", "id": "854884738", "tags": "trees plant tree nature wet water rock river fun waterfall leaf nc northcarolina hike adventure cherokee missions thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 21:54:30", "license": "1", "title": "Log", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1028/854885594_8c73e27de3_o.jpg", "secret": "563d1f8c5c", "media": "photo", "latitude": "35.534251", "id": "854885594", "tags": "trees plant tree nature wet water rock river fun waterfall nc moss log branch northcarolina hike adventure cherokee missions limb thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 21:57:28", "license": "1", "title": "Splendor", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1338/854883460_a3cebf6406_o.jpg", "secret": "ad46780cf8", "media": "photo", "latitude": "35.534251", "id": "854883460", "tags": "trees plant tree nature wet water beautiful rock river fun waterfall nc amazing northcarolina hike adventure cherokee missions magnificent thebridge mingofalls spendor etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 21:57:44", "license": "1", "title": "Trifold", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1422/854881970_ec44a09b45_o.jpg", "secret": "b85a0b3f5a", "media": "photo", "latitude": "35.534251", "id": "854881970", "tags": "trees plant tree nature wet water rock river fun three waterfall nc northcarolina hike adventure streams cherokee tri missions thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 21:57:50", "license": "1", "title": "Water breaks", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1175/854023439_5038df1272_o.jpg", "secret": "efbbd1bee3", "media": "photo", "latitude": "35.534251", "id": "854023439", "tags": "trees white plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 21:58:28", "license": "1", "title": "Continue", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1054/854021989_932703f084_o.jpg", "secret": "31dda756b0", "media": "photo", "latitude": "35.534251", "id": "854021989", "tags": "trees plant tree nature wet water rock river fun climb waterfall nc group northcarolina hike adventure cherokee missions thebridge mingofalls armandogonzalez sarahbecker bethanysiniscal jonathansiniscal siniscal joelschwartz etownmission thebridgeyouthministries geotorres stephaniemickle graceugkeabu charleselmore andrewmello"}, {"datetaken": "2007-07-08 22:05:02", "license": "1", "title": "Flow", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1369/854018927_4e8bf8c41d_o.jpg", "secret": "f16feaa68c", "media": "photo", "latitude": "35.534251", "id": "854018927", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 22:06:01", "license": "1", "title": "Dead end", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1161/854018277_e11f0d80b1_o.jpg", "secret": "3f51989de1", "media": "photo", "latitude": "35.534251", "id": "854018277", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls michaelhartz romulomeneses etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 22:06:30", "license": "1", "title": "Waterfall", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1006/854017399_889a9799ed_o.jpg", "secret": "4c72269b09", "media": "photo", "latitude": "35.534251", "id": "854017399", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 22:06:42", "license": "1", "title": "Flow", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1053/854016599_cbc37400b6_o.jpg", "secret": "7d8bbd67b7", "media": "photo", "latitude": "35.534251", "id": "854016599", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 22:08:02", "license": "1", "title": "Close", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1427/854874676_f085f2c9df_o.jpg", "secret": "54918340df", "media": "photo", "latitude": "35.534251", "id": "854874676", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 22:08:08", "license": "1", "title": "Splash", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1322/854874010_86643c8c2c_o.jpg", "secret": "c698b073ab", "media": "photo", "latitude": "35.534251", "id": "854874010", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 22:12:43", "license": "1", "title": "Wow", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1318/854014031_b7b5542b55_o.jpg", "secret": "8925e6db50", "media": "photo", "latitude": "35.534251", "id": "854014031", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 22:12:50", "license": "1", "title": "Down", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1152/854872460_aee39e4a85_o.jpg", "secret": "1c5af13547", "media": "photo", "latitude": "35.534251", "id": "854872460", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 22:23:43", "license": "1", "title": "Over the edge", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1245/854011943_2c03d26032_o.jpg", "secret": "015006c417", "media": "photo", "latitude": "35.534251", "id": "854011943", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 22:24:17", "license": "1", "title": "Long way down", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1070/854011043_b3c5667e5e_o.jpg", "secret": "e8578b3a7e", "media": "photo", "latitude": "35.534251", "id": "854011043", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 22:24:51", "license": "1", "title": "Source", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1296/854869540_97431a1056_o.jpg", "secret": "c99a74dc97", "media": "photo", "latitude": "35.534251", "id": "854869540", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions source thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 22:25:04", "license": "1", "title": "Source", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1017/854009379_81261ed7f4_o.jpg", "secret": "4c61bc9a58", "media": "photo", "latitude": "35.534251", "id": "854009379", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions source thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 22:27:16", "license": "1", "title": "Sit", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1001/854867124_f95d387c0f_o.jpg", "secret": "2d5318906e", "media": "photo", "latitude": "35.534251", "id": "854867124", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls armandogonzalez michaelhartz elliottjohnson joelschwartz romulomeneses angeltorres etownmission thebridgeyouthministries geotorres"}, {"datetaken": "2007-07-08 22:28:19", "license": "1", "title": "View", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1106/854006327_cb316944ab_o.jpg", "secret": "20fef874a7", "media": "photo", "latitude": "35.534251", "id": "854006327", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 22:29:06", "license": "1", "title": "View", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1314/854005415_bba8a1d6b3_o.jpg", "secret": "f9f5c98933", "media": "photo", "latitude": "35.534251", "id": "854005415", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 22:48:15", "license": "1", "title": "Joel & Angel", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1419/854004589_422c451020_o.jpg", "secret": "ada364da75", "media": "photo", "latitude": "35.534251", "id": "854004589", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls joelschwartz angeltorres etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 22:49:40", "license": "1", "title": "Joel & Angel", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1333/854862934_818cde9ef7_o.jpg", "secret": "89cd9991a9", "media": "photo", "latitude": "35.534251", "id": "854862934", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls joelschwartz angeltorres etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-08 22:50:40", "license": "1", "title": "Maria!", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1340/854861304_08643a7ca7_o.jpg", "secret": "88eea82ffa", "media": "photo", "latitude": "35.534251", "id": "854861304", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls etownmission thebridgeyouthministries mariameneses"}, {"datetaken": "2007-07-08 22:51:36", "license": "1", "title": "Watersickles", "text": "", "album_id": "72157600908003290", "longitude": "-83.276002", "url_o": "https://farm2.staticflickr.com/1055/854860546_20e041efd0_o.jpg", "secret": "d2c69ad0e4", "media": "photo", "latitude": "35.534251", "id": "854860546", "tags": "trees plant tree nature wet water rock river fun waterfall nc northcarolina hike adventure cherokee missions thebridge mingofalls etownmission thebridgeyouthministries"}, {"datetaken": "2007-07-28 14:09:33", "license": "4", "title": "New leaf", "text": "", "album_id": "72157606501282252", "longitude": "-3.209145", "url_o": "https://farm2.staticflickr.com/1283/941975397_b53bc5792e_o.jpg", "secret": "53a22ea415", "media": "photo", "latitude": "55.964380", "id": "941975397", "tags": "plant leaf edinburghbotanicgardens"}, {"datetaken": "2007-07-28 14:15:25", "license": "4", "title": "Small pink flowers", "text": "", "album_id": "72157606501282252", "longitude": "-3.208909", "url_o": "https://farm2.staticflickr.com/1056/942818210_179dfa3b6f_o.jpg", "secret": "a2903f04d3", "media": "photo", "latitude": "55.964593", "id": "942818210", "tags": "pink flowers plant macro edinburghbotanicgardens"}, {"datetaken": "2007-07-28 14:19:33", "license": "4", "title": "Hydrangea", "text": "", "album_id": "72157606501282252", "longitude": "-3.208930", "url_o": "https://farm2.staticflickr.com/1170/941971999_c2cd3658b9_o.jpg", "secret": "e5e9fa93e8", "media": "photo", "latitude": "55.966112", "id": "941971999", "tags": "plant flower hydrangea edinburghbotanicgardens"}, {"datetaken": "2007-07-28 14:20:14", "license": "4", "title": "Hydrangea", "text": "", "album_id": "72157606501282252", "longitude": "-3.208930", "url_o": "https://farm2.staticflickr.com/1064/942817210_fa63bf3661_o.jpg", "secret": "d864ff879c", "media": "photo", "latitude": "55.966112", "id": "942817210", "tags": "plant flower macro hydrangea edinburghbotanicgardens"}, {"datetaken": "2007-07-28 14:27:14", "license": "4", "title": "Red blob", "text": "", "album_id": "72157606501282252", "longitude": "-3.207160", "url_o": "https://farm2.staticflickr.com/1197/942813226_848c0aba1a_o.jpg", "secret": "0207fb28b0", "media": "photo", "latitude": "55.967091", "id": "942813226", "tags": "plant flower macro leaves edinburghbotanicgardens"}, {"datetaken": "2007-07-28 14:41:04", "license": "4", "title": "Strange flower", "text": "", "album_id": "72157606501282252", "longitude": "-3.207160", "url_o": "https://farm2.staticflickr.com/1390/941967081_c9eb15ea87_o.jpg", "secret": "110b3d1ce5", "media": "photo", "latitude": "55.967091", "id": "941967081", "tags": "plant flower macro edinburghbotanicgardens"}, {"datetaken": "2007-07-28 14:45:27", "license": "4", "title": "Lily pads on the pond", "text": "", "album_id": "72157606501282252", "longitude": "-3.207160", "url_o": "https://farm2.staticflickr.com/1006/942808694_a4cbbd8da5_o.jpg", "secret": "3044d68484", "media": "photo", "latitude": "55.967091", "id": "942808694", "tags": "plant flower water leaves lilypad edinburghbotanicgardens"}, {"datetaken": "2007-07-28 14:45:35", "license": "4", "title": "Lily pads", "text": "", "album_id": "72157606501282252", "longitude": "-3.207160", "url_o": "https://farm2.staticflickr.com/1410/941962469_3c53a6789d_o.jpg", "secret": "a4406113c9", "media": "photo", "latitude": "55.967091", "id": "941962469", "tags": "plant water leaves pond lilypads edinburghbotanicgardens"}, {"datetaken": "2007-07-28 14:45:46", "license": "4", "title": "Water plants", "text": "", "album_id": "72157606501282252", "longitude": "-3.207160", "url_o": "https://farm2.staticflickr.com/1046/942802280_bb7fe3675a_o.jpg", "secret": "9ae7ff8028", "media": "photo", "latitude": "55.967091", "id": "942802280", "tags": "plant leaves pond edinburghbotanicgardens"}, {"datetaken": "2007-07-28 14:48:35", "license": "4", "title": "Purple flowers", "text": "", "album_id": "72157606501282252", "longitude": "-3.207160", "url_o": "https://farm2.staticflickr.com/1181/941959843_b00d32b640_o.jpg", "secret": "5db45e9fa6", "media": "photo", "latitude": "55.967091", "id": "941959843", "tags": "plant flower macro edinburghbotanicgardens"}, {"datetaken": "2007-07-28 14:52:03", "license": "4", "title": "Hanging flowers", "text": "", "album_id": "72157606501282252", "longitude": "-3.207160", "url_o": "https://farm2.staticflickr.com/1267/941960999_156f66756f_o.jpg", "secret": "c84d99f057", "media": "photo", "latitude": "55.967091", "id": "941960999", "tags": "plant flower macro edinburghbotanicgardens"}, {"datetaken": "2007-07-28 14:52:27", "license": "4", "title": "Flowers hanging from a tree", "text": "", "album_id": "72157606501282252", "longitude": "-3.207160", "url_o": "https://farm2.staticflickr.com/1277/941963697_f73bb57f54_o.jpg", "secret": "5ffb191576", "media": "photo", "latitude": "55.967091", "id": "941963697", "tags": "plant flower tree edinburghbotanicgardens"}, {"datetaken": "2007-07-28 14:59:48", "license": "4", "title": "Floating leaves", "text": "", "album_id": "72157606501282252", "longitude": "-3.207160", "url_o": "https://farm2.staticflickr.com/1276/941970807_e9a9992715_o.jpg", "secret": "3ef31b00ea", "media": "photo", "latitude": "55.967091", "id": "941970807", "tags": "plant water leaves edinburghbotanicgardens"}, {"datetaken": "2007-07-28 15:09:17", "license": "4", "title": "Stripey flowers", "text": "", "album_id": "72157606501282252", "longitude": "-3.207160", "url_o": "https://farm2.staticflickr.com/1320/942809784_0aad2255d2_o.jpg", "secret": "c88cfeaaef", "media": "photo", "latitude": "55.967091", "id": "942809784", "tags": "plant flower macro edinburghbotanicgardens"}, {"datetaken": "2007-07-28 15:15:25", "license": "4", "title": "Banana flower", "text": "", "album_id": "72157606501282252", "longitude": "-3.207160", "url_o": "https://farm2.staticflickr.com/1173/941957283_a63e5b4247_o.jpg", "secret": "214b3fbd97", "media": "photo", "latitude": "55.967091", "id": "941957283", "tags": "food plant flower leaves banana edinburghbotanicgardens"}, {"datetaken": "2007-07-28 15:20:18", "license": "4", "title": "Red and yellow flower", "text": "", "album_id": "72157606501282252", "longitude": "-3.207160", "url_o": "https://farm2.staticflickr.com/1269/942811812_a88ab11293_o.jpg", "secret": "5be4210157", "media": "photo", "latitude": "55.967091", "id": "942811812", "tags": "plant flower macro edinburghbotanicgardens"}, {"datetaken": "2007-05-05 11:43:45", "license": "3", "title": "dscf6534.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.544705", "url_o": "https://farm2.staticflickr.com/1377/691991553_372d67ffe1_o.jpg", "secret": "5a05c756b8", "media": "photo", "latitude": "51.375717", "id": "691991553", "tags": "trees plants netherlands meadows heezerenbosch"}, {"datetaken": "2007-05-05 11:52:49", "license": "3", "title": "dscf6541.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.544672", "url_o": "https://farm2.staticflickr.com/1025/692896772_a0b2c8d49a_o.jpg", "secret": "b0af53175b", "media": "photo", "latitude": "51.379369", "id": "692896772", "tags": "trees plants netherlands meadows heezerenbosch"}, {"datetaken": "2007-05-05 11:58:31", "license": "3", "title": "dscf6545.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.539877", "url_o": "https://farm2.staticflickr.com/1115/692909098_c5a2641166_o.jpg", "secret": "6df66925e2", "media": "photo", "latitude": "51.382039", "id": "692909098", "tags": "netherlands farmers farmland tractors heezerenbosch"}, {"datetaken": "2007-05-05 12:01:27", "license": "3", "title": "dscf6549.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.537915", "url_o": "https://farm2.staticflickr.com/1227/692053623_002ae4484b_o.jpg", "secret": "8b5c7f99f0", "media": "photo", "latitude": "51.381576", "id": "692053623", "tags": "netherlands meadows heezerenbosch"}, {"datetaken": "2007-05-05 12:04:56", "license": "3", "title": "dscf6551.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.536861", "url_o": "https://farm2.staticflickr.com/1133/692926850_72219213c9_o.jpg", "secret": "9846758ecd", "media": "photo", "latitude": "51.383017", "id": "692926850", "tags": "netherlands meadows heezerenbosch"}, {"datetaken": "2007-05-05 12:29:13", "license": "3", "title": "dscf6556.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.524239", "url_o": "https://farm2.staticflickr.com/1225/692936550_19b15fe89c_o.jpg", "secret": "795af0c89e", "media": "photo", "latitude": "51.379937", "id": "692936550", "tags": "trees plants netherlands heather heezerenbosch"}, {"datetaken": "2007-05-05 12:49:40", "license": "3", "title": "dscf6564.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.523633", "url_o": "https://farm2.staticflickr.com/1184/692955128_a0992bdd2e_o.jpg", "secret": "d5a54d504c", "media": "photo", "latitude": "51.377391", "id": "692955128", "tags": "plants netherlands heather heezerenbosch"}, {"datetaken": "2007-05-05 12:49:43", "license": "3", "title": "dscf6565.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.523666", "url_o": "https://farm2.staticflickr.com/1138/692092295_5252781c39_o.jpg", "secret": "4038b181ac", "media": "photo", "latitude": "51.377342", "id": "692092295", "tags": "trees plants netherlands heather heezerenbosch"}, {"datetaken": "2007-05-05 12:49:55", "license": "3", "title": "dscf6566.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.523749", "url_o": "https://farm2.staticflickr.com/1194/692965632_8283012c2d_o.jpg", "secret": "953be146be", "media": "photo", "latitude": "51.377164", "id": "692965632", "tags": "plants netherlands heather heezerenbosch"}, {"datetaken": "2007-05-05 12:54:36", "license": "3", "title": "dscf6568.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.524788", "url_o": "https://farm2.staticflickr.com/1402/692975894_7090fc4698_o.jpg", "secret": "062a03760c", "media": "photo", "latitude": "51.375546", "id": "692975894", "tags": "trees plants netherlands pond heather waterside heezerenbosch"}, {"datetaken": "2007-05-05 13:10:16", "license": "3", "title": "dscf6580.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.526144", "url_o": "https://farm2.staticflickr.com/1396/692991106_9c47438674_o.jpg", "secret": "3bc8bca054", "media": "photo", "latitude": "51.375117", "id": "692991106", "tags": "netherlands pond heezerenbosch"}, {"datetaken": "2007-05-05 13:10:24", "license": "3", "title": "dscf6581.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.526144", "url_o": "https://farm2.staticflickr.com/1038/692997036_45c6b8b57a_o.jpg", "secret": "155b00dadf", "media": "photo", "latitude": "51.375117", "id": "692997036", "tags": "plants netherlands pond heezerenbosch"}, {"datetaken": "2007-05-05 13:10:34", "license": "3", "title": "dscf6583.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.525991", "url_o": "https://farm2.staticflickr.com/1393/692133721_b8df2e6e3c_o.jpg", "secret": "dbffe6844f", "media": "photo", "latitude": "51.375228", "id": "692133721", "tags": "plants netherlands pond heezerenbosch"}, {"datetaken": "2007-05-05 13:17:16", "license": "3", "title": "dscf6588.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.526262", "url_o": "https://farm2.staticflickr.com/1290/692144325_578ed4ede6_o.jpg", "secret": "018972f908", "media": "photo", "latitude": "51.375950", "id": "692144325", "tags": "netherlands heezerenbosch"}, {"datetaken": "2007-05-05 13:22:00", "license": "3", "title": "dscf6589.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.527002", "url_o": "https://farm2.staticflickr.com/1376/693018020_299d6b25cf_o.jpg", "secret": "06262272b8", "media": "photo", "latitude": "51.374662", "id": "693018020", "tags": "netherlands animals heather insects invertebrates heezerenbosch"}, {"datetaken": "2007-05-05 13:22:08", "license": "3", "title": "dscf6590.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.527002", "url_o": "https://farm2.staticflickr.com/1130/693022860_1aa3ee9641_o.jpg", "secret": "7090ae7633", "media": "photo", "latitude": "51.374660", "id": "693022860", "tags": "netherlands animals heather insects invertebrates heezerenbosch"}, {"datetaken": "2007-05-05 13:22:22", "license": "3", "title": "dscf6592.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.527002", "url_o": "https://farm2.staticflickr.com/1076/692159795_3d60120c45_o.jpg", "secret": "321d8558ea", "media": "photo", "latitude": "51.374657", "id": "692159795", "tags": "netherlands animals heather insects invertebrates heezerenbosch"}, {"datetaken": "2007-05-05 13:22:32", "license": "3", "title": "dscf6594.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.527002", "url_o": "https://farm2.staticflickr.com/1324/693032682_0a5ee5a90d_o.jpg", "secret": "2f23b450c3", "media": "photo", "latitude": "51.374654", "id": "693032682", "tags": "netherlands animals heather insects invertebrates heezerenbosch"}, {"datetaken": "2007-05-05 13:22:45", "license": "3", "title": "dscf6597.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.527002", "url_o": "https://farm2.staticflickr.com/1144/692169865_35d58b80c9_o.jpg", "secret": "923e990826", "media": "photo", "latitude": "51.374651", "id": "692169865", "tags": "netherlands animals heather insects invertebrates heezerenbosch"}, {"datetaken": "2007-05-05 13:23:09", "license": "3", "title": "dscf6599.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.527002", "url_o": "https://farm2.staticflickr.com/1148/693043152_f8a8c7ae22_o.jpg", "secret": "abfb36a436", "media": "photo", "latitude": "51.374646", "id": "693043152", "tags": "plants netherlands heezerenbosch"}, {"datetaken": "2007-05-05 13:37:11", "license": "3", "title": "dscf6604.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.524213", "url_o": "https://farm2.staticflickr.com/1375/692185443_9cd5bc05f6_o.jpg", "secret": "4382577686", "media": "photo", "latitude": "51.373921", "id": "692185443", "tags": "plants netherlands heezerenbosch"}, {"datetaken": "2007-05-05 13:39:15", "license": "3", "title": "dscf6610.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.524140", "url_o": "https://farm2.staticflickr.com/1434/693064696_03440ec9d4_o.jpg", "secret": "3474844d3d", "media": "photo", "latitude": "51.373593", "id": "693064696", "tags": "trees plants netherlands heather deadwood heezerenbosch"}, {"datetaken": "2007-05-05 14:18:27", "license": "3", "title": "dscf6637.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.524164", "url_o": "https://farm2.staticflickr.com/1190/693125142_61b8cf4029_o.jpg", "secret": "2eb960e467", "media": "photo", "latitude": "51.363846", "id": "693125142", "tags": "trees plants netherlands forest boshoven"}, {"datetaken": "2007-05-05 14:29:19", "license": "3", "title": "dscf6641.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.526359", "url_o": "https://farm2.staticflickr.com/1338/693130042_1ead5313e1_o.jpg", "secret": "88b510b3a3", "media": "photo", "latitude": "51.357682", "id": "693130042", "tags": "netherlands boshoven"}, {"datetaken": "2007-05-05 14:38:39", "license": "3", "title": "dscf6651.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.524134", "url_o": "https://farm2.staticflickr.com/1205/693154736_e46177d684_o.jpg", "secret": "e9145d3269", "media": "photo", "latitude": "51.356881", "id": "693154736", "tags": "trees plants netherlands boshoven"}, {"datetaken": "2007-05-05 14:42:27", "license": "3", "title": "dscf6655.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.524622", "url_o": "https://farm2.staticflickr.com/1067/693159880_0bbf315f35_o.jpg", "secret": "0c87b7dc02", "media": "photo", "latitude": "51.355596", "id": "693159880", "tags": "trees plants netherlands forest boshoven"}, {"datetaken": "2007-05-05 14:44:34", "license": "3", "title": "dscf6658.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.524935", "url_o": "https://farm2.staticflickr.com/1006/692296899_8139376380_o.jpg", "secret": "441ab4b09c", "media": "photo", "latitude": "51.354877", "id": "692296899", "tags": "trees plants netherlands forest boshoven"}, {"datetaken": "2007-05-05 17:40:47", "license": "3", "title": "dscf6671.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.534727", "url_o": "https://farm2.staticflickr.com/1110/692316991_1e791a219d_o.jpg", "secret": "43c55b4848", "media": "photo", "latitude": "51.340291", "id": "692316991", "tags": "plants netherlands animals insects lepidoptera leenderstrijp"}, {"datetaken": "2007-05-05 17:56:46", "license": "3", "title": "dscf6676.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.534728", "url_o": "https://farm2.staticflickr.com/1170/693205216_b223a11e09_o.jpg", "secret": "853d9c400c", "media": "photo", "latitude": "51.340290", "id": "693205216", "tags": "trees plants netherlands pond waterside leenderstrijp"}, {"datetaken": "2007-05-05 18:47:01", "license": "3", "title": "dscf6677.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.538226", "url_o": "https://farm2.staticflickr.com/1099/692342407_c53a32eb98_o.jpg", "secret": "404b297089", "media": "photo", "latitude": "51.368220", "id": "692342407", "tags": "trees plants netherlands forest roots deadwood heezerenbosch"}, {"datetaken": "2007-05-06 07:53:14", "license": "3", "title": "dscf6679.jpg", "text": "", "album_id": "72157600600643506", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1372/693215188_c20958c5ae_o.jpg", "secret": "77b3f63ba8", "media": "photo", "latitude": "0", "id": "693215188", "tags": "camping netherlands tents leenderstrijp"}, {"datetaken": "2007-05-06 07:54:12", "license": "3", "title": "dscf6680.jpg", "text": "", "album_id": "72157600600643506", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1097/692352045_b6c2ae163f_o.jpg", "secret": "afd1b8649a", "media": "photo", "latitude": "0", "id": "692352045", "tags": "netherlands pond leenderstrijp"}, {"datetaken": "2007-05-06 10:13:38", "license": "3", "title": "dscf6686.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.481684", "url_o": "https://farm2.staticflickr.com/1091/693231400_c77ee50e91_o.jpg", "secret": "002df62de5", "media": "photo", "latitude": "51.328144", "id": "693231400", "tags": "cats netherlands animals bruggerhuizen"}, {"datetaken": "2007-05-06 10:14:27", "license": "3", "title": "dscf6690.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.481481", "url_o": "https://farm2.staticflickr.com/1404/692368525_687a325622_o.jpg", "secret": "0d41c5c7b7", "media": "photo", "latitude": "51.328161", "id": "692368525", "tags": "cats netherlands animals bruggerhuizen"}, {"datetaken": "2007-05-06 10:37:03", "license": "3", "title": "dscf6693.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.491141", "url_o": "https://farm2.staticflickr.com/1215/692378631_20853a2eef_o.jpg", "secret": "3cce73626c", "media": "photo", "latitude": "51.311495", "id": "692378631", "tags": "trees plants belgium meadows deadwood trappe"}, {"datetaken": "2007-05-06 10:37:10", "license": "3", "title": "dscf6694.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.491138", "url_o": "https://farm2.staticflickr.com/1416/692384125_40510b0731_o.jpg", "secret": "9bd7cadde7", "media": "photo", "latitude": "51.311495", "id": "692384125", "tags": "trees plants belgium meadows deadwood trappe"}, {"datetaken": "2007-05-06 10:37:35", "license": "3", "title": "dscf6696.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.491125", "url_o": "https://farm2.staticflickr.com/1013/693256672_37054b9119_o.jpg", "secret": "6abe24d566", "media": "photo", "latitude": "51.311495", "id": "693256672", "tags": "trees plants birds animals belgium meadows trappe"}, {"datetaken": "2007-05-06 10:39:57", "license": "3", "title": "dscf6699.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.491355", "url_o": "https://farm2.staticflickr.com/1359/693267144_600e07967b_o.jpg", "secret": "1ba2bcd7da", "media": "photo", "latitude": "51.311430", "id": "693267144", "tags": "plants belgium meadows trappe"}, {"datetaken": "2007-05-06 10:40:10", "license": "3", "title": "dscf6700.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.491333", "url_o": "https://farm2.staticflickr.com/1178/692405357_bf0f655cb6_o.jpg", "secret": "8e70f6da02", "media": "photo", "latitude": "51.311430", "id": "692405357", "tags": "trees plants belgium meadows deadwood trappe"}, {"datetaken": "2007-05-06 10:41:14", "license": "3", "title": "dscf6704.jpg", "text": "", "album_id": "72157600600643506", "longitude": "5.491449", "url_o": "https://farm2.staticflickr.com/1101/693277934_c0d7d3f2ac_o.jpg", "secret": "c161a1191a", "media": "photo", "latitude": "51.311328", "id": "693277934", "tags": "animals belgium meadows insects lepidoptera invertebrates trappe"}, {"datetaken": "2007-08-04 12:38:22", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1225/1014486142_3f37c4646f_o.jpg", "secret": "7abf863a6d", "media": "photo", "latitude": "45.959921", "id": "1014486142", "tags": "oregon unitedstatesunitedstates oror"}, {"datetaken": "2007-08-04 12:42:24", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1054/1014493216_6ab8dbd2e3_o.jpg", "secret": "a1b2ecc4d5", "media": "photo", "latitude": "45.959921", "id": "1014493216", "tags": "oregon leaf hand unitedstates hiking or"}, {"datetaken": "2007-08-04 12:43:06", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1125/1014499134_559daa95cd_o.jpg", "secret": "c26ac827ba", "media": "photo", "latitude": "45.959921", "id": "1014499134", "tags": "oregon unitedstates hiking or trail"}, {"datetaken": "2007-08-04 12:44:25", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1010/1014501810_b0e576481a_o.jpg", "secret": "50c6b08fe3", "media": "photo", "latitude": "45.959921", "id": "1014501810", "tags": "plant oregon berries unitedstates hiking or"}, {"datetaken": "2007-08-04 12:46:54", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1075/1013646627_007e4fdfde_o.jpg", "secret": "ef61ba690f", "media": "photo", "latitude": "45.959921", "id": "1013646627", "tags": "mountain oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 12:53:05", "license": "2", "title": "Slug", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1274/1014518682_0cf4ef4cbd_o.jpg", "secret": "680fddbde8", "media": "photo", "latitude": "45.959921", "id": "1014518682", "tags": "oregon unitedstates hiking or slug"}, {"datetaken": "2007-08-04 12:58:16", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1186/1013659367_0a4bcc1372_o.jpg", "secret": "b5167a4cf1", "media": "photo", "latitude": "45.959921", "id": "1013659367", "tags": "mountain oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 12:58:19", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1200/1014527074_450bd36efc_o.jpg", "secret": "d132f4ce30", "media": "photo", "latitude": "45.959921", "id": "1014527074", "tags": "mountain oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 12:59:41", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1095/1013668147_e637b02791_o.jpg", "secret": "a7ecb8c9dc", "media": "photo", "latitude": "45.959921", "id": "1013668147", "tags": "mountain oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 13:00:04", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1175/1014537390_04c19f05a4_o.jpg", "secret": "b49be4c36a", "media": "photo", "latitude": "45.959921", "id": "1014537390", "tags": "mountain fog oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 13:01:30", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1223/1013677407_c3637a92b8_o.jpg", "secret": "8ae40b5802", "media": "photo", "latitude": "45.959921", "id": "1013677407", "tags": "plant oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 13:02:51", "license": "2", "title": "Eerie", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1256/1013680303_18d8fc16a6_o.jpg", "secret": "4dc40f5686", "media": "photo", "latitude": "45.959921", "id": "1013680303", "tags": "mountain fog oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 13:03:43", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1021/1014544954_55a80236a9_o.jpg", "secret": "33372e3853", "media": "photo", "latitude": "45.959921", "id": "1014544954", "tags": "tree water oregon forest unitedstates hiking or droplet needles"}, {"datetaken": "2007-08-04 13:10:54", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1133/1013687567_dc468be45b_o.jpg", "secret": "b5224e5f76", "media": "photo", "latitude": "45.959921", "id": "1013687567", "tags": "mountain rock oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 13:11:13", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1052/1014554906_f5660cecc7_o.jpg", "secret": "bc66c0efda", "media": "photo", "latitude": "45.959921", "id": "1014554906", "tags": "mountain rock oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 13:12:02", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1186/1013697425_53fa808879_o.jpg", "secret": "6651586cb3", "media": "photo", "latitude": "45.959921", "id": "1013697425", "tags": "oregon forest unitedstates hiking daniel or"}, {"datetaken": "2007-08-04 13:19:57", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1328/1013700321_873ae24bdc_o.jpg", "secret": "dc0a1c6006", "media": "photo", "latitude": "45.959921", "id": "1013700321", "tags": "plant oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 13:26:24", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1059/1013702881_e9f46562a8_o.jpg", "secret": "1f9afbe630", "media": "photo", "latitude": "45.959921", "id": "1013702881", "tags": "mountain fog oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 13:26:27", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1049/1013705921_8cf3288af5_o.jpg", "secret": "fdfa4b438d", "media": "photo", "latitude": "45.959921", "id": "1013705921", "tags": "mountain fog oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 13:26:33", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1090/1013709329_0874d949eb_o.jpg", "secret": "3003ab87fd", "media": "photo", "latitude": "45.959921", "id": "1013709329", "tags": "mountain fog oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 13:27:01", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1231/1013711909_587de2e757_o.jpg", "secret": "0ddeaaf391", "media": "photo", "latitude": "45.959921", "id": "1013711909", "tags": "plant flower fog oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 13:35:40", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1263/1013718381_89384ddf06_o.jpg", "secret": "151639cb1b", "media": "photo", "latitude": "45.959921", "id": "1013718381", "tags": "mountain fog oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 13:37:50", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1014/1014583114_eab02e3310_o.jpg", "secret": "5408ec2bb6", "media": "photo", "latitude": "45.959921", "id": "1014583114", "tags": "plant flower oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 13:37:56", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1404/1013722707_2be474a45e_o.jpg", "secret": "77d37529a7", "media": "photo", "latitude": "45.959921", "id": "1013722707", "tags": "plant flower oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 13:42:47", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1117/1014588524_f20c74b338_o.jpg", "secret": "3c2f2971ca", "media": "photo", "latitude": "45.959921", "id": "1014588524", "tags": "mountain fog oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 13:43:03", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1114/1014595698_23bdc8de05_o.jpg", "secret": "3222c77ae7", "media": "photo", "latitude": "45.959921", "id": "1014595698", "tags": "mountain oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 13:44:54", "license": "2", "title": "Slug on a Wall", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1282/1014599294_956a0db1fe_o.jpg", "secret": "31f5d889f0", "media": "photo", "latitude": "45.959921", "id": "1014599294", "tags": "rock oregon unitedstates or slug"}, {"datetaken": "2007-08-04 13:58:26", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1195/1014601202_5560f4507d_o.jpg", "secret": "bbcd368310", "media": "photo", "latitude": "45.959921", "id": "1014601202", "tags": "mountain fog oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 14:03:16", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1126/1014603694_aaa76e57c3_o.jpg", "secret": "6b90306153", "media": "photo", "latitude": "45.959921", "id": "1014603694", "tags": "mountain fog oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 14:03:18", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1145/1013743763_9382d298eb_o.jpg", "secret": "b5c605e7a9", "media": "photo", "latitude": "45.959921", "id": "1013743763", "tags": "mountain fog oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 14:08:47", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1405/1013746593_6bbfb5833e_o.jpg", "secret": "8652123fbd", "media": "photo", "latitude": "45.959921", "id": "1013746593", "tags": "mountain fog oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 14:08:50", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1211/1014612226_9e908fdea8_o.jpg", "secret": "6548cf21bc", "media": "photo", "latitude": "45.959921", "id": "1014612226", "tags": "mountain fog oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 14:58:38", "license": "2", "title": "Sweet and Nutty", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1107/1014614228_8945fc4a1b_o.jpg", "secret": "0543c1b243", "media": "photo", "latitude": "45.959921", "id": "1014614228", "tags": "oregon unitedstates or name humor title trailmix"}, {"datetaken": "2007-08-04 14:58:54", "license": "2", "title": "The Summit", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1214/1014616292_74b4a0aef7_o.jpg", "secret": "0ce6c9d05c", "media": "photo", "latitude": "45.959921", "id": "1014616292", "tags": "mountain fog oregon forest unitedstates hiking or summit"}, {"datetaken": "2007-08-04 15:22:16", "license": "2", "title": "Me at the summit", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1023/1013761765_9af4420a64_o.jpg", "secret": "fb606a18ec", "media": "photo", "latitude": "45.959921", "id": "1013761765", "tags": "oregon forest unitedstates hiking daniel or summit"}, {"datetaken": "2007-08-04 16:03:55", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1381/1013768677_ff1ca9103b_o.jpg", "secret": "690036f6d1", "media": "photo", "latitude": "45.959921", "id": "1013768677", "tags": "trees mountain fog oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 16:32:32", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1249/1013771763_cc24e9800d_o.jpg", "secret": "32eef9d952", "media": "photo", "latitude": "45.959921", "id": "1013771763", "tags": "mountain rock fog oregon forest unitedstates hiking or"}, {"datetaken": "2007-08-04 16:34:34", "license": "2", "title": "Daniel Lewis", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1079/1013780787_1f6acb6113_o.jpg", "secret": "e22ea5ab97", "media": "photo", "latitude": "45.959921", "id": "1013780787", "tags": "oregon forest unitedstates hiking daniel or"}, {"datetaken": "2007-08-04 17:23:05", "license": "2", "title": "Saddle Mountain", "text": "", "album_id": "72157601226364674", "longitude": "-123.693008", "url_o": "https://farm2.staticflickr.com/1209/1014651226_5471a76e23_o.jpg", "secret": "0e239355d0", "media": "photo", "latitude": "45.959921", "id": "1014651226", "tags": "mountain oregon forest unitedstates hiking or"}, {"datetaken": "2006-12-31 14:24:02", "license": "1", "title": "in search of guests", "text": "", "album_id": "72157602007678960", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1136/1382134303_30f4519d30_o.jpg", "secret": "83cbbda9f0", "media": "photo", "latitude": "0", "id": "1382134303", "tags": "eve uk decorations white plant building london window glass bay wooden pub ivy newyear rails dracena"}, {"datetaken": "2006-12-31 14:24:39", "license": "1", "title": "empty pub yard", "text": "", "album_id": "72157602007678960", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1063/1383032696_3c81c7b5f9_o.jpg", "secret": "ff539a48a3", "media": "photo", "latitude": "0", "id": "1383032696", "tags": "door eve uk blue windows red sky plants white building brick london english wall yard garden table pub empty ivy newyear patio pots benches dracena"}, {"datetaken": "2006-12-31 14:26:37", "license": "1", "title": "passing by windows", "text": "", "album_id": "72157602007678960", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1399/1383035734_70c4fa3608_o.jpg", "secret": "69b1afaf87", "media": "photo", "latitude": "0", "id": "1383035734", "tags": "christmas eve uk red orange house reflection building london window yellow shop lights newyear chimneys"}, {"datetaken": "2006-12-31 14:33:25", "license": "1", "title": "can't we take the dog?", "text": "", "album_id": "72157602007678960", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1292/1382141127_965552bcaa_o.jpg", "secret": "c12e879906", "media": "photo", "latitude": "0", "id": "1382141127", "tags": "street eve uk trees windows dog reflection london girl kid holding toddler dad arms pavement father daughter newyear jackrussell shops"}, {"datetaken": "2006-12-31 14:37:07", "license": "1", "title": "feeding the birds", "text": "", "album_id": "72157602007678960", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1024/1383040336_6e3660300e_o.jpg", "secret": "26ee25c5a5", "media": "photo", "latitude": "0", "id": "1383040336", "tags": "eve uk trees boy lake building london reed birds mom kid toddler child feeding branches mother ducks windy newyear swans shore"}, {"datetaken": "2006-12-31 14:38:40", "license": "1", "title": "as if spring were here", "text": "", "album_id": "72157602007678960", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1065/1382145155_4cf0c71a71_o.jpg", "secret": "526d3b6b75", "media": "photo", "latitude": "0", "id": "1382145155", "tags": "eve uk pink flowers windows sky white house building brick green london wall thames bush bank newyear"}, {"datetaken": "2006-12-31 14:39:38", "license": "1", "title": "roses in bloom", "text": "", "album_id": "72157602007678960", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1128/1383042876_5e3689f3e0_o.jpg", "secret": "bc2909367f", "media": "photo", "latitude": "0", "id": "1383042876", "tags": "eve uk pink flowers roses white house london window wall thames garden lily bank newyear amaryllis bloom bushes"}, {"datetaken": "2006-12-31 16:30:01", "license": "1", "title": "windy", "text": "", "album_id": "72157602007678960", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1065/1383048870_dbeb36d7cc_o.jpg", "secret": "e80390a1a4", "media": "photo", "latitude": "0", "id": "1383048870", "tags": "eve uk sky lake tree london cloudy branches windy newyear willow shore"}, {"datetaken": "2006-12-31 16:44:09", "license": "1", "title": "boats", "text": "", "album_id": "72157602007678960", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1197/1382154323_57fd072674_o.jpg", "secret": "980588387c", "media": "photo", "latitude": "0", "id": "1382154323", "tags": "eve uk trees sky plants london thames boats twilight cloudy branches bank newyear"}, {"datetaken": "2006-12-31 16:44:39", "license": "1", "title": "lonely swan", "text": "", "album_id": "72157602007678960", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1373/1382155265_8bd6dfe7c5_o.jpg", "secret": "fb1870b6da", "media": "photo", "latitude": "0", "id": "1382155265", "tags": "eve uk white london thames swan bank newyear lonely"}, {"datetaken": "2006-12-31 16:55:52", "license": "1", "title": "lights in the window", "text": "", "album_id": "72157602007678960", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1085/1382157459_ed33e03658_o.jpg", "secret": "a5f6585fd5", "media": "photo", "latitude": "0", "id": "1382157459", "tags": "christmas eve uk trees london window thames lights evening twilight pub branches bank newyear rails"}, {"datetaken": "2007-10-13 10:16:39", "license": "2", "title": "Passing Headlights", "text": "", "album_id": "72157602410720603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2144/1565939996_1b5e54bc47_o.jpg", "secret": "c4c9b2fea1", "media": "photo", "latitude": "0", "id": "1565939996", "tags": "fog"}, {"datetaken": "2007-10-13 10:19:03", "license": "2", "title": "Driving in the Fog", "text": "", "album_id": "72157602410720603", "longitude": "-122.303109", "url_o": "https://farm3.staticflickr.com/2083/1565083739_ada77a51b5_o.jpg", "secret": "9095309ecb", "media": "photo", "latitude": "47.654316", "id": "1565083739", "tags": "fog"}, {"datetaken": "2007-10-13 10:55:30", "license": "2", "title": "A Place to Sit", "text": "", "album_id": "72157602410720603", "longitude": "-122.293667", "url_o": "https://farm3.staticflickr.com/2306/1565975388_1622343b52_o.jpg", "secret": "abb5d1734b", "media": "photo", "latitude": "47.639427", "id": "1565975388", "tags": "seattle trees fog bench flowersplants arboretumwetlands"}, {"datetaken": "2007-10-13 10:58:08", "license": "2", "title": "Mushrooms", "text": "", "album_id": "72157602410720603", "longitude": "-122.296156", "url_o": "https://farm3.staticflickr.com/2330/1565092847_48a8b99b10_o.jpg", "secret": "c1bc3f81ef", "media": "photo", "latitude": "47.644545", "id": "1565092847", "tags": "seattle fog mushrooms arboretumwetlands"}, {"datetaken": "2007-10-13 11:02:43", "license": "2", "title": "Floating Leaf", "text": "", "album_id": "72157602410720603", "longitude": "-122.296156", "url_o": "https://farm3.staticflickr.com/2014/1565093813_df0ad1ffa6_o.jpg", "secret": "5c25a99896", "media": "photo", "latitude": "47.644545", "id": "1565093813", "tags": "seattle water fog leaf arboretumwetlands"}, {"datetaken": "2007-10-13 11:03:13", "license": "2", "title": "Reflected Branch", "text": "", "album_id": "72157602410720603", "longitude": "-122.296156", "url_o": "https://farm3.staticflickr.com/2116/1565981998_97eaa77a60_o.jpg", "secret": "1a8e37bb90", "media": "photo", "latitude": "47.644545", "id": "1565981998", "tags": "seattle water fog arboretumwetlands"}, {"datetaken": "2007-10-13 11:21:53", "license": "2", "title": "Autumn in the Arboretum", "text": "", "album_id": "72157602410720603", "longitude": "-122.293667", "url_o": "https://farm3.staticflickr.com/2207/1565985276_486633d5fe_o.jpg", "secret": "77941a426b", "media": "photo", "latitude": "47.639427", "id": "1565985276", "tags": "seattle trees fog bench arboretum flowersplants"}, {"datetaken": "2007-10-13 11:25:03", "license": "2", "title": "Closeup of a Branch", "text": "", "album_id": "72157602410720603", "longitude": "-122.293667", "url_o": "https://farm3.staticflickr.com/2149/1565100977_547e088f15_o.jpg", "secret": "218fc387e4", "media": "photo", "latitude": "47.639427", "id": "1565100977", "tags": "seattle fog arboretum"}, {"datetaken": "2007-10-13 11:31:23", "license": "2", "title": "What Tangled Webs we Weave", "text": "", "album_id": "72157602410720603", "longitude": "-122.293667", "url_o": "https://farm3.staticflickr.com/2125/1565102901_758680b9c1_o.jpg", "secret": "3667544629", "media": "photo", "latitude": "47.639427", "id": "1565102901", "tags": "seattle fog wildlife spiderweb arboretum"}, {"datetaken": "2007-10-13 20:04:25", "license": "2", "title": "Autumn and St. Francis", "text": "", "album_id": "72157602410720603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2232/1565943836_b33b4d9d5f_o.jpg", "secret": "7be58501f4", "media": "photo", "latitude": "0", "id": "1565943836", "tags": "autumn trees flowersplants"}, {"datetaken": "2007-10-13 20:10:37", "license": "2", "title": "Heading to the Playground", "text": "", "album_id": "72157602410720603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2311/1565948182_4ece2ccc7f_o.jpg", "secret": "d6d6c174ce", "media": "photo", "latitude": "0", "id": "1565948182", "tags": "autumn trees flowersplants"}, {"datetaken": "2007-10-13 20:15:48", "license": "2", "title": "Playground and Fall Colors", "text": "", "album_id": "72157602410720603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2412/1565952274_4437f25df7_o.jpg", "secret": "acd57d8335", "media": "photo", "latitude": "0", "id": "1565952274", "tags": "autumn trees flowersplants"}, {"datetaken": "2007-10-13 20:17:52", "license": "2", "title": "Alex and a Frisbee", "text": "", "album_id": "72157602410720603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2047/1565069545_67ae15d2e2_o.jpg", "secret": "dfd7ac1df5", "media": "photo", "latitude": "0", "id": "1565069545", "tags": "family autumn alex"}, {"datetaken": "2007-10-13 20:17:53", "license": "2", "title": "I Have a Forehand!", "text": "", "album_id": "72157602410720603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2063/1565071461_1e7e3da55f_o.jpg", "secret": "3cfb87a52e", "media": "photo", "latitude": "0", "id": "1565071461", "tags": "family autumn alex"}, {"datetaken": "2007-10-13 20:23:57", "license": "2", "title": "\"By the Power of Greyskull!\"", "text": "", "album_id": "72157602410720603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2352/1565959336_fe3abffc66_o.jpg", "secret": "58d79154ab", "media": "photo", "latitude": "0", "id": "1565959336", "tags": "family autumn trees alex flowersplants"}, {"datetaken": "2007-10-13 20:23:59", "license": "2", "title": "Wait. Maybe this is a hat.", "text": "", "album_id": "72157602410720603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2361/1565961844_3e79981755_o.jpg", "secret": "41059811fb", "media": "photo", "latitude": "0", "id": "1565961844", "tags": "family autumn trees alex flowersplants"}, {"datetaken": "2007-10-13 21:01:51", "license": "2", "title": "Wait. It's in here somewhere.", "text": "", "album_id": "72157602410720603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2208/1565963570_d67e5358b4_o.jpg", "secret": "1cbcfa4b78", "media": "photo", "latitude": "0", "id": "1565963570", "tags": "family autumn alex"}, {"datetaken": "2007-10-13 21:01:59", "license": "2", "title": "Who needs arms?", "text": "", "album_id": "72157602410720603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2154/1565965746_3d425e04f3_o.jpg", "secret": "0d811c3673", "media": "photo", "latitude": "0", "id": "1565965746", "tags": "family autumn alex"}, {"datetaken": "2007-10-13 21:03:44", "license": "2", "title": "Over There!", "text": "", "album_id": "72157602410720603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2343/1565968066_df5424fc2e_o.jpg", "secret": "8db41d6bbf", "media": "photo", "latitude": "0", "id": "1565968066", "tags": "family autumn alex"}, {"datetaken": "2007-10-13 21:03:49", "license": "2", "title": "Alex Walking", "text": "", "album_id": "72157602410720603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2290/1565085527_b33128fc8d_o.jpg", "secret": "8825085432", "media": "photo", "latitude": "0", "id": "1565085527", "tags": "family autumn alex"}, {"datetaken": "2007-10-13 21:14:03", "license": "2", "title": "Come into my Parlor", "text": "", "album_id": "72157602410720603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2078/1565972884_b04cb5ca0d_o.jpg", "secret": "92fa478c2c", "media": "photo", "latitude": "0", "id": "1565972884", "tags": "autumn spider"}, {"datetaken": "2007-10-14 16:00:31", "license": "4", "title": "Glasswing Butterfly", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2341/1585670516_c2415cd70d_o.jpg", "secret": "ed4195fadb", "media": "photo", "latitude": "51.478500", "id": "1585670516", "tags": "family orange plants brown plant flower macro slr london animal closeup butterfly insect wildlife wing olympus clear indoors reflective nectar digitalcamera seethrough transparent zuiko digitalslr arthropod butterflyhouse e510 glasswing 35mmmacro zuikodigital olympuse510"}, {"datetaken": "2007-10-14 16:01:09", "license": "4", "title": "Tiger Longwing Butterfly", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2161/1585676998_a7b65aac0a_o.jpg", "secret": "689b2bf9c1", "media": "photo", "latitude": "51.478500", "id": "1585676998", "tags": "family orange plants white plant black flower macro slr london animal closeup butterfly insect wildlife wing olympus indoors nectar digitalcamera zuiko digitalslr arthropod butterflyhouse e510 longwing tigerlongwing 35mmmacro zuikodigital olympuse510"}, {"datetaken": "2007-10-14 16:01:34", "license": "4", "title": "Crimson Patched Longwing Butterfly", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2382/1584795991_2492975c5b_o.jpg", "secret": "59343c229b", "media": "photo", "latitude": "51.478500", "id": "1584795991", "tags": "family pink black macro slr london animal yellow closeup butterfly insect leaf wildlife wing olympus indoors digitalcamera zuiko digitalslr arthropod butterflyhouse e510 longwing 35mmmacro zuikodigital crimsonpatchedlongwing olympuse510"}, {"datetaken": "2007-10-14 16:02:08", "license": "4", "title": "Common Rose Butterfly", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2252/1585682498_119d994099_o.jpg", "secret": "d134a37bc3", "media": "photo", "latitude": "51.478500", "id": "1585682498", "tags": "family red black macro slr london animal closeup butterfly insect leaf wildlife wing olympus indoors nectar digitalcamera zuiko digitalslr swallowtail arthropod commonrose butterflyhouse e510 35mmmacro zuikodigital olympuse510 redbody"}, {"datetaken": "2007-10-14 16:04:06", "license": "4", "title": "Tree Nymph Butterfly", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2337/1584780549_a6322184fe_o.jpg", "secret": "06b7783fa0", "media": "photo", "latitude": "51.478500", "id": "1584780549", "tags": "family plants white plant black flower macro slr london animal closeup butterfly insect wildlife wing olympus indoors nectar digitalcamera zuiko digitalslr arthropod treenymph butterflyhouse e510 35mmmacro zuikodigital olympuse510"}, {"datetaken": "2007-10-14 16:05:41", "license": "4", "title": "Clipper Butterfly", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2050/1585685158_025e62adb3_o.jpg", "secret": "d82b088cac", "media": "photo", "latitude": "51.478500", "id": "1585685158", "tags": "family blue brown white macro slr london animal closeup butterfly insect leaf wildlife wing olympus indoors digitalcamera zuiko digitalslr clipper arthropod butterflyhouse e510 35mmmacro zuikodigital olympuse510"}, {"datetaken": "2007-10-14 16:06:40", "license": "4", "title": "Leopard Lacewing Butterfly", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2298/1584802993_2276689809_o.jpg", "secret": "fce53a7bc7", "media": "photo", "latitude": "51.478500", "id": "1584802993", "tags": "family orange plants white plant black flower macro slr london animal closeup butterfly insect wildlife wing olympus indoors digitalcamera zuiko digitalslr lacewing arthropod butterflyhouse e510 leopardlacewing 35mmmacro zuikodigital olympuse510"}, {"datetaken": "2007-10-14 16:07:15", "license": "4", "title": "Blue and White Longwing Butterfly", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2106/1585692158_3cfb724d6e_o.jpg", "secret": "7278d5bdd4", "media": "photo", "latitude": "51.478500", "id": "1585692158", "tags": "family blue orange plants white plant flower macro slr london animal closeup butterfly insect wildlife wing olympus indoors nectar digitalcamera zuiko digitalslr arthropod butterflyhouse e510 longwing blueandwhitelongwing 35mmmacro zuikodigital olympuse510"}, {"datetaken": "2007-10-14 16:07:42", "license": "4", "title": "Chrysalises", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2276/1585706356_340782fbc1_o.jpg", "secret": "e6d57c3509", "media": "photo", "latitude": "51.478500", "id": "1585706356", "tags": "family green slr london animal yellow butterfly insect wildlife olympus indoors rows digitalcamera hatch chrysalis zuiko pupa digitalslr pupae cocoon emerge arthropod cocoons butterflyhouse e510 chrysalises 35mmmacro zuikodigital olympuse510"}, {"datetaken": "2007-10-14 16:09:58", "license": "4", "title": "Tree Nymph Butterfly", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2014/1585667416_af9efceb65_o.jpg", "secret": "41a839a39a", "media": "photo", "latitude": "51.478500", "id": "1585667416", "tags": "family plants white plant black flower macro slr london animal closeup butterfly insect wildlife wing olympus indoors nectar digitalcamera zuiko digitalslr arthropod treenymph butterflyhouse e510 paperkitebutterfly treenymphbutterfly 35mmmacro zuikodigital olympuse510"}, {"datetaken": "2007-10-14 16:11:40", "license": "4", "title": "Owl Butterfly", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2236/1584811381_85e0470ac3_o.jpg", "secret": "bb536e9662", "media": "photo", "latitude": "51.478500", "id": "1584811381", "tags": "family brown white black macro slr london animal closeup butterfly dark insect wildlife wing olympus indoors camouflage owlbutterfly digitalcamera zuiko digitalslr arthropod butterflyhouse e510 35mmmacro zuikodigital falseeye olympuse510"}, {"datetaken": "2007-10-14 16:12:28", "license": "4", "title": "Leopard Lacewing Butterfly", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2017/1585690080_aaebdfb7fd_o.jpg", "secret": "48bd14038c", "media": "photo", "latitude": "51.478500", "id": "1585690080", "tags": "family orange plants white plant black flower macro slr london animal closeup butterfly insect wildlife wing olympus indoors nectar digitalcamera zuiko digitalslr lacewing arthropod butterflyhouse e510 leopardlacewing 35mmmacro zuikodigital olympuse510"}, {"datetaken": "2007-10-14 16:16:21", "license": "4", "title": "Heave Ho!", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2155/1584814181_dc78c80a08_o.jpg", "secret": "9eaef642af", "media": "photo", "latitude": "51.478500", "id": "1584814181", "tags": "family red macro green slr london animal closeup insect leaf wildlife ant olympus rope indoors digitalcamera zuiko digitalslr carry carrying arthropod butterflyhouse e510 35mmmacro zuikodigital leafcutting leafcuttingant olympuse510"}, {"datetaken": "2007-10-14 16:16:44", "license": "4", "title": "Heave Ho!", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2185/1585700956_8fcebb7777_o.jpg", "secret": "d97b294727", "media": "photo", "latitude": "51.478500", "id": "1585700956", "tags": "family red macro green slr london animal closeup insect leaf wildlife ant olympus rope indoors digitalcamera zuiko digitalslr carry carrying arthropod butterflyhouse e510 35mmmacro zuikodigital leafcutting leafcuttingant olympuse510"}, {"datetaken": "2007-10-14 16:17:13", "license": "4", "title": "Heave Ho!", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2112/1584818205_df5398e533_o.jpg", "secret": "1a10bcadd5", "media": "photo", "latitude": "51.478500", "id": "1584818205", "tags": "family red macro green slr london animal closeup insect leaf wildlife ant olympus rope indoors digitalcamera zuiko digitalslr carry carrying arthropod butterflyhouse e510 35mmmacro zuikodigital leafcutting leafcuttingant olympuse510"}, {"datetaken": "2007-10-14 16:23:57", "license": "4", "title": "Tiger Longwing Butterfly", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2004/1585674474_294a2f9ea1_o.jpg", "secret": "9f6b935730", "media": "photo", "latitude": "51.478500", "id": "1585674474", "tags": "family orange plants white plant black flower macro slr london animal closeup butterfly insect wildlife wing olympus indoors nectar digitalcamera zuiko digitalslr arthropod butterflyhouse e510 longwing tigerlongwing 35mmmacro zuikodigital olympuse510"}, {"datetaken": "2007-10-14 16:25:38", "license": "4", "title": "Flowers", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2055/1584772817_34dfdd3222_o.jpg", "secret": "b4d580e715", "media": "photo", "latitude": "51.478500", "id": "1584772817", "tags": "family blue plants plant flower macro slr london closeup petals blossom olympus indoors digitalcamera zuiko digitalslr butterflyhouse e510 35mmmacro zuikodigital olympuse510"}, {"datetaken": "2007-10-14 16:27:35", "license": "4", "title": "Flowers", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2376/1585659254_5efce240db_o.jpg", "secret": "7d1717dd6d", "media": "photo", "latitude": "51.478500", "id": "1585659254", "tags": "family pink plants plant flower macro slr london closeup petals blossom olympus indoors digitalcamera zuiko digitalslr butterflyhouse e510 35mmmacro zuikodigital olympuse510"}, {"datetaken": "2007-10-14 16:28:48", "license": "4", "title": "Hibiscus Wonder", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2219/1584778275_1824370936_o.jpg", "secret": "3ea0550c25", "media": "photo", "latitude": "51.478500", "id": "1584778275", "tags": "family pink plants white plant flower macro slr london closeup dark petals blossom olympus indoors exotic digitalcamera zuiko digitalslr butterflyhouse e510 35mmmacro zuikodigital olympuse510 hibiscuswonder"}, {"datetaken": "2007-10-14 16:40:24", "license": "4", "title": "Amethyst Starling", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2228/1585708342_3e7cd427a5_o.jpg", "secret": "f10697ddd3", "media": "photo", "latitude": "51.478500", "id": "1585708342", "tags": "family brown white slr bird london animal dark wildlife starling olympus indoors digitalcamera zuiko digitalslr butterflyhouse e510 40150mm zuikodigital amethyststarling olympuse510"}, {"datetaken": "2007-10-14 16:42:01", "license": "4", "title": "Nesting Zebra Finches", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2211/1585711512_eccdf33a89_o.jpg", "secret": "d5e4d07c9e", "media": "photo", "latitude": "51.478500", "id": "1585711512", "tags": "family slr bird london animal nest wildlife olympus indoors finch digitalcamera twigs zuiko digitalslr cosy nesting zebrafinch butterflyhouse e510 40150mm zuikodigital olympuse510"}, {"datetaken": "2007-10-14 16:43:19", "license": "4", "title": "Nesting Zebra Finches", "text": "", "album_id": "72157602444903586", "longitude": "-0.313620", "url_o": "https://farm3.staticflickr.com/2231/1584828743_4ba65bf001_o.jpg", "secret": "9c8806fe64", "media": "photo", "latitude": "51.478500", "id": "1584828743", "tags": "family slr bird london animal nest wildlife olympus indoors finch digitalcamera twigs zuiko digitalslr cosy nesting zebrafinch butterflyhouse e510 40150mm zuikodigital olympuse510"}, {"datetaken": "2005-04-11 12:59:38", "license": "4", "title": "Little Waterfall", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1370/1428261043_6e63ffbb8e_o.jpg", "secret": "1ef44d3a82", "media": "photo", "latitude": "0", "id": "1428261043", "tags": "lake nature water waterfall foliage berrycollege sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2005-04-11 13:05:26", "license": "4", "title": "Berry College", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1124/1428264193_2f326ecb27_o.jpg", "secret": "40dc824aa7", "media": "photo", "latitude": "0", "id": "1428264193", "tags": "lake nature water foliage berrycollege sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2005-04-11 13:06:01", "license": "4", "title": "Stone Foot Bridge", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1393/1428267959_dd63bed110_o.jpg", "secret": "00e50d0e56", "media": "photo", "latitude": "0", "id": "1428267959", "tags": "bridge nature water stone foliage berrycollege sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2005-04-11 13:12:21", "license": "4", "title": "Weird Roots", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2267/1703686290_cb966b661c_o.jpg", "secret": "38c0804e14", "media": "photo", "latitude": "0", "id": "1703686290", "tags": "trees plants college nature creek georgia stream roots trails hike foliage agriculture berrycollege marthaberry sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2005-04-11 13:14:16", "license": "4", "title": "Weird Roots", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2213/1702842977_c191226cbb_o.jpg", "secret": "17620e6a9b", "media": "photo", "latitude": "0", "id": "1702842977", "tags": "trees plants college nature creek georgia stream roots trails hike foliage agriculture berrycollege marthaberry sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2005-04-11 13:15:59", "license": "4", "title": "Water Fall @ Berry College", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2270/1703715428_65a4ecbc9d_o.jpg", "secret": "673e2a3c6a", "media": "photo", "latitude": "0", "id": "1703715428", "tags": "trees plants college nature creek georgia waterfall stream trails hike foliage agriculture berrycollege marthaberry sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2005-04-11 13:16:25", "license": "4", "title": "Water Fall @ Berry College", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2290/1703724388_1386440c06_o.jpg", "secret": "541f30e08c", "media": "photo", "latitude": "0", "id": "1703724388", "tags": "trees fall college nature water creek georgia stream trails hike foliage mavica agriculture berrycollege mvccd500 marthaberry \u00a9melissapadilla romepolkcountyga plantscascatawaterfallacquawaterrocciaroccerockrocksriverfiumeruscellostreamsony"}, {"datetaken": "2005-04-11 13:20:41", "license": "0", "title": "Lost In Thought", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2397/1703728122_9a56eacd75_o.jpg", "secret": "f3bb465a12", "media": "photo", "latitude": "0", "id": "1703728122", "tags": "trees plants lake man grass fauna bench georgia lost lago person rocks thought thinking albero acqua bianco radici ragazzo panchina berrycollege desaturazione marthaberry sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2005-04-11 13:33:33", "license": "4", "title": "Mill @ Berry College", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2290/1703734026_e4b577f947_o.jpg", "secret": "85ba844f3b", "media": "photo", "latitude": "0", "id": "1703734026", "tags": "trees plants mill college nature alberi creek georgia stream trails hike foliage agriculture mulino legno bosco ruota casetta berrycollege marthaberry sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2005-04-11 13:38:53", "license": "4", "title": "Mill Hub", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2124/1702886809_c17d219894_o.jpg", "secret": "fbd5ec64d4", "media": "photo", "latitude": "0", "id": "1702886809", "tags": "trees plants college nature creek georgia stream trails hike foliage agriculture berrycollege marthaberry sonymavicamvccd500 \u00a9melissapadilla millhub romepolkcountyga"}, {"datetaken": "2005-04-11 13:41:58", "license": "4", "title": "Creek @ Berry College", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2148/1702899529_a7433570df_o.jpg", "secret": "3fa5338291", "media": "photo", "latitude": "0", "id": "1702899529", "tags": "trees plants college nature creek georgia stream trails hike foliage agriculture berrycollege marthaberry sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2005-04-11 13:42:28", "license": "4", "title": "Old Mill", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1186/1428270833_a9d9e649c1_o.jpg", "secret": "4688d34bb4", "media": "photo", "latitude": "0", "id": "1428270833", "tags": "mill nature water foliage waterwheel berrycollege isawyoufirst sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2005-04-11 13:43:24", "license": "4", "title": "Old Mill", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1235/1428274095_8fe295a7a8_o.jpg", "secret": "64dacd336f", "media": "photo", "latitude": "0", "id": "1428274095", "tags": "mill nature water foliage berrycollege sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2005-04-11 13:44:05", "license": "4", "title": "Nature & Mill @ Berry College", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2190/1703765300_1d4af14085_o.jpg", "secret": "ca6c057e23", "media": "photo", "latitude": "0", "id": "1703765300", "tags": "trees plants mill college nature creek georgia stream trails hike foliage agriculture berrycollege marthaberry sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2005-04-11 13:56:25", "license": "4", "title": "Creek @ Berry College", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2035/1702927435_da35b7a4c4_o.jpg", "secret": "f17709801b", "media": "photo", "latitude": "0", "id": "1702927435", "tags": "trees plants college nature creek georgia stream trails hike foliage agriculture berrycollege marthaberry sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2005-04-11 13:56:25", "license": "4", "title": "Berry College Nature", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1024/1428226769_7f49e41eff_o.jpg", "secret": "248866ae81", "media": "photo", "latitude": "0", "id": "1428226769", "tags": "trees reflection nature rocks stream foliage ripples berrycollege sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2005-04-11 13:57:20", "license": "4", "title": "Berry College Nature", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1376/1428231113_71de7a1027_o.jpg", "secret": "e8dc1ab21f", "media": "photo", "latitude": "0", "id": "1428231113", "tags": "trees reflection nature rocks stream foliage ripples berrycollege sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2005-04-11 13:57:55", "license": "4", "title": "Reflectons", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1035/1428248503_e9bbb0d0f7_o.jpg", "secret": "7f95502a35", "media": "photo", "latitude": "0", "id": "1428248503", "tags": "reflection tree nature water stream ripples berrycollege sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2005-04-11 13:58:16", "license": "4", "title": "Rock & Water", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1182/1429129830_3988960740_o.jpg", "secret": "cdb674fc0b", "media": "photo", "latitude": "0", "id": "1429129830", "tags": "nature water rock stream refletion berrycollege sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2005-04-11 14:01:13", "license": "4", "title": "Stone Bridge", "text": "", "album_id": "72157602649605030", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1297/1429133190_9e69a7d14a_o.jpg", "secret": "0ba4383464", "media": "photo", "latitude": "0", "id": "1429133190", "tags": "bridge mill nature water stone waterfall stream berrycollege sonymavicamvccd500 \u00a9melissapadilla romepolkcountyga"}, {"datetaken": "2007-10-28 00:08:59", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2199/1795598450_1e864f6a10_o.jpg", "secret": "dab340ba5e", "media": "photo", "latitude": "0", "id": "1795598450", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:09:12", "license": "3", "title": "View from the porch", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2401/1794758489_a75af0fe73_o.jpg", "secret": "a65c7d88e0", "media": "photo", "latitude": "0", "id": "1794758489", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:10:23", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2096/1794764933_366d3de6d6_o.jpg", "secret": "b4574f510b", "media": "photo", "latitude": "0", "id": "1794764933", "tags": "trees fall leaves northampton autmun"}, {"datetaken": "2007-10-28 00:11:32", "license": "3", "title": "E pluribus unum", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2126/1794765075_3524fba999_o.jpg", "secret": "3ba94b27c9", "media": "photo", "latitude": "0", "id": "1794765075", "tags": "trees macro fall leaves northampton autmun"}, {"datetaken": "2007-10-28 00:11:44", "license": "3", "title": "my driveway", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2095/1795604838_bd6875f91c_o.jpg", "secret": "34400ced55", "media": "photo", "latitude": "0", "id": "1795604838", "tags": "trees fall leaves northampton autmun"}, {"datetaken": "2007-10-28 00:16:08", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2389/1794758539_eac102eaa1_o.jpg", "secret": "a7f96fd4c4", "media": "photo", "latitude": "0", "id": "1794758539", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:24:07", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2339/1794758575_c1afe310ba_o.jpg", "secret": "7118409d6b", "media": "photo", "latitude": "0", "id": "1794758575", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:24:20", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2363/1794758663_f0da6b589e_o.jpg", "secret": "e429f25914", "media": "photo", "latitude": "0", "id": "1794758663", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:24:47", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2090/1795598742_4b3509ac19_o.jpg", "secret": "9172a13e42", "media": "photo", "latitude": "0", "id": "1795598742", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:25:30", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2037/1794758813_aaba164793_o.jpg", "secret": "b6a8be679f", "media": "photo", "latitude": "0", "id": "1794758813", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:34:42", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2078/1794758851_0379c10279_o.jpg", "secret": "1d61e19bdd", "media": "photo", "latitude": "0", "id": "1794758851", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:35:18", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2362/1795598966_312aee6ede_o.jpg", "secret": "00f0c6e37c", "media": "photo", "latitude": "0", "id": "1795598966", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:36:55", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2176/1794759065_f00ebfe699_o.jpg", "secret": "d6d2ec1ab1", "media": "photo", "latitude": "0", "id": "1794759065", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:38:15", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2026/1794759255_25a0bb7a22_o.jpg", "secret": "b6dae227e5", "media": "photo", "latitude": "0", "id": "1794759255", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:38:52", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2130/1795599208_f5481797ef_o.jpg", "secret": "20bb6ab987", "media": "photo", "latitude": "0", "id": "1795599208", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:39:04", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2042/1795599258_c0036f2e74_o.jpg", "secret": "745b9ac652", "media": "photo", "latitude": "0", "id": "1795599258", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:39:14", "license": "3", "title": "orange is my favorite color", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2076/1794759421_42dfb21c62_o.jpg", "secret": "edb85e687c", "media": "photo", "latitude": "0", "id": "1794759421", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:46:50", "license": "3", "title": "Man down", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2315/1794759513_db8c3fa9bf_o.jpg", "secret": "ef636938e0", "media": "photo", "latitude": "0", "id": "1794759513", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:48:13", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2301/1794759581_eff6dd9058_o.jpg", "secret": "1c04ecd958", "media": "photo", "latitude": "0", "id": "1794759581", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:52:11", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2253/1795599532_5c9406be28_o.jpg", "secret": "f6e9e038f1", "media": "photo", "latitude": "0", "id": "1795599532", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:56:19", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2018/1795599616_cbf76abadb_o.jpg", "secret": "298e71a714", "media": "photo", "latitude": "0", "id": "1795599616", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 00:56:58", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2222/1795599674_deb7a54271_o.jpg", "secret": "19863a8b59", "media": "photo", "latitude": "0", "id": "1795599674", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 01:07:29", "license": "3", "title": "sorry lady", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2027/1795599732_a73100c040_o.jpg", "secret": "cca1db0ff7", "media": "photo", "latitude": "0", "id": "1795599732", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 01:37:32", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2294/1795599794_7fc9f88264_o.jpg", "secret": "ec42c8bcf6", "media": "photo", "latitude": "0", "id": "1795599794", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 01:37:45", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2212/1794759981_c81af58397_o.jpg", "secret": "cd42cf3849", "media": "photo", "latitude": "0", "id": "1794759981", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 02:11:47", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2388/1795599950_3fc8d306b2_o.jpg", "secret": "a4e0770f93", "media": "photo", "latitude": "0", "id": "1795599950", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 02:11:55", "license": "3", "title": "up above my head", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2381/1794760125_c5c1246bc7_o.jpg", "secret": "3c494d2609", "media": "photo", "latitude": "0", "id": "1794760125", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 02:47:35", "license": "3", "title": "", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2141/1795600058_ee65cd89b6_o.jpg", "secret": "48ca2a048e", "media": "photo", "latitude": "0", "id": "1795600058", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 02:48:09", "license": "3", "title": "I like gnarley trees", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2385/1795600118_25f5347328_o.jpg", "secret": "a6ac0671c6", "media": "photo", "latitude": "0", "id": "1795600118", "tags": "autumn trees fall leaves northampton hadley biketrail newengalnd"}, {"datetaken": "2007-10-28 05:24:58", "license": "3", "title": "Same view from the kitchen window", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2205/1795587808_c4988c49bf_o.jpg", "secret": "d7a4a57637", "media": "photo", "latitude": "0", "id": "1795587808", "tags": "autumn trees fall northampton foliage hadley"}, {"datetaken": "2007-10-28 05:25:26", "license": "3", "title": "My kitchen window", "text": "", "album_id": "72157602788961834", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2093/1794747777_cacb4c2838_o.jpg", "secret": "2c0da916e4", "media": "photo", "latitude": "0", "id": "1794747777", "tags": "autumn trees fall northampton foliage hadley"}, {"datetaken": "2007-11-04 12:47:51", "license": "3", "title": "\u79cb\u8272", "text": "", "album_id": "72157603248353977", "longitude": "139.689993", "url_o": "https://farm3.staticflickr.com/2343/2049346315_87081ca169_o.jpg", "secret": "b67c4ea497", "media": "photo", "latitude": "35.562351", "id": "2049346315", "tags": "red plants japan geotagged tokyo leaf branch bokeh \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s geo:lon=139689993 voigtl\u00e4ndernokton35mmf12 geo:lat=35562351"}, {"datetaken": "2007-11-04 12:50:57", "license": "3", "title": "\u5c0f\u3055\u3044\u82b1", "text": "", "album_id": "72157603248353977", "longitude": "139.690655", "url_o": "https://farm3.staticflickr.com/2322/2050131908_8881a87ca3_o.jpg", "secret": "2918e8949d", "media": "photo", "latitude": "35.562692", "id": "2050131908", "tags": "flowers orange plants green japan geotagged tokyo bokeh \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35562692 geo:lon=139690655"}, {"datetaken": "2007-11-04 12:51:14", "license": "3", "title": "\u5c0f\u3055\u3044\u661f", "text": "", "album_id": "72157603248353977", "longitude": "139.690655", "url_o": "https://farm3.staticflickr.com/2297/2049346623_caa0da06a1_o.jpg", "secret": "e3e7e1ac14", "media": "photo", "latitude": "35.562713", "id": "2049346623", "tags": "flowers orange plants green japan geotagged tokyo bokeh \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lon=139690655 geo:lat=35562713"}, {"datetaken": "2007-11-04 12:56:15", "license": "3", "title": "am pm", "text": "", "album_id": "72157603248353977", "longitude": "139.691304", "url_o": "https://farm3.staticflickr.com/2058/2050132256_582fe1e417_o.jpg", "secret": "9b36bcda45", "media": "photo", "latitude": "35.562919", "id": "2050132256", "tags": "epsonrd1s voigtl\u00e4ndernokton35mmf12 japan tokyo \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 writing sign \u30b3\u30f3\u30d3\u4e8c shop japanese japanesepersons bicycle motorcycle geo:lat=35562919 geo:lon=139691304 geotagged"}, {"datetaken": "2007-11-04 12:58:52", "license": "3", "title": "\u9306", "text": "", "album_id": "72157603248353977", "longitude": "139.692267", "url_o": "https://farm3.staticflickr.com/2036/2050132442_9967b57f8b_o.jpg", "secret": "3e14e9c8bd", "media": "photo", "latitude": "35.562545", "id": "2050132442", "tags": "sign japan writing geotagged tokyo bokeh rusty \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35562545 geo:lon=139692267"}, {"datetaken": "2007-11-04 13:01:12", "license": "3", "title": "For the crows", "text": "", "album_id": "72157603248353977", "longitude": "139.692916", "url_o": "https://farm3.staticflickr.com/2045/2051915159_4e091d7fc0_o.jpg", "secret": "e73117b30f", "media": "photo", "latitude": "35.562528", "id": "2051915159", "tags": "sign japan writing geotagged tokyo bokeh \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35562528 geo:lon=139692916"}, {"datetaken": "2007-11-04 13:02:58", "license": "3", "title": "\u96fb\u5b50", "text": "", "album_id": "72157603248353977", "longitude": "139.693211", "url_o": "https://farm3.staticflickr.com/2067/2052702362_ac6388812e_o.jpg", "secret": "9d1bbbf905", "media": "photo", "latitude": "35.562281", "id": "2052702362", "tags": "japan geotagged tokyo rusty \u65e5\u672c vendingmachines \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s geo:lon=139693211 voigtl\u00e4ndernokton35mmf12 geo:lat=35562281"}, {"datetaken": "2007-11-04 13:06:02", "license": "3", "title": "\u72af\u4eba", "text": "", "album_id": "72157603248353977", "longitude": "139.693184", "url_o": "https://farm3.staticflickr.com/2135/2051915631_ab1f6252d9_o.jpg", "secret": "503f18bb14", "media": "photo", "latitude": "35.562199", "id": "2051915631", "tags": "plants green sign japan writing geotagged tokyo leaf branch \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35562199 geo:lon=139693184"}, {"datetaken": "2007-11-04 13:08:36", "license": "3", "title": "\u5e97", "text": "", "album_id": "72157603248353977", "longitude": "139.693501", "url_o": "https://farm3.staticflickr.com/2192/2051915903_2e52cd5377_o.jpg", "secret": "554139d2ca", "media": "photo", "latitude": "35.562044", "id": "2051915903", "tags": "door plants sign japan shop writing geotagged restaurant tokyo \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35562044 geo:lon=139693501"}, {"datetaken": "2007-11-04 13:12:15", "license": "3", "title": "\u795e\u793e", "text": "", "album_id": "72157603248353977", "longitude": "139.694625", "url_o": "https://farm3.staticflickr.com/2367/2052703096_da8f01156a_o.jpg", "secret": "134fbaa964", "media": "photo", "latitude": "35.562316", "id": "2052703096", "tags": "door plants building tree japan geotagged tokyo \u65e5\u672c \u6771\u4eac \u795e\u793e housebuilding \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35562316 geo:lon=139694625"}, {"datetaken": "2007-11-04 13:31:03", "license": "3", "title": "Growing up", "text": "", "album_id": "72157603248353977", "longitude": "139.694155", "url_o": "https://farm3.staticflickr.com/2360/2065824736_2779f47a38_o.jpg", "secret": "841eba77be", "media": "photo", "latitude": "35.566628", "id": "2065824736", "tags": "plants green japan geotagged tokyo leaf branch bokeh \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35566628 geo:lon=139694155"}, {"datetaken": "2007-11-04 13:37:09", "license": "3", "title": "Zero Point", "text": "", "album_id": "72157603248353977", "longitude": "139.694951", "url_o": "https://farm3.staticflickr.com/2285/2065825004_1f3c27ff74_o.jpg", "secret": "e87c5f92fa", "media": "photo", "latitude": "35.566232", "id": "2065825004", "tags": "japan geotagged tokyo bokeh \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35566232 geo:lon=139694951"}, {"datetaken": "2007-11-04 13:38:41", "license": "3", "title": "\u30a2\u30eb\u30df", "text": "", "album_id": "72157603248353977", "longitude": "139.695448", "url_o": "https://farm3.staticflickr.com/2189/2065825438_6c73a51af8_o.jpg", "secret": "2cd3e366f0", "media": "photo", "latitude": "35.565889", "id": "2065825438", "tags": "japan writing geotagged tokyo rusty \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35565889 geo:lon=139695448"}, {"datetaken": "2007-11-04 13:41:20", "license": "3", "title": "\u9752\u3044\u7a7a", "text": "", "album_id": "72157603248353977", "longitude": "139.695765", "url_o": "https://farm3.staticflickr.com/2381/2065825956_263ef682c4_o.jpg", "secret": "6dc45b58cc", "media": "photo", "latitude": "35.565417", "id": "2065825956", "tags": "japan geotagged tokyo wires electricity \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s geo:lat=35565417 geo:lon=139695765 voigtl\u00e4ndernokton35mmf12"}, {"datetaken": "2007-11-04 13:44:27", "license": "3", "title": "Tommy is the Boss", "text": "", "album_id": "72157603248353977", "longitude": "139.696433", "url_o": "https://farm3.staticflickr.com/2379/2065028731_029caac732_o.jpg", "secret": "d242f905d2", "media": "photo", "latitude": "35.565375", "id": "2065028731", "tags": "building cars bicycle japan ads poster geotagged japanese tokyo \u65e5\u672c \u6771\u4eac housebuilding \u5927\u7530\u533a \u77e2\u53e3 japanesepersons epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35565375 geo:lon=139696433"}, {"datetaken": "2007-11-04 13:46:58", "license": "3", "title": "Two Darlings", "text": "", "album_id": "72157603248353977", "longitude": "139.695855", "url_o": "https://farm3.staticflickr.com/2188/2068900614_0eb5f5cbfb_o.jpg", "secret": "7e3c6bd4fe", "media": "photo", "latitude": "35.566185", "id": "2068900614", "tags": "flowers plants green yellow japan geotagged tokyo bokeh \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35566185 geo:lon=139695855"}, {"datetaken": "2007-11-04 13:47:43", "license": "3", "title": "A Swirl", "text": "", "album_id": "72157603248353977", "longitude": "139.695627", "url_o": "https://farm3.staticflickr.com/2366/2068104811_81916de45d_o.jpg", "secret": "f318766b93", "media": "photo", "latitude": "35.566333", "id": "2068104811", "tags": "flowers plants green yellow japan geotagged tokyo bokeh \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35566333 geo:lon=139695627"}, {"datetaken": "2007-11-04 13:49:42", "license": "3", "title": "Orange", "text": "", "album_id": "72157603248353977", "longitude": "139.695411", "url_o": "https://farm3.staticflickr.com/2297/2068901202_e86a27d81a_o.jpg", "secret": "2c2014945d", "media": "photo", "latitude": "35.566507", "id": "2068901202", "tags": "flowers orange plants green japan geotagged tokyo bokeh \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35566507 geo:lon=139695411"}, {"datetaken": "2007-11-04 13:50:10", "license": "3", "title": "\u9031\u672b\u3060\uff01", "text": "", "album_id": "72157603248353977", "longitude": "139.694869", "url_o": "https://farm3.staticflickr.com/2269/2068105369_235e44325e_o.jpg", "secret": "017f6bcfb5", "media": "photo", "latitude": "35.566897", "id": "2068105369", "tags": "building green japan geotagged tokyo rusty laundry \u65e5\u672c \u6771\u4eac housebuilding \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s geo:lon=139694869 voigtl\u00e4ndernokton35mmf12 geo:lat=35566897"}, {"datetaken": "2007-11-04 13:53:18", "license": "3", "title": "\u30e9\u30fc\u30e1\u30f3\u30b7\u30e7\u30c3\u30d7", "text": "", "album_id": "72157603248353977", "longitude": "139.694442", "url_o": "https://farm3.staticflickr.com/2126/2068105621_cfd85a288b_o.jpg", "secret": "3177dcfc48", "media": "photo", "latitude": "35.567186", "id": "2068105621", "tags": "door sign japan shop writing geotagged tokyo \u65e5\u672c vendingmachines \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35567186 geo:lon=139694442"}, {"datetaken": "2007-11-04 13:54:36", "license": "3", "title": "The Wall of truth", "text": "", "album_id": "72157603248353977", "longitude": "139.694327", "url_o": "https://farm3.staticflickr.com/2232/2072995785_e515c5c467_o.jpg", "secret": "1d4efb661e", "media": "photo", "latitude": "35.567257", "id": "2072995785", "tags": "japan wall writing poster geotagged graffiti tokyo \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35567257 geo:lon=139694327"}, {"datetaken": "2007-11-04 14:14:38", "license": "3", "title": "Never moved", "text": "", "album_id": "72157603248353977", "longitude": "139.690261", "url_o": "https://farm3.staticflickr.com/2292/2073787996_35a3a2f9a5_o.jpg", "secret": "daf9b7c675", "media": "photo", "latitude": "35.568747", "id": "2073787996", "tags": "japan geotagged tokyo bokeh motorcycle \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35568747 geo:lon=139690261"}, {"datetaken": "2007-11-04 14:16:50", "license": "3", "title": "Time has teeth", "text": "", "album_id": "72157603248353977", "longitude": "139.691214", "url_o": "https://farm3.staticflickr.com/2106/2072997667_d5f56fbe47_o.jpg", "secret": "cc976ff70e", "media": "photo", "latitude": "35.568204", "id": "2072997667", "tags": "building window japan shop geotagged tokyo rusty \u65e5\u672c \u6771\u4eac housebuilding \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35568204 geo:lon=139691214"}, {"datetaken": "2007-11-04 14:17:09", "license": "3", "title": "Green is the backyard", "text": "", "album_id": "72157603248353977", "longitude": "139.691350", "url_o": "https://farm3.staticflickr.com/2412/2073790330_65e4d5555c_o.jpg", "secret": "b91b029ecd", "media": "photo", "latitude": "35.567754", "id": "2073790330", "tags": "flowers plants green yellow japan geotagged tokyo bokeh \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35567754 geo:lon=13969135"}, {"datetaken": "2007-11-04 14:31:45", "license": "3", "title": "Wind and Weather", "text": "", "album_id": "72157603248353977", "longitude": "139.692804", "url_o": "https://farm3.staticflickr.com/2034/2072999519_448e417e70_o.jpg", "secret": "cb15161067", "media": "photo", "latitude": "35.566084", "id": "2072999519", "tags": "building sign japan shop writing geotagged restaurant tokyo bokeh rusty wires electricity \u65e5\u672c \u6771\u4eac housebuilding \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s geo:lat=35566084 voigtl\u00e4ndernokton35mmf12 geo:lon=139692804"}, {"datetaken": "2007-11-04 14:34:10", "license": "3", "title": "\u795e\u793e", "text": "", "album_id": "72157603248353977", "longitude": "139.692994", "url_o": "https://farm3.staticflickr.com/2033/2076097248_9a8648557d_o.jpg", "secret": "63e2e5e73a", "media": "photo", "latitude": "35.564666", "id": "2076097248", "tags": "japan writing geotagged tokyo \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s geo:lon=139692994 voigtl\u00e4ndernokton35mmf12 geo:lat=35564666"}, {"datetaken": "2007-11-04 14:34:32", "license": "3", "title": "\u7f36", "text": "", "album_id": "72157603248353977", "longitude": "139.692991", "url_o": "https://farm3.staticflickr.com/2124/2076097446_6318f5c424_o.jpg", "secret": "68c918c416", "media": "photo", "latitude": "35.564612", "id": "2076097446", "tags": "japan writing geotagged tokyo bokeh \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s geo:lat=35564612 voigtl\u00e4ndernokton35mmf12 geo:lon=139692991"}, {"datetaken": "2007-11-04 14:36:12", "license": "3", "title": "\u305f\u3070\u3053", "text": "", "album_id": "72157603248353977", "longitude": "139.692570", "url_o": "https://farm3.staticflickr.com/2276/2076097626_057349755d_o.jpg", "secret": "e27e1a0951", "media": "photo", "latitude": "35.563863", "id": "2076097626", "tags": "door sign japan shop writing geotagged tokyo \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s voigtl\u00e4ndernokton35mmf12 geo:lat=35563863 geo:lon=13969257"}, {"datetaken": "2007-11-04 14:37:29", "license": "3", "title": "\u6614", "text": "", "album_id": "72157603248353977", "longitude": "139.691814", "url_o": "https://farm3.staticflickr.com/2372/2075311377_980ae6f693_o.jpg", "secret": "0897f37c14", "media": "photo", "latitude": "35.563898", "id": "2075311377", "tags": "window sign japan shop wall writing ads poster geotagged tokyo \u65e5\u672c \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s geo:lat=35563898 voigtl\u00e4ndernokton35mmf12 geo:lon=139691814"}, {"datetaken": "2007-11-04 14:38:35", "license": "3", "title": "\u30b3\u30f3\u30c9\u30e0", "text": "", "album_id": "72157603248353977", "longitude": "139.691361", "url_o": "https://farm3.staticflickr.com/2031/2075311709_8b654ef0ca_o.jpg", "secret": "4e84b4052a", "media": "photo", "latitude": "35.563562", "id": "2075311709", "tags": "sign japan writing ads geotagged tokyo bokeh rusty \u65e5\u672c vendingmachines \u6771\u4eac \u5927\u7530\u533a \u77e2\u53e3 epsonrd1s geo:lon=139691361 geo:lat=35563562 voigtl\u00e4ndernokton35mmf12"}, {"datetaken": "2007-11-10 03:59:41", "license": "1", "title": "Garfield Park Conservatory (5)", "text": "", "album_id": "72157625098821810", "longitude": "-87.716468", "url_o": "https://farm3.staticflickr.com/2105/2141654652_7cfbf32a9c_o.jpg", "secret": "9fc3ace36a", "media": "photo", "latitude": "41.886520", "id": "2141654652", "tags": "park trees plants chicago leaves gardens landscape illinois william conservatory westside garfieldpark horticulture landforms specimen tapestry chicagoil publicspaces lebaron jenney organicgardening waterfeatures conservatories gardenscape landscapearchitect jensjensen williamlebaronjenney presidentjamesagarfield plantexhibit architecturallandscaping"}, {"datetaken": "2007-11-10 04:01:51", "license": "1", "title": "Garfield Park Conservatory (10)", "text": "", "album_id": "72157625098821810", "longitude": "-87.716468", "url_o": "https://farm3.staticflickr.com/2194/2140867809_53b3a21ae1_o.jpg", "secret": "85f90ff6d4", "media": "photo", "latitude": "41.886520", "id": "2140867809", "tags": "park flowers plants plant chicago nature water architecture botanical illinois parks conservatory botanicgarden botanicalgarden botanicals chicagoil publicspaces waterfeatures conservatories botanticals williamlebaronjenney waterattractions plantexhibit"}, {"datetaken": "2007-11-10 04:12:03", "license": "1", "title": "Garfield Park Conservatory (26)", "text": "", "album_id": "72157625098821810", "longitude": "-87.716468", "url_o": "https://farm3.staticflickr.com/2388/2141704136_8390342699_o.jpg", "secret": "b04a62b392", "media": "photo", "latitude": "41.886520", "id": "2141704136", "tags": "park plants chicago tree leaves illinois garfieldpark garfield botanicalgarden botanicals giantseagrape"}, {"datetaken": "2007-11-10 04:12:54", "license": "1", "title": "Garfield Park Conservatory (27)", "text": "", "album_id": "72157625098821810", "longitude": "-87.716468", "url_o": "https://farm3.staticflickr.com/2290/2140917187_5907ef37a5_o.jpg", "secret": "f367006499", "media": "photo", "latitude": "41.886520", "id": "2140917187", "tags": "chicago illinois pond conservatory garfieldpark"}, {"datetaken": "2007-11-10 04:15:35", "license": "1", "title": "Garfield Park Conservatory (31)", "text": "", "album_id": "72157625098821810", "longitude": "-87.716468", "url_o": "https://farm3.staticflickr.com/2292/2141711684_d2af5f37e5_o.jpg", "secret": "5413867d2b", "media": "photo", "latitude": "41.886520", "id": "2141711684", "tags": "flowers trees plants chicago gardens illinois parks conservatory"}, {"datetaken": "2007-11-10 04:16:46", "license": "1", "title": "Garfield Park Conservatory (32)", "text": "", "album_id": "72157625098821810", "longitude": "-87.716468", "url_o": "https://farm3.staticflickr.com/2385/2140919737_e35ff5f4ea_o.jpg", "secret": "5b2401bbc3", "media": "photo", "latitude": "41.886520", "id": "2140919737", "tags": "flowers plants chicago leaves gardens illinois conservatory garfieldpark botanicalgarden botanicals"}, {"datetaken": "2007-11-10 04:25:02", "license": "1", "title": "Garfield Park Conservatory (38)", "text": "", "album_id": "72157625098821810", "longitude": "-87.716468", "url_o": "https://farm3.staticflickr.com/2190/2140924715_50d501ffdf_o.jpg", "secret": "e62de03530", "media": "photo", "latitude": "41.886520", "id": "2140924715", "tags": "plants chicago tree fruit illinois conservatory garfieldpark botanicals"}, {"datetaken": "2007-11-10 04:30:20", "license": "1", "title": "Garfield Park Conservatory (39)", "text": "", "album_id": "72157625098821810", "longitude": "-87.716468", "url_o": "https://farm3.staticflickr.com/2378/2140937347_3dd79cc334_o.jpg", "secret": "ca24d36e66", "media": "photo", "latitude": "41.886520", "id": "2140937347", "tags": "plants chicago water gardens waterfall illinois parks conservatory ferns garfieldpark waterattraction"}, {"datetaken": "2007-11-10 04:31:19", "license": "1", "title": "Garfield Park Conservatory (41)", "text": "", "album_id": "72157625098821810", "longitude": "-87.716468", "url_o": "https://farm3.staticflickr.com/2296/2140948429_608040ba72_o.jpg", "secret": "99d01a144f", "media": "photo", "latitude": "41.886520", "id": "2140948429", "tags": "flowers plants chicago water gardens illinois parks garfieldpark botanicalgarden waterlilly botanicals plantexhibit"}, {"datetaken": "2007-11-10 04:32:34", "license": "1", "title": "Garfield Park Conservatory (44)", "text": "", "album_id": "72157625098821810", "longitude": "-87.716468", "url_o": "https://farm3.staticflickr.com/2291/2141740462_0d09cefbae_o.jpg", "secret": "97e0a877fb", "media": "photo", "latitude": "41.886520", "id": "2141740462", "tags": "park plants plant chicago fern tree gardens landscape botanical illinois parks botanicgarden botanicalgarden botanicals garfieldconservatory chicagoil waterattractions"}, {"datetaken": "2007-11-10 04:34:35", "license": "1", "title": "Garfield Park Conservatory (46)", "text": "", "album_id": "72157625098821810", "longitude": "-87.716468", "url_o": "https://farm3.staticflickr.com/2115/2141752432_c292227e8c_o.jpg", "secret": "7573519d28", "media": "photo", "latitude": "41.886520", "id": "2141752432", "tags": "park plant chicago gardens illinois conservatory garfieldpark botanicals plantexhibit"}, {"datetaken": "2007-11-10 04:34:51", "license": "1", "title": "Garfield Park Conservatory (47)", "text": "", "album_id": "72157625098821810", "longitude": "-87.716468", "url_o": "https://farm3.staticflickr.com/2049/2141754902_8015c55bf1_o.jpg", "secret": "bb56daf0b0", "media": "photo", "latitude": "41.886520", "id": "2141754902", "tags": "park plants chicago gardens illinois conservatory garfieldpark botanicals conservatories plantexhibit"}, {"datetaken": "2007-11-10 04:35:14", "license": "1", "title": "Garfield Park Conservatory (48)", "text": "", "album_id": "72157625098821810", "longitude": "-87.716468", "url_o": "https://farm3.staticflickr.com/2230/2141759672_ccd145d8d4_o.jpg", "secret": "5be6571217", "media": "photo", "latitude": "41.886520", "id": "2141759672", "tags": "park flowers plants chicago illinois parks conservatory garfieldpark botanicgarden botanicals chicagoil conservatories jenjensen"}, {"datetaken": "2007-11-10 04:37:04", "license": "1", "title": "Chocolate Tree", "text": "", "album_id": "72157625098821810", "longitude": "-87.716468", "url_o": "https://farm3.staticflickr.com/2141/2141745842_7304b3af88_o.jpg", "secret": "668011b4a4", "media": "photo", "latitude": "41.886520", "id": "2141745842", "tags": "park chicago tree garden botanical illinois chocolate conservatory garfieldpark chocolatetree theobromacacao"}, {"datetaken": "2007-11-10 04:37:44", "license": "1", "title": "Garfield Park Conservatory (50)", "text": "", "album_id": "72157625098821810", "longitude": "-87.716468", "url_o": "https://farm3.staticflickr.com/2240/2141750266_9a6ff7edf4_o.jpg", "secret": "c9d48312a5", "media": "photo", "latitude": "41.886520", "id": "2141750266", "tags": "park flowers plants chicago leaves gardens illinois conservatory garfieldpark botanicals shrimpplant"}, {"datetaken": "2007-11-10 04:38:30", "license": "1", "title": "Garfield Park Conservatory (51)", "text": "", "album_id": "72157625098821810", "longitude": "-87.716468", "url_o": "https://farm3.staticflickr.com/2027/2141757386_0b775cedb5_o.jpg", "secret": "3e853bd1cf", "media": "photo", "latitude": "41.886520", "id": "2141757386", "tags": "park plant chicago flower water garden illinois conservatory garfieldpark floweringplant plantexhibit"}, {"datetaken": "2007-09-26 09:28:56", "license": "5", "title": "peradeniya-00", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2289/2054951184_4648944aef_o.jpg", "secret": "8ebcbe64b0", "media": "photo", "latitude": "0", "id": "2054951184", "tags": "food srilanka kandy canons3is"}, {"datetaken": "2007-09-26 11:06:03", "license": "5", "title": "peradeniya-01", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2395/2054168627_ec2f098fd6_o.jpg", "secret": "07b6b0f9f6", "media": "photo", "latitude": "0", "id": "2054168627", "tags": "flowers red macro garden srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 11:06:54", "license": "5", "title": "peradeniya-02", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2079/2054951450_5b616f170b_o.jpg", "secret": "f1f880450f", "media": "photo", "latitude": "0", "id": "2054951450", "tags": "flowers garden badge srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 11:12:44", "license": "5", "title": "peradeniya-03", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2313/2054168931_d715c6d94b_o.jpg", "secret": "c0dab04890", "media": "photo", "latitude": "0", "id": "2054168931", "tags": "macro garden leaf srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 11:14:37", "license": "5", "title": "peradeniya-04", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2186/2054951762_9b6151d7df_o.jpg", "secret": "b1c201e149", "media": "photo", "latitude": "0", "id": "2054951762", "tags": "garden srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 11:18:46", "license": "5", "title": "peradeniya-05", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2063/2054169229_c141ce380c_o.jpg", "secret": "d490ce39f3", "media": "photo", "latitude": "0", "id": "2054169229", "tags": "flowers orchid macro garden badge srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 11:19:39", "license": "5", "title": "peradeniya-06", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2094/2054169339_984aaffe04_o.jpg", "secret": "521457ca9a", "media": "photo", "latitude": "0", "id": "2054169339", "tags": "flowers macro garden badge srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 11:20:29", "license": "5", "title": "peradeniya-07", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2145/2054169437_c2fcea68fd_o.jpg", "secret": "c2c5819852", "media": "photo", "latitude": "0", "id": "2054169437", "tags": "flowers orchid macro garden badge srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 11:21:44", "license": "5", "title": "peradeniya-08", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2116/2054169541_66c59fd985_o.jpg", "secret": "9e6e809988", "media": "photo", "latitude": "0", "id": "2054169541", "tags": "flowers orchid macro garden badge srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 11:22:35", "license": "5", "title": "peradeniya-09", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2076/2054952292_f5967d415d_o.jpg", "secret": "0ccec59a2a", "media": "photo", "latitude": "0", "id": "2054952292", "tags": "flowers orchid macro garden badge srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 11:25:52", "license": "5", "title": "peradeniya-10", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2025/2054169767_d0744c6a3e_o.jpg", "secret": "6f8713a3c2", "media": "photo", "latitude": "0", "id": "2054169767", "tags": "flowers orchid macro garden badge srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 11:27:41", "license": "5", "title": "peradeniya-11", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2243/2054169869_1bf79484e0_o.jpg", "secret": "6a641b38a9", "media": "photo", "latitude": "0", "id": "2054169869", "tags": "flowers orchid macro garden badge srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 11:29:25", "license": "5", "title": "peradeniya-12", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2266/2054952604_2afd96d3db_o.jpg", "secret": "b3c8461183", "media": "photo", "latitude": "0", "id": "2054952604", "tags": "flowers orchid macro garden blog badge srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 11:30:18", "license": "5", "title": "peradeniya-13", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2030/2054170069_4c39b1453a_o.jpg", "secret": "b93c4adc6a", "media": "photo", "latitude": "0", "id": "2054170069", "tags": "flowers macro garden badge srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 11:31:53", "license": "5", "title": "peradeniya-14", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2063/2054952870_f412b75bea_o.jpg", "secret": "a829e3f21c", "media": "photo", "latitude": "0", "id": "2054952870", "tags": "flowers orchid macro garden badge srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 11:32:52", "license": "5", "title": "peradeniya-15", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2414/2054953016_425c36c8c8_o.jpg", "secret": "7e55035f12", "media": "photo", "latitude": "0", "id": "2054953016", "tags": "fern leaves garden badge srilanka kandy birdsnest peradeniya canons3is"}, {"datetaken": "2007-09-26 11:46:45", "license": "5", "title": "peradeniya-16", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2028/2054170595_70e3841e77_o.jpg", "secret": "35715c0240", "media": "photo", "latitude": "0", "id": "2054170595", "tags": "tree garden srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 11:51:31", "license": "5", "title": "peradeniya-17", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2076/2054953438_40811daaf4_o.jpg", "secret": "524648114a", "media": "photo", "latitude": "0", "id": "2054953438", "tags": "garden path shade srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 11:56:24", "license": "5", "title": "peradeniya-18", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2262/2054953602_6594b7a93d_o.jpg", "secret": "87e9b0e260", "media": "photo", "latitude": "0", "id": "2054953602", "tags": "trees garden path srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 11:57:53", "license": "5", "title": "peradeniya-19", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2223/2054170997_410940f164_o.jpg", "secret": "05e812aaeb", "media": "photo", "latitude": "0", "id": "2054170997", "tags": "tree garden badge srilanka root kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 12:04:55", "license": "5", "title": "peradeniya-20", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2026/2054171195_4b0c715e26_o.jpg", "secret": "64b4342448", "media": "photo", "latitude": "0", "id": "2054171195", "tags": "flowers blue garden badge srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 12:09:20", "license": "5", "title": "peradeniya-21", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2058/2054171443_3417e55df8_o.jpg", "secret": "cb0ed07326", "media": "photo", "latitude": "0", "id": "2054171443", "tags": "garden path srilanka ferns kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 12:10:13", "license": "5", "title": "peradeniya-22", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2174/2054954320_fb016fdf2b_o.jpg", "secret": "4e67ce5567", "media": "photo", "latitude": "0", "id": "2054954320", "tags": "fern leaves garden srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 12:14:09", "license": "5", "title": "peradeniya-23", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2083/2054954530_0f4fae0502_o.jpg", "secret": "53d7b29e55", "media": "photo", "latitude": "0", "id": "2054954530", "tags": "trees grass garden circle srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 12:17:35", "license": "5", "title": "peradeniya-24", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2020/2054172029_c0e4ecfed7_o.jpg", "secret": "19f6cb4fed", "media": "photo", "latitude": "0", "id": "2054172029", "tags": "garden srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 12:20:09", "license": "5", "title": "peradeniya-25", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2135/2054172205_6142413e5e_o.jpg", "secret": "1fa69fa731", "media": "photo", "latitude": "0", "id": "2054172205", "tags": "tree garden srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 13:13:19", "license": "5", "title": "peradeniya-26", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2085/2054172371_e7978294c6_o.jpg", "secret": "75be7fe26a", "media": "photo", "latitude": "0", "id": "2054172371", "tags": "trees garden path srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 13:24:28", "license": "5", "title": "peradeniya-27", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2245/2054955090_9d055b42d3_o.jpg", "secret": "43f68a83c5", "media": "photo", "latitude": "0", "id": "2054955090", "tags": "trees sky grass garden ground srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 14:00:49", "license": "5", "title": "peradeniya-28", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2269/2054955256_c1017ecb5c_o.jpg", "secret": "4912fab2d9", "media": "photo", "latitude": "0", "id": "2054955256", "tags": "grass leaves garden srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 14:10:55", "license": "5", "title": "peradeniya-29", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2150/2054172803_91bf683e21_o.jpg", "secret": "586f43cb2f", "media": "photo", "latitude": "0", "id": "2054172803", "tags": "leaves garden srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 14:19:38", "license": "5", "title": "peradeniya-30", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2289/2054172963_eadaa3b646_o.jpg", "secret": "7ff681e923", "media": "photo", "latitude": "0", "id": "2054172963", "tags": "grass garden badge srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-09-26 14:27:35", "license": "5", "title": "peradeniya-31", "text": "", "album_id": "72157603262854032", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2331/2054955700_ebebd9f247_o.jpg", "secret": "9a7199378d", "media": "photo", "latitude": "0", "id": "2054955700", "tags": "lake garden pond badge srilanka kandy peradeniya canons3is"}, {"datetaken": "2007-10-28 13:07:44", "license": "1", "title": "shira", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2250/2040840884_123a8d8f9a_o.jpg", "secret": "a866aed130", "media": "photo", "latitude": "0", "id": "2040840884", "tags": "beautiful forest woods hiking shira happiness catskills"}, {"datetaken": "2007-10-28 13:27:35", "license": "1", "title": "roots", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2123/2040841400_5d33e8b359_o.jpg", "secret": "884d39ed2b", "media": "photo", "latitude": "0", "id": "2040841400", "tags": "tree forest woods hiking roots veins catskills"}, {"datetaken": "2007-10-28 13:28:45", "license": "1", "title": "hello rock", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2151/2040047861_6721bf34e9_o.jpg", "secret": "6dd9acdd35", "media": "photo", "latitude": "0", "id": "2040047861", "tags": "plants rock forest living moss woods hiking catskills"}, {"datetaken": "2007-10-28 13:30:16", "license": "1", "title": "cairn", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2324/2040842360_5e06c8ed1d_o.jpg", "secret": "0236f823a1", "media": "photo", "latitude": "0", "id": "2040842360", "tags": "forest woods rocks hiking stones catskills cairn"}, {"datetaken": "2007-10-28 13:45:20", "license": "1", "title": "wood", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2150/2040843152_56541daf3c_o.jpg", "secret": "08f29dc41c", "media": "photo", "latitude": "0", "id": "2040843152", "tags": "wood rot forest moss woods hiking lichen catskills"}, {"datetaken": "2007-10-28 13:46:46", "license": "1", "title": "tiny forests for tiny creatures", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2283/2040049381_e56cc35c08_o.jpg", "secret": "6cf113db6a", "media": "photo", "latitude": "0", "id": "2040049381", "tags": "plant leaves forest woods hiking evergreen tiny catskills groundcover"}, {"datetaken": "2007-10-28 13:59:53", "license": "1", "title": "spring", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2028/2040843806_9fd7f70009_o.jpg", "secret": "19f60c3622", "media": "photo", "latitude": "0", "id": "2040843806", "tags": "water sign forest spring woods hiking catskills"}, {"datetaken": "2007-10-28 14:02:06", "license": "1", "title": "little one", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2240/2040844178_49ec7fbad9_o.jpg", "secret": "2a39d2eae6", "media": "photo", "latitude": "0", "id": "2040844178", "tags": "mushroom forest moss woods little hiking small tiny catskills"}, {"datetaken": "2007-10-28 14:03:28", "license": "1", "title": "shira, nitya, jesse, happiness", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2209/2040844806_ee9a80daa8_o.jpg", "secret": "15f48f6185", "media": "photo", "latitude": "0", "id": "2040844806", "tags": "smile forest jesse happy woods hiking shira happiness catskills nitya"}, {"datetaken": "2007-10-28 14:03:38", "license": "1", "title": "tree", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2019/2040845404_b832af163b_o.jpg", "secret": "be08f13e28", "media": "photo", "latitude": "0", "id": "2040845404", "tags": "sky tree forest woods hiking branches catskills twisted"}, {"datetaken": "2007-10-28 14:04:48", "license": "1", "title": "path", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2167/2040051875_b932507954_o.jpg", "secret": "e1f9b12d31", "media": "photo", "latitude": "0", "id": "2040051875", "tags": "forest woods rocks hiking path stones catskills"}, {"datetaken": "2007-10-28 14:05:59", "license": "1", "title": "opening", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2122/2040846728_1e84e29481_o.jpg", "secret": "c42cd7f616", "media": "photo", "latitude": "0", "id": "2040846728", "tags": "door strange rock forest woods hiking mysterious opening catskills"}, {"datetaken": "2007-10-28 14:08:04", "license": "1", "title": "earth made this", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2373/2040847464_538c9f254c_o.jpg", "secret": "1e85e2e23c", "media": "photo", "latitude": "0", "id": "2040847464", "tags": "house strange rock forest woods hiking cube mysterious catskills"}, {"datetaken": "2007-10-28 14:11:00", "license": "1", "title": "wood", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2270/2040053751_dda6706449_o.jpg", "secret": "13fc4ef715", "media": "photo", "latitude": "0", "id": "2040053751", "tags": "wood forest woods hiking catskills"}, {"datetaken": "2007-10-28 14:11:06", "license": "1", "title": "lichens", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2096/2040054349_4ecd5c0bae_o.jpg", "secret": "82a9840411", "media": "photo", "latitude": "0", "id": "2040054349", "tags": "werewolf forest woods hiking catskills lichens"}, {"datetaken": "2007-10-28 14:11:16", "license": "1", "title": "tree", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2018/2040849004_b65c60792b_o.jpg", "secret": "8f2a896545", "media": "photo", "latitude": "0", "id": "2040849004", "tags": "tree forest woods hiking branches catskills"}, {"datetaken": "2007-10-28 14:17:39", "license": "1", "title": "p.w. misko", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2266/2040849554_284cbba065_o.jpg", "secret": "e95f2cc968", "media": "photo", "latitude": "0", "id": "2040849554", "tags": "stone forest graffiti woods hiking tag carve catskills"}, {"datetaken": "2007-10-28 14:17:59", "license": "1", "title": "cairn", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2260/2040849806_bcf11fc42a_o.jpg", "secret": "1d169ffdcd", "media": "photo", "latitude": "0", "id": "2040849806", "tags": "forest woods rocks hiking catskills cairn"}, {"datetaken": "2007-10-28 14:18:17", "license": "1", "title": "mama earth", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2105/2040055885_6a9207bb7f_o.jpg", "secret": "f830dcc7f7", "media": "photo", "latitude": "0", "id": "2040055885", "tags": "forest woods hiking earth mother mama hills catskills"}, {"datetaken": "2007-10-28 14:18:36", "license": "1", "title": "reaching", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2298/2040056419_4082921265_o.jpg", "secret": "9517f4f048", "media": "photo", "latitude": "0", "id": "2040056419", "tags": "trees forest woods reaching hiking branches catskills"}, {"datetaken": "2007-10-28 14:25:20", "license": "1", "title": "rock like a house", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2210/2040057003_d63a8c9d38_o.jpg", "secret": "6d0ef83c4c", "media": "photo", "latitude": "0", "id": "2040057003", "tags": "house strange rock forest woods natural hiking catskills"}, {"datetaken": "2007-10-28 14:26:06", "license": "1", "title": "wood", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2363/2040851672_a06a73c1f6_o.jpg", "secret": "da79181298", "media": "photo", "latitude": "0", "id": "2040851672", "tags": "wood forest woods hiking catskills"}, {"datetaken": "2007-10-28 14:29:06", "license": "1", "title": "rock with a moss toup\u00e9e", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2206/2040852230_025b43a638_o.jpg", "secret": "adfd721739", "media": "photo", "latitude": "0", "id": "2040852230", "tags": "rock forest woods hiking catskills toup\u00e9e"}, {"datetaken": "2007-10-28 14:32:03", "license": "1", "title": "jesse", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2168/2040058575_c41da58f5b_o.jpg", "secret": "2f74ab5884", "media": "photo", "latitude": "0", "id": "2040058575", "tags": "forest jesse woods hiking catskills"}, {"datetaken": "2007-10-28 14:44:56", "license": "1", "title": "tree on a rock", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2134/2040853540_78539d30fd_o.jpg", "secret": "2cf2a94cae", "media": "photo", "latitude": "0", "id": "2040853540", "tags": "tree rock forest woods hiking catskills"}, {"datetaken": "2007-10-28 14:51:51", "license": "1", "title": "shira!", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2095/2040854118_a2b94401ba_o.jpg", "secret": "8619436395", "media": "photo", "latitude": "0", "id": "2040854118", "tags": "cute forest woods hiking shira catskills"}, {"datetaken": "2007-10-28 14:51:56", "license": "1", "title": "shira!", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2183/2040854614_cd317d598d_o.jpg", "secret": "146c44280c", "media": "photo", "latitude": "0", "id": "2040854614", "tags": "cute forest woods hiking shira catskills"}, {"datetaken": "2007-10-28 15:07:46", "license": "1", "title": "if i were small", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2331/2040854926_7b5f5540d0_o.jpg", "secret": "3faed0aacc", "media": "photo", "latitude": "0", "id": "2040854926", "tags": "forest moss woods hiking small hill catskills"}, {"datetaken": "2007-10-28 15:13:11", "license": "1", "title": "jesse and nitya", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2415/2040855348_4f65339b82_o.jpg", "secret": "e364949128", "media": "photo", "latitude": "0", "id": "2040855348", "tags": "forest jesse woods hiking catskills nitya"}, {"datetaken": "2007-10-28 15:15:39", "license": "1", "title": "trail", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2045/2040061575_0ad8a339ea_o.jpg", "secret": "18be820a18", "media": "photo", "latitude": "0", "id": "2040061575", "tags": "forest woods hiking trail catskills"}, {"datetaken": "2007-10-28 15:15:45", "license": "1", "title": "moss", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2012/2040062181_0e8b6f346c_o.jpg", "secret": "684a9f5838", "media": "photo", "latitude": "0", "id": "2040062181", "tags": "forest moss woods hiking catskills"}, {"datetaken": "2007-10-28 15:26:27", "license": "1", "title": "spores", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2107/2040856778_d9a062aa4f_o.jpg", "secret": "c99dacef4a", "media": "photo", "latitude": "0", "id": "2040856778", "tags": "forest woods hiking ferns catskills spores"}, {"datetaken": "2007-10-28 15:36:47", "license": "1", "title": "shira walking", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2084/2040857390_9171b9df60_o.jpg", "secret": "bff2373aba", "media": "photo", "latitude": "0", "id": "2040857390", "tags": "forest walking woods hiking shira catskills"}, {"datetaken": "2007-10-28 16:02:54", "license": "1", "title": "go here go there", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2250/2040063543_805781aef1_o.jpg", "secret": "137ee79751", "media": "photo", "latitude": "0", "id": "2040063543", "tags": "signs forest woods hiking trails catskills"}, {"datetaken": "2007-10-28 16:03:50", "license": "1", "title": "this way", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2396/2040064031_9bcbce4c2d_o.jpg", "secret": "884567fe64", "media": "photo", "latitude": "0", "id": "2040064031", "tags": "sign yellow forest woods hiking arrow catskills"}, {"datetaken": "2007-10-28 16:15:17", "license": "1", "title": "tiny mountain", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2015/2040858746_f89f99e4cd_o.jpg", "secret": "2fde8dda3a", "media": "photo", "latitude": "0", "id": "2040858746", "tags": "forest woods hiking catskills"}, {"datetaken": "2007-10-28 16:28:26", "license": "1", "title": "hill", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2375/2040064989_c2baccd56b_o.jpg", "secret": "0aa05a3687", "media": "photo", "latitude": "0", "id": "2040064989", "tags": "trees forest woods hiking hill catskills"}, {"datetaken": "2007-10-28 16:30:51", "license": "1", "title": "sky", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2332/2040860000_d32aab2612_o.jpg", "secret": "f022b8dc92", "media": "photo", "latitude": "0", "id": "2040860000", "tags": "trees sky forest woods hiking catskills"}, {"datetaken": "2007-10-28 16:32:29", "license": "1", "title": "the stream you cross at the beginning of the trail", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2041/2040066419_b711e4eacc_o.jpg", "secret": "7bfd9789a1", "media": "photo", "latitude": "0", "id": "2040066419", "tags": "forest woods stream hiking catskills"}, {"datetaken": "2007-10-28 17:28:07", "license": "1", "title": "life - gannon", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2270/2040066923_69e7dedbc1_o.jpg", "secret": "59d7fd8f34", "media": "photo", "latitude": "0", "id": "2040066923", "tags": "life strange sign cat gannon catskills coincidence"}, {"datetaken": "2007-10-28 17:36:58", "license": "1", "title": "jesse working on our busted tire", "text": "", "album_id": "72157603215309500", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2218/2040067157_6af68ec44b_o.jpg", "secret": "7bafc0c5a4", "media": "photo", "latitude": "0", "id": "2040067157", "tags": "car jesse friend tire help catskills"}, {"datetaken": "2008-01-14 10:54:49", "license": "3", "title": "Clock Tower", "text": "", "album_id": "72157603870972242", "longitude": "18.422280", "url_o": "https://farm3.staticflickr.com/2199/2251124588_bf4771b8cb_o.jpg", "secret": "d079e45d50", "media": "photo", "latitude": "-33.907803", "id": "2251124588", "tags": "sign southafrica capetown clocktower citysightseeing"}, {"datetaken": "2008-01-14 10:58:58", "license": "3", "title": "End of the Road", "text": "", "album_id": "72157603870972242", "longitude": "18.424683", "url_o": "https://farm3.staticflickr.com/2359/2250328521_f86e83d3b5_o.jpg", "secret": "d8d2c6f7b3", "media": "photo", "latitude": "-33.914432", "id": "2250328521", "tags": "road southafrica highway capetown unfinished citysightseeing"}, {"datetaken": "2008-01-14 11:04:33", "license": "3", "title": "Dish", "text": "", "album_id": "72157603870972242", "longitude": "18.428589", "url_o": "https://farm3.staticflickr.com/2336/2251125010_86accd7b97_o.jpg", "secret": "4505e5dabb", "media": "photo", "latitude": "-33.921225", "id": "2251125010", "tags": "sculpture southafrica dish capetown citysightseeing"}, {"datetaken": "2008-01-14 11:16:17", "license": "3", "title": "Sculptures", "text": "", "album_id": "72157603870972242", "longitude": "18.415081", "url_o": "https://farm3.staticflickr.com/2362/2250328985_725530009c_o.jpg", "secret": "3486e206af", "media": "photo", "latitude": "-33.922436", "id": "2250328985", "tags": "sculpture southafrica capetown citysightseeing"}, {"datetaken": "2008-01-14 11:21:26", "license": "3", "title": "Mural", "text": "", "album_id": "72157603870972242", "longitude": "18.415081", "url_o": "https://farm3.staticflickr.com/2067/2251125476_9153e0a84f_o.jpg", "secret": "f20dd27ecd", "media": "photo", "latitude": "-33.922436", "id": "2251125476", "tags": "wall southafrica mural capetown citysightseeing"}, {"datetaken": "2008-01-14 13:16:24", "license": "3", "title": "District Six", "text": "", "album_id": "72157603870972242", "longitude": "18.435101", "url_o": "https://farm3.staticflickr.com/2158/2250329731_c9ddf2bd9a_o.jpg", "secret": "f8022ecb1c", "media": "photo", "latitude": "-33.932002", "id": "2250329731", "tags": "southafrica capetown districtsix citysightseeing"}, {"datetaken": "2008-01-14 13:17:19", "license": "3", "title": "District Six", "text": "", "album_id": "72157603870972242", "longitude": "18.435101", "url_o": "https://farm3.staticflickr.com/2217/2250330191_6c781fe9aa_o.jpg", "secret": "d579bef76e", "media": "photo", "latitude": "-33.932002", "id": "2250330191", "tags": "southafrica capetown districtsix citysightseeing"}, {"datetaken": "2008-01-14 13:20:34", "license": "3", "title": "Castle", "text": "", "album_id": "72157603870972242", "longitude": "18.427720", "url_o": "https://farm3.staticflickr.com/2057/2251126978_99f7226017_o.jpg", "secret": "0231d946a7", "media": "photo", "latitude": "-33.925708", "id": "2251126978", "tags": "castle southafrica capetown moat citysightseeing"}, {"datetaken": "2008-01-14 13:24:39", "license": "3", "title": "Christmas Decorations", "text": "", "album_id": "72157603870972242", "longitude": "18.415081", "url_o": "https://farm3.staticflickr.com/2109/2251127514_630d526e01_o.jpg", "secret": "aaf9ec31a5", "media": "photo", "latitude": "-33.922436", "id": "2251127514", "tags": "christmas decorations southafrica capetown citysightseeing"}, {"datetaken": "2008-01-14 13:28:49", "license": "3", "title": "Old Building", "text": "", "album_id": "72157603870972242", "longitude": "18.415081", "url_o": "https://farm3.staticflickr.com/2368/2250331641_ff85c32d59_o.jpg", "secret": "03c9465d67", "media": "photo", "latitude": "-33.922436", "id": "2250331641", "tags": "old southafrica capetown citysightseeing"}, {"datetaken": "2008-01-14 13:41:26", "license": "3", "title": "Table Mountain Cable Car", "text": "", "album_id": "72157603870972242", "longitude": "18.403054", "url_o": "https://farm3.staticflickr.com/2227/2251128152_2108ac2f3a_o.jpg", "secret": "8f9f93b50b", "media": "photo", "latitude": "-33.957897", "id": "2251128152", "tags": "mountain table southafrica capetown cablecar citysightseeing"}, {"datetaken": "2008-01-14 13:42:50", "license": "3", "title": "Table Mountain Cable Car", "text": "", "album_id": "72157603870972242", "longitude": "18.403054", "url_o": "https://farm3.staticflickr.com/2357/2251128640_e2e5fa7fa4_o.jpg", "secret": "4d2dbeba88", "media": "photo", "latitude": "-33.957897", "id": "2251128640", "tags": "mountain table southafrica capetown cablecar citysightseeing"}, {"datetaken": "2008-01-14 13:43:59", "license": "3", "title": "Cape Town View", "text": "", "album_id": "72157603870972242", "longitude": "18.403054", "url_o": "https://farm3.staticflickr.com/2150/2250333345_5f9d2844bd_o.jpg", "secret": "42c33f3fa6", "media": "photo", "latitude": "-33.957897", "id": "2250333345", "tags": "tree southafrica capetown citysightseeing"}, {"datetaken": "2008-01-14 13:51:15", "license": "3", "title": "Burnt Tree", "text": "", "album_id": "72157603870972242", "longitude": "18.403054", "url_o": "https://farm3.staticflickr.com/2097/2251130054_fd907c17ff_o.jpg", "secret": "8b024ddc7b", "media": "photo", "latitude": "-33.957897", "id": "2251130054", "tags": "tree southafrica bush capetown burnt fynbos citysightseeing"}, {"datetaken": "2008-01-14 13:56:13", "license": "3", "title": "Twelve Apostles", "text": "", "album_id": "72157603870972242", "longitude": "18.384418", "url_o": "https://farm3.staticflickr.com/2400/2250334613_03886b1d8a_o.jpg", "secret": "f28b679677", "media": "photo", "latitude": "-33.957421", "id": "2250334613", "tags": "southafrica capetown twelveapostles citysightseeing"}, {"datetaken": "2008-01-14 15:04:46", "license": "3", "title": "Camps Bay", "text": "", "album_id": "72157603870972242", "longitude": "18.375878", "url_o": "https://farm3.staticflickr.com/2286/2250335015_aebd77a3dc_o.jpg", "secret": "076a94e972", "media": "photo", "latitude": "-33.952295", "id": "2250335015", "tags": "beach southafrica bay capetown palm palmtree campsbay citysightseeing"}, {"datetaken": "2008-01-14 15:06:24", "license": "3", "title": "Camps Bay", "text": "", "album_id": "72157603870972242", "longitude": "18.377584", "url_o": "https://farm3.staticflickr.com/2399/2251131236_a2609feffa_o.jpg", "secret": "68cbea70b2", "media": "photo", "latitude": "-33.935909", "id": "2251131236", "tags": "beach southafrica bay capetown campsbay citysightseeing"}, {"datetaken": "2008-01-14 15:06:54", "license": "3", "title": "Camps Bay", "text": "", "album_id": "72157603870972242", "longitude": "18.377584", "url_o": "https://farm3.staticflickr.com/2185/2251131758_b359a8bb8c_o.jpg", "secret": "8ff9537712", "media": "photo", "latitude": "-33.935909", "id": "2251131758", "tags": "beach southafrica bay capetown campsbay citysightseeing"}, {"datetaken": "2008-01-14 15:07:49", "license": "3", "title": "Camps Bay", "text": "", "album_id": "72157603870972242", "longitude": "18.377584", "url_o": "https://farm3.staticflickr.com/2071/2251132252_4982dd3cd5_o.jpg", "secret": "64ba3db093", "media": "photo", "latitude": "-33.935909", "id": "2251132252", "tags": "beach southafrica bay capetown campsbay citysightseeing"}, {"datetaken": "2008-01-14 15:09:11", "license": "3", "title": "Clifton Bay", "text": "", "album_id": "72157603870972242", "longitude": "18.377584", "url_o": "https://farm3.staticflickr.com/2039/2251132736_a149be2f06_o.jpg", "secret": "125593acc3", "media": "photo", "latitude": "-33.935909", "id": "2251132736", "tags": "beach southafrica bay capetown cliftonbay citysightseeing"}, {"datetaken": "2008-01-14 15:09:51", "license": "3", "title": "Clifton Bay", "text": "", "album_id": "72157603870972242", "longitude": "18.377584", "url_o": "https://farm3.staticflickr.com/2194/2251132932_f8824ba016_o.jpg", "secret": "a790e995aa", "media": "photo", "latitude": "-33.935909", "id": "2251132932", "tags": "beach southafrica bay capetown cliftonbay citysightseeing"}, {"datetaken": "2008-01-14 15:10:52", "license": "3", "title": "Access to Clifton Beach One", "text": "", "album_id": "72157603870972242", "longitude": "18.377584", "url_o": "https://farm3.staticflickr.com/2210/2250336943_d62c3ce503_o.jpg", "secret": "b8cfb15eab", "media": "photo", "latitude": "-33.935909", "id": "2250336943", "tags": "stairs southafrica steps capetown scaffold clifton citysightseeing"}, {"datetaken": "2008-01-14 15:22:24", "license": "3", "title": "Green Point Light House", "text": "", "album_id": "72157603870972242", "longitude": "18.399546", "url_o": "https://farm3.staticflickr.com/2210/2251133510_2039e4b238_o.jpg", "secret": "fcc6624c7d", "media": "photo", "latitude": "-33.901802", "id": "2251133510", "tags": "red lighthouse white southafrica capetown greenpoint diaganol citysightseeing"}, {"datetaken": "2007-12-25 11:37:40", "license": "3", "title": "IMG_4639", "text": "", "album_id": "72157603947798265", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2291/2258423349_8732fe56ff_o.jpg", "secret": "f581151906", "media": "photo", "latitude": "0", "id": "2258423349", "tags": ""}, {"datetaken": "2007-12-25 13:30:33", "license": "3", "title": "IMG_4649", "text": "", "album_id": "72157603947798265", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2012/2259215462_9fb809cc6d_o.jpg", "secret": "ba29e32112", "media": "photo", "latitude": "0", "id": "2259215462", "tags": "wv benwood"}, {"datetaken": "2007-12-25 13:31:07", "license": "3", "title": "IMG_4652", "text": "", "album_id": "72157603947798265", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2358/2259215838_9ba28f6588_o.jpg", "secret": "67ee5740ae", "media": "photo", "latitude": "0", "id": "2259215838", "tags": "wv benwood"}, {"datetaken": "2007-12-25 13:31:12", "license": "3", "title": "IMG_4653", "text": "", "album_id": "72157603947798265", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2197/2258424747_d43d53dc13_o.jpg", "secret": "53acaf2e9a", "media": "photo", "latitude": "0", "id": "2258424747", "tags": "wv benwood"}, {"datetaken": "2007-12-25 13:31:23", "license": "3", "title": "IMG_4654", "text": "", "album_id": "72157603947798265", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2390/2259216116_9fc5e5be4e_o.jpg", "secret": "43eaf595dd", "media": "photo", "latitude": "0", "id": "2259216116", "tags": ""}, {"datetaken": "2007-12-25 13:35:01", "license": "3", "title": "IMG_4658", "text": "", "album_id": "72157603947798265", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2089/2258425647_d68d7d3b9c_o.jpg", "secret": "08cbcc3f4c", "media": "photo", "latitude": "0", "id": "2258425647", "tags": ""}, {"datetaken": "2007-12-25 18:35:49", "license": "3", "title": "IMG_4668", "text": "", "album_id": "72157603947798265", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2146/2259221900_9e537d1b4c_o.jpg", "secret": "9112ec8210", "media": "photo", "latitude": "0", "id": "2259221900", "tags": ""}, {"datetaken": "2007-12-25 18:52:32", "license": "3", "title": "IMG_4674", "text": "", "album_id": "72157603947798265", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2047/2259217486_25dddb6af7_o.jpg", "secret": "f99d078020", "media": "photo", "latitude": "0", "id": "2259217486", "tags": ""}, {"datetaken": "2007-12-25 18:58:16", "license": "3", "title": "IMG_4681", "text": "", "album_id": "72157603947798265", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2139/2258422367_1b0e3acb5a_o.jpg", "secret": "f28f88c4a1", "media": "photo", "latitude": "0", "id": "2258422367", "tags": ""}, {"datetaken": "2007-12-25 20:30:33", "license": "3", "title": "IMG_4682", "text": "", "album_id": "72157603947798265", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2282/2259222112_9f07c2c5bf_o.jpg", "secret": "12f9dc835d", "media": "photo", "latitude": "0", "id": "2259222112", "tags": ""}, {"datetaken": "2007-12-26 09:55:49", "license": "3", "title": "IMG_4700", "text": "", "album_id": "72157603947798265", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2075/2259222594_82f1be7b61_o.jpg", "secret": "f84db347ec", "media": "photo", "latitude": "0", "id": "2259222594", "tags": ""}, {"datetaken": "2008-01-07 09:01:01", "license": "1", "title": "Covering the pothols with Red dirt", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2392/2210011212_a6cca2ba08_o.jpg", "secret": "5088370f09", "media": "photo", "latitude": "0", "id": "2210011212", "tags": "road costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-07 12:35:02", "license": "1", "title": "20080107_IMG_3176", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2051/2209218191_23cc99d5ea_o.jpg", "secret": "7d3c4eef8b", "media": "photo", "latitude": "0", "id": "2209218191", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-07 12:35:48", "license": "1", "title": "Making Cheese", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2188/2209218317_c84c4f8410_o.jpg", "secret": "b383dbb035", "media": "photo", "latitude": "0", "id": "2209218317", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-07 12:35:57", "license": "1", "title": "Making Milk", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2030/2210011516_9b2ab8ff37_o.jpg", "secret": "45d81cbebe", "media": "photo", "latitude": "0", "id": "2210011516", "tags": "costarica monteverde cloudforest 2008 leche"}, {"datetaken": "2008-01-07 13:08:03", "license": "1", "title": "IMG_1943", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2155/2209227381_881a632b7b_o.jpg", "secret": "ca659a22e0", "media": "photo", "latitude": "0", "id": "2209227381", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-07 13:09:21", "license": "1", "title": "IMG_1944", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2153/2209227669_162f4a98e5_o.jpg", "secret": "82e4335591", "media": "photo", "latitude": "0", "id": "2209227669", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-07 13:15:13", "license": "1", "title": "Chocolate chease? Heaven?", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2242/2209227987_b807fd7d3d_o.jpg", "secret": "1abd414f7d", "media": "photo", "latitude": "0", "id": "2209227987", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-07 13:22:05", "license": "1", "title": "Folding cheese", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2096/2209218551_6f02e5a52b_o.jpg", "secret": "32789c7ca0", "media": "photo", "latitude": "0", "id": "2209218551", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-07 15:27:46", "license": "1", "title": "20080107_IMG_3182", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2287/2209218705_bae78e59b6_o.jpg", "secret": "aea244c8e0", "media": "photo", "latitude": "0", "id": "2209218705", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-07 15:34:10", "license": "1", "title": "20080107_IMG_3183", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2001/2209218921_df17465827_o.jpg", "secret": "8b74fcc48a", "media": "photo", "latitude": "0", "id": "2209218921", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-07 16:50:56", "license": "1", "title": "Orange Trantula", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2028/2209228323_2710e98c44_o.jpg", "secret": "2fed2c3e4c", "media": "photo", "latitude": "0", "id": "2209228323", "tags": "costarica bugs monteverde cloudforest 2008"}, {"datetaken": "2008-01-07 16:54:06", "license": "1", "title": "Orange Legged Trarantula", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2420/2210022220_9c230f6458_o.jpg", "secret": "0ea0cc0e6d", "media": "photo", "latitude": "0", "id": "2210022220", "tags": "costarica bugs monteverde cloudforest 2008"}, {"datetaken": "2008-01-07 17:37:26", "license": "1", "title": "Really happy pit viper", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2092/2209229327_2eb9550c08_o.jpg", "secret": "9ace5614c4", "media": "photo", "latitude": "0", "id": "2209229327", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-07 17:38:04", "license": "1", "title": "Full Belly Pit Viper", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2251/2209229655_8ef649389f_o.jpg", "secret": "83850fb076", "media": "photo", "latitude": "0", "id": "2209229655", "tags": "night costarica reptile monteverde cloudforest 2008"}, {"datetaken": "2008-01-07 17:53:18", "license": "1", "title": "Grass hopper", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2010/2210023320_d6d32415be_o.jpg", "secret": "fb05ae971c", "media": "photo", "latitude": "0", "id": "2210023320", "tags": "costarica bugs monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 06:23:12", "license": "1", "title": "Biggest Fern I ever did see", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2301/2209219225_e8f9d1a153_o.jpg", "secret": "497e4341b4", "media": "photo", "latitude": "0", "id": "2209219225", "tags": "fern tree costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 06:24:03", "license": "1", "title": "Large Fern Up Close", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2108/2210012874_bfbcb1da2e_o.jpg", "secret": "4945e3b3e2", "media": "photo", "latitude": "0", "id": "2210012874", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 06:55:06", "license": "1", "title": "More canopy", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2325/2210013068_1484d2468b_o.jpg", "secret": "29489af7e0", "media": "photo", "latitude": "0", "id": "2210013068", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 06:56:04", "license": "1", "title": "20080108_IMG_3188", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2390/2209220211_704626591c_o.jpg", "secret": "ec4a109cb7", "media": "photo", "latitude": "0", "id": "2209220211", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 06:58:44", "license": "1", "title": "20080108_IMG_3189", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2333/2209220299_e99e2ba43c_o.jpg", "secret": "6f9eb64244", "media": "photo", "latitude": "0", "id": "2209220299", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 07:21:31", "license": "1", "title": "red shrimp flower", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2286/2210013384_e251850064_o.jpg", "secret": "346ea78953", "media": "photo", "latitude": "0", "id": "2210013384", "tags": "flower costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 07:32:08", "license": "1", "title": "Scared Lizzard", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2255/2210013462_55e671ccb2_o.jpg", "secret": "948c013024", "media": "photo", "latitude": "0", "id": "2210013462", "tags": "costarica reptile monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 07:35:49", "license": "1", "title": "Humming Bird Nest", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2155/2209220565_430dfa0ca7_o.jpg", "secret": "c374c4889d", "media": "photo", "latitude": "0", "id": "2209220565", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 07:41:59", "license": "1", "title": "Epiphite Plant Material", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2189/2210024034_ba8a5888b7_o.jpg", "secret": "d431d375bb", "media": "photo", "latitude": "0", "id": "2210024034", "tags": "costarica monteverde cloudforest 2008 epiphite"}, {"datetaken": "2008-01-08 08:01:41", "license": "1", "title": "Monteverde Canopy Bridge", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2144/2210024558_20d21530a4_o.jpg", "secret": "10cf9e6daa", "media": "photo", "latitude": "0", "id": "2210024558", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 08:01:55", "license": "1", "title": "IMG_1963", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2106/2209231707_cdbb951899_o.jpg", "secret": "6a664b1754", "media": "photo", "latitude": "0", "id": "2209231707", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 08:02:57", "license": "1", "title": "IMG_1966", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2204/2209232169_10e6968ba1_o.jpg", "secret": "d842056f96", "media": "photo", "latitude": "0", "id": "2209232169", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 08:06:15", "license": "1", "title": "Alissa, the birder, spots the Quetzal", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2103/2210013616_aa2870c45f_o.jpg", "secret": "c217ae63b5", "media": "photo", "latitude": "0", "id": "2210013616", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 08:26:38", "license": "1", "title": "20080108_IMG_3195", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2025/2210013668_1bfa1c1cb1_o.jpg", "secret": "631e5dac29", "media": "photo", "latitude": "0", "id": "2210013668", "tags": "flowers costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 08:33:31", "license": "1", "title": "Pretty Flowers in the cloud forrest", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2236/2210013734_88c57de2ef_o.jpg", "secret": "f83812c5d3", "media": "photo", "latitude": "0", "id": "2210013734", "tags": "flowers costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 09:36:50", "license": "1", "title": "Huge uprooted root system", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2388/2209221223_1c028957c9_o.jpg", "secret": "c7b56fa11d", "media": "photo", "latitude": "0", "id": "2209221223", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 10:03:29", "license": "1", "title": "Lizzard", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2023/2210014582_54c4ee6358_o.jpg", "secret": "feb30f20d9", "media": "photo", "latitude": "0", "id": "2210014582", "tags": "costarica monteverde cloudforest 2008 reptiles"}, {"datetaken": "2008-01-08 10:08:25", "license": "1", "title": "20080108_IMG_3199", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2044/2209221683_027104f0ea_o.jpg", "secret": "7219c96225", "media": "photo", "latitude": "0", "id": "2209221683", "tags": "flowers costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 10:28:38", "license": "1", "title": "The Could Forest Canopy", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2089/2210015676_d1c77a0ac6_o.jpg", "secret": "c7ba2c6860", "media": "photo", "latitude": "0", "id": "2210015676", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 10:50:42", "license": "1", "title": "More Pot hole filling", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2385/2210016392_3299491fc9_o.jpg", "secret": "92a1e01db5", "media": "photo", "latitude": "0", "id": "2210016392", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 10:50:53", "license": "1", "title": "Pot hole filling", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2081/2210016516_564e1f1f29_o.jpg", "secret": "babcf680c9", "media": "photo", "latitude": "0", "id": "2210016516", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 11:14:00", "license": "1", "title": "Costa Rican Side Walk", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2218/2210017096_fc05f2f631_o.jpg", "secret": "71cd6046f3", "media": "photo", "latitude": "0", "id": "2210017096", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 12:54:34", "license": "1", "title": "Market peppers", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2159/2210017436_1ba9a6a632_o.jpg", "secret": "a7fe9fcefd", "media": "photo", "latitude": "0", "id": "2210017436", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 13:30:02", "license": "1", "title": "Chilling at the hotel", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2112/2210018018_fffe5fb34d_o.jpg", "secret": "a475faf25d", "media": "photo", "latitude": "0", "id": "2210018018", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 15:10:38", "license": "1", "title": "Banana Plant", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2414/2209225113_bbda23067b_o.jpg", "secret": "7f2330baa4", "media": "photo", "latitude": "0", "id": "2209225113", "tags": "flowers costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-08 15:20:19", "license": "1", "title": "20080108_IMG_3207", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2381/2209225319_3a1672566b_o.jpg", "secret": "aee153c421", "media": "photo", "latitude": "0", "id": "2209225319", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-09 05:58:41", "license": "1", "title": "Coffee Drying", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2142/2210020028_f1526bec48_o.jpg", "secret": "83de3d95e7", "media": "photo", "latitude": "0", "id": "2210020028", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-09 06:45:00", "license": "1", "title": "Arenal at a distance", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2186/2210020136_b3be5feec0_o.jpg", "secret": "6e12442937", "media": "photo", "latitude": "0", "id": "2210020136", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-09 07:30:13", "license": "1", "title": "Roadside Hawk", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2251/2210020224_191079e1c0_o.jpg", "secret": "51bbd6e1ea", "media": "photo", "latitude": "0", "id": "2210020224", "tags": "bird costarica monteverde cloudforest 2008"}, {"datetaken": "2008-01-09 07:32:50", "license": "1", "title": "20080109_IMG_3211", "text": "", "album_id": "72157603766250446", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2394/2210020474_e38d6bb4fb_o.jpg", "secret": "a202477801", "media": "photo", "latitude": "0", "id": "2210020474", "tags": "costarica monteverde cloudforest 2008"}, {"datetaken": "2007-11-23 19:28:43", "license": "4", "title": "The Moon", "text": "", "album_id": "72157603819121906", "longitude": "-2.108090", "url_o": "https://farm3.staticflickr.com/2343/2229841519_590230fb3a_o.jpg", "secret": "2cc156725d", "media": "photo", "latitude": "53.711040", "id": "2229841519", "tags": "family sky moon black slr night outdoors evening olympus astrophotography digitalcamera lunar zuiko digitalslr e510 40150mm zuikodigital olympuse510"}, {"datetaken": "2007-11-24 14:28:20", "license": "4", "title": "Woodlands", "text": "", "album_id": "72157603819121906", "longitude": "-2.015650", "url_o": "https://farm3.staticflickr.com/2216/2229828455_746be08b4e_o.jpg", "secret": "6366a85ba6", "media": "photo", "latitude": "53.748690", "id": "2229828455", "tags": "family trees blackandwhite plants plant slr walking outdoors olympus digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-24 14:29:29", "license": "4", "title": "Uphill Path", "text": "", "album_id": "72157603819121906", "longitude": "-2.015800", "url_o": "https://farm3.staticflickr.com/2380/2230622754_0a8f571295_o.jpg", "secret": "092858d4c4", "media": "photo", "latitude": "53.748410", "id": "2230622754", "tags": "family trees blackandwhite plants plant slr walking outdoors hiking path olympus digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-24 14:34:12", "license": "4", "title": "Autumn Path", "text": "", "album_id": "72157603819121906", "longitude": "-2.013450", "url_o": "https://farm3.staticflickr.com/2289/2230626814_9a97c2404b_o.jpg", "secret": "6133a4dc76", "media": "photo", "latitude": "53.748360", "id": "2230626814", "tags": "family trees plants plant slr leaves river walking outdoors hiking path olympus digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-24 14:34:43", "license": "4", "title": "Leaves on the Ground", "text": "", "album_id": "72157603819121906", "longitude": "-2.013490", "url_o": "https://farm3.staticflickr.com/2242/2230624034_a5b16ff2d7_o.jpg", "secret": "36a7225704", "media": "photo", "latitude": "53.748320", "id": "2230624034", "tags": "family blackandwhite plants slr leaves walking outdoors olympus digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-24 14:36:24", "license": "4", "title": "Small Waterfall", "text": "", "album_id": "72157603819121906", "longitude": "-2.013580", "url_o": "https://farm3.staticflickr.com/2199/2230623390_25cbc88bc4_o.jpg", "secret": "94d199d91a", "media": "photo", "latitude": "53.748150", "id": "2230623390", "tags": "family blackandwhite slr water river walking flow outdoors waterfall olympus digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 08:01:12", "license": "4", "title": "Sunrise", "text": "", "album_id": "72157603819121906", "longitude": "-2.108490", "url_o": "https://farm3.staticflickr.com/2376/2230612940_198a4beafb_o.jpg", "secret": "2035abe12d", "media": "photo", "latitude": "53.709530", "id": "2230612940", "tags": "morning family light sky slr silhouette clouds outdoors dawn early olympus digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 08:13:10", "license": "4", "title": "Cloudy Dawn", "text": "", "album_id": "72157603819121906", "longitude": "-2.108490", "url_o": "https://farm3.staticflickr.com/2295/2229820021_72020c0374_o.jpg", "secret": "eda3120474", "media": "photo", "latitude": "53.709530", "id": "2229820021", "tags": "morning family light sky slr clouds outdoors dawn early olympus digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 08:17:03", "license": "4", "title": "Leaves on the Ground", "text": "", "album_id": "72157603819121906", "longitude": "-2.108730", "url_o": "https://farm3.staticflickr.com/2391/2229831541_7cbafa6376_o.jpg", "secret": "bc5fd572a7", "media": "photo", "latitude": "53.707020", "id": "2229831541", "tags": "family trees blackandwhite plants plant slr leaves walking outdoors olympus digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 08:19:40", "license": "4", "title": "Valley Below Dobroyd Castle", "text": "", "album_id": "72157603819121906", "longitude": "-2.108790", "url_o": "https://farm3.staticflickr.com/2231/2229841259_273fb08711_o.jpg", "secret": "ebe29b926c", "media": "photo", "latitude": "53.706880", "id": "2229841259", "tags": "family sky slr walking landscape outdoors view scenic olympus valley digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 08:38:52", "license": "4", "title": "Dobroyd Castle", "text": "", "album_id": "72157603819121906", "longitude": "-2.108380", "url_o": "https://farm3.staticflickr.com/2373/2229820559_aae2a40f6d_o.jpg", "secret": "02bea2cc21", "media": "photo", "latitude": "53.710760", "id": "2229820559", "tags": "family sky plants plant building slr tower castle heritage up stone architecture outdoors bush olympus holly historic digitalcamera walls shrub zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 08:40:39", "license": "4", "title": "Dobroyd Castle", "text": "", "album_id": "72157603819121906", "longitude": "-2.108340", "url_o": "https://farm3.staticflickr.com/2265/2229821097_77fb6d3e51_o.jpg", "secret": "5a658094d3", "media": "photo", "latitude": "53.710380", "id": "2229821097", "tags": "door family sky building slr tower castle heritage stone architecture outdoors entrance olympus historic digitalcamera walls zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 08:41:43", "license": "4", "title": "Dobroyd Castle", "text": "", "album_id": "72157603819121906", "longitude": "-2.108540", "url_o": "https://farm3.staticflickr.com/2419/2230614950_1d7e42c29b_o.jpg", "secret": "3eb4ff8ab8", "media": "photo", "latitude": "53.710570", "id": "2230614950", "tags": "family sky building slr castle heritage water stone architecture outdoors pond olympus historic digitalcamera walls zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 08:42:42", "license": "4", "title": "Dobroyd Castle", "text": "", "album_id": "72157603819121906", "longitude": "-2.108520", "url_o": "https://farm3.staticflickr.com/2059/2230615488_91fdd21859_o.jpg", "secret": "2b8ebe59f7", "media": "photo", "latitude": "53.710910", "id": "2230615488", "tags": "family plants plant building slr tower castle heritage stone architecture outdoors bush perspective olympus holly historic digitalcamera walls shrub zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 08:43:39", "license": "4", "title": "Castle Walls", "text": "", "album_id": "72157603819121906", "longitude": "-2.108290", "url_o": "https://farm3.staticflickr.com/2108/2230618500_64904f4018_o.jpg", "secret": "dbce099466", "media": "photo", "latitude": "53.710980", "id": "2230618500", "tags": "family slr castle texture stone outdoors pattern olympus weathered digitalcamera blocks walls zuiko digitalslr publicdomain e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 08:47:45", "license": "4", "title": "Dobroyd Castle Grounds", "text": "", "album_id": "72157603819121906", "longitude": "-2.106650", "url_o": "https://farm3.staticflickr.com/2212/2230630610_408d1938a9_o.jpg", "secret": "cef8d1a307", "media": "photo", "latitude": "53.711050", "id": "2230630610", "tags": "family trees plants plant slr leaves walking outdoors olympus digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 08:49:00", "license": "4", "title": "Leaves on the Ground", "text": "", "album_id": "72157603819121906", "longitude": "-2.106470", "url_o": "https://farm3.staticflickr.com/2214/2229834511_607924c85b_o.jpg", "secret": "13d4040473", "media": "photo", "latitude": "53.710060", "id": "2229834511", "tags": "family plants slr leaves outdoors olympus digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 08:49:29", "license": "4", "title": "Dobroyd Castle Grounds", "text": "", "album_id": "72157603819121906", "longitude": "-2.106390", "url_o": "https://farm3.staticflickr.com/2246/2230630834_efa3908ed8_o.jpg", "secret": "0dc8ba516d", "media": "photo", "latitude": "53.710320", "id": "2230630834", "tags": "family trees plants plant slr leaves outdoors olympus trunk digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 08:51:28", "license": "4", "title": "Autumn Leaves", "text": "", "album_id": "72157603819121906", "longitude": "-2.106390", "url_o": "https://farm3.staticflickr.com/2345/2230631700_0e94dde980_o.jpg", "secret": "a1d926b2af", "media": "photo", "latitude": "53.710320", "id": "2230631700", "tags": "family trees plants plant slr leaves outdoors olympus trunk digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 08:53:03", "license": "4", "title": "Moss on Tree", "text": "", "album_id": "72157603819121906", "longitude": "-2.106350", "url_o": "https://farm3.staticflickr.com/2343/2230632506_882f673154_o.jpg", "secret": "5a389ebf52", "media": "photo", "latitude": "53.710230", "id": "2230632506", "tags": "family trees plants plant slr leaves outdoors olympus trunk digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 09:00:45", "license": "4", "title": "Twisted Tree Trunk", "text": "", "album_id": "72157603819121906", "longitude": "-2.106560", "url_o": "https://farm3.staticflickr.com/2294/2230633216_a1eb9d155c_o.jpg", "secret": "0154e6d3fe", "media": "photo", "latitude": "53.710830", "id": "2230633216", "tags": "family trees plants plant slr leaves outdoors olympus trunk digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 09:02:14", "license": "4", "title": "Yellow Leaves", "text": "", "album_id": "72157603819121906", "longitude": "-2.106560", "url_o": "https://farm3.staticflickr.com/2339/2230633970_fefca8aefb_o.jpg", "secret": "2aea500b6b", "media": "photo", "latitude": "53.710830", "id": "2230633970", "tags": "family trees plants plant slr leaves outdoors olympus trunk digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 09:06:00", "license": "4", "title": "Dobroyd Castle Grounds", "text": "", "album_id": "72157603819121906", "longitude": "-2.107220", "url_o": "https://farm3.staticflickr.com/2369/2229833457_d134c05c81_o.jpg", "secret": "26763e467c", "media": "photo", "latitude": "53.709980", "id": "2229833457", "tags": "family plants slr leaves walking outdoors hiking path olympus digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 09:07:28", "license": "4", "title": "Leaves on the Ground", "text": "", "album_id": "72157603819121906", "longitude": "-2.106890", "url_o": "https://farm3.staticflickr.com/2417/2229836337_9e33e1e190_o.jpg", "secret": "f6a5195615", "media": "photo", "latitude": "53.709890", "id": "2229836337", "tags": "family plants slr leaves outdoors olympus digitalcamera zuiko digitalslr publicdomain e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 09:08:49", "license": "4", "title": "Leaves on the Ground", "text": "", "album_id": "72157603819121906", "longitude": "-2.106890", "url_o": "https://farm3.staticflickr.com/2259/2229835443_24dbdee02a_o.jpg", "secret": "54ebe454d8", "media": "photo", "latitude": "53.709890", "id": "2229835443", "tags": "family plants slr leaves outdoors olympus digitalcamera zuiko digitalslr publicdomain e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 09:09:53", "license": "4", "title": "Dobroyd Castle", "text": "", "album_id": "72157603819121906", "longitude": "-2.107820", "url_o": "https://farm3.staticflickr.com/2418/2230616022_f376656748_o.jpg", "secret": "5533754bf4", "media": "photo", "latitude": "53.710270", "id": "2230616022", "tags": "family windows building slr castle heritage stone architecture outdoors perspective olympus historic digitalcamera walls zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 09:11:00", "license": "4", "title": "Castle Walls", "text": "", "album_id": "72157603819121906", "longitude": "-2.107830", "url_o": "https://farm3.staticflickr.com/2144/2229826141_e233c1c84a_o.jpg", "secret": "980837d7b6", "media": "photo", "latitude": "53.710420", "id": "2229826141", "tags": "family slr castle texture stone outdoors pattern olympus weathered digitalcamera blocks walls zuiko digitalslr publicdomain e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 09:12:51", "license": "4", "title": "Castle Walls", "text": "", "album_id": "72157603819121906", "longitude": "-2.108010", "url_o": "https://farm3.staticflickr.com/2377/2230619356_12889f3602_o.jpg", "secret": "592d49a423", "media": "photo", "latitude": "53.710870", "id": "2230619356", "tags": "family slr castle texture stone outdoors pattern olympus weathered digitalcamera blocks walls zuiko digitalslr publicdomain e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 09:13:49", "license": "4", "title": "Leaves on the Ground", "text": "", "album_id": "72157603819121906", "longitude": "-2.106370", "url_o": "https://farm3.staticflickr.com/2399/2230630436_5e8f47d239_o.jpg", "secret": "98210e4c05", "media": "photo", "latitude": "53.710280", "id": "2230630436", "tags": "family plants slr leaves outdoors olympus digitalcamera zuiko digitalslr publicdomain e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 09:15:43", "license": "4", "title": "Castle Walls", "text": "", "album_id": "72157603819121906", "longitude": "-2.108140", "url_o": "https://farm3.staticflickr.com/2181/2229824167_7ea4ff7a34_o.jpg", "secret": "fcb5bedd9e", "media": "photo", "latitude": "53.710880", "id": "2229824167", "tags": "family slr castle texture stone pattern olympus indoors digitalcamera blocks walls zuiko digitalslr publicdomain e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 12:02:38", "license": "4", "title": "Castle Walls", "text": "", "album_id": "72157603819121906", "longitude": "-2.108130", "url_o": "https://farm3.staticflickr.com/2244/2230616808_80e2e223b9_o.jpg", "secret": "02b6be6cee", "media": "photo", "latitude": "53.710840", "id": "2230616808", "tags": "family slr castle texture stone pattern olympus indoors digitalcamera blocks walls zuiko digitalslr publicdomain e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 12:07:10", "license": "4", "title": "Discarded Stone Blocks", "text": "", "album_id": "72157603819121906", "longitude": "-2.108730", "url_o": "https://farm3.staticflickr.com/2022/2229832547_e6a4dc9e20_o.jpg", "secret": "238d8c2e66", "media": "photo", "latitude": "53.710670", "id": "2229832547", "tags": "family plants slr abandoned overgrown leaves stone outdoors moss olympus digitalcamera blocks discarded decrepit zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2007-11-25 13:03:43", "license": "4", "title": "Stone Walls", "text": "", "album_id": "72157603819121906", "longitude": "-2.108550", "url_o": "https://farm3.staticflickr.com/2347/2229832331_a102fec72a_o.jpg", "secret": "df995e6838", "media": "photo", "latitude": "53.707130", "id": "2229832331", "tags": "family trees sky blackandwhite plants plant slr walking outdoors path perspective olympus digitalcamera zuiko digitalslr e510 zuikodigital 1442mm olympuse510"}, {"datetaken": "2006-06-11 09:24:48", "license": "5", "title": "Caroline stops for info in Kidstown", "text": "", "album_id": "72157607015881191", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3130/2809698340_28983cb9d5_o.jpg", "secret": "a21fbf44e7", "media": "photo", "latitude": "0", "id": "2809698340", "tags": "caroline"}, {"datetaken": "2006-06-11 09:25:02", "license": "5", "title": "Liza and Caroline experiencing kidstown", "text": "", "album_id": "72157607015881191", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3290/2808851063_0cf3230d3f_o.jpg", "secret": "93a891076f", "media": "photo", "latitude": "0", "id": "2808851063", "tags": "liza caroline"}, {"datetaken": "2006-06-11 09:26:15", "license": "5", "title": "This is where Liza's core group and dive group met, the room is now gone", "text": "", "album_id": "72157607015881191", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3123/2809698804_6e3d543f68_o.jpg", "secret": "797ae5517a", "media": "photo", "latitude": "0", "id": "2809698804", "tags": ""}, {"datetaken": "2006-06-11 09:28:03", "license": "5", "title": "Caroline welcomes us", "text": "", "album_id": "72157607015881191", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3007/2808851345_6fbf509fac_o.jpg", "secret": "428030bc0d", "media": "photo", "latitude": "0", "id": "2808851345", "tags": "caroline"}, {"datetaken": "2006-06-11 09:28:21", "license": "5", "title": "Caroline and Liza race down the banisters", "text": "", "album_id": "72157607015881191", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3242/2808851497_856c954f68_o.jpg", "secret": "60f58c7385", "media": "photo", "latitude": "0", "id": "2808851497", "tags": "liza caroline"}, {"datetaken": "2006-06-11 09:33:51", "license": "5", "title": "Dan shows off the new Senior High technology", "text": "", "album_id": "72157607015881191", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3181/2809699364_d16c647aa5_o.jpg", "secret": "56dc305670", "media": "photo", "latitude": "0", "id": "2809699364", "tags": "dan"}, {"datetaken": "2006-06-11 09:35:54", "license": "5", "title": "James Gardner leads his group in prayer", "text": "", "album_id": "72157607015881191", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3241/2809699516_00ce5537d8_o.jpg", "secret": "410c62b903", "media": "photo", "latitude": "0", "id": "2809699516", "tags": "james"}, {"datetaken": "2006-06-11 09:37:10", "license": "5", "title": "Gravity sign", "text": "", "album_id": "72157607015881191", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3289/2808852055_16c25fc1ae_o.jpg", "secret": "1ee771a6e7", "media": "photo", "latitude": "0", "id": "2808852055", "tags": "dan caroline"}, {"datetaken": "2006-06-11 09:37:36", "license": "5", "title": "Tall and grown up Mark Wilkerson", "text": "", "album_id": "72157607015881191", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3073/2809699854_eda73bd11a_o.jpg", "secret": "b0b7f3840b", "media": "photo", "latitude": "0", "id": "2809699854", "tags": ""}, {"datetaken": "2006-06-11 09:39:54", "license": "5", "title": "Brian in front of Junior High plasma screens", "text": "", "album_id": "72157607015881191", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3124/2809700014_d6ba80673f_o.jpg", "secret": "ea397458a6", "media": "photo", "latitude": "0", "id": "2809700014", "tags": "brian"}, {"datetaken": "2006-06-11 13:25:34", "license": "5", "title": "Mixing it up with the Baldwins and Stansburys", "text": "", "album_id": "72157607015881191", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3082/2809700202_1788004ef6_o.jpg", "secret": "2c2864bee8", "media": "photo", "latitude": "0", "id": "2809700202", "tags": "liza ellen joe carol peg aubrey"}, {"datetaken": "2006-06-11 13:29:36", "license": "5", "title": "Ali and Jade!", "text": "", "album_id": "72157607015881191", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3172/2809700406_4b86b8b7e8_o.jpg", "secret": "1ccaa1753f", "media": "photo", "latitude": "0", "id": "2809700406", "tags": "liza ali jade"}, {"datetaken": "2006-06-11 13:38:18", "license": "5", "title": "The new and improved Grace Chapel", "text": "", "album_id": "72157607015881191", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3270/2809698150_db8061eb94_o.jpg", "secret": "1f1acc6c4d", "media": "photo", "latitude": "0", "id": "2809698150", "tags": ""}, {"datetaken": "2004-10-02 16:59:53", "license": "5", "title": "A Real Space Shuttle", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3168/2810226914_12a18342e9_o.jpg", "secret": "a629971e05", "media": "photo", "latitude": "0", "id": "2810226914", "tags": ""}, {"datetaken": "2004-10-02 17:00:18", "license": "5", "title": "Up Close to the Shuttle", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3281/2810227078_28e95a17f6_o.jpg", "secret": "c784b07dc7", "media": "photo", "latitude": "0", "id": "2810227078", "tags": ""}, {"datetaken": "2004-10-02 17:00:31", "license": "5", "title": "The End", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3025/2809379675_6668c85615_o.jpg", "secret": "b8655e4f4a", "media": "photo", "latitude": "0", "id": "2809379675", "tags": ""}, {"datetaken": "2004-10-02 17:10:44", "license": "5", "title": "Mission Control, Historic Landmark", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3148/2810227396_475b637775_o.jpg", "secret": "e6bfee17fd", "media": "photo", "latitude": "0", "id": "2810227396", "tags": ""}, {"datetaken": "2004-10-02 17:18:47", "license": "5", "title": "Andrew pointing out where we are", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3119/2809379961_489486cf3f_o.jpg", "secret": "afe71757cf", "media": "photo", "latitude": "0", "id": "2809379961", "tags": "andrew"}, {"datetaken": "2004-10-02 17:19:38", "license": "5", "title": "Liza on the tram", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3190/2810227720_81e709f984_o.jpg", "secret": "571b19fc9a", "media": "photo", "latitude": "0", "id": "2810227720", "tags": "liza"}, {"datetaken": "2004-10-02 17:33:32", "license": "5", "title": "The fish tank (2 football fields long)", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3242/2809380329_0889cd097b_o.jpg", "secret": "84f05e139e", "media": "photo", "latitude": "0", "id": "2809380329", "tags": ""}, {"datetaken": "2004-10-02 17:34:50", "license": "5", "title": "Liza's initials (AEB), here symbolizing Brazilian space people", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3188/2809380507_6a632dce4a_o.jpg", "secret": "8e21f527fd", "media": "photo", "latitude": "0", "id": "2809380507", "tags": ""}, {"datetaken": "2004-10-02 17:35:57", "license": "5", "title": "A real Mock space Shuttle", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3088/2810228224_be7b5a6d10_o.jpg", "secret": "c3c0a07475", "media": "photo", "latitude": "0", "id": "2810228224", "tags": ""}, {"datetaken": "2004-10-02 17:37:16", "license": "5", "title": "Amusing sign", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3201/2809380797_0fd87f02b7_o.jpg", "secret": "6d092dd3fa", "media": "photo", "latitude": "0", "id": "2809380797", "tags": ""}, {"datetaken": "2004-10-02 17:39:07", "license": "5", "title": "Andrew and the mock Canadarm", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3216/2810228490_b59ce3f020_o.jpg", "secret": "5f0f535b3d", "media": "photo", "latitude": "0", "id": "2810228490", "tags": "andrew"}, {"datetaken": "2004-10-02 17:43:43", "license": "5", "title": "We like trains", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3053/2810228582_804671a4a9_o.jpg", "secret": "0e5d77fd24", "media": "photo", "latitude": "0", "id": "2810228582", "tags": ""}, {"datetaken": "2004-10-02 17:56:53", "license": "5", "title": "Andrew winning the space race", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3238/2809381151_b66c622d14_o.jpg", "secret": "b79f22321d", "media": "photo", "latitude": "0", "id": "2809381151", "tags": ""}, {"datetaken": "2004-10-02 17:57:11", "license": "5", "title": "Speeding Liza", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3213/2809381291_50152b5f45_o.jpg", "secret": "863623fc63", "media": "photo", "latitude": "0", "id": "2809381291", "tags": ""}, {"datetaken": "2004-10-02 18:00:08", "license": "5", "title": "Neither of us wanted our pic taken with the space toilet", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3080/2809381493_cc1d7d138f_o.jpg", "secret": "8bf44a1bc4", "media": "photo", "latitude": "0", "id": "2809381493", "tags": ""}, {"datetaken": "2004-10-02 18:01:31", "license": "5", "title": "Liza driving the shuttle", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3003/2809381633_6755b412b5_o.jpg", "secret": "bef873f7da", "media": "photo", "latitude": "0", "id": "2809381633", "tags": ""}, {"datetaken": "2004-10-02 18:03:21", "license": "5", "title": "Andrew getting in the shuttle", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3248/2810229406_5edaf9e215_o.jpg", "secret": "aaa6ccb4c3", "media": "photo", "latitude": "0", "id": "2810229406", "tags": ""}, {"datetaken": "2004-10-02 18:04:57", "license": "5", "title": "Andrew and his car", "text": "", "album_id": "72157607018707495", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3269/2810229492_2210f93e12_o.jpg", "secret": "c0f6484838", "media": "photo", "latitude": "0", "id": "2810229492", "tags": ""}, {"datetaken": "2010-01-01 00:33:44", "license": "4", "title": "With Coop, Ed and Joey", "text": "", "album_id": "72157622987335991", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4232524689_49bfd4bb6e_o.jpg", "secret": "f895456596", "media": "photo", "latitude": "0", "id": "4232524689", "tags": "centralpark running newyearseve"}, {"datetaken": "2010-01-01 00:48:35", "license": "4", "title": "Before the Race", "text": "", "album_id": "72157622987335991", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4233296922_04e3e80994_o.jpg", "secret": "8ca8062527", "media": "photo", "latitude": "0", "id": "4233296922", "tags": "centralpark running newyearseve"}, {"datetaken": "2010-01-01 00:58:28", "license": "4", "title": "Runners", "text": "", "album_id": "72157622987335991", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4233297208_8f8aaaf55b_o.jpg", "secret": "e9fea4891d", "media": "photo", "latitude": "0", "id": "4233297208", "tags": "centralpark running newyearseve"}, {"datetaken": "2010-01-01 00:58:42", "license": "4", "title": "Runners", "text": "", "album_id": "72157622987335991", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4232525449_eb6539a7bb_o.jpg", "secret": "d4e3ce29db", "media": "photo", "latitude": "0", "id": "4232525449", "tags": "centralpark running newyearseve"}, {"datetaken": "2010-01-01 00:59:17", "license": "4", "title": "Runners", "text": "", "album_id": "72157622987335991", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4232526101_05e8bbcc76_o.jpg", "secret": "4773ebf476", "media": "photo", "latitude": "0", "id": "4232526101", "tags": "centralpark running newyearseve"}, {"datetaken": "2010-01-01 00:59:30", "license": "4", "title": "Fireworks", "text": "", "album_id": "72157622987335991", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2542/4232526461_b9dc6497a1_o.jpg", "secret": "36f0d50393", "media": "photo", "latitude": "0", "id": "4232526461", "tags": "centralpark running newyearseve"}, {"datetaken": "2010-01-01 00:59:47", "license": "4", "title": "Fireworks", "text": "", "album_id": "72157622987335991", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4232526827_0068670002_o.jpg", "secret": "98f56c30c0", "media": "photo", "latitude": "0", "id": "4232526827", "tags": "centralpark running newyearseve"}, {"datetaken": "2010-01-01 00:59:56", "license": "4", "title": "Fireworks", "text": "", "album_id": "72157622987335991", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2530/4232527167_c55a6c49c2_o.jpg", "secret": "dc58c0a076", "media": "photo", "latitude": "0", "id": "4232527167", "tags": "centralpark running newyearseve"}, {"datetaken": "2010-01-01 01:00:17", "license": "4", "title": "Fireworks", "text": "", "album_id": "72157622987335991", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4232527521_01eb622367_o.jpg", "secret": "1ac1677e1c", "media": "photo", "latitude": "0", "id": "4232527521", "tags": "centralpark running newyearseve"}, {"datetaken": "2010-01-01 01:01:20", "license": "4", "title": "Runners", "text": "", "album_id": "72157622987335991", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4232527839_9856a300fa_o.jpg", "secret": "4cb8301751", "media": "photo", "latitude": "0", "id": "4232527839", "tags": "centralpark running newyearseve"}, {"datetaken": "2010-01-01 01:01:55", "license": "4", "title": "Runners", "text": "", "album_id": "72157622987335991", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2493/4232528175_20a6cebe2b_o.jpg", "secret": "822f66aaa2", "media": "photo", "latitude": "0", "id": "4232528175", "tags": "centralpark running newyearseve"}, {"datetaken": "2010-01-01 01:03:46", "license": "4", "title": "Runners", "text": "", "album_id": "72157622987335991", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4232528533_9191d56a83_o.jpg", "secret": "5be29de8b9", "media": "photo", "latitude": "0", "id": "4232528533", "tags": "centralpark running newyearseve"}, {"datetaken": "2010-01-01 01:04:02", "license": "4", "title": "Runners", "text": "", "album_id": "72157622987335991", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4232528939_402f0919c1_o.jpg", "secret": "c69d5eb755", "media": "photo", "latitude": "0", "id": "4232528939", "tags": "centralpark running newyearseve"}, {"datetaken": "2010-01-01 01:04:11", "license": "4", "title": "Runners", "text": "", "album_id": "72157622987335991", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2544/4233301342_2e0f666cdb_o.jpg", "secret": "f2b9412778", "media": "photo", "latitude": "0", "id": "4233301342", "tags": "centralpark running newyearseve"}, {"datetaken": "2010-01-01 01:04:29", "license": "4", "title": "Reaching the Starting Line", "text": "", "album_id": "72157622987335991", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4232529555_0fba3ed5e2_o.jpg", "secret": "2e0259af04", "media": "photo", "latitude": "0", "id": "4232529555", "tags": "centralpark running newyearseve"}, {"datetaken": "2010-01-01 01:09:11", "license": "4", "title": "Fireworks", "text": "", "album_id": "72157622987335991", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4232529895_a19db82f10_o.jpg", "secret": "8bcb6548e3", "media": "photo", "latitude": "0", "id": "4232529895", "tags": "centralpark running newyearseve"}, {"datetaken": "2010-01-01 01:09:19", "license": "4", "title": "Fireworks", "text": "", "album_id": "72157622987335991", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2641/4233302390_94d51faf7c_o.jpg", "secret": "c57934ae79", "media": "photo", "latitude": "0", "id": "4233302390", "tags": "centralpark running newyearseve"}, {"datetaken": "2006-12-25 10:38:42", "license": "1", "title": "DSC01154.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/142/345040295_db02ec6d8c_o.jpg", "secret": "db02ec6d8c", "media": "photo", "latitude": "41.033073", "id": "345040295", "tags": "christmas family"}, {"datetaken": "2006-12-25 10:40:59", "license": "1", "title": "DSC01156.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/160/345041369_f6274de2a1_o.jpg", "secret": "f6274de2a1", "media": "photo", "latitude": "41.033073", "id": "345041369", "tags": "christmas family"}, {"datetaken": "2006-12-25 10:41:40", "license": "1", "title": "DSC01158.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/159/345042358_c63ce407ae_o.jpg", "secret": "c63ce407ae", "media": "photo", "latitude": "41.033073", "id": "345042358", "tags": "christmas family"}, {"datetaken": "2006-12-25 10:43:24", "license": "1", "title": "DSC01159.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/138/345042836_ed05a7011a_o.jpg", "secret": "ed05a7011a", "media": "photo", "latitude": "41.033073", "id": "345042836", "tags": "christmas family"}, {"datetaken": "2006-12-25 10:47:48", "license": "1", "title": "DSC01160.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/151/345043329_b517f55fe3_o.jpg", "secret": "b517f55fe3", "media": "photo", "latitude": "41.033073", "id": "345043329", "tags": "christmas family"}, {"datetaken": "2006-12-25 10:53:24", "license": "1", "title": "DSC01162.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/131/345044356_c1307cbae5_o.jpg", "secret": "c1307cbae5", "media": "photo", "latitude": "41.033073", "id": "345044356", "tags": "christmas family"}, {"datetaken": "2006-12-25 10:54:53", "license": "1", "title": "DSC01163.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/132/345044832_1790370226_o.jpg", "secret": "1790370226", "media": "photo", "latitude": "41.033073", "id": "345044832", "tags": "christmas family"}, {"datetaken": "2006-12-25 11:00:14", "license": "1", "title": "DSC01165.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/139/345045820_264ce5c1ca_o.jpg", "secret": "264ce5c1ca", "media": "photo", "latitude": "41.033073", "id": "345045820", "tags": "christmas family"}, {"datetaken": "2006-12-25 11:00:35", "license": "1", "title": "DSC01166.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/138/345046325_ea9c9166da_o.jpg", "secret": "ea9c9166da", "media": "photo", "latitude": "41.033073", "id": "345046325", "tags": "christmas family"}, {"datetaken": "2006-12-25 11:01:38", "license": "1", "title": "DSC01167.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/127/345046756_639be2c098_o.jpg", "secret": "639be2c098", "media": "photo", "latitude": "41.033073", "id": "345046756", "tags": "christmas family"}, {"datetaken": "2006-12-25 11:03:34", "license": "1", "title": "DSC01168.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/154/345047229_ea1e3a6b35_o.jpg", "secret": "ea1e3a6b35", "media": "photo", "latitude": "41.033073", "id": "345047229", "tags": "christmas family"}, {"datetaken": "2006-12-25 11:04:59", "license": "1", "title": "DSC01169.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/150/345047681_fe98d1e6ea_o.jpg", "secret": "fe98d1e6ea", "media": "photo", "latitude": "41.033073", "id": "345047681", "tags": "christmas family"}, {"datetaken": "2006-12-25 11:07:57", "license": "1", "title": "DSC01170.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/142/345048227_9febede50c_o.jpg", "secret": "9febede50c", "media": "photo", "latitude": "41.033073", "id": "345048227", "tags": "christmas family"}, {"datetaken": "2006-12-25 11:09:41", "license": "1", "title": "DSC01171.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/34/345048727_fd1ff45558_o.jpg", "secret": "fd1ff45558", "media": "photo", "latitude": "41.033073", "id": "345048727", "tags": "christmas family"}, {"datetaken": "2006-12-25 11:09:53", "license": "1", "title": "DSC01172.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/153/345049235_06bc870dfe_o.jpg", "secret": "06bc870dfe", "media": "photo", "latitude": "41.033073", "id": "345049235", "tags": "christmas family"}, {"datetaken": "2006-12-25 11:10:50", "license": "1", "title": "DSC01173.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/148/345049693_d76b4957eb_o.jpg", "secret": "d76b4957eb", "media": "photo", "latitude": "41.033073", "id": "345049693", "tags": "christmas family"}, {"datetaken": "2006-12-25 11:12:46", "license": "1", "title": "DSC01174.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/155/345050192_fe52688d90_o.jpg", "secret": "fe52688d90", "media": "photo", "latitude": "41.033073", "id": "345050192", "tags": "christmas family"}, {"datetaken": "2006-12-25 11:20:04", "license": "1", "title": "DSC01175.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/131/345050674_2f3350a221_o.jpg", "secret": "2f3350a221", "media": "photo", "latitude": "41.033073", "id": "345050674", "tags": "christmas family"}, {"datetaken": "2006-12-25 11:27:28", "license": "1", "title": "DSC01176.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/152/345051201_4f3fd9644a_o.jpg", "secret": "4f3fd9644a", "media": "photo", "latitude": "41.033073", "id": "345051201", "tags": "christmas family"}, {"datetaken": "2006-12-25 11:33:42", "license": "1", "title": "DSC01177.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/125/345051681_ee7c0351b8_o.jpg", "secret": "ee7c0351b8", "media": "photo", "latitude": "41.033073", "id": "345051681", "tags": "christmas family"}, {"datetaken": "2006-12-25 11:35:40", "license": "1", "title": "DSC01178.JPG", "text": "", "album_id": "72157594458437632", "longitude": "-84.014343", "url_o": "https://farm1.staticflickr.com/141/345052227_0578623e54_o.jpg", "secret": "0578623e54", "media": "photo", "latitude": "41.033073", "id": "345052227", "tags": "christmas family"}, {"datetaken": "2010-01-02 09:09:42", "license": "4", "title": "Baby Seal 5", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2739/4240069109_a48e15b43b_o.jpg", "secret": "57d29acd1f", "media": "photo", "latitude": "0", "id": "4240069109", "tags": "d40"}, {"datetaken": "2010-01-02 09:16:54", "license": "4", "title": "Baby Seal 6", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4240845900_df5475349f_o.jpg", "secret": "958100c563", "media": "photo", "latitude": "0", "id": "4240845900", "tags": "d40"}, {"datetaken": "2010-01-02 09:20:17", "license": "4", "title": "Baby Seal 7", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4240075057_0744b4f330_o.jpg", "secret": "1d17e0b4a7", "media": "photo", "latitude": "0", "id": "4240075057", "tags": "d40"}, {"datetaken": "2010-01-02 09:21:42", "license": "4", "title": "Seal", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4240079625_1751b85337_o.jpg", "secret": "f9f95bd35b", "media": "photo", "latitude": "0", "id": "4240079625", "tags": "d40"}, {"datetaken": "2010-01-02 09:22:21", "license": "4", "title": "Seal Pup", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2527/4263088334_ce8e1a96b0_o.jpg", "secret": "555d85ac4e", "media": "photo", "latitude": "0", "id": "4263088334", "tags": "d40"}, {"datetaken": "2010-01-02 09:22:28", "license": "4", "title": "Baby Seal", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2538/4240856466_d886f4941f_o.jpg", "secret": "628a004364", "media": "photo", "latitude": "0", "id": "4240856466", "tags": "d40"}, {"datetaken": "2010-01-02 09:22:34", "license": "4", "title": "Baby Seal 1", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4240860208_d96cf1008e_o.jpg", "secret": "f78f18d108", "media": "photo", "latitude": "0", "id": "4240860208", "tags": "d40"}, {"datetaken": "2010-01-02 09:23:37", "license": "4", "title": "Baby Seal 3", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4240863612_31673d5281_o.jpg", "secret": "3465c5102f", "media": "photo", "latitude": "0", "id": "4240863612", "tags": "d40"}, {"datetaken": "2010-01-02 09:28:04", "license": "4", "title": "Seal 1", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4240867510_356ff1586c_o.jpg", "secret": "49bc096c0c", "media": "photo", "latitude": "0", "id": "4240867510", "tags": "d40"}, {"datetaken": "2010-01-02 09:33:47", "license": "4", "title": "Seal Scratching", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4262340953_eedd5e914c_o.jpg", "secret": "4c1255dbb8", "media": "photo", "latitude": "0", "id": "4262340953", "tags": "d40"}, {"datetaken": "2010-01-02 09:36:50", "license": "4", "title": "Seal Pup Feeding", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/4263096440_3a240eff9a_o.jpg", "secret": "5c5f7831fa", "media": "photo", "latitude": "0", "id": "4263096440", "tags": "d40"}, {"datetaken": "2010-01-02 09:44:11", "license": "4", "title": "Baby Seal 4", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2782/4240870628_c3c6709732_o.jpg", "secret": "75a871be8b", "media": "photo", "latitude": "0", "id": "4240870628", "tags": "d40"}, {"datetaken": "2010-01-02 09:44:43", "license": "4", "title": "Seal Pup 1", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4262347589_4b0793f770_o.jpg", "secret": "6f074c4845", "media": "photo", "latitude": "0", "id": "4262347589", "tags": "d40"}, {"datetaken": "2010-01-02 09:49:52", "license": "4", "title": "Mark", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4240102269_f076bed542_o.jpg", "secret": "be58188676", "media": "photo", "latitude": "0", "id": "4240102269", "tags": "d40"}, {"datetaken": "2010-01-02 10:03:08", "license": "4", "title": "Leigh", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2513/4240105151_747a78db41_o.jpg", "secret": "65f27bdc14", "media": "photo", "latitude": "0", "id": "4240105151", "tags": "d40"}, {"datetaken": "2010-01-02 10:07:33", "license": "4", "title": "Teasel 5", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4240111795_58a8c2c5e0_o.jpg", "secret": "e73507e5f5", "media": "photo", "latitude": "0", "id": "4240111795", "tags": "d40"}, {"datetaken": "2010-01-02 11:21:11", "license": "4", "title": "Beach", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4240116661_c9034d9972_o.jpg", "secret": "8e42267713", "media": "photo", "latitude": "0", "id": "4240116661", "tags": "d40"}, {"datetaken": "2010-01-02 11:30:10", "license": "4", "title": "Teasel", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2538/4240893428_28a19295b1_o.jpg", "secret": "eac2983eaf", "media": "photo", "latitude": "0", "id": "4240893428", "tags": "d40"}, {"datetaken": "2010-01-02 11:48:51", "license": "4", "title": "Teasel 1", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2544/4240124735_1f746ec73c_o.jpg", "secret": "0a695b8dc9", "media": "photo", "latitude": "0", "id": "4240124735", "tags": "d40"}, {"datetaken": "2010-01-02 11:50:41", "license": "4", "title": "Teasel 4", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4240901222_2c4f22ff11_o.jpg", "secret": "a0d714fcab", "media": "photo", "latitude": "0", "id": "4240901222", "tags": "d40"}, {"datetaken": "2010-01-02 11:50:44", "license": "4", "title": "Teasel 2", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4240133037_7dd6fcc7df_o.jpg", "secret": "f5bb317109", "media": "photo", "latitude": "0", "id": "4240133037", "tags": "d40"}, {"datetaken": "2010-01-02 11:51:07", "license": "4", "title": "Racing the Waves", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2503/4240910282_41f3f4ceb8_o.jpg", "secret": "c5060674d6", "media": "photo", "latitude": "0", "id": "4240910282", "tags": "d40"}, {"datetaken": "2010-01-02 11:59:17", "license": "4", "title": "Teasel 3", "text": "", "album_id": "72157623003626359", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4240913442_e640da9546_o.jpg", "secret": "09ee0d4f4b", "media": "photo", "latitude": "0", "id": "4240913442", "tags": "d40"}, {"datetaken": "2010-03-14 17:56:51", "license": "5", "title": "Makers at work", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4432831058_fc26224872_o.jpg", "secret": "333dbe6ed4", "media": "photo", "latitude": "0", "id": "4432831058", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:56:54", "license": "5", "title": "Sparking coils", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4432058479_50b995b82a_o.jpg", "secret": "c143e9689f", "media": "photo", "latitude": "0", "id": "4432058479", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:56:59", "license": "5", "title": "Solved again", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4432058695_4eef787613_o.jpg", "secret": "9ed00e7dd3", "media": "photo", "latitude": "0", "id": "4432058695", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:57:04", "license": "5", "title": "Hexapod robot stealing a creme egg", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2755/4432831688_94ae884cff_o.jpg", "secret": "ef2eb3f509", "media": "photo", "latitude": "0", "id": "4432831688", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:57:07", "license": "5", "title": "Tesla coils", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2732/4432831864_c3374f4081_o.jpg", "secret": "1432f51c03", "media": "photo", "latitude": "0", "id": "4432831864", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:57:11", "license": "5", "title": "Musical tesla coils", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4432059275_c5062d22bb_o.jpg", "secret": "d21d8e24ea", "media": "photo", "latitude": "0", "id": "4432059275", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:57:16", "license": "5", "title": "Gallery view", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4432832274_5bf5753957_o.jpg", "secret": "c772db9792", "media": "photo", "latitude": "0", "id": "4432832274", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:57:22", "license": "5", "title": "Solving the cube", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4432059753_e8bc6eeec0_o.jpg", "secret": "22e2e37179", "media": "photo", "latitude": "0", "id": "4432059753", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:57:28", "license": "5", "title": "View from the gallery", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4432832754_d577b69b25_o.jpg", "secret": "53b039acde", "media": "photo", "latitude": "0", "id": "4432832754", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:57:35", "license": "5", "title": "Robot horse in action", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4432060379_9fcf6927c4_o.jpg", "secret": "3ebbf7523d", "media": "photo", "latitude": "0", "id": "4432060379", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:57:41", "license": "5", "title": "11 seconds and nearly done", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4432833418_82dab45546_o.jpg", "secret": "9ccc18d48b", "media": "photo", "latitude": "0", "id": "4432833418", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:57:45", "license": "5", "title": "Drag racing power tools...", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4432833614_6a0dd84b6d_o.jpg", "secret": "045d0cdb4f", "media": "photo", "latitude": "0", "id": "4432833614", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:57:50", "license": "5", "title": "Solving the Rubic cube", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4432061039_8dac2fb26f_o.jpg", "secret": "319ede8628", "media": "photo", "latitude": "0", "id": "4432061039", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:57:55", "license": "5", "title": "RC Toys", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4432834016_bf2fdf2fae_o.jpg", "secret": "e083167d08", "media": "photo", "latitude": "0", "id": "4432834016", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:58:03", "license": "5", "title": "Robotic horse", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4432061647_a34cec852f_o.jpg", "secret": "75357fa26a", "media": "photo", "latitude": "0", "id": "4432061647", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:58:09", "license": "5", "title": "Makers", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2728/4432834580_9bfcbcee41_o.jpg", "secret": "9079bed743", "media": "photo", "latitude": "0", "id": "4432834580", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:58:13", "license": "5", "title": "Rubic cube solving robot", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2767/4432062141_7cb485d00f_o.jpg", "secret": "712efda142", "media": "photo", "latitude": "0", "id": "4432062141", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:58:18", "license": "5", "title": "Butter fingers...", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2725/4432835028_9f66796e3e_o.jpg", "secret": "3200e18ab3", "media": "photo", "latitude": "0", "id": "4432835028", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2010-03-14 17:58:25", "license": "5", "title": "Dalek", "text": "", "album_id": "72157623618977978", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4432835388_61ce727266_o.jpg", "secret": "ea20d4fda2", "media": "photo", "latitude": "0", "id": "4432835388", "tags": "uk newcastle faire maker 2010 makerfaireuk"}, {"datetaken": "2007-08-11 06:19:24", "license": "1", "title": "Dw & I", "text": "", "album_id": "72157601365594266", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1021/1081467225_f58e7aec58_o.jpg", "secret": "577e05305c", "media": "photo", "latitude": "0", "id": "1081467225", "tags": ""}, {"datetaken": "2007-08-11 06:19:25", "license": "1", "title": "Jack Roush & I", "text": "", "album_id": "72157601365594266", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1220/1082321450_b3f833bdeb_o.jpg", "secret": "71902760de", "media": "photo", "latitude": "0", "id": "1082321450", "tags": ""}, {"datetaken": "2007-08-11 06:19:25", "license": "0", "title": "Lobster Boy", "text": "", "album_id": "72157601365594266", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1321/1082321576_97e882c0d0_o.jpg", "secret": "a81ce47a44", "media": "photo", "latitude": "0", "id": "1082321576", "tags": ""}, {"datetaken": "2007-08-11 06:19:41", "license": "0", "title": "new_pacifier", "text": "", "album_id": "72157601365594266", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1085/1082323630_4d6f608879_o.jpg", "secret": "7783596304", "media": "photo", "latitude": "0", "id": "1082323630", "tags": ""}, {"datetaken": "2007-08-11 06:19:42", "license": "1", "title": "Michael Waltrip (#15) and I", "text": "", "album_id": "72157601365594266", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1403/1082323860_1be9657c9a_o.jpg", "secret": "0589d5b4e4", "media": "photo", "latitude": "0", "id": "1082323860", "tags": ""}, {"datetaken": "2007-08-11 06:19:43", "license": "0", "title": "Me at Homestead Speedway", "text": "", "album_id": "72157601365594266", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1123/1081469793_b4a568fab5_o.jpg", "secret": "4010474caa", "media": "photo", "latitude": "0", "id": "1081469793", "tags": ""}, {"datetaken": "2007-08-11 06:19:48", "license": "0", "title": "Little Erika and I", "text": "", "album_id": "72157601365594266", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1159/1082324494_75a8c9077f_o.jpg", "secret": "9a971659c6", "media": "photo", "latitude": "0", "id": "1082324494", "tags": ""}, {"datetaken": "2007-08-11 06:19:48", "license": "0", "title": "Pictures 1 006", "text": "", "album_id": "72157601365594266", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1269/1081470483_22ae2594e2_o.jpg", "secret": "ca128a5ccf", "media": "photo", "latitude": "0", "id": "1081470483", "tags": ""}, {"datetaken": "2007-08-11 06:19:49", "license": "1", "title": "Homestead 014", "text": "", "album_id": "72157601365594266", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1092/1082324742_a4b607a16d_o.jpg", "secret": "4e3342c0c2", "media": "photo", "latitude": "0", "id": "1082324742", "tags": ""}, {"datetaken": "2007-08-11 06:19:50", "license": "0", "title": "Cobra", "text": "", "album_id": "72157601365594266", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1302/1081470737_d804e24533_o.jpg", "secret": "2f7f7d728f", "media": "photo", "latitude": "0", "id": "1081470737", "tags": ""}, {"datetaken": "2007-08-11 06:19:51", "license": "0", "title": "Hawaii 1 011", "text": "", "album_id": "72157601365594266", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1293/1081470817_df39e1b9c6_o.jpg", "secret": "c85356a2af", "media": "photo", "latitude": "0", "id": "1081470817", "tags": ""}, {"datetaken": "2007-08-11 06:19:52", "license": "1", "title": "__tn_Me+at+Homestead+Speedway", "text": "", "album_id": "72157601365594266", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1092/1081470917_9126f1a16e_o.jpg", "secret": "08bc3e1191", "media": "photo", "latitude": "0", "id": "1081470917", "tags": ""}, {"datetaken": "2007-08-11 06:19:52", "license": "1", "title": "Daytona Bud Shootout 071", "text": "", "album_id": "72157601365594266", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1264/1081470985_a50aab9ce4_o.jpg", "secret": "610c3a64bf", "media": "photo", "latitude": "0", "id": "1081470985", "tags": ""}, {"datetaken": "2007-08-11 06:19:53", "license": "0", "title": "DSC00984", "text": "", "album_id": "72157601365594266", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1005/1082325176_034a093685_o.jpg", "secret": "2d789c2a02", "media": "photo", "latitude": "0", "id": "1082325176", "tags": ""}, {"datetaken": "2007-08-11 06:19:54", "license": "0", "title": "DSC00977", "text": "", "album_id": "72157601365594266", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1153/1081471143_7d8a3da30b_o.jpg", "secret": "69b7422e1e", "media": "photo", "latitude": "0", "id": "1081471143", "tags": ""}, {"datetaken": "2007-08-11 06:20:10", "license": "0", "title": "DSC00977", "text": "", "album_id": "72157601365594266", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1004/1081473283_17e80157ef_o.jpg", "secret": "90ffceae17", "media": "photo", "latitude": "0", "id": "1081473283", "tags": ""}, {"datetaken": "2006-11-04 12:04:50", "license": "1", "title": "Jeff Gordon exiting the garage area", "text": "", "album_id": "72157594481294190", "longitude": "-97.283388", "url_o": "https://farm1.staticflickr.com/153/358497706_27ce888ec3_o.jpg", "secret": "27ce888ec3", "media": "photo", "latitude": "33.037089", "id": "358497706", "tags": "chevrolet pits tires jeffgordon chevy 24 carlo fans monte dupont rainbowwarrior canon500mmf40l"}, {"datetaken": "2006-11-04 12:06:18", "license": "1", "title": "Michael Waltrip", "text": "", "album_id": "72157594481294190", "longitude": "-97.283388", "url_o": "https://farm1.staticflickr.com/165/358500064_c793e3542b_o.jpg", "secret": "c793e3542b", "media": "photo", "latitude": "33.037089", "id": "358500064", "tags": "blue pits garage mikey napa dodge fans 55 charger michaelwaltrip napaautoparts canon500mmf40l"}, {"datetaken": "2006-11-04 12:07:39", "license": "1", "title": "Ken Schrader", "text": "", "album_id": "72157594481294190", "longitude": "-97.281199", "url_o": "https://farm1.staticflickr.com/129/358500516_90acec8d15_o.jpg", "secret": "90acec8d15", "media": "photo", "latitude": "33.040651", "id": "358500516", "tags": "ford 21 airforce fusion motorcraft kenschrader woodbrothers canon500mmf40l"}, {"datetaken": "2006-11-04 12:08:43", "license": "1", "title": "Elliott Sadler", "text": "", "album_id": "72157594481294190", "longitude": "-97.281199", "url_o": "https://farm1.staticflickr.com/164/358500797_7bcf2dc037_o.jpg", "secret": "7bcf2dc037", "media": "photo", "latitude": "33.040651", "id": "358500797", "tags": "red dodge 19 charger elliottsadler rayevernham canon500mmf40l"}, {"datetaken": "2006-11-04 12:09:46", "license": "1", "title": "Denny Hamlin", "text": "", "album_id": "72157594481294190", "longitude": "-97.281199", "url_o": "https://farm1.staticflickr.com/154/358501270_724819a752_o.jpg", "secret": "724819a752", "media": "photo", "latitude": "33.040651", "id": "358501270", "tags": "black chevrolet 11 chevy carlo monte fedex kinkos dennyhamlin joegibbsracing canon500mmf40l"}, {"datetaken": "2006-11-04 12:10:00", "license": "1", "title": "Traffic in the Pits", "text": "", "album_id": "72157594481294190", "longitude": "-97.283388", "url_o": "https://farm1.staticflickr.com/133/358502630_146da192e8_o.jpg", "secret": "146da192e8", "media": "photo", "latitude": "33.037089", "id": "358502630", "tags": "ford 21 jeffgordon fusion dupont motorcraft kenschrader woodbrothers canon500mmf40l"}, {"datetaken": "2006-11-04 12:10:34", "license": "1", "title": "WM", "text": "", "album_id": "72157594481294190", "longitude": "-97.283388", "url_o": "https://farm1.staticflickr.com/123/358503490_97ac7dc579_o.jpg", "secret": "97ac7dc579", "media": "photo", "latitude": "33.037089", "id": "358503490", "tags": "green chevrolet 14 chevy carlo monte mb2 wastemanagement sterlingmarlin canon500mmf40l"}, {"datetaken": "2006-11-04 12:11:14", "license": "1", "title": "Menards", "text": "", "album_id": "72157594481294190", "longitude": "-97.283388", "url_o": "https://farm1.staticflickr.com/164/358503819_5338f1f566_o.jpg", "secret": "5338f1f566", "media": "photo", "latitude": "33.037089", "id": "358503819", "tags": "black wheel yellow eagle tire energizer q goodyear jimbeam harrahs menards canon500mmf40l"}, {"datetaken": "2006-11-04 12:11:28", "license": "1", "title": "Bobby Labonte", "text": "", "album_id": "72157594481294190", "longitude": "-97.281199", "url_o": "https://farm1.staticflickr.com/143/358504169_9a0d3888f1_o.jpg", "secret": "9a0d3888f1", "media": "photo", "latitude": "33.040651", "id": "358504169", "tags": "car race racecar 2006 racing betty nascar dodge cheerios charger crocker 43 bettycrocker nextelcup texasmotorspeedway bobbylabonte dickies500 pettyenterprises canon500mmf40l"}, {"datetaken": "2006-11-04 12:11:56", "license": "1", "title": "Tony Stewart", "text": "", "album_id": "72157594481294190", "longitude": "-97.281199", "url_o": "https://farm1.staticflickr.com/146/358504805_ded783787e_o.jpg", "secret": "ded783787e", "media": "photo", "latitude": "33.040651", "id": "358504805", "tags": "chevrolet chevy tonystewart carlo monte 20 homedepot canon500mmf40l tonystewartonly"}, {"datetaken": "2006-11-04 12:12:05", "license": "1", "title": "Junior", "text": "", "album_id": "72157594481294190", "longitude": "-97.281199", "url_o": "https://farm1.staticflickr.com/142/358505120_c6868f4217_o.jpg", "secret": "c6868f4217", "media": "photo", "latitude": "33.040651", "id": "358505120", "tags": "chevrolet 8 jr chevy nascar junior carlo bud monte budweiser dei daleearnhardt texasmotorspeedway fortworthtexas kingofbeers dickies500 canon500mmf40l"}, {"datetaken": "2006-11-04 12:14:25", "license": "1", "title": "This is beer.", "text": "", "album_id": "72157594481294190", "longitude": "-97.283388", "url_o": "https://farm1.staticflickr.com/129/358506031_7df4083519_o.jpg", "secret": "7df4083519", "media": "photo", "latitude": "33.037089", "id": "358506031", "tags": "chevrolet 8 jr chevy junior carlo monte budweiser dei daleearnhardt canon500mmf40l thisisbeer"}, {"datetaken": "2006-11-04 12:16:29", "license": "1", "title": "Thanks for the Memories, Terry", "text": "", "album_id": "72157594481294190", "longitude": "-97.283388", "url_o": "https://farm1.staticflickr.com/155/358507357_ba22ddd79e_o.jpg", "secret": "ba22ddd79e", "media": "photo", "latitude": "33.037089", "id": "358507357", "tags": "red chevrolet car chevy terry carlo monte kelloggs 44 retirement labonte terrylabonte hendrickmotorsports thanksforthememories canon500mmf40l"}, {"datetaken": "2006-11-04 12:20:00", "license": "1", "title": "Clint Bowyer Leaving the Garage", "text": "", "album_id": "72157594481294190", "longitude": "-97.283388", "url_o": "https://farm1.staticflickr.com/165/358509997_00a00def96_o.jpg", "secret": "00a00def96", "media": "photo", "latitude": "33.037089", "id": "358509997", "tags": "chevrolet chevy carlo fans monte jackdaniels 07 richardchildress clintbowyer canon500mmf40l"}, {"datetaken": "2006-11-04 12:24:37", "license": "1", "title": "Clint Bowyer", "text": "", "album_id": "72157594481294190", "longitude": "-97.281199", "url_o": "https://farm1.staticflickr.com/149/358510619_9dce1738c7_o.jpg", "secret": "9dce1738c7", "media": "photo", "latitude": "33.040651", "id": "358510619", "tags": "chevrolet chevy carlo monte jackdaniels 07 richardchildress clintbowyer canon500mmf40l"}, {"datetaken": "2006-11-04 12:25:07", "license": "1", "title": "Terry Labonte's Last Cup Car", "text": "", "album_id": "72157594481294190", "longitude": "-97.284364", "url_o": "https://farm1.staticflickr.com/124/358512859_77c121bfce_o.jpg", "secret": "77c121bfce", "media": "photo", "latitude": "33.037449", "id": "358512859", "tags": "red chevrolet car chevy terry carlo monte kelloggs 44 labonte canon500mmf40l"}, {"datetaken": "2006-11-04 12:27:27", "license": "1", "title": "Perspective on a Corner", "text": "", "album_id": "72157594481294190", "longitude": "-97.281199", "url_o": "https://farm1.staticflickr.com/161/358513769_d64836ceb9_o.jpg", "secret": "d64836ceb9", "media": "photo", "latitude": "33.040651", "id": "358513769", "tags": "chevrolet corner 8 chevy junior carlo bud monte lowes 48 daleearnhardtjr jimmiejohnson canon500mmf40l"}, {"datetaken": "2006-11-04 12:29:26", "license": "1", "title": "Clint Bowyer - Tire Inspection", "text": "", "album_id": "72157594481294190", "longitude": "-97.284139", "url_o": "https://farm1.staticflickr.com/147/358515855_936fa26ae3_o.jpg", "secret": "936fa26ae3", "media": "photo", "latitude": "33.037854", "id": "358515855", "tags": "chevrolet jack inspection tire pit daniels carlo clint monte pressure 07 goodyear directv bowyer canon500mmf40l"}, {"datetaken": "2010-03-10 15:19:53", "license": "3", "title": "Reading Terminal Market", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2762/4455910097_21dfeb888a_o.jpg", "secret": "fc8f93b401", "media": "photo", "latitude": "0", "id": "4455910097", "tags": "travel philadelphia sra"}, {"datetaken": "2010-03-10 15:27:33", "license": "3", "title": "DiNic's pork sandwich w/ broccoli rabe", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2736/4455909777_175e7b60f9_o.jpg", "secret": "8facf1a13d", "media": "photo", "latitude": "0", "id": "4455909777", "tags": "travel philadelphia sra"}, {"datetaken": "2010-03-10 15:51:54", "license": "3", "title": "Reading Terminal Market", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4456688394_dffa1965eb_o.jpg", "secret": "1c3d969372", "media": "photo", "latitude": "0", "id": "4456688394", "tags": "travel philadelphia sra"}, {"datetaken": "2010-03-10 15:55:16", "license": "3", "title": "Reading Terminal Market", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4456688408_d2b9300a41_o.jpg", "secret": "6af63081df", "media": "photo", "latitude": "0", "id": "4456688408", "tags": "travel philadelphia sra"}, {"datetaken": "2010-03-10 15:56:48", "license": "3", "title": "Reading Terminal Market", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4455909831_069c7b77e0_o.jpg", "secret": "779ec22a69", "media": "photo", "latitude": "0", "id": "4455909831", "tags": "travel philadelphia sra"}, {"datetaken": "2010-03-10 15:58:59", "license": "3", "title": "Philadelphia comic book stand", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2776/4456688456_c4776d2a15_o.jpg", "secret": "d4c6584040", "media": "photo", "latitude": "0", "id": "4456688456", "tags": "travel philadelphia comicbooks sra"}, {"datetaken": "2010-03-10 16:06:11", "license": "3", "title": "2010_March_Philadephia-7", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2732/4456688474_eb7c216506_o.jpg", "secret": "2cbccc5075", "media": "photo", "latitude": "0", "id": "4456688474", "tags": "travel philadelphia sra"}, {"datetaken": "2010-03-10 16:08:22", "license": "3", "title": "Chinatown street signs, Philadelphia", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4455909905_783776e194_o.jpg", "secret": "7d7ae72f08", "media": "photo", "latitude": "0", "id": "4455909905", "tags": "travel philadelphia sra"}, {"datetaken": "2010-03-10 16:10:56", "license": "3", "title": "Race Street, Philadelphia", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4456688492_496014555d_o.jpg", "secret": "17d114fd11", "media": "photo", "latitude": "0", "id": "4456688492", "tags": "travel philadelphia sra"}, {"datetaken": "2010-03-10 16:15:17", "license": "3", "title": "2010_March_Philadephia-10", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4455909933_3db0baf694_o.jpg", "secret": "3a4446ab11", "media": "photo", "latitude": "0", "id": "4455909933", "tags": "travel philadelphia sra"}, {"datetaken": "2010-03-10 16:44:34", "license": "3", "title": "Chinatown, Philadelphia", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4456688568_dfecc48601_o.jpg", "secret": "a5b836abdd", "media": "photo", "latitude": "0", "id": "4456688568", "tags": "travel philadelphia sra"}, {"datetaken": "2010-03-10 16:47:24", "license": "3", "title": "2010_March_Philadephia-12", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4456688604_0e1cfbc09e_o.jpg", "secret": "3195ae486d", "media": "photo", "latitude": "0", "id": "4456688604", "tags": "travel philadelphia sra"}, {"datetaken": "2010-03-10 16:47:35", "license": "3", "title": "2010_March_Philadephia-13", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4455910033_f678456f7d_o.jpg", "secret": "d4caccc3dc", "media": "photo", "latitude": "0", "id": "4455910033", "tags": "travel philadelphia sra"}, {"datetaken": "2010-03-10 16:49:10", "license": "3", "title": "wawa typefaces", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4455910057_1349f6b20b_o.jpg", "secret": "2f7a67dba9", "media": "photo", "latitude": "0", "id": "4455910057", "tags": "travel philadelphia sra"}, {"datetaken": "2010-03-10 16:51:42", "license": "3", "title": "wawa typefaces", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4455910075_95c24e3fd8_o.jpg", "secret": "5bae7198f2", "media": "photo", "latitude": "0", "id": "4455910075", "tags": "travel philadelphia sra"}, {"datetaken": "2010-03-11 12:31:33", "license": "3", "title": "Spataro cheesesteak", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4455862105_bdfd4abb39_o.jpg", "secret": "0becb7fd19", "media": "photo", "latitude": "0", "id": "4455862105", "tags": "philadelphia sandwich cheesesteak sra readingterminalmarket"}, {"datetaken": "2010-03-12 11:08:35", "license": "3", "title": "JimsCheesesteak", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2738/4455919305_7faf285b24_o.jpg", "secret": "d02b13c02f", "media": "photo", "latitude": "0", "id": "4455919305", "tags": "philadelphia sra"}, {"datetaken": "2010-03-12 11:10:51", "license": "3", "title": "JimsCheesesteak-2", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4455919251_fc0eecf5e0_o.jpg", "secret": "013800a2ca", "media": "photo", "latitude": "0", "id": "4455919251", "tags": "philadelphia sra"}, {"datetaken": "2010-03-12 11:12:26", "license": "3", "title": "JimsCheesesteak-3", "text": "", "album_id": "72157623675822498", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4456697748_6211ea12f9_o.jpg", "secret": "7715c74738", "media": "photo", "latitude": "0", "id": "4456697748", "tags": "philadelphia cheesesteak sra"}, {"datetaken": "2010-02-15 15:35:24", "license": "6", "title": "1", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4385572316_3afe994803_o.jpg", "secret": "09d8e25b2f", "media": "photo", "latitude": "0", "id": "4385572316", "tags": "liam races plumpton treadwell ballybach"}, {"datetaken": "2010-02-15 15:35:25", "license": "6", "title": "2", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4384810097_2807618c5e_o.jpg", "secret": "f2758eee48", "media": "photo", "latitude": "0", "id": "4384810097", "tags": "liam races plumpton treadwell ballybach"}, {"datetaken": "2010-02-15 15:35:25", "license": "6", "title": "3", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2715/4385572926_5dd8000393_o.jpg", "secret": "0cc1f4643c", "media": "photo", "latitude": "0", "id": "4385572926", "tags": "liam races plumpton treadwell ballybach"}, {"datetaken": "2010-02-15 15:35:25", "license": "6", "title": "4", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4385573164_eb7171df3b_o.jpg", "secret": "3481fb81d0", "media": "photo", "latitude": "0", "id": "4385573164", "tags": "liam races plumpton treadwell ballybach"}, {"datetaken": "2010-02-15 15:35:26", "license": "6", "title": "5", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4384810751_61308c03f8_o.jpg", "secret": "3f9247ff16", "media": "photo", "latitude": "0", "id": "4384810751", "tags": "liam races plumpton treadwell ballybach"}, {"datetaken": "2010-02-15 15:35:26", "license": "6", "title": "6", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2783/4385573576_d1bd6499c3_o.jpg", "secret": "9eb0aa5f07", "media": "photo", "latitude": "0", "id": "4385573576", "tags": "liam races plumpton treadwell ballybach"}, {"datetaken": "2010-02-15 15:35:26", "license": "6", "title": "7", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2747/4385573796_ba32044434_o.jpg", "secret": "644b34debb", "media": "photo", "latitude": "0", "id": "4385573796", "tags": "liam races plumpton treadwell ballybach"}, {"datetaken": "2010-02-15 15:35:26", "license": "6", "title": "8", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2767/4385574040_9404768f6a_o.jpg", "secret": "99ea441ed3", "media": "photo", "latitude": "0", "id": "4385574040", "tags": "liam races plumpton treadwell ballybach"}, {"datetaken": "2010-02-15 15:35:32", "license": "6", "title": "9", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4384811675_fd471d1783_o.jpg", "secret": "191c173e20", "media": "photo", "latitude": "0", "id": "4384811675", "tags": "liam races plumpton treadwell ballybach"}, {"datetaken": "2010-02-15 15:35:35", "license": "6", "title": "11", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4384812189_d751237c5a_o.jpg", "secret": "94cfc56950", "media": "photo", "latitude": "0", "id": "4384812189", "tags": ""}, {"datetaken": "2010-02-15 15:35:35", "license": "6", "title": "12", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2739/4384812501_f5da4c461e_o.jpg", "secret": "b2f0762465", "media": "photo", "latitude": "0", "id": "4384812501", "tags": ""}, {"datetaken": "2010-02-15 15:35:35", "license": "6", "title": "13", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4385575510_1e880eeff5_o.jpg", "secret": "44447f3f06", "media": "photo", "latitude": "0", "id": "4385575510", "tags": ""}, {"datetaken": "2010-02-15 15:35:35", "license": "6", "title": "14", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4385575840_bbd091a4fd_o.jpg", "secret": "73a8764207", "media": "photo", "latitude": "0", "id": "4385575840", "tags": ""}, {"datetaken": "2010-02-15 15:35:35", "license": "6", "title": "15", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4385576132_7c0394c182_o.jpg", "secret": "a86ec51ca4", "media": "photo", "latitude": "0", "id": "4385576132", "tags": ""}, {"datetaken": "2010-02-15 15:35:35", "license": "6", "title": "16", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4385576394_c5f92125bc_o.jpg", "secret": "10c81cf893", "media": "photo", "latitude": "0", "id": "4385576394", "tags": ""}, {"datetaken": "2010-02-15 15:35:36", "license": "6", "title": "17", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4385576706_ae29b2dbe9_o.jpg", "secret": "d40d112e82", "media": "photo", "latitude": "0", "id": "4385576706", "tags": ""}, {"datetaken": "2010-02-15 15:35:36", "license": "6", "title": "18", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4384814293_ea5139821a_o.jpg", "secret": "f8fbb0985c", "media": "photo", "latitude": "0", "id": "4384814293", "tags": ""}, {"datetaken": "2010-02-15 15:35:36", "license": "6", "title": "19", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2794/4385577292_39e2ef79be_o.jpg", "secret": "779d2d25b4", "media": "photo", "latitude": "0", "id": "4385577292", "tags": ""}, {"datetaken": "2010-02-15 15:35:36", "license": "6", "title": "20", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4385577570_c7f263c1be_o.jpg", "secret": "2f003f763c", "media": "photo", "latitude": "0", "id": "4385577570", "tags": ""}, {"datetaken": "2010-02-15 15:35:41", "license": "6", "title": "10", "text": "", "album_id": "72157623377031461", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4385574642_2968d19f51_o.jpg", "secret": "9a76772716", "media": "photo", "latitude": "0", "id": "4385574642", "tags": "liam races plumpton treadwell ballybach"}, {"datetaken": "2010-03-20 15:15:44", "license": "1", "title": "Mercy & Dave's 2006 Honda Civic SI", "text": "", "album_id": "72157623543731149", "longitude": "-111.934665", "url_o": "https://farm5.staticflickr.com/4040/4452871185_5ea7a676a6_o.jpg", "secret": "ac4e94dee6", "media": "photo", "latitude": "33.434566", "id": "4452871185", "tags": "nikon charles com nikkor d700 siritho charlessirithocom"}, {"datetaken": "2010-03-20 15:58:11", "license": "1", "title": "Dave's 2006 Honda Civic SI", "text": "", "album_id": "72157623543731149", "longitude": "-111.928893", "url_o": "https://farm5.staticflickr.com/4023/4525253050_146cdd9518_o.jpg", "secret": "9b50d70d82", "media": "photo", "latitude": "33.425522", "id": "4525253050", "tags": "world race honda nikon si charles full record com civic 28 nikkor speedlight sb800 d700 sb900 nikonflickrawar siritho charlessirithocom"}, {"datetaken": "2010-03-20 16:01:27", "license": "1", "title": "Mercy Gamez ,Dave's 06 Honda Civic Si", "text": "", "album_id": "72157623543731149", "longitude": "-111.928893", "url_o": "https://farm5.staticflickr.com/4015/4535688665_1b221e3f9a_o.jpg", "secret": "2e510d61ee", "media": "photo", "latitude": "33.425522", "id": "4535688665", "tags": "world race honda nikon si charles x full record com civic 28 nikkor speedlight sb800 d700 sb900 nikonflickrawar siritho mercygamez daves06hondacivicsi charlessirithocom"}, {"datetaken": "2010-03-20 16:08:01", "license": "1", "title": "Mercy Gamez ,Dave's 06 Honda Civic Si", "text": "", "album_id": "72157623543731149", "longitude": "-111.928893", "url_o": "https://farm3.staticflickr.com/2709/4536382334_141b70cc19_o.jpg", "secret": "c7571a1ec6", "media": "photo", "latitude": "33.425522", "id": "4536382334", "tags": "nikon charles com nikkor d700 siritho charlessirithocom"}, {"datetaken": "2010-03-20 16:10:34", "license": "1", "title": "Mercy Gamez ,Dave's 06 Honda Civic Si", "text": "", "album_id": "72157623543731149", "longitude": "-111.928893", "url_o": "https://farm5.staticflickr.com/4001/4542148277_6d5f549c3f_o.jpg", "secret": "18cb665fa4", "media": "photo", "latitude": "33.425522", "id": "4542148277", "tags": "world black hot jeff race honda prime evans model nikon garage si parking charles racing full master turbo record com civic asu 28 mm nikkor fc tuning 800 speedlight sb 900 tempe mercy stands k20 manfrotto boost 5zigen gamez d700 locash fno1 siritho charlessirithocom"}, {"datetaken": "2010-03-20 16:31:20", "license": "1", "title": "Dave's 2006 Honda Civic SI", "text": "", "album_id": "72157623543731149", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2804/4458779553_951d6f0db5_o.jpg", "secret": "05d6fd80f7", "media": "photo", "latitude": "0", "id": "4458779553", "tags": "world race honda nikon si charles full record com civic 28 nikkor d700 siritho charlessirithocom"}, {"datetaken": "2010-03-20 16:31:20", "license": "1", "title": "Dave's 2006 Honda Civic SI", "text": "", "album_id": "72157623543731149", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2768/4461971394_9aec330ec1_o.jpg", "secret": "908fd68a58", "media": "photo", "latitude": "0", "id": "4461971394", "tags": "nikon charles com nikkor d700 siritho charlessirithocom"}, {"datetaken": "2010-03-20 16:41:35", "license": "1", "title": "Dave's 2006 Honda Civic SI", "text": "", "album_id": "72157623543731149", "longitude": "-111.928893", "url_o": "https://farm5.staticflickr.com/4071/4452680629_982e547cbe_o.jpg", "secret": "dde4ee18b9", "media": "photo", "latitude": "33.425522", "id": "4452680629", "tags": "nikon charles com nikkor d700 siritho charlessirithocom"}, {"datetaken": "2010-03-20 16:43:48", "license": "1", "title": "Dave's 2006 Honda Civic SI", "text": "", "album_id": "72157623543731149", "longitude": "-111.928893", "url_o": "https://farm5.staticflickr.com/4029/4524624481_4d70036bbc_o.jpg", "secret": "14607a7bd9", "media": "photo", "latitude": "33.425522", "id": "4524624481", "tags": "nikon charles com nikkor d700 siritho charlessirithocom"}, {"datetaken": "2010-03-20 16:44:00", "license": "1", "title": "Dave's 2006 Honda Civic SI", "text": "", "album_id": "72157623543731149", "longitude": "-111.928893", "url_o": "https://farm5.staticflickr.com/4028/4524625169_fa2f39804e_o.jpg", "secret": "48cda69f60", "media": "photo", "latitude": "33.425522", "id": "4524625169", "tags": "nikon charles com nikkor d700 siritho charlessirithocom"}, {"datetaken": "2010-03-20 18:32:20", "license": "1", "title": "Dave's 06 Honda Civic Si", "text": "", "album_id": "72157623543731149", "longitude": "-111.934665", "url_o": "https://farm5.staticflickr.com/4019/4536355169_48530bfbb7_o.jpg", "secret": "1b74ff73cc", "media": "photo", "latitude": "33.434566", "id": "4536355169", "tags": "nikon charles com nikkor d700 siritho charlessirithocom"}, {"datetaken": "2010-03-20 18:37:03", "license": "1", "title": "Dave's 2006 Honda Civic SI", "text": "", "album_id": "72157623543731149", "longitude": "-111.934665", "url_o": "https://farm3.staticflickr.com/2719/4453368678_6c8514d8b4_o.jpg", "secret": "2928e2e8dc", "media": "photo", "latitude": "33.434566", "id": "4453368678", "tags": "nikon charles com nikkor d700 siritho charlessirithocom"}, {"datetaken": "2010-03-20 06:38:28", "license": "3", "title": "Mile 3", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4461456836_f7cc0d70c2_o.jpg", "secret": "5e5dcf5fc8", "media": "photo", "latitude": "0", "id": "4461456836", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-03-20 06:38:31", "license": "3", "title": "Mile 3", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4461456398_d1cb0c6d9b_o.jpg", "secret": "d9de9e04f8", "media": "photo", "latitude": "0", "id": "4461456398", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-03-20 07:22:21", "license": "3", "title": "Mile 7.5", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4460679669_40058e35bb_o.jpg", "secret": "f279a4a2b2", "media": "photo", "latitude": "0", "id": "4460679669", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-03-20 07:23:08", "license": "3", "title": "Race Supporters", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4461457500_b66456f26a_o.jpg", "secret": "9525c4bd6e", "media": "photo", "latitude": "0", "id": "4461457500", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-03-20 08:15:36", "license": "3", "title": "Approaching the Finish", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4461459744_2f7edc7c34_o.jpg", "secret": "052b07a7b6", "media": "photo", "latitude": "0", "id": "4461459744", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-03-20 09:26:16", "license": "3", "title": "Post Race Brunch", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4460682227_95f8c74897_o.jpg", "secret": "f48ebeee34", "media": "photo", "latitude": "0", "id": "4460682227", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-03-20 09:50:54", "license": "3", "title": "Before the Start", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4461458798_a6f50d2f50_o.jpg", "secret": "8b2fd87049", "media": "photo", "latitude": "0", "id": "4461458798", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-03-20 11:23:50", "license": "3", "title": "Race Supporters", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4461459242_295e42df69_o.jpg", "secret": "e6e87e5c54", "media": "photo", "latitude": "0", "id": "4461459242", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-03-20 12:29:33", "license": "3", "title": "Finished!", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4460681807_cd10fb96c8_o.jpg", "secret": "a457249a91", "media": "photo", "latitude": "0", "id": "4460681807", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-03-20 13:30:29", "license": "3", "title": "Post Race Brunch", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2684/4460680037_c68520a438_o.jpg", "secret": "c7bf03f6cb", "media": "photo", "latitude": "0", "id": "4460680037", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-03-20 20:43:28", "license": "3", "title": "NHM Official Race Photo", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4463049895_fd6f4c8a7b_o.jpg", "secret": "325485a383", "media": "photo", "latitude": "0", "id": "4463049895", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-03-20 20:43:29", "license": "3", "title": "NHM Official Race Photo", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2804/4463827754_c0af26e246_o.jpg", "secret": "cf3a83181c", "media": "photo", "latitude": "0", "id": "4463827754", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-03-20 20:43:29", "license": "3", "title": "NHM Official Race Photo", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4463827742_2cdc7a8bd4_o.jpg", "secret": "222b9b21f3", "media": "photo", "latitude": "0", "id": "4463827742", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-03-20 20:43:29", "license": "3", "title": "NHM Official Race Photo", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4463049915_05918a912c_o.jpg", "secret": "e220637c9a", "media": "photo", "latitude": "0", "id": "4463049915", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-03-20 20:43:30", "license": "3", "title": "NHM Official Race Photo", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4463827776_bf5e85e560_o.jpg", "secret": "985bc66e2d", "media": "photo", "latitude": "0", "id": "4463827776", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-03-20 20:43:30", "license": "3", "title": "NHM Official Race Photo", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4463827782_b78c3f6c93_o.jpg", "secret": "0abe8c7453", "media": "photo", "latitude": "0", "id": "4463827782", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-03-20 20:43:31", "license": "3", "title": "NHM Official Race Photo", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4463827812_f00d2e4285_o.jpg", "secret": "d25bf67277", "media": "photo", "latitude": "0", "id": "4463827812", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-03-20 20:43:31", "license": "3", "title": "NHM Official Race Photo", "text": "", "album_id": "72157623563366489", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4463827798_47f62144c9_o.jpg", "secret": "6f8082fe87", "media": "photo", "latitude": "0", "id": "4463827798", "tags": "dc washington halfmarathon"}, {"datetaken": "2010-01-24 12:28:14", "license": "2", "title": "Wild Zamboni Ice Resurfacer", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm5.staticflickr.com/4025/4307785441_389112dc35_o.jpg", "secret": "bb14cc894a", "media": "photo", "latitude": "44.944860", "id": "4307785441", "tags": "wild hockey minnesota nhl stpaul rink zamboni wastemanagement iceresurfacer"}, {"datetaken": "2010-01-24 12:28:29", "license": "2", "title": "Wild Zamboni Ice Resurfacer", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm3.staticflickr.com/2708/4308524974_bc65edb2a6_o.jpg", "secret": "5f53a256e5", "media": "photo", "latitude": "44.944860", "id": "4308524974", "tags": "wild hockey minnesota nhl stpaul rink budlight zamboni iceresurfacer"}, {"datetaken": "2010-01-24 14:12:40", "license": "2", "title": "Red Team Intro", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm5.staticflickr.com/4059/4301630997_202f71302d_o.jpg", "secret": "74e73bb68f", "media": "photo", "latitude": "44.944860", "id": "4301630997", "tags": "wild hockey minnesota nhl shane stpaul andrew spotlight josh derek burns brent brunette harding introduction skillscompetition boogaard xcelcenter hnidy"}, {"datetaken": "2010-01-24 14:24:51", "license": "2", "title": "Schultz Zannon Puck Race", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm3.staticflickr.com/2785/4302379940_ace2982574_o.jpg", "secret": "43d26f5563", "media": "photo", "latitude": "44.944860", "id": "4302379940", "tags": "wild hockey minnesota race nhl control stpaul puck skillscompetition nickschultz xcelcenter gregzannon"}, {"datetaken": "2010-01-24 14:25:12", "license": "2", "title": "Belanger Koivu Race", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm3.staticflickr.com/2759/4304581523_8e57f4b0de_o.jpg", "secret": "4a9c7d28ba", "media": "photo", "latitude": "44.944860", "id": "4304581523", "tags": "wild minnesota koivu stpaul skills belanger compeition xcelcenter"}, {"datetaken": "2010-01-24 14:36:21", "license": "2", "title": "Protected by the net", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm5.staticflickr.com/4046/4304617823_492c73a9da_o.jpg", "secret": "28082ba10d", "media": "photo", "latitude": "44.944860", "id": "4304617823", "tags": "camera wild net hockey minnesota nhl stpaul competition skills burns xcelcenter"}, {"datetaken": "2010-01-24 14:45:01", "license": "2", "title": "Owen Nolan", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm5.staticflickr.com/4062/4301677463_ac6654b0eb_o.jpg", "secret": "839d91d812", "media": "photo", "latitude": "44.944860", "id": "4301677463", "tags": "wild green hockey minnesota nhl nolan skating stpaul 11 stick puck owen slapshot throwbackjersey"}, {"datetaken": "2010-01-24 14:47:21", "license": "2", "title": "Shane Hnidy", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm5.staticflickr.com/4009/4305325616_5cff806c98_o.jpg", "secret": "34989d2a7c", "media": "photo", "latitude": "44.944860", "id": "4305325616", "tags": "wild minnesota shot stpaul skills 34 slapshot compeition xcelcenter hnidy"}, {"datetaken": "2010-01-24 14:48:31", "license": "2", "title": "Kyle Brodziak", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm3.staticflickr.com/2791/4304582871_b82e38db11_o.jpg", "secret": "859f90b946", "media": "photo", "latitude": "44.944860", "id": "4304582871", "tags": "minnesota wild skills compeition xcelcenter stpaul brodziak 21 shot slapshot"}, {"datetaken": "2010-01-24 14:50:15", "license": "2", "title": "Cal Clutterbuck", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm5.staticflickr.com/4057/4305327212_f44d0ef3ee_o.jpg", "secret": "7f0df5f9ae", "media": "photo", "latitude": "44.944860", "id": "4305327212", "tags": "wild minnesota 22 shot stpaul skills stick slapshot compeition xcelcenter clutterbuck"}, {"datetaken": "2010-01-24 15:10:21", "license": "2", "title": "Greg Zannon vs. Tim Shaughnessy", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm5.staticflickr.com/4007/4305327766_a06c23db7c_o.jpg", "secret": "22052c9f31", "media": "photo", "latitude": "44.944860", "id": "4305327766", "tags": "wild 6 minnesota stpaul skills shootout shaughnessy minnesotawild compeition xcelcenter gregzanon hillmurray zannon"}, {"datetaken": "2010-01-24 15:11:28", "license": "2", "title": "Robbie Earl vs. Tim Shaughnessy", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm5.staticflickr.com/4020/4304584911_5330354298_o.jpg", "secret": "d1fd47ff4a", "media": "photo", "latitude": "44.944860", "id": "4304584911", "tags": "wild minnesota stpaul skills earl robbie 38 shootout shaughnessy compeition xcelcenter hillmurray"}, {"datetaken": "2010-01-24 15:14:00", "license": "2", "title": "Kyle Brodziak vs. Tim Shaughnessy", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm5.staticflickr.com/4026/4304585317_e652dc7d30_o.jpg", "secret": "6c63b7a17b", "media": "photo", "latitude": "44.944860", "id": "4304585317", "tags": "wild minnesota kyle stpaul skills shootout shaughnessy compeition xcelcenter brodziak hillmurray"}, {"datetaken": "2010-01-24 15:14:49", "license": "2", "title": "Burns vs. Shaughnessy", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm5.staticflickr.com/4041/4305360676_91a0ccc882_o.jpg", "secret": "3c2f7f040a", "media": "photo", "latitude": "44.944860", "id": "4305360676", "tags": "wild hockey minnesota nhl stpaul competition skills burns brent shootout shaughnessy xcelcenter hillmurray"}, {"datetaken": "2010-01-24 15:15:42", "license": "2", "title": "Andrew Brunette", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm5.staticflickr.com/4072/4304585871_5585f91bb5_o.jpg", "secret": "1e3df6eea5", "media": "photo", "latitude": "44.944860", "id": "4304585871", "tags": "wild minnesota stpaul 15 skills andrew stick puck brunette rapidfire compeition xcelcenter"}, {"datetaken": "2010-01-24 15:16:42", "license": "2", "title": "Latandresse vs. Shaughnessy", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm5.staticflickr.com/4066/4304617031_cdb532453f_o.jpg", "secret": "eebcb73377", "media": "photo", "latitude": "44.944860", "id": "4304617031", "tags": "wild hockey minnesota nhl stpaul competition skills 48 shootout shaughnessy xcelcenter hillmurray latandresse"}, {"datetaken": "2010-01-24 15:17:41", "license": "2", "title": "Mikko Koivu vs. Tim Shaughnessy", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm5.staticflickr.com/4034/4302380500_c0d0898547_o.jpg", "secret": "142d5dba1f", "media": "photo", "latitude": "44.944860", "id": "4302380500", "tags": "wild hockey minnesota koivu nhl goal stpaul skate puck shootout shaughnessy skillscompetition xcelcenter mikkokoivu hillmurray"}, {"datetaken": "2010-01-24 15:17:48", "license": "2", "title": "Koivu congratulates Shaughnessy", "text": "", "album_id": "72157623277682842", "longitude": "-93.101427", "url_o": "https://farm3.staticflickr.com/2770/4304616545_7f656a88af_o.jpg", "secret": "0491f6511e", "media": "photo", "latitude": "44.944860", "id": "4304616545", "tags": "wild hockey minnesota koivu nhl stpaul competition skills mikko shootout shaughnessy xcelcenter hillmurray"}, {"datetaken": "2010-01-23 12:26:38", "license": "4", "title": "330 GT .", "text": "", "album_id": "72157623276651796", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4301889122_99e8630a78_o.jpg", "secret": "5ef4a9483f", "media": "photo", "latitude": "0", "id": "4301889122", "tags": ""}, {"datetaken": "2010-01-23 14:13:45", "license": "4", "title": "F430 Spider.", "text": "", "album_id": "72157623276651796", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4302093166_0f3fc62e8a_o.jpg", "secret": "a71523c237", "media": "photo", "latitude": "0", "id": "4302093166", "tags": ""}, {"datetaken": "2010-01-23 14:17:04", "license": "4", "title": "Scud Missile.", "text": "", "album_id": "72157623276651796", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2462/4302137518_16a7b4a969_o.jpg", "secret": "600a9a5659", "media": "photo", "latitude": "0", "id": "4302137518", "tags": "red black sports car spider track connecticut greenwich super ferrari nero scuderia f430 corsa combo rossa"}, {"datetaken": "2010-01-23 14:17:21", "license": "4", "title": "What?!", "text": "", "album_id": "72157623276651796", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4301447475_37c68dc1a7_o.jpg", "secret": "940ef35f7e", "media": "photo", "latitude": "0", "id": "4301447475", "tags": "red black sports car spider track connecticut greenwich super ferrari nero scuderia f430 corsa combo rossa"}, {"datetaken": "2010-01-23 14:18:24", "license": "4", "title": "3 Italian Beasts", "text": "", "album_id": "72157623276651796", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4307874724_fe61b3dcf0_o.jpg", "secret": "db9afe68ef", "media": "photo", "latitude": "0", "id": "4307874724", "tags": ""}, {"datetaken": "2010-01-23 14:28:26", "license": "4", "title": "Enemies", "text": "", "album_id": "72157623276651796", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4307303645_12154cebdc_o.jpg", "secret": "4017955c8e", "media": "photo", "latitude": "0", "id": "4307303645", "tags": ""}, {"datetaken": "2010-01-23 14:48:27", "license": "4", "title": "Scuderia.", "text": "", "album_id": "72157623276651796", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4323864237_a19a8b373d_o.jpg", "secret": "8d71b9d926", "media": "photo", "latitude": "0", "id": "4323864237", "tags": "car italian track super ferrari exotic ready nero scuderia f430"}, {"datetaken": "2010-01-23 15:36:53", "license": "4", "title": "G Spyder.", "text": "", "album_id": "72157623276651796", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4328789280_d839e8769e_o.jpg", "secret": "0b0325c05a", "media": "photo", "latitude": "0", "id": "4328789280", "tags": "orange canon connecticut greenwich spyder l lamborghini arancio 1740mm gallardo roadster f40"}, {"datetaken": "2010-01-23 15:37:02", "license": "4", "title": "G Spyder.", "text": "", "album_id": "72157623276651796", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4326939666_63c7a79347_o.jpg", "secret": "ec37c9b327", "media": "photo", "latitude": "0", "id": "4326939666", "tags": "orange canon connecticut greenwich spyder l lamborghini arancio 1740mm gallardo roadster f40"}, {"datetaken": "2010-01-23 15:37:42", "license": "4", "title": "G Spyder.", "text": "", "album_id": "72157623276651796", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4307813600_a14940bf91_o.jpg", "secret": "cc7b4739a3", "media": "photo", "latitude": "0", "id": "4307813600", "tags": "orange canon connecticut greenwich spyder l lamborghini arancio 1740mm gallardo roadster f40"}, {"datetaken": "2010-01-23 15:53:15", "license": "4", "title": "R8.", "text": "", "album_id": "72157623276651796", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4309941285_2c9fb959b1_o.jpg", "secret": "28583e9ea1", "media": "photo", "latitude": "0", "id": "4309941285", "tags": "motion sports car canon connecticut greenwich fast mini german l audi panning 42 1740mm v8 gallardo litre r8 midengine"}, {"datetaken": "2010-01-23 16:34:52", "license": "4", "title": "GT3", "text": "", "album_id": "72157623276651796", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4315219606_e8d71617ca_o.jpg", "secret": "b197c613e6", "media": "photo", "latitude": "0", "id": "4315219606", "tags": "light sunset white black sports car track connecticut greenwich 911 fast racing german porsche coloring 36 weight litre selective gt3 997 aircooled"}, {"datetaken": "2010-01-23 16:39:14", "license": "4", "title": "GT3.", "text": "", "album_id": "72157623276651796", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4312150143_bae93edee5_o.jpg", "secret": "7336433aeb", "media": "photo", "latitude": "0", "id": "4312150143", "tags": "light sunset sports car track connecticut greenwich 911 fast racing german porsche 36 weight litre gt3 997 aircooled"}, {"datetaken": "2010-01-23 16:47:45", "license": "4", "title": "GT3.", "text": "", "album_id": "72157623276651796", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4335560750_1afe58d01c_o.jpg", "secret": "46d86331e2", "media": "photo", "latitude": "0", "id": "4335560750", "tags": "sunset sports car track stuttgart connecticut greenwich 911 ferrari german porsche ready gt3 997"}, {"datetaken": "2004-09-16 15:40:50", "license": "1", "title": "Rosh Hashana 2004", "text": "", "album_id": "129219", "longitude": "-73.729553", "url_o": "https://farm1.staticflickr.com/5/5131949_e0f4c7a496_o.jpg", "secret": "e0f4c7a496", "media": "photo", "latitude": "40.985778", "id": "5131949", "tags": "family bousel roshhashana dad paul merrilee aaron"}, {"datetaken": "2004-09-16 15:42:49", "license": "1", "title": "Rosh Hashana 2004", "text": "", "album_id": "129219", "longitude": "-73.729553", "url_o": "https://farm1.staticflickr.com/4/5131971_95c938c10a_o.jpg", "secret": "95c938c10a", "media": "photo", "latitude": "40.985778", "id": "5131971", "tags": "family bousel roshhashana debbie carmen howard"}, {"datetaken": "2004-09-16 15:45:07", "license": "1", "title": "Rosh Hashana 2004", "text": "", "album_id": "129219", "longitude": "-73.729553", "url_o": "https://farm1.staticflickr.com/3/5132016_bb40ee79c7_o.jpg", "secret": "bb40ee79c7", "media": "photo", "latitude": "40.985778", "id": "5132016", "tags": "family bousel roshhashana grandma oscar"}, {"datetaken": "2004-09-16 15:45:42", "license": "1", "title": "Rosh Hashana 2004", "text": "", "album_id": "129219", "longitude": "-73.729553", "url_o": "https://farm1.staticflickr.com/5/5132063_dc49730b1d_o.jpg", "secret": "dc49730b1d", "media": "photo", "latitude": "40.985778", "id": "5132063", "tags": "family bousel roshhashana jeffery"}, {"datetaken": "2004-09-16 16:07:05", "license": "1", "title": "Rosh Hashana 2004", "text": "", "album_id": "129219", "longitude": "-73.729553", "url_o": "https://farm1.staticflickr.com/5/5132113_28334121ee_o.jpg", "secret": "28334121ee", "media": "photo", "latitude": "40.985778", "id": "5132113", "tags": "family bousel roshhashana dave"}, {"datetaken": "2004-09-16 16:07:20", "license": "1", "title": "Rosh Hashana 2004", "text": "", "album_id": "129219", "longitude": "-73.729553", "url_o": "https://farm1.staticflickr.com/3/5132148_89b0a2eb3e_o.jpg", "secret": "89b0a2eb3e", "media": "photo", "latitude": "40.985778", "id": "5132148", "tags": "family bousel roshhashana grandma oscar"}, {"datetaken": "2004-09-16 16:27:26", "license": "1", "title": "Rosh Hashana 2004", "text": "", "album_id": "129219", "longitude": "-73.729553", "url_o": "https://farm1.staticflickr.com/3/5132208_83eb87c09e_o.jpg", "secret": "83eb87c09e", "media": "photo", "latitude": "40.985778", "id": "5132208", "tags": "bousel roshhashana family piano sophie"}, {"datetaken": "2004-09-16 16:35:36", "license": "1", "title": "Rosh Hashana 2004", "text": "", "album_id": "129219", "longitude": "-73.729553", "url_o": "https://farm1.staticflickr.com/4/5132249_4dd79a54aa_o.jpg", "secret": "4dd79a54aa", "media": "photo", "latitude": "40.985778", "id": "5132249", "tags": "family bousel roshhashana simon"}, {"datetaken": "2004-09-16 18:27:39", "license": "1", "title": "Rosh Hashana 2004", "text": "", "album_id": "129219", "longitude": "-73.729553", "url_o": "https://farm1.staticflickr.com/4/5132308_1c3cfe6ddd_o.jpg", "secret": "1c3cfe6ddd", "media": "photo", "latitude": "40.985778", "id": "5132308", "tags": "family bousel roshhashana kiss kissing"}, {"datetaken": "2004-09-16 18:28:57", "license": "1", "title": "Rosh Hashana 2004", "text": "", "album_id": "129219", "longitude": "-73.729553", "url_o": "https://farm1.staticflickr.com/5/5132346_0bbc0da85f_o.jpg", "secret": "0bbc0da85f", "media": "photo", "latitude": "40.985778", "id": "5132346", "tags": "family bousel roshhashana paul"}, {"datetaken": "2004-09-16 18:37:39", "license": "1", "title": "Rosh Hashana 2004", "text": "", "album_id": "129219", "longitude": "-73.729553", "url_o": "https://farm1.staticflickr.com/5/5132398_097d0c31be_o.jpg", "secret": "097d0c31be", "media": "photo", "latitude": "40.985778", "id": "5132398", "tags": "family bousel roshhashana simon rebecca rachel"}, {"datetaken": "2004-09-16 19:49:32", "license": "1", "title": "Rosh Hashana 2004", "text": "", "album_id": "129219", "longitude": "-73.729553", "url_o": "https://farm1.staticflickr.com/3/5132434_ff8ed9bb99_o.jpg", "secret": "ff8ed9bb99", "media": "photo", "latitude": "40.985778", "id": "5132434", "tags": "pool"}, {"datetaken": "2007-09-16 14:54:53", "license": "3", "title": "rosh hashana", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1394/1397537448_e22e3daf53_o.jpg", "secret": "3377f3c680", "media": "photo", "latitude": "0", "id": "1397537448", "tags": "grandpalouiejudithelidonnaelainelaraterrysteven"}, {"datetaken": "2007-09-16 14:55:36", "license": "3", "title": "IMG_3973.JPG", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1256/1397538452_ab0e4be43b_o.jpg", "secret": "bc497333ac", "media": "photo", "latitude": "0", "id": "1397538452", "tags": ""}, {"datetaken": "2007-09-16 14:55:47", "license": "3", "title": "IMG_3974.JPG", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1126/1397539262_718114ee86_o.jpg", "secret": "fdfdf3a768", "media": "photo", "latitude": "0", "id": "1397539262", "tags": ""}, {"datetaken": "2007-09-16 14:56:30", "license": "3", "title": "IMG_3979.JPG", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1032/1396651777_5ef6036592_o.jpg", "secret": "ba17632554", "media": "photo", "latitude": "0", "id": "1396651777", "tags": ""}, {"datetaken": "2007-09-16 14:57:14", "license": "3", "title": "IMG_3982.JPG", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1170/1396653033_586fca3c44_o.jpg", "secret": "f9eb04bcd0", "media": "photo", "latitude": "0", "id": "1396653033", "tags": ""}, {"datetaken": "2007-09-16 14:57:22", "license": "3", "title": "IMG_3983.JPG", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1426/1397542890_16dc0680e2_o.jpg", "secret": "72d31b4a31", "media": "photo", "latitude": "0", "id": "1397542890", "tags": ""}, {"datetaken": "2007-09-16 14:58:31", "license": "3", "title": "IMG_3992.JPG", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1299/1397543920_8b172077dd_o.jpg", "secret": "5437fedc6f", "media": "photo", "latitude": "0", "id": "1397543920", "tags": ""}, {"datetaken": "2007-09-16 14:58:47", "license": "3", "title": "IMG_3994.JPG", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1151/1396656009_88b514249e_o.jpg", "secret": "e3ea848da0", "media": "photo", "latitude": "0", "id": "1396656009", "tags": ""}, {"datetaken": "2007-09-16 14:58:53", "license": "3", "title": "IMG_3995.JPG", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1163/1397545698_5007cad2ed_o.jpg", "secret": "bbf80393c1", "media": "photo", "latitude": "0", "id": "1397545698", "tags": ""}, {"datetaken": "2007-09-16 14:59:55", "license": "3", "title": "IMG_3999.JPG", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1397/1397546470_d0f1982271_o.jpg", "secret": "2f39ce31be", "media": "photo", "latitude": "0", "id": "1397546470", "tags": ""}, {"datetaken": "2007-09-16 19:57:48", "license": "3", "title": "IMG_4025.JPG", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1357/1397547036_8411bccd09_o.jpg", "secret": "56207ada2e", "media": "photo", "latitude": "0", "id": "1397547036", "tags": ""}, {"datetaken": "2007-09-16 20:03:20", "license": "3", "title": "IMG_4027.JPG", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1201/1396658909_e88471b10a_o.jpg", "secret": "629ab121d0", "media": "photo", "latitude": "0", "id": "1396658909", "tags": ""}, {"datetaken": "2007-09-16 20:03:48", "license": "3", "title": "IMG_4030.JPG", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1017/1396659665_7962e7641d_o.jpg", "secret": "4f141359aa", "media": "photo", "latitude": "0", "id": "1396659665", "tags": ""}, {"datetaken": "2007-09-16 20:04:39", "license": "3", "title": "IMG_4031.JPG", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1279/1397549318_40667b3788_o.jpg", "secret": "df986b5e10", "media": "photo", "latitude": "0", "id": "1397549318", "tags": ""}, {"datetaken": "2007-09-16 20:06:22", "license": "3", "title": "IMG_4040.JPG", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1419/1396661127_11f63e610e_o.jpg", "secret": "26ace6352b", "media": "photo", "latitude": "0", "id": "1396661127", "tags": ""}, {"datetaken": "2007-09-16 20:06:41", "license": "3", "title": "IMG_4042.JPG", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1279/1397550800_33599ab7d1_o.jpg", "secret": "672f8f4320", "media": "photo", "latitude": "0", "id": "1397550800", "tags": ""}, {"datetaken": "2007-09-16 20:17:34", "license": "3", "title": "IMG_4056.JPG", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1141/1397551400_2866762d52_o.jpg", "secret": "ec9b3851e5", "media": "photo", "latitude": "0", "id": "1397551400", "tags": ""}, {"datetaken": "2007-09-16 20:17:49", "license": "3", "title": "IMG_4057.JPG", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1112/1396662633_657fd678c1_o.jpg", "secret": "d2ab3f47a0", "media": "photo", "latitude": "0", "id": "1396662633", "tags": ""}, {"datetaken": "2007-09-16 20:17:56", "license": "3", "title": "untitled", "text": "", "album_id": "72157602047008082", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1271/1396663319_41ef1f25c7_o.jpg", "secret": "1cfa4cd629", "media": "photo", "latitude": "0", "id": "1396663319", "tags": ""}, {"datetaken": "2010-07-15 12:46:21", "license": "2", "title": "Meet the Shofars", "text": "", "album_id": "72157624597178924", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4092/4835898982_5583341f45_o.jpg", "secret": "8815b1ed05", "media": "photo", "latitude": "0", "id": "4835898982", "tags": "contemporaryjewishmuseum thecjm roshhashana shofar"}, {"datetaken": "2010-07-15 12:48:55", "license": "2", "title": "Meet the Shofars", "text": "", "album_id": "72157624597178924", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/4835290007_affd33634a_o.jpg", "secret": "a5b57e8512", "media": "photo", "latitude": "0", "id": "4835290007", "tags": "roshhashana shofar contemporaryjewishmuseum thecjm"}, {"datetaken": "2010-07-15 13:09:31", "license": "2", "title": "Meet the Shofars", "text": "", "album_id": "72157624597178924", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/4835290145_3063b09358_o.jpg", "secret": "6fc9585d87", "media": "photo", "latitude": "0", "id": "4835290145", "tags": "roshhashana shofar contemporaryjewishmuseum thecjm"}, {"datetaken": "2010-07-15 13:09:39", "license": "2", "title": "Meet the Shofars", "text": "", "album_id": "72157624597178924", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/4835290303_fd4760df63_o.jpg", "secret": "c140239f82", "media": "photo", "latitude": "0", "id": "4835290303", "tags": "roshhashana shofar contemporaryjewishmuseum thecjm"}, {"datetaken": "2010-07-15 13:09:50", "license": "2", "title": "Meet the Shofars", "text": "", "album_id": "72157624597178924", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/4835290505_9309725830_o.jpg", "secret": "0e0e29f643", "media": "photo", "latitude": "0", "id": "4835290505", "tags": "roshhashana shofar contemporaryjewishmuseum thecjm"}, {"datetaken": "2010-07-15 13:09:58", "license": "2", "title": "Meet the Shofars", "text": "", "album_id": "72157624597178924", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4091/4835290765_5e9be882c0_o.jpg", "secret": "c73c99acb1", "media": "photo", "latitude": "0", "id": "4835290765", "tags": "roshhashana shofar contemporaryjewishmuseum thecjm"}, {"datetaken": "2010-07-15 13:10:10", "license": "2", "title": "Meet the Shofars", "text": "", "album_id": "72157624597178924", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/4835900040_f277b262ce_o.jpg", "secret": "5aefbfe298", "media": "photo", "latitude": "0", "id": "4835900040", "tags": "roshhashana shofar contemporaryjewishmuseum thecjm"}, {"datetaken": "2010-07-15 13:10:18", "license": "2", "title": "Meet the Shofars", "text": "", "album_id": "72157624597178924", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/4835900260_42c41c201c_o.jpg", "secret": "6553622350", "media": "photo", "latitude": "0", "id": "4835900260", "tags": "roshhashana shofar contemporaryjewishmuseum thecjm"}, {"datetaken": "2010-07-15 13:10:27", "license": "2", "title": "Meet the Shofars", "text": "", "album_id": "72157624597178924", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4106/4835900392_74bea3241e_o.jpg", "secret": "366164c53b", "media": "photo", "latitude": "0", "id": "4835900392", "tags": "roshhashana shofar contemporaryjewishmuseum thecjm"}, {"datetaken": "2010-07-15 13:10:37", "license": "2", "title": "Meet the Shofars", "text": "", "album_id": "72157624597178924", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4083/4835291511_d42f6a7590_o.jpg", "secret": "9e2dc2ac70", "media": "photo", "latitude": "0", "id": "4835291511", "tags": "roshhashana shofar contemporaryjewishmuseum thecjm"}, {"datetaken": "2010-07-15 13:11:17", "license": "2", "title": "Meet the Shofars", "text": "", "album_id": "72157624597178924", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/4835900662_9886f94388_o.jpg", "secret": "15e3e58dc9", "media": "photo", "latitude": "0", "id": "4835900662", "tags": "roshhashana shofar contemporaryjewishmuseum thecjm"}, {"datetaken": "2010-03-31 10:55:59", "license": "1", "title": "Kansas City Wizards - vs. Tulsa 2010.03.31", "text": "", "album_id": "72157623752789696", "longitude": "-94.521292", "url_o": "https://farm5.staticflickr.com/4004/4483056647_9e128d9e47_o.jpg", "secret": "49f1b9a1e1", "media": "photo", "latitude": "39.013348", "id": "4483056647", "tags": "usa sport soccer events kansascity missouri wizards erickronberg 2010wizards"}, {"datetaken": "2010-03-31 11:01:11", "license": "1", "title": "Kansas City Wizards - vs. Tulsa 2010.03.31", "text": "", "album_id": "72157623752789696", "longitude": "-94.521292", "url_o": "https://farm3.staticflickr.com/2515/4483705776_81442dd448_o.jpg", "secret": "e63d22a2bd", "media": "photo", "latitude": "39.013349", "id": "4483705776", "tags": "usa sport soccer events kansascity missouri wizards 2010wizards sunilchhettri"}, {"datetaken": "2010-03-31 11:02:21", "license": "1", "title": "Kansas City Wizards - vs. Tulsa 2010.03.31", "text": "", "album_id": "72157623752789696", "longitude": "-94.521292", "url_o": "https://farm3.staticflickr.com/2721/4483057495_9827b2b7b4_o.jpg", "secret": "3243bd7068", "media": "photo", "latitude": "39.013349", "id": "4483057495", "tags": "usa us kansascity missouri"}, {"datetaken": "2010-03-31 11:08:41", "license": "1", "title": "Kansas City Wizards - vs. Tulsa 2010.03.31", "text": "", "album_id": "72157623752789696", "longitude": "-94.521292", "url_o": "https://farm5.staticflickr.com/4030/4483706572_a7703b262b_o.jpg", "secret": "354175423c", "media": "photo", "latitude": "39.013349", "id": "4483706572", "tags": "usa sport soccer events kansascity missouri wizards jonathanleathers 2010wizards"}, {"datetaken": "2010-03-31 11:09:16", "license": "1", "title": "Kansas City Wizards - vs. Tulsa 2010.03.31", "text": "", "album_id": "72157623752789696", "longitude": "-94.521292", "url_o": "https://farm3.staticflickr.com/2781/4483057975_0258688235_o.jpg", "secret": "5d5a8b69c4", "media": "photo", "latitude": "39.013349", "id": "4483057975", "tags": "usa sport soccer events kansascity missouri wizards 2010wizards zoltanhercegfalvi"}, {"datetaken": "2010-03-31 11:15:56", "license": "1", "title": "Kansas City Wizards - vs. Tulsa 2010.03.31", "text": "", "album_id": "72157623752789696", "longitude": "-94.521292", "url_o": "https://farm3.staticflickr.com/2794/4483058365_43773b5ee9_o.jpg", "secret": "19c64da82c", "media": "photo", "latitude": "39.013349", "id": "4483058365", "tags": "usa sport soccer events kansascity missouri wizards 2010wizards tealburnbury"}, {"datetaken": "2010-03-31 11:17:01", "license": "1", "title": "Kansas City Wizards - vs. Tulsa 2010.03.31", "text": "", "album_id": "72157623752789696", "longitude": "-94.521292", "url_o": "https://farm3.staticflickr.com/2579/4483058783_c866965706_o.jpg", "secret": "d16f1b7089", "media": "photo", "latitude": "39.013349", "id": "4483058783", "tags": "usa sport soccer events kansascity missouri wizards jonathanleathers 2010wizards"}, {"datetaken": "2010-03-31 11:20:52", "license": "1", "title": "Kansas City Wizards - vs. Tulsa 2010.03.31", "text": "", "album_id": "72157623752789696", "longitude": "-94.521292", "url_o": "https://farm3.staticflickr.com/2586/4483708136_0b290114c4_o.jpg", "secret": "6737c423f0", "media": "photo", "latitude": "39.013349", "id": "4483708136", "tags": "usa sport soccer events kansascity missouri wizards 2010wizards sunilchhettri"}, {"datetaken": "2010-03-31 11:20:52", "license": "1", "title": "Kansas City Wizards - vs. Tulsa 2010.03.31", "text": "", "album_id": "72157623752789696", "longitude": "-94.521292", "url_o": "https://farm3.staticflickr.com/2748/4483708508_e7daea59a3_o.jpg", "secret": "b8c43a7539", "media": "photo", "latitude": "39.013349", "id": "4483708508", "tags": "usa sport soccer events kansascity missouri wizards 2010wizards sunilchhettri"}, {"datetaken": "2010-03-31 11:23:01", "license": "1", "title": "Kansas City Wizards - vs. Tulsa 2010.03.31", "text": "", "album_id": "72157623752789696", "longitude": "-94.521292", "url_o": "https://farm5.staticflickr.com/4039/4483059675_f44dcd9c62_o.jpg", "secret": "6f2ba83156", "media": "photo", "latitude": "39.013349", "id": "4483059675", "tags": "usa sport soccer events kansascity missouri wizards 2010wizards igorkostrov"}, {"datetaken": "2010-03-31 11:23:06", "license": "1", "title": "Kansas City Wizards - vs. Tulsa 2010.03.31", "text": "", "album_id": "72157623752789696", "longitude": "-94.521292", "url_o": "https://farm5.staticflickr.com/4037/4483709112_322ed5c8d6_o.jpg", "secret": "345e83b526", "media": "photo", "latitude": "39.013349", "id": "4483709112", "tags": "usa sport soccer events kansascity missouri wizards 2010wizards sunilchhettri"}, {"datetaken": "2010-03-31 11:23:06", "license": "1", "title": "Kansas City Wizards - vs. Tulsa 2010.03.31", "text": "", "album_id": "72157623752789696", "longitude": "-94.521292", "url_o": "https://farm3.staticflickr.com/2706/4483709526_1daf464816_o.jpg", "secret": "1e4f2a98d3", "media": "photo", "latitude": "39.013349", "id": "4483709526", "tags": "usa sport soccer events kansascity missouri wizards 2010wizards sunilchhettri"}, {"datetaken": "2010-03-31 11:23:07", "license": "1", "title": "Kansas City Wizards - vs. Tulsa 2010.03.31", "text": "", "album_id": "72157623752789696", "longitude": "-94.521292", "url_o": "https://farm5.staticflickr.com/4066/4483709910_cb643922e9_o.jpg", "secret": "8da23ec92e", "media": "photo", "latitude": "39.013349", "id": "4483709910", "tags": "usa sport soccer events kansascity missouri wizards 2010wizards sunilchhettri"}, {"datetaken": "2010-03-31 11:23:09", "license": "1", "title": "Kansas City Wizards - vs. Tulsa 2010.03.31", "text": "", "album_id": "72157623752789696", "longitude": "-94.521292", "url_o": "https://farm5.staticflickr.com/4039/4483061215_08b5065e1b_o.jpg", "secret": "a1c8e40673", "media": "photo", "latitude": "39.013349", "id": "4483061215", "tags": "usa sport soccer events kansascity missouri wizards 2010wizards sunilchhettri"}, {"datetaken": "2010-03-31 11:25:32", "license": "1", "title": "Kansas City Wizards - vs. Tulsa 2010.03.31", "text": "", "album_id": "72157623752789696", "longitude": "-94.521292", "url_o": "https://farm5.staticflickr.com/4004/4483710604_37c429b07b_o.jpg", "secret": "94d3da566b", "media": "photo", "latitude": "39.013349", "id": "4483710604", "tags": "usa sport soccer events kansascity missouri wizards 2010wizards sunilchhettri"}, {"datetaken": "2010-03-31 11:30:26", "license": "1", "title": "Kansas City Wizards - vs. Tulsa 2010.03.31", "text": "", "album_id": "72157623752789696", "longitude": "-94.521292", "url_o": "https://farm5.staticflickr.com/4018/4483061947_13ffe4e398_o.jpg", "secret": "1e7d7f8d71", "media": "photo", "latitude": "39.013349", "id": "4483061947", "tags": "usa sport soccer events kansascity missouri wizards 2010wizards sunilchhettri"}, {"datetaken": "2011-03-31 18:11:44", "license": "1", "title": "Chinese Smoked Fish", "text": "", "album_id": "72157626285246453", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5174/5581588850_e4c7dbff37_o.jpg", "secret": "72113edfc1", "media": "photo", "latitude": "0", "id": "5581588850", "tags": "chinesefood forum abc debate smokedfish monashuniversity bigideas facultyofarts australianbroadcastingcorporation slowtv \u718f\u9c7c alumnispeakerseries monashuniversityalumni monashuniversityalumnispeakerseries 2011alumnispeakerseries artificiallifeanddesignerbabies abcbigideas chinesesmokedfish"}, {"datetaken": "2011-03-31 18:17:51", "license": "1", "title": "Vegetarian Dumpling", "text": "", "album_id": "72157626285246453", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5054/5581000847_c4db192360_o.jpg", "secret": "d304c686a4", "media": "photo", "latitude": "0", "id": "5581000847", "tags": "chinesefood forum vegetarian abc debate dumpling \u997a\u5b50 monashuniversity bigideas facultyofarts australianbroadcastingcorporation slowtv \u7d20\u997a alumnispeakerseries monashuniversityalumni monashuniversityalumnispeakerseries 2011alumnispeakerseries artificiallifeanddesignerbabies abcbigideas"}, {"datetaken": "2011-03-31 18:31:03", "license": "1", "title": "Front row audience - BMW Edge", "text": "", "album_id": "72157626285246453", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5066/5581583790_72b9de8141_o.jpg", "secret": "98afdb0f45", "media": "photo", "latitude": "0", "id": "5581583790", "tags": "forum federationsquare melbourne vic abc debate monashuniversity bigideas facultyofarts bmwedge australianbroadcastingcorporation melbournevic slowtv alumnispeakerseries monashuniversityalumni monashuniversityalumnispeakerseries 2011alumnispeakerseries artificiallifeanddesignerbabies abcbigideas"}, {"datetaken": "2011-03-31 18:38:50", "license": "1", "title": "Dean of Faculty of Arts, Monash University", "text": "", "album_id": "72157626285246453", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5137/5581584586_06b5149dde_o.jpg", "secret": "0f19eb3a81", "media": "photo", "latitude": "0", "id": "5581584586", "tags": "forum federationsquare melbourne vic abc debate monashuniversity bigideas facultyofarts bmwedge australianbroadcastingcorporation melbournevic slowtv alumnispeakerseries monashuniversityalumni monashuniversityalumnispeakerseries 2011alumnispeakerseries artificiallifeanddesignerbabies abcbigideas"}, {"datetaken": "2011-03-31 18:43:13", "license": "1", "title": "Waleed Aly", "text": "", "album_id": "72157626285246453", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5145/5581585228_03056cb4e5_o.jpg", "secret": "26e02b28ee", "media": "photo", "latitude": "0", "id": "5581585228", "tags": "forum federationsquare melbourne vic abc lawyer lecturer debate broadcaster monashuniversity bigideas facultyofarts bmwedge australianbroadcastingcorporation melbournevic slowtv alumnispeakerseries monashuniversityalumni monashuniversityalumnispeakerseries 2011alumnispeakerseries artificiallifeanddesignerbabies abcbigideas waleedaly mediacommentator"}, {"datetaken": "2011-03-31 18:43:22", "license": "1", "title": "Professor Julian Savulescu", "text": "", "album_id": "72157626285246453", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5262/5581585880_46dfdee4de_o.jpg", "secret": "a69f229c07", "media": "photo", "latitude": "0", "id": "5581585880", "tags": "forum federationsquare melbourne vic abc debate communicator researcher educator monashuniversity bigideas facultyofarts bmwedge australianbroadcastingcorporation melbournevic slowtv alumnispeakerseries monashuniversityalumni monashuniversityalumnispeakerseries 2011alumnispeakerseries artificiallifeanddesignerbabies abcbigideas professorjuliansavulescu uehirochairinpracticalethicsattheuniversityofoxford uehirochairinpracticalethics sirlouismathesondistinguishedvisitingprofessor"}, {"datetaken": "2011-03-31 18:43:37", "license": "1", "title": "Professor Gab Kovacs", "text": "", "album_id": "72157626285246453", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5225/5581586524_2ef4eca906_o.jpg", "secret": "fc66429b35", "media": "photo", "latitude": "0", "id": "5581586524", "tags": "forum federationsquare melbourne vic abc debate monashuniversity bigideas facultyofarts bmwedge australianbroadcastingcorporation melbournevic slowtv alumnispeakerseries monashuniversityalumni monashuniversityalumnispeakerseries 2011alumnispeakerseries artificiallifeanddesignerbabies abcbigideas professorgabkovacs professorofobstetricsandgynaecology monashivf"}, {"datetaken": "2011-03-31 19:21:04", "license": "1", "title": "Associate Professor Nicholas Tonti-Filippini", "text": "", "album_id": "72157626285246453", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5254/5581587170_863c87887c_o.jpg", "secret": "4c8f639891", "media": "photo", "latitude": "0", "id": "5581587170", "tags": "forum federationsquare melbourne vic abc debate monashuniversity bigideas facultyofarts bmwedge australianbroadcastingcorporation melbournevic slowtv alumnispeakerseries monashuniversityalumni monashuniversityalumnispeakerseries 2011alumnispeakerseries artificiallifeanddesignerbabies abcbigideas associateprofessornicholastontifilippini associatedeanteachinglearningandresearch headofbioethics johnpauliiinstituteformarriageandfamily consultantinbioethics"}, {"datetaken": "2011-03-31 20:05:05", "license": "1", "title": "Onion Tartlet", "text": "", "album_id": "72157626285246453", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5228/5581589146_2d50cf659b_o.jpg", "secret": "c2fc2cc517", "media": "photo", "latitude": "0", "id": "5581589146", "tags": "forum abc onion debate monashuniversity tartlet bigideas facultyofarts australianbroadcastingcorporation slowtv alumnispeakerseries monashuniversityalumni monashuniversityalumnispeakerseries 2011alumnispeakerseries artificiallifeanddesignerbabies abcbigideas oniontartlet"}, {"datetaken": "2011-03-31 20:09:30", "license": "1", "title": "BMW Edge", "text": "", "album_id": "72157626285246453", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5294/5580999793_371a70fa0d_o.jpg", "secret": "fabc4b7b07", "media": "photo", "latitude": "0", "id": "5580999793", "tags": "forum federationsquare melbourne vic abc debate monashuniversity bigideas facultyofarts bmwedge australianbroadcastingcorporation melbournevic slowtv alumnispeakerseries monashuniversityalumni monashuniversityalumnispeakerseries 2011alumnispeakerseries artificiallifeanddesignerbabies abcbigideas"}, {"datetaken": "2011-03-31 20:09:41", "license": "1", "title": "Stage - BMW Edge", "text": "", "album_id": "72157626285246453", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5060/5581000601_b3153c3d36_o.jpg", "secret": "f9701353ea", "media": "photo", "latitude": "0", "id": "5581000601", "tags": "forum federationsquare melbourne vic abc debate monashuniversity bigideas facultyofarts bmwedge australianbroadcastingcorporation melbournevic slowtv alumnispeakerseries monashuniversityalumni monashuniversityalumnispeakerseries 2011alumnispeakerseries artificiallifeanddesignerbabies abcbigideas"}, {"datetaken": "2009-02-08 14:10:20", "license": "2", "title": "Wisconsin Defeats Penn State 1", "text": "", "album_id": "72157625207406112", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/4952490752_3aa1d24ece_o.jpg", "secret": "10e1d0b951", "media": "photo", "latitude": "0", "id": "4952490752", "tags": "sports students basketball wisconsin athletics events pennstate benefit fundraising nittanylions brycejordancenter silentauction mensbasketball universityparkcampus studentathletes coachesvscancer autographedpicture creditannemariemountz"}, {"datetaken": "2009-02-08 14:13:43", "license": "2", "title": "Wisconsin Defeats Penn State 2", "text": "", "album_id": "72157625207406112", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4951900321_f0c6a13954_o.jpg", "secret": "4c9423f9a8", "media": "photo", "latitude": "0", "id": "4951900321", "tags": "sports students basketball wisconsin athletics display events pennstate fans nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditannemariemountz philliesworldseriestrophy philliesballgirl"}, {"datetaken": "2009-02-08 15:10:16", "license": "2", "title": "Wisconsin Defeats Penn State 6", "text": "", "album_id": "72157625207406112", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4952492436_649ecee2f7_o.jpg", "secret": "0d231657dd", "media": "photo", "latitude": "0", "id": "4952492436", "tags": "sports students basketball wisconsin athletics events pennstate nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditannemariemountz"}, {"datetaken": "2009-02-08 15:23:58", "license": "2", "title": "Wisconsin Defeats Penn State 8", "text": "", "album_id": "72157625207406112", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/4951901953_c9dc11eb4e_o.jpg", "secret": "37a783e72e", "media": "photo", "latitude": "0", "id": "4951901953", "tags": "sports students basketball wisconsin children athletics events mascot pennstate fans nittanylion nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditandycolwell"}, {"datetaken": "2009-02-08 15:27:05", "license": "2", "title": "Wisconsin Defeats Penn State 3", "text": "", "album_id": "72157625207406112", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/4952491538_0b349d0df0_o.jpg", "secret": "2da7475e1b", "media": "photo", "latitude": "0", "id": "4952491538", "tags": "sports students basketball wisconsin athletics events pennstate nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditandycolwell"}, {"datetaken": "2009-02-08 15:45:09", "license": "2", "title": "Wisconsin Defeats Penn State 4", "text": "", "album_id": "72157625207406112", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4092/4951900811_31e65e0080_o.jpg", "secret": "90bc17b298", "media": "photo", "latitude": "0", "id": "4951900811", "tags": "sports students basketball wisconsin athletics events pennstate nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditandycolwell"}, {"datetaken": "2009-02-08 15:51:00", "license": "2", "title": "Wisconsin Defeats Penn State 7", "text": "", "album_id": "72157625207406112", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/4952492716_3954222f1f_o.jpg", "secret": "fb90004375", "media": "photo", "latitude": "0", "id": "4952492716", "tags": "sports students basketball wisconsin athletics events pennstate trophy mascots nittanylion nittanylions brycejordancenter philliesphanatic mensbasketball universityparkcampus studentathletes creditannemariemountz"}, {"datetaken": "2009-02-08 16:18:11", "license": "2", "title": "Wisconsin Defeats Penn State 5", "text": "", "album_id": "72157625207406112", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4124/4952492218_28586decf1_o.jpg", "secret": "4462ba8cf4", "media": "photo", "latitude": "0", "id": "4952492218", "tags": "sports students basketball wisconsin athletics events pennstate nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditandycolwell"}, {"datetaken": "2009-02-08 16:47:04", "license": "2", "title": "Wisconsin Defeats Penn State 10", "text": "", "album_id": "72157625207406112", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/4952493476_8f2423e187_o.jpg", "secret": "e204677db9", "media": "photo", "latitude": "0", "id": "4952493476", "tags": "sports students basketball wisconsin athletics events pennstate fans nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditannemariemountz nittanynation"}, {"datetaken": "2009-02-08 16:59:06", "license": "2", "title": "Wisconsin Defeats Penn State 9", "text": "", "album_id": "72157625207406112", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4087/4952493306_de9677e626_o.jpg", "secret": "fd0e602369", "media": "photo", "latitude": "0", "id": "4952493306", "tags": "sports students basketball wisconsin athletics events pennstate nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditannemariemountz"}, {"datetaken": "2007-10-01 00:10:59", "license": "4", "title": "BP", "text": "", "album_id": "72157602272641871", "longitude": "-104.994197", "url_o": "https://farm2.staticflickr.com/1059/1487986820_fc5460874b_o.jpg", "secret": "6ac9fbd43d", "media": "photo", "latitude": "39.755892", "id": "1487986820", "tags": "sports rockies colorado baseball denver event mlb coloradorockies smnotchecked"}, {"datetaken": "2007-10-01 00:35:47", "license": "4", "title": "drag it", "text": "", "album_id": "72157602272641871", "longitude": "-104.994181", "url_o": "https://farm2.staticflickr.com/1159/1487131473_9aca452613_o.png", "secret": "0a5e651893", "media": "photo", "latitude": "39.756197", "id": "1487131473", "tags": "sports rockies colorado baseball denver event mlb coloradorockies smnotchecked"}, {"datetaken": "2007-10-01 00:38:34", "license": "4", "title": "Fan Appreciation Day at Coors Field", "text": "", "album_id": "72157602272641871", "longitude": "-104.994760", "url_o": "https://farm2.staticflickr.com/1125/1487132955_bb9359c103_o.jpg", "secret": "c87ab4fab3", "media": "photo", "latitude": "39.757005", "id": "1487132955", "tags": "sports rockies colorado baseball denver event mlb coloradorockies smnotchecked"}, {"datetaken": "2007-10-01 00:47:35", "license": "4", "title": "Military Appreciation Day at Coors Field", "text": "", "album_id": "72157602272641871", "longitude": "-104.994953", "url_o": "https://farm2.staticflickr.com/1009/1487134859_c8b81cd407_o.jpg", "secret": "831e060d26", "media": "photo", "latitude": "39.756073", "id": "1487134859", "tags": "sports rockies colorado uniform baseball denver event mlb coloradorockies smnotchecked"}, {"datetaken": "2007-10-01 00:47:53", "license": "4", "title": "Military Appreciation Day at Coors Field", "text": "", "album_id": "72157602272641871", "longitude": "-104.994953", "url_o": "https://farm2.staticflickr.com/1380/1487137061_8cd9c7fa0a_o.jpg", "secret": "d0f1a2af87", "media": "photo", "latitude": "39.756073", "id": "1487137061", "tags": "sports rockies colorado uniform baseball denver event mlb coloradorockies smnotchecked"}, {"datetaken": "2007-10-01 00:48:12", "license": "4", "title": "Military Appreciation Day at Coors Field", "text": "", "album_id": "72157602272641871", "longitude": "-104.994953", "url_o": "https://farm2.staticflickr.com/1254/1487139267_d8f75b6732_o.jpg", "secret": "0bbed8a31d", "media": "photo", "latitude": "39.756073", "id": "1487139267", "tags": "sports rockies colorado uniform baseball denver event mlb coloradorockies smnotchecked"}, {"datetaken": "2007-10-01 00:48:53", "license": "4", "title": "Military Appreciation Day at Coors Field", "text": "", "album_id": "72157602272641871", "longitude": "-104.994953", "url_o": "https://farm2.staticflickr.com/1258/1487997728_9c5ea987f0_o.jpg", "secret": "572251b017", "media": "photo", "latitude": "39.756073", "id": "1487997728", "tags": "sports rockies colorado uniform baseball denver event mlb coloradorockies smnotchecked"}, {"datetaken": "2007-10-01 00:51:26", "license": "4", "title": "Military Appreciation Day at Coors Field", "text": "", "album_id": "72157602272641871", "longitude": "-104.994181", "url_o": "https://farm2.staticflickr.com/1091/1487146641_0b0fd76d99_o.jpg", "secret": "dedeb036db", "media": "photo", "latitude": "39.756197", "id": "1487146641", "tags": "sports rockies colorado uniform baseball denver event mlb coloradorockies smnotchecked"}, {"datetaken": "2007-10-01 00:55:06", "license": "4", "title": "Military Appreciation Day at Coors Field", "text": "", "album_id": "72157602272641871", "longitude": "-104.994197", "url_o": "https://farm2.staticflickr.com/1058/1488005360_6396087d5f_o.jpg", "secret": "021d2268e2", "media": "photo", "latitude": "39.755892", "id": "1488005360", "tags": "sports rockies colorado uniform baseball denver event mlb coloradorockies smnotchecked"}, {"datetaken": "2007-10-01 00:55:28", "license": "4", "title": "Military Appreciation Day at Coors Field, Denver, Colorado", "text": "", "album_id": "72157602272641871", "longitude": "-104.994181", "url_o": "https://farm2.staticflickr.com/1237/1488008444_144e1f9723_o.jpg", "secret": "121e6e1b75", "media": "photo", "latitude": "39.756197", "id": "1488008444", "tags": "sports rockies colorado uniform baseball flag salute denver event attention mlb coloradorockies smnotchecked"}, {"datetaken": "2007-10-01 00:58:00", "license": "4", "title": "Military Appreciation Day at Coors Field", "text": "", "album_id": "72157602272641871", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1255/1487158135_3a5b1eb68d_o.jpg", "secret": "3c1c1f31fb", "media": "photo", "latitude": "0", "id": "1487158135", "tags": "sports rockies colorado baseball denver event mlb coloradorockies smnotchecked"}, {"datetaken": "2007-10-01 01:04:30", "license": "4", "title": "vendor", "text": "", "album_id": "72157602272641871", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1402/1488016416_3bf9651b82_o.jpg", "secret": "76e0cf703d", "media": "photo", "latitude": "0", "id": "1488016416", "tags": "sports rockies colorado baseball denver event mlb coloradorockies then2 smnotchecked"}, {"datetaken": "2007-10-01 01:11:31", "license": "4", "title": "no throw", "text": "", "album_id": "72157602272641871", "longitude": "-104.994181", "url_o": "https://farm2.staticflickr.com/1403/1488017622_a9c5635dab_o.jpg", "secret": "97a46f61ed", "media": "photo", "latitude": "39.756197", "id": "1488017622", "tags": "sports rockies colorado baseball denver event mlb coloradorockies smnotchecked"}, {"datetaken": "2007-10-01 02:04:41", "license": "4", "title": "From the farthest & highest seat in left", "text": "", "album_id": "72157602272641871", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1258/1487167737_728d74aa69_o.jpg", "secret": "6137a5acbd", "media": "photo", "latitude": "0", "id": "1487167737", "tags": "sports rockies colorado baseball denver event mlb coloradorockies smnotchecked"}, {"datetaken": "2007-10-01 02:17:21", "license": "4", "title": "like ants", "text": "", "album_id": "72157602272641871", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1192/1488028816_9a0ce882da_o.jpg", "secret": "a454669094", "media": "photo", "latitude": "0", "id": "1488028816", "tags": "sports rockies colorado baseball denver event mlb coloradorockies smnotchecked"}, {"datetaken": "2007-10-01 02:44:31", "license": "4", "title": "P1060187_edited-1", "text": "", "album_id": "72157602272641871", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1157/1487261037_1c3434bebf_o.jpg", "secret": "5f94b0823d", "media": "photo", "latitude": "0", "id": "1487261037", "tags": "sports rockies colorado baseball denver event mlb coloradorockies smnotchecked"}, {"datetaken": "2007-10-01 03:12:04", "license": "4", "title": "P1060193_edited-1", "text": "", "album_id": "72157602272641871", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1343/1488116686_3e3e5974c6_o.jpg", "secret": "12b7a898b4", "media": "photo", "latitude": "0", "id": "1488116686", "tags": "sports rockies colorado baseball denver event mlb coloradorockies smnotchecked"}, {"datetaken": "2007-10-01 04:05:11", "license": "4", "title": "The Rockies are in!", "text": "", "album_id": "72157602272641871", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1235/1487178809_62fcafaa1a_o.jpg", "secret": "f0f89a7ff0", "media": "photo", "latitude": "0", "id": "1487178809", "tags": "sports rockies colorado baseball denver event mlb coloradorockies smnotchecked"}, {"datetaken": "2011-10-04 08:37:49", "license": "5", "title": "Play the Game", "text": "", "album_id": "72157627815812442", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6045/6211033380_7e4dd5b8ba_o.jpg", "secret": "aa951493cf", "media": "photo", "latitude": "0", "id": "6211033380", "tags": "brazil game sport play cologne tine harden 2011 megaevents"}, {"datetaken": "2011-10-04 09:16:28", "license": "5", "title": "Play the Game", "text": "", "album_id": "72157627815812442", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6183/6211041978_8bc4dc8769_o.jpg", "secret": "7ca7957a55", "media": "photo", "latitude": "0", "id": "6211041978", "tags": "game sport play cologne tine harden 2011"}, {"datetaken": "2011-10-04 09:27:34", "license": "5", "title": "Play the Game", "text": "", "album_id": "72157627815812442", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6047/6259916257_fc7f668c76_o.jpg", "secret": "35a97d8642", "media": "photo", "latitude": "0", "id": "6259916257", "tags": "game sport play cologne tine harden 2011"}, {"datetaken": "2011-10-04 09:37:24", "license": "5", "title": "Play the Game", "text": "", "album_id": "72157627815812442", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6157/6230757072_f178de274f_o.jpg", "secret": "42863ee974", "media": "photo", "latitude": "0", "id": "6230757072", "tags": "brazil game sport play cologne tine harden 2011 megaevents"}, {"datetaken": "2011-10-04 10:18:33", "license": "5", "title": "Play the Game", "text": "", "album_id": "72157627815812442", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6223/6230761860_e830bce1dd_o.jpg", "secret": "01ef2c975d", "media": "photo", "latitude": "0", "id": "6230761860", "tags": "game london sport play cologne games olympic tine 2012 harden 2011 megaevents"}, {"datetaken": "2011-10-04 10:33:58", "license": "5", "title": "Play the Game", "text": "", "album_id": "72157627815812442", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6238/6213867922_e803455c7f_o.jpg", "secret": "4377dac0c4", "media": "photo", "latitude": "0", "id": "6213867922", "tags": "game london sport play cologne games olympic tine 2012 harden 2011 megaevents"}, {"datetaken": "2011-10-04 10:36:00", "license": "5", "title": "Play the Game", "text": "", "album_id": "72157627815812442", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6049/6211069328_feb195a16f_o.jpg", "secret": "e71431cc2a", "media": "photo", "latitude": "0", "id": "6211069328", "tags": "game london sport play cologne games olympic tine 2012 harden 2011 megaevents"}, {"datetaken": "2011-10-04 10:36:28", "license": "5", "title": "Play the Game", "text": "", "album_id": "72157627815812442", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6156/6210510707_651dec98ff_o.jpg", "secret": "68f4e68089", "media": "photo", "latitude": "0", "id": "6210510707", "tags": "game sport play stadium cologne legacy tine harden 2011"}, {"datetaken": "2011-10-04 10:37:00", "license": "5", "title": "Play the Game", "text": "", "album_id": "72157627815812442", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6057/6230240911_e98de17e7b_o.jpg", "secret": "bcf7168367", "media": "photo", "latitude": "0", "id": "6230240911", "tags": "game sport play stadium cologne legacy tine harden 2011"}, {"datetaken": "2011-10-04 10:43:06", "license": "5", "title": "Play the Game", "text": "", "album_id": "72157627815812442", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6040/6256702159_a726173291_o.jpg", "secret": "f28071b99b", "media": "photo", "latitude": "0", "id": "6256702159", "tags": "game sport play cologne tine harden 2011 megaevents"}, {"datetaken": "2010-11-14 17:32:07", "license": "4", "title": "I protagonisti riuniti all'autodromo di pergusa | 25\u00b0 Rally Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6008/6011707300_bee336b1a5_o.jpg", "secret": "418980363c", "media": "photo", "latitude": "37.520337", "id": "6011707300", "tags": "enna fiat renault subaru k2 sicily sicilia aci n4 subaruimpreza fiatpunto super1600 renaultclio pergusa csai kappadue enteautodromopergusa autodromopergusa rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina ericciardiacontini marcorunfola mrunfolagloneri teamislandmotorsport umbertolunardi annaranno ulunardiaranno teamsicilyrallyteam ebeccariaapittella teamsgbrally galiotogperrone teammessinart teamticinorallyferraramotors"}, {"datetaken": "2010-11-14 17:33:02", "license": "4", "title": "Gabriele Lucchesi e Titti Ghilardi | Fiat Punto Super 2000 | 25\u00b0 Rally Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6007/6011807240_fe0cb85da2_o.jpg", "secret": "129d2dff02", "media": "photo", "latitude": "37.520337", "id": "6011807240", "tags": "enna fiat k2 sicily peugeot sicilia aci fiatpunto super1600 peugeot207 super2000 pergusa csai kappadue enteautodromopergusa autodromopergusa rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina glucchesitghilardi teametruria rlombardoaspiteri teamcaltanissettacorse brsport galiotogperrone teammessinart autodromopergusarlombardoaspiteri"}, {"datetaken": "2010-11-14 17:34:00", "license": "4", "title": "Claudio De Cecco e Alberto Barigelli | Peugeot 207 Super 2000 | 25\u00b0 Rally Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6128/6011268647_60d8d33498_o.jpg", "secret": "554ba21868", "media": "photo", "latitude": "37.520337", "id": "6011268647", "tags": "enna k2 sicily peugeot sicilia aci peugeot207 super2000 pergusa csai kappadue claudiodececco enteautodromopergusa autodromopergusa cdececcoabarigelli teammotorinmotion rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina albertobarigelli friulmotor"}, {"datetaken": "2010-11-14 17:34:44", "license": "4", "title": "Mario La Barbera e Riccardo Bonsignore | Peugeot 207 Super 2000 | 25\u00b0 Rally Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6125/6012374762_33f41a2dcf_o.jpg", "secret": "901938d7cc", "media": "photo", "latitude": "37.520337", "id": "6012374762", "tags": "enna k2 sicily peugeot sicilia aci teamphoenix peugeot207 super2000 pergusa csai kappadue enteautodromopergusa autodromopergusa lbtecnorally rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina mlabarberarbonsignore"}, {"datetaken": "2010-11-14 17:34:51", "license": "4", "title": "In attesa di Runfola e Lo Neri, vincitori del 25\u00b0 Rally Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6133/6011262293_8cf7394bb8_o.jpg", "secret": "82684b7544", "media": "photo", "latitude": "37.520337", "id": "6011262293", "tags": "enna k2 sicily peugeot sicilia aci teamphoenix peugeot207 super2000 pergusa csai kappadue claudiodececco enteautodromopergusa autodromopergusa lbtecnorally cdececcoabarigelli teammotorinmotion rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina albertobarigelli friulmotor mlabarberarbonsignore"}, {"datetaken": "2010-11-14 17:35:16", "license": "4", "title": "Mario La Barbera e Riccardo Bonsignore | Peugeot 207 Super 2000 | 25\u00b0 Rally Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6013/6010711427_9ce62f96eb_o.jpg", "secret": "c705dce929", "media": "photo", "latitude": "37.520337", "id": "6010711427", "tags": "enna k2 sicily peugeot sicilia aci teamphoenix peugeot207 super2000 pergusa csai kappadue enteautodromopergusa autodromopergusa lbtecnorally rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina mlabarberarbonsignore"}, {"datetaken": "2010-11-14 17:35:39", "license": "4", "title": "Marco Runfola e G. Lo Neri | Renault Clio Super 1600 | Vincitore del 25\u00b0 Rally Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6140/6001562363_42d8d553af_o.jpg", "secret": "f3ef053cff", "media": "photo", "latitude": "37.520337", "id": "6001562363", "tags": "enna renault k2 sicily sicilia aci super1600 renaultclio pergusa csai kappadue enteautodromopergusa autodromopergusa rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina marcorunfola mrunfolagloneri teamislandmotorsport ferraramotors"}, {"datetaken": "2010-11-14 17:36:28", "license": "4", "title": "Il Podio del 25\u00b0 Rally di Proserpina", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6030/6002101966_5e8788728f_o.jpg", "secret": "28d293043d", "media": "photo", "latitude": "37.520337", "id": "6002101966", "tags": "enna renault k2 sicily peugeot sicilia aci super1600 renaultclio teamphoenix peugeot207 super2000 pergusa csai kappadue claudiodececco enteautodromopergusa autodromopergusa lbtecnorally cdececcoabarigelli teammotorinmotion rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina albertobarigelli marcorunfola mrunfolagloneri teamislandmotorsport mlabarberarbonsignore friulmotorferraramotors"}, {"datetaken": "2010-11-14 17:37:09", "license": "4", "title": "Marco Runfola e G. Lo Neri| Renault Clio Super 1600 | 25\u00b0 Rally Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6029/6010708753_6ba6a3d7e7_o.jpg", "secret": "b3f841dc2d", "media": "photo", "latitude": "37.520337", "id": "6010708753", "tags": "enna renault k2 sicily sicilia aci super1600 renaultclio pergusa csai kappadue enteautodromopergusa autodromopergusa rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina marcorunfola mrunfolagloneri teamislandmotorsport ferraramotors"}, {"datetaken": "2010-11-14 17:37:11", "license": "4", "title": "Runfola e Lo Neri - Vincitori del 25\u00b0 Rally di Proserpina", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6128/6011938745_9f1fe56d9c_o.jpg", "secret": "feae7cc356", "media": "photo", "latitude": "37.520337", "id": "6011938745", "tags": "enna renault k2 sicily sicilia aci super1600 renaultclio pergusa csai kappadue enteautodromopergusa autodromopergusa rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina marcorunfola mrunfolagloneri teamislandmotorsport ferraramotors"}, {"datetaken": "2010-11-14 17:39:16", "license": "4", "title": "Mario La Barbera, Riccardo Bonsignore e Claudio De Cecco alla premiazione del 25\u00b0 Rally Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6005/6001582615_50fc1e0a22_o.jpg", "secret": "994fde4bb0", "media": "photo", "latitude": "37.520337", "id": "6001582615", "tags": "enna k2 sicily peugeot sicilia aci teamphoenix peugeot207 super2000 pergusa csai kappadue claudiodececco enteautodromopergusa autodromopergusa lbtecnorally cdececcoabarigelli rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina mlabarberarbonsignore"}, {"datetaken": "2010-11-14 17:40:37", "license": "4", "title": "Marco Runfola, G. Lo Neri, Mario La Barbera e Cluadio De Cecco alla premiazione del 25\u00b0 Rally Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6144/6001571275_5b561a6d1c_o.jpg", "secret": "dbd182759c", "media": "photo", "latitude": "37.520337", "id": "6001571275", "tags": "enna renault k2 sicily sicilia aci super1600 renaultclio pergusa csai kappadue claudiodececco enteautodromopergusa autodromopergusa cdececcoabarigelli rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina marcorunfola mrunfolagloneri teamislandmotorsport"}, {"datetaken": "2010-11-14 17:40:56", "license": "4", "title": "il podio del 25\u00b0 Rally di Proserpina", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6011/6008775714_b2c68457f4_o.jpg", "secret": "10ca300d0e", "media": "photo", "latitude": "37.520337", "id": "6008775714", "tags": "enna k2 sicily sicilia aci pergusa csai kappadue enteautodromopergusa autodromopergusa 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina albertobarigelli marcorunfola mrunfolagloneri mlabarberarbonsignoreclaudiodececco cdececcoabarigellirallyproserpina2010"}, {"datetaken": "2010-11-14 17:41:30", "license": "4", "title": "I vincitori festeggiano sul podio del 25\u00b0 Rally di Proserpina", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6023/6009120400_b0255c16f6_o.jpg", "secret": "c00c43dfa4", "media": "photo", "latitude": "37.520337", "id": "6009120400", "tags": "enna renault k2 sicily peugeot sicilia aci super1600 renaultclio teamphoenix peugeot207 super2000 pergusa csai kappadue claudiodececco enteautodromopergusa autodromopergusa cdececcoabarigelli teammotorinmotion rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina albertobarigelli friulmotor marcorunfola mrunfolagloneri teamislandmotorsport autodromopergusamlabarberarbonsignore"}, {"datetaken": "2010-11-14 17:41:32", "license": "4", "title": "Il podio del 25\u00b0 Rally di Proserpina", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6010/6011931229_088f0a018f_o.jpg", "secret": "63e1af20a6", "media": "photo", "latitude": "37.520337", "id": "6011931229", "tags": "enna renault k2 sicily peugeot sicilia aci super1600 renaultclio teamphoenix peugeot207 super2000 pergusa csai kappadue claudiodececco enteautodromopergusa autodromopergusa cdececcoabarigelli teammotorinmotion rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina albertobarigelli marcorunfola mrunfolagloneri teamislandmotorsport friulmotormlabarberarbonsignore lbtecnorallyferraramotors"}, {"datetaken": "2010-11-14 17:41:33", "license": "4", "title": "Runfola, Lo Neri, La Barbera, Bonsignore, De Cecco, Barigelli | 25\u00b0 Rally di Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6025/6005847862_c83da624ef_o.jpg", "secret": "95ab078120", "media": "photo", "latitude": "37.520337", "id": "6005847862", "tags": "enna renault k2 sicily peugeot sicilia aci super1600 renaultclio teamphoenix peugeot207 super2000 pergusa csai kappadue enteautodromopergusa autodromopergusa rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina marcorunfola mrunfolagloneri teamislandmotorsport mlabarberarbonsignore"}, {"datetaken": "2010-11-14 17:41:35", "license": "4", "title": "Runfola e Lo Neri festeggiano la vittoria del 25\u00b0 Rally di Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6014/6008584669_56f691ceaf_o.jpg", "secret": "c8abe7121e", "media": "photo", "latitude": "37.520337", "id": "6008584669", "tags": "enna renault k2 sicily peugeot sicilia aci super1600 renaultclio teamphoenix peugeot207 super2000 pergusa csai kappadue claudiodececco enteautodromopergusa autodromopergusa cdececcoabarigelli teammotorinmotion rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina albertobarigelli friulmotor marcorunfola mrunfolagloneri teamislandmotorsport autodromopergusamlabarberarbonsignore"}, {"datetaken": "2010-11-14 17:41:37", "license": "4", "title": "Lo Neri e De Cecco | 25\u00b0 Rally di Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6122/6005855480_d581a7864c_o.jpg", "secret": "113760dc8e", "media": "photo", "latitude": "37.520337", "id": "6005855480", "tags": "enna renault k2 sicily peugeot sicilia aci super1600 renaultclio peugeot207 super2000 pergusa csai kappadue claudiodececco enteautodromopergusa autodromopergusa cdececcoabarigelli teammotorinmotion rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina albertobarigelli friulmotor marcorunfola mrunfolagloneri teamislandmotorsport"}, {"datetaken": "2010-11-14 17:43:07", "license": "4", "title": "Claudio De Cecco e Alberto Barigelli | Peugeot 207 Super 2000 | 25\u00b0 Rally Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6126/6011910644_4bca8d88b2_o.jpg", "secret": "a4a9349cd1", "media": "photo", "latitude": "37.520337", "id": "6011910644", "tags": "enna k2 sicily peugeot sicilia aci peugeot207 super2000 pergusa csai kappadue claudiodececco enteautodromopergusa autodromopergusa cdececcoabarigelli teammotorinmotion rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina albertobarigelli friulmotor"}, {"datetaken": "2010-11-14 17:43:48", "license": "4", "title": "L'auto di Runfola e Lo Neri, vincitrice del 25\u00b0 Rally Di Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6030/6012454830_565438fce3_o.jpg", "secret": "4bf5e37c61", "media": "photo", "latitude": "37.520337", "id": "6012454830", "tags": "enna renault k2 sicily sicilia aci super1600 renaultclio pergusa csai kappadue enteautodromopergusa autodromopergusa rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina marcorunfola mrunfolagloneri teamislandmotorsport ferraramotors"}, {"datetaken": "2010-11-14 17:44:33", "license": "4", "title": "Marco Runfola Vincitore del 25\u00b0 Rally di Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6135/6011901177_6c0f850a63_o.jpg", "secret": "0b7fa696c7", "media": "photo", "latitude": "37.520337", "id": "6011901177", "tags": "enna renault k2 sicily sicilia aci super1600 renaultclio pergusa csai kappadue enteautodromopergusa autodromopergusa rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina marcorunfola mrunfolagloneri teamislandmotorsport ferraramotors"}, {"datetaken": "2010-11-14 17:45:00", "license": "4", "title": "I protagonisti riuniti all'autodromo di pergusa | 25\u00b0 Rally Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6134/6011165607_e7f59dd11d_o.jpg", "secret": "064b299a50", "media": "photo", "latitude": "37.520337", "id": "6011165607", "tags": "enna fiat subaru k2 sicily peugeot sicilia aci n4 subaruimpreza fiatpunto super1600 peugeot207 super2000 pergusa csai kappadue enteautodromopergusa autodromopergusa newturbomark rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina glucchesitghilardi teametruria rlombardoaspiteri teamcaltanissettacorse brsport ericciardiacontini teamticinorally umbertolunardi annaranno ulunardiaranno teamsicilyrallyteam galiotogperrone teammessinart mciffompetrocitto"}, {"datetaken": "2010-11-14 18:01:52", "license": "4", "title": "Davide Caruso e Paolo Guttadauro | Renault Clio R3 | 25\u00b0 Rally Proserpina 2010", "text": "", "album_id": "72157627215779095", "longitude": "14.306387", "url_o": "https://farm7.staticflickr.com/6137/6011707047_24a3f029e9_o.jpg", "secret": "4333e1f372", "media": "photo", "latitude": "37.520337", "id": "6011707047", "tags": "enna renault k2 sicily r3 sicilia aci renaultclio pergusa csai kappadue enteautodromopergusa autodromopergusa lbtecnorally rallyproserpina2010 25\u00b0rallyproserpina coppaitaliarally finalecoppaitaliarally rallyproserpina davidecaruso dcarusopguttadauro"}, {"datetaken": "2005-06-07 10:50:46", "license": "6", "title": "Warming Up", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17912292_022dcc8c9e_o.jpg", "secret": "022dcc8c9e", "media": "photo", "latitude": "0", "id": "17912292", "tags": "sumo japan may 2005 sports halfnaked diapers fatmen wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-07 10:52:26", "license": "6", "title": "A Quick Meditation", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17912473_b783c36002_o.png", "secret": "b783c36002", "media": "photo", "latitude": "0", "id": "17912473", "tags": "sumo japan may 2005 sports halfnaked diapers fatmen wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-07 10:53:08", "license": "6", "title": "The Power of a Boy in a Skirt", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17912566_a1316f91ff_o.jpg", "secret": "a1316f91ff", "media": "photo", "latitude": "0", "id": "17912566", "tags": "sumo japan may 2005 sports meninskirts crossdressers crossdressing wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-07 10:53:20", "license": "6", "title": "The Power of a Boy in No Shoes", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17912592_2760483268_o.jpg", "secret": "2760483268", "media": "photo", "latitude": "0", "id": "17912592", "tags": "sumo japan may 2005 barefoot sports wrestling japaneseschoolgirl sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-07 10:53:44", "license": "6", "title": "Skirt Power, Part Deux", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17912635_94301b5036_o.png", "secret": "94301b5036", "media": "photo", "latitude": "0", "id": "17912635", "tags": "sumo japan may 2005 sports meninskirts crossdresser crossdressing wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-07 10:54:55", "license": "6", "title": "Up Too Close", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17912814_7ecf880d00_o.png", "secret": "7ecf880d00", "media": "photo", "latitude": "0", "id": "17912814", "tags": "sumo japan may 2005 sports halfnaked diapers fatmen wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-07 10:56:32", "license": "6", "title": "Hulking Silhouette", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17913067_360dcb28cd_o.png", "secret": "360dcb28cd", "media": "photo", "latitude": "0", "id": "17913067", "tags": "sumo japan may 2005 sports halfnaked diapers fatmen wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-07 10:56:58", "license": "6", "title": "Adjustments", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17913159_9979af91da_o.png", "secret": "9979af91da", "media": "photo", "latitude": "0", "id": "17913159", "tags": "sumo japan may 2005 sports halfnaked diapers fatmen wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-07 10:58:44", "license": "6", "title": "The Fourth Fist", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17913490_d4d68413f4_o.png", "secret": "d4d68413f4", "media": "photo", "latitude": "0", "id": "17913490", "tags": "sumo japan may 2005 sports halfnaked diapers fatmen wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-07 10:59:05", "license": "6", "title": "Nuntuganuntuganuntuga", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17913555_1e34f659f2_o.png", "secret": "1e34f659f2", "media": "photo", "latitude": "0", "id": "17913555", "tags": "sumo japan may 2005 sports halfnaked diapers fatmen wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-07 11:00:44", "license": "6", "title": "The Judges Rush the Ring", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17913780_3bbea59536_o.png", "secret": "3bbea59536", "media": "photo", "latitude": "0", "id": "17913780", "tags": "sumo japan may 2005 sports halfnaked diapers fatmen wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-07 11:02:11", "license": "6", "title": "Round Two", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17913954_e46c4a9941_o.png", "secret": "e46c4a9941", "media": "photo", "latitude": "0", "id": "17913954", "tags": "sumo japan may 2005 sports halfnaked diapers fatmen wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-08 10:32:48", "license": "6", "title": "Okinawa Makes His Move", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18097014_b8b4014b1d_o.png", "secret": "b8b4014b1d", "media": "photo", "latitude": "0", "id": "18097014", "tags": "sumo japan may 2005 sports halfnaked diapers fatmen wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-08 10:37:56", "license": "6", "title": "Robbed", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18097674_6e20f6b894_o.png", "secret": "6e20f6b894", "media": "photo", "latitude": "0", "id": "18097674", "tags": "sumo japan may 2005 sports halfnaked diapers fatmen wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-08 10:38:04", "license": "6", "title": "Smackdown", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18097699_c3899c02b0_o.jpg", "secret": "c3899c02b0", "media": "photo", "latitude": "0", "id": "18097699", "tags": "sumo japan may 2005 sports halfnaked diapers fatmen wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-08 10:39:04", "license": "6", "title": "The Skinny Guy Knows When To Run", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18097816_c0eac9a2f5_o.png", "secret": "c0eac9a2f5", "media": "photo", "latitude": "0", "id": "18097816", "tags": "sumo japan may 2005 sports halfnaked diapers fatmen wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-08 10:39:28", "license": "6", "title": "Is That Legal?", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18097878_771caad702_o.png", "secret": "771caad702", "media": "photo", "latitude": "0", "id": "18097878", "tags": "sumo japan may 2005 sports halfnaked diapers fatmen wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-08 10:39:50", "license": "6", "title": "The Fear", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18097931_5c96b2be16_o.png", "secret": "5c96b2be16", "media": "photo", "latitude": "0", "id": "18097931", "tags": "sumo japan may 2005 sports halfnaked diapers fatmen wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-08 10:40:14", "license": "6", "title": "The Hot Guy", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18097994_030ccbe5da_o.png", "secret": "030ccbe5da", "media": "photo", "latitude": "0", "id": "18097994", "tags": "sumo japan may 2005 sports halfnaked diapers fatmen wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2005-06-08 10:40:34", "license": "6", "title": "He Nearly Exploded My Friends", "text": "", "album_id": "428173", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18098040_a3166aaf4c_o.png", "secret": "a3166aaf4c", "media": "photo", "latitude": "0", "id": "18098040", "tags": "sumo japan may 2005 sports halfnaked diapers fatmen wrestling sumowrestling wrestlers highschool competition"}, {"datetaken": "2011-09-02 08:17:58", "license": "5", "title": "Memorial Stadium, Clemson University Tigers, Clemson, South Carolina", "text": "", "album_id": "72157631742265391", "longitude": "-82.842203", "url_o": "https://farm7.staticflickr.com/6074/6120541648_c69f74f293_o.jpg", "secret": "e1d59c14b4", "media": "photo", "latitude": "34.679028", "id": "6120541648", "tags": ""}, {"datetaken": "2011-09-02 08:18:10", "license": "5", "title": "Memorial Stadium, Clemson University Tigers, Clemson, South Carolina", "text": "", "album_id": "72157631742265391", "longitude": "-82.842203", "url_o": "https://farm7.staticflickr.com/6086/6119999377_ce1ef380e4_o.jpg", "secret": "e565a75095", "media": "photo", "latitude": "34.679028", "id": "6119999377", "tags": ""}, {"datetaken": "2011-09-02 08:18:44", "license": "5", "title": "Memorial Stadium, Clemson University Tigers, Clemson, South Carolina", "text": "", "album_id": "72157631742265391", "longitude": "-82.842203", "url_o": "https://farm7.staticflickr.com/6197/6120000581_29cb2b2feb_o.jpg", "secret": "d8f343d5fe", "media": "photo", "latitude": "34.679028", "id": "6120000581", "tags": ""}, {"datetaken": "2011-09-02 08:19:06", "license": "5", "title": "Howard's Rock, Memorial Stadium, Clemson University Tigers, Clemson, South Carolina", "text": "", "album_id": "72157631742265391", "longitude": "-82.842203", "url_o": "https://farm7.staticflickr.com/6066/6120545236_af1cb7374e_o.jpg", "secret": "b841bbd9d8", "media": "photo", "latitude": "34.679028", "id": "6120545236", "tags": ""}, {"datetaken": "2011-09-02 08:19:16", "license": "5", "title": "Howard's Rock, Memorial Stadium, Clemson University Tigers, Clemson, South Carolina", "text": "", "album_id": "72157631742265391", "longitude": "-82.842203", "url_o": "https://farm7.staticflickr.com/6208/6120546334_0fbf45fbe7_o.jpg", "secret": "2eb609a990", "media": "photo", "latitude": "34.679028", "id": "6120546334", "tags": ""}, {"datetaken": "2011-09-02 08:19:24", "license": "5", "title": "Memorial Stadium, Clemson University Tigers, Clemson, South Carolina", "text": "", "album_id": "72157631742265391", "longitude": "-82.842203", "url_o": "https://farm7.staticflickr.com/6086/6120004139_f1f32fb3e1_o.jpg", "secret": "14ab9183cd", "media": "photo", "latitude": "34.679028", "id": "6120004139", "tags": ""}, {"datetaken": "2011-09-02 08:19:32", "license": "5", "title": "Memorial Stadium, Clemson University Tigers, Clemson, South Carolina", "text": "", "album_id": "72157631742265391", "longitude": "-82.842203", "url_o": "https://farm7.staticflickr.com/6199/6120548908_4aec65a7e3_o.jpg", "secret": "2f6f9ccb2d", "media": "photo", "latitude": "34.679028", "id": "6120548908", "tags": ""}, {"datetaken": "2011-09-02 08:19:52", "license": "5", "title": "Howard's Rock, Memorial Stadium, Clemson University Tigers, Clemson, South Carolina", "text": "", "album_id": "72157631742265391", "longitude": "-82.842203", "url_o": "https://farm7.staticflickr.com/6205/6120006065_a09a9f9d2f_o.jpg", "secret": "5c564ed308", "media": "photo", "latitude": "34.679028", "id": "6120006065", "tags": ""}, {"datetaken": "2011-09-02 08:22:52", "license": "5", "title": "Memorial Stadium, Clemson University Tigers, Clemson, South Carolina", "text": "", "album_id": "72157631742265391", "longitude": "-82.844520", "url_o": "https://farm7.staticflickr.com/6087/6120550408_5b989b15a1_o.jpg", "secret": "93006177c9", "media": "photo", "latitude": "34.677762", "id": "6120550408", "tags": ""}, {"datetaken": "2011-09-02 08:24:18", "license": "5", "title": "Littlejohn Coliseum, Clemson University Tigers, Clemson, South Carolina", "text": "", "album_id": "72157631742265391", "longitude": "-82.847771", "url_o": "https://farm7.staticflickr.com/6066/6120551152_34fed3bba6_o.jpg", "secret": "b25bec4349", "media": "photo", "latitude": "34.680264", "id": "6120551152", "tags": ""}, {"datetaken": "2011-09-02 08:25:58", "license": "5", "title": "Welcome to Clemson University, Clemson, South Carolina", "text": "", "album_id": "72157631742265391", "longitude": "-82.837010", "url_o": "https://farm7.staticflickr.com/6062/6120552658_c96530db54_o.jpg", "secret": "009ffeeb0a", "media": "photo", "latitude": "34.681984", "id": "6120552658", "tags": ""}, {"datetaken": "2011-09-02 08:26:07", "license": "5", "title": "Tillman Hall, Clemson University, Clemson, South Carolina", "text": "", "album_id": "72157631742265391", "longitude": "-82.836012", "url_o": "https://farm7.staticflickr.com/6205/6120010145_52215ed807_o.jpg", "secret": "66afb00a93", "media": "photo", "latitude": "34.681058", "id": "6120010145", "tags": ""}, {"datetaken": "2008-10-18 05:39:41", "license": "4", "title": "Sheri's Up Early", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6019/6223842594_9394148fe9_o.jpg", "secret": "d16073a256", "media": "photo", "latitude": "0", "id": "6223842594", "tags": "sc sports running charleston starbucks 5k raceforthecure runningevents"}, {"datetaken": "2008-10-18 05:42:25", "license": "4", "title": "Posing at Work", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6171/6223322995_90ebbf8804_o.jpg", "secret": "e2154faca7", "media": "photo", "latitude": "0", "id": "6223322995", "tags": "sc sports running charleston starbucks 5k raceforthecure runningevents briancribb"}, {"datetaken": "2008-10-18 05:48:12", "license": "4", "title": "Sheri Gathers Stuff for the Race", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6220/6223325265_1bda5f70bb_o.jpg", "secret": "4341639623", "media": "photo", "latitude": "0", "id": "6223325265", "tags": "sc sports running charleston starbucks 5k raceforthecure runningevents"}, {"datetaken": "2008-10-18 05:48:23", "license": "4", "title": "Hot water for tea.", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6180/6223848416_077a492aee_o.jpg", "secret": "a448049afd", "media": "photo", "latitude": "0", "id": "6223848416", "tags": "sc sports running charleston starbucks 5k raceforthecure runningevents briancribb"}, {"datetaken": "2008-10-18 05:50:37", "license": "4", "title": "Lisa Stocks the Pastry Case", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6033/6223850900_10c7595b74_o.jpg", "secret": "8f135ceb4c", "media": "photo", "latitude": "0", "id": "6223850900", "tags": "sc sports running charleston starbucks 5k raceforthecure runningevents"}, {"datetaken": "2008-10-18 07:09:30", "license": "4", "title": "Registration Table", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6236/6223853016_e1b9bbcd0e_o.jpg", "secret": "e1f67273f5", "media": "photo", "latitude": "0", "id": "6223853016", "tags": "sc sports running 5k raceforthecure danielisland runningevents"}, {"datetaken": "2008-10-18 07:14:35", "license": "4", "title": "Cool Peeps at the Tables", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6038/6223855792_0a4c488bc6_o.jpg", "secret": "112f053a56", "media": "photo", "latitude": "0", "id": "6223855792", "tags": "sc sports running 5k raceforthecure danielisland runningevents"}, {"datetaken": "2008-10-18 07:19:37", "license": "4", "title": "T-shirt Table", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6111/6223858170_52c30fda32_o.jpg", "secret": "abb3961ceb", "media": "photo", "latitude": "0", "id": "6223858170", "tags": "sc sports running 5k raceforthecure danielisland runningevents"}, {"datetaken": "2008-10-18 07:25:42", "license": "4", "title": "A Look at the Stadium", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6214/6223339695_c3e4a069fe_o.jpg", "secret": "c01ec96294", "media": "photo", "latitude": "0", "id": "6223339695", "tags": "sc sports running 5k raceforthecure danielisland runningevents"}, {"datetaken": "2008-10-18 07:33:04", "license": "4", "title": "Sheri at the Starbucks Station", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6225/6223862996_4a7a63796a_o.jpg", "secret": "d433c541d4", "media": "photo", "latitude": "0", "id": "6223862996", "tags": "sc sports running charleston starbucks 5k raceforthecure danielisland runningevents"}, {"datetaken": "2008-10-18 07:48:03", "license": "4", "title": "Pink Party", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6153/6223344507_efac40eea5_o.jpg", "secret": "176e536827", "media": "photo", "latitude": "0", "id": "6223344507", "tags": "sc sports running 5k raceforthecure danielisland runningevents"}, {"datetaken": "2008-10-18 07:54:54", "license": "4", "title": "Pink Pirate", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6232/6223346959_d1dbc89ab3_o.jpg", "secret": "fb473ff18f", "media": "photo", "latitude": "0", "id": "6223346959", "tags": "sc sports running 5k raceforthecure danielisland runningevents"}, {"datetaken": "2008-10-18 07:56:59", "license": "4", "title": "His Mother Loves to Hear Him Sing", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6237/6223350641_2dbe932cba_o.jpg", "secret": "c7b4c4ea64", "media": "photo", "latitude": "0", "id": "6223350641", "tags": "sc sports running 5k raceforthecure danielisland runningevents"}, {"datetaken": "2008-10-18 08:09:13", "license": "4", "title": "District Manager Reagan", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6179/6223874154_c5536cf24c_o.jpg", "secret": "a7c67c3c10", "media": "photo", "latitude": "0", "id": "6223874154", "tags": "sc sports running 5k raceforthecure danielisland runningevents"}, {"datetaken": "2008-10-18 08:13:11", "license": "4", "title": "Pink Ladies", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6218/6223355743_84c0b36206_o.jpg", "secret": "8948a3f95c", "media": "photo", "latitude": "0", "id": "6223355743", "tags": "sc sports running 5k raceforthecure danielisland runningevents"}, {"datetaken": "2008-10-18 08:15:12", "license": "4", "title": "She Put this Thing on My Head", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6056/6223879180_31013e2ed9_o.jpg", "secret": "65033f7f10", "media": "photo", "latitude": "0", "id": "6223879180", "tags": "sc sports running 5k raceforthecure danielisland runningevents briancribb"}, {"datetaken": "2008-10-18 08:34:35", "license": "4", "title": "Crowd Moves to the Starting Line", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6236/6223881706_c364022b2a_o.jpg", "secret": "96d308e3e7", "media": "photo", "latitude": "0", "id": "6223881706", "tags": "sc sports running 5k raceforthecure danielisland runningevents"}, {"datetaken": "2008-10-18 08:59:34", "license": "4", "title": "Ready to Run", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6174/6223362709_5cd5871087_o.jpg", "secret": "34c4e8b62c", "media": "photo", "latitude": "0", "id": "6223362709", "tags": "sc sports running 5k raceforthecure danielisland runningevents briancribb"}, {"datetaken": "2008-10-18 09:01:40", "license": "4", "title": "Friend Fighting Cancer", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6047/6223886224_2e8a54f573_o.jpg", "secret": "4fd955e2db", "media": "photo", "latitude": "0", "id": "6223886224", "tags": "sc sports running 5k raceforthecure danielisland runningevents briancribb"}, {"datetaken": "2008-10-18 09:03:03", "license": "4", "title": "Waiting to Run", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6116/6223888518_5e400b28f7_o.jpg", "secret": "aa1e84d67a", "media": "photo", "latitude": "0", "id": "6223888518", "tags": "sc sports running 5k raceforthecure danielisland runningevents"}, {"datetaken": "2008-10-18 09:03:17", "license": "4", "title": "More Folks Waiting to Run", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6229/6223369653_d093f340c9_o.jpg", "secret": "5de498e5fc", "media": "photo", "latitude": "0", "id": "6223369653", "tags": "sc sports running 5k raceforthecure danielisland runningevents"}, {"datetaken": "2008-10-18 09:03:46", "license": "4", "title": "Pre-Race Chat", "text": "", "album_id": "72157627722157927", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6157/6223372323_7acaeae4ff_o.jpg", "secret": "d34abf6da2", "media": "photo", "latitude": "0", "id": "6223372323", "tags": "sc sports running 5k raceforthecure danielisland runningevents"}, {"datetaken": "2007-04-08 14:28:58", "license": "5", "title": "Bring Your Own Big Wheel", "text": "", "album_id": "72157600061046554", "longitude": "-122.419833", "url_o": "https://farm1.staticflickr.com/199/453640425_424a2fbffa_o.jpg", "secret": "28d25510c5", "media": "photo", "latitude": "37.802163", "id": "453640425", "tags": "sanfrancisco california byobw bringyourownbigwheel upcoming:event=163357"}, {"datetaken": "2007-04-08 14:29:28", "license": "5", "title": "Team Runny-Nose", "text": "", "album_id": "72157600061046554", "longitude": "-122.419833", "url_o": "https://farm1.staticflickr.com/232/453624797_0263817516_o.jpg", "secret": "1ff33d6713", "media": "photo", "latitude": "37.802163", "id": "453624797", "tags": "sanfrancisco california byobw bringyourownbigwheel upcoming:event=163357"}, {"datetaken": "2007-04-08 14:30:31", "license": "5", "title": "Jesus Joined A Triker Gang", "text": "", "album_id": "72157600061046554", "longitude": "-122.419833", "url_o": "https://farm1.staticflickr.com/222/453623995_bdc4a669cc_o.jpg", "secret": "5f7b066bcc", "media": "photo", "latitude": "37.802163", "id": "453623995", "tags": "sanfrancisco california byobw bringyourownbigwheel upcoming:event=163357"}, {"datetaken": "2007-04-08 14:41:29", "license": "5", "title": "Trike", "text": "", "album_id": "72157600061046554", "longitude": "-122.419833", "url_o": "https://farm1.staticflickr.com/248/453607202_d5ba0573e6_o.jpg", "secret": "f7a70b26aa", "media": "photo", "latitude": "37.802163", "id": "453607202", "tags": "sanfrancisco california tricycle byobw bringyourownbigwheel upcoming:event=163357"}, {"datetaken": "2007-04-08 14:43:44", "license": "5", "title": "Beaker", "text": "", "album_id": "72157600061046554", "longitude": "-122.419833", "url_o": "https://farm1.staticflickr.com/172/453622213_b4e32e3182_o.jpg", "secret": "f760bfce11", "media": "photo", "latitude": "37.802163", "id": "453622213", "tags": "sanfrancisco california beaker byobw bringyourownbigwheel upcoming:event=163357"}, {"datetaken": "2007-04-08 14:43:53", "license": "5", "title": "Big Person On A Kid's Toy", "text": "", "album_id": "72157600061046554", "longitude": "-122.419833", "url_o": "https://farm1.staticflickr.com/170/453605572_b6239190e8_o.jpg", "secret": "5490fc0f17", "media": "photo", "latitude": "37.802163", "id": "453605572", "tags": "sanfrancisco california tricycle dmose byobw bringyourownbigwheel upcoming:event=163357"}, {"datetaken": "2007-04-08 14:44:12", "license": "5", "title": "Bunny", "text": "", "album_id": "72157600061046554", "longitude": "-122.419833", "url_o": "https://farm1.staticflickr.com/219/453620593_540e708ba7_o.jpg", "secret": "8f6bdffd11", "media": "photo", "latitude": "37.802163", "id": "453620593", "tags": "sanfrancisco california byobw bringyourownbigwheel upcoming:event=163357"}, {"datetaken": "2007-04-08 14:44:25", "license": "5", "title": "Big Person On A Kid's Toy", "text": "", "album_id": "72157600061046554", "longitude": "-122.419833", "url_o": "https://farm1.staticflickr.com/213/453604080_caf51c0e36_o.jpg", "secret": "a02282ed67", "media": "photo", "latitude": "37.802163", "id": "453604080", "tags": "sanfrancisco california tricycle byobw bringyourownbigwheel upcoming:event=163357"}, {"datetaken": "2007-04-08 14:47:59", "license": "5", "title": "Bird", "text": "", "album_id": "72157600061046554", "longitude": "-122.419833", "url_o": "https://farm1.staticflickr.com/208/453618891_e730a22d5b_o.jpg", "secret": "7fc274de42", "media": "photo", "latitude": "37.802163", "id": "453618891", "tags": "sanfrancisco california byobw bringyourownbigwheel upcoming:event=163357"}, {"datetaken": "2007-04-08 15:03:17", "license": "5", "title": "Lombard & Montclair", "text": "", "album_id": "72157600061046554", "longitude": "-122.418674", "url_o": "https://farm1.staticflickr.com/185/453618031_f324127d48_o.jpg", "secret": "95176a000e", "media": "photo", "latitude": "37.802239", "id": "453618031", "tags": "sanfrancisco california byobw bringyourownbigwheel upcoming:event=163357"}, {"datetaken": "2007-04-08 15:13:01", "license": "5", "title": "They Brought Their Own Big Wheels", "text": "", "album_id": "72157600061046554", "longitude": "-122.418932", "url_o": "https://farm1.staticflickr.com/246/453617197_d11e79232e_o.jpg", "secret": "9e49b6161b", "media": "photo", "latitude": "37.802273", "id": "453617197", "tags": "sanfrancisco california byobw bringyourownbigwheel upcoming:event=163357"}, {"datetaken": "2007-04-08 15:13:09", "license": "5", "title": "They Brought Their Own Big Wheels", "text": "", "album_id": "72157600061046554", "longitude": "-122.419833", "url_o": "https://farm1.staticflickr.com/224/453637741_daca810897_o.jpg", "secret": "cd3d243aa9", "media": "photo", "latitude": "37.802163", "id": "453637741", "tags": "sanfrancisco california byobw bringyourownbigwheel upcoming:event=163357"}, {"datetaken": "2007-04-08 15:31:01", "license": "5", "title": "Lombard Street", "text": "", "album_id": "72157600061046554", "longitude": "-122.418674", "url_o": "https://farm1.staticflickr.com/242/453642917_1e89492c30_o.jpg", "secret": "2996b5209b", "media": "photo", "latitude": "37.802239", "id": "453642917", "tags": "sanfrancisco california byobw bringyourownbigwheel upcoming:event=163357"}, {"datetaken": "2007-04-08 16:27:22", "license": "5", "title": "Nor Cal", "text": "", "album_id": "72157600061046554", "longitude": "-122.415123", "url_o": "https://farm1.staticflickr.com/219/453626624_6ccd3c775a_o.jpg", "secret": "a0505f863c", "media": "photo", "latitude": "37.803909", "id": "453626624", "tags": "sanfrancisco california byobw bringyourownbigwheel upcoming:event=163357"}, {"datetaken": "2007-04-10 00:16:33", "license": "5", "title": "Bring Your Own Big Wheel Video", "text": "", "album_id": "72157600061046554", "longitude": "-122.418932", "url_o": "https://farm1.staticflickr.com/181/453641198_a40f29c06e_o.jpg", "secret": "c0dd56bbd1", "media": "photo", "latitude": "37.802273", "id": "453641198", "tags": "sanfrancisco california video lombard byobw bringyourownbigwheel"}, {"datetaken": "2011-06-10 07:01:48", "license": "2", "title": "Special Olympics 2011-002", "text": "", "album_id": "72157626805179777", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2223/5818566702_2e216066d4_o.jpg", "secret": "a49b2edb7e", "media": "photo", "latitude": "0", "id": "5818566702", "tags": "summer sports athletics community track events competition running games pennstate involvement specialolympics universityparkcampus creditpatrickmansell"}, {"datetaken": "2011-06-10 07:37:15", "license": "2", "title": "Special Olympics 2011-012", "text": "", "album_id": "72157626805179777", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2471/5818026839_51237e09fe_o.jpg", "secret": "9e994daa28", "media": "photo", "latitude": "0", "id": "5818026839", "tags": "summer sports athletics community events competition games pennstate awards involvement specialolympics medals universityparkcampus creditpatrickmansell"}, {"datetaken": "2011-06-10 07:52:05", "license": "2", "title": "Special Olympics 2011-001", "text": "", "album_id": "72157626805179777", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2695/5818566916_e5353dae56_o.jpg", "secret": "ae3b8fac2c", "media": "photo", "latitude": "0", "id": "5818566916", "tags": "summer sports athletics community events competition games pennstate involvement specialolympics universityparkcampus creditpatrickmansell linkflickrset72157626805179777"}, {"datetaken": "2011-06-10 08:18:37", "license": "2", "title": "Special Olympics 2011-003", "text": "", "album_id": "72157626805179777", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3428/5817999775_d2122212e4_o.jpg", "secret": "6e77cf8316", "media": "photo", "latitude": "0", "id": "5817999775", "tags": "summer sports athletics community events competition games pennstate softball involvement specialolympics universityparkcampus creditpatrickmansell linkflickrset72157626805179777"}, {"datetaken": "2011-06-10 08:30:21", "license": "2", "title": "Special Olympics 2011-005", "text": "", "album_id": "72157626805179777", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2040/5818868892_52620ae5de_o.jpg", "secret": "d31645f7f8", "media": "photo", "latitude": "0", "id": "5818868892", "tags": "summer sports swimming athletics community events competition games pennstate backstroke involvement specialolympics universityparkcampus mccoynatatorium creditreidarjensen"}, {"datetaken": "2011-06-10 08:46:54", "license": "2", "title": "Special Olympics 2011-007", "text": "", "album_id": "72157626805179777", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5117/5818567574_b671eee079_o.jpg", "secret": "3f794376be", "media": "photo", "latitude": "0", "id": "5818567574", "tags": "summer sports athletics community events competition games tennis pennstate involvement specialolympics universityparkcampus creditpatrickmansell"}, {"datetaken": "2011-06-10 08:59:49", "license": "2", "title": "Special Olympics 2011-006", "text": "", "album_id": "72157626805179777", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2049/5818568172_cdc550d578_o.jpg", "secret": "53360eb8b1", "media": "photo", "latitude": "0", "id": "5818568172", "tags": "summer sports athletics community events competition games tennis pennstate involvement specialolympics universityparkcampus creditpatrickmansell"}, {"datetaken": "2011-06-10 09:45:47", "license": "2", "title": "Special Olympics 2011-004", "text": "", "album_id": "72157626805179777", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5315/5818888658_f07e95dd1b_o.jpg", "secret": "3fa1d9b45b", "media": "photo", "latitude": "0", "id": "5818888658", "tags": "summer horse sports animals athletics community events competition games trail pennstate involvement equestrian specialolympics universityparkcampus agarena creditgeoffrushton"}, {"datetaken": "2011-06-10 10:16:18", "license": "2", "title": "Special Olympics 2011-008", "text": "", "album_id": "72157626805179777", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2709/5818301885_2aabed0e29_o.jpg", "secret": "027e267bee", "media": "photo", "latitude": "0", "id": "5818301885", "tags": "summer sports basketball athletics community events competition games pennstate involvement specialolympics universityparkcampus creditreidarjensen"}, {"datetaken": "2011-06-10 10:28:22", "license": "2", "title": "Special Olympics 2011-009", "text": "", "album_id": "72157626805179777", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5221/5818888792_f092315c45_o.jpg", "secret": "d98224e283", "media": "photo", "latitude": "0", "id": "5818888792", "tags": "summer sports children coach athletics community events competition games pennstate gymnastics involvement specialolympics whitebuilding parallelbars universityparkcampus creditgeoffrushton"}, {"datetaken": "2011-06-11 00:05:46", "license": "2", "title": "Special Olympics 2011-010", "text": "", "album_id": "72157626805179777", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2470/5818367313_3fa037e8aa_o.jpg", "secret": "770d118cfa", "media": "photo", "latitude": "0", "id": "5818367313", "tags": "summer sports football athletics community events competition games pennstate involvement olympicvillage specialolympics universityparkcampus creditrebekkacoakley"}, {"datetaken": "2011-06-11 00:15:11", "license": "2", "title": "Special Olympics 2011-011", "text": "", "album_id": "72157626805179777", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2682/5818367223_2531738a7c_o.jpg", "secret": "3929aa6db0", "media": "photo", "latitude": "0", "id": "5818367223", "tags": "summer sports basketball athletics community tank events volunteers competition games pennstate involvement specialolympics dunk universityparkcampus creditrebekkacoakley"}, {"datetaken": "2007-10-10 01:43:43", "license": "2", "title": "Extreme Sports Night at the Union, Oct 9th 2007 - 1", "text": "", "album_id": "72157602348894457", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2293/1530739281_20dfcdfd77_o.jpg", "secret": "bd202aa9f7", "media": "photo", "latitude": "0", "id": "1530739281", "tags": "ski university union snowboard portsmouth extremesports sociallife entertainments upsu skiandsnowboardclub upsuevents"}, {"datetaken": "2007-10-10 01:48:38", "license": "2", "title": "Extreme Sports Night at the Union, Oct 9th 2007 - 2", "text": "", "album_id": "72157602348894457", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2063/1531610300_653edd0f57_o.jpg", "secret": "e8b0003f06", "media": "photo", "latitude": "0", "id": "1531610300", "tags": "ski university union snowboard portsmouth extremesports sociallife entertainments upsu skiandsnowboardclub upsuevents"}, {"datetaken": "2007-10-10 01:52:36", "license": "2", "title": "Extreme Sports Night at the Union, Oct 9th 2007 - 7", "text": "", "album_id": "72157602348894457", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2297/1530743781_d5fece3560_o.jpg", "secret": "96420b0a88", "media": "photo", "latitude": "0", "id": "1530743781", "tags": "ski university union snowboard portsmouth extremesports sociallife entertainments upsu skiandsnowboardclub upsuevents"}, {"datetaken": "2007-10-10 01:52:50", "license": "2", "title": "Extreme Sports Night at the Union, Oct 9th 2007 - 8", "text": "", "album_id": "72157602348894457", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2269/1530744577_3bef32045f_o.jpg", "secret": "2a60cc70ff", "media": "photo", "latitude": "0", "id": "1530744577", "tags": "ski university union snowboard portsmouth extremesports sociallife entertainments upsu skiandsnowboardclub upsuevents"}, {"datetaken": "2007-10-10 01:54:04", "license": "2", "title": "Extreme Sports Night at the Union, Oct 9th 2007 - 11", "text": "", "album_id": "72157602348894457", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2273/1530746405_d0621adf11_o.jpg", "secret": "70ef7b0f42", "media": "photo", "latitude": "0", "id": "1530746405", "tags": "ski university union snowboard portsmouth extremesports sociallife entertainments upsu skiandsnowboardclub upsuevents"}, {"datetaken": "2007-10-10 01:54:40", "license": "2", "title": "Extreme Sports Night at the Union, Oct 9th 2007 - 13", "text": "", "album_id": "72157602348894457", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2311/1531617710_5e59200674_o.jpg", "secret": "e1b34b5b9a", "media": "photo", "latitude": "0", "id": "1531617710", "tags": "ski university union snowboard portsmouth extremesports sociallife entertainments upsu skiandsnowboardclub upsuevents"}, {"datetaken": "2007-10-10 01:55:06", "license": "2", "title": "Extreme Sports Night at the Union, Oct 9th 2007 - 14", "text": "", "album_id": "72157602348894457", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2007/1530747757_e11d12dee7_o.jpg", "secret": "6924ef378e", "media": "photo", "latitude": "0", "id": "1530747757", "tags": "ski university union snowboard portsmouth extremesports sociallife entertainments upsu skiandsnowboardclub upsuevents"}, {"datetaken": "2007-10-10 01:55:52", "license": "2", "title": "Extreme Sports Night at the Union, Oct 9th 2007 - 16", "text": "", "album_id": "72157602348894457", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2226/1530749073_84c1eda479_o.jpg", "secret": "ffe5e981e6", "media": "photo", "latitude": "0", "id": "1530749073", "tags": "ski university union snowboard portsmouth extremesports sociallife entertainments upsu skiandsnowboardclub upsuevents"}, {"datetaken": "2007-10-10 01:56:32", "license": "2", "title": "Extreme Sports Night at the Union, Oct 9th 2007 - 17", "text": "", "album_id": "72157602348894457", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2255/1530749671_86a8469b9e_o.jpg", "secret": "52d9e2766a", "media": "photo", "latitude": "0", "id": "1530749671", "tags": "ski university union snowboard portsmouth extremesports sociallife entertainments upsu skiandsnowboardclub upsuevents"}, {"datetaken": "2007-10-10 01:56:50", "license": "2", "title": "Extreme Sports Night at the Union, Oct 9th 2007 - 18", "text": "", "album_id": "72157602348894457", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2156/1530750395_c8eef1c287_o.jpg", "secret": "db29bc8fa4", "media": "photo", "latitude": "0", "id": "1530750395", "tags": "ski university union snowboard portsmouth extremesports sociallife entertainments upsu skiandsnowboardclub upsuevents"}, {"datetaken": "2007-10-10 01:57:27", "license": "2", "title": "Extreme Sports Night at the Union, Oct 9th 2007 - 19", "text": "", "album_id": "72157602348894457", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2029/1530751135_ac16b8502b_o.jpg", "secret": "09f1004741", "media": "photo", "latitude": "0", "id": "1530751135", "tags": "ski university union snowboard portsmouth extremesports sociallife entertainments upsu skiandsnowboardclub upsuevents"}, {"datetaken": "2007-10-10 02:02:15", "license": "2", "title": "Extreme Sports Night at the Union, Oct 9th 2007 - 23", "text": "", "album_id": "72157602348894457", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2135/1530753127_5d8efbec3f_o.jpg", "secret": "ce6a3d8aab", "media": "photo", "latitude": "0", "id": "1530753127", "tags": "ski university union snowboard portsmouth extremesports sociallife entertainments upsu skiandsnowboardclub upsuevents"}, {"datetaken": "2007-10-10 02:06:40", "license": "2", "title": "Extreme Sports Night at the Union, Oct 9th 2007 - 24", "text": "", "album_id": "72157602348894457", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2051/1530753707_1c31c8c955_o.jpg", "secret": "7131361753", "media": "photo", "latitude": "0", "id": "1530753707", "tags": "ski university union snowboard portsmouth extremesports sociallife entertainments upsu skiandsnowboardclub upsuevents"}, {"datetaken": "2007-10-10 02:11:16", "license": "2", "title": "Extreme Sports Night at the Union, Oct 9th 2007 - 25", "text": "", "album_id": "72157602348894457", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2066/1531624552_c71cd6daa4_o.jpg", "secret": "74fb17979d", "media": "photo", "latitude": "0", "id": "1531624552", "tags": "ski university union snowboard portsmouth extremesports sociallife entertainments upsu skiandsnowboardclub upsuevents"}, {"datetaken": "2010-10-31 15:59:46", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3695", "text": "", "album_id": "72157626821743987", "longitude": "-70.833538", "url_o": "https://farm3.staticflickr.com/2388/5826179582_735407b540_o.jpg", "secret": "a25e79893e", "media": "photo", "latitude": "42.238423", "id": "5826179582", "tags": "family people massachusetts soccer events places era southshore 2010 tomtom cohasset sportsfriends neaztecs96 matttibert soccermatchesmaple galwayrovers"}, {"datetaken": "2010-10-31 15:59:57", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3697", "text": "", "album_id": "72157626821743987", "longitude": "-70.833583", "url_o": "https://farm4.staticflickr.com/3124/5826185394_8ff29c3c03_o.jpg", "secret": "31574fcb6d", "media": "photo", "latitude": "42.238311", "id": "5826185394", "tags": "people massachusetts soccer events places era southshore 2010 cohasset sportsfriends neaztecs96 soccermatchesmaple zachrowell galwayrovers"}, {"datetaken": "2010-10-31 15:59:58", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3699", "text": "", "album_id": "72157626821743987", "longitude": "-70.833583", "url_o": "https://farm6.staticflickr.com/5153/5825628321_ebe5446f39_o.jpg", "secret": "972712984d", "media": "photo", "latitude": "42.238311", "id": "5825628321", "tags": "people massachusetts soccer events places era southshore 2010 cohasset sportsfriends neaztecs96 soccermatchesmaple zachrowell galwayrovers"}, {"datetaken": "2010-10-31 16:01:05", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3700", "text": "", "album_id": "72157626821743987", "longitude": "-70.833585", "url_o": "https://farm6.staticflickr.com/5116/5825630327_5dffb99d69_o.jpg", "secret": "4868074b37", "media": "photo", "latitude": "42.238310", "id": "5825630327", "tags": "people massachusetts soccer events places era southshore 2010 cohasset sportsfriends neaztecs96 soccermatchesmaple bricekoval galwayrovers"}, {"datetaken": "2010-10-31 16:03:09", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3703", "text": "", "album_id": "72157626821743987", "longitude": "-70.833585", "url_o": "https://farm6.staticflickr.com/5240/5826189692_6827dc6b1d_o.jpg", "secret": "1479fd7dec", "media": "photo", "latitude": "42.238324", "id": "5826189692", "tags": "people massachusetts soccer events places era southshore 2010 cohasset sportsfriends henrybehrens neaztecs96 soccermatchesmaple galwayrovers"}, {"datetaken": "2010-10-31 16:03:10", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3704", "text": "", "album_id": "72157626821743987", "longitude": "-70.833585", "url_o": "https://farm3.staticflickr.com/2298/5826191566_464bd7fc00_o.jpg", "secret": "bef0ee1190", "media": "photo", "latitude": "42.238324", "id": "5826191566", "tags": "people massachusetts soccer events places era southshore 2010 cohasset sportsfriends henrybehrens neaztecs96 soccermatchesmaple galwayrovers"}, {"datetaken": "2010-10-31 16:06:03", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3714", "text": "", "album_id": "72157626821743987", "longitude": "-70.833540", "url_o": "https://farm3.staticflickr.com/2172/5826192602_e4598fa546_o.jpg", "secret": "ea245e8471", "media": "photo", "latitude": "42.238406", "id": "5826192602", "tags": "people massachusetts soccer events places era southshore 2010 cohasset sportsfriends neaztecs96 soccermatchesmaple bricekoval galwayrovers"}, {"datetaken": "2010-10-31 16:06:45", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3715", "text": "", "album_id": "72157626821743987", "longitude": "-70.833540", "url_o": "https://farm6.staticflickr.com/5023/5825635835_5ae13f63a1_o.jpg", "secret": "6071763b12", "media": "photo", "latitude": "42.238406", "id": "5825635835", "tags": "people massachusetts soccer events places era southshore 2010 cohasset johnle sportsfriends henrybehrens neaztecs96 soccermatchesmaple galwayrovers"}, {"datetaken": "2010-10-31 16:07:37", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3721", "text": "", "album_id": "72157626821743987", "longitude": "-70.833541", "url_o": "https://farm3.staticflickr.com/2759/5826195764_d9ab7d47dd_o.jpg", "secret": "4acc8f75e1", "media": "photo", "latitude": "42.238406", "id": "5826195764", "tags": "people massachusetts soccer events places era southshore 2010 cohasset sportsfriends neaztecs96 sambenford soccermatchesmaple galwayrovers"}, {"datetaken": "2010-10-31 16:09:05", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3725", "text": "", "album_id": "72157626821743987", "longitude": "-70.833593", "url_o": "https://farm6.staticflickr.com/5318/5825640013_a9a4b62166_o.jpg", "secret": "b6849d973b", "media": "photo", "latitude": "42.238365", "id": "5825640013", "tags": "people massachusetts soccer events places era southshore 2010 cohasset sportsfriends neaztecs96 soccermatchesmaple bricekoval galwayrovers"}, {"datetaken": "2010-10-31 16:09:53", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3729", "text": "", "album_id": "72157626821743987", "longitude": "-70.833535", "url_o": "https://farm4.staticflickr.com/3080/5826199564_cd11b2da70_o.jpg", "secret": "0fa2a96251", "media": "photo", "latitude": "42.238379", "id": "5826199564", "tags": "people massachusetts soccer events places era southshore 2010 cohasset sportsfriends henrybehrens neaztecs96 soccermatchesmaple bricekoval galwayrovers"}, {"datetaken": "2010-10-31 16:09:56", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3733", "text": "", "album_id": "72157626821743987", "longitude": "-70.833535", "url_o": "https://farm3.staticflickr.com/2219/5826201148_96c232ed4b_o.jpg", "secret": "0a72aca0ba", "media": "photo", "latitude": "42.238379", "id": "5826201148", "tags": "people massachusetts soccer events places era southshore 2010 cohasset sportsfriends henrybehrens neaztecs96 soccermatchesmaple galwayrovers"}, {"datetaken": "2010-10-31 16:10:36", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3736", "text": "", "album_id": "72157626821743987", "longitude": "-70.833531", "url_o": "https://farm3.staticflickr.com/2620/5825644179_f71aea4111_o.jpg", "secret": "553a8ef4a0", "media": "photo", "latitude": "42.238376", "id": "5825644179", "tags": "people massachusetts soccer events places era southshore 2010 cohasset sportsfriends neaztecs96 soccermatchesmaple bricekoval galwayrovers"}, {"datetaken": "2010-10-31 16:11:40", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3742", "text": "", "album_id": "72157626821743987", "longitude": "-70.833521", "url_o": "https://farm4.staticflickr.com/3232/5825645669_e6a0636ccc_o.jpg", "secret": "2451c39a9d", "media": "photo", "latitude": "42.238363", "id": "5825645669", "tags": "people massachusetts soccer events places era southshore 2010 cohasset sportsfriends henrybehrens neaztecs96 soccermatchesmaple galwayrovers"}, {"datetaken": "2010-10-31 16:33:01", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3755", "text": "", "album_id": "72157626821743987", "longitude": "-70.833543", "url_o": "https://farm4.staticflickr.com/3352/5826203924_84b3db90d4_o.jpg", "secret": "95890994af", "media": "photo", "latitude": "42.238289", "id": "5826203924", "tags": "people massachusetts soccer events places era southshore 2010 cohasset sportsfriends henrybehrens neaztecs96 soccermatchesmaple galwayrovers"}, {"datetaken": "2010-10-31 16:33:01", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3756", "text": "", "album_id": "72157626821743987", "longitude": "-70.833543", "url_o": "https://farm6.staticflickr.com/5071/5826204720_b7ff6c87d4_o.jpg", "secret": "ee105d44f1", "media": "photo", "latitude": "42.238289", "id": "5826204720", "tags": "people massachusetts soccer events places era southshore 2010 cohasset sportsfriends henrybehrens neaztecs96 soccermatchesmaple galwayrovers"}, {"datetaken": "2010-10-31 16:34:27", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3761", "text": "", "album_id": "72157626821743987", "longitude": "-70.833567", "url_o": "https://farm4.staticflickr.com/3425/5825648267_40fd1b3c5c_o.jpg", "secret": "ba834078ab", "media": "photo", "latitude": "42.238503", "id": "5825648267", "tags": "people massachusetts soccer events places era southshore 2010 cohasset johnle sportsfriends neaztecs96 soccermatchesmaple galwayrovers"}, {"datetaken": "2010-10-31 16:54:01", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3773", "text": "", "album_id": "72157626821743987", "longitude": "-70.833604", "url_o": "https://farm3.staticflickr.com/2059/5825649497_950bdae14d_o.jpg", "secret": "1ae916d55f", "media": "photo", "latitude": "42.238136", "id": "5825649497", "tags": "people massachusetts soccer events places era southshore 2010 nsu cohasset northshoreunited sportsfriends joeyrossiter northshoreunitedplayers neaztecs96 soccermatchesmaple galwayrovers"}, {"datetaken": "2010-10-31 16:54:41", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3774", "text": "", "album_id": "72157626821743987", "longitude": "-70.833627", "url_o": "https://farm4.staticflickr.com/3246/5826208244_5cc7aea0af_o.jpg", "secret": "4cd7b8d4e7", "media": "photo", "latitude": "42.238182", "id": "5826208244", "tags": "family people massachusetts soccer events places era southshore 2010 tomtom cohasset sportsfriends neaztecs96 soccermatchesmaple galwayrovers"}, {"datetaken": "2010-10-31 16:54:41", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3775", "text": "", "album_id": "72157626821743987", "longitude": "-70.833627", "url_o": "https://farm3.staticflickr.com/2128/5825651599_3a7ee75462_o.jpg", "secret": "1d46022be5", "media": "photo", "latitude": "42.238182", "id": "5825651599", "tags": "family people massachusetts soccer events places era southshore 2010 tomtom cohasset sportsfriends neaztecs96 soccermatchesmaple galwayrovers"}, {"datetaken": "2010-10-31 16:54:41", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3776", "text": "", "album_id": "72157626821743987", "longitude": "-70.833627", "url_o": "https://farm3.staticflickr.com/2730/5825653725_1c23287538_o.jpg", "secret": "073f0d4b01", "media": "photo", "latitude": "42.238182", "id": "5825653725", "tags": "family people massachusetts soccer events places era southshore 2010 tomtom cohasset sportsfriends neaztecs96 soccermatchesmaple bricekoval galwayrovers"}, {"datetaken": "2010-10-31 16:56:55", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3780", "text": "", "album_id": "72157626821743987", "longitude": "-70.833720", "url_o": "https://farm3.staticflickr.com/2215/5825655373_0e8ef25938_o.jpg", "secret": "fea4a84397", "media": "photo", "latitude": "42.238343", "id": "5825655373", "tags": "people massachusetts soccer events places era southshore 2010 phantoms cohasset sportsfriends kevingilbert neaztecs96 soccermatchesmaple bricekoval galwayrovers"}, {"datetaken": "2010-10-31 17:00:38", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3785", "text": "", "album_id": "72157626821743987", "longitude": "-70.833591", "url_o": "https://farm3.staticflickr.com/2087/5826216062_bb3852687f_o.jpg", "secret": "b451be1dea", "media": "photo", "latitude": "42.238474", "id": "5826216062", "tags": "people massachusetts soccer events places era southshore 2010 phantoms cohasset sportsfriends kevingilbert neaztecs96 soccermatchesmaple galwayrovers"}, {"datetaken": "2010-10-31 17:00:38", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3784", "text": "", "album_id": "72157626821743987", "longitude": "-70.833591", "url_o": "https://farm3.staticflickr.com/2586/5825661255_896b2e408c_o.jpg", "secret": "c9275cc133", "media": "photo", "latitude": "42.238474", "id": "5825661255", "tags": "people massachusetts soccer events places era southshore 2010 phantoms cohasset sportsfriends kevingilbert neaztecs96 soccermatchesmaple galwayrovers"}, {"datetaken": "2010-10-31 17:06:31", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3789", "text": "", "album_id": "72157626821743987", "longitude": "-70.833631", "url_o": "https://farm4.staticflickr.com/3355/5825663643_0f0c4cb0cc_o.jpg", "secret": "b150edef63", "media": "photo", "latitude": "42.238481", "id": "5825663643", "tags": "family people massachusetts soccer events places era southshore 2010 tomtom cohasset sportsfriends neaztecs96 soccermatchesmaple bricekoval galwayrovers"}, {"datetaken": "2010-10-31 17:06:33", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3792", "text": "", "album_id": "72157626821743987", "longitude": "-70.833635", "url_o": "https://farm6.staticflickr.com/5304/5825665731_17000f7635_o.jpg", "secret": "cf142c1ac5", "media": "photo", "latitude": "42.238486", "id": "5825665731", "tags": "people massachusetts soccer events places era southshore 2010 cohasset drewgallant sportsfriends neaztecs96 soccermatchesmaple galwayrovers"}, {"datetaken": "2010-10-31 17:11:26", "license": "1", "title": "10 10 Aztecs vs Galway Rovers-3804", "text": "", "album_id": "72157626821743987", "longitude": "-70.833503", "url_o": "https://farm3.staticflickr.com/2457/5826224288_0f398ffd53_o.jpg", "secret": "efb8085a44", "media": "photo", "latitude": "42.238314", "id": "5826224288", "tags": "people massachusetts soccer events places era southshore 2010 cohasset petemcmanus sportsfriends neaztecs96 soccermatchesmaple galwayrovers"}, {"datetaken": "2010-09-10 08:11:43", "license": "3", "title": "Aker Solutions headquarters", "text": "", "album_id": "72157624845628495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4126/4996714644_81d6c68585_o.jpg", "secret": "a062c9c36b", "media": "photo", "latitude": "0", "id": "4996714644", "tags": "ski oslo crosscountry event nordic launch aker worldchampionship akersolutions"}, {"datetaken": "2010-09-10 08:17:10", "license": "3", "title": "Aker Solutions employees", "text": "", "album_id": "72157624845628495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4130/4996720898_9cf6df7b90_o.jpg", "secret": "22be7d40f1", "media": "photo", "latitude": "0", "id": "4996720898", "tags": "ski oslo crosscountry event nordic launch aker worldchampionship akersolutions"}, {"datetaken": "2010-09-10 08:20:22", "license": "3", "title": "Geir Arne Drangeid", "text": "", "album_id": "72157624845628495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4996114141_eb93b0749e_o.jpg", "secret": "a3ccd14ffc", "media": "photo", "latitude": "0", "id": "4996114141", "tags": "ski oslo crosscountry event nordic launch aker worldchampionship akersolutions"}, {"datetaken": "2010-09-10 08:26:52", "license": "3", "title": "\u00c5ge Skinstad and Atle Kigen", "text": "", "album_id": "72157624845628495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/4996114795_8d4eff2488_o.jpg", "secret": "b3765c2131", "media": "photo", "latitude": "0", "id": "4996114795", "tags": "ski oslo crosscountry event nordic launch aker worldchampionship akersolutions"}, {"datetaken": "2010-09-10 08:30:45", "license": "3", "title": "Mads Andersen and Atle Kigen", "text": "", "album_id": "72157624845628495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/4996722958_c357a18ff4_o.jpg", "secret": "3329619333", "media": "photo", "latitude": "0", "id": "4996722958", "tags": "ski oslo crosscountry event nordic launch aker worldchampionship akersolutions"}, {"datetaken": "2010-09-10 08:33:40", "license": "3", "title": "Aker Solutions employee and \"VM-sporet\" volunteer", "text": "", "album_id": "72157624845628495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/4996720254_c9d2b96852_o.jpg", "secret": "3e9fea53ff", "media": "photo", "latitude": "0", "id": "4996720254", "tags": "ski oslo crosscountry event nordic launch aker worldchampionship akersolutions"}, {"datetaken": "2010-09-10 08:35:20", "license": "3", "title": "Atle Kigen and \u00d8ystein \"P\u00f8lsa\" Pettersen", "text": "", "album_id": "72157624845628495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/4996723748_607f3ff302_o.jpg", "secret": "2f67ac815c", "media": "photo", "latitude": "0", "id": "4996723748", "tags": "ski oslo crosscountry event nordic launch aker worldchampionship akersolutions"}, {"datetaken": "2010-09-10 08:45:20", "license": "3", "title": "Aker Solutions employees", "text": "", "album_id": "72157624845628495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4151/4996107861_f64e2b86d7_o.jpg", "secret": "a3029ee826", "media": "photo", "latitude": "0", "id": "4996107861", "tags": "ski oslo crosscountry event nordic launch aker worldchampionship akersolutions"}, {"datetaken": "2010-09-10 08:46:01", "license": "3", "title": "Aker Solutions employees", "text": "", "album_id": "72157624845628495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/4996716026_c9aacc1584_o.jpg", "secret": "400326dd3a", "media": "photo", "latitude": "0", "id": "4996716026", "tags": "ski oslo crosscountry event nordic launch aker worldchampionship akersolutions"}, {"datetaken": "2010-09-10 08:47:47", "license": "3", "title": "\u00d8ystein \"P\u00f8lsa\" Pettersen with Aker Solutions employee", "text": "", "album_id": "72157624845628495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/4996109323_cfec6248f1_o.jpg", "secret": "c9e924d840", "media": "photo", "latitude": "0", "id": "4996109323", "tags": "ski oslo crosscountry event nordic launch aker worldchampionship akersolutions"}, {"datetaken": "2010-09-10 08:54:53", "license": "3", "title": "Course in cross country ski preparation", "text": "", "album_id": "72157624845628495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/4996110419_de104dd9bf_o.jpg", "secret": "2f4186caa2", "media": "photo", "latitude": "0", "id": "4996110419", "tags": "ski oslo crosscountry event nordic launch aker worldchampionship akersolutions"}, {"datetaken": "2010-09-10 08:55:25", "license": "3", "title": "Course in cross country ski preparation", "text": "", "album_id": "72157624845628495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4083/4996718796_cec0697f6f_o.jpg", "secret": "452251fefc", "media": "photo", "latitude": "0", "id": "4996718796", "tags": "ski oslo crosscountry event nordic launch aker worldchampionship akersolutions"}, {"datetaken": "2010-09-10 08:59:07", "license": "3", "title": "\u00c5ge Skinstad", "text": "", "album_id": "72157624845628495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/4996719834_ac1c76891b_o.jpg", "secret": "7d57ee0acd", "media": "photo", "latitude": "0", "id": "4996719834", "tags": "ski oslo crosscountry event nordic launch aker worldchampionship akersolutions"}, {"datetaken": "2011-10-24 16:24:26", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5698", "text": "", "album_id": "72157628032301395", "longitude": "-71.155581", "url_o": "https://farm7.staticflickr.com/6239/6356270143_c76ffc9f55_o.jpg", "secret": "79f9031202", "media": "photo", "latitude": "42.659880", "id": "6356270143", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool sportsfriends zachrowell neaztec96"}, {"datetaken": "2011-10-24 16:24:30", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5700", "text": "", "album_id": "72157628032301395", "longitude": "-71.155572", "url_o": "https://farm7.staticflickr.com/6042/6356271777_a69201770d_o.jpg", "secret": "3d1f862c6b", "media": "photo", "latitude": "42.659885", "id": "6356271777", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool mateojacome"}, {"datetaken": "2011-10-24 16:25:53", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5704", "text": "", "album_id": "72157628032301395", "longitude": "-71.155620", "url_o": "https://farm7.staticflickr.com/6092/6356272871_0ddf36bca9_o.jpg", "secret": "d07cbc5b07", "media": "photo", "latitude": "42.659889", "id": "6356272871", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool patfoley"}, {"datetaken": "2011-10-24 16:26:19", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5708", "text": "", "album_id": "72157628032301395", "longitude": "-71.155673", "url_o": "https://farm7.staticflickr.com/6223/6356274361_98ffb9ae95_o.jpg", "secret": "97f4f4c7c3", "media": "photo", "latitude": "42.659882", "id": "6356274361", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool mateojacome"}, {"datetaken": "2011-10-24 16:32:50", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5717", "text": "", "album_id": "72157628032301395", "longitude": "-71.155622", "url_o": "https://farm7.staticflickr.com/6232/6356275555_c0e41aee11_o.jpg", "secret": "417d37e123", "media": "photo", "latitude": "42.659850", "id": "6356275555", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep ianrichardson andoverhighschool"}, {"datetaken": "2011-10-24 16:33:16", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5722", "text": "", "album_id": "72157628032301395", "longitude": "-71.155609", "url_o": "https://farm7.staticflickr.com/6108/6356276567_91086bed81_o.jpg", "secret": "07d2bfbe67", "media": "photo", "latitude": "42.659837", "id": "6356276567", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool patfoley"}, {"datetaken": "2011-10-24 16:33:48", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5724", "text": "", "album_id": "72157628032301395", "longitude": "-71.155677", "url_o": "https://farm7.staticflickr.com/6034/6356277357_0eb378a94a_o.jpg", "secret": "8e16e5cd91", "media": "photo", "latitude": "42.659853", "id": "6356277357", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool sportsfriends joeyrossiter neaztec96"}, {"datetaken": "2011-10-24 16:37:21", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5727", "text": "", "album_id": "72157628032301395", "longitude": "-71.155599", "url_o": "https://farm7.staticflickr.com/6046/6356278907_9a26d74282_o.jpg", "secret": "cd7a13618c", "media": "photo", "latitude": "42.659836", "id": "6356278907", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool danielsidell philwoolston"}, {"datetaken": "2011-10-24 16:38:12", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5730", "text": "", "album_id": "72157628032301395", "longitude": "-71.155610", "url_o": "https://farm7.staticflickr.com/6055/6356279941_bdd3668f51_o.jpg", "secret": "fe28d89d65", "media": "photo", "latitude": "42.659818", "id": "6356279941", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool samperel"}, {"datetaken": "2011-10-24 16:38:12", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5729", "text": "", "album_id": "72157628032301395", "longitude": "-71.155610", "url_o": "https://farm7.staticflickr.com/6095/6356280839_ef7815e767_o.jpg", "secret": "a11b7dca10", "media": "photo", "latitude": "42.659818", "id": "6356280839", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool philwoolston samperel"}, {"datetaken": "2011-10-24 16:42:11", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5731", "text": "", "album_id": "72157628032301395", "longitude": "-71.155524", "url_o": "https://farm7.staticflickr.com/6107/6356281967_c661d60b70_o.jpg", "secret": "37c43b499f", "media": "photo", "latitude": "42.659865", "id": "6356281967", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool patfoley"}, {"datetaken": "2011-10-24 16:42:12", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5733", "text": "", "album_id": "72157628032301395", "longitude": "-71.155528", "url_o": "https://farm7.staticflickr.com/6105/6356283129_32cd0862f4_o.jpg", "secret": "6ee0dfe6cd", "media": "photo", "latitude": "42.659866", "id": "6356283129", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool patfoley"}, {"datetaken": "2011-10-24 16:50:04", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5737", "text": "", "album_id": "72157628032301395", "longitude": "-71.155613", "url_o": "https://farm7.staticflickr.com/6047/6356284415_5fbd80a129_o.jpg", "secret": "7d5065a7b6", "media": "photo", "latitude": "42.659807", "id": "6356284415", "tags": "family people massachusetts soccer events year places andover era sjp tomtom 2011 stjohnsprep andoverhighschool"}, {"datetaken": "2011-10-24 16:55:03", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5738", "text": "", "album_id": "72157628032301395", "longitude": "-71.155598", "url_o": "https://farm7.staticflickr.com/6118/6356285389_1ace5e98f8_o.jpg", "secret": "c985a173e3", "media": "photo", "latitude": "42.659835", "id": "6356285389", "tags": "family people massachusetts soccer events year places andover era sjp tomtom 2011 stjohnsprep andoverhighschool"}, {"datetaken": "2011-10-24 16:56:16", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5743", "text": "", "album_id": "72157628032301395", "longitude": "-71.155603", "url_o": "https://farm7.staticflickr.com/6115/6356286399_59dc28849b_o.jpg", "secret": "d6506e1ec0", "media": "photo", "latitude": "42.659852", "id": "6356286399", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool sportsfriends joeyrossiter neaztec96"}, {"datetaken": "2011-10-24 16:56:47", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5745", "text": "", "album_id": "72157628032301395", "longitude": "-71.155621", "url_o": "https://farm7.staticflickr.com/6217/6356287691_6aa8b95bf8_o.jpg", "secret": "a2f01d5338", "media": "photo", "latitude": "42.659850", "id": "6356287691", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool sportsfriends brandonlejeune neaztec96"}, {"datetaken": "2011-10-24 16:57:44", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5748", "text": "", "album_id": "72157628032301395", "longitude": "-71.155626", "url_o": "https://farm7.staticflickr.com/6094/6356290947_a0b61ca6c0_o.jpg", "secret": "830f942c48", "media": "photo", "latitude": "42.659843", "id": "6356290947", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool philwoolston"}, {"datetaken": "2011-10-24 16:57:44", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5749", "text": "", "album_id": "72157628032301395", "longitude": "-71.155626", "url_o": "https://farm7.staticflickr.com/6220/6356294795_115815101e_o.jpg", "secret": "ba6e632285", "media": "photo", "latitude": "42.659843", "id": "6356294795", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool samross"}, {"datetaken": "2011-10-24 16:59:19", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5753", "text": "", "album_id": "72157628032301395", "longitude": "-71.155601", "url_o": "https://farm7.staticflickr.com/6093/6356296717_0a30994f0c_o.jpg", "secret": "fd78eb8acc", "media": "photo", "latitude": "42.659849", "id": "6356296717", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool sportsfriends joeyrossiter neaztec96"}, {"datetaken": "2011-10-24 16:59:55", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5755", "text": "", "album_id": "72157628032301395", "longitude": "-71.155622", "url_o": "https://farm7.staticflickr.com/6214/6356297853_ed5dceb313_o.jpg", "secret": "294e1a47d6", "media": "photo", "latitude": "42.659892", "id": "6356297853", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool patfoley"}, {"datetaken": "2011-10-24 17:00:32", "license": "1", "title": "11 10 St. Johns Prep Freshman Soccer vs Andover-5756", "text": "", "album_id": "72157628032301395", "longitude": "-71.155618", "url_o": "https://farm7.staticflickr.com/6103/6356298809_2476ab267a_o.jpg", "secret": "2bb0e52c5d", "media": "photo", "latitude": "42.659874", "id": "6356298809", "tags": "people massachusetts soccer events year places andover era sjp 2011 stjohnsprep andoverhighschool patfoley"}, {"datetaken": "2010-07-14 09:05:12", "license": "6", "title": "Ivydale sports day: 1st event", "text": "", "album_id": "72157624409178315", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4804319957_cf7c7ca2c6_o.jpg", "secret": "120c25e237", "media": "photo", "latitude": "0", "id": "4804319957", "tags": "ivydalesportsdayjuly2010"}, {"datetaken": "2010-07-14 09:10:46", "license": "6", "title": "Ivydale sports day: 1st event", "text": "", "album_id": "72157624409178315", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4804951902_2959697594_o.jpg", "secret": "c9aca93fbf", "media": "photo", "latitude": "0", "id": "4804951902", "tags": "ivydalesportsdayjuly2010"}, {"datetaken": "2010-07-14 09:10:46", "license": "6", "title": "Ivydale sports day: Isadora and Ria", "text": "", "album_id": "72157624409178315", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4811810713_77596a2aa5_o.jpg", "secret": "56006be5a1", "media": "photo", "latitude": "0", "id": "4811810713", "tags": "ivydalesportsdayjuly2010"}, {"datetaken": "2010-07-14 09:27:50", "license": "6", "title": "Ivydale sports day: dressing up race", "text": "", "album_id": "72157624409178315", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4804954054_59416113e6_o.jpg", "secret": "7304903046", "media": "photo", "latitude": "0", "id": "4804954054", "tags": "ivydalesportsdayjuly2010"}, {"datetaken": "2010-07-14 09:28:36", "license": "6", "title": "Ivydale sports day: Dressing up race", "text": "", "album_id": "72157624409178315", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4118/4804955992_254cff0b20_o.jpg", "secret": "37c8b655cb", "media": "photo", "latitude": "0", "id": "4804955992", "tags": "ivydalesportsdayjuly2010"}, {"datetaken": "2010-07-14 09:28:49", "license": "6", "title": "Ivydale sports day", "text": "", "album_id": "72157624409178315", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4804957988_7b6db61629_o.jpg", "secret": "635730537b", "media": "photo", "latitude": "0", "id": "4804957988", "tags": "ivydalesportsdayjuly2010"}, {"datetaken": "2010-07-14 09:29:25", "license": "6", "title": "Ivydale sports day: dressing-up race", "text": "", "album_id": "72157624409178315", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4804331035_4414917e08_o.jpg", "secret": "264bb43981", "media": "photo", "latitude": "0", "id": "4804331035", "tags": "ivydalesportsdayjuly2010"}, {"datetaken": "2010-07-14 09:33:01", "license": "6", "title": "Ivydale sports day: Green team focuses", "text": "", "album_id": "72157624409178315", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4804333143_d2ed176632_o.jpg", "secret": "7221db8980", "media": "photo", "latitude": "0", "id": "4804333143", "tags": "ivydalesportsdayjuly2010"}, {"datetaken": "2010-07-14 09:34:36", "license": "6", "title": "Ivydale sports day: Pass the ball", "text": "", "album_id": "72157624409178315", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4804964568_aa60afea55_o.jpg", "secret": "de79edd013", "media": "photo", "latitude": "0", "id": "4804964568", "tags": "ivydalesportsdayjuly2010"}, {"datetaken": "2010-07-14 09:35:44", "license": "6", "title": "Ivydale sports day: Green team celebrates", "text": "", "album_id": "72157624409178315", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4804337101_8a5c44c372_o.jpg", "secret": "442e00ea8e", "media": "photo", "latitude": "0", "id": "4804337101", "tags": "ivydalesportsdayjuly2010"}, {"datetaken": "2010-07-14 09:35:56", "license": "6", "title": "Ivydale sports day: Green team", "text": "", "album_id": "72157624409178315", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4804968122_c07e386886_o.jpg", "secret": "6647f405a0", "media": "photo", "latitude": "0", "id": "4804968122", "tags": "ivydalesportsdayjuly2010"}, {"datetaken": "2010-07-14 09:42:26", "license": "6", "title": "Ivydale sports day: bat and beanbag race", "text": "", "album_id": "72157624409178315", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4804341315_10bd3cbaaa_o.jpg", "secret": "01a470a6d0", "media": "photo", "latitude": "0", "id": "4804341315", "tags": "ivydalesportsdayjuly2010"}, {"datetaken": "2010-07-14 09:42:43", "license": "6", "title": "Ivydale sports day: bat and beanbag race", "text": "", "album_id": "72157624409178315", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4804972336_12cc3f0630_o.jpg", "secret": "5d90d98cb8", "media": "photo", "latitude": "0", "id": "4804972336", "tags": "ivydalesportsdayjuly2010"}, {"datetaken": "2010-07-14 10:01:32", "license": "6", "title": "Ivydale sports day: Football race", "text": "", "album_id": "72157624409178315", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4804974268_9af33b6264_o.jpg", "secret": "1da343c3e2", "media": "photo", "latitude": "0", "id": "4804974268", "tags": "ivydalesportsdayjuly2010"}, {"datetaken": "2010-07-14 10:09:02", "license": "6", "title": "Ivydale sports day: Mum's race", "text": "", "album_id": "72157624409178315", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4804347055_87394c4429_o.jpg", "secret": "ffd2d3e981", "media": "photo", "latitude": "0", "id": "4804347055", "tags": "ivydalesportsdayjuly2010"}, {"datetaken": "2010-07-14 10:12:04", "license": "6", "title": "Sports day: Staff and Yr6 kids' race", "text": "", "album_id": "72157624409178315", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4804977724_d3b3095b18_o.jpg", "secret": "fa139daa89", "media": "photo", "latitude": "0", "id": "4804977724", "tags": "ivydalesportsdayjuly2010"}, {"datetaken": "2011-09-14 16:20:15", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3500", "text": "", "album_id": "72157628058774325", "longitude": "-70.954076", "url_o": "https://farm7.staticflickr.com/6097/6366788329_ae4d0a13fc_o.jpg", "secret": "0ff8ee5332", "media": "photo", "latitude": "42.584041", "id": "6366788329", "tags": "people usa unitedstates massachusetts soccer events year places northshore era danvers sjp 2011 stjohnsprep xaverianbrothers soccermatches samperel"}, {"datetaken": "2011-09-14 16:20:17", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3502", "text": "", "album_id": "72157628058774325", "longitude": "-70.954078", "url_o": "https://farm7.staticflickr.com/6112/6366790995_1d291f1ac7_o.jpg", "secret": "d6cbb824cb", "media": "photo", "latitude": "42.584041", "id": "6366790995", "tags": "family people usa unitedstates massachusetts soccer events year places northshore era danvers sjp tomtom 2011 stjohnsprep xaverianbrothers sportsfriends soccermatches joeyrossiter neaztec96 samperel"}, {"datetaken": "2011-09-14 16:23:37", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3511", "text": "", "album_id": "72157628058774325", "longitude": "-70.954148", "url_o": "https://farm7.staticflickr.com/6041/6366792793_dc6d94ac8b_o.jpg", "secret": "9b7bced6c9", "media": "photo", "latitude": "42.584031", "id": "6366792793", "tags": "people usa unitedstates massachusetts soccer events year places northshore era danvers sjp 2011 stjohnsprep xaverianbrothers patfoley soccermatches"}, {"datetaken": "2011-09-14 16:23:37", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3514", "text": "", "album_id": "72157628058774325", "longitude": "-70.954148", "url_o": "https://farm7.staticflickr.com/6040/6366793811_b31f53642d_o.jpg", "secret": "4a20156eb0", "media": "photo", "latitude": "42.584031", "id": "6366793811", "tags": "people usa unitedstates massachusetts soccer events year places northshore era danvers sjp 2011 stjohnsprep xaverianbrothers patfoley soccermatches"}, {"datetaken": "2011-09-14 16:25:52", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3515", "text": "", "album_id": "72157628058774325", "longitude": "-70.953903", "url_o": "https://farm7.staticflickr.com/6234/6366795743_00bd2c5434_o.jpg", "secret": "c5d479f756", "media": "photo", "latitude": "42.584008", "id": "6366795743", "tags": "people usa unitedstates massachusetts soccer events year places northshore era danvers sjp 2011 stjohnsprep xaverianbrothers soccermatches samperel"}, {"datetaken": "2011-09-14 16:29:18", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3517", "text": "", "album_id": "72157628058774325", "longitude": "-70.954125", "url_o": "https://farm7.staticflickr.com/6240/6366798743_a6bdafd06b_o.jpg", "secret": "8f3eae9f87", "media": "photo", "latitude": "42.584151", "id": "6366798743", "tags": "people usa unitedstates massachusetts soccer events year places northshore era danvers sjp 2011 stjohnsprep xaverianbrothers sportsfriends soccermatches justinblanch neaztec96"}, {"datetaken": "2011-09-14 16:39:08", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3522", "text": "", "album_id": "72157628058774325", "longitude": "-70.954106", "url_o": "https://farm7.staticflickr.com/6055/6366802883_7a27b4be25_o.jpg", "secret": "f0753735c1", "media": "photo", "latitude": "42.584095", "id": "6366802883", "tags": "family people usa unitedstates massachusetts soccer events year places northshore era danvers sjp tomtom 2011 stjohnsprep xaverianbrothers sportsfriends soccermatches justinblanch neaztec96"}, {"datetaken": "2011-09-14 16:50:01", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3536", "text": "", "album_id": "72157628058774325", "longitude": "-70.954136", "url_o": "https://farm7.staticflickr.com/6057/6366803637_dacb623fae_o.jpg", "secret": "84a06f5a5e", "media": "photo", "latitude": "42.583983", "id": "6366803637", "tags": "people usa unitedstates massachusetts soccer events year places northshore era danvers sjp 2011 stjohnsprep xaverianbrothers sportsfriends soccermatches justinblanch neaztec96"}, {"datetaken": "2011-09-14 16:51:40", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3540", "text": "", "album_id": "72157628058774325", "longitude": "-70.954116", "url_o": "https://farm7.staticflickr.com/6220/6366808551_84a351ae18_o.jpg", "secret": "3bcefbdcc7", "media": "photo", "latitude": "42.584163", "id": "6366808551", "tags": "family people usa unitedstates massachusetts soccer events year places northshore era danvers sjp tomtom 2011 stjohnsprep xaverianbrothers soccermatches samperel"}, {"datetaken": "2011-09-14 17:06:34", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3545", "text": "", "album_id": "72157628058774325", "longitude": "-70.954003", "url_o": "https://farm7.staticflickr.com/6221/6366809579_642c15c154_o.jpg", "secret": "4d9dc2ca12", "media": "photo", "latitude": "42.584056", "id": "6366809579", "tags": "friends people usa unitedstates massachusetts soccer events year places northshore era danvers sjp 2011 stjohnsprep xaverianbrothers lillelund pcfriends soccermatches tahoelillelund"}, {"datetaken": "2011-09-14 17:07:25", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3548", "text": "", "album_id": "72157628058774325", "longitude": "-70.954115", "url_o": "https://farm7.staticflickr.com/6032/6366810929_0122520cfe_o.jpg", "secret": "9febfb68c9", "media": "photo", "latitude": "42.584041", "id": "6366810929", "tags": "people usa unitedstates massachusetts soccer events year places northshore era danvers sjp 2011 stjohnsprep xaverianbrothers soccermatches samperel"}, {"datetaken": "2011-09-14 17:09:58", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3552", "text": "", "album_id": "72157628058774325", "longitude": "-70.953993", "url_o": "https://farm7.staticflickr.com/6101/6366817933_c9ca0ea5ec_o.jpg", "secret": "ba1fd85c0c", "media": "photo", "latitude": "42.583776", "id": "6366817933", "tags": "family people usa unitedstates massachusetts soccer events year places northshore era danvers sjp tomtom 2011 stjohnsprep xaverianbrothers sportsfriends soccermatches justinblanch neaztec96"}, {"datetaken": "2011-09-14 17:09:59", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3555", "text": "", "album_id": "72157628058774325", "longitude": "-70.953995", "url_o": "https://farm7.staticflickr.com/6092/6366820805_99c5e85a72_o.jpg", "secret": "e8d83c8014", "media": "photo", "latitude": "42.583778", "id": "6366820805", "tags": "family people usa unitedstates massachusetts soccer events year places northshore era danvers sjp tomtom 2011 stjohnsprep xaverianbrothers soccermatches"}, {"datetaken": "2011-09-14 17:11:06", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3561", "text": "", "album_id": "72157628058774325", "longitude": "-70.954046", "url_o": "https://farm7.staticflickr.com/6099/6366821815_7ea9735868_o.jpg", "secret": "31a2ed0710", "media": "photo", "latitude": "42.583951", "id": "6366821815", "tags": "people usa unitedstates massachusetts soccer events year places northshore era danvers sjp 2011 stjohnsprep xaverianbrothers jeffchilds soccermatches"}, {"datetaken": "2011-09-14 17:11:13", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3564", "text": "", "album_id": "72157628058774325", "longitude": "-70.954041", "url_o": "https://farm7.staticflickr.com/6019/6366828123_2144a188ba_o.jpg", "secret": "e6118105c0", "media": "photo", "latitude": "42.583953", "id": "6366828123", "tags": "family people usa unitedstates massachusetts soccer events year places northshore era danvers sjp tomtom 2011 stjohnsprep xaverianbrothers soccermatches"}, {"datetaken": "2011-09-14 17:11:14", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3565", "text": "", "album_id": "72157628058774325", "longitude": "-70.954040", "url_o": "https://farm7.staticflickr.com/6211/6366832783_5e0b02f2ee_o.jpg", "secret": "513e54a704", "media": "photo", "latitude": "42.583953", "id": "6366832783", "tags": "family people usa unitedstates massachusetts soccer events year places northshore era danvers sjp tomtom 2011 stjohnsprep xaverianbrothers soccermatches"}, {"datetaken": "2011-09-14 17:12:40", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3571", "text": "", "album_id": "72157628058774325", "longitude": "-70.954198", "url_o": "https://farm7.staticflickr.com/6224/6366843657_fbe3875d1c_o.jpg", "secret": "b305a2efbc", "media": "photo", "latitude": "42.583955", "id": "6366843657", "tags": "people usa unitedstates massachusetts soccer events year places northshore era danvers sjp 2011 stjohnsprep xaverianbrothers soccermatches"}, {"datetaken": "2011-09-14 17:19:03", "license": "1", "title": "11 09 St. Johns Prep Freshman Soccer vs Xaverian Brothers-3585", "text": "", "album_id": "72157628058774325", "longitude": "-70.954121", "url_o": "https://farm7.staticflickr.com/6218/6366850233_be68d3320b_o.jpg", "secret": "4d3f43fd81", "media": "photo", "latitude": "42.583910", "id": "6366850233", "tags": "people usa unitedstates massachusetts soccer events year places northshore era danvers sjp 2011 stjohnsprep xaverianbrothers sportsfriends soccermatches justinblanch neaztec96"}, {"datetaken": "2011-06-18 06:12:38", "license": "4", "title": "Soldiers compete in Sgt. Audie Murphy Triathlon", "text": "", "album_id": "72157627037920956", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5191/5866100667_9ec10f4d56_o.jpg", "secret": "2f772187e0", "media": "photo", "latitude": "0", "id": "5866100667", "tags": "sports soldiers triathlon fortrucker armyaviation imcom usaace"}, {"datetaken": "2011-06-18 06:15:32", "license": "4", "title": "Soldiers compete in Sgt. Audie Murphy Triathlon", "text": "", "album_id": "72157627037920956", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5239/5866100937_72f1d34d39_o.jpg", "secret": "a52cc7b8b8", "media": "photo", "latitude": "0", "id": "5866100937", "tags": "sports soldiers triathlon fortrucker armyaviation imcom usaace"}, {"datetaken": "2011-06-18 06:18:22", "license": "4", "title": "Soldiers compete in Sgt. Audie Murphy Triathlon", "text": "", "album_id": "72157627037920956", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5152/5866655126_41794b368e_o.jpg", "secret": "f8f426cd55", "media": "photo", "latitude": "0", "id": "5866655126", "tags": "sports soldiers triathlon fortrucker armyaviation imcom usaace"}, {"datetaken": "2011-06-18 06:19:35", "license": "4", "title": "Soldiers compete in Sgt. Audie Murphy Triathlon", "text": "", "album_id": "72157627037920956", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3093/5866655228_751a441914_o.jpg", "secret": "df78003fc7", "media": "photo", "latitude": "0", "id": "5866655228", "tags": "sports soldiers triathlon fortrucker armyaviation imcom usaace"}, {"datetaken": "2011-06-18 06:40:19", "license": "4", "title": "Soldiers compete in Sgt. Audie Murphy Triathlon", "text": "", "album_id": "72157627037920956", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5065/5866101189_f1fa228c4b_o.jpg", "secret": "5d7acbc332", "media": "photo", "latitude": "0", "id": "5866101189", "tags": "sports soldiers triathlon fortrucker armyaviation imcom usaace"}, {"datetaken": "2011-06-18 06:45:02", "license": "4", "title": "Soldiers compete in Sgt. Audie Murphy Triathlon", "text": "", "album_id": "72157627037920956", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5103/5866655484_4acd2becd2_o.jpg", "secret": "086c8697e5", "media": "photo", "latitude": "0", "id": "5866655484", "tags": "sports soldiers triathlon fortrucker armyaviation imcom usaace"}, {"datetaken": "2011-06-18 06:48:09", "license": "4", "title": "Soldiers compete in Sgt. Audie Murphy Triathlon", "text": "", "album_id": "72157627037920956", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5226/5866655758_41bd5e01e5_o.jpg", "secret": "d81aa9980a", "media": "photo", "latitude": "0", "id": "5866655758", "tags": "sports soldiers triathlon fortrucker armyaviation imcom usaace"}, {"datetaken": "2011-06-18 06:48:37", "license": "4", "title": "Soldiers compete in Sgt. Audie Murphy Triathlon", "text": "", "album_id": "72157627037920956", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5038/5866656016_a09393ceee_o.jpg", "secret": "a07223517f", "media": "photo", "latitude": "0", "id": "5866656016", "tags": "sports soldiers triathlon fortrucker armyaviation imcom usaace"}, {"datetaken": "2011-06-18 06:49:22", "license": "4", "title": "Soldiers compete in Sgt. Audie Murphy Triathlon", "text": "", "album_id": "72157627037920956", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5224/5866656146_f422527ffe_o.jpg", "secret": "6ddfb4bb3d", "media": "photo", "latitude": "0", "id": "5866656146", "tags": "sports soldiers triathlon fortrucker armyaviation imcom usaace"}, {"datetaken": "2011-06-18 06:53:01", "license": "4", "title": "Soldiers compete in Sgt. Audie Murphy Triathlon", "text": "", "album_id": "72157627037920956", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3176/5866656488_91cb6370db_o.jpg", "secret": "571be61760", "media": "photo", "latitude": "0", "id": "5866656488", "tags": "sports soldiers triathlon fortrucker armyaviation imcom usaace"}, {"datetaken": "2011-06-18 06:56:04", "license": "4", "title": "Soldiers compete in Sgt. Audie Murphy Triathlon", "text": "", "album_id": "72157627037920956", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5159/5866656716_98fb7ec542_o.jpg", "secret": "4acfe78794", "media": "photo", "latitude": "0", "id": "5866656716", "tags": "sports soldiers triathlon fortrucker armyaviation imcom usaace"}, {"datetaken": "2011-06-18 06:56:24", "license": "4", "title": "Soldiers compete in Sgt. Audie Murphy Triathlon", "text": "", "album_id": "72157627037920956", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5145/5866102779_590bae8500_o.jpg", "secret": "0ec2e716ac", "media": "photo", "latitude": "0", "id": "5866102779", "tags": "sports soldiers triathlon fortrucker armyaviation imcom usaace"}, {"datetaken": "2011-06-18 06:57:14", "license": "4", "title": "Soldiers compete in Sgt. Audie Murphy Triathlon", "text": "", "album_id": "72157627037920956", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5152/5866102939_d6fb6b9e80_o.jpg", "secret": "e32bda5eaa", "media": "photo", "latitude": "0", "id": "5866102939", "tags": "sports soldiers triathlon fortrucker armyaviation imcom usaace"}, {"datetaken": "2011-06-18 06:59:55", "license": "4", "title": "Soldiers compete in Sgt. Audie Murphy Triathlon", "text": "", "album_id": "72157627037920956", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3037/5866657362_52e73e5b1c_o.jpg", "secret": "1899fc997f", "media": "photo", "latitude": "0", "id": "5866657362", "tags": "sports soldiers triathlon fortrucker armyaviation imcom usaace"}, {"datetaken": "2011-06-18 07:05:44", "license": "4", "title": "Soldiers compete in Sgt. Audie Murphy Triathlon", "text": "", "album_id": "72157627037920956", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6045/5866103479_b24c9e419c_o.jpg", "secret": "7e823f6137", "media": "photo", "latitude": "0", "id": "5866103479", "tags": "sports soldiers triathlon fortrucker armyaviation imcom usaace"}, {"datetaken": "2011-06-18 07:34:34", "license": "4", "title": "Soldiers compete in Sgt. Audie Murphy Triathlon", "text": "", "album_id": "72157627037920956", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3113/5866103757_45c6fb3aa4_o.jpg", "secret": "1b4f4987c6", "media": "photo", "latitude": "0", "id": "5866103757", "tags": "sports soldiers triathlon fortrucker armyaviation imcom usaace"}, {"datetaken": "2011-11-27 12:17:13", "license": "4", "title": "_DSC3262-Edit.jpg", "text": "", "album_id": "72157629808029571", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7172/6424949257_e767916bf7_o.jpg", "secret": "f7d318f260", "media": "photo", "latitude": "0", "id": "6424949257", "tags": "sports events flashphotography velocity d90 sb28 sb900"}, {"datetaken": "2011-11-27 12:30:47", "license": "4", "title": "_DSC3284-Edit.jpg", "text": "", "album_id": "72157629808029571", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7152/6424950857_7af29c2284_o.jpg", "secret": "9a3b62d5dd", "media": "photo", "latitude": "0", "id": "6424950857", "tags": "sports events flashphotography velocity d90 sb28 sb900"}, {"datetaken": "2011-11-27 12:31:24", "license": "4", "title": "_DSC3286-Edit.jpg", "text": "", "album_id": "72157629808029571", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6108/6424952299_6fec547a14_o.jpg", "secret": "d1f7c0bb4f", "media": "photo", "latitude": "0", "id": "6424952299", "tags": "sports events flashphotography velocity d90 sb28 sb900"}, {"datetaken": "2011-11-27 12:33:53", "license": "4", "title": "_DSC3293-Edit.jpg", "text": "", "album_id": "72157629808029571", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7155/6424954929_e2d99de471_o.jpg", "secret": "2c55c97c83", "media": "photo", "latitude": "0", "id": "6424954929", "tags": "sports events flashphotography velocity d90 sb28 sb900"}, {"datetaken": "2011-11-27 12:34:07", "license": "4", "title": "_DSC3294-Edit.jpg", "text": "", "album_id": "72157629808029571", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6093/6424957997_44f0a2ebf7_o.jpg", "secret": "9c9de8f5f3", "media": "photo", "latitude": "0", "id": "6424957997", "tags": "sports events flashphotography velocity d90 sb28 sb900"}, {"datetaken": "2011-11-27 12:34:19", "license": "4", "title": "_DSC3295-Edit.jpg", "text": "", "album_id": "72157629808029571", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6424961197_df9258b342_o.jpg", "secret": "2e28713f80", "media": "photo", "latitude": "0", "id": "6424961197", "tags": "sports events flashphotography velocity d90 sb28 sb900"}, {"datetaken": "2011-11-27 12:34:23", "license": "4", "title": "_DSC3296-Edit.jpg", "text": "", "album_id": "72157629808029571", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7012/6424963597_d0abe6de95_o.jpg", "secret": "f539e42e32", "media": "photo", "latitude": "0", "id": "6424963597", "tags": "sports events flashphotography velocity d90 sb28 sb900"}, {"datetaken": "2011-11-27 12:36:37", "license": "4", "title": "_DSC3310-Edit.jpg", "text": "", "album_id": "72157629808029571", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7004/6424965615_acb8d3eb0c_o.jpg", "secret": "42ddcd5277", "media": "photo", "latitude": "0", "id": "6424965615", "tags": "sports events flashphotography velocity d90 sb28 sb900"}, {"datetaken": "2011-11-27 12:37:56", "license": "4", "title": "_DSC3318-Edit.jpg", "text": "", "album_id": "72157629808029571", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7162/6424967315_54e919d610_o.jpg", "secret": "dd54e8bef8", "media": "photo", "latitude": "0", "id": "6424967315", "tags": "sports events flashphotography velocity d90 sb28 sb900"}, {"datetaken": "2011-11-27 12:41:48", "license": "4", "title": "_DSC3336-Edit.jpg", "text": "", "album_id": "72157629808029571", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6103/6424970701_1d71595700_o.jpg", "secret": "2a75de1373", "media": "photo", "latitude": "0", "id": "6424970701", "tags": "sports events flashphotography velocity d90 sb28 sb900"}, {"datetaken": "2011-11-27 12:42:07", "license": "4", "title": "_DSC3338-Edit.jpg", "text": "", "album_id": "72157629808029571", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6055/6424972811_6b637ce87e_o.jpg", "secret": "807f4899c4", "media": "photo", "latitude": "0", "id": "6424972811", "tags": "sports events flashphotography velocity d90 sb28 sb900"}, {"datetaken": "2008-09-04 22:09:17", "license": "2", "title": "Paternoville Populated Again 1", "text": "", "album_id": "72157625082564869", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/4947701670_4995f18244_o.jpg", "secret": "21786d45ed", "media": "photo", "latitude": "0", "id": "4947701670", "tags": "sports students tents football athletics pennstate fans beaverstadium nittanylions gatea paternoville universityparkcampus creditandycolwell"}, {"datetaken": "2008-09-04 22:11:17", "license": "2", "title": "Paternoville Populated Again 2", "text": "", "album_id": "72157625082564869", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/4947702036_f2f61008ec_o.jpg", "secret": "d48de72b11", "media": "photo", "latitude": "0", "id": "4947702036", "tags": "sports students tents football athletics pennstate fans registration beaverstadium nittanylions gatea paternoville universityparkcampus creditandycolwell"}, {"datetaken": "2008-09-04 22:18:25", "license": "2", "title": "Paternoville Populated Again 3", "text": "", "album_id": "72157625082564869", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/4947113239_3db19c02d1_o.jpg", "secret": "2d48a449c7", "media": "photo", "latitude": "0", "id": "4947113239", "tags": "sports students tents football athletics fireworks pennstate fans beaverstadium nittanylions gatea paternoville universityparkcampus creditandycolwell"}, {"datetaken": "2008-09-04 22:19:41", "license": "2", "title": "Paternoville Populated Again 4", "text": "", "album_id": "72157625082564869", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4125/4947702348_a8514eecac_o.jpg", "secret": "8f60f66880", "media": "photo", "latitude": "0", "id": "4947702348", "tags": "sports students tents football athletics fireworks pennstate fans beaverstadium nittanylions gatea paternoville universityparkcampus creditandycolwell"}, {"datetaken": "2008-09-04 22:24:00", "license": "2", "title": "Paternoville Populated Again 5", "text": "", "album_id": "72157625082564869", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/4947702454_dc2239005e_o.jpg", "secret": "0c84496345", "media": "photo", "latitude": "0", "id": "4947702454", "tags": "sports students sign football athletics banner pennstate fans beaverstadium nittanylions gatea paternoville universityparkcampus creditandycolwell stupssquad"}, {"datetaken": "2008-09-04 22:37:19", "license": "2", "title": "Paternoville Populated Again 6", "text": "", "album_id": "72157625082564869", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/4947113631_50098c0eb3_o.jpg", "secret": "ef2f156c98", "media": "photo", "latitude": "0", "id": "4947113631", "tags": "sports students tents football athletics pennstate flashlight fans homework studying beaverstadium nittanylions gatea paternoville universityparkcampus creditandycolwell"}, {"datetaken": "2008-09-04 22:43:36", "license": "2", "title": "Paternoville Populated Again 7", "text": "", "album_id": "72157625082564869", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4947113743_d6f19b12bc_o.jpg", "secret": "543928f090", "media": "photo", "latitude": "0", "id": "4947113743", "tags": "sports students tents football athletics games pennstate fans catchphrase beaverstadium nittanylions gatea paternoville universityparkcampus creditandycolwell"}, {"datetaken": "2008-09-04 22:55:36", "license": "2", "title": "Paternoville Populated Again 8", "text": "", "album_id": "72157625082564869", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4947702810_1bc13ef5fa_o.jpg", "secret": "5ec533bf92", "media": "photo", "latitude": "0", "id": "4947702810", "tags": "sports students tents football athletics pennstate fans beaverstadium oregonstate nittanylions gatea paternoville universityparkcampus creditandycolwell"}, {"datetaken": "2008-09-04 23:09:25", "license": "2", "title": "Paternoville Populated Again 9", "text": "", "album_id": "72157625082564869", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4947702928_fa3f3e089e_o.jpg", "secret": "40b5778273", "media": "photo", "latitude": "0", "id": "4947702928", "tags": "sports students tents football athletics pennstate towels fans secretary whiteout beaverstadium nittanylions gatea paternoville universityparkcampus creditandycolwell"}, {"datetaken": "2008-09-04 23:24:18", "license": "2", "title": "Paternoville Populated Again 10", "text": "", "album_id": "72157625082564869", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4125/4947703030_5d8ee41dbb_o.jpg", "secret": "c62dec3702", "media": "photo", "latitude": "0", "id": "4947703030", "tags": "sports students sign tents football athletics pennstate fans beaverstadium nittanylions gatea paternoville universityparkcampus creditandycolwell"}, {"datetaken": "2008-09-04 23:27:36", "license": "2", "title": "Paternoville Populated Again 11", "text": "", "album_id": "72157625082564869", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/4947114189_7feb109a3c_o.jpg", "secret": "60b859233e", "media": "photo", "latitude": "0", "id": "4947114189", "tags": "sports students tents football athletics pennstate fans beaverstadium nittanylions gatea paternoville universityparkcampus creditandycolwell"}, {"datetaken": "2008-09-05 07:58:54", "license": "2", "title": "Paternoville Populated Again 12", "text": "", "album_id": "72157625082564869", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/4947703230_3e42e46b78_o.jpg", "secret": "156a632332", "media": "photo", "latitude": "0", "id": "4947703230", "tags": "sports students tents football athletics pennstate fans beaverstadium nittanylions gatea paternoville universityparkcampus creditandycolwell"}, {"datetaken": "2008-09-26 14:16:08", "license": "2", "title": "Big Ten Opener Excitement 1", "text": "", "album_id": "72157625082566321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/4947079225_ff67c0041d_o.jpg", "secret": "96d4d2ccfd", "media": "photo", "latitude": "0", "id": "4947079225", "tags": "sports football athletics events pennstate abc visitors speakers nittanylions broadcaster brycejordancenter collegeofcommunications sportsjournalism brentmusburger universityparkcampus creditandycolwell bigtenopener johncurleycenterforsportsjournalism"}, {"datetaken": "2008-09-26 14:59:56", "license": "2", "title": "Big Ten Opener Excitement 2", "text": "", "album_id": "72157625082566321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4947667966_813dc9b57f_o.jpg", "secret": "03489f72a9", "media": "photo", "latitude": "0", "id": "4947667966", "tags": "sports students football athletics audience events pennstate abc visitors speakers nittanylions broadcaster brycejordancenter collegeofcommunications sportsjournalism foundersroom brentmusburger universityparkcampus creditandycolwell bigtenopener johncurleycenterforsportsjournalism"}, {"datetaken": "2008-09-26 15:06:25", "license": "2", "title": "Big Ten Opener Excitement 3", "text": "", "album_id": "72157625082566321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4125/4947079503_e1b372c1f2_o.jpg", "secret": "c13ebf298b", "media": "photo", "latitude": "0", "id": "4947079503", "tags": "sports football athletics chair events pennstate gift abc professor visitors speakers nittanylions broadcaster brycejordancenter collegeofcommunications sportsjournalism brentmusburger universityparkcampus creditandycolwell bigtenopener johncurleycenterforsportsjournalism"}, {"datetaken": "2008-09-26 19:56:30", "license": "2", "title": "Big Ten Opener Excitement 4", "text": "", "album_id": "72157625082566321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4088/4947668254_cc149c82e1_o.jpg", "secret": "c7427f2687", "media": "photo", "latitude": "0", "id": "4947668254", "tags": "sports students football athletics events pennstate fans peprally nittanylions rechall universityparkcampus rallyinthevalley intercollegiateathletics creditannemariemountz bluewhitesociety bigtenopener"}, {"datetaken": "2008-09-26 20:01:33", "license": "2", "title": "Big Ten Opener Excitement 5", "text": "", "album_id": "72157625082566321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4947079783_65cd23cd0a_o.jpg", "secret": "5fcba0f680", "media": "photo", "latitude": "0", "id": "4947079783", "tags": "sports students football athletics dancing events performance entertainment pennstate fans peprally nittanylions rechall universityparkcampus rallyinthevalley intercollegiateathletics creditannemariemountz bluewhitesociety lionettesdanceteam bigtenopener"}, {"datetaken": "2008-09-26 20:08:06", "license": "2", "title": "Big Ten Opener Excitement 6", "text": "", "album_id": "72157625082566321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4947079919_359aa57a9e_o.jpg", "secret": "198338c55a", "media": "photo", "latitude": "0", "id": "4947079919", "tags": "music sports students football athletics events performance entertainment pennstate fans peprally nittanylions blueband rechall universityparkcampus rallyinthevalley intercollegiateathletics creditannemariemountz bluewhitesociety bigtenopener"}, {"datetaken": "2008-09-26 20:10:37", "license": "2", "title": "Big Ten Opener Excitement 7", "text": "", "album_id": "72157625082566321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4091/4947668638_7a8f3c9630_o.jpg", "secret": "9c138ac54d", "media": "photo", "latitude": "0", "id": "4947668638", "tags": "sports students football athletics cheerleaders events performance entertainment pennstate fans peprally nittanylions rechall universityparkcampus rallyinthevalley intercollegiateathletics creditannemariemountz bluewhitesociety bigtenopener"}, {"datetaken": "2008-09-26 20:11:27", "license": "2", "title": "Big Ten Opener Excitement 8", "text": "", "album_id": "72157625082566321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4947668818_af6335fa8e_o.jpg", "secret": "ca545bf196", "media": "photo", "latitude": "0", "id": "4947668818", "tags": "sports students football athletics events tunnel mascot entertainment pennstate fans peprally nittanylion nittanylions blueband rechall universityparkcampus rallyinthevalley intercollegiateathletics creditannemariemountz bluewhitesociety bigtenopener"}, {"datetaken": "2008-09-26 20:14:36", "license": "2", "title": "Big Ten Opener Excitement 9", "text": "", "album_id": "72157625082566321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/4947668948_29be4843e4_o.jpg", "secret": "db50a42c82", "media": "photo", "latitude": "0", "id": "4947668948", "tags": "sports students football athletics events crowd pennstate fans cheering peprally nittanylions rechall universityparkcampus rallyinthevalley intercollegiateathletics creditannemariemountz bluewhitesociety bigtenopener"}, {"datetaken": "2008-09-26 20:28:26", "license": "2", "title": "Big Ten Opener Excitement 12", "text": "", "album_id": "72157625082566321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/4947080653_015d52714e_o.jpg", "secret": "cf2a2c671a", "media": "photo", "latitude": "0", "id": "4947080653", "tags": "sports students football coach team athletics events pennstate fans peprally nittanylions joepaterno rechall universityparkcampus rallyinthevalley studentathletes intercollegiateathletics creditannemariemountz bluewhitesociety bigtenopener"}, {"datetaken": "2008-09-26 20:36:11", "license": "2", "title": "Big Ten Opener Excitement 11", "text": "", "album_id": "72157625082566321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/4947669182_1a7afe98bc_o.jpg", "secret": "e53d5874f8", "media": "photo", "latitude": "0", "id": "4947669182", "tags": "camera sports students football video athletics events pennstate videocamera fans peprally nittanylions blueband videographer joepaterno rechall universityparkcampus rallyinthevalley intercollegiateathletics creditannemariemountz creditandycolwell bluewhitesociety bigtenopener"}, {"datetaken": "2008-09-26 20:38:38", "license": "2", "title": "Big Ten Opener Excitement 10", "text": "", "album_id": "72157625082566321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4947669046_d54b82e8d1_o.jpg", "secret": "b43e735df4", "media": "photo", "latitude": "0", "id": "4947669046", "tags": "sports students football athletics events mascot pennstate fans peprally nittanylion nittanylions stevejones rechall universityparkcampus rallyinthevalley intercollegiateathletics creditannemariemountz creditandycolwell bluewhitesociety bigtenopener"}, {"datetaken": "2009-03-05 21:26:21", "license": "2", "title": "Illinois vs. Penn State 1", "text": "", "album_id": "72157625207407464", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4113/4946708975_b9d3748ae1_o.jpg", "secret": "a104329bd1", "media": "photo", "latitude": "0", "id": "4946708975", "tags": "game sports students basketball illinois athletics events pennstate nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditannemariemountz"}, {"datetaken": "2009-03-05 21:33:10", "license": "2", "title": "Illinois vs. Penn State 2", "text": "", "album_id": "72157625207407464", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/4946709511_5345086c1b_o.jpg", "secret": "c9e94d73af", "media": "photo", "latitude": "0", "id": "4946709511", "tags": "game sports students basketball illinois athletics events pennstate nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditannemariemountz"}, {"datetaken": "2009-03-05 22:40:19", "license": "2", "title": "Illinois vs. Penn State 3", "text": "", "album_id": "72157625207407464", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4946709779_2b62c4cc52_o.jpg", "secret": "c46ef9488c", "media": "photo", "latitude": "0", "id": "4946709779", "tags": "game sports students basketball illinois athletics events pennstate nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditannemariemountz"}, {"datetaken": "2009-03-05 22:47:07", "license": "2", "title": "Illinois vs. Penn State 4", "text": "", "album_id": "72157625207407464", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/4946710305_63e91afbcf_o.jpg", "secret": "f290bfe8bf", "media": "photo", "latitude": "0", "id": "4946710305", "tags": "game sports students basketball illinois athletics events pennstate nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditannemariemountz"}, {"datetaken": "2009-03-05 22:55:38", "license": "2", "title": "Illinois vs. Penn State 5", "text": "", "album_id": "72157625207407464", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/4946710757_3312821a2b_o.jpg", "secret": "ee096fd84e", "media": "photo", "latitude": "0", "id": "4946710757", "tags": "game sports students basketball illinois athletics events pennstate nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditannemariemountz"}, {"datetaken": "2009-03-05 23:00:20", "license": "2", "title": "Illinois vs. Penn State 6", "text": "", "album_id": "72157625207407464", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/4947300822_fb600a3c8f_o.jpg", "secret": "a7d65e9bc1", "media": "photo", "latitude": "0", "id": "4947300822", "tags": "game sports students basketball illinois athletics events pennstate nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditannemariemountz"}, {"datetaken": "2009-03-05 23:00:26", "license": "2", "title": "Illinois vs. Penn State 7", "text": "", "album_id": "72157625207407464", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4146/4946712271_308c40654a_o.jpg", "secret": "0e79994b34", "media": "photo", "latitude": "0", "id": "4946712271", "tags": "game sports students basketball illinois athletics events pennstate nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditannemariemountz"}, {"datetaken": "2009-03-05 23:00:27", "license": "2", "title": "Illinois vs. Penn State 8", "text": "", "album_id": "72157625207407464", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/4947301910_79c05a60e3_o.jpg", "secret": "5e0a0c076b", "media": "photo", "latitude": "0", "id": "4947301910", "tags": "game sports students basketball illinois athletics events pennstate nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditannemariemountz"}, {"datetaken": "2009-03-05 23:00:28", "license": "2", "title": "Illinois vs. Penn State 9", "text": "", "album_id": "72157625207407464", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4947302306_001ceecef9_o.jpg", "secret": "46db964888", "media": "photo", "latitude": "0", "id": "4947302306", "tags": "game sports students basketball illinois athletics events pennstate nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditannemariemountz"}, {"datetaken": "2009-03-05 23:03:28", "license": "2", "title": "Illinois vs. Penn State 10", "text": "", "album_id": "72157625207407464", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/4947302486_861bb15063_o.jpg", "secret": "3ca4a9e634", "media": "photo", "latitude": "0", "id": "4947302486", "tags": "game sports students basketball illinois athletics events celebration pennstate nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes talorbattle creditannemariemountz"}, {"datetaken": "2009-03-05 23:03:43", "license": "2", "title": "Illinois vs. Penn State 11", "text": "", "album_id": "72157625207407464", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/4946713243_ddc877fe7e_o.jpg", "secret": "0c12c66f8b", "media": "photo", "latitude": "0", "id": "4946713243", "tags": "game sports students basketball illinois athletics events crowd celebration pennstate fans nittanylions brycejordancenter mensbasketball universityparkcampus studentathletes creditannemariemountz"}, {"datetaken": "2009-08-14 01:04:50", "license": "2", "title": "2009 Media Day 013", "text": "", "album_id": "72157625207413126", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4125/4946383863_77684b5426_o.jpg", "secret": "bf844fd08d", "media": "photo", "latitude": "0", "id": "4946383863", "tags": "sports football athletics media events pennstate press 2009 beaverstadium nittanylions mediaday universityparkcampus creditgeoffrushton"}, {"datetaken": "2009-08-14 01:34:32", "license": "2", "title": "2009 Media Day 003", "text": "", "album_id": "72157625207413126", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/4946970520_dee27631f7_o.jpg", "secret": "e0c6800663", "media": "photo", "latitude": "0", "id": "4946970520", "tags": "bus sports football athletics media tour events pennstate press 2009 beaverstadium nittanylions mediaday universityparkcampus bigtennetwork creditgeoffrushton"}, {"datetaken": "2009-08-14 02:24:06", "license": "2", "title": "2009 Media Day 002", "text": "", "album_id": "72157625207413126", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4130/4946970348_066c1f95c9_o.jpg", "secret": "e3bb567786", "media": "photo", "latitude": "0", "id": "4946970348", "tags": "sports football coach athletics media events pennstate press 2009 beaverstadium nittanylions mediaday joepaterno universityparkcampus creditgeoffrushton"}, {"datetaken": "2009-08-14 02:34:16", "license": "2", "title": "2009 Media Day 001", "text": "", "album_id": "72157625207413126", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4946970182_08434133b2_o.jpg", "secret": "1ddc189de9", "media": "photo", "latitude": "0", "id": "4946970182", "tags": "creditgeoffrushton pennstate universityparkcampus beaverstadium football mediaday 2009 nittanylions athletics sports events media press coach joepaterno"}, {"datetaken": "2009-08-14 03:12:36", "license": "2", "title": "2009 Media Day 004", "text": "", "album_id": "72157625207413126", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4151/4946381465_2e161b96b0_o.jpg", "secret": "540cf4b419", "media": "photo", "latitude": "0", "id": "4946381465", "tags": "show sports football tv athletics media tour events pennstate press filming 2009 hosts nittanylions mediaday universityparkcampus bigtennetwork creditgeoffrushton"}, {"datetaken": "2009-08-14 03:20:36", "license": "2", "title": "2009 Media Day 005", "text": "", "album_id": "72157625207413126", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4125/4946971088_6abc25994b_o.jpg", "secret": "985422674f", "media": "photo", "latitude": "0", "id": "4946971088", "tags": "sports students field football athletics media events pennstate press interview 2009 nittanylions mediaday universityparkcampus studentathletes creditgeoffrushton holubahall"}, {"datetaken": "2009-08-14 03:22:35", "license": "2", "title": "2009 Media Day 006", "text": "", "album_id": "72157625207413126", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4146/4946971322_fb0fc4882b_o.jpg", "secret": "ff30713889", "media": "photo", "latitude": "0", "id": "4946971322", "tags": "sports students field football athletics media events pennstate press interview 2009 nittanylions mediaday universityparkcampus studentathletes creditgeoffrushton holubahall"}, {"datetaken": "2009-08-14 03:25:23", "license": "2", "title": "2009 Media Day 007", "text": "", "album_id": "72157625207413126", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/4946971536_f9a166ddf1_o.jpg", "secret": "0ac94c59b7", "media": "photo", "latitude": "0", "id": "4946971536", "tags": "sports students field football athletics media events pennstate press interview 2009 nittanylions mediaday universityparkcampus studentathletes creditgeoffrushton holubahall"}, {"datetaken": "2009-08-14 03:28:26", "license": "2", "title": "2009 Media Day 008", "text": "", "album_id": "72157625207413126", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4130/4946382427_f6b427153c_o.jpg", "secret": "033759493e", "media": "photo", "latitude": "0", "id": "4946382427", "tags": "sports students field football team athletics media events group pennstate director press information 2009 nittanylions mediaday universityparkcampus studentathletes creditgeoffrushton holubahall briansiegrist"}, {"datetaken": "2009-08-14 03:30:27", "license": "2", "title": "2009 Media Day 009", "text": "", "album_id": "72157625207413126", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/4946972128_189b5398c2_o.jpg", "secret": "88fcbb2950", "media": "photo", "latitude": "0", "id": "4946972128", "tags": "sports field football coach athletics media events pennstate press interview 2009 nittanylions mediaday universityparkcampus jaypaterno creditgeoffrushton holubahall"}, {"datetaken": "2009-08-14 03:43:50", "license": "2", "title": "2009 Media Day 010", "text": "", "album_id": "72157625207413126", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/4946383055_3bc569b1f6_o.jpg", "secret": "a49071e017", "media": "photo", "latitude": "0", "id": "4946383055", "tags": "sports students field football athletics media events pennstate press interview 2009 nittanylions mediaday universityparkcampus studentathletes creditgeoffrushton holubahall"}, {"datetaken": "2009-08-14 03:46:38", "license": "2", "title": "2009 Media Day 011", "text": "", "album_id": "72157625207413126", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/4946383447_439b6054ba_o.jpg", "secret": "c2b5fddacb", "media": "photo", "latitude": "0", "id": "4946383447", "tags": "sports students field football athletics media events pennstate press interview 2009 nittanylions mediaday universityparkcampus studentathletes creditgeoffrushton holubahall"}, {"datetaken": "2009-08-14 03:46:54", "license": "2", "title": "2009 Media Day 012", "text": "", "album_id": "72157625207413126", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/4946972948_6523fbfdd1_o.jpg", "secret": "62d688ca87", "media": "photo", "latitude": "0", "id": "4946972948", "tags": "sports students field football athletics media events pennstate press interview 2009 nittanylions mediaday universityparkcampus studentathletes creditgeoffrushton holubahall"}, {"datetaken": "2010-02-20 16:49:26", "license": "2", "title": "THON 2010- 001", "text": "", "album_id": "72157625207418354", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4946079883_fb33a14a79_o.jpg", "secret": "a5a51c0583", "media": "photo", "latitude": "0", "id": "4946079883", "tags": "students children support dancers dancing events crowd cancer pennstate volunteering ftk fundraising donations 2010 thon brycejordancenter linedance forthekids fourdiamondsfund universityparkcampus philanthrophy creditannemariemountz"}, {"datetaken": "2010-02-20 20:39:41", "license": "2", "title": "THON 2010- 002", "text": "", "album_id": "72157625207418354", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/4946668338_8ebbd139ea_o.jpg", "secret": "7b7b48b329", "media": "photo", "latitude": "0", "id": "4946668338", "tags": "students children support dancers dancing events crowd cancer games pennstate volunteering ftk fundraising donations 2010 thon brycejordancenter forthekids fourdiamondsfund universityparkcampus philanthrophy creditannemariemountz"}, {"datetaken": "2010-02-20 20:49:16", "license": "2", "title": "THON 2010- 003", "text": "", "album_id": "72157625207418354", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/4946668592_afa6e49725_o.jpg", "secret": "ce5503db20", "media": "photo", "latitude": "0", "id": "4946668592", "tags": "water students children support dancers dancing events crowd cancer pennstate volunteering ftk fundraising donations 2010 thon brycejordancenter forthekids fourdiamondsfund universityparkcampus philanthrophy creditannemariemountz"}, {"datetaken": "2010-02-20 21:15:29", "license": "2", "title": "THON 2010- 004", "text": "", "album_id": "72157625207418354", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/4946081337_539baae41e_o.jpg", "secret": "2675801a75", "media": "photo", "latitude": "0", "id": "4946081337", "tags": "students children support dancers dancing events crowd cancer pennstate volunteering ftk fundraising hulahoop donations 2010 thon brycejordancenter jugglingclub forthekids fourdiamondsfund universityparkcampus philanthrophy creditannemariemountz"}, {"datetaken": "2010-02-20 21:23:57", "license": "2", "title": "THON 2010- 005", "text": "", "album_id": "72157625207418354", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4113/4946081691_e06e4c5758_o.jpg", "secret": "5768e33a97", "media": "photo", "latitude": "0", "id": "4946081691", "tags": "students children support dancers dancing mail events crowd cancer pennstate volunteering ftk fundraising donations 2010 thon brycejordancenter forthekids fourdiamondsfund universityparkcampus philanthrophy creditannemariemountz"}, {"datetaken": "2010-02-20 23:00:15", "license": "2", "title": "THON Gymnastics Team Show-006", "text": "", "album_id": "72157625207418354", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4083/4946081945_7a7fe9f5e7_o.jpg", "secret": "7d8d156100", "media": "photo", "latitude": "0", "id": "4946081945", "tags": "sports students children team athletics support dancers dancing events crowd performance cancer competition pennstate gymnastics volunteering split ftk fundraising peprally donations 2010 thon talentshow brycejordancenter forthekids fourdiamondsfund universityparkcampus philanthrophy creditannemariemountz"}, {"datetaken": "2010-02-20 23:16:01", "license": "2", "title": "THON 2010- 007", "text": "", "album_id": "72157625207418354", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/4946670038_675e84772d_o.jpg", "secret": "1998ccbe39", "media": "photo", "latitude": "0", "id": "4946670038", "tags": "show students children football team athletics support dancers dancing events crowd performance cancer entertainment pennstate talent volunteering ftk fundraising peprally donations 2010 thon brycejordancenter forthekids fourdiamondsfund universityparkcampus philanthrophy creditannemariemountz"}, {"datetaken": "2010-02-21 11:06:25", "license": "2", "title": "THON 2010- 008", "text": "", "album_id": "72157625207418354", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4946670580_82f3dbde5b_o.jpg", "secret": "b7942e0bdc", "media": "photo", "latitude": "0", "id": "4946670580", "tags": "students children support dancers dancing events crowd cancer pennstate volunteering ftk fundraising donations 2010 thon bubblegun brycejordancenter forthekids fourdiamondsfund universityparkcampus philanthrophy creditannemariemountz"}, {"datetaken": "2010-02-21 11:17:21", "license": "2", "title": "THON 2010- 009", "text": "", "album_id": "72157625207418354", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/4946671370_b99712b014_o.jpg", "secret": "97731287d2", "media": "photo", "latitude": "0", "id": "4946671370", "tags": "students children support dancers dancing events crowd cancer pennstate volunteering ftk fundraising donations 2010 thon brycejordancenter forthekids fourdiamondsfund universityparkcampus philanthrophy creditannemariemountz"}, {"datetaken": "2010-02-21 13:04:20", "license": "2", "title": "THON 2010- 010", "text": "", "album_id": "72157625207418354", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4146/4946671908_71d4b9c2dc_o.jpg", "secret": "3415554f48", "media": "photo", "latitude": "0", "id": "4946671908", "tags": "family students children support dancers dancing events crowd cancer pennstate volunteering ftk fundraising donations 2010 thon brycejordancenter forthekids fourdiamondsfund familyhour universityparkcampus philanthrophy creditannemariemountz"}, {"datetaken": "2010-02-21 13:30:18", "license": "2", "title": "THON 2010- 011", "text": "", "album_id": "72157625207418354", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4149/4946084359_a637f8326a_o.jpg", "secret": "8e5f262be9", "media": "photo", "latitude": "0", "id": "4946084359", "tags": "family students children support dancers dancing events crowd cancer pennstate volunteering ftk fundraising donations 2010 thon founder brycejordancenter forthekids fourdiamondsfund familyhour universityparkcampus philanthrophy creditannemariemountz charlesmillard"}, {"datetaken": "2010-02-21 16:19:33", "license": "2", "title": "THON 2010- 012", "text": "", "album_id": "72157625207418354", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4946673512_dae9e5897e_o.jpg", "secret": "8884249896", "media": "photo", "latitude": "0", "id": "4946673512", "tags": "students children support dancers dancing events crowd cancer pennstate volunteering total ftk fundraising donations bjc 2010 thon brycejordancenter forthekids fourdiamondsfund universityparkcampus philanthrophy publicinfobjc creditandycolwell"}, {"datetaken": "2003-06-20 22:23:37", "license": "3", "title": "Release Party Pano", "text": "", "album_id": "801340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/36138805_7168f81de3_o.jpg", "secret": "7168f81de3", "media": "photo", "latitude": "0", "id": "36138805", "tags": "barnesandnoble harrypotter crowd panorama montage"}, {"datetaken": "2003-06-20 22:24:48", "license": "3", "title": "Costume Kids", "text": "", "album_id": "801340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/36138894_a3f122d756_o.jpg", "secret": "a3f122d756", "media": "photo", "latitude": "0", "id": "36138894", "tags": "barnesandnoble harrypotter books poitterapparel cloak"}, {"datetaken": "2003-06-20 22:25:19", "license": "3", "title": "Reza", "text": "", "album_id": "801340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/36139030_067193f59d_o.jpg", "secret": "067193f59d", "media": "photo", "latitude": "0", "id": "36139030", "tags": "barnesandnoble harrypotter reza"}, {"datetaken": "2003-06-20 22:26:42", "license": "3", "title": "Bespecled Molls", "text": "", "album_id": "801340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/36139141_6cb8deff6d_o.jpg", "secret": "6cb8deff6d", "media": "photo", "latitude": "0", "id": "36139141", "tags": "barnesandnoble harrypotter molly"}, {"datetaken": "2003-06-20 22:26:52", "license": "3", "title": "The gals", "text": "", "album_id": "801340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/36139271_d504b88e88_o.jpg", "secret": "d504b88e88", "media": "photo", "latitude": "0", "id": "36139271", "tags": "barnesandnoble harrypotter joelle molly books"}, {"datetaken": "2003-06-20 22:35:52", "license": "3", "title": "Joelle & Molly", "text": "", "album_id": "801340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/36139450_57969f533a_o.jpg", "secret": "57969f533a", "media": "photo", "latitude": "0", "id": "36139450", "tags": "barnesandnoble harrypotter joelle molly collage books"}, {"datetaken": "2003-06-20 22:36:55", "license": "3", "title": "Cyndi", "text": "", "album_id": "801340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/36139977_c3b5cc5ee9_o.jpg", "secret": "c3b5cc5ee9", "media": "photo", "latitude": "0", "id": "36139977", "tags": "harrypotter barnesandnoble bwcolor"}, {"datetaken": "2003-06-20 22:46:09", "license": "3", "title": "Crowded B&N", "text": "", "album_id": "801340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/36139708_dec4bbe625_o.jpg", "secret": "dec4bbe625", "media": "photo", "latitude": "0", "id": "36139708", "tags": "barnesandnoble harrypotter crowd"}, {"datetaken": "2003-06-20 22:49:20", "license": "3", "title": "Adam gets a scar", "text": "", "album_id": "801340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/36140302_1f3b852000_o.jpg", "secret": "1f3b852000", "media": "photo", "latitude": "0", "id": "36140302", "tags": "barnesandnoble harrypotter adam lightningbolt balloon hat tattoo"}, {"datetaken": "2003-06-20 22:53:55", "license": "3", "title": "Molly imitates a tin soldier", "text": "", "album_id": "801340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/36139829_452b500665_o.jpg", "secret": "452b500665", "media": "photo", "latitude": "0", "id": "36139829", "tags": "barnesandnoble harrypotter joelle molly"}, {"datetaken": "2003-06-20 22:54:20", "license": "3", "title": "Mighty Adam", "text": "", "album_id": "801340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/36140199_6d7f4e34a4_o.jpg", "secret": "6d7f4e34a4", "media": "photo", "latitude": "0", "id": "36140199", "tags": "barnesandnoble harrypotter adam lightningbolt tattoo"}, {"datetaken": "2003-06-20 23:00:44", "license": "3", "title": "Mmmm coffee", "text": "", "album_id": "801340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/36140402_343f7a468d_o.jpg", "secret": "343f7a468d", "media": "photo", "latitude": "0", "id": "36140402", "tags": "barnesandnoble harrypotter molly starbucks sign bwcolor"}, {"datetaken": "2003-06-20 23:13:38", "license": "3", "title": "Dark Marks", "text": "", "album_id": "801340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/36140543_92e48c3fce_o.jpg", "secret": "92e48c3fce", "media": "photo", "latitude": "0", "id": "36140543", "tags": "barnesandnoble harrypotter molly joelle tattoo"}, {"datetaken": "2003-06-21 00:47:14", "license": "3", "title": "Happy for the Order", "text": "", "album_id": "801340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/36140826_43bbe2b125_o.jpg", "secret": "43bbe2b125", "media": "photo", "latitude": "0", "id": "36140826", "tags": "barnesandnoble harrypotter joelle"}, {"datetaken": "2003-06-21 00:47:26", "license": "3", "title": "Success!", "text": "", "album_id": "801340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/36140676_54bca50e4f_o.jpg", "secret": "54bca50e4f", "media": "photo", "latitude": "0", "id": "36140676", "tags": "barnesandnoble harrypotter molly"}, {"datetaken": "2003-06-21 01:01:13", "license": "3", "title": "Car Reading", "text": "", "album_id": "801340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/36140901_2e2a28e611_o.jpg", "secret": "2e2a28e611", "media": "photo", "latitude": "0", "id": "36140901", "tags": "barnesandnoble harrypotter molly night car book tattoo"}, {"datetaken": "2006-05-06 18:01:07", "license": "1", "title": "Cosplayers", "text": "", "album_id": "72057594128484139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/142408086_7895d2bec9_o.jpg", "secret": "7895d2bec9", "media": "photo", "latitude": "0", "id": "142408086", "tags": "japan cosplay"}, {"datetaken": "2006-05-06 18:01:38", "license": "1", "title": "More cosplayers", "text": "", "album_id": "72057594128484139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/142408389_cbe05c61b9_o.jpg", "secret": "cbe05c61b9", "media": "photo", "latitude": "0", "id": "142408389", "tags": "japan cosplay"}, {"datetaken": "2006-05-06 18:06:00", "license": "1", "title": "Tokyo Dome City", "text": "", "album_id": "72057594128484139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/142408540_494b68128f_o.jpg", "secret": "494b68128f", "media": "photo", "latitude": "0", "id": "142408540", "tags": "japan tokyodome"}, {"datetaken": "2006-05-06 18:31:16", "license": "1", "title": "They pour you the beer you bring", "text": "", "album_id": "72057594128484139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/142408647_dc0d0166d5_o.jpg", "secret": "dc0d0166d5", "media": "photo", "latitude": "0", "id": "142408647", "tags": "japan tokyodome"}, {"datetaken": "2006-05-06 18:47:32", "license": "1", "title": "View of the field", "text": "", "album_id": "72057594128484139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/142408833_df11a31714_o.jpg", "secret": "df11a31714", "media": "photo", "latitude": "0", "id": "142408833", "tags": "japan giants tokyodome"}, {"datetaken": "2006-05-06 20:04:02", "license": "1", "title": "\"Show the Spirit\" \"Over the top\"", "text": "", "album_id": "72057594128484139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/142409086_cc60ca4642_o.jpg", "secret": "cc60ca4642", "media": "photo", "latitude": "0", "id": "142409086", "tags": "japan cheerleaders giants tokyodome"}, {"datetaken": "2006-05-06 20:32:36", "license": "1", "title": "Watching the game", "text": "", "album_id": "72057594128484139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/142409200_7a49e3448c_o.jpg", "secret": "7a49e3448c", "media": "photo", "latitude": "0", "id": "142409200", "tags": "japan giants tokyodome"}, {"datetaken": "2006-05-06 20:39:50", "license": "1", "title": "Crowd view", "text": "", "album_id": "72057594128484139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/142409435_facceb542c_o.jpg", "secret": "facceb542c", "media": "photo", "latitude": "0", "id": "142409435", "tags": "japan crowd tokyodome"}, {"datetaken": "2006-05-06 20:42:34", "license": "1", "title": "Another beer vendor", "text": "", "album_id": "72057594128484139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/142409602_4957362114_o.jpg", "secret": "4957362114", "media": "photo", "latitude": "0", "id": "142409602", "tags": "japan crowd tokyodome"}, {"datetaken": "2006-05-06 20:54:34", "license": "1", "title": "Where did that banner come from?", "text": "", "album_id": "72057594128484139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/142409764_71b610f02e_o.jpg", "secret": "71b610f02e", "media": "photo", "latitude": "0", "id": "142409764", "tags": "japan giants tokyodome"}, {"datetaken": "2006-05-06 21:06:43", "license": "1", "title": "One last vendor", "text": "", "album_id": "72057594128484139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/142409869_3d9a5767ae_o.jpg", "secret": "3d9a5767ae", "media": "photo", "latitude": "0", "id": "142409869", "tags": "japan tokyodome"}, {"datetaken": "2006-06-26 18:42:19", "license": "4", "title": "Kid practice at Midway Stadium", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/55/176018508_d93686cbb8_o.jpg", "secret": "d93686cbb8", "media": "photo", "latitude": "44.972790", "id": "176018508", "tags": "baseball saintpaul minorleague midwaystadium saintpaulsaints"}, {"datetaken": "2006-06-26 18:42:34", "license": "4", "title": "Saints clouds 1", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/75/176018511_182113d1f1_o.jpg", "secret": "182113d1f1", "media": "photo", "latitude": "44.972790", "id": "176018511", "tags": "clouds baseball saintpaul minorleague midwaystadium saintpaulsaints"}, {"datetaken": "2006-06-26 18:52:32", "license": "4", "title": "Saints practicing", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/15/176018512_398987b679_o.jpg", "secret": "398987b679", "media": "photo", "latitude": "44.972790", "id": "176018512", "tags": "baseball saintpaul minorleague midwaystadium saintpaulsaints"}, {"datetaken": "2006-06-26 18:55:16", "license": "4", "title": "Lord", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/73/176018513_300f3e1b72_o.jpg", "secret": "300f3e1b72", "media": "photo", "latitude": "44.972790", "id": "176018513", "tags": "baseball saintpaul minorleague midwaystadium saintpaulsaints"}, {"datetaken": "2006-06-26 18:55:17", "license": "4", "title": "Lord 2", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/48/176018515_9808f4f171_o.jpg", "secret": "9808f4f171", "media": "photo", "latitude": "44.972790", "id": "176018515", "tags": "baseball saintpaul minorleague midwaystadium saintpaulsaints"}, {"datetaken": "2006-06-26 19:00:28", "license": "4", "title": "...And that's my Grand Casino story", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/44/176024524_e5a22d74b3_o.jpg", "secret": "e5a22d74b3", "media": "photo", "latitude": "44.972790", "id": "176024524", "tags": "baseball grandcasino saintpaul minorleague midwaystadium saintpaulsaints"}, {"datetaken": "2006-06-26 19:04:07", "license": "4", "title": "coming out onto the field", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/44/176024528_b51c04b7aa_o.jpg", "secret": "b51c04b7aa", "media": "photo", "latitude": "44.972790", "id": "176024528", "tags": "baseball mascot saintpaul minorleague midwaystadium saintpaulsaints mudonna"}, {"datetaken": "2006-06-26 19:04:45", "license": "4", "title": "Doom!", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/65/176024531_84a6b38c01_o.jpg", "secret": "84a6b38c01", "media": "photo", "latitude": "44.972790", "id": "176024531", "tags": "clouds baseball saintpaul minorleague impendingdoom midwaystadium saintpaulsaints"}, {"datetaken": "2006-06-26 19:37:19", "license": "4", "title": "Stud", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/51/176024534_3a7167a486_o.jpg", "secret": "3a7167a486", "media": "photo", "latitude": "44.972790", "id": "176024534", "tags": "jamie baseball saintpaul minorleague midwaystadium saintpaulsaints"}, {"datetaken": "2006-06-26 20:10:54", "license": "4", "title": "Receding doom", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/74/176024536_26df86a72e_o.jpg", "secret": "26df86a72e", "media": "photo", "latitude": "44.972790", "id": "176024536", "tags": "clouds baseball saintpaul minorleague midwaystadium saintpaulsaints"}, {"datetaken": "2006-06-26 20:14:36", "license": "4", "title": "White top", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/70/176024537_f7ebe1ddf7_o.jpg", "secret": "f7ebe1ddf7", "media": "photo", "latitude": "44.972790", "id": "176024537", "tags": "clouds baseball saintpaul minorleague midwaystadium saintpaulsaints"}, {"datetaken": "2006-06-26 20:21:32", "license": "4", "title": "running in a few points", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/77/176033645_bd6758c481_o.jpg", "secret": "bd6758c481", "media": "photo", "latitude": "44.972790", "id": "176033645", "tags": "baseball saintpaul minorleague midwaystadium saintpaulsaints"}, {"datetaken": "2006-06-26 20:21:44", "license": "4", "title": "Buddha time", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/60/176033647_ef72f5d1fe_o.jpg", "secret": "ef72f5d1fe", "media": "photo", "latitude": "44.972790", "id": "176033647", "tags": "baseball buddha saintpaul scoreboard minorleague midwaystadium saintpaulsaints"}, {"datetaken": "2006-06-26 20:24:30", "license": "4", "title": "The nuttiest fan", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/61/176033650_e33ee06358_o.jpg", "secret": "e33ee06358", "media": "photo", "latitude": "44.972790", "id": "176033650", "tags": "baseball saintpaul scoreboard minorleague midwaystadium saintpaulsaints pearsons"}, {"datetaken": "2006-06-26 20:58:18", "license": "4", "title": "bigfoot", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/75/176033651_c7a7eb20d1_o.jpg", "secret": "c7a7eb20d1", "media": "photo", "latitude": "44.972790", "id": "176033651", "tags": "pink blur baseball mascot saintpaul bigfoot minorleague midwaystadium saintpaulsaints mudonna"}, {"datetaken": "2006-06-26 20:58:49", "license": "4", "title": "TRAIN.", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/69/176033654_defdaf64e0_o.jpg", "secret": "defdaf64e0", "media": "photo", "latitude": "44.972790", "id": "176033654", "tags": "train baseball locomotive sooline saintpaul bnsf scoreboard minorleague midwaystadium saintpaulsaints stpaulsub stpaulsubdivision"}, {"datetaken": "2006-06-26 20:59:43", "license": "4", "title": "Doing her job", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/74/176033656_29a8a3b98a_o.jpg", "secret": "29a8a3b98a", "media": "photo", "latitude": "44.972790", "id": "176033656", "tags": "pink baseball meta mascot saintpaul minorleague midwaystadium saintpaulsaints mudonna"}, {"datetaken": "2006-06-26 21:00:19", "license": "4", "title": "noogie", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/67/176040818_e59c7c3b54_o.jpg", "secret": "e59c7c3b54", "media": "photo", "latitude": "44.972790", "id": "176040818", "tags": "pink baseball mascot saintpaul minorleague midwaystadium noogie saintpaulsaints mudonna"}, {"datetaken": "2006-06-26 21:00:25", "license": "4", "title": "The hat'll be back soon", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/65/176040819_1e4fe07578_o.jpg", "secret": "1e4fe07578", "media": "photo", "latitude": "44.972790", "id": "176040819", "tags": "pink baseball mascot saintpaul minorleague midwaystadium saintpaulsaints mudonna"}, {"datetaken": "2006-06-26 21:00:42", "license": "4", "title": "smooch", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/46/176040822_d61218c09b_o.jpg", "secret": "d61218c09b", "media": "photo", "latitude": "44.972790", "id": "176040822", "tags": "pink baseball mascot saintpaul minorleague midwaystadium saintpaulsaints mudonna"}, {"datetaken": "2006-06-26 21:00:54", "license": "4", "title": "Going deep into general admission", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/39/176040824_ec864d96f6_o.jpg", "secret": "ec864d96f6", "media": "photo", "latitude": "44.972790", "id": "176040824", "tags": "pink baseball mascot saintpaul minorleague midwaystadium saintpaulsaints mudonna"}, {"datetaken": "2006-06-26 21:04:33", "license": "4", "title": "It's almost over", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/60/176040827_5d0cc43247_o.jpg", "secret": "5d0cc43247", "media": "photo", "latitude": "44.972790", "id": "176040827", "tags": "baseball saintpaul scoreboard minorleague midwaystadium saintpaulsaints"}, {"datetaken": "2006-06-26 21:07:25", "license": "4", "title": "Eep", "text": "", "album_id": "72157594178913581", "longitude": "-93.174887", "url_o": "https://farm1.staticflickr.com/60/176040830_61893af3b2_o.jpg", "secret": "61893af3b2", "media": "photo", "latitude": "44.972790", "id": "176040830", "tags": "clouds baseball saintpaul minorleague midwaystadium saintpaulsaints"}, {"datetaken": "2006-08-06 03:22:39", "license": "3", "title": "Luke & Jason", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/210929621_f2cd1f9136_o.jpg", "secret": "f2cd1f9136", "media": "photo", "latitude": "0", "id": "210929621", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-06 03:34:32", "license": "3", "title": "Silent Auction One", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/210929743_6ba025c364_o.jpg", "secret": "6ba025c364", "media": "photo", "latitude": "0", "id": "210929743", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-06 03:36:47", "license": "3", "title": "Silent Auction Two", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/210929866_14fd257ee4_o.jpg", "secret": "14fd257ee4", "media": "photo", "latitude": "0", "id": "210929866", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-06 03:36:55", "license": "3", "title": "Logo On Polo", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/210929988_1dbe71dd5e_o.jpg", "secret": "1dbe71dd5e", "media": "photo", "latitude": "0", "id": "210929988", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-06 04:31:32", "license": "3", "title": "Silent Auction Three", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/210930175_43ad333fec_o.jpg", "secret": "43ad333fec", "media": "photo", "latitude": "0", "id": "210930175", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-06 05:56:36", "license": "3", "title": "Luke Jackson's Welcome", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/210930319_1988fe7c76_o.jpg", "secret": "1988fe7c76", "media": "photo", "latitude": "0", "id": "210930319", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-06 05:57:00", "license": "3", "title": "Luke Jackson Welcome Two", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/210930513_addaf1d94f_o.jpg", "secret": "addaf1d94f", "media": "photo", "latitude": "0", "id": "210930513", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-06 20:47:07", "license": "3", "title": "Hole Signs", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/210930705_e5abe579e9_o.jpg", "secret": "e5abe579e9", "media": "photo", "latitude": "0", "id": "210930705", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-06 21:28:00", "license": "3", "title": "DSCF2046.JPG", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/210930902_31ab74e12f_o.jpg", "secret": "31ab74e12f", "media": "photo", "latitude": "0", "id": "210930902", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-06 21:28:26", "license": "3", "title": "A Hole Sign at Every Hole.", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/210931150_e6c3d74f7b_o.jpg", "secret": "e6c3d74f7b", "media": "photo", "latitude": "0", "id": "210931150", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-06 21:49:32", "license": "3", "title": "That is a BAD Swing", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/210931382_36aec3cc21_o.jpg", "secret": "36aec3cc21", "media": "photo", "latitude": "0", "id": "210931382", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-06 21:50:01", "license": "3", "title": "Bad, Bad, Bad. Dave does it again.", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/210931584_4daf60e119_o.jpg", "secret": "4daf60e119", "media": "photo", "latitude": "0", "id": "210931584", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-07 03:29:42", "license": "3", "title": "Adam Taking A Shot", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/210931823_ee2d00f258_o.jpg", "secret": "ee2d00f258", "media": "photo", "latitude": "0", "id": "210931823", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-07 03:29:55", "license": "3", "title": "The Load", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/210931995_07470cceac_o.jpg", "secret": "07470cceac", "media": "photo", "latitude": "0", "id": "210931995", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-07 03:30:16", "license": "3", "title": "Easy 400 Yarder", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/210932133_af00d5e2cb_o.jpg", "secret": "af00d5e2cb", "media": "photo", "latitude": "0", "id": "210932133", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-07 03:30:45", "license": "3", "title": "Adam Bysouth", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/210932302_05922dedec_o.jpg", "secret": "05922dedec", "media": "photo", "latitude": "0", "id": "210932302", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-07 03:31:46", "license": "3", "title": "Jerry's", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/210932447_e84465e393_o.jpg", "secret": "e84465e393", "media": "photo", "latitude": "0", "id": "210932447", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-07 03:32:58", "license": "3", "title": "Les Schwab", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/210932617_bb5e815a17_o.jpg", "secret": "bb5e815a17", "media": "photo", "latitude": "0", "id": "210932617", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-07 03:43:03", "license": "3", "title": "Hole in One Hondas.", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/210932789_5a7e6ac604_o.jpg", "secret": "5a7e6ac604", "media": "photo", "latitude": "0", "id": "210932789", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-07 03:43:26", "license": "3", "title": "Murphy", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/210932969_3617002ab3_o.jpg", "secret": "3617002ab3", "media": "photo", "latitude": "0", "id": "210932969", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-07 03:49:08", "license": "3", "title": "Horizon", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/210933153_165547bbcd_o.jpg", "secret": "165547bbcd", "media": "photo", "latitude": "0", "id": "210933153", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-07 03:57:50", "license": "3", "title": "Anchor", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/210933369_76ab4d0777_o.jpg", "secret": "76ab4d0777", "media": "photo", "latitude": "0", "id": "210933369", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2006-08-07 06:06:01", "license": "3", "title": "Katy & Dave", "text": "", "album_id": "72157594230490220", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/210929473_05c38cf995_o.jpg", "secret": "05c38cf995", "media": "photo", "latitude": "0", "id": "210929473", "tags": "oregon golf tournament golftournament lukejackson pureblue oregonsports"}, {"datetaken": "2004-05-11 08:14:07", "license": "4", "title": "img_3730", "text": "", "album_id": "72157594260040449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/229273449_19ec5377e7_o.jpg", "secret": "19ec5377e7", "media": "photo", "latitude": "0", "id": "229273449", "tags": "sports events rally cyprus wrc"}, {"datetaken": "2004-05-11 08:14:48", "license": "4", "title": "img_3732", "text": "", "album_id": "72157594260040449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/229275286_0535b6e381_o.jpg", "secret": "0535b6e381", "media": "photo", "latitude": "0", "id": "229275286", "tags": "sports events rally cyprus wrc"}, {"datetaken": "2004-05-11 08:16:38", "license": "4", "title": "img_3736", "text": "", "album_id": "72157594260040449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/229275843_57f7efbe94_o.jpg", "secret": "57f7efbe94", "media": "photo", "latitude": "0", "id": "229275843", "tags": "sports events rally cyprus wrc"}, {"datetaken": "2004-05-11 08:17:57", "license": "4", "title": "img_3738", "text": "", "album_id": "72157594260040449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/229276464_1bc8ff7725_o.jpg", "secret": "1bc8ff7725", "media": "photo", "latitude": "0", "id": "229276464", "tags": "sports events rally cyprus wrc"}, {"datetaken": "2004-05-11 08:20:25", "license": "4", "title": "img_3741", "text": "", "album_id": "72157594260040449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/229277089_2081de5998_o.jpg", "secret": "2081de5998", "media": "photo", "latitude": "0", "id": "229277089", "tags": "sports events rally cyprus wrc"}, {"datetaken": "2004-05-11 08:21:13", "license": "4", "title": "img_3742", "text": "", "album_id": "72157594260040449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/229277652_2b0114e03a_o.jpg", "secret": "2b0114e03a", "media": "photo", "latitude": "0", "id": "229277652", "tags": "sports events rally cyprus wrc"}, {"datetaken": "2004-05-11 08:22:37", "license": "4", "title": "img_3745", "text": "", "album_id": "72157594260040449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/229278339_b932e5b6f1_o.jpg", "secret": "b932e5b6f1", "media": "photo", "latitude": "0", "id": "229278339", "tags": "sports events rally cyprus wrc"}, {"datetaken": "2004-05-11 08:25:06", "license": "4", "title": "img_3746", "text": "", "album_id": "72157594260040449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/229278852_4703412308_o.jpg", "secret": "4703412308", "media": "photo", "latitude": "0", "id": "229278852", "tags": "sports events rally cyprus wrc"}, {"datetaken": "2004-05-11 09:44:59", "license": "4", "title": "img_3754", "text": "", "album_id": "72157594260040449", "longitude": "33.028507", "url_o": "https://farm1.staticflickr.com/59/229279498_8599db924c_o.jpg", "secret": "8599db924c", "media": "photo", "latitude": "34.688274", "id": "229279498", "tags": "sports events rally cyprus wrc"}, {"datetaken": "2004-05-11 09:47:57", "license": "4", "title": "img_3761", "text": "", "album_id": "72157594260040449", "longitude": "33.028507", "url_o": "https://farm1.staticflickr.com/67/229280107_678c2111b1_o.jpg", "secret": "678c2111b1", "media": "photo", "latitude": "34.688274", "id": "229280107", "tags": "sports events rally cyprus wrc"}, {"datetaken": "2004-05-11 09:52:25", "license": "4", "title": "img_3775", "text": "", "album_id": "72157594260040449", "longitude": "33.028507", "url_o": "https://farm1.staticflickr.com/58/229280690_e18e2549e5_o.jpg", "secret": "e18e2549e5", "media": "photo", "latitude": "34.688274", "id": "229280690", "tags": "sports events rally cyprus wrc"}, {"datetaken": "2006-09-22 12:24:29", "license": "4", "title": "img_6389", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/93/249826211_f5403901c6_o.jpg", "secret": "f5403901c6", "media": "photo", "latitude": "34.866214", "id": "249826211", "tags": "cars sport driving events rally cyprus wrc"}, {"datetaken": "2006-09-22 12:27:24", "license": "4", "title": "img_6395", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/86/249826473_7f41f1bf82_o.jpg", "secret": "7f41f1bf82", "media": "photo", "latitude": "34.866214", "id": "249826473", "tags": "cars sport driving events rally cyprus wrc"}, {"datetaken": "2006-09-22 12:27:24", "license": "4", "title": "img_6396", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/80/249826882_5dec245b44_o.jpg", "secret": "5dec245b44", "media": "photo", "latitude": "34.866214", "id": "249826882", "tags": "cars sport driving events rally cyprus wrc"}, {"datetaken": "2006-09-22 12:30:31", "license": "4", "title": "img_6397", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/87/249827228_c155b40368_o.jpg", "secret": "c155b40368", "media": "photo", "latitude": "34.866214", "id": "249827228", "tags": "cars sport driving events rally cyprus wrc"}, {"datetaken": "2006-09-22 12:30:32", "license": "4", "title": "img_6398", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/85/249827440_43a1de0eca_o.jpg", "secret": "43a1de0eca", "media": "photo", "latitude": "34.866214", "id": "249827440", "tags": "cars sport driving events rally cyprus badge wrc"}, {"datetaken": "2006-09-22 12:30:32", "license": "4", "title": "img_6399", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/94/249827698_b2262fcfac_o.jpg", "secret": "b2262fcfac", "media": "photo", "latitude": "34.866214", "id": "249827698", "tags": "cars sport driving events rally cyprus badge wrc"}, {"datetaken": "2006-09-22 12:33:30", "license": "4", "title": "img_6405", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/94/249828023_33af78543d_o.jpg", "secret": "33af78543d", "media": "photo", "latitude": "34.866214", "id": "249828023", "tags": "cars sport driving events rally cyprus wrc"}, {"datetaken": "2006-09-22 12:33:31", "license": "4", "title": "img_6406", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/94/249828289_de7b32a18f_o.jpg", "secret": "de7b32a18f", "media": "photo", "latitude": "34.866214", "id": "249828289", "tags": "cars sport driving events rally cyprus badge wrc"}, {"datetaken": "2006-09-22 12:36:28", "license": "4", "title": "img_6410", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/90/249828792_9a5608d491_o.jpg", "secret": "9a5608d491", "media": "photo", "latitude": "34.866214", "id": "249828792", "tags": "cars sport driving events rally cyprus wrc"}, {"datetaken": "2006-09-22 12:39:25", "license": "4", "title": "Solberg's Subaru", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/88/249829063_065a70ee75_o.jpg", "secret": "065a70ee75", "media": "photo", "latitude": "34.866214", "id": "249829063", "tags": "cars sport driving events rally cyprus badge wrc"}, {"datetaken": "2006-09-22 12:39:25", "license": "4", "title": "img_6414", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/94/249829290_034e03e112_o.jpg", "secret": "034e03e112", "media": "photo", "latitude": "34.866214", "id": "249829290", "tags": "cars sport driving events rally cyprus badge wrc"}, {"datetaken": "2006-09-22 12:39:26", "license": "4", "title": "img_6415", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/90/249829627_dae006f966_o.jpg", "secret": "dae006f966", "media": "photo", "latitude": "34.866214", "id": "249829627", "tags": "cars sport driving events rally cyprus badge wrc"}, {"datetaken": "2006-09-22 12:42:28", "license": "4", "title": "img_6416", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/86/249829914_190024b160_o.jpg", "secret": "190024b160", "media": "photo", "latitude": "34.866214", "id": "249829914", "tags": "cars sport driving events rally cyprus wrc"}, {"datetaken": "2006-09-22 12:42:31", "license": "4", "title": "img_6418", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/83/249830171_8b069c3a03_o.jpg", "secret": "8b069c3a03", "media": "photo", "latitude": "34.866214", "id": "249830171", "tags": "cars sport driving events rally cyprus badge wrc"}, {"datetaken": "2006-09-22 12:42:31", "license": "4", "title": "img_6419", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/84/249830449_eead932bcb_o.jpg", "secret": "eead932bcb", "media": "photo", "latitude": "34.866214", "id": "249830449", "tags": "cars sport driving events rally cyprus badge wrc"}, {"datetaken": "2006-09-22 12:45:28", "license": "4", "title": "img_6422", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/96/249830822_5c9f73f2b0_o.jpg", "secret": "5c9f73f2b0", "media": "photo", "latitude": "34.866214", "id": "249830822", "tags": "cars sport driving events rally cyprus badge wrc"}, {"datetaken": "2006-09-22 12:45:28", "license": "4", "title": "img_6423", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/90/249831147_839cacbdf3_o.jpg", "secret": "839cacbdf3", "media": "photo", "latitude": "34.866214", "id": "249831147", "tags": "cars sport driving events rally cyprus badge wrc"}, {"datetaken": "2006-09-22 12:48:37", "license": "4", "title": "img_6424", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/89/249831365_4e0457f252_o.jpg", "secret": "4e0457f252", "media": "photo", "latitude": "34.866214", "id": "249831365", "tags": "cars sport driving events rally cyprus badge wrc"}, {"datetaken": "2006-09-22 12:48:38", "license": "4", "title": "img_6426", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/93/249831578_3a69ccc05c_o.jpg", "secret": "3a69ccc05c", "media": "photo", "latitude": "34.866214", "id": "249831578", "tags": "cars sport driving events rally cyprus wrc"}, {"datetaken": "2006-09-22 12:48:38", "license": "4", "title": "img_6427", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/80/249831792_e279aca2c9_o.jpg", "secret": "e279aca2c9", "media": "photo", "latitude": "34.866214", "id": "249831792", "tags": "cars sport driving events rally cyprus wrc"}, {"datetaken": "2006-09-22 12:51:33", "license": "4", "title": "img_6431", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/95/249832090_ddf4cc0eae_o.jpg", "secret": "ddf4cc0eae", "media": "photo", "latitude": "34.866214", "id": "249832090", "tags": "cars sport driving events rally cyprus badge wrc"}, {"datetaken": "2006-09-22 12:51:34", "license": "4", "title": "img_6432", "text": "", "album_id": "72157594295140238", "longitude": "32.948598", "url_o": "https://farm1.staticflickr.com/94/249832472_3c3266c365_o.jpg", "secret": "3c3266c365", "media": "photo", "latitude": "34.866214", "id": "249832472", "tags": "cars sport driving events rally cyprus badge wrc"}, {"datetaken": "2007-03-09 23:40:34", "license": "2", "title": "Focus", "text": "", "album_id": "72157594583357775", "longitude": "-96.320196", "url_o": "https://farm1.staticflickr.com/180/418262142_c1671aa144_o.jpg", "secret": "a0e2670132", "media": "photo", "latitude": "41.018133", "id": "418262142", "tags": "nebraska nebraskaflickr upcoming:event=143902 airandspacemuseummuseum"}, {"datetaken": "2007-03-09 23:48:14", "license": "2", "title": "F4 Phantom", "text": "", "album_id": "72157594583357775", "longitude": "-96.320469", "url_o": "https://farm1.staticflickr.com/128/418264528_631deaeca3_o.jpg", "secret": "552baff133", "media": "photo", "latitude": "41.018295", "id": "418264528", "tags": "nebraska jet phantom f4phantom nebraskaflickr upcoming:event=143902 airandspacemuseummuseum"}, {"datetaken": "2007-03-09 23:59:53", "license": "2", "title": "", "text": "", "album_id": "72157594583357775", "longitude": "-96.320469", "url_o": "https://farm1.staticflickr.com/183/418267215_c2b84e5f6b_o.jpg", "secret": "b660e374e5", "media": "photo", "latitude": "41.018295", "id": "418267215", "tags": "nebraska nebraskaflickr upcoming:event=143902 airandspacemuseummuseum"}, {"datetaken": "2007-03-10 00:10:24", "license": "2", "title": "Thank-you taxpayers", "text": "", "album_id": "72157594583357775", "longitude": "-96.319740", "url_o": "https://farm1.staticflickr.com/186/418269284_7f7eafee55_o.jpg", "secret": "6072134ae2", "media": "photo", "latitude": "41.018501", "id": "418269284", "tags": "nebraska tire sr71 nebraskaflickr upcoming:event=143902 airandspacemuseummuseum sr71tire"}, {"datetaken": "2007-03-10 00:11:33", "license": "2", "title": "389", "text": "", "album_id": "72157594583357775", "longitude": "-96.319740", "url_o": "https://farm1.staticflickr.com/152/418271779_b201f0c9c4_o.jpg", "secret": "5a49e27b88", "media": "photo", "latitude": "41.018501", "id": "418271779", "tags": "nebraska nebraskaflickr upcoming:event=143902 airandspacemuseummuseum"}, {"datetaken": "2007-03-10 00:18:48", "license": "2", "title": "", "text": "", "album_id": "72157594583357775", "longitude": "-96.319740", "url_o": "https://farm1.staticflickr.com/175/418338045_e2dc7faa4b_o.jpg", "secret": "23722c32a8", "media": "photo", "latitude": "41.018501", "id": "418338045", "tags": "nebraska nebraskaflickr upcoming:event=143902"}, {"datetaken": "2007-03-10 00:19:57", "license": "2", "title": "", "text": "", "album_id": "72157594583357775", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/418274887_25ed5b4f60_o.jpg", "secret": "b2772031c5", "media": "photo", "latitude": "0", "id": "418274887", "tags": "nebraska nebraskaflickr upcoming:event=143902 airandspacemuseummuseum"}, {"datetaken": "2007-03-10 00:23:56", "license": "2", "title": "", "text": "", "album_id": "72157594583357775", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/418277508_d798e59e66_o.jpg", "secret": "4af026cdbe", "media": "photo", "latitude": "0", "id": "418277508", "tags": "nebraska nebraskaflickr upcoming:event=143902 airandspacemuseummuseum"}, {"datetaken": "2007-03-10 00:24:10", "license": "2", "title": "", "text": "", "album_id": "72157594583357775", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/418280382_34f29fe22f_o.jpg", "secret": "f9b50b38f1", "media": "photo", "latitude": "0", "id": "418280382", "tags": "nebraska xf85 nebraskaflickr upcoming:event=143902 airandspacemuseummuseum"}, {"datetaken": "2007-03-10 00:24:22", "license": "2", "title": "", "text": "", "album_id": "72157594583357775", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/418286646_e130865667_o.jpg", "secret": "f78731b245", "media": "photo", "latitude": "0", "id": "418286646", "tags": "lomo nebraska nebraskaflickr upcoming:event=143902 airandspacemuseummuseum"}, {"datetaken": "2007-03-10 00:27:59", "license": "2", "title": "", "text": "", "album_id": "72157594583357775", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/418283157_3429d2d4a9_o.jpg", "secret": "c6a536a90c", "media": "photo", "latitude": "0", "id": "418283157", "tags": "nebraska nebraskaflickr upcoming:event=143902 airandspacemuseummuseum"}, {"datetaken": "2007-03-10 00:33:22", "license": "2", "title": "Lunch", "text": "", "album_id": "72157594583357775", "longitude": "0", "url_o": "https://farm1.staticflickr.com/169/418289712_97a61b22d4_o.jpg", "secret": "c0f60b600c", "media": "photo", "latitude": "0", "id": "418289712", "tags": "nebraska nebraskaflickr upcoming:event=143902 airandspacemuseummuseum"}, {"datetaken": "2007-03-10 00:38:16", "license": "2", "title": "", "text": "", "album_id": "72157594583357775", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/418292251_e7e926211c_o.jpg", "secret": "5a4ec920e8", "media": "photo", "latitude": "0", "id": "418292251", "tags": "nebraska nebraskaflickr upcoming:event=143902 airandspacemuseummuseum"}, {"datetaken": "2007-03-10 00:40:11", "license": "2", "title": "Scarecrow Caption", "text": "", "album_id": "72157594583357775", "longitude": "-96.319622", "url_o": "https://farm1.staticflickr.com/177/418294348_49150118e7_o.jpg", "secret": "26f8f1d86d", "media": "photo", "latitude": "41.018432", "id": "418294348", "tags": "nebraska nebraskaflickr upcoming:event=143902 airandspacemuseummuseum"}, {"datetaken": "2007-03-10 00:52:16", "license": "2", "title": "Me", "text": "", "album_id": "72157594583357775", "longitude": "-96.320609", "url_o": "https://farm1.staticflickr.com/172/418296454_f013580ebc_o.jpg", "secret": "ff1b394051", "media": "photo", "latitude": "41.017388", "id": "418296454", "tags": "nebraska nebraskaflickr upcoming:event=143902 airandspacemuseummuseum"}, {"datetaken": "2007-03-10 00:53:22", "license": "2", "title": "Missile Control", "text": "", "album_id": "72157594583357775", "longitude": "-96.320866", "url_o": "https://farm1.staticflickr.com/129/418298928_22bee0efe0_o.jpg", "secret": "0ace754b43", "media": "photo", "latitude": "41.017344", "id": "418298928", "tags": "nebraska nebraskaflickr upcoming:event=143902 airandspacemuseummuseum"}, {"datetaken": "2007-03-10 01:09:11", "license": "2", "title": "", "text": "", "album_id": "72157594583357775", "longitude": "-96.321006", "url_o": "https://farm1.staticflickr.com/168/418303725_53ddabf5c4_o.jpg", "secret": "49ed1fd2aa", "media": "photo", "latitude": "41.017251", "id": "418303725", "tags": "nebraska nebraskaflickr upcoming:event=143902 airandspacemuseummuseum"}, {"datetaken": "2007-03-10 01:11:40", "license": "2", "title": "Snoopy?", "text": "", "album_id": "72157594583357775", "longitude": "-96.320925", "url_o": "https://farm1.staticflickr.com/166/418301448_70e5a70611_o.jpg", "secret": "c6b5c29ae3", "media": "photo", "latitude": "41.017858", "id": "418301448", "tags": "nebraska nebraskaflickr upcoming:event=143902 airandspacemuseummuseum"}, {"datetaken": "2007-03-10 01:24:12", "license": "2", "title": "Dance Dance Revolution", "text": "", "album_id": "72157594583357775", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/418313112_719b15db77_o.jpg", "secret": "3a71effb3d", "media": "photo", "latitude": "0", "id": "418313112", "tags": "nebraskaflickr upcoming:event=143902"}, {"datetaken": "2007-03-10 01:37:13", "license": "2", "title": "", "text": "", "album_id": "72157594583357775", "longitude": "-96.319788", "url_o": "https://farm1.staticflickr.com/159/418341214_d29877a443_o.jpg", "secret": "addbc91e4b", "media": "photo", "latitude": "41.017728", "id": "418341214", "tags": "nebraska rocket hdr nebraskaflickr upcoming:event=143902"}, {"datetaken": "2007-03-10 16:50:08", "license": "2", "title": "", "text": "", "album_id": "72157594583357775", "longitude": "-96.319788", "url_o": "https://farm1.staticflickr.com/127/418332054_1095f60888_o.jpg", "secret": "7c5b1fe119", "media": "photo", "latitude": "41.017728", "id": "418332054", "tags": "nebraska rocket nebraskaflickr upcoming:event=143902"}, {"datetaken": "2007-03-10 16:58:25", "license": "2", "title": "", "text": "", "album_id": "72157594583357775", "longitude": "-96.320469", "url_o": "https://farm1.staticflickr.com/148/418329894_985306dd9f_o.jpg", "secret": "8a789006c2", "media": "photo", "latitude": "41.018072", "id": "418329894", "tags": "hdr photomatix nebraskaflickr upcoming:event=143902"}, {"datetaken": "2007-03-11 19:49:04", "license": "2", "title": "SR-71", "text": "", "album_id": "72157594583357775", "longitude": "-96.320196", "url_o": "https://farm1.staticflickr.com/148/418321595_2a82d92405_o.jpg", "secret": "cfabeef551", "media": "photo", "latitude": "41.018133", "id": "418321595", "tags": "hdr sr71 nebraskaflickr upcoming:event=143902"}, {"datetaken": "2007-03-11 19:52:54", "license": "2", "title": "SR-71 Cockpit", "text": "", "album_id": "72157594583357775", "longitude": "-96.320196", "url_o": "https://farm1.staticflickr.com/127/418230892_e8407c5991_o.jpg", "secret": "20ad4f748f", "media": "photo", "latitude": "41.018133", "id": "418230892", "tags": "nebraska sr71 nebraskaflickr upcoming:event=143902"}, {"datetaken": "2007-03-11 19:58:13", "license": "2", "title": "", "text": "", "album_id": "72157594583357775", "longitude": "-96.319788", "url_o": "https://farm1.staticflickr.com/151/418324525_c6033d1ab9_o.jpg", "secret": "658660d90e", "media": "photo", "latitude": "41.017728", "id": "418324525", "tags": "rocket nebraskaflickr upcoming:event=143902"}, {"datetaken": "2007-03-11 20:03:02", "license": "2", "title": "Space & Beyond", "text": "", "album_id": "72157594583357775", "longitude": "-96.319788", "url_o": "https://farm1.staticflickr.com/171/418233697_6660696533_o.jpg", "secret": "3112a00dcc", "media": "photo", "latitude": "41.017728", "id": "418233697", "tags": "rocket nebraskaflickr upcoming:event=143902"}, {"datetaken": "2007-03-11 20:07:02", "license": "2", "title": "Air & Space Museum", "text": "", "album_id": "72157594583357775", "longitude": "-96.320298", "url_o": "https://farm1.staticflickr.com/132/418236442_0595fd66ec_o.jpg", "secret": "8b6e3b0d0d", "media": "photo", "latitude": "41.017809", "id": "418236442", "tags": "museum nebraska strategicaircommand nebraskaflickr upcoming:event=143902"}, {"datetaken": "2008-04-05 02:22:38", "license": "1", "title": "... MY! ...", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2414/2391016512_10cda2582b_o.jpg", "secret": "6da2f2b78b", "media": "photo", "latitude": "0", "id": "2391016512", "tags": ""}, {"datetaken": "2008-04-05 02:23:36", "license": "1", "title": "While Crystal fell asleep.", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3149/2391015950_b91a79ea2a_o.jpg", "secret": "2c4b05b3f9", "media": "photo", "latitude": "0", "id": "2391015950", "tags": ""}, {"datetaken": "2008-04-05 02:23:42", "license": "1", "title": "Debbie turned into an NBA freak", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3211/2390183607_5f3c0fc3c0_o.jpg", "secret": "3a63b1e016", "media": "photo", "latitude": "0", "id": "2390183607", "tags": ""}, {"datetaken": "2008-04-05 02:26:17", "license": "1", "title": "... NOT! ...", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2002/2391016650_61fdd48eb1_o.jpg", "secret": "b2546c6ca1", "media": "photo", "latitude": "0", "id": "2391016650", "tags": ""}, {"datetaken": "2008-04-05 02:27:55", "license": "1", "title": "... and I just want you to know ...", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2356/2391016780_d431eb0333_o.jpg", "secret": "eb0a533d20", "media": "photo", "latitude": "0", "id": "2391016780", "tags": ""}, {"datetaken": "2008-04-05 02:29:10", "license": "1", "title": "It was a hard day for the Cav's ...", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2085/2390184517_22eca57766_o.jpg", "secret": "39b1cb6a0b", "media": "photo", "latitude": "0", "id": "2390184517", "tags": ""}, {"datetaken": "2008-04-05 02:31:21", "license": "1", "title": "... how sad. A murderous mom. Who also manages my apartment complex.", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3237/2390184621_b740a77910_o.jpg", "secret": "c226484dfc", "media": "photo", "latitude": "0", "id": "2390184621", "tags": ""}, {"datetaken": "2008-04-05 02:31:26", "license": "1", "title": "... Crystal choked her daughter Kaitlyn for defending me ...", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2006/2391017218_67619dd2f1_o.jpg", "secret": "958acd0d14", "media": "photo", "latitude": "0", "id": "2391017218", "tags": ""}, {"datetaken": "2008-04-05 03:08:38", "license": "1", "title": "... so they gave me a \"NO RON\" at sports events onion ring.", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2286/2390184847_4789b589f9_o.jpg", "secret": "32f752d2fa", "media": "photo", "latitude": "0", "id": "2390184847", "tags": ""}, {"datetaken": "2008-04-05 03:13:36", "license": "1", "title": "... they realized the problem ...", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3271/2391017732_39bfdde5a9_o.jpg", "secret": "a23e86ab9c", "media": "photo", "latitude": "0", "id": "2391017732", "tags": ""}, {"datetaken": "2008-04-05 03:40:21", "license": "1", "title": "... every time I show up ...", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2241/2391018132_b6de228c43_o.jpg", "secret": "138ea7819d", "media": "photo", "latitude": "0", "id": "2391018132", "tags": ""}, {"datetaken": "2008-04-05 03:40:32", "license": "1", "title": "... cause their teams lose ...", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3052/2390185835_1dcc6a3398_o.jpg", "secret": "832763c292", "media": "photo", "latitude": "0", "id": "2390185835", "tags": ""}, {"datetaken": "2008-04-05 04:01:56", "license": "1", "title": "... are starting to blame me ...", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2147/2390186005_23295a52c4_o.jpg", "secret": "da032409fd", "media": "photo", "latitude": "0", "id": "2390186005", "tags": ""}, {"datetaken": "2008-04-05 04:02:29", "license": "1", "title": "... but my friends ...", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2224/2390186251_db9d560801_o.jpg", "secret": "4d8c7e1e5f", "media": "photo", "latitude": "0", "id": "2390186251", "tags": ""}, {"datetaken": "2008-04-05 04:04:57", "license": "1", "title": "... and can't stop loving on me ...", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2333/2390186399_a98a18fe04_o.jpg", "secret": "4434278ae8", "media": "photo", "latitude": "0", "id": "2390186399", "tags": ""}, {"datetaken": "2008-04-05 04:05:06", "license": "1", "title": "... my wife loves me for it ...", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2280/2391018918_56ee354ac3_o.jpg", "secret": "2c46cd1382", "media": "photo", "latitude": "0", "id": "2391018918", "tags": ""}, {"datetaken": "2008-04-05 04:16:21", "license": "1", "title": "... to Cleveland sports ...", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2176/2390186931_8c72e7d292_o.jpg", "secret": "7bb9977b73", "media": "photo", "latitude": "0", "id": "2390186931", "tags": ""}, {"datetaken": "2008-04-05 04:16:30", "license": "1", "title": "I am death ...", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3176/2391019514_2babc54770_o.jpg", "secret": "0b98b6b835", "media": "photo", "latitude": "0", "id": "2391019514", "tags": ""}, {"datetaken": "2008-04-05 04:16:53", "license": "1", "title": "... FAULT!", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3160/2391016112_963375877d_o.jpg", "secret": "14f1b46b7b", "media": "photo", "latitude": "0", "id": "2391016112", "tags": ""}, {"datetaken": "2008-04-05 04:17:10", "license": "1", "title": "... FAULT!", "text": "", "album_id": "72157604403044021", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2206/2391016252_195ee1cae9_o.jpg", "secret": "23b68ba4fa", "media": "photo", "latitude": "0", "id": "2391016252", "tags": ""}, {"datetaken": "2008-04-06 10:40:33", "license": "1", "title": "Cloudy Sydney CBD", "text": "", "album_id": "72157604409060777", "longitude": "151.220927", "url_o": "https://farm3.staticflickr.com/2274/2392180868_0ca48e12fc_o.jpg", "secret": "da67a3e153", "media": "photo", "latitude": "-33.861302", "id": "2392180868", "tags": "cloud storm skyline clouds flying ramp cloudy action sydney machine creation cbd extremesports redbull redbullflugtag centrepoint flugtag amptower mrsmacquarieschair"}, {"datetaken": "2008-04-06 11:50:38", "license": "1", "title": "Aerio Kamikazes", "text": "", "album_id": "72157604409060777", "longitude": "151.220927", "url_o": "https://farm4.staticflickr.com/3193/2391349995_10f8fd60e9_o.jpg", "secret": "1ca40ce48a", "media": "photo", "latitude": "-33.861302", "id": "2391349995", "tags": "flying ramp action sydney machine creation extremesports redbull redbullflugtag flugtag mrsmacquarieschair"}, {"datetaken": "2008-04-06 12:03:05", "license": "1", "title": "Prepping for launch", "text": "", "album_id": "72157604409060777", "longitude": "151.220927", "url_o": "https://farm3.staticflickr.com/2313/2391355471_7aba21af25_o.jpg", "secret": "c5ee9df4e8", "media": "photo", "latitude": "-33.861302", "id": "2391355471", "tags": "flying ramp action sydney machine creation extremesports redbull redbullflugtag flugtag mrsmacquarieschair"}, {"datetaken": "2008-04-06 12:03:11", "license": "1", "title": "Not so lucky", "text": "", "album_id": "72157604409060777", "longitude": "151.220927", "url_o": "https://farm3.staticflickr.com/2109/2392193422_e5e3b2f871_o.jpg", "secret": "1f0ba1916c", "media": "photo", "latitude": "-33.861302", "id": "2392193422", "tags": "fall flying ramp lego action sydney machine creation extremesports redbull redbullflugtag flugtag fail mrsmacquarieschair epicfail"}, {"datetaken": "2008-04-06 12:03:13", "license": "1", "title": "Take off", "text": "", "album_id": "72157604409060777", "longitude": "151.220927", "url_o": "https://farm3.staticflickr.com/2405/2392198790_71b9033fc8_o.jpg", "secret": "d78e62f030", "media": "photo", "latitude": "-33.861302", "id": "2392198790", "tags": "fly flying ramp action sydney machine creation extremesports takeoff redbull redbullflugtag flugtag mrsmacquarieschair"}, {"datetaken": "2008-04-06 12:10:28", "license": "1", "title": "Takeoff Ramp", "text": "", "album_id": "72157604409060777", "longitude": "151.220927", "url_o": "https://farm3.staticflickr.com/2269/2392204962_09ce71c840_o.jpg", "secret": "b64002a739", "media": "photo", "latitude": "-33.861302", "id": "2392204962", "tags": "flying ramp action sydney machine creation extremesports redbull redbullflugtag flugtag mrsmacquarieschair"}, {"datetaken": "2008-04-06 12:32:42", "license": "1", "title": "Thunderbirds", "text": "", "album_id": "72157604409060777", "longitude": "151.220927", "url_o": "https://farm3.staticflickr.com/2136/2392210682_0a36e2cc3a_o.jpg", "secret": "525856df31", "media": "photo", "latitude": "-33.861302", "id": "2392210682", "tags": "flying ramp action sydney machine creation extremesports redbull redbullflugtag flugtag mrsmacquarieschair"}, {"datetaken": "2008-04-06 12:32:43", "license": "1", "title": "CRASH!", "text": "", "album_id": "72157604409060777", "longitude": "151.220927", "url_o": "https://farm4.staticflickr.com/3161/2392214160_a65ce76f08_o.jpg", "secret": "30a0eda5ac", "media": "photo", "latitude": "-33.861302", "id": "2392214160", "tags": "ouch flying ramp action crash sydney machine creation extremesports destroyed redbull redbullflugtag flugtag fail mrsmacquarieschair nosedive"}, {"datetaken": "2008-04-06 12:38:45", "license": "1", "title": "Double Plugger", "text": "", "album_id": "72157604409060777", "longitude": "151.220927", "url_o": "https://farm4.staticflickr.com/3131/2392216698_78e9ed4af0_o.jpg", "secret": "7ab9df5e0e", "media": "photo", "latitude": "-33.861302", "id": "2392216698", "tags": "flying ramp action sydney machine creation extremesports redbull redbullflugtag flugtag mrsmacquarieschair"}, {"datetaken": "2008-04-06 12:38:51", "license": "1", "title": "The Flying Thong", "text": "", "album_id": "72157604409060777", "longitude": "151.220927", "url_o": "https://farm4.staticflickr.com/3023/2392221830_b0701bec11_o.jpg", "secret": "7b6805e674", "media": "photo", "latitude": "-33.861302", "id": "2392221830", "tags": "flying crazy jump ramp action sydney machine flipflop creation thong extremesports aussie airborne leap redbull sandal redbullflugtag flugtag mrsmacquarieschair"}, {"datetaken": "2008-04-06 12:38:52", "license": "1", "title": "Back flip!", "text": "", "album_id": "72157604409060777", "longitude": "151.220927", "url_o": "https://farm3.staticflickr.com/2020/2392228136_dea57e5178_o.jpg", "secret": "6192550156", "media": "photo", "latitude": "-33.861302", "id": "2392228136", "tags": "flying ramp action sydney machine creation extremesports redbull redbullflugtag flugtag mrsmacquarieschair"}, {"datetaken": "2008-04-06 12:44:58", "license": "1", "title": "Sam Becomes a Man", "text": "", "album_id": "72157604409060777", "longitude": "151.220927", "url_o": "https://farm3.staticflickr.com/2120/2392234560_8b80c80303_o.jpg", "secret": "dee5fa5251", "media": "photo", "latitude": "-33.861302", "id": "2392234560", "tags": "flying ramp action sydney machine creation extremesports redbull redbullflugtag flugtag mrsmacquarieschair"}, {"datetaken": "2008-04-06 13:01:28", "license": "1", "title": "FAIL!", "text": "", "album_id": "72157604409060777", "longitude": "151.220927", "url_o": "https://farm4.staticflickr.com/3028/2392240432_52bc17a559_o.jpg", "secret": "9e61a231c3", "media": "photo", "latitude": "-33.861302", "id": "2392240432", "tags": "plane flying ramp action crash sydney machine creation extremesports redbull redbullflugtag flugtag fail mrsmacquarieschair epicfail"}, {"datetaken": "2008-04-06 13:10:49", "license": "1", "title": "Acme Rocket", "text": "", "album_id": "72157604409060777", "longitude": "151.220927", "url_o": "https://farm3.staticflickr.com/2083/2391415579_2dcbaf21ff_o.jpg", "secret": "11d7521a68", "media": "photo", "latitude": "-33.861302", "id": "2391415579", "tags": "coyote plane flying ramp action acme sydney machine creation rocket extremesports redbull redbullflugtag roadrunner flugtag looneytunes mrsmacquarieschair"}, {"datetaken": "2008-04-06 13:10:50", "license": "1", "title": "Flying Rocket", "text": "", "album_id": "72157604409060777", "longitude": "151.220927", "url_o": "https://farm3.staticflickr.com/2261/2392248612_25b2972309_o.jpg", "secret": "599b5be2d1", "media": "photo", "latitude": "-33.861302", "id": "2392248612", "tags": "coyote fly flying ramp action acme sydney machine creation rocket extremesports redbull redbullflugtag flugtag looneytunes mrsmacquarieschair"}, {"datetaken": "2008-04-06 13:15:16", "license": "1", "title": "Redbull Flugtag Event", "text": "", "album_id": "72157604409060777", "longitude": "151.220927", "url_o": "https://farm4.staticflickr.com/3240/2391423651_de96733b9f_o.jpg", "secret": "9fc4019fd8", "media": "photo", "latitude": "-33.861302", "id": "2391423651", "tags": "flying ramp action sydney machine creation extremesports redbull redbullflugtag flugtag mrsmacquarieschair"}, {"datetaken": "2008-04-06 13:17:11", "license": "1", "title": "Flying Pigs", "text": "", "album_id": "72157604409060777", "longitude": "151.220927", "url_o": "https://farm3.staticflickr.com/2297/2392257032_ef4c660ff6_o.jpg", "secret": "c811092356", "media": "photo", "latitude": "-33.861302", "id": "2392257032", "tags": "fly flying ramp action crash sydney machine creation pigs extremesports redbull redbullflugtag flugtag flyingpigs mrsmacquarieschair"}, {"datetaken": "2011-04-10 11:34:56", "license": "1", "title": "wrxatlanta_spring_install_day-001", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5183/5608810444_38deecbf20_o.jpg", "secret": "3ef3bf2b2b", "media": "photo", "latitude": "0", "id": "5608810444", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 11:35:32", "license": "1", "title": "wrxatlanta_spring_install_day-002", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5304/5608810540_b1f598f680_o.jpg", "secret": "7b791cd80b", "media": "photo", "latitude": "0", "id": "5608810540", "tags": "blue white cars car club silver wagon wheels grill event turbo hamburger subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 11:36:27", "license": "1", "title": "wrxatlanta_spring_install_day-003", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5109/5608227607_967b5637f4_o.jpg", "secret": "69be54f477", "media": "photo", "latitude": "0", "id": "5608227607", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 11:44:17", "license": "1", "title": "wrxatlanta_spring_install_day-004", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5187/5608810738_d980034fae_o.jpg", "secret": "3dd6e2a60a", "media": "photo", "latitude": "0", "id": "5608810738", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 12:15:28", "license": "1", "title": "wrxatlanta_spring_install_day-005", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5223/5608810840_28090ab3d0_o.jpg", "secret": "7819ac82f6", "media": "photo", "latitude": "0", "id": "5608810840", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 12:16:25", "license": "1", "title": "wrxatlanta_spring_install_day-006", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5102/5608810880_1042f15cc5_o.jpg", "secret": "b3364c8f51", "media": "photo", "latitude": "0", "id": "5608810880", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 12:17:39", "license": "1", "title": "wrxatlanta_spring_install_day-007", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5104/5608227923_9958babab2_o.jpg", "secret": "c214c82b72", "media": "photo", "latitude": "0", "id": "5608227923", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 12:18:06", "license": "1", "title": "wrxatlanta_spring_install_day-029", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5143/5609154223_f5c5a3b5cd_o.jpg", "secret": "828a767087", "media": "photo", "latitude": "0", "id": "5609154223", "tags": "blue white cars car club silver wagon wheels grill turbo flush grilling rims impreza saab legacy cookout motorsport sportcar carclub saabaru 4touge"}, {"datetaken": "2011-04-10 12:21:12", "license": "1", "title": "wrxatlanta_spring_install_day-008", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5141/5608227987_ef09cc1b6e_o.jpg", "secret": "4fbd76aa4e", "media": "photo", "latitude": "0", "id": "5608227987", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 12:21:37", "license": "1", "title": "wrxatlanta_spring_install_day-009", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5230/5608228055_7e8ded0583_o.jpg", "secret": "c1969a0b20", "media": "photo", "latitude": "0", "id": "5608228055", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 12:39:53", "license": "1", "title": "wrxatlanta_spring_install_day-010", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5103/5608811172_9819fd3a69_o.jpg", "secret": "550da8e06f", "media": "photo", "latitude": "0", "id": "5608811172", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 12:44:49", "license": "1", "title": "wrxatlanta_spring_install_day-011", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5108/5608228191_d0759f08c7_o.jpg", "secret": "fa5f81d395", "media": "photo", "latitude": "0", "id": "5608228191", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub 2011 saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 12:45:22", "license": "1", "title": "wrxatlanta_spring_install_day-012", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5229/5608811320_66ef776cf0_o.jpg", "secret": "af321e6fec", "media": "photo", "latitude": "0", "id": "5608811320", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 12:47:38", "license": "1", "title": "wrxatlanta_spring_install_day-013", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5021/5608228321_e5a259dd1a_o.jpg", "secret": "b43a194f3c", "media": "photo", "latitude": "0", "id": "5608228321", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 12:48:42", "license": "1", "title": "wrxatlanta_spring_install_day-014", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4113/5608228353_8393e82f3c_o.jpg", "secret": "d94d753a93", "media": "photo", "latitude": "0", "id": "5608228353", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 12:50:13", "license": "1", "title": "wrxatlanta_spring_install_day-030", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5267/5609154291_5022e057e5_o.jpg", "secret": "085b41a21b", "media": "photo", "latitude": "0", "id": "5609154291", "tags": "blue white cars car club silver wagon wheels grill turbo flush grilling rims impreza saab legacy cookout motorsport sportcar carclub saabaru 4touge"}, {"datetaken": "2011-04-10 12:50:58", "license": "1", "title": "wrxatlanta_spring_install_day-015", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5265/5608811492_f51eaf4590_o.jpg", "secret": "98f51eb6b5", "media": "photo", "latitude": "0", "id": "5608811492", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 12:51:20", "license": "1", "title": "wrxatlanta_spring_install_day-016", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5107/5608811528_14eca79367_o.jpg", "secret": "a8b8c36c9b", "media": "photo", "latitude": "0", "id": "5608811528", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 12:51:28", "license": "1", "title": "wrxatlanta_spring_install_day-017", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5185/5608811612_ffffbf6a65_o.jpg", "secret": "eb60f840b4", "media": "photo", "latitude": "0", "id": "5608811612", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 12:52:08", "license": "1", "title": "wrxatlanta_spring_install_day-018", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5228/5608811724_12eea54812_o.jpg", "secret": "c14e4b62fc", "media": "photo", "latitude": "0", "id": "5608811724", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 12:53:06", "license": "1", "title": "wrxatlanta_spring_install_day-019", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5225/5608228759_6c1828e755_o.jpg", "secret": "bb03c903c4", "media": "photo", "latitude": "0", "id": "5608228759", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 12:53:38", "license": "1", "title": "wrxatlanta_spring_install_day-020", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5187/5608811948_f3c1d0b5f9_o.jpg", "secret": "f804ab6163", "media": "photo", "latitude": "0", "id": "5608811948", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 13:02:33", "license": "1", "title": "wrxatlanta_spring_install_day-021", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/5608228963_b198ab9250_o.jpg", "secret": "cfb1287bd1", "media": "photo", "latitude": "0", "id": "5608228963", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar wrb carclub worldrallyblue saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 13:14:36", "license": "1", "title": "wrxatlanta_spring_install_day-022", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5105/5608812090_ffde705053_o.jpg", "secret": "a9e3300ec4", "media": "photo", "latitude": "0", "id": "5608812090", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 13:14:59", "license": "1", "title": "wrxatlanta_spring_install_day-024", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/5608812340_cd725881b8_o.jpg", "secret": "bffdbf3eef", "media": "photo", "latitude": "0", "id": "5608812340", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 13:39:25", "license": "1", "title": "wrxatlanta_spring_install_day-025", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5066/5608229331_0985cb6879_o.jpg", "secret": "dd2aeea6b2", "media": "photo", "latitude": "0", "id": "5608229331", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 13:40:04", "license": "1", "title": "wrxatlanta_spring_install_day-026", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5224/5608229375_c5ec15e89d_o.jpg", "secret": "cfcd48b6eb", "media": "photo", "latitude": "0", "id": "5608229375", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 13:49:17", "license": "1", "title": "wrxatlanta_spring_install_day-027", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5302/5608812520_b46a7b8199_o.jpg", "secret": "9c7474210c", "media": "photo", "latitude": "0", "id": "5608812520", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2011-04-10 13:49:56", "license": "1", "title": "wrxatlanta_spring_install_day-028", "text": "", "album_id": "72157626347795121", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5223/5608229485_046bd0cd0f_o.jpg", "secret": "7c0dbe3819", "media": "photo", "latitude": "0", "id": "5608229485", "tags": "blue white cars car club silver wagon wheels grill event turbo subaru flush grilling rims impreza wrx sti saab legacy cookout motorsport sportcar carclub saabaru allpro wrxatlanta installday 4touge"}, {"datetaken": "2012-03-17 09:26:11", "license": "1", "title": "Biker from the Qatar Team", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7184/6847734946_5dd631c2ce_o.jpg", "secret": "069cbd48ff", "media": "photo", "latitude": "0", "id": "6847734946", "tags": "sports race kuwait motorbikes nikond90 kuwaitinternationalmotocrosschallenge2012 motocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 09:32:33", "license": "1", "title": "Bike Riders inspecting the circuit", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7046/6993859563_982b1e47b7_o.jpg", "secret": "a8b5902dd2", "media": "photo", "latitude": "0", "id": "6993859563", "tags": "sports race kuwait motorbikes nikond90 kuwaitinternationalmotocrosschallenge2012 motocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 09:41:17", "license": "1", "title": "Kuwait Flag hurling at the Event", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7198/6847937202_36fe75d72e_o.jpg", "secret": "01f43f74e3", "media": "photo", "latitude": "0", "id": "6847937202", "tags": "sports race kuwait motorbikes nikond90 kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 09:48:36", "license": "1", "title": "Biker", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7058/6847937192_6a64b38248_o.jpg", "secret": "841f96e8ef", "media": "photo", "latitude": "0", "id": "6847937192", "tags": "sports race kuwait motorbikes nikond90 kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 09:50:13", "license": "1", "title": "Biker", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7201/6847937210_f57e16aac6_o.jpg", "secret": "d2cf9052cc", "media": "photo", "latitude": "0", "id": "6847937210", "tags": "sports race kuwait motorbikes nikond90 kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 09:56:33", "license": "1", "title": "LightBenders Photography Team", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7183/6847937212_e687f7e3f3_o.jpg", "secret": "e9eb81ab12", "media": "photo", "latitude": "0", "id": "6847937212", "tags": "sports race kuwait motorbikes nikond90 kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 10:02:19", "license": "1", "title": "The Participants", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7060/6847937222_35b14c1159_o.jpg", "secret": "bddd5b4c61", "media": "photo", "latitude": "0", "id": "6847937222", "tags": "sports race kuwait motorbikes nikond90 kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 10:02:25", "license": "1", "title": "Discussing Strategy before the race", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7049/6847937228_dbdfef8cd3_o.jpg", "secret": "1c02c37eb7", "media": "photo", "latitude": "0", "id": "6847937228", "tags": "sports race kuwait motorbikes nikond90 kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 10:02:42", "license": "1", "title": "Biker dressed in the team jersey", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7068/6847944152_7711f66a6a_o.jpg", "secret": "b000a5b4c0", "media": "photo", "latitude": "0", "id": "6847944152", "tags": "sports race kuwait motorbikes nikond90 kuwaitinternationalmotocrosschallenge2012 motocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 10:03:20", "license": "1", "title": "", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7051/6847944162_436e1d387b_o.jpg", "secret": "42cb0c53a3", "media": "photo", "latitude": "0", "id": "6847944162", "tags": "sports race kuwait motorbikes nikond90 kuwaitinternationalmotocrosschallenge2012 motocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 10:50:38", "license": "1", "title": "Catch me if you can", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7037/6847944168_77a4f160dd_o.jpg", "secret": "91b72508c4", "media": "photo", "latitude": "0", "id": "6847944168", "tags": "sports race kuwait motorbikes nikond90 kuwaitinternationalmotocrosschallenge2012 motocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 10:50:42", "license": "1", "title": "Higher....", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7204/6847944178_dc84c295d9_o.jpg", "secret": "6359fec739", "media": "photo", "latitude": "0", "id": "6847944178", "tags": "sports race kuwait motorbikes nikond90 kuwaitinternationalmotocrosschallenge2012 motocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 10:53:15", "license": "1", "title": "", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7194/6847944186_c61ff205a3_o.jpg", "secret": "058328d09d", "media": "photo", "latitude": "0", "id": "6847944186", "tags": "sports race kuwait motorbikes nikond90 kuwaitinternationalmotocrosschallenge2012 motocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 10:54:30", "license": "1", "title": "The power, machine and the height.. Total Control", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7183/6847944192_f3e91c6e99_o.jpg", "secret": "0c5cfbcc36", "media": "photo", "latitude": "0", "id": "6847944192", "tags": "sports race kuwait motorbikes nikond90 kuwaitinternationalmotocrosschallenge2012 motocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 10:56:50", "license": "1", "title": "", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7203/6994151265_41c9f77c23_o.jpg", "secret": "8442e3344a", "media": "photo", "latitude": "0", "id": "6994151265", "tags": "sports race kuwait motorbikes kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 11:03:56", "license": "1", "title": "", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7062/6994151271_76d9a7f77e_o.jpg", "secret": "0404c817c9", "media": "photo", "latitude": "0", "id": "6994151271", "tags": "sports race kuwait motorbikes kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 11:04:45", "license": "1", "title": "", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7061/6994151279_4f682018a7_o.jpg", "secret": "59f56a2432", "media": "photo", "latitude": "0", "id": "6994151279", "tags": "sports race kuwait motorbikes kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 11:05:10", "license": "1", "title": "", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7049/6994151283_f8a7b3d384_o.jpg", "secret": "77c64bfcb7", "media": "photo", "latitude": "0", "id": "6994151283", "tags": "sports race kuwait motorbikes kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 11:06:18", "license": "1", "title": "", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7188/6994151291_3dfbbd9215_o.jpg", "secret": "e5f8901e57", "media": "photo", "latitude": "0", "id": "6994151291", "tags": "sports race kuwait motorbikes kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 11:06:44", "license": "1", "title": "Jinan C.Dasan with his Kawasaki", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7065/6994151295_b21f69699c_o.jpg", "secret": "2440a9da82", "media": "photo", "latitude": "0", "id": "6994151295", "tags": "sports race kuwait motorbikes kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 11:06:45", "license": "1", "title": "Cruising speed", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7040/6848137926_e070ac2309_o.jpg", "secret": "5a6e5c2d5b", "media": "photo", "latitude": "0", "id": "6848137926", "tags": "sports club race international quarter kuwait motocross motorbikes mile 2012 motocrosschallenge2012"}, {"datetaken": "2012-03-17 11:37:53", "license": "1", "title": "", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7070/6994154419_235273b156_o.jpg", "secret": "a434c5f535", "media": "photo", "latitude": "0", "id": "6994154419", "tags": "sports race kuwait motorbikes kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 11:48:39", "license": "1", "title": "", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7063/6994154441_5e24427df8_o.jpg", "secret": "e7a9500cd7", "media": "photo", "latitude": "0", "id": "6994154441", "tags": "sports race kuwait motorbikes kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 12:02:20", "license": "1", "title": "Fight for the win", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7192/6994154455_0dfc764f32_o.jpg", "secret": "6bedc0cb4c", "media": "photo", "latitude": "0", "id": "6994154455", "tags": "sports race kuwait motorbikes kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 12:20:27", "license": "1", "title": "", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7195/6994154473_1cf6f35464_o.jpg", "secret": "7e042c7f91", "media": "photo", "latitude": "0", "id": "6994154473", "tags": "sports race kuwait motorbikes kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 12:20:39", "license": "1", "title": "", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7189/6994154483_140592e67a_o.jpg", "secret": "47ac470ee9", "media": "photo", "latitude": "0", "id": "6994154483", "tags": "sports race kuwait motorbikes kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 12:20:54", "license": "1", "title": "", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7045/6994154493_1484333a16_o.jpg", "secret": "e773449589", "media": "photo", "latitude": "0", "id": "6994154493", "tags": "sports race kuwait motorbikes kuwaitinternationalmotocrosschallenge2012 kuwaitquartermileclub"}, {"datetaken": "2012-03-17 12:26:23", "license": "1", "title": "The Start", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7176/6994225967_d3f5415552_o.jpg", "secret": "af071fa52e", "media": "photo", "latitude": "0", "id": "6994225967", "tags": "sports club race international quarter kuwait motocross motorbikes challenge mile 2012"}, {"datetaken": "2012-03-17 12:26:28", "license": "1", "title": "All set to win", "text": "", "album_id": "72157629613256003", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7062/6994225979_4a4db5506c_o.jpg", "secret": "3e1b429f8a", "media": "photo", "latitude": "0", "id": "6994225979", "tags": "kuwait international motocross challenge 2012 quarter mile club motorbikes race sports"}, {"datetaken": "2006-03-17 19:55:51", "license": "3", "title": "2006-03-17 PGA St Paddy's", "text": "", "album_id": "72057594084671142", "longitude": "-0.591845", "url_o": "https://farm1.staticflickr.com/54/114086222_c2f0666c4e_o.jpg", "secret": "c2f0666c4e", "media": "photo", "latitude": "51.242817", "id": "114086222", "tags": "kiri guildford pga gregs stpatricksday unis wates facebook:album=pgastpatricksdayparty2006"}, {"datetaken": "2006-03-17 19:57:11", "license": "3", "title": "2006-03-17 PGA St Paddy's", "text": "", "album_id": "72057594084671142", "longitude": "-0.591845", "url_o": "https://farm1.staticflickr.com/40/114086407_613faa83f4_o.jpg", "secret": "613faa83f4", "media": "photo", "latitude": "51.242817", "id": "114086407", "tags": "jim guildford pga stpatricksday unis wates facebook:album=pgastpatricksdayparty2006"}, {"datetaken": "2006-03-17 19:58:17", "license": "3", "title": "2006-03-17 PGA St Paddy's", "text": "", "album_id": "72057594084671142", "longitude": "-0.591845", "url_o": "https://farm1.staticflickr.com/39/114086554_988ad8a575_o.jpg", "secret": "988ad8a575", "media": "photo", "latitude": "51.242817", "id": "114086554", "tags": "guildford pga stpatricksday unis wates clairem facebook:album=pgastpatricksdayparty2006"}, {"datetaken": "2006-03-17 20:51:42", "license": "3", "title": "2006-03-17 PGA St Paddy's", "text": "", "album_id": "72057594084671142", "longitude": "-0.591845", "url_o": "https://farm1.staticflickr.com/19/114087919_f0a4006ca2_o.jpg", "secret": "f0a4006ca2", "media": "photo", "latitude": "51.242817", "id": "114087919", "tags": "steves naomi guildford pga stpatricksday unis wates helent facebook:album=pgastpatricksdayparty2006"}, {"datetaken": "2006-03-17 21:26:36", "license": "3", "title": "2006-03-17 PGA St Paddy's", "text": "", "album_id": "72057594084671142", "longitude": "-0.591845", "url_o": "https://farm1.staticflickr.com/9/114088176_bb3ba79133_o.jpg", "secret": "bb3ba79133", "media": "photo", "latitude": "51.242817", "id": "114088176", "tags": "guildford pga gregs stpatricksday unis wates facebook:album=pgastpatricksdayparty2006"}, {"datetaken": "2006-03-17 21:26:43", "license": "3", "title": "2006-03-17 PGA St Paddy's", "text": "", "album_id": "72057594084671142", "longitude": "-0.591845", "url_o": "https://farm1.staticflickr.com/39/114088391_e5595bcede_o.jpg", "secret": "e5595bcede", "media": "photo", "latitude": "51.242817", "id": "114088391", "tags": "guildford pga gregs stpatricksday unis wates facebook:album=pgastpatricksdayparty2006"}, {"datetaken": "2006-03-17 21:47:16", "license": "3", "title": "2006-03-17 PGA St Paddy's", "text": "", "album_id": "72057594084671142", "longitude": "-0.591845", "url_o": "https://farm1.staticflickr.com/56/114089415_c54eedfd47_o.jpg", "secret": "c54eedfd47", "media": "photo", "latitude": "51.242817", "id": "114089415", "tags": "justin guildford pga stpatricksday unis wates facebook:album=pgastpatricksdayparty2006"}, {"datetaken": "2006-03-17 21:50:28", "license": "3", "title": "2006-03-17 PGA St Paddy's", "text": "", "album_id": "72057594084671142", "longitude": "-0.591845", "url_o": "https://farm1.staticflickr.com/54/114089581_3e2b0dfbf0_o.jpg", "secret": "3e2b0dfbf0", "media": "photo", "latitude": "51.242817", "id": "114089581", "tags": "eric guildford pga stpatricksday unis stevem wates facebook:album=pgastpatricksdayparty2006"}, {"datetaken": "2006-03-17 21:57:58", "license": "3", "title": "2006-03-17 PGA St Paddy's", "text": "", "album_id": "72057594084671142", "longitude": "-0.591845", "url_o": "https://farm1.staticflickr.com/40/114089836_efbfc5b165_o.jpg", "secret": "efbfc5b165", "media": "photo", "latitude": "51.242817", "id": "114089836", "tags": "guildford pga stpatricksday unis stevem wates facebook:album=pgastpatricksdayparty2006"}, {"datetaken": "2006-03-17 22:00:00", "license": "3", "title": "2006-03-17 PGA St Paddy's", "text": "", "album_id": "72057594084671142", "longitude": "-0.591845", "url_o": "https://farm1.staticflickr.com/48/114090146_5a9c78171a_o.jpg", "secret": "5a9c78171a", "media": "photo", "latitude": "51.242817", "id": "114090146", "tags": "kat steves guildford pga stpatricksday unis wates facebook:album=pgastpatricksdayparty2006"}, {"datetaken": "2006-03-17 22:05:20", "license": "3", "title": "2006-03-17 PGA St Paddy's", "text": "", "album_id": "72057594084671142", "longitude": "-0.591845", "url_o": "https://farm1.staticflickr.com/38/114090325_4c078e7107_o.jpg", "secret": "4c078e7107", "media": "photo", "latitude": "51.242817", "id": "114090325", "tags": "me guildford pga stpatricksday unis wates facebook:album=pgastpatricksdayparty2006"}, {"datetaken": "2006-03-17 22:06:50", "license": "3", "title": "2006-03-17 PGA St Paddy's", "text": "", "album_id": "72057594084671142", "longitude": "-0.591845", "url_o": "https://farm1.staticflickr.com/52/114090724_a5e27d0a39_o.jpg", "secret": "a5e27d0a39", "media": "photo", "latitude": "51.242817", "id": "114090724", "tags": "kat steves guildford pga stpatricksday unis wates facebook:album=pgastpatricksdayparty2006"}, {"datetaken": "2006-03-17 22:27:23", "license": "3", "title": "2006-03-17 PGA St Paddy's", "text": "", "album_id": "72057594084671142", "longitude": "-0.591845", "url_o": "https://farm1.staticflickr.com/36/114090992_5b50f2dea2_o.jpg", "secret": "5b50f2dea2", "media": "photo", "latitude": "51.242817", "id": "114090992", "tags": "guildford pga stpatricksday unis stevem wates facebook:album=pgastpatricksdayparty2006"}, {"datetaken": "2006-03-12 12:55:36", "license": "3", "title": "_MG_0027", "text": "", "album_id": "72057594080540770", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/111407938_92f6921418_o.jpg", "secret": "92f6921418", "media": "photo", "latitude": "0", "id": "111407938", "tags": "ireland scotland shamrock stpatricksday"}, {"datetaken": "2006-03-12 13:01:16", "license": "3", "title": "_MG_0035", "text": "", "album_id": "72057594080540770", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/111407954_8d80fbcaa0_o.jpg", "secret": "8d80fbcaa0", "media": "photo", "latitude": "0", "id": "111407954", "tags": "ireland scotland shamrock stpatricksday"}, {"datetaken": "2006-03-12 13:04:53", "license": "3", "title": "_MG_0047", "text": "", "album_id": "72057594080540770", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/111470582_8847a46710_o.jpg", "secret": "8847a46710", "media": "photo", "latitude": "0", "id": "111470582", "tags": "ireland scotland shamrock stpatricksday"}, {"datetaken": "2006-03-12 13:05:43", "license": "3", "title": "_MG_0050", "text": "", "album_id": "72057594080540770", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/111470624_030245362d_o.jpg", "secret": "030245362d", "media": "photo", "latitude": "0", "id": "111470624", "tags": "ireland scotland shamrock stpatricksday"}, {"datetaken": "2006-03-12 13:12:24", "license": "3", "title": "Claymore Pipes and Drums", "text": "", "album_id": "72057594080540770", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/111408058_b24312d778_o.jpg", "secret": "b24312d778", "media": "photo", "latitude": "0", "id": "111408058", "tags": "ireland scotland shamrock stpatricksday"}, {"datetaken": "2006-03-12 13:15:03", "license": "3", "title": "_MG_0080", "text": "", "album_id": "72057594080540770", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/111408105_b4890c3006_o.jpg", "secret": "b4890c3006", "media": "photo", "latitude": "0", "id": "111408105", "tags": "ireland scotland shamrock stpatricksday"}, {"datetaken": "2006-03-12 13:16:10", "license": "3", "title": "_MG_0083", "text": "", "album_id": "72057594080540770", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/111408129_e55c7463c9_o.jpg", "secret": "e55c7463c9", "media": "photo", "latitude": "0", "id": "111408129", "tags": "ireland scotland shamrock stpatricksday"}, {"datetaken": "2006-03-12 13:16:34", "license": "3", "title": "chef", "text": "", "album_id": "72057594080540770", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/111408163_2af399cee3_o.jpg", "secret": "2af399cee3", "media": "photo", "latitude": "0", "id": "111408163", "tags": "ireland scotland shamrock stpatricksday"}, {"datetaken": "2006-03-12 13:16:47", "license": "3", "title": "_MG_0086", "text": "", "album_id": "72057594080540770", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/111470654_fba332784f_o.jpg", "secret": "fba332784f", "media": "photo", "latitude": "0", "id": "111470654", "tags": "ireland scotland shamrock stpatricksday"}, {"datetaken": "2006-03-12 13:17:58", "license": "3", "title": "skirl lesson", "text": "", "album_id": "72057594080540770", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/111408219_7fc5ec2d6a_o.jpg", "secret": "7fc5ec2d6a", "media": "photo", "latitude": "0", "id": "111408219", "tags": "ireland scotland shamrock stpatricksday"}, {"datetaken": "2006-03-12 13:20:25", "license": "3", "title": "red drummer", "text": "", "album_id": "72057594080540770", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/111408257_b1450dad4c_o.jpg", "secret": "b1450dad4c", "media": "photo", "latitude": "0", "id": "111408257", "tags": "ireland scotland shamrock stpatricksday"}, {"datetaken": "2006-03-18 11:24:23", "license": "2", "title": "Ken", "text": "", "album_id": "72057594084559688", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/114015747_3565ef0eab_o.jpg", "secret": "3565ef0eab", "media": "photo", "latitude": "0", "id": "114015747", "tags": "sanfrancisco california city blackandwhite bw usa man smiling blackwhite unitedstates unitedstatesofamerica ken northbeach stpatricksday kenroth stpatricksday2006 northbeachdistrict"}, {"datetaken": "2006-03-18 11:35:55", "license": "2", "title": "Washington Square Bar and Grill", "text": "", "album_id": "72057594084559688", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/114015956_8fe2b5eef9_o.jpg", "secret": "8fe2b5eef9", "media": "photo", "latitude": "0", "id": "114015956", "tags": "sanfrancisco california city woman usa unitedstates unitedstatesofamerica blond northbeach stpatricksday stpatricksday2006 washingtonsquarebargrill northbeachdistrict"}, {"datetaken": "2006-03-18 11:49:21", "license": "2", "title": "St. Patrick's Day Self Portrait, Washington Square Bar and Grill", "text": "", "album_id": "72057594084559688", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/114015976_16135d63aa_o.jpg", "secret": "16135d63aa", "media": "photo", "latitude": "0", "id": "114015976", "tags": "sanfrancisco california camera city blackandwhite bw usa selfportrait canon lens blackwhite blurry photographer unitedstates unitedstatesofamerica northbeach 5d stpatricksday stpatricksday2006 northbeachdistrict"}, {"datetaken": "2006-03-18 12:21:11", "license": "2", "title": "O'Reilly's", "text": "", "album_id": "72057594084559688", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/114015831_905299c297_o.jpg", "secret": "905299c297", "media": "photo", "latitude": "0", "id": "114015831", "tags": "sanfrancisco california city people usa unitedstates unitedstatesofamerica crowd northbeach oreillys stpatricksday crowded stpatricksday2006 northbeachdistrict"}, {"datetaken": "2006-03-18 12:22:34", "license": "2", "title": "O'Reilly's, #2", "text": "", "album_id": "72057594084559688", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/114015998_99bec2fbc7_o.jpg", "secret": "99bec2fbc7", "media": "photo", "latitude": "0", "id": "114015998", "tags": "sanfrancisco california city people usa unitedstates unitedstatesofamerica crowd northbeach oreillys stpatricksday stpatricksday2006 northbeachdistrict"}, {"datetaken": "2006-03-18 12:44:34", "license": "2", "title": "St. Patrick's Day Couple, #2", "text": "", "album_id": "72057594084559688", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/114015936_315c4cf24d_o.jpg", "secret": "315c4cf24d", "media": "photo", "latitude": "0", "id": "114015936", "tags": "sanfrancisco california city blackandwhite bw woman usa man blackwhite couple unitedstates unitedstatesofamerica financialdistrict stpatricksday stpatricksday2006"}, {"datetaken": "2006-03-18 12:58:57", "license": "2", "title": "Lost in the Crowd", "text": "", "album_id": "72057594084559688", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/114016035_5d5de68081_o.jpg", "secret": "5d5de68081", "media": "photo", "latitude": "0", "id": "114016035", "tags": "sanfrancisco california city people usa unitedstates dancing unitedstatesofamerica crowd financialdistrict stpatricksday stpatricksday2006"}, {"datetaken": "2006-03-18 13:01:50", "license": "2", "title": "Sacramento", "text": "", "album_id": "72057594084559688", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/114016072_36260e4f88_o.jpg", "secret": "36260e4f88", "media": "photo", "latitude": "0", "id": "114016072", "tags": "sanfrancisco california city people usa unitedstates dancing unitedstatesofamerica crowd financialdistrict stpatricksday stpatricksday2006"}, {"datetaken": "2006-03-18 13:02:53", "license": "2", "title": "St. Patrick's Day 2006", "text": "", "album_id": "72057594084559688", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/114016147_0f2c680de2_o.jpg", "secret": "0f2c680de2", "media": "photo", "latitude": "0", "id": "114016147", "tags": "sanfrancisco california bear city party people usa men beer st day unitedstates unitedstatesofamerica drinking financialdistrict soda bud patricks budweiser stpatricksday anheuserbusch stpatricksday2006 uinnes"}, {"datetaken": "2006-03-18 13:03:26", "license": "2", "title": "Harrington", "text": "", "album_id": "72057594084559688", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/114016168_f746dc60ac_o.jpg", "secret": "f746dc60ac", "media": "photo", "latitude": "0", "id": "114016168", "tags": "sanfrancisco california city people usa sign bar neon unitedstates unitedstatesofamerica crowd grill financialdistrict stpatricksday harrington stpatricksday2006 harringtonbargrill"}, {"datetaken": "2006-03-18 13:03:41", "license": "2", "title": "And the Band Played", "text": "", "album_id": "72057594084559688", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/114016014_c16dcca3c6_o.jpg", "secret": "c16dcca3c6", "media": "photo", "latitude": "0", "id": "114016014", "tags": "sanfrancisco california city music usa hat lights team unitedstates guitar unitedstatesofamerica band financialdistrict stpatricksday stpatricksday2006"}, {"datetaken": "2006-03-18 13:09:26", "license": "2", "title": "Chu, #4", "text": "", "album_id": "72057594084559688", "longitude": "-122.398917", "url_o": "https://farm1.staticflickr.com/36/114016182_8eae4cfb55_o.jpg", "secret": "8eae4cfb55", "media": "photo", "latitude": "37.793850", "id": "114016182", "tags": "sanfrancisco california city usa man sunglasses unitedstates 10 unitedstatesofamerica financialdistrict frankchu stpatricksday 12galaxies fav10 stpatricksday2006"}, {"datetaken": "2006-03-18 13:10:30", "license": "2", "title": "Chu", "text": "", "album_id": "72057594084559688", "longitude": "-122.398917", "url_o": "https://farm1.staticflickr.com/52/114015851_f354effe3d_o.jpg", "secret": "f354effe3d", "media": "photo", "latitude": "37.793850", "id": "114015851", "tags": "sanfrancisco california city usa man sign holding unitedstates unitedstatesofamerica financialdistrict incar abc galaxies coverage frankchu stpatricksday 12galaxies stpatricksday2006 hilgendorf ascensions vesfrodrencial gusjrobenikal kisprogenical subjugations epitomes higendorf vesfrodrenical gusjrobrenilal ksiprogrenical"}, {"datetaken": "2006-03-18 13:10:58", "license": "2", "title": "Chu, #3", "text": "", "album_id": "72057594084559688", "longitude": "-122.398917", "url_o": "https://farm1.staticflickr.com/51/114015903_a24efe2c10_o.jpg", "secret": "a24efe2c10", "media": "photo", "latitude": "37.793850", "id": "114015903", "tags": "sanfrancisco california city people usa sunglasses unitedstates unitedstatesofamerica rally financialdistrict incar abc galaxies coverage frankchu stpatricksday 12galaxies incarnations stpatricksday2006 hilgendorf ascensions vesfrodrencial gusjrobenikal kisprogenical subjugations epitomes higendorf vesfrodrenical gusjrobrenilal ksiprogrenical"}, {"datetaken": "2006-03-18 13:13:29", "license": "2", "title": "St. Patrick's Day Couple", "text": "", "album_id": "72057594084559688", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/114016121_aceae692cb_o.jpg", "secret": "aceae692cb", "media": "photo", "latitude": "0", "id": "114016121", "tags": "sanfrancisco california city people blackandwhite bw usa smiling blackwhite couple unitedstates unitedstatesofamerica financialdistrict stpatricksday stpatricksday2006"}, {"datetaken": "2006-03-18 13:15:34", "license": "2", "title": "Chu, #2", "text": "", "album_id": "72057594084559688", "longitude": "-122.398917", "url_o": "https://farm1.staticflickr.com/41/114015772_2380bf135c_o.jpg", "secret": "2380bf135c", "media": "photo", "latitude": "37.793850", "id": "114015772", "tags": "sanfrancisco california city usa sign shop unitedstates unitedstatesofamerica crowd mcdonalds financialdistrict abc galaxies coverage frankchu stpatricksday 12galaxies incarnations stpatricksday2006 hilgendorf ascensions epitomes kisprogrenical vesfrobencial gusirobekinal subiugations"}, {"datetaken": "2006-03-18 13:51:17", "license": "1", "title": "DSC01708", "text": "", "album_id": "72057594087766263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/116142224_b4fe822bb7_o.jpg", "secret": "b4fe822bb7", "media": "photo", "latitude": "0", "id": "116142224", "tags": "party beach kites savannah stpatricksday"}, {"datetaken": "2006-03-18 13:53:38", "license": "1", "title": "DSC01715", "text": "", "album_id": "72057594087766263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/116144448_3bbada8403_o.jpg", "secret": "3bbada8403", "media": "photo", "latitude": "0", "id": "116144448", "tags": "party beach kites savannah stpatricksday"}, {"datetaken": "2006-03-18 13:56:30", "license": "1", "title": "DSC01718", "text": "", "album_id": "72057594087766263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/116145178_0c347ca4e5_o.jpg", "secret": "0c347ca4e5", "media": "photo", "latitude": "0", "id": "116145178", "tags": "party beach kites savannah stpatricksday"}, {"datetaken": "2006-03-18 14:17:17", "license": "1", "title": "DSC01726", "text": "", "album_id": "72057594087766263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/116147419_f465638652_o.jpg", "secret": "f465638652", "media": "photo", "latitude": "0", "id": "116147419", "tags": "party beach kites savannah stpatricksday"}, {"datetaken": "2006-03-18 14:26:08", "license": "1", "title": "DSC01730", "text": "", "album_id": "72057594087766263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/116148783_72f4326f5b_o.jpg", "secret": "72f4326f5b", "media": "photo", "latitude": "0", "id": "116148783", "tags": "party beach kites savannah stpatricksday"}, {"datetaken": "2006-03-18 14:42:38", "license": "1", "title": "DSC01737", "text": "", "album_id": "72057594087766263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/116151139_b6b83e1bc9_o.jpg", "secret": "b6b83e1bc9", "media": "photo", "latitude": "0", "id": "116151139", "tags": "party beach kites savannah stpatricksday"}, {"datetaken": "2006-03-18 15:13:01", "license": "1", "title": "DSC01745", "text": "", "album_id": "72057594087766263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/116154073_2ab8d77059_o.jpg", "secret": "2ab8d77059", "media": "photo", "latitude": "0", "id": "116154073", "tags": "party beach kites savannah stpatricksday"}, {"datetaken": "2006-03-18 15:41:13", "license": "1", "title": "DSC01747", "text": "", "album_id": "72057594087766263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/116154798_420944a264_o.jpg", "secret": "420944a264", "media": "photo", "latitude": "0", "id": "116154798", "tags": "party beach kites savannah stpatricksday"}, {"datetaken": "2006-03-19 09:54:03", "license": "1", "title": "DSC01753", "text": "", "album_id": "72057594087766263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/116156817_aef5f0a3bf_o.jpg", "secret": "aef5f0a3bf", "media": "photo", "latitude": "0", "id": "116156817", "tags": "party beach kites savannah stpatricksday"}, {"datetaken": "2006-03-19 09:54:05", "license": "1", "title": "DSC01754", "text": "", "album_id": "72057594087766263", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/116157183_0820da71b6_o.jpg", "secret": "0820da71b6", "media": "photo", "latitude": "0", "id": "116157183", "tags": "party beach kites savannah stpatricksday"}, {"datetaken": "2005-03-12 12:01:52", "license": "1", "title": "St. Patrick's Day - 05, Mar - 01", "text": "", "album_id": "72157594197494263", "longitude": "-73.767930", "url_o": "https://farm1.staticflickr.com/71/188516609_a14cf8dc4d_o.jpg", "secret": "a14cf8dc4d", "media": "photo", "latitude": "42.653996", "id": "188516609", "tags": "2005 food usa ny beer march albany bathtub stpatricksday altuwa"}, {"datetaken": "2005-03-12 16:16:21", "license": "1", "title": "St. Patrick's Day - 05, Mar - 02", "text": "", "album_id": "72157594197494263", "longitude": "-73.767930", "url_o": "https://farm1.staticflickr.com/57/188516651_be358d6a62_o.jpg", "secret": "be358d6a62", "media": "photo", "latitude": "42.653996", "id": "188516651", "tags": "2005 usa ny march bill steve albany stpatricksday altuwa"}, {"datetaken": "2005-03-12 16:16:40", "license": "1", "title": "St. Patrick's Day - 05, Mar - 03", "text": "", "album_id": "72157594197494263", "longitude": "-73.767930", "url_o": "https://farm1.staticflickr.com/78/188516673_3ade6f8135_o.jpg", "secret": "3ade6f8135", "media": "photo", "latitude": "42.653996", "id": "188516673", "tags": "2005 usa ny me scott march karen albany erica stpatricksday sebastien altuwa"}, {"datetaken": "2005-03-12 16:21:46", "license": "1", "title": "St. Patrick's Day - 05, Mar - 04", "text": "", "album_id": "72157594197494263", "longitude": "-73.767930", "url_o": "https://farm1.staticflickr.com/76/188516689_b1aeebb407_o.jpg", "secret": "b1aeebb407", "media": "photo", "latitude": "42.653996", "id": "188516689", "tags": "2005 usa ny march karen albany erica stpatricksday altuwa"}, {"datetaken": "2005-03-12 16:36:50", "license": "1", "title": "St. Patrick's Day - 05, Mar - 05", "text": "", "album_id": "72157594197494263", "longitude": "-73.767930", "url_o": "https://farm1.staticflickr.com/48/188516711_2201a9cc1d_o.jpg", "secret": "2201a9cc1d", "media": "photo", "latitude": "42.653996", "id": "188516711", "tags": "2005 usa ny march albany erica stpatricksday altuwa"}, {"datetaken": "2005-03-12 16:56:43", "license": "1", "title": "St. Patrick's Day - 05, Mar - 06", "text": "", "album_id": "72157594197494263", "longitude": "-73.767930", "url_o": "https://farm1.staticflickr.com/63/188516731_160d5cfd94_o.jpg", "secret": "160d5cfd94", "media": "photo", "latitude": "42.653996", "id": "188516731", "tags": "2005 usa ny march karen albany erica stpatricksday altuwa"}, {"datetaken": "2005-03-12 17:06:13", "license": "1", "title": "St. Patrick's Day - 05, Mar - 07", "text": "", "album_id": "72157594197494263", "longitude": "-73.767930", "url_o": "https://farm1.staticflickr.com/49/188516762_3ce2b252f7_o.jpg", "secret": "3ce2b252f7", "media": "photo", "latitude": "42.653996", "id": "188516762", "tags": "2005 usa ny march albany erica stpatricksday altuwa"}, {"datetaken": "2005-03-12 18:30:22", "license": "1", "title": "St. Patrick's Day - 05, Mar - 08", "text": "", "album_id": "72157594197494263", "longitude": "-73.766815", "url_o": "https://farm1.staticflickr.com/58/188516796_9186408268_o.jpg", "secret": "9186408268", "media": "photo", "latitude": "42.653446", "id": "188516796", "tags": "2005 usa ny dawn march albany stpatricksday cafehollywood altuwa"}, {"datetaken": "2005-03-12 18:30:35", "license": "1", "title": "St. Patrick's Day - 05, Mar - 09", "text": "", "album_id": "72157594197494263", "longitude": "-73.766815", "url_o": "https://farm1.staticflickr.com/46/188516831_5a86021a25_o.jpg", "secret": "5a86021a25", "media": "photo", "latitude": "42.653446", "id": "188516831", "tags": "2005 usa ny dawn march albany stpatricksday cafehollywood altuwa"}, {"datetaken": "2005-03-12 18:30:43", "license": "1", "title": "St. Patrick's Day - 05, Mar - 10", "text": "", "album_id": "72157594197494263", "longitude": "-73.766815", "url_o": "https://farm1.staticflickr.com/66/188516850_8398f7336f_o.jpg", "secret": "8398f7336f", "media": "photo", "latitude": "42.653446", "id": "188516850", "tags": "2005 usa ny dawn march albany stpatricksday cafehollywood altuwa"}, {"datetaken": "2005-03-12 18:31:28", "license": "1", "title": "St. Patrick's Day - 05, Mar - 11", "text": "", "album_id": "72157594197494263", "longitude": "-73.766815", "url_o": "https://farm1.staticflickr.com/70/188516879_353a6db4da_o.jpg", "secret": "353a6db4da", "media": "photo", "latitude": "42.653446", "id": "188516879", "tags": "2005 usa ny me march ryan albany stpatricksday sebastien cafehollywood altuwa"}, {"datetaken": "2005-03-12 18:32:49", "license": "1", "title": "St. Patrick's Day - 05, Mar - 12", "text": "", "album_id": "72157594197494263", "longitude": "-73.766815", "url_o": "https://farm1.staticflickr.com/73/188516894_f3ef9e5ffa_o.jpg", "secret": "f3ef9e5ffa", "media": "photo", "latitude": "42.653446", "id": "188516894", "tags": "2005 usa ny march albany stpatricksday cafehollywood altuwa"}, {"datetaken": "2005-03-12 18:51:06", "license": "1", "title": "St. Patrick's Day - 05, Mar - 13", "text": "", "album_id": "72157594197494263", "longitude": "-73.766815", "url_o": "https://farm1.staticflickr.com/61/188516920_43e4303466_o.jpg", "secret": "43e4303466", "media": "photo", "latitude": "42.653446", "id": "188516920", "tags": "2005 usa ny tiara dawn march albany tiffany stpatricksday cafehollywood altuwa"}, {"datetaken": "2005-03-12 22:09:04", "license": "1", "title": "St. Patrick's Day - 05, Mar - 15", "text": "", "album_id": "72157594197494263", "longitude": "-73.763714", "url_o": "https://farm1.staticflickr.com/61/188516975_5d0b8a17c2_o.jpg", "secret": "5d0b8a17c2", "media": "photo", "latitude": "42.650295", "id": "188516975", "tags": "2005 usa ny march albany erica stpatricksday altuwa"}, {"datetaken": "2007-03-17 10:11:38", "license": "1", "title": "MIT Stata Center", "text": "", "album_id": "72157600005042432", "longitude": "-71.090211", "url_o": "https://farm1.staticflickr.com/169/424276178_4eb029b07a_o.jpg", "secret": "83ff43ddaf", "media": "photo", "latitude": "42.361933", "id": "424276178", "tags": "cambridge boston mit barcamp barcampboston barcampboston2 upcoming:event=147080"}, {"datetaken": "2007-03-17 10:31:06", "license": "1", "title": "Rod Begbie Talking OpenID", "text": "", "album_id": "72157600005042432", "longitude": "-71.090211", "url_o": "https://farm1.staticflickr.com/158/424274615_3c1707a132_o.jpg", "secret": "f75efaf983", "media": "photo", "latitude": "42.361933", "id": "424274615", "tags": "boston barcamp rodbegbie barcampboston barcampboston2 upcoming:event=147080"}, {"datetaken": "2007-03-17 12:04:46", "license": "1", "title": "Stata Center", "text": "", "album_id": "72157600005042432", "longitude": "-71.090211", "url_o": "https://farm1.staticflickr.com/180/424268036_e94bc12b52_o.jpg", "secret": "3fc5b72951", "media": "photo", "latitude": "42.361933", "id": "424268036", "tags": "boston barcamp barcampboston barcampboston2 upcoming:event=147080"}, {"datetaken": "2007-03-17 12:22:51", "license": "1", "title": "Geeks Below", "text": "", "album_id": "72157600005042432", "longitude": "-71.090211", "url_o": "https://farm1.staticflickr.com/166/424268274_939875310e_o.jpg", "secret": "8b12348800", "media": "photo", "latitude": "42.361933", "id": "424268274", "tags": "cambridge boston mit statacenter barcamp barcampboston barcampboston2 upcoming:event=147080"}, {"datetaken": "2007-03-17 12:24:36", "license": "1", "title": "MIT Decorations", "text": "", "album_id": "72157600005042432", "longitude": "-71.090211", "url_o": "https://farm1.staticflickr.com/180/424268441_785ffcaf32_o.jpg", "secret": "8c42029784", "media": "photo", "latitude": "42.361933", "id": "424268441", "tags": "boston barcamp barcampboston barcampboston2 upcoming:event=147080"}, {"datetaken": "2007-03-17 12:29:22", "license": "1", "title": "BarCamp Boston Board", "text": "", "album_id": "72157600005042432", "longitude": "-71.090211", "url_o": "https://farm1.staticflickr.com/183/424268657_0e49d394f0_o.jpg", "secret": "bbf493eca5", "media": "photo", "latitude": "42.361933", "id": "424268657", "tags": "boston barcamp barcampboston barcampboston2 upcoming:event=147080"}, {"datetaken": "2007-03-17 12:29:40", "license": "1", "title": "The Board, Filling Up", "text": "", "album_id": "72157600005042432", "longitude": "-71.090211", "url_o": "https://farm1.staticflickr.com/188/424268918_cbcee25cbe_o.jpg", "secret": "4039acaf03", "media": "photo", "latitude": "42.361933", "id": "424268918", "tags": "boston barcamp barcampboston barcampboston2 upcoming:event=147080"}, {"datetaken": "2007-03-17 12:41:54", "license": "1", "title": "Jerrad Pierce on Green Maps", "text": "", "album_id": "72157600005042432", "longitude": "-71.090211", "url_o": "https://farm1.staticflickr.com/176/424269220_d1ca1ba8b7_o.jpg", "secret": "b02923ef1c", "media": "photo", "latitude": "42.361933", "id": "424269220", "tags": "boston barcamp barcampboston barcampboston2 upcoming:event=147080"}, {"datetaken": "2007-03-17 12:42:38", "license": "1", "title": "Green Map of Cambridge (http://greenmap.mit.edu)", "text": "", "album_id": "72157600005042432", "longitude": "-71.090211", "url_o": "https://farm1.staticflickr.com/164/424269401_517dcddb5b_o.jpg", "secret": "1528dacd61", "media": "photo", "latitude": "42.361933", "id": "424269401", "tags": "boston barcamp barcampboston barcampboston2 upcoming:event=147080"}, {"datetaken": "2007-03-17 13:41:40", "license": "1", "title": "Dept. of Redundancy Department", "text": "", "album_id": "72157600005042432", "longitude": "-71.090211", "url_o": "https://farm1.staticflickr.com/175/424572881_aef2b8769d_o.jpg", "secret": "5f32c2c196", "media": "photo", "latitude": "42.361933", "id": "424572881", "tags": "cambridge boston mit barcamp barcampboston barcampboston2 upcoming:event=147080"}, {"datetaken": "2007-03-17 14:41:53", "license": "1", "title": "One Laptop Per Child Demo", "text": "", "album_id": "72157600005042432", "longitude": "-71.090211", "url_o": "https://farm1.staticflickr.com/177/424574144_f569202841_o.jpg", "secret": "975a27554e", "media": "photo", "latitude": "42.361933", "id": "424574144", "tags": "cambridge boston mit barcamp barcampboston barcampboston2 upcoming:event=147080"}, {"datetaken": "2007-03-17 16:10:00", "license": "1", "title": "Drop Your Pants: Funny HAL Demo", "text": "", "album_id": "72157600005042432", "longitude": "-71.090211", "url_o": "https://farm1.staticflickr.com/164/424575422_ff4f621575_o.jpg", "secret": "9006cc70a0", "media": "photo", "latitude": "42.361933", "id": "424575422", "tags": "cambridge boston mit barcamp barcampboston barcampboston2 upcoming:event=147080"}, {"datetaken": "2007-03-17 16:49:10", "license": "1", "title": "Drop Your Pants: tourb.us Demo", "text": "", "album_id": "72157600005042432", "longitude": "-71.090211", "url_o": "https://farm1.staticflickr.com/185/424577043_78294ff4e0_o.jpg", "secret": "3ba6fca7b0", "media": "photo", "latitude": "42.361933", "id": "424577043", "tags": "cambridge boston mit tourbus barcamp barcampboston barcampboston2 upcoming:event=147080"}, {"datetaken": "2007-03-16 23:10:17", "license": "3", "title": "gal pals", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/424543397_a82199dc7c_o.jpg", "secret": "2748c55d74", "media": "photo", "latitude": "0", "id": "424543397", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:11:31", "license": "3", "title": "I was afraid this old dude was going to fall out", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/424545234_39e2658fe4_o.jpg", "secret": "b50e1201f0", "media": "photo", "latitude": "0", "id": "424545234", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade inthetrunk citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:13:34", "license": "3", "title": "old man with cane", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/424545548_595c1e4991_o.jpg", "secret": "17a911339b", "media": "photo", "latitude": "0", "id": "424545548", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:16:55", "license": "3", "title": "they really do", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/424544231_76eb58766b_o.jpg", "secret": "5f86ec8a89", "media": "photo", "latitude": "0", "id": "424544231", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:19:00", "license": "3", "title": "man with harmonica", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/424543759_c9fe280408_o.jpg", "secret": "f738ab23bf", "media": "photo", "latitude": "0", "id": "424543759", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:21:45", "license": "3", "title": "Naughty Santa Society", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/424542601_ec921ae118_o.jpg", "secret": "8276296f0b", "media": "photo", "latitude": "0", "id": "424542601", "tags": "santas hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous naughtysantasociety"}, {"datetaken": "2007-03-16 23:22:14", "license": "3", "title": "that woman looks horrified", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/424542907_11d50b5770_o.jpg", "secret": "8831132dcc", "media": "photo", "latitude": "0", "id": "424542907", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:23:04", "license": "3", "title": "Irish Elvis?", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/424542816_d20415b16b_o.jpg", "secret": "47d11ecad6", "media": "photo", "latitude": "0", "id": "424542816", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:23:58", "license": "3", "title": "dalmation", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/424543033_7f3151b7c7_o.jpg", "secret": "2c92114e07", "media": "photo", "latitude": "0", "id": "424543033", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:24:03", "license": "3", "title": "firefighters", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/424543121_3a6e7dc4f6_o.jpg", "secret": "06ac3d52ed", "media": "photo", "latitude": "0", "id": "424543121", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:24:44", "license": "3", "title": "The real McCoy?", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/424542708_92b572970f_o.jpg", "secret": "4a325adb36", "media": "photo", "latitude": "0", "id": "424542708", "tags": "wagon hats stpaul twin saintpaul stpatricksday mccoy stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:27:32", "license": "3", "title": "The little man managed to avoid the Vulcans", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/424545630_274591b318_o.jpg", "secret": "03d5d9266d", "media": "photo", "latitude": "0", "id": "424545630", "tags": "hats stpaul saintpaul stpatricksday stpatricksdayparade stpaddysdayparade"}, {"datetaken": "2007-03-16 23:29:04", "license": "3", "title": "now that's quite the outfit", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/424544421_65cc3cc52d_o.jpg", "secret": "8ff71af487", "media": "photo", "latitude": "0", "id": "424544421", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:29:31", "license": "3", "title": "Lady Liberty", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/424544581_b3529d1672_o.jpg", "secret": "5e72e23722", "media": "photo", "latitude": "0", "id": "424544581", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:31:45", "license": "3", "title": "spats", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/424543951_c7a99024be_o.jpg", "secret": "4cd68357e1", "media": "photo", "latitude": "0", "id": "424543951", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:32:31", "license": "3", "title": "the little man", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/424544319_d7a3f31b98_o.jpg", "secret": "0f5b0a0349", "media": "photo", "latitude": "0", "id": "424544319", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:32:39", "license": "3", "title": "bagpipers", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/424544072_7c96d9134d_o.jpg", "secret": "eab858d65d", "media": "photo", "latitude": "0", "id": "424544072", "tags": "hats stpaul twin bagpipes saintpaul kilts stpatricksday bagpipers stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:33:32", "license": "3", "title": "yet another hat", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/424544691_25b59acf8b_o.jpg", "secret": "38ac0d3064", "media": "photo", "latitude": "0", "id": "424544691", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:34:06", "license": "3", "title": "cops with kids", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/424544914_de23e96490_o.jpg", "secret": "75bc493bf8", "media": "photo", "latitude": "0", "id": "424544914", "tags": "irish green minnesota outside cops hats stpaul saturday parade daytime twincities saintpaul mn crowds lawenforcement stpatricksday crowded enthusiasm hugsnotdrugs stpatricksdayparade ridiculoushats stpaddysdayparade irishamericans"}, {"datetaken": "2007-03-16 23:35:05", "license": "3", "title": "bouncing girl, one", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/424545145_7430d92718_o.jpg", "secret": "17e3dfc545", "media": "photo", "latitude": "0", "id": "424545145", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:35:09", "license": "3", "title": "bouncing girl, two", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/169/424545061_c789497da1_o.jpg", "secret": "f70177b260", "media": "photo", "latitude": "0", "id": "424545061", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:35:12", "license": "3", "title": "bouncing girl, three", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/424544977_a849f47d64_o.jpg", "secret": "87abc85de0", "media": "photo", "latitude": "0", "id": "424544977", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:36:05", "license": "3", "title": "footwear", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/424544520_e9efd9c049_o.jpg", "secret": "f8e5b27358", "media": "photo", "latitude": "0", "id": "424544520", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:37:11", "license": "3", "title": "so many ridiculous hats", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/424544815_338897f34b_o.jpg", "secret": "00fae2ee0d", "media": "photo", "latitude": "0", "id": "424544815", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:40:43", "license": "3", "title": "masked", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/424545702_c3a241bfa8_o.jpg", "secret": "c049dbb03d", "media": "photo", "latitude": "0", "id": "424545702", "tags": "mask hats stpaul twin masked saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:41:01", "license": "3", "title": "Patricia's Patty? Party? Don't know.", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/424545395_827b6b36c9_o.jpg", "secret": "dc4dcb0b9c", "media": "photo", "latitude": "0", "id": "424545395", "tags": "irish green minnesota outside hats stpaul saturday parade unicycle daytime twincities saintpaul umbrellas unicyclist mn crowds stpatricksday crowded enthusiasm stpatricksdayparade ridiculoushats stpaddysdayparade irishamericans"}, {"datetaken": "2007-03-16 23:41:17", "license": "3", "title": "unicyclist, with umbrella", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/424545461_8df3da1a81_o.jpg", "secret": "d4d615832a", "media": "photo", "latitude": "0", "id": "424545461", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:41:38", "license": "3", "title": "I liked the green and red", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/424545305_c9175b6187_o.jpg", "secret": "4a69bb43c9", "media": "photo", "latitude": "0", "id": "424545305", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:42:46", "license": "3", "title": "busting a move, part one", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/424542495_2ccc997d30_o.jpg", "secret": "9d7d12de4f", "media": "photo", "latitude": "0", "id": "424542495", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:42:47", "license": "3", "title": "busting a move, part two", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/424542368_be63f4904e_o.jpg", "secret": "a79759b11e", "media": "photo", "latitude": "0", "id": "424542368", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:43:24", "license": "3", "title": "covering his ear because of those damned horns", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/424543500_e6ca192925_o.jpg", "secret": "f484904b64", "media": "photo", "latitude": "0", "id": "424543500", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:45:04", "license": "3", "title": "and your little dog too", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/424543677_4b79de613d_o.jpg", "secret": "8e4f7644cb", "media": "photo", "latitude": "0", "id": "424543677", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:46:23", "license": "3", "title": "long skirt, small dog", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/424542189_7b546158db_o.jpg", "secret": "843ea5eb7b", "media": "photo", "latitude": "0", "id": "424542189", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:51:15", "license": "3", "title": "she's taking a photo of me taking a photo of her", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/424543236_6027d55bd8_o.jpg", "secret": "8f118cc82e", "media": "photo", "latitude": "0", "id": "424543236", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:51:22", "license": "3", "title": "it's the uh, cabbage lady", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/111/424543319_e6dd8c4207_o.jpg", "secret": "7ae9ce3594", "media": "photo", "latitude": "0", "id": "424543319", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous cabbagelady cabbagecostume cabbagepants"}, {"datetaken": "2007-03-16 23:52:36", "license": "3", "title": "these damned horns were everywhere and they are LOUD", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/424543575_80af9c947a_o.jpg", "secret": "74c813661c", "media": "photo", "latitude": "0", "id": "424543575", "tags": "hats stpaul twin horn saintpaul loud stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:53:10", "license": "3", "title": "too cool for school", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/424542095_08e7baa369_o.jpg", "secret": "05fafc689e", "media": "photo", "latitude": "0", "id": "424542095", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:55:57", "license": "3", "title": "being carted around in a wheelbarrow", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/424542276_c16e4a890c_o.jpg", "secret": "ce9dcf69a8", "media": "photo", "latitude": "0", "id": "424542276", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:56:10", "license": "3", "title": "Minnesota RollerGirls", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/424541987_ee5f6a7229_o.jpg", "secret": "e7860ccc17", "media": "photo", "latitude": "0", "id": "424541987", "tags": "hats stpaul rollergirls twin saintpaul stpatricksday stpatricksdayparade mnrollergirls stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:56:27", "license": "3", "title": "ready, set", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/424541896_2b5c77a503_o.jpg", "secret": "cf26eee4d6", "media": "photo", "latitude": "0", "id": "424541896", "tags": "hats stpaul rollergirls twin saintpaul stpatricksday stpatricksdayparade mnrollergirls stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:56:49", "license": "3", "title": "let's jam!", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/424541817_ee0c0ba58a_o.jpg", "secret": "ab756e4c4c", "media": "photo", "latitude": "0", "id": "424541817", "tags": "hats stpaul rollergirls twin saintpaul stpatricksday stpatricksdayparade mnrollergirls stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:56:55", "license": "3", "title": "Minnesota RollerGirls", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/424541681_45e2c6d0f3_o.jpg", "secret": "3c51d3b8c8", "media": "photo", "latitude": "0", "id": "424541681", "tags": "hats stpaul rollergirls twin saintpaul stpatricksday stpatricksdayparade mnrollergirls stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:58:03", "license": "3", "title": "a really ratty looking kilt", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/424541577_c86265181f_o.jpg", "secret": "b8dbda48e3", "media": "photo", "latitude": "0", "id": "424541577", "tags": "hats stpaul twin saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2007-03-16 23:59:05", "license": "3", "title": "random band performing near the parade route", "text": "", "album_id": "72157600005620402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/424541468_7ca2035f94_o.jpg", "secret": "ce8a531c4c", "media": "photo", "latitude": "0", "id": "424541468", "tags": "hats stpaul twin accordion saintpaul stpatricksday stpatricksdayparade stpaddysdayparade citiesminnesotamngreenirishirishamericansparadeoutsidedaytimesaturdaycrowdscrowdedenthusiasmridiculous"}, {"datetaken": "2006-10-07 21:21:02", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/105/265405385_37b7e887b6_o.jpg", "secret": "37b7e887b6", "media": "photo", "latitude": "0", "id": "265405385", "tags": "fire"}, {"datetaken": "2006-10-07 21:21:21", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/112/265427460_c17ab606b5_o.jpg", "secret": "c17ab606b5", "media": "photo", "latitude": "0", "id": "265427460", "tags": "chicago sukkot"}, {"datetaken": "2006-10-07 21:21:37", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/265437294_6eefd06a0b_o.jpg", "secret": "6eefd06a0b", "media": "photo", "latitude": "0", "id": "265437294", "tags": "chicago sukkot"}, {"datetaken": "2006-10-07 22:16:25", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/276396643_a0a9484da0_o.jpg", "secret": "a0a9484da0", "media": "photo", "latitude": "0", "id": "276396643", "tags": ""}, {"datetaken": "2006-10-07 22:16:43", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/121/276368661_fbd1378269_o.jpg", "secret": "fbd1378269", "media": "photo", "latitude": "0", "id": "276368661", "tags": ""}, {"datetaken": "2006-10-07 22:18:45", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/265450353_2dc8ffcbe9_o.jpg", "secret": "2dc8ffcbe9", "media": "photo", "latitude": "0", "id": "265450353", "tags": ""}, {"datetaken": "2006-10-07 22:19:06", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/118/265474908_ac4c2c3bc8_o.jpg", "secret": "ac4c2c3bc8", "media": "photo", "latitude": "0", "id": "265474908", "tags": ""}, {"datetaken": "2006-10-07 22:21:36", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/270140939_2e342a8eeb_o.jpg", "secret": "2e342a8eeb", "media": "photo", "latitude": "0", "id": "270140939", "tags": "party sukkot weenieroast"}, {"datetaken": "2006-10-07 22:21:54", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/100/270150100_9174186cac_o.jpg", "secret": "9174186cac", "media": "photo", "latitude": "0", "id": "270150100", "tags": "chicago fire hotdogs sukkot weenieroast"}, {"datetaken": "2006-10-07 22:22:08", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/116/270154626_5f55d54244_o.jpg", "secret": "5f55d54244", "media": "photo", "latitude": "0", "id": "270154626", "tags": "chicago fire hotdog sukkot weenieroast"}, {"datetaken": "2006-10-07 22:25:19", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/270261288_1e851cb878_o.jpg", "secret": "1e851cb878", "media": "photo", "latitude": "0", "id": "270261288", "tags": ""}, {"datetaken": "2006-10-07 22:25:39", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/276392579_d0d711f2a9_o.jpg", "secret": "d0d711f2a9", "media": "photo", "latitude": "0", "id": "276392579", "tags": ""}, {"datetaken": "2006-10-07 22:34:41", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/119/276387965_f51cc15c8a_o.jpg", "secret": "f51cc15c8a", "media": "photo", "latitude": "0", "id": "276387965", "tags": ""}, {"datetaken": "2006-10-07 22:36:19", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/116/270166066_eec59b98c5_o.jpg", "secret": "eec59b98c5", "media": "photo", "latitude": "0", "id": "270166066", "tags": "chicago bill sukkot"}, {"datetaken": "2006-10-07 22:37:45", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/270189481_a0c8a24e3e_o.jpg", "secret": "a0c8a24e3e", "media": "photo", "latitude": "0", "id": "270189481", "tags": "chicago bill theresa sukkot"}, {"datetaken": "2006-10-07 22:53:27", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/110/276400443_58cf94cb53_o.jpg", "secret": "58cf94cb53", "media": "photo", "latitude": "0", "id": "276400443", "tags": ""}, {"datetaken": "2006-10-07 23:11:09", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/270211884_82dd20c2aa_o.jpg", "secret": "82dd20c2aa", "media": "photo", "latitude": "0", "id": "270211884", "tags": ""}, {"datetaken": "2006-10-07 23:24:20", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/105/270224158_181d83b512_o.jpg", "secret": "181d83b512", "media": "photo", "latitude": "0", "id": "270224158", "tags": ""}, {"datetaken": "2006-10-07 23:24:25", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/120/270235894_2335786999_o.jpg", "secret": "2335786999", "media": "photo", "latitude": "0", "id": "270235894", "tags": ""}, {"datetaken": "2006-10-08 00:12:18", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/274571144_c2c25e1aed_o.jpg", "secret": "c2c25e1aed", "media": "photo", "latitude": "0", "id": "274571144", "tags": ""}, {"datetaken": "2006-10-08 00:12:32", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/276227453_3d3504a672_o.jpg", "secret": "3d3504a672", "media": "photo", "latitude": "0", "id": "276227453", "tags": ""}, {"datetaken": "2006-10-08 00:13:39", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/276286657_c7f6fb4bd1_o.jpg", "secret": "c7f6fb4bd1", "media": "photo", "latitude": "0", "id": "276286657", "tags": ""}, {"datetaken": "2006-10-08 00:13:47", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/115/276294923_ba8e168f84_o.jpg", "secret": "ba8e168f84", "media": "photo", "latitude": "0", "id": "276294923", "tags": ""}, {"datetaken": "2006-10-08 00:15:39", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/107/276307877_02d64cf8eb_o.jpg", "secret": "02d64cf8eb", "media": "photo", "latitude": "0", "id": "276307877", "tags": ""}, {"datetaken": "2006-10-08 00:26:42", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/121/276214118_d1c9212f46_o.jpg", "secret": "d1c9212f46", "media": "photo", "latitude": "0", "id": "276214118", "tags": ""}, {"datetaken": "2006-10-08 00:28:25", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/103/276172017_91044fc66e_o.jpg", "secret": "91044fc66e", "media": "photo", "latitude": "0", "id": "276172017", "tags": ""}, {"datetaken": "2006-10-08 00:40:54", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/276204681_3ee0b94dc5_o.jpg", "secret": "3ee0b94dc5", "media": "photo", "latitude": "0", "id": "276204681", "tags": ""}, {"datetaken": "2006-10-08 00:41:12", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/114/276187846_f6d6782f9c_o.jpg", "secret": "f6d6782f9c", "media": "photo", "latitude": "0", "id": "276187846", "tags": ""}, {"datetaken": "2006-10-08 00:42:06", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/276235569_1a14d7dbfc_o.jpg", "secret": "1a14d7dbfc", "media": "photo", "latitude": "0", "id": "276235569", "tags": ""}, {"datetaken": "2006-10-08 00:47:04", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/100/276280322_8969674d19_o.jpg", "secret": "8969674d19", "media": "photo", "latitude": "0", "id": "276280322", "tags": ""}, {"datetaken": "2006-10-08 01:03:14", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/276246138_1d4ee63b0d_o.jpg", "secret": "1d4ee63b0d", "media": "photo", "latitude": "0", "id": "276246138", "tags": ""}, {"datetaken": "2006-10-08 01:03:55", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/276316422_3ad5373618_o.jpg", "secret": "3ad5373618", "media": "photo", "latitude": "0", "id": "276316422", "tags": ""}, {"datetaken": "2006-10-08 01:04:33", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/276264858_b403826455_o.jpg", "secret": "b403826455", "media": "photo", "latitude": "0", "id": "276264858", "tags": ""}, {"datetaken": "2006-10-08 01:05:12", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/113/276338618_66f8be49ff_o.jpg", "secret": "66f8be49ff", "media": "photo", "latitude": "0", "id": "276338618", "tags": ""}, {"datetaken": "2006-10-08 01:05:31", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/276352098_ee12241e1b_o.jpg", "secret": "ee12241e1b", "media": "photo", "latitude": "0", "id": "276352098", "tags": ""}, {"datetaken": "2006-10-08 01:05:56", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/276357625_8c3a4e6437_o.jpg", "secret": "8c3a4e6437", "media": "photo", "latitude": "0", "id": "276357625", "tags": ""}, {"datetaken": "2006-10-08 01:06:04", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/115/276347604_fed51a3ced_o.jpg", "secret": "fed51a3ced", "media": "photo", "latitude": "0", "id": "276347604", "tags": ""}, {"datetaken": "2006-10-08 01:06:12", "license": "1", "title": "Bill's Sukkot Shindig in Chicago", "text": "", "album_id": "72157594320730897", "longitude": "0", "url_o": "https://farm1.staticflickr.com/109/276362451_11ccb7118b_o.jpg", "secret": "11ccb7118b", "media": "photo", "latitude": "0", "id": "276362451", "tags": ""}, {"datetaken": "2006-02-05 16:58:00", "license": "1", "title": "020520061387.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/96000272_3809694baa_o.jpg", "secret": "3809694baa", "media": "photo", "latitude": "0", "id": "96000272", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 16:58:17", "license": "1", "title": "020520061388.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/96001772_c4022dcc54_o.jpg", "secret": "c4022dcc54", "media": "photo", "latitude": "0", "id": "96001772", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 16:58:40", "license": "1", "title": "020520061389.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/96003230_4d751589da_o.jpg", "secret": "4d751589da", "media": "photo", "latitude": "0", "id": "96003230", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 18:48:29", "license": "1", "title": "020520061391.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/96043979_d5587c359a_o.jpg", "secret": "d5587c359a", "media": "photo", "latitude": "0", "id": "96043979", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 18:48:44", "license": "1", "title": "020520061392.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/96044588_e36d712974_o.jpg", "secret": "e36d712974", "media": "photo", "latitude": "0", "id": "96044588", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 18:48:59", "license": "1", "title": "020520061393.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/96044993_ff417bb4c1_o.jpg", "secret": "ff417bb4c1", "media": "photo", "latitude": "0", "id": "96044993", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 18:49:14", "license": "1", "title": "020520061394.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/96045144_0f15cdc250_o.jpg", "secret": "0f15cdc250", "media": "photo", "latitude": "0", "id": "96045144", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 18:49:28", "license": "1", "title": "020520061395.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/96045445_acea606735_o.jpg", "secret": "acea606735", "media": "photo", "latitude": "0", "id": "96045445", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 18:50:57", "license": "1", "title": "020520061396.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/96046441_3a37fc622e_o.jpg", "secret": "3a37fc622e", "media": "photo", "latitude": "0", "id": "96046441", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 18:51:09", "license": "1", "title": "020520061397.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/96047567_ab1c0c6bea_o.jpg", "secret": "ab1c0c6bea", "media": "photo", "latitude": "0", "id": "96047567", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 18:51:21", "license": "1", "title": "020520061398.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/96048370_91d872aab5_o.jpg", "secret": "91d872aab5", "media": "photo", "latitude": "0", "id": "96048370", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 19:04:50", "license": "1", "title": "020520061399.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/96049783_f421382b51_o.jpg", "secret": "f421382b51", "media": "photo", "latitude": "0", "id": "96049783", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 19:05:36", "license": "1", "title": "020520061400.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/96050477_eb2d1780e4_o.jpg", "secret": "eb2d1780e4", "media": "photo", "latitude": "0", "id": "96050477", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 19:05:47", "license": "1", "title": "020520061401.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/96052573_d3547840dc_o.jpg", "secret": "d3547840dc", "media": "photo", "latitude": "0", "id": "96052573", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 20:02:17", "license": "1", "title": "020520061402.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/96130795_784143e065_o.jpg", "secret": "784143e065", "media": "photo", "latitude": "0", "id": "96130795", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 20:26:18", "license": "1", "title": "020520061403.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/96129020_f7c2da2f52_o.jpg", "secret": "f7c2da2f52", "media": "photo", "latitude": "0", "id": "96129020", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 20:26:33", "license": "1", "title": "020520061404.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/96127933_1d532e1be1_o.jpg", "secret": "1d532e1be1", "media": "photo", "latitude": "0", "id": "96127933", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 20:26:47", "license": "1", "title": "020520061405.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/96126806_2faadcab18_o.jpg", "secret": "2faadcab18", "media": "photo", "latitude": "0", "id": "96126806", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 20:27:11", "license": "1", "title": "020520061406.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/96126042_0a08d8771d_o.jpg", "secret": "0a08d8771d", "media": "photo", "latitude": "0", "id": "96126042", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-05 20:39:56", "license": "1", "title": "020520061407.jpg", "text": "", "album_id": "72057594059970350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/96125013_2bbfc7481d_o.jpg", "secret": "2bbfc7481d", "media": "photo", "latitude": "0", "id": "96125013", "tags": "camera party chicago shozu nokia football phone super bowl superbowl harper n70 skinnycorp"}, {"datetaken": "2006-02-04 18:46:06", "license": "2", "title": "IMG_2627", "text": "", "album_id": "72057594059978402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/96137581_84a0513b49_o.jpg", "secret": "84a0513b49", "media": "photo", "latitude": "0", "id": "96137581", "tags": "detroit superbowl superbowlweekend"}, {"datetaken": "2006-02-04 20:22:09", "license": "2", "title": "IMG_2630", "text": "", "album_id": "72057594059978402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/96137758_72f7723167_o.jpg", "secret": "72f7723167", "media": "photo", "latitude": "0", "id": "96137758", "tags": "detroit superbowl superbowlweekend"}, {"datetaken": "2006-02-04 20:24:50", "license": "2", "title": "IMG_2631", "text": "", "album_id": "72057594059978402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/96137968_c8645646b1_o.jpg", "secret": "c8645646b1", "media": "photo", "latitude": "0", "id": "96137968", "tags": "detroit superbowl superbowlweekend"}, {"datetaken": "2006-02-04 20:39:03", "license": "2", "title": "IMG_2634", "text": "", "album_id": "72057594059978402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/96138209_828b83371a_o.jpg", "secret": "828b83371a", "media": "photo", "latitude": "0", "id": "96138209", "tags": "detroit superbowl superbowlweekend"}, {"datetaken": "2006-02-04 22:23:14", "license": "2", "title": "IMG_2635", "text": "", "album_id": "72057594059978402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/96138458_8bed67c473_o.jpg", "secret": "8bed67c473", "media": "photo", "latitude": "0", "id": "96138458", "tags": "detroit superbowl superbowlweekend"}, {"datetaken": "2006-02-04 22:23:32", "license": "2", "title": "IMG_2636", "text": "", "album_id": "72057594059978402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/96138681_10e3776d0e_o.jpg", "secret": "10e3776d0e", "media": "photo", "latitude": "0", "id": "96138681", "tags": "detroit superbowl superbowlweekend"}, {"datetaken": "2006-02-04 22:26:13", "license": "2", "title": "IMG_2638", "text": "", "album_id": "72057594059978402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/96138890_b9a6e69db5_o.jpg", "secret": "b9a6e69db5", "media": "photo", "latitude": "0", "id": "96138890", "tags": "detroit superbowl superbowlweekend"}, {"datetaken": "2006-02-04 22:26:26", "license": "2", "title": "IMG_2639", "text": "", "album_id": "72057594059978402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/96139127_89bd47791f_o.jpg", "secret": "89bd47791f", "media": "photo", "latitude": "0", "id": "96139127", "tags": "detroit superbowl superbowlweekend"}, {"datetaken": "2006-02-04 22:50:47", "license": "2", "title": "IMG_2643", "text": "", "album_id": "72057594059978402", "longitude": "-83.046759", "url_o": "https://farm1.staticflickr.com/34/96139275_42ffcb2e84_o.jpg", "secret": "42ffcb2e84", "media": "photo", "latitude": "42.331630", "id": "96139275", "tags": "detroit superbowl superbowlweekend"}, {"datetaken": "2006-02-04 23:12:03", "license": "2", "title": "IMG_2645", "text": "", "album_id": "72057594059978402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/96139535_ac94192797_o.jpg", "secret": "ac94192797", "media": "photo", "latitude": "0", "id": "96139535", "tags": "detroit superbowl superbowlweekend"}, {"datetaken": "2006-02-05 01:39:11", "license": "2", "title": "IMG_2646", "text": "", "album_id": "72057594059978402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/96146555_c4dd5415ec_o.jpg", "secret": "c4dd5415ec", "media": "photo", "latitude": "0", "id": "96146555", "tags": "detroit superbowl"}, {"datetaken": "2006-02-05 01:43:06", "license": "2", "title": "Martin, Me and Chris", "text": "", "album_id": "72057594059978402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/96146749_768cfa53e4_o.jpg", "secret": "768cfa53e4", "media": "photo", "latitude": "0", "id": "96146749", "tags": "chris party me ego martin detroit superbowl backsell"}, {"datetaken": "2006-02-05 12:32:44", "license": "2", "title": "IMG_2656", "text": "", "album_id": "72057594059978402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/96146929_62fc41694f_o.jpg", "secret": "62fc41694f", "media": "photo", "latitude": "0", "id": "96146929", "tags": "detroit superbowl"}, {"datetaken": "2006-02-05 12:58:09", "license": "2", "title": "IMG_2657", "text": "", "album_id": "72057594059978402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/96147213_ed5476e16f_o.jpg", "secret": "ed5476e16f", "media": "photo", "latitude": "0", "id": "96147213", "tags": "detroit superbowl"}, {"datetaken": "2006-02-05 12:58:35", "license": "2", "title": "IMG_2658", "text": "", "album_id": "72057594059978402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/96147464_f53a095590_o.jpg", "secret": "f53a095590", "media": "photo", "latitude": "0", "id": "96147464", "tags": "detroit superbowl"}, {"datetaken": "2006-02-05 12:59:28", "license": "2", "title": "IMG_2662", "text": "", "album_id": "72057594059978402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/96147660_33d2323288_o.jpg", "secret": "33d2323288", "media": "photo", "latitude": "0", "id": "96147660", "tags": "detroit superbowl"}, {"datetaken": "2006-02-05 13:51:10", "license": "2", "title": "Renaissance center Detroit", "text": "", "album_id": "72057594059978402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/96147853_9c0cceea5a_o.jpg", "secret": "9c0cceea5a", "media": "photo", "latitude": "0", "id": "96147853", "tags": "detroit superbowl"}, {"datetaken": "2006-02-05 14:09:07", "license": "2", "title": "The gang", "text": "", "album_id": "72057594059978402", "longitude": "-83.048355", "url_o": "https://farm1.staticflickr.com/43/96148048_d258a77c10_o.jpg", "secret": "d258a77c10", "media": "photo", "latitude": "42.327552", "id": "96148048", "tags": "detroit superbowl"}, {"datetaken": "2006-02-05 14:17:45", "license": "2", "title": "IMG_2667", "text": "", "album_id": "72057594059978402", "longitude": "-83.048355", "url_o": "https://farm1.staticflickr.com/23/96148201_7863a2de8d_o.jpg", "secret": "7863a2de8d", "media": "photo", "latitude": "42.327552", "id": "96148201", "tags": "detroit superbowl"}, {"datetaken": "2006-02-05 14:18:04", "license": "2", "title": "IMG_2668", "text": "", "album_id": "72057594059978402", "longitude": "-83.048355", "url_o": "https://farm1.staticflickr.com/11/96148428_515b1d8f70_o.jpg", "secret": "515b1d8f70", "media": "photo", "latitude": "42.327552", "id": "96148428", "tags": "detroit superbowl"}, {"datetaken": "2006-02-05 14:29:16", "license": "2", "title": "IMG_2669", "text": "", "album_id": "72057594059978402", "longitude": "-83.048355", "url_o": "https://farm1.staticflickr.com/33/96148648_861a29c40d_o.jpg", "secret": "861a29c40d", "media": "photo", "latitude": "42.327552", "id": "96148648", "tags": "detroit superbowl"}, {"datetaken": "2006-02-05 14:29:30", "license": "2", "title": "Zack making a run", "text": "", "album_id": "72057594059978402", "longitude": "-83.048355", "url_o": "https://farm1.staticflickr.com/19/96148804_0c726d9824_o.jpg", "secret": "0c726d9824", "media": "photo", "latitude": "42.327552", "id": "96148804", "tags": "detroit superbowl"}, {"datetaken": "2006-02-05 14:36:36", "license": "2", "title": "IMG_2671", "text": "", "album_id": "72057594059978402", "longitude": "-83.048355", "url_o": "https://farm1.staticflickr.com/29/96148980_cf87d8848c_o.jpg", "secret": "cf87d8848c", "media": "photo", "latitude": "42.327552", "id": "96148980", "tags": "detroit superbowl"}, {"datetaken": "2006-02-05 14:39:01", "license": "2", "title": "IMG_2672", "text": "", "album_id": "72057594059978402", "longitude": "-83.048355", "url_o": "https://farm1.staticflickr.com/12/96149168_c02f4a9c62_o.jpg", "secret": "c02f4a9c62", "media": "photo", "latitude": "42.327552", "id": "96149168", "tags": "detroit superbowl"}, {"datetaken": "2006-02-05 15:05:40", "license": "2", "title": "Soudy and me", "text": "", "album_id": "72057594059978402", "longitude": "-83.048355", "url_o": "https://farm1.staticflickr.com/25/96149295_ee1db6322c_o.jpg", "secret": "ee1db6322c", "media": "photo", "latitude": "42.327552", "id": "96149295", "tags": "me detroit superbowl soudy nflexperience"}, {"datetaken": "2006-02-05 15:09:40", "license": "2", "title": "IMG_2674", "text": "", "album_id": "72057594059978402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/96149572_ffc4597f21_o.jpg", "secret": "ffc4597f21", "media": "photo", "latitude": "0", "id": "96149572", "tags": "detroit superbowl"}, {"datetaken": "2006-02-05 15:09:52", "license": "2", "title": "IMG_2675", "text": "", "album_id": "72057594059978402", "longitude": "-83.048355", "url_o": "https://farm1.staticflickr.com/36/96149785_e1e673eac4_o.jpg", "secret": "e1e673eac4", "media": "photo", "latitude": "42.327552", "id": "96149785", "tags": "detroit superbowl"}, {"datetaken": "2006-02-05 15:17:46", "license": "2", "title": "IMG_2676", "text": "", "album_id": "72057594059978402", "longitude": "-83.048355", "url_o": "https://farm1.staticflickr.com/19/96149970_0b76b03650_o.jpg", "secret": "0b76b03650", "media": "photo", "latitude": "42.327552", "id": "96149970", "tags": "detroit superbowl"}, {"datetaken": "2006-02-05 15:39:13", "license": "2", "title": "IMG_2679", "text": "", "album_id": "72057594059978402", "longitude": "-83.048355", "url_o": "https://farm1.staticflickr.com/19/96150098_2a47de0993_o.jpg", "secret": "2a47de0993", "media": "photo", "latitude": "42.327552", "id": "96150098", "tags": "detroit superbowl"}, {"datetaken": "2006-02-05 19:11:11", "license": "3", "title": "Imported Photos 000021", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/97346531_e99dfa963b_o.jpg", "secret": "e99dfa963b", "media": "photo", "latitude": "0", "id": "97346531", "tags": "super bowl"}, {"datetaken": "2006-02-05 19:11:21", "license": "3", "title": "Imported Photos 00003", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/97346903_12e4dc73cf_o.jpg", "secret": "12e4dc73cf", "media": "photo", "latitude": "0", "id": "97346903", "tags": "super bowl"}, {"datetaken": "2006-02-05 19:11:27", "license": "3", "title": "Imported Photos 00004", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/97346804_493c17e5c0_o.jpg", "secret": "493c17e5c0", "media": "photo", "latitude": "0", "id": "97346804", "tags": "super bowl"}, {"datetaken": "2006-02-05 19:40:39", "license": "3", "title": "Imported Photos 00006", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/97346727_e157f234a2_o.jpg", "secret": "e157f234a2", "media": "photo", "latitude": "0", "id": "97346727", "tags": "super bowl"}, {"datetaken": "2006-02-05 19:41:34", "license": "3", "title": "Imported Photos 000081", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/97346395_996e47299a_o.jpg", "secret": "996e47299a", "media": "photo", "latitude": "0", "id": "97346395", "tags": "super bowl"}, {"datetaken": "2006-02-05 19:42:14", "license": "3", "title": "Imported Photos 000091", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/97346318_ac89e5bfb1_o.jpg", "secret": "ac89e5bfb1", "media": "photo", "latitude": "0", "id": "97346318", "tags": "super bowl"}, {"datetaken": "2006-02-05 19:43:08", "license": "3", "title": "Imported Photos 000101", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/97346244_e337470a10_o.jpg", "secret": "e337470a10", "media": "photo", "latitude": "0", "id": "97346244", "tags": "super bowl"}, {"datetaken": "2006-02-05 19:43:48", "license": "3", "title": "Game", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/96873632_f9d0f84cce_o.jpg", "secret": "f9d0f84cce", "media": "photo", "latitude": "0", "id": "96873632", "tags": ""}, {"datetaken": "2006-02-05 20:00:20", "license": "3", "title": "Imported Photos 00012", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/97346624_79a285dc27_o.jpg", "secret": "79a285dc27", "media": "photo", "latitude": "0", "id": "97346624", "tags": "super bowl"}, {"datetaken": "2006-02-05 20:12:28", "license": "3", "title": "Imported Photos 000161", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/97345852_0d4c93902d_o.jpg", "secret": "0d4c93902d", "media": "photo", "latitude": "0", "id": "97345852", "tags": "super bowl"}, {"datetaken": "2006-02-05 20:25:16", "license": "3", "title": "Imported Photos 000191", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/97345744_84d4fd0f0c_o.jpg", "secret": "84d4fd0f0c", "media": "photo", "latitude": "0", "id": "97345744", "tags": "super bowl"}, {"datetaken": "2006-02-05 20:27:09", "license": "3", "title": "Imported Photos 000202", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/97345641_96e31aff2c_o.jpg", "secret": "96e31aff2c", "media": "photo", "latitude": "0", "id": "97345641", "tags": "super bowl"}, {"datetaken": "2006-02-05 22:55:27", "license": "3", "title": "Imported Photos 000211", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/97345532_788a2c0cfe_o.jpg", "secret": "788a2c0cfe", "media": "photo", "latitude": "0", "id": "97345532", "tags": "super bowl"}, {"datetaken": "2006-02-05 22:59:08", "license": "3", "title": "Imported Photos 000231", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/97345221_40e389cecf_o.jpg", "secret": "40e389cecf", "media": "photo", "latitude": "0", "id": "97345221", "tags": "super bowl"}, {"datetaken": "2006-02-06 00:37:40", "license": "3", "title": "Imported Photos 000251", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/97344969_b23e6a2bf5_o.jpg", "secret": "b23e6a2bf5", "media": "photo", "latitude": "0", "id": "97344969", "tags": "super bowl"}, {"datetaken": "2006-02-06 00:57:19", "license": "3", "title": "Imported Photos DSC005551", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/97342327_db94a3fbce_o.jpg", "secret": "db94a3fbce", "media": "photo", "latitude": "0", "id": "97342327", "tags": "super bowl"}, {"datetaken": "2006-02-06 01:01:33", "license": "3", "title": "Imported Photos 000301", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/97344715_caa95577de_o.jpg", "secret": "caa95577de", "media": "photo", "latitude": "0", "id": "97344715", "tags": "super bowl"}, {"datetaken": "2006-02-06 01:02:18", "license": "3", "title": "Imported Photos 000311", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/97344455_6f7c91ed09_o.jpg", "secret": "6f7c91ed09", "media": "photo", "latitude": "0", "id": "97344455", "tags": "super bowl"}, {"datetaken": "2006-02-06 01:03:36", "license": "3", "title": "Imported Photos 000321", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/97344164_38049b72fe_o.jpg", "secret": "38049b72fe", "media": "photo", "latitude": "0", "id": "97344164", "tags": "super bowl"}, {"datetaken": "2006-02-06 01:04:52", "license": "3", "title": "Imported Photos 000371", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/97343939_7c35c9f83b_o.jpg", "secret": "7c35c9f83b", "media": "photo", "latitude": "0", "id": "97343939", "tags": "super bowl"}, {"datetaken": "2006-02-06 01:05:10", "license": "3", "title": "Imported Photos 000381", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/97343662_397dc08fab_o.jpg", "secret": "397dc08fab", "media": "photo", "latitude": "0", "id": "97343662", "tags": "super bowl"}, {"datetaken": "2006-02-06 01:08:33", "license": "3", "title": "Imported Photos 000441", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/97343430_966b0884f5_o.jpg", "secret": "966b0884f5", "media": "photo", "latitude": "0", "id": "97343430", "tags": "super bowl"}, {"datetaken": "2006-02-06 01:08:52", "license": "3", "title": "Imported Photos 000451", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/97343121_cb806d20ab_o.jpg", "secret": "cb806d20ab", "media": "photo", "latitude": "0", "id": "97343121", "tags": "super bowl"}, {"datetaken": "2006-02-06 02:01:56", "license": "3", "title": "Imported Photos 000461", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/97342851_ec34541bf1_o.jpg", "secret": "ec34541bf1", "media": "photo", "latitude": "0", "id": "97342851", "tags": "super bowl"}, {"datetaken": "2006-02-06 03:28:09", "license": "3", "title": "Imported Photos 000501", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/97342573_0f4a7b0879_o.jpg", "secret": "0f4a7b0879", "media": "photo", "latitude": "0", "id": "97342573", "tags": "super bowl"}, {"datetaken": "2006-02-06 03:37:52", "license": "3", "title": "Imported Photos DSC005821", "text": "", "album_id": "72157594179308414", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/97342130_5d1db93b02_o.jpg", "secret": "5d1db93b02", "media": "photo", "latitude": "0", "id": "97342130", "tags": "super bowl"}, {"datetaken": "2006-07-14 06:40:15", "license": "3", "title": "IMG011", "text": "", "album_id": "72157594198881999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/189401869_0d47717ee4_o.jpg", "secret": "0d47717ee4", "media": "photo", "latitude": "0", "id": "189401869", "tags": "camera 2006 cooper disposable"}, {"datetaken": "2006-07-14 06:40:15", "license": "3", "title": "IMG010", "text": "", "album_id": "72157594198881999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/189401854_48067d1c6a_o.jpg", "secret": "48067d1c6a", "media": "photo", "latitude": "0", "id": "189401854", "tags": "camera portrait self michael 2006 sullivan disposable"}, {"datetaken": "2006-07-14 06:40:16", "license": "3", "title": "IMG014", "text": "", "album_id": "72157594198881999", "longitude": "-82.419401", "url_o": "https://farm1.staticflickr.com/57/189401883_a977047cc5_o.jpg", "secret": "a977047cc5", "media": "photo", "latitude": "38.414975", "id": "189401883", "tags": "camera 2006 slice disposable"}, {"datetaken": "2006-07-14 06:40:16", "license": "3", "title": "IMG013", "text": "", "album_id": "72157594198881999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/189401881_0ad1f2997c_o.jpg", "secret": "0ad1f2997c", "media": "photo", "latitude": "0", "id": "189401881", "tags": "camera tim steve 2006 cooper disposable"}, {"datetaken": "2006-07-14 06:40:17", "license": "3", "title": "IMG016", "text": "", "album_id": "72157594198881999", "longitude": "-82.419401", "url_o": "https://farm1.staticflickr.com/74/189401903_f6b6b2a952_o.jpg", "secret": "f6b6b2a952", "media": "photo", "latitude": "38.414975", "id": "189401903", "tags": "camera michael ryan ashley 2006 morgan sullivan disposable"}, {"datetaken": "2006-07-14 06:40:17", "license": "3", "title": "IMG015", "text": "", "album_id": "72157594198881999", "longitude": "-82.419401", "url_o": "https://farm1.staticflickr.com/53/189401892_59436dea54_o.jpg", "secret": "59436dea54", "media": "photo", "latitude": "38.414975", "id": "189401892", "tags": "camera michael ashley 2006 morgan sullivan disposable"}, {"datetaken": "2006-07-14 06:40:18", "license": "3", "title": "IMG021", "text": "", "album_id": "72157594198881999", "longitude": "-82.419401", "url_o": "https://farm1.staticflickr.com/47/189401921_f5d8756326_o.jpg", "secret": "f5d8756326", "media": "photo", "latitude": "38.414975", "id": "189401921", "tags": "camera 2006 morgan sullivan disposable"}, {"datetaken": "2006-07-14 06:40:19", "license": "3", "title": "IMG023", "text": "", "album_id": "72157594198881999", "longitude": "-82.419401", "url_o": "https://farm1.staticflickr.com/52/189401930_ffff4efcba_o.jpg", "secret": "ffff4efcba", "media": "photo", "latitude": "38.414975", "id": "189401930", "tags": "camera steve 2006 disposable"}, {"datetaken": "2006-07-14 06:40:19", "license": "3", "title": "IMG022", "text": "", "album_id": "72157594198881999", "longitude": "-82.419401", "url_o": "https://farm1.staticflickr.com/65/189401926_e4538c4e32_o.jpg", "secret": "e4538c4e32", "media": "photo", "latitude": "38.414975", "id": "189401926", "tags": "camera 2006 disposable"}, {"datetaken": "2006-07-14 06:40:20", "license": "3", "title": "IMG024", "text": "", "album_id": "72157594198881999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/189401943_b443777936_o.jpg", "secret": "b443777936", "media": "photo", "latitude": "0", "id": "189401943", "tags": "camera 2006 disposable"}, {"datetaken": "2006-07-14 06:40:21", "license": "3", "title": "IMG026", "text": "", "album_id": "72157594198881999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/189401963_c8e4691da3_o.jpg", "secret": "c8e4691da3", "media": "photo", "latitude": "0", "id": "189401963", "tags": "camera 2006 disposable"}, {"datetaken": "2006-07-14 06:40:21", "license": "3", "title": "IMG025", "text": "", "album_id": "72157594198881999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/189401952_3e2d2c8024_o.jpg", "secret": "3e2d2c8024", "media": "photo", "latitude": "0", "id": "189401952", "tags": "camera sarah 2006 disposable stevessister"}, {"datetaken": "2006-07-14 09:24:03", "license": "3", "title": "IMG017", "text": "", "album_id": "72157594198881999", "longitude": "-82.419401", "url_o": "https://farm1.staticflickr.com/71/189401909_1c6a2c83ce_o.jpg", "secret": "1c6a2c83ce", "media": "photo", "latitude": "38.414975", "id": "189401909", "tags": "camera 2006 disposable"}, {"datetaken": "2006-07-14 09:26:20", "license": "3", "title": "IMG021", "text": "", "album_id": "72157594198881999", "longitude": "-82.419401", "url_o": "https://farm1.staticflickr.com/47/189396627_3298db6054_o.jpg", "secret": "3298db6054", "media": "photo", "latitude": "38.414975", "id": "189396627", "tags": "camera michael 2006 morgan sullivan disposable"}, {"datetaken": "2006-07-14 09:26:33", "license": "3", "title": "IMG014", "text": "", "album_id": "72157594198881999", "longitude": "-82.419401", "url_o": "https://farm1.staticflickr.com/54/189396745_032217d524_o.jpg", "secret": "032217d524", "media": "photo", "latitude": "38.414975", "id": "189396745", "tags": "camera university pittsburgh 2006 marshall slice steelers mut disposable"}, {"datetaken": "2007-02-20 11:36:37", "license": "5", "title": "Long & Th\u1eafng", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/397789256_87be556c8a_o.jpg", "secret": "87be556c8a", "media": "photo", "latitude": "0", "id": "397789256", "tags": ""}, {"datetaken": "2007-02-20 11:37:01", "license": "5", "title": "Long, Th\u1eafng, B\u1ea3o", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/111/397789455_cfc64af538_o.jpg", "secret": "cfc64af538", "media": "photo", "latitude": "0", "id": "397789455", "tags": ""}, {"datetaken": "2007-02-20 11:37:12", "license": "5", "title": "e Ng\u1ecdc", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/397789719_a31f1ef276_o.jpg", "secret": "a31f1ef276", "media": "photo", "latitude": "0", "id": "397789719", "tags": ""}, {"datetaken": "2007-02-20 11:37:20", "license": "5", "title": "DSC01708", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/397789910_c16df2c84b_o.jpg", "secret": "c16df2c84b", "media": "photo", "latitude": "0", "id": "397789910", "tags": ""}, {"datetaken": "2007-02-20 11:37:32", "license": "5", "title": "coi cu T\u00e2m Bi k\u00eca", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/397790082_4121fbc814_o.jpg", "secret": "4121fbc814", "media": "photo", "latitude": "0", "id": "397790082", "tags": ""}, {"datetaken": "2007-02-20 11:38:04", "license": "5", "title": "L\u1edbp 12a1", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/397790269_a96945096c_o.jpg", "secret": "a96945096c", "media": "photo", "latitude": "0", "id": "397790269", "tags": ""}, {"datetaken": "2007-02-20 12:26:20", "license": "5", "title": "Con anh C\u01b0\u1eddng", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/397790465_3391a6bef1_o.jpg", "secret": "3391a6bef1", "media": "photo", "latitude": "0", "id": "397790465", "tags": ""}, {"datetaken": "2007-02-20 12:26:27", "license": "5", "title": "con a C\u01b0\u1eddng", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/397790625_5291bf84ab_o.jpg", "secret": "5291bf84ab", "media": "photo", "latitude": "0", "id": "397790625", "tags": ""}, {"datetaken": "2007-02-20 13:05:31", "license": "5", "title": "DSC01713", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/397790878_657aa0d8d3_o.jpg", "secret": "657aa0d8d3", "media": "photo", "latitude": "0", "id": "397790878", "tags": ""}, {"datetaken": "2007-02-20 13:06:41", "license": "5", "title": "H\u1ecdc tr\u00f2 m\u1eb9", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/397791134_32b28bc046_o.jpg", "secret": "32b28bc046", "media": "photo", "latitude": "0", "id": "397791134", "tags": ""}, {"datetaken": "2007-02-20 13:07:47", "license": "5", "title": "DSC01715", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/397791429_103acdb90c_o.jpg", "secret": "103acdb90c", "media": "photo", "latitude": "0", "id": "397791429", "tags": ""}, {"datetaken": "2007-02-20 19:18:50", "license": "5", "title": "H\u1ebbm", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/397791543_d9f2a99d96_o.jpg", "secret": "d9f2a99d96", "media": "photo", "latitude": "0", "id": "397791543", "tags": ""}, {"datetaken": "2007-02-20 20:29:26", "license": "5", "title": "Super Bowl", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/397791665_84eb76b6db_o.jpg", "secret": "84eb76b6db", "media": "photo", "latitude": "0", "id": "397791665", "tags": ""}, {"datetaken": "2007-02-21 14:38:59", "license": "5", "title": "Nh\u00e0 H\u00e0 2", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/397791734_993832c9cb_o.jpg", "secret": "993832c9cb", "media": "photo", "latitude": "0", "id": "397791734", "tags": ""}, {"datetaken": "2007-02-21 14:39:16", "license": "5", "title": "Nh\u00e0 H\u00e0 1", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/397791870_0cb34a2651_o.jpg", "secret": "0cb34a2651", "media": "photo", "latitude": "0", "id": "397791870", "tags": ""}, {"datetaken": "2007-02-21 16:17:17", "license": "5", "title": "h\u00ecnh my l\u00f9n trong ph\u00f2ng ai v\u1eady ta", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/397791915_f9716de3c2_o.jpg", "secret": "f9716de3c2", "media": "photo", "latitude": "0", "id": "397791915", "tags": ""}, {"datetaken": "2007-02-21 16:17:28", "license": "5", "title": "h\u00ecnh my l\u00f9n trong ph\u00f2ng ai v\u1eady ta", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/397792121_1ef13ecb5d_o.jpg", "secret": "1ef13ecb5d", "media": "photo", "latitude": "0", "id": "397792121", "tags": ""}, {"datetaken": "2007-02-21 16:22:20", "license": "5", "title": "a nice house", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/397792257_6ea96d5229_o.jpg", "secret": "6ea96d5229", "media": "photo", "latitude": "0", "id": "397792257", "tags": ""}, {"datetaken": "2007-02-21 16:22:30", "license": "5", "title": "1 ng\u00f4i nh\u00e0 n\u00e0o \u0111\u00f3", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/397792329_8063f701b9_o.jpg", "secret": "8063f701b9", "media": "photo", "latitude": "0", "id": "397792329", "tags": ""}, {"datetaken": "2007-02-21 19:01:19", "license": "5", "title": "L\u1edbp DH c\u1ee7a m\u1eb9", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/397792698_8cf81468e4_o.jpg", "secret": "8cf81468e4", "media": "photo", "latitude": "0", "id": "397792698", "tags": ""}, {"datetaken": "2007-02-21 20:52:36", "license": "5", "title": "L\u1edbp DH c\u1ee7a m\u1eb9", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/397792860_97ba27dd93_o.jpg", "secret": "97ba27dd93", "media": "photo", "latitude": "0", "id": "397792860", "tags": ""}, {"datetaken": "2007-02-21 20:54:19", "license": "5", "title": "L\u1edbp DH c\u1ee7a m\u1eb9", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/397793069_8ea5bdd832_o.jpg", "secret": "8ea5bdd832", "media": "photo", "latitude": "0", "id": "397793069", "tags": ""}, {"datetaken": "2007-02-21 20:54:29", "license": "5", "title": "L\u1edbp \u0111\u1ea1i h\u1ecdc c\u1ee7a m\u1eb9", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/397793195_9f6751a7a1_o.jpg", "secret": "9f6751a7a1", "media": "photo", "latitude": "0", "id": "397793195", "tags": ""}, {"datetaken": "2007-02-21 21:45:40", "license": "5", "title": "DSC01731", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/397793328_580172cf6e_o.jpg", "secret": "580172cf6e", "media": "photo", "latitude": "0", "id": "397793328", "tags": ""}, {"datetaken": "2007-02-21 21:45:53", "license": "5", "title": "hehe \u0111\u00e1nh ti\u1ec1n 500", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/397793461_43339b864e_o.jpg", "secret": "43339b864e", "media": "photo", "latitude": "0", "id": "397793461", "tags": ""}, {"datetaken": "2007-02-21 21:46:15", "license": "5", "title": "c\u1ea3 h\u1ed9i", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/397793596_92cb5fdcb2_o.jpg", "secret": "92cb5fdcb2", "media": "photo", "latitude": "0", "id": "397793596", "tags": ""}, {"datetaken": "2007-02-21 21:46:48", "license": "5", "title": "\u0110\u00e1nh b\u00e0i", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/397793757_00d551ef75_o.jpg", "secret": "00d551ef75", "media": "photo", "latitude": "0", "id": "397793757", "tags": ""}, {"datetaken": "2007-02-21 21:47:27", "license": "5", "title": "Nh\u1ea5t Chi Mai", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/397793940_e1daf19354_o.jpg", "secret": "e1daf19354", "media": "photo", "latitude": "0", "id": "397793940", "tags": ""}, {"datetaken": "2007-02-21 21:48:28", "license": "5", "title": "G\u1ecdt b\u01b0\u1edfi", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/397794310_36ceeb8a35_o.jpg", "secret": "36ceeb8a35", "media": "photo", "latitude": "0", "id": "397794310", "tags": ""}, {"datetaken": "2007-02-21 21:48:38", "license": "5", "title": "Long Ng\u1ecdc", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/397794451_eba4ce7715_o.jpg", "secret": "eba4ce7715", "media": "photo", "latitude": "0", "id": "397794451", "tags": ""}, {"datetaken": "2007-02-21 21:49:26", "license": "5", "title": "Ng\u1ecdc", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/397794579_c0ffcc42bf_o.jpg", "secret": "c0ffcc42bf", "media": "photo", "latitude": "0", "id": "397794579", "tags": ""}, {"datetaken": "2007-02-21 21:49:55", "license": "5", "title": "H\u00e0 Th\u1eafng", "text": "", "album_id": "72157594548530232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/397794709_0166c6b9b6_o.jpg", "secret": "0166c6b9b6", "media": "photo", "latitude": "0", "id": "397794709", "tags": ""}, {"datetaken": "2005-11-25 02:19:21", "license": "1", "title": "Fresh from the roaster", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/66586383_4f5b7c6d6c_o.jpg", "secret": "4f5b7c6d6c", "media": "photo", "latitude": "0", "id": "66586383", "tags": "turkey food thanksgiving meat poultry"}, {"datetaken": "2005-11-25 02:19:31", "license": "1", "title": "Bacon: Up Close and Personal", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66595012_6e9c46df09_o.jpg", "secret": "6e9c46df09", "media": "photo", "latitude": "0", "id": "66595012", "tags": "turkey meat carving meal food thanksgiving bacon"}, {"datetaken": "2005-11-25 02:19:40", "license": "1", "title": "Finished bird", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/66595026_40be9fb8ae_o.jpg", "secret": "40be9fb8ae", "media": "photo", "latitude": "0", "id": "66595026", "tags": "turkey meat carving meal food thanksgiving"}, {"datetaken": "2005-11-25 02:20:11", "license": "1", "title": "Broiled Goodness", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66595047_c8aef69b16_o.jpg", "secret": "c8aef69b16", "media": "photo", "latitude": "0", "id": "66595047", "tags": "turkey meat carving meal food thanksgiving"}, {"datetaken": "2005-11-25 03:26:50", "license": "1", "title": "De-baconing the bird", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/66595064_4d2203efd6_o.jpg", "secret": "4d2203efd6", "media": "photo", "latitude": "0", "id": "66595064", "tags": "turkey meat carving meal food thanksgiving"}, {"datetaken": "2005-11-25 03:27:06", "license": "1", "title": "Dissecting the Sternum", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/66595068_45c50435eb_o.jpg", "secret": "45c50435eb", "media": "photo", "latitude": "0", "id": "66595068", "tags": "turkey meat carving meal food thanksgiving"}, {"datetaken": "2005-11-25 03:27:14", "license": "1", "title": "Removing the Leg", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/66595082_0aa7e781ef_o.jpg", "secret": "0aa7e781ef", "media": "photo", "latitude": "0", "id": "66595082", "tags": "turkey meat carving meal food thanksgiving"}, {"datetaken": "2005-11-25 03:27:31", "license": "1", "title": "20051125", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/69252318_f6f6691f5a_o.jpg", "secret": "f6f6691f5a", "media": "photo", "latitude": "0", "id": "69252318", "tags": "thanksgiving turkey carving meat poultry knife arrangement holiday food"}, {"datetaken": "2005-11-25 03:28:40", "license": "1", "title": "20051125_1", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/69252331_80a4b5c265_o.jpg", "secret": "80a4b5c265", "media": "photo", "latitude": "0", "id": "69252331", "tags": "thanksgiving turkey carving meat poultry knife arrangement holiday food"}, {"datetaken": "2005-11-25 03:30:36", "license": "1", "title": "20051125_4", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/69252425_20c15c2ef8_o.jpg", "secret": "20c15c2ef8", "media": "photo", "latitude": "0", "id": "69252425", "tags": "thanksgiving turkey carving meat poultry knife arrangement holiday food"}, {"datetaken": "2005-11-25 03:31:38", "license": "1", "title": "20051125_5", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/69252443_73d6668b0b_o.jpg", "secret": "73d6668b0b", "media": "photo", "latitude": "0", "id": "69252443", "tags": "thanksgiving turkey carving meat poultry knife arrangement holiday food"}, {"datetaken": "2005-11-25 03:32:53", "license": "1", "title": "120105_9", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/69252474_d8ab3c6d1e_o.jpg", "secret": "d8ab3c6d1e", "media": "photo", "latitude": "0", "id": "69252474", "tags": "thanksgiving turkey carving meat poultry knife arrangement holiday food"}, {"datetaken": "2005-11-25 03:33:07", "license": "1", "title": "120105_10", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/69252496_459c936565_o.jpg", "secret": "459c936565", "media": "photo", "latitude": "0", "id": "69252496", "tags": "thanksgiving turkey carving meat poultry knife arrangement holiday food"}, {"datetaken": "2005-11-25 03:33:17", "license": "1", "title": "120105_11", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/69252514_9770a22318_o.jpg", "secret": "9770a22318", "media": "photo", "latitude": "0", "id": "69252514", "tags": "thanksgiving turkey carving meat poultry knife arrangement holiday food"}, {"datetaken": "2005-11-25 03:33:31", "license": "1", "title": "20051125_11", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/69252355_5b20b1bbf6_o.jpg", "secret": "5b20b1bbf6", "media": "photo", "latitude": "0", "id": "69252355", "tags": "thanksgiving turkey carving meat poultry knife arrangement holiday food"}, {"datetaken": "2005-11-25 03:33:42", "license": "1", "title": "20051125_12", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/69252370_80a050bf01_o.jpg", "secret": "80a050bf01", "media": "photo", "latitude": "0", "id": "69252370", "tags": "thanksgiving turkey carving meat poultry knife arrangement holiday food"}, {"datetaken": "2005-11-25 03:35:26", "license": "1", "title": "20051125_15", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/69252384_c4df70bdda_o.jpg", "secret": "c4df70bdda", "media": "photo", "latitude": "0", "id": "69252384", "tags": "thanksgiving turkey carving meat poultry knife arrangement holiday food"}, {"datetaken": "2005-11-25 03:35:48", "license": "1", "title": "20051125_16", "text": "", "album_id": "1437238", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/69252465_47a5938bf6_o.jpg", "secret": "47a5938bf6", "media": "photo", "latitude": "0", "id": "69252465", "tags": "thanksgiving turkey carving meat poultry knife arrangement holiday food"}, {"datetaken": "2005-11-24 18:06:15", "license": "1", "title": "Hanging out in the living room", "text": "", "album_id": "1493887", "longitude": "-71.805953", "url_o": "https://farm1.staticflickr.com/15/69349156_ccfee33c96_o.jpg", "secret": "ccfee33c96", "media": "photo", "latitude": "42.258508", "id": "69349156", "tags": "andrew sara thanksgiving"}, {"datetaken": "2005-11-24 18:07:35", "license": "1", "title": "The food!", "text": "", "album_id": "1493887", "longitude": "-71.805953", "url_o": "https://farm1.staticflickr.com/18/69349312_7832d5791a_o.jpg", "secret": "7832d5791a", "media": "photo", "latitude": "42.258508", "id": "69349312", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 18:08:02", "license": "1", "title": "Andrew starts the food line", "text": "", "album_id": "1493887", "longitude": "-71.805953", "url_o": "https://farm1.staticflickr.com/35/69349368_02b1d93e1f_o.jpg", "secret": "02b1d93e1f", "media": "photo", "latitude": "42.258508", "id": "69349368", "tags": "andrew thanksgiving"}, {"datetaken": "2005-11-24 18:08:44", "license": "1", "title": "Thanksgiving table", "text": "", "album_id": "1493887", "longitude": "-71.805953", "url_o": "https://farm1.staticflickr.com/15/69349409_165f21a201_o.jpg", "secret": "165f21a201", "media": "photo", "latitude": "42.258508", "id": "69349409", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 18:08:54", "license": "1", "title": "Centerpiece", "text": "", "album_id": "1493887", "longitude": "-71.805953", "url_o": "https://farm1.staticflickr.com/18/69349461_28d59e01e7_o.jpg", "secret": "28d59e01e7", "media": "photo", "latitude": "42.258508", "id": "69349461", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 18:09:33", "license": "1", "title": "The food line begins", "text": "", "album_id": "1493887", "longitude": "-71.805953", "url_o": "https://farm1.staticflickr.com/20/69349519_6f7d44480b_o.jpg", "secret": "6f7d44480b", "media": "photo", "latitude": "42.258508", "id": "69349519", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 18:14:09", "license": "1", "title": "Mrs. Yood pouring wine", "text": "", "album_id": "1493887", "longitude": "-71.805953", "url_o": "https://farm1.staticflickr.com/34/69349592_689eb7c29f_o.jpg", "secret": "689eb7c29f", "media": "photo", "latitude": "42.258508", "id": "69349592", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 18:14:22", "license": "1", "title": "Other side of the table", "text": "", "album_id": "1493887", "longitude": "-71.805953", "url_o": "https://farm1.staticflickr.com/15/69349633_9caffe81a4_o.jpg", "secret": "9caffe81a4", "media": "photo", "latitude": "42.258508", "id": "69349633", "tags": "sara andrew thanksgiving"}, {"datetaken": "2005-11-24 18:14:31", "license": "1", "title": "My side of the table", "text": "", "album_id": "1493887", "longitude": "-71.805953", "url_o": "https://farm1.staticflickr.com/15/69349704_345be0e504_o.jpg", "secret": "345be0e504", "media": "photo", "latitude": "42.258508", "id": "69349704", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 18:35:43", "license": "1", "title": "The girls", "text": "", "album_id": "1493887", "longitude": "-71.805953", "url_o": "https://farm1.staticflickr.com/20/69349756_43672391a8_o.jpg", "secret": "43672391a8", "media": "photo", "latitude": "42.258508", "id": "69349756", "tags": "sara thanksgiving"}, {"datetaken": "2005-11-24 18:35:54", "license": "1", "title": "Sara", "text": "", "album_id": "1493887", "longitude": "-71.805953", "url_o": "https://farm1.staticflickr.com/6/69349813_eb270284f8_o.jpg", "secret": "eb270284f8", "media": "photo", "latitude": "42.258508", "id": "69349813", "tags": "sara thanksgiving"}, {"datetaken": "2005-11-25 16:12:17", "license": "1", "title": "Before...", "text": "", "album_id": "1493887", "longitude": "-71.194753", "url_o": "https://farm1.staticflickr.com/18/68568243_0db836bd0e_o.jpg", "secret": "0db836bd0e", "media": "photo", "latitude": "42.504755", "id": "68568243", "tags": "me thanksgiving christmastree"}, {"datetaken": "2005-11-25 16:13:56", "license": "1", "title": "Jon separates the branches", "text": "", "album_id": "1493887", "longitude": "-71.194753", "url_o": "https://farm1.staticflickr.com/15/69273034_6f66372393_o.jpg", "secret": "6f66372393", "media": "photo", "latitude": "42.504755", "id": "69273034", "tags": "jon thanksgiving christmastree"}, {"datetaken": "2005-11-25 16:16:39", "license": "1", "title": "Jon pondering the directions", "text": "", "album_id": "1493887", "longitude": "-71.194753", "url_o": "https://farm1.staticflickr.com/15/69273336_918343aff0_o.jpg", "secret": "918343aff0", "media": "photo", "latitude": "42.504755", "id": "69273336", "tags": "jon thanksgiving christmastree"}, {"datetaken": "2005-11-25 16:16:49", "license": "1", "title": "Pondering the directions", "text": "", "album_id": "1493887", "longitude": "-71.194753", "url_o": "https://farm1.staticflickr.com/20/69273418_8a6a6a9353_o.jpg", "secret": "8a6a6a9353", "media": "photo", "latitude": "42.504755", "id": "69273418", "tags": "thanksgiving christmastree"}, {"datetaken": "2005-11-25 16:19:11", "license": "1", "title": "Okay, it's done!", "text": "", "album_id": "1493887", "longitude": "-71.194753", "url_o": "https://farm1.staticflickr.com/34/69273506_1c41c80d3c_o.jpg", "secret": "1c41c80d3c", "media": "photo", "latitude": "42.504755", "id": "69273506", "tags": "me thanksgiving christmastree"}, {"datetaken": "2005-11-25 16:47:23", "license": "1", "title": "Spreading the branches", "text": "", "album_id": "1493887", "longitude": "-71.194753", "url_o": "https://farm1.staticflickr.com/20/69273600_39483b6bc9_o.jpg", "secret": "39483b6bc9", "media": "photo", "latitude": "42.504755", "id": "69273600", "tags": "jon me thanksgiving christmastree"}, {"datetaken": "2005-11-25 16:47:40", "license": "1", "title": "Andrew", "text": "", "album_id": "1493887", "longitude": "-71.194753", "url_o": "https://farm1.staticflickr.com/6/69273678_83a44e474a_o.jpg", "secret": "83a44e474a", "media": "photo", "latitude": "42.504755", "id": "69273678", "tags": "andrew thanksgiving christmastree"}, {"datetaken": "2005-11-25 16:50:05", "license": "1", "title": "Stringing the lights", "text": "", "album_id": "1493887", "longitude": "-71.194753", "url_o": "https://farm1.staticflickr.com/15/69273755_b28942c02f_o.jpg", "secret": "b28942c02f", "media": "photo", "latitude": "42.504755", "id": "69273755", "tags": "jon me thanksgiving christmastree"}, {"datetaken": "2005-11-25 16:52:23", "license": "1", "title": "Stringing the garlands", "text": "", "album_id": "1493887", "longitude": "-71.194753", "url_o": "https://farm1.staticflickr.com/35/69273847_65605be9a4_o.jpg", "secret": "65605be9a4", "media": "photo", "latitude": "42.504755", "id": "69273847", "tags": "andrew jon thanksgiving christmastree"}, {"datetaken": "2005-11-25 17:07:47", "license": "1", "title": "Placing the star", "text": "", "album_id": "1493887", "longitude": "-71.194753", "url_o": "https://farm1.staticflickr.com/15/69273955_0551f72c9d_o.jpg", "secret": "0551f72c9d", "media": "photo", "latitude": "42.504755", "id": "69273955", "tags": "me thanksgiving christmastree"}, {"datetaken": "2005-11-25 17:09:14", "license": "1", "title": "The final result", "text": "", "album_id": "1493887", "longitude": "-71.194753", "url_o": "https://farm1.staticflickr.com/12/69274057_36f43819c2_o.jpg", "secret": "36f43819c2", "media": "photo", "latitude": "42.504755", "id": "69274057", "tags": "thanksgiving christmastree"}, {"datetaken": "2005-10-09 15:04:54", "license": "3", "title": "Thanksgiving Dinner table", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/51764342_98cafc495d_o.jpg", "secret": "98cafc495d", "media": "photo", "latitude": "0", "id": "51764342", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 15:08:46", "license": "3", "title": "The heart attach on a plate!", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/51764528_7c7ff4176c_o.jpg", "secret": "7c7ff4176c", "media": "photo", "latitude": "0", "id": "51764528", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 15:11:14", "license": "3", "title": "Socks", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/51764736_f080c8c3c4_o.jpg", "secret": "f080c8c3c4", "media": "photo", "latitude": "0", "id": "51764736", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 15:16:31", "license": "3", "title": "Mom & Julia", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/51764938_a4323fc82e_o.jpg", "secret": "a4323fc82e", "media": "photo", "latitude": "0", "id": "51764938", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 15:24:46", "license": "3", "title": "Uncle Roy", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/51765151_c3a330fa1b_o.jpg", "secret": "c3a330fa1b", "media": "photo", "latitude": "0", "id": "51765151", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 15:25:00", "license": "3", "title": "Socks", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/51765327_aa95783954_o.jpg", "secret": "aa95783954", "media": "photo", "latitude": "0", "id": "51765327", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 15:28:17", "license": "3", "title": "Grandpa", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/51765771_7012b77646_o.jpg", "secret": "7012b77646", "media": "photo", "latitude": "0", "id": "51765771", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 15:28:25", "license": "3", "title": "Grandma", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/51766033_570a0edb40_o.jpg", "secret": "570a0edb40", "media": "photo", "latitude": "0", "id": "51766033", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 15:28:29", "license": "3", "title": "Grandma", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/51766255_3e74aabaa6_o.jpg", "secret": "3e74aabaa6", "media": "photo", "latitude": "0", "id": "51766255", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 15:30:53", "license": "3", "title": "Socks & Landon", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/51766606_7ad9316a45_o.jpg", "secret": "7ad9316a45", "media": "photo", "latitude": "0", "id": "51766606", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 15:30:56", "license": "3", "title": "Socks & Landon", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/51767001_0c24c0a9bf_o.jpg", "secret": "0c24c0a9bf", "media": "photo", "latitude": "0", "id": "51767001", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 15:41:22", "license": "3", "title": "Landon sketching", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/51767202_5b032fb178_o.jpg", "secret": "5b032fb178", "media": "photo", "latitude": "0", "id": "51767202", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 16:04:48", "license": "3", "title": "Julia & Grandma", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/51767372_5f2d7e95ca_o.jpg", "secret": "5f2d7e95ca", "media": "photo", "latitude": "0", "id": "51767372", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 16:04:51", "license": "3", "title": "Julia & Grandma", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/51767532_626b15c89f_o.jpg", "secret": "626b15c89f", "media": "photo", "latitude": "0", "id": "51767532", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 16:09:41", "license": "3", "title": "Julia & Grandma", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/51768109_48c42122ce_o.jpg", "secret": "48c42122ce", "media": "photo", "latitude": "0", "id": "51768109", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 16:09:44", "license": "3", "title": "Julia & Grandma", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/51768319_5fc28ca116_o.jpg", "secret": "5fc28ca116", "media": "photo", "latitude": "0", "id": "51768319", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 16:30:08", "license": "3", "title": "Socks", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/51768528_e18ee472bc_o.jpg", "secret": "e18ee472bc", "media": "photo", "latitude": "0", "id": "51768528", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 16:30:23", "license": "3", "title": "Lloyd & Julia", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/51769277_ac0c70cb43_o.jpg", "secret": "ac0c70cb43", "media": "photo", "latitude": "0", "id": "51769277", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 16:47:05", "license": "3", "title": "Mom cook", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/51769102_33d432e6e2_o.jpg", "secret": "33d432e6e2", "media": "photo", "latitude": "0", "id": "51769102", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 16:47:13", "license": "3", "title": "Thanksgiving greetings", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/51769441_2ea4adf2ef_o.jpg", "secret": "2ea4adf2ef", "media": "photo", "latitude": "0", "id": "51769441", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 16:47:20", "license": "3", "title": "Thanksgiving greetings", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/51769611_22aabcf639_o.jpg", "secret": "22aabcf639", "media": "photo", "latitude": "0", "id": "51769611", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 16:47:23", "license": "3", "title": "Thanksgiving greetings", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/51769793_c5ab56bb49_o.jpg", "secret": "c5ab56bb49", "media": "photo", "latitude": "0", "id": "51769793", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 17:03:49", "license": "3", "title": "Pre Dinner Chat", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/51770134_20c72af75a_o.jpg", "secret": "20c72af75a", "media": "photo", "latitude": "0", "id": "51770134", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-09 17:03:58", "license": "3", "title": "Thanksgiving Pre Dinner Chat", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/51770470_c73f4572a7_o.jpg", "secret": "c73f4572a7", "media": "photo", "latitude": "0", "id": "51770470", "tags": "foolswisdomfoto thanksgiving thanksgiving2005 thanksgivingdinner thankgivingdinner2005 thanksgivingdinner2005"}, {"datetaken": "2005-10-10 11:17:36", "license": "3", "title": "Landon, Kenny, Laura", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/51304734_aefeafcd7f_o.jpg", "secret": "aefeafcd7f", "media": "photo", "latitude": "0", "id": "51304734", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:17:44", "license": "3", "title": "Yummy Choc cake!", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/51304736_5401073586_o.jpg", "secret": "5401073586", "media": "photo", "latitude": "0", "id": "51304736", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:17:46", "license": "3", "title": "Kenny", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/51304737_c62643394d_o.jpg", "secret": "c62643394d", "media": "photo", "latitude": "0", "id": "51304737", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:18:10", "license": "3", "title": "pre cake cutting", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/51304738_a490508f60_o.jpg", "secret": "a490508f60", "media": "photo", "latitude": "0", "id": "51304738", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:18:17", "license": "3", "title": "The pretty cake", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/51304739_a624e3c62d_o.jpg", "secret": "a624e3c62d", "media": "photo", "latitude": "0", "id": "51304739", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:18:37", "license": "3", "title": "Fall Birthday babies", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/51304740_e8457aa0ed_o.jpg", "secret": "e8457aa0ed", "media": "photo", "latitude": "0", "id": "51304740", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:18:50", "license": "3", "title": "Fall Birthday babies", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/51315769_70da2ecfb1_o.jpg", "secret": "70da2ecfb1", "media": "photo", "latitude": "0", "id": "51315769", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:19:04", "license": "3", "title": "Bret yawn", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/51315771_a2a9b887f7_o.jpg", "secret": "a2a9b887f7", "media": "photo", "latitude": "0", "id": "51315771", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:20:14", "license": "3", "title": "Sonya, Landon, Ryan", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/51315772_d7b1911884_o.jpg", "secret": "d7b1911884", "media": "photo", "latitude": "0", "id": "51315772", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:20:20", "license": "3", "title": "Ryan cake cutting for Fall Birthdays", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/51315773_bae128c415_o.jpg", "secret": "bae128c415", "media": "photo", "latitude": "0", "id": "51315773", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:20:42", "license": "3", "title": "Bret", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/51315774_3215d6b2a1_o.jpg", "secret": "3215d6b2a1", "media": "photo", "latitude": "0", "id": "51315774", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:20:58", "license": "3", "title": "Landon, Kenny, Ryan cake cutting", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/51315775_5557ee9647_o.jpg", "secret": "5557ee9647", "media": "photo", "latitude": "0", "id": "51315775", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:22:13", "license": "3", "title": "Dad", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/51309663_b8f51f8b0c_o.jpg", "secret": "b8f51f8b0c", "media": "photo", "latitude": "0", "id": "51309663", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:38:35", "license": "3", "title": "after Thanksgiving dinner", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/51309664_447ea865fa_o.jpg", "secret": "447ea865fa", "media": "photo", "latitude": "0", "id": "51309664", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:39:34", "license": "3", "title": "Ron, Heather, Dad", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/51309665_193da79f29_o.jpg", "secret": "193da79f29", "media": "photo", "latitude": "0", "id": "51309665", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:39:58", "license": "3", "title": "Cousin Laura", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/51309666_d3c87caa69_o.jpg", "secret": "d3c87caa69", "media": "photo", "latitude": "0", "id": "51309666", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:41:21", "license": "3", "title": "after Thanksgiving Dinner", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/51309667_9be04bea59_o.jpg", "secret": "9be04bea59", "media": "photo", "latitude": "0", "id": "51309667", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:43:05", "license": "3", "title": "Grandpa", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/51309668_0d543aaac1_o.jpg", "secret": "0d543aaac1", "media": "photo", "latitude": "0", "id": "51309668", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:45:37", "license": "3", "title": "Ryan after 2 Thanksgiving Dinners!", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/51312064_a9f89b598d_o.jpg", "secret": "a9f89b598d", "media": "photo", "latitude": "0", "id": "51312064", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:46:56", "license": "3", "title": "Grandma", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/51312066_30a19e4bf3_o.jpg", "secret": "30a19e4bf3", "media": "photo", "latitude": "0", "id": "51312066", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:47:16", "license": "3", "title": "Grandma", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/51312068_6b8f9bf2e0_o.jpg", "secret": "6b8f9bf2e0", "media": "photo", "latitude": "0", "id": "51312068", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:47:42", "license": "3", "title": "Uncle Ron", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/51312070_6c40667f3a_o.jpg", "secret": "6c40667f3a", "media": "photo", "latitude": "0", "id": "51312070", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:48:40", "license": "3", "title": "Aunt Heather", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/51312071_bd8e90114d_o.jpg", "secret": "bd8e90114d", "media": "photo", "latitude": "0", "id": "51312071", "tags": "thanksgivingdinner thanksgivingdinner2005 julesfoto"}, {"datetaken": "2005-10-10 11:50:29", "license": "3", "title": "Lloyd after dinner nap", "text": "", "album_id": "1121075", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/51312072_9cc11e5e2c_o.jpg", "secret": "9cc11e5e2c", "media": "photo", "latitude": "0", "id": "51312072", "tags": "foolswisdom lloyd thanksgivingdinner julesfoto lloydbudd thanksgivingdinner2005 lloyddbudd"}, {"datetaken": "2005-11-15 16:44:47", "license": "1", "title": "fireworks4", "text": "", "album_id": "1376049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/63725327_29fcda25a8_o.jpg", "secret": "29fcda25a8", "media": "photo", "latitude": "0", "id": "63725327", "tags": "fireworks lake siskiyou mount shasta night"}, {"datetaken": "2005-11-15 16:44:47", "license": "1", "title": "fireworks3", "text": "", "album_id": "1376049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/63725326_c0e076350f_o.jpg", "secret": "c0e076350f", "media": "photo", "latitude": "0", "id": "63725326", "tags": "fireworks lake siskiyou mount shasta night"}, {"datetaken": "2005-11-15 16:44:47", "license": "1", "title": "grandcanyon1", "text": "", "album_id": "1376049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/63725328_dc4df3b0ec_o.jpg", "secret": "dc4df3b0ec", "media": "photo", "latitude": "0", "id": "63725328", "tags": "grand canyon sunset"}, {"datetaken": "2005-11-15 16:44:47", "license": "1", "title": "libertybell", "text": "", "album_id": "1376049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/63725329_0c3981fc27_o.jpg", "secret": "0c3981fc27", "media": "photo", "latitude": "0", "id": "63725329", "tags": "liberty bell philadelphia"}, {"datetaken": "2005-11-15 16:44:47", "license": "1", "title": "amtrack", "text": "", "album_id": "1376049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/63725325_f52f8b2b6e_o.jpg", "secret": "f52f8b2b6e", "media": "photo", "latitude": "0", "id": "63725325", "tags": "train amtrack mount shasta night"}, {"datetaken": "2005-11-15 16:44:47", "license": "1", "title": "lightning", "text": "", "album_id": "1376049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/63725331_6291ac822a_o.jpg", "secret": "6291ac822a", "media": "photo", "latitude": "0", "id": "63725331", "tags": "lightning houston"}, {"datetaken": "2005-11-15 16:52:07", "license": "1", "title": "columbia", "text": "", "album_id": "1376049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/63727186_f382fa2cbd_o.jpg", "secret": "f382fa2cbd", "media": "photo", "latitude": "0", "id": "63727186", "tags": "space shuttle columbia night houston"}, {"datetaken": "2005-11-15 16:52:07", "license": "1", "title": "saturn5", "text": "", "album_id": "1376049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/63727181_036b9b7995_o.jpg", "secret": "036b9b7995", "media": "photo", "latitude": "0", "id": "63727181", "tags": "saturn v rocket johnson space center houston"}, {"datetaken": "2005-11-15 16:52:07", "license": "1", "title": "sunset4", "text": "", "album_id": "1376049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/63727185_da5af0e2f6_o.jpg", "secret": "da5af0e2f6", "media": "photo", "latitude": "0", "id": "63727185", "tags": "new york city manhattan sunset empire state building"}, {"datetaken": "2005-11-15 16:52:07", "license": "1", "title": "shasta", "text": "", "album_id": "1376049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/63727183_fa82cee370_o.jpg", "secret": "fa82cee370", "media": "photo", "latitude": "0", "id": "63727183", "tags": "mount shasta sunset"}, {"datetaken": "2005-11-15 16:52:07", "license": "1", "title": "sunset5", "text": "", "album_id": "1376049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/63727188_1834d9db2b_o.jpg", "secret": "1834d9db2b", "media": "photo", "latitude": "0", "id": "63727188", "tags": "sunset"}, {"datetaken": "2002-01-01 00:00:18", "license": "4", "title": "Boston Moon", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2534956_896ccd9489_o.jpg", "secret": "896ccd9489", "media": "photo", "latitude": "0", "id": "2534956", "tags": "thanksgiving"}, {"datetaken": "2002-01-01 00:00:31", "license": "4", "title": "Stalking Lars", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2536052_0926014e40_o.jpg", "secret": "0926014e40", "media": "photo", "latitude": "0", "id": "2536052", "tags": ""}, {"datetaken": "2002-01-01 00:00:33", "license": "4", "title": "Sexy Lars", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2534955_11fb0c56ce_o.jpg", "secret": "11fb0c56ce", "media": "photo", "latitude": "0", "id": "2534955", "tags": "thanksgiving"}, {"datetaken": "2002-01-01 20:43:14", "license": "4", "title": "News & Shadows", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2534957_45115312e9_o.jpg", "secret": "45115312e9", "media": "photo", "latitude": "0", "id": "2534957", "tags": "thanksgiving"}, {"datetaken": "2002-01-01 20:43:20", "license": "4", "title": "Lars Waiting", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2534959_9697906eaa_o.jpg", "secret": "9697906eaa", "media": "photo", "latitude": "0", "id": "2534959", "tags": "thanksgiving"}, {"datetaken": "2002-01-01 20:43:33", "license": "4", "title": "Lars Scrunchy", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2534961_a797be646c_o.jpg", "secret": "a797be646c", "media": "photo", "latitude": "0", "id": "2534961", "tags": "thanksgiving"}, {"datetaken": "2002-01-01 20:44:20", "license": "4", "title": "DSCF0046_5", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2378669_7d91206ce9_o.jpg", "secret": "7d91206ce9", "media": "photo", "latitude": "0", "id": "2378669", "tags": "thanksgiving"}, {"datetaken": "2002-01-01 20:46:00", "license": "4", "title": "DSCF0053_3", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2378960_38d273af75_o.jpg", "secret": "38d273af75", "media": "photo", "latitude": "0", "id": "2378960", "tags": ""}, {"datetaken": "2002-01-01 20:47:54", "license": "4", "title": "DSCF0054_3", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2378787_5223afd53f_o.jpg", "secret": "5223afd53f", "media": "photo", "latitude": "0", "id": "2378787", "tags": ""}, {"datetaken": "2002-01-01 20:48:18", "license": "4", "title": "DSCF0055_2", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2537937_00152ee105_o.jpg", "secret": "00152ee105", "media": "photo", "latitude": "0", "id": "2537937", "tags": ""}, {"datetaken": "2002-01-01 20:48:34", "license": "4", "title": "DSCF0057_2", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2378786_f1ccb92a27_o.jpg", "secret": "f1ccb92a27", "media": "photo", "latitude": "0", "id": "2378786", "tags": ""}, {"datetaken": "2002-01-01 20:48:40", "license": "4", "title": "DSCF0058_2", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2378789_e4c2f28948_o.jpg", "secret": "e4c2f28948", "media": "photo", "latitude": "0", "id": "2378789", "tags": ""}, {"datetaken": "2002-01-01 20:49:54", "license": "4", "title": "Happy Couple", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2536057_5d996a0043_o.jpg", "secret": "5d996a0043", "media": "photo", "latitude": "0", "id": "2536057", "tags": ""}, {"datetaken": "2002-01-01 23:19:14", "license": "4", "title": "DSCF0063_2", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2537930_83c9ebf541_o.jpg", "secret": "83c9ebf541", "media": "photo", "latitude": "0", "id": "2537930", "tags": ""}, {"datetaken": "2002-01-01 23:20:58", "license": "4", "title": "DSCF0064_2", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2537931_5631f21488_o.jpg", "secret": "5631f21488", "media": "photo", "latitude": "0", "id": "2537931", "tags": ""}, {"datetaken": "2002-01-01 23:25:00", "license": "4", "title": "DSCF0069_1", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2537929_072311293a_o.jpg", "secret": "072311293a", "media": "photo", "latitude": "0", "id": "2537929", "tags": ""}, {"datetaken": "2002-01-01 23:31:12", "license": "4", "title": "Lars \"Skating\"", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2378966_5f95957659_o.jpg", "secret": "5f95957659", "media": "photo", "latitude": "0", "id": "2378966", "tags": ""}, {"datetaken": "2002-01-01 23:31:50", "license": "4", "title": "DSCF0073_1", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2537938_1e9b596029_o.jpg", "secret": "1e9b596029", "media": "photo", "latitude": "0", "id": "2537938", "tags": ""}, {"datetaken": "2002-01-01 23:32:25", "license": "4", "title": "Laura \"Skating\"", "text": "", "album_id": "63571", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2536058_406bebf0a0_o.jpg", "secret": "406bebf0a0", "media": "photo", "latitude": "0", "id": "2536058", "tags": ""}, {"datetaken": "2005-11-24 14:16:12", "license": "5", "title": "Storm Trooper Helmet", "text": "", "album_id": "1440568", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66772074_3d17a2e4f4_o.jpg", "secret": "3d17a2e4f4", "media": "photo", "latitude": "0", "id": "66772074", "tags": "thanksgiving turkey"}, {"datetaken": "2005-11-24 14:16:36", "license": "5", "title": "Thanksgiving Table", "text": "", "album_id": "1440568", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66772075_1f214f1ad1_o.jpg", "secret": "1f214f1ad1", "media": "photo", "latitude": "0", "id": "66772075", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 14:16:40", "license": "5", "title": "Clementines from Spain!", "text": "", "album_id": "1440568", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/66772076_e3bbfc3347_o.jpg", "secret": "e3bbfc3347", "media": "photo", "latitude": "0", "id": "66772076", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 14:16:53", "license": "5", "title": "Delicious Pumpkin Pie", "text": "", "album_id": "1440568", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/66772078_b0a61dfb7a_o.jpg", "secret": "b0a61dfb7a", "media": "photo", "latitude": "0", "id": "66772078", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 14:17:10", "license": "5", "title": "The New Living Room Set", "text": "", "album_id": "1440568", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/66772249_96c7de2441_o.jpg", "secret": "96c7de2441", "media": "photo", "latitude": "0", "id": "66772249", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 14:17:30", "license": "5", "title": "Turkey Temp - Cold", "text": "", "album_id": "1440568", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/66772250_ad040a0bbe_o.jpg", "secret": "ad040a0bbe", "media": "photo", "latitude": "0", "id": "66772250", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 15:08:46", "license": "5", "title": "Stuffing - Yellow juice #1", "text": "", "album_id": "1440568", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/66772251_7403b457f7_o.jpg", "secret": "7403b457f7", "media": "photo", "latitude": "0", "id": "66772251", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 15:08:52", "license": "5", "title": "Stuffing - Yellow juice #2", "text": "", "album_id": "1440568", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/66772252_580ef96c3e_o.jpg", "secret": "580ef96c3e", "media": "photo", "latitude": "0", "id": "66772252", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 15:09:15", "license": "5", "title": "Looking for Ring in Stuffing", "text": "", "album_id": "1440568", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66772253_de802bc5b8_o.jpg", "secret": "de802bc5b8", "media": "photo", "latitude": "0", "id": "66772253", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 15:09:30", "license": "5", "title": "Stuffing Hands", "text": "", "album_id": "1440568", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/66772315_54a8fed554_o.jpg", "secret": "54a8fed554", "media": "photo", "latitude": "0", "id": "66772315", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 15:13:52", "license": "5", "title": "Stuffing - that's sausage and apricots in there", "text": "", "album_id": "1440568", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/66775877_8a8c9a5197_o.jpg", "secret": "8a8c9a5197", "media": "photo", "latitude": "0", "id": "66775877", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 15:13:56", "license": "5", "title": "Stuffing - Final", "text": "", "album_id": "1440568", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/66775879_3fa2f8640b_o.jpg", "secret": "3fa2f8640b", "media": "photo", "latitude": "0", "id": "66775879", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 15:16:08", "license": "5", "title": "The Bible", "text": "", "album_id": "1440568", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/66776911_a4ac427ade_o.jpg", "secret": "a4ac427ade", "media": "photo", "latitude": "0", "id": "66776911", "tags": ""}, {"datetaken": "2005-11-24 15:27:26", "license": "5", "title": "World's Best Gloves", "text": "", "album_id": "1440568", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/66777974_3a6bc1452e_o.jpg", "secret": "3a6bc1452e", "media": "photo", "latitude": "0", "id": "66777974", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 17:00:36", "license": "5", "title": "Table - Before", "text": "", "album_id": "1440568", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/66777976_909183c0bd_o.jpg", "secret": "909183c0bd", "media": "photo", "latitude": "0", "id": "66777976", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 17:00:49", "license": "5", "title": "Gravy served by Chef", "text": "", "album_id": "1440568", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/66778003_4093d87693_o.jpg", "secret": "4093d87693", "media": "photo", "latitude": "0", "id": "66778003", "tags": ""}, {"datetaken": "2005-11-24 17:00:54", "license": "5", "title": "The Final Touches", "text": "", "album_id": "1440568", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/66778004_bcd3077a94_o.jpg", "secret": "bcd3077a94", "media": "photo", "latitude": "0", "id": "66778004", "tags": ""}, {"datetaken": "2005-11-24 14:16:10", "license": "3", "title": "DSCN7813", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/66884180_51656575b1_o.jpg", "secret": "51656575b1", "media": "photo", "latitude": "0", "id": "66884180", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 14:16:15", "license": "3", "title": "DSCN7814", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/66884188_b61bf4c9b4_o.jpg", "secret": "b61bf4c9b4", "media": "photo", "latitude": "0", "id": "66884188", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 16:59:11", "license": "3", "title": "DSCN7815", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66884209_a3b52d6f22_o.jpg", "secret": "a3b52d6f22", "media": "photo", "latitude": "0", "id": "66884209", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 18:30:25", "license": "3", "title": "DSCN7816", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66884224_bbd055130a_o.jpg", "secret": "bbd055130a", "media": "photo", "latitude": "0", "id": "66884224", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 18:30:34", "license": "3", "title": "DSCN7817", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/66884237_6f5430c009_o.jpg", "secret": "6f5430c009", "media": "photo", "latitude": "0", "id": "66884237", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 18:34:52", "license": "3", "title": "DSCN7820", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/66884246_bbaf5f2e81_o.jpg", "secret": "bbaf5f2e81", "media": "photo", "latitude": "0", "id": "66884246", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 18:55:25", "license": "3", "title": "DSCN7821", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66884274_97a50df2fb_o.jpg", "secret": "97a50df2fb", "media": "photo", "latitude": "0", "id": "66884274", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 18:55:50", "license": "3", "title": "DSCN7824", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66884285_0e189bd0e0_o.jpg", "secret": "0e189bd0e0", "media": "photo", "latitude": "0", "id": "66884285", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 19:26:59", "license": "3", "title": "DSCN7825", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/66884293_b47df06a9f_o.jpg", "secret": "b47df06a9f", "media": "photo", "latitude": "0", "id": "66884293", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 19:27:08", "license": "3", "title": "DSCN7826", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66884307_9cd21821e2_o.jpg", "secret": "9cd21821e2", "media": "photo", "latitude": "0", "id": "66884307", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 19:27:21", "license": "3", "title": "DSCN7827", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/66884317_ea9b8cb1ca_o.jpg", "secret": "ea9b8cb1ca", "media": "photo", "latitude": "0", "id": "66884317", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 19:29:47", "license": "3", "title": "DSCN7829", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66884335_9e93c6aa7a_o.jpg", "secret": "9e93c6aa7a", "media": "photo", "latitude": "0", "id": "66884335", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 19:30:38", "license": "3", "title": "DSCN7830", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/66884344_1c7adf0c96_o.jpg", "secret": "1c7adf0c96", "media": "photo", "latitude": "0", "id": "66884344", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 19:30:43", "license": "3", "title": "DSCN7831", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/66884366_87797e6fc8_o.jpg", "secret": "87797e6fc8", "media": "photo", "latitude": "0", "id": "66884366", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 19:30:48", "license": "3", "title": "DSCN7832", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/66884380_444a034dc1_o.jpg", "secret": "444a034dc1", "media": "photo", "latitude": "0", "id": "66884380", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 19:30:54", "license": "3", "title": "DSCN7833", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66884399_6a4ced68f5_o.jpg", "secret": "6a4ced68f5", "media": "photo", "latitude": "0", "id": "66884399", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 19:48:08", "license": "3", "title": "DSCN7834", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66884411_e9c94b8466_o.jpg", "secret": "e9c94b8466", "media": "photo", "latitude": "0", "id": "66884411", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 23:59:45", "license": "3", "title": "DSCN7835", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/66884437_faacf2781e_o.jpg", "secret": "faacf2781e", "media": "photo", "latitude": "0", "id": "66884437", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 23:59:50", "license": "3", "title": "DSCN7836", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/66884460_fc2c7fc907_o.jpg", "secret": "fc2c7fc907", "media": "photo", "latitude": "0", "id": "66884460", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-24 23:59:56", "license": "3", "title": "DSCN7837", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/66884470_62dac18077_o.jpg", "secret": "62dac18077", "media": "photo", "latitude": "0", "id": "66884470", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-25 00:00:01", "license": "3", "title": "DSCN7838", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/66884488_845adc6763_o.jpg", "secret": "845adc6763", "media": "photo", "latitude": "0", "id": "66884488", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-25 00:00:06", "license": "3", "title": "DSCN7839", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/66884504_a7dc6d3c75_o.jpg", "secret": "a7dc6d3c75", "media": "photo", "latitude": "0", "id": "66884504", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2005-11-25 00:00:15", "license": "3", "title": "DSCN7840", "text": "", "album_id": "1443082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66884511_1cd1fdc5dc_o.jpg", "secret": "1cd1fdc5dc", "media": "photo", "latitude": "0", "id": "66884511", "tags": "thanksgiving thanksgiving2005 thanksgivingdinner"}, {"datetaken": "2004-04-01 06:24:52", "license": "4", "title": "What passes for salad", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/66871027_7bba851935_o.jpg", "secret": "7bba851935", "media": "photo", "latitude": "0", "id": "66871027", "tags": "thanksgiving2005 jellosalads marshmallows pink"}, {"datetaken": "2004-04-01 06:25:25", "license": "4", "title": "Carrots n Jello", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/66880607_7a6dd5d425_o.jpg", "secret": "7a6dd5d425", "media": "photo", "latitude": "0", "id": "66880607", "tags": "thanksgiving2005 jellosalad"}, {"datetaken": "2004-04-01 06:27:44", "license": "4", "title": "Eggs of the Devil", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/66871033_6e824294c0_o.jpg", "secret": "6e824294c0", "media": "photo", "latitude": "0", "id": "66871033", "tags": "thanksgiving2005 deviledeggs"}, {"datetaken": "2004-04-01 06:28:37", "license": "4", "title": "Lasagne", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66871034_ade5223292_o.jpg", "secret": "ade5223292", "media": "photo", "latitude": "0", "id": "66871034", "tags": "thanksgiving2005 lasagne"}, {"datetaken": "2004-04-01 06:29:05", "license": "4", "title": "Green stuff!", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/66880608_627f981962_o.jpg", "secret": "627f981962", "media": "photo", "latitude": "0", "id": "66880608", "tags": "thanksgiving2005 salads"}, {"datetaken": "2004-04-01 06:29:43", "license": "4", "title": "Mac n cheese", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/66880609_d2c4b17cf4_o.jpg", "secret": "d2c4b17cf4", "media": "photo", "latitude": "0", "id": "66880609", "tags": "thanksgiving2005 macaroniandcheese"}, {"datetaken": "2004-04-01 06:30:46", "license": "4", "title": "Gobble", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/66880611_72d62f1761_o.jpg", "secret": "72d62f1761", "media": "photo", "latitude": "0", "id": "66880611", "tags": "thanksgiving2005 turkey"}, {"datetaken": "2004-04-01 06:31:00", "license": "4", "title": "Musical Fruit", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/66880612_ec6d900885_o.jpg", "secret": "ec6d900885", "media": "photo", "latitude": "0", "id": "66880612", "tags": "thanksgiving2005 porknbeans"}, {"datetaken": "2004-04-01 07:00:22", "license": "4", "title": "Chocolate Dessert", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/66880606_53c804e25e_o.jpg", "secret": "53c804e25e", "media": "photo", "latitude": "0", "id": "66880606", "tags": "thanksgiving2005 chocolatedessert pudding coolwhip"}, {"datetaken": "2004-04-01 07:00:53", "license": "4", "title": "Apple Somethings", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/66871030_9759cf237b_o.jpg", "secret": "9759cf237b", "media": "photo", "latitude": "0", "id": "66871030", "tags": "thanksgiving2005 dumplings"}, {"datetaken": "2004-04-01 07:01:09", "license": "4", "title": "Aunt Betty's Coconut Custard Pie", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/66871029_7cd585e7b4_o.jpg", "secret": "7cd585e7b4", "media": "photo", "latitude": "0", "id": "66871029", "tags": "thanksgiving2005 coconutcustardpie nutmeg"}, {"datetaken": "2004-04-01 07:01:48", "license": "4", "title": "Cherry Pie", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/66871031_e3eb52d0cd_o.jpg", "secret": "e3eb52d0cd", "media": "photo", "latitude": "0", "id": "66871031", "tags": "thanksgiving2005 cherrypie"}, {"datetaken": "2004-04-01 07:46:55", "license": "4", "title": "Mark and Aunt Betty", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/66882785_fde3be7f4f_o.jpg", "secret": "fde3be7f4f", "media": "photo", "latitude": "0", "id": "66882785", "tags": "thanksgiving2005 mark betty dog hudsontownhall"}, {"datetaken": "2004-04-01 07:47:09", "license": "4", "title": "Cousin's Son and Cousin's Son's Kid", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/66882782_830c746f75_o.jpg", "secret": "830c746f75", "media": "photo", "latitude": "0", "id": "66882782", "tags": "thanksgiving2005 adam"}, {"datetaken": "2004-04-01 07:47:40", "license": "4", "title": "Cousins Susan and Sharon", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/66882784_840412d7de_o.jpg", "secret": "840412d7de", "media": "photo", "latitude": "0", "id": "66882784", "tags": "thanksgiving2005 susan sharon"}, {"datetaken": "2004-04-01 07:48:21", "license": "4", "title": "Olivia Enjoys the Grape", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66882786_77e7362b91_o.jpg", "secret": "77e7362b91", "media": "photo", "latitude": "0", "id": "66882786", "tags": "thanksgiving2005 olivia"}, {"datetaken": "2004-04-01 07:50:29", "license": "4", "title": "Raccoon Family", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/66882788_dafb5ea80c_o.jpg", "secret": "dafb5ea80c", "media": "photo", "latitude": "0", "id": "66882788", "tags": "thanksgiving2005 mark rochelle claudia olivia familyportraits"}, {"datetaken": "2004-04-01 07:52:00", "license": "4", "title": "Cousin Dawn and My Mom", "text": "", "album_id": "1450140", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/66882781_87828bc48e_o.jpg", "secret": "87828bc48e", "media": "photo", "latitude": "0", "id": "66882781", "tags": "thanksgiving2005 dawn maurine"}, {"datetaken": "2005-11-25 18:11:07", "license": "3", "title": "V & E's Zsa Zsa pad...", "text": "", "album_id": "1443998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/66916409_787143a948_o.jpg", "secret": "787143a948", "media": "photo", "latitude": "0", "id": "66916409", "tags": "nyc 2005 thanksgiving friends"}, {"datetaken": "2005-11-25 18:12:13", "license": "3", "title": "The table is set", "text": "", "album_id": "1443998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/66916658_c286f50636_o.jpg", "secret": "c286f50636", "media": "photo", "latitude": "0", "id": "66916658", "tags": "nyc 2005 thanksgiving friends"}, {"datetaken": "2005-11-25 18:13:27", "license": "3", "title": "", "text": "", "album_id": "1443998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/66916961_e3c2bcf947_o.jpg", "secret": "e3c2bcf947", "media": "photo", "latitude": "0", "id": "66916961", "tags": "nyc 2005 thanksgiving friends"}, {"datetaken": "2005-11-25 18:14:37", "license": "3", "title": "Our host carving the bird", "text": "", "album_id": "1443998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/66917232_cd1f768920_o.jpg", "secret": "cd1f768920", "media": "photo", "latitude": "0", "id": "66917232", "tags": "nyc 2005 thanksgiving friends"}, {"datetaken": "2005-11-25 18:15:45", "license": "3", "title": "Lookin good", "text": "", "album_id": "1443998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/66917503_9c67b29fdf_o.jpg", "secret": "9c67b29fdf", "media": "photo", "latitude": "0", "id": "66917503", "tags": "2005 thanksgiving nyc friends turkey mmmm"}, {"datetaken": "2005-11-25 18:16:47", "license": "3", "title": "Sweet potatos", "text": "", "album_id": "1443998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/66917705_45f4877881_o.jpg", "secret": "45f4877881", "media": "photo", "latitude": "0", "id": "66917705", "tags": "nyc 2005 thanksgiving friends"}, {"datetaken": "2005-11-25 18:17:58", "license": "3", "title": "The classic", "text": "", "album_id": "1443998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66918049_e652f9f928_o.jpg", "secret": "e652f9f928", "media": "photo", "latitude": "0", "id": "66918049", "tags": "2005 thanksgiving nyc friends turkey stuffing gravy mmmm mashedpotatos"}, {"datetaken": "2005-11-25 18:19:09", "license": "3", "title": "Stuffed in about 10 minutes", "text": "", "album_id": "1443998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/66918382_0827300291_o.jpg", "secret": "0827300291", "media": "photo", "latitude": "0", "id": "66918382", "tags": "nyc 2005 thanksgiving friends"}, {"datetaken": "2005-11-25 18:20:27", "license": "3", "title": "The lady is a member of the clean plate club", "text": "", "album_id": "1443998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/66918735_91399c0764_o.jpg", "secret": "91399c0764", "media": "photo", "latitude": "0", "id": "66918735", "tags": "nyc 2005 thanksgiving friends"}, {"datetaken": "2005-11-25 18:21:50", "license": "3", "title": "Our hostess attacks the sweet potatos", "text": "", "album_id": "1443998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/66919096_33612cdbe4_o.jpg", "secret": "33612cdbe4", "media": "photo", "latitude": "0", "id": "66919096", "tags": "nyc 2005 thanksgiving friends"}, {"datetaken": "2005-11-25 18:23:06", "license": "3", "title": "Did someone say pie?", "text": "", "album_id": "1443998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66919432_a833f1f471_o.jpg", "secret": "a833f1f471", "media": "photo", "latitude": "0", "id": "66919432", "tags": "nyc 2005 thanksgiving friends"}, {"datetaken": "2005-11-25 18:24:20", "license": "3", "title": "Our host does a fan dance", "text": "", "album_id": "1443998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/66919692_0a1d0cd0b1_o.jpg", "secret": "0a1d0cd0b1", "media": "photo", "latitude": "0", "id": "66919692", "tags": "nyc 2005 thanksgiving friends"}, {"datetaken": "2005-11-25 18:25:27", "license": "3", "title": "The happy couple in the kitchen", "text": "", "album_id": "1443998", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/66920008_8a2a94e625_o.jpg", "secret": "8a2a94e625", "media": "photo", "latitude": "0", "id": "66920008", "tags": "nyc 2005 thanksgiving friends elisevincent elise vincent"}, {"datetaken": "2005-11-24 05:13:33", "license": "2", "title": "Kitty Blur", "text": "", "album_id": "1444744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/66920468_1f863a6fe0_o.jpg", "secret": "1f863a6fe0", "media": "photo", "latitude": "0", "id": "66920468", "tags": "kittyball kittyblur feet"}, {"datetaken": "2005-11-24 05:21:32", "license": "2", "title": "I Jab You, kitty", "text": "", "album_id": "1444744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66920689_cb6c12f895_o.jpg", "secret": "cb6c12f895", "media": "photo", "latitude": "0", "id": "66920689", "tags": "josh joshberezin kitty frank"}, {"datetaken": "2005-11-24 05:21:55", "license": "2", "title": "This is How You Go, Kitty", "text": "", "album_id": "1444744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/66920839_7b721ce7f4_o.jpg", "secret": "7b721ce7f4", "media": "photo", "latitude": "0", "id": "66920839", "tags": "kitty josh joshberezin frank"}, {"datetaken": "2005-11-24 05:37:28", "license": "2", "title": "Rebee's Beautiful Salad", "text": "", "album_id": "1444744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/66921102_4a037b9bc5_o.jpg", "secret": "4a037b9bc5", "media": "photo", "latitude": "0", "id": "66921102", "tags": "salad thanksgiving"}, {"datetaken": "2005-11-24 05:37:32", "license": "2", "title": "Salad Dudes", "text": "", "album_id": "1444744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66921457_250bb1ec5d_o.jpg", "secret": "250bb1ec5d", "media": "photo", "latitude": "0", "id": "66921457", "tags": "salad thanksgiving"}, {"datetaken": "2005-11-24 05:38:16", "license": "2", "title": "Macro Salad", "text": "", "album_id": "1444744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/66921706_207fe0f956_o.jpg", "secret": "207fe0f956", "media": "photo", "latitude": "0", "id": "66921706", "tags": "salad thanksgiving macro"}, {"datetaken": "2005-11-24 07:14:06", "license": "2", "title": "Z and Ree post food dudes", "text": "", "album_id": "1444744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/66921926_0c6595e114_o.jpg", "secret": "0c6595e114", "media": "photo", "latitude": "0", "id": "66921926", "tags": "zac zacpennington rebecca rebeccacarlislehealy thanksgiving"}, {"datetaken": "2005-11-24 07:15:23", "license": "2", "title": "Thanks Swirlies", "text": "", "album_id": "1444744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/66922213_e44a4f1e7b_o.jpg", "secret": "e44a4f1e7b", "media": "photo", "latitude": "0", "id": "66922213", "tags": "trippylighttrails christmaslights"}, {"datetaken": "2005-11-24 07:18:33", "license": "2", "title": "Mike and Willow having talks", "text": "", "album_id": "1444744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/66922443_08ac1814dc_o.jpg", "secret": "08ac1814dc", "media": "photo", "latitude": "0", "id": "66922443", "tags": "mike mikemerrill kmikeym willow willowmccormick thanksgiving"}, {"datetaken": "2005-11-24 08:19:33", "license": "2", "title": "Perfectly Broken", "text": "", "album_id": "1444744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/66922631_d2698bb06b_o.jpg", "secret": "d2698bb06b", "media": "photo", "latitude": "0", "id": "66922631", "tags": "teacup brokencup brokeninhalf"}, {"datetaken": "2005-11-24 08:31:22", "license": "2", "title": "Food Coma Kitty", "text": "", "album_id": "1444744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66922852_d5760d41a6_o.jpg", "secret": "d5760d41a6", "media": "photo", "latitude": "0", "id": "66922852", "tags": "kitty frank mike mikemerrill kmikeym foodcoma"}, {"datetaken": "2005-11-24 08:33:53", "license": "2", "title": "visual vertical tryyps", "text": "", "album_id": "1444744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/66923115_f372fcf89a_o.jpg", "secret": "f372fcf89a", "media": "photo", "latitude": "0", "id": "66923115", "tags": "trippylighttrails christmaslights"}, {"datetaken": "2005-11-24 08:35:04", "license": "2", "title": "I got trypped on", "text": "", "album_id": "1444744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66923438_4a3a98258e_o.jpg", "secret": "4a3a98258e", "media": "photo", "latitude": "0", "id": "66923438", "tags": "steve steveschroeder trippylighttrails"}, {"datetaken": "2005-11-24 11:44:07", "license": "2", "title": "Willow, Mike, and some drifter", "text": "", "album_id": "1444744", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/66923681_0321688acf_o.jpg", "secret": "0321688acf", "media": "photo", "latitude": "0", "id": "66923681", "tags": "willow willowmccormick mike mikemerrill kmikeym drifter jona jonabechtolt thanksgiving"}, {"datetaken": "2005-11-24 15:11:38", "license": "1", "title": "Missa with her camera", "text": "", "album_id": "1445259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/67506559_4fd5f76644_o.jpg", "secret": "4fd5f76644", "media": "photo", "latitude": "0", "id": "67506559", "tags": "thanksgiving family girls people toprint"}, {"datetaken": "2005-11-24 15:11:55", "license": "1", "title": "Teena Bean", "text": "", "album_id": "1445259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/66979648_221a4800e9_o.jpg", "secret": "221a4800e9", "media": "photo", "latitude": "0", "id": "66979648", "tags": "thanksgiving family people mygirls cedarcity"}, {"datetaken": "2005-11-24 15:13:08", "license": "1", "title": "Missa with her camera", "text": "", "album_id": "1445259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/66979713_85fb7295b9_o.jpg", "secret": "85fb7295b9", "media": "photo", "latitude": "0", "id": "66979713", "tags": "thanksgiving family people mygirls toprint cedarcity"}, {"datetaken": "2005-11-24 15:14:57", "license": "1", "title": "My Girls", "text": "", "album_id": "1445259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66979789_749922eb9d_o.jpg", "secret": "749922eb9d", "media": "photo", "latitude": "0", "id": "66979789", "tags": "thanksgiving family people mygirls cedarcity"}, {"datetaken": "2005-11-24 15:17:01", "license": "1", "title": "Scrunch!", "text": "", "album_id": "1445259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/67506647_7f6bcf8687_o.jpg", "secret": "7f6bcf8687", "media": "photo", "latitude": "0", "id": "67506647", "tags": "thanksgiving family girls people"}, {"datetaken": "2005-11-24 21:25:44", "license": "1", "title": "Ben", "text": "", "album_id": "1445259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/66979919_03c8329b46_o.jpg", "secret": "03c8329b46", "media": "photo", "latitude": "0", "id": "66979919", "tags": "thanksgiving family people mygirls cedarcity hatbog"}, {"datetaken": "2005-11-24 21:26:29", "license": "1", "title": "Drinking Chocolate", "text": "", "album_id": "1445259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/67506397_1776cc0b09_o.jpg", "secret": "1776cc0b09", "media": "photo", "latitude": "0", "id": "67506397", "tags": "thanksgiving family girls people"}, {"datetaken": "2005-11-25 11:28:42", "license": "1", "title": "Coloring", "text": "", "album_id": "1445259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/66980000_a50ffe2aed_o.jpg", "secret": "a50ffe2aed", "media": "photo", "latitude": "0", "id": "66980000", "tags": "thanksgiving family people mygirls toprint cedarcity"}, {"datetaken": "2005-11-25 11:30:02", "license": "1", "title": "Ayla", "text": "", "album_id": "1445259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/66980064_c37564b085_o.jpg", "secret": "c37564b085", "media": "photo", "latitude": "0", "id": "66980064", "tags": "thanksgiving family people mygirls cedarcity"}, {"datetaken": "2005-11-25 11:34:45", "license": "1", "title": "Aylas Eyes", "text": "", "album_id": "1445259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/66980141_91eb49df6a_o.jpg", "secret": "91eb49df6a", "media": "photo", "latitude": "0", "id": "66980141", "tags": "thanksgiving family people mygirls cedarcity"}, {"datetaken": "2005-11-25 11:37:19", "license": "1", "title": "Ayla", "text": "", "album_id": "1445259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/66980194_b50fe72e5f_o.jpg", "secret": "b50fe72e5f", "media": "photo", "latitude": "0", "id": "66980194", "tags": "thanksgiving family people mygirls cedarcity"}, {"datetaken": "2005-11-25 11:37:37", "license": "1", "title": "Amy Luce", "text": "", "album_id": "1445259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/66980290_687fa7d8ea_o.jpg", "secret": "687fa7d8ea", "media": "photo", "latitude": "0", "id": "66980290", "tags": "thanksgiving family people mygirls cedarcity displayfusion"}, {"datetaken": "2005-11-25 11:45:52", "license": "1", "title": "My Ayla Boola Bayla", "text": "", "album_id": "1445259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/67506310_b339dca7b4_o.jpg", "secret": "b339dca7b4", "media": "photo", "latitude": "0", "id": "67506310", "tags": "thanksgiving family girls people"}, {"datetaken": "2005-11-24 16:10:00", "license": "3", "title": "Robyn: When will it get done? We put it in at 11am and now is 5 pm already...", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/66994128_db44c5efe0_o.jpg", "secret": "db44c5efe0", "media": "photo", "latitude": "0", "id": "66994128", "tags": "thanksgiving 2005 pitt"}, {"datetaken": "2005-11-24 16:10:55", "license": "3", "title": "Let me try...", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/66994209_4dd56c3569_o.jpg", "secret": "4dd56c3569", "media": "photo", "latitude": "0", "id": "66994209", "tags": "thanksgiving 2005 pitt"}, {"datetaken": "2005-11-24 16:11:10", "license": "3", "title": "I can not believe it!", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/66994313_406f1bad5d_o.jpg", "secret": "406f1bad5d", "media": "photo", "latitude": "0", "id": "66994313", "tags": "thanksgiving 2005 pitt"}, {"datetaken": "2005-11-24 16:51:48", "license": "3", "title": "The \"pineapple version\" turkey", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/66994403_25de168a6a_o.jpg", "secret": "25de168a6a", "media": "photo", "latitude": "0", "id": "66994403", "tags": "thanksgiving 2005 pitt"}, {"datetaken": "2005-11-24 17:49:07", "license": "3", "title": "Robyn and Penelope are checking out...", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66994471_67fbbb8f32_o.jpg", "secret": "67fbbb8f32", "media": "photo", "latitude": "0", "id": "66994471", "tags": "thanksgiving 2005 pitt"}, {"datetaken": "2005-11-24 18:42:20", "license": "3", "title": "Flakes on Carson", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/66994561_16578ce6e3_o.jpg", "secret": "16578ce6e3", "media": "photo", "latitude": "0", "id": "66994561", "tags": "thanksgiving 2005 pitt"}, {"datetaken": "2005-11-24 19:08:45", "license": "3", "title": "Paul the \"turkey table father\"", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/66994631_0111c35ab0_o.jpg", "secret": "0111c35ab0", "media": "photo", "latitude": "0", "id": "66994631", "tags": "thanksgiving 2005 pitt"}, {"datetaken": "2005-11-24 19:11:37", "license": "3", "title": "Turkey's ready!", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/66994709_07d1eea50a_o.jpg", "secret": "07d1eea50a", "media": "photo", "latitude": "0", "id": "66994709", "tags": "thanksgiving 2005 pitt"}, {"datetaken": "2005-11-24 19:16:08", "license": "3", "title": "Paul and Adam", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/66994789_c02fd01e56_o.jpg", "secret": "c02fd01e56", "media": "photo", "latitude": "0", "id": "66994789", "tags": "thanksgiving 2005 pitt"}, {"datetaken": "2005-11-24 19:17:47", "license": "3", "title": "Hey! Watch my recipe", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/66994879_eadc498429_o.jpg", "secret": "eadc498429", "media": "photo", "latitude": "0", "id": "66994879", "tags": "thanksgiving 2005 pitt"}, {"datetaken": "2005-11-24 19:20:44", "license": "3", "title": "Well, got to get a slice!", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66994975_70db3c79cd_o.jpg", "secret": "70db3c79cd", "media": "photo", "latitude": "0", "id": "66994975", "tags": "thanksgiving 2005 pitt"}, {"datetaken": "2005-11-24 19:47:36", "license": "3", "title": "Happy dining people", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/66995107_00a61430d7_o.jpg", "secret": "00a61430d7", "media": "photo", "latitude": "0", "id": "66995107", "tags": "thanksgiving 2005 pitt"}, {"datetaken": "2005-11-24 19:48:15", "license": "3", "title": "Look at that Turkey!", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/66995225_49c21044c1_o.jpg", "secret": "49c21044c1", "media": "photo", "latitude": "0", "id": "66995225", "tags": "thanksgiving 2005 pitt"}, {"datetaken": "2005-11-24 22:01:08", "license": "3", "title": "Jean-Luc, Gael, and their beautiful daughter Salome", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/66995305_d76385459c_o.jpg", "secret": "d76385459c", "media": "photo", "latitude": "0", "id": "66995305", "tags": "thanksgiving 2005 pitt"}, {"datetaken": "2005-11-25 12:44:43", "license": "3", "title": "Borrowing the reflection from someone's van", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/66994032_35738ba08b_o.jpg", "secret": "35738ba08b", "media": "photo", "latitude": "0", "id": "66994032", "tags": "thanksgiving 2005 pitt"}, {"datetaken": "2005-11-26 13:15:16", "license": "3", "title": "PB260019", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/67693666_8656cc7976_o.jpg", "secret": "8656cc7976", "media": "photo", "latitude": "0", "id": "67693666", "tags": "rachel party pitt"}, {"datetaken": "2005-11-26 13:15:30", "license": "3", "title": "Post thanksgiving potluck at Rachel's", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/67693801_746ee61909_o.jpg", "secret": "746ee61909", "media": "photo", "latitude": "0", "id": "67693801", "tags": "rachel party pitt"}, {"datetaken": "2005-11-26 15:42:23", "license": "3", "title": "Dennis and I practiced at the time of potluck gathering", "text": "", "album_id": "1445664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/67693915_6418f22da1_o.jpg", "secret": "6418f22da1", "media": "photo", "latitude": "0", "id": "67693915", "tags": "rachel party pitt"}, {"datetaken": "2005-11-26 17:41:06", "license": "1", "title": "Turkey", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/67417994_82171cfaba_o.jpg", "secret": "82171cfaba", "media": "photo", "latitude": "0", "id": "67417994", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 17:42:11", "license": "1", "title": "Chef", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/67418164_cd18ed7179_o.jpg", "secret": "cd18ed7179", "media": "photo", "latitude": "0", "id": "67418164", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 17:42:19", "license": "1", "title": "sexy feet", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/67418359_97ce889746_o.jpg", "secret": "97ce889746", "media": "photo", "latitude": "0", "id": "67418359", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 17:43:09", "license": "1", "title": "thanksgiving crowd", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/67418491_921c1ffad0_o.jpg", "secret": "921c1ffad0", "media": "photo", "latitude": "0", "id": "67418491", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 17:43:28", "license": "1", "title": "sam and lee", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/67418612_4dd3f4693d_o.jpg", "secret": "4dd3f4693d", "media": "photo", "latitude": "0", "id": "67418612", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 17:43:47", "license": "1", "title": "sharpening the knives", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/67418769_ccc2bbf8f9_o.jpg", "secret": "ccc2bbf8f9", "media": "photo", "latitude": "0", "id": "67418769", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 17:44:33", "license": "1", "title": "Bleaze", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/67418927_94fdd2702d_o.jpg", "secret": "94fdd2702d", "media": "photo", "latitude": "0", "id": "67418927", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 17:44:56", "license": "1", "title": "jane's traditional photo face", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/67419061_2a17aaebfa_o.jpg", "secret": "2a17aaebfa", "media": "photo", "latitude": "0", "id": "67419061", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 18:06:01", "license": "1", "title": "jane accusing and jamie", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/67419216_f3682ea427_o.jpg", "secret": "f3682ea427", "media": "photo", "latitude": "0", "id": "67419216", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 18:06:10", "license": "1", "title": "jane and jamie", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/67419363_0da47cc7ea_o.jpg", "secret": "0da47cc7ea", "media": "photo", "latitude": "0", "id": "67419363", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 18:06:23", "license": "1", "title": "dougie, jon, vicky", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/67419433_fced271eba_o.jpg", "secret": "fced271eba", "media": "photo", "latitude": "0", "id": "67419433", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 18:09:16", "license": "1", "title": "Me", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/67419531_d3c8247ba5_o.jpg", "secret": "d3c8247ba5", "media": "photo", "latitude": "0", "id": "67419531", "tags": "weezasthanksgiving weeza nov 05 me"}, {"datetaken": "2005-11-26 18:11:13", "license": "1", "title": "The carving of the turkey", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/67419798_54c4c4851b_o.jpg", "secret": "54c4c4851b", "media": "photo", "latitude": "0", "id": "67419798", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 18:11:26", "license": "1", "title": "Listening to the speech", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/67419871_3f59956ab0_o.jpg", "secret": "3f59956ab0", "media": "photo", "latitude": "0", "id": "67419871", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 18:11:37", "license": "1", "title": "Speech", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/67419955_d9d138addb_o.jpg", "secret": "d9d138addb", "media": "photo", "latitude": "0", "id": "67419955", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 18:43:11", "license": "1", "title": "40's Colonel", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/67420064_3fc14373af_o.jpg", "secret": "3fc14373af", "media": "photo", "latitude": "0", "id": "67420064", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 18:43:17", "license": "1", "title": "Lemmy", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/67420154_ecf23f4fab_o.jpg", "secret": "ecf23f4fab", "media": "photo", "latitude": "0", "id": "67420154", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 18:44:34", "license": "1", "title": "me, jamie and some pretty lights", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/67420238_85fc4291ff_o.jpg", "secret": "85fc4291ff", "media": "photo", "latitude": "0", "id": "67420238", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 18:44:44", "license": "1", "title": "festive excitement", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/67420308_ab08aba394_o.jpg", "secret": "ab08aba394", "media": "photo", "latitude": "0", "id": "67420308", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 18:47:33", "license": "1", "title": "julie and tim", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/67420388_09b37c83ca_o.jpg", "secret": "09b37c83ca", "media": "photo", "latitude": "0", "id": "67420388", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 18:47:49", "license": "1", "title": "jamie and lou", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/67420444_d0b10985e8_o.jpg", "secret": "d0b10985e8", "media": "photo", "latitude": "0", "id": "67420444", "tags": "weezasthanksgiving weeza nov 05 jamie lou"}, {"datetaken": "2005-11-26 18:48:45", "license": "1", "title": "lou, julie, bleaze", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/67420517_a766c4217d_o.jpg", "secret": "a766c4217d", "media": "photo", "latitude": "0", "id": "67420517", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 19:09:05", "license": "1", "title": "lou in jamie's steamed up glasses", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/67420597_4f8e3bb113_o.jpg", "secret": "4f8e3bb113", "media": "photo", "latitude": "0", "id": "67420597", "tags": "weezasthanksgiving weeza nov 05 lou"}, {"datetaken": "2005-11-26 19:51:52", "license": "1", "title": "me eating", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/67420702_e8b682eb93_o.jpg", "secret": "e8b682eb93", "media": "photo", "latitude": "0", "id": "67420702", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 19:52:04", "license": "1", "title": "Mike eating", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/67420780_dd917541f0_o.jpg", "secret": "dd917541f0", "media": "photo", "latitude": "0", "id": "67420780", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 19:52:14", "license": "1", "title": "pretty lights", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/67420885_c8211fb507_o.jpg", "secret": "c8211fb507", "media": "photo", "latitude": "0", "id": "67420885", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 19:52:57", "license": "1", "title": "steamed up mirror", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/67420967_1f0369a5b0_o.jpg", "secret": "1f0369a5b0", "media": "photo", "latitude": "0", "id": "67420967", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 20:52:22", "license": "1", "title": "colourful shoes", "text": "", "album_id": "1455232", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/67417358_500e0a35eb_o.jpg", "secret": "500e0a35eb", "media": "photo", "latitude": "0", "id": "67417358", "tags": "weezasthanksgiving weeza nov 05"}, {"datetaken": "2005-11-26 00:25:12", "license": "1", "title": "Kim & Todd", "text": "", "album_id": "1460418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/67668356_094889e08b_o.jpg", "secret": "094889e08b", "media": "photo", "latitude": "0", "id": "67668356", "tags": "thanksgiving jamaicaplain brendanbehan steve kim todd"}, {"datetaken": "2005-11-26 00:25:26", "license": "1", "title": "Steve", "text": "", "album_id": "1460418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/67668540_1eb17441c8_o.jpg", "secret": "1eb17441c8", "media": "photo", "latitude": "0", "id": "67668540", "tags": "thanksgiving jamaicaplain brendanbehan steve"}, {"datetaken": "2005-11-26 00:27:40", "license": "1", "title": "look", "text": "", "album_id": "1460418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/67668752_38f38b2aaa_o.jpg", "secret": "38f38b2aaa", "media": "photo", "latitude": "0", "id": "67668752", "tags": "thanksgiving me john scott sharon ned jamaicaplain brendanbehan"}, {"datetaken": "2005-11-26 00:28:12", "license": "1", "title": "Karla", "text": "", "album_id": "1460418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/67668905_6422c00cfe_o.jpg", "secret": "6422c00cfe", "media": "photo", "latitude": "0", "id": "67668905", "tags": "thanksgiving me john scott todd ned jamaicaplain karla brendanbehan"}, {"datetaken": "2005-11-26 00:32:19", "license": "1", "title": "Karla 2", "text": "", "album_id": "1460418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/67669096_4316b26560_o.jpg", "secret": "4316b26560", "media": "photo", "latitude": "0", "id": "67669096", "tags": "thanksgiving jamaicaplain brendanbehan karla scott"}, {"datetaken": "2005-11-26 00:32:27", "license": "1", "title": "Matt", "text": "", "album_id": "1460418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/67669264_15c5230cab_o.jpg", "secret": "15c5230cab", "media": "photo", "latitude": "0", "id": "67669264", "tags": "thanksgiving jamaicaplain brendanbehan matt"}, {"datetaken": "2005-11-26 00:39:13", "license": "1", "title": "art-school reject", "text": "", "album_id": "1460418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/67669464_2dd0bfeb06_o.jpg", "secret": "2dd0bfeb06", "media": "photo", "latitude": "0", "id": "67669464", "tags": "thanksgiving jamaicaplain brendanbehan artschoolreject lydia"}, {"datetaken": "2005-11-26 00:39:33", "license": "1", "title": "art-school reject ripping up dollah bills", "text": "", "album_id": "1460418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/67669724_fab0fc2629_o.jpg", "secret": "fab0fc2629", "media": "photo", "latitude": "0", "id": "67669724", "tags": "thanksgiving jamaicaplain brendanbehan artschoolreject lydia"}, {"datetaken": "2005-11-26 00:40:26", "license": "1", "title": "Lydia making friends with art-school reject", "text": "", "album_id": "1460418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/67669934_fbf2b4f3b8_o.jpg", "secret": "fbf2b4f3b8", "media": "photo", "latitude": "0", "id": "67669934", "tags": "thanksgiving jamaicaplain brendanbehan artschoolreject lydia"}, {"datetaken": "2005-11-26 00:41:58", "license": "1", "title": "art-school reject burns dollah bills", "text": "", "album_id": "1460418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/67670184_cfa9113346_o.jpg", "secret": "cfa9113346", "media": "photo", "latitude": "0", "id": "67670184", "tags": "thanksgiving jamaicaplain brendanbehan artschoolreject lydia"}, {"datetaken": "2005-11-26 00:44:50", "license": "1", "title": "us", "text": "", "album_id": "1460418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/67670352_d9c2828a2d_o.jpg", "secret": "d9c2828a2d", "media": "photo", "latitude": "0", "id": "67670352", "tags": "thanksgiving me john lisa presley ned jamaicaplain brendanbehan"}, {"datetaken": "2005-11-26 00:45:17", "license": "1", "title": "adoring gaze", "text": "", "album_id": "1460418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/67670491_b15bd6af59_o.jpg", "secret": "b15bd6af59", "media": "photo", "latitude": "0", "id": "67670491", "tags": "thanksgiving jamaicaplain brendanbehan steve"}, {"datetaken": "2005-11-24 16:54:00", "license": "3", "title": "Katie with Rattles", "text": "", "album_id": "1463296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/67817321_8aef082ed1_o.jpg", "secret": "8aef082ed1", "media": "photo", "latitude": "0", "id": "67817321", "tags": ""}, {"datetaken": "2005-11-24 17:53:11", "license": "3", "title": "The Table (Motion Blur)", "text": "", "album_id": "1463296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/67817332_145cc382d5_o.jpg", "secret": "145cc382d5", "media": "photo", "latitude": "0", "id": "67817332", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 17:53:22", "license": "3", "title": "The Table (or at least half of it)", "text": "", "album_id": "1463296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/67817350_442a04a934_o.jpg", "secret": "442a04a934", "media": "photo", "latitude": "0", "id": "67817350", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 17:53:43", "license": "3", "title": "The Other Half", "text": "", "album_id": "1463296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/67817390_92d098e5a8_o.jpg", "secret": "92d098e5a8", "media": "photo", "latitude": "0", "id": "67817390", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 17:57:23", "license": "3", "title": "I'm Weird", "text": "", "album_id": "1463296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/67817403_004be62b2d_o.jpg", "secret": "004be62b2d", "media": "photo", "latitude": "0", "id": "67817403", "tags": ""}, {"datetaken": "2005-11-24 17:57:31", "license": "3", "title": "Extreme Closeup!", "text": "", "album_id": "1463296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/67817411_6ccd09bd9f_o.jpg", "secret": "6ccd09bd9f", "media": "photo", "latitude": "0", "id": "67817411", "tags": ""}, {"datetaken": "2005-11-24 17:59:09", "license": "3", "title": "Working in the Kitchen", "text": "", "album_id": "1463296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/67817421_93bbb36216_o.jpg", "secret": "93bbb36216", "media": "photo", "latitude": "0", "id": "67817421", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 18:00:00", "license": "3", "title": "Katie", "text": "", "album_id": "1463296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/67817437_e64027f382_o.jpg", "secret": "e64027f382", "media": "photo", "latitude": "0", "id": "67817437", "tags": ""}, {"datetaken": "2005-11-24 18:10:40", "license": "3", "title": "Getting Ready", "text": "", "album_id": "1463296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/67817445_848ada2650_o.jpg", "secret": "848ada2650", "media": "photo", "latitude": "0", "id": "67817445", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 18:14:47", "license": "3", "title": "Dinnertime!", "text": "", "album_id": "1463296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/67817461_07107a34a4_o.jpg", "secret": "07107a34a4", "media": "photo", "latitude": "0", "id": "67817461", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 19:31:20", "license": "3", "title": "Nickelodeon Trivial Pursuit", "text": "", "album_id": "1463296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/67817473_877ebbd59e_o.jpg", "secret": "877ebbd59e", "media": "photo", "latitude": "0", "id": "67817473", "tags": "thanksgiving trivialpursuit"}, {"datetaken": "2005-11-24 19:47:52", "license": "3", "title": "Nickelodeon Trivial Pursuit", "text": "", "album_id": "1463296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/67817483_37b3847625_o.jpg", "secret": "37b3847625", "media": "photo", "latitude": "0", "id": "67817483", "tags": "thanksgiving trivialpursuit"}, {"datetaken": "2005-11-24 21:08:53", "license": "3", "title": "Manly Men's Trivial Pursuit", "text": "", "album_id": "1463296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/67817507_85847b925f_o.jpg", "secret": "85847b925f", "media": "photo", "latitude": "0", "id": "67817507", "tags": "thanksgiving trivialpursuit"}, {"datetaken": "2005-11-24 22:10:25", "license": "3", "title": "FIFA", "text": "", "album_id": "1463296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/67817520_3c2c9108c1_o.jpg", "secret": "3c2c9108c1", "media": "photo", "latitude": "0", "id": "67817520", "tags": "thanksgiving video games"}, {"datetaken": "2005-11-24 22:10:41", "license": "3", "title": "On the Pool Table", "text": "", "album_id": "1463296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/67817535_299b2b67b3_o.jpg", "secret": "299b2b67b3", "media": "photo", "latitude": "0", "id": "67817535", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 22:10:49", "license": "3", "title": "On the Pool Table", "text": "", "album_id": "1463296", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/67817546_416374b491_o.jpg", "secret": "416374b491", "media": "photo", "latitude": "0", "id": "67817546", "tags": "thanksgiving"}, {"datetaken": "2005-11-25 01:27:43", "license": "1", "title": "Karen, Craig & Megan", "text": "", "album_id": "1438619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/66683380_1ba556b20f_o.jpg", "secret": "1ba556b20f", "media": "photo", "latitude": "0", "id": "66683380", "tags": "thanksgiving"}, {"datetaken": "2005-11-25 01:29:13", "license": "1", "title": "Bethany & Vicki", "text": "", "album_id": "1438619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/66683388_e6ef849204_o.jpg", "secret": "e6ef849204", "media": "photo", "latitude": "0", "id": "66683388", "tags": "thanksgiving"}, {"datetaken": "2005-11-25 01:31:25", "license": "1", "title": "James & Dan", "text": "", "album_id": "1438619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/66683396_1857e1171a_o.jpg", "secret": "1857e1171a", "media": "photo", "latitude": "0", "id": "66683396", "tags": "thanksgiving"}, {"datetaken": "2005-11-25 01:34:13", "license": "1", "title": "Lilly", "text": "", "album_id": "1438619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/66683408_3fe38ed749_o.jpg", "secret": "3fe38ed749", "media": "photo", "latitude": "0", "id": "66683408", "tags": "thanksgiving"}, {"datetaken": "2005-11-25 01:34:36", "license": "1", "title": "Lilly", "text": "", "album_id": "1438619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/66683412_b6a96714f8_o.jpg", "secret": "b6a96714f8", "media": "photo", "latitude": "0", "id": "66683412", "tags": "thanksgiving"}, {"datetaken": "2005-11-25 01:34:53", "license": "1", "title": "Dogopoly?", "text": "", "album_id": "1438619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66683416_e8bd0ac91a_o.jpg", "secret": "e8bd0ac91a", "media": "photo", "latitude": "0", "id": "66683416", "tags": "thanksgiving"}, {"datetaken": "2005-11-25 02:49:38", "license": "1", "title": "Kid's Table", "text": "", "album_id": "1438619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/66683420_ec81e5b94e_o.jpg", "secret": "ec81e5b94e", "media": "photo", "latitude": "0", "id": "66683420", "tags": "thanksgiving"}, {"datetaken": "2005-11-25 03:04:51", "license": "1", "title": "Craig & Megan", "text": "", "album_id": "1438619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/66683431_f38fc73cab_o.jpg", "secret": "f38fc73cab", "media": "photo", "latitude": "0", "id": "66683431", "tags": "thanksgiving"}, {"datetaken": "2005-11-25 05:04:22", "license": "1", "title": "Dan", "text": "", "album_id": "1438619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/66683435_bc169b8dca_o.jpg", "secret": "bc169b8dca", "media": "photo", "latitude": "0", "id": "66683435", "tags": "thanksgiving"}, {"datetaken": "2005-11-25 05:04:52", "license": "1", "title": "Joel", "text": "", "album_id": "1438619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/66683442_9530934bfe_o.jpg", "secret": "9530934bfe", "media": "photo", "latitude": "0", "id": "66683442", "tags": "thanksgiving"}, {"datetaken": "2005-11-25 05:11:59", "license": "1", "title": "Bethany", "text": "", "album_id": "1438619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/66683446_f045935756_o.jpg", "secret": "f045935756", "media": "photo", "latitude": "0", "id": "66683446", "tags": "thanksgiving"}, {"datetaken": "2005-11-25 05:50:22", "license": "1", "title": "Playing Yahtzee", "text": "", "album_id": "1438619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/66683450_0d51e7d7ae_o.jpg", "secret": "0d51e7d7ae", "media": "photo", "latitude": "0", "id": "66683450", "tags": "thanksgiving"}, {"datetaken": "2005-11-25 05:56:40", "license": "1", "title": "Dan & Joel", "text": "", "album_id": "1438619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/66683454_0dbd107c3a_o.jpg", "secret": "0dbd107c3a", "media": "photo", "latitude": "0", "id": "66683454", "tags": "thanksgiving"}, {"datetaken": "2005-11-26 03:44:07", "license": "1", "title": "Lighting candles", "text": "", "album_id": "1438619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/68364071_7d9d2893b2_o.jpg", "secret": "7d9d2893b2", "media": "photo", "latitude": "0", "id": "68364071", "tags": "thanksgiving"}, {"datetaken": "2005-11-26 03:45:46", "license": "1", "title": "Waiting for the turkey", "text": "", "album_id": "1438619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/68364058_9db663580a_o.jpg", "secret": "9db663580a", "media": "photo", "latitude": "0", "id": "68364058", "tags": "thanksgiving"}, {"datetaken": "2005-11-26 05:15:37", "license": "1", "title": "Jim and Ginny", "text": "", "album_id": "1438619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/68364062_d17bb5ff28_o.jpg", "secret": "d17bb5ff28", "media": "photo", "latitude": "0", "id": "68364062", "tags": "thanksgiving"}, {"datetaken": "2005-11-24 12:25:48", "license": "2", "title": "The 2005 Thanksgiving Table", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/68385517_a2524e315d_o.jpg", "secret": "a2524e315d", "media": "photo", "latitude": "0", "id": "68385517", "tags": ""}, {"datetaken": "2005-11-24 12:26:37", "license": "2", "title": "The 2005 Thanksgiving Table", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/68385604_f8e5b17b78_o.jpg", "secret": "f8e5b17b78", "media": "photo", "latitude": "0", "id": "68385604", "tags": "projectprecita"}, {"datetaken": "2005-11-24 12:28:24", "license": "2", "title": "The 2005 Thanksgiving Table", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/68385485_386946e17c_o.jpg", "secret": "386946e17c", "media": "photo", "latitude": "0", "id": "68385485", "tags": "projectprecita"}, {"datetaken": "2005-11-24 16:18:40", "license": "2", "title": "The 2005 Thanksgiving Table", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/68385581_dc3a5a5627_o.jpg", "secret": "dc3a5a5627", "media": "photo", "latitude": "0", "id": "68385581", "tags": ""}, {"datetaken": "2005-11-24 16:18:50", "license": "2", "title": "Miss Cora", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/68385075_b739f98a23_o.jpg", "secret": "b739f98a23", "media": "photo", "latitude": "0", "id": "68385075", "tags": ""}, {"datetaken": "2005-11-24 16:46:37", "license": "2", "title": "The Making of the Turkey Hats", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/68385390_73c0e01f3b_o.jpg", "secret": "73c0e01f3b", "media": "photo", "latitude": "0", "id": "68385390", "tags": ""}, {"datetaken": "2005-11-24 16:46:50", "license": "2", "title": "Nikolas Weinstein teaches the Ways of the Turkey Hat to the next generation.", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/68385308_f12edd0390_o.jpg", "secret": "f12edd0390", "media": "photo", "latitude": "0", "id": "68385308", "tags": ""}, {"datetaken": "2005-11-24 16:57:18", "license": "2", "title": "Erin avec Chapeau de Turkey", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/68385270_35dca00b3d_o.jpg", "secret": "35dca00b3d", "media": "photo", "latitude": "0", "id": "68385270", "tags": ""}, {"datetaken": "2005-11-24 17:06:36", "license": "2", "title": "Young Seamus and Xtine, with Turkey Hats", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/68385233_22753a3a6e_o.jpg", "secret": "22753a3a6e", "media": "photo", "latitude": "0", "id": "68385233", "tags": ""}, {"datetaken": "2005-11-24 17:10:11", "license": "2", "title": "Chef Nicole", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/68389657_a33817dd43_o.jpg", "secret": "a33817dd43", "media": "photo", "latitude": "0", "id": "68389657", "tags": "2005 thanksgiving precita navril"}, {"datetaken": "2005-11-24 17:10:25", "license": "2", "title": "The Watters Family in proper attire", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/68389624_8f5d7ae102_o.jpg", "secret": "8f5d7ae102", "media": "photo", "latitude": "0", "id": "68389624", "tags": "precita thanksgiving 2005 watters"}, {"datetaken": "2005-11-24 17:14:06", "license": "2", "title": "Cranberry Sauce (as God intended it to Be)", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/68385188_c3610159f8_o.jpg", "secret": "c3610159f8", "media": "photo", "latitude": "0", "id": "68385188", "tags": ""}, {"datetaken": "2005-11-24 17:16:46", "license": "2", "title": "The all-new for 2005 Alspach/O'Leary family, properly attired", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/68389700_01b8a59149_o.jpg", "secret": "01b8a59149", "media": "photo", "latitude": "0", "id": "68389700", "tags": "precita thanksgiving 2005 alspach"}, {"datetaken": "2005-11-24 17:22:41", "license": "2", "title": "Baby Seamus and Abigail, with Turkey Hats", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/68389765_caec2ad5e4_o.jpg", "secret": "caec2ad5e4", "media": "photo", "latitude": "0", "id": "68389765", "tags": "precita thanksgiving 2005"}, {"datetaken": "2005-11-24 17:23:39", "license": "2", "title": "Peter and his hat", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/68389727_d6641a67a9_o.jpg", "secret": "d6641a67a9", "media": "photo", "latitude": "0", "id": "68389727", "tags": "precita thanksgiving 2005"}, {"datetaken": "2005-11-24 17:41:49", "license": "2", "title": "Cooking Frenzy with Turkey Hats", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/68385134_bfd50739d3_o.jpg", "secret": "bfd50739d3", "media": "photo", "latitude": "0", "id": "68385134", "tags": ""}, {"datetaken": "2005-11-24 17:48:16", "license": "2", "title": "Fred and Mary with Turkey Hats", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/68385096_0e87233da2_o.jpg", "secret": "0e87233da2", "media": "photo", "latitude": "0", "id": "68385096", "tags": ""}, {"datetaken": "2005-11-24 18:22:18", "license": "2", "title": "2005 Thanksgiving Posse", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/68385419_24f362d92d_o.jpg", "secret": "24f362d92d", "media": "photo", "latitude": "0", "id": "68385419", "tags": ""}, {"datetaken": "2005-11-24 18:22:34", "license": "2", "title": "2005 Thanksgiving Posse", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/68385458_0972b1a073_o.jpg", "secret": "0972b1a073", "media": "photo", "latitude": "0", "id": "68385458", "tags": ""}, {"datetaken": "2005-11-24 18:23:59", "license": "2", "title": "Cavegirl Cora", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/68385050_3e1a046615_o.jpg", "secret": "3e1a046615", "media": "photo", "latitude": "0", "id": "68385050", "tags": ""}, {"datetaken": "2005-11-24 18:30:22", "license": "2", "title": "The Payoff", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/68385041_5bc60e989d_o.jpg", "secret": "5bc60e989d", "media": "photo", "latitude": "0", "id": "68385041", "tags": ""}, {"datetaken": "2005-11-24 18:46:44", "license": "2", "title": "Thanksgiving Dinner with Turkey Hats", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/68385026_946ad724d4_o.jpg", "secret": "946ad724d4", "media": "photo", "latitude": "0", "id": "68385026", "tags": ""}, {"datetaken": "2005-11-24 19:47:53", "license": "2", "title": "Abigail is a Guitar Hero", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/68385001_8268f4e9fd_o.jpg", "secret": "8268f4e9fd", "media": "photo", "latitude": "0", "id": "68385001", "tags": ""}, {"datetaken": "2005-11-24 20:01:48", "license": "2", "title": "Todd and Nicole, Thanksgiving 2005", "text": "", "album_id": "1475214", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/68384973_54a09adc16_o.jpg", "secret": "54a09adc16", "media": "photo", "latitude": "0", "id": "68384973", "tags": "tsl navril"}, {"datetaken": "2005-11-24 14:58:22", "license": "2", "title": "nice bird", "text": "", "album_id": "1477049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/68479659_66cb8d92fd_o.jpg", "secret": "66cb8d92fd", "media": "photo", "latitude": "0", "id": "68479659", "tags": "holiday thanksgiving turkey"}, {"datetaken": "2005-11-24 17:40:32", "license": "2", "title": "waiting patiently", "text": "", "album_id": "1477049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/68479670_16d104ec2b_o.jpg", "secret": "16d104ec2b", "media": "photo", "latitude": "0", "id": "68479670", "tags": "holiday thanksgiving turkey"}, {"datetaken": "2005-11-24 17:51:40", "license": "2", "title": "on the smoker", "text": "", "album_id": "1477049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/68479694_dbba069754_o.jpg", "secret": "dbba069754", "media": "photo", "latitude": "0", "id": "68479694", "tags": "holiday thanksgiving turkey"}, {"datetaken": "2005-11-24 18:05:34", "license": "2", "title": "golden", "text": "", "album_id": "1477049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/68479719_471aedb96e_o.jpg", "secret": "471aedb96e", "media": "photo", "latitude": "0", "id": "68479719", "tags": "holiday thanksgiving turkey"}, {"datetaken": "2005-11-24 18:11:11", "license": "2", "title": "mmm...taters...", "text": "", "album_id": "1477049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/68479740_382c442884_o.jpg", "secret": "382c442884", "media": "photo", "latitude": "0", "id": "68479740", "tags": "holiday thanksgiving turkey"}, {"datetaken": "2005-11-24 18:11:35", "license": "2", "title": "sup?", "text": "", "album_id": "1477049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/68479758_61499de428_o.jpg", "secret": "61499de428", "media": "photo", "latitude": "0", "id": "68479758", "tags": "holiday thanksgiving turkey"}, {"datetaken": "2005-11-24 18:14:49", "license": "2", "title": "let's eat!", "text": "", "album_id": "1477049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/68479787_e7835a4460_o.jpg", "secret": "e7835a4460", "media": "photo", "latitude": "0", "id": "68479787", "tags": "holiday thanksgiving turkey"}, {"datetaken": "2005-11-24 20:05:45", "license": "2", "title": "worst...soda...ever...", "text": "", "album_id": "1477049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/68479807_7d252157ae_o.jpg", "secret": "7d252157ae", "media": "photo", "latitude": "0", "id": "68479807", "tags": "holiday thanksgiving turkey"}, {"datetaken": "2005-11-24 20:12:22", "license": "2", "title": "smiley", "text": "", "album_id": "1477049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/68479824_2af3e5c63a_o.jpg", "secret": "2af3e5c63a", "media": "photo", "latitude": "0", "id": "68479824", "tags": "holiday thanksgiving turkey"}, {"datetaken": "2005-11-24 20:45:41", "license": "2", "title": "the aftermath", "text": "", "album_id": "1477049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/68479844_80a3ea5a39_o.jpg", "secret": "80a3ea5a39", "media": "photo", "latitude": "0", "id": "68479844", "tags": "holiday thanksgiving turkey"}, {"datetaken": "2005-11-24 22:29:11", "license": "2", "title": "dessert", "text": "", "album_id": "1477049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/68479869_3d706f6fec_o.jpg", "secret": "3d706f6fec", "media": "photo", "latitude": "0", "id": "68479869", "tags": "holiday thanksgiving turkey"}, {"datetaken": "2005-11-23 12:58:18", "license": "1", "title": "Isabel, our newest niece", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/68559374_e6d2a7a731_o.jpg", "secret": "e6d2a7a731", "media": "photo", "latitude": "0", "id": "68559374", "tags": "family thanksgiving charlotte 2005 isabel"}, {"datetaken": "2005-11-23 12:58:32", "license": "1", "title": "Isabel, our newest niece", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/68558843_e9f6c5880c_o.jpg", "secret": "e9f6c5880c", "media": "photo", "latitude": "0", "id": "68558843", "tags": "family thanksgiving charlotte 2005 isabel"}, {"datetaken": "2005-11-23 13:04:56", "license": "1", "title": "Isabel and Kelly", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/68558571_9ae4d78d44_o.jpg", "secret": "9ae4d78d44", "media": "photo", "latitude": "0", "id": "68558571", "tags": "family thanksgiving charlotte 2005 isabel kelly"}, {"datetaken": "2005-11-23 13:17:40", "license": "1", "title": "P and Isabel", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/68557990_69ee41f00a_o.jpg", "secret": "69ee41f00a", "media": "photo", "latitude": "0", "id": "68557990", "tags": "family thanksgiving charlotte 2005 isabell patrick"}, {"datetaken": "2005-11-23 14:34:16", "license": "1", "title": "Kelly and Rob", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/68557148_0640abe2cb_o.jpg", "secret": "0640abe2cb", "media": "photo", "latitude": "0", "id": "68557148", "tags": "family thanksgiving charlotte 2005 kelly rob"}, {"datetaken": "2005-11-23 14:37:32", "license": "1", "title": "Max and Isabel", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/68557436_2db5836fae_o.jpg", "secret": "2db5836fae", "media": "photo", "latitude": "0", "id": "68557436", "tags": "family thanksgiving charlotte 2005 max isabel"}, {"datetaken": "2005-11-23 15:16:45", "license": "1", "title": "P and Kelly, probably watching A&M scoring", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/68556881_db996b2c51_o.jpg", "secret": "db996b2c51", "media": "photo", "latitude": "0", "id": "68556881", "tags": "family thanksgiving charlotte 2005 kelly patrick"}, {"datetaken": "2005-11-23 15:17:26", "license": "1", "title": "Max, Rob, Kelly, P", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/68556635_ca19440f66_o.jpg", "secret": "ca19440f66", "media": "photo", "latitude": "0", "id": "68556635", "tags": "family thanksgiving charlotte 2005 max rob kelly patrick"}, {"datetaken": "2005-11-23 16:50:29", "license": "1", "title": "Beth", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/68555981_7a8d52cc1a_o.jpg", "secret": "7a8d52cc1a", "media": "photo", "latitude": "0", "id": "68555981", "tags": "family thanksgiving charlotte 2005 beth"}, {"datetaken": "2005-11-23 16:51:20", "license": "1", "title": "Beth and Isabel", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/68555667_b0e9da6f67_o.jpg", "secret": "b0e9da6f67", "media": "photo", "latitude": "0", "id": "68555667", "tags": "family thanksgiving charlotte 2005 beth isabel"}, {"datetaken": "2005-11-23 16:59:30", "license": "1", "title": "Max and Pop", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/68554809_b6fc6309b4_o.jpg", "secret": "b6fc6309b4", "media": "photo", "latitude": "0", "id": "68554809", "tags": "family thanksgiving charlotte 2005 dad max"}, {"datetaken": "2005-11-23 16:59:47", "license": "1", "title": "Nathaniel in the Kitchen", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/68554543_f10b8d4340_o.jpg", "secret": "f10b8d4340", "media": "photo", "latitude": "0", "id": "68554543", "tags": "family thanksgiving charlotte 2005 nathaniel"}, {"datetaken": "2005-11-23 17:00:52", "license": "1", "title": "Max, Dad, Beth", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/68554240_609db3dcc2_o.jpg", "secret": "609db3dcc2", "media": "photo", "latitude": "0", "id": "68554240", "tags": "family thanksgiving charlotte 2005 max dad beth"}, {"datetaken": "2005-11-23 17:03:05", "license": "1", "title": "Max and his Grandmother (!)", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/68553938_dfbdfc751b_o.jpg", "secret": "dfbdfc751b", "media": "photo", "latitude": "0", "id": "68553938", "tags": "family thanksgiving charlotte 2005 mom max"}, {"datetaken": "2005-11-23 17:17:27", "license": "1", "title": "Joyful Isabel", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/68553356_4d7523c27c_o.jpg", "secret": "4d7523c27c", "media": "photo", "latitude": "0", "id": "68553356", "tags": "family thanksgiving charlotte 2005 isabel"}, {"datetaken": "2005-11-23 17:19:07", "license": "1", "title": "Beth and Max", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/68553094_e4a86c4bcd_o.jpg", "secret": "e4a86c4bcd", "media": "photo", "latitude": "0", "id": "68553094", "tags": "family thanksgiving charlotte 2005 beth max"}, {"datetaken": "2005-11-23 17:19:55", "license": "1", "title": "Beth, Max, Nathaniel", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/68552533_316775001a_o.jpg", "secret": "316775001a", "media": "photo", "latitude": "0", "id": "68552533", "tags": "family thanksgiving charlotte 2005 beth max nathaniel"}, {"datetaken": "2005-11-23 17:20:07", "license": "1", "title": "Mom, Beth, Max", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/68552219_db72a1c0ea_o.jpg", "secret": "db72a1c0ea", "media": "photo", "latitude": "0", "id": "68552219", "tags": "family thanksgiving charlotte 2005 mom beth max"}, {"datetaken": "2005-11-23 17:20:19", "license": "1", "title": "Kelly, Max, Beth", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/68551876_5f3d89e6b3_o.jpg", "secret": "5f3d89e6b3", "media": "photo", "latitude": "0", "id": "68551876", "tags": "family thanksgiving charlotte 2005 kelly max beth"}, {"datetaken": "2005-11-23 17:27:56", "license": "1", "title": "Storytime", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/68551224_a3cad59a39_o.jpg", "secret": "a3cad59a39", "media": "photo", "latitude": "0", "id": "68551224", "tags": "family thanksgiving charlotte 2005 mom max reading"}, {"datetaken": "2005-11-23 17:41:41", "license": "1", "title": "Isabel and her Grandfather", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/68549877_582163675c_o.jpg", "secret": "582163675c", "media": "photo", "latitude": "0", "id": "68549877", "tags": "family thanksgiving charlotte 2005 isabel dad"}, {"datetaken": "2005-11-24 17:45:41", "license": "1", "title": "Max and his Grandfather", "text": "", "album_id": "1478789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/68549610_f86646c876_o.jpg", "secret": "f86646c876", "media": "photo", "latitude": "0", "id": "68549610", "tags": "family thanksgiving charlotte 2005 dad max"}, {"datetaken": "2005-07-23 20:16:57", "license": "4", "title": "The Couch & Rusty", "text": "", "album_id": "634613", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28088458_1f8ed2b769_o.jpg", "secret": "1f8ed2b769", "media": "photo", "latitude": "0", "id": "28088458", "tags": "couch rusty"}, {"datetaken": "2005-07-23 20:17:10", "license": "4", "title": "The Couch", "text": "", "album_id": "634613", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28088409_f5d4a893af_o.jpg", "secret": "f5d4a893af", "media": "photo", "latitude": "0", "id": "28088409", "tags": "couch"}, {"datetaken": "2005-07-23 20:20:10", "license": "4", "title": "The Couch", "text": "", "album_id": "634613", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28088329_7cc7045f89_o.jpg", "secret": "7cc7045f89", "media": "photo", "latitude": "0", "id": "28088329", "tags": "couch"}, {"datetaken": "2005-07-23 20:20:42", "license": "4", "title": "The Couch", "text": "", "album_id": "634613", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28088564_9b50823a90_o.jpg", "secret": "9b50823a90", "media": "photo", "latitude": "0", "id": "28088564", "tags": "couch"}, {"datetaken": "2005-07-23 20:21:05", "license": "4", "title": "The Windmill", "text": "", "album_id": "634613", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28088661_5e810535ed_o.jpg", "secret": "5e810535ed", "media": "photo", "latitude": "0", "id": "28088661", "tags": "couch"}, {"datetaken": "2005-07-23 20:21:51", "license": "4", "title": "The Covered Bridge", "text": "", "album_id": "634613", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28088727_82fab51cd7_o.jpg", "secret": "82fab51cd7", "media": "photo", "latitude": "0", "id": "28088727", "tags": "couch"}, {"datetaken": "2005-07-23 20:22:18", "license": "4", "title": "The Well", "text": "", "album_id": "634613", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28088842_0c9cf9d55a_o.jpg", "secret": "0c9cf9d55a", "media": "photo", "latitude": "0", "id": "28088842", "tags": "couch"}, {"datetaken": "2005-07-23 20:23:16", "license": "4", "title": "The Couch & Rusty", "text": "", "album_id": "634613", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28088502_3020c74c8e_o.jpg", "secret": "3020c74c8e", "media": "photo", "latitude": "0", "id": "28088502", "tags": "couch rusty"}, {"datetaken": "2005-07-23 20:30:10", "license": "4", "title": "Treasures", "text": "", "album_id": "634613", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28088874_75b3f99c77_o.jpg", "secret": "75b3f99c77", "media": "photo", "latitude": "0", "id": "28088874", "tags": "treasure"}, {"datetaken": "2005-07-23 20:33:21", "license": "4", "title": "The Slide", "text": "", "album_id": "634613", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28097005_a707b6cd29_o.jpg", "secret": "a707b6cd29", "media": "photo", "latitude": "0", "id": "28097005", "tags": "treasure slide"}, {"datetaken": "2005-07-23 22:01:38", "license": "4", "title": "One Peso", "text": "", "album_id": "634613", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28095797_c34cf27dda_o.jpg", "secret": "c34cf27dda", "media": "photo", "latitude": "0", "id": "28095797", "tags": "treasure peso"}, {"datetaken": "2005-07-23 22:02:16", "license": "4", "title": "One Peso", "text": "", "album_id": "634613", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28095832_625e0ed7c4_o.jpg", "secret": "625e0ed7c4", "media": "photo", "latitude": "0", "id": "28095832", "tags": "treasure peso"}, {"datetaken": "2005-10-08 23:46:34", "license": "1", "title": "Banff Spring hotel", "text": "", "album_id": "1146517", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/52858091_370d134641_o.jpg", "secret": "370d134641", "media": "photo", "latitude": "0", "id": "52858091", "tags": "banffspringhotel banff"}, {"datetaken": "2005-10-09 00:06:18", "license": "1", "title": "Bow River", "text": "", "album_id": "1146517", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/52858201_c0c7b0d6cc_o.jpg", "secret": "c0c7b0d6cc", "media": "photo", "latitude": "0", "id": "52858201", "tags": "banff bowriver"}, {"datetaken": "2005-10-09 01:34:12", "license": "1", "title": "Bow river valley", "text": "", "album_id": "1146517", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/52858356_b69eb15691_o.jpg", "secret": "b69eb15691", "media": "photo", "latitude": "0", "id": "52858356", "tags": "banff"}, {"datetaken": "2005-10-09 01:34:23", "license": "1", "title": "Iwuska", "text": "", "album_id": "1146517", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/52858455_29c977f0fc_o.jpg", "secret": "29c977f0fc", "media": "photo", "latitude": "0", "id": "52858455", "tags": "banff iwona iwonaerskinekellie"}, {"datetaken": "2005-10-09 01:35:07", "license": "1", "title": "ro-bear", "text": "", "album_id": "1146517", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/52858573_8464fa5332_o.jpg", "secret": "8464fa5332", "media": "photo", "latitude": "0", "id": "52858573", "tags": "banff robertscales"}, {"datetaken": "2005-10-09 02:02:31", "license": "1", "title": "mountain view", "text": "", "album_id": "1146517", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/52858723_3e4729b368_o.jpg", "secret": "3e4729b368", "media": "photo", "latitude": "0", "id": "52858723", "tags": "banff"}, {"datetaken": "2005-10-09 02:02:44", "license": "1", "title": "orange and blue", "text": "", "album_id": "1146517", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/52858804_8e6430b552_o.jpg", "secret": "8e6430b552", "media": "photo", "latitude": "0", "id": "52858804", "tags": "banff"}, {"datetaken": "2005-10-10 07:26:44", "license": "1", "title": "feasting", "text": "", "album_id": "1146517", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/52858932_2f67e5ff8a_o.jpg", "secret": "2f67e5ff8a", "media": "photo", "latitude": "0", "id": "52858932", "tags": "banff thanksgivingdinner"}, {"datetaken": "2005-10-10 07:26:52", "license": "1", "title": "dinner is served", "text": "", "album_id": "1146517", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/52859028_58a5906fbc_o.jpg", "secret": "58a5906fbc", "media": "photo", "latitude": "0", "id": "52859028", "tags": "banff thanksgivingdinner"}, {"datetaken": "2005-10-10 10:44:34", "license": "1", "title": "Ivona", "text": "", "album_id": "1146517", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/52859134_e49e5bd01c_o.jpg", "secret": "e49e5bd01c", "media": "photo", "latitude": "0", "id": "52859134", "tags": "banff thanksgivingdinner"}, {"datetaken": "2005-10-10 10:44:46", "license": "1", "title": "Marc", "text": "", "album_id": "1146517", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/52859223_09fbcec38f_o.jpg", "secret": "09fbcec38f", "media": "photo", "latitude": "0", "id": "52859223", "tags": "banff thanksgivingdinner"}, {"datetaken": "2005-10-10 10:44:53", "license": "1", "title": "mina", "text": "", "album_id": "1146517", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/52859317_2a21588c90_o.jpg", "secret": "2a21588c90", "media": "photo", "latitude": "0", "id": "52859317", "tags": "banff thanksgivingdinner"}, {"datetaken": "2005-10-10 10:45:05", "license": "1", "title": "Tom Talking with Ivona", "text": "", "album_id": "1146517", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/52859443_ff9726d88e_o.jpg", "secret": "ff9726d88e", "media": "photo", "latitude": "0", "id": "52859443", "tags": "banff thanksgivingdinner"}, {"datetaken": "2005-10-10 10:45:19", "license": "1", "title": "Kristina and Iwuska", "text": "", "album_id": "1146517", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/52859583_56fa98c3c7_o.jpg", "secret": "56fa98c3c7", "media": "photo", "latitude": "0", "id": "52859583", "tags": "banff iwona thanksgivingdinner"}, {"datetaken": "2005-08-11 10:21:30", "license": "3", "title": "Choo choo along the way", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/39459416_c5b0f470f2_o.jpg", "secret": "c5b0f470f2", "media": "photo", "latitude": "0", "id": "39459416", "tags": "railroad vacation train driving driveby inpassing carts michigan2005 tccomp029"}, {"datetaken": "2005-08-12 00:23:47", "license": "3", "title": "Silent...for now", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/40364422_25e03aa774_o.jpg", "secret": "25e03aa774", "media": "photo", "latitude": "0", "id": "40364422", "tags": "park ohio vacation film 35mm fun amusement ride rides cedarpoint coasters disposable topthrilldragster rollercoasters sandusky michigan2005"}, {"datetaken": "2005-08-12 07:26:40", "license": "3", "title": "Entrance to fun", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/39459432_9bc07e9329_o.jpg", "secret": "9bc07e9329", "media": "photo", "latitude": "0", "id": "39459432", "tags": "park ohio vacation fun amusement ride entrance rides cedarpoint sandusky michigan2005 nonstopfromhere"}, {"datetaken": "2005-08-12 07:28:55", "license": "3", "title": "Playing chicken with the band", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/39459460_d9d5c8abc4_o.jpg", "secret": "d9d5c8abc4", "media": "photo", "latitude": "0", "id": "39459460", "tags": "park ohio red vacation fun amusement ride band rides marchingband cedarpoint sandusky michigan2005 bermudatriangleforbands"}, {"datetaken": "2005-08-12 07:30:19", "license": "3", "title": "Waiting for the screamers", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/39459479_6a3ed39ab8_o.jpg", "secret": "6a3ed39ab8", "media": "photo", "latitude": "0", "id": "39459479", "tags": "park blue ohio vacation green catchycolors fun amusement ride loop rides rollercoaster coaster cedarpoint sandusky michigan2005"}, {"datetaken": "2005-08-12 07:33:55", "license": "3", "title": "Going up, or coming down?", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/39459517_3b33ae7f08_o.jpg", "secret": "3b33ae7f08", "media": "photo", "latitude": "0", "id": "39459517", "tags": "park ohio vacation fun amusement ride rides cedarpoint sandusky michigan2005 powertower hopeyoutookyourdramamine"}, {"license": "0", "title": "Surrounded!", "farm": "1", "text": "", "album_id": "868353", "secret": "bf84879ac1", "longitude": "0", "server": "26", "datetaken": "2005-08-12 07:45:10", "url_m": "https://farm1.staticflickr.com/26/39459585_bf84879ac1.jpg", "media": "photo", "latitude": "0", "id": "39459585", "tags": "park ohio vacation catchycolors fun amusement ride curves curvy rides cedarpoint coasters rollercoasters sandusky michigan2005 utata:project=curvy"}, {"datetaken": "2005-08-12 07:51:24", "license": "3", "title": "Mantis", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/39459617_bf0201fa50_o.jpg", "secret": "bf0201fa50", "media": "photo", "latitude": "0", "id": "39459617", "tags": "park ohio vacation mantis fun amusement ride rides rollercoaster coaster cedarpoint sandusky michigan2005"}, {"datetaken": "2005-08-12 08:13:45", "license": "3", "title": "By the time you look up..", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/39459654_1ae6adb1c3_o.jpg", "secret": "1ae6adb1c3", "media": "photo", "latitude": "0", "id": "39459654", "tags": "park blue ohio vacation blur fun amusement ride fast rides rollercoaster coaster cedarpoint milleniumforce sandusky michigan2005 90mph"}, {"datetaken": "2005-08-12 08:19:26", "license": "3", "title": "Dropoff to oblivion", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/39459665_22502276a6_o.jpg", "secret": "22502276a6", "media": "photo", "latitude": "0", "id": "39459665", "tags": "park ohio vacation fun amusement ride rides rollercoaster coaster cedarpoint milleniumforce dropoff sandusky michigan2005"}, {"datetaken": "2005-08-12 08:20:24", "license": "3", "title": "90 m.p.h.", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/39459704_501b36d313_o.jpg", "secret": "501b36d313", "media": "photo", "latitude": "0", "id": "39459704", "tags": "park ohio vacation fun amusement ride fast rides rollercoaster coaster cedarpoint milleniumforce sandusky michigan2005 90mph"}, {"datetaken": "2005-08-12 08:34:25", "license": "3", "title": "Which way did they go?", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/39459726_5bdf0f4221_o.jpg", "secret": "5bdf0f4221", "media": "photo", "latitude": "0", "id": "39459726", "tags": "park blue ohio vacation sky white clouds fun amusement ride rides rollercoaster coaster cedarpoint sandusky michigan2005 mantisithink"}, {"datetaken": "2005-08-12 09:22:33", "license": "3", "title": "HOLD ON!", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/40364168_b59f8b4adb_o.jpg", "secret": "b59f8b4adb", "media": "photo", "latitude": "0", "id": "40364168", "tags": "park ohio vacation green yellow fun lights amusement ride rides cedarpoint coasters topthrilldragster rollercoasters holdon sandusky michigan2005 prestage"}, {"license": "0", "title": "In other words: So long, sucker!", "farm": "1", "text": "", "album_id": "868353", "secret": "6d54823832", "longitude": "0", "server": "22", "datetaken": "2005-08-12 09:33:25", "url_m": "https://farm1.staticflickr.com/22/40364150_6d54823832.jpg", "media": "photo", "latitude": "0", "id": "40364150", "tags": "ohio vacation sign fun amusement ride rules rides cedarpoint coasters topthrilldragster rollercoasters sandusky michigan2005 safetyguide"}, {"datetaken": "2005-08-12 10:06:24", "license": "3", "title": "Anxiety attack times 10", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/40364191_e6e514d0c2_o.jpg", "secret": "e6e514d0c2", "media": "photo", "latitude": "0", "id": "40364191", "tags": "park ohio vacation woman man fun amusement ride rides cedarpoint coasters topthrilldragster rollercoasters sandusky michigan2005 scareddoesntcoverit tccomp070"}, {"datetaken": "2005-08-12 11:03:23", "license": "3", "title": "Waiting, chatting, sweating", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/40364248_ddb5c20789_o.jpg", "secret": "ddb5c20789", "media": "photo", "latitude": "0", "id": "40364248", "tags": "park ohio vacation men fun amusement waiting ride males rides cedarpoint coasters topthrilldragster rollercoasters sandusky michigan2005 andwaiting"}, {"datetaken": "2005-08-12 11:06:02", "license": "3", "title": "Heights, Schmeights", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/39459565_cc4b639e8f_o.jpg", "secret": "cc4b639e8f", "media": "photo", "latitude": "0", "id": "39459565", "tags": "park ohio vacation film 35mm fun amusement ride rides cedarpoint disposable sandusky michigan2005 powertower"}, {"datetaken": "2005-08-12 11:06:11", "license": "3", "title": "Follow the yellow steel road", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/40741403_befd24d6cd_o.jpg", "secret": "befd24d6cd", "media": "photo", "latitude": "0", "id": "40741403", "tags": "park ohio vacation film 35mm fun amusement ride flare rides rollercoaster coaster cedarpoint disposable sandusky michigan2005 wickedtwister"}, {"datetaken": "2005-08-12 11:32:52", "license": "3", "title": "Finally!", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/40364300_b1a0903383_o.jpg", "secret": "b1a0903383", "media": "photo", "latitude": "0", "id": "40364300", "tags": "park friends ohio vacation fun amusement women ride jill holly buds rides unposed cedarpoint coasters topthrilldragster rollercoasters sandusky michigan2005 coasterchicks itwasaboutdamntime"}, {"datetaken": "2005-08-12 11:33:00", "license": "3", "title": "Aaaaand...they're off!", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/40364337_01ed236c9d_o.jpg", "secret": "01ed236c9d", "media": "photo", "latitude": "0", "id": "40364337", "tags": "park ohio vacation people fun amusement ride rides unposed cedarpoint coasters topthrilldragster rollercoasters sandusky michigan2005"}, {"datetaken": "2005-08-12 11:41:13", "license": "3", "title": "Survivors", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/40364372_c3e0d9af79_o.jpg", "secret": "c3e0d9af79", "media": "photo", "latitude": "0", "id": "40364372", "tags": "park friends ohio vacation fun amusement women ride jill holly buds rides cedarpoint coasters topthrilldragster rollercoasters sandusky michigan2005 coasterchicks"}, {"license": "0", "title": "Momentum", "farm": "1", "text": "", "album_id": "868353", "secret": "e8558d47ae", "longitude": "0", "server": "29", "datetaken": "2005-08-12 11:44:12", "url_m": "https://farm1.staticflickr.com/29/40364401_e8558d47ae.jpg", "media": "photo", "latitude": "0", "id": "40364401", "tags": "park ohio vacation blackandwhite bw fun amusement ride rides cedarpoint coasters topthrilldragster rollercoasters sandusky michigan2005"}, {"license": "0", "title": "Solace from the sun", "farm": "1", "text": "", "album_id": "868353", "secret": "875eecd876", "longitude": "0", "server": "23", "datetaken": "2005-08-12 12:51:05", "url_m": "https://farm1.staticflickr.com/23/40741245_875eecd876.jpg", "media": "photo", "latitude": "0", "id": "40741245", "tags": "park ohio red vacation white green umbrella catchycolors fun amusement ride huge rides cedarpoint sandusky michigan2005"}, {"datetaken": "2005-08-12 13:28:09", "license": "3", "title": "Plant yourself", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/40741268_f86f1957d0_o.jpg", "secret": "f86f1957d0", "media": "photo", "latitude": "0", "id": "40741268", "tags": "park ohio vacation urban plant green nature leaves fun amusement ride maroon rides cedarpoint sandusky michigan2005"}, {"datetaken": "2005-08-12 14:00:03", "license": "3", "title": "Is this thing on right?", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/40741299_c43ce27afd_o.jpg", "secret": "c43ce27afd", "media": "photo", "latitude": "0", "id": "40741299", "tags": "park friends ohio vacation fun amusement women ride jill holly buds rides rollercoaster coaster cedarpoint sandusky michigan2005 wickedtwister coasterchicks"}, {"license": "0", "title": "Come on baby, let's do the twist!", "farm": "1", "text": "", "album_id": "868353", "secret": "16c530be48", "longitude": "0", "server": "32", "datetaken": "2005-08-12 14:00:57", "url_m": "https://farm1.staticflickr.com/32/40741337_16c530be48.jpg", "media": "photo", "latitude": "0", "id": "40741337", "tags": "park ohio vacation topv111 fun amusement insane ride rides rollercoaster coaster cedarpoint sandusky michigan2005 wickedtwister tccomp026"}, {"datetaken": "2005-08-12 14:01:51", "license": "3", "title": "Rainbow wheel", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/40741430_9e8607026e_o.jpg", "secret": "9e8607026e", "media": "photo", "latitude": "0", "id": "40741430", "tags": "park blue ohio red vacation orange green cars colors yellow fun amusement ride ferriswheel rides cedarpoint giantwheel sandusky michigan2005 utatahotwheels"}, {"datetaken": "2005-08-12 16:00:31", "license": "3", "title": "Second verse, same as the first!", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/40741450_c5efb46a17_o.jpg", "secret": "c5efb46a17", "media": "photo", "latitude": "0", "id": "40741450", "tags": "park friends ohio vacation fun amusement women ride jill holly buds rides rollercoaster coaster cedarpoint topthrilldragster sandusky michigan2005 coasterchicks"}, {"datetaken": "2005-08-12 16:19:26", "license": "3", "title": "Dodgem", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/40741468_3573335a9c_o.jpg", "secret": "3573335a9c", "media": "photo", "latitude": "0", "id": "40741468", "tags": "park pink blue ohio red vacation green colors sign yellow catchycolors fun amusement ride rides bumpercars cedarpoint sandusky dodgem michigan2005"}, {"datetaken": "2005-08-12 16:41:59", "license": "3", "title": "But seriously folks...", "text": "", "album_id": "868353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/40741494_7333df066a_o.jpg", "secret": "7333df066a", "media": "photo", "latitude": "0", "id": "40741494", "tags": "park friends ohio vacation fun amusement women dragon ride jester jill smiles hats holly blogged buds rides cedarpoint giftshop sandusky michigan2005 tccomp072"}, {"datetaken": "2006-03-25 22:15:00", "license": "3", "title": "First Times Square Photo", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/118022026_92d725c5e5_o.jpg", "secret": "92d725c5e5", "media": "photo", "latitude": "0", "id": "118022026", "tags": "nyc newyorkcity vacation bw ny newyork film rain square crowd contax times rodinal bathroomdarkroom rtsii"}, {"datetaken": "2006-03-25 22:20:21", "license": "3", "title": "Subway I", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/118022219_eb98911127_o.jpg", "secret": "eb98911127", "media": "photo", "latitude": "0", "id": "118022219", "tags": "nyc newyorkcity vacation bw ny newyork film underground subway dirty contax rodinal bathroomdarkroom rtsii distagon35"}, {"datetaken": "2006-03-25 22:22:51", "license": "3", "title": "The Eponymous Bridge", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/118022283_bf82506f77_o.jpg", "secret": "bf82506f77", "media": "photo", "latitude": "0", "id": "118022283", "tags": "nyc newyorkcity bridge vacation bw ny newyork film water skyline architecture brooklyn river contax rodinal bathroomdarkroom rtsii distagon35"}, {"datetaken": "2006-03-25 22:30:53", "license": "3", "title": "Arrived", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/118021631_0469a34cef_o.jpg", "secret": "0469a34cef", "media": "photo", "latitude": "0", "id": "118021631", "tags": "nyc newyorkcity vacation bw ny newyork film andy friend contax tired rodinal jm arrived bathroomdarkroom needbeer jaubertmoniker rtsii"}, {"datetaken": "2006-03-25 22:35:13", "license": "3", "title": "Subway II", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/118022235_1f58eef7dc_o.jpg", "secret": "1f58eef7dc", "media": "photo", "latitude": "0", "id": "118022235", "tags": "nyc newyorkcity vacation bw ny newyork film subway platform contax queens astoria rodinal bathroomdarkroom rtsii distagon35"}, {"datetaken": "2006-03-25 22:38:24", "license": "3", "title": "Subway III", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/118022250_e7c3f08063_o.jpg", "secret": "e7c3f08063", "media": "photo", "latitude": "0", "id": "118022250", "tags": "nyc newyorkcity vacation bw ny newyork film subway platform contax rodinal bathroomdarkroom rtsii distagon35"}, {"datetaken": "2006-03-25 22:41:34", "license": "3", "title": "Subway IV", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/118022258_5bc22e2d64_o.jpg", "secret": "5bc22e2d64", "media": "photo", "latitude": "0", "id": "118022258", "tags": "nyc newyorkcity vacation bw ny newyork film underground subway dirty contax rodinal bathroomdarkroom rtsii distagon35"}, {"datetaken": "2006-03-25 22:45:43", "license": "3", "title": "Breakin' I", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/118021643_24084e63a8_o.jpg", "secret": "24084e63a8", "media": "photo", "latitude": "0", "id": "118021643", "tags": "street nyc newyorkcity shadow vacation urban bw ny newyork art film amazing dancing newyorkpubliclibrary highlights contax talent hiphop breakdancing rodinal bathroomdarkroom rtsii"}, {"datetaken": "2006-03-25 22:47:03", "license": "3", "title": "Breakin' II : Electric Boogaloo", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/118021651_2d7cc19389_o.jpg", "secret": "2d7cc19389", "media": "photo", "latitude": "0", "id": "118021651", "tags": "street nyc newyorkcity shadow vacation urban bw ny newyork art film amazing dancing newyorkpubliclibrary highlights contax talent hiphop breakdancing rodinal bathroomdarkroom rtsii"}, {"datetaken": "2006-03-25 22:50:29", "license": "3", "title": "Breakin' III", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/118021660_d4c1e80163_o.jpg", "secret": "d4c1e80163", "media": "photo", "latitude": "0", "id": "118021660", "tags": "street nyc newyorkcity shadow vacation urban bw ny newyork art film amazing dancing newyorkpubliclibrary highlights contax talent hiphop breakdancing rodinal bathroomdarkroom rtsii"}, {"datetaken": "2006-03-25 22:51:56", "license": "3", "title": "Breakin' IV", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/118021671_581aee8d75_o.jpg", "secret": "581aee8d75", "media": "photo", "latitude": "0", "id": "118021671", "tags": "street nyc newyorkcity shadow vacation urban bw ny newyork art film amazing dancing newyorkpubliclibrary highlights contax talent hiphop breakdancing rodinal bathroomdarkroom rtsii"}, {"datetaken": "2006-03-25 22:59:47", "license": "3", "title": "Breakin' V", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/118021704_411040e337_o.jpg", "secret": "411040e337", "media": "photo", "latitude": "0", "id": "118021704", "tags": "street nyc newyorkcity shadow vacation urban bw ny newyork art film amazing dancing newyorkpubliclibrary highlights contax talent hiphop breakdancing rodinal bathroomdarkroom rtsii"}, {"datetaken": "2006-03-25 23:14:18", "license": "3", "title": "Breakin' VI", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/118021716_971fa97974_o.jpg", "secret": "971fa97974", "media": "photo", "latitude": "0", "id": "118021716", "tags": "street nyc newyorkcity shadow vacation urban bw ny newyork art film amazing dancing newyorkpubliclibrary highlights contax talent hiphop breakdancing rodinal bathroomdarkroom rtsii"}, {"datetaken": "2006-03-25 23:17:21", "license": "3", "title": "Breakin' VII", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/118021736_317c402a10_o.jpg", "secret": "317c402a10", "media": "photo", "latitude": "0", "id": "118021736", "tags": "street nyc newyorkcity shadow vacation urban bw ny newyork art film amazing dancing newyorkpubliclibrary highlights contax talent hiphop breakdancing rodinal bathroomdarkroom rtsii"}, {"datetaken": "2006-03-25 23:23:30", "license": "3", "title": "Breakin' VIII", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/118021774_56bbe76088_o.jpg", "secret": "56bbe76088", "media": "photo", "latitude": "0", "id": "118021774", "tags": "street nyc newyorkcity shadow vacation urban bw ny newyork art film amazing dancing newyorkpubliclibrary highlights contax talent hiphop breakdancing rodinal bathroomdarkroom rtsii"}, {"datetaken": "2006-03-25 23:25:45", "license": "3", "title": "Breakin' IX", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/118021693_fdd2ca0eb3_o.jpg", "secret": "fdd2ca0eb3", "media": "photo", "latitude": "0", "id": "118021693", "tags": "breakdancing urban street art dancing hiphop amazing talent shadow highlights newyorkpubliclibrary contax rtsii film bathroomdarkroom rodinal vacation nyc newyorkcity ny newyork bw"}, {"datetaken": "2006-03-25 23:41:15", "license": "3", "title": "Breakin' X", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/118021811_f387eaf9e6_o.jpg", "secret": "f387eaf9e6", "media": "photo", "latitude": "0", "id": "118021811", "tags": "street nyc newyorkcity shadow vacation urban bw ny newyork art film amazing dancing newyorkpubliclibrary highlights contax talent hiphop breakdancing rodinal bathroomdarkroom rtsii"}, {"datetaken": "2006-03-25 23:41:57", "license": "3", "title": "Central Park Bridge", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/118021841_bd11fe3a57_o.jpg", "secret": "bd11fe3a57", "media": "photo", "latitude": "0", "id": "118021841", "tags": "nyc newyorkcity bridge trees vacation bw ny newyork film nature centralpark contax rodinal bathroomdarkroom rtsii"}, {"datetaken": "2006-03-25 23:42:16", "license": "3", "title": "Central Park Ducks", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/118021885_3d1cd59f10_o.jpg", "secret": "3d1cd59f10", "media": "photo", "latitude": "0", "id": "118021885", "tags": "nyc newyorkcity vacation bw ny newyork film nature centralpark ducks contax rodinal bathroomdarkroom rtsii"}, {"datetaken": "2006-03-25 23:42:52", "license": "3", "title": "Central Park Trees", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/118021953_c8ddf00da5_o.jpg", "secret": "c8ddf00da5", "media": "photo", "latitude": "0", "id": "118021953", "tags": "nyc newyorkcity trees vacation bw ny newyork film nature centralpark contax rodinal bathroomdarkroom rtsii"}, {"datetaken": "2006-03-26 00:07:35", "license": "3", "title": "Robots I", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/118022082_7ac8c44f39_o.jpg", "secret": "7ac8c44f39", "media": "photo", "latitude": "0", "id": "118022082", "tags": "nyc newyorkcity vacation bw ny newyork film robots contax jp rodinal bathroomdarkroom rtsii planar50"}, {"datetaken": "2006-03-26 00:08:03", "license": "3", "title": "Robots II", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/118022116_a81d85b547_o.jpg", "secret": "a81d85b547", "media": "photo", "latitude": "0", "id": "118022116", "tags": "nyc newyorkcity vacation bw ny newyork film robots contax jp rodinal bathroomdarkroom rtsii planar50"}, {"datetaken": "2006-03-26 00:08:41", "license": "3", "title": "Robots III", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/118022165_7cd81f456d_o.jpg", "secret": "7cd81f456d", "media": "photo", "latitude": "0", "id": "118022165", "tags": "nyc newyorkcity vacation bw ny newyork film robots contax jp rodinal bathroomdarkroom rtsii planar50"}, {"datetaken": "2006-03-26 00:09:18", "license": "3", "title": "Put Your Hands In The Air", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/118022046_bb708ecc09_o.jpg", "secret": "bb708ecc09", "media": "photo", "latitude": "0", "id": "118022046", "tags": "nyc newyorkcity vacation bw ny newyork film robot rockstar contax rocking rodinal bathroomdarkroom rtsii"}, {"datetaken": "2006-03-26 00:09:45", "license": "3", "title": "Robots IV", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/118022207_89bb82473f_o.jpg", "secret": "89bb82473f", "media": "photo", "latitude": "0", "id": "118022207", "tags": "nyc newyorkcity vacation bw ny newyork film robots contax jp rodinal bathroomdarkroom rtsii planar50"}, {"datetaken": "2006-03-26 00:10:06", "license": "3", "title": "Rebecca", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/118022062_966c6191f0_o.jpg", "secret": "966c6191f0", "media": "photo", "latitude": "0", "id": "118022062", "tags": "nyc newyorkcity vacation bw ny newyork cute love film girlfriend sweet contax telescope pirate rodinal bathroomdarkroom rtsii zophos"}, {"datetaken": "2006-03-26 00:10:22", "license": "3", "title": "Andy", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/118021609_803d03ee4c_o.jpg", "secret": "803d03ee4c", "media": "photo", "latitude": "0", "id": "118021609", "tags": "nyc newyorkcity vacation bw ny newyork film andy contax rodinal bathroomdarkroom rtsii hardcoredrinking"}, {"datetaken": "2006-03-26 00:10:39", "license": "3", "title": "Chris and Sarah", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/118021988_070d87e54d_o.jpg", "secret": "070d87e54d", "media": "photo", "latitude": "0", "id": "118021988", "tags": "nyc newyorkcity vacation bw ny newyork film contax rodinal bathroomdarkroom rtsii"}, {"datetaken": "2006-03-26 00:10:56", "license": "3", "title": "Chris", "text": "", "album_id": "72057594090774925", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/118022015_cf916117ba_o.jpg", "secret": "cf916117ba", "media": "photo", "latitude": "0", "id": "118022015", "tags": "nyc newyorkcity vacation bw ny newyork film contax rodinal bathroomdarkroom rtsii"}, {"datetaken": "2006-04-09 17:57:51", "license": "3", "title": "Whose Birthday is It?", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/233409600_3ba0d781c6_o.jpg", "secret": "3ba0d781c6", "media": "photo", "latitude": "0", "id": "233409600", "tags": ""}, {"datetaken": "2006-04-09 17:59:07", "license": "3", "title": "The Birthday Boy", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/233409534_6fae85592c_o.jpg", "secret": "6fae85592c", "media": "photo", "latitude": "0", "id": "233409534", "tags": ""}, {"datetaken": "2006-04-09 18:03:47", "license": "3", "title": "Blowing Out Candles with Bruce", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/233409466_144d64a9a8_o.jpg", "secret": "144d64a9a8", "media": "photo", "latitude": "0", "id": "233409466", "tags": ""}, {"datetaken": "2006-04-09 18:04:01", "license": "3", "title": "Carrot Cake, His Favorite", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/233409390_013cca9aba_o.jpg", "secret": "013cca9aba", "media": "photo", "latitude": "0", "id": "233409390", "tags": ""}, {"datetaken": "2006-04-09 18:07:25", "license": "3", "title": "Sharing Cake with Everyone", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/233409253_7ca5518bda_o.jpg", "secret": "7ca5518bda", "media": "photo", "latitude": "0", "id": "233409253", "tags": ""}, {"datetaken": "2006-04-09 18:31:56", "license": "3", "title": "Happy", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/233409738_a62322d4fa_o.jpg", "secret": "a62322d4fa", "media": "photo", "latitude": "0", "id": "233409738", "tags": ""}, {"datetaken": "2006-04-09 18:32:10", "license": "3", "title": "Birtday", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/233409656_2de1ba0622_o.jpg", "secret": "2de1ba0622", "media": "photo", "latitude": "0", "id": "233409656", "tags": ""}, {"datetaken": "2006-04-09 18:35:28", "license": "3", "title": "What's in Here?", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/233409008_d86d5e544d_o.jpg", "secret": "d86d5e544d", "media": "photo", "latitude": "0", "id": "233409008", "tags": ""}, {"datetaken": "2006-04-09 18:35:37", "license": "3", "title": "Present Opening Time", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/233409189_74215e7750_o.jpg", "secret": "74215e7750", "media": "photo", "latitude": "0", "id": "233409189", "tags": ""}, {"datetaken": "2006-04-09 18:35:46", "license": "3", "title": "A Bag Full of Horns!", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/233408924_a85d6ecdf0_o.jpg", "secret": "a85d6ecdf0", "media": "photo", "latitude": "0", "id": "233408924", "tags": ""}, {"datetaken": "2006-04-09 18:36:39", "license": "3", "title": "Chuck Plays a Mean Horn", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/233408772_ff7c16397e_o.jpg", "secret": "ff7c16397e", "media": "photo", "latitude": "0", "id": "233408772", "tags": ""}, {"datetaken": "2006-04-09 18:36:48", "license": "3", "title": "He Can't Take It", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/233408702_287fe83839_o.jpg", "secret": "287fe83839", "media": "photo", "latitude": "0", "id": "233408702", "tags": ""}, {"datetaken": "2006-04-09 18:39:19", "license": "3", "title": "Marinade Anyone?", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/233408447_f7d6551074_o.jpg", "secret": "f7d6551074", "media": "photo", "latitude": "0", "id": "233408447", "tags": ""}, {"datetaken": "2006-04-09 18:39:54", "license": "3", "title": "Daniel Mugs for the Camera", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/233409067_ba9adc4200_o.jpg", "secret": "ba9adc4200", "media": "photo", "latitude": "0", "id": "233409067", "tags": ""}, {"datetaken": "2006-04-09 18:40:36", "license": "3", "title": "A Long Card", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/233408619_944ebf7a2f_o.jpg", "secret": "944ebf7a2f", "media": "photo", "latitude": "0", "id": "233408619", "tags": ""}, {"datetaken": "2006-04-09 18:43:19", "license": "3", "title": "Killian is an Experimental Musician", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/233408849_3e1d0dba58_o.jpg", "secret": "3e1d0dba58", "media": "photo", "latitude": "0", "id": "233408849", "tags": ""}, {"datetaken": "2006-04-09 18:43:50", "license": "3", "title": "The BBQ King", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/93/233408545_d1674618d0_o.jpg", "secret": "d1674618d0", "media": "photo", "latitude": "0", "id": "233408545", "tags": ""}, {"datetaken": "2006-04-09 18:46:58", "license": "3", "title": "Daniel Perches", "text": "", "album_id": "72157594267605245", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/233409107_d4c549f578_o.jpg", "secret": "d4c549f578", "media": "photo", "latitude": "0", "id": "233409107", "tags": ""}, {"datetaken": "2007-02-14 19:30:21", "license": "3", "title": "Valentine's Day 07 001", "text": "", "album_id": "72157594537876926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/391459455_c2172117d1_o.jpg", "secret": "c2172117d1", "media": "photo", "latitude": "0", "id": "391459455", "tags": "roses day valentines"}, {"datetaken": "2007-02-14 19:30:38", "license": "3", "title": "Valentine's Day 07 002", "text": "", "album_id": "72157594537876926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/391459935_bf9c6e5554_o.jpg", "secret": "bf9c6e5554", "media": "photo", "latitude": "0", "id": "391459935", "tags": "roses day valentines"}, {"datetaken": "2007-02-14 19:31:25", "license": "3", "title": "Valentine's Day 07 007", "text": "", "album_id": "72157594537876926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/391460337_86b1d8e344_o.jpg", "secret": "86b1d8e344", "media": "photo", "latitude": "0", "id": "391460337", "tags": "roses day valentines"}, {"datetaken": "2007-02-14 19:31:32", "license": "3", "title": "Valentine's Day 07 008", "text": "", "album_id": "72157594537876926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/169/391460750_26eeb7a22f_o.jpg", "secret": "26eeb7a22f", "media": "photo", "latitude": "0", "id": "391460750", "tags": "roses day valentines"}, {"datetaken": "2007-02-14 19:31:38", "license": "3", "title": "Valentine's Day 07 009", "text": "", "album_id": "72157594537876926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/391461218_e12461578e_o.jpg", "secret": "e12461578e", "media": "photo", "latitude": "0", "id": "391461218", "tags": "day valentines"}, {"datetaken": "2007-02-14 19:31:53", "license": "3", "title": "Valentine's Day 07 010", "text": "", "album_id": "72157594537876926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/391461610_0ad3815431_o.jpg", "secret": "0ad3815431", "media": "photo", "latitude": "0", "id": "391461610", "tags": "roses day valentines"}, {"datetaken": "2007-02-14 19:32:01", "license": "3", "title": "Valentine's Day 07 011", "text": "", "album_id": "72157594537876926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/391462057_b220ec5c2b_o.jpg", "secret": "b220ec5c2b", "media": "photo", "latitude": "0", "id": "391462057", "tags": "roses day valentines"}, {"datetaken": "2007-02-14 19:32:13", "license": "3", "title": "Valentine's Day 07 012", "text": "", "album_id": "72157594537876926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/391462506_f8ca1f263d_o.jpg", "secret": "f8ca1f263d", "media": "photo", "latitude": "0", "id": "391462506", "tags": "roses day valentines"}, {"datetaken": "2007-02-14 19:32:34", "license": "3", "title": "Valentine's Day 07 013", "text": "", "album_id": "72157594537876926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/391462848_197a8edcaa_o.jpg", "secret": "197a8edcaa", "media": "photo", "latitude": "0", "id": "391462848", "tags": "roses day valentines"}, {"datetaken": "2007-02-14 19:32:42", "license": "3", "title": "Valentine's Day 07 014", "text": "", "album_id": "72157594537876926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/391463378_fb0ffe115d_o.jpg", "secret": "fb0ffe115d", "media": "photo", "latitude": "0", "id": "391463378", "tags": "roses day valentines"}, {"datetaken": "2007-02-14 19:32:53", "license": "3", "title": "Valentine's Day 07 015", "text": "", "album_id": "72157594537876926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/391463798_d5ceea9c39_o.jpg", "secret": "d5ceea9c39", "media": "photo", "latitude": "0", "id": "391463798", "tags": "roses day valentines"}, {"datetaken": "2007-02-14 19:32:59", "license": "3", "title": "Valentine's Day 07 016", "text": "", "album_id": "72157594537876926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/391464232_2afadd97d6_o.jpg", "secret": "2afadd97d6", "media": "photo", "latitude": "0", "id": "391464232", "tags": "roses day valentines"}, {"datetaken": "2007-02-15 20:21:44", "license": "5", "title": "Casa Mora Stained Glass - Yellow", "text": "", "album_id": "72157594538251999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/391650408_8f7a2e339e_o.jpg", "secret": "8f7a2e339e", "media": "photo", "latitude": "0", "id": "391650408", "tags": "glass vancouver"}, {"datetaken": "2007-02-15 20:22:02", "license": "5", "title": "Casa Mora Stained Glass - Red", "text": "", "album_id": "72157594538251999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/391650661_4c50b73aa1_o.jpg", "secret": "4c50b73aa1", "media": "photo", "latitude": "0", "id": "391650661", "tags": "reflection glass vancouver heart"}, {"datetaken": "2007-02-15 20:29:12", "license": "5", "title": "Railing", "text": "", "album_id": "72157594538251999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/391651006_41d801848f_o.jpg", "secret": "41d801848f", "media": "photo", "latitude": "0", "id": "391651006", "tags": "vancouver"}, {"datetaken": "2007-02-15 20:29:54", "license": "5", "title": "SunBeams", "text": "", "album_id": "72157594538251999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/391651319_266f475abd_o.jpg", "secret": "266f475abd", "media": "photo", "latitude": "0", "id": "391651319", "tags": "vancouver"}, {"datetaken": "2007-02-15 20:34:33", "license": "5", "title": "Flowers", "text": "", "album_id": "72157594538251999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/391651640_5aefe9fb27_o.jpg", "secret": "5aefe9fb27", "media": "photo", "latitude": "0", "id": "391651640", "tags": "vancouver"}, {"datetaken": "2007-02-15 20:35:03", "license": "5", "title": "Grid", "text": "", "album_id": "72157594538251999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/391653758_75b5cff11c_o.jpg", "secret": "75b5cff11c", "media": "photo", "latitude": "0", "id": "391653758", "tags": "vancouver"}, {"datetaken": "2007-02-15 20:37:50", "license": "5", "title": "4-Way", "text": "", "album_id": "72157594538251999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/391652250_a360309a86_o.jpg", "secret": "a360309a86", "media": "photo", "latitude": "0", "id": "391652250", "tags": "reflection vancouver"}, {"datetaken": "2007-02-16 19:09:26", "license": "5", "title": "Freight Elevator", "text": "", "album_id": "72157594538251999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/393734432_8820b11246_o.jpg", "secret": "8820b11246", "media": "photo", "latitude": "0", "id": "393734432", "tags": ""}, {"datetaken": "2007-02-16 21:30:38", "license": "5", "title": "Looking Glass", "text": "", "album_id": "72157594538251999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/393734652_ce914d7222_o.jpg", "secret": "ce914d7222", "media": "photo", "latitude": "0", "id": "393734652", "tags": ""}, {"datetaken": "2007-02-16 22:08:42", "license": "5", "title": "Blue Light", "text": "", "album_id": "72157594538251999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/393734977_b276785abf_o.jpg", "secret": "b276785abf", "media": "photo", "latitude": "0", "id": "393734977", "tags": ""}, {"datetaken": "2007-02-17 14:07:51", "license": "5", "title": "Spores", "text": "", "album_id": "72157594538251999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/393730992_72104181af_o.jpg", "secret": "72104181af", "media": "photo", "latitude": "0", "id": "393730992", "tags": ""}, {"datetaken": "2007-02-17 14:12:53", "license": "5", "title": "Stem", "text": "", "album_id": "72157594538251999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/393731847_6497f8dcf6_o.jpg", "secret": "6497f8dcf6", "media": "photo", "latitude": "0", "id": "393731847", "tags": ""}, {"datetaken": "2007-02-17 18:47:10", "license": "5", "title": "Waterfall", "text": "", "album_id": "72157594538251999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/393732444_a675b75712_o.jpg", "secret": "a675b75712", "media": "photo", "latitude": "0", "id": "393732444", "tags": ""}, {"datetaken": "2007-02-17 18:48:45", "license": "5", "title": "Lynn Canyon Suspension Bridge", "text": "", "album_id": "72157594538251999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/393732927_789febaf67_o.jpg", "secret": "789febaf67", "media": "photo", "latitude": "0", "id": "393732927", "tags": ""}, {"datetaken": "2007-02-17 18:52:47", "license": "5", "title": "Deep Roots", "text": "", "album_id": "72157594538251999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/393733533_623af9ac46_o.jpg", "secret": "623af9ac46", "media": "photo", "latitude": "0", "id": "393733533", "tags": ""}, {"datetaken": "2007-02-17 19:09:12", "license": "5", "title": "Cori and Steven", "text": "", "album_id": "72157594538251999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/393733957_4872683377_o.jpg", "secret": "4872683377", "media": "photo", "latitude": "0", "id": "393733957", "tags": ""}, {"datetaken": "2007-02-14 14:59:09", "license": "4", "title": "DSC_9568_20070214", "text": "", "album_id": "72157594541874242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/393748683_afeae91b84_o.jpg", "secret": "afeae91b84", "media": "photo", "latitude": "0", "id": "393748683", "tags": "snow day valentines 2007 snowdayfebruary2007"}, {"datetaken": "2007-02-14 15:02:50", "license": "4", "title": "DSC_9599_20070214", "text": "", "album_id": "72157594541874242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/393748685_14826b8354_o.jpg", "secret": "14826b8354", "media": "photo", "latitude": "0", "id": "393748685", "tags": "snow day valentines 2007 snowdayfebruary2007"}, {"datetaken": "2007-02-14 15:07:32", "license": "4", "title": "DSC_9632_20070214", "text": "", "album_id": "72157594541874242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/393748686_efb9a8fe1f_o.jpg", "secret": "efb9a8fe1f", "media": "photo", "latitude": "0", "id": "393748686", "tags": "snow day valentines 2007 snowdayfebruary2007"}, {"datetaken": "2007-02-14 15:10:53", "license": "4", "title": "DSC_9648_20070214", "text": "", "album_id": "72157594541874242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/393748689_c625a9d36b_o.jpg", "secret": "c625a9d36b", "media": "photo", "latitude": "0", "id": "393748689", "tags": "snow day valentines 2007 snowdayfebruary2007"}, {"datetaken": "2007-02-14 15:11:19", "license": "4", "title": "DSC_9655_20070214", "text": "", "album_id": "72157594541874242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/393748691_634fce05b1_o.jpg", "secret": "634fce05b1", "media": "photo", "latitude": "0", "id": "393748691", "tags": "snow day valentines 2007 snowdayfebruary2007"}, {"datetaken": "2007-02-14 15:17:32", "license": "4", "title": "DSC_9691_20070214", "text": "", "album_id": "72157594541874242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/393748695_95dc3b5f2f_o.jpg", "secret": "95dc3b5f2f", "media": "photo", "latitude": "0", "id": "393748695", "tags": "snow day valentines 2007 snowdayfebruary2007"}, {"datetaken": "2007-02-14 15:23:24", "license": "4", "title": "DSC_9702_20070214", "text": "", "album_id": "72157594541874242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/393763246_cf8f761b90_o.jpg", "secret": "cf8f761b90", "media": "photo", "latitude": "0", "id": "393763246", "tags": "snow day valentines 2007 snowdayfebruary2007"}, {"datetaken": "2007-02-14 15:37:41", "license": "4", "title": "DSC_9737_20070214", "text": "", "album_id": "72157594541874242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/393763249_d5182543b4_o.jpg", "secret": "d5182543b4", "media": "photo", "latitude": "0", "id": "393763249", "tags": "snow day valentines 2007 snowdayfebruary2007"}, {"datetaken": "2007-02-14 15:38:50", "license": "4", "title": "DSC_9751_20070214", "text": "", "album_id": "72157594541874242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/393763253_fb9782897b_o.jpg", "secret": "fb9782897b", "media": "photo", "latitude": "0", "id": "393763253", "tags": "snow day valentines 2007 snowdayfebruary2007"}, {"datetaken": "2007-02-14 15:46:06", "license": "4", "title": "DSC_9774_20070214", "text": "", "album_id": "72157594541874242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/393763256_59eb6708b6_o.jpg", "secret": "59eb6708b6", "media": "photo", "latitude": "0", "id": "393763256", "tags": "snow day valentines 2007 snowdayfebruary2007"}, {"datetaken": "2007-02-14 15:46:38", "license": "4", "title": "DSC_9779_20070214", "text": "", "album_id": "72157594541874242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/393763258_9424d380f3_o.jpg", "secret": "9424d380f3", "media": "photo", "latitude": "0", "id": "393763258", "tags": "snow day valentines 2007 snowdayfebruary2007"}, {"datetaken": "2010-04-01 06:43:25", "license": "4", "title": "AMC, RDECOM revive Sgt. Audie Murphy Club", "text": "", "album_id": "72157623624264675", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4482338138_4d74192e84_o.jpg", "secret": "4fe4794454", "media": "photo", "latitude": "0", "id": "4482338138", "tags": "army board soldiers amc nco usarmy rdecom sgtaudiemurphyclub usarmyphotobytomfaulkner"}, {"datetaken": "2010-04-01 06:43:39", "license": "4", "title": "AMC, RDECOM revive Sgt. Audie Murphy Club", "text": "", "album_id": "72157623624264675", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4482338796_8cfa4d81f4_o.jpg", "secret": "40ea25af1f", "media": "photo", "latitude": "0", "id": "4482338796", "tags": "army board soldiers amc nco usarmy rdecom sgtaudiemurphyclub usarmyphotobytomfaulkner"}, {"datetaken": "2010-04-01 07:04:11", "license": "4", "title": "AMC, RDECOM revive Sgt. Audie Murphy Club", "text": "", "album_id": "72157623624264675", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4481690955_6fc0b672e7_o.jpg", "secret": "e12c6d96b8", "media": "photo", "latitude": "0", "id": "4481690955", "tags": "army board soldiers amc nco usarmy rdecom sgtaudiemurphyclub usarmyphotobytomfaulkner"}, {"datetaken": "2010-04-01 07:05:43", "license": "4", "title": "AMC, RDECOM revive Sgt. Audie Murphy Club", "text": "", "album_id": "72157623624264675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2773/4482340468_8b7dc682f1_o.jpg", "secret": "49f778ec25", "media": "photo", "latitude": "0", "id": "4482340468", "tags": "army board soldiers amc nco usarmy rdecom sgtaudiemurphyclub usarmyphotobytomfaulkner"}, {"datetaken": "2010-04-01 07:05:47", "license": "4", "title": "AMC, RDECOM revive Sgt. Audie Murphy Club", "text": "", "album_id": "72157623624264675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4482341150_1ca8979421_o.jpg", "secret": "ebd5a4c36d", "media": "photo", "latitude": "0", "id": "4482341150", "tags": "army board soldiers amc nco usarmy rdecom sgtaudiemurphyclub usarmyphotobytomfaulkner"}, {"datetaken": "2010-04-01 07:06:10", "license": "4", "title": "AMC, RDECOM revive Sgt. Audie Murphy Club", "text": "", "album_id": "72157623624264675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2720/4482341832_e77b1f640d_o.jpg", "secret": "1b42601e52", "media": "photo", "latitude": "0", "id": "4482341832", "tags": "army board soldiers amc nco usarmy rdecom sgtaudiemurphyclub usarmyphotobytomfaulkner"}, {"datetaken": "2010-04-01 07:07:23", "license": "4", "title": "AMC, RDECOM revive Sgt. Audie Murphy Club", "text": "", "album_id": "72157623624264675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2735/4481693935_24600e10bf_o.jpg", "secret": "430476e5dc", "media": "photo", "latitude": "0", "id": "4481693935", "tags": "army board soldiers amc nco usarmy rdecom sgtaudiemurphyclub usarmyphotobytomfaulkner"}, {"datetaken": "2010-04-01 07:29:18", "license": "4", "title": "AMC, RDECOM revive Sgt. Audie Murphy Club", "text": "", "album_id": "72157623624264675", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4481694771_57660361ff_o.jpg", "secret": "e7aabf273a", "media": "photo", "latitude": "0", "id": "4481694771", "tags": "army board soldiers amc nco usarmy rdecom sgtaudiemurphyclub usarmyphotobytomfaulkner"}, {"datetaken": "2010-04-01 07:29:21", "license": "4", "title": "AMC, RDECOM revive Sgt. Audie Murphy Club", "text": "", "album_id": "72157623624264675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2461/4482344194_4ae8d5af6f_o.jpg", "secret": "434f4c92f0", "media": "photo", "latitude": "0", "id": "4482344194", "tags": "army board soldiers amc nco usarmy rdecom sgtaudiemurphyclub usarmyphotobytomfaulkner"}, {"datetaken": "2010-04-01 07:30:15", "license": "4", "title": "AMC, RDECOM revive Sgt. Audie Murphy Club", "text": "", "album_id": "72157623624264675", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4482344970_43044c2f00_o.jpg", "secret": "2a3590fa00", "media": "photo", "latitude": "0", "id": "4482344970", "tags": "army board soldiers amc nco usarmy rdecom sgtaudiemurphyclub usarmyphotobytomfaulkner"}, {"datetaken": "2010-04-01 07:31:14", "license": "4", "title": "AMC, RDECOM revive Sgt. Audie Murphy Club", "text": "", "album_id": "72157623624264675", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4482345660_20e11831d0_o.jpg", "secret": "97100489a6", "media": "photo", "latitude": "0", "id": "4482345660", "tags": "army board soldiers amc nco usarmy rdecom sgtaudiemurphyclub usarmyphotobytomfaulkner"}, {"datetaken": "2010-04-01 07:32:25", "license": "4", "title": "AMC, RDECOM revive Sgt. Audie Murphy Club", "text": "", "album_id": "72157623624264675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2747/4482346446_bddfe788ce_o.jpg", "secret": "4bf5b26121", "media": "photo", "latitude": "0", "id": "4482346446", "tags": "army board soldiers amc nco usarmy rdecom sgtaudiemurphyclub usarmyphotobytomfaulkner"}, {"datetaken": "2010-04-01 07:34:36", "license": "4", "title": "AMC, RDECOM revive Sgt. Audie Murphy Club", "text": "", "album_id": "72157623624264675", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4481698573_dc4f0dcdec_o.jpg", "secret": "799d95d784", "media": "photo", "latitude": "0", "id": "4481698573", "tags": "army board soldiers amc nco usarmy rdecom sgtaudiemurphyclub usarmyphotobytomfaulkner"}, {"datetaken": "2010-04-01 07:34:49", "license": "4", "title": "AMC, RDECOM revive Sgt. Audie Murphy Club", "text": "", "album_id": "72157623624264675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2760/4482348178_6b145f1e0c_o.jpg", "secret": "ededd8dcbf", "media": "photo", "latitude": "0", "id": "4482348178", "tags": "army board soldiers amc nco usarmy rdecom sgtaudiemurphyclub usarmyphotobytomfaulkner"}, {"datetaken": "2010-04-01 07:49:11", "license": "4", "title": "AMC, RDECOM revive Sgt. Audie Murphy Club", "text": "", "album_id": "72157623624264675", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4482349014_7863e0491e_o.jpg", "secret": "6962dc4c4e", "media": "photo", "latitude": "0", "id": "4482349014", "tags": "army board soldiers amc nco usarmy rdecom sgtaudiemurphyclub usarmyphotobytomfaulkner"}, {"datetaken": "2010-04-01 07:54:20", "license": "4", "title": "AMC, RDECOM revive Sgt. Audie Murphy Club", "text": "", "album_id": "72157623624264675", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2777/4482349498_57061692fd_o.jpg", "secret": "2e0447862b", "media": "photo", "latitude": "0", "id": "4482349498", "tags": "army board soldiers amc nco usarmy rdecom sgtaudiemurphyclub usarmyphotobytomfaulkner"}, {"datetaken": "2010-04-01 08:02:39", "license": "4", "title": "AMC, RDECOM revive Sgt. Audie Murphy Club", "text": "", "album_id": "72157623624264675", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4482350160_92fe37c316_o.jpg", "secret": "43d0a9a8ca", "media": "photo", "latitude": "0", "id": "4482350160", "tags": "army board soldiers amc nco usarmy rdecom sgtaudiemurphyclub usarmyphotobytomfaulkner"}, {"datetaken": "2006-09-24 01:32:30", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4325493216_3b36813bd5_o.jpg", "secret": "ff34917227", "media": "photo", "latitude": "0", "id": "4325493216", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 01:42:11", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2715/4324750673_f15116a437_o.jpg", "secret": "ae19554ab6", "media": "photo", "latitude": "0", "id": "4324750673", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 01:43:54", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2749/4324760485_8763ef8c5a_o.jpg", "secret": "43650d1b9f", "media": "photo", "latitude": "0", "id": "4324760485", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 01:47:23", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2685/4325496416_9c8bf94ef9_o.jpg", "secret": "bd5261f7b6", "media": "photo", "latitude": "0", "id": "4325496416", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 01:47:53", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4324749227_fe8c60179c_o.jpg", "secret": "81632bf1d7", "media": "photo", "latitude": "0", "id": "4324749227", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 01:48:52", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4324761953_08156cca7d_o.jpg", "secret": "f23109e807", "media": "photo", "latitude": "0", "id": "4324761953", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 01:49:51", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4324753055_1c7f52ccbc_o.jpg", "secret": "0e88aea939", "media": "photo", "latitude": "0", "id": "4324753055", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 01:58:24", "license": "4", "title": "0Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4324754449_156d2f914b_o.jpg", "secret": "c2c9f7ee79", "media": "photo", "latitude": "0", "id": "4324754449", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 02:03:52", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4325484802_3c7898c7ce_o.jpg", "secret": "1492e467e0", "media": "photo", "latitude": "0", "id": "4325484802", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 02:04:51", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4325489334_4d4be7ce59_o.jpg", "secret": "b314f9786e", "media": "photo", "latitude": "0", "id": "4325489334", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 02:05:16", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4324763803_d79a98b403_o.jpg", "secret": "a6a121e497", "media": "photo", "latitude": "0", "id": "4324763803", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 02:09:11", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4325506100_e85a9cca1e_o.jpg", "secret": "1ce46b7e68", "media": "photo", "latitude": "0", "id": "4325506100", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 02:20:35", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2757/4324757715_c36a27d392_o.jpg", "secret": "160be8b318", "media": "photo", "latitude": "0", "id": "4324757715", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 02:27:20", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4325504666_059f137650_o.jpg", "secret": "ed45717690", "media": "photo", "latitude": "0", "id": "4325504666", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 02:29:55", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4325510666_2cc0ab5ddc_o.jpg", "secret": "8d6677dba4", "media": "photo", "latitude": "0", "id": "4325510666", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 02:29:57", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4325508888_af7f4db854_o.jpg", "secret": "5f15de9fab", "media": "photo", "latitude": "0", "id": "4325508888", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 03:16:28", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4325507496_c13be9ea64_o.jpg", "secret": "58908375b1", "media": "photo", "latitude": "0", "id": "4325507496", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 03:17:13", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4324777757_4bb7c84493_o.jpg", "secret": "5a3f5cb309", "media": "photo", "latitude": "0", "id": "4324777757", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 03:26:00", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4324775373_6396c5308d_o.jpg", "secret": "6966ca164d", "media": "photo", "latitude": "0", "id": "4324775373", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 03:41:06", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4324781393_6292816334_o.jpg", "secret": "8c714bf140", "media": "photo", "latitude": "0", "id": "4324781393", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 03:46:33", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2737/4325520460_e928eafbe7_o.jpg", "secret": "8d523015cf", "media": "photo", "latitude": "0", "id": "4325520460", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "2006-09-24 03:58:00", "license": "4", "title": "Burundi peacekeepers prepare for next rotation to Somalia, Bjumbura, Burundi 012210", "text": "", "album_id": "72157623334906462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4324779311_bdc3d8414d_o.jpg", "secret": "cf15aeb280", "media": "photo", "latitude": "0", "id": "4324779311", "tags": "africa army us command somalia peacekeeper burundi bujumbura africom amisom usaraf usarficom"}, {"datetaken": "1995-08-31 00:00:00", "license": "4", "title": "Sisters", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm3.staticflickr.com/2727/4327095984_189c6d5b17_o.jpg", "secret": "f04fe11e85", "media": "photo", "latitude": "42.341853", "id": "4327095984", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:01", "license": "4", "title": "Silver Hawks pitchers", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm5.staticflickr.com/4065/4326360115_97c2e26fcb_o.jpg", "secret": "eec608c951", "media": "photo", "latitude": "42.341853", "id": "4326360115", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:02", "license": "4", "title": "Scouts at Work", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm5.staticflickr.com/4014/4326358305_35804cef01_o.jpg", "secret": "c4645f6c57", "media": "photo", "latitude": "42.341853", "id": "4326358305", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:03", "license": "4", "title": "Scouts at Work _1", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm3.staticflickr.com/2679/4327089128_22401e5a57_o.jpg", "secret": "08b748bae0", "media": "photo", "latitude": "42.341853", "id": "4327089128", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:04", "license": "4", "title": "Rally visits the Bullpen", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm3.staticflickr.com/2692/4326351629_dfed40f13d_o.jpg", "secret": "d23167aea6", "media": "photo", "latitude": "42.341853", "id": "4326351629", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:05", "license": "4", "title": "Mascot Race (missing the Mascot)", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm5.staticflickr.com/4036/4327081504_99ffab57c4_o.jpg", "secret": "b18813e475", "media": "photo", "latitude": "42.341853", "id": "4327081504", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:06", "license": "4", "title": "Junior", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm3.staticflickr.com/2600/4327078080_bf32797252_o.jpg", "secret": "e9acb6ff1f", "media": "photo", "latitude": "42.341853", "id": "4327078080", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:07", "license": "4", "title": "John Bowles", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm5.staticflickr.com/4050/4327074788_693e43aba6_o.jpg", "secret": "0cc45a9021", "media": "photo", "latitude": "42.341853", "id": "4327074788", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:08", "license": "4", "title": "Joe Hamilton's flip", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm3.staticflickr.com/2759/4326336267_119cd1596d_o.jpg", "secret": "5c64de88bb", "media": "photo", "latitude": "42.341853", "id": "4326336267", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:09", "license": "4", "title": "Joe Hamilton", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm3.staticflickr.com/2804/4326333797_ac80df2b94_o.jpg", "secret": "d88c8e114f", "media": "photo", "latitude": "42.341853", "id": "4326333797", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:10", "license": "4", "title": "Joe Hamilton", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm3.staticflickr.com/2784/4326328273_2f700467ff_o.jpg", "secret": "051ff6673e", "media": "photo", "latitude": "42.341853", "id": "4326328273", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:11", "license": "4", "title": "Hawks batter", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm3.staticflickr.com/2745/4326323921_3a608044d9_o.jpg", "secret": "4186ab6443", "media": "photo", "latitude": "42.341853", "id": "4326323921", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:12", "license": "4", "title": "Groundskeepers", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm5.staticflickr.com/4019/4326320653_fe79464206_o.jpg", "secret": "f77be97bea", "media": "photo", "latitude": "42.341853", "id": "4326320653", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:13", "license": "4", "title": "Ethan Faggett, headless", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm5.staticflickr.com/4027/4326317221_efe5076ce8_o.jpg", "secret": "cbed5d6251", "media": "photo", "latitude": "42.341853", "id": "4326317221", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:14", "license": "4", "title": "Donnie Sadler", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm3.staticflickr.com/2429/4326314719_5937195317_o.jpg", "secret": "e9def17acb", "media": "photo", "latitude": "42.341853", "id": "4326314719", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:15", "license": "4", "title": "Dizzy Bat with Melvin Rosario", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm5.staticflickr.com/4028/4326311429_5699092c7f_o.jpg", "secret": "8d9d3215e8", "media": "photo", "latitude": "42.341853", "id": "4326311429", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:16", "license": "4", "title": "Dizzy Bat with Melvin Rosario _1", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm5.staticflickr.com/4037/4327044160_74579fda3e_o.jpg", "secret": "a998e997da", "media": "photo", "latitude": "42.341853", "id": "4327044160", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:17", "license": "4", "title": "DeMarlo Hale", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm5.staticflickr.com/4036/4327042186_19bd554b79_o.jpg", "secret": "dde00d9a86", "media": "photo", "latitude": "42.341853", "id": "4327042186", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:18", "license": "4", "title": "CO Brown Stadium", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm5.staticflickr.com/4028/4327040764_e780dddf65_o.jpg", "secret": "8cdf4ccb0b", "media": "photo", "latitude": "42.341853", "id": "4327040764", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:19", "license": "4", "title": "Chuck Smith", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm3.staticflickr.com/2703/4326304297_dc99de36ba_o.jpg", "secret": "a466b17c81", "media": "photo", "latitude": "42.341853", "id": "4326304297", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:20", "license": "4", "title": "Carl Pavano", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm5.staticflickr.com/4009/4326302065_47d9747b5f_o.jpg", "secret": "c88df9c980", "media": "photo", "latitude": "42.341853", "id": "4326302065", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:21", "license": "4", "title": "Carl Pavano _2", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm5.staticflickr.com/4034/4327034252_01cb080b49_o.jpg", "secret": "8b59d5d432", "media": "photo", "latitude": "42.341853", "id": "4327034252", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:22", "license": "4", "title": "Carl Pavano _1", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm3.staticflickr.com/2716/4327032440_80e5dbc6b6_o.jpg", "secret": "2c8fdc301e", "media": "photo", "latitude": "42.341853", "id": "4327032440", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:23", "license": "4", "title": "Bullpen, with groundskeeper", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm5.staticflickr.com/4008/4326295857_4da42c7861_o.jpg", "secret": "44dc573b4e", "media": "photo", "latitude": "42.341853", "id": "4326295857", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "1995-08-31 00:00:24", "license": "4", "title": "Battle Cats Dugout", "text": "", "album_id": "72157623214581689", "longitude": "-85.150501", "url_o": "https://farm5.staticflickr.com/4022/4327026852_155851abf5_o.jpg", "secret": "481ffba651", "media": "photo", "latitude": "42.341853", "id": "4327026852", "tags": "baseball michigan jowophoto battlecats southbend battlecreek minorleagues midwestleague silverhawks mwlguide"}, {"datetaken": "2010-02-25 00:58:17", "license": "6", "title": "100225-F-2616H-002", "text": "", "album_id": "72157623421003187", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4403489834_ede194327b_o.jpg", "secret": "04c0bda20c", "media": "photo", "latitude": "0", "id": "4403489834", "tags": "afghanistan ana usairforce usarmy operationenduringfreedom afghanwar southernafghanistan afghannationalarmy kennyholston"}, {"datetaken": "2010-02-25 01:12:33", "license": "6", "title": "100225-F-2616H-003", "text": "", "album_id": "72157623421003187", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4402721443_ed6c4ef4bc_o.jpg", "secret": "f161fa81fe", "media": "photo", "latitude": "0", "id": "4402721443", "tags": "afghanistan ana usairforce usarmy operationenduringfreedom afghanwar southernafghanistan afghannationalarmy kennyholston"}, {"datetaken": "2010-02-25 03:15:02", "license": "6", "title": "100225-F-2616H-005", "text": "", "album_id": "72157623421003187", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2716/4402722489_94beda99b5_o.jpg", "secret": "05b311ac06", "media": "photo", "latitude": "0", "id": "4402722489", "tags": "afghanistan ana usairforce usarmy operationenduringfreedom afghanwar southernafghanistan afghannationalarmy kennyholston"}, {"datetaken": "2010-02-25 04:53:37", "license": "6", "title": "100225-F-2616H-006", "text": "", "album_id": "72157623421003187", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4403492844_1eed067436_o.jpg", "secret": "f6a8ea39d3", "media": "photo", "latitude": "0", "id": "4403492844", "tags": "afghanistan ana usairforce usarmy operationenduringfreedom afghanwar southernafghanistan afghannationalarmy kennyholston"}, {"datetaken": "2010-02-25 05:00:52", "license": "6", "title": "100225-F-2616H-010", "text": "", "album_id": "72157623421003187", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4403496240_b9158b36aa_o.jpg", "secret": "4ea659d52e", "media": "photo", "latitude": "0", "id": "4403496240", "tags": "afghanistan ana usairforce usarmy operationenduringfreedom afghanwar southernafghanistan afghannationalarmy kennyholston"}, {"datetaken": "2010-02-25 05:31:15", "license": "6", "title": "100225-F-2616H-011", "text": "", "album_id": "72157623421003187", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4403484702_a88c86b9f5_o.jpg", "secret": "76f6d66471", "media": "photo", "latitude": "0", "id": "4403484702", "tags": "afghanistan ana usairforce usarmy operationenduringfreedom afghanwar southernafghanistan afghannationalarmy kennyholston"}, {"datetaken": "2010-02-25 07:37:03", "license": "6", "title": "100225-F-2616H-013", "text": "", "album_id": "72157623421003187", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2741/4403481528_17ab3aab89_o.jpg", "secret": "5897723677", "media": "photo", "latitude": "0", "id": "4403481528", "tags": "afghanistan ana usairforce usarmy operationenduringfreedom afghanwar southernafghanistan afghannationalarmy kennyholston"}, {"datetaken": "2010-02-25 07:39:54", "license": "6", "title": "100225-F-2616H-014", "text": "", "album_id": "72157623421003187", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4403493948_a911e8bfda_o.jpg", "secret": "82614486e4", "media": "photo", "latitude": "0", "id": "4403493948", "tags": "afghanistan ana usairforce usarmy operationenduringfreedom afghanwar southernafghanistan afghannationalarmy kennyholston"}, {"datetaken": "2010-02-25 09:46:53", "license": "6", "title": "100225-F-2616H-015", "text": "", "album_id": "72157623421003187", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4403477984_e9fe89a229_o.jpg", "secret": "9af8ce17c4", "media": "photo", "latitude": "0", "id": "4403477984", "tags": "afghanistan ana usairforce usarmy operationenduringfreedom afghanwar southernafghanistan afghannationalarmy kennyholston"}, {"datetaken": "2010-02-25 10:30:54", "license": "6", "title": "100225-F-2616H-016", "text": "", "album_id": "72157623421003187", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4403486194_40cd3ff7c5_o.jpg", "secret": "f25aff93ec", "media": "photo", "latitude": "0", "id": "4403486194", "tags": "afghanistan ana usairforce usarmy operationenduringfreedom afghanwar southernafghanistan afghannationalarmy kennyholston"}, {"datetaken": "2010-02-25 10:36:55", "license": "6", "title": "100225-F-2616H-017", "text": "", "album_id": "72157623421003187", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2702/4402717545_eb03ee8ccb_o.jpg", "secret": "4b1ea69b25", "media": "photo", "latitude": "0", "id": "4402717545", "tags": "afghanistan ana usairforce usarmy operationenduringfreedom afghanwar southernafghanistan afghannationalarmy kennyholston"}, {"datetaken": "2010-02-25 10:40:12", "license": "6", "title": "100225-F-2616H-018", "text": "", "album_id": "72157623421003187", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2741/4403491740_3bcb22e044_o.jpg", "secret": "941c3c1bd1", "media": "photo", "latitude": "0", "id": "4403491740", "tags": "afghanistan ana usairforce usarmy operationenduringfreedom afghanwar southernafghanistan afghannationalarmy kennyholston"}, {"datetaken": "2010-02-25 11:10:18", "license": "6", "title": "100225-F-2616H-021", "text": "", "album_id": "72157623421003187", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4403474348_8284a79f72_o.jpg", "secret": "1091c135f5", "media": "photo", "latitude": "0", "id": "4403474348", "tags": "afghanistan ana usairforce usarmy operationenduringfreedom afghanwar southernafghanistan afghannationalarmy kennyholston"}, {"datetaken": "2010-02-25 13:30:32", "license": "6", "title": "100225-F-2616H-024", "text": "", "album_id": "72157623421003187", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4402710803_7db26a86fe_o.jpg", "secret": "3394cf7358", "media": "photo", "latitude": "0", "id": "4402710803", "tags": "afghanistan ana usairforce usarmy operationenduringfreedom afghanwar southernafghanistan afghannationalarmy kennyholston"}, {"datetaken": "2010-02-25 15:02:54", "license": "6", "title": "100225-F-2616H-025", "text": "", "album_id": "72157623421003187", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4403494926_7f76c05bb1_o.jpg", "secret": "6434c5241d", "media": "photo", "latitude": "0", "id": "4403494926", "tags": "afghanistan ana usairforce usarmy operationenduringfreedom afghanwar southernafghanistan afghannationalarmy kennyholston"}, {"datetaken": "2010-02-25 15:32:44", "license": "6", "title": "100225-F-2616H-028", "text": "", "album_id": "72157623421003187", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4402713303_4486836a88_o.jpg", "secret": "8aae06b806", "media": "photo", "latitude": "0", "id": "4402713303", "tags": "afghanistan ana usairforce usarmy operationenduringfreedom afghanwar southernafghanistan afghannationalarmy kennyholston"}, {"datetaken": "2010-03-02 09:57:13", "license": "1", "title": "Secretary Clinton's Visit to Chile, March 2, 2010", "text": "", "album_id": "72157623542092710", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4401363735_23b6814720_o.jpg", "secret": "f6f4480b13", "media": "photo", "latitude": "0", "id": "4401363735", "tags": "bachelet chile santiago america us earthquake clinton united aid latin states visdip clintonsvisittochile"}, {"datetaken": "2010-03-02 09:57:46", "license": "1", "title": "Secretary Clinton's Visit to Chile, March 2, 2010", "text": "", "album_id": "72157623542092710", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4401362969_d656087755_o.jpg", "secret": "e02ba0bba8", "media": "photo", "latitude": "0", "id": "4401362969", "tags": "bachelet chile santiago clinton clintonsvisittochileunitedstatesvisdipusaidearthquakelatinamerica"}, {"datetaken": "2010-03-02 09:59:06", "license": "1", "title": "Secretary Clinton's Visit to Chile, March 2, 2010", "text": "", "album_id": "72157623542092710", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4402128676_00185ca248_o.jpg", "secret": "3031829601", "media": "photo", "latitude": "0", "id": "4402128676", "tags": "bachelet chile santiago america us earthquake clinton united aid latin states visdip clintonsvisittochile"}, {"datetaken": "2010-03-02 09:59:35", "license": "1", "title": "Secretary Clinton's Visit to Chile, March 2, 2010", "text": "", "album_id": "72157623542092710", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4402128788_01f52799ba_o.jpg", "secret": "6e55df7a25", "media": "photo", "latitude": "0", "id": "4402128788", "tags": "bachelet chile santiago america us earthquake clinton united aid latin states visdip clintonsvisittochile"}, {"datetaken": "2010-03-02 10:40:12", "license": "1", "title": "Secretary Clinton's Visit to Chile, March 2, 2010", "text": "", "album_id": "72157623542092710", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4402129128_4072275ece_o.jpg", "secret": "0a5bfa17a4", "media": "photo", "latitude": "0", "id": "4402129128", "tags": "bachelet chile santiago america us earthquake clinton united aid latin states visdip clintonsvisittochile"}, {"datetaken": "2010-03-02 11:18:38", "license": "1", "title": "Secretary Clinton's Visit to Chile, March 2, 2010", "text": "", "album_id": "72157623542092710", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2749/4402128428_6963a49e0d_o.jpg", "secret": "4971602c2b", "media": "photo", "latitude": "0", "id": "4402128428", "tags": "bachelet chile santiago clinton clintonsvisittochileunitedstatesvisdipusaidearthquakelatinamerica"}, {"datetaken": "2010-03-02 11:27:22", "license": "1", "title": "Secretary Clinton's Visit to Chile, March 2, 2010", "text": "", "album_id": "72157623542092710", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4401363421_6d6e80c7ab_o.jpg", "secret": "3c2d8352ce", "media": "photo", "latitude": "0", "id": "4401363421", "tags": "bachelet chile santiago america us earthquake clinton united aid latin states visdip clintonsvisittochile"}, {"datetaken": "2010-03-02 11:32:15", "license": "1", "title": "Secretary Clinton's Visit to Chile, March 2, 2010", "text": "", "album_id": "72157623542092710", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4402129252_51f1e3fd45_o.jpg", "secret": "2fc725a42b", "media": "photo", "latitude": "0", "id": "4402129252", "tags": "bachelet chile santiago america us earthquake clinton united aid latin states visdip clintonsvisittochile"}, {"datetaken": "2010-03-02 12:25:05", "license": "1", "title": "Secretary Clinton's Visit to Chile", "text": "", "album_id": "72157623542092710", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4402262036_ffde81ca8f_o.jpg", "secret": "2ddaa49d6f", "media": "photo", "latitude": "0", "id": "4402262036", "tags": "sebastian sebasti\u00e1n pi\u00f1era sebasti\u00e1npi\u00f1era pinera sebastianpinera visdip presidentelectpi\u00f1era clintonvisittochile"}, {"datetaken": "2010-03-02 19:37:51", "license": "1", "title": "Secretary Clinton's Visit to Chile, March 2, 2010", "text": "", "album_id": "72157623542092710", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4407309232_4a545d9404_o.jpg", "secret": "3a488da02b", "media": "photo", "latitude": "0", "id": "4407309232", "tags": "chile clinton pi\u00f1era pinera visdip clintonvisittochile"}, {"datetaken": "2010-03-02 20:32:43", "license": "1", "title": "Secretary Clinton's Visit to Chile, March 2, 2010", "text": "", "album_id": "72157623542092710", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4407309266_0d831339ce_o.jpg", "secret": "c936b2b2f2", "media": "photo", "latitude": "0", "id": "4407309266", "tags": "chile clinton pi\u00f1era pinera visdip clintonvisittochile"}, {"datetaken": "2010-03-02 20:33:45", "license": "1", "title": "Secretary Clinton's Visit to Chile, March 2, 2010", "text": "", "album_id": "72157623542092710", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4407309306_2ee0823eab_o.jpg", "secret": "9e0fe13d25", "media": "photo", "latitude": "0", "id": "4407309306", "tags": "chile clinton pi\u00f1era pinera visdip clintonvisittochile"}, {"datetaken": "2010-03-02 20:40:27", "license": "1", "title": "Secretary Clinton's Visit to Chile, March 2, 2010", "text": "", "album_id": "72157623542092710", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2725/4406543145_2b82f03a97_o.jpg", "secret": "653a0abd06", "media": "photo", "latitude": "0", "id": "4406543145", "tags": "chile clinton pi\u00f1era pinera visdip clintonvisittochile"}, {"datetaken": "2010-03-02 21:06:43", "license": "1", "title": "Secretary Clinton's Visit to Chile, March 2, 2010", "text": "", "album_id": "72157623542092710", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4406543207_f0e1a9e5a3_o.jpg", "secret": "cf18f46b19", "media": "photo", "latitude": "0", "id": "4406543207", "tags": "chile clinton pi\u00f1era pinera visdip clintonvisittochile"}, {"datetaken": "2010-03-02 21:11:46", "license": "1", "title": "Secretary Clinton's Visit to Chile, March 2, 2010", "text": "", "album_id": "72157623542092710", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2689/4406543259_7dd0245dfa_o.jpg", "secret": "e28ea02055", "media": "photo", "latitude": "0", "id": "4406543259", "tags": "chile clinton pi\u00f1era pinera visdip clintonvisittochile"}, {"datetaken": "2010-03-03 06:03:10", "license": "1", "title": "Secretary Clinton's Visit to Chile, March 2, 2010.", "text": "", "album_id": "72157623542092710", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4403297613_7dbe20116c_o.jpg", "secret": "61eb90f8d6", "media": "photo", "latitude": "0", "id": "4403297613", "tags": "chile santiago earthquake sebastian clinton visita sebasti\u00e1n terremoto pi\u00f1era pinera visdip pineraandclinton pi\u00f1erayclinton"}, {"datetaken": "2010-02-26 06:48:22", "license": "1", "title": "IMG_0643", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4400773877_27fcc32756_o.jpg", "secret": "55e3850e97", "media": "photo", "latitude": "0", "id": "4400773877", "tags": ""}, {"datetaken": "2010-02-26 06:53:21", "license": "1", "title": "IMG_0654", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4400775171_2d6de52b07_o.jpg", "secret": "f53fc0d6a6", "media": "photo", "latitude": "0", "id": "4400775171", "tags": ""}, {"datetaken": "2010-02-26 07:00:32", "license": "1", "title": "IMG_0659", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4401543050_8539d6d2c9_o.jpg", "secret": "977b9881b7", "media": "photo", "latitude": "0", "id": "4401543050", "tags": ""}, {"datetaken": "2010-02-26 07:04:49", "license": "1", "title": "IMG_0661", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4400778143_925bb60ed2_o.jpg", "secret": "136eb7d83a", "media": "photo", "latitude": "0", "id": "4400778143", "tags": ""}, {"datetaken": "2010-02-26 07:05:34", "license": "1", "title": "IMG_0664", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4401545406_7344a530d2_o.jpg", "secret": "af8a0427a7", "media": "photo", "latitude": "0", "id": "4401545406", "tags": ""}, {"datetaken": "2010-02-26 07:13:22", "license": "1", "title": "IMG_0665", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4401602684_d165a95163_o.jpg", "secret": "1b9678b6fb", "media": "photo", "latitude": "0", "id": "4401602684", "tags": ""}, {"datetaken": "2010-02-26 07:15:11", "license": "1", "title": "IMG_0667", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4400838409_925dd38da0_o.jpg", "secret": "b8796a807a", "media": "photo", "latitude": "0", "id": "4400838409", "tags": ""}, {"datetaken": "2010-02-26 07:25:21", "license": "1", "title": "IMG_0668", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4401604646_a28af27a5e_o.jpg", "secret": "064607623f", "media": "photo", "latitude": "0", "id": "4401604646", "tags": ""}, {"datetaken": "2010-02-26 07:27:23", "license": "1", "title": "IMG_0671", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2692/4401606084_4a7baffe79_o.jpg", "secret": "1026235664", "media": "photo", "latitude": "0", "id": "4401606084", "tags": ""}, {"datetaken": "2010-02-26 07:28:25", "license": "1", "title": "IMG_0674", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4401611692_9e377b6c4a_o.jpg", "secret": "298c519f0a", "media": "photo", "latitude": "0", "id": "4401611692", "tags": ""}, {"datetaken": "2010-02-26 07:31:37", "license": "1", "title": "IMG_0676", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4400847219_17faefb1f3_o.jpg", "secret": "1cb1617829", "media": "photo", "latitude": "0", "id": "4400847219", "tags": ""}, {"datetaken": "2010-02-26 07:34:17", "license": "1", "title": "IMG_0677", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4400848567_88e6c343c8_o.jpg", "secret": "2c6b258b91", "media": "photo", "latitude": "0", "id": "4400848567", "tags": ""}, {"datetaken": "2010-02-26 07:34:36", "license": "1", "title": "IMG_0678", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4400850071_979403e56a_o.jpg", "secret": "91a33fde1b", "media": "photo", "latitude": "0", "id": "4400850071", "tags": ""}, {"datetaken": "2010-02-26 07:35:12", "license": "1", "title": "IMG_0681", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4400850959_5cacefa4b6_o.jpg", "secret": "0e8d3bb3cd", "media": "photo", "latitude": "0", "id": "4400850959", "tags": ""}, {"datetaken": "2010-02-26 07:35:36", "license": "1", "title": "IMG_0682", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4400881521_f315b24958_o.jpg", "secret": "1037384f80", "media": "photo", "latitude": "0", "id": "4400881521", "tags": ""}, {"datetaken": "2010-02-26 07:35:52", "license": "1", "title": "IMG_0683", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2760/4400883047_aac70b43d1_o.jpg", "secret": "b2c7492c8b", "media": "photo", "latitude": "0", "id": "4400883047", "tags": ""}, {"datetaken": "2010-02-26 07:37:31", "license": "1", "title": "IMG_0684", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4400883939_db10dd4896_o.jpg", "secret": "a9efacfb79", "media": "photo", "latitude": "0", "id": "4400883939", "tags": ""}, {"datetaken": "2010-02-26 07:37:44", "license": "1", "title": "IMG_0685", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4400884761_c0c82c44a0_o.jpg", "secret": "d36f60a517", "media": "photo", "latitude": "0", "id": "4400884761", "tags": ""}, {"datetaken": "2010-02-26 07:37:52", "license": "1", "title": "IMG_0686", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2728/4401650962_bb86fbc239_o.jpg", "secret": "f3a1767740", "media": "photo", "latitude": "0", "id": "4401650962", "tags": ""}, {"datetaken": "2010-02-26 07:38:37", "license": "1", "title": "IMG_0687", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4400887391_d9788ffbf9_o.jpg", "secret": "c2ed36ba5e", "media": "photo", "latitude": "0", "id": "4400887391", "tags": ""}, {"datetaken": "2010-02-26 07:48:59", "license": "1", "title": "IMG_0688", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4400888619_747d51d9bb_o.jpg", "secret": "ccdb90e04d", "media": "photo", "latitude": "0", "id": "4400888619", "tags": ""}, {"datetaken": "2010-02-26 09:14:59", "license": "1", "title": "IMG_0690", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4400895143_d56aaf0fce_o.jpg", "secret": "68b9edb562", "media": "photo", "latitude": "0", "id": "4400895143", "tags": ""}, {"datetaken": "2010-02-26 10:13:17", "license": "1", "title": "IMG_0692", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4400896333_be424eddc7_o.jpg", "secret": "bb324cfbcb", "media": "photo", "latitude": "0", "id": "4400896333", "tags": ""}, {"datetaken": "2010-02-26 10:44:08", "license": "1", "title": "IMG_0695", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4401662256_ba8b150eeb_o.jpg", "secret": "9d4334681e", "media": "photo", "latitude": "0", "id": "4401662256", "tags": ""}, {"datetaken": "2010-02-26 10:59:57", "license": "1", "title": "IMG_0699", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4400898737_baaf8debdb_o.jpg", "secret": "b8de88f565", "media": "photo", "latitude": "0", "id": "4400898737", "tags": ""}, {"datetaken": "2010-02-26 11:07:03", "license": "1", "title": "IMG_0707", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4400899739_1f48d3c2b7_o.jpg", "secret": "ec55651a22", "media": "photo", "latitude": "0", "id": "4400899739", "tags": ""}, {"datetaken": "2010-02-26 11:14:06", "license": "1", "title": "IMG_0711", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4401666388_88ef9970fb_o.jpg", "secret": "bcf8c526c3", "media": "photo", "latitude": "0", "id": "4401666388", "tags": ""}, {"datetaken": "2010-02-26 12:16:16", "license": "1", "title": "IMG_0721", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4401667416_658a12666f_o.jpg", "secret": "5406f8966d", "media": "photo", "latitude": "0", "id": "4401667416", "tags": ""}, {"datetaken": "2010-02-26 12:16:26", "license": "1", "title": "IMG_0722", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4400903823_388fdc3c10_o.jpg", "secret": "395d613556", "media": "photo", "latitude": "0", "id": "4400903823", "tags": ""}, {"datetaken": "2010-02-26 12:34:17", "license": "1", "title": "IMG_0723", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4400906911_b7d895e795_o.jpg", "secret": "f393df2828", "media": "photo", "latitude": "0", "id": "4400906911", "tags": ""}, {"datetaken": "2010-02-26 12:34:31", "license": "1", "title": "IMG_0724", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4400908439_ea0f1380d2_o.jpg", "secret": "d1d6daf035", "media": "photo", "latitude": "0", "id": "4400908439", "tags": ""}, {"datetaken": "2010-02-26 14:43:33", "license": "1", "title": "IMG_0726", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2732/4401685092_db0f63966f_o.jpg", "secret": "d2334b740d", "media": "photo", "latitude": "0", "id": "4401685092", "tags": ""}, {"datetaken": "2010-02-26 14:43:51", "license": "1", "title": "IMG_0727", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4400922285_25e5722cf0_o.jpg", "secret": "00cee3bc28", "media": "photo", "latitude": "0", "id": "4400922285", "tags": ""}, {"datetaken": "2010-02-26 16:11:09", "license": "1", "title": "IMG_0728", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4400923895_53af3de377_o.jpg", "secret": "be4932800e", "media": "photo", "latitude": "0", "id": "4400923895", "tags": ""}, {"datetaken": "2010-02-26 18:42:00", "license": "1", "title": "IMG_0729", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4400925803_b80986825a_o.jpg", "secret": "ced819cc31", "media": "photo", "latitude": "0", "id": "4400925803", "tags": ""}, {"datetaken": "2010-02-26 18:47:43", "license": "1", "title": "IMG_0731", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4400928383_8ea4348bfc_o.jpg", "secret": "6b4ca01132", "media": "photo", "latitude": "0", "id": "4400928383", "tags": ""}, {"datetaken": "2010-02-26 19:13:29", "license": "1", "title": "IMG_0733", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2788/4400930287_8020e34f8e_o.jpg", "secret": "43ca3f03fc", "media": "photo", "latitude": "0", "id": "4400930287", "tags": ""}, {"datetaken": "2010-02-26 19:16:11", "license": "1", "title": "IMG_0741", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2778/4401696914_a7a6b85e84_o.jpg", "secret": "77d92156cc", "media": "photo", "latitude": "0", "id": "4401696914", "tags": ""}, {"datetaken": "2010-02-26 22:23:37", "license": "1", "title": "IMG_0747", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4401699372_6a95eebcaa_o.jpg", "secret": "129df1af65", "media": "photo", "latitude": "0", "id": "4401699372", "tags": ""}, {"datetaken": "2010-02-26 22:24:30", "license": "1", "title": "IMG_0749", "text": "", "album_id": "72157623540522608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4400936525_23247fb131_o.jpg", "secret": "5f422144dd", "media": "photo", "latitude": "0", "id": "4400936525", "tags": ""}, {"datetaken": "2010-02-19 19:11:34", "license": "1", "title": "Hurricane @ Irene's", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4402935498_9f02af6ef6_o.jpg", "secret": "7f30d2918d", "media": "photo", "latitude": "0", "id": "4402935498", "tags": "neworleans 2010"}, {"datetaken": "2010-02-19 20:59:05", "license": "1", "title": "Filming \"Treme\" on Frenchmen St.", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4402171059_e4c083e06b_o.jpg", "secret": "46ebfa32ca", "media": "photo", "latitude": "0", "id": "4402171059", "tags": "neworleans 2010 treme"}, {"datetaken": "2010-02-19 21:08:17", "license": "1", "title": "Eponymous", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4402171267_6725ed8c69_o.jpg", "secret": "e3650dc285", "media": "photo", "latitude": "0", "id": "4402171267", "tags": "neworleans 2010 spottedcat"}, {"datetaken": "2010-02-19 21:30:06", "license": "1", "title": "At the Spotted Cat", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4402936106_0cf13211f6_o.jpg", "secret": "4df71ff2c0", "media": "photo", "latitude": "0", "id": "4402936106", "tags": "neworleans 2010 spottedcat"}, {"datetaken": "2010-02-19 21:35:05", "license": "1", "title": "Waiting", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2755/4402936338_0b218f94ee_o.jpg", "secret": "4371fc75d9", "media": "photo", "latitude": "0", "id": "4402936338", "tags": "neworleans 2010 spottedcat neworleansmoonshiners"}, {"datetaken": "2010-02-19 21:35:34", "license": "1", "title": "Says nothing about saxophones", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2796/4402171969_66861d1ff1_o.jpg", "secret": "fbffd94fe6", "media": "photo", "latitude": "0", "id": "4402171969", "tags": "neworleans 2010 spottedcat"}, {"datetaken": "2010-02-19 21:51:23", "license": "1", "title": "New Orleans Moonshiners", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2749/4402936736_9b2205ef01_o.jpg", "secret": "4515f1da77", "media": "photo", "latitude": "0", "id": "4402936736", "tags": "neworleans 2010 spottedcat neworleansmoonshiners"}, {"datetaken": "2010-02-19 22:20:57", "license": "1", "title": "New Orleans Moonshiners", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2793/4402936964_52d7395186_o.jpg", "secret": "3a06d1d56d", "media": "photo", "latitude": "0", "id": "4402936964", "tags": "neworleans 2010 spottedcat neworleansmoonshiners"}, {"datetaken": "2010-02-20 17:09:49", "license": "1", "title": "Commander's Palace dinner", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4402172807_1edd2a57f9_o.jpg", "secret": "18f9ae8923", "media": "photo", "latitude": "0", "id": "4402172807", "tags": "neworleans 2010"}, {"datetaken": "2010-02-20 19:21:34", "license": "1", "title": "A few words", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4402937570_cb9ce8150a_o.jpg", "secret": "e3254c15cf", "media": "photo", "latitude": "0", "id": "4402937570", "tags": "neworleans 2010"}, {"datetaken": "2010-02-20 19:23:16", "license": "1", "title": "Bread pudding souffle", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4402937916_3f7119742f_o.jpg", "secret": "c939a4146f", "media": "photo", "latitude": "0", "id": "4402937916", "tags": "neworleans 2010"}, {"datetaken": "2010-02-20 20:05:13", "license": "1", "title": "Yes/No", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4402938148_2158a15320_o.jpg", "secret": "ecbb00b873", "media": "photo", "latitude": "0", "id": "4402938148", "tags": "neworleans 2010"}, {"datetaken": "2010-02-20 20:32:18", "license": "1", "title": "Krewe du Vieux", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4402938436_759d5f38f2_o.jpg", "secret": "bfb34db4f2", "media": "photo", "latitude": "0", "id": "4402938436", "tags": "neworleans 2010"}, {"datetaken": "2010-02-20 20:32:46", "license": "1", "title": "Krewe du Vieux", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4402174091_0f3dffb66f_o.jpg", "secret": "829ffb21fb", "media": "photo", "latitude": "0", "id": "4402174091", "tags": "neworleans 2010"}, {"datetaken": "2010-02-20 20:32:57", "license": "1", "title": "Krewe du Vieux", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4402939012_6c6e81e026_o.jpg", "secret": "799eec5b02", "media": "photo", "latitude": "0", "id": "4402939012", "tags": "neworleans 2010"}, {"datetaken": "2010-02-20 20:33:01", "license": "1", "title": "Krewe du Vieux", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4402174633_8753270bb6_o.jpg", "secret": "9c318bc1da", "media": "photo", "latitude": "0", "id": "4402174633", "tags": "neworleans 2010"}, {"datetaken": "2010-02-20 20:33:12", "license": "1", "title": "Brownie", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4402174915_2f78164387_o.jpg", "secret": "335ca43e1a", "media": "photo", "latitude": "0", "id": "4402174915", "tags": "neworleans 2010"}, {"datetaken": "2010-02-20 20:34:30", "license": "1", "title": "Looking in on the Spotted Cat", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4402939784_e9fee1cd78_o.jpg", "secret": "beafb00a5f", "media": "photo", "latitude": "0", "id": "4402939784", "tags": "neworleans 2010 spottedcat"}, {"datetaken": "2010-02-20 20:39:46", "license": "1", "title": "New Orleans Moonshiners", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4402175577_124728faae_o.jpg", "secret": "a27899f95e", "media": "photo", "latitude": "0", "id": "4402175577", "tags": "neworleans 2010 spottedcat cottonmouthkings"}, {"datetaken": "2010-02-20 20:40:10", "license": "1", "title": "New Orleans Moonshiners", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4402940394_39872efe80_o.jpg", "secret": "aabea065eb", "media": "photo", "latitude": "0", "id": "4402940394", "tags": "neworleans 2010 spottedcat cottonmouthkings"}, {"datetaken": "2010-02-20 20:50:30", "license": "1", "title": "Chaz!", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4402176027_5fc0ea2595_o.jpg", "secret": "c18412cba6", "media": "photo", "latitude": "0", "id": "4402176027", "tags": "neworleans 2010 spottedcat cottonmouthkings"}, {"datetaken": "2010-02-20 21:02:46", "license": "1", "title": "Bass sax!", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4402940800_066d2cb784_o.jpg", "secret": "dd3fe65f7e", "media": "photo", "latitude": "0", "id": "4402940800", "tags": "neworleans 2010 spottedcat cottonmouthkings"}, {"datetaken": "2010-02-20 21:04:11", "license": "1", "title": "Chris nerds out", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2701/4402941022_c588f9fb68_o.jpg", "secret": "63b8b5de24", "media": "photo", "latitude": "0", "id": "4402941022", "tags": "neworleans 2010 spottedcat cottonmouthkings"}, {"datetaken": "2010-02-20 21:17:49", "license": "1", "title": "Gypsy buskers", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4402941278_a9398a27c7_o.jpg", "secret": "f7c3029459", "media": "photo", "latitude": "0", "id": "4402941278", "tags": "neworleans 2010"}, {"datetaken": "2010-02-20 21:24:24", "license": "1", "title": "Blue Spruce", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2505/4402176907_82c3a09e14_o.jpg", "secret": "2f4f59c934", "media": "photo", "latitude": "0", "id": "4402176907", "tags": "neworleans 2010"}, {"datetaken": "2010-02-20 21:24:35", "license": "1", "title": "Proud owner", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2728/4402177141_1655238225_o.jpg", "secret": "80b7f544c0", "media": "photo", "latitude": "0", "id": "4402177141", "tags": "neworleans 2010"}, {"datetaken": "2010-02-20 22:04:32", "license": "1", "title": "On Bourbon St.", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4402942056_fa7d90d19a_o.jpg", "secret": "99014893ef", "media": "photo", "latitude": "0", "id": "4402942056", "tags": "neworleans 2010"}, {"datetaken": "2010-02-21 10:24:45", "license": "1", "title": "Breakfast @ Croissant d'Or", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4402942314_32428ca7fd_o.jpg", "secret": "948f3554bd", "media": "photo", "latitude": "0", "id": "4402942314", "tags": "neworleans 2010"}, {"datetaken": "2010-02-21 10:42:42", "license": "1", "title": "Another spotted cat", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2677/4402942574_e9f7894700_o.jpg", "secret": "841011a499", "media": "photo", "latitude": "0", "id": "4402942574", "tags": "neworleans 2010"}, {"datetaken": "2010-02-21 10:47:14", "license": "1", "title": "Meet the Saints", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4402178061_25c2d3fa85_o.jpg", "secret": "c93739256f", "media": "photo", "latitude": "0", "id": "4402178061", "tags": "neworleans 2010"}, {"datetaken": "2010-02-21 10:53:05", "license": "1", "title": "Meow, Frenchmen St. in the daytime", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4402943244_7be8c00f70_o.jpg", "secret": "b940a85184", "media": "photo", "latitude": "0", "id": "4402943244", "tags": "neworleans 2010"}, {"datetaken": "2010-02-21 10:58:11", "license": "1", "title": "Frenchmen?", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4402943466_f604dd9b73_o.jpg", "secret": "651223fa2b", "media": "photo", "latitude": "0", "id": "4402943466", "tags": "neworleans 2010"}, {"datetaken": "2010-02-21 10:59:04", "license": "1", "title": "Appealing color scheme", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2757/4402178971_a4780055ba_o.jpg", "secret": "a6291ac8fe", "media": "photo", "latitude": "0", "id": "4402178971", "tags": "neworleans 2010"}, {"datetaken": "2010-02-21 11:01:56", "license": "1", "title": "Outskirts of the French Quarter", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2758/4402943960_ba87e448b6_o.jpg", "secret": "b574f34ed1", "media": "photo", "latitude": "0", "id": "4402943960", "tags": "neworleans 2010"}, {"datetaken": "2010-02-21 11:02:58", "license": "1", "title": "Bead bush", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4402179567_6bc5f84c0b_o.jpg", "secret": "4ebc310857", "media": "photo", "latitude": "0", "id": "4402179567", "tags": "dog corgi neworleans olive dachshund 2010 dorgi"}, {"datetaken": "2010-02-21 11:06:55", "license": "1", "title": "Brick & plaque", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4402944600_aa9043bdfd_o.jpg", "secret": "fe2c769e84", "media": "photo", "latitude": "0", "id": "4402944600", "tags": "neworleans 2010"}, {"datetaken": "2010-02-21 11:30:58", "license": "1", "title": "Cathedral", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4402944856_98825c6f9b_o.jpg", "secret": "f1b602025c", "media": "photo", "latitude": "0", "id": "4402944856", "tags": "neworleans 2010"}, {"datetaken": "2010-02-21 11:33:53", "license": "1", "title": "Bridge", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4402945050_8550f648b9_o.jpg", "secret": "4fa6407767", "media": "photo", "latitude": "0", "id": "4402945050", "tags": "neworleans 2010"}, {"datetaken": "2010-02-21 12:11:06", "license": "1", "title": "Old school", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4402180617_df68a47102_o.jpg", "secret": "dcf1094392", "media": "photo", "latitude": "0", "id": "4402180617", "tags": "neworleans 2010"}, {"datetaken": "2010-02-21 12:34:57", "license": "1", "title": "sWINE BAR", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4402180933_4381bc7f09_o.jpg", "secret": "39ce41f838", "media": "photo", "latitude": "0", "id": "4402180933", "tags": "neworleans butcher 2010"}, {"datetaken": "2010-02-21 12:35:11", "license": "1", "title": "Butcher", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4402945962_88794df88f_o.jpg", "secret": "5e31df4e07", "media": "photo", "latitude": "0", "id": "4402945962", "tags": "neworleans 2010"}, {"datetaken": "2010-02-21 12:52:40", "license": "1", "title": "The Best Sandwich on Earth", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4402946824_e5a0e40aba_o.jpg", "secret": "b55c62506b", "media": "photo", "latitude": "0", "id": "4402946824", "tags": "neworleans 2010"}, {"datetaken": "2010-02-21 12:58:05", "license": "1", "title": "Possibly the Second Best Sandwich on Earth", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4402947070_d8d7de9456_o.jpg", "secret": "ecd23a0285", "media": "photo", "latitude": "0", "id": "4402947070", "tags": "neworleans 2010"}, {"datetaken": "2010-02-21 13:20:57", "license": "1", "title": "Of course you do", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4402182611_ceec3ca740_o.jpg", "secret": "b6bf6582bb", "media": "photo", "latitude": "0", "id": "4402182611", "tags": "neworleans 2010"}, {"datetaken": "2010-02-21 13:21:16", "license": "1", "title": "Butcher", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4402947566_69cd8bafbc_o.jpg", "secret": "ebe69572e0", "media": "photo", "latitude": "0", "id": "4402947566", "tags": "neworleans 2010"}, {"datetaken": "2010-02-21 13:52:08", "license": "1", "title": "Streetcar", "text": "", "album_id": "72157623544089176", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2710/4402947824_a66d712b45_o.jpg", "secret": "35cf79a57b", "media": "photo", "latitude": "0", "id": "4402947824", "tags": "neworleans 2010"}, {"datetaken": "2009-11-22 11:16:55", "license": "4", "title": "Entrance to Jenolan Caves", "text": "", "album_id": "72157623134784128", "longitude": "150.025177", "url_o": "https://farm5.staticflickr.com/4059/4243158865_86ca211256_o.jpg", "secret": "fcf3bb5b12", "media": "photo", "latitude": "-33.784488", "id": "4243158865", "tags": "trip light texture nature australia bluemountains caves"}, {"datetaken": "2009-11-22 12:10:49", "license": "4", "title": "Fire mountain at Jenolan Caves", "text": "", "album_id": "72157623134784128", "longitude": "150.025177", "url_o": "https://farm3.staticflickr.com/2661/4243159153_bc13036a05_o.jpg", "secret": "8fefe1bf2d", "media": "photo", "latitude": "-33.784488", "id": "4243159153", "tags": "trip light texture nature backlight fire australia bluemountains caves ladder"}, {"datetaken": "2009-11-22 12:21:51", "license": "4", "title": "Shawls at Jenolan Caves", "text": "", "album_id": "72157623134784128", "longitude": "150.025177", "url_o": "https://farm3.staticflickr.com/2693/4243159607_2141f32ca9_o.jpg", "secret": "99ca0893a3", "media": "photo", "latitude": "-33.784488", "id": "4243159607", "tags": "trip light texture nature contrast australia bluemountains caves"}, {"datetaken": "2009-11-22 12:22:41", "license": "4", "title": "Shark Stone", "text": "", "album_id": "72157623134784128", "longitude": "150.025177", "url_o": "https://farm5.staticflickr.com/4057/4243159809_33df2705c3_o.jpg", "secret": "04a0d6bb07", "media": "photo", "latitude": "-33.784488", "id": "4243159809", "tags": "trip light texture nature australia bluemountains caves"}, {"datetaken": "2009-11-22 12:24:27", "license": "4", "title": "Various Formations at Jenolan Caves", "text": "", "album_id": "72157623134784128", "longitude": "150.025177", "url_o": "https://farm5.staticflickr.com/4059/4243933732_19a24be240_o.jpg", "secret": "66ae4058d8", "media": "photo", "latitude": "-33.784488", "id": "4243933732", "tags": "trip light texture nature australia bluemountains caves"}, {"datetaken": "2009-11-22 12:26:32", "license": "4", "title": "Emerging From the Dark (Jenolan Caves)", "text": "", "album_id": "72157623134784128", "longitude": "150.025177", "url_o": "https://farm3.staticflickr.com/2782/4243160331_6cd916a510_o.jpg", "secret": "e5d787ae02", "media": "photo", "latitude": "-33.784488", "id": "4243160331", "tags": "trip light texture nature australia bluemountains caves"}, {"datetaken": "2009-11-22 12:27:02", "license": "4", "title": "Fantasy Tree at Jenolan Caves", "text": "", "album_id": "72157623134784128", "longitude": "150.025177", "url_o": "https://farm3.staticflickr.com/2728/4243934520_6d8281c6e3_o.jpg", "secret": "a122ff6e63", "media": "photo", "latitude": "-33.784488", "id": "4243934520", "tags": "trip light texture nature australia bluemountains caves"}, {"datetaken": "2009-11-22 12:30:51", "license": "4", "title": "Ghost of the Cave", "text": "", "album_id": "72157623134784128", "longitude": "150.025177", "url_o": "https://farm5.staticflickr.com/4049/4243934876_fb10c10b16_o.jpg", "secret": "47f1424ef8", "media": "photo", "latitude": "-33.784488", "id": "4243934876", "tags": "trip light texture nature ghost australia bluemountains caves stalactites"}, {"datetaken": "2009-11-22 12:33:36", "license": "4", "title": "Flowing Shawls at Jenolan Caves", "text": "", "album_id": "72157623134784128", "longitude": "150.025177", "url_o": "https://farm5.staticflickr.com/4049/4243935174_be1a29ebac_o.jpg", "secret": "4f3157cdd8", "media": "photo", "latitude": "-33.784488", "id": "4243935174", "tags": "trip light texture nature australia bluemountains caves"}, {"datetaken": "2009-11-22 14:02:43", "license": "4", "title": "Underwater World at Jenolan Caves", "text": "", "album_id": "72157623134784128", "longitude": "150.025177", "url_o": "https://farm3.staticflickr.com/2797/4243161753_d81e779df1_o.jpg", "secret": "be7dbcd5e2", "media": "photo", "latitude": "-33.784488", "id": "4243161753", "tags": "trip light texture nature australia bluemountains caves"}, {"datetaken": "2009-11-22 14:03:50", "license": "4", "title": "Looking up at Jenolan Caves", "text": "", "album_id": "72157623134784128", "longitude": "150.025177", "url_o": "https://farm3.staticflickr.com/2735/4243161945_94d4597023_o.jpg", "secret": "fa45254f61", "media": "photo", "latitude": "-33.784488", "id": "4243161945", "tags": "trip light texture nature up australia bluemountains sharp caves"}, {"datetaken": "2009-11-22 14:06:37", "license": "4", "title": "Abstract forms - Jenolan Caves", "text": "", "album_id": "72157623134784128", "longitude": "150.025177", "url_o": "https://farm3.staticflickr.com/2727/4243935940_cc6aa89d9e_o.jpg", "secret": "6bb8ecda65", "media": "photo", "latitude": "-33.784488", "id": "4243935940", "tags": "trip light abstract texture nature australia bluemountains caves filmgrain"}, {"datetaken": "2010-03-04 23:43:33", "license": "2", "title": "Galaxy Force / Robot Masters Transformers Japan Katalog / Catalog", "text": "", "album_id": "72157623431354665", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2501/4406771859_b45eff67cc_o.jpg", "secret": "547fda5c2c", "media": "photo", "latitude": "0", "id": "4406771859", "tags": "japan robot force galaxy transformers catalog masters katalog"}, {"datetaken": "2010-03-04 23:43:50", "license": "2", "title": "Galaxy Force / Robot Masters Transformers Japan Katalog / Catalog", "text": "", "album_id": "72157623431354665", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4407538712_ab754e46f2_o.jpg", "secret": "0195b20c5e", "media": "photo", "latitude": "0", "id": "4407538712", "tags": "japan robot force galaxy transformers catalog masters katalog"}, {"datetaken": "2010-03-04 23:44:09", "license": "2", "title": "Galaxy Force / Robot Masters Transformers Japan Katalog / Catalog", "text": "", "album_id": "72157623431354665", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2788/4406772971_9c69b67709_o.jpg", "secret": "0981d04920", "media": "photo", "latitude": "0", "id": "4406772971", "tags": "japan robot force galaxy transformers catalog masters katalog"}, {"datetaken": "2010-03-04 23:44:29", "license": "2", "title": "Galaxy Force / Robot Masters Transformers Japan Katalog / Catalog", "text": "", "album_id": "72157623431354665", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4407539876_0baaf5a7ff_o.jpg", "secret": "e1ee25ec8b", "media": "photo", "latitude": "0", "id": "4407539876", "tags": "japan robot force galaxy transformers catalog masters katalog"}, {"datetaken": "2010-03-04 23:44:49", "license": "2", "title": "Galaxy Force / Robot Masters Transformers Japan Katalog / Catalog", "text": "", "album_id": "72157623431354665", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2735/4407540386_1e1fbc8f9a_o.jpg", "secret": "4462503441", "media": "photo", "latitude": "0", "id": "4407540386", "tags": "japan robot force galaxy transformers catalog masters katalog"}, {"datetaken": "2010-03-04 23:45:08", "license": "2", "title": "Galaxy Force / Robot Masters Transformers Japan Katalog / Catalog", "text": "", "album_id": "72157623431354665", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4407540908_082ce82b9b_o.jpg", "secret": "09bd6a57e4", "media": "photo", "latitude": "0", "id": "4407540908", "tags": "japan robot force galaxy transformers catalog masters katalog"}, {"datetaken": "2010-03-04 23:45:28", "license": "2", "title": "Galaxy Force / Robot Masters Transformers Japan Katalog / Catalog", "text": "", "album_id": "72157623431354665", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4406775301_ed51a87914_o.jpg", "secret": "18f4dfb27a", "media": "photo", "latitude": "0", "id": "4406775301", "tags": "japan robot force galaxy transformers catalog masters katalog"}, {"datetaken": "2010-03-04 23:45:46", "license": "2", "title": "Galaxy Force / Robot Masters Transformers Japan Katalog / Catalog", "text": "", "album_id": "72157623431354665", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4407542046_9deaaaa989_o.jpg", "secret": "9356582631", "media": "photo", "latitude": "0", "id": "4407542046", "tags": "japan robot force galaxy transformers catalog masters katalog"}, {"datetaken": "2010-03-04 23:46:07", "license": "2", "title": "Galaxy Force / Robot Masters Transformers Japan Katalog / Catalog", "text": "", "album_id": "72157623431354665", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4406776447_cc74eccd61_o.jpg", "secret": "34a7b18400", "media": "photo", "latitude": "0", "id": "4406776447", "tags": "japan robot force galaxy transformers catalog masters katalog"}, {"datetaken": "2010-03-04 23:46:24", "license": "2", "title": "Galaxy Force / Robot Masters Transformers Japan Katalog / Catalog", "text": "", "album_id": "72157623431354665", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4407543194_096eee6908_o.jpg", "secret": "83cf1d78fe", "media": "photo", "latitude": "0", "id": "4407543194", "tags": "japan robot force galaxy transformers catalog masters katalog"}, {"datetaken": "2010-03-04 22:59:34", "license": "2", "title": "Robotech changers Blockman", "text": "", "album_id": "72157623555688218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4407447206_7966ac669e_o.jpg", "secret": "ea30690e14", "media": "photo", "latitude": "0", "id": "4407447206", "tags": "robotech changers blockman"}, {"datetaken": "2010-03-04 22:59:37", "license": "2", "title": "Robotech changers Blockman", "text": "", "album_id": "72157623555688218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4407447298_73221df55f_o.jpg", "secret": "a534372941", "media": "photo", "latitude": "0", "id": "4407447298", "tags": "robotech changers blockman"}, {"datetaken": "2010-03-04 22:59:40", "license": "2", "title": "Robotech changers Blockman", "text": "", "album_id": "72157623555688218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4407447408_4d1df89d67_o.jpg", "secret": "a379b8ec68", "media": "photo", "latitude": "0", "id": "4407447408", "tags": "robotech changers blockman"}, {"datetaken": "2010-03-04 22:59:43", "license": "2", "title": "Robotech changers Blockman", "text": "", "album_id": "72157623555688218", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4407447506_071047718b_o.jpg", "secret": "9f86b1b211", "media": "photo", "latitude": "0", "id": "4407447506", "tags": "robotech changers blockman"}, {"datetaken": "2010-03-04 22:59:46", "license": "2", "title": "Robotech changers Blockman", "text": "", "album_id": "72157623555688218", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4407447586_b1441ea604_o.jpg", "secret": "97318b03b2", "media": "photo", "latitude": "0", "id": "4407447586", "tags": "robotech changers blockman"}, {"datetaken": "2010-03-04 22:59:49", "license": "2", "title": "Robotech changers Blockman", "text": "", "album_id": "72157623555688218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4407447736_27024ddf38_o.jpg", "secret": "cd3610b466", "media": "photo", "latitude": "0", "id": "4407447736", "tags": "robotech changers blockman"}, {"datetaken": "2010-03-04 22:59:52", "license": "2", "title": "Robotech changers Blockman", "text": "", "album_id": "72157623555688218", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4406681433_c26f49ba22_o.jpg", "secret": "d04d992417", "media": "photo", "latitude": "0", "id": "4406681433", "tags": "robotech changers blockman"}, {"datetaken": "2010-03-04 22:59:56", "license": "2", "title": "Robotech changers Blockman", "text": "", "album_id": "72157623555688218", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4407447964_39c5b33102_o.jpg", "secret": "dbfe049046", "media": "photo", "latitude": "0", "id": "4407447964", "tags": "robotech changers blockman"}, {"datetaken": "2010-03-04 22:59:59", "license": "2", "title": "Robotech changers Blockman", "text": "", "album_id": "72157623555688218", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4407448074_15da5a0897_o.jpg", "secret": "0b171f809e", "media": "photo", "latitude": "0", "id": "4407448074", "tags": "robotech changers blockman"}, {"datetaken": "2010-03-04 23:00:04", "license": "2", "title": "Robotech changers Blockman", "text": "", "album_id": "72157623555688218", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2777/4406681849_b19dcdc78f_o.jpg", "secret": "14878de9df", "media": "photo", "latitude": "0", "id": "4406681849", "tags": "robotech changers blockman"}, {"datetaken": "2010-03-04 23:00:07", "license": "2", "title": "Robotech changers Blockman", "text": "", "album_id": "72157623555688218", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2735/4407448360_fc2f47a386_o.jpg", "secret": "3bc8f53886", "media": "photo", "latitude": "0", "id": "4407448360", "tags": "robotech changers blockman"}, {"datetaken": "2004-12-21 00:04:57", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-001", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4407456882_e2535567ce_o.jpg", "secret": "740a36abdc", "media": "photo", "latitude": "0", "id": "4407456882", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-21 00:05:31", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-002", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4406690981_69ffdba66f_o.jpg", "secret": "d2c1589972", "media": "photo", "latitude": "0", "id": "4406690981", "tags": "1987 tomy zoids katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-21 00:07:10", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-003", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4407457056_5cb37aa2e6_o.jpg", "secret": "2cafe26fbc", "media": "photo", "latitude": "0", "id": "4407457056", "tags": "1987 tomy zoids katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-21 00:07:47", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-004", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4406691165_8eb3c952aa_o.jpg", "secret": "d20e08684b", "media": "photo", "latitude": "0", "id": "4406691165", "tags": "1987 tomy zoids katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-21 00:09:06", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-005", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4406691249_d7137b3865_o.jpg", "secret": "2924bb1546", "media": "photo", "latitude": "0", "id": "4406691249", "tags": "1987 tomy zoids katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-21 00:09:57", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-006", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4406691381_2433cbd2d4_o.jpg", "secret": "1d0066a1e6", "media": "photo", "latitude": "0", "id": "4406691381", "tags": "1987 tomy zoids katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-21 00:10:36", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-007", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4407457450_94e5e67498_o.jpg", "secret": "09d70eec8d", "media": "photo", "latitude": "0", "id": "4407457450", "tags": "1987 tomy zoids katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-21 00:11:18", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-008", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2719/4406691611_122c77a860_o.jpg", "secret": "61780118b9", "media": "photo", "latitude": "0", "id": "4406691611", "tags": "robot 1987 tomy katalog tomyrobot weihnacht\u00b4s"}, {"datetaken": "2004-12-21 00:11:29", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-009", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4406691727_cbc345bf39_o.jpg", "secret": "780536ec81", "media": "photo", "latitude": "0", "id": "4406691727", "tags": "robot 1987 tomy katalog tomyrobot weihnacht\u00b4s"}, {"datetaken": "2004-12-21 00:11:45", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-010", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4406691839_39333ea1db_o.jpg", "secret": "9ab9f95a91", "media": "photo", "latitude": "0", "id": "4406691839", "tags": "robot 1987 tomy katalog tomyrobot weihnacht\u00b4s"}, {"datetaken": "2004-12-21 00:11:55", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-011", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4406691923_2373bb9a3e_o.jpg", "secret": "4cfa65eb9c", "media": "photo", "latitude": "0", "id": "4406691923", "tags": "robot 1987 tomy katalog tomyrobot weihnacht\u00b4s"}, {"datetaken": "2004-12-21 00:12:09", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-012", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2714/4407457994_569f1b2a81_o.jpg", "secret": "a7aea7a5f4", "media": "photo", "latitude": "0", "id": "4407457994", "tags": "robot 1987 tomy katalog tomyrobot weihnacht\u00b4s"}, {"datetaken": "2004-12-21 00:12:22", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-013", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4407458102_109e41ac52_o.jpg", "secret": "fa9e1e8396", "media": "photo", "latitude": "0", "id": "4407458102", "tags": "robot 1987 tomy katalog tomyrobot weihnacht\u00b4s"}, {"datetaken": "2004-12-21 00:12:38", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-014", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4406692265_bcba200869_o.jpg", "secret": "570b0ff8c1", "media": "photo", "latitude": "0", "id": "4406692265", "tags": "robot 1987 tomy katalog tomyrobot weihnacht\u00b4s"}, {"datetaken": "2004-12-21 00:12:49", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-015", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4406692357_e0b3edfb92_o.jpg", "secret": "92429fa43e", "media": "photo", "latitude": "0", "id": "4406692357", "tags": "robot 1987 tomy katalog tomyrobot weihnacht\u00b4s"}, {"datetaken": "2004-12-21 00:13:02", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-016", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4406692447_8477235601_o.jpg", "secret": "f3d5b26a1b", "media": "photo", "latitude": "0", "id": "4406692447", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-21 00:13:20", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-017", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4407458444_482cb9e13b_o.jpg", "secret": "5acaed11c5", "media": "photo", "latitude": "0", "id": "4407458444", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:01:19", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-018", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2727/4407458536_7c8f0f5627_o.jpg", "secret": "05ce804d4b", "media": "photo", "latitude": "0", "id": "4407458536", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:01:43", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-019", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4406692711_b4de52900a_o.jpg", "secret": "f0d336db47", "media": "photo", "latitude": "0", "id": "4406692711", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:02:49", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-020", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2518/4407458752_8ab7e81685_o.jpg", "secret": "18dbaafed1", "media": "photo", "latitude": "0", "id": "4407458752", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:04:24", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-021", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4407458856_b19f2a5ca6_o.jpg", "secret": "e355c30acb", "media": "photo", "latitude": "0", "id": "4407458856", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:04:45", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-022", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4407458944_657956b884_o.jpg", "secret": "fb696351bf", "media": "photo", "latitude": "0", "id": "4407458944", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:04:58", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-023", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4407459040_e73c8cdd11_o.jpg", "secret": "c00879b518", "media": "photo", "latitude": "0", "id": "4407459040", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:05:22", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-024", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4406693163_bfbe59e3a4_o.jpg", "secret": "32ec3b3865", "media": "photo", "latitude": "0", "id": "4406693163", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:05:36", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-025", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2635/4406693255_68762e3575_o.jpg", "secret": "08664abaf0", "media": "photo", "latitude": "0", "id": "4406693255", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:05:59", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-026", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4407459268_68b6201b67_o.jpg", "secret": "686ec7d8be", "media": "photo", "latitude": "0", "id": "4407459268", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:06:20", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-027", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4407459398_c007edb7d8_o.jpg", "secret": "d5edf818cc", "media": "photo", "latitude": "0", "id": "4407459398", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:06:46", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-028", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4406693505_a8f7d6a5ef_o.jpg", "secret": "47d0d13c94", "media": "photo", "latitude": "0", "id": "4406693505", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:07:02", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-029", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4406693609_fa7d5f1429_o.jpg", "secret": "e689773574", "media": "photo", "latitude": "0", "id": "4406693609", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:07:43", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-030", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2680/4406693689_f58d88856d_o.jpg", "secret": "9c61ac06cc", "media": "photo", "latitude": "0", "id": "4406693689", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:07:59", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-031", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2689/4406693775_9a3883e62c_o.jpg", "secret": "41a92cc689", "media": "photo", "latitude": "0", "id": "4406693775", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:29:14", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-032", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4406693851_2ee59e3699_o.jpg", "secret": "2a7e343944", "media": "photo", "latitude": "0", "id": "4406693851", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:29:43", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-033", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2782/4407459886_4baa8e3ef9_o.jpg", "secret": "7247be1559", "media": "photo", "latitude": "0", "id": "4407459886", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:31:35", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-034", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4407460024_e57e63f37a_o.jpg", "secret": "a9700308cc", "media": "photo", "latitude": "0", "id": "4407460024", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:32:19", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-035", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4406694199_7a5e231afd_o.jpg", "secret": "6738c829ea", "media": "photo", "latitude": "0", "id": "4406694199", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:32:51", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-036", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4407460246_ee13afaa30_o.jpg", "secret": "101f28621b", "media": "photo", "latitude": "0", "id": "4407460246", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:33:03", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-037", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4407460386_c0f90de82a_o.jpg", "secret": "5e5bec2cb0", "media": "photo", "latitude": "0", "id": "4407460386", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:33:29", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-038", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4407460472_7c178f1a6f_o.jpg", "secret": "4d3315c73f", "media": "photo", "latitude": "0", "id": "4407460472", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:33:47", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-039", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4406694635_271f612917_o.jpg", "secret": "374a818129", "media": "photo", "latitude": "0", "id": "4406694635", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2004-12-22 19:34:04", "license": "2", "title": "Tomy Weihnacht\u00b4s Katalog 1987-040", "text": "", "album_id": "72157623431139319", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4407460636_c4743a7de1_o.jpg", "secret": "a26dbb84c2", "media": "photo", "latitude": "0", "id": "4407460636", "tags": "1987 tomy katalog weihnacht\u00b4s"}, {"datetaken": "2009-12-16 19:04:54", "license": "2", "title": "\"Youth for Change\" APV", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4250762445_5d860470dc_o.jpg", "secret": "5a537c2914", "media": "photo", "latitude": "0", "id": "4250762445", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-16 23:07:58", "license": "2", "title": "\"Youth for change\" APV 31", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4246977413_6496f00b38_o.jpg", "secret": "be90bbbb58", "media": "photo", "latitude": "0", "id": "4246977413", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 00:55:07", "license": "2", "title": "\"Youth for change\" APV 30", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4247752210_45c1d964f2_o.jpg", "secret": "4d2b195d51", "media": "photo", "latitude": "0", "id": "4247752210", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 13:17:38", "license": "2", "title": "\"Youth for change\" APV 29", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2706/4246978161_868aeb8be4_o.jpg", "secret": "b573d58c1e", "media": "photo", "latitude": "0", "id": "4246978161", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 13:17:49", "license": "2", "title": "\"Youth for change\" APV 27", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4247753382_dbb3e4fe59_o.jpg", "secret": "3e4f10722c", "media": "photo", "latitude": "0", "id": "4247753382", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 13:18:14", "license": "2", "title": "\"Youth for change\" APV 28", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4246978563_4ffd3460ce_o.jpg", "secret": "780bb4f3e1", "media": "photo", "latitude": "0", "id": "4246978563", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 13:18:26", "license": "2", "title": "\"Youth for change\" APV 26", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2624/4247753720_46d24e8a1d_o.jpg", "secret": "cdaffeac1a", "media": "photo", "latitude": "0", "id": "4247753720", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 13:18:32", "license": "2", "title": "\"Youth for change\" APV 25", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4246979695_9493084d5f_o.jpg", "secret": "ce6db44201", "media": "photo", "latitude": "0", "id": "4246979695", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 13:18:38", "license": "2", "title": "\"Youth for change\" APV 24", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4247754280_80ded67e72_o.jpg", "secret": "e1dde47bfb", "media": "photo", "latitude": "0", "id": "4247754280", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 13:18:45", "license": "2", "title": "\"Youth for change\" APV 22", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4246980711_257d59890f_o.jpg", "secret": "e63872b7d1", "media": "photo", "latitude": "0", "id": "4246980711", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 13:25:38", "license": "2", "title": "\"Youth for change\" APV 23", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2782/4247754630_6e94ce9bd1_o.jpg", "secret": "4cc9efdc09", "media": "photo", "latitude": "0", "id": "4247754630", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 13:25:49", "license": "2", "title": "\"Youth for change\" APV 20", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4247755622_d93a76543e_o.jpg", "secret": "bab4026d54", "media": "photo", "latitude": "0", "id": "4247755622", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 13:25:57", "license": "2", "title": "\"Youth for change\" APV 21", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4247755360_cb4ee4dd99_o.jpg", "secret": "f57323754d", "media": "photo", "latitude": "0", "id": "4247755360", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 13:58:21", "license": "2", "title": "\"Youth for change\" APV 19", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4247755902_0f57d55729_o.jpg", "secret": "7c60c40cbd", "media": "photo", "latitude": "0", "id": "4247755902", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 13:58:32", "license": "2", "title": "\"Youth for change\" APV 17", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2760/4247756346_0995aa0f88_o.jpg", "secret": "4c8fc8da7c", "media": "photo", "latitude": "0", "id": "4247756346", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 14:12:58", "license": "2", "title": "\"Youth for change\" APV 18", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2717/4247756120_caa58f3608_o.jpg", "secret": "21b8ae2216", "media": "photo", "latitude": "0", "id": "4247756120", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 14:13:16", "license": "2", "title": "\"Youth for change\" APV 15", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4246982603_d7f2d0fef9_o.jpg", "secret": "341a507b18", "media": "photo", "latitude": "0", "id": "4246982603", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 14:13:22", "license": "2", "title": "\"Youth for change\" APV 16", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2653/4247756694_5b2b711ed4_o.jpg", "secret": "74a0ccaef1", "media": "photo", "latitude": "0", "id": "4247756694", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 14:14:14", "license": "2", "title": "\"Youth for change\" APV 14", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2763/4246982857_82958e833e_o.jpg", "secret": "65b285e051", "media": "photo", "latitude": "0", "id": "4246982857", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 14:14:36", "license": "2", "title": "\"Youth for change\" APV 12", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4246983449_7309237646_o.jpg", "secret": "3591ced02d", "media": "photo", "latitude": "0", "id": "4246983449", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 14:14:45", "license": "2", "title": "\"Youth for change\" APV 13", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4246983111_e647226fd2_o.jpg", "secret": "9d111a88db", "media": "photo", "latitude": "0", "id": "4246983111", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 14:14:53", "license": "2", "title": "\"Youth for change\" APV 10", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2686/4246983963_2011bd2be8_o.jpg", "secret": "15898c5068", "media": "photo", "latitude": "0", "id": "4246983963", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 14:30:11", "license": "2", "title": "\"Youth for change\" APV 11", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2529/4247758044_4d5c99e828_o.jpg", "secret": "b7cbc26f7b", "media": "photo", "latitude": "0", "id": "4247758044", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 14:30:30", "license": "2", "title": "\"Youth for change\" APV 09", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4246984183_5684501c65_o.jpg", "secret": "0918f7de5e", "media": "photo", "latitude": "0", "id": "4246984183", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 14:30:39", "license": "2", "title": "\"Youth for change\" APV 07", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4247759008_fc7b62f49d_o.jpg", "secret": "cd55da3fb5", "media": "photo", "latitude": "0", "id": "4247759008", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 14:34:36", "license": "2", "title": "\"Youth for change\" APV 08", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4246984415_13e5f21778_o.jpg", "secret": "b4363d189e", "media": "photo", "latitude": "0", "id": "4246984415", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 14:35:01", "license": "2", "title": "\"Youth for change\" APV 06", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2523/4247759276_9b2087b31e_o.jpg", "secret": "396e12689a", "media": "photo", "latitude": "0", "id": "4247759276", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 23:05:14", "license": "2", "title": "\"Youth for change\" APV 05", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4246985127_bf3a892a60_o.jpg", "secret": "cb4acff272", "media": "photo", "latitude": "0", "id": "4246985127", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 23:05:27", "license": "2", "title": "\"Youth for change\" APV 04", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2758/4247759818_36ea3c4e75_o.jpg", "secret": "e395d68482", "media": "photo", "latitude": "0", "id": "4247759818", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 23:05:44", "license": "2", "title": "\"Youth for change\" APV 03", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4247760126_a77b88cf7a_o.jpg", "secret": "20be4de8b8", "media": "photo", "latitude": "0", "id": "4247760126", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 23:06:40", "license": "2", "title": "\"Youth for change\" APV 02", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2661/4247760496_14751a181f_o.jpg", "secret": "ef62ef89bf", "media": "photo", "latitude": "0", "id": "4247760496", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2009-12-17 23:06:57", "license": "2", "title": "\"Youth for change\" APV 01", "text": "", "album_id": "72157623019037905", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4247760760_0fbe7e9f61_o.jpg", "secret": "0fb6679e79", "media": "photo", "latitude": "0", "id": "4247760760", "tags": "jef moldova youthforchange advanceplanningvisit"}, {"datetaken": "2010-04-05 21:42:32", "license": "4", "title": "Stained Glass Window - St Mary, West Malling, Kent", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4494860490_02511ff29a_o.jpg", "secret": "a10b7cac10", "media": "photo", "latitude": "0", "id": "4494860490", "tags": "church kent stainedglass stmary westmalling"}, {"datetaken": "2010-04-05 21:42:32", "license": "4", "title": "Bat and Skull on Tomb at St Mary, West Malling, Kent", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4494860508_3c1b4babb9_o.jpg", "secret": "74047b00ba", "media": "photo", "latitude": "0", "id": "4494860508", "tags": "church kent tomb stmary westmalling"}, {"datetaken": "2010-04-05 21:42:32", "license": "4", "title": "Tomb at St Mary, West Malling, Kent", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4494860502_ec3f522e47_o.jpg", "secret": "2b6eac6da3", "media": "photo", "latitude": "0", "id": "4494860502", "tags": "church kent tomb stmary westmalling"}, {"datetaken": "2010-04-05 21:42:32", "license": "4", "title": "Tomb at St Mary, West Malling, Kent", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4494860498_863b8dd4f3_o.jpg", "secret": "c2dba58458", "media": "photo", "latitude": "0", "id": "4494860498", "tags": "church kent tomb stmary westmalling"}, {"datetaken": "2010-04-05 21:42:32", "license": "4", "title": "Memorial Tablet at St Mary, West Malling, Kent", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4494860486_890f141768_o.jpg", "secret": "93444766bf", "media": "photo", "latitude": "0", "id": "4494860486", "tags": "church kent memorial stmary westmalling"}, {"datetaken": "2010-04-05 21:42:32", "license": "4", "title": "Stained Glass Window - St Mary, West Malling, Kent", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4494860484_25eb087b28_o.jpg", "secret": "6866dafe5f", "media": "photo", "latitude": "0", "id": "4494860484", "tags": "church kent stainedglass stmary westmalling"}, {"datetaken": "2010-04-05 22:04:29", "license": "4", "title": "Inscription at St Mary, West Malling, Kent", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4494288189_6f17b8738e_o.jpg", "secret": "1393f7867a", "media": "photo", "latitude": "0", "id": "4494288189", "tags": "church kent stmary westmalling"}, {"datetaken": "2010-04-05 22:04:29", "license": "4", "title": "Plaque at St Mary church, West Malling, Kent", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4494288177_d5e4fbc4ef_o.jpg", "secret": "ebf89d246b", "media": "photo", "latitude": "0", "id": "4494288177", "tags": "church kent westmalling"}, {"datetaken": "2010-04-05 22:04:29", "license": "4", "title": "Skeleton on Tomb at St Mary church, West Malling, Kent", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4494288171_1b55880fee_o.jpg", "secret": "987ed6e4f2", "media": "photo", "latitude": "0", "id": "4494288171", "tags": "church kent westmalling"}, {"datetaken": "2010-04-05 22:04:29", "license": "4", "title": "Skeleton on Tomb at St Mary church, West Malling, Kent", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4494288163_be26af6e19_o.jpg", "secret": "caba2bea18", "media": "photo", "latitude": "0", "id": "4494288163", "tags": "church kent westmalling"}, {"datetaken": "2010-04-05 22:04:29", "license": "4", "title": "Skeleton on Tomb at St Mary church, West Malling, Kent", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4494288161_e6218db22f_o.jpg", "secret": "b8b95a1908", "media": "photo", "latitude": "0", "id": "4494288161", "tags": "church kent westmalling"}, {"datetaken": "2010-04-05 22:04:29", "license": "4", "title": "Memorial tablet in St Mary church, West Malling, Kent", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4494288133_01f392b120_o.jpg", "secret": "05474ccff8", "media": "photo", "latitude": "0", "id": "4494288133", "tags": "church kent westmalling"}, {"datetaken": "2010-04-05 22:43:57", "license": "4", "title": "Grave of Squadron Leader A E Hall", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4495047856_e99cc8b48f_o.jpg", "secret": "1b54e896b4", "media": "photo", "latitude": "0", "id": "4495047856", "tags": "church grave kent tomb stmary westmalling squadronleaderaehall"}, {"datetaken": "2010-04-05 22:43:57", "license": "4", "title": "Grave of Flying Officer A G Levett", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2796/4495047852_2a384fd08f_o.jpg", "secret": "d8187f931a", "media": "photo", "latitude": "0", "id": "4495047852", "tags": "church grave kent tomb stmary westmalling flyingofficeraglevett"}, {"datetaken": "2010-04-05 22:43:57", "license": "4", "title": "St Mary church, West Malling, Kent", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4495047844_4cb8d848bf_o.jpg", "secret": "33fb5843cf", "media": "photo", "latitude": "0", "id": "4495047844", "tags": "church grave kent tomb stmary westmalling"}, {"datetaken": "2010-04-05 22:43:58", "license": "4", "title": "Grave of Flying Officer B Carse", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4495047898_7c2a7c0be8_o.jpg", "secret": "5f2821dc42", "media": "photo", "latitude": "0", "id": "4495047898", "tags": "church grave kent tomb stmary westmalling flyingofficerbcarse"}, {"datetaken": "2010-04-05 22:43:58", "license": "4", "title": "Grave of Senior Aircraftman H N (Noel) Birch", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4495047890_ec11ea647b_o.jpg", "secret": "c0af56624b", "media": "photo", "latitude": "0", "id": "4495047890", "tags": "church grave kent tomb stmary westmalling senioraircraftmanhnnoelbirch"}, {"datetaken": "2010-04-05 22:44:00", "license": "4", "title": "Grave of Corporal W T Robinson", "text": "", "album_id": "72157623653330993", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4495047994_9a027d8f8d_o.jpg", "secret": "7ac24c3612", "media": "photo", "latitude": "0", "id": "4495047994", "tags": "church grave kent tomb stmary westmalling corporalwtrobinson"}, {"datetaken": "2010-04-02 21:27:32", "license": "3", "title": "M-90_0142_cp_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2728/4496194472_310e92aef7_o.jpg", "secret": "4ed39c5def", "media": "photo", "latitude": "0", "id": "4496194472", "tags": "people michigan indoors"}, {"datetaken": "2010-04-03 12:09:20", "license": "3", "title": "M-90_0145_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4496194612_a4ac0a5c0a_o.jpg", "secret": "e1eb2c3458", "media": "photo", "latitude": "0", "id": "4496194612", "tags": ""}, {"datetaken": "2010-04-03 12:09:54", "license": "3", "title": "M-90_0146_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4496194770_2ba775de4f_o.jpg", "secret": "e6770a2447", "media": "photo", "latitude": "0", "id": "4496194770", "tags": ""}, {"datetaken": "2010-04-03 13:26:38", "license": "3", "title": "M-90_0155_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4495556373_36f78fab21_o.jpg", "secret": "8ec415f0d3", "media": "photo", "latitude": "0", "id": "4495556373", "tags": ""}, {"datetaken": "2010-04-03 14:09:03", "license": "3", "title": "M-90_0162_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4495556511_b9005e0bed_o.jpg", "secret": "5eef39b614", "media": "photo", "latitude": "0", "id": "4495556511", "tags": "family party people michigan group"}, {"datetaken": "2010-04-03 14:11:50", "license": "3", "title": "M-90_0169_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4495556673_78b7171b5b_o.jpg", "secret": "0828db8f75", "media": "photo", "latitude": "0", "id": "4495556673", "tags": "family party people michigan group"}, {"datetaken": "2010-04-03 14:13:09", "license": "3", "title": "M-90_0170_cp_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4496195340_a5dd1a25df_o.jpg", "secret": "849e7c236b", "media": "photo", "latitude": "0", "id": "4496195340", "tags": "family party people michigan group"}, {"datetaken": "2010-04-03 14:46:55", "license": "3", "title": "M-90_0176_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4495556941_0956516c11_o.jpg", "secret": "19f047cd83", "media": "photo", "latitude": "0", "id": "4495556941", "tags": ""}, {"datetaken": "2010-04-03 15:06:18", "license": "3", "title": "M-90_0181_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4495557099_e75df8c291_o.jpg", "secret": "92e1a9e878", "media": "photo", "latitude": "0", "id": "4495557099", "tags": ""}, {"datetaken": "2010-04-03 15:17:02", "license": "3", "title": "M-90_0203_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2763/4496195710_f76d9883ae_o.jpg", "secret": "201d1bf37e", "media": "photo", "latitude": "0", "id": "4496195710", "tags": "family party people michigan group"}, {"datetaken": "2010-04-03 16:56:01", "license": "3", "title": "M-90_0206_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4496195796_76d8b9e398_o.jpg", "secret": "c901658ec5", "media": "photo", "latitude": "0", "id": "4496195796", "tags": "family party people michigan group"}, {"datetaken": "2010-04-03 16:56:11", "license": "3", "title": "M-90_0207_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4495557477_bf5b4f9ff3_o.jpg", "secret": "cc2d21935e", "media": "photo", "latitude": "0", "id": "4495557477", "tags": ""}, {"datetaken": "2010-04-03 16:59:14", "license": "3", "title": "M-90_0209_cp_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2723/4496195996_72f2f1a334_o.jpg", "secret": "35b66b5f9c", "media": "photo", "latitude": "0", "id": "4496195996", "tags": "family party people michigan group"}, {"datetaken": "2010-04-04 09:52:04", "license": "3", "title": "M-90_0223_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4496196088_d959d8c772_o.jpg", "secret": "99b891fca0", "media": "photo", "latitude": "0", "id": "4496196088", "tags": "family people church michigan group"}, {"datetaken": "2010-04-04 09:52:16", "license": "3", "title": "M-90_0224_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4496196234_67d82c4375_o.jpg", "secret": "698b257e46", "media": "photo", "latitude": "0", "id": "4496196234", "tags": "family people church michigan group"}, {"datetaken": "2010-04-04 10:15:16", "license": "3", "title": "M-90_0230_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4718165989_2b0eb5772e_o.jpg", "secret": "375a7157f3", "media": "photo", "latitude": "0", "id": "4718165989", "tags": ""}, {"datetaken": "2010-04-04 11:03:46", "license": "3", "title": "M-90_0236_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4718166649_2ae282f600_o.jpg", "secret": "a7ac551374", "media": "photo", "latitude": "0", "id": "4718166649", "tags": "family people church michigan group"}, {"datetaken": "2010-04-04 11:20:31", "license": "3", "title": "M-90_0239_cp_med", "text": "", "album_id": "72157623782056916", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4495557841_90b0a06f5a_o.jpg", "secret": "e946223d08", "media": "photo", "latitude": "0", "id": "4495557841", "tags": ""}, {"datetaken": "2010-02-03 17:54:49", "license": "2", "title": "MK_Maalhos4932", "text": "", "album_id": "72157623363102898", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4333674693_4edeb6a87a_o.jpg", "secret": "b1df7a017d", "media": "photo", "latitude": "0", "id": "4333674693", "tags": "island islander maldives presidencymaldives presidentsvisittonorthariatoll visittomaalhos presidentmeetsthepeopleofaamaalhos"}, {"datetaken": "2010-02-03 17:57:45", "license": "2", "title": "MK_Maalhos4943", "text": "", "album_id": "72157623363102898", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4333675741_8701bc9776_o.jpg", "secret": "8f510c01f4", "media": "photo", "latitude": "0", "id": "4333675741", "tags": "island islander maldives presidencymaldives presidentsvisittonorthariatoll visittomaalhos presidentmeetsthepeopleofaamaalhos"}, {"datetaken": "2010-02-03 17:59:38", "license": "2", "title": "MK_Maalhos4949", "text": "", "album_id": "72157623363102898", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4334421070_60fb90730f_o.jpg", "secret": "0d012d0179", "media": "photo", "latitude": "0", "id": "4334421070", "tags": "island islander maldives presidencymaldives presidentsvisittonorthariatoll visittomaalhos presidentmeetsthepeopleofaamaalhos"}, {"datetaken": "2010-02-03 18:02:19", "license": "2", "title": "MK_Maalhos4970", "text": "", "album_id": "72157623363102898", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4334422054_c763f8cda4_o.jpg", "secret": "63df1fd151", "media": "photo", "latitude": "0", "id": "4334422054", "tags": "island islander maldives presidencymaldives presidentsvisittonorthariatoll visittomaalhos presidentmeetsthepeopleofaamaalhos"}, {"datetaken": "2010-02-03 18:02:40", "license": "2", "title": "MK_Maalhos4975", "text": "", "album_id": "72157623363102898", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4333679385_711f4eed65_o.jpg", "secret": "61892c7c50", "media": "photo", "latitude": "0", "id": "4333679385", "tags": "island islander maldives presidencymaldives presidentsvisittonorthariatoll visittomaalhos presidentmeetsthepeopleofaamaalhos"}, {"datetaken": "2010-02-03 18:04:58", "license": "2", "title": "MK_Maalhos4989", "text": "", "album_id": "72157623363102898", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4334424394_f1fd8aee62_o.jpg", "secret": "7aa763ebfe", "media": "photo", "latitude": "0", "id": "4334424394", "tags": "island islander maldives presidencymaldives presidentsvisittonorthariatoll visittomaalhos presidentmeetsthepeopleofaamaalhos"}, {"datetaken": "2010-02-03 18:08:10", "license": "2", "title": "MK_Maalhos4997", "text": "", "album_id": "72157623363102898", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2760/4334425954_d4accdfe85_o.jpg", "secret": "59e5f702f8", "media": "photo", "latitude": "0", "id": "4334425954", "tags": "island islander maldives presidencymaldives presidentsvisittonorthariatoll visittomaalhos presidentmeetsthepeopleofaamaalhos"}, {"datetaken": "2010-02-03 20:47:33", "license": "2", "title": "MK_Maalhos8396", "text": "", "album_id": "72157623363102898", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2757/4333672705_e4fd31a3ed_o.jpg", "secret": "7011247855", "media": "photo", "latitude": "0", "id": "4333672705", "tags": "island islander maldives presidencymaldives presidentsvisittonorthariatoll visittomaalhos presidentmeetsthepeopleofaamaalhos"}, {"datetaken": "2010-02-03 21:10:08", "license": "2", "title": "MK_Maalhos5047", "text": "", "album_id": "72157623363102898", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4333683979_aa9f361422_o.jpg", "secret": "c26a806951", "media": "photo", "latitude": "0", "id": "4333683979", "tags": "island islander maldives presidencymaldives presidentsvisittonorthariatoll visittomaalhos presidentmeetsthepeopleofaamaalhos"}, {"datetaken": "2010-02-03 21:11:46", "license": "2", "title": "MK_Maalhos8439", "text": "", "album_id": "72157623363102898", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2802/4334417666_3ba5ce2216_o.jpg", "secret": "09652de827", "media": "photo", "latitude": "0", "id": "4334417666", "tags": "island islander maldives presidencymaldives presidentsvisittonorthariatoll visittomaalhos presidentmeetsthepeopleofaamaalhos"}, {"datetaken": "2010-02-03 21:19:39", "license": "2", "title": "MK_Maalhos5079", "text": "", "album_id": "72157623363102898", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4334428360_6a32a57108_o.jpg", "secret": "e53aae636c", "media": "photo", "latitude": "0", "id": "4334428360", "tags": "island islander maldives presidencymaldives presidentsvisittonorthariatoll visittomaalhos presidentmeetsthepeopleofaamaalhos"}, {"datetaken": "2010-02-03 21:29:10", "license": "2", "title": "MK_Maalhos5101", "text": "", "album_id": "72157623363102898", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2735/4334429284_384e4d45f9_o.jpg", "secret": "ce5589a0c5", "media": "photo", "latitude": "0", "id": "4334429284", "tags": "island islander maldives presidencymaldives presidentsvisittonorthariatoll visittomaalhos presidentmeetsthepeopleofaamaalhos"}, {"datetaken": "2010-02-03 21:42:57", "license": "2", "title": "MK_Maalhos5127", "text": "", "album_id": "72157623363102898", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4333687315_6bb074bcb0_o.jpg", "secret": "1159cc2628", "media": "photo", "latitude": "0", "id": "4333687315", "tags": "island islander maldives presidencymaldives bondibaiy presidentsvisittonorthariatoll visittomaalhos presidentmeetsthepeopleofaamaalhos"}, {"datetaken": "2010-02-03 21:44:22", "license": "2", "title": "MK_Maalhos5133", "text": "", "album_id": "72157623363102898", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2734/4334431874_208afb7060_o.jpg", "secret": "a2d6f5b886", "media": "photo", "latitude": "0", "id": "4334431874", "tags": "island islander maldives presidencymaldives bondibaiy presidentsvisittonorthariatoll visittomaalhos presidentmeetsthepeopleofaamaalhos"}, {"datetaken": "2010-02-03 21:47:18", "license": "2", "title": "MK_Maalhos5143", "text": "", "album_id": "72157623363102898", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4334433206_0cda888c9d_o.jpg", "secret": "16696d379b", "media": "photo", "latitude": "0", "id": "4334433206", "tags": "island islander maldives presidencymaldives presidentsvisittonorthariatoll visittomaalhos presidentmeetsthepeopleofaamaalhos"}, {"datetaken": "2010-02-06 23:40:45", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4334910270_c0808dddaa_o.jpg", "secret": "2268f7701b", "media": "photo", "latitude": "0", "id": "4334910270", "tags": ""}, {"datetaken": "2010-02-06 23:40:49", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4334910376_591851fa33_o.jpg", "secret": "31eef30dde", "media": "photo", "latitude": "0", "id": "4334910376", "tags": ""}, {"datetaken": "2010-02-06 23:40:52", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4334910466_eda7c3d855_o.jpg", "secret": "9d702210ce", "media": "photo", "latitude": "0", "id": "4334910466", "tags": ""}, {"datetaken": "2010-02-06 23:40:55", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4334910546_1de5b5012a_o.jpg", "secret": "86d4d4e824", "media": "photo", "latitude": "0", "id": "4334910546", "tags": ""}, {"datetaken": "2010-02-06 23:41:00", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4334910654_6ae9316e01_o.jpg", "secret": "3bb01f42ab", "media": "photo", "latitude": "0", "id": "4334910654", "tags": ""}, {"datetaken": "2010-02-06 23:41:03", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4334168691_d54a49903b_o.jpg", "secret": "69fe2351d6", "media": "photo", "latitude": "0", "id": "4334168691", "tags": ""}, {"datetaken": "2010-02-06 23:41:07", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4334168783_41445bdaf8_o.jpg", "secret": "1baa5598ba", "media": "photo", "latitude": "0", "id": "4334168783", "tags": ""}, {"datetaken": "2010-02-06 23:41:10", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4334910916_b1cb02793f_o.jpg", "secret": "dc3497bf80", "media": "photo", "latitude": "0", "id": "4334910916", "tags": ""}, {"datetaken": "2010-02-06 23:41:11", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4334910968_246693a0c4_o.jpg", "secret": "fd8880fb29", "media": "photo", "latitude": "0", "id": "4334910968", "tags": ""}, {"datetaken": "2010-02-06 23:41:14", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4334911058_438d5baf99_o.jpg", "secret": "bbbaa10e9c", "media": "photo", "latitude": "0", "id": "4334911058", "tags": ""}, {"datetaken": "2010-02-06 23:41:18", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4334911128_5e37b66c1b_o.jpg", "secret": "6e248f0dc2", "media": "photo", "latitude": "0", "id": "4334911128", "tags": ""}, {"datetaken": "2010-02-06 23:41:21", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4334169163_832a6e1861_o.jpg", "secret": "ba7e0e451d", "media": "photo", "latitude": "0", "id": "4334169163", "tags": ""}, {"datetaken": "2010-02-06 23:41:24", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4334911288_02f5ba70b3_o.jpg", "secret": "d8fa15fe17", "media": "photo", "latitude": "0", "id": "4334911288", "tags": ""}, {"datetaken": "2010-02-06 23:41:27", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4334169335_8939d64c4e_o.jpg", "secret": "e0673a4f74", "media": "photo", "latitude": "0", "id": "4334169335", "tags": ""}, {"datetaken": "2010-02-06 23:41:30", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4334169439_5f423b6f2a_o.jpg", "secret": "2ecd11588b", "media": "photo", "latitude": "0", "id": "4334169439", "tags": ""}, {"datetaken": "2010-02-06 23:41:34", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4334169545_acacb60bd6_o.jpg", "secret": "065fa45fa7", "media": "photo", "latitude": "0", "id": "4334169545", "tags": ""}, {"datetaken": "2010-02-06 23:41:37", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2739/4334169637_f65e64742a_o.jpg", "secret": "6a02c274dc", "media": "photo", "latitude": "0", "id": "4334169637", "tags": ""}, {"datetaken": "2010-02-06 23:41:40", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4334169739_637d7b022c_o.jpg", "secret": "ff12ba2a12", "media": "photo", "latitude": "0", "id": "4334169739", "tags": ""}, {"datetaken": "2010-02-06 23:41:44", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4334169833_43dd8cd8a5_o.jpg", "secret": "23ea099d9e", "media": "photo", "latitude": "0", "id": "4334169833", "tags": ""}, {"datetaken": "2010-02-06 23:41:47", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4334911968_a4c274ef44_o.jpg", "secret": "3117fa7a35", "media": "photo", "latitude": "0", "id": "4334911968", "tags": ""}, {"datetaken": "2010-02-06 23:41:50", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2767/4334912068_825f8fa586_o.jpg", "secret": "987aa9ca0b", "media": "photo", "latitude": "0", "id": "4334912068", "tags": ""}, {"datetaken": "2010-02-06 23:41:54", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4334170157_b83e49b027_o.jpg", "secret": "fc8d55de86", "media": "photo", "latitude": "0", "id": "4334170157", "tags": ""}, {"datetaken": "2010-02-06 23:41:57", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4334170265_37a89a28ce_o.jpg", "secret": "ce7346450c", "media": "photo", "latitude": "0", "id": "4334170265", "tags": ""}, {"datetaken": "2010-02-06 23:41:58", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4334170305_13020cd914_o.jpg", "secret": "77a22d603d", "media": "photo", "latitude": "0", "id": "4334170305", "tags": ""}, {"datetaken": "2010-02-06 23:42:02", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4334170381_38754e0095_o.jpg", "secret": "3d331a5f2e", "media": "photo", "latitude": "0", "id": "4334170381", "tags": ""}, {"datetaken": "2010-02-06 23:42:05", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4334912518_7087a12889_o.jpg", "secret": "ec82003b5e", "media": "photo", "latitude": "0", "id": "4334912518", "tags": ""}, {"datetaken": "2010-02-06 23:42:09", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4334170609_ac9e2e17ec_o.jpg", "secret": "1d51a670de", "media": "photo", "latitude": "0", "id": "4334170609", "tags": ""}, {"datetaken": "2010-02-06 23:42:12", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2685/4334170715_718eb9d65c_o.jpg", "secret": "f4e82d8a98", "media": "photo", "latitude": "0", "id": "4334170715", "tags": ""}, {"datetaken": "2010-02-06 23:42:15", "license": "1", "title": "Akihabara Photo Walk", "text": "", "album_id": "72157623364325932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4334912860_03a934fd93_o.jpg", "secret": "5e3453c5e1", "media": "photo", "latitude": "0", "id": "4334912860", "tags": ""}, {"datetaken": "2010-02-05 10:58:20", "license": "5", "title": "Cardacani", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4334509464_ffb9e5892f_o.jpg", "secret": "91c0a5f018", "media": "photo", "latitude": "0", "id": "4334509464", "tags": ""}, {"datetaken": "2010-02-05 10:58:24", "license": "5", "title": "Cardacani", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4334509846_5ac84a4651_o.jpg", "secret": "65a547dcee", "media": "photo", "latitude": "0", "id": "4334509846", "tags": ""}, {"datetaken": "2010-02-05 10:58:28", "license": "5", "title": "Cardacani", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4333766899_e8305d58ed_o.jpg", "secret": "f8cf2c9dd5", "media": "photo", "latitude": "0", "id": "4333766899", "tags": ""}, {"datetaken": "2010-02-05 10:58:32", "license": "5", "title": "Cardacani", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4333767979_85c6f45272_o.jpg", "secret": "fd26a1b54f", "media": "photo", "latitude": "0", "id": "4333767979", "tags": ""}, {"datetaken": "2010-02-05 13:56:00", "license": "5", "title": "Cardacani", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2751/4334511048_e5df837177_o.jpg", "secret": "aecb7289ce", "media": "photo", "latitude": "0", "id": "4334511048", "tags": ""}, {"datetaken": "2010-02-05 13:56:08", "license": "5", "title": "Cardacani", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2745/4334511108_39db5869e5_o.jpg", "secret": "4608901702", "media": "photo", "latitude": "0", "id": "4334511108", "tags": ""}, {"datetaken": "2010-02-05 13:56:12", "license": "5", "title": "Cardacani", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2754/4333768295_402e8e2378_o.jpg", "secret": "c1675a0eb8", "media": "photo", "latitude": "0", "id": "4333768295", "tags": ""}, {"datetaken": "2010-02-05 13:56:15", "license": "5", "title": "Cardacani", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4333768349_869a525e3f_o.jpg", "secret": "b4efe89f8d", "media": "photo", "latitude": "0", "id": "4333768349", "tags": ""}, {"datetaken": "2010-02-05 14:00:00", "license": "5", "title": "Cardacani", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4333768467_951e889819_o.jpg", "secret": "7cbfb03ca5", "media": "photo", "latitude": "0", "id": "4333768467", "tags": ""}, {"datetaken": "2010-02-05 14:00:07", "license": "5", "title": "Cardacani", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4334511666_0bd247eb49_o.jpg", "secret": "ecf03022a7", "media": "photo", "latitude": "0", "id": "4334511666", "tags": ""}, {"datetaken": "2010-02-05 14:00:23", "license": "5", "title": "Cardacani", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2713/4333768731_d38c392bf4_o.jpg", "secret": "c0a59b9dd8", "media": "photo", "latitude": "0", "id": "4333768731", "tags": ""}, {"datetaken": "2010-02-05 14:00:27", "license": "5", "title": "Cardacani", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4333768835_f270f42d8e_o.jpg", "secret": "6d040ea0c2", "media": "photo", "latitude": "0", "id": "4333768835", "tags": ""}, {"datetaken": "2010-02-05 17:15:57", "license": "5", "title": "Banja Luka Visit Feb 2010", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4334511948_9aca1d077f_o.jpg", "secret": "a998d5c6a1", "media": "photo", "latitude": "0", "id": "4334511948", "tags": ""}, {"datetaken": "2010-02-05 17:25:40", "license": "5", "title": "Kastel", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4334512076_e325a148d4_o.jpg", "secret": "3c94259930", "media": "photo", "latitude": "0", "id": "4334512076", "tags": ""}, {"datetaken": "2010-02-05 17:25:45", "license": "5", "title": "Banja Luka Visit Feb 2010", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4333769073_99daa0c944_o.jpg", "secret": "ba67de51ab", "media": "photo", "latitude": "0", "id": "4333769073", "tags": ""}, {"datetaken": "2010-02-05 17:25:50", "license": "5", "title": "Market", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2695/4334512284_9e1d864bf9_o.jpg", "secret": "d5df3d3526", "media": "photo", "latitude": "0", "id": "4334512284", "tags": ""}, {"datetaken": "2010-02-05 17:25:57", "license": "5", "title": "Market", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2677/4334512400_4a11684e07_o.jpg", "secret": "b7409af531", "media": "photo", "latitude": "0", "id": "4334512400", "tags": ""}, {"datetaken": "2010-02-05 17:27:33", "license": "5", "title": "BiH is Safe - EUFOR", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4334512474_bdcaa5b7a9_o.jpg", "secret": "9d19daeed1", "media": "photo", "latitude": "0", "id": "4334512474", "tags": ""}, {"datetaken": "2010-02-05 17:27:44", "license": "5", "title": "BiH is Safe - EUFOR", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4333769465_30a083f905_o.jpg", "secret": "087318ee22", "media": "photo", "latitude": "0", "id": "4333769465", "tags": ""}, {"datetaken": "2010-02-05 17:29:30", "license": "5", "title": "DFK", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4334512672_ca05bbff09_o.jpg", "secret": "3b91bc9d98", "media": "photo", "latitude": "0", "id": "4334512672", "tags": ""}, {"datetaken": "2010-02-05 17:30:38", "license": "5", "title": "Mr Bean in Serbian :)", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4334512878_27b8908c5c_o.jpg", "secret": "573f16bbf1", "media": "photo", "latitude": "0", "id": "4334512878", "tags": ""}, {"datetaken": "2010-02-05 17:30:40", "license": "5", "title": "Mr Bean in Serbian :)", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4333769801_4d1d107fb0_o.jpg", "secret": "2b27c9ae2b", "media": "photo", "latitude": "0", "id": "4333769801", "tags": ""}, {"datetaken": "2010-02-05 17:30:46", "license": "5", "title": "Mr Bean in Serbian :)", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4333769875_4ed7b4cc90_o.jpg", "secret": "3a81cc8693", "media": "photo", "latitude": "0", "id": "4333769875", "tags": ""}, {"datetaken": "2010-02-05 17:31:25", "license": "5", "title": "Mr Bean in Serbian :)", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4333769933_ddf8a0eca8_o.jpg", "secret": "78a5654c45", "media": "photo", "latitude": "0", "id": "4333769933", "tags": ""}, {"datetaken": "2010-02-05 17:33:13", "license": "5", "title": "Banja Luka Visit Feb 2010", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4333770025_3aa93831bd_o.jpg", "secret": "cedf0684ae", "media": "photo", "latitude": "0", "id": "4333770025", "tags": ""}, {"datetaken": "2010-02-05 17:33:52", "license": "5", "title": "Banja Luka Visit Feb 2010", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4334513302_cb42afba90_o.jpg", "secret": "8faffc4919", "media": "photo", "latitude": "0", "id": "4334513302", "tags": ""}, {"datetaken": "2010-02-05 17:33:57", "license": "5", "title": "Banja Luka Visit Feb 2010", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4334513404_ff2edeb842_o.jpg", "secret": "5b0e08899b", "media": "photo", "latitude": "0", "id": "4334513404", "tags": ""}, {"datetaken": "2010-02-05 17:34:37", "license": "5", "title": "Obelix", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4333770275_83ce7279a3_o.jpg", "secret": "8c40126e59", "media": "photo", "latitude": "0", "id": "4333770275", "tags": ""}, {"datetaken": "2010-02-05 17:36:47", "license": "5", "title": "Kastel", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4333770357_eb0b8dd246_o.jpg", "secret": "a7cd21d6db", "media": "photo", "latitude": "0", "id": "4333770357", "tags": ""}, {"datetaken": "2010-02-05 17:36:51", "license": "5", "title": "Kastel", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4333770447_cb9633a34f_o.jpg", "secret": "e84c5a386a", "media": "photo", "latitude": "0", "id": "4333770447", "tags": ""}, {"datetaken": "2010-02-05 17:37:31", "license": "5", "title": "Kastel", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4334513768_968f08be98_o.jpg", "secret": "7df0c2ea07", "media": "photo", "latitude": "0", "id": "4334513768", "tags": ""}, {"datetaken": "2010-02-05 17:37:34", "license": "5", "title": "Kastel", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4334513850_108ab1a69d_o.jpg", "secret": "d239284f76", "media": "photo", "latitude": "0", "id": "4334513850", "tags": ""}, {"datetaken": "2010-02-05 17:37:48", "license": "5", "title": "Kastel", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4333770673_b7ebf757ce_o.jpg", "secret": "469fc6ebf0", "media": "photo", "latitude": "0", "id": "4333770673", "tags": ""}, {"datetaken": "2010-02-05 17:39:41", "license": "5", "title": "Kastel", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4334514362_8f9d6c6d33_o.jpg", "secret": "e1700bf24e", "media": "photo", "latitude": "0", "id": "4334514362", "tags": ""}, {"datetaken": "2010-02-05 17:39:45", "license": "5", "title": "Kastel", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4333771139_ca8a56804e_o.jpg", "secret": "d52cf48386", "media": "photo", "latitude": "0", "id": "4333771139", "tags": ""}, {"datetaken": "2010-02-05 17:39:49", "license": "5", "title": "Kastel", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4333771215_87edf89b2d_o.jpg", "secret": "005ee423ef", "media": "photo", "latitude": "0", "id": "4333771215", "tags": ""}, {"datetaken": "2010-02-05 17:40:51", "license": "5", "title": "Kastel", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4333771299_c267a462c5_o.jpg", "secret": "6b571b1c0a", "media": "photo", "latitude": "0", "id": "4333771299", "tags": ""}, {"datetaken": "2010-02-05 17:40:58", "license": "5", "title": "Kastel", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4334514718_21077775f4_o.jpg", "secret": "b9b7ce962b", "media": "photo", "latitude": "0", "id": "4334514718", "tags": ""}, {"datetaken": "2010-02-05 17:41:13", "license": "5", "title": "Kastel", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4333771483_e6705b2a2c_o.jpg", "secret": "ddb0f25ca5", "media": "photo", "latitude": "0", "id": "4333771483", "tags": ""}, {"datetaken": "2010-02-05 17:42:08", "license": "5", "title": "Kastel", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4334514960_05fef6acaa_o.jpg", "secret": "0f38bda03d", "media": "photo", "latitude": "0", "id": "4334514960", "tags": ""}, {"datetaken": "2010-02-05 17:42:12", "license": "5", "title": "Kastel", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2725/4333771631_0c66f979bd_o.jpg", "secret": "14584b6477", "media": "photo", "latitude": "0", "id": "4333771631", "tags": ""}, {"datetaken": "2010-02-05 17:45:25", "license": "5", "title": "Kastel", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4334515120_558f14d799_o.jpg", "secret": "aeb546e894", "media": "photo", "latitude": "0", "id": "4334515120", "tags": ""}, {"datetaken": "2010-02-05 22:12:24", "license": "5", "title": "\"Kruna\"", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4333771819_c614cbcb7f_o.jpg", "secret": "3684b3fcba", "media": "photo", "latitude": "0", "id": "4333771819", "tags": ""}, {"datetaken": "2010-02-05 22:12:32", "license": "5", "title": "\"Kruna\"", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2755/4333771871_ebf962fcb2_o.jpg", "secret": "6ce4bacbc4", "media": "photo", "latitude": "0", "id": "4333771871", "tags": ""}, {"datetaken": "2010-02-05 22:12:37", "license": "5", "title": "\"Kruna\"", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4333771977_d385ed852d_o.jpg", "secret": "f87fa275c9", "media": "photo", "latitude": "0", "id": "4333771977", "tags": ""}, {"datetaken": "2010-02-05 22:12:46", "license": "5", "title": "\"Kruna\"", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2804/4334515360_4d3e255242_o.jpg", "secret": "d943d00152", "media": "photo", "latitude": "0", "id": "4334515360", "tags": ""}, {"datetaken": "2010-02-05 22:28:39", "license": "5", "title": "City Pub Banja Luka", "text": "", "album_id": "72157623238708241", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4334515420_12f9c23390_o.jpg", "secret": "eff484d0dc", "media": "photo", "latitude": "0", "id": "4334515420", "tags": ""}, {"datetaken": "2010-03-05 19:20:03", "license": "2", "title": "IMG_0899", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4410732463_e19310a0e0_o.jpg", "secret": "9545cc7ed5", "media": "photo", "latitude": "0", "id": "4410732463", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 19:20:34", "license": "2", "title": "IMG_0900", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4411512804_197c9da494_o.jpg", "secret": "361b187fe7", "media": "photo", "latitude": "0", "id": "4411512804", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:00:24", "license": "2", "title": "IMG_0902", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4411522596_b1e2e997bd_o.jpg", "secret": "51177eb9d4", "media": "photo", "latitude": "0", "id": "4411522596", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:00:49", "license": "2", "title": "IMG_0903", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2794/4410765023_3f8f88ae4b_o.jpg", "secret": "cfe087d657", "media": "photo", "latitude": "0", "id": "4410765023", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:00:55", "license": "2", "title": "IMG_0904", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4410774101_379cbd6612_o.jpg", "secret": "95df6ab44a", "media": "photo", "latitude": "0", "id": "4410774101", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:01:04", "license": "2", "title": "IMG_0905", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2784/4411542434_0fd81b1ce6_o.jpg", "secret": "3fae84b31d", "media": "photo", "latitude": "0", "id": "4411542434", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:01:29", "license": "2", "title": "IMG_0907", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4410776317_cebcd51890_o.jpg", "secret": "45884c17d2", "media": "photo", "latitude": "0", "id": "4410776317", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:01:40", "license": "2", "title": "IMG_0908", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2630/4410788175_5d29c4f05a_o.jpg", "secret": "f25373b9bb", "media": "photo", "latitude": "0", "id": "4410788175", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:07:11", "license": "2", "title": "IMG_0909", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4411557748_3101b73f1f_o.jpg", "secret": "89c39f46df", "media": "photo", "latitude": "0", "id": "4411557748", "tags": "other flickr events facebook otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:39:59", "license": "2", "title": "IMG_0912", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4410800473_40f8390a24_o.jpg", "secret": "59139b75da", "media": "photo", "latitude": "0", "id": "4410800473", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:40:03", "license": "2", "title": "IMG_0913", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4411580178_aa8a3202f1_o.jpg", "secret": "a5dbe55db3", "media": "photo", "latitude": "0", "id": "4411580178", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:40:13", "license": "2", "title": "IMG_0914", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4411592614_491cd83227_o.jpg", "secret": "85636d8b03", "media": "photo", "latitude": "0", "id": "4411592614", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:40:21", "license": "2", "title": "IMG_0915", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4410831013_602043e90c_o.jpg", "secret": "ec968783bb", "media": "photo", "latitude": "0", "id": "4410831013", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:40:29", "license": "2", "title": "IMG_0916", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4411601856_9c505285e2_o.jpg", "secret": "4d9c4f9ced", "media": "photo", "latitude": "0", "id": "4411601856", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:40:40", "license": "2", "title": "IMG_0917", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/4410837883_f39fedb781_o.jpg", "secret": "9a04b41b77", "media": "photo", "latitude": "0", "id": "4410837883", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:41:03", "license": "2", "title": "IMG_0918", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4410844323_67a6697323_o.jpg", "secret": "a7b88ef44c", "media": "photo", "latitude": "0", "id": "4410844323", "tags": "other flickr events facebook otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:41:14", "license": "2", "title": "IMG_0919", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4410847945_5d3485bdfc_o.jpg", "secret": "c4765427b5", "media": "photo", "latitude": "0", "id": "4410847945", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:41:22", "license": "2", "title": "IMG_0920", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4411623702_fac754c2a2_o.jpg", "secret": "5db055150c", "media": "photo", "latitude": "0", "id": "4411623702", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:41:36", "license": "2", "title": "IMG_0921", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2792/4411630824_8a53cda8e6_o.jpg", "secret": "9eb97b6a2f", "media": "photo", "latitude": "0", "id": "4411630824", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:41:42", "license": "2", "title": "IMG_0922", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4410871625_c3114ae2cd_o.jpg", "secret": "825ac6f007", "media": "photo", "latitude": "0", "id": "4410871625", "tags": "other flickr events facebook otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:41:49", "license": "2", "title": "IMG_0923", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4411641712_22f4253095_o.jpg", "secret": "b09766df8a", "media": "photo", "latitude": "0", "id": "4411641712", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:42:01", "license": "2", "title": "IMG_0924", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4410877671_459dcb3804_o.jpg", "secret": "2b13832515", "media": "photo", "latitude": "0", "id": "4410877671", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:42:06", "license": "2", "title": "IMG_0925", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4411646952_eaab434bda_o.jpg", "secret": "e62161b754", "media": "photo", "latitude": "0", "id": "4411646952", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:42:12", "license": "2", "title": "IMG_0926", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4410882573_56cb37ec46_o.jpg", "secret": "8df19b65a6", "media": "photo", "latitude": "0", "id": "4410882573", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:42:23", "license": "2", "title": "IMG_0927", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4411654228_dc0d50020c_o.jpg", "secret": "8d8957e71e", "media": "photo", "latitude": "0", "id": "4411654228", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:42:36", "license": "2", "title": "IMG_0928", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4411657406_958d6544c6_o.jpg", "secret": "b685587f98", "media": "photo", "latitude": "0", "id": "4411657406", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:42:47", "license": "2", "title": "IMG_0929", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2802/4411660264_28e068acd8_o.jpg", "secret": "a0bc43daec", "media": "photo", "latitude": "0", "id": "4411660264", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:42:54", "license": "2", "title": "IMG_0930", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4410893563_25a4daf6a1_o.jpg", "secret": "754ae69b8f", "media": "photo", "latitude": "0", "id": "4410893563", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:43:02", "license": "2", "title": "IMG_0931", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2712/4411664042_9cae65f7dd_o.jpg", "secret": "ac7e4cb524", "media": "photo", "latitude": "0", "id": "4411664042", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:43:14", "license": "2", "title": "IMG_0932", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4411667262_98eca308c4_o.jpg", "secret": "b718667e1c", "media": "photo", "latitude": "0", "id": "4411667262", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:43:25", "license": "2", "title": "IMG_0933", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2789/4410902779_a64baa2873_o.jpg", "secret": "d79f547f78", "media": "photo", "latitude": "0", "id": "4410902779", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:43:33", "license": "2", "title": "IMG_0934", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4410905583_9bca9cabc1_o.jpg", "secret": "6c59586dcd", "media": "photo", "latitude": "0", "id": "4410905583", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:44:07", "license": "2", "title": "IMG_0935", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2736/4410906471_88454e901d_o.jpg", "secret": "e87bca0e9f", "media": "photo", "latitude": "0", "id": "4410906471", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:44:20", "license": "2", "title": "IMG_0936", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4410909583_12e4238989_o.jpg", "secret": "1942dd78e5", "media": "photo", "latitude": "0", "id": "4410909583", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:44:42", "license": "2", "title": "IMG_0937", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4411680136_5f719a9f42_o.jpg", "secret": "32a517c91c", "media": "photo", "latitude": "0", "id": "4411680136", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:44:50", "license": "2", "title": "IMG_0938", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4410915745_0a79c00036_o.jpg", "secret": "79e8f31a33", "media": "photo", "latitude": "0", "id": "4410915745", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:44:55", "license": "2", "title": "IMG_0939", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4411684246_c396de5ed1_o.jpg", "secret": "ab501a5773", "media": "photo", "latitude": "0", "id": "4411684246", "tags": "other flickr events facebook otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:45:16", "license": "2", "title": "IMG_0941", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4410918071_ba0959f85e_o.jpg", "secret": "aeb04b3093", "media": "photo", "latitude": "0", "id": "4410918071", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:45:29", "license": "2", "title": "IMG_0942", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4410920885_32c41f3005_o.jpg", "secret": "8be9d0a752", "media": "photo", "latitude": "0", "id": "4410920885", "tags": "other flickr events facebook otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:45:41", "license": "2", "title": "IMG_0943", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4410923961_7ccb468738_o.jpg", "secret": "9872696cd8", "media": "photo", "latitude": "0", "id": "4410923961", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:45:54", "license": "2", "title": "IMG_0944", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4410926671_4afc788fe9_o.jpg", "secret": "42658652cf", "media": "photo", "latitude": "0", "id": "4410926671", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:46:09", "license": "2", "title": "IMG_0945", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4411697162_138c19a238_o.jpg", "secret": "8d805ab235", "media": "photo", "latitude": "0", "id": "4411697162", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:46:23", "license": "2", "title": "IMG_0946", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4411700340_2d6f99c607_o.jpg", "secret": "bbdff7b9dd", "media": "photo", "latitude": "0", "id": "4411700340", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:46:42", "license": "2", "title": "IMG_0947", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4411703518_a542bc7724_o.jpg", "secret": "d036b99e01", "media": "photo", "latitude": "0", "id": "4411703518", "tags": "other flickr events facebook otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:46:56", "license": "2", "title": "IMG_0948", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2763/4410939583_2856c85c0b_o.jpg", "secret": "bbba6dacb9", "media": "photo", "latitude": "0", "id": "4410939583", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:47:11", "license": "2", "title": "IMG_0949", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2762/4410942795_f2fa466719_o.jpg", "secret": "8680222c3c", "media": "photo", "latitude": "0", "id": "4410942795", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:47:26", "license": "2", "title": "IMG_0950", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4410946275_193562383a_o.jpg", "secret": "e60a28b929", "media": "photo", "latitude": "0", "id": "4410946275", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:47:40", "license": "2", "title": "IMG_0951", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2763/4410950063_f9fe8857d7_o.jpg", "secret": "9b100d7bb4", "media": "photo", "latitude": "0", "id": "4410950063", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2010-03-05 20:48:00", "license": "2", "title": "IMG_0952", "text": "", "album_id": "72157623441558787", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4411720288_096e9b4108_o.jpg", "secret": "b0051dd77e", "media": "photo", "latitude": "0", "id": "4411720288", "tags": "other flickr events otherflickr 2010prospectivegraduatestudentvisitingdinner events2010prospectivegraduatestudentvisitingdinner"}, {"datetaken": "2009-12-31 14:17:43", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2774/4301524120_d4cd729491_o.jpg", "secret": "16df534e44", "media": "photo", "latitude": "-8.290008", "id": "4301524120", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:18:00", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2690/4301535496_09c38d37ff_o.jpg", "secret": "702d1db897", "media": "photo", "latitude": "-8.290008", "id": "4301535496", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:18:06", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm5.staticflickr.com/4022/4300802025_2171e5033d_o.jpg", "secret": "34f10a3121", "media": "photo", "latitude": "-8.290008", "id": "4300802025", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:18:39", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2735/4300809697_35030b947a_o.jpg", "secret": "cf0b405fed", "media": "photo", "latitude": "-8.290008", "id": "4300809697", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:18:47", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2688/4300816205_8d9243e001_o.jpg", "secret": "16be197894", "media": "photo", "latitude": "-8.290008", "id": "4300816205", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:18:56", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2774/4336791569_80d4520f21_o.jpg", "secret": "b9d0d88b42", "media": "photo", "latitude": "-8.290008", "id": "4336791569", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:20:22", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2758/4337539882_ccbf92ce7e_o.jpg", "secret": "91cb0a8431", "media": "photo", "latitude": "-8.290008", "id": "4337539882", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:20:28", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2549/4337542680_a7fd7cea63_o.jpg", "secret": "98630f0b58", "media": "photo", "latitude": "-8.290008", "id": "4337542680", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:21:25", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm5.staticflickr.com/4027/4372791374_156fa1cc26_o.jpg", "secret": "2a86c61787", "media": "photo", "latitude": "-8.290008", "id": "4372791374", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:23:38", "license": "1", "title": "Lampi\u00e3o e Maria Bonita", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2603/4372792088_16556bb5e4_o.jpg", "secret": "88947c3efa", "media": "photo", "latitude": "-8.290008", "id": "4372792088", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:24:56", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2686/4372040963_103e9cbf7b_o.jpg", "secret": "a966ceb286", "media": "photo", "latitude": "-8.290008", "id": "4372040963", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:25:13", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm5.staticflickr.com/4015/4372041649_7c35fd93c4_o.jpg", "secret": "7a8dafbf8f", "media": "photo", "latitude": "-8.290008", "id": "4372041649", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:25:52", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2766/4437341471_bd5b1bff04_o.jpg", "secret": "078144bc77", "media": "photo", "latitude": "-8.290008", "id": "4437341471", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:26:14", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm5.staticflickr.com/4009/4437341975_3d49cfc897_o.jpg", "secret": "26aacc6660", "media": "photo", "latitude": "-8.290008", "id": "4437341975", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:26:36", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2684/4438118882_e25d4a9fd6_o.jpg", "secret": "e00743a385", "media": "photo", "latitude": "-8.290008", "id": "4438118882", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:27:40", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2785/4437343191_27d7b4eb95_o.jpg", "secret": "2c8037b1cc", "media": "photo", "latitude": "-8.290008", "id": "4437343191", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:29:22", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm5.staticflickr.com/4060/4438120276_eb69e956a9_o.jpg", "secret": "cfff17a4e2", "media": "photo", "latitude": "-8.290008", "id": "4438120276", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:31:15", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm5.staticflickr.com/4072/4456449205_73bf232cab_o.jpg", "secret": "b8a98a64fb", "media": "photo", "latitude": "-8.290008", "id": "4456449205", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:31:47", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2796/4456450523_6410e4d4ce_o.jpg", "secret": "5f28b549a5", "media": "photo", "latitude": "-8.290008", "id": "4456450523", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:34:14", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm5.staticflickr.com/4020/4456451519_6e20fb3e2b_o.jpg", "secret": "0bd6f0ba58", "media": "photo", "latitude": "-8.290008", "id": "4456451519", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:34:37", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2738/4457231172_3e00899d18_o.jpg", "secret": "cd40330157", "media": "photo", "latitude": "-8.290008", "id": "4457231172", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:35:32", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm5.staticflickr.com/4006/4465889388_615269b7de_o.jpg", "secret": "557c25b7e3", "media": "photo", "latitude": "-8.290008", "id": "4465889388", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:36:06", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm5.staticflickr.com/4055/4465891280_507213d440_o.jpg", "secret": "7cfd55dcd7", "media": "photo", "latitude": "-8.290008", "id": "4465891280", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:38:59", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm5.staticflickr.com/4015/4499838942_acfde6233f_o.jpg", "secret": "c7f8e6a6b9", "media": "photo", "latitude": "-8.290008", "id": "4499838942", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:40:49", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm5.staticflickr.com/4030/4499204431_a7abc16fb9_o.jpg", "secret": "b9b89bd5c1", "media": "photo", "latitude": "-8.290008", "id": "4499204431", "tags": "brazil southamerica brasil handicraft flickr markets artesanato objects places objetos lugares caruaru pe pernambuco export sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:41:09", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2697/4500651035_38653e132a_o.jpg", "secret": "d9259fb32c", "media": "photo", "latitude": "-8.290008", "id": "4500651035", "tags": "brazil southamerica brasil handicraft flickr markets artesanato objects places objetos lugares caruaru pe pernambuco export sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:41:29", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm5.staticflickr.com/4004/4500651783_58015b9b4d_o.jpg", "secret": "a162b716b7", "media": "photo", "latitude": "-8.290008", "id": "4500651783", "tags": "brazil southamerica brasil handicraft flickr markets artesanato objects places objetos lugares caruaru pe pernambuco export sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:41:59", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm5.staticflickr.com/4007/4502579248_e5a5e0c4e6_o.jpg", "secret": "d086847da9", "media": "photo", "latitude": "-8.290008", "id": "4502579248", "tags": "brazil southamerica brasil handicraft flickr markets artesanato objects places objetos lugares caruaru pe pernambuco export sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:42:51", "license": "1", "title": "Luiz Gonzaga", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm5.staticflickr.com/4003/4502579916_64cb2ef079_o.jpg", "secret": "40f0c921bd", "media": "photo", "latitude": "-8.290008", "id": "4502579916", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:42:57", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2797/4517111511_97b1aa984c_o.jpg", "secret": "1d721d2912", "media": "photo", "latitude": "-8.290008", "id": "4517111511", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:44:12", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm5.staticflickr.com/4044/4517745732_72e41bb12a_o.jpg", "secret": "76df010b41", "media": "photo", "latitude": "-8.290008", "id": "4517745732", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:44:52", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2691/4521149182_db02f4c733_o.jpg", "secret": "b5b3e6cdfa", "media": "photo", "latitude": "-8.290008", "id": "4521149182", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:47:08", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm3.staticflickr.com/2773/4520514393_f296eea154_o.jpg", "secret": "24b2a8a086", "media": "photo", "latitude": "-8.290008", "id": "4520514393", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco export sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2009-12-31 14:47:41", "license": "1", "title": "Feira de Caruaru", "text": "", "album_id": "72157623151132703", "longitude": "-35.972006", "url_o": "https://farm5.staticflickr.com/4070/4521153474_62dfaa0e74_o.jpg", "secret": "a9fb5550f0", "media": "photo", "latitude": "-8.290008", "id": "4521153474", "tags": "brazil southamerica brasil handicraft markets artesanato objects places objetos lugares caruaru pe pernambuco sudamerica am\u00e9ricadosul am\u00e9riquedusud ambientes feiradecaruaru feiraslivres mercadosp\u00fablicos"}, {"datetaken": "2006-10-16 07:37:01", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2726/4417473846_fe4370ec33_o.jpg", "secret": "7133793c24", "media": "photo", "latitude": "30.610717", "id": "4417473846", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:37:12", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2769/4416708965_67aba5f6e5_o.jpg", "secret": "fbf1e1a967", "media": "photo", "latitude": "30.610717", "id": "4416708965", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:37:28", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2795/4416709007_9a536e488a_o.jpg", "secret": "52da48dd59", "media": "photo", "latitude": "30.610717", "id": "4416709007", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:37:32", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2732/4416709027_fcfa110161_o.jpg", "secret": "64082cb2be", "media": "photo", "latitude": "30.610717", "id": "4416709027", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:37:53", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4032/4416709053_ae93de68fa_o.jpg", "secret": "5dfda8f7d5", "media": "photo", "latitude": "30.610717", "id": "4416709053", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:38:37", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4018/4416709071_295e5f5565_o.jpg", "secret": "889042ca0d", "media": "photo", "latitude": "30.610717", "id": "4416709071", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:38:51", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4013/4416709093_136bac1f5c_o.jpg", "secret": "ba6ef1b229", "media": "photo", "latitude": "30.610717", "id": "4416709093", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:39:27", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4023/4417474012_af3b9206bc_o.jpg", "secret": "ecaf56d56c", "media": "photo", "latitude": "30.610717", "id": "4417474012", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:40:08", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4047/4416709131_9fac7e9c4c_o.jpg", "secret": "e4c7878cbc", "media": "photo", "latitude": "30.610717", "id": "4416709131", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:40:16", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4043/4416709139_ae3a2399b0_o.jpg", "secret": "9fe0cc6103", "media": "photo", "latitude": "30.610717", "id": "4416709139", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:40:21", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4069/4416709157_48a8f17d69_o.jpg", "secret": "12bbe92937", "media": "photo", "latitude": "30.610717", "id": "4416709157", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:41:28", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2716/4416709173_da51bb9d62_o.jpg", "secret": "360e3dff10", "media": "photo", "latitude": "30.610717", "id": "4416709173", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:41:44", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2761/4416709191_4ddb99b726_o.jpg", "secret": "2dae4293dc", "media": "photo", "latitude": "30.610717", "id": "4416709191", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:41:56", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4032/4417474116_3093afd959_o.jpg", "secret": "15e5ebe27f", "media": "photo", "latitude": "30.610717", "id": "4417474116", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:42:23", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4007/4417474132_a790aeda3f_o.jpg", "secret": "cbeed2263f", "media": "photo", "latitude": "30.610717", "id": "4417474132", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:43:36", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2749/4416709231_b54051e7d5_o.jpg", "secret": "6a46063fb5", "media": "photo", "latitude": "30.610717", "id": "4416709231", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:43:43", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4026/4416709241_287117e865_o.jpg", "secret": "1012c7029e", "media": "photo", "latitude": "30.610717", "id": "4416709241", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:45:32", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4005/4416709269_3290516446_o.jpg", "secret": "7250c0e17e", "media": "photo", "latitude": "30.610717", "id": "4416709269", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:45:42", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2800/4416709287_ef0ff90c54_o.jpg", "secret": "39ba063aaa", "media": "photo", "latitude": "30.610717", "id": "4416709287", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:46:09", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4035/4417474232_d4585f7580_o.jpg", "secret": "eaee7f39c5", "media": "photo", "latitude": "30.610717", "id": "4417474232", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:47:51", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2744/4417474250_2a279d1d5b_o.jpg", "secret": "bbeda9fd05", "media": "photo", "latitude": "30.610717", "id": "4417474250", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:47:57", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4063/4417474266_c1718e57ab_o.jpg", "secret": "3d85b02b68", "media": "photo", "latitude": "30.610717", "id": "4417474266", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:49:09", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4005/4417474294_9e29596e6e_o.jpg", "secret": "9fc4b28e0b", "media": "photo", "latitude": "30.610717", "id": "4417474294", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:50:00", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4040/4417474310_aa037ed79a_o.jpg", "secret": "4253391898", "media": "photo", "latitude": "30.610717", "id": "4417474310", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 07:51:28", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4006/4417474324_1a6b67ac29_o.jpg", "secret": "dff4d8e4f0", "media": "photo", "latitude": "30.610717", "id": "4417474324", "tags": "classroom lecture executive texasam tamu maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 08:08:15", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4061/4416709365_355723eb7f_o.jpg", "secret": "42883558a9", "media": "photo", "latitude": "30.610717", "id": "4416709365", "tags": "executive texasam tamu aggies maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 08:08:21", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4041/4416709371_442fbdce26_o.jpg", "secret": "99186415cb", "media": "photo", "latitude": "30.610717", "id": "4416709371", "tags": "executive texasam tamu aggies maysbusinessschool alanroberts"}, {"datetaken": "2006-10-16 08:08:26", "license": "3", "title": "Alan Roberts visits Mays", "text": "", "album_id": "72157623454926785", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4042/4417474354_216a092f16_o.jpg", "secret": "b4792c40b6", "media": "photo", "latitude": "30.610717", "id": "4417474354", "tags": "executive texasam tamu aggies maysbusinessschool alanroberts"}, {"datetaken": "2010-03-08 10:31:06", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4417048906_8ab9ed5b15_o.jpg", "secret": "840b924264", "media": "photo", "latitude": "0", "id": "4417048906", "tags": ""}, {"datetaken": "2010-03-08 10:33:42", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4417049192_fa45752ac6_o.jpg", "secret": "aff1e61f3e", "media": "photo", "latitude": "0", "id": "4417049192", "tags": ""}, {"datetaken": "2010-03-08 10:38:39", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/4416283299_afb46d295a_o.jpg", "secret": "fbd02a91c5", "media": "photo", "latitude": "0", "id": "4416283299", "tags": ""}, {"datetaken": "2010-03-08 10:40:43", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2677/4417049708_8fbe50aa55_o.jpg", "secret": "2a24e6bdde", "media": "photo", "latitude": "0", "id": "4417049708", "tags": ""}, {"datetaken": "2010-03-08 10:42:55", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4416283879_62f6d4cefc_o.jpg", "secret": "66b9e6bb29", "media": "photo", "latitude": "0", "id": "4416283879", "tags": ""}, {"datetaken": "2010-03-08 10:43:12", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4416284133_9e86b66415_o.jpg", "secret": "11b30fede3", "media": "photo", "latitude": "0", "id": "4416284133", "tags": ""}, {"datetaken": "2010-03-08 10:43:18", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4417050434_2b492c6527_o.jpg", "secret": "4779cd3952", "media": "photo", "latitude": "0", "id": "4417050434", "tags": ""}, {"datetaken": "2010-03-08 10:43:46", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4417050810_a7b93a3be0_o.jpg", "secret": "1ba2875ace", "media": "photo", "latitude": "0", "id": "4417050810", "tags": ""}, {"datetaken": "2010-03-08 10:44:43", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4417051248_1c55b87369_o.jpg", "secret": "2102859343", "media": "photo", "latitude": "0", "id": "4417051248", "tags": ""}, {"datetaken": "2010-03-08 10:45:13", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4417051542_4b719d4964_o.jpg", "secret": "946b5bd5c5", "media": "photo", "latitude": "0", "id": "4417051542", "tags": ""}, {"datetaken": "2010-03-08 10:49:33", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4416285829_e05f49716e_o.jpg", "secret": "f755289de3", "media": "photo", "latitude": "0", "id": "4416285829", "tags": ""}, {"datetaken": "2010-03-08 10:49:41", "license": "3", "title": "Jos\u00e9 Manuel Barroso, President of the European Commission, Nicolas Sarkozy, President of France and Angel Gurr\u00eda, OECD Secretary-General at the OECD Conference Centre", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4416223045_7116172e2f_o.jpg", "secret": "1418885332", "media": "photo", "latitude": "0", "id": "4416223045", "tags": "oecd sarkozy barroso gurr\u00eda"}, {"datetaken": "2010-03-08 10:57:56", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4416286603_0200933fcc_o.jpg", "secret": "dcb50093e5", "media": "photo", "latitude": "0", "id": "4416286603", "tags": ""}, {"datetaken": "2010-03-08 11:02:05", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4416286897_2f56faf3de_o.jpg", "secret": "9b506d055a", "media": "photo", "latitude": "0", "id": "4416286897", "tags": ""}, {"datetaken": "2010-03-08 11:17:14", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4416287383_3f9f0c427a_o.jpg", "secret": "d3f7e88b5d", "media": "photo", "latitude": "0", "id": "4416287383", "tags": ""}, {"datetaken": "2010-03-08 11:19:47", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4416287653_50c4647b71_o.jpg", "secret": "2dc63c39c9", "media": "photo", "latitude": "0", "id": "4416287653", "tags": ""}, {"datetaken": "2010-03-08 11:22:28", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4417054086_ba2cbbacc1_o.jpg", "secret": "353c4ec35a", "media": "photo", "latitude": "0", "id": "4417054086", "tags": ""}, {"datetaken": "2010-03-08 11:27:50", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4416288505_f68801d9ed_o.jpg", "secret": "95295c9ff8", "media": "photo", "latitude": "0", "id": "4416288505", "tags": ""}, {"datetaken": "2010-03-08 11:29:41", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4416291841_b3676736a8_o.jpg", "secret": "796b081e4a", "media": "photo", "latitude": "0", "id": "4416291841", "tags": ""}, {"datetaken": "2010-03-08 11:29:41", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4417054790_602327eeb1_o.jpg", "secret": "b961aea7e2", "media": "photo", "latitude": "0", "id": "4417054790", "tags": ""}, {"datetaken": "2010-03-08 11:31:42", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2802/4417055580_b406a69546_o.jpg", "secret": "ab0365aeb4", "media": "photo", "latitude": "0", "id": "4417055580", "tags": ""}, {"datetaken": "2010-03-08 11:34:33", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4416290141_5669944e0f_o.jpg", "secret": "6b731dc939", "media": "photo", "latitude": "0", "id": "4416290141", "tags": ""}, {"datetaken": "2010-03-08 11:40:49", "license": "3", "title": "International Conference on Access to Civil Nuclear Energy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2690/4416290437_b4f1eacf8c_o.jpg", "secret": "f3e375d35e", "media": "photo", "latitude": "0", "id": "4416290437", "tags": ""}, {"datetaken": "2010-03-08 15:27:21", "license": "3", "title": "Plaque dedicating the OECD Conference Centre to the co-operation and solidarity between nations for a stronger, cleaner, fairer world economy", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2792/4419747956_695385953a_o.jpg", "secret": "a70164af5a", "media": "photo", "latitude": "0", "id": "4419747956", "tags": "plaque oecd sarkozy gurria"}, {"datetaken": "2010-03-09 14:02:12", "license": "3", "title": "Visite de M. Fran\u00e7ois Fillon pour cl\u00f4turer la conf\u00e9rence sur le nucl\u00e9aire dans les locaux de l'OCDE, le 9 mars 2010.", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4422337546_368f691c9b_o.jpg", "secret": "6cc4cae624", "media": "photo", "latitude": "0", "id": "4422337546", "tags": "paris france fra"}, {"datetaken": "2010-03-09 14:02:16", "license": "3", "title": "Visite de M. Fran\u00e7ois Fillon pour cl\u00f4turer la conf\u00e9rence sur le nucl\u00e9aire dans les locaux de l'OCDE, le 9 mars 2010.", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/4422282314_5f40b346b8_o.jpg", "secret": "c30f6e1b8b", "media": "photo", "latitude": "0", "id": "4422282314", "tags": "paris france fra"}, {"datetaken": "2010-03-09 14:04:31", "license": "3", "title": "Visite de M. Fran\u00e7ois Fillon pour cl\u00f4turer la conf\u00e9rence sur le nucl\u00e9aire dans les locaux de l'OCDE, le 9 mars 2010.", "text": "", "album_id": "72157623578467254", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4421516285_3a81f7a900_o.jpg", "secret": "482f105324", "media": "photo", "latitude": "0", "id": "4421516285", "tags": "paris france fra"}, {"datetaken": "2010-03-08 12:49:51", "license": "3", "title": "Davis Bridge Battlefield - Pic 01", "text": "", "album_id": "72157623581011328", "longitude": "-88.797683", "url_o": "https://farm3.staticflickr.com/2784/4417331701_aa67362b9a_o.jpg", "secret": "f095a7bd83", "media": "photo", "latitude": "35.046581", "id": "4417331701", "tags": "civilwar battleofdavisbridge battleofhatchiesbridge battleofmatamora earlvandorn stephenhurlbut edwardord"}, {"datetaken": "2010-03-08 12:56:19", "license": "3", "title": "Davis Bridge Battlefield - Pic 02", "text": "", "album_id": "72157623581011328", "longitude": "-88.797683", "url_o": "https://farm3.staticflickr.com/2719/4417331961_390f0552ba_o.jpg", "secret": "dff7f47716", "media": "photo", "latitude": "35.046581", "id": "4417331961", "tags": "civilwar battleofdavisbridge battleofhatchiesbridge battleofmatamora earlvandorn stephenhurlbut edwardord"}, {"datetaken": "2010-03-08 13:01:47", "license": "3", "title": "Davis Bridge Battlefield - Pic 03", "text": "", "album_id": "72157623581011328", "longitude": "-88.797683", "url_o": "https://farm3.staticflickr.com/2731/4418097606_3b095c10d0_o.jpg", "secret": "d2bd3f1e7c", "media": "photo", "latitude": "35.046581", "id": "4418097606", "tags": "civilwar battleofdavisbridge battleofhatchiesbridge battleofmatamora earlvandorn stephenhurlbut edwardord"}, {"datetaken": "2010-03-08 13:07:17", "license": "3", "title": "Davis Bridge Battlefield - Pic 04", "text": "", "album_id": "72157623581011328", "longitude": "-88.797683", "url_o": "https://farm5.staticflickr.com/4072/4417332479_8b3c6bace0_o.jpg", "secret": "b9dfd7ba4b", "media": "photo", "latitude": "35.046581", "id": "4417332479", "tags": "civilwar battleofdavisbridge battleofhatchiesbridge battleofmatamora earlvandorn stephenhurlbut edwardord"}, {"datetaken": "2010-03-08 13:11:58", "license": "3", "title": "Davis Bridge Battlefield - Pic 05", "text": "", "album_id": "72157623581011328", "longitude": "-88.797683", "url_o": "https://farm3.staticflickr.com/2562/4417332779_4b8a3299e7_o.jpg", "secret": "b7a777e9fa", "media": "photo", "latitude": "35.046581", "id": "4417332779", "tags": "civilwar battleofdavisbridge battleofhatchiesbridge battleofmatamora earlvandorn stephenhurlbut edwardord"}, {"datetaken": "2010-03-08 13:16:32", "license": "3", "title": "Davis Bridge Battlefield - Pic 06", "text": "", "album_id": "72157623581011328", "longitude": "-88.797683", "url_o": "https://farm3.staticflickr.com/2785/4417333021_0a1c7e8d00_o.jpg", "secret": "35317abe47", "media": "photo", "latitude": "35.046581", "id": "4417333021", "tags": "civilwar battleofdavisbridge battleofhatchiesbridge battleofmatamora earlvandorn stephenhurlbut edwardord"}, {"datetaken": "2010-03-08 13:21:02", "license": "3", "title": "Davis Bridge Battlefield - Pic 07", "text": "", "album_id": "72157623581011328", "longitude": "-88.797683", "url_o": "https://farm5.staticflickr.com/4040/4417333247_d8066efe58_o.jpg", "secret": "576b102f40", "media": "photo", "latitude": "35.046581", "id": "4417333247", "tags": "civilwar battleofdavisbridge battleofhatchiesbridge battleofmatamora earlvandorn stephenhurlbut edwardord"}, {"datetaken": "2010-03-08 13:25:30", "license": "3", "title": "Davis Bridge Battlefield - Pic 08", "text": "", "album_id": "72157623581011328", "longitude": "-88.797683", "url_o": "https://farm5.staticflickr.com/4009/4417333515_83bcc4e709_o.jpg", "secret": "8574f3eff1", "media": "photo", "latitude": "35.046581", "id": "4417333515", "tags": "civilwar battleofdavisbridge battleofhatchiesbridge battleofmatamora earlvandorn stephenhurlbut edwardord"}, {"datetaken": "2010-03-08 13:30:43", "license": "3", "title": "Davis Bridge Battlefield - Pic 09", "text": "", "album_id": "72157623581011328", "longitude": "-88.797683", "url_o": "https://farm5.staticflickr.com/4023/4418099126_2989635676_o.jpg", "secret": "3ec57fef2c", "media": "photo", "latitude": "35.046581", "id": "4418099126", "tags": "civilwar battleofdavisbridge battleofhatchiesbridge battleofmatamora earlvandorn stephenhurlbut edwardord"}, {"datetaken": "2010-03-08 13:35:00", "license": "3", "title": "Davis Bridge Battlefield - Pic 10", "text": "", "album_id": "72157623581011328", "longitude": "-88.797683", "url_o": "https://farm3.staticflickr.com/2740/4418099366_c122bed2e9_o.jpg", "secret": "465f6d8483", "media": "photo", "latitude": "35.046581", "id": "4418099366", "tags": "civilwar battleofdavisbridge battleofhatchiesbridge battleofmatamora earlvandorn stephenhurlbut edwardord"}, {"datetaken": "2010-03-08 13:41:04", "license": "3", "title": "Davis Bridge Battlefield - Pic 11", "text": "", "album_id": "72157623581011328", "longitude": "-88.797683", "url_o": "https://farm5.staticflickr.com/4055/4417334169_49d41a7b37_o.jpg", "secret": "09bda15933", "media": "photo", "latitude": "35.046581", "id": "4417334169", "tags": "civilwar battleofdavisbridge battleofhatchiesbridge battleofmatamora earlvandorn stephenhurlbut edwardord"}, {"datetaken": "2010-03-08 13:45:29", "license": "3", "title": "Davis Bridge Battlefield - Pic 12", "text": "", "album_id": "72157623581011328", "longitude": "-88.797683", "url_o": "https://farm5.staticflickr.com/4048/4418099874_3a9589c41c_o.jpg", "secret": "a963dbf877", "media": "photo", "latitude": "35.046581", "id": "4418099874", "tags": "civilwar battleofdavisbridge battleofhatchiesbridge battleofmatamora earlvandorn stephenhurlbut edwardord"}, {"datetaken": "2010-03-08 13:54:15", "license": "3", "title": "Davis Bridge Battlefield - Pic 13", "text": "", "album_id": "72157623581011328", "longitude": "-88.797683", "url_o": "https://farm5.staticflickr.com/4035/4418100124_b58aed90eb_o.jpg", "secret": "6d5d79fa62", "media": "photo", "latitude": "35.046581", "id": "4418100124", "tags": "civilwar battleofdavisbridge battleofhatchiesbridge battleofmatamora earlvandorn stephenhurlbut edwardord"}, {"datetaken": "2010-01-04 05:38:32", "license": "4", "title": "100104-F-6407W-039", "text": "", "album_id": "72157623047955989", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2690/4259351320_8e4a51f14c_o.jpg", "secret": "ff897e136f", "media": "photo", "latitude": "0", "id": "4259351320", "tags": ""}, {"datetaken": "2010-01-04 07:39:10", "license": "4", "title": "100104-F-3231D-007", "text": "", "album_id": "72157623047955989", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4258596473_d94afccf97_o.jpg", "secret": "90ec7779bf", "media": "photo", "latitude": "0", "id": "4258596473", "tags": ""}, {"datetaken": "2010-01-04 07:44:22", "license": "4", "title": "100104-F-6407W-093", "text": "", "album_id": "72157623047955989", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4258596007_3d440838cb_o.jpg", "secret": "786d5a18e3", "media": "photo", "latitude": "0", "id": "4258596007", "tags": ""}, {"datetaken": "2010-01-04 07:54:22", "license": "4", "title": "100104-F-6407W-125", "text": "", "album_id": "72157623047955989", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4259351194_975935c42e_o.jpg", "secret": "db798819f9", "media": "photo", "latitude": "0", "id": "4259351194", "tags": ""}, {"datetaken": "2010-01-04 07:57:39", "license": "4", "title": "100104-F-6407W-128", "text": "", "album_id": "72157623047955989", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4258595899_0be4ca59c0_o.jpg", "secret": "0cacefbc94", "media": "photo", "latitude": "0", "id": "4258595899", "tags": ""}, {"datetaken": "2010-01-04 08:03:29", "license": "4", "title": "100104-F-6407W-138", "text": "", "album_id": "72157623047955989", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4258596095_1f9fbee9e5_o.jpg", "secret": "2645b6edf0", "media": "photo", "latitude": "0", "id": "4258596095", "tags": ""}, {"datetaken": "2010-01-04 08:43:27", "license": "4", "title": "100104-F-3231D-025", "text": "", "album_id": "72157623047955989", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4259351756_9c29ae65e7_o.jpg", "secret": "baf0695044", "media": "photo", "latitude": "0", "id": "4259351756", "tags": ""}, {"datetaken": "2010-01-04 09:17:47", "license": "4", "title": "100104-F-3231D-027", "text": "", "album_id": "72157623047955989", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4258596373_56623bc60b_o.jpg", "secret": "b2716f2212", "media": "photo", "latitude": "0", "id": "4258596373", "tags": ""}, {"datetaken": "2010-01-04 10:13:14", "license": "4", "title": "100104-F-3231D-049", "text": "", "album_id": "72157623047955989", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4258596327_ab83a016ab_o.jpg", "secret": "da1ff9199d", "media": "photo", "latitude": "0", "id": "4258596327", "tags": ""}, {"datetaken": "2010-01-04 11:09:57", "license": "4", "title": "100104-F-3231D-058", "text": "", "album_id": "72157623047955989", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4259351594_4aedf06ae2_o.jpg", "secret": "8dfb68e5d1", "media": "photo", "latitude": "0", "id": "4259351594", "tags": ""}, {"datetaken": "2010-01-04 11:13:39", "license": "4", "title": "100104-F-3231D-064", "text": "", "album_id": "72157623047955989", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4258596237_470890308a_o.jpg", "secret": "33126e718a", "media": "photo", "latitude": "0", "id": "4258596237", "tags": ""}, {"datetaken": "2010-01-04 11:41:41", "license": "4", "title": "100104-F-3231D-083", "text": "", "album_id": "72157623047955989", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4259351484_39a4329834_o.jpg", "secret": "16739a8546", "media": "photo", "latitude": "0", "id": "4259351484", "tags": ""}, {"datetaken": "2010-01-04 11:43:13", "license": "4", "title": "100104-F-3231D-089", "text": "", "album_id": "72157623047955989", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4258596137_2b1538fd27_o.jpg", "secret": "e079955814", "media": "photo", "latitude": "0", "id": "4258596137", "tags": ""}, {"datetaken": "2010-01-04 13:44:54", "license": "4", "title": "100104-F-3231D-125", "text": "", "album_id": "72157623047955989", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2683/4258596529_6cee4c2c9c_o.jpg", "secret": "7f6ccd6238", "media": "photo", "latitude": "0", "id": "4258596529", "tags": ""}, {"datetaken": "2010-01-09 14:41:00", "license": "2", "title": "Origami", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4260111569_c9e19fb081_o.jpg", "secret": "862e0f399f", "media": "photo", "latitude": "0", "id": "4260111569", "tags": "festival paper japanese origami arts annarbor celebration stickyrice mochi folding cultural mochitsuki"}, {"datetaken": "2010-01-09 14:41:13", "license": "2", "title": "Ikebana Demonstration", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4260866502_b23025274c_o.jpg", "secret": "06aa712998", "media": "photo", "latitude": "0", "id": "4260866502", "tags": "festival japanese ikebana arts annarbor celebration stickyrice mochi cultural mochitsuki flowerarranging"}, {"datetaken": "2010-01-09 14:41:24", "license": "2", "title": "Finished Ikebana arrangement", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4260112117_4f0516eb32_o.jpg", "secret": "d20d6eacc5", "media": "photo", "latitude": "0", "id": "4260112117", "tags": "flower festival japanese ikebana arts annarbor celebration stickyrice mochi cultural arranging mochitsuki"}, {"datetaken": "2010-01-09 14:41:42", "license": "2", "title": "Manga-drawing", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2737/4260867078_bbeb026811_o.jpg", "secret": "161fdc1c3a", "media": "photo", "latitude": "0", "id": "4260867078", "tags": "festival illustration japanese drawing arts manga annarbor celebration stickyrice mochi cultural mochitsuki"}, {"datetaken": "2010-01-09 14:42:07", "license": "2", "title": "Origami", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4260112845_05fc01caf4_o.jpg", "secret": "6f50cc9c71", "media": "photo", "latitude": "0", "id": "4260112845", "tags": "festival paper japanese origami arts annarbor celebration stickyrice mochi folding cultural mochitsuki"}, {"datetaken": "2010-01-09 14:42:26", "license": "2", "title": "Origami", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4260868290_7cae6a62b3_o.jpg", "secret": "7f8c1a5368", "media": "photo", "latitude": "0", "id": "4260868290", "tags": "festival japanese origami arts annarbor celebration stickyrice mochi mochitsuki"}, {"datetaken": "2010-01-09 14:42:56", "license": "2", "title": "Miyabi Koto group", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4260113789_409e11f425_o.jpg", "secret": "5f3918ea72", "media": "photo", "latitude": "0", "id": "4260113789", "tags": "music festival japanese traditional arts annarbor celebration stickyrice mochi cultural koto mochitsuki miyabi"}, {"datetaken": "2010-01-09 14:43:13", "license": "2", "title": "Koto player", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4260868802_d31666c015_o.jpg", "secret": "da024412b5", "media": "photo", "latitude": "0", "id": "4260868802", "tags": "music festival japanese arts annarbor celebration stickyrice mochi koto mochitsuki miyabi"}, {"datetaken": "2010-01-09 14:43:27", "license": "2", "title": "Koto information sign", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4260114277_c0301708af_o.jpg", "secret": "50f370c2ba", "media": "photo", "latitude": "0", "id": "4260114277", "tags": "music festival japanese traditional arts annarbor celebration stickyrice mochi information koto mochitsuki"}, {"datetaken": "2010-01-09 14:44:28", "license": "2", "title": "Pounding Mochi", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4260869166_5ec2835bbb_o.jpg", "secret": "40107cd05b", "media": "photo", "latitude": "0", "id": "4260869166", "tags": "food holiday festival japanese arts annarbor newyear celebration stickyrice mochi mochitsuki oshogatsu"}, {"datetaken": "2010-01-09 14:44:31", "license": "2", "title": "Pounding Mochi", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4260114777_9ff83964b4_o.jpg", "secret": "a1070a782f", "media": "photo", "latitude": "0", "id": "4260114777", "tags": "festival japanese arts annarbor celebration stickyrice mochi mochitsuki"}, {"datetaken": "2010-01-09 14:45:33", "license": "2", "title": "Pounding Mochi", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4260115135_af3981d180_o.jpg", "secret": "f26a2b8476", "media": "photo", "latitude": "0", "id": "4260115135", "tags": "food festival japanese arts annarbor celebration stickyrice mochi mochitsuki"}, {"datetaken": "2010-01-09 14:45:37", "license": "2", "title": "Pounding Mochi", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4260870176_4ce59c3378_o.jpg", "secret": "1d32547d46", "media": "photo", "latitude": "0", "id": "4260870176", "tags": "festival japanese arts annarbor celebration stickyrice mochi mochitsuki"}, {"datetaken": "2010-01-09 14:49:01", "license": "2", "title": "Coat-check at Mochitsuki", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4260870488_d716fd6e4d_o.jpg", "secret": "6f64abb7a1", "media": "photo", "latitude": "0", "id": "4260870488", "tags": "festival japanese arts annarbor celebration stickyrice mochi mochitsuki"}, {"datetaken": "2010-01-09 14:49:43", "license": "2", "title": "Waiting for the finished Mochi to be removed", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4260116515_837434e598_o.jpg", "secret": "fc84d453ec", "media": "photo", "latitude": "0", "id": "4260116515", "tags": "festival japanese arts annarbor celebration stickyrice mochi mochitsuki"}, {"datetaken": "2010-01-09 14:50:49", "license": "2", "title": "Removing the pounded rice", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4260116785_965b144b06_o.jpg", "secret": "6cfb521fdf", "media": "photo", "latitude": "0", "id": "4260116785", "tags": "festival japanese arts annarbor celebration stickyrice mochi mochitsuki"}, {"datetaken": "2010-01-09 14:50:53", "license": "2", "title": "Mochi hand-off", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4260871870_f68fccd2ec_o.jpg", "secret": "3cbffca8ae", "media": "photo", "latitude": "0", "id": "4260871870", "tags": "festival japanese arts annarbor celebration stickyrice mochi mochitsuki"}, {"datetaken": "2010-01-09 14:52:10", "license": "2", "title": "Singer", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4260872174_cf92a8b2ee_o.jpg", "secret": "dbfb5d3b49", "media": "photo", "latitude": "0", "id": "4260872174", "tags": "festival japanese arts annarbor celebration stickyrice mochi mochitsuki"}, {"datetaken": "2010-01-09 14:54:03", "license": "2", "title": "Ikebana", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4260117735_efa583355d_o.jpg", "secret": "87868e93de", "media": "photo", "latitude": "0", "id": "4260117735", "tags": "festival japanese arts annarbor celebration stickyrice mochi mochitsuki"}, {"datetaken": "2010-01-09 14:54:07", "license": "2", "title": "Ikebana", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4260118027_ede1943d64_o.jpg", "secret": "acaa896c5c", "media": "photo", "latitude": "0", "id": "4260118027", "tags": "festival japanese arts annarbor celebration stickyrice mochi mochitsuki"}, {"datetaken": "2010-01-09 14:54:36", "license": "2", "title": "Origami", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4260118439_e25e8407af_o.jpg", "secret": "b0d1fe1dab", "media": "photo", "latitude": "0", "id": "4260118439", "tags": "festival japanese origami arts annarbor celebration stickyrice mochi mochitsuki"}, {"datetaken": "2010-01-09 14:55:08", "license": "2", "title": "Manga", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4260873378_97dc2878d6_o.jpg", "secret": "94db3eb9c0", "media": "photo", "latitude": "0", "id": "4260873378", "tags": "festival japanese drawing arts manga annarbor celebration stickyrice mochi mochitsuki"}, {"datetaken": "2010-01-09 14:56:32", "license": "2", "title": "Final steps of Mochi making", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2738/4260873766_e219914245_o.jpg", "secret": "f88614b5b1", "media": "photo", "latitude": "0", "id": "4260873766", "tags": "festival japanese arts annarbor celebration stickyrice mochi mochitsuki"}, {"datetaken": "2010-01-09 14:56:39", "license": "2", "title": "Mochi in various stages", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2713/4260119317_f80d46e087_o.jpg", "secret": "f21aebf92f", "media": "photo", "latitude": "0", "id": "4260119317", "tags": "festival japanese arts annarbor celebration stickyrice mochi mochitsuki"}, {"datetaken": "2010-01-09 14:57:01", "license": "2", "title": "Mochi information sign", "text": "", "album_id": "72157623051586505", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4260119441_900f0c754b_o.jpg", "secret": "0423155ec2", "media": "photo", "latitude": "0", "id": "4260119441", "tags": "festival japanese arts annarbor celebration stickyrice mochi mochitsuki"}, {"datetaken": "2010-01-06 15:07:30", "license": "3", "title": "Macau Lighthouse", "text": "", "album_id": "72157623173423580", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4259627880_8664b2d521_o.jpg", "secret": "2ccfa6d20c", "media": "photo", "latitude": "0", "id": "4259627880", "tags": ""}, {"datetaken": "2010-01-06 15:07:45", "license": "3", "title": "Air", "text": "", "album_id": "72157623173423580", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4258872493_c481d37457_o.jpg", "secret": "1702c6f797", "media": "photo", "latitude": "0", "id": "4258872493", "tags": ""}, {"datetaken": "2010-01-06 15:08:03", "license": "3", "title": "Cuttlefish", "text": "", "album_id": "72157623173423580", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2706/4259628638_ec98e887fc_o.jpg", "secret": "b398caff48", "media": "photo", "latitude": "0", "id": "4259628638", "tags": ""}, {"datetaken": "2010-01-06 15:08:17", "license": "3", "title": "Sign", "text": "", "album_id": "72157623173423580", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4258873271_5b2c7a93b3_o.jpg", "secret": "3466d266b9", "media": "photo", "latitude": "0", "id": "4258873271", "tags": ""}, {"datetaken": "2010-01-06 15:08:55", "license": "3", "title": "Butter yellow", "text": "", "album_id": "72157623173423580", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4258873695_d18c24eb9e_o.jpg", "secret": "2769ae3a62", "media": "photo", "latitude": "0", "id": "4258873695", "tags": ""}, {"datetaken": "2010-01-06 15:09:22", "license": "3", "title": "Chemical leak", "text": "", "album_id": "72157623173423580", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2702/4258874059_a39b35b6aa_o.jpg", "secret": "8b8c22529d", "media": "photo", "latitude": "0", "id": "4258874059", "tags": ""}, {"datetaken": "2010-01-06 15:09:43", "license": "3", "title": "Red lights", "text": "", "album_id": "72157623173423580", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2694/4259630164_2dc5be82ee_o.jpg", "secret": "2d168e13ae", "media": "photo", "latitude": "0", "id": "4259630164", "tags": ""}, {"datetaken": "2010-01-06 15:10:31", "license": "3", "title": "District", "text": "", "album_id": "72157623173423580", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2767/4258874829_36f53bf0b2_o.jpg", "secret": "556ab75f97", "media": "photo", "latitude": "0", "id": "4258874829", "tags": ""}, {"datetaken": "2010-01-06 15:11:01", "license": "3", "title": "Boxed", "text": "", "album_id": "72157623173423580", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4258875233_d62df67280_o.jpg", "secret": "39c1d7c6d8", "media": "photo", "latitude": "0", "id": "4258875233", "tags": ""}, {"datetaken": "2010-01-06 15:11:19", "license": "3", "title": "Step", "text": "", "album_id": "72157623173423580", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4258875655_207d89cf7d_o.jpg", "secret": "66bf77863c", "media": "photo", "latitude": "0", "id": "4258875655", "tags": ""}, {"datetaken": "2010-01-06 15:11:40", "license": "3", "title": "Insides", "text": "", "album_id": "72157623173423580", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2702/4258876173_49b10a7cc6_o.jpg", "secret": "5e21eb1b0e", "media": "photo", "latitude": "0", "id": "4258876173", "tags": ""}, {"datetaken": "2010-03-10 18:03:54", "license": "1", "title": "Seven Second Delay 2010 Fundraising Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4424096726_5735922f28_o.jpg", "secret": "3572de4e5c", "media": "photo", "latitude": "0", "id": "4424096726", "tags": "usa jerseycity marathon nj wfmu ucbtheater kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:06:59", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4423335581_feaf01b889_o.jpg", "secret": "89ae1842d1", "media": "photo", "latitude": "0", "id": "4423335581", "tags": "usa jerseycity marathon nj wfmu ucbtheater kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:07:00", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4423335971_b20e5dcf37_o.jpg", "secret": "d6cdceb56b", "media": "photo", "latitude": "0", "id": "4423335971", "tags": "usa jerseycity marathon nj wfmu ucbtheater kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:08:23", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4423336503_8f3b6c0807_o.jpg", "secret": "2214c90522", "media": "photo", "latitude": "0", "id": "4423336503", "tags": "usa jerseycity marathon nj wfmu ucbtheater kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:12:33", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/4423337017_ee084a90a1_o.jpg", "secret": "5b79c1a98d", "media": "photo", "latitude": "0", "id": "4423337017", "tags": "usa jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:14:13", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4423337435_984c67f87f_o.jpg", "secret": "067e832841", "media": "photo", "latitude": "0", "id": "4423337435", "tags": "jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:15:08", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2755/4423337815_4e913989bb_o.jpg", "secret": "11080419cc", "media": "photo", "latitude": "0", "id": "4423337815", "tags": "usa jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:15:58", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4424103090_d9c76a2e36_o.jpg", "secret": "b80a402129", "media": "photo", "latitude": "0", "id": "4424103090", "tags": "usa jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:16:54", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4424103442_ce349745da_o.jpg", "secret": "a7f061e1bb", "media": "photo", "latitude": "0", "id": "4424103442", "tags": "jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy nickthebard wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:17:37", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4423338967_2384498922_o.jpg", "secret": "2b5ca255ba", "media": "photo", "latitude": "0", "id": "4423338967", "tags": "usa jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:17:55", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4423339483_2eca29f435_o.jpg", "secret": "30db8f613c", "media": "photo", "latitude": "0", "id": "4423339483", "tags": "usa jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:18:11", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4424104950_d5598ee9e0_o.jpg", "secret": "8a54f96aae", "media": "photo", "latitude": "0", "id": "4424104950", "tags": "usa jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:19:20", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4423340455_893931cde3_o.jpg", "secret": "3626a37a79", "media": "photo", "latitude": "0", "id": "4423340455", "tags": "usa jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:20:49", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2736/4423341013_a5b8f4dfe8_o.jpg", "secret": "5baee42567", "media": "photo", "latitude": "0", "id": "4423341013", "tags": "usa jerseycity marathon nj wfmu ucbtheater kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:22:50", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4424106558_ee9873dacc_o.jpg", "secret": "e6aa70db4b", "media": "photo", "latitude": "0", "id": "4424106558", "tags": "jerseycity marathon nj wfmu 7sd wmfu sevenseconddelay kenandy nickthebard wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:23:53", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4424106966_d66bb691d4_o.jpg", "secret": "aa32e2b237", "media": "photo", "latitude": "0", "id": "4424106966", "tags": "usa jerseycity marathon nj wfmu ucbtheater kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:24:20", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2725/4423342277_151b5317d6_o.jpg", "secret": "d6b155732e", "media": "photo", "latitude": "0", "id": "4423342277", "tags": "jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy nickthebard wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:26:14", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2720/4424107650_b259e9e9ec_o.jpg", "secret": "176bba293e", "media": "photo", "latitude": "0", "id": "4424107650", "tags": "usa jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:28:56", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2742/4423343007_b730a9a8db_o.jpg", "secret": "acaf367e92", "media": "photo", "latitude": "0", "id": "4423343007", "tags": "usa jerseycity marathon nj wfmu ucbtheater kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:30:20", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2712/4424108516_2b654a9596_o.jpg", "secret": "58d1c4341b", "media": "photo", "latitude": "0", "id": "4424108516", "tags": "usa jerseycity marathon nj wfmu ucbtheater kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:32:30", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4423343809_cc247f6405_o.jpg", "secret": "c16e3703d2", "media": "photo", "latitude": "0", "id": "4423343809", "tags": "usa jerseycity marathon nj wfmu ucbtheater kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:34:26", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2768/4423344305_3fd98fb9b2_o.jpg", "secret": "a4a4e71f30", "media": "photo", "latitude": "0", "id": "4423344305", "tags": "usa jerseycity marathon nj wfmu ucbtheater kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:38:00", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2791/4423344921_10d87ed92c_o.jpg", "secret": "3c6909bf39", "media": "photo", "latitude": "0", "id": "4423344921", "tags": "usa jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:39:32", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2755/4424110510_706be3953b_o.jpg", "secret": "326241b2a7", "media": "photo", "latitude": "0", "id": "4424110510", "tags": "jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:40:29", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4423346153_99d07c6f8f_o.jpg", "secret": "697481f62d", "media": "photo", "latitude": "0", "id": "4423346153", "tags": "jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:45:05", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4424111826_521b4a8c49_o.jpg", "secret": "6ee81682a6", "media": "photo", "latitude": "0", "id": "4424111826", "tags": "jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:46:14", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2796/4424112242_4c282e90bd_o.jpg", "secret": "b781f8d384", "media": "photo", "latitude": "0", "id": "4424112242", "tags": "jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:47:35", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4424112704_a491997a85_o.jpg", "secret": "c597249505", "media": "photo", "latitude": "0", "id": "4424112704", "tags": "jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:50:02", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4423348169_887870349c_o.jpg", "secret": "b03da420d6", "media": "photo", "latitude": "0", "id": "4423348169", "tags": "jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:51:15", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4423348787_aa94c631bf_o.jpg", "secret": "de13f2332b", "media": "photo", "latitude": "0", "id": "4423348787", "tags": "jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:53:01", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4424114030_89e5c28aee_o.jpg", "secret": "9231d1102f", "media": "photo", "latitude": "0", "id": "4424114030", "tags": "usa jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:54:29", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4423349639_2eb71c4ae5_o.jpg", "secret": "fdcfb9e083", "media": "photo", "latitude": "0", "id": "4423349639", "tags": "jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy nickthebard wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 18:56:07", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4424114900_7434454a7f_o.jpg", "secret": "d39d25a43f", "media": "photo", "latitude": "0", "id": "4424114900", "tags": "jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 19:09:19", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4424115774_54fbe466ea_o.jpg", "secret": "c88ce9f507", "media": "photo", "latitude": "0", "id": "4424115774", "tags": "jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 19:09:40", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4424116114_0c4e217850_o.jpg", "secret": "3487118966", "media": "photo", "latitude": "0", "id": "4424116114", "tags": "jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 19:09:41", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4424116618_20b4a2b614_o.jpg", "secret": "3ef08402ee", "media": "photo", "latitude": "0", "id": "4424116618", "tags": "jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-03-10 19:10:07", "license": "1", "title": "WFMU - Seven Second Delay 2010 Marathon", "text": "", "album_id": "72157623596916528", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2747/4424116968_cf4236f50a_o.jpg", "secret": "6c638bdc12", "media": "photo", "latitude": "0", "id": "4424116968", "tags": "jerseycity marathon nj wfmu kenfreedman 7sd wmfu andybreckman sevenseconddelay kenandy wfmumarathon2010 wfmuthon"}, {"datetaken": "2010-01-08 09:07:03", "license": "4", "title": "DSC_0266", "text": "", "album_id": "72157623192175390", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4267433606_7ee75d0337_o.jpg", "secret": "d352a86e52", "media": "photo", "latitude": "0", "id": "4267433606", "tags": "education concord schoolvisit"}, {"datetaken": "2010-01-08 09:08:09", "license": "4", "title": "DSC_0278", "text": "", "album_id": "72157623192175390", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2774/4267434010_ac35d8b86a_o.jpg", "secret": "b0c06002a1", "media": "photo", "latitude": "0", "id": "4267434010", "tags": "education concord schoolvisit"}, {"datetaken": "2010-01-08 09:08:53", "license": "4", "title": "DSC_0283", "text": "", "album_id": "72157623192175390", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4266688391_20893d8035_o.jpg", "secret": "eff7991ccb", "media": "photo", "latitude": "0", "id": "4266688391", "tags": "education concord schoolvisit"}, {"datetaken": "2010-01-08 09:10:03", "license": "4", "title": "DSC_0295", "text": "", "album_id": "72157623192175390", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/4266688917_e0fe63c9e5_o.jpg", "secret": "e3a9d98bc2", "media": "photo", "latitude": "0", "id": "4266688917", "tags": "education concord schoolvisit"}, {"datetaken": "2010-01-08 09:14:11", "license": "4", "title": "DSC_0325", "text": "", "album_id": "72157623192175390", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4267436018_8221df5647_o.jpg", "secret": "dcb1c4dab0", "media": "photo", "latitude": "0", "id": "4267436018", "tags": "education concord schoolvisit"}, {"datetaken": "2010-01-08 09:16:50", "license": "4", "title": "DSC_0337", "text": "", "album_id": "72157623192175390", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4267436516_1a5e69c38c_o.jpg", "secret": "79e05c0437", "media": "photo", "latitude": "0", "id": "4267436516", "tags": "education concord schoolvisit"}, {"datetaken": "2010-01-08 09:28:31", "license": "4", "title": "DSC_0395", "text": "", "album_id": "72157623192175390", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4267436988_98f49dee3a_o.jpg", "secret": "95763c5921", "media": "photo", "latitude": "0", "id": "4267436988", "tags": "education concord schoolvisit"}, {"datetaken": "2010-01-08 09:33:22", "license": "4", "title": "DSC_0422", "text": "", "album_id": "72157623192175390", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2723/4267437526_fd7fe4c727_o.jpg", "secret": "e474bc848b", "media": "photo", "latitude": "0", "id": "4267437526", "tags": "education concord schoolvisit"}, {"datetaken": "2010-01-08 09:36:12", "license": "4", "title": "DSC_0440", "text": "", "album_id": "72157623192175390", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4266691977_a5a317a1e8_o.jpg", "secret": "37fbe227ff", "media": "photo", "latitude": "0", "id": "4266691977", "tags": "education concord schoolvisit"}, {"datetaken": "2010-01-08 09:38:51", "license": "4", "title": "DSC_0458", "text": "", "album_id": "72157623192175390", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2732/4267438628_bb22e51198_o.jpg", "secret": "c5b282a1c9", "media": "photo", "latitude": "0", "id": "4267438628", "tags": "education concord schoolvisit"}, {"datetaken": "2010-01-08 18:12:33", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4266228820_4faf576cfd_o.jpg", "secret": "e7bf9ac709", "media": "photo", "latitude": "0", "id": "4266228820", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:12:57", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4265483753_b5b13baa0e_o.jpg", "secret": "4b479ea7f1", "media": "photo", "latitude": "0", "id": "4265483753", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:14:05", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2710/4266231894_043958e14b_o.jpg", "secret": "fa390db941", "media": "photo", "latitude": "0", "id": "4266231894", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:14:39", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4266233670_69b88affa3_o.jpg", "secret": "ac050913b7", "media": "photo", "latitude": "0", "id": "4266233670", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:17:00", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2598/4266235168_3869974076_o.jpg", "secret": "03018d4107", "media": "photo", "latitude": "0", "id": "4266235168", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:24:19", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4266236932_f327163060_o.jpg", "secret": "eb9d37a850", "media": "photo", "latitude": "0", "id": "4266236932", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:25:54", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4265492227_6d67289d4a_o.jpg", "secret": "87a698be31", "media": "photo", "latitude": "0", "id": "4265492227", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:29:02", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4265493827_90b337701a_o.jpg", "secret": "efbbc66a1a", "media": "photo", "latitude": "0", "id": "4265493827", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:38:39", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4265495407_13ea2c5a30_o.jpg", "secret": "54ee862c6b", "media": "photo", "latitude": "0", "id": "4265495407", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:39:28", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4265497711_23ae5c3b4c_o.jpg", "secret": "7307e49222", "media": "photo", "latitude": "0", "id": "4265497711", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:45:15", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4266248180_1c2ef796df_o.jpg", "secret": "01e9232c88", "media": "photo", "latitude": "0", "id": "4266248180", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:45:58", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4266249964_c68cd97edb_o.jpg", "secret": "0680790387", "media": "photo", "latitude": "0", "id": "4266249964", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:48:21", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4266252132_b1912c5966_o.jpg", "secret": "f9f10a5475", "media": "photo", "latitude": "0", "id": "4266252132", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:49:03", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4266253870_9560c2efe9_o.jpg", "secret": "593e3d65d3", "media": "photo", "latitude": "0", "id": "4266253870", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:51:12", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4266255674_ea798a7542_o.jpg", "secret": "42b217518f", "media": "photo", "latitude": "0", "id": "4266255674", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:52:02", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4265510905_b5e4c367c7_o.jpg", "secret": "e572a783a9", "media": "photo", "latitude": "0", "id": "4265510905", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:52:38", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2682/4265512083_cb570c906d_o.jpg", "secret": "6aebc6333d", "media": "photo", "latitude": "0", "id": "4265512083", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:53:11", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4265513115_a7394be4c4_o.jpg", "secret": "3b939ce9c2", "media": "photo", "latitude": "0", "id": "4265513115", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:53:36", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4266261926_6b1e251bb7_o.jpg", "secret": "41f7aed2d6", "media": "photo", "latitude": "0", "id": "4266261926", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:54:02", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4266264040_06925c0b12_o.jpg", "secret": "e2d6c6d5fb", "media": "photo", "latitude": "0", "id": "4266264040", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:55:30", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4265519765_d45ec50735_o.jpg", "secret": "fed02d44a6", "media": "photo", "latitude": "0", "id": "4265519765", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:55:41", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4266269040_054f3ce325_o.jpg", "secret": "2d28c7e3de", "media": "photo", "latitude": "0", "id": "4266269040", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 18:56:42", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4266271134_b59a8481ef_o.jpg", "secret": "62bc87ed29", "media": "photo", "latitude": "0", "id": "4266271134", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:09:47", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4265527821_92769948ef_o.jpg", "secret": "0f415d6d42", "media": "photo", "latitude": "0", "id": "4265527821", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:09:55", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4266277494_01c51d1274_o.jpg", "secret": "f80e959f24", "media": "photo", "latitude": "0", "id": "4266277494", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:10:49", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4265535213_6c7e91396f_o.jpg", "secret": "3c5ce9e3f3", "media": "photo", "latitude": "0", "id": "4265535213", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:13:42", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4266285672_c9632b36b4_o.jpg", "secret": "0fddb8cb8f", "media": "photo", "latitude": "0", "id": "4266285672", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:19:08", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2513/4265542241_30d7b5b29f_o.jpg", "secret": "d7b87edc3d", "media": "photo", "latitude": "0", "id": "4265542241", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:23:06", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4266293248_13e45b9cd6_o.jpg", "secret": "fcd20c937f", "media": "photo", "latitude": "0", "id": "4266293248", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:27:56", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4265549335_55acc32cda_o.jpg", "secret": "0938bc2011", "media": "photo", "latitude": "0", "id": "4265549335", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:28:23", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4266299480_fa842ee693_o.jpg", "secret": "c3acdff292", "media": "photo", "latitude": "0", "id": "4266299480", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:28:29", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4265556943_771a938ee7_o.jpg", "secret": "4af234a675", "media": "photo", "latitude": "0", "id": "4265556943", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:28:39", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4265560181_db7c866ea0_o.jpg", "secret": "c39c304018", "media": "photo", "latitude": "0", "id": "4265560181", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:29:00", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4265563269_3e975c7230_o.jpg", "secret": "95c8be35dd", "media": "photo", "latitude": "0", "id": "4265563269", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:29:06", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4266311824_4aa6d5cc78_o.jpg", "secret": "84ae78d2ca", "media": "photo", "latitude": "0", "id": "4266311824", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:29:11", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4266314688_9240c44933_o.jpg", "secret": "75de34e077", "media": "photo", "latitude": "0", "id": "4266314688", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:29:23", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2758/4265572529_a352cfcc69_o.jpg", "secret": "e6f886b187", "media": "photo", "latitude": "0", "id": "4265572529", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:30:24", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4266321884_8b04bc6145_o.jpg", "secret": "578b86cec7", "media": "photo", "latitude": "0", "id": "4266321884", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:32:32", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4266325602_08b7010a63_o.jpg", "secret": "491b7a9189", "media": "photo", "latitude": "0", "id": "4266325602", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:33:33", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4265583533_48164e9252_o.jpg", "secret": "9a9a9d50ca", "media": "photo", "latitude": "0", "id": "4265583533", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-08 19:33:57", "license": "3", "title": "adidas Star Wars release event", "text": "", "album_id": "72157623063719839", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4266332918_4620a3cf3b_o.jpg", "secret": "8f25b0a2e9", "media": "photo", "latitude": "0", "id": "4266332918", "tags": "show starwars event adidas"}, {"datetaken": "2010-01-10 13:20:13", "license": "6", "title": "4261284359_8810a82b37_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4271520065_4de440fa38_o.jpg", "secret": "0d54ba6a4a", "media": "photo", "latitude": "0", "id": "4271520065", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-10 18:32:55", "license": "6", "title": "4262612820_b155cde475_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4271519887_e5fdf3cc24_o.jpg", "secret": "c801f5a34e", "media": "photo", "latitude": "0", "id": "4271519887", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-10 18:33:25", "license": "6", "title": "4261864135_96da262e12_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4271520151_7d1fccfb6d_o.jpg", "secret": "07a1104136", "media": "photo", "latitude": "0", "id": "4271520151", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-11 10:08:36", "license": "6", "title": "4262621238_fc0981dc44_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4266220421_e2cc307ff8_o.jpg", "secret": "ae9cda007c", "media": "photo", "latitude": "0", "id": "4266220421", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-11 10:08:43", "license": "6", "title": "4261875163_e909a5089d_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4266220579_ba0f3c9d9e_o.jpg", "secret": "777fea8336", "media": "photo", "latitude": "0", "id": "4266220579", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-11 10:08:49", "license": "6", "title": "4262609328_c87898d7f4_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2767/4266220747_e1034bee01_o.jpg", "secret": "ebe8b2bdd2", "media": "photo", "latitude": "0", "id": "4266220747", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-11 10:40:03", "license": "6", "title": "4262618952_102985f725_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2767/4266967806_5cbc870cf7_o.jpg", "secret": "84a3deaf0e", "media": "photo", "latitude": "0", "id": "4266967806", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-11 10:40:34", "license": "6", "title": "4262618248_c3bae57988_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4266967634_ec1906dc6e_o.jpg", "secret": "8ca62f69b3", "media": "photo", "latitude": "0", "id": "4266967634", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-11 10:41:16", "license": "6", "title": "4261287681_6fd0d86699_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4266968166_4e9a61c670_o.jpg", "secret": "b00481afe0", "media": "photo", "latitude": "0", "id": "4266968166", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-11 10:41:44", "license": "6", "title": "4261287003_7faf4ba122_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2789/4266221255_f6188b6beb_o.jpg", "secret": "e47f48e6c6", "media": "photo", "latitude": "0", "id": "4266221255", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-11 23:42:10", "license": "6", "title": "4266221713_8b2a70b3d9_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4272263618_940a346d19_o.jpg", "secret": "5e77c84bfa", "media": "photo", "latitude": "0", "id": "4272263618", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-11 23:42:59", "license": "6", "title": "4266970434_a3ba1b2e80_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4272263674_31bc43c877_o.jpg", "secret": "60db9e9a42", "media": "photo", "latitude": "0", "id": "4272263674", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-11 23:58:33", "license": "6", "title": "4266988112_76bcca5960_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4271520503_f422e4322e_o.jpg", "secret": "1963eb7ae9", "media": "photo", "latitude": "0", "id": "4271520503", "tags": "afghanistan tom secretary agriculture visits vilsack usdatile"}, {"datetaken": "2010-01-12 09:16:47", "license": "6", "title": "Job Forum CO", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4270990095_85950bb2ff_o.jpg", "secret": "340b908d87", "media": "photo", "latitude": "0", "id": "4270990095", "tags": "colorado council agriculture jobforum"}, {"datetaken": "2010-01-12 12:03:15", "license": "6", "title": "4266974440_c7d4e94f24_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4269772858_aca47153fb_o.jpg", "secret": "85c384f1a5", "media": "photo", "latitude": "0", "id": "4269772858", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-12 12:03:31", "license": "6", "title": "4266969890_83dd00f8a1_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4269030561_9d0b695f2e_o.jpg", "secret": "54e23a45a7", "media": "photo", "latitude": "0", "id": "4269030561", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-12 12:03:48", "license": "6", "title": "4266969424_0167ed8b75_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4269030597_f0d8105006_o.jpg", "secret": "53baeda2df", "media": "photo", "latitude": "0", "id": "4269030597", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-12 12:07:20", "license": "6", "title": "4266221221_1fd620e07f_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4269773070_a8060ceefd_o.jpg", "secret": "a10ba71a45", "media": "photo", "latitude": "0", "id": "4269773070", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-12 12:08:35", "license": "6", "title": "4268231533_f4906a5904_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4269773284_fe375d4c25_o.jpg", "secret": "28ef0f4fbb", "media": "photo", "latitude": "0", "id": "4269773284", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-12 12:09:33", "license": "6", "title": "4268229111_9a262cd6ba_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4269793392_8b68dfbe29_o.jpg", "secret": "8aef6caaae", "media": "photo", "latitude": "0", "id": "4269793392", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-12 12:12:49", "license": "6", "title": "4266981160_d4f1dc0e5b_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4269773362_03d0379779_o.jpg", "secret": "d3625d8119", "media": "photo", "latitude": "0", "id": "4269773362", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-01-12 12:13:32", "license": "6", "title": "4268976618_65db14c6d0_o", "text": "", "album_id": "72157623072796959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4269031259_fbd605b6ee_o.jpg", "secret": "db5fd760cb", "media": "photo", "latitude": "0", "id": "4269031259", "tags": "afghanistan tom secretary agriculture visits vilsack"}, {"datetaken": "2010-03-12 13:52:47", "license": "1", "title": "agulhas01", "text": "", "album_id": "72157623480872283", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4426386995_7479064df5_o.jpg", "secret": "91fccb6fdf", "media": "photo", "latitude": "0", "id": "4426386995", "tags": "africa southafrica video agulhas"}, {"datetaken": "2010-03-12 13:52:55", "license": "1", "title": "agulhas03", "text": "", "album_id": "72157623480872283", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4427150166_d01ece6166_o.jpg", "secret": "21c67e6686", "media": "photo", "latitude": "0", "id": "4427150166", "tags": "africa southafrica video agulhas"}, {"datetaken": "2010-03-12 13:53:02", "license": "1", "title": "agulhas05", "text": "", "album_id": "72157623480872283", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2711/4426387309_2787f226d0_o.jpg", "secret": "751e920669", "media": "photo", "latitude": "0", "id": "4426387309", "tags": "africa southafrica video agulhas"}, {"datetaken": "2010-03-12 13:53:09", "license": "1", "title": "agulhas06", "text": "", "album_id": "72157623480872283", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4427150500_a3cc14b7c6_o.jpg", "secret": "3ef636ae74", "media": "photo", "latitude": "0", "id": "4427150500", "tags": "africa southafrica video agulhas"}, {"datetaken": "2010-03-12 13:53:17", "license": "1", "title": "agulhas07", "text": "", "album_id": "72157623480872283", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2763/4426387621_9375c522f1_o.jpg", "secret": "9aa873fd53", "media": "photo", "latitude": "0", "id": "4426387621", "tags": "africa southafrica video agulhas"}, {"datetaken": "2010-03-12 13:53:26", "license": "1", "title": "agulhas08", "text": "", "album_id": "72157623480872283", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2741/4427150890_42708ab729_o.jpg", "secret": "79ded1e174", "media": "photo", "latitude": "0", "id": "4427150890", "tags": "africa southafrica video agulhas"}, {"datetaken": "2010-03-12 13:53:34", "license": "1", "title": "agulhas09", "text": "", "album_id": "72157623480872283", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4426388019_140abe6ed9_o.jpg", "secret": "a39eec63d5", "media": "photo", "latitude": "0", "id": "4426388019", "tags": "africa southafrica video agulhas"}, {"datetaken": "2010-03-12 13:53:49", "license": "1", "title": "agulhas12", "text": "", "album_id": "72157623480872283", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4427151400_dfd2cd45e2_o.jpg", "secret": "98d0e4e10f", "media": "photo", "latitude": "0", "id": "4427151400", "tags": "africa southafrica video bmw agulhas"}, {"datetaken": "2010-03-12 13:53:53", "license": "1", "title": "agulhas13", "text": "", "album_id": "72157623480872283", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4426388431_3b2b255049_o.jpg", "secret": "98138b18f8", "media": "photo", "latitude": "0", "id": "4426388431", "tags": "africa southafrica video agulhas"}, {"datetaken": "2010-03-12 13:53:56", "license": "1", "title": "The Edge of Africa", "text": "", "album_id": "72157623480872283", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4427151570_e13e1098e2_o.jpg", "secret": "e695eda0f3", "media": "photo", "latitude": "0", "id": "4427151570", "tags": "africa southafrica video agulhas"}, {"datetaken": "2006-10-30 00:00:00", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2687/4427333232_0c62a8f613_o.jpg", "secret": "8514d2b94a", "media": "photo", "latitude": "30.610717", "id": "4427333232", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:01", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2684/4426569977_98c7ea65fc_o.jpg", "secret": "7fbbaed131", "media": "photo", "latitude": "30.610717", "id": "4426569977", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:02", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4061/4426570015_3b77cc4883_o.jpg", "secret": "decb4b7776", "media": "photo", "latitude": "30.610717", "id": "4426570015", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:03", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4035/4426569981_72d996bc26_o.jpg", "secret": "390b4ee9c3", "media": "photo", "latitude": "30.610717", "id": "4426569981", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:04", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4055/4426569967_fd948b64dc_o.jpg", "secret": "9fbce03a2e", "media": "photo", "latitude": "30.610717", "id": "4426569967", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:05", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2432/4426569941_b4b809de59_o.jpg", "secret": "c5de661a09", "media": "photo", "latitude": "30.610717", "id": "4426569941", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:06", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2736/4427333158_c81b01e0bf_o.jpg", "secret": "4e1a1deb05", "media": "photo", "latitude": "30.610717", "id": "4427333158", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:07", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2684/4427333138_b90dc8b4de_o.jpg", "secret": "bd833a13af", "media": "photo", "latitude": "30.610717", "id": "4427333138", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:08", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4007/4427333168_3516c80e14_o.jpg", "secret": "9c7f0aaa27", "media": "photo", "latitude": "30.610717", "id": "4427333168", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:09", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2786/4427333122_3b7b136f98_o.jpg", "secret": "4c9f7b82ca", "media": "photo", "latitude": "30.610717", "id": "4427333122", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:10", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4010/4427333114_1c368a6cc7_o.jpg", "secret": "2f558b9da4", "media": "photo", "latitude": "30.610717", "id": "4427333114", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:11", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4001/4427333128_410784fcb2_o.jpg", "secret": "a626fc7234", "media": "photo", "latitude": "30.610717", "id": "4427333128", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:12", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4011/4426569901_d691bfbc29_o.jpg", "secret": "55f95c6199", "media": "photo", "latitude": "30.610717", "id": "4426569901", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:13", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4006/4427333098_219de3e1f0_o.jpg", "secret": "82faa832d8", "media": "photo", "latitude": "30.610717", "id": "4427333098", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:14", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2770/4427333076_613cdf60eb_o.jpg", "secret": "082a6af1a1", "media": "photo", "latitude": "30.610717", "id": "4427333076", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:15", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4055/4427333088_2a5329ecc7_o.jpg", "secret": "6ce904e076", "media": "photo", "latitude": "30.610717", "id": "4427333088", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:16", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2767/4426569867_59a34268c7_o.jpg", "secret": "b22e9979fe", "media": "photo", "latitude": "30.610717", "id": "4426569867", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:17", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4029/4427333050_47ccac46a1_o.jpg", "secret": "6ca46fd7cf", "media": "photo", "latitude": "30.610717", "id": "4427333050", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:18", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2582/4427333034_1281c43443_o.jpg", "secret": "fd3126e004", "media": "photo", "latitude": "30.610717", "id": "4427333034", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:19", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4035/4427333008_971140b0be_o.jpg", "secret": "be27de1e2c", "media": "photo", "latitude": "30.610717", "id": "4427333008", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:20", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2772/4427332992_0e85cac8c4_o.jpg", "secret": "1590640d1e", "media": "photo", "latitude": "30.610717", "id": "4427332992", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:21", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2603/4426569819_8aa1387d5b_o.jpg", "secret": "87e8c5df80", "media": "photo", "latitude": "30.610717", "id": "4426569819", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:22", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2703/4426569809_4e0ef8de48_o.jpg", "secret": "1a82a21868", "media": "photo", "latitude": "30.610717", "id": "4426569809", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:23", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4071/4426569777_5384e35f85_o.jpg", "secret": "4747e3e06a", "media": "photo", "latitude": "30.610717", "id": "4426569777", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:24", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4043/4426569769_1e8368c21d_o.jpg", "secret": "2576acd86f", "media": "photo", "latitude": "30.610717", "id": "4426569769", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-10-30 00:00:25", "license": "3", "title": "Jim Weber visits Mays", "text": "", "album_id": "72157623481128331", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2545/4426569763_c5baa10ba8_o.jpg", "secret": "53cdc281a5", "media": "photo", "latitude": "30.610717", "id": "4426569763", "tags": "classroom lecture executive texasam tamu maysbusinessschool jimweber"}, {"datetaken": "2006-04-05 00:00:00", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4063/4426773083_b257c7e88f_o.jpg", "secret": "eb33490bca", "media": "photo", "latitude": "30.610717", "id": "4426773083", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:01", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4058/4426773039_13813e6ba8_o.jpg", "secret": "02c2b73c32", "media": "photo", "latitude": "30.610717", "id": "4426773039", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:02", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2753/4427535710_a561e37a65_o.jpg", "secret": "a2647172d8", "media": "photo", "latitude": "30.610717", "id": "4427535710", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:03", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4029/4426773069_4f5a402292_o.jpg", "secret": "22fb7f4b9a", "media": "photo", "latitude": "30.610717", "id": "4426773069", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:04", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4004/4426773091_e84bfeed88_o.jpg", "secret": "4543fb4092", "media": "photo", "latitude": "30.610717", "id": "4426773091", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:05", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4037/4427535704_d7ac16625a_o.jpg", "secret": "f42818cb2d", "media": "photo", "latitude": "30.610717", "id": "4427535704", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:06", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2804/4427535674_912345af83_o.jpg", "secret": "a491ab7953", "media": "photo", "latitude": "30.610717", "id": "4427535674", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:07", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4046/4426773019_6f2a56e4c5_o.jpg", "secret": "983198e219", "media": "photo", "latitude": "30.610717", "id": "4426773019", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:08", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2750/4427535594_9c68c34f29_o.jpg", "secret": "fc248dcf50", "media": "photo", "latitude": "30.610717", "id": "4427535594", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:09", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2681/4426772955_e6fb7aaf44_o.jpg", "secret": "8e627fab50", "media": "photo", "latitude": "30.610717", "id": "4426772955", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:10", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4011/4426772961_e32e4377d0_o.jpg", "secret": "a979b99f5a", "media": "photo", "latitude": "30.610717", "id": "4426772961", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:11", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4063/4427535542_356e897393_o.jpg", "secret": "427ebb858f", "media": "photo", "latitude": "30.610717", "id": "4427535542", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:12", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2692/4426772887_d2977012e6_o.jpg", "secret": "1c889d8aa6", "media": "photo", "latitude": "30.610717", "id": "4426772887", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:13", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4003/4427535564_271481efd9_o.jpg", "secret": "2e0a6dd181", "media": "photo", "latitude": "30.610717", "id": "4427535564", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:14", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2804/4426772929_e4154891ca_o.jpg", "secret": "629086ea52", "media": "photo", "latitude": "30.610717", "id": "4426772929", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:15", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4024/4426772899_cb2fd6a30e_o.jpg", "secret": "5ae6e43360", "media": "photo", "latitude": "30.610717", "id": "4426772899", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:16", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2713/4426772867_fd789dc732_o.jpg", "secret": "29972a89e2", "media": "photo", "latitude": "30.610717", "id": "4426772867", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:17", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2692/4426772911_33d7a33d71_o.jpg", "secret": "4b94d8fb68", "media": "photo", "latitude": "30.610717", "id": "4426772911", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:18", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4035/4427535530_f6e00d4585_o.jpg", "secret": "b4f5d44e09", "media": "photo", "latitude": "30.610717", "id": "4427535530", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:19", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2721/4427535478_f60a3f601a_o.jpg", "secret": "9fc27569a2", "media": "photo", "latitude": "30.610717", "id": "4427535478", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:20", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2739/4427535468_dab2eeec28_o.jpg", "secret": "7426d714dc", "media": "photo", "latitude": "30.610717", "id": "4427535468", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:21", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4008/4427535456_6ddc50cb5d_o.jpg", "secret": "576cfa0e61", "media": "photo", "latitude": "30.610717", "id": "4427535456", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:22", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4039/4426772831_9a2be1d379_o.jpg", "secret": "f784046263", "media": "photo", "latitude": "30.610717", "id": "4426772831", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:23", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2678/4426772823_567f827f0e_o.jpg", "secret": "a19da5bb2e", "media": "photo", "latitude": "30.610717", "id": "4426772823", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:24", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4010/4427535442_51f083a70d_o.jpg", "secret": "cf61d498e3", "media": "photo", "latitude": "30.610717", "id": "4427535442", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:25", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2702/4427535416_f78e08b0be_o.jpg", "secret": "1dbc9b2541", "media": "photo", "latitude": "30.610717", "id": "4427535416", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:26", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4020/4426772813_69542bb8e0_o.jpg", "secret": "64487b799a", "media": "photo", "latitude": "30.610717", "id": "4426772813", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:27", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4026/4427535382_0328c2ce4e_o.jpg", "secret": "5e3fbbd66c", "media": "photo", "latitude": "30.610717", "id": "4427535382", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2006-04-05 00:00:28", "license": "3", "title": "Steve Alvis visits Mays", "text": "", "album_id": "72157623606238012", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4016/4427535402_9be356a795_o.jpg", "secret": "547df5a0c2", "media": "photo", "latitude": "30.610717", "id": "4427535402", "tags": "classroom lecture texasam tamu maysbusinessschool stevealvis"}, {"datetaken": "2005-11-17 00:00:00", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4015/4426890793_ff507709de_o.jpg", "secret": "3147f79ca8", "media": "photo", "latitude": "30.610717", "id": "4426890793", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool"}, {"datetaken": "2005-11-17 00:00:01", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4045/4426890801_04f83fcf72_o.jpg", "secret": "f73c84d5a6", "media": "photo", "latitude": "30.610717", "id": "4426890801", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool"}, {"datetaken": "2005-11-17 00:00:02", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4069/4427654336_e989887459_o.jpg", "secret": "da0ed29edc", "media": "photo", "latitude": "30.610717", "id": "4427654336", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool"}, {"datetaken": "2005-11-17 00:00:03", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4065/4426890825_60119d7d83_o.jpg", "secret": "bfb4ea0889", "media": "photo", "latitude": "30.610717", "id": "4426890825", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool"}, {"datetaken": "2005-11-17 00:00:04", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4051/4427654352_dfe8c60a76_o.jpg", "secret": "518b849f29", "media": "photo", "latitude": "30.610717", "id": "4427654352", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool"}, {"datetaken": "2005-11-17 00:00:05", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4053/4427654362_aa11f92df8_o.jpg", "secret": "cacbf8a430", "media": "photo", "latitude": "30.610717", "id": "4427654362", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool"}, {"datetaken": "2005-11-17 00:00:06", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4053/4427654376_908a409e48_o.jpg", "secret": "3bd1d5ca90", "media": "photo", "latitude": "30.610717", "id": "4427654376", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool symoncommunications"}, {"datetaken": "2005-11-17 00:00:07", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2770/4426890871_6a8796eb00_o.jpg", "secret": "610e31551d", "media": "photo", "latitude": "30.610717", "id": "4426890871", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool symoncommunications"}, {"datetaken": "2005-11-17 00:00:08", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4030/4427654382_a974a0c918_o.jpg", "secret": "70252a5264", "media": "photo", "latitude": "30.610717", "id": "4427654382", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool"}, {"datetaken": "2005-11-17 00:00:09", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4056/4426890875_2f297e4889_o.jpg", "secret": "b03789be35", "media": "photo", "latitude": "30.610717", "id": "4426890875", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool symoncommunications"}, {"datetaken": "2005-11-17 00:00:10", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4050/4426890891_3214f89f58_o.jpg", "secret": "9f634ed5b8", "media": "photo", "latitude": "30.610717", "id": "4426890891", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool symoncommunications"}, {"datetaken": "2005-11-17 00:00:11", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4020/4427654446_c9011d4341_o.jpg", "secret": "b7fc91a88b", "media": "photo", "latitude": "30.610717", "id": "4427654446", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool symoncommunications"}, {"datetaken": "2005-11-17 00:00:12", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4028/4427654460_c9e15861ed_o.jpg", "secret": "4b12ec7acc", "media": "photo", "latitude": "30.610717", "id": "4427654460", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool symoncommunications"}, {"datetaken": "2005-11-17 00:00:13", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2677/4426890943_e914001778_o.jpg", "secret": "1a14d251d0", "media": "photo", "latitude": "30.610717", "id": "4426890943", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool symoncommunications"}, {"datetaken": "2005-11-17 00:00:14", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4003/4427654466_3120c42a57_o.jpg", "secret": "a4741c6e26", "media": "photo", "latitude": "30.610717", "id": "4427654466", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool symoncommunications"}, {"datetaken": "2005-11-17 00:00:15", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4021/4427654492_c720d109ff_o.jpg", "secret": "2cc12dc8cd", "media": "photo", "latitude": "30.610717", "id": "4427654492", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool symoncommunications"}, {"datetaken": "2005-11-17 00:00:16", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4026/4426890967_c747a6b89d_o.jpg", "secret": "4d5dfb27f2", "media": "photo", "latitude": "30.610717", "id": "4426890967", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool symoncommunications"}, {"datetaken": "2005-11-17 00:00:17", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4048/4427654500_2baf6e9a44_o.jpg", "secret": "2ced4ec7e8", "media": "photo", "latitude": "30.610717", "id": "4427654500", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool symoncommunications"}, {"datetaken": "2005-11-17 00:00:18", "license": "3", "title": "Charles Ansley visits Mays", "text": "", "album_id": "72157623606566942", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4017/4427654514_9263b086c7_o.jpg", "secret": "98bccb34f3", "media": "photo", "latitude": "30.610717", "id": "4427654514", "tags": "classroom lecture texasam tamu charlesansley maysbusinessschool symoncommunications"}, {"datetaken": "2006-03-01 00:00:00", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4035/4426672715_ac7fabfcba_o.jpg", "secret": "548bf60974", "media": "photo", "latitude": "30.610717", "id": "4426672715", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:01", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2714/4427435362_d6ee533953_o.jpg", "secret": "e58c478cba", "media": "photo", "latitude": "30.610717", "id": "4427435362", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:02", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2747/4426672697_1f6a8d57d9_o.jpg", "secret": "875e7a98b7", "media": "photo", "latitude": "30.610717", "id": "4426672697", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:03", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4025/4426672705_ee3c117c14_o.jpg", "secret": "24a6f2a255", "media": "photo", "latitude": "30.610717", "id": "4426672705", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:04", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2752/4426672667_0a7191466b_o.jpg", "secret": "d5f85bee40", "media": "photo", "latitude": "30.610717", "id": "4426672667", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:05", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2766/4427435332_624aa2530b_o.jpg", "secret": "39a5222c11", "media": "photo", "latitude": "30.610717", "id": "4427435332", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:06", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4002/4426672643_154d4d8827_o.jpg", "secret": "a6114c01af", "media": "photo", "latitude": "30.610717", "id": "4426672643", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:07", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2694/4427435320_4235c8025f_o.jpg", "secret": "41918a735d", "media": "photo", "latitude": "30.610717", "id": "4427435320", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:08", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2695/4426672611_f77f2dab92_o.jpg", "secret": "7fa27e00fd", "media": "photo", "latitude": "30.610717", "id": "4426672611", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:09", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2696/4427435286_8ae8692ed6_o.jpg", "secret": "efde3235b1", "media": "photo", "latitude": "30.610717", "id": "4427435286", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:10", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4019/4426672599_4a8060e59e_o.jpg", "secret": "02ed03da01", "media": "photo", "latitude": "30.610717", "id": "4426672599", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:11", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2712/4426672583_ff43425f2c_o.jpg", "secret": "9a08b8d605", "media": "photo", "latitude": "30.610717", "id": "4426672583", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:12", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4055/4426672591_097a25bced_o.jpg", "secret": "7b017ee7f9", "media": "photo", "latitude": "30.610717", "id": "4426672591", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:13", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4020/4427435264_86e8338409_o.jpg", "secret": "aef10ec57b", "media": "photo", "latitude": "30.610717", "id": "4427435264", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:14", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2788/4427435250_5483bd12ba_o.jpg", "secret": "8522928d25", "media": "photo", "latitude": "30.610717", "id": "4427435250", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:15", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2802/4426672555_98929767e6_o.jpg", "secret": "acb6dd9c5f", "media": "photo", "latitude": "30.610717", "id": "4426672555", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:16", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4041/4427435234_dda9eec7c3_o.jpg", "secret": "fbc94f414d", "media": "photo", "latitude": "30.610717", "id": "4427435234", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:17", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2718/4426672519_af5f2f3dcb_o.jpg", "secret": "35e845e9aa", "media": "photo", "latitude": "30.610717", "id": "4426672519", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:18", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4002/4427435228_63f7ea4c35_o.jpg", "secret": "3bc53bcef5", "media": "photo", "latitude": "30.610717", "id": "4427435228", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:19", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4050/4426672509_8b511fc434_o.jpg", "secret": "2caebe6e65", "media": "photo", "latitude": "30.610717", "id": "4426672509", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:20", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2737/4426672497_d3d204f0df_o.jpg", "secret": "583b05817e", "media": "photo", "latitude": "30.610717", "id": "4426672497", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:21", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2720/4427435168_2fcd26b967_o.jpg", "secret": "1bfba37929", "media": "photo", "latitude": "30.610717", "id": "4427435168", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:22", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2727/4427435196_35d297404f_o.jpg", "secret": "6f2317c81e", "media": "photo", "latitude": "30.610717", "id": "4427435196", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:23", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2703/4426672463_9d7b8f28b3_o.jpg", "secret": "01e5f61486", "media": "photo", "latitude": "30.610717", "id": "4426672463", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:24", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4056/4427435182_c6bb0eb08e_o.jpg", "secret": "8af3baa841", "media": "photo", "latitude": "30.610717", "id": "4427435182", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:25", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2700/4427435156_1da9e54c3f_o.jpg", "secret": "5a50169cf6", "media": "photo", "latitude": "30.610717", "id": "4427435156", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:26", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4043/4426672401_561137b5c3_o.jpg", "secret": "6081239969", "media": "photo", "latitude": "30.610717", "id": "4426672401", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:27", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2717/4426672365_cb00046603_o.jpg", "secret": "84fb553fed", "media": "photo", "latitude": "30.610717", "id": "4426672365", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:28", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2710/4426672371_5b5be650e1_o.jpg", "secret": "2f68149384", "media": "photo", "latitude": "30.610717", "id": "4426672371", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:29", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4013/4426672433_ba41dbe3eb_o.jpg", "secret": "d494e141e2", "media": "photo", "latitude": "30.610717", "id": "4426672433", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2006-03-01 00:00:30", "license": "3", "title": "John Irvin visits Mays", "text": "", "album_id": "72157623481403631", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2756/4426672351_e12e3e3386_o.jpg", "secret": "d3646b5832", "media": "photo", "latitude": "30.610717", "id": "4426672351", "tags": "lecture texasam tamu jcpenney maysbusinessschool johnirvin"}, {"datetaken": "2005-07-20 00:00:00", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4042/4428017746_fd274fbecb_o.jpg", "secret": "1c3480710e", "media": "photo", "latitude": "30.610717", "id": "4428017746", "tags": "classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:01", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2703/4427253447_022554558c_o.jpg", "secret": "4bcc75e16c", "media": "photo", "latitude": "30.610717", "id": "4427253447", "tags": "classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:02", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2222/4427253433_07ce1ab8e5_o.jpg", "secret": "92cb8d5bb7", "media": "photo", "latitude": "30.610717", "id": "4427253433", "tags": "classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:03", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4048/4427253423_aeeaed4262_o.jpg", "secret": "4046558ffb", "media": "photo", "latitude": "30.610717", "id": "4427253423", "tags": "classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:04", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2681/4428017704_8449bbc408_o.jpg", "secret": "1fa60b2479", "media": "photo", "latitude": "30.610717", "id": "4428017704", "tags": "classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:05", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2791/4428017586_c15dac3811_o.jpg", "secret": "4cbf82c831", "media": "photo", "latitude": "30.610717", "id": "4428017586", "tags": "students classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:06", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4019/4428017656_2abbb9fd3d_o.jpg", "secret": "9330db2d49", "media": "photo", "latitude": "30.610717", "id": "4428017656", "tags": "classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:07", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2778/4427253351_cf64e95ecb_o.jpg", "secret": "9b69cb2970", "media": "photo", "latitude": "30.610717", "id": "4427253351", "tags": "classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:08", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2773/4428017686_5c9b382f1a_o.jpg", "secret": "c9f3991a89", "media": "photo", "latitude": "30.610717", "id": "4428017686", "tags": "classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:09", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2753/4427253341_9dccfca090_o.jpg", "secret": "718851818f", "media": "photo", "latitude": "30.610717", "id": "4427253341", "tags": "classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:10", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2687/4427253311_fb45089955_o.jpg", "secret": "4212cafacb", "media": "photo", "latitude": "30.610717", "id": "4427253311", "tags": "students classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:11", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4056/4428017666_499961c7eb_o.jpg", "secret": "4f51c219d4", "media": "photo", "latitude": "30.610717", "id": "4428017666", "tags": "classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:12", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4032/4428017628_a0bba31c75_o.jpg", "secret": "e624f633a1", "media": "photo", "latitude": "30.610717", "id": "4428017628", "tags": "students classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:13", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4008/4427253319_e001fc3185_o.jpg", "secret": "7c17271582", "media": "photo", "latitude": "30.610717", "id": "4427253319", "tags": "students classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:14", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2713/4427253275_2216cd6214_o.jpg", "secret": "1d36d22909", "media": "photo", "latitude": "30.610717", "id": "4427253275", "tags": "students classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:15", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4001/4428017544_a29550fbc8_o.jpg", "secret": "60ea2e5733", "media": "photo", "latitude": "30.610717", "id": "4428017544", "tags": "students classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:16", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4002/4427253299_b0d7d9f05e_o.jpg", "secret": "60b045fe9f", "media": "photo", "latitude": "30.610717", "id": "4427253299", "tags": "students classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:17", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4045/4428017562_ce0eb7012f_o.jpg", "secret": "94880e3183", "media": "photo", "latitude": "30.610717", "id": "4428017562", "tags": "students classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:18", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2783/4428017594_e20c566129_o.jpg", "secret": "daa0eab40b", "media": "photo", "latitude": "30.610717", "id": "4428017594", "tags": "students classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-07-20 00:00:19", "license": "3", "title": "Bernie Sensale visits Mays", "text": "", "album_id": "72157623607493402", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2487/4428017550_f924a3db4c_o.jpg", "secret": "6a39e0a9ee", "media": "photo", "latitude": "30.610717", "id": "4428017550", "tags": "students classroom lecture texasam tamu maysbusinessschool berniesensale"}, {"datetaken": "2005-10-28 00:00:00", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4007/4428192388_e55436f96a_o.jpg", "secret": "fa0080c895", "media": "photo", "latitude": "30.610717", "id": "4428192388", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:01", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4028/4427427811_a1a3fb3a78_o.jpg", "secret": "c2e566636e", "media": "photo", "latitude": "30.610717", "id": "4427427811", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:02", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2687/4427427795_29b173648e_o.jpg", "secret": "37e54ab5d6", "media": "photo", "latitude": "30.610717", "id": "4427427795", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:03", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4026/4428192334_9515ce2a7d_o.jpg", "secret": "c18a03b953", "media": "photo", "latitude": "30.610717", "id": "4428192334", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:04", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2802/4427427761_b6fde578c1_o.jpg", "secret": "b146fde7bd", "media": "photo", "latitude": "30.610717", "id": "4427427761", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:05", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4045/4427427787_4ff103c207_o.jpg", "secret": "5c3e6b58aa", "media": "photo", "latitude": "30.610717", "id": "4427427787", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:06", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2444/4428192374_790494a1d9_o.jpg", "secret": "512318dbcb", "media": "photo", "latitude": "30.610717", "id": "4428192374", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:07", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4047/4427427739_f154810440_o.jpg", "secret": "b468b2e8c2", "media": "photo", "latitude": "30.610717", "id": "4427427739", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:08", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2689/4427427755_1cf99e0647_o.jpg", "secret": "961a9eb4f4", "media": "photo", "latitude": "30.610717", "id": "4427427755", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:09", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2694/4427427749_a126c0a5b6_o.jpg", "secret": "034cf4e2a7", "media": "photo", "latitude": "30.610717", "id": "4427427749", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:10", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2769/4428192236_3501112116_o.jpg", "secret": "e6cdfe6c1d", "media": "photo", "latitude": "30.610717", "id": "4428192236", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:11", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2707/4428192296_0c87e16f86_o.jpg", "secret": "d7c389cdf1", "media": "photo", "latitude": "30.610717", "id": "4428192296", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:12", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2577/4427427719_93def1d5cb_o.jpg", "secret": "4bd248fba8", "media": "photo", "latitude": "30.610717", "id": "4427427719", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:13", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4001/4428192266_bcb26d52cf_o.jpg", "secret": "50e5c2a68c", "media": "photo", "latitude": "30.610717", "id": "4428192266", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:14", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2716/4427427697_667b008e8d_o.jpg", "secret": "204f53eb93", "media": "photo", "latitude": "30.610717", "id": "4427427697", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:15", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4012/4427427685_3c0a3061ff_o.jpg", "secret": "ec507bd3be", "media": "photo", "latitude": "30.610717", "id": "4427427685", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:16", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2732/4427427665_2197124137_o.jpg", "secret": "4fba66d775", "media": "photo", "latitude": "30.610717", "id": "4427427665", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:17", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4062/4428192216_6abee3ba38_o.jpg", "secret": "a5ace17b9c", "media": "photo", "latitude": "30.610717", "id": "4428192216", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:18", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4057/4428192204_1c8189afe4_o.jpg", "secret": "c2b430e220", "media": "photo", "latitude": "30.610717", "id": "4428192204", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:19", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2234/4428192192_ca34d16e2b_o.jpg", "secret": "606ff4f1f1", "media": "photo", "latitude": "30.610717", "id": "4428192192", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:20", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4022/4428192190_928f8251b1_o.jpg", "secret": "08386ef8e8", "media": "photo", "latitude": "30.610717", "id": "4428192190", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:21", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4051/4427427623_865f0ef322_o.jpg", "secret": "e1e82feecd", "media": "photo", "latitude": "30.610717", "id": "4427427623", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:22", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2707/4428192140_a4e816bb59_o.jpg", "secret": "a2fc49d61b", "media": "photo", "latitude": "30.610717", "id": "4428192140", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:23", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4001/4427427605_f5553b0007_o.jpg", "secret": "b0cc503178", "media": "photo", "latitude": "30.610717", "id": "4427427605", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:24", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2770/4427427575_691bf61427_o.jpg", "secret": "5275ea67b1", "media": "photo", "latitude": "30.610717", "id": "4427427575", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:25", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2782/4428192134_dac3d412d3_o.jpg", "secret": "8c2ac1cfcf", "media": "photo", "latitude": "30.610717", "id": "4428192134", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:26", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2707/4427427569_30e18afb3b_o.jpg", "secret": "cb26b58243", "media": "photo", "latitude": "30.610717", "id": "4427427569", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:27", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2581/4427427555_6395f2787c_o.jpg", "secret": "7ff75a7833", "media": "photo", "latitude": "30.610717", "id": "4427427555", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:28", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4058/4427427545_fa4b4e1556_o.jpg", "secret": "e6a4e091af", "media": "photo", "latitude": "30.610717", "id": "4427427545", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:29", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2697/4427427515_86742b5e66_o.jpg", "secret": "b90dfcbcc1", "media": "photo", "latitude": "30.610717", "id": "4427427515", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:30", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4063/4427427533_1745dd7582_o.jpg", "secret": "50257e98b0", "media": "photo", "latitude": "30.610717", "id": "4427427533", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:31", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4030/4428192078_7c21d4d95b_o.jpg", "secret": "553e6b6d6b", "media": "photo", "latitude": "30.610717", "id": "4428192078", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:32", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2775/4428192060_e039ab879b_o.jpg", "secret": "b0e7eb1558", "media": "photo", "latitude": "30.610717", "id": "4428192060", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:33", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2708/4428192048_01236be3ab_o.jpg", "secret": "98d2df46f3", "media": "photo", "latitude": "30.610717", "id": "4428192048", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:34", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4004/4427427467_afbc7416e3_o.jpg", "secret": "9bf349cbe8", "media": "photo", "latitude": "30.610717", "id": "4427427467", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:35", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4021/4427427495_03278d5577_o.jpg", "secret": "dd9239bfa4", "media": "photo", "latitude": "30.610717", "id": "4427427495", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:36", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2758/4427427485_c6fb1a9b80_o.jpg", "secret": "9fa3468761", "media": "photo", "latitude": "30.610717", "id": "4427427485", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:37", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2775/4428191998_3d9830c803_o.jpg", "secret": "6a2db23f0d", "media": "photo", "latitude": "30.610717", "id": "4428191998", "tags": "classroom lecture texasam tamu maysbusinessschool"}, {"datetaken": "2005-10-28 00:00:38", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2234/4428191974_0d9c94b7e6_o.jpg", "secret": "a725fc2b88", "media": "photo", "latitude": "30.610717", "id": "4428191974", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:39", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4037/4427427431_6d599841a0_o.jpg", "secret": "c3ef21c27d", "media": "photo", "latitude": "30.610717", "id": "4427427431", "tags": "classroom lecture texasam tamu maysbusinessschool"}, {"datetaken": "2005-10-28 00:00:40", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2758/4428191994_c575aef69d_o.jpg", "secret": "0e7541f610", "media": "photo", "latitude": "30.610717", "id": "4428191994", "tags": "classroom lecture texasam tamu maysbusinessschool"}, {"datetaken": "2005-10-28 00:00:41", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4038/4428191980_83be49cafc_o.jpg", "secret": "1d74df4dc9", "media": "photo", "latitude": "30.610717", "id": "4428191980", "tags": "classroom lecture texasam tamu maysbusinessschool"}, {"datetaken": "2005-10-28 00:00:42", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4036/4428191960_e4d6500f46_o.jpg", "secret": "c496951a61", "media": "photo", "latitude": "30.610717", "id": "4428191960", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2005-10-28 00:00:43", "license": "3", "title": "Grant Sims visits Mays", "text": "", "album_id": "72157623483419823", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4014/4428191948_1053a97b1e_o.jpg", "secret": "bf5888eb99", "media": "photo", "latitude": "30.610717", "id": "4428191948", "tags": "classroom lecture texasam tamu maysbusinessschool grantsims"}, {"datetaken": "2010-01-10 15:06:03", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-8919", "text": "", "album_id": "72157623195497506", "longitude": "8.553285", "url_o": "https://farm3.staticflickr.com/2752/4268425753_fa562a7d3a_o.jpg", "secret": "559ce6ec26", "media": "photo", "latitude": "47.411230", "id": "4268425753", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode z\u00fcrch hochzeitskleider festkleider messez\u00fcrich hochzeitsmode festmesse hochzeitsfotograph festmode hochzeitzmesse hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:07:43", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-8928", "text": "", "album_id": "72157623195497506", "longitude": "8.553285", "url_o": "https://farm5.staticflickr.com/4005/4268425755_3afbfdf1d8_o.jpg", "secret": "ec64e788c2", "media": "photo", "latitude": "47.411230", "id": "4268425755", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode z\u00fcrch hochzeitskleider festkleider messez\u00fcrich hochzeitsmode festmesse hochzeitsfotograph festmode hochzeitzmesse hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:11:34", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-8963", "text": "", "album_id": "72157623195497506", "longitude": "8.553285", "url_o": "https://farm5.staticflickr.com/4022/4268425759_101e0da6e4_o.jpg", "secret": "c68e599cba", "media": "photo", "latitude": "47.411230", "id": "4268425759", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode z\u00fcrch hochzeitskleider festkleider messez\u00fcrich hochzeitsmode festmesse hochzeitsfotograph festmode hochzeitzmesse hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:13:14", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-8964", "text": "", "album_id": "72157623195497506", "longitude": "8.553285", "url_o": "https://farm5.staticflickr.com/4013/4268425765_d745822d7c_o.jpg", "secret": "d3cbb1f651", "media": "photo", "latitude": "47.411230", "id": "4268425765", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode z\u00fcrch hochzeitskleider festkleider messez\u00fcrich hochzeitsmode festmesse hochzeitsfotograph festmode hochzeitzmesse hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:13:26", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-8977", "text": "", "album_id": "72157623195497506", "longitude": "8.553285", "url_o": "https://farm3.staticflickr.com/2722/4268425767_17949ca463_o.jpg", "secret": "a25b6498ff", "media": "photo", "latitude": "47.411230", "id": "4268425767", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode z\u00fcrch hochzeitskleider festkleider messez\u00fcrich hochzeitsmode festmesse hochzeitsfotograph festmode hochzeitzmesse hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:14:23", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-8994", "text": "", "album_id": "72157623195497506", "longitude": "8.553285", "url_o": "https://farm5.staticflickr.com/4060/4268425769_ea1c16b45a_o.jpg", "secret": "dc890f6bb2", "media": "photo", "latitude": "47.411230", "id": "4268425769", "tags": "men mann fest mode hochzeit 2010 anzug braut projectphoto brautmode z\u00fcrch hochzeitskleider festkleider hochzeitsanzug messez\u00fcrich festmesse herrenanzug festmode hochzeitzmesse wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:17:00", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9699", "text": "", "album_id": "72157623195497506", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4277223813_2544b97a3e_o.jpg", "secret": "37511e796f", "media": "photo", "latitude": "0", "id": "4277223813", "tags": "moda mariage fest baden mode hochzeit couture herve fot\u00f3grafo sposa 2010 fotografo novia nozze nupcias weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode hochzeitskleider messez\u00fcrich hochzeitsfotograph hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:17:33", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9706", "text": "", "album_id": "72157623195497506", "longitude": "8.553285", "url_o": "https://farm5.staticflickr.com/4048/4269214614_1023720eef_o.jpg", "secret": "a9e5f8b674", "media": "photo", "latitude": "47.411230", "id": "4269214614", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode hochzeitsfotograph festmode hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:18:45", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9707", "text": "", "album_id": "72157623195497506", "longitude": "8.553285", "url_o": "https://farm5.staticflickr.com/4014/4269214620_3644ddf4ac_o.jpg", "secret": "756280b9dd", "media": "photo", "latitude": "47.411230", "id": "4269214620", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode hochzeitsfotograph festmode hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:18:52", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9713", "text": "", "album_id": "72157623195497506", "longitude": "8.553285", "url_o": "https://farm3.staticflickr.com/2754/4269214622_c14539c77d_o.jpg", "secret": "c0dafb7891", "media": "photo", "latitude": "47.411230", "id": "4269214622", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode hochzeitsfotograph festmode hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:20:17", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9720", "text": "", "album_id": "72157623195497506", "longitude": "8.553285", "url_o": "https://farm3.staticflickr.com/2742/4268475939_905b4306e8_o.jpg", "secret": "984114bb78", "media": "photo", "latitude": "47.411230", "id": "4268475939", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode hochzeitsfotograph festmode hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:21:56", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9727", "text": "", "album_id": "72157623195497506", "longitude": "8.553285", "url_o": "https://farm5.staticflickr.com/4057/4268475945_80ebd20abc_o.jpg", "secret": "6056e3ed83", "media": "photo", "latitude": "47.411230", "id": "4268475945", "tags": "wedding men bride mann weddingdress fest fashionshow mode hochzeit catwalk sposa 2010 bridalshow anzug weddinggown modenschau braut brautkleid projectphoto brautmode hochzeitskleider festkleider hochzeitsanzug messez\u00fcrich hochzeitsmode herrenanzug festmode wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:21:59", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9733", "text": "", "album_id": "72157623195497506", "longitude": "8.553285", "url_o": "https://farm3.staticflickr.com/2725/4268475949_9627566e67_o.jpg", "secret": "80a4e4fa23", "media": "photo", "latitude": "47.411230", "id": "4268475949", "tags": "wedding men bride mann weddingdress fest fashionshow mode hochzeit catwalk sposa 2010 bridalshow anzug weddinggown modenschau braut brautkleid projectphoto brautmode hochzeitskleider festkleider hochzeitsanzug messez\u00fcrich hochzeitsmode herrenanzug festmode wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:24:19", "license": "1", "title": "Under the spot", "text": "", "album_id": "72157623195497506", "longitude": "8.553285", "url_o": "https://farm3.staticflickr.com/2729/4268475953_d8029eac68_o.jpg", "secret": "c3a033cc99", "media": "photo", "latitude": "47.411230", "id": "4268475953", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode hochzeitsfotograph festmode hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:24:24", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9021", "text": "", "album_id": "72157623195497506", "longitude": "8.553285", "url_o": "https://farm5.staticflickr.com/4018/4269214606_a26c635233_o.jpg", "secret": "f343175672", "media": "photo", "latitude": "47.411230", "id": "4269214606", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode hochzeitsfotograph festmode hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:24:30", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9026", "text": "", "album_id": "72157623195497506", "longitude": "8.553285", "url_o": "https://farm3.staticflickr.com/2713/4269214612_128b2f241c_o.jpg", "secret": "421133b60d", "media": "photo", "latitude": "47.411230", "id": "4269214612", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode hochzeitsfotograph festmode hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:32:19", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9774", "text": "", "album_id": "72157623195497506", "longitude": "8.553285", "url_o": "https://farm3.staticflickr.com/2748/4268475955_6a56d5451e_o.jpg", "secret": "361751317c", "media": "photo", "latitude": "47.411230", "id": "4268475955", "tags": "wedding bride weddingdress fest fashionshow mode hochzeit catwalk sposa 2010 bridalshow weddinggown modenschau braut brautkleid projectphoto brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode festmode wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:32:29", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9778", "text": "", "album_id": "72157623195497506", "longitude": "8.553285", "url_o": "https://farm3.staticflickr.com/2689/4268475959_1abc24d5b5_o.jpg", "secret": "70b91de951", "media": "photo", "latitude": "47.411230", "id": "4268475959", "tags": "wedding bride weddingdress fest fashionshow mode hochzeit catwalk sposa 2010 bridalshow weddinggown modenschau braut brautkleid projectphoto brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode festmode wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:38:57", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9821", "text": "", "album_id": "72157623195497506", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4271290456_f33a4f4494_o.jpg", "secret": "9173fe6cc5", "media": "photo", "latitude": "0", "id": "4271290456", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode hochzeitsfotograph festmode hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:39:02", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9825", "text": "", "album_id": "72157623195497506", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4271290458_79b2bb323f_o.jpg", "secret": "6e957d51dc", "media": "photo", "latitude": "0", "id": "4271290458", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode hochzeitsfotograph festmode hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:39:12", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9828", "text": "", "album_id": "72157623195497506", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/4271290462_7387d09d1e_o.jpg", "secret": "142bec7d54", "media": "photo", "latitude": "0", "id": "4271290462", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode hochzeitsfotograph festmode hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:45:56", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9857", "text": "", "album_id": "72157623195497506", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2794/4271290464_6e397484f2_o.jpg", "secret": "e1be0dc0f6", "media": "photo", "latitude": "0", "id": "4271290464", "tags": "wedding bride weddingdress fest fashionshow mode hochzeit catwalk sposa 2010 bridalshow weddinggown modenschau braut brautkleid projectphoto brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode festmode wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:49:15", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9866", "text": "", "album_id": "72157623195497506", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4271290466_9cebd1602f_o.jpg", "secret": "92207d0ac3", "media": "photo", "latitude": "0", "id": "4271290466", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode hochzeitsfotograph festmode hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:54:47", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9888", "text": "", "album_id": "72157623195497506", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4271290468_e7405ddfae_o.jpg", "secret": "162b27d039", "media": "photo", "latitude": "0", "id": "4271290468", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode hochzeitsfotograph festmode hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:55:05", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9897", "text": "", "album_id": "72157623195497506", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4270547809_0b49f171c8_o.jpg", "secret": "940555de3f", "media": "photo", "latitude": "0", "id": "4270547809", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode hochzeitsfotograph festmode hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:56:09", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9903", "text": "", "album_id": "72157623195497506", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4270547821_d883d6b3c6_o.jpg", "secret": "7cee19b9b4", "media": "photo", "latitude": "0", "id": "4270547821", "tags": "men mann fest mode hochzeit 2010 anzug braut projectphoto brautmode hochzeitskleider festkleider hochzeitsanzug messez\u00fcrich herrenanzug festmode wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:56:14", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9904", "text": "", "album_id": "72157623195497506", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4270547823_85367e8783_o.jpg", "secret": "0437922726", "media": "photo", "latitude": "0", "id": "4270547823", "tags": "men mann fest mode hochzeit 2010 anzug braut projectphoto brautmode hochzeitskleider festkleider hochzeitsanzug messez\u00fcrich herrenanzug festmode wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:57:50", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9912", "text": "", "album_id": "72157623195497506", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4270547829_830bf35833_o.jpg", "secret": "db2f495213", "media": "photo", "latitude": "0", "id": "4270547829", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode hochzeitsfotograph festmode hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 15:58:32", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9920", "text": "", "album_id": "72157623195497506", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4270547837_b8c26df463_o.jpg", "secret": "d43f1fecbc", "media": "photo", "latitude": "0", "id": "4270547837", "tags": "wedding bride moda weddingdress mariage fest fashionshow baden mode hochzeit couture herve fot\u00f3grafo catwalk sposa 2010 fotografo novia bridalshow nozze nupcias weddinggown modenschau weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsmode hochzeitsfotograph festmode hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-10 16:00:21", "license": "1", "title": "Fest_und_hochzeitsmesse_Z\u00fcrich_2010_-9934", "text": "", "album_id": "72157623195497506", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4270547839_18ff600818_o.jpg", "secret": "292c100b76", "media": "photo", "latitude": "0", "id": "4270547839", "tags": "moda mariage fest baden mode hochzeit couture herve fot\u00f3grafo sposa 2010 fotografo novia nozze nupcias weddingphotographer braut kleid brautkleid weddingphotography fidanzata projectphoto hochzeitskleid hochzeitsfotografie hochzeitsphotographie hochzeitsfotograf hochzeitsphotograph brautmode hochzeitskleider festkleider messez\u00fcrich hochzeitsfotograph festmode hochzeitsphotograf hochzeitsphotografie hochzeitsfotographie modadasposa fotografodinozze wwwprojectphotoch projectphotoch"}, {"datetaken": "2010-01-13 05:04:07", "license": "4", "title": "Spot the mental cyclist...", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4270994371_1f6d58333b_o.jpg", "secret": "d2b3cc0f61", "media": "photo", "latitude": "0", "id": "4270994371", "tags": ""}, {"datetaken": "2010-01-13 05:04:18", "license": "4", "title": "Ham common whiteout", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4270994287_2aee4da87d_o.jpg", "secret": "811b6a78fa", "media": "photo", "latitude": "0", "id": "4270994287", "tags": ""}, {"datetaken": "2010-01-13 05:36:50", "license": "4", "title": "Snowy Road", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4271739650_bbcdc06038_o.jpg", "secret": "b3d324d8df", "media": "photo", "latitude": "0", "id": "4271739650", "tags": ""}, {"datetaken": "2010-01-13 05:57:30", "license": "4", "title": "\"Stay!\"", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4271739956_19b5c58cb9_o.jpg", "secret": "4a62539f49", "media": "photo", "latitude": "0", "id": "4271739956", "tags": ""}, {"datetaken": "2010-01-13 06:06:41", "license": "4", "title": "Discarded Xmas tree gets a last sprinkling of festivity", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4271038077_cb505b6ab7_o.jpg", "secret": "8d1e5b9ede", "media": "photo", "latitude": "0", "id": "4271038077", "tags": ""}, {"datetaken": "2010-01-13 06:08:06", "license": "4", "title": "Visiting redwing", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4271784506_74137e3f3e_o.jpg", "secret": "23a6314ca5", "media": "photo", "latitude": "0", "id": "4271784506", "tags": "snow"}, {"datetaken": "2010-01-13 06:08:32", "license": "4", "title": "Redwing in front of red brick", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4271041961_a96ba28909_o.jpg", "secret": "5fb3b01868", "media": "photo", "latitude": "0", "id": "4271041961", "tags": ""}, {"datetaken": "2010-01-13 06:09:06", "license": "4", "title": "Pair of redwings", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2776/4271788370_f577e529b3_o.jpg", "secret": "f627f68ec3", "media": "photo", "latitude": "0", "id": "4271788370", "tags": ""}, {"datetaken": "2010-01-13 06:10:23", "license": "4", "title": "Blackbird on a white tree", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4271791866_92065bd358_o.jpg", "secret": "ab9fc1d83c", "media": "photo", "latitude": "0", "id": "4271791866", "tags": ""}, {"datetaken": "2010-01-13 06:12:58", "license": "4", "title": "Pooch paw prints in the snow", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4271050421_8c3e5c29b0_o.jpg", "secret": "09817b0460", "media": "photo", "latitude": "0", "id": "4271050421", "tags": ""}, {"datetaken": "2010-01-13 06:13:32", "license": "4", "title": "Struggling sun", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4271052725_aa146f6f32_o.jpg", "secret": "1b654f701e", "media": "photo", "latitude": "0", "id": "4271052725", "tags": ""}, {"datetaken": "2010-01-13 06:14:37", "license": "4", "title": "Up to my ankles in the snow", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4271798716_2555622b25_o.jpg", "secret": "a63f92bce1", "media": "photo", "latitude": "0", "id": "4271798716", "tags": ""}, {"datetaken": "2010-01-13 06:16:17", "license": "4", "title": "Winter wasteland", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4271800010_f8f7fdb99a_o.jpg", "secret": "46aa394303", "media": "photo", "latitude": "0", "id": "4271800010", "tags": ""}, {"datetaken": "2010-01-13 06:16:28", "license": "4", "title": "Oddly no children playing today...", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4271801406_4f3056dd3d_o.jpg", "secret": "7045b56876", "media": "photo", "latitude": "0", "id": "4271801406", "tags": ""}, {"datetaken": "2010-01-13 06:16:55", "license": "4", "title": "Secret garden gate", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4271057987_79dd9623c2_o.jpg", "secret": "c67ca05334", "media": "photo", "latitude": "0", "id": "4271057987", "tags": ""}, {"datetaken": "2010-01-13 06:17:33", "license": "4", "title": "Looking for buried treasure", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4271804204_d6e2e63967_o.jpg", "secret": "220b404756", "media": "photo", "latitude": "0", "id": "4271804204", "tags": ""}, {"datetaken": "2010-01-13 06:18:42", "license": "4", "title": "Snowy fir tree", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4271063675_7574f0f15e_o.jpg", "secret": "49f9491c0b", "media": "photo", "latitude": "0", "id": "4271063675", "tags": ""}, {"datetaken": "2010-01-13 06:19:23", "license": "4", "title": "Fallen branches", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4271066969_5e8a64e216_o.jpg", "secret": "673835e7c3", "media": "photo", "latitude": "0", "id": "4271066969", "tags": ""}, {"datetaken": "2010-01-13 06:22:38", "license": "4", "title": "Robin the robin", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4271818808_5c03981c2d_o.jpg", "secret": "25758eba38", "media": "photo", "latitude": "0", "id": "4271818808", "tags": ""}, {"datetaken": "2010-01-13 06:23:14", "license": "4", "title": "Bit parky for parakeets...", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4271820020_3d0ba9c7ed_o.jpg", "secret": "c6cfcc998a", "media": "photo", "latitude": "0", "id": "4271820020", "tags": ""}, {"datetaken": "2010-01-13 06:27:03", "license": "4", "title": "A rather cold cormorant", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4271823028_c69c3ff1fd_o.jpg", "secret": "2f356902e1", "media": "photo", "latitude": "0", "id": "4271823028", "tags": ""}, {"datetaken": "2010-01-13 06:27:52", "license": "4", "title": "I want to live there...", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2778/4271202845_57c788b046_o.jpg", "secret": "c3fc65654c", "media": "photo", "latitude": "0", "id": "4271202845", "tags": ""}, {"datetaken": "2010-01-13 06:28:55", "license": "4", "title": "Snowy barges", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4271827472_fdee660621_o.jpg", "secret": "3ed9e3f52a", "media": "photo", "latitude": "0", "id": "4271827472", "tags": ""}, {"datetaken": "2010-01-13 06:29:57", "license": "4", "title": "Great Great Tit", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4271083821_e40676d271_o.jpg", "secret": "98cb0a39b9", "media": "photo", "latitude": "0", "id": "4271083821", "tags": ""}, {"datetaken": "2010-01-13 06:32:11", "license": "4", "title": "Spot the Nuthatch!", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2712/4271085133_64c112c963_o.jpg", "secret": "1429896c66", "media": "photo", "latitude": "0", "id": "4271085133", "tags": ""}, {"datetaken": "2010-01-13 08:12:48", "license": "4", "title": "Binky the death defying blue tit", "text": "", "album_id": "72157623202372812", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4271270849_2d92be48d2_o.jpg", "secret": "5b54760778", "media": "photo", "latitude": "0", "id": "4271270849", "tags": "birdfeeder"}, {"datetaken": "2010-02-13 13:25:40", "license": "2", "title": "Emmy Playing Soccer", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4356834093_e1545accfd_o.jpg", "secret": "79e79118be", "media": "photo", "latitude": "0", "id": "4356834093", "tags": "soccer emilyheatherington"}, {"datetaken": "2010-02-13 13:26:02", "license": "2", "title": "Emmy's Throw-in", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4356835203_fb8d4f0dbc_o.jpg", "secret": "223c1da8c6", "media": "photo", "latitude": "0", "id": "4356835203", "tags": "soccer emilyheatherington"}, {"datetaken": "2010-02-13 13:45:00", "license": "2", "title": "Emmy on the Field", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4357584336_8b976cbeef_o.jpg", "secret": "cf5dc61764", "media": "photo", "latitude": "0", "id": "4357584336", "tags": "soccer emilyheatherington"}, {"datetaken": "2010-02-13 13:45:46", "license": "2", "title": "Carrie and her Dad at the Soccer Game", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4356837003_06c8dae8bf_o.jpg", "secret": "8af6549568", "media": "photo", "latitude": "0", "id": "4356837003", "tags": "emilyheatherington dougheatherington"}, {"datetaken": "2010-02-13 13:51:06", "license": "2", "title": "Carrie and Emmy at the Soccer Game", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4357585656_db60e1f065_o.jpg", "secret": "55023c4ae5", "media": "photo", "latitude": "0", "id": "4357585656", "tags": "emilyheatherington carrienichols"}, {"datetaken": "2010-02-13 13:51:22", "license": "2", "title": "Emmy's Parents at the Soccer Game", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4356838501_2acb57d25e_o.jpg", "secret": "2e9529c07e", "media": "photo", "latitude": "0", "id": "4356838501", "tags": "jodiheatherington dougheatherington"}, {"datetaken": "2010-02-14 09:43:28", "license": "2", "title": "Breakfast with Friends", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4357587356_93352c8432_o.jpg", "secret": "57e31ed4f2", "media": "photo", "latitude": "0", "id": "4357587356", "tags": "emilyheatherington carrienichols laurasamples"}, {"datetaken": "2010-02-14 10:47:47", "license": "2", "title": "Space Needle from Capitol Hill", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4357589006_c0d0fb0347_o.jpg", "secret": "e528f43c8b", "media": "photo", "latitude": "0", "id": "4357589006", "tags": "seattle spaceneedle capitolhill"}, {"datetaken": "2010-02-14 10:51:04", "license": "2", "title": "Cat in the Window", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4356843023_f9a8b6e7bc_o.jpg", "secret": "9b9412eb6b", "media": "photo", "latitude": "0", "id": "4356843023", "tags": "seattle cat capitolhill"}, {"datetaken": "2010-02-14 10:51:25", "license": "2", "title": "Apartments in Capitol Hill", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2719/4356843831_8e3a7a2e6a_o.jpg", "secret": "bb04a1a8d2", "media": "photo", "latitude": "0", "id": "4356843831", "tags": "seattle capitolhill"}, {"datetaken": "2010-02-14 11:03:53", "license": "2", "title": "View from Volunteer Park Observation Tower", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4356845411_c22f3764bc_o.jpg", "secret": "2583ae3c07", "media": "photo", "latitude": "0", "id": "4356845411", "tags": "seattle observation watertower conservatory volunteerpark capitolhill asianartmuseum"}, {"datetaken": "2010-02-14 11:07:03", "license": "2", "title": "View from Volunteer Park Observation Tower", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4357594434_d16522b0bc_o.jpg", "secret": "beefdf75f8", "media": "photo", "latitude": "0", "id": "4357594434", "tags": "seattle observation watertower lakewashington volunteerpark capitolhill floatingbridge i520"}, {"datetaken": "2010-02-14 11:07:53", "license": "2", "title": "View from Volunteer Park Observation Tower", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4357594854_1e92eee5f7_o.jpg", "secret": "dfa17cc111", "media": "photo", "latitude": "0", "id": "4357594854", "tags": "seattle observation downtown watertower volunteerpark bellevue capitolhill"}, {"datetaken": "2010-02-14 11:08:56", "license": "2", "title": "View from Volunteer Park Observation Tower", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4356847217_b6db27f3cb_o.jpg", "secret": "554d64866a", "media": "photo", "latitude": "0", "id": "4356847217", "tags": "seattle house observation watertower mansion volunteerpark capitolhill"}, {"datetaken": "2010-02-14 11:09:18", "license": "2", "title": "View from Volunteer Park Observation Tower", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2768/4356847709_b4bde6083b_o.jpg", "secret": "7afa437c5a", "media": "photo", "latitude": "0", "id": "4356847709", "tags": "seattle observation downtown watertower volunteerpark capitolhill"}, {"datetaken": "2010-02-14 11:09:29", "license": "2", "title": "View from Volunteer Park Observation Tower", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4356849417_ed761fa53d_o.jpg", "secret": "6ba5b911ba", "media": "photo", "latitude": "0", "id": "4356849417", "tags": "seattle observation downtown watertower volunteerpark capitolhill"}, {"datetaken": "2010-02-14 11:09:54", "license": "2", "title": "View from Volunteer Park Observation Tower", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4357598402_a6ed0f161e_o.jpg", "secret": "3184d105d8", "media": "photo", "latitude": "0", "id": "4357598402", "tags": "seattle observation watertower spaceneedle volunteerpark capitolhill"}, {"datetaken": "2010-02-14 11:10:11", "license": "2", "title": "View from Volunteer Park Observation Tower", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4356850913_8eace3eabe_o.jpg", "secret": "d4cfdc4224", "media": "photo", "latitude": "0", "id": "4356850913", "tags": "seattle observation watertower spaceneedle volunteerpark capitolhill queenannehill"}, {"datetaken": "2010-02-14 11:12:32", "license": "2", "title": "Map of Volunteer Park", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4356851787_ec27cebdb4_o.jpg", "secret": "1afe983aa8", "media": "photo", "latitude": "0", "id": "4356851787", "tags": "seattle map volunteerpark capitolhill"}, {"datetaken": "2010-02-14 11:19:00", "license": "2", "title": "Volunteer Park Observation Tower", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2716/4357600780_91a9caf39a_o.jpg", "secret": "e8cfd865fe", "media": "photo", "latitude": "0", "id": "4357600780", "tags": "seattle observation watertower volunteerpark capitolhill emilyheatherington"}, {"datetaken": "2010-02-14 11:21:10", "license": "2", "title": "Volunteer Park Resevoir", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4357601500_02a306fac0_o.jpg", "secret": "de2fd7985c", "media": "photo", "latitude": "0", "id": "4357601500", "tags": "seattle volunteerpark capitolhill"}, {"datetaken": "2010-02-14 11:21:21", "license": "2", "title": "Volunteer Park Resevoir", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4357602240_740cf1f3a9_o.jpg", "secret": "17344212ee", "media": "photo", "latitude": "0", "id": "4357602240", "tags": "seattle volunteerpark capitolhill"}, {"datetaken": "2010-02-14 11:23:47", "license": "2", "title": "Seattle Asian Art Museum", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2737/4357602874_4943958dab_o.jpg", "secret": "5143ec9c17", "media": "photo", "latitude": "0", "id": "4357602874", "tags": "seattle volunteerpark capitolhill asianartmuseum"}, {"datetaken": "2010-02-14 11:25:31", "license": "2", "title": "Parkside Amphitheater", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2689/4356855683_0a0d789122_o.jpg", "secret": "c45803b1de", "media": "photo", "latitude": "0", "id": "4356855683", "tags": "seattle amphitheater volunteerpark capitolhill"}, {"datetaken": "2010-02-14 11:26:29", "license": "2", "title": "Neat Climbing Tree", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4356856583_b6c3d614bd_o.jpg", "secret": "9665dd2fc7", "media": "photo", "latitude": "0", "id": "4356856583", "tags": "seattle volunteerpark capitolhill"}, {"datetaken": "2010-02-14 11:27:51", "license": "2", "title": "Volunteer Park Conservatory (Exterior)", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4357605450_380b2f7026_o.jpg", "secret": "2710a72c63", "media": "photo", "latitude": "0", "id": "4357605450", "tags": "seattle cactus cacti capitolhill volunteerparkconservatory"}, {"datetaken": "2010-02-14 11:32:31", "license": "2", "title": "Volunteer Park Conservatory (Interior)", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4357606314_e389cf80e5_o.jpg", "secret": "3af4afb24f", "media": "photo", "latitude": "0", "id": "4357606314", "tags": "seattle cactus cacti capitolhill volunteerparkconservatory"}, {"datetaken": "2010-02-14 11:32:46", "license": "2", "title": "Volunteer Park Conservatory (Interior)", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4357607434_8266856d61_o.jpg", "secret": "68d6b21101", "media": "photo", "latitude": "0", "id": "4357607434", "tags": "seattle cactus cacti capitolhill volunteerparkconservatory"}, {"datetaken": "2010-02-14 11:33:40", "license": "2", "title": "Volunteer Park Conservatory (Interior)", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4357608140_4a2174606c_o.jpg", "secret": "73501b3746", "media": "photo", "latitude": "0", "id": "4357608140", "tags": "seattle flower daffodil capitolhill volunteerparkconservatory"}, {"datetaken": "2010-02-14 11:36:15", "license": "2", "title": "Volunteer Park Conservatory (Interior)", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4357609052_402f861334_o.jpg", "secret": "5a9d437bf3", "media": "photo", "latitude": "0", "id": "4357609052", "tags": "seattle plant flower capitolhill volunteerparkconservatory"}, {"datetaken": "2010-02-14 11:46:31", "license": "2", "title": "Lake View Cemetery", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4356861577_7fa4d2deec_o.jpg", "secret": "8500879214", "media": "photo", "latitude": "0", "id": "4356861577", "tags": "seattle volunteerpark capitolhill lakeviewcemetery"}, {"datetaken": "2010-02-14 11:46:48", "license": "2", "title": "Lake View Cemetery", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4356862347_8ef5ece4d5_o.jpg", "secret": "0fb5f1b874", "media": "photo", "latitude": "0", "id": "4356862347", "tags": "seattle volunteerpark capitolhill lakeviewcemetery"}, {"datetaken": "2010-02-14 11:54:57", "license": "2", "title": "Volunteer Park", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2747/4357578832_f986acaf88_o.jpg", "secret": "8ed48ac504", "media": "photo", "latitude": "0", "id": "4357578832", "tags": "seattle conservatory volunteerpark capitolhill asianartmuseum"}, {"datetaken": "2010-02-14 11:55:57", "license": "2", "title": "Capitol Hill Mansion", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4356831355_3ff4221529_o.jpg", "secret": "6a3dddd418", "media": "photo", "latitude": "0", "id": "4356831355", "tags": "seattle house mansion capitolhill"}, {"datetaken": "2010-02-14 11:56:54", "license": "2", "title": "Capitol Hill Mansion", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4357580470_f5f5022339_o.jpg", "secret": "5abede8b32", "media": "photo", "latitude": "0", "id": "4357580470", "tags": "seattle house mansion capitolhill"}, {"datetaken": "2010-02-14 11:57:34", "license": "2", "title": "14th Ave E", "text": "", "album_id": "72157623552169546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4356833267_4aeb6dcb9a_o.jpg", "secret": "19c2064c79", "media": "photo", "latitude": "0", "id": "4356833267", "tags": "seattle capitolhill"}, {"datetaken": "2010-03-14 03:17:23", "license": "3", "title": "Food vendors -Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2738/4432098824_1630ebc798_o.jpg", "secret": "05973821b2", "media": "photo", "latitude": "0", "id": "4432098824", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 03:24:27", "license": "3", "title": "Happy Clerk- Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4432099612_7792c84fe4_o.jpg", "secret": "e951264b54", "media": "photo", "latitude": "0", "id": "4432099612", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 03:25:38", "license": "3", "title": "Looking at toys -", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4431343983_1c4ef3d43f_o.jpg", "secret": "4c6cf6235b", "media": "photo", "latitude": "0", "id": "4431343983", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 03:34:03", "license": "3", "title": "Fish market -Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4431330211_32410a8384_o.jpg", "secret": "05686ca2d9", "media": "photo", "latitude": "0", "id": "4431330211", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 02:34:18", "license": "3", "title": "Boats in port, Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4432096590_6bf4f193c8_o.jpg", "secret": "ea43420bfd", "media": "photo", "latitude": "0", "id": "4432096590", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 03:35:13", "license": "3", "title": "Dried fish -Good for your bones - Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4432101758_597f7468e9_o.jpg", "secret": "cc9ee27a15", "media": "photo", "latitude": "0", "id": "4432101758", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 03:36:20", "license": "3", "title": "Fish market II -Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4432102780_79b3a25498_o.jpg", "secret": "ddd44bcfe2", "media": "photo", "latitude": "0", "id": "4432102780", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 02:37:08", "license": "3", "title": "looking mean, but really nice, Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2702/4431341969_7b26491ba6_o.jpg", "secret": "d4a773eb0a", "media": "photo", "latitude": "0", "id": "4431341969", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 03:37:46", "license": "3", "title": "Fish market III -Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4432103404_febbe8cd0d_o.jpg", "secret": "c2efe61de3", "media": "photo", "latitude": "0", "id": "4432103404", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 03:39:48", "license": "3", "title": "Fish market IV-Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4432104266_d5c98f01b9_o.jpg", "secret": "f872acfddd", "media": "photo", "latitude": "0", "id": "4432104266", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 02:42:06", "license": "3", "title": "Looking - Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4431342947_4c2c4be218_o.jpg", "secret": "068320b93d", "media": "photo", "latitude": "0", "id": "4431342947", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 02:44:09", "license": "3", "title": "Under the Bridge -Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4432107524_e636313296_o.jpg", "secret": "a86638eff0", "media": "photo", "latitude": "0", "id": "4432107524", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 02:45:42", "license": "3", "title": "Dog and boat - Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4431326935_5c32d46275_o.jpg", "secret": "1721369dd7", "media": "photo", "latitude": "0", "id": "4431326935", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 03:47:41", "license": "3", "title": "Fish market V-Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4431334505_a15a342d49_o.jpg", "secret": "77982909d0", "media": "photo", "latitude": "0", "id": "4431334505", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 02:48:41", "license": "3", "title": "Say Cheese - Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4432108288_001122172a_o.jpg", "secret": "972b33279c", "media": "photo", "latitude": "0", "id": "4432108288", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 02:50:32", "license": "3", "title": "Casting off - Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4431327743_ee5c2b1de7_o.jpg", "secret": "060149117b", "media": "photo", "latitude": "0", "id": "4431327743", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 02:53:48", "license": "3", "title": "Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4432108922_01a1b7bd4a_o.jpg", "secret": "f399b87fe5", "media": "photo", "latitude": "0", "id": "4432108922", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 02:54:17", "license": "3", "title": "Sophia, Eva and Jet - Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2765/4432109854_8e1b10635f_o.jpg", "secret": "26bdf5d196", "media": "photo", "latitude": "0", "id": "4432109854", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 04:07:17", "license": "3", "title": "Bubbles and boy - Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2696/4431335509_c38c6f1509_o.jpg", "secret": "94ce7c2e88", "media": "photo", "latitude": "0", "id": "4431335509", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 04:10:44", "license": "3", "title": "Pooh Scooter - Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4432110596_5739537ec9_o.jpg", "secret": "58417430c0", "media": "photo", "latitude": "0", "id": "4432110596", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 04:13:06", "license": "3", "title": "Jet, Sophia, Eva and Me- Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4432115162_dff5493f05_o.jpg", "secret": "a585c18731", "media": "photo", "latitude": "0", "id": "4432115162", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 04:33:12", "license": "3", "title": "Sunset - Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4432111634_74f938bd15_o.jpg", "secret": "aa7d2a56ff", "media": "photo", "latitude": "0", "id": "4432111634", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 04:38:14", "license": "3", "title": "Me and my boat - Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4432116752_a5252fbe22_o.jpg", "secret": "130f9f20e1", "media": "photo", "latitude": "0", "id": "4432116752", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-14 04:38:44", "license": "3", "title": "El Capitan- Taichung Harbor, Taiwan", "text": "", "album_id": "72157623492838109", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4431336215_b19ae88d70_o.jpg", "secret": "343bc1ec95", "media": "photo", "latitude": "0", "id": "4431336215", "tags": "attributionnoncommercialnoderivativesasofmarch242013"}, {"datetaken": "2010-03-12 22:16:29", "license": "1", "title": "chris visit 3-12-2010", "text": "", "album_id": "72157623620043998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4433324726_6f3643a539_o.jpg", "secret": "b33a6508ef", "media": "photo", "latitude": "0", "id": "4433324726", "tags": ""}, {"datetaken": "2010-03-12 22:29:17", "license": "1", "title": "chris visit 3-12-2010", "text": "", "album_id": "72157623620043998", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4432551407_0c41f6d579_o.jpg", "secret": "5cc64b9173", "media": "photo", "latitude": "0", "id": "4432551407", "tags": ""}, {"datetaken": "2010-03-12 22:29:22", "license": "1", "title": "chris visit 3-12-2010", "text": "", "album_id": "72157623620043998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4432552129_8430f32ffc_o.jpg", "secret": "f5d56ef80a", "media": "photo", "latitude": "0", "id": "4432552129", "tags": ""}, {"datetaken": "2010-03-12 23:37:50", "license": "1", "title": "chris visit 3-12-2010", "text": "", "album_id": "72157623620043998", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4432552775_f1fb5182ff_o.jpg", "secret": "b9810de593", "media": "photo", "latitude": "0", "id": "4432552775", "tags": ""}, {"datetaken": "2010-03-12 23:37:59", "license": "1", "title": "chris visit 3-12-2010", "text": "", "album_id": "72157623620043998", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4433327430_1112b37427_o.jpg", "secret": "882ff49916", "media": "photo", "latitude": "0", "id": "4433327430", "tags": ""}, {"datetaken": "2010-03-12 23:38:03", "license": "1", "title": "chris visit 3-12-2010", "text": "", "album_id": "72157623620043998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4432554133_b0502a0be7_o.jpg", "secret": "348162095c", "media": "photo", "latitude": "0", "id": "4432554133", "tags": ""}, {"datetaken": "2010-03-13 19:39:08", "license": "1", "title": "chris visit 3-12-2010", "text": "", "album_id": "72157623620043998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4433328732_dcf2d5dfa5_o.jpg", "secret": "d900e40e65", "media": "photo", "latitude": "0", "id": "4433328732", "tags": ""}, {"datetaken": "2010-03-13 19:39:11", "license": "1", "title": "chris visit 3-12-2010", "text": "", "album_id": "72157623620043998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4433329372_2325099939_o.jpg", "secret": "2f5e9388ed", "media": "photo", "latitude": "0", "id": "4433329372", "tags": ""}, {"datetaken": "2010-03-13 19:42:05", "license": "1", "title": "chris visit 3-12-2010", "text": "", "album_id": "72157623620043998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4433330016_cc5c004f08_o.jpg", "secret": "1f35c59095", "media": "photo", "latitude": "0", "id": "4433330016", "tags": ""}, {"datetaken": "2010-03-13 19:42:13", "license": "1", "title": "chris visit 3-12-2010", "text": "", "album_id": "72157623620043998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4433330776_c4106f299b_o.jpg", "secret": "4b129aa29a", "media": "photo", "latitude": "0", "id": "4433330776", "tags": ""}, {"datetaken": "2010-03-13 19:45:48", "license": "1", "title": "chris visit 3-12-2010", "text": "", "album_id": "72157623620043998", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4433331578_2055b4c784_o.jpg", "secret": "778b7fcdb4", "media": "photo", "latitude": "0", "id": "4433331578", "tags": ""}, {"datetaken": "2010-03-13 19:45:51", "license": "1", "title": "chris visit 3-12-2010", "text": "", "album_id": "72157623620043998", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4433332254_859c0acab3_o.jpg", "secret": "6db2a50559", "media": "photo", "latitude": "0", "id": "4433332254", "tags": ""}, {"datetaken": "2010-03-13 19:46:12", "license": "1", "title": "chris visit 3-12-2010", "text": "", "album_id": "72157623620043998", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4433332964_05753a1336_o.jpg", "secret": "e6cd84bba1", "media": "photo", "latitude": "0", "id": "4433332964", "tags": ""}, {"datetaken": "2010-03-13 19:46:30", "license": "1", "title": "chris visit 3-12-2010", "text": "", "album_id": "72157623620043998", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/4432559479_3999b69893_o.jpg", "secret": "fc9a2f0b61", "media": "photo", "latitude": "0", "id": "4432559479", "tags": ""}, {"datetaken": "2010-03-13 19:46:43", "license": "1", "title": "chris visit 3-12-2010", "text": "", "album_id": "72157623620043998", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4432560133_cb03140911_o.jpg", "secret": "a02841c0b7", "media": "photo", "latitude": "0", "id": "4432560133", "tags": ""}, {"datetaken": "2010-03-13 19:47:40", "license": "1", "title": "chris visit 3-12-2010", "text": "", "album_id": "72157623620043998", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4432560919_355ebef9f4_o.jpg", "secret": "b70d7f7388", "media": "photo", "latitude": "0", "id": "4432560919", "tags": ""}, {"datetaken": "2010-03-13 19:47:44", "license": "1", "title": "chris visit 3-12-2010", "text": "", "album_id": "72157623620043998", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4433335876_d00c6bf88e_o.jpg", "secret": "b52e416451", "media": "photo", "latitude": "0", "id": "4433335876", "tags": ""}, {"datetaken": "2010-02-27 08:33:05", "license": "4", "title": "Sunset and beer", "text": "", "album_id": "72157623496934551", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4433197035_c337c8e3fa_o.jpg", "secret": "9e20320cc1", "media": "photo", "latitude": "0", "id": "4433197035", "tags": "family mom losangeles jen"}, {"datetaken": "2010-02-27 13:41:07", "license": "4", "title": "Sue visits LA", "text": "", "album_id": "72157623496934551", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2789/4433971274_16ca26ab78_o.jpg", "secret": "1ed407fdae", "media": "photo", "latitude": "0", "id": "4433971274", "tags": "family art losangeles rebecca"}, {"datetaken": "2010-02-27 14:59:01", "license": "4", "title": "Sue visits LA", "text": "", "album_id": "72157623496934551", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4433197195_6eaed6a635_o.jpg", "secret": "f9a6385746", "media": "photo", "latitude": "0", "id": "4433197195", "tags": "family art losangeles rebecca"}, {"datetaken": "2010-02-28 01:19:53", "license": "4", "title": "Sue visits LA", "text": "", "album_id": "72157623496934551", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4433197413_75c5904a59_o.jpg", "secret": "b0cbafd9aa", "media": "photo", "latitude": "0", "id": "4433197413", "tags": "family mom losangeles rebecca"}, {"datetaken": "2010-02-28 01:28:11", "license": "4", "title": "Sue visits LA", "text": "", "album_id": "72157623496934551", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4433971642_340b068e43_o.jpg", "secret": "7bacd89ccf", "media": "photo", "latitude": "0", "id": "4433971642", "tags": "family mom losangeles jen rebecca"}, {"datetaken": "2010-02-28 02:12:16", "license": "4", "title": "Sue visits LA", "text": "", "album_id": "72157623496934551", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4433971786_40fa687017_o.jpg", "secret": "9b2e883558", "media": "photo", "latitude": "0", "id": "4433971786", "tags": "family mom losangeles rebecca"}, {"datetaken": "2010-02-28 07:53:54", "license": "4", "title": "Sue visits LA", "text": "", "album_id": "72157623496934551", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4433198065_c25c912c0b_o.jpg", "secret": "8d2d8d6d9d", "media": "photo", "latitude": "0", "id": "4433198065", "tags": "family mom losangeles jen"}, {"datetaken": "2010-02-28 07:54:06", "license": "4", "title": "Dudes watching their buddies surf", "text": "", "album_id": "72157623496934551", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4433972342_8778fa5c0d_o.jpg", "secret": "7616219f45", "media": "photo", "latitude": "0", "id": "4433972342", "tags": "losangeles surfing"}, {"datetaken": "2010-02-28 08:04:02", "license": "4", "title": "Sue visits LA", "text": "", "album_id": "72157623496934551", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4433198409_1f2d055b93_o.jpg", "secret": "0c469ff02f", "media": "photo", "latitude": "0", "id": "4433198409", "tags": "losangeles"}, {"datetaken": "2010-02-28 08:05:24", "license": "4", "title": "Sue visits LA", "text": "", "album_id": "72157623496934551", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2690/4433972608_639b7a6730_o.jpg", "secret": "96c231f48d", "media": "photo", "latitude": "0", "id": "4433972608", "tags": "family losangeles jen rebecca"}, {"datetaken": "2010-02-28 09:02:45", "license": "4", "title": "Sunset", "text": "", "album_id": "72157623496934551", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4433198683_4f38b3423d_o.jpg", "secret": "7da6366466", "media": "photo", "latitude": "0", "id": "4433198683", "tags": "losangeles"}, {"datetaken": "2010-02-28 09:03:35", "license": "4", "title": "Sunset", "text": "", "album_id": "72157623496934551", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4433198807_d251e33bb0_o.jpg", "secret": "5de16726e1", "media": "photo", "latitude": "0", "id": "4433198807", "tags": "losangeles"}, {"datetaken": "2010-02-28 17:50:16", "license": "4", "title": "Sunset", "text": "", "album_id": "72157623496934551", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4433198861_d75cc942e3_o.jpg", "secret": "9921e45113", "media": "photo", "latitude": "0", "id": "4433198861", "tags": "losangeles"}, {"datetaken": "2010-01-15 22:53:42", "license": "4", "title": "niniko and ninikoboy - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4278480188_c3bfe0b1f5_o.jpg", "secret": "c0dd6c9b34", "media": "photo", "latitude": "0", "id": "4278480188", "tags": "switch postcard secondlife koinup inainfinity Koinup:Username=ina Koinup:WorkID=220257"}, {"datetaken": "2010-01-15 22:54:42", "license": "4", "title": "niniko vending machine - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4278481476_94355c56e6_o.jpg", "secret": "c656f550b1", "media": "photo", "latitude": "0", "id": "4278481476", "tags": "switch postcard secondlife koinup inainfinity Koinup:Username=ina Koinup:WorkID=220258"}, {"datetaken": "2010-01-15 22:56:42", "license": "4", "title": "niniko store - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4277736917_81f519d595_o.jpg", "secret": "0ac5af7d13", "media": "photo", "latitude": "0", "id": "4277736917", "tags": "switch postcard secondlife koinup inainfinity Koinup:Username=ina Koinup:WorkID=220259"}, {"datetaken": "2010-01-15 22:58:42", "license": "4", "title": "grasp landing point - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4277739549_6a64d7ecd9_o.jpg", "secret": "6b913f9904", "media": "photo", "latitude": "0", "id": "4277739549", "tags": "postcard secondlife grasp koinup inainfinity Koinup:Username=ina Koinup:WorkID=220260"}, {"datetaken": "2010-01-15 22:59:30", "license": "4", "title": "grasp display window - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4278487492_6682ff16f4_o.jpg", "secret": "4bd815fc04", "media": "photo", "latitude": "0", "id": "4278487492", "tags": "postcard secondlife grasp koinup inainfinity Koinup:Username=ina Koinup:WorkID=220261"}, {"datetaken": "2010-01-15 23:00:40", "license": "4", "title": "sweetaholic runway - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4277741919_5dfc31321f_o.jpg", "secret": "d245e4bb7c", "media": "photo", "latitude": "0", "id": "4277741919", "tags": "postcard secondlife grasp koinup inainfinity Koinup:Username=ina Koinup:WorkID=220262"}, {"datetaken": "2010-01-15 23:01:42", "license": "4", "title": "grasp kimonos etc - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4277743087_ca2508d2e1_o.jpg", "secret": "b39ce4d6e8", "media": "photo", "latitude": "0", "id": "4277743087", "tags": "postcard secondlife grasp koinup inainfinity Koinup:Username=ina Koinup:WorkID=220263"}, {"datetaken": "2010-01-15 23:05:42", "license": "4", "title": "yabusaka - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4278494796_8b866a1871_o.jpg", "secret": "60a846e081", "media": "photo", "latitude": "0", "id": "4278494796", "tags": "postcard secondlife yabu koinup inainfinity Koinup:Username=ina Koinup:WorkID=220264"}, {"datetaken": "2010-01-15 23:12:38", "license": "4", "title": "extremely detailed prim nails - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4277756303_332f14c5f5_o.jpg", "secret": "e992b0365e", "media": "photo", "latitude": "0", "id": "4277756303", "tags": "postcard secondlife koinup lovesoul inainfinity Koinup:Username=ina Koinup:WorkID=220265"}, {"datetaken": "2010-01-15 23:28:37", "license": "4", "title": "yum yum store - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2760/4277776041_ec15697aa4_o.jpg", "secret": "796c9fc141", "media": "photo", "latitude": "0", "id": "4277776041", "tags": "postcard secondlife koinup inainfinity Koinup:Username=ina itutu Koinup:WorkID=220266"}, {"datetaken": "2010-01-15 23:30:42", "license": "4", "title": "yum yum hair for olivia - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4277778827_b934f1a488_o.jpg", "secret": "bed4a7afcc", "media": "photo", "latitude": "0", "id": "4277778827", "tags": "postcard secondlife koinup inainfinity Koinup:Username=ina itutu Koinup:WorkID=220267"}, {"datetaken": "2010-01-15 23:32:40", "license": "4", "title": "feather store - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4278527868_70bff355a0_o.jpg", "secret": "fd4e184468", "media": "photo", "latitude": "0", "id": "4278527868", "tags": "postcard secondlife koinup ezquerra inainfinity Koinup:Username=ina Koinup:WorkID=220268"}, {"datetaken": "2010-01-15 23:42:27", "license": "4", "title": "chronokit - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4277793427_d31af4fb91_o.jpg", "secret": "71c8fda337", "media": "photo", "latitude": "0", "id": "4277793427", "tags": "postcard secondlife koenji koinup inainfinity Koinup:Username=ina Koinup:WorkID=220269"}, {"datetaken": "2010-01-15 23:43:42", "license": "4", "title": "chronokito store streetside - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2477/4277794997_e7c8e7c092_o.jpg", "secret": "d061e1ba3b", "media": "photo", "latitude": "0", "id": "4277794997", "tags": "postcard secondlife koenji koinup inainfinity Koinup:Username=ina Koinup:WorkID=220271"}, {"datetaken": "2010-01-15 23:44:42", "license": "4", "title": "crying bebes - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4277796201_9929bb6a9b_o.jpg", "secret": "5e1f948c08", "media": "photo", "latitude": "0", "id": "4277796201", "tags": "postcard secondlife koenji koinup inainfinity Koinup:Username=ina Koinup:WorkID=220272"}, {"datetaken": "2010-01-15 23:52:37", "license": "4", "title": "cutest gumball machine yum - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4277805505_dab48e8bbf_o.jpg", "secret": "f02394a1bb", "media": "photo", "latitude": "0", "id": "4277805505", "tags": "postcard secondlife koinup inainfinity Koinup:Username=ina 6pi Koinup:WorkID=220274"}, {"datetaken": "2010-01-15 23:53:28", "license": "4", "title": "PANCAKES! - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4277806541_df6f812c57_o.jpg", "secret": "1427d1bb23", "media": "photo", "latitude": "0", "id": "4277806541", "tags": "postcard secondlife koinup inainfinity Koinup:Username=ina 6pi Koinup:WorkID=220275"}, {"datetaken": "2010-01-15 23:56:41", "license": "4", "title": "109 prims circus - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2687/4277810339_afc501d07f_o.jpg", "secret": "56a7767c52", "media": "photo", "latitude": "0", "id": "4277810339", "tags": "postcard secondlife koinup inainfinity Koinup:Username=ina drillfactory Koinup:WorkID=220276"}, {"datetaken": "2010-01-15 23:57:15", "license": "4", "title": "riding on 101prim circus - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4277810989_1dc0330818_o.jpg", "secret": "192d5a1cdb", "media": "photo", "latitude": "0", "id": "4277810989", "tags": "postcard secondlife koinup inainfinity Koinup:Username=ina drillfactory Koinup:WorkID=220277"}, {"datetaken": "2010-01-15 23:58:42", "license": "4", "title": "101 prim circus steampunk moon - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2444/4277812545_1fd6aa10a1_o.jpg", "secret": "e68bb99c1b", "media": "photo", "latitude": "0", "id": "4277812545", "tags": "postcard secondlife koinup inainfinity Koinup:Username=ina drillfactory Koinup:WorkID=220278"}, {"datetaken": "2010-01-15 23:59:41", "license": "4", "title": "101 prim circus carriage-go-round - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4277813677_0b6dae54c8_o.jpg", "secret": "7c73ea446d", "media": "photo", "latitude": "0", "id": "4277813677", "tags": "postcard secondlife koinup inainfinity Koinup:Username=ina drillfactory Koinup:WorkID=220279"}, {"datetaken": "2010-01-16 00:00:37", "license": "4", "title": "puzzle and the wraiths of puzzle - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2689/4277814651_bbbc3f5be9_o.jpg", "secret": "36c29408da", "media": "photo", "latitude": "0", "id": "4277814651", "tags": "postcard secondlife koinup inainfinity Koinup:Username=ina drillfactory Koinup:WorkID=220280"}, {"datetaken": "2010-01-16 00:05:43", "license": "4", "title": "raining napoliy and mocha - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4278567622_755979b40f_o.jpg", "secret": "107db80751", "media": "photo", "latitude": "0", "id": "4278567622", "tags": "postcard secondlife pawpaw koinup inainfinity Koinup:Username=ina Koinup:WorkID=220281"}, {"datetaken": "2010-01-16 00:11:37", "license": "4", "title": "coco rooftop - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4278575712_b54449e42f_o.jpg", "secret": "c0e68fe49e", "media": "photo", "latitude": "0", "id": "4278575712", "tags": "postcard secondlife koinup inainfinity Koinup:Username=ina cocodesigns Koinup:WorkID=220282"}, {"datetaken": "2010-01-16 00:12:43", "license": "4", "title": "coco rooftop microcosm - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4278577170_38a24b513d_o.jpg", "secret": "99519a1cae", "media": "photo", "latitude": "0", "id": "4278577170", "tags": "postcard secondlife koinup inainfinity Koinup:Username=ina cocodesigns Koinup:WorkID=220283"}, {"datetaken": "2010-01-16 00:14:42", "license": "4", "title": "coco store - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4277832951_9cc32f430d_o.jpg", "secret": "944424f78b", "media": "photo", "latitude": "0", "id": "4277832951", "tags": "postcard secondlife koinup inainfinity Koinup:Username=ina cocodesigns Koinup:WorkID=220284"}, {"datetaken": "2010-01-16 00:15:42", "license": "4", "title": "coco store kiosks - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4278580900_922bedcbe6_o.jpg", "secret": "20a091729f", "media": "photo", "latitude": "0", "id": "4278580900", "tags": "postcard secondlife koinup inainfinity Koinup:Username=ina cocodesigns Koinup:WorkID=220285"}, {"datetaken": "2010-01-16 00:22:41", "license": "4", "title": "aveneue+noar mainstore - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4277841575_220368aa52_o.jpg", "secret": "f385c4a2fc", "media": "photo", "latitude": "0", "id": "4277841575", "tags": "postcard secondlife cassandra koinup inainfinity Koinup:Username=ina Koinup:WorkID=220286"}, {"datetaken": "2010-01-16 00:24:36", "license": "4", "title": "things haven't quite loaded yet... - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4277843821_608246226a_o.jpg", "secret": "f51c4d98b0", "media": "photo", "latitude": "0", "id": "4277843821", "tags": "postcard secondlife sick koinup inainfinity Koinup:Username=ina Koinup:WorkID=220287"}, {"datetaken": "2010-01-16 00:25:36", "license": "4", "title": "godzilla in the grunge city - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4277845035_e75a20224a_o.jpg", "secret": "61ca33a7ac", "media": "photo", "latitude": "0", "id": "4277845035", "tags": "postcard secondlife sick koinup inainfinity Koinup:Username=ina Koinup:WorkID=220288"}, {"datetaken": "2010-01-16 00:26:37", "license": "4", "title": "sick - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4277846093_6ce6c8f2af_o.jpg", "secret": "c238dabe46", "media": "photo", "latitude": "0", "id": "4277846093", "tags": "postcard secondlife sick koinup inainfinity Koinup:Username=ina Koinup:WorkID=220289"}, {"datetaken": "2010-01-16 00:34:39", "license": "4", "title": "edelweiss store 2009 - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4277854799_4f0acc2212_o.jpg", "secret": "645705f3aa", "media": "photo", "latitude": "0", "id": "4277854799", "tags": "postcard secondlife montsaintmichel koinup inainfinity Koinup:Username=ina Koinup:WorkID=220291"}, {"datetaken": "2010-01-16 00:35:42", "license": "4", "title": "edelweiss store mini-school exterior - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2804/4278602742_c5728555be_o.jpg", "secret": "f8fc96af2d", "media": "photo", "latitude": "0", "id": "4278602742", "tags": "postcard secondlife montsaintmichel koinup inainfinity Koinup:Username=ina Koinup:WorkID=220292"}, {"datetaken": "2010-01-16 00:36:41", "license": "4", "title": "edelweiss school - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4277856971_1ca8e6e5f2_o.jpg", "secret": "4b864384a1", "media": "photo", "latitude": "0", "id": "4277856971", "tags": "postcard secondlife montsaintmichel koinup inainfinity Koinup:Username=ina Koinup:WorkID=220293"}, {"datetaken": "2010-01-16 00:37:42", "license": "4", "title": "edelweiss school! - Ina Infinity", "text": "", "album_id": "72157623219655434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4278604862_c3f1ba73a9_o.jpg", "secret": "f71aa8bb11", "media": "photo", "latitude": "0", "id": "4278604862", "tags": "postcard secondlife montsaintmichel koinup inainfinity Koinup:Username=ina Koinup:WorkID=220294"}, {"datetaken": "2010-02-15 12:07:20", "license": "5", "title": "DSC_0354", "text": "", "album_id": "72157623449162982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4363559410_5222514689_o.jpg", "secret": "6b1fb079d1", "media": "photo", "latitude": "0", "id": "4363559410", "tags": "alabama auburn firstpresbyterianchurch pcm presbyteriancommunityministry"}, {"datetaken": "2010-02-15 12:07:35", "license": "5", "title": "DSC_0355", "text": "", "album_id": "72157623449162982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4362821043_143c3dc615_o.jpg", "secret": "75f2bd1412", "media": "photo", "latitude": "0", "id": "4362821043", "tags": "alabama auburn firstpresbyterianchurch pcm presbyteriancommunityministry"}, {"datetaken": "2010-02-15 12:09:08", "license": "5", "title": "DSC_0357", "text": "", "album_id": "72157623449162982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4363561824_2a2aa92544_o.jpg", "secret": "635d7b6374", "media": "photo", "latitude": "0", "id": "4363561824", "tags": "alabama auburn firstpresbyterianchurch pcm presbyteriancommunityministry"}, {"datetaken": "2010-02-15 12:09:39", "license": "5", "title": "DSC_0358", "text": "", "album_id": "72157623449162982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4363563716_363389c339_o.jpg", "secret": "aac370f3c6", "media": "photo", "latitude": "0", "id": "4363563716", "tags": "alabama auburn firstpresbyterianchurch pcm presbyteriancommunityministry"}, {"datetaken": "2010-02-15 12:17:54", "license": "5", "title": "DSC_0361", "text": "", "album_id": "72157623449162982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4363560336_eff1b66a1b_o.jpg", "secret": "ce1e83db50", "media": "photo", "latitude": "0", "id": "4363560336", "tags": "alabama auburn firstpresbyterianchurch pcm presbyteriancommunityministry"}, {"datetaken": "2010-02-15 12:23:47", "license": "5", "title": "DSC_0362c", "text": "", "album_id": "72157623449162982", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2767/4363566402_0edf9513d2_o.jpg", "secret": "d0fecbe233", "media": "photo", "latitude": "0", "id": "4363566402", "tags": "alabama auburn firstpresbyterianchurch pcm presbyteriancommunityministry"}, {"datetaken": "2010-02-15 12:35:18", "license": "5", "title": "DSC_0367", "text": "", "album_id": "72157623449162982", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4363560936_92e3ae293f_o.jpg", "secret": "10b804320b", "media": "photo", "latitude": "0", "id": "4363560936", "tags": "alabama auburn firstpresbyterianchurch pcm presbyteriancommunityministry"}, {"datetaken": "2010-02-15 12:43:50", "license": "5", "title": "DSC_0369c", "text": "", "album_id": "72157623449162982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4363566872_3ac64f5e79_o.jpg", "secret": "bafa886cfe", "media": "photo", "latitude": "0", "id": "4363566872", "tags": "alabama auburn firstpresbyterianchurch pcm presbyteriancommunityministry"}, {"datetaken": "2010-02-15 12:59:10", "license": "5", "title": "DSC_0372", "text": "", "album_id": "72157623449162982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4363564808_c0f985b495_o.jpg", "secret": "6cda453a36", "media": "photo", "latitude": "0", "id": "4363564808", "tags": "alabama auburn firstpresbyterianchurch pcm presbyteriancommunityministry"}, {"datetaken": "2010-02-15 13:08:47", "license": "5", "title": "DSC_0374", "text": "", "album_id": "72157623449162982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4363565832_592eec3d95_o.jpg", "secret": "826b22ebb6", "media": "photo", "latitude": "0", "id": "4363565832", "tags": "alabama auburn firstpresbyterianchurch pcm presbyteriancommunityministry"}, {"datetaken": "2010-02-14 09:40:14", "license": "3", "title": "tlr_100214_01", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4361738007_6e855a13fb_o.jpg", "secret": "84b05efd0e", "media": "photo", "latitude": "0", "id": "4361738007", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 09:40:30", "license": "3", "title": "tlr_100214_02", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2729/4361738491_8785b10020_o.jpg", "secret": "8c409a438f", "media": "photo", "latitude": "0", "id": "4361738491", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 09:40:44", "license": "3", "title": "tlr_100214_03", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4362482338_3ddcefe6b7_o.jpg", "secret": "fe872254e7", "media": "photo", "latitude": "0", "id": "4362482338", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 09:41:10", "license": "3", "title": "tlr_100214_04", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4362483008_9c3826cfcc_o.jpg", "secret": "f686ba4ccc", "media": "photo", "latitude": "0", "id": "4362483008", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 09:41:20", "license": "3", "title": "tlr_100214_05", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4362483642_0736e9609b_o.jpg", "secret": "ea9651b4cc", "media": "photo", "latitude": "0", "id": "4362483642", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 09:41:31", "license": "3", "title": "tlr_100214_06", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2735/4362484314_5391a07314_o.jpg", "secret": "685fc2e674", "media": "photo", "latitude": "0", "id": "4362484314", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 09:45:01", "license": "3", "title": "tlr_100214_07", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4361741591_f5aeb2aa91_o.jpg", "secret": "9c36d08af6", "media": "photo", "latitude": "0", "id": "4361741591", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 09:45:18", "license": "3", "title": "tlr_100214_08", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4361742331_e50fe0da2d_o.jpg", "secret": "ab5f9669ea", "media": "photo", "latitude": "0", "id": "4361742331", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 09:45:22", "license": "3", "title": "tlr_100214_09", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4361742757_6b818079a8_o.jpg", "secret": "52eae1e9ec", "media": "photo", "latitude": "0", "id": "4361742757", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 09:45:52", "license": "3", "title": "tlr_100214_10", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2716/4362486628_a2b5ece52e_o.jpg", "secret": "b0b6b4b31e", "media": "photo", "latitude": "0", "id": "4362486628", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 09:45:58", "license": "3", "title": "tlr_100214_11", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2712/4361743773_434e22d6d9_o.jpg", "secret": "78c9fac11d", "media": "photo", "latitude": "0", "id": "4361743773", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 09:46:04", "license": "3", "title": "tlr_100214_12", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4362487868_f1cc51039a_o.jpg", "secret": "8aaf2fe2d4", "media": "photo", "latitude": "0", "id": "4362487868", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 10:19:26", "license": "3", "title": "tlr_100214_13", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2687/4361744851_60b719ede8_o.jpg", "secret": "95fca47fa0", "media": "photo", "latitude": "0", "id": "4361744851", "tags": "chihuahua chopper rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol"}, {"datetaken": "2010-02-14 10:19:42", "license": "3", "title": "tlr_100214_14", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4361745191_f0e2f38553_o.jpg", "secret": "8016e4426b", "media": "photo", "latitude": "0", "id": "4361745191", "tags": "chihuahua chopper rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol"}, {"datetaken": "2010-02-14 10:19:47", "license": "3", "title": "tlr_100214_15", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4361745507_dfd5a64e5f_o.jpg", "secret": "ed4fef405b", "media": "photo", "latitude": "0", "id": "4361745507", "tags": "chihuahua chopper rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol"}, {"datetaken": "2010-02-14 10:24:21", "license": "3", "title": "tlr_100214_16", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2683/4361745963_9171fe4455_o.jpg", "secret": "c565e15c5c", "media": "photo", "latitude": "0", "id": "4361745963", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol"}, {"datetaken": "2010-02-14 10:43:54", "license": "3", "title": "tlr_100214_17", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2695/4362489856_27a7921836_o.jpg", "secret": "72807fa6dc", "media": "photo", "latitude": "0", "id": "4362489856", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol"}, {"datetaken": "2010-02-14 11:25:48", "license": "3", "title": "tlr_100214_18", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2764/4362490380_dfd364a33f_o.jpg", "secret": "e42f2e983e", "media": "photo", "latitude": "0", "id": "4362490380", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 11:26:27", "license": "3", "title": "tlr_100214_19", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4361747617_b909bdb8f6_o.jpg", "secret": "ca87256f97", "media": "photo", "latitude": "0", "id": "4361747617", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 11:27:01", "license": "3", "title": "tlr_100214_20", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4361748353_408a7153f6_o.jpg", "secret": "cf972032b8", "media": "photo", "latitude": "0", "id": "4361748353", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 11:27:21", "license": "3", "title": "tlr_100214_21", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4361749155_dfb8374458_o.jpg", "secret": "b7632c56ae", "media": "photo", "latitude": "0", "id": "4361749155", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 11:28:04", "license": "3", "title": "tlr_100214_22", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4362493284_9de86f02a1_o.jpg", "secret": "c0c7a634eb", "media": "photo", "latitude": "0", "id": "4362493284", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 11:29:31", "license": "3", "title": "tlr_100214_23", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4362494176_f855983fea_o.jpg", "secret": "a1116c7423", "media": "photo", "latitude": "0", "id": "4362494176", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 11:29:41", "license": "3", "title": "tlr_100214_24", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2682/4361751459_c199cfaeb2_o.jpg", "secret": "6d62769e56", "media": "photo", "latitude": "0", "id": "4361751459", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 11:29:48", "license": "3", "title": "tlr_100214_25", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4362527752_f9faa7d551_o.jpg", "secret": "a07538348c", "media": "photo", "latitude": "0", "id": "4362527752", "tags": "no4edwardthomas"}, {"datetaken": "2010-02-14 11:30:10", "license": "3", "title": "tlr_100214_26", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4361751987_9834d29f4b_o.jpg", "secret": "213318e76f", "media": "photo", "latitude": "0", "id": "4361751987", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 11:30:55", "license": "3", "title": "tlr_100214_27", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4362495980_65d0a82e8f_o.jpg", "secret": "ac6fa1c577", "media": "photo", "latitude": "0", "id": "4362495980", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 11:31:43", "license": "3", "title": "tlr_100214_28", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4361753263_ea15e3e95f_o.jpg", "secret": "972d178b1a", "media": "photo", "latitude": "0", "id": "4361753263", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 11:34:17", "license": "3", "title": "tlr_100214_29", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4362497214_5f28ee3002_o.jpg", "secret": "3b323c5a62", "media": "photo", "latitude": "0", "id": "4362497214", "tags": "chihuahua chopper rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol"}, {"datetaken": "2010-02-14 11:34:23", "license": "3", "title": "tlr_100214_30", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4362497594_f79c3ac9e1_o.jpg", "secret": "795e4b601e", "media": "photo", "latitude": "0", "id": "4362497594", "tags": "chihuahua chopper rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol"}, {"datetaken": "2010-02-14 11:34:34", "license": "3", "title": "tlr_100214_31", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4361754595_27c7fef74a_o.jpg", "secret": "149b9d05b9", "media": "photo", "latitude": "0", "id": "4361754595", "tags": "chihuahua chopper rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol"}, {"datetaken": "2010-02-14 11:34:37", "license": "3", "title": "tlr_100214_32", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4361755065_a3dd935806_o.jpg", "secret": "b7077067d7", "media": "photo", "latitude": "0", "id": "4361755065", "tags": "chihuahua chopper rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol"}, {"datetaken": "2010-02-14 11:35:13", "license": "3", "title": "tlr_100214_33", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4361755587_9eb2d4d269_o.jpg", "secret": "29e3ccde7e", "media": "photo", "latitude": "0", "id": "4361755587", "tags": "chihuahua chopper rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol"}, {"datetaken": "2010-02-14 11:48:05", "license": "3", "title": "tlr_100214_34", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4361756329_559c42c45f_o.jpg", "secret": "74e326e2f9", "media": "photo", "latitude": "0", "id": "4361756329", "tags": "chihuahua chopper rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol"}, {"datetaken": "2010-02-14 11:48:13", "license": "3", "title": "tlr_100214_35", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4362500612_d2a69b8417_o.jpg", "secret": "66f86e710c", "media": "photo", "latitude": "0", "id": "4362500612", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol"}, {"datetaken": "2010-02-14 11:48:36", "license": "3", "title": "tlr_100214_36", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4362501388_bc6b4486bb_o.jpg", "secret": "0fb5270092", "media": "photo", "latitude": "0", "id": "4362501388", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 11:48:45", "license": "3", "title": "tlr_100214_37", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2755/4361758345_7aec2bc924_o.jpg", "secret": "44eea7ed4d", "media": "photo", "latitude": "0", "id": "4361758345", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 11:48:58", "license": "3", "title": "tlr_100214_38", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4361759245_95f4b362de_o.jpg", "secret": "dfed1919a7", "media": "photo", "latitude": "0", "id": "4361759245", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol"}, {"datetaken": "2010-02-14 12:03:41", "license": "3", "title": "tlr_100214_39", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4361759695_e31121fec7_o.jpg", "secret": "8de0c792da", "media": "photo", "latitude": "0", "id": "4361759695", "tags": "chihuahua chopper rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol"}, {"datetaken": "2010-02-14 12:03:47", "license": "3", "title": "tlr_100214_40", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4362503666_383a263c55_o.jpg", "secret": "382680e0c0", "media": "photo", "latitude": "0", "id": "4362503666", "tags": "chihuahua chopper rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol"}, {"datetaken": "2010-02-14 13:26:00", "license": "3", "title": "Tywyn Beach 01", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4362504162_95553e60fb_o.jpg", "secret": "b9620ecbff", "media": "photo", "latitude": "0", "id": "4362504162", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-02-14 13:26:35", "license": "3", "title": "Tywyn Beach 02", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4361761281_91a9312713_o.jpg", "secret": "8206e4ae8c", "media": "photo", "latitude": "0", "id": "4361761281", "tags": "gwynedd tywyn"}, {"datetaken": "2010-02-14 13:26:39", "license": "3", "title": "Tywyn Beach 03", "text": "", "album_id": "72157623321729475", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4361761803_dd0987f236_o.jpg", "secret": "3f97cbb4b0", "media": "photo", "latitude": "0", "id": "4361761803", "tags": "rail railway steamrailway gwynedd narrowguage tywyn abergynolwyn dolgoch heritagerailway talyllynrailway nantgwernol no4edwardthomas"}, {"datetaken": "2010-01-10 10:46:38", "license": "2", "title": "DSC_0001", "text": "", "album_id": "72157623104927681", "longitude": "-76.515955", "url_o": "https://farm3.staticflickr.com/2682/4281973885_f8f7556d95_o.jpg", "secret": "e06be0ab89", "media": "photo", "latitude": "38.998091", "id": "4281973885", "tags": "school winter snow building sepia md maryland annapolis schoolhouse elementary gradeschool oldschoolhouse weemscreek"}, {"datetaken": "2010-01-10 10:50:42", "license": "2", "title": "DSC_0003", "text": "", "album_id": "72157623104927681", "longitude": "-76.515955", "url_o": "https://farm3.staticflickr.com/2797/4282718892_203eaa8fe4_o.jpg", "secret": "ffa8542e24", "media": "photo", "latitude": "38.998091", "id": "4282718892", "tags": "school winter snow building md maryland annapolis schoolhouse elementary gradeschool oldschoolhouse weemscreek"}, {"datetaken": "2010-01-10 13:05:54", "license": "2", "title": "DSC_0004", "text": "", "album_id": "72157623104927681", "longitude": "-76.461195", "url_o": "https://farm5.staticflickr.com/4033/4281974887_17261fe9ed_o.jpg", "secret": "8edef4b25c", "media": "photo", "latitude": "38.933107", "id": "4281974887", "tags": "winter snow cold ice beach water standing bay fly stand geese md sand waves maryland rest resting annapolis 2010 chesapeakebay snowgeese kentisland migrate"}, {"datetaken": "2010-01-10 13:05:58", "license": "2", "title": "DSC_0005", "text": "", "album_id": "72157623104927681", "longitude": "-76.461195", "url_o": "https://farm5.staticflickr.com/4058/4281975241_6556167d68_o.jpg", "secret": "a60ec507e0", "media": "photo", "latitude": "38.933107", "id": "4281975241", "tags": "winter woman snow cold ice beach water bay hoodie md sand rocks maryland trenchcoat annapolis 2010 chesapeakebay overcoat"}, {"datetaken": "2010-01-10 13:12:52", "license": "2", "title": "DSC_0016", "text": "", "album_id": "72157623104927681", "longitude": "-76.461195", "url_o": "https://farm3.staticflickr.com/2732/4282720142_b22d1621e9_o.jpg", "secret": "084afff36b", "media": "photo", "latitude": "38.933107", "id": "4282720142", "tags": "winter sky woman snow cold ice beach beautiful bay md sand women rocks pretty waves break wind sandbar maryland happiness wife latina annapolis lovely 2010 chesapeakebay mywife mujere boliviana loveofmylive"}, {"datetaken": "2010-01-10 13:12:59", "license": "2", "title": "DSC_0017", "text": "", "album_id": "72157623104927681", "longitude": "-76.461195", "url_o": "https://farm3.staticflickr.com/2785/4282720586_72c2078a57_o.jpg", "secret": "17627e220e", "media": "photo", "latitude": "38.933107", "id": "4282720586", "tags": "winter sky woman snow cold film ice beach beautiful rock bay md women pretty waves break tide tripod maryland happiness wife latina annapolis lovely filming 2010 chesapeakebay mywife mujere boliviana loveofmylive"}, {"datetaken": "2010-01-10 13:13:19", "license": "2", "title": "DSC_0018", "text": "", "album_id": "72157623104927681", "longitude": "-76.461195", "url_o": "https://farm3.staticflickr.com/2747/4281976473_664ea29693_o.jpg", "secret": "d58c4faa82", "media": "photo", "latitude": "38.933107", "id": "4281976473", "tags": "camera winter woman man cold ice beach beautiful bay md women rocks pretty waves break tripod maryland happiness wife lonely latina annapolis lovely filming barge 2010 chesapeakebay mywife mujere boliviana loveofmylive"}, {"datetaken": "2010-01-10 13:42:47", "license": "2", "title": "DSC_0022", "text": "", "album_id": "72157623104927681", "longitude": "-76.528326", "url_o": "https://farm5.staticflickr.com/4023/4281976931_e289a522bd_o.jpg", "secret": "967988925b", "media": "photo", "latitude": "38.975504", "id": "4281976931", "tags": "old flowers winter roses woman snow cold flower beautiful cemetery grave rose stone md women pretty maryland happiness plate covered marker wife latina annapolis lovely hillcrest 2010 mywife mujere clow boliviana hillcrestcemetery loveofmylive hillcrestmemorialgardens oldforestdrive"}, {"datetaken": "2010-01-10 13:43:52", "license": "2", "title": "DSC_0023", "text": "", "album_id": "72157623104927681", "longitude": "-76.528326", "url_o": "https://farm5.staticflickr.com/4013/4281977367_b6914235cf_o.jpg", "secret": "cb83091613", "media": "photo", "latitude": "38.975504", "id": "4281977367", "tags": "flowers winter woman snow man cold flower beautiful cemetery grave hat rose stone md women pretty coat maryland happiness plate visit clean marker wife latina annapolis lovely visiting hillcrest 2010 mywife mujere boliviana hillcrestcemetery loveofmylive hillcrestmemorialgardens oldforestdrive"}, {"datetaken": "2010-01-10 13:55:43", "license": "2", "title": "DSC_0035", "text": "", "album_id": "72157623104927681", "longitude": "-76.528326", "url_o": "https://farm5.staticflickr.com/4038/4281977833_e3ba8998c2_o.jpg", "secret": "c05050573b", "media": "photo", "latitude": "38.975504", "id": "4281977833", "tags": "winter snow cold cemetery grave stone md maryland plate copper 1957 marker annapolis hillcrest 2010 1879 petina hillcrestcemetery graubaum gustavgraubaum hillcrestmemorialgardens oldforestdrive june5th1879 july9th1957"}, {"datetaken": "2010-01-10 13:56:00", "license": "2", "title": "DSC_0036", "text": "", "album_id": "72157623104927681", "longitude": "-76.528326", "url_o": "https://farm5.staticflickr.com/4022/4282722758_4ca49156b4_o.jpg", "secret": "2ce232d46e", "media": "photo", "latitude": "38.975504", "id": "4282722758", "tags": "winter snow cold cemetery grave stone md maryland plate marker 1978 1970 annapolis greve hillcrest 2010 1902 1899 togetherforever hillcrestcemetery georgeegreve hillcrestmemorialgardens oldforestdrive gertrudemgreve"}, {"datetaken": "2010-01-10 13:56:13", "license": "2", "title": "DSC_0037", "text": "", "album_id": "72157623104927681", "longitude": "-76.528326", "url_o": "https://farm5.staticflickr.com/4034/4282723250_78f692a481_o.jpg", "secret": "cbbda0e925", "media": "photo", "latitude": "38.975504", "id": "4282723250", "tags": "flowers winter roses blackandwhite bw white snow black cold cemetery grave rose stone md maryland plate marker annapolis melvin greve hillcrest 2010 clow togetherforever hillcrestcemetery margaretolga hillcrestmemorialgardens oldforestdrive"}, {"datetaken": "2010-01-10 13:56:18", "license": "2", "title": "DSC_0038", "text": "", "album_id": "72157623104927681", "longitude": "-76.528326", "url_o": "https://farm5.staticflickr.com/4021/4281979205_eb0a3c8bdb_o.jpg", "secret": "71af9eb9d8", "media": "photo", "latitude": "38.975504", "id": "4281979205", "tags": "winter blackandwhite bw snow cold cemetery grave stone blackwhite md maryland plate marker annapolis hillcrest 2010 clow togetherforever hillcrestcemetery hillcrestmemorialgardens oldforestdrive"}, {"datetaken": "2010-01-10 13:56:29", "license": "2", "title": "DSC_0039", "text": "", "album_id": "72157623104927681", "longitude": "-76.528326", "url_o": "https://farm5.staticflickr.com/4028/4282724028_5d631d85a2_o.jpg", "secret": "d590834650", "media": "photo", "latitude": "38.975504", "id": "4282724028", "tags": "annapolis md maryland hillcrestmemorialgardens hillcrest hillcrestcemetery oldforestdrive cemetery grave stone plate marker winter 2010 cold snow clow greve margaretolga 1922 1978 bw blackwhite blackandwhite"}, {"datetaken": "2010-01-10 13:56:34", "license": "2", "title": "DSC_0040", "text": "", "album_id": "72157623104927681", "longitude": "-76.528326", "url_o": "https://farm5.staticflickr.com/4066/4281979887_645c6f9c36_o.jpg", "secret": "720c5d8dbe", "media": "photo", "latitude": "38.975504", "id": "4281979887", "tags": "winter bw snow cold cemetery grave rose stone blackwhite md maryland plate marker annapolis melvin 1920 hillcrest 2010 hillcrestcemetery melvinclow melvinclowsr hillcrestmemorialgardens oldforestdrive"}, {"datetaken": "2010-01-10 13:56:43", "license": "2", "title": "DSC_0041", "text": "", "album_id": "72157623104927681", "longitude": "-76.528326", "url_o": "https://farm5.staticflickr.com/4046/4282724700_4e8420c838_o.jpg", "secret": "40a3e1baf6", "media": "photo", "latitude": "38.975504", "id": "4282724700", "tags": "flowers winter blackandwhite bw snow cold cemetery grave stone blackwhite md grandmother grandfather maryland plate marker 1978 annapolis 1922 greve 1920 hillcrest 2010 clow togetherforever hillcrestcemetery melvinclow melvinclowsr hillcrestmemorialgardens oldforestdrive melvinbclow"}, {"datetaken": "2010-01-10 14:19:35", "license": "2", "title": "DSC_0042", "text": "", "album_id": "72157623104927681", "longitude": "-76.449640", "url_o": "https://farm3.staticflickr.com/2793/4281980621_ce081a6087_o.jpg", "secret": "2b5642ae84", "media": "photo", "latitude": "38.984599", "id": "4281980621", "tags": "park winter wild snow cold building film nature project md towers maryland annapolis wilderness destroyed 2010 radiotowers backtonature leveled replant replanting greenburypoint nssannapolis"}, {"datetaken": "2010-01-10 14:22:22", "license": "2", "title": "DSC_0043", "text": "", "album_id": "72157623104927681", "longitude": "-76.449640", "url_o": "https://farm5.staticflickr.com/4027/4281981095_66b999d23d_o.jpg", "secret": "0d2eca47da", "media": "photo", "latitude": "38.984599", "id": "4281981095", "tags": "park trees winter wild snow cold tower film nature project md path maryland trail annapolis wilderness radiotower 2010 greenburypoint nssannapolis"}, {"datetaken": "2010-01-10 14:27:15", "license": "2", "title": "DSC_0045", "text": "", "album_id": "72157623104927681", "longitude": "-76.449640", "url_o": "https://farm5.staticflickr.com/4033/4282725824_75264de974_o.jpg", "secret": "88cae372fd", "media": "photo", "latitude": "38.984599", "id": "4282725824", "tags": "park camera trees winter wild blackandwhite bw woman snow cold film beach beautiful canon project blackwhite video md woods women pretty tripod maryland happiness wife bayview latina annapolis wilderness lovely 2010 chesapeakebay mywife mujere boliviana erosionabatement greenburypoint loveofmylive canon2591b002dm100directionalstereomicrophone"}, {"datetaken": "2010-01-10 14:43:01", "license": "2", "title": "DSC_0049", "text": "", "album_id": "72157623104927681", "longitude": "-76.453900", "url_o": "https://farm3.staticflickr.com/2698/4281981771_95e9e28834_o.jpg", "secret": "2c54cf3e4c", "media": "photo", "latitude": "38.984699", "id": "4281981771", "tags": "park winter wild woman snow cold film me beautiful grass canon project frozen pond md women pretty coat tripod maryland happiness bluesky wetlands wife grasses latina annapolis wilderness lovely wetland 2010 mywife frozenpond mujere boliviana vixia greenburypoint hf10 loveofmylive canon2591b002dm100directionalstereomicrophone dclow"}, {"datetaken": "2010-01-10 14:43:16", "license": "2", "title": "DSC_0050", "text": "", "album_id": "72157623104927681", "longitude": "-76.453900", "url_o": "https://farm3.staticflickr.com/2764/4281982403_df59ec2db0_o.jpg", "secret": "18fa7b9113", "media": "photo", "latitude": "38.984699", "id": "4281982403", "tags": "park winter wild woman snow cold film me beautiful grass canon project beard md women pretty coat tripod maryland happiness cattails gloves wetlands wife grasses latina annapolis wilderness lovely knithat knitcap wetland 2010 mywife mujere boliviana vixia greenburypoint loveofmylive canon2591b002dm100directionalstereomicrophone dclow"}, {"datetaken": "2010-01-10 14:43:42", "license": "2", "title": "DSC_0051", "text": "", "album_id": "72157623104927681", "longitude": "-76.453900", "url_o": "https://farm5.staticflickr.com/4023/4281982769_8fb7acf054_o.jpg", "secret": "ef18827e5e", "media": "photo", "latitude": "38.984699", "id": "4281982769", "tags": "park winter wild woman snow cold film me beautiful grass canon project frozen video pond md women pretty coat tripod knit maryland happiness jeans cattails wetlands wife shooting grasses latina annapolis wilderness lovely bluejeans knitcap wetland 2010 mywife mujere boliviana vixia greenburypoint hf10 loveofmylive canon2591b002dm100directionalstereomicrophone hatdavid clowfilm"}, {"datetaken": "2010-01-10 14:46:43", "license": "2", "title": "DSC_0054", "text": "", "album_id": "72157623104927681", "longitude": "-76.453900", "url_o": "https://farm5.staticflickr.com/4040/4281983073_2d5138eceb_o.jpg", "secret": "36d5c7f96f", "media": "photo", "latitude": "38.984699", "id": "4281983073", "tags": "park winter wild woman snow cold film me beautiful grass hat canon project video md women pretty coat tripod tracks footprints maryland happiness bluesky jeans cap wetlands wife grasses marsh latina annapolis wilderness lovely wetland 2010 mywife mujere boliviana filmproject vixia greenburypoint hf10 loveofmylive dclow"}, {"datetaken": "2010-01-10 14:49:44", "license": "2", "title": "DSC_0059", "text": "", "album_id": "72157623104927681", "longitude": "-76.453900", "url_o": "https://farm3.staticflickr.com/2800/4281983373_e7727b1c90_o.jpg", "secret": "2df98edeed", "media": "photo", "latitude": "38.984699", "id": "4281983373", "tags": "park trees winter shadow wild snow cold film grass project frozen pond md shadows tracks footprints maryland bluesky wetlands grasses marsh annapolis wilderness 2010 frozenpond greenburypoint"}, {"datetaken": "2010-01-10 14:49:58", "license": "2", "title": "DSC_0061", "text": "", "album_id": "72157623104927681", "longitude": "-76.453900", "url_o": "https://farm5.staticflickr.com/4016/4282728284_6612362cb0_o.jpg", "secret": "96efb035cb", "media": "photo", "latitude": "38.984699", "id": "4282728284", "tags": "park winter wild snow cold film project md maryland annapolis wilderness 2010 greenburypoint"}, {"datetaken": "2010-01-10 14:50:05", "license": "2", "title": "DSC_0062", "text": "", "album_id": "72157623104927681", "longitude": "-76.453900", "url_o": "https://farm5.staticflickr.com/4046/4281984047_bbf4fa4461_o.jpg", "secret": "123804a02c", "media": "photo", "latitude": "38.984699", "id": "4281984047", "tags": "park winter wild snow cold film grass project frozen pond md shadows maryland bluesky cattails wetlands grasses annapolis wilderness 2010 frozenpond longshadows winterscene greenburypoint"}, {"datetaken": "2010-01-10 14:57:33", "license": "2", "title": "DSC_0065", "text": "", "album_id": "72157623104927681", "longitude": "-76.453900", "url_o": "https://farm5.staticflickr.com/4045/4281984387_591b32f269_o.jpg", "secret": "569394caee", "media": "photo", "latitude": "38.984699", "id": "4281984387", "tags": "park winter wild woman snow cold me beautiful grass project md women pretty shadows path coat maryland happiness trail cattails wife grasses latina annapolis wilderness lovely knithat knitcap 2010 mywife mujere boliviana greenburypoint loveofmylive dclow"}, {"datetaken": "2010-01-10 15:03:54", "license": "2", "title": "DSC_0066", "text": "", "album_id": "72157623104927681", "longitude": "-76.456046", "url_o": "https://farm5.staticflickr.com/4009/4282729430_4962094f9a_o.jpg", "secret": "7df5eb4e9d", "media": "photo", "latitude": "38.985549", "id": "4282729430", "tags": "park winter wild woman snow cold film beautiful leaves project observation see md women pretty view blind maryland happiness vision observe wife latina annapolis wilderness lovely bluejeans knithat 2010 mywife mujere boliviana natureblind greenburypoint observationblind loveofmylive"}, {"datetaken": "2009-09-01 15:29:48", "license": "1", "title": "Amanda Jager", "text": "", "album_id": "72157623339819153", "longitude": "-116.908950", "url_o": "https://farm3.staticflickr.com/2696/4369003781_4967cdf6ea_o.jpg", "secret": "6f1ec199f8", "media": "photo", "latitude": "44.093056", "id": "4369003781", "tags": "amanda hot model nikon underwear charles lingerie 200 com nikkor 70 800 sb d700 siritho charlessirithocom"}, {"datetaken": "2009-09-01 15:33:55", "license": "1", "title": "Amanda Jager", "text": "", "album_id": "72157623339819153", "longitude": "-116.908950", "url_o": "https://farm5.staticflickr.com/4039/4369751676_46ca7b9d31_o.jpg", "secret": "2aa3148f55", "media": "photo", "latitude": "44.093056", "id": "4369751676", "tags": "amanda hot model nikon underwear charles lingerie 200 com nikkor 70 800 sb d700 siritho charlessirithocom"}, {"datetaken": "2009-09-01 15:37:26", "license": "1", "title": "Amanda Jager", "text": "", "album_id": "72157623339819153", "longitude": "-116.908950", "url_o": "https://farm3.staticflickr.com/2744/4369003831_34c804207c_o.jpg", "secret": "9a36e62cd5", "media": "photo", "latitude": "44.093056", "id": "4369003831", "tags": "amanda hot model nikon underwear charles lingerie 200 com nikkor 70 800 sb d700 siritho charlessirithocom"}, {"datetaken": "2009-09-01 15:50:37", "license": "1", "title": "Amanda Jager", "text": "", "album_id": "72157623339819153", "longitude": "-116.908950", "url_o": "https://farm3.staticflickr.com/2685/4369003879_5cf4550116_o.jpg", "secret": "f1905c8a03", "media": "photo", "latitude": "44.093056", "id": "4369003879", "tags": "amanda hot model nikon underwear charles lingerie 200 com nikkor 70 800 sb d700 siritho charlessirithocom"}, {"datetaken": "2009-09-01 16:00:10", "license": "1", "title": "Amanda Jager", "text": "", "album_id": "72157623339819153", "longitude": "-116.908950", "url_o": "https://farm5.staticflickr.com/4026/4369003915_526bcfb8c3_o.jpg", "secret": "b4de53517a", "media": "photo", "latitude": "44.093056", "id": "4369003915", "tags": "amanda hot model nikon underwear charles lingerie 200 com nikkor 70 800 sb d700 siritho charlessirithocom"}, {"datetaken": "2009-09-01 16:03:12", "license": "1", "title": "Amanda Jager", "text": "", "album_id": "72157623339819153", "longitude": "-116.908950", "url_o": "https://farm3.staticflickr.com/2765/4369751806_6b8a83532a_o.jpg", "secret": "5a412f4d3c", "media": "photo", "latitude": "44.093056", "id": "4369751806", "tags": "amanda hot model nikon underwear charles lingerie 200 com nikkor 70 800 sb d700 siritho charlessirithocom"}, {"datetaken": "2009-09-01 16:03:45", "license": "1", "title": "Amanda Jager", "text": "", "album_id": "72157623339819153", "longitude": "-116.908950", "url_o": "https://farm5.staticflickr.com/4046/4369751838_805af50631_o.jpg", "secret": "eb3dc5d113", "media": "photo", "latitude": "44.093056", "id": "4369751838", "tags": "amanda hot model nikon underwear charles lingerie 200 com nikkor 70 800 sb d700 siritho charlessirithocom"}, {"datetaken": "2009-09-01 16:21:36", "license": "1", "title": "Amanda Jager", "text": "", "album_id": "72157623339819153", "longitude": "-116.908950", "url_o": "https://farm3.staticflickr.com/2769/4369004005_e652e5ff62_o.jpg", "secret": "ec2e1e39fb", "media": "photo", "latitude": "44.093056", "id": "4369004005", "tags": "amanda hot model nikon underwear charles lingerie 200 com nikkor 70 800 sb d700 siritho charlessirithocom"}, {"datetaken": "2009-09-01 16:22:23", "license": "1", "title": "Amanda Jager", "text": "", "album_id": "72157623339819153", "longitude": "-116.908950", "url_o": "https://farm3.staticflickr.com/2695/4369751876_2bf8ea7c38_o.jpg", "secret": "923b7a1556", "media": "photo", "latitude": "44.093056", "id": "4369751876", "tags": "amanda hot model nikon underwear charles lingerie 200 com nikkor 70 800 sb d700 siritho charlessirithocom"}, {"datetaken": "2009-09-01 16:26:03", "license": "1", "title": "Amanda Jager", "text": "", "album_id": "72157623339819153", "longitude": "-116.908950", "url_o": "https://farm5.staticflickr.com/4034/4369751906_ab8ef55619_o.jpg", "secret": "812f754607", "media": "photo", "latitude": "44.093056", "id": "4369751906", "tags": "amanda hot model nikon underwear charles lingerie 200 com nikkor 70 800 sb d700 siritho charlessirithocom"}, {"datetaken": "2009-09-01 16:35:09", "license": "1", "title": "Amanda Jager", "text": "", "album_id": "72157623339819153", "longitude": "-116.908950", "url_o": "https://farm5.staticflickr.com/4025/4369751930_e9367edc21_o.jpg", "secret": "e7a1f3cba9", "media": "photo", "latitude": "44.093056", "id": "4369751930", "tags": "amanda hot model nikon underwear charles lingerie 200 com nikkor 70 800 sb d700 siritho charlessirithocom"}, {"datetaken": "2009-09-01 16:39:20", "license": "1", "title": "Amanda Jager", "text": "", "album_id": "72157623339819153", "longitude": "-116.908950", "url_o": "https://farm5.staticflickr.com/4046/4369004127_e784098a66_o.jpg", "secret": "bc33c4a5ea", "media": "photo", "latitude": "44.093056", "id": "4369004127", "tags": "amanda hot model nikon underwear charles lingerie 200 com nikkor 70 800 sb d700 siritho charlessirithocom"}, {"datetaken": "2009-09-01 16:43:53", "license": "1", "title": "Amanda Jager", "text": "", "album_id": "72157623339819153", "longitude": "-116.908950", "url_o": "https://farm5.staticflickr.com/4061/4369751990_0063ec53bd_o.jpg", "secret": "d27eb24ba9", "media": "photo", "latitude": "44.093056", "id": "4369751990", "tags": "amanda hot model nikon underwear charles lingerie 200 com nikkor 70 800 sb d700 siritho charlessirithocom"}, {"datetaken": "2009-09-01 16:45:24", "license": "1", "title": "Amanda Jager", "text": "", "album_id": "72157623339819153", "longitude": "-116.908950", "url_o": "https://farm3.staticflickr.com/2793/4369004199_19d2ae055a_o.jpg", "secret": "cebffe9a5e", "media": "photo", "latitude": "44.093056", "id": "4369004199", "tags": "amanda hot model nikon underwear charles lingerie 200 com nikkor 70 800 sb d700 siritho charlessirithocom"}, {"datetaken": "2009-09-01 17:23:33", "license": "1", "title": "Amanda Jager", "text": "", "album_id": "72157623339819153", "longitude": "-116.908950", "url_o": "https://farm5.staticflickr.com/4002/4369752058_6ac730ca18_o.jpg", "secret": "038df858ff", "media": "photo", "latitude": "44.093056", "id": "4369752058", "tags": "amanda hot model nikon underwear charles lingerie 200 com nikkor 70 800 sb d700 siritho charlessirithocom"}, {"datetaken": "2010-02-15 19:48:43", "license": "3", "title": "MacBook Air w/ Russian (Pretty cool)", "text": "", "album_id": "72157623461262602", "longitude": "-122.463054", "url_o": "https://farm5.staticflickr.com/4070/4367780729_bd2ecff4c2_o.jpg", "secret": "39444deca9", "media": "photo", "latitude": "37.760604", "id": "4367780729", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 13:59:03", "license": "3", "title": "O'Reilly Media HQ - Sebastopol", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm5.staticflickr.com/4065/4368528560_f8df9c60e2_o.jpg", "secret": "f7b99222c9", "media": "photo", "latitude": "38.399173", "id": "4368528560", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 13:59:13", "license": "3", "title": "O'Reilly Media HQ - Sebastopol", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm3.staticflickr.com/2769/4367783271_964955ab5f_o.jpg", "secret": "e21b0b81ae", "media": "photo", "latitude": "38.399173", "id": "4367783271", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 14:55:56", "license": "3", "title": "Local Bar - Sebastopol", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm3.staticflickr.com/2739/4368531214_b105e6c1d6_o.jpg", "secret": "221154cab8", "media": "photo", "latitude": "38.399173", "id": "4368531214", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 14:57:26", "license": "3", "title": "Bank of SonomaMy Shadow - Sebastopol", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm3.staticflickr.com/2789/4367786395_6b6e2077c2_o.jpg", "secret": "cda52a4fd7", "media": "photo", "latitude": "38.399173", "id": "4367786395", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 14:58:24", "license": "3", "title": "My Shadow - Sebastopol", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm5.staticflickr.com/4033/4368533902_6f130f4fb0_o.jpg", "secret": "78391becec", "media": "photo", "latitude": "38.399173", "id": "4368533902", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 15:06:15", "license": "3", "title": "Cafe - Sebastopol", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm5.staticflickr.com/4036/4367789127_be7c791828_o.jpg", "secret": "1e8d96192d", "media": "photo", "latitude": "38.399173", "id": "4367789127", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 15:07:48", "license": "3", "title": "Cafe - Sebastopol", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm3.staticflickr.com/2759/4367790493_ffe9b37733_o.jpg", "secret": "0fdbf8f2a7", "media": "photo", "latitude": "38.399173", "id": "4367790493", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 15:08:02", "license": "3", "title": "No Skateboarding - Sebastopol", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm5.staticflickr.com/4003/4368538294_969e440fe3_o.jpg", "secret": "593993cfc2", "media": "photo", "latitude": "38.399173", "id": "4368538294", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 15:10:44", "license": "3", "title": "Copperfield's Books - Sebastopol", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm5.staticflickr.com/4060/4367793639_6cfdea4339_o.jpg", "secret": "a43f194acf", "media": "photo", "latitude": "38.399173", "id": "4367793639", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 15:10:58", "license": "3", "title": "Copperfield's Books - Sebastopol", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm5.staticflickr.com/4001/4367794215_211969ee76_o.jpg", "secret": "4b13745a5e", "media": "photo", "latitude": "38.399173", "id": "4367794215", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 15:14:02", "license": "3", "title": "Sanitation - Sebastopol", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm5.staticflickr.com/4011/4368541734_f9cd5c715e_o.jpg", "secret": "3be25f3727", "media": "photo", "latitude": "38.399173", "id": "4368541734", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 15:14:33", "license": "3", "title": "Local Flavor - Sebastopol", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm3.staticflickr.com/2775/4368543004_3028e95d92_o.jpg", "secret": "c5699014e2", "media": "photo", "latitude": "38.399173", "id": "4368543004", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 15:15:51", "license": "3", "title": "Highway 116 - Sebastopol", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm3.staticflickr.com/2713/4367798455_a6bc074aa1_o.jpg", "secret": "4dacae4ba3", "media": "photo", "latitude": "38.399173", "id": "4367798455", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 15:16:41", "license": "3", "title": "Main Street - Sebastopol", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm5.staticflickr.com/4041/4367800697_eb84675da1_o.jpg", "secret": "0f564d9d95", "media": "photo", "latitude": "38.399173", "id": "4367800697", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 15:17:16", "license": "3", "title": "Main Street Saloon - Sebastopol", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm3.staticflickr.com/2798/4367802443_c40e30df4a_o.jpg", "secret": "867b071946", "media": "photo", "latitude": "38.399173", "id": "4367802443", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 15:17:57", "license": "3", "title": "Santa Rosa - Sebastopol", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm3.staticflickr.com/2745/4368549802_5575d243f7_o.jpg", "secret": "02e3018695", "media": "photo", "latitude": "38.399173", "id": "4368549802", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 15:19:09", "license": "3", "title": "Police Station Sign - Sebastopol", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm3.staticflickr.com/2716/4367804845_3829c0c09d_o.jpg", "secret": "c0a7dfd808", "media": "photo", "latitude": "38.399173", "id": "4367804845", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-02-17 15:20:50", "license": "3", "title": "Sebastopol - Local Flavor", "text": "", "album_id": "72157623461262602", "longitude": "-122.826015", "url_o": "https://farm5.staticflickr.com/4062/4368552332_ce28a50622_o.jpg", "secret": "5da4240c9b", "media": "photo", "latitude": "38.399173", "id": "4368552332", "tags": "sf sanfrancisco california bridge 3 canon golden bay aperture gate san francisco area burlingame northern sebastopol macworld sfbay g11"}, {"datetaken": "2010-03-18 06:21:57", "license": "2", "title": "EPA: Pledge to End Mountaintop Removal", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4442465263_08483857c1_o.jpg", "secret": "c7631f0ff1", "media": "photo", "latitude": "0", "id": "4442465263", "tags": "mountains green toxic water america destruction tripod rally protest environmental surface mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty lisajackson globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 06:25:56", "license": "2", "title": "EPA: Pledge to End Mountaintop Removal", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4442466007_4606758df1_o.jpg", "secret": "146d6e860a", "media": "photo", "latitude": "0", "id": "4442466007", "tags": "mountains green toxic water america destruction tripod rally protest environmental surface mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty lisajackson globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 06:27:53", "license": "2", "title": "EPA: Pledge to End Mountaintop Removal", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4443243720_2030349f6d_o.jpg", "secret": "5791f114c8", "media": "photo", "latitude": "0", "id": "4443243720", "tags": "mountains green toxic water america destruction tripod rally protest environmental surface mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty lisajackson globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 06:30:24", "license": "2", "title": "Pledge to End Mountaintop Removal", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2737/4442467269_12931be9ba_o.jpg", "secret": "c9602744a0", "media": "photo", "latitude": "0", "id": "4442467269", "tags": "mountains green toxic water america destruction tripod rally protest environmental surface mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty lisajackson globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 06:46:24", "license": "2", "title": "Lisa Jackson: Please commit to a flyover visit of the Appalachian Mountains and MTR sites", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4442514311_8a95654dd5_o.jpg", "secret": "8f45b3bc0a", "media": "photo", "latitude": "0", "id": "4442514311", "tags": "mountains green toxic water america destruction tripod rally protest environmental surface mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty lisajackson globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 07:06:26", "license": "2", "title": "EPA: Pledge to End Mountaintop Removal", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4443259486_3138dd05ba_o.jpg", "secret": "69babb8f14", "media": "photo", "latitude": "0", "id": "4443259486", "tags": "mountains green toxic water america destruction tripod rally protest environmental surface mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty lisajackson globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 07:08:07", "license": "2", "title": "EPA: Pledge to End Mountaintop Removal", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4443257660_482a5f0c11_o.jpg", "secret": "e2f6be81f1", "media": "photo", "latitude": "0", "id": "4443257660", "tags": "mountains green toxic water america destruction tripod rally protest environmental surface mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty lisajackson globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 07:08:08", "license": "2", "title": "EPA: Pledge to End Mountaintop Removal", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/4443258584_cf056b208d_o.jpg", "secret": "4b974d6a83", "media": "photo", "latitude": "0", "id": "4443258584", "tags": "mountains green toxic water america destruction tripod rally protest environmental surface mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty lisajackson globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 07:21:23", "license": "2", "title": "EPA: Pledge to End Mountaintop Removal", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4442508841_74a827fd89_o.jpg", "secret": "b674449f16", "media": "photo", "latitude": "0", "id": "4442508841", "tags": "mountains green toxic water america destruction tripod rally protest environmental surface mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty lisajackson globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 07:23:35", "license": "2", "title": "EPA: Pledge to End Mountaintop Removal", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4442496311_4bfa2c6aa9_o.jpg", "secret": "485324ef06", "media": "photo", "latitude": "0", "id": "4442496311", "tags": "mountains green toxic water america destruction rally protest environmental surface mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty lisajackson globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 07:25:37", "license": "2", "title": "EPA: Pledge to End Mountaintop Removal", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4442507209_1caa74210f_o.jpg", "secret": "3cc189830a", "media": "photo", "latitude": "0", "id": "4442507209", "tags": "atlanta mountains green toxic water america atl destruction tripod rally protest environmental surface mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty lisajackson globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 07:37:40", "license": "2", "title": "EPA: Pledge to End Mountaintop Removal", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4443285166_186d9b5cf3_o.jpg", "secret": "2b13e25e7f", "media": "photo", "latitude": "0", "id": "4443285166", "tags": "atlanta mountains green toxic water america atl destruction tripod rally protest environmental surface mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty lisajackson globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 07:56:16", "license": "2", "title": "Activists Erect Tripod at U.S. EPA Headquarters", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4443907430_fee0f22cf5_o.jpg", "secret": "e2f4688780", "media": "photo", "latitude": "0", "id": "4443907430", "tags": "mountains green toxic water america destruction tripod rally protest environmental lisa surface jackson mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 08:04:43", "license": "2", "title": "Chuck Nelson, retired coal miner in West Virginia.", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4443536344_76c9942ed7_o.jpg", "secret": "2c34546cba", "media": "photo", "latitude": "0", "id": "4443536344", "tags": "mountains green toxic water america destruction tripod rally protest environmental lisa surface jackson mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 08:11:49", "license": "2", "title": "EPA: Pledge to End Mountaintop Removal", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2804/4442663749_fc690b43b7_o.jpg", "secret": "658da3fed7", "media": "photo", "latitude": "0", "id": "4442663749", "tags": "mountains green toxic water america destruction rally protest environmental surface jackson mining pollution agency environment coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy mtrprotest wastetripodpurplemountainmajestyglobalfinancecampaignlisa"}, {"datetaken": "2010-03-18 08:19:21", "license": "2", "title": "Activists Erect Tripod at U.S. EPA Headquarters", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4443411432_db93885585_o.jpg", "secret": "1c89249d33", "media": "photo", "latitude": "0", "id": "4443411432", "tags": "mountains green toxic water america destruction tripod rally protest environmental lisa surface jackson mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 08:20:30", "license": "2", "title": "Activists Erect Tripod at U.S. EPA Headquarters", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2802/4443135789_644a4193db_o.jpg", "secret": "329f266eed", "media": "photo", "latitude": "0", "id": "4443135789", "tags": "mountains green toxic water america destruction tripod rally protest environmental lisa surface jackson mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 08:24:21", "license": "2", "title": "EPA: Pledge to End Mountaintop Removal", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4443535200_5994c05b56_o.jpg", "secret": "9ae574e768", "media": "photo", "latitude": "0", "id": "4443535200", "tags": "mountains green toxic water america destruction tripod rally protest environmental lisa surface jackson mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 08:24:27", "license": "2", "title": "Activists Erect Tripod at U.S. EPA Headquarters", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4443407480_063e06021b_o.jpg", "secret": "f59335e807", "media": "photo", "latitude": "0", "id": "4443407480", "tags": "mountains green toxic water america destruction tripod rally protest environmental lisa surface jackson mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 08:27:07", "license": "2", "title": "Activists Erect Tripod at U.S. EPA Headquarters", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4443907700_7dd2ef29a9_o.jpg", "secret": "23dac42eee", "media": "photo", "latitude": "0", "id": "4443907700", "tags": "mountains green toxic water america destruction tripod rally protest environmental lisa surface jackson mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 08:31:27", "license": "2", "title": "Activists Erect Tripod at U.S. EPA Headquarters", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4443136011_a9a896554a_o.jpg", "secret": "651540f23a", "media": "photo", "latitude": "0", "id": "4443136011", "tags": "mountains green toxic water america destruction tripod rally protest environmental lisa surface jackson mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 08:33:17", "license": "2", "title": "Chuck Nelson, retired coal miner in West Virginia.", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4442632091_589f9f04cf_o.jpg", "secret": "060a9d4a3b", "media": "photo", "latitude": "0", "id": "4442632091", "tags": "mountains green toxic water america destruction tripod rally protest environmental lisa surface jackson mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy chucknelson purplemountainmajesty globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 08:38:37", "license": "2", "title": "Activists Erect Tripod at U.S. EPA Headquarters", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4443136175_82b40bf915_o.jpg", "secret": "77bab3201a", "media": "photo", "latitude": "0", "id": "4443136175", "tags": "mountains green toxic water america destruction tripod rally protest environmental lisa surface jackson mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 08:59:08", "license": "2", "title": "Activists Erect Tripod at U.S. EPA Headquarters", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4443908014_b6c40811e3_o.jpg", "secret": "7aeeac580d", "media": "photo", "latitude": "0", "id": "4443908014", "tags": "mountains green toxic water america destruction tripod rally protest environmental lisa surface jackson mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty globalfinancecampaign mtrprotest"}, {"datetaken": "2010-03-18 08:59:20", "license": "2", "title": "Activists Erect Tripod at U.S. EPA Headquarters", "text": "", "album_id": "72157623519894743", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2727/4443136353_2ed84977bf_o.jpg", "secret": "4aa2168eef", "media": "photo", "latitude": "0", "id": "4443136353", "tags": "mountains green toxic water america destruction tripod rally protest environmental lisa surface jackson mining pollution agency environment waste coal activism removal protection eco ran appalachia activists epa rainforestactionnetwork mountaintop advocacy purplemountainmajesty globalfinancecampaign mtrprotest"}, {"datetaken": "2010-01-19 09:53:47", "license": "4", "title": "At the High School Trailhead", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2791/4289350946_ca21bb8ac6_o.jpg", "secret": "618c48a358", "media": "photo", "latitude": "0", "id": "4289350946", "tags": ""}, {"datetaken": "2010-01-19 10:44:26", "license": "4", "title": "Heading up the trail", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4289350286_e04e5c508f_o.jpg", "secret": "457c2e9510", "media": "photo", "latitude": "0", "id": "4289350286", "tags": ""}, {"datetaken": "2010-01-19 10:49:27", "license": "4", "title": "Clothing stop", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4289349570_aabb45c7bb_o.jpg", "secret": "16952c8599", "media": "photo", "latitude": "0", "id": "4289349570", "tags": ""}, {"datetaken": "2010-01-19 11:02:21", "license": "4", "title": "Waterfall", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4288607211_13b7805b04_o.jpg", "secret": "7dcecf28d3", "media": "photo", "latitude": "0", "id": "4288607211", "tags": ""}, {"datetaken": "2010-01-19 11:03:02", "license": "4", "title": "On the big bridge", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4289348094_2e273f471a_o.jpg", "secret": "d3d3507cdb", "media": "photo", "latitude": "0", "id": "4289348094", "tags": ""}, {"datetaken": "2010-01-19 11:13:57", "license": "4", "title": "Stumpy face", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4288605935_836bc8ea46_o.jpg", "secret": "d466f3ba5e", "media": "photo", "latitude": "0", "id": "4288605935", "tags": ""}, {"datetaken": "2010-01-19 11:36:41", "license": "4", "title": "White fungi", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4289346302_652cfe79f9_o.jpg", "secret": "84d6ec5eae", "media": "photo", "latitude": "0", "id": "4289346302", "tags": ""}, {"datetaken": "2010-01-19 11:37:03", "license": "4", "title": "Conifer bud", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2692/4288605285_c8a5bef3fd_o.jpg", "secret": "b5d74014ce", "media": "photo", "latitude": "0", "id": "4288605285", "tags": ""}, {"datetaken": "2010-01-19 11:37:52", "license": "4", "title": "Multicolored fungi", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4289345758_ef243225df_o.jpg", "secret": "cc796d6cfd", "media": "photo", "latitude": "0", "id": "4289345758", "tags": ""}, {"datetaken": "2010-01-19 11:38:39", "license": "4", "title": "Witches Butter", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4288603769_77e460b6ee_o.jpg", "secret": "c864a1eafb", "media": "photo", "latitude": "0", "id": "4288603769", "tags": ""}, {"datetaken": "2010-01-19 11:39:14", "license": "4", "title": "At the Railroad Grade", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4288603327_3d035c454c_o.jpg", "secret": "93cf82d61a", "media": "photo", "latitude": "0", "id": "4288603327", "tags": ""}, {"datetaken": "2010-01-19 11:39:21", "license": "4", "title": "Barbara", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4288602995_2f4b9d310a_o.jpg", "secret": "b6e4902b60", "media": "photo", "latitude": "0", "id": "4288602995", "tags": ""}, {"datetaken": "2010-01-19 11:42:00", "license": "4", "title": "Trail signs", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2677/4289344196_82897e5d37_o.jpg", "secret": "32b178dd04", "media": "photo", "latitude": "0", "id": "4289344196", "tags": ""}, {"datetaken": "2010-01-19 12:38:15", "license": "4", "title": "Mt Baker", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2780/4288601363_f9f650b4cd_o.jpg", "secret": "14e2fe8125", "media": "photo", "latitude": "0", "id": "4288601363", "tags": ""}, {"datetaken": "2010-01-19 12:38:36", "license": "4", "title": "After lunch", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4288601069_bc3b74c089_o.jpg", "secret": "b0c3eb077a", "media": "photo", "latitude": "0", "id": "4288601069", "tags": ""}, {"datetaken": "2010-01-19 12:39:24", "license": "4", "title": "Mt Baker", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4288599791_afe42a28d2_o.jpg", "secret": "586f66331b", "media": "photo", "latitude": "0", "id": "4288599791", "tags": ""}, {"datetaken": "2010-01-19 12:51:41", "license": "4", "title": "Mt Rainier", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4289341058_248001e4c9_o.jpg", "secret": "7c4d74ca43", "media": "photo", "latitude": "0", "id": "4289341058", "tags": ""}, {"datetaken": "2010-01-19 13:23:26", "license": "4", "title": "Descending the Chirico Trail", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2701/4288599111_2231fc8580_o.jpg", "secret": "12d3e0ea79", "media": "photo", "latitude": "0", "id": "4288599111", "tags": ""}, {"datetaken": "2010-01-19 13:30:48", "license": "4", "title": "Descending the Chirico Trail", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4288598237_e94cf8c847_o.jpg", "secret": "1f0d40d871", "media": "photo", "latitude": "0", "id": "4288598237", "tags": ""}, {"datetaken": "2010-01-19 13:31:06", "license": "4", "title": "Lower on the Chirico Trail", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4289338474_218b6289ca_o.jpg", "secret": "e241733f88", "media": "photo", "latitude": "0", "id": "4289338474", "tags": ""}, {"datetaken": "2010-01-19 13:45:27", "license": "4", "title": "Back at the Chirico Trailhead", "text": "", "album_id": "72157623120685495", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4288595001_853891e121_o.jpg", "secret": "59e30ff8c1", "media": "photo", "latitude": "0", "id": "4288595001", "tags": ""}, {"datetaken": "2010-02-19 13:55:58", "license": "5", "title": "Temperature Probe", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4373642289_b59a6943aa_o.jpg", "secret": "b9d79af5d8", "media": "photo", "latitude": "0", "id": "4373642289", "tags": "food coffee sanantonio tx places 500mm coffeeshops browncoffeeco"}, {"datetaken": "2010-02-19 13:56:38", "license": "5", "title": "Aaron's Roaster", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4373641621_152757986c_o.jpg", "secret": "c10c5ae35d", "media": "photo", "latitude": "0", "id": "4373641621", "tags": "food coffee sanantonio tx places 500mm coffeeshops browncoffeeco"}, {"datetaken": "2010-02-19 13:57:18", "license": "5", "title": "Rapid Cool", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2687/4373643205_6540990b89_o.jpg", "secret": "c98dc4ff37", "media": "photo", "latitude": "0", "id": "4373643205", "tags": "food coffee sanantonio tx places 500mm coffeeshops browncoffeeco"}, {"datetaken": "2010-02-19 13:59:37", "license": "5", "title": "Brown Coin Slot", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2692/4373643391_b230a38b8c_o.jpg", "secret": "08231b6235", "media": "photo", "latitude": "0", "id": "4373643391", "tags": "food coffee sanantonio tx places 500mm coffeeshops browncoffeeco"}, {"datetaken": "2010-02-19 13:59:53", "license": "5", "title": "Beautiful Handle", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4373642937_a3015e5b7f_o.jpg", "secret": "f6acdb0c00", "media": "photo", "latitude": "0", "id": "4373642937", "tags": "food coffee sanantonio tx places 500mm coffeeshops browncoffeeco"}, {"datetaken": "2010-02-19 14:00:31", "license": "5", "title": "Door Locks", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4373642673_46569e5747_o.jpg", "secret": "4c1299a7a8", "media": "photo", "latitude": "0", "id": "4373642673", "tags": "food coffee sanantonio tx places 500mm coffeeshops browncoffeeco"}, {"datetaken": "2010-02-19 14:00:44", "license": "5", "title": "Grinders", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4373643679_4ecc1c9295_o.jpg", "secret": "81b3fbec68", "media": "photo", "latitude": "0", "id": "4373643679", "tags": "food coffee sanantonio tx places 500mm coffeeshops k6 grinders coffeeequipment compak browncoffeeco ek43 k10wbc mahlko\u0308nig"}, {"datetaken": "2010-02-19 14:01:22", "license": "5", "title": "Aaron's Roaster", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4373641839_80718e4ce7_o.jpg", "secret": "0a3c8fe633", "media": "photo", "latitude": "0", "id": "4373641839", "tags": "food coffee sanantonio tx places 500mm coffeeshops browncoffeeco"}, {"datetaken": "2010-02-19 14:01:39", "license": "5", "title": "Auxiliary Analog Probe?", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4374397066_94db35ef2e_o.jpg", "secret": "11518cf377", "media": "photo", "latitude": "0", "id": "4374397066", "tags": "food coffee sanantonio tx places 500mm coffeeshops browncoffeeco"}, {"datetaken": "2010-02-19 14:11:17", "license": "5", "title": "Aaron's Roaster", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4373641423_4b2e0e7cb3_o.jpg", "secret": "89a909a7be", "media": "photo", "latitude": "0", "id": "4373641423", "tags": "food coffee sanantonio tx places coffeeshops 170850mm browncoffeeco"}, {"datetaken": "2010-02-19 14:12:14", "license": "5", "title": "Aaron's Roaster", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4373641179_0ccfcb8b46_o.jpg", "secret": "6736d14fc9", "media": "photo", "latitude": "0", "id": "4373641179", "tags": "food coffee sanantonio tx places coffeeshops 170850mm browncoffeeco"}, {"datetaken": "2010-02-19 14:13:09", "license": "5", "title": "Aaron's Roaster", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2734/4374396660_73d1942c5c_o.jpg", "secret": "3d180374f9", "media": "photo", "latitude": "0", "id": "4374396660", "tags": "food coffee sanantonio tx places coffeeshops 170850mm browncoffeeco"}, {"datetaken": "2010-02-19 14:13:48", "license": "5", "title": "Pourover Time!", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4374399038_f805029688_o.jpg", "secret": "a276b825da", "media": "photo", "latitude": "0", "id": "4374399038", "tags": "friends people food coffee sanantonio tx places coffeeshops 170850mm browncoffeeco aaronblanco"}, {"datetaken": "2010-02-19 14:14:17", "license": "5", "title": "Pourover Time!", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4373644657_fdcc4c3e99_o.jpg", "secret": "93aef2543e", "media": "photo", "latitude": "0", "id": "4373644657", "tags": "friends people food coffee sanantonio tx places coffeeshops 170850mm browncoffeeco aaronblanco"}, {"datetaken": "2010-02-19 14:15:07", "license": "5", "title": "This Is How It's Supposed To Look", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2735/4374399692_fd2b54b95a_o.jpg", "secret": "c24b8663e1", "media": "photo", "latitude": "0", "id": "4374399692", "tags": "friends people food coffee sanantonio tx places coffeeshops 170850mm browncoffeeco davidbuehrer"}, {"datetaken": "2010-02-19 14:16:53", "license": "5", "title": "KIDS!!!!", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4373645965_3ae809c11f_o.jpg", "secret": "4ac7a7d743", "media": "photo", "latitude": "0", "id": "4373645965", "tags": "friends people food coffee sanantonio tx places coffeeshops 170850mm browncoffeeco aaronblanco davidbuehrer eckyp"}, {"datetaken": "2010-02-19 14:17:49", "license": "5", "title": "Micheal and Ecky", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4374400230_ff6a1940a9_o.jpg", "secret": "a5301b3081", "media": "photo", "latitude": "0", "id": "4374400230", "tags": "friends people food coffee sanantonio tx places coffeeshops 170850mm browncoffeeco eckyp"}, {"datetaken": "2010-02-19 14:22:18", "license": "5", "title": "Bionicle Sriracha", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4374400770_4cf78eca08_o.jpg", "secret": "73504f3ac8", "media": "photo", "latitude": "0", "id": "4374400770", "tags": "friends people food coffee sanantonio tx places coffeeshops 170850mm browncoffeeco davidbuehrer eckyp"}, {"datetaken": "2010-02-19 14:23:09", "license": "5", "title": "Aaron At Work", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4374398840_682d8e2f18_o.jpg", "secret": "c405c48c85", "media": "photo", "latitude": "0", "id": "4374398840", "tags": "friends people food coffee sanantonio tx places coffeeshops 170850mm browncoffeeco aaronblanco"}, {"datetaken": "2010-02-19 14:24:07", "license": "5", "title": "Bionicle Sriracha", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4374400978_bfa3b660bb_o.jpg", "secret": "281a695f5f", "media": "photo", "latitude": "0", "id": "4374400978", "tags": "friends people food coffee sanantonio tx places coffeeshops 170850mm browncoffeeco davidbuehrer eckyp"}, {"datetaken": "2010-02-19 14:28:01", "license": "5", "title": "Linea", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2702/4374398514_551a9ea58e_o.jpg", "secret": "ec3dff6f55", "media": "photo", "latitude": "0", "id": "4374398514", "tags": "food coffee sanantonio tx places coffeeshops 170850mm browncoffeeco"}, {"datetaken": "2010-02-19 14:28:50", "license": "5", "title": "Hario", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4374399454_fda6d2620b_o.jpg", "secret": "1d43c6c82b", "media": "photo", "latitude": "0", "id": "4374399454", "tags": "food coffee sanantonio tx places coffeeshops 170850mm browncoffeeco"}, {"datetaken": "2010-02-19 14:30:43", "license": "5", "title": "David is HOT", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4373645389_60e9cdbf62_o.jpg", "secret": "4e1ab99193", "media": "photo", "latitude": "0", "id": "4373645389", "tags": "friends people food coffee sanantonio tx places coffeeshops 170850mm browncoffeeco davidbuehrer"}, {"datetaken": "2010-02-19 16:16:20", "license": "5", "title": "Brown Coffee Company HQ", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4374394846_a5bb452a30_o.jpg", "secret": "3396a7515d", "media": "photo", "latitude": "0", "id": "4374394846", "tags": "food coffee sanantonio tx places coffeeshops 170850mm browncoffeeco"}, {"datetaken": "2010-02-19 16:16:44", "license": "5", "title": "Brown Coffee Company HQ", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4373640607_c52daa40d4_o.jpg", "secret": "9edd56e5da", "media": "photo", "latitude": "0", "id": "4373640607", "tags": "food coffee sanantonio tx places coffeeshops 170850mm browncoffeeco"}, {"datetaken": "2010-02-19 16:16:52", "license": "5", "title": "3 Highly Overcaffeinated Adults, 1 Sleeping Baby", "text": "", "album_id": "72157623351074567", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4373640885_4032618acb_o.jpg", "secret": "efe169b03d", "media": "photo", "latitude": "0", "id": "4373640885", "tags": "friends people food coffee sanantonio tx places coffeeshops 170850mm browncoffeeco aaronblanco davidbuehrer eckyp"}, {"datetaken": "2009-10-16 13:11:24", "license": "2", "title": "Deja Vu", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4293652337_486074a092_o.jpg", "secret": "102ef0602c", "media": "photo", "latitude": "0", "id": "4293652337", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 13:11:59", "license": "2", "title": "Forest Painting", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4293652423_a1462cbb18_o.jpg", "secret": "ecaaf761a4", "media": "photo", "latitude": "0", "id": "4293652423", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 13:13:09", "license": "2", "title": "Alone", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4294393642_65ea3f4369_o.jpg", "secret": "93fca3362c", "media": "photo", "latitude": "0", "id": "4294393642", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 13:22:38", "license": "2", "title": "From Afar", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4294393690_72f18bfb43_o.jpg", "secret": "5659912014", "media": "photo", "latitude": "0", "id": "4294393690", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 13:23:10", "license": "2", "title": "Centennial Shrubs", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4293652571_e0554c1f87_o.jpg", "secret": "8e9a26f959", "media": "photo", "latitude": "0", "id": "4293652571", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 13:24:26", "license": "2", "title": "Autumn", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4293652629_60d51b6127_o.jpg", "secret": "446f382270", "media": "photo", "latitude": "0", "id": "4293652629", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 13:25:33", "license": "2", "title": "Autumn", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4294393850_ec33cda446_o.jpg", "secret": "20084c35ec", "media": "photo", "latitude": "0", "id": "4294393850", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 13:31:52", "license": "2", "title": "The Main Valley", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4294393900_651b2efcd9_o.jpg", "secret": "72f623de21", "media": "photo", "latitude": "0", "id": "4294393900", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 13:33:03", "license": "2", "title": "Invasion", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4293652715_e4eaf9e804_o.jpg", "secret": "850fc1bd39", "media": "photo", "latitude": "0", "id": "4293652715", "tags": "autumn fall construction raingarden bioswale mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 13:35:34", "license": "2", "title": "Life and Death", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4293652785_48e8c4ba79_o.jpg", "secret": "9e4ddf0b46", "media": "photo", "latitude": "0", "id": "4293652785", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 13:37:44", "license": "2", "title": "The Main Valley", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2719/4294394018_2d2b148ef1_o.jpg", "secret": "b5fa6e75b8", "media": "photo", "latitude": "0", "id": "4294394018", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 13:38:07", "license": "2", "title": "Have a Seat", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4293652873_eed74f2d9f_o.jpg", "secret": "45e837ba76", "media": "photo", "latitude": "0", "id": "4293652873", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 13:39:57", "license": "2", "title": "The Path Less Walked Upon", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4294394104_bbea3c5697_o.jpg", "secret": "d924dfb6c7", "media": "photo", "latitude": "0", "id": "4294394104", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 13:40:31", "license": "2", "title": "The Main Valley", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4293653001_c24138aed8_o.jpg", "secret": "7b65c2b4c7", "media": "photo", "latitude": "0", "id": "4293653001", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 13:42:13", "license": "2", "title": "The Main Valley", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4293653035_d43252df1d_o.jpg", "secret": "303aeed906", "media": "photo", "latitude": "0", "id": "4293653035", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 13:43:29", "license": "2", "title": "Grounded", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4293653119_9d2b6cfdb0_o.jpg", "secret": "2d673db13f", "media": "photo", "latitude": "0", "id": "4293653119", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 13:48:45", "license": "2", "title": "Prairie", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4293653157_167ceec3b3_o.jpg", "secret": "d59f35ac56", "media": "photo", "latitude": "0", "id": "4293653157", "tags": "autumn fall leaves prairie mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 13:57:41", "license": "2", "title": "Tracks", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4293653195_edf084568e_o.jpg", "secret": "bffe134b65", "media": "photo", "latitude": "0", "id": "4293653195", "tags": "autumn fall railroadtracks mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 14:00:16", "license": "2", "title": "Huron River", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4294394420_a78ec4d2d6_o.jpg", "secret": "24676b9626", "media": "photo", "latitude": "0", "id": "4294394420", "tags": "autumn color fall leaves mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 14:00:48", "license": "2", "title": "P", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2686/4293653275_d2e26f077f_o.jpg", "secret": "b9e08dddbc", "media": "photo", "latitude": "0", "id": "4293653275", "tags": "railroad bridge graffiti mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 14:02:01", "license": "2", "title": "One", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4293653337_98c6fd6150_o.jpg", "secret": "2d2a68b1fe", "media": "photo", "latitude": "0", "id": "4293653337", "tags": "railroad bridge mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 14:04:38", "license": "2", "title": "Huron River", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4294394546_ded0aa7826_o.jpg", "secret": "17d87a87e4", "media": "photo", "latitude": "0", "id": "4294394546", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 14:07:08", "license": "2", "title": "All Aboard", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4293653437_1a4e87d3ae_o.jpg", "secret": "f93dd30e4f", "media": "photo", "latitude": "0", "id": "4293653437", "tags": "railroad train engine amtrak locomotive mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 14:07:44", "license": "2", "title": "Huron River", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2723/4294394622_7cdf28e6a2_o.jpg", "secret": "ff636c0ba0", "media": "photo", "latitude": "0", "id": "4294394622", "tags": "autumn red fall leaves mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 14:09:58", "license": "2", "title": "Huron River", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4294394664_af34c44f5a_o.jpg", "secret": "a3b468931a", "media": "photo", "latitude": "0", "id": "4294394664", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 14:12:01", "license": "2", "title": "Huron River", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4293653589_7b55eaff33_o.jpg", "secret": "194a2a2127", "media": "photo", "latitude": "0", "id": "4293653589", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 14:12:46", "license": "2", "title": "Huron River", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4293653633_e0f1d49d97_o.jpg", "secret": "16d0a25697", "media": "photo", "latitude": "0", "id": "4293653633", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 14:18:37", "license": "2", "title": "Huron River", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4293653669_5bfc961678_o.jpg", "secret": "70127c676e", "media": "photo", "latitude": "0", "id": "4293653669", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2009-10-16 14:19:02", "license": "2", "title": "Huron River", "text": "", "album_id": "72157623258387556", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4293653705_28eb4623fe_o.jpg", "secret": "519f55e690", "media": "photo", "latitude": "0", "id": "4293653705", "tags": "autumn fall mimichigan nicholsarboretumthearbannarbor"}, {"datetaken": "2005-10-31 00:00:00", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2730/4453734939_675378e0d0_o.jpg", "secret": "75df9e5dee", "media": "photo", "latitude": "30.610717", "id": "4453734939", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:01", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2706/4454514366_d1d04ea08b_o.jpg", "secret": "29e13af7db", "media": "photo", "latitude": "30.610717", "id": "4454514366", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:02", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4007/4454514392_f8f6b6f61d_o.jpg", "secret": "4ea9747b80", "media": "photo", "latitude": "30.610717", "id": "4454514392", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:03", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4030/4454514412_3f0f428be7_o.jpg", "secret": "62f1123295", "media": "photo", "latitude": "30.610717", "id": "4454514412", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:04", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4023/4454514424_fa4bfaff44_o.jpg", "secret": "d68348ee68", "media": "photo", "latitude": "30.610717", "id": "4454514424", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:05", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4066/4453735001_dec370c07c_o.jpg", "secret": "c8e6c82166", "media": "photo", "latitude": "30.610717", "id": "4453735001", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:06", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4001/4453735015_a8799d2ce6_o.jpg", "secret": "ec30d27093", "media": "photo", "latitude": "30.610717", "id": "4453735015", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:07", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4055/4453735027_d6170e1920_o.jpg", "secret": "fbdfa9ab23", "media": "photo", "latitude": "30.610717", "id": "4453735027", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:08", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2714/4453735069_bba01c5c37_o.jpg", "secret": "96fd2351bd", "media": "photo", "latitude": "30.610717", "id": "4453735069", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:09", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2772/4453735081_91d7ee6692_o.jpg", "secret": "6f0f378ce6", "media": "photo", "latitude": "30.610717", "id": "4453735081", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:10", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4014/4454514478_85497464a1_o.jpg", "secret": "a76fd423c7", "media": "photo", "latitude": "30.610717", "id": "4454514478", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:11", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2783/4453735097_780e4544f5_o.jpg", "secret": "540f15ce84", "media": "photo", "latitude": "30.610717", "id": "4453735097", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:12", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4039/4454514524_30160bdc1f_o.jpg", "secret": "7b64a3f0d7", "media": "photo", "latitude": "30.610717", "id": "4454514524", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:13", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2682/4454514546_a1589a7364_o.jpg", "secret": "e9a7068f33", "media": "photo", "latitude": "30.610717", "id": "4454514546", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:14", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4028/4453735147_9c844ffe86_o.jpg", "secret": "8a122eb506", "media": "photo", "latitude": "30.610717", "id": "4453735147", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:15", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4004/4453735187_553f02ea18_o.jpg", "secret": "0801c6ce51", "media": "photo", "latitude": "30.610717", "id": "4453735187", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:16", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4047/4453735199_d86fcfe822_o.jpg", "secret": "787d15df11", "media": "photo", "latitude": "30.610717", "id": "4453735199", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:17", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2799/4453735211_62683ccfb4_o.jpg", "secret": "a2f39d5c4c", "media": "photo", "latitude": "30.610717", "id": "4453735211", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:18", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2802/4453735221_0b41599e95_o.jpg", "secret": "2fdb58a0ce", "media": "photo", "latitude": "30.610717", "id": "4453735221", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:19", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2764/4453735237_4a6b938920_o.jpg", "secret": "3e2c38c038", "media": "photo", "latitude": "30.610717", "id": "4453735237", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:20", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4012/4454514652_af79257049_o.jpg", "secret": "9d9ccb9938", "media": "photo", "latitude": "30.610717", "id": "4454514652", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:21", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4001/4454514680_949225988d_o.jpg", "secret": "6749884b90", "media": "photo", "latitude": "30.610717", "id": "4454514680", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:22", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2798/4453735293_1d2dd44de8_o.jpg", "secret": "fe80d81caf", "media": "photo", "latitude": "30.610717", "id": "4453735293", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:23", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2802/4454514698_70109e77d6_o.jpg", "secret": "b57a5d1fff", "media": "photo", "latitude": "30.610717", "id": "4454514698", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2005-10-31 00:00:24", "license": "3", "title": "Karen Katz visits Mays", "text": "", "album_id": "72157623546334961", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4069/4453735305_55636fa6fd_o.jpg", "secret": "32c73a3fd6", "media": "photo", "latitude": "30.610717", "id": "4453735305", "tags": "classroom lecture texasam tamu karenkatz maysbusinessschool"}, {"datetaken": "2004-02-23 00:00:00", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2691/4454780550_1ebd293768_o.jpg", "secret": "4ee20f9fca", "media": "photo", "latitude": "30.610717", "id": "4454780550", "tags": "shoe classroom purse lecture texasam tamu payless maysbusinessschool meganfeatherston"}, {"datetaken": "2004-02-23 00:00:01", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4005/4454001097_b4b35c5147_o.jpg", "secret": "c9f55a6799", "media": "photo", "latitude": "30.610717", "id": "4454001097", "tags": "shoe classroom lecture texasam tamu payless maysbusinessschool meganfeatherston"}, {"datetaken": "2004-02-23 00:00:02", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4016/4454780576_244e1993ed_o.jpg", "secret": "269d57c8aa", "media": "photo", "latitude": "30.610717", "id": "4454780576", "tags": "classroom lecture texasam tamu payless maysbusinessschool meganfeatherston"}, {"datetaken": "2004-02-23 00:00:03", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4005/4454001037_2a471b500f_o.jpg", "secret": "3876cc508b", "media": "photo", "latitude": "30.610717", "id": "4454001037", "tags": "shoe classroom purse lecture texasam tamu payless maysbusinessschool meganfeatherston"}, {"datetaken": "2004-02-23 00:00:04", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2719/4454001011_9f7b1dc97c_o.jpg", "secret": "962793972d", "media": "photo", "latitude": "30.610717", "id": "4454001011", "tags": "shoe classroom purse lecture texasam tamu payless maysbusinessschool meganfeatherston"}, {"datetaken": "2004-02-23 00:00:05", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2682/4454000987_21263dabc0_o.jpg", "secret": "6e08e2e6ee", "media": "photo", "latitude": "30.610717", "id": "4454000987", "tags": "shoe classroom purse lecture texasam tamu payless maysbusinessschool meganfeatherston"}, {"datetaken": "2004-02-23 00:00:06", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4019/4454001057_5293aee457_o.jpg", "secret": "0e2891db76", "media": "photo", "latitude": "30.610717", "id": "4454001057", "tags": "shoe classroom lecture texasam tamu payless maysbusinessschool meganfeatherston"}, {"datetaken": "2004-02-23 00:00:07", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2741/4454000999_8f5d093711_o.jpg", "secret": "27c4d4212b", "media": "photo", "latitude": "30.610717", "id": "4454000999", "tags": "shoe classroom purse lecture texasam tamu payless maysbusinessschool meganfeatherston"}, {"datetaken": "2004-02-23 00:00:08", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2726/4454780468_0ae4a3e9ff_o.jpg", "secret": "0597174101", "media": "photo", "latitude": "30.610717", "id": "4454780468", "tags": "shoe classroom purse lecture texasam tamu payless maysbusinessschool meganfeatherson meganfeatherston"}, {"datetaken": "2004-02-23 00:00:09", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4044/4454000901_d5c598f53c_o.jpg", "secret": "e8a606136e", "media": "photo", "latitude": "30.610717", "id": "4454000901", "tags": "classroom lecture texasam tamu payless maysbusinessschool meganfeatherson meganfeatherston"}, {"datetaken": "2004-02-23 00:00:10", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4052/4454000961_a0c9db2f7b_o.jpg", "secret": "6f38e8fa11", "media": "photo", "latitude": "30.610717", "id": "4454000961", "tags": "classroom purse lecture texasam tamu payless maysbusinessschool meganfeatherson meganfeatherston"}, {"datetaken": "2004-02-23 00:00:11", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4021/4454780432_ce12f58a63_o.jpg", "secret": "232847e74e", "media": "photo", "latitude": "30.610717", "id": "4454780432", "tags": "classroom lecture texasam tamu payless maysbusinessschool meganfeatherson meganfeatherston"}, {"datetaken": "2004-02-23 00:00:12", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4022/4454780358_117ce68982_o.jpg", "secret": "da429e4bd7", "media": "photo", "latitude": "30.610717", "id": "4454780358", "tags": "classroom lecture texasam tamu payless maysbusinessschool meganfeatherson meganfeatherston"}, {"datetaken": "2004-02-23 00:00:13", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2724/4454000821_a08a06e861_o.jpg", "secret": "8bbc5eabb9", "media": "photo", "latitude": "30.610717", "id": "4454000821", "tags": "classroom lecture texasam tamu payless maysbusinessschool meganfeatherson meganfeatherston"}, {"datetaken": "2004-02-23 00:00:14", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2775/4454780314_c3f834d032_o.jpg", "secret": "72b23d099d", "media": "photo", "latitude": "30.610717", "id": "4454780314", "tags": "classroom lecture texasam tamu payless maysbusinessschool meganfeatherson meganfeatherston"}, {"datetaken": "2004-02-23 00:00:15", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2715/4454780298_93530440a5_o.jpg", "secret": "19a292e225", "media": "photo", "latitude": "30.610717", "id": "4454780298", "tags": "classroom lecture texasam tamu payless maysbusinessschool meganfeatherson meganfeatherston"}, {"datetaken": "2004-02-23 00:00:16", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4047/4454780278_0ddbe2b1f1_o.jpg", "secret": "1da7a980c6", "media": "photo", "latitude": "30.610717", "id": "4454780278", "tags": "classroom lecture texasam tamu payless maysbusinessschool meganfeatherson meganfeatherston"}, {"datetaken": "2004-02-23 00:00:17", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2719/4454780260_87c3bbd0c5_o.jpg", "secret": "341d476b1b", "media": "photo", "latitude": "30.610717", "id": "4454780260", "tags": "classroom lecture texasam tamu payless maysbusinessschool meganfeatherson meganfeatherston"}, {"datetaken": "2004-02-23 00:00:18", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2775/4454780246_4d2fef6dcc_o.jpg", "secret": "769b175def", "media": "photo", "latitude": "30.610717", "id": "4454780246", "tags": "classroom lecture texasam tamu payless maysbusinessschool meganfeatherson meganfeatherston"}, {"datetaken": "2004-02-23 00:00:19", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4029/4454000751_2dfefee196_o.jpg", "secret": "e8177af48e", "media": "photo", "latitude": "30.610717", "id": "4454000751", "tags": "classroom lecture texasam tamu payless maysbusinessschool meganfeatherson meganfeatherston"}, {"datetaken": "2004-02-23 00:00:20", "license": "3", "title": "Megan Featherston visits Mays", "text": "", "album_id": "72157623546961645", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4071/4454000743_647f47dfe2_o.jpg", "secret": "e0d677e61f", "media": "photo", "latitude": "30.610717", "id": "4454000743", "tags": "classroom lecture texasam tamu payless maysbusinessschool meganfeatherson meganfeatherston"}, {"datetaken": "2007-02-14 19:43:17", "license": "6", "title": "Nick Clegg at St. Wilfrid's primary school, Sheffield", "text": "", "album_id": "72157623669470028", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2765/4453944814_b52d869dac_o.jpg", "secret": "d51ee81ba4", "media": "photo", "latitude": "0", "id": "4453944814", "tags": "uk school party education europe unitedkingdom sheffield politics government conference leader mp schools coalition speech dpm in liberaldemocrats libdem politican libdems deputyprimeminister sheffieldhallam nickclegg fairtax leaderoftheliberaldemocrats strongereconomyfairersociety opportunityforeveryone"}, {"datetaken": "2007-02-14 19:45:36", "license": "6", "title": "Nick Clegg at St. Wilfrid's primary school, Sheffield", "text": "", "album_id": "72157623669470028", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4453165839_0e4ff444b5_o.jpg", "secret": "ea50a73f18", "media": "photo", "latitude": "0", "id": "4453165839", "tags": "uk school party education europe unitedkingdom sheffield politics government conference leader mp schools coalition speech dpm in liberaldemocrats libdem politican libdems deputyprimeminister sheffieldhallam nickclegg fairtax leaderoftheliberaldemocrats strongereconomyfairersociety opportunityforeveryone"}, {"datetaken": "2007-02-14 19:46:46", "license": "6", "title": "Nick Clegg at St. Wilfrid's primary school, Sheffield", "text": "", "album_id": "72157623669470028", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4453165985_da514be82e_o.jpg", "secret": "e197a250a7", "media": "photo", "latitude": "0", "id": "4453165985", "tags": "uk school party education europe unitedkingdom sheffield politics government conference schools coalition speech in liberaldemocrats libdem politican libdems sheffieldhallam nickclegg fairtax strongereconomyfairersociety opportunityforeveryone"}, {"datetaken": "2007-02-14 19:49:00", "license": "6", "title": "Nick Clegg at St. Wilfrid's primary school, Sheffield", "text": "", "album_id": "72157623669470028", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4453945222_c2f504c851_o.jpg", "secret": "ba7a0fd4db", "media": "photo", "latitude": "0", "id": "4453945222", "tags": "uk school party education europe unitedkingdom sheffield politics government conference leader mp schools coalition speech dpm in liberaldemocrats libdem politican libdems deputyprimeminister sheffieldhallam nickclegg fairtax leaderoftheliberaldemocrats strongereconomyfairersociety opportunityforeveryone"}, {"datetaken": "2007-02-14 19:49:58", "license": "6", "title": "Nick Clegg at St. Wilfrid's primary school, Sheffield", "text": "", "album_id": "72157623669470028", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4453166251_8d2845f6e0_o.jpg", "secret": "f2d39f0caa", "media": "photo", "latitude": "0", "id": "4453166251", "tags": "uk school party education europe unitedkingdom sheffield politics government conference leader mp schools coalition speech dpm in liberaldemocrats libdem politican libdems deputyprimeminister sheffieldhallam nickclegg fairtax leaderoftheliberaldemocrats strongereconomyfairersociety opportunityforeveryone"}, {"datetaken": "2007-02-14 19:50:18", "license": "6", "title": "Nick Clegg at St. Wilfrid's primary school, Sheffield", "text": "", "album_id": "72157623669470028", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4453945504_22be413de0_o.jpg", "secret": "2b9dac3f9b", "media": "photo", "latitude": "0", "id": "4453945504", "tags": "uk school party education europe unitedkingdom sheffield politics government conference leader mp schools coalition speech dpm in liberaldemocrats libdem politican libdems deputyprimeminister sheffieldhallam nickclegg fairtax leaderoftheliberaldemocrats strongereconomyfairersociety opportunityforeveryone"}, {"datetaken": "2007-02-14 20:26:20", "license": "6", "title": "Nick Clegg, Lodge Moor Nursery School, Sheffield", "text": "", "album_id": "72157623669470028", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4453166483_c10a47f4a0_o.jpg", "secret": "a65c366ddf", "media": "photo", "latitude": "0", "id": "4453166483", "tags": "uk school party education europe unitedkingdom sheffield politics government conference leader mp schools coalition speech dpm in liberaldemocrats libdem politican libdems deputyprimeminister sheffieldhallam nickclegg fairtax leaderoftheliberaldemocrats strongereconomyfairersociety opportunityforeveryone"}, {"datetaken": "2007-02-14 20:26:52", "license": "6", "title": "Nick Clegg, Lodge Moor Nursery School, Sheffield", "text": "", "album_id": "72157623669470028", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2703/4453945762_9e3159b801_o.jpg", "secret": "0ebe386855", "media": "photo", "latitude": "0", "id": "4453945762", "tags": "uk school party education europe unitedkingdom sheffield politics government conference leader mp schools coalition speech dpm in liberaldemocrats libdem politican libdems deputyprimeminister sheffieldhallam nickclegg fairtax leaderoftheliberaldemocrats strongereconomyfairersociety opportunityforeveryone"}, {"datetaken": "2007-02-14 20:28:45", "license": "6", "title": "Nick Clegg, Lodge Moor Nursery School, Sheffield", "text": "", "album_id": "72157623669470028", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4453945892_3b3fbeac9e_o.jpg", "secret": "a19b20fc36", "media": "photo", "latitude": "0", "id": "4453945892", "tags": "uk school party education europe unitedkingdom sheffield politics government conference leader mp schools coalition speech dpm in liberaldemocrats libdem politican libdems deputyprimeminister sheffieldhallam nickclegg fairtax leaderoftheliberaldemocrats strongereconomyfairersociety opportunityforeveryone"}, {"datetaken": "2007-02-14 20:29:59", "license": "6", "title": "Nick Clegg, Lodge Moor Nursery School, Sheffield", "text": "", "album_id": "72157623669470028", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4453946012_529959df43_o.jpg", "secret": "1e0ce35e15", "media": "photo", "latitude": "0", "id": "4453946012", "tags": "uk school party education europe unitedkingdom sheffield politics government conference leader mp schools coalition speech dpm in liberaldemocrats libdem politican libdems deputyprimeminister sheffieldhallam nickclegg fairtax leaderoftheliberaldemocrats strongereconomyfairersociety opportunityforeveryone"}, {"datetaken": "2007-02-14 20:30:38", "license": "6", "title": "Nick Clegg, Lodge Moor Nursery School, Sheffield", "text": "", "album_id": "72157623669470028", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4453167035_e0503e429b_o.jpg", "secret": "701fe75982", "media": "photo", "latitude": "0", "id": "4453167035", "tags": "uk school party education europe unitedkingdom sheffield politics government conference leader mp schools coalition speech dpm in liberaldemocrats libdem politican libdems deputyprimeminister sheffieldhallam nickclegg fairtax leaderoftheliberaldemocrats strongereconomyfairersociety opportunityforeveryone"}, {"datetaken": "2007-02-14 20:39:17", "license": "6", "title": "Nick Clegg, Lodge Moor Nursery School, Sheffield", "text": "", "album_id": "72157623669470028", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4453946260_694edf2f67_o.jpg", "secret": "acb190ec9a", "media": "photo", "latitude": "0", "id": "4453946260", "tags": "uk school party education europe unitedkingdom sheffield politics government conference leader mp schools coalition speech dpm in liberaldemocrats libdem politican libdems deputyprimeminister sheffieldhallam nickclegg fairtax leaderoftheliberaldemocrats strongereconomyfairersociety opportunityforeveryone"}, {"datetaken": "2007-02-14 20:40:43", "license": "6", "title": "Nick Clegg, Lodge Moor Nursery School, Sheffield", "text": "", "album_id": "72157623669470028", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4453167263_3f014215df_o.jpg", "secret": "df19ea7e0a", "media": "photo", "latitude": "0", "id": "4453167263", "tags": "uk school party education europe unitedkingdom sheffield politics government conference leader mp schools coalition speech dpm in liberaldemocrats libdem politican libdems deputyprimeminister sheffieldhallam nickclegg fairtax leaderoftheliberaldemocrats strongereconomyfairersociety opportunityforeveryone"}, {"datetaken": "2005-09-16 00:00:00", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4067/4453760279_22104275bb_o.jpg", "secret": "f1edaca868", "media": "photo", "latitude": "30.610717", "id": "4453760279", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:01", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4068/4454539332_976920227b_o.jpg", "secret": "3fe3dba68c", "media": "photo", "latitude": "30.610717", "id": "4454539332", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:02", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2801/4453760201_031816d6a1_o.jpg", "secret": "0d8fda27ba", "media": "photo", "latitude": "30.610717", "id": "4453760201", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:03", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2798/4453760187_9b45f99b2e_o.jpg", "secret": "4c85debff3", "media": "photo", "latitude": "30.610717", "id": "4453760187", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:04", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4028/4454539270_10d0088bb9_o.jpg", "secret": "916055bc8a", "media": "photo", "latitude": "30.610717", "id": "4454539270", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:05", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4014/4454539294_057934bfce_o.jpg", "secret": "6852d075cc", "media": "photo", "latitude": "30.610717", "id": "4454539294", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:06", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4044/4453760229_7a8bb82ba2_o.jpg", "secret": "a05f06cb8d", "media": "photo", "latitude": "30.610717", "id": "4453760229", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:07", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4023/4453760163_d0aa973fbd_o.jpg", "secret": "1bb5fa7152", "media": "photo", "latitude": "30.610717", "id": "4453760163", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:08", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4023/4454539192_d2fdf7b26c_o.jpg", "secret": "22e8d55c3c", "media": "photo", "latitude": "30.610717", "id": "4454539192", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:09", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4022/4454539222_4cdb4fe6e1_o.jpg", "secret": "62df238272", "media": "photo", "latitude": "30.610717", "id": "4454539222", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:10", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2731/4454539140_8cf8ef37b9_o.jpg", "secret": "b05f0cb23f", "media": "photo", "latitude": "30.610717", "id": "4454539140", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:11", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2796/4454539104_783ba50720_o.jpg", "secret": "f7afa38549", "media": "photo", "latitude": "30.610717", "id": "4454539104", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:12", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4009/4453760139_8ea78f946d_o.jpg", "secret": "df8c11a71e", "media": "photo", "latitude": "30.610717", "id": "4453760139", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:13", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4007/4453760055_4aec3191c8_o.jpg", "secret": "cd0f4609da", "media": "photo", "latitude": "30.610717", "id": "4453760055", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:14", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4025/4454539130_2152548bd5_o.jpg", "secret": "5d01c3bec8", "media": "photo", "latitude": "30.610717", "id": "4454539130", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:15", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4068/4453760083_e02dd7a6a9_o.jpg", "secret": "e2b335e78c", "media": "photo", "latitude": "30.610717", "id": "4453760083", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:16", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4060/4453760093_8c43d35a41_o.jpg", "secret": "1472ec8f87", "media": "photo", "latitude": "30.610717", "id": "4453760093", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:17", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4036/4453759981_39dd5111de_o.jpg", "secret": "09969f53ee", "media": "photo", "latitude": "30.610717", "id": "4453759981", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:18", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2767/4454539028_f2b0853b0f_o.jpg", "secret": "53e8d2dfd6", "media": "photo", "latitude": "30.610717", "id": "4454539028", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:19", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4044/4454539008_072aa8f881_o.jpg", "secret": "cac9d4813a", "media": "photo", "latitude": "30.610717", "id": "4454539008", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2005-09-16 00:00:20", "license": "3", "title": "Mike McLoad visits Mays", "text": "", "album_id": "72157623670920286", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4009/4453759959_a788ec5b67_o.jpg", "secret": "639f85c8da", "media": "photo", "latitude": "30.610717", "id": "4453759959", "tags": "classroom lecture texasam tamu maysbusinessschool mikemcload"}, {"datetaken": "2010-01-23 08:43:33", "license": "4", "title": "View of the mountains near Fussen shot through the window of a moving bus", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4298234156_c92b948353_o.jpg", "secret": "0ca16ea95c", "media": "photo", "latitude": "0", "id": "4298234156", "tags": "travel mountains castles germany deutschland bavaria neuschwanstein schloss fussen"}, {"datetaken": "2010-01-23 08:43:44", "license": "4", "title": "Hohenschwangau shot before the sun came up", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2754/4298234616_f95c3809c8_o.jpg", "secret": "cd857a71b5", "media": "photo", "latitude": "0", "id": "4298234616", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen"}, {"datetaken": "2010-01-23 08:43:56", "license": "4", "title": "The Alpsee near Fussen on a clear crisp morning - where was my graduated ND filter?", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2720/4298235092_4b05111473_o.jpg", "secret": "2c77b05806", "media": "photo", "latitude": "0", "id": "4298235092", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen"}, {"datetaken": "2010-01-23 08:44:24", "license": "4", "title": "The Alpsee near Fussen on a clear crisp morning - where was my graduated ND filter?", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4298236112_82b41f5578_o.jpg", "secret": "727c5351e4", "media": "photo", "latitude": "0", "id": "4298236112", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen"}, {"datetaken": "2010-01-23 08:44:40", "license": "4", "title": "View of Neuschwanstein Castle at the base of the hill", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2796/4297492347_4cf9d1a220_o.jpg", "secret": "564cabaed1", "media": "photo", "latitude": "0", "id": "4297492347", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen"}, {"datetaken": "2010-01-23 08:44:59", "license": "4", "title": "Lame view of Neuschwanstein from a waiting area", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4297493067_89fee78820_o.jpg", "secret": "675d3d2c12", "media": "photo", "latitude": "0", "id": "4297493067", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen"}, {"datetaken": "2010-01-23 08:45:14", "license": "4", "title": "View of the landscape near Fussen with the Forggensee in the distance", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4297493649_411dcfb300_o.jpg", "secret": "ace410108e", "media": "photo", "latitude": "0", "id": "4297493649", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen"}, {"datetaken": "2010-01-23 08:45:21", "license": "4", "title": "Neuschwanstein Castle with a rising sun behind it - this would be a good site for a late afternoon shot", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2701/4298238400_87ebf97705_o.jpg", "secret": "51ce98b239", "media": "photo", "latitude": "0", "id": "4298238400", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen"}, {"datetaken": "2010-01-23 08:45:36", "license": "4", "title": "Hohenschwangau with morning sun", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4298239016_e9c0ea6deb_o.jpg", "secret": "5fc92477c3", "media": "photo", "latitude": "0", "id": "4298239016", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen hohenschwangau"}, {"datetaken": "2010-01-23 08:45:49", "license": "4", "title": "I loved these ads - they were all over Germany", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4298239552_b065f08db6_o.jpg", "secret": "c093387aee", "media": "photo", "latitude": "0", "id": "4298239552", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen"}, {"datetaken": "2010-01-23 08:46:04", "license": "4", "title": "Painting on a building in Fussen - not sure of the translation", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4298240146_00afe56da1_o.jpg", "secret": "9cd121b7b3", "media": "photo", "latitude": "0", "id": "4298240146", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen"}, {"datetaken": "2010-01-23 08:46:33", "license": "4", "title": "Long distance shot of mountains near the Alpsee", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2749/4298241254_c665839c15_o.jpg", "secret": "2457f7923e", "media": "photo", "latitude": "0", "id": "4298241254", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen"}, {"datetaken": "2010-01-23 08:46:53", "license": "4", "title": "Neuschwanstein Castle viewed from Hohenschwangau Castle", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4297497389_7bd28801df_o.jpg", "secret": "dafaae8cb2", "media": "photo", "latitude": "0", "id": "4297497389", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen 5photosaday"}, {"datetaken": "2010-01-23 08:47:14", "license": "4", "title": "Neuschwanstein Castle viewed from Hohenschwangau Castle", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4297498141_95a020c39e_o.jpg", "secret": "81e2ef4097", "media": "photo", "latitude": "0", "id": "4297498141", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen"}, {"datetaken": "2010-01-23 08:47:29", "license": "4", "title": "Painting on the side of a building in Fussen", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4297498783_bf51ac3c22_o.jpg", "secret": "55d670cfdc", "media": "photo", "latitude": "0", "id": "4297498783", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen"}, {"datetaken": "2010-01-23 08:47:45", "license": "4", "title": "Painting on the side of a building in Fussen", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4298243840_264bc55b72_o.jpg", "secret": "41e26b5b45", "media": "photo", "latitude": "0", "id": "4298243840", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen"}, {"datetaken": "2010-01-23 08:47:56", "license": "4", "title": "Two of the best things in life - a woman with nice hair and gelato", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4298244272_7c3030cb85_o.jpg", "secret": "1e0a6d4fee", "media": "photo", "latitude": "0", "id": "4298244272", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen"}, {"datetaken": "2010-01-23 08:48:20", "license": "4", "title": "This is not my original work - this is a poster of Neuschwanstein Castle - this is the view I wanted but the #$%^ trail was closed!", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4297500797_45568374bf_o.jpg", "secret": "37fa0ea2d0", "media": "photo", "latitude": "0", "id": "4297500797", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen"}, {"datetaken": "2010-01-23 08:48:41", "license": "4", "title": "This is not my original work - this is a poster of Neuschwanstein Castle - this is the view I wanted but the #$%^ trail was closed!", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4298246020_34a22aa9ee_o.jpg", "secret": "d61f76883c", "media": "photo", "latitude": "0", "id": "4298246020", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen"}, {"datetaken": "2010-01-23 08:49:02", "license": "4", "title": "Stitched shot of Hohenschwangau near Fussen", "text": "", "album_id": "72157623268567982", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2698/4297502371_e41a708f41_o.jpg", "secret": "e5c2159246", "media": "photo", "latitude": "0", "id": "4297502371", "tags": "travel castles germany deutschland bavaria neuschwanstein schloss fussen hohenschwangau"}, {"datetaken": "2010-03-20 15:06:52", "license": "3", "title": "LA Visit", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4461261400_2ef359c3d2_o.jpg", "secret": "e97d43b93a", "media": "photo", "latitude": "0", "id": "4461261400", "tags": "ikea brian cassie"}, {"datetaken": "2010-03-20 15:07:21", "license": "3", "title": "LA Visit", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4460482193_faea41dca8_o.jpg", "secret": "2328bb5076", "media": "photo", "latitude": "0", "id": "4460482193", "tags": "ikea brian cassie"}, {"datetaken": "2010-03-20 15:08:11", "license": "3", "title": "LA Visit", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4461261974_526d8b09f0_o.jpg", "secret": "e0af68c0cc", "media": "photo", "latitude": "0", "id": "4461261974", "tags": "ikea cassie"}, {"datetaken": "2010-03-20 15:16:31", "license": "3", "title": "cassie tries out a bed", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4460483061_f108d76806_o.jpg", "secret": "cb38cd4297", "media": "photo", "latitude": "0", "id": "4460483061", "tags": "ikea cassie"}, {"datetaken": "2010-03-20 15:20:32", "license": "3", "title": "LA Visit", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4460483411_8f501972ed_o.jpg", "secret": "f068de8480", "media": "photo", "latitude": "0", "id": "4460483411", "tags": "ikea cassie"}, {"datetaken": "2010-03-20 15:49:03", "license": "3", "title": "colorful shower curtains", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/4461263230_ceaafecc3b_o.jpg", "secret": "417b63d0b7", "media": "photo", "latitude": "0", "id": "4461263230", "tags": "ikea"}, {"datetaken": "2010-03-20 15:51:46", "license": "3", "title": "LA Visit", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4461263664_dd93ae9ce3_o.jpg", "secret": "877910fd67", "media": "photo", "latitude": "0", "id": "4461263664", "tags": "ikea brian cassie"}, {"datetaken": "2010-03-20 16:22:09", "license": "3", "title": "LA Visit", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4460484343_40dbd5cc46_o.jpg", "secret": "ef9c5f66e2", "media": "photo", "latitude": "0", "id": "4460484343", "tags": "brian cassie"}, {"datetaken": "2010-03-20 19:47:41", "license": "3", "title": "Fried poundedn chicken with cheese and ham", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4460484627_0b9d995626_o.jpg", "secret": "e5db855b3a", "media": "photo", "latitude": "0", "id": "4460484627", "tags": ""}, {"datetaken": "2010-03-20 19:47:58", "license": "3", "title": "tasty gnocci", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4461264476_41b1954c25_o.jpg", "secret": "6c2ee86d51", "media": "photo", "latitude": "0", "id": "4461264476", "tags": ""}, {"datetaken": "2010-03-20 19:48:23", "license": "3", "title": "LA Visit", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2758/4460485239_7a8f064b55_o.jpg", "secret": "08f3aa351d", "media": "photo", "latitude": "0", "id": "4460485239", "tags": "heather"}, {"datetaken": "2010-03-20 19:48:48", "license": "3", "title": "Michael and Heather", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4460485537_ed677ebe92_o.jpg", "secret": "22d9896194", "media": "photo", "latitude": "0", "id": "4460485537", "tags": "heather"}, {"datetaken": "2010-03-20 20:38:25", "license": "3", "title": "LA Visit", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4460485719_d59a8528b1_o.jpg", "secret": "6f8f56121d", "media": "photo", "latitude": "0", "id": "4460485719", "tags": ""}, {"datetaken": "2010-03-20 20:40:48", "license": "3", "title": "LA Visit", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4460486047_a6a0e38076_o.jpg", "secret": "9aaa8e0d59", "media": "photo", "latitude": "0", "id": "4460486047", "tags": "brian cassie"}, {"datetaken": "2010-03-20 21:20:28", "license": "3", "title": "LA Visit", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4460486325_82e25b31f1_o.jpg", "secret": "569802c606", "media": "photo", "latitude": "0", "id": "4460486325", "tags": "mila lola superears"}, {"datetaken": "2010-03-20 21:53:01", "license": "3", "title": "LA Visit", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4461265970_aa9107234e_o.jpg", "secret": "6c4939b872", "media": "photo", "latitude": "0", "id": "4461265970", "tags": "heather lola"}, {"datetaken": "2010-03-21 09:06:47", "license": "3", "title": "Scaredy dog?", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4461276630_7e176e8815_o.jpg", "secret": "0ec1cfc160", "media": "photo", "latitude": "0", "id": "4461276630", "tags": "lola"}, {"datetaken": "2010-03-21 10:28:46", "license": "3", "title": "Cassie and I go for the cheese", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4461276934_637138c8f6_o.jpg", "secret": "b06e246059", "media": "photo", "latitude": "0", "id": "4461276934", "tags": "cassie"}, {"datetaken": "2010-03-21 10:45:33", "license": "3", "title": "Double take", "text": "", "album_id": "72157623562884889", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4461277100_109bc391e9_o.jpg", "secret": "5a11cfc324", "media": "photo", "latitude": "0", "id": "4461277100", "tags": "cassie"}, {"datetaken": "2010-03-23 13:28:27", "license": "3", "title": "Provincial Cycling", "text": "", "album_id": "72157623686611346", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4460952848_c2f8a2e37e_o.jpg", "secret": "363512dae7", "media": "photo", "latitude": "0", "id": "4460952848", "tags": "people netherlands dutch bike bicycle bikes bicycles fietsen zeist fiets fietsers urbancycling cyclechic peopleonbicycles dutchbikes dutchbicycles peopleonbikes amsterdamize"}, {"datetaken": "2010-03-23 15:44:55", "license": "3", "title": "Provincial Cycling", "text": "", "album_id": "72157623686611346", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2713/4460953490_37bd03d836_o.jpg", "secret": "54509f515c", "media": "photo", "latitude": "0", "id": "4460953490", "tags": "people netherlands dutch bike bicycle bikes bicycles fietsen zeist fiets fietsers urbancycling cyclechic peopleonbicycles dutchbikes dutchbicycles peopleonbikes amsterdamize"}, {"datetaken": "2010-03-23 15:45:27", "license": "3", "title": "Provincial Cycling", "text": "", "album_id": "72157623686611346", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2738/4460954044_bf02121638_o.jpg", "secret": "4aa9eac880", "media": "photo", "latitude": "0", "id": "4460954044", "tags": "people netherlands dutch bike bicycle bikes bicycles fietsen zeist fiets fietsers urbancycling cyclechic peopleonbicycles dutchbikes dutchbicycles peopleonbikes amsterdamize"}, {"datetaken": "2010-03-23 15:45:41", "license": "3", "title": "Provincial Cycling", "text": "", "album_id": "72157623686611346", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4460954606_9ea36a1f14_o.jpg", "secret": "515eb16203", "media": "photo", "latitude": "0", "id": "4460954606", "tags": "people netherlands dutch bike bicycle bikes bicycles fietsen zeist fiets fietsers urbancycling cyclechic peopleonbicycles dutchbikes dutchbicycles peopleonbikes amsterdamize"}, {"datetaken": "2010-03-23 15:46:34", "license": "3", "title": "Provincial Cycling", "text": "", "album_id": "72157623686611346", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4460955222_4eb17bd548_o.jpg", "secret": "82b834b5a7", "media": "photo", "latitude": "0", "id": "4460955222", "tags": "people netherlands dutch bike bicycle bikes bicycles fietsen zeist fiets fietsers urbancycling cyclechic peopleonbicycles dutchbikes dutchbicycles peopleonbikes amsterdamize"}, {"datetaken": "2010-03-23 15:46:43", "license": "3", "title": "Provincial Cycling", "text": "", "album_id": "72157623686611346", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2778/4460955758_90c7dfbd84_o.jpg", "secret": "4c432330b9", "media": "photo", "latitude": "0", "id": "4460955758", "tags": "people netherlands dutch bike bicycle bikes bicycles fietsen zeist fiets fietsers urbancycling cyclechic peopleonbicycles dutchbikes dutchbicycles peopleonbikes amsterdamize"}, {"datetaken": "2010-03-23 15:47:24", "license": "3", "title": "Provincial Cycling", "text": "", "album_id": "72157623686611346", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2676/4460956308_5c16640561_o.jpg", "secret": "81671d5886", "media": "photo", "latitude": "0", "id": "4460956308", "tags": "people netherlands dutch bike bicycle bikes bicycles fietsen zeist fiets fietsers urbancycling cyclechic peopleonbicycles dutchbikes dutchbicycles peopleonbikes amsterdamize"}, {"datetaken": "2010-03-23 15:48:03", "license": "3", "title": "Provincial Cycling", "text": "", "album_id": "72157623686611346", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4460176173_20a2a67f55_o.jpg", "secret": "cce92ef417", "media": "photo", "latitude": "0", "id": "4460176173", "tags": "people netherlands dutch bike bicycle bikes bicycles fietsen zeist fiets fietsers urbancycling cyclechic peopleonbicycles dutchbikes dutchbicycles peopleonbikes amsterdamize"}, {"datetaken": "2010-03-23 15:48:25", "license": "3", "title": "Provincial Cycling", "text": "", "album_id": "72157623686611346", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4460957570_0ded74623b_o.jpg", "secret": "5f1df6aae9", "media": "photo", "latitude": "0", "id": "4460957570", "tags": "people netherlands dutch bike bicycle bikes bicycles fietsen zeist fiets fietsers urbancycling cyclechic peopleonbicycles dutchbikes dutchbicycles peopleonbikes amsterdamize"}, {"datetaken": "2010-03-23 15:48:41", "license": "3", "title": "Provincial Cycling", "text": "", "album_id": "72157623686611346", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4460958158_357a5a4a7b_o.jpg", "secret": "3634d44404", "media": "photo", "latitude": "0", "id": "4460958158", "tags": "people netherlands dutch bike bicycle bikes bicycles fietsen zeist fiets fietsers urbancycling cyclechic peopleonbicycles dutchbikes dutchbicycles peopleonbikes amsterdamize"}, {"datetaken": "2010-03-23 15:48:54", "license": "3", "title": "Provincial Cycling", "text": "", "album_id": "72157623686611346", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4460178081_30418991cf_o.jpg", "secret": "62ae9ec8ac", "media": "photo", "latitude": "0", "id": "4460178081", "tags": "people netherlands dutch bike bicycle bikes bicycles fietsen zeist fiets fietsers urbancycling cyclechic peopleonbicycles dutchbikes dutchbicycles peopleonbikes amsterdamize"}, {"datetaken": "2010-03-23 15:50:26", "license": "3", "title": "Provincial Cycling", "text": "", "album_id": "72157623686611346", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4460959534_26ae75ff63_o.jpg", "secret": "e609bd5c9a", "media": "photo", "latitude": "0", "id": "4460959534", "tags": "people netherlands dutch bike bicycle bikes bicycles fietsen zeist fiets fietsers urbancycling cyclechic peopleonbicycles dutchbikes dutchbicycles peopleonbikes amsterdamize"}, {"datetaken": "2010-03-23 15:51:03", "license": "5", "title": "Provincial Cycling", "text": "", "album_id": "72157623686611346", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4460960236_5094c96efc_o.jpg", "secret": "3b6d2610f7", "media": "photo", "latitude": "0", "id": "4460960236", "tags": "people netherlands dutch bike bicycle bikes bicycles fietsen zeist fiets fietsers urbancycling cyclechic peopleonbicycles dutchbikes dutchbicycles peopleonbikes amsterdamize euvoudebike"}, {"datetaken": "2009-08-16 15:43:08", "license": "4", "title": "Learn, dragon, learn!", "text": "", "album_id": "72157623160053863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4304531477_72339a9d36_o.jpg", "secret": "ee06871d85", "media": "photo", "latitude": "0", "id": "4304531477", "tags": "state indianapolis statefair indiana fair indianastatefair in"}, {"datetaken": "2009-08-16 15:45:25", "license": "4", "title": "Food stands at the fair", "text": "", "album_id": "72157623160053863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4305276928_cd2b20aa7a_o.jpg", "secret": "db8a2e7aa2", "media": "photo", "latitude": "0", "id": "4305276928", "tags": "state indianapolis statefair indiana fair indianastatefair in"}, {"datetaken": "2009-08-16 15:46:38", "license": "4", "title": "Custom Auto Tags", "text": "", "album_id": "72157623160053863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4305278116_5dbba9a5fa_o.jpg", "secret": "075a144f44", "media": "photo", "latitude": "0", "id": "4305278116", "tags": "state indianapolis statefair indiana fair indianastatefair in"}, {"datetaken": "2009-08-16 15:50:06", "license": "4", "title": "The Pharoh's Fury", "text": "", "album_id": "72157623160053863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4305279194_05875edd83_o.jpg", "secret": "4cae1b9796", "media": "photo", "latitude": "0", "id": "4305279194", "tags": "state indianapolis statefair indiana fair indianastatefair in"}, {"datetaken": "2009-08-16 16:03:03", "license": "4", "title": "Chicken warning", "text": "", "album_id": "72157623160053863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4305280260_2bcc215d57_o.jpg", "secret": "2ba760832a", "media": "photo", "latitude": "0", "id": "4305280260", "tags": "state indianapolis statefair indiana fair indianastatefair in"}, {"datetaken": "2009-08-16 16:10:51", "license": "4", "title": "Bunnies and their exhibitors", "text": "", "album_id": "72157623160053863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4304537447_25e1c65457_o.jpg", "secret": "eceaa190fd", "media": "photo", "latitude": "0", "id": "4304537447", "tags": "state indianapolis statefair indiana fair indianastatefair in"}, {"datetaken": "2009-08-16 16:24:40", "license": "4", "title": "The art show", "text": "", "album_id": "72157623160053863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4305282876_4f0d16f21a_o.jpg", "secret": "11f1ec0910", "media": "photo", "latitude": "0", "id": "4305282876", "tags": "state indianapolis statefair indiana fair indianastatefair in"}, {"datetaken": "2009-08-16 16:33:40", "license": "4", "title": "Fair queens of long ago", "text": "", "album_id": "72157623160053863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4304539787_4f6d389f99_o.jpg", "secret": "d9263bdbe8", "media": "photo", "latitude": "0", "id": "4304539787", "tags": "state indianapolis statefair indiana fair indianastatefair in fairqueen indianastatefairqueen"}, {"datetaken": "2009-08-16 16:44:11", "license": "4", "title": "Could I go and paint the paintings?", "text": "", "album_id": "72157623160053863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4304541307_0f6b93d5f1_o.jpg", "secret": "86338c5690", "media": "photo", "latitude": "0", "id": "4304541307", "tags": "state indianapolis statefair indiana fair indianastatefair in"}, {"datetaken": "2009-08-16 16:54:59", "license": "4", "title": "Scrapbooking", "text": "", "album_id": "72157623160053863", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4305286700_8d4c703128_o.jpg", "secret": "793000d94f", "media": "photo", "latitude": "0", "id": "4305286700", "tags": "state indianapolis statefair indiana fair indianastatefair in"}, {"datetaken": "2009-08-16 17:16:12", "license": "4", "title": "Milking", "text": "", "album_id": "72157623160053863", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4305287910_9eb914913d_o.jpg", "secret": "94fec13b12", "media": "photo", "latitude": "0", "id": "4305287910", "tags": "state indianapolis statefair indiana fair indianastatefair in"}, {"datetaken": "2009-08-16 17:30:50", "license": "4", "title": "Draft horse competition", "text": "", "album_id": "72157623160053863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4305289118_941a82bc28_o.jpg", "secret": "0958af8ce4", "media": "photo", "latitude": "0", "id": "4305289118", "tags": "horse state stadium indianapolis statefair indiana fair indianastatefair in"}, {"datetaken": "2009-08-16 17:51:52", "license": "4", "title": "The announcer's platform", "text": "", "album_id": "72157623160053863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4304546205_703a2bc1f3_o.jpg", "secret": "ffe1810523", "media": "photo", "latitude": "0", "id": "4304546205", "tags": "state indianapolis statefair indiana fair indianastatefair in"}, {"datetaken": "2009-08-16 18:04:08", "license": "4", "title": "Suppertime", "text": "", "album_id": "72157623160053863", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2743/4304547141_e603fba92c_o.jpg", "secret": "150402528b", "media": "photo", "latitude": "0", "id": "4304547141", "tags": "state indianapolis statefair indiana fair milkshake indianastatefair in strawberrymilkshake"}, {"datetaken": "2009-08-16 18:20:39", "license": "4", "title": "The Indiana State Fair Midway", "text": "", "album_id": "72157623160053863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4305292064_56d122508c_o.jpg", "secret": "016217730f", "media": "photo", "latitude": "0", "id": "4305292064", "tags": "state indianapolis statefair indiana fair indianastatefair in"}, {"datetaken": "2009-08-16 18:26:55", "license": "4", "title": "It's made of cheese! Cheese!", "text": "", "album_id": "72157623160053863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4304548785_0e598c1b8c_o.jpg", "secret": "64a45f34b0", "media": "photo", "latitude": "0", "id": "4304548785", "tags": "cheese state indianapolis statefair indiana fair indianastatefair in cheesesculpture ediblesculpture"}, {"datetaken": "2009-08-16 18:40:55", "license": "4", "title": "Baby goats!", "text": "", "album_id": "72157623160053863", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2710/4305293650_0d302ac206_o.jpg", "secret": "725bce276e", "media": "photo", "latitude": "0", "id": "4305293650", "tags": "state indianapolis statefair goat indiana fair babygoat indianastatefair in"}, {"datetaken": "2010-01-26 02:54:15", "license": "4", "title": "heli-flag", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4306145324_66400e6e85_o.jpg", "secret": "5edfa11a8d", "media": "photo", "latitude": "0", "id": "4306145324", "tags": ""}, {"datetaken": "2010-01-26 03:06:02", "license": "4", "title": "could this be any more Australian?", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4306144400_5cbe92df49_o.jpg", "secret": "60a08de5dd", "media": "photo", "latitude": "0", "id": "4306144400", "tags": ""}, {"datetaken": "2010-01-26 03:31:43", "license": "4", "title": "view from my hotel roof", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4305399551_b6c5a8836c_o.jpg", "secret": "c28fbde54a", "media": "photo", "latitude": "0", "id": "4305399551", "tags": ""}, {"datetaken": "2010-01-26 03:31:51", "license": "4", "title": "boats in the harbour", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4305398637_38740d71b9_o.jpg", "secret": "7b9a2ddb0e", "media": "photo", "latitude": "0", "id": "4305398637", "tags": ""}, {"datetaken": "2010-01-26 03:32:26", "license": "4", "title": "Sydney Opera House", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2590/4305397551_33ecdffc66_o.jpg", "secret": "2c5804bf61", "media": "photo", "latitude": "0", "id": "4305397551", "tags": ""}, {"datetaken": "2010-01-26 03:32:56", "license": "4", "title": "harbour boats", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4305396549_249d888d10_o.jpg", "secret": "0b79806095", "media": "photo", "latitude": "0", "id": "4305396549", "tags": ""}, {"datetaken": "2010-01-26 03:40:22", "license": "4", "title": "Sydney Harbour Bridge", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4306139566_7ff701082e_o.jpg", "secret": "fb3ee79720", "media": "photo", "latitude": "0", "id": "4306139566", "tags": ""}, {"datetaken": "2010-01-26 03:40:59", "license": "4", "title": "Sydney Harbour Bridge", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4306138750_75fa5fe73b_o.jpg", "secret": "2e66b01823", "media": "photo", "latitude": "0", "id": "4306138750", "tags": ""}, {"datetaken": "2010-01-26 03:41:47", "license": "4", "title": "Sydney Harbour", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4305393947_3b5f009d7c_o.jpg", "secret": "687ba3da28", "media": "photo", "latitude": "0", "id": "4305393947", "tags": ""}, {"datetaken": "2010-01-26 03:44:32", "license": "4", "title": "crowds", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4305392951_19f6a0deb6_o.jpg", "secret": "93e52751e4", "media": "photo", "latitude": "0", "id": "4305392951", "tags": ""}, {"datetaken": "2010-01-26 05:03:01", "license": "4", "title": "Anzac memorial statue", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4305391913_36f13ccb59_o.jpg", "secret": "0962fbde1b", "media": "photo", "latitude": "0", "id": "4305391913", "tags": ""}, {"datetaken": "2010-01-26 05:03:08", "license": "4", "title": "Anzac memorial statue", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4305391125_663cf7360a_o.jpg", "secret": "88f99655f7", "media": "photo", "latitude": "0", "id": "4305391125", "tags": ""}, {"datetaken": "2010-01-26 05:04:29", "license": "4", "title": "Anzac memorial statue from above", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2677/4305390027_da5cf796e1_o.jpg", "secret": "2f3db0962d", "media": "photo", "latitude": "0", "id": "4305390027", "tags": ""}, {"datetaken": "2010-01-26 05:04:58", "license": "4", "title": "wall inside the Anzac memorial", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4306133028_b5054b192b_o.jpg", "secret": "574dd2af44", "media": "photo", "latitude": "0", "id": "4306133028", "tags": ""}, {"datetaken": "2010-01-26 05:05:29", "license": "4", "title": "Anzac memorial plaque", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4305387965_f2f3281752_o.jpg", "secret": "ecc11ee650", "media": "photo", "latitude": "0", "id": "4305387965", "tags": ""}, {"datetaken": "2010-01-26 05:05:51", "license": "4", "title": "view from the Anzac memorial steps", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4305386873_ed986a442c_o.jpg", "secret": "1b1d27ce42", "media": "photo", "latitude": "0", "id": "4305386873", "tags": ""}, {"datetaken": "2010-01-26 05:07:03", "license": "4", "title": "Anzac memorial", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4306129878_9b94c551eb_o.jpg", "secret": "da22fbf4fe", "media": "photo", "latitude": "0", "id": "4306129878", "tags": ""}, {"datetaken": "2010-01-26 05:08:41", "license": "4", "title": "Anzac memorial", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2712/4306129076_8f7f4a092e_o.jpg", "secret": "46cb884516", "media": "photo", "latitude": "0", "id": "4306129076", "tags": ""}, {"datetaken": "2010-01-26 05:20:26", "license": "4", "title": "St Mary's Cathedral, Sydney", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2794/4306128192_8e410acd83_o.jpg", "secret": "b0f5272a4a", "media": "photo", "latitude": "0", "id": "4306128192", "tags": ""}, {"datetaken": "2010-01-26 05:20:39", "license": "4", "title": "St Mary's Cathedral, Sydney", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4306127342_3570ffdec3_o.jpg", "secret": "08b2a17c5f", "media": "photo", "latitude": "0", "id": "4306127342", "tags": ""}, {"datetaken": "2010-01-26 05:23:38", "license": "4", "title": "St Mary's Cathedral, Sydney", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2698/4306126452_64d1aed2ea_o.jpg", "secret": "1ea6e0ba8c", "media": "photo", "latitude": "0", "id": "4306126452", "tags": ""}, {"datetaken": "2010-01-26 05:54:19", "license": "4", "title": "King Edward VII", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4305381767_4f5de3d294_o.jpg", "secret": "ca72b4df38", "media": "photo", "latitude": "0", "id": "4305381767", "tags": ""}, {"datetaken": "2010-01-26 05:54:30", "license": "4", "title": "King Edward VII", "text": "", "album_id": "72157623162012697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4306124672_37efa2c6e8_o.jpg", "secret": "e719dd6953", "media": "photo", "latitude": "0", "id": "4306124672", "tags": ""}, {"datetaken": "2009-02-02 00:00:00", "license": "3", "title": "Mark Taylor visits Mays", "text": "", "album_id": "72157623388688073", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4048/4389398327_1c7eba9b04_o.jpg", "secret": "d50b9c3cae", "media": "photo", "latitude": "30.610717", "id": "4389398327", "tags": "students executive texasam marktaylor tamu aggies maysbusinessschool bakermckenzie"}, {"datetaken": "2009-02-02 00:00:01", "license": "3", "title": "Mark Taylor visits Mays", "text": "", "album_id": "72157623388688073", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4013/4389398293_35dff90a5e_o.jpg", "secret": "99dd8735d0", "media": "photo", "latitude": "30.610717", "id": "4389398293", "tags": "students executive texasam marktaylor tamu aggies maysbusinessschool bakermckenzie"}, {"datetaken": "2009-02-02 00:00:02", "license": "3", "title": "Mark Taylor visits Mays", "text": "", "album_id": "72157623388688073", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4068/4390166096_ff23b11b32_o.jpg", "secret": "11ef228b7f", "media": "photo", "latitude": "30.610717", "id": "4390166096", "tags": "students executive texasam marktaylor tamu aggies maysbusinessschool bakermckenzie"}, {"datetaken": "2009-02-02 00:00:03", "license": "3", "title": "Mark Taylor visits Mays", "text": "", "album_id": "72157623388688073", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2752/4390166124_460e0ed267_o.jpg", "secret": "2cea51900c", "media": "photo", "latitude": "30.610717", "id": "4390166124", "tags": "students executive texasam marktaylor tamu aggies maysbusinessschool bakermckenzie"}, {"datetaken": "2009-02-02 00:00:04", "license": "3", "title": "Mark Taylor visits Mays", "text": "", "album_id": "72157623388688073", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2790/4389398247_e10d4865f6_o.jpg", "secret": "b96a7f9b6f", "media": "photo", "latitude": "30.610717", "id": "4389398247", "tags": "students executive texasam marktaylor tamu aggies maysbusinessschool bakermckenzie"}, {"datetaken": "2009-02-02 00:00:05", "license": "3", "title": "Mark Taylor visits Mays", "text": "", "album_id": "72157623388688073", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2684/4390166034_09661aa4ae_o.jpg", "secret": "cef7aff30c", "media": "photo", "latitude": "30.610717", "id": "4390166034", "tags": "students executive texasam marktaylor tamu aggies maysbusinessschool bakermckenzie"}, {"datetaken": "2009-02-02 00:00:06", "license": "3", "title": "Mark Taylor visits Mays", "text": "", "album_id": "72157623388688073", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2731/4390166018_2d309f63ed_o.jpg", "secret": "cce073d91a", "media": "photo", "latitude": "30.610717", "id": "4390166018", "tags": "students executive texasam marktaylor tamu aggies maysbusinessschool bakermckenzie"}, {"datetaken": "2009-02-02 00:00:07", "license": "3", "title": "Mark Taylor visits Mays", "text": "", "album_id": "72157623388688073", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2758/4390166000_b998ba9e1a_o.jpg", "secret": "7d19ff8158", "media": "photo", "latitude": "30.610717", "id": "4390166000", "tags": "students executive texasam marktaylor tamu aggies maysbusinessschool bakermckenzie"}, {"datetaken": "2009-02-02 00:00:08", "license": "3", "title": "Mark Taylor visits Mays", "text": "", "album_id": "72157623388688073", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4009/4390165984_d44a834edd_o.jpg", "secret": "db6739dab7", "media": "photo", "latitude": "30.610717", "id": "4390165984", "tags": "students executive texasam marktaylor tamu aggies maysbusinessschool bakermckenzie"}, {"datetaken": "2009-02-02 00:00:09", "license": "3", "title": "Mark Taylor visits Mays", "text": "", "album_id": "72157623388688073", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2758/4390165968_2b38b4121d_o.jpg", "secret": "cc86460be1", "media": "photo", "latitude": "30.610717", "id": "4390165968", "tags": "students executive texasam marktaylor tamu aggies maysbusinessschool bakermckenzie"}, {"datetaken": "2009-02-02 00:00:10", "license": "3", "title": "Mark Taylor visits Mays", "text": "", "album_id": "72157623388688073", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4003/4390165960_4051c123bc_o.jpg", "secret": "3e124c9ff9", "media": "photo", "latitude": "30.610717", "id": "4390165960", "tags": "students executive texasam marktaylor tamu aggies maysbusinessschool bakermckenzie"}, {"datetaken": "2009-02-02 00:00:11", "license": "3", "title": "Mark Taylor visits Mays", "text": "", "album_id": "72157623388688073", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4016/4389398169_d47c308a29_o.jpg", "secret": "1c065a120e", "media": "photo", "latitude": "30.610717", "id": "4389398169", "tags": "students executive texasam marktaylor tamu aggies maysbusinessschool bakermckenzie"}, {"datetaken": "2010-02-21 15:37:24", "license": "1", "title": "Oklahoma Memorial - The Fence", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4390308492_0abd91c3c1_o.jpg", "secret": "2a3914c101", "media": "photo", "latitude": "0", "id": "4390308492", "tags": "oklahoma memorial"}, {"datetaken": "2010-02-21 15:38:34", "license": "1", "title": "Oklahoma Memorial - Reflecting pool", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4390309242_5674b52d87_o.jpg", "secret": "6feaff6c7b", "media": "photo", "latitude": "0", "id": "4390309242", "tags": "oklahoma pool reflecting memorial"}, {"datetaken": "2010-02-21 15:38:47", "license": "1", "title": "Frank - Get off the phone already!", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4390310164_c73ffb0918_o.jpg", "secret": "96fc1d96d5", "media": "photo", "latitude": "0", "id": "4390310164", "tags": ""}, {"datetaken": "2010-02-21 15:39:05", "license": "1", "title": "Good lord Ted..back up!", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2684/4389542963_555b7487e4_o.jpg", "secret": "7af594140d", "media": "photo", "latitude": "0", "id": "4389542963", "tags": ""}, {"datetaken": "2010-02-21 15:39:22", "license": "1", "title": "Jim", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4390311560_fe336e72c9_o.jpg", "secret": "17dc887371", "media": "photo", "latitude": "0", "id": "4390311560", "tags": ""}, {"datetaken": "2010-02-21 15:41:47", "license": "1", "title": "Oklahoma Memorial - Field of Empty Chairs", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4390313212_44390b01ae_o.jpg", "secret": "c68492020a", "media": "photo", "latitude": "0", "id": "4390313212", "tags": "oklahoma memorial"}, {"datetaken": "2010-02-21 15:43:08", "license": "1", "title": "Oklahoma Memorial - Field of Empty Chairs", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4390314106_658ec91222_o.jpg", "secret": "8e5ae8d931", "media": "photo", "latitude": "0", "id": "4390314106", "tags": "oklahoma memorial"}, {"datetaken": "2010-02-21 15:43:57", "license": "1", "title": "Oklahoma Memorial - Gate of Time", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4390314750_2fb68ee35b_o.jpg", "secret": "c917e20e0a", "media": "photo", "latitude": "0", "id": "4390314750", "tags": "oklahoma memorial"}, {"datetaken": "2010-02-21 15:44:12", "license": "1", "title": "Oklahoma Memorial - Survivors tree and Museum", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4390315508_444203d631_o.jpg", "secret": "2259cfe474", "media": "photo", "latitude": "0", "id": "4390315508", "tags": "oklahoma memorial"}, {"datetaken": "2010-02-21 15:48:09", "license": "1", "title": "Oklahoma Memorial - Reflecting pool", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4389548001_db5fae8b59_o.jpg", "secret": "857ff1c7c8", "media": "photo", "latitude": "0", "id": "4389548001", "tags": "oklahoma memorial"}, {"datetaken": "2010-02-21 15:50:56", "license": "1", "title": "Oklahoma Memorial - Field of Empty Chairs", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4390321388_3b9c3d07a3_o.jpg", "secret": "452800293c", "media": "photo", "latitude": "0", "id": "4390321388", "tags": "oklahoma memorial"}, {"datetaken": "2010-02-21 15:51:20", "license": "1", "title": "Oklahoma Memorial - Survivor Tree", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4389554329_f3923856ac_o.jpg", "secret": "5d81e3a59a", "media": "photo", "latitude": "0", "id": "4389554329", "tags": "oklahoma memorial"}, {"datetaken": "2010-02-21 15:54:14", "license": "1", "title": "Messages from the children Oklahoma Memorial", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2796/4389555207_522a4cc914_o.jpg", "secret": "50ae9454b0", "media": "photo", "latitude": "0", "id": "4389555207", "tags": "oklahoma children memorial"}, {"datetaken": "2010-02-21 15:55:02", "license": "1", "title": "Children's area - Oklahoma Memorial", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4389555955_33bd8bcdc8_o.jpg", "secret": "dfc9e16bc3", "media": "photo", "latitude": "0", "id": "4389555955", "tags": "oklahoma children memorial"}, {"datetaken": "2010-02-21 15:55:42", "license": "1", "title": "Children's area - Oklahoma Memorial", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4389557323_e66cac95b4_o.jpg", "secret": "9b002430d7", "media": "photo", "latitude": "0", "id": "4389557323", "tags": "oklahoma children memorial"}, {"datetaken": "2010-02-21 18:18:45", "license": "1", "title": "Ted, say something already!", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4389557817_1e0cfc73a6_o.jpg", "secret": "578f7bc1ac", "media": "photo", "latitude": "0", "id": "4389557817", "tags": ""}, {"datetaken": "2010-02-21 18:19:14", "license": "1", "title": "Sarah...or is is Sasha???", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2776/4390326750_e5977c0f01_o.jpg", "secret": "1810767751", "media": "photo", "latitude": "0", "id": "4390326750", "tags": ""}, {"datetaken": "2010-02-21 18:20:40", "license": "1", "title": "Troublemakers RUs Inc.", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4390443426_857f37ac1f_o.jpg", "secret": "1a2176219f", "media": "photo", "latitude": "0", "id": "4390443426", "tags": "friends oklahoma"}, {"datetaken": "2010-02-22 14:40:01", "license": "1", "title": "Bill - Smile already!", "text": "", "album_id": "72157623389431321", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4389561041_aaa24478ba_o.jpg", "secret": "c2c3b299a4", "media": "photo", "latitude": "0", "id": "4389561041", "tags": ""}, {"datetaken": "2010-02-25 00:00:00", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4390028722_1287fdaae0_o.jpg", "secret": "2448875b75", "media": "photo", "latitude": "0", "id": "4390028722", "tags": "florida cookiemonster buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2010-02-25 00:00:01", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4389259867_3a173a060c_o.jpg", "secret": "a7383dffea", "media": "photo", "latitude": "0", "id": "4389259867", "tags": "florida buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2010-02-25 00:00:02", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4389260131_afe5e0c824_o.jpg", "secret": "9d7b6f8ac2", "media": "photo", "latitude": "0", "id": "4389260131", "tags": "florida buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2010-02-25 00:00:03", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4389260387_80f60d23f5_o.jpg", "secret": "8f09622d0b", "media": "photo", "latitude": "0", "id": "4389260387", "tags": "florida buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2010-02-25 00:00:04", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4390029784_483c72d760_o.jpg", "secret": "04247a9f90", "media": "photo", "latitude": "0", "id": "4390029784", "tags": "florida buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2010-02-25 00:00:05", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4390030074_d1c8d4c626_o.jpg", "secret": "010fd4a9ed", "media": "photo", "latitude": "0", "id": "4390030074", "tags": "florida buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2010-02-25 00:00:06", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4389261233_1e3c59172a_o.jpg", "secret": "f6a8781a2d", "media": "photo", "latitude": "0", "id": "4389261233", "tags": "florida buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2010-02-25 00:00:07", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4389261509_42d38537b4_o.jpg", "secret": "ab8d148106", "media": "photo", "latitude": "0", "id": "4389261509", "tags": "florida buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2010-02-25 00:00:08", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4389261747_1a406f90eb_o.jpg", "secret": "76024b0cb4", "media": "photo", "latitude": "0", "id": "4389261747", "tags": "florida buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2010-02-25 00:00:09", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4389262027_b84b054fe4_o.jpg", "secret": "11eede848f", "media": "photo", "latitude": "0", "id": "4389262027", "tags": "florida ernie rosita buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2010-02-25 00:00:10", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4389262299_d05bfd6c90_o.jpg", "secret": "4aac7f269a", "media": "photo", "latitude": "0", "id": "4389262299", "tags": "zoe florida buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2010-02-25 00:00:11", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4389262553_f78ae02290_o.jpg", "secret": "83e83c1537", "media": "photo", "latitude": "0", "id": "4389262553", "tags": "zoe florida buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2010-02-25 00:00:12", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4390031908_be8b54552c_o.jpg", "secret": "fb2554a829", "media": "photo", "latitude": "0", "id": "4390031908", "tags": "florida bert buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2010-02-25 00:00:13", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4389263089_2b60ac30dc_o.jpg", "secret": "4435c83696", "media": "photo", "latitude": "0", "id": "4389263089", "tags": "bigbird florida buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2010-02-25 00:00:14", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4389263403_f2a3105897_o.jpg", "secret": "d3122262b2", "media": "photo", "latitude": "0", "id": "4389263403", "tags": "florida rosita buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2010-02-25 00:00:15", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4389263613_da6f6a3081_o.jpg", "secret": "8ebc2d8a92", "media": "photo", "latitude": "0", "id": "4389263613", "tags": "florida rosita buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2010-02-25 00:00:16", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2710/4390033100_d2c258dcb4_o.jpg", "secret": "5b1d945fc0", "media": "photo", "latitude": "0", "id": "4390033100", "tags": "bigbird florida elmo buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2010-02-25 00:00:17", "license": "4", "title": "Sesame Street Safari of Fun", "text": "", "album_id": "72157623389582731", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4389264205_27250e5307_o.jpg", "secret": "f73699d398", "media": "photo", "latitude": "0", "id": "4389264205", "tags": "florida cookiemonster buschgardenstampabay sesamestreetsafarioffun"}, {"datetaken": "2009-02-10 00:00:00", "license": "3", "title": "Michael Jensen visits Mays", "text": "", "album_id": "72157623513338444", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2726/4389436257_2bb8c88521_o.jpg", "secret": "c1cab96466", "media": "photo", "latitude": "30.610717", "id": "4389436257", "tags": "executive texasam tamu maysbusinessschool michaeljensen"}, {"datetaken": "2009-02-10 00:00:01", "license": "3", "title": "Michael Jensen visits Mays", "text": "", "album_id": "72157623513338444", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2793/4390204030_d173788b27_o.jpg", "secret": "ac0249221c", "media": "photo", "latitude": "30.610717", "id": "4390204030", "tags": "executive texasam tamu maysbusinessschool michaeljensen"}, {"datetaken": "2009-02-10 00:00:02", "license": "3", "title": "Michael Jensen visits Mays", "text": "", "album_id": "72157623513338444", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2747/4389436309_e9e3d3255e_o.jpg", "secret": "2b5177ea21", "media": "photo", "latitude": "30.610717", "id": "4389436309", "tags": "executive texasam tamu maysbusinessschool michaeljensen"}, {"datetaken": "2009-02-10 00:00:03", "license": "3", "title": "Michael Jensen visits Mays", "text": "", "album_id": "72157623513338444", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2694/4389436321_091e44b1af_o.jpg", "secret": "da93dd5db1", "media": "photo", "latitude": "30.610717", "id": "4389436321", "tags": "executive texasam tamu maysbusinessschool michaeljensen"}, {"datetaken": "2009-02-10 00:00:04", "license": "3", "title": "Michael Jensen visits Mays", "text": "", "album_id": "72157623513338444", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4031/4390204044_8c289db191_o.jpg", "secret": "76b717045c", "media": "photo", "latitude": "30.610717", "id": "4390204044", "tags": "executive texasam tamu maysbusinessschool michaeljensen"}, {"datetaken": "2009-02-10 00:00:05", "license": "3", "title": "Michael Jensen visits Mays", "text": "", "album_id": "72157623513338444", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2786/4389436345_23f71cb0e3_o.jpg", "secret": "c71d6bc15e", "media": "photo", "latitude": "30.610717", "id": "4389436345", "tags": "executive texasam tamu maysbusinessschool michaeljensen"}, {"datetaken": "2009-02-10 00:00:06", "license": "3", "title": "Michael Jensen visits Mays", "text": "", "album_id": "72157623513338444", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4022/4390204074_586ca555bd_o.jpg", "secret": "f7b3246060", "media": "photo", "latitude": "30.610717", "id": "4390204074", "tags": "executive texasam tamu maysbusinessschool michaeljensen"}, {"datetaken": "2009-02-10 00:00:07", "license": "3", "title": "Michael Jensen visits Mays", "text": "", "album_id": "72157623513338444", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2747/4390204096_72329c68dd_o.jpg", "secret": "b258c546c3", "media": "photo", "latitude": "30.610717", "id": "4390204096", "tags": "executive texasam tamu maysbusinessschool michaeljensen"}, {"datetaken": "2009-02-10 00:00:08", "license": "3", "title": "Michael Jensen visits Mays", "text": "", "album_id": "72157623513338444", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4068/4389436373_4841a87773_o.jpg", "secret": "a9cb498b80", "media": "photo", "latitude": "30.610717", "id": "4389436373", "tags": "executive texasam tamu maysbusinessschool michaeljensen"}, {"datetaken": "2009-02-10 00:00:09", "license": "3", "title": "Michael Jensen visits Mays", "text": "", "album_id": "72157623513338444", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4059/4389436399_85648c0652_o.jpg", "secret": "0f680a51f2", "media": "photo", "latitude": "30.610717", "id": "4389436399", "tags": "executive texasam tamu maysbusinessschool michaeljensen"}, {"datetaken": "2009-02-10 00:00:10", "license": "3", "title": "Michael Jensen visits Mays", "text": "", "album_id": "72157623513338444", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4006/4390204132_87276a3fb4_o.jpg", "secret": "30c85c85a8", "media": "photo", "latitude": "30.610717", "id": "4390204132", "tags": "executive texasam tamu maysbusinessschool michaeljensen"}, {"datetaken": "2009-02-10 00:00:11", "license": "3", "title": "Michael Jensen visits Mays", "text": "", "album_id": "72157623513338444", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4062/4389436411_976ac61754_o.jpg", "secret": "ba5902192e", "media": "photo", "latitude": "30.610717", "id": "4389436411", "tags": "executive texasam tamu maysbusinessschool michaeljensen"}, {"datetaken": "2009-02-10 00:00:12", "license": "3", "title": "Michael Jensen visits Mays", "text": "", "album_id": "72157623513338444", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4045/4390204178_dd86cc6ef0_o.jpg", "secret": "a93bd2cd80", "media": "photo", "latitude": "30.610717", "id": "4390204178", "tags": "executive texasam tamu maysbusinessschool michaeljensen"}, {"datetaken": "2009-02-10 00:00:13", "license": "3", "title": "Michael Jensen visits Mays", "text": "", "album_id": "72157623513338444", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4017/4389436285_fdbea58b2b_o.jpg", "secret": "06cc3ef3e3", "media": "photo", "latitude": "30.610717", "id": "4389436285", "tags": "students executive texasam tamu maysbusinessschool michaeljensen"}, {"datetaken": "2009-02-10 00:00:14", "license": "3", "title": "Michael Jensen visits Mays", "text": "", "album_id": "72157623513338444", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4052/4389436249_98a7e864cb_o.jpg", "secret": "68f4ce91fe", "media": "photo", "latitude": "30.610717", "id": "4389436249", "tags": "executive texasam tamu maysbusinessschool michaeljensen jerrystrawser"}, {"datetaken": "2009-02-10 00:00:15", "license": "3", "title": "Michael Jensen visits Mays", "text": "", "album_id": "72157623513338444", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4003/4390204192_1d7a030060_o.jpg", "secret": "0c68abe49d", "media": "photo", "latitude": "30.610717", "id": "4390204192", "tags": "executive texasam tamu maysbusinessschool michaeljensen jerrystrawser"}, {"datetaken": "2009-02-23 00:00:00", "license": "3", "title": "Brandon Coleman '78 visits Mays", "text": "", "album_id": "72157623513528524", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2678/4389506305_c1cc6386a5_o.jpg", "secret": "f6415da1bb", "media": "photo", "latitude": "30.610717", "id": "4389506305", "tags": "students executive texasam tamu aggies maysbusinessschool brandoncoleman"}, {"datetaken": "2009-02-23 00:00:01", "license": "3", "title": "Brandon Coleman '78 visits Mays", "text": "", "album_id": "72157623513528524", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4031/4390274340_9f6fda1490_o.jpg", "secret": "b9aa9aeb92", "media": "photo", "latitude": "30.610717", "id": "4390274340", "tags": "students executive texasam tamu aggies maysbusinessschool brandoncoleman"}, {"datetaken": "2009-02-23 00:00:02", "license": "3", "title": "Brandon Coleman '78 visits Mays", "text": "", "album_id": "72157623513528524", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4072/4389506289_9b6f03c82b_o.jpg", "secret": "1e3c3861c4", "media": "photo", "latitude": "30.610717", "id": "4389506289", "tags": "students executive texasam tamu aggies maysbusinessschool brandoncoleman"}, {"datetaken": "2009-02-23 00:00:03", "license": "3", "title": "Brandon Coleman '78 visits Mays", "text": "", "album_id": "72157623513528524", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2684/4389506277_d6726cddd8_o.jpg", "secret": "893b84946a", "media": "photo", "latitude": "30.610717", "id": "4389506277", "tags": "students executive texasam tamu aggies maysbusinessschool brandoncoleman"}, {"datetaken": "2009-02-23 00:00:04", "license": "3", "title": "Brandon Coleman '78 visits Mays", "text": "", "album_id": "72157623513528524", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4044/4389506231_b083af0284_o.jpg", "secret": "6e8c47a038", "media": "photo", "latitude": "30.610717", "id": "4389506231", "tags": "students executive texasam tamu aggies maysbusinessschool brandoncoleman"}, {"datetaken": "2009-02-23 00:00:05", "license": "3", "title": "Brandon Coleman '78 visits Mays", "text": "", "album_id": "72157623513528524", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4033/4390274328_11cc3a59aa_o.jpg", "secret": "ebb5356e62", "media": "photo", "latitude": "30.610717", "id": "4390274328", "tags": "students executive texasam tamu aggies maysbusinessschool brandoncoleman"}, {"datetaken": "2009-02-23 00:00:06", "license": "3", "title": "Brandon Coleman '78 visits Mays", "text": "", "album_id": "72157623513528524", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4037/4389506239_53e033211d_o.jpg", "secret": "f99f9ce5f1", "media": "photo", "latitude": "30.610717", "id": "4389506239", "tags": "students executive texasam tamu aggies maysbusinessschool brandoncoleman"}, {"datetaken": "2009-02-23 00:00:07", "license": "3", "title": "Brandon Coleman '78 visits Mays", "text": "", "album_id": "72157623513528524", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2701/4389506215_09a543c94d_o.jpg", "secret": "273d456de6", "media": "photo", "latitude": "30.610717", "id": "4389506215", "tags": "students executive texasam tamu aggies maysbusinessschool brandoncoleman"}, {"datetaken": "2009-02-23 00:00:08", "license": "3", "title": "Brandon Coleman '78 visits Mays", "text": "", "album_id": "72157623513528524", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2798/4389506207_8c63b1671e_o.jpg", "secret": "6e576fa944", "media": "photo", "latitude": "30.610717", "id": "4389506207", "tags": "students executive texasam tamu aggies maysbusinessschool brandoncoleman"}, {"datetaken": "2009-02-23 00:00:09", "license": "3", "title": "Brandon Coleman '78 visits Mays", "text": "", "album_id": "72157623513528524", "longitude": "-96.350821", "url_o": "https://farm3.staticflickr.com/2741/4390274226_c1b5591589_o.jpg", "secret": "ae90888791", "media": "photo", "latitude": "30.610717", "id": "4390274226", "tags": "executive texasam tamu maysbusinessschool brandoncoleman"}, {"datetaken": "2009-02-23 00:00:10", "license": "3", "title": "Brandon Coleman '78 visits Mays", "text": "", "album_id": "72157623513528524", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4032/4389506193_461487bf6d_o.jpg", "secret": "cc5a4d991c", "media": "photo", "latitude": "30.610717", "id": "4389506193", "tags": "executive texasam tamu maysbusinessschool brandoncoleman"}, {"datetaken": "2009-02-23 00:00:11", "license": "3", "title": "Brandon Coleman '78 visits Mays", "text": "", "album_id": "72157623513528524", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4021/4390274256_f749dfe7f2_o.jpg", "secret": "ae46cd5109", "media": "photo", "latitude": "30.610717", "id": "4390274256", "tags": "executive texasam tamu maysbusinessschool brandoncoleman"}, {"datetaken": "2009-02-23 00:00:12", "license": "3", "title": "Brandon Coleman '78 visits Mays", "text": "", "album_id": "72157623513528524", "longitude": "-96.350821", "url_o": "https://farm5.staticflickr.com/4069/4390274218_819b6e1955_o.jpg", "secret": "33b276a85e", "media": "photo", "latitude": "30.610717", "id": "4390274218", "tags": "executive texasam tamu maysbusinessschool brandoncoleman"}, {"datetaken": "2010-03-17 09:32:42", "license": "4", "title": "Open Space 2 Innovate", "text": "", "album_id": "72157623514925837", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4441301384_3e833b2cbf_o.jpg", "secret": "d77e72e440", "media": "photo", "latitude": "0", "id": "4441301384", "tags": "nasa goddard goddardspaceflightcenter"}, {"datetaken": "2010-03-17 10:34:11", "license": "4", "title": "Open Space 2 Innovate", "text": "", "album_id": "72157623514925837", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4440524789_c550c73e32_o.jpg", "secret": "d17d266401", "media": "photo", "latitude": "0", "id": "4440524789", "tags": "nasa goddard goddardspaceflightcenter"}, {"datetaken": "2010-03-17 10:40:01", "license": "4", "title": "Open Space 2 Innovate", "text": "", "album_id": "72157623514925837", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4440524819_e149734048_o.jpg", "secret": "21737c9e9b", "media": "photo", "latitude": "0", "id": "4440524819", "tags": "nasa goddard goddardspaceflightcenter"}, {"datetaken": "2010-03-17 10:40:13", "license": "4", "title": "Open Space 2 Innovate", "text": "", "album_id": "72157623514925837", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4440524869_f04a69e0b7_o.jpg", "secret": "4b4fc4b933", "media": "photo", "latitude": "0", "id": "4440524869", "tags": "nasa goddard goddardspaceflightcenter"}, {"datetaken": "2010-03-17 10:41:12", "license": "4", "title": "Open Space 2 Innovate", "text": "", "album_id": "72157623514925837", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4440524899_011877a7b0_o.jpg", "secret": "f1110ed534", "media": "photo", "latitude": "0", "id": "4440524899", "tags": "nasa goddard goddardspaceflightcenter"}, {"datetaken": "2010-03-17 10:59:33", "license": "4", "title": "Open Space 2 Innovate", "text": "", "album_id": "72157623514925837", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2741/4440524943_665385ff13_o.jpg", "secret": "17ef8109fc", "media": "photo", "latitude": "0", "id": "4440524943", "tags": "nasa goddard goddardspaceflightcenter"}, {"datetaken": "2010-03-17 11:00:06", "license": "4", "title": "Open Space 2 Innovate", "text": "", "album_id": "72157623514925837", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4441301582_eefa286508_o.jpg", "secret": "652ee3f2c9", "media": "photo", "latitude": "0", "id": "4441301582", "tags": "nasa goddard goddardspaceflightcenter"}, {"datetaken": "2010-03-17 11:07:55", "license": "4", "title": "Open Space 2 Innovate", "text": "", "album_id": "72157623514925837", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4440525031_ab60275118_o.jpg", "secret": "5717547694", "media": "photo", "latitude": "0", "id": "4440525031", "tags": "nasa goddard goddardspaceflightcenter"}, {"datetaken": "2010-03-17 11:08:02", "license": "4", "title": "Open Space 2 Innovate", "text": "", "album_id": "72157623514925837", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4441301660_89f91239c7_o.jpg", "secret": "20c4a00deb", "media": "photo", "latitude": "0", "id": "4441301660", "tags": "nasa goddard goddardspaceflightcenter"}, {"datetaken": "2010-03-17 11:09:54", "license": "4", "title": "Open Space 2 Innovate", "text": "", "album_id": "72157623514925837", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4440525113_4a6f19e3ce_o.jpg", "secret": "a9bd0cb374", "media": "photo", "latitude": "0", "id": "4440525113", "tags": "nasa goddard goddardspaceflightcenter"}, {"datetaken": "2010-03-17 12:50:43", "license": "4", "title": "Open Space 2 Innovate", "text": "", "album_id": "72157623514925837", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4464594421_5daa31455f_o.jpg", "secret": "48cec34f85", "media": "photo", "latitude": "0", "id": "4464594421", "tags": "space nasa goddard greenbeltmd gsfc goddardspaceflightcenter nasacenter"}, {"datetaken": "2010-03-17 16:22:40", "license": "4", "title": "Open Space 2 Innovate", "text": "", "album_id": "72157623514925837", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4465372408_0d0888f707_o.jpg", "secret": "03f5c6bd59", "media": "photo", "latitude": "0", "id": "4465372408", "tags": "space nasa goddard greenbeltmd gsfc goddardspaceflightcenter nasacenter"}, {"datetaken": "2010-01-27 13:06:45", "license": "1", "title": "IMG_5777.jpg", "text": "", "album_id": "72157623173259093", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2760/4309703245_255457ae46_o.jpg", "secret": "21c8a9148b", "media": "photo", "latitude": "0", "id": "4309703245", "tags": "aids hiv whitehouse rally protest activism obama hivaids actup barackobama aidsactivism healthgap"}, {"datetaken": "2010-01-27 13:19:25", "license": "1", "title": "IMG_5794.jpg", "text": "", "album_id": "72157623173259093", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2765/4309703257_df55840ab8_o.jpg", "secret": "7a507be5dd", "media": "photo", "latitude": "0", "id": "4309703257", "tags": "aids hiv whitehouse rally protest activism obama hivaids actup barackobama aidsactivism healthgap"}, {"datetaken": "2010-01-27 13:20:05", "license": "1", "title": "IMG_5807.jpg", "text": "", "album_id": "72157623173259093", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2716/4310440476_3e0fca01f7_o.jpg", "secret": "2e9654914d", "media": "photo", "latitude": "0", "id": "4310440476", "tags": "aids hiv whitehouse rally protest activism obama hivaids actup barackobama aidsactivism healthgap"}, {"datetaken": "2010-01-27 13:24:43", "license": "1", "title": "IMG_5812.jpg", "text": "", "album_id": "72157623173259093", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2762/4310440500_dc8c271caa_o.jpg", "secret": "95be8a6657", "media": "photo", "latitude": "0", "id": "4310440500", "tags": "aids hiv whitehouse rally protest activism obama hivaids actup barackobama aidsactivism healthgap"}, {"datetaken": "2010-01-27 13:25:00", "license": "1", "title": "IMG_5817.jpg", "text": "", "album_id": "72157623173259093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4310440534_055e90ba99_o.jpg", "secret": "e957b34e01", "media": "photo", "latitude": "0", "id": "4310440534", "tags": "aids hiv whitehouse rally protest activism obama hivaids actup barackobama aidsactivism healthgap"}, {"datetaken": "2010-01-27 13:43:44", "license": "1", "title": "IMG_5822.jpg", "text": "", "album_id": "72157623173259093", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4309703385_071afba67a_o.jpg", "secret": "91f10cb729", "media": "photo", "latitude": "0", "id": "4309703385", "tags": "aids hiv whitehouse rally protest activism obama hivaids actup barackobama aidsactivism healthgap"}, {"datetaken": "2010-01-27 13:45:08", "license": "1", "title": "IMG_5827.jpg", "text": "", "album_id": "72157623173259093", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2735/4310440580_f0046200de_o.jpg", "secret": "354c9f1d04", "media": "photo", "latitude": "0", "id": "4310440580", "tags": "aids hiv whitehouse rally protest activism obama hivaids actup barackobama aidsactivism healthgap"}, {"datetaken": "2010-01-27 13:45:57", "license": "1", "title": "IMG_5835.jpg", "text": "", "album_id": "72157623173259093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4310440602_d0766e4544_o.jpg", "secret": "defd60f164", "media": "photo", "latitude": "0", "id": "4310440602", "tags": "aids hiv whitehouse rally protest activism obama hivaids actup barackobama aidsactivism healthgap"}, {"datetaken": "2010-01-27 13:47:10", "license": "1", "title": "IMG_5848.jpg", "text": "", "album_id": "72157623173259093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4309703441_4bf4d51d04_o.jpg", "secret": "e13136d3d6", "media": "photo", "latitude": "0", "id": "4309703441", "tags": "aids hiv whitehouse rally protest activism obama hivaids actup barackobama aidsactivism healthgap"}, {"datetaken": "2010-01-27 13:48:08", "license": "1", "title": "IMG_5857.jpg", "text": "", "album_id": "72157623173259093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4310440644_3848ea7840_o.jpg", "secret": "67b2ef7378", "media": "photo", "latitude": "0", "id": "4310440644", "tags": "aids hiv whitehouse rally protest activism obama hivaids actup barackobama aidsactivism healthgap"}, {"datetaken": "2010-01-27 13:49:07", "license": "1", "title": "IMG_5866.jpg", "text": "", "album_id": "72157623173259093", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4310440666_5b50e7e82a_o.jpg", "secret": "6bca299532", "media": "photo", "latitude": "0", "id": "4310440666", "tags": "aids hiv whitehouse rally protest activism obama hivaids actup barackobama aidsactivism healthgap"}, {"datetaken": "2010-01-27 13:49:46", "license": "1", "title": "365/27: Waiting in line", "text": "", "album_id": "72157623173259093", "longitude": "-77.036529", "url_o": "https://farm3.staticflickr.com/2616/4310440684_214bf51015_o.jpg", "secret": "d80fb38da8", "media": "photo", "latitude": "38.898748", "id": "4310440684", "tags": "aids hiv whitehouse rally protest 365 activism obama hivaids actup project365 aidsactivism healthgap project36527barackobama"}, {"datetaken": "2010-01-27 13:50:15", "license": "1", "title": "IMG_5888.jpg", "text": "", "album_id": "72157623173259093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4310440702_e68fabdb5f_o.jpg", "secret": "6d6efb4f1a", "media": "photo", "latitude": "0", "id": "4310440702", "tags": "aids hiv whitehouse rally protest activism obama hivaids actup barackobama aidsactivism healthgap"}, {"datetaken": "2010-01-27 13:50:37", "license": "1", "title": "IMG_5896.jpg", "text": "", "album_id": "72157623173259093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4310440732_46605dbba8_o.jpg", "secret": "a95389e675", "media": "photo", "latitude": "0", "id": "4310440732", "tags": "aids hiv whitehouse rally protest activism obama hivaids actup barackobama aidsactivism healthgap"}, {"datetaken": "2010-01-27 13:51:51", "license": "1", "title": "IMG_5918.jpg", "text": "", "album_id": "72157623173259093", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2600/4309703539_86324644f4_o.jpg", "secret": "e8b66f4543", "media": "photo", "latitude": "0", "id": "4309703539", "tags": "aids hiv whitehouse rally protest activism obama hivaids actup barackobama aidsactivism healthgap"}, {"datetaken": "2010-01-27 13:52:02", "license": "1", "title": "IMG_5924.jpg", "text": "", "album_id": "72157623173259093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4310440776_b9c0fa98eb_o.jpg", "secret": "5cfbfb18d0", "media": "photo", "latitude": "0", "id": "4310440776", "tags": "aids hiv whitehouse rally protest activism obama hivaids actup barackobama aidsactivism healthgap"}, {"datetaken": "2010-01-27 13:53:05", "license": "1", "title": "IMG_5934.jpg", "text": "", "album_id": "72157623173259093", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4309703569_64de0f4e5f_o.jpg", "secret": "31eff2cb4b", "media": "photo", "latitude": "0", "id": "4309703569", "tags": "aids hiv whitehouse rally protest activism obama hivaids actup barackobama aidsactivism healthgap"}, {"datetaken": "2010-02-28 16:50:37", "license": "2", "title": "Fridtjof Nansen", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4396510794_edfde43841_o.jpg", "secret": "74b25d0a81", "media": "photo", "latitude": "0", "id": "4396510794", "tags": "cigarettecards playerscigarettes polarexploration fridtjofnansen"}, {"datetaken": "2010-02-28 16:50:57", "license": "2", "title": "Andree's Polar Balloon, 1897", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4396511188_17424195bf_o.jpg", "secret": "a6766a0327", "media": "photo", "latitude": "0", "id": "4396511188", "tags": "balloon hotairballoon cigarettecards playerscigarettes polarexploration salomonandree"}, {"datetaken": "2010-02-28 16:52:09", "license": "2", "title": "Shackleton's Antarctic Expediton, 1907-1909", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4395750371_e0dda2ebed_o.jpg", "secret": "ebdac52082", "media": "photo", "latitude": "0", "id": "4395750371", "tags": "nimrod cigarettecards playerscigarettes polarexploration ernestshackleton"}, {"datetaken": "2010-02-28 16:53:16", "license": "2", "title": "Eskimo Hunting Seal", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4395750741_2250bf3ab1_o.jpg", "secret": "fbc2d80fb5", "media": "photo", "latitude": "0", "id": "4395750741", "tags": "seal eskimo cigarettecards playerscigarettes polarexploration"}, {"datetaken": "2010-02-28 16:53:39", "license": "2", "title": "Sir Ernest Shackleton", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4396511588_5c5728233b_o.jpg", "secret": "881a5d7685", "media": "photo", "latitude": "0", "id": "4396511588", "tags": "cigarettecards playerscigarettes polarexploration ernestshackleton"}, {"datetaken": "2010-02-28 16:53:53", "license": "2", "title": "Eskimo Toupiks, Greenland", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4395744705_5e53b46afb_o.jpg", "secret": "38990cc938", "media": "photo", "latitude": "0", "id": "4395744705", "tags": "greenland eskimo cigarettecards playerscigarettes polarexploration"}, {"datetaken": "2010-02-28 17:07:01", "license": "2", "title": "Discovery of Greenland by Eric the Red, 983", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4395751171_dd04b6fc53_o.jpg", "secret": "b5a945ccd3", "media": "photo", "latitude": "0", "id": "4395751171", "tags": "greenland vikings cigarettecards playerscigarettes ericthered polarexploration"}, {"datetaken": "2010-02-28 17:08:40", "license": "2", "title": "Aurora Australis, Shackleton's Expediton", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2692/4395751623_20b0296678_o.jpg", "secret": "47f46b6376", "media": "photo", "latitude": "0", "id": "4395751623", "tags": "cigarettecards playerscigarettes polarexploration ernestshackleton auroraaustralis"}, {"datetaken": "2010-02-28 17:15:26", "license": "2", "title": "Franklin Crossing Lake Prosperous, 1819-1822", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2703/4395751967_1a31ed848e_o.jpg", "secret": "2f27b428dc", "media": "photo", "latitude": "0", "id": "4395751967", "tags": "cigarettecards playerscigarettes polarexploration johnfranklin"}, {"datetaken": "2010-02-28 17:16:27", "license": "2", "title": "Cabot's Voyage, 1497", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2743/4396519910_d36eba965d_o.jpg", "secret": "9939080390", "media": "photo", "latitude": "0", "id": "4396519910", "tags": "cigarettecards playerscigarettes polarexploration johncabot"}, {"datetaken": "2010-02-28 17:21:52", "license": "2", "title": "Shackleton's Diary, 1909", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4396520284_b52c6d62dd_o.jpg", "secret": "6312ec88ac", "media": "photo", "latitude": "0", "id": "4396520284", "tags": "cigarettecards playerscigarettes polarexploration ernestshackleton"}, {"datetaken": "2010-02-28 17:23:05", "license": "2", "title": "Henry Hudson Cast Adrift, 1611", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4396520718_f81b275f39_o.jpg", "secret": "52e368a18c", "media": "photo", "latitude": "0", "id": "4396520718", "tags": "cigarettecards playerscigarettes polarexploration henryhudson"}, {"datetaken": "2010-02-28 17:26:32", "license": "2", "title": "Eskimo With Dog-Sledge", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4395745945_a34d5d9eae_o.jpg", "secret": "3245650ba0", "media": "photo", "latitude": "0", "id": "4395745945", "tags": "dog eskimo cigarettecards playerscigarettes polarexploration"}, {"datetaken": "2010-02-28 17:27:00", "license": "2", "title": "Ross and Parry's Arctic Expedition, 1818", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2789/4395745527_8fa31fa3c6_o.jpg", "secret": "255065a962", "media": "photo", "latitude": "0", "id": "4395745527", "tags": "johnross cigarettecards playerscigarettes polarexploration williamparry"}, {"datetaken": "2010-02-28 17:27:33", "license": "2", "title": "Visit to Eskimo Village, 1822", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4395745175_dee6d95644_o.jpg", "secret": "c0c6b1dea9", "media": "photo", "latitude": "0", "id": "4395745175", "tags": "cigarettecards playerscigarettes polarexploration williamparry henryhoppner"}, {"datetaken": "2010-02-28 17:27:46", "license": "2", "title": "Peary's Ship \"Diana,\" 1899", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4395746387_59b6927c6b_o.jpg", "secret": "c0b8381d2a", "media": "photo", "latitude": "0", "id": "4395746387", "tags": "cigarettecards playerscigarettes polarexploration robertpeary"}, {"datetaken": "2010-02-28 17:28:22", "license": "2", "title": "Cape Royds, Shackleton's Expedition", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4396515770_af391fe795_o.jpg", "secret": "d87ef62800", "media": "photo", "latitude": "0", "id": "4396515770", "tags": "cigarettecards playerscigarettes polarexploration ernestshackleton caperoyds"}, {"datetaken": "2010-02-28 17:28:44", "license": "2", "title": "Ross at N. Magnetic Pole, 1831", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4395746825_886f1a57f3_o.jpg", "secret": "d3e7d6d9c6", "media": "photo", "latitude": "0", "id": "4395746825", "tags": "johnross cigarettecards playerscigarettes polarexploration"}, {"datetaken": "2010-02-28 17:29:44", "license": "2", "title": "How Icebergs Are Formed", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4396514536_4b6706d818_o.jpg", "secret": "21bf5372a9", "media": "photo", "latitude": "0", "id": "4396514536", "tags": "iceberg icebergs cigarettecards playerscigarettes polarexploration"}, {"datetaken": "2010-02-28 17:30:10", "license": "2", "title": "Aurora Borealis", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4395747671_bdb869a77d_o.jpg", "secret": "2710c6a437", "media": "photo", "latitude": "0", "id": "4395747671", "tags": "auroraborealis cigarettecards playerscigarettes polarexploration"}, {"datetaken": "2010-02-28 17:30:24", "license": "2", "title": "Ice Mound, Mt. Erebus", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4395748093_90881cfa48_o.jpg", "secret": "91bbda680c", "media": "photo", "latitude": "0", "id": "4395748093", "tags": "cigarettecards playerscigarettes polarexploration mterebus"}, {"datetaken": "2010-02-28 17:30:40", "license": "2", "title": "South Magnetic Pole, Shackleton's Expedition", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4395748867_2f4b1852f9_o.jpg", "secret": "d5f6fa987a", "media": "photo", "latitude": "0", "id": "4395748867", "tags": "cigarettecards playerscigarettes polarexploration ernestshackleton"}, {"datetaken": "2010-02-28 17:31:01", "license": "2", "title": "Ferrar Glacier, Shackleton's Expedition", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2776/4396516946_02155b8bc0_o.jpg", "secret": "34647b13bf", "media": "photo", "latitude": "0", "id": "4396516946", "tags": "cigarettecards playerscigarettes polarexploration ernestshackleton glacie ferrarglacier"}, {"datetaken": "2010-02-28 17:31:18", "license": "2", "title": "Relic's of Franklin's Expedition, 1845", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4396516558_4ecbecee92_o.jpg", "secret": "f0f3af8635", "media": "photo", "latitude": "0", "id": "4396516558", "tags": "cigarettecards playerscigarettes polarexploration johnfranklin"}, {"datetaken": "2010-02-28 17:31:34", "license": "2", "title": "Motor Sleigh, Scott's Expedition, 1910", "text": "", "album_id": "72157623404366739", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4395749975_d0e1057af8_o.jpg", "secret": "6d29784be1", "media": "photo", "latitude": "0", "id": "4395749975", "tags": "cigarettecards playerscigarettes robertscott polarexploration"}, {"datetaken": "2010-01-04 15:56:59", "license": "2", "title": "Hunt's Farmstay Bedroom, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4314045281_b661ec5e7c_o.jpg", "secret": "5535b5aa76", "media": "photo", "latitude": "0", "id": "4314045281", "tags": ""}, {"datetaken": "2010-01-05 02:19:24", "license": "2", "title": "View of Rotorua from the Hunt's Farmstay", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4314784780_ee3e12c236_o.jpg", "secret": "cbe6a96f4c", "media": "photo", "latitude": "0", "id": "4314784780", "tags": ""}, {"datetaken": "2010-01-05 04:01:34", "license": "2", "title": "Lady Knox Geyser, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4314047915_857952e987_o.jpg", "secret": "d0e7124449", "media": "photo", "latitude": "0", "id": "4314047915", "tags": ""}, {"datetaken": "2010-01-05 04:01:44", "license": "2", "title": "Lady Knox Geyser, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2712/4314771170_83f65ba9cb_o.jpg", "secret": "7f041ab2f1", "media": "photo", "latitude": "0", "id": "4314771170", "tags": ""}, {"datetaken": "2010-01-05 04:25:35", "license": "2", "title": "Lady Knox Geyser, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4314052959_3fb425bf3c_o.jpg", "secret": "98213a7a1b", "media": "photo", "latitude": "0", "id": "4314052959", "tags": ""}, {"datetaken": "2010-01-05 04:26:13", "license": "2", "title": "Lady Knox Geyser, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2774/4314754812_2e542d2e3b_o.jpg", "secret": "92915a842b", "media": "photo", "latitude": "0", "id": "4314754812", "tags": ""}, {"datetaken": "2010-01-05 04:47:56", "license": "2", "title": "The Devil's Hole, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4314024747_4d63988e6f_o.jpg", "secret": "71c7772a23", "media": "photo", "latitude": "0", "id": "4314024747", "tags": ""}, {"datetaken": "2010-01-05 04:53:44", "license": "2", "title": "Devil's Ink Pots, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4314025503_942141b595_o.jpg", "secret": "f242b6849a", "media": "photo", "latitude": "0", "id": "4314025503", "tags": ""}, {"datetaken": "2010-01-05 04:53:52", "license": "2", "title": "Devil's Ink Pots, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4314052483_9d694d4eec_o.jpg", "secret": "865199b680", "media": "photo", "latitude": "0", "id": "4314052483", "tags": ""}, {"datetaken": "2010-01-05 04:54:23", "license": "2", "title": "Sarah at Thunder Crater, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2796/4314046103_3d75446377_o.jpg", "secret": "e8c017fdc4", "media": "photo", "latitude": "0", "id": "4314046103", "tags": ""}, {"datetaken": "2010-01-05 04:54:43", "license": "2", "title": "Devil's Ink Pots, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4314051183_45136286df_o.jpg", "secret": "5ebc1c5a9a", "media": "photo", "latitude": "0", "id": "4314051183", "tags": ""}, {"datetaken": "2010-01-05 04:56:10", "license": "2", "title": "Thunder Crater, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4314022089_f2b3f48347_o.jpg", "secret": "852e2fdd00", "media": "photo", "latitude": "0", "id": "4314022089", "tags": ""}, {"datetaken": "2010-01-05 04:59:05", "license": "2", "title": "The Artist's Palette, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4314759568_1c2e330cd8_o.jpg", "secret": "77dfcc0375", "media": "photo", "latitude": "0", "id": "4314759568", "tags": ""}, {"datetaken": "2010-01-05 04:59:20", "license": "2", "title": "The Champagne Pool, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4314788910_e78dba22e4_o.jpg", "secret": "9c6f124b02", "media": "photo", "latitude": "0", "id": "4314788910", "tags": ""}, {"datetaken": "2010-01-05 05:00:24", "license": "2", "title": "Terrace Boardwalk - The Artist's Palette, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4314783580_7fd1b7b48b_o.jpg", "secret": "079143a6f7", "media": "photo", "latitude": "0", "id": "4314783580", "tags": ""}, {"datetaken": "2010-01-05 05:00:58", "license": "2", "title": "The Artist's Palette, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2774/4314784020_800df69acc_o.jpg", "secret": "f5e572e98e", "media": "photo", "latitude": "0", "id": "4314784020", "tags": ""}, {"datetaken": "2010-01-05 05:02:25", "license": "2", "title": "The Artist's Palette, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2743/4314790642_54cc4dd1e1_o.jpg", "secret": "ecba2f4ff9", "media": "photo", "latitude": "0", "id": "4314790642", "tags": ""}, {"datetaken": "2010-01-05 05:03:55", "license": "2", "title": "Lost hat at the Opal Pool, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4314785524_24456ac0ed_o.jpg", "secret": "43194d13b1", "media": "photo", "latitude": "0", "id": "4314785524", "tags": ""}, {"datetaken": "2010-01-05 05:07:06", "license": "2", "title": "The Champagne Pool, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2793/4314028235_a57f4d9d0c_o.jpg", "secret": "16fbde8b07", "media": "photo", "latitude": "0", "id": "4314028235", "tags": ""}, {"datetaken": "2010-01-05 05:08:30", "license": "2", "title": "The Artist's Palatte, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4314028621_83e91a7234_o.jpg", "secret": "c313783824", "media": "photo", "latitude": "0", "id": "4314028621", "tags": ""}, {"datetaken": "2010-01-05 05:16:45", "license": "2", "title": "Scenic Overlook to Fry Pan Flats, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4314786234_8cafede741_o.jpg", "secret": "dda88f4958", "media": "photo", "latitude": "0", "id": "4314786234", "tags": ""}, {"datetaken": "2010-01-05 05:25:55", "license": "2", "title": "The Artist's Palette, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4314038693_fe687137fc_o.jpg", "secret": "c7bfa847f2", "media": "photo", "latitude": "0", "id": "4314038693", "tags": ""}, {"datetaken": "2010-01-05 05:33:49", "license": "2", "title": "The Oyster Pool, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4314786906_09b0a2025f_o.jpg", "secret": "acf10e6eee", "media": "photo", "latitude": "0", "id": "4314786906", "tags": ""}, {"datetaken": "2010-01-05 05:56:56", "license": "2", "title": "Sarah at Bridal Veil Falls, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4314029231_4a84b6eb7b_o.jpg", "secret": "3b13b8ac2e", "media": "photo", "latitude": "0", "id": "4314029231", "tags": ""}, {"datetaken": "2010-01-05 06:03:18", "license": "2", "title": "The Champagne Pool, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4314029801_4380ea7165_o.jpg", "secret": "83b26a98fb", "media": "photo", "latitude": "0", "id": "4314029801", "tags": ""}, {"datetaken": "2010-01-05 06:06:05", "license": "2", "title": "Sarah at the Champagne Pool, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4314767550_c38663417a_o.jpg", "secret": "56679df079", "media": "photo", "latitude": "0", "id": "4314767550", "tags": ""}, {"datetaken": "2010-01-05 06:09:41", "license": "2", "title": "Adam at the Champagne Pool, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4314768212_5e96aa3b7d_o.jpg", "secret": "8a14fe322e", "media": "photo", "latitude": "0", "id": "4314768212", "tags": ""}, {"datetaken": "2010-01-05 06:15:28", "license": "2", "title": "The Devil's Bath, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4314769044_4040ff7541_o.jpg", "secret": "39ef3ca536", "media": "photo", "latitude": "0", "id": "4314769044", "tags": ""}, {"datetaken": "2010-01-05 06:15:51", "license": "2", "title": "The Devil's Bath, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4314032459_6856d4940b_o.jpg", "secret": "33fa03fc3e", "media": "photo", "latitude": "0", "id": "4314032459", "tags": ""}, {"datetaken": "2010-01-05 07:25:33", "license": "2", "title": "The Mud Pool, Wai-O-Tapu Thermal Wonderland, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2791/4314032951_e98e4b61c9_o.jpg", "secret": "5c99d6abb5", "media": "photo", "latitude": "0", "id": "4314032951", "tags": ""}, {"datetaken": "2010-01-05 09:23:44", "license": "2", "title": "Sarah & Adam at Te Wairoa Falls, Buried Village, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4314036811_282d28523d_o.jpg", "secret": "7c6a9fa8ac", "media": "photo", "latitude": "0", "id": "4314036811", "tags": ""}, {"datetaken": "2010-01-05 09:26:21", "license": "2", "title": "Te Wairoa Falls, Buried Village, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2774/4314037425_fd9d8485bb_o.jpg", "secret": "58ce654a6d", "media": "photo", "latitude": "0", "id": "4314037425", "tags": ""}, {"datetaken": "2010-01-05 10:51:00", "license": "2", "title": "Adam Swimming in Lake Tarawera, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4314038097_97cc6988db_o.jpg", "secret": "4b6f6d8138", "media": "photo", "latitude": "0", "id": "4314038097", "tags": ""}, {"datetaken": "2010-01-05 13:43:53", "license": "2", "title": "Maori Performer, Tamaki Maori Village, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2681/4314049999_a026bcddf6_o.jpg", "secret": "d44daf1864", "media": "photo", "latitude": "0", "id": "4314049999", "tags": ""}, {"datetaken": "2010-01-05 13:45:19", "license": "2", "title": "Maori Performer, Tamaki Maori Village, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4314018553_d8feca5666_o.jpg", "secret": "4c4da2949f", "media": "photo", "latitude": "0", "id": "4314018553", "tags": ""}, {"datetaken": "2010-01-05 13:45:54", "license": "2", "title": "Maori Performer, Tamaki Maori Village, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4314787626_feb0f6f4dc_o.jpg", "secret": "15a9396c70", "media": "photo", "latitude": "0", "id": "4314787626", "tags": ""}, {"datetaken": "2010-01-05 13:46:36", "license": "2", "title": "Maori Performer, Tamaki Maori Village, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4314791032_98619fdd57_o.jpg", "secret": "ec993bd856", "media": "photo", "latitude": "0", "id": "4314791032", "tags": ""}, {"datetaken": "2010-01-05 13:46:57", "license": "2", "title": "Maori Performer, Tamaki Maori Village, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4314040883_f1669d3f3b_o.jpg", "secret": "63da32f495", "media": "photo", "latitude": "0", "id": "4314040883", "tags": ""}, {"datetaken": "2010-01-05 13:48:58", "license": "2", "title": "Maori Performers, Tamaki Maori Village, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4314756134_81f0afb8c2_o.jpg", "secret": "ce8e48f551", "media": "photo", "latitude": "0", "id": "4314756134", "tags": ""}, {"datetaken": "2010-01-05 14:06:32", "license": "2", "title": "Maori Meeting House, Tamaki Maori Village, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2743/4314043461_853ccf5be0_o.jpg", "secret": "11459ab4c7", "media": "photo", "latitude": "0", "id": "4314043461", "tags": ""}, {"datetaken": "2010-01-06 10:55:13", "license": "2", "title": "Exterior of the Hunt's Farmstay, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4314780832_a10b8d6f2d_o.jpg", "secret": "5e98cc8081", "media": "photo", "latitude": "0", "id": "4314780832", "tags": ""}, {"datetaken": "2010-01-06 10:55:41", "license": "2", "title": "View of Rotorua from the Hunt's Farmstay", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4314044359_dc7a6175b1_o.jpg", "secret": "500592800c", "media": "photo", "latitude": "0", "id": "4314044359", "tags": ""}, {"datetaken": "2010-01-06 14:03:14", "license": "2", "title": "Sarah Lounging at the Hunt's Farmstay, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2762/4314781714_a7292e2642_o.jpg", "secret": "6e92b0690c", "media": "photo", "latitude": "0", "id": "4314781714", "tags": ""}, {"datetaken": "2010-01-06 14:35:35", "license": "2", "title": "Arriving at the Hunt's Farmstay, Rotorua", "text": "", "album_id": "72157623184933535", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4314784482_322309438a_o.jpg", "secret": "09393a4867", "media": "photo", "latitude": "0", "id": "4314784482", "tags": ""}, {"datetaken": "2010-03-30 09:24:18", "license": "3", "title": "GIS in Education Award Winner Jenna Oliva", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm5.staticflickr.com/4069/4477867726_66484b3b2b_o.jpg", "secret": "c8df8290fa", "media": "photo", "latitude": "39.194588", "id": "4477867726", "tags": "de gis conference delaware dover 2010 firststate dgdc degis2010"}, {"datetaken": "2010-03-30 09:31:08", "license": "3", "title": "GIS Service Award Winner Dick Sacher", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm5.staticflickr.com/4026/4482246956_07ee3dc616_o.jpg", "secret": "26b89fbfb7", "media": "photo", "latitude": "39.194588", "id": "4482246956", "tags": "de gis conference delaware dover 2010 firststate dgdc degis2010"}, {"datetaken": "2010-03-30 09:57:28", "license": "3", "title": "Anne Hale Miglarese", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm5.staticflickr.com/4028/4477245099_4efbd6d9bb_o.jpg", "secret": "09defca5aa", "media": "photo", "latitude": "39.194588", "id": "4477245099", "tags": "de gis conference delaware dover 2010 firststate dgdc degis2010"}, {"datetaken": "2010-03-30 10:46:12", "license": "3", "title": "Networking", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm3.staticflickr.com/2730/4477245445_8deeb796e1_o.jpg", "secret": "014faef17c", "media": "photo", "latitude": "39.194588", "id": "4477245445", "tags": "de gis conference delaware dover 2010 firststate dgdc degis2010"}, {"datetaken": "2010-03-30 10:46:52", "license": "3", "title": "Learning", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm3.staticflickr.com/2789/4477245749_6f6a6137cc_o.jpg", "secret": "37bdda58c5", "media": "photo", "latitude": "39.194588", "id": "4477245749", "tags": "de gis conference delaware dover 2010 firststate dgdc degis2010"}, {"datetaken": "2010-03-30 10:47:52", "license": "3", "title": "SAIC", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm5.staticflickr.com/4032/4477268189_0c549c5ae6_o.jpg", "secret": "23c200f8b7", "media": "photo", "latitude": "39.194588", "id": "4477268189", "tags": "de gis conference delaware dover firststate degis dgdc"}, {"datetaken": "2010-03-30 10:48:01", "license": "3", "title": "Keystone Precision Instruments", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm5.staticflickr.com/4007/4477268493_824f021c82_o.jpg", "secret": "bd648260fe", "media": "photo", "latitude": "39.194588", "id": "4477268493", "tags": "de gis conference delaware dover firststate degis dgdc"}, {"datetaken": "2010-03-30 10:48:10", "license": "3", "title": "JMT", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm5.staticflickr.com/4051/4477891966_0d7d8a39e6_o.jpg", "secret": "bd1270f4fd", "media": "photo", "latitude": "39.194588", "id": "4477891966", "tags": "de gis conference delaware dover firststate degis dgdc"}, {"datetaken": "2010-03-30 10:48:21", "license": "3", "title": "ESRI", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm3.staticflickr.com/2733/4477269599_37f0720a33_o.jpg", "secret": "33a714b2a7", "media": "photo", "latitude": "39.194588", "id": "4477269599", "tags": "de gis conference delaware dover firststate degis dgdc"}, {"datetaken": "2010-03-30 10:48:26", "license": "3", "title": "Applied Imagery", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm3.staticflickr.com/2763/4477892896_3603a872a5_o.jpg", "secret": "3a4d88732b", "media": "photo", "latitude": "39.194588", "id": "4477892896", "tags": "de gis conference delaware dover firststate degis dgdc"}, {"datetaken": "2010-03-30 10:48:32", "license": "3", "title": "Earth Vector", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm3.staticflickr.com/2761/4477270269_47836cdabd_o.jpg", "secret": "3a3f546dfc", "media": "photo", "latitude": "39.194588", "id": "4477270269", "tags": "de gis conference delaware dover firststate degis dgdc"}, {"datetaken": "2010-03-30 10:48:41", "license": "3", "title": "Point Positive", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm5.staticflickr.com/4004/4477893480_5d9e8b037e_o.jpg", "secret": "5e739eef17", "media": "photo", "latitude": "39.194588", "id": "4477893480", "tags": "de gis conference delaware dover firststate degis dgdc"}, {"datetaken": "2010-03-30 10:48:49", "license": "3", "title": "MetaCarta", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm5.staticflickr.com/4015/4477270899_704af1abef_o.jpg", "secret": "1fff9acec5", "media": "photo", "latitude": "39.194588", "id": "4477270899", "tags": "de gis conference delaware dover firststate degis dgdc"}, {"datetaken": "2010-03-30 10:48:57", "license": "3", "title": "DelaSoft", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm5.staticflickr.com/4030/4477894182_a33893e3ac_o.jpg", "secret": "40f4e9fb92", "media": "photo", "latitude": "39.194588", "id": "4477894182", "tags": "de gis conference delaware dover firststate degis dgdc"}, {"datetaken": "2010-03-30 10:58:03", "license": "3", "title": "Sandy Schenck considers", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm5.staticflickr.com/4061/4477245987_4e92cfcab7_o.jpg", "secret": "900171eba1", "media": "photo", "latitude": "39.194588", "id": "4477245987", "tags": "de gis conference delaware dover 2010 firststate dgdc degis2010"}, {"datetaken": "2010-03-30 13:25:23", "license": "3", "title": "Anne Hale Miglarese #degis2010", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm5.staticflickr.com/4019/4476423246_e091428535_o.jpg", "secret": "afa83774bb", "media": "photo", "latitude": "39.194588", "id": "4476423246", "tags": "cameraphone"}, {"datetaken": "2010-03-30 14:32:16", "license": "3", "title": "A presentation at #degis2010", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm3.staticflickr.com/2780/4476558342_92cdb75364_o.jpg", "secret": "2384f66861", "media": "photo", "latitude": "39.194588", "id": "4476558342", "tags": "cameraphone"}, {"datetaken": "2010-03-30 15:48:01", "license": "3", "title": "Miki Schmidt", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm5.staticflickr.com/4050/4477246259_2f20a0e959_o.jpg", "secret": "869bb83f0a", "media": "photo", "latitude": "39.194588", "id": "4477246259", "tags": "de gis conference delaware dover 2010 firststate dgdc degis2010"}, {"datetaken": "2010-03-30 16:18:08", "license": "3", "title": "The Conference Committee", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm3.staticflickr.com/2697/4477246499_9d17261299_o.jpg", "secret": "2215c69165", "media": "photo", "latitude": "39.194588", "id": "4477246499", "tags": "de gis conference delaware dover 2010 firststate dgdc degis2010"}, {"datetaken": "2010-03-30 17:21:44", "license": "3", "title": "Networking at #degis2010", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm3.staticflickr.com/2787/4476183145_c6371cfb60_o.jpg", "secret": "3ea20eb294", "media": "photo", "latitude": "39.194588", "id": "4476183145", "tags": "cameraphone"}, {"datetaken": "2010-03-30 19:28:34", "license": "3", "title": "Miki Schmidt at #degis2010", "text": "", "album_id": "72157623613552907", "longitude": "-75.550521", "url_o": "https://farm5.staticflickr.com/4034/4476490031_54e3fbd686_o.jpg", "secret": "7d5daf8c2b", "media": "photo", "latitude": "39.194588", "id": "4476490031", "tags": "cameraphone"}, {"datetaken": "2009-12-27 22:42:23", "license": "1", "title": "Jess and Dani", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2646/4241710183_3faa45c722_o.jpg", "secret": "ec2d708c01", "media": "photo", "latitude": "0", "id": "4241710183", "tags": "december dani 2009 stagette setdanistagette"}, {"datetaken": "2009-12-27 22:42:47", "license": "1", "title": "Nice", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4242487336_685d0be969_o.jpg", "secret": "3d3aeec7be", "media": "photo", "latitude": "0", "id": "4242487336", "tags": "december dani 2009 stagette setdanistagette"}, {"datetaken": "2009-12-27 22:43:07", "license": "1", "title": "Sisters", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4242693766_49751588f0_o.jpg", "secret": "25cf1b213f", "media": "photo", "latitude": "0", "id": "4242693766", "tags": "family rachel december kelsey 2009 stagette setdanistagette"}, {"datetaken": "2009-12-27 22:55:39", "license": "1", "title": "Finally got Jen to smile :P", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2763/4241916319_2748a46d10_o.jpg", "secret": "4da780fa67", "media": "photo", "latitude": "0", "id": "4241916319", "tags": "december 2009 stagette setdanistagette"}, {"datetaken": "2009-12-27 23:34:42", "license": "1", "title": "The party", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4241717083_50c33a5514_o.jpg", "secret": "6a28e797d5", "media": "photo", "latitude": "0", "id": "4241717083", "tags": "december dani 2009 stagette setdanistagette"}, {"datetaken": "2009-12-27 23:35:47", "license": "1", "title": "The beginning of the night...", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4242493218_66649463d6_o.jpg", "secret": "6037c44563", "media": "photo", "latitude": "0", "id": "4242493218", "tags": "december dani 2009 stagette setdanistagette"}, {"datetaken": "2009-12-27 23:35:58", "license": "1", "title": "Dani and Tracie", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2716/4242497420_a0da29b33b_o.jpg", "secret": "3e613b2425", "media": "photo", "latitude": "0", "id": "4242497420", "tags": "december dani 2009 stagette setdanistagette"}, {"datetaken": "2009-12-27 23:36:14", "license": "1", "title": "The trio", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2560/4242503526_7c9c5f45d6_o.jpg", "secret": "b2496d0fa2", "media": "photo", "latitude": "0", "id": "4242503526", "tags": "december dani 2009 stagette setdanistagette"}, {"datetaken": "2009-12-27 23:36:52", "license": "1", "title": "Tracie taking her down", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4242511814_9dee939b1a_o.jpg", "secret": "c47f054b8b", "media": "photo", "latitude": "0", "id": "4242511814", "tags": "december dani 2009 stagette setdanistagette"}, {"datetaken": "2009-12-27 23:38:18", "license": "1", "title": "Sisters!", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2788/4241750125_8da18d1892_o.jpg", "secret": "d266d10f51", "media": "photo", "latitude": "0", "id": "4241750125", "tags": "rachel december dani 2009 stagette setdanistagette"}, {"datetaken": "2009-12-27 23:53:02", "license": "1", "title": "Cute couple", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4242531320_45ed6566ca_o.jpg", "secret": "b6d7db94cf", "media": "photo", "latitude": "0", "id": "4242531320", "tags": "december 2009 stagette setdanistagette"}, {"datetaken": "2009-12-27 23:53:41", "license": "1", "title": "The pre-newly weds", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2493/4241764443_b7d1091bb9_o.jpg", "secret": "b96cabec02", "media": "photo", "latitude": "0", "id": "4241764443", "tags": "december 2009 stagette setdanistagette"}, {"datetaken": "2009-12-28 00:11:30", "license": "1", "title": "Dani apprehensive", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4241767977_1fd91092c7_o.jpg", "secret": "9ef55b84d5", "media": "photo", "latitude": "0", "id": "4241767977", "tags": "december dani 2009 stagette setdanistagette"}, {"datetaken": "2009-12-28 00:11:45", "license": "1", "title": "Dani excited...", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2538/4241777095_8f5d16ee3d_o.jpg", "secret": "c239bb5f4c", "media": "photo", "latitude": "0", "id": "4241777095", "tags": "december dani 2009 stagette setdanistagette"}, {"datetaken": "2009-12-28 00:12:00", "license": "1", "title": "Cheers!", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2545/4241783769_aab208b7e7_o.jpg", "secret": "5cc62f129e", "media": "photo", "latitude": "0", "id": "4241783769", "tags": "december dani 2009 stagette setdanistagette"}, {"datetaken": "2009-12-28 00:12:05", "license": "1", "title": "Goin' down", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2531/4242566808_3abb516a81_o.jpg", "secret": "31ecc94897", "media": "photo", "latitude": "0", "id": "4242566808", "tags": "december dani 2009 stagette setdanistagette"}, {"datetaken": "2009-12-28 00:12:11", "license": "1", "title": "Dani grossed out...", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2633/4241806681_dd8aff2a9a_o.jpg", "secret": "ac6960c07a", "media": "photo", "latitude": "0", "id": "4241806681", "tags": "december dani 2009 stagette setdanistagette"}, {"datetaken": "2009-12-28 00:31:03", "license": "1", "title": "Cousins!", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2745/4241825729_6c921ae2a2_o.jpg", "secret": "8052395eb8", "media": "photo", "latitude": "0", "id": "4241825729", "tags": "rachel december 2009 stagette setdanistagette"}, {"datetaken": "2009-12-28 01:00:02", "license": "1", "title": "Alone on the dancefloor", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4241847489_189a6b8885_o.jpg", "secret": "edeb098a18", "media": "photo", "latitude": "0", "id": "4241847489", "tags": "december dani 2009 stagette setdanistagette"}, {"datetaken": "2009-12-28 02:23:44", "license": "1", "title": "Nice eye", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4241862571_8b652e0e2f_o.jpg", "secret": "4ddc4d6465", "media": "photo", "latitude": "0", "id": "4241862571", "tags": "december 2009 stagette setdanistagette"}, {"datetaken": "2009-12-28 02:56:42", "license": "1", "title": "Crazy on the dance floor", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4241880489_dcc62bb0c9_o.jpg", "secret": "7fd64f1d34", "media": "photo", "latitude": "0", "id": "4241880489", "tags": "december dani kelsey 2009 stagette setdanistagette"}, {"datetaken": "2009-12-28 02:57:03", "license": "1", "title": "Gettin' down", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4241896893_ca5072b2de_o.jpg", "secret": "ca73e4bbee", "media": "photo", "latitude": "0", "id": "4241896893", "tags": "december dani kelsey 2009 stagette setdanistagette"}, {"datetaken": "2009-12-28 02:57:10", "license": "1", "title": "", "text": "", "album_id": "72157623007646107", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4242678334_312a7acf31_o.jpg", "secret": "053373a3b1", "media": "photo", "latitude": "0", "id": "4242678334", "tags": "december 2009 stagette setdanistagette"}, {"datetaken": "2009-10-31 01:37:19", "license": "3", "title": "IMG_7908a", "text": "", "album_id": "72157623019053803", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4247754534_d44385c2a3_o.jpg", "secret": "ea388f332e", "media": "photo", "latitude": "0", "id": "4247754534", "tags": "wedding eh callum holden"}, {"datetaken": "2009-10-31 02:37:22", "license": "3", "title": "IMG_7945b", "text": "", "album_id": "72157623019053803", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4246980509_73419f1186_o.jpg", "secret": "c3794ba269", "media": "photo", "latitude": "0", "id": "4246980509", "tags": "wedding bride riverside"}, {"datetaken": "2009-10-31 03:29:50", "license": "3", "title": "IMG_8024", "text": "", "album_id": "72157623019053803", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4246980731_c1eea4f7cf_o.jpg", "secret": "440a0676de", "media": "photo", "latitude": "0", "id": "4246980731", "tags": "wedding boy flower church girl page hagley"}, {"datetaken": "2009-10-31 03:34:20", "license": "3", "title": "IMG_8029b", "text": "", "album_id": "72157623019053803", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4246981017_69bbc71d04_o.jpg", "secret": "25138cc379", "media": "photo", "latitude": "0", "id": "4246981017", "tags": "wedding church hagley"}, {"datetaken": "2009-10-31 03:37:03", "license": "3", "title": "IMG_8042b", "text": "", "album_id": "72157623019053803", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4247755514_c6e2c08196_o.jpg", "secret": "e7137e6b18", "media": "photo", "latitude": "0", "id": "4247755514", "tags": "wedding colour church bride selective hagley"}, {"datetaken": "2009-10-31 04:21:38", "license": "3", "title": "IMG_8208", "text": "", "album_id": "72157623019053803", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4247755918_4a56ae9310_o.jpg", "secret": "48db09acab", "media": "photo", "latitude": "0", "id": "4247755918", "tags": "wedding church groom bride tasmania hagley"}, {"datetaken": "2009-10-31 05:06:01", "license": "3", "title": "IMG_8328a", "text": "", "album_id": "72157623019053803", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4247756380_2ef0274230_o.jpg", "secret": "0f7fe58e88", "media": "photo", "latitude": "0", "id": "4247756380", "tags": "wedding set river hadspen"}, {"datetaken": "2009-10-31 05:09:20", "license": "3", "title": "IMG_8345a", "text": "", "album_id": "72157623019053803", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4247756634_afe9e70f04_o.jpg", "secret": "9686a25685", "media": "photo", "latitude": "0", "id": "4247756634", "tags": "wedding river groom bride hadspen"}, {"datetaken": "2009-10-31 05:18:05", "license": "3", "title": "IMG_8412", "text": "", "album_id": "72157623019053803", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4247756804_fc9c027786_o.jpg", "secret": "3cd6f785ff", "media": "photo", "latitude": "0", "id": "4247756804", "tags": "wedding rings"}, {"datetaken": "2009-10-31 05:53:09", "license": "3", "title": "IMG_8522", "text": "", "album_id": "72157623019053803", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4246980087_02caeb5716_o.jpg", "secret": "a2f74e5159", "media": "photo", "latitude": "0", "id": "4246980087", "tags": "wedding casino launceston"}, {"datetaken": "2009-08-29 07:46:23", "license": "4", "title": "MayFlyIMG_2867", "text": "", "album_id": "72157623149579924", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4249420053_f381031510_o.jpg", "secret": "a972c62f96", "media": "photo", "latitude": "0", "id": "4249420053", "tags": "flowers wedding oregon portland boquets amyroberts mayflyflowers"}, {"datetaken": "2009-08-29 07:57:12", "license": "4", "title": "MayFlyIMG_2876", "text": "", "album_id": "72157623149579924", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4250194494_4b028468b2_o.jpg", "secret": "9586f4dc08", "media": "photo", "latitude": "0", "id": "4250194494", "tags": "flowers wedding oregon portland boquets amyroberts mayflyflowers"}, {"datetaken": "2009-08-29 08:00:30", "license": "4", "title": "MayFlyIMG_2882", "text": "", "album_id": "72157623149579924", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2794/4250194230_880d65d72a_o.jpg", "secret": "4648c2d8db", "media": "photo", "latitude": "0", "id": "4250194230", "tags": "flowers wedding oregon portland boquets amyroberts mayflyflowers"}, {"datetaken": "2009-08-29 08:02:36", "license": "4", "title": "MayFlyIMG_2883", "text": "", "album_id": "72157623149579924", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2725/4250193950_ae2bce4bbf_o.jpg", "secret": "51b826394e", "media": "photo", "latitude": "0", "id": "4250193950", "tags": "flowers wedding oregon portland boquets amyroberts mayflyflowers"}, {"datetaken": "2009-08-29 08:05:48", "license": "4", "title": "MayFlyIMG_2885", "text": "", "album_id": "72157623149579924", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4249418807_26af798d37_o.jpg", "secret": "385369b8bd", "media": "photo", "latitude": "0", "id": "4249418807", "tags": "flowers wedding oregon portland boquets amyroberts mayflyflowers"}, {"datetaken": "2009-08-29 08:09:21", "license": "4", "title": "MayFlyIMG_2891", "text": "", "album_id": "72157623149579924", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4249418553_1165282db3_o.jpg", "secret": "b5cfdb8bbd", "media": "photo", "latitude": "0", "id": "4249418553", "tags": "flowers wedding oregon portland boquets amyroberts mayflyflowers"}, {"datetaken": "2009-08-29 08:13:09", "license": "4", "title": "MayFlyIMG_2892", "text": "", "album_id": "72157623149579924", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4249418153_0d03dfda0d_o.jpg", "secret": "76917404ea", "media": "photo", "latitude": "0", "id": "4249418153", "tags": "flowers wedding oregon portland boquets amyroberts mayflyflowers"}, {"datetaken": "2009-08-29 08:19:04", "license": "4", "title": "MayFlyIMG_2895", "text": "", "album_id": "72157623149579924", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4250195202_2a8d0ee50d_o.jpg", "secret": "31182d1204", "media": "photo", "latitude": "0", "id": "4250195202", "tags": "flowers wedding oregon portland boquets amyroberts mayflyflowers"}, {"datetaken": "2009-08-29 08:21:07", "license": "4", "title": "MayFlyIMG_2897", "text": "", "album_id": "72157623149579924", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4249420289_caf7e57ea3_o.jpg", "secret": "602089002a", "media": "photo", "latitude": "0", "id": "4249420289", "tags": "flowers wedding oregon portland boquets amyroberts mayflyflowers"}, {"datetaken": "2009-08-29 08:22:39", "license": "4", "title": "MayFlyIMG_2898", "text": "", "album_id": "72157623149579924", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2760/4250192638_1506dc84db_o.jpg", "secret": "13bacffd7c", "media": "photo", "latitude": "0", "id": "4250192638", "tags": "flowers wedding oregon portland boquets amyroberts mayflyflowers"}, {"datetaken": "2009-12-30 08:32:52", "license": "2", "title": "lanka 057", "text": "", "album_id": "72157623038153663", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4254388749_f47e9b4769_o.jpg", "secret": "2f54dfb5bf", "media": "photo", "latitude": "0", "id": "4254388749", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-30 08:40:52", "license": "2", "title": "lanka 063", "text": "", "album_id": "72157623038153663", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4255154802_b849a27c94_o.jpg", "secret": "c8326b69fd", "media": "photo", "latitude": "0", "id": "4255154802", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-30 08:42:16", "license": "2", "title": "lanka 064", "text": "", "album_id": "72157623038153663", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4255155146_48a0e2e55f_o.jpg", "secret": "4b65695aa2", "media": "photo", "latitude": "0", "id": "4255155146", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-30 09:46:02", "license": "2", "title": "lanka 066", "text": "", "album_id": "72157623038153663", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4255155282_4f156808ed_o.jpg", "secret": "f29fa3be2e", "media": "photo", "latitude": "0", "id": "4255155282", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-30 09:46:19", "license": "2", "title": "lanka 067", "text": "", "album_id": "72157623038153663", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4255155740_33efdf7a0c_o.jpg", "secret": "eaaa9fee64", "media": "photo", "latitude": "0", "id": "4255155740", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-30 10:55:10", "license": "2", "title": "lanka 070", "text": "", "album_id": "72157623038153663", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2703/4255156234_879b9dc5da_o.jpg", "secret": "d4a1b48090", "media": "photo", "latitude": "0", "id": "4255156234", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-30 11:36:53", "license": "2", "title": "lanka 072", "text": "", "album_id": "72157623038153663", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4254390889_d62b164c34_o.jpg", "secret": "d06dddd01d", "media": "photo", "latitude": "0", "id": "4254390889", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-30 11:37:03", "license": "2", "title": "lanka 073", "text": "", "album_id": "72157623038153663", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2694/4255157124_a51bfa263a_o.jpg", "secret": "8a66868e14", "media": "photo", "latitude": "0", "id": "4255157124", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-30 11:42:03", "license": "2", "title": "lanka 074", "text": "", "album_id": "72157623038153663", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2764/4255157696_74374f6e93_o.jpg", "secret": "aa9b48b503", "media": "photo", "latitude": "0", "id": "4255157696", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-30 12:05:22", "license": "2", "title": "lanka 076", "text": "", "album_id": "72157623038153663", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4255158092_0e8aea2a2b_o.jpg", "secret": "bf7a0d6afb", "media": "photo", "latitude": "0", "id": "4255158092", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-30 12:13:04", "license": "2", "title": "lanka 079", "text": "", "album_id": "72157623038153663", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2636/4254392669_40dcb7b58a_o.jpg", "secret": "28862b8ccd", "media": "photo", "latitude": "0", "id": "4254392669", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-30 12:23:43", "license": "2", "title": "lanka 080", "text": "", "album_id": "72157623038153663", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4255158624_fae718c94a_o.jpg", "secret": "e6913e4a6a", "media": "photo", "latitude": "0", "id": "4255158624", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-30 13:00:03", "license": "2", "title": "lanka 084", "text": "", "album_id": "72157623038153663", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4254393173_81bd58af6f_o.jpg", "secret": "644a7b0c6e", "media": "photo", "latitude": "0", "id": "4254393173", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-30 13:03:36", "license": "2", "title": "lanka 087", "text": "", "album_id": "72157623038153663", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4255159514_281c5f2f90_o.jpg", "secret": "27f75ee6c6", "media": "photo", "latitude": "0", "id": "4255159514", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-30 13:05:44", "license": "2", "title": "lanka 090", "text": "", "album_id": "72157623038153663", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4255160156_f9583dfdc0_o.jpg", "secret": "33347d0132", "media": "photo", "latitude": "0", "id": "4255160156", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-30 13:05:59", "license": "2", "title": "lanka 091", "text": "", "album_id": "72157623038153663", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2425/4254394653_d07ac07a22_o.jpg", "secret": "6c2335c216", "media": "photo", "latitude": "0", "id": "4254394653", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-30 13:09:51", "license": "2", "title": "lanka 092", "text": "", "album_id": "72157623038153663", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4255160960_65d0411825_o.jpg", "secret": "342546388b", "media": "photo", "latitude": "0", "id": "4255160960", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 06:48:56", "license": "2", "title": "lanka 529", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4254456925_302891df13_o.jpg", "secret": "7cdd2d1a7b", "media": "photo", "latitude": "0", "id": "4254456925", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 11:42:44", "license": "2", "title": "lanka 543", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2774/4255222244_6df8c40cb3_o.jpg", "secret": "ee4da6bd9d", "media": "photo", "latitude": "0", "id": "4255222244", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 11:45:01", "license": "2", "title": "lanka 544", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4255222604_396fcf212c_o.jpg", "secret": "eafa432437", "media": "photo", "latitude": "0", "id": "4255222604", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 11:45:48", "license": "2", "title": "lanka 545", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4254458181_063ca7148b_o.jpg", "secret": "dc3cc31d99", "media": "photo", "latitude": "0", "id": "4254458181", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 11:45:53", "license": "2", "title": "lanka 546", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2804/4254458675_bf2cd8811b_o.jpg", "secret": "88c4ac4406", "media": "photo", "latitude": "0", "id": "4254458675", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 11:54:18", "license": "2", "title": "lanka 547", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4254459009_6287f5c4d9_o.jpg", "secret": "74c1780110", "media": "photo", "latitude": "0", "id": "4254459009", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 12:03:07", "license": "2", "title": "lanka 548", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4255224258_ff5c350e0c_o.jpg", "secret": "ee9470271d", "media": "photo", "latitude": "0", "id": "4255224258", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 12:07:34", "license": "2", "title": "lanka 552", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2687/4255224472_e4578baf2f_o.jpg", "secret": "a95d7f26b4", "media": "photo", "latitude": "0", "id": "4255224472", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 12:09:57", "license": "2", "title": "lanka 556", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2706/4255225012_3cf2c2b259_o.jpg", "secret": "5848ec5109", "media": "photo", "latitude": "0", "id": "4255225012", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 12:42:23", "license": "2", "title": "lanka 581", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4255225428_9466976887_o.jpg", "secret": "0432695719", "media": "photo", "latitude": "0", "id": "4255225428", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 12:53:39", "license": "2", "title": "lanka 583", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2695/4254461055_3281b5acd0_o.jpg", "secret": "ea35ecd97f", "media": "photo", "latitude": "0", "id": "4254461055", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 13:00:39", "license": "2", "title": "lanka 592", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4255226326_fbb14fa285_o.jpg", "secret": "24f9f3bff1", "media": "photo", "latitude": "0", "id": "4255226326", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 13:04:49", "license": "2", "title": "lanka 593", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2714/4254461705_c20d51cda7_o.jpg", "secret": "34aa193d53", "media": "photo", "latitude": "0", "id": "4254461705", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 13:21:41", "license": "2", "title": "lanka 595", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4254462135_c694432847_o.jpg", "secret": "1f54d89220", "media": "photo", "latitude": "0", "id": "4254462135", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 13:30:34", "license": "2", "title": "lanka 597", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4255227406_25152421e2_o.jpg", "secret": "e7261350b2", "media": "photo", "latitude": "0", "id": "4255227406", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 13:51:49", "license": "2", "title": "lanka 598", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4254462995_6a7ac4237d_o.jpg", "secret": "40b03fae68", "media": "photo", "latitude": "0", "id": "4254462995", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 13:52:02", "license": "2", "title": "lanka 599", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2706/4255228378_9c33c114be_o.jpg", "secret": "6b9f04718a", "media": "photo", "latitude": "0", "id": "4255228378", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 13:53:41", "license": "2", "title": "lanka 603", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4254463651_8f3d5c2ab8_o.jpg", "secret": "610d7d027b", "media": "photo", "latitude": "0", "id": "4254463651", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 13:53:42", "license": "2", "title": "lanka 604", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2758/4255228894_1cc7744a92_o.jpg", "secret": "69f1935445", "media": "photo", "latitude": "0", "id": "4255228894", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 14:34:37", "license": "2", "title": "lanka 611", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2745/4255229030_b8e7428472_o.jpg", "secret": "c642fdd6d6", "media": "photo", "latitude": "0", "id": "4255229030", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 14:35:19", "license": "2", "title": "lanka 614", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4254464363_ba31799979_o.jpg", "secret": "19a3ab8475", "media": "photo", "latitude": "0", "id": "4254464363", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 14:38:36", "license": "2", "title": "lanka 621", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2611/4254464665_ffb0174aae_o.jpg", "secret": "bc1ae3ea17", "media": "photo", "latitude": "0", "id": "4254464665", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 14:41:50", "license": "2", "title": "lanka 624", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4254464747_e6ff250dce_o.jpg", "secret": "847c3e0e9e", "media": "photo", "latitude": "0", "id": "4254464747", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 14:42:04", "license": "2", "title": "lanka 625", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4254464905_a000ea0ede_o.jpg", "secret": "7ee02a6387", "media": "photo", "latitude": "0", "id": "4254464905", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 14:49:53", "license": "2", "title": "lanka 628", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4254465303_148fb1830e_o.jpg", "secret": "45985ea8b6", "media": "photo", "latitude": "0", "id": "4254465303", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 14:50:59", "license": "2", "title": "lanka 632", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4254465657_62913429e0_o.jpg", "secret": "ab973dbe08", "media": "photo", "latitude": "0", "id": "4254465657", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 15:02:25", "license": "2", "title": "lanka 637", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2739/4255231530_4f15b829ff_o.jpg", "secret": "7b4bc54e1c", "media": "photo", "latitude": "0", "id": "4255231530", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2009-12-31 15:05:13", "license": "2", "title": "lanka 640", "text": "", "album_id": "72157623162647704", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/4255231860_63ab71fa1e_o.jpg", "secret": "bf5ac3b1dc", "media": "photo", "latitude": "0", "id": "4255231860", "tags": "brandy srilanka weddingtrip asthika goonewardene"}, {"datetaken": "2010-01-08 15:47:01", "license": "3", "title": "up the Hudson", "text": "", "album_id": "72157623064224327", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4266418482_7216075e19_o.jpg", "secret": "7642677aa4", "media": "photo", "latitude": "0", "id": "4266418482", "tags": "family wedding leicadlux4 tcdavis"}, {"datetaken": "2010-01-08 23:54:43", "license": "3", "title": "Winter Wedding", "text": "", "album_id": "72157623064224327", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4266419858_a303999f8b_o.jpg", "secret": "64211198cc", "media": "photo", "latitude": "0", "id": "4266419858", "tags": "family wedding leicadlux4 tcdavis"}, {"datetaken": "2010-01-09 12:55:35", "license": "3", "title": "Jordan", "text": "", "album_id": "72157623064224327", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4265674513_e35d5bf510_o.jpg", "secret": "6fdae70f0c", "media": "photo", "latitude": "0", "id": "4265674513", "tags": "family wedding leicadlux4 tcdavis"}, {"datetaken": "2010-01-09 12:56:14", "license": "3", "title": "Steve", "text": "", "album_id": "72157623064224327", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4266421256_467a55257c_o.jpg", "secret": "fdb3031108", "media": "photo", "latitude": "0", "id": "4266421256", "tags": "family wedding leicadlux4 tcdavis"}, {"datetaken": "2010-01-09 13:31:53", "license": "3", "title": "winter optimism", "text": "", "album_id": "72157623064224327", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2792/4266421874_caa0f713d8_o.jpg", "secret": "06d8649c85", "media": "photo", "latitude": "0", "id": "4266421874", "tags": "family wedding leicadlux4 tcdavis"}, {"datetaken": "2010-01-09 14:11:01", "license": "3", "title": "through a glass lightly", "text": "", "album_id": "72157623064224327", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2694/4266422520_d216ba5ecd_o.jpg", "secret": "210d9a9d89", "media": "photo", "latitude": "0", "id": "4266422520", "tags": "family wedding leicadlux4 tcdavis"}, {"datetaken": "2010-01-09 15:30:34", "license": "3", "title": "brides' maids", "text": "", "album_id": "72157623064224327", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2680/4265673147_9cae2a65dd_o.jpg", "secret": "3643be5a73", "media": "photo", "latitude": "0", "id": "4265673147", "tags": "family wedding leicadlux4 tcdavis"}, {"datetaken": "2010-01-09 15:32:08", "license": "3", "title": "flower_children_and_Lacey", "text": "", "album_id": "72157623064224327", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4265671939_34262251a1_o.jpg", "secret": "027a187020", "media": "photo", "latitude": "0", "id": "4265671939", "tags": "family wedding leicadlux4 tcdavis"}, {"datetaken": "2010-01-09 16:16:06", "license": "3", "title": "up_the_aisle", "text": "", "album_id": "72157623064224327", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4266417646_f103f709dd_o.jpg", "secret": "3f7575f9a4", "media": "photo", "latitude": "0", "id": "4266417646", "tags": "family wedding leicadlux4 tcdavis"}, {"datetaken": "2010-01-09 17:38:55", "license": "3", "title": "newly weds", "text": "", "album_id": "72157623064224327", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4266423200_8d59427df4_o.jpg", "secret": "d639883fd4", "media": "photo", "latitude": "0", "id": "4266423200", "tags": "family wedding leicadlux4 tcdavis"}, {"datetaken": "2010-01-09 18:04:02", "license": "3", "title": "wedding dinner", "text": "", "album_id": "72157623064224327", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2612/4266423330_01e5b27e0c_o.jpg", "secret": "7c5366c45a", "media": "photo", "latitude": "0", "id": "4266423330", "tags": "family wedding leicadlux4 tcdavis"}, {"datetaken": "2010-01-09 18:04:24", "license": "3", "title": "ever a grandma", "text": "", "album_id": "72157623064224327", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4265676855_db382e18cf_o.jpg", "secret": "795384700e", "media": "photo", "latitude": "0", "id": "4265676855", "tags": "family wedding leicadlux4 tcdavis"}, {"datetaken": "2010-01-09 19:55:00", "license": "3", "title": "dancing", "text": "", "album_id": "72157623064224327", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4265671393_f810a5b908_o.jpg", "secret": "c6f208633f", "media": "photo", "latitude": "0", "id": "4265671393", "tags": "family wedding leicadlux4 tcdavis"}, {"datetaken": "2010-01-10 10:23:25", "license": "3", "title": "train view", "text": "", "album_id": "72157623064224327", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/4266424162_0d3285006c_o.jpg", "secret": "0fefc4d01e", "media": "photo", "latitude": "0", "id": "4266424162", "tags": "family wedding leicadlux4 tcdavis"}, {"datetaken": "2010-01-25 22:37:28", "license": "1", "title": "img077", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4303978626_bc15cfb236_o.jpg", "secret": "b3c735aca2", "media": "photo", "latitude": "0", "id": "4303978626", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:38:13", "license": "1", "title": "img076", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4303978492_96a1d533ca_o.jpg", "secret": "0a562dee40", "media": "photo", "latitude": "0", "id": "4303978492", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:38:45", "license": "1", "title": "img075", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2757/4303233519_bd24f33388_o.jpg", "secret": "4207dcb8ef", "media": "photo", "latitude": "0", "id": "4303233519", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:39:34", "license": "1", "title": "img073", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2782/4303233127_7c7d04674f_o.jpg", "secret": "5a1e7c3eb1", "media": "photo", "latitude": "0", "id": "4303233127", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:40:21", "license": "1", "title": "img066", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4303976558_5773f79ba1_o.jpg", "secret": "e285784c78", "media": "photo", "latitude": "0", "id": "4303976558", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:41:18", "license": "1", "title": "img063", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4303231049_d058edc8bb_o.jpg", "secret": "9b2bb18bc8", "media": "photo", "latitude": "0", "id": "4303231049", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:44:01", "license": "1", "title": "img062", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2684/4303975766_747a6fda4f_o.jpg", "secret": "9ae596f01c", "media": "photo", "latitude": "0", "id": "4303975766", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:44:48", "license": "1", "title": "img061", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4303975652_602dda95f1_o.jpg", "secret": "663c3e021a", "media": "photo", "latitude": "0", "id": "4303975652", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:45:32", "license": "1", "title": "img058", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4303975142_2317b0e421_o.jpg", "secret": "c455592d3e", "media": "photo", "latitude": "0", "id": "4303975142", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:46:07", "license": "1", "title": "img049", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4303228675_7a083d684c_o.jpg", "secret": "5f961e584b", "media": "photo", "latitude": "0", "id": "4303228675", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:46:34", "license": "1", "title": "img078", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4303233973_7f7e9e4929_o.jpg", "secret": "2a6bc749b7", "media": "photo", "latitude": "0", "id": "4303233973", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:51:03", "license": "1", "title": "img050", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2684/4303973798_d782b429e7_o.jpg", "secret": "f423dfb07e", "media": "photo", "latitude": "0", "id": "4303973798", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:51:08", "license": "1", "title": "img053", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4303974038_1229a5086f_o.jpg", "secret": "f58a98af0a", "media": "photo", "latitude": "0", "id": "4303974038", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:51:16", "license": "1", "title": "img054", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4303974312_fe24aa1696_o.jpg", "secret": "d60dd459d6", "media": "photo", "latitude": "0", "id": "4303974312", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:51:25", "license": "1", "title": "img056", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4303229733_0e3f40588e_o.jpg", "secret": "4a5f49a2e6", "media": "photo", "latitude": "0", "id": "4303229733", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:51:35", "license": "1", "title": "img057", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4303230079_cd7dae5ce3_o.jpg", "secret": "3e64b0f969", "media": "photo", "latitude": "0", "id": "4303230079", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:51:49", "license": "1", "title": "img059", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4303975496_01ab538c29_o.jpg", "secret": "4cac6cded9", "media": "photo", "latitude": "0", "id": "4303975496", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:52:07", "license": "1", "title": "img064", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4303231247_80fe926238_o.jpg", "secret": "dd08830ef4", "media": "photo", "latitude": "0", "id": "4303231247", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:52:14", "license": "1", "title": "img065", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4303976396_4567abcd6d_o.jpg", "secret": "3038b175b3", "media": "photo", "latitude": "0", "id": "4303976396", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:52:25", "license": "1", "title": "img067", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4303231885_51b262ac43_o.jpg", "secret": "2b9460408e", "media": "photo", "latitude": "0", "id": "4303231885", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:52:32", "license": "1", "title": "img068", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4303232149_4d70b55b54_o.jpg", "secret": "0788cb3b5b", "media": "photo", "latitude": "0", "id": "4303232149", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:52:43", "license": "1", "title": "img071", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2777/4303232635_caa7d768de_o.jpg", "secret": "e9f2fb8aa0", "media": "photo", "latitude": "0", "id": "4303232635", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:52:51", "license": "1", "title": "img072", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4303977710_8ee0701990_o.jpg", "secret": "01f2d8c449", "media": "photo", "latitude": "0", "id": "4303977710", "tags": "leica mp 7elements"}, {"datetaken": "2010-01-25 22:53:06", "license": "1", "title": "img074", "text": "", "album_id": "72157623281358480", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4303978218_ce0760eda9_o.jpg", "secret": "734c31d49e", "media": "photo", "latitude": "0", "id": "4303978218", "tags": "leica mp 7elements"}, {"datetaken": "2004-08-28 06:13:46", "license": "1", "title": "04082806", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/278684_ae0d8a1b51_o.jpg", "secret": "ae0d8a1b51", "media": "photo", "latitude": "0", "id": "278684", "tags": "cameraphone moblog wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 06:14:48", "license": "1", "title": "04082807", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/278688_1b720949c4_o.jpg", "secret": "1b720949c4", "media": "photo", "latitude": "0", "id": "278688", "tags": "cameraphone moblog wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 06:57:24", "license": "1", "title": "04082808", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/278782_8057be9010_o.jpg", "secret": "8057be9010", "media": "photo", "latitude": "0", "id": "278782", "tags": "cameraphone wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 06:58:34", "license": "1", "title": "04082811", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/278787_7410ab7008_o.jpg", "secret": "7410ab7008", "media": "photo", "latitude": "0", "id": "278787", "tags": "cameraphone moblog wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 06:59:20", "license": "1", "title": "04082813", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/278796_2a48d76a7a_o.jpg", "secret": "2a48d76a7a", "media": "photo", "latitude": "0", "id": "278796", "tags": "cameraphone wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 07:00:39", "license": "1", "title": "04082814", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/278802_cd0a58abd2_o.jpg", "secret": "cd0a58abd2", "media": "photo", "latitude": "0", "id": "278802", "tags": "cameraphone moblog wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 07:34:52", "license": "1", "title": "04082815", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/278920_1c3d4c21a3_o.jpg", "secret": "1c3d4c21a3", "media": "photo", "latitude": "0", "id": "278920", "tags": "cameraphone moblog wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 07:41:31", "license": "1", "title": "04082817", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/278953_1a79040e84_o.jpg", "secret": "1a79040e84", "media": "photo", "latitude": "0", "id": "278953", "tags": "cameraphone moblog wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 07:44:52", "license": "1", "title": "04082818", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/278978_77fe5eb7cf_o.jpg", "secret": "77fe5eb7cf", "media": "photo", "latitude": "0", "id": "278978", "tags": "moblog wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 07:56:36", "license": "1", "title": "04082819", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/279040_303ce6ee1c_o.jpg", "secret": "303ce6ee1c", "media": "photo", "latitude": "0", "id": "279040", "tags": "cameraphone moblog wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 08:04:04", "license": "1", "title": "04082820", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/279092_7cacd62f1c_o.jpg", "secret": "7cacd62f1c", "media": "photo", "latitude": "0", "id": "279092", "tags": "cameraphone moblog v\u00e4ster\u00e5s sweden"}, {"datetaken": "2004-08-28 08:05:30", "license": "1", "title": "04082816", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/279102_020858fb3f_o.jpg", "secret": "020858fb3f", "media": "photo", "latitude": "0", "id": "279102", "tags": "moblog wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 09:03:09", "license": "1", "title": "04082822", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/279432_8bd32c9273_o.jpg", "secret": "8bd32c9273", "media": "photo", "latitude": "0", "id": "279432", "tags": "cameraphone moblog wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 09:05:32", "license": "1", "title": "04082825", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/279449_6b6c16b8b7_o.jpg", "secret": "6b6c16b8b7", "media": "photo", "latitude": "0", "id": "279449", "tags": "cameraphone moblog wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 11:34:05", "license": "1", "title": "04082836", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/280327_1f47408f80_o.jpg", "secret": "1f47408f80", "media": "photo", "latitude": "0", "id": "280327", "tags": "wedding eskilstuna sweden me nico"}, {"datetaken": "2004-08-28 11:36:58", "license": "1", "title": "04082828", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/280365_1a14825ff2_o.jpg", "secret": "1a14825ff2", "media": "photo", "latitude": "0", "id": "280365", "tags": "moblog wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 11:38:07", "license": "1", "title": "04082827", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/280370_cf1700ea93_o.jpg", "secret": "cf1700ea93", "media": "photo", "latitude": "0", "id": "280370", "tags": "wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 11:39:40", "license": "1", "title": "04082826", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/280386_8f025c9d80_o.jpg", "secret": "8f025c9d80", "media": "photo", "latitude": "0", "id": "280386", "tags": "wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 11:49:16", "license": "1", "title": "04082846", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/280457_42b1cf4a76_o.jpg", "secret": "42b1cf4a76", "media": "photo", "latitude": "0", "id": "280457", "tags": "wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 11:51:23", "license": "1", "title": "04082847", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/280469_31413bb772_o.jpg", "secret": "31413bb772", "media": "photo", "latitude": "0", "id": "280469", "tags": "wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 11:53:05", "license": "1", "title": "04082848", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/280474_2b4aca1b50_o.jpg", "secret": "2b4aca1b50", "media": "photo", "latitude": "0", "id": "280474", "tags": "wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 11:56:37", "license": "1", "title": "04082849", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/280492_951bcc696c_o.jpg", "secret": "951bcc696c", "media": "photo", "latitude": "0", "id": "280492", "tags": "wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 11:57:56", "license": "1", "title": "04082850", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/280500_d43bc7f6c7_o.jpg", "secret": "d43bc7f6c7", "media": "photo", "latitude": "0", "id": "280500", "tags": "wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 11:59:24", "license": "1", "title": "04082851", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/280502_8ac3c3bf3d_o.jpg", "secret": "8ac3c3bf3d", "media": "photo", "latitude": "0", "id": "280502", "tags": "wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 12:05:39", "license": "1", "title": "04082852", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/280536_de609e76eb_o.jpg", "secret": "de609e76eb", "media": "photo", "latitude": "0", "id": "280536", "tags": "wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 12:38:51", "license": "1", "title": "04082853", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/280799_9107949c62_o.jpg", "secret": "9107949c62", "media": "photo", "latitude": "0", "id": "280799", "tags": "wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 14:08:27", "license": "1", "title": "04082855", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/281306_809e40593e_o.jpg", "secret": "809e40593e", "media": "photo", "latitude": "0", "id": "281306", "tags": "cameraphone moblog wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 14:13:53", "license": "1", "title": "04082854", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/281339_78bb0313af_o.jpg", "secret": "78bb0313af", "media": "photo", "latitude": "0", "id": "281339", "tags": "cameraphone moblog wedding eskilstuna sweden"}, {"datetaken": "2004-08-28 14:16:34", "license": "1", "title": "04082856", "text": "", "album_id": "6096", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/281349_011e075864_o.jpg", "secret": "011e075864", "media": "photo", "latitude": "0", "id": "281349", "tags": "cameraphone moblog wedding eskilstuna sweden"}, {"datetaken": "2004-08-06 13:01:02", "license": "1", "title": "Man shoes", "text": "", "album_id": "28374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/525366_1545517107_o.jpg", "secret": "1545517107", "media": "photo", "latitude": "0", "id": "525366", "tags": "shoes"}, {"datetaken": "2004-08-06 13:58:04", "license": "1", "title": "bridesmaids", "text": "", "album_id": "28374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/525688_62e34c5ee3_o.jpg", "secret": "62e34c5ee3", "media": "photo", "latitude": "0", "id": "525688", "tags": ""}, {"datetaken": "2004-08-06 14:01:57", "license": "1", "title": "steve and llinos", "text": "", "album_id": "28374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/525692_4d5e7ac77d_o.jpg", "secret": "4d5e7ac77d", "media": "photo", "latitude": "0", "id": "525692", "tags": ""}, {"datetaken": "2004-08-06 14:08:14", "license": "1", "title": "mr and mrs prelle", "text": "", "album_id": "28374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/525695_e22f86544d_o.jpg", "secret": "e22f86544d", "media": "photo", "latitude": "0", "id": "525695", "tags": ""}, {"datetaken": "2004-08-06 14:09:05", "license": "1", "title": "me and the wife", "text": "", "album_id": "28374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/525691_a488df26c9_o.jpg", "secret": "a488df26c9", "media": "photo", "latitude": "0", "id": "525691", "tags": "me lissy"}, {"datetaken": "2004-08-06 14:12:00", "license": "1", "title": "mr and mrs prelle again", "text": "", "album_id": "28374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/525698_623cfa3241_o.jpg", "secret": "623cfa3241", "media": "photo", "latitude": "0", "id": "525698", "tags": "wedding jane charlie"}, {"datetaken": "2004-08-06 14:15:15", "license": "1", "title": "the car", "text": "", "album_id": "28374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/525923_0a190eecaf_o.jpg", "secret": "0a190eecaf", "media": "photo", "latitude": "0", "id": "525923", "tags": ""}, {"datetaken": "2004-08-06 14:15:25", "license": "1", "title": "Jane and Charlie", "text": "", "album_id": "28374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/525918_c4ca497d6c_o.jpg", "secret": "c4ca497d6c", "media": "photo", "latitude": "0", "id": "525918", "tags": "wedding jane charlie"}, {"datetaken": "2004-08-06 14:23:14", "license": "1", "title": "Mr Elkin", "text": "", "album_id": "28374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/525921_be54089426_o.jpg", "secret": "be54089426", "media": "photo", "latitude": "0", "id": "525921", "tags": ""}, {"datetaken": "2004-08-06 14:24:46", "license": "1", "title": "The walk to the reception (part I)", "text": "", "album_id": "28374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/525927_d08d762ccd_o.jpg", "secret": "d08d762ccd", "media": "photo", "latitude": "0", "id": "525927", "tags": "steve carl lissy mattw"}, {"datetaken": "2004-08-06 17:24:50", "license": "1", "title": "Mmmm lady shoes", "text": "", "album_id": "28374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/525364_8034b107f5_o.jpg", "secret": "8034b107f5", "media": "photo", "latitude": "0", "id": "525364", "tags": "shoes lissy"}, {"datetaken": "2004-10-26 20:55:17", "license": "1", "title": "half_img_0054", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083352_3da17994ae_o.jpg", "secret": "3da17994ae", "media": "photo", "latitude": "41.918002", "id": "1083352", "tags": "2004 aaron cynthia wedding october"}, {"datetaken": "2004-10-26 20:55:17", "license": "1", "title": "half_img_0056", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083354_4181c4b4d2_o.jpg", "secret": "4181c4b4d2", "media": "photo", "latitude": "41.918002", "id": "1083354", "tags": "2004 aaron cynthia wedding october"}, {"datetaken": "2004-10-26 20:55:17", "license": "1", "title": "half_img_0055", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083355_dc43014d6e_o.jpg", "secret": "dc43014d6e", "media": "photo", "latitude": "41.918002", "id": "1083355", "tags": "2004 aaron cynthia wedding october"}, {"datetaken": "2004-10-26 20:55:17", "license": "1", "title": "half_img_0047", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083353_5d41623079_o.jpg", "secret": "5d41623079", "media": "photo", "latitude": "41.918002", "id": "1083353", "tags": "2004 aaron cynthia wedding october"}, {"datetaken": "2004-10-26 20:55:17", "license": "1", "title": "half_img_0048", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083358_5252327878_o.jpg", "secret": "5252327878", "media": "photo", "latitude": "41.918002", "id": "1083358", "tags": "2004 aaron cynthia wedding october"}, {"datetaken": "2004-10-26 20:55:17", "license": "1", "title": "half_img_0038", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083359_43e29aa96b_o.jpg", "secret": "43e29aa96b", "media": "photo", "latitude": "41.918002", "id": "1083359", "tags": "2004 aaron cynthia wedding october"}, {"datetaken": "2004-10-26 20:56:44", "license": "1", "title": "half_img_0036", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083383_8d8965feef_o.jpg", "secret": "8d8965feef", "media": "photo", "latitude": "41.918002", "id": "1083383", "tags": "aaron cynthia wedding detroit 2004"}, {"datetaken": "2004-10-26 20:56:44", "license": "1", "title": "", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083382_95e18757c8_o.jpg", "secret": "95e18757c8", "media": "photo", "latitude": "41.918002", "id": "1083382", "tags": "aaron cynthia wedding detroit 2004"}, {"datetaken": "2004-10-26 20:56:44", "license": "1", "title": "half_img_0031", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083381_fff22f2c57_o.jpg", "secret": "fff22f2c57", "media": "photo", "latitude": "41.918002", "id": "1083381", "tags": "aaron cynthia wedding detroit 2004"}, {"datetaken": "2004-10-26 20:56:44", "license": "1", "title": "half_img_0030", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083384_a389b77e7f_o.jpg", "secret": "a389b77e7f", "media": "photo", "latitude": "41.918002", "id": "1083384", "tags": "aaron cynthia wedding detroit 2004"}, {"datetaken": "2004-10-26 20:56:44", "license": "1", "title": "half_img_0029", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083387_4bb8149701_o.jpg", "secret": "4bb8149701", "media": "photo", "latitude": "41.918002", "id": "1083387", "tags": "aaron cynthia wedding detroit 2004"}, {"datetaken": "2004-10-26 20:56:44", "license": "1", "title": "half_img_0032", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083388_769ddfe71e_o.jpg", "secret": "769ddfe71e", "media": "photo", "latitude": "41.918002", "id": "1083388", "tags": "aaron cynthia wedding detroit 2004"}, {"datetaken": "2004-10-26 20:58:23", "license": "1", "title": "half_img_0023", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083403_1014c2023c_o.jpg", "secret": "1014c2023c", "media": "photo", "latitude": "41.918002", "id": "1083403", "tags": "2004 aaron cynthia wedding october"}, {"datetaken": "2004-10-26 20:58:23", "license": "1", "title": "half_img_0022", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083405_7277a378f3_o.jpg", "secret": "7277a378f3", "media": "photo", "latitude": "41.918002", "id": "1083405", "tags": "2004 aaron cynthia wedding october"}, {"datetaken": "2004-10-26 20:58:23", "license": "1", "title": "half_img_0027", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083404_4f2f4e8950_o.jpg", "secret": "4f2f4e8950", "media": "photo", "latitude": "41.918002", "id": "1083404", "tags": "2004 aaron cynthia wedding october"}, {"datetaken": "2004-10-26 20:58:23", "license": "1", "title": "half_img_0026", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083406_f2d230247d_o.jpg", "secret": "f2d230247d", "media": "photo", "latitude": "41.918002", "id": "1083406", "tags": "2004 aaron cynthia wedding october"}, {"datetaken": "2004-10-26 20:58:23", "license": "1", "title": "half_img_0021", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083407_1513b685fa_o.jpg", "secret": "1513b685fa", "media": "photo", "latitude": "41.918002", "id": "1083407", "tags": "2004 aaron cynthia wedding october"}, {"datetaken": "2004-10-26 20:58:23", "license": "1", "title": "half_img_0019", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083408_126c26825d_o.jpg", "secret": "126c26825d", "media": "photo", "latitude": "41.918002", "id": "1083408", "tags": "2004 aaron cynthia wedding october"}, {"datetaken": "2004-10-26 21:00:19", "license": "1", "title": "half_img_0015", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083426_ce3ddb38ca_o.jpg", "secret": "ce3ddb38ca", "media": "photo", "latitude": "41.918002", "id": "1083426", "tags": "wedding 2004 october aaron laurie cynthia jason0x21"}, {"datetaken": "2004-10-26 21:00:19", "license": "1", "title": "half_img_0016", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083427_abc6197615_o.jpg", "secret": "abc6197615", "media": "photo", "latitude": "41.918002", "id": "1083427", "tags": "2004 october aaron cynthia wedding"}, {"datetaken": "2004-10-26 21:00:19", "license": "1", "title": "half_img_0017", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083424_b5a4647eb1_o.jpg", "secret": "b5a4647eb1", "media": "photo", "latitude": "41.918002", "id": "1083424", "tags": "2004 october aaron cynthia wedding"}, {"datetaken": "2004-10-26 21:00:19", "license": "1", "title": "half_img_0018", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083425_23f28e1584_o.jpg", "secret": "23f28e1584", "media": "photo", "latitude": "41.918002", "id": "1083425", "tags": "2004 october aaron cynthia wedding"}, {"datetaken": "2004-10-26 21:00:19", "license": "1", "title": "half_img_0028", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083422_5af1241906_o.jpg", "secret": "5af1241906", "media": "photo", "latitude": "41.918002", "id": "1083422", "tags": "2004 october aaron cynthia wedding"}, {"datetaken": "2004-10-26 21:01:43", "license": "1", "title": "half_img_0012", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083452_c00c415cf3_o.jpg", "secret": "c00c415cf3", "media": "photo", "latitude": "41.918002", "id": "1083452", "tags": "2004 aaron cynthia wedding october"}, {"datetaken": "2004-10-26 21:01:43", "license": "1", "title": "half_img_0011", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083453_965ffc0d3b_o.jpg", "secret": "965ffc0d3b", "media": "photo", "latitude": "41.918002", "id": "1083453", "tags": "2004 aaron cynthia wedding october"}, {"datetaken": "2004-10-26 21:01:43", "license": "1", "title": "half_img_0010", "text": "", "album_id": "27798", "longitude": "-83.404855", "url_o": "https://farm1.staticflickr.com/1/1083454_0e03ecc072_o.jpg", "secret": "0e03ecc072", "media": "photo", "latitude": "41.918002", "id": "1083454", "tags": "2004 aaron cynthia wedding october"}, {"datetaken": "2004-11-05 16:00:32", "license": "1", "title": "Megan", "text": "", "album_id": "33936", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1327258_005786b1c8_o.jpg", "secret": "005786b1c8", "media": "photo", "latitude": "0", "id": "1327258", "tags": "wedding craig megan"}, {"datetaken": "2004-11-05 16:05:51", "license": "1", "title": "Bethany & Karen", "text": "", "album_id": "33936", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1326821_7c46a36c81_o.jpg", "secret": "7c46a36c81", "media": "photo", "latitude": "0", "id": "1326821", "tags": "wedding craig megan"}, {"datetaken": "2004-11-05 16:06:10", "license": "1", "title": "Dan, Danielle, and Joel", "text": "", "album_id": "33936", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1327259_c03fe0b29a_o.jpg", "secret": "c03fe0b29a", "media": "photo", "latitude": "0", "id": "1327259", "tags": "wedding craig megan"}, {"datetaken": "2004-11-05 16:07:00", "license": "1", "title": "Craig", "text": "", "album_id": "33936", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1326820_d42e003cef_o.jpg", "secret": "d42e003cef", "media": "photo", "latitude": "0", "id": "1326820", "tags": "wedding craig megan"}, {"datetaken": "2004-11-05 16:09:54", "license": "1", "title": "The Bride", "text": "", "album_id": "33936", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1327257_e6587a259d_o.jpg", "secret": "e6587a259d", "media": "photo", "latitude": "0", "id": "1327257", "tags": "wedding craig megan"}, {"datetaken": "2004-11-05 16:13:02", "license": "1", "title": "Craig, Megan, James, Stephen, Dustin, Timothy and Victoria", "text": "", "album_id": "33936", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1326824_cfaa08cf3e_o.jpg", "secret": "cfaa08cf3e", "media": "photo", "latitude": "0", "id": "1326824", "tags": "wedding craig megan"}, {"datetaken": "2004-11-05 16:23:48", "license": "1", "title": "Craig & Megan", "text": "", "album_id": "33936", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1326830_a50a7d0523_o.jpg", "secret": "a50a7d0523", "media": "photo", "latitude": "0", "id": "1326830", "tags": "wedding craig megan"}, {"datetaken": "2004-11-05 16:25:13", "license": "1", "title": "Kiss", "text": "", "album_id": "33936", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1326825_e345936ada_o.jpg", "secret": "e345936ada", "media": "photo", "latitude": "0", "id": "1326825", "tags": "wedding craig megan"}, {"datetaken": "2004-11-05 16:35:08", "license": "1", "title": "Craig, Megan, Jason & Jean", "text": "", "album_id": "33936", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1327263_f9a6a9c5d0_o.jpg", "secret": "f9a6a9c5d0", "media": "photo", "latitude": "0", "id": "1327263", "tags": "wedding craig megan"}, {"datetaken": "2004-11-05 16:38:22", "license": "1", "title": "Smidt Family", "text": "", "album_id": "33936", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1326826_3dcfc1a5d8_o.jpg", "secret": "3dcfc1a5d8", "media": "photo", "latitude": "0", "id": "1326826", "tags": "wedding craig megan"}, {"datetaken": "2010-07-23 07:36:43", "license": "1", "title": "flowers, friends & wedding", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4829065243_d275398833_o.jpg", "secret": "c4e8e9a28e", "media": "photo", "latitude": "0", "id": "4829065243", "tags": "wedding 2010 rodandalicia rodandaliciaswedding aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 12:07:33", "license": "1", "title": "flowers, friends & wedding", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4829669028_2675f2f1c9_o.jpg", "secret": "a538b83b4f", "media": "photo", "latitude": "0", "id": "4829669028", "tags": "wedding 2010 rodandalicia rodandaliciaswedding aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 12:09:47", "license": "1", "title": "flowers, friends & wedding", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4829666410_7029de44a7_o.jpg", "secret": "7757a5bd37", "media": "photo", "latitude": "0", "id": "4829666410", "tags": "wedding 2010 rodandalicia rodandaliciaswedding aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 12:09:53", "license": "1", "title": "flowers, friends & wedding", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4829053319_b9ce40fe96_o.jpg", "secret": "8f810be231", "media": "photo", "latitude": "0", "id": "4829053319", "tags": "wedding 2010 rodandalicia rodandaliciaswedding aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 12:09:59", "license": "1", "title": "flowers, friends & wedding", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4829661816_17ab58ce4a_o.jpg", "secret": "6ce9d60e27", "media": "photo", "latitude": "0", "id": "4829661816", "tags": "flowers wedding maine 2010 alphabetgarden rodandalicia rodandaliciaswedding aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 12:10:35", "license": "1", "title": "flowers, friends & wedding", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4829659504_9ff0750107_o.jpg", "secret": "1a683858ae", "media": "photo", "latitude": "0", "id": "4829659504", "tags": "flowers wedding maine 2010 alphabetgarden rodandalicia rodandaliciaswedding aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 12:11:45", "license": "1", "title": "flowers, friends & wedding", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4829047049_0a81a3f294_o.jpg", "secret": "e4049a1327", "media": "photo", "latitude": "0", "id": "4829047049", "tags": "flowers wedding maine 2010 alphabetgarden rodandalicia rodandaliciaswedding aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 12:13:34", "license": "1", "title": "flowers, friends & wedding", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4829044987_809c096353_o.jpg", "secret": "ff5336ff31", "media": "photo", "latitude": "0", "id": "4829044987", "tags": "wedding 2010 rodandalicia rodandaliciaswedding aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 12:13:46", "license": "1", "title": "flowers, friends & wedding", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4829653468_7d0446bfb7_o.jpg", "secret": "ee5520724e", "media": "photo", "latitude": "0", "id": "4829653468", "tags": "flowers wedding maine 2010 alphabetgarden rodandalicia rodandaliciaswedding aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 12:15:29", "license": "1", "title": "flowers, friends & wedding", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4829648700_a2d663b12a_o.jpg", "secret": "42b1c2450e", "media": "photo", "latitude": "0", "id": "4829648700", "tags": "wedding 2010 rodandalicia rodandaliciaswedding aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 12:16:14", "license": "1", "title": "flowers, friends & wedding", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4829041103_86c1874c24_o.jpg", "secret": "5aed2d068a", "media": "photo", "latitude": "0", "id": "4829041103", "tags": "wedding 2010 rodandalicia rodandaliciaswedding aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 13:40:39", "license": "1", "title": "ceremony", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4858588950_72ff1f6c90_o.jpg", "secret": "57f34733a7", "media": "photo", "latitude": "0", "id": "4858588950", "tags": "2010 rodandalicia aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 13:43:08", "license": "1", "title": "ceremony2", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4857970801_dbf34dd65e_o.jpg", "secret": "418dfcde24", "media": "photo", "latitude": "0", "id": "4857970801", "tags": "2010 rodandalicia aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 13:44:47", "license": "1", "title": "ceremony4", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4857973581_0c9f5ef20c_o.jpg", "secret": "0a747e0e71", "media": "photo", "latitude": "0", "id": "4857973581", "tags": "2010 rodandalicia aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 13:50:03", "license": "1", "title": "ceremony3", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4857971851_f94854c9f0_o.jpg", "secret": "8ce540f7b5", "media": "photo", "latitude": "0", "id": "4857971851", "tags": "2010 rodandalicia aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 13:56:09", "license": "1", "title": "ceremony6", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4857976981_5870956582_o.jpg", "secret": "5829652b98", "media": "photo", "latitude": "0", "id": "4857976981", "tags": "2010 rodandalicia aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 13:57:11", "license": "1", "title": "ceremony5", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4858594900_c45b2fc5c9_o.jpg", "secret": "df88ce3e74", "media": "photo", "latitude": "0", "id": "4858594900", "tags": "2010 rodandalicia aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 13:57:20", "license": "1", "title": "ceremony7", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4857978167_807ca7c539_o.jpg", "secret": "0fbab4a715", "media": "photo", "latitude": "0", "id": "4857978167", "tags": "2010 rodandalicia aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 13:58:52", "license": "1", "title": "flowers, friends & wedding", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4829988607_6d51419065_o.jpg", "secret": "468246c25a", "media": "photo", "latitude": "0", "id": "4829988607", "tags": "wedding 2010 rodandalicia rodandaliciaswedding aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 14:07:42", "license": "1", "title": "!!!", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4858587782_ee6bbf4189_o.jpg", "secret": "5633c7af92", "media": "photo", "latitude": "0", "id": "4858587782", "tags": "2010 rodandalicia aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 14:08:58", "license": "1", "title": "!!", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4857966467_5571610a4f_o.jpg", "secret": "bec66e71ea", "media": "photo", "latitude": "0", "id": "4857966467", "tags": "2010 rodandalicia aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 14:09:43", "license": "1", "title": "!", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4857964453_10e4201de6_o.jpg", "secret": "106846c539", "media": "photo", "latitude": "0", "id": "4857964453", "tags": "2010 rodandalicia aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 14:49:03", "license": "1", "title": "!sara", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4858582468_9d5d6ff182_o.jpg", "secret": "806065f084", "media": "photo", "latitude": "0", "id": "4858582468", "tags": "2010 rodandalicia aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 14:51:17", "license": "1", "title": "piano", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4858580572_a872e81b7a_o.jpg", "secret": "9bc81044b5", "media": "photo", "latitude": "0", "id": "4858580572", "tags": "2010 rodandalicia aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 14:52:20", "license": "1", "title": "dinnertables", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4858579000_64f038a91e_o.jpg", "secret": "e092ce73ca", "media": "photo", "latitude": "0", "id": "4858579000", "tags": "2010 rodandalicia aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 17:03:12", "license": "1", "title": "ann+alicia4", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4858576954_fe94dd9ae7_o.jpg", "secret": "9559815090", "media": "photo", "latitude": "0", "id": "4858576954", "tags": "2010 rodandalicia aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 17:03:18", "license": "1", "title": "ann+alicia3", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4858574090_ae9b0f658f_o.jpg", "secret": "51ea6800ba", "media": "photo", "latitude": "0", "id": "4858574090", "tags": "2010 rodandalicia aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 17:03:23", "license": "1", "title": "ann+alicia2", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4858570692_97233d3b28_o.jpg", "secret": "3d8e9a0940", "media": "photo", "latitude": "0", "id": "4858570692", "tags": "2010 rodandalicia aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-07-24 17:03:28", "license": "1", "title": "ann+alicia", "text": "", "album_id": "72157624460721459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4857948171_0c2972325e_o.jpg", "secret": "f93262cd11", "media": "photo", "latitude": "0", "id": "4857948171", "tags": "2010 rodandalicia aliciaandrod aliciaandrodwedding rodandaliciawedding rodandaliciawedding2010"}, {"datetaken": "2010-06-26 05:07:38", "license": "3", "title": "Jacobsen and I on the way to the wedding", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4858488050_f88f910bd0_o.jpg", "secret": "d0ccb3910e", "media": "photo", "latitude": "0", "id": "4858488050", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 05:43:34", "license": "3", "title": "Raja!", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4858491466_39c5c8cff9_o.jpg", "secret": "2d34f2b71e", "media": "photo", "latitude": "0", "id": "4858491466", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 05:43:55", "license": "3", "title": "Boris doing his duty", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4857874089_125843d7c2_o.jpg", "secret": "81af2f8e82", "media": "photo", "latitude": "0", "id": "4857874089", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 05:44:39", "license": "3", "title": "Neal, pretty as a picture", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4858496232_6fe9fddbf2_o.jpg", "secret": "b8ce395824", "media": "photo", "latitude": "0", "id": "4858496232", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 05:48:59", "license": "3", "title": "The wedding pavillion by the laguna", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4857879309_a0f519034c_o.jpg", "secret": "381bfb182b", "media": "photo", "latitude": "0", "id": "4857879309", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 05:55:19", "license": "3", "title": "Me and Jules pre-wedding", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4114/4857881597_4e635fd720_o.jpg", "secret": "de7798e045", "media": "photo", "latitude": "0", "id": "4857881597", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 05:59:39", "license": "3", "title": "Loz & Pete's marriage certificate", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4858504078_ca7f6e2e5b_o.jpg", "secret": "bd44f4cce7", "media": "photo", "latitude": "0", "id": "4858504078", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 06:07:04", "license": "3", "title": "Pete's bro serenades us", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4858505794_15135a02ff_o.jpg", "secret": "72ed243875", "media": "photo", "latitude": "0", "id": "4858505794", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 06:07:28", "license": "3", "title": "Jacobsen looks vexed", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4858508358_8c5ace8927_o.jpg", "secret": "83650986a7", "media": "photo", "latitude": "0", "id": "4858508358", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 06:08:12", "license": "3", "title": "The bride, groom and one son arrive", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4857890909_a9395c15b8_o.jpg", "secret": "975a266ba1", "media": "photo", "latitude": "0", "id": "4857890909", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 06:25:48", "license": "3", "title": "Signing the register", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4858513572_0dc458fbd1_o.jpg", "secret": "384c0db5fb", "media": "photo", "latitude": "0", "id": "4858513572", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 06:25:58", "license": "3", "title": "Boris, Anna and Neal in attendance", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4858515836_c7d659232e_o.jpg", "secret": "d234287da8", "media": "photo", "latitude": "0", "id": "4858515836", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 06:49:27", "license": "3", "title": "Loz's bouquet", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4858517930_4a896c3eb5_o.jpg", "secret": "0046956291", "media": "photo", "latitude": "0", "id": "4858517930", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 06:49:45", "license": "3", "title": "Neal and Anna", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4857900307_c34507fbb8_o.jpg", "secret": "98c6ec9e08", "media": "photo", "latitude": "0", "id": "4857900307", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 07:06:42", "license": "3", "title": "The Lee family", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4857902989_62bb0d74ab_o.jpg", "secret": "bb8379de0e", "media": "photo", "latitude": "0", "id": "4857902989", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 07:11:17", "license": "3", "title": "The Dettori family", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4858526494_a818c7aa6e_o.jpg", "secret": "0977f7425c", "media": "photo", "latitude": "0", "id": "4858526494", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 07:15:02", "license": "3", "title": "Amazing clouds over the wedding pavillion", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4857909025_1681ce3a52_o.jpg", "secret": "d1b0073586", "media": "photo", "latitude": "0", "id": "4857909025", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 07:26:27", "license": "3", "title": "Crazy cloud formations", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4858531710_f9bedf3940_o.jpg", "secret": "a36c85b0ae", "media": "photo", "latitude": "0", "id": "4858531710", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 07:26:35", "license": "3", "title": "Ulrica looking glam", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4858533550_71f5381a59_o.jpg", "secret": "05e2ba10d4", "media": "photo", "latitude": "0", "id": "4858533550", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 07:37:25", "license": "3", "title": "Sirromet Wines logo", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4858535422_578426a329_o.jpg", "secret": "3892a5918b", "media": "photo", "latitude": "0", "id": "4858535422", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 08:09:05", "license": "3", "title": "Gareth, Ulrica and Pravs", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4857917277_41550b8c6d_o.jpg", "secret": "b9d48890fe", "media": "photo", "latitude": "0", "id": "4857917277", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 08:12:32", "license": "3", "title": "Watching sunset over Sirromet", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4858539124_514e54bba2_o.jpg", "secret": "57e76e3108", "media": "photo", "latitude": "0", "id": "4858539124", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 08:13:01", "license": "3", "title": "Sirromet sunset", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4858540900_ef7491b3b3_o.jpg", "secret": "0693d07802", "media": "photo", "latitude": "0", "id": "4858540900", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 08:35:30", "license": "3", "title": "Reception in the Wine cellar", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4858542958_a581e934b7_o.jpg", "secret": "bec0d27b3b", "media": "photo", "latitude": "0", "id": "4858542958", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 08:39:31", "license": "3", "title": "Loz & Pete's wedding cake", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4857924371_3f5b284687_o.jpg", "secret": "688c46e8e4", "media": "photo", "latitude": "0", "id": "4857924371", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-26 08:40:11", "license": "3", "title": "Loz & Pete's place settings", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4858546676_53ef66f1f6_o.jpg", "secret": "13db23462a", "media": "photo", "latitude": "0", "id": "4858546676", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-27 06:36:36", "license": "3", "title": "Sunday tea ceremony at the Lee's", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4858548766_d94a18e326_o.jpg", "secret": "32b348397f", "media": "photo", "latitude": "0", "id": "4858548766", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-27 06:38:55", "license": "3", "title": "Jasmine explains the Tea ceremony", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4857930415_663a294eea_o.jpg", "secret": "4d17418366", "media": "photo", "latitude": "0", "id": "4857930415", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-27 06:51:59", "license": "3", "title": "Pete and loz give tea to the Dettoris", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4857932283_0279d3a01d_o.jpg", "secret": "286eec30fc", "media": "photo", "latitude": "0", "id": "4857932283", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-06-27 07:08:27", "license": "3", "title": "Rasmus gives Loz her tea", "text": "", "album_id": "72157624523284401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4857934157_41a840ff62_o.jpg", "secret": "6e4a4f1198", "media": "photo", "latitude": "0", "id": "4857934157", "tags": "wedding australia brisbane lozandpete"}, {"datetaken": "2010-01-23 00:00:00", "license": "1", "title": "Giullianna e Jo\u00e3o", "text": "", "album_id": "72157623780545748", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4495759906_f2ec49276b_o.jpg", "secret": "96b9eb0942", "media": "photo", "latitude": "0", "id": "4495759906", "tags": "wedding brazil people fish eye brasil canon eos 50mm pessoa pessoas pics religion ceremony jo\u00e3opessoa igreja fotos 28 casamento rafael 18 8mm mago padre matrimonio jo\u00e3o paraiba alian\u00e7a passos 70200mm para\u00edba celebra\u00e7\u00e3o cas\u00f3rio cerim\u00f4nia xti 40d 400d cerim\u00f4niareligiosa rafaelpassos giulliannaejo\u00e3o giullianna"}, {"datetaken": "2010-01-23 00:00:01", "license": "1", "title": "Giullianna e Jo\u00e3o", "text": "", "album_id": "72157623780545748", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4495121183_eb7776b755_o.jpg", "secret": "2515f18bd3", "media": "photo", "latitude": "0", "id": "4495121183", "tags": "giulliannaejo\u00e3o giullianna jo\u00e3o wedding casamento cas\u00f3rio matrimonio alian\u00e7a celebra\u00e7\u00e3o igreja padre cerim\u00f4niareligiosa cerim\u00f4nia ceremony religion pessoas people pics fotos jo\u00e3opessoa pessoa paraiba para\u00edba brasil brazil canon 40d 400d eos xti 70200mm 28 50mm 18 8mm fish eye rafaelpassos rafael mago passos"}, {"datetaken": "2010-01-23 00:00:02", "license": "1", "title": "Giullianna e Jo\u00e3o", "text": "", "album_id": "72157623780545748", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4495760472_d2e26ebea5_o.jpg", "secret": "7faf72f371", "media": "photo", "latitude": "0", "id": "4495760472", "tags": "wedding brazil people fish eye brasil canon eos 50mm pessoa pessoas pics religion ceremony jo\u00e3opessoa igreja fotos 28 casamento rafael 18 8mm mago padre matrimonio jo\u00e3o paraiba alian\u00e7a passos 70200mm para\u00edba celebra\u00e7\u00e3o cas\u00f3rio cerim\u00f4nia xti 40d 400d cerim\u00f4niareligiosa rafaelpassos giulliannaejo\u00e3o giullianna"}, {"datetaken": "2010-01-23 00:00:03", "license": "1", "title": "Giullianna e Jo\u00e3o", "text": "", "album_id": "72157623780545748", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2747/4495121819_c9f93929f0_o.jpg", "secret": "20e17f316e", "media": "photo", "latitude": "0", "id": "4495121819", "tags": "wedding brazil people fish eye brasil canon eos 50mm pessoa pessoas pics religion ceremony jo\u00e3opessoa igreja fotos 28 casamento rafael 18 8mm mago padre matrimonio jo\u00e3o paraiba alian\u00e7a passos 70200mm para\u00edba celebra\u00e7\u00e3o cas\u00f3rio cerim\u00f4nia xti 40d 400d cerim\u00f4niareligiosa rafaelpassos giulliannaejo\u00e3o giullianna"}, {"datetaken": "2010-01-23 00:00:04", "license": "1", "title": "Giullianna e Jo\u00e3o", "text": "", "album_id": "72157623780545748", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4495122139_c1d32d7aa6_o.jpg", "secret": "49ef313277", "media": "photo", "latitude": "0", "id": "4495122139", "tags": "wedding brazil people fish eye brasil canon eos 50mm pessoa pessoas pics religion ceremony jo\u00e3opessoa igreja fotos 28 casamento rafael 18 8mm mago padre matrimonio jo\u00e3o paraiba alian\u00e7a passos 70200mm para\u00edba celebra\u00e7\u00e3o cas\u00f3rio cerim\u00f4nia xti 40d 400d cerim\u00f4niareligiosa rafaelpassos giulliannaejo\u00e3o giullianna"}, {"datetaken": "2010-01-23 00:00:05", "license": "1", "title": "Giullianna e Jo\u00e3o", "text": "", "album_id": "72157623780545748", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4495761552_21a05ffdb9_o.jpg", "secret": "4b96638fca", "media": "photo", "latitude": "0", "id": "4495761552", "tags": "wedding brazil people fish eye brasil canon eos 50mm pessoa pessoas pics religion ceremony jo\u00e3opessoa igreja fotos 28 casamento rafael 18 8mm mago padre matrimonio jo\u00e3o paraiba alian\u00e7a passos 70200mm para\u00edba celebra\u00e7\u00e3o cas\u00f3rio cerim\u00f4nia xti 40d 400d cerim\u00f4niareligiosa rafaelpassos giulliannaejo\u00e3o giullianna"}, {"datetaken": "2010-01-23 00:00:06", "license": "1", "title": "Giullianna e Jo\u00e3o", "text": "", "album_id": "72157623780545748", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4495761994_33344f627b_o.jpg", "secret": "576537a4bd", "media": "photo", "latitude": "0", "id": "4495761994", "tags": "wedding brazil people fish eye brasil canon eos 50mm pessoa pessoas pics religion ceremony jo\u00e3opessoa igreja fotos 28 casamento rafael 18 8mm mago padre matrimonio jo\u00e3o paraiba alian\u00e7a passos 70200mm para\u00edba celebra\u00e7\u00e3o cas\u00f3rio cerim\u00f4nia xti 40d 400d cerim\u00f4niareligiosa rafaelpassos giulliannaejo\u00e3o giullianna"}, {"datetaken": "2010-01-23 00:00:07", "license": "1", "title": "Giullianna e Jo\u00e3o", "text": "", "album_id": "72157623780545748", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2739/4495762252_a7ea5aba5b_o.jpg", "secret": "3edfcb2883", "media": "photo", "latitude": "0", "id": "4495762252", "tags": "wedding brazil people fish eye brasil canon eos 50mm pessoa pessoas pics religion ceremony jo\u00e3opessoa igreja fotos 28 casamento rafael 18 8mm mago padre matrimonio jo\u00e3o paraiba alian\u00e7a passos 70200mm para\u00edba celebra\u00e7\u00e3o cas\u00f3rio cerim\u00f4nia xti 40d 400d cerim\u00f4niareligiosa rafaelpassos giulliannaejo\u00e3o giullianna"}, {"datetaken": "2010-01-23 00:00:08", "license": "1", "title": "Giullianna e Jo\u00e3o", "text": "", "album_id": "72157623780545748", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4495762520_07bda8d131_o.jpg", "secret": "3a12414cd7", "media": "photo", "latitude": "0", "id": "4495762520", "tags": "wedding brazil people fish eye brasil canon eos 50mm pessoa pessoas pics religion ceremony jo\u00e3opessoa igreja fotos 28 casamento rafael 18 8mm mago padre matrimonio jo\u00e3o paraiba alian\u00e7a passos 70200mm para\u00edba celebra\u00e7\u00e3o cas\u00f3rio cerim\u00f4nia xti 40d 400d cerim\u00f4niareligiosa rafaelpassos giulliannaejo\u00e3o giullianna"}, {"datetaken": "2010-01-23 00:00:09", "license": "1", "title": "Giullianna e Jo\u00e3o", "text": "", "album_id": "72157623780545748", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4495124325_f842c2bb00_o.jpg", "secret": "7396e87d0d", "media": "photo", "latitude": "0", "id": "4495124325", "tags": "wedding brazil people fish eye brasil canon eos 50mm pessoa pessoas pics religion ceremony jo\u00e3opessoa igreja fotos 28 casamento rafael 18 8mm mago padre matrimonio jo\u00e3o paraiba alian\u00e7a passos 70200mm para\u00edba celebra\u00e7\u00e3o cas\u00f3rio cerim\u00f4nia xti 40d 400d cerim\u00f4niareligiosa rafaelpassos giulliannaejo\u00e3o giullianna"}, {"datetaken": "2010-01-23 00:00:10", "license": "1", "title": "Giullianna e Jo\u00e3o", "text": "", "album_id": "72157623780545748", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4495763430_4bc0a64817_o.jpg", "secret": "e522fb429e", "media": "photo", "latitude": "0", "id": "4495763430", "tags": "wedding brazil people fish eye brasil canon eos 50mm pessoa pessoas pics religion ceremony jo\u00e3opessoa igreja fotos 28 casamento rafael 18 8mm mago padre matrimonio jo\u00e3o paraiba alian\u00e7a passos 70200mm para\u00edba celebra\u00e7\u00e3o cas\u00f3rio cerim\u00f4nia xti 40d 400d cerim\u00f4niareligiosa rafaelpassos giulliannaejo\u00e3o giullianna"}, {"datetaken": "2010-01-23 00:00:11", "license": "1", "title": "Giullianna e Jo\u00e3o", "text": "", "album_id": "72157623780545748", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4495124715_cf1b1e80fb_o.jpg", "secret": "677026166a", "media": "photo", "latitude": "0", "id": "4495124715", "tags": "wedding brazil people fish eye brasil canon eos 50mm pessoa pessoas pics religion ceremony jo\u00e3opessoa igreja fotos 28 casamento rafael 18 8mm mago padre matrimonio jo\u00e3o paraiba alian\u00e7a passos 70200mm para\u00edba celebra\u00e7\u00e3o cas\u00f3rio cerim\u00f4nia xti 40d 400d cerim\u00f4niareligiosa rafaelpassos giulliannaejo\u00e3o giullianna"}, {"datetaken": "2010-01-23 00:00:12", "license": "1", "title": "Giullianna e Jo\u00e3o", "text": "", "album_id": "72157623780545748", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4495764024_e4cd174bb6_o.jpg", "secret": "cbe7151c30", "media": "photo", "latitude": "0", "id": "4495764024", "tags": "wedding brazil people fish eye brasil canon eos 50mm pessoa pessoas pics religion ceremony jo\u00e3opessoa igreja fotos 28 casamento rafael 18 8mm mago padre matrimonio jo\u00e3o paraiba alian\u00e7a passos 70200mm para\u00edba celebra\u00e7\u00e3o cas\u00f3rio cerim\u00f4nia xti 40d 400d cerim\u00f4niareligiosa rafaelpassos giulliannaejo\u00e3o giullianna"}, {"datetaken": "2010-01-23 00:00:13", "license": "1", "title": "Giullianna e Jo\u00e3o", "text": "", "album_id": "72157623780545748", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4495125547_06a51b1537_o.jpg", "secret": "0276bcf95e", "media": "photo", "latitude": "0", "id": "4495125547", "tags": "wedding brazil people fish eye brasil canon eos 50mm pessoa pessoas pics religion ceremony jo\u00e3opessoa igreja fotos 28 casamento rafael 18 8mm mago padre matrimonio jo\u00e3o paraiba alian\u00e7a passos 70200mm para\u00edba celebra\u00e7\u00e3o cas\u00f3rio cerim\u00f4nia xti 40d 400d cerim\u00f4niareligiosa rafaelpassos giulliannaejo\u00e3o giullianna"}, {"datetaken": "2010-01-23 00:00:14", "license": "1", "title": "Giullianna e Jo\u00e3o", "text": "", "album_id": "72157623780545748", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4495125813_f432d7314c_o.jpg", "secret": "e37ed895cf", "media": "photo", "latitude": "0", "id": "4495125813", "tags": "wedding brazil people fish eye brasil canon eos 50mm pessoa pessoas pics religion ceremony jo\u00e3opessoa igreja fotos 28 casamento rafael 18 8mm mago padre matrimonio jo\u00e3o paraiba alian\u00e7a passos 70200mm para\u00edba celebra\u00e7\u00e3o cas\u00f3rio cerim\u00f4nia xti 40d 400d cerim\u00f4niareligiosa rafaelpassos giulliannaejo\u00e3o giullianna"}, {"datetaken": "2010-01-23 00:00:15", "license": "1", "title": "Giullianna e Jo\u00e3o", "text": "", "album_id": "72157623780545748", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4495126177_02a7227065_o.jpg", "secret": "9cbe1daeec", "media": "photo", "latitude": "0", "id": "4495126177", "tags": "wedding brazil people fish eye brasil canon eos 50mm pessoa pessoas pics religion ceremony jo\u00e3opessoa igreja fotos 28 casamento rafael 18 8mm mago padre matrimonio jo\u00e3o paraiba alian\u00e7a passos 70200mm para\u00edba celebra\u00e7\u00e3o cas\u00f3rio cerim\u00f4nia xti 40d 400d cerim\u00f4niareligiosa rafaelpassos giulliannaejo\u00e3o giullianna"}, {"datetaken": "2010-05-01 10:07:16", "license": "1", "title": "musician for the ceremony", "text": "", "album_id": "72157623889944943", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4587372491_f4705b0613_o.jpg", "secret": "6cf21edfb9", "media": "photo", "latitude": "0", "id": "4587372491", "tags": "wedding usa laura washington ken violin melinda woodinville columbiawinery"}, {"datetaken": "2010-05-01 10:23:52", "license": "1", "title": "Ken & the officiant", "text": "", "album_id": "72157623889944943", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4587374461_79c96e49e1_o.jpg", "secret": "79c025a7d7", "media": "photo", "latitude": "0", "id": "4587374461", "tags": "wedding usa laura washington ken woodinville columbiawinery"}, {"datetaken": "2010-05-01 10:26:01", "license": "1", "title": "Flower girls", "text": "", "album_id": "72157623889944943", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4587376217_aba2a63b25_o.jpg", "secret": "df90fc2c41", "media": "photo", "latitude": "0", "id": "4587376217", "tags": "wedding usa laura washington ken woodinville columbiawinery"}, {"datetaken": "2010-05-01 10:26:47", "license": "1", "title": "Laura", "text": "", "album_id": "72157623889944943", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4587377533_ea064c3be7_o.jpg", "secret": "40339cd5a8", "media": "photo", "latitude": "0", "id": "4587377533", "tags": "wedding usa laura washington ken woodinville columbiawinery"}, {"datetaken": "2010-05-01 10:29:36", "license": "1", "title": "Kris", "text": "", "album_id": "72157623889944943", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4587378873_16877f1c3c_o.jpg", "secret": "a3087eea52", "media": "photo", "latitude": "0", "id": "4587378873", "tags": "wedding usa laura washington ken kris woodinville columbiawinery"}, {"datetaken": "2010-05-01 10:29:53", "license": "1", "title": "P5014482", "text": "", "album_id": "72157623889944943", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4588002442_2351d802cb_o.jpg", "secret": "fa8958feb7", "media": "photo", "latitude": "0", "id": "4588002442", "tags": "wedding usa laura washington ken woodinville columbiawinery"}, {"datetaken": "2010-05-01 10:34:53", "license": "1", "title": "Toby", "text": "", "album_id": "72157623889944943", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3313/4588003898_2f6e04f2ea_o.jpg", "secret": "19dc5383ea", "media": "photo", "latitude": "0", "id": "4588003898", "tags": "wedding toby usa laura washington ken woodinville columbiawinery"}, {"datetaken": "2010-05-01 10:40:19", "license": "1", "title": "P5014487", "text": "", "album_id": "72157623889944943", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4587384337_9f0596a4c9_o.jpg", "secret": "8bb64e6a33", "media": "photo", "latitude": "0", "id": "4587384337", "tags": "wedding usa laura washington ken woodinville columbiawinery"}, {"datetaken": "2010-05-01 10:51:42", "license": "1", "title": "Eleanor Rigsby", "text": "", "album_id": "72157623889944943", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4587386701_78214cb877_o.jpg", "secret": "1fd94b28b1", "media": "photo", "latitude": "0", "id": "4587386701", "tags": "wedding usa laura washington ken woodinville columbiawinery"}, {"datetaken": "2010-05-01 10:51:56", "license": "1", "title": "John & Monk", "text": "", "album_id": "72157623889944943", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4587388539_64571e1f00_o.jpg", "secret": "51a4aa3702", "media": "photo", "latitude": "0", "id": "4587388539", "tags": "wedding usa laura john washington ken monk woodinville columbiawinery"}, {"datetaken": "2010-05-01 10:56:23", "license": "1", "title": "P5014490", "text": "", "album_id": "72157623889944943", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4588011862_1d73157cfd_o.jpg", "secret": "a8fbd5a145", "media": "photo", "latitude": "0", "id": "4588011862", "tags": "wedding usa laura washington ken woodinville columbiawinery"}, {"datetaken": "2010-05-01 10:56:37", "license": "1", "title": "P5014491", "text": "", "album_id": "72157623889944943", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4588014250_8b9247d5bd_o.jpg", "secret": "384f88d579", "media": "photo", "latitude": "0", "id": "4588014250", "tags": "wedding usa laura washington ken woodinville columbiawinery"}, {"datetaken": "2010-05-01 10:59:10", "license": "1", "title": "Joanie", "text": "", "album_id": "72157623889944943", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4587394531_25c30aaed3_o.jpg", "secret": "d05dc44c68", "media": "photo", "latitude": "0", "id": "4587394531", "tags": "wedding usa laura washington ken joanie woodinville columbiawinery"}, {"datetaken": "2010-05-01 13:08:45", "license": "1", "title": "Delightful Powerpoint abuse", "text": "", "album_id": "72157623889944943", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4587395671_65aca03ec8_o.jpg", "secret": "32d0780073", "media": "photo", "latitude": "0", "id": "4587395671", "tags": "wedding toby usa laura washington ken powerpoint woodinville columbiawinery"}, {"datetaken": "2010-05-01 13:09:50", "license": "1", "title": "P5014501", "text": "", "album_id": "72157623889944943", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4587397101_d54d6c474a_o.jpg", "secret": "a384dd825e", "media": "photo", "latitude": "0", "id": "4587397101", "tags": "wedding usa laura washington ken woodinville columbiawinery"}, {"datetaken": "2010-05-01 13:09:57", "license": "1", "title": "P5014502", "text": "", "album_id": "72157623889944943", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3302/4587398513_6f0c85456d_o.jpg", "secret": "cfe469e0dc", "media": "photo", "latitude": "0", "id": "4587398513", "tags": "wedding usa laura washington ken woodinville columbiawinery"}, {"datetaken": "2010-05-01 13:11:05", "license": "1", "title": "Delightful Powerpoint abuse", "text": "", "album_id": "72157623889944943", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4588020888_fd788d72a8_o.jpg", "secret": "39f396152b", "media": "photo", "latitude": "0", "id": "4588020888", "tags": "wedding toby usa laura washington ken powerpoint woodinville columbiawinery"}, {"datetaken": "2005-07-15 18:40:59", "license": "3", "title": "almost there", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/21/31336357_7d1a964359_o.jpg", "secret": "7d1a964359", "media": "photo", "latitude": "45.690675", "id": "31336357", "tags": "2005 wedding usa oregon july2005 april faux 26things bouquet rehersal roxanne ives hoodriver tompkins siefert july15 july152005 26thingsjuly2005 secondshooter 26thingsfaux secondshooterforjonathanmiles secondshooterforphotolegacy secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-15 19:06:06", "license": "3", "title": "dry run", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/21/32789941_fca00a3585_o.jpg", "secret": "fca00a3585", "media": "photo", "latitude": "45.690675", "id": "32789941", "tags": "2005 wedding usa david oregon bride father july2005 daughter cassandra rehersal hoodriver tompkins siefert july15 july152005 secondshooter secondshooterforjonathanmiles secondshooterforphotolegacy secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-15 19:12:22", "license": "3", "title": "pssst!", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/21/32790010_bceb30ddd8_o.jpg", "secret": "bceb30ddd8", "media": "photo", "latitude": "45.690675", "id": "32790010", "tags": "2005 wedding usa oregon heidi july2005 april rehersal flowergirl maidofhonor ives hoodriver tompkins matronofhonor siefert july15 july152005 secondshooter secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-15 19:12:33", "license": "3", "title": "must've been funny!", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/22/32790068_1c591371b9_o.jpg", "secret": "1c591371b9", "media": "photo", "latitude": "45.690675", "id": "32790068", "tags": "2005 wedding usa oregon heidi july2005 april rehersal flowergirl maidofhonor ives hoodriver tompkins matronofhonor siefert july15 july152005 secondshooter secondshooterforjonathanmiles secondshooterforphotolegacy secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 16:57:06", "license": "3", "title": "178_7820_r1", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/21/32792149_4a72ebeeff_o.jpg", "secret": "4a72ebeeff", "media": "photo", "latitude": "45.690675", "id": "32792149", "tags": "2005 wedding usa sepia oregon bride july2005 cassandra july162005 hoodriver tompkins siefert july16 secondshooter secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 16:57:20", "license": "3", "title": "178_7821_r1", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/22/32792196_100109daad_o.jpg", "secret": "100109daad", "media": "photo", "latitude": "45.690675", "id": "32792196", "tags": "2005 wedding bw usa oregon bride july2005 april cassandra july162005 ives hoodriver tompkins matronofhonor siefert july16 secondshooter secondshooterforjonathanmiles secondshooterforphotolegacy secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 16:57:24", "license": "3", "title": "putting it on!", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/21/31336425_5e312e0525_o.jpg", "secret": "5e312e0525", "media": "photo", "latitude": "45.690675", "id": "31336425", "tags": "2005 wedding bw usa garter oregon bride niceshot dress great july2005 cassandra layers 26things gown july162005 letsplaytag hoodriver tompkins siefert july16 26thingsjuly2005 igot5 secondshooter 26thingslayers secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 16:57:55", "license": "3", "title": "*gasp*", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/22/32792228_e8df0e866d_o.jpg", "secret": "e8df0e866d", "media": "photo", "latitude": "45.690675", "id": "32792228", "tags": "2005 wedding bw usa oregon cool july2005 april july162005 ives hoodriver tompkins littleblackdress matronofhonor siefert july16 secondshooter secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 16:58:55", "license": "3", "title": "178_7824_r1", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/23/32792285_a88ebf5d24_o.jpg", "secret": "a88ebf5d24", "media": "photo", "latitude": "45.690675", "id": "32792285", "tags": "2005 wedding bw usa oregon bride lace july2005 cassandra july162005 hoodriver tompkins siefert july16 secondshooter secondshooterforjonathanmiles secondshooterforphotolegacy secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 17:00:16", "license": "3", "title": "beaming bride", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/22/32792336_b9655993bc_o.jpg", "secret": "b9655993bc", "media": "photo", "latitude": "45.690675", "id": "32792336", "tags": "2005 wedding portrait bw usa oregon bride amazing july2005 cassandra july162005 hoodriver tompkins siefert july16 secondshooter secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 17:03:08", "license": "3", "title": "laced", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/21/32792375_2afd1ccbe5_o.jpg", "secret": "2afd1ccbe5", "media": "photo", "latitude": "45.690675", "id": "32792375", "tags": "2005 wedding usa beautiful oregon wow bride interestingness lace lovely1 great july2005 cassandra lovely july162005 hoodriver tompkins siefert july16 interestingness329 i500 secondshooter explore9aug05 aug92005329 secondshooterforphotolegacy secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 17:23:49", "license": "3", "title": "beautiful bride", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/22/32792454_df4767ea2b_o.jpg", "secret": "df4767ea2b", "media": "photo", "latitude": "45.690675", "id": "32792454", "tags": "2005 wedding portrait usa beautiful oregon bride interestingness niceshot great july2005 explore cassandra july162005 hoodriver tompkins siefert july16 igot5 i500 secondshooter interestingness313 explore9aug05 august92005313 secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 17:26:34", "license": "3", "title": "wedding photographer", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/22/31336037_fd52c9fe1a_o.jpg", "secret": "fd52c9fe1a", "media": "photo", "latitude": "45.690675", "id": "31336037", "tags": "2005 camera wedding bw usa tiara beautiful oregon bride interestingness photographer photoshoot jonathan great july2005 cassandra 26things miles bouquet july162005 behindthescenes creamofthecrop hoodriver tompkins bestof2005 photoblogged siefert july16 26thingsjuly2005 333v3f igot5 cotcbest2005 cotcbestof2005 interestingness148 creamofthecropbestof2005 i500 views1000 explore4aug05 secondshooter 26thingsphotographer august42005148 flickr:user=rinkidink1027 secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 17:26:37", "license": "3", "title": "178_7845", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/22/32792535_2fce942f07_o.jpg", "secret": "2fce942f07", "media": "photo", "latitude": "45.690675", "id": "32792535", "tags": "2005 camera wedding bw usa oregon bride photographer jonathan july2005 cassandra miles july162005 behindthescenes hoodriver tompkins siefert july16 secondshooter flickr:user=rinkidink1027 secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 17:26:45", "license": "3", "title": "178_7846", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/23/32792619_193492353e_o.jpg", "secret": "193492353e", "media": "photo", "latitude": "45.690675", "id": "32792619", "tags": "2005 camera wedding usa oregon bride photographer jonathan july2005 cassandra miles july162005 behindthescenes hoodriver tompkins siefert july16 secondshooter flickr:user=rinkidink1027 secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 17:44:09", "license": "3", "title": "178_7866", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/21/32792675_9615cf8e2b_o.jpg", "secret": "9615cf8e2b", "media": "photo", "latitude": "45.690675", "id": "32792675", "tags": "2005 wedding usa oregon bride gorgeous july2005 cassandra flowergirl july162005 hoodriver tompkins siefert july16 secondshooter secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 17:57:25", "license": "3", "title": "178_7874_r1", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/21/32792712_bae9a477ac_o.jpg", "secret": "bae9a477ac", "media": "photo", "latitude": "45.690675", "id": "32792712", "tags": "2005 wedding usa oregon bride fantastic july2005 laugh cassandra july162005 hoodriver tompkins siefert july16 laughtericon secondshooter secondshooterforjonathanmiles secondshooterforphotolegacy secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 17:57:40", "license": "3", "title": "178_7876", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/22/32792758_5843ce5ab6_o.jpg", "secret": "5843ce5ab6", "media": "photo", "latitude": "45.690675", "id": "32792758", "tags": "2005 wedding usa oregon bride july2005 cassandra july162005 hoodriver tompkins siefert july16 secondshooter secondshooterforjonathanmiles secondshooterforphotolegacy secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 19:09:16", "license": "3", "title": "first look", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/21/31336483_5d3a8e0f97_o.jpg", "secret": "5d3a8e0f97", "media": "photo", "latitude": "45.690675", "id": "31336483", "tags": "2005 wedding usa david oregon groom july2005 26things july162005 pastor hoodriver tompkins important magicmoment siefert july16 26thingsjuly2005 secondshooter 26thingsimportant msh0607 msh060713 secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 19:12:53", "license": "3", "title": "179_7917", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/22/32792813_155e926df0_o.jpg", "secret": "155e926df0", "media": "photo", "latitude": "45.690675", "id": "32792813", "tags": "2005 wedding bw usa david oregon heidi groom bride veil prayer pray july2005 cassandra july162005 maidofhonor hoodriver tompkins siefert july16 secondshooter secondshooterforjonathanmiles secondshooterforphotolegacy secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 19:13:03", "license": "3", "title": "179_7918", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/22/32792838_ef17843144_o.jpg", "secret": "ef17843144", "media": "photo", "latitude": "45.690675", "id": "32792838", "tags": "2005 wedding bw usa david oregon heidi groom bride prayer pray july2005 ceremony cassandra july162005 maidofhonor hoodriver tompkins siefert july16 secondshooter secondshooterforjonathanmiles secondshooterforphotolegacy secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 19:26:47", "license": "3", "title": "179_7939", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/23/32792883_746d3b86ab_o.jpg", "secret": "746d3b86ab", "media": "photo", "latitude": "45.690675", "id": "32792883", "tags": "2005 wedding bw usa david oregon groom bride july2005 ceremony cassandra july162005 hoodriver tompkins siefert july16 secondshooter secondshooterforjonathanmiles secondshooterforphotolegacy secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 20:14:07", "license": "3", "title": "marriage certificate", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/23/31336525_c036a7cc6d_o.jpg", "secret": "c036a7cc6d", "media": "photo", "latitude": "45.690675", "id": "31336525", "tags": "2005 wedding usa david oregon groom bride july2005 stamp cassandra 26things july162005 hoodriver tompkins marriagecertificate siefert july16 26thingsjuly2005 secondshooter 26thingsstamp secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 20:24:02", "license": "3", "title": "179_7977", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/22/32792915_c669e8ace6_o.jpg", "secret": "c669e8ace6", "media": "photo", "latitude": "45.690675", "id": "32792915", "tags": "2005 wedding bw usa david oregon groom bride july2005 ceremony cassandra july162005 hoodriver tompkins siefert july16 secondshooter secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 20:24:12", "license": "3", "title": "179_7978_r1", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/22/32792949_5577c2d8a9_o.jpg", "secret": "5577c2d8a9", "media": "photo", "latitude": "45.690675", "id": "32792949", "tags": "2005 wedding bw usa david oregon groom bride july2005 cassandra july162005 hoodriver tompkins siefert july16 secondshooter secondshooterforjonathanmiles secondshooterforphotolegacy secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 20:24:54", "license": "3", "title": "179_7980", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/22/32792972_3214e3577b_o.jpg", "secret": "3214e3577b", "media": "photo", "latitude": "45.690675", "id": "32792972", "tags": "2005 wedding bw usa david beautiful oregon groom bride hand july2005 ring cassandra july162005 hoodriver tompkins siefert july16 111v1f secondshooter secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 20:24:59", "license": "3", "title": "179_7981", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/23/32793004_1943ebb1fe_o.jpg", "secret": "1943ebb1fe", "media": "photo", "latitude": "45.690675", "id": "32793004", "tags": "2005 wedding bw usa david oregon groom bride hand gorgeous july2005 ring cassandra july162005 hoodriver tompkins siefert july16 secondshooter secondshooterforjonathanmiles secondshooterforphotolegacy secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 20:25:44", "license": "3", "title": "marriage bouquet", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/23/32793053_0022497ed9_o.jpg", "secret": "0022497ed9", "media": "photo", "latitude": "45.690675", "id": "32793053", "tags": "2005 flowers wedding bw usa david flower oregon groom bride interestingness hands niceshot hand gorgeous great july2005 ring explore cassandra bouquet july162005 hoodriver tompkins siefert july16 igot5 interestingness335 i500 secondshooter explore9aug05 august92005335 secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 20:31:45", "license": "3", "title": "179_7988", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/23/32793082_906b3f5df0_o.jpg", "secret": "906b3f5df0", "media": "photo", "latitude": "45.690675", "id": "32793082", "tags": "2005 wedding usa david cake oregon groom bride feeding july2005 cassandra july162005 hoodriver tompkins siefert july16 secondshooter secondshooterforjonathanmiles secondshooterforphotolegacy secondshooterforjonathandanielmiles"}, {"datetaken": "2005-07-16 21:29:17", "license": "3", "title": "180_8023", "text": "", "album_id": "72057594085302199", "longitude": "-121.567996", "url_o": "https://farm1.staticflickr.com/23/32793123_2f2d926a88_o.jpg", "secret": "2f2d926a88", "media": "photo", "latitude": "45.690675", "id": "32793123", "tags": "2005 wedding usa car oregon bride july2005 lovers cassandra justmarried july162005 hoodriver seatbelt tompkins siefert july16 secondshooter secondshooterforjonathanmiles secondshooterforphotolegacy secondshooterforjonathandanielmiles"}, {"datetaken": "2010-09-02 07:17:49", "license": "5", "title": "Cookies", "text": "", "album_id": "72157624798593665", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/4975321377_39531dd297_o.jpg", "secret": "d0dfa81d57", "media": "photo", "latitude": "0", "id": "4975321377", "tags": "wood wedding garage rs disks tablenumbers jimtookthese"}, {"datetaken": "2010-09-02 09:58:26", "license": "5", "title": "Madness!", "text": "", "album_id": "72157624798593665", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/4975937040_dee9e05c72_o.jpg", "secret": "529c700f07", "media": "photo", "latitude": "0", "id": "4975937040", "tags": "wedding paper bride sherry kitchentable jimtookthese"}, {"datetaken": "2010-09-02 09:59:53", "license": "5", "title": "Printers are hard", "text": "", "album_id": "72157624798593665", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4126/4975938510_649c94e2b4_o.jpg", "secret": "f9c8dd226e", "media": "photo", "latitude": "0", "id": "4975938510", "tags": "wedding self regan groom hp printer printing coorslight jimtookthese"}, {"datetaken": "2010-09-02 10:25:20", "license": "5", "title": "Photo wall", "text": "", "album_id": "72157624798593665", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4125/4975940318_3bcb5c8f82_o.jpg", "secret": "9ba50a9e78", "media": "photo", "latitude": "0", "id": "4975940318", "tags": "wedding jeff garage shirley photowall jimtookthese"}, {"datetaken": "2010-09-04 02:20:04", "license": "5", "title": "The Cake Makers", "text": "", "album_id": "72157624798593665", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/4975941862_744ae070aa_o.jpg", "secret": "b4ecaf88dd", "media": "photo", "latitude": "0", "id": "4975941862", "tags": "wedding kitchen cake baking jon rollingpin sra jimtookthese"}, {"datetaken": "2010-09-04 02:56:52", "license": "5", "title": "Done!", "text": "", "album_id": "72157624798593665", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/4975943648_34936c82be_o.jpg", "secret": "1b0acbdc83", "media": "photo", "latitude": "0", "id": "4975943648", "tags": "wedding cake rs topper woodburning jimtookthese"}, {"datetaken": "2010-09-04 03:05:31", "license": "5", "title": "Bride!", "text": "", "album_id": "72157624798593665", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4130/4975331815_5c11bb4404_o.jpg", "secret": "4c1db52aed", "media": "photo", "latitude": "0", "id": "4975331815", "tags": "wedding bride sherry weddingdress jimtookthese"}, {"datetaken": "2010-09-04 03:06:04", "license": "5", "title": "Ladies", "text": "", "album_id": "72157624798593665", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/4975333371_296bf4d83c_o.jpg", "secret": "6a6ed19fbb", "media": "photo", "latitude": "0", "id": "4975333371", "tags": "wedding bride lindsay shirley sherry motherofthebride maidofhonour jimtookthese"}, {"datetaken": "2010-09-04 03:06:05", "license": "5", "title": "The Ladies", "text": "", "album_id": "72157624798593665", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/4975334849_6a8d7f365d_o.jpg", "secret": "178906725b", "media": "photo", "latitude": "0", "id": "4975334849", "tags": "wedding bride lindsay shirley motherofthebride maidofhonour jimtookthese weddingxsherry"}, {"datetaken": "2010-09-04 03:07:07", "license": "5", "title": "Corsage", "text": "", "album_id": "72157624798593665", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/4975950152_a66f86f4b0_o.jpg", "secret": "38ccb06273", "media": "photo", "latitude": "0", "id": "4975950152", "tags": "wedding bride grandmother sherry corsage elsie jimtookthese"}, {"datetaken": "2010-09-04 03:24:10", "license": "5", "title": "Horses!", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4085/4976146999_ec9cab9852_o.jpg", "secret": "ca813fbb7a", "media": "photo", "latitude": "44.317983", "id": "4976146999", "tags": "wedding"}, {"datetaken": "2010-09-04 03:24:57", "license": "5", "title": "Pumpkin", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4092/4976759644_ee00afc351_o.jpg", "secret": "138b45230b", "media": "photo", "latitude": "44.317983", "id": "4976759644", "tags": "wedding horses carriage"}, {"datetaken": "2010-09-04 03:38:38", "license": "5", "title": "Maid of honour", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4125/4976761200_b12a798d3d_o.jpg", "secret": "ffc67833fa", "media": "photo", "latitude": "44.317983", "id": "4976761200", "tags": "wedding ceremony lindsay aisle maidofhonour"}, {"datetaken": "2010-09-04 03:39:29", "license": "5", "title": "Here comes the bride", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4146/4976151447_bda31e4196_o.jpg", "secret": "e398cce71f", "media": "photo", "latitude": "44.317983", "id": "4976151447", "tags": "wedding bride aisle ceremont"}, {"datetaken": "2010-09-04 03:41:42", "license": "5", "title": "View from the peanut gallery", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4088/4976765524_e774cfc86e_o.jpg", "secret": "a721c04a5f", "media": "photo", "latitude": "44.317983", "id": "4976765524", "tags": "wedding ceremony"}, {"datetaken": "2010-09-04 03:42:18", "license": "5", "title": "The bride makes eye contact", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4112/4976766822_1634bf859e_o.jpg", "secret": "ae44c9a53f", "media": "photo", "latitude": "44.317983", "id": "4976766822", "tags": "wedding bride ceremony"}, {"datetaken": "2010-09-04 03:43:34", "license": "5", "title": "The Ceremony", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4146/4976768446_66fff59782_o.jpg", "secret": "24daac11c6", "media": "photo", "latitude": "44.317983", "id": "4976768446", "tags": "wedding ceremony"}, {"datetaken": "2010-09-04 03:44:30", "license": "5", "title": "I forgot my reading", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4125/4976158775_f6ed5433dc_o.jpg", "secret": "91f38946c0", "media": "photo", "latitude": "44.317983", "id": "4976158775", "tags": "wedding self regan groom bride ceremony sherry"}, {"datetaken": "2010-09-04 03:53:25", "license": "5", "title": "Sign on the dotted line", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4091/4976771630_6d481e0261_o.jpg", "secret": "ba3833cae2", "media": "photo", "latitude": "44.317983", "id": "4976771630", "tags": "wedding self regan groom bride lindsay sherry registry borrelli"}, {"datetaken": "2010-09-04 03:57:19", "license": "5", "title": "Flower and Veil", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4085/4976161395_970ee62c69_o.jpg", "secret": "f9776c785a", "media": "photo", "latitude": "44.317983", "id": "4976161395", "tags": "wedding flower bride veil sherry"}, {"datetaken": "2010-09-04 03:59:23", "license": "5", "title": "Just Married", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4125/4976163255_02c9161365_o.jpg", "secret": "5210edb7b1", "media": "photo", "latitude": "44.317983", "id": "4976163255", "tags": "wedding self regan carriage sherry justmarried"}, {"datetaken": "2010-09-04 03:59:49", "license": "5", "title": "Caution: Slow-moving Newlyweds", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4113/4976169115_cb40d2c070_o.jpg", "secret": "58e0a99c0d", "media": "photo", "latitude": "44.317983", "id": "4976169115", "tags": "wedding horses carriage ernie newlyweds"}, {"datetaken": "2010-09-04 04:06:30", "license": "5", "title": "Table setting", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4127/4976178855_7bb7a3cf8e_o.jpg", "secret": "31cdb906c8", "media": "photo", "latitude": "44.317983", "id": "4976178855", "tags": "wedding table reception pinkandgreen"}, {"datetaken": "2010-09-04 04:20:02", "license": "5", "title": "\"Come stand in front of the horses!\"", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4152/4976791298_fcccbe3262_o.jpg", "secret": "dfb7396fc9", "media": "photo", "latitude": "44.317983", "id": "4976791298", "tags": "wedding horses self regan sherry"}, {"datetaken": "2010-09-04 04:20:27", "license": "5", "title": "Sherry and me with my parents", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4084/4976792586_80ddd19edd_o.jpg", "secret": "7f00fb2e99", "media": "photo", "latitude": "44.317983", "id": "4976792586", "tags": "wedding self regan mom parents dad sherry"}, {"datetaken": "2010-09-04 04:35:38", "license": "5", "title": "Three generations", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4124/4976182613_ae4e6889dc_o.jpg", "secret": "48454a43f3", "media": "photo", "latitude": "44.317983", "id": "4976182613", "tags": "wedding grandmother mother threegenerations shirley sherry elsie"}, {"datetaken": "2010-09-04 04:37:38", "license": "5", "title": "The McKevers", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4132/4976183863_b6532862aa_o.jpg", "secret": "0d23de8d30", "media": "photo", "latitude": "44.317983", "id": "4976183863", "tags": "family wedding jeff glenn jim shirley sherry"}, {"datetaken": "2010-09-04 05:41:16", "license": "5", "title": "Entering the reception", "text": "", "album_id": "72157624798593665", "longitude": "-79.795932", "url_o": "https://farm5.staticflickr.com/4095/4976185253_0e235708cf_o.jpg", "secret": "64cd9c77e9", "media": "photo", "latitude": "44.317983", "id": "4976185253", "tags": "wedding self regan reception sherry"}, {"datetaken": "2005-06-12 16:25:37", "license": "1", "title": "The Ceremony", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19026431_47a3186703_o.jpg", "secret": "47a3186703", "media": "photo", "latitude": "0", "id": "19026431", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 16:25:37", "license": "1", "title": "The Ceremony", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/19025547_a6b7677564_o.jpg", "secret": "a6b7677564", "media": "photo", "latitude": "0", "id": "19025547", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 16:25:47", "license": "1", "title": "The Wedding Ceremony", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19026432_fb6a03992e_o.jpg", "secret": "fb6a03992e", "media": "photo", "latitude": "0", "id": "19026432", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 16:25:47", "license": "1", "title": "The Cermony", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19025548_2b31e97575_o.jpg", "secret": "2b31e97575", "media": "photo", "latitude": "0", "id": "19025548", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 16:28:24", "license": "1", "title": "Exchanging Vows", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19025544_cb5c3598b5_o.jpg", "secret": "cb5c3598b5", "media": "photo", "latitude": "0", "id": "19025544", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 16:32:09", "license": "1", "title": "Presenting the Couple", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/19026433_d413fd6a95_o.jpg", "secret": "d413fd6a95", "media": "photo", "latitude": "0", "id": "19026433", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 16:32:09", "license": "1", "title": "The Couple", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19025545_76d96f77b5_o.jpg", "secret": "76d96f77b5", "media": "photo", "latitude": "0", "id": "19025545", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 16:32:14", "license": "1", "title": "Exchanging Vows", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/19026434_f43458948b_o.jpg", "secret": "f43458948b", "media": "photo", "latitude": "0", "id": "19026434", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 16:32:14", "license": "1", "title": "The Ceremony", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/19025546_7113eea0d4_o.jpg", "secret": "7113eea0d4", "media": "photo", "latitude": "0", "id": "19025546", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 17:57:37", "license": "1", "title": "Jay and Annabelle", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19026435_4756b5eca0_o.jpg", "secret": "4756b5eca0", "media": "photo", "latitude": "0", "id": "19026435", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 17:57:37", "license": "1", "title": "Jay and Annabelle at the Reception", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19022971_4169b4e0aa_o.jpg", "secret": "4169b4e0aa", "media": "photo", "latitude": "0", "id": "19022971", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 21:00:00", "license": "1", "title": "Jay and Annabelle", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19026436_f9342a8221_o.jpg", "secret": "f9342a8221", "media": "photo", "latitude": "0", "id": "19026436", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 21:00:37", "license": "1", "title": "Jay and Annabelle", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/19025549_8ff06d7cf4_o.jpg", "secret": "8ff06d7cf4", "media": "photo", "latitude": "0", "id": "19025549", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 21:01:44", "license": "1", "title": "Jay and Annabelle in Traditional Dress", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/19022970_c137ec1149_o.jpg", "secret": "c137ec1149", "media": "photo", "latitude": "0", "id": "19022970", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 21:01:57", "license": "1", "title": "Jay and Annabelle in Traditional Dress", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19022972_c06576ff73_o.jpg", "secret": "c06576ff73", "media": "photo", "latitude": "0", "id": "19022972", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 21:09:09", "license": "1", "title": "Jay and Annabelle", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19022969_47137b8ce5_o.jpg", "secret": "47137b8ce5", "media": "photo", "latitude": "0", "id": "19022969", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 21:10:37", "license": "1", "title": "Rebecca and Bryan at the Wedding", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/19022968_b690135c6a_o.jpg", "secret": "b690135c6a", "media": "photo", "latitude": "0", "id": "19022968", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 21:19:41", "license": "1", "title": "Matt and Jeevan", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19022967_a5bfd8e9b6_o.jpg", "secret": "a5bfd8e9b6", "media": "photo", "latitude": "0", "id": "19022967", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 21:23:50", "license": "1", "title": "Bryan and I at the Wedding", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19022067_6c6eb31f15_o.jpg", "secret": "6c6eb31f15", "media": "photo", "latitude": "0", "id": "19022067", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 21:29:52", "license": "1", "title": "The Purchase Gang at the Wedding", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19022066_7f8dab3d77_o.jpg", "secret": "7f8dab3d77", "media": "photo", "latitude": "0", "id": "19022066", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 21:30:10", "license": "1", "title": "The Purchase Gang at the Wedding", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19022065_7c4da16257_o.jpg", "secret": "7c4da16257", "media": "photo", "latitude": "0", "id": "19022065", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 21:33:16", "license": "1", "title": "Dancing the Bird Dance", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19022064_e676fab55a_o.jpg", "secret": "e676fab55a", "media": "photo", "latitude": "0", "id": "19022064", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 21:33:25", "license": "1", "title": "Dancing the Bird Dance", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/19022063_6ebe4cd5d8_o.jpg", "secret": "6ebe4cd5d8", "media": "photo", "latitude": "0", "id": "19022063", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2005-06-12 21:33:46", "license": "1", "title": "The Bird Dance", "text": "", "album_id": "447662", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19022062_a7bf52d4d8_o.jpg", "secret": "a7bf52d4d8", "media": "photo", "latitude": "0", "id": "19022062", "tags": "jayandannabelleswedding purchase"}, {"datetaken": "2010-05-08 14:01:37", "license": "3", "title": "Nancy made this cake!", "text": "", "album_id": "72157623931497939", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1262/4605310320_53b7dea562_o.jpg", "secret": "c441a919e9", "media": "photo", "latitude": "0", "id": "4605310320", "tags": "wedding"}, {"datetaken": "2010-05-08 14:01:43", "license": "3", "title": "Stenciled napkins", "text": "", "album_id": "72157623931497939", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4604695737_91e92fd5db_o.jpg", "secret": "ef1a87950a", "media": "photo", "latitude": "0", "id": "4604695737", "tags": "wedding"}, {"datetaken": "2010-05-08 14:18:20", "license": "3", "title": "Here comes the bride", "text": "", "album_id": "72157623931497939", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1133/4605311050_f406e19310_o.jpg", "secret": "65da2a6b29", "media": "photo", "latitude": "0", "id": "4605311050", "tags": "wedding"}, {"datetaken": "2010-05-08 14:20:36", "license": "3", "title": "The vows", "text": "", "album_id": "72157623931497939", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1298/4604696287_deb5e931e8_o.jpg", "secret": "0828201ae7", "media": "photo", "latitude": "0", "id": "4604696287", "tags": "wedding"}, {"datetaken": "2010-05-08 14:37:47", "license": "3", "title": "Cassie and I at our first wedding.", "text": "", "album_id": "72157623931497939", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3312/4604696549_3d825167c9_o.jpg", "secret": "748d91b1c8", "media": "photo", "latitude": "0", "id": "4604696549", "tags": "wedding cassie"}, {"datetaken": "2010-05-08 14:42:00", "license": "3", "title": "Sand combination ceremony", "text": "", "album_id": "72157623931497939", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1418/4605311886_749d349315_o.jpg", "secret": "cffc438c42", "media": "photo", "latitude": "0", "id": "4605311886", "tags": "wedding"}, {"datetaken": "2010-05-08 14:42:22", "license": "3", "title": "Family Sand combination", "text": "", "album_id": "72157623931497939", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3341/4604697291_865524c667_o.jpg", "secret": "eaed518f62", "media": "photo", "latitude": "0", "id": "4604697291", "tags": "wedding"}, {"datetaken": "2010-05-08 14:44:21", "license": "3", "title": "The Hetricks", "text": "", "album_id": "72157623931497939", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1279/4605312492_fea09fc4b1_o.jpg", "secret": "c652dab762", "media": "photo", "latitude": "0", "id": "4605312492", "tags": "wedding katie cassie larry nancy"}, {"datetaken": "2010-05-08 15:27:49", "license": "3", "title": "Serving up the awesome cake", "text": "", "album_id": "72157623931497939", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3321/4604698073_1e1a285081_o.jpg", "secret": "7e062cbc3a", "media": "photo", "latitude": "0", "id": "4604698073", "tags": "wedding larry nancy"}, {"datetaken": "2010-05-08 15:59:41", "license": "3", "title": "Lynda and Cassie", "text": "", "album_id": "72157623931497939", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4605313062_d591fd3931_o.jpg", "secret": "baed0a9545", "media": "photo", "latitude": "0", "id": "4605313062", "tags": "wedding cassie lynda"}, {"datetaken": "2010-03-13 14:14:07", "license": "3", "title": "Behind the Scenes", "text": "", "album_id": "72157623519648199", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4443162250_23b732ebb7_o.jpg", "secret": "4ff77d9148", "media": "photo", "latitude": "0", "id": "4443162250", "tags": "windows wedding architecture golden nikon doors events peeking d300"}, {"datetaken": "2010-03-13 14:15:09", "license": "3", "title": "Come On In", "text": "", "album_id": "72157623519648199", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4443162868_dd66fac0bd_o.jpg", "secret": "015b60a849", "media": "photo", "latitude": "0", "id": "4443162868", "tags": "wedding church nikon candid events d300"}, {"datetaken": "2010-03-13 14:53:46", "license": "3", "title": "Here Comes the Bride", "text": "", "album_id": "72157623519648199", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4443163780_cea44b451a_o.jpg", "secret": "e470dd79f1", "media": "photo", "latitude": "0", "id": "4443163780", "tags": "wedding portrait people bride nikon events father daughter ceremony d300"}, {"datetaken": "2010-03-13 15:01:28", "license": "3", "title": "The Wedding", "text": "", "album_id": "72157623519648199", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4443164392_72144a04a3_o.jpg", "secret": "dd7a10314e", "media": "photo", "latitude": "0", "id": "4443164392", "tags": "wedding church groom bride nikon events ceremony d300"}, {"datetaken": "2010-03-13 15:13:30", "license": "3", "title": "Yay!", "text": "", "album_id": "72157623519648199", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2763/4442387467_5ca1e44f78_o.jpg", "secret": "74c18a9f19", "media": "photo", "latitude": "0", "id": "4442387467", "tags": "wedding portrait people smile groom bride nikon candid events celebration d300"}, {"datetaken": "2010-03-13 15:23:17", "license": "3", "title": "It's Hard Work", "text": "", "album_id": "72157623519648199", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2743/4443165390_aa94583c66_o.jpg", "secret": "8ff2e00bab", "media": "photo", "latitude": "0", "id": "4443165390", "tags": "camera wedding portrait people nikon serious candid events d300"}, {"datetaken": "2010-03-13 16:46:33", "license": "3", "title": "Surprise!", "text": "", "album_id": "72157623519648199", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2745/4442388915_e1b954b994_o.jpg", "secret": "617d39d21b", "media": "photo", "latitude": "0", "id": "4442388915", "tags": "wedding portrait people nikon colorful candid events surprise d300"}, {"datetaken": "2010-03-13 17:19:28", "license": "3", "title": "The Look", "text": "", "album_id": "72157623519648199", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4442389351_71fda52280_o.jpg", "secret": "7fbd66805d", "media": "photo", "latitude": "0", "id": "4442389351", "tags": "wedding portrait people nikon serious candid events conversation d300"}, {"datetaken": "2010-03-13 17:30:36", "license": "3", "title": "Yes!", "text": "", "album_id": "72157623519648199", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4443166936_f0462d6552_o.jpg", "secret": "8fa62337d0", "media": "photo", "latitude": "0", "id": "4443166936", "tags": "wedding portrait people nikon candid events celebration reception d300"}, {"datetaken": "2010-03-13 17:35:22", "license": "3", "title": "Next", "text": "", "album_id": "72157623519648199", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2681/4443167288_e0416bd0a1_o.jpg", "secret": "e846a0f5ce", "media": "photo", "latitude": "0", "id": "4443167288", "tags": "wedding portrait people smile nikon couple candid events d300"}, {"datetaken": "2010-03-13 19:26:43", "license": "3", "title": "Dancing Bride", "text": "", "album_id": "72157623519648199", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4442390611_190e64ee6a_o.jpg", "secret": "5e1349447d", "media": "photo", "latitude": "0", "id": "4442390611", "tags": "wedding portrait people bride nikon dancing events reception d300"}, {"datetaken": "2010-03-13 19:28:46", "license": "3", "title": "Fun Times", "text": "", "album_id": "72157623519648199", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2780/4442391011_6445b872c7_o.jpg", "secret": "8220414f01", "media": "photo", "latitude": "0", "id": "4442391011", "tags": "wedding portrait people bride nikon candid events reception d300"}, {"datetaken": "2010-06-12 14:25:44", "license": "1", "title": "Ceremony", "text": "", "album_id": "72157624179145821", "longitude": "-0.055575", "url_o": "https://farm2.staticflickr.com/1288/4712530124_c07cf9a023_o.jpg", "secret": "54e99bd5cd", "media": "photo", "latitude": "51.545100", "id": "4712530124", "tags": "wedding london hackney hackneytownhall"}, {"datetaken": "2010-06-12 14:32:22", "license": "1", "title": "Outside", "text": "", "album_id": "72157624179145821", "longitude": "-0.055575", "url_o": "https://farm5.staticflickr.com/4021/4711890205_750984f766_o.jpg", "secret": "d2a8aabd56", "media": "photo", "latitude": "51.545100", "id": "4711890205", "tags": "wedding london hackney hackneytownhall"}, {"datetaken": "2010-06-12 15:18:49", "license": "1", "title": "Cupcakes", "text": "", "album_id": "72157624179145821", "longitude": "-0.043387", "url_o": "https://farm5.staticflickr.com/4052/4712530976_34c0fd2c49_o.jpg", "secret": "bccbc40f73", "media": "photo", "latitude": "51.536752", "id": "4712530976", "tags": "wedding london"}, {"datetaken": "2010-06-12 17:26:31", "license": "1", "title": "Serious Business", "text": "", "album_id": "72157624179145821", "longitude": "-0.043387", "url_o": "https://farm2.staticflickr.com/1279/4711890869_8554c5f668_o.jpg", "secret": "b121c4a898", "media": "photo", "latitude": "51.536752", "id": "4711890869", "tags": "wedding london"}, {"datetaken": "2010-06-12 17:41:46", "license": "1", "title": "Steve", "text": "", "album_id": "72157624179145821", "longitude": "-0.043387", "url_o": "https://farm2.staticflickr.com/1287/4712531626_43f0d81bf3_o.jpg", "secret": "f4f6aec41a", "media": "photo", "latitude": "51.536752", "id": "4712531626", "tags": "wedding london"}, {"datetaken": "2010-06-12 18:17:54", "license": "1", "title": "Hunter, the Laughing Texan", "text": "", "album_id": "72157624179145821", "longitude": "-0.042250", "url_o": "https://farm2.staticflickr.com/1299/4711891521_f11162e45e_o.jpg", "secret": "4557c266d5", "media": "photo", "latitude": "51.537059", "id": "4711891521", "tags": "wedding london victoriapark"}, {"datetaken": "2010-06-12 18:25:36", "license": "1", "title": "", "text": "", "album_id": "72157624179145821", "longitude": "-0.042250", "url_o": "https://farm5.staticflickr.com/4025/4712532304_89b00fc291_o.jpg", "secret": "0d4f91125d", "media": "photo", "latitude": "51.537059", "id": "4712532304", "tags": "wedding london victoriapark"}, {"datetaken": "2010-06-12 18:28:35", "license": "1", "title": "Hunter Throws", "text": "", "album_id": "72157624179145821", "longitude": "-0.042250", "url_o": "https://farm5.staticflickr.com/4028/4712532648_bed588f86c_o.jpg", "secret": "c2a1441ac6", "media": "photo", "latitude": "51.537059", "id": "4712532648", "tags": "wedding london victoriapark"}, {"datetaken": "2010-06-12 18:28:44", "license": "1", "title": "Jason Throws", "text": "", "album_id": "72157624179145821", "longitude": "-0.042250", "url_o": "https://farm2.staticflickr.com/1289/4712533026_26857f0500_o.jpg", "secret": "a950180945", "media": "photo", "latitude": "51.537059", "id": "4712533026", "tags": "wedding london victoriapark"}, {"datetaken": "2010-06-12 18:29:01", "license": "1", "title": "Hunter", "text": "", "album_id": "72157624179145821", "longitude": "-0.042250", "url_o": "https://farm5.staticflickr.com/4017/4712533456_01b85315f4_o.jpg", "secret": "b38329d15f", "media": "photo", "latitude": "51.537059", "id": "4712533456", "tags": "wedding london victoriapark"}, {"datetaken": "2010-06-12 18:35:48", "license": "1", "title": "Alex", "text": "", "album_id": "72157624179145821", "longitude": "-0.042250", "url_o": "https://farm5.staticflickr.com/4067/4711893449_e8d6018034_o.jpg", "secret": "47324b9f6a", "media": "photo", "latitude": "51.537059", "id": "4711893449", "tags": "wedding london victoriapark"}, {"datetaken": "2010-06-12 18:41:25", "license": "1", "title": "Smarkets Group Photo", "text": "", "album_id": "72157624179145821", "longitude": "-0.042250", "url_o": "https://farm5.staticflickr.com/4034/4711893869_151e2394ec_o.jpg", "secret": "df9b2939af", "media": "photo", "latitude": "51.537059", "id": "4711893869", "tags": "wedding london victoriapark"}, {"datetaken": "2010-06-12 18:43:20", "license": "1", "title": "Games", "text": "", "album_id": "72157624179145821", "longitude": "-0.042250", "url_o": "https://farm2.staticflickr.com/1282/4712534700_0340ff4d02_o.jpg", "secret": "99d297a2c8", "media": "photo", "latitude": "51.537059", "id": "4712534700", "tags": "wedding london victoriapark"}, {"datetaken": "2010-06-12 18:45:13", "license": "1", "title": "Ross Throws", "text": "", "album_id": "72157624179145821", "longitude": "-0.042250", "url_o": "https://farm5.staticflickr.com/4020/4712535100_19891a0d69_o.jpg", "secret": "6ea34501df", "media": "photo", "latitude": "51.537059", "id": "4712535100", "tags": "wedding london victoriapark"}, {"datetaken": "2010-06-12 18:47:16", "license": "1", "title": "Alex", "text": "", "album_id": "72157624179145821", "longitude": "-0.042250", "url_o": "https://farm5.staticflickr.com/4031/4711895089_52e36bc321_o.jpg", "secret": "7d1cf97e65", "media": "photo", "latitude": "51.537059", "id": "4711895089", "tags": "wedding london victoriapark"}, {"datetaken": "2010-06-12 19:16:42", "license": "1", "title": "", "text": "", "album_id": "72157624179145821", "longitude": "-0.042250", "url_o": "https://farm5.staticflickr.com/4069/4711895579_d6bc9c3ab9_o.jpg", "secret": "b6ab1bef60", "media": "photo", "latitude": "51.537059", "id": "4711895579", "tags": "wedding london victoriapark"}, {"datetaken": "2005-08-27 14:50:26", "license": "3", "title": "Guys in the Limo", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/45183278_26dd17b840_o.jpg", "secret": "26dd17b840", "media": "photo", "latitude": "0", "id": "45183278", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 16:20:58", "license": "3", "title": "Geoff + Becca : post-ceremony", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/45183279_37f982d27c_o.jpg", "secret": "37f982d27c", "media": "photo", "latitude": "0", "id": "45183279", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 16:25:21", "license": "3", "title": "In the pews", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/45183280_ac2f3c667f_o.jpg", "secret": "ac2f3c667f", "media": "photo", "latitude": "0", "id": "45183280", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 16:27:32", "license": "3", "title": "Family Shot", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/45183282_9d24c07880_o.jpg", "secret": "9d24c07880", "media": "photo", "latitude": "0", "id": "45183282", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 17:24:12", "license": "3", "title": "Pile into the ride", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/45183284_7d724700c4_o.jpg", "secret": "7d724700c4", "media": "photo", "latitude": "0", "id": "45183284", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 17:24:27", "license": "3", "title": "Geoff + Jeff - Keepers of the Flora", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/45183286_9e6ff96446_o.jpg", "secret": "9e6ff96446", "media": "photo", "latitude": "0", "id": "45183286", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 17:24:36", "license": "3", "title": "Geoff? Where's Geoff?", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/45185347_2c85039d97_o.jpg", "secret": "2c85039d97", "media": "photo", "latitude": "0", "id": "45185347", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 17:24:57", "license": "3", "title": "Reagan.", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/45185348_5796debaa5_o.jpg", "secret": "5796debaa5", "media": "photo", "latitude": "0", "id": "45185348", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 17:26:08", "license": "3", "title": "Champagne I", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/45185349_9e01847e1b_o.jpg", "secret": "9e01847e1b", "media": "photo", "latitude": "0", "id": "45185349", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 17:26:29", "license": "3", "title": "Champagne II", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/45185350_468b48d3af_o.jpg", "secret": "468b48d3af", "media": "photo", "latitude": "0", "id": "45185350", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 17:26:47", "license": "3", "title": "Champagne III", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/45185351_e3f801fcd0_o.jpg", "secret": "e3f801fcd0", "media": "photo", "latitude": "0", "id": "45185351", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 17:28:13", "license": "3", "title": "Mel Drowns in dress, Geoff asks for a drink", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/45185352_43cbe49c03_o.jpg", "secret": "43cbe49c03", "media": "photo", "latitude": "0", "id": "45185352", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 17:28:30", "license": "3", "title": "Mel.", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/45186932_fa2d836a2d_o.jpg", "secret": "fa2d836a2d", "media": "photo", "latitude": "0", "id": "45186932", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 17:32:07", "license": "3", "title": "The Limo, now in technicolor.", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/45186933_e2d129ded1_o.jpg", "secret": "e2d129ded1", "media": "photo", "latitude": "0", "id": "45186933", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 18:06:19", "license": "3", "title": "Mel with beverage", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/45186934_9a95a2ebc0_o.jpg", "secret": "9a95a2ebc0", "media": "photo", "latitude": "0", "id": "45186934", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 18:07:28", "license": "3", "title": "(G || J) + e + (G?o) + ff", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/45186935_9b54bd5102_o.jpg", "secret": "9b54bd5102", "media": "photo", "latitude": "0", "id": "45186935", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 18:08:41", "license": "3", "title": "Mel in chair.", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/45186936_38dd755534_o.jpg", "secret": "38dd755534", "media": "photo", "latitude": "0", "id": "45186936", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 18:09:58", "license": "3", "title": "Geoff in chair.", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/45186937_cb1bcfa2a0_o.jpg", "secret": "cb1bcfa2a0", "media": "photo", "latitude": "0", "id": "45186937", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 18:12:56", "license": "3", "title": "IMG_2409", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/45188329_d675f128e5_o.jpg", "secret": "d675f128e5", "media": "photo", "latitude": "0", "id": "45188329", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 19:18:48", "license": "3", "title": "Mr + Mrs", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/45188330_cf186e8292_o.jpg", "secret": "cf186e8292", "media": "photo", "latitude": "0", "id": "45188330", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 19:49:38", "license": "3", "title": "Kiddos", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/45188331_120bc36c72_o.jpg", "secret": "120bc36c72", "media": "photo", "latitude": "0", "id": "45188331", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 19:51:40", "license": "3", "title": "Munn Incorporated", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/45188334_f29ac71358_o.jpg", "secret": "f29ac71358", "media": "photo", "latitude": "0", "id": "45188334", "tags": "geoff mel wedding 2005"}, {"datetaken": "2005-08-27 19:54:28", "license": "3", "title": "Mom + Dad", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/45189322_f07b66692c_o.jpg", "secret": "f07b66692c", "media": "photo", "latitude": "0", "id": "45189322", "tags": ""}, {"datetaken": "2005-08-27 19:55:24", "license": "3", "title": "IMG_2431", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/45189323_742d3cdfaf_o.jpg", "secret": "742d3cdfaf", "media": "photo", "latitude": "0", "id": "45189323", "tags": ""}, {"datetaken": "2005-08-27 21:46:30", "license": "3", "title": "IMG_2444", "text": "", "album_id": "987727", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/45189325_e03e5719b4_o.jpg", "secret": "e03e5719b4", "media": "photo", "latitude": "0", "id": "45189325", "tags": ""}, {"datetaken": "2004-07-31 11:33:28", "license": "3", "title": "Close up of The Athena in the Newport Harbor", "text": "", "album_id": "255653", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/10355487_e4c3ba0734_o.jpg", "secret": "e4c3ba0734", "media": "photo", "latitude": "0", "id": "10355487", "tags": "friends gary people rebecca religion wedding"}, {"datetaken": "2004-07-31 11:34:06", "license": "3", "title": "The Athena - Newport Harbor", "text": "", "album_id": "255653", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10355522_06ed95170d_o.jpg", "secret": "06ed95170d", "media": "photo", "latitude": "0", "id": "10355522", "tags": "friends gary people rebecca religion wedding"}, {"datetaken": "2004-07-31 12:18:05", "license": "3", "title": "Rebecca and her Dad", "text": "", "album_id": "255653", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10355551_05fbba82ab_o.jpg", "secret": "05fbba82ab", "media": "photo", "latitude": "0", "id": "10355551", "tags": "friends gary people rebecca religion wedding"}, {"datetaken": "2004-07-31 12:19:43", "license": "3", "title": "The Ceremony", "text": "", "album_id": "255653", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10355576_60a1f8392e_o.jpg", "secret": "60a1f8392e", "media": "photo", "latitude": "0", "id": "10355576", "tags": "friends gary people rebecca religion wedding"}, {"datetaken": "2004-07-31 12:29:39", "license": "3", "title": "Stomping the Glass", "text": "", "album_id": "255653", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10355596_e240e760f2_o.jpg", "secret": "e240e760f2", "media": "photo", "latitude": "0", "id": "10355596", "tags": "friends gary people rebecca religion wedding"}, {"datetaken": "2004-07-31 12:29:57", "license": "3", "title": "The Kiss", "text": "", "album_id": "255653", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10355620_a6d7731979_o.jpg", "secret": "a6d7731979", "media": "photo", "latitude": "0", "id": "10355620", "tags": "friends gary people rebecca religion wedding"}, {"datetaken": "2004-07-31 12:30:45", "license": "3", "title": "The Happy Bride", "text": "", "album_id": "255653", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10355652_2c984c76a2_o.jpg", "secret": "2c984c76a2", "media": "photo", "latitude": "0", "id": "10355652", "tags": "friends gary people rebecca religion wedding tccomp010"}, {"datetaken": "2004-07-31 12:31:05", "license": "3", "title": "Moi as a bridesmaid", "text": "", "album_id": "255653", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10355673_9bc847a117_o.jpg", "secret": "9bc847a117", "media": "photo", "latitude": "0", "id": "10355673", "tags": "friends gary people rebecca religion wedding moi"}, {"datetaken": "2004-07-31 12:43:39", "license": "3", "title": "The Cake", "text": "", "album_id": "255653", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10355441_eaa48c208e_o.jpg", "secret": "eaa48c208e", "media": "photo", "latitude": "0", "id": "10355441", "tags": "friends gary people rebecca religion wedding"}, {"datetaken": "2004-07-31 14:47:16", "license": "3", "title": "Bride, Groom, and Best Man", "text": "", "album_id": "255653", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10355704_74fe51e3f4_o.jpg", "secret": "74fe51e3f4", "media": "photo", "latitude": "0", "id": "10355704", "tags": "friends gary people rebecca religion wedding"}, {"datetaken": "2004-07-31 14:49:53", "license": "3", "title": "Speaches", "text": "", "album_id": "255653", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10355726_aa6f0b538b_o.jpg", "secret": "aa6f0b538b", "media": "photo", "latitude": "0", "id": "10355726", "tags": "friends gary people rebecca religion wedding"}, {"datetaken": "2004-07-31 15:15:08", "license": "3", "title": "Pinky Dot", "text": "", "album_id": "255653", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10355775_909092b4e7_o.jpg", "secret": "909092b4e7", "media": "photo", "latitude": "0", "id": "10355775", "tags": "friends gary people rebecca religion wedding"}, {"datetaken": "2004-07-31 15:32:49", "license": "3", "title": "Greek Dance", "text": "", "album_id": "255653", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10355806_6fd4a9ff2d_o.jpg", "secret": "6fd4a9ff2d", "media": "photo", "latitude": "0", "id": "10355806", "tags": "friends gary people rebecca religion wedding"}, {"datetaken": "2004-07-31 15:33:05", "license": "3", "title": "Traditional Jewish Dance", "text": "", "album_id": "255653", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10355846_a5d1f0bec7_o.jpg", "secret": "a5d1f0bec7", "media": "photo", "latitude": "0", "id": "10355846", "tags": "friends gary people rebecca religion wedding"}, {"datetaken": "2004-07-31 15:36:46", "license": "3", "title": "Rebecca", "text": "", "album_id": "255653", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10355869_7d18e70557_o.jpg", "secret": "7d18e70557", "media": "photo", "latitude": "0", "id": "10355869", "tags": "friends gary people rebecca religion wedding"}, {"datetaken": "2004-07-31 15:41:06", "license": "3", "title": "What do we have here?", "text": "", "album_id": "255653", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10355351_d1afcb6bba_o.jpg", "secret": "d1afcb6bba", "media": "photo", "latitude": "0", "id": "10355351", "tags": "friends gary people rebecca religion wedding"}, {"datetaken": "2005-07-24 12:39:17", "license": "1", "title": "Straightening Rachel's hair", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28810520_eb42987a0d_o.jpg", "secret": "eb42987a0d", "media": "photo", "latitude": "0", "id": "28810520", "tags": "wedding mystic hair"}, {"datetaken": "2005-07-24 12:42:23", "license": "1", "title": "Makeup Box of Doom", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28810559_5615502c17_o.jpg", "secret": "5615502c17", "media": "photo", "latitude": "0", "id": "28810559", "tags": "wedding mystic makeup shiney"}, {"datetaken": "2005-07-24 13:13:36", "license": "1", "title": "Mary Grace doing hair", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28810629_5d021ce4a6_o.jpg", "secret": "5d021ce4a6", "media": "photo", "latitude": "0", "id": "28810629", "tags": "wedding mystic rollers hair"}, {"datetaken": "2005-07-24 13:13:47", "license": "1", "title": "More Mary Grace", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28810676_f0be53f72e_o.jpg", "secret": "f0be53f72e", "media": "photo", "latitude": "0", "id": "28810676", "tags": "wedding mystic rollers hair"}, {"datetaken": "2005-07-24 13:15:35", "license": "1", "title": "Annie in rollers", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28810746_3a62c3cb24_o.jpg", "secret": "3a62c3cb24", "media": "photo", "latitude": "0", "id": "28810746", "tags": "wedding mystic"}, {"datetaken": "2005-07-24 13:15:42", "license": "1", "title": "Mullet-tastic", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28810773_35312647fe_o.jpg", "secret": "35312647fe", "media": "photo", "latitude": "0", "id": "28810773", "tags": "wedding mystic"}, {"datetaken": "2005-07-24 13:59:37", "license": "1", "title": "Bride's bouquet", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28810805_4e914bac5d_o.jpg", "secret": "4e914bac5d", "media": "photo", "latitude": "0", "id": "28810805", "tags": "wedding mystic bouquet flowers"}, {"datetaken": "2005-07-24 13:59:53", "license": "1", "title": "Ceremony flowers", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28810859_f0f74ca338_o.jpg", "secret": "f0f74ca338", "media": "photo", "latitude": "0", "id": "28810859", "tags": "wedding mystic flowers"}, {"datetaken": "2005-07-24 14:05:27", "license": "1", "title": "Finishing touches", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28810944_4736e534a0_o.jpg", "secret": "4736e534a0", "media": "photo", "latitude": "0", "id": "28810944", "tags": "wedding mystic"}, {"datetaken": "2005-07-24 14:06:16", "license": "1", "title": "Primping", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28810984_8d84895922_o.jpg", "secret": "8d84895922", "media": "photo", "latitude": "0", "id": "28810984", "tags": "wedding mystic"}, {"datetaken": "2005-07-24 14:07:19", "license": "1", "title": "Annie and Mary Grace", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28811016_76454efc9b_o.jpg", "secret": "76454efc9b", "media": "photo", "latitude": "0", "id": "28811016", "tags": "wedding mystic"}, {"datetaken": "2005-07-24 14:07:38", "license": "1", "title": "Just call her Lola", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28811065_8b524b0bf1_o.jpg", "secret": "8b524b0bf1", "media": "photo", "latitude": "0", "id": "28811065", "tags": "wedding mystic feathers hair"}, {"datetaken": "2005-07-24 14:09:34", "license": "1", "title": "Cynthia getting her hair done", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28811111_caedcf01ef_o.jpg", "secret": "caedcf01ef", "media": "photo", "latitude": "0", "id": "28811111", "tags": "wedding mystic"}, {"datetaken": "2005-07-24 14:11:32", "license": "1", "title": "Flowers for Lia", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28810909_7d7741da03_o.jpg", "secret": "7d7741da03", "media": "photo", "latitude": "0", "id": "28810909", "tags": "wedding mystic flowers"}, {"datetaken": "2005-07-24 14:17:35", "license": "1", "title": "Cynthia", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28811140_108f209a47_o.jpg", "secret": "108f209a47", "media": "photo", "latitude": "0", "id": "28811140", "tags": "wedding mystic"}, {"datetaken": "2005-07-24 15:52:13", "license": "1", "title": "Distracting the bride in the hospitality suite", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28811201_3e97f2367f_o.jpg", "secret": "3e97f2367f", "media": "photo", "latitude": "0", "id": "28811201", "tags": "wedding mystic"}, {"datetaken": "2005-07-24 15:53:19", "license": "1", "title": "Wine glasses", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28811239_9f13c70529_o.jpg", "secret": "9f13c70529", "media": "photo", "latitude": "0", "id": "28811239", "tags": "wedding mystic wine glasses"}, {"datetaken": "2005-07-24 20:11:26", "license": "1", "title": "First dances", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28811271_d7bef25b10_o.jpg", "secret": "d7bef25b10", "media": "photo", "latitude": "0", "id": "28811271", "tags": "wedding mystic"}, {"datetaken": "2005-07-24 20:12:05", "license": "1", "title": "Get up off of that thing", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28811290_858e64ebb3_o.jpg", "secret": "858e64ebb3", "media": "photo", "latitude": "0", "id": "28811290", "tags": "wedding mystic"}, {"datetaken": "2005-07-24 20:13:02", "license": "1", "title": "Aunt Elena and Mommom", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28811330_732aee1205_o.jpg", "secret": "732aee1205", "media": "photo", "latitude": "0", "id": "28811330", "tags": "wedding mystic"}, {"datetaken": "2005-07-24 20:13:46", "license": "1", "title": "Miles and Dave, post-dance", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28811391_a20831026f_o.jpg", "secret": "a20831026f", "media": "photo", "latitude": "0", "id": "28811391", "tags": "wedding mystic"}, {"datetaken": "2005-07-24 21:00:30", "license": "1", "title": "Nick LaFontaine and Cynthia", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28811423_2dd8d08d86_o.jpg", "secret": "2dd8d08d86", "media": "photo", "latitude": "0", "id": "28811423", "tags": "wedding mystic"}, {"datetaken": "2005-07-24 21:00:37", "license": "1", "title": "Smiles from Miles (yeah, I went there)", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28811466_4d1fb676ee_o.jpg", "secret": "4d1fb676ee", "media": "photo", "latitude": "0", "id": "28811466", "tags": "wedding mystic"}, {"datetaken": "2005-07-24 21:07:23", "license": "1", "title": "Play that funky music white boy", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28811505_a467bfaf90_o.jpg", "secret": "a467bfaf90", "media": "photo", "latitude": "0", "id": "28811505", "tags": "wedding mystic"}, {"datetaken": "2005-07-24 21:18:14", "license": "1", "title": "The Moms", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28811554_8b8a082f4a_o.jpg", "secret": "8b8a082f4a", "media": "photo", "latitude": "0", "id": "28811554", "tags": "wedding mystic"}, {"datetaken": "2005-07-24 21:21:54", "license": "1", "title": "God help me, I am related to these people", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28811583_0a4eef13a1_o.jpg", "secret": "0a4eef13a1", "media": "photo", "latitude": "0", "id": "28811583", "tags": "wedding mystic cousins"}, {"datetaken": "2005-07-24 21:46:53", "license": "1", "title": "No comment.", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28811604_f710710b84_o.jpg", "secret": "f710710b84", "media": "photo", "latitude": "0", "id": "28811604", "tags": "wedding mystic"}, {"datetaken": "2005-07-24 21:47:59", "license": "1", "title": "Mrs. Jed Christiansen", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28811631_26748f8162_o.jpg", "secret": "26748f8162", "media": "photo", "latitude": "0", "id": "28811631", "tags": "wedding mystic ring"}, {"datetaken": "2005-07-25 09:20:08", "license": "1", "title": "Mystic Hilton Hotel", "text": "", "album_id": "649437", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28810492_7a53d68828_o.jpg", "secret": "7a53d68828", "media": "photo", "latitude": "0", "id": "28810492", "tags": "wedding hilton mystic"}, {"datetaken": "2005-09-21 13:39:42", "license": "3", "title": "Arndale Centre", "text": "", "album_id": "1023318", "longitude": "-2.255287", "url_o": "https://farm1.staticflickr.com/26/46925102_6f0d616bd5_o.jpg", "secret": "6f0d616bd5", "media": "photo", "latitude": "53.482938", "id": "46925102", "tags": "vacation manchester uk"}, {"datetaken": "2005-09-21 13:49:44", "license": "3", "title": "Bella Italia/Pasta", "text": "", "album_id": "1023318", "longitude": "-2.255287", "url_o": "https://farm1.staticflickr.com/29/46925150_91fac88158_o.jpg", "secret": "91fac88158", "media": "photo", "latitude": "53.482938", "id": "46925150", "tags": "vacation manchester uk"}, {"datetaken": "2005-09-21 15:15:25", "license": "3", "title": "Giant cuppucino", "text": "", "album_id": "1023318", "longitude": "-2.255287", "url_o": "https://farm1.staticflickr.com/33/46925187_ea541d12d6_o.jpg", "secret": "ea541d12d6", "media": "photo", "latitude": "53.482938", "id": "46925187", "tags": "vacation manchester leah uk food"}, {"datetaken": "2005-09-22 14:05:12", "license": "3", "title": "The ceremony", "text": "", "album_id": "1023318", "longitude": "-2.255287", "url_o": "https://farm1.staticflickr.com/28/46925225_d22d882448_o.jpg", "secret": "d22d882448", "media": "photo", "latitude": "53.482938", "id": "46925225", "tags": "vacation manchester wedding uk"}, {"datetaken": "2005-09-22 14:06:54", "license": "3", "title": "Exchanging rings", "text": "", "album_id": "1023318", "longitude": "-2.255287", "url_o": "https://farm1.staticflickr.com/33/46925257_bfe83a0f5d_o.jpg", "secret": "bfe83a0f5d", "media": "photo", "latitude": "53.482938", "id": "46925257", "tags": "vacation manchester wedding uk"}, {"datetaken": "2005-09-22 14:07:24", "license": "3", "title": "Now the other ring", "text": "", "album_id": "1023318", "longitude": "-2.255287", "url_o": "https://farm1.staticflickr.com/29/46925056_1b785b1d34_o.jpg", "secret": "1b785b1d34", "media": "photo", "latitude": "53.482938", "id": "46925056", "tags": "vacation manchester wedding uk"}, {"datetaken": "2005-09-22 14:07:49", "license": "3", "title": "You may kiss the bride", "text": "", "album_id": "1023318", "longitude": "-2.255287", "url_o": "https://farm1.staticflickr.com/26/46924113_2f95f27bb6_o.jpg", "secret": "2f95f27bb6", "media": "photo", "latitude": "53.482938", "id": "46924113", "tags": "vacation manchester wedding uk"}, {"datetaken": "2005-09-22 14:35:35", "license": "3", "title": "Walk down the aisle", "text": "", "album_id": "1023318", "longitude": "-2.255287", "url_o": "https://farm1.staticflickr.com/28/46924150_def25cc618_o.jpg", "secret": "def25cc618", "media": "photo", "latitude": "53.482938", "id": "46924150", "tags": "vacation manchester wedding uk"}, {"datetaken": "2005-09-22 16:31:42", "license": "3", "title": "The newly wedded and the best man", "text": "", "album_id": "1023318", "longitude": "-2.255287", "url_o": "https://farm1.staticflickr.com/29/46924177_5a9e5d8894_o.jpg", "secret": "5a9e5d8894", "media": "photo", "latitude": "53.482938", "id": "46924177", "tags": "vacation manchester wedding uk"}, {"datetaken": "2005-09-22 20:57:24", "license": "3", "title": "Cutting the cake", "text": "", "album_id": "1023318", "longitude": "-2.255287", "url_o": "https://farm1.staticflickr.com/28/46924202_743dd7e682_o.jpg", "secret": "743dd7e682", "media": "photo", "latitude": "53.482938", "id": "46924202", "tags": "vacation manchester wedding uk"}, {"datetaken": "2005-09-22 20:57:42", "license": "3", "title": "Still cutting", "text": "", "album_id": "1023318", "longitude": "-2.255287", "url_o": "https://farm1.staticflickr.com/25/46924233_460afdfd3e_o.jpg", "secret": "460afdfd3e", "media": "photo", "latitude": "53.482938", "id": "46924233", "tags": "vacation manchester wedding uk"}, {"datetaken": "2005-09-22 20:57:57", "license": "3", "title": "Finally cut", "text": "", "album_id": "1023318", "longitude": "-2.255287", "url_o": "https://farm1.staticflickr.com/31/46924283_684616791c_o.jpg", "secret": "684616791c", "media": "photo", "latitude": "53.482938", "id": "46924283", "tags": "vacation manchester wedding uk"}, {"datetaken": "2005-09-22 20:59:22", "license": "3", "title": "First dance", "text": "", "album_id": "1023318", "longitude": "-2.255287", "url_o": "https://farm1.staticflickr.com/30/46924307_6c52f05ab4_o.jpg", "secret": "6c52f05ab4", "media": "photo", "latitude": "53.482938", "id": "46924307", "tags": "vacation manchester wedding uk"}, {"datetaken": "2005-09-22 20:59:48", "license": "3", "title": "More first dance", "text": "", "album_id": "1023318", "longitude": "-2.255287", "url_o": "https://farm1.staticflickr.com/26/46924346_b1d4654171_o.jpg", "secret": "b1d4654171", "media": "photo", "latitude": "53.482938", "id": "46924346", "tags": "vacation manchester wedding uk"}, {"datetaken": "2005-09-22 21:00:42", "license": "3", "title": "And more...", "text": "", "album_id": "1023318", "longitude": "-2.255287", "url_o": "https://farm1.staticflickr.com/29/46924376_24dbc72758_o.jpg", "secret": "24dbc72758", "media": "photo", "latitude": "53.482938", "id": "46924376", "tags": "vacation manchester wedding uk"}, {"datetaken": "2005-09-22 21:01:12", "license": "3", "title": "Still dancing...", "text": "", "album_id": "1023318", "longitude": "-2.255287", "url_o": "https://farm1.staticflickr.com/24/46924420_fe1e68062b_o.jpg", "secret": "fe1e68062b", "media": "photo", "latitude": "53.482938", "id": "46924420", "tags": "vacation manchester wedding uk"}, {"datetaken": "2005-09-22 21:12:59", "license": "3", "title": "Even Leah is dancing", "text": "", "album_id": "1023318", "longitude": "-2.255287", "url_o": "https://farm1.staticflickr.com/31/46924463_5703715eae_o.jpg", "secret": "5703715eae", "media": "photo", "latitude": "53.482938", "id": "46924463", "tags": "vacation manchester wedding uk"}, {"datetaken": "2005-05-13 14:44:20", "license": "3", "title": "Donna", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/15983371_b77e072c57_o.jpg", "secret": "b77e072c57", "media": "photo", "latitude": "0", "id": "15983371", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 14:44:45", "license": "3", "title": "DSC01197", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/15983377_cddcf05286_o.jpg", "secret": "cddcf05286", "media": "photo", "latitude": "0", "id": "15983377", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 14:56:12", "license": "3", "title": "Some kid", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/15983379_f19f76b833_o.jpg", "secret": "f19f76b833", "media": "photo", "latitude": "0", "id": "15983379", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 14:57:20", "license": "3", "title": "Heather", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15983380_b57befdd3d_o.jpg", "secret": "b57befdd3d", "media": "photo", "latitude": "0", "id": "15983380", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 14:57:54", "license": "3", "title": "The dress", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/15983381_61b971c65e_o.jpg", "secret": "61b971c65e", "media": "photo", "latitude": "0", "id": "15983381", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 15:02:35", "license": "3", "title": "Dad", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15983383_0528658c86_o.jpg", "secret": "0528658c86", "media": "photo", "latitude": "0", "id": "15983383", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 15:04:27", "license": "3", "title": "Some kid", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/15983388_aebf9dfeca_o.jpg", "secret": "aebf9dfeca", "media": "photo", "latitude": "0", "id": "15983388", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 15:37:38", "license": "3", "title": "They're done", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/15983390_cdd956f7cb_o.jpg", "secret": "cdd956f7cb", "media": "photo", "latitude": "0", "id": "15983390", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 15:47:46", "license": "3", "title": "The family", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15983392_1acbcf1659_o.jpg", "secret": "1acbcf1659", "media": "photo", "latitude": "0", "id": "15983392", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 15:48:26", "license": "3", "title": "Smile, kids", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15983393_135d4d5ecd_o.jpg", "secret": "135d4d5ecd", "media": "photo", "latitude": "0", "id": "15983393", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 15:49:21", "license": "3", "title": "Yeah!", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/15983396_d65ac38ad6_o.jpg", "secret": "d65ac38ad6", "media": "photo", "latitude": "0", "id": "15983396", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 15:49:43", "license": "3", "title": "The nose", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/15983403_3bddc7cade_o.jpg", "secret": "3bddc7cade", "media": "photo", "latitude": "0", "id": "15983403", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 15:58:20", "license": "3", "title": "The cake", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/15983405_5d42e7bc74_o.jpg", "secret": "5d42e7bc74", "media": "photo", "latitude": "0", "id": "15983405", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 15:59:17", "license": "3", "title": "Open wide", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/15983406_0050a54dab_o.jpg", "secret": "0050a54dab", "media": "photo", "latitude": "0", "id": "15983406", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 16:00:16", "license": "3", "title": "The toast", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15983409_2196e6d70b_o.jpg", "secret": "2196e6d70b", "media": "photo", "latitude": "0", "id": "15983409", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 17:06:29", "license": "3", "title": "Opening gifts", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/15983413_380b0cf71d_o.jpg", "secret": "380b0cf71d", "media": "photo", "latitude": "0", "id": "15983413", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 17:06:36", "license": "3", "title": "Scott", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15983356_1542d76f2c_o.jpg", "secret": "1542d76f2c", "media": "photo", "latitude": "0", "id": "15983356", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 17:06:44", "license": "3", "title": "The sun, it burns", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15983358_76d2f6f350_o.jpg", "secret": "76d2f6f350", "media": "photo", "latitude": "0", "id": "15983358", "tags": "family wedding missouri"}, {"datetaken": "2005-05-13 17:44:27", "license": "3", "title": "Dad and me", "text": "", "album_id": "72157600049671824", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15983366_205d8bf407_o.jpg", "secret": "205d8bf407", "media": "photo", "latitude": "0", "id": "15983366", "tags": "family wedding missouri"}, {"datetaken": "2010-05-21 17:40:24", "license": "3", "title": "Free-Loader", "text": "", "album_id": "72157624110756682", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4628644556_67d4b2c6fd_o.jpg", "secret": "0ca81ff66a", "media": "photo", "latitude": "0", "id": "4628644556", "tags": "usa alex minnesota rehearsal fork rochester gift groomsman weiss weddingrehearsal cefc taylorwedding brotherofthebride calvaryevangelicalfreechurch freeloaderfork groomsmangift taylorweddingrehearsal"}, {"datetaken": "2010-05-21 17:42:37", "license": "3", "title": "Gifted Groomsmen", "text": "", "album_id": "72157624110756682", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4628644650_0f765b0cbe_o.jpg", "secret": "b68e4f9779", "media": "photo", "latitude": "0", "id": "4628644650", "tags": "usa nerd minnesota glasses rehearsal joshua andrew rochester gifts gift taylor groomsman groomsmen bestman weddingrehearsal cefc taylorwedding nerdglasses calvaryevangelicalfreechurch groomsmengifts brotherofthegroom groomsmangift taylorweddingrehearsal"}, {"datetaken": "2010-05-22 10:29:22", "license": "3", "title": "Little White Flower", "text": "", "album_id": "72157624110756682", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/4840128212_e89ab22135_o.jpg", "secret": "063e14b778", "media": "photo", "latitude": "0", "id": "4840128212", "tags": "flowers wedding usa flower minnesota bride dream victoria rochester taylor weiss preparation weddingpreparation plummerhouse taylorwedding canonef28135mmf3556isusm littlewhiteflowers littlewhiteflower canon40d taylorweddingpreparation"}, {"datetaken": "2010-05-22 10:51:13", "license": "3", "title": "Walkin' Along...", "text": "", "album_id": "72157624110756682", "longitude": "-92.479954", "url_o": "https://farm5.staticflickr.com/4053/4672799945_08e08dc31a_o.jpg", "secret": "375944e0d8", "media": "photo", "latitude": "44.010772", "id": "4672799945", "tags": "camera wedding outside groom bride photographer candid andrew victoria tuxedo taylor bridalveil weiss firstlook preceremony bridalgown weddingphotographer alpargatas plummerhouse taylorwedding amancay maahs canonef28135mmf3556isusm sigma18200mm tomsshoes shootsac canon40d myfunkycamera canonrebelt1i canont1i livelyshootsaccover myfunkycameracamerastrap ashtoms stacyprigge taylorweddingfirstlook"}, {"datetaken": "2010-05-22 10:55:17", "license": "3", "title": "Wild & Crazy Bride... (& Groom!)", "text": "", "album_id": "72157624110756682", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4124/4840128300_ce2ef7d9cd_o.jpg", "secret": "992028ce0c", "media": "photo", "latitude": "0", "id": "4840128300", "tags": "wedding usa minnesota groom bride andrew victoria rochester tuxedo taylor weddingdress bridalveil weiss firstlook weddinggown bridalgown 5stars plummerhouse taylorwedding canonef70200mmf28lisusm canon40d taylorweddingfirstlook"}, {"datetaken": "2010-05-22 11:04:33", "license": "3", "title": "Wild & Crazy Guys!", "text": "", "album_id": "72157624110756682", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4822716855_46fca9fd7f_o.jpg", "secret": "d15c0007da", "media": "photo", "latitude": "0", "id": "4822716855", "tags": "wedding usa alex minnesota groom joshua andrew rochester taylor groomsman groomsmen weiss 5stars plummerhouse taylorwedding canonef28135mmf3556isusm brotherofthebride brotherofthegroom formalportraits canon40d taylorweddingformalportraits"}, {"datetaken": "2010-05-22 11:21:51", "license": "3", "title": "Wedding Party", "text": "", "album_id": "72157624110756682", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4154/4840128340_a04fc948ba_o.jpg", "secret": "021af1f5a5", "media": "photo", "latitude": "0", "id": "4840128340", "tags": ""}, {"datetaken": "2010-05-22 11:23:28", "license": "3", "title": "Peek-a-BOO!", "text": "", "album_id": "72157624110756682", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/4839516457_ee0327f177_o.jpg", "secret": "771e16e688", "media": "photo", "latitude": "0", "id": "4839516457", "tags": "wedding usa minnesota groom bride joshua andrew victoria rochester taylor peek bestman peeking weiss plummerhouse taylorwedding canonef28135mmf3556isusm brotherofthegroom formalportraits canon40d taylorweddingformalportraits"}, {"datetaken": "2010-05-22 11:24:21", "license": "3", "title": "Swan Love", "text": "", "album_id": "72157624110756682", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/4840128474_ef0da30da8_o.jpg", "secret": "ef3811a79d", "media": "photo", "latitude": "0", "id": "4840128474", "tags": "wedding usa minnesota swan decoration rochester swans plummerhouse taylorwedding canonef28135mmf3556isusm formalportraits canon40d taylorweddingformalportraits"}, {"datetaken": "2010-05-22 11:26:27", "license": "3", "title": "True Colors", "text": "", "album_id": "72157624110756682", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4822716887_3c916f6d80_o.jpg", "secret": "d1daec09be", "media": "photo", "latitude": "0", "id": "4822716887", "tags": "wedding usa minnesota groom bride couple andrew victoria rochester taylor bridalveil bridalgown 5stars plummerhouse taylorwedding formalportraits canonef70200mmf28lisusm canon40d taylorweddingformalportraits"}, {"datetaken": "2010-05-22 11:27:48", "license": "3", "title": "SO Sweet", "text": "", "album_id": "72157624110756682", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4822716931_a6d42f2281_o.jpg", "secret": "8bb29a6e4c", "media": "photo", "latitude": "0", "id": "4822716931", "tags": "wedding usa minnesota groom bride couple andrew victoria rochester taylor bridalveil bridalgown 5stars plummerhouse taylorwedding formalportraits canonef70200mmf28lisusm canon40d taylorweddingformalportraits"}, {"datetaken": "2010-05-22 11:32:56", "license": "3", "title": "In my Element", "text": "", "album_id": "72157624110756682", "longitude": "-92.479954", "url_o": "https://farm5.staticflickr.com/4057/4672800435_57db8c6bde_o.jpg", "secret": "826c0ec651", "media": "photo", "latitude": "44.010772", "id": "4672800435", "tags": "camera wedding usa minnesota shoes photographer rochester toms camerastrap weddingphotographer alpargatas plummerhouse taylorwedding amancay maahs canonef28135mmf3556isusm alpargata sigma18200mm formalportraits tomsshoes shootsac canon40d myfunkycamera canonrebelt1i canont1i myfunkycameracamerastrap taylorweddingformalportraits ashtoms stacyprigge"}, {"datetaken": "2010-05-22 11:35:44", "license": "3", "title": "It's Really Happening!", "text": "", "album_id": "72157624110756682", "longitude": "-92.479954", "url_o": "https://farm5.staticflickr.com/4029/4634467995_3baec820e7_o.jpg", "secret": "75d1a43e7e", "media": "photo", "latitude": "44.010772", "id": "4634467995", "tags": "usa minnesota outside groom bride jump couple married veil dream andrew victoria rochester tuxedo taylor bouquet justmarried bridalveil weiss portrat weddinggown bridalgown plummerhouse taylorwedding canonef28135mmf3556isusm weddingbouquet formalportraits canon40d taylorweddingformalportraits"}, {"datetaken": "2010-05-22 11:45:53", "license": "3", "title": "Stuff That Dreams are Made of...", "text": "", "album_id": "72157624110756682", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4816680332_36370eafbf_o.jpg", "secret": "6333f69ea9", "media": "photo", "latitude": "0", "id": "4816680332", "tags": "wedding usa minnesota outside groom bride veil andrew victoria rochester taylor 5stars plummerhouse taylorwedding canonef28135mmf3556isusm formalportraits canon40d taylorweddingformalportraits"}, {"datetaken": "2010-05-22 12:27:33", "license": "3", "title": "Prayer", "text": "", "album_id": "72157624110756682", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4816680382_7f8e1c1efc_o.jpg", "secret": "a1fb5fdf25", "media": "photo", "latitude": "0", "id": "4816680382", "tags": "wedding usa minnesota sepia groom bride veil flash prayer praying andrew victoria rochester taylor 5stars lightsphere cefc taylorwedding canonef28135mmf3556isusm calvaryevangelicalfreechurch formalportraits garyfonglightsphere canon40d garyfongcollapsiblelightsphere taylorweddingformalportraits collapsiblelightsphere"}, {"datetaken": "2010-05-22 14:33:09", "license": "3", "title": "Serving One Another in Love", "text": "", "album_id": "72157624110756682", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4646816888_569b1e8dea_o.jpg", "secret": "0415766a07", "media": "photo", "latitude": "0", "id": "4646816888", "tags": "usa church water minnesota bride diptych couple ceremony towel andrew victoria rochester taylor bridalveil weiss serving weddinggown bridalgown churchwedding taylorwedding calvaryevangelicalfreechurch canonef70200mmf28lisusm washingfeet canon40d servingoneanother taylorweddingceremony"}, {"datetaken": "2010-05-22 17:34:58", "license": "3", "title": "Reflections of Love", "text": "", "album_id": "72157624110756682", "longitude": "-92.479954", "url_o": "https://farm5.staticflickr.com/4032/4646816942_8613cb34e4_o.jpg", "secret": "70e2b05d0e", "media": "photo", "latitude": "44.010772", "id": "4646816942", "tags": "usa reflection minnesota groom bride couple married andrew victoria rochester taylor justmarried weiss familydinner plummerhouse taylorwedding canonef50mmf18ii mirrio canon40d taylorweddingfamilydinner"}, {"datetaken": "2010-05-22 19:39:21", "license": "3", "title": "Smooches", "text": "", "album_id": "72157624110756682", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/4845050609_f0aafa9854_o.jpg", "secret": "a81513b86d", "media": "photo", "latitude": "0", "id": "4845050609", "tags": "wedding usa minnesota dance kiss kissing couple dancing flash andrew rochester taylor weiss firstdance familydinner bridalgown 5stars plummerhouse lightsphere taylorwedding amancaymaahs canonef70200mmf28lisusm garyfonglightsphere canon40d amancaymaahsphotography garyfongcollapsiblelightsphere taylorweddingfamilydinner collapsiblelightsphere taylorweddingfirstdance"}, {"datetaken": "2010-05-22 19:40:10", "license": "3", "title": "Bam!", "text": "", "album_id": "72157624110756682", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/4845050645_55d8497f98_o.jpg", "secret": "245da865d4", "media": "photo", "latitude": "0", "id": "4845050645", "tags": "wedding usa minnesota groom bride dance couple dancing flash andrew victoria rochester taylor weiss firstdance bam familydinner bridalgown plummerhouse lightsphere taylorwedding amancaymaahs canonef70200mmf28lisusm garyfonglightsphere canon40d amancaymaahsphotography garyfongcollapsiblelightsphere taylorweddingfamilydinner collapsiblelightsphere"}, {"datetaken": "2010-05-22 19:42:44", "license": "3", "title": "\"I Love You!\"", "text": "", "album_id": "72157624110756682", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/4845050693_5d91710320_o.jpg", "secret": "d9b4b621c1", "media": "photo", "latitude": "0", "id": "4845050693", "tags": "wedding bw usa minnesota groom bride dance couple dancing flash andrew victoria rochester taylor iloveyou weiss firstdance familydinner bridalgown plummerhouse lightsphere taylorwedding amancaymaahs canonef70200mmf28lisusm garyfonglightsphere canon40d amancaymaahsphotography garyfongcollapsiblelightsphere taylorweddingfamilydinner collapsiblelightsphere"}, {"datetaken": "2004-09-14 13:10:26", "license": "3", "title": "WeddingStart", "text": "", "album_id": "10664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/439754_0539c9d411_o.jpg", "secret": "0539c9d411", "media": "photo", "latitude": "0", "id": "439754", "tags": "louise jeannine stuart johnmcmann water wedding seattle"}, {"datetaken": "2004-09-14 13:10:43", "license": "3", "title": "LJS", "text": "", "album_id": "10664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/439755_a0c7fc744a_o.jpg", "secret": "a0c7fc744a", "media": "photo", "latitude": "0", "id": "439755", "tags": "wedding water stuart louise jeannine"}, {"datetaken": "2004-09-14 13:11:09", "license": "3", "title": "FamilyWatches", "text": "", "album_id": "10664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/439759_bf7f3fd328_o.jpg", "secret": "bf7f3fd328", "media": "photo", "latitude": "0", "id": "439759", "tags": "wedding robert eric trish stefan candace shannon johanna"}, {"datetaken": "2004-09-14 13:11:25", "license": "3", "title": "JStu", "text": "", "album_id": "10664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/439760_7a9945cf43_o.jpg", "secret": "7a9945cf43", "media": "photo", "latitude": "0", "id": "439760", "tags": "jeannine stuart water wedding"}, {"datetaken": "2004-09-14 13:11:44", "license": "3", "title": "LouStuJohn", "text": "", "album_id": "10664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/439762_97c7c4959f_o.jpg", "secret": "97c7c4959f", "media": "photo", "latitude": "0", "id": "439762", "tags": "seattle wedding david water stuart louise dottie jeannine johnmcmann"}, {"datetaken": "2004-09-14 13:12:01", "license": "3", "title": "MooresWatch2", "text": "", "album_id": "10664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/439765_789ddd373b_o.jpg", "secret": "789ddd373b", "media": "photo", "latitude": "0", "id": "439765", "tags": "george marie louise jeannine stuart water wedding seattle"}, {"datetaken": "2004-09-14 13:12:16", "license": "3", "title": "MarieWatches", "text": "", "album_id": "10664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/439768_e58ecf7616_o.jpg", "secret": "e58ecf7616", "media": "photo", "latitude": "0", "id": "439768", "tags": "marie louise jeannine stuart water wedding seattle"}, {"datetaken": "2004-09-14 13:12:36", "license": "3", "title": "JohannaWatches", "text": "", "album_id": "10664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/439772_1885936495_o.jpg", "secret": "1885936495", "media": "photo", "latitude": "0", "id": "439772", "tags": "seattle wedding water stuart louise johanna jeannine"}, {"datetaken": "2004-09-14 13:12:55", "license": "3", "title": "Handfasting", "text": "", "album_id": "10664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/439775_98cdc1f926_o.jpg", "secret": "98cdc1f926", "media": "photo", "latitude": "0", "id": "439775", "tags": "louise jeannine stuart water wedding seattle handfasting"}, {"datetaken": "2004-09-14 13:13:21", "license": "3", "title": "Linda", "text": "", "album_id": "10664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/439780_2b6f70aa93_o.jpg", "secret": "2b6f70aa93", "media": "photo", "latitude": "0", "id": "439780", "tags": "seattle wedding water linda"}, {"datetaken": "2004-09-14 13:13:42", "license": "3", "title": "LJS5", "text": "", "album_id": "10664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/439788_7796c57cd7_o.jpg", "secret": "7796c57cd7", "media": "photo", "latitude": "0", "id": "439788", "tags": "seattle wedding water stuart louise jeannine"}, {"datetaken": "2004-09-14 13:14:02", "license": "3", "title": "MooresWatch", "text": "", "album_id": "10664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/439790_5a97f28a9e_o.jpg", "secret": "5a97f28a9e", "media": "photo", "latitude": "0", "id": "439790", "tags": "seattle wedding water marie george stuart louise jeannine"}, {"datetaken": "2004-09-14 13:14:20", "license": "3", "title": "LouStuKiss", "text": "", "album_id": "10664", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/439796_dbcff7eb7b_o.jpg", "secret": "dbcff7eb7b", "media": "photo", "latitude": "0", "id": "439796", "tags": "stuart louise jeannine wedding"}, {"datetaken": "2005-03-25 15:29:07", "license": "1", "title": "What a beautiful spot!", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7799368_b8dc45a6dc_o.jpg", "secret": "b8dc45a6dc", "media": "photo", "latitude": "0", "id": "7799368", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 15:29:10", "license": "1", "title": "The view from the ceremony site", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7799428_01a98b0824_o.jpg", "secret": "01a98b0824", "media": "photo", "latitude": "0", "id": "7799428", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 15:29:29", "license": "1", "title": "Brown Bear is ready for the big event", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7797761_604a264153_o.jpg", "secret": "604a264153", "media": "photo", "latitude": "0", "id": "7797761", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 15:49:49", "license": "1", "title": "The wedding party enters", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7797822_c0624d74fc_o.jpg", "secret": "c0624d74fc", "media": "photo", "latitude": "0", "id": "7797822", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 15:50:02", "license": "1", "title": "Dave and the best man", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7797867_1521af1845_o.jpg", "secret": "1521af1845", "media": "photo", "latitude": "0", "id": "7797867", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 15:50:19", "license": "1", "title": "Kendra is coming!", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7797906_449d9877c0_o.jpg", "secret": "449d9877c0", "media": "photo", "latitude": "0", "id": "7797906", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 15:50:29", "license": "1", "title": "The bride enters, escorted by Mom and Dad", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7797923_f7ecf5e58a_o.jpg", "secret": "f7ecf5e58a", "media": "photo", "latitude": "0", "id": "7797923", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 15:50:54", "license": "1", "title": "The ceremony", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7797940_b2f212f868_o.jpg", "secret": "b2f212f868", "media": "photo", "latitude": "0", "id": "7797940", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 15:58:28", "license": "1", "title": "The ceremony", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7797985_4859ec1e78_o.jpg", "secret": "4859ec1e78", "media": "photo", "latitude": "0", "id": "7797985", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 16:13:39", "license": "1", "title": "Looking back towards the wedding site", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7798019_1cd828e61e_o.jpg", "secret": "1cd828e61e", "media": "photo", "latitude": "0", "id": "7798019", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 16:18:49", "license": "1", "title": "A shot off the end of the point", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7798063_786b054272_o.jpg", "secret": "786b054272", "media": "photo", "latitude": "0", "id": "7798063", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 18:20:15", "license": "1", "title": "Heaven is a place on Earth!", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7798080_3a7902fa98_o.jpg", "secret": "3a7902fa98", "media": "photo", "latitude": "0", "id": "7798080", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 18:20:28", "license": "1", "title": "Smiling for a camera", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7798097_05b24aac67_o.jpg", "secret": "05b24aac67", "media": "photo", "latitude": "0", "id": "7798097", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 18:23:55", "license": "1", "title": "A kiss!", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7798169_b382db0414_o.jpg", "secret": "b382db0414", "media": "photo", "latitude": "0", "id": "7798169", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 19:13:12", "license": "1", "title": "The gorgeous cake", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7798248_fa78e13fef_o.jpg", "secret": "fa78e13fef", "media": "photo", "latitude": "0", "id": "7798248", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 20:17:07", "license": "1", "title": "Kendra and Dad", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7798322_9285962070_o.jpg", "secret": "9285962070", "media": "photo", "latitude": "0", "id": "7798322", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 20:18:29", "license": "1", "title": "Kendra and Dad, Dave and Mom", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7798405_4b876545b3_o.jpg", "secret": "4b876545b3", "media": "photo", "latitude": "0", "id": "7798405", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 21:10:59", "license": "1", "title": "Cutting the cake", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7798491_f63dc5eef7_o.jpg", "secret": "f63dc5eef7", "media": "photo", "latitude": "0", "id": "7798491", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2005-03-25 21:12:29", "license": "1", "title": "A nice family shot", "text": "", "album_id": "194658", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7798575_62c4ec9b8a_o.jpg", "secret": "62c4ec9b8a", "media": "photo", "latitude": "0", "id": "7798575", "tags": "2005 wedding sandiego kendradave"}, {"datetaken": "2004-10-13 16:22:48", "license": "1", "title": "Bishop Salmon", "text": "", "album_id": "22059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/860172_febed6d02d_o.jpg", "secret": "febed6d02d", "media": "photo", "latitude": "0", "id": "860172", "tags": "jim april younkin wedding 13 sep 04"}, {"datetaken": "2004-10-13 16:22:54", "license": "1", "title": "Sisters", "text": "", "album_id": "22059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/860174_0937e14e2e_o.jpg", "secret": "0937e14e2e", "media": "photo", "latitude": "0", "id": "860174", "tags": "jim april younkin wedding 13 sep 04"}, {"datetaken": "2004-10-13 16:23:00", "license": "1", "title": "Pose for the Camera", "text": "", "album_id": "22059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/860175_75f891cc93_o.jpg", "secret": "75f891cc93", "media": "photo", "latitude": "0", "id": "860175", "tags": "jim april younkin wedding 13 sep 04"}, {"datetaken": "2004-10-13 16:23:08", "license": "1", "title": "The Couple.", "text": "", "album_id": "22059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/860178_45ea194477_o.jpg", "secret": "45ea194477", "media": "photo", "latitude": "0", "id": "860178", "tags": "jim april younkin wedding 13 sep 04"}, {"datetaken": "2004-10-13 16:23:15", "license": "1", "title": "You May Kiss...", "text": "", "album_id": "22059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/860182_e6a7b097a6_o.jpg", "secret": "e6a7b097a6", "media": "photo", "latitude": "0", "id": "860182", "tags": "jim april younkin wedding 13 sep 04"}, {"datetaken": "2004-10-13 16:23:26", "license": "1", "title": "Kissing Outside", "text": "", "album_id": "22059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/860186_67651d9e9b_o.jpg", "secret": "67651d9e9b", "media": "photo", "latitude": "0", "id": "860186", "tags": "jim april younkin wedding 13 sep 04"}, {"datetaken": "2004-10-13 16:23:32", "license": "1", "title": "Stare Into My Eyes", "text": "", "album_id": "22059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/860189_f4de241a9f_o.jpg", "secret": "f4de241a9f", "media": "photo", "latitude": "0", "id": "860189", "tags": "jim april younkin wedding 13 sep 04"}, {"datetaken": "2004-10-13 16:23:38", "license": "1", "title": "April with Mom", "text": "", "album_id": "22059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/860190_32f100ecac_o.jpg", "secret": "32f100ecac", "media": "photo", "latitude": "0", "id": "860190", "tags": "jim april younkin wedding 13 sep 04"}, {"datetaken": "2004-10-13 16:23:43", "license": "1", "title": "Ring Hands", "text": "", "album_id": "22059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/860191_5b0e786fcb_o.jpg", "secret": "5b0e786fcb", "media": "photo", "latitude": "0", "id": "860191", "tags": "jim april younkin wedding 13 sep 04"}, {"datetaken": "2004-10-13 16:23:48", "license": "1", "title": "Couple With Bride's Parents", "text": "", "album_id": "22059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/860192_d96f5911c4_o.jpg", "secret": "d96f5911c4", "media": "photo", "latitude": "0", "id": "860192", "tags": "jim april younkin wedding 13 sep 04"}, {"datetaken": "2004-10-09 17:57:02", "license": "5", "title": "The expectant groom", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152225_e33774709e_o.jpg", "secret": "e33774709e", "media": "photo", "latitude": "0", "id": "1152225", "tags": "wedding jake groom"}, {"datetaken": "2004-10-09 17:57:29", "license": "5", "title": "The Reverend Red", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152226_92f5b528a4_o.jpg", "secret": "92f5b528a4", "media": "photo", "latitude": "0", "id": "1152226", "tags": "wedding chris reverend"}, {"datetaken": "2004-10-09 18:01:05", "license": "5", "title": "Miracle Ed", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152232_146c9ffeeb_o.jpg", "secret": "146c9ffeeb", "media": "photo", "latitude": "0", "id": "1152232", "tags": "wedding miracleed"}, {"datetaken": "2004-10-09 18:04:50", "license": "5", "title": "The best man and his lady", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152234_e6a43ab53d_o.jpg", "secret": "e6a43ab53d", "media": "photo", "latitude": "0", "id": "1152234", "tags": "wedding matt jen bestman"}, {"datetaken": "2004-10-09 18:08:45", "license": "5", "title": "The groom and his mom", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152238_594ecee422_o.jpg", "secret": "594ecee422", "media": "photo", "latitude": "0", "id": "1152238", "tags": "wedding jake rand"}, {"datetaken": "2004-10-09 18:32:21", "license": "5", "title": "The ceremony", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152248_d37fb5a321_o.jpg", "secret": "d37fb5a321", "media": "photo", "latitude": "0", "id": "1152248", "tags": "wedding heather jake"}, {"datetaken": "2004-10-09 18:37:38", "license": "5", "title": "The happy bride", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152252_91113dbd58_o.jpg", "secret": "91113dbd58", "media": "photo", "latitude": "0", "id": "1152252", "tags": "wedding heather bride"}, {"datetaken": "2004-10-09 18:39:03", "license": "5", "title": "That went well...", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152257_adab33923a_o.jpg", "secret": "adab33923a", "media": "photo", "latitude": "0", "id": "1152257", "tags": "wedding jake chris"}, {"datetaken": "2004-10-09 18:47:30", "license": "5", "title": "We are so totally married!", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152267_278e485610_o.jpg", "secret": "278e485610", "media": "photo", "latitude": "0", "id": "1152267", "tags": "wedding jake heather scotch"}, {"datetaken": "2004-10-09 18:48:36", "license": "5", "title": "Smile big in the gazebo", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152271_6247a8f779_o.jpg", "secret": "6247a8f779", "media": "photo", "latitude": "0", "id": "1152271", "tags": "wedding jake heather"}, {"datetaken": "2004-10-09 18:49:14", "license": "5", "title": "The new mothers-in-law", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152379_1a5789fb91_o.jpg", "secret": "1a5789fb91", "media": "photo", "latitude": "0", "id": "1152379", "tags": "wedding jake heather rand judie"}, {"datetaken": "2004-10-09 18:50:54", "license": "5", "title": "Mother and son", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152272_7bc77efe0b_o.jpg", "secret": "7bc77efe0b", "media": "photo", "latitude": "0", "id": "1152272", "tags": "wedding rand jake"}, {"datetaken": "2004-10-09 18:51:06", "license": "5", "title": "Brother and sister", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152276_d7057d71d8_o.jpg", "secret": "d7057d71d8", "media": "photo", "latitude": "0", "id": "1152276", "tags": "wedding heather chris"}, {"datetaken": "2004-10-09 18:51:54", "license": "5", "title": "How *you* doin'?", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152279_b9bec564b0_o.jpg", "secret": "b9bec564b0", "media": "photo", "latitude": "0", "id": "1152279", "tags": "wedding jake drinking scotch"}, {"datetaken": "2004-10-09 18:53:43", "license": "5", "title": "Beantown boys", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152376_1452405c92_o.jpg", "secret": "1452405c92", "media": "photo", "latitude": "0", "id": "1152376", "tags": "wedding jake hanh miracleed"}, {"datetaken": "2004-10-09 18:53:54", "license": "5", "title": "Beantown boys 2", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152372_76688025b4_o.jpg", "secret": "76688025b4", "media": "photo", "latitude": "0", "id": "1152372", "tags": "wedding jake hanh miracleed"}, {"datetaken": "2004-10-09 18:54:48", "license": "5", "title": "Uphill battle", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152360_0c7eff668e_o.jpg", "secret": "0c7eff668e", "media": "photo", "latitude": "0", "id": "1152360", "tags": "wedding jake heather"}, {"datetaken": "2004-10-09 18:58:20", "license": "5", "title": "The boys 2", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152363_64e33a520a_o.jpg", "secret": "64e33a520a", "media": "photo", "latitude": "0", "id": "1152363", "tags": "chris wedding matt jake miracleed"}, {"datetaken": "2004-10-09 18:58:32", "license": "5", "title": "The boys", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152366_1a83880d7b_o.jpg", "secret": "1a83880d7b", "media": "photo", "latitude": "0", "id": "1152366", "tags": "chris wedding matt jake miracleed"}, {"datetaken": "2004-10-09 18:59:44", "license": "5", "title": "Ciggie", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152339_0d68bc0f97_o.jpg", "secret": "0d68bc0f97", "media": "photo", "latitude": "0", "id": "1152339", "tags": "wedding jake smoking"}, {"datetaken": "2004-10-09 19:00:02", "license": "5", "title": "Gettin' ciggie wit' it", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152357_16984bcfb9_o.jpg", "secret": "16984bcfb9", "media": "photo", "latitude": "0", "id": "1152357", "tags": "chris wedding smoking miracleed"}, {"datetaken": "2004-10-09 19:46:25", "license": "5", "title": "Cut the cake", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152283_65d2026411_o.jpg", "secret": "65d2026411", "media": "photo", "latitude": "0", "id": "1152283", "tags": "wedding jake heather cake"}, {"datetaken": "2004-10-09 21:27:33", "license": "5", "title": "Long night?", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152306_b9fee545ff_o.jpg", "secret": "b9fee545ff", "media": "photo", "latitude": "0", "id": "1152306", "tags": "wedding jake heather"}, {"datetaken": "2004-10-09 21:27:40", "license": "5", "title": "Strike a pose", "text": "", "album_id": "29583", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1152300_1c8634de1b_o.jpg", "secret": "1c8634de1b", "media": "photo", "latitude": "0", "id": "1152300", "tags": "wedding jake kevin"}, {"datetaken": "2005-10-01 12:53:52", "license": "3", "title": "Keith and Hawsey", "text": "", "album_id": "1056310", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/48584956_9b727d0371_o.jpg", "secret": "9b727d0371", "media": "photo", "latitude": "0", "id": "48584956", "tags": "nettyswedding otterburntower wedding geordiemates"}, {"datetaken": "2005-10-01 13:30:46", "license": "3", "title": "Keith, Ben and Will", "text": "", "album_id": "1056310", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/48584887_0191176e06_o.jpg", "secret": "0191176e06", "media": "photo", "latitude": "0", "id": "48584887", "tags": "nettyswedding otterburntower wedding geordiemates"}, {"datetaken": "2005-10-01 13:31:46", "license": "3", "title": "Will in Nina's hat", "text": "", "album_id": "1056310", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/48585172_26d2eb29ac_o.jpg", "secret": "26d2eb29ac", "media": "photo", "latitude": "0", "id": "48585172", "tags": "nettyswedding otterburntower wedding geordiemates"}, {"datetaken": "2005-10-01 13:37:52", "license": "3", "title": "Otterburn Tower", "text": "", "album_id": "1056310", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/48585133_df6f5ae7ef_o.jpg", "secret": "df6f5ae7ef", "media": "photo", "latitude": "0", "id": "48585133", "tags": "nettyswedding otterburntower wedding geordiemates"}, {"datetaken": "2005-10-01 13:59:03", "license": "3", "title": "My Geordie mates", "text": "", "album_id": "1056310", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/48585035_f5d03663e2_o.jpg", "secret": "f5d03663e2", "media": "photo", "latitude": "0", "id": "48585035", "tags": "nettyswedding otterburntower wedding geordiemates"}, {"datetaken": "2005-10-01 14:08:48", "license": "3", "title": "Friends of the couple", "text": "", "album_id": "1056310", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/48584749_ec8da3844e_o.jpg", "secret": "ec8da3844e", "media": "photo", "latitude": "0", "id": "48584749", "tags": "nettyswedding otterburntower wedding geordiemates"}, {"datetaken": "2005-10-01 14:11:26", "license": "3", "title": "The couple", "text": "", "album_id": "1056310", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/48584642_32e65c1917_o.jpg", "secret": "32e65c1917", "media": "photo", "latitude": "0", "id": "48584642", "tags": "nettyswedding otterburntower wedding geordiemates"}, {"datetaken": "2005-10-01 14:18:06", "license": "3", "title": "Mr. and Mrs.", "text": "", "album_id": "1056310", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/48584699_858c8d5991_o.jpg", "secret": "858c8d5991", "media": "photo", "latitude": "0", "id": "48584699", "tags": "nettyswedding otterburntower wedding geordiemates"}, {"datetaken": "2005-10-01 16:52:26", "license": "3", "title": "Banoffi pie", "text": "", "album_id": "1056310", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/48584495_9fa8433470_o.jpg", "secret": "9fa8433470", "media": "photo", "latitude": "0", "id": "48584495", "tags": "nettyswedding otterburntower wedding geordiemates"}, {"datetaken": "2005-10-01 17:13:06", "license": "3", "title": "Hawsey, me and Keith", "text": "", "album_id": "1056310", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/48584852_4913b33709_o.jpg", "secret": "4913b33709", "media": "photo", "latitude": "0", "id": "48584852", "tags": "nettyswedding otterburntower wedding sarah finch keith me geordiemates"}, {"datetaken": "2005-10-01 17:30:56", "license": "3", "title": "Mrs. Euan", "text": "", "album_id": "1056310", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/48584527_10dd34d6e4_o.jpg", "secret": "10dd34d6e4", "media": "photo", "latitude": "0", "id": "48584527", "tags": "nettyswedding otterburntower wedding netty geordiemates"}, {"datetaken": "2005-10-01 19:00:39", "license": "3", "title": "Keith and Ellie", "text": "", "album_id": "1056310", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/48584913_90c3e54c36_o.jpg", "secret": "90c3e54c36", "media": "photo", "latitude": "0", "id": "48584913", "tags": "nettyswedding otterburntower wedding geordiemates"}, {"datetaken": "2005-10-01 20:30:29", "license": "3", "title": "Will's Hos", "text": "", "album_id": "1056310", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/49325140_4336d87de2_o.jpg", "secret": "4336d87de2", "media": "photo", "latitude": "0", "id": "49325140", "tags": "nettyswedding drunk sarah me will ellie geordiemates"}, {"datetaken": "2005-10-29 19:48:50", "license": "4", "title": "cabin", "text": "", "album_id": "1266780", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/58413318_5da7859a24_o.jpg", "secret": "5da7859a24", "media": "photo", "latitude": "0", "id": "58413318", "tags": "steveandkateswedding queen mary"}, {"datetaken": "2005-10-29 19:49:00", "license": "4", "title": "porthole", "text": "", "album_id": "1266780", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/58413342_86e71a1531_o.jpg", "secret": "86e71a1531", "media": "photo", "latitude": "0", "id": "58413342", "tags": "steveandkateswedding queen mary"}, {"datetaken": "2005-10-29 20:18:29", "license": "4", "title": "steve2", "text": "", "album_id": "1266780", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/58413375_8e1a589620_o.jpg", "secret": "8e1a589620", "media": "photo", "latitude": "0", "id": "58413375", "tags": "steveandkateswedding queen mary"}, {"datetaken": "2005-10-29 20:38:28", "license": "4", "title": "steve", "text": "", "album_id": "1266780", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/58413391_f943dccf54_o.jpg", "secret": "f943dccf54", "media": "photo", "latitude": "0", "id": "58413391", "tags": "steveandkateswedding queen mary"}, {"datetaken": "2005-10-29 20:38:34", "license": "4", "title": "steve_waiting", "text": "", "album_id": "1266780", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/58413417_6af7ed8e65_o.jpg", "secret": "6af7ed8e65", "media": "photo", "latitude": "0", "id": "58413417", "tags": "steveandkateswedding queen mary"}, {"datetaken": "2005-10-29 20:41:15", "license": "4", "title": "bride_arrives", "text": "", "album_id": "1266780", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58413429_2d8f33abb8_o.jpg", "secret": "2d8f33abb8", "media": "photo", "latitude": "0", "id": "58413429", "tags": "steveandkateswedding queen mary"}, {"datetaken": "2005-10-29 20:42:12", "license": "4", "title": "ceremony3", "text": "", "album_id": "1266780", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/58413455_5646fd857f_o.jpg", "secret": "5646fd857f", "media": "photo", "latitude": "0", "id": "58413455", "tags": "steveandkateswedding queen mary"}, {"datetaken": "2005-10-29 20:42:20", "license": "4", "title": "ceremony2", "text": "", "album_id": "1266780", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/58413495_95347486da_o.jpg", "secret": "95347486da", "media": "photo", "latitude": "0", "id": "58413495", "tags": "steveandkateswedding queen mary"}, {"datetaken": "2005-10-29 20:42:50", "license": "4", "title": "ceremony1", "text": "", "album_id": "1266780", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58413535_974b48bd0c_o.jpg", "secret": "974b48bd0c", "media": "photo", "latitude": "0", "id": "58413535", "tags": "steveandkateswedding queen mary"}, {"datetaken": "2005-10-29 20:56:27", "license": "4", "title": "kiss_the_bride", "text": "", "album_id": "1266780", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/58413542_6d607e6558_o.jpg", "secret": "6d607e6558", "media": "photo", "latitude": "0", "id": "58413542", "tags": "steveandkateswedding queen mary"}, {"datetaken": "2005-10-29 20:57:43", "license": "4", "title": "pelicans", "text": "", "album_id": "1266780", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/58413562_47271fe5cc_o.jpg", "secret": "47271fe5cc", "media": "photo", "latitude": "0", "id": "58413562", "tags": "steveandkateswedding queen mary"}, {"datetaken": "2005-10-29 21:05:23", "license": "4", "title": "long_beach", "text": "", "album_id": "1266780", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58413594_bb15503df9_o.jpg", "secret": "bb15503df9", "media": "photo", "latitude": "0", "id": "58413594", "tags": "steveandkateswedding queen mary"}, {"datetaken": "2005-10-29 22:37:52", "license": "4", "title": "juggling_bullfighter", "text": "", "album_id": "1266780", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58413600_0377614b2f_o.jpg", "secret": "0377614b2f", "media": "photo", "latitude": "0", "id": "58413600", "tags": "steveandkateswedding queen mary"}, {"datetaken": "2005-10-29 22:38:29", "license": "4", "title": "Pirate_and_dame", "text": "", "album_id": "1266780", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/58413633_a3fd6ad08c_o.jpg", "secret": "a3fd6ad08c", "media": "photo", "latitude": "0", "id": "58413633", "tags": "steveandkateswedding queen mary"}, {"datetaken": "2005-10-29 22:45:47", "license": "4", "title": "steve_and_davy", "text": "", "album_id": "1266780", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/58413620_f17803eaef_o.jpg", "secret": "f17803eaef", "media": "photo", "latitude": "0", "id": "58413620", "tags": "steveandkateswedding queen mary"}, {"datetaken": "2006-12-31 20:47:02", "license": "2", "title": "Travis-n-Lauren", "text": "", "album_id": "72157594457806898", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/344775878_e7c4393c5e_o.jpg", "secret": "e7c4393c5e", "media": "photo", "latitude": "0", "id": "344775878", "tags": "new eve chris party lauren regan md december nye january 2006 baltimore celebration travis years 2007 nicol"}, {"datetaken": "2006-12-31 20:49:39", "license": "2", "title": "NYE Tablescape", "text": "", "album_id": "72157594457806898", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/344725357_172566b3df_o.jpg", "secret": "172566b3df", "media": "photo", "latitude": "0", "id": "344725357", "tags": "new eve chris party dinner regan md december nye year january 2006 baltimore celebration years 2007 nicol"}, {"datetaken": "2006-12-31 20:52:17", "license": "2", "title": "Chris With Lobsters", "text": "", "album_id": "72157594457806898", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/344725497_c3a8cceaa8_o.jpg", "secret": "c3a8cceaa8", "media": "photo", "latitude": "0", "id": "344725497", "tags": "new eve chris party dinner regan md december nye year january 2006 baltimore celebration years 2007 nicol"}, {"datetaken": "2006-12-31 20:53:30", "license": "2", "title": "Static", "text": "", "album_id": "72157594457806898", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/344725555_52b5093d3b_o.jpg", "secret": "52b5093d3b", "media": "photo", "latitude": "0", "id": "344725555", "tags": "new eve chris party dinner regan md december nye year january 2006 baltimore celebration years 2007 nicol"}, {"datetaken": "2006-12-31 20:55:43", "license": "2", "title": "NYE Tablescape", "text": "", "album_id": "72157594457806898", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/344725617_84b2dfca21_o.jpg", "secret": "84b2dfca21", "media": "photo", "latitude": "0", "id": "344725617", "tags": "new eve chris party dinner regan md december nye year january 2006 baltimore celebration years 2007 nicol"}, {"datetaken": "2006-12-31 21:26:32", "license": "2", "title": "NYE Feast", "text": "", "album_id": "72157594457806898", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/344725700_91c1ca4c57_o.jpg", "secret": "91c1ca4c57", "media": "photo", "latitude": "0", "id": "344725700", "tags": "new eve chris party dinner regan md december nye year january 2006 baltimore celebration years 2007 nicol"}, {"datetaken": "2006-12-31 23:02:08", "license": "2", "title": "More Wine Please", "text": "", "album_id": "72157594457806898", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/344725851_8768ffe3f5_o.jpg", "secret": "8768ffe3f5", "media": "photo", "latitude": "0", "id": "344725851", "tags": "new eve chris party dinner regan md december nye year january 2006 baltimore celebration years 2007 nicol"}, {"datetaken": "2006-12-31 23:04:18", "license": "2", "title": "Lauren with Tiara", "text": "", "album_id": "72157594457806898", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/344725916_91e075fc8e_o.jpg", "secret": "91e075fc8e", "media": "photo", "latitude": "0", "id": "344725916", "tags": "new eve chris party dinner regan md december nye year january 2006 baltimore celebration years 2007 nicol"}, {"datetaken": "2006-12-31 23:17:27", "license": "2", "title": "Get Funky", "text": "", "album_id": "72157594457806898", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/344726007_872d12ef91_o.jpg", "secret": "872d12ef91", "media": "photo", "latitude": "0", "id": "344726007", "tags": "new eve chris party dinner regan md december nye year january 2006 baltimore celebration years 2007 nicol"}, {"datetaken": "2006-12-31 23:19:17", "license": "2", "title": "Hostess and Host", "text": "", "album_id": "72157594457806898", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/344726096_f82ee1ff6a_o.jpg", "secret": "f82ee1ff6a", "media": "photo", "latitude": "0", "id": "344726096", "tags": "new eve chris party dinner regan md december nye year january 2006 baltimore celebration years 2007 nicol"}, {"datetaken": "2006-12-31 23:20:28", "license": "2", "title": "Bush's Last Day", "text": "", "album_id": "72157594457806898", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/344776051_1b945c97c9_o.jpg", "secret": "1b945c97c9", "media": "photo", "latitude": "0", "id": "344776051", "tags": "new eve chris party last regan md december day nye january 2006 baltimore celebration years 2007 bushs nicol bushslastdaycom"}, {"datetaken": "2006-12-31 23:23:52", "license": "2", "title": "Domestic Goddess", "text": "", "album_id": "72157594457806898", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/344726184_48434627b9_o.jpg", "secret": "48434627b9", "media": "photo", "latitude": "0", "id": "344726184", "tags": "new eve chris party dinner regan md december nye year january 2006 baltimore celebration years 2007 nicol"}, {"datetaken": "2006-12-31 23:24:55", "license": "2", "title": "Brian Channels James Brown", "text": "", "album_id": "72157594457806898", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/344726304_c0502fcff2_o.jpg", "secret": "c0502fcff2", "media": "photo", "latitude": "0", "id": "344726304", "tags": "new eve chris party dinner regan md december nye year january 2006 baltimore celebration years 2007 nicol"}, {"datetaken": "2006-12-31 23:26:34", "license": "2", "title": "Nicol-n-Peter", "text": "", "album_id": "72157594457806898", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/344726383_d75106dd64_o.jpg", "secret": "d75106dd64", "media": "photo", "latitude": "0", "id": "344726383", "tags": "new eve chris party dinner regan md december nye year january 2006 baltimore celebration years 2007 nicol"}, {"datetaken": "2006-12-31 23:29:35", "license": "2", "title": "Lauren Rings in the New Year", "text": "", "album_id": "72157594457806898", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/344726656_72089426a7_o.jpg", "secret": "72089426a7", "media": "photo", "latitude": "0", "id": "344726656", "tags": "new eve chris party dinner regan md december nye year january 2006 baltimore celebration years 2007 nicol"}, {"datetaken": "2006-12-31 23:30:06", "license": "2", "title": "Jump Jump", "text": "", "album_id": "72157594457806898", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/344726482_b8fca1e56d_o.jpg", "secret": "b8fca1e56d", "media": "photo", "latitude": "0", "id": "344726482", "tags": "new eve chris party dinner regan md december nye year january 2006 baltimore celebration years 2007 nicol"}, {"datetaken": "2006-12-31 23:30:13", "license": "2", "title": "Chris Cuts the Rug", "text": "", "album_id": "72157594457806898", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/344726558_4bb82909ef_o.jpg", "secret": "4bb82909ef", "media": "photo", "latitude": "0", "id": "344726558", "tags": "new eve chris party dinner regan md december nye year january 2006 baltimore celebration years 2007 nicol"}, {"datetaken": "2010-05-01 12:44:02", "license": "3", "title": "The Dress", "text": "", "album_id": "72157623988073332", "longitude": "-121.538502", "url_o": "https://farm5.staticflickr.com/4035/4704687692_6bf1d7bec9_o.jpg", "secret": "0b15f7e613", "media": "photo", "latitude": "45.709902", "id": "4704687692", "tags": "wedding usa oregon hotel shoes veil dress gown weddingdress bridalveil preparation hoodriver bridalgown 5stars comfortsuites weddingshoes bridalshoes canonef28135mmf3556isusm amancaymaahs canon40d amancaymaahsphotography keifferwedding keifferweddingpreparation"}, {"datetaken": "2010-05-01 14:03:56", "license": "3", "title": "Preparation", "text": "", "album_id": "72157623988073332", "longitude": "-121.538502", "url_o": "https://farm5.staticflickr.com/4096/4792120306_f775a40f6c_o.jpg", "secret": "0bcc622a77", "media": "photo", "latitude": "45.709902", "id": "4792120306", "tags": "wedding usa sepia oregon hotel bride sister maidofhonor preparation hoodriver gettingready keiffer 3stars karisa comfortsuites kelcie canonef28135mmf3556isusm sisterofthebride amancaymaahs canon40d mickels amancaymaahsphotography keifferwedding keifferweddingpreparation"}, {"datetaken": "2010-05-01 14:18:45", "license": "3", "title": "Smooches", "text": "", "album_id": "72157623988073332", "longitude": "-121.548340", "url_o": "https://farm5.staticflickr.com/4097/4791487181_fab6ec317e_o.jpg", "secret": "beb8197fd5", "media": "photo", "latitude": "45.708351", "id": "4791487181", "tags": "wedding usa oregon groom bride maxwell hoodriver sincity firstlook 4stars keiffer karisa canonef28135mmf3556isusm amancaymaahs canon40d mickels amancaymaahsphotography stonehedgegardens keifferwedding keifferweddingfirstlook"}, {"datetaken": "2010-05-01 14:21:20", "license": "3", "title": "Ready", "text": "", "album_id": "72157623988073332", "longitude": "-121.548340", "url_o": "https://farm5.staticflickr.com/4045/4683696680_550c6578f1_o.jpg", "secret": "b2e044b6b9", "media": "photo", "latitude": "45.708351", "id": "4683696680", "tags": "wedding usa oregon groom suit maxwell hoodriver firstlook boutonniere canonef28135mmf3556isusm amancaymaahs canon40d amancaymaahsphotography stonehedgegardens keifferwedding keifferweddingfirstlook"}, {"datetaken": "2010-05-01 14:25:53", "license": "3", "title": "Timeless Love", "text": "", "album_id": "72157623988073332", "longitude": "-121.548340", "url_o": "https://farm5.staticflickr.com/4047/4662735396_0ea1f79299_o.jpg", "secret": "714df85b5c", "media": "photo", "latitude": "45.708351", "id": "4662735396", "tags": "flowers wedding portrait usa sepia oregon vintage groom bride kiss maxwell bouquet weddingdress hoodriver firstlook weddinggown keiffer karisa weddingportrait canonef28135mmf3556isusm portraitsession canon40d mickels stonehedgegardens weddingportraitsession keifferwedding keifferweddingfirstlook"}, {"datetaken": "2010-05-01 14:33:13", "license": "3", "title": "Giddy", "text": "", "album_id": "72157623988073332", "longitude": "-121.548072", "url_o": "https://farm5.staticflickr.com/4069/4683067767_4a15b34208_o.jpg", "secret": "0551567634", "media": "photo", "latitude": "45.708014", "id": "4683067767", "tags": "wedding usa oregon groom suit maxwell hoodriver firstlook boutonniere amancaymaahs canonef70200f28lisusm canon40d amancaymaahsphotography stonehedgegardens keifferwedding keifferweddingfirstlook"}, {"datetaken": "2010-05-01 14:33:24", "license": "3", "title": "Rockstar Bride", "text": "", "album_id": "72157623988073332", "longitude": "-121.548072", "url_o": "https://farm5.staticflickr.com/4043/4662104968_6847f45a9c_o.jpg", "secret": "428cd786e1", "media": "photo", "latitude": "45.708014", "id": "4662104968", "tags": "portrait usa oregon bride veil bridalveil hoodriver firstlook keiffer karisa canonef70200f28lisusm canon40d mickels stonehedgegardens keifferwedding keifferweddingfirstlook"}, {"datetaken": "2010-05-01 14:35:11", "license": "3", "title": "On Our Way", "text": "", "album_id": "72157623988073332", "longitude": "-121.548281", "url_o": "https://farm5.staticflickr.com/4115/4791487253_7641d08d3a_o.jpg", "secret": "fcdc3e1431", "media": "photo", "latitude": "45.708171", "id": "4791487253", "tags": "wedding portrait usa oregon groom bride veil maxwell bridalveil hoodriver firstlook bridalgown keiffer 5stars karisa amancaymaahs canonef70200f28lisusm canon40d mickels amancaymaahsphotography stonehedgegardens keifferwedding keifferweddingfirstlook"}, {"datetaken": "2010-05-01 14:36:05", "license": "3", "title": "Comin' Along", "text": "", "album_id": "72157623988073332", "longitude": "-121.548421", "url_o": "https://farm5.staticflickr.com/4142/4791487353_117efebf03_o.jpg", "secret": "ab05f4cf0c", "media": "photo", "latitude": "45.708164", "id": "4791487353", "tags": "wedding usa oregon groom bride maxwell hoodriver firstlook bridalgown keiffer 5stars karisa amancaymaahs canonef70200f28lisusm canon40d mickels amancaymaahsphotography stonehedgegardens keifferwedding keifferweddingfirstlook"}, {"datetaken": "2010-05-01 14:53:28", "license": "3", "title": "Get the Party Started", "text": "", "album_id": "72157623988073332", "longitude": "-121.515533", "url_o": "https://farm2.staticflickr.com/1358/4733733875_f5dcc57840_o.jpg", "secret": "acfeca7463", "media": "photo", "latitude": "45.710966", "id": "4733733875", "tags": "camera wedding people usa selfportrait dylan reflection true sunglasses oregon downtown photographer outdoor jennie gray christopher groomsman weddingparty groomsmen hoodriver oakley weddingphotographer 5stars weddingportrait amancay maahs klinke canonef28135mmf3556isusm industrialave weddingportraits amancaymaahs secondshooter portraitsession assistantphotographer canon40d downtownhoodriver amancaymaahsphotography weddingportraitsession keifferwedding keifferweddingportraitsession"}, {"datetaken": "2010-05-01 14:59:11", "license": "3", "title": "Thumbs Up", "text": "", "album_id": "72157623988073332", "longitude": "-121.515081", "url_o": "https://farm5.staticflickr.com/4119/4792120632_9b81a0a016_o.jpg", "secret": "03f4d188d4", "media": "photo", "latitude": "45.710869", "id": "4792120632", "tags": "wedding usa dylan oregon groom downtown gray groomsman maxwell hoodriver 5stars weddingportrait canonef28135mmf3556isusm industrialave weddingportraits amancaymaahs portraitsession canon40d downtownhoodriver amancaymaahsphotography weddingportraitsession keifferwedding keifferweddingportraitsession"}, {"datetaken": "2010-05-01 14:59:30", "license": "3", "title": "He's Big, I'm Little", "text": "", "album_id": "72157623988073332", "longitude": "-121.515081", "url_o": "https://farm5.staticflickr.com/4117/4791487563_e9f77dedd2_o.jpg", "secret": "1c7b813918", "media": "photo", "latitude": "45.710869", "id": "4791487563", "tags": "wedding usa oregon groom downtown patrick groomsman maxwell hoodriver weddingportrait canonef28135mmf3556isusm industrialave weddingportraits amancaymaahs portraitsession canon40d downtownhoodriver amancaymaahsphotography weddingportraitsession keifferwedding keifferweddingportraitsession"}, {"datetaken": "2010-05-01 15:00:53", "license": "3", "title": "Spectacular", "text": "", "album_id": "72157623988073332", "longitude": "-121.515081", "url_o": "https://farm5.staticflickr.com/4037/4683696794_d42e1830e5_o.jpg", "secret": "7bd127bd48", "media": "photo", "latitude": "45.710869", "id": "4683696794", "tags": "wedding usa oregon bride downtown veil bouquet gown bridalveil hoodriver bridalgown keiffer karisa weddingportrait canonef28135mmf3556isusm industrialave weddingportraits amancaymaahs portraitsession canon40d downtownhoodriver mickels amancaymaahsphotography weddingportraitsession keifferwedding keifferweddingportraitsession"}, {"datetaken": "2010-05-01 15:09:53", "license": "3", "title": "Footware", "text": "", "album_id": "72157623988073332", "longitude": "-121.515081", "url_o": "https://farm5.staticflickr.com/4135/4791487621_0d3eb44a9e_o.jpg", "secret": "9f11fe7e46", "media": "photo", "latitude": "45.710869", "id": "4791487621", "tags": "wedding usa oregon groom downtown boots ringbearer maxwell weddingparty hoodriver sincity cowboyboots 4stars keiffer weddingportrait canonef28135mmf3556isusm industrialave weddingportraits amancaymaahs portraitsession canon40d downtownhoodriver amancaymaahsphotography weddingportraitsession keifferwedding keifferweddingportraitsession"}, {"datetaken": "2010-05-01 15:19:47", "license": "3", "title": "Da Boyz", "text": "", "album_id": "72157623988073332", "longitude": "-121.515081", "url_o": "https://farm5.staticflickr.com/4139/4791487701_cb6db021c6_o.jpg", "secret": "31326485bf", "media": "photo", "latitude": "45.710869", "id": "4791487701", "tags": "wedding usa oregon downtown hoodriver weddingportrait canonef28135mmf3556isusm industrialave weddingportraits amancaymaahs portraitsession canon40d downtownhoodriver amancaymaahsphotography weddingportraitsession keifferwedding keifferweddingportraitsession"}, {"datetaken": "2010-05-01 15:25:25", "license": "3", "title": "Wedding Party", "text": "", "album_id": "72157623988073332", "longitude": "-121.514904", "url_o": "https://farm5.staticflickr.com/4047/4577108393_805b629b08_o.jpg", "secret": "9c68f19d8c", "media": "photo", "latitude": "45.710659", "id": "4577108393", "tags": "wood chris wedding jason dylan true groom bride lawrence downtown amy joshua thomas meg gray drew patrick josh bridesmaids madison groomsman bridesmaid maxwell stephanie springer weddingparty groomsmen maidofhonor bestman cochran canela keiffer karisa flory weddingportrait kelcie canonef28135mmf3556isusm industrialave bridesman calkins weddingportraits mccollum portraitsession canon40d downtownhoodriver mickels weddingportraitsession keifferwedding"}, {"datetaken": "2010-05-01 16:17:24", "license": "3", "title": "Bright Future", "text": "", "album_id": "72157623988073332", "longitude": "-121.556988", "url_o": "https://farm5.staticflickr.com/4071/4661581351_6112106847_o.jpg", "secret": "017e4a355c", "media": "photo", "latitude": "45.636824", "id": "4661581351", "tags": "flowers decorations usa flower oregon details decoration engagementring rings weddingring centerpiece odell weddingrings weddingbands preceremony weddingband weddingdecoration canonef100mmf28macrousm canon40d summitbuilding keifferwedding keifferweddingpreceremony"}, {"datetaken": "2010-05-01 16:19:02", "license": "3", "title": "Intricate Union", "text": "", "album_id": "72157623988073332", "longitude": "-121.556988", "url_o": "https://farm5.staticflickr.com/4010/4662202286_9fedacd1a0_o.jpg", "secret": "abc3c5b399", "media": "photo", "latitude": "45.636824", "id": "4662202286", "tags": "flowers decorations usa flower oregon details decoration engagementring rings weddingring centerpiece odell weddingrings weddingbands preceremony weddingband weddingdecoration canonef100mmf28macrousm canon40d summitbuilding keifferwedding keifferweddingpreceremony"}, {"datetaken": "2010-05-01 16:22:04", "license": "3", "title": "Sparkle", "text": "", "album_id": "72157623988073332", "longitude": "-121.556988", "url_o": "https://farm5.staticflickr.com/4136/4792121004_df0626f629_o.jpg", "secret": "0efc79295f", "media": "photo", "latitude": "45.636824", "id": "4792121004", "tags": "wedding decorations food usa detail oregon dessert cupcakes details decoration cupcake odell preceremony 4stars cupcaketower amancaymaahs weddingcupcakes canonef100mmf28macrousm canon40d summitbuilding amancaymaahsphotography keifferwedding keifferweddingpreceremony"}, {"datetaken": "2010-05-01 17:14:36", "license": "3", "title": "It's Really Happening", "text": "", "album_id": "72157623988073332", "longitude": "-121.556988", "url_o": "https://farm5.staticflickr.com/4074/4792121078_4440d47738_o.jpg", "secret": "540a88c677", "media": "photo", "latitude": "45.636824", "id": "4792121078", "tags": "wedding usa oregon bride flash ceremony odell keiffer 5stars karisa lightsphere amancaymaahs canonef70200f28lisusm garyfonglightsphere canon40d mickels amancaymaahsphotography canonspeedlite430exii garyfongcollapsiblelightsphere keifferwedding keifferweddingceremony"}, {"datetaken": "2010-05-01 17:22:53", "license": "3", "title": "Standing at the Edge", "text": "", "album_id": "72157623988073332", "longitude": "-121.556988", "url_o": "https://farm5.staticflickr.com/4050/4683067873_c0aa85ee1e_o.jpg", "secret": "c18a07a390", "media": "photo", "latitude": "45.636824", "id": "4683067873", "tags": "wedding usa oregon groom bride flash ceremony husband maxwell wife bouquet gown odell weddinggown bridalgown keiffer karisa lightsphere amancaymaahs canonef70200f28lisusm garyfonglightsphere canon40d mickels amancaymaahsphotography canonspeedlite430exii garyfongcollapsiblelightsphere keifferwedding keifferweddingceremony"}, {"datetaken": "2010-05-01 17:22:54", "license": "3", "title": "A Slice of Life", "text": "", "album_id": "72157623988073332", "longitude": "-121.556988", "url_o": "https://farm5.staticflickr.com/4043/4683657688_29606659a2_o.jpg", "secret": "062e2dd106", "media": "photo", "latitude": "45.636824", "id": "4683657688", "tags": "flowers wedding decorations usa oregon groom bride petals triptych arch flash decoration ceremony husband arbor maxwell wife bouquet gown rosepetals odell weddinggown bridalgown boutonniere keiffer karisa lightsphere amancaymaahs canonef70200f28lisusm garyfonglightsphere canon40d mickels amancaymaahsphotography canonspeedlite430exii garyfongcollapsiblelightsphere keifferwedding keifferweddingceremony"}, {"datetaken": "2010-05-01 17:26:01", "license": "3", "title": "Hugz", "text": "", "album_id": "72157623988073332", "longitude": "-121.556693", "url_o": "https://farm5.staticflickr.com/4142/4791487989_ba28b42336_o.jpg", "secret": "abd5a6a9f2", "media": "photo", "latitude": "45.636741", "id": "4791487989", "tags": "wedding usa oregon postceremony odell amancaymaahs canonef70200f28lisusm canon40d amancaymaahsphotography keifferwedding keifferweddingpostceremony"}, {"datetaken": "2010-05-01 17:46:27", "license": "3", "title": "Saw Tooth in da House", "text": "", "album_id": "72157623988073332", "longitude": "-121.556988", "url_o": "https://farm5.staticflickr.com/4077/4792121230_5dc4c3764d_o.jpg", "secret": "e15307d5ca", "media": "photo", "latitude": "45.636824", "id": "4792121230", "tags": "wedding usa kitchen oregon dinner flash pizza odell caterer sawtooth catering lightsphere inthekitchen canonef28135mmf3556isusm amancaymaahs garyfonglightsphere canon40d amancaymaahsphotography canonspeedlite430exii garyfongcollapsiblelightsphere keifferwedding sawtoothroadhouse"}, {"datetaken": "2010-05-01 17:50:42", "license": "3", "title": "Recently Wed", "text": "", "album_id": "72157623988073332", "longitude": "-121.556838", "url_o": "https://farm5.staticflickr.com/4024/4672800211_5c85320ac1_o.jpg", "secret": "11a632e2f3", "media": "photo", "latitude": "45.636554", "id": "4672800211", "tags": "usa oregon flash odell lightsphere canonef28135mmf3556isusm garyfonglightsphere canon40d canonspeedlite430exii garyfongcollapsiblelightsphere"}, {"datetaken": "2010-05-01 17:53:26", "license": "3", "title": "Wedding Camera Mod", "text": "", "album_id": "72157623988073332", "longitude": "-121.556693", "url_o": "https://farm5.staticflickr.com/4074/4791488133_017b0284d4_o.jpg", "secret": "af6e9c8d0f", "media": "photo", "latitude": "45.636741", "id": "4791488133", "tags": "wedding usa classic oregon joshua postceremony odell canonef28135mmf3556isusm amancaymaahs canon40d amancaymaahsphotography keifferwedding keifferweddingpostceremony"}, {"datetaken": "2010-05-01 17:55:48", "license": "3", "title": "Can I Get a Witness", "text": "", "album_id": "72157623988073332", "longitude": "-121.556693", "url_o": "https://farm5.staticflickr.com/4081/4792121350_b157a0e401_o.jpg", "secret": "e26cee61f4", "media": "photo", "latitude": "45.636741", "id": "4792121350", "tags": "wedding usa oregon postceremony odell canonef28135mmf3556isusm amancaymaahs canon40d amancaymaahsphotography keifferwedding keifferweddingpostceremony"}, {"datetaken": "2010-05-01 17:57:03", "license": "3", "title": "Officiant", "text": "", "album_id": "72157623988073332", "longitude": "-121.556693", "url_o": "https://farm5.staticflickr.com/4079/4791488263_ded1310222_o.jpg", "secret": "fc154cdf46", "media": "photo", "latitude": "45.636741", "id": "4791488263", "tags": "wedding usa oregon postceremony odell canonef28135mmf3556isusm amancaymaahs canon40d amancaymaahsphotography keifferwedding keifferweddingpostceremony"}, {"datetaken": "2010-05-01 17:58:27", "license": "3", "title": "A Little Flare", "text": "", "album_id": "72157623988073332", "longitude": "-121.556693", "url_o": "https://farm5.staticflickr.com/4099/4791488419_ab0c387a6d_o.jpg", "secret": "b256cdf0d8", "media": "photo", "latitude": "45.636741", "id": "4791488419", "tags": "wedding usa oregon postceremony odell canonef28135mmf3556isusm amancaymaahs canon40d amancaymaahsphotography keifferwedding keifferweddingpostceremony"}, {"datetaken": "2010-05-01 18:01:45", "license": "3", "title": "En Familia", "text": "", "album_id": "72157623988073332", "longitude": "-121.556693", "url_o": "https://farm5.staticflickr.com/4115/4792121638_af07a7b265_o.jpg", "secret": "e012a3c24c", "media": "photo", "latitude": "45.636741", "id": "4792121638", "tags": "wedding usa oregon postceremony odell 4stars canonef28135mmf3556isusm amancaymaahs canon40d amancaymaahsphotography keifferwedding keifferweddingpostceremony"}, {"datetaken": "2010-05-01 19:12:02", "license": "3", "title": "Rough & Refined", "text": "", "album_id": "72157623988073332", "longitude": "-121.556693", "url_o": "https://farm5.staticflickr.com/4120/4792121744_cf97c3e253_o.jpg", "secret": "9a47327a4b", "media": "photo", "latitude": "45.636741", "id": "4792121744", "tags": "wedding usa men boys oregon outside outdoor flash smoking groomsman cigars groomsmen odell 4stars lightsphere canonef28135mmf3556isusm cigarsmoking amancaymaahs garyfonglightsphere canon40d amancaymaahsphotography canonspeedlite430exii garyfongcollapsiblelightsphere keifferwedding"}, {"datetaken": "2010-05-01 19:15:09", "license": "3", "title": "A Cloud of Smoke", "text": "", "album_id": "72157623988073332", "longitude": "-121.556693", "url_o": "https://farm5.staticflickr.com/4121/4792121870_c46b0ccc8b_o.jpg", "secret": "760d677fed", "media": "photo", "latitude": "45.636741", "id": "4792121870", "tags": "wedding usa men boys oregon outside outdoor flash smoking groomsman cigars 300 groomsmen odell 4stars lightsphere canonef28135mmf3556isusm cigarsmoking amancaymaahs garyfonglightsphere canon40d amancaymaahsphotography canonspeedlite430exii garyfongcollapsiblelightsphere keifferwedding"}, {"datetaken": "2010-05-01 19:19:23", "license": "3", "title": "Officiant + 1", "text": "", "album_id": "72157623988073332", "longitude": "-121.556988", "url_o": "https://farm5.staticflickr.com/4031/4577435980_78931d804e_o.jpg", "secret": "157a50937e", "media": "photo", "latitude": "45.636824", "id": "4577435980", "tags": "wood wedding usa colin oregon couple photobooth elaine officiant odell weddingreception maahs summitbuilding hoodrivercountyfairgrounds hoodrivercountyfairgroundssummitbuiding photoboothbyemilyrizzi weddingreceptionphotobooth"}, {"datetaken": "2010-05-01 19:30:19", "license": "3", "title": "First Dance Glance", "text": "", "album_id": "72157623988073332", "longitude": "-121.556988", "url_o": "https://farm5.staticflickr.com/4080/4791488795_f855552edf_o.jpg", "secret": "8af558ca7a", "media": "photo", "latitude": "45.636824", "id": "4791488795", "tags": "wedding usa oregon groom bride dance couple veil dancing flash reception maxwell bridalveil firstdance odell 4stars bridalgown keiffer karisa lightsphere amancaymaahs canonef70200f28lisusm garyfonglightsphere canon40d mickels summitbuilding amancaymaahsphotography canonspeedlite430exii garyfongcollapsiblelightsphere hoodrivercountyfairgrounds hoodrivercountyfairgroundssummitbuiding keifferwedding keifferweddingreception"}, {"datetaken": "2010-05-01 19:32:00", "license": "3", "title": "The Crack Up", "text": "", "album_id": "72157623988073332", "longitude": "-121.556988", "url_o": "https://farm5.staticflickr.com/4142/4791488843_2831ea37c4_o.jpg", "secret": "83533770fe", "media": "photo", "latitude": "45.636824", "id": "4791488843", "tags": "wedding usa oregon groom bride dance couple veil dancing flash reception maxwell bridalveil firstdance odell bridalgown keiffer 5stars karisa lightsphere amancaymaahs canonef70200f28lisusm garyfonglightsphere canon40d mickels summitbuilding amancaymaahsphotography canonspeedlite430exii garyfongcollapsiblelightsphere hoodrivercountyfairgrounds hoodrivercountyfairgroundssummitbuiding keifferwedding keifferweddingreception"}, {"datetaken": "2010-05-01 19:58:09", "license": "3", "title": "Strictly Ballroom", "text": "", "album_id": "72157623988073332", "longitude": "-121.556988", "url_o": "https://farm5.staticflickr.com/4079/4791488889_e6e278bd6f_o.jpg", "secret": "b562c6821d", "media": "photo", "latitude": "45.636824", "id": "4791488889", "tags": "wedding usa oregon dance dancing flash reception odell lightsphere amancaymaahs canonef70200f28lisusm garyfonglightsphere canon40d summitbuilding amancaymaahsphotography canonspeedlite430exii garyfongcollapsiblelightsphere hoodrivercountyfairgrounds hoodrivercountyfairgroundssummitbuiding keifferwedding keifferweddingreception"}, {"datetaken": "2010-05-01 19:58:28", "license": "3", "title": "It's in His Kiss", "text": "", "album_id": "72157623988073332", "longitude": "-121.556907", "url_o": "https://farm5.staticflickr.com/4112/4947677794_01caf80eba_o.jpg", "secret": "d99840c5c9", "media": "photo", "latitude": "45.636824", "id": "4947677794", "tags": "wedding usa dylan oregon dance kiss couple married meghan dancing flash gray reception groomsman bridesmaid odell lightsphere amancaymaahs canonef70200f28lisusm garyfonglightsphere canon40d summitbuilding amancaymaahsphotography canonspeedlite430exii garyfongcollapsiblelightsphere hoodrivercountyfairgrounds hoodrivercountyfairgroundssummitbuiding keifferwedding keifferweddingreception"}, {"datetaken": "2010-05-01 20:14:59", "license": "3", "title": "I Got It!", "text": "", "album_id": "72157623988073332", "longitude": "-121.556988", "url_o": "https://farm5.staticflickr.com/4120/4792122176_1f5a8e8dcb_o.jpg", "secret": "ab5cda3ee4", "media": "photo", "latitude": "45.636824", "id": "4792122176", "tags": "wedding usa oregon thomas flash groomsman springer gartertoss odell 4stars lightsphere canonef28135mmf3556isusm amancaymaahs garyfonglightsphere canon40d summitbuilding amancaymaahsphotography canonspeedlite430exii garyfongcollapsiblelightsphere hoodrivercountyfairgroundssummitbuiding keifferwedding"}, {"datetaken": "2010-05-01 20:16:47", "license": "3", "title": "PhotoBooth Reactions", "text": "", "album_id": "72157623988073332", "longitude": "-121.556988", "url_o": "https://farm5.staticflickr.com/4047/4661581699_cc76559791_o.jpg", "secret": "0a4e60f82f", "media": "photo", "latitude": "45.636824", "id": "4661581699", "tags": "wood usa oregon bride photobooth thomas flash reception groomsman bridesmaid springer odell canela bridalgown keiffer karisa lightsphere canonef28135mmf3556isusm garyfonglightsphere canon40d mickels canonspeedlite430exii garyfongcollapsiblelightsphere keifferwedding keifferweddingreception"}, {"datetaken": "2010-05-01 20:20:37", "license": "3", "title": "Amancay Maahs Photography [Take 1]", "text": "", "album_id": "72157623988073332", "longitude": "-121.556988", "url_o": "https://farm5.staticflickr.com/4032/4577436046_f652a32f2e_o.jpg", "secret": "79c4387607", "media": "photo", "latitude": "45.636824", "id": "4577436046", "tags": "camera wedding usa selfportrait oregon photobooth photographer flash jennie puffer odell weddingreception weddingphotographer lightsphere amancay maahs klinke canonef28135mmf3556isusm secondshooter assistantphotographer garyfonglightsphere canon40d garyfongpuffer summitbuilding amancaymaahsphotography canonspeedlite430exii garyfongcollapsiblelightsphere hoodrivercountyfairgrounds hoodrivercountyfairgroundssummitbuiding photoboothbyemilyrizzi weddingreceptionphotobooth"}, {"datetaken": "2010-05-01 20:21:58", "license": "3", "title": "Amancay Maahs Photography [Take 2]", "text": "", "album_id": "72157623988073332", "longitude": "-121.556988", "url_o": "https://farm4.staticflickr.com/3337/4576803023_9cdb95b7f2_o.jpg", "secret": "30ecb28881", "media": "photo", "latitude": "45.636824", "id": "4576803023", "tags": "camera wedding usa selfportrait oregon photobooth photographer flash jennie puffer odell weddingreception weddingphotographer lightsphere amancay maahs klinke canonef28135mmf3556isusm secondshooter assistantphotographer garyfonglightsphere canon40d garyfongpuffer summitbuilding amancaymaahsphotography canonspeedlite430exii garyfongcollapsiblelightsphere hoodrivercountyfairgrounds hoodrivercountyfairgroundssummitbuiding photoboothbyemilyrizzi weddingreceptionphotobooth"}, {"datetaken": "2010-05-01 20:31:23", "license": "3", "title": "Daddy's Girl", "text": "", "album_id": "72157623988073332", "longitude": "-121.556988", "url_o": "https://farm5.staticflickr.com/4070/4673425428_5ceef932ba_o.jpg", "secret": "47a5993946", "media": "photo", "latitude": "45.636824", "id": "4673425428", "tags": "usa oregon flash odell lightsphere canonef28135mmf3556isusm garyfonglightsphere canon40d canonspeedlite430exii garyfongcollapsiblelightsphere"}, {"datetaken": "2010-05-01 20:39:00", "license": "3", "title": "Sisterhood", "text": "", "album_id": "72157623988073332", "longitude": "-121.556988", "url_o": "https://farm5.staticflickr.com/4069/4577436166_d30538fdeb_o.jpg", "secret": "0108d1c219", "media": "photo", "latitude": "45.636824", "id": "4577436166", "tags": "wood wedding usa selfportrait oregon photobooth photographer sister bridesmaid odell canela weddingreception weddingphotographer amancay maahs summitbuilding amancaymaahsphotography hoodrivercountyfairgrounds hoodrivercountyfairgroundssummitbuiding photoboothbyemilyrizzi weddingreceptionphotobooth"}, {"datetaken": "2011-07-30 03:00:22", "license": "1", "title": "Yakuza photo", "text": "", "album_id": "72157627275106773", "longitude": "-118.545512", "url_o": "https://farm7.staticflickr.com/6062/6028493824_7c4b551c3d_o.jpg", "secret": "048ea4f9d2", "media": "photo", "latitude": "34.040397", "id": "6028493824", "tags": "wedding"}, {"datetaken": "2011-07-30 03:08:07", "license": "1", "title": "Pretty good string section", "text": "", "album_id": "72157627275106773", "longitude": "-118.545706", "url_o": "https://farm7.staticflickr.com/6082/6028494956_d0d2e9809a_o.jpg", "secret": "af330c7897", "media": "photo", "latitude": "34.040322", "id": "6028494956", "tags": "wedding music live strings"}, {"datetaken": "2011-07-30 03:09:16", "license": "1", "title": "Surprise shot", "text": "", "album_id": "72157627275106773", "longitude": "-118.545667", "url_o": "https://farm7.staticflickr.com/6147/6028495820_f311e6d372_o.jpg", "secret": "6e54e0166b", "media": "photo", "latitude": "34.040375", "id": "6028495820", "tags": "wedding"}, {"datetaken": "2011-07-30 03:24:21", "license": "1", "title": "Nice suit", "text": "", "album_id": "72157627275106773", "longitude": "-118.545650", "url_o": "https://farm7.staticflickr.com/6075/6027944633_b4c13c2a0f_o.jpg", "secret": "24e56c4702", "media": "photo", "latitude": "34.040405", "id": "6027944633", "tags": "wedding groom suit"}, {"datetaken": "2011-07-30 03:28:34", "license": "1", "title": "Here comes the bride", "text": "", "album_id": "72157627275106773", "longitude": "-118.545653", "url_o": "https://farm7.staticflickr.com/6140/6027945177_5658e8cd73_o.jpg", "secret": "babacfb124", "media": "photo", "latitude": "34.040400", "id": "6027945177", "tags": "wedding bride"}, {"datetaken": "2011-07-30 03:30:30", "license": "1", "title": "They'll be fine", "text": "", "album_id": "72157627275106773", "longitude": "-118.545656", "url_o": "https://farm7.staticflickr.com/6069/6027945529_1838a985b2_o.jpg", "secret": "84010bd455", "media": "photo", "latitude": "34.040397", "id": "6027945529", "tags": "wedding groom bride"}, {"datetaken": "2011-07-30 03:40:45", "license": "1", "title": "Stop the cameras", "text": "", "album_id": "72157627275106773", "longitude": "-118.545664", "url_o": "https://farm7.staticflickr.com/6197/6028498298_aa2618f3f4_o.jpg", "secret": "658909dee0", "media": "photo", "latitude": "34.040397", "id": "6028498298", "tags": "wedding groom bride"}, {"datetaken": "2011-07-30 03:44:01", "license": "1", "title": "Pouring sand", "text": "", "album_id": "72157627275106773", "longitude": "-118.545664", "url_o": "https://farm7.staticflickr.com/6064/6028499118_ee87d0ab21_o.jpg", "secret": "d4526d9a5e", "media": "photo", "latitude": "34.040394", "id": "6028499118", "tags": "wedding groom bride"}, {"datetaken": "2011-07-30 03:45:00", "license": "1", "title": "With the inlaws", "text": "", "album_id": "72157627275106773", "longitude": "-118.545664", "url_o": "https://farm7.staticflickr.com/6077/6028499874_cd53e9d898_o.jpg", "secret": "9e1bf66752", "media": "photo", "latitude": "34.040394", "id": "6028499874", "tags": "wedding groom bride"}, {"datetaken": "2011-07-30 03:46:50", "license": "1", "title": "Husband and wife", "text": "", "album_id": "72157627275106773", "longitude": "-118.545614", "url_o": "https://farm7.staticflickr.com/6137/6027948649_7b4948fc66_o.jpg", "secret": "76aa5e7cd2", "media": "photo", "latitude": "34.040333", "id": "6027948649", "tags": "wedding groom bride"}, {"datetaken": "2011-07-30 03:50:31", "license": "1", "title": "Carnell and Hun", "text": "", "album_id": "72157627275106773", "longitude": "-118.545387", "url_o": "https://farm7.staticflickr.com/6128/6028501588_18d54d4f88_o.jpg", "secret": "77047564db", "media": "photo", "latitude": "34.040225", "id": "6028501588", "tags": "wedding"}, {"datetaken": "2011-07-30 03:51:12", "license": "1", "title": "Randy and Jasmine", "text": "", "album_id": "72157627275106773", "longitude": "-118.545367", "url_o": "https://farm7.staticflickr.com/6079/6027950729_eb18b87fc8_o.jpg", "secret": "6095bf37d9", "media": "photo", "latitude": "34.040247", "id": "6027950729", "tags": "wedding"}, {"datetaken": "2011-07-30 03:52:40", "license": "1", "title": "I kinda liked this group shot best", "text": "", "album_id": "72157627275106773", "longitude": "-118.545520", "url_o": "https://farm7.staticflickr.com/6134/6027951663_ab6a6da680_o.jpg", "secret": "cc3bbb1b62", "media": "photo", "latitude": "34.040269", "id": "6027951663", "tags": "wedding"}, {"datetaken": "2011-07-30 03:53:32", "license": "1", "title": "I probably made some stupid joke", "text": "", "album_id": "72157627275106773", "longitude": "-118.545512", "url_o": "https://farm7.staticflickr.com/6139/6027952517_49af066d8b_o.jpg", "secret": "eb5e3e79da", "media": "photo", "latitude": "34.040180", "id": "6027952517", "tags": "wedding"}, {"datetaken": "2011-07-30 03:57:39", "license": "1", "title": "Assume the position", "text": "", "album_id": "72157627275106773", "longitude": "-118.545523", "url_o": "https://farm7.staticflickr.com/6138/6028505058_2b788ee446_o.jpg", "secret": "ed6c0346db", "media": "photo", "latitude": "34.040330", "id": "6028505058", "tags": "wedding"}, {"datetaken": "2011-07-30 04:39:42", "license": "1", "title": "Nice venue", "text": "", "album_id": "72157627275106773", "longitude": "-118.545731", "url_o": "https://farm7.staticflickr.com/6194/6027953923_a588fa1768_o.jpg", "secret": "8932bd5d5b", "media": "photo", "latitude": "34.040408", "id": "6027953923", "tags": "wedding"}, {"datetaken": "2011-07-30 04:55:04", "license": "1", "title": "Everyone focused on one camera", "text": "", "album_id": "72157627275106773", "longitude": "-118.545678", "url_o": "https://farm7.staticflickr.com/6123/6028506562_6b35f784fe_o.jpg", "secret": "f93245b14f", "media": "photo", "latitude": "34.040438", "id": "6028506562", "tags": "wedding bride"}, {"datetaken": "2011-07-30 04:55:49", "license": "1", "title": "The meet and greet", "text": "", "album_id": "72157627275106773", "longitude": "-118.545678", "url_o": "https://farm7.staticflickr.com/6144/6028507330_2f52f0cae0_o.jpg", "secret": "0f9fda9ee1", "media": "photo", "latitude": "34.040438", "id": "6028507330", "tags": "wedding bride"}, {"datetaken": "2011-07-30 04:56:26", "license": "1", "title": "Hanging with the bride", "text": "", "album_id": "72157627275106773", "longitude": "-118.545681", "url_o": "https://farm7.staticflickr.com/6205/6028507684_430766bf4e_o.jpg", "secret": "d73b97538e", "media": "photo", "latitude": "34.040436", "id": "6028507684", "tags": "wedding bride"}, {"datetaken": "2011-07-30 04:57:27", "license": "1", "title": "The work crew", "text": "", "album_id": "72157627275106773", "longitude": "-118.545684", "url_o": "https://farm7.staticflickr.com/6066/6027956657_7e0ece353c_o.jpg", "secret": "c39d442b07", "media": "photo", "latitude": "34.040436", "id": "6027956657", "tags": "wedding groom bride"}, {"datetaken": "2011-07-30 05:09:39", "license": "1", "title": "Entrance", "text": "", "album_id": "72157627275106773", "longitude": "-118.545706", "url_o": "https://farm7.staticflickr.com/6191/6028508664_5c8db4704b_o.jpg", "secret": "8573811843", "media": "photo", "latitude": "34.040411", "id": "6028508664", "tags": "wedding bw entrance"}, {"datetaken": "2011-07-30 05:12:42", "license": "1", "title": "The first dance", "text": "", "album_id": "72157627275106773", "longitude": "-118.545706", "url_o": "https://farm7.staticflickr.com/6063/6028508754_18609ef215_o.jpg", "secret": "d7b6e8c33b", "media": "photo", "latitude": "34.040400", "id": "6028508754", "tags": "wedding bw groom bride dance"}, {"datetaken": "2011-07-30 05:23:59", "license": "1", "title": "Center pieces", "text": "", "album_id": "72157627275106773", "longitude": "-118.545712", "url_o": "https://farm7.staticflickr.com/6076/6028509684_7a4f5b5d62_o.jpg", "secret": "5da2a097af", "media": "photo", "latitude": "34.040400", "id": "6028509684", "tags": "wedding"}, {"datetaken": "2011-07-30 05:26:36", "license": "1", "title": "The Menu", "text": "", "album_id": "72157627275106773", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6071/6027958561_28c7bd47d8_o.jpg", "secret": "6eae6da22a", "media": "photo", "latitude": "0", "id": "6027958561", "tags": "wedding"}, {"datetaken": "2011-07-30 05:30:36", "license": "1", "title": "Neat idea", "text": "", "album_id": "72157627275106773", "longitude": "-118.545714", "url_o": "https://farm7.staticflickr.com/6072/6027959303_0735464864_o.jpg", "secret": "026ddc9d56", "media": "photo", "latitude": "34.040375", "id": "6027959303", "tags": "wedding candy partyfavors"}, {"datetaken": "2011-07-30 05:35:11", "license": "1", "title": "Caaaake", "text": "", "album_id": "72157627275106773", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6196/6028512384_90ca39c531_o.jpg", "secret": "97a16f40f8", "media": "photo", "latitude": "0", "id": "6028512384", "tags": "wedding cake"}, {"datetaken": "2011-07-30 06:32:26", "license": "1", "title": "For the lulz", "text": "", "album_id": "72157627275106773", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6137/6027960719_402a6b4f65_o.jpg", "secret": "bcabb29747", "media": "photo", "latitude": "0", "id": "6027960719", "tags": "wedding bride shoes toes paint hellokitty nails"}, {"datetaken": "2011-07-30 06:58:48", "license": "1", "title": "Using his teeth", "text": "", "album_id": "72157627275106773", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6063/6028513522_9e15c68c95_o.jpg", "secret": "763c6de1d7", "media": "photo", "latitude": "0", "id": "6028513522", "tags": "wedding groom bride teeth"}, {"datetaken": "2011-07-30 08:07:45", "license": "1", "title": "In the mix", "text": "", "album_id": "72157627275106773", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6133/6028514294_a8733e2589_o.jpg", "secret": "982f776d46", "media": "photo", "latitude": "0", "id": "6028514294", "tags": "wedding music dj spinning"}, {"datetaken": "2011-07-30 08:22:16", "license": "1", "title": "Photobooth props", "text": "", "album_id": "72157627275106773", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6188/6027962881_f3ca768f93_o.jpg", "secret": "f2b2a8c8db", "media": "photo", "latitude": "0", "id": "6027962881", "tags": "wedding goofy"}, {"datetaken": "2011-07-30 08:55:13", "license": "1", "title": "Best action shot from the wedding", "text": "", "album_id": "72157627275106773", "longitude": "-118.155806", "url_o": "https://farm7.staticflickr.com/6078/6028515946_d6a86215b7_o.jpg", "secret": "ce0d1c5c86", "media": "photo", "latitude": "34.060111", "id": "6028515946", "tags": "wedding groom bride dancing action"}, {"datetaken": "2012-01-18 00:07:31", "license": "4", "title": "cross", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6718703211_e8a2209409_o.png", "secret": "236a11e938", "media": "photo", "latitude": "0", "id": "6718703211", "tags": ""}, {"datetaken": "2012-01-18 00:07:33", "license": "4", "title": "hair", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7162/6718703297_44852ca43e_o.png", "secret": "187e18d9c7", "media": "photo", "latitude": "0", "id": "6718703297", "tags": ""}, {"datetaken": "2012-01-18 00:07:36", "license": "4", "title": "rose", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7170/6718703469_24902659e2_o.png", "secret": "cb3b9bab81", "media": "photo", "latitude": "0", "id": "6718703469", "tags": ""}, {"datetaken": "2012-01-18 00:07:38", "license": "4", "title": "makeup", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7024/6718703583_34cea32ee1_o.png", "secret": "4c2f0f2cd3", "media": "photo", "latitude": "0", "id": "6718703583", "tags": ""}, {"datetaken": "2012-01-18 00:07:42", "license": "4", "title": "lip", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7142/6718703743_a65f7ea1a8_o.png", "secret": "5f31411280", "media": "photo", "latitude": "0", "id": "6718703743", "tags": ""}, {"datetaken": "2012-01-18 00:07:44", "license": "4", "title": "dress", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7155/6718703859_1802ba11f0_o.png", "secret": "3b1155022e", "media": "photo", "latitude": "0", "id": "6718703859", "tags": ""}, {"datetaken": "2012-01-18 00:07:45", "license": "4", "title": "flowers", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7154/6718703921_62085d6876_o.png", "secret": "5b84162f24", "media": "photo", "latitude": "0", "id": "6718703921", "tags": ""}, {"datetaken": "2012-01-18 00:07:47", "license": "4", "title": "flame", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7002/6718704011_ded7669620_o.png", "secret": "2cd278e9e6", "media": "photo", "latitude": "0", "id": "6718704011", "tags": ""}, {"datetaken": "2012-01-18 00:07:48", "license": "4", "title": "pin", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7166/6718704107_cdbb9a4c79_o.png", "secret": "f9e3d72856", "media": "photo", "latitude": "0", "id": "6718704107", "tags": ""}, {"datetaken": "2012-01-18 00:07:50", "license": "4", "title": "flower girl", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7017/6718704179_be5e9c25a9_o.png", "secret": "7c5fbdc762", "media": "photo", "latitude": "0", "id": "6718704179", "tags": ""}, {"datetaken": "2012-01-18 00:07:51", "license": "4", "title": "first look", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7175/6718704241_71ea64baba_o.png", "secret": "21feef3029", "media": "photo", "latitude": "0", "id": "6718704241", "tags": ""}, {"datetaken": "2012-01-18 00:07:53", "license": "4", "title": "smile", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7175/6718704319_aa40dd5d4b_o.png", "secret": "912e4f8a38", "media": "photo", "latitude": "0", "id": "6718704319", "tags": ""}, {"datetaken": "2012-01-18 00:07:55", "license": "4", "title": "candle", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7169/6718704441_03b5e5d020_o.png", "secret": "d7cee9b6d4", "media": "photo", "latitude": "0", "id": "6718704441", "tags": ""}, {"datetaken": "2012-01-18 00:07:58", "license": "4", "title": "bride", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7019/6718704573_5bc1bf75c5_o.png", "secret": "e9881133e7", "media": "photo", "latitude": "0", "id": "6718704573", "tags": ""}, {"datetaken": "2012-01-18 00:08:00", "license": "4", "title": "party", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6718704721_34f1607c45_o.png", "secret": "0ac6702125", "media": "photo", "latitude": "0", "id": "6718704721", "tags": ""}, {"datetaken": "2012-01-18 00:08:02", "license": "4", "title": "entrance", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7024/6718704785_f6ec09ae23_o.png", "secret": "18cdd7e533", "media": "photo", "latitude": "0", "id": "6718704785", "tags": ""}, {"datetaken": "2012-01-18 00:08:04", "license": "4", "title": "footing", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7012/6718704881_1d209745e2_o.png", "secret": "64f6abfbdc", "media": "photo", "latitude": "0", "id": "6718704881", "tags": ""}, {"datetaken": "2012-01-18 00:08:06", "license": "4", "title": "vows", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7008/6718704979_a9d372a7e4_o.png", "secret": "f0a5ce9163", "media": "photo", "latitude": "0", "id": "6718704979", "tags": ""}, {"datetaken": "2012-01-18 00:08:07", "license": "4", "title": "church", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6718705067_5221f5e10a_o.png", "secret": "6868cd2773", "media": "photo", "latitude": "0", "id": "6718705067", "tags": ""}, {"datetaken": "2012-01-18 00:08:09", "license": "4", "title": "unity", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7152/6718705143_1b9f4796c2_o.png", "secret": "64115b2442", "media": "photo", "latitude": "0", "id": "6718705143", "tags": ""}, {"datetaken": "2012-01-18 00:08:11", "license": "4", "title": "shoe", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6718705255_7707bfb7c0_o.png", "secret": "c3ac5e14ba", "media": "photo", "latitude": "0", "id": "6718705255", "tags": ""}, {"datetaken": "2012-01-18 00:08:13", "license": "4", "title": "reception", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6718705357_5af8e127ef_o.png", "secret": "38d6779435", "media": "photo", "latitude": "0", "id": "6718705357", "tags": ""}, {"datetaken": "2012-01-18 00:08:16", "license": "4", "title": "entrance", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7170/6718705507_0d1c1943f1_o.png", "secret": "c1b05d7ceb", "media": "photo", "latitude": "0", "id": "6718705507", "tags": ""}, {"datetaken": "2012-01-18 00:08:19", "license": "4", "title": "head table", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7158/6718705701_2a29124a1b_o.png", "secret": "cf29f62d30", "media": "photo", "latitude": "0", "id": "6718705701", "tags": ""}, {"datetaken": "2012-01-18 00:08:22", "license": "4", "title": "carriage", "text": "", "album_id": "72157628921838053", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7165/6718705885_9a442936c0_o.png", "secret": "3e5dc6a27e", "media": "photo", "latitude": "0", "id": "6718705885", "tags": ""}, {"datetaken": "2007-02-17 12:04:39", "license": "4", "title": "P1020161", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/393835512_53cc3d6fca_o.jpg", "secret": "53cc3d6fca", "media": "photo", "latitude": "0", "id": "393835512", "tags": "wedding party picnik"}, {"datetaken": "2007-02-17 12:06:36", "license": "4", "title": "P1020163", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/393835611_78863b5940_o.jpg", "secret": "78863b5940", "media": "photo", "latitude": "0", "id": "393835611", "tags": "wedding party dinner french"}, {"datetaken": "2007-02-17 12:10:59", "license": "4", "title": "P1020171", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/393835783_9cd650a2b9_o.jpg", "secret": "9cd650a2b9", "media": "photo", "latitude": "0", "id": "393835783", "tags": "wedding party"}, {"datetaken": "2007-02-17 12:15:01", "license": "4", "title": "P1020180", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/393835902_5f45eaf44c_o.jpg", "secret": "5f45eaf44c", "media": "photo", "latitude": "0", "id": "393835902", "tags": "wedding friends party flower rose colleagues"}, {"datetaken": "2007-02-17 12:21:14", "license": "4", "title": "P1020185", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/393836113_6cf46a3c77_o.jpg", "secret": "6cf46a3c77", "media": "photo", "latitude": "0", "id": "393836113", "tags": "wedding party cake dessert weddingcake"}, {"datetaken": "2007-02-17 12:21:20", "license": "4", "title": "P1020188", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/393836217_17c05c091a_o.jpg", "secret": "17c05c091a", "media": "photo", "latitude": "0", "id": "393836217", "tags": "wedding party cake dessert weddingcake"}, {"datetaken": "2007-02-17 12:22:54", "license": "4", "title": "P1020200", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/393836652_15a6ac4370_o.jpg", "secret": "15a6ac4370", "media": "photo", "latitude": "0", "id": "393836652", "tags": "wedding party ring weddingring"}, {"datetaken": "2007-02-17 12:28:38", "license": "4", "title": "P1020238", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/393837278_eda1c78cdc_o.jpg", "secret": "eda1c78cdc", "media": "photo", "latitude": "0", "id": "393837278", "tags": "wedding party dinner french"}, {"datetaken": "2007-02-17 12:28:48", "license": "4", "title": "P1020239", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/393837405_ae8c878632_o.jpg", "secret": "ae8c878632", "media": "photo", "latitude": "0", "id": "393837405", "tags": "wedding party dinner french"}, {"datetaken": "2007-02-17 12:40:26", "license": "4", "title": "P1020244", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/393837503_066905426b_o.jpg", "secret": "066905426b", "media": "photo", "latitude": "0", "id": "393837503", "tags": "wedding party dinner french"}, {"datetaken": "2007-02-17 12:41:12", "license": "4", "title": "P1020246", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/393837634_704d6b6c95_o.jpg", "secret": "704d6b6c95", "media": "photo", "latitude": "0", "id": "393837634", "tags": "wedding party dinner french"}, {"datetaken": "2007-02-17 12:41:16", "license": "4", "title": "P1020247", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/393837745_35d3e51d24_o.jpg", "secret": "35d3e51d24", "media": "photo", "latitude": "0", "id": "393837745", "tags": "wedding party dinner french"}, {"datetaken": "2007-02-17 12:57:02", "license": "4", "title": "P1020256", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/393837894_d4b49cb2bb_o.jpg", "secret": "d4b49cb2bb", "media": "photo", "latitude": "0", "id": "393837894", "tags": "wedding party dinner french"}, {"datetaken": "2007-02-17 12:57:12", "license": "4", "title": "P1020260", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/393838036_a0fc6080ff_o.jpg", "secret": "a0fc6080ff", "media": "photo", "latitude": "0", "id": "393838036", "tags": "wedding party dinner french"}, {"datetaken": "2007-02-17 13:17:09", "license": "4", "title": "P1020264", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/393838184_24940a2d4e_o.jpg", "secret": "24940a2d4e", "media": "photo", "latitude": "0", "id": "393838184", "tags": "wedding party dinner french dessert"}, {"datetaken": "2007-02-17 13:27:52", "license": "4", "title": "P1020270", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/393838306_377c847705_o.jpg", "secret": "377c847705", "media": "photo", "latitude": "0", "id": "393838306", "tags": "wedding party dinner french"}, {"datetaken": "2007-02-17 13:28:01", "license": "4", "title": "P1020272", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/393838435_44b642c2cc_o.jpg", "secret": "44b642c2cc", "media": "photo", "latitude": "0", "id": "393838435", "tags": "wedding party dinner french"}, {"datetaken": "2007-02-17 13:28:42", "license": "4", "title": "P1020278", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/393838546_d7baa031a0_o.jpg", "secret": "d7baa031a0", "media": "photo", "latitude": "0", "id": "393838546", "tags": "wedding party"}, {"datetaken": "2007-02-17 13:29:41", "license": "4", "title": "P1020280", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/393838675_69977ea6f5_o.jpg", "secret": "69977ea6f5", "media": "photo", "latitude": "0", "id": "393838675", "tags": "wedding party"}, {"datetaken": "2007-02-17 13:59:09", "license": "4", "title": "P1020291", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/393839369_4b14732140_o.jpg", "secret": "4b14732140", "media": "photo", "latitude": "0", "id": "393839369", "tags": "wedding party dinner french dessert"}, {"datetaken": "2007-02-17 13:59:16", "license": "4", "title": "P1020292", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/393839485_dc9d044eaa_o.jpg", "secret": "dc9d044eaa", "media": "photo", "latitude": "0", "id": "393839485", "tags": "wedding party dinner french dessert"}, {"datetaken": "2007-02-17 14:00:26", "license": "4", "title": "P1020295", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/393839633_0bdf1e3b99_o.jpg", "secret": "0bdf1e3b99", "media": "photo", "latitude": "0", "id": "393839633", "tags": "wedding party dinner french dessert"}, {"datetaken": "2007-02-17 14:07:45", "license": "4", "title": "P1020299", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/393839760_4fe2481592_o.jpg", "secret": "4fe2481592", "media": "photo", "latitude": "0", "id": "393839760", "tags": "wedding party dinner french dessert"}, {"datetaken": "2007-02-17 14:13:57", "license": "4", "title": "P1020301", "text": "", "album_id": "72157594541988863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/393839880_fa346124b7_o.jpg", "secret": "fa346124b7", "media": "photo", "latitude": "0", "id": "393839880", "tags": "wedding party"}, {"datetaken": "2004-11-19 13:09:46", "license": "2", "title": "o'hare", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1578492_a2e9847340_o.jpg", "secret": "a2e9847340", "media": "photo", "latitude": "0", "id": "1578492", "tags": "cameraphone"}, {"datetaken": "2004-11-19 18:42:59", "license": "2", "title": "sunset from the plane", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1582719_8774205292_o.jpg", "secret": "8774205292", "media": "photo", "latitude": "0", "id": "1582719", "tags": "cameraphone"}, {"datetaken": "2004-11-19 20:27:44", "license": "2", "title": "me & lauren out on the town", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1584046_21a8efd2f8_o.jpg", "secret": "21a8efd2f8", "media": "photo", "latitude": "0", "id": "1584046", "tags": "cameraphone"}, {"datetaken": "2004-11-19 22:20:08", "license": "2", "title": "dad in repose", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1585229_2310f9d520_o.jpg", "secret": "2310f9d520", "media": "photo", "latitude": "0", "id": "1585229", "tags": "cameraphone"}, {"datetaken": "2004-11-19 22:25:34", "license": "2", "title": "mom on scotch 5", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1585294_d2043df265_o.jpg", "secret": "d2043df265", "media": "photo", "latitude": "0", "id": "1585294", "tags": "cameraphone"}, {"datetaken": "2004-11-19 22:34:01", "license": "2", "title": "mom's hands on fire", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1585406_abbd3c8216_o.jpg", "secret": "abbd3c8216", "media": "photo", "latitude": "0", "id": "1585406", "tags": "cameraphone"}, {"datetaken": "2004-11-20 12:10:32", "license": "2", "title": "house party!", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1595816_3b30bc17f3_o.jpg", "secret": "3b30bc17f3", "media": "photo", "latitude": "0", "id": "1595816", "tags": "cameraphone"}, {"datetaken": "2004-11-20 12:13:43", "license": "2", "title": "lauren loves boys", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1595850_0d398665b8_o.jpg", "secret": "0d398665b8", "media": "photo", "latitude": "0", "id": "1595850", "tags": "cameraphone"}, {"datetaken": "2004-11-20 14:50:01", "license": "2", "title": "grammy", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1598971_5a37865da2_o.jpg", "secret": "5a37865da2", "media": "photo", "latitude": "0", "id": "1598971", "tags": "cameraphone"}, {"datetaken": "2004-11-20 15:23:44", "license": "2", "title": "dinner", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1599510_51febc72fa_o.jpg", "secret": "51febc72fa", "media": "photo", "latitude": "0", "id": "1599510", "tags": "cameraphone"}, {"datetaken": "2004-11-20 15:27:21", "license": "2", "title": "wedding cake", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1599611_5e3c43ef3f_o.jpg", "secret": "5e3c43ef3f", "media": "photo", "latitude": "0", "id": "1599611", "tags": "cameraphone"}, {"datetaken": "2004-11-20 15:42:46", "license": "2", "title": "the only way to deal with texas", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1599836_14f6660726_o.jpg", "secret": "14f6660726", "media": "photo", "latitude": "0", "id": "1599836", "tags": "cameraphone"}, {"datetaken": "2004-11-20 16:29:36", "license": "2", "title": "me in a suit!", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1600558_df42de7432_o.jpg", "secret": "df42de7432", "media": "photo", "latitude": "0", "id": "1600558", "tags": "cameraphone"}, {"datetaken": "2004-11-20 16:40:53", "license": "2", "title": "garter toss", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1600799_9d8dfcb0c6_o.jpg", "secret": "9d8dfcb0c6", "media": "photo", "latitude": "0", "id": "1600799", "tags": "cameraphone"}, {"datetaken": "2004-11-20 17:13:51", "license": "2", "title": "mark & dana", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1601495_57cbef6673_o.jpg", "secret": "57cbef6673", "media": "photo", "latitude": "0", "id": "1601495", "tags": "cameraphone"}, {"datetaken": "2004-11-20 17:57:34", "license": "2", "title": "lauren", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18256458_275ea24dc6_o.jpg", "secret": "275ea24dc6", "media": "photo", "latitude": "0", "id": "18256458", "tags": "wedding austin texas"}, {"datetaken": "2004-11-20 18:02:00", "license": "2", "title": "grammy & mike", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18256469_b605da5740_o.jpg", "secret": "b605da5740", "media": "photo", "latitude": "0", "id": "18256469", "tags": ""}, {"datetaken": "2004-11-20 18:31:17", "license": "2", "title": "not in new york anymore", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1602621_b0ed15a521_o.jpg", "secret": "b0ed15a521", "media": "photo", "latitude": "0", "id": "1602621", "tags": "cameraphone"}, {"datetaken": "2004-11-20 18:54:22", "license": "2", "title": "mom & dad", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18256498_32abaac077_o.jpg", "secret": "32abaac077", "media": "photo", "latitude": "0", "id": "18256498", "tags": ""}, {"datetaken": "2004-11-20 18:59:25", "license": "2", "title": "mark & dana", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18256518_befd6f05d7_o.jpg", "secret": "befd6f05d7", "media": "photo", "latitude": "0", "id": "18256518", "tags": ""}, {"datetaken": "2004-11-20 19:29:28", "license": "2", "title": "sue, lynne, mom, grammy", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18256537_a8a1f5c47b_o.jpg", "secret": "a8a1f5c47b", "media": "photo", "latitude": "0", "id": "18256537", "tags": ""}, {"datetaken": "2004-11-20 19:29:44", "license": "2", "title": "mom's family", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18256563_79fb772dde_o.jpg", "secret": "79fb772dde", "media": "photo", "latitude": "0", "id": "18256563", "tags": ""}, {"datetaken": "2004-11-20 19:30:38", "license": "2", "title": "more family", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18256580_77e2e8433e_o.jpg", "secret": "77e2e8433e", "media": "photo", "latitude": "0", "id": "18256580", "tags": ""}, {"datetaken": "2004-11-20 19:32:39", "license": "2", "title": "family", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18256611_9f542107a4_o.jpg", "secret": "9f542107a4", "media": "photo", "latitude": "0", "id": "18256611", "tags": ""}, {"datetaken": "2004-11-20 20:04:09", "license": "2", "title": "sue", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18256646_425f83940c_o.jpg", "secret": "425f83940c", "media": "photo", "latitude": "0", "id": "18256646", "tags": ""}, {"datetaken": "2004-11-20 20:05:10", "license": "2", "title": "dad mark dana", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18256673_6397758e4c_o.jpg", "secret": "6397758e4c", "media": "photo", "latitude": "0", "id": "18256673", "tags": ""}, {"datetaken": "2004-11-20 20:21:54", "license": "2", "title": "mark n dana", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1604213_cf2c01a29b_o.jpg", "secret": "cf2c01a29b", "media": "photo", "latitude": "0", "id": "1604213", "tags": "cameraphone"}, {"datetaken": "2004-11-20 23:54:07", "license": "2", "title": "mark", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18256685_7dd2f9bca4_o.jpg", "secret": "7dd2f9bca4", "media": "photo", "latitude": "0", "id": "18256685", "tags": ""}, {"datetaken": "2004-11-20 23:54:33", "license": "2", "title": "dana", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18256699_a16321d05e_o.jpg", "secret": "a16321d05e", "media": "photo", "latitude": "0", "id": "18256699", "tags": ""}, {"datetaken": "2004-11-21 08:47:57", "license": "2", "title": "flowers in the boot", "text": "", "album_id": "41585", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1612710_4a0542dd27_o.jpg", "secret": "4a0542dd27", "media": "photo", "latitude": "0", "id": "1612710", "tags": "cameraphone"}, {"datetaken": "2004-08-05 10:21:25", "license": "3", "title": "beautiful gi", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/15/21206144_cd4bd55455_o.jpg", "secret": "cd4bd55455", "media": "photo", "latitude": "-31.398777", "id": "21206144", "tags": "wedding 2004 argentina civil c\u00f3rdoba august2004 gisela gansslen coconi august5 august52004"}, {"datetaken": "2004-08-05 10:25:20", "license": "3", "title": "civil attention", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/16/20981118_2e5b100e1f_o.jpg", "secret": "31aeb65ed5", "media": "photo", "latitude": "-31.398777", "id": "20981118", "tags": "wedding 2004 argentina groom bride ceremony civil c\u00f3rdoba cristian august2004 gansslen coconi august5 civilceremony august52004"}, {"datetaken": "2004-08-05 10:25:41", "license": "3", "title": "serious matter", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/16/21206155_295cabfca0_o.jpg", "secret": "295cabfca0", "media": "photo", "latitude": "-31.398777", "id": "21206155", "tags": "wedding 2004 argentina civil adrian liliana c\u00f3rdoba cristian eduardo august2004 elisa marianela gansslen coconi august5 august52004"}, {"datetaken": "2004-08-05 10:27:29", "license": "3", "title": "sign the dotted line...", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/16/21206179_e19e34117e_o.jpg", "secret": "e19e34117e", "media": "photo", "latitude": "-31.398777", "id": "21206179", "tags": "wedding 2004 argentina civil c\u00f3rdoba signing cristian august2004 gansslen coconi august5 august52004"}, {"datetaken": "2004-08-05 10:32:19", "license": "3", "title": "presidential pose", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/15/21206192_9831f71006_o.jpg", "secret": "9831f71006", "media": "photo", "latitude": "-31.398777", "id": "21206192", "tags": "wedding 2004 argentina groom bride ceremony civil c\u00f3rdoba cristian august2004 marianela gansslen coconi august5 civilceremony august52004"}, {"datetaken": "2004-08-05 10:34:13", "license": "3", "title": "civil standby", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/15/20981133_7c2f9564f5_o.jpg", "secret": "7c2f9564f5", "media": "photo", "latitude": "-31.398777", "id": "20981133", "tags": "wedding selfportrait 2004 argentina civil valeria c\u00f3rdoba august2004 pictureyourself photoblogged amancay maahs gansslen coconi vancauteren august5 august52004"}, {"datetaken": "2004-08-05 10:35:39", "license": "3", "title": "raining rice", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/17/21206196_45285fa254_o.jpg", "secret": "45285fa254", "media": "photo", "latitude": "-31.398777", "id": "21206196", "tags": "wedding 2004 argentina rice civil valeria c\u00f3rdoba cristian august2004 gisela marianela gansslen coconi vancauteren august5 august52004 throwingrice"}, {"datetaken": "2004-08-05 10:39:59", "license": "3", "title": "giddy gansslens", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/15/20981147_425c245f5e_o.jpg", "secret": "b2c53278b5", "media": "photo", "latitude": "-31.398777", "id": "20981147", "tags": "wedding 2004 argentina civil laugh adrian liliana c\u00f3rdoba cristian eduardo august2004 gisela photoblogged marianela gansslen coconi august5 august52004"}, {"datetaken": "2004-08-05 11:29:42", "license": "3", "title": "serious", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/16/21206200_69fe36821c_o.jpg", "secret": "69fe36821c", "media": "photo", "latitude": "-31.398777", "id": "21206200", "tags": "wedding red 2004 argentina breakfast civil photofriday c\u00f3rdoba cristian august2004 gansslen coconi august5 photofridayred august52004"}, {"datetaken": "2004-08-05 11:30:49", "license": "3", "title": "mother's comfort", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/15/21206209_2d71097436_o.jpg", "secret": "2d71097436", "media": "photo", "latitude": "-31.398777", "id": "21206209", "tags": "wedding 2004 argentina breakfast mom daughter mother civil c\u00f3rdoba august2004 elisa arau marianela gansslen coconi august5 christianphotographerfellowship themedphotoproject themedphotoprojectmom august52004 cpftppmom christianphotographerfellowshipthemedphotoproject christianphotographerfellowshipthemedphotoprojectmom familygetty2010"}, {"datetaken": "2004-08-05 11:31:27", "license": "3", "title": "last minute details", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/17/21206213_6304b82bec_o.jpg", "secret": "6304b82bec", "media": "photo", "latitude": "-31.398777", "id": "21206213", "tags": "wedding 2004 argentina breakfast mother son civil liliana c\u00f3rdoba cristian august2004 gansslen coconi august5 august52004 familygetty2010"}, {"datetaken": "2004-08-05 11:43:19", "license": "3", "title": "rest easy", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/17/20981158_5f80c90002_o.jpg", "secret": "5f80c90002", "media": "photo", "latitude": "-31.398777", "id": "20981158", "tags": "wedding sleeping red 2004 argentina beautiful breakfast sleep civil c\u00f3rdoba cristian august2004 photoblogged marianela gansslen coconi august5 august52004 msh0806 msh080617 someonesleepingwheretheyshouldn\u2019t"}, {"datetaken": "2004-08-06 21:10:19", "license": "3", "title": "159_5935_r1", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/15/20981169_96d4b59bdc_o.jpg", "secret": "96d4b59bdc", "media": "photo", "latitude": "-31.398777", "id": "20981169", "tags": "wedding 2004 church argentina beautiful groom bride lovely1 lovely c\u00f3rdoba cristian august2004 marianela desarrollofamiliar gansslen coconi august6 august62004"}, {"datetaken": "2004-08-06 21:45:12", "license": "3", "title": "159_5945_r1", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/17/20981170_f294ff2189_o.jpg", "secret": "f294ff2189", "media": "photo", "latitude": "-31.398777", "id": "20981170", "tags": "wedding blackandwhite bw 2004 church argentina beautiful groom bride lovely1 lovely c\u00f3rdoba cristian august2004 marianela desarrollofamiliar gansslen coconi august6 august62004 cmwd cmwdblackandwhite"}, {"datetaken": "2004-08-06 21:45:38", "license": "3", "title": "159_5946", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/17/20981179_ab923ae3aa_o.jpg", "secret": "ab923ae3aa", "media": "photo", "latitude": "-31.398777", "id": "20981179", "tags": "wedding 2004 church argentina sepia wonderful groom bride cool lovely1 jorge liliana lovely c\u00f3rdoba cristian eduardo august2004 elisa marianela desarrollofamiliar gansslen coconi august6 august62004"}, {"datetaken": "2004-08-06 21:46:11", "license": "3", "title": "the blessing", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/15/20981188_6a9ce13a0d_o.jpg", "secret": "6a9ce13a0d", "media": "photo", "latitude": "-31.398777", "id": "20981188", "tags": "wedding 2004 church argentina prayer pray jorge liliana c\u00f3rdoba cristian eduardo august2004 marianela desarrollofamiliar gansslen coconi august6 igot5 rhymeswithhair august62004"}, {"datetaken": "2004-08-06 22:00:00", "license": "3", "title": "159_5963", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/15/20981204_46e3acb621_o.jpg", "secret": "46e3acb621", "media": "photo", "latitude": "-31.398777", "id": "20981204", "tags": "wedding selfportrait 2004 church argentina adrian c\u00f3rdoba august2004 pictureyourself amancay maahs desarrollofamiliar gansslen coconi august6 august62004"}, {"datetaken": "2004-08-06 22:05:25", "license": "3", "title": "see!?", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/16/21206222_9c0e829385_o.jpg", "secret": "9c0e829385", "media": "photo", "latitude": "-31.398777", "id": "21206222", "tags": "wedding 2004 church argentina beautiful bride ring c\u00f3rdoba august2004 marianela desarrollofamiliar gansslen coconi august6 august62004"}, {"datetaken": "2004-08-06 22:06:02", "license": "3", "title": "Amigas", "text": "", "album_id": "72057594120703798", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3649/3566606028_b02cab203a_o.jpg", "secret": "9d57e51d14", "media": "photo", "latitude": "0", "id": "3566606028", "tags": "wedding church argentina canon bride powershot cordoba valeria s230 canonpowershots230 canonpowershot canons230 marianela amancay maahs desarrollofamiliar gansslen coconi vancauteren villafane churchceremony churchservice aldefam gansslenwedding gansslenweddingchurchceremony"}, {"datetaken": "2004-08-07 01:09:24", "license": "3", "title": "Nuestra Mesa", "text": "", "album_id": "72057594120703798", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3379/3565793163_3a74558f15_o.jpg", "secret": "38099c2925", "media": "photo", "latitude": "0", "id": "3565793163", "tags": "wedding laura argentina canon groom bride powershot reception cordoba valeria s230 alejandro cristian weddingreception canonpowershots230 canonpowershot krieger juanmanuel canons230 marianela amancay maahs gansslen coconi vancauteren carbonell mariasilvia gansslenwedding gansslenweddingreception"}, {"datetaken": "2004-08-07 01:10:49", "license": "3", "title": "Vale y Checha", "text": "", "album_id": "72057594120703798", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3405/3588450742_5426fa7c3d_o.jpg", "secret": "01051ca0a8", "media": "photo", "latitude": "0", "id": "3588450742", "tags": "wedding argentina canon powershot reception cordoba valeria s230 alejandro weddingreception canonpowershots230 canonpowershot krieger canons230 gansslen coconi vancauteren carbonell mariasilvia gansslenwedding gansslenweddingreception"}, {"datetaken": "2004-08-07 01:44:49", "license": "3", "title": "wedding party", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/17/21206233_0f0555c01e_o.jpg", "secret": "7e5fc8b83e", "media": "photo", "latitude": "-31.398777", "id": "21206233", "tags": "wedding 2004 argentina dance reception natalia c\u00f3rdoba ramiro cristian august2004 eugenia marianela gansslen coconi analia august7 lavaque august72004 rodriguezgonzalez"}, {"datetaken": "2004-08-07 01:45:41", "license": "3", "title": "159_5998", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/16/20981215_233da3739b_o.jpg", "secret": "f5626731c3", "media": "photo", "latitude": "-31.398777", "id": "20981215", "tags": "wedding selfportrait 2004 argentina atarmslength reception adrian c\u00f3rdoba august2004 pictureyourself amancay maahs gansslen coconi august7 august72004 dahiana"}, {"datetaken": "2004-08-07 01:46:15", "license": "3", "title": "prince adrian", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/16/21206240_266f7b8a16_o.jpg", "secret": "266f7b8a16", "media": "photo", "latitude": "-31.398777", "id": "21206240", "tags": "wedding 2004 argentina reception adrian c\u00f3rdoba august2004 gansslen coconi august7 august72004"}, {"datetaken": "2004-08-07 01:46:21", "license": "3", "title": "crazy couple", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/16/20981217_e8d292b8f7_o.jpg", "secret": "e8d292b8f7", "media": "photo", "latitude": "-31.398777", "id": "20981217", "tags": "wedding 2004 argentina hat groom bride reception c\u00f3rdoba cristian august2004 photoblogged marianela gansslen coconi august7 august72004"}, {"datetaken": "2004-08-07 01:46:48", "license": "3", "title": "party hats", "text": "", "album_id": "72057594120703798", "longitude": "-64.191055", "url_o": "https://farm1.staticflickr.com/16/21206249_2b8a9ba6db_o.jpg", "secret": "2b8a9ba6db", "media": "photo", "latitude": "-31.398777", "id": "21206249", "tags": "wedding 2004 argentina dance dancing reception natalia valeria c\u00f3rdoba august2004 peopledancing gansslen coconi vancauteren august7 msh0306 msh03062 august72004"}, {"datetaken": "2004-08-07 03:02:05", "license": "3", "title": "Amigos", "text": "", "album_id": "72057594120703798", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3356/3566606410_c1b1f3313c_o.jpg", "secret": "a1d34d8716", "media": "photo", "latitude": "0", "id": "3566606410", "tags": "wedding argentina canon groom powershot reception cordoba s230 cristian weddingreception canonpowershots230 canonpowershot canons230 amancay maahs gansslen gansslenwedding gansslenweddingreception"}, {"datetaken": "2004-07-23 14:01:02", "license": "3", "title": "Where is that Garter?", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106157_53db62f05b_o.jpg", "secret": "53db62f05b", "media": "photo", "latitude": "0", "id": "106157", "tags": "wedding scottandcolleen garter goldblatt"}, {"datetaken": "2004-07-23 14:01:05", "license": "3", "title": "All the Groomsmen and Ushers", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106158_2a5e1edbd1_o.jpg", "secret": "2a5e1edbd1", "media": "photo", "latitude": "0", "id": "106158", "tags": "wedding groomsmen ushers goldblatt"}, {"datetaken": "2004-07-23 14:01:10", "license": "3", "title": "All of the Bridesmaids", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106160_8fee458ba9_o.jpg", "secret": "8fee458ba9", "media": "photo", "latitude": "0", "id": "106160", "tags": "wedding colleen bridesmaids goldblatt"}, {"datetaken": "2004-07-23 14:01:23", "license": "3", "title": "Scott with the Guys I Swam with in High School", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106165_c7a3dbdcd6_o.jpg", "secret": "c7a3dbdcd6", "media": "photo", "latitude": "0", "id": "106165", "tags": "wedding berkeleyaquaticclub tristanformon dandougher mattbeardslee goldblatt"}, {"datetaken": "2004-07-23 14:01:41", "license": "3", "title": "Colleen with her Bridesmaids Before the Ceremony", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106171_228c321f97_o.jpg", "secret": "228c321f97", "media": "photo", "latitude": "0", "id": "106171", "tags": "wedding colleen bridesmaids goldblatt"}, {"datetaken": "2004-07-23 14:01:43", "license": "3", "title": "Colleen is About to Come Downstairs", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106172_f7bbd89ab6_o.jpg", "secret": "f7bbd89ab6", "media": "photo", "latitude": "0", "id": "106172", "tags": "wedding scottandcolleen goldblatt"}, {"datetaken": "2004-07-23 14:01:48", "license": "3", "title": "Colleen with her Brothers", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106174_ba1e1dd76a_o.jpg", "secret": "ba1e1dd76a", "media": "photo", "latitude": "0", "id": "106174", "tags": "wedding colleen michaelsheahan dougsheahan goldblatt"}, {"datetaken": "2004-07-23 14:01:51", "license": "3", "title": "Colleen with Erin and Jen", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106175_3fdaf4abb3_o.jpg", "secret": "3fdaf4abb3", "media": "photo", "latitude": "0", "id": "106175", "tags": "wedding colleen erinfenske jenbertels goldblatt"}, {"datetaken": "2004-07-23 14:21:51", "license": "3", "title": "Colleen with her Grandparents", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106218_f454b30919_o.jpg", "secret": "f454b30919", "media": "photo", "latitude": "0", "id": "106218", "tags": "wedding family colleen sheahan goldblatt"}, {"datetaken": "2004-07-23 14:21:53", "license": "3", "title": "Colleen with her Youngest Brother Michael", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106219_0b084787e9_o.jpg", "secret": "0b084787e9", "media": "photo", "latitude": "0", "id": "106219", "tags": "wedding family colleen michaelsheahan goldblatt"}, {"datetaken": "2004-07-23 14:21:56", "license": "3", "title": "Colleen with Wendi and Amber", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106220_b8ea3dc16f_o.jpg", "secret": "b8ea3dc16f", "media": "photo", "latitude": "0", "id": "106220", "tags": "wedding texas colleen amberwillemson wendimalley goldblatt"}, {"datetaken": "2004-07-23 14:21:58", "license": "3", "title": "Colleen", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106221_d95286e126_o.jpg", "secret": "d95286e126", "media": "photo", "latitude": "0", "id": "106221", "tags": "wedding family colleen goldblatt"}, {"datetaken": "2004-07-23 14:22:01", "license": "3", "title": "Colleen's Dad is Dancing", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106222_bb31ed3129_o.jpg", "secret": "bb31ed3129", "media": "photo", "latitude": "0", "id": "106222", "tags": "wedding family sheahan dancing dad goldblatt"}, {"datetaken": "2004-07-23 14:22:03", "license": "3", "title": "Colleen and Scott Cutting the Cake", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106223_0b288c401b_o.jpg", "secret": "0b288c401b", "media": "photo", "latitude": "0", "id": "106223", "tags": "wedding family scottandcolleen cake goldblatt"}, {"datetaken": "2004-07-23 14:22:06", "license": "3", "title": "Colleen Dances with her Dad", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106224_10769e2446_o.jpg", "secret": "10769e2446", "media": "photo", "latitude": "0", "id": "106224", "tags": "wedding family colleen billsheahan goldblatt"}, {"datetaken": "2004-07-23 14:22:09", "license": "3", "title": "Erin Fenske Caught the Bouquet", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106226_28abd3a2be_o.jpg", "secret": "28abd3a2be", "media": "photo", "latitude": "0", "id": "106226", "tags": "wedding texas colleen bouquettoss erinfenske goldblatt"}, {"datetaken": "2004-07-23 14:22:11", "license": "3", "title": "Colleen and Scott's First Dance", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106228_376ce2e866_o.jpg", "secret": "376ce2e866", "media": "photo", "latitude": "0", "id": "106228", "tags": "wedding family scottandcolleen firstdance goldblatt"}, {"datetaken": "2004-07-23 14:22:14", "license": "3", "title": "Colleen and Scott's First Drink as Husband and Wife", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106229_edbe1bc5b6_o.jpg", "secret": "edbe1bc5b6", "media": "photo", "latitude": "0", "id": "106229", "tags": "wedding family scottandcolleen firstdrink goldblatt"}, {"datetaken": "2004-07-23 14:22:18", "license": "3", "title": "Scott Seeing Colleen for the First Time", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106232_2770078bd1_o.jpg", "secret": "2770078bd1", "media": "photo", "latitude": "0", "id": "106232", "tags": "wedding family scottandcolleen firstsight goldblatt"}, {"datetaken": "2004-07-23 14:22:21", "license": "3", "title": "Scott and Colleen from Way Above", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106235_ab6dc3755f_o.jpg", "secret": "ab6dc3755f", "media": "photo", "latitude": "0", "id": "106235", "tags": "wedding family scottandcolleen goldblatt"}, {"datetaken": "2004-07-23 14:22:24", "license": "3", "title": "Scott and Colleen with the Wedding Party Behind Us", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106238_323dbb3227_o.jpg", "secret": "323dbb3227", "media": "photo", "latitude": "0", "id": "106238", "tags": "wedding family scottandcolleen weddingparty goldblatt"}, {"datetaken": "2004-07-23 14:22:27", "license": "3", "title": "The Garter has got to be Here Somewhere", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106240_408e4ce558_o.jpg", "secret": "408e4ce558", "media": "photo", "latitude": "0", "id": "106240", "tags": "wedding family scott gartertoss dandougher goldblatt"}, {"datetaken": "2004-07-23 14:22:29", "license": "3", "title": "Nick Caught the Garter", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106241_534670e3d3_o.jpg", "secret": "534670e3d3", "media": "photo", "latitude": "0", "id": "106241", "tags": "wedding family gartertoss nickdelouise scott goldblatt"}, {"datetaken": "2004-07-23 14:22:32", "license": "3", "title": "Into Each Other's Eyes", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106242_ade341a398_o.jpg", "secret": "ade341a398", "media": "photo", "latitude": "0", "id": "106242", "tags": "wedding family scottandcolleen goldblatt"}, {"datetaken": "2004-07-23 14:22:35", "license": "3", "title": "Look Out Down Below", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106243_96d05d5740_o.jpg", "secret": "96d05d5740", "media": "photo", "latitude": "0", "id": "106243", "tags": "wedding family groomsmen michaelmilberger dandougher dancanfield scott garyfriedman goldblatt"}, {"datetaken": "2004-07-23 14:22:37", "license": "3", "title": "Marsha and Bill Sheahan - Colleen's Parents", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106244_fe4bca8b2a_o.jpg", "secret": "fe4bca8b2a", "media": "photo", "latitude": "0", "id": "106244", "tags": "wedding family marshaandbill sheahan goldblatt"}, {"datetaken": "2004-07-23 14:22:40", "license": "3", "title": "Scott and Colleen", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106245_d2ad9119b3_o.jpg", "secret": "d2ad9119b3", "media": "photo", "latitude": "0", "id": "106245", "tags": "wedding family scottandcolleen goldblatt"}, {"datetaken": "2004-07-23 14:22:42", "license": "3", "title": "Scott and Lester", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106246_06da010145_o.jpg", "secret": "06da010145", "media": "photo", "latitude": "0", "id": "106246", "tags": "wedding family scott lestergoldblatt goldblatt"}, {"datetaken": "2004-07-23 14:22:45", "license": "3", "title": "Scott with Both Dads", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106247_485f7d1264_o.jpg", "secret": "485f7d1264", "media": "photo", "latitude": "0", "id": "106247", "tags": "wedding family scott lestergoldblatt billsheahan goldblatt"}, {"datetaken": "2004-07-23 14:22:47", "license": "3", "title": "Scott with his sister Lisa and brother Gary", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106248_fca40eee88_o.jpg", "secret": "fca40eee88", "media": "photo", "latitude": "0", "id": "106248", "tags": "wedding family lisafriedman garyfriedman scott goldblatt"}, {"datetaken": "2004-07-23 14:22:50", "license": "3", "title": "Scott", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106249_c2df31862e_o.jpg", "secret": "c2df31862e", "media": "photo", "latitude": "0", "id": "106249", "tags": "wedding family scott goldblatt"}, {"datetaken": "2004-07-23 14:22:53", "license": "3", "title": "Lester Goldblatt Dancing with Marsha Fais", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106250_46b83aa154_o.jpg", "secret": "46b83aa154", "media": "photo", "latitude": "0", "id": "106250", "tags": "wedding family lestergoldblatt marshafais goldblatt"}, {"datetaken": "2004-07-23 14:22:55", "license": "3", "title": "Colleen and her Dad", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106251_1ceef73c2c_o.jpg", "secret": "1ceef73c2c", "media": "photo", "latitude": "0", "id": "106251", "tags": "wedding family colleen billsheahan goldblatt"}, {"datetaken": "2004-07-23 14:22:58", "license": "3", "title": "Colleen with her Mom", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106252_0b3d122609_o.jpg", "secret": "0b3d122609", "media": "photo", "latitude": "0", "id": "106252", "tags": "wedding family colleen marshasheahan goldblatt"}, {"datetaken": "2004-07-23 14:23:00", "license": "3", "title": "Colleen with her Texas Friends", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106253_dc5b76cf72_o.jpg", "secret": "dc5b76cf72", "media": "photo", "latitude": "0", "id": "106253", "tags": "wedding texas amberwillemson erinfenske wendimalley colleen goldblatt"}, {"datetaken": "2004-07-23 14:23:03", "license": "3", "title": "Scott with his Texas Swimming Guys", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106254_f68732df38_o.jpg", "secret": "f68732df38", "media": "photo", "latitude": "0", "id": "106254", "tags": "wedding texasswimming scott natedusing bryanjones jamierauch goldblatt"}, {"datetaken": "2004-07-23 14:23:05", "license": "3", "title": "Scott Giving Colleen a Kiss", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106255_a7c0d05cc9_o.jpg", "secret": "a7c0d05cc9", "media": "photo", "latitude": "0", "id": "106255", "tags": "wedding family scottandcolleen kiss goldblatt"}, {"datetaken": "2004-07-23 14:23:08", "license": "3", "title": "The Imfamous YMCA Photo", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106256_f28cbcde4d_o.jpg", "secret": "f28cbcde4d", "media": "photo", "latitude": "0", "id": "106256", "tags": "wedding family ymca dancanfield dougsheahan nickdelouise dandougher goldblatt"}, {"datetaken": "2004-07-23 14:23:11", "license": "3", "title": "The Entire Wedding Party", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106257_081f2ca62f_o.jpg", "secret": "081f2ca62f", "media": "photo", "latitude": "0", "id": "106257", "tags": "wedding family weddingparty goldblatt"}, {"datetaken": "2004-07-23 14:23:14", "license": "3", "title": "Tom Golden not too Happy", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106258_376b7ac93f_o.jpg", "secret": "376b7ac93f", "media": "photo", "latitude": "0", "id": "106258", "tags": "wedding family tomgolden goldblatt"}, {"datetaken": "2004-07-23 14:23:17", "license": "3", "title": "Scott Tossing the Garter", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106259_fd899664a8_o.jpg", "secret": "fd899664a8", "media": "photo", "latitude": "0", "id": "106259", "tags": "wedding family scott gartertoss goldblatt"}, {"datetaken": "2004-07-23 14:23:19", "license": "3", "title": "Colleen Tossing the Bouquet", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106260_2f2fefd71d_o.jpg", "secret": "2f2fefd71d", "media": "photo", "latitude": "0", "id": "106260", "tags": "wedding family colleen bouquettoss goldblatt"}, {"datetaken": "2004-07-23 14:23:22", "license": "3", "title": "Colleen and Scott with Jim Wood", "text": "", "album_id": "214418", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/106261_577a4396b9_o.jpg", "secret": "577a4396b9", "media": "photo", "latitude": "0", "id": "106261", "tags": "wedding family jimwood scottandcolleen goldblatt"}, {"datetaken": "2007-03-24 05:54:43", "license": "3", "title": "Sml - Jos and Gareth's Wedding (4)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/433039266_70423139c7_o.jpg", "secret": "5d87f776ec", "media": "photo", "latitude": "0", "id": "433039266", "tags": "wedding"}, {"datetaken": "2007-03-24 09:32:43", "license": "3", "title": "Sml - Jos and Gareth's Wedding (12)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/433039264_be0fe591c0_o.jpg", "secret": "6cea78d121", "media": "photo", "latitude": "0", "id": "433039264", "tags": "wedding"}, {"datetaken": "2007-03-24 09:33:02", "license": "3", "title": "Sml - Jos and Gareth's Wedding (13)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/433039260_7116662b43_o.jpg", "secret": "7cebef63a6", "media": "photo", "latitude": "0", "id": "433039260", "tags": "wedding"}, {"datetaken": "2007-03-24 13:28:48", "license": "3", "title": "sml - Jos and Gareth's Wedding (20)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/433039252_3475e45c71_o.jpg", "secret": "0552c25536", "media": "photo", "latitude": "0", "id": "433039252", "tags": "wedding"}, {"datetaken": "2007-03-24 13:32:52", "license": "3", "title": "Sml - Jos and Gareth's Wedding (23)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/433039246_7157b8883a_o.jpg", "secret": "24d6c9fe26", "media": "photo", "latitude": "0", "id": "433039246", "tags": "wedding"}, {"datetaken": "2007-03-24 15:32:02", "license": "3", "title": "Sml - Jos and Gareth's Wedding (25)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/433033946_00dd2a4b87_o.jpg", "secret": "0842c2ef24", "media": "photo", "latitude": "0", "id": "433033946", "tags": "wedding"}, {"datetaken": "2007-03-24 15:36:56", "license": "3", "title": "Sml - Jos and Gareth's Wedding (29)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/433033940_560247ccb4_o.jpg", "secret": "b5620f0ea5", "media": "photo", "latitude": "0", "id": "433033940", "tags": "wedding"}, {"datetaken": "2007-03-24 15:51:35", "license": "3", "title": "Sml - Jos and Gareth's Wedding (31)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/433033938_ac619394e4_o.jpg", "secret": "cf58621bea", "media": "photo", "latitude": "0", "id": "433033938", "tags": "wedding"}, {"datetaken": "2007-03-24 15:52:13", "license": "3", "title": "Sml - Jos and Gareth's Wedding (33)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/433033936_aacaa1b173_o.jpg", "secret": "a3683b2bc7", "media": "photo", "latitude": "0", "id": "433033936", "tags": "wedding"}, {"datetaken": "2007-03-24 15:52:52", "license": "3", "title": "Sml - Jos and Gareth's Wedding (37)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/433033916_0a0424a9ca_o.jpg", "secret": "01987996d8", "media": "photo", "latitude": "0", "id": "433033916", "tags": "wedding"}, {"datetaken": "2007-03-24 15:58:46", "license": "3", "title": "Sml - Jos and Gareth's Wedding (41)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/433033914_7a502196b5_o.jpg", "secret": "2c6388b2bb", "media": "photo", "latitude": "0", "id": "433033914", "tags": "wedding"}, {"datetaken": "2007-03-24 16:02:04", "license": "3", "title": "Sml - Jos and Gareth's Wedding (45)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/433031123_e443ece5c0_o.jpg", "secret": "6d044a88f4", "media": "photo", "latitude": "0", "id": "433031123", "tags": "wedding"}, {"datetaken": "2007-03-24 16:02:28", "license": "3", "title": "Sml - Jos and Gareth's Wedding (46)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/433031105_67034e39fd_o.jpg", "secret": "2b7b5080b0", "media": "photo", "latitude": "0", "id": "433031105", "tags": "wedding"}, {"datetaken": "2007-03-24 16:03:37", "license": "3", "title": "Sml - Jos and Gareth's Wedding (47)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/433031099_98cc8496a0_o.jpg", "secret": "ba0dacdaa0", "media": "photo", "latitude": "0", "id": "433031099", "tags": "wedding"}, {"datetaken": "2007-03-24 16:05:58", "license": "3", "title": "Sml - Jos and Gareth's Wedding - Cake (51)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/433031095_080417f08e_o.jpg", "secret": "f4f4fc9b35", "media": "photo", "latitude": "0", "id": "433031095", "tags": "wedding"}, {"datetaken": "2007-03-24 16:05:58", "license": "3", "title": "Sml - Jos and Gareth's Wedding (51)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/433031091_63d85753c3_o.jpg", "secret": "a2c199150f", "media": "photo", "latitude": "0", "id": "433031091", "tags": "wedding"}, {"datetaken": "2007-03-24 16:06:46", "license": "3", "title": "Sml - Jos and Gareth's Wedding (53)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/433031063_0de535efa5_o.jpg", "secret": "ea73038321", "media": "photo", "latitude": "0", "id": "433031063", "tags": "wedding"}, {"datetaken": "2007-03-24 16:20:39", "license": "3", "title": "Sml - Jos and Gareth's Wedding (57)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/433013846_e976dc80ae_o.jpg", "secret": "6583908e09", "media": "photo", "latitude": "0", "id": "433013846", "tags": "wedding"}, {"datetaken": "2007-03-24 16:35:00", "license": "3", "title": "Sml - Jos and Gareth's Wedding (62)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/433013842_74b7d5ec97_o.jpg", "secret": "9f231e3a18", "media": "photo", "latitude": "0", "id": "433013842", "tags": "wedding"}, {"datetaken": "2007-03-24 16:52:47", "license": "3", "title": "Sml - Jos and Gareth's Wedding (63)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/433013836_58b7855333_o.jpg", "secret": "ebe63013ca", "media": "photo", "latitude": "0", "id": "433013836", "tags": "wedding"}, {"datetaken": "2007-03-24 16:53:38", "license": "3", "title": "Sml - Jos and Gareth's Wedding (64)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/433013822_272b9e046f_o.jpg", "secret": "998d7eb9b0", "media": "photo", "latitude": "0", "id": "433013822", "tags": "wedding"}, {"datetaken": "2007-03-24 18:51:50", "license": "3", "title": "Sml - Jos and Gareth's Wedding (72)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/433013820_e36383901d_o.jpg", "secret": "7adf0238f4", "media": "photo", "latitude": "0", "id": "433013820", "tags": "wedding"}, {"datetaken": "2007-03-24 18:52:42", "license": "3", "title": "Sml - Jos and Gareth's Wedding (74)", "text": "", "album_id": "72157600024838608", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/433013816_6957d1471c_o.jpg", "secret": "b7c5fab351", "media": "photo", "latitude": "0", "id": "433013816", "tags": "wedding"}, {"datetaken": "2004-11-20 09:00:14", "license": "1", "title": "The bridal party prepares", "text": "", "album_id": "419705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17691950_2623a485f8_o.jpg", "secret": "2623a485f8", "media": "photo", "latitude": "0", "id": "17691950", "tags": "wedding heather hobart tiffany sarah"}, {"datetaken": "2004-11-20 14:30:00", "license": "1", "title": "Mysterious Manda", "text": "", "album_id": "419705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17691951_4b15780320_o.jpg", "secret": "4b15780320", "media": "photo", "latitude": "0", "id": "17691951", "tags": "wedding hobart amanda"}, {"datetaken": "2004-11-20 14:45:00", "license": "1", "title": "Sarah & Manda", "text": "", "album_id": "419705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17695104_3b8d204210_o.jpg", "secret": "3b8d204210", "media": "photo", "latitude": "0", "id": "17695104", "tags": "wedding hobart amanda sarah"}, {"datetaken": "2004-11-20 16:15:00", "license": "1", "title": "The wedding", "text": "", "album_id": "419705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17691953_cb2f34f243_o.jpg", "secret": "cb2f34f243", "media": "photo", "latitude": "0", "id": "17691953", "tags": "wedding heather derek hobart arttheater"}, {"datetaken": "2004-11-20 16:20:00", "license": "1", "title": "Bride And Groom", "text": "", "album_id": "419705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17691954_24c188b09a_o.jpg", "secret": "24c188b09a", "media": "photo", "latitude": "0", "id": "17691954", "tags": "wedding heather derek hobart phil summer"}, {"datetaken": "2004-11-20 16:45:00", "license": "1", "title": "Posing for Pictures", "text": "", "album_id": "419705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17691955_757a9801d9_o.jpg", "secret": "757a9801d9", "media": "photo", "latitude": "0", "id": "17691955", "tags": "wedding heather derek hobart"}, {"datetaken": "2004-11-20 17:45:00", "license": "1", "title": "The bride's table", "text": "", "album_id": "419705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17695105_25823624dd_o.jpg", "secret": "25823624dd", "media": "photo", "latitude": "0", "id": "17695105", "tags": "heather derek wedding hobart sarah vinnie"}, {"datetaken": "2004-11-20 18:30:00", "license": "1", "title": "Cutting the Cake", "text": "", "album_id": "419705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17695101_e4bf403f39_o.jpg", "secret": "e4bf403f39", "media": "photo", "latitude": "0", "id": "17695101", "tags": "heather derek wedding hobart cake"}, {"datetaken": "2004-11-20 19:30:00", "license": "1", "title": "Manda from up on high", "text": "", "album_id": "419705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17695103_5854407747_o.jpg", "secret": "5854407747", "media": "photo", "latitude": "0", "id": "17695103", "tags": "wedding hobart manda"}, {"datetaken": "2004-11-20 19:45:00", "license": "1", "title": "Jared looks enthused", "text": "", "album_id": "419705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17695106_f7f163275e_o.jpg", "secret": "f7f163275e", "media": "photo", "latitude": "0", "id": "17695106", "tags": "heather derek wedding hobart sarah jared"}, {"datetaken": "2004-11-20 20:00:00", "license": "1", "title": "Heather and Derek", "text": "", "album_id": "419705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17695102_b9ee4eaa03_o.jpg", "secret": "b9ee4eaa03", "media": "photo", "latitude": "0", "id": "17695102", "tags": "heather derek wedding hobart"}, {"datetaken": "2004-11-20 20:10:00", "license": "1", "title": "The crew from Cambridge Springs", "text": "", "album_id": "419705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17691952_bb8b004d55_o.jpg", "secret": "bb8b004d55", "media": "photo", "latitude": "0", "id": "17691952", "tags": "wedding heather derek hobart amanda tiffany heidi sarah"}, {"datetaken": "2005-06-04 13:00:40", "license": "3", "title": "A Picture Share!", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17421937_00dbbb5d5b_o.jpg", "secret": "00dbbb5d5b", "media": "photo", "latitude": "0", "id": "17421937", "tags": ""}, {"datetaken": "2005-06-04 15:33:39", "license": "3", "title": "Tim ties Bruce's tie.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17673021_0778b5660a_o.jpg", "secret": "0778b5660a", "media": "photo", "latitude": "0", "id": "17673021", "tags": ""}, {"datetaken": "2005-06-04 15:43:12", "license": "3", "title": "Tim looking dapper.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17673033_2502bdd5fd_o.jpg", "secret": "2502bdd5fd", "media": "photo", "latitude": "0", "id": "17673033", "tags": ""}, {"datetaken": "2005-06-04 15:43:39", "license": "3", "title": "Bruce looking dapper.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17673055_a69d694858_o.jpg", "secret": "a69d694858", "media": "photo", "latitude": "0", "id": "17673055", "tags": ""}, {"datetaken": "2005-06-04 15:44:10", "license": "3", "title": "The Boyz", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17673071_a85991cbd1_o.jpg", "secret": "a85991cbd1", "media": "photo", "latitude": "0", "id": "17673071", "tags": ""}, {"datetaken": "2005-06-04 15:45:21", "license": "3", "title": "Me & Tim", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17673099_00a7523d97_o.jpg", "secret": "00a7523d97", "media": "photo", "latitude": "0", "id": "17673099", "tags": ""}, {"datetaken": "2005-06-04 16:16:03", "license": "3", "title": "Ken & Michelle", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17673121_09576a8a0f_o.jpg", "secret": "09576a8a0f", "media": "photo", "latitude": "0", "id": "17673121", "tags": ""}, {"datetaken": "2005-06-04 16:16:10", "license": "3", "title": "Cynthia and Joanne clowning in church.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17673163_b178f8b0fe_o.jpg", "secret": "b178f8b0fe", "media": "photo", "latitude": "0", "id": "17673163", "tags": ""}, {"datetaken": "2005-06-04 16:20:25", "license": "3", "title": "Isaac getting ready to walk down the aisle.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17673181_d86f45810d_o.jpg", "secret": "d86f45810d", "media": "photo", "latitude": "0", "id": "17673181", "tags": ""}, {"datetaken": "2005-06-04 16:37:09", "license": "3", "title": "Sandy", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17673190_9ed4f749ae_o.jpg", "secret": "9ed4f749ae", "media": "photo", "latitude": "0", "id": "17673190", "tags": ""}, {"datetaken": "2005-06-04 16:38:06", "license": "3", "title": "Meghan", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17673213_a6f7916b12_o.jpg", "secret": "a6f7916b12", "media": "photo", "latitude": "0", "id": "17673213", "tags": ""}, {"datetaken": "2005-06-04 16:38:46", "license": "3", "title": "Maureen getting ready to come in.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17673225_9cd469daa5_o.jpg", "secret": "9cd469daa5", "media": "photo", "latitude": "0", "id": "17673225", "tags": ""}, {"datetaken": "2005-06-04 16:38:57", "license": "3", "title": "Maureen and her dad.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17673237_3ce82f3b99_o.jpg", "secret": "3ce82f3b99", "media": "photo", "latitude": "0", "id": "17673237", "tags": ""}, {"datetaken": "2005-06-04 17:20:45", "license": "3", "title": "FAB", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17673253_0caeff245a_o.jpg", "secret": "0caeff245a", "media": "photo", "latitude": "0", "id": "17673253", "tags": ""}, {"datetaken": "2005-06-04 17:21:51", "license": "3", "title": "The Venue", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17673268_9cc3e96840_o.jpg", "secret": "9cc3e96840", "media": "photo", "latitude": "0", "id": "17673268", "tags": ""}, {"datetaken": "2005-06-04 17:22:39", "license": "3", "title": "Jim & Joanne", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17673298_031bf9a12c_o.jpg", "secret": "031bf9a12c", "media": "photo", "latitude": "0", "id": "17673298", "tags": ""}, {"datetaken": "2005-06-04 17:25:13", "license": "3", "title": "Bruce & Tim", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17673333_140850e3ab_o.jpg", "secret": "140850e3ab", "media": "photo", "latitude": "0", "id": "17673333", "tags": ""}, {"datetaken": "2005-06-04 19:59:44", "license": "3", "title": "Chopsticks", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17673347_b3ba649344_o.jpg", "secret": "b3ba649344", "media": "photo", "latitude": "0", "id": "17673347", "tags": ""}, {"datetaken": "2005-06-04 20:00:38", "license": "3", "title": "Heather, Emily, & Sarah", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17673375_a7dc8ef88b_o.jpg", "secret": "a7dc8ef88b", "media": "photo", "latitude": "0", "id": "17673375", "tags": ""}, {"datetaken": "2005-06-04 20:00:50", "license": "3", "title": "Cynthia", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17673387_ab22654178_o.jpg", "secret": "ab22654178", "media": "photo", "latitude": "0", "id": "17673387", "tags": ""}, {"datetaken": "2005-06-04 20:01:02", "license": "3", "title": "Taking a picture of Bruce taking a picture.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17673397_26d3387faf_o.jpg", "secret": "26d3387faf", "media": "photo", "latitude": "0", "id": "17673397", "tags": ""}, {"datetaken": "2005-06-04 20:19:47", "license": "3", "title": "Cynthia & Maureen", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17673413_a4fe0125c0_o.jpg", "secret": "a4fe0125c0", "media": "photo", "latitude": "0", "id": "17673413", "tags": ""}, {"datetaken": "2005-06-04 20:33:20", "license": "3", "title": "Isaac & Maureen", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17673444_5d555118d5_o.jpg", "secret": "5d555118d5", "media": "photo", "latitude": "0", "id": "17673444", "tags": ""}, {"datetaken": "2005-06-04 20:52:10", "license": "3", "title": "Jim & Joanne", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17673464_b8bfb8fb79_o.jpg", "secret": "b8bfb8fb79", "media": "photo", "latitude": "0", "id": "17673464", "tags": ""}, {"datetaken": "2005-06-04 21:00:52", "license": "3", "title": "The new Mr. and Mrs. Tony and Brandy.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17673476_726a4605cd_o.jpg", "secret": "726a4605cd", "media": "photo", "latitude": "0", "id": "17673476", "tags": ""}, {"datetaken": "2005-06-04 21:01:16", "license": "3", "title": "Ken!", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17673494_789e789b37_o.jpg", "secret": "789e789b37", "media": "photo", "latitude": "0", "id": "17673494", "tags": ""}, {"datetaken": "2005-06-04 21:05:33", "license": "3", "title": "Isaac!", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17673511_c812d8a077_o.jpg", "secret": "c812d8a077", "media": "photo", "latitude": "0", "id": "17673511", "tags": ""}, {"datetaken": "2005-06-04 21:06:25", "license": "3", "title": "The back of Maureen.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17673530_75cb8603c8_o.jpg", "secret": "75cb8603c8", "media": "photo", "latitude": "0", "id": "17673530", "tags": ""}, {"datetaken": "2005-06-04 21:07:46", "license": "3", "title": "The new Dr. and Mrs. Isaac and Maureen.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17673545_0a0c259bfe_o.jpg", "secret": "0a0c259bfe", "media": "photo", "latitude": "0", "id": "17673545", "tags": ""}, {"datetaken": "2005-06-04 22:18:42", "license": "3", "title": "Annemarie", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17673604_eeda95aef9_o.jpg", "secret": "eeda95aef9", "media": "photo", "latitude": "0", "id": "17673604", "tags": ""}, {"datetaken": "2005-06-04 22:21:55", "license": "3", "title": "Wave 'em all around like you just don't care.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17673618_f1e2c4e488_o.jpg", "secret": "f1e2c4e488", "media": "photo", "latitude": "0", "id": "17673618", "tags": ""}, {"datetaken": "2005-06-04 22:23:36", "license": "3", "title": "Meghan & Me", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17673699_3076457071_o.jpg", "secret": "3076457071", "media": "photo", "latitude": "0", "id": "17673699", "tags": ""}, {"datetaken": "2005-06-04 22:46:28", "license": "3", "title": "Jim & Joanne", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17673709_5fcde57b43_o.jpg", "secret": "5fcde57b43", "media": "photo", "latitude": "0", "id": "17673709", "tags": ""}, {"datetaken": "2005-06-04 22:46:38", "license": "3", "title": "Maureen & Isaac", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17673732_e21c81694b_o.jpg", "secret": "e21c81694b", "media": "photo", "latitude": "0", "id": "17673732", "tags": ""}, {"datetaken": "2005-06-04 22:46:50", "license": "3", "title": "Brandy & Tony", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17673746_71c5cf6a56_o.jpg", "secret": "71c5cf6a56", "media": "photo", "latitude": "0", "id": "17673746", "tags": ""}, {"datetaken": "2005-06-04 22:47:14", "license": "3", "title": "Cynthia & Tim", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17673766_0a5590a550_o.jpg", "secret": "0a5590a550", "media": "photo", "latitude": "0", "id": "17673766", "tags": ""}, {"datetaken": "2005-06-04 22:47:37", "license": "3", "title": "Marla & Chad", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17673773_666743f1de_o.jpg", "secret": "666743f1de", "media": "photo", "latitude": "0", "id": "17673773", "tags": ""}, {"datetaken": "2005-06-04 23:06:07", "license": "3", "title": "Me and a flower.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17673781_7fa838676f_o.jpg", "secret": "7fa838676f", "media": "photo", "latitude": "0", "id": "17673781", "tags": ""}, {"datetaken": "2005-06-04 23:08:41", "license": "3", "title": "Maureen!", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17673792_7c41272d2e_o.jpg", "secret": "7c41272d2e", "media": "photo", "latitude": "0", "id": "17673792", "tags": ""}, {"datetaken": "2005-06-04 23:38:26", "license": "3", "title": "A Picture Share!", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17512344_1397dd40c4_o.jpg", "secret": "1397dd40c4", "media": "photo", "latitude": "0", "id": "17512344", "tags": ""}, {"datetaken": "2005-06-05 01:33:20", "license": "3", "title": "Jim in pajamas.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17673807_7e23dd53b4_o.jpg", "secret": "7e23dd53b4", "media": "photo", "latitude": "0", "id": "17673807", "tags": ""}, {"datetaken": "2005-06-05 01:33:42", "license": "3", "title": "Somebody take Joanne home.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17673824_6d9e076dc5_o.jpg", "secret": "6d9e076dc5", "media": "photo", "latitude": "0", "id": "17673824", "tags": ""}, {"datetaken": "2005-06-05 01:34:45", "license": "3", "title": "Long night for Bruce.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17673835_af5e801eba_o.jpg", "secret": "af5e801eba", "media": "photo", "latitude": "0", "id": "17673835", "tags": ""}, {"datetaken": "2005-06-05 01:34:56", "license": "3", "title": "Tim. Just because.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17673852_6e0763df86_o.jpg", "secret": "6e0763df86", "media": "photo", "latitude": "0", "id": "17673852", "tags": ""}, {"datetaken": "2005-06-05 08:05:14", "license": "3", "title": "A Picture Share!", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17564204_a80b5f3c7d_o.jpg", "secret": "a80b5f3c7d", "media": "photo", "latitude": "0", "id": "17564204", "tags": ""}, {"datetaken": "2005-06-05 08:22:27", "license": "3", "title": "Behind the wheel of my rented Mustang.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17673869_16fb084e04_o.jpg", "secret": "16fb084e04", "media": "photo", "latitude": "0", "id": "17673869", "tags": ""}, {"datetaken": "2005-06-05 08:22:39", "license": "3", "title": "Looking at the car instead of the road.", "text": "", "album_id": "419257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17673880_91821cf5c9_o.jpg", "secret": "91821cf5c9", "media": "photo", "latitude": "0", "id": "17673880", "tags": ""}, {"datetaken": "2005-07-20 13:41:56", "license": "5", "title": "At the Sangeet", "text": "", "album_id": "770686", "longitude": "73.793792", "url_o": "https://farm1.staticflickr.com/22/28495031_5672999ea0_o.jpg", "secret": "5672999ea0", "media": "photo", "latitude": "20.008838", "id": "28495031", "tags": "wedding canon marriage ixus700 sd500 xus700"}, {"datetaken": "2005-07-20 14:06:56", "license": "5", "title": "Some more embarrassment!!!", "text": "", "album_id": "770686", "longitude": "73.793792", "url_o": "https://farm1.staticflickr.com/22/28495065_128fb7a3b6_o.jpg", "secret": "128fb7a3b6", "media": "photo", "latitude": "20.008838", "id": "28495065", "tags": "wedding canon marriage ixus700 sd500 xus700"}, {"datetaken": "2005-07-20 14:07:25", "license": "5", "title": "Vinay Embarrassing us at the Sangeet", "text": "", "album_id": "770686", "longitude": "73.793792", "url_o": "https://farm1.staticflickr.com/23/28495093_60d49e7972_o.jpg", "secret": "60d49e7972", "media": "photo", "latitude": "20.008838", "id": "28495093", "tags": "wedding canon marriage ixus700 sd500 xus700"}, {"datetaken": "2005-07-20 16:25:24", "license": "5", "title": "Chillin after the Sangeet", "text": "", "album_id": "770686", "longitude": "73.793792", "url_o": "https://farm1.staticflickr.com/23/28495102_1c1787b18a_o.jpg", "secret": "1c1787b18a", "media": "photo", "latitude": "20.008838", "id": "28495102", "tags": "wedding canon marriage ixus700 sd500 xus700"}, {"datetaken": "2005-07-20 16:25:39", "license": "5", "title": "Chillin after the Sangeet", "text": "", "album_id": "770686", "longitude": "73.793792", "url_o": "https://farm1.staticflickr.com/22/28495114_8d89e7ca84_o.jpg", "secret": "8d89e7ca84", "media": "photo", "latitude": "20.008838", "id": "28495114", "tags": "wedding canon marriage ixus700 sd500 xus700"}, {"datetaken": "2005-07-20 22:24:25", "license": "5", "title": "Anuja trying to keep her eyes open", "text": "", "album_id": "770686", "longitude": "73.793792", "url_o": "https://farm1.staticflickr.com/21/28495125_a7c4ff4e6d_o.jpg", "secret": "a7c4ff4e6d", "media": "photo", "latitude": "20.008838", "id": "28495125", "tags": "wedding canon marriage ixus700 nightlife sd500 xus700"}, {"datetaken": "2005-07-20 23:03:08", "license": "5", "title": "The gang at the Cocktail Party", "text": "", "album_id": "770686", "longitude": "73.793792", "url_o": "https://farm1.staticflickr.com/22/28495155_107a50a085_o.jpg", "secret": "107a50a085", "media": "photo", "latitude": "20.008838", "id": "28495155", "tags": "wedding party canon marriage ixus700 nightlife sd500 xus700"}, {"datetaken": "2005-07-20 23:06:14", "license": "5", "title": "Bride & Groom rock the dancefloor", "text": "", "album_id": "770686", "longitude": "73.793792", "url_o": "https://farm1.staticflickr.com/23/28495189_b65989563a_o.jpg", "secret": "b65989563a", "media": "photo", "latitude": "20.008838", "id": "28495189", "tags": "wedding party canon marriage ixus700 nightlife sd500 xus700"}, {"datetaken": "2005-07-21 01:51:26", "license": "5", "title": "Outside the Hotel", "text": "", "album_id": "770686", "longitude": "73.793792", "url_o": "https://farm1.staticflickr.com/21/28495214_5481db4da4_o.jpg", "secret": "5481db4da4", "media": "photo", "latitude": "20.008838", "id": "28495214", "tags": "wedding party canon marriage ixus700 nightlife sd500 xus700"}, {"datetaken": "2005-07-21 12:12:48", "license": "5", "title": "", "text": "", "album_id": "770686", "longitude": "73.793792", "url_o": "https://farm1.staticflickr.com/22/28495236_521be96bd0_o.jpg", "secret": "521be96bd0", "media": "photo", "latitude": "20.008838", "id": "28495236", "tags": "wedding canon marriage ixus700 sd500 xus700"}, {"datetaken": "2005-07-21 12:39:00", "license": "5", "title": "At the wedding", "text": "", "album_id": "770686", "longitude": "73.793792", "url_o": "https://farm1.staticflickr.com/21/28495271_d426d014d9_o.jpg", "secret": "d426d014d9", "media": "photo", "latitude": "20.008838", "id": "28495271", "tags": "wedding canon marriage ixus700 sd500 xus700"}, {"datetaken": "2005-07-21 23:06:41", "license": "5", "title": "At the Recption", "text": "", "album_id": "770686", "longitude": "73.793792", "url_o": "https://farm1.staticflickr.com/23/28495313_2177a9b863_o.jpg", "secret": "2177a9b863", "media": "photo", "latitude": "20.008838", "id": "28495313", "tags": "wedding canon marriage ixus700 sd500 xus700"}, {"datetaken": "2005-08-26 23:21:13", "license": "1", "title": "waiting...", "text": "", "album_id": "872064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/39617093_87db621d33_o.jpg", "secret": "87db621d33", "media": "photo", "latitude": "0", "id": "39617093", "tags": "wedding windermere bridesmaids bride groom"}, {"datetaken": "2005-08-27 11:06:20", "license": "1", "title": "mia", "text": "", "album_id": "872064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/39617094_7cd3b8fd61_o.jpg", "secret": "7cd3b8fd61", "media": "photo", "latitude": "0", "id": "39617094", "tags": "wedding windermere bridesmaids bride groom"}, {"datetaken": "2005-08-27 11:19:30", "license": "1", "title": "time to breathe", "text": "", "album_id": "872064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/39617091_7de4fbac48_o.jpg", "secret": "7de4fbac48", "media": "photo", "latitude": "0", "id": "39617091", "tags": "wedding windermere bridesmaids bride groom"}, {"datetaken": "2005-08-27 11:19:30", "license": "1", "title": "time to breathe in b&w", "text": "", "album_id": "872064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/42946498_d6786afb34_o.jpg", "secret": "d6786afb34", "media": "photo", "latitude": "0", "id": "42946498", "tags": "wedding bride alone bw"}, {"datetaken": "2005-08-27 12:21:09", "license": "1", "title": "mermaids", "text": "", "album_id": "872064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/39617096_38beea3f21_o.jpg", "secret": "38beea3f21", "media": "photo", "latitude": "0", "id": "39617096", "tags": "wedding windermere bridesmaids bride groom"}, {"datetaken": "2005-08-27 13:21:00", "license": "1", "title": "unofficial photographer at a wedding", "text": "", "album_id": "872064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/40222574_4bf667644e_o.jpg", "secret": "4bf667644e", "media": "photo", "latitude": "0", "id": "40222574", "tags": "wedding windermere lakedistrict self me"}, {"datetaken": "2005-08-27 14:18:08", "license": "1", "title": "a good student", "text": "", "album_id": "872064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/39617095_d152fd33b8_o.jpg", "secret": "d152fd33b8", "media": "photo", "latitude": "0", "id": "39617095", "tags": "wedding windermere bridesmaids bride groom"}, {"datetaken": "2005-08-27 14:20:33", "license": "1", "title": "kids wanna rock", "text": "", "album_id": "872064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/39640138_25fc1216ef_o.jpg", "secret": "25fc1216ef", "media": "photo", "latitude": "0", "id": "39640138", "tags": "wedding windermere bridesmaids bride groom"}, {"datetaken": "2005-08-27 14:20:52", "license": "1", "title": "party girl", "text": "", "album_id": "872064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/41795790_407f9e1237_o.jpg", "secret": "407f9e1237", "media": "photo", "latitude": "0", "id": "41795790", "tags": "wedding party kids"}, {"datetaken": "2005-08-27 14:53:51", "license": "1", "title": "someday my prince will come", "text": "", "album_id": "872064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/39640140_3dbbff2739_o.jpg", "secret": "3dbbff2739", "media": "photo", "latitude": "0", "id": "39640140", "tags": "wedding windermere bridesmaids bride groom"}, {"datetaken": "2005-08-27 15:37:39", "license": "1", "title": "special guest", "text": "", "album_id": "872064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/39640142_fdb5705a68_o.jpg", "secret": "fdb5705a68", "media": "photo", "latitude": "0", "id": "39640142", "tags": "wedding windermere bridesmaids bride groom hedgehog cute"}, {"datetaken": "2005-08-27 23:24:30", "license": "1", "title": "bubbles", "text": "", "album_id": "872064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/39617097_1061431fb7_o.jpg", "secret": "1061431fb7", "media": "photo", "latitude": "0", "id": "39617097", "tags": "wedding windermere bridesmaids bride groom"}, {"datetaken": "2005-09-17 02:55:50", "license": "1", "title": "Steve and Keri clinch, aww", "text": "", "album_id": "962352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/43975069_500ccde651_o.jpg", "secret": "500ccde651", "media": "photo", "latitude": "0", "id": "43975069", "tags": "patio orangecounty california westminster wedding party"}, {"datetaken": "2005-09-17 02:55:51", "license": "1", "title": "Leah", "text": "", "album_id": "962352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/43975073_327dffc9df_o.jpg", "secret": "327dffc9df", "media": "photo", "latitude": "0", "id": "43975073", "tags": "patio orangecounty california westminster wedding party"}, {"datetaken": "2005-09-17 02:55:52", "license": "1", "title": "Marc", "text": "", "album_id": "962352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/43975076_8ff179cb7b_o.jpg", "secret": "8ff179cb7b", "media": "photo", "latitude": "0", "id": "43975076", "tags": "patio orangecounty california westminster wedding party"}, {"datetaken": "2005-09-17 02:55:54", "license": "1", "title": "The attacking of the cake", "text": "", "album_id": "962352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/43975081_72ff9e24b6_o.jpg", "secret": "72ff9e24b6", "media": "photo", "latitude": "0", "id": "43975081", "tags": "patio orangecounty california westminster wedding party"}, {"datetaken": "2005-09-17 02:55:55", "license": "1", "title": "The Dance: Steve and Keri", "text": "", "album_id": "962352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/43975083_88f1696f6d_o.jpg", "secret": "88f1696f6d", "media": "photo", "latitude": "0", "id": "43975083", "tags": "patio orangecounty california westminster wedding party"}, {"datetaken": "2005-09-17 02:55:57", "license": "1", "title": "The dance: kids and the couple", "text": "", "album_id": "962352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/43975087_d7976b1028_o.jpg", "secret": "d7976b1028", "media": "photo", "latitude": "0", "id": "43975087", "tags": "patio orangecounty california westminster wedding party"}, {"datetaken": "2005-09-17 02:55:58", "license": "1", "title": "Steve is indeed a dago.", "text": "", "album_id": "962352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/43975089_0c26f0b2a3_o.jpg", "secret": "0c26f0b2a3", "media": "photo", "latitude": "0", "id": "43975089", "tags": "patio orangecounty california westminster wedding party"}, {"datetaken": "2005-09-17 02:55:59", "license": "1", "title": "The Bride! Kind of an attitude here.", "text": "", "album_id": "962352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/43975093_bf1e0f3b85_o.jpg", "secret": "bf1e0f3b85", "media": "photo", "latitude": "0", "id": "43975093", "tags": "patio orangecounty california westminster wedding party"}, {"datetaken": "2005-09-17 02:56:03", "license": "1", "title": "Chef Relief", "text": "", "album_id": "962352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/43975101_74e21b50e6_o.jpg", "secret": "74e21b50e6", "media": "photo", "latitude": "0", "id": "43975101", "tags": "patio orangecounty california westminster wedding party"}, {"datetaken": "2005-09-17 02:56:05", "license": "1", "title": "Groomzilla", "text": "", "album_id": "962352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/43975110_47e7fbff13_o.jpg", "secret": "47e7fbff13", "media": "photo", "latitude": "0", "id": "43975110", "tags": "patio orangecounty california westminster wedding party"}, {"datetaken": "2005-09-17 02:56:06", "license": "1", "title": "Dasan and Nico", "text": "", "album_id": "962352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/43975112_9f971014d5_o.jpg", "secret": "9f971014d5", "media": "photo", "latitude": "0", "id": "43975112", "tags": "patio orangecounty california westminster wedding party"}, {"datetaken": "2005-09-17 02:56:07", "license": "1", "title": "The Bride!", "text": "", "album_id": "962352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/43975122_16bde67bef_o.jpg", "secret": "16bde67bef", "media": "photo", "latitude": "0", "id": "43975122", "tags": "patio orangecounty california westminster wedding party"}, {"datetaken": "2005-09-17 02:56:12", "license": "1", "title": "The Bride! #2", "text": "", "album_id": "962352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/43975134_e6ac9ddfda_o.jpg", "secret": "e6ac9ddfda", "media": "photo", "latitude": "0", "id": "43975134", "tags": "patio orangecounty california westminster wedding party"}, {"datetaken": "2005-09-17 02:56:13", "license": "1", "title": "The Cutting of the Cake #2", "text": "", "album_id": "962352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/43975137_6d639d992d_o.jpg", "secret": "6d639d992d", "media": "photo", "latitude": "0", "id": "43975137", "tags": "patio orangecounty california westminster wedding party"}, {"datetaken": "2005-09-17 02:56:14", "license": "1", "title": "Gina and her mom", "text": "", "album_id": "962352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/43975140_2cac3d5fab_o.jpg", "secret": "2cac3d5fab", "media": "photo", "latitude": "0", "id": "43975140", "tags": "patio orangecounty california westminster wedding party"}, {"datetaken": "2005-10-22 08:04:32", "license": "3", "title": "comfy lars", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/58237786_d84930b0c0_o.jpg", "secret": "d84930b0c0", "media": "photo", "latitude": "0", "id": "58237786", "tags": ""}, {"datetaken": "2005-10-22 08:12:15", "license": "3", "title": "margaret smiling", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/58237787_1c6c4e761f_o.jpg", "secret": "1c6c4e761f", "media": "photo", "latitude": "0", "id": "58237787", "tags": ""}, {"datetaken": "2005-10-22 08:25:48", "license": "3", "title": "bw matty and mom", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/58237784_3a34b04705_o.jpg", "secret": "3a34b04705", "media": "photo", "latitude": "0", "id": "58237784", "tags": ""}, {"datetaken": "2005-10-22 08:31:02", "license": "3", "title": "jaci and scott", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/58237785_e4ccd4ffd4_o.jpg", "secret": "e4ccd4ffd4", "media": "photo", "latitude": "0", "id": "58237785", "tags": ""}, {"datetaken": "2005-10-22 09:05:24", "license": "3", "title": "toxic", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/58331499_5cd83b49b6_o.jpg", "secret": "5cd83b49b6", "media": "photo", "latitude": "0", "id": "58331499", "tags": ""}, {"datetaken": "2005-10-22 13:13:36", "license": "3", "title": "window", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/58204188_fd25fecfb3_o.jpg", "secret": "fd25fecfb3", "media": "photo", "latitude": "0", "id": "58204188", "tags": ""}, {"datetaken": "2005-10-22 13:53:35", "license": "3", "title": "boys", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58204193_cecc6dd03f_o.jpg", "secret": "cecc6dd03f", "media": "photo", "latitude": "0", "id": "58204193", "tags": ""}, {"datetaken": "2005-10-22 14:01:25", "license": "3", "title": "fixing strap", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58204189_0539cb84e0_o.jpg", "secret": "0539cb84e0", "media": "photo", "latitude": "0", "id": "58204189", "tags": ""}, {"datetaken": "2005-10-22 14:06:59", "license": "3", "title": "flowers", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58337146_89fffb9b52_o.jpg", "secret": "89fffb9b52", "media": "photo", "latitude": "0", "id": "58337146", "tags": ""}, {"datetaken": "2005-10-22 14:07:50", "license": "3", "title": "mirror", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/58204191_f128fc27ff_o.jpg", "secret": "f128fc27ff", "media": "photo", "latitude": "0", "id": "58204191", "tags": ""}, {"datetaken": "2005-10-22 14:10:12", "license": "3", "title": "pucker up", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/58204190_5abf75fda0_o.jpg", "secret": "5abf75fda0", "media": "photo", "latitude": "0", "id": "58204190", "tags": ""}, {"datetaken": "2005-10-22 16:04:32", "license": "3", "title": "walking in", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58204195_8dfa6efaa9_o.jpg", "secret": "8dfa6efaa9", "media": "photo", "latitude": "0", "id": "58204195", "tags": ""}, {"datetaken": "2005-10-22 16:20:58", "license": "3", "title": "ceremony", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58211845_51ea67451c_o.jpg", "secret": "51ea67451c", "media": "photo", "latitude": "0", "id": "58211845", "tags": ""}, {"datetaken": "2005-10-22 16:27:35", "license": "3", "title": "just married", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/58211848_f349c444ab_o.jpg", "secret": "f349c444ab", "media": "photo", "latitude": "0", "id": "58211848", "tags": ""}, {"datetaken": "2005-10-22 16:29:44", "license": "3", "title": "the grandmas", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58331502_7f7ab2594a_o.jpg", "secret": "7f7ab2594a", "media": "photo", "latitude": "0", "id": "58331502", "tags": ""}, {"datetaken": "2005-10-22 16:50:43", "license": "3", "title": "receiving line", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/58211847_7652e7e62a_o.jpg", "secret": "7652e7e62a", "media": "photo", "latitude": "0", "id": "58211847", "tags": ""}, {"datetaken": "2005-10-22 16:55:43", "license": "3", "title": "ron's flower", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58211849_35c8748801_o.jpg", "secret": "35c8748801", "media": "photo", "latitude": "0", "id": "58211849", "tags": ""}, {"datetaken": "2005-10-22 17:17:54", "license": "3", "title": "slim, beth and matty", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/58211850_ebb94a9d78_o.jpg", "secret": "ebb94a9d78", "media": "photo", "latitude": "0", "id": "58211850", "tags": ""}, {"datetaken": "2005-10-22 17:23:13", "license": "3", "title": "trolley", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58211851_b6f42bc593_o.jpg", "secret": "b6f42bc593", "media": "photo", "latitude": "0", "id": "58211851", "tags": ""}, {"datetaken": "2005-10-22 17:25:31", "license": "3", "title": "toast", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58331500_71a8111bb1_o.jpg", "secret": "71a8111bb1", "media": "photo", "latitude": "0", "id": "58331500", "tags": ""}, {"datetaken": "2005-10-22 17:41:48", "license": "3", "title": "happy couple", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/58220801_01fb7ea06a_o.jpg", "secret": "01fb7ea06a", "media": "photo", "latitude": "0", "id": "58220801", "tags": ""}, {"datetaken": "2005-10-22 17:42:41", "license": "3", "title": "wedding party", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58220802_449a2adc45_o.jpg", "secret": "449a2adc45", "media": "photo", "latitude": "0", "id": "58220802", "tags": ""}, {"datetaken": "2005-10-22 17:44:19", "license": "3", "title": "boys clowning", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/58220803_5e0c4b849b_o.jpg", "secret": "5e0c4b849b", "media": "photo", "latitude": "0", "id": "58220803", "tags": ""}, {"datetaken": "2005-10-22 17:45:28", "license": "3", "title": "girls showing off", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/58220804_bdaecb5de3_o.jpg", "secret": "bdaecb5de3", "media": "photo", "latitude": "0", "id": "58220804", "tags": ""}, {"datetaken": "2005-10-22 17:47:27", "license": "3", "title": "with the trolley", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/58337154_73fad27caa_o.jpg", "secret": "73fad27caa", "media": "photo", "latitude": "0", "id": "58337154", "tags": ""}, {"datetaken": "2005-10-22 18:21:18", "license": "3", "title": "cutting cake", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/58220805_a80b1bb897_o.jpg", "secret": "a80b1bb897", "media": "photo", "latitude": "0", "id": "58220805", "tags": ""}, {"datetaken": "2005-10-22 18:23:48", "license": "3", "title": "cake", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/58220807_7cc1a11a1d_o.jpg", "secret": "7cc1a11a1d", "media": "photo", "latitude": "0", "id": "58220807", "tags": ""}, {"datetaken": "2005-10-22 18:27:26", "license": "3", "title": "host couples", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/58226875_2efe52e4b9_o.jpg", "secret": "2efe52e4b9", "media": "photo", "latitude": "0", "id": "58226875", "tags": ""}, {"datetaken": "2005-10-22 18:28:27", "license": "3", "title": "bw jaci and mom", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/58237783_47f5cd73c9_o.jpg", "secret": "47f5cd73c9", "media": "photo", "latitude": "0", "id": "58237783", "tags": ""}, {"datetaken": "2005-10-22 18:43:10", "license": "3", "title": "table", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/58337143_57b0da563a_o.jpg", "secret": "57b0da563a", "media": "photo", "latitude": "0", "id": "58337143", "tags": ""}, {"datetaken": "2005-10-22 19:25:08", "license": "3", "title": "grandpa and mason", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58226876_36358daf6f_o.jpg", "secret": "36358daf6f", "media": "photo", "latitude": "0", "id": "58226876", "tags": ""}, {"datetaken": "2005-10-22 19:41:21", "license": "3", "title": "andy's speech", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58226877_c822c7bcdb_o.jpg", "secret": "c822c7bcdb", "media": "photo", "latitude": "0", "id": "58226877", "tags": ""}, {"datetaken": "2005-10-22 19:43:54", "license": "3", "title": "lori's speech", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58226879_91d01e3bb1_o.jpg", "secret": "91d01e3bb1", "media": "photo", "latitude": "0", "id": "58226879", "tags": ""}, {"datetaken": "2005-10-22 19:47:06", "license": "3", "title": "matty's speech", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58226880_670c47923a_o.jpg", "secret": "670c47923a", "media": "photo", "latitude": "0", "id": "58226880", "tags": ""}, {"datetaken": "2005-10-22 20:11:48", "license": "3", "title": "first dance, at last", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/58226882_cd574534c2_o.jpg", "secret": "cd574534c2", "media": "photo", "latitude": "0", "id": "58226882", "tags": ""}, {"datetaken": "2005-10-22 20:11:54", "license": "3", "title": "first dance", "text": "", "album_id": "1260032", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58337150_17e33257aa_o.jpg", "secret": "17e33257aa", "media": "photo", "latitude": "0", "id": "58337150", "tags": ""}, {"datetaken": "2006-01-26 22:48:03", "license": "3", "title": "Chatelet les Halles", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/93886933_ebd0511a1c_o.jpg", "secret": "ebd0511a1c", "media": "photo", "latitude": "0", "id": "93886933", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-26 22:48:09", "license": "3", "title": "Party Mofo : Kaysha's Birthday @ l'Etage - 02.jpg", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/93887000_051a2eeb5c_o.jpg", "secret": "051a2eeb5c", "media": "photo", "latitude": "0", "id": "93887000", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-26 22:48:50", "license": "3", "title": "Party Mofo : Kaysha's Birthday @ l'Etage - 03.jpg", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/93887059_a3d6059613_o.jpg", "secret": "a3d6059613", "media": "photo", "latitude": "0", "id": "93887059", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-26 22:49:17", "license": "3", "title": "Amelie", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/93887131_bd4fdb557e_o.jpg", "secret": "bd4fdb557e", "media": "photo", "latitude": "0", "id": "93887131", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-26 22:49:28", "license": "3", "title": "Paris, RER, Chatelet", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/93887188_52490a6361_o.jpg", "secret": "52490a6361", "media": "photo", "latitude": "0", "id": "93887188", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 02:29:40", "license": "3", "title": "Party Mofo : Kaysha's Birthday @ l'Etage - 06.jpg", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/93887220_9a4aca07e0_o.jpg", "secret": "9a4aca07e0", "media": "photo", "latitude": "0", "id": "93887220", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 02:29:57", "license": "3", "title": "Party Mofo : Kaysha's Birthday @ l'Etage - 07.jpg", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/93887248_d3e400701a_o.jpg", "secret": "d3e400701a", "media": "photo", "latitude": "0", "id": "93887248", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 02:30:11", "license": "3", "title": "Party Mofo : Kaysha's Birthday @ l'Etage - 08.jpg", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/93887289_c9ed53ed3d_o.jpg", "secret": "c9ed53ed3d", "media": "photo", "latitude": "0", "id": "93887289", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 02:49:21", "license": "3", "title": "Party Mofo : Kaysha's Birthday @ l'Etage - 09.jpg", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/93887323_7b311c534f_o.jpg", "secret": "7b311c534f", "media": "photo", "latitude": "0", "id": "93887323", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 02:49:47", "license": "3", "title": "Party Mofo : Kaysha's Birthday @ l'Etage - 10.jpg", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/93887357_972c8a0318_o.jpg", "secret": "972c8a0318", "media": "photo", "latitude": "0", "id": "93887357", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 02:52:31", "license": "3", "title": "Party Mofo : Kaysha's Birthday @ l'Etage - 11.jpg", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/93887411_14749bd51b_o.jpg", "secret": "14749bd51b", "media": "photo", "latitude": "0", "id": "93887411", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 02:56:11", "license": "3", "title": "Elizio & Kayshdada", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/93887455_1acb2d0f8e_o.jpg", "secret": "1acb2d0f8e", "media": "photo", "latitude": "0", "id": "93887455", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 02:56:30", "license": "3", "title": "Party Mofo : Kaysha's Birthday @ l'Etage - 13.jpg", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/93887497_f3e3b0a911_o.jpg", "secret": "f3e3b0a911", "media": "photo", "latitude": "0", "id": "93887497", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 02:58:58", "license": "3", "title": "Party Mofo : Kaysha's Birthday @ l'Etage - 14.jpg", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/93887564_c39a177c67_o.jpg", "secret": "c39a177c67", "media": "photo", "latitude": "0", "id": "93887564", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 03:00:01", "license": "3", "title": "Party Mofo : Kaysha's Birthday @ l'Etage - 15.jpg", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/93887633_1a0376fbf7_o.jpg", "secret": "1a0376fbf7", "media": "photo", "latitude": "0", "id": "93887633", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 03:00:38", "license": "3", "title": "Party Mofo : Kaysha's Birthday @ l'Etage - 16.jpg", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/93887687_5ca580830d_o.jpg", "secret": "5ca580830d", "media": "photo", "latitude": "0", "id": "93887687", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 03:07:32", "license": "3", "title": "Nasha & Kaysha", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/93887726_27e2d23f00_o.jpg", "secret": "27e2d23f00", "media": "photo", "latitude": "0", "id": "93887726", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 03:27:54", "license": "3", "title": "Kaysha, China & Dj Noise", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/93887797_bcde4dd7c8_o.jpg", "secret": "bcde4dd7c8", "media": "photo", "latitude": "0", "id": "93887797", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 03:45:26", "license": "3", "title": "Dj Oumar & Kaysha", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/93887850_1dc83262ee_o.jpg", "secret": "1dc83262ee", "media": "photo", "latitude": "0", "id": "93887850", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 03:45:32", "license": "3", "title": "Jacky Brown", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/93887893_d4522910fd_o.jpg", "secret": "d4522910fd", "media": "photo", "latitude": "0", "id": "93887893", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 03:47:19", "license": "3", "title": "Party Mofo : Kaysha's Birthday @ l'Etage - 21.jpg", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/93887935_17b30877da_o.jpg", "secret": "17b30877da", "media": "photo", "latitude": "0", "id": "93887935", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 03:50:09", "license": "3", "title": "Aude & Kaysha", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/93887984_df179ccccd_o.jpg", "secret": "df179ccccd", "media": "photo", "latitude": "0", "id": "93887984", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 03:50:27", "license": "3", "title": "Shnek & Kaysha", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/93888035_ed953531f6_o.jpg", "secret": "ed953531f6", "media": "photo", "latitude": "0", "id": "93888035", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 03:54:04", "license": "3", "title": "Nike represent", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/93888080_cce956fde7_o.jpg", "secret": "cce956fde7", "media": "photo", "latitude": "0", "id": "93888080", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 03:59:31", "license": "3", "title": "Party Mofo : Kaysha's Birthday @ l'Etage - 25.jpg", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/93888119_a793c3a636_o.jpg", "secret": "a793c3a636", "media": "photo", "latitude": "0", "id": "93888119", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2006-01-27 04:27:57", "license": "3", "title": "Party Mofo : Kaysha's Birthday @ l'Etage - 26.jpg", "text": "", "album_id": "72057594057255637", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/93888155_c61562755f_o.jpg", "secret": "c61562755f", "media": "photo", "latitude": "0", "id": "93888155", "tags": "birthday paris france love club kaysha chicks etage"}, {"datetaken": "2002-10-04 17:54:22", "license": "3", "title": "pimp 'n ho party", "text": "", "album_id": "72057594071585364", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/91640608_220ac4dc07_o.jpg", "secret": "220ac4dc07", "media": "photo", "latitude": "0", "id": "91640608", "tags": "justin party sarah noce bouldercreek"}, {"datetaken": "2002-10-04 17:54:41", "license": "3", "title": "pimp 'n ho party", "text": "", "album_id": "72057594071585364", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/91640609_a61c24d166_o.jpg", "secret": "a61c24d166", "media": "photo", "latitude": "0", "id": "91640609", "tags": "justin party sarah noce bouldercreek"}, {"datetaken": "2002-10-04 18:00:46", "license": "3", "title": "pimp 'n ho party", "text": "", "album_id": "72057594071585364", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/91646809_eb9a5f12f0_o.jpg", "secret": "eb9a5f12f0", "media": "photo", "latitude": "0", "id": "91646809", "tags": "party mott bouldercreek"}, {"datetaken": "2002-10-04 18:02:49", "license": "3", "title": "pimp 'n ho party", "text": "", "album_id": "72057594071585364", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/91646813_63e3e2dd47_o.jpg", "secret": "63e3e2dd47", "media": "photo", "latitude": "0", "id": "91646813", "tags": "party ali mott bouldercreek"}, {"datetaken": "2002-10-04 18:04:14", "license": "3", "title": "pimp 'n ho party", "text": "", "album_id": "72057594071585364", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/103121024_66a0a14f40_o.jpg", "secret": "66a0a14f40", "media": "photo", "latitude": "0", "id": "103121024", "tags": "justin party sarah noce bouldercreek"}, {"datetaken": "2002-10-04 18:04:14", "license": "3", "title": "pimp 'n ho party", "text": "", "album_id": "72057594071585364", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/91646814_e1253841c7_o.jpg", "secret": "e1253841c7", "media": "photo", "latitude": "0", "id": "91646814", "tags": "justin party sarah noce bouldercreek"}, {"datetaken": "2002-10-04 19:05:51", "license": "3", "title": "mason", "text": "", "album_id": "72057594071585364", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/91646815_eb49859a34_o.jpg", "secret": "eb49859a34", "media": "photo", "latitude": "0", "id": "91646815", "tags": "party mason bouldercreek"}, {"datetaken": "2002-10-04 19:07:44", "license": "3", "title": "pimp 'n ho party", "text": "", "album_id": "72057594071585364", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/91646817_24d8f06ac5_o.jpg", "secret": "24d8f06ac5", "media": "photo", "latitude": "0", "id": "91646817", "tags": "party mason ali bouldercreek"}, {"datetaken": "2002-10-04 21:39:05", "license": "3", "title": "pimp 'n ho party", "text": "", "album_id": "72057594071585364", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/91646819_1cab24cf20_o.jpg", "secret": "1cab24cf20", "media": "photo", "latitude": "0", "id": "91646819", "tags": "mandy justin party sarah sara mason sunny tay ali mott rodney sherri noce bouldercreek"}, {"datetaken": "2002-10-04 21:41:53", "license": "3", "title": "pimp 'n ho party", "text": "", "album_id": "72057594071585364", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/91647416_ed63a72c07_o.jpg", "secret": "ed63a72c07", "media": "photo", "latitude": "0", "id": "91647416", "tags": "mandy justin party sarah sara mason tay ali rodney sherri noce bouldercreek"}, {"datetaken": "2002-10-04 21:42:06", "license": "0", "title": "pimp 'n' ho party", "text": "", "album_id": "72057594071585364", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/91176223_3222d050b1_o.jpg", "secret": "3222d050b1", "media": "photo", "latitude": "0", "id": "91176223", "tags": "justin party sarah sara mason tay ali rodney sherri noce bouldercreek"}, {"datetaken": "2002-10-04 21:42:48", "license": "3", "title": "pimp 'n ho party", "text": "", "album_id": "72057594071585364", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/91647419_c466bb99b0_o.jpg", "secret": "c466bb99b0", "media": "photo", "latitude": "0", "id": "91647419", "tags": "party sara mason sunny tay ali sherri bouldercreek"}, {"datetaken": "2002-10-04 22:29:43", "license": "3", "title": "pimp 'n ho party", "text": "", "album_id": "72057594071585364", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/91647422_9033b0d759_o.jpg", "secret": "9033b0d759", "media": "photo", "latitude": "0", "id": "91647422", "tags": "party sarah rodney bouldercreek"}, {"datetaken": "2002-10-04 22:32:09", "license": "3", "title": "mary, laurie, keith, and sunny", "text": "", "album_id": "72057594071585364", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/91647424_0b4565c252_o.jpg", "secret": "0b4565c252", "media": "photo", "latitude": "0", "id": "91647424", "tags": "party mary sunny keith lori bouldercreek"}, {"datetaken": "2002-10-04 23:48:04", "license": "3", "title": "sarah", "text": "", "album_id": "72057594071585364", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/91647426_717566151b_o.jpg", "secret": "717566151b", "media": "photo", "latitude": "0", "id": "91647426", "tags": "party sara bouldercreek"}, {"datetaken": "2002-10-04 23:48:22", "license": "3", "title": "justin and sunny", "text": "", "album_id": "72057594071585364", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/91647427_6a745397ea_o.jpg", "secret": "6a745397ea", "media": "photo", "latitude": "0", "id": "91647427", "tags": "justin party sunny noce bouldercreek"}, {"datetaken": "2006-02-19 15:52:01", "license": "1", "title": "Publick House Inn guestroom", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/103596479_85dbfad246_o.jpg", "secret": "85dbfad246", "media": "photo", "latitude": "0", "id": "103596479", "tags": "massachusetts 2006 february sturbridge guestroom publickhouse ryancunninghamwedding"}, {"datetaken": "2006-02-19 17:31:18", "license": "1", "title": "Meta wedding shot", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/103596526_17d82919fd_o.jpg", "secret": "17d82919fd", "media": "photo", "latitude": "0", "id": "103596526", "tags": "wedding massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 17:32:12", "license": "1", "title": "How does this thing work?", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/103596567_b53ac6bd3b_o.jpg", "secret": "b53ac6bd3b", "media": "photo", "latitude": "0", "id": "103596567", "tags": "wedding massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 17:33:24", "license": "1", "title": "What are you trying to pull,woman?", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/103596584_10c7714ad6_o.jpg", "secret": "10c7714ad6", "media": "photo", "latitude": "0", "id": "103596584", "tags": "wedding massachusetts 2006 corey february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 17:36:02", "license": "1", "title": "The table", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/103596615_606ffa3687_o.jpg", "secret": "606ffa3687", "media": "photo", "latitude": "0", "id": "103596615", "tags": "wedding massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 17:37:15", "license": "1", "title": "Wow, I'm glad that's over", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/103596646_84ae054fbc_o.jpg", "secret": "84ae054fbc", "media": "photo", "latitude": "0", "id": "103596646", "tags": "wedding massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 17:38:56", "license": "1", "title": "Hey!", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/103596675_17d25b1263_o.jpg", "secret": "17d25b1263", "media": "photo", "latitude": "0", "id": "103596675", "tags": "wedding massachusetts 2006 corey february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 17:53:23", "license": "1", "title": "The Happy Couple", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/103596692_84321ed02e_o.jpg", "secret": "84321ed02e", "media": "photo", "latitude": "0", "id": "103596692", "tags": "wedding massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 18:12:00", "license": "1", "title": "Ghostly chandlier", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/103596724_2050d7010c_o.jpg", "secret": "2050d7010c", "media": "photo", "latitude": "0", "id": "103596724", "tags": "wedding massachusetts 2006 chandelier february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 20:22:49", "license": "1", "title": "The cool, bad kids table", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/103596754_30ca6e52d1_o.jpg", "secret": "30ca6e52d1", "media": "photo", "latitude": "0", "id": "103596754", "tags": "wedding massachusetts 2006 corey february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 20:23:09", "license": "1", "title": "Flashing the gang symbol", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/103596788_b680443d59_o.jpg", "secret": "b680443d59", "media": "photo", "latitude": "0", "id": "103596788", "tags": "wedding massachusetts 2006 corey february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 20:38:56", "license": "1", "title": "Nora (bridesmaid)", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/103596813_4887cbfca3_o.jpg", "secret": "4887cbfca3", "media": "photo", "latitude": "0", "id": "103596813", "tags": "wedding massachusetts 2006 february cleavage sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 20:42:01", "license": "1", "title": "Coleen (the bride)", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/103596837_afda5ab285_o.jpg", "secret": "afda5ab285", "media": "photo", "latitude": "0", "id": "103596837", "tags": "wedding massachusetts 2006 february cleavage sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 21:03:42", "license": "1", "title": "Alexis", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/103596920_bebc8c669b_o.jpg", "secret": "bebc8c669b", "media": "photo", "latitude": "0", "id": "103596920", "tags": "wedding massachusetts 2006 february cleavage sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 21:16:43", "license": "1", "title": "My husband is *hot*", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/103596955_8e1b99c3f4_o.jpg", "secret": "8e1b99c3f4", "media": "photo", "latitude": "0", "id": "103596955", "tags": "wedding massachusetts 2006 corey february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 21:26:59", "license": "1", "title": "You need to *lift* them", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/103596985_2eb6dbe890_o.jpg", "secret": "2eb6dbe890", "media": "photo", "latitude": "0", "id": "103596985", "tags": "wedding massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 21:28:29", "license": "1", "title": "Touch the pearls!", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/103597016_84a9fdfe02_o.jpg", "secret": "84a9fdfe02", "media": "photo", "latitude": "0", "id": "103597016", "tags": "wedding massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 23:19:04", "license": "1", "title": "Awww, cute!", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/103597157_73a58cab22_o.jpg", "secret": "73a58cab22", "media": "photo", "latitude": "0", "id": "103597157", "tags": "wedding massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 23:23:10", "license": "1", "title": "No way!", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/103597189_ed77cfd8e5_o.jpg", "secret": "ed77cfd8e5", "media": "photo", "latitude": "0", "id": "103597189", "tags": "wedding massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 23:44:26", "license": "1", "title": "Quite the crowd", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/103597243_617579da5c_o.jpg", "secret": "617579da5c", "media": "photo", "latitude": "0", "id": "103597243", "tags": "wedding massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 23:44:54", "license": "1", "title": "MC (left) and Corey (right)", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/103597304_d81eefc33f_o.jpg", "secret": "d81eefc33f", "media": "photo", "latitude": "0", "id": "103597304", "tags": "wedding massachusetts 2006 corey february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 23:46:53", "license": "1", "title": "Crazy wallpaper", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/103597365_c1f3fb1741_o.jpg", "secret": "c1f3fb1741", "media": "photo", "latitude": "0", "id": "103597365", "tags": "wedding massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 23:51:26", "license": "1", "title": "You don't say?", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/103597411_6be7e8866b_o.jpg", "secret": "6be7e8866b", "media": "photo", "latitude": "0", "id": "103597411", "tags": "wedding massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-19 23:58:19", "license": "1", "title": "Sam, groomsman, picturesque", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/103597454_ac86ad372f_o.jpg", "secret": "ac86ad372f", "media": "photo", "latitude": "0", "id": "103597454", "tags": "wedding massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-20 00:39:21", "license": "1", "title": "Coleen, you OK?", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/103597495_b525cb99f9_o.jpg", "secret": "b525cb99f9", "media": "photo", "latitude": "0", "id": "103597495", "tags": "wedding massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-20 00:39:42", "license": "1", "title": "Bridesmaids and a napper", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/103597528_def1fb0c46_o.jpg", "secret": "def1fb0c46", "media": "photo", "latitude": "0", "id": "103597528", "tags": "wedding massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-20 00:41:52", "license": "1", "title": "Colby *loves* cigars", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/103597559_d1a4a8fd88_o.jpg", "secret": "d1a4a8fd88", "media": "photo", "latitude": "0", "id": "103597559", "tags": "wedding massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-20 00:41:57", "license": "1", "title": "Colby looks jostled but sophisticated", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/103597579_c93fa4b6c5_o.jpg", "secret": "c93fa4b6c5", "media": "photo", "latitude": "0", "id": "103597579", "tags": "wedding massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-20 11:52:59", "license": "1", "title": "The Library", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/103597625_609533e2dc_o.jpg", "secret": "609533e2dc", "media": "photo", "latitude": "0", "id": "103597625", "tags": "library massachusetts 2006 february sturbridge publickhouse ryancunninghamwedding"}, {"datetaken": "2006-02-20 11:53:28", "license": "1", "title": "Which way to the library?", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/103597655_c0a420faeb_o.jpg", "secret": "c0a420faeb", "media": "photo", "latitude": "0", "id": "103597655", "tags": "sign library massachusetts 2006 february sturbridge publickhouse ryancunninghamwedding"}, {"datetaken": "2006-02-20 11:53:47", "license": "1", "title": "Eating is allowed in this library", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/103597692_aa75138fee_o.jpg", "secret": "aa75138fee", "media": "photo", "latitude": "0", "id": "103597692", "tags": "library massachusetts 2006 february sturbridge publickhouse ryancunninghamwedding"}, {"datetaken": "2006-02-20 11:54:14", "license": "1", "title": "Library art", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/103597720_013e12a8d4_o.jpg", "secret": "013e12a8d4", "media": "photo", "latitude": "0", "id": "103597720", "tags": "library massachusetts 2006 february sturbridge publickhouse ryancunninghamwedding"}, {"datetaken": "2006-02-20 11:54:26", "license": "1", "title": "Back view of the library", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/103597746_671a4fd5c5_o.jpg", "secret": "671a4fd5c5", "media": "photo", "latitude": "0", "id": "103597746", "tags": "library massachusetts 2006 february sturbridge publickhouse ryancunninghamwedding"}, {"datetaken": "2006-02-20 11:54:38", "license": "1", "title": "Bar at the back of the library", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/103597784_13962122e3_o.jpg", "secret": "13962122e3", "media": "photo", "latitude": "0", "id": "103597784", "tags": "library massachusetts 2006 february sturbridge publickhouse ryancunninghamwedding"}, {"datetaken": "2006-02-20 11:55:01", "license": "1", "title": "Library white board", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/103597805_88855ca1c1_o.jpg", "secret": "88855ca1c1", "media": "photo", "latitude": "0", "id": "103597805", "tags": "library massachusetts 2006 february sturbridge publickhouse ryancunninghamwedding"}, {"datetaken": "2006-02-20 11:57:02", "license": "1", "title": "Table of flowers", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/103597842_844cd6cfe4_o.jpg", "secret": "844cd6cfe4", "media": "photo", "latitude": "0", "id": "103597842", "tags": "flowers massachusetts 2006 february sturbridge publickhouse ryancunninghamwedding"}, {"datetaken": "2006-02-20 12:04:07", "license": "1", "title": "Naked japanese maple vertical", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/103597870_b28f21b549_o.jpg", "secret": "b28f21b549", "media": "photo", "latitude": "0", "id": "103597870", "tags": "massachusetts 2006 momiji japanesemaple february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-20 12:04:27", "license": "1", "title": "Naked horizontal momiji", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/103597913_a671199b78_o.jpg", "secret": "a671199b78", "media": "photo", "latitude": "0", "id": "103597913", "tags": "massachusetts 2006 momiji japanesemaple february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-20 12:10:29", "license": "1", "title": "Joshua Hyde Public Library", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/103597956_db718d68b3_o.jpg", "secret": "db718d68b3", "media": "photo", "latitude": "0", "id": "103597956", "tags": "library massachusetts 2006 february sturbridge publiclibrary ryancunninghamwedding joshuahydepubliclibrary"}, {"datetaken": "2006-02-20 12:10:41", "license": "1", "title": "Library sign with hours", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/103597987_a84fedc97e_o.jpg", "secret": "a84fedc97e", "media": "photo", "latitude": "0", "id": "103597987", "tags": "library massachusetts 2006 february sturbridge publiclibrary ryancunninghamwedding joshuahydepubliclibrary"}, {"datetaken": "2006-02-20 12:11:15", "license": "1", "title": "Joshua Hyde Public Library", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/103598026_abb348af98_o.jpg", "secret": "abb348af98", "media": "photo", "latitude": "0", "id": "103598026", "tags": "library massachusetts 2006 february sturbridge publiclibrary ryancunninghamwedding joshuahydepubliclibrary"}, {"datetaken": "2006-02-20 12:11:48", "license": "1", "title": "Ornamentation on the library", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/103598131_0ee8805ef3_o.jpg", "secret": "0ee8805ef3", "media": "photo", "latitude": "0", "id": "103598131", "tags": "library massachusetts 2006 february sturbridge publiclibrary ryancunninghamwedding joshuahydepubliclibrary"}, {"datetaken": "2006-02-20 12:11:59", "license": "1", "title": "Behind the library", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/103598145_2ffa7cbaf3_o.jpg", "secret": "2ffa7cbaf3", "media": "photo", "latitude": "0", "id": "103598145", "tags": "library massachusetts 2006 february sturbridge publiclibrary ryancunninghamwedding joshuahydepubliclibrary"}, {"datetaken": "2006-02-20 12:12:35", "license": "1", "title": "Not-so-little library", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/103598180_0e739390fa_o.jpg", "secret": "0e739390fa", "media": "photo", "latitude": "0", "id": "103598180", "tags": "library massachusetts 2006 february sturbridge publiclibrary ryancunninghamwedding joshuahydepubliclibrary"}, {"datetaken": "2006-02-20 12:13:07", "license": "1", "title": "Steeple clock", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/103598213_e0d48e625f_o.jpg", "secret": "e0d48e625f", "media": "photo", "latitude": "0", "id": "103598213", "tags": "church massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2006-02-20 12:13:15", "license": "1", "title": "Church next door to the library", "text": "", "album_id": "72057594069417750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/103598259_d58d33c1eb_o.jpg", "secret": "d58d33c1eb", "media": "photo", "latitude": "0", "id": "103598259", "tags": "church massachusetts 2006 february sturbridge ryancunninghamwedding"}, {"datetaken": "2001-10-13 02:05:44", "license": "4", "title": "Mike and Erin", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/117998105_da6fbbd252_o.jpg", "secret": "da6fbbd252", "media": "photo", "latitude": "0", "id": "117998105", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 02:06:21", "license": "4", "title": "Happy Couple", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/117998208_9582b8905c_o.jpg", "secret": "9582b8905c", "media": "photo", "latitude": "0", "id": "117998208", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 02:06:53", "license": "4", "title": "Wedding Party", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/117998324_072c519e19_o.jpg", "secret": "072c519e19", "media": "photo", "latitude": "0", "id": "117998324", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 02:07:16", "license": "4", "title": "First Dance", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/117998385_66db6d1464_o.jpg", "secret": "66db6d1464", "media": "photo", "latitude": "0", "id": "117998385", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 02:07:38", "license": "4", "title": "Bo Congratulates", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/117998471_ff46a17e22_o.jpg", "secret": "ff46a17e22", "media": "photo", "latitude": "0", "id": "117998471", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 15:01:59", "license": "4", "title": "Chloe", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/117993688_87d5896623_o.jpg", "secret": "87d5896623", "media": "photo", "latitude": "0", "id": "117993688", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 15:05:11", "license": "4", "title": "View from Jack's Pond", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/117993756_87c026f7ce_o.jpg", "secret": "87c026f7ce", "media": "photo", "latitude": "0", "id": "117993756", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 15:08:39", "license": "4", "title": "Nicole and Dad", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/117993994_3fab473c41_o.jpg", "secret": "3fab473c41", "media": "photo", "latitude": "0", "id": "117993994", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 15:12:12", "license": "4", "title": "Blaine, Rick, Big Mike, Nicole", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/117994204_5086dded51_o.jpg", "secret": "5086dded51", "media": "photo", "latitude": "0", "id": "117994204", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 15:41:42", "license": "4", "title": "Wedding Guests", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/117994396_ed5b2eddf0_o.jpg", "secret": "ed5b2eddf0", "media": "photo", "latitude": "0", "id": "117994396", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 16:09:34", "license": "4", "title": "Mike and Blaine", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/117994580_0f888dc01a_o.jpg", "secret": "0f888dc01a", "media": "photo", "latitude": "0", "id": "117994580", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 16:09:37", "license": "4", "title": "Under Control", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/117994796_6ad89f562c_o.jpg", "secret": "6ad89f562c", "media": "photo", "latitude": "0", "id": "117994796", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 16:10:50", "license": "4", "title": "Bride is given away", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/117995005_ff29cea5d8_o.jpg", "secret": "ff29cea5d8", "media": "photo", "latitude": "0", "id": "117995005", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 16:16:21", "license": "4", "title": "Wedding Salute", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/117995099_6dd401a9e8_o.jpg", "secret": "6dd401a9e8", "media": "photo", "latitude": "0", "id": "117995099", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 16:16:58", "license": "4", "title": "Everyone is happy", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/117995297_857cec44aa_o.jpg", "secret": "857cec44aa", "media": "photo", "latitude": "0", "id": "117995297", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 16:17:12", "license": "4", "title": "Wedding Party", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/117995518_553266ec52_o.jpg", "secret": "553266ec52", "media": "photo", "latitude": "0", "id": "117995518", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 16:17:37", "license": "4", "title": "Wedding Party", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/117995744_b936421c0a_o.jpg", "secret": "b936421c0a", "media": "photo", "latitude": "0", "id": "117995744", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 16:26:15", "license": "4", "title": "Wedding Cake", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/117995899_2a01923964_o.jpg", "secret": "2a01923964", "media": "photo", "latitude": "0", "id": "117995899", "tags": "wedding starwars roanmountain"}, {"datetaken": "2001-10-13 16:26:27", "license": "4", "title": "Toast", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/117996064_5409487585_o.jpg", "secret": "5409487585", "media": "photo", "latitude": "0", "id": "117996064", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 16:26:39", "license": "4", "title": "Toast", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/117996226_e6cfa941a6_o.jpg", "secret": "e6cfa941a6", "media": "photo", "latitude": "0", "id": "117996226", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 16:26:52", "license": "4", "title": "Toast", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/117996340_042f82389d_o.jpg", "secret": "042f82389d", "media": "photo", "latitude": "0", "id": "117996340", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 16:42:47", "license": "4", "title": "Cake Cutting", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/117996499_164ffa0a81_o.jpg", "secret": "164ffa0a81", "media": "photo", "latitude": "0", "id": "117996499", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 16:42:59", "license": "4", "title": "Cake Cutting", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/117996640_23288cd8ba_o.jpg", "secret": "23288cd8ba", "media": "photo", "latitude": "0", "id": "117996640", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 16:45:09", "license": "4", "title": "Cake Feeding", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/117996754_c96ec3a5ab_o.jpg", "secret": "c96ec3a5ab", "media": "photo", "latitude": "0", "id": "117996754", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 16:45:23", "license": "4", "title": "Cake Feeding", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/117996905_ea1635a6a2_o.jpg", "secret": "ea1635a6a2", "media": "photo", "latitude": "0", "id": "117996905", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 16:48:27", "license": "4", "title": "Cake Feeding", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/117997024_a7af020cd5_o.jpg", "secret": "a7af020cd5", "media": "photo", "latitude": "0", "id": "117997024", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 16:48:36", "license": "4", "title": "Cake Feeding", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/117997169_06f0638de9_o.jpg", "secret": "06f0638de9", "media": "photo", "latitude": "0", "id": "117997169", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 16:48:42", "license": "4", "title": "Cake Feeding", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/117997265_f561be89ca_o.jpg", "secret": "f561be89ca", "media": "photo", "latitude": "0", "id": "117997265", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 17:01:42", "license": "4", "title": "Mom", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/117997402_d40c1098f1_o.jpg", "secret": "d40c1098f1", "media": "photo", "latitude": "0", "id": "117997402", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 17:02:30", "license": "4", "title": "Mom, Erin, Rick", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/117997589_5125cb835b_o.jpg", "secret": "5125cb835b", "media": "photo", "latitude": "0", "id": "117997589", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 17:05:13", "license": "4", "title": "Mom and Big Mike", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/117997723_df645c34e9_o.jpg", "secret": "df645c34e9", "media": "photo", "latitude": "0", "id": "117997723", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 17:05:26", "license": "4", "title": "Jason and Ernie", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/117997877_a0d5eff95b_o.jpg", "secret": "a0d5eff95b", "media": "photo", "latitude": "0", "id": "117997877", "tags": "wedding roanmountain"}, {"datetaken": "2001-10-13 17:14:28", "license": "4", "title": "Free Parking", "text": "", "album_id": "72057594090741088", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/117998006_4d1113c51e_o.jpg", "secret": "4d1113c51e", "media": "photo", "latitude": "0", "id": "117998006", "tags": "wedding roanmountain"}, {"datetaken": "2003-10-31 00:00:00", "license": "1", "title": "Bride and Groom", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/44/116077074_43cfad034c_o.jpg", "secret": "43cfad034c", "media": "photo", "latitude": "40.580401", "id": "116077074", "tags": "wedding schwa mez"}, {"datetaken": "2003-10-31 00:00:01", "license": "1", "title": "Bride and Groom", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/34/116077082_241973f6fd_o.jpg", "secret": "241973f6fd", "media": "photo", "latitude": "40.580401", "id": "116077082", "tags": "wedding schwa mez"}, {"datetaken": "2003-10-31 00:00:02", "license": "1", "title": "Bride and Groom", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/49/116077098_b998794853_o.jpg", "secret": "b998794853", "media": "photo", "latitude": "40.580401", "id": "116077098", "tags": "wedding schwa mez"}, {"datetaken": "2003-10-31 00:00:03", "license": "1", "title": "Maid of Honor", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/19/116077109_567c3c50e9_o.jpg", "secret": "567c3c50e9", "media": "photo", "latitude": "40.580401", "id": "116077109", "tags": "wedding"}, {"datetaken": "2003-10-31 00:00:04", "license": "1", "title": "Wedding Party", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/44/116077120_a9f006af24_o.jpg", "secret": "a9f006af24", "media": "photo", "latitude": "40.580401", "id": "116077120", "tags": "wedding jason rob schwa mez wagz"}, {"datetaken": "2003-10-31 00:00:05", "license": "1", "title": "Wedding Party", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/52/116077127_56f722f061_o.jpg", "secret": "56f722f061", "media": "photo", "latitude": "40.580401", "id": "116077127", "tags": "justin wedding jessica rob skunk schwa mez wagz"}, {"datetaken": "2003-10-31 00:00:06", "license": "1", "title": "Chantal and Maurice", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/34/116077150_259b133d33_o.jpg", "secret": "259b133d33", "media": "photo", "latitude": "40.580401", "id": "116077150", "tags": "wedding maurice chantal"}, {"datetaken": "2003-10-31 00:00:07", "license": "1", "title": "Breakfast at Tiffany's and a Cat with a Gun", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/19/116077159_07b1c52e0d_o.jpg", "secret": "07b1c52e0d", "media": "photo", "latitude": "40.580401", "id": "116077159", "tags": "wedding claire andrea"}, {"datetaken": "2003-10-31 00:00:08", "license": "1", "title": "Claire and Andrea", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/40/116077167_94c4b34073_o.jpg", "secret": "94c4b34073", "media": "photo", "latitude": "40.580401", "id": "116077167", "tags": "wedding claire andrea"}, {"datetaken": "2003-10-31 00:00:09", "license": "1", "title": "Elvis Deeming", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/38/116077183_86bc323b20_o.jpg", "secret": "86bc323b20", "media": "photo", "latitude": "40.580401", "id": "116077183", "tags": "wedding jason"}, {"datetaken": "2003-10-31 00:00:10", "license": "1", "title": "Elvis and the Arab", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/37/116077189_f2cf599e04_o.jpg", "secret": "f2cf599e04", "media": "photo", "latitude": "40.580401", "id": "116077189", "tags": "wedding jason melissa"}, {"datetaken": "2003-10-31 00:00:11", "license": "1", "title": "Emily and Robert", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/47/116077196_d0b5b8bf93_o.jpg", "secret": "d0b5b8bf93", "media": "photo", "latitude": "40.580401", "id": "116077196", "tags": "wedding robert emily"}, {"datetaken": "2003-10-31 00:00:12", "license": "1", "title": "Fire Walk With Me", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/43/116077216_1c78b50c2c_o.jpg", "secret": "1c78b50c2c", "media": "photo", "latitude": "40.580401", "id": "116077216", "tags": "wedding matt radar"}, {"datetaken": "2003-10-31 00:00:13", "license": "1", "title": "Groom", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/53/116077250_52ec0e52bf_o.jpg", "secret": "52ec0e52bf", "media": "photo", "latitude": "40.580401", "id": "116077250", "tags": "wedding schwa"}, {"datetaken": "2003-10-31 00:00:14", "license": "1", "title": "Jack Sparrow", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/19/116077258_3a223c620c_o.jpg", "secret": "3a223c620c", "media": "photo", "latitude": "40.580401", "id": "116077258", "tags": "wedding rene moms mez"}, {"datetaken": "2003-10-31 00:00:15", "license": "1", "title": "Jen, Tracy, and Karrah", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/39/116077261_a4ec0f34c9_o.jpg", "secret": "a4ec0f34c9", "media": "photo", "latitude": "40.580401", "id": "116077261", "tags": "wedding jen tracy karrah"}, {"datetaken": "2003-10-31 00:00:16", "license": "1", "title": "Karl", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/41/116077275_0b5481e5a4_o.jpg", "secret": "0b5481e5a4", "media": "photo", "latitude": "40.580401", "id": "116077275", "tags": "wedding karl alvarez"}, {"datetaken": "2003-10-31 00:00:17", "license": "1", "title": "Lonnie", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/56/116077320_ba2e3b9416_o.jpg", "secret": "ba2e3b9416", "media": "photo", "latitude": "40.580401", "id": "116077320", "tags": "wedding lonnie"}, {"datetaken": "2003-10-31 00:00:18", "license": "1", "title": "Marilyn and Elvis", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/54/116077327_0d981cc38e_o.jpg", "secret": "0d981cc38e", "media": "photo", "latitude": "40.580401", "id": "116077327", "tags": "wedding jason"}, {"datetaken": "2003-10-31 00:00:19", "license": "1", "title": "Melanie and Rik", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/56/116077335_920ebc5fce_o.jpg", "secret": "920ebc5fce", "media": "photo", "latitude": "40.580401", "id": "116077335", "tags": "wedding melanie rik"}, {"datetaken": "2003-10-31 00:00:20", "license": "1", "title": "Mike, Rik, and Melanie", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/19/116077348_395f02c70d_o.jpg", "secret": "395f02c70d", "media": "photo", "latitude": "40.580401", "id": "116077348", "tags": "wedding melanie rik razl"}, {"datetaken": "2003-10-31 00:00:21", "license": "1", "title": "Moms", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/50/116077359_31467a8134_o.jpg", "secret": "31467a8134", "media": "photo", "latitude": "40.580401", "id": "116077359", "tags": "wedding mom moms"}, {"datetaken": "2003-10-31 00:00:22", "license": "1", "title": "Nightmare Before Christmas", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/49/116077375_51902f72ef_o.jpg", "secret": "51902f72ef", "media": "photo", "latitude": "40.580401", "id": "116077375", "tags": "wedding mike maria"}, {"datetaken": "2003-10-31 00:00:23", "license": "1", "title": "Nightmare Before Christmas", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/52/116077385_568d45f271_o.jpg", "secret": "568d45f271", "media": "photo", "latitude": "40.580401", "id": "116077385", "tags": "wedding mike maria"}, {"datetaken": "2003-10-31 00:00:24", "license": "1", "title": "Paul van Gogh", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/42/116077396_9cc9a46754_o.jpg", "secret": "9cc9a46754", "media": "photo", "latitude": "40.580401", "id": "116077396", "tags": "wedding paul"}, {"datetaken": "2003-10-31 00:00:25", "license": "1", "title": "Radar and Skunk", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/53/116077406_02d5099102_o.jpg", "secret": "02d5099102", "media": "photo", "latitude": "40.580401", "id": "116077406", "tags": "wedding skunk radar"}, {"datetaken": "2003-10-31 00:00:26", "license": "1", "title": "Rene and Ec", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/35/116077416_a43e0b6eaf_o.jpg", "secret": "a43e0b6eaf", "media": "photo", "latitude": "40.580401", "id": "116077416", "tags": "wedding rene ec"}, {"datetaken": "2003-10-31 00:00:27", "license": "1", "title": "Tracy as Saint Pauli's Girl", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/51/116077424_f386f8d3c8_o.jpg", "secret": "f386f8d3c8", "media": "photo", "latitude": "40.580401", "id": "116077424", "tags": "wedding tracy"}, {"datetaken": "2003-10-31 00:00:28", "license": "1", "title": "Sam and Karen", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/50/116077429_df2f1a414f_o.jpg", "secret": "df2f1a414f", "media": "photo", "latitude": "40.580401", "id": "116077429", "tags": "wedding sam karen"}, {"datetaken": "2003-10-31 00:00:29", "license": "1", "title": "Sandy", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/53/116077435_3ea0bb5c67_o.jpg", "secret": "3ea0bb5c67", "media": "photo", "latitude": "40.580401", "id": "116077435", "tags": "wedding sandy"}, {"datetaken": "2003-10-31 00:00:30", "license": "1", "title": "Sara and Jacob", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/55/116077442_570fed22d8_o.jpg", "secret": "570fed22d8", "media": "photo", "latitude": "40.580401", "id": "116077442", "tags": "wedding sarah jacob"}, {"datetaken": "2003-10-31 00:00:31", "license": "1", "title": "Suzi and Laura", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/19/116077455_a525508384_o.jpg", "secret": "a525508384", "media": "photo", "latitude": "40.580401", "id": "116077455", "tags": "wedding laura suzi"}, {"datetaken": "2003-10-31 00:00:32", "license": "1", "title": "Tara and a Scary Ghost", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/39/116077459_8962b9e7cf_o.jpg", "secret": "8962b9e7cf", "media": "photo", "latitude": "40.580401", "id": "116077459", "tags": "wedding jason tara"}, {"datetaken": "2003-10-31 00:00:33", "license": "1", "title": "The Seven Year Breakfast", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/42/116077470_861f953f21_o.jpg", "secret": "861f953f21", "media": "photo", "latitude": "40.580401", "id": "116077470", "tags": "wedding claire"}, {"datetaken": "2003-10-31 00:00:34", "license": "1", "title": "Tony and Mike", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/45/116077475_ce8b4be034_o.jpg", "secret": "ce8b4be034", "media": "photo", "latitude": "40.580401", "id": "116077475", "tags": "wedding mike tony"}, {"datetaken": "2003-10-31 00:00:35", "license": "1", "title": "Violently Happy", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/49/116077494_bed1feb250_o.jpg", "secret": "bed1feb250", "media": "photo", "latitude": "40.580401", "id": "116077494", "tags": "wedding skunk"}, {"datetaken": "2003-10-31 00:00:36", "license": "1", "title": "Zach and Sandy", "text": "", "album_id": "72057594087647761", "longitude": "-105.050486", "url_o": "https://farm1.staticflickr.com/44/116077501_18d2d4d216_o.jpg", "secret": "18d2d4d216", "media": "photo", "latitude": "40.580401", "id": "116077501", "tags": "wedding sandy ragz"}, {"datetaken": "2003-10-31 00:00:37", "license": "1", "title": "Count Crackula Sings", "text": "", "album_id": "72057594087647761", "longitude": "-105.076782", "url_o": "https://farm1.staticflickr.com/44/116077512_f378f7aab2_o.jpg", "secret": "f378f7aab2", "media": "photo", "latitude": "40.588239", "id": "116077512", "tags": "justin wedding sarah jacob sean rob wagz"}, {"datetaken": "2003-10-31 00:00:38", "license": "1", "title": "Eric and Melissa", "text": "", "album_id": "72057594087647761", "longitude": "-105.076782", "url_o": "https://farm1.staticflickr.com/47/116077524_ee24699658_o.jpg", "secret": "ee24699658", "media": "photo", "latitude": "40.588239", "id": "116077524", "tags": "wedding eric melissa"}, {"datetaken": "2003-10-31 00:00:39", "license": "1", "title": "Erika", "text": "", "album_id": "72057594087647761", "longitude": "-105.076782", "url_o": "https://farm1.staticflickr.com/34/116077543_1b69b58084_o.jpg", "secret": "1b69b58084", "media": "photo", "latitude": "40.588239", "id": "116077543", "tags": "wedding erika"}, {"datetaken": "2003-10-31 00:00:40", "license": "1", "title": "Jenny and Ec", "text": "", "album_id": "72057594087647761", "longitude": "-105.076782", "url_o": "https://farm1.staticflickr.com/45/116077549_64a86a7891_o.jpg", "secret": "64a86a7891", "media": "photo", "latitude": "40.588239", "id": "116077549", "tags": "wedding jenny ec"}, {"datetaken": "2003-10-31 00:00:41", "license": "1", "title": "Jon", "text": "", "album_id": "72057594087647761", "longitude": "-105.076782", "url_o": "https://farm1.staticflickr.com/53/116077560_0d08d4c734_o.jpg", "secret": "0d08d4c734", "media": "photo", "latitude": "40.588239", "id": "116077560", "tags": "wedding casbah kyra"}, {"datetaken": "2003-10-31 00:00:42", "license": "1", "title": "Karrah, Jason, and Melissa", "text": "", "album_id": "72057594087647761", "longitude": "-105.076782", "url_o": "https://farm1.staticflickr.com/56/116077576_c02df05839_o.jpg", "secret": "c02df05839", "media": "photo", "latitude": "40.588239", "id": "116077576", "tags": "wedding jason melissa karrah"}, {"datetaken": "2003-10-31 00:00:43", "license": "1", "title": "Best Man", "text": "", "album_id": "72057594087647761", "longitude": "-105.076782", "url_o": "https://farm1.staticflickr.com/40/116077582_77ff85fd73_o.jpg", "secret": "77ff85fd73", "media": "photo", "latitude": "40.588239", "id": "116077582", "tags": "wedding jason eric chase skunk mez"}, {"datetaken": "2006-04-15 15:47:18", "license": "1", "title": "20060415(034)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/130615762_be4e9fad99_o.jpg", "secret": "be4e9fad99", "media": "photo", "latitude": "0", "id": "130615762", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 15:47:29", "license": "1", "title": "20060415(035)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/130615775_91300f9e8a_o.jpg", "secret": "91300f9e8a", "media": "photo", "latitude": "0", "id": "130615775", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 15:47:42", "license": "1", "title": "20060415(036)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/130615783_8915085935_o.jpg", "secret": "8915085935", "media": "photo", "latitude": "0", "id": "130615783", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 15:47:57", "license": "1", "title": "20060415(037)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/130615790_f9c44fcf8b_o.jpg", "secret": "f9c44fcf8b", "media": "photo", "latitude": "0", "id": "130615790", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 15:48:23", "license": "1", "title": "20060415(038)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/130615807_2b4935df43_o.jpg", "secret": "2b4935df43", "media": "photo", "latitude": "0", "id": "130615807", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 15:48:38", "license": "1", "title": "20060415(039)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/130615821_04be05d968_o.jpg", "secret": "04be05d968", "media": "photo", "latitude": "0", "id": "130615821", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 15:48:48", "license": "1", "title": "20060415(040)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/130615840_3b75395e60_o.jpg", "secret": "3b75395e60", "media": "photo", "latitude": "0", "id": "130615840", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 15:48:57", "license": "1", "title": "20060415(041)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/130615848_53979c5399_o.jpg", "secret": "53979c5399", "media": "photo", "latitude": "0", "id": "130615848", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 15:49:19", "license": "1", "title": "20060415(042)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/130615866_e71c80df85_o.jpg", "secret": "e71c80df85", "media": "photo", "latitude": "0", "id": "130615866", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 15:49:49", "license": "1", "title": "20060415(043)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/130615876_68cc5264cf_o.jpg", "secret": "68cc5264cf", "media": "photo", "latitude": "0", "id": "130615876", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 15:49:57", "license": "1", "title": "20060415(044)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/130615885_6ca7d7095c_o.jpg", "secret": "6ca7d7095c", "media": "photo", "latitude": "0", "id": "130615885", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 15:50:21", "license": "1", "title": "20060415(045)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/130615901_92ffa63be7_o.jpg", "secret": "92ffa63be7", "media": "photo", "latitude": "0", "id": "130615901", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 15:51:00", "license": "1", "title": "20060415(046)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/130615916_85b6d880d7_o.jpg", "secret": "85b6d880d7", "media": "photo", "latitude": "0", "id": "130615916", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 15:51:24", "license": "1", "title": "20060415(047)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/130615922_69bd354998_o.jpg", "secret": "69bd354998", "media": "photo", "latitude": "0", "id": "130615922", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 15:55:46", "license": "1", "title": "20060415(048)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/130615927_ebf8bdf1ab_o.jpg", "secret": "ebf8bdf1ab", "media": "photo", "latitude": "0", "id": "130615927", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 15:57:43", "license": "1", "title": "20060415(049)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/130615943_f28129760b_o.jpg", "secret": "f28129760b", "media": "photo", "latitude": "0", "id": "130615943", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 15:57:58", "license": "1", "title": "20060415(050)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/130615952_0d42ff8037_o.jpg", "secret": "0d42ff8037", "media": "photo", "latitude": "0", "id": "130615952", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 15:59:06", "license": "1", "title": "20060415(051)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/130615965_611a579d92_o.jpg", "secret": "611a579d92", "media": "photo", "latitude": "0", "id": "130615965", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 17:14:36", "license": "1", "title": "20060415(052)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/130615975_91a7066e40_o.jpg", "secret": "91a7066e40", "media": "photo", "latitude": "0", "id": "130615975", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 17:14:53", "license": "1", "title": "20060415(053)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/130615984_bc648a11d0_o.jpg", "secret": "bc648a11d0", "media": "photo", "latitude": "0", "id": "130615984", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-15 17:15:27", "license": "1", "title": "20060415(054)", "text": "", "album_id": "72057594110155809", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/130616009_708fc67dea_o.jpg", "secret": "708fc67dea", "media": "photo", "latitude": "0", "id": "130616009", "tags": "party weddingshower casc"}, {"datetaken": "2006-04-26 22:12:43", "license": "3", "title": "SG24", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/135754065_f9a05c757e_o.jpg", "secret": "f9a05c757e", "media": "photo", "latitude": "0", "id": "135754065", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:12:44", "license": "3", "title": "SG23", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/135754070_c662d580e8_o.jpg", "secret": "c662d580e8", "media": "photo", "latitude": "0", "id": "135754070", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:12:45", "license": "3", "title": "SG22", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/135754075_fa07f25e51_o.jpg", "secret": "fa07f25e51", "media": "photo", "latitude": "0", "id": "135754075", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:12:47", "license": "3", "title": "SG21", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/135754084_fe16b09c97_o.jpg", "secret": "fe16b09c97", "media": "photo", "latitude": "0", "id": "135754084", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:12:48", "license": "3", "title": "SG20", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/135754092_b1c9134750_o.jpg", "secret": "b1c9134750", "media": "photo", "latitude": "0", "id": "135754092", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:12:50", "license": "3", "title": "SG19", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/135754100_e508bac2fb_o.jpg", "secret": "e508bac2fb", "media": "photo", "latitude": "0", "id": "135754100", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:12:51", "license": "3", "title": "SG18", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/135754108_42cd5fe1a7_o.jpg", "secret": "42cd5fe1a7", "media": "photo", "latitude": "0", "id": "135754108", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:12:52", "license": "3", "title": "SG17", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/135754120_900c11bfcf_o.jpg", "secret": "900c11bfcf", "media": "photo", "latitude": "0", "id": "135754120", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:12:54", "license": "3", "title": "SG16", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/135754129_8ca3c7f44e_o.jpg", "secret": "8ca3c7f44e", "media": "photo", "latitude": "0", "id": "135754129", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:12:55", "license": "3", "title": "SG15", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/135754133_652ac87f3d_o.jpg", "secret": "652ac87f3d", "media": "photo", "latitude": "0", "id": "135754133", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:12:57", "license": "3", "title": "SG14", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/135754147_dab95da3fb_o.jpg", "secret": "dab95da3fb", "media": "photo", "latitude": "0", "id": "135754147", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:12:58", "license": "3", "title": "Wedding Day", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/135754156_8d01c12ebc_o.jpg", "secret": "8d01c12ebc", "media": "photo", "latitude": "0", "id": "135754156", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:12:59", "license": "3", "title": "SG12", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/135754167_071f0b2258_o.jpg", "secret": "071f0b2258", "media": "photo", "latitude": "0", "id": "135754167", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:13:01", "license": "3", "title": "SG11", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/135754179_462d8753a2_o.jpg", "secret": "462d8753a2", "media": "photo", "latitude": "0", "id": "135754179", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:13:03", "license": "3", "title": "SG10", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/135754183_d9c93543cd_o.jpg", "secret": "d9c93543cd", "media": "photo", "latitude": "0", "id": "135754183", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:13:04", "license": "3", "title": "SG9", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/135754189_80334f4179_o.jpg", "secret": "80334f4179", "media": "photo", "latitude": "0", "id": "135754189", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:13:05", "license": "3", "title": "SG8", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/135754193_82ce3ea05e_o.jpg", "secret": "82ce3ea05e", "media": "photo", "latitude": "0", "id": "135754193", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:13:06", "license": "3", "title": "SG7", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/135754199_7bee20331c_o.jpg", "secret": "7bee20331c", "media": "photo", "latitude": "0", "id": "135754199", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:13:08", "license": "3", "title": "SG6", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/135754210_4fad297265_o.jpg", "secret": "4fad297265", "media": "photo", "latitude": "0", "id": "135754210", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:13:09", "license": "3", "title": "SG5", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/135754221_99c81b65a0_o.jpg", "secret": "99c81b65a0", "media": "photo", "latitude": "0", "id": "135754221", "tags": "wedding weddings people dancing dance event events celebration party jewish"}, {"datetaken": "2006-04-26 22:13:11", "license": "3", "title": "SG4", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/135754229_9bc2b18c46_o.jpg", "secret": "9bc2b18c46", "media": "photo", "latitude": "0", "id": "135754229", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:13:12", "license": "3", "title": "SG3", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/135754236_81507aef64_o.jpg", "secret": "81507aef64", "media": "photo", "latitude": "0", "id": "135754236", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:13:13", "license": "3", "title": "SG2", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/135754239_1ceccf4106_o.jpg", "secret": "1ceccf4106", "media": "photo", "latitude": "0", "id": "135754239", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-04-26 22:13:15", "license": "3", "title": "SG1", "text": "", "album_id": "72157602307184121", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/135754246_8d5ea14cc8_o.jpg", "secret": "8d5ea14cc8", "media": "photo", "latitude": "0", "id": "135754246", "tags": "wedding party people dance dancing events celebration event jewish weddings"}, {"datetaken": "2006-05-13 14:23:47", "license": "1", "title": "Church", "text": "", "album_id": "72057594136895808", "longitude": "-104.578782", "url_o": "https://farm1.staticflickr.com/46/147774456_e4747d223e_o.jpg", "secret": "e4747d223e", "media": "photo", "latitude": "50.437643", "id": "147774456", "tags": "wedding canada 2006 jana shawn regina saskatchewan"}, {"datetaken": "2006-05-13 14:33:53", "license": "1", "title": "Reading", "text": "", "album_id": "72057594136895808", "longitude": "-104.578782", "url_o": "https://farm1.staticflickr.com/46/147774507_3e2f4f5e28_o.jpg", "secret": "3e2f4f5e28", "media": "photo", "latitude": "50.437643", "id": "147774507", "tags": "wedding canada 2006 jana shawn regina saskatchewan"}, {"datetaken": "2006-05-13 14:42:12", "license": "1", "title": "Vows", "text": "", "album_id": "72057594136895808", "longitude": "-104.578782", "url_o": "https://farm1.staticflickr.com/56/147774550_4a4bdcde42_o.jpg", "secret": "4a4bdcde42", "media": "photo", "latitude": "50.437643", "id": "147774550", "tags": "wedding canada 2006 jana shawn regina saskatchewan"}, {"datetaken": "2006-05-13 14:44:47", "license": "1", "title": "Sealed with a Kiss", "text": "", "album_id": "72057594136895808", "longitude": "-104.578782", "url_o": "https://farm1.staticflickr.com/50/147774585_9e34480268_o.jpg", "secret": "9e34480268", "media": "photo", "latitude": "50.437643", "id": "147774585", "tags": "wedding canada 2006 jana shawn regina saskatchewan"}, {"datetaken": "2006-05-13 14:47:39", "license": "1", "title": "Registry", "text": "", "album_id": "72057594136895808", "longitude": "-104.578782", "url_o": "https://farm1.staticflickr.com/44/147774637_e90b3a9411_o.jpg", "secret": "e90b3a9411", "media": "photo", "latitude": "50.437643", "id": "147774637", "tags": "wedding canada 2006 jana shawn regina saskatchewan"}, {"datetaken": "2006-05-13 14:48:48", "license": "1", "title": "Wife and Husband", "text": "", "album_id": "72057594136895808", "longitude": "-104.578782", "url_o": "https://farm1.staticflickr.com/47/147774706_4d83cfe67a_o.jpg", "secret": "4d83cfe67a", "media": "photo", "latitude": "50.437643", "id": "147774706", "tags": "jana shawn wedding regina 2006 saskatchewan canada"}, {"datetaken": "2006-05-13 14:53:07", "license": "1", "title": "Wedding party", "text": "", "album_id": "72057594136895808", "longitude": "-104.578782", "url_o": "https://farm1.staticflickr.com/55/147774740_31223a1b86_o.jpg", "secret": "31223a1b86", "media": "photo", "latitude": "50.437643", "id": "147774740", "tags": "wedding canada 2006 jana shawn regina saskatchewan"}, {"datetaken": "2006-05-13 14:53:19", "license": "1", "title": "Happy Couple and Moms", "text": "", "album_id": "72057594136895808", "longitude": "-104.578782", "url_o": "https://farm1.staticflickr.com/46/147774784_0246be11e5_o.jpg", "secret": "0246be11e5", "media": "photo", "latitude": "50.437643", "id": "147774784", "tags": "wedding canada 2006 jana shawn regina saskatchewan"}, {"datetaken": "2006-05-13 19:47:21", "license": "1", "title": "A Warm Reception", "text": "", "album_id": "72057594136895808", "longitude": "-104.599435", "url_o": "https://farm1.staticflickr.com/48/147774830_46dfc290d6_o.jpg", "secret": "46dfc290d6", "media": "photo", "latitude": "50.447482", "id": "147774830", "tags": "wedding canada 2006 jana shawn regina saskatchewan"}, {"datetaken": "2006-05-13 19:47:58", "license": "1", "title": "Hanging on Every Word", "text": "", "album_id": "72057594136895808", "longitude": "-104.599435", "url_o": "https://farm1.staticflickr.com/47/147774889_51d8bdd944_o.jpg", "secret": "51d8bdd944", "media": "photo", "latitude": "50.447482", "id": "147774889", "tags": "wedding canada 2006 jana shawn regina saskatchewan"}, {"datetaken": "2006-05-13 19:53:08", "license": "1", "title": "Toast to the Bride", "text": "", "album_id": "72057594136895808", "longitude": "-104.599435", "url_o": "https://farm1.staticflickr.com/44/147774944_ee87b58dbb_o.jpg", "secret": "ee87b58dbb", "media": "photo", "latitude": "50.447482", "id": "147774944", "tags": "wedding canada 2006 jana shawn regina saskatchewan"}, {"datetaken": "2006-05-13 20:04:03", "license": "1", "title": "Roast to the Groom", "text": "", "album_id": "72057594136895808", "longitude": "-104.599435", "url_o": "https://farm1.staticflickr.com/52/147775003_26feffc729_o.jpg", "secret": "26feffc729", "media": "photo", "latitude": "50.447482", "id": "147775003", "tags": "wedding canada 2006 jana shawn regina saskatchewan"}, {"datetaken": "2006-05-13 20:12:46", "license": "1", "title": "Bride and Groom's Response", "text": "", "album_id": "72057594136895808", "longitude": "-104.599435", "url_o": "https://farm1.staticflickr.com/55/147775055_e6831fe350_o.jpg", "secret": "e6831fe350", "media": "photo", "latitude": "50.447482", "id": "147775055", "tags": "wedding canada 2006 jana shawn regina saskatchewan"}, {"datetaken": "2006-05-13 20:19:30", "license": "1", "title": "Deck the Hall", "text": "", "album_id": "72057594136895808", "longitude": "-104.599435", "url_o": "https://farm1.staticflickr.com/46/147775102_9b1b8b39a7_o.jpg", "secret": "9b1b8b39a7", "media": "photo", "latitude": "50.447482", "id": "147775102", "tags": "wedding canada 2006 jana shawn regina saskatchewan"}, {"datetaken": "2006-05-13 20:20:04", "license": "1", "title": "So Who's on the Dark Side?", "text": "", "album_id": "72057594136895808", "longitude": "-104.599435", "url_o": "https://farm1.staticflickr.com/49/147775164_f278a586e8_o.jpg", "secret": "f278a586e8", "media": "photo", "latitude": "50.447482", "id": "147775164", "tags": "wedding canada 2006 jana shawn regina saskatchewan"}, {"datetaken": "2006-05-13 20:20:16", "license": "1", "title": "Obi-Warren Kenobi", "text": "", "album_id": "72057594136895808", "longitude": "-104.599435", "url_o": "https://farm1.staticflickr.com/55/147775235_3355c0db21_o.jpg", "secret": "3355c0db21", "media": "photo", "latitude": "50.447482", "id": "147775235", "tags": "jana shawn wedding regina 2006 saskatchewan canada"}, {"datetaken": "2006-05-13 20:57:48", "license": "1", "title": "Save the Last Dance for Me", "text": "", "album_id": "72057594136895808", "longitude": "-104.599435", "url_o": "https://farm1.staticflickr.com/49/147775316_081a876772_o.jpg", "secret": "081a876772", "media": "photo", "latitude": "50.447482", "id": "147775316", "tags": "wedding canada 2006 jana shawn regina saskatchewan"}, {"datetaken": "2006-05-13 21:03:56", "license": "1", "title": "Faye", "text": "", "album_id": "72057594136895808", "longitude": "-104.599435", "url_o": "https://farm1.staticflickr.com/52/147775404_40aee5c072_o.jpg", "secret": "40aee5c072", "media": "photo", "latitude": "50.447482", "id": "147775404", "tags": "wedding canada 2006 jana shawn regina saskatchewan"}, {"license": "0", "title": "Bird Dance", "farm": "1", "text": "", "album_id": "72057594136895808", "secret": "56ffe8b525", "longitude": "-104.599435", "server": "53", "datetaken": "2006-05-13 21:54:16", "url_m": "https://farm1.staticflickr.com/53/147775431_56ffe8b525.jpg", "media": "photo", "latitude": "50.447482", "id": "147775431", "tags": "wedding canada 2006 jana shawn regina saskatchewan"}, {"datetaken": "2006-06-03 00:00:00", "license": "3", "title": "Menai and Peter", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/160913417_b9f5d051dd_o.jpg", "secret": "b9f5d051dd", "media": "photo", "latitude": "0", "id": "160913417", "tags": "city wedding party london garden groom bride wesley methodist menai stgeorgeschapel bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:01", "license": "3", "title": "St George's Chapel", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/160913422_de675dcacb_o.jpg", "secret": "de675dcacb", "media": "photo", "latitude": "0", "id": "160913422", "tags": "bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:02", "license": "3", "title": "George", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/160913424_e7d6d412d5_o.jpg", "secret": "e7d6d412d5", "media": "photo", "latitude": "0", "id": "160913424", "tags": "city wedding party baby london smile guests garden wesley methodist stgeorgeschapel bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:03", "license": "3", "title": "Katy and George", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/160913427_f5f2f4f0f2_o.jpg", "secret": "f5f2f4f0f2", "media": "photo", "latitude": "0", "id": "160913427", "tags": "city wedding party baby london guests garden wesley methodist stgeorgeschapel bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:04", "license": "3", "title": "Bride and guests", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/160913430_e53ee98790_o.jpg", "secret": "e53ee98790", "media": "photo", "latitude": "0", "id": "160913430", "tags": "city wedding party london monument guests garden bride wesley methodist stgeorgeschapel bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:05", "license": "3", "title": "George", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/160913433_96ce4638a0_o.jpg", "secret": "96ce4638a0", "media": "photo", "latitude": "0", "id": "160913433", "tags": "city baby london garden wesley methodist stgeorgeschapel bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:06", "license": "3", "title": "St George's Chapel", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/160916487_2afa8b6f65_o.jpg", "secret": "2afa8b6f65", "media": "photo", "latitude": "0", "id": "160916487", "tags": "bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:07", "license": "3", "title": "Wedding party", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/160916488_db27771395_o.jpg", "secret": "db27771395", "media": "photo", "latitude": "0", "id": "160916488", "tags": "city wedding party london guests wesley methodist stgeorgeschapel bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:08", "license": "3", "title": "St George's Chapel", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/160916489_88bb2a8780_o.jpg", "secret": "88bb2a8780", "media": "photo", "latitude": "0", "id": "160916489", "tags": "city london wesley methodist stgeorgeschapel bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:09", "license": "3", "title": "Wedding party", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/160916490_1a2980e90c_o.jpg", "secret": "1a2980e90c", "media": "photo", "latitude": "0", "id": "160916490", "tags": "wedding party london guests wesley stgeorgeschapel bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:10", "license": "3", "title": "Taxi", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/160916494_2d624890a5_o.jpg", "secret": "2d624890a5", "media": "photo", "latitude": "0", "id": "160916494", "tags": "city wedding london cab taxi wesley stgeorgeschapel bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:11", "license": "3", "title": "Bridesmaids", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/160916495_67b62da4d5_o.jpg", "secret": "67b62da4d5", "media": "photo", "latitude": "0", "id": "160916495", "tags": "city wedding london bridesmaids wesley stgeorgeschapel bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:12", "license": "3", "title": "Taxi", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/160919407_655a10deb8_o.jpg", "secret": "655a10deb8", "media": "photo", "latitude": "0", "id": "160919407", "tags": "city wedding london taxi wesley stgeorgeschapel bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:13", "license": "3", "title": "Photographer", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/160919415_1cd095d579_o.jpg", "secret": "1cd095d579", "media": "photo", "latitude": "0", "id": "160919415", "tags": "city wedding london garden photographer shadows stationershall bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:14", "license": "3", "title": "Bride and groom", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/160919417_25b0fd91f9_o.jpg", "secret": "25b0fd91f9", "media": "photo", "latitude": "0", "id": "160919417", "tags": "city wedding party london garden stationershall bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:15", "license": "3", "title": "Dinner", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/160919420_e6010afe99_o.jpg", "secret": "e6010afe99", "media": "photo", "latitude": "0", "id": "160919420", "tags": "city wedding party london dinner stationershall bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:16", "license": "3", "title": "Window box", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/160919421_30c0d39b57_o.jpg", "secret": "30c0d39b57", "media": "photo", "latitude": "0", "id": "160919421", "tags": "city flowers london window night windowbox stationershall bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:17", "license": "3", "title": "Judith", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/160919422_0ceefac137_o.jpg", "secret": "0ceefac137", "media": "photo", "latitude": "0", "id": "160919422", "tags": "wedding party peter judith menai bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-06-03 00:00:18", "license": "3", "title": "St Paul's Cathedral", "text": "", "album_id": "72157594156380350", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/160921195_c09af32991_o.jpg", "secret": "c09af32991", "media": "photo", "latitude": "0", "id": "160921195", "tags": "city london night cathedral stpaulscathedral bradnock menaiswedding menaiandpeter"}, {"datetaken": "2006-03-17 15:46:12", "license": "3", "title": "Justin Greets", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/63/185024794_505027aafc_o.jpg", "secret": "505027aafc", "media": "photo", "latitude": "45.521559", "id": "185024794", "tags": "wedding happy photographer 2006 peat bathrobe stpatricksday"}, {"datetaken": "2006-03-17 15:48:13", "license": "3", "title": "Tequila", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/76/185024904_96453e86f2_o.jpg", "secret": "96453e86f2", "media": "photo", "latitude": "45.521559", "id": "185024904", "tags": "wedding 2006 peat shaker stpatricksday donjulio"}, {"datetaken": "2006-03-17 15:48:42", "license": "3", "title": "Poncho Writes", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/63/185024961_65918bad97_o.jpg", "secret": "65918bad97", "media": "photo", "latitude": "45.521559", "id": "185024961", "tags": "wedding writing 2006 peat poncho stpatricksday"}, {"datetaken": "2006-03-17 16:00:12", "license": "3", "title": "Jon and Me", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/51/185025030_fd7ab0983b_o.jpg", "secret": "fd7ab0983b", "media": "photo", "latitude": "45.521559", "id": "185025030", "tags": "wedding 2006 peat stpatricksday"}, {"datetaken": "2006-03-17 16:02:26", "license": "3", "title": "Red Bull, Tequila, Cigars, and Tums", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/64/185025013_9ce64ff418_o.jpg", "secret": "9ce64ff418", "media": "photo", "latitude": "45.521559", "id": "185025013", "tags": "wedding cigar 2006 tequila peat redbull stpatricksday tums"}, {"datetaken": "2006-03-17 16:40:03", "license": "3", "title": "Tom", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/48/185025049_206163c288_o.jpg", "secret": "206163c288", "media": "photo", "latitude": "45.521559", "id": "185025049", "tags": "wedding sunglasses tom 2006 suit peat stpatricksday"}, {"datetaken": "2006-03-17 16:40:56", "license": "3", "title": "Dal", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/46/185024938_04210466c2_o.jpg", "secret": "04210466c2", "media": "photo", "latitude": "45.521559", "id": "185024938", "tags": "wedding bed dal 2006 peat stpatricksday"}, {"datetaken": "2006-03-17 16:46:09", "license": "3", "title": "The Room", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/58/185025081_911ca48419_o.jpg", "secret": "911ca48419", "media": "photo", "latitude": "45.521559", "id": "185025081", "tags": "wedding hotel 2006 peat stpatricksday"}, {"datetaken": "2006-03-17 16:59:00", "license": "3", "title": "The Gents", "text": "", "album_id": "72157594192099361", "longitude": "-122.678623", "url_o": "https://farm1.staticflickr.com/58/185024509_a1a91d18fd_o.jpg", "secret": "a1a91d18fd", "media": "photo", "latitude": "45.521007", "id": "185024509", "tags": "wedding 2006 peat shocker stpatricksday"}, {"datetaken": "2006-03-17 17:05:26", "license": "3", "title": "Fisheye", "text": "", "album_id": "72157594192099361", "longitude": "-122.678977", "url_o": "https://farm1.staticflickr.com/70/185024491_339e6a689a_o.jpg", "secret": "339e6a689a", "media": "photo", "latitude": "45.521033", "id": "185024491", "tags": "wedding 2006 fisheye peat stpatricksday"}, {"datetaken": "2006-03-17 17:59:02", "license": "3", "title": "Cross Walk", "text": "", "album_id": "72157594192099361", "longitude": "-122.678495", "url_o": "https://farm1.staticflickr.com/71/185024539_0715572fcc_o.jpg", "secret": "0715572fcc", "media": "photo", "latitude": "45.521315", "id": "185024539", "tags": "wedding 2006 peat stpatricksday"}, {"datetaken": "2006-03-17 18:34:56", "license": "3", "title": "Bloody Marys", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/49/185024575_550ea21229_o.jpg", "secret": "550ea21229", "media": "photo", "latitude": "45.521559", "id": "185024575", "tags": "wedding salt 2006 peat bloodymary stpatricksday"}, {"datetaken": "2006-03-17 19:32:09", "license": "3", "title": "Dad n' Jane", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/71/185024592_192e5acf4e_o.jpg", "secret": "192e5acf4e", "media": "photo", "latitude": "45.521559", "id": "185024592", "tags": "wedding 2006 peat stpatricksday"}, {"datetaken": "2006-03-17 19:55:40", "license": "3", "title": "The Isle", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/68/185024637_493b41e01e_o.jpg", "secret": "493b41e01e", "media": "photo", "latitude": "45.521559", "id": "185024637", "tags": "wedding 2006 peat stpatricksday"}, {"datetaken": "2006-03-17 20:05:33", "license": "3", "title": "The Lady", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/57/185024662_8ae941a99e_o.jpg", "secret": "8ae941a99e", "media": "photo", "latitude": "45.521559", "id": "185024662", "tags": "wedding 2006 peat stpatricksday"}, {"datetaken": "2006-03-17 20:39:55", "license": "3", "title": "Mom", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/66/185024700_a7dd519ce2_o.jpg", "secret": "a7dd519ce2", "media": "photo", "latitude": "45.521559", "id": "185024700", "tags": "wedding 2006 peat stpatricksday"}, {"datetaken": "2006-03-17 20:44:07", "license": "3", "title": "Owen and Justin", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/47/185024877_99c49f4294_o.jpg", "secret": "99c49f4294", "media": "photo", "latitude": "45.521559", "id": "185024877", "tags": "justin wedding 2006 peat owen stpatricksday"}, {"datetaken": "2006-03-17 21:05:11", "license": "3", "title": "Cherry Blossoms and Cranes", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/73/185024711_56d91971e8_o.jpg", "secret": "56d91971e8", "media": "photo", "latitude": "45.521559", "id": "185024711", "tags": "wedding cherry blossom crane 2006 peat stpatricksday"}, {"datetaken": "2006-03-17 22:11:11", "license": "3", "title": "Poncho Speaks", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/60/185024753_1cef17c9b7_o.jpg", "secret": "1cef17c9b7", "media": "photo", "latitude": "45.521559", "id": "185024753", "tags": "wedding toast 2006 peat poncho stpatricksday"}, {"datetaken": "2006-03-17 22:21:20", "license": "3", "title": "Rob's Toast", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/53/185024831_d29f5b7680_o.jpg", "secret": "d29f5b7680", "media": "photo", "latitude": "45.521559", "id": "185024831", "tags": "wedding toast 2006 rob peat stpatricksday"}, {"datetaken": "2006-03-17 22:25:17", "license": "3", "title": "Jon Speaks", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/59/185024843_b4ba853808_o.jpg", "secret": "b4ba853808", "media": "photo", "latitude": "45.521559", "id": "185024843", "tags": "wedding jon 2006 peat speech stpatricksday"}, {"datetaken": "2006-03-17 23:17:48", "license": "3", "title": "Chris and Katherine", "text": "", "album_id": "72157594192099361", "longitude": "-122.678226", "url_o": "https://farm1.staticflickr.com/67/185024855_6a3cea14d4_o.jpg", "secret": "6a3cea14d4", "media": "photo", "latitude": "45.521559", "id": "185024855", "tags": "chris wedding sister brother katherine 2006 peat stpatricksday"}, {"datetaken": "2006-07-09 13:52:10", "license": "1", "title": "Shar taping a name to Barbara", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/186200471_6398678a60_o.jpg", "secret": "6398678a60", "media": "photo", "latitude": "0", "id": "186200471", "tags": "wedding friends party la 2006 barbara shar michelleneilwedding06"}, {"datetaken": "2006-07-09 14:03:03", "license": "1", "title": "Shar & Dawn", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/186199854_af5afa0d35_o.jpg", "secret": "af5afa0d35", "media": "photo", "latitude": "0", "id": "186199854", "tags": "wedding friends party la 2006 shar michelleneilwedding06"}, {"datetaken": "2006-07-09 14:31:06", "license": "1", "title": "Kendal & Matt", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/186199465_8b2c194eb3_o.jpg", "secret": "8b2c194eb3", "media": "photo", "latitude": "0", "id": "186199465", "tags": "wedding friends party matt la 2006 kendall michelleneilwedding06"}, {"datetaken": "2006-07-09 15:05:46", "license": "1", "title": "Shar reading game questions", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/186199141_815d01fe6f_o.jpg", "secret": "815d01fe6f", "media": "photo", "latitude": "0", "id": "186199141", "tags": "wedding friends party la 2006 shar michelleneilwedding06"}, {"datetaken": "2006-07-09 15:05:55", "license": "1", "title": "Michelle", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/186198688_17ff8fc853_o.jpg", "secret": "17ff8fc853", "media": "photo", "latitude": "0", "id": "186198688", "tags": "wedding friends party la michelle 2006 michelleneilwedding06"}, {"datetaken": "2006-07-09 15:06:34", "license": "1", "title": "Elizabeth & Larry", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/186197987_016a94c3b5_o.jpg", "secret": "016a94c3b5", "media": "photo", "latitude": "0", "id": "186197987", "tags": "wedding friends party la 2006 michelleneilwedding06"}, {"datetaken": "2006-07-09 15:11:21", "license": "1", "title": "Matt", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/186197380_d673afa4cb_o.jpg", "secret": "d673afa4cb", "media": "photo", "latitude": "0", "id": "186197380", "tags": "wedding friends party la 2006 michelleneilwedding06"}, {"datetaken": "2006-07-09 15:12:29", "license": "1", "title": "Michelle & Neil", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/186196715_7e515290d2_o.jpg", "secret": "7e515290d2", "media": "photo", "latitude": "0", "id": "186196715", "tags": "wedding friends party la michelle neil 2006 michelleneilwedding06"}, {"datetaken": "2006-07-09 15:12:56", "license": "1", "title": "Michelle & Neil", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/186195990_983e25c573_o.jpg", "secret": "983e25c573", "media": "photo", "latitude": "0", "id": "186195990", "tags": "wedding friends party la michelle neil 2006 michelleneilwedding06"}, {"datetaken": "2006-07-09 15:14:06", "license": "1", "title": "Michelle & Neil", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/186195279_64b1bf572d_o.jpg", "secret": "64b1bf572d", "media": "photo", "latitude": "0", "id": "186195279", "tags": "wedding friends party la michelle neil 2006 michelleneilwedding06"}, {"datetaken": "2006-07-09 15:25:44", "license": "1", "title": "Ray & Kendall", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/186194650_213743e81c_o.jpg", "secret": "213743e81c", "media": "photo", "latitude": "0", "id": "186194650", "tags": "gay wedding friends party la ray 2006 kendall michelleneilwedding06"}, {"datetaken": "2006-07-09 15:28:30", "license": "1", "title": "Michelle & Neil", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/186193902_a9ba735922_o.jpg", "secret": "a9ba735922", "media": "photo", "latitude": "0", "id": "186193902", "tags": "wedding friends party la michelle neil 2006 michelleneilwedding06"}, {"datetaken": "2006-07-09 15:35:25", "license": "1", "title": "Michelle", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/186193062_fe37a7eca4_o.jpg", "secret": "fe37a7eca4", "media": "photo", "latitude": "0", "id": "186193062", "tags": "wedding friends party la michelle 2006 michelleneilwedding06"}, {"datetaken": "2006-07-09 15:50:17", "license": "1", "title": "Elizabeth & Brian, across the table", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/186192641_24f587ca48_o.jpg", "secret": "24f587ca48", "media": "photo", "latitude": "0", "id": "186192641", "tags": "wedding friends party la 2006 michelleneilwedding06"}, {"datetaken": "2006-07-09 16:37:24", "license": "1", "title": "Neil & Michelle", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/186192112_5190126689_o.jpg", "secret": "5190126689", "media": "photo", "latitude": "0", "id": "186192112", "tags": "wedding friends party la michelle neil 2006 michelleneilwedding06"}, {"datetaken": "2006-07-09 16:44:03", "license": "1", "title": "the girls", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/186190442_4358580bfd_o.jpg", "secret": "4358580bfd", "media": "photo", "latitude": "0", "id": "186190442", "tags": "wedding friends party la michelle 2006 shar michelleneilwedding06"}, {"datetaken": "2006-07-09 16:45:24", "license": "1", "title": "Me, Michelle, & Barbara", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/186189574_0a3e1f3ac6_o.jpg", "secret": "0a3e1f3ac6", "media": "photo", "latitude": "0", "id": "186189574", "tags": "wedding friends party me la michelle 2006 barbara michelleneilwedding06"}, {"datetaken": "2006-07-09 16:45:42", "license": "1", "title": "Shar dresses Michelle in her shower regalia", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/186188824_970fcd4f19_o.jpg", "secret": "970fcd4f19", "media": "photo", "latitude": "0", "id": "186188824", "tags": "wedding friends party la michelle 2006 shar michelleneilwedding06"}, {"datetaken": "2006-07-09 16:45:48", "license": "1", "title": "Michelle in her shower regalia", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/186188377_9cb1cbe1d8_o.jpg", "secret": "9cb1cbe1d8", "media": "photo", "latitude": "0", "id": "186188377", "tags": "wedding friends party la michelle 2006 michelleneilwedding06"}, {"datetaken": "2006-07-09 16:45:51", "license": "1", "title": "Michelle in her shower regalia", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/186200762_20894265ae_o.jpg", "secret": "20894265ae", "media": "photo", "latitude": "0", "id": "186200762", "tags": "wedding friends party la michelle 2006 michelleneilwedding06"}, {"datetaken": "2006-07-09 16:46:18", "license": "1", "title": "Neil & Michelle", "text": "", "album_id": "72157594193720935", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/186187927_06a2fbc5f0_o.jpg", "secret": "06a2fbc5f0", "media": "photo", "latitude": "0", "id": "186187927", "tags": "wedding friends party la michelle neil 2006 michelleneilwedding06"}, {"datetaken": "2006-07-01 15:21:24", "license": "1", "title": "Da Boyz, Da Boyz", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/183023105_b66b7c9189_o.jpg", "secret": "b66b7c9189", "media": "photo", "latitude": "0", "id": "183023105", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 15:25:08", "license": "1", "title": "Mr. Seaman Presents Hallie to Jon", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/183023052_8375393fdd_o.jpg", "secret": "8375393fdd", "media": "photo", "latitude": "0", "id": "183023052", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 15:30:09", "license": "1", "title": "Holding a Windy Veil", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/183022985_0c200fc892_o.jpg", "secret": "0c200fc892", "media": "photo", "latitude": "0", "id": "183022985", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 15:31:29", "license": "1", "title": "Hallie Knows Where the REAL Camera Is", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/183022920_7420558394_o.jpg", "secret": "7420558394", "media": "photo", "latitude": "0", "id": "183022920", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 15:35:12", "license": "1", "title": "Vows", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/183022820_c1d727fcc6_o.jpg", "secret": "c1d727fcc6", "media": "photo", "latitude": "0", "id": "183022820", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 15:54:34", "license": "1", "title": "Walking Down the Isle", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/183022738_e5867b4a85_o.jpg", "secret": "e5867b4a85", "media": "photo", "latitude": "0", "id": "183022738", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 15:57:48", "license": "1", "title": "The Brand New Lobaughs", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/183022644_fee3f3eb13_o.jpg", "secret": "fee3f3eb13", "media": "photo", "latitude": "0", "id": "183022644", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 15:58:24", "license": "1", "title": "Romantic", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/183022579_e2e3278654_o.jpg", "secret": "e2e3278654", "media": "photo", "latitude": "0", "id": "183022579", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:00:46", "license": "1", "title": "Presenting Mr. and Mrs. Jonathan Lobaugh!", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/183022538_3384360ba1_o.jpg", "secret": "3384360ba1", "media": "photo", "latitude": "0", "id": "183022538", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:06:15", "license": "1", "title": "My Beau", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/183022490_bbe521e0aa_o.jpg", "secret": "bbe521e0aa", "media": "photo", "latitude": "0", "id": "183022490", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:07:03", "license": "1", "title": "Ren\u00e9 is Dancing, Maybe", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/183022435_5f35431fae_o.jpg", "secret": "5f35431fae", "media": "photo", "latitude": "0", "id": "183022435", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:15:54", "license": "1", "title": "Sexay Shoulders", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/183022330_d6320c391b_o.jpg", "secret": "d6320c391b", "media": "photo", "latitude": "0", "id": "183022330", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:16:26", "license": "1", "title": "Total Glamour Shot", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/183022272_636906d3c7_o.jpg", "secret": "636906d3c7", "media": "photo", "latitude": "0", "id": "183022272", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:18:10", "license": "1", "title": "Hal", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/183022242_dda5d4e325_o.jpg", "secret": "dda5d4e325", "media": "photo", "latitude": "0", "id": "183022242", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:18:44", "license": "1", "title": "Hallie and Her Ladies, Caley and Ren\u00e9", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/183022174_9c4a7018c4_o.jpg", "secret": "9c4a7018c4", "media": "photo", "latitude": "0", "id": "183022174", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:19:15", "license": "1", "title": "Hallie and Ren\u00e9", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/183022097_8ed93fefd4_o.jpg", "secret": "8ed93fefd4", "media": "photo", "latitude": "0", "id": "183022097", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:20:19", "license": "1", "title": "Moi, Rio, Ren\u00e9", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/183021957_37f4a8c77c_o.jpg", "secret": "37f4a8c77c", "media": "photo", "latitude": "0", "id": "183021957", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:22:04", "license": "1", "title": "Ren\u00e9 Classique", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/183021871_8a6323535e_o.jpg", "secret": "8a6323535e", "media": "photo", "latitude": "0", "id": "183021871", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:25:51", "license": "1", "title": "Eric and I in the Shade", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/183021785_99588a8f74_o.jpg", "secret": "99588a8f74", "media": "photo", "latitude": "0", "id": "183021785", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:27:47", "license": "1", "title": "Sweethearts", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/183021756_ff9931b58e_o.jpg", "secret": "ff9931b58e", "media": "photo", "latitude": "0", "id": "183021756", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:28:29", "license": "1", "title": "Oooh, Secret!", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/183021684_539b4038d2_o.jpg", "secret": "539b4038d2", "media": "photo", "latitude": "0", "id": "183021684", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:28:45", "license": "1", "title": "Jeff and Caley", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/183021610_ad83fcfc37_o.jpg", "secret": "ad83fcfc37", "media": "photo", "latitude": "0", "id": "183021610", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:30:44", "license": "1", "title": "The Hallie Fam", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/183021577_ceb4513d26_o.jpg", "secret": "ceb4513d26", "media": "photo", "latitude": "0", "id": "183021577", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:42:19", "license": "1", "title": "Dudes and Ladies", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/183021394_e531809e56_o.jpg", "secret": "e531809e56", "media": "photo", "latitude": "0", "id": "183021394", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:42:37", "license": "1", "title": "Guys and Dolls", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/183021450_5e5b39c1fc_o.jpg", "secret": "5e5b39c1fc", "media": "photo", "latitude": "0", "id": "183021450", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 16:43:35", "license": "1", "title": "Seth Wonders If Jon Floats", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/183021351_21b7e75ad4_o.jpg", "secret": "21b7e75ad4", "media": "photo", "latitude": "0", "id": "183021351", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:27:15", "license": "1", "title": "The HS Crew", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/183021235_41c548c3f3_o.jpg", "secret": "41c548c3f3", "media": "photo", "latitude": "0", "id": "183021235", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:28:07", "license": "1", "title": "And Now a FUN One", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/183021197_a7326c6501_o.jpg", "secret": "a7326c6501", "media": "photo", "latitude": "0", "id": "183021197", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:32:33", "license": "1", "title": "And Now With the Newcomers", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/183021135_b396c0a69f_o.jpg", "secret": "b396c0a69f", "media": "photo", "latitude": "0", "id": "183021135", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:34:37", "license": "1", "title": "Cutting the Cake", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/183021070_05439becb3_o.jpg", "secret": "05439becb3", "media": "photo", "latitude": "0", "id": "183021070", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:35:31", "license": "1", "title": "Noses are for Wedding Cake", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/183021034_8d8ddaa748_o.jpg", "secret": "8d8ddaa748", "media": "photo", "latitude": "0", "id": "183021034", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:39:51", "license": "1", "title": "First Dance", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/183020938_665f7250dd_o.jpg", "secret": "665f7250dd", "media": "photo", "latitude": "0", "id": "183020938", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:44:13", "license": "1", "title": "Now the Wedding Party", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/183020904_4753a59bdd_o.jpg", "secret": "4753a59bdd", "media": "photo", "latitude": "0", "id": "183020904", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:44:58", "license": "1", "title": "Ren\u00e9 and Seth", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/183020874_f6a2805641_o.jpg", "secret": "f6a2805641", "media": "photo", "latitude": "0", "id": "183020874", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:45:14", "license": "1", "title": "Seth Dances Ren\u00e9 About", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/183020853_a566ea8690_o.jpg", "secret": "a566ea8690", "media": "photo", "latitude": "0", "id": "183020853", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:45:35", "license": "1", "title": "The Adams Family", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/183020826_15eae897c9_o.jpg", "secret": "15eae897c9", "media": "photo", "latitude": "0", "id": "183020826", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:46:36", "license": "1", "title": "Ethan Keeps an Eye on the Photographer", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/183020701_4d3c32162b_o.jpg", "secret": "4d3c32162b", "media": "photo", "latitude": "0", "id": "183020701", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:46:50", "license": "1", "title": "Laura and Eric", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/183020629_2d26d06301_o.jpg", "secret": "2d26d06301", "media": "photo", "latitude": "0", "id": "183020629", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:47:11", "license": "1", "title": "Switching Partners", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/183020566_f7cfe84bd2_o.jpg", "secret": "f7cfe84bd2", "media": "photo", "latitude": "0", "id": "183020566", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:47:50", "license": "1", "title": "Seth and Eric's Love Will Go On", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/183020497_5251b0f515_o.jpg", "secret": "5251b0f515", "media": "photo", "latitude": "0", "id": "183020497", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:48:26", "license": "1", "title": "Danielle and Natalie", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/183020468_29c7a87b90_o.jpg", "secret": "29c7a87b90", "media": "photo", "latitude": "0", "id": "183020468", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:50:02", "license": "1", "title": "Hallie Dances with Dad", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/183020348_b240ecd965_o.jpg", "secret": "b240ecd965", "media": "photo", "latitude": "0", "id": "183020348", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:50:30", "license": "1", "title": "Jon's Mom and I", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/183020262_fda0429a0d_o.jpg", "secret": "fda0429a0d", "media": "photo", "latitude": "0", "id": "183020262", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:51:12", "license": "1", "title": "Rio et Moi", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/183020191_f25c8aae88_o.jpg", "secret": "f25c8aae88", "media": "photo", "latitude": "0", "id": "183020191", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:52:28", "license": "1", "title": "Jon and His Mom", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/183020167_996e345661_o.jpg", "secret": "996e345661", "media": "photo", "latitude": "0", "id": "183020167", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 18:52:42", "license": "1", "title": "You Guys are Up Next!", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/183020101_0195da8d30_o.jpg", "secret": "0195da8d30", "media": "photo", "latitude": "0", "id": "183020101", "tags": "wedding 20060701"}, {"datetaken": "2006-07-01 19:18:41", "license": "1", "title": "Eric and I Taking in the View", "text": "", "album_id": "72157594189042441", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/183020060_abdeac9683_o.jpg", "secret": "abdeac9683", "media": "photo", "latitude": "0", "id": "183020060", "tags": "wedding 20060701"}, {"datetaken": "2005-05-07 19:48:44", "license": "1", "title": "darling amy", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12846319_bf01d1d693_o.jpg", "secret": "bf01d1d693", "media": "photo", "latitude": "0", "id": "12846319", "tags": "wedding flowers badge"}, {"datetaken": "2005-05-07 19:48:47", "license": "1", "title": "bottle centerpiece", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12846320_1374af7a1b_o.jpg", "secret": "1374af7a1b", "media": "photo", "latitude": "0", "id": "12846320", "tags": "wedding flowers"}, {"datetaken": "2005-05-07 19:48:48", "license": "1", "title": "bridesmaids", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12846321_1b47e69bfb_o.jpg", "secret": "1b47e69bfb", "media": "photo", "latitude": "0", "id": "12846321", "tags": "wedding flowers"}, {"datetaken": "2005-05-07 19:48:50", "license": "1", "title": "cake", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12846326_b8a4d3e2e2_o.jpg", "secret": "b8a4d3e2e2", "media": "photo", "latitude": "0", "id": "12846326", "tags": "wedding flowers"}, {"datetaken": "2005-05-07 19:48:52", "license": "1", "title": "dancing", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/12846330_99232ec4e8_o.jpg", "secret": "99232ec4e8", "media": "photo", "latitude": "0", "id": "12846330", "tags": "wedding flowers"}, {"datetaken": "2005-05-07 19:48:54", "license": "1", "title": "flowers", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12846340_a95fa54238_o.jpg", "secret": "a95fa54238", "media": "photo", "latitude": "0", "id": "12846340", "tags": "wedding flowers badge"}, {"datetaken": "2005-05-07 19:48:56", "license": "1", "title": "food", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12846341_105bb1b88a_o.jpg", "secret": "105bb1b88a", "media": "photo", "latitude": "0", "id": "12846341", "tags": "wedding flowers"}, {"datetaken": "2005-05-07 19:48:57", "license": "1", "title": "at the reception", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12846344_d5f88edf6d_o.jpg", "secret": "d5f88edf6d", "media": "photo", "latitude": "0", "id": "12846344", "tags": "wedding flowers"}, {"datetaken": "2005-05-07 19:48:58", "license": "1", "title": "john", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12846346_9c6c36a25e_o.jpg", "secret": "9c6c36a25e", "media": "photo", "latitude": "0", "id": "12846346", "tags": "wedding flowers"}, {"datetaken": "2005-05-07 19:49:01", "license": "1", "title": "dapper justin", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12846352_31697fccc7_o.jpg", "secret": "31697fccc7", "media": "photo", "latitude": "0", "id": "12846352", "tags": "wedding flowers badge"}, {"datetaken": "2005-05-07 19:49:03", "license": "1", "title": "all the cousins so far", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12846361_13e6d99869_o.jpg", "secret": "13e6d99869", "media": "photo", "latitude": "0", "id": "12846361", "tags": "wedding flowers"}, {"datetaken": "2005-05-07 19:49:05", "license": "1", "title": "lys", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12846363_063b8c20a9_o.jpg", "secret": "063b8c20a9", "media": "photo", "latitude": "0", "id": "12846363", "tags": "wedding flowers"}, {"datetaken": "2005-05-07 19:49:06", "license": "1", "title": "", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/12846370_d5e551ff1f_o.jpg", "secret": "d5e551ff1f", "media": "photo", "latitude": "0", "id": "12846370", "tags": "wedding flowers"}, {"datetaken": "2005-05-07 19:49:08", "license": "1", "title": "sisters", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/12846372_35171a84b3_o.jpg", "secret": "35171a84b3", "media": "photo", "latitude": "0", "id": "12846372", "tags": "wedding flowers"}, {"datetaken": "2005-05-07 19:49:09", "license": "1", "title": "", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12846374_10913d47bc_o.jpg", "secret": "10913d47bc", "media": "photo", "latitude": "0", "id": "12846374", "tags": "wedding flowers"}, {"datetaken": "2005-05-07 19:49:12", "license": "1", "title": "lys and john", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12846378_2ee3100ba2_o.jpg", "secret": "2ee3100ba2", "media": "photo", "latitude": "0", "id": "12846378", "tags": "wedding flowers"}, {"datetaken": "2005-05-07 19:49:15", "license": "1", "title": "", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12846386_2a51dd0752_o.jpg", "secret": "2a51dd0752", "media": "photo", "latitude": "0", "id": "12846386", "tags": "wedding flowers"}, {"datetaken": "2005-05-07 19:49:17", "license": "1", "title": "sheljustin", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12846387_0a397e8f10_o.jpg", "secret": "0a397e8f10", "media": "photo", "latitude": "0", "id": "12846387", "tags": "wedding flowers"}, {"datetaken": "2005-05-07 19:49:38", "license": "1", "title": "lovelylys", "text": "", "album_id": "313345", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/12846413_772804433e_o.jpg", "secret": "772804433e", "media": "photo", "latitude": "0", "id": "12846413", "tags": "wedding flowers badge"}, {"datetaken": "2010-06-05 19:36:18", "license": "1", "title": "Sara & Carley", "text": "", "album_id": "72157624235889886", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1276/4683917461_7d51edced9_o.jpg", "secret": "a5635301e0", "media": "photo", "latitude": "0", "id": "4683917461", "tags": ""}, {"datetaken": "2010-06-05 22:01:04", "license": "1", "title": "Henry, Asha, & Jess", "text": "", "album_id": "72157624235889886", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1305/4684548412_683a98071e_o.jpg", "secret": "bd1f6a5df2", "media": "photo", "latitude": "0", "id": "4684548412", "tags": ""}, {"datetaken": "2010-06-05 22:40:20", "license": "1", "title": "Janet & Catalina", "text": "", "album_id": "72157624235889886", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4683917735_1a07f0a345_o.jpg", "secret": "5d3bae1ea5", "media": "photo", "latitude": "0", "id": "4683917735", "tags": ""}, {"datetaken": "2010-06-06 16:52:56", "license": "1", "title": "Wedding Reception", "text": "", "album_id": "72157624235889886", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4684548716_b188e47141_o.jpg", "secret": "f1c93e364b", "media": "photo", "latitude": "0", "id": "4684548716", "tags": ""}, {"datetaken": "2010-06-06 16:53:11", "license": "1", "title": "Wedding Reception", "text": "", "album_id": "72157624235889886", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4683918039_83e98fdde4_o.jpg", "secret": "8350b01e2f", "media": "photo", "latitude": "0", "id": "4683918039", "tags": ""}, {"datetaken": "2010-06-06 17:07:59", "license": "1", "title": "Jonah & Sara", "text": "", "album_id": "72157624235889886", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4683913995_5e68f1feed_o.jpg", "secret": "7e6d63ce87", "media": "photo", "latitude": "0", "id": "4683913995", "tags": ""}, {"datetaken": "2010-06-06 20:48:31", "license": "1", "title": "Catalina & Dad", "text": "", "album_id": "72157624235889886", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4684544220_3e8aace678_o.jpg", "secret": "b6108a4e4b", "media": "photo", "latitude": "0", "id": "4684544220", "tags": ""}, {"datetaken": "2010-06-06 20:53:06", "license": "1", "title": "Catalina & Dad", "text": "", "album_id": "72157624235889886", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4683913381_be1d6dedf6_o.jpg", "secret": "261477ff88", "media": "photo", "latitude": "0", "id": "4683913381", "tags": ""}, {"datetaken": "2010-06-06 21:25:47", "license": "1", "title": "Jonah & Sara", "text": "", "album_id": "72157624235889886", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4684544644_74297dbd5d_o.jpg", "secret": "0681abfa71", "media": "photo", "latitude": "0", "id": "4684544644", "tags": ""}, {"datetaken": "2010-06-06 21:25:56", "license": "1", "title": "Jonah & Sara", "text": "", "album_id": "72157624235889886", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4684544326_128c5deb96_o.jpg", "secret": "4691e294c2", "media": "photo", "latitude": "0", "id": "4684544326", "tags": ""}, {"datetaken": "2010-06-06 21:56:59", "license": "1", "title": "Janet and Carley", "text": "", "album_id": "72157624235889886", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4684544440_31d559daaa_o.jpg", "secret": "bca7c2c629", "media": "photo", "latitude": "0", "id": "4684544440", "tags": ""}, {"datetaken": "2010-08-07 18:54:24", "license": "3", "title": "", "text": "", "album_id": "72157624568422501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4878443954_1edeb8d5df_o.jpg", "secret": "7f9710b654", "media": "photo", "latitude": "0", "id": "4878443954", "tags": "wedding marissanystrom nalaniproctor"}, {"datetaken": "2010-08-07 18:55:06", "license": "3", "title": "", "text": "", "album_id": "72157624568422501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4878444682_47a63db1c2_o.jpg", "secret": "9af00352fa", "media": "photo", "latitude": "0", "id": "4878444682", "tags": "wedding nalaniproctor"}, {"datetaken": "2010-08-07 18:56:11", "license": "3", "title": "", "text": "", "album_id": "72157624568422501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4878444124_b36194465d_o.jpg", "secret": "db64a859c0", "media": "photo", "latitude": "0", "id": "4878444124", "tags": "wedding jeremyduncan rexhicks marissanystrom"}, {"datetaken": "2010-08-07 18:56:26", "license": "3", "title": "", "text": "", "album_id": "72157624568422501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4878444318_9fc4451273_o.jpg", "secret": "7013cab31d", "media": "photo", "latitude": "0", "id": "4878444318", "tags": "wedding griffinhammond"}, {"datetaken": "2010-08-07 18:57:45", "license": "3", "title": "", "text": "", "album_id": "72157624568422501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4878444496_85cefc3f7d_o.jpg", "secret": "542d968173", "media": "photo", "latitude": "0", "id": "4878444496", "tags": "wedding justinjohnson rexhicks marissanystrom nalaniproctor amystringwell"}, {"datetaken": "2010-08-07 20:47:04", "license": "3", "title": "", "text": "", "album_id": "72157624568422501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/4972990500_8d5e35344b_o.jpg", "secret": "f62220fcc6", "media": "photo", "latitude": "0", "id": "4972990500", "tags": "wedding reception amystringwell griffinhammond"}, {"datetaken": "2010-08-07 20:47:29", "license": "3", "title": "", "text": "", "album_id": "72157624568422501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4083/4972990876_c8679677a3_o.jpg", "secret": "34edaa5489", "media": "photo", "latitude": "0", "id": "4972990876", "tags": "wedding reception amystringwell griffinhammond"}, {"datetaken": "2010-08-07 20:47:58", "license": "3", "title": "", "text": "", "album_id": "72157624568422501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/4972377447_745d1789e9_o.jpg", "secret": "053fa6b897", "media": "photo", "latitude": "0", "id": "4972377447", "tags": "wedding reception amystringwell griffinhammond"}, {"datetaken": "2010-08-07 20:48:04", "license": "3", "title": "", "text": "", "album_id": "72157624568422501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/4972991632_e862f10a67_o.jpg", "secret": "9b3953aed6", "media": "photo", "latitude": "0", "id": "4972991632", "tags": "wedding reception amystringwell griffinhammond"}, {"datetaken": "2010-08-07 20:48:51", "license": "3", "title": "", "text": "", "album_id": "72157624568422501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/4972378145_b9e293cccd_o.jpg", "secret": "36b5676ccc", "media": "photo", "latitude": "0", "id": "4972378145", "tags": "wedding reception amystringwell griffinhammond"}, {"datetaken": "2010-08-07 20:51:07", "license": "3", "title": "", "text": "", "album_id": "72157624568422501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4972992380_4f77c72e3e_o.jpg", "secret": "d2baa903c5", "media": "photo", "latitude": "0", "id": "4972992380", "tags": "wedding reception amystringwell griffinhammond"}, {"datetaken": "2010-08-07 20:51:25", "license": "3", "title": "", "text": "", "album_id": "72157624568422501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4126/4972379007_6f47f682d4_o.jpg", "secret": "46069463da", "media": "photo", "latitude": "0", "id": "4972379007", "tags": "wedding reception amystringwell griffinhammond"}, {"datetaken": "2010-08-07 20:52:48", "license": "3", "title": "", "text": "", "album_id": "72157624568422501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4149/4972379401_9009c2555e_o.jpg", "secret": "d4a8c3eeca", "media": "photo", "latitude": "0", "id": "4972379401", "tags": "wedding reception amystringwell griffinhammond"}, {"datetaken": "2010-08-07 20:53:02", "license": "3", "title": "", "text": "", "album_id": "72157624568422501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/4972379929_066d0ac767_o.jpg", "secret": "d51056d6fe", "media": "photo", "latitude": "0", "id": "4972379929", "tags": "wedding reception amystringwell griffinhammond"}, {"datetaken": "2010-08-07 20:54:05", "license": "3", "title": "", "text": "", "album_id": "72157624568422501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/4972380463_503893fa5d_o.jpg", "secret": "4fc0b09e3a", "media": "photo", "latitude": "0", "id": "4972380463", "tags": "wedding reception amystringwell griffinhammond"}, {"datetaken": "2005-08-06 13:10:14", "license": "3", "title": "Preparing the mandap", "text": "", "album_id": "722094", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32448587_6f20a32fdd_o.jpg", "secret": "6f20a32fdd", "media": "photo", "latitude": "0", "id": "32448587", "tags": "wideopen wedding bw tamron2875f28 portrait"}, {"datetaken": "2005-08-06 13:15:46", "license": "3", "title": "Shoma getting ready", "text": "", "album_id": "722094", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/32448829_86bb801da7_o.jpg", "secret": "86bb801da7", "media": "photo", "latitude": "0", "id": "32448829", "tags": "wideopen wedding bw tamron2875f28 portrait tccomp021"}, {"datetaken": "2005-08-06 13:20:52", "license": "3", "title": "The Pundit", "text": "", "album_id": "722094", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32630023_c8f83eebee_o.jpg", "secret": "c8f83eebee", "media": "photo", "latitude": "0", "id": "32630023", "tags": "wideopen wedding bw tamron2875f28 portrait"}, {"datetaken": "2005-08-06 13:25:58", "license": "3", "title": "Little girls", "text": "", "album_id": "722094", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/32630302_ed8ded6298_o.jpg", "secret": "ed8ded6298", "media": "photo", "latitude": "0", "id": "32630302", "tags": "wideopen wedding bw tamron2875f28 portrait"}, {"datetaken": "2005-08-06 13:48:45", "license": "3", "title": "Shoma arrives in style", "text": "", "album_id": "722094", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32631137_c8fb99bd92_o.jpg", "secret": "c8fb99bd92", "media": "photo", "latitude": "0", "id": "32631137", "tags": "wideopen wedding bw tamron2875f28"}, {"datetaken": "2005-08-06 14:00:41", "license": "3", "title": "The visible photographer", "text": "", "album_id": "722094", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32631382_6e9d1b743c_o.jpg", "secret": "6e9d1b743c", "media": "photo", "latitude": "0", "id": "32631382", "tags": "wideopen wedding bw tccomp019 tamron2875f28"}, {"datetaken": "2005-08-06 14:04:34", "license": "3", "title": "Wedding vows", "text": "", "album_id": "722094", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/32821349_49c601919f_o.jpg", "secret": "49c601919f", "media": "photo", "latitude": "0", "id": "32821349", "tags": "wideopen wedding bw tamron2875f28"}, {"datetaken": "2005-08-06 14:27:12", "license": "3", "title": "Pheras", "text": "", "album_id": "722094", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/32821538_e91070348e_o.jpg", "secret": "e91070348e", "media": "photo", "latitude": "0", "id": "32821538", "tags": "wideopen wedding bw tamron2875f28"}, {"datetaken": "2005-08-06 14:31:56", "license": "3", "title": "Carolyn enjoying the proceedings", "text": "", "album_id": "722094", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32821717_39a8111ecb_o.jpg", "secret": "39a8111ecb", "media": "photo", "latitude": "0", "id": "32821717", "tags": "wideopen wedding bw carolyn tamron2875f28 portrait"}, {"datetaken": "2005-08-06 14:32:35", "license": "3", "title": "Little flowers", "text": "", "album_id": "722094", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/32821916_58aa782bdf_o.jpg", "secret": "58aa782bdf", "media": "photo", "latitude": "0", "id": "32821916", "tags": "wideopen wedding bw tamron2875f28"}, {"datetaken": "2005-08-06 14:54:26", "license": "3", "title": "The conch lady", "text": "", "album_id": "722094", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/32822125_5b37e680c6_o.jpg", "secret": "5b37e680c6", "media": "photo", "latitude": "0", "id": "32822125", "tags": "wideopen wedding bw tamron2875f28 portrait"}, {"datetaken": "2005-08-06 15:03:42", "license": "3", "title": "The happy couple", "text": "", "album_id": "722094", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/33051067_47ed693178_o.jpg", "secret": "47ed693178", "media": "photo", "latitude": "0", "id": "33051067", "tags": "wideopen wedding bw tamron2875f28 portrait"}, {"datetaken": "2005-08-06 15:05:26", "license": "3", "title": "Bridget and Sanoja", "text": "", "album_id": "722094", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/33051285_4d5387b80f_o.jpg", "secret": "4d5387b80f", "media": "photo", "latitude": "0", "id": "33051285", "tags": "wideopen wedding bw tamron2875f28 portrait"}, {"datetaken": "2005-08-06 15:37:52", "license": "3", "title": "Shoma mingles", "text": "", "album_id": "722094", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/33051534_2002afaf03_o.jpg", "secret": "2002afaf03", "media": "photo", "latitude": "0", "id": "33051534", "tags": "wideopen wedding bw tamron2875f28"}, {"datetaken": "2005-08-06 20:55:04", "license": "3", "title": "Dancing in the dark", "text": "", "album_id": "722094", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/33051639_7212ced58e_o.jpg", "secret": "7212ced58e", "media": "photo", "latitude": "0", "id": "33051639", "tags": "wideopen wedding tamron2875f28"}, {"datetaken": "2010-08-05 12:17:13", "license": "1", "title": "Kilt", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4882923097_192e57126c_o.jpg", "secret": "cb203e6706", "media": "photo", "latitude": "0", "id": "4882923097", "tags": "pin kilt"}, {"datetaken": "2010-08-06 04:02:43", "license": "1", "title": "Rings", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4882923471_2bd5887128_o.jpg", "secret": "f30472450e", "media": "photo", "latitude": "0", "id": "4882923471", "tags": "weddingring"}, {"datetaken": "2010-08-06 07:24:07", "license": "1", "title": "Location, location, location", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4883529554_1fbb8e913a_o.jpg", "secret": "192fe11907", "media": "photo", "latitude": "0", "id": "4883529554", "tags": "church"}, {"datetaken": "2010-08-06 08:23:38", "license": "1", "title": "2010-08-06 at 08-23-38 - Signing the Register", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4883530032_ffd02ee737_o.jpg", "secret": "57689258fa", "media": "photo", "latitude": "0", "id": "4883530032", "tags": "signingtheregister"}, {"datetaken": "2010-08-06 08:39:20", "license": "1", "title": "Hitched", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4883530524_7eb9bd6173_o.jpg", "secret": "e8364ed22b", "media": "photo", "latitude": "0", "id": "4883530524", "tags": "wedding church"}, {"datetaken": "2010-08-06 08:44:23", "license": "1", "title": "Crowd", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4882925383_806a53c2f3_o.jpg", "secret": "401d06c2b9", "media": "photo", "latitude": "0", "id": "4882925383", "tags": "wedding crowd"}, {"datetaken": "2010-08-06 10:08:35", "license": "1", "title": "Formal #1", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4883531666_ee777a757b_o.jpg", "secret": "da4f83d080", "media": "photo", "latitude": "0", "id": "4883531666", "tags": "wedding formal"}, {"datetaken": "2010-08-06 10:09:24", "license": "1", "title": "Formal #2", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4882926479_ed37dde6be_o.jpg", "secret": "bc9a108e4a", "media": "photo", "latitude": "0", "id": "4882926479", "tags": "wedding formal"}, {"datetaken": "2010-08-06 10:09:32", "license": "1", "title": "Formal #3", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4882926973_d0579ea487_o.jpg", "secret": "a13c657ab6", "media": "photo", "latitude": "0", "id": "4882926973", "tags": "wedding formal"}, {"datetaken": "2010-08-06 10:10:58", "license": "1", "title": "Formal #4", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4882927495_695a2a4ba0_o.jpg", "secret": "c6cf390219", "media": "photo", "latitude": "0", "id": "4882927495", "tags": "wedding formal"}, {"datetaken": "2010-08-06 10:13:41", "license": "1", "title": "Attending", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4882928407_fc0e4d3ca8_o.jpg", "secret": "3bc4572aa5", "media": "photo", "latitude": "0", "id": "4882928407", "tags": "wedding bride veil"}, {"datetaken": "2010-08-06 10:14:00", "license": "1", "title": "Formal #5", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4882928919_05b2720f89_o.jpg", "secret": "f38079b239", "media": "photo", "latitude": "0", "id": "4882928919", "tags": "wedding formal"}, {"datetaken": "2010-08-06 10:22:34", "license": "1", "title": "Double Meta", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4882929615_ca8b4462c3_o.jpg", "secret": "2a150137f2", "media": "photo", "latitude": "0", "id": "4882929615", "tags": "wedding formal"}, {"datetaken": "2010-08-06 14:17:11", "license": "1", "title": "Flanking", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4882930011_16c7366fe4_o.jpg", "secret": "3d931cacb7", "media": "photo", "latitude": "0", "id": "4882930011", "tags": "wedding"}, {"datetaken": "2010-08-06 14:17:16", "license": "1", "title": "Coupling", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4882930485_d80ab7b7c6_o.jpg", "secret": "88534c7cd7", "media": "photo", "latitude": "0", "id": "4882930485", "tags": "wedding"}, {"datetaken": "2010-08-06 14:29:45", "license": "1", "title": "Save The First Dance", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4882930891_a1ce30329f_o.jpg", "secret": "67acee4bb5", "media": "photo", "latitude": "0", "id": "4882930891", "tags": "wedding"}, {"datetaken": "2010-08-06 21:15:23", "license": "1", "title": "Groom", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4882931257_a1cb7ed596_o.jpg", "secret": "364b1da441", "media": "photo", "latitude": "0", "id": "4882931257", "tags": "weddingreception"}, {"datetaken": "2010-08-06 21:36:25", "license": "1", "title": "Next in Line?", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4118/4882931687_294e9725a0_o.jpg", "secret": "1807c63b6a", "media": "photo", "latitude": "0", "id": "4882931687", "tags": "weddingreception"}, {"datetaken": "2010-08-06 22:50:49", "license": "1", "title": "Dancefloor", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4883539236_acf7cd818d_o.jpg", "secret": "659103740d", "media": "photo", "latitude": "0", "id": "4883539236", "tags": "weddingreception"}, {"datetaken": "2010-08-06 22:51:47", "license": "1", "title": "Guitar Hero", "text": "", "album_id": "72157624580453635", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4883539670_5fc9682db7_o.jpg", "secret": "1243ebf008", "media": "photo", "latitude": "0", "id": "4883539670", "tags": "weddingreception"}, {"datetaken": "2010-06-26 21:30:00", "license": "4", "title": "15.16", "text": "", "album_id": "72157624700649708", "longitude": "-0.674414", "url_o": "https://farm5.staticflickr.com/4138/4881773714_389f4c7613_o.jpg", "secret": "be141dbcb8", "media": "photo", "latitude": "51.574189", "id": "4881773714", "tags": "amrita weddingreception debojit hedsorhouse 26june2010"}, {"datetaken": "2010-06-26 21:30:01", "license": "4", "title": "15.15", "text": "", "album_id": "72157624700649708", "longitude": "-0.674414", "url_o": "https://farm5.staticflickr.com/4121/4881162419_0733e45a0a_o.jpg", "secret": "32bee7ea28", "media": "photo", "latitude": "51.574189", "id": "4881162419", "tags": "amrita weddingreception debojit hedsorhouse 26june2010"}, {"datetaken": "2010-06-26 21:30:02", "license": "4", "title": "15.14", "text": "", "album_id": "72157624700649708", "longitude": "-0.674414", "url_o": "https://farm5.staticflickr.com/4094/4881160217_b7ab71bfa4_o.jpg", "secret": "b3c7bab1d4", "media": "photo", "latitude": "51.574189", "id": "4881160217", "tags": "amrita weddingreception debojit hedsorhouse 26june2010"}, {"datetaken": "2010-06-26 21:30:03", "license": "4", "title": "15.13", "text": "", "album_id": "72157624700649708", "longitude": "-0.674414", "url_o": "https://farm5.staticflickr.com/4117/4881158477_2fbee0ee9a_o.jpg", "secret": "fbe5b1a970", "media": "photo", "latitude": "51.574189", "id": "4881158477", "tags": "amrita weddingreception debojit hedsorhouse 26june2010"}, {"datetaken": "2010-06-26 21:30:04", "license": "4", "title": "15.12", "text": "", "album_id": "72157624700649708", "longitude": "-0.674414", "url_o": "https://farm5.staticflickr.com/4073/4881156399_ff483da9d5_o.jpg", "secret": "22dc6778af", "media": "photo", "latitude": "51.574189", "id": "4881156399", "tags": "amrita weddingreception debojit hedsorhouse 26june2010"}, {"datetaken": "2010-06-26 21:30:05", "license": "4", "title": "15.11", "text": "", "album_id": "72157624700649708", "longitude": "-0.674414", "url_o": "https://farm5.staticflickr.com/4095/4881170211_82ffc59cb2_o.jpg", "secret": "b4f6c45732", "media": "photo", "latitude": "51.574189", "id": "4881170211", "tags": "amrita weddingreception debojit hedsorhouse 26june2010"}, {"datetaken": "2010-06-26 21:30:06", "license": "4", "title": "15.10", "text": "", "album_id": "72157624700649708", "longitude": "-0.674414", "url_o": "https://farm5.staticflickr.com/4142/4881777180_e7caab33d5_o.jpg", "secret": "1d85e6f75a", "media": "photo", "latitude": "51.574189", "id": "4881777180", "tags": "amrita weddingreception debojit hedsorhouse 26june2010"}, {"datetaken": "2010-06-26 21:30:07", "license": "4", "title": "15.9", "text": "", "album_id": "72157624700649708", "longitude": "-0.674414", "url_o": "https://farm5.staticflickr.com/4098/4881166519_84222585a8_o.jpg", "secret": "bef16d9f89", "media": "photo", "latitude": "51.574189", "id": "4881166519", "tags": "amrita weddingreception debojit hedsorhouse 26june2010"}, {"datetaken": "2010-06-26 21:30:08", "license": "4", "title": "15.8", "text": "", "album_id": "72157624700649708", "longitude": "-0.674414", "url_o": "https://farm5.staticflickr.com/4093/4881154225_08db2e04e2_o.jpg", "secret": "afb4dd2550", "media": "photo", "latitude": "51.574189", "id": "4881154225", "tags": "amrita weddingreception debojit hedsorhouse 26june2010"}, {"datetaken": "2010-06-26 21:30:09", "license": "4", "title": "15.7", "text": "", "album_id": "72157624700649708", "longitude": "-0.674414", "url_o": "https://farm5.staticflickr.com/4142/4881760620_ca08d7b610_o.jpg", "secret": "4c288f097b", "media": "photo", "latitude": "51.574189", "id": "4881760620", "tags": "amrita weddingreception debojit hedsorhouse 26june2010"}, {"datetaken": "2010-06-26 21:30:10", "license": "4", "title": "15.6", "text": "", "album_id": "72157624700649708", "longitude": "-0.674414", "url_o": "https://farm5.staticflickr.com/4080/4881758144_78d461cf3e_o.jpg", "secret": "210238cbea", "media": "photo", "latitude": "51.574189", "id": "4881758144", "tags": "amrita weddingreception debojit hedsorhouse 26june2010"}, {"datetaken": "2010-06-26 21:30:11", "license": "4", "title": "15.5", "text": "", "album_id": "72157624700649708", "longitude": "-0.674414", "url_o": "https://farm5.staticflickr.com/4097/4881755570_22a7c3b728_o.jpg", "secret": "0e25156d58", "media": "photo", "latitude": "51.574189", "id": "4881755570", "tags": "amrita weddingreception debojit hedsorhouse 26june2010"}, {"datetaken": "2010-06-26 21:30:12", "license": "4", "title": "15.4", "text": "", "album_id": "72157624700649708", "longitude": "-0.674414", "url_o": "https://farm5.staticflickr.com/4078/4881143951_8db7d37db1_o.jpg", "secret": "6b7085ec65", "media": "photo", "latitude": "51.574189", "id": "4881143951", "tags": "amrita weddingreception debojit hedsorhouse 26june2010"}, {"datetaken": "2010-06-26 21:30:13", "license": "4", "title": "15.3", "text": "", "album_id": "72157624700649708", "longitude": "-0.674414", "url_o": "https://farm5.staticflickr.com/4093/4881141603_3829916cdb_o.jpg", "secret": "d97ab369db", "media": "photo", "latitude": "51.574189", "id": "4881141603", "tags": "amrita weddingreception debojit hedsorhouse 26june2010"}, {"datetaken": "2010-06-26 21:30:14", "license": "4", "title": "15.2", "text": "", "album_id": "72157624700649708", "longitude": "-0.674414", "url_o": "https://farm5.staticflickr.com/4082/4881748408_06450216db_o.jpg", "secret": "385ba90704", "media": "photo", "latitude": "51.574189", "id": "4881748408", "tags": "amrita weddingreception debojit hedsorhouse 26june2010"}, {"datetaken": "2010-06-26 21:30:15", "license": "4", "title": "15.1", "text": "", "album_id": "72157624700649708", "longitude": "-0.674414", "url_o": "https://farm5.staticflickr.com/4114/4881746008_0895411aaa_o.jpg", "secret": "f6a3a8fa43", "media": "photo", "latitude": "51.574189", "id": "4881746008", "tags": "amrita weddingreception debojit hedsorhouse 26june2010"}, {"datetaken": "2010-05-08 10:04:45", "license": "1", "title": "Jackson Square", "text": "", "album_id": "72157623923244977", "longitude": "-90.062828", "url_o": "https://farm4.staticflickr.com/3379/4597490260_50e404e74c_o.jpg", "secret": "104cabdfa8", "media": "photo", "latitude": "29.957425", "id": "4597490260", "tags": "architecture louisiana neworleans jacksonsquare hdr"}, {"datetaken": "2010-05-08 10:05:13", "license": "1", "title": "Plaza d Armas", "text": "", "album_id": "72157623923244977", "longitude": "-90.062613", "url_o": "https://farm5.staticflickr.com/4033/4613157205_6b3a392ef6_o.jpg", "secret": "66f945f35c", "media": "photo", "latitude": "29.956886", "id": "4613157205", "tags": "bw louisiana neworleans jacksonsquare"}, {"datetaken": "2010-05-08 10:33:18", "license": "1", "title": "Jackson Square Art", "text": "", "album_id": "72157623923244977", "longitude": "-90.063257", "url_o": "https://farm4.staticflickr.com/3307/4613775860_638c3c0da3_o.jpg", "secret": "52676145da", "media": "photo", "latitude": "29.957016", "id": "4613775860", "tags": "art louisiana neworleans jacksonsquare"}, {"datetaken": "2010-05-08 10:34:42", "license": "1", "title": "Andrew Jackson", "text": "", "album_id": "72157623923244977", "longitude": "-90.062870", "url_o": "https://farm5.staticflickr.com/4060/4613776404_e5b8a154ea_o.jpg", "secret": "a742bc33be", "media": "photo", "latitude": "29.957407", "id": "4613776404", "tags": "statue louisiana neworleans andrewjackson jacksonsquare"}, {"datetaken": "2010-05-08 10:41:36", "license": "1", "title": "French Quarter Balconies", "text": "", "album_id": "72157623923244977", "longitude": "-90.062570", "url_o": "https://farm2.staticflickr.com/1280/4595022297_134b5c0ee6_o.jpg", "secret": "89b05155ce", "media": "photo", "latitude": "29.958262", "id": "4595022297", "tags": "architecture neworleans frenchquarter"}, {"datetaken": "2010-05-08 10:50:16", "license": "1", "title": "Calle d San Felipe", "text": "", "album_id": "72157623923244977", "longitude": "-90.066947", "url_o": "https://farm4.staticflickr.com/3575/4613777258_06891c9527_o.jpg", "secret": "5e940b6726", "media": "photo", "latitude": "29.956235", "id": "4613777258", "tags": "bw louisiana neworleans"}, {"datetaken": "2010-05-08 10:51:49", "license": "1", "title": "Clover Grill", "text": "", "album_id": "72157623923244977", "longitude": "-90.064673", "url_o": "https://farm4.staticflickr.com/3063/4621590112_8632dc78df_o.jpg", "secret": "c502ddf060", "media": "photo", "latitude": "29.958987", "id": "4621590112", "tags": "louisiana neworleans frenchquarter clovergrill"}, {"datetaken": "2010-05-08 10:54:01", "license": "1", "title": "Marie Laveau's House of Voodoo", "text": "", "album_id": "72157623923244977", "longitude": "-90.062098", "url_o": "https://farm4.staticflickr.com/3301/4623661379_318f461b2c_o.jpg", "secret": "ac42e6f150", "media": "photo", "latitude": "29.957704", "id": "4623661379", "tags": "louisiana neworleans frenchquarter"}, {"datetaken": "2010-05-08 10:55:30", "license": "1", "title": "Burbon and Orleans Street Corner", "text": "", "album_id": "72157623923244977", "longitude": "-90.065402", "url_o": "https://farm2.staticflickr.com/1401/4606998870_3bd1fcaff2_o.jpg", "secret": "4553bf627e", "media": "photo", "latitude": "29.958950", "id": "4606998870", "tags": "street st louisiana neworleans scene burbon"}, {"datetaken": "2010-05-08 10:59:19", "license": "1", "title": "New Orleans Balcony", "text": "", "album_id": "72157623923244977", "longitude": "-90.066132", "url_o": "https://farm4.staticflickr.com/3107/4615409172_876e0f1386_o.jpg", "secret": "cfae65213d", "media": "photo", "latitude": "29.957072", "id": "4615409172", "tags": "louisiana balcony neworleans frenchquarter"}, {"datetaken": "2010-05-08 11:53:13", "license": "1", "title": "Natchez Paddle Boat on the Mississippi", "text": "", "album_id": "72157623923244977", "longitude": "-90.062313", "url_o": "https://farm5.staticflickr.com/4032/4624267732_c1aeeb0da2_o.jpg", "secret": "832d5c77e0", "media": "photo", "latitude": "29.953930", "id": "4624267732", "tags": "louisiana neworleans frenchquarter"}, {"datetaken": "2010-05-08 12:02:15", "license": "1", "title": "Decatur Street", "text": "", "album_id": "72157623923244977", "longitude": "-90.062656", "url_o": "https://farm5.staticflickr.com/4012/4624267758_f9f1571d54_o.jpg", "secret": "f5da33a368", "media": "photo", "latitude": "29.956421", "id": "4624267758", "tags": "louisiana neworleans frenchquarter"}, {"datetaken": "2010-05-08 12:30:15", "license": "1", "title": "Colorful New Orleans Balcony", "text": "", "album_id": "72157623923244977", "longitude": "-90.063943", "url_o": "https://farm4.staticflickr.com/3412/4624267790_eea758c5ff_o.jpg", "secret": "e143d2bfdb", "media": "photo", "latitude": "29.959433", "id": "4624267790", "tags": "louisiana neworleans frenchquarter"}, {"datetaken": "2010-05-08 12:30:31", "license": "1", "title": "One Eyed Jacks", "text": "", "album_id": "72157623923244977", "longitude": "-90.063772", "url_o": "https://farm4.staticflickr.com/3273/4624267850_3e4072c297_o.jpg", "secret": "8591d3d057", "media": "photo", "latitude": "29.959173", "id": "4624267850", "tags": "louisiana neworleans frenchquarter"}, {"datetaken": "2010-05-08 18:30:58", "license": "1", "title": "New Orleans Jazz Band", "text": "", "album_id": "72157623923244977", "longitude": "-90.074586", "url_o": "https://farm2.staticflickr.com/1073/4604763963_a21bfe099b_o.jpg", "secret": "a2a6cce252", "media": "photo", "latitude": "29.939930", "id": "4604763963", "tags": "music louisiana neworleans band jazz"}, {"datetaken": "2010-05-09 11:52:18", "license": "1", "title": "St. Charles Street Car", "text": "", "album_id": "72157623923244977", "longitude": "-90.122394", "url_o": "https://farm4.staticflickr.com/3417/4618610052_4cef13e624_o.jpg", "secret": "e6f4bb98c6", "media": "photo", "latitude": "29.933812", "id": "4618610052", "tags": "blackandwhite bw louisiana neworleans streetcar trolly stcharles"}, {"datetaken": "2010-05-09 11:55:11", "license": "1", "title": "Wall outside Lafayette Cemetery No. 1", "text": "", "album_id": "72157623923244977", "longitude": "-90.090079", "url_o": "https://farm5.staticflickr.com/4072/4617362996_1064e36e2f_o.jpg", "secret": "16e467bd71", "media": "photo", "latitude": "29.934779", "id": "4617362996", "tags": "bw louisiana neworleans cemetary lafayettecemetery"}, {"datetaken": "2010-05-09 11:56:27", "license": "1", "title": "Lafayette Cemetery No. 1", "text": "", "album_id": "72157623923244977", "longitude": "-90.090250", "url_o": "https://farm5.staticflickr.com/4031/4616749917_347593b125_o.jpg", "secret": "15b66fc051", "media": "photo", "latitude": "29.934760", "id": "4616749917", "tags": "bw louisiana neworleans cemetary lafayettecemetery"}, {"datetaken": "2010-05-09 11:58:55", "license": "1", "title": "Lafayette Cemetery No. 1", "text": "", "album_id": "72157623923244977", "longitude": "-90.090036", "url_o": "https://farm2.staticflickr.com/1378/4600669787_6d5b4ed8a0_o.jpg", "secret": "e15aa0fbac", "media": "photo", "latitude": "29.934872", "id": "4600669787", "tags": "louisiana neworleans lafayettecemetery"}, {"datetaken": "2010-05-09 12:00:03", "license": "1", "title": "Lafayette Cemetery No. 1", "text": "", "album_id": "72157623923244977", "longitude": "-90.090186", "url_o": "https://farm4.staticflickr.com/3308/4616750295_4d98f23e26_o.jpg", "secret": "ab71fc4bef", "media": "photo", "latitude": "29.934807", "id": "4616750295", "tags": "bw louisiana neworleans cemetary lafayettecemetery"}, {"datetaken": "2010-05-09 12:00:48", "license": "1", "title": "Lafayette Cemetery No. 1", "text": "", "album_id": "72157623923244977", "longitude": "-90.090143", "url_o": "https://farm4.staticflickr.com/3183/4616750463_0bd194b329_o.jpg", "secret": "b8462a7dd8", "media": "photo", "latitude": "29.934835", "id": "4616750463", "tags": "bw louisiana neworleans cemetary lafayettecemetery"}, {"datetaken": "2010-05-09 12:13:11", "license": "1", "title": "Cornhusk fence", "text": "", "album_id": "72157623923244977", "longitude": "-90.109348", "url_o": "https://farm5.staticflickr.com/4048/4623661531_a93bcfc7b9_o.jpg", "secret": "e1312e2b3f", "media": "photo", "latitude": "29.928828", "id": "4623661531", "tags": "louisiana neworleans frenchquarter"}, {"datetaken": "2010-05-09 14:14:42", "license": "1", "title": "Living Statue", "text": "", "album_id": "72157623923244977", "longitude": "-90.066819", "url_o": "https://farm2.staticflickr.com/1051/4602273861_e5eb041809_o.jpg", "secret": "9c91d3948d", "media": "photo", "latitude": "29.956012", "id": "4602273861", "tags": "new statue living orleans louisiana neworleans"}, {"datetaken": "2010-06-12 18:14:32", "license": "1", "title": "Ashley arrives", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4707717018_57d8de3418_o.jpg", "secret": "97af178770", "media": "photo", "latitude": "0", "id": "4707717018", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 18:14:40", "license": "1", "title": "The Program", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4707717090_0294903d7a_o.jpg", "secret": "06f6bfc1ff", "media": "photo", "latitude": "0", "id": "4707717090", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 18:16:21", "license": "1", "title": "We all await...", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4707074625_57c87794ae_o.jpg", "secret": "6592ac5c95", "media": "photo", "latitude": "0", "id": "4707074625", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 18:17:24", "license": "1", "title": "The Bride", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1275/4707074695_cd4bac6ce6_o.jpg", "secret": "31385f90c2", "media": "photo", "latitude": "0", "id": "4707074695", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 18:30:59", "license": "1", "title": "At the altar", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4707074779_f898c8b8f2_o.jpg", "secret": "e13b98f1e7", "media": "photo", "latitude": "0", "id": "4707074779", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 18:33:48", "license": "1", "title": "Judy and Kevin", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1283/4707074863_5cc898b8dd_o.jpg", "secret": "2e2a63ebe0", "media": "photo", "latitude": "0", "id": "4707074863", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 18:34:56", "license": "1", "title": "Exchanging vows", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4707717400_fed3b8ae32_o.jpg", "secret": "30d09b944a", "media": "photo", "latitude": "0", "id": "4707717400", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 18:37:06", "license": "1", "title": "Grandmother AnneByrne watching", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4707717458_e2f5300109_o.jpg", "secret": "afacfa2070", "media": "photo", "latitude": "0", "id": "4707717458", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 18:37:41", "license": "1", "title": "Lighting the candle", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4707717534_56e3766b00_o.jpg", "secret": "d5f2cebb97", "media": "photo", "latitude": "0", "id": "4707717534", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 18:38:00", "license": "1", "title": "The blessing", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4707717580_8856e37226_o.jpg", "secret": "060fe56a08", "media": "photo", "latitude": "0", "id": "4707717580", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 18:46:22", "license": "1", "title": "AnneByrne", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4707717684_bfc1b0d0db_o.jpg", "secret": "e8112f3459", "media": "photo", "latitude": "0", "id": "4707717684", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 18:46:36", "license": "1", "title": "Eliza and AnneByrne, with bubbles", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4707075327_840895ae28_o.jpg", "secret": "8b8ae54f4a", "media": "photo", "latitude": "0", "id": "4707075327", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 18:46:50", "license": "1", "title": "Judy and Kevin Wedding 082", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1295/4707075415_e31a33906b_o.jpg", "secret": "38f108ac9a", "media": "photo", "latitude": "0", "id": "4707075415", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 18:55:43", "license": "1", "title": "Judy and AnneByrne", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4707075497_d88d140421_o.jpg", "secret": "209b28d5b1", "media": "photo", "latitude": "0", "id": "4707075497", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 18:55:50", "license": "1", "title": "Judy and AnneByrne", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1265/4707718014_cabefcbcd9_o.jpg", "secret": "1cd6121f03", "media": "photo", "latitude": "0", "id": "4707718014", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 18:57:47", "license": "1", "title": "Kevin, AnneByrne, and Judy", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4707718118_46f1c510e5_o.jpg", "secret": "88a58dbc6c", "media": "photo", "latitude": "0", "id": "4707718118", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 19:00:55", "license": "1", "title": "Becky and Paul", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4707718222_5bf6f3e8ea_o.jpg", "secret": "33550d2601", "media": "photo", "latitude": "0", "id": "4707718222", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 19:04:58", "license": "1", "title": "Becky, Judy, Kevin, and Paul", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4707075871_f0188ed82d_o.jpg", "secret": "9a3df69b9c", "media": "photo", "latitude": "0", "id": "4707075871", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 19:20:54", "license": "1", "title": "At the reception", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4707718400_ff439bc511_o.jpg", "secret": "8b15404721", "media": "photo", "latitude": "0", "id": "4707718400", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 19:32:59", "license": "1", "title": "Tom and AnneByrne", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4707718464_fc0ee8bfac_o.jpg", "secret": "b853da2416", "media": "photo", "latitude": "0", "id": "4707718464", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 19:34:08", "license": "1", "title": "AnneByrne, Tom, and Becky", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4707076097_0ff4082978_o.jpg", "secret": "5611fda1bb", "media": "photo", "latitude": "0", "id": "4707076097", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 19:37:51", "license": "1", "title": "Eliza and Becky", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4707718632_9ce51a2518_o.jpg", "secret": "790a1ef1cd", "media": "photo", "latitude": "0", "id": "4707718632", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 19:37:59", "license": "1", "title": "Eliza and Becky", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4707076253_91625f7b6f_o.jpg", "secret": "7459506f54", "media": "photo", "latitude": "0", "id": "4707076253", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 19:38:30", "license": "1", "title": "Becky and Paul", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4707718758_414698d8fe_o.jpg", "secret": "810d2d3d30", "media": "photo", "latitude": "0", "id": "4707718758", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 21:13:07", "license": "1", "title": "First Dance", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4707076375_42c9499f77_o.jpg", "secret": "f7c5869fbf", "media": "photo", "latitude": "0", "id": "4707076375", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 21:17:55", "license": "1", "title": "Judy and Paul", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4707076441_a34a6389bd_o.jpg", "secret": "8934a85a02", "media": "photo", "latitude": "0", "id": "4707076441", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2010-06-12 21:19:36", "license": "1", "title": "Judy and Kevin Wedding 185", "text": "", "album_id": "72157624166599233", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4707718930_2728b0ecaa_o.jpg", "secret": "3d400cd8ba", "media": "photo", "latitude": "0", "id": "4707718930", "tags": "wedding june kevin allie judy 2010"}, {"datetaken": "2005-07-02 14:55:20", "license": "3", "title": "Church in Mill Valley", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26394293_8bcfaf63d6_o.jpg", "secret": "8bcfaf63d6", "media": "photo", "latitude": "0", "id": "26394293", "tags": "wedding millvalley"}, {"datetaken": "2005-07-02 15:45:19", "license": "3", "title": "...a three hour tour...", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26394496_bce325ad06_o.jpg", "secret": "bce325ad06", "media": "photo", "latitude": "0", "id": "26394496", "tags": "wedding tiburon"}, {"datetaken": "2005-07-02 15:45:32", "license": "3", "title": "Across the Harbor", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26394634_e4dd387840_o.jpg", "secret": "e4dd387840", "media": "photo", "latitude": "0", "id": "26394634", "tags": "wedding tiburon"}, {"datetaken": "2005-07-02 15:45:49", "license": "3", "title": "...a three hour tour...", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26394810_2c800eabc7_o.jpg", "secret": "2c800eabc7", "media": "photo", "latitude": "0", "id": "26394810", "tags": "wedding tiburon"}, {"datetaken": "2005-07-02 15:45:58", "license": "3", "title": "toot toot!", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26394930_eec2f220d9_o.jpg", "secret": "eec2f220d9", "media": "photo", "latitude": "0", "id": "26394930", "tags": "wedding tiburon"}, {"datetaken": "2005-07-02 16:44:44", "license": "3", "title": "Monique and Kyle", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26395422_9179d94e7d_o.jpg", "secret": "9179d94e7d", "media": "photo", "latitude": "0", "id": "26395422", "tags": "wedding tiburon monique kyle"}, {"datetaken": "2005-07-02 16:45:07", "license": "3", "title": "Monique and Kellee", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26395452_c2197e37b7_o.jpg", "secret": "c2197e37b7", "media": "photo", "latitude": "0", "id": "26395452", "tags": "wedding tiburon monique kellee"}, {"datetaken": "2005-07-02 16:45:18", "license": "3", "title": "Monique, Kellee, and Kyle", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26395671_3be45b8f44_o.jpg", "secret": "3be45b8f44", "media": "photo", "latitude": "0", "id": "26395671", "tags": "wedding tiburon monique kellee kyle"}, {"datetaken": "2005-07-02 17:28:07", "license": "3", "title": "Bob gives the Blessing", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26395761_34e51aa0b5_o.jpg", "secret": "34e51aa0b5", "media": "photo", "latitude": "0", "id": "26395761", "tags": "wedding tiburon bob"}, {"datetaken": "2005-07-02 18:05:20", "license": "3", "title": "Rose Covered Cake", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26396120_f22c778cbe_o.jpg", "secret": "f22c778cbe", "media": "photo", "latitude": "0", "id": "26396120", "tags": "wedding tiburon tccomp018"}, {"datetaken": "2005-07-02 18:06:10", "license": "3", "title": "Tiburon Harbor", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26395142_901e1acc45_o.jpg", "secret": "901e1acc45", "media": "photo", "latitude": "0", "id": "26395142", "tags": "wedding tiburon"}, {"datetaken": "2005-07-02 18:06:23", "license": "3", "title": "Tiburon Peninsula", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26395329_8d76ec2218_o.jpg", "secret": "8d76ec2218", "media": "photo", "latitude": "0", "id": "26395329", "tags": "wedding tiburon"}, {"datetaken": "2005-07-02 18:11:26", "license": "3", "title": "The Cake and The View", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26396214_463dfb7842_o.jpg", "secret": "463dfb7842", "media": "photo", "latitude": "0", "id": "26396214", "tags": "wedding tiburon"}, {"datetaken": "2005-07-02 18:27:27", "license": "3", "title": "Bob Lina Kyle", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26395922_08b1b48167_o.jpg", "secret": "08b1b48167", "media": "photo", "latitude": "0", "id": "26395922", "tags": "wedding tiburon bob lina kyle"}, {"datetaken": "2005-07-02 20:22:40", "license": "3", "title": "Monique dances with her Dad", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26396034_6f035ca8ab_o.jpg", "secret": "6f035ca8ab", "media": "photo", "latitude": "0", "id": "26396034", "tags": "wedding tiburon monique bob"}, {"datetaken": "2005-07-02 20:23:08", "license": "3", "title": "Joe & Monique Dancing", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26437791_156550bd38_o.jpg", "secret": "156550bd38", "media": "photo", "latitude": "0", "id": "26437791", "tags": ""}, {"datetaken": "2005-07-02 20:31:01", "license": "3", "title": "Lisa and Monique", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26396284_6c75460a73_o.jpg", "secret": "6c75460a73", "media": "photo", "latitude": "0", "id": "26396284", "tags": "wedding tiburon"}, {"datetaken": "2005-07-02 20:35:20", "license": "3", "title": "San Francisco from Tiburon", "text": "", "album_id": "599806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26396240_f34cd403d2_o.jpg", "secret": "f34cd403d2", "media": "photo", "latitude": "0", "id": "26396240", "tags": "wedding tiburon"}, {"datetaken": "2010-01-17 12:53:38", "license": "3", "title": "Cleaning Up Well", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4287581298_0509c4307e_o.jpg", "secret": "45e2115ddc", "media": "photo", "latitude": "0", "id": "4287581298", "tags": ""}, {"datetaken": "2010-01-17 16:08:17", "license": "3", "title": "Groucho'd", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4287633281_b9a28c7e1e_o.jpg", "secret": "5652860663", "media": "photo", "latitude": "0", "id": "4287633281", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 16:11:16", "license": "3", "title": "Catie And Traci", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4288374208_84538bfd47_o.jpg", "secret": "4124d9a602", "media": "photo", "latitude": "0", "id": "4288374208", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 16:15:23", "license": "3", "title": "Drink Incognito", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4288373852_f3826a802d_o.jpg", "secret": "636a9dfc59", "media": "photo", "latitude": "0", "id": "4288373852", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 16:16:22", "license": "3", "title": "Grumpstache", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2804/4288374720_f340f62535_o.jpg", "secret": "e1b5a5e197", "media": "photo", "latitude": "0", "id": "4288374720", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 16:27:47", "license": "3", "title": "'Stachitude", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4287632971_fa0a68f0bd_o.jpg", "secret": "66d63a79d1", "media": "photo", "latitude": "0", "id": "4287632971", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 16:29:11", "license": "3", "title": "Clever Disguises", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4288374464_79feb0f892_o.jpg", "secret": "738fe90ac0", "media": "photo", "latitude": "0", "id": "4288374464", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 16:31:09", "license": "3", "title": "Making The Bride Look Even Lovelier", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4288374296_f79e7dfd30_o.jpg", "secret": "ca8a47079c", "media": "photo", "latitude": "0", "id": "4288374296", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 16:31:48", "license": "3", "title": "Silver And Gold", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2738/4287633881_db348912fa_o.jpg", "secret": "5684e28af1", "media": "photo", "latitude": "0", "id": "4287633881", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 16:36:19", "license": "3", "title": "Ta-Da!", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4288373602_0a22a246e9_o.jpg", "secret": "04cd06579a", "media": "photo", "latitude": "0", "id": "4288373602", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 16:39:46", "license": "3", "title": "Bejeweled", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4287633227_f7919d8993_o.jpg", "secret": "1038ef6de4", "media": "photo", "latitude": "0", "id": "4287633227", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 16:40:54", "license": "3", "title": "OMG Cutest Picture EVAR!!!1", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4287663679_af403079e2_o.jpg", "secret": "c20f0c73a5", "media": "photo", "latitude": "0", "id": "4287663679", "tags": ""}, {"datetaken": "2010-01-17 16:41:18", "license": "3", "title": "Dip!", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4288404280_ecfc59afb2_o.jpg", "secret": "2d51a18e2f", "media": "photo", "latitude": "0", "id": "4288404280", "tags": ""}, {"datetaken": "2010-01-17 16:41:28", "license": "3", "title": "Paul And Wife", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4287663773_38a81bedd7_o.jpg", "secret": "e0fe5fc024", "media": "photo", "latitude": "0", "id": "4287663773", "tags": ""}, {"datetaken": "2010-01-17 16:43:31", "license": "3", "title": "Dinner!", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2546/4287663831_f9f8e968f0_o.jpg", "secret": "d2cae09dd1", "media": "photo", "latitude": "0", "id": "4287663831", "tags": ""}, {"datetaken": "2010-01-17 16:46:25", "license": "3", "title": "Vanity Shot", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4288404442_564e2f3ecf_o.jpg", "secret": "881fb31865", "media": "photo", "latitude": "0", "id": "4288404442", "tags": ""}, {"datetaken": "2010-01-17 17:49:03", "license": "3", "title": "Catie And Craige", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4288404528_7be1502172_o.jpg", "secret": "c32a025706", "media": "photo", "latitude": "0", "id": "4288404528", "tags": ""}, {"datetaken": "2010-01-17 17:50:28", "license": "3", "title": "Man In Uniform", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4288404628_c93223ddb9_o.jpg", "secret": "df48f67ac5", "media": "photo", "latitude": "0", "id": "4288404628", "tags": ""}, {"datetaken": "2010-01-17 17:53:54", "license": "3", "title": "Soul Patch", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4287664205_c0e2072fa9_o.jpg", "secret": "e4b015c623", "media": "photo", "latitude": "0", "id": "4287664205", "tags": ""}, {"datetaken": "2010-01-17 17:55:58", "license": "3", "title": "Cake With Cake", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4287664287_de743289e7_o.jpg", "secret": "588cce0b16", "media": "photo", "latitude": "0", "id": "4287664287", "tags": "wedding boston jen reception"}, {"datetaken": "2010-01-17 18:29:36", "license": "3", "title": "Samirah", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4287664361_2475bc63c9_o.jpg", "secret": "765f4d3a4b", "media": "photo", "latitude": "0", "id": "4287664361", "tags": "wedding boston jen reception"}, {"datetaken": "2010-01-17 18:48:52", "license": "3", "title": "Sharing", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4287663617_2cd9f2a5e4_o.jpg", "secret": "6469aa8caf", "media": "photo", "latitude": "0", "id": "4287663617", "tags": ""}, {"datetaken": "2010-01-17 19:09:42", "license": "3", "title": "Bouquet", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2719/4288465792_0af2eb80f6_o.jpg", "secret": "22d3c603b0", "media": "photo", "latitude": "0", "id": "4288465792", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 19:11:02", "license": "3", "title": "Hottie Sister", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4288465848_939fd5a548_o.jpg", "secret": "7edef333ac", "media": "photo", "latitude": "0", "id": "4288465848", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 19:21:51", "license": "3", "title": "Lounging", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2793/4287724999_048b93a0d1_o.jpg", "secret": "6948b52e99", "media": "photo", "latitude": "0", "id": "4287724999", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 19:24:27", "license": "3", "title": "Brother And Sister", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2685/4288465928_c55fe08b7f_o.jpg", "secret": "0b44dcca27", "media": "photo", "latitude": "0", "id": "4288465928", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 19:28:58", "license": "3", "title": "The Festooning Continues", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4288465976_b678df5280_o.jpg", "secret": "908ae7c797", "media": "photo", "latitude": "0", "id": "4288465976", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 19:33:24", "license": "3", "title": "Wedding Cakes!", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4287725245_ecd42fbb6c_o.jpg", "secret": "0fc28fbcb8", "media": "photo", "latitude": "0", "id": "4287725245", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 19:36:13", "license": "3", "title": "Dates", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4288466162_f289d3940d_o.jpg", "secret": "3b901f47d1", "media": "photo", "latitude": "0", "id": "4288466162", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 19:36:59", "license": "3", "title": "Faux Groom", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4288466320_3414c31522_o.jpg", "secret": "dda19820c3", "media": "photo", "latitude": "0", "id": "4288466320", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 19:37:55", "license": "3", "title": "Uh.", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4288466344_a568199bd1_o.jpg", "secret": "81164dc888", "media": "photo", "latitude": "0", "id": "4288466344", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2010-01-17 19:58:13", "license": "3", "title": "Hitched!", "text": "", "album_id": "72157623116067463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4288465710_183cca2bcb_o.jpg", "secret": "f6d2605a90", "media": "photo", "latitude": "0", "id": "4288465710", "tags": "wedding cakes boston jen reception"}, {"datetaken": "2004-08-28 16:49:53", "license": "3", "title": "Presley and Jinjer's Wedding", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4085/5027712532_58f41c9144_o.jpg", "secret": "c564d82dd0", "media": "photo", "latitude": "0", "id": "5027712532", "tags": "blue wedding hike presley lassen jinjer indiebride"}, {"datetaken": "2004-08-28 17:48:14", "license": "3", "title": "Presley and Jinjer's Wedding", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/5027094025_fcda71ca8e_o.jpg", "secret": "97bb1d82cf", "media": "photo", "latitude": "0", "id": "5027094025", "tags": "blue wedding hike presley lassen jinjer indiebride"}, {"datetaken": "2004-08-28 18:31:20", "license": "3", "title": "Mexican Wedding Necklace Ceremony", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/5027095709_6fb65e2c20_o.jpg", "secret": "54fefa57a8", "media": "photo", "latitude": "0", "id": "5027095709", "tags": "blue wedding hike presley lassen jinjer indiebride"}, {"datetaken": "2004-08-28 18:44:47", "license": "3", "title": "Presley and Jinjer's Wedding", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/5027710012_3511569a8b_o.jpg", "secret": "3257440bf3", "media": "photo", "latitude": "0", "id": "5027710012", "tags": "blue wedding hike presley lassen jinjer indiebride"}, {"datetaken": "2004-08-28 18:46:57", "license": "3", "title": "Presley and Jinjer's Wedding", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4087/5027709592_77a4858701_o.jpg", "secret": "964b861ba1", "media": "photo", "latitude": "0", "id": "5027709592", "tags": "blue wedding hike presley lassen jinjer indiebride"}, {"datetaken": "2004-08-28 18:55:06", "license": "3", "title": "Washing and Ring Ceremony", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/5027089335_4e1a04b4b5_o.jpg", "secret": "99bcde1140", "media": "photo", "latitude": "0", "id": "5027089335", "tags": "blue wedding hike presley lassen jinjer indiebride"}, {"datetaken": "2004-08-28 18:57:47", "license": "3", "title": "Washing and Ring Ceremony", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4087/5027089085_af6cce9dbe_o.jpg", "secret": "714b158e93", "media": "photo", "latitude": "0", "id": "5027089085", "tags": "blue wedding hike presley lassen jinjer indiebride"}, {"datetaken": "2004-08-28 18:58:49", "license": "3", "title": "Washing and Ring Ceremony", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/5027087547_544bc46409_o.jpg", "secret": "f3f3258e4b", "media": "photo", "latitude": "0", "id": "5027087547", "tags": "blue wedding hike presley lassen jinjer indiebride"}, {"datetaken": "2004-08-28 19:12:03", "license": "3", "title": "Mexican Wedding Necklace Ceremony", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/5027711326_d70ac0be54_o.jpg", "secret": "3a40ac30e7", "media": "photo", "latitude": "0", "id": "5027711326", "tags": "blue wedding hike presley lassen jinjer indiebride"}, {"datetaken": "2004-08-28 19:23:02", "license": "3", "title": "Clay hands ceremony", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/5027709066_a619126f44_o.jpg", "secret": "2cdb75817f", "media": "photo", "latitude": "0", "id": "5027709066", "tags": "blue wedding hike clay presley lassen jinjer boilingspringslake indiebride"}, {"datetaken": "2004-08-28 19:24:14", "license": "3", "title": "Clay hands ceremony", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/5027091627_a2a6e807ab_o.jpg", "secret": "d19340e7a0", "media": "photo", "latitude": "0", "id": "5027091627", "tags": "blue wedding hike clay presley lassen jinjer boilingspringslake indiebride"}, {"datetaken": "2004-08-28 19:24:56", "license": "3", "title": "Clay hands ceremony", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/5027706594_3c4372bbe7_o.jpg", "secret": "3b4f513043", "media": "photo", "latitude": "0", "id": "5027706594", "tags": "blue wedding hike clay presley lassen jinjer boilingspringslake indiebride"}, {"datetaken": "2004-08-28 19:52:31", "license": "3", "title": "Presley and Jinjer's Wedding", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/5027094447_28f3238af7_o.jpg", "secret": "0e15dc0497", "media": "photo", "latitude": "0", "id": "5027094447", "tags": "blue wedding hike presley lassen jinjer indiebride"}, {"datetaken": "2004-08-28 19:57:05", "license": "3", "title": "Presley and Jinjer's Wedding", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4133/5027089865_b577f2f56f_o.jpg", "secret": "87b6aa2f61", "media": "photo", "latitude": "0", "id": "5027089865", "tags": "blue wedding hike presley lassen jinjer indiebride"}, {"datetaken": "2004-08-28 20:03:39", "license": "3", "title": "Presley and Jinjer's Wedding", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/5027703124_7461a5b9e8_o.jpg", "secret": "06793b9ee2", "media": "photo", "latitude": "0", "id": "5027703124", "tags": "blue wedding hike presley lassen jinjer indiebride"}, {"datetaken": "2004-08-28 21:47:30", "license": "3", "title": "Presley and Jinjer's Wedding", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/5027086225_90aa372416_o.jpg", "secret": "0b85b6cae7", "media": "photo", "latitude": "0", "id": "5027086225", "tags": "blue wedding hike presley lassen jinjer indiebride"}, {"datetaken": "2004-08-28 23:55:09", "license": "3", "title": "Presley and Jinjer's Reception", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/5027702244_6b56708eef_o.jpg", "secret": "ec48298ed8", "media": "photo", "latitude": "0", "id": "5027702244", "tags": "blue wedding hike presley lassen jinjer indiebride"}, {"datetaken": "2004-08-29 00:07:17", "license": "3", "title": "Presley and Jinjer's Reception", "text": "", "album_id": "72157624915679935", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/5027085539_391cea6453_o.jpg", "secret": "1775403b2e", "media": "photo", "latitude": "0", "id": "5027085539", "tags": "blue wedding hike presley lassen jinjer indiebride"}, {"datetaken": "2007-02-28 23:28:35", "license": "3", "title": "Hector J. Drouillard", "text": "", "album_id": "72157594563077356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/406422728_d68f7db4d7_o.jpg", "secret": "5ad9e51395", "media": "photo", "latitude": "0", "id": "406422728", "tags": "heritage genealogy ancestry drouillard hectordrouillard"}, {"datetaken": "2007-02-28 23:28:35", "license": "3", "title": "The Three oldest boys", "text": "", "album_id": "72157594563077356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/406422739_be5f5bbb53_o.jpg", "secret": "cd5a8ee5ae", "media": "photo", "latitude": "0", "id": "406422739", "tags": "heritage genealogy ancestry drouillard hectordrouillard oscardrouillard edwarddrouillard"}, {"datetaken": "2007-02-28 23:28:35", "license": "3", "title": "Hector as a young man", "text": "", "album_id": "72157594563077356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/406422734_728aae173b_o.jpg", "secret": "43960cd232", "media": "photo", "latitude": "0", "id": "406422734", "tags": "heritage genealogy ancestry drouillard hectordrouillard"}, {"datetaken": "2007-02-28 23:42:16", "license": "3", "title": "DrouillardAliceNoahOdieVipossAnnieBettandAdele", "text": "", "album_id": "72157594563077356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/406434406_0538a921fe_o.jpg", "secret": "130cc44743", "media": "photo", "latitude": "0", "id": "406434406", "tags": "heritage genealogy ancestry drouillard hectordrouillard alicepare alicedrouillard noahdrouillard"}, {"datetaken": "2007-02-28 23:42:16", "license": "3", "title": "Hector as a young man", "text": "", "album_id": "72157594563077356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/406434413_e0f21422a1_o.jpg", "secret": "eaa2809c34", "media": "photo", "latitude": "0", "id": "406434413", "tags": "heritage genealogy ancestry drouillard hectordrouillard"}, {"datetaken": "2007-02-28 23:42:16", "license": "3", "title": "Closeup from Young Men's Window Dresser Association", "text": "", "album_id": "72157594563077356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/406434414_f713bb02ec_o.jpg", "secret": "1753720e81", "media": "photo", "latitude": "0", "id": "406434414", "tags": "heritage genealogy ancestry drouillard hectordrouillard"}, {"datetaken": "2007-02-28 23:42:16", "license": "3", "title": "Hector on his wedding day", "text": "", "album_id": "72157594563077356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/406434410_17613e40bc_o.jpg", "secret": "d1f92c41ec", "media": "photo", "latitude": "0", "id": "406434410", "tags": "heritage genealogy ancestry drouillard hectordrouillard"}, {"datetaken": "2007-02-28 23:42:16", "license": "3", "title": "Fooling around...", "text": "", "album_id": "72157594563077356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/406434415_d2056639b8_o.jpg", "secret": "5c3177e558", "media": "photo", "latitude": "0", "id": "406434415", "tags": "heritage genealogy ancestry drouillard susannahduffy susannahbaker margaretmarybaker hectordrouillard"}, {"datetaken": "2007-02-28 23:42:16", "license": "3", "title": "Alilce Pare Drouillard", "text": "", "album_id": "72157594563077356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/406434408_5cf59c85ca_o.jpg", "secret": "03a5987064", "media": "photo", "latitude": "0", "id": "406434408", "tags": "heritage genealogy ancestry drouillard hectordrouillard alicepare alicedrouillard"}, {"datetaken": "2007-03-01 00:24:03", "license": "3", "title": "Noah and Alice (nee Pare) Drouillard", "text": "", "album_id": "72157594563077356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/406468768_d2100de4a5_o.jpg", "secret": "4374d6ad03", "media": "photo", "latitude": "0", "id": "406468768", "tags": "heritage genealogy ancestry pare drouillard alicepare alicedrouillard noahdrouillard"}, {"datetaken": "2007-03-01 00:24:03", "license": "3", "title": "Alice Pare Drouillard", "text": "", "album_id": "72157594563077356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/406468771_d20fc33394_o.jpg", "secret": "d17c946bdf", "media": "photo", "latitude": "0", "id": "406468771", "tags": ""}, {"datetaken": "2007-03-01 00:24:03", "license": "3", "title": "Noah Drouillard with his daughters Violet and Elizabeth", "text": "", "album_id": "72157594563077356", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/406468770_a5966c7cfc_o.jpg", "secret": "f3a7983bbd", "media": "photo", "latitude": "0", "id": "406468770", "tags": "heritage genealogy ancestry lizroy drouillard noahdrouillard violetdrouillard violetsavard elizabethdrouillard"}, {"datetaken": "2004-11-27 15:34:27", "license": "1", "title": "Ice sculptures are cold.", "text": "", "album_id": "46136", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1819233_83e4f38fef_o.jpg", "secret": "83e4f38fef", "media": "photo", "latitude": "0", "id": "1819233", "tags": "hyatt"}, {"datetaken": "2004-11-27 17:05:06", "license": "1", "title": "Wedding Reception", "text": "", "album_id": "46136", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1819330_16413268a5_o.jpg", "secret": "16413268a5", "media": "photo", "latitude": "0", "id": "1819330", "tags": "karen austin hyatt"}, {"datetaken": "2004-11-27 17:05:25", "license": "1", "title": "Sisters Rule", "text": "", "album_id": "46136", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1819333_74ea5edaa8_o.jpg", "secret": "74ea5edaa8", "media": "photo", "latitude": "0", "id": "1819333", "tags": "trisha treyci austin hyatt"}, {"datetaken": "2004-11-27 17:05:36", "license": "1", "title": "Table 5...", "text": "", "album_id": "46136", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1819331_e86551d854_o.jpg", "secret": "e86551d854", "media": "photo", "latitude": "0", "id": "1819331", "tags": "austin hyatt"}, {"datetaken": "2004-11-27 17:06:01", "license": "1", "title": "I don't know.", "text": "", "album_id": "46136", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1819335_08ab0fbb12_o.jpg", "secret": "08ab0fbb12", "media": "photo", "latitude": "0", "id": "1819335", "tags": "karen shelly austin hyatt"}, {"datetaken": "2004-11-27 17:06:11", "license": "1", "title": "Pretty cousins.", "text": "", "album_id": "46136", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1819334_08c956f6c9_o.jpg", "secret": "08c956f6c9", "media": "photo", "latitude": "0", "id": "1819334", "tags": "austin smiles karen shelly hyatt"}, {"datetaken": "2004-11-27 17:07:08", "license": "1", "title": "Cousins rule too.", "text": "", "album_id": "46136", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1819332_f08a1b86d8_o.jpg", "secret": "f08a1b86d8", "media": "photo", "latitude": "0", "id": "1819332", "tags": "austin smiles hyatt"}, {"datetaken": "2004-11-27 17:45:21", "license": "1", "title": "Money Dance", "text": "", "album_id": "46136", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1819436_cf340cd712_o.jpg", "secret": "cf340cd712", "media": "photo", "latitude": "0", "id": "1819436", "tags": "sheryl rodel mary hyatt"}, {"datetaken": "2004-11-27 19:22:53", "license": "1", "title": "Ladies", "text": "", "album_id": "46136", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1819433_6f2d59eb1b_o.jpg", "secret": "6f2d59eb1b", "media": "photo", "latitude": "0", "id": "1819433", "tags": "mary aysha treyci karen trisha shelly kris theresa angie cici"}, {"datetaken": "2004-11-27 19:23:01", "license": "1", "title": "More Ladies", "text": "", "album_id": "46136", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1819435_11290bc518_o.jpg", "secret": "11290bc518", "media": "photo", "latitude": "0", "id": "1819435", "tags": "cici mary aysha jocelyn treyci karen trisha shelly kris theresa angie"}, {"datetaken": "2004-11-27 19:24:41", "license": "1", "title": "Sisters", "text": "", "album_id": "46136", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1819438_0a6073b22c_o.jpg", "secret": "0a6073b22c", "media": "photo", "latitude": "0", "id": "1819438", "tags": "auntielilia auntieerly auntietessie auntieamie"}, {"datetaken": "2004-11-27 19:25:39", "license": "1", "title": "Siblings", "text": "", "album_id": "46136", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1819530_6e67c01176_o.jpg", "secret": "6e67c01176", "media": "photo", "latitude": "0", "id": "1819530", "tags": "auntielilia unclebuen dad auntie auntieerly auntietessie auntieamie"}, {"datetaken": "2004-11-27 19:27:36", "license": "1", "title": "Cousins", "text": "", "album_id": "46136", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1819529_2a22d7f126_o.jpg", "secret": "2a22d7f126", "media": "photo", "latitude": "0", "id": "1819529", "tags": "unclebuen uncleporfs dad auntieerly auntielilia auntietessie"}, {"datetaken": "2004-11-27 19:29:36", "license": "1", "title": "Cousins", "text": "", "album_id": "46136", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1819531_87eda02e68_o.jpg", "secret": "87eda02e68", "media": "photo", "latitude": "0", "id": "1819531", "tags": "aysha lex michelle kris mark jon jeremy sheryl treyci jonas alex tristan aj karen shelly theresa cici"}, {"datetaken": "2004-11-27 19:29:49", "license": "1", "title": "Cousins", "text": "", "album_id": "46136", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1819528_ad42f57d5e_o.jpg", "secret": "ad42f57d5e", "media": "photo", "latitude": "0", "id": "1819528", "tags": "tristan trisha treyci theresa jeremy jon jonas karen kris mark michelle shelly sheryl cousins cici aj alex aysha"}, {"datetaken": "2005-08-27 14:22:10", "license": "3", "title": "alec and chris", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/38476734_7a397fa22e_o.jpg", "secret": "7a397fa22e", "media": "photo", "latitude": "0", "id": "38476734", "tags": "wedding dc alec chris"}, {"datetaken": "2005-08-27 14:26:17", "license": "3", "title": "alec's mustang", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/38476782_21f6c0e5a2_o.jpg", "secret": "21f6c0e5a2", "media": "photo", "latitude": "0", "id": "38476782", "tags": "wedding dc alec"}, {"datetaken": "2005-08-27 14:27:28", "license": "3", "title": "heading toward the ceremony", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/38476828_d6e41f3096_o.jpg", "secret": "d6e41f3096", "media": "photo", "latitude": "0", "id": "38476828", "tags": "wedding dc kristin debbie chris charlene peter"}, {"datetaken": "2005-08-27 15:07:28", "license": "3", "title": "the guys", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/38476877_4b29311438_o.jpg", "secret": "4b29311438", "media": "photo", "latitude": "0", "id": "38476877", "tags": "wedding dc alec constant chris peter"}, {"datetaken": "2005-08-27 15:15:09", "license": "3", "title": "waiting in the sanctuary", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/38476914_8d9c45d3e3_o.jpg", "secret": "8d9c45d3e3", "media": "photo", "latitude": "0", "id": "38476914", "tags": "wedding dc"}, {"datetaken": "2005-08-27 15:18:21", "license": "3", "title": "the program", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/38476933_083bfff092_o.jpg", "secret": "083bfff092", "media": "photo", "latitude": "0", "id": "38476933", "tags": "wedding dc"}, {"datetaken": "2005-08-27 15:20:01", "license": "3", "title": "heather and constant waiting for the ceremony", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/38476963_d042359e99_o.jpg", "secret": "d042359e99", "media": "photo", "latitude": "0", "id": "38476963", "tags": "wedding dc"}, {"datetaken": "2005-08-27 15:20:20", "license": "3", "title": "heather and constant", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/38476989_cd977b96a2_o.jpg", "secret": "cd977b96a2", "media": "photo", "latitude": "0", "id": "38476989", "tags": "wedding dc heather constant"}, {"datetaken": "2005-08-27 15:20:56", "license": "3", "title": "chris and charlene at the wedding", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/38477005_1f6acbe9f5_o.jpg", "secret": "1f6acbe9f5", "media": "photo", "latitude": "0", "id": "38477005", "tags": "wedding dc charlene chris"}, {"datetaken": "2005-08-27 15:25:43", "license": "3", "title": "looking around", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/38477036_009cf0d2ca_o.jpg", "secret": "009cf0d2ca", "media": "photo", "latitude": "0", "id": "38477036", "tags": "wedding dc"}, {"datetaken": "2005-08-27 15:37:57", "license": "3", "title": "line-up of men", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/38477069_27f1ce82b8_o.jpg", "secret": "27f1ce82b8", "media": "photo", "latitude": "0", "id": "38477069", "tags": "wedding dc"}, {"datetaken": "2005-08-27 15:40:00", "license": "3", "title": "faith and her dad", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/38477103_8661c4f6ec_o.jpg", "secret": "8661c4f6ec", "media": "photo", "latitude": "0", "id": "38477103", "tags": "wedding dc"}, {"datetaken": "2005-08-27 15:40:12", "license": "3", "title": "back of the bride's dress", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/38477136_474ce0db9f_o.jpg", "secret": "474ce0db9f", "media": "photo", "latitude": "0", "id": "38477136", "tags": "wedding dc"}, {"datetaken": "2005-08-27 16:07:34", "license": "3", "title": "bride and groom", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/38477166_6752f8a080_o.jpg", "secret": "6752f8a080", "media": "photo", "latitude": "0", "id": "38477166", "tags": "wedding dc"}, {"datetaken": "2005-08-27 16:07:55", "license": "3", "title": "richie walking down the aisle", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/38477216_a2c47d10a2_o.jpg", "secret": "a2c47d10a2", "media": "photo", "latitude": "0", "id": "38477216", "tags": "wedding dc richie"}, {"datetaken": "2005-08-27 16:52:12", "license": "3", "title": "chris playing with his phone", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/38477246_d155b1da1a_o.jpg", "secret": "d155b1da1a", "media": "photo", "latitude": "0", "id": "38477246", "tags": "wedding dc"}, {"datetaken": "2005-08-27 16:53:23", "license": "3", "title": "peter and debbie trapp", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/38477286_2b5e66010e_o.jpg", "secret": "2b5e66010e", "media": "photo", "latitude": "0", "id": "38477286", "tags": "wedding dc"}, {"datetaken": "2005-08-27 16:53:37", "license": "3", "title": "lobby of hotel washington", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/38477334_9598226907_o.jpg", "secret": "9598226907", "media": "photo", "latitude": "0", "id": "38477334", "tags": "wedding dc alec chris"}, {"datetaken": "2005-08-27 17:04:31", "license": "3", "title": "top of the whitehouse", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/38477373_4f8ad5a69e_o.jpg", "secret": "4f8ad5a69e", "media": "photo", "latitude": "0", "id": "38477373", "tags": "wedding dc"}, {"datetaken": "2005-08-27 17:05:55", "license": "3", "title": "the rooftop", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/38477414_1adf4c0704_o.jpg", "secret": "1adf4c0704", "media": "photo", "latitude": "0", "id": "38477414", "tags": "wedding dc"}, {"datetaken": "2005-08-27 17:06:27", "license": "3", "title": "debbie and heather", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/38477476_8b7a8479aa_o.jpg", "secret": "8b7a8479aa", "media": "photo", "latitude": "0", "id": "38477476", "tags": "wedding dc debbie heather"}, {"datetaken": "2005-08-27 17:07:51", "license": "3", "title": "debbie, heather, kristin, charlene", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/38477519_a2805c7dad_o.jpg", "secret": "a2805c7dad", "media": "photo", "latitude": "0", "id": "38477519", "tags": "wedding dc debbie heather kristin charlene"}, {"datetaken": "2005-08-27 17:37:20", "license": "3", "title": "alec and constant", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/38477564_28eee8c26f_o.jpg", "secret": "28eee8c26f", "media": "photo", "latitude": "0", "id": "38477564", "tags": "wedding dc alec constant"}, {"datetaken": "2005-08-27 18:19:14", "license": "3", "title": "hanging around on the rooftop", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/38477651_3248f396f9_o.jpg", "secret": "3248f396f9", "media": "photo", "latitude": "0", "id": "38477651", "tags": "wedding dc"}, {"datetaken": "2005-08-27 18:19:31", "license": "3", "title": "me?", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/38477788_476b9f51aa_o.jpg", "secret": "476b9f51aa", "media": "photo", "latitude": "0", "id": "38477788", "tags": "wedding dc chris"}, {"datetaken": "2005-08-27 18:19:43", "license": "3", "title": "chris's new look and heather", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/38477865_8957d020e7_o.jpg", "secret": "8957d020e7", "media": "photo", "latitude": "0", "id": "38477865", "tags": "wedding dc chris heather"}, {"datetaken": "2005-08-27 18:20:03", "license": "3", "title": "chris being himself with heather", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/38477935_4b6139dffb_o.jpg", "secret": "4b6139dffb", "media": "photo", "latitude": "0", "id": "38477935", "tags": "wedding dc chris heather"}, {"datetaken": "2005-08-27 18:20:29", "license": "3", "title": "Kristin and Ben", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/38477999_9874edd3b3_o.jpg", "secret": "9874edd3b3", "media": "photo", "latitude": "0", "id": "38477999", "tags": "wedding dc kristin ben"}, {"datetaken": "2005-08-27 18:40:36", "license": "3", "title": "waiting to get into reception (horizontal)", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/38478072_74b9827e0e_o.jpg", "secret": "74b9827e0e", "media": "photo", "latitude": "0", "id": "38478072", "tags": "wedding dc"}, {"datetaken": "2005-08-27 18:41:42", "license": "3", "title": "waiting to be introduced", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/38478150_86a03a96d4_o.jpg", "secret": "86a03a96d4", "media": "photo", "latitude": "0", "id": "38478150", "tags": "wedding dc"}, {"datetaken": "2005-08-27 18:43:24", "license": "3", "title": "ben and his escort", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/38478197_73235095a2_o.jpg", "secret": "73235095a2", "media": "photo", "latitude": "0", "id": "38478197", "tags": "wedding dc ben"}, {"datetaken": "2005-08-27 18:44:18", "license": "3", "title": "maid of honor and best man", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/38478258_8dde87023f_o.jpg", "secret": "8dde87023f", "media": "photo", "latitude": "0", "id": "38478258", "tags": "wedding dc"}, {"datetaken": "2005-08-27 18:44:43", "license": "3", "title": "happily married couple (faith and jerry)", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/38478315_d74e30b993_o.jpg", "secret": "d74e30b993", "media": "photo", "latitude": "0", "id": "38478315", "tags": "wedding dc"}, {"datetaken": "2005-08-27 18:45:33", "license": "3", "title": "the table setting", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/38478348_df56cd3a4e_o.jpg", "secret": "df56cd3a4e", "media": "photo", "latitude": "0", "id": "38478348", "tags": "wedding dc"}, {"datetaken": "2005-08-27 18:45:49", "license": "3", "title": "table card", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/38478389_a9483702db_o.jpg", "secret": "a9483702db", "media": "photo", "latitude": "0", "id": "38478389", "tags": "wedding dc"}, {"datetaken": "2005-08-27 19:56:33", "license": "3", "title": "chris, faith, jerry, alec, and constant", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/38478433_ddeb99ddac_o.jpg", "secret": "ddeb99ddac", "media": "photo", "latitude": "0", "id": "38478433", "tags": "wedding dc chris alec constant"}, {"datetaken": "2005-08-27 19:57:11", "license": "3", "title": "charlene and chris", "text": "", "album_id": "849816", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/38478470_12d280d788_o.jpg", "secret": "12d280d788", "media": "photo", "latitude": "0", "id": "38478470", "tags": "wedding dc chris charlene"}, {"datetaken": "2005-08-20 05:06:44", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/35765021_807b4ff514_o.jpg", "secret": "807b4ff514", "media": "photo", "latitude": "0", "id": "35765021", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 05:16:09", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/35766104_b8d7465990_o.jpg", "secret": "b8d7465990", "media": "photo", "latitude": "0", "id": "35766104", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 05:18:16", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/35765801_431f7dca42_o.jpg", "secret": "431f7dca42", "media": "photo", "latitude": "0", "id": "35765801", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 05:19:38", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/35766369_1a1e174548_o.jpg", "secret": "1a1e174548", "media": "photo", "latitude": "0", "id": "35766369", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 05:33:33", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/35765909_f4089607cc_o.jpg", "secret": "f4089607cc", "media": "photo", "latitude": "0", "id": "35765909", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 06:27:01", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/35765953_1251c007dd_o.jpg", "secret": "1251c007dd", "media": "photo", "latitude": "0", "id": "35765953", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 06:28:07", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/35764919_c80e478462_o.jpg", "secret": "c80e478462", "media": "photo", "latitude": "0", "id": "35764919", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 06:32:07", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/35765095_8bee140f68_o.jpg", "secret": "8bee140f68", "media": "photo", "latitude": "0", "id": "35765095", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 07:02:08", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/35765406_c2265bcd14_o.jpg", "secret": "c2265bcd14", "media": "photo", "latitude": "0", "id": "35765406", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 07:02:23", "license": "6", "title": "Like Sands Through the Hourglass....", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/35766183_fb3dcb13c7_o.jpg", "secret": "fb3dcb13c7", "media": "photo", "latitude": "0", "id": "35766183", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 07:02:59", "license": "6", "title": "Reception Hall", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/35765272_c892ebf6c1_o.jpg", "secret": "c892ebf6c1", "media": "photo", "latitude": "0", "id": "35765272", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 07:08:34", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/35765067_4aa76783f7_o.jpg", "secret": "4aa76783f7", "media": "photo", "latitude": "0", "id": "35765067", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 07:33:02", "license": "6", "title": "First Dance", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/35766662_5b4f5d391a_o.jpg", "secret": "5b4f5d391a", "media": "photo", "latitude": "0", "id": "35766662", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 07:44:26", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/35765489_cac6fd17dd_o.jpg", "secret": "cac6fd17dd", "media": "photo", "latitude": "0", "id": "35765489", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 07:48:44", "license": "6", "title": "Oh Dear Lord", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/35765330_9569901ffd_o.jpg", "secret": "9569901ffd", "media": "photo", "latitude": "0", "id": "35765330", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 07:48:57", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/35765042_a1b7037ba6_o.jpg", "secret": "a1b7037ba6", "media": "photo", "latitude": "0", "id": "35765042", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 07:49:22", "license": "6", "title": "Pucker Up, Baby.", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/35766569_a9e51e7c7b_o.jpg", "secret": "a9e51e7c7b", "media": "photo", "latitude": "0", "id": "35766569", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 07:50:21", "license": "6", "title": "I Blame the Champers", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/35765442_3e18276457_o.jpg", "secret": "3e18276457", "media": "photo", "latitude": "0", "id": "35765442", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 08:00:26", "license": "6", "title": "Donut, CClay, Shane", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/35765666_477cfc0edb_o.jpg", "secret": "477cfc0edb", "media": "photo", "latitude": "0", "id": "35765666", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 08:25:34", "license": "6", "title": "Best Man Toast", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/35765381_9f2db36c71_o.jpg", "secret": "9f2db36c71", "media": "photo", "latitude": "0", "id": "35765381", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 08:26:52", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/35764952_a16dbf4350_o.jpg", "secret": "a16dbf4350", "media": "photo", "latitude": "0", "id": "35764952", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 08:27:37", "license": "6", "title": "Mr. Clay's Toast", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/35766063_695737aaa2_o.jpg", "secret": "695737aaa2", "media": "photo", "latitude": "0", "id": "35766063", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 08:28:34", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/35765703_2f5dc4e918_o.jpg", "secret": "2f5dc4e918", "media": "photo", "latitude": "0", "id": "35765703", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 08:29:40", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/35766279_7d25faa25f_o.jpg", "secret": "7d25faa25f", "media": "photo", "latitude": "0", "id": "35766279", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 08:30:55", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/35765515_bd3548fe34_o.jpg", "secret": "bd3548fe34", "media": "photo", "latitude": "0", "id": "35765515", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 08:31:22", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/35765150_96965cae38_o.jpg", "secret": "96965cae38", "media": "photo", "latitude": "0", "id": "35765150", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 08:32:40", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/35766509_56a43f76a3_o.jpg", "secret": "56a43f76a3", "media": "photo", "latitude": "0", "id": "35766509", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 08:33:12", "license": "6", "title": "Think Fast", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/35766689_4f847a2c7b_o.jpg", "secret": "4f847a2c7b", "media": "photo", "latitude": "0", "id": "35766689", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 08:33:52", "license": "6", "title": "Only Fools Rush In", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/35765560_0ab4c1d939_o.jpg", "secret": "0ab4c1d939", "media": "photo", "latitude": "0", "id": "35765560", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 08:34:05", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/35766463_d173fca724_o.jpg", "secret": "d173fca724", "media": "photo", "latitude": "0", "id": "35766463", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 08:34:13", "license": "6", "title": "I Blame the Punch", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/35765892_ba8e00b1c5_o.jpg", "secret": "ba8e00b1c5", "media": "photo", "latitude": "0", "id": "35765892", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 08:57:56", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/35764874_a1cd5fd72c_o.jpg", "secret": "a1cd5fd72c", "media": "photo", "latitude": "0", "id": "35764874", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 08:58:43", "license": "6", "title": "Start Saving Now Dad", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/35766230_8a178308f0_o.jpg", "secret": "8a178308f0", "media": "photo", "latitude": "0", "id": "35766230", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 08:58:54", "license": "6", "title": "Mr. and Mrs. BG", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/35765186_f5b02cca8a_o.jpg", "secret": "f5b02cca8a", "media": "photo", "latitude": "0", "id": "35765186", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 08:59:47", "license": "6", "title": "Oooh. Dirty.", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/35766401_670abf72de_o.jpg", "secret": "670abf72de", "media": "photo", "latitude": "0", "id": "35766401", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 09:03:30", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/35765839_36e5a7e27a_o.jpg", "secret": "36e5a7e27a", "media": "photo", "latitude": "0", "id": "35765839", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 09:06:51", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/35765304_2223df3ea1_o.jpg", "secret": "2223df3ea1", "media": "photo", "latitude": "0", "id": "35765304", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 09:07:00", "license": "6", "title": "Young Love", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/35765993_476400318b_o.jpg", "secret": "476400318b", "media": "photo", "latitude": "0", "id": "35765993", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 09:08:20", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/35765004_59fee9fec0_o.jpg", "secret": "59fee9fec0", "media": "photo", "latitude": "0", "id": "35765004", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 09:18:18", "license": "6", "title": "Sadly, This Isn't the Chicken Dance.", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/35764972_8789cc8a55_o.jpg", "secret": "8789cc8a55", "media": "photo", "latitude": "0", "id": "35764972", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 09:31:32", "license": "6", "title": "Bride, Groom, Maid of Honor, Program Passer Outer", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/35766316_6f6e9b83a6_o.jpg", "secret": "6f6e9b83a6", "media": "photo", "latitude": "0", "id": "35766316", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 09:46:41", "license": "6", "title": "In the Gutter", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/35766033_14747389c8_o.jpg", "secret": "14747389c8", "media": "photo", "latitude": "0", "id": "35766033", "tags": "bgwedding wedding"}, {"datetaken": "2005-08-20 09:55:53", "license": "6", "title": "", "text": "", "album_id": "791186", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/35765224_e847e9325b_o.jpg", "secret": "e847e9325b", "media": "photo", "latitude": "0", "id": "35765224", "tags": "bgwedding wedding"}, {"datetaken": "2005-09-24 14:51:02", "license": "2", "title": "The church in Leigh", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/46773076_e2284c8109_o.jpg", "secret": "e2284c8109", "media": "photo", "latitude": "0", "id": "46773076", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:50:10", "license": "2", "title": "Pete and Clare", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/46773111_c66513ca2b_o.jpg", "secret": "c66513ca2b", "media": "photo", "latitude": "0", "id": "46773111", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:50:21", "license": "2", "title": "More old hands", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/46773154_cf50133984_o.jpg", "secret": "cf50133984", "media": "photo", "latitude": "0", "id": "46773154", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:50:30", "license": "2", "title": "Pete and Clare in the Moggy", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/46773173_b689466264_o.jpg", "secret": "b689466264", "media": "photo", "latitude": "0", "id": "46773173", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:50:40", "license": "2", "title": "Pete and Clare in the Moggy", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/46773195_7de0144106_o.jpg", "secret": "7de0144106", "media": "photo", "latitude": "0", "id": "46773195", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:50:48", "license": "2", "title": "Pete and Clare in the Moggy", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/46773232_6c315468d0_o.jpg", "secret": "6c315468d0", "media": "photo", "latitude": "0", "id": "46773232", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:50:57", "license": "2", "title": "Pete and Clare in the Moggy", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/46773254_2ddb59cbf0_o.jpg", "secret": "2ddb59cbf0", "media": "photo", "latitude": "0", "id": "46773254", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:51:07", "license": "2", "title": "Pete and Clare in the Moggy", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/46773272_a3aa933566_o.jpg", "secret": "a3aa933566", "media": "photo", "latitude": "0", "id": "46773272", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:51:16", "license": "2", "title": "Pete and Clare in the Moggy", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/46773285_a8f7a489e9_o.jpg", "secret": "a8f7a489e9", "media": "photo", "latitude": "0", "id": "46773285", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:51:24", "license": "2", "title": "Pete and Clare in the Moggy", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46773313_f17bba266b_o.jpg", "secret": "f17bba266b", "media": "photo", "latitude": "0", "id": "46773313", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:51:33", "license": "2", "title": "Pete and Clare in the Moggy", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/46773348_dec122bdc5_o.jpg", "secret": "dec122bdc5", "media": "photo", "latitude": "0", "id": "46773348", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:51:40", "license": "2", "title": "The reception in Mayfield", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/46773367_865bf8f65d_o.jpg", "secret": "865bf8f65d", "media": "photo", "latitude": "0", "id": "46773367", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:51:47", "license": "2", "title": "Pete and Clare", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/46773395_f95311809d_o.jpg", "secret": "f95311809d", "media": "photo", "latitude": "0", "id": "46773395", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:51:56", "license": "2", "title": "The reception in Mayfiel", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/46773424_b811ee0b17_o.jpg", "secret": "b811ee0b17", "media": "photo", "latitude": "0", "id": "46773424", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:52:02", "license": "2", "title": "Cutting the Cake", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46773441_7e9fb7e95c_o.jpg", "secret": "7e9fb7e95c", "media": "photo", "latitude": "0", "id": "46773441", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:52:07", "license": "2", "title": "Cutting the Cake", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/46773457_1eb427b063_o.jpg", "secret": "1eb427b063", "media": "photo", "latitude": "0", "id": "46773457", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:52:15", "license": "2", "title": "Pete and Clare", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/46773483_27c7082ac4_o.jpg", "secret": "27c7082ac4", "media": "photo", "latitude": "0", "id": "46773483", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:52:20", "license": "2", "title": "Richie Gabriel", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/46773500_2ca256c51c_o.jpg", "secret": "2ca256c51c", "media": "photo", "latitude": "0", "id": "46773500", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:52:26", "license": "2", "title": "Jiminauld Coxenberry", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/46773539_7bd22736ac_o.jpg", "secret": "7bd22736ac", "media": "photo", "latitude": "0", "id": "46773539", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:52:32", "license": "2", "title": "Old Monks", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/46773570_ccb5f9018b_o.jpg", "secret": "ccb5f9018b", "media": "photo", "latitude": "0", "id": "46773570", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:52:41", "license": "2", "title": "Pete and Clare", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/46773613_f6b6d6e812_o.jpg", "secret": "f6b6d6e812", "media": "photo", "latitude": "0", "id": "46773613", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:52:48", "license": "2", "title": "Pete and Clare", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/46773641_3b7f7f1f2d_o.jpg", "secret": "3b7f7f1f2d", "media": "photo", "latitude": "0", "id": "46773641", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:52:57", "license": "2", "title": "Pete and Clare", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/46773674_dc7ee3ccfa_o.jpg", "secret": "dc7ee3ccfa", "media": "photo", "latitude": "0", "id": "46773674", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:53:03", "license": "2", "title": "Pete and Clare", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/46773687_0863335c8b_o.jpg", "secret": "0863335c8b", "media": "photo", "latitude": "0", "id": "46773687", "tags": "wedding leigh"}, {"datetaken": "2005-09-26 13:53:11", "license": "2", "title": "Pete and Clare", "text": "", "album_id": "1044910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/46773717_fcbe871e6b_o.jpg", "secret": "fcbe871e6b", "media": "photo", "latitude": "0", "id": "46773717", "tags": "wedding leigh"}, {"datetaken": "2005-09-16 13:50:20", "license": "3", "title": "Signing the Register", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44448252_8fbd826a57_o.jpg", "secret": "8fbd826a57", "media": "photo", "latitude": "0", "id": "44448252", "tags": "groom bride liamandsharondrennan wedding church abbeyleix ireland colaoise"}, {"datetaken": "2005-09-16 13:52:10", "license": "3", "title": "Hang on...", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/44449485_90a8733091_o.jpg", "secret": "90a8733091", "media": "photo", "latitude": "0", "id": "44449485", "tags": "usher bridesmaid liamandsharondrennan wedding church abbeyleix ireland colaoise"}, {"datetaken": "2005-09-16 13:52:24", "license": "3", "title": "PICT0159", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/44449867_242af4b515_o.jpg", "secret": "242af4b515", "media": "photo", "latitude": "0", "id": "44449867", "tags": "usher bridesmaid liamandsharondrennan wedding church abbeyleix ireland colaoise"}, {"datetaken": "2005-09-16 13:52:29", "license": "3", "title": "PICT0160", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/44450236_150398703c_o.jpg", "secret": "150398703c", "media": "photo", "latitude": "0", "id": "44450236", "tags": "usher bridesmaid liamandsharondrennan wedding church abbeyleix ireland colaoise"}, {"datetaken": "2005-09-16 13:53:55", "license": "3", "title": "Form a string quartet!", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44450643_932264be14_o.jpg", "secret": "932264be14", "media": "photo", "latitude": "0", "id": "44450643", "tags": "stringquartet liamandsharondrennan wedding church abbeyleix ireland colaoise"}, {"datetaken": "2005-09-16 20:39:54", "license": "3", "title": "Sisters", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/44426548_280da415b5_o.jpg", "secret": "280da415b5", "media": "photo", "latitude": "0", "id": "44426548", "tags": "ourma nora dancing liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 20:40:51", "license": "3", "title": "Dancin' Sisters", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/44427286_3bd6dc8c2d_o.jpg", "secret": "3bd6dc8c2d", "media": "photo", "latitude": "0", "id": "44427286", "tags": "nora ourma liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 20:41:37", "license": "3", "title": "Andy & Jane", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/44427661_aa46247462_o.jpg", "secret": "aa46247462", "media": "photo", "latitude": "0", "id": "44427661", "tags": "jane andy liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 20:47:10", "license": "3", "title": "McDonalds", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/44429341_519472fb4e_o.jpg", "secret": "519472fb4e", "media": "photo", "latitude": "0", "id": "44429341", "tags": "john ourma nora liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 20:55:33", "license": "3", "title": "Dancing the night away...", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/44429949_6cd9e75986_o.jpg", "secret": "6cd9e75986", "media": "photo", "latitude": "0", "id": "44429949", "tags": "fatherofthebride bridesmaid liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 20:55:56", "license": "3", "title": "Dancin'", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/44430224_8f308d0f2e_o.jpg", "secret": "8f308d0f2e", "media": "photo", "latitude": "0", "id": "44430224", "tags": "fatherofthebride bridesmaid liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 20:56:28", "license": "3", "title": "Dancin'", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/44430548_a77a6a5022_o.jpg", "secret": "a77a6a5022", "media": "photo", "latitude": "0", "id": "44430548", "tags": "fatherofthebride bridesmaid liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 20:57:10", "license": "3", "title": "Mum & Nora concerned", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/44431357_0dfddf916b_o.jpg", "secret": "0dfddf916b", "media": "photo", "latitude": "0", "id": "44431357", "tags": "ourma nora liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 20:57:45", "license": "3", "title": "Nora and Eugene", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/44431832_17d1636216_o.jpg", "secret": "17d1636216", "media": "photo", "latitude": "0", "id": "44431832", "tags": "nora eugene liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 20:58:11", "license": "3", "title": "Mum & Dad.", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44432252_b4790829d9_o.jpg", "secret": "b4790829d9", "media": "photo", "latitude": "0", "id": "44432252", "tags": "ourda ourma liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 20:59:34", "license": "3", "title": "Uncle Andy", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/44433019_38d3f754b9_o.jpg", "secret": "38d3f754b9", "media": "photo", "latitude": "0", "id": "44433019", "tags": "andy liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 21:15:14", "license": "3", "title": "Gas", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/44433492_4c31392818_o.jpg", "secret": "4c31392818", "media": "photo", "latitude": "0", "id": "44433492", "tags": "john eugene andy jane alan liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 21:16:12", "license": "3", "title": "Mum", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/44433943_b61f807597_o.jpg", "secret": "b61f807597", "media": "photo", "latitude": "0", "id": "44433943", "tags": "our ma liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 21:21:55", "license": "3", "title": "Sisters", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/44434333_eec66bb187_o.jpg", "secret": "eec66bb187", "media": "photo", "latitude": "0", "id": "44434333", "tags": "bridesmaids dancing liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 21:22:13", "license": "3", "title": "Father and Bride", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44434766_36172c2631_o.jpg", "secret": "36172c2631", "media": "photo", "latitude": "0", "id": "44434766", "tags": "bride fatherofthebride dancing liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 21:29:28", "license": "3", "title": "Sharon & John", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/44435156_fcb51f01df_o.jpg", "secret": "fcb51f01df", "media": "photo", "latitude": "0", "id": "44435156", "tags": "bride fatherofthebride dancing liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 21:30:01", "license": "3", "title": "Elaine and the dancing girls!", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/44435570_13720d4583_o.jpg", "secret": "13720d4583", "media": "photo", "latitude": "0", "id": "44435570", "tags": "dancing liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 22:20:49", "license": "3", "title": "Kirsty, Mum, Keeva and Elaine, dancin'", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/44438855_1283f21e84_o.jpg", "secret": "1283f21e84", "media": "photo", "latitude": "0", "id": "44438855", "tags": "dancing liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 22:21:34", "license": "3", "title": "Dancing", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/44439277_fe21de9246_o.jpg", "secret": "fe21de9246", "media": "photo", "latitude": "0", "id": "44439277", "tags": "dancing liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 22:22:00", "license": "3", "title": "Alan and Andy", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/44439642_ea3832984b_o.jpg", "secret": "ea3832984b", "media": "photo", "latitude": "0", "id": "44439642", "tags": "alan andy liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 22:24:17", "license": "3", "title": "Ssh!", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/44440075_ee48c9f728_o.jpg", "secret": "ee48c9f728", "media": "photo", "latitude": "0", "id": "44440075", "tags": "ourda ourma liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 22:24:31", "license": "3", "title": "Nora & Eugene", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44440448_19ba2037fc_o.jpg", "secret": "19ba2037fc", "media": "photo", "latitude": "0", "id": "44440448", "tags": "nora liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise eugene"}, {"datetaken": "2005-09-16 22:24:42", "license": "3", "title": "PICT0238", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/44440730_0c896763f9_o.jpg", "secret": "0c896763f9", "media": "photo", "latitude": "0", "id": "44440730", "tags": "alan liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 22:25:06", "license": "3", "title": "Andy & Jane", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/44441089_cb02942a13_o.jpg", "secret": "cb02942a13", "media": "photo", "latitude": "0", "id": "44441089", "tags": "andy jane liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 22:31:11", "license": "3", "title": "Margaret and Pad", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/44441419_ca0c87490a_o.jpg", "secret": "ca0c87490a", "media": "photo", "latitude": "0", "id": "44441419", "tags": "margaret pad dancing liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 22:31:59", "license": "3", "title": "Jane chatting with Our Ma", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/44441821_d0a5fb7bf5_o.jpg", "secret": "d0a5fb7bf5", "media": "photo", "latitude": "0", "id": "44441821", "tags": "dancing liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 22:33:07", "license": "3", "title": "PICT0242", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44442166_45e2b5130a_o.jpg", "secret": "45e2b5130a", "media": "photo", "latitude": "0", "id": "44442166", "tags": "dancing liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 22:33:53", "license": "3", "title": "Mum's Having a Good Time", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/44442486_cb413d70c8_o.jpg", "secret": "cb413d70c8", "media": "photo", "latitude": "0", "id": "44442486", "tags": "ourma nora eugene liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 22:38:19", "license": "3", "title": "PICT0247", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/44442850_3cfe460642_o.jpg", "secret": "3cfe460642", "media": "photo", "latitude": "0", "id": "44442850", "tags": "ourma liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 22:38:53", "license": "3", "title": "Mum & Nora", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/44443212_af1f75d84d_o.jpg", "secret": "af1f75d84d", "media": "photo", "latitude": "0", "id": "44443212", "tags": "ourma nora liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 22:39:42", "license": "3", "title": "The First Dance", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/44443619_39d60dbdb0_o.jpg", "secret": "39d60dbdb0", "media": "photo", "latitude": "0", "id": "44443619", "tags": "bride groom dancing liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 22:43:31", "license": "3", "title": "Mum & Nora", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/44444013_45836ea39c_o.jpg", "secret": "45836ea39c", "media": "photo", "latitude": "0", "id": "44444013", "tags": "ourma nora liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 22:44:26", "license": "3", "title": "Father of the Bride delivering a few pints...", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/44444459_19fea6eea8_o.jpg", "secret": "19fea6eea8", "media": "photo", "latitude": "0", "id": "44444459", "tags": "john drinking liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 22:44:56", "license": "3", "title": "Kirsty", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/44444875_14a16bb4ea_o.jpg", "secret": "14a16bb4ea", "media": "photo", "latitude": "0", "id": "44444875", "tags": "dancing liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 22:59:58", "license": "3", "title": "PICT0261", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/44445321_d562875b2f_o.jpg", "secret": "d562875b2f", "media": "photo", "latitude": "0", "id": "44445321", "tags": "dancing liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 23:00:11", "license": "3", "title": "Dancing", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44445721_bf31452145_o.jpg", "secret": "bf31452145", "media": "photo", "latitude": "0", "id": "44445721", "tags": "dancing liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-09-16 23:05:15", "license": "3", "title": "Hands together", "text": "", "album_id": "975503", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/44446209_6c396a91d2_o.jpg", "secret": "6c396a91d2", "media": "photo", "latitude": "0", "id": "44446209", "tags": "dancing liamandsharondrennan wedding reception craic heritagehotel portlaoise ireland colaoise"}, {"datetaken": "2005-10-29 18:41:00", "license": "2", "title": "Nathan's Wedding", "text": "", "album_id": "1242513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/57376438_24500d13b9_o.jpg", "secret": "24500d13b9", "media": "photo", "latitude": "0", "id": "57376438", "tags": "austin wedding politics"}, {"datetaken": "2005-10-29 18:41:09", "license": "2", "title": "Nathan's Wedding", "text": "", "album_id": "1242513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/57376478_e8591d7903_o.jpg", "secret": "e8591d7903", "media": "photo", "latitude": "0", "id": "57376478", "tags": "austin wedding politics"}, {"datetaken": "2005-10-29 18:46:10", "license": "2", "title": "Nathan's Wedding", "text": "", "album_id": "1242513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/57376507_c588372612_o.jpg", "secret": "c588372612", "media": "photo", "latitude": "0", "id": "57376507", "tags": "austin wedding politics"}, {"datetaken": "2005-10-29 18:46:43", "license": "2", "title": "Nathan's Wedding", "text": "", "album_id": "1242513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/57376548_b410b643e6_o.jpg", "secret": "b410b643e6", "media": "photo", "latitude": "0", "id": "57376548", "tags": "austin wedding politics"}, {"datetaken": "2005-10-29 18:46:57", "license": "2", "title": "Nathan's Wedding", "text": "", "album_id": "1242513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/57376587_22c6676c76_o.jpg", "secret": "22c6676c76", "media": "photo", "latitude": "0", "id": "57376587", "tags": "austin wedding politics"}, {"datetaken": "2005-10-29 18:47:07", "license": "2", "title": "Nathan's Wedding", "text": "", "album_id": "1242513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/57376624_34e4b546fa_o.jpg", "secret": "34e4b546fa", "media": "photo", "latitude": "0", "id": "57376624", "tags": "austin wedding politics"}, {"datetaken": "2005-10-29 18:47:31", "license": "2", "title": "Nathan's Wedding", "text": "", "album_id": "1242513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/57376658_556d936c8d_o.jpg", "secret": "556d936c8d", "media": "photo", "latitude": "0", "id": "57376658", "tags": "austin wedding politics"}, {"datetaken": "2005-10-29 19:54:48", "license": "2", "title": "Nathan's Wedding", "text": "", "album_id": "1242513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/57376693_bb74130e01_o.jpg", "secret": "bb74130e01", "media": "photo", "latitude": "0", "id": "57376693", "tags": "austin wedding politics"}, {"datetaken": "2005-10-29 19:55:00", "license": "2", "title": "Nathan's Wedding", "text": "", "album_id": "1242513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/57376734_798d404791_o.jpg", "secret": "798d404791", "media": "photo", "latitude": "0", "id": "57376734", "tags": "austin wedding politics"}, {"datetaken": "2005-10-29 19:55:42", "license": "2", "title": "Nathan's Wedding", "text": "", "album_id": "1242513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/57376784_f4048ed258_o.jpg", "secret": "f4048ed258", "media": "photo", "latitude": "0", "id": "57376784", "tags": "austin wedding politics"}, {"datetaken": "2005-10-29 19:55:52", "license": "2", "title": "Nathan's Wedding", "text": "", "album_id": "1242513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/57376826_3ca61026e8_o.jpg", "secret": "3ca61026e8", "media": "photo", "latitude": "0", "id": "57376826", "tags": "austin wedding politics"}, {"datetaken": "2005-10-29 19:56:24", "license": "2", "title": "Nathan's Wedding", "text": "", "album_id": "1242513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/57376862_3be0a32497_o.jpg", "secret": "3be0a32497", "media": "photo", "latitude": "0", "id": "57376862", "tags": "austin wedding politics"}, {"datetaken": "2005-10-29 20:18:11", "license": "2", "title": "Nathan's Wedding", "text": "", "album_id": "1242513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/57376908_69e78bcb49_o.jpg", "secret": "69e78bcb49", "media": "photo", "latitude": "0", "id": "57376908", "tags": "austin wedding politics"}, {"datetaken": "2005-10-29 20:18:23", "license": "2", "title": "Nathan's Wedding", "text": "", "album_id": "1242513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/57376951_014281b199_o.jpg", "secret": "014281b199", "media": "photo", "latitude": "0", "id": "57376951", "tags": "austin wedding politics"}, {"datetaken": "2005-10-29 10:05:19", "license": "5", "title": "Schlitz Audubon Nature Center front door", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58247963_288fb5a100_o.jpg", "secret": "288fb5a100", "media": "photo", "latitude": "0", "id": "58247963", "tags": "2005 back october milwaukee backs options optionsforweddingandreception"}, {"datetaken": "2005-10-29 10:05:57", "license": "5", "title": "Path from parking lot", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58247984_d84c0d4a17_o.jpg", "secret": "d84c0d4a17", "media": "photo", "latitude": "0", "id": "58247984", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 10:06:26", "license": "5", "title": "Above front doors", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58247993_348ffd7587_o.jpg", "secret": "348ffd7587", "media": "photo", "latitude": "0", "id": "58247993", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 10:07:02", "license": "5", "title": "Part of wrap-around porches", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/58247999_710446860e_o.jpg", "secret": "710446860e", "media": "photo", "latitude": "0", "id": "58247999", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 10:12:35", "license": "5", "title": "Leather chairs", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/58248016_cd601d99d8_o.jpg", "secret": "cd601d99d8", "media": "photo", "latitude": "0", "id": "58248016", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 10:22:29", "license": "5", "title": "Outdoor pavilion", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/58248031_64026978fe_o.jpg", "secret": "64026978fe", "media": "photo", "latitude": "0", "id": "58248031", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 10:22:56", "license": "5", "title": "Pavilion", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58248052_63e2b2b467_o.jpg", "secret": "63e2b2b467", "media": "photo", "latitude": "0", "id": "58248052", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 10:23:08", "license": "5", "title": "Pavilion roof", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/58248059_8ca45aaecb_o.jpg", "secret": "8ca45aaecb", "media": "photo", "latitude": "0", "id": "58248059", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 10:23:14", "license": "5", "title": "Pavilion point overlooking the lake", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/58248069_71dd5e4f87_o.jpg", "secret": "71dd5e4f87", "media": "photo", "latitude": "0", "id": "58248069", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 10:23:40", "license": "5", "title": "Outdoor pavilion", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/58248073_3f29cad99e_o.jpg", "secret": "3f29cad99e", "media": "photo", "latitude": "0", "id": "58248073", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 10:23:58", "license": "5", "title": "Outdoor pavilion", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/58248080_2ab6712eed_o.jpg", "secret": "2ab6712eed", "media": "photo", "latitude": "0", "id": "58248080", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 10:24:07", "license": "5", "title": "Outdoor pavilion", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/58248094_429bdd4286_o.jpg", "secret": "429bdd4286", "media": "photo", "latitude": "0", "id": "58248094", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 10:26:37", "license": "5", "title": "Outdoor pavilion", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/58248108_ebb78e0f9f_o.jpg", "secret": "ebb78e0f9f", "media": "photo", "latitude": "0", "id": "58248108", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 10:27:13", "license": "5", "title": "Pavilion", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/58248125_4db022be89_o.jpg", "secret": "4db022be89", "media": "photo", "latitude": "0", "id": "58248125", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 10:30:55", "license": "5", "title": "Schlitz Audubon Nature Center trees", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/58248134_b5f7767117_o.jpg", "secret": "b5f7767117", "media": "photo", "latitude": "0", "id": "58248134", "tags": "2005 autumn fall october milwaukee bayside birches changingleaves optionsforweddingandreception"}, {"datetaken": "2005-10-29 10:31:07", "license": "5", "title": "Schlitz Audubon Nature Center", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58248144_59d3bd74a4_o.jpg", "secret": "59d3bd74a4", "media": "photo", "latitude": "0", "id": "58248144", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 10:45:49", "license": "5", "title": "Main hall", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/58248151_1fd27fb77a_o.jpg", "secret": "1fd27fb77a", "media": "photo", "latitude": "0", "id": "58248151", "tags": "2005 wedding october reception milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 15:48:37", "license": "5", "title": "View from Pieces of Eight Restaurant", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/58248257_2f0f13f187_o.jpg", "secret": "2f0f13f187", "media": "photo", "latitude": "0", "id": "58248257", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 15:48:44", "license": "5", "title": "Pieces of Eight Restaurant", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/58248266_ab144a7a3f_o.jpg", "secret": "ab144a7a3f", "media": "photo", "latitude": "0", "id": "58248266", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 15:51:31", "license": "5", "title": "Pieces of Eight Restaurant; fireplace", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58248271_ede90f3816_o.jpg", "secret": "ede90f3816", "media": "photo", "latitude": "0", "id": "58248271", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2005-10-29 15:51:52", "license": "5", "title": "Pieces of Eight Restaurant interior", "text": "", "album_id": "1260584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58248277_c48fa205fb_o.jpg", "secret": "c48fa205fb", "media": "photo", "latitude": "0", "id": "58248277", "tags": "2005 october milwaukee options optionsforweddingandreception"}, {"datetaken": "2006-01-06 10:10:07", "license": "3", "title": "Happy Couple", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/82713046_9b8f6177f7_o.jpg", "secret": "9b8f6177f7", "media": "photo", "latitude": "0", "id": "82713046", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:10:39", "license": "3", "title": "Simon", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/82713048_de45884bf5_o.jpg", "secret": "de45884bf5", "media": "photo", "latitude": "0", "id": "82713048", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:11:41", "license": "3", "title": "Bride", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/82713049_8ce8e56928_o.jpg", "secret": "8ce8e56928", "media": "photo", "latitude": "0", "id": "82713049", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:13:14", "license": "3", "title": "Groom", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/82713051_ddb751155e_o.jpg", "secret": "ddb751155e", "media": "photo", "latitude": "0", "id": "82713051", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:14:32", "license": "3", "title": "Father of the bride?", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/82713053_309eae4c70_o.jpg", "secret": "309eae4c70", "media": "photo", "latitude": "0", "id": "82713053", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:15:25", "license": "3", "title": "Mother and Half sister of bride", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/82713055_307f2a083a_o.jpg", "secret": "307f2a083a", "media": "photo", "latitude": "0", "id": "82713055", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:16:54", "license": "3", "title": "Bride and groom", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/82714077_06c9e1d51e_o.jpg", "secret": "06c9e1d51e", "media": "photo", "latitude": "0", "id": "82714077", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:17:31", "license": "3", "title": "Bride and half sister", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/82714078_2a69fc8763_o.jpg", "secret": "2a69fc8763", "media": "photo", "latitude": "0", "id": "82714078", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:18:28", "license": "3", "title": "Bride and Groom", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/82714079_b577b753a0_o.jpg", "secret": "b577b753a0", "media": "photo", "latitude": "0", "id": "82714079", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:19:37", "license": "3", "title": "Bride and Groom", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/82714080_e56e996ea4_o.jpg", "secret": "e56e996ea4", "media": "photo", "latitude": "0", "id": "82714080", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:20:12", "license": "3", "title": "Cutting the cake at the pub", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/82714082_9abbcc1583_o.jpg", "secret": "9abbcc1583", "media": "photo", "latitude": "0", "id": "82714082", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:21:11", "license": "3", "title": "Having a smoke after the big event", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/82714083_8eb762e221_o.jpg", "secret": "8eb762e221", "media": "photo", "latitude": "0", "id": "82714083", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:22:31", "license": "3", "title": "The Family Photo", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/82714772_ea8e2b9a56_o.jpg", "secret": "ea8e2b9a56", "media": "photo", "latitude": "0", "id": "82714772", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:23:07", "license": "3", "title": "The Family Photo", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/82714773_a03e149281_o.jpg", "secret": "a03e149281", "media": "photo", "latitude": "0", "id": "82714773", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:23:52", "license": "3", "title": "Catching the flowers", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/82714774_78997414e8_o.jpg", "secret": "78997414e8", "media": "photo", "latitude": "0", "id": "82714774", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:24:30", "license": "3", "title": "Family of the Bride", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/82714775_c98c18307f_o.jpg", "secret": "c98c18307f", "media": "photo", "latitude": "0", "id": "82714775", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:26:42", "license": "3", "title": "Waiting for the joke to finish", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/82714776_a043fc429e_o.jpg", "secret": "a043fc429e", "media": "photo", "latitude": "0", "id": "82714776", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:27:31", "license": "3", "title": "Waiting to begin", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/82714777_7133e910ab_o.jpg", "secret": "7133e910ab", "media": "photo", "latitude": "0", "id": "82714777", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:28:46", "license": "3", "title": "Whats he looking at?", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/82715886_e7800e5b28_o.jpg", "secret": "e7800e5b28", "media": "photo", "latitude": "0", "id": "82715886", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:29:03", "license": "3", "title": "Oh ain't they sweet", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/82715887_9ec41daabb_o.jpg", "secret": "9ec41daabb", "media": "photo", "latitude": "0", "id": "82715887", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:31:33", "license": "3", "title": "The kiss", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/82715889_a61cb469fd_o.jpg", "secret": "a61cb469fd", "media": "photo", "latitude": "0", "id": "82715889", "tags": "wedding interesting pub kiss 2000 random reception meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:32:10", "license": "3", "title": "The bridal (um) dance?", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/82715890_c72c1770a1_o.jpg", "secret": "c72c1770a1", "media": "photo", "latitude": "0", "id": "82715890", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:32:50", "license": "3", "title": "Waiting", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/82715891_604ea8a389_o.jpg", "secret": "604ea8a389", "media": "photo", "latitude": "0", "id": "82715891", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-06 10:33:42", "license": "3", "title": "The speech", "text": "", "album_id": "1767427", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/82716675_7c4730f354_o.jpg", "secret": "7c4730f354", "media": "photo", "latitude": "0", "id": "82716675", "tags": "wedding interesting 2000 random meredith welsh bizzare doyouknowthesepeople meredithjames"}, {"datetaken": "2006-01-20 13:01:58", "license": "1", "title": "AaronchowingdownonMandms", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/88995893_7474522214_o.jpg", "secret": "7474522214", "media": "photo", "latitude": "0", "id": "88995893", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:01:58", "license": "1", "title": "ArmetoReynoldsFerol", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/88995894_f0c95f40c8_o.jpg", "secret": "f0c95f40c8", "media": "photo", "latitude": "0", "id": "88995894", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:01:58", "license": "1", "title": "BethBlazeTaraatheChocolatefountain02", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/88995895_9c8af64a93_o.jpg", "secret": "9c8af64a93", "media": "photo", "latitude": "0", "id": "88995895", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:01:58", "license": "1", "title": "BethBlazeTaraatheChocolatefountain", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/88995896_4b1bc730a7_o.jpg", "secret": "4b1bc730a7", "media": "photo", "latitude": "0", "id": "88995896", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:01:58", "license": "1", "title": "Blazeasarabbit", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/88995897_d545ca6f15_o.jpg", "secret": "d545ca6f15", "media": "photo", "latitude": "0", "id": "88995897", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:01:58", "license": "1", "title": "bouqetthrow", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/88995898_d4608b780a_o.jpg", "secret": "d4608b780a", "media": "photo", "latitude": "0", "id": "88995898", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:03:24", "license": "1", "title": "ChrisDouglassJenniferCarolMears", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/88996271_637060e79d_o.jpg", "secret": "637060e79d", "media": "photo", "latitude": "0", "id": "88996271", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:03:24", "license": "1", "title": "DebbieAaronCharlotteAmanda", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/88996272_532aa9b5e4_o.jpg", "secret": "532aa9b5e4", "media": "photo", "latitude": "0", "id": "88996272", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:03:24", "license": "1", "title": "DebMilller", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/88996273_905114e790_o.jpg", "secret": "905114e790", "media": "photo", "latitude": "0", "id": "88996273", "tags": "reception russellville"}, {"datetaken": "2006-01-20 13:03:24", "license": "1", "title": "DennisHillChrisBrown", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/88996274_63e0ea8346_o.jpg", "secret": "63e0ea8346", "media": "photo", "latitude": "0", "id": "88996274", "tags": "reception russellville"}, {"datetaken": "2006-01-20 13:03:24", "license": "1", "title": "DonnyBordenBrad", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/88996275_ae4de517ae_o.jpg", "secret": "ae4de517ae", "media": "photo", "latitude": "0", "id": "88996275", "tags": "reception russellville"}, {"datetaken": "2006-01-20 13:03:24", "license": "1", "title": "JadebehindDevon'sweddingcake", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/88996277_fa7e89dd98_o.jpg", "secret": "fa7e89dd98", "media": "photo", "latitude": "0", "id": "88996277", "tags": "reception russellville"}, {"datetaken": "2006-01-20 13:04:53", "license": "1", "title": "jessica01", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/88996810_18eeb4ee06_o.jpg", "secret": "18eeb4ee06", "media": "photo", "latitude": "0", "id": "88996810", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:04:53", "license": "1", "title": "Jessica02", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/88996811_45d28ebabb_o.jpg", "secret": "45d28ebabb", "media": "photo", "latitude": "0", "id": "88996811", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:04:53", "license": "1", "title": "LindaBishopbehindthegroomscakes", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/88996813_9626645e3e_o.jpg", "secret": "9626645e3e", "media": "photo", "latitude": "0", "id": "88996813", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:04:53", "license": "1", "title": "MargaretandDavideWilkieWillHofpaiur", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/88996814_a004b33da8_o.jpg", "secret": "a004b33da8", "media": "photo", "latitude": "0", "id": "88996814", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:04:53", "license": "1", "title": "MaryJeanReynoldsAuntofJimReynoldsJesicaLindaBishop", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/88996815_d54c10640e_o.jpg", "secret": "d54c10640e", "media": "photo", "latitude": "0", "id": "88996815", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:04:53", "license": "1", "title": "MonaSmithBradHallDebMillerArmetoReynolds", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/88996816_322f7cdde7_o.jpg", "secret": "322f7cdde7", "media": "photo", "latitude": "0", "id": "88996816", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:06:22", "license": "1", "title": "removingthegarter02", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/88997288_a3277638e1_o.jpg", "secret": "a3277638e1", "media": "photo", "latitude": "0", "id": "88997288", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:06:22", "license": "1", "title": "removingthegarter", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/88997289_ece5e0ac46_o.jpg", "secret": "ece5e0ac46", "media": "photo", "latitude": "0", "id": "88997289", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:06:22", "license": "1", "title": "ReneeandWho", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/88997290_9c6b42bafb_o.jpg", "secret": "9c6b42bafb", "media": "photo", "latitude": "0", "id": "88997290", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:06:22", "license": "1", "title": "slingshottingthegarter", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/88997291_3b4e351e0c_o.jpg", "secret": "3b4e351e0c", "media": "photo", "latitude": "0", "id": "88997291", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:06:22", "license": "1", "title": "TaraBlaze", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/88997292_50e4d0d11c_o.jpg", "secret": "50e4d0d11c", "media": "photo", "latitude": "0", "id": "88997292", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:06:22", "license": "1", "title": "throwingthegarter01", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/88997293_c7272c26bf_o.jpg", "secret": "c7272c26bf", "media": "photo", "latitude": "0", "id": "88997293", "tags": "wedding alabama reception russellville"}, {"datetaken": "2006-01-20 13:07:12", "license": "1", "title": "whoSusanJane", "text": "", "album_id": "72057594068837512", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/88997515_fc79983251_o.jpg", "secret": "fc79983251", "media": "photo", "latitude": "0", "id": "88997515", "tags": "wedding alabama reception russellville"}, {"datetaken": "2010-12-30 00:45:31", "license": "1", "title": "Preston (Serious)", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5003/5323042125_c91fe24321_o.jpg", "secret": "39ff01679a", "media": "photo", "latitude": "0", "id": "5323042125", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-30 00:55:04", "license": "1", "title": "Preston (Silly)", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5044/5323630238_40db522da9_o.jpg", "secret": "334a1590bd", "media": "photo", "latitude": "0", "id": "5323630238", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-30 00:57:46", "license": "1", "title": "Greg, Sam, and Josh", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5204/5323026075_0787ecae22_o.jpg", "secret": "80f0396706", "media": "photo", "latitude": "0", "id": "5323026075", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-30 01:36:44", "license": "1", "title": "Buttoning Up", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5128/5323027025_695c6ce70d_o.jpg", "secret": "b98d2b7fb4", "media": "photo", "latitude": "0", "id": "5323027025", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-30 01:37:14", "license": "1", "title": "Wedding Party", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5207/5323632852_897f362946_o.jpg", "secret": "72a1308a16", "media": "photo", "latitude": "0", "id": "5323632852", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-30 02:10:08", "license": "1", "title": "Waiting", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5164/5323043071_f47b6bab6d_o.jpg", "secret": "644c7f8bbe", "media": "photo", "latitude": "0", "id": "5323043071", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-30 02:34:24", "license": "1", "title": "Sam's Parents", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5129/5323031069_0be0b4876f_o.jpg", "secret": "9ebb89ca06", "media": "photo", "latitude": "0", "id": "5323031069", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-30 02:45:25", "license": "1", "title": "The Church", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5122/5323653482_6d30506fb2_o.jpg", "secret": "abdfddb829", "media": "photo", "latitude": "0", "id": "5323653482", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-30 04:45:36", "license": "1", "title": "Reception #1", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5167/5323654602_b5b643acda_o.jpg", "secret": "c5e9d73740", "media": "photo", "latitude": "0", "id": "5323654602", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-30 04:50:37", "license": "1", "title": "Reception #2", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5004/5323655678_73bba42165_o.jpg", "secret": "d3b76bdac6", "media": "photo", "latitude": "0", "id": "5323655678", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-30 05:03:22", "license": "1", "title": "Reception #3", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5290/5323656698_08ea2b45bb_o.jpg", "secret": "f17cb8f1c9", "media": "photo", "latitude": "0", "id": "5323656698", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-30 05:12:47", "license": "1", "title": "Reception #4", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5083/5323052929_06f89a5482_o.jpg", "secret": "7de9cb20f2", "media": "photo", "latitude": "0", "id": "5323052929", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-30 05:13:30", "license": "1", "title": "Reception #5", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5043/5323054279_54f7fce81b_o.jpg", "secret": "e506a49f94", "media": "photo", "latitude": "0", "id": "5323054279", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-30 09:00:34", "license": "1", "title": "Reception #6", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5047/5323660522_6b44ab0d7c_o.jpg", "secret": "c0a8696d86", "media": "photo", "latitude": "0", "id": "5323660522", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-30 09:01:26", "license": "1", "title": "Reception #7", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5241/5323662186_2d9ef4a73c_o.jpg", "secret": "36fc218d34", "media": "photo", "latitude": "0", "id": "5323662186", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-30 09:02:58", "license": "1", "title": "Reception #8", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5121/5323663272_a8005ff863_o.jpg", "secret": "6a4c059b19", "media": "photo", "latitude": "0", "id": "5323663272", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-30 09:03:21", "license": "1", "title": "Reception #9", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5086/5323060453_dc39448a8c_o.jpg", "secret": "627b05a3af", "media": "photo", "latitude": "0", "id": "5323060453", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-30 09:05:13", "license": "1", "title": "Reception #10", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5049/5323062051_42b374ca56_o.jpg", "secret": "48aa13da8d", "media": "photo", "latitude": "0", "id": "5323062051", "tags": "wedding philippines manila samandnasha"}, {"datetaken": "2010-12-31 03:23:34", "license": "1", "title": "Candles #1", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5207/5323667332_4728d8a9d1_o.jpg", "secret": "ea3b6097f3", "media": "photo", "latitude": "0", "id": "5323667332", "tags": "philippines samandnasha"}, {"datetaken": "2010-12-31 07:53:34", "license": "1", "title": "Greg with Horn", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5047/5323083371_18aaebe2c2_o.jpg", "secret": "1f291859f5", "media": "photo", "latitude": "0", "id": "5323083371", "tags": "philippines samandnasha"}, {"datetaken": "2010-12-31 07:53:55", "license": "1", "title": "NYE #1", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5284/5323072299_df7052ba79_o.jpg", "secret": "e63a8af5aa", "media": "photo", "latitude": "0", "id": "5323072299", "tags": "philippines samandnasha"}, {"datetaken": "2010-12-31 07:54:22", "license": "1", "title": "NYE #2", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5048/5323073353_2f0821dceb_o.jpg", "secret": "548aac91c4", "media": "photo", "latitude": "0", "id": "5323073353", "tags": "philippines samandnasha"}, {"datetaken": "2010-12-31 07:55:07", "license": "1", "title": "Candles #2", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5085/5323668176_0d63735772_o.jpg", "secret": "f5f1b36a3d", "media": "photo", "latitude": "0", "id": "5323668176", "tags": "philippines samandnasha"}, {"datetaken": "2010-12-31 08:18:12", "license": "1", "title": "Sam & Nasha", "text": "", "album_id": "72157625619725645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5127/5323678890_8bce38c97f_o.jpg", "secret": "af592b8811", "media": "photo", "latitude": "0", "id": "5323678890", "tags": "philippines samandnasha"}, {"datetaken": "2010-02-05 20:52:42", "license": "1", "title": "The reception venue", "text": "", "album_id": "72157625671844609", "longitude": "-96.097455", "url_o": "https://farm6.staticflickr.com/5124/5345583296_8bcbf6fd69_o.jpg", "secret": "ce13d1ba4d", "media": "photo", "latitude": "30.162685", "id": "5345583296", "tags": "wedding"}, {"datetaken": "2010-02-06 16:26:28", "license": "1", "title": "Someone has to show my brother how to tie his tie.", "text": "", "album_id": "72157625671844609", "longitude": "-96.072381", "url_o": "https://farm6.staticflickr.com/5287/5344973911_beba5a44e1_o.jpg", "secret": "7372e58790", "media": "photo", "latitude": "30.095006", "id": "5344973911", "tags": "wedding scotty"}, {"datetaken": "2010-02-06 16:34:24", "license": "1", "title": "Building courage?", "text": "", "album_id": "72157625671844609", "longitude": "-96.072381", "url_o": "https://farm6.staticflickr.com/5002/5344975579_9f0ffa64f4_o.jpg", "secret": "728c2b67e5", "media": "photo", "latitude": "30.095006", "id": "5344975579", "tags": "wedding scotty"}, {"datetaken": "2010-02-06 16:37:54", "license": "1", "title": "Let's go.", "text": "", "album_id": "72157625671844609", "longitude": "-96.072381", "url_o": "https://farm6.staticflickr.com/5085/5344790579_e9df1acddc_o.jpg", "secret": "2f952e85ed", "media": "photo", "latitude": "30.095006", "id": "5344790579", "tags": "wedding ryan scotty ryanjoy"}, {"datetaken": "2010-02-06 17:09:52", "license": "1", "title": "A little too cool.", "text": "", "album_id": "72157625671844609", "longitude": "-96.072381", "url_o": "https://farm6.staticflickr.com/5284/5345588718_8f580771ac_o.jpg", "secret": "0e824dab3e", "media": "photo", "latitude": "30.095006", "id": "5345588718", "tags": "wedding blackandwhite bw white black monochrome scotty"}, {"datetaken": "2010-02-06 17:18:50", "license": "1", "title": "Looking good, granddaddy.", "text": "", "album_id": "72157625671844609", "longitude": "-96.072381", "url_o": "https://farm6.staticflickr.com/5209/5345406358_b76298f488_o.jpg", "secret": "aa58862787", "media": "photo", "latitude": "30.095006", "id": "5345406358", "tags": "wedding granddaddy jimmyjoy"}, {"datetaken": "2010-02-06 17:18:59", "license": "1", "title": "Seriously, where's the bride?", "text": "", "album_id": "72157625671844609", "longitude": "-96.072381", "url_o": "https://farm6.staticflickr.com/5002/5344797101_0d39e26256_o.jpg", "secret": "7164ea28e7", "media": "photo", "latitude": "30.095006", "id": "5344797101", "tags": "wedding scotty"}, {"datetaken": "2010-02-06 17:23:23", "license": "1", "title": "The ring.", "text": "", "album_id": "72157625671844609", "longitude": "-96.072381", "url_o": "https://farm6.staticflickr.com/5122/5345591252_aeb00274ce_o.jpg", "secret": "f4ba16f3ca", "media": "photo", "latitude": "30.095006", "id": "5345591252", "tags": "wedding ring"}, {"datetaken": "2010-02-06 17:36:05", "license": "1", "title": "Hailey as flower girl", "text": "", "album_id": "72157625671844609", "longitude": "-96.072381", "url_o": "https://farm6.staticflickr.com/5290/5345592942_1bc4e65b74_o.jpg", "secret": "b69f4f8bb7", "media": "photo", "latitude": "30.095006", "id": "5345592942", "tags": "wedding hailey"}, {"datetaken": "2010-02-06 17:36:07", "license": "1", "title": "Hailey as flower girl", "text": "", "album_id": "72157625671844609", "longitude": "-96.072381", "url_o": "https://farm6.staticflickr.com/5250/5344982713_932bc1b272_o.jpg", "secret": "44051dc85e", "media": "photo", "latitude": "30.095006", "id": "5344982713", "tags": "wedding hailey"}, {"datetaken": "2010-02-06 18:00:55", "license": "1", "title": "DJ and Lindsay", "text": "", "album_id": "72157625671844609", "longitude": "-96.072381", "url_o": "https://farm6.staticflickr.com/5168/5344984575_06f01272f0_o.jpg", "secret": "053f725374", "media": "photo", "latitude": "30.095006", "id": "5344984575", "tags": "wedding dj lindsay"}, {"datetaken": "2010-02-06 18:37:56", "license": "1", "title": "Reese!", "text": "", "album_id": "72157625671844609", "longitude": "-96.072381", "url_o": "https://farm6.staticflickr.com/5123/5344986615_b1d030d532_o.jpg", "secret": "c9feb743c4", "media": "photo", "latitude": "30.095006", "id": "5344986615", "tags": "wedding reese"}, {"datetaken": "2010-02-06 19:41:55", "license": "1", "title": ".", "text": "", "album_id": "72157625671844609", "longitude": "-96.097455", "url_o": "https://farm6.staticflickr.com/5287/5345600266_3629ba1f7f_o.jpg", "secret": "c6d9790540", "media": "photo", "latitude": "30.162685", "id": "5345600266", "tags": "wedding melissa scotty"}, {"datetaken": "2010-02-06 19:48:53", "license": "1", "title": "A delicious strawberry.", "text": "", "album_id": "72157625671844609", "longitude": "-96.097455", "url_o": "https://farm6.staticflickr.com/5003/5345410976_111b3b901d_o.jpg", "secret": "764e330b2f", "media": "photo", "latitude": "30.162685", "id": "5345410976", "tags": "wedding tongue strawberry hailey flowergirl licking lickinglips antiqued"}, {"datetaken": "2010-02-06 21:07:32", "license": "1", "title": "Cutting the cake.", "text": "", "album_id": "72157625671844609", "longitude": "-96.097455", "url_o": "https://farm6.staticflickr.com/5244/5344990225_09522a1124_o.jpg", "secret": "af0663c82a", "media": "photo", "latitude": "30.162685", "id": "5344990225", "tags": "wedding cake melissa scotty"}, {"datetaken": "2010-02-06 21:07:41", "license": "1", "title": "Stuffing the faces.", "text": "", "album_id": "72157625671844609", "longitude": "-96.097455", "url_o": "https://farm6.staticflickr.com/5242/5345412964_10e1aab8d9_o.jpg", "secret": "6a5c4b708e", "media": "photo", "latitude": "30.162685", "id": "5345412964", "tags": "wedding cake melissa scotty"}, {"datetaken": "2010-02-06 21:16:53", "license": "1", "title": "Ryan & Jade", "text": "", "album_id": "72157625671844609", "longitude": "-96.097455", "url_o": "https://farm6.staticflickr.com/5085/5345603108_15d17fa43a_o.jpg", "secret": "ebd9919858", "media": "photo", "latitude": "30.162685", "id": "5345603108", "tags": "wedding ryan jade ryanjoy"}, {"datetaken": "2010-02-06 22:31:36", "license": "1", "title": "Mother and daughter.", "text": "", "album_id": "72157625671844609", "longitude": "-96.097455", "url_o": "https://farm6.staticflickr.com/5206/5345605188_af698be8bf_o.jpg", "secret": "48c9b0d509", "media": "photo", "latitude": "30.162685", "id": "5345605188", "tags": "wedding melissa scotty"}, {"datetaken": "2010-02-06 22:31:46", "license": "1", "title": "Cheese!", "text": "", "album_id": "72157625671844609", "longitude": "-96.097455", "url_o": "https://farm6.staticflickr.com/5165/5344994983_d67447a19b_o.jpg", "secret": "4d430b45ba", "media": "photo", "latitude": "30.162685", "id": "5344994983", "tags": "wedding melissa"}, {"datetaken": "2010-02-06 22:35:52", "license": "1", "title": "Cutting a rug.", "text": "", "album_id": "72157625671844609", "longitude": "-96.097455", "url_o": "https://farm6.staticflickr.com/5241/5344995855_3c227ece2d_o.jpg", "secret": "8d60406968", "media": "photo", "latitude": "30.162685", "id": "5344995855", "tags": "wedding dancing melissa scotty"}, {"datetaken": "2010-02-06 22:38:34", "license": "1", "title": "Grandmommy", "text": "", "album_id": "72157625671844609", "longitude": "-96.097455", "url_o": "https://farm6.staticflickr.com/5009/5345609454_589a029667_o.jpg", "secret": "1cbe5cf6ff", "media": "photo", "latitude": "30.162685", "id": "5345609454", "tags": "wedding grandmommy"}, {"datetaken": "2010-02-06 22:45:46", "license": "1", "title": ".", "text": "", "album_id": "72157625671844609", "longitude": "-96.097455", "url_o": "https://farm6.staticflickr.com/5287/5345611580_0a814f1372_o.jpg", "secret": "c649a3bfe8", "media": "photo", "latitude": "30.162685", "id": "5345611580", "tags": "wedding"}, {"datetaken": "2010-02-06 22:46:06", "license": "1", "title": "Holly and Kat", "text": "", "album_id": "72157625671844609", "longitude": "-96.097455", "url_o": "https://farm6.staticflickr.com/5010/5344804219_30b46b4d1d_o.jpg", "secret": "95b0d33025", "media": "photo", "latitude": "30.162685", "id": "5344804219", "tags": "wedding kat holly"}, {"datetaken": "2010-02-06 22:53:45", "license": "1", "title": "My mom and I", "text": "", "album_id": "72157625671844609", "longitude": "-96.097455", "url_o": "https://farm6.staticflickr.com/5129/5345612518_9c1b900622_o.jpg", "secret": "3822de4aec", "media": "photo", "latitude": "30.162685", "id": "5345612518", "tags": "wedding ryan holly ryanjoy"}, {"datetaken": "2009-05-23 17:05:36", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709049", "url_o": "https://farm6.staticflickr.com/5253/5387729589_4c4a5a9e68_o.jpg", "secret": "ff20a1cf40", "media": "photo", "latitude": "36.000863", "id": "5387729589", "tags": "wedding window groom crying meeting arrowspringweddingchapel bykacey"}, {"datetaken": "2009-05-23 17:09:11", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709049", "url_o": "https://farm6.staticflickr.com/5097/5390695905_27719b21a0_o.jpg", "secret": "ec8fd501fd", "media": "photo", "latitude": "36.000863", "id": "5390695905", "tags": "wedding groom bride holdinghands bykacey"}, {"datetaken": "2009-05-23 17:12:18", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709049", "url_o": "https://farm6.staticflickr.com/5018/5387746853_e29dfabdda_o.jpg", "secret": "d1f8d15484", "media": "photo", "latitude": "36.000863", "id": "5387746853", "tags": "wedding window bride secret ringbearer bouquet arrowspringweddingchapel bykacey"}, {"datetaken": "2009-05-23 17:12:42", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709049", "url_o": "https://farm6.staticflickr.com/5014/5388354830_ea3d9f3ff4_o.jpg", "secret": "7634daea97", "media": "photo", "latitude": "36.000863", "id": "5388354830", "tags": "wedding cake layer tier bykacey"}, {"datetaken": "2009-05-23 17:40:23", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709049", "url_o": "https://farm6.staticflickr.com/5219/5387781587_25501487ea_o.jpg", "secret": "25d0932e0b", "media": "photo", "latitude": "36.000863", "id": "5387781587", "tags": "wedding dress guest arrowspringweddingchapel bykacey"}, {"datetaken": "2009-05-23 17:46:36", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709049", "url_o": "https://farm6.staticflickr.com/5178/5387788711_94385f0273_o.jpg", "secret": "d496143e44", "media": "photo", "latitude": "36.000863", "id": "5387788711", "tags": "wedding window bride bridesmaid arrowspringweddingchapel bykacey"}, {"datetaken": "2009-05-23 17:50:51", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709049", "url_o": "https://farm6.staticflickr.com/5217/5387814623_b14f450ac0_o.jpg", "secret": "a63fbe5383", "media": "photo", "latitude": "36.000863", "id": "5387814623", "tags": "wedding table gift guest memorabilia arrowspringweddingchapel bykacey"}, {"datetaken": "2009-05-23 17:52:42", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709049", "url_o": "https://farm6.staticflickr.com/5057/5387820981_a967b0db6e_o.jpg", "secret": "788f54b4be", "media": "photo", "latitude": "36.000863", "id": "5387820981", "tags": "wedding window ringbearer arrowspringweddingchapel bykacey"}, {"datetaken": "2009-05-23 18:04:21", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709049", "url_o": "https://farm6.staticflickr.com/5214/5387963864_1fb65979a0_o.jpg", "secret": "7fb58bcab4", "media": "photo", "latitude": "36.000863", "id": "5387963864", "tags": "wedding pen bride note wisdom bykacey"}, {"datetaken": "2009-05-23 18:37:30", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709049", "url_o": "https://farm6.staticflickr.com/5219/5387391737_e2d028c942_o.jpg", "secret": "057c652d1e", "media": "photo", "latitude": "36.000863", "id": "5387391737", "tags": "lighting wedding window ceremony candelabra arrowspringweddingchapel bykacey"}, {"datetaken": "2009-05-23 18:41:47", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709049", "url_o": "https://farm6.staticflickr.com/5219/5388016250_69e7139f25_o.jpg", "secret": "05a0358ec1", "media": "photo", "latitude": "36.000863", "id": "5388016250", "tags": "wedding window groom ceremony groomsman bestman arrowspringweddingchapel bykacey"}, {"datetaken": "2009-05-23 18:57:54", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709049", "url_o": "https://farm6.staticflickr.com/5217/5387456929_0c1c71bc1e_o.jpg", "secret": "3485901ea9", "media": "photo", "latitude": "36.000863", "id": "5387456929", "tags": "wedding groom bride hand ceremony ring exchange arrowspringweddingchapel bykacey"}, {"datetaken": "2009-05-23 18:58:40", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709049", "url_o": "https://farm6.staticflickr.com/5215/5387460841_5517288b41_o.jpg", "secret": "be0001bbb0", "media": "photo", "latitude": "36.000863", "id": "5387460841", "tags": "wedding groom bride reverend ceremony pastor arrowspringweddingchapel bykacey"}, {"datetaken": "2009-05-23 19:08:16", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709789", "url_o": "https://farm6.staticflickr.com/5212/5387490221_66db8ebc89_o.jpg", "secret": "2e5efc3f2d", "media": "photo", "latitude": "36.000494", "id": "5387490221", "tags": "bridge wedding oklahoma groom bride groomsman bridesmaid arrowspringweddingchapel bykacey"}, {"datetaken": "2009-05-23 19:09:40", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709789", "url_o": "https://farm6.staticflickr.com/5213/5388101552_0b2c7a951c_o.jpg", "secret": "3ffd305cc7", "media": "photo", "latitude": "36.000494", "id": "5388101552", "tags": "bridge wedding oklahoma pond groomsman arrowspringweddingchapel bykacey"}, {"datetaken": "2009-05-23 19:18:58", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709532", "url_o": "https://farm6.staticflickr.com/5213/5387513175_25014359e3_o.jpg", "secret": "a476a026ef", "media": "photo", "latitude": "36.000919", "id": "5387513175", "tags": "wedding laughing groom bride bykacey"}, {"datetaken": "2009-05-23 19:19:09", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709532", "url_o": "https://farm6.staticflickr.com/5215/5387517125_3d30181dc2_o.jpg", "secret": "4c4c3ab734", "media": "photo", "latitude": "36.000919", "id": "5387517125", "tags": "wedding photographer shenanigans bykacey"}, {"datetaken": "2009-05-23 19:42:58", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709049", "url_o": "https://farm6.staticflickr.com/5013/5388146154_f165d2482b_o.jpg", "secret": "e5fd441fef", "media": "photo", "latitude": "36.000863", "id": "5388146154", "tags": "wedding groom bride kissing reception arrowspringweddingchapel bykacey"}, {"datetaken": "2009-05-23 20:38:22", "license": "2", "title": "", "text": "", "album_id": "72157625787545021", "longitude": "-95.709049", "url_o": "https://farm6.staticflickr.com/5214/5387624829_c1890971ba_o.jpg", "secret": "d79e623d46", "media": "photo", "latitude": "36.000863", "id": "5387624829", "tags": "wedding dancing husband reception wife bykacey"}, {"datetaken": "2009-05-23 20:43:46", "license": "2", "title": "More hetero than I look", "text": "", "album_id": "72157625787545021", "longitude": "-95.709049", "url_o": "https://farm6.staticflickr.com/5014/5387644487_cc450c8dd8_o.jpg", "secret": "a78762546d", "media": "photo", "latitude": "36.000863", "id": "5387644487", "tags": "camera wedding photographer reception bykacey"}, {"datetaken": "2009-05-23 20:47:42", "license": "2", "title": "Candles at Dusk", "text": "", "album_id": "72157625787545021", "longitude": "-95.709049", "url_o": "https://farm6.staticflickr.com/5211/5388259680_1a922505c4_o.jpg", "secret": "f47f57c382", "media": "photo", "latitude": "36.000863", "id": "5388259680", "tags": "wedding sunset oklahoma candle arrowspringweddingchapel bykacey"}, {"datetaken": "2010-10-09 17:30:00", "license": "3", "title": "Laura and Hal's Wedding", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5058/5525118172_3b89a1275e_o.jpg", "secret": "4edb97d84c", "media": "photo", "latitude": "0", "id": "5525118172", "tags": "wedding groom bride"}, {"datetaken": "2010-10-09 17:30:01", "license": "3", "title": "Laura and Hal's Wedding", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5212/5524517339_0f3eea550e_o.jpg", "secret": "cf7bf19a4a", "media": "photo", "latitude": "0", "id": "5524517339", "tags": "wedding groom bride"}, {"datetaken": "2010-10-09 17:30:02", "license": "3", "title": "Laura and Hal's Wedding", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5173/5524507143_2f54f7b139_o.jpg", "secret": "d98c36a9c8", "media": "photo", "latitude": "0", "id": "5524507143", "tags": "wedding groom bride"}, {"datetaken": "2010-10-09 17:30:03", "license": "3", "title": "Laura and Hal's Wedding", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5296/5525091630_e468978f24_o.jpg", "secret": "f9d2d03d8e", "media": "photo", "latitude": "0", "id": "5525091630", "tags": "groom bride methodistchurch bridalbouquet"}, {"datetaken": "2010-10-09 17:30:04", "license": "3", "title": "Laura and Hal's Wedding", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5297/5524487081_0d8f5b556f_o.jpg", "secret": "4f73b258e2", "media": "photo", "latitude": "0", "id": "5524487081", "tags": "groom bride kiss bridalbouquet"}, {"datetaken": "2010-10-09 17:30:05", "license": "3", "title": "Laura and Hal's Wedding", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5525072060_357b235a2e_o.jpg", "secret": "356b9560b4", "media": "photo", "latitude": "0", "id": "5525072060", "tags": "wedding"}, {"datetaken": "2010-10-09 17:30:06", "license": "3", "title": "Laura and Hal's Wedding", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5132/5524469755_67e1e92603_o.jpg", "secret": "8033a9734c", "media": "photo", "latitude": "0", "id": "5524469755", "tags": "family wedding"}, {"datetaken": "2010-10-09 17:30:07", "license": "3", "title": "Laura and Hal's Wedding", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5139/5524462511_d41b250e86_o.jpg", "secret": "fcf9dd2cae", "media": "photo", "latitude": "0", "id": "5524462511", "tags": "wedding bride"}, {"datetaken": "2010-10-09 17:30:08", "license": "3", "title": "Laura and Hal's Wedding", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5255/5525044298_954b381689_o.jpg", "secret": "d338384445", "media": "photo", "latitude": "0", "id": "5525044298", "tags": "wedding groom bride weddingbouquets"}, {"datetaken": "2010-10-09 17:30:09", "license": "3", "title": "Laura and Hal's Wedding", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5213/5525028290_4b366e5782_o.jpg", "secret": "afa1237a69", "media": "photo", "latitude": "0", "id": "5525028290", "tags": "wedding weddinggown bridalattendants weddingfloralbouquets"}, {"datetaken": "2010-10-09 17:30:10", "license": "3", "title": "Laura and Hal's Wedding Day 10-9-10", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5219/5525015220_ac2041b4a2_o.jpg", "secret": "cd8eaf8c63", "media": "photo", "latitude": "0", "id": "5525015220", "tags": "wedding groom bride bridalbouquet"}, {"datetaken": "2010-10-09 17:30:11", "license": "3", "title": "Laura and Hal's Wedding", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5058/5524414203_524ef35717_o.jpg", "secret": "76686362ea", "media": "photo", "latitude": "0", "id": "5524414203", "tags": "wedding"}, {"datetaken": "2010-10-09 17:30:12", "license": "3", "title": "Laura and Hal's Wedding Reception", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5176/5524995022_441261b430_o.jpg", "secret": "0e42d32122", "media": "photo", "latitude": "0", "id": "5524995022", "tags": "sunset weddingreception littlerockclub"}, {"datetaken": "2010-10-09 17:30:13", "license": "3", "title": "Laura and Hal's Wedding Reception", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5212/5524981948_a53779a535_o.jpg", "secret": "32c36dca23", "media": "photo", "latitude": "0", "id": "5524981948", "tags": "wedding dance reception"}, {"datetaken": "2010-10-09 17:30:14", "license": "3", "title": "Laura and Hal's Wedding", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5172/5524380665_7289c05a71_o.jpg", "secret": "33cf62374a", "media": "photo", "latitude": "0", "id": "5524380665", "tags": "wedding dance reception"}, {"datetaken": "2010-10-09 17:30:15", "license": "3", "title": "Laura and Hal's Wedding (special-partner dance)", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5093/5524345295_cf0bb250cf_o.jpg", "secret": "07d299cd56", "media": "photo", "latitude": "0", "id": "5524345295", "tags": "dancing weddingreception"}, {"datetaken": "2010-10-09 17:30:16", "license": "3", "title": "Laura and Hal's Wedding Reception", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5176/5524336005_a51fffbbc2_o.jpg", "secret": "bcce5f535a", "media": "photo", "latitude": "0", "id": "5524336005", "tags": "wedding reception"}, {"datetaken": "2010-10-09 17:30:17", "license": "3", "title": "Laura and Hal's Wedding Reception", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5251/5524920306_2c559d3c70_o.jpg", "secret": "053a25e158", "media": "photo", "latitude": "0", "id": "5524920306", "tags": "wedding weddingreception alphadeltapi"}, {"datetaken": "2010-10-09 17:30:18", "license": "3", "title": "Laura and Hal's Wedding Reception", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5294/5524911804_ede2a75300_o.jpg", "secret": "2c9a8bb736", "media": "photo", "latitude": "0", "id": "5524911804", "tags": "wedding weddingreception littlerockclub"}, {"datetaken": "2010-10-09 17:30:20", "license": "3", "title": "Laura and Hal leaving reception at the Little Rock Club", "text": "", "album_id": "72157626260567448", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5020/5524878018_e7624dc1de_o.jpg", "secret": "2cbb12eba8", "media": "photo", "latitude": "0", "id": "5524878018", "tags": "wedding reception littlerockclub"}, {"datetaken": "2011-04-22 14:36:00", "license": "5", "title": "IMG_1760", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5070/5644627090_ddf3a4a6f2_o.jpg", "secret": "c465dbda01", "media": "photo", "latitude": "0", "id": "5644627090", "tags": "wedding dc kate marriage erica courthouse nuptials"}, {"datetaken": "2011-04-22 14:40:26", "license": "5", "title": "IMG_1761", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5146/5644060751_e512d1e604_o.jpg", "secret": "de1374f49c", "media": "photo", "latitude": "0", "id": "5644060751", "tags": "wedding dc kate marriage erica courthouse nuptials"}, {"datetaken": "2011-04-22 14:42:41", "license": "5", "title": "IMG_1768", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5063/5644627194_e5f3ee992a_o.jpg", "secret": "177d9c43d2", "media": "photo", "latitude": "0", "id": "5644627194", "tags": "wedding dc kate marriage erica courthouse nuptials"}, {"datetaken": "2011-04-22 14:43:48", "license": "5", "title": "IMG_1769", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5307/5644060823_dec1e04caf_o.jpg", "secret": "b334bf7708", "media": "photo", "latitude": "0", "id": "5644060823", "tags": "wedding dc kate marriage erica courthouse nuptials"}, {"datetaken": "2011-04-22 14:50:31", "license": "5", "title": "IMG_1771", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5067/5644627318_15515f3a0d_o.jpg", "secret": "9de68a2c4f", "media": "photo", "latitude": "0", "id": "5644627318", "tags": "wedding dc kate marriage erica courthouse nuptials"}, {"datetaken": "2011-04-22 14:54:44", "license": "5", "title": "IMG_1774", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5269/5644627378_98052c3dd1_o.jpg", "secret": "50289c8ffa", "media": "photo", "latitude": "0", "id": "5644627378", "tags": "wedding dc kate marriage erica courthouse nuptials"}, {"datetaken": "2011-04-22 15:13:40", "license": "5", "title": "IMG_1779", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5025/5644061047_77b87da912_o.jpg", "secret": "26fa184717", "media": "photo", "latitude": "0", "id": "5644061047", "tags": "wedding dc kate marriage erica courthouse nuptials"}, {"datetaken": "2011-04-22 19:02:24", "license": "5", "title": "IMG_1780", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5029/5645261354_16eb77ee0b_o.jpg", "secret": "c9df03cec6", "media": "photo", "latitude": "0", "id": "5645261354", "tags": "wedding dinner reception steak demian 316"}, {"datetaken": "2011-04-22 19:34:15", "license": "5", "title": "IMG_1783", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5064/5645261410_3b00f6228b_o.jpg", "secret": "5b7ea0cee3", "media": "photo", "latitude": "0", "id": "5645261410", "tags": "wedding dinner tanya reception 316"}, {"datetaken": "2011-04-22 19:35:29", "license": "5", "title": "IMG_1784", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5068/5644696243_4b7da1a21c_o.jpg", "secret": "0c22dff46e", "media": "photo", "latitude": "0", "id": "5644696243", "tags": "wedding dinner dad reception 316 ceily"}, {"datetaken": "2011-04-22 19:36:54", "license": "5", "title": "IMG_1787", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5149/5644696283_ce87370f9a_o.jpg", "secret": "e2ed513f5c", "media": "photo", "latitude": "0", "id": "5644696283", "tags": "wedding dinner reception demian 316"}, {"datetaken": "2011-04-22 19:38:54", "license": "5", "title": "IMG_1788", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5063/5645261598_54a8ae27da_o.jpg", "secret": "cec2c64242", "media": "photo", "latitude": "0", "id": "5645261598", "tags": "wedding dinner kate reception erica 316"}, {"datetaken": "2011-04-22 19:43:16", "license": "5", "title": "IMG_1789", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5187/5644696393_f9f217eca1_o.jpg", "secret": "71f069be39", "media": "photo", "latitude": "0", "id": "5644696393", "tags": "wedding dinner reception erica demian 316"}, {"datetaken": "2011-04-22 19:53:48", "license": "5", "title": "IMG_1790", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5149/5644696455_735acd4890_o.jpg", "secret": "6640871a2f", "media": "photo", "latitude": "0", "id": "5644696455", "tags": "wedding dinner dad jamie reception demian 316"}, {"datetaken": "2011-04-22 19:56:29", "license": "5", "title": "IMG_1791", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5067/5645261762_d69070458b_o.jpg", "secret": "c69ba2edce", "media": "photo", "latitude": "0", "id": "5645261762", "tags": "wedding dinner jamie kate reception erica 316"}, {"datetaken": "2011-04-22 21:01:49", "license": "5", "title": "IMG_1792", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5110/5644696583_ae21a6dd60_o.jpg", "secret": "86dd36a68b", "media": "photo", "latitude": "0", "id": "5644696583", "tags": "wedding dinner dad kate reception 316"}, {"datetaken": "2011-04-22 21:05:59", "license": "5", "title": "IMG_1796", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5062/5645261892_967bff4ba0_o.jpg", "secret": "4871f4cc1a", "media": "photo", "latitude": "0", "id": "5645261892", "tags": "wedding cake dinner kate reception erica saffron 316"}, {"datetaken": "2011-04-22 21:07:19", "license": "5", "title": "IMG_1802", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5264/5645261924_2c6d7f176f_o.jpg", "secret": "c10674c927", "media": "photo", "latitude": "0", "id": "5645261924", "tags": "wedding dinner kate reception erica saffron saffy 316 ceily"}, {"datetaken": "2011-04-22 22:19:27", "license": "5", "title": "IMG_1804", "text": "", "album_id": "72157626554955140", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5304/5645261970_9e56fedb94_o.jpg", "secret": "472ea0c26e", "media": "photo", "latitude": "0", "id": "5645261970", "tags": "wedding dinner dad reception 316 ceily"}, {"datetaken": "2009-09-28 15:09:01", "license": "3", "title": "kevin", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2496/3964894964_0a5ed1c254_o.jpg", "secret": "6f119e2f02", "media": "photo", "latitude": "0", "id": "3964894964", "tags": ""}, {"datetaken": "2009-09-28 15:09:19", "license": "3", "title": "kevin", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2563/3964895608_71c11f4179_o.jpg", "secret": "f06b88995c", "media": "photo", "latitude": "0", "id": "3964895608", "tags": ""}, {"datetaken": "2009-09-28 15:16:17", "license": "3", "title": "guess who", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2433/3964122323_6b79a37fd3_o.jpg", "secret": "54238e72f5", "media": "photo", "latitude": "0", "id": "3964122323", "tags": ""}, {"datetaken": "2009-09-28 15:16:38", "license": "3", "title": "jason", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2675/3964123295_2f8b428e63_o.jpg", "secret": "3131d96a6f", "media": "photo", "latitude": "0", "id": "3964123295", "tags": ""}, {"datetaken": "2009-09-28 15:16:53", "license": "3", "title": "jason", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3433/3964898592_705e02f407_o.jpg", "secret": "5d791f7f3e", "media": "photo", "latitude": "0", "id": "3964898592", "tags": ""}, {"datetaken": "2009-09-28 15:48:39", "license": "3", "title": "eliza", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3476/3964899624_256b1c6e36_o.jpg", "secret": "e95c54fe97", "media": "photo", "latitude": "0", "id": "3964899624", "tags": ""}, {"datetaken": "2009-09-28 15:48:53", "license": "3", "title": "eliza", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2431/3964901040_74d065aec2_o.jpg", "secret": "70f58d723e", "media": "photo", "latitude": "0", "id": "3964901040", "tags": "yomkippur kramers"}, {"datetaken": "2009-09-28 15:49:26", "license": "3", "title": "jason and eliza", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2649/3964128061_59f0cb0db2_o.jpg", "secret": "9605c75849", "media": "photo", "latitude": "0", "id": "3964128061", "tags": ""}, {"datetaken": "2009-09-28 15:49:30", "license": "3", "title": "eliza and jason", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2665/3964903346_eb9ec5000f_o.jpg", "secret": "f5b16bd5e6", "media": "photo", "latitude": "0", "id": "3964903346", "tags": ""}, {"datetaken": "2009-09-28 15:55:40", "license": "3", "title": "eliza", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2601/3964130459_a53ee55798_o.jpg", "secret": "1495ce9f88", "media": "photo", "latitude": "0", "id": "3964130459", "tags": ""}, {"datetaken": "2009-09-28 15:57:42", "license": "3", "title": "dad", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2561/3964131433_f6e3c7a79d_o.jpg", "secret": "a6f8ff34a6", "media": "photo", "latitude": "0", "id": "3964131433", "tags": ""}, {"datetaken": "2009-09-28 15:57:57", "license": "3", "title": "carly -- awesome t-shirt", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3489/3964906610_a241556795_o.jpg", "secret": "63c5938d1a", "media": "photo", "latitude": "0", "id": "3964906610", "tags": ""}, {"datetaken": "2009-09-28 15:58:02", "license": "3", "title": "carly", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2464/3964907782_49601164d8_o.jpg", "secret": "f6979b5322", "media": "photo", "latitude": "0", "id": "3964907782", "tags": ""}, {"datetaken": "2009-09-28 15:59:30", "license": "3", "title": "alan and eliza", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2504/3964134873_a042f9c690_o.jpg", "secret": "1685c412d4", "media": "photo", "latitude": "0", "id": "3964134873", "tags": ""}, {"datetaken": "2009-09-28 16:00:20", "license": "3", "title": "david and jason", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2643/3964136085_161aace6f6_o.jpg", "secret": "01d39af273", "media": "photo", "latitude": "0", "id": "3964136085", "tags": ""}, {"datetaken": "2009-09-28 16:02:26", "license": "3", "title": "mason and eliza", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3444/3964137101_7b23aed3cb_o.jpg", "secret": "79c95ee092", "media": "photo", "latitude": "0", "id": "3964137101", "tags": ""}, {"datetaken": "2009-09-28 16:36:27", "license": "3", "title": "dad and carly", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2568/3964138123_3bfddc3bf2_o.jpg", "secret": "973722ee3a", "media": "photo", "latitude": "0", "id": "3964138123", "tags": ""}, {"datetaken": "2009-09-28 16:37:00", "license": "3", "title": "eliza", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3500/3964913080_6905edca8d_o.jpg", "secret": "687afed155", "media": "photo", "latitude": "0", "id": "3964913080", "tags": ""}, {"datetaken": "2009-09-28 16:47:16", "license": "3", "title": "blueberry pie, destroyed", "text": "", "album_id": "72157622352867975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2540/3964914240_544157d3e7_o.jpg", "secret": "2165650725", "media": "photo", "latitude": "0", "id": "3964914240", "tags": ""}, {"datetaken": "2011-10-08 17:05:13", "license": "1", "title": "Bill McKibben speaks at Occupy Wall Street in Washington Square", "text": "", "album_id": "72157627860505746", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6120/6230428074_89c170b85a_o.jpg", "secret": "e1b4b80b43", "media": "photo", "latitude": "0", "id": "6230428074", "tags": "square washington ows occupywallstreet occupywallst"}, {"datetaken": "2011-10-08 17:05:41", "license": "1", "title": "Act for Change: Close your bank account, move the money", "text": "", "album_id": "72157627860505746", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6052/6230428362_026cd93a92_o.jpg", "secret": "9f85ff2bcb", "media": "photo", "latitude": "0", "id": "6230428362", "tags": "square washington ows occupywallstreet occupywallst"}, {"datetaken": "2011-10-08 17:10:07", "license": "1", "title": "Crowd at People's Soapbox repeating speaker so they can be heard", "text": "", "album_id": "72157627860505746", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6216/6230428604_9ab1f0eb9b_o.jpg", "secret": "c2282e0a01", "media": "photo", "latitude": "0", "id": "6230428604", "tags": "square washington ows occupywallstreet occupywallst"}, {"datetaken": "2011-10-08 17:15:06", "license": "1", "title": "Speaker at Soapbox, Occupy Wall Street in Washington Square", "text": "", "album_id": "72157627860505746", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6051/6230428878_60fbe5c7ef_o.jpg", "secret": "71cb6978a4", "media": "photo", "latitude": "0", "id": "6230428878", "tags": "square washington ows occupywallstreet occupywallst"}, {"datetaken": "2011-10-08 17:16:02", "license": "1", "title": "Speaker at Soapbox, Occupy Wall Street in Washington Square", "text": "", "album_id": "72157627860505746", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6212/6230429172_b42a349201_o.jpg", "secret": "2319eef048", "media": "photo", "latitude": "0", "id": "6230429172", "tags": "square washington ows occupywallstreet occupywallst"}, {"datetaken": "2011-10-08 17:22:16", "license": "1", "title": "People raise their hands in support during soapbox event", "text": "", "album_id": "72157627860505746", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6213/6230429502_00bb40498d_o.jpg", "secret": "73f18c11aa", "media": "photo", "latitude": "0", "id": "6230429502", "tags": "square washington ows occupywallstreet occupywallst"}, {"datetaken": "2011-10-08 17:28:22", "license": "1", "title": "Speaker at Soapbox, Occupy Wall Street in Washington Square", "text": "", "album_id": "72157627860505746", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6218/6229911693_6951b27806_o.jpg", "secret": "e609b06102", "media": "photo", "latitude": "0", "id": "6229911693", "tags": "square washington ows occupywallstreet occupywallst"}, {"datetaken": "2011-10-08 17:28:38", "license": "1", "title": "Speaker at Soapbox with Campaign Finance Reform sign", "text": "", "album_id": "72157627860505746", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6037/6229911981_6a64f6e53c_o.jpg", "secret": "6a6a8d9afb", "media": "photo", "latitude": "0", "id": "6229911981", "tags": "square washington ows occupywallstreet occupywallst"}, {"datetaken": "2011-10-08 17:28:53", "license": "1", "title": "Speaker at Soapbox, Occupy Wall Street in Washington Square", "text": "", "album_id": "72157627860505746", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6215/6229912241_7ab4c77b28_o.jpg", "secret": "7cec80f56d", "media": "photo", "latitude": "0", "id": "6229912241", "tags": "square washington ows occupywallstreet occupywallst"}, {"datetaken": "2011-10-08 17:29:44", "license": "1", "title": "Speaker: We are the real original republicans", "text": "", "album_id": "72157627860505746", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6160/6230430734_059240c664_o.jpg", "secret": "949311538d", "media": "photo", "latitude": "0", "id": "6230430734", "tags": "square washington ows occupywallstreet occupywallst"}, {"datetaken": "2011-10-08 17:30:46", "license": "1", "title": "Speaker at people's soapbox", "text": "", "album_id": "72157627860505746", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6215/6229912911_91032c03f9_o.jpg", "secret": "51e41a98e3", "media": "photo", "latitude": "0", "id": "6229912911", "tags": "square washington ows occupywallstreet occupywallst"}, {"datetaken": "2011-10-08 17:30:53", "license": "1", "title": "Speaker at people's soapbox", "text": "", "album_id": "72157627860505746", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6214/6230431408_b47f015a8e_o.jpg", "secret": "e6d059ee92", "media": "photo", "latitude": "0", "id": "6230431408", "tags": "square washington ows occupywallstreet occupywallst"}, {"datetaken": "2011-10-06 17:33:49", "license": "4", "title": "IMG_0777", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6215/6230553392_71ac637329_o.jpg", "secret": "679eaf1980", "media": "photo", "latitude": "0", "id": "6230553392", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:34:12", "license": "4", "title": "IMG_0778", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6172/6230553630_33ff76a043_o.jpg", "secret": "8102203e1e", "media": "photo", "latitude": "0", "id": "6230553630", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:34:24", "license": "4", "title": "IMG_0779", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6153/6230035041_0793faa2e4_o.jpg", "secret": "ef8dd570c9", "media": "photo", "latitude": "0", "id": "6230035041", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:34:50", "license": "4", "title": "IMG_0780", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6032/6230554060_e9ce5ca53e_o.jpg", "secret": "0341f25ecd", "media": "photo", "latitude": "0", "id": "6230554060", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:36:39", "license": "4", "title": "IMG_0782", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6112/6230554250_5e228dcc39_o.jpg", "secret": "e8cd06b316", "media": "photo", "latitude": "0", "id": "6230554250", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:36:52", "license": "4", "title": "IMG_0783", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6175/6230035627_d58ffa8f6d_o.jpg", "secret": "679465006a", "media": "photo", "latitude": "0", "id": "6230035627", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:37:14", "license": "4", "title": "IMG_0784", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6092/6230035867_d4f05abb6a_o.jpg", "secret": "38f8d4fcf0", "media": "photo", "latitude": "0", "id": "6230035867", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:37:22", "license": "4", "title": "IMG_0785", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6171/6230554976_d079925592_o.jpg", "secret": "90582db060", "media": "photo", "latitude": "0", "id": "6230554976", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:37:33", "license": "4", "title": "IMG_0786", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6233/6230555210_a1cde8b64a_o.jpg", "secret": "56f06260ac", "media": "photo", "latitude": "0", "id": "6230555210", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:37:41", "license": "4", "title": "IMG_0787", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6213/6230036549_1a4be7d1df_o.jpg", "secret": "3d65ca8170", "media": "photo", "latitude": "0", "id": "6230036549", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:38:14", "license": "4", "title": "IMG_0788", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6233/6230036845_10065aa8b7_o.jpg", "secret": "c7e1618ac4", "media": "photo", "latitude": "0", "id": "6230036845", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:38:19", "license": "4", "title": "IMG_0789", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6049/6230556008_49c25c34f7_o.jpg", "secret": "34891e7348", "media": "photo", "latitude": "0", "id": "6230556008", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:38:59", "license": "4", "title": "IMG_0791", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6045/6230556408_84e2331af8_o.jpg", "secret": "3a88d112a9", "media": "photo", "latitude": "0", "id": "6230556408", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:39:11", "license": "4", "title": "IMG_0792", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6105/6230037779_9494216df9_o.jpg", "secret": "35a4cf9d95", "media": "photo", "latitude": "0", "id": "6230037779", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:39:43", "license": "4", "title": "IMG_0793", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6154/6230038047_416c69453b_o.jpg", "secret": "b84aebf887", "media": "photo", "latitude": "0", "id": "6230038047", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:40:05", "license": "4", "title": "IMG_0794", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6112/6230038265_c01193b941_o.jpg", "secret": "0300552bb7", "media": "photo", "latitude": "0", "id": "6230038265", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:40:14", "license": "4", "title": "IMG_0795", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6118/6230557394_c8dd7a99b3_o.jpg", "secret": "c123b8fd0c", "media": "photo", "latitude": "0", "id": "6230557394", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:40:50", "license": "4", "title": "IMG_0796", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6233/6230557600_30b0a2c3b0_o.jpg", "secret": "ebc3de697a", "media": "photo", "latitude": "0", "id": "6230557600", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:42:59", "license": "4", "title": "IMG_0798", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6214/6230038939_acc0c3297a_o.jpg", "secret": "14fcd8e8f8", "media": "photo", "latitude": "0", "id": "6230038939", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 17:59:04", "license": "4", "title": "IMG_0802", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6113/6230558150_724a0a81f4_o.jpg", "secret": "03b9af8672", "media": "photo", "latitude": "0", "id": "6230558150", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 18:04:57", "license": "4", "title": "IMG_0803", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6120/6230558398_1bd82089e2_o.jpg", "secret": "4cf41639be", "media": "photo", "latitude": "0", "id": "6230558398", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 18:26:54", "license": "4", "title": "IMG_0807", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6091/6230558644_e02d9e627c_o.jpg", "secret": "1a1714e978", "media": "photo", "latitude": "0", "id": "6230558644", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 18:27:00", "license": "4", "title": "IMG_0808", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6179/6230558902_bce2423800_o.jpg", "secret": "aa6111c813", "media": "photo", "latitude": "0", "id": "6230558902", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 18:27:12", "license": "4", "title": "IMG_0809", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6060/6230559206_9fa5fee7da_o.jpg", "secret": "603f2d50d7", "media": "photo", "latitude": "0", "id": "6230559206", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 18:27:23", "license": "4", "title": "IMG_0810", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6112/6230559424_5ff83dd29b_o.jpg", "secret": "1de80233c8", "media": "photo", "latitude": "0", "id": "6230559424", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 18:27:30", "license": "4", "title": "IMG_0811", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6224/6230559650_554276f191_o.jpg", "secret": "f8ebccfbca", "media": "photo", "latitude": "0", "id": "6230559650", "tags": "boston yomkippur kol occupy nidre occupyboston"}, {"datetaken": "2011-10-06 18:27:39", "license": "4", "title": "IMG_0812", "text": "", "album_id": "72157627860827386", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6167/6230559860_b9c169ae9c_o.jpg", "secret": "974de35671", "media": "photo", "latitude": "0", "id": "6230559860", "tags": "boston yomkippur kol occupy nidre occupyboston"}], "info": "SIND v1.0", "albums": [{"description": "I left Stevenage over twenty years ago, having lived there between the ages of 7 and 20. Yesterday (on International Buy Nothing Day!) we returned for a 'Victorian Craft Fair' in the Church above the town Museum. Very strange...", "title": "A trip to Stevenage", "farm": "1", "date_update": "1396811566", "primary": "1741611", "server": "2", "date_create": "44277", "photos": "23", "secret": "3f374c96e5", "owner": "37996585435@N01", "vist_label": "fair", "id": "44277"}, {"description": "Our visit on September 6th with Mary, Gil, and Diego.", "title": "Albemarle County Fair, 2004", "farm": "1", "date_update": "1397505294", "primary": "355132", "server": "1", "date_create": "8139", "photos": "14", "secret": "ea2d93502d", "owner": "36221226@N00", "vist_label": "fair", "id": "8139"}, {"description": "Wired magazine presented a three day festival inspired by the old World's Fairs. Showcasing innovations in design, communication, exploration, health, security and transportation. Visit nextfest.net for more information.", "title": "NextFest 2005 | Chicago, IL", "farm": "1", "date_update": "1296162196", "primary": "21734444", "server": "16", "date_create": "504823", "photos": "20", "secret": "25409710eb", "owner": "20888056@N00", "vist_label": "fair", "id": "504823"}, {"description": "Photo's from Father's Day 2008 at Tread, Wangaratta", "title": "Father's Day 2008", "farm": "4", "date_update": "1306981520", "primary": "2835931462", "server": "3010", "date_create": "1220783782", "photos": "19", "secret": "fa6c97bfe2", "owner": "50148267@N00", "vist_label": "father's_day", "id": "72157607155047588"}, {"description": "", "title": "Families", "farm": "4", "date_update": "1297164562", "primary": "2486744020", "server": "3246", "date_create": "1210602878", "photos": "11", "secret": "f68d7c6cc3", "owner": "26496653@N07", "vist_label": "father's_day", "id": "72157605016116512"}, {"description": "Fathers Day 2014", "title": "Houston Astros", "farm": "3", "date_update": "1402857982", "primary": "14236654939", "server": "2924", "date_create": "1402857980", "photos": "21", "secret": "8f5a91a4fe", "owner": "8359621@N08", "vist_label": "father's_day", "id": "72157644777317969"}, {"description": "photos from an early morning father's day bike ride with jake", "title": "Father's Day Bike Ride with Jake", "farm": "4", "date_update": "1297280350", "primary": "2582414024", "server": "3012", "date_create": "1213574286", "photos": "16", "secret": "8f1eea1bc5", "owner": "78266179@N00", "vist_label": "father's_day", "id": "72157605629519358"}, {"description": "", "title": "Father's Day 2008, New Hampshire", "farm": "4", "date_update": "1306504450", "primary": "2581558638", "server": "3091", "date_create": "1213556319", "photos": "26", "secret": "9c7d3b2248", "owner": "59451747@N00", "vist_label": "father's_day", "id": "72157605630785895"}, {"description": "Kites Over Silver Lake: First Annual Father's Day Kite Festival & Concert!\n\n'Kites over Silver Lake' begins at Noon on Sunday June 17th at the Bellevue Recreation Center Park, 826 Lucile Avenue in Silver Lake with a full afternoon of Kites, including the Kite Fest & Concert, kite demos, kite hospital, kite store and international food booths. Join in the fun!\n\nFor more information, please visit the Silver Lake Neighborhood Council website (see link below) or send us an email.\n\nWebsite: \nwww.SilverLakeNC.org\n\nEmail: \nArts@Silverlakenc.org", "title": "KITES OVER SILVER LAKE 2008", "farm": "4", "date_update": "1436303571", "primary": "2582214197", "server": "3097", "date_create": "1213586955", "photos": "26", "secret": "9469cbdde4", "owner": "76611741@N00", "vist_label": "father's_day", "id": "72157605638688643"}, {"description": "June, 2008. With Blake, Kenneth, Margaret, Ben, and Brad.", "title": "Outstanding in the Field II", "farm": "4", "date_update": "1356489859", "primary": "2582587409", "server": "3081", "date_create": "1213597156", "photos": "27", "secret": "d5e37fe12f", "owner": "51035767928@N01", "vist_label": "father's_day", "id": "72157605635232532"}, {"description": "", "title": "Crabs and Dads 2014", "farm": "4", "date_update": "1403190337", "primary": "14428427866", "server": "3886", "date_create": "1403100208", "photos": "21", "secret": "08233cc1fc", "owner": "94608875@N00", "vist_label": "father's_day", "id": "72157644824250557"}, {"description": "", "title": "McKinley County, New Mexico", "farm": "6", "date_update": "1430585572", "primary": "5271438744", "server": "5283", "date_create": "1292686204", "photos": "30", "secret": "ef04a75d72", "owner": "75683070@N00", "vist_label": "father's_day", "id": "72157625498117651"}, {"description": "", "title": "Matt's First Father's Day", "farm": "4", "date_update": "1403629815", "primary": "5853773690", "server": "3144", "date_create": "1308594245", "photos": "11", "secret": "3a547ca775", "owner": "25332670@N07", "vist_label": "father's_day", "id": "72157626882487487"}, {"description": "Annual Texas State Society Father's Day Picnic and softball game. My Texas Exes team was the defending champs but we sucked it up this year and lost two games right away to be eliminated. It wasn't so bad because we actually got to enjoy the rest of the picnic for a change!", "title": "TSS Father's Day Picnic, 06.15.08", "farm": "4", "date_update": "1400368738", "primary": "2688787325", "server": "3226", "date_create": "1216698261", "photos": "15", "secret": "425c02151b", "owner": "49503010187@N01", "vist_label": "father's_day", "id": "72157606307817709"}, {"description": "'Tis the season to be with family and that's just what Cheryl and I did", "title": "Christmas 2008", "farm": "4", "date_update": "1356145178", "primary": "3144651580", "server": "3102", "date_create": "1230483233", "photos": "13", "secret": "b571177bb9", "owner": "56296827@N00", "vist_label": "father's_day", "id": "72157611736381187"}, {"description": "", "title": "2007 Father's Day Run", "farm": "3", "date_update": "1387603568", "primary": "1803115294", "server": "2108", "date_create": "1193728009", "photos": "12", "secret": "14edc8de7f", "owner": "12982579@N00", "vist_label": "father's_day", "id": "72157602795343231"}, {"description": "The Bridgeport Bluefish host the Long Island Ducks on Father's Day 2005. Ryan Caldwell of the Bridgeport Sound Tigers throws out the first pitch with other Tigers in attendance on the field. The Ducks have John Rocker and Pete Rose Jr. playing on their team.", "title": "Bluefish vs LI Ducks", "farm": "1", "date_update": "1436888138", "primary": "20361829", "server": "16", "date_create": "475747", "photos": "21", "secret": "7966bff928", "owner": "95251552@N00", "vist_label": "father's_day", "id": "475747"}, {"description": "I went fishing with Uncle Edmund and Dad for this Father's Day.", "title": "Father's Day 2005", "farm": "1", "date_update": "1358881452", "primary": "20389936", "server": "17", "date_create": "476170", "photos": "13", "secret": "e2c562db0c", "owner": "50642338@N00", "vist_label": "father's_day", "id": "476170"}, {"description": "Five years in Seattle and I'd never actually made it to Alki. The people weren't especially interesting, I admit, but the beach at low tide was fascinating. 6/19/05", "title": "Alki 6/19/05", "farm": "1", "date_update": "1428386691", "primary": "20403457", "server": "16", "date_create": "476406", "photos": "45", "secret": "5b87ae0f89", "owner": "61565201@N00", "vist_label": "father's_day", "id": "476406"}, {"description": "We went on a trip to the mountains. Maybe NATURE?", "title": "Father's Day Crags Trip", "farm": "1", "date_update": "1366676872", "primary": "29209380", "server": "22", "date_create": "657659", "photos": "24", "secret": "1863ce7d12", "owner": "49953296@N00", "vist_label": "father's_day", "id": "657659"}, {"description": "", "title": "Fathers Day 2006", "farm": "1", "date_update": "1330977602", "primary": "171285527", "server": "73", "date_create": "1150813532", "photos": "25", "secret": "b2a4d817d1", "owner": "15876446@N00", "vist_label": "father's_day", "id": "72157594171854007"}, {"description": "Father's Day was celebrated with a famous Berkowitz Barbecue. Lisa's Uncle Bob and Aunt Barbara (Grauntie and Gruncle, to Max, short for "great aunt" and "great uncle") have been cooking out just about every weekend between April and November since somewhere around 1978. They are consummate barbecuers.", "title": "Father's Day '06", "farm": "1", "date_update": "1301334816", "primary": "171270427", "server": "53", "date_create": "1150812156", "photos": "38", "secret": "32b4e383a9", "owner": "91115398@N00", "vist_label": "father's_day", "id": "72157594171836398"}, {"description": "Boston Red Sox host the San Fransisco Giants. Game score final Red Sox 1, Giants 0.", "title": "Giants v. Sox - June 16", "farm": "2", "date_update": "1309976644", "primary": "558752000", "server": "1342", "date_create": "1182052576", "photos": "20", "secret": "1ca0eb9252", "owner": "22448072@N00", "vist_label": "father's_day", "id": "72157600377471472"}, {"description": "At the zoo again!", "title": "Father's Day 2007", "farm": "2", "date_update": "1303451545", "primary": "562598998", "server": "1405", "date_create": "1182135097", "photos": "44", "secret": "fea738e950", "owner": "69024677@N00", "vist_label": "father's_day", "id": "72157600385894248"}, {"description": "", "title": "Father's Day @ Fenway 6/17/07", "farm": "2", "date_update": "1375214725", "primary": "562371920", "server": "1437", "date_create": "1182186311", "photos": "48", "secret": "60fca84692", "owner": "32147751@N00", "vist_label": "father's_day", "id": "72157600391908265"}, {"description": "", "title": "Portland International Rose Test Garden", "farm": "2", "date_update": "1356397912", "primary": "563266319", "server": "1296", "date_create": "1182140446", "photos": "23", "secret": "1034a3167a", "owner": "82938686@N00", "vist_label": "father's_day", "id": "72157600386539756"}, {"description": "", "title": "Fathers Day 2007", "farm": "2", "date_update": "1356462334", "primary": "569833985", "server": "1146", "date_create": "1182629346", "photos": "24", "secret": "c6b70157f5", "owner": "18779909@N00", "vist_label": "father's_day", "id": "72157600452998161"}, {"description": "Black & white and redscale 35mm film portraits taken at Page & Brian's Memorial Day cookout.", "title": "Memorial Day Cookout 20080526", "farm": "3", "date_update": "1356716253", "primary": "2573144781", "server": "2192", "date_create": "1213304398", "photos": "10", "secret": "2d52957434", "owner": "81412402@N00", "vist_label": "father's_day", "id": "72157605576271182"}, {"description": "The Manor", "title": "Father's Day", "farm": "4", "date_update": "1298348734", "primary": "2590298622", "server": "3037", "date_create": "1213798414", "photos": "13", "secret": "b7cd35fdca", "owner": "84462271@N00", "vist_label": "father's_day", "id": "72157605678623604"}, {"description": "", "title": "Father's Day 2008", "farm": "4", "date_update": "1301297536", "primary": "2645030050", "server": "3080", "date_create": "1215402560", "photos": "14", "secret": "3e149f3ab4", "owner": "11777792@N06", "vist_label": "father's_day", "id": "72157606020232086"}, {"description": "", "title": "Chile 1999 - Chiloe", "farm": "4", "date_update": "1437086476", "primary": "3395969026", "server": "3652", "date_create": "1259365095", "photos": "17", "secret": "3dac94e19f", "owner": "33037982@N04", "vist_label": "father's_day", "id": "72157622888449176"}, {"description": "We invited kids to come in and draw and paint designs for their Dad for Father's Day. All designs will be printed using a DTG printer! ", "title": "Father's Day Event", "farm": "4", "date_update": "1296664801", "primary": "3618295444", "server": "3641", "date_create": "1244764988", "photos": "13", "secret": "1b2303770f", "owner": "13663811@N03", "vist_label": "father's_day", "id": "72157619615714924"}, {"description": "06.13.09 \n\nBarnum and Tibbets Restaurant\nPhotos courtesy of Paul Collins III", "title": "Graduation/Father's Day Dinner", "farm": "4", "date_update": "1356156100", "primary": "3641390735", "server": "3417", "date_create": "1245442143", "photos": "14", "secret": "8c8fed198c", "owner": "59451139@N00", "vist_label": "father's_day", "id": "72157619880943327"}, {"description": "This is the first parade of the 2009 season for the Mukwonago High School Marching Band.", "title": "2009 Father's Day parade", "farm": "4", "date_update": "1306198051", "primary": "3647844488", "server": "3306", "date_create": "1245608868", "photos": "27", "secret": "bc55330646", "owner": "12229484@N02", "vist_label": "father's_day", "id": "72157620102507052"}, {"description": "First day of vacation. Went to Houston early for our flight to Grand Cayman", "title": "DILO - June 21, 2009 - Summer Solstice", "farm": "4", "date_update": "1419458141", "primary": "3653088450", "server": "3631", "date_create": "1245730339", "photos": "23", "secret": "1ff0841d34", "owner": "90908304@N00", "vist_label": "father's_day", "id": "72157620318549638"}, {"description": "We had to be in Bend on Saturday and Roseburg on Tuesday. Here's what happened in between.", "title": "Oregon-California", "farm": "4", "date_update": "1357157098", "primary": "5865040475", "server": "3255", "date_create": "1308887246", "photos": "30", "secret": "775b00e2ae", "owner": "37081933@N00", "vist_label": "father's_day", "id": "72157627033774424"}, {"description": "Following on from a Backpacker's Club meet held last November when six of us made the ascent of Great Gable to attend the annual Fell & Rock Climbing Club ceremony of remembrance, I decided to repeat the exercise and accordingly notified the Chapel House Farm Campsite and the Riverside Bar at the Scafell Hotel in Rosthwaite to be on standby. Alas the anticipated rush failed to materialise as four of the seven potential attendees failed to show for their legitimate and various reasons. However it is well kent that apart from toga-parties there is not necessarily a strong correlation between the numbers taking part and the pleasure that might reasonably be anticipated from joining-in. and so it was it was with our small, perfectly formed yet well-matched trio. \nSaturday saw us on the fells above Honister and on Sunday we joined the throng and made our way to Great Gable. And good it was too.", "title": "BPC REMEMBRANCE", "farm": "9", "date_update": "1356209512", "primary": "8193544482", "server": "8068", "date_create": "1353332728", "photos": "13", "secret": "1205e0b348", "owner": "8521690@N02", "vist_label": "father's_day", "id": "72157632050169766"}, {"description": "Happy Father's Day at La Vi\u00f1a.", "title": "Father's Day 2013", "farm": "3", "date_update": "1371220148", "primary": "9042867800", "server": "2840", "date_create": "1371220133", "photos": "11", "secret": "2b04d52295", "owner": "86437982@N06", "vist_label": "father's_day", "id": "72157634119717615"}, {"description": "A Day at Canyon Lake", "title": "Father's Day 2013", "farm": "3", "date_update": "1371479547", "primary": "9066138117", "server": "2881", "date_create": "1371479048", "photos": "12", "secret": "90230c7954", "owner": "72281412@N00", "vist_label": "father's_day", "id": "72157634173512359"}, {"description": "", "title": "Father's Day Bowling", "farm": "8", "date_update": "1395795364", "primary": "13277281773", "server": "7419", "date_create": "1395273987", "photos": "27", "secret": "81cc497ece", "owner": "23670216@N07", "vist_label": "father's_day", "id": "72157642613907305"}, {"description": "I'm a beer guy. I don't typically like whiskey. But when in Rome...\n\nThis tour was very educational and fun. At the end, when we were permitted to sample two types of their whiskey products, I genuinely enjoyed the Buffalo Trace and their single-barrel version (will have to look up the name and place here.) We were also informed that in Kentucky, dessert don't count, so we were given a sample of their creme liquor, which was also delicious. When added to their root beer, I found a new favorite treat.", "title": "Buffalo Trace Distillery Tour", "farm": "4", "date_update": "1434809534", "primary": "18366117233", "server": "3760", "date_create": "1434809462", "photos": "11", "secret": "b6b7a8143e", "owner": "42328960@N00", "vist_label": "father's_day", "id": "72157652488541824"}, {"description": "", "title": "PP1 Spring 2014 - Milton Justice", "farm": "8", "date_update": "1432947269", "primary": "18248989055", "server": "7738", "date_create": "1432946747", "photos": "24", "secret": "372b9fc6b9", "owner": "85516974@N06", "vist_label": "father's_day", "id": "72157653264010600"}, {"description": "", "title": "Father's Day 2015", "farm": "1", "date_update": "1434974122", "primary": "19040336671", "server": "317", "date_create": "1434974022", "photos": "27", "secret": "1372e98fdd", "owner": "52900873@N07", "vist_label": "father's_day", "id": "72157654848618716"}, {"description": "", "title": "Father's Day 5K 2015", "farm": "1", "date_update": "1434994601", "primary": "18871609848", "server": "557", "date_create": "1434993342", "photos": "24", "secret": "de052dac52", "owner": "45813625@N05", "vist_label": "father's_day", "id": "72157654923602631"}, {"description": "", "title": "Day 3 - Tinkering School 2007 Juniors", "farm": "2", "date_update": "1297340462", "primary": "982297772", "server": "1402", "date_create": "1186033077", "photos": "30", "secret": "7577b942a3", "owner": "23769389@N00", "vist_label": "first_day_of_school", "id": "72157601163302429"}, {"description": "Svaneti (Suania in ancient sources) (Georgian: \u10e1\u10d5\u10d0\u10dc\u10d4\u10d7\u10d8 Svaneti) is a historic province in Georgia, in the northwestern part of the country. It is inhabited by the Svans, a geographic subgroup of the Georgians.\nGeography\nThe historic region of Upper Svaneti in Georgia.\nThe historic region of Lower Svaneti in Georgia.\nSurrounded by 3,000\u20135,000 meter peaks, Svaneti is the highest inhabited area in the Caucasus. Four of the 10 highest peaks of the Caucasus are located in the region. The highest mountain in Georgia, Mount Shkhara at 5,201 meters (17,059 feet), is located in the province. Prominent peaks include Tetnuldi (4,974m./16,319 ft.), Shota Rustaveli (4,960m./16,273 ft.), Mt. Ushba (4,710m./15,453 ft.), Ailama (4,525m./14,842 ft.), as well as Lalveri, Latsga and others.\nSituated on the southern slopes of the central Greater Caucasus, Svaneti extends over the upper valleys of the Rioni, Enguri and Tskhenistskali. Geographically and historically, the province has been divided into two parts\u2014Upper Svaneti (Zemo Svaneti; the present day Mestia Raioni) and Lower Svaneti (Kvemo Svaneti; the present day Lentekhi Raioni)\u2014centering on the valleys of the upper reaches of the two rivers Enguri and Cxenis-c\u2019q\u2019ali, respectively. They are distributed between the present-day regions of Samegrelo-Zemo Svaneti and Racha-Lechkhumi and Kvemo Svaneti respectively. Historical Svaneti also included the Kodori Gorge in the adjoining rebel province of Abkhazia, and part of the adjacent river valleys of Kuban and Baksan of Russia.", "title": "Svaneti", "farm": "2", "date_update": "1356158704", "primary": "5138417277", "server": "1112", "date_create": "1288677238", "photos": "28", "secret": "bbc1da6d42", "owner": "28163325@N07", "vist_label": "first_day_of_school", "id": "72157625294515830"}, {"description": "The Dr. and Mrs. Edwin F. Weaver, III Historical Dental Museum at the Temple University School of Dentistry in Philadelphia, PA", "title": "Dental Museum", "farm": "5", "date_update": "1340823913", "primary": "4330182645", "server": "4065", "date_create": "1265309738", "photos": "23", "secret": "2a45ee5849", "owner": "7955505@N05", "vist_label": "first_day_of_school", "id": "72157623226515173"}, {"description": "My order arrived today, and in the fine tradition of Tom Bihn customers, I decided to take some photos. \n\nIn total, I spent - my frugal friends might want to look away - $228 (including UPS shipping) on these bags. I've never forked over that much money for stuff-haulers before, EVER. But I'm happy to report (though admittedly it's only been a few hours) that I don't regret a cent thus far! ", "title": "Tom Bihn Id Messenger Bag", "farm": "6", "date_update": "1304631010", "primary": "5691548594", "server": "5030", "date_create": "1304630961", "photos": "13", "secret": "55d1055153", "owner": "39665694@N07", "vist_label": "first_day_of_school", "id": "72157626655773394"}, {"description": "The Parkwood Cemetery consisting of one acre located in 29 township, 19 range three west is situated in Jefferson County, Alabama. As of September 11, 2003 it was listed on the Alabama Historical Cemetery Register.\n\nThis cemetery was originally called Jacob Cemetery for George Jacobs who on August 6, 1873, deeded a portion of his land to Coward, Harkness, Patton and Crotwell as trustees for a place of worship for the membership of the Methodist Episcopal Church. The church was also used as a school house for many years.\n\nOn the 20th day of April 1896, Preston D. Brooks and his wife, Martha Jane Brooks deeded this property to George Cowart, A.A. Ross, Elis Ross and their successors with the right to sell and convey the property. On July 5, 1939 a Record of Cemeteries was made by Research Worker Andy Perolio of the Jefferson County Board of Health, Bureau of Records and Vital Statistics, showing the name of owner to be a Baptist Association, the oldest cemetery marker being January 1, 1876, last marker as of March 26, 1935. The local church was permanently closed and the burial register and instructions left with J.W. Logle, Rt 2, Box 352, Bessemer, Alabama on August 11, 1941.\n\nThe Coward family were early settlers who lived in this area, worked at mills and taught school on the site. Rev. C.W. Mills preached in the early church on this property. Some of the people who were buried in the cemetery were workers in the laying of the South and North Railroad. There is a good reference to the Parkwood area in History of Hoover, Alabama and It's People.\n\nOne of the men of the large Coward family ran the sandstone quarry during the Civil War, from which the stone was cut for the construction of the Ross culvert over Ross Creek. Later the ownership of the quarry passed to Peter Curren and then to George Urie. The Curren family are of Indian descent on their maternal side and many family members are buried here. Robert Curren acquired ownership of this cemetery in 1978 and assumes responsibility to maintain it. There are MANY plants, scrubs and trees native to this area still remaining on the grounds.\n", "title": "Parkwood (Jacobs) Cemetery, Lake Cyrus Community, Hoover, AL", "farm": "2", "date_update": "1402665143", "primary": "4677307734", "server": "1268", "date_create": "1275882080", "photos": "18", "secret": "06d32e8ca1", "owner": "65428595@N00", "vist_label": "first_day_of_school", "id": "72157624096000559"}, {"description": "", "title": "2011-09-06", "farm": "7", "date_update": "1356298485", "primary": "6120323194", "server": "6198", "date_create": "1315314697", "photos": "10", "secret": "65f788b215", "owner": "89618789@N00", "vist_label": "first_day_of_school", "id": "72157627483112861"}, {"description": "", "title": "2011 First Day of School", "farm": "7", "date_update": "1318305347", "primary": "6122950336", "server": "6186", "date_create": "1315369508", "photos": "18", "secret": "8bd6370ec2", "owner": "40814689@N00", "vist_label": "first_day_of_school", "id": "72157627613240028"}, {"description": "Something left behind when she moved away to college at VT.", "title": "Something of Jean's", "farm": "5", "date_update": "1322299164", "primary": "4869028791", "server": "4141", "date_create": "1281207592", "photos": "10", "secret": "8f4f082e27", "owner": "84476305@N00", "vist_label": "first_day_of_school", "id": "72157624549191891"}, {"description": "Basha High School's stage production of the play, performed in November, 2010. I was once again enlisted to serve as the official photographer for this event.", "title": "Sherlock Holmes and the West End Horror", "farm": "5", "date_update": "1422150103", "primary": "5191704784", "server": "4104", "date_create": "1290243072", "photos": "26", "secret": "ee1488e51f", "owner": "86013963@N00", "vist_label": "first_day_of_school", "id": "72157625429482242"}, {"description": "", "title": "Fall 2010", "farm": "5", "date_update": "1329763772", "primary": "4972108795", "server": "4084", "date_create": "1283992008", "photos": "13", "secret": "0a6e326c53", "owner": "35685872@N04", "vist_label": "first_day_of_school", "id": "72157624912296920"}, {"description": "Running, Bicycling and perhaps more.", "title": "Events", "farm": "1", "date_update": "1297333371", "primary": "416943817", "server": "169", "date_create": "1173574663", "photos": "21", "secret": "173750200e", "owner": "94888311@N00", "vist_label": "first_day_of_school", "id": "72157594581215862"}, {"description": "August 17, 2005", "title": "John's First Day of School", "farm": "1", "date_update": "1419458141", "primary": "34839946", "server": "21", "date_create": "771385", "photos": "21", "secret": "1dda9b68c0", "owner": "90908304@N00", "vist_label": "first_day_of_school", "id": "771385"}, {"description": "", "title": "NJMAA Invitational Championships", "farm": "3", "date_update": "1388592205", "primary": "5750657482", "server": "2295", "date_create": "1306150971", "photos": "12", "secret": "cc0221b1a4", "owner": "51035789317@N01", "vist_label": "first_day_of_school", "id": "72157626661468475"}, {"description": "", "title": "First day of classes 2011", "farm": "7", "date_update": "1314285425", "primary": "6079999848", "server": "6084", "date_create": "1314285347", "photos": "12", "secret": "7fab6f31e3", "owner": "37331606@N05", "vist_label": "first_day_of_school", "id": "72157627391929081"}, {"description": "Photos by U.S. Air Force Master Sgt. Dawn M. Price\n\nA team of Soldiers from the U.S. Army's 402nd Civil Affairs Battalion teamed up with townspeople in Dikhil, Djibouti, this month to renovate the region's only high school.\n\nThe goal of the two-month project, which began April 16, is to renovate six classrooms and an office with a new ceiling, windows, doors, lighting fixtures, blackboards and a fresh coat of paint.\n\nThe problems with the school are mainly due to termites and pigeon waste, which have accumulated and weighed down the ceilings, making it unsafe for the students, said U.S. Army Capt. Courtney Sanders, chief of Civil Affairs Team 402.\n\n\u201cWhat\u2019s going on is, the pigeons have roosted in the ceilings of the classrooms,\u201d Sanders said. \u201cAnd the termites of course eat the wood,\u201d she said. Water damage and mold are also significant problems with the school. \u201d\n\nIn addition to the threat of collapsing the school's ceiling, the 700 or so students are at risk of becoming infected with histoplasmosis, a fungal infection caused by breathing airborne mold particles commonly found in areas with high concentrations of bird droppings, she said.\n\nThe nearly $10,000 project is being completed with the help of townspeople, especially in terms of supplying manual labor, the organization of which has been coordinated by the Dikhil Prefect, Mohammad Cheiko Hassan.\n\n\u201cThe majority of the work is actually done by the prefect\u2019s laborers, as well as the Parent Teacher Association here in Dikhil,\u201d Sanders said. \u201cFrom day one they\u2019ve beat us to the work site. They\u2019re very excited about this project.\n\n\u201cThis is something that they\u2019ve been wanting on for a long time. They\u2019re motivated, they\u2019re happy and they welcome us with open arms,\u201d she said. \n\nTheir efforts have been such that the project could finish weeks ahead of schedule, Sanders said, and reflect the high value the people ascribe to a functioning school. \n\nEducation is very important in Dikhil, said Houssein Awaleh, Dikhil Prefect Construction Department manager.\n\n\u201cThis is for the kids, for their education, and that\u2019s crucial, and because of that we\u2019re very thankful to everyone who is helping us,\u201d Houssein said.\n\nFor their part, the six-person Army team facilitated the project, procured the necessary materials and began ripping out the parts of the school needing replacement. The deconstruction phase had to be completed by April 23 so as to not interfere with the student class schedules, Sanders said.\n\nIn addition, the 402nd team plans to provide the school with a fresh coat of paint and renovate six classrooms and an office. \n\nTeam member Sgt. Dennis Figueroa said he\u2019s looking forward to seeing the end result of the renovation.\n\n\u201cI want to see them have something new, something that they worked hard for,\u201d Figueroa said. \u201cThey\u2019ve been working hard on this, renovating the school. This is something they can have pride in.\u201d\n\nOnce the project is complete, the building will be maintained by the laborers who carried out the renovations. Dikhil has the only high school in its region, and students from all over the area travel to attend classes there.\n\nTo learn more about U.S. Army Africa visit our official website at www.usaraf.army.mil\n\nOfficial Twitter Feed: www.twitter.com/usarmyafrica\n\nOfficial Vimeo video channel: www.vimeo.com/usarmyafrica \n", "title": "School renovation, Dikhil, Djibouti, April 2011026.JPG", "farm": "6", "date_update": "1434019785", "primary": "5663822756", "server": "5143", "date_create": "1303975663", "photos": "10", "secret": "ab9ef83036", "owner": "36281822@N08", "vist_label": "first_day_of_school", "id": "72157626596756884"}, {"description": "", "title": "First Day of School 11-12", "farm": "7", "date_update": "1314928720", "primary": "6104147667", "server": "6085", "date_create": "1314918757", "photos": "23", "secret": "3e1ea51c4d", "owner": "55464294@N00", "vist_label": "first_day_of_school", "id": "72157627448238523"}, {"description": "The USCGC Eagle (WIX-327) (ex-SSS Horst Wessel) is a 295-foot (90 m) barque used as a training cutter for future officers of the United States Coast Guard. She is one of only two active commissioned sailing vessels in American military service, the other being the USS Constitution.[1]\n\nShe is the seventh U.S. Navy or Coast Guard ship to bear the name in a line dating back to 1792. Each summer, Eagle conducts cruises with cadets from the United States Coast Guard Academy and candidates from the Officer Candidate School for periods ranging from a week to two months. These cruises fulfill multiple roles; the primary mission is training the cadets and officer candidates, but the ship also performs a public relations role. Often, Eagle makes calls at foreign ports as a goodwill ambassador.", "title": "\"U.S. coast guard school ship Eagle in Reykjavik\"", "farm": "6", "date_update": "1309714984", "primary": "5885162789", "server": "5067", "date_create": "1309431743", "photos": "14", "secret": "dd80cdb8f2", "owner": "8058853@N06", "vist_label": "first_day_of_school", "id": "72157626958486375"}, {"description": "", "title": "Penn State, local students collaborate to celebrate MLK", "farm": "5", "date_update": "1430511246", "primary": "4946134091", "server": "4153", "date_create": "1287618464", "photos": "12", "secret": "c7b86563fe", "owner": "53130103@N05", "vist_label": "first_day_of_school", "id": "72157625082582503"}, {"description": "Spent in Greenville, NH, Tyngsborough, MA and Nashua, NH", "title": "Independence Day 2006", "farm": "1", "date_update": "1396727560", "primary": "181924203", "server": "77", "date_create": "1152077761", "photos": "22", "secret": "9c3bd4556f", "owner": "20197422@N00", "vist_label": "first_day_of_school", "id": "72157594187865594"}, {"description": "My Vermont Teddy Bear with chocolate in hand was delivered to me one day late. The card said, "Happy Valentine's Day, Love Jim." It arrived at school on Valentine's Day, but it wasn't logged and processed until the day after.\n\nValentine's Day was quite full with students giving out Valentines to each other and enjoying refreshments at the party. I was quite busy. It's a good thing the bear was late because it was a big hit in my classroom too. The girls all wanted a chance to hold Judy. Then the boys began finding other animals in the room to hold. It was a busy afternoon in the midst of doing reading, math, and English.", "title": "The Story of Judy, The Bear", "farm": "3", "date_update": "1428273298", "primary": "2267302796", "server": "2287", "date_create": "1203095970", "photos": "22", "secret": "bac513e794", "owner": "83955435@N00", "vist_label": "first_day_of_school", "id": "72157603916697455"}, {"description": "", "title": "2008-03-08 - Anti Israel Protest", "farm": "3", "date_update": "1357136680", "primary": "2322127968", "server": "2298", "date_create": "1205093510", "photos": "15", "secret": "9cd9234233", "owner": "73194085@N00", "vist_label": "first_day_of_school", "id": "72157604082858691"}, {"description": "Pre Cinco ritas @ No Mas...and picture takin'. \n\nCindy-Lou, Kayron and Gwennie are the best sports ever.", "title": "CKGM Day @ No Mas", "farm": "3", "date_update": "1326803244", "primary": "2463090994", "server": "2214", "date_create": "1209861628", "photos": "19", "secret": "b4b8f5192f", "owner": "68754081@N00", "vist_label": "first_day_of_school", "id": "72157604869582203"}, {"description": "Several weeks ago I went to see the doctor concerning a stomachache. I really don't think there is anything wrong with me, but the doctor wanted me to have a colonoscopy.\n\nMy appointment at Out Patient was for 7 AM. We were up in the Observation Room by 7:30 and hooked up with wires. Jim was with me and took pictures throughout and sent them to flickr. They took me to the little room for the procedure at 9:00 AM. I was back in the Observation Room at 10 AM. My stomach hurt because of the air that was pumped into my colon. \n\nThe findings for my procedure was: Diverticulosis of the sigmoid colon. I was discharged to go home. I am to repeat the colonoscopy in 5 years for surveillance.\n\nAfter a sip of some apple juice, they wheeled me down to our truck. Jim and I stopped by the Valdosta Country Club for lunch. I ate black bean soup, roll/butter, fried chicken, yellow squash, green beans, and coconut cream pie. I washed it down with Diet Coke. I didn't eat huge portions. I am fine except for a little grogginess from the Demerol.\n\nAfter a brief stop at our house, Jim drove me over to the town where I work because we had to pick up something in an office. Afterwards he was able to see my new classroom for the first time and drop off some stuff I'd bought for Open House.\n\nThen we drove to his office to pick up something he needed. On the way home we stopped at Chili's and shared some FAJITAS. \n\nEven though it was a rough day yesterday, today turned out to be a nice little vacation day with Jim. \n\nWhen I got home, my regular doctor had left a message that the results of my mammogram taken last week LOOKED good too. I'm finally taking care of some necessary tests to learn early if there is a problem. :-)\n\nThanks for all your comments.\n\nHere are photos of Jim's Colonoscopy.", "title": "Judy's Colonoscopy", "farm": "4", "date_update": "1428273298", "primary": "2713347363", "server": "3057", "date_create": "1217351500", "photos": "10", "secret": "9712cbf652", "owner": "83955435@N00", "vist_label": "first_day_of_school", "id": "72157606437775436"}, {"description": "We enrolled Abigael in a part-time preschool with the city Rec. Dept. Do you think she was a little excited? Like the outfit? It was a compromise", "title": "First Day of Preschool", "farm": "4", "date_update": "1301886136", "primary": "2869900866", "server": "3212", "date_create": "1221958691", "photos": "21", "secret": "42da18d338", "owner": "70556513@N00", "vist_label": "first_day_of_school", "id": "72157607397957916"}, {"description": "A few shots in the MAHS robotics room, home of FIRST team #2538. This was less than a week into the 6 week build season, so it's still a lot of planning and prototyping.", "title": "2011-01-14 F.I.R.S.T. Robotics room, early days", "farm": "6", "date_update": "1410111951", "primary": "5378634968", "server": "5162", "date_create": "1295721566", "photos": "14", "secret": "c6e880c0d4", "owner": "68457656@N00", "vist_label": "first_day_of_school", "id": "72157625881901406"}, {"description": "", "title": "La Pine Track Meet", "farm": "6", "date_update": "1356145559", "primary": "5660430052", "server": "5183", "date_create": "1303880730", "photos": "14", "secret": "38f6a9c3d8", "owner": "24984619@N05", "vist_label": "first_day_of_school", "id": "72157626464008683"}, {"description": "A group of Fairfax County high school students participated in the county\u2019s Life in the State of Poverty simulation on April 27, 2011 at the Fairfax County Government Center. The students are members of the Fairfax County Youth Leadership Program. The poverty simulation program is sponsored by the county\u2019s Community Action Advisory Board.\n \nThe objective of the simulation experience is to increase the community awareness of the realities faced by low-income people and of the community resources that are available to them and all families. \n\nThe Fairfax County Youth Leadership Program is sponsored by the Fairfax County Department of Management and Budget and the Fairfax County Public Schools. \n\nMore information:\nwww.fairfaxcounty.gov/dfs/caab/povertysimulation.htm\nwww.fairfaxcounty.gov/dfs/caab/\nwww.fairfaxcounty.gov/dmb/fcylp/fcylp_about_the_program.htm", "title": "\"Life in the State of Poverty\" Simulation", "farm": "6", "date_update": "1308086759", "primary": "5680433681", "server": "5148", "date_create": "1304361053", "photos": "13", "secret": "b37d661572", "owner": "47833064@N03", "vist_label": "first_day_of_school", "id": "72157626507385367"}, {"description": "", "title": "First Day of School 2011", "farm": "7", "date_update": "1356146055", "primary": "6071074198", "server": "6070", "date_create": "1314048439", "photos": "16", "secret": "96fdeeca8c", "owner": "30579307@N04", "vist_label": "first_day_of_school", "id": "72157627495555866"}, {"description": "Ambassador and Ms Julie Fisher celebrated the eve of Tu b'shvat, Israel's Arbor day, with a visit to Yemin Orde Youth Village, located in Nof HaCarmel, on the Carmel mountain range and near the Carmel Forest) to plant an olive tree as a symbol of renewal and growth and America's deep-rooted friendship with Israel. The visit took place shortly after the one year anniversary of the Carmel Forest Fire, December 2010, that nearly destroyed this Youth-at-Risk village. The Ambassador was given the background to Yemin Orde, by Dr. Chaim Peri, the visionary behind this unique village. He also met with Dr. Benny Fisher, the director, staff and students and toured the village's synagogue, Graduates' Home, Ethiopian Godjo (traditional hut), and high school. \n\nFollowing the tree-planting ceremony, Ambassador Shapiro and Ms. Julie Fisher then toured the Carmel Forest area, accompanied by senior staff of the JNF-KKL, along with Tom Tidwell, Chief, U.S. Forest Service. They were shown the extent of the damage caused by the December 2010 forest fire. They were also shown the ongoing restoration work taking place. They were taken to the new memorial monument, recently unveiled, that commemorates the 42 people killed in the fire. There, both Ambassador Shapiro and Chief Tidwell laid a wreath and stood for a moment of reflection.\n\nWatch the video at: www.youtube.com/watch?v=4rhmpasJGEg&list=UUhu9tJ-ESvk...\n\nPhoto Credit: Matty Stern/U.S. Embassy Tel Aviv \n", "title": "Deep-Rooted Friendship! Ambassador Shapiro plants an Olive Tree.", "farm": "8", "date_update": "1418395463", "primary": "6836099795", "server": "7165", "date_create": "1328629973", "photos": "20", "secret": "4c9e4e58ba", "owner": "46886434@N04", "vist_label": "first_day_of_school", "id": "72157629216448839"}, {"description": "", "title": "Lillie, 7th Grader", "farm": "8", "date_update": "1366657186", "primary": "7828345770", "server": "7259", "date_create": "1345517849", "photos": "19", "secret": "50a4d4a906", "owner": "14235202@N00", "vist_label": "first_day_of_school", "id": "72157631169645326"}, {"description": "Photos by Mike Chino", "title": "Marin Fair 2009 Sponsored by PG&E", "farm": "3", "date_update": "1334902676", "primary": "3683064482", "server": "2560", "date_create": "1246574321", "photos": "26", "secret": "2ab0b7bcfe", "owner": "54976599@N00", "vist_label": "fourth_of_july", "id": "72157620874108902"}, {"description": "Merivale Winter Feasts\nest.\n1 course AUD35\n2 courses AUD50\n3 courses AUD60\nincluding glass of wine of James Squire\nbookings essential +61292403000\nwww.merivalewinterfeasts.com/\n\nEst. Restaurant\n(02) 9240 3000\nLevel 1, 252 George St\nSydney NSW 2000\n\nwww.merivale.com/#/establishment/est\n\nReviews:\n- est. by Simon Thomsen, Sydney Morning Herald, July 14, 2007\n- Est - www.miettas.com.au/", "title": "Est, Merivale Winter Feast 2009.07.22", "farm": "3", "date_update": "1413635826", "primary": "3784309783", "server": "2547", "date_create": "1249304951", "photos": "14", "secret": "f5207dc9b4", "owner": "10559879@N00", "vist_label": "fourth_of_july", "id": "72157621931946156"}, {"description": "", "title": "Fourth of July - Bloomington Fireworks", "farm": "4", "date_update": "1306511353", "primary": "3686912573", "server": "3573", "date_create": "1246725342", "photos": "28", "secret": "02cb574dc3", "owner": "69837662@N00", "vist_label": "fourth_of_july", "id": "72157620811678257"}, {"description": "Independence Day festivities in Washington, D.C., and Arlington, Va.", "title": "Fourth of July, 2011", "farm": "7", "date_update": "1415476973", "primary": "5903321311", "server": "6041", "date_create": "1309837646", "photos": "18", "secret": "6c210fca51", "owner": "80081757@N00", "vist_label": "fourth_of_july", "id": "72157626994718417"}, {"description": "", "title": "Studio City Fireworks Festival 2008", "farm": "4", "date_update": "1356150364", "primary": "2639280115", "server": "3171", "date_create": "1215287037", "photos": "30", "secret": "1102494d90", "owner": "90476728@N00", "vist_label": "fourth_of_july", "id": "72157605997253353"}, {"description": "I learned some things from last year, and LR2 helped a lot (mainly because I could make a preset and apply it everywhere to get the brightness curve and WB I wanted). Next time I'll try to remember to pay attention to the fact that the Nikon leaves AutoISO on in manual mode (which didn't really matter that much since the dark areas are black) but otherwise I'm pretty happy.", "title": "Fourth of July, 2009", "farm": "4", "date_update": "1356146347", "primary": "3691627034", "server": "3590", "date_create": "1246813005", "photos": "30", "secret": "647829f155", "owner": "35816411@N00", "vist_label": "fourth_of_july", "id": "72157620996064968"}, {"description": "", "title": "Fourth of July - 2010", "farm": "5", "date_update": "1367781876", "primary": "4769801777", "server": "4102", "date_create": "1278476207", "photos": "11", "secret": "085a85e19f", "owner": "8381637@N06", "vist_label": "fourth_of_july", "id": "72157624440382340"}, {"description": "", "title": "Fourth of July Picnic", "farm": "7", "date_update": "1311116698", "primary": "5942389953", "server": "6141", "date_create": "1311116697", "photos": "10", "secret": "0640c9167d", "owner": "99139484@N00", "vist_label": "fourth_of_july", "id": "72157627235661874"}, {"description": "", "title": "Hensingham School Gala Day 2011", "farm": "7", "date_update": "1427554081", "primary": "5951382379", "server": "6146", "date_create": "1311020095", "photos": "21", "secret": "649e18836a", "owner": "7424779@N05", "vist_label": "fourth_of_july", "id": "72157627101810461"}, {"description": "These are scans take of wire photographs that I have acquired that feature "Big" Walt Dropo (1923-2010). All rights remain with copyright holders.", "title": "Walt Dropo Collection", "farm": "6", "date_update": "1296399993", "primary": "5274960906", "server": "5161", "date_create": "1292785632", "photos": "27", "secret": "bbd142240e", "owner": "9456152@N04", "vist_label": "fourth_of_july", "id": "72157625632178504"}, {"description": "", "title": "Old Main clocks removed for restoration", "farm": "7", "date_update": "1430511245", "primary": "5964210171", "server": "6007", "date_create": "1311356778", "photos": "10", "secret": "d7fd46c081", "owner": "53130103@N05", "vist_label": "fourth_of_july", "id": "72157627256006852"}, {"description": "", "title": "at Lake Burton, July 2005", "farm": "1", "date_update": "1297739481", "primary": "23424021", "server": "16", "date_create": "538554", "photos": "43", "secret": "e92cc9173c", "owner": "35026181@N00", "vist_label": "fourth_of_july", "id": "538554"}, {"description": "(only on a lake at a lakehouse in connecticut)", "title": "2nd Annual Barcade 4th of July Delaware River Tubing Adventure", "farm": "1", "date_update": "1356188515", "primary": "182379348", "server": "77", "date_create": "1152102529", "photos": "12", "secret": "6916b6b6e5", "owner": "42428614@N00", "vist_label": "fourth_of_july", "id": "72157594188123351"}, {"description": "", "title": "Fourth of July 2006", "farm": "1", "date_update": "1356187905", "primary": "182547556", "server": "76", "date_create": "1152116978", "photos": "33", "secret": "e7609e6245", "owner": "70276235@N00", "vist_label": "fourth_of_july", "id": "72157594188359156"}, {"description": "", "title": "July 4th, 1993", "farm": "9", "date_update": "1430433624", "primary": "7003491282", "server": "8008", "date_create": "1336332542", "photos": "16", "secret": "536d430694", "owner": "62637674@N00", "vist_label": "fourth_of_july", "id": "72157629616247290"}, {"description": "The plaza at Independence Hall and surrounding areas was indulged with several notable activities.\n\nA rally in support of Mumia Abu Jamal drew a small gathering of musicians and sign carriers.\n\nOccupy Philadelphia, which camped out in Franklin Plaza Square a few blocks away from Independence Hall, held several events, including a march through the streets and an Occupy Circus.\n\nAs night drew upon the plaza, a peaceful night of music was provided by Peter Nero and the Philly Pops Orchestra. The "Rocky" theme song was a big hit, as one would expect. \n\nJuly 3, 2012\n\nPhotos: Roger Barone/Talk Radio News Staff", "title": "Independence Hall Plaza (7-3-12)", "farm": "8", "date_update": "1341952464", "primary": "7501328704", "server": "7107", "date_create": "1341413641", "photos": "14", "secret": "dbbe25e62c", "owner": "10438873@N04", "vist_label": "fourth_of_july", "id": "72157630419717464"}, {"description": "", "title": "Colfax July 3", "farm": "9", "date_update": "1341421518", "primary": "7502164648", "server": "8003", "date_create": "1341421512", "photos": "14", "secret": "6801c03359", "owner": "45147375@N00", "vist_label": "fourth_of_july", "id": "72157630421477774"}, {"description": "", "title": "Fourth of July", "farm": "8", "date_update": "1372527897", "primary": "7502640994", "server": "7279", "date_create": "1341426658", "photos": "50", "secret": "bb344501b6", "owner": "8330434@N05", "vist_label": "fourth_of_july", "id": "72157630422619842"}, {"description": "", "title": "Fourth of July at the Elmer pool", "farm": "8", "date_update": "1356205672", "primary": "7503904392", "server": "7275", "date_create": "1341495113", "photos": "12", "secret": "32292984fa", "owner": "84169004@N00", "vist_label": "fourth_of_july", "id": "72157630434051334"}, {"description": "Albany, CA", "title": "Albany July 4th Celebration", "farm": "8", "date_update": "1433354846", "primary": "7505552412", "server": "7275", "date_create": "1341464680", "photos": "44", "secret": "d7dd1e6b78", "owner": "73994646@N00", "vist_label": "fourth_of_july", "id": "72157630429638746"}, {"description": "The Petersen House is the "house where Lincoln died." It's located across the street from Ford's Theatre in Washington, D.C.\n\nThe house was built in 1849 by William A. Petersen, a German tailor. The Petersens and their descendants continued to live in the house until 1893. An avid (some say "obsessive") Lincolniana collector, Osborn Oldroyd, rented the house and put his vast collection of Lincoln artifacts on display there.\n\nIn 1896, Oldroyd persuaded Congress to buy the house, and allow him to live in it rent-free so long as he kept his Lincoln museum open. Oldroyd died in 1926, and Congress purchased his collection. The collection was moved to the basement of Ford's Theatre in 1932, and the Petersen House restored as "the house where Lincoln died". The National Park Service took over both Ford's Theatre and the Petersen House in 1933.\n\nIn 2007, the Ford's Theatre Society purchased the townhouse next to the Petersen House and began building the Ford\u2019s Theatre Center for Education and Leadership. It is now a museum documenting the aftermath of the Lincoln assassination, and the impact Lincoln has had on the United States. The upper four floors document the aftermath of Lincoln\u2019s assassination, the legacy of Lincoln, Lincoln\u2019s leadership qualities, and a lobby and bookstore. The two sub-floors contain an education and conference center. Between the second and first floors is a winding staircase and 34-foot tower of books about Abraham Lincoln. The Center opened in February 2012.", "title": "House Where Lincoln Died", "farm": "9", "date_update": "1341177207", "primary": "7481527120", "server": "8004", "date_create": "1341174562", "photos": "27", "secret": "60379c3af7", "owner": "23165290@N00", "vist_label": "funeral", "id": "72157630375999852"}, {"description": "", "title": "World AIDS Day", "farm": "6", "date_update": "1333933226", "primary": "5224140259", "server": "5247", "date_create": "1291236339", "photos": "24", "secret": "a3dc653c0e", "owner": "64597607@N00", "vist_label": "funeral", "id": "72157625509057442"}, {"description": "", "title": "Books by the Banks 2010", "farm": "5", "date_update": "1356307138", "primary": "5044532685", "server": "4127", "date_create": "1286046760", "photos": "27", "secret": "45018a6de7", "owner": "69795809@N00", "vist_label": "funeral", "id": "72157625080616410"}, {"description": "", "title": "Gerald R. Ford State Funeral (PM) Departure SW WDC 2 January 2007", "farm": "1", "date_update": "1376804965", "primary": "343877262", "server": "159", "date_create": "1167823392", "photos": "20", "secret": "17662945a2", "owner": "95413346@N00", "vist_label": "funeral", "id": "72157594456421119"}, {"description": "", "title": "News Gatherers", "farm": "1", "date_update": "1376804965", "primary": "339685781", "server": "130", "date_create": "1167998027", "photos": "11", "secret": "842be69b9e", "owner": "95413346@N00", "vist_label": "funeral", "id": "72157594460777407"}, {"description": "", "title": "NYC Chinatown Photowalk 2010 with Chris Halford", "farm": "5", "date_update": "1301856315", "primary": "4862701421", "server": "4099", "date_create": "1281018367", "photos": "18", "secret": "9f9f339206", "owner": "31252221@N08", "vist_label": "funeral", "id": "72157624534607747"}, {"description": "Soldiers from the Virginia National Guard\u2019s Military Funeral Honors Program honor the remains of four veterans March 5, 2013, at the Virginia Veterans Cemetery in Amelia, Va. The Funeral Honors Team provided a firing team as well as Soldiers to fold a flag in honor of the veterans. The event was part of the Missing in Virginia program, which aims to locate and inter the unclaimed cremated remains of Virginia veterans.", "title": "Va. Guard Military Funeral Honors Team honors veterans in Amelia - March 5, 2013", "farm": "9", "date_update": "1417887323", "primary": "8535422392", "server": "8243", "date_create": "1362606943", "photos": "15", "secret": "eb112b7f66", "owner": "35101671@N06", "vist_label": "funeral", "id": "72157632932199777"}, {"description": "", "title": "St Andrew, Wingfield: Suffolk", "farm": "3", "date_update": "1434224195", "primary": "10125833745", "server": "2808", "date_create": "1381095877", "photos": "14", "secret": "9e2be173ed", "owner": "15181848@N02", "vist_label": "funeral", "id": "72157636264697316"}, {"description": "Grandiose display of Victorian pomp demonstrated by members of the Victoriana Society of South Australia taking the part of official mourners and Sidney Harrison Funerals supplying the horse drawn hearse. The re-enactment of a Victorian funeral took place in West Terrace Cemetery and launched the Beliefs, Attitudes and Customs Interpretive trail. A traditional committal service took place at the graveside. \n\nTaking place on Sunday 27 May, the event was part of the About Time History Festival 2012. \n\nPhotographs courtesy of Anne Clark", "title": "Victorian Funeral Re-enactment", "farm": "9", "date_update": "1371448575", "primary": "7350422846", "server": "8162", "date_create": "1339130496", "photos": "15", "secret": "a6ba9cf006", "owner": "59524938@N06", "vist_label": "funeral", "id": "72157630078030316"}, {"description": "", "title": "CEREMONIA F\u00daNEBRE FALLECIMIENTO DEL MANDATARIO HUGO CH\u00c1VEZ", "farm": "9", "date_update": "1432520648", "primary": "8539163288", "server": "8382", "date_create": "1362731869", "photos": "25", "secret": "282608dd5b", "owner": "7965504@N03", "vist_label": "funeral", "id": "72157632947336586"}, {"description": "If you walk through the locally famous God's Acre Moravian Cemetery in Old Salem (Winston-Salem, NC), down the hill and across the younger and more traditional downtown city cemetery (where many Reynolds and Hanes are buried) to its back corner, you'll find what seems to be Moravian-style gravestones for slaves. There is no historical marker for this little cemetery annex, physically separated from God's Acre. The slave graveyard at Salem's St. Philips church was closed in 1859. So we guess after that the slaves, ex-slaves, and "strangers" (white visitors who weren't Moravian) were buried out here. ", "title": "Slave Cemetery outside of God's Acre, Old Salem", "farm": "5", "date_update": "1345681190", "primary": "4683538019", "server": "4069", "date_create": "1276049696", "photos": "12", "secret": "0aed81b967", "owner": "12995467@N00", "vist_label": "funeral", "id": "72157624235048826"}, {"description": "", "title": "Arcade Fire, Birmingham 2010", "farm": "6", "date_update": "1327486030", "primary": "5246322589", "server": "5009", "date_create": "1291912682", "photos": "15", "secret": "1f940252a3", "owner": "41193915@N04", "vist_label": "funeral", "id": "72157625437769119"}, {"description": "The Neil Armstrong funeral memorial service at the Washington National Cathedral in Washington, D.C., on September 13, 2012.", "title": "Neil Armstrong memorial", "farm": "9", "date_update": "1348617089", "primary": "7984231808", "server": "8172", "date_create": "1347588085", "photos": "12", "secret": "69b950868f", "owner": "23165290@N00", "vist_label": "funeral", "id": "72157631530976322"}, {"description": "Note : Please don't ruin this thread with your petty political arguments, especially those of you who like to condemn anything and everything related to South Vietnam. Just enjoy the pics of a historical era.\n\nNote : Ng\u01b0\u1eddi ghi l\u1ea1i nh\u1eefng b\u1ee9c \u1ea3nh \u0111a s\u1ed1 l\u00e0 nh\u1eefng ph\u00f3ng vi\u00ean chi\u1ebfn tr\u01b0\u1eddng c\u1ee7a c\u00e1c h\u00e3ng th\u00f4ng t\u1ea5n l\u1edbn. N\u00ean c\u00e1c b\u1ee9c \u1ea3nh c\u1ee7a h\u1ecd \u0111a s\u1ed1 \u0111\u1ec1u mang t\u00ednh th\u1eddi s\u1ef1. C\u00f2n nh\u00ecn nh\u1eadn nh\u01b0 th\u1ebf n\u00e0o th\u00ec t\u00f9y v\u00e0o c\u00e1ch nh\u00ecn c\u1ee7a m\u1ed7i ng\u01b0\u1eddi, ca\u0301c b\u1ea1n c\u1ee9 xem h\u1ecd nh\u01b0 nh\u1eefng ng\u01b0\u1eddi k\u1ec3 chuy\u1ec7n b\u1eb1ng ng\u00f4n ng\u1eef h\u00ecnh \u1ea3nh. \u0110\u1eebng t\u00f4 m\u00e0u, ch\u1ee5p m\u0169 g\u00ec h\u1ebft. D\u00f9 l\u00e0 ai th\u00ec c\u0169ng n\u00ean tr\u00e2n tr\u1ecdng nh\u1eefng ng\u01b0\u1eddi \u0111\u00e3 ch\u1ee5p, \u0111\u00e3 l\u01b0u tr\u1eef, \u0111\u00e3 chia s\u1ebb \u0111\u1ec3 nh\u1eefng ng\u01b0\u1eddi \u0111i sau hi\u1ec3u th\u00eam v\u1ec1 1 giai \u0111o\u1ea1n l\u1ecbch s\u1eed VN. M\u00e0 l\u1ecbch s\u1eed th\u00ec ph\u1ea3i \u0111\u01b0\u1ee3c nh\u00ecn d\u01b0\u1edbi l\u0103ng k\u00ednh kh\u00e1ch quan.\n\n", "title": "Saigon 1966 - Mr.Tran Van Van's Funeral - Fran\u00e7ois Sully Photograph Collection", "farm": "8", "date_update": "1417008389", "primary": "10845047434", "server": "7436", "date_create": "1384389550", "photos": "15", "secret": "10794c6ee5", "owner": "97930879@N02", "vist_label": "funeral", "id": "72157637647894305"}, {"description": "Former Superintendent Fred Rice of the Chicago Police Department.", "title": "Funeral of Fred Rice", "farm": "6", "date_update": "1356503608", "primary": "5357560949", "server": "5087", "date_create": "1295124436", "photos": "15", "secret": "b2ab024906", "owner": "31545680@N03", "vist_label": "funeral", "id": "72157625830823704"}, {"description": "Eileen and I headed downtown today to check out the wholesalers L.A. Flower Market. Pretty neato! We also headed to lunch at Ruby's on the pier in Huntington Beach to scout wedding stuff.", "title": "L.A. Flower Market", "farm": "8", "date_update": "1331848546", "primary": "6985713945", "server": "7039", "date_create": "1331848307", "photos": "22", "secret": "68e5e2ab05", "owner": "49503118375@N01", "vist_label": "funeral", "id": "72157629593179079"}, {"description": "April 17, 2013", "title": "City of London on Margaret Thatcher's funeral", "farm": "9", "date_update": "1366203894", "primary": "8657013103", "server": "8111", "date_create": "1366203879", "photos": "12", "secret": "3c74628f28", "owner": "34671966@N03", "vist_label": "funeral", "id": "72157633268182236"}, {"description": "LRO Show at Billing Aquadrome, 15-17 July 2011", "title": "Billing 2011", "farm": "7", "date_update": "1391271191", "primary": "5951322289", "server": "6134", "date_create": "1311018770", "photos": "23", "secret": "cde175e619", "owner": "94876569@N00", "vist_label": "funeral", "id": "72157627225981046"}, {"description": "Jim, Judy, Paulette, and DeWayne spent the night at the Hilton Garden Inn in Gainesville, GA to attend the visitation and funeral of Richard Thomas (DeWayne's brother). Jim and Judy left after breakfast on Sat., Jan. 19 to go to Mother's where P & D met them after the funeral.", "title": "Hilton Garden - Gainesville GA", "farm": "9", "date_update": "1428273297", "primary": "8398699436", "server": "8092", "date_create": "1358607397", "photos": "26", "secret": "45a0acf08d", "owner": "83955435@N00", "vist_label": "funeral", "id": "72157632556438915"}, {"description": "Es wurden die letzten 30 Jahre seines Lebens beerdigt. Mit angemessener Kleidung, einer Kuchentafel, Trauermusik, Korn und Karaoke.", "title": "Anselms 30. Geburtstag", "farm": "1", "date_update": "1356163706", "primary": "5116803", "server": "5", "date_create": "129512", "photos": "12", "secret": "85503673ca", "owner": "44124413234@N01", "vist_label": "funeral", "id": "129512"}, {"description": "sxsw 2010", "title": "the grind", "farm": "3", "date_update": "1297682244", "primary": "4449081521", "server": "2781", "date_create": "1269144785", "photos": "22", "secret": "9b3689913d", "owner": "23329932@N00", "vist_label": "funeral", "id": "72157623660677964"}, {"description": "10:30pm: Three Envelopes, Funeral Season (ou La Saison des fun\u00e9railles)\nHide information\n\nThree Envelopes by James P. Gannon and Joseph K. Gannon\nUSA, 2011, 14 minutes\n*Co-director James Gannon will be in attendance.\n\u201cThese are my parents, one day they are going to die.\u201d Concerned about the inevitable death of their parents, filmmakers Joseph and James Gannon sit down with their parents for an intimate conversation about death. Hoping to get answers from them before its too late. They ask what its like to go through the loss of a parent and how to deal with it. What follows is a very personal observation of the open wounds that never fully heal from the loss and the realization that your parents are thinking about their own death as much as you are. Joseph and James Gannon are from Levittown, PA and are the 4th and 6th of 8 children. In 1998 Joseph moved to NYC to pursue acting, James followed in 2005 to pursue directing. James\u2019 film \u201cCochran\u201d screened in a dozen film festivals in 2009 including SXSW. This is the first film that they have directed together.\n\nFuneral Season (ou La Saison des fun\u00e9railles) by Matthew Lancit\nCanada, 2010, 87 minutes\nThe dead are not dead. In this comedic ghost story, a Canadian Jew wanders through an African culture where \u201cthe dead are not dead.\u201d Embarking on a road trip across Cameroon\u2019s most joyous funeral celebrations, the foreigner befriends his guides and becomes increasingly haunted by memories of his own ancestors. Matthew Lancit grew up in Toronto, Canada before leaving for New York to study filmmaking at NYU\u2019s Tisch School of the Arts, and the liberal arts at Sarah Lawrence. Since graduating, his experimental works have been invited to screen at Chasma and the Film Anthology Archives in New York, the art department at UCLA, and on the Saatchi Gallery website. His short fictional film Death of a Gentleman competed in festivals like: Rhode Island International Film Festival, Montreal World Film Festival, San Francisco International Short Film Festival, and Festival International de curtas-metragens de Sao Paulo. After leaving his advertising job as a director/producer in a New York based animation studio to live in Africa, Lancit embarked on the making of his first feature length documentary (Funeral Season), for which he was a recipient of the prestigious 2011 Rising Star award at the Canada International Film Festival. Aside from making film and video art, Lancit has published heavily personalized essays on a wide range of topics \u2013 from the art of cartography to bibliotherapy. He currently divides his time between Toronto and Paris.\n\nDIY Filmmaking Competition Guidelines:\nThe winning feature and short will receive a Rooftop Films screening held on Friday, July 1, on the lawn at Automotive High School in Williamsburg, along with a Canon 7D Deluxe Kit week rental (or equivalent equipment/post services) courtesy of DCTV. The runner-up feature and short will each be awarded a pass to to IFP\u2019s Independent Film Week, September 18-22, at their new home at Lincoln Center.The short winner will be selected by our jury: independent producer Ted Hope, actress Rosie Perez, MoMA Chief Curator Rajendra Roy, concert organizer Todd P, and Patricia Swinney Kaufman of the NY State Governor\u2019s Office for Motion Picture and Television Development. The feature winner will be determined by audience vote.", "title": "June 16th, 10:30pm: Northside DIY Filmmaking Competition: Funeral Season with Three Envelopes", "farm": "6", "date_update": "1435076504", "primary": "5853926883", "server": "5272", "date_create": "1308603990", "photos": "14", "secret": "c967ede898", "owner": "8207752@N03", "vist_label": "funeral", "id": "72157626883738735"}, {"description": "", "title": "Muslim Graveyard in Rosehill Cemetery", "farm": "9", "date_update": "1357514566", "primary": "8108924337", "server": "8187", "date_create": "1350832095", "photos": "14", "secret": "3718ca8256", "owner": "60586954@N00", "vist_label": "funeral", "id": "72157631819742383"}, {"description": "Current and former members of the Virginia National Guard and senior state government officials joined family, friends and the community of South Boston Feb. 21, 2013, in paying final respects to retired Maj. Gen. Carroll Thackston as he was laid to rest at Oak Ridge Cemetery will full military honors. Thackston, the Adjutant General of Virginia from July 1994 to September 1998, passed away Feb. 17, 2013, at Lynchburg General Hospital at the age of 79. Former Gov. George Allen presented Thackston's widow with a Virginia state flag, and Maj. Gen. Daniel E. Long, Jr., the Adjutant General of Virginia, presented his widow and three sons with U. S. flags at the burial site. The Virginia National Guard's Petersburg-based Funeral Honors Team provided the color guard, flag-folding detail, firing detail and bugler, and air crews from the Sandston-based 2nd Battalion, 224th Aviation Regiment conducted a fly over with UH-60 Black Hawk helicopters.", "title": "Former Adjutant General laid to rest in South Boston - Feb. 21, 2013", "farm": "9", "date_update": "1417887323", "primary": "8497896519", "server": "8389", "date_create": "1361567973", "photos": "27", "secret": "d66d386926", "owner": "35101671@N06", "vist_label": "funeral", "id": "72157632828469673"}, {"description": "A four-times-a-year-on-the-solstice flickr project that records an ordinary day.\n\nMy day started early, but not as early as some. When I went out to get the newspaper, around 6 am, plenty of folks were already jogging. A friend came over to help me weed, a task I dislike, and then we went out to lunch. Later, I drove around and did chores. On my way home, I stopped at a local farmstand. It's small but lovely, and it features fresh produce grown right there. By the end of the day, I was tuckered out. I went to bed right after the weather forecast. ", "title": "A Day in the Life June 10", "farm": "2", "date_update": "1422892663", "primary": "4725942593", "server": "1224", "date_create": "1277264502", "photos": "12", "secret": "632d5f97de", "owner": "53133240@N00", "vist_label": "funeral", "id": "72157624337173194"}, {"description": "", "title": "The Bizarre Hotel in Tottori", "farm": "3", "date_update": "1325567337", "primary": "5752467505", "server": "2363", "date_create": "1306195025", "photos": "11", "secret": "eab3063540", "owner": "21183810@N00", "vist_label": "funeral", "id": "72157626666548053"}, {"description": "Photos from St. Giles Church, Cheadle, Staffordshire", "title": "St. Giles, Cheadle", "farm": "5", "date_update": "1296550205", "primary": "4638086351", "server": "4009", "date_create": "1276376205", "photos": "16", "secret": "016fa30110", "owner": "37657778@N07", "vist_label": "funeral", "id": "72157624260296988"}, {"description": "", "title": "Charles Connelly's Funeral", "farm": "9", "date_update": "1356916524", "primary": "8220982343", "server": "8204", "date_create": "1353960890", "photos": "21", "secret": "ab45163a66", "owner": "49768964@N04", "vist_label": "funeral", "id": "72157632109434318"}, {"description": "", "title": "Iglesia Hermanas de La Providencia", "farm": "7", "date_update": "1350857852", "primary": "6085995725", "server": "6194", "date_create": "1314473836", "photos": "11", "secret": "fe46de54c7", "owner": "11946814@N02", "vist_label": "funeral", "id": "72157627531935274"}, {"description": "St Paul's Catherdral, London, April 17th 2013", "title": "Margaret Thatcher's Funeral", "farm": "8", "date_update": "1382977991", "primary": "10538619343", "server": "7433", "date_create": "1382976912", "photos": "26", "secret": "76f92deda5", "owner": "95666228@N06", "vist_label": "funeral", "id": "72157637051940796"}, {"description": "For April's installment of Meet The Lady, host Tom Blunt gave a fake-ademic tour of a classical art motif that persists in the art and film of today, in which women have encounters (erotic or otherwise) with Death incarnate. Also showing: women as harbingers of death, whether as assassins, angels or carriers of disease.\n\n", "title": "Meet The Lady: Death and the Maiden", "farm": "6", "date_update": "1328911945", "primary": "5670707024", "server": "5307", "date_create": "1304108580", "photos": "13", "secret": "3ec35b1088", "owner": "46006550@N02", "vist_label": "funeral", "id": "72157626609658836"}, {"description": "", "title": "Funeral Suits @ Crawdaddy (Dublin) - 28.08.10", "farm": "5", "date_update": "1356193260", "primary": "4939427284", "server": "4114", "date_create": "1283117097", "photos": "14", "secret": "a846fb99ae", "owner": "24144028@N00", "vist_label": "funeral", "id": "72157624710867491"}, {"description": "No visit to New Orleans is complete without visiting its historic cemeteries, unique for their aboveground tombs. Lafayette Cemetery No. 1, located in the Garden District, is the city's earliest and most significant burial site. Check out www.saveourcemeteries.org!", "title": "lafayette no. 1: city of the dead", "farm": "1", "date_update": "1420402327", "primary": "17733194", "server": "12", "date_create": "420512", "photos": "22", "secret": "ff0d525b6f", "owner": "53881030@N00", "vist_label": "funeral", "id": "420512"}, {"description": "", "title": "Virginia -- Dad's Funeral", "farm": "1", "date_update": "1300590160", "primary": "23981680", "server": "18", "date_create": "549401", "photos": "16", "secret": "f819ee5843", "owner": "64914760@N00", "vist_label": "funeral", "id": "549401"}, {"description": "Hilding Linnquist (1891-1984). Swedish na\u00efvist (non-dogmatic). Linnquist travelled extensively. Generally, he painted what he saw. He has decorated the Sofia Church of Stockholm and the Great Church of \u00d6stersund with monumental altarpieces. He is represented at museums in Sweden, Germany, and USA. The images were taken with an Easypix S328 at Marabouparken, Sundbyberg, Aug 17, 2011.", "title": "Linnquist", "farm": "8", "date_update": "1326190556", "primary": "6672182979", "server": "7147", "date_create": "1313602800", "photos": "22", "secret": "be6f06edda", "owner": "66435095@N05", "vist_label": "funeral", "id": "72157627331890945"}, {"description": "Family portraits outside the church before Grandpa Lindberg's funeral.", "title": "Lindberg 2014 Family Portraits", "farm": "8", "date_update": "1393184526", "primary": "12727194355", "server": "7341", "date_create": "1393184289", "photos": "12", "secret": "f3416068c2", "owner": "35034356271@N01", "vist_label": "funeral", "id": "72157641419066363"}, {"description": "My cousin's husband died suddenly of a probable myocardial infarction at the age of 50. He was a true rodeo cowboy, rancher and oil rig fella, respected and loved by so many. Most of all, he was a dedicated husband and father. In the funeral procession, his three sons on horseback followed the horse and buggy carrying their father's casket. Beside their three horses walked the empty-saddled horse belonging to our beloved fallen cowboy, with his favorite boots , empty and riding backwards in the stirrups, in his honor. Love and Joy abounded, despite the terribly sad day.", "title": "Fallen Cowboy", "farm": "6", "date_update": "1393473473", "primary": "12798585705", "server": "5482", "date_create": "1393444320", "photos": "18", "secret": "b01f315001", "owner": "47264866@N00", "vist_label": "funeral", "id": "72157641572652875"}, {"description": "Scanned by Angela Kleis!", "title": "Rollei 35mm Supercompact, Late 2013-Early 2014", "farm": "3", "date_update": "1393604119", "primary": "12836624464", "server": "2847", "date_create": "1393602478", "photos": "16", "secret": "72732c4b7f", "owner": "10710442@N08", "vist_label": "funeral", "id": "72157641657578444"}, {"description": "From Yahoo!, after over 5 years.", "title": "Eli's Going Away Party", "farm": "5", "date_update": "1298120265", "primary": "4959293396", "server": "4078", "date_create": "1283662741", "photos": "19", "secret": "8a42a4fc7f", "owner": "52121411@N00", "vist_label": "going_away_party", "id": "72157624756855255"}, {"description": "", "title": "Nick & Esther goodbye party at Smoke Shack", "farm": "8", "date_update": "1391166593", "primary": "6905687050", "server": "7126", "date_create": "1333747016", "photos": "18", "secret": "e526b6d910", "owner": "14678786@N00", "vist_label": "going_away_party", "id": "72157629391264564"}, {"description": "At Derek's apartment the night before Norm's flight to China", "title": "Norm's going away party", "farm": "1", "date_update": "1301785369", "primary": "31872537", "server": "21", "date_create": "710543", "photos": "30", "secret": "78e70fbb4e", "owner": "85646220@N00", "vist_label": "going_away_party", "id": "710543"}, {"description": "He is moving back to warmer climes. One can hardly blame him.", "title": "Going Away Party for Josh", "farm": "6", "date_update": "1330278337", "primary": "5251230995", "server": "5044", "date_create": "1292085873", "photos": "10", "secret": "1181587c5f", "owner": "49503124519@N01", "vist_label": "going_away_party", "id": "72157625576160174"}, {"description": "", "title": "Oldbury, Sandwell", "farm": "8", "date_update": "1434833560", "primary": "6491905811", "server": "7163", "date_create": "1323604189", "photos": "16", "secret": "1beeda644c", "owner": "39415781@N06", "vist_label": "going_away_party", "id": "72157628370536917"}, {"description": "We're celebrating Jesse's big move", "title": "Jesse's Going Away Party", "farm": "1", "date_update": "1356309880", "primary": "6395286", "server": "7", "date_create": "159626", "photos": "28", "secret": "c441bc1a47", "owner": "41894162620@N01", "vist_label": "going_away_party", "id": "159626"}, {"description": "Clem's in Brooklyn. July 22nd 2005", "title": "Angela's Going Away Party", "farm": "1", "date_update": "1311453677", "primary": "28260741", "server": "23", "date_create": "638064", "photos": "27", "secret": "09b80b903d", "owner": "41894171126@N01", "vist_label": "going_away_party", "id": "638064"}, {"description": "We went to Kirk's house for a barbecue and fireworks watching. Located just up the hillside from La Habra High School, we had a good view of their fireworks, as well as a panoramic view of fireworks displays from the surrounding communities as far away as Anaheim Stadium and Disneyland.\n", "title": "July 4th, 2010", "farm": "5", "date_update": "1401153056", "primary": "4825597605", "server": "4121", "date_create": "1280040768", "photos": "12", "secret": "9b46be108d", "owner": "99525316@N00", "vist_label": "going_away_party", "id": "72157624451310233"}, {"description": "One of my best friends, Kayla, had a going-away party from the Janesville Gazette, almost two years after my own going-away party. I drove the four hours down to Janesville to see her off and spend a night with my old friends and coworkers in the city where I lived for almost three years.", "title": "Night in Janesville / August 2010", "farm": "5", "date_update": "1376116931", "primary": "4928683392", "server": "4123", "date_create": "1282798868", "photos": "22", "secret": "d907713a7f", "owner": "10923163@N03", "vist_label": "going_away_party", "id": "72157624685271305"}, {"description": "May 26, 2007", "title": "Big Going Away Party", "farm": "1", "date_update": "1357158506", "primary": "516398515", "server": "233", "date_create": "1180287524", "photos": "21", "secret": "7069d9c90d", "owner": "60449310@N00", "vist_label": "going_away_party", "id": "72157600272663173"}, {"description": "F13 Release Party at Saxbys coffee shop in Walnut Creek ", "title": "Fedora 13 Release Party - Northern California", "farm": "5", "date_update": "1296677161", "primary": "4657288522", "server": "4033", "date_create": "1275334733", "photos": "12", "secret": "c8ab5f44b0", "owner": "40830689@N08", "vist_label": "going_away_party", "id": "72157624051098317"}, {"description": "Horsing around in the lake.", "title": "In The Water", "farm": "1", "date_update": "1300567932", "primary": "38108965", "server": "31", "date_create": "846237", "photos": "15", "secret": "5e1b995e13", "owner": "66908011@N00", "vist_label": "going_away_party", "id": "846237"}, {"description": "Amy's going away party from POP, held at the Buckaroo tavern in Fremont (then later on at Dad Watson's). ", "title": "McJulian: The Buckaroo Party", "farm": "1", "date_update": "1317867773", "primary": "44909283", "server": "31", "date_create": "981650", "photos": "11", "secret": "da47812940", "owner": "22936402@N00", "vist_label": "going_away_party", "id": "981650"}, {"description": "", "title": "Maile's Going Away party", "farm": "1", "date_update": "1297426825", "primary": "64051523", "server": "34", "date_create": "1132424756", "photos": "25", "secret": "3ca263415e", "owner": "35034351236@N01", "vist_label": "going_away_party", "id": "1399396"}, {"description": "Our Leaving for London Party 2006, thanks to Dan & Ann", "title": "Leaving For London 2006", "farm": "1", "date_update": "1340707168", "primary": "102374673", "server": "24", "date_create": "1140483205", "photos": "18", "secret": "5bc0fdcf84", "owner": "76215772@N00", "vist_label": "going_away_party", "id": "72057594067732259"}, {"description": "Main St. Liquid Co. / August 18, 2006", "title": "Dina's Going Away Party", "farm": "1", "date_update": "1356199174", "primary": "220673016", "server": "73", "date_create": "1156132157", "photos": "23", "secret": "b62dc79e5d", "owner": "90004649@N00", "vist_label": "going_away_party", "id": "72157594245097786"}, {"description": "", "title": "UIC Going Away Party", "farm": "1", "date_update": "1301346767", "primary": "242427259", "server": "98", "date_create": "1158163824", "photos": "27", "secret": "788188113d", "owner": "62562690@N00", "vist_label": "going_away_party", "id": "72157594282668993"}, {"description": "", "title": "kiki's 30th", "farm": "1", "date_update": "1356200450", "primary": "387161394", "server": "145", "date_create": "1171233562", "photos": "10", "secret": "9454e36eba", "owner": "22846216@N00", "vist_label": "going_away_party", "id": "72157594530445108"}, {"description": "", "title": "Fiesta de despedida de Alex", "farm": "2", "date_update": "1351361408", "primary": "839713476", "server": "1386", "date_create": "1184697535", "photos": "10", "secret": "9096c9822a", "owner": "26395196@N00", "vist_label": "going_away_party", "id": "72157600872071738"}, {"description": "What we get to do everyday is pretty special and we love to share it with our fans. From the moment the empty shell arrives at our doorstep to the moment the stunning end result rolls off the production line, the journey is an amazing process and we're excited to take you along for the ride. Larry and Terri are always on the go. From their homebase in Maryland to their beautiful lot at Bluewater Key, they're on the move. \nWe're going to keep in touch and keep you in touch over the next few months as we put together their new "Home away from Home." From designing the paint and graphics and selecting the fabrics and finishes right up until the final unveiling. Be sure to check back often, this is one ride you don't want to miss! \nThis story really starts several years ago when Larry and Terri bought their first Millennium at the Tampa Super Show. It was love at first sight. They fell in love with the coach and we fell in love with them! They're two of the nicest people you'll ever have the pleasure of meeting and we've really enjoyed getting to know them during the last few years. So you can well imagine how excited we were when they decided to custom build a new Millennium!\n", "title": "1656 - Feb", "farm": "5", "date_update": "1343931129", "primary": "5411564288", "server": "4078", "date_create": "1296680029", "photos": "13", "secret": "7087082fa5", "owner": "45460389@N07", "vist_label": "going_away_party", "id": "72157625837785063"}, {"description": "Silver Lake, LA, CA", "title": "V's Going Away (for a Month) Animal Party", "farm": "5", "date_update": "1362160396", "primary": "5412909914", "server": "4148", "date_create": "1296724539", "photos": "14", "secret": "39f9110c96", "owner": "21382508@N05", "vist_label": "going_away_party", "id": "72157625966685320"}, {"description": "", "title": "Rambod's Going Away Rager", "farm": "6", "date_update": "1362160396", "primary": "5632590085", "server": "5183", "date_create": "1303176498", "photos": "10", "secret": "e04d9c14b3", "owner": "21382508@N05", "vist_label": "going_away_party", "id": "72157626403967007"}, {"description": "We celebrated Daniel Mehaffie on Tuesday, July 12, 2011 before he moves off to Indiana.", "title": "Mehaffie Going Away Party - July 2011", "farm": "7", "date_update": "1313876975", "primary": "5945198402", "server": "6017", "date_create": "1310871806", "photos": "20", "secret": "e4f2254ed4", "owner": "96261818@N00", "vist_label": "going_away_party", "id": "72157627211702284"}, {"description": "", "title": "Xin's going away party", "farm": "9", "date_update": "1358637506", "primary": "7271685632", "server": "8142", "date_create": "1338010945", "photos": "11", "secret": "860c863f71", "owner": "22722692@N00", "vist_label": "going_away_party", "id": "72157629900151022"}, {"description": "Lucha VaVOOM headlines the \u2018El Jimador Mexican Wrestling Bar' At Big Day Out 2013; Sydney, Australia\n\nRed hot extreme Lucha Libre pro wrestling and more is what Sydney got at today's Big Day Out in heatwave continues.\n\nThe action and lucha heat matched the heatwave conditions.\n\nSadly, not many lucha wrestling masks were sold (they don't feel so good at the best of times, let alone in the heat), but drink sales were at fever pitch, as was crowd participation, with even a couple of fans having an impromptu "match" before official bell time. Interestingly, the Lucha promoter didn't seem to mind. There was also the good old Mexican wave done by what must have been about 500 fans, many of which also screamed out Ric Flair trademark "Wooooo"! calls (with and without wrestling chops to the chest).\n\nThe Lucha's will be in Australia for about a week, as part of Australia's Big Day Out festival touring Australia, and then they will work they was back to LA in the U.S of A.\n\nThe megastars of Los Angeles based Lucha VaVoom rumbled to fever pitch at the music festival and fans lapped up the mix of Mexican lucha libre wrestling, burlesque dancing and "post-punk vaudeville", as The Daily Telegraph called it.\n\nInspired by the Mexican pseudo sport whose champions are household names, the sequin and lycra-clad luchadores flip and fly in the wrestling ring in good (technicos) VS evil (rudos) matches. Headline stars such as Cassandro, Crazy Chicken, Dirty Sanchez and Chocolate Caliente are very good pro wrestlers, and heavily inspired by punk and cabaret, but the look of things.\n\nCo-founder Rita D'Albert worked with rock bands for years before forming this unique act a decade ago.\n\n"I think crazy Mexican wrestling is a pretty natural progression from rock'n'roll," she said. "It's theatrical, it's got energy and a lot of rock shows don't have that anymore."\n\nMedia Man and Wrestling News Media have seen a lot of pro wrestling in their day and were overheard "WWE might be generally more technical than Lucha VaVoom, but this LA Mexican troupe is all over them for extreme stuff - the kind that put the legendary and original ECW on the map. Judging by today, Lucha VaVoom looks to have a fantastic and extreme future in Australia. As WWE superstar Ryback would say, "Feed Me More". Oh, dream match we want to see - WWE's Rey Mysterio VS any of these guys. It will probly never happen, but we can dream.\n\nToday lucha sports entertainment was certainly a dream come true for many Australian pro wrestling fans who like their pro wrestling more on the extreme, colourful and musical side. WrestleMania look out!\n \n\nPress Release...\n\nLUCHA VaVOOM TO HEADLINE THE \u2018EL JIMADOR MEXICAN WRESTLING BAR\u2019 AT BIG DAY OUT 2013...\n\nLUCHA VAVOOM HEADED TO BIG DAY OUT 2013...\n\nDirect from the US, the Lucha VaVOOM troupe will be putting on a show quite unlike any other at BIG DAY OUT 2013. Lucha VaVOOM is non-stop, action-packed surrealism where Mexican masked wrestlers perform breathtaking acrobatic feats in a fast-paced, fun-filled, character-driven style. Known for their far-out flamboyance, its quick, exhibition-style, one-fall Lucha Libre matches designed for maximum enjoyment and action.\n\nThe ultimate distraction, Lucha VaVOOM like a little sexo with their violencia; in between matches the finest handpicked burlesque acts from around the world wow the crowds with their unique striptease skills including raucous aerial acts, pogo-stick peelers and hula-hoop hotties. Their insane antics have Jack Black proclaiming \u201cLucha VaVOOM is the shit!\u201d and it\u2019s easy to see why.\n\nCelebrating their tenth anniversary, Lucha VaVOOM have only got crazier over time. Rooted in history, they draw inspiration from the bizarre world of sixties Mexican Lucha Cinema. The troupe has been considered one of the most outrageous shows on earth having performed sold-out shows all around the world, they have taken to the stage alongside the likes of legends such as Jon Stewart and Dave Chappelle, as well as appearances on Jimmy Kimmel, Attack of the Show, Carson Daly and A Current Affair. Los Angeles Times said the Lucha VaVOOM show \u201chas the pacing of a prison break\u201d and BIG DAY OUT 2013 punters are set for something spectacular with the crew perform in a dedicated area. Here\u2019s what the press have had to say:\n\n\u201cLucha VaVOOM has a big future.\u201d TIME MAGAZINE\n\n\u201c\u2026 It\u2019s enough to make even the most jaded Hollywood insider jump up and yell \u2018Smackdown.\u201d ROLLING STONE\n\n\u201c\u2026a raucous and irreverent extravaganza of burlesque, comedy and classic Mexican luchadore wrestling.\u201d THE HUFFINGTON POST.\n\n\u201cLucha VaVoom is the most exciting, bonkers show I\u2019ve seen in ages.\u201d THE FACE (UK)\n\n\u201cA madcap mix of Mexican wrestling, comedy, and vintage burlesque. I love, love, love it.\u201d VANITY FAIR\n\n\u201c\u2026a weird mix of cabaret, burlesque, Mexican Luchador wrestling with a live DJ, crowd interaction and commentary\u2026depending on the night, people like Drew Carey turn up to do commentary for it. It is the most bizarre experience. The entire audience is dressed up and it\u2019s like Halloween, everyone is in some weird costume. It was the greatest night of entertainment I have probably seen in my entire life.\u201d ROVE MCMANUS\n\nLucha VaVOOM will be appearing at the El Jimador Mexican Wrestling Bar at all 2013 Big Day Out dates.\n\n\nMexican Masked Wrestling + Burlesque + Comedy = Lucha VaVOOM...\n\nLucha VaVOOM is a non-stop, action-packed scream-a-thon, where Mexican Masked wrestlers flip and fly, performing breathtaking acrobatic feats while battling evil luchadores. Historically speaking, Lucha VaVOOM brings the bizarre world of 60\u2019s Mexican Lucha Cinema to life. Brave, masked wrestling crime fighters save the world from evil brains, vampires, the Bermuda Triangle etc; always with an obligatory stop at the local go-go club.\n\nIn-between matches, the finest, handpicked burlesque acts from around the world astound; at Lucha VaVOOM, we like a little sexo with our violencia. Raucous aerial acts, Pogo-stick peelers, hula-hoop hotties; we\u2019ve got it all!\n\nBut wait there\u2019s more! Our color commentary is handled by comedians Tom Kenny, Dana Gould and Blaine Capatch. Other guest commentators include Fred Armisen, Brian Poussein, Patton Oswalt, Greg Proops, Jeffrey Ross and Bobcat Goldthwait. Even Jack Black sat in, proclaiming \u201cLucha VaVOOM is the sh*t!\n\nIt all began in August 2003 as a one off event. The overwhelming crowd response convinced Rita & Liz to do it again, and as soon as possible.\n\nEver since, Lucha VaVOOM has played at the Mayan Theater in Los Angeles three times a year -- Valentines Day, Mid-summer, and Halloween. From there, Lucha brought it\u2019s circus to Toronto, where they did two nights at the Koolhaus and made every newspaper and TV news program, including Much Music.\n\nIn 2005, Lucha VaVOOM was asked to be a part of the first HBO Las Vegas Comedy Festival, where they performed alongside Jon Stewart, Lewis Black and Dave Chapelle. That same year they performed at the famous Sony E3 party at Dodger Stadium, where they took the spotlight away from the Pussycat Dolls.\n\nLucha VaVOOM has gone on to perform in Chicago, San Francisco and Amsterdam, with more cities on the way.\n\nThey\u2019ve also appeared on Jimmy Kimmel, CBS National News, G4's Attack of the Show, Channel X in Britain and A Current Affair just to name a few.\n\nWebsites\n\nBig Day Out\nwww.bigdayout.com\n\nBig Day Out - Lucha VaVOOM\nwww.bigdayout.com/mexican-wrestling-bar\n\nLucha VaVOOM official website\nwww.luchavavoom.com\n\nMedia Man Int\nwww.mediamanint.com\n\nEva Rinaldi Photography\nwww.evarinaldi.com\n\nEva Rinaldi Photography Flickr - Lucha VaVOOM\nwww.flickr.com/photos/evarinaldiphotography/sets/72157632...\n\nWrestling News Media\nwww.wrestlingnewsmedia.com", "title": "Lucha vaVoom, Big Day Out", "farm": "9", "date_update": "1398369014", "primary": "8392279026", "server": "8363", "date_create": "1358510806", "photos": "27", "secret": "8b3dd355eb", "owner": "58820009@N05", "vist_label": "going_away_party", "id": "72157632548092471"}, {"description": "Click here to learn more about Camp Humphreys\n\nU.S. Army photos by Jaeyeon Sim\n\nUSO celebrates 72 years entertaining, taking care of Soldiers\n\nBy Jaeyeon Sim\nUSAG Humphreys Public Affairs\n\nCAMP HUMPHREYS \u2013 In celebration of United Service Organizations 72 years of service to military personnel around the world, the Camp Humphreys USO hosted a birthday celebration Feb. 4.\n\nThe USO was originally founded on Feb. 4, 1941 at the request of then U.S. President Franklin D. Roosevelt.\n\nAbout 50 people attended the celebration, including Brig. Gen. Darryl A. Williams, the deputy commanding general for support, 2nd Infantry Division.\n\nThe celebration opened with a brief prayer by Chap. (Maj.) Ricky A. Way, the U.S. Army Garrison Humphreys chaplain. Then Lori Conkright, wife of Col. Darin S. Conkright, Humphreys Garrison commander, and Williams provided remarks. They were then joined by Tami Hager, the Camp Humphreys USO manager, to cut the birthday cake.\n\nThe USO provides a variety of services for Soldiers and their families.\n\n\u201cAt the Camp Humphreys USO, we provide diverse programs for Soldiers and their families,\u201d Hager said. \u201cFor instance, we serve free lunch, called \u2018Lunchbox,\u2019 every second and fourth Wednesday from 11:30 a.m. until the food runs out and once a month; we drive around post and hand out free snacks to Soldiers who work outdoors. The Humphreys USO is very active. We like to do all we can for our community.\u201d\n\nBesides programs, they also provide use of SKYPE phones, scanner, Xbox games and more.\n\n \u201cAlthough Soldiers are away from their families, the USO provides an atmosphere where you are close to each other,\u201d said Spc. Albert E. Nicdao, of Headquarters and Headquarters Company, 4th Attack Reconnaissance Battalion, 2nd Aviation Regiment. \u201cIt feels like home when you inside. You know, you can relax when Soldiers go through a tiring day. And also we can get a chance to talk to the family for free. So, I think USO really cares for Soldiers.\u201d\n", "title": "USO 72nd B-Day Party - U.S. Army Garrison Humphreys, South Korea - 6 February 2013", "farm": "9", "date_update": "1435189920", "primary": "8491733536", "server": "8233", "date_create": "1361342758", "photos": "30", "secret": "134dc91580", "owner": "31687107@N07", "vist_label": "going_away_party", "id": "72157632806954073"}, {"description": "Some of my coworkers out at O'Briens in Brandon, FL. to say good luck and "bon chance" to everyone who's moving on...", "title": "04/2013; O'Briens Going Away", "farm": "9", "date_update": "1365485408", "primary": "8627047156", "server": "8528", "date_create": "1365311631", "photos": "29", "secret": "22fc6cfeea", "owner": "50687522@N00", "vist_label": "going_away_party", "id": "72157633184822264"}, {"description": "WASHINGTON, D.C. (April 26)- Marines from the Wounded Warrior Battalion East graduate from a 8 week equestrian program at Rock Creek Park Horse Center. ", "title": "110426 Equestrian Program", "farm": "3", "date_update": "1337782779", "primary": "5790273812", "server": "2522", "date_create": "1307023100", "photos": "14", "secret": "a80c1f5e93", "owner": "62131719@N04", "vist_label": "graduation_ceremony", "id": "72157626743581057"}, {"description": "Some pictures from the graduation ceremony in Second Life.", "title": "University of Edinburgh Graduation in Second Life: July, 2010", "farm": "5", "date_update": "1407216706", "primary": "4755299024", "server": "4094", "date_create": "1278086286", "photos": "10", "secret": "467061332e", "owner": "13518023@N03", "vist_label": "graduation_ceremony", "id": "72157624281890851"}, {"description": "", "title": "Commencement 2009: Penn College", "farm": "5", "date_update": "1430511246", "primary": "4950511269", "server": "4135", "date_create": "1287618380", "photos": "11", "secret": "fc3360cb7e", "owner": "53130103@N05", "vist_label": "graduation_ceremony", "id": "72157625082576413"}, {"description": "June 3, 2011", "title": "SUPAR Graduation & awards ceremony", "farm": "6", "date_update": "1391166593", "primary": "5796590711", "server": "5031", "date_create": "1307204465", "photos": "19", "secret": "6091b2767f", "owner": "14678786@N00", "vist_label": "graduation_ceremony", "id": "72157626883275776"}, {"description": "My dear friend Katie graduated from BSU in May 2009!!", "title": "Katie's Graduation", "farm": "4", "date_update": "1298046166", "primary": "3517005154", "server": "3337", "date_create": "1241911317", "photos": "12", "secret": "2268f80f31", "owner": "38371038@N00", "vist_label": "graduation_ceremony", "id": "72157617832818157"}, {"description": "Students from Kobe Seijoh High School students have visited Santa Catalina School for the past 29 summers to study English. While the courses are not taught by Santa Catalina faculty, they are held on our Spanish-style campus each year. At the end of their stay, the students put on a performance for their homestay families and the Catalina community.\n\nWe love having these eager English learners visit us!", "title": "Kobe Seijoh High School students visit Monterey, California", "farm": "7", "date_update": "1433961648", "primary": "6026552536", "server": "6208", "date_create": "1312912897", "photos": "21", "secret": "b13d51437d", "owner": "52271817@N02", "vist_label": "graduation_ceremony", "id": "72157627270728793"}, {"description": "", "title": "SU Graduation 2009", "farm": "4", "date_update": "1297267158", "primary": "3521670895", "server": "3408", "date_create": "1242053820", "photos": "12", "secret": "7b753da398", "owner": "33032196@N00", "vist_label": "graduation_ceremony", "id": "72157617993794464"}, {"description": "Winchester Cathedral Close on an autumn evening 10th November 2011", "title": "Winchester ", "farm": "7", "date_update": "1435123169", "primary": "6333854725", "server": "6228", "date_create": "1321017691", "photos": "13", "secret": "dccab2185c", "owner": "32662631@N00", "vist_label": "graduation_ceremony", "id": "72157627978450369"}, {"description": "Graduation ceremony at Stanford University. June 14th, 2009.", "title": "Stanford Graduation", "farm": "4", "date_update": "1356150887", "primary": "3626595475", "server": "3342", "date_create": "1245054076", "photos": "21", "secret": "2059905704", "owner": "85826122@N00", "vist_label": "graduation_ceremony", "id": "72157619680518585"}, {"description": "", "title": "SAES Graduation Class of 2017", "farm": "5", "date_update": "1297014694", "primary": "4701477749", "server": "4028", "date_create": "1276568932", "photos": "26", "secret": "014c3b33cb", "owner": "25389429@N05", "vist_label": "graduation_ceremony", "id": "72157624153192795"}, {"description": "My big sister gets her psychology degree from the Open University at Portsmouth Guildhall on April 14, 2007.", "title": "Susan's Graduation 2007", "farm": "1", "date_update": "1325678407", "primary": "459588543", "server": "189", "date_create": "1176623592", "photos": "14", "secret": "adf85eb1b2", "owner": "58904631@N00", "vist_label": "graduation_ceremony", "id": "72157600078215468"}, {"description": "Graduation of Students and professors from the College of Fashion\n\nand Sandra", "title": "Royal Festival Hall Graduation", "farm": "5", "date_update": "1435253383", "primary": "4800011184", "server": "4101", "date_create": "1279305387", "photos": "21", "secret": "792b5d5910", "owner": "32323502@N00", "vist_label": "graduation_ceremony", "id": "72157624516029402"}, {"description": "CJE joins the Hokie alumni ranks.", "title": "VT Graduation 2009", "farm": "3", "date_update": "1300885400", "primary": "3541356398", "server": "2206", "date_create": "1255668564", "photos": "25", "secret": "c06fbaf3f5", "owner": "91743969@N00", "vist_label": "graduation_ceremony", "id": "72157622470704661"}, {"description": "Chris's graduation ceremony took place in the Great Hall at Queen Mary College, University of London on 23rd July 2010.", "title": "Chris Graduation", "farm": "5", "date_update": "1356259651", "primary": "4823822082", "server": "4098", "date_create": "1279976740", "photos": "13", "secret": "d4497bba24", "owner": "14108812@N04", "vist_label": "graduation_ceremony", "id": "72157624446083413"}, {"description": "", "title": "Dr. Nancy Gary", "farm": "7", "date_update": "1319482420", "primary": "6276934381", "server": "6235", "date_create": "1319481820", "photos": "11", "secret": "3bc488d92b", "owner": "48481327@N07", "vist_label": "graduation_ceremony", "id": "72157627969263208"}, {"description": "Plainwell High School Trojans Class of 2009.\n\nGraduation ceremony May 28, 2009", "title": "PHS Graduation '09", "farm": "4", "date_update": "1297286904", "primary": "3574392355", "server": "3632", "date_create": "1243650706", "photos": "18", "secret": "66fb8f1d4e", "owner": "61963330@N00", "vist_label": "graduation_ceremony", "id": "72157618984682634"}, {"description": "", "title": "DuBois holds commencement and anniversary events", "farm": "5", "date_update": "1430511246", "primary": "4946436736", "server": "4110", "date_create": "1287618506", "photos": "12", "secret": "ae3b20bce6", "owner": "53130103@N05", "vist_label": "graduation_ceremony", "id": "72157625082585609"}, {"description": "", "title": "2006 Kindergarten Graduation", "farm": "1", "date_update": "1298051032", "primary": "127564434", "server": "44", "date_create": "1144868451", "photos": "16", "secret": "76303007c7", "owner": "73304058@N00", "vist_label": "graduation_ceremony", "id": "72057594105488493"}, {"description": "Just the back of our house.", "title": "Kandace's Graduation", "farm": "1", "date_update": "1356307460", "primary": "34041034", "server": "21", "date_create": "754408", "photos": "20", "secret": "b831f307b4", "owner": "54084941@N00", "vist_label": "graduation_ceremony", "id": "754408"}, {"description": "On Tuesday, June 14 the Nova Scotia Community College held the final graduation ceremonies for the Bell Road location of the Halifax Campus at the Rebecca Cohn Theatre.", "title": "Screen Arts Graduation 2005", "farm": "1", "date_update": "1380630133", "primary": "19789483", "server": "17", "date_create": "463870", "photos": "36", "secret": "173ecd7aec", "owner": "51035566106@N01", "vist_label": "graduation_ceremony", "id": "463870"}, {"description": "Andrew's graduation from West Chester University in Dec. 06.", "title": "Andrew's Graduation WCU", "farm": "1", "date_update": "1356381843", "primary": "363879707", "server": "85", "date_create": "1169334517", "photos": "27", "secret": "78e968fa19", "owner": "50678338@N00", "vist_label": "graduation_ceremony", "id": "72157594490707109"}, {"description": "Max, Nicholas, Summer graduation ceremony\n\nmore will be upload in the future.", "title": "Max Graduation", "farm": "1", "date_update": "1400130048", "primary": "273348349", "server": "103", "date_create": "1161203579", "photos": "40", "secret": "48b12c121a", "owner": "60984297@N00", "vist_label": "graduation_ceremony", "id": "72157594334689344"}, {"description": "Trip to San Diego to celebrate my grandson's graduation from Marine basic training.", "title": "Marine Graduation - San Diego", "farm": "1", "date_update": "1305408765", "primary": "302754684", "server": "111", "date_create": "1164025871", "photos": "38", "secret": "8c9e15e39f", "owner": "99884310@N00", "vist_label": "graduation_ceremony", "id": "72157594384130299"}, {"description": "Photos of Stewart Coles\nCharlie Company, 2nd Platoon\nUSMC Officer Candidate School \nGraduation 193\nDecember 2006", "title": "OCS 193, Graduation", "farm": "1", "date_update": "1369117369", "primary": "380025870", "server": "140", "date_create": "1170641594", "photos": "34", "secret": "e08685293f", "owner": "57001982@N00", "vist_label": "graduation_ceremony", "id": "72157594518186150"}, {"description": "", "title": "Nick's Graduation", "farm": "1", "date_update": "1325906201", "primary": "505806624", "server": "192", "date_create": "1179668789", "photos": "28", "secret": "65d5b424b4", "owner": "44008824@N00", "vist_label": "graduation_ceremony", "id": "72157600234507180"}, {"description": "Megan Cook B.App.Sc", "title": "Megan's Graduation", "farm": "2", "date_update": "1356166130", "primary": "1459782721", "server": "1325", "date_create": "1191109461", "photos": "27", "secret": "7bd96ddff6", "owner": "68676385@N00", "vist_label": "graduation_ceremony", "id": "72157602202104234"}, {"description": "2006-2007, consisting of laughs and tears", "title": "Stirling MBA Life", "farm": "3", "date_update": "1325084838", "primary": "2062421600", "server": "2254", "date_create": "1186453094", "photos": "46", "secret": "dd8cdc548c", "owner": "34701370@N00", "vist_label": "graduation_ceremony", "id": "72157601271054577"}, {"description": "Pennsbury Class of 2008", "title": "Michael's Graduation", "farm": "4", "date_update": "1369117369", "primary": "2666525572", "server": "3209", "date_create": "1216002049", "photos": "10", "secret": "62643ef625", "owner": "57001982@N00", "vist_label": "graduation_ceremony", "id": "72157606154057289"}, {"description": "", "title": "graduation", "farm": "4", "date_update": "1297009330", "primary": "2930011467", "server": "3015", "date_create": "1223697302", "photos": "30", "secret": "55d340365d", "owner": "11160084@N03", "vist_label": "graduation_ceremony", "id": "72157607918278026"}, {"description": "", "title": "GT Commencement Fall '08", "farm": "4", "date_update": "1357122371", "primary": "3118013790", "server": "3193", "date_create": "1229591791", "photos": "16", "secret": "66f30e5706", "owner": "21435131@N06", "vist_label": "graduation_ceremony", "id": "72157611387513908"}, {"description": "SPIN BULDAK, Afghanistan--Afghan Border Police (ABP) Officers receive their certificates of completion for the Focused Border Development Training Program during a ceremony held outside the ABP Border Center at Spin Buldak on April 2, 2009. Two-hundred new Border Police Officers graduated from the seven-week training program. This is the first group from the 3rd Zone to receive the training which taught fundamentals in entry-control points, road blocks, and other areas such as vehicle maintenance and infantry patrol.", "title": "ABP Graduation Ceremony 090402", "farm": "4", "date_update": "1412193377", "primary": "3406270893", "server": "3565", "date_create": "1238679946", "photos": "12", "secret": "749ff0d5fe", "owner": "29456680@N06", "vist_label": "graduation_ceremony", "id": "72157616261541878"}, {"description": "Nazareth's Graduate Commencement took place May 9 on the Smyth front lawn before an at-capacity audience of family, friends, professors, and supporters. From creative caps to million-dollar smiles, our graduate students did not disappoint their onlookers.\n\nLearn More:\nwww.naz.edu", "title": "Graduate Commencement 2009", "farm": "4", "date_update": "1360784949", "primary": "3525683588", "server": "3330", "date_create": "1242138683", "photos": "13", "secret": "15198615ab", "owner": "34600060@N08", "vist_label": "graduation_ceremony", "id": "72157617949218325"}, {"description": "", "title": "Hazel's graduation", "farm": "4", "date_update": "1356720132", "primary": "3494627487", "server": "3547", "date_create": "1292760686", "photos": "13", "secret": "213b1e3204", "owner": "78462059@N00", "vist_label": "graduation_ceremony", "id": "72157625503935527"}, {"description": "Max and Shilad graduate from the U.", "title": "Ph.D. Graduation", "farm": "4", "date_update": "1399074105", "primary": "3549359579", "server": "3311", "date_create": "1242859444", "photos": "16", "secret": "6d30c248d7", "owner": "41471683@N00", "vist_label": "graduation_ceremony", "id": "72157618548780362"}, {"description": "", "title": "Catherine's HS Graduation", "farm": "4", "date_update": "1430433624", "primary": "3586717501", "server": "3644", "date_create": "1243901939", "photos": "22", "secret": "a4d8a57298", "owner": "62637674@N00", "vist_label": "graduation_ceremony", "id": "72157619115629898"}, {"description": "", "title": "Em's Graduation", "farm": "4", "date_update": "1321811580", "primary": "3618032207", "server": "3300", "date_create": "1244781835", "photos": "13", "secret": "1db20c32a9", "owner": "47677885@N00", "vist_label": "graduation_ceremony", "id": "72157619624973860"}, {"description": "", "title": "\u5143\u667a98\u7d1a\u7562\u696d\u5178\u79ae", "farm": "4", "date_update": "1356150678", "primary": "3604268796", "server": "3381", "date_create": "1245077150", "photos": "29", "secret": "2fb7071a63", "owner": "89502635@N00", "vist_label": "graduation_ceremony", "id": "72157619692962767"}, {"description": "", "title": "05.06.2011 NWFSC Graduation", "farm": "4", "date_update": "1330487255", "primary": "5694504186", "server": "3524", "date_create": "1304717934", "photos": "13", "secret": "33f8a18790", "owner": "8471109@N06", "vist_label": "graduation_ceremony", "id": "72157626662576104"}, {"description": "", "title": "BPS Multicultural Marketing Grad Celebration", "farm": "3", "date_update": "1356139717", "primary": "5741696035", "server": "2427", "date_create": "1305958342", "photos": "25", "secret": "bca1fb0145", "owner": "35886662@N02", "vist_label": "graduation_ceremony", "id": "72157626644157407"}, {"description": "Twenty special-operations Soldiers clad in academic regalia and jump boots crossed the John F. Kennedy Auditorium stage June 3 to receive diplomas from the National Defense University\u2019s College of International Security Affairs. These individuals made up the first class to be awarded fully accredited Master of Arts degrees in strategic-security studies through CISA\u2019s Fort Bragg campus at the U.S. Army John F. Kennedy Special Warfare Center and School. \n", "title": "NDU Thesis Presentations and Graduation", "farm": "3", "date_update": "1328718912", "primary": "5809156380", "server": "2186", "date_create": "1307470358", "photos": "27", "secret": "d61d99924f", "owner": "54636546@N02", "vist_label": "graduation_ceremony", "id": "72157626784170543"}, {"description": "My youngest child graduated from high school, June 11, 2011. These are just a few photos for sharing purposes with those not on my Facebook. ", "title": "Christine's Graduation", "farm": "4", "date_update": "1432666003", "primary": "5822651394", "server": "3091", "date_create": "1307831410", "photos": "30", "secret": "fc3b79a4d6", "owner": "21395617@N03", "vist_label": "graduation_ceremony", "id": "72157626814267273"}, {"description": "The graduation of the first class of ExTEND (Transitioning Extension to New Dimensions) included a luncheon and celebration in Athens. \n\n****\nThese images were developed as an educational resource for our faculty, staff, researchers and clients. Please credit the photographer and UGA CAES with each use. Permission is required to use the photograph for any other purpose, including but not limited to, commercial, advertising or illustrative purposes. Contact the Office of Communications and Technology Services at 706-542-8981 with questions.\n", "title": "ExTEND Graduation 2011", "farm": "7", "date_update": "1432662757", "primary": "6286280529", "server": "6104", "date_create": "1319737901", "photos": "20", "secret": "90991cd16a", "owner": "51400742@N07", "vist_label": "graduation_ceremony", "id": "72157627866775475"}, {"description": "", "title": "Ferrum College Commencement 2012", "farm": "8", "date_update": "1336241385", "primary": "6999553640", "server": "7053", "date_create": "1336241380", "photos": "16", "secret": "e0691b6ccf", "owner": "48720291@N02", "vist_label": "graduation_ceremony", "id": "72157629972234013"}, {"description": "", "title": "SECDEF at USNA 2012 Graduation and Commissioning ceremony", "farm": "9", "date_update": "1362151969", "primary": "7296534086", "server": "8144", "date_create": "1338316794", "photos": "11", "secret": "6b348a6ca5", "owner": "68842444@N03", "vist_label": "graduation_ceremony", "id": "72157629955722010"}, {"description": "Afghan Brig. Gen. Abdul Raziq, the Kandahar provincial chief of police, attended an Afghan Border Police initial police training course graduation ceremony to support the newest ABP patrolmen in southern Afghanistan, May 31.", "title": "Training center strengthens ABP, graduates 79 new recruits", "farm": "8", "date_update": "1338885405", "primary": "7340371720", "server": "7233", "date_create": "1338885250", "photos": "11", "secret": "5737c286fd", "owner": "44825691@N08", "vist_label": "graduation_ceremony", "id": "72157630056039634"}, {"description": "22 new FWC officers ready to protect state\u2019s people, natural resources \n\n\u201cPatrol, protect, preserve.\u201d\nThe motto for the Florida Fish and Wildlife Conservation Commission\u2019s (FWC) Division of Law Enforcement was on the minds of 22 new officers Friday when they graduated as the FWC\u2019s 18th officer class. \nAt a ceremony at the Florida Public Safety Institute, near Tallahassee, they pledged their efforts to patrol Florida\u2019s lands and waters and protect and preserve its people and resources.\nCol. Jim Brown, director of the FWC\u2019s Division of Law Enforcement, mentioned how FWC officers are the first point of contact most people have with the agency.\n\u201cThis privilege carries great responsibility,\u201d Brown said. \u201cAs they interact with the public, I know these new officers will uphold our values: integrity, professionalism, dedication and adaptability.\u201d\nAs FWC officers, they will patrol Florida\u2019s lands \u2013 nearly 54,000 square miles of it \u2013 as well as more than 12,000 square miles of water. Due to their jurisdiction and specialized training and equipment, they are often the first to be able to respond to boating accidents, missing boaters and lost campers, hikers and hunters. In 2011, FWC officers saved nearly 900 people during search-and-rescue missions. \n\u201cThese officers will be protecting the \u2018Fishing Capital of the World\u2019 and one of the largest public hunting systems in the country,\u201d said FWC Chairman Kathy Barco, the guest speaker at the ceremony.\nThe new officers began their training in December. The beginning part of each FWC academy teaches recruits basic law enforcement techniques and skills.\n\u201cDuring the final eight weeks of each academy, we focus on the unique information and skills it takes to be an FWC officer,\u201d Brown said.\nThe specialized training involves firearms proficiency, wildlife identification, vessel operation, defensive tactics, all-terrain vehicle operation, detection for boating and driving under the influence and a focus on state and federal wildlife, fisheries and environmental laws. \nThe new officers will spend the next three months with a field-training officer and are assigned to the following counties: \nOliver Adams \u2013 Monroe Justin W. Miller \u2013 Glades\nMegan Aswall \u2013 Martin Domingo Montalvo-Diaz \u2013 Miami-Dade\nRandall Bibler \u2013 Monroe Gregory Patterson \u2013 Highlands\nAdam Bunker \u2013 Miami-Dade Paige Pestka \u2013 Miami-Dade\nJacob Cocke \u2013 DeSoto David Read \u2013 Broward\nJohn Conlin \u2013 Monroe Nicole Rodriguez \u2013 Broward\nJeremy Deweese \u2013 Okeechobee Wayne Sapp \u2013 St. Lucie\nSebastian Dri \u2013 Monroe Taylor Tison \u2013 Glades\nMatthew Griffis \u2013 Nassau Marcin Trawinski \u2013 Palm Beach\nBryan Little \u2013 Miami-Dade Joshua Troiano \u2013 Monroe\nJustin C. Miller \u2013 St. Johns Clint Williams \u2013 Hernando\n", "title": "DLE Class 18 Academy Graduation", "farm": "8", "date_update": "1435236035", "primary": "7178398491", "server": "7075", "date_create": "1339461539", "photos": "22", "secret": "4f90749684", "owner": "70969563@N03", "vist_label": "graduation_ceremony", "id": "72157630107880142"}, {"description": "Art School Communication Colledge Thursday", "title": "towards Royal Festival hall", "farm": "8", "date_update": "1435253382", "primary": "7605615692", "server": "7125", "date_create": "1342724122", "photos": "20", "secret": "1e7b9ff0d3", "owner": "32323502@N00", "vist_label": "graduation_ceremony", "id": "72157630655378016"}, {"description": "Princeton Reunions 1992 - My first Reunion! (But the fourth Reunions I had been to.)", "title": "Reunions 1992", "farm": "5", "date_update": "1434850197", "primary": "4701475930", "server": "4005", "date_create": "1218743414", "photos": "26", "secret": "880d347e01", "owner": "40646519@N00", "vist_label": "graduation_party", "id": "72157606729818137"}, {"description": "", "title": "Graduation 2010", "farm": "2", "date_update": "1418222623", "primary": "4610277492", "server": "1222", "date_create": "1273788617", "photos": "21", "secret": "8e270ee5cc", "owner": "28035080@N04", "vist_label": "graduation_party", "id": "72157623931145387"}, {"description": "Dec 17, 2011 - Marquette MI. Monica's graduation with a BS; major in English. The commencement was held in 'The Dome'. \nShe's applied to grad schools to pursue a degree in Social Work - no news yet as to where that journey will be launched from.", "title": "Monica's Graduation", "farm": "8", "date_update": "1432848474", "primary": "6528486735", "server": "7155", "date_create": "1324170283", "photos": "14", "secret": "3a2893d1b1", "owner": "63175942@N00", "vist_label": "graduation_party", "id": "72157628461758115"}, {"description": "Krystle's 18th Birthday / Graduation Party! Free Hello Kitty Picture booth!! ", "title": "Krystle's 18th 062710", "farm": "5", "date_update": "1317099578", "primary": "4742904699", "server": "4138", "date_create": "1277755513", "photos": "12", "secret": "4078938706", "owner": "7972895@N02", "vist_label": "graduation_party", "id": "72157624254024981"}, {"description": "Took more video than pictures, a few scenes from a definitive summer day.", "title": "Eric's Graduation Party 5.19.12", "farm": "8", "date_update": "1356664786", "primary": "7298581320", "server": "7075", "date_create": "1338338353", "photos": "14", "secret": "079c05e8bb", "owner": "57686217@N02", "vist_label": "graduation_party", "id": "72157629960452550"}, {"description": "", "title": "Eleni Graduation Party", "farm": "9", "date_update": "1338656349", "primary": "7321398408", "server": "8163", "date_create": "1338656338", "photos": "27", "secret": "5131caba03", "owner": "59998496@N00", "vist_label": "graduation_party", "id": "72157630013916068"}, {"description": "Valdez High School graduation, Class of 2012", "title": "Kayla's Graduation", "farm": "9", "date_update": "1356160205", "primary": "7769899940", "server": "8434", "date_create": "1344820151", "photos": "16", "secret": "cf44792a92", "owner": "9810534@N05", "vist_label": "graduation_party", "id": "72157631041082404"}, {"description": "Monterey Peninsula College, June 7, 2014", "title": "Nick Elias' graduation", "farm": "3", "date_update": "1402197251", "primary": "14369779154", "server": "2935", "date_create": "1402197132", "photos": "22", "secret": "d3d9c4bb17", "owner": "13789504@N03", "vist_label": "graduation_party", "id": "72157645108368763"}, {"description": "Finn's graduation and pool party! With friends from preschool.", "title": "Preschool Graduation", "farm": "4", "date_update": "1415683931", "primary": "14586799656", "server": "3871", "date_create": "1404877423", "photos": "18", "secret": "5d0c508086", "owner": "35367569@N00", "vist_label": "graduation_party", "id": "72157645175752377"}, {"description": "", "title": "Halloween Night 2010", "farm": "5", "date_update": "1300418124", "primary": "5135814666", "server": "4044", "date_create": "1288614590", "photos": "12", "secret": "3be1637cba", "owner": "7322032@N06", "vist_label": "halloween", "id": "72157625287632264"}, {"description": "In order to reward students with exemplary attendance, the City Year Diplomas Now Team hosts a special VIP Lounge, filled with treats and some Halloween Flair! ", "title": "Diplomas Now! Team at Chicago Talent: Fall VIP Lounge", "farm": "5", "date_update": "1350402381", "primary": "5135629427", "server": "4029", "date_create": "1288624171", "photos": "19", "secret": "3322eb6334", "owner": "30745127@N07", "vist_label": "halloween", "id": "72157625163882291"}, {"description": "", "title": "WMBA Halloween Bike Crit", "farm": "5", "date_update": "1353650009", "primary": "5136284742", "server": "4126", "date_create": "1288624198", "photos": "16", "secret": "99110f94ce", "owner": "11305815@N00", "vist_label": "halloween", "id": "72157625163885359"}, {"description": "", "title": "Halloween06", "farm": "1", "date_update": "1348504036", "primary": "364980313", "server": "151", "date_create": "1169413983", "photos": "24", "secret": "f11b7fa943", "owner": "14591941@N00", "vist_label": "halloween", "id": "72157594492450216"}, {"description": "", "title": "Emma's 4th Birthday", "farm": "5", "date_update": "1356228227", "primary": "4755825187", "server": "4077", "date_create": "1278118580", "photos": "18", "secret": "2114f4fc4a", "owner": "21131618@N00", "vist_label": "halloween", "id": "72157624409430634"}, {"description": "Ricky Berger and Adrian Bourgeois performing at the 2010 Dead Rockstars Halloween show @ Old Ironsides in Sacramento, CA", "title": "Ricky Berger & Adrian Bourgeois @ Old Ironsides, Halloween 2010", "farm": "5", "date_update": "1393055010", "primary": "5142564964", "server": "4103", "date_create": "1288781323", "photos": "11", "secret": "7f2772c55b", "owner": "98863761@N00", "vist_label": "halloween", "id": "72157625178191457"}, {"description": "", "title": "Ka 1507", "farm": "5", "date_update": "1383173507", "primary": "5143404211", "server": "4131", "date_create": "1288817232", "photos": "16", "secret": "be13b05a3b", "owner": "44573313@N03", "vist_label": "halloween", "id": "72157625306347444"}, {"description": "photos dug up and scanned from the old family photo album", "title": "family album", "farm": "1", "date_update": "1356190784", "primary": "352852683", "server": "125", "date_create": "1167711375", "photos": "21", "secret": "99dafdda57", "owner": "43567854@N00", "vist_label": "halloween", "id": "72157594453329123"}, {"description": "", "title": "Saigon", "farm": "5", "date_update": "1382640195", "primary": "4548443949", "server": "4029", "date_create": "1277329992", "photos": "21", "secret": "7e473ab180", "owner": "45758703@N03", "vist_label": "halloween", "id": "72157624218075171"}, {"description": "", "title": "Halloween 2011", "farm": "8", "date_update": "1328518565", "primary": "6828584669", "server": "7022", "date_create": "1328518555", "photos": "12", "secret": "e41953cbb3", "owner": "29729331@N08", "vist_label": "halloween", "id": "72157629197277031"}, {"description": "Our day in Montreal 2005 ", "title": "Montreal", "farm": "1", "date_update": "1356751532", "primary": "6111577", "server": "7", "date_create": "152764", "photos": "10", "secret": "f17aa53900", "owner": "69539023@N00", "vist_label": "halloween", "id": "152764"}, {"description": "", "title": "Drawings and Doodles", "farm": "5", "date_update": "1298079936", "primary": "4970849314", "server": "4124", "date_create": "1283945045", "photos": "23", "secret": "fc066f6d12", "owner": "33953301@N03", "vist_label": "halloween", "id": "72157624907734984"}, {"description": "", "title": "2002 Wells December Party?", "farm": "1", "date_update": "1337972874", "primary": "352301054", "server": "159", "date_create": "1168394462", "photos": "16", "secret": "a336b3adf7", "owner": "40489283@N00", "vist_label": "halloween", "id": "72157594470524497"}, {"description": "www.halloweensf.com/\n", "title": "Halloween in Castro 2003", "farm": "1", "date_update": "1370773863", "primary": "6711245", "server": "5", "date_create": "167476", "photos": "13", "secret": "82eafcb800", "owner": "13132576@N00", "vist_label": "halloween", "id": "167476"}, {"description": "", "title": "Halloween", "farm": "5", "date_update": "1313265350", "primary": "5088141697", "server": "4147", "date_create": "1287295445", "photos": "16", "secret": "b4274989ac", "owner": "51108727@N05", "vist_label": "halloween", "id": "72157625179918732"}, {"description": "Creation Entertainment's "Weekend of Horrors" hit Los Angeles May 21-23 2010. Guests included Dario Argento, Robert Englund, Jeffrey Combs, Kane Hodder, Heather Langenkamp, and more.", "title": "Weekend of Horrors 2010", "farm": "4", "date_update": "1356144802", "primary": "4634744278", "server": "3333", "date_create": "1274678769", "photos": "25", "secret": "b9fef67a16", "owner": "30139965@N05", "vist_label": "halloween", "id": "72157623999649361"}, {"description": "At Huize van Leijenhorst", "title": "Halloween 2010", "farm": "5", "date_update": "1297178911", "primary": "5110141321", "server": "4153", "date_create": "1287932978", "photos": "19", "secret": "98ca97db4f", "owner": "27759848@N02", "vist_label": "halloween", "id": "72157625230652462"}, {"description": "That's just a part of my dolls LOL,\nBut today's photo is a challenge, I hope I can take more beautiful photos in here. Thank you, My lovely doll family.", "title": "My doll family at 2010", "farm": "5", "date_update": "1325494576", "primary": "5110811387", "server": "4144", "date_create": "1287942698", "photos": "10", "secret": "c0c36a278c", "owner": "44496844@N06", "vist_label": "halloween", "id": "72157625231799556"}, {"description": "", "title": "hooded deer Celestial Bounce to Planet Halloween", "farm": "2", "date_update": "1356195221", "primary": "5110795457", "server": "1077", "date_create": "1287942290", "photos": "11", "secret": "9a8b0726cd", "owner": "57209451@N00", "vist_label": "halloween", "id": "72157625231750582"}, {"description": "Old pictures, of me mostly, from when cameras weren't digital.", "title": "Childhood", "farm": "1", "date_update": "1340975223", "primary": "369369676", "server": "139", "date_create": "1170705247", "photos": "18", "secret": "4055edbd36", "owner": "15125347@N00", "vist_label": "halloween", "id": "72157594519612355"}, {"description": "Costumes on Halloween weekend, 2002 in Austin", "title": "Halloween 2002", "farm": "1", "date_update": "1296222431", "primary": "5451982", "server": "4", "date_create": "137301", "photos": "12", "secret": "d5f1adef64", "owner": "37615286@N00", "vist_label": "halloween", "id": "137301"}, {"description": "Some photos taken during the first year class Halloween Celebration October 26th, 2011.", "title": "Halloween", "farm": "2", "date_update": "1366030386", "primary": "5117435905", "server": "1055", "date_create": "1288201371", "photos": "20", "secret": "da146e48a6", "owner": "12659736@N02", "vist_label": "halloween", "id": "72157625129431759"}, {"description": "Halloween 2010", "title": "halloween 2010", "farm": "5", "date_update": "1402530248", "primary": "5124819752", "server": "4012", "date_create": "1288313600", "photos": "11", "secret": "0a55133ab9", "owner": "28396605@N00", "vist_label": "halloween", "id": "72157625138326527"}, {"description": "These "cinemascope" style photos were taken at the 4th Wandsworth Common Beer Festival which was held at Le Gothique, in the Royal Victoria Patriotic Building, John Archer Way, Off Windmill Road, SW18 3SX. The Festival ran from 28-31 October 2010. 80 beers and 20 ciders were available, including some rare and one-off brews.", "title": "Wandsworth Common Halloween Beer Festival 2010", "farm": "2", "date_update": "1356432057", "primary": "5124259770", "server": "1327", "date_create": "1288296696", "photos": "10", "secret": "9937c981ef", "owner": "73279298@N00", "vist_label": "halloween", "id": "72157625261743758"}, {"description": "Made with Aniomagic Products\n- Schemer\n- LightBoards\n- SoundSensor\n\nwww.aniomagic.com/", "title": "Mask for Halloween with Schemer", "farm": "5", "date_update": "1382401655", "primary": "5130763820", "server": "4059", "date_create": "1288485514", "photos": "21", "secret": "8485bb4b57", "owner": "26775981@N05", "vist_label": "halloween", "id": "72157625276203234"}, {"description": "", "title": "Weekendje Salland", "farm": "2", "date_update": "1376046246", "primary": "5133577264", "server": "1360", "date_create": "1288563834", "photos": "26", "secret": "5720728e5d", "owner": "76543216@N00", "vist_label": "halloween", "id": "72157625283215680"}, {"description": "", "title": "Halloween 2010 - Monkey Tree Manor ", "farm": "5", "date_update": "1296249379", "primary": "5129710920", "server": "4022", "date_create": "1288471358", "photos": "14", "secret": "5bf0a211ac", "owner": "30559891@N00", "vist_label": "halloween", "id": "72157625150106939"}, {"description": "", "title": "Halloween '09", "farm": "5", "date_update": "1349823352", "primary": "4320097894", "server": "4032", "date_create": "1264970379", "photos": "10", "secret": "0e4c47cc65", "owner": "77442315@N00", "vist_label": "halloween", "id": "72157623197339229"}, {"description": "While demolishing the ugly fireplace upstairs, we found a gap in the mortar, through which a bunch of ephemera seems to have fallen in. The irony of the fire inspection certificate is that it and everything else in there was itself a fire hazard.", "title": "the chimney suite", "farm": "5", "date_update": "1313047481", "primary": "4320725257", "server": "4045", "date_create": "1264999380", "photos": "17", "secret": "7df5fd1eb6", "owner": "14403612@N00", "vist_label": "halloween", "id": "72157623324729396"}, {"description": "August 31, 2010. Photos by Ricky Brigante.", "title": "Halloween 2010 on Main Street USA at the Magic Kingdom", "farm": "5", "date_update": "1374737526", "primary": "4947303780", "server": "4082", "date_create": "1283309829", "photos": "19", "secret": "51f0e8e8b6", "owner": "68928263@N00", "vist_label": "halloween", "id": "72157624852981218"}, {"description": "", "title": "pumpkin party 2003", "farm": "1", "date_update": "1378502264", "primary": "483006", "server": "1", "date_create": "11799", "photos": "14", "secret": "2455801802", "owner": "49502971507@N01", "vist_label": "halloween", "id": "11799"}, {"description": "", "title": "2001-02 Pittsburgh", "farm": "2", "date_update": "1304974699", "primary": "775768818", "server": "1123", "date_create": "1184146832", "photos": "18", "secret": "d578b3d7f4", "owner": "76072259@N00", "vist_label": "halloween", "id": "72157600759188796"}, {"description": "", "title": "Dracula's Ball 2004 (Halloween)", "farm": "1", "date_update": "1300881039", "primary": "1183920", "server": "1", "date_create": "30356", "photos": "11", "secret": "d628b27028", "owner": "69491656@N00", "vist_label": "halloween", "id": "30356"}, {"description": "A Fiercely Scary LION", "title": "Halloween 2005", "farm": "1", "date_update": "1357158509", "primary": "58579307", "server": "29", "date_create": "1130864173", "photos": "10", "secret": "5657a5f52b", "owner": "60449310@N00", "vist_label": "halloween_party", "id": "1267016"}, {"description": "Pictures from Chris' work and the Chez Bays annual party", "title": "Halloween 2005", "farm": "1", "date_update": "1410738168", "primary": "58640291", "server": "26", "date_create": "1130873957", "photos": "30", "secret": "ecb23ad305", "owner": "35765940@N00", "vist_label": "halloween_party", "id": "1268379"}, {"description": "", "title": "Cathedral Fluo - Myspace party", "farm": "3", "date_update": "1356164635", "primary": "1814423100", "server": "2361", "date_create": "1193928688", "photos": "28", "secret": "f4b8bcda7c", "owner": "35058539@N00", "vist_label": "halloween_party", "id": "72157602825085661"}, {"description": "", "title": "2007 National Service Center halloween party", "farm": "3", "date_update": "1304136918", "primary": "1813724483", "server": "2249", "date_create": "1193931152", "photos": "26", "secret": "a1e9087ea8", "owner": "12796464@N00", "vist_label": "halloween_party", "id": "72157602825367937"}, {"description": "Halloween Party 2007", "title": "Halloween Party 2007", "farm": "3", "date_update": "1329866287", "primary": "1816155579", "server": "2229", "date_create": "1193954482", "photos": "18", "secret": "c97aed23fe", "owner": "61161701@N00", "vist_label": "halloween_party", "id": "72157602826978150"}, {"description": "", "title": "Hallowe'en @ S.A.T.", "farm": "3", "date_update": "1375900973", "primary": "1817143511", "server": "2409", "date_create": "1193960673", "photos": "23", "secret": "a919884a1e", "owner": "85931257@N00", "vist_label": "halloween_party", "id": "72157602828723902"}, {"description": "", "title": "Halloween 2013", "farm": "3", "date_update": "1406059517", "primary": "10600612583", "server": "2887", "date_create": "1383326944", "photos": "27", "secret": "f7a6d30b43", "owner": "22009152@N04", "vist_label": "halloween_party", "id": "72157637196375134"}, {"description": "The Woodruff Fontaine house offers tours, and it is rare that a 19th Century home in Memphis is open year round. On special occasions they offer themed tours, such as this Halloween night tour. The house is well known as haunted, and has been seen on the Sci Fi Channel show Ghost Hunters.", "title": "Halloween at Woodruff Fontaine House", "farm": "6", "date_update": "1414892168", "primary": "15065818094", "server": "5601", "date_create": "1414884980", "photos": "24", "secret": "fc449e02a4", "owner": "73246356@N00", "vist_label": "halloween_party", "id": "72157648674018690"}, {"description": "Photos by Daniel Andersson and Corinne Andersson", "title": "Mickey's Not-So-Scary Halloween Party 2014 at Walt Disney World", "farm": "4", "date_update": "1409671992", "primary": "15115169961", "server": "3895", "date_create": "1409669121", "photos": "30", "secret": "ed9f55d606", "owner": "68928263@N00", "vist_label": "halloween_party", "id": "72157646733993369"}, {"description": "", "title": "Catgotti Halloween Party 2007", "farm": "3", "date_update": "1360655336", "primary": "1847144819", "server": "2188", "date_create": "1194121125", "photos": "23", "secret": "eb9c21ead1", "owner": "50938313@N00", "vist_label": "halloween_party", "id": "72157602883754412"}, {"description": "Party in Matt and Ashley's Voodoo Lounge, I mean garage!", "title": "Halloween Party", "farm": "3", "date_update": "1345307995", "primary": "1875737002", "server": "2099", "date_create": "1194281684", "photos": "14", "secret": "232e97510c", "owner": "7313583@N04", "vist_label": "halloween_party", "id": "72157602938417219"}, {"description": "We are working our way through the elements now and this year's theme was "Air." I had fun decorating with balloons, bubble wrap, feathers, bugs and toy planes. My father even grabbed me some vintage airplane parts from his plane restoration groop! Once again my friends took a hard theme and made it look easy. See their awesome!", "title": "Halloween 2013 - Air Party", "farm": "6", "date_update": "1386264124", "primary": "11221729155", "server": "5540", "date_create": "1386253478", "photos": "30", "secret": "66600afa42", "owner": "54272628@N00", "vist_label": "halloween_party", "id": "72157638379440683"}, {"description": "", "title": "GP Halloween Party 2012", "farm": "8", "date_update": "1415668403", "primary": "8162184657", "server": "7265", "date_create": "1352237196", "photos": "23", "secret": "b6e07bf03f", "owner": "67329489@N00", "vist_label": "halloween_party", "id": "72157631946128075"}, {"description": "Shoots:\n*Roy - Fire Emblem: Sword of Seals\n*Bane - The Dark Knight Rises\n*Matt Jeeves - Death Note", "title": "Halloween Party -- 10.27.12", "farm": "9", "date_update": "1356210265", "primary": "8162989071", "server": "8205", "date_create": "1352259520", "photos": "23", "secret": "4248f3724e", "owner": "51050859@N07", "vist_label": "halloween_party", "id": "72157631949230901"}, {"description": "Line-up was:\n\nTom Glass (Poland) [Hope Recordings]\nsoundcloud.com/tom-glass\n\nStevie Jones (UK) [Space, Ibiza]\nProgression (UK) [LCS]\nOCS [Further]\n\nAbout Liquid Crystal Sounds:\nFacebook >\nYoutube >", "title": "Liquid Crystal Sounds pres. \"Halloween Ball\", 7th Birthday, 2.11.2013 @ Klubi, Turku, Finland", "farm": "4", "date_update": "1384440441", "primary": "10841614313", "server": "3744", "date_create": "1384366082", "photos": "19", "secret": "1df4f03a69", "owner": "89701095@N00", "vist_label": "halloween_party", "id": "72157637638220793"}, {"description": "", "title": "Halloween 2004", "farm": "1", "date_update": "1305869949", "primary": "19771014", "server": "14", "date_create": "463464", "photos": "25", "secret": "bea99bd981", "owner": "85623014@N00", "vist_label": "halloween_party", "id": "463464"}, {"description": "", "title": "halloween pumpkin carving party", "farm": "3", "date_update": "1356544155", "primary": "1664819935", "server": "2220", "date_create": "1192942666", "photos": "19", "secret": "e11fbb2f59", "owner": "43717618@N00", "vist_label": "halloween_party", "id": "72157602571938321"}, {"description": "Taken at Walt Disney World October 1-10 during Mickey's Not So Scary Halloween Party", "title": "2013.10 Disney Costumes", "farm": "4", "date_update": "1382550490", "primary": "10393501153", "server": "3729", "date_create": "1382316725", "photos": "11", "secret": "a82ecb73e0", "owner": "8476511@N03", "vist_label": "halloween_party", "id": "72157636777261654"}, {"description": "", "title": "Batsto Halloween", "farm": "2", "date_update": "1356205672", "primary": "5112180949", "server": "1104", "date_create": "1287967350", "photos": "12", "secret": "ac393f105d", "owner": "84169004@N00", "vist_label": "halloween_party", "id": "72157625234587710"}, {"description": "", "title": "Halloween 2012", "farm": "9", "date_update": "1418851349", "primary": "8143157320", "server": "8476", "date_create": "1351729159", "photos": "23", "secret": "14bc9654ac", "owner": "34464825@N00", "vist_label": "halloween_party", "id": "72157631898865749"}, {"description": "", "title": "2012 Halloween", "farm": "9", "date_update": "1429809883", "primary": "8129614962", "server": "8050", "date_create": "1351392957", "photos": "27", "secret": "40a4cc6a98", "owner": "32941416@N03", "vist_label": "halloween_party", "id": "72157631868520388"}, {"description": "", "title": "Halloween '07", "farm": "3", "date_update": "1306308543", "primary": "1787746166", "server": "2403", "date_create": "1193563433", "photos": "25", "secret": "21d94389fa", "owner": "97976169@N00", "vist_label": "halloween_party", "id": "72157602755096582"}, {"description": "Paula hosted a Flickrite Halloween Partay out at her place in Sultan.", "title": "2007.10.27 - Paula's Halloween Partay", "farm": "3", "date_update": "1309063725", "primary": "1787112963", "server": "2374", "date_create": "1193564727", "photos": "16", "secret": "118220778e", "owner": "8812323@N08", "vist_label": "halloween_party", "id": "72157602757730171"}, {"description": "", "title": "aria", "farm": "3", "date_update": "1356988026", "primary": "1787446975", "server": "2082", "date_create": "1238103935", "photos": "10", "secret": "18c94cf6a7", "owner": "40192021@N00", "vist_label": "halloween_party", "id": "72157615947240780"}, {"description": "", "title": "Hallowe'en Costume Party 2007", "farm": "3", "date_update": "1356724363", "primary": "1794867790", "server": "2102", "date_create": "1193603219", "photos": "16", "secret": "ad9db2d307", "owner": "62373848@N00", "vist_label": "halloween_party", "id": "72157602770687293"}, {"description": "", "title": "Halloween 2007", "farm": "3", "date_update": "1393446116", "primary": "1796133022", "server": "2292", "date_create": "1193617181", "photos": "16", "secret": "a2118193a2", "owner": "7653157@N05", "vist_label": "halloween_party", "id": "72157602772357974"}, {"description": "", "title": "Halloween 2007", "farm": "3", "date_update": "1326579305", "primary": "1796818703", "server": "2399", "date_create": "1193636245", "photos": "26", "secret": "4c6ae1e8e7", "owner": "85621736@N00", "vist_label": "halloween_party", "id": "72157602780268689"}, {"description": "Halloween parties at the club and the school before heading to a Halloween party at our friends' house.", "title": "Halloween Parties (Oct 2013)", "farm": "4", "date_update": "1434850196", "primary": "10543740035", "server": "3726", "date_create": "1382984050", "photos": "28", "secret": "022a7fc64f", "owner": "40646519@N00", "vist_label": "halloween_party", "id": "72157637055790775"}, {"description": "", "title": "Hocking Hills, October 2012", "farm": "9", "date_update": "1375118417", "primary": "8134556172", "server": "8474", "date_create": "1351509770", "photos": "21", "secret": "88b3f62398", "owner": "42328960@N00", "vist_label": "halloween_party", "id": "72157631879336542"}, {"description": "Halloween weekend 2012", "title": "McGaughey Manor", "farm": "9", "date_update": "1356235751", "primary": "8135401446", "server": "8475", "date_create": "1351528341", "photos": "21", "secret": "cb47461ee5", "owner": "24059815@N08", "vist_label": "halloween_party", "id": "72157631881098299"}, {"description": "Fangtasm: A True Blood Bash\n\nwww.facebook.com/finzseafood\n", "title": "Halloween Party at Finz", "farm": "9", "date_update": "1357046381", "primary": "8136684940", "server": "8055", "date_create": "1351551605", "photos": "16", "secret": "2e7ae2be98", "owner": "7891030@N08", "vist_label": "halloween_party", "id": "72157631883881971"}, {"description": "this ranks up there with best costume ever and best hallween ever. an excellent evening. more pictars here!", "title": "HALLOWEEN 2k5", "farm": "1", "date_update": "1298943227", "primary": "57690463", "server": "25", "date_create": "1130708359", "photos": "27", "secret": "5127456bab", "owner": "66302974@N00", "vist_label": "halloween_party", "id": "1249068"}, {"description": "Amy and co. went out and had a good time.\n\nCheck out Amy's pix.", "title": "Halloween Party", "farm": "1", "date_update": "1356489859", "primary": "57748567", "server": "24", "date_create": "1130716079", "photos": "18", "secret": "1a07d44c58", "owner": "51035767928@N01", "vist_label": "halloween_party", "id": "1250283"}, {"description": "Zombies mobbed Bloomington for Halloween, 2005.", "title": "Zombies", "farm": "1", "date_update": "1327254708", "primary": "57913727", "server": "28", "date_create": "1130750375", "photos": "28", "secret": "afcafae9eb", "owner": "35468138867@N01", "vist_label": "halloween_party", "id": "1254452"}, {"description": "Lando's Funshop class held its Halloween party on October 24, one week before Halloween. Lando went in his knight costume (although we left the sword at home, for obvious reasons).", "title": "Funshop Halloween Party 2007", "farm": "3", "date_update": "1431180465", "primary": "1806048445", "server": "2204", "date_create": "1193795411", "photos": "13", "secret": "9e6bd909d4", "owner": "45417981@N00", "vist_label": "halloween_party", "id": "72157602805299990"}, {"description": "We gussied up the place!", "title": "Hallowe'en 2007", "farm": "3", "date_update": "1300703303", "primary": "1806418549", "server": "2072", "date_create": "1204859070", "photos": "13", "secret": "85895e9233", "owner": "49503180328@N01", "vist_label": "halloween_party", "id": "72157604063304707"}, {"description": "", "title": "Hoboken Dog Halloween Party", "farm": "5", "date_update": "1351469875", "primary": "5129260213", "server": "4009", "date_create": "1288474149", "photos": "15", "secret": "02e1a34da4", "owner": "12125528@N00", "vist_label": "halloween_party", "id": "72157625150379941"}, {"description": "", "title": "2013-10-28 Vulcan Village Halloween Event", "farm": "6", "date_update": "1429636208", "primary": "10574935853", "server": "5538", "date_create": "1383144065", "photos": "24", "secret": "7ebd076e9d", "owner": "44540291@N08", "vist_label": "halloween_party", "id": "72157637122825124"}, {"description": "Heal the Bay Staff gets in the spirit at our 3rd Annual Halloween Parade!", "title": "Halloween at Heal the Bay", "farm": "9", "date_update": "1351726763", "primary": "8142728147", "server": "8049", "date_create": "1351718908", "photos": "25", "secret": "27a899f5b5", "owner": "8907159@N04", "vist_label": "halloween_party", "id": "72157631897963439"}, {"description": "", "title": "Sadie & Evan school Halloween", "farm": "9", "date_update": "1406869956", "primary": "8142867395", "server": "8323", "date_create": "1351722410", "photos": "20", "secret": "d60b917f6b", "owner": "12786044@N00", "vist_label": "halloween_party", "id": "72157631898749264"}, {"description": "Halloween 2004", "title": "Halloween at Ben's", "farm": "1", "date_update": "1330924634", "primary": "12971011", "server": "9", "date_create": "330946", "photos": "19", "secret": "4f46895be3", "owner": "13481346@N00", "vist_label": "halloween_party", "id": "330946"}, {"description": "Our one and only Halloween party in Austin was filled with friends and people we never knew in the first place.", "title": "19991031 Austin Halloween", "farm": "1", "date_update": "1373687797", "primary": "14787294", "server": "14", "date_create": "1193759960", "photos": "25", "secret": "1f7d3adf22", "owner": "24328811@N00", "vist_label": "halloween_party", "id": "72157602796939680"}, {"description": "Halloween party at Jujin's house", "title": "Halloween 2005", "farm": "1", "date_update": "1356188980", "primary": "57382195", "server": "26", "date_create": "1130644261", "photos": "21", "secret": "3b30c340fb", "owner": "49258984@N00", "vist_label": "halloween_party", "id": "1242576"}, {"description": "Que susto / Scary!", "title": "Halloween en Barbados", "farm": "1", "date_update": "1299696100", "primary": "58275247", "server": "30", "date_create": "1130807905", "photos": "18", "secret": "038d1bcada", "owner": "26403449@N00", "vist_label": "halloween_party", "id": "1261073"}, {"description": "", "title": "Halloween Party 2003 at Oren's", "farm": "1", "date_update": "1356296061", "primary": "108351315", "server": "49", "date_create": "1141596838", "photos": "17", "secret": "9b91f759a3", "owner": "49561754@N00", "vist_label": "halloween_party", "id": "72057594075705296"}, {"description": "Halloween 2005", "title": "Halloween 2005", "farm": "1", "date_update": "1301295839", "primary": "128200749", "server": "45", "date_create": "1144985260", "photos": "12", "secret": "d695e626f2", "owner": "13122632@N00", "vist_label": "halloween_party", "id": "72057594106619152"}, {"description": "Halloween at Old Roberds Emporium", "title": "ORE Halloween", "farm": "3", "date_update": "1356317320", "primary": "2173645089", "server": "2387", "date_create": "1199680392", "photos": "12", "secret": "03c7f4e84a", "owner": "34301797@N00", "vist_label": "halloween_party", "id": "72157603657119129"}, {"description": "Surprise visit to Pok\u00e9mon Center in Umeda. I should have gotten a clue when everybody around me suddenly and giddily started humming "I want to be the very best" within minutes of each other as we were roaming around", "title": "Pok\u00e9mon Center", "farm": "6", "date_update": "1430353207", "primary": "15221234241", "server": "5583", "date_create": "1410611864", "photos": "26", "secret": "84343aeac4", "owner": "127676695@N04", "vist_label": "halloween_party", "id": "72157647537163181"}, {"description": "", "title": "20141026-Fuji_TV_T_SPOOK", "farm": "4", "date_update": "1434317038", "primary": "15688931871", "server": "3950", "date_create": "1414938403", "photos": "30", "secret": "1d3d905d0c", "owner": "96188016@N02", "vist_label": "halloween_party", "id": "72157648675934897"}, {"description": "", "title": "Football Homecoming Court 2010", "farm": "5", "date_update": "1331825944", "primary": "5044154101", "server": "4103", "date_create": "1286037795", "photos": "28", "secret": "248058bf38", "owner": "44223868@N07", "vist_label": "homecoming", "id": "72157624955008717"}, {"description": "", "title": "Class of '01 Tea & Tent Party", "farm": "6", "date_update": "1402923723", "primary": "5690117513", "server": "5303", "date_create": "1304609314", "photos": "10", "secret": "e4800a3cde", "owner": "37019722@N06", "vist_label": "homecoming", "id": "72157626529005069"}, {"description": "", "title": "5K Run at UIS Homecoming Week 2010", "farm": "6", "date_update": "1336409378", "primary": "5427984729", "server": "5256", "date_create": "1297182739", "photos": "45", "secret": "f9ea8a30f8", "owner": "21023448@N02", "vist_label": "homecoming", "id": "72157625879475637"}, {"description": "Read & Relax Area, First Floor\n\nMay 5-November 7, 2011\n\nThe first issue of The Flat Hat was printed on October 3, 1911. Its name was derived from a secret society, dating back to 1750, nicknamed the \u201cFlat Hat Club.\u201d This club claimed Thomas Jefferson as a member and predates Phi Beta Kappa, the nation's oldest academic honor society. The Flat Hat has been published weekly (except for the fall semester of 1918) up until 2007 when it began publishing twice weekly. With such a legacy, The Flat Hat is often considered the \u201cofficial\u201d student newspaper for the College of William & Mary.\n\n\nIn this exhibit, we celebrate 100 years of The Flat Hat. We hoped to address two questions: \u201cWhat voice did The Flat Hat contribute to the William & Mary community?\u201d and \u201cHow has the voice changed (or not) over the years?\u201d\n\nThe exhibit begins with how The Flat Hat covered major news events by looking at the College during times of \u201cWar and Peace.\u201d Although student reactions to war vary over time, the display about social events shows that when looking at opinions about fraternity housing to Homecoming queens \u201cSome Things Never Change.\u201d \u201cSticking with Traditions\u201d reveals the lost traditions of freshmen wearing beanies and seniors carrying \u201cswagger sticks\u201d as well as long-standing traditions such as the Yule Log and seniors ringing the Wren bell. Many of these traditions and events were captured in images proving that \u201cA Picture is Worth a Hundred Years.\u201d The Flat Hat moved from primarily printed words to including more photographs, cartoons, and advertisements. Finally, \u201cTime to Get Taboo: A Retrospective of Race and Sex in The Flat Hat,\u201d confirms that although The Flat Hat has the longest history among campus publications, it has represented diverse student voices throughout the century.\n\nThis exhibit was curated by students in Prof. Sharon Zuber\u2019s \u201cConstructing the News\u201d Introduction to Literary and Cultural Studies class (LCST 201) and the Special Collections Research Center staff. Student Curators: Joseph Acosta, Arthi Aravind, Laura Brond, Alexcia Cleveland, Sophia Cohen, Claire Crawford, Ainsley Davis, Elizabeth DeBusk, John Gunnison, Brett Hayes, Elizabeth Hexter, Abbey Howarth, Suzannah Howell, Angela McIntosh, Rachel Pulley, Jessica Roffenbender, Kayla Trantham, Victoria Willems, Aria Dakota Willis, and Rosemary Willis. Exhibit design and installation: Chandi Singer, Burger Archives Assistant; Ben Bromley, Public Services Archives Specialist; Priscilla Wood, SCRC Volunteer.", "title": "\"A Century of Student Voices\" Exhibit", "farm": "4", "date_update": "1334595838", "primary": "5713707815", "server": "3465", "date_create": "1305318860", "photos": "23", "secret": "6cff923074", "owner": "7349747@N02", "vist_label": "homecoming", "id": "72157626713239724"}, {"description": "Spread The Red Blood Drive where members of the Illinois State University community donate blood. Learn more at IllinoisStateHomecoming.com", "title": "2011 Reggie Day at Miller Park Zoo", "farm": "7", "date_update": "1346949054", "primary": "6232271276", "server": "6040", "date_create": "1318272663", "photos": "24", "secret": "fd0de77aa3", "owner": "66887307@N08", "vist_label": "homecoming", "id": "72157627739165473"}, {"description": "", "title": "Homecoming/Pig Roast-Fall 2011", "farm": "7", "date_update": "1351612644", "primary": "6232157666", "server": "6165", "date_create": "1318281358", "photos": "20", "secret": "5305ccafc2", "owner": "78599831@N00", "vist_label": "homecoming", "id": "72157627864675956"}, {"description": "See student royalty crowned and men\u2019s and women\u2019s Redbird basketball players show off their skills in exhibition basketball scrimmages. Learn more at IllinoisStateHomecoming.com", "title": "2011 HoopFest", "farm": "7", "date_update": "1346949054", "primary": "6245686374", "server": "6176", "date_create": "1318357543", "photos": "30", "secret": "a8769c2edd", "owner": "66887307@N08", "vist_label": "homecoming", "id": "72157627871513354"}, {"description": "Taken on November 27, 2010 with a Samsung Galaxy S phone.", "title": "US Army Museum of Hawaii", "farm": "4", "date_update": "1308636802", "primary": "5845674714", "server": "3089", "date_create": "1308411628", "photos": "23", "secret": "8ca3035e8f", "owner": "18155433@N00", "vist_label": "homecoming", "id": "72157626865355029"}, {"description": "", "title": "TMP-M homecoming parade and game", "farm": "7", "date_update": "1350757785", "primary": "6167923197", "server": "6172", "date_create": "1316577350", "photos": "24", "secret": "f606b7b721", "owner": "89014614@N00", "vist_label": "homecoming", "id": "72157627717760892"}, {"description": "", "title": "2011 Purdue Alumni Band", "farm": "7", "date_update": "1319325356", "primary": "6270262423", "server": "6031", "date_create": "1319325307", "photos": "35", "secret": "f9f9124055", "owner": "66299520@N00", "vist_label": "homecoming", "id": "72157627829815505"}, {"description": "", "title": "Van-Far vs. Wright City 9-24-10 (Homecoming)", "farm": "5", "date_update": "1298313334", "primary": "5021736899", "server": "4110", "date_create": "1285390966", "photos": "23", "secret": "a9018518bf", "owner": "21841998@N06", "vist_label": "homecoming", "id": "72157624903751507"}, {"description": "2011 Eastview High School Homecoming Dance", "title": "2011 EVHS Homecoming Dance", "farm": "7", "date_update": "1369151151", "primary": "6180004872", "server": "6165", "date_create": "1316919413", "photos": "15", "secret": "6c5c01a6cb", "owner": "33741719@N04", "vist_label": "homecoming", "id": "72157627621433723"}, {"description": "", "title": "B.o.B. Homecoming Show ", "farm": "6", "date_update": "1338580926", "primary": "5389299658", "server": "5098", "date_create": "1296012190", "photos": "40", "secret": "90d3d303ec", "owner": "33090342@N04", "vist_label": "homecoming", "id": "72157625907820708"}, {"description": "", "title": "McNeil Homecoming September 23 2011", "farm": "7", "date_update": "1431299362", "primary": "6187294697", "server": "6177", "date_create": "1317093306", "photos": "46", "secret": "bf400f489a", "owner": "25515242@N00", "vist_label": "homecoming", "id": "72157627638300109"}, {"description": "Photo highlights from the Special Presbytery Meeting held on July 27, 2010 at the Oliver Christian Ministry Center in Minneapolis.", "title": "Special Presbytery Meeting, July 2010", "farm": "5", "date_update": "1310576476", "primary": "4837644779", "server": "4154", "date_create": "1280336063", "photos": "15", "secret": "ab0149e39d", "owner": "13317233@N08", "vist_label": "homecoming", "id": "72157624477904553"}, {"description": "Spokane Arena\nSpokane, Washington\nMarch 28, 2011", "title": "The 2011 Women's NCAA Tournament - Regional Final", "farm": "6", "date_update": "1436380852", "primary": "5573784492", "server": "5268", "date_create": "1301273567", "photos": "32", "secret": "94580f49e7", "owner": "33769160@N08", "vist_label": "homecoming", "id": "72157626367932082"}, {"description": "DILO stands for "Day in the Life" and is linked to a group in which the members record the day in images and create a set that tells the story of that day in their life. Since Flickr people from all over the world are doing this, you can get a interesting glimpse of real culture.", "title": "DILO Sept. 22, 2005", "farm": "1", "date_update": "1356821787", "primary": "46061696", "server": "25", "date_create": "1006285", "photos": "49", "secret": "21b74d66d8", "owner": "48600090482@N01", "vist_label": "homecoming", "id": "1006285"}, {"description": "Davis vs Modesto High, at Modesto High, 1-28-11", "title": "Davis vs Modesto High, 1-28-2011", "farm": "6", "date_update": "1357365182", "primary": "5403927438", "server": "5051", "date_create": "1296459187", "photos": "19", "secret": "f4551662b5", "owner": "8810508@N06", "vist_label": "homecoming", "id": "72157625944175014"}, {"description": "", "title": "Men's Soccer at UIS Homecoming 2010", "farm": "6", "date_update": "1336409376", "primary": "5428092287", "server": "5011", "date_create": "1297185258", "photos": "24", "secret": "01faaf202f", "owner": "21023448@N02", "vist_label": "homecoming", "id": "72157626005088368"}, {"description": "", "title": "07-2004 George Ranch", "farm": "4", "date_update": "1416150588", "primary": "2809172764", "server": "3132", "date_create": "1220029150", "photos": "22", "secret": "5e67fdb57c", "owner": "22038195@N07", "vist_label": "house", "id": "72157607012581475"}, {"description": "", "title": "08-2007 Cousins at the Lake", "farm": "4", "date_update": "1416150587", "primary": "2810471722", "server": "3222", "date_create": "1220070074", "photos": "21", "secret": "0f7267a1c7", "owner": "22038195@N07", "vist_label": "house", "id": "72157607016527320"}, {"description": "", "title": "01-2008 House of Seven Gables", "farm": "4", "date_update": "1416150587", "primary": "2810128556", "server": "3070", "date_create": "1220058088", "photos": "19", "secret": "d3b7758576", "owner": "22038195@N07", "vist_label": "house", "id": "72157607017933719"}, {"description": "Just some scenes walking around town and waiting for a cloudy sunset on the Sunset Wharf.", "title": "23 and 26 December 2009 Key West", "farm": "5", "date_update": "1383431973", "primary": "4235248840", "server": "4005", "date_create": "1262386006", "photos": "22", "secret": "325c39d63a", "owner": "10753294@N05", "vist_label": "house", "id": "72157622991639957"}, {"description": "Photos from around the Historic Centre in Merida, Mexico.", "title": "Merida", "farm": "3", "date_update": "1377986501", "primary": "4240860294", "server": "2769", "date_create": "1262525878", "photos": "13", "secret": "7557157c35", "owner": "49467596@N00", "vist_label": "house", "id": "72157623128165856"}, {"description": "We took a visit to see Paul, Laura, Kai & Indi up in Mountclair on New Year's Eve 2009", "title": "New Year's Trip to Mountclair 2009", "farm": "3", "date_update": "1345770953", "primary": "4242441250", "server": "2754", "date_create": "1262562834", "photos": "25", "secret": "8228047cee", "owner": "67864428@N00", "vist_label": "house", "id": "72157623007875703"}, {"description": "", "title": "Jascon 27 Vessel", "farm": "3", "date_update": "1393874006", "primary": "4242113809", "server": "2766", "date_create": "1262565447", "photos": "10", "secret": "2a4da36ed8", "owner": "40909357@N08", "vist_label": "house", "id": "72157623132781720"}, {"description": "I took all this set of photos while walking by the seaside near my home on my name-day, 2010-01-04 . The misty, snowy sea was like a wonderland. Copyright Ruth Vilmi. Ask me if you want a copy please!! These photos have special meaning and I'm happy if you like them.", "title": "Misty Seascapes Ruth's Day", "farm": "5", "date_update": "1297680569", "primary": "4249392080", "server": "4038", "date_create": "1262730589", "photos": "22", "secret": "956f72b792", "owner": "43569620@N04", "vist_label": "house", "id": "72157623023149795"}, {"description": "", "title": "Valparaiso", "farm": "5", "date_update": "1388619477", "primary": "4248634247", "server": "4051", "date_create": "1262948602", "photos": "24", "secret": "0a1776f942", "owner": "80608313@N00", "vist_label": "house", "id": "72157623165416012"}, {"description": "Christmas Holiday spent with HHBL in Painswick", "title": "Cotswolds 2009", "farm": "5", "date_update": "1297942670", "primary": "4253890174", "server": "4007", "date_create": "1262885146", "photos": "28", "secret": "e65aa195b8", "owner": "60435173@N00", "vist_label": "house", "id": "72157623035815239"}, {"description": "A Dutch garden in England", "title": "Westbury Court Garden (David)", "farm": "5", "date_update": "1365282046", "primary": "4253683763", "server": "4007", "date_create": "1262883339", "photos": "17", "secret": "c4d96f0193", "owner": "24065742@N00", "vist_label": "house", "id": "72157623160153286"}, {"description": "", "title": "Golfe du Morbihan", "farm": "5", "date_update": "1377437854", "primary": "4258863793", "server": "4003", "date_create": "1377437850", "photos": "18", "secret": "5849bbaa46", "owner": "30453739@N05", "vist_label": "house", "id": "72157635221100135"}, {"description": "", "title": "scotland winter 2010", "farm": "3", "date_update": "1418034070", "primary": "4266029672", "server": "2748", "date_create": "1263214925", "photos": "28", "secret": "8b7c026375", "owner": "30166391@N03", "vist_label": "house", "id": "72157623063255669"}, {"description": "Secrets revealed of the Abode of Chaos (112 pages, adult only) >>>\n\n"999" English version with English subtitles is available >>>\nHD movie - scenario thierry Ehrmann - filmed by Etienne Perrone\n\n----------\n\nvoir les secrets de la Demeure du Chaos avec 112 pages tr\u00e8s \u00e9tranges (adult only)\n\n999 : visite initiatique au coeur de la Demeure du Chaos insuffl\u00e9e par l'Esprit de la Salamandre\nFilm HD d'Etienne PERRONE selon un sc\u00e9nario original de thierry Ehrmann.\n\n\ncourtesy of Organ Museum\n\u00a92011 www.AbodeofChaos.org", "title": "Infra-mince Eph\u00e9m\u00e8re", "farm": "3", "date_update": "1430822326", "primary": "4266777092", "server": "2225", "date_create": "1263233786", "photos": "19", "secret": "604272426c", "owner": "40936370@N00", "vist_label": "house", "id": "72157623189575342"}, {"description": "", "title": "My Photos-Oak Park of Illinois", "farm": "3", "date_update": "1356148264", "primary": "1982918852", "server": "2328", "date_create": "1194868891", "photos": "10", "secret": "30a48e69a3", "owner": "69843317@N00", "vist_label": "house", "id": "72157603106928876"}, {"description": "Dagan took me to visit the Frank Lloyd Wright house "Hollyhock House" on Hollywood Blvd.", "title": "Hollyhock House visit, 2009.12.25", "farm": "3", "date_update": "1379302934", "primary": "4272562637", "server": "2779", "date_create": "1263438190", "photos": "20", "secret": "0041c53e88", "owner": "47561465@N00", "vist_label": "house", "id": "72157623081646221"}, {"description": "", "title": "Open House", "farm": "3", "date_update": "1356144147", "primary": "4272588821", "server": "2784", "date_create": "1263439670", "photos": "22", "secret": "4870b1250b", "owner": "76462859@N00", "vist_label": "house", "id": "72157623206241836"}, {"description": "#140conf Boston at the NERD center Cambridge 1/14/2010.", "title": "#140conf #boston", "farm": "5", "date_update": "1311014680", "primary": "4277038639", "server": "4021", "date_create": "1263599359", "photos": "13", "secret": "a8f20afef0", "owner": "38927439@N04", "vist_label": "house", "id": "72157623093230347"}, {"description": "www.undergroundfoodcollective.org/winter", "title": "Underground Food Collective \"In Celebration of Winter\" dinner in Brooklyn, January 15, 2010", "farm": "5", "date_update": "1356404497", "primary": "4283255555", "server": "4069", "date_create": "1263786793", "photos": "19", "secret": "5a97024dc3", "owner": "13102974@N00", "vist_label": "house", "id": "72157623107791583"}, {"description": "This is the open hours for Leigh and Billy's recently completed home renovation.", "title": "Leigh and Billy's open house", "farm": "5", "date_update": "1305214002", "primary": "4283643694", "server": "4046", "date_create": "1263777293", "photos": "22", "secret": "6efd01abfd", "owner": "42213266@N00", "vist_label": "house", "id": "72157623231573296"}, {"description": "Some images of Fountains Abbey in springtime", "title": "Fountains Abbey", "farm": "5", "date_update": "1356738678", "primary": "4293165282", "server": "4013", "date_create": "1264083409", "photos": "15", "secret": "381b6c3ae2", "owner": "29053279@N02", "vist_label": "house", "id": "72157623130414003"}, {"description": "Just a little walk with my Epson and my new Ricoh GR III.", "title": "2009/12/27 - Around Tamagawa", "farm": "5", "date_update": "1368542780", "primary": "4296059691", "server": "4058", "date_create": "1264212649", "photos": "30", "secret": "489cab4627", "owner": "80072069@N00", "vist_label": "house", "id": "72157623140181961"}, {"description": "Anochecer Compostelano / Compostelan dusk", "title": "Anochecer Compostelano / Compostelan dusk", "farm": "5", "date_update": "1357283951", "primary": "4297996877", "server": "4041", "date_create": "1264281404", "photos": "16", "secret": "9ab273359a", "owner": "96937621@N00", "vist_label": "house", "id": "72157623144843189"}, {"description": "stills from the big apple..", "title": "My own small New York", "farm": "5", "date_update": "1301491393", "primary": "4303781104", "server": "4029", "date_create": "1264425048", "photos": "15", "secret": "20f3a1bc93", "owner": "22843828@N05", "vist_label": "house", "id": "72157623156198707"}, {"description": "Pe -13 grade Celsius albastrul e mai albastru. Albul e mai alb. Aerul e mai aer si frigul e cel mai frig! Am vazut toate astea pe dealurile de langa Podisul Mehedinti, la nici 15 km de Turnu Severin, pe drumul catre Ciresu. ", "title": "Iernatice", "farm": "3", "date_update": "1319437479", "primary": "4304179036", "server": "2788", "date_create": "1264436863", "photos": "18", "secret": "f43b2c4c55", "owner": "27163023@N00", "vist_label": "house", "id": "72157623157272067"}, {"description": "", "title": "Coverage of May Day Riots in London, 2001", "farm": "1", "date_update": "1430256295", "primary": "139070237", "server": "50", "date_create": "1146577185", "photos": "28", "secret": "9d93c6bb4f", "owner": "35468158824@N01", "vist_label": "house", "id": "72057594123141054"}, {"description": "", "title": "San Francisco-San Francisco 2", "farm": "2", "date_update": "1296157411", "primary": "925425773", "server": "1419", "date_create": "1185615970", "photos": "12", "secret": "0e32dfc341", "owner": "44878600@N00", "vist_label": "house", "id": "72157601053063486"}, {"description": "", "title": "Egypt Pictures", "farm": "2", "date_update": "1304144672", "primary": "1381813158", "server": "1379", "date_create": "1189790269", "photos": "15", "secret": "6836e150bb", "owner": "57272039@N00", "vist_label": "house", "id": "72157602004965238"}, {"description": "Cotehele House in Cornwall - near the border with the county of Devon", "title": "Cotehele House, Cornwall", "farm": "3", "date_update": "1306984063", "primary": "1741999331", "server": "2042", "date_create": "1193304713", "photos": "13", "secret": "764a8717d6", "owner": "15451851@N07", "vist_label": "house", "id": "72157602689117526"}, {"description": "Pictures developed May 12, 2003", "title": "May 12, 2003", "farm": "2", "date_update": "1303570691", "primary": "1086000042", "server": "1044", "date_create": "1186867964", "photos": "21", "secret": "8861ff5911", "owner": "11280582@N02", "vist_label": "house", "id": "72157601372125786"}, {"description": "", "title": "Boston Commons and Public Gardens", "farm": "1", "date_update": "1332750423", "primary": "22675525", "server": "16", "date_create": "546589", "photos": "21", "secret": "85de5c20e7", "owner": "42614915@N00", "vist_label": "independence_day", "id": "546589"}, {"description": "Independence Day Celebration at City Park in Fort Collins Colorado. This is the one time a year you are guaranteed to see plenty of people you might not see otherwise", "title": "July 4th, 2005", "farm": "1", "date_update": "1300590208", "primary": "23755095", "server": "18", "date_create": "544979", "photos": "16", "secret": "7543a86837", "owner": "30016075@N00", "vist_label": "independence_day", "id": "544979"}, {"description": "Fourth of July (actually, the night of the 3rd), 2005, in Milwaukee Wisconsin.", "title": "Fireworks!", "farm": "1", "date_update": "1301230834", "primary": "23681616", "server": "18", "date_create": "546640", "photos": "18", "secret": "80e61c41dc", "owner": "53332339@N00", "vist_label": "independence_day", "id": "546640"}, {"description": "If I had a tripod back then these shots would have been more professional. ;)", "title": "4th of July 2005 - Richardson, TX", "farm": "1", "date_update": "1304100959", "primary": "55122703", "server": "30", "date_create": "1130058889", "photos": "26", "secret": "ae7acc2a2a", "owner": "24657869@N00", "vist_label": "independence_day", "id": "1194349"}, {"description": "Why should we only bake Christmas cookies?", "title": "Holiday Cookies", "farm": "1", "date_update": "1356227444", "primary": "77299846", "server": "42", "date_create": "1135553302", "photos": "10", "secret": "56f12c5c6f", "owner": "92163118@N00", "vist_label": "independence_day", "id": "1656734"}, {"description": "", "title": "Fireworks 2006", "farm": "1", "date_update": "1337557196", "primary": "182237118", "server": "53", "date_create": "1152081033", "photos": "19", "secret": "deba8a8bd4", "owner": "64255079@N00", "vist_label": "independence_day", "id": "72157594187905192"}, {"description": "Catonsville, MD", "title": "2006 july 4", "farm": "1", "date_update": "1357317443", "primary": "182664359", "server": "16", "date_create": "1152126999", "photos": "12", "secret": "0273883429", "owner": "13609823@N00", "vist_label": "independence_day", "id": "72157594188533603"}, {"description": "A weekend getaway for me and the family unit.", "title": "Biloxi Trip", "farm": "1", "date_update": "1367538175", "primary": "17721654", "server": "12", "date_create": "420260", "photos": "20", "secret": "5584ea335c", "owner": "57293055@N00", "vist_label": "labor_day", "id": "420260"}, {"description": "", "title": "2011-04 Breakfast Hash", "farm": "8", "date_update": "1424891021", "primary": "6614410253", "server": "7005", "date_create": "1325447730", "photos": "30", "secret": "f78411338c", "owner": "99625752@N00", "vist_label": "marathon", "id": "72157628667758209"}, {"description": "", "title": "Iceland - 1/2 Marathon Trip - Aug 2005", "farm": "2", "date_update": "1337530398", "primary": "1167270301", "server": "1083", "date_create": "1187506330", "photos": "18", "secret": "70abffaa38", "owner": "11709851@N04", "vist_label": "marathon", "id": "72157601536678322"}, {"description": "Jason runs a marathon and we all watch.", "title": "Marine Corps Marathon 10-27-2002", "farm": "1", "date_update": "1302006999", "primary": "35433265", "server": "24", "date_create": "784072", "photos": "15", "secret": "7c597bf59f", "owner": "51035702550@N01", "vist_label": "marathon", "id": "784072"}, {"description": "Vani, Pradeep and Hagen RUN RUN RUN!", "title": "Vani @ the Seattle Marathon 2005", "farm": "1", "date_update": "1370806063", "primary": "67812178", "server": "27", "date_create": "1133157589", "photos": "23", "secret": "75f06637d6", "owner": "81008148@N00", "vist_label": "marathon", "id": "1463239"}, {"description": "Dancing 30 hours, raising $600K for juvenille diabetes research!", "title": "Dance Marathon 2005", "farm": "1", "date_update": "1356274912", "primary": "6328554", "server": "6", "date_create": "158010", "photos": "20", "secret": "bee977960f", "owner": "46938636@N00", "vist_label": "marathon", "id": "158010"}, {"description": "", "title": "sf marathon", "farm": "1", "date_update": "1356811764", "primary": "56203988", "server": "30", "date_create": "1130357272", "photos": "10", "secret": "bb02b1f3bc", "owner": "90763800@N00", "vist_label": "marathon", "id": "1220564"}, {"description": "", "title": "2005 Marine Corps Marathon", "farm": "1", "date_update": "1329312230", "primary": "58186802", "server": "28", "date_create": "1130793884", "photos": "14", "secret": "cf3caf4c42", "owner": "84268491@N00", "vist_label": "marathon", "id": "1259235"}, {"description": "Nov 6, 2005", "title": "NYC Marathon 2005", "farm": "1", "date_update": "1302225756", "primary": "60462302", "server": "30", "date_create": "1131298485", "photos": "12", "secret": "b6ddb87bb6", "owner": "49592521@N00", "vist_label": "marathon", "id": "1306323"}, {"description": "", "title": "2006 Rock 'n' Roll Arizona Half Marathon", "farm": "1", "date_update": "1298530979", "primary": "93462679", "server": "39", "date_create": "1140633378", "photos": "23", "secret": "0225733e1a", "owner": "77619789@N00", "vist_label": "marathon", "id": "72057594068659803"}, {"description": "On Trent's second (?) Marine Corps Marathon in Washington, DC, a group of us came out to cheer him on.", "title": "Marine Corps Marathon; October 2003", "farm": "1", "date_update": "1430835213", "primary": "116534722", "server": "39", "date_create": "1143083838", "photos": "10", "secret": "44338051a8", "owner": "64183923@N00", "vist_label": "marathon", "id": "72057594088507493"}, {"description": "Holy shit! Steven turns 26 in DC, reuniting all three original C-130s for the first time in almost two years!", "title": "C-130 Reunion Gala", "farm": "1", "date_update": "1326997587", "primary": "119978654", "server": "36", "date_create": "1143703307", "photos": "19", "secret": "fb86b0e4d1", "owner": "12028361@N00", "vist_label": "marathon", "id": "72057594094119797"}, {"description": "22-23 April 2006", "title": "Marathon Weekend", "farm": "1", "date_update": "1430688391", "primary": "133708377", "server": "49", "date_create": "1145829510", "photos": "22", "secret": "ffc820c97f", "owner": "76186999@N00", "vist_label": "marathon", "id": "72057594115071974"}, {"description": "Late September 2001", "title": "Venice 2001", "farm": "1", "date_update": "1372953725", "primary": "8138854", "server": "6", "date_create": "202700", "photos": "23", "secret": "eb206253da", "owner": "39749009@N00", "vist_label": "market", "id": "202700"}, {"description": "my collection of shots for the dilomay05 project", "title": "dilomay05", "farm": "1", "date_update": "1300590043", "primary": "11716483", "server": "11", "date_create": "287464", "photos": "10", "secret": "715dcf1e66", "owner": "93119419@N00", "vist_label": "market", "id": "287464"}, {"description": "", "title": "Ansbach", "farm": "3", "date_update": "1343662939", "primary": "2078944562", "server": "2309", "date_create": "1196540572", "photos": "10", "secret": "cf9a630a26", "owner": "74203222@N00", "vist_label": "market", "id": "72157603348987515"}, {"description": "Images of Hougang Market", "title": "Hougang Market Memories 2007", "farm": "3", "date_update": "1356163140", "primary": "2079045953", "server": "2193", "date_create": "1196567374", "photos": "23", "secret": "8995fe6ab9", "owner": "82801350@N00", "vist_label": "market", "id": "72157603352064009"}, {"description": "Nico's has moved to a new location. It's just a few yards from its original cramped spot, but the transformation is remarkable. Lots of room, great light and decor, and they've added a separate fish market and a bar.", "title": "Nico's at Pier 38", "farm": "8", "date_update": "1431931486", "primary": "6810315695", "server": "7025", "date_create": "1328244814", "photos": "20", "secret": "3631872734", "owner": "35034363370@N01", "vist_label": "market", "id": "72157629152279849"}, {"description": "", "title": "Lubeck 2007", "farm": "3", "date_update": "1301275149", "primary": "2083067929", "server": "2068", "date_create": "1196685280", "photos": "13", "secret": "0290305214", "owner": "26344152@N00", "vist_label": "market", "id": "72157603364850497"}, {"description": "Around Frankfurt...", "title": "Frankfurt 2007", "farm": "3", "date_update": "1343313956", "primary": "2085241012", "server": "2278", "date_create": "1196724956", "photos": "23", "secret": "0af862fda6", "owner": "49139675@N00", "vist_label": "market", "id": "72157603365865172"}, {"description": "Wandering around the city, Especially the Ferry Plaza Farmer's Market on Saturday morning.", "title": "February in the City", "farm": "8", "date_update": "1400339408", "primary": "6820190623", "server": "7142", "date_create": "1328406627", "photos": "17", "secret": "1488167b74", "owner": "70335091@N00", "vist_label": "market", "id": "72157629177580209"}, {"description": "Dominik (http://www.kanuhawaii.org/member/journal/?id=12495373201324826)\n\nwas an assistant to ABC News Producer, Lee Michael, to go document the tsunami in hilo. The town was well prepared and empty before the estimated time of the tsunami. Fortunately there was no tsunami, just some rise of the water- at a safe level.", "title": "Hilo Tsunami", "farm": "3", "date_update": "1333677417", "primary": "4407368252", "server": "2742", "date_create": "1267738154", "photos": "29", "secret": "1bdc142ba9", "owner": "27937599@N00", "vist_label": "market", "id": "72157623430943057"}, {"description": "Milly-la-For\u00eat / France\nwww.lemarchedelherboriste.fr", "title": "Le March\u00e9 de l'herboriste 2005", "farm": "1", "date_update": "1357122844", "primary": "17437535", "server": "9", "date_create": "414318", "photos": "15", "secret": "f6f484de64", "owner": "20275622@N00", "vist_label": "market", "id": "414318"}, {"description": "", "title": "My Photos", "farm": "2", "date_update": "1296959466", "primary": "922348541", "server": "1207", "date_create": "1185592289", "photos": "36", "secret": "ddb1d3cfd4", "owner": "9082015@N07", "vist_label": "market", "id": "72157601047470846"}, {"description": "", "title": "Vienna, Austria", "farm": "1", "date_update": "1305753262", "primary": "346601149", "server": "138", "date_create": "1168005220", "photos": "11", "secret": "bfdecb7a42", "owner": "66204286@N00", "vist_label": "market", "id": "72157594460914672"}, {"description": "", "title": "11.28.09; Thanksgiving in SF!", "farm": "5", "date_update": "1356738133", "primary": "4334829951", "server": "4011", "date_create": "1265484951", "photos": "11", "secret": "625452292d", "owner": "36184554@N08", "vist_label": "market", "id": "72157623365952228"}, {"description": "Shot by Nicolas Jolliet in and en route to Bwa Kayiman (Bois-Caiman) Haiti for Inside Disaster.\n\nRead the associated blog post at: insidedisaster.com/", "title": "Voodoo ceremony in Cap Haitien", "farm": "3", "date_update": "1296672034", "primary": "4335679242", "server": "2784", "date_create": "1265491638", "photos": "14", "secret": "67c1092d59", "owner": "43859396@N06", "vist_label": "market", "id": "72157623366569792"}, {"description": "", "title": "Seattle/Washington", "farm": "3", "date_update": "1357289930", "primary": "4344983283", "server": "2798", "date_create": "1267019435", "photos": "15", "secret": "8b845083e0", "owner": "69723285@N00", "vist_label": "market", "id": "72157623375467685"}, {"description": "", "title": "India: Kolkata", "farm": "8", "date_update": "1407611026", "primary": "6829252011", "server": "7143", "date_create": "1328587481", "photos": "26", "secret": "b8898f0e25", "owner": "14315427@N00", "vist_label": "market", "id": "72157629210282443"}, {"description": "by Tom Hagerty for Lakeland Local", "title": "20111210_MarketWorld_Hagerty", "farm": "8", "date_update": "1382161485", "primary": "6487561107", "server": "7029", "date_create": "1323537425", "photos": "29", "secret": "a101f3b558", "owner": "48335075@N00", "vist_label": "market", "id": "72157628360313137"}, {"description": "MacWorld San Francisco 2007\nJanuary 9-11\nDebut of the iPhone and AppleTV.", "title": "MacWorld San Francisco 2007", "farm": "1", "date_update": "1356197403", "primary": "352334658", "server": "134", "date_create": "1168397564", "photos": "15", "secret": "2b5d0351b2", "owner": "44124414867@N01", "vist_label": "market", "id": "72157594470595742"}, {"description": "", "title": "Mostly Mission", "farm": "3", "date_update": "1325557509", "primary": "4260658689", "server": "2765", "date_create": "1263094526", "photos": "19", "secret": "6603dfc46c", "owner": "14677065@N00", "vist_label": "market", "id": "72157623052897651"}, {"description": "BTO - Buy Tourism Online\nStazione Leopolda, a Firenze\n16 e 17 Novembre 2009", "title": "The Best of BTO '09", "farm": "3", "date_update": "1296827793", "primary": "4234370018", "server": "2727", "date_create": "1265477585", "photos": "23", "secret": "1b684c7068", "owner": "44601004@N04", "vist_label": "market", "id": "72157623240659927"}, {"description": "", "title": "Northampton, MA", "farm": "1", "date_update": "1335194585", "primary": "32783303", "server": "23", "date_create": "1179889986", "photos": "20", "secret": "ec3ffa9fd4", "owner": "96763131@N00", "vist_label": "market", "id": "72157600249357838"}, {"description": "The area had a record snow storm. These are photos from my travels in the Trenton area. (Some have been modified in GIMP for artistic effects.)", "title": "Trenton, NJ - Snow Storm 10 Feb 2010", "farm": "5", "date_update": "1296543222", "primary": "4347955270", "server": "4062", "date_create": "1265858296", "photos": "11", "secret": "737c3ff223", "owner": "91977077@N00", "vist_label": "market", "id": "72157623280700593"}, {"description": "Cardiff", "title": "Jacob's Antiques Market", "farm": "8", "date_update": "1404539790", "primary": "6852939929", "server": "7150", "date_create": "1328904297", "photos": "15", "secret": "ff8e4764e9", "owner": "23597967@N00", "vist_label": "market", "id": "72157629261651447"}, {"description": "The Michigan Mobile FoodVendors Association first Food Truck Rally at the Royal Oak Farmer's Market - 6 Feb 2012", "title": "Food Truck Rally", "farm": "8", "date_update": "1434290863", "primary": "6853614075", "server": "7016", "date_create": "1328913608", "photos": "24", "secret": "c989972c30", "owner": "23034322@N02", "vist_label": "market", "id": "72157629263336881"}, {"description": "Binh Tay Market is the Central Market of Cho Lon in District 6, Ho Chi Minh City, Vietnam. ", "title": "Vietnam Binh Tay Market", "farm": "8", "date_update": "1375533633", "primary": "6678098375", "server": "7002", "date_create": "1326278353", "photos": "11", "secret": "e3beb37041", "owner": "31638323@N08", "vist_label": "market", "id": "72157628821312617"}, {"description": "A day off and so the chance to pop over to Portobello Road market and find some interesting people and things", "title": "A day at Portobello Road market", "farm": "1", "date_update": "1356551059", "primary": "4690314", "server": "3", "date_create": "118065", "photos": "10", "secret": "d108b06c8f", "owner": "35237092808@N01", "vist_label": "market", "id": "118065"}, {"description": "2010 Olympics", "title": "P&G Family Home", "farm": "3", "date_update": "1403275690", "primary": "4351068717", "server": "2711", "date_create": "1265999284", "photos": "10", "secret": "6f1543dfed", "owner": "38144472@N04", "vist_label": "market", "id": "72157623421040528"}, {"description": "", "title": "Lancaster, PA", "farm": "5", "date_update": "1356287601", "primary": "4467964380", "server": "4043", "date_create": "1269718345", "photos": "18", "secret": "cce4d4d771", "owner": "25517825@N00", "vist_label": "market", "id": "72157623714894246"}, {"description": "", "title": "France 2005: Versailles", "farm": "2", "date_update": "1418367323", "primary": "784295046", "server": "1284", "date_create": "1184223183", "photos": "10", "secret": "2a36150126", "owner": "16693950@N00", "vist_label": "market", "id": "72157600773345228"}, {"description": "", "title": "Art Market", "farm": "5", "date_update": "1330943647", "primary": "4272140663", "server": "4021", "date_create": "1263424269", "photos": "30", "secret": "47050f4025", "owner": "47648477@N00", "vist_label": "market", "id": "72157623205073294"}, {"description": " Posted via email from smirby's posterous ", "title": "Sunday market in Paris: all organic food", "farm": "3", "date_update": "1356155928", "primary": "4432427036", "server": "2709", "date_create": "1268581044", "photos": "19", "secret": "7d9c4cb682", "owner": "37996612193@N01", "vist_label": "market", "id": "72157623493523479"}, {"description": " Posted via email from F\u00e9lix's posterous ", "title": "Krak\u00f3w Sunday Morning Markets (2010-03-14)", "farm": "5", "date_update": "1297451058", "primary": "4431168653", "server": "4035", "date_create": "1268566880", "photos": "19", "secret": "88edb0ee75", "owner": "37781180@N00", "vist_label": "market", "id": "72157623616942902"}, {"description": "(Jan 2012)", "title": "London architecture at dusk", "farm": "8", "date_update": "1356138596", "primary": "6703009357", "server": "7021", "date_create": "1326657605", "photos": "20", "secret": "5fc09b41a7", "owner": "26300494@N07", "vist_label": "market", "id": "72157628884198187"}, {"description": "Farmer's Market in Courthouse on Saturday Morning\na", "title": "Market", "farm": "1", "date_update": "1297495996", "primary": "14052128", "server": "12", "date_create": "342772", "photos": "14", "secret": "9ac9bb0470", "owner": "35034346204@N01", "vist_label": "market", "id": "342772"}, {"description": "National Weather Service, Southern Region, Severe Weather Awareness Week, February 13-18. Screenshots, photos, etc.", "title": "severe weather awareness week, 2005", "farm": "1", "date_update": "1299519616", "primary": "4916748", "server": "4", "date_create": "123763", "photos": "11", "secret": "1f3eea635f", "owner": "32712779@N00", "vist_label": "market", "id": "123763"}, {"description": "", "title": "Riga", "farm": "5", "date_update": "1356174696", "primary": "4278482889", "server": "4016", "date_create": "1263657312", "photos": "29", "secret": "9754f93d6e", "owner": "21600077@N06", "vist_label": "market", "id": "72157623221299462"}, {"description": "ELLE meets China - am Vorabend der Fashionweek pr\u00e4sentiert ELLE in exklusiver Runde ein neue Fashiontalent \u2013 den jungen Chinesen Wang Yutao", "title": "ELLE China Dinner 2012", "farm": "8", "date_update": "1413215556", "primary": "6719053067", "server": "7169", "date_create": "1326874615", "photos": "21", "secret": "b9efa9c4a8", "owner": "39263853@N02", "vist_label": "market", "id": "72157628922775473"}, {"description": "This year Cvent held its annual Sales & Marketing Kick Off at the Ganett Building (publisher of USA Today newspaper) in McLean, VA! After a record breaking 2011 Cventers in sales and marketing came together to celebrate the successes in 2011 and get pumped for an exciting 2012. We spent the day reviewing our goals for the coming year and awarding our top performers in the sales and marketing departments.", "title": "Cvent Sales & Marketing Kick-Off 2012", "farm": "8", "date_update": "1329768728", "primary": "6911609147", "server": "7197", "date_create": "1329768691", "photos": "13", "secret": "ab57546b3f", "owner": "25047063@N07", "vist_label": "market", "id": "72157629406351257"}, {"description": "", "title": "Bruxelles Sprouts", "farm": "1", "date_update": "1340795684", "primary": "1342432", "server": "2", "date_create": "142047", "photos": "13", "secret": "a64b909fe9", "owner": "97328945@N00", "vist_label": "market", "id": "142047"}, {"description": "", "title": "Levinski Market", "farm": "1", "date_update": "1356757419", "primary": "21440251", "server": "16", "date_create": "486365", "photos": "19", "secret": "7f4d8bcdfd", "owner": "25896208@N00", "vist_label": "market", "id": "486365"}, {"description": "", "title": "Reading Terminal Market", "farm": "8", "date_update": "1374279134", "primary": "6740129535", "server": "7166", "date_create": "1327208986", "photos": "24", "secret": "90979e6e6f", "owner": "12577732@N03", "vist_label": "market", "id": "72157628976365435"}, {"description": "I came for work, but had some time for pleasure.", "title": "Hong Kong Feb 2005", "farm": "1", "date_update": "1356145861", "primary": "5234405", "server": "3", "date_create": "134606", "photos": "18", "secret": "773df37adc", "owner": "35468145500@N01", "vist_label": "market", "id": "134606"}, {"description": "", "title": "2009-12 Nurenberg, Germany", "farm": "3", "date_update": "1377960453", "primary": "4298772263", "server": "2786", "date_create": "1264302884", "photos": "11", "secret": "5c27a67dd9", "owner": "60414522@N00", "vist_label": "market", "id": "72157623146557081"}, {"description": "This rural state is on the east coast of peninsular Malaysia", "title": "Terengganu", "farm": "1", "date_update": "1296840879", "primary": "15397579", "server": "11", "date_create": "371372", "photos": "22", "secret": "3a96e8e3d2", "owner": "21421696@N00", "vist_label": "market", "id": "371372"}, {"description": "Marugame city", "title": "Marugame", "farm": "1", "date_update": "1302211118", "primary": "10861289", "server": "7", "date_create": "270479", "photos": "13", "secret": "82e139f15a", "owner": "60453293@N00", "vist_label": "market", "id": "270479"}, {"description": "June 25, 2005", "title": "Portland with Sarah", "farm": "1", "date_update": "1370806063", "primary": "21845397", "server": "17", "date_create": "507082", "photos": "23", "secret": "bc5d55fe0f", "owner": "81008148@N00", "vist_label": "market", "id": "507082"}, {"description": "", "title": "Hanoi, Part 2", "farm": "5", "date_update": "1356412042", "primary": "4308267667", "server": "4037", "date_create": "1264591370", "photos": "17", "secret": "e149e30188", "owner": "63282110@N00", "vist_label": "market", "id": "72157623169361399"}, {"description": "", "title": "Out and About in Melbourne", "farm": "3", "date_update": "1296558815", "primary": "4395563306", "server": "2776", "date_create": "1267377424", "photos": "15", "secret": "2bcc205491", "owner": "37848184@N03", "vist_label": "market", "id": "72157623402266877"}, {"description": "", "title": "Canon s90 Bologna", "farm": "3", "date_update": "1424682334", "primary": "4313181497", "server": "2734", "date_create": "1264774364", "photos": "22", "secret": "faae328d9c", "owner": "32915300@N06", "vist_label": "market", "id": "72157623182397155"}, {"description": "", "title": "Settle Loop", "farm": "8", "date_update": "1327835535", "primary": "6781355063", "server": "7005", "date_create": "1327835205", "photos": "11", "secret": "6a1119b764", "owner": "45131960@N08", "vist_label": "market", "id": "72157629080161275"}, {"description": "The Chow Kit area of Kuala Lumpur is well known for its large wet market", "title": "KL Chow Kit", "farm": "1", "date_update": "1296378635", "primary": "4085092", "server": "4", "date_create": "102972", "photos": "12", "secret": "a6a826fa43", "owner": "21421696@N00", "vist_label": "market", "id": "102972"}, {"description": "", "title": "Totnes 2009", "farm": "5", "date_update": "1301476097", "primary": "4292523409", "server": "4046", "date_create": "1264103109", "photos": "17", "secret": "d6bc6e0847", "owner": "68427404@N00", "vist_label": "market", "id": "72157623132152719"}, {"description": "", "title": "Wine Country", "farm": "3", "date_update": "1396072992", "primary": "4320220941", "server": "2765", "date_create": "1264988242", "photos": "24", "secret": "7d9f551255", "owner": "79781814@N00", "vist_label": "market", "id": "72157623199274325"}, {"description": "", "title": "Budapest, Jan 2010", "farm": "5", "date_update": "1377758422", "primary": "4316090450", "server": "4017", "date_create": "1264858180", "photos": "13", "secret": "d7247413f1", "owner": "13524378@N03", "vist_label": "market", "id": "72157623312651344"}, {"description": "", "title": "Weekend in Joburg", "farm": "3", "date_update": "1323478642", "primary": "4320181660", "server": "2785", "date_create": "1264972123", "photos": "14", "secret": "27f95e9202", "owner": "31354844@N00", "vist_label": "market", "id": "72157623322062438"}, {"description": "", "title": "8/6/2008", "farm": "3", "date_update": "1356893524", "primary": "4321320982", "server": "2797", "date_create": "1356893339", "photos": "17", "secret": "f4dd57cfe9", "owner": "87662778@N00", "vist_label": "market", "id": "72157632386835732"}, {"description": "\nOn Sunday Jan 28th 2012 at the Sheraton Center Hotel in Richmond Hill, forty five teen girls competed for fifteen Ontario titles. These fifteen girls started their quest to become Miss Teen Canada - World 2012 and become Canada's newest and youngest celebrity.", "title": "2012 Miss Teen Ontario - World", "farm": "8", "date_update": "1356458908", "primary": "6796333301", "server": "7033", "date_create": "1328066544", "photos": "19", "secret": "686af90914", "owner": "17683992@N06", "vist_label": "market", "id": "72157629123437977"}, {"description": "Helsinki, Finland, 460.000 inhabitant", "title": "Helsinki", "farm": "1", "date_update": "1408800013", "primary": "16733200", "server": "14", "date_create": "402099", "photos": "25", "secret": "3e5f258ae8", "owner": "97815501@N00", "vist_label": "market", "id": "402099"}, {"description": "", "title": "Parade of Ofuna", "farm": "1", "date_update": "1298268775", "primary": "16149703", "server": "12", "date_create": "448900", "photos": "11", "secret": "5a6b0a9b11", "owner": "39019140@N00", "vist_label": "market", "id": "448900"}, {"description": "or: How To Eat Waffles Like An American In Canada", "title": "Waffles, A Canadian Adventure", "farm": "1", "date_update": "1297669436", "primary": "1451418", "server": "2", "date_create": "37058", "photos": "12", "secret": "48f6b9f397", "owner": "36521956509@N01", "vist_label": "market", "id": "37058"}, {"description": "Pictures from the Kroger grocery store I once worked at", "title": "Grocery Paradise", "farm": "1", "date_update": "1327984057", "primary": "4410646", "server": "3", "date_create": "111086", "photos": "13", "secret": "f7298364f5", "owner": "25203555@N00", "vist_label": "market", "id": "111086"}, {"description": "", "title": "Voice your dream", "farm": "8", "date_update": "1435541847", "primary": "6462194191", "server": "7153", "date_create": "1323123417", "photos": "44", "secret": "fcb030d515", "owner": "53326337@N00", "vist_label": "martin_luther_king_day", "id": "72157628296383879"}, {"description": "Read more on the gay group marching in the MLK Day parade here:\n\nnomoredownlow.tv/?p=785\n\nVideo interviews here: nomoredownlow.tv/?p=785", "title": "Martin Luther King Jr. Parade January 2011", "farm": "6", "date_update": "1296655749", "primary": "5365428628", "server": "5006", "date_create": "1295332951", "photos": "34", "secret": "fe01392acf", "owner": "91588061@N00", "vist_label": "martin_luther_king_day", "id": "72157625850715298"}, {"description": "", "title": "#OWS", "farm": "8", "date_update": "1356155778", "primary": "6716576847", "server": "7002", "date_create": "1326840050", "photos": "10", "secret": "9c42b3e9dd", "owner": "57385426@N02", "vist_label": "martin_luther_king_day", "id": "72157628917529603"}, {"description": "", "title": "MLK Day on the National Mall 2007", "farm": "1", "date_update": "1404076116", "primary": "358952441", "server": "139", "date_create": "1168914673", "photos": "21", "secret": "4b7f1b001c", "owner": "91499534@N00", "vist_label": "martin_luther_king_day", "id": "72157594482057549"}, {"description": "On Monday, January 19, 2009 students, staff, parents and community members worked at Lewis in our garden center.", "title": "MLK Service Day at Lewis", "farm": "4", "date_update": "1307314908", "primary": "3211620666", "server": "3480", "date_create": "1232416278", "photos": "31", "secret": "4f69b6f286", "owner": "50965411@N00", "vist_label": "martin_luther_king_day", "id": "72157612720327475"}, {"description": "", "title": "KRC Martin Luther King Jr Day Children's Event 1-18-10", "farm": "3", "date_update": "1298089026", "primary": "4285343655", "server": "2775", "date_create": "1263848348", "photos": "17", "secret": "7fbd5bedd2", "owner": "53875604@N00", "vist_label": "martin_luther_king_day", "id": "72157623112779761"}, {"description": "", "title": "MLK Day 1.22.13", "farm": "9", "date_update": "1358994911", "primary": "8407733111", "server": "8049", "date_create": "1358954220", "photos": "21", "secret": "9b4a24ff94", "owner": "35731015@N02", "vist_label": "martin_luther_king_day", "id": "72157632590003647"}, {"description": "Assemblance Before the 40th Anniversary of the 1963 Civil Rights March Celebration Rally at the Lincoln Memorial / Reflecting Pool on the National Mall in Washington DC on Saturday, 23 August 2003 by Elvert Barnes Protest Photography\n\n40th MOW / DC\nFilm Roll #3/14\n\nLearn more about this event via DC Host Committee at www.connectdc.com/40thanniversarymarchdc/events.html\n\nElvert Barnes Anniversary Celebrations of the 1963 MARCH ON WASHINGTON docu-project at elvertbarnes.com/1963MOW", "title": "3/14 RALLY on the 40th Anniversary of the 1963 Civil Rights March on Washington / Saturday, 23 August 2003", "farm": "6", "date_update": "1376804962", "primary": "9503087437", "server": "5494", "date_create": "1376427905", "photos": "24", "secret": "b3517a328f", "owner": "95413346@N00", "vist_label": "martin_luther_king_day", "id": "72157635062356920"}, {"description": "Martin Luther King, Jr. Memorial (DC Public) Library at 901 G Street, NW, Washington DC on Thursday afternoon, 15 August 2013 by Elvert Barnes Photography\n\nTHIS IS THE DAY: THE MARCH ON WASHINGTON photo exhibit by LEONARD FREED at www.facebook.com/media/set/?set=a.10151198959067111.44807...\n\nOn display in the Great Hall of the Library from 13 - 31 August 2013 at www.dclibrary.org/node/36361\n\nMartin Luther King Jr. Memorial Library website at www.dclibrary.org/mlk/\n\nElvert Barnes 50th Anniversary of the 1963 MARCH ON WASHINGTON FOR JOBS & FREEDOM / August 2013 docu-project at elvertbarnes.com/50MOW2013", "title": "August 2013 THIS IS THE DAY: THE MARCH ON WASHINGTON photo exhibit by LEONARD FREED @ Martin Luther King, Jr. Memorial Public Library / Washington DC", "farm": "6", "date_update": "1376804962", "primary": "9522297429", "server": "5499", "date_create": "1376668232", "photos": "28", "secret": "fce304371d", "owner": "95413346@N00", "vist_label": "martin_luther_king_day", "id": "72157635093336633"}, {"description": "The Kaiser Permanente Center for Total Health is looking forward to a day of service. Martin Luther King, Jr. Monument, Washington, DC USA", "title": "2014.01.17 MLK and KPTotalHealth Team - Looking forward to a day of service", "farm": "6", "date_update": "1401629042", "primary": "11997379826", "server": "5538", "date_create": "1389971491", "photos": "14", "secret": "24213261fa", "owner": "22526649@N03", "vist_label": "martin_luther_king_day", "id": "72157639865278703"}, {"description": "", "title": "2014 Dr. Martin Luther King Day", "farm": "4", "date_update": "1392307982", "primary": "12501990253", "server": "3747", "date_create": "1392307978", "photos": "36", "secret": "a7824e5dcb", "owner": "30745127@N07", "vist_label": "martin_luther_king_day", "id": "72157640925549645"}, {"description": "", "title": "Dr. Martin Luther King, Jr, Celebration", "farm": "8", "date_update": "1420748156", "primary": "16045047678", "server": "7554", "date_create": "1420746207", "photos": "30", "secret": "d131cfcd79", "owner": "41284017@N08", "vist_label": "martin_luther_king_day", "id": "72157649780970810"}, {"description": "Coalition Against Police Violence MLK DAY OF ACTION, RESISTANCE & EMPOWERMENT (D.A.R.E.) MARCH en route to Chinatown BLOCKING TRAFFIC at 12th and H Street, NW, Washington DC on Monday afternoon, 19 January 2015 by Elvert Barnes Protest Photography\n\nFollow CAPV Monday, 19 January 2015 MLK DAY OF ACTION / DC at www.facebook.com/events/827922477246829/\n\nVisit Monday, 19 January 2015 MLK DAY ACTION / WASHINGTON DC docu-project at elvertbarnes.com/MLKDayOfAction2015", "title": "BLOCKED TRAFFIC @ 12th and H Street during Saturday, 19 January 2015 MLK DAY OF ACTION Against Police Violence March to Chinatown / Washington DC", "farm": "9", "date_update": "1421764539", "primary": "15705796653", "server": "8568", "date_create": "1421764537", "photos": "29", "secret": "69f81c2e00", "owner": "95413346@N00", "vist_label": "martin_luther_king_day", "id": "72157650396531315"}, {"description": "", "title": "Martin Luther King, Jr. Day Celebration 011915", "farm": "8", "date_update": "1421703552", "primary": "16134084747", "server": "7582", "date_create": "1421700654", "photos": "36", "secret": "45cfeaf412", "owner": "48720291@N02", "vist_label": "martin_luther_king_day", "id": "72157650366560532"}, {"description": "Coalition Against Police Violence MLK DAY OF ACTION, RESISTANCE & EMPOWERMENT (D.A.R.E.) MARCH en route to Chinatown on H between 7th and 9th Street, NW, Washington DC on Monday afternoon, 19 January 2015 by Elvert Barnes Protest Photography\n\nFollow CAPV Monday, 19 January 2015 MLK DAY OF ACTION / DC at www.facebook.com/events/827922477246829/\n\nVisit Monday, 19 January 2015 MLK DAY ACTION / WASHINGTON DC docu-project at elvertbarnes.com/MLKDayOfAction2015", "title": "MARCH to Chinatown (on H between 9th and 7th Street) @ Monday, 19 January 2015 MLD DAY OF ACTION Against Police Violence / Washington DC", "farm": "9", "date_update": "1421780941", "primary": "16326679292", "server": "8638", "date_create": "1421780489", "photos": "13", "secret": "c6d1b1778c", "owner": "95413346@N00", "vist_label": "martin_luther_king_day", "id": "72157650387632771"}, {"description": "", "title": "King's Cross VI", "farm": "1", "date_update": "1298790882", "primary": "24568181", "server": "23", "date_create": "561620", "photos": "14", "secret": "564cf9e9e0", "owner": "37846734@N00", "vist_label": "memorial_day", "id": "561620"}, {"description": "Public Works Guys Decorate Christmas Tree in Asbury Park, NJ", "title": "Riggin' Up The Lights", "farm": "1", "date_update": "1357379592", "primary": "68472937", "server": "20", "date_create": "1133312686", "photos": "12", "secret": "55c5069a4a", "owner": "79874304@N00", "vist_label": "memorial_day", "id": "1476996"}, {"description": "The rehearsal and show days of the Capital Concerts production for PBS", "title": "National Memorial Day Concert", "farm": "1", "date_update": "1299253615", "primary": "16216462", "server": "14", "date_create": "389187", "photos": "26", "secret": "5a6208129b", "owner": "58646546@N00", "vist_label": "memorial_day", "id": "389187"}, {"description": "Fiona used to live in a house right on the edge of Chatelherault Park, and I'd never been, so we went for a visit.", "title": "Chatelherault Park 2005", "farm": "1", "date_update": "1356189321", "primary": "36202545", "server": "24", "date_create": "800359", "photos": "18", "secret": "b106bc1f58", "owner": "23217533@N00", "vist_label": "memorial_day", "id": "800359"}, {"description": "", "title": "Golden Gate", "farm": "1", "date_update": "1356152226", "primary": "154496820", "server": "47", "date_create": "1148783100", "photos": "35", "secret": "3b1ca50056", "owner": "62697203@N00", "vist_label": "memorial_day", "id": "72157594147086240"}, {"description": "", "title": "Natick, MA Memorial Day Parade - 05/29/2006", "farm": "1", "date_update": "1437278536", "primary": "155754668", "server": "68", "date_create": "1148929689", "photos": "21", "secret": "2c2d4506d7", "owner": "87434398@N00", "vist_label": "memorial_day", "id": "72157594148848294"}, {"description": "I was in Washington DC this week end and I got to see the impressive Bikers gathering in honor of memorial day. The sound of the motors is still roaring in my ears...", "title": "Memorial Bikes", "farm": "1", "date_update": "1313161986", "primary": "156090611", "server": "59", "date_create": "1148957294", "photos": "11", "secret": "a9b65bdf9b", "owner": "61725061@N00", "vist_label": "memorial_day", "id": "72157594149306041"}, {"description": "", "title": "Memorial Day", "farm": "1", "date_update": "1396072992", "primary": "156086274", "server": "72", "date_create": "1148956722", "photos": "38", "secret": "1b7f4397bf", "owner": "79781814@N00", "vist_label": "memorial_day", "id": "72157594149296972"}, {"description": "", "title": "Memorial Day Weekend BBQ at the Berkman's", "farm": "1", "date_update": "1306524504", "primary": "156824906", "server": "45", "date_create": "1149037328", "photos": "21", "secret": "0c6e215116", "owner": "28851730@N00", "vist_label": "memorial_day", "id": "72157594150383025"}, {"description": "How we spent the day.", "title": "Mother's Day 2005", "farm": "1", "date_update": "1396727560", "primary": "15575968", "server": "11", "date_create": "375116", "photos": "20", "secret": "aed9df975a", "owner": "20197422@N00", "vist_label": "mother's_day", "id": "375116"}, {"description": "Weekend trip to Higgins Beach", "title": "Higgins Beach", "farm": "1", "date_update": "1356564151", "primary": "79411764", "server": "40", "date_create": "1135964107", "photos": "44", "secret": "b5213f113e", "owner": "88542886@N00", "vist_label": "mother's_day", "id": "1699506"}, {"description": "Delamere Forest, Mother's Day Ramble", "title": "Delamere Forest", "farm": "1", "date_update": "1305743099", "primary": "118270001", "server": "45", "date_create": "1143400803", "photos": "31", "secret": "db9b32a83b", "owner": "58563973@N00", "vist_label": "mother's_day", "id": "72057594091145852"}, {"description": "Sachin, Suneel, Mom, and I biked around La Jolla for a few hours. Happy Mother's Day, Mom.", "title": "Mother's Day - 2006", "farm": "1", "date_update": "1356746339", "primary": "146743025", "server": "49", "date_create": "1147674812", "photos": "30", "secret": "cb29c06229", "owner": "73953412@N00", "vist_label": "mother's_day", "id": "72057594135262167"}, {"description": "", "title": "Mother's Day 2006", "farm": "1", "date_update": "1377395133", "primary": "147651862", "server": "44", "date_create": "1147799045", "photos": "31", "secret": "80642647ce", "owner": "76967796@N00", "vist_label": "mother's_day", "id": "72057594136696437"}, {"description": "", "title": "Mother's Day 2006", "farm": "1", "date_update": "1434866803", "primary": "286774228", "server": "100", "date_create": "1162474758", "photos": "10", "secret": "85de2a480a", "owner": "31375891@N00", "vist_label": "mother's_day", "id": "72157594357207240"}, {"description": "", "title": "Jackson, Mississippi - Mother's Day", "farm": "1", "date_update": "1356196542", "primary": "294154422", "server": "122", "date_create": "1163213759", "photos": "29", "secret": "c279925de4", "owner": "54788523@N00", "vist_label": "mother's_day", "id": "72157594369842318"}, {"description": "Brunch at Fox Hills with the Fam", "title": "Pre-Mother's Day 2007", "farm": "1", "date_update": "1304403404", "primary": "470656915", "server": "198", "date_create": "1177376835", "photos": "35", "secret": "5a2abbc8a3", "owner": "84159414@N00", "vist_label": "mother's_day", "id": "72157600116992263"}, {"description": "Lilac Sunday at the Arnold Arboretum in Jamaica Plain, MA", "title": "Mother's Day 2007", "farm": "1", "date_update": "1356149086", "primary": "496434905", "server": "201", "date_create": "1179075420", "photos": "12", "secret": "fe6d2066b5", "owner": "48600103384@N01", "vist_label": "mother's_day", "id": "72157600210655682"}, {"description": "Bought mum a bouquet of exotic flowers from a florist at the Esplanade. For dinner, brough both mum and grandma to Pu Dong Kitchen where we enjoy very flavorful Shanghai food at reasonable prices. According to those who've tried it, this beats Crystal Jade anytime. I agree.", "title": "Mother's Day 2007", "farm": "1", "date_update": "1402237335", "primary": "496682476", "server": "213", "date_create": "1179107446", "photos": "13", "secret": "097f70bb9a", "owner": "35468141938@N01", "vist_label": "mother's_day", "id": "72157600212214546"}, {"description": "St Clements Hospital Bow", "title": "Sitting Waiting Wishing", "farm": "1", "date_update": "1296397549", "primary": "442711938", "server": "175", "date_create": "1175468552", "photos": "17", "secret": "708f2c399d", "owner": "21109390@N00", "vist_label": "moving_to_a_new_house", "id": "72157600041151400"}, {"description": "", "title": "2010 Fellow: Dara Lipton (Vital Voices- Kenya)", "farm": "5", "date_update": "1434995020", "primary": "4874540645", "server": "4119", "date_create": "1274711849", "photos": "17", "secret": "46f049c18d", "owner": "42487558@N00", "vist_label": "moving_to_a_new_house", "id": "72157624126371626"}, {"description": "", "title": "Morris Cemetery, Phoenixville, PA", "farm": "3", "date_update": "1343815094", "primary": "2118096031", "server": "2366", "date_create": "1197923635", "photos": "22", "secret": "3f9783e93c", "owner": "7984969@N04", "vist_label": "moving_to_a_new_house", "id": "72157603481848222"}, {"description": "", "title": "Kings Cross", "farm": "8", "date_update": "1356235791", "primary": "6914488863", "server": "7193", "date_create": "1331352484", "photos": "29", "secret": "25ce879613", "owner": "72079496@N04", "vist_label": "moving_to_a_new_house", "id": "72157629550887349"}, {"description": "in malojloj guam", "title": "carmelite monastery", "farm": "1", "date_update": "1356142628", "primary": "472195090", "server": "197", "date_create": "1177487779", "photos": "28", "secret": "badcc23262", "owner": "48600074651@N01", "vist_label": "moving_to_a_new_house", "id": "72157600124891007"}, {"description": "Draft versions of pictures that I'm not finished tweaking yet. It helps to get some feedback during the creative process. If you have any thoughts at all on any of these photos, please leave a comment. You will not hurt my feelings, even if you hate my concepts.", "title": "Works In Progress", "farm": "2", "date_update": "1353000861", "primary": "656688181", "server": "1395", "date_create": "1183092053", "photos": "10", "secret": "d7e72a7446", "owner": "70165165@N00", "vist_label": "moving_to_a_new_house", "id": "72157600545101238"}, {"description": "Emptying out a couple of my storage units has been an ongoing project. Today was another two or three-hour session. Also! I got to test out my new lens for the Olympus PEN.", "title": "Cleanout/New Lens Day!", "farm": "5", "date_update": "1366562047", "primary": "5130734920", "server": "4090", "date_create": "1288495887", "photos": "13", "secret": "f445b60216", "owner": "48889065425@N01", "vist_label": "moving_to_a_new_house", "id": "72157625152211431"}, {"description": "Established in 1797 as a trading post on Georgia's Indian boundary", "title": "FORT WILKINSON", "farm": "1", "date_update": "1298018033", "primary": "277610966", "server": "113", "date_create": "1161636393", "photos": "12", "secret": "44b9ed21bf", "owner": "82642944@N00", "vist_label": "moving_to_a_new_house", "id": "72157594341890810"}, {"description": "About 20 people showed up to help me move all my crap into my new house in July 2007. Bikini-clad, summertime, with food and beer at the end. Thanks, generous mover-friends! I couldn't have asked for an awesomer group of people to transport my crap and warm the new house.", "title": "bikini bike move", "farm": "3", "date_update": "1356143222", "primary": "1511469393", "server": "2061", "date_create": "1191818510", "photos": "17", "secret": "28e1aafe7c", "owner": "38735744@N00", "vist_label": "moving_to_a_new_house", "id": "72157602309308014"}, {"description": "Exploring Godley Head's tunnels, bunkers and gun emplacements.", "title": "20080217 Godley Head", "farm": "3", "date_update": "1403085369", "primary": "2273561989", "server": "2019", "date_create": "1203340953", "photos": "35", "secret": "138d14c59a", "owner": "31909437@N00", "vist_label": "moving_to_a_new_house", "id": "72157603934726675"}, {"description": "Photos of Historic West Adams published in Los Angeles and Vicinity, June 19, 1908, by the Los Angeles Chaimber of Commerce.", "title": "2008-07-29 Los Angeles and Vicinity (06/19/1908)", "farm": "4", "date_update": "1325957259", "primary": "2725567404", "server": "3103", "date_create": "1217692614", "photos": "24", "secret": "9c3c7bc147", "owner": "8896423@N04", "vist_label": "moving_to_a_new_house", "id": "72157606503374257"}, {"description": "August 23, 2008\n\nI had the great fortune of making it into one of the official groups for Scott Kelby's Worldwide Photo Walk. Not only did a get to participate in a worldwide event that drew over 6,500 photographers of all different skill levels, but I also got to meet a lot of great local photogs from the Flickr-verse. \n\nHopefully, this will be the start of more local photo walks. ", "title": "Scott Kelby's Worldwide Photo Walk", "farm": "4", "date_update": "1347086311", "primary": "2794812866", "server": "3268", "date_create": "1219627635", "photos": "32", "secret": "de265b4b18", "owner": "17731548@N00", "vist_label": "moving_to_a_new_house", "id": "72157606932450262"}, {"description": "Art Gallery of New South Wales archivist Steven Miller has selected images from the archives illustrating the changing face of the Gallery from the late 1800's to the 1990's.\n\nPlease feel free to ask questions or leave comments.", "title": "Art Gallery of New South Wales ", "farm": "4", "date_update": "1350277356", "primary": "3075947690", "server": "3029", "date_create": "1228183391", "photos": "30", "secret": "7598f9bcb3", "owner": "31243265@N02", "vist_label": "moving_to_a_new_house", "id": "72157610561797005"}, {"description": "Hundreds [final tally was 996 registered participants] of would-be polar bears sign up for the annual Polar Plunge at Shepard's Park Beach on Lake George. This year, the air temperature was a balmy 30F. The ice shards in the lake give a hint as to water temperature. Proceeds go to a local charity, and participants get a t-shirt and bragging rights.", "title": "Polar Plunge, Lake George, NY 1/01/10", "farm": "3", "date_update": "1433799798", "primary": "4233984745", "server": "2521", "date_create": "1262376915", "photos": "25", "secret": "cf2173cd0a", "owner": "9298332@N06", "vist_label": "new_year's_day", "id": "72157622990628531"}, {"description": "We had a real dump of snow on Hogmanay resulting in these snow scenes on New year's day!", "title": "NEW YEAR'S DAY 2010", "farm": "3", "date_update": "1356187897", "primary": "4233561342", "server": "2513", "date_create": "1262347070", "photos": "12", "secret": "8eeec1308f", "owner": "23164545@N02", "vist_label": "new_year's_day", "id": "72157623112594684"}, {"description": "The year we make contact", "title": "Adios 2009...Willkommen 2010", "farm": "5", "date_update": "1419458141", "primary": "4234484202", "server": "4037", "date_create": "1262370869", "photos": "21", "secret": "cd4b877536", "owner": "90908304@N00", "vist_label": "new_year's_day", "id": "72157623114581602"}, {"description": "", "title": "New Year's Eve recap in LA includes kickoff luncheon, pep rally", "farm": "5", "date_update": "1430511246", "primary": "4952494166", "server": "4148", "date_create": "1287618288", "photos": "12", "secret": "2b621e70f3", "owner": "53130103@N05", "vist_label": "new_year's_day", "id": "72157625207403904"}, {"description": "The Times Square Armed Forces Recruiting Station's prime location makes it one of the busiest recruiting stations in the world. Being in the heart of Times Square also means it sits in the heart of one of the year's biggest celebrations every New Year's Eve when an estimated one million people pack into Times Square to ring in the new year.\n\nIn order to increase security and prevent damage to the recruiting station, which sits in the middle of the sea of revelers, the Corps of Engineers installs temporary metal panels over the front entrance and lower windows each year before the big party. The panels are then removed after the celebration, often as soon as the morning of New Year's Day - which was the case this year, 2011. (photos by Chris Gardner, New York District public affairs, taken on 12-30-10 and 1-1-11)", "title": "Helping Secure Times Square Armed Forces Recruiting Station Around New Year's Eve", "farm": "6", "date_update": "1296238863", "primary": "5319772427", "server": "5202", "date_create": "1294067747", "photos": "11", "secret": "28065dfa34", "owner": "40704398@N05", "vist_label": "new_year's_day", "id": "72157625737489714"}, {"description": "", "title": "Oscar Grant Protest In L.A", "farm": "5", "date_update": "1351272149", "primary": "4701043820", "server": "4072", "date_create": "1276545300", "photos": "24", "secret": "42e8ae7d27", "owner": "29360537@N03", "vist_label": "new_year's_day", "id": "72157624150850699"}, {"description": "Over the long, holiday weekend for Khmer New Year, I spent several relaxing days here, on Koh Sdach, a small island off the southwest coast of Cambodia in Koh Kong Province. We were 4 guests (3 French and me) and 3 owners/ staff (all Belgians) - a convivial group with most of the conversations going on in French.", "title": "Koh Sdach, April 2011", "farm": "6", "date_update": "1303053469", "primary": "5626657525", "server": "5267", "date_create": "1303038255", "photos": "23", "secret": "06d0414cc8", "owner": "17332186@N00", "vist_label": "new_year's_day", "id": "72157626390694245"}, {"description": "Every year our friends the Storrs and Brays invite a group of families over for a traditional, down-home, Southern New Year's dinner. They feed a lot of people. 104 this year! About 60 are kids!\n\nSo what's the traditional, down-home, Southern New Years fare? For most of us, it's food that we don't have every day. Black-eyed peas and collard greens are core and symbolize prosperity (black-eyed peas=change, collard greens=bills or "green money"). The Brays also serve hog jowl which brings good luck. Now I'm sure there are Southerners that would debate the significance of each of these foods, whether straight black-eyed peas or hoppin john, hog jowl, pulled pork or ham, etc. but hey, for all of us who know the Storrs/Bray cooking, this is the definitive Southern New Year's meal! The New Year wouldn't be right without it!\n\nThanks to the Storrs and Brays for doing this. These photos are a small thank you for having all of us into your home. I hope the photos do justice to your great food.\n\n--B", "title": "Storrs/Bray New Year's Day Party 2006", "farm": "1", "date_update": "1345894485", "primary": "83912790", "server": "37", "date_create": "1136742629", "photos": "18", "secret": "4c75bfa6b2", "owner": "65054187@N00", "vist_label": "new_year's_day", "id": "1792064"}, {"description": "New Year's Day 2007\nWe got the old sign from the building we have just moved out of and laid it down the hill turned on the hose and off the kids went", "title": "New Year Water Slide", "farm": "1", "date_update": "1303924391", "primary": "340476102", "server": "147", "date_create": "1168722095", "photos": "10", "secret": "1fdeea4fc6", "owner": "97135480@N00", "vist_label": "new_year's_day", "id": "72157594477476263"}, {"description": "", "title": "New Year's Day 2007", "farm": "1", "date_update": "1303911966", "primary": "348043411", "server": "140", "date_create": "1168113291", "photos": "11", "secret": "2bde046f6d", "owner": "36521984920@N01", "vist_label": "new_year's_day", "id": "72157594463433934"}, {"description": "Over our winter college break in December 2002 and January 2003, we rode from San Francisco to Santa Barbara down Highway 1 in California.\n\nThis was Anne's first true bike tour.\n\nSorry about the quality of the scans.", "title": "San Francisco to Santa Barbara", "farm": "1", "date_update": "1327457003", "primary": "358795071", "server": "134", "date_create": "1168904353", "photos": "28", "secret": "e0c198a540", "owner": "36578496@N00", "vist_label": "new_year's_day", "id": "72157594481790103"}, {"description": "The first of three amazing New Year's parties at Sheridan Park.", "title": "New Year's Y2K", "farm": "2", "date_update": "1344966794", "primary": "1081822953", "server": "1272", "date_create": "1186841259", "photos": "24", "secret": "4c08f9ba14", "owner": "51011933@N00", "vist_label": "new_year's_day", "id": "72157601366268174"}, {"description": "Sandia Crest, New Mexico, 1 January 2008\n\nI took the truck and the family (my beautiful fianc\u00e9e Rebecca and the kids, Tyler and Jaren) to see the sunrise from Sandia Crest. Very cold, as one might expect - everything was pretty well frozen on the peak, but we still managed to have a good time.", "title": "up on the roof", "farm": "3", "date_update": "1356819721", "primary": "2157342144", "server": "2088", "date_create": "1199247802", "photos": "11", "secret": "147e03864a", "owner": "63299533@N00", "vist_label": "new_year's_day", "id": "72157603608431779"}, {"description": "", "title": "Rome, New Year's Day 2011", "farm": "6", "date_update": "1296690798", "primary": "5324497057", "server": "5245", "date_create": "1294176791", "photos": "24", "secret": "738fc4e890", "owner": "31921751@N08", "vist_label": "new_year's_day", "id": "72157625623198327"}, {"description": "Another New Year's Eve party at our friend Sarah's parents' house in New Jersey. This time with many more kids.", "title": "New Year's 2010-2011", "farm": "6", "date_update": "1434850196", "primary": "5322622604", "server": "5122", "date_create": "1294110103", "photos": "30", "secret": "e52c26f4dc", "owner": "40646519@N00", "vist_label": "new_year's_day", "id": "72157625742513764"}, {"description": "\u91ce\u90ce\uff17\u4eba\u3067\u5e74\u8d8a\u3057\u2026\n\u307e\u3001\u3044\u3044\u3093\u3058\u3083\u306a\u3044\u304b\u306a^^;;;", "title": "2010-2011", "farm": "6", "date_update": "1356148939", "primary": "5324157762", "server": "5082", "date_create": "1294156357", "photos": "28", "secret": "17dcb5121f", "owner": "36187690@N04", "vist_label": "new_year's_day", "id": "72157625746272588"}, {"description": "We had an unusually warm New Year's Day (50 plus degrees) so we decided to take a trip out to Plum Island. We had a great day walking the paths.", "title": "Plum Island - 2012-01-01", "farm": "8", "date_update": "1325464525", "primary": "6616036623", "server": "7007", "date_create": "1325463149", "photos": "19", "secret": "d4d7a48fb9", "owner": "16429538@N00", "vist_label": "new_year's_day", "id": "72157628671377835"}, {"description": "news.bbc.co.uk/sport1/hi/rugby_union/16349138.stm", "title": "London Wasps v Worcester Warriors", "farm": "8", "date_update": "1356156630", "primary": "6622375065", "server": "7160", "date_create": "1325533912", "photos": "25", "secret": "2e7c35656e", "owner": "27634886@N00", "vist_label": "new_year's_day", "id": "72157628685616919"}, {"description": "A walk around the City of London and Spitalfields, NYE 2011/12. Dark by 4pm. Lemmy Caution in mind.", "title": "Noir Year's Eve", "farm": "8", "date_update": "1356164169", "primary": "6611991737", "server": "7162", "date_create": "1325420600", "photos": "18", "secret": "9e05bd2452", "owner": "73965886@N00", "vist_label": "new_year's_eve", "id": "72157628662080341"}, {"description": "Where we went on New Year's Day", "title": "First Visit to Frogner Park", "farm": "8", "date_update": "1325447267", "primary": "6614004589", "server": "7146", "date_create": "1325443703", "photos": "22", "secret": "32dc5f89be", "owner": "41381185@N00", "vist_label": "new_year's_eve", "id": "72157628666827543"}, {"description": "", "title": "Music performances", "farm": "8", "date_update": "1325461152", "primary": "6615801151", "server": "7034", "date_create": "1325461040", "photos": "15", "secret": "31be5d2507", "owner": "73250017@N05", "vist_label": "new_year's_eve", "id": "72157628670921099"}, {"description": "", "title": "New Year's Eve 2011", "farm": "8", "date_update": "1325480395", "primary": "6617558595", "server": "7141", "date_create": "1325480318", "photos": "18", "secret": "4f8b5e5203", "owner": "34692234@N00", "vist_label": "new_year's_eve", "id": "72157628674795963"}, {"description": "A great night to welcome the new year. Thanks to the Bourland family for hosting.", "title": "NYE 2012", "farm": "9", "date_update": "1377118012", "primary": "8334720480", "server": "8221", "date_create": "1357065781", "photos": "23", "secret": "46a8cb62de", "owner": "9636169@N04", "vist_label": "new_year's_eve", "id": "72157632405596244"}, {"description": "[click slideshow]\n\n366/366:\n"As you embrace the present and become one with it, and merge with it, you will experience a fire, a glow, a sparkle of ecstasy throbbing in every sentient being. As you begin to experience this exultation of spirit in everything that is alive, as you become intimate with it, joy will be born within you, and you will drop the terrible burdens of defensiveness, resentment, and hurtfulness... then you will become lighthearted, carefree, joyous, and free."\n365/1:\n"Relaxation is the prerequisite for that inner expansion that allows a person to express the source of inspiration and joy within." \n- Deepal Chopra -\n\n- May your 2013 be filled with joy!", "title": "Feeling the next Light - New Year's Eve in Tapiola", "farm": "9", "date_update": "1428397344", "primary": "8334689494", "server": "8351", "date_create": "1357065969", "photos": "15", "secret": "497beb0913", "owner": "30830405@N07", "vist_label": "new_year's_eve", "id": "72157632405642272"}, {"description": "Celebrations in the capital of Slovakia to welcome the new year 2014. View of the Bratislava Castle, Danube river, New Bridge (Novy Most) and the St Martin's Cathedral.", "title": "Bratislava: New Year's Eve 2013/2014", "farm": "8", "date_update": "1420039297", "primary": "11687781763", "server": "7376", "date_create": "1388590581", "photos": "18", "secret": "4a28a242a0", "owner": "7318601@N02", "vist_label": "new_year's_eve", "id": "72157639271334604"}, {"description": "", "title": "nye", "farm": "8", "date_update": "1388941614", "primary": "11692951045", "server": "7314", "date_create": "1388608125", "photos": "23", "secret": "da989420ee", "owner": "18959411@N00", "vist_label": "new_year's_eve", "id": "72157639281932693"}, {"description": "Taking part mostly in O'Neill's and the Brampton Ale House, a pub owned by a bloke whose daughter, Nat, a) worked for Lamberelli's and b) was very attractive.", "title": "New Year's Eve, December 1998", "farm": "1", "date_update": "1435307584", "primary": "30304790", "server": "22", "date_create": "678460", "photos": "23", "secret": "dcd8e19a8c", "owner": "60179301@N00", "vist_label": "new_year's_eve", "id": "678460"}, {"description": "This was a party hosted by Eric, Rob and Peter in their industrial loft-space apartment in Baltimore's Copy Cat Building. I had this camera-- my first digital-- as a Christmas present from Amy.", "title": "New Year's Eve, 2002", "farm": "1", "date_update": "1341927646", "primary": "39721865", "server": "31", "date_create": "927231", "photos": "28", "secret": "4fb1754a99", "owner": "60828528@N00", "vist_label": "new_year's_eve", "id": "927231"}, {"description": "New Year's Eve and New Year 2012", "title": "New Year 2012", "farm": "8", "date_update": "1371169400", "primary": "6669424705", "server": "7008", "date_create": "1326146575", "photos": "23", "secret": "882e49ac02", "owner": "29501028@N00", "vist_label": "new_year's_eve", "id": "72157628799634257"}, {"description": "", "title": "New Year's Eve 2012", "farm": "9", "date_update": "1357403669", "primary": "8350320724", "server": "8328", "date_create": "1357403666", "photos": "23", "secret": "6878b12132", "owner": "44201860@N04", "vist_label": "new_year's_eve", "id": "72157632439821875"}, {"description": "", "title": "Snapshot 13", "farm": "8", "date_update": "1356182234", "primary": "7002670224", "server": "7251", "date_create": "1336318435", "photos": "13", "secret": "dc3219e962", "owner": "50779832@N04", "vist_label": "new_year's_eve", "id": "72157629614500404"}, {"description": "new year's eve 2004", "title": "london, new year's eve, 2004", "farm": "1", "date_update": "1298500708", "primary": "3479460", "server": "2", "date_create": "100423", "photos": "28", "secret": "1fdc717cce", "owner": "21353230@N00", "vist_label": "new_year's_eve", "id": "100423"}, {"description": "", "title": "New Waterford Crystal Installation On The New Year's Eve Ball", "farm": "8", "date_update": "1388180053", "primary": "11590622884", "server": "7293", "date_create": "1388176585", "photos": "16", "secret": "fcf0051b83", "owner": "22882274@N04", "vist_label": "new_year's_eve", "id": "72157639090930144"}, {"description": "", "title": "New Year's Eve '13 in Hudson", "farm": "8", "date_update": "1393634987", "primary": "12844380223", "server": "7324", "date_create": "1393634960", "photos": "14", "secret": "7f47217d83", "owner": "18645779@N00", "vist_label": "new_year's_eve", "id": "72157641674917713"}, {"description": "", "title": "NYC Winter 03/04", "farm": "1", "date_update": "1301194886", "primary": "38219748", "server": "31", "date_create": "842625", "photos": "10", "secret": "f9d7e9672b", "owner": "60652642@N00", "vist_label": "new_year's_eve", "id": "842625"}, {"description": "", "title": "New Year's, 2005/06", "farm": "1", "date_update": "1337287140", "primary": "80129394", "server": "41", "date_create": "1136139006", "photos": "21", "secret": "bf3421fb98", "owner": "97321205@N00", "vist_label": "new_year's_eve", "id": "1716566"}, {"description": "Hosted by Charlyn, Christain, Mathias and Uzi too.", "title": "New Year's 2006", "farm": "1", "date_update": "1411786950", "primary": "80262084", "server": "40", "date_create": "1136135068", "photos": "15", "secret": "c9ab1166bb", "owner": "14027144@N00", "vist_label": "new_year's_eve", "id": "1715903"}, {"description": "new year's eve in London, waiting for 2006", "title": "new year's eve 2006", "farm": "1", "date_update": "1308070940", "primary": "80269107", "server": "42", "date_create": "1136146645", "photos": "37", "secret": "1e85cd1e5c", "owner": "13747999@N00", "vist_label": "new_year's_eve", "id": "1718007"}, {"description": "For the third year in a row, we rocked out at Joe Fortes restaurant in downtown Vancouver for New Year's Eve. I'm on drums.", "title": "New Year's Eve 2005-2006", "farm": "1", "date_update": "1356382551", "primary": "81050518", "server": "36", "date_create": "1136230644", "photos": "10", "secret": "c836158e6a", "owner": "95601478@N00", "vist_label": "new_year's_eve", "id": "1731229"}, {"description": "Cricket and sudoku", "title": "Christmas 05", "farm": "1", "date_update": "1357086829", "primary": "81319677", "server": "39", "date_create": "1136261878", "photos": "24", "secret": "61b44fde1f", "owner": "93012314@N00", "vist_label": "new_year's_eve", "id": "1737217"}, {"description": "New Year's Eve at the Local: A Sold Out event! Rock On!", "title": "NYE @ The Local 2005", "farm": "1", "date_update": "1410009338", "primary": "84051114", "server": "36", "date_create": "1136456074", "photos": "12", "secret": "3944cf69e5", "owner": "33307631@N00", "vist_label": "new_year's_eve", "id": "1761721"}, {"description": "Welcoming 2014 with a potluck session cum mini birthday celebration for Alex and Han Keong. Happy new year to all and happy birthday boys!", "title": "New Year's Eve 2013", "farm": "4", "date_update": "1425383638", "primary": "11681495116", "server": "3819", "date_create": "1388556883", "photos": "23", "secret": "130605a455", "owner": "30902880@N00", "vist_label": "new_year's_eve", "id": "72157639253910706"}, {"description": "", "title": "New Year", "farm": "8", "date_update": "1430810010", "primary": "11681274675", "server": "7405", "date_create": "1388560146", "photos": "18", "secret": "fa6b6c2559", "owner": "72959997@N00", "vist_label": "new_year's_eve", "id": "72157639258283935"}, {"description": "", "title": "2013.1231 New Year's Eve", "farm": "6", "date_update": "1425874184", "primary": "12016755585", "server": "5521", "date_create": "1390074743", "photos": "16", "secret": "fa021d48de", "owner": "14469908@N00", "vist_label": "new_year's_eve", "id": "72157639904095615"}, {"description": "", "title": "Ringing in 2015 in Fornalutx", "farm": "9", "date_update": "1420408715", "primary": "15978379789", "server": "8647", "date_create": "1420146195", "photos": "29", "secret": "20abbc2caa", "owner": "18472724@N00", "vist_label": "new_year's_eve", "id": "72157649648811240"}, {"description": "New Year's Eve wine tasting, at ...\n\nScrewtop Winebar & Cheesehop\nArlington (Clarendon), Virginia.\n31 December 2014. \n\n***************\nPhotos by Yours For Good Fermentables.com. \n\u2014 Follow on Twitter @Cizauskas.\n\u2014 Follow on Facebook.\nCommercial use requires explicit permission, as per Creative Commons.\n\n\n ", "title": "2014.12.31_Screwtop NYE", "farm": "9", "date_update": "1431884903", "primary": "15987093758", "server": "8670", "date_create": "1420119663", "photos": "13", "secret": "9bfa9193b9", "owner": "75714412@N00", "vist_label": "new_year's_eve", "id": "72157649987300306"}, {"description": "", "title": "New Year's Eve Hike Hoedenpyl Woods 1-1-15", "farm": "8", "date_update": "1420420710", "primary": "15578419354", "server": "7562", "date_create": "1420419685", "photos": "13", "secret": "f805c5a887", "owner": "10506540@N07", "vist_label": "new_year's_eve", "id": "72157649714582760"}, {"description": "Stetson Hills Home with 4+ Bedrooms and over 2,600 Finished Sq. Ft. As you cross the front porch you will find yourself in the spacious living room with newer wood laminate floors extending throughout most of the main level. The living room also has 2-story vaulted ceilings and a gas fireplace. Further in the home is the dining room that walks out to the rear yard. Just past the dining room is the kitchen with tiled counters, walk-in pantry and a convenient desk area. This level also has a laundry room with storage closet, a half-bathroom and access to the 2-car attached garage. Up the stairs off the main entry is the large master bedroom with walk-in closet and private 5-piece master bathroom with oval soaking tub and split dual vanities. The upper level also has 2 more bedrooms that share a Jack and Jill bathroom. The basement of this home has been fully finished to include a spacious family room, the 4th bedroom, 3/4 bathroom and another room that would make a great den or 5th bedroom. This home sits on a corner lot with fenced rear yard and patio and mountain views. Wagner iTeam at Keller Williams Hope Realty 719.434.7525", "title": "6280 Desoto", "farm": "5", "date_update": "1432483460", "primary": "4481625685", "server": "4014", "date_create": "1270144574", "photos": "23", "secret": "0b330a22b2", "owner": "24558858@N08", "vist_label": "office", "id": "72157623748328220"}, {"description": "My photos from the Senate Rules Committee hearing on Feb. 2, 2010.", "title": "Senate Rules Committee Hearing on Citizens United, Feb. 2, 2010", "farm": "5", "date_update": "1297482167", "primary": "4326096875", "server": "4055", "date_create": "1265160618", "photos": "15", "secret": "cd08e17be1", "owner": "29785306@N03", "vist_label": "office", "id": "72157623213948893"}, {"description": "Experimenting with my new camera.", "title": "Nikon D40", "farm": "1", "date_update": "1356187747", "primary": "345894487", "server": "137", "date_create": "1167879581", "photos": "20", "secret": "de87c5e2d4", "owner": "79715083@N00", "vist_label": "office", "id": "72157594458032284"}, {"description": "", "title": "NYC / MICD Columbia", "farm": "8", "date_update": "1325622616", "primary": "6630058361", "server": "7148", "date_create": "1325621929", "photos": "19", "secret": "d84104ef18", "owner": "24620061@N07", "vist_label": "office", "id": "72157628703718831"}, {"description": "", "title": "New York", "farm": "8", "date_update": "1325625270", "primary": "6630311425", "server": "7032", "date_create": "1325625258", "photos": "15", "secret": "c61f03c485", "owner": "39293910@N08", "vist_label": "office", "id": "72157628704515723"}, {"description": "", "title": "Puerto Rico 3/2010", "farm": "5", "date_update": "1356221104", "primary": "4488468130", "server": "4039", "date_create": "1270344391", "photos": "30", "secret": "19008a449b", "owner": "25859268@N00", "vist_label": "office", "id": "72157623639739647"}, {"description": "i visited the inter@ctivate offices in downtown san diego - an existing office in the NBC building on broadway street, and a new office under construction a few blocks away on floor 10 of the washington mutual building.", "title": "inter@ctivate offices", "farm": "1", "date_update": "1420240263", "primary": "133241174", "server": "55", "date_create": "1160632701", "photos": "24", "secret": "547a96022b", "owner": "43927576@N00", "vist_label": "office", "id": "72157594324557686"}, {"description": "Check out the full interview thecomeupshow.com/2010/03/04/shad/ ", "title": "Shad K at Call The Office", "farm": "3", "date_update": "1325812700", "primary": "4407773672", "server": "2782", "date_create": "1268775562", "photos": "12", "secret": "46263beaaf", "owner": "22257051@N07", "vist_label": "office", "id": "72157623510015317"}, {"description": "We had a Year End lunch in office on the last working day of 2006. \n\nThe food was good. better than Xmas Lunch. \n\n", "title": "Year End Lunch", "farm": "1", "date_update": "1357372354", "primary": "347377946", "server": "151", "date_create": "1168060291", "photos": "11", "secret": "195c76f878", "owner": "39932276@N00", "vist_label": "office", "id": "72157594462307386"}, {"description": "What better thing to do on a beautiful 70+ day than to take some shots.\n\nTaken on 01/06/07", "title": "DC in January", "farm": "1", "date_update": "1321724292", "primary": "349318315", "server": "162", "date_create": "1168197910", "photos": "29", "secret": "bb52e2255e", "owner": "60088764@N00", "vist_label": "office", "id": "72157594465479147"}, {"description": "", "title": "Brian Setting Up the Dells", "farm": "3", "date_update": "1398323411", "primary": "4343110326", "server": "2772", "date_create": "1268596936", "photos": "12", "secret": "ef302d4a91", "owner": "19544186@N02", "vist_label": "office", "id": "72157623619778624"}, {"description": "Cannon River Watershed Partnership 20th Annual Meeting", "title": "CRWP 20th Annual Meeting", "farm": "5", "date_update": "1332882359", "primary": "4417775234", "server": "4058", "date_create": "1268080296", "photos": "15", "secret": "9c144411fa", "owner": "63046469@N00", "vist_label": "office", "id": "72157623456487091"}, {"description": "Yea, Yarck, Jamieson, Mansfield, Kinglake.", "title": "Yea, Jamieson, Mansfield Trip 2010.03.07", "farm": "3", "date_update": "1413635826", "primary": "4416927966", "server": "2691", "date_create": "1268048505", "photos": "25", "secret": "af05466740", "owner": "10559879@N00", "vist_label": "office", "id": "72157623578109828"}, {"description": "Photos from 161 Marlborough where we lived from April 1998 to July 2010", "title": "Old House", "farm": "3", "date_update": "1364885412", "primary": "4259533167", "server": "2680", "date_create": "1263065508", "photos": "26", "secret": "2de706fa7f", "owner": "91312924@N00", "vist_label": "office", "id": "72157623174760750"}, {"description": "These are Grand Canyon photos from 2008 ranked by Interestingness\n\nSet automatically created by dopiaza's set generator on 18th June 2015 at 4:47pm BST", "title": "Grand Canyon 2008", "farm": "3", "date_update": "1434642517", "primary": "2229330283", "server": "2341", "date_create": "1201056576", "photos": "19", "secret": "7e70c77fc3", "owner": "7202153@N03", "vist_label": "office", "id": "72157603781151759"}, {"description": "", "title": "local.ch office opening @ limmatquai 2", "farm": "5", "date_update": "1336506166", "primary": "4265224057", "server": "4007", "date_create": "1263212291", "photos": "24", "secret": "d7317a66a6", "owner": "90118575@N00", "vist_label": "office", "id": "72157623063047547"}, {"description": "www.smartcities.info/scandinavian-partners-discuss-servic...", "title": "Meeting Kristiansand-Lillesand-Karlstad", "farm": "5", "date_update": "1331652917", "primary": "4350372885", "server": "4069", "date_create": "1265970716", "photos": "20", "secret": "ab05144225", "owner": "30736255@N03", "vist_label": "office", "id": "72157623292282441"}, {"description": "February 8-12, 2010.", "title": "Atlanta, February 2010", "farm": "5", "date_update": "1356236864", "primary": "4350330419", "server": "4029", "date_create": "1265967744", "photos": "16", "secret": "13f6d5af05", "owner": "45972156@N04", "vist_label": "office", "id": "72157623416538636"}, {"description": "", "title": "FEA San Francisco Venture Capital Trip 2010", "farm": "5", "date_update": "1297190132", "primary": "4352295447", "server": "4069", "date_create": "1266039461", "photos": "25", "secret": "de2f99f8ef", "owner": "9887729@N03", "vist_label": "office", "id": "72157623424455540"}, {"description": "", "title": "Bryght gang and environs", "farm": "1", "date_update": "1301237818", "primary": "6404336", "server": "8", "date_create": "159883", "photos": "19", "secret": "9ea3c21c6c", "owner": "35034347371@N01", "vist_label": "office", "id": "159883"}, {"description": "We visited Cape Point on 12 January to get photos of the Flying Dutchman Funicular before it is taken out of service on 18 January for a refurbishment. The weather was not ideal, being windy and lots of cloud blowing in, but all in all it was fun and we got the photos we wanted. Now we need to return to get photos of the new funicular in April and also to find a geocache and visit the crosses.", "title": "Cape Point 12 Jan 2010", "farm": "5", "date_update": "1409484902", "primary": "4271562228", "server": "4003", "date_create": "1263385271", "photos": "30", "secret": "b6bd6e0dfc", "owner": "12915821@N00", "vist_label": "office", "id": "72157623077077427"}, {"description": "", "title": "2010/02/14 \u6563\u6703\u5f8c\u5728\u6559\u6703\u7559\u5f71", "farm": "5", "date_update": "1301828651", "primary": "4355394119", "server": "4013", "date_create": "1266147832", "photos": "24", "secret": "057d7218bf", "owner": "27500589@N05", "vist_label": "office", "id": "72157623307191679"}, {"description": "", "title": "Henley-in-Arden - Station Road", "farm": "3", "date_update": "1434833561", "primary": "4432348109", "server": "2692", "date_create": "1268595310", "photos": "27", "secret": "0b4ab7db28", "owner": "39415781@N06", "vist_label": "office", "id": "72157623619601364"}, {"description": "I love looking for new offices. ", "title": "191 Alexander", "farm": "1", "date_update": "1323466524", "primary": "358954754", "server": "153", "date_create": "1168913787", "photos": "17", "secret": "0e68785357", "owner": "42828760@N00", "vist_label": "office", "id": "72157594482035348"}, {"description": "-DDI computer refurbishment project in North Minneapolis \n-MLK Day March from Central High to Concordia University", "title": "MLK Day 2010", "farm": "5", "date_update": "1427926802", "primary": "4287551075", "server": "4059", "date_create": "1263916037", "photos": "12", "secret": "b2a2a68180", "owner": "21501626@N03", "vist_label": "office", "id": "72157623117965103"}, {"description": "2/20/2010 Alt.Net Seattle Meeting at DigiPen Redmond Art Campus", "title": "2010 February Alt.Net Seattle", "farm": "5", "date_update": "1429570114", "primary": "4378969709", "server": "4009", "date_create": "1266860278", "photos": "23", "secret": "55a62acacb", "owner": "8502118@N08", "vist_label": "office", "id": "72157623362769573"}, {"description": "Please, please view HERE then press your spacebar.", "title": "Rhyd-y-felin URBEX", "farm": "3", "date_update": "1412758837", "primary": "4380031072", "server": "2787", "date_create": "1266867392", "photos": "29", "secret": "1c3ee68360", "owner": "45767493@N00", "vist_label": "office", "id": "72157623488082540"}, {"description": "You need a permit to hold a big event at a city park in St. Paul. I guess it pays to be early. This year, they opened the gates just ahead of 6 AM.", "title": "WCCO slow news day (Jan. 2, 2007)", "farm": "1", "date_update": "1331858735", "primary": "367691041", "server": "141", "date_create": "1169622909", "photos": "18", "secret": "537c439d49", "owner": "28496375@N00", "vist_label": "office", "id": "72157594497148917"}, {"description": "", "title": "Sparrow at the airport", "farm": "5", "date_update": "1300280607", "primary": "4460288142", "server": "4036", "date_create": "1269445707", "photos": "11", "secret": "3948d5a24f", "owner": "77056900@N00", "vist_label": "office", "id": "72157623560377845"}, {"description": "A publication of the University of Illinois College of Physicians and Surgeons (now the College of Medicine at the University of Illinois at Chicago) from early in the 20th Century.", "title": "The Plexus, vol. 8", "farm": "3", "date_update": "1403811830", "primary": "4459852549", "server": "2801", "date_create": "1269533111", "photos": "10", "secret": "6431d124a7", "owner": "34893859@N05", "vist_label": "office", "id": "72157623566889139"}, {"description": "Photos from my roundabout itinerary from L.A. to Perth on United and Air New Zealand. I rode with United in first from L.A. to Tokyo, then with Air New Zealand in business to Auckland (and then onwards to Perth). To those that have flown both airlines, it should be no surprise that Air New Zealand's business class product outshines United's first class product in nearly every respect. ", "title": "LAX-NRT-AKL-PER on UA & NZ - 03/2010", "farm": "3", "date_update": "1296883148", "primary": "4460694027", "server": "2755", "date_create": "1269480355", "photos": "16", "secret": "53b47b69dd", "owner": "14146962@N07", "vist_label": "office", "id": "72157623687984190"}, {"description": "January 2010", "title": "HHS Basketball", "farm": "3", "date_update": "1296295205", "primary": "4302679589", "server": "2731", "date_create": "1264411609", "photos": "28", "secret": "bd9706a691", "owner": "24122959@N08", "vist_label": "office", "id": "72157623279962310"}, {"description": "", "title": "Snowy Day in NYC", "farm": "3", "date_update": "1360368008", "primary": "4390743107", "server": "2722", "date_create": "1267242572", "photos": "20", "secret": "9028ec63f6", "owner": "19257752@N00", "vist_label": "office", "id": "72157623517255524"}, {"description": "My former daily commuter.", "title": "Fuji 10th Anniversary Edition - My Commuter", "farm": "1", "date_update": "1327457003", "primary": "371228552", "server": "162", "date_create": "1169941037", "photos": "15", "secret": "00f9811c0f", "owner": "36578496@N00", "vist_label": "office", "id": "72157594503266848"}, {"description": "January 2010", "title": "Lion's Basketball Game", "farm": "3", "date_update": "1299076599", "primary": "4309085582", "server": "2699", "date_create": "1264600696", "photos": "11", "secret": "c22ee706a1", "owner": "24122959@N08", "vist_label": "office", "id": "72157623294550334"}, {"description": "Ein paar Schnappsch\u00fcsse vom Umzug der t3n B\u00fcros von der Expo Plaza in die Kriegerstra\u00dfe.", "title": "Umzug t3n Magazin", "farm": "5", "date_update": "1297335754", "primary": "4469777634", "server": "4035", "date_create": "1269777134", "photos": "27", "secret": "4f530e9ee4", "owner": "23181636@N00", "vist_label": "office", "id": "72157623718997598"}, {"description": "", "title": "Washington DC & Baltimore, MD March 20 & 21, 2010", "farm": "5", "date_update": "1297028421", "primary": "4470563877", "server": "4004", "date_create": "1269811793", "photos": "30", "secret": "e95b6a7be6", "owner": "86244342@N00", "vist_label": "office", "id": "72157623722453984"}, {"description": "", "title": "CERI", "farm": "5", "date_update": "1350086845", "primary": "4314521168", "server": "4062", "date_create": "1264793694", "photos": "16", "secret": "894c389880", "owner": "35078832@N05", "vist_label": "office", "id": "72157623308603824"}, {"description": "", "title": "Taller sobre pol\u00edticas nacionales de negociaci\u00f3n de bonos de carbono", "farm": "3", "date_update": "1338308823", "primary": "4476163569", "server": "2766", "date_create": "1269969526", "photos": "13", "secret": "1162e54e99", "owner": "7516913@N04", "vist_label": "office", "id": "72157623735481090"}, {"description": "", "title": "Caps/Panthers 1/29/10", "farm": "5", "date_update": "1360769275", "primary": "4319503386", "server": "4046", "date_create": "1264958344", "photos": "16", "secret": "4bc31d3524", "owner": "24733811@N04", "vist_label": "office", "id": "72157623320493940"}, {"description": "Pictures from my participation in the Great Gorilla Run 2004", "title": "Gorillas in the Dreamfall Office", "farm": "1", "date_update": "1356239030", "primary": "450820", "server": "1", "date_create": "11090", "photos": "11", "secret": "91674ca28b", "owner": "51035648958@N01", "vist_label": "office", "id": "11090"}, {"description": "", "title": "DILO 21 Dec 2004", "farm": "1", "date_update": "1356158959", "primary": "2408632", "server": "2", "date_create": "60550", "photos": "13", "secret": "399f32bf0c", "owner": "34955637987@N01", "vist_label": "office", "id": "60550"}, {"description": "Documenting my life on December 21, 2004, for the a day in the life of... group.", "title": "A Day In The Life Of...", "farm": "1", "date_update": "1356277624", "primary": "2434212", "server": "1", "date_create": "61237", "photos": "30", "secret": "333e0a3a5d", "owner": "44124372130@N01", "vist_label": "office", "id": "61237"}, {"description": "We only get snow in this part of Texas once or twice a year, so it is a good time to take pictures. It is pretty rare for it to happen this early in the year when the plants still have some color.", "title": "Snow Day", "farm": "1", "date_update": "1310354319", "primary": "2444847", "server": "3", "date_create": "61562", "photos": "16", "secret": "6d872e10b9", "owner": "99105016@N00", "vist_label": "office", "id": "61562"}, {"description": "", "title": "google+ photowalk @ getty 10.29.11", "farm": "7", "date_update": "1356242508", "primary": "6304912852", "server": "6216", "date_create": "1320203862", "photos": "27", "secret": "4901399d6e", "owner": "25233266@N04", "vist_label": "outdoor_activity", "id": "72157628033104348"}, {"description": "American Cheese: an introspection, opening reception and grand cheese event, Thursday, January 28, 2010 at the Patricia Doran Gallery at The Massachusetts College of Art and Design. Participating artists: lou suSi, Scott Murray, and David Tames, in support of initial cyberSurrealistic activities in 2010.\n\nWorks:\n\nStandup Simul8 (lou suSi, 2010).\n\nCheeky (Scott Murray, 2010).\n\nCheese Procession (lou suSi, 2010).\n\nNew Crown (lou suSi, 2010).\n\nUntitled (David Tames, 2010).", "title": "American Cheese: An Introspection", "farm": "3", "date_update": "1296407435", "primary": "4331678744", "server": "2800", "date_create": "1265335827", "photos": "17", "secret": "db6524565b", "owner": "83245449@N00", "vist_label": "outdoor_activity", "id": "72157623229321139"}, {"description": "Some pictures from this weekends apiary meet. This was our first week on our own doing the hive inspection. It was a lovely sunny day and our bees were looking gorgeous and behaving very well.", "title": "Kenwood Apiary", "farm": "7", "date_update": "1345812824", "primary": "5901447802", "server": "6011", "date_create": "1309793876", "photos": "26", "secret": "cb2259c9aa", "owner": "8429893@N06", "vist_label": "outdoor_activity", "id": "72157626989753927"}, {"description": "", "title": "Bocce @ Washington Park - Albany, NY - 2010.05.10", "farm": "5", "date_update": "1407127834", "primary": "4609394025", "server": "4010", "date_create": "1273957847", "photos": "17", "secret": "27b7796b5b", "owner": "38951403@N02", "vist_label": "outdoor_activity", "id": "72157624067292822"}, {"description": "If racing performance is what you're into, the Performance Racing Industry trade exhibition, held annually at the Orange County Convention Center in Orlando, Florida, is the place to be.\n\nEvery major venue is represented, from 1/4-mile drag racing to ALMS endurance to tractor pulling to drag boats to karting.\n\nIt's estimated that if you walk every aisle, by the end of the show you'll have traveled nearly five miles. That's a lot of booth space.", "title": "PRI 2011", "farm": "8", "date_update": "1382125110", "primary": "6462097681", "server": "7156", "date_create": "1323121290", "photos": "27", "secret": "158de8891c", "owner": "61153681@N08", "vist_label": "outdoor_activity", "id": "72157628295941191"}, {"description": "Winchester y un poquito de Southampton", "title": "Hampshire", "farm": "4", "date_update": "1314627580", "primary": "5805899977", "server": "3374", "date_create": "1307404671", "photos": "29", "secret": "61094c8a38", "owner": "35901361@N00", "vist_label": "outdoor_activity", "id": "72157626778373335"}, {"description": "A unique opportunity for a "hands on" experience here at The Donkey Sanctuary. You will be having "hands on" experience of working with the donkeys. Activities include grooming, feeding and exercising them, making name collars and mucking out their stables!\n\nRead more...\ndrupal.thedonkeysanctuary.org.uk/donkeycarer", "title": "Caring for donkeys... what an experience!", "farm": "5", "date_update": "1312290944", "primary": "4767685986", "server": "4078", "date_create": "1278417872", "photos": "22", "secret": "751fd65615", "owner": "23335593@N05", "vist_label": "outdoor_activity", "id": "72157624434518516"}, {"description": "A Snapshot of Haiti, 6 months after the quake\nBy Susan Warner-Lambert", "title": "Images from the Field: Haiti", "farm": "5", "date_update": "1299612550", "primary": "4768987074", "server": "4140", "date_create": "1278444555", "photos": "10", "secret": "f8593686c2", "owner": "8729914@N05", "vist_label": "outdoor_activity", "id": "72157624437275314"}, {"description": "www.thedrive.ca/eventsoup.shtm", "title": "Stone Soup Festival Saturday May 7, 2011 on the Drive", "farm": "6", "date_update": "1356213959", "primary": "5698427664", "server": "5225", "date_create": "1305243002", "photos": "10", "secret": "028dfd3064", "owner": "94774034@N00", "vist_label": "outdoor_activity", "id": "72157626582851995"}, {"description": "", "title": "Sailing with Kenny - May 2002", "farm": "5", "date_update": "1434489367", "primary": "4682832421", "server": "4018", "date_create": "1276031455", "photos": "26", "secret": "a04663668b", "owner": "66896566@N00", "vist_label": "outdoor_activity", "id": "72157624109110897"}, {"description": "The Corps of Engineers, Savannah District held it's annual Corps Day celebration June 24 at J.F. Gregory Park in Richmond Hill. In addition to the Annual Awards program, the 2011 Army Engineer Regimental Muster, and field day activities, this year's celebration included a talent show open to employees, retirees, families, and significant others who can dance, sing, play a musical instrument, or perform a skit. COL Hall and MAJ Tritten served as "targets" for the dunk tank. ", "title": "Corps Day 2011", "farm": "7", "date_update": "1340216426", "primary": "5916128538", "server": "6045", "date_create": "1310145611", "photos": "19", "secret": "5dce2c51c3", "owner": "45417428@N05", "vist_label": "outdoor_activity", "id": "72157627022622825"}, {"description": "", "title": "Cherokee Indian Village, Cherokee, NC", "farm": "7", "date_update": "1416776169", "primary": "6224488401", "server": "6162", "date_create": "1318125174", "photos": "30", "secret": "9a003fe5e9", "owner": "22294289@N00", "vist_label": "outdoor_activity", "id": "72157627849092412"}, {"description": "A legend supposed to explain the origin of this pilgrimage has given rise to controversies between critical and traditional schools, especially in recent times. A vehicle by which the legend was disseminated and pilgrims drawn to the site was The Miracles of Our Lady of Rocamadour, written ca. 1172, an example of the miracula, or books of collected miracles, which had such a wide audience in the Middle Ages. \n\nAccording to the founding legend, Rocamadour is named after the founder of the ancient sanctuary, Saint Amator, identified with the Biblical Zacheus, the tax collector of Jericho mentioned in Luke 19:1-10, and the husband of St. Veronica, who wiped Jesus' face on the way to Calvary. Driven out of Palestine by persecution, St. Amadour and Veronica embarked in a frail skiff and, guided by an angel, landed on the coast of Aquitaine, where they met Bishop St. Martial, another disciple of Christ who was preaching the Gospel in the south-west of Gaul. \n\nAfter journeying to Rome, where he witnessed the martyrdoms of St. Peter and St. Paul, Amadour, having returned to France, on the death of his spouse, withdrew to a wild spot in Quercy where he built a chapel in honour of the Blessed Virgin, near which he died a little later.\nThis account, like most other similar legends, does not make its first appearance till long after the age in which the chief actors are deemed to have lived. \n\nThe name of Amadour occurs in no document previous to the compilation of his Acts, which on careful examination and on an application of the rules of the cursus to the text cannot be judged older than the 12th century. It is now well established that Saint Martial, Amadour's contemporary in the legend, lived in the 3rd not the 1st century, and Rome has never included him among the members of the Apostolic College. \n\nThe mention, therefore, of St. Martial in the Acts of St. Amadour would alone suffice, even if other proof were wanting, to prove them doubtful. The untrustworthiness of the legend has led some recent authors to suggest that Amadour was an unknown hermit or possibly St. Amator, Bishop of Auxerre, but this is mere hypothesis, without any historical basis. \n\nThe origin of the sanctuary of Rocamadour, lost in antiquity, is thus set down along with fabulous traditions which cannot bear up to sound criticism. After the religious manifestations of the Middle Ages, Rocamadour, as a result of war and the French Revolution, had become almost deserted. In the mid-nineteenth century, owing to the zeal and activity of the bishops of Cahors, it seems to have revived, and pilgrims and tourists are beginning to crowd there again.", "title": "Rocamadour", "farm": "7", "date_update": "1356471495", "primary": "6329391862", "server": "6093", "date_create": "1320856037", "photos": "19", "secret": "f5664d8e11", "owner": "7737054@N07", "vist_label": "outdoor_activity", "id": "72157627965597479"}, {"description": "Families, friends and senior Virginia National Guard leaders welcome home approximately 120 Soldiers from the Suffolk-based Troop B, 2nd Squadron, 183rd Cavalry Regiment, 116th Brigade Combat Team Dec. 8 after serving in Iraq since August 2011. The Soldiers returned to their home armory in Suffolk after arriving back in the United States Dec. 1 and conducting demobilization activities at Camp Atterbury, Ind. The Soldiers are part of a group of about 825 Soldiers from across the commonwealth who mobilized for duty in Iraq as Task Force 183 under the command of the Portsmouth-based 2nd Squadron, 183rd Cavalry Regiment with units in Norfolk, Suffolk and Virginia Beach in addition to units from Christiansburg and Fredericksburg. \n\nFor more info, visit the link below:\nwww.facebook.com/note.php?note_id=10150496035305067\n", "title": "Soldiers from Suffolk-based cavalry troop return to Virginia after duty in Iraq- Dec. 8, 2011", "farm": "8", "date_update": "1417887323", "primary": "6481268499", "server": "7157", "date_create": "1323429292", "photos": "24", "secret": "4f2161b33c", "owner": "35101671@N06", "vist_label": "outdoor_activity", "id": "72157628343838277"}, {"description": "Drove to Mahabaleshwar en.wikipedia.org/wiki/Mahabaleshwar today. Had plans to stay back and return tomorrow but the extended weekend and impromptu trip meant no hotel rooms. While coming back we stopped at Harrison's Folly. That was awesome\n\nRead more at sankarshan.wordpress.com/2010/09/11/to-mahabaleshwar-and-...", "title": "Road Trip to Mahabaleshwar", "farm": "5", "date_update": "1296265587", "primary": "4976251261", "server": "4152", "date_create": "1284124270", "photos": "26", "secret": "162fbd42c5", "owner": "24574470@N00", "vist_label": "outdoor_activity", "id": "72157624923667378"}, {"description": "A walk through 6 Mile Slough between rainy season and dry season.", "title": "Reflections of Grandeur", "farm": "5", "date_update": "1300155769", "primary": "5068124457", "server": "4126", "date_create": "1286734652", "photos": "28", "secret": "9606687389", "owner": "83006240@N00", "vist_label": "outdoor_activity", "id": "72157625134324560"}, {"description": "Oracle had great fun and lifetime offbeat experience at Camp Redstone during an Offsite organized by Zicelife", "title": "Oracle at Camp Redstone", "farm": "5", "date_update": "1298952966", "primary": "4985764548", "server": "4146", "date_create": "1284355587", "photos": "20", "secret": "e9e5f62da2", "owner": "35365926@N06", "vist_label": "outdoor_activity", "id": "72157624944950104"}, {"description": "HUMPHREYS GARRISON \u2014 Secretary of the Army John McHugh visited USAG-Humphreys Tuesday to see the installation\u2019s progress of transforming into the future home of U.S. Forces in Korea and to meet with Soldiers and Family Members. \nMcHugh, the 21st Secretary of the Army, had lunch with Army spouses, received an overview of the garrison\u2019s transformation from Col. Joseph P. Moore, Humphreys garrison commander, toured the Super Gym and met with members the installation\u2019s Better Opportunity for Single and Unaccompanied Soldiers.\nApproximately 15 Humphreys\u2019 spouses ate lunch with McHugh in the 501st Military Intelligence Brigade Dining Facility, and after the meal the top leader of the Army opened the floor for questions. Veteran benefits, housing issues, spousal employment and the pros of using Host-Nation medical facilities were some of the topics discussed. McHugh thanked the spouses for not only their Soldier\u2019s service, but theirs as well.\nFollowing lunch, McHugh, along with Lt. Gen. Joseph F. Fil Jr., commander, Eighth U.S. Army, Brig. Gen. John Uberti, commander, Installation Management Command Korea, and Command Sgt. Maj. Robert A. Winzenried, command sergeant major, U.S. Forces Korea, traveled out onto the garrison\u2019s newest land and received an overview of Humphreys\u2019 role in USFK\u2019s transformation from Moore. \nOn the last leg of his trip, McHugh checked out the Super Gym and its amenities before receiving a BOSS brief from Command Sgt. Maj. Jason K. Kim, Humphreys command sergeant major. Kim explained the activities and initiatives of the garrison\u2019s BOSS program and then BOSS President, Staff Sgt. Lora Kelly, presented McHugh with a polo shirt. \n\nU.S. Army photos by Lori Yerdon, Pfc. Heather Guerroro and Pfc. Georgina Gray\n\nFor more information on U.S. Army Garrison Humphreys and living and working in Korea visit: USAG-Humphreys' official web site or check out our online videos. ", "title": "Army Secretary McHugh visits Humphreys", "farm": "4", "date_update": "1435189920", "primary": "4594713524", "server": "3356", "date_create": "1273471811", "photos": "20", "secret": "3730702148", "owner": "31687107@N07", "vist_label": "outdoor_activity", "id": "72157624030292358"}, {"description": "This annual event co-sponsored by the Lincoln Hills RC&D and the Hoosier National Forest with several other sponsors is held annually at Tipsaw Lake Recreation Area and includes many activities for families. Programs and prizes draw people from around the area to come and learn more about history and nature. ", "title": "Adventures in Nature Day", "farm": "5", "date_update": "1308142121", "primary": "4793227788", "server": "4141", "date_create": "1279108276", "photos": "21", "secret": "b06fca4877", "owner": "46771194@N07", "vist_label": "outdoor_activity", "id": "72157624492137536"}, {"description": "", "title": "Arts Festival 2011 in full swing", "farm": "7", "date_update": "1430511245", "primary": "5937579321", "server": "6133", "date_create": "1310675262", "photos": "12", "secret": "166cc31926", "owner": "53130103@N05", "vist_label": "outdoor_activity", "id": "72157627071164103"}, {"description": "Sandbagging Major Focus of Day 2 Flood Operations\nGovernor, Adjutant General Meet with Leaders, Guardsmen\n\nFARGO, N.D. \u2014 Day 2 of flood operations came in overcast and cold in North Dakota, but the faces of those fighting the flood remain bright and warm. Already, 300-plus Guardsmen on State Active Duty are working side-by-side with community members to hold back the rising Red River, which fills the border between North Dakota and Minnesota. Their looks are filled with resolve as they fill and place sandbags and help with traffic control as trucks haul mud from borrow pits for dike construction. \n\nAfter an 8 a.m. meeting followed by a press conference at Fargo\u2019s City Hall, North Dakota Gov. John Hoeven and Maj. Gen. David Sprynczynatyk, North Dakota adjutant general, headed toward River Drive South in Fargo, where a slew of Fargo South High School students were busy sandbagging. North Dakota Airmen from the 119th Wing were woven in between the students in sandbag lines that extended from pallets on the street and in driveways, through garages and out back doors. The quickly rising river behind them reminded them of the urgency of their mission.\n\nThe biggest immediate threat lies in Fargo, where the river is expected to crest between 37 and 39 feet by the weekend. Major flood stage is 30 feet. \n\n\u201cOur three primary missions today include traffic control \u2026 ensuring that people coming into this area have the authorization to do so. In addition, we\u2019re doing resource control checkpoints all around the community ... and then the major part of the operation today and in the coming days is placing the sandbags, working side-by-side with community members, ensuring there\u2019s enough efforts to protect lives and property here in the city of Fargo and throughout all of eastern North Dakota,\u201d Sprynczynatyk said.\n\nThe resource control points are places where the city prepositioned sandbags and supplies needed by those fighting the flood. \n\nHoeven stopped to talk to and throw sandbags with those hard at work, and he had a message strictly for Guard members on flood operations. \n\n\u201cFor all of us, for our citizens in Fargo and Cass County, throughout the entire state of North Dakota, knowing that you\u2019re there, our men and women in uniform, helping us out, making sure that whatever needs to be done gets done, thank you,\u201d Hoeven said. \n\nHomeowners on River Drive had similar expressions. \n\n\u201cI just love seeing the Guard here! It\u2019s like the Cavalry rolling in to save us,\u201d said a resident in the 3900 block. \n\nOthers expressed their thanks and offered coffee, water and hot apple cider to the sandbaggers. \n\nDespite the 38-degree temperature with a cool wind, everyone remained optimistic.\n\n\u201cIt\u2019s not too bad of a day out here, so it\u2019s alright,\u201d said Senior Airman Greg Byer of the 119th Wing. \u201cIt\u2019s nice to be able to help the community and show them what the Guard can do.\u201d \n\nByer was manning one of the resource control points on River Drive. He started his 12-hour shift at 7:30 a.m. He volunteered for the duty, and was glad his employer remained supportive this year, as they had last year. When he\u2019s not serving with the Guard, Byer provides technical support at Microsoft in Fargo. \n\nWhat did he think of the adjutant general\u2019s visit to his outpost? \n\n\u201cIt\u2019s kind of nice to know that he\u2019d come out to see what we\u2019re doing, check on me,\u201d Byer said.\n\nSprynczynatyk was pleased with what he found. \n\n \u201cAs I walk about and talk to our Soldiers and Airmen, I sense the pride in each and every one of them,\u201d he said.\n\nWhile the main focus of Guard efforts in Fargo today remains sandbagging, the mission is expected to grow tomorrow to incorporate building HESCO barriers to hold back the rising floodwaters. On Thursday, the Guard anticipates staging quick reaction forces, or QRFs, that will use various engineer equipment to respond where needed. \n\nWhile the Guard\u2019s largest effort is in Fargo, Guardsmen also are working in Ransom and Richland counties, are starting duty in Jamestown and are closely monitoring the situation in other communities where flooding appears imminent. \n\u2014\u2014\nSince the 2001 terrorist attacks on America, the North Dakota National Guard has mobilized more than 3,500 Soldiers and more than 1,800 Airmen in support of the Global War on Terrorism. Currently, about 800 North Dakota Guardsmen are serving overseas. With a total force of about 4,400 Soldiers and Airmen, sufficient forces remain in the state for emergency response and homeland defense.\n", "title": "Fargo Flood Operations - Day 2", "farm": "3", "date_update": "1431126247", "primary": "4439078374", "server": "2692", "date_create": "1268769807", "photos": "24", "secret": "82b2a3c844", "owner": "36463641@N07", "vist_label": "outdoor_activity", "id": "72157623509449753"}, {"description": "", "title": "Illegal weapons found aboard the Victoria cargo ship", "farm": "6", "date_update": "1300294470", "primary": "5529583178", "server": "5296", "date_create": "1300203284", "photos": "13", "secret": "724b86a13f", "owner": "40294282@N07", "vist_label": "outdoor_activity", "id": "72157626147554929"}, {"description": "", "title": "PowderPuff vs CHS", "farm": "5", "date_update": "1350050099", "primary": "4706306929", "server": "4060", "date_create": "1276710940", "photos": "14", "secret": "f8852702b3", "owner": "40907328@N03", "vist_label": "outdoor_activity", "id": "72157624289348266"}, {"description": "smallest of the Canary Islands", "title": "La Gomera", "farm": "7", "date_update": "1316890272", "primary": "6053198753", "server": "6087", "date_create": "1313606437", "photos": "11", "secret": "99e69fef22", "owner": "87091938@N00", "vist_label": "outdoor_activity", "id": "72157627332233871"}, {"description": "Walk to Johnson and Edmondson huts March 18 07", "title": "Falls Creek March 18 2007", "farm": "1", "date_update": "1300196698", "primary": "425116756", "server": "170", "date_create": "1174219916", "photos": "15", "secret": "0f039e650f", "owner": "79308205@N00", "vist_label": "outdoor_activity", "id": "72157600006405360"}, {"description": "Archeologists working for WSDOT excavated several trenches west of First Avenue S. where a neighborhood stood during the late 19th and early 20th centuries. The excavations were mitigation for the effects the S. Holgate Street to S. King Street project will have on the archaeological site.\n\nThis small neighborhood was abandoned around 1905, when it was filled with dirt and turned into a rail yard. However, pieces of the area\u2019s history remain, such as building foundations and discarded household materials like shoes, bottles and glasses. We plan to store the items at the University of Washington\u2019s Burke Museum. \n\nBy recovering the items in advance of construction, we are ensuring that the archaeological record will not be effected by our construction activities. We will also have an extensive monitoring program in place during construction to ensure that construction crews do not inadvertently discover or adversely affect any cultural resources. Learn more about the project at www.wsdot.wa.gov/Projects/SR99/HolgateToKing.", "title": "SR 99 South End Viaduct Replacement - historical excavations", "farm": "5", "date_update": "1374512999", "primary": "4711369098", "server": "4033", "date_create": "1276847779", "photos": "21", "secret": "f639cece67", "owner": "7821771@N05", "vist_label": "outdoor_activity", "id": "72157624300611300"}, {"description": "Latest photos from the Action Week (Brazil)", "title": "Brazil - International Road Transport Action Week 2005 (17 October 2005)", "farm": "1", "date_update": "1296695960", "primary": "53696512", "server": "30", "date_create": "1129634194", "photos": "19", "secret": "28e1819307", "owner": "51532945@N00", "vist_label": "outdoor_activity", "id": "1164233"}, {"description": "A lovely cabin in Occidental. The cabin is a mini-version of the main house, which is a modern take on an old Italian villa. ", "title": "Occidental Cabin 2010.04", "farm": "3", "date_update": "1336237533", "primary": "4534836465", "server": "2689", "date_create": "1271698253", "photos": "24", "secret": "432e27db02", "owner": "69507579@N00", "vist_label": "outdoor_activity", "id": "72157623765822085"}, {"description": "A collaboration between the Exploratorium, MAKE Magazine, and Pixar Animation Studios, Open MAKE is a monthly program highlighting the tools, techniques, and ingenuity of local Makers. Visitors are invited to participate in tinkering and making activities inside the Tinkering Studio, where Makers from around the Bay Area will share their work. In addition, Dale Dougherty, founder and editor of MAKE Magazine, will interview Featured Makers in the McBean Theater.\n\nFeatured Makers:\n\n* Scott Weaver will talk about his passion for working with toothpicks, and what drove him to spend 35 years on a single massive project.\n\n* Bernie Lubell has installed a wooden collaborative machine in the Tinkering Studio, that will allow visitors to slowly whittle a dowel down to a single toothpick, which will then be added to Scott\u2019s piece.\n \n* Jess Hobbs will talk about the massive wooden structures that she installs on the playa at Burning Man.\n \n* And finally, Saul Griffith will bring these four months of Materiality to an end, by talking about his elephants that he built in each of our four highlighted materials: plastic, cardboard, metal, and wood.\n\nAmong many activities that day, visitors learned how to make a dowel by pedaling on a wooden bicycle or running on a treadmill; created their own wonderful marble machines, and marveled at the enormous toothpick sculpture depicting San Francisco, while Scott took them on one of his \u201cguided tours\u201d.\n\nMakers from all over the Bay Area, as well as Tinkering Studio staff, shared activities with the public including...\n\n* Tinkerer in Residence Gever Tulley taught people how to properly drive a nail, which is one of the 50 dangerous things you should let your children do\n\n* Renga Arts showcased their music boxes\n\n* Sadza gave performances on their beautiful wooden xylophones\n\nLearn more about\u2026\n\nExploratorium\u2019s Tinkering Studio\ntinkering.exploratorium.edu\n\nMAKE Magazine\nwww.makezine.com/\n\nPixar\nwww.pixar.com/", "title": "Open MAKE: Wood", "farm": "6", "date_update": "1328833377", "primary": "5636109052", "server": "5306", "date_create": "1303249970", "photos": "27", "secret": "e10c05cc95", "owner": "8065852@N05", "vist_label": "outdoor_activity", "id": "72157626534937894"}, {"description": "The Michigan Municipal League was in downtown Chelsea Michigan on a recent sunny afternoon. These photos show many of the key assets League research has shown make for vibrant communities. The assets include walkable, pedestrian friendly design, cultural and economic activity and other features. Go here for more information: www.mml.org/resources/21c3/about.html or to www.mml.org.", "title": "Chelsea Michigan Photos by Michigan Municipal League", "farm": "2", "date_update": "1357156965", "primary": "4723640713", "server": "1224", "date_create": "1277209261", "photos": "23", "secret": "0252f7d8bd", "owner": "26476817@N04", "vist_label": "outdoor_activity", "id": "72157624331727446"}, {"description": "These photos from early August 1996 show some of the last activities to take place at the old Australian Reptile Park at Wyoming, before moving to Somersby. Eric had been moved by this time, but smaller alligators and reptiles were still being collected and relocated.A week of torrential rain was hampering attempts to collect and transport remaining animals. The staff showed just how incredibly dedicated they were!", "title": "Last days at Australian Reptile Park Wyoming", "farm": "7", "date_update": "1428653592", "primary": "6174056728", "server": "6151", "date_create": "1316743554", "photos": "21", "secret": "df7d10a516", "owner": "49708434@N02", "vist_label": "outdoor_activity", "id": "72157627607446867"}, {"description": "Casey community members celebrating the Asian Rock Luau event on Casey Garrison May 22 reach for the special roast pig, the highlight of all culinary dishes offered during the event. \u2014 U.S. Army photo by Flo Cunningham", "title": "Asian Pacific 2010", "farm": "5", "date_update": "1429273016", "primary": "4640140937", "server": "4060", "date_create": "1274836896", "photos": "15", "secret": "7a464a31fc", "owner": "34816268@N06", "vist_label": "outdoor_activity", "id": "72157624137503998"}, {"description": "West Auckland Town 0 Whitley Bay 3\nAn excellent all round performance by Whitley gave them a well deserved victory over a strong and physical West Auckland side at Darlington Road", "title": "West Auckland Town v Whitley Bay Northern League 24/08/10", "farm": "5", "date_update": "1356299282", "primary": "4927325115", "server": "4134", "date_create": "1282775837", "photos": "13", "secret": "bddf152b2a", "owner": "28355588@N00", "vist_label": "outdoor_activity", "id": "72157624807908194"}, {"description": "Preparing guided tour for viennaartweek. \n2nd district Vienna\n11.11.2009\nesel.at/luegt", "title": "ring guided tour for viennaartweek. 2nd district Vienna ", "farm": "5", "date_update": "1429107407", "primary": "4830640188", "server": "4140", "date_create": "1280148175", "photos": "29", "secret": "aaa992d33c", "owner": "31403562@N00", "vist_label": "outdoor_activity", "id": "72157624585498856"}, {"description": "photos used for the chicwick presentation", "title": "Chiswick visit presentation", "farm": "1", "date_update": "1356199320", "primary": "11253667", "server": "8", "date_create": "292343", "photos": "20", "secret": "076dd33872", "owner": "40732556076@N01", "vist_label": "outdoor_activity", "id": "292343"}, {"description": "\u041e\u0437\u0435\u0440\u043e \u0413\u043e\u0440\u044c\u043a\u043e\u0435, \u0434\u0435\u0440\u0435\u0432\u043d\u044f \u041d\u043e\u0432\u043e\u043a\u043b\u044e\u0447\u0438, \u041a\u0443\u043b\u0443\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f \u0441\u0442\u0435\u043f\u044c, \u041d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c.\n\nLake Gor'koye, Novokliuchi village, Kulunda steppe, Novosibirsk region, Russia.", "title": "Gor'koye lake, Kulunda steppe", "farm": "2", "date_update": "1356156451", "primary": "4720562367", "server": "1353", "date_create": "1277130465", "photos": "29", "secret": "31be96c8d4", "owner": "41503862@N08", "vist_label": "outdoor_activity", "id": "72157624199731521"}, {"description": "Thanks to a partnership endeavor with the Russell County Health and Wellness Coalition, the W.O.W. - Working on Wellness team, the Friends of Wolf Creek NFH, Inc and a host of other supporting organizations and agencies, Wolf Creek National Fish Hatchery hosted the first "Longest Day of Play" in Russell County on June 22, 2010. This nationally recognized event encourages kids to spend time outdoors, which is how 97 students spent their day at Wolf Creek National Fish Hatchery as they connected with nature. ", "title": "2010 Longest Day of Play! - June 22, 2010", "farm": "5", "date_update": "1426770881", "primary": "4742518306", "server": "4121", "date_create": "1277734747", "photos": "11", "secret": "2d6f730faf", "owner": "41464593@N02", "vist_label": "outdoor_activity", "id": "72157624251724973"}, {"description": "Spring Alumni Weekend includes a golf outing, national Alumni Board of Directors meeting, alumni luncheon and awards ceremony, alumni athletic games, reunions and the annual Downtown Crawl. ", "title": "Spring Weekend", "farm": "6", "date_update": "1345741728", "primary": "5880634141", "server": "5230", "date_create": "1309271789", "photos": "15", "secret": "5ed568f32f", "owner": "39274732@N05", "vist_label": "outdoor_activity", "id": "72157626943968859"}, {"description": "Ayesha Al Quds cordially invited to participate in its launching event, the \u201cJerusalem Ka3ek Festival\u201d on Sunday October 23rd 2011 at Dar il Tiffel School in Sheikh Jarrah.\n\nAyesha is an independent group of young Jerusalemites aspiring to introduce new life to our beloved city of Jerusalem. Our launching event will be the Jerusalem Ka3ek Festival that is open for the general public \u2013 children, students and adults alike \u2013 to come and enjoy the sounds and flavors of Jerusalem during a one day festival.\n\nBooths selling Jerusalem\u2019s sesame bread, local products and handicraft opened at 12pm in the school courtyard, to be followed by musical and artistic performances as well as children\u2019s activities during the day.", "title": "Participants and Promoter at the Ka3ek Festival enjoing erusalem\u2019s sesame bread, local products and handicraft", "farm": "7", "date_update": "1339064439", "primary": "6288195189", "server": "6223", "date_create": "1320034545", "photos": "16", "secret": "a28865c569", "owner": "58085284@N04", "vist_label": "outdoor_activity", "id": "72157627892108009"}, {"description": " Posted via email from Scot Rumery's Lifestream ", "title": "Major activity on the river today! Deer and a Bald Eagle on the ice!!", "farm": "6", "date_update": "1356279981", "primary": "5399029982", "server": "5175", "date_create": "1296331715", "photos": "24", "secret": "d5e3b24fa1", "owner": "41972754@N02", "vist_label": "outdoor_activity", "id": "72157625807339605"}, {"description": "", "title": "Michaela's Class Special Olympics", "farm": "6", "date_update": "1339638866", "primary": "5670532428", "server": "5181", "date_create": "1304103945", "photos": "29", "secret": "e15d517609", "owner": "34671007@N04", "vist_label": "outdoor_activity", "id": "72157626609231048"}, {"description": "The U. S. Department of Agriculture (USDA) held their annual \u201cTake Your Child to Work Day\u201d on the patio of the Whitten Building on Thursday, Apr. 28, 2011. The program is designed to introduce young people to USDA\u2019s wide range of responsibilities and services. ", "title": "Take Your Child to Work", "farm": "6", "date_update": "1371496431", "primary": "5670102697", "server": "5223", "date_create": "1304107712", "photos": "25", "secret": "2780269288", "owner": "41284017@N08", "vist_label": "outdoor_activity", "id": "72157626609579922"}, {"description": "", "title": "Birds of Prey Mono", "farm": "6", "date_update": "1356545121", "primary": "5771060421", "server": "5150", "date_create": "1306671225", "photos": "14", "secret": "4e20e8b99e", "owner": "33363996@N08", "vist_label": "outdoor_activity", "id": "72157626831653238"}, {"description": "", "title": "ISAF SOF Helps Build a RMT Checkpoint to Enhance Security in the Tagab Valley", "farm": "6", "date_update": "1412193376", "primary": "5220202696", "server": "5210", "date_create": "1291094757", "photos": "27", "secret": "4530005d3f", "owner": "29456680@N06", "vist_label": "outdoor_activity", "id": "72157625372394771"}, {"description": "", "title": "San Diego Zoo 2011", "farm": "6", "date_update": "1317333843", "primary": "5883350743", "server": "5157", "date_create": "1309331187", "photos": "18", "secret": "8f447be318", "owner": "33839049@N00", "vist_label": "outdoor_activity", "id": "72157627074673796"}, {"description": "", "title": "Pobiti Kamani", "farm": "8", "date_update": "1323696005", "primary": "6498377149", "server": "7166", "date_create": "1320005215", "photos": "17", "secret": "e90e1372e2", "owner": "68188344@N07", "vist_label": "outdoor_activity", "id": "72157628013505086"}, {"description": "", "title": "April Walk Too", "farm": "1", "date_update": "1298433558", "primary": "135329229", "server": "52", "date_create": "1146052448", "photos": "12", "secret": "992f872be2", "owner": "50835495@N00", "vist_label": "outdoor_activity", "id": "72057594117511166"}, {"description": "Students enjoyed many fun activities on the field and in the gym.", "title": "Field Day - Third Grade 2006", "farm": "1", "date_update": "1428273298", "primary": "141478987", "server": "44", "date_create": "1146936804", "photos": "24", "secret": "403cb916aa", "owner": "83955435@N00", "vist_label": "outdoor_activity", "id": "72057594127107722"}, {"description": "On the Zugspitze - Glacier skiing - 2962 M", "title": "Zugspitze", "farm": "2", "date_update": "1300837775", "primary": "711896545", "server": "1135", "date_create": "1183532634", "photos": "22", "secret": "b6b59c6d8e", "owner": "9516776@N05", "vist_label": "outdoor_activity", "id": "72157600637630564"}, {"description": "The St Claire Catholic Church sponsors an authentic German dinner every October. This year the proceeds of the Oktoberfest will be used for a new church. \n\nO'Fallon, IL is a small community with a large german heritage. It is located near St Louis, MO and Scott Air Force base in Illinois.", "title": "Oktoberfest in O'Fallon, IL - USA", "farm": "1", "date_update": "1305408765", "primary": "258132232", "server": "120", "date_create": "1159758010", "photos": "12", "secret": "33b0411646", "owner": "99884310@N00", "vist_label": "outdoor_activity", "id": "72157594308439717"}, {"description": "", "title": "Thailand (TRAN-U) - International Road Transport Action Week (13 October)", "farm": "1", "date_update": "1301233616", "primary": "268648305", "server": "107", "date_create": "1160760268", "photos": "19", "secret": "3aed78f465", "owner": "51532945@N00", "vist_label": "outdoor_activity", "id": "72157594326560194"}, {"description": "", "title": "Photowalk Feb 2011", "farm": "6", "date_update": "1325585265", "primary": "5435359991", "server": "5292", "date_create": "1297418394", "photos": "11", "secret": "8cc1f79c3b", "owner": "52329713@N05", "vist_label": "outdoor_activity", "id": "72157626023683282"}, {"description": "", "title": "Pancakes in the Park 2011", "farm": "6", "date_update": "1300046328", "primary": "5523793108", "server": "5138", "date_create": "1300046324", "photos": "10", "secret": "8bb4c3da78", "owner": "33134661@N04", "vist_label": "outdoor_activity", "id": "72157626133271663"}, {"description": "\u201cUncle Sam Wants You!\u201d to celebrate America Day at Hebrew University (March 16)\nFlags, banners, streamers, liberty bells, posters and bunting, and real-life stand-up President Obama greeted students at the American Embassy\u2019s American Day at the Hebrew University. The decorations captured their interest, and, once lured into the display, they had the chance to sign up on Ipads for American Center Jerusalem programs and to \u201clike\u201d the Embassy\u2019s Facebook. Large plasma screens were additional magnets drawing the students to watch American programs and explore American Embassy activities. In cooperation with the Hebrew University Student Union, PD organized four excellent presentations for different University departments: \u201cWomen in Politics and Government\u201d with Embassy officers Hilary Olsin-Windecker and Julie Adams; \u201cThe Sub Prime Crisis\u201d with the Embassy\u2019s Economics Counselor Dave Burnett; \u201cEthics in media coverage of the Middle East\u201d with Bureau Chiefs Janine Zacharia of the Washington Post and Kevin Flowers of CNN; and a presentation by the Embassy\u2019s Chief of Mission Tom Goldberger on \u201cCurrent Issues and U.S.-Israel Relations\u201d with the International Relations Student Forum. The day-long event attracted hundreds of students who could also find out information on visas and study in the U.S. from American Consulate and StudyUSA experts, and who are now new faces for our upcoming programs and events.\n\nPhoto Credit: Matty Stern/U.S. Embassy Tel Aviv \n", "title": " America Day at the Hebrew University, Jerusalem", "farm": "6", "date_update": "1418395463", "primary": "5534276385", "server": "5253", "date_create": "1300370993", "photos": "17", "secret": "b0a7e9041d", "owner": "46886434@N04", "vist_label": "outdoor_activity", "id": "72157626285768710"}, {"description": "Campus Activities Board (CAB) presents thier new Spring benefit concert: Jammin\u2019 for Justice on Friday, April 1 in the War Memorial Gym. All ticket proceeds went to the American Cancer Society as we teamed up with USF's 2nd Annual Relay For Life Walk. This year, CAB presented Augustana as the headlining artist for the Jammin\u2019 for Justice Concert with Raw G, We Shot the Moon, Alma Desnuda, and Kore Ionz.\n\nThis set is from the sound checks - not the concert.\n\nwww.usfca.edu/cab/jamminforjustice/", "title": "CAB Jammin For Justice", "farm": "6", "date_update": "1356139717", "primary": "5583657022", "server": "5306", "date_create": "1301787712", "photos": "25", "secret": "f8394f78e9", "owner": "35886662@N02", "vist_label": "outdoor_activity", "id": "72157626290154193"}, {"description": "", "title": "Rolling Thunder 2005", "farm": "1", "date_update": "1297676117", "primary": "17148553", "server": "11", "date_create": "408457", "photos": "18", "secret": "2e0bef5683", "owner": "64844023@N00", "vist_label": "parade", "id": "408457"}, {"description": "", "title": "Balade au parc de la T\u00eate d'Or", "farm": "1", "date_update": "1431322895", "primary": "379401173", "server": "146", "date_create": "1170611150", "photos": "13", "secret": "a715a450b8", "owner": "13289467@N00", "vist_label": "parade", "id": "72157594517283383"}, {"description": "", "title": "Fremont Solstice Parade 2005 - Some Nudity", "farm": "1", "date_update": "1356155236", "primary": "20126613", "server": "17", "date_create": "489485", "photos": "27", "secret": "1f05e743e1", "owner": "73769295@N00", "vist_label": "parade", "id": "489485"}, {"description": "", "title": "England World Cup Parade 8th December 2003", "farm": "1", "date_update": "1356187884", "primary": "9953693", "server": "6", "date_create": "245967", "photos": "42", "secret": "82f9106b60", "owner": "78563885@N00", "vist_label": "parade", "id": "245967"}, {"description": "", "title": "BSU", "farm": "1", "date_update": "1356980423", "primary": "364832283", "server": "138", "date_create": "1169406586", "photos": "24", "secret": "6ec097fede", "owner": "64149777@N00", "vist_label": "parade", "id": "72157594492208302"}, {"description": "", "title": "2006-02-17Gung Hay Fat Choy", "farm": "2", "date_update": "1356204174", "primary": "1068063621", "server": "1387", "date_create": "1186729030", "photos": "18", "secret": "5aef83c68c", "owner": "21202718@N00", "vist_label": "parade", "id": "72157601341863571"}, {"description": "May 17, 2005 at the Disney MGM Studios", "title": "Stars and Motorcars Parade", "farm": "1", "date_update": "1356588531", "primary": "16180499", "server": "11", "date_create": "388393", "photos": "41", "secret": "7c7b017270", "owner": "19463662@N00", "vist_label": "parade", "id": "388393"}, {"description": "Halloween 2004 Village Parade", "title": "Halloween 2004 Village Parade", "farm": "1", "date_update": "1356223075", "primary": "1182282", "server": "1", "date_create": "30323", "photos": "43", "secret": "0bbea145bb", "owner": "51035747350@N01", "vist_label": "parade", "id": "30323"}, {"description": "Downtown Pittsburgh for First Night, including some volunteer time at the Venture Outdoors booth.", "title": "First Night", "farm": "1", "date_update": "1356154092", "primary": "3297631", "server": "3", "date_create": "82746", "photos": "13", "secret": "a3cb4630d9", "owner": "46528311@N00", "vist_label": "parade", "id": "82746"}, {"description": "the 2005 st. patrick's day parade", "title": "st. pat's, kc style", "farm": "1", "date_update": "1313980305", "primary": "6754181", "server": "3", "date_create": "168494", "photos": "20", "secret": "caed3df4ae", "owner": "51035775905@N01", "vist_label": "parade", "id": "168494"}, {"description": "A protest of proposed Muni fare increases and a celebration to reclaim public spaces. Still have more photos to add.", "title": "Reclaim the Streets April 2, 2005", "farm": "1", "date_update": "1390860138", "primary": "8395116", "server": "6", "date_create": "208690", "photos": "30", "secret": "2d6498eb91", "owner": "44124466908@N01", "vist_label": "parade", "id": "208690"}, {"description": "Photos from my business trip to San Antonio", "title": "San Antonio, TX", "farm": "1", "date_update": "1296712171", "primary": "8460302", "server": "8", "date_create": "210164", "photos": "30", "secret": "9b1b0425fa", "owner": "19517696@N00", "vist_label": "parade", "id": "210164"}, {"description": "", "title": "NYE Dinner and Party", "farm": "1", "date_update": "1356885448", "primary": "341105132", "server": "126", "date_create": "1167678682", "photos": "17", "secret": "1e9e4eac02", "owner": "86636178@N00", "vist_label": "party", "id": "72157594452138486"}, {"description": "NEEXXUUS NYE zero seven", "title": "nexus nye 2007", "farm": "1", "date_update": "1297408100", "primary": "341179530", "server": "156", "date_create": "1167681602", "photos": "25", "secret": "4e97089a1e", "owner": "49242195@N00", "vist_label": "party", "id": "72157594452246340"}, {"description": "", "title": "New Year's Eve 2009", "farm": "5", "date_update": "1356198285", "primary": "4233618513", "server": "4003", "date_create": "1262369125", "photos": "15", "secret": "5e05d7b61a", "owner": "8641585@N02", "vist_label": "party", "id": "72157623114382738"}, {"description": "", "title": "Pasadena to the Bay Area for Solstice 2009", "farm": "5", "date_update": "1305064555", "primary": "4234086757", "server": "4070", "date_create": "1262378483", "photos": "21", "secret": "2d66bf0005", "owner": "39778330@N04", "vist_label": "party", "id": "72157622990809751"}, {"description": "featuring a live performance by My Friend Lisa", "title": "New Years Eve 2009", "farm": "5", "date_update": "1356143645", "primary": "4235032112", "server": "4007", "date_create": "1262380876", "photos": "22", "secret": "b196f79966", "owner": "69295994@N00", "vist_label": "party", "id": "72157622991071411"}, {"description": "Or is it 2009? It's 12/31/09, so what is the proper term?", "title": "NYE 2010", "farm": "5", "date_update": "1344405208", "primary": "4234517129", "server": "4058", "date_create": "1262385368", "photos": "10", "secret": "e98e49c328", "owner": "27068004@N07", "vist_label": "party", "id": "72157622991566633"}, {"description": "In which Patti and I bum around on Bainbridge Island", "title": "DILO: MayDay 05", "farm": "1", "date_update": "1300619688", "primary": "11867531", "server": "11", "date_create": "290987", "photos": "47", "secret": "cca5e35f63", "owner": "35034354121@N01", "vist_label": "party", "id": "290987"}, {"description": "The ninth anniversary of my 29th birthday!", "title": "Yo shorty, it's my birfday", "farm": "1", "date_update": "1305602073", "primary": "29872392", "server": "22", "date_create": "675903", "photos": "30", "secret": "0a7e84586e", "owner": "83741526@N00", "vist_label": "party", "id": "675903"}, {"description": "", "title": "capitol hill block party", "farm": "1", "date_update": "1299255633", "primary": "30350010", "server": "21", "date_create": "679261", "photos": "13", "secret": "7bd05f27dd", "owner": "37996595541@N01", "vist_label": "party", "id": "679261"}, {"description": "My sister Deanna decided to have an all out blow out for her 30th. Here's the photographic evidence.", "title": "Deanna's 30th Birthday Bash", "farm": "1", "date_update": "1356195826", "primary": "30429170", "server": "22", "date_create": "1150813070", "photos": "38", "secret": "51282356e9", "owner": "12286426@N00", "vist_label": "party", "id": "72157594171848171"}, {"description": "Yet another archived set of pics were found. These were from the BlairLake Holiday Bowl-A-Rama and White Elephant Gift Exchange. Very Interesting to see the changes since this other set.", "title": "BlairLake Holiday Bowl-A-Rama 1997", "farm": "1", "date_update": "1297630397", "primary": "315417", "server": "1", "date_create": "6998", "photos": "29", "secret": "dcee2e4680", "owner": "36521965978@N01", "vist_label": "party", "id": "6998"}, {"description": "", "title": "30th June 2003", "farm": "1", "date_update": "1357147723", "primary": "17050785", "server": "12", "date_create": "406196", "photos": "23", "secret": "9a86a00f9c", "owner": "74211617@N00", "vist_label": "party", "id": "406196"}, {"description": "These are photos taken at the China Pearl (affectionately known as "The Hurl").", "title": "China Pearl", "farm": "1", "date_update": "1356286644", "primary": "23165153", "server": "18", "date_create": "533451", "photos": "20", "secret": "f7bec4b446", "owner": "73986411@N00", "vist_label": "party", "id": "533451"}, {"description": "The July 2 demonstration", "title": "Make Poverty History", "farm": "1", "date_update": "1356142399", "primary": "23069412", "server": "17", "date_create": "531768", "photos": "32", "secret": "8b948eaf74", "owner": "76153932@N00", "vist_label": "party", "id": "531768"}, {"description": "Shenanigans for Sean's birthday :)\n\nMore available here", "title": "Sean's Show", "farm": "1", "date_update": "1356390996", "primary": "23168825", "server": "16", "date_create": "533977", "photos": "35", "secret": "ba758f989e", "owner": "79925938@N00", "vist_label": "party", "id": "533977"}, {"description": "A murder/mystery at Allie & Si's", "title": "New Year 2005", "farm": "1", "date_update": "1297115040", "primary": "2870652", "server": "2", "date_create": "71769", "photos": "21", "secret": "e2057d1e36", "owner": "44124385392@N01", "vist_label": "party", "id": "71769"}, {"description": "", "title": "New years eve 2004/2005", "farm": "1", "date_update": "1356253001", "primary": "2884165", "server": "1", "date_create": "72083", "photos": "31", "secret": "419077612c", "owner": "51035616449@N01", "vist_label": "party", "id": "72083"}, {"description": "", "title": "2009-12-24 \u6d77\u6e2f\u57ce\u5ee3\u6771\u9053\u8056\u8a95Street Party", "farm": "3", "date_update": "1356144237", "primary": "4240974381", "server": "2703", "date_create": "1262544318", "photos": "27", "secret": "e415903f62", "owner": "71904160@N00", "vist_label": "party", "id": "72157623005606487"}, {"description": "", "title": "Chinatown", "farm": "5", "date_update": "1308082577", "primary": "4241577091", "server": "4057", "date_create": "1262595108", "photos": "26", "secret": "4c5771a352", "owner": "38356019@N04", "vist_label": "party", "id": "72157623010818465"}, {"description": "", "title": "El Capitan, Mr. Grinder Nova, and his Merry Melody Makers, New Year's Eve 2010 at Twain's", "farm": "3", "date_update": "1406583949", "primary": "4242362769", "server": "2753", "date_create": "1262569162", "photos": "10", "secret": "b70c17e0d2", "owner": "24521662@N03", "vist_label": "party", "id": "72157623133202486"}, {"description": "Kussharo in eastern Hokkaido. ", "title": "Kussharo", "farm": "5", "date_update": "1356267563", "primary": "4294372072", "server": "4003", "date_create": "1264133370", "photos": "12", "secret": "191e05aa5a", "owner": "37921614@N00", "vist_label": "party", "id": "72157623259212490"}, {"description": "The annual Santa Fe Opera trip", "title": "Santa Fe 2004", "farm": "1", "date_update": "1357001965", "primary": "17496335", "server": "14", "date_create": "415579", "photos": "29", "secret": "c42d4a2841", "owner": "35118454@N00", "vist_label": "party", "id": "415579"}, {"description": "", "title": "Soir\u00e9e de d\u00e9part de Rodolphe", "farm": "1", "date_update": "1297178091", "primary": "17397769", "server": "13", "date_create": "413663", "photos": "33", "secret": "37d3d928f2", "owner": "49722723@N00", "vist_label": "party", "id": "413663"}, {"description": "Independence Day!", "title": "July 4th, 2005", "farm": "1", "date_update": "1356158631", "primary": "23698033", "server": "18", "date_create": "543686", "photos": "29", "secret": "610ed04d6e", "owner": "49503157467@N01", "vist_label": "party", "id": "543686"}, {"description": "", "title": "New Year 2010", "farm": "5", "date_update": "1356154058", "primary": "4247867651", "server": "4066", "date_create": "1262712851", "photos": "12", "secret": "3d9e5e609b", "owner": "51616741@N00", "vist_label": "party", "id": "72157623021292833"}, {"description": "", "title": "2009 Historical Society Member Holiday Party & Lizard Sculpture Auction", "farm": "5", "date_update": "1301498733", "primary": "4247692179", "server": "4036", "date_create": "1262709583", "photos": "19", "secret": "31809b519a", "owner": "30665750@N06", "vist_label": "party", "id": "72157623145509240"}, {"description": "Nachwanderung durch die Berge oberhalb von M\u00fcrren mit Schneeschuhen und partiell verfinstertem Vollmond. Ein Erlebnis.", "title": "Sylvester in M\u00fcrren 2009/10", "farm": "3", "date_update": "1301492381", "primary": "4253546189", "server": "2787", "date_create": "1262879934", "photos": "11", "secret": "6265b22e80", "owner": "44210380@N04", "vist_label": "party", "id": "72157623159821460"}, {"description": "Parti ffarwel Liz Jenkins, Prospect a gynhaliwyd yng nghaffe Capsule, Heol Siarl, Caerdydd 2005-04-07.", "title": "Parti ffarw\u00e9l Liz Jenkins", "farm": "1", "date_update": "1345888715", "primary": "8737076", "server": "5", "date_create": "217084", "photos": "13", "secret": "b462c04749", "owner": "84373521@N00", "vist_label": "party", "id": "217084"}, {"description": "A thrilling tourny of caps. Final match: Matt & Evan VS Ian & Christine. Game tied 2-to2 and Evan sinks it. Ian returns. Matt returns. Game over. Thrilling.", "title": "CAAAAAAPS", "farm": "1", "date_update": "1356210123", "primary": "12806094", "server": "11", "date_create": "311966", "photos": "16", "secret": "4c3e4b9c04", "owner": "52179512@N00", "vist_label": "party", "id": "311966"}, {"description": "", "title": "Summer Party 2005", "farm": "1", "date_update": "1314467458", "primary": "31995748", "server": "21", "date_create": "712904", "photos": "41", "secret": "4568f42feb", "owner": "71365354@N00", "vist_label": "party", "id": "712904"}, {"description": "From a house party Dec. 3, 2004.", "title": "Visitors Rock Kevin's Place", "farm": "1", "date_update": "1357352698", "primary": "4451105", "server": "1", "date_create": "661616", "photos": "19", "secret": "59c8c927e4", "owner": "40954787@N00", "vist_label": "party", "id": "661616"}, {"description": "Every July, after Independence Day Celebration, Veronique Deplanne would take her month long summer vacation from catering. Friends and colleagues would hold a bon voyage party. In 1995 it was held at Lisa Woodward's home which was then located at 2215 13th Street in NW WDC.", "title": "Veronique's Bon Voyage . WDC . 20 July 1995", "farm": "1", "date_update": "1376804966", "primary": "18165727", "server": "12", "date_create": "429580", "photos": "29", "secret": "d687cc76dc", "owner": "95413346@N00", "vist_label": "party", "id": "429580"}, {"description": "", "title": "Mom's Retirement Party", "farm": "1", "date_update": "1378136269", "primary": "24507330", "server": "21", "date_create": "560264", "photos": "16", "secret": "6fbdc15b2a", "owner": "37649571@N00", "vist_label": "party", "id": "560264"}, {"description": "The dinner for HHS Junior Grace 2005", "title": "Junior Grace Dinner", "farm": "1", "date_update": "1331265085", "primary": "3139851", "server": "1", "date_create": "78660", "photos": "35", "secret": "6c93be56c7", "owner": "51035599008@N01", "vist_label": "party", "id": "78660"}, {"description": "Lillian is now just over a month old. Suprising it took us so long to get up to see her.", "title": "Visiting Lillian, April 2005", "farm": "1", "date_update": "1384528443", "primary": "8933145", "server": "8", "date_create": "227929", "photos": "16", "secret": "4b9b62f4da", "owner": "44124382140@N01", "vist_label": "party", "id": "227929"}, {"description": "Bon Voyage party for Huang and Wang (05 Aug 2005)", "title": "ThoughtWorks University - Bon Voyage Party for Huang and Wang", "farm": "1", "date_update": "1328415843", "primary": "32666386", "server": "23", "date_create": "1012491", "photos": "19", "secret": "ec927fe478", "owner": "45987590@N00", "vist_label": "party", "id": "1012491"}, {"description": "Festa do Avante, Atalaia, Amora, Seixal, 3-5/August/2004", "title": "Festa do Avante 2004", "farm": "1", "date_update": "1356301818", "primary": "384821", "server": "1", "date_create": "8955", "photos": "10", "secret": "b3993c82c9", "owner": "44124472747@N01", "vist_label": "party", "id": "8955"}, {"description": "A couple months ago, Amit and Zach were talking and thought that it'd be cool to gather a whole bunch of people to go camping and photographing together one night right here in Manhattan. They agreed do a test run in Times Square.\n\nOn Saturday, June 11 at midnight, Zach, Paul, and Amit arrived to pitch camp.\n\nThe rest of the story...\n\n(attention/press)\n\n(Zach has some more pics. Including some of me since I only got Paul and Zach.)", "title": "Camping in Times Square", "farm": "1", "date_update": "1296229647", "primary": "18878040", "server": "15", "date_create": "444564", "photos": "30", "secret": "d842c88e36", "owner": "48600091327@N01", "vist_label": "party", "id": "444564"}, {"description": "www.lostvagueness.com", "title": "Lost Vagueness 2005", "farm": "1", "date_update": "1305584365", "primary": "34217524", "server": "21", "date_create": "758123", "photos": "37", "secret": "90189be0b0", "owner": "67474281@N00", "vist_label": "party", "id": "758123"}, {"description": "", "title": "Bloc Party @ Webster Hall 06/15/05", "farm": "1", "date_update": "1356807993", "primary": "19730000", "server": "13", "date_create": "462656", "photos": "23", "secret": "7ebff25644", "owner": "74883934@N00", "vist_label": "party", "id": "462656"}, {"description": "The pictures of peoples' home made banners are the best ones.", "title": "Anti-war march, Feb 2003", "farm": "1", "date_update": "1356182247", "primary": "2253617", "server": "2", "date_create": "56858", "photos": "24", "secret": "625dbe7f17", "owner": "44124318714@N01", "vist_label": "party", "id": "56858"}, {"description": "the end of school ding.", "title": "School Christmas Party", "farm": "1", "date_update": "1300619299", "primary": "2391557", "server": "1", "date_create": "60113", "photos": "33", "secret": "fdb6cbadfb", "owner": "89142993@N00", "vist_label": "party", "id": "60113"}, {"description": "Blood Feast party at Starr's", "title": "Blood Feast", "farm": "1", "date_update": "1356146695", "primary": "9686701", "server": "5", "date_create": "246334", "photos": "11", "secret": "158ff0a957", "owner": "35294562@N00", "vist_label": "party", "id": "246334"}, {"description": "", "title": "Chris' Xmas 2002", "farm": "1", "date_update": "1297719534", "primary": "14354588", "server": "10", "date_create": "347575", "photos": "12", "secret": "198ab486d8", "owner": "44124469950@N01", "vist_label": "party", "id": "347575"}, {"description": "05.14.05\nOur reason for being in Chicago was Karen's graduation, and graduate she did. After the ceremony, her parents threw a good party at the Ram in the Chicago suburbs.", "title": "Karen's Graduation", "farm": "1", "date_update": "1421626716", "primary": "14427508", "server": "12", "date_create": "349272", "photos": "16", "secret": "9c9384e54b", "owner": "30952578@N00", "vist_label": "party", "id": "349272"}, {"description": "at China Inn in Crawfordsville", "title": "Ericka's Going Away Party", "farm": "1", "date_update": "1356193263", "primary": "26813511", "server": "23", "date_create": "608134", "photos": "29", "secret": "c141ea14b1", "owner": "33093705@N00", "vist_label": "party", "id": "608134"}, {"description": "", "title": "ITS#FOUR Fashion Party", "farm": "1", "date_update": "1305579220", "primary": "26891225", "server": "21", "date_create": "609587", "photos": "34", "secret": "3f94548429", "owner": "35469985@N00", "vist_label": "party", "id": "609587"}, {"description": "una noche muy bien planeada, en un local donde los organizadores eran unos inutiles", "title": "CHC en Maintecillo", "farm": "1", "date_update": "1337184656", "primary": "3564670", "server": "2", "date_create": "89327", "photos": "30", "secret": "56760d92c3", "owner": "17594319@N00", "vist_label": "party", "id": "89327"}, {"description": "Provoke says bye bye to Party Boy.", "title": "Party Boy's Tray of Death", "farm": "1", "date_update": "1298091091", "primary": "5128809", "server": "4", "date_create": "129154", "photos": "34", "secret": "51a2aaa083", "owner": "25813399@N00", "vist_label": "party", "id": "129154"}, {"description": "Ben's annual Shamrock Rock party in LA. I fly down. Ben makes beer.", "title": "St. Patrick's Day 2005", "farm": "1", "date_update": "1300394043", "primary": "6935694", "server": "6", "date_create": "172875", "photos": "24", "secret": "71bab8adb0", "owner": "52232708@N00", "vist_label": "party", "id": "172875"}, {"description": "Sena bought a house and held a housewarming party. The next day we re-grouped and sat about enjoying the amazing sunshine.", "title": "Sena's Party (and after)", "farm": "1", "date_update": "1410687110", "primary": "20452243", "server": "15", "date_create": "477308", "photos": "19", "secret": "3d9cc94d77", "owner": "50092654@N00", "vist_label": "party", "id": "477308"}, {"description": "We had a BBQ / pool party at my house, sponsored by Proper Riot Clothing. Everyone got all dressed up and drunk and mugged for the camera. Then a few of us intrepid souls headed for the beach at Playa Del Rey to try to catch some fireworks.", "title": "4th of July, 2005", "farm": "1", "date_update": "1356164522", "primary": "27499037", "server": "22", "date_create": "622334", "photos": "45", "secret": "fd15108950", "owner": "34656539@N00", "vist_label": "party", "id": "622334"}, {"description": "", "title": "Kick Off Party @T.Y. Harbor Brewing", "farm": "1", "date_update": "1313536133", "primary": "10264118", "server": "7", "date_create": "255769", "photos": "11", "secret": "607e53b699", "owner": "97779350@N00", "vist_label": "party", "id": "255769"}, {"description": "Good times up Pitt Lake", "title": "Pitt Lake Party", "farm": "1", "date_update": "1347943898", "primary": "35913777", "server": "25", "date_create": "794103", "photos": "40", "secret": "dc006eab38", "owner": "98583937@N00", "vist_label": "party", "id": "794103"}, {"description": "DJ Stalker performs live at the iPod party in amsterdam", "title": "DJ STALKER II", "farm": "1", "date_update": "1376901719", "primary": "10484386", "server": "6", "date_create": "258924", "photos": "16", "secret": "01c8514e34", "owner": "89488708@N00", "vist_label": "party", "id": "258924"}, {"description": "", "title": "Staci's Graduation Party", "farm": "1", "date_update": "1356209316", "primary": "15358435", "server": "14", "date_create": "369939", "photos": "28", "secret": "587633f53f", "owner": "40732567947@N01", "vist_label": "party", "id": "369939"}, {"description": "Working at EFF was an incredibly fun and rewarding job. My only regret is that I didn't take more pictures. This set is from the build-out into the building next door.", "title": "EFF Expansion/Open House 2002", "farm": "1", "date_update": "1327173611", "primary": "21396976", "server": "15", "date_create": "497938", "photos": "13", "secret": "c69b64f4f0", "owner": "84768384@N00", "vist_label": "party", "id": "497938"}, {"description": "Not really many photos from the conference itself, more from Seattle generally.", "title": "Gnomedex in Seattle, 2005", "farm": "1", "date_update": "1356204561", "primary": "21411940", "server": "17", "date_create": "499924", "photos": "25", "secret": "0d6861883e", "owner": "37996644096@N01", "vist_label": "party", "id": "499924"}, {"description": "", "title": "Painting Party", "farm": "1", "date_update": "1306863324", "primary": "37115079", "server": "24", "date_create": "819764", "photos": "25", "secret": "28ff75a492", "owner": "86278470@N00", "vist_label": "party", "id": "819764"}, {"description": "Joel and Pearl Bailes, musical impresarios extraordinaire, host regular jams at their Capitol Hill home.", "title": "Jam at Chez Bailes", "farm": "1", "date_update": "1373318016", "primary": "5385004", "server": "5", "date_create": "135741", "photos": "18", "secret": "de01dde7e4", "owner": "98057950@N00", "vist_label": "party", "id": "135741"}, {"description": "fire fire fire", "title": "Will's Party 2005", "farm": "1", "date_update": "1356808036", "primary": "28416198", "server": "23", "date_create": "1130580210", "photos": "31", "secret": "09b8cf6d6f", "owner": "83959542@N00", "vist_label": "party", "id": "1237313"}, {"description": "", "title": "Anti-Atom-Aktion am Deutschen Museum", "farm": "1", "date_update": "1356179429", "primary": "28797753", "server": "23", "date_create": "649651", "photos": "46", "secret": "742c30f18b", "owner": "30626457@N00", "vist_label": "party", "id": "649651"}, {"description": "Images from Japan trip 2003, covering Tohoku.", "title": "Japan 2003", "farm": "1", "date_update": "1416005776", "primary": "269110", "server": "1", "date_create": "5521", "photos": "37", "secret": "ffccba27c9", "owner": "36521968652@N01", "vist_label": "party", "id": "5521"}, {"description": "Photos I took at the 2004 Christmas party at Brandon's parent's house. ", "title": "Christmas 2004", "farm": "1", "date_update": "1356140548", "primary": "2544681", "server": "2", "date_create": "63789", "photos": "15", "secret": "a4dbab979b", "owner": "44124434485@N01", "vist_label": "party", "id": "63789"}, {"description": "", "title": "\u65c5\u904a", "farm": "2", "date_update": "1358878487", "primary": "865188851", "server": "1114", "date_create": "1185046029", "photos": "12", "secret": "ba99aff7d5", "owner": "93256925@N00", "vist_label": "party", "id": "72157600940028059"}, {"description": "", "title": "Toga Party", "farm": "1", "date_update": "1312480424", "primary": "22769193", "server": "15", "date_create": "525776", "photos": "47", "secret": "34c4722179", "owner": "36566854@N00", "vist_label": "party", "id": "525776"}, {"description": "When Gunny, Lee and I decided to volunteer to hoist a Mikoshi, or portable shrine, through the streets of Fussa City", "title": "Mikoshi in Fussa - 31 July 05", "farm": "1", "date_update": "1357183626", "primary": "29713751", "server": "23", "date_create": "667714", "photos": "12", "secret": "fbbb1c26e3", "owner": "71501437@N00", "vist_label": "party", "id": "667714"}, {"description": "We all went to Frankie and Benny's then to Old Orleans a few of us went to Hayleys for a night cap!", "title": "Sarah's 21st Birthday", "farm": "1", "date_update": "1297265777", "primary": "29655673", "server": "21", "date_create": "666831", "photos": "41", "secret": "0ca4b39fc0", "owner": "22246497@N00", "vist_label": "party", "id": "666831"}, {"description": "Congrats to Val on her Teacherrness! Party hosted by mark and Steven in their groovy new pad", "title": "Val's Party May 2005", "farm": "1", "date_update": "1306433065", "primary": "16763542", "server": "11", "date_create": "400403", "photos": "15", "secret": "cdcf6f5d3f", "owner": "59451747@N00", "vist_label": "party", "id": "400403"}, {"description": "Here are some flick from the 9/11 memorial concert I went to this weekend in Golden Gate park. \n\nPardon the photo quality... my digi cam actually died at this show. :(", "title": "Power to the Peaceful - 9/11 Memorial Concert", "farm": "1", "date_update": "1431995249", "primary": "418922", "server": "1", "date_create": "10332", "photos": "15", "secret": "2a98dd69a9", "owner": "49503002894@N01", "vist_label": "party", "id": "10332"}, {"description": "", "title": "Party Animals", "farm": "1", "date_update": "1366287712", "primary": "764371", "server": "1", "date_create": "19074", "photos": "10", "secret": "ca35cd88eb", "owner": "47213442@N00", "vist_label": "party", "id": "19074"}, {"description": "", "title": "Party at the Lab", "farm": "1", "date_update": "1359688322", "primary": "1458597", "server": "2", "date_create": "37189", "photos": "15", "secret": "76c08bfd8d", "owner": "41894173520@N01", "vist_label": "party", "id": "37189"}, {"description": "After SCF on Friday, some of the guys headed over to the apartments for poker, classic Nintendo, and food.", "title": "The Guy's Party", "farm": "1", "date_update": "1356827617", "primary": "1460871", "server": "2", "date_create": "37246", "photos": "17", "secret": "3071a8490d", "owner": "11105112@N00", "vist_label": "party", "id": "37246"}, {"description": "Manchester Apollo", "title": "Faithless Dec 2004", "farm": "1", "date_update": "1392319236", "primary": "2101604", "server": "2", "date_create": "1139322599", "photos": "13", "secret": "33735ee966", "owner": "66434265@N00", "vist_label": "party", "id": "72057594060732425"}, {"description": "", "title": "Passover at ANCC", "farm": "3", "date_update": "1313988082", "primary": "3952758543", "server": "2624", "date_create": "1253969376", "photos": "26", "secret": "ec86f76552", "owner": "23434287@N00", "vist_label": "passover", "id": "72157622457999530"}, {"description": "Monday, March 13th 2006", "title": "Sue & Rita in Jupiter, FL", "farm": "1", "date_update": "1427061045", "primary": "112493976", "server": "19", "date_create": "1142357509", "photos": "39", "secret": "98538cb8ac", "owner": "74193050@N00", "vist_label": "passover", "id": "72057594082085903"}, {"description": "Each year our church home group celebrates a Passover Meal on Maundy Thursday.", "title": "Passover Meal 2006", "farm": "1", "date_update": "1356169964", "primary": "128757985", "server": "44", "date_create": "1145085845", "photos": "12", "secret": "7471c7127c", "owner": "13566646@N00", "vist_label": "passover", "id": "72057594107464030"}, {"description": "Three days soaking in a begrudging sun and the beautiful solitude of Rosie's room. Best friends and Trunkers and more Parky and Co. and then there's that church. A spectacular thing, Easter, a spectacular trip to Boston and back. Soak it up.", "title": "celebrating spring in somerville", "farm": "1", "date_update": "1356288128", "primary": "131526079", "server": "55", "date_create": "1145494430", "photos": "19", "secret": "cb612b42c3", "owner": "72324736@N00", "vist_label": "passover", "id": "72057594111789928"}, {"description": "", "title": "Passover 2007", "farm": "1", "date_update": "1301275149", "primary": "444499900", "server": "220", "date_create": "1175574309", "photos": "11", "secret": "e722d2b55e", "owner": "62428590@N00", "vist_label": "passover", "id": "72157600044428041"}, {"description": "Family Passover Celebration (as photographed by the resident Presbyterian)", "title": "Passover 2007", "farm": "1", "date_update": "1297323999", "primary": "445435265", "server": "193", "date_create": "1175641721", "photos": "15", "secret": "4a71a165f8", "owner": "16696103@N00", "vist_label": "passover", "id": "72157600046387670"}, {"description": "The college chapel was built in late perpendicular style between 1629 and 1631 by Bishop Williams of Lincoln. Its chief glories were the windows and the screen; this is built of cedar wood (to recall the Temple in Jerusalem) and for over a hundred years filled the Chapel with the scent of cedar. The front pews with their statues and the carved ceiling were added in the 1680s. Since then the Chapel has remained almost unchanged.\n\nThe windows are the masterpiece of Abraham van Linge, 1629-31. He was the finest glass painter of his generation. \n\nThey are not stained glass, but enamelled: the enamel was painted on then fired; the heat and length of firing determined the final colour. It is a tricky, sophisticated technique of which van Linge was the supreme master.\n\nThe panels in the East window are 'typologically' arranged: on the top, six scenes from the life of Jesus; underneath them, six corresponding scenes from the Old Testament. All the links except for the last are explicitly drawn in the scripture. ", "title": "Lincoln College chapel", "farm": "1", "date_update": "1415546432", "primary": "386605721", "server": "181", "date_create": "1171209312", "photos": "38", "secret": "31a0d3c3b3", "owner": "35409814@N00", "vist_label": "passover", "id": "72157594529682304"}, {"description": "The Black Angels @ Little Brother's -- Columbus, Ohio (4.3.2007)", "title": "The Black Angels", "farm": "1", "date_update": "1349449640", "primary": "446632330", "server": "221", "date_create": "1175732877", "photos": "25", "secret": "1aa9543ffd", "owner": "46544382@N00", "vist_label": "passover", "id": "72157600048223185"}, {"description": "", "title": "passover2007", "farm": "1", "date_update": "1394465562", "primary": "447843090", "server": "221", "date_create": "1175826557", "photos": "11", "secret": "a883832ace", "owner": "77726415@N00", "vist_label": "passover", "id": "72157600050438193"}, {"description": "", "title": "Passover 2007", "farm": "1", "date_update": "1304136820", "primary": "451557210", "server": "176", "date_create": "1176081669", "photos": "27", "secret": "08d7b97775", "owner": "68295962@N00", "vist_label": "passover", "id": "72157600057236853"}, {"description": "if we have no chametz, let's eat matzo in the kinneret, while having fun with some old friends. and lior...", "title": "Kinneret/Passover 2007", "farm": "1", "date_update": "1356513439", "primary": "456298045", "server": "209", "date_create": "1176362315", "photos": "25", "secret": "37aa9a4210", "owner": "26225424@N00", "vist_label": "passover", "id": "72157600068572282"}, {"description": "", "title": "20070402 Passover at Richters", "farm": "2", "date_update": "1301495484", "primary": "1385667730", "server": "1328", "date_create": "1189860169", "photos": "12", "secret": "33c443b6bd", "owner": "10310250@N02", "vist_label": "passover", "id": "72157602018934338"}, {"description": "", "title": "20060413 Passover Day in Nofit", "farm": "3", "date_update": "1300716612", "primary": "1561126505", "server": "2389", "date_create": "1192304119", "photos": "10", "secret": "0123d9e7d6", "owner": "10310250@N02", "vist_label": "passover", "id": "72157602403457113"}, {"description": "I took a walk around Potsdam, New York today after my demonstration. It is a sleepy little town with some very beautiful places.", "title": "Potsdam, New York", "farm": "1", "date_update": "1356254487", "primary": "50016058", "server": "24", "date_create": "1128626552", "photos": "22", "secret": "9179808f1d", "owner": "80081080@N00", "vist_label": "planting_a_tree", "id": "1085694"}, {"description": "As part of our training at the Exploratorium , we read an excerpt from a book called Botany of Desire, by Michael Pollan. In it, we learned that the apples that grow from seeds are not edible, and the ones we buy in the supermarket are from grafted trees, clones of apples selected hundreds of years ago as being delicious. This was in the context of the myth of Johnny Appleseed, aka John Chapman. Since he was planting apples from seeds, turns out that he wasn't really bringing the gift of apples per se, but rather the gift of apple cider! That's what apples used to be for, not for eating. In fact, that whole "one apple a day keeps the doctor away" adage was a publicity move on the apple industry part to reboot the image of apples from a "devil's fruit" to a healthy option.\n\nIn any case, what we explainers latched on right away was the fact that you make hard cider out of apples, and promptly decided to make our own. So, Ye Olde Cidey Cider Clubbe Shoppe was born, and we had a cider-making party. This is photographic evidence of said endeavour. Enjoy!", "title": "Ye Olde Timey Cidey Cider Clubbe Shoppe", "farm": "1", "date_update": "1356150565", "primary": "294252548", "server": "103", "date_create": "1163227924", "photos": "31", "secret": "1d635a59ec", "owner": "48094050@N00", "vist_label": "planting_a_tree", "id": "72157594370002393"}, {"description": "", "title": "Hawaii Day 4 - Kilauea Volcano", "farm": "1", "date_update": "1299935770", "primary": "422895939", "server": "185", "date_create": "1174035469", "photos": "24", "secret": "a4bc8f2fb0", "owner": "33389938@N00", "vist_label": "planting_a_tree", "id": "72157600002596744"}, {"description": "3 guys on bikes having the ride of their lives in Malaysia, from Perangang to Kota Tinggi to Johor Bahru!", "title": "Sun and Rain: Extreme", "farm": "1", "date_update": "1300444840", "primary": "44251319", "server": "33", "date_create": "968378", "photos": "36", "secret": "f84136bb1f", "owner": "92516267@N00", "vist_label": "planting_a_tree", "id": "968378"}, {"description": "", "title": "Friends of Trees Planting 1/21/12!", "farm": "8", "date_update": "1327198050", "primary": "6739429279", "server": "7026", "date_create": "1327197855", "photos": "14", "secret": "51d4572931", "owner": "50612560@N05", "vist_label": "planting_a_tree", "id": "72157628974721157"}, {"description": "Went skate boarding with two of my friends. \n", "title": "Skating at Marina", "farm": "1", "date_update": "1378189885", "primary": "29418469", "server": "22", "date_create": "665897", "photos": "11", "secret": "979e6336bc", "owner": "30901369@N00", "vist_label": "planting_a_tree", "id": "665897"}, {"description": "February 2006", "title": "White Sands National Monument", "farm": "1", "date_update": "1321902603", "primary": "97031511", "server": "43", "date_create": "1139374516", "photos": "12", "secret": "ec4243dc3a", "owner": "73175288@N00", "vist_label": "planting_a_tree", "id": "72057594061082572"}, {"description": "Colorado Bend State Park", "title": "Day Trip", "farm": "1", "date_update": "1335573875", "primary": "68148248", "server": "20", "date_create": "1133152376", "photos": "44", "secret": "480f343fd5", "owner": "84455967@N00", "vist_label": "planting_a_tree", "id": "1462648"}, {"description": "5/6/06", "title": "Saturday at the BBG", "farm": "1", "date_update": "1305602074", "primary": "141640351", "server": "56", "date_create": "1146965577", "photos": "39", "secret": "6e2b3b8109", "owner": "83741526@N00", "vist_label": "planting_a_tree", "id": "72057594127440513"}, {"description": "My Beginning Set. I will move off of this one some time in the future. I am limited to three sets, so in planning ahead these will be used very sparingly, just to keep things somewhat organized by the "era"s of my life. At the end of high school, I will move off of my 'Starter' set.", "title": "Starter", "farm": "1", "date_update": "1300878877", "primary": "151543707", "server": "55", "date_create": "1148344608", "photos": "38", "secret": "6ec5ffb137", "owner": "13288112@N00", "vist_label": "planting_a_tree", "id": "72057594142632397"}, {"description": "Nara is a very ancient japanese city with many shrines", "title": "Nara", "farm": "1", "date_update": "1306441752", "primary": "259452924", "server": "114", "date_create": "1159850954", "photos": "28", "secret": "9491d23d58", "owner": "70785497@N00", "vist_label": "planting_a_tree", "id": "72157594310500030"}, {"description": "", "title": "Natural Falls State Park, West Siloam Springs, OK", "farm": "1", "date_update": "1307411724", "primary": "323164829", "server": "123", "date_create": "1166280736", "photos": "10", "secret": "c5886b38b0", "owner": "49758782@N00", "vist_label": "planting_a_tree", "id": "72157594422873458"}, {"description": "Five hour loop hike up Helderberg, with views 360 degree views of the Cape Town region.", "title": "Helderberg Mountain Hike", "farm": "1", "date_update": "1297499940", "primary": "399537897", "server": "155", "date_create": "1172298059", "photos": "20", "secret": "db5daed49d", "owner": "41894166399@N01", "vist_label": "planting_a_tree", "id": "72157594553148814"}, {"description": "", "title": "Rotorua town", "farm": "1", "date_update": "1395786077", "primary": "380624072", "server": "158", "date_create": "1176166914", "photos": "23", "secret": "7498b088db", "owner": "95142644@N00", "vist_label": "planting_a_tree", "id": "72157600060241193"}, {"description": "The bus was much older. They filled the under-bus storage and back half of the bus with cartons, so I had to have my bag with me on my seat. I was there early and was able to sit directly behind the driver. Halfway to Harbin we made an unscheduled stop to unload the boxes and then later made another stop to pick someone up. With all of this we were over an hour late arriving in Harbin and the sun set as I arrived. ", "title": "China bus Shenyang to Harbin", "farm": "1", "date_update": "1418075725", "primary": "345104068", "server": "166", "date_create": "1167892969", "photos": "38", "secret": "3f7d68aef2", "owner": "30265340@N00", "vist_label": "planting_a_tree", "id": "72157594458372207"}, {"description": "10 January 2007\nMarc organized this trip to celebrate my 34th birthday..", "title": "Khao Yai National Park, Thailand", "farm": "1", "date_update": "1397960314", "primary": "358119831", "server": "161", "date_create": "1173683938", "photos": "36", "secret": "bfdefe08ab", "owner": "78208003@N00", "vist_label": "planting_a_tree", "id": "72157594583750217"}, {"description": "", "title": "Rancho Santa Ana Botanic Garden", "farm": "1", "date_update": "1319927417", "primary": "434671019", "server": "161", "date_create": "1174885819", "photos": "27", "secret": "31a7320b58", "owner": "55587604@N00", "vist_label": "planting_a_tree", "id": "72157600027450140"}, {"description": "De Zot van Doddendael-cache", "title": "De zot van Doddendael", "farm": "1", "date_update": "1431154555", "primary": "449306635", "server": "178", "date_create": "1175949140", "photos": "44", "secret": "7d72314e59", "owner": "24776236@N00", "vist_label": "planting_a_tree", "id": "72157600053481092"}, {"description": "Information from lecture by Chris Nyerges. Do NOT eat any plant you find without thoroughly researching FIRST! ", "title": "Edible Plants", "farm": "1", "date_update": "1297159834", "primary": "510317666", "server": "204", "date_create": "1179894491", "photos": "16", "secret": "26d631d5c9", "owner": "22767800@N00", "vist_label": "planting_a_tree", "id": "72157600249028369"}, {"description": "Photos from Colonia in Uruguay.", "title": "Colonia, Uruguay", "farm": "2", "date_update": "1301613467", "primary": "535242604", "server": "1437", "date_create": "1181267072", "photos": "30", "secret": "de90505812", "owner": "61025927@N00", "vist_label": "planting_a_tree", "id": "72157600324602921"}, {"description": "The Campus Planning Office has designed a new garden at the south end of the famous Stanford Quadrangle.\n\nThe expansive Main Quad contains the university's first buildings, constructed between 1887 and 1891. With its palm trees and sandstone arcades, the distinctively Northern California style of the Inner Quad has a calming influence on passersby, and students frequently can be found studying in the shadows of its arches, or sleeping on the edges of its sun-drenched planter islands.\n\nThe Stanford campus plan was designed by famed landscape architect Frederick Law Olmsted, who designed New York's Central Park. The university's "Mission-style" architecture was strongly influenced by the Romanesque designs of H.H. Richardson. University architects Shepley, Rutan and Coolidge of Boston were young associates of the famous architect.\n\nDepartments and programs fortunate enough to have offices in the Quad include Cultural and Social Anthropology, Urban Studies, Classics and Asian Languages. \n", "title": "New Garden on Campus", "farm": "2", "date_update": "1336789677", "primary": "535231373", "server": "1240", "date_create": "1181257912", "photos": "20", "secret": "0b7c0524ff", "owner": "91905221@N00", "vist_label": "planting_a_tree", "id": "72157600325422018"}, {"description": "Kenilworth Gardens", "title": "Kenilworth", "farm": "2", "date_update": "1301296196", "primary": "538303249", "server": "1227", "date_create": "1181502979", "photos": "12", "secret": "f0ba878e09", "owner": "89016311@N00", "vist_label": "planting_a_tree", "id": "72157600334514375"}, {"description": "", "title": "Ta Prohm's strangler figs", "farm": "2", "date_update": "1304250059", "primary": "766270320", "server": "1005", "date_create": "1184038770", "photos": "20", "secret": "b9380cf3cb", "owner": "81788338@N00", "vist_label": "planting_a_tree", "id": "72157600738834989"}, {"description": "We went on a hike up Mingo Falls, a waterfall in Cherokee, NC, while on the E-town Mission Road Trip. Here are a few select images.", "title": "E-town Mission 07, Vol 1: Mingo Falls", "farm": "2", "date_update": "1356276057", "primary": "854028751", "server": "1010", "date_create": "1184884066", "photos": "28", "secret": "cb7efb6f7e", "owner": "43301585@N00", "vist_label": "planting_a_tree", "id": "72157600908003290"}, {"description": "", "title": "Edinburgh Botanic Gardens", "farm": "2", "date_update": "1356191245", "primary": "941975397", "server": "1283", "date_create": "1217698622", "photos": "16", "secret": "53a22ea415", "owner": "55238998@N00", "vist_label": "planting_a_tree", "id": "72157606501282252"}, {"description": "", "title": "Preparation Pinksterhike 2007", "farm": "2", "date_update": "1431154555", "primary": "691991553", "server": "1377", "date_create": "1183369999", "photos": "40", "secret": "5a05c756b8", "owner": "24776236@N00", "vist_label": "planting_a_tree", "id": "72157600600643506"}, {"description": "Hike to the summit of Saddle Mountain.\nAugust 4th, 2007", "title": "Saddle Mountain Hike 8/2007", "farm": "2", "date_update": "1386097136", "primary": "1014486142", "server": "1225", "date_create": "1186292793", "photos": "39", "secret": "7abf863a6d", "owner": "60415054@N00", "vist_label": "planting_a_tree", "id": "72157601226364674"}, {"description": "Also visit my stream of great photos, gorgeouxness and my daily updated blog, cheezy cheeky.", "title": "New Year, London, UK, 2006 to 2007", "farm": "2", "date_update": "1297856331", "primary": "1382157459", "server": "1085", "date_create": "1189803391", "photos": "11", "secret": "a5f6585fd5", "owner": "77597743@N00", "vist_label": "planting_a_tree", "id": "72157602007678960"}, {"description": "", "title": "October Day", "farm": "3", "date_update": "1356763468", "primary": "1565102901", "server": "2125", "date_create": "1192338625", "photos": "21", "secret": "3667544629", "owner": "9052666@N05", "vist_label": "planting_a_tree", "id": "72157602410720603"}, {"description": "My favourite place in London - I first went about 20 years ago. Sadly it's closing down in a couple of weeks and relocating to Lincolnshire, so I made sure to get down there and get a few macro shots of the butterflies before it was too late. Had some trouble with the lens steaming up at first but I think some of them came out pretty well. I didn't realise just how shallow the depth of field on my macro lens is until I saw some of these photos - I think next time I'll try stepping back a little and cropping afterwards!", "title": "2007 - London Butterfly House", "farm": "3", "date_update": "1435690150", "primary": "1585690080", "server": "2017", "date_create": "1192520438", "photos": "22", "secret": "48bd14038c", "owner": "26782864@N00", "vist_label": "planting_a_tree", "id": "72157602444903586"}, {"description": "Located in Rome, Georgia\n\nInformation taken from \n\n History\n\nBerry was founded in 1902 by Martha Berry (1866-1942) as a school for enterprising rural boys when few public schools existed in Georgia. A girls' school was added in 1909. Berry became one of the nation's most successful educational experiments, combining academic study, student work and interdenominational Christian religious emphasis. Berry has an excellent record of sound growth. A junior college was established in 1926 and a four-year college in 1930; graduate programs were added in 1972.\n\n\n Environment\n\nBerry offers an unusually beautiful environment for learning on its 26,000-acre campus, one of the world's largest. Fields, forests, lakes and mountains provide scenic beauty in a protected natural setting.", "title": "Berry College", "farm": "3", "date_update": "1337628594", "primary": "1703734026", "server": "2290", "date_create": "1193178990", "photos": "20", "secret": "85ba844f3b", "owner": "93743458@N00", "vist_label": "planting_a_tree", "id": "72157602649605030"}, {"description": "", "title": "Fun with Foliage 07", "farm": "3", "date_update": "1304713194", "primary": "1794765075", "server": "2126", "date_create": "1193707461", "photos": "31", "secret": "3ba94b27c9", "owner": "10921509@N06", "vist_label": "planting_a_tree", "id": "72157602788961834"}, {"description": "New camera, time to take it for a spin. Packed in my wonderful Nokton 35, Skopar 21 and UW Heliar 12.\n\nAnd it was a blue sky day!", "title": "2007/11/4 - Where I live", "farm": "3", "date_update": "1368542780", "primary": "2050131908", "server": "2322", "date_create": "1195564074", "photos": "30", "secret": "2918e8949d", "owner": "80072069@N00", "vist_label": "planting_a_tree", "id": "72157603248353977"}, {"description": "", "title": "Chicago Garfield Park Conservatory ", "farm": "3", "date_update": "1433470740", "primary": "2141757386", "server": "2027", "date_create": "1286258009", "photos": "16", "secret": "3e853bd1cf", "owner": "81313254@N00", "vist_label": "planting_a_tree", "id": "72157625098821810"}, {"description": "", "title": "Botanical Gardens, Peradeniya - September, 2007", "farm": "3", "date_update": "1343997561", "primary": "2054952292", "server": "2076", "date_create": "1195736398", "photos": "32", "secret": "0ccec59a2a", "owner": "14935373@N00", "vist_label": "planting_a_tree", "id": "72157603262854032"}, {"description": "jesse found a good trail - giant ledge, in the catskills - and we met him and nitya up there for a hike. it was amazing, a really beautiful trail all made of stones. at the top of the mountain, it began to snow. (magic!)\n\non the way out, our car's tire went out so we pulled up in front of this place that had this interesting "life gannon" sign outside. (well, interesting to me - my brother gannon died a few years ago.) the tire was pretty stuck, so we had to go hit up these folks for some WD40, and then, a phone - though our call for help wasn't needed, because another passing stranger and jesse managed to knock the rusted bolts loose while we were phoning. the folks up there were living in a house much like we fantacize about, with a big garden and a lot of rescued cats. and they were vegan.", "title": "hiking in the catskills - oct 07", "farm": "3", "date_update": "1356265562", "primary": "2040840884", "server": "2250", "date_create": "1195317458", "photos": "41", "secret": "a866aed130", "owner": "49503002139@N01", "vist_label": "planting_a_tree", "id": "72157603215309500"}, {"description": "Photographs from the city sightseeing red tour of Cape Town, South Africa", "title": "City Sightseeing Red Tour", "farm": "3", "date_update": "1356718142", "primary": "2251124588", "server": "2199", "date_create": "1202495019", "photos": "23", "secret": "d079e45d50", "owner": "85121963@N00", "vist_label": "planting_a_tree", "id": "72157603870972242"}, {"description": "", "title": "Christmas 2007", "farm": "3", "date_update": "1356403442", "primary": "2258423349", "server": "2291", "date_create": "1203482369", "photos": "11", "secret": "f581151906", "owner": "18343693@N00", "vist_label": "planting_a_tree", "id": "72157603947798265"}, {"description": "Cloud forest of Monteverde and St. Elana", "title": "Costa Rica 2008 - Monteverde", "farm": "3", "date_update": "1320202257", "primary": "2209220299", "server": "2333", "date_create": "1200940137", "photos": "45", "secret": "6f9eb64244", "owner": "87847811@N00", "vist_label": "planting_a_tree", "id": "72157603766250446"}, {"description": "Trip to Dobroyd Castle in Todmorden, West Yorkshire to visit Michael before it is sold in 2008", "title": "2007 - Dobroyd Castle (Autumn)", "farm": "3", "date_update": "1435690150", "primary": "2230630834", "server": "2246", "date_create": "1201687493", "photos": "33", "secret": "0dc8ba516d", "owner": "26782864@N00", "vist_label": "planting_a_tree", "id": "72157603819121906"}, {"description": "", "title": "06-11-2006 Visiting Grace Chapel (Sunday)", "farm": "4", "date_update": "1416150588", "primary": "2809700406", "server": "3172", "date_create": "1220044291", "photos": "13", "secret": "1ccaa1753f", "owner": "22038195@N07", "vist_label": "racing", "id": "72157607015881191"}, {"description": "", "title": "10-2004 Sharps meet NASA", "farm": "4", "date_update": "1416150588", "primary": "2809381151", "server": "3238", "date_create": "1220061684", "photos": "18", "secret": "b79f22321d", "owner": "22038195@N07", "vist_label": "racing", "id": "72157607018707495"}, {"description": "", "title": "Emerald Nuts Midnight Run 2009/2010", "farm": "5", "date_update": "1433954694", "primary": "4233296922", "server": "4050", "date_create": "1262335143", "photos": "17", "secret": "8ca8062527", "owner": "14771153@N04", "vist_label": "racing", "id": "72157622987335991"}, {"description": "A sample of the excitement from opening presents this year.", "title": "Christmas Morning '06", "farm": "1", "date_update": "1297933831", "primary": "345052227", "server": "141", "date_create": "1167896259", "photos": "21", "secret": "0578623e54", "owner": "72568835@N00", "vist_label": "racing", "id": "72157594458437632"}, {"description": "Seal watching at dawn and then down the coast to play on the beach.", "title": "Coast Day", "farm": "3", "date_update": "1297370277", "primary": "4240856466", "server": "2538", "date_create": "1262526719", "photos": "23", "secret": "628a004364", "owner": "16059070@N04", "vist_label": "racing", "id": "72157623003626359"}, {"description": "2010 Maker Faire in Newcastle", "title": "Maker Faire 2010", "farm": "5", "date_update": "1297335137", "primary": "4432831058", "server": "4034", "date_create": "1268589539", "photos": "19", "secret": "333dbe6ed4", "owner": "24215253@N05", "vist_label": "racing", "id": "72157623618977978"}, {"description": "", "title": "Yahoo! Photo Album", "farm": "2", "date_update": "1307059202", "primary": "1081467225", "server": "1021", "date_create": "1186838528", "photos": "16", "secret": "577e05305c", "owner": "11268993@N07", "vist_label": "racing", "id": "72157601365594266"}, {"description": "", "title": "2006 Dickies 500 practice and qualifying", "farm": "1", "date_update": "1301275179", "primary": "358515855", "server": "147", "date_create": "1168889198", "photos": "18", "secret": "936fa26ae3", "owner": "81177767@N00", "vist_label": "racing", "id": "72157594481294190"}, {"description": "", "title": "SRA, Philadelphia, March 10-14", "farm": "3", "date_update": "1301500410", "primary": "4455862105", "server": "2803", "date_create": "1269321425", "photos": "19", "secret": "0becb7fd19", "owner": "75574760@N00", "vist_label": "racing", "id": "72157623675822498"}, {"description": "My 1st outing doing sports photography beside the racetrack. Shame I was on the wrong side of the track for the fall, but sure the jockey would not see it that way...lol", "title": "Plumpton Races Feb 15th 2010", "farm": "5", "date_update": "1425508331", "primary": "4385572316", "server": "4060", "date_create": "1267037256", "photos": "20", "secret": "09d8e25b2f", "owner": "47419010@N03", "vist_label": "racing", "id": "72157623377031461"}, {"description": "", "title": "Dave's Civic", "farm": "3", "date_update": "1356614262", "primary": "4453368678", "server": "2719", "date_create": "1269230764", "photos": "12", "secret": "2928e2e8dc", "owner": "30364906@N08", "vist_label": "racing", "id": "72157623543731149"}, {"description": "My very first half marathon! ", "title": "National Half Marathon 2010", "farm": "5", "date_update": "1300892357", "primary": "4460681807", "server": "4007", "date_create": "1269479044", "photos": "18", "secret": "a457249a91", "owner": "13696397@N00", "vist_label": "racing", "id": "72157623563366489"}, {"description": "", "title": "2010 MN Wild Skills Competition", "farm": "5", "date_update": "1297915135", "primary": "4301630997", "server": "4059", "date_create": "1264381088", "photos": "18", "secret": "74e73bb68f", "owner": "10087121@N03", "vist_label": "racing", "id": "72157623277682842"}, {"description": "A slow day at first, but it turned amazing once my friend and his dad arrived in their F430 Spider. Right after that it seemed like all of the cars started coming out... ", "title": "Greenwich 1/23/10", "farm": "5", "date_update": "1345966160", "primary": "4335560750", "server": "4065", "date_create": "1264370796", "photos": "14", "secret": "46d86331e2", "owner": "26977717@N02", "vist_label": "racing", "id": "72157623276651796"}, {"description": "09.16.04\nRosh Hashana at Dave & Evelyn's.", "title": "Rosh Hashana 2004", "farm": "1", "date_update": "1421626716", "primary": "5131949", "server": "5", "date_create": "129219", "photos": "12", "secret": "e0f4c7a496", "owner": "30952578@N00", "vist_label": "rosh_hashana", "id": "129219"}, {"description": "grandpa_louie judith donna lara eli", "title": "rosh hashanah", "farm": "2", "date_update": "1356572721", "primary": "1396662633", "server": "1112", "date_create": "1190041729", "photos": "19", "secret": "d2ab3f47a0", "owner": "35971822@N00", "vist_label": "rosh_hashana", "id": "72157602047008082"}, {"description": "Working on a photoshoot for our Rosh Hashana postcard, and had the opportunity to study all the shofars available at the Museum store. There are so many different kinds, colors, shapes, and sizes.\n\nNames so far:\n- The Mortar Melter of Joshua\n- Hebron's Delight\n- Abraham's Axe\n- Ram's Revenge\n\nOthers?\n\nBonus points for you if you come up with a name for each.\n", "title": "Meet the Shofars", "farm": "5", "date_update": "1296732375", "primary": "4835898982", "server": "4092", "date_create": "1280267805", "photos": "11", "secret": "8815b1ed05", "owner": "9746091@N06", "vist_label": "rosh_hashana", "id": "72157624597178924"}, {"description": "", "title": "Wizards vs. Tulsa 2010.03.31", "farm": "5", "date_update": "1428394561", "primary": "4483056647", "server": "4004", "date_create": "1270192035", "photos": "16", "secret": "49f1b9a1e1", "owner": "61202488@N00", "vist_label": "sporting_event", "id": "72157623752789696"}, {"description": "Monash University - 2011 Alumni Speaker Series\nUnnatural selection: artificial life and designer babies. What does the future hold?\n\nLecturer, broadcaster and media commentator Waleed Aly will moderate an expert panel of Monash alumni as they discuss synthetic life, designer babies and what they mean for future generations.\n\nShould we be able to choose the sex of our babies? What about selecting the most intelligent embryo, the one with the greatest sporting ability or the one that will live to 100? And as scientists get closer to creating synthetic life, do we really understand what this could mean for our world?\n\nPanel members:\nProfessor Julian Savulescu (BMedSc(Hons) 1988, MBBS(Hons) 1988, PhD 1995)\nProfessor Savulescu is a world-leading ethics scholar. He holds the Uehiro Chair in Practical Ethics at the University of Oxford and is a Sir Louis Matheson Distinguished Visiting Professor at Monash University. A researcher, educator and communicator, Professor Savulescu promotes public discussion around the ethical issues of everyday life.\n\nProfessor Gab Kovacs AM (MBBS 1971, MD 1995)\nProfessor Kovacs, a professor of Obstetrics and Gynaecology at Monash University, is a sub specialist in reproductive gynaecology and has been a staff member of Monash IVF since 1978. He has been President of The Fertility Society of Australia, Family Planning Australia, Family Planning Victoria, and Chairman of The IVF Directors' Group of Australia.\n\nAssociate Professor Nicholas Tonti-Filippini (BA(Hons)1981, MA 1988)\nAssociate Professor Tonti-Filippini is the Associate Dean (Teaching, Learning and Research) and Head of Bioethics at John Paul II Institute for Marriage and Family and also a consultant in bioethics. He was Australia's first hospital ethicist, holding that position at St Vincent's Hospital, Melbourne from 1982-1990 where he was also founding director of the Bioethics Department.\n\nAbout the moderator:\nWaleed Aly is a lecturer in politics at Monash University and works within the University's Global Terrorism Research Centre. He appears regularly in the media including hosting ABC Radio 774 shows, ABC TV's 'Big Ideas' and SBS TV\u2019s 'The Late Sessions'. He has previously worked as a commercial lawyer, and was a board member of the Islamic Council of Victoria for more than four years.\n\nThis event is part of the 2011 Alumni Speaker Series, which aims to showcase Monash expertise and challenge audiences on global issues. This year, five thought-provoking lectures, forums and panel presentations will inform, entertain and inspire you.\n\nThe event will be filmed by ABC TV\u2019s \u2018Big Ideas\u2019 and Slow TV. Please note that you might be filmed as part of the audience. If you do not consent to being filmed, please advise a Monash staff member at the event.\n\nHosted by the Faculty of Arts\n\nDate: Thursday 31 March, 2011\nTime: 6 pm refreshments for a 6.30 pm start, to 8 pm\nLocation: BMW Edge, Federation Square, Corner Swanston and Flinders Street, Melbourne.", "title": "Unnatural Selection - Monash University 2011 Alumni Speaker Series", "farm": "6", "date_update": "1413635826", "primary": "5581583790", "server": "5066", "date_create": "1301725611", "photos": "11", "secret": "98afdb0f45", "owner": "10559879@N00", "vist_label": "sporting_event", "id": "72157626285246453"}, {"description": "", "title": "Activities surround men's basketball game", "farm": "5", "date_update": "1430511246", "primary": "4951901953", "server": "4127", "date_create": "1287618316", "photos": "10", "secret": "37a783e72e", "owner": "53130103@N05", "vist_label": "sporting_event", "id": "72157625207406112"}, {"description": "The Rox had to win this 162nd game and San Diego had to lose to force a 1-game playoff between the two for the wildcard spot.", "title": "Rockies 2007 playoff try", "farm": "2", "date_update": "1435035558", "primary": "1487178809", "server": "1235", "date_create": "1191561116", "photos": "18", "secret": "f0f89a7ff0", "owner": "21983356@N00", "vist_label": "sporting_event", "id": "72157602272641871"}, {"description": "", "title": "Chasing the White Elephants", "farm": "7", "date_update": "1319022671", "primary": "6210510707", "server": "6156", "date_create": "1317732363", "photos": "10", "secret": "68f4e68089", "owner": "20926157@N06", "vist_label": "sporting_event", "id": "72157627815812442"}, {"description": "il podio del 25\u00b0 Rally di Proserpina", "title": "Podio - 2010", "farm": "7", "date_update": "1333117786", "primary": "6001571275", "server": "6144", "date_create": "1312298472", "photos": "23", "secret": "dbd182759c", "owner": "55812685@N06", "vist_label": "sporting_event", "id": "72157627215779095"}, {"description": "All of these pictures (so far) were taken in Kanazawa at a national high school tournament. These kids were big, not as huge as the pros, but just as exciting. You can't look away from sumo. It goes so fast, and the ways they all go down are so unique and different that you can never be finally sated of the defeat. And it's all about the defeat, seeing the big guy go down. I didn't care about the winner at all. This was an amazing day. ", "title": "Sumo", "farm": "1", "date_update": "1356221763", "primary": "17913067", "server": "14", "date_create": "428173", "photos": "20", "secret": "360dcb28cd", "owner": "70482287@N00", "vist_label": "sporting_event", "id": "428173"}, {"description": "", "title": "Pickens County, South Carolina", "farm": "7", "date_update": "1430585572", "primary": "6120541648", "server": "6074", "date_create": "1349924091", "photos": "12", "secret": "e1d59c14b4", "owner": "75683070@N00", "vist_label": "sporting_event", "id": "72157631742265391"}, {"description": "This was my third year in the Charleston, South Carolina Race for the Cure. It was great, but I\u2019m a little disappointed that this year\u2019s weather didn\u2019t match up with previous races.\n\nStarbucks was going to have a station in the Survivor Tent, so I volunteered to help set things up before the race. I had to show up really early with Sheri to get things together at out Starbucks before taking them to Daniel Island. And of course we had to get to the site early so we could get set up before most of the people arrived. (Fine by me, since I love beating traffic.)", "title": "31. Race for the Cure, 2008", "farm": "7", "date_update": "1430735576", "primary": "6223842594", "server": "6019", "date_create": "1318097706", "photos": "22", "secret": "d16073a256", "owner": "33553430@N00", "vist_label": "sporting_event", "id": "72157627722157927"}, {"description": "Bring Your Own Big Wheel is a free Big Wheel race where big people ride kid's toys down Lombard, the crookedest street in San Francisco.\n\nI made a video too.", "title": "Bring Your Own Big Wheel", "farm": "1", "date_update": "1356142268", "primary": "453605572", "server": "170", "date_create": "1176187156", "photos": "15", "secret": "5490fc0f17", "owner": "51035743246@N01", "vist_label": "sporting_event", "id": "72157600061046554"}, {"description": "June 10 2011", "title": "Special Olympics Summer Games, 2011", "farm": "3", "date_update": "1430511245", "primary": "5818026839", "server": "2471", "date_create": "1307720756", "photos": "12", "secret": "9e994daa28", "owner": "53130103@N05", "vist_label": "sporting_event", "id": "72157626805179777"}, {"description": "", "title": "Extreme Sports Night at the Union, 9th Oct 2007", "farm": "3", "date_update": "1370441481", "primary": "1531624552", "server": "2066", "date_create": "1192010465", "photos": "14", "secret": "74fb17979d", "owner": "9708259@N02", "vist_label": "sporting_event", "id": "72157602348894457"}, {"description": "The New England Aztecs boys U14 soccer team in action against the Galway Rovers at Cohasset, Massachusetts on October 31, 2010.", "title": "Aztecs vs Galway Rovers", "farm": "6", "date_update": "1307931579", "primary": "5826204720", "server": "5071", "date_create": "1307913682", "photos": "27", "secret": "ee105d44f1", "owner": "94325254@N00", "vist_label": "sporting_event", "id": "72157626821743987"}, {"description": "Aker Solutions is a main official sponsor of the Oslo 2011 Nordic Ski Championships. See www.oslo2011.no/en/\n\nAker ASA is the official sponsor of the Norwegian cross country ski national team.", "title": "VM-sporet: Oslo 2011 Nordic Ski Championships sponsorship", "farm": "5", "date_update": "1301013617", "primary": "4996714644", "server": "4126", "date_create": "1284662984", "photos": "13", "secret": "a062c9c36b", "owner": "41106292@N07", "vist_label": "sporting_event", "id": "72157624845628495"}, {"description": "The St. John's Prep freshman soccer team in action against Andover High School on October 24, 2011 at Andover, Massachusetts.", "title": "St. John's Prep vs Andover", "farm": "7", "date_update": "1321615566", "primary": "6356276567", "server": "6108", "date_create": "1321583295", "photos": "21", "secret": "07d2bfbe67", "owner": "94325254@N00", "vist_label": "sporting_event", "id": "72157628032301395"}, {"description": "", "title": "Ivydale Infants Sports Hour 2010", "farm": "5", "date_update": "1356940662", "primary": "4804977724", "server": "4101", "date_create": "1279522066", "photos": "16", "secret": "fa139daa89", "owner": "43424225@N00", "vist_label": "sporting_event", "id": "72157624409178315"}, {"description": "The St. John's Prep freshman soccer team in action against Xaverian Brothers on September 14, 2011 at Danvers, Massachusetts", "title": "St. Johns Prep vs Xaverian Brothers", "farm": "7", "date_update": "1321792998", "primary": "6366820805", "server": "6092", "date_create": "1321758743", "photos": "18", "secret": "e8d83c8014", "owner": "94325254@N00", "vist_label": "sporting_event", "id": "72157628058774325"}, {"description": "The Directorate of Family, Morale, Welfare and Recreation hosted the Sgt. Audie Murphy Triathlon June 18. Almost 100 participants took part in the event, which had competitors complete a quarter-mile swim, a 10.6-mile bike race and a 3.1-mile run.", "title": "Sgt. Audie Murphy Triathlon", "farm": "6", "date_update": "1308940155", "primary": "5866100667", "server": "5191", "date_create": "1308940098", "photos": "16", "secret": "2f772187e0", "owner": "58792031@N04", "vist_label": "sporting_event", "id": "72157627037920956"}, {"description": "", "title": "Velocity Indoor Skates", "farm": "7", "date_update": "1334671756", "primary": "6424972811", "server": "6055", "date_create": "1334333813", "photos": "11", "secret": "807f4899c4", "owner": "65649184@N08", "vist_label": "sporting_event", "id": "72157629808029571"}, {"description": "", "title": "Paternoville populated once again", "farm": "5", "date_update": "1430511246", "primary": "4947703230", "server": "4110", "date_create": "1287618222", "photos": "12", "secret": "156a632332", "owner": "53130103@N05", "vist_label": "sporting_event", "id": "72157625082564869"}, {"description": "", "title": "Penn State readies for Big Ten opener", "farm": "5", "date_update": "1430511246", "primary": "4947668254", "server": "4088", "date_create": "1287618242", "photos": "12", "secret": "c7427f2687", "owner": "53130103@N05", "vist_label": "sporting_event", "id": "72157625082566321"}, {"description": "", "title": "Battle's buzzer-beater lifts Lions to win", "farm": "5", "date_update": "1430511246", "primary": "4946712271", "server": "4146", "date_create": "1287618334", "photos": "11", "secret": "0e79994b34", "owner": "53130103@N05", "vist_label": "sporting_event", "id": "72157625207407464"}, {"description": "", "title": "2009 Lions meet the media", "farm": "5", "date_update": "1430511246", "primary": "4946971088", "server": "4125", "date_create": "1287618409", "photos": "13", "secret": "985422674f", "owner": "53130103@N05", "vist_label": "sporting_event", "id": "72157625207413126"}, {"description": "", "title": "THON 2010 raises record $7.8 million", "farm": "5", "date_update": "1430511246", "primary": "4946670580", "server": "4079", "date_create": "1287618477", "photos": "12", "secret": "b7942e0bdc", "owner": "53130103@N05", "vist_label": "sporting_event", "id": "72157625207418354"}, {"description": "Midnight release party at Barnes and Noble booksellers in Pittsford with Molly, Joelle, Adam, Cindy, and I. All join "The Order of the Phoenix!"", "title": "Harry Potter Book 5 Release", "farm": "1", "date_update": "1365976357", "primary": "36140543", "server": "26", "date_create": "801340", "photos": "16", "secret": "92e48c3fce", "owner": "63613245@N00", "vist_label": "sporting_event", "id": "801340"}, {"description": "On 2006-05-07 I went to the Tokyo Giants baseball game with my friend Fukaya Tomoki, a real fan. It was a complete blast. The Giants won, 8 to 5 I think. I wasn't counting very well by the end of the night. ", "title": "\u5de8\u4ebaGiants vs. Yakult at the Tokyo Dome", "farm": "1", "date_update": "1299903510", "primary": "142408086", "server": "48", "date_create": "1147050611", "photos": "11", "secret": "7895d2bec9", "owner": "49919642@N00", "vist_label": "sporting_event", "id": "72057594128484139"}, {"description": "So after living in the Cities for however many years, I finally made it to a Saint Paul Saints game with a group of coworkers (plus n). They won in a 6–0 shutout of the Sioux City Explorers.", "title": "My first Saints game (June 26, 2006)", "farm": "1", "date_update": "1331858735", "primary": "176033650", "server": "61", "date_create": "1151384175", "photos": "23", "secret": "e33ee06358", "owner": "28496375@N00", "vist_label": "sporting_event", "id": "72157594178913581"}, {"description": "A great event for a great cause. Raising money for local high school athletics. Luke Jackson Celebrity Golf Tournament. Pure Blue did all of the design and production (Print & Web) for the event. ", "title": "Luke Jackson Celebrity Golf Tournament", "farm": "1", "date_update": "1325756805", "primary": "210929473", "server": "62", "date_create": "1155131141", "photos": "23", "secret": "05c38cf995", "owner": "51035776217@N01", "vist_label": "sporting_event", "id": "72157594230490220"}, {"description": "", "title": "WRC : Cyprus Rally 2004 : Preparations", "farm": "1", "date_update": "1383490548", "primary": "229280690", "server": "58", "date_create": "1156956156", "photos": "11", "secret": "e18e2549e5", "owner": "37165469@N00", "vist_label": "sporting_event", "id": "72157594260040449"}, {"description": "", "title": "WRC : Cyprus Rally 2006 : SS4", "farm": "1", "date_update": "1383490548", "primary": "249830449", "server": "84", "date_create": "1158942639", "photos": "22", "secret": "eead932bcb", "owner": "37165469@N00", "vist_label": "sporting_event", "id": "72157594295140238"}, {"description": "", "title": "Air & Space Museum", "farm": "1", "date_update": "1356357007", "primary": "418262142", "server": "180", "date_create": "1173667005", "photos": "27", "secret": "a0e2670132", "owner": "57497235@N00", "vist_label": "sporting_event", "id": "72157594583357775"}, {"description": "", "title": "Cav's / Magic NBA game", "farm": "4", "date_update": "1352744946", "primary": "2391019514", "server": "3176", "date_create": "1207435352", "photos": "20", "secret": "0b98b6b835", "owner": "98605114@N00", "vist_label": "sporting_event", "id": "72157604403044021"}, {"description": "", "title": "Flugtag 08", "farm": "3", "date_update": "1300003850", "primary": "2392180868", "server": "2274", "date_create": "1207474234", "photos": "17", "secret": "da67a3e153", "owner": "60906956@N00", "vist_label": "sporting_event", "id": "72157604409060777"}, {"description": "WRXatlanta Spring Install Day at Allpro Subaru\n\n\n1040 Nine North Drive\nAlpharetta, GA 30004", "title": "WRXatlanta Spring Install Day 2011", "farm": "6", "date_update": "1356138332", "primary": "5608810880", "server": "5102", "date_create": "1302493065", "photos": "29", "secret": "b3364c8f51", "owner": "37715379@N02", "vist_label": "sporting_event", "id": "72157626347795121"}, {"description": "Photo's from International Motocross Challenge, 2012 held in Kuwait. The event is organized by the Kuwait Quarter Mile Auto & Motorcycle Club. Riders from Kuwait, UAE, India, Bahrain, USA, South Africa, France and Belgium took part. ", "title": "Kuwait International Motocross Challenge, 2012", "farm": "8", "date_update": "1356166849", "primary": "6847734946", "server": "7184", "date_create": "1332099952", "photos": "29", "secret": "069cbd48ff", "owner": "59598243@N03", "vist_label": "sporting_event", "id": "72157629613256003"}, {"description": "Just a little get together in Wates House with plenty of the black stuff and some face paints!", "title": "2006 PGA St Patrick's Day Party", "farm": "1", "date_update": "1315214653", "primary": "114086222", "server": "54", "date_create": "1142686091", "photos": "13", "secret": "c2f0666c4e", "owner": "57456216@N00", "vist_label": "st._patrick's_day", "id": "72057594084671142"}, {"description": "Chief", "title": "St. Patrick's Day", "farm": "1", "date_update": "1312322759", "primary": "111408219", "server": "40", "date_create": "1142190810", "photos": "11", "secret": "7fc5ec2d6a", "owner": "52438017@N00", "vist_label": "st._patrick's_day", "id": "72057594080540770"}, {"description": "", "title": "St. Patrick's Day 2006", "farm": "1", "date_update": "1436844008", "primary": "114016182", "server": "36", "date_create": "1142665281", "photos": "16", "secret": "8eae4cfb55", "owner": "51035555243@N01", "vist_label": "st._patrick's_day", "id": "72057594084559688"}, {"description": "", "title": "St. Patrick's Day 2006", "farm": "1", "date_update": "1305574304", "primary": "116157183", "server": "45", "date_create": "1142997581", "photos": "10", "secret": "0820da71b6", "owner": "11121478@N00", "vist_label": "st._patrick's_day", "id": "72057594087766263"}, {"description": "St. Patrick's Day. One thing Irish people have for them :)\n\nOf course, I lost the pictures of the parade...\n\nAnd here is St. Patrick's Day 07!", "title": "St. Patrick's Day 05", "farm": "1", "date_update": "1356212443", "primary": "188516879", "server": "70", "date_create": "1152762278", "photos": "14", "secret": "353a6db4da", "owner": "99706198@N00", "vist_label": "st._patrick's_day", "id": "72157594197494263"}, {"description": "Photos from Boston BarCamp2 (http://barcamp.org/BarCampBoston2) on St. Patrick's Day 2007 at MIT.", "title": "Boston BarCamp2", "farm": "1", "date_update": "1356289229", "primary": "424276178", "server": "169", "date_create": "1174154903", "photos": "13", "secret": "83ff43ddaf", "owner": "20021588@N00", "vist_label": "st._patrick's_day", "id": "72157600005042432"}, {"description": "In St. Paul. It had it all. Little green dogs, bagpipers, vulcans, bouncing girls, a unicyclist, ridiculous hats and rollergirls.", "title": "St. Patrick's Day Parade", "farm": "1", "date_update": "1330278337", "primary": "424545702", "server": "148", "date_create": "1174177481", "photos": "44", "secret": "c049dbb03d", "owner": "49503124519@N01", "vist_label": "st._patrick's_day", "id": "72157600005620402"}, {"description": "Sukkot 2006 in Chicago", "title": "Bill's Sukkot Shindig 2006", "farm": "1", "date_update": "1364763379", "primary": "265405385", "server": "105", "date_create": "1160441865", "photos": "38", "secret": "37b7e887b6", "owner": "95547674@N00", "vist_label": "sukkot", "id": "72157594320730897"}, {"description": "", "title": "skinnyCorp Super Bowl Party", "farm": "1", "date_update": "1356325526", "primary": "96044993", "server": "35", "date_create": "1139200461", "photos": "20", "secret": "ff417bb4c1", "owner": "50406951@N00", "vist_label": "super_bowl", "id": "72057594059970350"}, {"description": "", "title": "Super Bowl Weekend", "farm": "1", "date_update": "1372003948", "primary": "96139535", "server": "36", "date_create": "1139201513", "photos": "29", "secret": "ac94192797", "owner": "58241581@N00", "vist_label": "super_bowl", "id": "72057594059978402"}, {"description": "", "title": "Super Bowl 06", "farm": "1", "date_update": "1305750188", "primary": "97346903", "server": "42", "date_create": "1151419834", "photos": "26", "secret": "12e4dc73cf", "owner": "42841738@N00", "vist_label": "super_bowl", "id": "72157594179308414"}, {"description": "A camera was left behind at the Pajama Party. I found it the other day.", "title": "The Pajama Party's Mystery Disposable Camera", "farm": "1", "date_update": "1356275971", "primary": "189401909", "server": "71", "date_create": "1152884641", "photos": "15", "secret": "1c6a2c83ce", "owner": "44124427654@N01", "vist_label": "super_bowl", "id": "72157594198881999"}, {"description": "h\u1ecdp l\u1edbp m\u1eb9, h\u1ecdc tr\u00f2 m\u1eb9, h\u00e0, l\u1edbp c\u1ea5p 3", "title": "Sau M\u00f9ng 3 T\u1ebft", "farm": "1", "date_update": "1310751284", "primary": "397789256", "server": "188", "date_create": "1172078078", "photos": "32", "secret": "87be556c8a", "owner": "70209763@N00", "vist_label": "super_bowl", "id": "72157594548530232"}, {"description": "A demonstration of what kind of fun you can have in your garage with a roaster and nineteen pound bird. ", "title": "Carving a Roasted Turkey", "farm": "1", "date_update": "1301263371", "primary": "66586383", "server": "32", "date_create": "1132878818", "photos": "18", "secret": "4f5b7c6d6c", "owner": "85182154@N00", "vist_label": "thanksgiving", "id": "1437238"}, {"description": "I spent Thanksgiving at the Yood's house, and the next day Jon, Andrew, and I put up my Christmas tree!", "title": "Thanksgiving 2005", "farm": "1", "date_update": "1327290624", "primary": "69349813", "server": "6", "date_create": "1133529959", "photos": "22", "secret": "eb270284f8", "owner": "28316081@N00", "vist_label": "thanksgiving", "id": "1493887"}, {"description": "Thanksgiving Dinner", "title": "Canadian Thanksgiving Dinner @ Aunt Sonya's", "farm": "1", "date_update": "1357016617", "primary": "51764342", "server": "25", "date_create": "1129067230", "photos": "48", "secret": "98cafc495d", "owner": "80438671@N00", "vist_label": "thanksgiving", "id": "1121075"}, {"description": "Photos spanning the last ten years or so, featuring long-exposure photography, night shots, sunsets, low-light, etc.", "title": "Night/Low-Light/Long-Exposure", "farm": "1", "date_update": "1356198689", "primary": "63725328", "server": "32", "date_create": "1132102276", "photos": "11", "secret": "dc4df3b0ec", "owner": "58673318@N00", "vist_label": "thanksgiving", "id": "1376049"}, {"description": "", "title": "Boston - Thanksgiving 2004", "farm": "1", "date_update": "1356274913", "primary": "2536057", "server": "2", "date_create": "63571", "photos": "19", "secret": "5d996a0043", "owner": "46938636@N00", "vist_label": "thanksgiving", "id": "63571"}, {"description": "", "title": "Thanksgiving 2005", "farm": "1", "date_update": "1300546404", "primary": "66772250", "server": "33", "date_create": "1132928820", "photos": "17", "secret": "ad040a0bbe", "owner": "84989762@N00", "vist_label": "thanksgiving", "id": "1440568"}, {"description": "Thanksgiving @ 1735: Allison, Dan, Jeremy, Leigh, Nesha, and Ginny (briefly).", "title": "2005-11-24", "farm": "1", "date_update": "1297335718", "primary": "66884180", "server": "28", "date_create": "1132953267", "photos": "23", "secret": "51656575b1", "owner": "21908240@N00", "vist_label": "thanksgiving", "id": "1443082"}, {"description": "Hudson Town Hall, Hudson, IL. Annual gathering of descendents of Clara and John Schroeder. ", "title": "Thanksgiving 2005", "farm": "1", "date_update": "1356302755", "primary": "66871027", "server": "26", "date_create": "1133033727", "photos": "18", "secret": "7bba851935", "owner": "34756977@N00", "vist_label": "thanksgiving", "id": "1450140"}, {"description": "A lovely thanksgiving at Elise & Vincent's swanky new Zsa Zsa apartment.", "title": "Thanksgiving 2005", "farm": "1", "date_update": "1356140384", "primary": "66918049", "server": "31", "date_create": "1132961684", "photos": "13", "secret": "e652f9f928", "owner": "41477901@N00", "vist_label": "thanksgiving", "id": "1443998"}, {"description": "", "title": "Thanks 05", "farm": "1", "date_update": "1356164139", "primary": "66921706", "server": "33", "date_create": "1132970394", "photos": "14", "secret": "207fe0f956", "owner": "66178057@N00", "vist_label": "thanksgiving", "id": "1444744"}, {"description": "We went down to Cedar City for thanksgiving.", "title": "Thanksgiving in Cedar", "farm": "1", "date_update": "1326661849", "primary": "66980290", "server": "30", "date_create": "1132975715", "photos": "13", "secret": "687fa7d8ea", "owner": "26667277@N00", "vist_label": "thanksgiving", "id": "1445259"}, {"description": "", "title": "2005 Pitt Thanksgiving", "farm": "1", "date_update": "1356657874", "primary": "66994561", "server": "28", "date_create": "1132979783", "photos": "18", "secret": "16578ce6e3", "owner": "55929357@N00", "vist_label": "thanksgiving", "id": "1445664"}, {"description": "Delicious food and thoughts of pilgrims. Nov' 05", "title": "Weeza's thanksgiving", "farm": "1", "date_update": "1351243460", "primary": "67417994", "server": "27", "date_create": "1133090230", "photos": "28", "secret": "82171cfaba", "owner": "86029180@N00", "vist_label": "thanksgiving", "id": "1455232"}, {"description": "", "title": "Post Thanksgiving @ Brendan Behan's", "farm": "1", "date_update": "1356186808", "primary": "67669464", "server": "35", "date_create": "1133134997", "photos": "12", "secret": "2dd0bfeb06", "owner": "35034354137@N01", "vist_label": "thanksgiving", "id": "1460418"}, {"description": "", "title": "Thanksgiving", "farm": "1", "date_update": "1356215114", "primary": "67817390", "server": "32", "date_create": "1133158282", "photos": "16", "secret": "92d098e5a8", "owner": "91771832@N00", "vist_label": "thanksgiving", "id": "1463296"}, {"description": "Part One, at Craig's house. Part Two, at Casa de Hester", "title": "Thanksgiving 2005", "farm": "1", "date_update": "1322969880", "primary": "66683420", "server": "26", "date_create": "1132895684", "photos": "16", "secret": "ec81e5b94e", "owner": "49503179907@N01", "vist_label": "thanksgiving", "id": "1438619"}, {"description": "A long-awaited Thanksgiving in the new house that was well worth the wait.", "title": "Precita Thanksgiving 2005", "farm": "1", "date_update": "1420336006", "primary": "68385041", "server": "6", "date_create": "1133294916", "photos": "24", "secret": "5bc60e989d", "owner": "49502995517@N01", "vist_label": "thanksgiving", "id": "1475214"}, {"description": "", "title": "thanksgiving 05", "farm": "1", "date_update": "1356157966", "primary": "68479659", "server": "12", "date_create": "1133313467", "photos": "11", "secret": "66cb8d92fd", "owner": "98027853@N00", "vist_label": "thanksgiving", "id": "1477049"}, {"description": "At Beth & Nathaniel's in Charlotte NC", "title": "Thanksgiving 2005", "farm": "1", "date_update": "1299666653", "primary": "68553356", "server": "12", "date_create": "1133331789", "photos": "22", "secret": "4d7523c27c", "owner": "81723725@N00", "vist_label": "thanksgiving", "id": "1478789"}, {"description": "I bought this lovely couch for 2,700 pennies at a local Goodwill (not just any Goodwill mind you, this was the Goodwill Clearance Outlet). After some vacuuming, a thorough lent rolling, a generous Febreeze-ing, two coats of Old English wood oil on the arms, and installing a sheet of particleboard beneath the seat cushions she was ready and rearing for some dorm action!\n\nAlso of note are some of the items found within the couch: a pencil, pen, one peso, and an intriguing slide (of whom, I haven't the foggiest notion).", "title": "The Couch", "farm": "1", "date_update": "1356206282", "primary": "28088329", "server": "22", "date_create": "634613", "photos": "12", "secret": "7cc7045f89", "owner": "54453489@N00", "vist_label": "thanksgiving", "id": "634613"}, {"description": "Hike and thanksgiving dinner 2005", "title": "Thankgiving in Banff", "farm": "1", "date_update": "1331106409", "primary": "52858723", "server": "24", "date_create": "1129434367", "photos": "14", "secret": "3e4729b368", "owner": "41818779@N00", "vist_label": "thanksgiving", "id": "1146517"}, {"description": "My first time to Cedar Point amusement park, the roller coaster capital of the world, located in Sandusky, Ohio, USA. Fun, fun, fun!", "title": "Cedar Point, 2005", "farm": "1", "date_update": "1382507352", "primary": "40741337", "server": "32", "date_create": "868353", "photos": "30", "secret": "16c530be48", "owner": "92079962@N00", "vist_label": "urban_vacation", "id": "868353"}, {"description": "I went to NYC for New Year's 2006", "title": "NYC 2005 / 2006", "farm": "1", "date_update": "1356144938", "primary": "118022283", "server": "37", "date_create": "1143362375", "photos": "29", "secret": "bf82506f77", "owner": "91041780@N00", "vist_label": "urban_vacation", "id": "72057594090774925"}, {"description": "We had a full house for Chuck's birthday, which added to the happy chaos of a birthday party!", "title": "Happy \"Birtday\" Chuck 2006", "farm": "1", "date_update": "1353991962", "primary": "233409738", "server": "87", "date_create": "1157341252", "photos": "18", "secret": "a62322d4fa", "owner": "77422575@N00", "vist_label": "valentine's_day", "id": "72157594267605245"}, {"description": "My Flowers :-D", "title": "Valentine's Day 2007", "farm": "1", "date_update": "1300086302", "primary": "391464232", "server": "185", "date_create": "1171575846", "photos": "12", "secret": "2afadd97d6", "owner": "74867813@N00", "vist_label": "valentine's_day", "id": "72157594537876926"}, {"description": "", "title": "Vancouver, BC - 2007/02", "farm": "1", "date_update": "1356222660", "primary": "391653758", "server": "157", "date_create": "1171592348", "photos": "16", "secret": "75b5cff11c", "owner": "47787161@N00", "vist_label": "valentine's_day", "id": "72157594538251999"}, {"description": "Valentine's Day 2007, McMaster was blessed with a massive snowdump.", "title": "Snow Day 2007", "farm": "1", "date_update": "1409685313", "primary": "393748685", "server": "173", "date_create": "1171783840", "photos": "11", "secret": "14826b8354", "owner": "89285199@N00", "vist_label": "valentine's_day", "id": "72157594541874242"}, {"description": "The first Sgt. Audie Murphy Club board to convene here since 2006 met today at the U.S. Army Research, Development and Engineering Command headquarters with four noncommissioned officers seeking membership in the elite Soldier fraternity.", "title": "Sgt. Audie Murphy Club ", "farm": "5", "date_update": "1417635988", "primary": "4482338138", "server": "4025", "date_create": "1270146591", "photos": "17", "secret": "4fe4794454", "owner": "34402227@N03", "vist_label": "visit", "id": "72157623624264675"}, {"description": "www.usaraf.army.mil\n\nBurundi peacekeepers prepare for next rotation to Somalia\n\nBy Rick Scavetta, U.S. Army Africa\n\nBUJUMBURA, Burundi \u2013 Under the shade of a tree, Pvt. Avlerie Mdayimiye cleans her Kalashnikov assault rifle and chats with fellow infantry soldiers about their upcoming peacekeeping deployment to Somalia.\n\nOne of two women in her battalion, Mdayimiye reflects on her decision to join the infantry with pride. \n\n\u201cI want to support my nation and to help other people,\u201d she said.\n\nIn the coming months, the infantrywoman will have the opportunity to do both.\n\nRecently trained through the U.S. State Department-led African Contingency Operations Training and Assistance program, Mdayimiye\u2019s battalion will soon serve with the African Union Mission in Somalia, a peacekeeping operation geared toward stabilizing Somalia\u2019s security situation.\n\nBut now, she is among hundreds of Burundian National Defense Force troops awaiting orders to move to Mogadishu, the Somali capital, where they will serve a one year tour alongside Ugandan troops. While waiting, the battalion set up camp near the Bujumbura International Airport.\n\nSoldiers dry clothes and bedding under midday sun and cluster under shade to clean their rifles. A few hundred yards away, a massive Ethiopian Airways jet touches down on the tarmac. Nearby, air defense artillerymen shout commands as they drill with their 23-mm cannons.\n\nSmoke drifts from peat cooking fires between the camp\u2019s green camouflage tents, signaling lunch time. Mdayimiye taps a magazine into her rifle, checks that it\u2019s functioning properly and heads to a nearby field, where soldiers stir large pots of rice and beans. \n\nMeanwhile, at Burundi\u2019s military headquarters, U.S. Army Africa officers are discussing peacekeeping operations with senior Burundian officers \u2013 sharing ideas on how brigade staff plan missions and run a tactical field headquarters, an effort to improve efficiency within Burundi\u2019s peacekeeping contingent. \n\nBurundi regularly supports African stability through military partnerships, with troops recently taking part in three regional exercises. In Sept. 2009, Burundi sent troops to Mlima Kilimanjaro, an exercise in Tanzania, followed by Natural Fire 10, a U.S. Army Africa-led a humanitarian and civic assistance exercise held in Uganda during October. Then, in late-November, Burundi participated in Eastern African Standby Brigade military exercises in Djibouti. \n\nMeanwhile, they continue to train and deploy peacekeepers to Mogadishu, a mission Burundi has supported since 2007.\n\nThe U.S. State Department supports Burundi\u2019s ongoing efforts to partner with other African nations in peacekeeping, to include offering assistance through the ACOTA program. U.S. Army Africa coordinated its recent mentorship engagement with the U.S. Embassy in Bujumbura.\n\nParticipating in peacekeeping is very important for Burundi, a nation that experienced 15 years of war within its borders, said Brig. Gen. Cyprien Ndikuryio, who currently heads Burundi\u2019s land forces and is slated to serve in a senior leadership role with AMISOM in Somalia. \n\n\u201cToday our country is peaceful,\u201d Ndikuryio said. \u2018We were helped by the African Union and the international community. Supporting peacekeeping efforts shows we are now able to help others through the AU and offer experiences we learned.\u201d\n\nFor nearly two decades, Somalia endured war and chaos. Following a 2007 peace deal, some stability was established as moderate Islamists joined the Somali government. \n\nStill, Mogadishu remains violent, with extremists and criminal groups working against international efforts to bring security to Somali people. \n\nHardliners have made their intent clear, targeting peacekeepers from Burundi and Uganda. \n\n\u201cOne of the main challenges our forces are facing is the use of IEDs by al-Shabaab insurgents,\u201d Ndikuryio said.\n\nIn February 2009, 11 troops from Burundi died when insurgents attacked an African Union peacekeeping base in Somalia's capital. Another 15 peacekeepers sustained serious injuries. The Islamist group al-Shabaab claimed responsibility for the suicide bombing. Then in Sept. 2009, extremists struck again with a suicide bombing at Mogadishu airport that left at least nine African peacekeepers dead, to include Burundian Maj. Gen. Juvenal Niyoyunguruza, deputy commander of the AMISOM force.\n\n\u201cMost of our soldiers who have been killed were killed by IEDs,\u201d Ndikuryio said. \u201cWe are not experienced with managing that kind of threat, so we look to our international partners, such as U.S. Army Africa, for information to better prepare ourselves.\u201d\n\nCleared for public release. \n\nPhotos by Rick Scavetta, U.S. Army Africa\nTo learn more about U.S. Army Africa visit our official website at www.usaraf.army.mil\n\nOfficial Twitter Feed: www.twitter.com/usarmyafrica\n\nOfficial YouTube video channel: www.youtube.com/usarmyafrica\n", "title": "Burundi Peacekeepers prepare for AMISOM", "farm": "3", "date_update": "1434019785", "primary": "4324781393", "server": "2705", "date_create": "1265127087", "photos": "22", "secret": "8c714bf140", "owner": "36281822@N08", "vist_label": "visit", "id": "72157623334906462"}, {"description": "Actually, I'm pretty sure that date is wrong; looks more like a Sunday in July than a Thursday in August. If I can find better data, I'll fix....\n\nI've reconsidered. One of the things I discussed with Chuck Smith was Robledo's 100+ RBI season.", "title": "8/31/1995 - Silver Hawks at Battle Cats", "farm": "3", "date_update": "1435255310", "primary": "4326323921", "server": "2745", "date_create": "1265169240", "photos": "25", "secret": "4186ab6443", "owner": "87533529@N00", "vist_label": "visit", "id": "72157623214581689"}, {"description": "This set of images shows General Qs Ime, Afghan National Army 205th Corps vice commander, and his mentor U.S. Army Lt. Col. Matthew Bedwell, 205th Coalition Mentor Team deputy commander traveling around the battlefields of Afghanistan to visit over 200 205th Corps ANA soldiers and to discuss the progress of combat operations and quality of life issues at each location. ", "title": "Zabul, Afghanistan Battlefield Circulation 2010", "farm": "5", "date_update": "1396660215", "primary": "4403486194", "server": "4022", "date_create": "1267601964", "photos": "16", "secret": "f25aff93ec", "owner": "39753357@N03", "vist_label": "visit", "id": "72157623421003187"}, {"description": "Secretary Clinton's Remarks with Chilean President Michelle Bachelet, and Secretary Clinton's Remarks with Chilean President-Elect Sebasti\u00e1n Pi\u00f1era at Santiago's airport, March 2, 2010. \n\nHillary Rodham Clinton\nSecretary of State\nSantiago Airport\n\nSantiago, Chile\n\nMarch 2, 2010\n\n--------------------------------------------------------\nPRESIDENT BACHELET: (Via interpreter) Good morning, everyone. I would like to, first and foremost, thank the international solidarity of the many neighboring and friend countries, and very particularly I\u2019d like to thank the solidarity of the United States, of President Obama, and of Secretary Clinton. She called me (inaudible) very close moment, not only called me but she has come in person to express that solidarity. \n\nAt the meeting with the Secretary of State, we have discussed several specific subjects. We talked about the priorities identified by my government, and that we have conveyed to all of our embassies, governments, and international agencies. \n\nOur objective is that cooperation will exactly meet and respond to our needs, our most urgent needs. And as I have pointed out already, these are satellite phones and we have already received yesterday and there is \u2013 there are others about to come. Also, temporary (inaudible) there have been announced and a field hospital with (inaudible) capability. Also, donations in money are very useful, very important, because we need to buy food and medication. \n\nWe have also requested power generators, desalination water treatment plants to purify water, saline water. And as to (inaudible), we need autonomous dialysis systems because dialysis, as you know, calls for pure water, and in those impacted areas there is no water. \n\nThere are other elements indeed that we have discussed with the Secretary, but mainly what we need is semi-temporary or temporary semi-permanent hospital facilities, as many, many have been destroyed. And we need to have them and they are \u2013 they will be arriving soon. \n\nThe government knows that people need water, food, and don\u2019t think that \u2013 we do have them in our country, but how can we supply them if we don\u2019t have bridges or roads? And we need to have authorities communicated with the people to know exactly what their needs are and get to them immediately. And that is why we have \u2013 I know that it\u2019s important for the hospitals for them to care for the wounded and for all the victims. For that we have sought the support of the international community. \n\nWe are already, of course, distributing all these elements. We do have here in the back, planes with contingents and with food. But that \u2013 we need to do it very fast, get to the remotest corners of the country and get there soon. \n\nPRESIDENT BACHELET: Thank you very much, Madam Secretary of State. \n\nPRESIDENT BACHELET: (Via interpreter) Finally, I\u2019d like to thank very particularly Secretary Clinton, President Obama, for the great support and friendship that they have given us and that the Chilean people will be eternally grateful. Thank you.\n\nSECRETARY CLINTON: President Bachelet, I first come with the great sympathy and support from President Obama and the people of the United States. This devastating earthquake has wrought so much damage across your country. The ferocity was 800 times greater than the earthquake that hit Haiti, and your leadership and the extraordinary efforts of your government and the people of Chile are responding with resilience and strength. And the United States is ready to respond to the request that the government of Chile has made so that we can provide not only solidarity, but specific supplies that are needed to help you recover from the earthquake.\n\nI was planning to be in Chile today anyway for a long-scheduled trip and I was so looking forward to meeting with President Bachelet who is a leader whom I admire greatly and consider a friend. And when I spoke with the president, I said, \u201cI will not come if it will interfere in any way.\u201d And we changed the itinerary so that I could come and I brought with me 25 of these satellite phones. We have identified 62 as the highest priority for the government\u2019s request. I had 25 on my plane loaded on and I\u2019m going to give this one to you, Madam President. \n\nAnd let me just add after consulting with the president and her ministers, we are sending eight water purification units. They are on their way. We have identified a mobile field hospital unit with surgical capabilities that is ready to go. We are working to fill the need for autonomous dialysis machines. We are ready to purchase and send electricity generators, medical supplies and are working to identify and send portable bridges so that some of the places that are remote that lost their bridges will be able to be reconnected to the country. People are working. That\u2019s a good sound.\n\nAnd finally, Madam President, after discussing the needs that Chile has, we will look to see if we can provide additional equipments from portable kitchens to helicopters to assist you in this massive rescue recovery effort that you are undertaking. And additionally, we will let the people of America, who are very anxious to help Chileans, know that they can contribute to the Chilean Red Cross; that they can contribute to the Caritas Chile and the ONEMI programs. We will get that information and give our press the specifics.\n\nQUESTION: Hello, Madam President. I\u2019m over \u2013 \n\nPRESIDENT BACHELET: Where are you? Oh, yes. \n\nQUESTION: Madam President, you\u2019ve described some of the things you need, but can you give us an idea of the scale; maybe billions of dollars or less that you need for \u2013 \n\nPRESIDENT BACHELET: Forgive me, I didn\u2019t hear the last part of your \u2013 \n\nQUESTION: Yes, what is the scale \u2013 \n\nPRESIDENT BACHELET: We can\u2019t hear you. \n\nSECRETARY CLINTON: Nearer. Closer. Go right up there, yeah. \n\nQUESTION: What scale of things do you need? What dollar amount? Could it be in the billions of dollars? And what specifically can the U.S. do? Can it use \u2013 can it send some of the military over (inaudible) using the diplomats in Europe to get aid from them?\n\nPRESIDENT BACHELET: Well, we are going to receive aid and support from many different countries and organizations but I would say we cannot give an exact and accurate figure right now on how much it will cost. I mean, there has been some estimation made. They talk about 30 thousand million dollars. But really, I mean, with some places, there\u2019s still poor communications. So we are more focused right now in doing all the emergency, the short-term, I would say, initiatives that people need to assure food, water, electricity, and of course, public order. \n\nBut in the meantime, we will start doing the estimation. We have rough estimations, like we have two million people who have been damaged by the earthquake in different levels of damage. We have an estimation that at least 500 houses \u2013 500,000 houses have damage. But we have to \u2013 we are now, in the meantime, sending experts: engineers, architects, and so on, to evaluate in the field the kind of damage and if those kinds of public works can be repaired or have to be completely rebuilt. \n\nSo until now, we don\u2019t have the exact \u2013 I could not answer to you the exact \u2013 how much it will cost to rebuild, to reconstruct all the damage. But I can only say it will be a lot, because Chile has the capacity, we have the engineers, we have the people, we have the experience, we have people trained and all that, but I think it will take long and it will mean a whole lot of money. So we have been talking also with the Secretary of State of another kinds of initiatives in the financial \u2013 I mean, Chile today (inaudible) creditor, so we think we could be able to have also with the good credit from whatever, World Bank or \u2013 and we will discuss those issues with the future government so we can advance in that, too.\n\nI do not have the exact figure. As you know, we have updates every two and three hours, and the Secretary of State also offered human resources, that is, experts, engineers, and others. And \u2013 but I will give the floor to her so she can (inaudible).\n\nSECRETARY CLINTON: I think it\u2019s understandable that what the president has said is there needs to be a very good assessment, and it\u2019s very difficult to do that assessment while you\u2019re still trying to help people get food where they need it, provide medical care, and even reach some of the more remote areas. And we stand ready to help in any way that the Government of Chile \u2013 and I will say this to the President-elect Mr. Pinera when I meet with him \u2013 any way that the Government of Chile asks us to. We are so grateful for what Chile did in Haiti. Your rescue teams were among the very best in the entire world. And we want to help Chile, who has done so much to help others. And I can only imagine the extent of the damage \u2013 2 million people, at least, who are displaced. \n\nSo we stand ready to offer what we\u2019ve asked for now and to stay, as your partner and your friend, for the long term. We\u2019ll be there to be of help when others leave because we are committed to this partnership and friendship with Chile.\n\nThank you.\n============\nRemarks by Secretary of State Hillary Rodham Clinton\nAnd Chilean President-elect Sebastian Pinera\n \nMarch 2, 2010\nSantiago Airport\nSantiago, Chile\n \nSECRETARY CLINTON: Well, thank you very much. I just had the privilege and opportunity of a long conversation with President-elect Pinera about the immediate crisis of the earthquake and about a number of important issues that we will be working on together upon his becoming president next week. \n \nChile and the United States have a very close bilateral relationship. We have explored a number of the important matters that are on our agendas together, but we also have regional and international responsibilities. Chile is a member of the G-20. President-elect Pinera will be coming to Washington for President Obama\u2019s nuclear security summit. There are a number of critical issues that we must work on together. \n \nI reiterated our strong support as Chile recovers from the earthquake. And President-elect Pinera mentioned specific needs that Chile will have for reconstruction, and we\u2019ve offered assistance in that phase as well. \n \nWell, the president-elect informed me that Chile is not a member of the G-20, but the G-20 will be working to help Chile as long \u2013 as well as other international financial institutions. And certainly with the president-elect\u2019s background in business, he will be a very important voice in all of the multilateral discussions about the economy going forward. \n \nPresident-elect, on behalf of President Obama and the people of the United States, we stand with you. We look forward to working with you, and congratulations upon your inauguration next week. \n \nPRESIDENT-ELECT PINERA: (Via interpreter) I want to very much thank Secretary of State Hillary Clinton for her visit and also for the willingness that she has indicated to cooperate with Chile so that we can not only deal with the current emergency but also work towards the plan for reconstruction that Chile needs to carry out with a sense of a unity and solidarity.\n \nThe meeting with Secretary Clinton was a long one. It was a deep meeting, it was a fertile meeting, and I think that we have covered not only many bilateral issues as well as the issues Chile is facing now during the emergency and its phase of reconstruction, but also many multilateral issues of interest to us both.\n \nWe share with the United States a number of values \u2013 freedom, democracy, respect for human rights, a sense of cooperation \u2013 and above all, we share the same ideas with regards to challenges of the 21st century. \n \nAnd so we posed to her and we represented to her our willingness to continue to cooperate, but even more closely than before, on strengthening democracy, protecting human rights. We also asked Secretary Clinton for cooperation from the United States with regard to technology, because if the United States can provide us with very good information on renewable energy, environmentally friendly energy, technology necessary to provide housing \u2013 temporary housing, to provide prefabricated housing quickly, this is going to help, particularly in the cases of 500,000 people who have been left without shelter as a result of the earthquake; also in terms of renovation and also issues of entrepreneurship, because Chile is now at a time in its history where it needs to make a leap forward. Our hope for Chile is that it will be the first country of Latin America to beat underdevelopment, to beat poverty. And we hope to do so while we strengthen democracy and work towards peace. \n \nAnd finally, I asked the Secretary of State to please extend our invitation to President Obama so that he will visit Chile in the near future. And I also assured her of my attendance at the nuclear security summit in Washington, D.C. in April. I also hope that I will have the opportunity to have many more meetings with Secretary Clinton so that we can further the ties that join our two countries, so that we can work towards the achievement that our people require. \n \nAnd I want to thank you, Secretary, so much for being here today. I hope that our fertile bilateral relationship leads to many good things for our two nations. Thank you. \n \nSECRETARY CLINTON: Thank you so much.\n \nQUESTION: A question, Madam Secretary. Hi, Madam Secretary. I\u2019m over here. \n \nSECRETARY CLINTON: Sorry. Oh, there you are. (Laughter.) \n \nQUESTION: Hi, Mr. President-elect. I have a question for you, whether you believe that you\u2019re satisfied with the response of the government to the earthquake. Do you believe, for example, that they should have deployed the military within the 24-hour period? That could have, perhaps, avoided some of the looting that we\u2019re seeing in the most affected areas. \n \nAnd for the Secretary: We know that you like to get out in person and see these situations for yourself. Do you feel a little disappointed that you weren\u2019t able to in this case? And you also went to Haiti after that quake. Can you just to explain to our viewers and readers at home the differences you see and the reaction to the situation? Thank you. \n \nPRESIDENT-ELECT PINERA: (Via interpreter) When you go through a catastrophe as massive as the one that Chile has suffered, let\u2019s remember that this was not just a large earthquake. It\u2019s one of the greatest, most powerful earthquakes that have ever been recorded. Over 75 percent of Chile\u2019s population was affected by it. There are basic priorities that need to be dealt with immediately. Those are to maintain public order and safety, to provide the basics needs to the people, such as water, power. \n \nIf the armed forces can help in this initiative, they should be used. They can provide technology and logistics, the staff necessary to get many of these jobs done. And therefore, I applaud the Government of Chile for having established a state of catastrophe that made it possible for them to make use of the armed forces in this situation. \n \nMy team is currently studying what it is we are going to do when we take office so that possibly we will be extending this state of catastrophe to continue dealing with the situation to provide water as quickly as possible, provide water \u2013 sorry, power as quickly as possible, and do this in a way that this emergency phase will come to a close quickly and we can begin with the work of reconstruction. \n \nSECRETARY CLINTON: I have been visiting sites of disasters for more than 30 years, as a first lady in Arkansas, as a first lady of the United States, as a senator from New York, and now as Secretary of State. And it is very clear to me that Chile is much better prepared, much quicker to respond, more able to do so. The leadership that President Bachelet and President-elect Pinera are providing to make sure that they work together in order to keep the recovery and relief efforts going seamlessly is exactly what one would expect. There is no doubt in my mind as we stand here at an airport that thankfully is functioning and relief flights are coming in, that Chile is prepared, is dealing with this massive disaster and will be on the road to an even better recovery in the future.\n \nQUESTION: President-elect Pinera, buenos tardes. We\u2019d like to know how you plan to pay for the reconstruction efforts, which are going to be considerable, what you estimate they\u2019re going to cost. And also, how does this affect your economic plan of 6 percent growth and 200,000 jobs created in your first year in office?\n \nAnd for Madam Secretary, we just wanted to ask you whether you think that president-elect\u2019s attitude toward Venezuela and Cuba will be helpful or a hindrance to the relations between the U.S. and those countries, and Chile and those countries. Thank you.\n \nINTERPRETER: Dos preguntas, primero para El President-electo Pinera \u2013 sorry. (Laughter.)\n \nPresident-elect, how do you plan to pay for the reconstruction efforts that are going to have to be carried out, and how do you plan to reconcile those with your platform for 6 percent growth for the nation and 200,000 more jobs? \n \nAnd for Secretary Clinton, the question was -- \n \nSECRETARY CLINTON: No, just his answer is sufficient. \n \nINTERPRETER: Okay. The president-elect answered: We are finishing our diagnosis right now, so we\u2019re not quite sure of all the figures and absolutely all the details. What I can tell you this is the most important thing we need to deal with right now. So far, the count is that there are over 730 people who have died, more or less. That number may continue to grow, unfortunately, because a number of people are still missing. We know that there are people who are caught under the rubble. And so we will continue to work on this. This is probably the worst and the most \u2013 the saddest thing that we\u2019re dealing with right now. \n \nWe know this effort is going to entail an enormous investment. Figures right now are in the area of $30 billion. We\u2019re not sure of that, but that\u2019s more or less in the area of 16 percent of this country\u2019s GNP. Therefore, an amendment will have to be made to our plan, because we are going to have to factor in one very important element, and that is the phase of reconstruction.\n \nHow are we going to carry this out? Well, luckily, Chile\u2019s financial situation is extremely solid. We have fruitful resources \u2013 financial resources and human resources that will allow us to do much. We will also be given a helping hand by the international community, which has already shown its solidarity. You\u2019ve seen it at this very airport. President Lula came to visit us, the Secretary of State is here with us today, and the president of Peru is going to be visiting us shortly. This is a demonstration of the efforts at reconstruction that have already begun and that we are already being helped with.\n \nSECRETARY CLINTON: As to the second question, Chile and the United States share common values: a great belief in democracy, a respect for private property and free markets, a commitment to free expression and independent media, and so much else. And we will stand strongly on behalf of those values in our hemisphere and around the world. \n \nQUESTION: (In Spanish.)\n \nPRESIDENT-ELECT PINERA: (In Spanish.)\n \nINTERPRETER: The question had to do with \u2013 the question was for the president-elect. What do you think of the decisions of the government? Do you think that they should\u2019ve used more military? Do you think that greater power should have been exercised in that sense?\n \nThe response is: There has been an enormous wave of vandalism, looting, crime in the cities of Concepcion and Talcahuano. This is absolutely unacceptable. It simply worsens the already catastrophic situation we\u2019re in. I hope that the government will be using all the tools necessary in order to combat crime and to restore order. \n \nIf more troops \u2013 if more people are needed, they should be used. Fighting crime is a priority of our administration. And I want to say something with regards to the figures I gave a little while ago. We will not change the figures we gave for expecting 6 percent in growth and 200,000 additional jobs. Those figures remain. And perhaps the phase of reconstruction can help to accelerate our growth and increase the number of jobs that we have.\n \nBut in any catastrophe, the first things you need to worry about are maintaining public order and providing the basic needs of the people in terms of water, power, et cetera. This is not the time to evaluate the performance of the government. This is not the time to cast blame or say that anything has been done wrong. This is the time to provide solutions, and evaluations can come later. \n \nQUESTION: (In Spanish.)\n \nINTERPRETER: A question for Secretary of State Clinton: If the Government of Chile requires it, would the United States be willing to send troops to Chile?\n \nSECRETARY CLINTON: Well, we have said we will offer any help, but that has never been mentioned. Certain equipment has certainly been requested, which we will attempt to provide. But I have great confidence in Chile\u2019s ability to manage its security needs. We want to be helpful where they have gaps, and that\u2019s what we will try to fill.\n######\nSource: U.S. Department of State.", "title": "Secretary Clinton's Visit to Chile, March 2, 2010", "farm": "3", "date_update": "1404332077", "primary": "4402128428", "server": "2749", "date_create": "1267558338", "photos": "16", "secret": "4971602c2b", "owner": "39074213@N03", "vist_label": "visit", "id": "72157623542092710"}, {"description": "February 26, 2010 in the DR!", "title": "day in the life 2010", "farm": "5", "date_update": "1347810779", "primary": "4400773877", "server": "4028", "date_create": "1267541665", "photos": "40", "secret": "55e3850e97", "owner": "99175152@N00", "vist_label": "visit", "id": "72157623540522608"}, {"description": "", "title": "New Orleans 2010", "farm": "3", "date_update": "1404946544", "primary": "4402947824", "server": "2710", "date_create": "1267580724", "photos": "46", "secret": "35cf79a57b", "owner": "44963583@N00", "vist_label": "visit", "id": "72157623544089176"}, {"description": "The Jenolan Caves are an example of remarkable caverns in the Blue Mountains, New South Wales, Australia. They are the most celebrated of several similar groups in the limestone of the country being the oldest discovered open caves in the world (according to ABC News Online).", "title": "Jenolan Caves", "farm": "3", "date_update": "1296995419", "primary": "4243159153", "server": "2661", "date_create": "1262585257", "photos": "12", "secret": "8fefe1bf2d", "owner": "45338605@N08", "vist_label": "visit", "id": "72157623134784128"}, {"description": "Galaxy Force / Robot Masters Transformers Japan Katalog / Catalog\n\n\n<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n more Toy catalogs / mehr Spielzeug Kataloge \n<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n\n\nvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv\nMy Toy Home Page\nGijoe-Transformers-Fans de/\n-----------------------------------------------\nBesucht Meine Action Figuren Seite mit Forum f\u00fcr eine \u00dcbersicht \u00fcber meine Toy Sammlung \n----------------------------------------\nVisit my action figures side with a forum for an overview of my Toy Collection\n\n,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n\n", "title": "Galaxy Force / Robot Masters Transformers Japan Katalog / Catalog", "farm": "3", "date_update": "1347318215", "primary": "4406771859", "server": "2501", "date_create": "1267742623", "photos": "10", "secret": "547fda5c2c", "owner": "23593867@N05", "vist_label": "visit", "id": "72157623431354665"}, {"description": "Robotech changers Blockman\n\n<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n more Toy catalogs / mehr Spielzeug Kataloge \n<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n\n\nvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv\nMy Toy Home Page\nGijoe-Transformers-Fans de/\n-----------------------------------------------\nBesucht Meine Action Figuren Seite mit Forum f\u00fcr eine \u00dcbersicht \u00fcber meine Toy Sammlung \n----------------------------------------\nVisit my action figures side with a forum for an overview of my Toy Collection\n\n,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n\n", "title": "Robotech changers Blockman", "farm": "3", "date_update": "1347319508", "primary": "4407448360", "server": "2735", "date_create": "1267739977", "photos": "11", "secret": "3bc8f53886", "owner": "23593867@N05", "vist_label": "visit", "id": "72157623555688218"}, {"description": "Tomy Weihnacht\u00b4s Katalog 1987\n\n<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n more Toy catalogs / mehr Spielzeug Kataloge \n<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n\n\nvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv\nMy Toy Home Page\nGijoe-Transformers-Fans de/\n-----------------------------------------------\nBesucht Meine Action Figuren Seite mit Forum f\u00fcr eine \u00dcbersicht \u00fcber meine Toy Sammlung \n----------------------------------------\nVisit my action figures side with a forum for an overview of my Toy Collection\n\n,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n\n", "title": "Tomy Weihnacht\u00b4s Katalog 1987", "farm": "5", "date_update": "1347319764", "primary": "4407456882", "server": "4020", "date_create": "1267740251", "photos": "40", "secret": "740a36abdc", "owner": "23593867@N05", "vist_label": "visit", "id": "72157623431139319"}, {"description": "The advance planning visit for the multilateral youth exchange "Youth for Change" took place in Chisinau, Moldova between 16 and 18 December 2009.", "title": "\"Youth for Change\" - APV in Chisinau (MD)", "farm": "5", "date_update": "1408010321", "primary": "4246977413", "server": "4057", "date_create": "1262687649", "photos": "32", "secret": "be90bbbb58", "owner": "33178774@N03", "vist_label": "visit", "id": "72157623019037905"}, {"description": "If you are interested in the county of Kent, please visit my blog - kenttodayandyesterday.blogspot.com", "title": "West Malling, Kent", "farm": "5", "date_update": "1297684539", "primary": "4494860490", "server": "4041", "date_create": "1270500936", "photos": "18", "secret": "a10b7cac10", "owner": "40686262@N05", "vist_label": "visit", "id": "72157623653330993"}, {"description": "", "title": "Grandma's XC Party (that's 90 for you non-romans)", "farm": "5", "date_update": "1341952639", "primary": "4495557841", "server": "4049", "date_create": "1270530104", "photos": "18", "secret": "e946223d08", "owner": "62719307@N00", "vist_label": "visit", "id": "72157623782056916"}, {"description": "03 FEB 2010", "title": "AA. Maalhos", "farm": "5", "date_update": "1296741045", "primary": "4334424394", "server": "4042", "date_create": "1265445972", "photos": "15", "secret": "7aa763ebfe", "owner": "39123191@N05", "vist_label": "visit", "id": "72157623363102898"}, {"description": "More at www.dannychoo.com", "title": "Akihabara Photo Walk", "farm": "5", "date_update": "1357097107", "primary": "4334910270", "server": "4038", "date_create": "1265467245", "photos": "29", "secret": "2268f7701b", "owner": "88444437@N00", "vist_label": "visit", "id": "72157623364325932"}, {"description": "", "title": "Banja Luka February 2010", "farm": "5", "date_update": "1356165836", "primary": "4333769465", "server": "4031", "date_create": "1265449554", "photos": "47", "secret": "087318ee22", "owner": "21137616@N03", "vist_label": "visit", "id": "72157623238708241"}, {"description": "", "title": "2010 - Prospective Grad Student Dinner", "farm": "3", "date_update": "1356993793", "primary": "4410765023", "server": "2794", "date_create": "1267896193", "photos": "49", "secret": "cfe087d657", "owner": "56682138@N00", "vist_label": "visit", "id": "72157623441558787"}, {"description": "A Feira de Caruaru (Luiz Gonzaga)\n\nA Feira de Caruaru,\nFaz gosto a gente v\u00ea.\nDe tudo que h\u00e1 no mundo,\nNela tem pra vend\u00ea,\nNa feira de Caruaru.\nTem massa de mandioca,\nBatata assada, tem ovo cru,\nBanana, laranja, manga,\nBatata, doce, queijo e caju,\nCenoura, jabuticaba,\nGuin\u00e9, galinha, pato e peru,\nTem bode, carneiro, porco,\nSe duvid\u00e1... int\u00e9 cururu.\nTem cesto, balaio, corda,\nTamanco, gr\u00e9ia, tem cu\u00eai-tatu,\nTem fumo, tem tabaqueiro,\nFeito de chifre de boi zebu,\nCaneco acuvit\u00earo,\nPen\u00eara boa e m\u00e9 de uru\u00e7\u00fa,\nTem car\u00e7a de arvorada,\nQue \u00e9 pra matuto n\u00e3o and\u00e1 n\u00fa.\nTem r\u00eade, tem balieira,\nMode minino ca\u00e7\u00e1 nambu,\nMaxixe, cebola verde,\nTomate, cuento, couve e chuchu,\nArmo\u00e7o feito nas cordas,\nPir\u00e3o mixido que nem angu,\nMubia de tambur\u00eate,\nFeita do tronco do mulung\u00fa.\nTem loui\u00e7a, tem ferro v\u00e9io,\nSorvete de raspa que faz ja\u00fa,\nGelada, cardo de cana,\nFruta de paima e mandacaru.\nBunecos de Vitalino,\nQue s\u00e3o cunhecidos int\u00e9 no Sul,\nDe tudo que h\u00e1 no mundo,\nTem na Feira de Caruaru.", "title": "Feira de Caruaru", "farm": "3", "date_update": "1407112198", "primary": "4301524120", "server": "2774", "date_create": "1264362903", "photos": "34", "secret": "16df534e44", "owner": "11962592@N00", "vist_label": "visit", "id": "72157623151132703"}, {"description": "On October 16, 2006 Al Reese visited Texas A&M University's Mays Business School to meet with undergraduate business students.", "title": "Alan Roberts", "farm": "3", "date_update": "1297078665", "primary": "4416709191", "server": "2761", "date_create": "1268064818", "photos": "28", "secret": "2dae4293dc", "owner": "74814994@N00", "vist_label": "visit", "id": "72157623454926785"}, {"description": "08/03/2010 - Secretary-General Angel Gurr\u00eda and President Nicolas Sarkozy participated in a short ceremony to unveil a plaque dedicating the OECD Conference Centre to the co-operation and solidarity between nations for a stronger, cleaner, fairer world economy. \n\nThe ceremony was held in the context of the International Conference on Access to Civil Nuclear Energy, organised by the French government in co-ordination with the International Atomic Energy Agency and supported by the OECD/Nuclear Energy Agency. \n\nMr. Gurr\u00eda welcomed delegates to the conference. President Sarkozy\u2019s opening address was followed by speeches from Yukia Amano, Director General of the International Atomic Energy Agency and Jos\u00e9 Manuel Barroso, President of the European Commission. \n\n", "title": "International Conference on access to Civil Nuclear Energy", "farm": "5", "date_update": "1431950977", "primary": "4416291841", "server": "4072", "date_create": "1268053810", "photos": "27", "secret": "796b081e4a", "owner": "32771300@N02", "vist_label": "visit", "id": "72157623578467254"}, {"description": "I visited the Davis Bridge Battlefield in March 2010. The Battle of Davis Bridge, also known as Hatchie's Bridge, was fought on October 5, 1862. CSA Major General Earl Van Dorn was attempting to move his army west of the Hatchie River, in southwest Tennessee, after his defeat at Corinth, Mississippi. With very few bridges crossing the Hatchie River, Van Dorn was forced to engage the Federal forces under the command of US major generals Edward O.C. Ord and Stephen A. Hurlbut. The Confederate attack would fail miserably and they would be forced back several miles. Van Dorn would succeed in finding another crossing point and would move his army to Holly Springs, Mississippi. The Federal army would suffer 500 casualties compared to 400 on the Confederate side. Unfortunately, for Federal fortunes, the Confederate army would escape to fight again.\n\nPhotos by: Michael Noirot\nwww.BattlefieldPortraits.com/\nThisMightyScourge.com/", "title": "Davis Bridge Battlefield - March 2010", "farm": "3", "date_update": "1297962177", "primary": "4417331701", "server": "2784", "date_create": "1268080097", "photos": "13", "secret": "f095a7bd83", "owner": "39594538@N04", "vist_label": "visit", "id": "72157623581011328"}, {"description": "", "title": "PRT Farah", "farm": "5", "date_update": "1412193377", "primary": "4258595899", "server": "4046", "date_create": "1263041898", "photos": "14", "secret": "0cacefbc94", "owner": "29456680@N06", "vist_label": "visit", "id": "72157623047955989"}, {"description": "01.09.10 Center of Japanese Studies held Mochitsuki - a celebration of mochi-making and other Japanese arts and activities.\n", "title": "Mochitsuki", "farm": "5", "date_update": "1433713528", "primary": "4260111569", "server": "4005", "date_create": "1263079037", "photos": "25", "secret": "862e0f399f", "owner": "47051377@N00", "vist_label": "visit", "id": "72157623051586505"}, {"description": "28dec09-3jan10. Spent my days in Macau and Hongkong and never stopped taking photos/polaroids. Too amazing. ", "title": "Polaroid (Macau/HK trip)", "farm": "3", "date_update": "1297246970", "primary": "4258876173", "server": "2702", "date_create": "1263052890", "photos": "11", "secret": "5e21eb1b0e", "owner": "45903045@N05", "vist_label": "visit", "id": "72157623173423580"}, {"description": "Seven Second Delay - 3/10/2010\nw/Ken Freedman & & w/o Andy Breckman\n\nWFMU's 2010 Marathon Week 2!!!\n\nMore 2010 WFMU Marathon photos here: WFMUthon 2010 ", "title": "Seven Second Delay - 2010 Marathon Week 2 - 3/10/10", "farm": "5", "date_update": "1414584332", "primary": "4424096726", "server": "4058", "date_create": "1268277508", "photos": "37", "secret": "3572de4e5c", "owner": "11855598@N00", "vist_label": "visit", "id": "72157623596916528"}, {"description": "", "title": "Mt. Diablo High School, Concord, CA", "farm": "5", "date_update": "1385515305", "primary": "4267433606", "server": "4070", "date_create": "1263258799", "photos": "10", "secret": "d352a86e52", "owner": "9883601@N03", "vist_label": "visit", "id": "72157623192175390"}, {"description": "", "title": "adidas STAR WARS release event in TAIPEI OSTORE", "farm": "5", "date_update": "1432253042", "primary": "4266228820", "server": "4052", "date_create": "1263220286", "photos": "41", "secret": "e7bf9ac709", "owner": "22424652@N00", "vist_label": "visit", "id": "72157623063719839"}, {"description": "Agriculture Secretary Tom Vilsack's visit to Afghanistan in January 2010.", "title": "Ag Sec Vilsack Afghan Trip", "farm": "5", "date_update": "1371496431", "primary": "4269793392", "server": "4003", "date_create": "1263325976", "photos": "22", "secret": "8aef6caaae", "owner": "41284017@N08", "vist_label": "visit", "id": "72157623072796959"}, {"description": "A collection of stills from a short film titled The Edge of Afrca. Watch it here.", "title": "The Edge of Africa", "farm": "3", "date_update": "1357148929", "primary": "4427151400", "server": "2740", "date_create": "1268402256", "photos": "10", "secret": "98d0e4e10f", "owner": "34635058@N00", "vist_label": "visit", "id": "72157623480872283"}, {"description": "On October 30, 2006 Jim Weber visited Texas A&M University's Mays Business School to meet with undergraduate business students.", "title": "Jim Weber", "farm": "5", "date_update": "1297238321", "primary": "4426569981", "server": "4035", "date_create": "1268405615", "photos": "26", "secret": "390b4ee9c3", "owner": "74814994@N00", "vist_label": "visit", "id": "72157623481128331"}, {"description": "On April 5, 2006 Steve Alvis visited Texas A&M University's Mays Business School to meet with undergraduate Business Honors students.", "title": "Steve Alvis", "farm": "5", "date_update": "1304127200", "primary": "4427535402", "server": "4016", "date_create": "1268412050", "photos": "29", "secret": "547df5a0c2", "owner": "74814994@N00", "vist_label": "visit", "id": "72157623606238012"}, {"description": "On November 17, 2005 Charles Ansley visited Texas A&M University's Mays Business School to meet with undergraduate Business Honors students.", "title": "Charles Ansley", "farm": "5", "date_update": "1297455733", "primary": "4427654514", "server": "4017", "date_create": "1268415798", "photos": "19", "secret": "98bccb34f3", "owner": "74814994@N00", "vist_label": "visit", "id": "72157623606566942"}, {"description": "On March 1, 2006 John Irvin visited Texas A&M University's Mays Business School to meet with undergraduate Business Honors students.", "title": "John Irvin", "farm": "3", "date_update": "1297457094", "primary": "4426672697", "server": "2747", "date_create": "1268408925", "photos": "31", "secret": "875e7a98b7", "owner": "74814994@N00", "vist_label": "visit", "id": "72157623481403631"}, {"description": "On July 20, 2005 Bernie Sensale visited Texas A&M University's Mays Business School to meet with undergraduate business students.", "title": "Bernie Sensale", "farm": "3", "date_update": "1296649708", "primary": "4427253433", "server": "2222", "date_create": "1268427062", "photos": "20", "secret": "92cb8d5bb7", "owner": "74814994@N00", "vist_label": "visit", "id": "72157623607493402"}, {"description": "On October 28, 2005 Grant Sims visited Texas A&M University's Mays Business School to meet with undergraduate business students.", "title": "Grant Sims", "farm": "3", "date_update": "1296449624", "primary": "4428192134", "server": "2782", "date_create": "1268432778", "photos": "44", "secret": "8c2ac1cfcf", "owner": "74814994@N00", "vist_label": "visit", "id": "72157623483419823"}, {"description": "", "title": "Fest- und Hochzeitsmesse Z\u00fcrich 2010 by ProjectPhoto.ch", "farm": "3", "date_update": "1356169258", "primary": "4268475953", "server": "2729", "date_create": "1263307559", "photos": "30", "secret": "c3a033cc99", "owner": "84929570@N00", "vist_label": "visit", "id": "72157623195497506"}, {"description": "13 Jan 2009", "title": "January snow in Kingston", "farm": "3", "date_update": "1370205344", "primary": "4271038077", "server": "2771", "date_create": "1263395731", "photos": "26", "secret": "8d1e5b9ede", "owner": "7307231@N06", "vist_label": "visit", "id": "72157623202372812"}, {"description": "Photos from a Valentine's Day / President's Day holiday weekend trip to Seattle. ", "title": "Seattle Trip / Valentine's 2010", "farm": "3", "date_update": "1298705899", "primary": "4357600780", "server": "2716", "date_create": "1267693542", "photos": "36", "secret": "e8cfd865fe", "owner": "98215930@N00", "vist_label": "visit", "id": "72157623552169546"}, {"description": "", "title": "Taichung Harbor - Taichung, Taiwan", "farm": "5", "date_update": "1356192961", "primary": "4432116752", "server": "4040", "date_create": "1268573458", "photos": "24", "secret": "130f9f20e1", "owner": "64525258@N00", "vist_label": "visit", "id": "72157623492838109"}, {"description": "", "title": "03-12-2010 Chris Visit", "farm": "5", "date_update": "1399238617", "primary": "4433324726", "server": "4058", "date_create": "1268599362", "photos": "17", "secret": "b33a6508ef", "owner": "92207931@N00", "vist_label": "visit", "id": "72157623620043998"}, {"description": "", "title": "Mom visits LA", "farm": "5", "date_update": "1324303619", "primary": "4433971642", "server": "4007", "date_create": "1268612827", "photos": "13", "secret": "7bacd89ccf", "owner": "13746132@N06", "vist_label": "visit", "id": "72157623496934551"}, {"description": "Choice", "title": "CSR Winter 2009", "farm": "5", "date_update": "1298070559", "primary": "4278604862", "server": "4066", "date_create": "1263631456", "photos": "35", "secret": "f71aa8bb11", "owner": "26084799@N08", "vist_label": "visit", "id": "72157623219655434"}, {"description": "Presbyterian Community Ministry commemorates 41 years of service to Lee County with a luncheon and keynote address by Dr. Wayne Flynt, Professor Emeritus of History, Auburn University.\n\n", "title": "2010-2-15 PCM 41st Annual Meeting", "farm": "5", "date_update": "1298350822", "primary": "4363559410", "server": "4063", "date_create": "1266355773", "photos": "10", "secret": "6b1fb079d1", "owner": "7261841@N03", "vist_label": "visit", "id": "72157623449162982"}, {"description": "", "title": "Talyllyn Railway - 14th Feb 2010", "farm": "5", "date_update": "1356299380", "primary": "4361738007", "server": "4008", "date_create": "1266325165", "photos": "43", "secret": "84b05efd0e", "owner": "23582110@N00", "vist_label": "visit", "id": "72157623321729475"}, {"description": "Photos shot in support of my film project about my Grandfather's life.", "title": "Film Project", "farm": "3", "date_update": "1396642674", "primary": "4281981771", "server": "2698", "date_create": "1263757753", "photos": "28", "secret": "2c54cf3e4c", "owner": "7791881@N04", "vist_label": "visit", "id": "72157623104927681"}, {"description": "", "title": "Amanda Jager", "farm": "3", "date_update": "1356614262", "primary": "4369003781", "server": "2696", "date_create": "1266554128", "photos": "15", "secret": "6f1ec199f8", "owner": "30364906@N08", "vist_label": "visit", "id": "72157623339819153"}, {"description": "Sebastopol, CA - Photowalk. Took a walk around Sebastopol after visiting with O'Reilly Media. Downtown was small but has some nice spots for photo taking. I also broke my tripod yesterday which was a total downer.", "title": "2-18-10", "farm": "5", "date_update": "1356035079", "primary": "4367780729", "server": "4070", "date_create": "1266517122", "photos": "19", "secret": "39444deca9", "owner": "44048128@N00", "vist_label": "visit", "id": "72157623461262602"}, {"description": "In an attempt to further pressure EPA Administrator Lisa Jackson to enforce the Clean Water Act and halt mountaintop removal coal mining (MTR), activists erected two 20-foot-tall, purple tripod structures in front of the agency\u2019s headquarters. A pair of activists perched at the top of the tripods have strung a 25-foot sign in front of the EPA\u2019s door that reads, \u201cEPA: pledge to end mountaintop removal in 2010.\u201d Six people are locked to the tripods and say they won\u2019t leave unless Administrator Jackson commits to a flyover visit of the Appalachian Mountains and MTR sites, which she has never done before.", "title": "Activists Erect Tripod at U.S. EPA Headquarters", "farm": "3", "date_update": "1332873454", "primary": "4443257660", "server": "2787", "date_create": "1268918040", "photos": "25", "secret": "e2f6be81f1", "owner": "38705147@N00", "vist_label": "visit", "id": "72157623519894743"}, {"description": "Up the Poo Poo Point Trail, via the High School Trail, to the Railroad Grade, down to Poo Poo Point for lunch, down the Chirico Trail. About seven miles total, with a car shuttle, about 2000 feet of elevation gain.", "title": "Poo Poo Pt Trail 2010a", "farm": "5", "date_update": "1435965928", "primary": "4289350286", "server": "4032", "date_create": "1263945204", "photos": "21", "secret": "457c2e9510", "owner": "28435100@N00", "vist_label": "visit", "id": "72157623120685495"}, {"description": "Aaron Blanco's specialty caf\u00e9 and roastery, in the heart of San Antonio, TX", "title": "Brown Coffee Co HQ", "farm": "5", "date_update": "1297284849", "primary": "4374394846", "server": "4003", "date_create": "1266710688", "photos": "26", "secret": "3396a7515d", "owner": "43547678@N00", "vist_label": "visit", "id": "72157623351074567"}, {"description": "The Nichols Arboretum at the University of Michigan in autumn of 2009. Peak color came about around a week after this particular visit, but I was studying for midterms so couldn't make a trip that week.", "title": "Nichols Arboretum (October, 2009)", "farm": "5", "date_update": "1297252073", "primary": "4293652337", "server": "4056", "date_create": "1264121573", "photos": "29", "secret": "102ef0602c", "owner": "61543433@N00", "vist_label": "visit", "id": "72157623258387556"}, {"description": "On October 31, 2005 Karen Katz visited Texas A&M University's Mays Business School to meet with undergraduate business students.", "title": "Karen Katz", "farm": "5", "date_update": "1297316815", "primary": "4453735147", "server": "4028", "date_create": "1269269407", "photos": "25", "secret": "8a122eb506", "owner": "74814994@N00", "vist_label": "visit", "id": "72157623546334961"}, {"description": "On February 23, 2004 Megan Featherston visited Texas A&M University's Mays Business School to meet with undergraduate business students.", "title": "Megan Featherston", "farm": "5", "date_update": "1297316910", "primary": "4454780358", "server": "4022", "date_create": "1269275759", "photos": "21", "secret": "da429e4bd7", "owner": "74814994@N00", "vist_label": "visit", "id": "72157623546961645"}, {"description": "Nick Clegg Visits Lodge Moor Nursey School to take part in a dance-a-thon in aid of Sport Relief.", "title": "Lodge Moor Nursey School, Sheffield", "farm": "3", "date_update": "1348571277", "primary": "4453944814", "server": "2765", "date_create": "1269251255", "photos": "13", "secret": "d51ee81ba4", "owner": "8358125@N03", "vist_label": "visit", "id": "72157623669470028"}, {"description": "On September 16, 2005 Mike McLoad visited Texas A&M University's Mays Business School to meet with undergraduate business students.", "title": "Mike McLoad", "farm": "5", "date_update": "1297156736", "primary": "4454539332", "server": "4068", "date_create": "1269269996", "photos": "21", "secret": "3fe3dba68c", "owner": "74814994@N00", "vist_label": "visit", "id": "72157623670920286"}, {"description": "Visiting Fussen and Neuschwanstein Castle was going to be one of the highlights of my trip to Bavaria, Germany in October 2009. I hit Fussen on an absolutely gorgeous day - crystal clear and sunny. I was looking for some great shots of Neuschwanstein after about a week of rain. From the bus stop you have to hike up a steep hill for a little bit - and unfortunately I started uphill at the same time three busloads of Japanese tourists started the climb - so no chance for solitude at all. The thought of shooting in perfect conditions kept pushing me on - right up to the time that I got to the gate to the Marienbrucke trail and found it locked and barred. I was so depressed - thought about skirting the gate and cutting through the woods but there was a nasty looking guard there. How depressing! I didn't get the shots I wanted, didn't want to hang around with hundreds of yapping tourists, so I ended back to Fussen, walked around, and took the bus back to Mittenwald determined to come back to Fussen when the gate is open. Fussen is a charming little town too - I should have spent more time there.", "title": "Germany - Fussen and Neuscwhanstein Castle", "farm": "5", "date_update": "1433427522", "primary": "4297498141", "server": "4043", "date_create": "1264271433", "photos": "20", "secret": "81e2ef4097", "owner": "72213316@N00", "vist_label": "visit", "id": "72157623268567982"}, {"description": "IKEA, Dinner with the Krammies, and Baskin Robbin's ice cream!", "title": "LA Visit 03-10", "farm": "5", "date_update": "1424762307", "primary": "4461261400", "server": "4069", "date_create": "1269472867", "photos": "19", "secret": "e97d43b93a", "owner": "38088055@N00", "vist_label": "visit", "id": "72157623562884889"}, {"description": "Visit Amsterdamize!", "title": "Provincial Cycling", "farm": "3", "date_update": "1311250979", "primary": "4460953490", "server": "2713", "date_create": "1269464000", "photos": "13", "secret": "54509f515c", "owner": "22634709@N00", "vist_label": "visit", "id": "72157623686611346"}, {"description": "In Indianapolis. I went with Jess. I was extremely tired from having been up all night previously playing "Are You A Werewolf?"", "title": "Indiana State Fair 2009", "farm": "5", "date_update": "1356367267", "primary": "4304531477", "server": "4054", "date_create": "1264464827", "photos": "17", "secret": "ee06871d85", "owner": "44545509@N00", "vist_label": "visit", "id": "72157623160053863"}, {"description": "a few pics from Australia Day (January 26th) 2010. so actually not really about Australia Day itself, come to think of it. huh.", "title": "Australia Day 2010", "farm": "5", "date_update": "1399852130", "primary": "4306124672", "server": "4015", "date_create": "1264490529", "photos": "23", "secret": "e719dd6953", "owner": "11554355@N00", "vist_label": "visit", "id": "72157623162012697"}, {"description": "On February 2, 2009, Baker & McKenzie managing partner Mark Taylor visited Texas A&M University's Mays Business School to meet with undergraduate Business Honors students.", "title": "Mark Taylor", "farm": "5", "date_update": "1297910459", "primary": "4390166096", "server": "4068", "date_create": "1267200131", "photos": "12", "secret": "11ef228b7f", "owner": "74814994@N00", "vist_label": "visit", "id": "72157623388688073"}, {"description": "Trip to Oklahoma City, OK for a conference. Outing to the Oklahoma Memorial with some of my friends from Baltimore.", "title": "Oklahoma Trip", "farm": "5", "date_update": "1357382827", "primary": "4389554329", "server": "4068", "date_create": "1267208348", "photos": "19", "secret": "5d81e3a59a", "owner": "64314816@N00", "vist_label": "visit", "id": "72157623389431321"}, {"description": "Children's area at Busch Gardens Tampa Bay theme park featuring rides, shows and character dining with Sesame Street characters.", "title": "Sesame Street Safari of Fun", "farm": "5", "date_update": "1296160312", "primary": "4389264205", "server": "4064", "date_create": "1267210064", "photos": "18", "secret": "f73699d398", "owner": "33045734@N02", "vist_label": "visit", "id": "72157623389582731"}, {"description": "On February 10, 2009, Michael Jensen visited Texas A&M University's Mays Business School to meet with undergraduate Business Honors students.", "title": "Michael Jensen", "farm": "5", "date_update": "1297561623", "primary": "4390204044", "server": "4031", "date_create": "1267201240", "photos": "16", "secret": "76b717045c", "owner": "74814994@N00", "vist_label": "visit", "id": "72157623513338444"}, {"description": "On February 23, 2009, CEO of Big Picture Thinking Brandon Coleman '78 visited Texas A&M University's Mays Business School to meet with undergraduate Business Honors students.", "title": "Brandon Coleman '78", "farm": "3", "date_update": "1297337816", "primary": "4389506305", "server": "2678", "date_create": "1267203329", "photos": "13", "secret": "f6415da1bb", "owner": "74814994@N00", "vist_label": "visit", "id": "72157623513528524"}, {"description": "", "title": "Open Space 2 Innovate", "farm": "3", "date_update": "1358190147", "primary": "4440524899", "server": "2740", "date_create": "1268846053", "photos": "12", "secret": "f1110ed534", "owner": "35278629@N08", "vist_label": "visit", "id": "72157623514925837"}, {"description": "Activists gathered in front of the White House, to stand in "recession era med-lines" (think "Depression-era bread lines"). Why? Earlier in the week, the White House floated a proposal to freeze all non-military discretionary spending for three years-which could have devastating implications for life-saving programs that provide medicine, doctor's visits, housing, and other supportive services for people with HIV in the U.S. This comes after statements from the Obama administration that global AIDS programs could be flat-funded for the second year in a row. We were there to say that if he goes through with the budget freeze, people with AIDS will be left out in the cold, standing in line, waiting to get access to AIDS treatment.", "title": "Budget freeze protest", "farm": "3", "date_update": "1333933226", "primary": "4309703385", "server": "2799", "date_create": "1264637730", "photos": "17", "secret": "91f10cb729", "owner": "64597607@N00", "vist_label": "visit", "id": "72157623173259093"}, {"description": "Player's Cigarettes, 1915.", "title": "Polar Exploration Cigarette Cards", "farm": "5", "date_update": "1408402744", "primary": "4395746825", "server": "4060", "date_create": "1267396773", "photos": "25", "secret": "d3e7d6d9c6", "owner": "86821724@N00", "vist_label": "visit", "id": "72157623404366739"}, {"description": "On day six of our New Zealand adventure we visit some geothermal attractions and a Maori cultural village. ", "title": "Day 6: Wai-O-Tapu & Tamaki", "farm": "3", "date_update": "1305156658", "primary": "4314018553", "server": "2678", "date_create": "1264804362", "photos": "44", "secret": "4c4da2949f", "owner": "29660975@N05", "vist_label": "visit", "id": "72157623184933535"}, {"description": "The 2010 Delaware GIS Conference. March 30, 2010. In Dover, Delaware.", "title": "DEGIS 2010", "farm": "5", "date_update": "1356225448", "primary": "4476490031", "server": "4034", "date_create": "1269995900", "photos": "21", "secret": "7d5daf8c2b", "owner": "76414778@N00", "vist_label": "visit", "id": "72157623613552907"}, {"description": "Dani is getting married in May 2010 and that calls for a party. We got together at JTs and hilarity ensued...", "title": "Dani's stagette", "farm": "5", "date_update": "1333298293", "primary": "4242493218", "server": "4056", "date_create": "1262560820", "photos": "23", "secret": "6037c44563", "owner": "92431035@N00", "vist_label": "wedding", "id": "72157623007646107"}, {"description": "", "title": "Courtney Wedding", "farm": "5", "date_update": "1296906594", "primary": "4246980087", "server": "4054", "date_create": "1262687913", "photos": "10", "secret": "a2f74e5159", "owner": "40890844@N06", "vist_label": "wedding", "id": "72157623019053803"}, {"description": "Photos were taken for Mayfly Flowers (Portland, OR. mayflymanitou@gmail.com). Amy Roberts creates amazing floral arrangements maintaining only the highest standards in quality and arrangements which satisfy even the most demanding wedding parties.", "title": "Mayfly Flowers", "farm": "5", "date_update": "1311616110", "primary": "4250195202", "server": "4006", "date_create": "1262751320", "photos": "10", "secret": "31182d1204", "owner": "21216945@N08", "vist_label": "wedding", "id": "72157623149579924"}, {"description": "At Lagoon in the Cinnamon Grand Hotel\n30-12-09", "title": "First meeting", "farm": "3", "date_update": "1356235751", "primary": "4254394653", "server": "2425", "date_create": "1262908523", "photos": "17", "secret": "6c2335c216", "owner": "24059815@N08", "vist_label": "wedding", "id": "72157623038153663"}, {"description": "At Buba! \n31-12-09 to 01-01-10", "title": "New Year's Eve", "farm": "3", "date_update": "1356235752", "primary": "4255231860", "server": "2691", "date_create": "1262907966", "photos": "28", "secret": "bf5ac3b1dc", "owner": "24059815@N08", "vist_label": "wedding", "id": "72157623162647704"}, {"description": "David and Lacey's wedding in Rochester, NY. Alice and I went there by train and I took some photos from the moving train. Also, I took some from David's mom's kitchen, looking out onto the snowy backyard. And of course, I took some pictures at the wedding and wedding dinner.", "title": "Winter Wedding", "farm": "5", "date_update": "1356196305", "primary": "4265671393", "server": "4041", "date_create": "1263225331", "photos": "14", "secret": "c6f208633f", "owner": "30556912@N00", "vist_label": "wedding", "id": "72157623064224327"}, {"description": "", "title": "\u311a\u5143\u5a5a\u79ae", "farm": "5", "date_update": "1396366711", "primary": "4303228675", "server": "4067", "date_create": "1264431261", "photos": "24", "secret": "5f961e584b", "owner": "73257877@N00", "vist_label": "wedding", "id": "72157623281358480"}, {"description": "Anna och Daniel gifter sig p\u00e5 Str\u00f6msholms slott, 28 aug 2004. Fler bilder: nico.se/gallery/brollop", "title": "Anna & Daniels br\u00f6llop", "farm": "1", "date_update": "1356140357", "primary": "278796", "server": "1", "date_create": "6096", "photos": "29", "secret": "2a48d76a7a", "owner": "44124395763@N01", "vist_label": "wedding", "id": "6096"}, {"description": "", "title": "jane and charlie's wedding", "farm": "1", "date_update": "1351243460", "primary": "525698", "server": "1", "date_create": "28374", "photos": "11", "secret": "623cfa3241", "owner": "86029180@N00", "vist_label": "wedding", "id": "28374"}, {"description": "While this is mostly blurry, low light pictures of the wedding reception, I still found plenty of photos I liked.", "title": "Aaron and Cynthia's Wedding", "farm": "1", "date_update": "1356492959", "primary": "1083383", "server": "1", "date_create": "27798", "photos": "26", "secret": "8d8965feef", "owner": "51035730657@N01", "vist_label": "wedding", "id": "27798"}, {"description": "", "title": "Craig & Megan's Wedding", "farm": "1", "date_update": "1322969880", "primary": "1326825", "server": "2", "date_create": "33936", "photos": "10", "secret": "e345936ada", "owner": "49503179907@N01", "vist_label": "wedding", "id": "33936"}, {"description": "", "title": "f is for flower farm, friend wedding", "farm": "5", "date_update": "1298938005", "primary": "4829659504", "server": "4102", "date_create": "1280147469", "photos": "29", "secret": "1a683858ae", "owner": "56553525@N00", "vist_label": "wedding_ceremony", "id": "72157624460721459"}, {"description": "26th June 2010 and 27th June 2010. Wedding at Sirromet Winery and Tea ceremony at the Lee's house", "title": "Loz and Pete's Wedding", "farm": "5", "date_update": "1350159287", "primary": "4857890909", "server": "4094", "date_create": "1280874316", "photos": "30", "secret": "975a266ba1", "owner": "79219787@N00", "vist_label": "wedding_ceremony", "id": "72157624523284401"}, {"description": "", "title": "Giullianna e Jo\u00e3o", "farm": "3", "date_update": "1355269613", "primary": "4495126177", "server": "2726", "date_create": "1270520453", "photos": "16", "secret": "9cbe1daeec", "owner": "11640900@N07", "vist_label": "wedding_ceremony", "id": "72157623780545748"}, {"description": "", "title": "Ken & Laura's wedding, Woodinville, May 1st 2010", "farm": "5", "date_update": "1430631663", "primary": "4587374461", "server": "4011", "date_create": "1273277397", "photos": "17", "secret": "79c025a7d7", "owner": "53407766@N00", "vist_label": "wedding_ceremony", "id": "72157623889944943"}, {"description": "Cassandra Siefert & David Tompkins\n\nHood River, OR - July 16, 2005\n\nI was actually asked to be the photographer. However, since I no longer had a functional film camera... and was still waiting in the digital SLR. I felt it only fair to offer up the opportunity to Jonathan, supplimenting his film SLR shots with my simple digitals... sometimes it's all about the eye, the opportunity, and flat-out skill that really gets the good stuffs! (Plus, as a girl, I was privy to some of the prep moments he couldn't have otherwise gotten!)", "title": "Tompkins Wedding", "farm": "1", "date_update": "1356221118", "primary": "31336525", "server": "23", "date_create": "1142757159", "photos": "30", "secret": "c036a7cc6d", "owner": "84213819@N00", "vist_label": "wedding_ceremony", "id": "72057594085302199"}, {"description": "September 4, 2010", "title": "Our Wedding", "farm": "5", "date_update": "1356228769", "primary": "4975943648", "server": "4127", "date_create": "1284118845", "photos": "28", "secret": "1b0acbdc83", "owner": "74199783@N00", "vist_label": "wedding_ceremony", "id": "72157624798593665"}, {"description": "Jay and Annabelle's Wedding, June 12, 2005", "title": "Jay and Annabelle's Wedding", "farm": "1", "date_update": "1413807269", "primary": "19025545", "server": "14", "date_create": "447662", "photos": "24", "secret": "76d96f77b5", "owner": "67093783@N00", "vist_label": "wedding_ceremony", "id": "447662"}, {"description": "", "title": "Lynda and Matt's Wedding 05-10", "farm": "2", "date_update": "1424762307", "primary": "4605310320", "server": "1262", "date_create": "1273793472", "photos": "10", "secret": "c441a919e9", "owner": "38088055@N00", "vist_label": "wedding_ceremony", "id": "72157623931497939"}, {"description": "I hate traditional wedding photography. It's a challenge though to get good candids in a dark reception hall.", "title": "Scenes From a Wedding", "farm": "5", "date_update": "1296571990", "primary": "4443162250", "server": "4014", "date_create": "1268914531", "photos": "12", "secret": "4ff77d9148", "owner": "10059155@N05", "vist_label": "wedding_ceremony", "id": "72157623519648199"}, {"description": "Trying out my new EF-S 10-22mm lens", "title": "Alex and Lindsey's Wedding", "farm": "2", "date_update": "1356184929", "primary": "4712530124", "server": "1288", "date_create": "1276887187", "photos": "16", "secret": "54e99bd5cd", "owner": "77484444@N00", "vist_label": "wedding_ceremony", "id": "72157624179145821"}, {"description": "", "title": "Geoff + Mel's Wedding", "farm": "1", "date_update": "1347590235", "primary": "45185352", "server": "26", "date_create": "987727", "photos": "25", "secret": "43cbe49c03", "owner": "84428438@N00", "vist_label": "wedding_ceremony", "id": "987727"}, {"description": "", "title": "Rebecca & Gary's Wedding - July 31, 2004", "farm": "1", "date_update": "1344435580", "primary": "10355351", "server": "7", "date_create": "255653", "photos": "16", "secret": "d1afcb6bba", "owner": "11289083@N00", "vist_label": "wedding_ceremony", "id": "255653"}, {"description": "Annie and Jed's Wedding\n24 July 2005\n", "title": "Galle-Christiansen Wedding", "farm": "1", "date_update": "1359757761", "primary": "28810492", "server": "22", "date_create": "649437", "photos": "29", "secret": "7a53d68828", "owner": "79549384@N00", "vist_label": "wedding_ceremony", "id": "649437"}, {"description": "", "title": "Manchester", "farm": "1", "date_update": "1356147216", "primary": "46925102", "server": "26", "date_create": "1023318", "photos": "17", "secret": "6f0d616bd5", "owner": "40077210@N00", "vist_label": "wedding_ceremony", "id": "1023318"}, {"description": "", "title": "Heather's wedding", "farm": "1", "date_update": "1360644877", "primary": "15983413", "server": "14", "date_create": "1175789268", "photos": "19", "secret": "380b0cf71d", "owner": "66994399@N00", "vist_label": "wedding_ceremony", "id": "72157600049671824"}, {"description": "Taylor Wedding - Rochester, MN", "title": "Taylor Wedding", "farm": "5", "date_update": "1356221113", "primary": "4634467995", "server": "4029", "date_create": "1274505877", "photos": "20", "secret": "75d1a43e7e", "owner": "84213819@N00", "vist_label": "wedding_ceremony", "id": "72157624110756682"}, {"description": "Pictures of our wedding by Terry Devey Smith.", "title": "Wedding by TDS", "farm": "1", "date_update": "1407558008", "primary": "439754", "server": "1", "date_create": "10664", "photos": "13", "secret": "0539c9d411", "owner": "30194693@N00", "vist_label": "wedding_ceremony", "id": "10664"}, {"description": "March 25, 2005, San Diego", "title": "Kendra & Dave, Mar. 2005", "farm": "1", "date_update": "1404946544", "primary": "7798169", "server": "8", "date_create": "194658", "photos": "19", "secret": "b382db0414", "owner": "44963583@N00", "vist_label": "wedding_ceremony", "id": "194658"}, {"description": "These are photos from our wedding which took place on Monday, 13 September 2004 in Mesa, Arizona. We can be contacted at our new address: 202 E 15th Ave. #2, Ellensburg, Washington, 98926. Thanks to all who participated in person and in spirit!", "title": "Jim and April Younkin Wedding", "farm": "1", "date_update": "1356258149", "primary": "860178", "server": "1", "date_create": "22059", "photos": "10", "secret": "45ea194477", "owner": "37996586299@N01", "vist_label": "wedding_ceremony", "id": "22059"}, {"description": "Photos from our wedding on October 9, 2004", "title": "Jake & Heather Get Married", "farm": "1", "date_update": "1356147344", "primary": "1152267", "server": "1", "date_create": "29583", "photos": "24", "secret": "278e485610", "owner": "44124405407@N01", "vist_label": "wedding_ceremony", "id": "29583"}, {"description": "At Otterburn Tower", "title": "Lynette's wedding", "farm": "1", "date_update": "1314476030", "primary": "48584699", "server": "25", "date_create": "1056310", "photos": "13", "secret": "858c8d5991", "owner": "45211618@N00", "vist_label": "wedding_ceremony", "id": "1056310"}, {"description": "Wedding on the Queen Mary in Long Beach, CA. )ct 29th, 2005", "title": "Steve and Kate's Wedding", "farm": "1", "date_update": "1297948483", "primary": "58413633", "server": "27", "date_create": "1130862418", "photos": "15", "secret": "a3fd6ad08c", "owner": "67406704@N00", "vist_label": "wedding_ceremony", "id": "1266780"}, {"description": "Ringing in 2007 with Nicol & Chris Regan and friends", "title": "New Years Eve @ The Regans", "farm": "1", "date_update": "1299799179", "primary": "344726656", "server": "63", "date_create": "1167870957", "photos": "17", "secret": "72089426a7", "owner": "72516959@N00", "vist_label": "wedding_party", "id": "72157594457806898"}, {"description": "", "title": "Keiffer Wedding", "farm": "5", "date_update": "1356221114", "primary": "4791488795", "server": "4080", "date_create": "1272946878", "photos": "43", "secret": "8af558ca7a", "owner": "84213819@N00", "vist_label": "wedding_party", "id": "72157623988073332"}, {"description": "", "title": "2011-07-29 Mike and Lucy's wedding", "farm": "7", "date_update": "1388122699", "primary": "6028493824", "server": "6062", "date_create": "1312959423", "photos": "31", "secret": "048ea4f9d2", "owner": "12818386@N00", "vist_label": "wedding_party", "id": "72157627275106773"}, {"description": "wedding", "title": "matt & jenny", "farm": "8", "date_update": "1338569189", "primary": "6718703211", "server": "7150", "date_create": "1326866969", "photos": "25", "secret": "236a11e938", "owner": "74565827@N05", "vist_label": "wedding_party", "id": "72157628921838053"}, {"description": "17th Feb. 2007", "title": "Michiyo & Takuyoshi's Wedding Party", "farm": "1", "date_update": "1411484136", "primary": "393836217", "server": "137", "date_create": "1171791481", "photos": "24", "secret": "17c05c091a", "owner": "44124362019@N01", "vist_label": "wedding_party", "id": "72157594541988863"}, {"description": "cousin shelly's wedding in austin", "title": "wedding in texas", "farm": "1", "date_update": "1297958104", "primary": "1604213", "server": "2", "date_create": "41585", "photos": "30", "secret": "cf2c01a29b", "owner": "59812035@N00", "vist_label": "wedding_party", "id": "41585"}, {"description": "Marianela Elisa Coconi & Cristan A G\u00e4nsslen\nC\u00f3rdoba, C\u00f3rdoba; Argentina", "title": "G\u00e4nsslen Wedding", "farm": "1", "date_update": "1356221115", "primary": "20981179", "server": "17", "date_create": "1146385920", "photos": "27", "secret": "ab923ae3aa", "owner": "84213819@N00", "vist_label": "wedding_party", "id": "72057594120703798"}, {"description": "", "title": "2002-11-23 - Our Wedding", "farm": "1", "date_update": "1342885924", "primary": "106261", "server": "1", "date_create": "214418", "photos": "43", "secret": "577a4396b9", "owner": "44124442333@N01", "vist_label": "wedding_party", "id": "214418"}, {"description": "On 24th March 2007 Josie and Gareth got married at Mt Cootha botanical gardens. I was the bridesmaid and Paul was the best man. Here is the proof that they are indeed now husband and wife.", "title": "Josie & Gareth's wedding", "farm": "1", "date_update": "1303589827", "primary": "433013820", "server": "136", "date_create": "1174787799", "photos": "23", "secret": "7adf0238f4", "owner": "54356819@N00", "vist_label": "wedding_party", "id": "72157600024838608"}, {"description": "11/20/2004 - Hobart Indiana", "title": "Heather and Derek's Wedding", "farm": "1", "date_update": "1298195098", "primary": "17691955", "server": "14", "date_create": "419705", "photos": "12", "secret": "757a9801d9", "owner": "79505126@N00", "vist_label": "wedding_party", "id": "419705"}, {"description": "", "title": "Maureen & Isaac's Wedding", "farm": "1", "date_update": "1356192787", "primary": "17673545", "server": "14", "date_create": "419257", "photos": "47", "secret": "0a0c259bfe", "owner": "10186531@N00", "vist_label": "wedding_party", "id": "419257"}, {"description": "My Buddys Vinay Wagh and Anuja's Marriage in Nashik", "title": "Wagh's Marriage", "farm": "1", "date_update": "1331655963", "primary": "28495155", "server": "22", "date_create": "770686", "photos": "12", "secret": "107a50a085", "owner": "98541816@N00", "vist_label": "wedding_party", "id": "770686"}, {"description": "", "title": "wedding", "farm": "1", "date_update": "1356254302", "primary": "39617091", "server": "32", "date_create": "872064", "photos": "12", "secret": "7de4fbac48", "owner": "20005495@N00", "vist_label": "wedding_party", "id": "872064"}, {"description": "September 16, 2005 in Westminster CA", "title": "Steve and Keri's Wedding Party", "farm": "1", "date_update": "1356507293", "primary": "43975069", "server": "28", "date_create": "962352", "photos": "15", "secret": "500ccde651", "owner": "51035665745@N01", "vist_label": "wedding_party", "id": "962352"}, {"description": "", "title": "matt and jaclyn's wedding", "farm": "1", "date_update": "1343770960", "primary": "58211848", "server": "28", "date_create": "1130799697", "photos": "36", "secret": "f349c444ab", "owner": "30157683@N00", "vist_label": "wedding_party", "id": "1260032"}, {"description": "Kaysha's birthday (Part III)", "title": "Party Mofo : L'etage, 26.jan.06", "farm": "1", "date_update": "1298106822", "primary": "93888155", "server": "32", "date_create": "1138765777", "photos": "26", "secret": "c61562755f", "owner": "26487906@N00", "vist_label": "wedding_party", "id": "72057594057255637"}, {"description": "Fun times for my 26th birthday with a Pimp 'n' Ho theme and mandatory costumes... :D", "title": "My 26th Birthday (10/04/02)", "farm": "1", "date_update": "1351019366", "primary": "91647416", "server": "16", "date_create": "1141076217", "photos": "16", "secret": "ed63a72c07", "owner": "83477886@N00", "vist_label": "wedding_party", "id": "72057594071585364"}, {"description": "The Ryan-Cunningham wedding, February 19, 2006.", "title": "Mr. & Mrs. Cunningham", "farm": "1", "date_update": "1356219275", "primary": "103596692", "server": "40", "date_create": "1140758536", "photos": "46", "secret": "84321ed02e", "owner": "78199693@N00", "vist_label": "wedding_party", "id": "72057594069417750"}, {"description": "", "title": "Mike's Wedding", "farm": "1", "date_update": "1420944225", "primary": "117995099", "server": "35", "date_create": "1143356860", "photos": "33", "secret": "6dd401a9e8", "owner": "83798395@N00", "vist_label": "wedding_party", "id": "72057594090741088"}, {"description": "Mez and Schwa's Wedding, Halloween 2003", "title": "Our Wedding - 10/31/2003", "farm": "1", "date_update": "1296937428", "primary": "116077098", "server": "49", "date_create": "1142985915", "photos": "44", "secret": "b998794853", "owner": "30016075@N00", "vist_label": "wedding_party", "id": "72057594087647761"}, {"description": "", "title": "Michael+May's wedding shower", "farm": "1", "date_update": "1297541927", "primary": "130616009", "server": "47", "date_create": "1145336905", "photos": "21", "secret": "708fc67dea", "owner": "61259778@N00", "vist_label": "wedding_party", "id": "72057594110155809"}, {"description": "", "title": "Wedding - Greenblatt", "farm": "1", "date_update": "1313179804", "primary": "135754246", "server": "55", "date_create": "1191780026", "photos": "24", "secret": "8d5ea14cc8", "owner": "33644713@N00", "vist_label": "wedding_party", "id": "72157602307184121"}, {"description": "My close friend Jana Johnston married Shawn Lewans on May 13, 2006.", "title": "Jana's Wedding 2006", "farm": "1", "date_update": "1433307872", "primary": "147774706", "server": "47", "date_create": "1147813037", "photos": "19", "secret": "4d83cfe67a", "owner": "49169223@N00", "vist_label": "wedding_party", "id": "72057594136895808"}, {"description": "", "title": "Menai and Peter's wedding", "farm": "1", "date_update": "1416165680", "primary": "160921195", "server": "69", "date_create": "1149520485", "photos": "19", "secret": "c09af32991", "owner": "84371026@N00", "vist_label": "wedding_party", "id": "72157594156380350"}, {"description": "March 17, 2006\n\nEdited down from about 830 photos ... I'll let Nova post the shots of her and the ladies!", "title": "The Wedding", "farm": "1", "date_update": "1356416379", "primary": "185024491", "server": "70", "date_create": "1152395626", "photos": "22", "secret": "339e6a689a", "owner": "20417698@N00", "vist_label": "wedding_party", "id": "72157594192099361"}, {"description": "The west coast wedding shower for Michelle & Neil, held at Elizabeth & Brian's Canyon Compound. Games, food, and a self-heating table!", "title": "Michelle & Neil's wedding shower", "farm": "1", "date_update": "1305750136", "primary": "186187927", "server": "74", "date_create": "1152511962", "photos": "21", "secret": "06a2fbc5f0", "owner": "39506296@N00", "vist_label": "wedding_party", "id": "72157594193720935"}, {"description": "Jon and Hallie get married on a lovely farm in McKean, Pennsylvania. All of the Erie, PA crew is here to celebrate...", "title": "Jon and Hallie's Wedding", "farm": "1", "date_update": "1297606603", "primary": "183021684", "server": "78", "date_create": "1152156187", "photos": "47", "secret": "539b4038d2", "owner": "71704061@N00", "vist_label": "wedding_party", "id": "72157594189042441"}, {"description": "", "title": "Lys and John", "farm": "1", "date_update": "1357013288", "primary": "12846413", "server": "11", "date_create": "313345", "photos": "19", "secret": "772804433e", "owner": "46727026@N00", "vist_label": "wedding_reception", "id": "313345"}, {"description": "", "title": "Janet's Wedding", "farm": "5", "date_update": "1314158858", "primary": "4683918039", "server": "4046", "date_create": "1276061251", "photos": "11", "secret": "8350b01e2f", "owner": "35269053@N00", "vist_label": "wedding_reception", "id": "72157624235889886"}, {"description": "They're married now.", "title": "Griffin and Amy", "farm": "5", "date_update": "1356199363", "primary": "4972378145", "server": "4131", "date_create": "1281418037", "photos": "15", "secret": "36b5676ccc", "owner": "86564940@N00", "vist_label": "wedding_reception", "id": "72157624568422501"}, {"description": "", "title": "Shoma weds Ken", "farm": "1", "date_update": "1356246794", "primary": "33051067", "server": "23", "date_create": "722094", "photos": "15", "secret": "47ed693178", "owner": "48600078915@N01", "vist_label": "wedding_reception", "id": "722094"}, {"description": "", "title": "Craig and Kate's Wedding", "farm": "5", "date_update": "1356193138", "primary": "4882923097", "server": "4094", "date_create": "1281561946", "photos": "20", "secret": "cb203e6706", "owner": "35891436@N03", "vist_label": "wedding_reception", "id": "72157624580453635"}, {"description": "", "title": "Ch 15 Dancing", "farm": "5", "date_update": "1345409666", "primary": "4881773714", "server": "4138", "date_create": "1281509567", "photos": "16", "secret": "be141dbcb8", "owner": "51631058@N02", "vist_label": "wedding_reception", "id": "72157624700649708"}, {"description": "", "title": "New Orleans", "farm": "4", "date_update": "1356820111", "primary": "4597490260", "server": "3379", "date_create": "1273685530", "photos": "23", "secret": "104cabdfa8", "owner": "9096412@N03", "vist_label": "wedding_reception", "id": "72157623923244977"}, {"description": "", "title": "Judy and Kevin's Wedding", "farm": "5", "date_update": "1338646494", "primary": "4707718930", "server": "4012", "date_create": "1276729943", "photos": "27", "secret": "3d400cd8ba", "owner": "85975091@N00", "vist_label": "wedding_reception", "id": "72157624166599233"}, {"description": "Here are some of the shots I took at Lisa and Lucian's nuptials... check out the ones that Monique took too!", "title": "Lisa & Lucian's Wedding in Tiburon, CA", "farm": "1", "date_update": "1297685422", "primary": "26394293", "server": "23", "date_create": "599806", "photos": "18", "secret": "8bcfaf63d6", "owner": "79391933@N00", "vist_label": "wedding_reception", "id": "599806"}, {"description": "Some scenes from Jen and Kevin's awesome wedding weekend in Boston.", "title": "Wedding Cake", "farm": "5", "date_update": "1296933491", "primary": "4287581298", "server": "4003", "date_create": "1263886972", "photos": "32", "secret": "45e2115ddc", "owner": "93129640@N00", "vist_label": "wedding_reception", "id": "72157623116067463"}, {"description": "", "title": "Jinjer's Wedding", "farm": "5", "date_update": "1356233402", "primary": "5027706594", "server": "4128", "date_create": "1285539619", "photos": "18", "secret": "3b4f513043", "owner": "59691269@N00", "vist_label": "wedding_reception", "id": "72157624915679935"}, {"description": "These are photos of my maternal grandfather, grandmother, great grandfather and great grandmother and their children and/or siblings.", "title": "Drouillard and Pare", "farm": "1", "date_update": "1300176885", "primary": "406468768", "server": "149", "date_create": "1172723807", "photos": "12", "secret": "4374d6ad03", "owner": "55744694@N00", "vist_label": "wedding_reception", "id": "72157594563077356"}, {"description": "Wedding reception for Rodel and Aurora at the Hyatt in Austin.", "title": "Wedding Reception", "farm": "1", "date_update": "1336832942", "primary": "1819233", "server": "2", "date_create": "46136", "photos": "15", "secret": "83e4f38fef", "owner": "31852867@N00", "vist_label": "wedding_reception", "id": "46136"}, {"description": "Wedding of Jerry and Faith. Wedding was at Hotel Washington. Had a great taxi driver named Ali.", "title": "Washington, DC", "farm": "1", "date_update": "1369789348", "primary": "38476933", "server": "26", "date_create": "849816", "photos": "37", "secret": "083bfff092", "owner": "22962125@N00", "vist_label": "wedding_reception", "id": "849816"}, {"description": "The BG's finally tie the knot. ", "title": "BG Wedding", "farm": "1", "date_update": "1321132650", "primary": "35765224", "server": "27", "date_create": "791186", "photos": "43", "secret": "e847e9325b", "owner": "48600108710@N01", "vist_label": "wedding_reception", "id": "791186"}, {"description": "Pete and Clare's Wedding", "title": "Pete's Wedding", "farm": "1", "date_update": "1356143979", "primary": "46773076", "server": "33", "date_create": "1044910", "photos": "25", "secret": "e2284c8109", "owner": "48978355@N00", "vist_label": "wedding_reception", "id": "1044910"}, {"description": "Friday, 16 September 2005", "title": "Sharon and Liam's Wedding", "farm": "1", "date_update": "1356139138", "primary": "44448252", "server": "31", "date_create": "975503", "photos": "42", "secret": "8fbd826a57", "owner": "98089177@N00", "vist_label": "wedding_reception", "id": "975503"}, {"description": "October 29th (rocktober) my friend Nathan Wilcox got hitched -- here are the pictures.\n\nThe usual strange mix of family and friends combined w/ all the political folks that Nate and Rosa know...", "title": "Nathan gets married", "farm": "1", "date_update": "1300524043", "primary": "57376624", "server": "25", "date_create": "1130643416", "photos": "14", "secret": "34e4b546fa", "owner": "17566754@N00", "vist_label": "wedding_reception", "id": "1242513"}, {"description": "Places we visited on 10/29/05 in Milwaukee for wedding and receptions.", "title": "Wedding scouting trip; Milwaukee; October, 2005", "farm": "1", "date_update": "1430835213", "primary": "58248134", "server": "33", "date_create": "1130804028", "photos": "21", "secret": "b5f7767117", "owner": "64183923@N00", "vist_label": "wedding_reception", "id": "1260584"}, {"description": "", "title": "Random Welsh Wedding", "farm": "1", "date_update": "1356334470", "primary": "82713046", "server": "41", "date_create": "1136505266", "photos": "24", "secret": "9b8f6177f7", "owner": "43672338@N00", "vist_label": "wedding_reception", "id": "1767427"}, {"description": "These are stills from video taken of the reception for Mr. and Mrs. James Reynolds", "title": "Reception stills from video", "farm": "1", "date_update": "1336262282", "primary": "88996277", "server": "29", "date_create": "1140659371", "photos": "25", "secret": "fa7e89dd98", "owner": "25185435@N00", "vist_label": "wedding_reception", "id": "72057594068837512"}, {"description": "", "title": "Sam & Nasha's Wedding", "farm": "6", "date_update": "1368390574", "primary": "5323678890", "server": "5127", "date_create": "1294144574", "photos": "24", "secret": "af592b8811", "owner": "27311060@N00", "vist_label": "wedding_reception", "id": "72157625619725645"}, {"description": "February 6th, 2010", "title": "Scott & Melissa Anhorn's wedding", "farm": "6", "date_update": "1332817172", "primary": "5344995855", "server": "5241", "date_create": "1294721694", "photos": "24", "secret": "8d60406968", "owner": "57134288@N00", "vist_label": "wedding_reception", "id": "72157625671844609"}, {"description": "", "title": "by Kacey", "farm": "6", "date_update": "1435242962", "primary": "5387729589", "server": "5253", "date_create": "1296076512", "photos": "21", "secret": "ff20a1cf40", "owner": "48540847@N03", "vist_label": "wedding_reception", "id": "72157625787545021"}, {"description": "scanned photos from the album\n(Rights to the photos in this album were purchased from the photographer, Melisa, of Photography by Melisa, Little Rock, Arkansas)", "title": "Laura and Hal's Wedding Album", "farm": "6", "date_update": "1343260572", "primary": "5524911804", "server": "5294", "date_create": "1300066689", "photos": "20", "secret": "2c9a8bb736", "owner": "11742958@N08", "vist_label": "wedding_reception", "id": "72157626260567448"}, {"description": "Wedding Day in DC + Celebratory Dinner at 316", "title": "Kate + Erica", "farm": "6", "date_update": "1413151619", "primary": "5644627090", "server": "5070", "date_create": "1303508360", "photos": "19", "secret": "c465dbda01", "owner": "11537264@N00", "vist_label": "wedding_reception", "id": "72157626554955140"}, {"description": "the kramers do yom kippur.", "title": "yom kippur, cherry hill 2009", "farm": "3", "date_update": "1336157716", "primary": "3964901040", "server": "2431", "date_create": "1254192347", "photos": "19", "secret": "70f58d723e", "owner": "61806676@N00", "vist_label": "yom_kippur", "id": "72157622352867975"}, {"description": "On Saturday, October 8, Occupy Wall Street gathered in Washington Square Park for a more open, less densely crowded day of conversations, street theatre, play, and growing involvement. Many of the photos here are from an open speakout. ", "title": "Occupy Wall Street in Washington Square (Day 22)", "farm": "7", "date_update": "1357085674", "primary": "6230430734", "server": "6160", "date_create": "1318246515", "photos": "12", "secret": "949311538d", "owner": "45233773@N00", "vist_label": "yom_kippur", "id": "72157627860505746"}, {"description": "", "title": "Kol Nidre at Occupy Boston", "farm": "7", "date_update": "1419570709", "primary": "6230553392", "server": "6215", "date_create": "1318249936", "photos": "27", "secret": "679eaf1980", "owner": "21500986@N03", "vist_label": "yom_kippur", "id": "72157627860827386"}], "type": "story-in-sequence", "annotations": [[{"original_text": "The local parish holds a craft show each year.", "album_id": "44277", "photo_flickr_id": "1741642", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "45530", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the local parish holds a craft show each year .", "storylet_id": "227650"}], [{"original_text": "Lots of folks come out and set up tables to sell their crafts.", "album_id": "44277", "photo_flickr_id": "1741640", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "45530", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of folks come out and set up tables to sell their crafts .", "storylet_id": "227651"}], [{"original_text": "Some of these crafts are very unique and take a lot of talent to make.", "album_id": "44277", "photo_flickr_id": "1741632", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "45530", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of these crafts are very unique and take a lot of talent to make .", "storylet_id": "227652"}], [{"original_text": "Folks of all ages come out to peruse the crafts for sale.", "album_id": "44277", "photo_flickr_id": "1741622", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "45530", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "folks of all ages come out to peruse the crafts for sale .", "storylet_id": "227653"}], [{"original_text": "Some of the crafters even dress up in unique costumes as part of their selling act.", "album_id": "44277", "photo_flickr_id": "1741587", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "45530", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the crafters even dress up in unique costumes as part of their selling act .", "storylet_id": "227654"}], [{"original_text": "I was so excited to be heading to the crafts fair. ", "album_id": "44277", "photo_flickr_id": "1741625", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "45531", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was so excited to be heading to the crafts fair .", "storylet_id": "227655"}], [{"original_text": "When I arrived I saw a great booth with a variety of great crafts.", "album_id": "44277", "photo_flickr_id": "1741640", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "45531", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when i arrived i saw a great booth with a variety of great crafts .", "storylet_id": "227656"}], [{"original_text": "I stopped at chatted at my friend Beth's booth for a bit. ", "album_id": "44277", "photo_flickr_id": "1741639", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "45531", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i stopped at chatted at my friend [female] 's booth for a bit .", "storylet_id": "227657"}], [{"original_text": "There were even booths set up for all of the kids. ", "album_id": "44277", "photo_flickr_id": "1741633", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "45531", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were even booths set up for all of the kids .", "storylet_id": "227658"}], [{"original_text": "I found some awesome crafts at the fair, I'm really happy that I went. ", "album_id": "44277", "photo_flickr_id": "1741630", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "45531", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i found some awesome crafts at the fair , i 'm really happy that i went .", "storylet_id": "227659"}], [{"original_text": "The church is old, but it has a nice history.", "album_id": "44277", "photo_flickr_id": "1741642", "setting": "last-3-pick-old-and-tell", "worker_id": "351958JM3YVRMQL", "story_id": "45532", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the church is old , but it has a nice history .", "storylet_id": "227660"}], [{"original_text": "They display this history during the afternoon.", "album_id": "44277", "photo_flickr_id": "1741640", "setting": "last-3-pick-old-and-tell", "worker_id": "351958JM3YVRMQL", "story_id": "45532", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they display this history during the afternoon .", "storylet_id": "227661"}], [{"original_text": "Some books even talk about Africa.", "album_id": "44277", "photo_flickr_id": "1741632", "setting": "last-3-pick-old-and-tell", "worker_id": "351958JM3YVRMQL", "story_id": "45532", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some books even talk about location .", "storylet_id": "227662"}], [{"original_text": "The older members of the church remember these things.", "album_id": "44277", "photo_flickr_id": "1741622", "setting": "last-3-pick-old-and-tell", "worker_id": "351958JM3YVRMQL", "story_id": "45532", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the older members of the church remember these things .", "storylet_id": "227663"}], [{"original_text": "It makes them sad.", "album_id": "44277", "photo_flickr_id": "1741587", "setting": "last-3-pick-old-and-tell", "worker_id": "351958JM3YVRMQL", "story_id": "45532", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it makes them sad .", "storylet_id": "227664"}], [{"original_text": "The people arrived to get ready for the craft fair.", "album_id": "44277", "photo_flickr_id": "1741625", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "45533", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people arrived to get ready for the craft fair .", "storylet_id": "227665"}], [{"original_text": "The various merchants set up their booths.", "album_id": "44277", "photo_flickr_id": "1741640", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "45533", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the various merchants set up their booths .", "storylet_id": "227666"}], [{"original_text": "The different merchants got together to talk before people began to arrive.", "album_id": "44277", "photo_flickr_id": "1741639", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "45533", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the different merchants got together to talk before people began to arrive .", "storylet_id": "227667"}], [{"original_text": "Even the kids got to make some crafts.", "album_id": "44277", "photo_flickr_id": "1741633", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "45533", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the kids got to make some crafts .", "storylet_id": "227668"}], [{"original_text": "Everyone is set up and ready for the craft fair.", "album_id": "44277", "photo_flickr_id": "1741630", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "45533", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone is set up and ready for the craft fair .", "storylet_id": "227669"}], [{"original_text": "The annual Victorian craft fair was hosted at The Parish Church of St. Andrew and St George again this year.", "album_id": "44277", "photo_flickr_id": "1741642", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "45534", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the annual victorian craft fair was hosted at the parish church of location location and organization organization again this year .", "storylet_id": "227670"}], [{"original_text": "Vendors came from all over the state to show off their crafts.", "album_id": "44277", "photo_flickr_id": "1741640", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "45534", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "vendors came from all over the state to show off their crafts .", "storylet_id": "227671"}], [{"original_text": "There was a large variety of pictures and decor.", "album_id": "44277", "photo_flickr_id": "1741632", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "45534", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a large variety of pictures and decor .", "storylet_id": "227672"}], [{"original_text": "Even Mr Thomas made an appearance.", "album_id": "44277", "photo_flickr_id": "1741622", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "45534", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even mr [male] made an appearance .", "storylet_id": "227673"}], [{"original_text": "He brought along one of his bird toys to wow the visitors. Everyone always loves him.", "album_id": "44277", "photo_flickr_id": "1741587", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "45534", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he brought along one of his bird toys to wow the visitors . everyone always loves him .", "storylet_id": "227674"}], [{"original_text": "The family takes a trip to the local carnival.", "album_id": "8139", "photo_flickr_id": "355137", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "45535", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family takes a trip to the local carnival .", "storylet_id": "227675"}], [{"original_text": "There are lots of rides to enjoy this year.", "album_id": "8139", "photo_flickr_id": "355139", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "45535", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are lots of rides to enjoy this year .", "storylet_id": "227676"}], [{"original_text": "There are even rides for folks as young as this small boy.", "album_id": "8139", "photo_flickr_id": "355142", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "45535", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are even rides for folks as young as this small boy .", "storylet_id": "227677"}], [{"original_text": "There are also lots of games and prizes to win.", "album_id": "8139", "photo_flickr_id": "355331", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "45535", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are also lots of games and prizes to win .", "storylet_id": "227678"}], [{"original_text": "Although some of the games seem fixed and a waste of money.", "album_id": "8139", "photo_flickr_id": "355332", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "45535", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "although some of the games seem fixed and a waste of money .", "storylet_id": "227679"}], [{"original_text": "Mom decided to take her daughter to the carnival.", "album_id": "8139", "photo_flickr_id": "355204", "setting": "first-2-pick-and-tell", "worker_id": "X95Y0LFMO9I4QHC", "story_id": "45536", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom decided to take her daughter to the carnival .", "storylet_id": "227680"}], [{"original_text": "They rode a lot of rides.", "album_id": "8139", "photo_flickr_id": "355205", "setting": "first-2-pick-and-tell", "worker_id": "X95Y0LFMO9I4QHC", "story_id": "45536", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they rode a lot of rides .", "storylet_id": "227681"}], [{"original_text": "Their favorite was the dragon ship.", "album_id": "8139", "photo_flickr_id": "355208", "setting": "first-2-pick-and-tell", "worker_id": "X95Y0LFMO9I4QHC", "story_id": "45536", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their favorite was the dragon ship .", "storylet_id": "227682"}], [{"original_text": "Then they spent some time trying to win stuffed animals.", "album_id": "8139", "photo_flickr_id": "355331", "setting": "first-2-pick-and-tell", "worker_id": "X95Y0LFMO9I4QHC", "story_id": "45536", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they spent some time trying to win stuffed animals .", "storylet_id": "227683"}], [{"original_text": "It was a great day!", "album_id": "8139", "photo_flickr_id": "355332", "setting": "first-2-pick-and-tell", "worker_id": "X95Y0LFMO9I4QHC", "story_id": "45536", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great day !", "storylet_id": "227684"}], [{"original_text": "We had an exciting day at the fair!", "album_id": "8139", "photo_flickr_id": "355204", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "45537", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had an exciting day at the fair !", "storylet_id": "227685"}], [{"original_text": "The lights lit up the night and the rides made us all dizzy.", "album_id": "8139", "photo_flickr_id": "355205", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "45537", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lights lit up the night and the rides made us all dizzy .", "storylet_id": "227686"}], [{"original_text": "The dragon coaster was mom's favorite. ", "album_id": "8139", "photo_flickr_id": "355208", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "45537", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dragon coaster was mom 's favorite .", "storylet_id": "227687"}], [{"original_text": "The arcade games had the funniest stuffed monkeys as prizes.", "album_id": "8139", "photo_flickr_id": "355331", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "45537", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the arcade games had the funniest stuffed monkeys as prizes .", "storylet_id": "227688"}], [{"original_text": "We threw a million darts trying to win one!", "album_id": "8139", "photo_flickr_id": "355332", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "45537", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we threw a million darts trying to win one !", "storylet_id": "227689"}], [{"original_text": "The family got together to go to the fair.", "album_id": "8139", "photo_flickr_id": "355137", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "45538", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family got together to go to the fair .", "storylet_id": "227690"}], [{"original_text": "When they arrived they saw some airplanes in the back of a truck.", "album_id": "8139", "photo_flickr_id": "355139", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "45538", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when they arrived they saw some airplanes in the back of a truck .", "storylet_id": "227691"}], [{"original_text": "The kids had a hard time deciding what to ride first.", "album_id": "8139", "photo_flickr_id": "355142", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "45538", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids had a hard time deciding what to ride first .", "storylet_id": "227692"}], [{"original_text": "Then they played some games to win prizes.", "album_id": "8139", "photo_flickr_id": "355331", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "45538", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they played some games to win prizes .", "storylet_id": "227693"}], [{"original_text": "Finally they played the dart game.", "album_id": "8139", "photo_flickr_id": "355332", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "45538", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally they played the dart game .", "storylet_id": "227694"}], [{"original_text": "Susan and Shelly are having a great time at the carnival on the rides.", "album_id": "8139", "photo_flickr_id": "355204", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "45539", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [female] are having a great time at the carnival on the rides .", "storylet_id": "227695"}], [{"original_text": "Whoa, exclaims Susan and Shelly as the ride speeds up and goes faster.", "album_id": "8139", "photo_flickr_id": "355205", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "45539", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "whoa , exclaims [female] and [female] as the ride speeds up and goes faster .", "storylet_id": "227696"}], [{"original_text": "Now onto the dragon ride. Susan and Shelly are having a blast. ", "album_id": "8139", "photo_flickr_id": "355208", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "45539", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now onto the dragon ride . [female] and [female] are having a blast .", "storylet_id": "227697"}], [{"original_text": "Susan tries to win a stuffed prize for Shelly. She knows that Shelly loves Monkeys.", "album_id": "8139", "photo_flickr_id": "355331", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "45539", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] tries to win a stuffed prize for [female] . she knows that [female] loves monkeys .", "storylet_id": "227698"}], [{"original_text": "Susan and Shelly notice another family playing another type of prize game and decides to try it out when they are finished before leaving the carnival.", "album_id": "8139", "photo_flickr_id": "355332", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "45539", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] and [female] notice another family playing another type of prize game and decides to try it out when they are finished before leaving the carnival .", "storylet_id": "227699"}], [{"original_text": "The Japanese Tech Show had toys and gadgets for everyone.", "album_id": "504823", "photo_flickr_id": "21725505", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45540", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the japanese tech show had toys and gadgets for everyone .", "storylet_id": "227700"}], [{"original_text": "A robot that looked like a seal was used for autism research.", "album_id": "504823", "photo_flickr_id": "21728852", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45540", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a robot that looked like a seal was used for autism research .", "storylet_id": "227701"}], [{"original_text": "Segways were redesigned to be more efficient.", "album_id": "504823", "photo_flickr_id": "21731442", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45540", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "segways were redesigned to be more efficient .", "storylet_id": "227702"}], [{"original_text": "Pint sized robots roamed the tables.", "album_id": "504823", "photo_flickr_id": "21734444", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45540", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "pint sized robots roamed the tables .", "storylet_id": "227703"}], [{"original_text": "And child sized robots left everyone in awe.", "album_id": "504823", "photo_flickr_id": "21728853", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45540", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and child sized robots left everyone in awe .", "storylet_id": "227704"}], [{"original_text": "Checking out a car at the car show", "album_id": "504823", "photo_flickr_id": "21725505", "setting": "first-2-pick-and-tell", "worker_id": "6MBESC61J7LA10C", "story_id": "45541", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "checking out a car at the car show", "storylet_id": "227705"}], [{"original_text": "the cat is is laying on the table next to 2 crystal shot glasses", "album_id": "504823", "photo_flickr_id": "21725502", "setting": "first-2-pick-and-tell", "worker_id": "6MBESC61J7LA10C", "story_id": "45541", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cat is is laying on the table next to 2 crystal shot glasses", "storylet_id": "227706"}], [{"original_text": "A modern compact type of boat at a display that resembles a plane", "album_id": "504823", "photo_flickr_id": "21725504", "setting": "first-2-pick-and-tell", "worker_id": "6MBESC61J7LA10C", "story_id": "45541", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a modern compact type of boat at a display that resembles a plane", "storylet_id": "227707"}], [{"original_text": "A boy happily standing next to a robot a display", "album_id": "504823", "photo_flickr_id": "21728853", "setting": "first-2-pick-and-tell", "worker_id": "6MBESC61J7LA10C", "story_id": "45541", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a boy happily standing next to a robot a display", "storylet_id": "227708"}], [{"original_text": "Stirring the big bowl of soup in a colorful bowl with a red spoon", "album_id": "504823", "photo_flickr_id": "21725506", "setting": "first-2-pick-and-tell", "worker_id": "6MBESC61J7LA10C", "story_id": "45541", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "stirring the big bowl of soup in a colorful bowl with a red spoon", "storylet_id": "227709"}], [{"original_text": "We went to a science show and saw some of the new inventions.", "album_id": "504823", "photo_flickr_id": "21725505", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "45542", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a science show and saw some of the new inventions .", "storylet_id": "227710"}], [{"original_text": "Including some stuffed animals.", "album_id": "504823", "photo_flickr_id": "21728852", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "45542", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "including some stuffed animals .", "storylet_id": "227711"}], [{"original_text": "Segways were everywhere.", "album_id": "504823", "photo_flickr_id": "21731442", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "45542", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "segways were everywhere .", "storylet_id": "227712"}], [{"original_text": "There were also robots.", "album_id": "504823", "photo_flickr_id": "21734444", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "45542", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also robots .", "storylet_id": "227713"}], [{"original_text": "Some of the robots were as big as children.", "album_id": "504823", "photo_flickr_id": "21728853", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "45542", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the robots were as big as children .", "storylet_id": "227714"}], [{"original_text": "We went to an technology show.", "album_id": "504823", "photo_flickr_id": "21725505", "setting": "last-3-pick-old-and-tell", "worker_id": "U8V1GQJYW47YWYS", "story_id": "45543", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to an technology show .", "storylet_id": "227715"}], [{"original_text": "They had some unusual things.", "album_id": "504823", "photo_flickr_id": "21728852", "setting": "last-3-pick-old-and-tell", "worker_id": "U8V1GQJYW47YWYS", "story_id": "45543", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had some unusual things .", "storylet_id": "227716"}], [{"original_text": "My dad liked this scooter thing.", "album_id": "504823", "photo_flickr_id": "21731442", "setting": "last-3-pick-old-and-tell", "worker_id": "U8V1GQJYW47YWYS", "story_id": "45543", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my dad liked this scooter thing .", "storylet_id": "227717"}], [{"original_text": "There were lots of small robots.", "album_id": "504823", "photo_flickr_id": "21734444", "setting": "last-3-pick-old-and-tell", "worker_id": "U8V1GQJYW47YWYS", "story_id": "45543", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were lots of small robots .", "storylet_id": "227718"}], [{"original_text": "There were some bi robots too.", "album_id": "504823", "photo_flickr_id": "21728853", "setting": "last-3-pick-old-and-tell", "worker_id": "U8V1GQJYW47YWYS", "story_id": "45543", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were some bi robots too .", "storylet_id": "227719"}], [{"original_text": "Today's convention involved a bunch of new technology. ", "album_id": "504823", "photo_flickr_id": "21725505", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "45544", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today 's convention involved a bunch of new technology .", "storylet_id": "227720"}], [{"original_text": "Electronic seals dazzled the attendees. ", "album_id": "504823", "photo_flickr_id": "21728852", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "45544", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "electronic seals dazzled the attendees .", "storylet_id": "227721"}], [{"original_text": "A man on a Segway showed off some tricks he had been working on for years.", "album_id": "504823", "photo_flickr_id": "21731442", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "45544", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man on a segway showed off some tricks he had been working on for years .", "storylet_id": "227722"}], [{"original_text": "A small robot stood on a table and talked trash to people walking by. ", "album_id": "504823", "photo_flickr_id": "21734444", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "45544", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a small robot stood on a table and talked trash to people walking by .", "storylet_id": "227723"}], [{"original_text": "An even bigger robot walked around taking pictures with attendees until it was shut down. ", "album_id": "504823", "photo_flickr_id": "21728853", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "45544", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "an even bigger robot walked around taking pictures with attendees until it was shut down .", "storylet_id": "227724"}], [{"original_text": "The family sits together for dinner on the first night of the annual reunion.", "album_id": "72157607155047588", "photo_flickr_id": "2835098587", "setting": "first-2-pick-and-tell", "worker_id": "2PS0R3Q5Z2O1X3Z", "story_id": "45545", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family sits together for dinner on the first night of the annual reunion .", "storylet_id": "227725"}], [{"original_text": "The restaurant we chose had amazing food and everyone loved the presentation.", "album_id": "72157607155047588", "photo_flickr_id": "2835095703", "setting": "first-2-pick-and-tell", "worker_id": "2PS0R3Q5Z2O1X3Z", "story_id": "45545", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the restaurant we chose had amazing food and everyone loved the presentation .", "storylet_id": "227726"}], [{"original_text": "Gemma really adored the restaurants decorations and was always gazing at them.", "album_id": "72157607155047588", "photo_flickr_id": "2835084931", "setting": "first-2-pick-and-tell", "worker_id": "2PS0R3Q5Z2O1X3Z", "story_id": "45545", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "gemma really adored the restaurants decorations and was always gazing at them .", "storylet_id": "227727"}], [{"original_text": "Aunt Harriot had a little trouble deciding what kind of wine she wanted tonight.", "album_id": "72157607155047588", "photo_flickr_id": "2835924200", "setting": "first-2-pick-and-tell", "worker_id": "2PS0R3Q5Z2O1X3Z", "story_id": "45545", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "aunt harriot had a little trouble deciding what kind of wine she wanted tonight .", "storylet_id": "227728"}], [{"original_text": "Bob had the whole family cracking up with his jokes.", "album_id": "72157607155047588", "photo_flickr_id": "2835079599", "setting": "first-2-pick-and-tell", "worker_id": "2PS0R3Q5Z2O1X3Z", "story_id": "45545", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] had the whole family cracking up with his jokes .", "storylet_id": "227729"}], [{"original_text": "The family reunion had plenty of long-awaited greetings to start.", "album_id": "72157607155047588", "photo_flickr_id": "2835917750", "setting": "first-2-pick-and-tell", "worker_id": "CJIT617JFF3EZRW", "story_id": "45546", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family reunion had plenty of long-awaited greetings to start .", "storylet_id": "227730"}], [{"original_text": "Eventually, we all filled each other in with deep conversation...", "album_id": "72157607155047588", "photo_flickr_id": "2835923100", "setting": "first-2-pick-and-tell", "worker_id": "CJIT617JFF3EZRW", "story_id": "45546", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "eventually , we all filled each other in with deep conversation ...", "storylet_id": "227731"}], [{"original_text": "Some of us were quite happy to see one another.", "album_id": "72157607155047588", "photo_flickr_id": "2835931462", "setting": "first-2-pick-and-tell", "worker_id": "CJIT617JFF3EZRW", "story_id": "45546", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of us were quite happy to see one another .", "storylet_id": "227732"}], [{"original_text": "Of course, we filled our bellies with hearty food.", "album_id": "72157607155047588", "photo_flickr_id": "2835095703", "setting": "first-2-pick-and-tell", "worker_id": "CJIT617JFF3EZRW", "story_id": "45546", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course , we filled our bellies with hearty food .", "storylet_id": "227733"}], [{"original_text": "What better way to celebrate family than over a delicious meal?", "album_id": "72157607155047588", "photo_flickr_id": "2835098587", "setting": "first-2-pick-and-tell", "worker_id": "CJIT617JFF3EZRW", "story_id": "45546", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what better way to celebrate family than over a delicious meal ?", "storylet_id": "227734"}], [{"original_text": "We all got together for my parents aniversary.", "album_id": "72157607155047588", "photo_flickr_id": "2835098587", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45547", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all got together for my parents aniversary .", "storylet_id": "227735"}], [{"original_text": "We had amazing steak to celebrate.", "album_id": "72157607155047588", "photo_flickr_id": "2835095703", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45547", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had amazing steak to celebrate .", "storylet_id": "227736"}], [{"original_text": "We had a few making speeches and be funny.", "album_id": "72157607155047588", "photo_flickr_id": "2835084931", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45547", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a few making speeches and be funny .", "storylet_id": "227737"}], [{"original_text": "There was a few sentimental moments thrown in.", "album_id": "72157607155047588", "photo_flickr_id": "2835924200", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45547", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a few sentimental moments thrown in .", "storylet_id": "227738"}], [{"original_text": "Then it quickly turned funny again.", "album_id": "72157607155047588", "photo_flickr_id": "2835079599", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45547", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then it quickly turned funny again .", "storylet_id": "227739"}], [{"original_text": "A look down the table at our family gathering.", "album_id": "72157607155047588", "photo_flickr_id": "2835098587", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45548", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a look down the table at our family gathering .", "storylet_id": "227740"}], [{"original_text": "The food looked amazing at the meal.", "album_id": "72157607155047588", "photo_flickr_id": "2835095703", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45548", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the food looked amazing at the meal .", "storylet_id": "227741"}], [{"original_text": "Mom and Dad seemed to be having a wonderful time.", "album_id": "72157607155047588", "photo_flickr_id": "2835084931", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45548", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom and dad seemed to be having a wonderful time .", "storylet_id": "227742"}], [{"original_text": "Carol starred deeply into the wine bottle.", "album_id": "72157607155047588", "photo_flickr_id": "2835924200", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45548", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] starred deeply into the wine bottle .", "storylet_id": "227743"}], [{"original_text": "Dad cracked one of his famous dirty jokes.", "album_id": "72157607155047588", "photo_flickr_id": "2835079599", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45548", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dad cracked one of his famous dirty jokes .", "storylet_id": "227744"}], [{"original_text": "It was a family get together.", "album_id": "72157607155047588", "photo_flickr_id": "2835098587", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "45549", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a family get together .", "storylet_id": "227745"}], [{"original_text": "They even had fancy nice steak and tacos.", "album_id": "72157607155047588", "photo_flickr_id": "2835095703", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "45549", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they even had fancy nice steak and tacos .", "storylet_id": "227746"}], [{"original_text": "Jenny laughs at a joke her sister told her.", "album_id": "72157607155047588", "photo_flickr_id": "2835084931", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "45549", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] laughs at a joke her sister told her .", "storylet_id": "227747"}], [{"original_text": "The family is having a wonderful time together.", "album_id": "72157607155047588", "photo_flickr_id": "2835924200", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "45549", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family is having a wonderful time together .", "storylet_id": "227748"}], [{"original_text": "Sharing so many memories and laughs together.", "album_id": "72157607155047588", "photo_flickr_id": "2835079599", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "45549", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sharing so many memories and laughs together .", "storylet_id": "227749"}], [{"original_text": "Today I painted Becky's fingernails. ", "album_id": "72157605016116512", "photo_flickr_id": "2485114971", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45550", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i painted [female] 's fingernails .", "storylet_id": "227750"}], [{"original_text": "Then she got to blow out her Birthday candles and eat cake! ", "album_id": "72157605016116512", "photo_flickr_id": "2485114341", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45550", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then she got to blow out her birthday candles and eat cake !", "storylet_id": "227751"}], [{"original_text": "Later on we looked at her old baby pictures. ", "album_id": "72157605016116512", "photo_flickr_id": "2485854685", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45550", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "later on we looked at her old baby pictures .", "storylet_id": "227752"}], [{"original_text": "She loved this one of her making her angry face. ", "album_id": "72157605016116512", "photo_flickr_id": "2485855255", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45550", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she loved this one of her making her angry face .", "storylet_id": "227753"}], [{"original_text": "This was her favorite though. She thought she looked like a princess. We sat looking at old pictures eating cake for the rest of the evening. ", "album_id": "72157605016116512", "photo_flickr_id": "2485855917", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45550", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was her favorite though . she thought she looked like a princess . we sat looking at old pictures eating cake for the rest of the evening .", "storylet_id": "227754"}], [{"original_text": "My daughter had her nails painted.", "album_id": "72157605016116512", "photo_flickr_id": "2485114971", "setting": "first-2-pick-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45551", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my daughter had her nails painted .", "storylet_id": "227755"}], [{"original_text": "We went for a walk down the beach.", "album_id": "72157605016116512", "photo_flickr_id": "2486729724", "setting": "first-2-pick-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45551", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went for a walk down the beach .", "storylet_id": "227756"}], [{"original_text": "It was her birthday that day so we got her a big cake. ", "album_id": "72157605016116512", "photo_flickr_id": "2485114341", "setting": "first-2-pick-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45551", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was her birthday that day so we got her a big cake .", "storylet_id": "227757"}], [{"original_text": "she made a duck-face which made us think she was angry. ", "album_id": "72157605016116512", "photo_flickr_id": "2485855255", "setting": "first-2-pick-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45551", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she made a duck-face which made us think she was angry .", "storylet_id": "227758"}], [{"original_text": "In reality, she was happy. ", "album_id": "72157605016116512", "photo_flickr_id": "2485855917", "setting": "first-2-pick-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45551", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in reality , she was happy .", "storylet_id": "227759"}], [{"original_text": "Started the day off by painting her nails.", "album_id": "72157605016116512", "photo_flickr_id": "2485114971", "setting": "last-3-pick-old-and-tell", "worker_id": "INF0V25LKGZN5U2", "story_id": "45552", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "started the day off by painting her nails .", "storylet_id": "227760"}], [{"original_text": "Enjoying the beach with her father and brother.", "album_id": "72157605016116512", "photo_flickr_id": "2486729724", "setting": "last-3-pick-old-and-tell", "worker_id": "INF0V25LKGZN5U2", "story_id": "45552", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "enjoying the beach with her father and brother .", "storylet_id": "227761"}], [{"original_text": "Blowing out the candles of her birthday cake.", "album_id": "72157605016116512", "photo_flickr_id": "2485114341", "setting": "last-3-pick-old-and-tell", "worker_id": "INF0V25LKGZN5U2", "story_id": "45552", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "blowing out the candles of her birthday cake .", "storylet_id": "227762"}], [{"original_text": "Birthday girl having a moment of anger.", "album_id": "72157605016116512", "photo_flickr_id": "2485855255", "setting": "last-3-pick-old-and-tell", "worker_id": "INF0V25LKGZN5U2", "story_id": "45552", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "birthday girl having a moment of anger .", "storylet_id": "227763"}], [{"original_text": "Her face quickly changes to a smile.", "album_id": "72157605016116512", "photo_flickr_id": "2485855917", "setting": "last-3-pick-old-and-tell", "worker_id": "INF0V25LKGZN5U2", "story_id": "45552", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her face quickly changes to a smile .", "storylet_id": "227764"}], [{"original_text": "We painted Liz's fingernails and toenails before her party, and she wore her nice new clothes.", "album_id": "72157605016116512", "photo_flickr_id": "2485114971", "setting": "last-3-pick-old-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "45553", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we painted liz 's fingernails and toenails before her party , and she wore her nice new clothes .", "storylet_id": "227765"}], [{"original_text": "When the party happened, she was most excited about her cake.", "album_id": "72157605016116512", "photo_flickr_id": "2485114341", "setting": "last-3-pick-old-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "45553", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when the party happened , she was most excited about her cake .", "storylet_id": "227766"}], [{"original_text": "Later that day we tried to take her picture, but she kept making funny faces.", "album_id": "72157605016116512", "photo_flickr_id": "2485854685", "setting": "last-3-pick-old-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "45553", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "later that day we tried to take her picture , but she kept making funny faces .", "storylet_id": "227767"}], [{"original_text": "She was a little tired, and didn't want her picture taken.", "album_id": "72157605016116512", "photo_flickr_id": "2485855255", "setting": "last-3-pick-old-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "45553", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was a little tired , and did n't want her picture taken .", "storylet_id": "227768"}], [{"original_text": "We did get one great shot, though.", "album_id": "72157605016116512", "photo_flickr_id": "2485855917", "setting": "last-3-pick-old-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "45553", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we did get one great shot , though .", "storylet_id": "227769"}], [{"original_text": "The family decided to take a beach vacation to celebrate their daughter's birthday. Up first: pedicures!", "album_id": "72157605016116512", "photo_flickr_id": "2485114971", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "45554", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family decided to take a beach vacation to celebrate their daughter 's birthday . up first : pedicures !", "storylet_id": "227770"}], [{"original_text": "Dad and the kids took a walk under the boardwalk while mom decorated.", "album_id": "72157605016116512", "photo_flickr_id": "2486729724", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "45554", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dad and the kids took a walk under the boardwalk while mom decorated .", "storylet_id": "227771"}], [{"original_text": "The girl blew out her candles and made a wish.", "album_id": "72157605016116512", "photo_flickr_id": "2485114341", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "45554", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girl blew out her candles and made a wish .", "storylet_id": "227772"}], [{"original_text": "But the puppy she wished for never showed. This made her sad.", "album_id": "72157605016116512", "photo_flickr_id": "2485855255", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "45554", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but the puppy she wished for never showed . this made her sad .", "storylet_id": "227773"}], [{"original_text": "She cheered up after opening up presents.", "album_id": "72157605016116512", "photo_flickr_id": "2485855917", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "45554", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she cheered up after opening up presents .", "storylet_id": "227774"}], [{"original_text": "We went to the stadium early to eat and sight see before the game.", "album_id": "72157644777317969", "photo_flickr_id": "14443472923", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "45555", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the stadium early to eat and sight see before the game .", "storylet_id": "227775"}], [{"original_text": "The view was incredible. You could see the entire city.", "album_id": "72157644777317969", "photo_flickr_id": "14443473773", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "45555", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view was incredible . you could see the entire city .", "storylet_id": "227776"}], [{"original_text": "We got to our seats, and couldn't believe how close to the field they were", "album_id": "72157644777317969", "photo_flickr_id": "14236702198", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "45555", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got to our seats , and could n't believe how close to the field they were", "storylet_id": "227777"}], [{"original_text": "We could see all the action.", "album_id": "72157644777317969", "photo_flickr_id": "14236701078", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "45555", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we could see all the action .", "storylet_id": "227778"}], [{"original_text": "Once the national anthem was sung, and the first pitch was thrown, the excitement began. It was a great game!", "album_id": "72157644777317969", "photo_flickr_id": "14423296985", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "45555", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once the national anthem was sung , and the first pitch was thrown , the excitement began . it was a great game !", "storylet_id": "227779"}], [{"original_text": "I took the family to a baseball game and we saw this awesome car before the game, that you had a chance to win in a raffle.", "album_id": "72157644777317969", "photo_flickr_id": "14423298935", "setting": "first-2-pick-and-tell", "worker_id": "RV57GPD9FE0X4EV", "story_id": "45556", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took the family to a baseball game and we saw this awesome car before the game , that you had a chance to win in a raffle .", "storylet_id": "227780"}], [{"original_text": "We were lucky enough to get to the game early and our seats were amazing.", "album_id": "72157644777317969", "photo_flickr_id": "14422160704", "setting": "first-2-pick-and-tell", "worker_id": "RV57GPD9FE0X4EV", "story_id": "45556", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were lucky enough to get to the game early and our seats were amazing .", "storylet_id": "227781"}], [{"original_text": "Of course we had to get a family selfie during the game.", "album_id": "72157644777317969", "photo_flickr_id": "14419942051", "setting": "first-2-pick-and-tell", "worker_id": "RV57GPD9FE0X4EV", "story_id": "45556", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course we had to get a family selfie during the game .", "storylet_id": "227782"}], [{"original_text": "The scoreboard was so huge, I had to get a photo of it.", "album_id": "72157644777317969", "photo_flickr_id": "14423296985", "setting": "first-2-pick-and-tell", "worker_id": "RV57GPD9FE0X4EV", "story_id": "45556", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the scoreboard was so huge , i had to get a photo of it .", "storylet_id": "227783"}], [{"original_text": "The girls loved being so close to the field that they could reach out and touch the ground if they wanted to.", "album_id": "72157644777317969", "photo_flickr_id": "14236654939", "setting": "first-2-pick-and-tell", "worker_id": "RV57GPD9FE0X4EV", "story_id": "45556", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girls loved being so close to the field that they could reach out and touch the ground if they wanted to .", "storylet_id": "227784"}], [{"original_text": "We got to go to the stadium for an MLB game.", "album_id": "72157644777317969", "photo_flickr_id": "14443472923", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45557", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got to go to the stadium for an organization game .", "storylet_id": "227785"}], [{"original_text": "We posed by the window.", "album_id": "72157644777317969", "photo_flickr_id": "14443473773", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45557", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we posed by the window .", "storylet_id": "227786"}], [{"original_text": "The family posed by the field.", "album_id": "72157644777317969", "photo_flickr_id": "14236702198", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45557", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family posed by the field .", "storylet_id": "227787"}], [{"original_text": "We were very close.", "album_id": "72157644777317969", "photo_flickr_id": "14236701078", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45557", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were very close .", "storylet_id": "227788"}], [{"original_text": "The scoreboard could be clearly seen.", "album_id": "72157644777317969", "photo_flickr_id": "14423296985", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45557", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the scoreboard could be clearly seen .", "storylet_id": "227789"}], [{"original_text": "The whole family went to the stadium on Thursday.", "album_id": "72157644777317969", "photo_flickr_id": "14443472923", "setting": "last-3-pick-old-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "45558", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family went to the stadium on thursday .", "storylet_id": "227790"}], [{"original_text": "The daughter was especially excited to see the baseball game.", "album_id": "72157644777317969", "photo_flickr_id": "14443473773", "setting": "last-3-pick-old-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "45558", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the daughter was especially excited to see the baseball game .", "storylet_id": "227791"}], [{"original_text": "It was a good opportunity for them to spend time together and have fun.", "album_id": "72157644777317969", "photo_flickr_id": "14236702198", "setting": "last-3-pick-old-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "45558", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a good opportunity for them to spend time together and have fun .", "storylet_id": "227792"}], [{"original_text": "Many people were there at the stadium, and everybody was just as excited as the family.", "album_id": "72157644777317969", "photo_flickr_id": "14236701078", "setting": "last-3-pick-old-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "45558", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many people were there at the stadium , and everybody was just as excited as the family .", "storylet_id": "227793"}], [{"original_text": "As the scoreboard showed, it was a close game, which made it even more fun to watch.", "album_id": "72157644777317969", "photo_flickr_id": "14423296985", "setting": "last-3-pick-old-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "45558", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the scoreboard showed , it was a close game , which made it even more fun to watch .", "storylet_id": "227794"}], [{"original_text": "We had a great view of Minute Maid Park from our hotel room.", "album_id": "72157644777317969", "photo_flickr_id": "14443472923", "setting": "last-3-pick-old-and-tell", "worker_id": "X5XUNYZMXP6WUGS", "story_id": "45559", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great view of location location location from our hotel room .", "storylet_id": "227795"}], [{"original_text": "We took a picture of our daughter with the park.", "album_id": "72157644777317969", "photo_flickr_id": "14443473773", "setting": "last-3-pick-old-and-tell", "worker_id": "X5XUNYZMXP6WUGS", "story_id": "45559", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a picture of our daughter with the park .", "storylet_id": "227796"}], [{"original_text": "Later at the game we took a family picture.", "album_id": "72157644777317969", "photo_flickr_id": "14236702198", "setting": "last-3-pick-old-and-tell", "worker_id": "X5XUNYZMXP6WUGS", "story_id": "45559", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "later at the game we took a family picture .", "storylet_id": "227797"}], [{"original_text": "I then took a panorama picture inside.", "album_id": "72157644777317969", "photo_flickr_id": "14236701078", "setting": "last-3-pick-old-and-tell", "worker_id": "X5XUNYZMXP6WUGS", "story_id": "45559", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i then took a panorama picture inside .", "storylet_id": "227798"}], [{"original_text": "The Astros ended up winning the game.", "album_id": "72157644777317969", "photo_flickr_id": "14423296985", "setting": "last-3-pick-old-and-tell", "worker_id": "X5XUNYZMXP6WUGS", "story_id": "45559", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the organization ended up winning the game .", "storylet_id": "227799"}], [{"original_text": "I got this great, new bike for my birthday!", "album_id": "72157605629519358", "photo_flickr_id": "2582414424", "setting": "first-2-pick-and-tell", "worker_id": "3C9ESCNEEUTADWF", "story_id": "45560", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got this great , new bike for my birthday !", "storylet_id": "227800"}], [{"original_text": "I am so excited I am going to ride it everywhere I can in one day.", "album_id": "72157605629519358", "photo_flickr_id": "2582415688", "setting": "first-2-pick-and-tell", "worker_id": "3C9ESCNEEUTADWF", "story_id": "45560", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i am so excited i am going to ride it everywhere i can in one day .", "storylet_id": "227801"}], [{"original_text": "I will ride it threw the woods and down the road.", "album_id": "72157605629519358", "photo_flickr_id": "2582423982", "setting": "first-2-pick-and-tell", "worker_id": "3C9ESCNEEUTADWF", "story_id": "45560", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i will ride it threw the woods and down the road .", "storylet_id": "227802"}], [{"original_text": "I will ride it to the lake, okay, that was exhausting.", "album_id": "72157605629519358", "photo_flickr_id": "2582423092", "setting": "first-2-pick-and-tell", "worker_id": "3C9ESCNEEUTADWF", "story_id": "45560", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i will ride it to the lake , okay , that was exhausting .", "storylet_id": "227803"}], [{"original_text": "I think I'll take a nap and ride my bike some more tomorrow.", "album_id": "72157605629519358", "photo_flickr_id": "2582414024", "setting": "first-2-pick-and-tell", "worker_id": "3C9ESCNEEUTADWF", "story_id": "45560", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think i 'll take a nap and ride my bike some more tomorrow .", "storylet_id": "227804"}], [{"original_text": "He wanted to take a ride on his new bike.", "album_id": "72157605629519358", "photo_flickr_id": "2582417232", "setting": "first-2-pick-and-tell", "worker_id": "7HDO53JIFU97Y1C", "story_id": "45561", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he wanted to take a ride on his new bike .", "storylet_id": "227805"}], [{"original_text": "We went on a nice ride out to the lake.", "album_id": "72157605629519358", "photo_flickr_id": "2582414424", "setting": "first-2-pick-and-tell", "worker_id": "7HDO53JIFU97Y1C", "story_id": "45561", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went on a nice ride out to the lake .", "storylet_id": "227806"}], [{"original_text": "We really enjoyed the beautiful view from the dock.", "album_id": "72157605629519358", "photo_flickr_id": "2581592241", "setting": "first-2-pick-and-tell", "worker_id": "7HDO53JIFU97Y1C", "story_id": "45561", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we really enjoyed the beautiful view from the dock .", "storylet_id": "227807"}], [{"original_text": "It was very peaceful watching the boats.", "album_id": "72157605629519358", "photo_flickr_id": "2581594339", "setting": "first-2-pick-and-tell", "worker_id": "7HDO53JIFU97Y1C", "story_id": "45561", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was very peaceful watching the boats .", "storylet_id": "227808"}], [{"original_text": "We had such a busy day he needed a nap.", "album_id": "72157605629519358", "photo_flickr_id": "2582414024", "setting": "first-2-pick-and-tell", "worker_id": "7HDO53JIFU97Y1C", "story_id": "45561", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had such a busy day he needed a nap .", "storylet_id": "227809"}], [{"original_text": "Jake and I went out for a bike ride.", "album_id": "72157605629519358", "photo_flickr_id": "2582414424", "setting": "last-3-pick-old-and-tell", "worker_id": "P99Q6IF3SXG1KTJ", "story_id": "45562", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and i went out for a bike ride .", "storylet_id": "227810"}], [{"original_text": "Jake believes that he will become the next greatest bike rider. ", "album_id": "72157605629519358", "photo_flickr_id": "2582415688", "setting": "last-3-pick-old-and-tell", "worker_id": "P99Q6IF3SXG1KTJ", "story_id": "45562", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] believes that he will become the next greatest bike rider .", "storylet_id": "227811"}], [{"original_text": "Jake was going so fast here, he was like a rocket!", "album_id": "72157605629519358", "photo_flickr_id": "2582423982", "setting": "last-3-pick-old-and-tell", "worker_id": "P99Q6IF3SXG1KTJ", "story_id": "45562", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was going so fast here , he was like a rocket !", "storylet_id": "227812"}], [{"original_text": "He came to the pier first, and so we had to buy pizza.", "album_id": "72157605629519358", "photo_flickr_id": "2582423092", "setting": "last-3-pick-old-and-tell", "worker_id": "P99Q6IF3SXG1KTJ", "story_id": "45562", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he came to the pier first , and so we had to buy pizza .", "storylet_id": "227813"}], [{"original_text": "He was going so fast, he slept like a dear!", "album_id": "72157605629519358", "photo_flickr_id": "2582414024", "setting": "last-3-pick-old-and-tell", "worker_id": "P99Q6IF3SXG1KTJ", "story_id": "45562", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was going so fast , he slept like a dear !", "storylet_id": "227814"}], [{"original_text": "I bought my son a new bicycle for his birthday.", "album_id": "72157605629519358", "photo_flickr_id": "2582414424", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "45563", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i bought my son a new bicycle for his birthday .", "storylet_id": "227815"}], [{"original_text": "He spent the afternoon riding it up and down the road.", "album_id": "72157605629519358", "photo_flickr_id": "2582415688", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "45563", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he spent the afternoon riding it up and down the road .", "storylet_id": "227816"}], [{"original_text": "He rode it pretty far into a wooded area.", "album_id": "72157605629519358", "photo_flickr_id": "2582423982", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "45563", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he rode it pretty far into a wooded area .", "storylet_id": "227817"}], [{"original_text": "Then he rode it out to the docks and stopped to watch the boats on the water.", "album_id": "72157605629519358", "photo_flickr_id": "2582423092", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "45563", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then he rode it out to the docks and stopped to watch the boats on the water .", "storylet_id": "227818"}], [{"original_text": "All that riding tired him out and he fell asleep on our car ride back home.", "album_id": "72157605629519358", "photo_flickr_id": "2582414024", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "45563", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all that riding tired him out and he fell asleep on our car ride back home .", "storylet_id": "227819"}], [{"original_text": "Today we went for a long bike ride through the park.", "album_id": "72157605629519358", "photo_flickr_id": "2582414424", "setting": "last-3-pick-old-and-tell", "worker_id": "C6ENG3H9NZ3NF2R", "story_id": "45564", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went for a long bike ride through the park .", "storylet_id": "227820"}], [{"original_text": "The boy led the way and I followed behind. ", "album_id": "72157605629519358", "photo_flickr_id": "2582415688", "setting": "last-3-pick-old-and-tell", "worker_id": "C6ENG3H9NZ3NF2R", "story_id": "45564", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boy led the way and i followed behind .", "storylet_id": "227821"}], [{"original_text": "He was full of energy and couldn't stop exploring the park.", "album_id": "72157605629519358", "photo_flickr_id": "2582423982", "setting": "last-3-pick-old-and-tell", "worker_id": "C6ENG3H9NZ3NF2R", "story_id": "45564", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was full of energy and could n't stop exploring the park .", "storylet_id": "227822"}], [{"original_text": "He made it to the dock and decided that was a good place to end the journey.", "album_id": "72157605629519358", "photo_flickr_id": "2582423092", "setting": "last-3-pick-old-and-tell", "worker_id": "C6ENG3H9NZ3NF2R", "story_id": "45564", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he made it to the dock and decided that was a good place to end the journey .", "storylet_id": "227823"}], [{"original_text": "He must have tired himself out because he fell asleep as soon as we got in the car!", "album_id": "72157605629519358", "photo_flickr_id": "2582414024", "setting": "last-3-pick-old-and-tell", "worker_id": "C6ENG3H9NZ3NF2R", "story_id": "45564", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he must have tired himself out because he fell asleep as soon as we got in the car !", "storylet_id": "227824"}], [{"original_text": "We took the boat out for a ride on the lake.", "album_id": "72157605630785895", "photo_flickr_id": "2580735309", "setting": "first-2-pick-and-tell", "worker_id": "3C9ESCNEEUTADWF", "story_id": "45565", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took the boat out for a ride on the lake .", "storylet_id": "227825"}], [{"original_text": "We all piled on for a great conversation and had a few drinks.", "album_id": "72157605630785895", "photo_flickr_id": "2580742595", "setting": "first-2-pick-and-tell", "worker_id": "3C9ESCNEEUTADWF", "story_id": "45565", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all piled on for a great conversation and had a few drinks .", "storylet_id": "227826"}], [{"original_text": "The captain of this ship is so young, just a baby really.", "album_id": "72157605630785895", "photo_flickr_id": "2581572326", "setting": "first-2-pick-and-tell", "worker_id": "3C9ESCNEEUTADWF", "story_id": "45565", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the captain of this ship is so young , just a baby really .", "storylet_id": "227827"}], [{"original_text": "We went by a cabin on the lake, maybe we'll rent that for our next vacation.", "album_id": "72157605630785895", "photo_flickr_id": "2580753271", "setting": "first-2-pick-and-tell", "worker_id": "3C9ESCNEEUTADWF", "story_id": "45565", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went by a cabin on the lake , maybe we 'll rent that for our next vacation .", "storylet_id": "227828"}], [{"original_text": "Every body had a great time and can't wait to do it again.", "album_id": "72157605630785895", "photo_flickr_id": "2580757505", "setting": "first-2-pick-and-tell", "worker_id": "3C9ESCNEEUTADWF", "story_id": "45565", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "every body had a great time and ca n't wait to do it again .", "storylet_id": "227829"}], [{"original_text": "My name is Charlie. I am a happy baby", "album_id": "72157605630785895", "photo_flickr_id": "2581560296", "setting": "first-2-pick-and-tell", "worker_id": "D9GB1MTMOIUH117", "story_id": "45566", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my name is [male] . i am a happy baby", "storylet_id": "227830"}], [{"original_text": "This is my grandpa alvin. We always have a good time when we get together", "album_id": "72157605630785895", "photo_flickr_id": "2581565132", "setting": "first-2-pick-and-tell", "worker_id": "D9GB1MTMOIUH117", "story_id": "45566", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is my grandpa alvin . we always have a good time when we get together", "storylet_id": "227831"}], [{"original_text": "This is my dad. My dad like sto take me to the park ", "album_id": "72157605630785895", "photo_flickr_id": "2580742595", "setting": "first-2-pick-and-tell", "worker_id": "D9GB1MTMOIUH117", "story_id": "45566", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is my dad . my dad like sto take me to the park", "storylet_id": "227832"}], [{"original_text": "In the park we sit outside and watch the people and the boats in the lake", "album_id": "72157605630785895", "photo_flickr_id": "2581572326", "setting": "first-2-pick-and-tell", "worker_id": "D9GB1MTMOIUH117", "story_id": "45566", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the park we sit outside and watch the people and the boats in the lake", "storylet_id": "227833"}], [{"original_text": "I am really tired from my day in the park. My dad says I can take a nap now. ", "album_id": "72157605630785895", "photo_flickr_id": "2581576824", "setting": "first-2-pick-and-tell", "worker_id": "D9GB1MTMOIUH117", "story_id": "45566", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am really tired from my day in the park . my dad says i can take a nap now .", "storylet_id": "227834"}], [{"original_text": "Last weekend we decided to ride our motorboat with my parents so they can see their grandchild, Tommy.", "album_id": "72157605630785895", "photo_flickr_id": "2580735309", "setting": "last-3-pick-old-and-tell", "worker_id": "4PAIAF8AXSSAIOL", "story_id": "45567", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last weekend we decided to ride our motorboat with my parents so they can see their grandchild , [male] .", "storylet_id": "227835"}], [{"original_text": "This is me on the right with my parents, Clint and Ester before the ride.", "album_id": "72157605630785895", "photo_flickr_id": "2580742595", "setting": "last-3-pick-old-and-tell", "worker_id": "4PAIAF8AXSSAIOL", "story_id": "45567", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is me on the right with my parents , [male] and [female] before the ride .", "storylet_id": "227836"}], [{"original_text": "Grandpa steered the motorboat with my son Tommy on his lap.", "album_id": "72157605630785895", "photo_flickr_id": "2581572326", "setting": "last-3-pick-old-and-tell", "worker_id": "4PAIAF8AXSSAIOL", "story_id": "45567", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandpa steered the motorboat with my son [male] on his lap .", "storylet_id": "227837"}], [{"original_text": "We enjoyed the relaxing ride on the motorboat as we passed by some houses along the river.", "album_id": "72157605630785895", "photo_flickr_id": "2580753271", "setting": "last-3-pick-old-and-tell", "worker_id": "4PAIAF8AXSSAIOL", "story_id": "45567", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we enjoyed the relaxing ride on the motorboat as we passed by some houses along the river .", "storylet_id": "227838"}], [{"original_text": "It was a relaxing trip and what abetter way to bond with my parents on that Saturday afternoon.", "album_id": "72157605630785895", "photo_flickr_id": "2580757505", "setting": "last-3-pick-old-and-tell", "worker_id": "4PAIAF8AXSSAIOL", "story_id": "45567", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a relaxing trip and what abetter way to bond with my parents on that saturday afternoon .", "storylet_id": "227839"}], [{"original_text": "Boating on the lake with family ", "album_id": "72157605630785895", "photo_flickr_id": "2580735309", "setting": "last-3-pick-old-and-tell", "worker_id": "B3AM04G94C969OH", "story_id": "45568", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "boating on the lake with family", "storylet_id": "227840"}], [{"original_text": "Relaxing on the boat", "album_id": "72157605630785895", "photo_flickr_id": "2580742595", "setting": "last-3-pick-old-and-tell", "worker_id": "B3AM04G94C969OH", "story_id": "45568", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "relaxing on the boat", "storylet_id": "227841"}], [{"original_text": "Let baby drive for a while.", "album_id": "72157605630785895", "photo_flickr_id": "2581572326", "setting": "last-3-pick-old-and-tell", "worker_id": "B3AM04G94C969OH", "story_id": "45568", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "let baby drive for a while .", "storylet_id": "227842"}], [{"original_text": "We spotted the lodge.", "album_id": "72157605630785895", "photo_flickr_id": "2580753271", "setting": "last-3-pick-old-and-tell", "worker_id": "B3AM04G94C969OH", "story_id": "45568", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we spotted the lodge .", "storylet_id": "227843"}], [{"original_text": "And headed back to shore.", "album_id": "72157605630785895", "photo_flickr_id": "2580757505", "setting": "last-3-pick-old-and-tell", "worker_id": "B3AM04G94C969OH", "story_id": "45568", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and headed back to shore .", "storylet_id": "227844"}], [{"original_text": "We took a trip out on the lake in Uncle Carl's new boat on Thursday.", "album_id": "72157605630785895", "photo_flickr_id": "2580735309", "setting": "last-3-pick-old-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "45569", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip out on the lake in uncle [male] 's new boat on thursday .", "storylet_id": "227845"}], [{"original_text": "Uncle Carl, Aunt Louise, and Aunt Myrtle relaxed in the back drinking beers.", "album_id": "72157605630785895", "photo_flickr_id": "2580742595", "setting": "last-3-pick-old-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "45569", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "uncle [male] , aunt [female] , and aunt [female] relaxed in the back drinking beers .", "storylet_id": "227846"}], [{"original_text": "Grandpa drove with little Charles on his lap while his parents looked on.", "album_id": "72157605630785895", "photo_flickr_id": "2581572326", "setting": "last-3-pick-old-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "45569", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandpa drove with little [male] on his lap while his parents looked on .", "storylet_id": "227847"}], [{"original_text": "We passed the house where Grandpa used to live and he pointed it out to us.", "album_id": "72157605630785895", "photo_flickr_id": "2580753271", "setting": "last-3-pick-old-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "45569", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we passed the house where grandpa used to live and he pointed it out to us .", "storylet_id": "227848"}], [{"original_text": "It was great to spend time with family!", "album_id": "72157605630785895", "photo_flickr_id": "2580757505", "setting": "last-3-pick-old-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "45569", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was great to spend time with family !", "storylet_id": "227849"}], [{"original_text": "Our first stop at the local carnival was the face painting booth.", "album_id": "72157605638688643", "photo_flickr_id": "2582165707", "setting": "first-2-pick-and-tell", "worker_id": "PYXT0V7TD0ELAMB", "story_id": "45570", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our first stop at the local carnival was the face painting booth .", "storylet_id": "227850"}], [{"original_text": "Once mine was done, mom got one, too and then we stood and watched my daughter get hers done.", "album_id": "72157605638688643", "photo_flickr_id": "2582174211", "setting": "first-2-pick-and-tell", "worker_id": "PYXT0V7TD0ELAMB", "story_id": "45570", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once mine was done , mom got one , too and then we stood and watched my daughter get hers done .", "storylet_id": "227851"}], [{"original_text": "She picked a really cute face and we hardly recognized her afterwards.", "album_id": "72157605638688643", "photo_flickr_id": "2583010022", "setting": "first-2-pick-and-tell", "worker_id": "PYXT0V7TD0ELAMB", "story_id": "45570", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she picked a really cute face and we hardly recognized her afterwards .", "storylet_id": "227852"}], [{"original_text": "Next we looked at crafts while the kids were entertained by the balloon lady.", "album_id": "72157605638688643", "photo_flickr_id": "2582191447", "setting": "first-2-pick-and-tell", "worker_id": "PYXT0V7TD0ELAMB", "story_id": "45570", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next we looked at crafts while the kids were entertained by the balloon lady .", "storylet_id": "227853"}], [{"original_text": "The balloon lady was face painted as a clown and the kids loved her.", "album_id": "72157605638688643", "photo_flickr_id": "2583021318", "setting": "first-2-pick-and-tell", "worker_id": "PYXT0V7TD0ELAMB", "story_id": "45570", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the balloon lady was face painted as a clown and the kids loved her .", "storylet_id": "227854"}], [{"original_text": "The whole family visited a local fair.", "album_id": "72157605638688643", "photo_flickr_id": "2582195345", "setting": "first-2-pick-and-tell", "worker_id": "6JHY8R5HL6F8OSM", "story_id": "45571", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family visited a local fair .", "storylet_id": "227855"}], [{"original_text": "Grandpa was smiling for the photo.", "album_id": "72157605638688643", "photo_flickr_id": "2582996500", "setting": "first-2-pick-and-tell", "worker_id": "6JHY8R5HL6F8OSM", "story_id": "45571", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandpa was smiling for the photo .", "storylet_id": "227856"}], [{"original_text": "Dad doing his best to stay cool in the shade.", "album_id": "72157605638688643", "photo_flickr_id": "2582188675", "setting": "first-2-pick-and-tell", "worker_id": "6JHY8R5HL6F8OSM", "story_id": "45571", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad doing his best to stay cool in the shade .", "storylet_id": "227857"}], [{"original_text": "The kids enjoyed getting their faces painted.", "album_id": "72157605638688643", "photo_flickr_id": "2582206265", "setting": "first-2-pick-and-tell", "worker_id": "6JHY8R5HL6F8OSM", "story_id": "45571", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids enjoyed getting their faces painted .", "storylet_id": "227858"}], [{"original_text": "Mother and son together.", "album_id": "72157605638688643", "photo_flickr_id": "2582214197", "setting": "first-2-pick-and-tell", "worker_id": "6JHY8R5HL6F8OSM", "story_id": "45571", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mother and son together .", "storylet_id": "227859"}], [{"original_text": "We were at the fair at a booth.", "album_id": "72157605638688643", "photo_flickr_id": "2582165707", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45572", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were at the fair at a booth .", "storylet_id": "227860"}], [{"original_text": "Me and my friend both had our faces painted.", "album_id": "72157605638688643", "photo_flickr_id": "2582174211", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45572", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "me and my friend both had our faces painted .", "storylet_id": "227861"}], [{"original_text": "My little sister had a tiger painted on her.", "album_id": "72157605638688643", "photo_flickr_id": "2583010022", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45572", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my little sister had a tiger painted on her .", "storylet_id": "227862"}], [{"original_text": "John was sitting in a chair by himself. ", "album_id": "72157605638688643", "photo_flickr_id": "2582191447", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45572", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was sitting in a chair by himself .", "storylet_id": "227863"}], [{"original_text": "He posed with this lady.", "album_id": "72157605638688643", "photo_flickr_id": "2583021318", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45572", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he posed with this lady .", "storylet_id": "227864"}], [{"original_text": "I love going to the art fest.", "album_id": "72157605638688643", "photo_flickr_id": "2582165707", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45573", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love going to the art fest .", "storylet_id": "227865"}], [{"original_text": "Me and my mom got our faces painted.", "album_id": "72157605638688643", "photo_flickr_id": "2582174211", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45573", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "me and my mom got our faces painted .", "storylet_id": "227866"}], [{"original_text": "My daughter was transformed with the face paint.", "album_id": "72157605638688643", "photo_flickr_id": "2583010022", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45573", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my daughter was transformed with the face paint .", "storylet_id": "227867"}], [{"original_text": "So many people had booths there.", "album_id": "72157605638688643", "photo_flickr_id": "2582191447", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45573", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so many people had booths there .", "storylet_id": "227868"}], [{"original_text": "My husband even had a good time", "album_id": "72157605638688643", "photo_flickr_id": "2583021318", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45573", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my husband even had a good time", "storylet_id": "227869"}], [{"original_text": "Every year when we go to the fair, I always love seeing all the face painting. ", "album_id": "72157605638688643", "photo_flickr_id": "2582165707", "setting": "last-3-pick-old-and-tell", "worker_id": "C6ENG3H9NZ3NF2R", "story_id": "45574", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every year when we go to the fair , i always love seeing all the face painting .", "storylet_id": "227870"}], [{"original_text": "The adults aren't afraid to look a little silly.", "album_id": "72157605638688643", "photo_flickr_id": "2582174211", "setting": "last-3-pick-old-and-tell", "worker_id": "C6ENG3H9NZ3NF2R", "story_id": "45574", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the adults are n't afraid to look a little silly .", "storylet_id": "227871"}], [{"original_text": "And the kids like to go all-out by getting their whole face covered in paint.", "album_id": "72157605638688643", "photo_flickr_id": "2583010022", "setting": "last-3-pick-old-and-tell", "worker_id": "C6ENG3H9NZ3NF2R", "story_id": "45574", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the kids like to go all-out by getting their whole face covered in paint .", "storylet_id": "227872"}], [{"original_text": "This year there was also a glass artist.", "album_id": "72157605638688643", "photo_flickr_id": "2582191447", "setting": "last-3-pick-old-and-tell", "worker_id": "C6ENG3H9NZ3NF2R", "story_id": "45574", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this year there was also a glass artist .", "storylet_id": "227873"}], [{"original_text": "And he wasn't afraid to be a little silly, too, because here he is with a clown.", "album_id": "72157605638688643", "photo_flickr_id": "2583021318", "setting": "last-3-pick-old-and-tell", "worker_id": "C6ENG3H9NZ3NF2R", "story_id": "45574", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and he was n't afraid to be a little silly , too , because here he is with a clown .", "storylet_id": "227874"}], [{"original_text": "JIMMY IS WALKING UP TO THE GROUP OF PEOPLE AT THE FARM", "album_id": "72157605635232532", "photo_flickr_id": "2586798951", "setting": "first-2-pick-and-tell", "worker_id": "52XRS9FQYDUFXJL", "story_id": "45575", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "jimmy is walking up to the group of people at the farm", "storylet_id": "227875"}], [{"original_text": "THE PIGS ARE ANXIOUSLY AWAITING JIMMYS ARRIVAL AS WELL", "album_id": "72157605635232532", "photo_flickr_id": "2583415536", "setting": "first-2-pick-and-tell", "worker_id": "52XRS9FQYDUFXJL", "story_id": "45575", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pigs are anxiously awaiting jimmys arrival as well", "storylet_id": "227876"}], [{"original_text": "JEFF DOESNT WANT TO HEAR MATT KEEP ASKING WHEN JIMMY WILL BE THERE!!", "album_id": "72157605635232532", "photo_flickr_id": "2583415780", "setting": "first-2-pick-and-tell", "worker_id": "52XRS9FQYDUFXJL", "story_id": "45575", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "jeff doesnt want to hear matt keep asking when jimmy will be there ! !", "storylet_id": "227877"}], [{"original_text": "OFF INT HE FIRELD THEY SEE THE SHAPE OF A MAN AND REALIZE JIMMY IS THERE!!", "album_id": "72157605635232532", "photo_flickr_id": "2583416512", "setting": "first-2-pick-and-tell", "worker_id": "52XRS9FQYDUFXJL", "story_id": "45575", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "off int he fireld they see the shape of a man and realize jimmy is there ! !", "storylet_id": "227878"}], [{"original_text": "tHE GIRLS ARE REALLY HAPPY TO SEE THIER FRIEND", "album_id": "72157605635232532", "photo_flickr_id": "2583416580", "setting": "first-2-pick-and-tell", "worker_id": "52XRS9FQYDUFXJL", "story_id": "45575", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girls are really happy to see thier friend", "storylet_id": "227879"}], [{"original_text": "We went to a vineyard for the holiday weekend.", "album_id": "72157605635232532", "photo_flickr_id": "2582586039", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45576", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a vineyard for the holiday weekend .", "storylet_id": "227880"}], [{"original_text": "There were pigs there! It was my first time seeing such pigs.", "album_id": "72157605635232532", "photo_flickr_id": "2583415536", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45576", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were pigs there ! it was my first time seeing such pigs .", "storylet_id": "227881"}], [{"original_text": "Our friend wore a funny hat that caught everyone's attention.", "album_id": "72157605635232532", "photo_flickr_id": "2583416080", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45576", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our friend wore a funny hat that caught everyone 's attention .", "storylet_id": "227882"}], [{"original_text": "He was the subject for many jokes.", "album_id": "72157605635232532", "photo_flickr_id": "2582587033", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45576", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was the subject for many jokes .", "storylet_id": "227883"}], [{"original_text": "Later, we all gathered at the long table to eat and drink wine.", "album_id": "72157605635232532", "photo_flickr_id": "2582587409", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45576", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later , we all gathered at the long table to eat and drink wine .", "storylet_id": "227884"}], [{"original_text": "Today we visited a farm.", "album_id": "72157605635232532", "photo_flickr_id": "2586798951", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45577", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we visited a farm .", "storylet_id": "227885"}], [{"original_text": "We spotted some pigs.", "album_id": "72157605635232532", "photo_flickr_id": "2583415536", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45577", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we spotted some pigs .", "storylet_id": "227886"}], [{"original_text": "At the table, my brother and I jokes around. ", "album_id": "72157605635232532", "photo_flickr_id": "2583415780", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45577", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the table , my brother and i jokes around .", "storylet_id": "227887"}], [{"original_text": "The windmills were spinning.", "album_id": "72157605635232532", "photo_flickr_id": "2583416512", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45577", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the windmills were spinning .", "storylet_id": "227888"}], [{"original_text": "We got on a hayride and had a great time.", "album_id": "72157605635232532", "photo_flickr_id": "2583416580", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45577", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we got on a hayride and had a great time .", "storylet_id": "227889"}], [{"original_text": "Jake thought it would be funny to play with the local pigs with his new toy.", "album_id": "72157605635232532", "photo_flickr_id": "2586798951", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "45578", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] thought it would be funny to play with the local pigs with his new toy .", "storylet_id": "227890"}], [{"original_text": "The pigs were annoyed by the bubbles and started to squeal loudly at the commotion Jake caused.", "album_id": "72157605635232532", "photo_flickr_id": "2583415536", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "45578", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pigs were annoyed by the bubbles and started to squeal loudly at the commotion [male] caused .", "storylet_id": "227891"}], [{"original_text": "Jake's friends couldn't stand the loud pig noises and told him to stop.", "album_id": "72157605635232532", "photo_flickr_id": "2583415780", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "45578", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] 's friends could n't stand the loud pig noises and told him to stop .", "storylet_id": "227892"}], [{"original_text": "To escape the pig noises, Jake and his friends decided to travel along the farmland, but got lost in a field of plants.", "album_id": "72157605635232532", "photo_flickr_id": "2583416512", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "45578", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to escape the pig noises , [male] and his friends decided to travel along the farmland , but got lost in a field of plants .", "storylet_id": "227893"}], [{"original_text": "They met up with two woman who were also lost in the field and the two groups had no choice but to survive together until help could arrive.", "album_id": "72157605635232532", "photo_flickr_id": "2583416580", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "45578", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they met up with two woman who were also lost in the field and the two groups had no choice but to survive together until help could arrive .", "storylet_id": "227894"}], [{"original_text": "Hi. Every summer we head out midwest to Texas to visit my relatives and experience country life.", "album_id": "72157605635232532", "photo_flickr_id": "2586798951", "setting": "last-3-pick-old-and-tell", "worker_id": "4PAIAF8AXSSAIOL", "story_id": "45579", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hi . every summer we head out midwest to location to visit my relatives and experience country life .", "storylet_id": "227895"}], [{"original_text": "Here we see my cousin's pigs and are they huge and noisy pigs.", "album_id": "72157605635232532", "photo_flickr_id": "2583415536", "setting": "last-3-pick-old-and-tell", "worker_id": "4PAIAF8AXSSAIOL", "story_id": "45579", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we see my cousin 's pigs and are they huge and noisy pigs .", "storylet_id": "227896"}], [{"original_text": "These are my cousins having a fun moment with each other.", "album_id": "72157605635232532", "photo_flickr_id": "2583415780", "setting": "last-3-pick-old-and-tell", "worker_id": "4PAIAF8AXSSAIOL", "story_id": "45579", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these are my cousins having a fun moment with each other .", "storylet_id": "227897"}], [{"original_text": "While it was hot and humid, we really enjoyed the country view with less noise and traffic and no buildings.", "album_id": "72157605635232532", "photo_flickr_id": "2583416512", "setting": "last-3-pick-old-and-tell", "worker_id": "4PAIAF8AXSSAIOL", "story_id": "45579", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while it was hot and humid , we really enjoyed the country view with less noise and traffic and no buildings .", "storylet_id": "227898"}], [{"original_text": "And these are my friends and relatives while we check out the produce of their farm.", "album_id": "72157605635232532", "photo_flickr_id": "2583416580", "setting": "last-3-pick-old-and-tell", "worker_id": "4PAIAF8AXSSAIOL", "story_id": "45579", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and these are my friends and relatives while we check out the produce of their farm .", "storylet_id": "227899"}], [{"original_text": "The guys sit down to a few beers at the table", "album_id": "72157644824250557", "photo_flickr_id": "14428427866", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45580", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guys sit down to a few beers at the table", "storylet_id": "227900"}], [{"original_text": "It looks like they may be up to some cards.", "album_id": "72157644824250557", "photo_flickr_id": "14450429844", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45580", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it looks like they may be up to some cards .", "storylet_id": "227901"}], [{"original_text": "She spends some time with the young baby.", "album_id": "72157644824250557", "photo_flickr_id": "14450195182", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45580", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she spends some time with the young baby .", "storylet_id": "227902"}], [{"original_text": "A black dog comes around to enjoy the day.", "album_id": "72157644824250557", "photo_flickr_id": "14471723603", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45580", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a black dog comes around to enjoy the day .", "storylet_id": "227903"}], [{"original_text": "Maybe he smelled the delicious crabs being cooked.", "album_id": "72157644824250557", "photo_flickr_id": "14265114507", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45580", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "maybe he smelled the delicious crabs being cooked .", "storylet_id": "227904"}], [{"original_text": "Our family recently got together to cook out and eat some crabs. ", "album_id": "72157644824250557", "photo_flickr_id": "14450437184", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "45581", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family recently got together to cook out and eat some crabs .", "storylet_id": "227905"}], [{"original_text": "This was the first time I ever got to hold a crab. ", "album_id": "72157644824250557", "photo_flickr_id": "14264906769", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "45581", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was the first time i ever got to hold a crab .", "storylet_id": "227906"}], [{"original_text": "Most of us ate them outside in the backyard. ", "album_id": "72157644824250557", "photo_flickr_id": "14450198742", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "45581", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most of us ate them outside in the backyard .", "storylet_id": "227907"}], [{"original_text": "Some could not stand the heat and ate them inside on the deck. ", "album_id": "72157644824250557", "photo_flickr_id": "14264961198", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "45581", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some could not stand the heat and ate them inside on the deck .", "storylet_id": "227908"}], [{"original_text": "Our cat smells something fishy and decided to see what was going on. ", "album_id": "72157644824250557", "photo_flickr_id": "14265872990", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "45581", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our cat smells something fishy and decided to see what was going on .", "storylet_id": "227909"}], [{"original_text": "We invited the family over for a crab boil.", "album_id": "72157644824250557", "photo_flickr_id": "14428427866", "setting": "last-3-pick-old-and-tell", "worker_id": "IICJ4ZOIKHQYAOY", "story_id": "45582", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we invited the family over for a crab boil .", "storylet_id": "227910"}], [{"original_text": "The kids sat around, useless as usual, as the adults did the work.", "album_id": "72157644824250557", "photo_flickr_id": "14450429844", "setting": "last-3-pick-old-and-tell", "worker_id": "IICJ4ZOIKHQYAOY", "story_id": "45582", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids sat around , useless as usual , as the adults did the work .", "storylet_id": "227911"}], [{"original_text": "My mother sat with the baby most of the time.", "album_id": "72157644824250557", "photo_flickr_id": "14450195182", "setting": "last-3-pick-old-and-tell", "worker_id": "IICJ4ZOIKHQYAOY", "story_id": "45582", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my mother sat with the baby most of the time .", "storylet_id": "227912"}], [{"original_text": "The dog got antsy and started sniffing around for food.", "album_id": "72157644824250557", "photo_flickr_id": "14471723603", "setting": "last-3-pick-old-and-tell", "worker_id": "IICJ4ZOIKHQYAOY", "story_id": "45582", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dog got antsy and started sniffing around for food .", "storylet_id": "227913"}], [{"original_text": "Then we loaded the crabs in the pan and prepared them for cooking. ", "album_id": "72157644824250557", "photo_flickr_id": "14265114507", "setting": "last-3-pick-old-and-tell", "worker_id": "IICJ4ZOIKHQYAOY", "story_id": "45582", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we loaded the crabs in the pan and prepared them for cooking .", "storylet_id": "227914"}], [{"original_text": "Their dad is there ring leader.", "album_id": "72157644824250557", "photo_flickr_id": "14428427866", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45583", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "their dad is there ring leader .", "storylet_id": "227915"}], [{"original_text": "He gathers the guys around out back.", "album_id": "72157644824250557", "photo_flickr_id": "14450429844", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45583", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he gathers the guys around out back .", "storylet_id": "227916"}], [{"original_text": "His mom babysits while he conducts the meetings.", "album_id": "72157644824250557", "photo_flickr_id": "14450195182", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45583", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his mom babysits while he conducts the meetings .", "storylet_id": "227917"}], [{"original_text": "The dog watches guard to make sure no one interrupts", "album_id": "72157644824250557", "photo_flickr_id": "14471723603", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45583", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dog watches guard to make sure no one interrupts", "storylet_id": "227918"}], [{"original_text": "They about using crabs for protection also.", "album_id": "72157644824250557", "photo_flickr_id": "14265114507", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45583", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they about using crabs for protection also .", "storylet_id": "227919"}], [{"original_text": "We had a blue crab boil.", "album_id": "72157644824250557", "photo_flickr_id": "14428427866", "setting": "last-3-pick-old-and-tell", "worker_id": "X5XUNYZMXP6WUGS", "story_id": "45584", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a blue crab boil .", "storylet_id": "227920"}], [{"original_text": "Everybody got to talk with each other while cracking open crabs.", "album_id": "72157644824250557", "photo_flickr_id": "14450429844", "setting": "last-3-pick-old-and-tell", "worker_id": "X5XUNYZMXP6WUGS", "story_id": "45584", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everybody got to talk with each other while cracking open crabs .", "storylet_id": "227921"}], [{"original_text": "Mom got to see our baby too.", "album_id": "72157644824250557", "photo_flickr_id": "14450195182", "setting": "last-3-pick-old-and-tell", "worker_id": "X5XUNYZMXP6WUGS", "story_id": "45584", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom got to see our baby too .", "storylet_id": "227922"}], [{"original_text": "The dog tried to steal some crab to eat.", "album_id": "72157644824250557", "photo_flickr_id": "14471723603", "setting": "last-3-pick-old-and-tell", "worker_id": "X5XUNYZMXP6WUGS", "story_id": "45584", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dog tried to steal some crab to eat .", "storylet_id": "227923"}], [{"original_text": "We had dozens of blue crab to eat.", "album_id": "72157644824250557", "photo_flickr_id": "14265114507", "setting": "last-3-pick-old-and-tell", "worker_id": "X5XUNYZMXP6WUGS", "story_id": "45584", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had dozens of blue crab to eat .", "storylet_id": "227924"}], [{"original_text": "Our Western US road trip took us to some amazing places.", "album_id": "72157625498117651", "photo_flickr_id": "5276683392", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "45585", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our western location road trip took us to some amazing places .", "storylet_id": "227925"}], [{"original_text": "We went to an old western pueblo.", "album_id": "72157625498117651", "photo_flickr_id": "5276073257", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "45585", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to an old western pueblo .", "storylet_id": "227926"}], [{"original_text": "We visited some random towns we had never heard of.", "album_id": "72157625498117651", "photo_flickr_id": "5276072677", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "45585", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we visited some random towns we had never heard of .", "storylet_id": "227927"}], [{"original_text": "We rode into Gallup, and decided to stay here for the night.", "album_id": "72157625498117651", "photo_flickr_id": "5271438744", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "45585", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we rode into organization , and decided to stay here for the night .", "storylet_id": "227928"}], [{"original_text": "We found a great cantina, and ate tacos and drank some beer before retiring to the hotel.", "album_id": "72157625498117651", "photo_flickr_id": "5271445558", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "45585", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we found a great cantina , and ate tacos and drank some beer before retiring to the hotel .", "storylet_id": "227929"}], [{"original_text": "I finally arrived at Zuni!", "album_id": "72157625498117651", "photo_flickr_id": "5276072677", "setting": "first-2-pick-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "45586", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finally arrived at zuni !", "storylet_id": "227930"}], [{"original_text": "I stayed there all the way until it was night time.", "album_id": "72157625498117651", "photo_flickr_id": "5271438744", "setting": "first-2-pick-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "45586", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i stayed there all the way until it was night time .", "storylet_id": "227931"}], [{"original_text": "When it was dark, i wanted to explore the city.", "album_id": "72157625498117651", "photo_flickr_id": "5270830727", "setting": "first-2-pick-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "45586", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when it was dark , i wanted to explore the city .", "storylet_id": "227932"}], [{"original_text": "Unfortunately, it was extremely empty for some reason.", "album_id": "72157625498117651", "photo_flickr_id": "5271440558", "setting": "first-2-pick-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "45586", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "unfortunately , it was extremely empty for some reason .", "storylet_id": "227933"}], [{"original_text": "I ended up getting a drink at a local cafe.", "album_id": "72157625498117651", "photo_flickr_id": "5271445558", "setting": "first-2-pick-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "45586", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ended up getting a drink at a local cafe .", "storylet_id": "227934"}], [{"original_text": "We were on a road trip.", "album_id": "72157625498117651", "photo_flickr_id": "5276683392", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45587", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were on a road trip .", "storylet_id": "227935"}], [{"original_text": "We stopped by the Pueblo.", "album_id": "72157625498117651", "photo_flickr_id": "5276073257", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45587", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped by the pueblo .", "storylet_id": "227936"}], [{"original_text": "Then we went to Zuni.", "album_id": "72157625498117651", "photo_flickr_id": "5276072677", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45587", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we went to zuni .", "storylet_id": "227937"}], [{"original_text": "We snapped a pic of this.", "album_id": "72157625498117651", "photo_flickr_id": "5271438744", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45587", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we snapped a pic of this .", "storylet_id": "227938"}], [{"original_text": "After a long time of driving we had to stop at a cafe to get something to eat.", "album_id": "72157625498117651", "photo_flickr_id": "5271445558", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45587", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long time of driving we had to stop at a cafe to get something to eat .", "storylet_id": "227939"}], [{"original_text": "We are on our way to Mexico. Look how low the clouds hang.", "album_id": "72157625498117651", "photo_flickr_id": "5276683392", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45588", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are on our way to location . look how low the clouds hang .", "storylet_id": "227940"}], [{"original_text": "This Pueblo of Zuni sign made me feel like I was in the Old West.", "album_id": "72157625498117651", "photo_flickr_id": "5276073257", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45588", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this pueblo of zuni sign made me feel like i was in the location location .", "storylet_id": "227941"}], [{"original_text": "We are officially entering into Zuni and so is the rain.", "album_id": "72157625498117651", "photo_flickr_id": "5276072677", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45588", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are officially entering into location and so is the rain .", "storylet_id": "227942"}], [{"original_text": "The winds were so strong during the storm, this sign was blown over", "album_id": "72157625498117651", "photo_flickr_id": "5271438744", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45588", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the winds were so strong during the storm , this sign was blown over", "storylet_id": "227943"}], [{"original_text": "We stopped in for some Mexican, American food to end the night.", "album_id": "72157625498117651", "photo_flickr_id": "5271445558", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45588", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we stopped in for some mexican , american food to end the night .", "storylet_id": "227944"}], [{"original_text": "A group of friends decided to take a road trip through New Mexico.", "album_id": "72157625498117651", "photo_flickr_id": "5276072677", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "45589", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends decided to take a road trip through location location .", "storylet_id": "227945"}], [{"original_text": "They stopped in a town called Zuni.", "album_id": "72157625498117651", "photo_flickr_id": "5271438744", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "45589", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they stopped in a town called location .", "storylet_id": "227946"}], [{"original_text": "It wasn't very lively out, despite being Friday night.", "album_id": "72157625498117651", "photo_flickr_id": "5270830727", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "45589", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was n't very lively out , despite being friday night .", "storylet_id": "227947"}], [{"original_text": "They walked around looking for a place to eat. ", "album_id": "72157625498117651", "photo_flickr_id": "5271440558", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "45589", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they walked around looking for a place to eat .", "storylet_id": "227948"}], [{"original_text": "They finally found an open cafe and had some Mexican-American grub.", "album_id": "72157625498117651", "photo_flickr_id": "5271445558", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "45589", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they finally found an open cafe and had some mexican-american grub .", "storylet_id": "227949"}], [{"original_text": "When we finally brought our son home from the hospital so many people were at home with us to see him.", "album_id": "72157626882487487", "photo_flickr_id": "5853218453", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "45590", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when we finally brought our son home from the hospital so many people were at home with us to see him .", "storylet_id": "227950"}], [{"original_text": "Everyone wanted a chance to hold him!", "album_id": "72157626882487487", "photo_flickr_id": "5853771226", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "45590", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone wanted a chance to hold him !", "storylet_id": "227951"}], [{"original_text": "We were all so happy to have a new addition to the family.", "album_id": "72157626882487487", "photo_flickr_id": "5853772178", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "45590", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were all so happy to have a new addition to the family .", "storylet_id": "227952"}], [{"original_text": "My parents were so proud to be grand parents!", "album_id": "72157626882487487", "photo_flickr_id": "5853773180", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "45590", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my parents were so proud to be grand parents !", "storylet_id": "227953"}], [{"original_text": "I am so happy and I love my son very much!", "album_id": "72157626882487487", "photo_flickr_id": "5853775370", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "45590", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am so happy and i love my son very much !", "storylet_id": "227954"}], [{"original_text": "Everyone was really excited when we brought the baby home.", "album_id": "72157626882487487", "photo_flickr_id": "5853771226", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45591", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was really excited when we brought the baby home .", "storylet_id": "227955"}], [{"original_text": "They all wanted to see and hold him.", "album_id": "72157626882487487", "photo_flickr_id": "5853771632", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45591", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all wanted to see and hold him .", "storylet_id": "227956"}], [{"original_text": "He was very popular.", "album_id": "72157626882487487", "photo_flickr_id": "5853772178", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45591", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was very popular .", "storylet_id": "227957"}], [{"original_text": "The entire family had come to see him.", "album_id": "72157626882487487", "photo_flickr_id": "5853222289", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45591", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the entire family had come to see him .", "storylet_id": "227958"}], [{"original_text": "We are very glad to be parents.", "album_id": "72157626882487487", "photo_flickr_id": "5853775370", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45591", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we are very glad to be parents .", "storylet_id": "227959"}], [{"original_text": "My mother introduced my nephew to his newest cousin not long after he was born.", "album_id": "72157626882487487", "photo_flickr_id": "5853218453", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45592", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my mother introduced my nephew to his newest cousin not long after he was born .", "storylet_id": "227960"}], [{"original_text": "My grandmother then held him as my mother took my nephew for a bath.", "album_id": "72157626882487487", "photo_flickr_id": "5853771226", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45592", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my grandmother then held him as my mother took my nephew for a bath .", "storylet_id": "227961"}], [{"original_text": "Next was my father, who looked a bit awkward holding him.", "album_id": "72157626882487487", "photo_flickr_id": "5853772178", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45592", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next was my father , who looked a bit awkward holding him .", "storylet_id": "227962"}], [{"original_text": "They soon gave him back to me when he started crying. I got him to stop and sleep.", "album_id": "72157626882487487", "photo_flickr_id": "5853773180", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45592", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they soon gave him back to me when he started crying . i got him to stop and sleep .", "storylet_id": "227963"}], [{"original_text": "He slept in my arms the rest of the night.", "album_id": "72157626882487487", "photo_flickr_id": "5853775370", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45592", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he slept in my arms the rest of the night .", "storylet_id": "227964"}], [{"original_text": "People are sitting on the floor.", "album_id": "72157626882487487", "photo_flickr_id": "5853218453", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "45593", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people are sitting on the floor .", "storylet_id": "227965"}], [{"original_text": "A grandmother is holding her grandchild.", "album_id": "72157626882487487", "photo_flickr_id": "5853771226", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "45593", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a grandmother is holding her grandchild .", "storylet_id": "227966"}], [{"original_text": "A man is holding a baby.", "album_id": "72157626882487487", "photo_flickr_id": "5853772178", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "45593", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man is holding a baby .", "storylet_id": "227967"}], [{"original_text": "A family is holding a baby.", "album_id": "72157626882487487", "photo_flickr_id": "5853773180", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "45593", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a family is holding a baby .", "storylet_id": "227968"}], [{"original_text": "A man is holding his child.", "album_id": "72157626882487487", "photo_flickr_id": "5853775370", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "45593", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a man is holding his child .", "storylet_id": "227969"}], [{"original_text": "My sister had a baby", "album_id": "72157626882487487", "photo_flickr_id": "5853218453", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "45594", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister had a baby", "storylet_id": "227970"}], [{"original_text": "the whole family came over to meet him", "album_id": "72157626882487487", "photo_flickr_id": "5853771226", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "45594", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the whole family came over to meet him", "storylet_id": "227971"}], [{"original_text": "my father is a grandfather for the first time", "album_id": "72157626882487487", "photo_flickr_id": "5853772178", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "45594", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my father is a grandfather for the first time", "storylet_id": "227972"}], [{"original_text": "and my grandparents are great grandparents now", "album_id": "72157626882487487", "photo_flickr_id": "5853773180", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "45594", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and my grandparents are great grandparents now", "storylet_id": "227973"}], [{"original_text": "daddy loves his child", "album_id": "72157626882487487", "photo_flickr_id": "5853775370", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "45594", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "daddy loves his child", "storylet_id": "227974"}], [{"original_text": "The family is having a party in the park. ", "album_id": "72157606307817709", "photo_flickr_id": "2688787325", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45595", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family is having a party in the park .", "storylet_id": "227975"}], [{"original_text": "Bill wonders who has the ball.", "album_id": "72157606307817709", "photo_flickr_id": "2688792633", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45595", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] wonders who has the ball .", "storylet_id": "227976"}], [{"original_text": "Cindy is ready for action.", "album_id": "72157606307817709", "photo_flickr_id": "2688793679", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45595", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] is ready for action .", "storylet_id": "227977"}], [{"original_text": "Tim's waiting for the baseball to come his way.", "album_id": "72157606307817709", "photo_flickr_id": "2688793245", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45595", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] 's waiting for the baseball to come his way .", "storylet_id": "227978"}], [{"original_text": "Everyone is too tired to pack up and go home. ", "album_id": "72157606307817709", "photo_flickr_id": "2688786489", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45595", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone is too tired to pack up and go home .", "storylet_id": "227979"}], [{"original_text": "This afternoon, the baseball team had a practice game on the field.", "album_id": "72157606307817709", "photo_flickr_id": "2688786489", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45596", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this afternoon , the baseball team had a practice game on the field .", "storylet_id": "227980"}], [{"original_text": "Coaches and parents sat in lawn chairs and observed from afar.", "album_id": "72157606307817709", "photo_flickr_id": "2688787325", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45596", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "coaches and parents sat in lawn chairs and observed from afar .", "storylet_id": "227981"}], [{"original_text": "Our resident photographer had brought along his camera.", "album_id": "72157606307817709", "photo_flickr_id": "2688789159", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45596", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our resident photographer had brought along his camera .", "storylet_id": "227982"}], [{"original_text": "The coach wore sunglasses to shield his eyes from the bright sun.", "album_id": "72157606307817709", "photo_flickr_id": "2688789659", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45596", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the coach wore sunglasses to shield his eyes from the bright sun .", "storylet_id": "227983"}], [{"original_text": "Meanwhile, out on the field, the players were working hard.", "album_id": "72157606307817709", "photo_flickr_id": "2688793679", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45596", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "meanwhile , out on the field , the players were working hard .", "storylet_id": "227984"}], [{"original_text": "We set up our chair for the softball game.", "album_id": "72157606307817709", "photo_flickr_id": "2688787325", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45597", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we set up our chair for the softball game .", "storylet_id": "227985"}], [{"original_text": "They were getting ready to play. The ball was thrown.", "album_id": "72157606307817709", "photo_flickr_id": "2688792633", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45597", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were getting ready to play . the ball was thrown .", "storylet_id": "227986"}], [{"original_text": "She ran to catch the ball.", "album_id": "72157606307817709", "photo_flickr_id": "2688793679", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45597", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she ran to catch the ball .", "storylet_id": "227987"}], [{"original_text": "Our team scored a point.", "album_id": "72157606307817709", "photo_flickr_id": "2688793245", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45597", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our team scored a point .", "storylet_id": "227988"}], [{"original_text": "We enjoyed relaxing and watching the game.", "album_id": "72157606307817709", "photo_flickr_id": "2688786489", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45597", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we enjoyed relaxing and watching the game .", "storylet_id": "227989"}], [{"original_text": "People gathered to watch their families play a game together.", "album_id": "72157606307817709", "photo_flickr_id": "2688787325", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "45598", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people gathered to watch their families play a game together .", "storylet_id": "227990"}], [{"original_text": "A lady waited for the ball to come to her.", "album_id": "72157606307817709", "photo_flickr_id": "2688792633", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "45598", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lady waited for the ball to come to her .", "storylet_id": "227991"}], [{"original_text": "Another girl was ready to play. ", "album_id": "72157606307817709", "photo_flickr_id": "2688793679", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "45598", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another girl was ready to play .", "storylet_id": "227992"}], [{"original_text": "One man had waited a long time to be able to show his family how much skill he had.", "album_id": "72157606307817709", "photo_flickr_id": "2688793245", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "45598", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one man had waited a long time to be able to show his family how much skill he had .", "storylet_id": "227993"}], [{"original_text": "Everyone had a great time watching.", "album_id": "72157606307817709", "photo_flickr_id": "2688786489", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "45598", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time watching .", "storylet_id": "227994"}], [{"original_text": "Everyone gathered for game day.", "album_id": "72157606307817709", "photo_flickr_id": "2688787325", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45599", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone gathered for game day .", "storylet_id": "227995"}], [{"original_text": "My husband stood with his mitt, upset by the score.", "album_id": "72157606307817709", "photo_flickr_id": "2688792633", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45599", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my husband stood with his mitt , upset by the score .", "storylet_id": "227996"}], [{"original_text": "My coworker was really into the game.", "album_id": "72157606307817709", "photo_flickr_id": "2688793679", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45599", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my coworker was really into the game .", "storylet_id": "227997"}], [{"original_text": "While others just stood in the field.", "album_id": "72157606307817709", "photo_flickr_id": "2688793245", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45599", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while others just stood in the field .", "storylet_id": "227998"}], [{"original_text": "I sat in my chair laughing at the game.", "album_id": "72157606307817709", "photo_flickr_id": "2688786489", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45599", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i sat in my chair laughing at the game .", "storylet_id": "227999"}], [{"original_text": "Our family recently went out together for a meal. ", "album_id": "72157611736381187", "photo_flickr_id": "3144668424", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "45600", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family recently went out together for a meal .", "storylet_id": "228000"}], [{"original_text": "This dish was my favorite since I really like noodles. ", "album_id": "72157611736381187", "photo_flickr_id": "3144664688", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "45600", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this dish was my favorite since i really like noodles .", "storylet_id": "228001"}], [{"original_text": "There was a plate of meat for those that liked that. ", "album_id": "72157611736381187", "photo_flickr_id": "3144666540", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "45600", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a plate of meat for those that liked that .", "storylet_id": "228002"}], [{"original_text": "I took a lot of pictures and got some good ones. ", "album_id": "72157611736381187", "photo_flickr_id": "3143846721", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "45600", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i took a lot of pictures and got some good ones .", "storylet_id": "228003"}], [{"original_text": "I like this photo where they were trying hard to be comical. ", "album_id": "72157611736381187", "photo_flickr_id": "3144675790", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "45600", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i like this photo where they were trying hard to be comical .", "storylet_id": "228004"}], [{"original_text": "Mother and child are happy.", "album_id": "72157611736381187", "photo_flickr_id": "3144651580", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45601", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mother and child are happy .", "storylet_id": "228005"}], [{"original_text": "Something funny is going on. ", "album_id": "72157611736381187", "photo_flickr_id": "3143850391", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45601", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "something funny is going on .", "storylet_id": "228006"}], [{"original_text": "The little one has no idea. ", "album_id": "72157611736381187", "photo_flickr_id": "3143835903", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45601", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the little one has no idea .", "storylet_id": "228007"}], [{"original_text": "Someone's in for a surprise.", "album_id": "72157611736381187", "photo_flickr_id": "3144658124", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45601", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someone 's in for a surprise .", "storylet_id": "228008"}], [{"original_text": "Maybe we'll find out over dinner. ", "album_id": "72157611736381187", "photo_flickr_id": "3144668424", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45601", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "maybe we 'll find out over dinner .", "storylet_id": "228009"}], [{"original_text": "The family all gathered around for dinner.", "album_id": "72157611736381187", "photo_flickr_id": "3144668424", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45602", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family all gathered around for dinner .", "storylet_id": "228010"}], [{"original_text": "We made some noodles.", "album_id": "72157611736381187", "photo_flickr_id": "3144664688", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45602", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made some noodles .", "storylet_id": "228011"}], [{"original_text": "We also had tariyaki chicken.", "album_id": "72157611736381187", "photo_flickr_id": "3144666540", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45602", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also had tariyaki chicken .", "storylet_id": "228012"}], [{"original_text": "Tara pulled out the DSLR. ", "album_id": "72157611736381187", "photo_flickr_id": "3143846721", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45602", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] pulled out the organization .", "storylet_id": "228013"}], [{"original_text": "They joked around as she snapped some pictures.", "album_id": "72157611736381187", "photo_flickr_id": "3144675790", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45602", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they joked around as she snapped some pictures .", "storylet_id": "228014"}], [{"original_text": "Family night, tonight we chose our favorite restaurant.", "album_id": "72157611736381187", "photo_flickr_id": "3144668424", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "45603", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family night , tonight we chose our favorite restaurant .", "storylet_id": "228015"}], [{"original_text": "It has our favorite dishes.", "album_id": "72157611736381187", "photo_flickr_id": "3144664688", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "45603", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it has our favorite dishes .", "storylet_id": "228016"}], [{"original_text": "We often fight over this dish if it is the last one available.", "album_id": "72157611736381187", "photo_flickr_id": "3144666540", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "45603", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we often fight over this dish if it is the last one available .", "storylet_id": "228017"}], [{"original_text": "And our cousin can't help herself, but we usually run when we see her with her camera! ", "album_id": "72157611736381187", "photo_flickr_id": "3143846721", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "45603", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and our cousin ca n't help herself , but we usually run when we see her with her camera !", "storylet_id": "228018"}], [{"original_text": "Or we make faces! We had a great night. Can't wait till next month.", "album_id": "72157611736381187", "photo_flickr_id": "3144675790", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "45603", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "or we make faces ! we had a great night . ca n't wait till next month .", "storylet_id": "228019"}], [{"original_text": "The whole family gathered for dinner.", "album_id": "72157611736381187", "photo_flickr_id": "3144668424", "setting": "last-3-pick-old-and-tell", "worker_id": "HNWMDIXHD4DW4YS", "story_id": "45604", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family gathered for dinner .", "storylet_id": "228020"}], [{"original_text": "There was lots of food.", "album_id": "72157611736381187", "photo_flickr_id": "3144664688", "setting": "last-3-pick-old-and-tell", "worker_id": "HNWMDIXHD4DW4YS", "story_id": "45604", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was lots of food .", "storylet_id": "228021"}], [{"original_text": "We made some wonderful traditional dishes.", "album_id": "72157611736381187", "photo_flickr_id": "3144666540", "setting": "last-3-pick-old-and-tell", "worker_id": "HNWMDIXHD4DW4YS", "story_id": "45604", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we made some wonderful traditional dishes .", "storylet_id": "228022"}], [{"original_text": "Mom took lots of photos.", "album_id": "72157611736381187", "photo_flickr_id": "3143846721", "setting": "last-3-pick-old-and-tell", "worker_id": "HNWMDIXHD4DW4YS", "story_id": "45604", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom took lots of photos .", "storylet_id": "228023"}], [{"original_text": "Everyone was posing for her.", "album_id": "72157611736381187", "photo_flickr_id": "3144675790", "setting": "last-3-pick-old-and-tell", "worker_id": "HNWMDIXHD4DW4YS", "story_id": "45604", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was posing for her .", "storylet_id": "228024"}], [{"original_text": "In Canada we do fund raising with a difference!", "album_id": "72157602795343231", "photo_flickr_id": "1802273989", "setting": "first-2-pick-and-tell", "worker_id": "HSKBS54MHP1BS4Y", "story_id": "45605", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in location we do fund raising with a difference !", "storylet_id": "228025"}], [{"original_text": "Welcome to the first annual Prostrate Cancer Prevention Triathlon! First you will do a five meter dash to the first food tent.", "album_id": "72157602795343231", "photo_flickr_id": "1803117082", "setting": "first-2-pick-and-tell", "worker_id": "HSKBS54MHP1BS4Y", "story_id": "45605", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "welcome to the first annual prostrate cancer prevention triathlon ! first you will do a five meter dash to the first food tent .", "storylet_id": "228026"}], [{"original_text": "The tent is crowded so please be patient. Remember, you are eating for a cause. ", "album_id": "72157602795343231", "photo_flickr_id": "1802274693", "setting": "first-2-pick-and-tell", "worker_id": "HSKBS54MHP1BS4Y", "story_id": "45605", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tent is crowded so please be patient . remember , you are eating for a cause .", "storylet_id": "228027"}], [{"original_text": "Once you finished your first meal, you will swim 10 kilometers against the current in the Niagara River. Watch out for cramps!", "album_id": "72157602795343231", "photo_flickr_id": "1802274513", "setting": "first-2-pick-and-tell", "worker_id": "HSKBS54MHP1BS4Y", "story_id": "45605", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once you finished your first meal , you will swim 10 kilometers against the current in the location location . watch out for cramps !", "storylet_id": "228028"}], [{"original_text": "Your reward? A wonderful meal of Poutine and Pea Meal Bacon. Also, you will be helping a very good cause.", "album_id": "72157602795343231", "photo_flickr_id": "1803118002", "setting": "first-2-pick-and-tell", "worker_id": "HSKBS54MHP1BS4Y", "story_id": "45605", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "your reward ? a wonderful meal of location and pea meal bacon . also , you will be helping a very good cause .", "storylet_id": "228029"}], [{"original_text": "not the greatest breakfast but it will fill me up enough to give me energy.", "album_id": "72157602795343231", "photo_flickr_id": "1803118002", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45606", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "not the greatest breakfast but it will fill me up enough to give me energy .", "storylet_id": "228030"}], [{"original_text": "Here is the starting line! Woo hoo, i'm gonna win this.", "album_id": "72157602795343231", "photo_flickr_id": "1803115934", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45606", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is the starting line ! woo hoo , i 'm gon na win this .", "storylet_id": "228031"}], [{"original_text": "Breakfast tables of champions.", "album_id": "72157602795343231", "photo_flickr_id": "1802273787", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45606", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "breakfast tables of champions .", "storylet_id": "228032"}], [{"original_text": "Here is my new shirt, I will cherish.", "album_id": "72157602795343231", "photo_flickr_id": "1802275571", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45606", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is my new shirt , i will cherish .", "storylet_id": "228033"}], [{"original_text": "Here is where I\"m gonna win this race.", "album_id": "72157602795343231", "photo_flickr_id": "1803117082", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45606", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is where i '' m gon na win this race .", "storylet_id": "228034"}], [{"original_text": "Today we run for charity, this sign explains it all.", "album_id": "72157602795343231", "photo_flickr_id": "1802273989", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "45607", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we run for charity , this sign explains it all .", "storylet_id": "228035"}], [{"original_text": "You start on one side, you end on the other. It will be a great circle of a run.", "album_id": "72157602795343231", "photo_flickr_id": "1803117082", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "45607", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you start on one side , you end on the other . it will be a great circle of a run .", "storylet_id": "228036"}], [{"original_text": "The competitors were all gathered, competition was in the air.", "album_id": "72157602795343231", "photo_flickr_id": "1802274693", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "45607", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the competitors were all gathered , competition was in the air .", "storylet_id": "228037"}], [{"original_text": "The lake we were going to run around was pretty big and deep.", "album_id": "72157602795343231", "photo_flickr_id": "1802274513", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "45607", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lake we were going to run around was pretty big and deep .", "storylet_id": "228038"}], [{"original_text": "Before we raced however we ate a hearty meal.", "album_id": "72157602795343231", "photo_flickr_id": "1803118002", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "45607", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before we raced however we ate a hearty meal .", "storylet_id": "228039"}], [{"original_text": "It was a rainy day but we still came out to raise money for Prostate Cancer treatment.", "album_id": "72157602795343231", "photo_flickr_id": "1802273989", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45608", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a rainy day but we still came out to raise money for prostate cancer treatment .", "storylet_id": "228040"}], [{"original_text": "Finally I see the finish line. We walked and ran for a good cause.", "album_id": "72157602795343231", "photo_flickr_id": "1803117082", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45608", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "finally i see the finish line . we walked and ran for a good cause .", "storylet_id": "228041"}], [{"original_text": "Afterwards we gathered under a tent for some hot breakfast.", "album_id": "72157602795343231", "photo_flickr_id": "1802274693", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45608", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards we gathered under a tent for some hot breakfast .", "storylet_id": "228042"}], [{"original_text": "While waiting for my breakfast I see ducks playing in the lake.", "album_id": "72157602795343231", "photo_flickr_id": "1802274513", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45608", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while waiting for my breakfast i see ducks playing in the lake .", "storylet_id": "228043"}], [{"original_text": "My breakfast arrives just in time. Bacon and French Toast. My favorite.", "album_id": "72157602795343231", "photo_flickr_id": "1803118002", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45608", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my breakfast arrives just in time . bacon and french toast . my favorite .", "storylet_id": "228044"}], [{"original_text": "the community came out to support the prostate cancer awareness.", "album_id": "72157602795343231", "photo_flickr_id": "1802273989", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "45609", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the community came out to support the prostate cancer awareness .", "storylet_id": "228045"}], [{"original_text": "the fund raising marathon has not started yet.", "album_id": "72157602795343231", "photo_flickr_id": "1803117082", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "45609", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fund raising marathon has not started yet .", "storylet_id": "228046"}], [{"original_text": "the people gathered under the tent because it started to rain.", "album_id": "72157602795343231", "photo_flickr_id": "1802274693", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "45609", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people gathered under the tent because it started to rain .", "storylet_id": "228047"}], [{"original_text": "the rain has caused the water to rise in the lake.", "album_id": "72157602795343231", "photo_flickr_id": "1802274513", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "45609", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rain has caused the water to rise in the lake .", "storylet_id": "228048"}], [{"original_text": "the food prepared for the community consisted of bacon and pancakes.", "album_id": "72157602795343231", "photo_flickr_id": "1803118002", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "45609", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the food prepared for the community consisted of bacon and pancakes .", "storylet_id": "228049"}], [{"original_text": "Many people enjoyed meeting professional baseball players at today's game.", "album_id": "475747", "photo_flickr_id": "20361801", "setting": "first-2-pick-and-tell", "worker_id": "O0AH2D94TG00SYU", "story_id": "45610", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people enjoyed meeting professional baseball players at today 's game .", "storylet_id": "228050"}], [{"original_text": "The children were excited waiting in line to meet their heroes.", "album_id": "475747", "photo_flickr_id": "20361837", "setting": "first-2-pick-and-tell", "worker_id": "O0AH2D94TG00SYU", "story_id": "45610", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children were excited waiting in line to meet their heroes .", "storylet_id": "228051"}], [{"original_text": "Many families enjoyed spending time together while getting to meet their favorite baseball players.", "album_id": "475747", "photo_flickr_id": "20361855", "setting": "first-2-pick-and-tell", "worker_id": "O0AH2D94TG00SYU", "story_id": "45610", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many families enjoyed spending time together while getting to meet their favorite baseball players .", "storylet_id": "228052"}], [{"original_text": "A baseball player demonstrates his skill and catches the ball.", "album_id": "475747", "photo_flickr_id": "20370589", "setting": "first-2-pick-and-tell", "worker_id": "O0AH2D94TG00SYU", "story_id": "45610", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a baseball player demonstrates his skill and catches the ball .", "storylet_id": "228053"}], [{"original_text": "Fans enjoyed the view of the game from the stands before this exciting day ended.", "album_id": "475747", "photo_flickr_id": "20370881", "setting": "first-2-pick-and-tell", "worker_id": "O0AH2D94TG00SYU", "story_id": "45610", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fans enjoyed the view of the game from the stands before this exciting day ended .", "storylet_id": "228054"}], [{"original_text": "This is a stadium that we saw our favorite team play baseball.", "album_id": "475747", "photo_flickr_id": "20370881", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "45611", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a stadium that we saw our favorite team play baseball .", "storylet_id": "228055"}], [{"original_text": "They let us come on the field to meet some of the players.", "album_id": "475747", "photo_flickr_id": "20361855", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "45611", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they let us come on the field to meet some of the players .", "storylet_id": "228056"}], [{"original_text": "They even let me throw a pitch from the pitcher's mound.", "album_id": "475747", "photo_flickr_id": "20361829", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "45611", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even let me throw a pitch from the pitcher 's mound .", "storylet_id": "228057"}], [{"original_text": "We saw how the baseball officials worked.", "album_id": "475747", "photo_flickr_id": "20370424", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "45611", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw how the baseball officials worked .", "storylet_id": "228058"}], [{"original_text": "This was a great player that talked to us before we went home.", "album_id": "475747", "photo_flickr_id": "20370833", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "45611", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was a great player that talked to us before we went home .", "storylet_id": "228059"}], [{"original_text": "The audience watches closely as the baseball game begins.", "album_id": "475747", "photo_flickr_id": "20370881", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "45612", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the audience watches closely as the baseball game begins .", "storylet_id": "228060"}], [{"original_text": "The team poses for pictures the lucky fans.", "album_id": "475747", "photo_flickr_id": "20361855", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "45612", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the team poses for pictures the lucky fans .", "storylet_id": "228061"}], [{"original_text": "Some fans even get to pitch a baseball.", "album_id": "475747", "photo_flickr_id": "20361829", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "45612", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some fans even get to pitch a baseball .", "storylet_id": "228062"}], [{"original_text": "The catcher and the pitcher discuss game plans.", "album_id": "475747", "photo_flickr_id": "20370424", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "45612", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the catcher and the pitcher discuss game plans .", "storylet_id": "228063"}], [{"original_text": "The pitcher walks to the dugout for a short break.", "album_id": "475747", "photo_flickr_id": "20370833", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "45612", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the pitcher walks to the dugout for a short break .", "storylet_id": "228064"}], [{"original_text": "Out on a family outing. ", "album_id": "475747", "photo_flickr_id": "20370881", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "45613", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "out on a family outing .", "storylet_id": "228065"}], [{"original_text": "Some of the kids posing on the field. ", "album_id": "475747", "photo_flickr_id": "20361855", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "45613", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the kids posing on the field .", "storylet_id": "228066"}], [{"original_text": "First pitch thrown for the game.", "album_id": "475747", "photo_flickr_id": "20361829", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "45613", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "first pitch thrown for the game .", "storylet_id": "228067"}], [{"original_text": "Pitcher is getting ready.", "album_id": "475747", "photo_flickr_id": "20370424", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "45613", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "pitcher is getting ready .", "storylet_id": "228068"}], [{"original_text": "Off to the dugouts. ", "album_id": "475747", "photo_flickr_id": "20370833", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "45613", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "off to the dugouts .", "storylet_id": "228069"}], [{"original_text": "I got to go to my first baseball game.", "album_id": "475747", "photo_flickr_id": "20361801", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "45614", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got to go to my first baseball game .", "storylet_id": "228070"}], [{"original_text": "We went onto the field before the game started", "album_id": "475747", "photo_flickr_id": "20361837", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "45614", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went onto the field before the game started", "storylet_id": "228071"}], [{"original_text": "and got picture with some of the players.", "album_id": "475747", "photo_flickr_id": "20361855", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "45614", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and got picture with some of the players .", "storylet_id": "228072"}], [{"original_text": "The pitcher was on target.", "album_id": "475747", "photo_flickr_id": "20370589", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "45614", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pitcher was on target .", "storylet_id": "228073"}], [{"original_text": "The team I was routing for won.", "album_id": "475747", "photo_flickr_id": "20370881", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "45614", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the team i was routing for won .", "storylet_id": "228074"}], [{"original_text": "I've got a cottage on the lake that I like to go to for vacations.", "album_id": "476170", "photo_flickr_id": "20387243", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "45615", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 've got a cottage on the lake that i like to go to for vacations .", "storylet_id": "228075"}], [{"original_text": "The lake is actually pretty big.", "album_id": "476170", "photo_flickr_id": "20389936", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "45615", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lake is actually pretty big .", "storylet_id": "228076"}], [{"original_text": "We also have a boat out there.", "album_id": "476170", "photo_flickr_id": "20386343", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "45615", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also have a boat out there .", "storylet_id": "228077"}], [{"original_text": "We usually build a campfire after the sun goes down.", "album_id": "476170", "photo_flickr_id": "20384883", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "45615", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we usually build a campfire after the sun goes down .", "storylet_id": "228078"}], [{"original_text": "We build the fire in the compost pile because ashes are good for the garden.", "album_id": "476170", "photo_flickr_id": "20385743", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "45615", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we build the fire in the compost pile because ashes are good for the garden .", "storylet_id": "228079"}], [{"original_text": "The fire burned in an angry and nasty Biblical way.", "album_id": "476170", "photo_flickr_id": "20384693", "setting": "first-2-pick-and-tell", "worker_id": "A07J569YDBBYN55", "story_id": "45616", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fire burned in an angry and nasty biblical way .", "storylet_id": "228080"}], [{"original_text": "The flames seemed to reached toward heaven.", "album_id": "476170", "photo_flickr_id": "20384883", "setting": "first-2-pick-and-tell", "worker_id": "A07J569YDBBYN55", "story_id": "45616", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flames seemed to reached toward heaven .", "storylet_id": "228081"}], [{"original_text": "The sky was gray, dark with clouds gathered from the smoke of the fire.", "album_id": "476170", "photo_flickr_id": "20385159", "setting": "first-2-pick-and-tell", "worker_id": "A07J569YDBBYN55", "story_id": "45616", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sky was gray , dark with clouds gathered from the smoke of the fire .", "storylet_id": "228082"}], [{"original_text": "The fire as it appears to be loosing its power.", "album_id": "476170", "photo_flickr_id": "20385452", "setting": "first-2-pick-and-tell", "worker_id": "A07J569YDBBYN55", "story_id": "45616", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fire as it appears to be loosing its power .", "storylet_id": "228083"}], [{"original_text": "Fire, still destructive and cruel, but appearing contained.", "album_id": "476170", "photo_flickr_id": "20385743", "setting": "first-2-pick-and-tell", "worker_id": "A07J569YDBBYN55", "story_id": "45616", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fire , still destructive and cruel , but appearing contained .", "storylet_id": "228084"}], [{"original_text": "We stayed by a lake.", "album_id": "476170", "photo_flickr_id": "20387243", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "45617", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we stayed by a lake .", "storylet_id": "228085"}], [{"original_text": "The lake was very calm.", "album_id": "476170", "photo_flickr_id": "20389936", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "45617", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lake was very calm .", "storylet_id": "228086"}], [{"original_text": "We decided to take a boat ride out.", "album_id": "476170", "photo_flickr_id": "20386343", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "45617", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we decided to take a boat ride out .", "storylet_id": "228087"}], [{"original_text": "Later that evening, we built a fire.", "album_id": "476170", "photo_flickr_id": "20384883", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "45617", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later that evening , we built a fire .", "storylet_id": "228088"}], [{"original_text": "We just sat and relaxed around it.", "album_id": "476170", "photo_flickr_id": "20385743", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "45617", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we just sat and relaxed around it .", "storylet_id": "228089"}], [{"original_text": "The lake house had a little dock for the boat.", "album_id": "476170", "photo_flickr_id": "20387243", "setting": "last-3-pick-old-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45618", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lake house had a little dock for the boat .", "storylet_id": "228090"}], [{"original_text": "The water was very still that day.", "album_id": "476170", "photo_flickr_id": "20389936", "setting": "last-3-pick-old-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45618", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water was very still that day .", "storylet_id": "228091"}], [{"original_text": "We went out on the jet skis.", "album_id": "476170", "photo_flickr_id": "20386343", "setting": "last-3-pick-old-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45618", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went out on the jet skis .", "storylet_id": "228092"}], [{"original_text": "At night, we light a fire and hung out.", "album_id": "476170", "photo_flickr_id": "20384883", "setting": "last-3-pick-old-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45618", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at night , we light a fire and hung out .", "storylet_id": "228093"}], [{"original_text": "The fire burnt great and we even cooked a bit on it.", "album_id": "476170", "photo_flickr_id": "20385743", "setting": "last-3-pick-old-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45618", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fire burnt great and we even cooked a bit on it .", "storylet_id": "228094"}], [{"original_text": "I went down to the beach last weekend.", "album_id": "476170", "photo_flickr_id": "20384693", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45619", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went down to the beach last weekend .", "storylet_id": "228095"}], [{"original_text": "There was a big fire there.", "album_id": "476170", "photo_flickr_id": "20384883", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45619", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a big fire there .", "storylet_id": "228096"}], [{"original_text": "The storm clouds were also coming in.", "album_id": "476170", "photo_flickr_id": "20385159", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45619", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the storm clouds were also coming in .", "storylet_id": "228097"}], [{"original_text": "I spent some time at the beach.", "album_id": "476170", "photo_flickr_id": "20385452", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45619", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i spent some time at the beach .", "storylet_id": "228098"}], [{"original_text": "After a few hours I left to go home.", "album_id": "476170", "photo_flickr_id": "20385743", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45619", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a few hours i left to go home .", "storylet_id": "228099"}], [{"original_text": "We went to the beach on holiday.", "album_id": "476406", "photo_flickr_id": "20403686", "setting": "first-2-pick-and-tell", "worker_id": "7AOROSRUKQIXJI4", "story_id": "45620", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the beach on holiday .", "storylet_id": "228100"}], [{"original_text": "It was a beautiful day, and I saw nature like I had never seen it before.", "album_id": "476406", "photo_flickr_id": "20402942", "setting": "first-2-pick-and-tell", "worker_id": "7AOROSRUKQIXJI4", "story_id": "45620", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a beautiful day , and i saw nature like i had never seen it before .", "storylet_id": "228101"}], [{"original_text": "During lunchtime we went to a local cafe and enjoyed the ambiance.", "album_id": "476406", "photo_flickr_id": "20404109", "setting": "first-2-pick-and-tell", "worker_id": "7AOROSRUKQIXJI4", "story_id": "45620", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "during lunchtime we went to a local cafe and enjoyed the ambiance .", "storylet_id": "228102"}], [{"original_text": "We saw some of the local artistry on the way back to the beach.", "album_id": "476406", "photo_flickr_id": "20403298", "setting": "first-2-pick-and-tell", "worker_id": "7AOROSRUKQIXJI4", "story_id": "45620", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw some of the local artistry on the way back to the beach .", "storylet_id": "228103"}], [{"original_text": "It was a gorgeous day to spend with family.", "album_id": "476406", "photo_flickr_id": "20403325", "setting": "first-2-pick-and-tell", "worker_id": "7AOROSRUKQIXJI4", "story_id": "45620", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a gorgeous day to spend with family .", "storylet_id": "228104"}], [{"original_text": "Everyone was excited to be going on vacation. ", "album_id": "476406", "photo_flickr_id": "20403077", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "45621", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was excited to be going on vacation .", "storylet_id": "228105"}], [{"original_text": "We stopped at a memorial and spent our time reading about the history of it.", "album_id": "476406", "photo_flickr_id": "20403190", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "45621", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped at a memorial and spent our time reading about the history of it .", "storylet_id": "228106"}], [{"original_text": "It was fourth of July that day, we were proud to be Americans. ", "album_id": "476406", "photo_flickr_id": "20403474", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "45621", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was fourth of july that day , we were proud to be americans .", "storylet_id": "228107"}], [{"original_text": "We decided to go on a diving trip, it seemed exciting.", "album_id": "476406", "photo_flickr_id": "20403542", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "45621", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we decided to go on a diving trip , it seemed exciting .", "storylet_id": "228108"}], [{"original_text": "We spent the rest of the day on the water, it was a great day!", "album_id": "476406", "photo_flickr_id": "20403520", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "45621", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we spent the rest of the day on the water , it was a great day !", "storylet_id": "228109"}], [{"original_text": "We went on a tour of Washington DC", "album_id": "476406", "photo_flickr_id": "20403077", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "45622", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on a tour of location location", "storylet_id": "228110"}], [{"original_text": "We visited some of the monuments", "album_id": "476406", "photo_flickr_id": "20403190", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "45622", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we visited some of the monuments", "storylet_id": "228111"}], [{"original_text": "We saw the big American Flag", "album_id": "476406", "photo_flickr_id": "20403474", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "45622", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw the big american flag", "storylet_id": "228112"}], [{"original_text": "There were even some scuba divers that were going to do testing", "album_id": "476406", "photo_flickr_id": "20403542", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "45622", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were even some scuba divers that were going to do testing", "storylet_id": "228113"}], [{"original_text": "It was neat seeing them go into the Ocean like that", "album_id": "476406", "photo_flickr_id": "20403520", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "45622", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was neat seeing them go into the location like that", "storylet_id": "228114"}], [{"original_text": "He was inspired by the ducks. ", "album_id": "476406", "photo_flickr_id": "20403686", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45623", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he was inspired by the ducks .", "storylet_id": "228115"}], [{"original_text": "He liked the way the sand that had washed looked. ", "album_id": "476406", "photo_flickr_id": "20402942", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45623", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he liked the way the sand that had washed looked .", "storylet_id": "228116"}], [{"original_text": "At lunch he drew a sketch. ", "album_id": "476406", "photo_flickr_id": "20404109", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45623", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at lunch he drew a sketch .", "storylet_id": "228117"}], [{"original_text": "He would hang the painting in the other window like this one. ", "album_id": "476406", "photo_flickr_id": "20403298", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45623", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he would hang the painting in the other window like this one .", "storylet_id": "228118"}], [{"original_text": "Once he got done, they could hang out down by the shore. ", "album_id": "476406", "photo_flickr_id": "20403325", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45623", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once he got done , they could hang out down by the shore .", "storylet_id": "228119"}], [{"original_text": "The water was calm", "album_id": "476406", "photo_flickr_id": "20403686", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "45624", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the water was calm", "storylet_id": "228120"}], [{"original_text": "near the shore.", "album_id": "476406", "photo_flickr_id": "20402942", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "45624", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "near the shore .", "storylet_id": "228121"}], [{"original_text": "The people laughed", "album_id": "476406", "photo_flickr_id": "20404109", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "45624", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people laughed", "storylet_id": "228122"}], [{"original_text": "at the window", "album_id": "476406", "photo_flickr_id": "20403298", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "45624", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the window", "storylet_id": "228123"}], [{"original_text": "and then they laid out.", "album_id": "476406", "photo_flickr_id": "20403325", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "45624", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then they laid out .", "storylet_id": "228124"}], [{"original_text": "I went on a nature hike with my dad and my brother.", "album_id": "657659", "photo_flickr_id": "29208812", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "45625", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on a nature hike with my dad and my brother .", "storylet_id": "228125"}], [{"original_text": "We eventually ran across this creek.", "album_id": "657659", "photo_flickr_id": "29208531", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "45625", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we eventually ran across this creek .", "storylet_id": "228126"}], [{"original_text": "There was a huge boulder right in the middle of the stream.", "album_id": "657659", "photo_flickr_id": "29208415", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "45625", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a huge boulder right in the middle of the stream .", "storylet_id": "228127"}], [{"original_text": "My dad joked about diving off.", "album_id": "657659", "photo_flickr_id": "29208494", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "45625", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my dad joked about diving off .", "storylet_id": "228128"}], [{"original_text": "I used the self timer and got a picture of us all together.", "album_id": "657659", "photo_flickr_id": "29209380", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "45625", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i used the self timer and got a picture of us all together .", "storylet_id": "228129"}], [{"original_text": "My dad and I went hiking last weekend.", "album_id": "657659", "photo_flickr_id": "29208415", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "45626", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my dad and i went hiking last weekend .", "storylet_id": "228130"}], [{"original_text": "We went through some amazing valleys.", "album_id": "657659", "photo_flickr_id": "29208812", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "45626", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went through some amazing valleys .", "storylet_id": "228131"}], [{"original_text": "The mountains had gorgeous rocks on them.", "album_id": "657659", "photo_flickr_id": "29208949", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "45626", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the mountains had gorgeous rocks on them .", "storylet_id": "228132"}], [{"original_text": "There were hidden rivers all over the place.", "album_id": "657659", "photo_flickr_id": "29209313", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "45626", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were hidden rivers all over the place .", "storylet_id": "228133"}], [{"original_text": "We met up with our friend before going home to eat.", "album_id": "657659", "photo_flickr_id": "29209380", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "45626", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we met up with our friend before going home to eat .", "storylet_id": "228134"}], [{"original_text": "Taking a hike in the beautiful mountain side.", "album_id": "657659", "photo_flickr_id": "29208812", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "45627", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "taking a hike in the beautiful mountain side .", "storylet_id": "228135"}], [{"original_text": "Loving the flow of the creek, very relaxing.", "album_id": "657659", "photo_flickr_id": "29208531", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "45627", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "loving the flow of the creek , very relaxing .", "storylet_id": "228136"}], [{"original_text": "My dad and husband standing by a rock.", "album_id": "657659", "photo_flickr_id": "29208415", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "45627", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my dad and husband standing by a rock .", "storylet_id": "228137"}], [{"original_text": "Dad acting like he was going to dive in creek.", "album_id": "657659", "photo_flickr_id": "29208494", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "45627", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dad acting like he was going to dive in creek .", "storylet_id": "228138"}], [{"original_text": "Beautiful generation of wonderful men with an amazing background. ", "album_id": "657659", "photo_flickr_id": "29209380", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "45627", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "beautiful generation of wonderful men with an amazing background .", "storylet_id": "228139"}], [{"original_text": "A father and sons went camping on a mountain trail.", "album_id": "657659", "photo_flickr_id": "29208812", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "45628", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a father and sons went camping on a mountain trail .", "storylet_id": "228140"}], [{"original_text": "They saw a beautiful river.", "album_id": "657659", "photo_flickr_id": "29208531", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "45628", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they saw a beautiful river .", "storylet_id": "228141"}], [{"original_text": "They took pictures by large rocks.", "album_id": "657659", "photo_flickr_id": "29208415", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "45628", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they took pictures by large rocks .", "storylet_id": "228142"}], [{"original_text": "They stood on boulders.", "album_id": "657659", "photo_flickr_id": "29208494", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "45628", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they stood on boulders .", "storylet_id": "228143"}], [{"original_text": "The other put his arms around his sons.", "album_id": "657659", "photo_flickr_id": "29209380", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "45628", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the other put his arms around his sons .", "storylet_id": "228144"}], [{"original_text": "People who don't appreciate nature absolute baffle me.", "album_id": "657659", "photo_flickr_id": "29208812", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45629", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people who do n't appreciate nature absolute baffle me .", "storylet_id": "228145"}], [{"original_text": "A babbling brook is more pleasant and calming than anything else in the world. ", "album_id": "657659", "photo_flickr_id": "29208531", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45629", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a babbling brook is more pleasant and calming than anything else in the world .", "storylet_id": "228146"}], [{"original_text": "I often go on hikes with my father.", "album_id": "657659", "photo_flickr_id": "29208415", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45629", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i often go on hikes with my father .", "storylet_id": "228147"}], [{"original_text": "My dad taught me everything I know about surviving in the wilderness.", "album_id": "657659", "photo_flickr_id": "29208494", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45629", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my dad taught me everything i know about surviving in the wilderness .", "storylet_id": "228148"}], [{"original_text": "After a lot arm twisting, we got my brother to come along on our last hike.", "album_id": "657659", "photo_flickr_id": "29209380", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45629", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a lot arm twisting , we got my brother to come along on our last hike .", "storylet_id": "228149"}], [{"original_text": "Here's the family eating food, it's delicious.", "album_id": "72157594171854007", "photo_flickr_id": "171285332", "setting": "first-2-pick-and-tell", "worker_id": "FCS0BEDVTHQK47I", "story_id": "45630", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here 's the family eating food , it 's delicious .", "storylet_id": "228150"}], [{"original_text": "They are all so family oriented that they didn't realize that their isn't enough chairs!", "album_id": "72157594171854007", "photo_flickr_id": "171285357", "setting": "first-2-pick-and-tell", "worker_id": "FCS0BEDVTHQK47I", "story_id": "45630", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are all so family oriented that they did n't realize that their is n't enough chairs !", "storylet_id": "228151"}], [{"original_text": "They all encourage to eat as much food as possible, even the kid has a sippy cup.", "album_id": "72157594171854007", "photo_flickr_id": "171285457", "setting": "first-2-pick-and-tell", "worker_id": "FCS0BEDVTHQK47I", "story_id": "45630", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all encourage to eat as much food as possible , even the kid has a sippy cup .", "storylet_id": "228152"}], [{"original_text": "Some people need a break from eating too much food.", "album_id": "72157594171854007", "photo_flickr_id": "171285527", "setting": "first-2-pick-and-tell", "worker_id": "FCS0BEDVTHQK47I", "story_id": "45630", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people need a break from eating too much food .", "storylet_id": "228153"}], [{"original_text": "Some people like to read after eating too much!", "album_id": "72157594171854007", "photo_flickr_id": "171285930", "setting": "first-2-pick-and-tell", "worker_id": "FCS0BEDVTHQK47I", "story_id": "45630", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people like to read after eating too much !", "storylet_id": "228154"}], [{"original_text": "A young boy watched his dad and grandpa work on a backyard project.", "album_id": "72157594171854007", "photo_flickr_id": "171285717", "setting": "first-2-pick-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "45631", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a young boy watched his dad and grandpa work on a backyard project .", "storylet_id": "228155"}], [{"original_text": "After they finished their project, the family sat down to a meal.", "album_id": "72157594171854007", "photo_flickr_id": "171285357", "setting": "first-2-pick-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "45631", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after they finished their project , the family sat down to a meal .", "storylet_id": "228156"}], [{"original_text": "There was potatoes, beef, and rice.", "album_id": "72157594171854007", "photo_flickr_id": "171285417", "setting": "first-2-pick-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "45631", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was potatoes , beef , and rice .", "storylet_id": "228157"}], [{"original_text": "Full from all of the food, they sat on the couch to look at family pictures.", "album_id": "72157594171854007", "photo_flickr_id": "171285930", "setting": "first-2-pick-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "45631", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "full from all of the food , they sat on the couch to look at family pictures .", "storylet_id": "228158"}], [{"original_text": "Two members were so exhausted from the long day that they fell asleep in their chairs. ", "album_id": "72157594171854007", "photo_flickr_id": "171285527", "setting": "first-2-pick-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "45631", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "two members were so exhausted from the long day that they fell asleep in their chairs .", "storylet_id": "228159"}], [{"original_text": "At the family gathering, some yard maintenance needs to get done.", "album_id": "72157594171854007", "photo_flickr_id": "171285717", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "45632", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the family gathering , some yard maintenance needs to get done .", "storylet_id": "228160"}], [{"original_text": "The family sits at the table inside to eat together.", "album_id": "72157594171854007", "photo_flickr_id": "171285357", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "45632", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family sits at the table inside to eat together .", "storylet_id": "228161"}], [{"original_text": "The dinner is steak, potatoes and a side dish.", "album_id": "72157594171854007", "photo_flickr_id": "171285417", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "45632", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dinner is steak , potatoes and a side dish .", "storylet_id": "228162"}], [{"original_text": "After dinner is story time and the kids listen closely.", "album_id": "72157594171854007", "photo_flickr_id": "171285930", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "45632", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after dinner is story time and the kids listen closely .", "storylet_id": "228163"}], [{"original_text": "A nap is necessary after a long day.", "album_id": "72157594171854007", "photo_flickr_id": "171285527", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "45632", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a nap is necessary after a long day .", "storylet_id": "228164"}], [{"original_text": "The guys working in the yard before dinner.", "album_id": "72157594171854007", "photo_flickr_id": "171285717", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "45633", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guys working in the yard before dinner .", "storylet_id": "228165"}], [{"original_text": "Our Sunday family dinner.", "album_id": "72157594171854007", "photo_flickr_id": "171285357", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "45633", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our sunday family dinner .", "storylet_id": "228166"}], [{"original_text": "Plenty to go around.", "album_id": "72157594171854007", "photo_flickr_id": "171285417", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "45633", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "plenty to go around .", "storylet_id": "228167"}], [{"original_text": "Decided to read the kids a story after dinner.", "album_id": "72157594171854007", "photo_flickr_id": "171285930", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "45633", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "decided to read the kids a story after dinner .", "storylet_id": "228168"}], [{"original_text": "She kept him up late last night.", "album_id": "72157594171854007", "photo_flickr_id": "171285527", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "45633", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she kept him up late last night .", "storylet_id": "228169"}], [{"original_text": "We got together for a family barbeque.", "album_id": "72157594171854007", "photo_flickr_id": "171285717", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "45634", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got together for a family barbeque .", "storylet_id": "228170"}], [{"original_text": "We set up the table and made the food.", "album_id": "72157594171854007", "photo_flickr_id": "171285357", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "45634", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we set up the table and made the food .", "storylet_id": "228171"}], [{"original_text": "It looked absolutely amazing.", "album_id": "72157594171854007", "photo_flickr_id": "171285417", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "45634", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it looked absolutely amazing .", "storylet_id": "228172"}], [{"original_text": "Afterwards we went through some family albums.", "album_id": "72157594171854007", "photo_flickr_id": "171285930", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "45634", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards we went through some family albums .", "storylet_id": "228173"}], [{"original_text": "Then passed out from being so full.", "album_id": "72157594171854007", "photo_flickr_id": "171285527", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "45634", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then passed out from being so full .", "storylet_id": "228174"}], [{"original_text": "We hosted a Fourth of July party at our home.", "album_id": "72157594171836398", "photo_flickr_id": "171268203", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "45635", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we hosted a fourth of july party at our home .", "storylet_id": "228175"}], [{"original_text": "I got to use my new grill.", "album_id": "72157594171836398", "photo_flickr_id": "171267971", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "45635", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got to use my new grill .", "storylet_id": "228176"}], [{"original_text": "The food came out delicious.", "album_id": "72157594171836398", "photo_flickr_id": "171122565", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "45635", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food came out delicious .", "storylet_id": "228177"}], [{"original_text": "The kids got to splash around all day.", "album_id": "72157594171836398", "photo_flickr_id": "171267521", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "45635", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids got to splash around all day .", "storylet_id": "228178"}], [{"original_text": "By the day's end, we were exhausted.", "album_id": "72157594171836398", "photo_flickr_id": "171270427", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "45635", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the day 's end , we were exhausted .", "storylet_id": "228179"}], [{"original_text": "The young boy wanted to come outside.", "album_id": "72157594171836398", "photo_flickr_id": "171268454", "setting": "first-2-pick-and-tell", "worker_id": "VHLRN1SKJC8DRU0", "story_id": "45636", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the young boy wanted to come outside .", "storylet_id": "228180"}], [{"original_text": "Dad plays by pretending to throw him in the pool.", "album_id": "72157594171836398", "photo_flickr_id": "171270190", "setting": "first-2-pick-and-tell", "worker_id": "VHLRN1SKJC8DRU0", "story_id": "45636", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dad plays by pretending to throw him in the pool .", "storylet_id": "228181"}], [{"original_text": "Mom actually does dunk the boy in the kiddie pool.", "album_id": "72157594171836398", "photo_flickr_id": "171269804", "setting": "first-2-pick-and-tell", "worker_id": "VHLRN1SKJC8DRU0", "story_id": "45636", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom actually does dunk the boy in the kiddie pool .", "storylet_id": "228182"}], [{"original_text": "Grand dad is working the grill.", "album_id": "72157594171836398", "photo_flickr_id": "171267971", "setting": "first-2-pick-and-tell", "worker_id": "VHLRN1SKJC8DRU0", "story_id": "45636", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grand dad is working the grill .", "storylet_id": "228183"}], [{"original_text": "The grilled chicken went well with a cold hard lemonade.", "album_id": "72157594171836398", "photo_flickr_id": "171122565", "setting": "first-2-pick-and-tell", "worker_id": "VHLRN1SKJC8DRU0", "story_id": "45636", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the grilled chicken went well with a cold hard lemonade .", "storylet_id": "228184"}], [{"original_text": "It was time for our picnic.", "album_id": "72157594171836398", "photo_flickr_id": "171268203", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45637", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was time for our picnic .", "storylet_id": "228185"}], [{"original_text": "Grandpa did the grilling.", "album_id": "72157594171836398", "photo_flickr_id": "171267971", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45637", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandpa did the grilling .", "storylet_id": "228186"}], [{"original_text": "The chicken was delcious.", "album_id": "72157594171836398", "photo_flickr_id": "171122565", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45637", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the chicken was delcious .", "storylet_id": "228187"}], [{"original_text": "Then we went for a dip in the pool.", "album_id": "72157594171836398", "photo_flickr_id": "171267521", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45637", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we went for a dip in the pool .", "storylet_id": "228188"}], [{"original_text": "What an awesome day it was.", "album_id": "72157594171836398", "photo_flickr_id": "171270427", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45637", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what an awesome day it was .", "storylet_id": "228189"}], [{"original_text": "Our Fourth of July barbecue was the best.", "album_id": "72157594171836398", "photo_flickr_id": "171268203", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "45638", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our fourth of july barbecue was the best .", "storylet_id": "228190"}], [{"original_text": "Dad ruled over the grill like a master.", "album_id": "72157594171836398", "photo_flickr_id": "171267971", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "45638", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dad ruled over the grill like a master .", "storylet_id": "228191"}], [{"original_text": "There wasn't much food left at the end of the day.", "album_id": "72157594171836398", "photo_flickr_id": "171122565", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "45638", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was n't much food left at the end of the day .", "storylet_id": "228192"}], [{"original_text": "The kiddie pool was a perfect place to cool your feet on a hot summer day.", "album_id": "72157594171836398", "photo_flickr_id": "171267521", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "45638", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kiddie pool was a perfect place to cool your feet on a hot summer day .", "storylet_id": "228193"}], [{"original_text": "Someone had so much fun, they didn't want to go to bed after their shower.", "album_id": "72157594171836398", "photo_flickr_id": "171270427", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "45638", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someone had so much fun , they did n't want to go to bed after their shower .", "storylet_id": "228194"}], [{"original_text": "We had a party to celebrate July 4th this weekend.", "album_id": "72157594171836398", "photo_flickr_id": "171268203", "setting": "last-3-pick-old-and-tell", "worker_id": "DSAL3QLMT73WI5U", "story_id": "45639", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a party to celebrate july 4th this weekend .", "storylet_id": "228195"}], [{"original_text": "Grandpa was in charge of the grill.", "album_id": "72157594171836398", "photo_flickr_id": "171267971", "setting": "last-3-pick-old-and-tell", "worker_id": "DSAL3QLMT73WI5U", "story_id": "45639", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandpa was in charge of the grill .", "storylet_id": "228196"}], [{"original_text": "The food was great and most of it was gone real fast. ", "album_id": "72157594171836398", "photo_flickr_id": "171122565", "setting": "last-3-pick-old-and-tell", "worker_id": "DSAL3QLMT73WI5U", "story_id": "45639", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food was great and most of it was gone real fast .", "storylet_id": "228197"}], [{"original_text": "Mom loved catching up with Aunt Sue.", "album_id": "72157594171836398", "photo_flickr_id": "171267521", "setting": "last-3-pick-old-and-tell", "worker_id": "DSAL3QLMT73WI5U", "story_id": "45639", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom loved catching up with aunt [female] .", "storylet_id": "228198"}], [{"original_text": "I love hanging out with my Dad. ", "album_id": "72157594171836398", "photo_flickr_id": "171270427", "setting": "last-3-pick-old-and-tell", "worker_id": "DSAL3QLMT73WI5U", "story_id": "45639", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love hanging out with my dad .", "storylet_id": "228199"}], [{"original_text": "The barbecue cookout was lots of fun.", "album_id": "72157600377471472", "photo_flickr_id": "559044099", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "45640", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the barbecue cookout was lots of fun .", "storylet_id": "228200"}], [{"original_text": "It was at a really popular fishing spot. ", "album_id": "72157600377471472", "photo_flickr_id": "559044193", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "45640", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was at a really popular fishing spot .", "storylet_id": "228201"}], [{"original_text": "This truck had tons of advertisements on it.", "album_id": "72157600377471472", "photo_flickr_id": "558750494", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "45640", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this truck had tons of advertisements on it .", "storylet_id": "228202"}], [{"original_text": "There was plenty of buns to go around.", "album_id": "72157600377471472", "photo_flickr_id": "559044997", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "45640", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was plenty of buns to go around .", "storylet_id": "228203"}], [{"original_text": "The corn barbecuing was the best part.", "album_id": "72157600377471472", "photo_flickr_id": "559044851", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "45640", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the corn barbecuing was the best part .", "storylet_id": "228204"}], [{"original_text": "The stands for the ball game were packed.", "album_id": "72157600377471472", "photo_flickr_id": "558751470", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "45641", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stands for the ball game were packed .", "storylet_id": "228205"}], [{"original_text": "The mascots were ready to go.", "album_id": "72157600377471472", "photo_flickr_id": "559044099", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "45641", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the mascots were ready to go .", "storylet_id": "228206"}], [{"original_text": "Fans watched the scoreboard closely.", "album_id": "72157600377471472", "photo_flickr_id": "558750890", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "45641", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "fans watched the scoreboard closely .", "storylet_id": "228207"}], [{"original_text": "It was a very close game.", "album_id": "72157600377471472", "photo_flickr_id": "558751752", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "45641", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a very close game .", "storylet_id": "228208"}], [{"original_text": "In the end, we won!", "album_id": "72157600377471472", "photo_flickr_id": "559046145", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "45641", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , we won !", "storylet_id": "228209"}], [{"original_text": "Mascot meeting before the game.", "album_id": "72157600377471472", "photo_flickr_id": "559044099", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45642", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mascot meeting before the game .", "storylet_id": "228210"}], [{"original_text": "Everyone picked the player they thought would do the best.", "album_id": "72157600377471472", "photo_flickr_id": "559044193", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45642", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone picked the player they thought would do the best .", "storylet_id": "228211"}], [{"original_text": "The pitcher was voted the number one.", "album_id": "72157600377471472", "photo_flickr_id": "558750494", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45642", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the pitcher was voted the number one .", "storylet_id": "228212"}], [{"original_text": "He got ready to throw the ball.", "album_id": "72157600377471472", "photo_flickr_id": "559044997", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45642", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he got ready to throw the ball .", "storylet_id": "228213"}], [{"original_text": "Then stopped and changed his mind.", "album_id": "72157600377471472", "photo_flickr_id": "559044851", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45642", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then stopped and changed his mind .", "storylet_id": "228214"}], [{"original_text": "Thousands of people went to the ball game.", "album_id": "72157600377471472", "photo_flickr_id": "558751470", "setting": "last-3-pick-old-and-tell", "worker_id": "DC9DJC7V4A7K0VB", "story_id": "45643", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "thousands of people went to the ball game .", "storylet_id": "228215"}], [{"original_text": "The show before the game was extremely entertaining.", "album_id": "72157600377471472", "photo_flickr_id": "559044099", "setting": "last-3-pick-old-and-tell", "worker_id": "DC9DJC7V4A7K0VB", "story_id": "45643", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the show before the game was extremely entertaining .", "storylet_id": "228216"}], [{"original_text": "I was anxious for the game to start though.", "album_id": "72157600377471472", "photo_flickr_id": "558750890", "setting": "last-3-pick-old-and-tell", "worker_id": "DC9DJC7V4A7K0VB", "story_id": "45643", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was anxious for the game to start though .", "storylet_id": "228217"}], [{"original_text": "I had a lot of money riding on the final score.", "album_id": "72157600377471472", "photo_flickr_id": "558751752", "setting": "last-3-pick-old-and-tell", "worker_id": "DC9DJC7V4A7K0VB", "story_id": "45643", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had a lot of money riding on the final score .", "storylet_id": "228218"}], [{"original_text": "Thankfully, my team won, and I did too!", "album_id": "72157600377471472", "photo_flickr_id": "559046145", "setting": "last-3-pick-old-and-tell", "worker_id": "DC9DJC7V4A7K0VB", "story_id": "45643", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thankfully , my team won , and i did too !", "storylet_id": "228219"}], [{"original_text": "This is the largest turn out this year for a baseball game.", "album_id": "72157600377471472", "photo_flickr_id": "558751470", "setting": "last-3-pick-old-and-tell", "worker_id": "UOF6UK0XO0LFKLR", "story_id": "45644", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the largest turn out this year for a baseball game .", "storylet_id": "228220"}], [{"original_text": "I just love the mascots uniforms.", "album_id": "72157600377471472", "photo_flickr_id": "559044099", "setting": "last-3-pick-old-and-tell", "worker_id": "UOF6UK0XO0LFKLR", "story_id": "45644", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i just love the mascots uniforms .", "storylet_id": "228221"}], [{"original_text": "Aunt Sally is wondering when the game will start. ", "album_id": "72157600377471472", "photo_flickr_id": "558750890", "setting": "last-3-pick-old-and-tell", "worker_id": "UOF6UK0XO0LFKLR", "story_id": "45644", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "aunt [female] is wondering when the game will start .", "storylet_id": "228222"}], [{"original_text": "This game is going to be a close one.", "album_id": "72157600377471472", "photo_flickr_id": "558751752", "setting": "last-3-pick-old-and-tell", "worker_id": "UOF6UK0XO0LFKLR", "story_id": "45644", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this game is going to be a close one .", "storylet_id": "228223"}], [{"original_text": "What is baseball with out the arguments?", "album_id": "72157600377471472", "photo_flickr_id": "559046145", "setting": "last-3-pick-old-and-tell", "worker_id": "UOF6UK0XO0LFKLR", "story_id": "45644", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what is baseball with out the arguments ?", "storylet_id": "228224"}], [{"original_text": "Yo yo yo. I got a story for you today.", "album_id": "72157600385894248", "photo_flickr_id": "562553404", "setting": "first-2-pick-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "45645", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yo yo yo . i got a story for you today .", "storylet_id": "228225"}], [{"original_text": "There was this zebra named Zeeb. He was just minding his business when he bumped into his enemy, White Bear. ", "album_id": "72157600385894248", "photo_flickr_id": "562514728", "setting": "first-2-pick-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "45645", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was this zebra named zeeb . he was just minding his business when he bumped into his enemy , white bear .", "storylet_id": "228226"}], [{"original_text": "White bear started at him and was like yo you got a problem?", "album_id": "72157600385894248", "photo_flickr_id": "562786159", "setting": "first-2-pick-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "45645", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "white bear started at him and was like yo you got a problem ?", "storylet_id": "228227"}], [{"original_text": "Zeeb turned to him and was like, COME AT ME BRUH. Zeeb looked super cool.", "album_id": "72157600385894248", "photo_flickr_id": "562559554", "setting": "first-2-pick-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "45645", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "zeeb turned to him and was like , come at me bruh . zeeb looked super cool .", "storylet_id": "228228"}], [{"original_text": "White Bear noticed his cool and walked away. I was like wow i need to get some of my own stripe.", "album_id": "72157600385894248", "photo_flickr_id": "562798801", "setting": "first-2-pick-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "45645", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "white bear noticed his cool and walked away . i was like wow i need to get some of my own stripe .", "storylet_id": "228229"}], [{"original_text": "Mark is cleaning out his train.", "album_id": "72157600385894248", "photo_flickr_id": "562768785", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "45646", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is cleaning out his train .", "storylet_id": "228230"}], [{"original_text": "He then goes and sees his pet polar bear.", "album_id": "72157600385894248", "photo_flickr_id": "562786159", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "45646", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he then goes and sees his pet polar bear .", "storylet_id": "228231"}], [{"original_text": "After seeing his pet polar bear a brown bear comes up to him.", "album_id": "72157600385894248", "photo_flickr_id": "562427734", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "45646", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after seeing his pet polar bear a brown bear comes up to him .", "storylet_id": "228232"}], [{"original_text": "Then an owl comes from out of nowhere.", "album_id": "72157600385894248", "photo_flickr_id": "562467436", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "45646", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then an owl comes from out of nowhere .", "storylet_id": "228233"}], [{"original_text": "A zebra comes too!", "album_id": "72157600385894248", "photo_flickr_id": "562520294", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "45646", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a zebra comes too !", "storylet_id": "228234"}], [{"original_text": "We went to the zoo today and got to see so many animals ", "album_id": "72157600385894248", "photo_flickr_id": "562553404", "setting": "last-3-pick-old-and-tell", "worker_id": "YJ54QFU5JS4J53V", "story_id": "45647", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the zoo today and got to see so many animals", "storylet_id": "228235"}], [{"original_text": "My son feel in love when we got to see the zebras ", "album_id": "72157600385894248", "photo_flickr_id": "562514728", "setting": "last-3-pick-old-and-tell", "worker_id": "YJ54QFU5JS4J53V", "story_id": "45647", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my son feel in love when we got to see the zebras", "storylet_id": "228236"}], [{"original_text": "I me myself I couldn't wait to see the polar bears jump in the water and swim ", "album_id": "72157600385894248", "photo_flickr_id": "562786159", "setting": "last-3-pick-old-and-tell", "worker_id": "YJ54QFU5JS4J53V", "story_id": "45647", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i me myself i could n't wait to see the polar bears jump in the water and swim", "storylet_id": "228237"}], [{"original_text": "We ended up making a second pass around the zebras for my son ", "album_id": "72157600385894248", "photo_flickr_id": "562559554", "setting": "last-3-pick-old-and-tell", "worker_id": "YJ54QFU5JS4J53V", "story_id": "45647", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we ended up making a second pass around the zebras for my son", "storylet_id": "228238"}], [{"original_text": "So while my son went to look at the zebras I went back to enjoy more of the polar bears ", "album_id": "72157600385894248", "photo_flickr_id": "562798801", "setting": "last-3-pick-old-and-tell", "worker_id": "YJ54QFU5JS4J53V", "story_id": "45647", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so while my son went to look at the zebras i went back to enjoy more of the polar bears", "storylet_id": "228239"}], [{"original_text": "A man was preparing the zoo for us.", "album_id": "72157600385894248", "photo_flickr_id": "562768785", "setting": "last-3-pick-old-and-tell", "worker_id": "W1VUJ7PU63H1Y52", "story_id": "45648", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a man was preparing the zoo for us .", "storylet_id": "228240"}], [{"original_text": "Once everything was ready, we saw a polar bear.", "album_id": "72157600385894248", "photo_flickr_id": "562786159", "setting": "last-3-pick-old-and-tell", "worker_id": "W1VUJ7PU63H1Y52", "story_id": "45648", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once everything was ready , we saw a polar bear .", "storylet_id": "228241"}], [{"original_text": "We also saw an oddly colored polar bear.", "album_id": "72157600385894248", "photo_flickr_id": "562427734", "setting": "last-3-pick-old-and-tell", "worker_id": "W1VUJ7PU63H1Y52", "story_id": "45648", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also saw an oddly colored polar bear .", "storylet_id": "228242"}], [{"original_text": "We were scared, and seeing an owl did not calm us.", "album_id": "72157600385894248", "photo_flickr_id": "562467436", "setting": "last-3-pick-old-and-tell", "worker_id": "W1VUJ7PU63H1Y52", "story_id": "45648", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were scared , and seeing an owl did not calm us .", "storylet_id": "228243"}], [{"original_text": "We decided to leave but our path was blocked by a zebra.", "album_id": "72157600385894248", "photo_flickr_id": "562520294", "setting": "last-3-pick-old-and-tell", "worker_id": "W1VUJ7PU63H1Y52", "story_id": "45648", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to leave but our path was blocked by a zebra .", "storylet_id": "228244"}], [{"original_text": "We went to see the Animal Kingdom, and our first stop was some gazelle like animal", "album_id": "72157600385894248", "photo_flickr_id": "562553404", "setting": "last-3-pick-old-and-tell", "worker_id": "1WWQGDKMB164CIO", "story_id": "45649", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to see the location location , and our first stop was some gazelle like animal", "storylet_id": "228245"}], [{"original_text": "Eventually we came to see the zebra, who is very majestic in his pasture", "album_id": "72157600385894248", "photo_flickr_id": "562514728", "setting": "last-3-pick-old-and-tell", "worker_id": "1WWQGDKMB164CIO", "story_id": "45649", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "eventually we came to see the zebra , who is very majestic in his pasture", "storylet_id": "228246"}], [{"original_text": "When we came to the polar bear, I couldn't help but see his moustache", "album_id": "72157600385894248", "photo_flickr_id": "562786159", "setting": "last-3-pick-old-and-tell", "worker_id": "1WWQGDKMB164CIO", "story_id": "45649", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we came to the polar bear , i could n't help but see his moustache", "storylet_id": "228247"}], [{"original_text": "We went back to see the zebra again; he's my favorite animal. His mane is so cool", "album_id": "72157600385894248", "photo_flickr_id": "562559554", "setting": "last-3-pick-old-and-tell", "worker_id": "1WWQGDKMB164CIO", "story_id": "45649", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went back to see the zebra again ; he 's my favorite animal . his mane is so cool", "storylet_id": "228248"}], [{"original_text": "When we left the park later on we passed the polar bear, who gave us a smile as we departed", "album_id": "72157600385894248", "photo_flickr_id": "562798801", "setting": "last-3-pick-old-and-tell", "worker_id": "1WWQGDKMB164CIO", "story_id": "45649", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we left the park later on we passed the polar bear , who gave us a smile as we departed", "storylet_id": "228249"}], [{"original_text": "My son was excited to go to this first baseball game with his daddy.", "album_id": "72157600391908265", "photo_flickr_id": "562782455", "setting": "first-2-pick-and-tell", "worker_id": "DC9DJC7V4A7K0VB", "story_id": "45650", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my son was excited to go to this first baseball game with his daddy .", "storylet_id": "228250"}], [{"original_text": "The two of them had such a great time together at the stadium.", "album_id": "72157600391908265", "photo_flickr_id": "562801667", "setting": "first-2-pick-and-tell", "worker_id": "DC9DJC7V4A7K0VB", "story_id": "45650", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the two of them had such a great time together at the stadium .", "storylet_id": "228251"}], [{"original_text": "The best part of the day for them both was our team winning by a few homeruns!", "album_id": "72157600391908265", "photo_flickr_id": "562987241", "setting": "first-2-pick-and-tell", "worker_id": "DC9DJC7V4A7K0VB", "story_id": "45650", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the best part of the day for them both was our team winning by a few homeruns !", "storylet_id": "228252"}], [{"original_text": "After the game, he was able to go down on the field and play.", "album_id": "72157600391908265", "photo_flickr_id": "562874643", "setting": "first-2-pick-and-tell", "worker_id": "DC9DJC7V4A7K0VB", "story_id": "45650", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the game , he was able to go down on the field and play .", "storylet_id": "228253"}], [{"original_text": "He was tired by the end of the day, but it is a day he will remember forever.", "album_id": "72157600391908265", "photo_flickr_id": "562539306", "setting": "first-2-pick-and-tell", "worker_id": "DC9DJC7V4A7K0VB", "story_id": "45650", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was tired by the end of the day , but it is a day he will remember forever .", "storylet_id": "228254"}], [{"original_text": "I went to the ball game with my family last week.", "album_id": "72157600391908265", "photo_flickr_id": "562782455", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45651", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the ball game with my family last week .", "storylet_id": "228255"}], [{"original_text": "There were a lot of empty seats in the stands.", "album_id": "72157600391908265", "photo_flickr_id": "562792161", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45651", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of empty seats in the stands .", "storylet_id": "228256"}], [{"original_text": "My dad was sitting next to me the whole time.", "album_id": "72157600391908265", "photo_flickr_id": "562801667", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45651", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my dad was sitting next to me the whole time .", "storylet_id": "228257"}], [{"original_text": "The game was very close.", "album_id": "72157600391908265", "photo_flickr_id": "562804747", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45651", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the game was very close .", "storylet_id": "228258"}], [{"original_text": "The players were very good but there was a lot of downtime in between innings.", "album_id": "72157600391908265", "photo_flickr_id": "562400126", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45651", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the players were very good but there was a lot of downtime in between innings .", "storylet_id": "228259"}], [{"original_text": "My dad took me to the baseball game because I made good grades.", "album_id": "72157600391908265", "photo_flickr_id": "562782455", "setting": "last-3-pick-old-and-tell", "worker_id": "8THCOZTW7CGC653", "story_id": "45652", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my dad took me to the baseball game because i made good grades .", "storylet_id": "228260"}], [{"original_text": "Here is me and my dad having a great time.", "album_id": "72157600391908265", "photo_flickr_id": "562801667", "setting": "last-3-pick-old-and-tell", "worker_id": "8THCOZTW7CGC653", "story_id": "45652", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is me and my dad having a great time .", "storylet_id": "228261"}], [{"original_text": "The game was very close here everyone was cheering.", "album_id": "72157600391908265", "photo_flickr_id": "562987241", "setting": "last-3-pick-old-and-tell", "worker_id": "8THCOZTW7CGC653", "story_id": "45652", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the game was very close here everyone was cheering .", "storylet_id": "228262"}], [{"original_text": "My dad took me to the field to take some pictures it was awesome.", "album_id": "72157600391908265", "photo_flickr_id": "562874643", "setting": "last-3-pick-old-and-tell", "worker_id": "8THCOZTW7CGC653", "story_id": "45652", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my dad took me to the field to take some pictures it was awesome .", "storylet_id": "228263"}], [{"original_text": "Overall we had a great day at the game, here is the last picture on the field before we left.", "album_id": "72157600391908265", "photo_flickr_id": "562539306", "setting": "last-3-pick-old-and-tell", "worker_id": "8THCOZTW7CGC653", "story_id": "45652", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall we had a great day at the game , here is the last picture on the field before we left .", "storylet_id": "228264"}], [{"original_text": "The stadium was packed with people on the day of the game.", "album_id": "72157600391908265", "photo_flickr_id": "562782455", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "45653", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stadium was packed with people on the day of the game .", "storylet_id": "228265"}], [{"original_text": "Son and father alike, watched the players triumph over the other team.", "album_id": "72157600391908265", "photo_flickr_id": "562801667", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "45653", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "son and father alike , watched the players triumph over the other team .", "storylet_id": "228266"}], [{"original_text": "They went all day, vying for the win.", "album_id": "72157600391908265", "photo_flickr_id": "562987241", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "45653", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they went all day , vying for the win .", "storylet_id": "228267"}], [{"original_text": "After the game, they got to run down onto the field, and see the place through the player's eyes.", "album_id": "72157600391908265", "photo_flickr_id": "562874643", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "45653", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the game , they got to run down onto the field , and see the place through the player 's eyes .", "storylet_id": "228268"}], [{"original_text": "They both had a great time, and were glad they came.", "album_id": "72157600391908265", "photo_flickr_id": "562539306", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "45653", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they both had a great time , and were glad they came .", "storylet_id": "228269"}], [{"original_text": "For Father's Day, this young man took his father to a Red Sox game.", "album_id": "72157600391908265", "photo_flickr_id": "562782455", "setting": "last-3-pick-old-and-tell", "worker_id": "Y8OVARWSL8NX60P", "story_id": "45654", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for father 's day , this young man took his father to a organization organization game .", "storylet_id": "228270"}], [{"original_text": "They shared snacks before the game.", "album_id": "72157600391908265", "photo_flickr_id": "562801667", "setting": "last-3-pick-old-and-tell", "worker_id": "Y8OVARWSL8NX60P", "story_id": "45654", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they shared snacks before the game .", "storylet_id": "228271"}], [{"original_text": "The game was fun and exciting.", "album_id": "72157600391908265", "photo_flickr_id": "562987241", "setting": "last-3-pick-old-and-tell", "worker_id": "Y8OVARWSL8NX60P", "story_id": "45654", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the game was fun and exciting .", "storylet_id": "228272"}], [{"original_text": "Afterward, the fans were allowed to come down to the field and meet some of the players.", "album_id": "72157600391908265", "photo_flickr_id": "562874643", "setting": "last-3-pick-old-and-tell", "worker_id": "Y8OVARWSL8NX60P", "story_id": "45654", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward , the fans were allowed to come down to the field and meet some of the players .", "storylet_id": "228273"}], [{"original_text": "And the young man caught an awesome souvenir. ", "album_id": "72157600391908265", "photo_flickr_id": "562539306", "setting": "last-3-pick-old-and-tell", "worker_id": "Y8OVARWSL8NX60P", "story_id": "45654", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the young man caught an awesome souvenir .", "storylet_id": "228274"}], [{"original_text": "The cake before it is devoured by the family.", "album_id": "72157600386539756", "photo_flickr_id": "563266319", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45655", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cake before it is devoured by the family .", "storylet_id": "228275"}], [{"original_text": "Lizzy wolfs down a piece of the delicious caek.", "album_id": "72157600386539756", "photo_flickr_id": "562936876", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45655", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lizzy wolfs down a piece of the delicious caek .", "storylet_id": "228276"}], [{"original_text": "Grandpa fixes one of the toys that girls broke.", "album_id": "72157600386539756", "photo_flickr_id": "562904006", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45655", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandpa fixes one of the toys that girls broke .", "storylet_id": "228277"}], [{"original_text": "The girls all ready to throw Lizzy into the pool.", "album_id": "72157600386539756", "photo_flickr_id": "562962784", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45655", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the girls all ready to throw lizzy into the pool .", "storylet_id": "228278"}], [{"original_text": "The more mature crowd sit and catch up around the table.", "album_id": "72157600386539756", "photo_flickr_id": "563342231", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45655", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the more mature crowd sit and catch up around the table .", "storylet_id": "228279"}], [{"original_text": "I love growing flowers in my garden, but there are a few instant favorite varieties of mine.", "album_id": "72157600386539756", "photo_flickr_id": "563281835", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "45656", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love growing flowers in my garden , but there are a few instant favorite varieties of mine .", "storylet_id": "228280"}], [{"original_text": "The white faded pink roses are some of the best in my collection of roses and they really blend in well with any color.", "album_id": "72157600386539756", "photo_flickr_id": "562919054", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "45656", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the white faded pink roses are some of the best in my collection of roses and they really blend in well with any color .", "storylet_id": "228281"}], [{"original_text": "In truth though, the hot pink ones are not just another favorite, but one that people notice the most.", "album_id": "72157600386539756", "photo_flickr_id": "562993318", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "45656", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in truth though , the hot pink ones are not just another favorite , but one that people notice the most .", "storylet_id": "228282"}], [{"original_text": "These beauties like to hide, but as my neighbor says, they hide because they are shy.", "album_id": "72157600386539756", "photo_flickr_id": "563408677", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "45656", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these beauties like to hide , but as my neighbor says , they hide because they are shy .", "storylet_id": "228283"}], [{"original_text": "At times nature creeps in even more and I get a few animal visitors. ", "album_id": "72157600386539756", "photo_flickr_id": "563069310", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "45656", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at times nature creeps in even more and i get a few animal visitors .", "storylet_id": "228284"}], [{"original_text": "There are so many different flowers in my garden.", "album_id": "72157600386539756", "photo_flickr_id": "563281835", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "45657", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are so many different flowers in my garden .", "storylet_id": "228285"}], [{"original_text": "I like the white ones especially.", "album_id": "72157600386539756", "photo_flickr_id": "562919054", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "45657", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i like the white ones especially .", "storylet_id": "228286"}], [{"original_text": "These are pink, and they are growing in great.", "album_id": "72157600386539756", "photo_flickr_id": "562993318", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "45657", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these are pink , and they are growing in great .", "storylet_id": "228287"}], [{"original_text": "Look how large the bush of flowers has gotten.", "album_id": "72157600386539756", "photo_flickr_id": "563408677", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "45657", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look how large the bush of flowers has gotten .", "storylet_id": "228288"}], [{"original_text": "I even have some friendly animals hanging around.", "album_id": "72157600386539756", "photo_flickr_id": "563069310", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "45657", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i even have some friendly animals hanging around .", "storylet_id": "228289"}], [{"original_text": "The garden had a lot of beautiful flowers in it. ", "album_id": "72157600386539756", "photo_flickr_id": "563281835", "setting": "last-3-pick-old-and-tell", "worker_id": "4BTLON8UCKFZ3QE", "story_id": "45658", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the garden had a lot of beautiful flowers in it .", "storylet_id": "228290"}], [{"original_text": "These pale pinks ones were one of my favorites.", "album_id": "72157600386539756", "photo_flickr_id": "562919054", "setting": "last-3-pick-old-and-tell", "worker_id": "4BTLON8UCKFZ3QE", "story_id": "45658", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these pale pinks ones were one of my favorites .", "storylet_id": "228291"}], [{"original_text": "The property had many of these bushes.", "album_id": "72157600386539756", "photo_flickr_id": "562993318", "setting": "last-3-pick-old-and-tell", "worker_id": "4BTLON8UCKFZ3QE", "story_id": "45658", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the property had many of these bushes .", "storylet_id": "228292"}], [{"original_text": "I wanted to cut some of these to bring inside.", "album_id": "72157600386539756", "photo_flickr_id": "563408677", "setting": "last-3-pick-old-and-tell", "worker_id": "4BTLON8UCKFZ3QE", "story_id": "45658", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i wanted to cut some of these to bring inside .", "storylet_id": "228293"}], [{"original_text": "This little guy watched us while we viewed the gardens. ", "album_id": "72157600386539756", "photo_flickr_id": "563069310", "setting": "last-3-pick-old-and-tell", "worker_id": "4BTLON8UCKFZ3QE", "story_id": "45658", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this little guy watched us while we viewed the gardens .", "storylet_id": "228294"}], [{"original_text": "I love taking pictures of flowers.", "album_id": "72157600386539756", "photo_flickr_id": "563266319", "setting": "last-3-pick-old-and-tell", "worker_id": "A8KSGRBYPKHYLBN", "story_id": "45659", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love taking pictures of flowers .", "storylet_id": "228295"}], [{"original_text": "When they are in a bunch they are beautiful.", "album_id": "72157600386539756", "photo_flickr_id": "562936876", "setting": "last-3-pick-old-and-tell", "worker_id": "A8KSGRBYPKHYLBN", "story_id": "45659", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when they are in a bunch they are beautiful .", "storylet_id": "228296"}], [{"original_text": "Even flowers that stand alone are beautiful.", "album_id": "72157600386539756", "photo_flickr_id": "562904006", "setting": "last-3-pick-old-and-tell", "worker_id": "A8KSGRBYPKHYLBN", "story_id": "45659", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even flowers that stand alone are beautiful .", "storylet_id": "228297"}], [{"original_text": "The colors are amazing.", "album_id": "72157600386539756", "photo_flickr_id": "562962784", "setting": "last-3-pick-old-and-tell", "worker_id": "A8KSGRBYPKHYLBN", "story_id": "45659", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the colors are amazing .", "storylet_id": "228298"}], [{"original_text": "Even the individual petals make a great photograph.", "album_id": "72157600386539756", "photo_flickr_id": "563342231", "setting": "last-3-pick-old-and-tell", "worker_id": "A8KSGRBYPKHYLBN", "story_id": "45659", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the individual petals make a great photograph .", "storylet_id": "228299"}], [{"original_text": "We got the the race and were extremely excited!", "album_id": "72157600452998161", "photo_flickr_id": "569375368", "setting": "first-2-pick-and-tell", "worker_id": "CZ1HHG492Z6MTKD", "story_id": "45660", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got the the race and were extremely excited !", "storylet_id": "228300"}], [{"original_text": "The racers all headed off to the trail to get started.", "album_id": "72157600452998161", "photo_flickr_id": "569375868", "setting": "first-2-pick-and-tell", "worker_id": "CZ1HHG492Z6MTKD", "story_id": "45660", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the racers all headed off to the trail to get started .", "storylet_id": "228301"}], [{"original_text": "For a long time the guy in blue was leading the pack.", "album_id": "72157600452998161", "photo_flickr_id": "569377392", "setting": "first-2-pick-and-tell", "worker_id": "CZ1HHG492Z6MTKD", "story_id": "45660", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "for a long time the guy in blue was leading the pack .", "storylet_id": "228302"}], [{"original_text": "But I was catching up with him and I knew that I had the determination to win.", "album_id": "72157600452998161", "photo_flickr_id": "569378586", "setting": "first-2-pick-and-tell", "worker_id": "CZ1HHG492Z6MTKD", "story_id": "45660", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but i was catching up with him and i knew that i had the determination to win .", "storylet_id": "228303"}], [{"original_text": "In the end some guy that we didn't even know ended up beating us both somehow, I am guessing doping was involved somehow.", "album_id": "72157600452998161", "photo_flickr_id": "569386770", "setting": "first-2-pick-and-tell", "worker_id": "CZ1HHG492Z6MTKD", "story_id": "45660", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end some guy that we did n't even know ended up beating us both somehow , i am guessing doping was involved somehow .", "storylet_id": "228304"}], [{"original_text": "The cyclists rounded up, ready for the marathon.", "album_id": "72157600452998161", "photo_flickr_id": "569375368", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "45661", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cyclists rounded up , ready for the marathon .", "storylet_id": "228305"}], [{"original_text": "They breached the woods and headed for the trail.", "album_id": "72157600452998161", "photo_flickr_id": "569375868", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "45661", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they breached the woods and headed for the trail .", "storylet_id": "228306"}], [{"original_text": "There were many types of terrain and jumps.", "album_id": "72157600452998161", "photo_flickr_id": "569377392", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "45661", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many types of terrain and jumps .", "storylet_id": "228307"}], [{"original_text": "The cyclists had to cross narrow bridges.", "album_id": "72157600452998161", "photo_flickr_id": "569388666", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "45661", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cyclists had to cross narrow bridges .", "storylet_id": "228308"}], [{"original_text": "They eventually exited the woods and stopped for a quick rest.", "album_id": "72157600452998161", "photo_flickr_id": "569833985", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "45661", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they eventually exited the woods and stopped for a quick rest .", "storylet_id": "228309"}], [{"original_text": "A group of people on bikes start to gather on a street for a ride.", "album_id": "72157600452998161", "photo_flickr_id": "569375368", "setting": "last-3-pick-old-and-tell", "worker_id": "RP7AC79TS5WD58L", "story_id": "45662", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of people on bikes start to gather on a street for a ride .", "storylet_id": "228310"}], [{"original_text": "They ride over to the edge of the trees and wait for the ride in the woods to begin.", "album_id": "72157600452998161", "photo_flickr_id": "569375868", "setting": "last-3-pick-old-and-tell", "worker_id": "RP7AC79TS5WD58L", "story_id": "45662", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they ride over to the edge of the trees and wait for the ride in the woods to begin .", "storylet_id": "228311"}], [{"original_text": "They start their journey into the wood and begin their ride.", "album_id": "72157600452998161", "photo_flickr_id": "569377392", "setting": "last-3-pick-old-and-tell", "worker_id": "RP7AC79TS5WD58L", "story_id": "45662", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they start their journey into the wood and begin their ride .", "storylet_id": "228312"}], [{"original_text": "This biker makes his way down the ramp onward into the woods.", "album_id": "72157600452998161", "photo_flickr_id": "569378586", "setting": "last-3-pick-old-and-tell", "worker_id": "RP7AC79TS5WD58L", "story_id": "45662", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this biker makes his way down the ramp onward into the woods .", "storylet_id": "228313"}], [{"original_text": "This person speeds over a bridge that hovers over a valley below.", "album_id": "72157600452998161", "photo_flickr_id": "569386770", "setting": "last-3-pick-old-and-tell", "worker_id": "RP7AC79TS5WD58L", "story_id": "45662", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this person speeds over a bridge that hovers over a valley below .", "storylet_id": "228314"}], [{"original_text": "The bikers gather for the race. ", "album_id": "72157600452998161", "photo_flickr_id": "569375368", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "45663", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bikers gather for the race .", "storylet_id": "228315"}], [{"original_text": "A team gathers in a field to discuss the route they will all take.", "album_id": "72157600452998161", "photo_flickr_id": "569375868", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "45663", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a team gathers in a field to discuss the route they will all take .", "storylet_id": "228316"}], [{"original_text": "The first biker sets off on the course on a path through a forest. ", "album_id": "72157600452998161", "photo_flickr_id": "569377392", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "45663", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first biker sets off on the course on a path through a forest .", "storylet_id": "228317"}], [{"original_text": "He overcomes obstacles as he comes across them.", "album_id": "72157600452998161", "photo_flickr_id": "569378586", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "45663", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he overcomes obstacles as he comes across them .", "storylet_id": "228318"}], [{"original_text": "He speeds over the wooden bridge feeling it shake beneath him.", "album_id": "72157600452998161", "photo_flickr_id": "569386770", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "45663", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he speeds over the wooden bridge feeling it shake beneath him .", "storylet_id": "228319"}], [{"original_text": "The bike club gathered i the town square.", "album_id": "72157600452998161", "photo_flickr_id": "569375368", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "45664", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bike club gathered i the town square .", "storylet_id": "228320"}], [{"original_text": "Before the ride we all discussed the terrain ahead.", "album_id": "72157600452998161", "photo_flickr_id": "569375868", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "45664", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before the ride we all discussed the terrain ahead .", "storylet_id": "228321"}], [{"original_text": "This rider was quite adept at jumping over obstacles.", "album_id": "72157600452998161", "photo_flickr_id": "569377392", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "45664", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this rider was quite adept at jumping over obstacles .", "storylet_id": "228322"}], [{"original_text": "One by one the riders jumped over the obstructions in the trail. ", "album_id": "72157600452998161", "photo_flickr_id": "569378586", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "45664", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one by one the riders jumped over the obstructions in the trail .", "storylet_id": "228323"}], [{"original_text": "There was a cool little bridge over the ravine.", "album_id": "72157600452998161", "photo_flickr_id": "569386770", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "45664", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a cool little bridge over the ravine .", "storylet_id": "228324"}], [{"original_text": "The umbrella catches the light.", "album_id": "72157605576271182", "photo_flickr_id": "2573144781", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45665", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the umbrella catches the light .", "storylet_id": "228325"}], [{"original_text": "He's taking a picture of you taking a picture of him.", "album_id": "72157605576271182", "photo_flickr_id": "2573144873", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45665", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he 's taking a picture of you taking a picture of him .", "storylet_id": "228326"}], [{"original_text": "They share some smiles together.", "album_id": "72157605576271182", "photo_flickr_id": "2573171773", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45665", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they share some smiles together .", "storylet_id": "228327"}], [{"original_text": "He takes a moment to kiss the baby.", "album_id": "72157605576271182", "photo_flickr_id": "2573994872", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45665", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he takes a moment to kiss the baby .", "storylet_id": "228328"}], [{"original_text": "He's getting ready to nurse that beer.", "album_id": "72157605576271182", "photo_flickr_id": "2546750901", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45665", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he 's getting ready to nurse that beer .", "storylet_id": "228329"}], [{"original_text": "Friends are gathered together having a few drinks.", "album_id": "72157605576271182", "photo_flickr_id": "2573144941", "setting": "first-2-pick-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "45666", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends are gathered together having a few drinks .", "storylet_id": "228330"}], [{"original_text": "Even the baby is enjoying some outdoor time as he takes his bottle in mom's lap.", "album_id": "72157605576271182", "photo_flickr_id": "2573171773", "setting": "first-2-pick-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "45666", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the baby is enjoying some outdoor time as he takes his bottle in mom 's lap .", "storylet_id": "228331"}], [{"original_text": "A couple of friends casually lounging in chairs.", "album_id": "72157605576271182", "photo_flickr_id": "2573994706", "setting": "first-2-pick-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "45666", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a couple of friends casually lounging in chairs .", "storylet_id": "228332"}], [{"original_text": "One guy tries out his hipster look for the camera.", "album_id": "72157605576271182", "photo_flickr_id": "2546750901", "setting": "first-2-pick-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "45666", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one guy tries out his hipster look for the camera .", "storylet_id": "228333"}], [{"original_text": "A woman sits alone at the table with a bottle of wine.", "album_id": "72157605576271182", "photo_flickr_id": "2546751223", "setting": "first-2-pick-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "45666", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a woman sits alone at the table with a bottle of wine .", "storylet_id": "228334"}], [{"original_text": "The midday sun shone orange yellow through the umbrella.", "album_id": "72157605576271182", "photo_flickr_id": "2573144781", "setting": "last-3-pick-old-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "45667", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the midday sun shone orange yellow through the umbrella .", "storylet_id": "228335"}], [{"original_text": "A semi-drunk man took a picture with an old style camera.", "album_id": "72157605576271182", "photo_flickr_id": "2573144873", "setting": "last-3-pick-old-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "45667", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a semi-drunk man took a picture with an old style camera .", "storylet_id": "228336"}], [{"original_text": "The family smiled; all except sad Suzy, who contemplated her beverage.", "album_id": "72157605576271182", "photo_flickr_id": "2573171773", "setting": "last-3-pick-old-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "45667", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family smiled ; all except sad suzy , who contemplated her beverage .", "storylet_id": "228337"}], [{"original_text": "A father tells his son he's still too young to drink. ", "album_id": "72157605576271182", "photo_flickr_id": "2573994872", "setting": "last-3-pick-old-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "45667", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a father tells his son he 's still too young to drink .", "storylet_id": "228338"}], [{"original_text": "His brother, however, is old enough to indulge, and does. ", "album_id": "72157605576271182", "photo_flickr_id": "2546750901", "setting": "last-3-pick-old-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "45667", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his brother , however , is old enough to indulge , and does .", "storylet_id": "228339"}], [{"original_text": "Having a few friends over for a back to school party makes good memories. ", "album_id": "72157605576271182", "photo_flickr_id": "2573144941", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45668", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "having a few friends over for a back to school party makes good memories .", "storylet_id": "228340"}], [{"original_text": "Sylvia and Dan brought their handsome twin boys Eric and John.", "album_id": "72157605576271182", "photo_flickr_id": "2573171773", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45668", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] and [male] brought their handsome twin boys [male] and [male] .", "storylet_id": "228341"}], [{"original_text": "This new lens cover makes Ron and Jeremy look like rock stars.", "album_id": "72157605576271182", "photo_flickr_id": "2573994706", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45668", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this new lens cover makes [male] and [male] look like rock stars .", "storylet_id": "228342"}], [{"original_text": "The black and white lens makes Dan look so sophisticated.", "album_id": "72157605576271182", "photo_flickr_id": "2546750901", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45668", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the black and white lens makes [male] look so sophisticated .", "storylet_id": "228343"}], [{"original_text": "A good time was had by all. Leslie stayed to help me clean up and drink more beer.", "album_id": "72157605576271182", "photo_flickr_id": "2546751223", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45668", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a good time was had by all . [female] stayed to help me clean up and drink more beer .", "storylet_id": "228344"}], [{"original_text": "These pictures are for an assignment for class. ", "album_id": "72157605576271182", "photo_flickr_id": "2573144781", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "45669", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these pictures are for an assignment for class .", "storylet_id": "228345"}], [{"original_text": "I took them at our cookout trying to show how light factors into photos.", "album_id": "72157605576271182", "photo_flickr_id": "2573144873", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "45669", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i took them at our cookout trying to show how light factors into photos .", "storylet_id": "228346"}], [{"original_text": "As the evening rolled on you can see the same area in different lighting.", "album_id": "72157605576271182", "photo_flickr_id": "2573171773", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "45669", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as the evening rolled on you can see the same area in different lighting .", "storylet_id": "228347"}], [{"original_text": "I loved to soft glow it had as the sun was just about to set.", "album_id": "72157605576271182", "photo_flickr_id": "2573994872", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "45669", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i loved to soft glow it had as the sun was just about to set .", "storylet_id": "228348"}], [{"original_text": "And here is the same shot without the baby, but in black and white. Hope I get an A!", "album_id": "72157605576271182", "photo_flickr_id": "2546750901", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "45669", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and here is the same shot without the baby , but in black and white . [female] i get an a !", "storylet_id": "228349"}], [{"original_text": "We came out to celebrate our uncle's 1 year sobriety this afternoon.", "album_id": "72157605678623604", "photo_flickr_id": "2589456441", "setting": "first-2-pick-and-tell", "worker_id": "IICJ4ZOIKHQYAOY", "story_id": "45670", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we came out to celebrate our uncle 's 1 year sobriety this afternoon .", "storylet_id": "228350"}], [{"original_text": "The restaurant had some gorgeous decorations.", "album_id": "72157605678623604", "photo_flickr_id": "2590292998", "setting": "first-2-pick-and-tell", "worker_id": "IICJ4ZOIKHQYAOY", "story_id": "45670", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the restaurant had some gorgeous decorations .", "storylet_id": "228351"}], [{"original_text": "Many of us had not seen each other since the intervention and caught up that day.", "album_id": "72157605678623604", "photo_flickr_id": "2590294954", "setting": "first-2-pick-and-tell", "worker_id": "IICJ4ZOIKHQYAOY", "story_id": "45670", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many of us had not seen each other since the intervention and caught up that day .", "storylet_id": "228352"}], [{"original_text": "His wife was so proud of him for reaching the achievement.", "album_id": "72157605678623604", "photo_flickr_id": "2590297146", "setting": "first-2-pick-and-tell", "worker_id": "IICJ4ZOIKHQYAOY", "story_id": "45670", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his wife was so proud of him for reaching the achievement .", "storylet_id": "228353"}], [{"original_text": "Then we huddled together to capture this moment that changed his life.", "album_id": "72157605678623604", "photo_flickr_id": "2590298622", "setting": "first-2-pick-and-tell", "worker_id": "IICJ4ZOIKHQYAOY", "story_id": "45670", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we huddled together to capture this moment that changed his life .", "storylet_id": "228354"}], [{"original_text": "They were celebrating their 20th wedding anniversary. ", "album_id": "72157605678623604", "photo_flickr_id": "2590291142", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45671", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were celebrating their 20th wedding anniversary .", "storylet_id": "228355"}], [{"original_text": "Their daughters joined them for the occasion.", "album_id": "72157605678623604", "photo_flickr_id": "2589456863", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45671", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their daughters joined them for the occasion .", "storylet_id": "228356"}], [{"original_text": "They went to a fancy and lavish restaurant.", "album_id": "72157605678623604", "photo_flickr_id": "2590292998", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45671", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they went to a fancy and lavish restaurant .", "storylet_id": "228357"}], [{"original_text": "Mom posed for a picture with her girls. ", "album_id": "72157605678623604", "photo_flickr_id": "2590294954", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45671", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom posed for a picture with her girls .", "storylet_id": "228358"}], [{"original_text": "Lastly, the whole family posed to remember the occasion. ", "album_id": "72157605678623604", "photo_flickr_id": "2589462663", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45671", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , the whole family posed to remember the occasion .", "storylet_id": "228359"}], [{"original_text": "At the dinner party we had some wine.", "album_id": "72157605678623604", "photo_flickr_id": "2590291142", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45672", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the dinner party we had some wine .", "storylet_id": "228360"}], [{"original_text": "The girls posed for a photo.", "album_id": "72157605678623604", "photo_flickr_id": "2589456863", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45672", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girls posed for a photo .", "storylet_id": "228361"}], [{"original_text": "The place was gorgeous.", "album_id": "72157605678623604", "photo_flickr_id": "2590292998", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45672", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the place was gorgeous .", "storylet_id": "228362"}], [{"original_text": "Mom and daughter picture.", "album_id": "72157605678623604", "photo_flickr_id": "2590294954", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45672", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom and daughter picture .", "storylet_id": "228363"}], [{"original_text": "The entire family posed together.", "album_id": "72157605678623604", "photo_flickr_id": "2589462663", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45672", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the entire family posed together .", "storylet_id": "228364"}], [{"original_text": "Dads retirement party went really well.", "album_id": "72157605678623604", "photo_flickr_id": "2589456441", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "45673", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dads retirement party went really well .", "storylet_id": "228365"}], [{"original_text": "He was totally surprised. And he loved the restaurant we chose. ", "album_id": "72157605678623604", "photo_flickr_id": "2590292998", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "45673", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was totally surprised . and he loved the restaurant we chose .", "storylet_id": "228366"}], [{"original_text": "Three generations right here...soon to be 4!", "album_id": "72157605678623604", "photo_flickr_id": "2590294954", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "45673", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "three generations right here ... soon to be 4 !", "storylet_id": "228367"}], [{"original_text": "35 years with the same company! WTG Dad!", "album_id": "72157605678623604", "photo_flickr_id": "2590297146", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "45673", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "35 years with the same company ! wtg dad !", "storylet_id": "228368"}], [{"original_text": "Thanks to everyone for keeping it a secret. We all had so much fun.", "album_id": "72157605678623604", "photo_flickr_id": "2590298622", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "45673", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thanks to everyone for keeping it a secret . we all had so much fun .", "storylet_id": "228369"}], [{"original_text": "It was wonderful seeing my parents again.", "album_id": "72157605678623604", "photo_flickr_id": "2590291142", "setting": "last-3-pick-old-and-tell", "worker_id": "8PVO383W30DI0ZK", "story_id": "45674", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was wonderful seeing my parents again .", "storylet_id": "228370"}], [{"original_text": "My cousin was at the party too.", "album_id": "72157605678623604", "photo_flickr_id": "2589456863", "setting": "last-3-pick-old-and-tell", "worker_id": "8PVO383W30DI0ZK", "story_id": "45674", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my cousin was at the party too .", "storylet_id": "228371"}], [{"original_text": "The restaurant they had the reunion at was beautiful.", "album_id": "72157605678623604", "photo_flickr_id": "2590292998", "setting": "last-3-pick-old-and-tell", "worker_id": "8PVO383W30DI0ZK", "story_id": "45674", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the restaurant they had the reunion at was beautiful .", "storylet_id": "228372"}], [{"original_text": "Dad got the three of us together for the photo.", "album_id": "72157605678623604", "photo_flickr_id": "2590294954", "setting": "last-3-pick-old-and-tell", "worker_id": "8PVO383W30DI0ZK", "story_id": "45674", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dad got the three of us together for the photo .", "storylet_id": "228373"}], [{"original_text": "I got my Aunt to take this picture and get Josh in it.", "album_id": "72157605678623604", "photo_flickr_id": "2589462663", "setting": "last-3-pick-old-and-tell", "worker_id": "8PVO383W30DI0ZK", "story_id": "45674", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i got my aunt to take this picture and get josh in it .", "storylet_id": "228374"}], [{"original_text": "Dad was int he kitchen with the kids.", "album_id": "72157606020232086", "photo_flickr_id": "2645033056", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45675", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dad was int he kitchen with the kids .", "storylet_id": "228375"}], [{"original_text": "Grandpa came to take them.", "album_id": "72157606020232086", "photo_flickr_id": "2644213581", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45675", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandpa came to take them .", "storylet_id": "228376"}], [{"original_text": "She was having a healthy snack outside.", "album_id": "72157606020232086", "photo_flickr_id": "2645031732", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45675", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was having a healthy snack outside .", "storylet_id": "228377"}], [{"original_text": "He was all smiles. ", "album_id": "72157606020232086", "photo_flickr_id": "2645034116", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45675", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was all smiles .", "storylet_id": "228378"}], [{"original_text": "She loved the swing.", "album_id": "72157606020232086", "photo_flickr_id": "2644220573", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45675", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she loved the swing .", "storylet_id": "228379"}], [{"original_text": "Today was my niece's birthday so we went over to celebrate.", "album_id": "72157606020232086", "photo_flickr_id": "2645033056", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45676", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was my niece 's birthday so we went over to celebrate .", "storylet_id": "228380"}], [{"original_text": "My niece had some of her favorite food to eat, including fruits.", "album_id": "72157606020232086", "photo_flickr_id": "2645031732", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45676", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my niece had some of her favorite food to eat , including fruits .", "storylet_id": "228381"}], [{"original_text": "She went to play on her new swing set after eating.", "album_id": "72157606020232086", "photo_flickr_id": "2644212155", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45676", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she went to play on her new swing set after eating .", "storylet_id": "228382"}], [{"original_text": "The adults sat in their lawn chairs supervising the children.", "album_id": "72157606020232086", "photo_flickr_id": "2645048574", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45676", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the adults sat in their lawn chairs supervising the children .", "storylet_id": "228383"}], [{"original_text": "My nephew happily kept my uncle company.", "album_id": "72157606020232086", "photo_flickr_id": "2645035708", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45676", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my nephew happily kept my uncle company .", "storylet_id": "228384"}], [{"original_text": "Today some people came over.", "album_id": "72157606020232086", "photo_flickr_id": "2645033056", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45677", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today some people came over .", "storylet_id": "228385"}], [{"original_text": "The girls enjoyed some fruit.", "album_id": "72157606020232086", "photo_flickr_id": "2645031732", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45677", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girls enjoyed some fruit .", "storylet_id": "228386"}], [{"original_text": "Then we played on the swings.", "album_id": "72157606020232086", "photo_flickr_id": "2644212155", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45677", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we played on the swings .", "storylet_id": "228387"}], [{"original_text": "The boys had a few drinks then lounged in the chair.", "album_id": "72157606020232086", "photo_flickr_id": "2645048574", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45677", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boys had a few drinks then lounged in the chair .", "storylet_id": "228388"}], [{"original_text": "Grandpa put his grandson on his knee.", "album_id": "72157606020232086", "photo_flickr_id": "2645035708", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45677", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandpa put his grandson on his knee .", "storylet_id": "228389"}], [{"original_text": "Having a wonderful dinner with relatives.", "album_id": "72157606020232086", "photo_flickr_id": "2645033056", "setting": "last-3-pick-old-and-tell", "worker_id": "KHM3HLXL6VVM6D5", "story_id": "45678", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "having a wonderful dinner with relatives .", "storylet_id": "228390"}], [{"original_text": "Jim takes care of the kids while Frank enjoys a nice cold beer.", "album_id": "72157606020232086", "photo_flickr_id": "2644213581", "setting": "last-3-pick-old-and-tell", "worker_id": "KHM3HLXL6VVM6D5", "story_id": "45678", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] takes care of the kids while [male] enjoys a nice cold beer .", "storylet_id": "228391"}], [{"original_text": "Avery loved the food, especially grapes.", "album_id": "72157606020232086", "photo_flickr_id": "2645031732", "setting": "last-3-pick-old-and-tell", "worker_id": "KHM3HLXL6VVM6D5", "story_id": "45678", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] loved the food , especially grapes .", "storylet_id": "228392"}], [{"original_text": "Tim wore a hat to keep his head cool.", "album_id": "72157606020232086", "photo_flickr_id": "2645034116", "setting": "last-3-pick-old-and-tell", "worker_id": "KHM3HLXL6VVM6D5", "story_id": "45678", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] wore a hat to keep his head cool .", "storylet_id": "228393"}], [{"original_text": "Sydney had fun swinging on the swing set.", "album_id": "72157606020232086", "photo_flickr_id": "2644220573", "setting": "last-3-pick-old-and-tell", "worker_id": "KHM3HLXL6VVM6D5", "story_id": "45678", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "location had fun swinging on the swing set .", "storylet_id": "228394"}], [{"original_text": "The family had a party that evening. ", "album_id": "72157606020232086", "photo_flickr_id": "2645033056", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45679", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family had a party that evening .", "storylet_id": "228395"}], [{"original_text": "The daughter loved her fruit and buns. ", "album_id": "72157606020232086", "photo_flickr_id": "2645031732", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45679", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the daughter loved her fruit and buns .", "storylet_id": "228396"}], [{"original_text": "She also loved to swing on the swing. ", "album_id": "72157606020232086", "photo_flickr_id": "2644212155", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45679", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she also loved to swing on the swing .", "storylet_id": "228397"}], [{"original_text": "The adults sat around talking of politics. ", "album_id": "72157606020232086", "photo_flickr_id": "2645048574", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45679", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the adults sat around talking of politics .", "storylet_id": "228398"}], [{"original_text": "And they enjoyed spending time with their kids. ", "album_id": "72157606020232086", "photo_flickr_id": "2645035708", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45679", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they enjoyed spending time with their kids .", "storylet_id": "228399"}], [{"original_text": "The bus has taken them to where they needed to go.", "album_id": "72157622888449176", "photo_flickr_id": "3391020018", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45680", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bus has taken them to where they needed to go .", "storylet_id": "228400"}], [{"original_text": "Some beautiful white flowers are seen.", "album_id": "72157622888449176", "photo_flickr_id": "3396002740", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45680", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some beautiful white flowers are seen .", "storylet_id": "228401"}], [{"original_text": "They then discovered some pink flowers.", "album_id": "72157622888449176", "photo_flickr_id": "3396002698", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45680", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they then discovered some pink flowers .", "storylet_id": "228402"}], [{"original_text": "The water sits at the base of the town.", "album_id": "72157622888449176", "photo_flickr_id": "3395989942", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45680", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the water sits at the base of the town .", "storylet_id": "228403"}], [{"original_text": "The cathedral's interior is desolate yet filled with beauty.", "album_id": "72157622888449176", "photo_flickr_id": "3395969090", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45680", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cathedral 's interior is desolate yet filled with beauty .", "storylet_id": "228404"}], [{"original_text": "We went across the river to the old city.", "album_id": "72157622888449176", "photo_flickr_id": "3395989942", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45681", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went across the river to the old city .", "storylet_id": "228405"}], [{"original_text": "There are many homes along the coastline. ", "album_id": "72157622888449176", "photo_flickr_id": "3395989930", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45681", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are many homes along the coastline .", "storylet_id": "228406"}], [{"original_text": "We traveled through town.", "album_id": "72157622888449176", "photo_flickr_id": "3395969032", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45681", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we traveled through town .", "storylet_id": "228407"}], [{"original_text": "The magnificent church was stunning. ", "album_id": "72157622888449176", "photo_flickr_id": "3395969076", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45681", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the magnificent church was stunning .", "storylet_id": "228408"}], [{"original_text": "The craftsmanship on the inside was fantastic. ", "album_id": "72157622888449176", "photo_flickr_id": "3395969090", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45681", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the craftsmanship on the inside was fantastic .", "storylet_id": "228409"}], [{"original_text": "Our bus arrived at our stop. ", "album_id": "72157622888449176", "photo_flickr_id": "3391020018", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45682", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our bus arrived at our stop .", "storylet_id": "228410"}], [{"original_text": "We snapped a few pictures of flowers. ", "album_id": "72157622888449176", "photo_flickr_id": "3396002740", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45682", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we snapped a few pictures of flowers .", "storylet_id": "228411"}], [{"original_text": "These were very pretty. ", "album_id": "72157622888449176", "photo_flickr_id": "3396002698", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45682", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these were very pretty .", "storylet_id": "228412"}], [{"original_text": "we walked the trail to the water.", "album_id": "72157622888449176", "photo_flickr_id": "3395989942", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45682", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we walked the trail to the water .", "storylet_id": "228413"}], [{"original_text": "We entered an old building.", "album_id": "72157622888449176", "photo_flickr_id": "3395969090", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45682", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we entered an old building .", "storylet_id": "228414"}], [{"original_text": "We took a tour bus to tour the city on vacation. ", "album_id": "72157622888449176", "photo_flickr_id": "3391020018", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "45683", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a tour bus to tour the city on vacation .", "storylet_id": "228415"}], [{"original_text": "We got to go through the Botanical Gardens and see some great flowers. ", "album_id": "72157622888449176", "photo_flickr_id": "3396002740", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "45683", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to go through the location location and see some great flowers .", "storylet_id": "228416"}], [{"original_text": "This Cherry Blossom tree was beautiful. ", "album_id": "72157622888449176", "photo_flickr_id": "3396002698", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "45683", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this [female] blossom tree was beautiful .", "storylet_id": "228417"}], [{"original_text": "We got to go along the river and see the entire city. ", "album_id": "72157622888449176", "photo_flickr_id": "3395989942", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "45683", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got to go along the river and see the entire city .", "storylet_id": "228418"}], [{"original_text": "Then we got to go to a old cathedral at the end of the day and see inside of it. ", "album_id": "72157622888449176", "photo_flickr_id": "3395969090", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "45683", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we got to go to a old cathedral at the end of the day and see inside of it .", "storylet_id": "228419"}], [{"original_text": "We took a bus out to the country side. ", "album_id": "72157622888449176", "photo_flickr_id": "3391020018", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45684", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a bus out to the country side .", "storylet_id": "228420"}], [{"original_text": "There was some incredible flowers in the fields out there. ", "album_id": "72157622888449176", "photo_flickr_id": "3396002740", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45684", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was some incredible flowers in the fields out there .", "storylet_id": "228421"}], [{"original_text": "As well as some great red flowers. ", "album_id": "72157622888449176", "photo_flickr_id": "3396002698", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45684", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as well as some great red flowers .", "storylet_id": "228422"}], [{"original_text": "we saw a great view of the seas side town. ", "album_id": "72157622888449176", "photo_flickr_id": "3395989942", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45684", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw a great view of the seas side town .", "storylet_id": "228423"}], [{"original_text": "And took a look inside the cathedral that was nearby. ", "album_id": "72157622888449176", "photo_flickr_id": "3395969090", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45684", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and took a look inside the cathedral that was nearby .", "storylet_id": "228424"}], [{"original_text": "Welcome to finger painting day, I'm Emmy and i'm 3.", "album_id": "72157619615714924", "photo_flickr_id": "3618291010", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45685", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "welcome to finger painting day , i 'm emmy and i 'm 3 .", "storylet_id": "228425"}], [{"original_text": "I am a little wild and out of control but I do love my finger paints.", "album_id": "72157619615714924", "photo_flickr_id": "3618291600", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45685", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i am a little wild and out of control but i do love my finger paints .", "storylet_id": "228426"}], [{"original_text": "Here is where I get paint all over my hands and I shouldn't touch my face!", "album_id": "72157619615714924", "photo_flickr_id": "3618294708", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45685", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is where i get paint all over my hands and i should n't touch my face !", "storylet_id": "228427"}], [{"original_text": "I made this for my mom and my dad. They will love this.", "album_id": "72157619615714924", "photo_flickr_id": "3618295034", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45685", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i made this for my mom and my dad . they will love this .", "storylet_id": "228428"}], [{"original_text": "Here is one that my friend made for me. I love it.", "album_id": "72157619615714924", "photo_flickr_id": "3618295444", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45685", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is one that my friend made for me . i love it .", "storylet_id": "228429"}], [{"original_text": "The kids had a blast on their first day in daycare.", "album_id": "72157619615714924", "photo_flickr_id": "3617469625", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45686", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids had a blast on their first day in daycare .", "storylet_id": "228430"}], [{"original_text": "Their first activity was to paint their foot and hand prints on a large piece of paper.", "album_id": "72157619615714924", "photo_flickr_id": "3618291600", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45686", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their first activity was to paint their foot and hand prints on a large piece of paper .", "storylet_id": "228431"}], [{"original_text": "Everyone watched on as the kids dipped their toes in paint.", "album_id": "72157619615714924", "photo_flickr_id": "3617472495", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45686", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone watched on as the kids dipped their toes in paint .", "storylet_id": "228432"}], [{"original_text": "The care workers helped the younger kids get paint on their feet.", "album_id": "72157619615714924", "photo_flickr_id": "3617472911", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45686", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the care workers helped the younger kids get paint on their feet .", "storylet_id": "228433"}], [{"original_text": "The end result was a masterpiece.", "album_id": "72157619615714924", "photo_flickr_id": "3618295034", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45686", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the end result was a masterpiece .", "storylet_id": "228434"}], [{"original_text": "Our little girl is in love with hand painting.", "album_id": "72157619615714924", "photo_flickr_id": "3618291010", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "45687", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our little girl is in love with hand painting .", "storylet_id": "228435"}], [{"original_text": "Here she is going crazy while painting, she gets in the wildest poses.", "album_id": "72157619615714924", "photo_flickr_id": "3618291600", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "45687", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here she is going crazy while painting , she gets in the wildest poses .", "storylet_id": "228436"}], [{"original_text": "She loves getting messy and never fights it.", "album_id": "72157619615714924", "photo_flickr_id": "3618294708", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "45687", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she loves getting messy and never fights it .", "storylet_id": "228437"}], [{"original_text": "She made this drawing for her father and mother.", "album_id": "72157619615714924", "photo_flickr_id": "3618295034", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "45687", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she made this drawing for her father and mother .", "storylet_id": "228438"}], [{"original_text": "And this one for her friend, shes so adorable.", "album_id": "72157619615714924", "photo_flickr_id": "3618295444", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "45687", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and this one for her friend , shes so adorable .", "storylet_id": "228439"}], [{"original_text": "Teaching the next generation to be growing artists is an important job.", "album_id": "72157619615714924", "photo_flickr_id": "3618291010", "setting": "last-3-pick-old-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "45688", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "teaching the next generation to be growing artists is an important job .", "storylet_id": "228440"}], [{"original_text": "That doesn't mean it isn't a fun one though.", "album_id": "72157619615714924", "photo_flickr_id": "3618291600", "setting": "last-3-pick-old-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "45688", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that does n't mean it is n't a fun one though .", "storylet_id": "228441"}], [{"original_text": "Today we're working on hand painting.", "album_id": "72157619615714924", "photo_flickr_id": "3618294708", "setting": "last-3-pick-old-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "45688", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "today we 're working on hand painting .", "storylet_id": "228442"}], [{"original_text": "That literally means using hands to apply the paint.", "album_id": "72157619615714924", "photo_flickr_id": "3618295034", "setting": "last-3-pick-old-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "45688", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that literally means using hands to apply the paint .", "storylet_id": "228443"}], [{"original_text": "They always find that a lot of fun, and it makes marvelous art for their homes.", "album_id": "72157619615714924", "photo_flickr_id": "3618295444", "setting": "last-3-pick-old-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "45688", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they always find that a lot of fun , and it makes marvelous art for their homes .", "storylet_id": "228444"}], [{"original_text": "Jessie was in class that morning. ", "album_id": "72157619615714924", "photo_flickr_id": "3618291010", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45689", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was in class that morning .", "storylet_id": "228445"}], [{"original_text": "The teacher wanted everyone to try hand panting. ", "album_id": "72157619615714924", "photo_flickr_id": "3618291600", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45689", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the teacher wanted everyone to try hand panting .", "storylet_id": "228446"}], [{"original_text": "She panted her hands green first. ", "album_id": "72157619615714924", "photo_flickr_id": "3618294708", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45689", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she panted her hands green first .", "storylet_id": "228447"}], [{"original_text": "And made a large board with the palm of her hand. ", "album_id": "72157619615714924", "photo_flickr_id": "3618295034", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45689", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and made a large board with the palm of her hand .", "storylet_id": "228448"}], [{"original_text": "The board was for her best friend. ", "album_id": "72157619615714924", "photo_flickr_id": "3618295444", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45689", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the board was for her best friend .", "storylet_id": "228449"}], [{"original_text": "My fortune cookie says: \"You will meet a strange dark haired lady...in bed.\" I added that last part. ", "album_id": "72157619880943327", "photo_flickr_id": "3642198830", "setting": "first-2-pick-and-tell", "worker_id": "HSKBS54MHP1BS4Y", "story_id": "45690", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my fortune cookie says : `` you will meet a strange dark haired lady ... in bed . '' i added that last part .", "storylet_id": "228450"}], [{"original_text": "I glanced across the room. There was a strange dark-haired lady sitting at a table, alone. ", "album_id": "72157619880943327", "photo_flickr_id": "3641399783", "setting": "first-2-pick-and-tell", "worker_id": "HSKBS54MHP1BS4Y", "story_id": "45690", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i glanced across the room . there was a strange dark-haired lady sitting at a table , alone .", "storylet_id": "228451"}], [{"original_text": "We talked. we liked. I invited her to meet my family. They liked her, too!", "album_id": "72157619880943327", "photo_flickr_id": "3642207922", "setting": "first-2-pick-and-tell", "worker_id": "HSKBS54MHP1BS4Y", "story_id": "45690", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we talked . we liked . i invited her to meet my family . they liked her , too !", "storylet_id": "228452"}], [{"original_text": "My mother was especially pleased. She was very happy. So was my father and my brothers. ", "album_id": "72157619880943327", "photo_flickr_id": "3642202144", "setting": "first-2-pick-and-tell", "worker_id": "HSKBS54MHP1BS4Y", "story_id": "45690", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my mother was especially pleased . she was very happy . so was my father and my brothers .", "storylet_id": "228453"}], [{"original_text": "Except for Larry. Larry bet me fifty dollars that it wouldn't last. He repeated that bet each year. Happy anniversary, Larry! This year's meal is on you!", "album_id": "72157619880943327", "photo_flickr_id": "3642208144", "setting": "first-2-pick-and-tell", "worker_id": "HSKBS54MHP1BS4Y", "story_id": "45690", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "except for [male] . [male] bet me fifty dollars that it would n't last . he repeated that bet each year . happy anniversary , [male] ! this year 's meal is on you !", "storylet_id": "228454"}], [{"original_text": "Going on a lovely date with this beautiful lady.", "album_id": "72157619880943327", "photo_flickr_id": "3641399783", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45691", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going on a lovely date with this beautiful lady .", "storylet_id": "228455"}], [{"original_text": "Here we are at B&T Steaks and Seafood. Gonna be great!!!", "album_id": "72157619880943327", "photo_flickr_id": "3641390735", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45691", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we are at b & t steaks and seafood . gon na be great ! ! !", "storylet_id": "228456"}], [{"original_text": "Here we are, my friend came along for support with his date.", "album_id": "72157619880943327", "photo_flickr_id": "3642207664", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45691", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here we are , my friend came along for support with his date .", "storylet_id": "228457"}], [{"original_text": "Here is my food, Looks oh so good.", "album_id": "72157619880943327", "photo_flickr_id": "3641396131", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45691", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is my food , looks oh so good .", "storylet_id": "228458"}], [{"original_text": "Here is hers and it also looks good. I wanna ask her if she'll share.", "album_id": "72157619880943327", "photo_flickr_id": "3641396385", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45691", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is hers and it also looks good . i wan na ask her if she 'll share .", "storylet_id": "228459"}], [{"original_text": "It was our first dinner with our families.", "album_id": "72157619880943327", "photo_flickr_id": "3642198830", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "45692", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was our first dinner with our families .", "storylet_id": "228460"}], [{"original_text": "It was a chance for them to meet before my fiance and me got married.", "album_id": "72157619880943327", "photo_flickr_id": "3641399783", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "45692", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a chance for them to meet before my fiance and me got married .", "storylet_id": "228461"}], [{"original_text": "It was a bit nerve wracking, but we held in there.", "album_id": "72157619880943327", "photo_flickr_id": "3642207922", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "45692", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a bit nerve wracking , but we held in there .", "storylet_id": "228462"}], [{"original_text": "Her mom an dad were actually pretty cool people.", "album_id": "72157619880943327", "photo_flickr_id": "3642202144", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "45692", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her mom an dad were actually pretty cool people .", "storylet_id": "228463"}], [{"original_text": "Overall I think it went pretty well.", "album_id": "72157619880943327", "photo_flickr_id": "3642208144", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "45692", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall i think it went pretty well .", "storylet_id": "228464"}], [{"original_text": "our family went to dinner that evening. ", "album_id": "72157619880943327", "photo_flickr_id": "3642198830", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45693", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family went to dinner that evening .", "storylet_id": "228465"}], [{"original_text": "Sarah really liked the food. ", "album_id": "72157619880943327", "photo_flickr_id": "3641399783", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45693", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] really liked the food .", "storylet_id": "228466"}], [{"original_text": "Everyone had lively conversation. ", "album_id": "72157619880943327", "photo_flickr_id": "3642207922", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45693", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone had lively conversation .", "storylet_id": "228467"}], [{"original_text": "and we saw friends we hadn't seen in a while. ", "album_id": "72157619880943327", "photo_flickr_id": "3642202144", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45693", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and we saw friends we had n't seen in a while .", "storylet_id": "228468"}], [{"original_text": "everyone was satisfied at the end. ", "album_id": "72157619880943327", "photo_flickr_id": "3642208144", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45693", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was satisfied at the end .", "storylet_id": "228469"}], [{"original_text": "Every month, the family likes to get together for a large meal. ", "album_id": "72157619880943327", "photo_flickr_id": "3642198830", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "45694", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every month , the family likes to get together for a large meal .", "storylet_id": "228470"}], [{"original_text": "This month, they decided to go to a steak, seaford and wine bar. ", "album_id": "72157619880943327", "photo_flickr_id": "3641399783", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "45694", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this month , they decided to go to a steak , seaford and wine bar .", "storylet_id": "228471"}], [{"original_text": "They talked about work and school. ", "album_id": "72157619880943327", "photo_flickr_id": "3642207922", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "45694", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they talked about work and school .", "storylet_id": "228472"}], [{"original_text": "The parents love hearing about how their children are doing. ", "album_id": "72157619880943327", "photo_flickr_id": "3642202144", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "45694", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the parents love hearing about how their children are doing .", "storylet_id": "228473"}], [{"original_text": "They were especially excited to learn that three of their sons were planning a new startup company.", "album_id": "72157619880943327", "photo_flickr_id": "3642208144", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "45694", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were especially excited to learn that three of their sons were planning a new startup company .", "storylet_id": "228474"}], [{"original_text": "We all waited anxiously for the parade to start.", "album_id": "72157620102507052", "photo_flickr_id": "3646995419", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45695", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all waited anxiously for the parade to start .", "storylet_id": "228475"}], [{"original_text": "The VFW led it off with the flags.", "album_id": "72157620102507052", "photo_flickr_id": "3646998081", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45695", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the vfw led it off with the flags .", "storylet_id": "228476"}], [{"original_text": "Then came our High School Marching Band.", "album_id": "72157620102507052", "photo_flickr_id": "3647000819", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45695", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then came our high school marching band .", "storylet_id": "228477"}], [{"original_text": "The color guard did and awesome job.", "album_id": "72157620102507052", "photo_flickr_id": "3647819264", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45695", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the color guard did and awesome job .", "storylet_id": "228478"}], [{"original_text": "The Grand Marshal finished the parade up in a beautiful classic car.", "album_id": "72157620102507052", "photo_flickr_id": "3647840902", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45695", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the grand marshal finished the parade up in a beautiful classic car .", "storylet_id": "228479"}], [{"original_text": "Onlookers gathered on the sides of the street for the parade.", "album_id": "72157620102507052", "photo_flickr_id": "3646995419", "setting": "first-2-pick-and-tell", "worker_id": "IICJ4ZOIKHQYAOY", "story_id": "45696", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "onlookers gathered on the sides of the street for the parade .", "storylet_id": "228480"}], [{"original_text": "The flag corps led the parade down the streets.", "album_id": "72157620102507052", "photo_flickr_id": "3646998081", "setting": "first-2-pick-and-tell", "worker_id": "IICJ4ZOIKHQYAOY", "story_id": "45696", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flag corps led the parade down the streets .", "storylet_id": "228481"}], [{"original_text": "Then the local marching band entertained us.", "album_id": "72157620102507052", "photo_flickr_id": "3647009225", "setting": "first-2-pick-and-tell", "worker_id": "IICJ4ZOIKHQYAOY", "story_id": "45696", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the local marching band entertained us .", "storylet_id": "228482"}], [{"original_text": "The flag twirlers came out, but had some problems staying in sync.", "album_id": "72157620102507052", "photo_flickr_id": "3647819264", "setting": "first-2-pick-and-tell", "worker_id": "IICJ4ZOIKHQYAOY", "story_id": "45696", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the flag twirlers came out , but had some problems staying in sync .", "storylet_id": "228483"}], [{"original_text": "The Mayor closed up the parade, waving at the crowd as he passed. ", "album_id": "72157620102507052", "photo_flickr_id": "3647840902", "setting": "first-2-pick-and-tell", "worker_id": "IICJ4ZOIKHQYAOY", "story_id": "45696", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the mayor closed up the parade , waving at the crowd as he passed .", "storylet_id": "228484"}], [{"original_text": "We all sat down and watched the parade.", "album_id": "72157620102507052", "photo_flickr_id": "3646995419", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45697", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all sat down and watched the parade .", "storylet_id": "228485"}], [{"original_text": "The color guard waked by.", "album_id": "72157620102507052", "photo_flickr_id": "3646998081", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45697", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the color guard waked by .", "storylet_id": "228486"}], [{"original_text": "The marching band walked by.", "album_id": "72157620102507052", "photo_flickr_id": "3647000819", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45697", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the marching band walked by .", "storylet_id": "228487"}], [{"original_text": "The flags waved too.", "album_id": "72157620102507052", "photo_flickr_id": "3647819264", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45697", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the flags waved too .", "storylet_id": "228488"}], [{"original_text": "Then a classic car came by.", "album_id": "72157620102507052", "photo_flickr_id": "3647840902", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45697", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then a classic car came by .", "storylet_id": "228489"}], [{"original_text": "It's parade day, and the whole town turns out to watch.", "album_id": "72157620102507052", "photo_flickr_id": "3646995419", "setting": "last-3-pick-old-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "45698", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's parade day , and the whole town turns out to watch .", "storylet_id": "228490"}], [{"original_text": "There are those who serve our country, and the crowds cheer.", "album_id": "72157620102507052", "photo_flickr_id": "3646998081", "setting": "last-3-pick-old-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "45698", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are those who serve our country , and the crowds cheer .", "storylet_id": "228491"}], [{"original_text": "There are the bands, and the music is loud but thankfully well performed.", "album_id": "72157620102507052", "photo_flickr_id": "3647000819", "setting": "last-3-pick-old-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "45698", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are the bands , and the music is loud but thankfully well performed .", "storylet_id": "228492"}], [{"original_text": "The flags are always fun to watch.", "album_id": "72157620102507052", "photo_flickr_id": "3647819264", "setting": "last-3-pick-old-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "45698", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the flags are always fun to watch .", "storylet_id": "228493"}], [{"original_text": "And of course you get the old cars and their owners traveling through.", "album_id": "72157620102507052", "photo_flickr_id": "3647840902", "setting": "last-3-pick-old-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "45698", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and of course you get the old cars and their owners traveling through .", "storylet_id": "228494"}], [{"original_text": "We all went to the parade.", "album_id": "72157620102507052", "photo_flickr_id": "3646995419", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45699", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all went to the parade .", "storylet_id": "228495"}], [{"original_text": "They had a cool marching group to start. ", "album_id": "72157620102507052", "photo_flickr_id": "3646998081", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45699", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a cool marching group to start .", "storylet_id": "228496"}], [{"original_text": "Then came the school marching band. ", "album_id": "72157620102507052", "photo_flickr_id": "3647000819", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45699", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then came the school marching band .", "storylet_id": "228497"}], [{"original_text": "They had some women spinning batons afterwards", "album_id": "72157620102507052", "photo_flickr_id": "3647819264", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45699", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had some women spinning batons afterwards", "storylet_id": "228498"}], [{"original_text": "And a car with some of the local businesses near the end. ", "album_id": "72157620102507052", "photo_flickr_id": "3647840902", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45699", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and a car with some of the local businesses near the end .", "storylet_id": "228499"}], [{"original_text": "Taking a trip with the kids is fun. ", "album_id": "72157620318549638", "photo_flickr_id": "3652284733", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "45700", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "taking a trip with the kids is fun .", "storylet_id": "228500"}], [{"original_text": "Loading everything up for the trip is not. ", "album_id": "72157620318549638", "photo_flickr_id": "3653084102", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "45700", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "loading everything up for the trip is not .", "storylet_id": "228501"}], [{"original_text": "But luckily there is a lot of room in the minivan. ", "album_id": "72157620318549638", "photo_flickr_id": "3652289461", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "45700", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but luckily there is a lot of room in the minivan .", "storylet_id": "228502"}], [{"original_text": "And the kids are pretty well behaved on long trips. ", "album_id": "72157620318549638", "photo_flickr_id": "3653088450", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "45700", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the kids are pretty well behaved on long trips .", "storylet_id": "228503"}], [{"original_text": "So the open road isn't that bad at all. ", "album_id": "72157620318549638", "photo_flickr_id": "3652300639", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "45700", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so the open road is n't that bad at all .", "storylet_id": "228504"}], [{"original_text": "We packed for the trip that we were taking. ", "album_id": "72157620318549638", "photo_flickr_id": "3653084102", "setting": "first-2-pick-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45701", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we packed for the trip that we were taking .", "storylet_id": "228505"}], [{"original_text": "We had to take the car for a long period of time. ", "album_id": "72157620318549638", "photo_flickr_id": "3653088450", "setting": "first-2-pick-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45701", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to take the car for a long period of time .", "storylet_id": "228506"}], [{"original_text": "We saw a low rider truck along the way. ", "album_id": "72157620318549638", "photo_flickr_id": "3652294045", "setting": "first-2-pick-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45701", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw a low rider truck along the way .", "storylet_id": "228507"}], [{"original_text": "We boarded our plan and flew to our final destination. ", "album_id": "72157620318549638", "photo_flickr_id": "3652326153", "setting": "first-2-pick-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45701", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we boarded our plan and flew to our final destination .", "storylet_id": "228508"}], [{"original_text": "We spent a few nights at the hotel. ", "album_id": "72157620318549638", "photo_flickr_id": "3653126646", "setting": "first-2-pick-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45701", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we spent a few nights at the hotel .", "storylet_id": "228509"}], [{"original_text": "Everybody's packed for the trip.", "album_id": "72157620318549638", "photo_flickr_id": "3653084102", "setting": "last-3-pick-old-and-tell", "worker_id": "8PVO383W30DI0ZK", "story_id": "45702", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everybody 's packed for the trip .", "storylet_id": "228510"}], [{"original_text": "Kids are in the car and ready to go.", "album_id": "72157620318549638", "photo_flickr_id": "3653088450", "setting": "last-3-pick-old-and-tell", "worker_id": "8PVO383W30DI0ZK", "story_id": "45702", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "kids are in the car and ready to go .", "storylet_id": "228511"}], [{"original_text": "We dropped the rental off and Finn got a picture next to the car.", "album_id": "72157620318549638", "photo_flickr_id": "3652294045", "setting": "last-3-pick-old-and-tell", "worker_id": "8PVO383W30DI0ZK", "story_id": "45702", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we dropped the rental off and [male] got a picture next to the car .", "storylet_id": "228512"}], [{"original_text": "Mike asked us if this was our plane.", "album_id": "72157620318549638", "photo_flickr_id": "3652326153", "setting": "last-3-pick-old-and-tell", "worker_id": "8PVO383W30DI0ZK", "story_id": "45702", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] asked us if this was our plane .", "storylet_id": "228513"}], [{"original_text": "We spent the night in the hotel after a long day of travel.", "album_id": "72157620318549638", "photo_flickr_id": "3653126646", "setting": "last-3-pick-old-and-tell", "worker_id": "8PVO383W30DI0ZK", "story_id": "45702", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we spent the night in the hotel after a long day of travel .", "storylet_id": "228514"}], [{"original_text": "the family packed their luggage to take a vacation.", "album_id": "72157620318549638", "photo_flickr_id": "3653084102", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "45703", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family packed their luggage to take a vacation .", "storylet_id": "228515"}], [{"original_text": "dad was driving and everyone was loaded in the car ready to go.", "album_id": "72157620318549638", "photo_flickr_id": "3653088450", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "45703", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dad was driving and everyone was loaded in the car ready to go .", "storylet_id": "228516"}], [{"original_text": "they stopped to check out a truck for sale and their son took a photo by it.", "album_id": "72157620318549638", "photo_flickr_id": "3652294045", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "45703", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they stopped to check out a truck for sale and their son took a photo by it .", "storylet_id": "228517"}], [{"original_text": "off to the vacation they go as they fly away on a 747 airplane.", "album_id": "72157620318549638", "photo_flickr_id": "3652326153", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "45703", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "off to the vacation they go as they fly away on a 747 airplane .", "storylet_id": "228518"}], [{"original_text": "now it is time to sleep. everyone is in the bed and ready to call it a night.", "album_id": "72157620318549638", "photo_flickr_id": "3653126646", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "45703", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now it is time to sleep . everyone is in the bed and ready to call it a night .", "storylet_id": "228519"}], [{"original_text": "The kids got up early for our road trip .", "album_id": "72157620318549638", "photo_flickr_id": "3652284733", "setting": "last-3-pick-old-and-tell", "worker_id": "KHM3HLXL6VVM6D5", "story_id": "45704", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids got up early for our road trip .", "storylet_id": "228520"}], [{"original_text": "Everyone's suitcases and bags are packed up and ready to go.", "album_id": "72157620318549638", "photo_flickr_id": "3653084102", "setting": "last-3-pick-old-and-tell", "worker_id": "KHM3HLXL6VVM6D5", "story_id": "45704", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone 's suitcases and bags are packed up and ready to go .", "storylet_id": "228521"}], [{"original_text": "The suitcases have been loaded into the car.", "album_id": "72157620318549638", "photo_flickr_id": "3652289461", "setting": "last-3-pick-old-and-tell", "worker_id": "KHM3HLXL6VVM6D5", "story_id": "45704", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the suitcases have been loaded into the car .", "storylet_id": "228522"}], [{"original_text": "Selfie from the driver's seat. This might be dangerous if I was actually driving, but thankfully I'm not!", "album_id": "72157620318549638", "photo_flickr_id": "3653088450", "setting": "last-3-pick-old-and-tell", "worker_id": "KHM3HLXL6VVM6D5", "story_id": "45704", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "selfie from the driver 's seat . this might be dangerous if i was actually driving , but thankfully i 'm not !", "storylet_id": "228523"}], [{"original_text": "The country road is beautiful. 62 miles to go!", "album_id": "72157620318549638", "photo_flickr_id": "3652300639", "setting": "last-3-pick-old-and-tell", "worker_id": "KHM3HLXL6VVM6D5", "story_id": "45704", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the country road is beautiful . 62 miles to go !", "storylet_id": "228524"}], [{"original_text": "I went hiking with my boyfriend today in the national park.", "album_id": "72157627033774424", "photo_flickr_id": "5865045155", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45705", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went hiking with my boyfriend today in the national park .", "storylet_id": "228525"}], [{"original_text": "We crossed a bridge while we were walking through.", "album_id": "72157627033774424", "photo_flickr_id": "5865030553", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45705", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we crossed a bridge while we were walking through .", "storylet_id": "228526"}], [{"original_text": "The bridge passed over this breathtaking river.", "album_id": "72157627033774424", "photo_flickr_id": "5865040475", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45705", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bridge passed over this breathtaking river .", "storylet_id": "228527"}], [{"original_text": "We reached a cave and took a couple photos there.", "album_id": "72157627033774424", "photo_flickr_id": "5865583388", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45705", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we reached a cave and took a couple photos there .", "storylet_id": "228528"}], [{"original_text": "The national park is truly beautiful and I can't wait to come again.", "album_id": "72157627033774424", "photo_flickr_id": "5865589366", "setting": "first-2-pick-and-tell", "worker_id": "DYFKA3W4AT8MUU8", "story_id": "45705", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the national park is truly beautiful and i ca n't wait to come again .", "storylet_id": "228529"}], [{"original_text": "Today we finally arrived to our California destination.", "album_id": "72157627033774424", "photo_flickr_id": "5865033829", "setting": "first-2-pick-and-tell", "worker_id": "RV57GPD9FE0X4EV", "story_id": "45706", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we finally arrived to our location destination .", "storylet_id": "228530"}], [{"original_text": "Brock wanted a serious photo of himself sitting next to the Redwood sign.", "album_id": "72157627033774424", "photo_flickr_id": "5865046933", "setting": "first-2-pick-and-tell", "worker_id": "RV57GPD9FE0X4EV", "story_id": "45706", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] wanted a serious photo of himself sitting next to the location sign .", "storylet_id": "228531"}], [{"original_text": "The scenery here was absolutely breathtaking with the mountains and the beautiful trees.", "album_id": "72157627033774424", "photo_flickr_id": "5865032823", "setting": "first-2-pick-and-tell", "worker_id": "RV57GPD9FE0X4EV", "story_id": "45706", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the scenery here was absolutely breathtaking with the mountains and the beautiful trees .", "storylet_id": "228532"}], [{"original_text": "Stumbled upon a solar toilet, craziest thing I've seen lately!", "album_id": "72157627033774424", "photo_flickr_id": "5865592436", "setting": "first-2-pick-and-tell", "worker_id": "RV57GPD9FE0X4EV", "story_id": "45706", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "stumbled upon a solar toilet , craziest thing i 've seen lately !", "storylet_id": "228533"}], [{"original_text": "The best part of the day was standing next to these big beautiful trees, nothing like nature to put everything into perspective.", "album_id": "72157627033774424", "photo_flickr_id": "5865053595", "setting": "first-2-pick-and-tell", "worker_id": "RV57GPD9FE0X4EV", "story_id": "45706", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part of the day was standing next to these big beautiful trees , nothing like nature to put everything into perspective .", "storylet_id": "228534"}], [{"original_text": "She poses at the California state line.", "album_id": "72157627033774424", "photo_flickr_id": "5865033829", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45707", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she poses at the location state line .", "storylet_id": "228535"}], [{"original_text": "He's happy to be in the redwood forest.", "album_id": "72157627033774424", "photo_flickr_id": "5865046933", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45707", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he 's happy to be in the redwood forest .", "storylet_id": "228536"}], [{"original_text": "They pose together at the vista.", "album_id": "72157627033774424", "photo_flickr_id": "5865032823", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45707", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they pose together at the vista .", "storylet_id": "228537"}], [{"original_text": "The solar toilet is explained in the diagram.", "album_id": "72157627033774424", "photo_flickr_id": "5865592436", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45707", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the solar toilet is explained in the diagram .", "storylet_id": "228538"}], [{"original_text": "The trees make them look like little insects.", "album_id": "72157627033774424", "photo_flickr_id": "5865053595", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45707", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the trees make them look like little insects .", "storylet_id": "228539"}], [{"original_text": "Becca and Bob posed for a picture before their hike.", "album_id": "72157627033774424", "photo_flickr_id": "5865045155", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "45708", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "becca and [male] posed for a picture before their hike .", "storylet_id": "228540"}], [{"original_text": "We hiked over this bridge. It felt a little unstable.", "album_id": "72157627033774424", "photo_flickr_id": "5865030553", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "45708", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we hiked over this bridge . it felt a little unstable .", "storylet_id": "228541"}], [{"original_text": "The water was really roaring fast. The water was really cold.", "album_id": "72157627033774424", "photo_flickr_id": "5865040475", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "45708", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water was really roaring fast . the water was really cold .", "storylet_id": "228542"}], [{"original_text": "The rocks were neat to look at. We wanted to see it all.", "album_id": "72157627033774424", "photo_flickr_id": "5865583388", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "45708", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rocks were neat to look at . we wanted to see it all .", "storylet_id": "228543"}], [{"original_text": "At the end of the day we were at the top. The view was just beautiful.", "album_id": "72157627033774424", "photo_flickr_id": "5865589366", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "45708", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day we were at the top . the view was just beautiful .", "storylet_id": "228544"}], [{"original_text": "we went for a hike in northern California.", "album_id": "72157627033774424", "photo_flickr_id": "5865033829", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45709", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went for a hike in northern location .", "storylet_id": "228545"}], [{"original_text": "We crossed through the redwood national park. ", "album_id": "72157627033774424", "photo_flickr_id": "5865046933", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45709", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we crossed through the redwood national park .", "storylet_id": "228546"}], [{"original_text": "We climbed up some small mountains.", "album_id": "72157627033774424", "photo_flickr_id": "5865032823", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45709", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we climbed up some small mountains .", "storylet_id": "228547"}], [{"original_text": "And laughed at the novelty of the solar toilet.", "album_id": "72157627033774424", "photo_flickr_id": "5865592436", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45709", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and laughed at the novelty of the solar toilet .", "storylet_id": "228548"}], [{"original_text": "We found a really large redwood tree. ", "album_id": "72157627033774424", "photo_flickr_id": "5865053595", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45709", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we found a really large redwood tree .", "storylet_id": "228549"}], [{"original_text": "Mack went on an expedition recently to the mountains of Colorado.", "album_id": "72157632050169766", "photo_flickr_id": "8193554512", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "45710", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] went on an expedition recently to the mountains of location .", "storylet_id": "228550"}], [{"original_text": "Mack's friend Donnie went with him on the expedition.", "album_id": "72157632050169766", "photo_flickr_id": "8193548324", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "45710", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] 's friend [male] went with him on the expedition .", "storylet_id": "228551"}], [{"original_text": "They came across an enormous waterfall that took their breath away.", "album_id": "72157632050169766", "photo_flickr_id": "8193553844", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "45710", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they came across an enormous waterfall that took their breath away .", "storylet_id": "228552"}], [{"original_text": "While walking a trail they could see a vast mountain in the background.", "album_id": "72157632050169766", "photo_flickr_id": "8192458069", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "45710", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while walking a trail they could see a vast mountain in the background .", "storylet_id": "228553"}], [{"original_text": "After the expedition was over Mack was ready to get home and rest up and reflect on his experience.", "album_id": "72157632050169766", "photo_flickr_id": "8193544482", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "45710", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the expedition was over [male] was ready to get home and rest up and reflect on his experience .", "storylet_id": "228554"}], [{"original_text": "The couple went on vacation.", "album_id": "72157632050169766", "photo_flickr_id": "8192467415", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "45711", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple went on vacation .", "storylet_id": "228555"}], [{"original_text": "He dressed for the outdoors.", "album_id": "72157632050169766", "photo_flickr_id": "8193554512", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "45711", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he dressed for the outdoors .", "storylet_id": "228556"}], [{"original_text": "They did a lot of exploring.", "album_id": "72157632050169766", "photo_flickr_id": "8193548324", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "45711", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they did a lot of exploring .", "storylet_id": "228557"}], [{"original_text": "They had to be careful when walking on the rough terrain.", "album_id": "72157632050169766", "photo_flickr_id": "8192457121", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "45711", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had to be careful when walking on the rough terrain .", "storylet_id": "228558"}], [{"original_text": "They really subscribed to the philosophy on this truck: one life-live it.", "album_id": "72157632050169766", "photo_flickr_id": "8193544482", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "45711", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they really subscribed to the philosophy on this truck : one life-live it .", "storylet_id": "228559"}], [{"original_text": "Today is the day of the big hike.", "album_id": "72157632050169766", "photo_flickr_id": "8193554512", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "45712", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is the day of the big hike .", "storylet_id": "228560"}], [{"original_text": "Everyone came out to do this journey together.", "album_id": "72157632050169766", "photo_flickr_id": "8193548324", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "45712", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone came out to do this journey together .", "storylet_id": "228561"}], [{"original_text": "The waterfall is beautiful.", "album_id": "72157632050169766", "photo_flickr_id": "8193553844", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "45712", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the waterfall is beautiful .", "storylet_id": "228562"}], [{"original_text": "The guy has definitely accomplish his mission.", "album_id": "72157632050169766", "photo_flickr_id": "8192458069", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "45712", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guy has definitely accomplish his mission .", "storylet_id": "228563"}], [{"original_text": "It is now time to go home.", "album_id": "72157632050169766", "photo_flickr_id": "8193544482", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "45712", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is now time to go home .", "storylet_id": "228564"}], [{"original_text": "This man is going hiking.", "album_id": "72157632050169766", "photo_flickr_id": "8193554512", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "45713", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this man is going hiking .", "storylet_id": "228565"}], [{"original_text": "The trail goes through many different types of natural landmarks.", "album_id": "72157632050169766", "photo_flickr_id": "8193548324", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "45713", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the trail goes through many different types of natural landmarks .", "storylet_id": "228566"}], [{"original_text": "This waterfall is 15 miles from where the party started the hike. ", "album_id": "72157632050169766", "photo_flickr_id": "8193553844", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "45713", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this waterfall is 15 miles from where the party started the hike .", "storylet_id": "228567"}], [{"original_text": "These rock walls line the trail.", "album_id": "72157632050169766", "photo_flickr_id": "8192458069", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "45713", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these rock walls line the trail .", "storylet_id": "228568"}], [{"original_text": "Dan and Dave loved going on nature hikes.", "album_id": "72157632050169766", "photo_flickr_id": "8193544482", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "45713", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] and [male] loved going on nature hikes .", "storylet_id": "228569"}], [{"original_text": "A view of our bed and breakfast from the hillside.", "album_id": "72157632050169766", "photo_flickr_id": "8192467415", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45714", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a view of our bed and breakfast from the hillside .", "storylet_id": "228570"}], [{"original_text": "Tom hiking up the trail and posing for a picture.", "album_id": "72157632050169766", "photo_flickr_id": "8193554512", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45714", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] hiking up the trail and posing for a picture .", "storylet_id": "228571"}], [{"original_text": "A long line of folks ahead of us trying to make it to the top.", "album_id": "72157632050169766", "photo_flickr_id": "8193548324", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45714", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a long line of folks ahead of us trying to make it to the top .", "storylet_id": "228572"}], [{"original_text": "This is our group heading back down after making the summit.", "album_id": "72157632050169766", "photo_flickr_id": "8192457121", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45714", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is our group heading back down after making the summit .", "storylet_id": "228573"}], [{"original_text": "Back at the truck and heading in for some food.", "album_id": "72157632050169766", "photo_flickr_id": "8193544482", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45714", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "back at the truck and heading in for some food .", "storylet_id": "228574"}], [{"original_text": "This is what all men want during a bit of relaxation for father's day. ", "album_id": "72157634119717615", "photo_flickr_id": "9042865770", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "45715", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is what all men want during a bit of relaxation for father 's day .", "storylet_id": "228575"}], [{"original_text": "This is the very reason why my husband wanted to come here for dinner. ", "album_id": "72157634119717615", "photo_flickr_id": "9042864672", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "45715", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the very reason why my husband wanted to come here for dinner .", "storylet_id": "228576"}], [{"original_text": "I thought it was very nice of the waitress to write this on the blackboard at above our table. ", "album_id": "72157634119717615", "photo_flickr_id": "9042867800", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "45715", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i thought it was very nice of the waitress to write this on the blackboard at above our table .", "storylet_id": "228577"}], [{"original_text": "I was waiting to see what the menu specials are. ", "album_id": "72157634119717615", "photo_flickr_id": "9042863518", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "45715", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was waiting to see what the menu specials are .", "storylet_id": "228578"}], [{"original_text": "Happy Father's Day to all the awesome dad's out there.", "album_id": "72157634119717615", "photo_flickr_id": "9042862628", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "45715", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "happy father 's day to all the awesome dad 's out there .", "storylet_id": "228579"}], [{"original_text": "Almost every Dad likes Beer. ", "album_id": "72157634119717615", "photo_flickr_id": "9042865770", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "45716", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "almost every dad likes beer .", "storylet_id": "228580"}], [{"original_text": "Fathers Day is a great day for Dads. ", "album_id": "72157634119717615", "photo_flickr_id": "9040637067", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "45716", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fathers day is a great day for dads .", "storylet_id": "228581"}], [{"original_text": "There was free beer for dad! ", "album_id": "72157634119717615", "photo_flickr_id": "9042864672", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "45716", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was free beer for dad !", "storylet_id": "228582"}], [{"original_text": "The pub took reservations early. ", "album_id": "72157634119717615", "photo_flickr_id": "9042859820", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "45716", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pub took reservations early .", "storylet_id": "228583"}], [{"original_text": "Lots of people took their fathers out for free beer. ", "album_id": "72157634119717615", "photo_flickr_id": "9042863518", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "45716", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lots of people took their fathers out for free beer .", "storylet_id": "228584"}], [{"original_text": "It was father's day.", "album_id": "72157634119717615", "photo_flickr_id": "9042865770", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "45717", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was father 's day .", "storylet_id": "228585"}], [{"original_text": "There is nothing my dad likes more than food and beer.", "album_id": "72157634119717615", "photo_flickr_id": "9042864672", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "45717", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is nothing my dad likes more than food and beer .", "storylet_id": "228586"}], [{"original_text": "So I search for the best deal I could find to get him what he wanted.", "album_id": "72157634119717615", "photo_flickr_id": "9042867800", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "45717", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so i search for the best deal i could find to get him what he wanted .", "storylet_id": "228587"}], [{"original_text": " We ended up at a small bar that was running a great food special.", "album_id": "72157634119717615", "photo_flickr_id": "9042863518", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "45717", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we ended up at a small bar that was running a great food special .", "storylet_id": "228588"}], [{"original_text": "We set and talked and drink beer together, it was a great time.", "album_id": "72157634119717615", "photo_flickr_id": "9042862628", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "45717", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we set and talked and drink beer together , it was a great time .", "storylet_id": "228589"}], [{"original_text": "I ten bars at a local pub.", "album_id": "72157634119717615", "photo_flickr_id": "9042865770", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "45718", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i ten bars at a local pub .", "storylet_id": "228590"}], [{"original_text": "Today being Father's Day, we tried to come up with some sign ideas that would attract customers.", "album_id": "72157634119717615", "photo_flickr_id": "9040637067", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "45718", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today being father 's day , we tried to come up with some sign ideas that would attract customers .", "storylet_id": "228591"}], [{"original_text": "First we tried one that touted a specific beer, but we figured that might not catch the attention of everyone. ", "album_id": "72157634119717615", "photo_flickr_id": "9042864672", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "45718", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "first we tried one that touted a specific beer , but we figured that might not catch the attention of everyone .", "storylet_id": "228592"}], [{"original_text": "So we tried a more straightforward approach, but that seemed too straightforward!", "album_id": "72157634119717615", "photo_flickr_id": "9042859820", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "45718", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so we tried a more straightforward approach , but that seemed too straightforward !", "storylet_id": "228593"}], [{"original_text": "So we tried the first choice, but with some fluff. It turned out okay.", "album_id": "72157634119717615", "photo_flickr_id": "9042863518", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "45718", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so we tried the first choice , but with some fluff . it turned out okay .", "storylet_id": "228594"}], [{"original_text": "The alcohol looked very good", "album_id": "72157634119717615", "photo_flickr_id": "9042865770", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "45719", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the alcohol looked very good", "storylet_id": "228595"}], [{"original_text": "and a board was saying it is free", "album_id": "72157634119717615", "photo_flickr_id": "9042864672", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "45719", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and a board was saying it is free", "storylet_id": "228596"}], [{"original_text": "for father's day.", "album_id": "72157634119717615", "photo_flickr_id": "9042867800", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "45719", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "for father 's day .", "storylet_id": "228597"}], [{"original_text": "The deals were good", "album_id": "72157634119717615", "photo_flickr_id": "9042863518", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "45719", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the deals were good", "storylet_id": "228598"}], [{"original_text": "to honor all the father's on that day.", "album_id": "72157634119717615", "photo_flickr_id": "9042862628", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "45719", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to honor all the father 's on that day .", "storylet_id": "228599"}], [{"original_text": "It was a beautiful day out on the lake. ", "album_id": "72157634173512359", "photo_flickr_id": "9068352132", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "45720", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful day out on the lake .", "storylet_id": "228600"}], [{"original_text": "Todd decided to take his boat out. ", "album_id": "72157634173512359", "photo_flickr_id": "9066138117", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "45720", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] decided to take his boat out .", "storylet_id": "228601"}], [{"original_text": "Todd brought along a couple of his frat buddies.", "album_id": "72157634173512359", "photo_flickr_id": "9068350608", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "45720", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] brought along a couple of his frat buddies .", "storylet_id": "228602"}], [{"original_text": "Stew wanted to go tubing. ", "album_id": "72157634173512359", "photo_flickr_id": "9068360190", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "45720", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "stew wanted to go tubing .", "storylet_id": "228603"}], [{"original_text": "Then Larry wanted to wake board. ", "album_id": "72157634173512359", "photo_flickr_id": "9066124221", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "45720", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then [male] wanted to wake board .", "storylet_id": "228604"}], [{"original_text": "He loved his boat and spending time on the water. ", "album_id": "72157634173512359", "photo_flickr_id": "9066138117", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45721", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he loved his boat and spending time on the water .", "storylet_id": "228605"}], [{"original_text": "No one had loaded the ski's so they had to settle for the tube. ", "album_id": "72157634173512359", "photo_flickr_id": "9068360190", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45721", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "no one had loaded the ski 's so they had to settle for the tube .", "storylet_id": "228606"}], [{"original_text": "He gave each of them a turn on the tube. ", "album_id": "72157634173512359", "photo_flickr_id": "9068357304", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45721", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he gave each of them a turn on the tube .", "storylet_id": "228607"}], [{"original_text": "When it was his best friends turn, he pulled him over the wake on purpose. ", "album_id": "72157634173512359", "photo_flickr_id": "9068354660", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45721", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when it was his best friends turn , he pulled him over the wake on purpose .", "storylet_id": "228608"}], [{"original_text": "The water was the perfect temperature and the sky was clear and blue. ", "album_id": "72157634173512359", "photo_flickr_id": "9068352132", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45721", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the water was the perfect temperature and the sky was clear and blue .", "storylet_id": "228609"}], [{"original_text": "It was a beautiful day at the lake.", "album_id": "72157634173512359", "photo_flickr_id": "9068352132", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45722", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful day at the lake .", "storylet_id": "228610"}], [{"original_text": "My dad took us out on his boat.", "album_id": "72157634173512359", "photo_flickr_id": "9066138117", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45722", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my dad took us out on his boat .", "storylet_id": "228611"}], [{"original_text": "We enjoyed relaxing while he got the tube ready.", "album_id": "72157634173512359", "photo_flickr_id": "9068350608", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45722", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we enjoyed relaxing while he got the tube ready .", "storylet_id": "228612"}], [{"original_text": "Once he had it attached, my brother got on and my dad took off.", "album_id": "72157634173512359", "photo_flickr_id": "9068360190", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45722", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once he had it attached , my brother got on and my dad took off .", "storylet_id": "228613"}], [{"original_text": "I decided to water ski instead of using the tube.", "album_id": "72157634173512359", "photo_flickr_id": "9066124221", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45722", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to water ski instead of using the tube .", "storylet_id": "228614"}], [{"original_text": "In the summer time, dad likes to take Big Bobby out on the lake for some tubing behind the boat.", "album_id": "72157634173512359", "photo_flickr_id": "9066138117", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "45723", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the summer time , dad likes to take big [male] out on the lake for some tubing behind the boat .", "storylet_id": "228615"}], [{"original_text": "Big Bobby weighs 250 pounds so he really needs to punch the throttle for maximum power.", "album_id": "72157634173512359", "photo_flickr_id": "9068360190", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "45723", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "big [male] weighs 250 pounds so he really needs to punch the throttle for maximum power .", "storylet_id": "228616"}], [{"original_text": "Wow, Big Bobby broke the ski rope. That kid is so strong!", "album_id": "72157634173512359", "photo_flickr_id": "9068357304", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "45723", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "wow , big [male] broke the ski rope . that kid is so strong !", "storylet_id": "228617"}], [{"original_text": "Yeah, we got the right speed. Big Bobby is hydroplaning perfectly, he's barely touching the water at this speed.", "album_id": "72157634173512359", "photo_flickr_id": "9068354660", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "45723", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "yeah , we got the right speed . big [male] is hydroplaning perfectly , he 's barely touching the water at this speed .", "storylet_id": "228618"}], [{"original_text": "We have so much fun tubing on the lake. I can't wait until next weekend.", "album_id": "72157634173512359", "photo_flickr_id": "9068352132", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "45723", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we have so much fun tubing on the lake . i ca n't wait until next weekend .", "storylet_id": "228619"}], [{"original_text": "He couldn't wait to get out on the lake with his family. ", "album_id": "72157634173512359", "photo_flickr_id": "9066138117", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "45724", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he could n't wait to get out on the lake with his family .", "storylet_id": "228620"}], [{"original_text": "The kids loved tubing behind the boats. ", "album_id": "72157634173512359", "photo_flickr_id": "9068360190", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "45724", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids loved tubing behind the boats .", "storylet_id": "228621"}], [{"original_text": "They took turns riding on the tube. ", "album_id": "72157634173512359", "photo_flickr_id": "9068357304", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "45724", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they took turns riding on the tube .", "storylet_id": "228622"}], [{"original_text": "One last ride on the tube before going home. ", "album_id": "72157634173512359", "photo_flickr_id": "9068354660", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "45724", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one last ride on the tube before going home .", "storylet_id": "228623"}], [{"original_text": "Everyone loved the day on the lake. ", "album_id": "72157634173512359", "photo_flickr_id": "9068352132", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "45724", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone loved the day on the lake .", "storylet_id": "228624"}], [{"original_text": "The family went bowling last night/", "album_id": "72157642613907305", "photo_flickr_id": "13276976495", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45725", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went bowling last night/", "storylet_id": "228625"}], [{"original_text": "Mom went up first and scored a ton of points.", "album_id": "72157642613907305", "photo_flickr_id": "13277321174", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45725", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom went up first and scored a ton of points .", "storylet_id": "228626"}], [{"original_text": "Dad followed but he kept getting gutter balls all night long.", "album_id": "72157642613907305", "photo_flickr_id": "13277368614", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45725", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad followed but he kept getting gutter balls all night long .", "storylet_id": "228627"}], [{"original_text": "We snacked on pizza and drank lots of soda.", "album_id": "72157642613907305", "photo_flickr_id": "13277393574", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45725", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we snacked on pizza and drank lots of soda .", "storylet_id": "228628"}], [{"original_text": "By the end of the night I was ready to go home and sleep forever ", "album_id": "72157642613907305", "photo_flickr_id": "13277274413", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45725", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of the night i was ready to go home and sleep forever", "storylet_id": "228629"}], [{"original_text": "Grandma is a fantastic bowler.", "album_id": "72157642613907305", "photo_flickr_id": "13277321174", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "45726", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandma is a fantastic bowler .", "storylet_id": "228630"}], [{"original_text": "Uncle Joe isn't so he would rather take a snack break.", "album_id": "72157642613907305", "photo_flickr_id": "13277393574", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "45726", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "uncle [male] is n't so he would rather take a snack break .", "storylet_id": "228631"}], [{"original_text": "The decorations in the bowling alley are just weird.", "album_id": "72157642613907305", "photo_flickr_id": "13277424584", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "45726", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the decorations in the bowling alley are just weird .", "storylet_id": "228632"}], [{"original_text": "I never know which ball to pick when I bowl.", "album_id": "72157642613907305", "photo_flickr_id": "13277281773", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "45726", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i never know which ball to pick when i bowl .", "storylet_id": "228633"}], [{"original_text": "Grandma keeps her lucky ball in this bag. She always wins", "album_id": "72157642613907305", "photo_flickr_id": "13277485574", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "45726", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandma keeps her lucky ball in this bag . she always wins", "storylet_id": "228634"}], [{"original_text": "Today Grammy Tonya took us bowling. We were all getting ready to battle. ", "album_id": "72157642613907305", "photo_flickr_id": "13276976495", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45727", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today grammy [female] took us bowling . we were all getting ready to battle .", "storylet_id": "228635"}], [{"original_text": "Grammy went first. She got a strike! ", "album_id": "72157642613907305", "photo_flickr_id": "13277321174", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45727", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grammy went first . she got a strike !", "storylet_id": "228636"}], [{"original_text": "Uncle Tom dropped his ball. It was pretty funny. ", "album_id": "72157642613907305", "photo_flickr_id": "13277368614", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45727", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "uncle [male] dropped his ball . it was pretty funny .", "storylet_id": "228637"}], [{"original_text": "Next up was Jack but he was taking his turn eating not playing. Everyone was screaming at him. ", "album_id": "72157642613907305", "photo_flickr_id": "13277393574", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45727", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next up was [male] but he was taking his turn eating not playing . everyone was screaming at him .", "storylet_id": "228638"}], [{"original_text": "My brother Jerrod took Jack's turn and knocked down 2 pins. He's the worst at this game. ", "album_id": "72157642613907305", "photo_flickr_id": "13277274413", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45727", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my brother jerrod took [male] 's turn and knocked down 2 pins . he 's the worst at this game .", "storylet_id": "228639"}], [{"original_text": "Bowling. Now this is a way to spend an evening.", "album_id": "72157642613907305", "photo_flickr_id": "13277321174", "setting": "last-3-pick-old-and-tell", "worker_id": "53D6AZRITTJMG4Q", "story_id": "45728", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "bowling . now this is a way to spend an evening .", "storylet_id": "228640"}], [{"original_text": "Pizza and bowling is double well the way to spend the evening.", "album_id": "72157642613907305", "photo_flickr_id": "13277393574", "setting": "last-3-pick-old-and-tell", "worker_id": "53D6AZRITTJMG4Q", "story_id": "45728", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "pizza and bowling is double well the way to spend the evening .", "storylet_id": "228641"}], [{"original_text": "And who can forget bowling with a Big Lebowski reference? This may be the best bowling ever.", "album_id": "72157642613907305", "photo_flickr_id": "13277424584", "setting": "last-3-pick-old-and-tell", "worker_id": "53D6AZRITTJMG4Q", "story_id": "45728", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and who can forget bowling with a big lebowski reference ? this may be the best bowling ever .", "storylet_id": "228642"}], [{"original_text": "I always did tell my wife I had a lot of balls.", "album_id": "72157642613907305", "photo_flickr_id": "13277281773", "setting": "last-3-pick-old-and-tell", "worker_id": "53D6AZRITTJMG4Q", "story_id": "45728", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i always did tell my wife i had a lot of balls .", "storylet_id": "228643"}], [{"original_text": "Unfortuantely, she took them from me and put them in that sack.", "album_id": "72157642613907305", "photo_flickr_id": "13277485574", "setting": "last-3-pick-old-and-tell", "worker_id": "53D6AZRITTJMG4Q", "story_id": "45728", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "unfortuantely , she took them from me and put them in that sack .", "storylet_id": "228644"}], [{"original_text": "They went bowling that evening. ", "album_id": "72157642613907305", "photo_flickr_id": "13276976495", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45729", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they went bowling that evening .", "storylet_id": "228645"}], [{"original_text": "Aunt Marie was very good.", "album_id": "72157642613907305", "photo_flickr_id": "13277321174", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45729", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "aunt [female] was very good .", "storylet_id": "228646"}], [{"original_text": "Uncle tom was the worst. ", "album_id": "72157642613907305", "photo_flickr_id": "13277368614", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45729", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "uncle tom was the worst .", "storylet_id": "228647"}], [{"original_text": "We ate pizza at the end of the night. ", "album_id": "72157642613907305", "photo_flickr_id": "13277393574", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45729", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we ate pizza at the end of the night .", "storylet_id": "228648"}], [{"original_text": "And talked with a hippy. ", "album_id": "72157642613907305", "photo_flickr_id": "13277274413", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45729", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and talked with a hippy .", "storylet_id": "228649"}], [{"original_text": "Today we visited the Buffalo Trace Kentucky Straight Bourbon Whiskey plant in Lexington Kentucky. This is a picture of the back side where we parked and then had to walk around to the front.", "album_id": "72157652488541824", "photo_flickr_id": "18364210964", "setting": "first-2-pick-and-tell", "worker_id": "UTUU4RA5XMVYJRO", "story_id": "45730", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we visited the buffalo [male] location straight bourbon whiskey plant in location location . this is a picture of the back side where we parked and then had to walk around to the front .", "storylet_id": "228650"}], [{"original_text": "Pretty cool all iron buffalo outside the plant. That has to weigh a ton!", "album_id": "72157652488541824", "photo_flickr_id": "18799098210", "setting": "first-2-pick-and-tell", "worker_id": "UTUU4RA5XMVYJRO", "story_id": "45730", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "pretty cool all iron buffalo outside the plant . that has to weigh a ton !", "storylet_id": "228651"}], [{"original_text": "This is one of the barrels that they age the whiskey in. This barrel was in the lobby as they don't allow pictures inside the plant or allow cameras to record how the exact process works.", "album_id": "72157652488541824", "photo_flickr_id": "18366117233", "setting": "first-2-pick-and-tell", "worker_id": "UTUU4RA5XMVYJRO", "story_id": "45730", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is one of the barrels that they age the whiskey in . this barrel was in the lobby as they do n't allow pictures inside the plant or allow cameras to record how the exact process works .", "storylet_id": "228652"}], [{"original_text": "Here is the lobby after our tour of the plant where samples are tested by workers and where we got to try a shot ourselves.", "album_id": "72157652488541824", "photo_flickr_id": "18364211804", "setting": "first-2-pick-and-tell", "worker_id": "UTUU4RA5XMVYJRO", "story_id": "45730", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is the lobby after our tour of the plant where samples are tested by workers and where we got to try a shot ourselves .", "storylet_id": "228653"}], [{"original_text": "Here's the final product which is also for sale at a really nice price of only $10 a bottle. I bought the maximum allowed of five bottles and they gave us a nice box and a cart to wheel it back to the car. Great day although I am feeling a bit tipsy off just one shot!", "album_id": "72157652488541824", "photo_flickr_id": "18989788991", "setting": "first-2-pick-and-tell", "worker_id": "UTUU4RA5XMVYJRO", "story_id": "45730", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's the final product which is also for sale at a really nice price of only $ 10 a bottle . i bought the maximum allowed of five bottles and they gave us a nice box and a cart to wheel it back to the car . great day although i am feeling a bit tipsy off just one shot !", "storylet_id": "228654"}], [{"original_text": "We decide to take a tour of this famous whiskey factory over the weekend.", "album_id": "72157652488541824", "photo_flickr_id": "18364210964", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45731", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decide to take a tour of this famous whiskey factory over the weekend .", "storylet_id": "228655"}], [{"original_text": "The barrels smelled of aged oak.", "album_id": "72157652488541824", "photo_flickr_id": "18366117233", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45731", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the barrels smelled of aged oak .", "storylet_id": "228656"}], [{"original_text": "We got to see the testing facility to ensure quality control. What a fun job that must be. ", "album_id": "72157652488541824", "photo_flickr_id": "18364211804", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45731", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got to see the testing facility to ensure quality control . what a fun job that must be .", "storylet_id": "228657"}], [{"original_text": "Here's were the magic happens. The aging process in the barrels was a site to see.", "album_id": "72157652488541824", "photo_flickr_id": "18986779895", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45731", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's were the magic happens . the aging process in the barrels was a site to see .", "storylet_id": "228658"}], [{"original_text": "Finally, the finished product. It was an enjoyable experience. ", "album_id": "72157652488541824", "photo_flickr_id": "18989788991", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45731", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , the finished product . it was an enjoyable experience .", "storylet_id": "228659"}], [{"original_text": "This is my place of employment.", "album_id": "72157652488541824", "photo_flickr_id": "18364210964", "setting": "last-3-pick-old-and-tell", "worker_id": "53D6AZRITTJMG4Q", "story_id": "45732", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my place of employment .", "storylet_id": "228660"}], [{"original_text": "It's awesome enough that it has a buffalo statue out front.", "album_id": "72157652488541824", "photo_flickr_id": "18799098210", "setting": "last-3-pick-old-and-tell", "worker_id": "53D6AZRITTJMG4Q", "story_id": "45732", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's awesome enough that it has a buffalo statue out front .", "storylet_id": "228661"}], [{"original_text": "Also, we make whiskey. ", "album_id": "72157652488541824", "photo_flickr_id": "18366117233", "setting": "last-3-pick-old-and-tell", "worker_id": "53D6AZRITTJMG4Q", "story_id": "45732", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "also , we make whiskey .", "storylet_id": "228662"}], [{"original_text": "I make whiskey, specifically. That's me in back there.", "album_id": "72157652488541824", "photo_flickr_id": "18364211804", "setting": "last-3-pick-old-and-tell", "worker_id": "53D6AZRITTJMG4Q", "story_id": "45732", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i make whiskey , specifically . that 's me in back there .", "storylet_id": "228663"}], [{"original_text": "Free bottles for everyone!", "album_id": "72157652488541824", "photo_flickr_id": "18989788991", "setting": "last-3-pick-old-and-tell", "worker_id": "53D6AZRITTJMG4Q", "story_id": "45732", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "free bottles for everyone !", "storylet_id": "228664"}], [{"original_text": "A group of shipping containers sits in the parking lot of the factory.", "album_id": "72157652488541824", "photo_flickr_id": "18364210964", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "45733", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of shipping containers sits in the parking lot of the factory .", "storylet_id": "228665"}], [{"original_text": "The barrel displays the name of the factory.", "album_id": "72157652488541824", "photo_flickr_id": "18366117233", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "45733", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the barrel displays the name of the factory .", "storylet_id": "228666"}], [{"original_text": "Two people are seen working on a factory line.", "album_id": "72157652488541824", "photo_flickr_id": "18364211804", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "45733", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two people are seen working on a factory line .", "storylet_id": "228667"}], [{"original_text": "The barrels line the walls of this dark space.", "album_id": "72157652488541824", "photo_flickr_id": "18986779895", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "45733", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the barrels line the walls of this dark space .", "storylet_id": "228668"}], [{"original_text": "Bottles of Whiskey are on full display.", "album_id": "72157652488541824", "photo_flickr_id": "18989788991", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "45733", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "bottles of whiskey are on full display .", "storylet_id": "228669"}], [{"original_text": "We went whiskey tasting in Kentucky. ", "album_id": "72157652488541824", "photo_flickr_id": "18364210964", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45734", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went whiskey tasting in location .", "storylet_id": "228670"}], [{"original_text": "The buffalo trace brewery was the best place to be. ", "album_id": "72157652488541824", "photo_flickr_id": "18366117233", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45734", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the buffalo trace brewery was the best place to be .", "storylet_id": "228671"}], [{"original_text": "We saw how they made beer as well. ", "album_id": "72157652488541824", "photo_flickr_id": "18364211804", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45734", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw how they made beer as well .", "storylet_id": "228672"}], [{"original_text": "And saw all the caskets in the basement. ", "album_id": "72157652488541824", "photo_flickr_id": "18986779895", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45734", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and saw all the caskets in the basement .", "storylet_id": "228673"}], [{"original_text": "We bought a bunch of bottles of whiskey to take home in the end. ", "album_id": "72157652488541824", "photo_flickr_id": "18989788991", "setting": "last-3-pick-old-and-tell", "worker_id": "P4EO9GEXUYIW4F3", "story_id": "45734", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we bought a bunch of bottles of whiskey to take home in the end .", "storylet_id": "228674"}], [{"original_text": "I went to see a play about relationships.", "album_id": "72157653264010600", "photo_flickr_id": "18248989055", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "45735", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to see a play about relationships .", "storylet_id": "228675"}], [{"original_text": "One of the characters was getting drunk while talking about her husband.", "album_id": "72157653264010600", "photo_flickr_id": "18061249230", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "45735", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of the characters was getting drunk while talking about her husband .", "storylet_id": "228676"}], [{"original_text": "Another character was getting drunk aswell.", "album_id": "72157653264010600", "photo_flickr_id": "18245239012", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "45735", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another character was getting drunk aswell .", "storylet_id": "228677"}], [{"original_text": "In another scene the men were sitting down complaing about women.", "album_id": "72157653264010600", "photo_flickr_id": "18222534566", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "45735", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in another scene the men were sitting down complaing about women .", "storylet_id": "228678"}], [{"original_text": "In the last scene one of the husbands approached the wives.", "album_id": "72157653264010600", "photo_flickr_id": "18062772999", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "45735", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the last scene one of the husbands approached the wives .", "storylet_id": "228679"}], [{"original_text": "She had a quick drink before the show.", "album_id": "72157653264010600", "photo_flickr_id": "18061162508", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45736", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she had a quick drink before the show .", "storylet_id": "228680"}], [{"original_text": "She was on set waiting for the host.", "album_id": "72157653264010600", "photo_flickr_id": "18248992085", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45736", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was on set waiting for the host .", "storylet_id": "228681"}], [{"original_text": "The second guest was still getting her hair done.", "album_id": "72157653264010600", "photo_flickr_id": "17628382803", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45736", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the second guest was still getting her hair done .", "storylet_id": "228682"}], [{"original_text": "She had already had a few drinks.", "album_id": "72157653264010600", "photo_flickr_id": "18061249230", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45736", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she had already had a few drinks .", "storylet_id": "228683"}], [{"original_text": "Her hair was being curled.", "album_id": "72157653264010600", "photo_flickr_id": "18245234462", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45736", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her hair was being curled .", "storylet_id": "228684"}], [{"original_text": "We sat back before the interview started.", "album_id": "72157653264010600", "photo_flickr_id": "18248989055", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45737", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we sat back before the interview started .", "storylet_id": "228685"}], [{"original_text": "We got our hair done.", "album_id": "72157653264010600", "photo_flickr_id": "18061249230", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45737", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got our hair done .", "storylet_id": "228686"}], [{"original_text": "We had chips to snack on. ", "album_id": "72157653264010600", "photo_flickr_id": "18245239012", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45737", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had chips to snack on .", "storylet_id": "228687"}], [{"original_text": "We started our skit.", "album_id": "72157653264010600", "photo_flickr_id": "18222534566", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45737", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we started our skit .", "storylet_id": "228688"}], [{"original_text": "It was great.", "album_id": "72157653264010600", "photo_flickr_id": "18062772999", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45737", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was great .", "storylet_id": "228689"}], [{"original_text": "The play I was in last night was fabulous. This is Mandy, Erica and I talking on stage. ", "album_id": "72157653264010600", "photo_flickr_id": "18248989055", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45738", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the play i was in last night was fabulous . this is [female] , [female] and i talking on stage .", "storylet_id": "228690"}], [{"original_text": "I was so styling my curlers. \"Don't look at me I'm hideous!\" I cried my lines. ", "album_id": "72157653264010600", "photo_flickr_id": "18061249230", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45738", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was so styling my curlers . `` do n't look at me i 'm hideous ! '' i cried my lines .", "storylet_id": "228691"}], [{"original_text": "My pal Erica was so good. She screamed and flung herself all over. ", "album_id": "72157653264010600", "photo_flickr_id": "18245239012", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45738", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my pal [female] was so good . she screamed and flung herself all over .", "storylet_id": "228692"}], [{"original_text": "The guys, Randy and Matt were okay. I would have chose different but they were perfect assholes as they should have been. ", "album_id": "72157653264010600", "photo_flickr_id": "18222534566", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45738", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guys , [male] and [male] were okay . i would have chose different but they were perfect assholes as they should have been .", "storylet_id": "228693"}], [{"original_text": "\"No way! We don't eat meat here!\" We turned up our noses. The wiener monologues were so much fun!", "album_id": "72157653264010600", "photo_flickr_id": "18062772999", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45738", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "`` no way ! we do n't eat meat here ! '' we turned up our noses . the wiener monologues were so much fun !", "storylet_id": "228694"}], [{"original_text": "Girl where did you get those flowers from? Sitting up here all pretty like with that glow.", "album_id": "72157653264010600", "photo_flickr_id": "18248989055", "setting": "last-3-pick-old-and-tell", "worker_id": "RZ621IKUA0O4SJJ", "story_id": "45739", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "girl where did you get those flowers from ? sitting up here all pretty like with that glow .", "storylet_id": "228695"}], [{"original_text": "I'm not impressed, just pass me my bucket of booze, she can keep the flowers.", "album_id": "72157653264010600", "photo_flickr_id": "18061249230", "setting": "last-3-pick-old-and-tell", "worker_id": "RZ621IKUA0O4SJJ", "story_id": "45739", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm not impressed , just pass me my bucket of booze , she can keep the flowers .", "storylet_id": "228696"}], [{"original_text": "You're not impressed? Girl, I'm not impressed with your alcoholic ways, but you don't see me blurting it out, do you?", "album_id": "72157653264010600", "photo_flickr_id": "18245239012", "setting": "last-3-pick-old-and-tell", "worker_id": "RZ621IKUA0O4SJJ", "story_id": "45739", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you 're not impressed ? girl , i 'm not impressed with your alcoholic ways , but you do n't see me blurting it out , do you ?", "storylet_id": "228697"}], [{"original_text": "Look at them girls over there arguing like fools. Why can't they get along like us, man? Im going to go over there.", "album_id": "72157653264010600", "photo_flickr_id": "18222534566", "setting": "last-3-pick-old-and-tell", "worker_id": "RZ621IKUA0O4SJJ", "story_id": "45739", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look at them girls over there arguing like fools . why ca n't they get along like us , man ? im going to go over there .", "storylet_id": "228698"}], [{"original_text": "Ladies, what's the issue? Why can't you guys just get along and enjoy this beautiful trip?", "album_id": "72157653264010600", "photo_flickr_id": "18062772999", "setting": "last-3-pick-old-and-tell", "worker_id": "RZ621IKUA0O4SJJ", "story_id": "45739", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ladies , what 's the issue ? why ca n't you guys just get along and enjoy this beautiful trip ?", "storylet_id": "228699"}], [{"original_text": "Everyone piled into the driveway for some summer fun. ", "album_id": "72157654848618716", "photo_flickr_id": "19040324451", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45740", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone piled into the driveway for some summer fun .", "storylet_id": "228700"}], [{"original_text": "The little dog was there to greet people as they came in.", "album_id": "72157654848618716", "photo_flickr_id": "18850989419", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45740", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the little dog was there to greet people as they came in .", "storylet_id": "228701"}], [{"original_text": "The little boy was excited for all the new faces. ", "album_id": "72157654848618716", "photo_flickr_id": "19040301201", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45740", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the little boy was excited for all the new faces .", "storylet_id": "228702"}], [{"original_text": "They had fun swimming in the pool in the backyard.", "album_id": "72157654848618716", "photo_flickr_id": "18850923299", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45740", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had fun swimming in the pool in the backyard .", "storylet_id": "228703"}], [{"original_text": "They also took a hike and captured some of the local scenery. It was quite a fun day. ", "album_id": "72157654848618716", "photo_flickr_id": "18849336630", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45740", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they also took a hike and captured some of the local scenery . it was quite a fun day .", "storylet_id": "228704"}], [{"original_text": "We arrived at nana's house around noon.", "album_id": "72157654848618716", "photo_flickr_id": "18414657834", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45741", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at nana 's house around noon .", "storylet_id": "228705"}], [{"original_text": "The dog was the first one to greet us at the door.", "album_id": "72157654848618716", "photo_flickr_id": "18850989419", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45741", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dog was the first one to greet us at the door .", "storylet_id": "228706"}], [{"original_text": "The kids went into to play in the murky dirty pool.", "album_id": "72157654848618716", "photo_flickr_id": "18849489488", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45741", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids went into to play in the murky dirty pool .", "storylet_id": "228707"}], [{"original_text": "One of them got sick and we had to run to the car and take them to the hospital.", "album_id": "72157654848618716", "photo_flickr_id": "18414552114", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45741", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of them got sick and we had to run to the car and take them to the hospital .", "storylet_id": "228708"}], [{"original_text": "The problem was that we were in the middle of nowhere and had to drive to the next town.", "album_id": "72157654848618716", "photo_flickr_id": "18849336630", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45741", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the problem was that we were in the middle of nowhere and had to drive to the next town .", "storylet_id": "228709"}], [{"original_text": "Many cars parked in our driveway.", "album_id": "72157654848618716", "photo_flickr_id": "18414657834", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45742", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many cars parked in our driveway .", "storylet_id": "228710"}], [{"original_text": "The dog was excited.", "album_id": "72157654848618716", "photo_flickr_id": "18850989419", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45742", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dog was excited .", "storylet_id": "228711"}], [{"original_text": "The kids played in the pool.", "album_id": "72157654848618716", "photo_flickr_id": "18849489488", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45742", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids played in the pool .", "storylet_id": "228712"}], [{"original_text": "We had to move some of the cars.", "album_id": "72157654848618716", "photo_flickr_id": "18414552114", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45742", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had to move some of the cars .", "storylet_id": "228713"}], [{"original_text": "The scenery was gorgeous.", "album_id": "72157654848618716", "photo_flickr_id": "18849336630", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45742", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the scenery was gorgeous .", "storylet_id": "228714"}], [{"original_text": "I had to drive on the ferry to get home today. It was so crowded. ", "album_id": "72157654848618716", "photo_flickr_id": "19040324451", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45743", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had to drive on the ferry to get home today . it was so crowded .", "storylet_id": "228715"}], [{"original_text": "My dog Max was so happy to see me! I was home from a 5 day work week in the city. ", "album_id": "72157654848618716", "photo_flickr_id": "18850989419", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45743", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my dog [male] was so happy to see me ! i was home from a 5 day work week in the city .", "storylet_id": "228716"}], [{"original_text": "Hi Tim! He greeted me at the door with cookies. I was so happy. ", "album_id": "72157654848618716", "photo_flickr_id": "19040301201", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45743", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "hi [male] ! he greeted me at the door with cookies . i was so happy .", "storylet_id": "228717"}], [{"original_text": "Later on I went out and laid with the family in the brown water pool. It was so relaxing. I needed that. ", "album_id": "72157654848618716", "photo_flickr_id": "18850923299", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45743", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later on i went out and laid with the family in the brown water pool . it was so relaxing . i needed that .", "storylet_id": "228718"}], [{"original_text": "Then we took a leisure walk through the pasture. ", "album_id": "72157654848618716", "photo_flickr_id": "18849336630", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45743", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we took a leisure walk through the pasture .", "storylet_id": "228719"}], [{"original_text": "The cars are filling up the driveway as family arrives.", "album_id": "72157654848618716", "photo_flickr_id": "18414657834", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45744", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cars are filling up the driveway as family arrives .", "storylet_id": "228720"}], [{"original_text": "The small dog is curious to the new visitors.", "album_id": "72157654848618716", "photo_flickr_id": "18850989419", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45744", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the small dog is curious to the new visitors .", "storylet_id": "228721"}], [{"original_text": "The kids get in the pool and cool off from the heat.", "album_id": "72157654848618716", "photo_flickr_id": "18849489488", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45744", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids get in the pool and cool off from the heat .", "storylet_id": "228722"}], [{"original_text": "Grandpa is walking around.", "album_id": "72157654848618716", "photo_flickr_id": "18414552114", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45744", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandpa is walking around .", "storylet_id": "228723"}], [{"original_text": "The field is beautiful and lush.", "album_id": "72157654848618716", "photo_flickr_id": "18849336630", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45744", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the field is beautiful and lush .", "storylet_id": "228724"}], [{"original_text": "Today we race! Line up and GO! ", "album_id": "72157654923602631", "photo_flickr_id": "18438603203", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45745", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we race ! line up and go !", "storylet_id": "228725"}], [{"original_text": "My friend Bill showed up! He's so determined. Go Bill!! ", "album_id": "72157654923602631", "photo_flickr_id": "18438604473", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45745", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend [male] showed up ! he 's so determined . go [male] ! !", "storylet_id": "228726"}], [{"original_text": "I took a break along the side for a minute and snapped a race photo. It was so much fun. ", "album_id": "72157654923602631", "photo_flickr_id": "18436770104", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45745", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took a break along the side for a minute and snapped a race photo . it was so much fun .", "storylet_id": "228727"}], [{"original_text": "Here comes Tom and baby Ann. Can't talk now Tom and Anna! I have to race. ", "album_id": "72157654923602631", "photo_flickr_id": "18871585700", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45745", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here comes [male] and baby [female] . ca n't talk now [male] and [female] ! i have to race .", "storylet_id": "228728"}], [{"original_text": "I ran fast and came up to the finish line! This 1k race was killer! YAY I'm done!", "album_id": "72157654923602631", "photo_flickr_id": "18871582520", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45745", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ran fast and came up to the finish line ! this 1k race was killer ! yay i 'm done !", "storylet_id": "228729"}], [{"original_text": "The whole town came out fir the annual race. ", "album_id": "72157654923602631", "photo_flickr_id": "18438601733", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45746", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole town came out fir the annual race .", "storylet_id": "228730"}], [{"original_text": "And they're off!", "album_id": "72157654923602631", "photo_flickr_id": "18873125569", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45746", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and they 're off !", "storylet_id": "228731"}], [{"original_text": "everyone loved the man's chair. It was very inspirational.", "album_id": "72157654923602631", "photo_flickr_id": "18438604473", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45746", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone loved the man 's chair . it was very inspirational .", "storylet_id": "228732"}], [{"original_text": "Even the young ones got to experience the excitement. ", "album_id": "72157654923602631", "photo_flickr_id": "18871585700", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45746", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the young ones got to experience the excitement .", "storylet_id": "228733"}], [{"original_text": "There's the finish line! What a race!", "album_id": "72157654923602631", "photo_flickr_id": "18871582520", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45746", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there 's the finish line ! what a race !", "storylet_id": "228734"}], [{"original_text": "The city marathon is a huge family friendly event.", "album_id": "72157654923602631", "photo_flickr_id": "18438601733", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "45747", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city marathon is a huge family friendly event .", "storylet_id": "228735"}], [{"original_text": "Anyone is allowed to run, whether its professional or simply for fun.", "album_id": "72157654923602631", "photo_flickr_id": "18873125569", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "45747", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "anyone is allowed to run , whether its professional or simply for fun .", "storylet_id": "228736"}], [{"original_text": "Some dedicated athletes participate in the marathon to demonstrate commitment.", "album_id": "72157654923602631", "photo_flickr_id": "18438604473", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "45747", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some dedicated athletes participate in the marathon to demonstrate commitment .", "storylet_id": "228737"}], [{"original_text": "Others run the marathon as a fun way of bonding with their children.", "album_id": "72157654923602631", "photo_flickr_id": "18871585700", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "45747", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others run the marathon as a fun way of bonding with their children .", "storylet_id": "228738"}], [{"original_text": "Whatever the reason, the meaning of the marathon isn't to finish first only to participate.", "album_id": "72157654923602631", "photo_flickr_id": "18871582520", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "45747", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "whatever the reason , the meaning of the marathon is n't to finish first only to participate .", "storylet_id": "228739"}], [{"original_text": "Today there was a race. There were many workers there helping direct people to where they needed to be.", "album_id": "72157654923602631", "photo_flickr_id": "18438603203", "setting": "last-3-pick-old-and-tell", "worker_id": "RZ621IKUA0O4SJJ", "story_id": "45748", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today there was a race . there were many workers there helping direct people to where they needed to be .", "storylet_id": "228740"}], [{"original_text": "There were all types of runners, even those that could not physically run due to not having legs were participating. ", "album_id": "72157654923602631", "photo_flickr_id": "18438604473", "setting": "last-3-pick-old-and-tell", "worker_id": "RZ621IKUA0O4SJJ", "story_id": "45748", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were all types of runners , even those that could not physically run due to not having legs were participating .", "storylet_id": "228741"}], [{"original_text": "The crowd was a very large one and everyone was moving to see who would be first.", "album_id": "72157654923602631", "photo_flickr_id": "18436770104", "setting": "last-3-pick-old-and-tell", "worker_id": "RZ621IKUA0O4SJJ", "story_id": "45748", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowd was a very large one and everyone was moving to see who would be first .", "storylet_id": "228742"}], [{"original_text": "Even some parents, including dads came out to push their little ones in the stroller during the race.", "album_id": "72157654923602631", "photo_flickr_id": "18871585700", "setting": "last-3-pick-old-and-tell", "worker_id": "RZ621IKUA0O4SJJ", "story_id": "45748", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even some parents , including dads came out to push their little ones in the stroller during the race .", "storylet_id": "228743"}], [{"original_text": "There was a lady that won first place, and when she crossed the finish line there were no other runners in sight!", "album_id": "72157654923602631", "photo_flickr_id": "18871582520", "setting": "last-3-pick-old-and-tell", "worker_id": "RZ621IKUA0O4SJJ", "story_id": "45748", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a lady that won first place , and when she crossed the finish line there were no other runners in sight !", "storylet_id": "228744"}], [{"original_text": "the community had a walk-a-thon going on today an a lot of people turned out.", "album_id": "72157654923602631", "photo_flickr_id": "18438603203", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "45749", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the community had a walk-a-thon going on today an a lot of people turned out .", "storylet_id": "228745"}], [{"original_text": "even the handicap showed up to support the community.", "album_id": "72157654923602631", "photo_flickr_id": "18438604473", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "45749", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the handicap showed up to support the community .", "storylet_id": "228746"}], [{"original_text": "the crowed was large and the event was a huge success.", "album_id": "72157654923602631", "photo_flickr_id": "18436770104", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "45749", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowed was large and the event was a huge success .", "storylet_id": "228747"}], [{"original_text": "parents even brought their children in strollers to support the community.", "album_id": "72157654923602631", "photo_flickr_id": "18871585700", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "45749", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "parents even brought their children in strollers to support the community .", "storylet_id": "228748"}], [{"original_text": "and at the end of the race they were all winners one way or another.", "album_id": "72157654923602631", "photo_flickr_id": "18871582520", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "45749", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and at the end of the race they were all winners one way or another .", "storylet_id": "228749"}], [{"original_text": "We watched as the local handy man cleaned the train's platform.", "album_id": "72157601163302429", "photo_flickr_id": "981318971", "setting": "first-2-pick-and-tell", "worker_id": "1UMY4IB0HNB4SQ6", "story_id": "45750", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we watched as the local handy man cleaned the train 's platform .", "storylet_id": "228750"}], [{"original_text": "Then voila! The family got their first glimpse of the historical steam train.", "album_id": "72157601163302429", "photo_flickr_id": "981350175", "setting": "first-2-pick-and-tell", "worker_id": "1UMY4IB0HNB4SQ6", "story_id": "45750", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then voila ! the family got their first glimpse of the historical steam train .", "storylet_id": "228751"}], [{"original_text": "We later had dinner in the local station that had been converted into a restaurant.", "album_id": "72157601163302429", "photo_flickr_id": "982212192", "setting": "first-2-pick-and-tell", "worker_id": "1UMY4IB0HNB4SQ6", "story_id": "45750", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we later had dinner in the local station that had been converted into a restaurant .", "storylet_id": "228752"}], [{"original_text": "The next day the kids were even more excited to participate in their own train building project.", "album_id": "72157601163302429", "photo_flickr_id": "982233530", "setting": "first-2-pick-and-tell", "worker_id": "1UMY4IB0HNB4SQ6", "story_id": "45750", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next day the kids were even more excited to participate in their own train building project .", "storylet_id": "228753"}], [{"original_text": "The fruits of their labor were enjoyed by all as they got to ride their own train for the first time.", "album_id": "72157601163302429", "photo_flickr_id": "982378328", "setting": "first-2-pick-and-tell", "worker_id": "1UMY4IB0HNB4SQ6", "story_id": "45750", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fruits of their labor were enjoyed by all as they got to ride their own train for the first time .", "storylet_id": "228754"}], [{"original_text": "Today I took the children to wood working.", "album_id": "72157601163302429", "photo_flickr_id": "981297813", "setting": "first-2-pick-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "45751", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i took the children to wood working .", "storylet_id": "228755"}], [{"original_text": "The project is to build a giant train.", "album_id": "72157601163302429", "photo_flickr_id": "982197956", "setting": "first-2-pick-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "45751", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the project is to build a giant train .", "storylet_id": "228756"}], [{"original_text": "Each child contributed to building the train", "album_id": "72157601163302429", "photo_flickr_id": "982247622", "setting": "first-2-pick-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "45751", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each child contributed to building the train", "storylet_id": "228757"}], [{"original_text": "When it was complete the all the trains were connected together.", "album_id": "72157601163302429", "photo_flickr_id": "981423111", "setting": "first-2-pick-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "45751", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when it was complete the all the trains were connected together .", "storylet_id": "228758"}], [{"original_text": "The train was pulled along with all the children in tow.", "album_id": "72157601163302429", "photo_flickr_id": "982297772", "setting": "first-2-pick-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "45751", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the train was pulled along with all the children in tow .", "storylet_id": "228759"}], [{"original_text": "The boys enjoyed working together and took turns making sure they could sit in the box.", "album_id": "72157601163302429", "photo_flickr_id": "981318971", "setting": "last-3-pick-old-and-tell", "worker_id": "HT5JQQ69J38N7EY", "story_id": "45752", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boys enjoyed working together and took turns making sure they could sit in the box .", "storylet_id": "228760"}], [{"original_text": "He thought his sister using a power tool was hilarious and they both got a severe case of the giggles.", "album_id": "72157601163302429", "photo_flickr_id": "981350175", "setting": "last-3-pick-old-and-tell", "worker_id": "HT5JQQ69J38N7EY", "story_id": "45752", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he thought his sister using a power tool was hilarious and they both got a severe case of the giggles .", "storylet_id": "228761"}], [{"original_text": "He wants the cart to be perfect and has studied the instructions many times over.", "album_id": "72157601163302429", "photo_flickr_id": "982212192", "setting": "last-3-pick-old-and-tell", "worker_id": "HT5JQQ69J38N7EY", "story_id": "45752", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he wants the cart to be perfect and has studied the instructions many times over .", "storylet_id": "228762"}], [{"original_text": "Hooking the carts together was not an easy task and required many helping hands.", "album_id": "72157601163302429", "photo_flickr_id": "982233530", "setting": "last-3-pick-old-and-tell", "worker_id": "HT5JQQ69J38N7EY", "story_id": "45752", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "hooking the carts together was not an easy task and required many helping hands .", "storylet_id": "228763"}], [{"original_text": "The project was worth all the hard work! Even grown-ups wished they could have a turn.", "album_id": "72157601163302429", "photo_flickr_id": "982378328", "setting": "last-3-pick-old-and-tell", "worker_id": "HT5JQQ69J38N7EY", "story_id": "45752", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the project was worth all the hard work ! even grown-ups wished they could have a turn .", "storylet_id": "228764"}], [{"original_text": "let put together a train ", "album_id": "72157601163302429", "photo_flickr_id": "981297813", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "45753", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "let put together a train", "storylet_id": "228765"}], [{"original_text": "make sure to wear your goggles when you are using tools ", "album_id": "72157601163302429", "photo_flickr_id": "982197956", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "45753", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "make sure to wear your goggles when you are using tools", "storylet_id": "228766"}], [{"original_text": "let's make this train personal ", "album_id": "72157601163302429", "photo_flickr_id": "982247622", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "45753", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "let 's make this train personal", "storylet_id": "228767"}], [{"original_text": "putting the finishing ", "album_id": "72157601163302429", "photo_flickr_id": "981423111", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "45753", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "putting the finishing", "storylet_id": "228768"}], [{"original_text": "all aboard the fun train", "album_id": "72157601163302429", "photo_flickr_id": "982297772", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "45753", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all aboard the fun train", "storylet_id": "228769"}], [{"original_text": "The kids banded together to make a train out of wood.", "album_id": "72157601163302429", "photo_flickr_id": "981297813", "setting": "last-3-pick-old-and-tell", "worker_id": "0SP34NEATY188Z6", "story_id": "45754", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids banded together to make a train out of wood .", "storylet_id": "228770"}], [{"original_text": "Everyone used proper safety precautions.", "album_id": "72157601163302429", "photo_flickr_id": "982197956", "setting": "last-3-pick-old-and-tell", "worker_id": "0SP34NEATY188Z6", "story_id": "45754", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone used proper safety precautions .", "storylet_id": "228771"}], [{"original_text": "The kids were allowed to decorate the inside's of their cars.", "album_id": "72157601163302429", "photo_flickr_id": "982247622", "setting": "last-3-pick-old-and-tell", "worker_id": "0SP34NEATY188Z6", "story_id": "45754", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids were allowed to decorate the inside 's of their cars .", "storylet_id": "228772"}], [{"original_text": "This made for a great father/son activity.", "album_id": "72157601163302429", "photo_flickr_id": "981423111", "setting": "last-3-pick-old-and-tell", "worker_id": "0SP34NEATY188Z6", "story_id": "45754", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this made for a great father/son activity .", "storylet_id": "228773"}], [{"original_text": "When it was all done, the kids got to ride the train. Choo choo! ", "album_id": "72157601163302429", "photo_flickr_id": "982297772", "setting": "last-3-pick-old-and-tell", "worker_id": "0SP34NEATY188Z6", "story_id": "45754", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when it was all done , the kids got to ride the train . choo choo !", "storylet_id": "228774"}], [{"original_text": "Taking pictures at dawn provide excellent results.", "album_id": "72157625294515830", "photo_flickr_id": "5139022562", "setting": "first-2-pick-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "45755", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "taking pictures at dawn provide excellent results .", "storylet_id": "228775"}], [{"original_text": "The lakes in Alaska are so beautiful.", "album_id": "72157625294515830", "photo_flickr_id": "5139023312", "setting": "first-2-pick-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "45755", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lakes in location are so beautiful .", "storylet_id": "228776"}], [{"original_text": "I get different shots on my camera with different tones, to really appreciate the beauty here.", "album_id": "72157625294515830", "photo_flickr_id": "5139385104", "setting": "first-2-pick-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "45755", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i get different shots on my camera with different tones , to really appreciate the beauty here .", "storylet_id": "228777"}], [{"original_text": "Even the towns make for amazing pictures.", "album_id": "72157625294515830", "photo_flickr_id": "5139086870", "setting": "first-2-pick-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "45755", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the towns make for amazing pictures .", "storylet_id": "228778"}], [{"original_text": "Cannot call it a day without one more picture of the snow covered mountains!", "album_id": "72157625294515830", "photo_flickr_id": "6587239513", "setting": "first-2-pick-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "45755", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "can not call it a day without one more picture of the snow covered mountains !", "storylet_id": "228779"}], [{"original_text": "An aspiring photographer went on a trip to the mountains to test out a new camera.", "album_id": "72157625294515830", "photo_flickr_id": "5139022562", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "45756", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an aspiring photographer went on a trip to the mountains to test out a new camera .", "storylet_id": "228780"}], [{"original_text": "He came across many different types of scenery, including a beautiful lake.", "album_id": "72157625294515830", "photo_flickr_id": "5139023312", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "45756", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he came across many different types of scenery , including a beautiful lake .", "storylet_id": "228781"}], [{"original_text": "He tried out different camera modes, including black and white photography.", "album_id": "72157625294515830", "photo_flickr_id": "6587154809", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "45756", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he tried out different camera modes , including black and white photography .", "storylet_id": "228782"}], [{"original_text": "On the journey, he came across an interesting building.", "album_id": "72157625294515830", "photo_flickr_id": "5138478525", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "45756", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on the journey , he came across an interesting building .", "storylet_id": "228783"}], [{"original_text": "He felt it refreshing to walk on the trails alone and capture moments in photography. ", "album_id": "72157625294515830", "photo_flickr_id": "5181453320", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "45756", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he felt it refreshing to walk on the trails alone and capture moments in photography .", "storylet_id": "228784"}], [{"original_text": "The climber couldn't believe his luck as he reached the first crest and was met with a dark blue sky contracted against white clouds.", "album_id": "72157625294515830", "photo_flickr_id": "5139022562", "setting": "last-3-pick-old-and-tell", "worker_id": "10CDULAN0PUVHZQ", "story_id": "45757", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the climber could n't believe his luck as he reached the first crest and was met with a dark blue sky contracted against white clouds .", "storylet_id": "228785"}], [{"original_text": "Oh one side of him was a crystal clear lake.", "album_id": "72157625294515830", "photo_flickr_id": "5139023312", "setting": "last-3-pick-old-and-tell", "worker_id": "10CDULAN0PUVHZQ", "story_id": "45757", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "oh one side of him was a crystal clear lake .", "storylet_id": "228786"}], [{"original_text": "On another a small farm just waking up.", "album_id": "72157625294515830", "photo_flickr_id": "5139385104", "setting": "last-3-pick-old-and-tell", "worker_id": "10CDULAN0PUVHZQ", "story_id": "45757", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on another a small farm just waking up .", "storylet_id": "228787"}], [{"original_text": "On his way back down the cliff side he could see his village off in the distance. He was ready to be home.", "album_id": "72157625294515830", "photo_flickr_id": "5139086870", "setting": "last-3-pick-old-and-tell", "worker_id": "10CDULAN0PUVHZQ", "story_id": "45757", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on his way back down the cliff side he could see his village off in the distance . he was ready to be home .", "storylet_id": "228788"}], [{"original_text": "He then said goodbye to the mountain. A least for now.", "album_id": "72157625294515830", "photo_flickr_id": "6587239513", "setting": "last-3-pick-old-and-tell", "worker_id": "10CDULAN0PUVHZQ", "story_id": "45757", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he then said goodbye to the mountain . a least for now .", "storylet_id": "228789"}], [{"original_text": "I took a ride on an airplane the other day.", "album_id": "72157625294515830", "photo_flickr_id": "5139022562", "setting": "last-3-pick-old-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "45758", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a ride on an airplane the other day .", "storylet_id": "228790"}], [{"original_text": "We flew over the mountains.", "album_id": "72157625294515830", "photo_flickr_id": "5139023312", "setting": "last-3-pick-old-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "45758", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we flew over the mountains .", "storylet_id": "228791"}], [{"original_text": "I took some black-and-white pictures.", "album_id": "72157625294515830", "photo_flickr_id": "5139385104", "setting": "last-3-pick-old-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "45758", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took some black-and-white pictures .", "storylet_id": "228792"}], [{"original_text": "This is close to where we landed.", "album_id": "72157625294515830", "photo_flickr_id": "5139086870", "setting": "last-3-pick-old-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "45758", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is close to where we landed .", "storylet_id": "228793"}], [{"original_text": "This is the prettiest picture I took.", "album_id": "72157625294515830", "photo_flickr_id": "6587239513", "setting": "last-3-pick-old-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "45758", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the prettiest picture i took .", "storylet_id": "228794"}], [{"original_text": "The clouds and deep blue sky compliment the mountain peak.", "album_id": "72157625294515830", "photo_flickr_id": "5139022562", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45759", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the clouds and deep blue sky compliment the mountain peak .", "storylet_id": "228795"}], [{"original_text": "They find a lovely forested mountain with a lake.", "album_id": "72157625294515830", "photo_flickr_id": "5139023312", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45759", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they find a lovely forested mountain with a lake .", "storylet_id": "228796"}], [{"original_text": "The misty clouds roll in and obscure the scene.", "album_id": "72157625294515830", "photo_flickr_id": "6587154809", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45759", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the misty clouds roll in and obscure the scene .", "storylet_id": "228797"}], [{"original_text": "In the distance the height of the mountains can be seen by the amount of dense snow covering them.", "album_id": "72157625294515830", "photo_flickr_id": "5138478525", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45759", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the distance the height of the mountains can be seen by the amount of dense snow covering them .", "storylet_id": "228798"}], [{"original_text": "On the road again moving towards another place.", "album_id": "72157625294515830", "photo_flickr_id": "5181453320", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45759", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the road again moving towards another place .", "storylet_id": "228799"}], [{"original_text": "We took a trip to a Historical Dental Museum.", "album_id": "72157623226515173", "photo_flickr_id": "4330197855", "setting": "first-2-pick-and-tell", "worker_id": "Q5SJ8BFLV2I0E39", "story_id": "45760", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to a historical dental museum .", "storylet_id": "228800"}], [{"original_text": "Inside was a room set up to look like an old dentist office. It even had a statue of a person working at a table.", "album_id": "72157623226515173", "photo_flickr_id": "4330196103", "setting": "first-2-pick-and-tell", "worker_id": "Q5SJ8BFLV2I0E39", "story_id": "45760", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside was a room set up to look like an old dentist office . it even had a statue of a person working at a table .", "storylet_id": "228801"}], [{"original_text": "On one of the desks we saw a very old dental reference book used by some of the first dentists.", "album_id": "72157623226515173", "photo_flickr_id": "4330176809", "setting": "first-2-pick-and-tell", "worker_id": "Q5SJ8BFLV2I0E39", "story_id": "45760", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on one of the desks we saw a very old dental reference book used by some of the first dentists .", "storylet_id": "228802"}], [{"original_text": "There was also a box full of some of the first dental tools that were ever used.", "album_id": "72157623226515173", "photo_flickr_id": "4330158653", "setting": "first-2-pick-and-tell", "worker_id": "Q5SJ8BFLV2I0E39", "story_id": "45760", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also a box full of some of the first dental tools that were ever used .", "storylet_id": "228803"}], [{"original_text": "One of the last things we saw at the museum was box full of old dentures.", "album_id": "72157623226515173", "photo_flickr_id": "4330923792", "setting": "first-2-pick-and-tell", "worker_id": "Q5SJ8BFLV2I0E39", "story_id": "45760", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of the last things we saw at the museum was box full of old dentures .", "storylet_id": "228804"}], [{"original_text": "This is the historical dental museum.", "album_id": "72157623226515173", "photo_flickr_id": "4330197855", "setting": "first-2-pick-and-tell", "worker_id": "YHC9KK130CNOD65", "story_id": "45761", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the historical dental museum .", "storylet_id": "228805"}], [{"original_text": "On the inside you can see many things, like the look of an old office.", "album_id": "72157623226515173", "photo_flickr_id": "4330196103", "setting": "first-2-pick-and-tell", "worker_id": "YHC9KK130CNOD65", "story_id": "45761", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on the inside you can see many things , like the look of an old office .", "storylet_id": "228806"}], [{"original_text": "They also showcase old displays of teeth and medical gear.", "album_id": "72157623226515173", "photo_flickr_id": "4330914576", "setting": "first-2-pick-and-tell", "worker_id": "YHC9KK130CNOD65", "story_id": "45761", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also showcase old displays of teeth and medical gear .", "storylet_id": "228807"}], [{"original_text": "They actually have boxes full of teeth!", "album_id": "72157623226515173", "photo_flickr_id": "4330923792", "setting": "first-2-pick-and-tell", "worker_id": "YHC9KK130CNOD65", "story_id": "45761", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they actually have boxes full of teeth !", "storylet_id": "228808"}], [{"original_text": "They even show an old skull that looks like it had something wrong with it.", "album_id": "72157623226515173", "photo_flickr_id": "4330166825", "setting": "first-2-pick-and-tell", "worker_id": "YHC9KK130CNOD65", "story_id": "45761", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even show an old skull that looks like it had something wrong with it .", "storylet_id": "228809"}], [{"original_text": "We went to The Historical Dental Museum for school yesterday.", "album_id": "72157623226515173", "photo_flickr_id": "4330197855", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "45762", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the organization organization organization for school yesterday .", "storylet_id": "228810"}], [{"original_text": "It was a neat museum with everything having to do with teeth.", "album_id": "72157623226515173", "photo_flickr_id": "4330196103", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "45762", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a neat museum with everything having to do with teeth .", "storylet_id": "228811"}], [{"original_text": "They had rows and charts of books on teeth.", "album_id": "72157623226515173", "photo_flickr_id": "4330176809", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "45762", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had rows and charts of books on teeth .", "storylet_id": "228812"}], [{"original_text": "They even had some of the instruments that dentists used to use on display. Ughhh!", "album_id": "72157623226515173", "photo_flickr_id": "4330158653", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "45762", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even had some of the instruments that dentists used to use on display . ughhh !", "storylet_id": "228813"}], [{"original_text": "At the end, we saw some of the dentures that the dentists had made.", "album_id": "72157623226515173", "photo_flickr_id": "4330923792", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "45762", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , we saw some of the dentures that the dentists had made .", "storylet_id": "228814"}], [{"original_text": "It took about 20 minutes to arrive at the Historical Dental Museum.", "album_id": "72157623226515173", "photo_flickr_id": "4330197855", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "45763", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it took about 20 minutes to arrive at the organization organization organization .", "storylet_id": "228815"}], [{"original_text": "First we saw what a dentist's office use to look like.", "album_id": "72157623226515173", "photo_flickr_id": "4330196103", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "45763", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we saw what a dentist 's office use to look like .", "storylet_id": "228816"}], [{"original_text": "And we saw one of the first books on dental hygiene. ", "album_id": "72157623226515173", "photo_flickr_id": "4330176809", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "45763", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and we saw one of the first books on dental hygiene .", "storylet_id": "228817"}], [{"original_text": "The museum even showcased some of the first dental tools used. ", "album_id": "72157623226515173", "photo_flickr_id": "4330158653", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "45763", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the museum even showcased some of the first dental tools used .", "storylet_id": "228818"}], [{"original_text": "There were even a box of old dentures that revealed how much things have changed in this industry.", "album_id": "72157623226515173", "photo_flickr_id": "4330923792", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "45763", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were even a box of old dentures that revealed how much things have changed in this industry .", "storylet_id": "228819"}], [{"original_text": "Going to the Dentistry Museum was one of the creepiness things I have ever done. ", "album_id": "72157623226515173", "photo_flickr_id": "4330197855", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "45764", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going to the organization organization was one of the creepiness things i have ever done .", "storylet_id": "228820"}], [{"original_text": "It started out okay, with a set up showing an old vintage Dentist office. ", "album_id": "72157623226515173", "photo_flickr_id": "4330196103", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "45764", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it started out okay , with a set up showing an old vintage dentist office .", "storylet_id": "228821"}], [{"original_text": "But things got weirder and more unnerving as we went along. ", "album_id": "72157623226515173", "photo_flickr_id": "4330914576", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "45764", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but things got weirder and more unnerving as we went along .", "storylet_id": "228822"}], [{"original_text": "The cigar box full of antique dentures was almost more than I could handle. ", "album_id": "72157623226515173", "photo_flickr_id": "4330923792", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "45764", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cigar box full of antique dentures was almost more than i could handle .", "storylet_id": "228823"}], [{"original_text": "But the human skull that showed how they worked on the teeth...that was too much and I found an exit. ", "album_id": "72157623226515173", "photo_flickr_id": "4330166825", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "45764", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the human skull that showed how they worked on the teeth ... that was too much and i found an exit .", "storylet_id": "228824"}], [{"original_text": "Packing up for the trip.", "album_id": "72157626655773394", "photo_flickr_id": "5691506594", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45765", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "packing up for the trip .", "storylet_id": "228825"}], [{"original_text": "I made sure everything was there.", "album_id": "72157626655773394", "photo_flickr_id": "5690936507", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45765", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i made sure everything was there .", "storylet_id": "228826"}], [{"original_text": "The bags were packed tightly.", "album_id": "72157626655773394", "photo_flickr_id": "5691512928", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45765", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bags were packed tightly .", "storylet_id": "228827"}], [{"original_text": "The black carry on had everything I could need.", "album_id": "72157626655773394", "photo_flickr_id": "5691516476", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45765", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the black carry on had everything i could need .", "storylet_id": "228828"}], [{"original_text": "Zipped it up and ready to go.", "album_id": "72157626655773394", "photo_flickr_id": "5691519598", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45765", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "zipped it up and ready to go .", "storylet_id": "228829"}], [{"original_text": "The first day of school is arriving soon, so I placed an order for school supplies.", "album_id": "72157626655773394", "photo_flickr_id": "5691506594", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "45766", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the first day of school is arriving soon , so i placed an order for school supplies .", "storylet_id": "228830"}], [{"original_text": "I purchased a messengers bag. ", "album_id": "72157626655773394", "photo_flickr_id": "5690936507", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "45766", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i purchased a messengers bag .", "storylet_id": "228831"}], [{"original_text": "As well as a ton of necessary supplies.", "album_id": "72157626655773394", "photo_flickr_id": "5690953559", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "45766", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as well as a ton of necessary supplies .", "storylet_id": "228832"}], [{"original_text": "I started organizing them right away.", "album_id": "72157626655773394", "photo_flickr_id": "5690965495", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "45766", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i started organizing them right away .", "storylet_id": "228833"}], [{"original_text": "I am very prepared for the first day of classes now. ", "album_id": "72157626655773394", "photo_flickr_id": "5691548594", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "45766", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am very prepared for the first day of classes now .", "storylet_id": "228834"}], [{"original_text": "I packed my things for work today", "album_id": "72157626655773394", "photo_flickr_id": "5691506594", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45767", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i packed my things for work today", "storylet_id": "228835"}], [{"original_text": "I also made sure to pack lunch.", "album_id": "72157626655773394", "photo_flickr_id": "5690936507", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45767", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i also made sure to pack lunch .", "storylet_id": "228836"}], [{"original_text": "I brought my laptop with me.", "album_id": "72157626655773394", "photo_flickr_id": "5691512928", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45767", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i brought my laptop with me .", "storylet_id": "228837"}], [{"original_text": "Never know when you might need it.", "album_id": "72157626655773394", "photo_flickr_id": "5691516476", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45767", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "never know when you might need it .", "storylet_id": "228838"}], [{"original_text": "I put it in the bag.", "album_id": "72157626655773394", "photo_flickr_id": "5691519598", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45767", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i put it in the bag .", "storylet_id": "228839"}], [{"original_text": "I received a package with a diaper bag inside.", "album_id": "72157626655773394", "photo_flickr_id": "5691506594", "setting": "last-3-pick-old-and-tell", "worker_id": "M73OGVPYD3C9N6X", "story_id": "45768", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i received a package with a diaper bag inside .", "storylet_id": "228840"}], [{"original_text": "I unraveled the bag and saw that the outside is gray and black.", "album_id": "72157626655773394", "photo_flickr_id": "5690936507", "setting": "last-3-pick-old-and-tell", "worker_id": "M73OGVPYD3C9N6X", "story_id": "45768", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i unraveled the bag and saw that the outside is gray and black .", "storylet_id": "228841"}], [{"original_text": "I opened the flap and saw there was a pocket and zipper.", "album_id": "72157626655773394", "photo_flickr_id": "5691512928", "setting": "last-3-pick-old-and-tell", "worker_id": "M73OGVPYD3C9N6X", "story_id": "45768", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i opened the flap and saw there was a pocket and zipper .", "storylet_id": "228842"}], [{"original_text": "I unzipped the pocket and to my surprise the inside was pea green!", "album_id": "72157626655773394", "photo_flickr_id": "5691516476", "setting": "last-3-pick-old-and-tell", "worker_id": "M73OGVPYD3C9N6X", "story_id": "45768", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i unzipped the pocket and to my surprise the inside was pea green !", "storylet_id": "228843"}], [{"original_text": "I opened up the pea green portion and saw there is so much space in this bag.", "album_id": "72157626655773394", "photo_flickr_id": "5691519598", "setting": "last-3-pick-old-and-tell", "worker_id": "M73OGVPYD3C9N6X", "story_id": "45768", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i opened up the pea green portion and saw there is so much space in this bag .", "storylet_id": "228844"}], [{"original_text": "The box was opened, and Kurt waited for the right moment to escape his prison.", "album_id": "72157626655773394", "photo_flickr_id": "5691506594", "setting": "last-3-pick-old-and-tell", "worker_id": "5876FHR4KXIQL37", "story_id": "45769", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the box was opened , and [male] waited for the right moment to escape his prison .", "storylet_id": "228845"}], [{"original_text": "He fell sideways as the bag was flipped around. Any minute now, he would be able to get out.", "album_id": "72157626655773394", "photo_flickr_id": "5690936507", "setting": "last-3-pick-old-and-tell", "worker_id": "5876FHR4KXIQL37", "story_id": "45769", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he fell sideways as the bag was flipped around . any minute now , he would be able to get out .", "storylet_id": "228846"}], [{"original_text": "The bag was flipped again, and Kurt was flung into the stiff fabric of his prison.", "album_id": "72157626655773394", "photo_flickr_id": "5691512928", "setting": "last-3-pick-old-and-tell", "worker_id": "5876FHR4KXIQL37", "story_id": "45769", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bag was flipped again , and [male] was flung into the stiff fabric of his prison .", "storylet_id": "228847"}], [{"original_text": "The flap ripped open, and Kurt braced himself. The moment fresh air struck his face, he scrambled out and ran.", "album_id": "72157626655773394", "photo_flickr_id": "5691516476", "setting": "last-3-pick-old-and-tell", "worker_id": "5876FHR4KXIQL37", "story_id": "45769", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the flap ripped open , and [male] braced himself . the moment fresh air struck his face , he scrambled out and ran .", "storylet_id": "228848"}], [{"original_text": "The owner of the bag peered inside, never knowing that a tiny man was now in his house.", "album_id": "72157626655773394", "photo_flickr_id": "5691519598", "setting": "last-3-pick-old-and-tell", "worker_id": "5876FHR4KXIQL37", "story_id": "45769", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the owner of the bag peered inside , never knowing that a tiny man was now in his house .", "storylet_id": "228849"}], [{"original_text": "It was another day at the graveyard. ", "album_id": "72157624096000559", "photo_flickr_id": "4676983677", "setting": "first-2-pick-and-tell", "worker_id": "Y5JHDKGNVLHOUUV", "story_id": "45770", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was another day at the graveyard .", "storylet_id": "228850"}], [{"original_text": "There were fresh flowers at man of the graves. ", "album_id": "72157624096000559", "photo_flickr_id": "4677311354", "setting": "first-2-pick-and-tell", "worker_id": "Y5JHDKGNVLHOUUV", "story_id": "45770", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were fresh flowers at man of the graves .", "storylet_id": "228851"}], [{"original_text": "Peter was a great man. ", "album_id": "72157624096000559", "photo_flickr_id": "4677307734", "setting": "first-2-pick-and-tell", "worker_id": "Y5JHDKGNVLHOUUV", "story_id": "45770", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was a great man .", "storylet_id": "228852"}], [{"original_text": "I heard that Bert was loved by his children. ", "album_id": "72157624096000559", "photo_flickr_id": "4676678387", "setting": "first-2-pick-and-tell", "worker_id": "Y5JHDKGNVLHOUUV", "story_id": "45770", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i heard that [male] was loved by his children .", "storylet_id": "228853"}], [{"original_text": "I miss Columbus. ", "album_id": "72157624096000559", "photo_flickr_id": "4676679113", "setting": "first-2-pick-and-tell", "worker_id": "Y5JHDKGNVLHOUUV", "story_id": "45770", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i miss columbus .", "storylet_id": "228854"}], [{"original_text": "The graveyard made him a little uneasy, but he edged forward, camera ready.", "album_id": "72157624096000559", "photo_flickr_id": "4676983947", "setting": "first-2-pick-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "45771", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the graveyard made him a little uneasy , but he edged forward , camera ready .", "storylet_id": "228855"}], [{"original_text": "As he stood in front of a stone, he remembered a story someone had told him about this place.", "album_id": "72157624096000559", "photo_flickr_id": "4676680145", "setting": "first-2-pick-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "45771", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as he stood in front of a stone , he remembered a story someone had told him about this place .", "storylet_id": "228856"}], [{"original_text": "The person had said that many people saw ghosts out here. He peered at the next stone. He couldn't even read it.", "album_id": "72157624096000559", "photo_flickr_id": "4676677913", "setting": "first-2-pick-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "45771", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the person had said that many people saw ghosts out here . he peered at the next stone . he could n't even read it .", "storylet_id": "228857"}], [{"original_text": "This one was clearer. He shivered. Some of the people here had died so long ago. He could really imagine the owner of this stone as a ghost.", "album_id": "72157624096000559", "photo_flickr_id": "4677307734", "setting": "first-2-pick-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "45771", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one was clearer . he shivered . some of the people here had died so long ago . he could really imagine the owner of this stone as a ghost .", "storylet_id": "228858"}], [{"original_text": "He felt less jumpy when he saw the next gravestone. It was clean and the words were crisp. The man had died in 1997 and that didn't seem so scary.", "album_id": "72157624096000559", "photo_flickr_id": "4676679113", "setting": "first-2-pick-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "45771", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he felt less jumpy when he saw the next gravestone . it was clean and the words were crisp . the man had died in 1997 and that did n't seem so scary .", "storylet_id": "228859"}], [{"original_text": "We went to the gravesite.", "album_id": "72157624096000559", "photo_flickr_id": "4676983677", "setting": "last-3-pick-old-and-tell", "worker_id": "EONXET74M0XE84I", "story_id": "45772", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the gravesite .", "storylet_id": "228860"}], [{"original_text": "The walk was peaceful and serene.", "album_id": "72157624096000559", "photo_flickr_id": "4677311354", "setting": "last-3-pick-old-and-tell", "worker_id": "EONXET74M0XE84I", "story_id": "45772", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the walk was peaceful and serene .", "storylet_id": "228861"}], [{"original_text": "Here's the first gravestone we found.", "album_id": "72157624096000559", "photo_flickr_id": "4677307734", "setting": "last-3-pick-old-and-tell", "worker_id": "EONXET74M0XE84I", "story_id": "45772", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's the first gravestone we found .", "storylet_id": "228862"}], [{"original_text": "This gravestone seemed to be carved by hand.", "album_id": "72157624096000559", "photo_flickr_id": "4676678387", "setting": "last-3-pick-old-and-tell", "worker_id": "EONXET74M0XE84I", "story_id": "45772", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this gravestone seemed to be carved by hand .", "storylet_id": "228863"}], [{"original_text": "This was the nicest looking grave we found.", "album_id": "72157624096000559", "photo_flickr_id": "4676679113", "setting": "last-3-pick-old-and-tell", "worker_id": "EONXET74M0XE84I", "story_id": "45772", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the nicest looking grave we found .", "storylet_id": "228864"}], [{"original_text": "This is an old cemetery in London. ", "album_id": "72157624096000559", "photo_flickr_id": "4676983947", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "45773", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is an old cemetery in location .", "storylet_id": "228865"}], [{"original_text": "A lot of war veterans are buried here. ", "album_id": "72157624096000559", "photo_flickr_id": "4676680145", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "45773", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of war veterans are buried here .", "storylet_id": "228866"}], [{"original_text": "Some headstones are no longer readable. ", "album_id": "72157624096000559", "photo_flickr_id": "4676677913", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "45773", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some headstones are no longer readable .", "storylet_id": "228867"}], [{"original_text": "Peter was the last of his family to pass away that was born in the 1800's. ", "album_id": "72157624096000559", "photo_flickr_id": "4677307734", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "45773", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was the last of his family to pass away that was born in the 1800 's .", "storylet_id": "228868"}], [{"original_text": "This was his army buddy Columbus. ", "album_id": "72157624096000559", "photo_flickr_id": "4676679113", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "45773", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was his army buddy location .", "storylet_id": "228869"}], [{"original_text": "We traveled somewhere we haven't been before.", "album_id": "72157624096000559", "photo_flickr_id": "4676983677", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "45774", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we traveled somewhere we have n't been before .", "storylet_id": "228870"}], [{"original_text": "We arrived at our destination.", "album_id": "72157624096000559", "photo_flickr_id": "4677311354", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "45774", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we arrived at our destination .", "storylet_id": "228871"}], [{"original_text": "Peter C. Curren rests here.", "album_id": "72157624096000559", "photo_flickr_id": "4677307734", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "45774", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] c. curren rests here .", "storylet_id": "228872"}], [{"original_text": "Another Curren member rested here.", "album_id": "72157624096000559", "photo_flickr_id": "4676678387", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "45774", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another curren member rested here .", "storylet_id": "228873"}], [{"original_text": "Lastly, a military man's grave was here.", "album_id": "72157624096000559", "photo_flickr_id": "4676679113", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "45774", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , a military man 's grave was here .", "storylet_id": "228874"}], [{"original_text": "My sister and I were fighting one day. ", "album_id": "72157627483112861", "photo_flickr_id": "6120323194", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45775", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister and i were fighting one day .", "storylet_id": "228875"}], [{"original_text": "My mom said we had to kiss and make up, gross.", "album_id": "72157627483112861", "photo_flickr_id": "6120323568", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45775", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my mom said we had to kiss and make up , gross .", "storylet_id": "228876"}], [{"original_text": "She settled for a hug instead. Whew. ", "album_id": "72157627483112861", "photo_flickr_id": "6120324050", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45775", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she settled for a hug instead . whew .", "storylet_id": "228877"}], [{"original_text": "Then we sang a song. ", "album_id": "72157627483112861", "photo_flickr_id": "6120324606", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45775", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we sang a song .", "storylet_id": "228878"}], [{"original_text": "Now what mom? ", "album_id": "72157627483112861", "photo_flickr_id": "6119782285", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45775", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now what mom ?", "storylet_id": "228879"}], [{"original_text": "First day of school for my two.", "album_id": "72157627483112861", "photo_flickr_id": "6120323194", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "45776", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "first day of school for my two .", "storylet_id": "228880"}], [{"original_text": "Sis leans on big bro for a confidence boost.", "album_id": "72157627483112861", "photo_flickr_id": "6120324050", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "45776", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sis leans on big bro for a confidence boost .", "storylet_id": "228881"}], [{"original_text": "It doesn't take long to get wacky though.", "album_id": "72157627483112861", "photo_flickr_id": "6120324606", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "45776", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it does n't take long to get wacky though .", "storylet_id": "228882"}], [{"original_text": "Are you two ready for school yet.", "album_id": "72157627483112861", "photo_flickr_id": "6120325376", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "45776", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "are you two ready for school yet .", "storylet_id": "228883"}], [{"original_text": "Yay here come the bus.", "album_id": "72157627483112861", "photo_flickr_id": "6119783017", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "45776", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "yay here come the bus .", "storylet_id": "228884"}], [{"original_text": "Today is the first day of training camp for Toni and Ember.", "album_id": "72157627483112861", "photo_flickr_id": "6120323194", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45777", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is the first day of training camp for [female] and ember .", "storylet_id": "228885"}], [{"original_text": "They pose in sweet poses for the camera so mom can remember them this way.", "album_id": "72157627483112861", "photo_flickr_id": "6120324050", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45777", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they pose in sweet poses for the camera so mom can remember them this way .", "storylet_id": "228886"}], [{"original_text": "They also make fun faces as well, trying to enjoy their innocence while they can.", "album_id": "72157627483112861", "photo_flickr_id": "6120324606", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45777", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also make fun faces as well , trying to enjoy their innocence while they can .", "storylet_id": "228887"}], [{"original_text": "It is hard for them to smile as they wave goodbye.", "album_id": "72157627483112861", "photo_flickr_id": "6120325376", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45777", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is hard for them to smile as they wave goodbye .", "storylet_id": "228888"}], [{"original_text": "They are excited to start their training to become extreme gymnasts though.", "album_id": "72157627483112861", "photo_flickr_id": "6119783017", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45777", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are excited to start their training to become extreme gymnasts though .", "storylet_id": "228889"}], [{"original_text": "The bother and sister were ready for the first day of school.", "album_id": "72157627483112861", "photo_flickr_id": "6120323194", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "45778", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bother and sister were ready for the first day of school .", "storylet_id": "228890"}], [{"original_text": "They were excited to go to their first day and meet new friends.", "album_id": "72157627483112861", "photo_flickr_id": "6120323568", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "45778", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were excited to go to their first day and meet new friends .", "storylet_id": "228891"}], [{"original_text": "They told their mom how happy they were.", "album_id": "72157627483112861", "photo_flickr_id": "6120324050", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "45778", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they told their mom how happy they were .", "storylet_id": "228892"}], [{"original_text": "They said they were going to make a lot of new friends.", "album_id": "72157627483112861", "photo_flickr_id": "6120324606", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "45778", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they said they were going to make a lot of new friends .", "storylet_id": "228893"}], [{"original_text": "Then they got up and got ready to get in the car.", "album_id": "72157627483112861", "photo_flickr_id": "6119782285", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "45778", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then they got up and got ready to get in the car .", "storylet_id": "228894"}], [{"original_text": "The brother did not want to talk to his sister.", "album_id": "72157627483112861", "photo_flickr_id": "6120323194", "setting": "last-3-pick-old-and-tell", "worker_id": "VF9K3AOXELQX9TJ", "story_id": "45779", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the brother did not want to talk to his sister .", "storylet_id": "228895"}], [{"original_text": "The siblings made up.", "album_id": "72157627483112861", "photo_flickr_id": "6120324050", "setting": "last-3-pick-old-and-tell", "worker_id": "VF9K3AOXELQX9TJ", "story_id": "45779", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the siblings made up .", "storylet_id": "228896"}], [{"original_text": "They started to talk and smile.", "album_id": "72157627483112861", "photo_flickr_id": "6120324606", "setting": "last-3-pick-old-and-tell", "worker_id": "VF9K3AOXELQX9TJ", "story_id": "45779", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they started to talk and smile .", "storylet_id": "228897"}], [{"original_text": "Their parents showed up.", "album_id": "72157627483112861", "photo_flickr_id": "6120325376", "setting": "last-3-pick-old-and-tell", "worker_id": "VF9K3AOXELQX9TJ", "story_id": "45779", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their parents showed up .", "storylet_id": "228898"}], [{"original_text": "They were happy to see them.", "album_id": "72157627483112861", "photo_flickr_id": "6119783017", "setting": "last-3-pick-old-and-tell", "worker_id": "VF9K3AOXELQX9TJ", "story_id": "45779", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were happy to see them .", "storylet_id": "228899"}], [{"original_text": "The day began with a modicum of excitement.", "album_id": "72157627613240028", "photo_flickr_id": "6122951504", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "45780", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day began with a modicum of excitement .", "storylet_id": "228900"}], [{"original_text": "Mother walked the kids to school on the rainy day.", "album_id": "72157627613240028", "photo_flickr_id": "6122411823", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "45780", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mother walked the kids to school on the rainy day .", "storylet_id": "228901"}], [{"original_text": "The children and parents funneled into the school.", "album_id": "72157627613240028", "photo_flickr_id": "6122417243", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "45780", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the children and parents funneled into the school .", "storylet_id": "228902"}], [{"original_text": "As the children went into class, mother and daughter said goodbye and took a final photo.", "album_id": "72157627613240028", "photo_flickr_id": "6122420599", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "45780", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the children went into class , mother and daughter said goodbye and took a final photo .", "storylet_id": "228903"}], [{"original_text": "After that, it was time to do it all again with little Roe!", "album_id": "72157627613240028", "photo_flickr_id": "6122423581", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "45780", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that , it was time to do it all again with little roe !", "storylet_id": "228904"}], [{"original_text": "My sister caught me eating her cookies.", "album_id": "72157627613240028", "photo_flickr_id": "6122950336", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45781", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister caught me eating her cookies .", "storylet_id": "228905"}], [{"original_text": "Now we all have cookies. ", "album_id": "72157627613240028", "photo_flickr_id": "6122952676", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45781", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "now we all have cookies .", "storylet_id": "228906"}], [{"original_text": "Dont tell mom, she is oblivious. ", "album_id": "72157627613240028", "photo_flickr_id": "6122418483", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45781", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dont tell mom , she is oblivious .", "storylet_id": "228907"}], [{"original_text": "Don't tell that kid in the orange either, he dresses funny and we dont like him.", "album_id": "72157627613240028", "photo_flickr_id": "6122961788", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45781", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "do n't tell that kid in the orange either , he dresses funny and we dont like him .", "storylet_id": "228908"}], [{"original_text": "Down with orange shirts!! ", "album_id": "72157627613240028", "photo_flickr_id": "6122422419", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45781", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "down with orange shirts ! !", "storylet_id": "228909"}], [{"original_text": "She doesn't want to share her candy with her little brother before she goes to school.", "album_id": "72157627613240028", "photo_flickr_id": "6122951504", "setting": "last-3-pick-old-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "45782", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she does n't want to share her candy with her little brother before she goes to school .", "storylet_id": "228910"}], [{"original_text": "Sally walking Dora to school in the rain. ", "album_id": "72157627613240028", "photo_flickr_id": "6122411823", "setting": "last-3-pick-old-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "45782", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] walking [female] to school in the rain .", "storylet_id": "228911"}], [{"original_text": "All the kids showing up for school. Hope it stops raining so the kids can go outside today.", "album_id": "72157627613240028", "photo_flickr_id": "6122417243", "setting": "last-3-pick-old-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "45782", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the kids showing up for school . [female] it stops raining so the kids can go outside today .", "storylet_id": "228912"}], [{"original_text": "Dora didn't want another picture, but she's just so cute.", "album_id": "72157627613240028", "photo_flickr_id": "6122420599", "setting": "last-3-pick-old-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "45782", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] did n't want another picture , but she 's just so cute .", "storylet_id": "228913"}], [{"original_text": "He's waiting for Dora to get home from school. He always misses her.", "album_id": "72157627613240028", "photo_flickr_id": "6122423581", "setting": "last-3-pick-old-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "45782", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he 's waiting for [female] to get home from school . he always misses her .", "storylet_id": "228914"}], [{"original_text": "We got ready for the first day of school Today.", "album_id": "72157627613240028", "photo_flickr_id": "6122951504", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45783", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got ready for the first day of school today .", "storylet_id": "228915"}], [{"original_text": "It was raining really hard so we had to bring the umbrella.", "album_id": "72157627613240028", "photo_flickr_id": "6122411823", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45783", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was raining really hard so we had to bring the umbrella .", "storylet_id": "228916"}], [{"original_text": "All the children made their way into the building.", "album_id": "72157627613240028", "photo_flickr_id": "6122417243", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45783", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the children made their way into the building .", "storylet_id": "228917"}], [{"original_text": "Here is our daughter getting ready for her first classes.", "album_id": "72157627613240028", "photo_flickr_id": "6122420599", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45783", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is our daughter getting ready for her first classes .", "storylet_id": "228918"}], [{"original_text": "Our son was really excited to go.", "album_id": "72157627613240028", "photo_flickr_id": "6122423581", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45783", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our son was really excited to go .", "storylet_id": "228919"}], [{"original_text": "Lenna got ready for her first day of school.", "album_id": "72157627613240028", "photo_flickr_id": "6122951504", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "45784", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "lenna got ready for her first day of school .", "storylet_id": "228920"}], [{"original_text": "I walked with her to the school.", "album_id": "72157627613240028", "photo_flickr_id": "6122411823", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "45784", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i walked with her to the school .", "storylet_id": "228921"}], [{"original_text": "We joined a lot of students at the entryway.", "album_id": "72157627613240028", "photo_flickr_id": "6122417243", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "45784", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we joined a lot of students at the entryway .", "storylet_id": "228922"}], [{"original_text": "Lenna looked kind of scared. She enjoyed herself that day though!", "album_id": "72157627613240028", "photo_flickr_id": "6122420599", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "45784", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "lenna looked kind of scared . she enjoyed herself that day though !", "storylet_id": "228923"}], [{"original_text": "Next I dropped Roe off for his first day of preschool. I was sad to see my baby go.", "album_id": "72157627613240028", "photo_flickr_id": "6122423581", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "45784", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "next i dropped roe off for his first day of preschool . i was sad to see my baby go .", "storylet_id": "228924"}], [{"original_text": "As I walked through the florist shop I noticed these exotic flowers.", "album_id": "72157624549191891", "photo_flickr_id": "4869383376", "setting": "first-2-pick-and-tell", "worker_id": "M5AFKXKJU03RHWR", "story_id": "45785", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as i walked through the florist shop i noticed these exotic flowers .", "storylet_id": "228925"}], [{"original_text": "These flowers had a very sweet smell that might have been used in perfume.", "album_id": "72157624549191891", "photo_flickr_id": "4869391472", "setting": "first-2-pick-and-tell", "worker_id": "M5AFKXKJU03RHWR", "story_id": "45785", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these flowers had a very sweet smell that might have been used in perfume .", "storylet_id": "228926"}], [{"original_text": "I grabbed an empty wine bottle and filled with water.", "album_id": "72157624549191891", "photo_flickr_id": "4869028791", "setting": "first-2-pick-and-tell", "worker_id": "M5AFKXKJU03RHWR", "story_id": "45785", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i grabbed an empty wine bottle and filled with water .", "storylet_id": "228927"}], [{"original_text": "I used some string to tie the stems together for a nicer arrangement.", "album_id": "72157624549191891", "photo_flickr_id": "4869399328", "setting": "first-2-pick-and-tell", "worker_id": "M5AFKXKJU03RHWR", "story_id": "45785", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i used some string to tie the stems together for a nicer arrangement .", "storylet_id": "228928"}], [{"original_text": "Stepping back from the makeshift vase, I realize that i have a beautiful center piece.", "album_id": "72157624549191891", "photo_flickr_id": "4868793735", "setting": "first-2-pick-and-tell", "worker_id": "M5AFKXKJU03RHWR", "story_id": "45785", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "stepping back from the makeshift vase , i realize that i have a beautiful center piece .", "storylet_id": "228929"}], [{"original_text": "The drought had gripped the entire nation.", "album_id": "72157624549191891", "photo_flickr_id": "4868766363", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45786", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the drought had gripped the entire nation .", "storylet_id": "228930"}], [{"original_text": "Once fertile fields were bare.", "album_id": "72157624549191891", "photo_flickr_id": "4868770883", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45786", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once fertile fields were bare .", "storylet_id": "228931"}], [{"original_text": "Quickly made head stones dominated the landscape.", "album_id": "72157624549191891", "photo_flickr_id": "4869392258", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45786", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "quickly made head stones dominated the landscape .", "storylet_id": "228932"}], [{"original_text": "Cemeteries seemed to spring up everywhere.", "album_id": "72157624549191891", "photo_flickr_id": "4868788477", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45786", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cemeteries seemed to spring up everywhere .", "storylet_id": "228933"}], [{"original_text": "Death came closely after drought.", "album_id": "72157624549191891", "photo_flickr_id": "4868793735", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45786", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "death came closely after drought .", "storylet_id": "228934"}], [{"original_text": "I found some pretty flowers in the yard.", "album_id": "72157624549191891", "photo_flickr_id": "4869383376", "setting": "last-3-pick-old-and-tell", "worker_id": "Y71N5PUXVE2B7Y2", "story_id": "45787", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i found some pretty flowers in the yard .", "storylet_id": "228935"}], [{"original_text": "Purple is my favorite color so I cut them. ", "album_id": "72157624549191891", "photo_flickr_id": "4869391472", "setting": "last-3-pick-old-and-tell", "worker_id": "Y71N5PUXVE2B7Y2", "story_id": "45787", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "purple is my favorite color so i cut them .", "storylet_id": "228936"}], [{"original_text": "I thought they looked pretty in this vase.", "album_id": "72157624549191891", "photo_flickr_id": "4869028791", "setting": "last-3-pick-old-and-tell", "worker_id": "Y71N5PUXVE2B7Y2", "story_id": "45787", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i thought they looked pretty in this vase .", "storylet_id": "228937"}], [{"original_text": "It looks good sitting on the deck.", "album_id": "72157624549191891", "photo_flickr_id": "4869399328", "setting": "last-3-pick-old-and-tell", "worker_id": "Y71N5PUXVE2B7Y2", "story_id": "45787", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looks good sitting on the deck .", "storylet_id": "228938"}], [{"original_text": "When I go in tonight I will take it and put it on my bedside table.", "album_id": "72157624549191891", "photo_flickr_id": "4868793735", "setting": "last-3-pick-old-and-tell", "worker_id": "Y71N5PUXVE2B7Y2", "story_id": "45787", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when i go in tonight i will take it and put it on my bedside table .", "storylet_id": "228939"}], [{"original_text": "SPECIAL REPORT:A new breed of flower has been discovered!", "album_id": "72157624549191891", "photo_flickr_id": "4869383376", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "45788", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "special report : a new breed of flower has been discovered !", "storylet_id": "228940"}], [{"original_text": "Scientists wonder about the strange purple dots.", "album_id": "72157624549191891", "photo_flickr_id": "4869391472", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "45788", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "scientists wonder about the strange purple dots .", "storylet_id": "228941"}], [{"original_text": "But then it was discovered that the flowers were planted in whine.", "album_id": "72157624549191891", "photo_flickr_id": "4869028791", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "45788", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but then it was discovered that the flowers were planted in whine .", "storylet_id": "228942"}], [{"original_text": "Reports find that it was grown by a drunk gardener.", "album_id": "72157624549191891", "photo_flickr_id": "4869399328", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "45788", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "reports find that it was grown by a drunk gardener .", "storylet_id": "228943"}], [{"original_text": "We did not receive any comment from him.", "album_id": "72157624549191891", "photo_flickr_id": "4868793735", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "45788", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we did not receive any comment from him .", "storylet_id": "228944"}], [{"original_text": "These flowers are so pretty that they must be kept in a vase!", "album_id": "72157624549191891", "photo_flickr_id": "4868766363", "setting": "last-3-pick-old-and-tell", "worker_id": "Y6X6G6LRN56VYCY", "story_id": "45789", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these flowers are so pretty that they must be kept in a vase !", "storylet_id": "228945"}], [{"original_text": "This close up shows just how wonderful these flowers are!", "album_id": "72157624549191891", "photo_flickr_id": "4868770883", "setting": "last-3-pick-old-and-tell", "worker_id": "Y6X6G6LRN56VYCY", "story_id": "45789", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this close up shows just how wonderful these flowers are !", "storylet_id": "228946"}], [{"original_text": "The beauty and elegance found in nature is astounding!", "album_id": "72157624549191891", "photo_flickr_id": "4869392258", "setting": "last-3-pick-old-and-tell", "worker_id": "Y6X6G6LRN56VYCY", "story_id": "45789", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beauty and elegance found in nature is astounding !", "storylet_id": "228947"}], [{"original_text": "Even a bottle can make a good vase!", "album_id": "72157624549191891", "photo_flickr_id": "4868788477", "setting": "last-3-pick-old-and-tell", "worker_id": "Y6X6G6LRN56VYCY", "story_id": "45789", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even a bottle can make a good vase !", "storylet_id": "228948"}], [{"original_text": "The more these flowers grow, the more beautiful they become!", "album_id": "72157624549191891", "photo_flickr_id": "4868793735", "setting": "last-3-pick-old-and-tell", "worker_id": "Y6X6G6LRN56VYCY", "story_id": "45789", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the more these flowers grow , the more beautiful they become !", "storylet_id": "228949"}], [{"original_text": "I went to class for the first time today.", "album_id": "72157625429482242", "photo_flickr_id": "5216886582", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45790", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to class for the first time today .", "storylet_id": "228950"}], [{"original_text": "Some people were very happy to see me.", "album_id": "72157625429482242", "photo_flickr_id": "5196696379", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45790", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some people were very happy to see me .", "storylet_id": "228951"}], [{"original_text": "I had a great time there.", "album_id": "72157625429482242", "photo_flickr_id": "5192527783", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45790", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time there .", "storylet_id": "228952"}], [{"original_text": "I took a lot of pictures.", "album_id": "72157625429482242", "photo_flickr_id": "5200644138", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45790", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i took a lot of pictures .", "storylet_id": "228953"}], [{"original_text": "It was a lot of fun.", "album_id": "72157625429482242", "photo_flickr_id": "5193919096", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45790", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a lot of fun .", "storylet_id": "228954"}], [{"original_text": "The play was great.", "album_id": "72157625429482242", "photo_flickr_id": "5216886582", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45791", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the play was great .", "storylet_id": "228955"}], [{"original_text": "The star was believable.", "album_id": "72157625429482242", "photo_flickr_id": "5196696379", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45791", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the star was believable .", "storylet_id": "228956"}], [{"original_text": "The acting was in professional level.", "album_id": "72157625429482242", "photo_flickr_id": "5191704810", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45791", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the acting was in professional level .", "storylet_id": "228957"}], [{"original_text": "The words were memorized precisely.", "album_id": "72157625429482242", "photo_flickr_id": "5199833417", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45791", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the words were memorized precisely .", "storylet_id": "228958"}], [{"original_text": "They all bonded over color.", "album_id": "72157625429482242", "photo_flickr_id": "5191777897", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45791", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all bonded over color .", "storylet_id": "228959"}], [{"original_text": "There was a blonde in front of me who understood the course.", "album_id": "72157625429482242", "photo_flickr_id": "5216886582", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "45792", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a blonde in front of me who understood the course .", "storylet_id": "228960"}], [{"original_text": "For the great effort, this redhead received a kiss.", "album_id": "72157625429482242", "photo_flickr_id": "5196696379", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "45792", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "for the great effort , this redhead received a kiss .", "storylet_id": "228961"}], [{"original_text": "It was a lovely night and things were accomplished.", "album_id": "72157625429482242", "photo_flickr_id": "5192527783", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "45792", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a lovely night and things were accomplished .", "storylet_id": "228962"}], [{"original_text": "The women had very lovely hairstyles.", "album_id": "72157625429482242", "photo_flickr_id": "5200644138", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "45792", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the women had very lovely hairstyles .", "storylet_id": "228963"}], [{"original_text": "The coolest part about the event was the hair colors.", "album_id": "72157625429482242", "photo_flickr_id": "5193919096", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "45792", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the coolest part about the event was the hair colors .", "storylet_id": "228964"}], [{"original_text": "I went with some friends to go see a play.", "album_id": "72157625429482242", "photo_flickr_id": "5216886582", "setting": "last-3-pick-old-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "45793", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went with some friends to go see a play .", "storylet_id": "228965"}], [{"original_text": "It was a really lovely show with a lot of love in it.", "album_id": "72157625429482242", "photo_flickr_id": "5196696379", "setting": "last-3-pick-old-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "45793", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a really lovely show with a lot of love in it .", "storylet_id": "228966"}], [{"original_text": "The acting was superb, and the lead actor was a hunk!", "album_id": "72157625429482242", "photo_flickr_id": "5191704810", "setting": "last-3-pick-old-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "45793", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the acting was superb , and the lead actor was a hunk !", "storylet_id": "228967"}], [{"original_text": "I was drawn in by the story; I totally recommend it.", "album_id": "72157625429482242", "photo_flickr_id": "5199833417", "setting": "last-3-pick-old-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "45793", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was drawn in by the story ; i totally recommend it .", "storylet_id": "228968"}], [{"original_text": "The cast all had matching nail polish. It was so cute.", "album_id": "72157625429482242", "photo_flickr_id": "5191777897", "setting": "last-3-pick-old-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "45793", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cast all had matching nail polish . it was so cute .", "storylet_id": "228969"}], [{"original_text": "We were al waiting at the high school for my brother's performance.", "album_id": "72157625429482242", "photo_flickr_id": "5216886582", "setting": "last-3-pick-old-and-tell", "worker_id": "DKL5YC4HJEF1AF0", "story_id": "45794", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were al waiting at the high school for my brother 's performance .", "storylet_id": "228970"}], [{"original_text": "My sister and I were so excited!", "album_id": "72157625429482242", "photo_flickr_id": "5196696379", "setting": "last-3-pick-old-and-tell", "worker_id": "DKL5YC4HJEF1AF0", "story_id": "45794", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my sister and i were so excited !", "storylet_id": "228971"}], [{"original_text": "My brother did an amazing job on stage. He got a standing ovation!", "album_id": "72157625429482242", "photo_flickr_id": "5191704810", "setting": "last-3-pick-old-and-tell", "worker_id": "DKL5YC4HJEF1AF0", "story_id": "45794", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brother did an amazing job on stage . he got a standing ovation !", "storylet_id": "228972"}], [{"original_text": "His fellow actors were great as well...", "album_id": "72157625429482242", "photo_flickr_id": "5199833417", "setting": "last-3-pick-old-and-tell", "worker_id": "DKL5YC4HJEF1AF0", "story_id": "45794", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his fellow actors were great as well ...", "storylet_id": "228973"}], [{"original_text": "Here we are showing our purple nails to everyone.", "album_id": "72157625429482242", "photo_flickr_id": "5191777897", "setting": "last-3-pick-old-and-tell", "worker_id": "DKL5YC4HJEF1AF0", "story_id": "45794", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here we are showing our purple nails to everyone .", "storylet_id": "228974"}], [{"original_text": "Jack is wearing his backpack and getting ready to go to school. ", "album_id": "72157624912296920", "photo_flickr_id": "4972108795", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45795", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is wearing his backpack and getting ready to go to school .", "storylet_id": "228975"}], [{"original_text": "He decided to take a picture with some neighbors' children who don't go to school yet.", "album_id": "72157624912296920", "photo_flickr_id": "4972731246", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45795", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he decided to take a picture with some neighbors ' children who do n't go to school yet .", "storylet_id": "228976"}], [{"original_text": "These are Jack's classmates. ", "album_id": "72157624912296920", "photo_flickr_id": "4972730606", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45795", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these are [male] 's classmates .", "storylet_id": "228977"}], [{"original_text": "They love taking pictures so they decided to take a profile picture.", "album_id": "72157624912296920", "photo_flickr_id": "4972113419", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45795", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they love taking pictures so they decided to take a profile picture .", "storylet_id": "228978"}], [{"original_text": "Jack is waiting for the school bus and the neighbors' kids decided to wait with him.", "album_id": "72157624912296920", "photo_flickr_id": "4972731924", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45795", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] is waiting for the school bus and the neighbors ' kids decided to wait with him .", "storylet_id": "228979"}], [{"original_text": "The child had morning tea while getting ready for school.", "album_id": "72157624912296920", "photo_flickr_id": "4972111923", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "45796", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the child had morning tea while getting ready for school .", "storylet_id": "228980"}], [{"original_text": "He posed for some pictures before he headed off to his first day.", "album_id": "72157624912296920", "photo_flickr_id": "4972108795", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "45796", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he posed for some pictures before he headed off to his first day .", "storylet_id": "228981"}], [{"original_text": "He wasn't excited to go, but he pretended to be. ", "album_id": "72157624912296920", "photo_flickr_id": "4972724810", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "45796", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was n't excited to go , but he pretended to be .", "storylet_id": "228982"}], [{"original_text": "The kids who weren't going to school just wanted to go back to bed after these photos.", "album_id": "72157624912296920", "photo_flickr_id": "4972731246", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "45796", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids who were n't going to school just wanted to go back to bed after these photos .", "storylet_id": "228983"}], [{"original_text": "He waited for the bus to take him to school, but it never came. ", "album_id": "72157624912296920", "photo_flickr_id": "4972731924", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "45796", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he waited for the bus to take him to school , but it never came .", "storylet_id": "228984"}], [{"original_text": "Had a great morning on the first day of school.", "album_id": "72157624912296920", "photo_flickr_id": "4972111923", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45797", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "had a great morning on the first day of school .", "storylet_id": "228985"}], [{"original_text": "He was leaving.", "album_id": "72157624912296920", "photo_flickr_id": "4972108795", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45797", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was leaving .", "storylet_id": "228986"}], [{"original_text": "The baby brother said goodby.", "album_id": "72157624912296920", "photo_flickr_id": "4972724810", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45797", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the baby brother said goodby .", "storylet_id": "228987"}], [{"original_text": "The kids will miss him.", "album_id": "72157624912296920", "photo_flickr_id": "4972731246", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45797", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids will miss him .", "storylet_id": "228988"}], [{"original_text": "They waited for him to get on the bus.", "album_id": "72157624912296920", "photo_flickr_id": "4972731924", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45797", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they waited for him to get on the bus .", "storylet_id": "228989"}], [{"original_text": "First day of school. ", "album_id": "72157624912296920", "photo_flickr_id": "4972108795", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45798", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "first day of school .", "storylet_id": "228990"}], [{"original_text": "He hugged his brother and sister goodbye. ", "album_id": "72157624912296920", "photo_flickr_id": "4972731246", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45798", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he hugged his brother and sister goodbye .", "storylet_id": "228991"}], [{"original_text": "All the kids on the block went to the bus stop. ", "album_id": "72157624912296920", "photo_flickr_id": "4972730606", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45798", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the kids on the block went to the bus stop .", "storylet_id": "228992"}], [{"original_text": "All lined up in a row. ", "album_id": "72157624912296920", "photo_flickr_id": "4972113419", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45798", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all lined up in a row .", "storylet_id": "228993"}], [{"original_text": "Except the Lawson kids, their mother wouldn't let them. ", "album_id": "72157624912296920", "photo_flickr_id": "4972731924", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45798", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "except the lawson kids , their mother would n't let them .", "storylet_id": "228994"}], [{"original_text": "My son started 3rd grade today.", "album_id": "72157624912296920", "photo_flickr_id": "4972108795", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45799", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my son started 3rd grade today .", "storylet_id": "228995"}], [{"original_text": "Each year on the first day of school I take a picture with all of our kids together.", "album_id": "72157624912296920", "photo_flickr_id": "4972731246", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45799", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each year on the first day of school i take a picture with all of our kids together .", "storylet_id": "228996"}], [{"original_text": "It turns out that a lot of my son's friends wanted to take a picture with him, too.", "album_id": "72157624912296920", "photo_flickr_id": "4972730606", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45799", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it turns out that a lot of my son 's friends wanted to take a picture with him , too .", "storylet_id": "228997"}], [{"original_text": "In fact, I ended up spending 30 minutes taking pictures of all of them.", "album_id": "72157624912296920", "photo_flickr_id": "4972113419", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45799", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in fact , i ended up spending 30 minutes taking pictures of all of them .", "storylet_id": "228998"}], [{"original_text": "For the first time ever I'm allowing my son to wait for, and take, the school bus on his own.", "album_id": "72157624912296920", "photo_flickr_id": "4972731924", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45799", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for the first time ever i 'm allowing my son to wait for , and take , the school bus on his own .", "storylet_id": "228999"}], [{"original_text": "This year we participated in the St. Patrick's Day Bash.", "album_id": "72157594581215862", "photo_flickr_id": "416943817", "setting": "first-2-pick-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "45800", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this year we participated in the st. [male] 's day bash .", "storylet_id": "229000"}], [{"original_text": "Everyone was dressed in green and ready to begin.", "album_id": "72157594581215862", "photo_flickr_id": "417900309", "setting": "first-2-pick-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "45800", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was dressed in green and ready to begin .", "storylet_id": "229001"}], [{"original_text": "A local fife and drum played as we were off.", "album_id": "72157594581215862", "photo_flickr_id": "417900317", "setting": "first-2-pick-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "45800", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a local fife and drum played as we were off .", "storylet_id": "229002"}], [{"original_text": "At the finish line we were all greeted by a round of applause.", "album_id": "72157594581215862", "photo_flickr_id": "417918645", "setting": "first-2-pick-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "45800", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the finish line we were all greeted by a round of applause .", "storylet_id": "229003"}], [{"original_text": "We were then treated to Irish music.", "album_id": "72157594581215862", "photo_flickr_id": "417918632", "setting": "first-2-pick-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "45800", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were then treated to irish music .", "storylet_id": "229004"}], [{"original_text": "Participating in the St. Patrick's Day Dash run.", "album_id": "72157594581215862", "photo_flickr_id": "417900309", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "45801", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "participating in the st. [male] 's day dash run .", "storylet_id": "229005"}], [{"original_text": "Henry Weinhard's st. Patrick Day dash running number. ", "album_id": "72157594581215862", "photo_flickr_id": "416943817", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "45801", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] weinhard 's st. [male] day dash running number .", "storylet_id": "229006"}], [{"original_text": "The race is about to start the live band is playing . ", "album_id": "72157594581215862", "photo_flickr_id": "417900317", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "45801", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the race is about to start the live band is playing .", "storylet_id": "229007"}], [{"original_text": "The runners are running through the tunnel. ", "album_id": "72157594581215862", "photo_flickr_id": "417909442", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "45801", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the runners are running through the tunnel .", "storylet_id": "229008"}], [{"original_text": "And now the runners are running through the bridge. ", "album_id": "72157594581215862", "photo_flickr_id": "417909453", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "45801", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and now the runners are running through the bridge .", "storylet_id": "229009"}], [{"original_text": "Today I'm running in the St. Patrick's Day Dash.", "album_id": "72157594581215862", "photo_flickr_id": "417900309", "setting": "last-3-pick-old-and-tell", "worker_id": "00TTIG47U5DR9FJ", "story_id": "45802", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i 'm running in the st. [male] 's day dash .", "storylet_id": "229010"}], [{"original_text": "I got this t-shirt and number.", "album_id": "72157594581215862", "photo_flickr_id": "416943817", "setting": "last-3-pick-old-and-tell", "worker_id": "00TTIG47U5DR9FJ", "story_id": "45802", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got this t-shirt and number .", "storylet_id": "229011"}], [{"original_text": "First we listened to the band.", "album_id": "72157594581215862", "photo_flickr_id": "417900317", "setting": "last-3-pick-old-and-tell", "worker_id": "00TTIG47U5DR9FJ", "story_id": "45802", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "first we listened to the band .", "storylet_id": "229012"}], [{"original_text": "It was pretty cool running altogether in the tunnel.", "album_id": "72157594581215862", "photo_flickr_id": "417909442", "setting": "last-3-pick-old-and-tell", "worker_id": "00TTIG47U5DR9FJ", "story_id": "45802", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was pretty cool running altogether in the tunnel .", "storylet_id": "229013"}], [{"original_text": "Even though the weather was not that great, the run was awesome.", "album_id": "72157594581215862", "photo_flickr_id": "417909453", "setting": "last-3-pick-old-and-tell", "worker_id": "00TTIG47U5DR9FJ", "story_id": "45802", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even though the weather was not that great , the run was awesome .", "storylet_id": "229014"}], [{"original_text": "The day is finally here ", "album_id": "72157594581215862", "photo_flickr_id": "416943817", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "45803", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day is finally here", "storylet_id": "229015"}], [{"original_text": "the streets are packed with runners ", "album_id": "72157594581215862", "photo_flickr_id": "417900309", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "45803", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the streets are packed with runners", "storylet_id": "229016"}], [{"original_text": "the music helps to entertain all in attenadance ", "album_id": "72157594581215862", "photo_flickr_id": "417900317", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "45803", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the music helps to entertain all in attenadance", "storylet_id": "229017"}], [{"original_text": "We are welcomes to the start of the race ", "album_id": "72157594581215862", "photo_flickr_id": "417918645", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "45803", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we are welcomes to the start of the race", "storylet_id": "229018"}], [{"original_text": "let games begin ", "album_id": "72157594581215862", "photo_flickr_id": "417918632", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "45803", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "let games begin", "storylet_id": "229019"}], [{"original_text": "I did a race for Saint Patrick's Day. Here is my participation number.", "album_id": "72157594581215862", "photo_flickr_id": "416943817", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "45804", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i did a race for saint [male] 's day . here is my participation number .", "storylet_id": "229020"}], [{"original_text": "Here is the starting line.", "album_id": "72157594581215862", "photo_flickr_id": "417900309", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "45804", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is the starting line .", "storylet_id": "229021"}], [{"original_text": "Along the way there was a lot of fun, including this band.", "album_id": "72157594581215862", "photo_flickr_id": "417900317", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "45804", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "along the way there was a lot of fun , including this band .", "storylet_id": "229022"}], [{"original_text": "Here are the post race festivities.", "album_id": "72157594581215862", "photo_flickr_id": "417918645", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "45804", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here are the post race festivities .", "storylet_id": "229023"}], [{"original_text": "There was a cool band as well that got us in a relaxing mood after the race.", "album_id": "72157594581215862", "photo_flickr_id": "417918632", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "45804", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a cool band as well that got us in a relaxing mood after the race .", "storylet_id": "229024"}], [{"original_text": "Their son was all ready for his first day of kindergarten. Mom took a picture with him first.", "album_id": "771385", "photo_flickr_id": "34839977", "setting": "first-2-pick-and-tell", "worker_id": "M087RFFV14FC4J7", "story_id": "45805", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "their son was all ready for his first day of kindergarten . mom took a picture with him first .", "storylet_id": "229025"}], [{"original_text": "Then dad got in on the fun, posing proudly with his boy.", "album_id": "771385", "photo_flickr_id": "34839989", "setting": "first-2-pick-and-tell", "worker_id": "M087RFFV14FC4J7", "story_id": "45805", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then dad got in on the fun , posing proudly with his boy .", "storylet_id": "229026"}], [{"original_text": "Their little boy wasn't scared at all, and even smiled again for the camera while he waited with the other students.", "album_id": "771385", "photo_flickr_id": "34839997", "setting": "first-2-pick-and-tell", "worker_id": "M087RFFV14FC4J7", "story_id": "45805", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their little boy was n't scared at all , and even smiled again for the camera while he waited with the other students .", "storylet_id": "229027"}], [{"original_text": "Once he found his classroom, he quickly learned that his teacher was helpful and friendly.", "album_id": "771385", "photo_flickr_id": "34840206", "setting": "first-2-pick-and-tell", "worker_id": "M087RFFV14FC4J7", "story_id": "45805", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once he found his classroom , he quickly learned that his teacher was helpful and friendly .", "storylet_id": "229028"}], [{"original_text": "Their son was soon very engrossed in his work and on his way to a lifetime of learning.", "album_id": "771385", "photo_flickr_id": "34840292", "setting": "first-2-pick-and-tell", "worker_id": "M087RFFV14FC4J7", "story_id": "45805", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their son was soon very engrossed in his work and on his way to a lifetime of learning .", "storylet_id": "229029"}], [{"original_text": "Mom is at the entrance of the school with the young child on the first day.", "album_id": "771385", "photo_flickr_id": "34839977", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "45806", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom is at the entrance of the school with the young child on the first day .", "storylet_id": "229030"}], [{"original_text": "Dad also came along to give the little one comfort on the first day.", "album_id": "771385", "photo_flickr_id": "34839989", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "45806", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dad also came along to give the little one comfort on the first day .", "storylet_id": "229031"}], [{"original_text": "Here is a picture of the young child on his first day of school with some classmates.", "album_id": "771385", "photo_flickr_id": "34839997", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "45806", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is a picture of the young child on his first day of school with some classmates .", "storylet_id": "229032"}], [{"original_text": "The children are getting instruction on what they will do once all they others arrive.", "album_id": "771385", "photo_flickr_id": "34840014", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "45806", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the children are getting instruction on what they will do once all they others arrive .", "storylet_id": "229033"}], [{"original_text": "The children are waiting for the others to arrive plus they are talking and getting to know one another.", "album_id": "771385", "photo_flickr_id": "34840027", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "45806", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the children are waiting for the others to arrive plus they are talking and getting to know one another .", "storylet_id": "229034"}], [{"original_text": "Little man was off to start kindergarten, this time came so fast.", "album_id": "771385", "photo_flickr_id": "34839977", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "45807", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "little man was off to start kindergarten , this time came so fast .", "storylet_id": "229035"}], [{"original_text": "Dad called in late to be able to be there for his first day.", "album_id": "771385", "photo_flickr_id": "34839989", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "45807", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dad called in late to be able to be there for his first day .", "storylet_id": "229036"}], [{"original_text": "Little man was happy to be starting this new adventure.", "album_id": "771385", "photo_flickr_id": "34839997", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "45807", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "little man was happy to be starting this new adventure .", "storylet_id": "229037"}], [{"original_text": "I was happy to be there for his first day as well, this was nerve wrecking for me more than him.", "album_id": "771385", "photo_flickr_id": "34840206", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "45807", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was happy to be there for his first day as well , this was nerve wrecking for me more than him .", "storylet_id": "229038"}], [{"original_text": "But I know he is going to do well, we are so proud.", "album_id": "771385", "photo_flickr_id": "34840292", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "45807", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but i know he is going to do well , we are so proud .", "storylet_id": "229039"}], [{"original_text": "Today was Todd's first day at school, mum took a picture to remember. ", "album_id": "771385", "photo_flickr_id": "34839977", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "45808", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was [male] 's first day at school , mum took a picture to remember .", "storylet_id": "229040"}], [{"original_text": "As did dad, he was happy his son got the opportunity to attend this kindergarten. ", "album_id": "771385", "photo_flickr_id": "34839989", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "45808", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as did dad , he was happy his son got the opportunity to attend this kindergarten .", "storylet_id": "229041"}], [{"original_text": "Todd himself seemed pretty happy as well. ", "album_id": "771385", "photo_flickr_id": "34839997", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "45808", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] himself seemed pretty happy as well .", "storylet_id": "229042"}], [{"original_text": "He got to draw and had a nice teacher. ", "album_id": "771385", "photo_flickr_id": "34840206", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "45808", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he got to draw and had a nice teacher .", "storylet_id": "229043"}], [{"original_text": "He let his creativity run wild on paper. He can't wait to do it again. ", "album_id": "771385", "photo_flickr_id": "34840292", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "45808", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he let his creativity run wild on paper . he ca n't wait to do it again .", "storylet_id": "229044"}], [{"original_text": "I posed with my son on his first day of school.", "album_id": "771385", "photo_flickr_id": "34839977", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45809", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i posed with my son on his first day of school .", "storylet_id": "229045"}], [{"original_text": "My husband's turn. My two handsome men!", "album_id": "771385", "photo_flickr_id": "34839989", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45809", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my husband 's turn . my two handsome men !", "storylet_id": "229046"}], [{"original_text": "My son was a little nervous and very excited to meet his new classmates.", "album_id": "771385", "photo_flickr_id": "34839997", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45809", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my son was a little nervous and very excited to meet his new classmates .", "storylet_id": "229047"}], [{"original_text": "His teacher graciously allowed me to take a classroom photo.", "album_id": "771385", "photo_flickr_id": "34840206", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45809", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his teacher graciously allowed me to take a classroom photo .", "storylet_id": "229048"}], [{"original_text": "He's loves school and is hard at work. I'm so proud of him!", "album_id": "771385", "photo_flickr_id": "34840292", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45809", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he 's loves school and is hard at work . i 'm so proud of him !", "storylet_id": "229049"}], [{"original_text": "It was a hot summer day in the gym, trying to get my black belt.", "album_id": "72157626661468475", "photo_flickr_id": "5750657482", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45810", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a hot summer day in the gym , trying to get my black belt .", "storylet_id": "229050"}], [{"original_text": "I had to break 14 bricks.", "album_id": "72157626661468475", "photo_flickr_id": "5750657896", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45810", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had to break 14 bricks .", "storylet_id": "229051"}], [{"original_text": "I had to roundhouse kick in perfect form. ", "album_id": "72157626661468475", "photo_flickr_id": "5750658102", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45810", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had to roundhouse kick in perfect form .", "storylet_id": "229052"}], [{"original_text": "I also had to beat my sparring partner by 50 points. ", "album_id": "72157626661468475", "photo_flickr_id": "5750658370", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45810", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also had to beat my sparring partner by 50 points .", "storylet_id": "229053"}], [{"original_text": "It was a rough day, but I did it!", "album_id": "72157626661468475", "photo_flickr_id": "5750115351", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45810", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a rough day , but i did it !", "storylet_id": "229054"}], [{"original_text": "Kenny was all about showing off his karate moves.", "album_id": "72157626661468475", "photo_flickr_id": "5750657896", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "45811", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was all about showing off his karate moves .", "storylet_id": "229055"}], [{"original_text": "He had been practicing for months.", "album_id": "72157626661468475", "photo_flickr_id": "5750658102", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "45811", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he had been practicing for months .", "storylet_id": "229056"}], [{"original_text": "He finally had a challenge with his greatest opponent.", "album_id": "72157626661468475", "photo_flickr_id": "5750658370", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "45811", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he finally had a challenge with his greatest opponent .", "storylet_id": "229057"}], [{"original_text": "It was a close match but he won in the end.", "album_id": "72157626661468475", "photo_flickr_id": "5750658638", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "45811", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a close match but he won in the end .", "storylet_id": "229058"}], [{"original_text": "He received a trophy and went out to pizza afterwards.", "album_id": "72157626661468475", "photo_flickr_id": "5750116425", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "45811", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he received a trophy and went out to pizza afterwards .", "storylet_id": "229059"}], [{"original_text": "Today Jim and I got to watch the kids karate recital.", "album_id": "72157626661468475", "photo_flickr_id": "5750657482", "setting": "last-3-pick-old-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "45812", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today [male] and i got to watch the kids karate recital .", "storylet_id": "229060"}], [{"original_text": "This kid was very impressive, I don't know how he made it through that board but watching it break in half made even my hand hurt!", "album_id": "72157626661468475", "photo_flickr_id": "5750657896", "setting": "last-3-pick-old-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "45812", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this kid was very impressive , i do n't know how he made it through that board but watching it break in half made even my hand hurt !", "storylet_id": "229061"}], [{"original_text": "Our sweet Danielle didn't have as good of a show to put on..so she kicked the air a few times", "album_id": "72157626661468475", "photo_flickr_id": "5750658102", "setting": "last-3-pick-old-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "45812", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our sweet [female] did n't have as good of a show to put on..so she kicked the air a few times", "storylet_id": "229062"}], [{"original_text": "Jared did great, we're so proud of him! A few moments after this he kicked that little girl right in the head, good times.", "album_id": "72157626661468475", "photo_flickr_id": "5750658370", "setting": "last-3-pick-old-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "45812", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] did great , we 're so proud of him ! a few moments after this he kicked that little girl right in the head , good times .", "storylet_id": "229063"}], [{"original_text": "The recital ended with each kid getting trophies, thank goodness because Danielle wouldn't have walked away with anything for those embarrassing kicks.", "album_id": "72157626661468475", "photo_flickr_id": "5750115351", "setting": "last-3-pick-old-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "45812", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the recital ended with each kid getting trophies , thank goodness because [female] would n't have walked away with anything for those embarrassing kicks .", "storylet_id": "229064"}], [{"original_text": "The Karate Championship was a big hit!", "album_id": "72157626661468475", "photo_flickr_id": "5750657896", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45813", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the karate championship was a big hit !", "storylet_id": "229065"}], [{"original_text": "All the best fighters showed their kicks.", "album_id": "72157626661468475", "photo_flickr_id": "5750658102", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45813", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the best fighters showed their kicks .", "storylet_id": "229066"}], [{"original_text": "Legs and fists were flying around.", "album_id": "72157626661468475", "photo_flickr_id": "5750658370", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45813", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "legs and fists were flying around .", "storylet_id": "229067"}], [{"original_text": "It was very fun to see all this action.", "album_id": "72157626661468475", "photo_flickr_id": "5750658638", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45813", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was very fun to see all this action .", "storylet_id": "229068"}], [{"original_text": "Our family came away with four trophies, we were really happy.", "album_id": "72157626661468475", "photo_flickr_id": "5750116425", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45813", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our family came away with four trophies , we were really happy .", "storylet_id": "229069"}], [{"original_text": "They had a karate competition today.", "album_id": "72157626661468475", "photo_flickr_id": "5750657896", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "45814", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they had a karate competition today .", "storylet_id": "229070"}], [{"original_text": "They did their katas.", "album_id": "72157626661468475", "photo_flickr_id": "5750658102", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "45814", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they did their katas .", "storylet_id": "229071"}], [{"original_text": "They spared other contestants.", "album_id": "72157626661468475", "photo_flickr_id": "5750658370", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "45814", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they spared other contestants .", "storylet_id": "229072"}], [{"original_text": "They had a good time sparing mostly.", "album_id": "72157626661468475", "photo_flickr_id": "5750658638", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "45814", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had a good time sparing mostly .", "storylet_id": "229073"}], [{"original_text": "They all 4 won something.", "album_id": "72157626661468475", "photo_flickr_id": "5750116425", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "45814", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all 4 won something .", "storylet_id": "229074"}], [{"original_text": "Welcome to UCA, the greeting entering the campus.", "album_id": "72157627391929081", "photo_flickr_id": "6079999848", "setting": "first-2-pick-and-tell", "worker_id": "5T30FWAJUVC8NGH", "story_id": "45815", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "welcome to location , the greeting entering the campus .", "storylet_id": "229075"}], [{"original_text": "Food was available for students outside.", "album_id": "72157627391929081", "photo_flickr_id": "6079462905", "setting": "first-2-pick-and-tell", "worker_id": "5T30FWAJUVC8NGH", "story_id": "45815", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "food was available for students outside .", "storylet_id": "229076"}], [{"original_text": "Inside students are lounging comfortably while studying.", "album_id": "72157627391929081", "photo_flickr_id": "6080000976", "setting": "first-2-pick-and-tell", "worker_id": "5T30FWAJUVC8NGH", "story_id": "45815", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "inside students are lounging comfortably while studying .", "storylet_id": "229077"}], [{"original_text": "Students outside are meeting and planning.", "album_id": "72157627391929081", "photo_flickr_id": "6079464891", "setting": "first-2-pick-and-tell", "worker_id": "5T30FWAJUVC8NGH", "story_id": "45815", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "students outside are meeting and planning .", "storylet_id": "229078"}], [{"original_text": "After a long day it's time for the students to return home.", "album_id": "72157627391929081", "photo_flickr_id": "6080002232", "setting": "first-2-pick-and-tell", "worker_id": "5T30FWAJUVC8NGH", "story_id": "45815", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long day it 's time for the students to return home .", "storylet_id": "229079"}], [{"original_text": "So yesterday we went on a tour of UCLA.", "album_id": "72157627391929081", "photo_flickr_id": "6079999848", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45816", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so yesterday we went on a tour of organization .", "storylet_id": "229080"}], [{"original_text": "We found a crazy lady selling cookies on the side of the road. ", "album_id": "72157627391929081", "photo_flickr_id": "6080000246", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45816", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we found a crazy lady selling cookies on the side of the road .", "storylet_id": "229081"}], [{"original_text": "We met some guys. ", "album_id": "72157627391929081", "photo_flickr_id": "6080000598", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45816", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we met some guys .", "storylet_id": "229082"}], [{"original_text": "We checked out the library. ", "album_id": "72157627391929081", "photo_flickr_id": "6080000976", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45816", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we checked out the library .", "storylet_id": "229083"}], [{"original_text": "And then we went home. ", "album_id": "72157627391929081", "photo_flickr_id": "6080002232", "setting": "first-2-pick-and-tell", "worker_id": "4G476R12RK7PHTW", "story_id": "45816", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then we went home .", "storylet_id": "229084"}], [{"original_text": "We took a tour of the UCLA campus. ", "album_id": "72157627391929081", "photo_flickr_id": "6079999848", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "45817", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a tour of the organization campus .", "storylet_id": "229085"}], [{"original_text": "There was a bake sale going on. ", "album_id": "72157627391929081", "photo_flickr_id": "6079462905", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "45817", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a bake sale going on .", "storylet_id": "229086"}], [{"original_text": "Students looked busy studying on their laptops. ", "album_id": "72157627391929081", "photo_flickr_id": "6080000976", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "45817", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "students looked busy studying on their laptops .", "storylet_id": "229087"}], [{"original_text": "We were a little lost trying to find certain building. ", "album_id": "72157627391929081", "photo_flickr_id": "6079464891", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "45817", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were a little lost trying to find certain building .", "storylet_id": "229088"}], [{"original_text": "We walked together with a group to find the building we were looking for. ", "album_id": "72157627391929081", "photo_flickr_id": "6080002232", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "45817", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we walked together with a group to find the building we were looking for .", "storylet_id": "229089"}], [{"original_text": "It student orientation day at UCA. ", "album_id": "72157627391929081", "photo_flickr_id": "6079999848", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "45818", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it student orientation day at organization .", "storylet_id": "229090"}], [{"original_text": "There is a bake sale going on by one of the senior classes. ", "album_id": "72157627391929081", "photo_flickr_id": "6079462905", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "45818", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is a bake sale going on by one of the senior classes .", "storylet_id": "229091"}], [{"original_text": "These girls are looking over their possible class schedules. ", "album_id": "72157627391929081", "photo_flickr_id": "6080000976", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "45818", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these girls are looking over their possible class schedules .", "storylet_id": "229092"}], [{"original_text": "Jane and Pevoli joke about Marna's schedule being completely opposite theirs. ", "album_id": "72157627391929081", "photo_flickr_id": "6079464891", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "45818", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and pevoli joke about marna 's schedule being completely opposite theirs .", "storylet_id": "229093"}], [{"original_text": "Here are more students coming for the second half of the day. ", "album_id": "72157627391929081", "photo_flickr_id": "6080002232", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "45818", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here are more students coming for the second half of the day .", "storylet_id": "229094"}], [{"original_text": "Everyone went to UCA.", "album_id": "72157627391929081", "photo_flickr_id": "6079999848", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "45819", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone went to uca .", "storylet_id": "229095"}], [{"original_text": "The day began with a bake sale to benefit the school.", "album_id": "72157627391929081", "photo_flickr_id": "6079462905", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "45819", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the day began with a bake sale to benefit the school .", "storylet_id": "229096"}], [{"original_text": "Some girls spent the day looking at their laptops.", "album_id": "72157627391929081", "photo_flickr_id": "6080000976", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "45819", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some girls spent the day looking at their laptops .", "storylet_id": "229097"}], [{"original_text": "Other girls looked over maps of the school.", "album_id": "72157627391929081", "photo_flickr_id": "6079464891", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "45819", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other girls looked over maps of the school .", "storylet_id": "229098"}], [{"original_text": "Everyone walked together around the campus.", "album_id": "72157627391929081", "photo_flickr_id": "6080002232", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "45819", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone walked together around the campus .", "storylet_id": "229099"}], [{"original_text": "The rebuilding of Iraq is taking a lot of time.", "album_id": "72157626596756884", "photo_flickr_id": "5663823448", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45820", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the rebuilding of location is taking a lot of time .", "storylet_id": "229100"}], [{"original_text": "Our soldiers are helping the people wherever they can.", "album_id": "72157626596756884", "photo_flickr_id": "5663822756", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45820", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our soldiers are helping the people wherever they can .", "storylet_id": "229101"}], [{"original_text": "Building and reinforcing new homes and getting people a place to live.", "album_id": "72157626596756884", "photo_flickr_id": "5663822666", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45820", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "building and reinforcing new homes and getting people a place to live .", "storylet_id": "229102"}], [{"original_text": "Everyone is happy that they are getting help.", "album_id": "72157626596756884", "photo_flickr_id": "5663254473", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45820", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone is happy that they are getting help .", "storylet_id": "229103"}], [{"original_text": "They thank the soldiers everyday for thinking of them.", "album_id": "72157626596756884", "photo_flickr_id": "5663822874", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45820", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they thank the soldiers everyday for thinking of them .", "storylet_id": "229104"}], [{"original_text": "Some where over there in a small ton they need people to help them rebuild.", "album_id": "72157626596756884", "photo_flickr_id": "5663823448", "setting": "first-2-pick-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "45821", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some where over there in a small ton they need people to help them rebuild .", "storylet_id": "229105"}], [{"original_text": "Our US soldiers are there to help the people out.", "album_id": "72157626596756884", "photo_flickr_id": "5663822756", "setting": "first-2-pick-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "45821", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our location soldiers are there to help the people out .", "storylet_id": "229106"}], [{"original_text": "Soldiers spend time painting and culking.", "album_id": "72157626596756884", "photo_flickr_id": "5663822666", "setting": "first-2-pick-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "45821", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "soldiers spend time painting and culking .", "storylet_id": "229107"}], [{"original_text": " Some time the women of the town bring the kids to meet the soldiers in order for them to know who is helping.", "album_id": "72157626596756884", "photo_flickr_id": "5663254473", "setting": "first-2-pick-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "45821", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some time the women of the town bring the kids to meet the soldiers in order for them to know who is helping .", "storylet_id": "229108"}], [{"original_text": " A lot of the time the kids are happy to see the soldiers.", "album_id": "72157626596756884", "photo_flickr_id": "5663253863", "setting": "first-2-pick-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "45821", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a lot of the time the kids are happy to see the soldiers .", "storylet_id": "229109"}], [{"original_text": "The villagers worked hard to repair the damage from the storm.", "album_id": "72157626596756884", "photo_flickr_id": "5663823448", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "45822", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the villagers worked hard to repair the damage from the storm .", "storylet_id": "229110"}], [{"original_text": "The Army Corps of engineers were on hand to help.", "album_id": "72157626596756884", "photo_flickr_id": "5663822756", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "45822", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the organization organization of engineers were on hand to help .", "storylet_id": "229111"}], [{"original_text": "When the Army engineers fixes a broken pipe.", "album_id": "72157626596756884", "photo_flickr_id": "5663822666", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "45822", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when the organization engineers fixes a broken pipe .", "storylet_id": "229112"}], [{"original_text": "Another corpsman entertains the children.", "album_id": "72157626596756884", "photo_flickr_id": "5663254473", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "45822", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another corpsman entertains the children .", "storylet_id": "229113"}], [{"original_text": "All the villagers were very happy to get help.", "album_id": "72157626596756884", "photo_flickr_id": "5663822874", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "45822", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the villagers were very happy to get help .", "storylet_id": "229114"}], [{"original_text": "Walls had to be plastered. ", "album_id": "72157626596756884", "photo_flickr_id": "5663823448", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45823", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walls had to be plastered .", "storylet_id": "229115"}], [{"original_text": "Planks nailed. ", "album_id": "72157626596756884", "photo_flickr_id": "5663822756", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45823", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "planks nailed .", "storylet_id": "229116"}], [{"original_text": "They had come to help them. ", "album_id": "72157626596756884", "photo_flickr_id": "5663822666", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45823", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had come to help them .", "storylet_id": "229117"}], [{"original_text": "The people were delighted to have them. ", "album_id": "72157626596756884", "photo_flickr_id": "5663254473", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45823", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people were delighted to have them .", "storylet_id": "229118"}], [{"original_text": "It was always good to have helping hands. ", "album_id": "72157626596756884", "photo_flickr_id": "5663822874", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45823", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was always good to have helping hands .", "storylet_id": "229119"}], [{"original_text": "Everyone came together to help the family with their home.", "album_id": "72157626596756884", "photo_flickr_id": "5663823448", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "45824", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone came together to help the family with their home .", "storylet_id": "229120"}], [{"original_text": "The military men were up helping on the roof.", "album_id": "72157626596756884", "photo_flickr_id": "5663822756", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "45824", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the military men were up helping on the roof .", "storylet_id": "229121"}], [{"original_text": "They were helping prepare to paint.", "album_id": "72157626596756884", "photo_flickr_id": "5663822666", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "45824", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were helping prepare to paint .", "storylet_id": "229122"}], [{"original_text": "The family was very happy and thankful for the help.", "album_id": "72157626596756884", "photo_flickr_id": "5663254473", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "45824", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family was very happy and thankful for the help .", "storylet_id": "229123"}], [{"original_text": "The family thanked the military personnel.", "album_id": "72157626596756884", "photo_flickr_id": "5663822874", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "45824", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family thanked the military personnel .", "storylet_id": "229124"}], [{"original_text": "The girls were out side making funny faces.", "album_id": "72157627448238523", "photo_flickr_id": "6104152317", "setting": "first-2-pick-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "45825", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girls were out side making funny faces .", "storylet_id": "229125"}], [{"original_text": "These girls are something else they enjoy all the fun they are having with each other.", "album_id": "72157627448238523", "photo_flickr_id": "6104169057", "setting": "first-2-pick-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "45825", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these girls are something else they enjoy all the fun they are having with each other .", "storylet_id": "229126"}], [{"original_text": "The little one enjoys dancing around with the photographer.", "album_id": "72157627448238523", "photo_flickr_id": "6104171807", "setting": "first-2-pick-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "45825", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the little one enjoys dancing around with the photographer .", "storylet_id": "229127"}], [{"original_text": "Lets go on a walk mommy.", "album_id": "72157627448238523", "photo_flickr_id": "6104179965", "setting": "first-2-pick-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "45825", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "lets go on a walk mommy .", "storylet_id": "229128"}], [{"original_text": "At the end of the day they see all of the interesting thing that they have done and they can put them in a special scrapbook.", "album_id": "72157627448238523", "photo_flickr_id": "6094132961", "setting": "first-2-pick-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "45825", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day they see all of the interesting thing that they have done and they can put them in a special scrapbook .", "storylet_id": "229129"}], [{"original_text": "I am annie", "album_id": "72157627448238523", "photo_flickr_id": "6094659368", "setting": "first-2-pick-and-tell", "worker_id": "6K8CISOFWFDJB4Y", "story_id": "45826", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am annie", "storylet_id": "229130"}], [{"original_text": "these are my sisters sara and tina", "album_id": "72157627448238523", "photo_flickr_id": "6104162835", "setting": "first-2-pick-and-tell", "worker_id": "6K8CISOFWFDJB4Y", "story_id": "45826", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these are my sisters sara and tina", "storylet_id": "229131"}], [{"original_text": "both of the act goofie sometimes but I love them", "album_id": "72157627448238523", "photo_flickr_id": "6094664412", "setting": "first-2-pick-and-tell", "worker_id": "6K8CISOFWFDJB4Y", "story_id": "45826", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "both of the act goofie sometimes but i love them", "storylet_id": "229132"}], [{"original_text": "these are pitures of the rest of my family", "album_id": "72157627448238523", "photo_flickr_id": "6094132961", "setting": "first-2-pick-and-tell", "worker_id": "6K8CISOFWFDJB4Y", "story_id": "45826", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these are pitures of the rest of my family", "storylet_id": "229133"}], [{"original_text": "Well we are off to the park.", "album_id": "72157627448238523", "photo_flickr_id": "6104722306", "setting": "first-2-pick-and-tell", "worker_id": "6K8CISOFWFDJB4Y", "story_id": "45826", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "well we are off to the park .", "storylet_id": "229134"}], [{"original_text": "Today was Sammy's last day to see her sister.", "album_id": "72157627448238523", "photo_flickr_id": "6104152317", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45827", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was [male] 's last day to see her sister .", "storylet_id": "229135"}], [{"original_text": "Sammy posed with her sister Rianna, trying to get a good memory for a photo.", "album_id": "72157627448238523", "photo_flickr_id": "6104169057", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45827", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] posed with her sister rianna , trying to get a good memory for a photo .", "storylet_id": "229136"}], [{"original_text": "Rianna held onto Dad not wanting to go.", "album_id": "72157627448238523", "photo_flickr_id": "6104171807", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45827", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "rianna held onto dad not wanting to go .", "storylet_id": "229137"}], [{"original_text": "Mom grabbed her though and quickly led her away.", "album_id": "72157627448238523", "photo_flickr_id": "6104179965", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45827", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom grabbed her though and quickly led her away .", "storylet_id": "229138"}], [{"original_text": "All that remains of the families relationship is this scrapbook page.", "album_id": "72157627448238523", "photo_flickr_id": "6094132961", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45827", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all that remains of the families relationship is this scrapbook page .", "storylet_id": "229139"}], [{"original_text": "Hello my friends, can you see my dark shades?", "album_id": "72157627448238523", "photo_flickr_id": "6094659368", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "45828", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hello my friends , can you see my dark shades ?", "storylet_id": "229140"}], [{"original_text": "Sure we can see, see how we are having fun down here", "album_id": "72157627448238523", "photo_flickr_id": "6104162835", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "45828", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sure we can see , see how we are having fun down here", "storylet_id": "229141"}], [{"original_text": "We are dancing and moving around in a circle ", "album_id": "72157627448238523", "photo_flickr_id": "6094664412", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "45828", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are dancing and moving around in a circle", "storylet_id": "229142"}], [{"original_text": "Oh here is my family pictures", "album_id": "72157627448238523", "photo_flickr_id": "6094132961", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "45828", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "oh here is my family pictures", "storylet_id": "229143"}], [{"original_text": "You see it is time for us to take a walk with mum", "album_id": "72157627448238523", "photo_flickr_id": "6104722306", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "45828", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you see it is time for us to take a walk with mum", "storylet_id": "229144"}], [{"original_text": "I had a great time waiting for the bus today.", "album_id": "72157627448238523", "photo_flickr_id": "6094659368", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45829", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time waiting for the bus today .", "storylet_id": "229145"}], [{"original_text": "We took a lot of pictures together.", "album_id": "72157627448238523", "photo_flickr_id": "6104162835", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45829", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a lot of pictures together .", "storylet_id": "229146"}], [{"original_text": "We had a lot of fun.", "album_id": "72157627448238523", "photo_flickr_id": "6094664412", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45829", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a lot of fun .", "storylet_id": "229147"}], [{"original_text": "We also made a collage.", "album_id": "72157627448238523", "photo_flickr_id": "6094132961", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45829", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also made a collage .", "storylet_id": "229148"}], [{"original_text": "When my mom showed up we all went home.", "album_id": "72157627448238523", "photo_flickr_id": "6104722306", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45829", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when my mom showed up we all went home .", "storylet_id": "229149"}], [{"original_text": "Here is Joel on the deck of the ship. ", "album_id": "72157626958486375", "photo_flickr_id": "5885956572", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45830", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is [male] on the deck of the ship .", "storylet_id": "229150"}], [{"original_text": "These guys look so handsome with their uniform and smiling faces.", "album_id": "72157626958486375", "photo_flickr_id": "5886063886", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45830", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these guys look so handsome with their uniform and smiling faces .", "storylet_id": "229151"}], [{"original_text": "Everytime I look at this view of the sea I am glad to be part of the coast guard.", "album_id": "72157626958486375", "photo_flickr_id": "5891477203", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45830", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everytime i look at this view of the sea i am glad to be part of the organization organization .", "storylet_id": "229152"}], [{"original_text": "Here I am telling Joel about our schedule for the day.", "album_id": "72157626958486375", "photo_flickr_id": "5889990949", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45830", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here i am telling [male] about our schedule for the day .", "storylet_id": "229153"}], [{"original_text": "This symbols makes me so glad to be part of the coast guard.", "album_id": "72157626958486375", "photo_flickr_id": "5890525465", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45830", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this symbols makes me so glad to be part of the organization organization .", "storylet_id": "229154"}], [{"original_text": "Here are all my friends at the navy seal.", "album_id": "72157626958486375", "photo_flickr_id": "5886063886", "setting": "first-2-pick-and-tell", "worker_id": "VFCFA9B9A21T801", "story_id": "45831", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here are all my friends at the navy seal .", "storylet_id": "229155"}], [{"original_text": "Our ship is where we spend most of our time, obviously.", "album_id": "72157626958486375", "photo_flickr_id": "5887510260", "setting": "first-2-pick-and-tell", "worker_id": "VFCFA9B9A21T801", "story_id": "45831", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our ship is where we spend most of our time , obviously .", "storylet_id": "229156"}], [{"original_text": "Kelly is one of the meanest people there. ", "album_id": "72157626958486375", "photo_flickr_id": "5889990949", "setting": "first-2-pick-and-tell", "worker_id": "VFCFA9B9A21T801", "story_id": "45831", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] is one of the meanest people there .", "storylet_id": "229157"}], [{"original_text": "Our ship is clean and orderly.", "album_id": "72157626958486375", "photo_flickr_id": "5889989765", "setting": "first-2-pick-and-tell", "worker_id": "VFCFA9B9A21T801", "story_id": "45831", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our ship is clean and orderly .", "storylet_id": "229158"}], [{"original_text": "These ladies like to give me a hard but the truth is I'm in love with one of them. ", "album_id": "72157626958486375", "photo_flickr_id": "5890524179", "setting": "first-2-pick-and-tell", "worker_id": "VFCFA9B9A21T801", "story_id": "45831", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these ladies like to give me a hard but the truth is i 'm in love with one of them .", "storylet_id": "229159"}], [{"original_text": "This was a tour of a Coast Guard ship.", "album_id": "72157626958486375", "photo_flickr_id": "5885956572", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "45832", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was a tour of a organization organization ship .", "storylet_id": "229160"}], [{"original_text": "There were four tour guides.", "album_id": "72157626958486375", "photo_flickr_id": "5886063886", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "45832", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were four tour guides .", "storylet_id": "229161"}], [{"original_text": "So we started our trip.", "album_id": "72157626958486375", "photo_flickr_id": "5891477203", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "45832", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so we started our trip .", "storylet_id": "229162"}], [{"original_text": "This was the captain of the ship.", "album_id": "72157626958486375", "photo_flickr_id": "5889990949", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "45832", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was the captain of the ship .", "storylet_id": "229163"}], [{"original_text": "This is called a ship's colors, as it has the emblems and the main color of the ship.", "album_id": "72157626958486375", "photo_flickr_id": "5890525465", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "45832", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is called a ship 's colors , as it has the emblems and the main color of the ship .", "storylet_id": "229164"}], [{"original_text": "We got ready to leave port today for the first time.", "album_id": "72157626958486375", "photo_flickr_id": "5885956572", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "45833", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got ready to leave port today for the first time .", "storylet_id": "229165"}], [{"original_text": "Our whole crew was excited.", "album_id": "72157626958486375", "photo_flickr_id": "5886063886", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "45833", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our whole crew was excited .", "storylet_id": "229166"}], [{"original_text": "Our ship was all ready to go our.", "album_id": "72157626958486375", "photo_flickr_id": "5891477203", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "45833", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our ship was all ready to go our .", "storylet_id": "229167"}], [{"original_text": "The captain finally told us that we would be leaving.", "album_id": "72157626958486375", "photo_flickr_id": "5889990949", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "45833", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the captain finally told us that we would be leaving .", "storylet_id": "229168"}], [{"original_text": "We were ready to help people.", "album_id": "72157626958486375", "photo_flickr_id": "5890525465", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "45833", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were ready to help people .", "storylet_id": "229169"}], [{"original_text": "I am proud to be a member of the U.S. Coast Guard.", "album_id": "72157626958486375", "photo_flickr_id": "5885956572", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45834", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am proud to be a member of the organization organization organization .", "storylet_id": "229170"}], [{"original_text": "My colleagues and I are in charge with protecting our nation's waterways.", "album_id": "72157626958486375", "photo_flickr_id": "5886063886", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45834", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my colleagues and i are in charge with protecting our nation 's waterways .", "storylet_id": "229171"}], [{"original_text": "More often than not things are calm and peaceful.", "album_id": "72157626958486375", "photo_flickr_id": "5891477203", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45834", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "more often than not things are calm and peaceful .", "storylet_id": "229172"}], [{"original_text": "I even met my wife in the Coast Guard.", "album_id": "72157626958486375", "photo_flickr_id": "5889990949", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45834", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i even met my wife in the organization organization .", "storylet_id": "229173"}], [{"original_text": "I couldn't be happier serving as a member of America's armed forces.", "album_id": "72157626958486375", "photo_flickr_id": "5890525465", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45834", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i could n't be happier serving as a member of location 's armed forces .", "storylet_id": "229174"}], [{"original_text": "Each group was allowed to make its presentation about anything they wanted.", "album_id": "72157625082582503", "photo_flickr_id": "4946129225", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "45835", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "each group was allowed to make its presentation about anything they wanted .", "storylet_id": "229175"}], [{"original_text": "Some expressed their thoughts through music.", "album_id": "72157625082582503", "photo_flickr_id": "4946129617", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "45835", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some expressed their thoughts through music .", "storylet_id": "229176"}], [{"original_text": "Others you vocal talents to wow the crowd.", "album_id": "72157625082582503", "photo_flickr_id": "4946720048", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "45835", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others you vocal talents to wow the crowd .", "storylet_id": "229177"}], [{"original_text": "The most impactful sessions were those with simple dialogue between two individuals.", "album_id": "72157625082582503", "photo_flickr_id": "4946132173", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "45835", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the most impactful sessions were those with simple dialogue between two individuals .", "storylet_id": "229178"}], [{"original_text": "Sometimes only one voice spoke volumes.", "album_id": "72157625082582503", "photo_flickr_id": "4946134091", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "45835", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sometimes only one voice spoke volumes .", "storylet_id": "229179"}], [{"original_text": "The Queens drama club was ready to get the show on.", "album_id": "72157625082582503", "photo_flickr_id": "4946129617", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45836", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the queens drama club was ready to get the show on .", "storylet_id": "229180"}], [{"original_text": "Anne gave an oration on the Gettysburg Address.", "album_id": "72157625082582503", "photo_flickr_id": "4946718634", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45836", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] gave an oration on the location address .", "storylet_id": "229181"}], [{"original_text": "Monique gave an impression of Kanye West.", "album_id": "72157625082582503", "photo_flickr_id": "4946131809", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45836", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] gave an impression of location location .", "storylet_id": "229182"}], [{"original_text": "Jakob sang in his best Marilyn Manson voice.", "album_id": "72157625082582503", "photo_flickr_id": "4946132923", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45836", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "jakob sang in his best [female] manson voice .", "storylet_id": "229183"}], [{"original_text": "The TLC Clones belted out show tunes.", "album_id": "72157625082582503", "photo_flickr_id": "4946134091", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45836", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the tlc clones belted out show tunes .", "storylet_id": "229184"}], [{"original_text": "One of our students gave a speech at our meeting.", "album_id": "72157625082582503", "photo_flickr_id": "4946129225", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "45837", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one of our students gave a speech at our meeting .", "storylet_id": "229185"}], [{"original_text": "The chorus group gave everyone a song, which all enjoyed.", "album_id": "72157625082582503", "photo_flickr_id": "4946129617", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "45837", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the chorus group gave everyone a song , which all enjoyed .", "storylet_id": "229186"}], [{"original_text": "Everyone applauded all the students that did their best this year.", "album_id": "72157625082582503", "photo_flickr_id": "4946720048", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "45837", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone applauded all the students that did their best this year .", "storylet_id": "229187"}], [{"original_text": "Two of our younger students are learning to read a script.", "album_id": "72157625082582503", "photo_flickr_id": "4946132173", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "45837", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two of our younger students are learning to read a script .", "storylet_id": "229188"}], [{"original_text": "Some of our older students are giving them a demonstration.", "album_id": "72157625082582503", "photo_flickr_id": "4946134091", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "45837", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of our older students are giving them a demonstration .", "storylet_id": "229189"}], [{"original_text": "A church group gathered today.", "album_id": "72157625082582503", "photo_flickr_id": "4946129617", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "45838", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a church group gathered today .", "storylet_id": "229190"}], [{"original_text": "One by one, they told their life story.", "album_id": "72157625082582503", "photo_flickr_id": "4946718634", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "45838", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one by one , they told their life story .", "storylet_id": "229191"}], [{"original_text": "This girl was very serious for the event.", "album_id": "72157625082582503", "photo_flickr_id": "4946131809", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "45838", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this girl was very serious for the event .", "storylet_id": "229192"}], [{"original_text": "This man enjoyed talking about his life.", "album_id": "72157625082582503", "photo_flickr_id": "4946132923", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "45838", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this man enjoyed talking about his life .", "storylet_id": "229193"}], [{"original_text": "Lastly, these women sang the gospel.", "album_id": "72157625082582503", "photo_flickr_id": "4946134091", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "45838", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , these women sang the gospel .", "storylet_id": "229194"}], [{"original_text": "My daughter's school recently hosted a talent contest.", "album_id": "72157625082582503", "photo_flickr_id": "4946129225", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45839", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my daughter 's school recently hosted a talent contest .", "storylet_id": "229195"}], [{"original_text": "A large group of kids put their talent on display through an orchestral performance.", "album_id": "72157625082582503", "photo_flickr_id": "4946129617", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45839", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a large group of kids put their talent on display through an orchestral performance .", "storylet_id": "229196"}], [{"original_text": "Another large group of kids sang a couple of hit songs from the 1960's.", "album_id": "72157625082582503", "photo_flickr_id": "4946720048", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45839", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another large group of kids sang a couple of hit songs from the 1960 's .", "storylet_id": "229197"}], [{"original_text": "Although I liked the collective performances, I was most moved by the kids who performed in smaller groups.", "album_id": "72157625082582503", "photo_flickr_id": "4946132173", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45839", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "although i liked the collective performances , i was most moved by the kids who performed in smaller groups .", "storylet_id": "229198"}], [{"original_text": "The winners of the talent contest sang an excellent rendition of \"Baby One More Time.\"", "album_id": "72157625082582503", "photo_flickr_id": "4946134091", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "45839", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the winners of the talent contest sang an excellent rendition of `` [male] one more time . ''", "storylet_id": "229199"}], [{"original_text": "Celebrating Independence Day with some friends. What a night!", "album_id": "72157594187865594", "photo_flickr_id": "181357689", "setting": "first-2-pick-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "45840", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "celebrating independence day with some friends . what a night !", "storylet_id": "229200"}], [{"original_text": "We had some amazing fireworks going off and they were huge.", "album_id": "72157594187865594", "photo_flickr_id": "182515536", "setting": "first-2-pick-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "45840", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had some amazing fireworks going off and they were huge .", "storylet_id": "229201"}], [{"original_text": "This one looked like a spider on its web. So beautiful.", "album_id": "72157594187865594", "photo_flickr_id": "183284697", "setting": "first-2-pick-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "45840", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one looked like a spider on its web . so beautiful .", "storylet_id": "229202"}], [{"original_text": "The next day we saw this these trumpets blaring, it was quite a show.", "album_id": "72157594187865594", "photo_flickr_id": "182223644", "setting": "first-2-pick-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "45840", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next day we saw this these trumpets blaring , it was quite a show .", "storylet_id": "229203"}], [{"original_text": "The city looks so boring with no more fireworks. maybe next year!", "album_id": "72157594187865594", "photo_flickr_id": "181631561", "setting": "first-2-pick-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "45840", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the city looks so boring with no more fireworks . maybe next year !", "storylet_id": "229204"}], [{"original_text": "We love fireworks shows.", "album_id": "72157594187865594", "photo_flickr_id": "182478761", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45841", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we love fireworks shows .", "storylet_id": "229205"}], [{"original_text": "We attend them every year.", "album_id": "72157594187865594", "photo_flickr_id": "182515536", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45841", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we attend them every year .", "storylet_id": "229206"}], [{"original_text": "We attend mostly on New Years and the 4th of July. ", "album_id": "72157594187865594", "photo_flickr_id": "181349921", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45841", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we attend mostly on new years and the 4th of july .", "storylet_id": "229207"}], [{"original_text": "It's always fun when another fireworks show comes to town.", "album_id": "72157594187865594", "photo_flickr_id": "182608969", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45841", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's always fun when another fireworks show comes to town .", "storylet_id": "229208"}], [{"original_text": "It's a great time to spend with family.", "album_id": "72157594187865594", "photo_flickr_id": "182933641", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45841", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's a great time to spend with family .", "storylet_id": "229209"}], [{"original_text": "The whole family was together for the 4th of July fireworks.", "album_id": "72157594187865594", "photo_flickr_id": "181357689", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "45842", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family was together for the 4th of july fireworks .", "storylet_id": "229210"}], [{"original_text": "They were quite beautiful.", "album_id": "72157594187865594", "photo_flickr_id": "182515536", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "45842", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were quite beautiful .", "storylet_id": "229211"}], [{"original_text": "Some looked like falling stars.", "album_id": "72157594187865594", "photo_flickr_id": "183284697", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "45842", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some looked like falling stars .", "storylet_id": "229212"}], [{"original_text": "Earlier that day they had gone to a military funeral.", "album_id": "72157594187865594", "photo_flickr_id": "182223644", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "45842", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "earlier that day they had gone to a military funeral .", "storylet_id": "229213"}], [{"original_text": "The fireworks made them totally forget the sad event.", "album_id": "72157594187865594", "photo_flickr_id": "181631561", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "45842", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fireworks made them totally forget the sad event .", "storylet_id": "229214"}], [{"original_text": "Last night we joined some friends for a 4th of July celebration.", "album_id": "72157594187865594", "photo_flickr_id": "181357689", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "45843", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night we joined some friends for a 4th of july celebration .", "storylet_id": "229215"}], [{"original_text": "There were big fireworks.", "album_id": "72157594187865594", "photo_flickr_id": "182515536", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "45843", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were big fireworks .", "storylet_id": "229216"}], [{"original_text": "And small fireworks.", "album_id": "72157594187865594", "photo_flickr_id": "183284697", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "45843", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and small fireworks .", "storylet_id": "229217"}], [{"original_text": "People played instruments while remembering the fallen.", "album_id": "72157594187865594", "photo_flickr_id": "182223644", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "45843", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people played instruments while remembering the fallen .", "storylet_id": "229218"}], [{"original_text": "It was a beautiful 4th of July by the river.", "album_id": "72157594187865594", "photo_flickr_id": "181631561", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "45843", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a beautiful 4th of july by the river .", "storylet_id": "229219"}], [{"original_text": "We're celebrating Independence Day!", "album_id": "72157594187865594", "photo_flickr_id": "181357689", "setting": "last-3-pick-old-and-tell", "worker_id": "94H5HAS38BP2KW3", "story_id": "45844", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 're celebrating independence day !", "storylet_id": "229220"}], [{"original_text": "We were able to see some great fireworks!", "album_id": "72157594187865594", "photo_flickr_id": "182515536", "setting": "last-3-pick-old-and-tell", "worker_id": "94H5HAS38BP2KW3", "story_id": "45844", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were able to see some great fireworks !", "storylet_id": "229221"}], [{"original_text": "This one looks like a dandelion floating in the wind.", "album_id": "72157594187865594", "photo_flickr_id": "183284697", "setting": "last-3-pick-old-and-tell", "worker_id": "94H5HAS38BP2KW3", "story_id": "45844", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one looks like a dandelion floating in the wind .", "storylet_id": "229222"}], [{"original_text": "Earlier we saw a band practicing for the parade.", "album_id": "72157594187865594", "photo_flickr_id": "182223644", "setting": "last-3-pick-old-and-tell", "worker_id": "94H5HAS38BP2KW3", "story_id": "45844", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "earlier we saw a band practicing for the parade .", "storylet_id": "229223"}], [{"original_text": "This is the Purple People Bridge. This is where they launched the fireworks.", "album_id": "72157594187865594", "photo_flickr_id": "181631561", "setting": "last-3-pick-old-and-tell", "worker_id": "94H5HAS38BP2KW3", "story_id": "45844", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the location location location . this is where they launched the fireworks .", "storylet_id": "229224"}], [{"original_text": "Children sit diligently in the classroom.", "album_id": "72157603916697455", "photo_flickr_id": "2266588183", "setting": "first-2-pick-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "45845", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "children sit diligently in the classroom .", "storylet_id": "229225"}], [{"original_text": "The teddy bear lays alone on the chair.", "album_id": "72157603916697455", "photo_flickr_id": "2267424974", "setting": "first-2-pick-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "45845", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the teddy bear lays alone on the chair .", "storylet_id": "229226"}], [{"original_text": "A boy holds up his red beanie baby.", "album_id": "72157603916697455", "photo_flickr_id": "2267039519", "setting": "first-2-pick-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "45845", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a boy holds up his red beanie baby .", "storylet_id": "229227"}], [{"original_text": "The girl in the stripes holds up her pink mouse.", "album_id": "72157603916697455", "photo_flickr_id": "2267829242", "setting": "first-2-pick-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "45845", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the girl in the stripes holds up her pink mouse .", "storylet_id": "229228"}], [{"original_text": "The little girl holds up her taupe bear.", "album_id": "72157603916697455", "photo_flickr_id": "2267041657", "setting": "first-2-pick-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "45845", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the little girl holds up her taupe bear .", "storylet_id": "229229"}], [{"original_text": "Today is read a book to a bear day at school.", "album_id": "72157603916697455", "photo_flickr_id": "2267302796", "setting": "first-2-pick-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "45846", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is read a book to a bear day at school .", "storylet_id": "229230"}], [{"original_text": "Each student brought in a stuffed animal to read to.", "album_id": "72157603916697455", "photo_flickr_id": "2266932199", "setting": "first-2-pick-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "45846", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each student brought in a stuffed animal to read to .", "storylet_id": "229231"}], [{"original_text": "Some students have small bears to read to.", "album_id": "72157603916697455", "photo_flickr_id": "2267041273", "setting": "first-2-pick-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "45846", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some students have small bears to read to .", "storylet_id": "229232"}], [{"original_text": "Everyone then wrote a letter to their friend thanking them for visiting.", "album_id": "72157603916697455", "photo_flickr_id": "2267829242", "setting": "first-2-pick-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "45846", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone then wrote a letter to their friend thanking them for visiting .", "storylet_id": "229233"}], [{"original_text": "Our teachers bear name is Judy.", "album_id": "72157603916697455", "photo_flickr_id": "2269831628", "setting": "first-2-pick-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "45846", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our teachers bear name is [female] .", "storylet_id": "229234"}], [{"original_text": "We had a test before we had our weekly show and tell in class.", "album_id": "72157603916697455", "photo_flickr_id": "2266588183", "setting": "last-3-pick-old-and-tell", "worker_id": "7C9M8NLG9FAHE8S", "story_id": "45847", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a test before we had our weekly show and tell in class .", "storylet_id": "229235"}], [{"original_text": "I brought my favorite brown bear.", "album_id": "72157603916697455", "photo_flickr_id": "2267424974", "setting": "last-3-pick-old-and-tell", "worker_id": "7C9M8NLG9FAHE8S", "story_id": "45847", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i brought my favorite brown bear .", "storylet_id": "229236"}], [{"original_text": "The boy who sits beside me brought his lucky teddy bear.", "album_id": "72157603916697455", "photo_flickr_id": "2267039519", "setting": "last-3-pick-old-and-tell", "worker_id": "7C9M8NLG9FAHE8S", "story_id": "45847", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boy who sits beside me brought his lucky teddy bear .", "storylet_id": "229237"}], [{"original_text": "My best friend brought her favorite mouse.", "album_id": "72157603916697455", "photo_flickr_id": "2267829242", "setting": "last-3-pick-old-and-tell", "worker_id": "7C9M8NLG9FAHE8S", "story_id": "45847", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my best friend brought her favorite mouse .", "storylet_id": "229238"}], [{"original_text": "The new girl brought her little white bear. ", "album_id": "72157603916697455", "photo_flickr_id": "2267041657", "setting": "last-3-pick-old-and-tell", "worker_id": "7C9M8NLG9FAHE8S", "story_id": "45847", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the new girl brought her little white bear .", "storylet_id": "229239"}], [{"original_text": "At the school we got many donations from kids for the poor.", "album_id": "72157603916697455", "photo_flickr_id": "2267302796", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "45848", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the school we got many donations from kids for the poor .", "storylet_id": "229240"}], [{"original_text": "Some kids brought teddy bears to give", "album_id": "72157603916697455", "photo_flickr_id": "2266932199", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "45848", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some kids brought teddy bears to give", "storylet_id": "229241"}], [{"original_text": "Some kids brought simple things like stickers.", "album_id": "72157603916697455", "photo_flickr_id": "2267041273", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "45848", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some kids brought simple things like stickers .", "storylet_id": "229242"}], [{"original_text": "All of them did give something though! Which was hope.", "album_id": "72157603916697455", "photo_flickr_id": "2267829242", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "45848", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of them did give something though ! which was hope .", "storylet_id": "229243"}], [{"original_text": "Even their mothers came by to give to the poor.", "album_id": "72157603916697455", "photo_flickr_id": "2269831628", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "45848", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even their mothers came by to give to the poor .", "storylet_id": "229244"}], [{"original_text": "Before anything would happen on this Valentine's day, we had to work on our assignments.", "album_id": "72157603916697455", "photo_flickr_id": "2266588183", "setting": "last-3-pick-old-and-tell", "worker_id": "ZQXGDNGR3ED0NSX", "story_id": "45849", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before anything would happen on this valentine 's day , we had to work on our assignments .", "storylet_id": "229245"}], [{"original_text": "Most of us had their bears and stuffed pets nearby and couldn't wait to eschange them.", "album_id": "72157603916697455", "photo_flickr_id": "2267424974", "setting": "last-3-pick-old-and-tell", "worker_id": "ZQXGDNGR3ED0NSX", "story_id": "45849", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "most of us had their bears and stuffed pets nearby and could n't wait to eschange them .", "storylet_id": "229246"}], [{"original_text": "He is going to be very popular with the girls with his pink and red teddy bear.", "album_id": "72157603916697455", "photo_flickr_id": "2267039519", "setting": "last-3-pick-old-and-tell", "worker_id": "ZQXGDNGR3ED0NSX", "story_id": "45849", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he is going to be very popular with the girls with his pink and red teddy bear .", "storylet_id": "229247"}], [{"original_text": "This was my favorite one since it was the only baby kangaroo pet.", "album_id": "72157603916697455", "photo_flickr_id": "2267829242", "setting": "last-3-pick-old-and-tell", "worker_id": "ZQXGDNGR3ED0NSX", "story_id": "45849", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was my favorite one since it was the only baby kangaroo pet .", "storylet_id": "229248"}], [{"original_text": "The look on her face meant she appreciated the teddy bear she received as much as the boy that gave it to her.", "album_id": "72157603916697455", "photo_flickr_id": "2267041657", "setting": "last-3-pick-old-and-tell", "worker_id": "ZQXGDNGR3ED0NSX", "story_id": "45849", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the look on her face meant she appreciated the teddy bear she received as much as the boy that gave it to her .", "storylet_id": "229249"}], [{"original_text": "The protest was well under way.", "album_id": "72157604082858691", "photo_flickr_id": "2322128946", "setting": "first-2-pick-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "45850", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the protest was well under way .", "storylet_id": "229250"}], [{"original_text": "And many people brought out signs to protest.", "album_id": "72157604082858691", "photo_flickr_id": "2323738054", "setting": "first-2-pick-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "45850", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and many people brought out signs to protest .", "storylet_id": "229251"}], [{"original_text": "People were wearing their home flags.", "album_id": "72157604082858691", "photo_flickr_id": "2325209008", "setting": "first-2-pick-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "45850", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people were wearing their home flags .", "storylet_id": "229252"}], [{"original_text": "Many women also came out to protest.", "album_id": "72157604082858691", "photo_flickr_id": "2322920671", "setting": "first-2-pick-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "45850", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many women also came out to protest .", "storylet_id": "229253"}], [{"original_text": "There was a speaker with a microphone who talked to the protesters.", "album_id": "72157604082858691", "photo_flickr_id": "2322127968", "setting": "first-2-pick-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "45850", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a speaker with a microphone who talked to the protesters .", "storylet_id": "229254"}], [{"original_text": "The group is gathering for a protest.", "album_id": "72157604082858691", "photo_flickr_id": "2323738278", "setting": "first-2-pick-and-tell", "worker_id": "JX97A8HPOGJM3LJ", "story_id": "45851", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group is gathering for a protest .", "storylet_id": "229255"}], [{"original_text": "There are lots of different people representing a lot of countries.", "album_id": "72157604082858691", "photo_flickr_id": "2322128946", "setting": "first-2-pick-and-tell", "worker_id": "JX97A8HPOGJM3LJ", "story_id": "45851", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are lots of different people representing a lot of countries .", "storylet_id": "229256"}], [{"original_text": "Everyone decides to bring a flag to represent where they are from.", "album_id": "72157604082858691", "photo_flickr_id": "2327900163", "setting": "first-2-pick-and-tell", "worker_id": "JX97A8HPOGJM3LJ", "story_id": "45851", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone decides to bring a flag to represent where they are from .", "storylet_id": "229257"}], [{"original_text": "They get to take turns telling their points of view.", "album_id": "72157604082858691", "photo_flickr_id": "2322127968", "setting": "first-2-pick-and-tell", "worker_id": "JX97A8HPOGJM3LJ", "story_id": "45851", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they get to take turns telling their points of view .", "storylet_id": "229258"}], [{"original_text": "Not everyone agrees with everyone else though.", "album_id": "72157604082858691", "photo_flickr_id": "2322919747", "setting": "first-2-pick-and-tell", "worker_id": "JX97A8HPOGJM3LJ", "story_id": "45851", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "not everyone agrees with everyone else though .", "storylet_id": "229259"}], [{"original_text": "Protests are happening in Tunisia.", "album_id": "72157604082858691", "photo_flickr_id": "2322128946", "setting": "last-3-pick-old-and-tell", "worker_id": "TRXDNMNZ92OL3C5", "story_id": "45852", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "protests are happening in location .", "storylet_id": "229260"}], [{"original_text": "People are upset over terrorist attacks in their country.", "album_id": "72157604082858691", "photo_flickr_id": "2323738054", "setting": "last-3-pick-old-and-tell", "worker_id": "TRXDNMNZ92OL3C5", "story_id": "45852", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people are upset over terrorist attacks in their country .", "storylet_id": "229261"}], [{"original_text": "Proud people hold the country's flag in solidarity.", "album_id": "72157604082858691", "photo_flickr_id": "2325209008", "setting": "last-3-pick-old-and-tell", "worker_id": "TRXDNMNZ92OL3C5", "story_id": "45852", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "proud people hold the country 's flag in solidarity .", "storylet_id": "229262"}], [{"original_text": "Everyone is coming together to demand peace.", "album_id": "72157604082858691", "photo_flickr_id": "2322920671", "setting": "last-3-pick-old-and-tell", "worker_id": "TRXDNMNZ92OL3C5", "story_id": "45852", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone is coming together to demand peace .", "storylet_id": "229263"}], [{"original_text": "One of the protest leaders talks to the crowd and demands change.", "album_id": "72157604082858691", "photo_flickr_id": "2322127968", "setting": "last-3-pick-old-and-tell", "worker_id": "TRXDNMNZ92OL3C5", "story_id": "45852", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of the protest leaders talks to the crowd and demands change .", "storylet_id": "229264"}], [{"original_text": "This lady is one of the faces of the Palestinian demonstration.", "album_id": "72157604082858691", "photo_flickr_id": "2323738278", "setting": "last-3-pick-old-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "45853", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this lady is one of the faces of the palestinian demonstration .", "storylet_id": "229265"}], [{"original_text": "The voices of the crowd are loud and the symbols are vivid.", "album_id": "72157604082858691", "photo_flickr_id": "2322128946", "setting": "last-3-pick-old-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "45853", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the voices of the crowd are loud and the symbols are vivid .", "storylet_id": "229266"}], [{"original_text": "This protester displays the Palestinian flag.", "album_id": "72157604082858691", "photo_flickr_id": "2327900163", "setting": "last-3-pick-old-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "45853", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this protester displays the palestinian flag .", "storylet_id": "229267"}], [{"original_text": "The raised fist is indicative of the intensity of the feelings being expressed.", "album_id": "72157604082858691", "photo_flickr_id": "2322127968", "setting": "last-3-pick-old-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "45853", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the raised fist is indicative of the intensity of the feelings being expressed .", "storylet_id": "229268"}], [{"original_text": "The woman continues the demonstration but the situation doesn't change", "album_id": "72157604082858691", "photo_flickr_id": "2322919747", "setting": "last-3-pick-old-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "45853", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the woman continues the demonstration but the situation does n't change", "storylet_id": "229269"}], [{"original_text": "There was a rally today considering all of the iranian areas.", "album_id": "72157604082858691", "photo_flickr_id": "2323738278", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "45854", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a rally today considering all of the iranian areas .", "storylet_id": "229270"}], [{"original_text": "They wished for more independance regarding communism. ", "album_id": "72157604082858691", "photo_flickr_id": "2322128946", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "45854", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they wished for more independance regarding communism .", "storylet_id": "229271"}], [{"original_text": "However the other side wasn't willing to help them with their problem.", "album_id": "72157604082858691", "photo_flickr_id": "2327900163", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "45854", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however the other side was n't willing to help them with their problem .", "storylet_id": "229272"}], [{"original_text": "The protesters began to get angry and make motivational speeches.", "album_id": "72157604082858691", "photo_flickr_id": "2322127968", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "45854", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the protesters began to get angry and make motivational speeches .", "storylet_id": "229273"}], [{"original_text": "The crowd was unmoved however, the protest still continues to this day", "album_id": "72157604082858691", "photo_flickr_id": "2322919747", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "45854", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the crowd was unmoved however , the protest still continues to this day", "storylet_id": "229274"}], [{"original_text": "Need to have a snack before setting out to explore.", "album_id": "72157604869582203", "photo_flickr_id": "2462292515", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "45855", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "need to have a snack before setting out to explore .", "storylet_id": "229275"}], [{"original_text": "What people go on vacation for, to buy buy buy.", "album_id": "72157604869582203", "photo_flickr_id": "2462290407", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "45855", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "what people go on vacation for , to buy buy buy .", "storylet_id": "229276"}], [{"original_text": "Getting a little silly with the lime but it's been a long day.", "album_id": "72157604869582203", "photo_flickr_id": "2462264277", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "45855", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "getting a little silly with the lime but it 's been a long day .", "storylet_id": "229277"}], [{"original_text": "One last picture of my day eating and shopping.", "album_id": "72157604869582203", "photo_flickr_id": "2463102504", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "45855", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one last picture of my day eating and shopping .", "storylet_id": "229278"}], [{"original_text": "What a funny monkey in his sunglasses, what some tourist won't do.", "album_id": "72157604869582203", "photo_flickr_id": "2463090994", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "45855", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what a funny monkey in his sunglasses , what some tourist wo n't do .", "storylet_id": "229279"}], [{"original_text": "I put my new camera to the test as soon as possible.", "album_id": "72157604869582203", "photo_flickr_id": "2463115734", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45856", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i put my new camera to the test as soon as possible .", "storylet_id": "229280"}], [{"original_text": "Such vivid colors, I'm already thrilled with this camera.", "album_id": "72157604869582203", "photo_flickr_id": "2463096102", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45856", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "such vivid colors , i 'm already thrilled with this camera .", "storylet_id": "229281"}], [{"original_text": "My sister is so photogenic no matter what camera is used.", "album_id": "72157604869582203", "photo_flickr_id": "2463100404", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45856", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my sister is so photogenic no matter what camera is used .", "storylet_id": "229282"}], [{"original_text": "Just a silly shot of a cool monkey. I love the blurring of the background.", "album_id": "72157604869582203", "photo_flickr_id": "2463090994", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45856", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "just a silly shot of a cool monkey . i love the blurring of the background .", "storylet_id": "229283"}], [{"original_text": "I need to learn the settings in lowlight, time to read the instructions!", "album_id": "72157604869582203", "photo_flickr_id": "2463108694", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45856", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i need to learn the settings in lowlight , time to read the instructions !", "storylet_id": "229284"}], [{"original_text": "For lunch we had chips and dip.", "album_id": "72157604869582203", "photo_flickr_id": "2462292515", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "45857", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for lunch we had chips and dip .", "storylet_id": "229285"}], [{"original_text": "Then went to work on some art.", "album_id": "72157604869582203", "photo_flickr_id": "2462290407", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "45857", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then went to work on some art .", "storylet_id": "229286"}], [{"original_text": "She thought she was funny and tried to make me laugh by sticking a lime peel in her mouth.", "album_id": "72157604869582203", "photo_flickr_id": "2462264277", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "45857", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she thought she was funny and tried to make me laugh by sticking a lime peel in her mouth .", "storylet_id": "229287"}], [{"original_text": "I posed for some pictures outside of the studio.", "album_id": "72157604869582203", "photo_flickr_id": "2463102504", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "45857", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i posed for some pictures outside of the studio .", "storylet_id": "229288"}], [{"original_text": "The monkey was by far the best piece of work I had created.", "album_id": "72157604869582203", "photo_flickr_id": "2463090994", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "45857", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the monkey was by far the best piece of work i had created .", "storylet_id": "229289"}], [{"original_text": "yesterday, I went over to my friend Beth's house to have lunch and hang out.", "album_id": "72157604869582203", "photo_flickr_id": "2462292515", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "45858", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday , i went over to my friend [female] 's house to have lunch and hang out .", "storylet_id": "229290"}], [{"original_text": "She put out some really neat pottery to eat off of.", "album_id": "72157604869582203", "photo_flickr_id": "2462290407", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "45858", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she put out some really neat pottery to eat off of .", "storylet_id": "229291"}], [{"original_text": "Beth and I played around with our drink garnishes and laughed.", "album_id": "72157604869582203", "photo_flickr_id": "2462264277", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "45858", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] and i played around with our drink garnishes and laughed .", "storylet_id": "229292"}], [{"original_text": "We had a good day talking and hanging out.", "album_id": "72157604869582203", "photo_flickr_id": "2463102504", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "45858", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a good day talking and hanging out .", "storylet_id": "229293"}], [{"original_text": "The most fun, however, was just being silly with her.", "album_id": "72157604869582203", "photo_flickr_id": "2463090994", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "45858", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the most fun , however , was just being silly with her .", "storylet_id": "229294"}], [{"original_text": "A woman named Carol was very happy and excited because she was going to go sightseeing. ", "album_id": "72157604869582203", "photo_flickr_id": "2463115734", "setting": "last-3-pick-old-and-tell", "worker_id": "78BC13GJZ237SVW", "story_id": "45859", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a woman named [female] was very happy and excited because she was going to go sightseeing .", "storylet_id": "229295"}], [{"original_text": "One of the things she saw while shopping were beautifully crafted cups. ", "album_id": "72157604869582203", "photo_flickr_id": "2463096102", "setting": "last-3-pick-old-and-tell", "worker_id": "78BC13GJZ237SVW", "story_id": "45859", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of the things she saw while shopping were beautifully crafted cups .", "storylet_id": "229296"}], [{"original_text": "Her friend, Nancy, also went with her, and took a break along a brick wall. ", "album_id": "72157604869582203", "photo_flickr_id": "2463100404", "setting": "last-3-pick-old-and-tell", "worker_id": "78BC13GJZ237SVW", "story_id": "45859", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her friend , [female] , also went with her , and took a break along a brick wall .", "storylet_id": "229297"}], [{"original_text": "One of the sillier things they saw was a stone money with sunglasses. ", "album_id": "72157604869582203", "photo_flickr_id": "2463090994", "setting": "last-3-pick-old-and-tell", "worker_id": "78BC13GJZ237SVW", "story_id": "45859", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the sillier things they saw was a stone money with sunglasses .", "storylet_id": "229298"}], [{"original_text": "At the end of the day, Nancy was tired and shy about getting her picture taken ", "album_id": "72157604869582203", "photo_flickr_id": "2463108694", "setting": "last-3-pick-old-and-tell", "worker_id": "78BC13GJZ237SVW", "story_id": "45859", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , [female] was tired and shy about getting her picture taken", "storylet_id": "229299"}], [{"original_text": "The woman was felling awful. ", "album_id": "72157606437775436", "photo_flickr_id": "2713971964", "setting": "first-2-pick-and-tell", "worker_id": "GY3PJXU58I52T1U", "story_id": "45860", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the woman was felling awful .", "storylet_id": "229300"}], [{"original_text": "Doctors gave her the medicine she needed. ", "album_id": "72157606437775436", "photo_flickr_id": "2710730474", "setting": "first-2-pick-and-tell", "worker_id": "GY3PJXU58I52T1U", "story_id": "45860", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "doctors gave her the medicine she needed .", "storylet_id": "229301"}], [{"original_text": "She rested, but she was beginning to recuperate. ", "album_id": "72157606437775436", "photo_flickr_id": "2714016900", "setting": "first-2-pick-and-tell", "worker_id": "GY3PJXU58I52T1U", "story_id": "45860", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she rested , but she was beginning to recuperate .", "storylet_id": "229302"}], [{"original_text": "Soon, she was back teaching her students.", "album_id": "72157606437775436", "photo_flickr_id": "2714829954", "setting": "first-2-pick-and-tell", "worker_id": "GY3PJXU58I52T1U", "story_id": "45860", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "soon , she was back teaching her students .", "storylet_id": "229303"}], [{"original_text": "She celebrated her health with dinner at her favorite restaurant. ", "album_id": "72157606437775436", "photo_flickr_id": "2713347363", "setting": "first-2-pick-and-tell", "worker_id": "GY3PJXU58I52T1U", "story_id": "45860", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she celebrated her health with dinner at her favorite restaurant .", "storylet_id": "229304"}], [{"original_text": "Mom enjoyed a nice meal out before two days of hospital food.", "album_id": "72157606437775436", "photo_flickr_id": "2713347363", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45861", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom enjoyed a nice meal out before two days of hospital food .", "storylet_id": "229305"}], [{"original_text": "She was nervous but it's wasn't her first surgery.", "album_id": "72157606437775436", "photo_flickr_id": "2712931445", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45861", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was nervous but it 's was n't her first surgery .", "storylet_id": "229306"}], [{"original_text": "Vital signs looked good but then again I'm no doctor.", "album_id": "72157606437775436", "photo_flickr_id": "2712910707", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45861", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "vital signs looked good but then again i 'm no doctor .", "storylet_id": "229307"}], [{"original_text": "She'll be sore when she wakes up. Poor mom!", "album_id": "72157606437775436", "photo_flickr_id": "2713971964", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45861", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she 'll be sore when she wakes up . poor mom !", "storylet_id": "229308"}], [{"original_text": "One week later, Mom is already back at work! She's a tough cookie.", "album_id": "72157606437775436", "photo_flickr_id": "2714829954", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45861", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one week later , mom is already back at work ! she 's a tough cookie .", "storylet_id": "229309"}], [{"original_text": "A woman is sick in a hospital bed.", "album_id": "72157606437775436", "photo_flickr_id": "2713971964", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "45862", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a woman is sick in a hospital bed .", "storylet_id": "229310"}], [{"original_text": "Her nurse brings her her medicine and juice.", "album_id": "72157606437775436", "photo_flickr_id": "2710730474", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "45862", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her nurse brings her her medicine and juice .", "storylet_id": "229311"}], [{"original_text": "She relaxes hoping that the rest will heal her body.", "album_id": "72157606437775436", "photo_flickr_id": "2714016900", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "45862", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she relaxes hoping that the rest will heal her body .", "storylet_id": "229312"}], [{"original_text": "She returns back to work.", "album_id": "72157606437775436", "photo_flickr_id": "2714829954", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "45862", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she returns back to work .", "storylet_id": "229313"}], [{"original_text": "And is able to eat soon.", "album_id": "72157606437775436", "photo_flickr_id": "2713347363", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "45862", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and is able to eat soon .", "storylet_id": "229314"}], [{"original_text": "Grandma was admitted to the hospital last week. ", "album_id": "72157606437775436", "photo_flickr_id": "2713971964", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "45863", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandma was admitted to the hospital last week .", "storylet_id": "229315"}], [{"original_text": "She was given medication and some juice to make her feel better.", "album_id": "72157606437775436", "photo_flickr_id": "2710730474", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "45863", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was given medication and some juice to make her feel better .", "storylet_id": "229316"}], [{"original_text": "The hospital kept her overnight to make sure she was feeling better.", "album_id": "72157606437775436", "photo_flickr_id": "2714016900", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "45863", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the hospital kept her overnight to make sure she was feeling better .", "storylet_id": "229317"}], [{"original_text": "Next week she was back at work being a teacher.", "album_id": "72157606437775436", "photo_flickr_id": "2714829954", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "45863", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next week she was back at work being a teacher .", "storylet_id": "229318"}], [{"original_text": "We took her out for dinner to celebrate her getting better. ", "album_id": "72157606437775436", "photo_flickr_id": "2713347363", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "45863", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took her out for dinner to celebrate her getting better .", "storylet_id": "229319"}], [{"original_text": "Last year I was not feeling well and my doctor admited me into the hospital for some tests. ", "album_id": "72157606437775436", "photo_flickr_id": "2713971964", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "45864", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last year i was not feeling well and my doctor admited me into the hospital for some tests .", "storylet_id": "229320"}], [{"original_text": "I was diagnosed with an illness that could be managed with proper medication.", "album_id": "72157606437775436", "photo_flickr_id": "2710730474", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "45864", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was diagnosed with an illness that could be managed with proper medication .", "storylet_id": "229321"}], [{"original_text": "I gradually got better and stronger.", "album_id": "72157606437775436", "photo_flickr_id": "2714016900", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "45864", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i gradually got better and stronger .", "storylet_id": "229322"}], [{"original_text": "Within a few days I was strong enough to go back to work.", "album_id": "72157606437775436", "photo_flickr_id": "2714829954", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "45864", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "within a few days i was strong enough to go back to work .", "storylet_id": "229323"}], [{"original_text": "Now I watch my diet and I exercise regularly. I'm on my way to a full recovery.", "album_id": "72157606437775436", "photo_flickr_id": "2713347363", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "45864", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now i watch my diet and i exercise regularly . i 'm on my way to a full recovery .", "storylet_id": "229324"}], [{"original_text": "Early morning heading to school", "album_id": "72157607397957916", "photo_flickr_id": "2869052531", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "45865", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "early morning heading to school", "storylet_id": "229325"}], [{"original_text": "the young girl is starting to perk up and smiles with her juice", "album_id": "72157607397957916", "photo_flickr_id": "2869053041", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "45865", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the young girl is starting to perk up and smiles with her juice", "storylet_id": "229326"}], [{"original_text": "Dad and the kids arrive at school ", "album_id": "72157607397957916", "photo_flickr_id": "2869072483", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "45865", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad and the kids arrive at school", "storylet_id": "229327"}], [{"original_text": "A neat preschool board hangs on the wall to greet everyone", "album_id": "72157607397957916", "photo_flickr_id": "2869900866", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "45865", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a neat preschool board hangs on the wall to greet everyone", "storylet_id": "229328"}], [{"original_text": "The room is so huge and the girl is very excited to be there", "album_id": "72157607397957916", "photo_flickr_id": "2869077877", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "45865", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the room is so huge and the girl is very excited to be there", "storylet_id": "229329"}], [{"original_text": "Look ! It's the first day of school and I'm so excited.", "album_id": "72157607397957916", "photo_flickr_id": "2869053327", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "45866", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "look ! it 's the first day of school and i 'm so excited .", "storylet_id": "229330"}], [{"original_text": "Dad is helping me get over my nerves by taking me.", "album_id": "72157607397957916", "photo_flickr_id": "2869882352", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "45866", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dad is helping me get over my nerves by taking me .", "storylet_id": "229331"}], [{"original_text": "One last wave to my adoring fans before I go in.", "album_id": "72157607397957916", "photo_flickr_id": "2869057329", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "45866", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one last wave to my adoring fans before i go in .", "storylet_id": "229332"}], [{"original_text": "Walking with dad into the room and getting a feel for my surroundings.", "album_id": "72157607397957916", "photo_flickr_id": "2869903104", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "45866", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "walking with dad into the room and getting a feel for my surroundings .", "storylet_id": "229333"}], [{"original_text": "I'm making new friends already and looking at the toys.", "album_id": "72157607397957916", "photo_flickr_id": "2869906714", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "45866", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm making new friends already and looking at the toys .", "storylet_id": "229334"}], [{"original_text": "This is my daughter on her first day of school, she's so stoked.", "album_id": "72157607397957916", "photo_flickr_id": "2869053327", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "45867", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my daughter on her first day of school , she 's so stoked .", "storylet_id": "229335"}], [{"original_text": "She practically dragged me up the stairs with her excitement. ", "album_id": "72157607397957916", "photo_flickr_id": "2869882352", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "45867", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she practically dragged me up the stairs with her excitement .", "storylet_id": "229336"}], [{"original_text": "She waved to the empty parking lot to let everyone she was ready to awesome.", "album_id": "72157607397957916", "photo_flickr_id": "2869057329", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "45867", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she waved to the empty parking lot to let everyone she was ready to awesome .", "storylet_id": "229337"}], [{"original_text": "The play room practically glowed in front of her, she was ready to dominate her fellow classmates.", "album_id": "72157607397957916", "photo_flickr_id": "2869903104", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "45867", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the play room practically glowed in front of her , she was ready to dominate her fellow classmates .", "storylet_id": "229338"}], [{"original_text": "This was my last image of her, she told me that all of the toys belong to her and kids need her permission to use them, attagirl. ", "album_id": "72157607397957916", "photo_flickr_id": "2869906714", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "45867", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was my last image of her , she told me that all of the toys belong to her and kids need her permission to use them , attagirl .", "storylet_id": "229339"}], [{"original_text": "The little girl was nervous riding to her first day of preschool.", "album_id": "72157607397957916", "photo_flickr_id": "2869052531", "setting": "last-3-pick-old-and-tell", "worker_id": "S1AWGG1PBN3VK2U", "story_id": "45868", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the little girl was nervous riding to her first day of preschool .", "storylet_id": "229340"}], [{"original_text": "During the ride her nervousness turned into excitement.", "album_id": "72157607397957916", "photo_flickr_id": "2869053041", "setting": "last-3-pick-old-and-tell", "worker_id": "S1AWGG1PBN3VK2U", "story_id": "45868", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "during the ride her nervousness turned into excitement .", "storylet_id": "229341"}], [{"original_text": "Dad and her baby brother walked her into her school.", "album_id": "72157607397957916", "photo_flickr_id": "2869072483", "setting": "last-3-pick-old-and-tell", "worker_id": "S1AWGG1PBN3VK2U", "story_id": "45868", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad and her baby brother walked her into her school .", "storylet_id": "229342"}], [{"original_text": "She was happy to see the colorful board in the hallway.", "album_id": "72157607397957916", "photo_flickr_id": "2869900866", "setting": "last-3-pick-old-and-tell", "worker_id": "S1AWGG1PBN3VK2U", "story_id": "45868", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was happy to see the colorful board in the hallway .", "storylet_id": "229343"}], [{"original_text": "As soon as she got to her class she made a friend and played with a bike.", "album_id": "72157607397957916", "photo_flickr_id": "2869077877", "setting": "last-3-pick-old-and-tell", "worker_id": "S1AWGG1PBN3VK2U", "story_id": "45868", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as soon as she got to her class she made a friend and played with a bike .", "storylet_id": "229344"}], [{"original_text": "In the car on the was to the first day of pre-school.", "album_id": "72157607397957916", "photo_flickr_id": "2869052531", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "45869", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the car on the was to the first day of pre-school .", "storylet_id": "229345"}], [{"original_text": "She waved goodbye to our house.", "album_id": "72157607397957916", "photo_flickr_id": "2869053041", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "45869", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she waved goodbye to our house .", "storylet_id": "229346"}], [{"original_text": "We arrived and walked into the school for the first time.", "album_id": "72157607397957916", "photo_flickr_id": "2869072483", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "45869", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we arrived and walked into the school for the first time .", "storylet_id": "229347"}], [{"original_text": "The teacher had made a really cute bulletin board.", "album_id": "72157607397957916", "photo_flickr_id": "2869900866", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "45869", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the teacher had made a really cute bulletin board .", "storylet_id": "229348"}], [{"original_text": "She was nervous but jumped right in and began playing with the other kids.", "album_id": "72157607397957916", "photo_flickr_id": "2869077877", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "45869", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was nervous but jumped right in and began playing with the other kids .", "storylet_id": "229349"}], [{"original_text": "The students collaborated on a project.", "album_id": "72157625881901406", "photo_flickr_id": "5378634968", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "45870", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the students collaborated on a project .", "storylet_id": "229350"}], [{"original_text": "It was a type of robot.", "album_id": "72157625881901406", "photo_flickr_id": "5378644258", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "45870", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a type of robot .", "storylet_id": "229351"}], [{"original_text": "The teacher gave general guidelines on what to do next.", "album_id": "72157625881901406", "photo_flickr_id": "5378055167", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "45870", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the teacher gave general guidelines on what to do next .", "storylet_id": "229352"}], [{"original_text": "The students listened and made adjustments.", "album_id": "72157625881901406", "photo_flickr_id": "5378057833", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "45870", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the students listened and made adjustments .", "storylet_id": "229353"}], [{"original_text": "They left the projects to complete another day.", "album_id": "72157625881901406", "photo_flickr_id": "5378064135", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "45870", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they left the projects to complete another day .", "storylet_id": "229354"}], [{"original_text": "Kenny, Mike and Lea decided to enter the robot building contest.", "album_id": "72157625881901406", "photo_flickr_id": "5378060145", "setting": "first-2-pick-and-tell", "worker_id": "GMBDVY0ZSG8MFAU", "story_id": "45871", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] , [male] and [female] decided to enter the robot building contest .", "storylet_id": "229355"}], [{"original_text": "The did some research on the internet.", "album_id": "72157625881901406", "photo_flickr_id": "5378634968", "setting": "first-2-pick-and-tell", "worker_id": "GMBDVY0ZSG8MFAU", "story_id": "45871", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the did some research on the internet .", "storylet_id": "229356"}], [{"original_text": "Then they started making a plan.", "album_id": "72157625881901406", "photo_flickr_id": "5378656034", "setting": "first-2-pick-and-tell", "worker_id": "GMBDVY0ZSG8MFAU", "story_id": "45871", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they started making a plan .", "storylet_id": "229357"}], [{"original_text": "They have made part of the bottom of the robot.", "album_id": "72157625881901406", "photo_flickr_id": "5378662572", "setting": "first-2-pick-and-tell", "worker_id": "GMBDVY0ZSG8MFAU", "story_id": "45871", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they have made part of the bottom of the robot .", "storylet_id": "229358"}], [{"original_text": "They're excited to finish the project.", "album_id": "72157625881901406", "photo_flickr_id": "5378663780", "setting": "first-2-pick-and-tell", "worker_id": "GMBDVY0ZSG8MFAU", "story_id": "45871", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they 're excited to finish the project .", "storylet_id": "229359"}], [{"original_text": "This is a class on robotics. ", "album_id": "72157625881901406", "photo_flickr_id": "5378634968", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "45872", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a class on robotics .", "storylet_id": "229360"}], [{"original_text": "This is what the prototype looks like, although unfinished. ", "album_id": "72157625881901406", "photo_flickr_id": "5378644258", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "45872", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is what the prototype looks like , although unfinished .", "storylet_id": "229361"}], [{"original_text": "It was designed by first making a list of components. ", "album_id": "72157625881901406", "photo_flickr_id": "5378055167", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "45872", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was designed by first making a list of components .", "storylet_id": "229362"}], [{"original_text": "Then they made computer images. ", "album_id": "72157625881901406", "photo_flickr_id": "5378057833", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "45872", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they made computer images .", "storylet_id": "229363"}], [{"original_text": "When finished, it will compete against others for prizes. ", "album_id": "72157625881901406", "photo_flickr_id": "5378064135", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "45872", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when finished , it will compete against others for prizes .", "storylet_id": "229364"}], [{"original_text": "This was going to be a problem. ", "album_id": "72157625881901406", "photo_flickr_id": "5378634968", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45873", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was going to be a problem .", "storylet_id": "229365"}], [{"original_text": "They would have to take the damn thing apart. ", "album_id": "72157625881901406", "photo_flickr_id": "5378644258", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45873", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they would have to take the damn thing apart .", "storylet_id": "229366"}], [{"original_text": "Analyze it. ", "album_id": "72157625881901406", "photo_flickr_id": "5378055167", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45873", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "analyze it .", "storylet_id": "229367"}], [{"original_text": "Reconfigure it. ", "album_id": "72157625881901406", "photo_flickr_id": "5378057833", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45873", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "reconfigure it .", "storylet_id": "229368"}], [{"original_text": "And put it back together again. ", "album_id": "72157625881901406", "photo_flickr_id": "5378064135", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45873", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and put it back together again .", "storylet_id": "229369"}], [{"original_text": "The robotics team was working on their project.", "album_id": "72157625881901406", "photo_flickr_id": "5378634968", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "45874", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the robotics team was working on their project .", "storylet_id": "229370"}], [{"original_text": "They had all the parts that they needed.", "album_id": "72157625881901406", "photo_flickr_id": "5378644258", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "45874", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had all the parts that they needed .", "storylet_id": "229371"}], [{"original_text": "Next they just needed to come up with a plan", "album_id": "72157625881901406", "photo_flickr_id": "5378055167", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "45874", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next they just needed to come up with a plan", "storylet_id": "229372"}], [{"original_text": "The team couldn't agree on anything.", "album_id": "72157625881901406", "photo_flickr_id": "5378057833", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "45874", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the team could n't agree on anything .", "storylet_id": "229373"}], [{"original_text": "So they decided to take a break and get coffee.", "album_id": "72157625881901406", "photo_flickr_id": "5378064135", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "45874", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so they decided to take a break and get coffee .", "storylet_id": "229374"}], [{"original_text": "the kids were having track that day", "album_id": "72157626464008683", "photo_flickr_id": "5660430052", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "45875", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids were having track that day", "storylet_id": "229375"}], [{"original_text": "little lucas needed some water", "album_id": "72157626464008683", "photo_flickr_id": "5660430606", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "45875", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "little lucas needed some water", "storylet_id": "229376"}], [{"original_text": "the kids were giving it all the had", "album_id": "72157626464008683", "photo_flickr_id": "5660431014", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "45875", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids were giving it all the had", "storylet_id": "229377"}], [{"original_text": "and helping each other along the way", "album_id": "72157626464008683", "photo_flickr_id": "5659862103", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "45875", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and helping each other along the way", "storylet_id": "229378"}], [{"original_text": "the mothers couldnt be more proud ", "album_id": "72157626464008683", "photo_flickr_id": "5659862279", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "45875", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the mothers couldnt be more proud", "storylet_id": "229379"}], [{"original_text": "We had a track meet this weekend.", "album_id": "72157626464008683", "photo_flickr_id": "5660430052", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45876", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a track meet this weekend .", "storylet_id": "229380"}], [{"original_text": "Everyone worked hard for this moment and tried to take first place.", "album_id": "72157626464008683", "photo_flickr_id": "5660431442", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45876", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone worked hard for this moment and tried to take first place .", "storylet_id": "229381"}], [{"original_text": "Only one can win through and Bob made it first.", "album_id": "72157626464008683", "photo_flickr_id": "5659861433", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45876", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "only one can win through and [male] made it first .", "storylet_id": "229382"}], [{"original_text": "Everyone was really excited and did their best.", "album_id": "72157626464008683", "photo_flickr_id": "5660431014", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45876", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was really excited and did their best .", "storylet_id": "229383"}], [{"original_text": "It was a success that will be repeated next year.", "album_id": "72157626464008683", "photo_flickr_id": "5659862103", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45876", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a success that will be repeated next year .", "storylet_id": "229384"}], [{"original_text": "Tom was getting ready for the track meet up.", "album_id": "72157626464008683", "photo_flickr_id": "5660430052", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45877", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was getting ready for the track meet up .", "storylet_id": "229385"}], [{"original_text": "His friends were helping him by chasing after him.", "album_id": "72157626464008683", "photo_flickr_id": "5660431442", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45877", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his friends were helping him by chasing after him .", "storylet_id": "229386"}], [{"original_text": "This wasn't good for Toms nervous though so he can faster.", "album_id": "72157626464008683", "photo_flickr_id": "5659861433", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45877", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was n't good for toms nervous though so he can faster .", "storylet_id": "229387"}], [{"original_text": "He finished his lap and turned around because he heard some one call his name.", "album_id": "72157626464008683", "photo_flickr_id": "5660431014", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45877", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he finished his lap and turned around because he heard some one call his name .", "storylet_id": "229388"}], [{"original_text": "It was just Steve trying to hit him with one of the batons. Grow up Steve.", "album_id": "72157626464008683", "photo_flickr_id": "5659862103", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "45877", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was just [male] trying to hit him with one of the batons . grow up [male] .", "storylet_id": "229389"}], [{"original_text": "The race had started...", "album_id": "72157626464008683", "photo_flickr_id": "5660430052", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45878", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the race had started ...", "storylet_id": "229390"}], [{"original_text": "And Aaron was awaiting his turn, he even had a drink.", "album_id": "72157626464008683", "photo_flickr_id": "5660430606", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45878", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and [male] was awaiting his turn , he even had a drink .", "storylet_id": "229391"}], [{"original_text": "And, then his teammate was closing in...", "album_id": "72157626464008683", "photo_flickr_id": "5660431014", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45878", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and , then his teammate was closing in ...", "storylet_id": "229392"}], [{"original_text": "And, Aaron grabbed the baton and was off!", "album_id": "72157626464008683", "photo_flickr_id": "5659862103", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45878", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , [male] grabbed the baton and was off !", "storylet_id": "229393"}], [{"original_text": "His mother and sister cheered from the stands!", "album_id": "72157626464008683", "photo_flickr_id": "5659862279", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45878", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his mother and sister cheered from the stands !", "storylet_id": "229394"}], [{"original_text": "We went to Christian's track meet.", "album_id": "72157626464008683", "photo_flickr_id": "5660430052", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "45879", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to [male] 's track meet .", "storylet_id": "229395"}], [{"original_text": "We gave him some energy drinks,", "album_id": "72157626464008683", "photo_flickr_id": "5660430606", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "45879", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we gave him some energy drinks ,", "storylet_id": "229396"}], [{"original_text": "but it was time for his race.", "album_id": "72157626464008683", "photo_flickr_id": "5660431014", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "45879", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but it was time for his race .", "storylet_id": "229397"}], [{"original_text": "He received the baton from Charles.", "album_id": "72157626464008683", "photo_flickr_id": "5659862103", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "45879", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he received the baton from [male] .", "storylet_id": "229398"}], [{"original_text": "We had a great time watching his team.", "album_id": "72157626464008683", "photo_flickr_id": "5659862279", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "45879", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time watching his team .", "storylet_id": "229399"}], [{"original_text": "We had a great time in class today.", "album_id": "72157626507385367", "photo_flickr_id": "5680433681", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45880", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great time in class today .", "storylet_id": "229400"}], [{"original_text": "There were many group projects that we needed to do.", "album_id": "72157626507385367", "photo_flickr_id": "5680997288", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45880", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many group projects that we needed to do .", "storylet_id": "229401"}], [{"original_text": "It required a lot of collaboration.", "album_id": "72157626507385367", "photo_flickr_id": "5680997912", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45880", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it required a lot of collaboration .", "storylet_id": "229402"}], [{"original_text": "It was a lot of fun.", "album_id": "72157626507385367", "photo_flickr_id": "5680435661", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45880", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a lot of fun .", "storylet_id": "229403"}], [{"original_text": "Afterward we were all given a grade.", "album_id": "72157626507385367", "photo_flickr_id": "5680439037", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45880", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we were all given a grade .", "storylet_id": "229404"}], [{"original_text": "It was job day and everyone was ready to hand in their forms. ", "album_id": "72157626507385367", "photo_flickr_id": "5680997288", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "45881", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was job day and everyone was ready to hand in their forms .", "storylet_id": "229405"}], [{"original_text": "One girl wrote her information on a small card. ", "album_id": "72157626507385367", "photo_flickr_id": "5680997912", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "45881", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one girl wrote her information on a small card .", "storylet_id": "229406"}], [{"original_text": "The interviewer had trouble reading her tiny card, so she asked her to hold it up.", "album_id": "72157626507385367", "photo_flickr_id": "5680437239", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "45881", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the interviewer had trouble reading her tiny card , so she asked her to hold it up .", "storylet_id": "229407"}], [{"original_text": "Another interviewer was laughing at the sad group of candidates that showed up for the job fair.", "album_id": "72157626507385367", "photo_flickr_id": "5680439037", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "45881", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another interviewer was laughing at the sad group of candidates that showed up for the job fair .", "storylet_id": "229408"}], [{"original_text": "The winner of a job was finally selected and received their first paycheck. ", "album_id": "72157626507385367", "photo_flickr_id": "5680438413", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "45881", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the winner of a job was finally selected and received their first paycheck .", "storylet_id": "229409"}], [{"original_text": "We had open campus day at our school this week.", "album_id": "72157626507385367", "photo_flickr_id": "5680433681", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45882", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had open campus day at our school this week .", "storylet_id": "229410"}], [{"original_text": "Many people showed up to discuss the school and what is so different about it.", "album_id": "72157626507385367", "photo_flickr_id": "5680997288", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45882", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people showed up to discuss the school and what is so different about it .", "storylet_id": "229411"}], [{"original_text": "The students were there giving their impressions.", "album_id": "72157626507385367", "photo_flickr_id": "5680997912", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45882", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the students were there giving their impressions .", "storylet_id": "229412"}], [{"original_text": "We also had the classroom open for people to visit.", "album_id": "72157626507385367", "photo_flickr_id": "5680435661", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45882", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also had the classroom open for people to visit .", "storylet_id": "229413"}], [{"original_text": "The teachers were great, it was an awesome day.", "album_id": "72157626507385367", "photo_flickr_id": "5680439037", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "45882", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the teachers were great , it was an awesome day .", "storylet_id": "229414"}], [{"original_text": "I'm taking a banking class so that I can get a promotion.", "album_id": "72157626507385367", "photo_flickr_id": "5680433681", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45883", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 'm taking a banking class so that i can get a promotion .", "storylet_id": "229415"}], [{"original_text": "This requires much too much thought.", "album_id": "72157626507385367", "photo_flickr_id": "5680997288", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45883", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this requires much too much thought .", "storylet_id": "229416"}], [{"original_text": "Card goes in this way.", "album_id": "72157626507385367", "photo_flickr_id": "5680997912", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45883", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "card goes in this way .", "storylet_id": "229417"}], [{"original_text": "I just wish everyone would sit down so I can see.", "album_id": "72157626507385367", "photo_flickr_id": "5680435661", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45883", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i just wish everyone would sit down so i can see .", "storylet_id": "229418"}], [{"original_text": "This is the questions and answers part. Very personal, not with a group.", "album_id": "72157626507385367", "photo_flickr_id": "5680439037", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "45883", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the questions and answers part . very personal , not with a group .", "storylet_id": "229419"}], [{"original_text": "Career day at school. Lots of good information!", "album_id": "72157626507385367", "photo_flickr_id": "5680433681", "setting": "last-3-pick-old-and-tell", "worker_id": "DKL5YC4HJEF1AF0", "story_id": "45884", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "career day at school . lots of good information !", "storylet_id": "229420"}], [{"original_text": "And a lot of good material about any profession you can think of.", "album_id": "72157626507385367", "photo_flickr_id": "5680997288", "setting": "last-3-pick-old-and-tell", "worker_id": "DKL5YC4HJEF1AF0", "story_id": "45884", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and a lot of good material about any profession you can think of .", "storylet_id": "229421"}], [{"original_text": "But our friend Amy was having a hard time deciding what to choose.", "album_id": "72157626507385367", "photo_flickr_id": "5680997912", "setting": "last-3-pick-old-and-tell", "worker_id": "DKL5YC4HJEF1AF0", "story_id": "45884", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but our friend [female] was having a hard time deciding what to choose .", "storylet_id": "229422"}], [{"original_text": "Then we took a 15 minute break to stretch and clear our heads a little.", "album_id": "72157626507385367", "photo_flickr_id": "5680435661", "setting": "last-3-pick-old-and-tell", "worker_id": "DKL5YC4HJEF1AF0", "story_id": "45884", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we took a 15 minute break to stretch and clear our heads a little .", "storylet_id": "229423"}], [{"original_text": "Now it's time to meet with the counselors to answer our many questions.", "album_id": "72157626507385367", "photo_flickr_id": "5680439037", "setting": "last-3-pick-old-and-tell", "worker_id": "DKL5YC4HJEF1AF0", "story_id": "45884", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now it 's time to meet with the counselors to answer our many questions .", "storylet_id": "229424"}], [{"original_text": "The family was gathered in the living room. ", "album_id": "72157627495555866", "photo_flickr_id": "6070506389", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45885", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was gathered in the living room .", "storylet_id": "229425"}], [{"original_text": "The two boys waited outside for the school bus. ", "album_id": "72157627495555866", "photo_flickr_id": "6070514905", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45885", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the two boys waited outside for the school bus .", "storylet_id": "229426"}], [{"original_text": "Dad gave Cyndi a big smooch. ", "album_id": "72157627495555866", "photo_flickr_id": "6070521495", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45885", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad gave cyndi a big smooch .", "storylet_id": "229427"}], [{"original_text": "Cyndi has time to watch TV before going to school. ", "album_id": "72157627495555866", "photo_flickr_id": "6070526561", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45885", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cyndi has time to watch tv before going to school .", "storylet_id": "229428"}], [{"original_text": "That's the bus that will take all the kids to school. ", "album_id": "72157627495555866", "photo_flickr_id": "6071107980", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45885", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that 's the bus that will take all the kids to school .", "storylet_id": "229429"}], [{"original_text": "Daddy kissed me goodbye and sent me off to my first day of school.", "album_id": "72157627495555866", "photo_flickr_id": "6070521495", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45886", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "daddy kissed me goodbye and sent me off to my first day of school .", "storylet_id": "229430"}], [{"original_text": "It was lonely walking to the bus stop.", "album_id": "72157627495555866", "photo_flickr_id": "6071082438", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45886", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was lonely walking to the bus stop .", "storylet_id": "229431"}], [{"original_text": "But it only took a minute before I made a new friend. It was his first day too.", "album_id": "72157627495555866", "photo_flickr_id": "6071077972", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45886", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but it only took a minute before i made a new friend . it was his first day too .", "storylet_id": "229432"}], [{"original_text": "Before I knew it I had a whole bunch of new friends.", "album_id": "72157627495555866", "photo_flickr_id": "6071092120", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45886", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "before i knew it i had a whole bunch of new friends .", "storylet_id": "229433"}], [{"original_text": "The school bus pulled up and we boarded. Ready to start a new adventure.", "album_id": "72157627495555866", "photo_flickr_id": "6071107980", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45886", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the school bus pulled up and we boarded . ready to start a new adventure .", "storylet_id": "229434"}], [{"original_text": "The family was awaiting, it was the first day of school all over again...", "album_id": "72157627495555866", "photo_flickr_id": "6070506389", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45887", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was awaiting , it was the first day of school all over again ...", "storylet_id": "229435"}], [{"original_text": "But, it was a special day for one of the children...", "album_id": "72157627495555866", "photo_flickr_id": "6070514905", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45887", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but , it was a special day for one of the children ...", "storylet_id": "229436"}], [{"original_text": "It was Tara's first day of school EVER!", "album_id": "72157627495555866", "photo_flickr_id": "6070521495", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45887", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was [female] 's first day of school ever !", "storylet_id": "229437"}], [{"original_text": "She was nervous and biting her nails...", "album_id": "72157627495555866", "photo_flickr_id": "6070526561", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45887", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was nervous and biting her nails ...", "storylet_id": "229438"}], [{"original_text": "But, when the bus arrived, she jumped on and was off to kindergarten. ", "album_id": "72157627495555866", "photo_flickr_id": "6071107980", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45887", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but , when the bus arrived , she jumped on and was off to kindergarten .", "storylet_id": "229439"}], [{"original_text": "I took the kids to the bus stop today.", "album_id": "72157627495555866", "photo_flickr_id": "6070506389", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45888", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took the kids to the bus stop today .", "storylet_id": "229440"}], [{"original_text": "It was their first day on the bus.", "album_id": "72157627495555866", "photo_flickr_id": "6070514905", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45888", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was their first day on the bus .", "storylet_id": "229441"}], [{"original_text": "They were very excited.", "album_id": "72157627495555866", "photo_flickr_id": "6070521495", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45888", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were very excited .", "storylet_id": "229442"}], [{"original_text": "Some of them were nervous.", "album_id": "72157627495555866", "photo_flickr_id": "6070526561", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45888", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of them were nervous .", "storylet_id": "229443"}], [{"original_text": "When the bus came they all got on and went to school.", "album_id": "72157627495555866", "photo_flickr_id": "6071107980", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45888", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the bus came they all got on and went to school .", "storylet_id": "229444"}], [{"original_text": "It was the first day of school and all the kids were ready.", "album_id": "72157627495555866", "photo_flickr_id": "6070506389", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "45889", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the first day of school and all the kids were ready .", "storylet_id": "229445"}], [{"original_text": "They were heading out to the bus.", "album_id": "72157627495555866", "photo_flickr_id": "6070514905", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "45889", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were heading out to the bus .", "storylet_id": "229446"}], [{"original_text": "The youngest daughter went to say goodbye to her dad.", "album_id": "72157627495555866", "photo_flickr_id": "6070521495", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "45889", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the youngest daughter went to say goodbye to her dad .", "storylet_id": "229447"}], [{"original_text": "But she was scared about leaving.", "album_id": "72157627495555866", "photo_flickr_id": "6070526561", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "45889", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but she was scared about leaving .", "storylet_id": "229448"}], [{"original_text": "As the bus pulls up she decides she is ready and runs off.", "album_id": "72157627495555866", "photo_flickr_id": "6071107980", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "45889", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the bus pulls up she decides she is ready and runs off .", "storylet_id": "229449"}], [{"original_text": "the group was going to break ground on a new site", "album_id": "72157629216448839", "photo_flickr_id": "6836092009", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "45890", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group was going to break ground on a new site", "storylet_id": "229450"}], [{"original_text": "they planted a tree ", "album_id": "72157629216448839", "photo_flickr_id": "6836080187", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "45890", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they planted a tree", "storylet_id": "229451"}], [{"original_text": "and had a long discussion about the past", "album_id": "72157629216448839", "photo_flickr_id": "6836083193", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "45890", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and had a long discussion about the past", "storylet_id": "229452"}], [{"original_text": "they remembered the fallen as well", "album_id": "72157629216448839", "photo_flickr_id": "6836090133", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "45890", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they remembered the fallen as well", "storylet_id": "229453"}], [{"original_text": "it was a beautiful day to be alive ", "album_id": "72157629216448839", "photo_flickr_id": "6836093939", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "45890", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a beautiful day to be alive", "storylet_id": "229454"}], [{"original_text": "Everything was planed out in advance", "album_id": "72157629216448839", "photo_flickr_id": "6836086855", "setting": "first-2-pick-and-tell", "worker_id": "6K8CISOFWFDJB4Y", "story_id": "45891", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everything was planed out in advance", "storylet_id": "229455"}], [{"original_text": "There would be a tree planting ", "album_id": "72157629216448839", "photo_flickr_id": "6836080187", "setting": "first-2-pick-and-tell", "worker_id": "6K8CISOFWFDJB4Y", "story_id": "45891", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there would be a tree planting", "storylet_id": "229456"}], [{"original_text": "and a book presentation", "album_id": "72157629216448839", "photo_flickr_id": "6836081055", "setting": "first-2-pick-and-tell", "worker_id": "6K8CISOFWFDJB4Y", "story_id": "45891", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and a book presentation", "storylet_id": "229457"}], [{"original_text": "and a reef laying", "album_id": "72157629216448839", "photo_flickr_id": "6836090133", "setting": "first-2-pick-and-tell", "worker_id": "6K8CISOFWFDJB4Y", "story_id": "45891", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and a reef laying", "storylet_id": "229458"}], [{"original_text": "Everyone will the go look at the view.", "album_id": "72157629216448839", "photo_flickr_id": "6836093939", "setting": "first-2-pick-and-tell", "worker_id": "6K8CISOFWFDJB4Y", "story_id": "45891", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone will the go look at the view .", "storylet_id": "229459"}], [{"original_text": "The group gathered for the ceremony.", "album_id": "72157629216448839", "photo_flickr_id": "6836092009", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "45892", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group gathered for the ceremony .", "storylet_id": "229460"}], [{"original_text": "They all helped plant the tree.", "album_id": "72157629216448839", "photo_flickr_id": "6836080187", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "45892", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all helped plant the tree .", "storylet_id": "229461"}], [{"original_text": "They talked about future plans for the land.", "album_id": "72157629216448839", "photo_flickr_id": "6836083193", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "45892", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they talked about future plans for the land .", "storylet_id": "229462"}], [{"original_text": "Then they laid a ceremonial wreath.", "album_id": "72157629216448839", "photo_flickr_id": "6836090133", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "45892", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they laid a ceremonial wreath .", "storylet_id": "229463"}], [{"original_text": "The area will be a great tribute when it is finished.", "album_id": "72157629216448839", "photo_flickr_id": "6836093939", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "45892", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the area will be a great tribute when it is finished .", "storylet_id": "229464"}], [{"original_text": "The Veterans Memorial was a long and gruelling process to procure.", "album_id": "72157629216448839", "photo_flickr_id": "6836086855", "setting": "last-3-pick-old-and-tell", "worker_id": "AT0XL1LRCSO03HR", "story_id": "45893", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the veterans memorial was a long and gruelling process to procure .", "storylet_id": "229465"}], [{"original_text": "Details took weeks to settle for everything, from the size of American flag to fly, to the genus of tree to be planted.", "album_id": "72157629216448839", "photo_flickr_id": "6836080187", "setting": "last-3-pick-old-and-tell", "worker_id": "AT0XL1LRCSO03HR", "story_id": "45893", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "details took weeks to settle for everything , from the size of american flag to fly , to the genus of tree to be planted .", "storylet_id": "229466"}], [{"original_text": "There was even a book written about it.", "album_id": "72157629216448839", "photo_flickr_id": "6836081055", "setting": "last-3-pick-old-and-tell", "worker_id": "AT0XL1LRCSO03HR", "story_id": "45893", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was even a book written about it .", "storylet_id": "229467"}], [{"original_text": "But the day came to open the park, and it was all spectacular.", "album_id": "72157629216448839", "photo_flickr_id": "6836090133", "setting": "last-3-pick-old-and-tell", "worker_id": "AT0XL1LRCSO03HR", "story_id": "45893", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but the day came to open the park , and it was all spectacular .", "storylet_id": "229468"}], [{"original_text": "The team could look out over there work and know they honored their servicemen well.", "album_id": "72157629216448839", "photo_flickr_id": "6836093939", "setting": "last-3-pick-old-and-tell", "worker_id": "AT0XL1LRCSO03HR", "story_id": "45893", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the team could look out over there work and know they honored their servicemen well .", "storylet_id": "229469"}], [{"original_text": "Bill lost many friends in the war, and he was feeling particularly humbled at being asked to attend this meeting regarding the building of the monument.", "album_id": "72157629216448839", "photo_flickr_id": "6836086855", "setting": "last-3-pick-old-and-tell", "worker_id": "5876FHR4KXIQL37", "story_id": "45894", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] lost many friends in the war , and he was feeling particularly humbled at being asked to attend this meeting regarding the building of the monument .", "storylet_id": "229470"}], [{"original_text": "Five weeks later at the ground breaking ceremony, Bill was the first to lift the dirt.", "album_id": "72157629216448839", "photo_flickr_id": "6836080187", "setting": "last-3-pick-old-and-tell", "worker_id": "5876FHR4KXIQL37", "story_id": "45894", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "five weeks later at the ground breaking ceremony , [male] was the first to lift the dirt .", "storylet_id": "229471"}], [{"original_text": "A contractor showed him what the finished monument would look like, and Bill was thrilled by it's beauty.", "album_id": "72157629216448839", "photo_flickr_id": "6836081055", "setting": "last-3-pick-old-and-tell", "worker_id": "5876FHR4KXIQL37", "story_id": "45894", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a contractor showed him what the finished monument would look like , and [male] was thrilled by it 's beauty .", "storylet_id": "229472"}], [{"original_text": "A year later, Bill and his children visited the monument to find the names of his lost friends.", "album_id": "72157629216448839", "photo_flickr_id": "6836090133", "setting": "last-3-pick-old-and-tell", "worker_id": "5876FHR4KXIQL37", "story_id": "45894", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a year later , [male] and his children visited the monument to find the names of his lost friends .", "storylet_id": "229473"}], [{"original_text": "They spent the remainder of the afternoon in the observation room, watching with delight as the crowd filed passed the new monument.", "album_id": "72157629216448839", "photo_flickr_id": "6836093939", "setting": "last-3-pick-old-and-tell", "worker_id": "5876FHR4KXIQL37", "story_id": "45894", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they spent the remainder of the afternoon in the observation room , watching with delight as the crowd filed passed the new monument .", "storylet_id": "229474"}], [{"original_text": "I start my day with my dog, Petey. I love him so much!", "album_id": "72157631169645326", "photo_flickr_id": "7828347648", "setting": "first-2-pick-and-tell", "worker_id": "CMMZBS43FCZ62ZB", "story_id": "45895", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i start my day with my dog , petey . i love him so much !", "storylet_id": "229475"}], [{"original_text": "Then I study in the park.", "album_id": "72157631169645326", "photo_flickr_id": "7828346574", "setting": "first-2-pick-and-tell", "worker_id": "CMMZBS43FCZ62ZB", "story_id": "45895", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then i study in the park .", "storylet_id": "229476"}], [{"original_text": "I love hanging out by this big shade tree.", "album_id": "72157631169645326", "photo_flickr_id": "7828346824", "setting": "first-2-pick-and-tell", "worker_id": "CMMZBS43FCZ62ZB", "story_id": "45895", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i love hanging out by this big shade tree .", "storylet_id": "229477"}], [{"original_text": "This hat was a gift from my Mom.", "album_id": "72157631169645326", "photo_flickr_id": "7828348366", "setting": "first-2-pick-and-tell", "worker_id": "CMMZBS43FCZ62ZB", "story_id": "45895", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this hat was a gift from my mom .", "storylet_id": "229478"}], [{"original_text": "Here's Petey again. Time for bed. Good night!", "album_id": "72157631169645326", "photo_flickr_id": "7828349080", "setting": "first-2-pick-and-tell", "worker_id": "CMMZBS43FCZ62ZB", "story_id": "45895", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's petey again . time for bed . good night !", "storylet_id": "229479"}], [{"original_text": "Mara loves to read so many books. ", "album_id": "72157631169645326", "photo_flickr_id": "7828346032", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45896", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] loves to read so many books .", "storylet_id": "229480"}], [{"original_text": "She really enjoyed the book she was reading. ", "album_id": "72157631169645326", "photo_flickr_id": "7828346282", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45896", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she really enjoyed the book she was reading .", "storylet_id": "229481"}], [{"original_text": "Mara takes good care of her dog that she named Scruffy. ", "album_id": "72157631169645326", "photo_flickr_id": "7828347648", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45896", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] takes good care of her dog that she named scruffy .", "storylet_id": "229482"}], [{"original_text": "Sometimes she gets sad thinking about being away from her family. ", "album_id": "72157631169645326", "photo_flickr_id": "7828348188", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45896", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes she gets sad thinking about being away from her family .", "storylet_id": "229483"}], [{"original_text": "She started smiling a bit because she knows we love. ", "album_id": "72157631169645326", "photo_flickr_id": "7828349988", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "45896", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she started smiling a bit because she knows we love .", "storylet_id": "229484"}], [{"original_text": "I went to the park with my dog today.", "album_id": "72157631169645326", "photo_flickr_id": "7828347648", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45897", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the park with my dog today .", "storylet_id": "229485"}], [{"original_text": "I brought all my books to read.", "album_id": "72157631169645326", "photo_flickr_id": "7828346574", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45897", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i brought all my books to read .", "storylet_id": "229486"}], [{"original_text": "I took some pictures by the tree.", "album_id": "72157631169645326", "photo_flickr_id": "7828346824", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45897", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took some pictures by the tree .", "storylet_id": "229487"}], [{"original_text": "I also brought a hat for myself.", "album_id": "72157631169645326", "photo_flickr_id": "7828348366", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45897", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also brought a hat for myself .", "storylet_id": "229488"}], [{"original_text": "It was rather sunny out.", "album_id": "72157631169645326", "photo_flickr_id": "7828349080", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45897", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was rather sunny out .", "storylet_id": "229489"}], [{"original_text": "I took my senior photos today, I was allowed to bring my own props.", "album_id": "72157631169645326", "photo_flickr_id": "7828346032", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "45898", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took my senior photos today , i was allowed to bring my own props .", "storylet_id": "229490"}], [{"original_text": "First I brought my books because it's my favorite thing to do.", "album_id": "72157631169645326", "photo_flickr_id": "7828346282", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "45898", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first i brought my books because it 's my favorite thing to do .", "storylet_id": "229491"}], [{"original_text": "Then I bought my dog, because he's my best friend.", "album_id": "72157631169645326", "photo_flickr_id": "7828347648", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "45898", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then i bought my dog , because he 's my best friend .", "storylet_id": "229492"}], [{"original_text": "Next I took a couple black and white shots, I always thought they looked classy.", "album_id": "72157631169645326", "photo_flickr_id": "7828348188", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "45898", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next i took a couple black and white shots , i always thought they looked classy .", "storylet_id": "229493"}], [{"original_text": "At the end of the day, I was glad to be done posing.", "album_id": "72157631169645326", "photo_flickr_id": "7828349988", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "45898", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , i was glad to be done posing .", "storylet_id": "229494"}], [{"original_text": "We hired a professional photographer for the occasion.", "album_id": "72157631169645326", "photo_flickr_id": "7828346032", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "45899", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we hired a professional photographer for the occasion .", "storylet_id": "229495"}], [{"original_text": "The girl laid on the blanket to read her book.", "album_id": "72157631169645326", "photo_flickr_id": "7828346282", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "45899", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girl laid on the blanket to read her book .", "storylet_id": "229496"}], [{"original_text": "She laid on the bench with her dog.", "album_id": "72157631169645326", "photo_flickr_id": "7828347648", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "45899", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she laid on the bench with her dog .", "storylet_id": "229497"}], [{"original_text": "The photographer used a black and white setting to capture this moment.", "album_id": "72157631169645326", "photo_flickr_id": "7828348188", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "45899", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the photographer used a black and white setting to capture this moment .", "storylet_id": "229498"}], [{"original_text": "Lastly, the girl was very happy with the photos.", "album_id": "72157631169645326", "photo_flickr_id": "7828349988", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "45899", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , the girl was very happy with the photos .", "storylet_id": "229499"}], [{"original_text": "A day at the carnival with the family. Awesome view from the skylift.", "album_id": "72157620874108902", "photo_flickr_id": "3682252099", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "45900", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a day at the carnival with the family . awesome view from the skylift .", "storylet_id": "229500"}], [{"original_text": "Walked around the entire park to see what they really wanted to ride first. ", "album_id": "72157620874108902", "photo_flickr_id": "3683064482", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "45900", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "walked around the entire park to see what they really wanted to ride first .", "storylet_id": "229501"}], [{"original_text": "As nighttime fell, the lights came on. All the rides look so cool lit up.", "album_id": "72157620874108902", "photo_flickr_id": "3683064834", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "45900", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as nighttime fell , the lights came on . all the rides look so cool lit up .", "storylet_id": "229502"}], [{"original_text": "The Giant Wheel looks even scarier in the dark.", "album_id": "72157620874108902", "photo_flickr_id": "3682251797", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "45900", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the giant wheel looks even scarier in the dark .", "storylet_id": "229503"}], [{"original_text": "The night was finished off with an awesome fireworks show.", "album_id": "72157620874108902", "photo_flickr_id": "3682252201", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "45900", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night was finished off with an awesome fireworks show .", "storylet_id": "229504"}], [{"original_text": "We had an absolutely fantastic time at the fair this weekend!", "album_id": "72157620874108902", "photo_flickr_id": "3682251351", "setting": "first-2-pick-and-tell", "worker_id": "TJSBFNRESJKE1WF", "story_id": "45901", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had an absolutely fantastic time at the fair this weekend !", "storylet_id": "229505"}], [{"original_text": "From booths representing local businesses to local craft vendors, much of the community was represented.", "album_id": "72157620874108902", "photo_flickr_id": "3682251701", "setting": "first-2-pick-and-tell", "worker_id": "TJSBFNRESJKE1WF", "story_id": "45901", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from booths representing local businesses to local craft vendors , much of the community was represented .", "storylet_id": "229506"}], [{"original_text": "Our giant Ferris wheel was a hit for fairgoers as well as a breathtaking sight of light.", "album_id": "72157620874108902", "photo_flickr_id": "3682251797", "setting": "first-2-pick-and-tell", "worker_id": "TJSBFNRESJKE1WF", "story_id": "45901", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our giant ferris wheel was a hit for fairgoers as well as a breathtaking sight of light .", "storylet_id": "229507"}], [{"original_text": "Daytime activities for the whole family were offered along with a variety of live music. ", "album_id": "72157620874108902", "photo_flickr_id": "3682251941", "setting": "first-2-pick-and-tell", "worker_id": "TJSBFNRESJKE1WF", "story_id": "45901", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "daytime activities for the whole family were offered along with a variety of live music .", "storylet_id": "229508"}], [{"original_text": "Our beautiful summer festival was capped off by a firework show to remember. ", "album_id": "72157620874108902", "photo_flickr_id": "3683065528", "setting": "first-2-pick-and-tell", "worker_id": "TJSBFNRESJKE1WF", "story_id": "45901", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our beautiful summer festival was capped off by a firework show to remember .", "storylet_id": "229509"}], [{"original_text": "We went to an amusement park for the day.", "album_id": "72157620874108902", "photo_flickr_id": "3682252099", "setting": "last-3-pick-old-and-tell", "worker_id": "SBYYZUIWP2E9VS8", "story_id": "45902", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to an amusement park for the day .", "storylet_id": "229510"}], [{"original_text": "We couldn't wait to ride the big ferris wheel.", "album_id": "72157620874108902", "photo_flickr_id": "3683064482", "setting": "last-3-pick-old-and-tell", "worker_id": "SBYYZUIWP2E9VS8", "story_id": "45902", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we could n't wait to ride the big ferris wheel .", "storylet_id": "229511"}], [{"original_text": "The carousel was fun at night. ", "album_id": "72157620874108902", "photo_flickr_id": "3683064834", "setting": "last-3-pick-old-and-tell", "worker_id": "SBYYZUIWP2E9VS8", "story_id": "45902", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the carousel was fun at night .", "storylet_id": "229512"}], [{"original_text": "The Giant Wheel let us see the entire park.", "album_id": "72157620874108902", "photo_flickr_id": "3682251797", "setting": "last-3-pick-old-and-tell", "worker_id": "SBYYZUIWP2E9VS8", "story_id": "45902", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the giant wheel let us see the entire park .", "storylet_id": "229513"}], [{"original_text": "The night came to an end with fire works.", "album_id": "72157620874108902", "photo_flickr_id": "3682252201", "setting": "last-3-pick-old-and-tell", "worker_id": "SBYYZUIWP2E9VS8", "story_id": "45902", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night came to an end with fire works .", "storylet_id": "229514"}], [{"original_text": "The fair was in town so we decided to go.", "album_id": "72157620874108902", "photo_flickr_id": "3682252099", "setting": "last-3-pick-old-and-tell", "worker_id": "UXKVYOEZTUTM4HD", "story_id": "45903", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fair was in town so we decided to go .", "storylet_id": "229515"}], [{"original_text": "Took a picture of the ferris wheel that we would be riding on later.", "album_id": "72157620874108902", "photo_flickr_id": "3683064482", "setting": "last-3-pick-old-and-tell", "worker_id": "UXKVYOEZTUTM4HD", "story_id": "45903", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "took a picture of the ferris wheel that we would be riding on later .", "storylet_id": "229516"}], [{"original_text": "Johnny was having fun on the merry go round. He was all smiles.", "album_id": "72157620874108902", "photo_flickr_id": "3683064834", "setting": "last-3-pick-old-and-tell", "worker_id": "UXKVYOEZTUTM4HD", "story_id": "45903", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was having fun on the merry go round . he was all smiles .", "storylet_id": "229517"}], [{"original_text": "The Giant Wheel that we rode earlier looks fantastic all lit up at night.", "album_id": "72157620874108902", "photo_flickr_id": "3682251797", "setting": "last-3-pick-old-and-tell", "worker_id": "UXKVYOEZTUTM4HD", "story_id": "45903", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the giant wheel that we rode earlier looks fantastic all lit up at night .", "storylet_id": "229518"}], [{"original_text": "What better way to end a fair day then by a spectacular fireworks show. ", "album_id": "72157620874108902", "photo_flickr_id": "3682252201", "setting": "last-3-pick-old-and-tell", "worker_id": "UXKVYOEZTUTM4HD", "story_id": "45903", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what better way to end a fair day then by a spectacular fireworks show .", "storylet_id": "229519"}], [{"original_text": "A full view of the amusement park from across the lake.", "album_id": "72157620874108902", "photo_flickr_id": "3682252099", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45904", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a full view of the amusement park from across the lake .", "storylet_id": "229520"}], [{"original_text": "The entrance to the park had a merry-go -round and a Ferris wheel.", "album_id": "72157620874108902", "photo_flickr_id": "3683064482", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45904", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the entrance to the park had a merry-go -round and a organization wheel .", "storylet_id": "229521"}], [{"original_text": "The merry-go-round was all lit up a night.", "album_id": "72157620874108902", "photo_flickr_id": "3683064834", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45904", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the merry-go-round was all lit up a night .", "storylet_id": "229522"}], [{"original_text": "The Ferris wheel was also lit up and looked incredible.", "album_id": "72157620874108902", "photo_flickr_id": "3682251797", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45904", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the organization wheel was also lit up and looked incredible .", "storylet_id": "229523"}], [{"original_text": "They had a great fireworks show at the end of the evening.", "album_id": "72157620874108902", "photo_flickr_id": "3682252201", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "45904", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had a great fireworks show at the end of the evening .", "storylet_id": "229524"}], [{"original_text": "Five Star restaurants are cool. ", "album_id": "72157621931946156", "photo_flickr_id": "3784302931", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "45905", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "five star restaurants are cool .", "storylet_id": "229525"}], [{"original_text": "The only problem is that sometimes style takes the place of quantity. ", "album_id": "72157621931946156", "photo_flickr_id": "3785115580", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "45905", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the only problem is that sometimes style takes the place of quantity .", "storylet_id": "229526"}], [{"original_text": "And you get left with a disappointing plate. ", "album_id": "72157621931946156", "photo_flickr_id": "3784307795", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "45905", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and you get left with a disappointing plate .", "storylet_id": "229527"}], [{"original_text": "But that doesn't happen if you know what to order. ", "album_id": "72157621931946156", "photo_flickr_id": "3784308923", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "45905", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but that does n't happen if you know what to order .", "storylet_id": "229528"}], [{"original_text": "And then you can think about desert. ", "album_id": "72157621931946156", "photo_flickr_id": "3784314133", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "45905", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then you can think about desert .", "storylet_id": "229529"}], [{"original_text": "The restaurant we arrived at was beautiful", "album_id": "72157621931946156", "photo_flickr_id": "3784302931", "setting": "first-2-pick-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "45906", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the restaurant we arrived at was beautiful", "storylet_id": "229530"}], [{"original_text": "We had reserved the entire place for ourselves", "album_id": "72157621931946156", "photo_flickr_id": "3785113920", "setting": "first-2-pick-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "45906", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had reserved the entire place for ourselves", "storylet_id": "229531"}], [{"original_text": "The first course was diving and beautiful", "album_id": "72157621931946156", "photo_flickr_id": "3785115580", "setting": "first-2-pick-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "45906", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first course was diving and beautiful", "storylet_id": "229532"}], [{"original_text": "The second course was perfectly cooked", "album_id": "72157621931946156", "photo_flickr_id": "3784308923", "setting": "first-2-pick-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "45906", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the second course was perfectly cooked", "storylet_id": "229533"}], [{"original_text": "Dessert was to die for and topped the meal nicely", "album_id": "72157621931946156", "photo_flickr_id": "3784314133", "setting": "first-2-pick-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "45906", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dessert was to die for and topped the meal nicely", "storylet_id": "229534"}], [{"original_text": "My husband made reservations for us at a very nice restaurant.", "album_id": "72157621931946156", "photo_flickr_id": "3784302931", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45907", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband made reservations for us at a very nice restaurant .", "storylet_id": "229535"}], [{"original_text": "They didn't give you much food. ", "album_id": "72157621931946156", "photo_flickr_id": "3785115580", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45907", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they did n't give you much food .", "storylet_id": "229536"}], [{"original_text": "There was only a few tiny pieces of meat.", "album_id": "72157621931946156", "photo_flickr_id": "3784307795", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45907", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was only a few tiny pieces of meat .", "storylet_id": "229537"}], [{"original_text": "My husband ordered the steak.", "album_id": "72157621931946156", "photo_flickr_id": "3784308923", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45907", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my husband ordered the steak .", "storylet_id": "229538"}], [{"original_text": "Our deserts then came.", "album_id": "72157621931946156", "photo_flickr_id": "3784314133", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45907", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our deserts then came .", "storylet_id": "229539"}], [{"original_text": "Max took me to Shay Rouge tonight. It was so fancy. ", "album_id": "72157621931946156", "photo_flickr_id": "3784302931", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45908", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] took me to shay rouge tonight . it was so fancy .", "storylet_id": "229540"}], [{"original_text": "We had pate de meat. It was $50 a plate! ", "album_id": "72157621931946156", "photo_flickr_id": "3785115580", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45908", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had pate de meat . it was $ 50 a plate !", "storylet_id": "229541"}], [{"original_text": "I had to snap another picture of it because it was just a shock of how much it actually cost! We shared a plate and the waiter snubbed his nose at us. ", "album_id": "72157621931946156", "photo_flickr_id": "3784307795", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45908", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had to snap another picture of it because it was just a shock of how much it actually cost ! we shared a plate and the waiter snubbed his nose at us .", "storylet_id": "229542"}], [{"original_text": "Next we had raw beef. It gets prepared and cooked for 3.9 seconds in the broiler and then served. Wow it's cold. ", "album_id": "72157621931946156", "photo_flickr_id": "3784308923", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45908", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next we had raw beef . it gets prepared and cooked for 3.9 seconds in the broiler and then served . wow it 's cold .", "storylet_id": "229543"}], [{"original_text": "The dessert after dinner was unusual. It contained fish eggs. For a $600 dinner it sure was crap!", "album_id": "72157621931946156", "photo_flickr_id": "3784314133", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45908", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dessert after dinner was unusual . it contained fish eggs . for a $ 600 dinner it sure was crap !", "storylet_id": "229544"}], [{"original_text": "Getting the restaurant ready for customers to come in.", "album_id": "72157621931946156", "photo_flickr_id": "3784302931", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "45909", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting the restaurant ready for customers to come in .", "storylet_id": "229545"}], [{"original_text": "This is one of our best sellers.", "album_id": "72157621931946156", "photo_flickr_id": "3785115580", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "45909", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is one of our best sellers .", "storylet_id": "229546"}], [{"original_text": "You really don't get no food with this serving. ", "album_id": "72157621931946156", "photo_flickr_id": "3784307795", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "45909", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you really do n't get no food with this serving .", "storylet_id": "229547"}], [{"original_text": "The beef is amazing and you get more of it.", "album_id": "72157621931946156", "photo_flickr_id": "3784308923", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "45909", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beef is amazing and you get more of it .", "storylet_id": "229548"}], [{"original_text": "Dessert anyone? Look how small they are.", "album_id": "72157621931946156", "photo_flickr_id": "3784314133", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "45909", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dessert anyone ? look how small they are .", "storylet_id": "229549"}], [{"original_text": "She started to hang the signs.", "album_id": "72157620811678257", "photo_flickr_id": "3686899823", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45910", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she started to hang the signs .", "storylet_id": "229550"}], [{"original_text": "They took a family photo.", "album_id": "72157620811678257", "photo_flickr_id": "3686900307", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45910", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took a family photo .", "storylet_id": "229551"}], [{"original_text": "They look so happy together.", "album_id": "72157620811678257", "photo_flickr_id": "3686900831", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45910", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they look so happy together .", "storylet_id": "229552"}], [{"original_text": "Grandma did not look very happy, though.", "album_id": "72157620811678257", "photo_flickr_id": "3687702922", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45910", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandma did not look very happy , though .", "storylet_id": "229553"}], [{"original_text": "The little baby was adorable.", "album_id": "72157620811678257", "photo_flickr_id": "3687703662", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "45910", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the little baby was adorable .", "storylet_id": "229554"}], [{"original_text": "People gather waiting for the fireworks to start when the sun goes down. ", "album_id": "72157620811678257", "photo_flickr_id": "3686900831", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45911", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people gather waiting for the fireworks to start when the sun goes down .", "storylet_id": "229555"}], [{"original_text": "The first explosions light the night sky.", "album_id": "72157620811678257", "photo_flickr_id": "3686909171", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45911", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first explosions light the night sky .", "storylet_id": "229556"}], [{"original_text": "Another beautiful display of light.", "album_id": "72157620811678257", "photo_flickr_id": "3686909653", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45911", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another beautiful display of light .", "storylet_id": "229557"}], [{"original_text": "The color gets more vibrant.", "album_id": "72157620811678257", "photo_flickr_id": "3686905781", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45911", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the color gets more vibrant .", "storylet_id": "229558"}], [{"original_text": "Twin explosions as the end of the night approaches. ", "album_id": "72157620811678257", "photo_flickr_id": "3687708808", "setting": "first-2-pick-and-tell", "worker_id": "95P7DQ1GDA24YLL", "story_id": "45911", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "twin explosions as the end of the night approaches .", "storylet_id": "229559"}], [{"original_text": "Today was the day.", "album_id": "72157620811678257", "photo_flickr_id": "3686899823", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "45912", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day .", "storylet_id": "229560"}], [{"original_text": "The big event.", "album_id": "72157620811678257", "photo_flickr_id": "3686900307", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "45912", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the big event .", "storylet_id": "229561"}], [{"original_text": "Everyone was there.", "album_id": "72157620811678257", "photo_flickr_id": "3686900831", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "45912", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was there .", "storylet_id": "229562"}], [{"original_text": "It was so exciting.", "album_id": "72157620811678257", "photo_flickr_id": "3687702922", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "45912", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was so exciting .", "storylet_id": "229563"}], [{"original_text": "I loved the show.", "album_id": "72157620811678257", "photo_flickr_id": "3687703662", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "45912", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i loved the show .", "storylet_id": "229564"}], [{"original_text": "We sat out here for his anticipating the fireworks display tonight ", "album_id": "72157620811678257", "photo_flickr_id": "3686900831", "setting": "last-3-pick-old-and-tell", "worker_id": "YJ54QFU5JS4J53V", "story_id": "45913", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we sat out here for his anticipating the fireworks display tonight", "storylet_id": "229565"}], [{"original_text": "Around 9 pm they started to go off ", "album_id": "72157620811678257", "photo_flickr_id": "3686909171", "setting": "last-3-pick-old-and-tell", "worker_id": "YJ54QFU5JS4J53V", "story_id": "45913", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "around 9 pm they started to go off", "storylet_id": "229566"}], [{"original_text": "They're where do many different colors mixed in with each other ", "album_id": "72157620811678257", "photo_flickr_id": "3686909653", "setting": "last-3-pick-old-and-tell", "worker_id": "YJ54QFU5JS4J53V", "story_id": "45913", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they 're where do many different colors mixed in with each other", "storylet_id": "229567"}], [{"original_text": "As they went off they're was a hue of colors in the air ", "album_id": "72157620811678257", "photo_flickr_id": "3686905781", "setting": "last-3-pick-old-and-tell", "worker_id": "YJ54QFU5JS4J53V", "story_id": "45913", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as they went off they 're was a hue of colors in the air", "storylet_id": "229568"}], [{"original_text": "This one had the sky the brightest by far ", "album_id": "72157620811678257", "photo_flickr_id": "3687708808", "setting": "last-3-pick-old-and-tell", "worker_id": "YJ54QFU5JS4J53V", "story_id": "45913", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this one had the sky the brightest by far", "storylet_id": "229569"}], [{"original_text": "I told my husband we had to get there early.", "album_id": "72157620811678257", "photo_flickr_id": "3686899823", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45914", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i told my husband we had to get there early .", "storylet_id": "229570"}], [{"original_text": "By the time we arrived people were setting up on the side of the road.", "album_id": "72157620811678257", "photo_flickr_id": "3686900307", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45914", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "by the time we arrived people were setting up on the side of the road .", "storylet_id": "229571"}], [{"original_text": "And then the crowd got huge.", "album_id": "72157620811678257", "photo_flickr_id": "3686900831", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45914", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and then the crowd got huge .", "storylet_id": "229572"}], [{"original_text": "But the end result of fireworks was worth it.", "album_id": "72157620811678257", "photo_flickr_id": "3687702922", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45914", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but the end result of fireworks was worth it .", "storylet_id": "229573"}], [{"original_text": "The highlight of the night was the chaser fireworks.", "album_id": "72157620811678257", "photo_flickr_id": "3687703662", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "45914", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the highlight of the night was the chaser fireworks .", "storylet_id": "229574"}], [{"original_text": "You could almost smell the patriotism on this 4th of July.", "album_id": "72157626994718417", "photo_flickr_id": "5903879008", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "45915", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "you could almost smell the patriotism on this 4th of july .", "storylet_id": "229575"}], [{"original_text": "Children everywhere were ready for the parade, waving the flag in their wagons pulled by their parents.", "album_id": "72157626994718417", "photo_flickr_id": "5903879646", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "45915", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "children everywhere were ready for the parade , waving the flag in their wagons pulled by their parents .", "storylet_id": "229576"}], [{"original_text": "The old battle hymns could be heard.", "album_id": "72157626994718417", "photo_flickr_id": "5903321311", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "45915", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the old battle hymns could be heard .", "storylet_id": "229577"}], [{"original_text": "How could one not be patriotic today?", "album_id": "72157626994718417", "photo_flickr_id": "5903881196", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "45915", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "how could one not be patriotic today ?", "storylet_id": "229578"}], [{"original_text": "And how could you not end it with rockets' red, blue, and green glare.", "album_id": "72157626994718417", "photo_flickr_id": "5903323837", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "45915", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and how could you not end it with rockets ' red , blue , and green glare .", "storylet_id": "229579"}], [{"original_text": "I had a great time outside yesterday.", "album_id": "72157626994718417", "photo_flickr_id": "5903879008", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45916", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time outside yesterday .", "storylet_id": "229580"}], [{"original_text": "We had a rally.", "album_id": "72157626994718417", "photo_flickr_id": "5903320377", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45916", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a rally .", "storylet_id": "229581"}], [{"original_text": "There were lots of families watching from their porches.", "album_id": "72157626994718417", "photo_flickr_id": "5903879386", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45916", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were lots of families watching from their porches .", "storylet_id": "229582"}], [{"original_text": "Many families brought their children.", "album_id": "72157626994718417", "photo_flickr_id": "5903879954", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45916", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many families brought their children .", "storylet_id": "229583"}], [{"original_text": "They were all showing their support.", "album_id": "72157626994718417", "photo_flickr_id": "5903879646", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45916", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were all showing their support .", "storylet_id": "229584"}], [{"original_text": "We gathered in the street for our neighborhood 4th of July parade.", "album_id": "72157626994718417", "photo_flickr_id": "5903879008", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45917", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we gathered in the street for our neighborhood 4th of july parade .", "storylet_id": "229585"}], [{"original_text": "Even the wee ones participated.", "album_id": "72157626994718417", "photo_flickr_id": "5903879646", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45917", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the wee ones participated .", "storylet_id": "229586"}], [{"original_text": "Some of the costumes were very detailed.", "album_id": "72157626994718417", "photo_flickr_id": "5903321311", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45917", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the costumes were very detailed .", "storylet_id": "229587"}], [{"original_text": "The neighbors decorated their fence.", "album_id": "72157626994718417", "photo_flickr_id": "5903881196", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45917", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the neighbors decorated their fence .", "storylet_id": "229588"}], [{"original_text": "To end the day the local fire department put on a fireworks display.", "album_id": "72157626994718417", "photo_flickr_id": "5903323837", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "45917", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to end the day the local fire department put on a fireworks display .", "storylet_id": "229589"}], [{"original_text": "It was the biggest crowd ever for this year's 4th of July parade.", "album_id": "72157626994718417", "photo_flickr_id": "5903879008", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45918", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the biggest crowd ever for this year 's 4th of july parade .", "storylet_id": "229590"}], [{"original_text": "This little guy proudly waved his flag.", "album_id": "72157626994718417", "photo_flickr_id": "5903879646", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45918", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this little guy proudly waved his flag .", "storylet_id": "229591"}], [{"original_text": "The costumes looked very authentic.", "album_id": "72157626994718417", "photo_flickr_id": "5903321311", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45918", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the costumes looked very authentic .", "storylet_id": "229592"}], [{"original_text": "The people behind this fence were grilling and it smelled great.", "album_id": "72157626994718417", "photo_flickr_id": "5903881196", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45918", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people behind this fence were grilling and it smelled great .", "storylet_id": "229593"}], [{"original_text": "It was finally dark and the fireworks show began.", "album_id": "72157626994718417", "photo_flickr_id": "5903323837", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "45918", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was finally dark and the fireworks show began .", "storylet_id": "229594"}], [{"original_text": "Everyone gathered for the 4th of July parade.", "album_id": "72157626994718417", "photo_flickr_id": "5903879008", "setting": "last-3-pick-old-and-tell", "worker_id": "PI2P99KZ6PNJJ4K", "story_id": "45919", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone gathered for the 4th of july parade .", "storylet_id": "229595"}], [{"original_text": "The little boy proudly displayed the flag as he rode in the wagon.", "album_id": "72157626994718417", "photo_flickr_id": "5903879646", "setting": "last-3-pick-old-and-tell", "worker_id": "PI2P99KZ6PNJJ4K", "story_id": "45919", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the little boy proudly displayed the flag as he rode in the wagon .", "storylet_id": "229596"}], [{"original_text": "Some of the people dressed up as the founding fathers for the parade.", "album_id": "72157626994718417", "photo_flickr_id": "5903321311", "setting": "last-3-pick-old-and-tell", "worker_id": "PI2P99KZ6PNJJ4K", "story_id": "45919", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the people dressed up as the founding fathers for the parade .", "storylet_id": "229597"}], [{"original_text": "Many people decorated their houses for the event.", "album_id": "72157626994718417", "photo_flickr_id": "5903881196", "setting": "last-3-pick-old-and-tell", "worker_id": "PI2P99KZ6PNJJ4K", "story_id": "45919", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many people decorated their houses for the event .", "storylet_id": "229598"}], [{"original_text": "At the end of the day, everyone watched the fireworks.", "album_id": "72157626994718417", "photo_flickr_id": "5903323837", "setting": "last-3-pick-old-and-tell", "worker_id": "PI2P99KZ6PNJJ4K", "story_id": "45919", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , everyone watched the fireworks .", "storylet_id": "229599"}], [{"original_text": "We all came out for the July 4th fireworks display.", "album_id": "72157605997253353", "photo_flickr_id": "2640358274", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45920", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all came out for the july 4th fireworks display .", "storylet_id": "229600"}], [{"original_text": "The colors were bright and vibrant.", "album_id": "72157605997253353", "photo_flickr_id": "2639543307", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45920", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the colors were bright and vibrant .", "storylet_id": "229601"}], [{"original_text": "This was my friends favorite, since his favorite color is blue.", "album_id": "72157605997253353", "photo_flickr_id": "2640365448", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45920", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was my friends favorite , since his favorite color is blue .", "storylet_id": "229602"}], [{"original_text": "This was my favorite just because of the brightness.", "album_id": "72157605997253353", "photo_flickr_id": "2639540151", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45920", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was my favorite just because of the brightness .", "storylet_id": "229603"}], [{"original_text": "The grand finale was spectacular. What a great show!", "album_id": "72157605997253353", "photo_flickr_id": "2640374178", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45920", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the grand finale was spectacular . what a great show !", "storylet_id": "229604"}], [{"original_text": "Fireworks are my absolute favorite part of Independence Day. ", "album_id": "72157605997253353", "photo_flickr_id": "2640358274", "setting": "first-2-pick-and-tell", "worker_id": "CELDONB3UMVTUU3", "story_id": "45921", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "fireworks are my absolute favorite part of independence day .", "storylet_id": "229605"}], [{"original_text": "The different colors always catch my eye. ", "album_id": "72157605997253353", "photo_flickr_id": "2640358974", "setting": "first-2-pick-and-tell", "worker_id": "CELDONB3UMVTUU3", "story_id": "45921", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the different colors always catch my eye .", "storylet_id": "229606"}], [{"original_text": "Some of them are two toned and reach far into the night sky. ", "album_id": "72157605997253353", "photo_flickr_id": "2639543307", "setting": "first-2-pick-and-tell", "worker_id": "CELDONB3UMVTUU3", "story_id": "45921", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them are two toned and reach far into the night sky .", "storylet_id": "229607"}], [{"original_text": "Some burst into a blossom like a flower. ", "album_id": "72157605997253353", "photo_flickr_id": "2640365112", "setting": "first-2-pick-and-tell", "worker_id": "CELDONB3UMVTUU3", "story_id": "45921", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some burst into a blossom like a flower .", "storylet_id": "229608"}], [{"original_text": "The fireworks that look like a star are my personal favorite.", "album_id": "72157605997253353", "photo_flickr_id": "2640373568", "setting": "first-2-pick-and-tell", "worker_id": "CELDONB3UMVTUU3", "story_id": "45921", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fireworks that look like a star are my personal favorite .", "storylet_id": "229609"}], [{"original_text": "My son Ron wanted to watch the fireworks. The white ones are so cool mom! ", "album_id": "72157605997253353", "photo_flickr_id": "2640358274", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45922", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my son [male] wanted to watch the fireworks . the white ones are so cool mom !", "storylet_id": "229610"}], [{"original_text": "He cheered when the green and pink ones exploded. ", "album_id": "72157605997253353", "photo_flickr_id": "2639543307", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45922", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he cheered when the green and pink ones exploded .", "storylet_id": "229611"}], [{"original_text": "Next up was the bright blue and whites. He was in awe. ", "album_id": "72157605997253353", "photo_flickr_id": "2640365448", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45922", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next up was the bright blue and whites . he was in awe .", "storylet_id": "229612"}], [{"original_text": "After the blue was the pinks. I'm lucky I got this one as they exploded so fast. ", "album_id": "72157605997253353", "photo_flickr_id": "2639540151", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45922", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the blue was the pinks . i 'm lucky i got this one as they exploded so fast .", "storylet_id": "229613"}], [{"original_text": "The grand finale was so amazing, so bright and so loud. We held our ears and giggled. ", "album_id": "72157605997253353", "photo_flickr_id": "2640374178", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "45922", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the grand finale was so amazing , so bright and so loud . we held our ears and giggled .", "storylet_id": "229614"}], [{"original_text": "Last Monday I bought a new camera.", "album_id": "72157605997253353", "photo_flickr_id": "2640358274", "setting": "last-3-pick-old-and-tell", "worker_id": "0OKLVVFCFAHN32Q", "story_id": "45923", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last monday i bought a new camera .", "storylet_id": "229615"}], [{"original_text": "I thought that the local 4th of July fireworks display would be a good time to try it out.", "album_id": "72157605997253353", "photo_flickr_id": "2640358974", "setting": "last-3-pick-old-and-tell", "worker_id": "0OKLVVFCFAHN32Q", "story_id": "45923", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i thought that the local 4th of july fireworks display would be a good time to try it out .", "storylet_id": "229616"}], [{"original_text": "I can adjust the shutter speed to give a blurry effect", "album_id": "72157605997253353", "photo_flickr_id": "2639543307", "setting": "last-3-pick-old-and-tell", "worker_id": "0OKLVVFCFAHN32Q", "story_id": "45923", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i can adjust the shutter speed to give a blurry effect", "storylet_id": "229617"}], [{"original_text": "Colors show up great even in the dark!", "album_id": "72157605997253353", "photo_flickr_id": "2640365112", "setting": "last-3-pick-old-and-tell", "worker_id": "0OKLVVFCFAHN32Q", "story_id": "45923", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "colors show up great even in the dark !", "storylet_id": "229618"}], [{"original_text": "It's also got a sport setting to let me take action shots!", "album_id": "72157605997253353", "photo_flickr_id": "2640373568", "setting": "last-3-pick-old-and-tell", "worker_id": "0OKLVVFCFAHN32Q", "story_id": "45923", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's also got a sport setting to let me take action shots !", "storylet_id": "229619"}], [{"original_text": "We went to check out a local fireworks show this past weekend. This first explosion was pretty generic.", "album_id": "72157605997253353", "photo_flickr_id": "2640358274", "setting": "last-3-pick-old-and-tell", "worker_id": "6QK8X2ZLWMD52Y0", "story_id": "45924", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to check out a local fireworks show this past weekend . this first explosion was pretty generic .", "storylet_id": "229620"}], [{"original_text": "This explosion was a bit cooler. It looks like waves of electricity.", "album_id": "72157605997253353", "photo_flickr_id": "2639543307", "setting": "last-3-pick-old-and-tell", "worker_id": "6QK8X2ZLWMD52Y0", "story_id": "45924", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this explosion was a bit cooler . it looks like waves of electricity .", "storylet_id": "229621"}], [{"original_text": "This blue one reminds me of one of those plasma ball lamps that you can touch.", "album_id": "72157605997253353", "photo_flickr_id": "2640365448", "setting": "last-3-pick-old-and-tell", "worker_id": "6QK8X2ZLWMD52Y0", "story_id": "45924", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this blue one reminds me of one of those plasma ball lamps that you can touch .", "storylet_id": "229622"}], [{"original_text": "This red one was pretty similar to the blue one but was a little brighter.", "album_id": "72157605997253353", "photo_flickr_id": "2639540151", "setting": "last-3-pick-old-and-tell", "worker_id": "6QK8X2ZLWMD52Y0", "story_id": "45924", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this red one was pretty similar to the blue one but was a little brighter .", "storylet_id": "229623"}], [{"original_text": "The show ended with an exciting array of multiple explosions. The show wasn't spectacular, but we couldn't complain because the show was free.", "album_id": "72157605997253353", "photo_flickr_id": "2640374178", "setting": "last-3-pick-old-and-tell", "worker_id": "6QK8X2ZLWMD52Y0", "story_id": "45924", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the show ended with an exciting array of multiple explosions . the show was n't spectacular , but we could n't complain because the show was free .", "storylet_id": "229624"}], [{"original_text": "They decided to take the kids for their first fireworks show on July 4th.", "album_id": "72157620996064968", "photo_flickr_id": "3694350550", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45925", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they decided to take the kids for their first fireworks show on july 4th .", "storylet_id": "229625"}], [{"original_text": "The colors were very bright.", "album_id": "72157620996064968", "photo_flickr_id": "3691598980", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45925", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the colors were very bright .", "storylet_id": "229626"}], [{"original_text": "He enjoyed them very much, even with his ear protectors on.", "album_id": "72157620996064968", "photo_flickr_id": "3694351198", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45925", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he enjoyed them very much , even with his ear protectors on .", "storylet_id": "229627"}], [{"original_text": "The show was coming to an end.", "album_id": "72157620996064968", "photo_flickr_id": "3690803821", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45925", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the show was coming to an end .", "storylet_id": "229628"}], [{"original_text": "It was a great display, and even the baby was happy they went. ", "album_id": "72157620996064968", "photo_flickr_id": "3694352398", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "45925", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great display , and even the baby was happy they went .", "storylet_id": "229629"}], [{"original_text": "We took the kids to watch the fireworks at night.", "album_id": "72157620996064968", "photo_flickr_id": "3694350550", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45926", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took the kids to watch the fireworks at night .", "storylet_id": "229630"}], [{"original_text": "They had lots of fun looking at the different colors.", "album_id": "72157620996064968", "photo_flickr_id": "3690932194", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45926", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had lots of fun looking at the different colors .", "storylet_id": "229631"}], [{"original_text": "They covered their ears to protect them from the loud noises.", "album_id": "72157620996064968", "photo_flickr_id": "3694351198", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45926", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they covered their ears to protect them from the loud noises .", "storylet_id": "229632"}], [{"original_text": "The show finally came to an end.", "album_id": "72157620996064968", "photo_flickr_id": "3691612846", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45926", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the show finally came to an end .", "storylet_id": "229633"}], [{"original_text": "The kids were ready to go to bed after the beautiful show.", "album_id": "72157620996064968", "photo_flickr_id": "3694352398", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "45926", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids were ready to go to bed after the beautiful show .", "storylet_id": "229634"}], [{"original_text": "The family took the baby to his first fireworks show.", "album_id": "72157620996064968", "photo_flickr_id": "3694350550", "setting": "last-3-pick-old-and-tell", "worker_id": "WF9SCYQ4WWRT046", "story_id": "45927", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family took the baby to his first fireworks show .", "storylet_id": "229635"}], [{"original_text": "There were many amazing colors.", "album_id": "72157620996064968", "photo_flickr_id": "3690932194", "setting": "last-3-pick-old-and-tell", "worker_id": "WF9SCYQ4WWRT046", "story_id": "45927", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many amazing colors .", "storylet_id": "229636"}], [{"original_text": "It was baby's big brother's fifth time going, they have been taking him since he was a smaller child as well.", "album_id": "72157620996064968", "photo_flickr_id": "3694351198", "setting": "last-3-pick-old-and-tell", "worker_id": "WF9SCYQ4WWRT046", "story_id": "45927", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was baby 's big brother 's fifth time going , they have been taking him since he was a smaller child as well .", "storylet_id": "229637"}], [{"original_text": "More pretty colors and shapes.", "album_id": "72157620996064968", "photo_flickr_id": "3691612846", "setting": "last-3-pick-old-and-tell", "worker_id": "WF9SCYQ4WWRT046", "story_id": "45927", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more pretty colors and shapes .", "storylet_id": "229638"}], [{"original_text": "It's safe to say baby enjoyed himself.", "album_id": "72157620996064968", "photo_flickr_id": "3694352398", "setting": "last-3-pick-old-and-tell", "worker_id": "WF9SCYQ4WWRT046", "story_id": "45927", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's safe to say baby enjoyed himself .", "storylet_id": "229639"}], [{"original_text": "I absolutely hate the 4th of July.", "album_id": "72157620996064968", "photo_flickr_id": "3694350550", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "45928", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i absolutely hate the 4th of july .", "storylet_id": "229640"}], [{"original_text": "Every year we have to sit and watch these ugly, loud sparks in the sky.", "album_id": "72157620996064968", "photo_flickr_id": "3691598980", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "45928", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "every year we have to sit and watch these ugly , loud sparks in the sky .", "storylet_id": "229641"}], [{"original_text": "The kids seem to love it so I give in and take them to see them even though I don't want to.", "album_id": "72157620996064968", "photo_flickr_id": "3694351198", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "45928", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids seem to love it so i give in and take them to see them even though i do n't want to .", "storylet_id": "229642"}], [{"original_text": "I've never understood the point.", "album_id": "72157620996064968", "photo_flickr_id": "3690803821", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "45928", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 've never understood the point .", "storylet_id": "229643"}], [{"original_text": "I'm glad it's over and there's a whole year before I have to do it again.", "album_id": "72157620996064968", "photo_flickr_id": "3694352398", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "45928", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm glad it 's over and there 's a whole year before i have to do it again .", "storylet_id": "229644"}], [{"original_text": "A mother and her child await the fireworks. The baby wears headphones as protection.", "album_id": "72157620996064968", "photo_flickr_id": "3694350550", "setting": "last-3-pick-old-and-tell", "worker_id": "3V304BAXBSHWMYZ", "story_id": "45929", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a mother and her child await the fireworks . the baby wears headphones as protection .", "storylet_id": "229645"}], [{"original_text": "The fireworks have started and they are filling the sky.", "album_id": "72157620996064968", "photo_flickr_id": "3691598980", "setting": "last-3-pick-old-and-tell", "worker_id": "3V304BAXBSHWMYZ", "story_id": "45929", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fireworks have started and they are filling the sky .", "storylet_id": "229646"}], [{"original_text": "Th babies brother watches on as well and enjoys the fireworks. He to wears headphones so it's not to loud.", "album_id": "72157620996064968", "photo_flickr_id": "3694351198", "setting": "last-3-pick-old-and-tell", "worker_id": "3V304BAXBSHWMYZ", "story_id": "45929", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "th babies brother watches on as well and enjoys the fireworks . he to wears headphones so it 's not to loud .", "storylet_id": "229647"}], [{"original_text": "The fireworks are nearly over, but still look awesome. ", "album_id": "72157620996064968", "photo_flickr_id": "3690803821", "setting": "last-3-pick-old-and-tell", "worker_id": "3V304BAXBSHWMYZ", "story_id": "45929", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fireworks are nearly over , but still look awesome .", "storylet_id": "229648"}], [{"original_text": "The littlest one of the group enjoys them as he looks upon the fireworks.", "album_id": "72157620996064968", "photo_flickr_id": "3694352398", "setting": "last-3-pick-old-and-tell", "worker_id": "3V304BAXBSHWMYZ", "story_id": "45929", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the littlest one of the group enjoys them as he looks upon the fireworks .", "storylet_id": "229649"}], [{"original_text": "Duke was excited for 4th of July.", "album_id": "72157624440382340", "photo_flickr_id": "4769801777", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "45930", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "duke was excited for 4th of july .", "storylet_id": "229650"}], [{"original_text": "He couldn't wait to spend it with his owner, Jane, and his brother, Sparky.", "album_id": "72157624440382340", "photo_flickr_id": "4769802729", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "45930", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he could n't wait to spend it with his owner , [female] , and his brother , sparky .", "storylet_id": "229651"}], [{"original_text": "And then the fireworks began...", "album_id": "72157624440382340", "photo_flickr_id": "4769803479", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "45930", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and then the fireworks began ...", "storylet_id": "229652"}], [{"original_text": "They were so loud that they scared Sparky!", "album_id": "72157624440382340", "photo_flickr_id": "4769803851", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "45930", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were so loud that they scared sparky !", "storylet_id": "229653"}], [{"original_text": "He ran inside, and Jane had to go find him and hold him tightly to calm him down. Duke wasn't scared, though. He loved the fireworks and couldn't wait for the next time he could watch those bright explosions high in the sky. ", "album_id": "72157624440382340", "photo_flickr_id": "4769803123", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "45930", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he ran inside , and [female] had to go find him and hold him tightly to calm him down . duke was n't scared , though . he loved the fireworks and could n't wait for the next time he could watch those bright explosions high in the sky .", "storylet_id": "229654"}], [{"original_text": "These are my dogs Sparky and Leo.", "album_id": "72157624440382340", "photo_flickr_id": "4769802173", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "45931", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these are my dogs sparky and [male] .", "storylet_id": "229655"}], [{"original_text": "I really love my dogs, having lived with both of them since I was a child.", "album_id": "72157624440382340", "photo_flickr_id": "4769802729", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "45931", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i really love my dogs , having lived with both of them since i was a child .", "storylet_id": "229656"}], [{"original_text": "Usually on the 4th of July they're a little scared of the fireworks.", "album_id": "72157624440382340", "photo_flickr_id": "4769803479", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "45931", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "usually on the 4th of july they 're a little scared of the fireworks .", "storylet_id": "229657"}], [{"original_text": "This year, though, they're not scared at all -- they're finally used to it.", "album_id": "72157624440382340", "photo_flickr_id": "4770444660", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "45931", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this year , though , they 're not scared at all -- they 're finally used to it .", "storylet_id": "229658"}], [{"original_text": "I've been torturing them with gunpowder for a week!", "album_id": "72157624440382340", "photo_flickr_id": "4769803123", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "45931", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 've been torturing them with gunpowder for a week !", "storylet_id": "229659"}], [{"original_text": "Duchess was all decked out for the fireworks viewing party.", "album_id": "72157624440382340", "photo_flickr_id": "4769801777", "setting": "last-3-pick-old-and-tell", "worker_id": "BY9B8JSSKF09K2H", "story_id": "45932", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "duchess was all decked out for the fireworks viewing party .", "storylet_id": "229660"}], [{"original_text": "Jamie giving Buster some lovin'.", "album_id": "72157624440382340", "photo_flickr_id": "4769802729", "setting": "last-3-pick-old-and-tell", "worker_id": "BY9B8JSSKF09K2H", "story_id": "45932", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] giving buster some lovin ' .", "storylet_id": "229661"}], [{"original_text": "The fireworks were awesome, as always.", "album_id": "72157624440382340", "photo_flickr_id": "4769803479", "setting": "last-3-pick-old-and-tell", "worker_id": "BY9B8JSSKF09K2H", "story_id": "45932", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fireworks were awesome , as always .", "storylet_id": "229662"}], [{"original_text": "I couldn't believe how close we were to the fireworks.", "album_id": "72157624440382340", "photo_flickr_id": "4769803851", "setting": "last-3-pick-old-and-tell", "worker_id": "BY9B8JSSKF09K2H", "story_id": "45932", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i could n't believe how close we were to the fireworks .", "storylet_id": "229663"}], [{"original_text": "Jamie took a selfie with Buster after the fireworks.", "album_id": "72157624440382340", "photo_flickr_id": "4769803123", "setting": "last-3-pick-old-and-tell", "worker_id": "BY9B8JSSKF09K2H", "story_id": "45932", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] took a selfie with buster after the fireworks .", "storylet_id": "229664"}], [{"original_text": "The dog posed proudly in ", "album_id": "72157624440382340", "photo_flickr_id": "4769801777", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "45933", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dog posed proudly in", "storylet_id": "229665"}], [{"original_text": "The women loved her dogs, and she made sure to show them that through hugs.", "album_id": "72157624440382340", "photo_flickr_id": "4769802729", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "45933", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the women loved her dogs , and she made sure to show them that through hugs .", "storylet_id": "229666"}], [{"original_text": "The fireworks were all different colors. ", "album_id": "72157624440382340", "photo_flickr_id": "4769803479", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "45933", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fireworks were all different colors .", "storylet_id": "229667"}], [{"original_text": "The fireworks were a great sight to see.", "album_id": "72157624440382340", "photo_flickr_id": "4769803851", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "45933", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fireworks were a great sight to see .", "storylet_id": "229668"}], [{"original_text": "The women was happy to receive kisses from her dog.", "album_id": "72157624440382340", "photo_flickr_id": "4769803123", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "45933", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the women was happy to receive kisses from her dog .", "storylet_id": "229669"}], [{"original_text": "The group of friends brought their dogs to see the fireworks with them.", "album_id": "72157624440382340", "photo_flickr_id": "4769801777", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "45934", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group of friends brought their dogs to see the fireworks with them .", "storylet_id": "229670"}], [{"original_text": "They are very excited for the upcoming festivities.", "album_id": "72157624440382340", "photo_flickr_id": "4769802729", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "45934", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are very excited for the upcoming festivities .", "storylet_id": "229671"}], [{"original_text": " The fireworks start out small and get larger.", "album_id": "72157624440382340", "photo_flickr_id": "4769803479", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "45934", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fireworks start out small and get larger .", "storylet_id": "229672"}], [{"original_text": "The next one is quite a display with shimmering silver.", "album_id": "72157624440382340", "photo_flickr_id": "4769803851", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "45934", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next one is quite a display with shimmering silver .", "storylet_id": "229673"}], [{"original_text": "The woman is happy with her dog.", "album_id": "72157624440382340", "photo_flickr_id": "4769803123", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "45934", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the woman is happy with her dog .", "storylet_id": "229674"}], [{"original_text": "Lacey, a newlywed, is having her first 4th of July party at her new home. She laughs at Terry's joke.", "album_id": "72157627235661874", "photo_flickr_id": "5942390539", "setting": "first-2-pick-and-tell", "worker_id": "ENDOM45YWF9I7BU", "story_id": "45935", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] , a newlywed , is having her first 4th of july party at her new home . she laughs at [male] 's joke .", "storylet_id": "229675"}], [{"original_text": "Terry, her husband, waits patiently for the food to be done.", "album_id": "72157627235661874", "photo_flickr_id": "5942391187", "setting": "first-2-pick-and-tell", "worker_id": "ENDOM45YWF9I7BU", "story_id": "45935", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] , her husband , waits patiently for the food to be done .", "storylet_id": "229676"}], [{"original_text": "Lacey made an American flag cake for the occasion!", "album_id": "72157627235661874", "photo_flickr_id": "5942389953", "setting": "first-2-pick-and-tell", "worker_id": "ENDOM45YWF9I7BU", "story_id": "45935", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] made an american flag cake for the occasion !", "storylet_id": "229677"}], [{"original_text": "The first of the backyard fireworks. This was a smaller firework, just to start the night.", "album_id": "72157627235661874", "photo_flickr_id": "5956136988", "setting": "first-2-pick-and-tell", "worker_id": "ENDOM45YWF9I7BU", "story_id": "45935", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the first of the backyard fireworks . this was a smaller firework , just to start the night .", "storylet_id": "229678"}], [{"original_text": "Later into the display, Terry lights up this firework that explodes in many small bursts. Lacey loves the display.", "album_id": "72157627235661874", "photo_flickr_id": "5955579077", "setting": "first-2-pick-and-tell", "worker_id": "ENDOM45YWF9I7BU", "story_id": "45935", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later into the display , [male] lights up this firework that explodes in many small bursts . [female] loves the display .", "storylet_id": "229679"}], [{"original_text": "A perfect 4th of July begins with friends and family.", "album_id": "72157627235661874", "photo_flickr_id": "5942390539", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "45936", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a perfect 4th of july begins with friends and family .", "storylet_id": "229680"}], [{"original_text": "And the most patriotic cake you can find, of course.", "album_id": "72157627235661874", "photo_flickr_id": "5942389953", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "45936", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the most patriotic cake you can find , of course .", "storylet_id": "229681"}], [{"original_text": "It's usually not difficult to find a person's love for their country when American flag cake is involved.", "album_id": "72157627235661874", "photo_flickr_id": "5942391187", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "45936", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's usually not difficult to find a person 's love for their country when american flag cake is involved .", "storylet_id": "229682"}], [{"original_text": "If that should fail, break out the fireworks.", "album_id": "72157627235661874", "photo_flickr_id": "5956136988", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "45936", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "if that should fail , break out the fireworks .", "storylet_id": "229683"}], [{"original_text": "They're sure to win anyone over.", "album_id": "72157627235661874", "photo_flickr_id": "5955579077", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "45936", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they 're sure to win anyone over .", "storylet_id": "229684"}], [{"original_text": "I'm going to sit back and wait for the fireworks display. ", "album_id": "72157627235661874", "photo_flickr_id": "5942390539", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "45937", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 'm going to sit back and wait for the fireworks display .", "storylet_id": "229685"}], [{"original_text": "That's the same idea I had. This is boring though. ", "album_id": "72157627235661874", "photo_flickr_id": "5942391187", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "45937", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that 's the same idea i had . this is boring though .", "storylet_id": "229686"}], [{"original_text": "Ooh cake. How did they make a flag on each slice? Awesome!", "album_id": "72157627235661874", "photo_flickr_id": "5942389953", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "45937", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "ooh cake . how did they make a flag on each slice ? awesome !", "storylet_id": "229687"}], [{"original_text": "The fireworks are about to begin. ", "album_id": "72157627235661874", "photo_flickr_id": "5956136988", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "45937", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fireworks are about to begin .", "storylet_id": "229688"}], [{"original_text": "There they go!", "album_id": "72157627235661874", "photo_flickr_id": "5955579077", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "45937", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there they go !", "storylet_id": "229689"}], [{"original_text": "Getting together for the 4th of July is a yearly occurrence.", "album_id": "72157627235661874", "photo_flickr_id": "5942390539", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45938", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting together for the 4th of july is a yearly occurrence .", "storylet_id": "229690"}], [{"original_text": "Meek was glad to be there.", "album_id": "72157627235661874", "photo_flickr_id": "5942391187", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45938", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "meek was glad to be there .", "storylet_id": "229691"}], [{"original_text": "The cake was so good.", "album_id": "72157627235661874", "photo_flickr_id": "5942389953", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45938", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cake was so good .", "storylet_id": "229692"}], [{"original_text": "Our fireworks were a dud though.", "album_id": "72157627235661874", "photo_flickr_id": "5956136988", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45938", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our fireworks were a dud though .", "storylet_id": "229693"}], [{"original_text": "They did end up doing great later.", "album_id": "72157627235661874", "photo_flickr_id": "5955579077", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "45938", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they did end up doing great later .", "storylet_id": "229694"}], [{"original_text": "Aunt Carole laughed at her nieces and nephews having fun in the pool. ", "album_id": "72157627235661874", "photo_flickr_id": "5942390539", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "45939", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "aunt [female] laughed at her nieces and nephews having fun in the pool .", "storylet_id": "229695"}], [{"original_text": "Uncle Benny was out of it after eating three plates of food.", "album_id": "72157627235661874", "photo_flickr_id": "5942391187", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "45939", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "uncle [male] was out of it after eating three plates of food .", "storylet_id": "229696"}], [{"original_text": "The cake which was designed as the American flag was very delicious.", "album_id": "72157627235661874", "photo_flickr_id": "5942389953", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "45939", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cake which was designed as the american flag was very delicious .", "storylet_id": "229697"}], [{"original_text": " The family made sure to keep everyone safe when lighting the fireworks. ", "album_id": "72157627235661874", "photo_flickr_id": "5956136988", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "45939", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family made sure to keep everyone safe when lighting the fireworks .", "storylet_id": "229698"}], [{"original_text": "One of the best fireworks of the night concluded the family festivities.", "album_id": "72157627235661874", "photo_flickr_id": "5955579077", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "45939", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of the best fireworks of the night concluded the family festivities .", "storylet_id": "229699"}], [{"original_text": "The kids arrived early to register for the event. ", "album_id": "72157627101810461", "photo_flickr_id": "5951382735", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "45940", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids arrived early to register for the event .", "storylet_id": "229700"}], [{"original_text": "Some girls sold candy. ", "album_id": "72157627101810461", "photo_flickr_id": "5951383939", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "45940", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some girls sold candy .", "storylet_id": "229701"}], [{"original_text": "They got their faces painted. ", "album_id": "72157627101810461", "photo_flickr_id": "5951939538", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "45940", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they got their faces painted .", "storylet_id": "229702"}], [{"original_text": "This boy wanted to be a tiger. ", "album_id": "72157627101810461", "photo_flickr_id": "5951938350", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "45940", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this boy wanted to be a tiger .", "storylet_id": "229703"}], [{"original_text": "Everyone had fun at the event. ", "album_id": "72157627101810461", "photo_flickr_id": "5951384653", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "45940", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had fun at the event .", "storylet_id": "229704"}], [{"original_text": "It was a perfect day for face painting!", "album_id": "72157627101810461", "photo_flickr_id": "5951383787", "setting": "first-2-pick-and-tell", "worker_id": "DF0G5QAIPRTNTSI", "story_id": "45941", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a perfect day for face painting !", "storylet_id": "229705"}], [{"original_text": "We started off with ladybugs on some of the girls.", "album_id": "72157627101810461", "photo_flickr_id": "5951939538", "setting": "first-2-pick-and-tell", "worker_id": "DF0G5QAIPRTNTSI", "story_id": "45941", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started off with ladybugs on some of the girls .", "storylet_id": "229706"}], [{"original_text": "Then we moved on to whiskers and eyebrows on some of the boys.", "album_id": "72157627101810461", "photo_flickr_id": "5951939838", "setting": "first-2-pick-and-tell", "worker_id": "DF0G5QAIPRTNTSI", "story_id": "45941", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we moved on to whiskers and eyebrows on some of the boys .", "storylet_id": "229707"}], [{"original_text": "While the kids waited, they tried out our great bouncy castle.", "album_id": "72157627101810461", "photo_flickr_id": "5951384653", "setting": "first-2-pick-and-tell", "worker_id": "DF0G5QAIPRTNTSI", "story_id": "45941", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while the kids waited , they tried out our great bouncy castle .", "storylet_id": "229708"}], [{"original_text": "It was fun for everyone, and everyone was involved!", "album_id": "72157627101810461", "photo_flickr_id": "5951941600", "setting": "first-2-pick-and-tell", "worker_id": "DF0G5QAIPRTNTSI", "story_id": "45941", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was fun for everyone , and everyone was involved !", "storylet_id": "229709"}], [{"original_text": "The fundraiser started off slowly, with just a few people coming to it.", "album_id": "72157627101810461", "photo_flickr_id": "5951382735", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45942", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fundraiser started off slowly , with just a few people coming to it .", "storylet_id": "229710"}], [{"original_text": "As the day wore on, the treats came out for the children.", "album_id": "72157627101810461", "photo_flickr_id": "5951383939", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45942", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the day wore on , the treats came out for the children .", "storylet_id": "229711"}], [{"original_text": "There was face painting as well.", "album_id": "72157627101810461", "photo_flickr_id": "5951939538", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45942", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was face painting as well .", "storylet_id": "229712"}], [{"original_text": "Some children wanted some interesting face paints, like the little boy who wanted to be a tiger.", "album_id": "72157627101810461", "photo_flickr_id": "5951938350", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45942", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some children wanted some interesting face paints , like the little boy who wanted to be a tiger .", "storylet_id": "229713"}], [{"original_text": "Then the bouncy castle came out and all the kids ran into it, especially the boys.", "album_id": "72157627101810461", "photo_flickr_id": "5951384653", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45942", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then the bouncy castle came out and all the kids ran into it , especially the boys .", "storylet_id": "229714"}], [{"original_text": "The local fair was so much fun!", "album_id": "72157627101810461", "photo_flickr_id": "5951383787", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45943", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the local fair was so much fun !", "storylet_id": "229715"}], [{"original_text": "There was free face painting for the children.", "album_id": "72157627101810461", "photo_flickr_id": "5951939538", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45943", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was free face painting for the children .", "storylet_id": "229716"}], [{"original_text": "This boy had his face painted like a cat.", "album_id": "72157627101810461", "photo_flickr_id": "5951939838", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45943", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this boy had his face painted like a cat .", "storylet_id": "229717"}], [{"original_text": "Lots of kids played in the moon bounce.", "album_id": "72157627101810461", "photo_flickr_id": "5951384653", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45943", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "lots of kids played in the moon bounce .", "storylet_id": "229718"}], [{"original_text": "A group of children sat in a vehicle, on display from the local car dealership.", "album_id": "72157627101810461", "photo_flickr_id": "5951941600", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45943", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a group of children sat in a vehicle , on display from the local car dealership .", "storylet_id": "229719"}], [{"original_text": "The table had ladies in green shirts", "album_id": "72157627101810461", "photo_flickr_id": "5951382735", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "45944", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the table had ladies in green shirts", "storylet_id": "229720"}], [{"original_text": "and girls selling candy.", "album_id": "72157627101810461", "photo_flickr_id": "5951383939", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "45944", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and girls selling candy .", "storylet_id": "229721"}], [{"original_text": "They were painting faces", "album_id": "72157627101810461", "photo_flickr_id": "5951939538", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "45944", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were painting faces", "storylet_id": "229722"}], [{"original_text": "in many different designs", "album_id": "72157627101810461", "photo_flickr_id": "5951938350", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "45944", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in many different designs", "storylet_id": "229723"}], [{"original_text": "and they also had a bouncy house.", "album_id": "72157627101810461", "photo_flickr_id": "5951384653", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "45944", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they also had a bouncy house .", "storylet_id": "229724"}], [{"original_text": "He had many black and white photos.", "album_id": "72157625632178504", "photo_flickr_id": "5274332425", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "45945", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he had many black and white photos .", "storylet_id": "229725"}], [{"original_text": "Some of them were of family.", "album_id": "72157625632178504", "photo_flickr_id": "5274949298", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "45945", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of them were of family .", "storylet_id": "229726"}], [{"original_text": "Many of them were of baseball.", "album_id": "72157625632178504", "photo_flickr_id": "5274953500", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "45945", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many of them were of baseball .", "storylet_id": "229727"}], [{"original_text": "He had a few players he idolized.", "album_id": "72157625632178504", "photo_flickr_id": "5274957686", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "45945", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he had a few players he idolized .", "storylet_id": "229728"}], [{"original_text": "He was an avid fan of sport.", "album_id": "72157625632178504", "photo_flickr_id": "5274953488", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "45945", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was an avid fan of sport .", "storylet_id": "229729"}], [{"original_text": "I went to the baseball game today.", "album_id": "72157625632178504", "photo_flickr_id": "5274332441", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45946", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the baseball game today .", "storylet_id": "229730"}], [{"original_text": "There were some great players there.", "album_id": "72157625632178504", "photo_flickr_id": "5274332419", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45946", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were some great players there .", "storylet_id": "229731"}], [{"original_text": "One of them was injured during play.", "album_id": "72157625632178504", "photo_flickr_id": "5274953500", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45946", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of them was injured during play .", "storylet_id": "229732"}], [{"original_text": "He had to go to the hospital.", "album_id": "72157625632178504", "photo_flickr_id": "5274953496", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45946", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he had to go to the hospital .", "storylet_id": "229733"}], [{"original_text": "Afterward we all went to a banquet.", "album_id": "72157625632178504", "photo_flickr_id": "5274953488", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45946", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we all went to a banquet .", "storylet_id": "229734"}], [{"original_text": "A baseball player hits a home run.", "album_id": "72157625632178504", "photo_flickr_id": "5274332441", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "45947", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a baseball player hits a home run .", "storylet_id": "229735"}], [{"original_text": "His teammates look on in awe.", "album_id": "72157625632178504", "photo_flickr_id": "5274332419", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "45947", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his teammates look on in awe .", "storylet_id": "229736"}], [{"original_text": "Shortly after, he falls down gripping his chest in pain.", "album_id": "72157625632178504", "photo_flickr_id": "5274953500", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "45947", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "shortly after , he falls down gripping his chest in pain .", "storylet_id": "229737"}], [{"original_text": "They take him to the hospital and realize he had a heart attack. The owners of the team come to check on him.", "album_id": "72157625632178504", "photo_flickr_id": "5274953496", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "45947", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they take him to the hospital and realize he had a heart attack . the owners of the team come to check on him .", "storylet_id": "229738"}], [{"original_text": "After the heart attack weakened him, he could no longer play anymore, and he decided to become a motivational speaker instead.", "album_id": "72157625632178504", "photo_flickr_id": "5274953488", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "45947", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the heart attack weakened him , he could no longer play anymore , and he decided to become a motivational speaker instead .", "storylet_id": "229739"}], [{"original_text": "The game is timeless and it is necessary to pass the tradition to the youth.", "album_id": "72157625632178504", "photo_flickr_id": "5274332425", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45948", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the game is timeless and it is necessary to pass the tradition to the youth .", "storylet_id": "229740"}], [{"original_text": "They were excited for the first pitch of the day to begin.", "album_id": "72157625632178504", "photo_flickr_id": "5274949298", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45948", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were excited for the first pitch of the day to begin .", "storylet_id": "229741"}], [{"original_text": "The umpire carefully studies the outcome to make the proper call.", "album_id": "72157625632178504", "photo_flickr_id": "5274953500", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45948", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the umpire carefully studies the outcome to make the proper call .", "storylet_id": "229742"}], [{"original_text": "With great victory comes sweet glory.", "album_id": "72157625632178504", "photo_flickr_id": "5274957686", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45948", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with great victory comes sweet glory .", "storylet_id": "229743"}], [{"original_text": "The demonstration captivated the crowd.", "album_id": "72157625632178504", "photo_flickr_id": "5274953488", "setting": "last-3-pick-old-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "45948", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the demonstration captivated the crowd .", "storylet_id": "229744"}], [{"original_text": "My grandpa was a great baseball player.", "album_id": "72157625632178504", "photo_flickr_id": "5274332441", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "45949", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my grandpa was a great baseball player .", "storylet_id": "229745"}], [{"original_text": "He had a very long career in the sport.", "album_id": "72157625632178504", "photo_flickr_id": "5274332419", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "45949", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he had a very long career in the sport .", "storylet_id": "229746"}], [{"original_text": "He was even injured once but it didn't stop him.", "album_id": "72157625632178504", "photo_flickr_id": "5274953500", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "45949", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was even injured once but it did n't stop him .", "storylet_id": "229747"}], [{"original_text": "His whole team came to see him in the hospital.", "album_id": "72157625632178504", "photo_flickr_id": "5274953496", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "45949", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his whole team came to see him in the hospital .", "storylet_id": "229748"}], [{"original_text": "He even made it in to the hall of fame!", "album_id": "72157625632178504", "photo_flickr_id": "5274953488", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "45949", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he even made it in to the hall of fame !", "storylet_id": "229749"}], [{"original_text": "When the day started, these men began working on the cathedral.", "album_id": "72157627256006852", "photo_flickr_id": "5964210041", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "45950", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when the day started , these men began working on the cathedral .", "storylet_id": "229750"}], [{"original_text": "They installed a frame to structure the clock.", "album_id": "72157627256006852", "photo_flickr_id": "5964767700", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "45950", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they installed a frame to structure the clock .", "storylet_id": "229751"}], [{"original_text": "These two men wasted most of their time and worked very little.", "album_id": "72157627256006852", "photo_flickr_id": "5964768114", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "45950", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these two men wasted most of their time and worked very little .", "storylet_id": "229752"}], [{"original_text": "They were replaced by two other workers who worked quickly.", "album_id": "72157627256006852", "photo_flickr_id": "5964768424", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "45950", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were replaced by two other workers who worked quickly .", "storylet_id": "229753"}], [{"original_text": "They were almost finished with the clock by night time.", "album_id": "72157627256006852", "photo_flickr_id": "5964211573", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "45950", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were almost finished with the clock by night time .", "storylet_id": "229754"}], [{"original_text": "The clock in the tower was overdue for restoration.", "album_id": "72157627256006852", "photo_flickr_id": "5964210041", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "45951", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the clock in the tower was overdue for restoration .", "storylet_id": "229755"}], [{"original_text": "The workers removed the temporary center of the clock face.", "album_id": "72157627256006852", "photo_flickr_id": "5964210171", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "45951", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the workers removed the temporary center of the clock face .", "storylet_id": "229756"}], [{"original_text": "Finally, it comes free and the workers can move on to the next step.", "album_id": "72157627256006852", "photo_flickr_id": "5964767550", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "45951", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally , it comes free and the workers can move on to the next step .", "storylet_id": "229757"}], [{"original_text": "Working on the scaffolding outside is scary, but necessary to get access to the clock face.", "album_id": "72157627256006852", "photo_flickr_id": "5964768114", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "45951", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "working on the scaffolding outside is scary , but necessary to get access to the clock face .", "storylet_id": "229758"}], [{"original_text": "We can't wait to see the clock when its fully restored.", "album_id": "72157627256006852", "photo_flickr_id": "5964768424", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "45951", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ca n't wait to see the clock when its fully restored .", "storylet_id": "229759"}], [{"original_text": "Getting ready to take apart the clock for the upgrade.", "album_id": "72157627256006852", "photo_flickr_id": "5964210041", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "45952", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting ready to take apart the clock for the upgrade .", "storylet_id": "229760"}], [{"original_text": "All equipment in placed and now beginning to that the clock apart. ", "album_id": "72157627256006852", "photo_flickr_id": "5964210171", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "45952", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all equipment in placed and now beginning to that the clock apart .", "storylet_id": "229761"}], [{"original_text": "We have gotten the clock down now we can take it for its upgrade. ", "album_id": "72157627256006852", "photo_flickr_id": "5964767550", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "45952", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we have gotten the clock down now we can take it for its upgrade .", "storylet_id": "229762"}], [{"original_text": "Upgrade completed now we can proceed to replace the clock back up. ", "album_id": "72157627256006852", "photo_flickr_id": "5964768114", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "45952", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "upgrade completed now we can proceed to replace the clock back up .", "storylet_id": "229763"}], [{"original_text": "Almost finished with replacing the upgraded clock back in place. ", "album_id": "72157627256006852", "photo_flickr_id": "5964768424", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "45952", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "almost finished with replacing the upgraded clock back in place .", "storylet_id": "229764"}], [{"original_text": "The clock tower was in desperate need of repair. The scaffolding was the first step. ", "album_id": "72157627256006852", "photo_flickr_id": "5964210041", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "45953", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the clock tower was in desperate need of repair . the scaffolding was the first step .", "storylet_id": "229765"}], [{"original_text": "Everything needed to be properly braced. ", "album_id": "72157627256006852", "photo_flickr_id": "5964767700", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "45953", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything needed to be properly braced .", "storylet_id": "229766"}], [{"original_text": "It was slow and difficult work. ", "album_id": "72157627256006852", "photo_flickr_id": "5964768114", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "45953", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was slow and difficult work .", "storylet_id": "229767"}], [{"original_text": "Everything had to be done very carefully. This part required two people to lift the clock face. ", "album_id": "72157627256006852", "photo_flickr_id": "5964768424", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "45953", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everything had to be done very carefully . this part required two people to lift the clock face .", "storylet_id": "229768"}], [{"original_text": "There we go, almost set now. ", "album_id": "72157627256006852", "photo_flickr_id": "5964211573", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "45953", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there we go , almost set now .", "storylet_id": "229769"}], [{"original_text": "after many years they finally are replacing the clock tower clock", "album_id": "72157627256006852", "photo_flickr_id": "5964210041", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "45954", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after many years they finally are replacing the clock tower clock", "storylet_id": "229770"}], [{"original_text": "precision craftsmanship went into making the clock ", "album_id": "72157627256006852", "photo_flickr_id": "5964767700", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "45954", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "precision craftsmanship went into making the clock", "storylet_id": "229771"}], [{"original_text": "they worked over 5 days to make it perfect", "album_id": "72157627256006852", "photo_flickr_id": "5964768114", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "45954", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they worked over 5 days to make it perfect", "storylet_id": "229772"}], [{"original_text": "they even brought in a specialist to see things along", "album_id": "72157627256006852", "photo_flickr_id": "5964768424", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "45954", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even brought in a specialist to see things along", "storylet_id": "229773"}], [{"original_text": "its going to be a great clock when its done", "album_id": "72157627256006852", "photo_flickr_id": "5964211573", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "45954", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "its going to be a great clock when its done", "storylet_id": "229774"}], [{"original_text": "I took my dog out for a trip last week.", "album_id": "538554", "photo_flickr_id": "23422587", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45955", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took my dog out for a trip last week .", "storylet_id": "229775"}], [{"original_text": "I brought some ribs for the barbecue.", "album_id": "538554", "photo_flickr_id": "23422642", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45955", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i brought some ribs for the barbecue .", "storylet_id": "229776"}], [{"original_text": "The parks that we stopped by were very beautiful.", "album_id": "538554", "photo_flickr_id": "23423023", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45955", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the parks that we stopped by were very beautiful .", "storylet_id": "229777"}], [{"original_text": "When we got further north it began to snow.", "album_id": "538554", "photo_flickr_id": "23423393", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45955", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we got further north it began to snow .", "storylet_id": "229778"}], [{"original_text": "At night there was a huge fireworks show that we got to see.", "album_id": "538554", "photo_flickr_id": "23424127", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45955", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night there was a huge fireworks show that we got to see .", "storylet_id": "229779"}], [{"original_text": "My dog and I went to meet some friends at the park on my day off.", "album_id": "538554", "photo_flickr_id": "23422587", "setting": "first-2-pick-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "45956", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my dog and i went to meet some friends at the park on my day off .", "storylet_id": "229780"}], [{"original_text": "We grilled out and I contributed ribs.", "album_id": "538554", "photo_flickr_id": "23422642", "setting": "first-2-pick-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "45956", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we grilled out and i contributed ribs .", "storylet_id": "229781"}], [{"original_text": "The food was so delicious.", "album_id": "538554", "photo_flickr_id": "23422740", "setting": "first-2-pick-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "45956", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food was so delicious .", "storylet_id": "229782"}], [{"original_text": "We sat on a dock watched a beautiful sunset.", "album_id": "538554", "photo_flickr_id": "23423124", "setting": "first-2-pick-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "45956", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we sat on a dock watched a beautiful sunset .", "storylet_id": "229783"}], [{"original_text": "We ended the night watching great fireworks!", "album_id": "538554", "photo_flickr_id": "23424127", "setting": "first-2-pick-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "45956", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the night watching great fireworks !", "storylet_id": "229784"}], [{"original_text": "Here we are getting ready for our 4th of July trip.", "album_id": "538554", "photo_flickr_id": "23422587", "setting": "last-3-pick-old-and-tell", "worker_id": "8THCOZTW7CGC653", "story_id": "45957", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are getting ready for our 4th of july trip .", "storylet_id": "229785"}], [{"original_text": "We decided to barbque here is the goods.", "album_id": "538554", "photo_flickr_id": "23422642", "setting": "last-3-pick-old-and-tell", "worker_id": "8THCOZTW7CGC653", "story_id": "45957", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided to barbque here is the goods .", "storylet_id": "229786"}], [{"original_text": "Here is a picture of the campsite when we went on a walk.", "album_id": "538554", "photo_flickr_id": "23423023", "setting": "last-3-pick-old-and-tell", "worker_id": "8THCOZTW7CGC653", "story_id": "45957", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is a picture of the campsite when we went on a walk .", "storylet_id": "229787"}], [{"original_text": "I was able to get a picture of the fireworks boat.", "album_id": "538554", "photo_flickr_id": "23423393", "setting": "last-3-pick-old-and-tell", "worker_id": "8THCOZTW7CGC653", "story_id": "45957", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was able to get a picture of the fireworks boat .", "storylet_id": "229788"}], [{"original_text": "The end of the day fireworks we had a great day.", "album_id": "538554", "photo_flickr_id": "23424127", "setting": "last-3-pick-old-and-tell", "worker_id": "8THCOZTW7CGC653", "story_id": "45957", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the end of the day fireworks we had a great day .", "storylet_id": "229789"}], [{"original_text": "These were some pics I took July 4th weekend. Max is ready to go!", "album_id": "538554", "photo_flickr_id": "23422587", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "45958", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these were some pics i took july 4th weekend . [male] is ready to go !", "storylet_id": "229790"}], [{"original_text": "These were the ribs my husband cooks. So good. ", "album_id": "538554", "photo_flickr_id": "23422642", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "45958", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these were the ribs my husband cooks . so good .", "storylet_id": "229791"}], [{"original_text": "The scenery was pretty. I really loved the flowers. ", "album_id": "538554", "photo_flickr_id": "23423023", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "45958", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the scenery was pretty . i really loved the flowers .", "storylet_id": "229792"}], [{"original_text": "There's the people going to shoot off the fireworks. ", "album_id": "538554", "photo_flickr_id": "23423393", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "45958", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there 's the people going to shoot off the fireworks .", "storylet_id": "229793"}], [{"original_text": "They were so beautiful. I'm so glad we went. ", "album_id": "538554", "photo_flickr_id": "23424127", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "45958", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were so beautiful . i 'm so glad we went .", "storylet_id": "229794"}], [{"original_text": "Our dog was eager for the day to begin.", "album_id": "538554", "photo_flickr_id": "23422587", "setting": "last-3-pick-old-and-tell", "worker_id": "W1VUJ7PU63H1Y52", "story_id": "45959", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our dog was eager for the day to begin .", "storylet_id": "229795"}], [{"original_text": "I started to grill some ribs.", "album_id": "538554", "photo_flickr_id": "23422642", "setting": "last-3-pick-old-and-tell", "worker_id": "W1VUJ7PU63H1Y52", "story_id": "45959", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i started to grill some ribs .", "storylet_id": "229796"}], [{"original_text": "We were in a nice area for a BBQ.", "album_id": "538554", "photo_flickr_id": "23423023", "setting": "last-3-pick-old-and-tell", "worker_id": "W1VUJ7PU63H1Y52", "story_id": "45959", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were in a nice area for a bbq .", "storylet_id": "229797"}], [{"original_text": "After lunch, we went out on the water.", "album_id": "538554", "photo_flickr_id": "23423393", "setting": "last-3-pick-old-and-tell", "worker_id": "W1VUJ7PU63H1Y52", "story_id": "45959", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after lunch , we went out on the water .", "storylet_id": "229798"}], [{"original_text": "We ended the day with some fireworks.", "album_id": "538554", "photo_flickr_id": "23424127", "setting": "last-3-pick-old-and-tell", "worker_id": "W1VUJ7PU63H1Y52", "story_id": "45959", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the day with some fireworks .", "storylet_id": "229799"}], [{"original_text": "Today there was a 4th of July barbecue with some red and blue desserts.", "album_id": "72157594188123351", "photo_flickr_id": "182377457", "setting": "first-2-pick-and-tell", "worker_id": "SVHSMLCA4J7FFHW", "story_id": "45960", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today there was a 4th of july barbecue with some red and blue desserts .", "storylet_id": "229800"}], [{"original_text": "There was a historic war reenactment in the park.", "album_id": "72157594188123351", "photo_flickr_id": "182377997", "setting": "first-2-pick-and-tell", "worker_id": "SVHSMLCA4J7FFHW", "story_id": "45960", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a historic war reenactment in the park .", "storylet_id": "229801"}], [{"original_text": "The sweet yellow corn looks delicious.", "album_id": "72157594188123351", "photo_flickr_id": "182378273", "setting": "first-2-pick-and-tell", "worker_id": "SVHSMLCA4J7FFHW", "story_id": "45960", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sweet yellow corn looks delicious .", "storylet_id": "229802"}], [{"original_text": "There is enough buns to feed a small army!", "album_id": "72157594188123351", "photo_flickr_id": "182378686", "setting": "first-2-pick-and-tell", "worker_id": "SVHSMLCA4J7FFHW", "story_id": "45960", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there is enough buns to feed a small army !", "storylet_id": "229803"}], [{"original_text": "The hot dogs are cooking on the grill, yum!", "album_id": "72157594188123351", "photo_flickr_id": "182379348", "setting": "first-2-pick-and-tell", "worker_id": "SVHSMLCA4J7FFHW", "story_id": "45960", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the hot dogs are cooking on the grill , yum !", "storylet_id": "229804"}], [{"original_text": "It is going to be a great cookout. ", "album_id": "72157594188123351", "photo_flickr_id": "182378686", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "45961", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is going to be a great cookout .", "storylet_id": "229805"}], [{"original_text": "I have all the food needed. Fresh shucked corn.", "album_id": "72157594188123351", "photo_flickr_id": "182378273", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "45961", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i have all the food needed . fresh shucked corn .", "storylet_id": "229806"}], [{"original_text": "The best wieners ever!", "album_id": "72157594188123351", "photo_flickr_id": "182378400", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "45961", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the best wieners ever !", "storylet_id": "229807"}], [{"original_text": "Grilling it all up.", "album_id": "72157594188123351", "photo_flickr_id": "182378947", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "45961", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grilling it all up .", "storylet_id": "229808"}], [{"original_text": "And, slyly adding my secret ingredient.", "album_id": "72157594188123351", "photo_flickr_id": "182379634", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "45961", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , slyly adding my secret ingredient .", "storylet_id": "229809"}], [{"original_text": "Nothing like good old fashioned red, white, and blue cakes to celebrate red, white, and blue day.", "album_id": "72157594188123351", "photo_flickr_id": "182377457", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45962", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "nothing like good old fashioned red , white , and blue cakes to celebrate red , white , and blue day .", "storylet_id": "229810"}], [{"original_text": "In the background you can see the reinactment of the Civil War.", "album_id": "72157594188123351", "photo_flickr_id": "182377997", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45962", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in the background you can see the reinactment of the civil war .", "storylet_id": "229811"}], [{"original_text": "Corn on the cob with Hamburgers and hot dogs and celebrating our nations freedom. Now that's patriotic indeed.", "album_id": "72157594188123351", "photo_flickr_id": "182378273", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45962", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "corn on the cob with hamburgers and hot dogs and celebrating our nations freedom . now that 's patriotic indeed .", "storylet_id": "229812"}], [{"original_text": "I broght buns hun. Sir Mix alot would be proud of these buns.", "album_id": "72157594188123351", "photo_flickr_id": "182378686", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45962", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i broght buns hun . sir mix alot would be proud of these buns .", "storylet_id": "229813"}], [{"original_text": "Weiners for the buns. The look so yummy. It's been a while since I cooked with charcoal.", "album_id": "72157594188123351", "photo_flickr_id": "182379348", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "45962", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "weiners for the buns . the look so yummy . it 's been a while since i cooked with charcoal .", "storylet_id": "229814"}], [{"original_text": "It barbecue season again.", "album_id": "72157594188123351", "photo_flickr_id": "182378686", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "45963", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it barbecue season again .", "storylet_id": "229815"}], [{"original_text": "And my family does it big every year.", "album_id": "72157594188123351", "photo_flickr_id": "182378273", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "45963", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and my family does it big every year .", "storylet_id": "229816"}], [{"original_text": "We have a huge family so we like to eat huge as well.", "album_id": "72157594188123351", "photo_flickr_id": "182378400", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "45963", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we have a huge family so we like to eat huge as well .", "storylet_id": "229817"}], [{"original_text": "My favorite is the grilled corn. I love corn.", "album_id": "72157594188123351", "photo_flickr_id": "182378947", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "45963", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my favorite is the grilled corn . i love corn .", "storylet_id": "229818"}], [{"original_text": "I love barbecue season. If you are ever around feel free to stop by and say hi.", "album_id": "72157594188123351", "photo_flickr_id": "182379634", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "45963", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love barbecue season . if you are ever around feel free to stop by and say hi .", "storylet_id": "229819"}], [{"original_text": "The team is having a bbq today and someone brought a lot of food.", "album_id": "72157594188123351", "photo_flickr_id": "182378686", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "45964", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the team is having a bbq today and someone brought a lot of food .", "storylet_id": "229820"}], [{"original_text": "The corn on the cob will be delicious!", "album_id": "72157594188123351", "photo_flickr_id": "182378273", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "45964", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the corn on the cob will be delicious !", "storylet_id": "229821"}], [{"original_text": "Everyone loves hot dogs that are cooked on the bbq.", "album_id": "72157594188123351", "photo_flickr_id": "182378400", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "45964", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone loves hot dogs that are cooked on the bbq .", "storylet_id": "229822"}], [{"original_text": "The cook has wrapped the corn and they are now being grilled on the bbq.", "album_id": "72157594188123351", "photo_flickr_id": "182378947", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "45964", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cook has wrapped the corn and they are now being grilled on the bbq .", "storylet_id": "229823"}], [{"original_text": "Someone brought the red pepper flakes for those who like it hot and spicy! ", "album_id": "72157594188123351", "photo_flickr_id": "182379634", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "45964", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someone brought the red pepper flakes for those who like it hot and spicy !", "storylet_id": "229824"}], [{"original_text": "Today we went to the lake and attended a 4th fair.", "album_id": "72157594188359156", "photo_flickr_id": "182547610", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45965", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to the lake and attended a 4th fair .", "storylet_id": "229825"}], [{"original_text": "After we headed to the dock.", "album_id": "72157594188359156", "photo_flickr_id": "182547518", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45965", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after we headed to the dock .", "storylet_id": "229826"}], [{"original_text": "We jumped in the water to take a swim and our friends went canoeing.", "album_id": "72157594188359156", "photo_flickr_id": "182547833", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45965", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we jumped in the water to take a swim and our friends went canoeing .", "storylet_id": "229827"}], [{"original_text": "After we went back to the fair to watch the fireworks show.", "album_id": "72157594188359156", "photo_flickr_id": "182547599", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45965", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after we went back to the fair to watch the fireworks show .", "storylet_id": "229828"}], [{"original_text": "We then went back to my house and had a party and had a fourth of july dessert.", "album_id": "72157594188359156", "photo_flickr_id": "182547774", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "45965", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we then went back to my house and had a party and had a fourth of july dessert .", "storylet_id": "229829"}], [{"original_text": "I went down to the pier with my family last week.", "album_id": "72157594188359156", "photo_flickr_id": "182547518", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45966", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went down to the pier with my family last week .", "storylet_id": "229830"}], [{"original_text": "We ate at a restaurant by the water.", "album_id": "72157594188359156", "photo_flickr_id": "182547795", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45966", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we ate at a restaurant by the water .", "storylet_id": "229831"}], [{"original_text": "The weather was great that day.", "album_id": "72157594188359156", "photo_flickr_id": "182547897", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45966", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the weather was great that day .", "storylet_id": "229832"}], [{"original_text": "We had a great time at the restaurant.", "album_id": "72157594188359156", "photo_flickr_id": "182547489", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45966", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a great time at the restaurant .", "storylet_id": "229833"}], [{"original_text": "After we finished we went down to the water to play some games.", "album_id": "72157594188359156", "photo_flickr_id": "182547531", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45966", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we finished we went down to the water to play some games .", "storylet_id": "229834"}], [{"original_text": "There was an event on the docks. ", "album_id": "72157594188359156", "photo_flickr_id": "182547610", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "45967", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an event on the docks .", "storylet_id": "229835"}], [{"original_text": "There would be fresh food. ", "album_id": "72157594188359156", "photo_flickr_id": "182547518", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "45967", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there would be fresh food .", "storylet_id": "229836"}], [{"original_text": "A nice little park, ", "album_id": "72157594188359156", "photo_flickr_id": "182547833", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "45967", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a nice little park ,", "storylet_id": "229837"}], [{"original_text": "and an explosion of fireworks. ", "album_id": "72157594188359156", "photo_flickr_id": "182547599", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "45967", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and an explosion of fireworks .", "storylet_id": "229838"}], [{"original_text": "We chatted over food and dessert. ", "album_id": "72157594188359156", "photo_flickr_id": "182547774", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "45967", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we chatted over food and dessert .", "storylet_id": "229839"}], [{"original_text": "The family went on vacation,", "album_id": "72157594188359156", "photo_flickr_id": "182547610", "setting": "last-3-pick-old-and-tell", "worker_id": "09HSD4A4DO903WB", "story_id": "45968", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went on vacation ,", "storylet_id": "229840"}], [{"original_text": "A group of friends haveing lunch.", "album_id": "72157594188359156", "photo_flickr_id": "182547518", "setting": "last-3-pick-old-and-tell", "worker_id": "09HSD4A4DO903WB", "story_id": "45968", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a group of friends haveing lunch .", "storylet_id": "229841"}], [{"original_text": "Jon and Jake getting ready to go bouting.", "album_id": "72157594188359156", "photo_flickr_id": "182547833", "setting": "last-3-pick-old-and-tell", "worker_id": "09HSD4A4DO903WB", "story_id": "45968", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and [male] getting ready to go bouting .", "storylet_id": "229842"}], [{"original_text": "the fire works show was amazing.", "album_id": "72157594188359156", "photo_flickr_id": "182547599", "setting": "last-3-pick-old-and-tell", "worker_id": "09HSD4A4DO903WB", "story_id": "45968", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fire works show was amazing .", "storylet_id": "229843"}], [{"original_text": "At the end of the fireworks we had desert.", "album_id": "72157594188359156", "photo_flickr_id": "182547774", "setting": "last-3-pick-old-and-tell", "worker_id": "09HSD4A4DO903WB", "story_id": "45968", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the fireworks we had desert .", "storylet_id": "229844"}], [{"original_text": "We went out by the water for the party. The view was gorgeous.", "album_id": "72157594188359156", "photo_flickr_id": "182547610", "setting": "last-3-pick-old-and-tell", "worker_id": "A8KSGRBYPKHYLBN", "story_id": "45969", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went out by the water for the party . the view was gorgeous .", "storylet_id": "229845"}], [{"original_text": "The women stood on the deck and conversed with each other.", "album_id": "72157594188359156", "photo_flickr_id": "182547518", "setting": "last-3-pick-old-and-tell", "worker_id": "A8KSGRBYPKHYLBN", "story_id": "45969", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the women stood on the deck and conversed with each other .", "storylet_id": "229846"}], [{"original_text": "The children went down on the dock and played in the water.", "album_id": "72157594188359156", "photo_flickr_id": "182547833", "setting": "last-3-pick-old-and-tell", "worker_id": "A8KSGRBYPKHYLBN", "story_id": "45969", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the children went down on the dock and played in the water .", "storylet_id": "229847"}], [{"original_text": "Later at night there were fireworks.", "album_id": "72157594188359156", "photo_flickr_id": "182547599", "setting": "last-3-pick-old-and-tell", "worker_id": "A8KSGRBYPKHYLBN", "story_id": "45969", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later at night there were fireworks .", "storylet_id": "229848"}], [{"original_text": "And of course dessert.", "album_id": "72157594188359156", "photo_flickr_id": "182547774", "setting": "last-3-pick-old-and-tell", "worker_id": "A8KSGRBYPKHYLBN", "story_id": "45969", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and of course dessert .", "storylet_id": "229849"}], [{"original_text": "I went to the pool yesterday.", "album_id": "72157629616247290", "photo_flickr_id": "7003624908", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45970", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the pool yesterday .", "storylet_id": "229850"}], [{"original_text": "When I got home I put the baby to sleep.", "album_id": "72157629616247290", "photo_flickr_id": "7149706007", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45970", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when i got home i put the baby to sleep .", "storylet_id": "229851"}], [{"original_text": "My mom was outside with the children.", "album_id": "72157629616247290", "photo_flickr_id": "7003595454", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45970", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my mom was outside with the children .", "storylet_id": "229852"}], [{"original_text": "There were some people in my pool.", "album_id": "72157629616247290", "photo_flickr_id": "7149675811", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45970", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were some people in my pool .", "storylet_id": "229853"}], [{"original_text": "The children were playing basketball nearby.", "album_id": "72157629616247290", "photo_flickr_id": "7149625163", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45970", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the children were playing basketball nearby .", "storylet_id": "229854"}], [{"original_text": "Families were told about what to expect when their loved ones deployed.", "album_id": "72157629616247290", "photo_flickr_id": "7003635190", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45971", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "families were told about what to expect when their loved ones deployed .", "storylet_id": "229855"}], [{"original_text": "Soldiers were in a meeting in another room.", "album_id": "72157629616247290", "photo_flickr_id": "7003624908", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45971", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "soldiers were in a meeting in another room .", "storylet_id": "229856"}], [{"original_text": "They filled out next of kin and other such data.", "album_id": "72157629616247290", "photo_flickr_id": "7003605424", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45971", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they filled out next of kin and other such data .", "storylet_id": "229857"}], [{"original_text": "They sadly made their way to the planes.", "album_id": "72157629616247290", "photo_flickr_id": "7149675811", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45971", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they sadly made their way to the planes .", "storylet_id": "229858"}], [{"original_text": "Wives and children looked on, proud but sad.", "album_id": "72157629616247290", "photo_flickr_id": "7149656991", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "45971", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "wives and children looked on , proud but sad .", "storylet_id": "229859"}], [{"original_text": "It was a beautiful day, and the family decided to hang out by the pool.", "album_id": "72157629616247290", "photo_flickr_id": "7003624908", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45972", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful day , and the family decided to hang out by the pool .", "storylet_id": "229860"}], [{"original_text": "Even baby Lily was excited to enjoy the sunlight.", "album_id": "72157629616247290", "photo_flickr_id": "7149706007", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45972", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even baby [female] was excited to enjoy the sunlight .", "storylet_id": "229861"}], [{"original_text": "But, Grandma Maureen found a shady spot--she claims she doesn't like the heat.", "album_id": "72157629616247290", "photo_flickr_id": "7003595454", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45972", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but , grandma [female] found a shady spot -- she claims she does n't like the heat .", "storylet_id": "229862"}], [{"original_text": "Everyone had a wonderful time swimming in the pool and enjoying the day.", "album_id": "72157629616247290", "photo_flickr_id": "7149675811", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45972", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone had a wonderful time swimming in the pool and enjoying the day .", "storylet_id": "229863"}], [{"original_text": "But, Chris and Tim, who would have rather played ball than swim with us.", "album_id": "72157629616247290", "photo_flickr_id": "7149625163", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45972", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but , [male] and [male] , who would have rather played ball than swim with us .", "storylet_id": "229864"}], [{"original_text": "Our family stayed in a resort that had a large swimming pool.", "album_id": "72157629616247290", "photo_flickr_id": "7003624908", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "45973", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family stayed in a resort that had a large swimming pool .", "storylet_id": "229865"}], [{"original_text": "While everyone else was busy doing all kinds of activities, the baby spent a lot of time sleeping.", "album_id": "72157629616247290", "photo_flickr_id": "7149706007", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "45973", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while everyone else was busy doing all kinds of activities , the baby spent a lot of time sleeping .", "storylet_id": "229866"}], [{"original_text": "Mom sat down watching the kids playing.", "album_id": "72157629616247290", "photo_flickr_id": "7003595454", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "45973", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom sat down watching the kids playing .", "storylet_id": "229867"}], [{"original_text": "Some members of our family hang out at the pool.", "album_id": "72157629616247290", "photo_flickr_id": "7149675811", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "45973", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some members of our family hang out at the pool .", "storylet_id": "229868"}], [{"original_text": "The boys played basket ball and had a lot of fun. We promised the children that we would return to this resort next summer.", "album_id": "72157629616247290", "photo_flickr_id": "7149625163", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "45973", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boys played basket ball and had a lot of fun . we promised the children that we would return to this resort next summer .", "storylet_id": "229869"}], [{"original_text": "When we arrived for our visit, Grandpa was asleep on the couch.", "album_id": "72157629616247290", "photo_flickr_id": "7003635190", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45974", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when we arrived for our visit , grandpa was asleep on the couch .", "storylet_id": "229870"}], [{"original_text": "We decided to spend some time in the pool.", "album_id": "72157629616247290", "photo_flickr_id": "7003624908", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45974", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided to spend some time in the pool .", "storylet_id": "229871"}], [{"original_text": "Our baby must take after grandpa, taking a nap as well!", "album_id": "72157629616247290", "photo_flickr_id": "7003605424", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45974", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our baby must take after grandpa , taking a nap as well !", "storylet_id": "229872"}], [{"original_text": "The family gathered around the pool, lounging and chatting the day away.", "album_id": "72157629616247290", "photo_flickr_id": "7149675811", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45974", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family gathered around the pool , lounging and chatting the day away .", "storylet_id": "229873"}], [{"original_text": "Later on, we went indoors to share in more conversation with Grandma and her sister.", "album_id": "72157629616247290", "photo_flickr_id": "7149656991", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45974", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later on , we went indoors to share in more conversation with grandma and her sister .", "storylet_id": "229874"}], [{"original_text": "Shouts for corporations to be held accountable for their actions rang through the air.", "album_id": "72157630419717464", "photo_flickr_id": "7501329250", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "45975", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "shouts for corporations to be held accountable for their actions rang through the air .", "storylet_id": "229875"}], [{"original_text": "Dissatisfied with the ever-looming presence of coal and its impact on the environment, many people took to the streets.", "album_id": "72157630419717464", "photo_flickr_id": "7501328880", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "45975", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dissatisfied with the ever-looming presence of coal and its impact on the environment , many people took to the streets .", "storylet_id": "229876"}], [{"original_text": "Others protested in their own clever ways, calling out tax dodging executives and corporations.", "album_id": "72157630419717464", "photo_flickr_id": "7501328976", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "45975", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others protested in their own clever ways , calling out tax dodging executives and corporations .", "storylet_id": "229877"}], [{"original_text": "This sort of thing brings a community together, and the rhythm of hand drums somehow seems to help as well.", "album_id": "72157630419717464", "photo_flickr_id": "7501328830", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "45975", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this sort of thing brings a community together , and the rhythm of hand drums somehow seems to help as well .", "storylet_id": "229878"}], [{"original_text": "And indeed, by nightfall thousands had gathered to speak their minds.", "album_id": "72157630419717464", "photo_flickr_id": "7501328704", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "45975", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and indeed , by nightfall thousands had gathered to speak their minds .", "storylet_id": "229879"}], [{"original_text": "People lined up for the big political event.", "album_id": "72157630419717464", "photo_flickr_id": "7501329502", "setting": "first-2-pick-and-tell", "worker_id": "30C18G8GXHB71P6", "story_id": "45976", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people lined up for the big political event .", "storylet_id": "229880"}], [{"original_text": "The warm-up entertainment was a singing political parodist.", "album_id": "72157630419717464", "photo_flickr_id": "7501329600", "setting": "first-2-pick-and-tell", "worker_id": "30C18G8GXHB71P6", "story_id": "45976", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the warm-up entertainment was a singing political parodist .", "storylet_id": "229881"}], [{"original_text": "As the main event approached, more and more people filled the seats.", "album_id": "72157630419717464", "photo_flickr_id": "7501328704", "setting": "first-2-pick-and-tell", "worker_id": "30C18G8GXHB71P6", "story_id": "45976", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as the main event approached , more and more people filled the seats .", "storylet_id": "229882"}], [{"original_text": "The main event was an impassioned speech by a local politician.", "album_id": "72157630419717464", "photo_flickr_id": "7501329650", "setting": "first-2-pick-and-tell", "worker_id": "30C18G8GXHB71P6", "story_id": "45976", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the main event was an impassioned speech by a local politician .", "storylet_id": "229883"}], [{"original_text": "The politician's speech enraptured the crowd.", "album_id": "72157630419717464", "photo_flickr_id": "7501329378", "setting": "first-2-pick-and-tell", "worker_id": "30C18G8GXHB71P6", "story_id": "45976", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the politician 's speech enraptured the crowd .", "storylet_id": "229884"}], [{"original_text": "We had been waiting for a very long time for the performance to start.", "album_id": "72157630419717464", "photo_flickr_id": "7501329502", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45977", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had been waiting for a very long time for the performance to start .", "storylet_id": "229885"}], [{"original_text": "The first one up was the oldest man in town and he was going to perform on the piano.", "album_id": "72157630419717464", "photo_flickr_id": "7501329600", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45977", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first one up was the oldest man in town and he was going to perform on the piano .", "storylet_id": "229886"}], [{"original_text": "Thousands of people listened as he played.", "album_id": "72157630419717464", "photo_flickr_id": "7501328704", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45977", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "thousands of people listened as he played .", "storylet_id": "229887"}], [{"original_text": "Next up were the speeches by the local politicians on stage.", "album_id": "72157630419717464", "photo_flickr_id": "7501329650", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45977", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next up were the speeches by the local politicians on stage .", "storylet_id": "229888"}], [{"original_text": "Everyone was captivated by the speeches.", "album_id": "72157630419717464", "photo_flickr_id": "7501329378", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "45977", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was captivated by the speeches .", "storylet_id": "229889"}], [{"original_text": "It is important to be active in your community and make your opinions clear. ", "album_id": "72157630419717464", "photo_flickr_id": "7501329250", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "45978", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is important to be active in your community and make your opinions clear .", "storylet_id": "229890"}], [{"original_text": "Today we are protesting at city hall!", "album_id": "72157630419717464", "photo_flickr_id": "7501328880", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "45978", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today we are protesting at city hall !", "storylet_id": "229891"}], [{"original_text": "You can make your voice heard and have fun at the same time! There are a lot of creative people on hand.", "album_id": "72157630419717464", "photo_flickr_id": "7501328976", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "45978", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you can make your voice heard and have fun at the same time ! there are a lot of creative people on hand .", "storylet_id": "229892"}], [{"original_text": "There are also some talented musicians.", "album_id": "72157630419717464", "photo_flickr_id": "7501328830", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "45978", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are also some talented musicians .", "storylet_id": "229893"}], [{"original_text": " We all must fight for what we believe in. It is harder to ignore the people when we are so united.", "album_id": "72157630419717464", "photo_flickr_id": "7501328704", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "45978", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all must fight for what we believe in . it is harder to ignore the people when we are so united .", "storylet_id": "229894"}], [{"original_text": "Last week we decided to go downtown for a rally.", "album_id": "72157630419717464", "photo_flickr_id": "7501329250", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "45979", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week we decided to go downtown for a rally .", "storylet_id": "229895"}], [{"original_text": "A lot of people got very passionate and were dressed in costumes.", "album_id": "72157630419717464", "photo_flickr_id": "7501328880", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "45979", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of people got very passionate and were dressed in costumes .", "storylet_id": "229896"}], [{"original_text": "These baseball outfits were very unique and spoke volumes.", "album_id": "72157630419717464", "photo_flickr_id": "7501328976", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "45979", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these baseball outfits were very unique and spoke volumes .", "storylet_id": "229897"}], [{"original_text": "Some people showed up with musical instruments to enforce their message.", "album_id": "72157630419717464", "photo_flickr_id": "7501328830", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "45979", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people showed up with musical instruments to enforce their message .", "storylet_id": "229898"}], [{"original_text": "We had such a big crowd there that day I think we really got our message across.", "album_id": "72157630419717464", "photo_flickr_id": "7501328704", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "45979", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had such a big crowd there that day i think we really got our message across .", "storylet_id": "229899"}], [{"original_text": "The 4th of July party was amazing.", "album_id": "72157630421477774", "photo_flickr_id": "7502164648", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "45980", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the 4th of july party was amazing .", "storylet_id": "229900"}], [{"original_text": "There was lots of colorful fireworks on display.", "album_id": "72157630421477774", "photo_flickr_id": "7502167940", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "45980", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was lots of colorful fireworks on display .", "storylet_id": "229901"}], [{"original_text": "We saw all sorts of different patterns and some had cool sparkles.", "album_id": "72157630421477774", "photo_flickr_id": "7502169414", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "45980", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw all sorts of different patterns and some had cool sparkles .", "storylet_id": "229902"}], [{"original_text": "Our favorite was the firework that had all sorts of different colors in one.", "album_id": "72157630421477774", "photo_flickr_id": "7502170184", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "45980", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our favorite was the firework that had all sorts of different colors in one .", "storylet_id": "229903"}], [{"original_text": "This was the best fireworks show we have ever seen.", "album_id": "72157630421477774", "photo_flickr_id": "7502166372", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "45980", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the best fireworks show we have ever seen .", "storylet_id": "229904"}], [{"original_text": "Boom, boom, boom the fireworks sounded. ", "album_id": "72157630421477774", "photo_flickr_id": "7502167940", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45981", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "boom , boom , boom the fireworks sounded .", "storylet_id": "229905"}], [{"original_text": "Colors of green, purple, pink and white exploded in the sky. ", "album_id": "72157630421477774", "photo_flickr_id": "7502170184", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45981", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "colors of green , purple , pink and white exploded in the sky .", "storylet_id": "229906"}], [{"original_text": "The crowd was mesmerized. ", "album_id": "72157630421477774", "photo_flickr_id": "7502171732", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45981", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowd was mesmerized .", "storylet_id": "229907"}], [{"original_text": "Brilliant greens and red trailed down to earth. ", "album_id": "72157630421477774", "photo_flickr_id": "7502173978", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45981", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "brilliant greens and red trailed down to earth .", "storylet_id": "229908"}], [{"original_text": "Pink, blue and white compelled everyone to look up. ", "album_id": "72157630421477774", "photo_flickr_id": "7502174540", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "45981", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "pink , blue and white compelled everyone to look up .", "storylet_id": "229909"}], [{"original_text": "Everyone gathered for the big event.", "album_id": "72157630421477774", "photo_flickr_id": "7502164648", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "45982", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone gathered for the big event .", "storylet_id": "229910"}], [{"original_text": "The sky was lit up for miles around.", "album_id": "72157630421477774", "photo_flickr_id": "7502167940", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "45982", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sky was lit up for miles around .", "storylet_id": "229911"}], [{"original_text": "People were in awe with what they saw.", "album_id": "72157630421477774", "photo_flickr_id": "7502169414", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "45982", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people were in awe with what they saw .", "storylet_id": "229912"}], [{"original_text": "It was time for the grand finale.", "album_id": "72157630421477774", "photo_flickr_id": "7502170184", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "45982", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was time for the grand finale .", "storylet_id": "229913"}], [{"original_text": "Then the party got started again.", "album_id": "72157630421477774", "photo_flickr_id": "7502166372", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "45982", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then the party got started again .", "storylet_id": "229914"}], [{"original_text": "Quite a crowd has gathered at the start of the display. ", "album_id": "72157630421477774", "photo_flickr_id": "7502164648", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "45983", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "quite a crowd has gathered at the start of the display .", "storylet_id": "229915"}], [{"original_text": "Everyone was in awe at the large fireworks. ", "album_id": "72157630421477774", "photo_flickr_id": "7502167940", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "45983", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was in awe at the large fireworks .", "storylet_id": "229916"}], [{"original_text": "Some were multi colored like this one. ", "album_id": "72157630421477774", "photo_flickr_id": "7502169414", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "45983", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some were multi colored like this one .", "storylet_id": "229917"}], [{"original_text": "Others had several different sequences to them. ", "album_id": "72157630421477774", "photo_flickr_id": "7502170184", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "45983", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others had several different sequences to them .", "storylet_id": "229918"}], [{"original_text": "This one is pure white and misty, but still awesome looking. ", "album_id": "72157630421477774", "photo_flickr_id": "7502166372", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "45983", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this one is pure white and misty , but still awesome looking .", "storylet_id": "229919"}], [{"original_text": "This year's 4th of July celebration was spectacular.", "album_id": "72157630421477774", "photo_flickr_id": "7502164648", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45984", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this year 's 4th of july celebration was spectacular .", "storylet_id": "229920"}], [{"original_text": "The fireworks were closer than normal.", "album_id": "72157630421477774", "photo_flickr_id": "7502167940", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45984", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fireworks were closer than normal .", "storylet_id": "229921"}], [{"original_text": "The crowd gathered around to get the best view.", "album_id": "72157630421477774", "photo_flickr_id": "7502169414", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45984", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowd gathered around to get the best view .", "storylet_id": "229922"}], [{"original_text": "There were some fancy fireworks, containing multiple colors and patterns.", "album_id": "72157630421477774", "photo_flickr_id": "7502170184", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45984", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were some fancy fireworks , containing multiple colors and patterns .", "storylet_id": "229923"}], [{"original_text": "It was a great day to spend with family and friends.", "album_id": "72157630421477774", "photo_flickr_id": "7502166372", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45984", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great day to spend with family and friends .", "storylet_id": "229924"}], [{"original_text": "It was very loud at the parade.", "album_id": "72157630422619842", "photo_flickr_id": "7502640994", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45985", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was very loud at the parade .", "storylet_id": "229925"}], [{"original_text": "There were many interesting cars.", "album_id": "72157630422619842", "photo_flickr_id": "7502641736", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45985", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many interesting cars .", "storylet_id": "229926"}], [{"original_text": "I took a lot of pictures there.", "album_id": "72157630422619842", "photo_flickr_id": "7502643134", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45985", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took a lot of pictures there .", "storylet_id": "229927"}], [{"original_text": "There were also a lot of signs.", "album_id": "72157630422619842", "photo_flickr_id": "7502644316", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45985", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also a lot of signs .", "storylet_id": "229928"}], [{"original_text": "I watched the parade for hours.", "album_id": "72157630422619842", "photo_flickr_id": "7502645314", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "45985", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i watched the parade for hours .", "storylet_id": "229929"}], [{"original_text": "The firetruck making too much noise.", "album_id": "72157630422619842", "photo_flickr_id": "7502640994", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "45986", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the firetruck making too much noise .", "storylet_id": "229930"}], [{"original_text": "Playing the trumpet for the crowd.", "album_id": "72157630422619842", "photo_flickr_id": "7502643134", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "45986", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "playing the trumpet for the crowd .", "storylet_id": "229931"}], [{"original_text": "Dancing with her friend.", "album_id": "72157630422619842", "photo_flickr_id": "7502659530", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "45986", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dancing with her friend .", "storylet_id": "229932"}], [{"original_text": "Promoting her campaign.", "album_id": "72157630422619842", "photo_flickr_id": "7502656882", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "45986", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "promoting her campaign .", "storylet_id": "229933"}], [{"original_text": "Gathered all her candy. ", "album_id": "72157630422619842", "photo_flickr_id": "7502678698", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "45986", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "gathered all her candy .", "storylet_id": "229934"}], [{"original_text": "Our town is SO patriotic and so full of life. We love going to the annual parade. Daria had to plug her ears as the engines went by.", "album_id": "72157630422619842", "photo_flickr_id": "7502640994", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "45987", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our town is so patriotic and so full of life . we love going to the annual parade . daria had to plug her ears as the engines went by .", "storylet_id": "229935"}], [{"original_text": "This is our town Mayor and he is so funny. He is in the parade every year.", "album_id": "72157630422619842", "photo_flickr_id": "7502641736", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "45987", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is our town mayor and he is so funny . he is in the parade every year .", "storylet_id": "229936"}], [{"original_text": "Then the music started coming down the street, it was fun but I have heard better music.", "album_id": "72157630422619842", "photo_flickr_id": "7502643134", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "45987", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the music started coming down the street , it was fun but i have heard better music .", "storylet_id": "229937"}], [{"original_text": "This was my favorite float of the day. God Bless America!", "album_id": "72157630422619842", "photo_flickr_id": "7502644316", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "45987", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was my favorite float of the day . god bless location !", "storylet_id": "229938"}], [{"original_text": "This was the end of the parade, it truly was a fun time with the family!", "album_id": "72157630422619842", "photo_flickr_id": "7502645314", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "45987", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the end of the parade , it truly was a fun time with the family !", "storylet_id": "229939"}], [{"original_text": "This little girl wasn't a fan of the noise!", "album_id": "72157630422619842", "photo_flickr_id": "7502640994", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "45988", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this little girl was n't a fan of the noise !", "storylet_id": "229940"}], [{"original_text": "There were a lot of interesting sights at the demonstration.", "album_id": "72157630422619842", "photo_flickr_id": "7502641736", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "45988", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of interesting sights at the demonstration .", "storylet_id": "229941"}], [{"original_text": "Including lots of noise makers.", "album_id": "72157630422619842", "photo_flickr_id": "7502643134", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "45988", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "including lots of noise makers .", "storylet_id": "229942"}], [{"original_text": "A lot of people were very willing to express themselves.", "album_id": "72157630422619842", "photo_flickr_id": "7502644316", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "45988", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a lot of people were very willing to express themselves .", "storylet_id": "229943"}], [{"original_text": "Overall there was a huge turnout. ", "album_id": "72157630422619842", "photo_flickr_id": "7502645314", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "45988", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall there was a huge turnout .", "storylet_id": "229944"}], [{"original_text": "A little girl hated the sound of the firetruck.", "album_id": "72157630422619842", "photo_flickr_id": "7502640994", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "45989", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a little girl hated the sound of the firetruck .", "storylet_id": "229945"}], [{"original_text": "A boy played trumpet on the side of the road.", "album_id": "72157630422619842", "photo_flickr_id": "7502643134", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "45989", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a boy played trumpet on the side of the road .", "storylet_id": "229946"}], [{"original_text": "Two little girls had the time of their lives.", "album_id": "72157630422619842", "photo_flickr_id": "7502659530", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "45989", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two little girls had the time of their lives .", "storylet_id": "229947"}], [{"original_text": "A man holding a sign didn't seem too friendly.", "album_id": "72157630422619842", "photo_flickr_id": "7502656882", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "45989", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a man holding a sign did n't seem too friendly .", "storylet_id": "229948"}], [{"original_text": "A little girl named Casey played on the ground the whole day. ", "album_id": "72157630422619842", "photo_flickr_id": "7502678698", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "45989", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a little girl named [male] played on the ground the whole day .", "storylet_id": "229949"}], [{"original_text": "John is born as a happy young and healthy boy.", "album_id": "72157630434051334", "photo_flickr_id": "7503160552", "setting": "first-2-pick-and-tell", "worker_id": "PAP3R3HT8ASHCRN", "story_id": "45990", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is born as a happy young and healthy boy .", "storylet_id": "229950"}], [{"original_text": "Soon he grows up and attends a class to learn to swim.", "album_id": "72157630434051334", "photo_flickr_id": "7501260082", "setting": "first-2-pick-and-tell", "worker_id": "PAP3R3HT8ASHCRN", "story_id": "45990", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "soon he grows up and attends a class to learn to swim .", "storylet_id": "229951"}], [{"original_text": "At the pool he meets some friends and they are given pool safety instructions.", "album_id": "72157630434051334", "photo_flickr_id": "7501259198", "setting": "first-2-pick-and-tell", "worker_id": "PAP3R3HT8ASHCRN", "story_id": "45990", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the pool he meets some friends and they are given pool safety instructions .", "storylet_id": "229952"}], [{"original_text": "John relaxes at home knowing he had a great day.", "album_id": "72157630434051334", "photo_flickr_id": "7504083072", "setting": "first-2-pick-and-tell", "worker_id": "PAP3R3HT8ASHCRN", "story_id": "45990", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] relaxes at home knowing he had a great day .", "storylet_id": "229953"}], [{"original_text": "Just another great 4th of July day in America for John.", "album_id": "72157630434051334", "photo_flickr_id": "7503904730", "setting": "first-2-pick-and-tell", "worker_id": "PAP3R3HT8ASHCRN", "story_id": "45990", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "just another great 4th of july day in location for [male] .", "storylet_id": "229954"}], [{"original_text": "It was a great day to swim at the pool. ", "album_id": "72157630434051334", "photo_flickr_id": "7501259772", "setting": "first-2-pick-and-tell", "worker_id": "DF0G5QAIPRTNTSI", "story_id": "45991", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a great day to swim at the pool .", "storylet_id": "229955"}], [{"original_text": "All our friends and family came today, since it was so hot.", "album_id": "72157630434051334", "photo_flickr_id": "7501259198", "setting": "first-2-pick-and-tell", "worker_id": "DF0G5QAIPRTNTSI", "story_id": "45991", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all our friends and family came today , since it was so hot .", "storylet_id": "229956"}], [{"original_text": "One of the kids suggested we race to the end of the pool. ", "album_id": "72157630434051334", "photo_flickr_id": "7501785896", "setting": "first-2-pick-and-tell", "worker_id": "DF0G5QAIPRTNTSI", "story_id": "45991", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the kids suggested we race to the end of the pool .", "storylet_id": "229957"}], [{"original_text": "We tried a few races for the kids to get their competitive juices flowing.", "album_id": "72157630434051334", "photo_flickr_id": "7501431476", "setting": "first-2-pick-and-tell", "worker_id": "DF0G5QAIPRTNTSI", "story_id": "45991", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we tried a few races for the kids to get their competitive juices flowing .", "storylet_id": "229958"}], [{"original_text": "Everyone did well, but only one of them won the race.", "album_id": "72157630434051334", "photo_flickr_id": "7501260082", "setting": "first-2-pick-and-tell", "worker_id": "DF0G5QAIPRTNTSI", "story_id": "45991", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone did well , but only one of them won the race .", "storylet_id": "229959"}], [{"original_text": "It was that time of year again, Independence Day, and even the baby was happy!", "album_id": "72157630434051334", "photo_flickr_id": "7503160552", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45992", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was that time of year again , independence day , and even the baby was happy !", "storylet_id": "229960"}], [{"original_text": "The kids were ready to enjoy themselves at the pool with their friends.", "album_id": "72157630434051334", "photo_flickr_id": "7501260082", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45992", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids were ready to enjoy themselves at the pool with their friends .", "storylet_id": "229961"}], [{"original_text": "ALL their friends, as the pool became very crowded.", "album_id": "72157630434051334", "photo_flickr_id": "7501259198", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45992", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all their friends , as the pool became very crowded .", "storylet_id": "229962"}], [{"original_text": "Jimmy decided he had enough of the crowd and put on his shades and relaxed with us...", "album_id": "72157630434051334", "photo_flickr_id": "7504083072", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45992", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] decided he had enough of the crowd and put on his shades and relaxed with us ...", "storylet_id": "229963"}], [{"original_text": "As we watched Old Glory fly on her birthday.", "album_id": "72157630434051334", "photo_flickr_id": "7503904730", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "45992", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as we watched old glory fly on her birthday .", "storylet_id": "229964"}], [{"original_text": "The baby was so happy to spend time with extended family.", "album_id": "72157630434051334", "photo_flickr_id": "7503160552", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45993", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the baby was so happy to spend time with extended family .", "storylet_id": "229965"}], [{"original_text": "We all gathered around the local pool for some summer fun.", "album_id": "72157630434051334", "photo_flickr_id": "7501260082", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45993", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all gathered around the local pool for some summer fun .", "storylet_id": "229966"}], [{"original_text": "The water was cold, and the kids stayed in the shallow end of the pool.", "album_id": "72157630434051334", "photo_flickr_id": "7501259198", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45993", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water was cold , and the kids stayed in the shallow end of the pool .", "storylet_id": "229967"}], [{"original_text": "After a long day of swimming, it was time to dry off and get ready to go home.", "album_id": "72157630434051334", "photo_flickr_id": "7504083072", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45993", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a long day of swimming , it was time to dry off and get ready to go home .", "storylet_id": "229968"}], [{"original_text": "We spotted this American Flag at the entrance to the pool.", "album_id": "72157630434051334", "photo_flickr_id": "7503904730", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "45993", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we spotted this american flag at the entrance to the pool .", "storylet_id": "229969"}], [{"original_text": "The kids were excited about the first day of swim team.", "album_id": "72157630434051334", "photo_flickr_id": "7501259772", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "45994", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids were excited about the first day of swim team .", "storylet_id": "229970"}], [{"original_text": "The coach got the youngest swimmers into the kiddy pool to let them know what to expect.", "album_id": "72157630434051334", "photo_flickr_id": "7501259198", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "45994", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the coach got the youngest swimmers into the kiddy pool to let them know what to expect .", "storylet_id": "229971"}], [{"original_text": "Swimmers were expected to have goggles and a swimsuit.", "album_id": "72157630434051334", "photo_flickr_id": "7501785896", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "45994", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "swimmers were expected to have goggles and a swimsuit .", "storylet_id": "229972"}], [{"original_text": "There was a good ratio of coaches to swimmers, so every child had some attention.", "album_id": "72157630434051334", "photo_flickr_id": "7501431476", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "45994", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a good ratio of coaches to swimmers , so every child had some attention .", "storylet_id": "229973"}], [{"original_text": "The swimmers had a fun time learning and practicing for their first meet.", "album_id": "72157630434051334", "photo_flickr_id": "7501260082", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "45994", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the swimmers had a fun time learning and practicing for their first meet .", "storylet_id": "229974"}], [{"original_text": "At the celebration we went to there were many classic cars. ", "album_id": "72157630429638746", "photo_flickr_id": "7505465258", "setting": "first-2-pick-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "45995", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the celebration we went to there were many classic cars .", "storylet_id": "229975"}], [{"original_text": "These classic cars originated in the 1950s. ", "album_id": "72157630429638746", "photo_flickr_id": "7505490446", "setting": "first-2-pick-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "45995", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these classic cars originated in the 1950s .", "storylet_id": "229976"}], [{"original_text": "There was also live music for us to enjoy. ", "album_id": "72157630429638746", "photo_flickr_id": "7505513882", "setting": "first-2-pick-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "45995", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was also live music for us to enjoy .", "storylet_id": "229977"}], [{"original_text": "The kids had fun participating in a watermelon eating contest. ", "album_id": "72157630429638746", "photo_flickr_id": "7505534948", "setting": "first-2-pick-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "45995", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids had fun participating in a watermelon eating contest .", "storylet_id": "229978"}], [{"original_text": "Some women were wearing silly mustaches. ", "album_id": "72157630429638746", "photo_flickr_id": "7505561246", "setting": "first-2-pick-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "45995", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some women were wearing silly mustaches .", "storylet_id": "229979"}], [{"original_text": "I always love coming to the fair each summer and I especially enjoy viewing the restored classic cars.", "album_id": "72157630429638746", "photo_flickr_id": "7505490446", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "45996", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i always love coming to the fair each summer and i especially enjoy viewing the restored classic cars .", "storylet_id": "229980"}], [{"original_text": "The live music acts always help to provide the fair with a fun and upbeat atmosphere.", "album_id": "72157630429638746", "photo_flickr_id": "7505517374", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "45996", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the live music acts always help to provide the fair with a fun and upbeat atmosphere .", "storylet_id": "229981"}], [{"original_text": "They had a watermelon eating contest for the kids this year.", "album_id": "72157630429638746", "photo_flickr_id": "7505534948", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "45996", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a watermelon eating contest for the kids this year .", "storylet_id": "229982"}], [{"original_text": "I told my son to enter and he came in 2nd place!", "album_id": "72157630429638746", "photo_flickr_id": "7505539578", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "45996", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i told my son to enter and he came in 2nd place !", "storylet_id": "229983"}], [{"original_text": "Many people were dressed in costumes for a historical pageant that was done this year.", "album_id": "72157630429638746", "photo_flickr_id": "7505548038", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "45996", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many people were dressed in costumes for a historical pageant that was done this year .", "storylet_id": "229984"}], [{"original_text": "There were many impressive examples of vintage cars at the family event.", "album_id": "72157630429638746", "photo_flickr_id": "7505490446", "setting": "last-3-pick-old-and-tell", "worker_id": "WHG1RGAGUY6KGK5", "story_id": "45997", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many impressive examples of vintage cars at the family event .", "storylet_id": "229985"}], [{"original_text": "Live music was playing all around us throughout our stay.", "album_id": "72157630429638746", "photo_flickr_id": "7505517374", "setting": "last-3-pick-old-and-tell", "worker_id": "WHG1RGAGUY6KGK5", "story_id": "45997", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "live music was playing all around us throughout our stay .", "storylet_id": "229986"}], [{"original_text": "There was a watermelon eating contest the kids could participate in.", "album_id": "72157630429638746", "photo_flickr_id": "7505534948", "setting": "last-3-pick-old-and-tell", "worker_id": "WHG1RGAGUY6KGK5", "story_id": "45997", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a watermelon eating contest the kids could participate in .", "storylet_id": "229987"}], [{"original_text": "Some adults took a shot at it too.", "album_id": "72157630429638746", "photo_flickr_id": "7505539578", "setting": "last-3-pick-old-and-tell", "worker_id": "WHG1RGAGUY6KGK5", "story_id": "45997", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some adults took a shot at it too .", "storylet_id": "229988"}], [{"original_text": "Many men were showing off their impressive beards.", "album_id": "72157630429638746", "photo_flickr_id": "7505548038", "setting": "last-3-pick-old-and-tell", "worker_id": "WHG1RGAGUY6KGK5", "story_id": "45997", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many men were showing off their impressive beards .", "storylet_id": "229989"}], [{"original_text": "The Albany Ladies Mustache Brigade sponsored a car show recently.", "album_id": "72157630429638746", "photo_flickr_id": "7505465258", "setting": "last-3-pick-old-and-tell", "worker_id": "HA074U4AKVI4UB9", "story_id": "45998", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization organization organization organization sponsored a car show recently .", "storylet_id": "229990"}], [{"original_text": "Folks brought their classic cars for display and meet other car enthusiasts.", "album_id": "72157630429638746", "photo_flickr_id": "7505490446", "setting": "last-3-pick-old-and-tell", "worker_id": "HA074U4AKVI4UB9", "story_id": "45998", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "folks brought their classic cars for display and meet other car enthusiasts .", "storylet_id": "229991"}], [{"original_text": "For entertainment, several bands played throughout the day.", "album_id": "72157630429638746", "photo_flickr_id": "7505513882", "setting": "last-3-pick-old-and-tell", "worker_id": "HA074U4AKVI4UB9", "story_id": "45998", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "for entertainment , several bands played throughout the day .", "storylet_id": "229992"}], [{"original_text": "There was a watermelon eating contest for the kids.", "album_id": "72157630429638746", "photo_flickr_id": "7505534948", "setting": "last-3-pick-old-and-tell", "worker_id": "HA074U4AKVI4UB9", "story_id": "45998", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a watermelon eating contest for the kids .", "storylet_id": "229993"}], [{"original_text": "And the event sponsors all donned their most fashionable fake mustaches for the parade!", "album_id": "72157630429638746", "photo_flickr_id": "7505561246", "setting": "last-3-pick-old-and-tell", "worker_id": "HA074U4AKVI4UB9", "story_id": "45998", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the event sponsors all donned their most fashionable fake mustaches for the parade !", "storylet_id": "229994"}], [{"original_text": "A car showed up to my street and the party started from there.", "album_id": "72157630429638746", "photo_flickr_id": "7505490446", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "45999", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a car showed up to my street and the party started from there .", "storylet_id": "229995"}], [{"original_text": "A local rock star played on his guitar.", "album_id": "72157630429638746", "photo_flickr_id": "7505517374", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "45999", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a local rock star played on his guitar .", "storylet_id": "229996"}], [{"original_text": "The kids enjoyed eating fresh fruit.", "album_id": "72157630429638746", "photo_flickr_id": "7505534948", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "45999", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids enjoyed eating fresh fruit .", "storylet_id": "229997"}], [{"original_text": "One child ate sixteen slices of watermelon.", "album_id": "72157630429638746", "photo_flickr_id": "7505539578", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "45999", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one child ate sixteen slices of watermelon .", "storylet_id": "229998"}], [{"original_text": "His father watched from afar and was embarrassed. ", "album_id": "72157630429638746", "photo_flickr_id": "7505548038", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "45999", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his father watched from afar and was embarrassed .", "storylet_id": "229999"}], [{"original_text": "We went to the local museum yesterday.", "album_id": "72157630375999852", "photo_flickr_id": "7481530624", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46000", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the local museum yesterday .", "storylet_id": "230000"}], [{"original_text": "We saw all kinds of old items from the past. Such as this Funeral Car Key.", "album_id": "72157630375999852", "photo_flickr_id": "7481530116", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46000", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw all kinds of old items from the past . such as this funeral car key .", "storylet_id": "230001"}], [{"original_text": "And this Coffin Handle.", "album_id": "72157630375999852", "photo_flickr_id": "7481529900", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46000", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and this coffin handle .", "storylet_id": "230002"}], [{"original_text": "We weren't quite sure how many items were in the entire museum.", "album_id": "72157630375999852", "photo_flickr_id": "7481531794", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46000", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were n't quite sure how many items were in the entire museum .", "storylet_id": "230003"}], [{"original_text": "After the museum we decided to spend the rest of the day at the library.", "album_id": "72157630375999852", "photo_flickr_id": "7481534268", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46000", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the museum we decided to spend the rest of the day at the library .", "storylet_id": "230004"}], [{"original_text": "Today I went with my oldest on a class trip to a restored telegraph office. The sitting area in the back of the building was tiny but beautifully furnished with everything one could need.", "album_id": "72157630375999852", "photo_flickr_id": "7481528662", "setting": "first-2-pick-and-tell", "worker_id": "JU8RAMYLFNIQBLD", "story_id": "46001", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i went with my oldest on a class trip to a restored telegraph office . the sitting area in the back of the building was tiny but beautifully furnished with everything one could need .", "storylet_id": "230005"}], [{"original_text": "The faithfully restored office was in the front part of the small wooden building and featured a counter with real telegraph equipment from the 1800s.", "album_id": "72157630375999852", "photo_flickr_id": "7481528436", "setting": "first-2-pick-and-tell", "worker_id": "JU8RAMYLFNIQBLD", "story_id": "46001", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the faithfully restored office was in the front part of the small wooden building and featured a counter with real telegraph equipment from the 1800s .", "storylet_id": "230006"}], [{"original_text": "The bed meant for two people but no bigger than a twin bed of today was covered with a hand made red, white and blue quilt.", "album_id": "72157630375999852", "photo_flickr_id": "7481527120", "setting": "first-2-pick-and-tell", "worker_id": "JU8RAMYLFNIQBLD", "story_id": "46001", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bed meant for two people but no bigger than a twin bed of today was covered with a hand made red , white and blue quilt .", "storylet_id": "230007"}], [{"original_text": "Posters around the building gave us a detailed history of the sight.", "album_id": "72157630375999852", "photo_flickr_id": "7481531202", "setting": "first-2-pick-and-tell", "worker_id": "JU8RAMYLFNIQBLD", "story_id": "46001", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "posters around the building gave us a detailed history of the sight .", "storylet_id": "230008"}], [{"original_text": "The outside of the telegraph office featured wanted posters and whitewashed weathered boards, a gas street lamp was the perfect finishing touch.", "album_id": "72157630375999852", "photo_flickr_id": "7481530980", "setting": "first-2-pick-and-tell", "worker_id": "JU8RAMYLFNIQBLD", "story_id": "46001", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the outside of the telegraph office featured wanted posters and whitewashed weathered boards , a gas street lamp was the perfect finishing touch .", "storylet_id": "230009"}], [{"original_text": "The lincoln museum had a lot of information about his dead.", "album_id": "72157630375999852", "photo_flickr_id": "7481530624", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46002", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lincoln museum had a lot of information about his dead .", "storylet_id": "230010"}], [{"original_text": "It had the train car key.", "album_id": "72157630375999852", "photo_flickr_id": "7481530116", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46002", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it had the train car key .", "storylet_id": "230011"}], [{"original_text": "It had a piece of the coffin handle that had been removed.", "album_id": "72157630375999852", "photo_flickr_id": "7481529900", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46002", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it had a piece of the coffin handle that had been removed .", "storylet_id": "230012"}], [{"original_text": "They had rope from the hanging of the conspirators.", "album_id": "72157630375999852", "photo_flickr_id": "7481531794", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46002", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had rope from the hanging of the conspirators .", "storylet_id": "230013"}], [{"original_text": "They also had a lot of books written on the subject.", "album_id": "72157630375999852", "photo_flickr_id": "7481534268", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46002", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they also had a lot of books written on the subject .", "storylet_id": "230014"}], [{"original_text": "Today at the museum we saw some interesting things. ", "album_id": "72157630375999852", "photo_flickr_id": "7481530624", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46003", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today at the museum we saw some interesting things .", "storylet_id": "230015"}], [{"original_text": "The funeral car key to lincolns car was very interesting.", "album_id": "72157630375999852", "photo_flickr_id": "7481530116", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46003", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the funeral car key to lincolns car was very interesting .", "storylet_id": "230016"}], [{"original_text": "We also saw Lincolns coffin handle.", "album_id": "72157630375999852", "photo_flickr_id": "7481529900", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46003", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also saw lincolns coffin handle .", "storylet_id": "230017"}], [{"original_text": "The museum was very interesting and made me think about American history.", "album_id": "72157630375999852", "photo_flickr_id": "7481531794", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46003", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the museum was very interesting and made me think about american history .", "storylet_id": "230018"}], [{"original_text": "At the end of the day I really did learn a lot.", "album_id": "72157630375999852", "photo_flickr_id": "7481534268", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46003", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day i really did learn a lot .", "storylet_id": "230019"}], [{"original_text": "the furniture from abraham lincoln era is not much different from furniture of today ", "album_id": "72157630375999852", "photo_flickr_id": "7481528662", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "46004", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the furniture from abraham lincoln era is not much different from furniture of today", "storylet_id": "230020"}], [{"original_text": "his home was pretty small ", "album_id": "72157630375999852", "photo_flickr_id": "7481528436", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "46004", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his home was pretty small", "storylet_id": "230021"}], [{"original_text": "the bed is smaller than what we now sleep ", "album_id": "72157630375999852", "photo_flickr_id": "7481527120", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "46004", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bed is smaller than what we now sleep", "storylet_id": "230022"}], [{"original_text": "the history in the museum helps to understand history better ", "album_id": "72157630375999852", "photo_flickr_id": "7481531202", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "46004", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the history in the museum helps to understand history better", "storylet_id": "230023"}], [{"original_text": "interesting this is how people received their news in the past ", "album_id": "72157630375999852", "photo_flickr_id": "7481530980", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "46004", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "interesting this is how people received their news in the past", "storylet_id": "230024"}], [{"original_text": "The protestors gathered in front of the Whitehouse with their billboards.", "album_id": "72157625509057442", "photo_flickr_id": "5224736184", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46005", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the protestors gathered in front of the whitehouse with their billboards .", "storylet_id": "230025"}], [{"original_text": "They wanted Obama to notice them and listen to their story.", "album_id": "72157625509057442", "photo_flickr_id": "5224138965", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46005", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they wanted obama to notice them and listen to their story .", "storylet_id": "230026"}], [{"original_text": "A few of the organizers gave impromptu speeches.", "album_id": "72157625509057442", "photo_flickr_id": "5224735224", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46005", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few of the organizers gave impromptu speeches .", "storylet_id": "230027"}], [{"original_text": "They even brought a casket to illustrate the deaths from aids.", "album_id": "72157625509057442", "photo_flickr_id": "5224736630", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46005", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even brought a casket to illustrate the deaths from aids .", "storylet_id": "230028"}], [{"original_text": "Many widows were present to ask the president to do something about the aids epidemic.", "album_id": "72157625509057442", "photo_flickr_id": "5224139905", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46005", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many widows were present to ask the president to do something about the aids epidemic .", "storylet_id": "230029"}], [{"original_text": "March on Washington - rallying for HIV medications.", "album_id": "72157625509057442", "photo_flickr_id": "5224736270", "setting": "first-2-pick-and-tell", "worker_id": "1ZIKRLDCL61B1XZ", "story_id": "46006", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "march on location - rallying for hiv medications .", "storylet_id": "230030"}], [{"original_text": "We put an empty coffin to represent all of those who recently passed away", "album_id": "72157625509057442", "photo_flickr_id": "5224736096", "setting": "first-2-pick-and-tell", "worker_id": "1ZIKRLDCL61B1XZ", "story_id": "46006", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we put an empty coffin to represent all of those who recently passed away", "storylet_id": "230031"}], [{"original_text": "Me and my sister lost loved ones to the virus", "album_id": "72157625509057442", "photo_flickr_id": "5224139303", "setting": "first-2-pick-and-tell", "worker_id": "1ZIKRLDCL61B1XZ", "story_id": "46006", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "me and my sister lost loved ones to the virus", "storylet_id": "230032"}], [{"original_text": "Other friends are rallying around as well.", "album_id": "72157625509057442", "photo_flickr_id": "5224736630", "setting": "first-2-pick-and-tell", "worker_id": "1ZIKRLDCL61B1XZ", "story_id": "46006", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other friends are rallying around as well .", "storylet_id": "230033"}], [{"original_text": "We hope that it made an impact on Washingtonians ", "album_id": "72157625509057442", "photo_flickr_id": "5224734982", "setting": "first-2-pick-and-tell", "worker_id": "1ZIKRLDCL61B1XZ", "story_id": "46006", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we hope that it made an impact on washingtonians", "storylet_id": "230034"}], [{"original_text": "It rained at the capitol today.", "album_id": "72157625509057442", "photo_flickr_id": "5224736270", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46007", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it rained at the capitol today .", "storylet_id": "230035"}], [{"original_text": "The protesters still decided to carry on with their mission.", "album_id": "72157625509057442", "photo_flickr_id": "5224736096", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46007", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the protesters still decided to carry on with their mission .", "storylet_id": "230036"}], [{"original_text": "Various races and religions joined in.", "album_id": "72157625509057442", "photo_flickr_id": "5224139303", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46007", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "various races and religions joined in .", "storylet_id": "230037"}], [{"original_text": "A coffin was brought out and a speech was made.", "album_id": "72157625509057442", "photo_flickr_id": "5224736630", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46007", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a coffin was brought out and a speech was made .", "storylet_id": "230038"}], [{"original_text": "They strung up a banner over it as a metaphoric example and backed away.", "album_id": "72157625509057442", "photo_flickr_id": "5224734982", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46007", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they strung up a banner over it as a metaphoric example and backed away .", "storylet_id": "230039"}], [{"original_text": "I went to the capitol yesterday.", "album_id": "72157625509057442", "photo_flickr_id": "5224736270", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46008", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the capitol yesterday .", "storylet_id": "230040"}], [{"original_text": "There were many people in the street.", "album_id": "72157625509057442", "photo_flickr_id": "5224736096", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46008", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many people in the street .", "storylet_id": "230041"}], [{"original_text": "It was raining.", "album_id": "72157625509057442", "photo_flickr_id": "5224139303", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46008", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was raining .", "storylet_id": "230042"}], [{"original_text": "But they were out protesting anyway.", "album_id": "72157625509057442", "photo_flickr_id": "5224736630", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46008", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but they were out protesting anyway .", "storylet_id": "230043"}], [{"original_text": "There was also a coffin in the middle of the road.", "album_id": "72157625509057442", "photo_flickr_id": "5224734982", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46008", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was also a coffin in the middle of the road .", "storylet_id": "230044"}], [{"original_text": "The crowd gathered for the event.", "album_id": "72157625509057442", "photo_flickr_id": "5224736184", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46009", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowd gathered for the event .", "storylet_id": "230045"}], [{"original_text": "Protesters where all along the sidewalk.", "album_id": "72157625509057442", "photo_flickr_id": "5224138965", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46009", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "protesters where all along the sidewalk .", "storylet_id": "230046"}], [{"original_text": "There where speeches on the matter.", "album_id": "72157625509057442", "photo_flickr_id": "5224735224", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46009", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there where speeches on the matter .", "storylet_id": "230047"}], [{"original_text": "A coffin was brought in for visual effect.", "album_id": "72157625509057442", "photo_flickr_id": "5224736630", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46009", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a coffin was brought in for visual effect .", "storylet_id": "230048"}], [{"original_text": "There was praying and chanting throughout the day.", "album_id": "72157625509057442", "photo_flickr_id": "5224139905", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46009", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was praying and chanting throughout the day .", "storylet_id": "230049"}], [{"original_text": "There was a book signing event at my local library Today.", "album_id": "72157625080616410", "photo_flickr_id": "5045153128", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46010", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a book signing event at my local library today .", "storylet_id": "230050"}], [{"original_text": "Many authors showed up to sign books.", "album_id": "72157625080616410", "photo_flickr_id": "5044532685", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46010", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many authors showed up to sign books .", "storylet_id": "230051"}], [{"original_text": "They did their best to accommodate everyone.", "album_id": "72157625080616410", "photo_flickr_id": "5045154712", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46010", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they did their best to accommodate everyone .", "storylet_id": "230052"}], [{"original_text": "It was really busy and they could barely keep up signing.", "album_id": "72157625080616410", "photo_flickr_id": "5044533129", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46010", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was really busy and they could barely keep up signing .", "storylet_id": "230053"}], [{"original_text": "They had a lot of spare pens to make sure they did not run out of ink!", "album_id": "72157625080616410", "photo_flickr_id": "5044534027", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46010", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had a lot of spare pens to make sure they did not run out of ink !", "storylet_id": "230054"}], [{"original_text": "A famous writer signs a book for one of his fans. ", "album_id": "72157625080616410", "photo_flickr_id": "5044532685", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46011", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a famous writer signs a book for one of his fans .", "storylet_id": "230055"}], [{"original_text": "John Maggard decides to be original and autographs a calender. ", "album_id": "72157625080616410", "photo_flickr_id": "5045154712", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46011", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] maggard decides to be original and autographs a calender .", "storylet_id": "230056"}], [{"original_text": "Paul Melko tries to find the right words to say for a fan that has a sick family member. ", "album_id": "72157625080616410", "photo_flickr_id": "5044533129", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46011", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] melko tries to find the right words to say for a fan that has a sick family member .", "storylet_id": "230057"}], [{"original_text": "These books have just been released and they are on sale. ", "album_id": "72157625080616410", "photo_flickr_id": "5044535837", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46011", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these books have just been released and they are on sale .", "storylet_id": "230058"}], [{"original_text": "The book festival was a success and a lot of money was raised. ", "album_id": "72157625080616410", "photo_flickr_id": "5044538049", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46011", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the book festival was a success and a lot of money was raised .", "storylet_id": "230059"}], [{"original_text": "I went to an art museum for local talet. ", "album_id": "72157625080616410", "photo_flickr_id": "5045153128", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "46012", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to an art museum for local talet .", "storylet_id": "230060"}], [{"original_text": "One man was autographing a book for me that he published. ", "album_id": "72157625080616410", "photo_flickr_id": "5044532685", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "46012", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one man was autographing a book for me that he published .", "storylet_id": "230061"}], [{"original_text": "This man creates illustrations and sells them. ", "album_id": "72157625080616410", "photo_flickr_id": "5045154712", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "46012", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this man creates illustrations and sells them .", "storylet_id": "230062"}], [{"original_text": "This particular author was my favorite, and he was kind enough to talk to me about his book. ", "album_id": "72157625080616410", "photo_flickr_id": "5044533129", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "46012", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this particular author was my favorite , and he was kind enough to talk to me about his book .", "storylet_id": "230063"}], [{"original_text": "Lastly was this amazing lady who is an amazing sketch artist. ", "album_id": "72157625080616410", "photo_flickr_id": "5044534027", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "46012", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly was this amazing lady who is an amazing sketch artist .", "storylet_id": "230064"}], [{"original_text": "As i sat down in my office, i couldn't let go of my pen", "album_id": "72157625080616410", "photo_flickr_id": "5044532685", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "46013", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as i sat down in my office , i could n't let go of my pen", "storylet_id": "230065"}], [{"original_text": "I kept on signing books and stacks of books", "album_id": "72157625080616410", "photo_flickr_id": "5045154712", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "46013", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i kept on signing books and stacks of books", "storylet_id": "230066"}], [{"original_text": "It was so addictive that i didn't realize my pen wasn't writing", "album_id": "72157625080616410", "photo_flickr_id": "5044533129", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "46013", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was so addictive that i did n't realize my pen was n't writing", "storylet_id": "230067"}], [{"original_text": "After all said and done, my books were ready for display", "album_id": "72157625080616410", "photo_flickr_id": "5044535837", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "46013", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after all said and done , my books were ready for display", "storylet_id": "230068"}], [{"original_text": "At the end of the day my signature was on every material around at the book festival", "album_id": "72157625080616410", "photo_flickr_id": "5044538049", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "46013", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day my signature was on every material around at the book festival", "storylet_id": "230069"}], [{"original_text": "We attended a book festival where the authors of the featured books were on hand for book signings.", "album_id": "72157625080616410", "photo_flickr_id": "5045153128", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "46014", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we attended a book festival where the authors of the featured books were on hand for book signings .", "storylet_id": "230070"}], [{"original_text": "They were all so generous to stay the long hours and sign our books.", "album_id": "72157625080616410", "photo_flickr_id": "5044532685", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "46014", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were all so generous to stay the long hours and sign our books .", "storylet_id": "230071"}], [{"original_text": "It was interesting to tell the author how you felt about his characters.", "album_id": "72157625080616410", "photo_flickr_id": "5045154712", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "46014", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was interesting to tell the author how you felt about his characters .", "storylet_id": "230072"}], [{"original_text": "They wrote very personalized messages.", "album_id": "72157625080616410", "photo_flickr_id": "5044533129", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "46014", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they wrote very personalized messages .", "storylet_id": "230073"}], [{"original_text": "I can't wait for the next book from each of them.", "album_id": "72157625080616410", "photo_flickr_id": "5044534027", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "46014", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ca n't wait for the next book from each of them .", "storylet_id": "230074"}], [{"original_text": "We were speeding as fast as we could down the freeway.", "album_id": "72157594456421119", "photo_flickr_id": "343870134", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46015", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were speeding as fast as we could down the freeway .", "storylet_id": "230075"}], [{"original_text": "We looked behind us and saw that there were still police following us.", "album_id": "72157594456421119", "photo_flickr_id": "343900147", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46015", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we looked behind us and saw that there were still police following us .", "storylet_id": "230076"}], [{"original_text": "There were even some cops on bikes.", "album_id": "72157594456421119", "photo_flickr_id": "343881687", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46015", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were even some cops on bikes .", "storylet_id": "230077"}], [{"original_text": "Eventually we hid and they couldn't find us.", "album_id": "72157594456421119", "photo_flickr_id": "343877260", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46015", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "eventually we hid and they could n't find us .", "storylet_id": "230078"}], [{"original_text": "Good thing we gave the cops a slip that day or we'd be in jail.", "album_id": "72157594456421119", "photo_flickr_id": "343900148", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46015", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "good thing we gave the cops a slip that day or we 'd be in jail .", "storylet_id": "230079"}], [{"original_text": "While on our way home from shopping we were stopped by a police roadblock.", "album_id": "72157594456421119", "photo_flickr_id": "343877260", "setting": "first-2-pick-and-tell", "worker_id": "JU8RAMYLFNIQBLD", "story_id": "46016", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while on our way home from shopping we were stopped by a police roadblock .", "storylet_id": "230080"}], [{"original_text": "Suddenly a white car going about 100 miles an hour zips right past the roadblock.", "album_id": "72157594456421119", "photo_flickr_id": "343881685", "setting": "first-2-pick-and-tell", "worker_id": "JU8RAMYLFNIQBLD", "story_id": "46016", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "suddenly a white car going about 100 miles an hour zips right past the roadblock .", "storylet_id": "230081"}], [{"original_text": "A motorcycle cop was in hot pursuit of the white car.", "album_id": "72157594456421119", "photo_flickr_id": "343881686", "setting": "first-2-pick-and-tell", "worker_id": "JU8RAMYLFNIQBLD", "story_id": "46016", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a motorcycle cop was in hot pursuit of the white car .", "storylet_id": "230082"}], [{"original_text": "All the police cars except the one blocking the road went racing after the white car.", "album_id": "72157594456421119", "photo_flickr_id": "343900147", "setting": "first-2-pick-and-tell", "worker_id": "JU8RAMYLFNIQBLD", "story_id": "46016", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all the police cars except the one blocking the road went racing after the white car .", "storylet_id": "230083"}], [{"original_text": "When shots started flying between the cops and the car we left our car and got as far away as we could to watch at a safe distance.", "album_id": "72157594456421119", "photo_flickr_id": "343900150", "setting": "first-2-pick-and-tell", "worker_id": "JU8RAMYLFNIQBLD", "story_id": "46016", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when shots started flying between the cops and the car we left our car and got as far away as we could to watch at a safe distance .", "storylet_id": "230084"}], [{"original_text": "Traffic was going along the high way.", "album_id": "72157594456421119", "photo_flickr_id": "343870134", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46017", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "traffic was going along the high way .", "storylet_id": "230085"}], [{"original_text": "All of a sudden the police chased a car.", "album_id": "72157594456421119", "photo_flickr_id": "343900147", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46017", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of a sudden the police chased a car .", "storylet_id": "230086"}], [{"original_text": "A motorcycle followed along.", "album_id": "72157594456421119", "photo_flickr_id": "343881687", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46017", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a motorcycle followed along .", "storylet_id": "230087"}], [{"original_text": "The police car blocked off the car.", "album_id": "72157594456421119", "photo_flickr_id": "343877260", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46017", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the police car blocked off the car .", "storylet_id": "230088"}], [{"original_text": "People looked on at the site.", "album_id": "72157594456421119", "photo_flickr_id": "343900148", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46017", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people looked on at the site .", "storylet_id": "230089"}], [{"original_text": " Today was the day. The officer would finally catch someone speeding.", "album_id": "72157594456421119", "photo_flickr_id": "343877260", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46018", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day . the officer would finally catch someone speeding .", "storylet_id": "230090"}], [{"original_text": "He finally found someone who was speeding. Time to get into action", "album_id": "72157594456421119", "photo_flickr_id": "343881685", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46018", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he finally found someone who was speeding . time to get into action", "storylet_id": "230091"}], [{"original_text": "However the person was far too fast.", "album_id": "72157594456421119", "photo_flickr_id": "343881686", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46018", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however the person was far too fast .", "storylet_id": "230092"}], [{"original_text": "Faster than the cop cars in fact! The car unfortunately got away.", "album_id": "72157594456421119", "photo_flickr_id": "343900147", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46018", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "faster than the cop cars in fact ! the car unfortunately got away .", "storylet_id": "230093"}], [{"original_text": "Officer speedly still reflects on that day as his biggest regret.", "album_id": "72157594456421119", "photo_flickr_id": "343900150", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46018", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "officer speedly still reflects on that day as his biggest regret .", "storylet_id": "230094"}], [{"original_text": "There was a high speed chase on the highway.", "album_id": "72157594456421119", "photo_flickr_id": "343870134", "setting": "last-3-pick-old-and-tell", "worker_id": "XANY33DXDMAOJYJ", "story_id": "46019", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a high speed chase on the highway .", "storylet_id": "230095"}], [{"original_text": "The police came out in full force.", "album_id": "72157594456421119", "photo_flickr_id": "343900147", "setting": "last-3-pick-old-and-tell", "worker_id": "XANY33DXDMAOJYJ", "story_id": "46019", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the police came out in full force .", "storylet_id": "230096"}], [{"original_text": "Even the motorcycle cops joined the chase.", "album_id": "72157594456421119", "photo_flickr_id": "343881687", "setting": "last-3-pick-old-and-tell", "worker_id": "XANY33DXDMAOJYJ", "story_id": "46019", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the motorcycle cops joined the chase .", "storylet_id": "230097"}], [{"original_text": "Traffic was stopped at the exits so the perpetrator could not escape.", "album_id": "72157594456421119", "photo_flickr_id": "343877260", "setting": "last-3-pick-old-and-tell", "worker_id": "XANY33DXDMAOJYJ", "story_id": "46019", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "traffic was stopped at the exits so the perpetrator could not escape .", "storylet_id": "230098"}], [{"original_text": "Onlookers gathered at the overpass to see the outcome.", "album_id": "72157594456421119", "photo_flickr_id": "343900148", "setting": "last-3-pick-old-and-tell", "worker_id": "XANY33DXDMAOJYJ", "story_id": "46019", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "onlookers gathered at the overpass to see the outcome .", "storylet_id": "230099"}], [{"original_text": "We took some photos today.", "album_id": "72157594460777407", "photo_flickr_id": "339659501", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46020", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took some photos today .", "storylet_id": "230100"}], [{"original_text": "We took a lot of them.", "album_id": "72157594460777407", "photo_flickr_id": "339676370", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46020", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a lot of them .", "storylet_id": "230101"}], [{"original_text": "We made up a set.", "album_id": "72157594460777407", "photo_flickr_id": "339685786", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46020", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we made up a set .", "storylet_id": "230102"}], [{"original_text": "And then we set up the cameras.", "album_id": "72157594460777407", "photo_flickr_id": "339685790", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46020", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and then we set up the cameras .", "storylet_id": "230103"}], [{"original_text": "Today was a productive day.", "album_id": "72157594460777407", "photo_flickr_id": "346521947", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46020", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "today was a productive day .", "storylet_id": "230104"}], [{"original_text": "Filming a documentary. ", "album_id": "72157594460777407", "photo_flickr_id": "339659501", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46021", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "filming a documentary .", "storylet_id": "230105"}], [{"original_text": "The lighting for maximum viewing enjoyment. ", "album_id": "72157594460777407", "photo_flickr_id": "339676362", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46021", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lighting for maximum viewing enjoyment .", "storylet_id": "230106"}], [{"original_text": "Setting up the camera. ", "album_id": "72157594460777407", "photo_flickr_id": "339685781", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46021", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "setting up the camera .", "storylet_id": "230107"}], [{"original_text": "And now it is ready to go. ", "album_id": "72157594460777407", "photo_flickr_id": "339685786", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46021", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and now it is ready to go .", "storylet_id": "230108"}], [{"original_text": "Different angles works best for different types of views. ", "album_id": "72157594460777407", "photo_flickr_id": "346521947", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46021", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "different angles works best for different types of views .", "storylet_id": "230109"}], [{"original_text": "The camera was setup ready to film.", "album_id": "72157594460777407", "photo_flickr_id": "339659501", "setting": "last-3-pick-old-and-tell", "worker_id": "W08NTZZ3035LR1R", "story_id": "46022", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the camera was setup ready to film .", "storylet_id": "230110"}], [{"original_text": "All equipment was standing nearby.", "album_id": "72157594460777407", "photo_flickr_id": "339676362", "setting": "last-3-pick-old-and-tell", "worker_id": "W08NTZZ3035LR1R", "story_id": "46022", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all equipment was standing nearby .", "storylet_id": "230111"}], [{"original_text": "The camera man checks his camera to make sure it is good to go.", "album_id": "72157594460777407", "photo_flickr_id": "339685781", "setting": "last-3-pick-old-and-tell", "worker_id": "W08NTZZ3035LR1R", "story_id": "46022", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the camera man checks his camera to make sure it is good to go .", "storylet_id": "230112"}], [{"original_text": "After analyzing the camera, the camera man begins filming.", "album_id": "72157594460777407", "photo_flickr_id": "339685786", "setting": "last-3-pick-old-and-tell", "worker_id": "W08NTZZ3035LR1R", "story_id": "46022", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after analyzing the camera , the camera man begins filming .", "storylet_id": "230113"}], [{"original_text": "Nearby another camera man shoots his camera from a different angle.", "album_id": "72157594460777407", "photo_flickr_id": "346521947", "setting": "last-3-pick-old-and-tell", "worker_id": "W08NTZZ3035LR1R", "story_id": "46022", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "nearby another camera man shoots his camera from a different angle .", "storylet_id": "230114"}], [{"original_text": "The camera crew is setting up for their shot ", "album_id": "72157594460777407", "photo_flickr_id": "339659501", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "46023", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the camera crew is setting up for their shot", "storylet_id": "230115"}], [{"original_text": "the objects are moving pretty fast for the camera ", "album_id": "72157594460777407", "photo_flickr_id": "339676370", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "46023", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the objects are moving pretty fast for the camera", "storylet_id": "230116"}], [{"original_text": "each person gets ready for their place ", "album_id": "72157594460777407", "photo_flickr_id": "339685786", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "46023", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each person gets ready for their place", "storylet_id": "230117"}], [{"original_text": "the camera man is trying to focus ", "album_id": "72157594460777407", "photo_flickr_id": "339685790", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "46023", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the camera man is trying to focus", "storylet_id": "230118"}], [{"original_text": "and get the perfect spot for filming ", "album_id": "72157594460777407", "photo_flickr_id": "346521947", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "46023", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and get the perfect spot for filming", "storylet_id": "230119"}], [{"original_text": "It's the first day of the movie shoot. ", "album_id": "72157594460777407", "photo_flickr_id": "339659501", "setting": "last-3-pick-old-and-tell", "worker_id": "XANY33DXDMAOJYJ", "story_id": "46024", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's the first day of the movie shoot .", "storylet_id": "230120"}], [{"original_text": "They built scaffolding for one of the scenes. ", "album_id": "72157594460777407", "photo_flickr_id": "339676362", "setting": "last-3-pick-old-and-tell", "worker_id": "XANY33DXDMAOJYJ", "story_id": "46024", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they built scaffolding for one of the scenes .", "storylet_id": "230121"}], [{"original_text": "The director got up on a ladder to get the best angle.", "album_id": "72157594460777407", "photo_flickr_id": "339685781", "setting": "last-3-pick-old-and-tell", "worker_id": "XANY33DXDMAOJYJ", "story_id": "46024", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the director got up on a ladder to get the best angle .", "storylet_id": "230122"}], [{"original_text": "He is very dedicated to his art.", "album_id": "72157594460777407", "photo_flickr_id": "339685786", "setting": "last-3-pick-old-and-tell", "worker_id": "XANY33DXDMAOJYJ", "story_id": "46024", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he is very dedicated to his art .", "storylet_id": "230123"}], [{"original_text": " No matter the position, high or low, he is always willing to get the shot.", "album_id": "72157594460777407", "photo_flickr_id": "346521947", "setting": "last-3-pick-old-and-tell", "worker_id": "XANY33DXDMAOJYJ", "story_id": "46024", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "no matter the position , high or low , he is always willing to get the shot .", "storylet_id": "230124"}], [{"original_text": "We began our trip of China looking at this dragon. So cool.", "album_id": "72157624534607747", "photo_flickr_id": "4862693117", "setting": "first-2-pick-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46025", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we began our trip of location looking at this dragon . so cool .", "storylet_id": "230125"}], [{"original_text": "I befriended this old man and asked him where I can find some trinkets at.", "album_id": "72157624534607747", "photo_flickr_id": "4862692707", "setting": "first-2-pick-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46025", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i befriended this old man and asked him where i can find some trinkets at .", "storylet_id": "230126"}], [{"original_text": "He pointed me to this vendor who had these adorable key chains!", "album_id": "72157624534607747", "photo_flickr_id": "4863318084", "setting": "first-2-pick-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46025", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he pointed me to this vendor who had these adorable key chains !", "storylet_id": "230127"}], [{"original_text": "I also wanted to buy this pig but it was out of my price range.", "album_id": "72157624534607747", "photo_flickr_id": "4863320108", "setting": "first-2-pick-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46025", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also wanted to buy this pig but it was out of my price range .", "storylet_id": "230128"}], [{"original_text": "Even the graffiti in the city was strangely exotic. I loved my china trip.", "album_id": "72157624534607747", "photo_flickr_id": "4862701327", "setting": "first-2-pick-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46025", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the graffiti in the city was strangely exotic . i loved my china trip .", "storylet_id": "230129"}], [{"original_text": "We went to a small town in china to met the people.", "album_id": "72157624534607747", "photo_flickr_id": "4862692707", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46026", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a small town in location to met the people .", "storylet_id": "230130"}], [{"original_text": "They were very friendly and welcoming.", "album_id": "72157624534607747", "photo_flickr_id": "4862693977", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46026", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were very friendly and welcoming .", "storylet_id": "230131"}], [{"original_text": "They offered us the best ice cream.", "album_id": "72157624534607747", "photo_flickr_id": "4863317516", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46026", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they offered us the best ice cream .", "storylet_id": "230132"}], [{"original_text": "The souvenirs were just amazing. ", "album_id": "72157624534607747", "photo_flickr_id": "4863320108", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46026", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the souvenirs were just amazing .", "storylet_id": "230133"}], [{"original_text": "My son was very happy with his elephant.", "album_id": "72157624534607747", "photo_flickr_id": "4862701421", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46026", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my son was very happy with his elephant .", "storylet_id": "230134"}], [{"original_text": "the locals embrace their heritage ", "album_id": "72157624534607747", "photo_flickr_id": "4862692707", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46027", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the locals embrace their heritage", "storylet_id": "230135"}], [{"original_text": "many come from around the world to see the festivals ", "album_id": "72157624534607747", "photo_flickr_id": "4862693977", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46027", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many come from around the world to see the festivals", "storylet_id": "230136"}], [{"original_text": "there are many things to enjoy in china", "album_id": "72157624534607747", "photo_flickr_id": "4863317516", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46027", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are many things to enjoy in china", "storylet_id": "230137"}], [{"original_text": "this was an ancient Chinese symbol made of gold ", "album_id": "72157624534607747", "photo_flickr_id": "4863320108", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46027", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was an ancient chinese symbol made of gold", "storylet_id": "230138"}], [{"original_text": "even the kids take part in the festivals ", "album_id": "72157624534607747", "photo_flickr_id": "4862701421", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46027", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the kids take part in the festivals", "storylet_id": "230139"}], [{"original_text": "We went on a tour in Asia and saw some really interesting people there.", "album_id": "72157624534607747", "photo_flickr_id": "4862692707", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "46028", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on a tour in location and saw some really interesting people there .", "storylet_id": "230140"}], [{"original_text": "This man had a cool fan that he let us use.", "album_id": "72157624534607747", "photo_flickr_id": "4862693977", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "46028", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this man had a cool fan that he let us use .", "storylet_id": "230141"}], [{"original_text": "My family got to taste a lot of traditional asian cuisine.", "album_id": "72157624534607747", "photo_flickr_id": "4863317516", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "46028", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my family got to taste a lot of traditional asian cuisine .", "storylet_id": "230142"}], [{"original_text": "We went on tours of the ancient buildings there and got to see some cool artifacts.", "album_id": "72157624534607747", "photo_flickr_id": "4863320108", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "46028", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went on tours of the ancient buildings there and got to see some cool artifacts .", "storylet_id": "230143"}], [{"original_text": "At the end of the day, my little brother was very tired from walking and we pushed him around in his stroller.", "album_id": "72157624534607747", "photo_flickr_id": "4862701421", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "46028", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , my little brother was very tired from walking and we pushed him around in his stroller .", "storylet_id": "230144"}], [{"original_text": "We spent the day out at the markets and saw some amazing sculptures!", "album_id": "72157624534607747", "photo_flickr_id": "4862693117", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46029", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we spent the day out at the markets and saw some amazing sculptures !", "storylet_id": "230145"}], [{"original_text": "There was a sad man out and about that touched my heart.", "album_id": "72157624534607747", "photo_flickr_id": "4862692707", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46029", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a sad man out and about that touched my heart .", "storylet_id": "230146"}], [{"original_text": "We browsed the stores and found some cute stuffed animals.", "album_id": "72157624534607747", "photo_flickr_id": "4863318084", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46029", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we browsed the stores and found some cute stuffed animals .", "storylet_id": "230147"}], [{"original_text": "As well as an adorable pig souvenir. ", "album_id": "72157624534607747", "photo_flickr_id": "4863320108", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46029", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as well as an adorable pig souvenir .", "storylet_id": "230148"}], [{"original_text": "The architecture in this area is amazing!", "album_id": "72157624534607747", "photo_flickr_id": "4862701327", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46029", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the architecture in this area is amazing !", "storylet_id": "230149"}], [{"original_text": "I watched the funeral of an fallen Army Soldier.", "album_id": "72157632932199777", "photo_flickr_id": "8535422392", "setting": "first-2-pick-and-tell", "worker_id": "8O3ESDN2APPMW4E", "story_id": "46030", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i watched the funeral of an fallen army soldier .", "storylet_id": "230150"}], [{"original_text": "The fallen soldier was carried with great respect and shown full honors from his fellow soldiers.", "album_id": "72157632932199777", "photo_flickr_id": "8535421480", "setting": "first-2-pick-and-tell", "worker_id": "8O3ESDN2APPMW4E", "story_id": "46030", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fallen soldier was carried with great respect and shown full honors from his fellow soldiers .", "storylet_id": "230151"}], [{"original_text": "Bagpipes played, as the soldier was brought in.", "album_id": "72157632932199777", "photo_flickr_id": "8534312539", "setting": "first-2-pick-and-tell", "worker_id": "8O3ESDN2APPMW4E", "story_id": "46030", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "bagpipes played , as the soldier was brought in .", "storylet_id": "230152"}], [{"original_text": "The flag was folded with great respect and reverence.", "album_id": "72157632932199777", "photo_flickr_id": "8535419916", "setting": "first-2-pick-and-tell", "worker_id": "8O3ESDN2APPMW4E", "story_id": "46030", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the flag was folded with great respect and reverence .", "storylet_id": "230153"}], [{"original_text": "The flag was then presented to surviving family memeber, before the remains were laid to rest.", "album_id": "72157632932199777", "photo_flickr_id": "8534310915", "setting": "first-2-pick-and-tell", "worker_id": "8O3ESDN2APPMW4E", "story_id": "46030", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the flag was then presented to surviving family memeber , before the remains were laid to rest .", "storylet_id": "230154"}], [{"original_text": "Soldiers coming into a place of worship to carry on tradition.", "album_id": "72157632932199777", "photo_flickr_id": "8535422392", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46031", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "soldiers coming into a place of worship to carry on tradition .", "storylet_id": "230155"}], [{"original_text": "Guards coming into a place of worship carrying flags as a sign of respect.", "album_id": "72157632932199777", "photo_flickr_id": "8534313195", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46031", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "guards coming into a place of worship carrying flags as a sign of respect .", "storylet_id": "230156"}], [{"original_text": "A lone bag piper plays a haunting melody for the ceremony.", "album_id": "72157632932199777", "photo_flickr_id": "8534312539", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46031", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lone bag piper plays a haunting melody for the ceremony .", "storylet_id": "230157"}], [{"original_text": "Soldiers fold the flag in the traditional way for presentation.", "album_id": "72157632932199777", "photo_flickr_id": "8534311397", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46031", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "soldiers fold the flag in the traditional way for presentation .", "storylet_id": "230158"}], [{"original_text": "The folded flag is presented in the traditional way to a family member.", "album_id": "72157632932199777", "photo_flickr_id": "8534310915", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46031", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the folded flag is presented in the traditional way to a family member .", "storylet_id": "230159"}], [{"original_text": "the soldiers marched in line", "album_id": "72157632932199777", "photo_flickr_id": "8535422392", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46032", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the soldiers marched in line", "storylet_id": "230160"}], [{"original_text": "they carried the nations great flag into the church", "album_id": "72157632932199777", "photo_flickr_id": "8534313195", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46032", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they carried the nations great flag into the church", "storylet_id": "230161"}], [{"original_text": "many played bagpipes", "album_id": "72157632932199777", "photo_flickr_id": "8534312539", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46032", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many played bagpipes", "storylet_id": "230162"}], [{"original_text": "the soldier exchanged the flag to the other soldier", "album_id": "72157632932199777", "photo_flickr_id": "8534311397", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46032", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the soldier exchanged the flag to the other soldier", "storylet_id": "230163"}], [{"original_text": "and he gifted it to the veteran sitting down ", "album_id": "72157632932199777", "photo_flickr_id": "8534310915", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46032", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and he gifted it to the veteran sitting down", "storylet_id": "230164"}], [{"original_text": "The soldiers began the commencement of the ceremony with a march.", "album_id": "72157632932199777", "photo_flickr_id": "8535422392", "setting": "last-3-pick-old-and-tell", "worker_id": "UI7AKQYN7CJUU8D", "story_id": "46033", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the soldiers began the commencement of the ceremony with a march .", "storylet_id": "230165"}], [{"original_text": "The award was brought in to be presented to the awardee.", "album_id": "72157632932199777", "photo_flickr_id": "8535421480", "setting": "last-3-pick-old-and-tell", "worker_id": "UI7AKQYN7CJUU8D", "story_id": "46033", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the award was brought in to be presented to the awardee .", "storylet_id": "230166"}], [{"original_text": "The song was beautifully performed with bag pipes", "album_id": "72157632932199777", "photo_flickr_id": "8534312539", "setting": "last-3-pick-old-and-tell", "worker_id": "UI7AKQYN7CJUU8D", "story_id": "46033", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the song was beautifully performed with bag pipes", "storylet_id": "230167"}], [{"original_text": "An American flag was a gift given to the presenting soldier.", "album_id": "72157632932199777", "photo_flickr_id": "8535419916", "setting": "last-3-pick-old-and-tell", "worker_id": "UI7AKQYN7CJUU8D", "story_id": "46033", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an american flag was a gift given to the presenting soldier .", "storylet_id": "230168"}], [{"original_text": "The flag was presented, and given to the Honoree.", "album_id": "72157632932199777", "photo_flickr_id": "8534310915", "setting": "last-3-pick-old-and-tell", "worker_id": "UI7AKQYN7CJUU8D", "story_id": "46033", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the flag was presented , and given to the honoree .", "storylet_id": "230169"}], [{"original_text": "The ceremony started with the guards marching to the national anthem.", "album_id": "72157632932199777", "photo_flickr_id": "8535422392", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46034", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ceremony started with the guards marching to the national anthem .", "storylet_id": "230170"}], [{"original_text": "They presented some awards and saluted to show their respect.", "album_id": "72157632932199777", "photo_flickr_id": "8535421480", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46034", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they presented some awards and saluted to show their respect .", "storylet_id": "230171"}], [{"original_text": "We got to hear from a bag pipe player as well, which was really interesting and entertaining to see and hear.", "album_id": "72157632932199777", "photo_flickr_id": "8534312539", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46034", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got to hear from a bag pipe player as well , which was really interesting and entertaining to see and hear .", "storylet_id": "230172"}], [{"original_text": "These officers are taking an oath to serve their duties to the fullest they can achieve.", "album_id": "72157632932199777", "photo_flickr_id": "8535419916", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46034", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these officers are taking an oath to serve their duties to the fullest they can achieve .", "storylet_id": "230173"}], [{"original_text": "A veteran is then presented with flag to commemorate his bravery and service.", "album_id": "72157632932199777", "photo_flickr_id": "8534310915", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46034", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a veteran is then presented with flag to commemorate his bravery and service .", "storylet_id": "230174"}], [{"original_text": "There were such strange pieces throughout the building. ", "album_id": "72157636264697316", "photo_flickr_id": "10125871905", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46035", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were such strange pieces throughout the building .", "storylet_id": "230175"}], [{"original_text": "This statue crept me out a bit because it looked so real.", "album_id": "72157636264697316", "photo_flickr_id": "10125853125", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46035", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this statue crept me out a bit because it looked so real .", "storylet_id": "230176"}], [{"original_text": "The men looked so life-like.", "album_id": "72157636264697316", "photo_flickr_id": "10125983463", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46035", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the men looked so life-like .", "storylet_id": "230177"}], [{"original_text": "The architecture was done very well. ", "album_id": "72157636264697316", "photo_flickr_id": "10125979553", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46035", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the architecture was done very well .", "storylet_id": "230178"}], [{"original_text": "The building were so old and pretty.", "album_id": "72157636264697316", "photo_flickr_id": "10125833745", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46035", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the building were so old and pretty .", "storylet_id": "230179"}], [{"original_text": "Admiring the sculpture inside the church.", "album_id": "72157636264697316", "photo_flickr_id": "10125997643", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46036", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "admiring the sculpture inside the church .", "storylet_id": "230180"}], [{"original_text": "More to admire and wondering who crafted this piece.", "album_id": "72157636264697316", "photo_flickr_id": "10125983463", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46036", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "more to admire and wondering who crafted this piece .", "storylet_id": "230181"}], [{"original_text": "Walking through the beautiful rooms and getting a feel.", "album_id": "72157636264697316", "photo_flickr_id": "10125979553", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46036", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "walking through the beautiful rooms and getting a feel .", "storylet_id": "230182"}], [{"original_text": "The beginning of the tour, a lovely historic place.", "album_id": "72157636264697316", "photo_flickr_id": "10125833745", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46036", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beginning of the tour , a lovely historic place .", "storylet_id": "230183"}], [{"original_text": "Gorgeous stained glass windows adorn the structure.", "album_id": "72157636264697316", "photo_flickr_id": "10125768854", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46036", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "gorgeous stained glass windows adorn the structure .", "storylet_id": "230184"}], [{"original_text": "Today we went to the museum.", "album_id": "72157636264697316", "photo_flickr_id": "10125871905", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "46037", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to the museum .", "storylet_id": "230185"}], [{"original_text": "There were statues of old kings.", "album_id": "72157636264697316", "photo_flickr_id": "10125853125", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "46037", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were statues of old kings .", "storylet_id": "230186"}], [{"original_text": "And statues of old soldiers.", "album_id": "72157636264697316", "photo_flickr_id": "10125983463", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "46037", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and statues of old soldiers .", "storylet_id": "230187"}], [{"original_text": "The building was beautiful.", "album_id": "72157636264697316", "photo_flickr_id": "10125979553", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "46037", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the building was beautiful .", "storylet_id": "230188"}], [{"original_text": "We will come back again soon.", "album_id": "72157636264697316", "photo_flickr_id": "10125833745", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "46037", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we will come back again soon .", "storylet_id": "230189"}], [{"original_text": "We went to a museum in England today. I saw mummies.", "album_id": "72157636264697316", "photo_flickr_id": "10125997643", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "46038", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a museum in location today . i saw mummies .", "storylet_id": "230190"}], [{"original_text": "This mummy looks really creepy with its pose.", "album_id": "72157636264697316", "photo_flickr_id": "10125983463", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "46038", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this mummy looks really creepy with its pose .", "storylet_id": "230191"}], [{"original_text": "The building we were in was super pretty.", "album_id": "72157636264697316", "photo_flickr_id": "10125979553", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "46038", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the building we were in was super pretty .", "storylet_id": "230192"}], [{"original_text": "From the outside, the scene was old and quaint.", "album_id": "72157636264697316", "photo_flickr_id": "10125833745", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "46038", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "from the outside , the scene was old and quaint .", "storylet_id": "230193"}], [{"original_text": "The windows also had some really cool detail. I enjoyed this trip.", "album_id": "72157636264697316", "photo_flickr_id": "10125768854", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "46038", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the windows also had some really cool detail . i enjoyed this trip .", "storylet_id": "230194"}], [{"original_text": "There was so much history here.", "album_id": "72157636264697316", "photo_flickr_id": "10125871905", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "46039", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was so much history here .", "storylet_id": "230195"}], [{"original_text": "And so much art to see.", "album_id": "72157636264697316", "photo_flickr_id": "10125853125", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "46039", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and so much art to see .", "storylet_id": "230196"}], [{"original_text": "He looked so peaceful as he lay.", "album_id": "72157636264697316", "photo_flickr_id": "10125983463", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "46039", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he looked so peaceful as he lay .", "storylet_id": "230197"}], [{"original_text": "This was a place for all to rejoice", "album_id": "72157636264697316", "photo_flickr_id": "10125979553", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "46039", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was a place for all to rejoice", "storylet_id": "230198"}], [{"original_text": "Even from the outside you knew it was special.", "album_id": "72157636264697316", "photo_flickr_id": "10125833745", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "46039", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even from the outside you knew it was special .", "storylet_id": "230199"}], [{"original_text": "I attended a funeral for the first time yesterday.", "album_id": "72157630078030316", "photo_flickr_id": "7350422846", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46040", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i attended a funeral for the first time yesterday .", "storylet_id": "230200"}], [{"original_text": "There was a lot of people mourning.", "album_id": "72157630078030316", "photo_flickr_id": "7165210143", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46040", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of people mourning .", "storylet_id": "230201"}], [{"original_text": "They slowly lowered the coffin into the ground.", "album_id": "72157630078030316", "photo_flickr_id": "7165210091", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46040", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they slowly lowered the coffin into the ground .", "storylet_id": "230202"}], [{"original_text": "Many people were dressed in traditional funeral attire.", "album_id": "72157630078030316", "photo_flickr_id": "7165209971", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46040", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many people were dressed in traditional funeral attire .", "storylet_id": "230203"}], [{"original_text": "There were many people that had good things to say about the one who passed away.", "album_id": "72157630078030316", "photo_flickr_id": "7350422212", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46040", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were many people that had good things to say about the one who passed away .", "storylet_id": "230204"}], [{"original_text": "On their way to the cemetery. ", "album_id": "72157630078030316", "photo_flickr_id": "7350422846", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46041", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on their way to the cemetery .", "storylet_id": "230205"}], [{"original_text": "Following the casket. ", "album_id": "72157630078030316", "photo_flickr_id": "7350422702", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46041", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "following the casket .", "storylet_id": "230206"}], [{"original_text": "Carrying the casket , for a final farewell. ", "album_id": "72157630078030316", "photo_flickr_id": "7165210345", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46041", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "carrying the casket , for a final farewell .", "storylet_id": "230207"}], [{"original_text": "The lady is inconsolable after the tragic loss of her friend. ", "album_id": "72157630078030316", "photo_flickr_id": "7165210143", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46041", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lady is inconsolable after the tragic loss of her friend .", "storylet_id": "230208"}], [{"original_text": "Putting the casket six feet under. ", "album_id": "72157630078030316", "photo_flickr_id": "7165210091", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46041", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "putting the casket six feet under .", "storylet_id": "230209"}], [{"original_text": "When the man died, his funeral was large and stately.", "album_id": "72157630078030316", "photo_flickr_id": "7350422846", "setting": "last-3-pick-old-and-tell", "worker_id": "FM0HJKBIT6535BR", "story_id": "46042", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when the man died , his funeral was large and stately .", "storylet_id": "230210"}], [{"original_text": "Many people cried during the ceremony.", "album_id": "72157630078030316", "photo_flickr_id": "7165210143", "setting": "last-3-pick-old-and-tell", "worker_id": "FM0HJKBIT6535BR", "story_id": "46042", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people cried during the ceremony .", "storylet_id": "230211"}], [{"original_text": "The coffin was lowered carefully into the ground. ", "album_id": "72157630078030316", "photo_flickr_id": "7165210091", "setting": "last-3-pick-old-and-tell", "worker_id": "FM0HJKBIT6535BR", "story_id": "46042", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the coffin was lowered carefully into the ground .", "storylet_id": "230212"}], [{"original_text": "His sisters sat together.", "album_id": "72157630078030316", "photo_flickr_id": "7165209971", "setting": "last-3-pick-old-and-tell", "worker_id": "FM0HJKBIT6535BR", "story_id": "46042", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his sisters sat together .", "storylet_id": "230213"}], [{"original_text": "His brother gave a moving eulogy.", "album_id": "72157630078030316", "photo_flickr_id": "7350422212", "setting": "last-3-pick-old-and-tell", "worker_id": "FM0HJKBIT6535BR", "story_id": "46042", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his brother gave a moving eulogy .", "storylet_id": "230214"}], [{"original_text": "The people are on there way to a funeral with the horses.", "album_id": "72157630078030316", "photo_flickr_id": "7350422846", "setting": "last-3-pick-old-and-tell", "worker_id": "EDJAKRS3LKDFR5E", "story_id": "46043", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people are on there way to a funeral with the horses .", "storylet_id": "230215"}], [{"original_text": "The lady is crying because of the death of a family member.", "album_id": "72157630078030316", "photo_flickr_id": "7165210143", "setting": "last-3-pick-old-and-tell", "worker_id": "EDJAKRS3LKDFR5E", "story_id": "46043", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lady is crying because of the death of a family member .", "storylet_id": "230216"}], [{"original_text": "The burial spot has been dugg and the body is being laid to rest.", "album_id": "72157630078030316", "photo_flickr_id": "7165210091", "setting": "last-3-pick-old-and-tell", "worker_id": "EDJAKRS3LKDFR5E", "story_id": "46043", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the burial spot has been dugg and the body is being laid to rest .", "storylet_id": "230217"}], [{"original_text": "While the two little ladies is talking about the death. ", "album_id": "72157630078030316", "photo_flickr_id": "7165209971", "setting": "last-3-pick-old-and-tell", "worker_id": "EDJAKRS3LKDFR5E", "story_id": "46043", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while the two little ladies is talking about the death .", "storylet_id": "230218"}], [{"original_text": "While the preacher is preaching the last anfdfinal words of the funeral.", "album_id": "72157630078030316", "photo_flickr_id": "7350422212", "setting": "last-3-pick-old-and-tell", "worker_id": "EDJAKRS3LKDFR5E", "story_id": "46043", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while the preacher is preaching the last anfdfinal words of the funeral .", "storylet_id": "230219"}], [{"original_text": "My father requested in his last will that he have an old fashioned funeral.", "album_id": "72157630078030316", "photo_flickr_id": "7350422846", "setting": "last-3-pick-old-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "46044", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my father requested in his last will that he have an old fashioned funeral .", "storylet_id": "230220"}], [{"original_text": "A horse and buggy carriage carried him to the grave site.", "album_id": "72157630078030316", "photo_flickr_id": "7350422702", "setting": "last-3-pick-old-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "46044", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a horse and buggy carriage carried him to the grave site .", "storylet_id": "230221"}], [{"original_text": "The pall bearers solemnly carried my father's coffin to the cemetary. ", "album_id": "72157630078030316", "photo_flickr_id": "7165210345", "setting": "last-3-pick-old-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "46044", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the pall bearers solemnly carried my father 's coffin to the cemetary .", "storylet_id": "230222"}], [{"original_text": "Mom displays her sorrow as she quietly cried throughout the ceremony.", "album_id": "72157630078030316", "photo_flickr_id": "7165210143", "setting": "last-3-pick-old-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "46044", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom displays her sorrow as she quietly cried throughout the ceremony .", "storylet_id": "230223"}], [{"original_text": "Dad is lowered into his final resting space. Peace be with him now and forever.", "album_id": "72157630078030316", "photo_flickr_id": "7165210091", "setting": "last-3-pick-old-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "46044", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dad is lowered into his final resting space . peace be with him now and forever .", "storylet_id": "230224"}], [{"original_text": "The ambassadors funeral had was a grand scene, many people turned out for his final farewell.", "album_id": "72157632947336586", "photo_flickr_id": "8538057189", "setting": "first-2-pick-and-tell", "worker_id": "VSVO9W43N0S6NQH", "story_id": "46045", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ambassadors funeral had was a grand scene , many people turned out for his final farewell .", "storylet_id": "230225"}], [{"original_text": "Among the many people was his daughter, you could visually tell it took a lot of strength to see her father pass. ", "album_id": "72157632947336586", "photo_flickr_id": "8538056649", "setting": "first-2-pick-and-tell", "worker_id": "VSVO9W43N0S6NQH", "story_id": "46045", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "among the many people was his daughter , you could visually tell it took a lot of strength to see her father pass .", "storylet_id": "230226"}], [{"original_text": "After the viewing the wake was to be held at a local military establishment. The guests were met by the services members with honor. ", "album_id": "72157632947336586", "photo_flickr_id": "8539173488", "setting": "first-2-pick-and-tell", "worker_id": "VSVO9W43N0S6NQH", "story_id": "46045", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the viewing the wake was to be held at a local military establishment . the guests were met by the services members with honor .", "storylet_id": "230227"}], [{"original_text": "Many people had questions for the ambassadors replacement however, he politely declined each saying that \"It is not the time for these questions\"", "album_id": "72157632947336586", "photo_flickr_id": "8539170338", "setting": "first-2-pick-and-tell", "worker_id": "VSVO9W43N0S6NQH", "story_id": "46045", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many people had questions for the ambassadors replacement however , he politely declined each saying that `` it is not the time for these questions ''", "storylet_id": "230228"}], [{"original_text": "After the wake the ambassadors replacement met with the prime minister for a quick public photo shoot. ", "album_id": "72157632947336586", "photo_flickr_id": "8538063979", "setting": "first-2-pick-and-tell", "worker_id": "VSVO9W43N0S6NQH", "story_id": "46045", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the wake the ambassadors replacement met with the prime minister for a quick public photo shoot .", "storylet_id": "230229"}], [{"original_text": "We were honored while we were on vacation to be invited to see a official getting sworn in.", "album_id": "72157632947336586", "photo_flickr_id": "8539169170", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "46046", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were honored while we were on vacation to be invited to see a official getting sworn in .", "storylet_id": "230230"}], [{"original_text": "The officials arrived and walked down the red carpet.", "album_id": "72157632947336586", "photo_flickr_id": "8539173488", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "46046", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the officials arrived and walked down the red carpet .", "storylet_id": "230231"}], [{"original_text": "The officials signed their contracts that made the contracts legal.", "album_id": "72157632947336586", "photo_flickr_id": "8539163288", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "46046", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the officials signed their contracts that made the contracts legal .", "storylet_id": "230232"}], [{"original_text": "Some of the major government officials from the Parliament had to leave.", "album_id": "72157632947336586", "photo_flickr_id": "8538829058", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "46046", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the major government officials from the organization had to leave .", "storylet_id": "230233"}], [{"original_text": " Towards the end of the night everybody gathered back at the restaurant.", "album_id": "72157632947336586", "photo_flickr_id": "8539170338", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "46046", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "towards the end of the night everybody gathered back at the restaurant .", "storylet_id": "230234"}], [{"original_text": "There is a memorial service going on today.", "album_id": "72157632947336586", "photo_flickr_id": "8538057189", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "46047", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is a memorial service going on today .", "storylet_id": "230235"}], [{"original_text": "A grieving daughter looks down at her father.", "album_id": "72157632947336586", "photo_flickr_id": "8538056649", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "46047", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a grieving daughter looks down at her father .", "storylet_id": "230236"}], [{"original_text": "She is then escorted through a bunch of military men.", "album_id": "72157632947336586", "photo_flickr_id": "8539173488", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "46047", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she is then escorted through a bunch of military men .", "storylet_id": "230237"}], [{"original_text": "Her escort greets guests.", "album_id": "72157632947336586", "photo_flickr_id": "8539170338", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "46047", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her escort greets guests .", "storylet_id": "230238"}], [{"original_text": "And also powerful men after the funeral.", "album_id": "72157632947336586", "photo_flickr_id": "8538063979", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "46047", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and also powerful men after the funeral .", "storylet_id": "230239"}], [{"original_text": "The president of Ecuador arrives in Venezuala.", "album_id": "72157632947336586", "photo_flickr_id": "8539169170", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46048", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the president of location arrives in location .", "storylet_id": "230240"}], [{"original_text": "The President and his wife are given a warm welcome.", "album_id": "72157632947336586", "photo_flickr_id": "8539173488", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46048", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the president and his wife are given a warm welcome .", "storylet_id": "230241"}], [{"original_text": "He is here to attend the funeral of Hugo Chavez.", "album_id": "72157632947336586", "photo_flickr_id": "8539163288", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46048", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he is here to attend the funeral of [male] chavez .", "storylet_id": "230242"}], [{"original_text": "He must return to his home country, where his people need him.", "album_id": "72157632947336586", "photo_flickr_id": "8538829058", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46048", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he must return to his home country , where his people need him .", "storylet_id": "230243"}], [{"original_text": "Back in Ecuador he is greeted by his many friends and supporters.", "album_id": "72157632947336586", "photo_flickr_id": "8539170338", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46048", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "back in location he is greeted by his many friends and supporters .", "storylet_id": "230244"}], [{"original_text": "His father, who was once so close, now laid in a casket - dead.", "album_id": "72157632947336586", "photo_flickr_id": "8538057189", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46049", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "his father , who was once so close , now laid in a casket - dead .", "storylet_id": "230245"}], [{"original_text": "He and his sister mourned together, remembering their childhood.", "album_id": "72157632947336586", "photo_flickr_id": "8538056649", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46049", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he and his sister mourned together , remembering their childhood .", "storylet_id": "230246"}], [{"original_text": "The Navy guard was there to celebrate his father's life with them.", "album_id": "72157632947336586", "photo_flickr_id": "8539173488", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46049", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the organization guard was there to celebrate his father 's life with them .", "storylet_id": "230247"}], [{"original_text": "After the funeral, there was a celebration of his father's life.", "album_id": "72157632947336586", "photo_flickr_id": "8539170338", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46049", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the funeral , there was a celebration of his father 's life .", "storylet_id": "230248"}], [{"original_text": "He truly learned how respected and revered his father really was.", "album_id": "72157632947336586", "photo_flickr_id": "8538063979", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46049", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he truly learned how respected and revered his father really was .", "storylet_id": "230249"}], [{"original_text": "Today our class went to the cemetery to explore.", "album_id": "72157624235048826", "photo_flickr_id": "4684167438", "setting": "first-2-pick-and-tell", "worker_id": "4RUSONSNZQQDI3T", "story_id": "46050", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today our class went to the cemetery to explore .", "storylet_id": "230250"}], [{"original_text": "As soon as you get close enough to the headstones you can tell the different shapes and ages.", "album_id": "72157624235048826", "photo_flickr_id": "4689524494", "setting": "first-2-pick-and-tell", "worker_id": "4RUSONSNZQQDI3T", "story_id": "46050", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as soon as you get close enough to the headstones you can tell the different shapes and ages .", "storylet_id": "230251"}], [{"original_text": "We came across this headstone of George who died in the 1550's.", "album_id": "72157624235048826", "photo_flickr_id": "4688888253", "setting": "first-2-pick-and-tell", "worker_id": "4RUSONSNZQQDI3T", "story_id": "46050", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we came across this headstone of [male] who died in the 1550 's .", "storylet_id": "230252"}], [{"original_text": "We imagined Betty was George's wife who died after him in the 1560's.", "album_id": "72157624235048826", "photo_flickr_id": "4689522774", "setting": "first-2-pick-and-tell", "worker_id": "4RUSONSNZQQDI3T", "story_id": "46050", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we imagined [female] was [male] 's wife who died after him in the 1560 's .", "storylet_id": "230253"}], [{"original_text": "We noticed that this headstone was different than the prior 2. It was not as old.", "album_id": "72157624235048826", "photo_flickr_id": "4683537043", "setting": "first-2-pick-and-tell", "worker_id": "4RUSONSNZQQDI3T", "story_id": "46050", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we noticed that this headstone was different than the prior 2 . it was not as old .", "storylet_id": "230254"}], [{"original_text": "Cornelia passed away in 1936 at 78 years of age.", "album_id": "72157624235048826", "photo_flickr_id": "4683536447", "setting": "first-2-pick-and-tell", "worker_id": "G4TXDXZTSGWHJV8", "story_id": "46051", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] passed away in 1936 at 78 years of age .", "storylet_id": "230255"}], [{"original_text": "Alvis died in 1860 and was laid to rest in this cemetery.", "album_id": "72157624235048826", "photo_flickr_id": "4684165260", "setting": "first-2-pick-and-tell", "worker_id": "G4TXDXZTSGWHJV8", "story_id": "46051", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "alvis died in 1860 and was laid to rest in this cemetery .", "storylet_id": "230256"}], [{"original_text": "Nikotie passed in 1863 at the age of 23. She was married to Henry.", "album_id": "72157624235048826", "photo_flickr_id": "4683537043", "setting": "first-2-pick-and-tell", "worker_id": "G4TXDXZTSGWHJV8", "story_id": "46051", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nikotie passed in 1863 at the age of 23 . she was married to [male] .", "storylet_id": "230257"}], [{"original_text": "Phoebe died in 1861 at the age of 90.", "album_id": "72157624235048826", "photo_flickr_id": "4683538019", "setting": "first-2-pick-and-tell", "worker_id": "G4TXDXZTSGWHJV8", "story_id": "46051", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] died in 1861 at the age of 90 .", "storylet_id": "230258"}], [{"original_text": "This is the cemetery where these people are laid to rest.", "album_id": "72157624235048826", "photo_flickr_id": "4684167438", "setting": "first-2-pick-and-tell", "worker_id": "G4TXDXZTSGWHJV8", "story_id": "46051", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the cemetery where these people are laid to rest .", "storylet_id": "230259"}], [{"original_text": "It was a bit of a walk.", "album_id": "72157624235048826", "photo_flickr_id": "4684167438", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "46052", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a bit of a walk .", "storylet_id": "230260"}], [{"original_text": "To get to the old graveyard.", "album_id": "72157624235048826", "photo_flickr_id": "4689524494", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "46052", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to get to the old graveyard .", "storylet_id": "230261"}], [{"original_text": "But the family had come to see a few graves.", "album_id": "72157624235048826", "photo_flickr_id": "4688888253", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "46052", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but the family had come to see a few graves .", "storylet_id": "230262"}], [{"original_text": "The graves of old family members.", "album_id": "72157624235048826", "photo_flickr_id": "4689522774", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "46052", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the graves of old family members .", "storylet_id": "230263"}], [{"original_text": "They managed to find a few despite how old they were.", "album_id": "72157624235048826", "photo_flickr_id": "4683537043", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "46052", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they managed to find a few despite how old they were .", "storylet_id": "230264"}], [{"original_text": "One day, we went to the cemetery.", "album_id": "72157624235048826", "photo_flickr_id": "4684167438", "setting": "last-3-pick-old-and-tell", "worker_id": "1TAKDS03FA1PHQN", "story_id": "46053", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one day , we went to the cemetery .", "storylet_id": "230265"}], [{"original_text": "We say many gravestones along the woods, including standing and in-ground gravestones.", "album_id": "72157624235048826", "photo_flickr_id": "4689524494", "setting": "last-3-pick-old-and-tell", "worker_id": "1TAKDS03FA1PHQN", "story_id": "46053", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we say many gravestones along the woods , including standing and in-ground gravestones .", "storylet_id": "230266"}], [{"original_text": "We saw some notably older gravestones, including this one from 1858.", "album_id": "72157624235048826", "photo_flickr_id": "4688888253", "setting": "last-3-pick-old-and-tell", "worker_id": "1TAKDS03FA1PHQN", "story_id": "46053", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw some notably older gravestones , including this one from 1858 .", "storylet_id": "230267"}], [{"original_text": "Next, we saw Betty, who died in 1860.", "album_id": "72157624235048826", "photo_flickr_id": "4689522774", "setting": "last-3-pick-old-and-tell", "worker_id": "1TAKDS03FA1PHQN", "story_id": "46053", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next , we saw [female] , who died in 1860 .", "storylet_id": "230268"}], [{"original_text": "And the oldest gravestone was from 1839.", "album_id": "72157624235048826", "photo_flickr_id": "4683537043", "setting": "last-3-pick-old-and-tell", "worker_id": "1TAKDS03FA1PHQN", "story_id": "46053", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the oldest gravestone was from 1839 .", "storylet_id": "230269"}], [{"original_text": "I decided to take a walk in the park today since it was such a nice day.", "album_id": "72157624235048826", "photo_flickr_id": "4684167438", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46054", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to take a walk in the park today since it was such a nice day .", "storylet_id": "230270"}], [{"original_text": "I usually walk past the graveyard when I take my walks.", "album_id": "72157624235048826", "photo_flickr_id": "4689524494", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46054", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i usually walk past the graveyard when i take my walks .", "storylet_id": "230271"}], [{"original_text": "I decided to stop and take a look at some of the gravestones, which I have never done before.", "album_id": "72157624235048826", "photo_flickr_id": "4688888253", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46054", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i decided to stop and take a look at some of the gravestones , which i have never done before .", "storylet_id": "230272"}], [{"original_text": "I couldn't believe how old these gravestones where, they were amazing to see.", "album_id": "72157624235048826", "photo_flickr_id": "4689522774", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46054", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i could n't believe how old these gravestones where , they were amazing to see .", "storylet_id": "230273"}], [{"original_text": "This gravestone from 1863 caught my attention. His wife was so young when she passed away.", "album_id": "72157624235048826", "photo_flickr_id": "4683537043", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46054", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this gravestone from 1863 caught my attention . his wife was so young when she passed away .", "storylet_id": "230274"}], [{"original_text": "Each of these guitars cost $2000. ", "album_id": "72157625437769119", "photo_flickr_id": "5246926106", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46055", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "each of these guitars cost $ 2000 .", "storylet_id": "230275"}], [{"original_text": "The band dazzled the crowd with music and special effects. ", "album_id": "72157625437769119", "photo_flickr_id": "5246323615", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46055", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the band dazzled the crowd with music and special effects .", "storylet_id": "230276"}], [{"original_text": "Chris Gumfrey sang his heart out that night.", "album_id": "72157625437769119", "photo_flickr_id": "5246325935", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46055", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] gumfrey sang his heart out that night .", "storylet_id": "230277"}], [{"original_text": "This performer was amazing, she danced as the music played in the background. ", "album_id": "72157625437769119", "photo_flickr_id": "5246933152", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46055", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this performer was amazing , she danced as the music played in the background .", "storylet_id": "230278"}], [{"original_text": "Chris sang a song without music that had everyone crying. ", "album_id": "72157625437769119", "photo_flickr_id": "5246331513", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46055", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] sang a song without music that had everyone crying .", "storylet_id": "230279"}], [{"original_text": "Setting up the guitars for the concert.", "album_id": "72157625437769119", "photo_flickr_id": "5246926106", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46056", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "setting up the guitars for the concert .", "storylet_id": "230280"}], [{"original_text": "Rock band rocking the crowd.", "album_id": "72157625437769119", "photo_flickr_id": "5246327177", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46056", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "rock band rocking the crowd .", "storylet_id": "230281"}], [{"original_text": "Playing the piano and signing a slow song.", "album_id": "72157625437769119", "photo_flickr_id": "5246926996", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46056", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "playing the piano and signing a slow song .", "storylet_id": "230282"}], [{"original_text": "Playing her solo.", "album_id": "72157625437769119", "photo_flickr_id": "5246326441", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46056", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "playing her solo .", "storylet_id": "230283"}], [{"original_text": "Dancing on stage.", "album_id": "72157625437769119", "photo_flickr_id": "5246933152", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46056", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dancing on stage .", "storylet_id": "230284"}], [{"original_text": "A night out at a local artist concert at the beach was a lot of fun. Tons of people playing guitars and listening to new songs.", "album_id": "72157625437769119", "photo_flickr_id": "5246926106", "setting": "last-3-pick-old-and-tell", "worker_id": "477AE4TTCT57X5A", "story_id": "46057", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a night out at a local artist concert at the beach was a lot of fun . tons of people playing guitars and listening to new songs .", "storylet_id": "230285"}], [{"original_text": "This group was first to play, and they got the crowd wound up. They were a hit.", "album_id": "72157625437769119", "photo_flickr_id": "5246327177", "setting": "last-3-pick-old-and-tell", "worker_id": "477AE4TTCT57X5A", "story_id": "46057", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this group was first to play , and they got the crowd wound up . they were a hit .", "storylet_id": "230286"}], [{"original_text": "This man did a solo and it left everyone breathless.", "album_id": "72157625437769119", "photo_flickr_id": "5246926996", "setting": "last-3-pick-old-and-tell", "worker_id": "477AE4TTCT57X5A", "story_id": "46057", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this man did a solo and it left everyone breathless .", "storylet_id": "230287"}], [{"original_text": "Strange but fun, this act was interesting to watch.", "album_id": "72157625437769119", "photo_flickr_id": "5246326441", "setting": "last-3-pick-old-and-tell", "worker_id": "477AE4TTCT57X5A", "story_id": "46057", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "strange but fun , this act was interesting to watch .", "storylet_id": "230288"}], [{"original_text": "The night ended with a great female musician who lit up the stage.", "album_id": "72157625437769119", "photo_flickr_id": "5246933152", "setting": "last-3-pick-old-and-tell", "worker_id": "477AE4TTCT57X5A", "story_id": "46057", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night ended with a great female musician who lit up the stage .", "storylet_id": "230289"}], [{"original_text": "The guitars were setup before the start of the concert.", "album_id": "72157625437769119", "photo_flickr_id": "5246926106", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "46058", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guitars were setup before the start of the concert .", "storylet_id": "230290"}], [{"original_text": "The band started the gig with a rhythmic groove.", "album_id": "72157625437769119", "photo_flickr_id": "5246327177", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "46058", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the band started the gig with a rhythmic groove .", "storylet_id": "230291"}], [{"original_text": "Followed by a more laid back keyboard solo.", "album_id": "72157625437769119", "photo_flickr_id": "5246926996", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "46058", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "followed by a more laid back keyboard solo .", "storylet_id": "230292"}], [{"original_text": "And Janice amazed the crowd with her accordion skills.", "album_id": "72157625437769119", "photo_flickr_id": "5246326441", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "46058", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and [female] amazed the crowd with her accordion skills .", "storylet_id": "230293"}], [{"original_text": "And jazzed up the crowd enthusiasm with her tambourines.", "album_id": "72157625437769119", "photo_flickr_id": "5246933152", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "46058", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and jazzed up the crowd enthusiasm with her tambourines .", "storylet_id": "230294"}], [{"original_text": "A roadie had hung the guitars for easy access. ", "album_id": "72157625437769119", "photo_flickr_id": "5246926106", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46059", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a roadie had hung the guitars for easy access .", "storylet_id": "230295"}], [{"original_text": "This band changed guitars a lot. ", "album_id": "72157625437769119", "photo_flickr_id": "5246323615", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46059", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this band changed guitars a lot .", "storylet_id": "230296"}], [{"original_text": "They had two lead guitarist and both were fickle. ", "album_id": "72157625437769119", "photo_flickr_id": "5246325935", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46059", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had two lead guitarist and both were fickle .", "storylet_id": "230297"}], [{"original_text": "The tambourine girl was mostly for attention. ", "album_id": "72157625437769119", "photo_flickr_id": "5246933152", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46059", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the tambourine girl was mostly for attention .", "storylet_id": "230298"}], [{"original_text": "And the lead singer didn't play anything. ", "album_id": "72157625437769119", "photo_flickr_id": "5246331513", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46059", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the lead singer did n't play anything .", "storylet_id": "230299"}], [{"original_text": "It was a beautiful Sunday morning, everyone was walking to church.", "album_id": "72157631530976322", "photo_flickr_id": "7984257863", "setting": "first-2-pick-and-tell", "worker_id": "XMF2IV4FIVO1KJ6", "story_id": "46060", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful sunday morning , everyone was walking to church .", "storylet_id": "230300"}], [{"original_text": "Inside everything was ready for the congregation. ", "album_id": "72157631530976322", "photo_flickr_id": "7984258025", "setting": "first-2-pick-and-tell", "worker_id": "XMF2IV4FIVO1KJ6", "story_id": "46060", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside everything was ready for the congregation .", "storylet_id": "230301"}], [{"original_text": "The people headed to their seats.", "album_id": "72157631530976322", "photo_flickr_id": "7984126102", "setting": "first-2-pick-and-tell", "worker_id": "XMF2IV4FIVO1KJ6", "story_id": "46060", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people headed to their seats .", "storylet_id": "230302"}], [{"original_text": "The pulpit was ready and waiting for the preacher.", "album_id": "72157631530976322", "photo_flickr_id": "7984258091", "setting": "first-2-pick-and-tell", "worker_id": "XMF2IV4FIVO1KJ6", "story_id": "46060", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pulpit was ready and waiting for the preacher .", "storylet_id": "230303"}], [{"original_text": "After the service, everyone headed home. ", "album_id": "72157631530976322", "photo_flickr_id": "7984263526", "setting": "first-2-pick-and-tell", "worker_id": "XMF2IV4FIVO1KJ6", "story_id": "46060", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the service , everyone headed home .", "storylet_id": "230304"}], [{"original_text": "Today we had a meeting for a new movie about astronauts.", "album_id": "72157631530976322", "photo_flickr_id": "7984257787", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46061", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we had a meeting for a new movie about astronauts .", "storylet_id": "230305"}], [{"original_text": "A lot of people came.", "album_id": "72157631530976322", "photo_flickr_id": "7984263526", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46061", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of people came .", "storylet_id": "230306"}], [{"original_text": "The movie is a documentary.", "album_id": "72157631530976322", "photo_flickr_id": "7984231808", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46061", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the movie is a documentary .", "storylet_id": "230307"}], [{"original_text": "The director of the movie came of course.", "album_id": "72157631530976322", "photo_flickr_id": "7984126102", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46061", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the director of the movie came of course .", "storylet_id": "230308"}], [{"original_text": "It was a great time.", "album_id": "72157631530976322", "photo_flickr_id": "7984258025", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46061", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great time .", "storylet_id": "230309"}], [{"original_text": "Sailors gather at a church to honor a fallen comrade.", "album_id": "72157631530976322", "photo_flickr_id": "7984257863", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46062", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sailors gather at a church to honor a fallen comrade .", "storylet_id": "230310"}], [{"original_text": "The funeral service was held inside the church.", "album_id": "72157631530976322", "photo_flickr_id": "7984258025", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46062", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the funeral service was held inside the church .", "storylet_id": "230311"}], [{"original_text": "The father of the fallen sailor gave and an eulogy.", "album_id": "72157631530976322", "photo_flickr_id": "7984126102", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46062", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the father of the fallen sailor gave and an eulogy .", "storylet_id": "230312"}], [{"original_text": "There was a moment of silence to honor the sailor.", "album_id": "72157631530976322", "photo_flickr_id": "7984258091", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46062", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a moment of silence to honor the sailor .", "storylet_id": "230313"}], [{"original_text": "The service let out and everyone was fighting back tears.", "album_id": "72157631530976322", "photo_flickr_id": "7984263526", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46062", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the service let out and everyone was fighting back tears .", "storylet_id": "230314"}], [{"original_text": "When we got to the event there were already a lot of people there.", "album_id": "72157631530976322", "photo_flickr_id": "7984257863", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46063", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when we got to the event there were already a lot of people there .", "storylet_id": "230315"}], [{"original_text": "The inside of the building was very nice and well kept.", "album_id": "72157631530976322", "photo_flickr_id": "7984258025", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46063", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the inside of the building was very nice and well kept .", "storylet_id": "230316"}], [{"original_text": "Many people traveled far to attend.", "album_id": "72157631530976322", "photo_flickr_id": "7984126102", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46063", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many people traveled far to attend .", "storylet_id": "230317"}], [{"original_text": "While the event proceedings went by I found myself more intrigued with the design of the building itself.", "album_id": "72157631530976322", "photo_flickr_id": "7984258091", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46063", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while the event proceedings went by i found myself more intrigued with the design of the building itself .", "storylet_id": "230318"}], [{"original_text": "After it was over there was a mass exit of people.", "album_id": "72157631530976322", "photo_flickr_id": "7984263526", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46063", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after it was over there was a mass exit of people .", "storylet_id": "230319"}], [{"original_text": "People cam from all over to honor their friend Niel Armstrong.", "album_id": "72157631530976322", "photo_flickr_id": "7984257863", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "46064", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people cam from all over to honor their friend niel armstrong .", "storylet_id": "230320"}], [{"original_text": "The venue was set up very well. ", "album_id": "72157631530976322", "photo_flickr_id": "7984258025", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "46064", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the venue was set up very well .", "storylet_id": "230321"}], [{"original_text": "And everyone looked might fine dressed in their Sunday best.", "album_id": "72157631530976322", "photo_flickr_id": "7984126102", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "46064", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and everyone looked might fine dressed in their sunday best .", "storylet_id": "230322"}], [{"original_text": "The flowers around the venue gave it the perfect touch,", "album_id": "72157631530976322", "photo_flickr_id": "7984258091", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "46064", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the flowers around the venue gave it the perfect touch ,", "storylet_id": "230323"}], [{"original_text": "and allowed the attendees to really connect with the event.", "album_id": "72157631530976322", "photo_flickr_id": "7984263526", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "46064", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and allowed the attendees to really connect with the event .", "storylet_id": "230324"}], [{"original_text": "The people marched the street in memory of the man.", "album_id": "72157637647894305", "photo_flickr_id": "10844894755", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46065", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people marched the street in memory of the man .", "storylet_id": "230325"}], [{"original_text": "The officials made their way through town to show their condolences.", "album_id": "72157637647894305", "photo_flickr_id": "10845047434", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46065", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the officials made their way through town to show their condolences .", "storylet_id": "230326"}], [{"original_text": "His funeral procession passed through the streets.", "album_id": "72157637647894305", "photo_flickr_id": "10845013464", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46065", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his funeral procession passed through the streets .", "storylet_id": "230327"}], [{"original_text": "Solemnly, the people looked on.", "album_id": "72157637647894305", "photo_flickr_id": "10845228713", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46065", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "solemnly , the people looked on .", "storylet_id": "230328"}], [{"original_text": "Afterwards, the people chatted and visited.", "album_id": "72157637647894305", "photo_flickr_id": "10845046374", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46065", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , the people chatted and visited .", "storylet_id": "230329"}], [{"original_text": "Many people gathered today to honor the memory of Yao Minh.", "album_id": "72157637647894305", "photo_flickr_id": "10844894755", "setting": "first-2-pick-and-tell", "worker_id": "VSVO9W43N0S6NQH", "story_id": "46066", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people gathered today to honor the memory of yao minh .", "storylet_id": "230330"}], [{"original_text": "Among the many honored guests were numerous businessman. ", "album_id": "72157637647894305", "photo_flickr_id": "10845047434", "setting": "first-2-pick-and-tell", "worker_id": "VSVO9W43N0S6NQH", "story_id": "46066", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "among the many honored guests were numerous businessman .", "storylet_id": "230331"}], [{"original_text": "During the funeral many gave recounts of Yao Minh' life. ", "album_id": "72157637647894305", "photo_flickr_id": "10845043604", "setting": "first-2-pick-and-tell", "worker_id": "VSVO9W43N0S6NQH", "story_id": "46066", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "during the funeral many gave recounts of yao minh ' life .", "storylet_id": "230332"}], [{"original_text": "Among the recounts was a moving speech given by James Lou.", "album_id": "72157637647894305", "photo_flickr_id": "10844957676", "setting": "first-2-pick-and-tell", "worker_id": "VSVO9W43N0S6NQH", "story_id": "46066", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "among the recounts was a moving speech given by [male] [female] .", "storylet_id": "230333"}], [{"original_text": "After the speeches were given everyone lined up to pay their last respects to his memory. ", "album_id": "72157637647894305", "photo_flickr_id": "10845013464", "setting": "first-2-pick-and-tell", "worker_id": "VSVO9W43N0S6NQH", "story_id": "46066", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the speeches were given everyone lined up to pay their last respects to his memory .", "storylet_id": "230334"}], [{"original_text": "they were paying tribute to one of there colleges ", "album_id": "72157637647894305", "photo_flickr_id": "10844894755", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46067", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were paying tribute to one of there colleges", "storylet_id": "230335"}], [{"original_text": "he was a great man in their eyes", "album_id": "72157637647894305", "photo_flickr_id": "10845047434", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46067", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was a great man in their eyes", "storylet_id": "230336"}], [{"original_text": "they honored his memory with press confrence", "album_id": "72157637647894305", "photo_flickr_id": "10845043604", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46067", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they honored his memory with press confrence", "storylet_id": "230337"}], [{"original_text": "and this continued throughout the funeral process ", "album_id": "72157637647894305", "photo_flickr_id": "10844957676", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46067", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and this continued throughout the funeral process", "storylet_id": "230338"}], [{"original_text": "they finally layed him down to rest ", "album_id": "72157637647894305", "photo_flickr_id": "10845013464", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46067", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they finally layed him down to rest", "storylet_id": "230339"}], [{"original_text": "The people gather round and display a picture. ", "album_id": "72157637647894305", "photo_flickr_id": "10844894755", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46068", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people gather round and display a picture .", "storylet_id": "230340"}], [{"original_text": "Everyone faces forward and pays attention. ", "album_id": "72157637647894305", "photo_flickr_id": "10845047434", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46068", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone faces forward and pays attention .", "storylet_id": "230341"}], [{"original_text": "The people all gather round and take a moment of silence. ", "album_id": "72157637647894305", "photo_flickr_id": "10845013464", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46068", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people all gather round and take a moment of silence .", "storylet_id": "230342"}], [{"original_text": "The onlookers look on solemnly. ", "album_id": "72157637647894305", "photo_flickr_id": "10845228713", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46068", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the onlookers look on solemnly .", "storylet_id": "230343"}], [{"original_text": "After the proceedings, the men stand around and chat. ", "album_id": "72157637647894305", "photo_flickr_id": "10845046374", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46068", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the proceedings , the men stand around and chat .", "storylet_id": "230344"}], [{"original_text": "A crowd gathers to mourn a man who has passed away.", "album_id": "72157637647894305", "photo_flickr_id": "10844894755", "setting": "last-3-pick-old-and-tell", "worker_id": "XBSVQUG5HL8MB32", "story_id": "46069", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a crowd gathers to mourn a man who has passed away .", "storylet_id": "230345"}], [{"original_text": "Onlookers join together to grieve over his passing.", "album_id": "72157637647894305", "photo_flickr_id": "10845047434", "setting": "last-3-pick-old-and-tell", "worker_id": "XBSVQUG5HL8MB32", "story_id": "46069", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "onlookers join together to grieve over his passing .", "storylet_id": "230346"}], [{"original_text": "They body is laid in the center of the crowd as they pray.", "album_id": "72157637647894305", "photo_flickr_id": "10845013464", "setting": "last-3-pick-old-and-tell", "worker_id": "XBSVQUG5HL8MB32", "story_id": "46069", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they body is laid in the center of the crowd as they pray .", "storylet_id": "230347"}], [{"original_text": "Some men are dressed more formally than the monks.", "album_id": "72157637647894305", "photo_flickr_id": "10845228713", "setting": "last-3-pick-old-and-tell", "worker_id": "XBSVQUG5HL8MB32", "story_id": "46069", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some men are dressed more formally than the monks .", "storylet_id": "230348"}], [{"original_text": "Afterwards the crowd exchanges pleasantries and condolences.", "album_id": "72157637647894305", "photo_flickr_id": "10845046374", "setting": "last-3-pick-old-and-tell", "worker_id": "XBSVQUG5HL8MB32", "story_id": "46069", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards the crowd exchanges pleasantries and condolences .", "storylet_id": "230349"}], [{"original_text": "The funeral was one of the most somber and sad events I have ever seen.", "album_id": "72157625830823704", "photo_flickr_id": "5358177034", "setting": "first-2-pick-and-tell", "worker_id": "CMMZBS43FCZ62ZB", "story_id": "46070", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the funeral was one of the most somber and sad events i have ever seen .", "storylet_id": "230350"}], [{"original_text": "The transport awaits.", "album_id": "72157625830823704", "photo_flickr_id": "5358144384", "setting": "first-2-pick-and-tell", "worker_id": "CMMZBS43FCZ62ZB", "story_id": "46070", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the transport awaits .", "storylet_id": "230351"}], [{"original_text": "She gave her life in service of her country.", "album_id": "72157625830823704", "photo_flickr_id": "5358148912", "setting": "first-2-pick-and-tell", "worker_id": "CMMZBS43FCZ62ZB", "story_id": "46070", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she gave her life in service of her country .", "storylet_id": "230352"}], [{"original_text": "The proceedings were reverent.", "album_id": "72157625830823704", "photo_flickr_id": "5357536883", "setting": "first-2-pick-and-tell", "worker_id": "CMMZBS43FCZ62ZB", "story_id": "46070", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the proceedings were reverent .", "storylet_id": "230353"}], [{"original_text": "It was an unforgettable tribute.", "album_id": "72157625830823704", "photo_flickr_id": "5357539959", "setting": "first-2-pick-and-tell", "worker_id": "CMMZBS43FCZ62ZB", "story_id": "46070", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was an unforgettable tribute .", "storylet_id": "230354"}], [{"original_text": "All the police officers stand at attention remembering the life of an officer who died. ", "album_id": "72157625830823704", "photo_flickr_id": "5358144384", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46071", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all the police officers stand at attention remembering the life of an officer who died .", "storylet_id": "230355"}], [{"original_text": "The man plays the bagpipes for the family of the deceased officer. ", "album_id": "72157625830823704", "photo_flickr_id": "5358147684", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46071", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man plays the bagpipes for the family of the deceased officer .", "storylet_id": "230356"}], [{"original_text": "His fellow officers carry the casket that is decorated with the flag. ", "album_id": "72157625830823704", "photo_flickr_id": "5358148912", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46071", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his fellow officers carry the casket that is decorated with the flag .", "storylet_id": "230357"}], [{"original_text": "The officers are very solemn and hate to see their friend go. ", "album_id": "72157625830823704", "photo_flickr_id": "5357535811", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46071", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the officers are very solemn and hate to see their friend go .", "storylet_id": "230358"}], [{"original_text": "A member of the church meets with the mayor to say goodbye to the officer that has died. ", "album_id": "72157625830823704", "photo_flickr_id": "5357539959", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46071", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a member of the church meets with the mayor to say goodbye to the officer that has died .", "storylet_id": "230359"}], [{"original_text": "Officers stood at alert as the cars past by.", "album_id": "72157625830823704", "photo_flickr_id": "5358177034", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46072", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "officers stood at alert as the cars past by .", "storylet_id": "230360"}], [{"original_text": "They stood at perfect attention as the hearse stopped.", "album_id": "72157625830823704", "photo_flickr_id": "5358144384", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46072", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they stood at perfect attention as the hearse stopped .", "storylet_id": "230361"}], [{"original_text": "A salute was given as their comrade was pulled from the back.", "album_id": "72157625830823704", "photo_flickr_id": "5358148912", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46072", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a salute was given as their comrade was pulled from the back .", "storylet_id": "230362"}], [{"original_text": "Flags blew gently in the cold air as they carried him along.", "album_id": "72157625830823704", "photo_flickr_id": "5357536883", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46072", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "flags blew gently in the cold air as they carried him along .", "storylet_id": "230363"}], [{"original_text": "The officiate shook hands with the family as he was lowered to rest.", "album_id": "72157625830823704", "photo_flickr_id": "5357539959", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46072", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the officiate shook hands with the family as he was lowered to rest .", "storylet_id": "230364"}], [{"original_text": "The cars were parked in a line on the street.", "album_id": "72157625830823704", "photo_flickr_id": "5358177034", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46073", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cars were parked in a line on the street .", "storylet_id": "230365"}], [{"original_text": "We were giving honor to someone who fell in battle.", "album_id": "72157625830823704", "photo_flickr_id": "5358144384", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46073", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were giving honor to someone who fell in battle .", "storylet_id": "230366"}], [{"original_text": "The casket had the beautiful flag on it.", "album_id": "72157625830823704", "photo_flickr_id": "5358148912", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46073", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the casket had the beautiful flag on it .", "storylet_id": "230367"}], [{"original_text": "The ceremony was on point and started on time.", "album_id": "72157625830823704", "photo_flickr_id": "5357536883", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46073", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ceremony was on point and started on time .", "storylet_id": "230368"}], [{"original_text": "At the end, the pope gave a small word.", "album_id": "72157625830823704", "photo_flickr_id": "5357539959", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46073", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , the pope gave a small word .", "storylet_id": "230369"}], [{"original_text": "A very sad day of a funeral. ", "album_id": "72157625830823704", "photo_flickr_id": "5358144384", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "46074", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a very sad day of a funeral .", "storylet_id": "230370"}], [{"original_text": "The casket was carried down from above.", "album_id": "72157625830823704", "photo_flickr_id": "5358147684", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "46074", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the casket was carried down from above .", "storylet_id": "230371"}], [{"original_text": "Down the stairs it went carried by several men.", "album_id": "72157625830823704", "photo_flickr_id": "5358148912", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "46074", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "down the stairs it went carried by several men .", "storylet_id": "230372"}], [{"original_text": "A sad day for everyone in attendance.", "album_id": "72157625830823704", "photo_flickr_id": "5357535811", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "46074", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a sad day for everyone in attendance .", "storylet_id": "230373"}], [{"original_text": "The minister consoled the family for their loss. ", "album_id": "72157625830823704", "photo_flickr_id": "5357539959", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "46074", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the minister consoled the family for their loss .", "storylet_id": "230374"}], [{"original_text": "I really had to buy flowers for Valentine's Day.", "album_id": "72157629593179079", "photo_flickr_id": "6839598774", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46075", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i really had to buy flowers for valentine 's day .", "storylet_id": "230375"}], [{"original_text": "I spent hours in the flower store. They had so many different kinds.", "album_id": "72157629593179079", "photo_flickr_id": "6985714415", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46075", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i spent hours in the flower store . they had so many different kinds .", "storylet_id": "230376"}], [{"original_text": "There were so many colors.", "album_id": "72157629593179079", "photo_flickr_id": "6985716095", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46075", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were so many colors .", "storylet_id": "230377"}], [{"original_text": "It was very difficult to choose among them.", "album_id": "72157629593179079", "photo_flickr_id": "6839599176", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46075", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was very difficult to choose among them .", "storylet_id": "230378"}], [{"original_text": "Finally I made my decision and I was very happy with it.", "album_id": "72157629593179079", "photo_flickr_id": "6839595100", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46075", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally i made my decision and i was very happy with it .", "storylet_id": "230379"}], [{"original_text": "It is a beautiful morning to visit The Original Los Angeles Flower Market.", "album_id": "72157629593179079", "photo_flickr_id": "6839598086", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46076", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is a beautiful morning to visit the original location location location location .", "storylet_id": "230380"}], [{"original_text": "Early morning is a great time to beat the crowds.", "album_id": "72157629593179079", "photo_flickr_id": "6839598406", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46076", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "early morning is a great time to beat the crowds .", "storylet_id": "230381"}], [{"original_text": "There are unusual plants to be seen.", "album_id": "72157629593179079", "photo_flickr_id": "6839595826", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46076", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are unusual plants to be seen .", "storylet_id": "230382"}], [{"original_text": "The variety of flowers is simply amazing. There are short flowers.", "album_id": "72157629593179079", "photo_flickr_id": "6985713945", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46076", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the variety of flowers is simply amazing . there are short flowers .", "storylet_id": "230383"}], [{"original_text": "There are tall flowers. Flowers you never knew existed.", "album_id": "72157629593179079", "photo_flickr_id": "6985714415", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46076", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are tall flowers . flowers you never knew existed .", "storylet_id": "230384"}], [{"original_text": "The big flower sale was happening today.", "album_id": "72157629593179079", "photo_flickr_id": "6839598774", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "46077", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the big flower sale was happening today .", "storylet_id": "230385"}], [{"original_text": "There were purple flowers,", "album_id": "72157629593179079", "photo_flickr_id": "6985714415", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "46077", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were purple flowers ,", "storylet_id": "230386"}], [{"original_text": "and pink and green flowers,", "album_id": "72157629593179079", "photo_flickr_id": "6985716095", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "46077", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and pink and green flowers ,", "storylet_id": "230387"}], [{"original_text": "and even yellow sun flowers!", "album_id": "72157629593179079", "photo_flickr_id": "6839599176", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "46077", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and even yellow sun flowers !", "storylet_id": "230388"}], [{"original_text": "Jenna made sure she got there early so that she could get all of her favorite flowers before they sold out.", "album_id": "72157629593179079", "photo_flickr_id": "6839595100", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "46077", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] made sure she got there early so that she could get all of her favorite flowers before they sold out .", "storylet_id": "230389"}], [{"original_text": "It was Saturday, the day before Mother's Day and the LA Flower Market was a busy place. ", "album_id": "72157629593179079", "photo_flickr_id": "6839598774", "setting": "last-3-pick-old-and-tell", "worker_id": "1CVI9O9X1UKRELV", "story_id": "46078", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was saturday , the day before mother 's day and the organization organization organization was a busy place .", "storylet_id": "230390"}], [{"original_text": "The flowers and plants were healthy, clean, and well cared for. The orchids were tempting me, seeming to beg me to take them home. ", "album_id": "72157629593179079", "photo_flickr_id": "6985714415", "setting": "last-3-pick-old-and-tell", "worker_id": "1CVI9O9X1UKRELV", "story_id": "46078", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flowers and plants were healthy , clean , and well cared for . the orchids were tempting me , seeming to beg me to take them home .", "storylet_id": "230391"}], [{"original_text": "I always enjoy the buckets of flowers because I can choose what I like and the color scheme I'm considering. ", "album_id": "72157629593179079", "photo_flickr_id": "6985716095", "setting": "last-3-pick-old-and-tell", "worker_id": "1CVI9O9X1UKRELV", "story_id": "46078", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i always enjoy the buckets of flowers because i can choose what i like and the color scheme i 'm considering .", "storylet_id": "230392"}], [{"original_text": "There was such a selection that it seemed like hours of walking and choosing. I didn't mind at all, because flowers always manage to brighten a day.", "album_id": "72157629593179079", "photo_flickr_id": "6839599176", "setting": "last-3-pick-old-and-tell", "worker_id": "1CVI9O9X1UKRELV", "story_id": "46078", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was such a selection that it seemed like hours of walking and choosing . i did n't mind at all , because flowers always manage to brighten a day .", "storylet_id": "230393"}], [{"original_text": "This young lady could see that I was having a hard time choosing, so she offered to help. Between her help and my hesitation, we managed to pick out two beautiful bouquets, one for my Mom and one for myself. I then chose another bouquet for my flower friend, and we both went home happy, with anticipation of the day that will follow.", "album_id": "72157629593179079", "photo_flickr_id": "6839595100", "setting": "last-3-pick-old-and-tell", "worker_id": "1CVI9O9X1UKRELV", "story_id": "46078", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this young lady could see that i was having a hard time choosing , so she offered to help . between her help and my hesitation , we managed to pick out two beautiful bouquets , one for my mom and one for myself . i then chose another bouquet for my flower friend , and we both went home happy , with anticipation of the day that will follow .", "storylet_id": "230394"}], [{"original_text": "Jane went to the outdoor market to look for flowers", "album_id": "72157629593179079", "photo_flickr_id": "6839598774", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "46079", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] went to the outdoor market to look for flowers", "storylet_id": "230395"}], [{"original_text": "While walking through the market she saw Orchids.", "album_id": "72157629593179079", "photo_flickr_id": "6985714415", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "46079", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while walking through the market she saw orchids .", "storylet_id": "230396"}], [{"original_text": "She also saw marigolds and daisies.", "album_id": "72157629593179079", "photo_flickr_id": "6985716095", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "46079", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she also saw marigolds and daisies .", "storylet_id": "230397"}], [{"original_text": "She found the perfect shop full of flowers.", "album_id": "72157629593179079", "photo_flickr_id": "6839599176", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "46079", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she found the perfect shop full of flowers .", "storylet_id": "230398"}], [{"original_text": "Jane looked through the large variety of flowers and picked out the ones she liked. ", "album_id": "72157629593179079", "photo_flickr_id": "6839595100", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "46079", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] looked through the large variety of flowers and picked out the ones she liked .", "storylet_id": "230399"}], [{"original_text": "The streets were empty early in the morning.", "album_id": "72157633268182236", "photo_flickr_id": "8657012693", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46080", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the streets were empty early in the morning .", "storylet_id": "230400"}], [{"original_text": "Our group began to gather along the roadway.", "album_id": "72157633268182236", "photo_flickr_id": "8657012325", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46080", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our group began to gather along the roadway .", "storylet_id": "230401"}], [{"original_text": "It was rainy day, but some people didn't mind the bad weather.", "album_id": "72157633268182236", "photo_flickr_id": "8657012989", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46080", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was rainy day , but some people did n't mind the bad weather .", "storylet_id": "230402"}], [{"original_text": "People took pictures of us as we marched past.", "album_id": "72157633268182236", "photo_flickr_id": "8658118424", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46080", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people took pictures of us as we marched past .", "storylet_id": "230403"}], [{"original_text": "Finally we made it to the capital building.", "album_id": "72157633268182236", "photo_flickr_id": "8658118240", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46080", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally we made it to the capital building .", "storylet_id": "230404"}], [{"original_text": "When I arrived to the city it was very foggy.", "album_id": "72157633268182236", "photo_flickr_id": "8657013103", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46081", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i arrived to the city it was very foggy .", "storylet_id": "230405"}], [{"original_text": "We began to set up for the film we were making.", "album_id": "72157633268182236", "photo_flickr_id": "8657012989", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46081", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we began to set up for the film we were making .", "storylet_id": "230406"}], [{"original_text": "The lighting and sound guys arrived late but were happy to have made it there.", "album_id": "72157633268182236", "photo_flickr_id": "8657012889", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46081", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lighting and sound guys arrived late but were happy to have made it there .", "storylet_id": "230407"}], [{"original_text": "Some people showed up in support of us filming in their city.", "album_id": "72157633268182236", "photo_flickr_id": "8657012325", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46081", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people showed up in support of us filming in their city .", "storylet_id": "230408"}], [{"original_text": "We wrapped up filming and had a party.", "album_id": "72157633268182236", "photo_flickr_id": "8658118240", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46081", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we wrapped up filming and had a party .", "storylet_id": "230409"}], [{"original_text": "the dc area would be the venue for a gay rights march", "album_id": "72157633268182236", "photo_flickr_id": "8657012693", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46082", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dc area would be the venue for a gay rights march", "storylet_id": "230410"}], [{"original_text": "all the people gathered to support their cause", "album_id": "72157633268182236", "photo_flickr_id": "8657012325", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46082", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the people gathered to support their cause", "storylet_id": "230411"}], [{"original_text": "many ate lunch and organized together", "album_id": "72157633268182236", "photo_flickr_id": "8657012989", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46082", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many ate lunch and organized together", "storylet_id": "230412"}], [{"original_text": "some played music in the streets", "album_id": "72157633268182236", "photo_flickr_id": "8658118424", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46082", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some played music in the streets", "storylet_id": "230413"}], [{"original_text": "and they flew their balloons at the capitol building ", "album_id": "72157633268182236", "photo_flickr_id": "8658118240", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46082", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they flew their balloons at the capitol building", "storylet_id": "230414"}], [{"original_text": "This year we went to a new city for our family vacation.", "album_id": "72157633268182236", "photo_flickr_id": "8657012693", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "46083", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this year we went to a new city for our family vacation .", "storylet_id": "230415"}], [{"original_text": "When we arrived it seemed there was a protest going on", "album_id": "72157633268182236", "photo_flickr_id": "8657012325", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "46083", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we arrived it seemed there was a protest going on", "storylet_id": "230416"}], [{"original_text": "People gathered under tents.", "album_id": "72157633268182236", "photo_flickr_id": "8657012989", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "46083", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people gathered under tents .", "storylet_id": "230417"}], [{"original_text": "Many onlookers took pictures.", "album_id": "72157633268182236", "photo_flickr_id": "8658118424", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "46083", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many onlookers took pictures .", "storylet_id": "230418"}], [{"original_text": "When the crowd dispersed all that was left were balloons in front of the capital.", "album_id": "72157633268182236", "photo_flickr_id": "8658118240", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "46083", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the crowd dispersed all that was left were balloons in front of the capital .", "storylet_id": "230419"}], [{"original_text": "The man walked the parade route to ensure everything was set up properly.", "album_id": "72157633268182236", "photo_flickr_id": "8657012693", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46084", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man walked the parade route to ensure everything was set up properly .", "storylet_id": "230420"}], [{"original_text": "A crowd began to gather in anticipation for the event.", "album_id": "72157633268182236", "photo_flickr_id": "8657012325", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46084", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a crowd began to gather in anticipation for the event .", "storylet_id": "230421"}], [{"original_text": "A few bystanders rested on nearby benches until the parade began.", "album_id": "72157633268182236", "photo_flickr_id": "8657012989", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46084", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few bystanders rested on nearby benches until the parade began .", "storylet_id": "230422"}], [{"original_text": "Parade watchers began to take pictures to remember the event.", "album_id": "72157633268182236", "photo_flickr_id": "8658118424", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46084", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "parade watchers began to take pictures to remember the event .", "storylet_id": "230423"}], [{"original_text": "Balloons were released in celebration of the event.", "album_id": "72157633268182236", "photo_flickr_id": "8658118240", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46084", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "balloons were released in celebration of the event .", "storylet_id": "230424"}], [{"original_text": "For anyone interested in Land Rovers, this was the place to be.", "album_id": "72157627225981046", "photo_flickr_id": "5951997906", "setting": "first-2-pick-and-tell", "worker_id": "PNJNYLWM0D01WDI", "story_id": "46085", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for anyone interested in organization organization , this was the place to be .", "storylet_id": "230425"}], [{"original_text": "There were displays everywhere, featuring information and welcoming Land Rover enthusiasts.", "album_id": "72157627225981046", "photo_flickr_id": "5951322289", "setting": "first-2-pick-and-tell", "worker_id": "PNJNYLWM0D01WDI", "story_id": "46085", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were displays everywhere , featuring information and welcoming land rover enthusiasts .", "storylet_id": "230426"}], [{"original_text": "Some of the latest and greatest models were on display.", "album_id": "72157627225981046", "photo_flickr_id": "5951922674", "setting": "first-2-pick-and-tell", "worker_id": "PNJNYLWM0D01WDI", "story_id": "46085", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the latest and greatest models were on display .", "storylet_id": "230427"}], [{"original_text": "Older models were there too, representing the brands earlier days.", "album_id": "72157627225981046", "photo_flickr_id": "5951335133", "setting": "first-2-pick-and-tell", "worker_id": "PNJNYLWM0D01WDI", "story_id": "46085", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "older models were there too , representing the brands earlier days .", "storylet_id": "230428"}], [{"original_text": "The lines of Rovers seemed to go on forever, offering every visitor plenty of opportunity to check them all out.", "album_id": "72157627225981046", "photo_flickr_id": "5951378169", "setting": "first-2-pick-and-tell", "worker_id": "PNJNYLWM0D01WDI", "story_id": "46085", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lines of organization seemed to go on forever , offering every visitor plenty of opportunity to check them all out .", "storylet_id": "230429"}], [{"original_text": "We went to a car show.", "album_id": "72157627225981046", "photo_flickr_id": "5951322289", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46086", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a car show .", "storylet_id": "230430"}], [{"original_text": "There was a lot of information there.", "album_id": "72157627225981046", "photo_flickr_id": "5951886062", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46086", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of information there .", "storylet_id": "230431"}], [{"original_text": "Lots of old cars.", "album_id": "72157627225981046", "photo_flickr_id": "5951335133", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46086", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lots of old cars .", "storylet_id": "230432"}], [{"original_text": "Some have been restored.", "album_id": "72157627225981046", "photo_flickr_id": "5951363113", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46086", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some have been restored .", "storylet_id": "230433"}], [{"original_text": "It was an interesting event.", "album_id": "72157627225981046", "photo_flickr_id": "5951981970", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46086", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was an interesting event .", "storylet_id": "230434"}], [{"original_text": "Land Rover had a car sale.", "album_id": "72157627225981046", "photo_flickr_id": "5951997906", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46087", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "land rover had a car sale .", "storylet_id": "230435"}], [{"original_text": "The car company placed tents and various car models on an empty car lot.", "album_id": "72157627225981046", "photo_flickr_id": "5951322289", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46087", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the car company placed tents and various car models on an empty car lot .", "storylet_id": "230436"}], [{"original_text": "One of the new car models came in light brown and yellow.", "album_id": "72157627225981046", "photo_flickr_id": "5951922674", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46087", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the new car models came in light brown and yellow .", "storylet_id": "230437"}], [{"original_text": "The family had their heart set on the camouflage colored car model. ", "album_id": "72157627225981046", "photo_flickr_id": "5951335133", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46087", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family had their heart set on the camouflage colored car model .", "storylet_id": "230438"}], [{"original_text": "Unfortunately, we didn't buy a car. They had sold the camouflage colored models they had. ", "album_id": "72157627225981046", "photo_flickr_id": "5951378169", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46087", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "unfortunately , we did n't buy a car . they had sold the camouflage colored models they had .", "storylet_id": "230439"}], [{"original_text": "We attended a great little get together camping trip for Land Rover owners!", "album_id": "72157627225981046", "photo_flickr_id": "5951997906", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46088", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we attended a great little get together camping trip for land rover owners !", "storylet_id": "230440"}], [{"original_text": "There was a lot of room to set up and a lot of people.", "album_id": "72157627225981046", "photo_flickr_id": "5951322289", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46088", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of room to set up and a lot of people .", "storylet_id": "230441"}], [{"original_text": "Rows and rows of Land Rovers as far as the eye could see.", "album_id": "72157627225981046", "photo_flickr_id": "5951922674", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46088", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "rows and rows of organization organization as far as the eye could see .", "storylet_id": "230442"}], [{"original_text": "Some of them were in rough shape, but they were still going strong.", "album_id": "72157627225981046", "photo_flickr_id": "5951335133", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46088", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of them were in rough shape , but they were still going strong .", "storylet_id": "230443"}], [{"original_text": "They were all lined up like proud children posing for their parents.", "album_id": "72157627225981046", "photo_flickr_id": "5951378169", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46088", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were all lined up like proud children posing for their parents .", "storylet_id": "230444"}], [{"original_text": "We pulled up to the campsite.", "album_id": "72157627225981046", "photo_flickr_id": "5951997906", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46089", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we pulled up to the campsite .", "storylet_id": "230445"}], [{"original_text": "We set up our tent and started looking around.", "album_id": "72157627225981046", "photo_flickr_id": "5951322289", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46089", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we set up our tent and started looking around .", "storylet_id": "230446"}], [{"original_text": "There where a large collection of Jeeps.", "album_id": "72157627225981046", "photo_flickr_id": "5951922674", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46089", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there where a large collection of jeeps .", "storylet_id": "230447"}], [{"original_text": "Some where different colors than others.", "album_id": "72157627225981046", "photo_flickr_id": "5951335133", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46089", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some where different colors than others .", "storylet_id": "230448"}], [{"original_text": "We walked along and browsed for a while.", "album_id": "72157627225981046", "photo_flickr_id": "5951378169", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46089", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we walked along and browsed for a while .", "storylet_id": "230449"}], [{"original_text": "Here is the room that we stayed in for vacation.", "album_id": "72157632556438915", "photo_flickr_id": "8393211237", "setting": "first-2-pick-and-tell", "worker_id": "G4TXDXZTSGWHJV8", "story_id": "46090", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is the room that we stayed in for vacation .", "storylet_id": "230450"}], [{"original_text": "Relaxing before a long fun filled day of walking and shopping.", "album_id": "72157632556438915", "photo_flickr_id": "8393226381", "setting": "first-2-pick-and-tell", "worker_id": "G4TXDXZTSGWHJV8", "story_id": "46090", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "relaxing before a long fun filled day of walking and shopping .", "storylet_id": "230451"}], [{"original_text": "Breakfast at the hotel restaurant will provide a boost for the day.", "album_id": "72157632556438915", "photo_flickr_id": "8395431086", "setting": "first-2-pick-and-tell", "worker_id": "G4TXDXZTSGWHJV8", "story_id": "46090", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "breakfast at the hotel restaurant will provide a boost for the day .", "storylet_id": "230452"}], [{"original_text": "She is having her daily eggs and pancakes before she heads out.", "album_id": "72157632556438915", "photo_flickr_id": "8395446836", "setting": "first-2-pick-and-tell", "worker_id": "G4TXDXZTSGWHJV8", "story_id": "46090", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she is having her daily eggs and pancakes before she heads out .", "storylet_id": "230453"}], [{"original_text": "The outside on the hotel that we stayed at during our vacation.", "album_id": "72157632556438915", "photo_flickr_id": "8398699436", "setting": "first-2-pick-and-tell", "worker_id": "G4TXDXZTSGWHJV8", "story_id": "46090", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the outside on the hotel that we stayed at during our vacation .", "storylet_id": "230454"}], [{"original_text": "I went to visit my grandparents today.", "album_id": "72157632556438915", "photo_flickr_id": "8398699436", "setting": "first-2-pick-and-tell", "worker_id": "0QP9KHQTYWOANAB", "story_id": "46091", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to visit my grandparents today .", "storylet_id": "230455"}], [{"original_text": "My grandpa just turned 91!", "album_id": "72157632556438915", "photo_flickr_id": "8394359579", "setting": "first-2-pick-and-tell", "worker_id": "0QP9KHQTYWOANAB", "story_id": "46091", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my grandpa just turned 91 !", "storylet_id": "230456"}], [{"original_text": "My grandma is a bit younger, she's 68!", "album_id": "72157632556438915", "photo_flickr_id": "8395446836", "setting": "first-2-pick-and-tell", "worker_id": "0QP9KHQTYWOANAB", "story_id": "46091", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my grandma is a bit younger , she 's 68 !", "storylet_id": "230457"}], [{"original_text": "When I arrived, there was breakfast already waiting for me.", "album_id": "72157632556438915", "photo_flickr_id": "8394356385", "setting": "first-2-pick-and-tell", "worker_id": "0QP9KHQTYWOANAB", "story_id": "46091", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when i arrived , there was breakfast already waiting for me .", "storylet_id": "230458"}], [{"original_text": "My grandma even baked me cookies for my stay!", "album_id": "72157632556438915", "photo_flickr_id": "8394316974", "setting": "first-2-pick-and-tell", "worker_id": "0QP9KHQTYWOANAB", "story_id": "46091", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my grandma even baked me cookies for my stay !", "storylet_id": "230459"}], [{"original_text": "Hi, kids! Here's the hotel we stayed at!", "album_id": "72157632556438915", "photo_flickr_id": "8398699436", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46092", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hi , kids ! here 's the hotel we stayed at !", "storylet_id": "230460"}], [{"original_text": "Your father had a big nice breakfast!", "album_id": "72157632556438915", "photo_flickr_id": "8394359579", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46092", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "your father had a big nice breakfast !", "storylet_id": "230461"}], [{"original_text": "And I sure did, as well!", "album_id": "72157632556438915", "photo_flickr_id": "8395446836", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46092", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and i sure did , as well !", "storylet_id": "230462"}], [{"original_text": "I mean, look at the size of that omlet!", "album_id": "72157632556438915", "photo_flickr_id": "8394356385", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46092", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i mean , look at the size of that omlet !", "storylet_id": "230463"}], [{"original_text": "We decided to bring you back some cookies. See you soon!", "album_id": "72157632556438915", "photo_flickr_id": "8394316974", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46092", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to bring you back some cookies . see you soon !", "storylet_id": "230464"}], [{"original_text": "This is the hotel we stayed at on vacation.", "album_id": "72157632556438915", "photo_flickr_id": "8398699436", "setting": "last-3-pick-old-and-tell", "worker_id": "BNHKZP4E6NKKA5C", "story_id": "46093", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the hotel we stayed at on vacation .", "storylet_id": "230465"}], [{"original_text": "We went to breakfast at the hotel and it was great!", "album_id": "72157632556438915", "photo_flickr_id": "8394359579", "setting": "last-3-pick-old-and-tell", "worker_id": "BNHKZP4E6NKKA5C", "story_id": "46093", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to breakfast at the hotel and it was great !", "storylet_id": "230466"}], [{"original_text": "Mom had an omelette and toast and she was very happy.", "album_id": "72157632556438915", "photo_flickr_id": "8395446836", "setting": "last-3-pick-old-and-tell", "worker_id": "BNHKZP4E6NKKA5C", "story_id": "46093", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom had an omelette and toast and she was very happy .", "storylet_id": "230467"}], [{"original_text": "This is all free and I think it's the best complimentary breakfast I have ever had.", "album_id": "72157632556438915", "photo_flickr_id": "8394356385", "setting": "last-3-pick-old-and-tell", "worker_id": "BNHKZP4E6NKKA5C", "story_id": "46093", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is all free and i think it 's the best complimentary breakfast i have ever had .", "storylet_id": "230468"}], [{"original_text": "Had some cookies and coffee for an after breakfast dessert... yummy!", "album_id": "72157632556438915", "photo_flickr_id": "8394316974", "setting": "last-3-pick-old-and-tell", "worker_id": "BNHKZP4E6NKKA5C", "story_id": "46093", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "had some cookies and coffee for an after breakfast dessert ... yummy !", "storylet_id": "230469"}], [{"original_text": "The hotel room was simple but very elegant", "album_id": "72157632556438915", "photo_flickr_id": "8393211237", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46094", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the hotel room was simple but very elegant", "storylet_id": "230470"}], [{"original_text": "Not to mention comfortable as could be.", "album_id": "72157632556438915", "photo_flickr_id": "8393226381", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46094", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "not to mention comfortable as could be .", "storylet_id": "230471"}], [{"original_text": "They offered nice breakfasts in a very clean restaurant. ", "album_id": "72157632556438915", "photo_flickr_id": "8395431086", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46094", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they offered nice breakfasts in a very clean restaurant .", "storylet_id": "230472"}], [{"original_text": "Everyone enjoyed their food thoroughly.", "album_id": "72157632556438915", "photo_flickr_id": "8395446836", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46094", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone enjoyed their food thoroughly .", "storylet_id": "230473"}], [{"original_text": "It was a shame when it was time to pack up and leave. ", "album_id": "72157632556438915", "photo_flickr_id": "8398699436", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46094", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a shame when it was time to pack up and leave .", "storylet_id": "230474"}], [{"original_text": "The party was starting.", "album_id": "129512", "photo_flickr_id": "5121782", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46095", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party was starting .", "storylet_id": "230475"}], [{"original_text": "It was held at the churches festival.", "album_id": "129512", "photo_flickr_id": "5116376", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46095", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was held at the churches festival .", "storylet_id": "230476"}], [{"original_text": "People wore costumes.", "album_id": "129512", "photo_flickr_id": "5116803", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46095", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people wore costumes .", "storylet_id": "230477"}], [{"original_text": "The singer was talented.", "album_id": "129512", "photo_flickr_id": "5140461", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46095", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the singer was talented .", "storylet_id": "230478"}], [{"original_text": "We danced the night away until we dropped.", "album_id": "129512", "photo_flickr_id": "5142178", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46095", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we danced the night away until we dropped .", "storylet_id": "230479"}], [{"original_text": "This was my sister's second marriage so she wore black.", "album_id": "129512", "photo_flickr_id": "5116803", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "46096", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was my sister 's second marriage so she wore black .", "storylet_id": "230480"}], [{"original_text": "The wedding cake was home made this time around.", "album_id": "129512", "photo_flickr_id": "5121782", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "46096", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wedding cake was home made this time around .", "storylet_id": "230481"}], [{"original_text": "The reception featured karaoke in the church basement.", "album_id": "129512", "photo_flickr_id": "5116376", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "46096", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the reception featured karaoke in the church basement .", "storylet_id": "230482"}], [{"original_text": "My brother is the life of every party.", "album_id": "129512", "photo_flickr_id": "5137119", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "46096", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my brother is the life of every party .", "storylet_id": "230483"}], [{"original_text": "Bride and groom don't look thrilled. Let's hope this one lasts.", "album_id": "129512", "photo_flickr_id": "5142178", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "46096", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "bride and groom do n't look thrilled . let 's hope this one lasts .", "storylet_id": "230484"}], [{"original_text": "The memorial service for the recent deceases was very nontraditional. ", "album_id": "129512", "photo_flickr_id": "5121782", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46097", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the memorial service for the recent deceases was very nontraditional .", "storylet_id": "230485"}], [{"original_text": "It was held at St. Benedikt. ", "album_id": "129512", "photo_flickr_id": "5116376", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46097", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was held at location location .", "storylet_id": "230486"}], [{"original_text": "Some whore black with a black veil over their face. ", "album_id": "129512", "photo_flickr_id": "5116803", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46097", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some whore black with a black veil over their face .", "storylet_id": "230487"}], [{"original_text": "They had karaoke which seemed to lighten the mood. ", "album_id": "129512", "photo_flickr_id": "5140461", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46097", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had karaoke which seemed to lighten the mood .", "storylet_id": "230488"}], [{"original_text": "Still, nobody culd get past the dredful feeling that he was gone and would not be back. ", "album_id": "129512", "photo_flickr_id": "5142178", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46097", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "still , nobody culd get past the dredful feeling that he was gone and would not be back .", "storylet_id": "230489"}], [{"original_text": "We had a Halloween party this year.", "album_id": "129512", "photo_flickr_id": "5116803", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "46098", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a halloween party this year .", "storylet_id": "230490"}], [{"original_text": "The cake was a grave.", "album_id": "129512", "photo_flickr_id": "5121782", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "46098", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cake was a grave .", "storylet_id": "230491"}], [{"original_text": "The place had karaoke, too.", "album_id": "129512", "photo_flickr_id": "5116376", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "46098", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the place had karaoke , too .", "storylet_id": "230492"}], [{"original_text": "Everyone got a little drunk.", "album_id": "129512", "photo_flickr_id": "5137119", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "46098", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone got a little drunk .", "storylet_id": "230493"}], [{"original_text": "Everyone hung out while really drunk.", "album_id": "129512", "photo_flickr_id": "5142178", "setting": "last-3-pick-old-and-tell", "worker_id": "3VUDOXRFHOGHA59", "story_id": "46098", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone hung out while really drunk .", "storylet_id": "230494"}], [{"original_text": "Aunt Sue got married today! Here's the cake.", "album_id": "129512", "photo_flickr_id": "5121782", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46099", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "aunt [female] got married today ! here 's the cake .", "storylet_id": "230495"}], [{"original_text": "For some reason, she wanted to get married in Germany.", "album_id": "129512", "photo_flickr_id": "5116376", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46099", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "for some reason , she wanted to get married in location .", "storylet_id": "230496"}], [{"original_text": "Here's Sue in here dress. (She wanted a more gothic approach)", "album_id": "129512", "photo_flickr_id": "5116803", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46099", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's [female] in here dress . ( she wanted a more gothic approach )", "storylet_id": "230497"}], [{"original_text": "And uncle Bob did the preaching.", "album_id": "129512", "photo_flickr_id": "5140461", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46099", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and uncle [male] did the preaching .", "storylet_id": "230498"}], [{"original_text": "After that, Sue and her new husband enjoyed some German beer.", "album_id": "129512", "photo_flickr_id": "5142178", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46099", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that , [female] and her new husband enjoyed some german beer .", "storylet_id": "230499"}], [{"original_text": "Ben and Steve met up for a crazy night on the town.", "album_id": "72157623660677964", "photo_flickr_id": "4449081649", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "46100", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [male] met up for a crazy night on the town .", "storylet_id": "230500"}], [{"original_text": "First, there were some interesting food choices.", "album_id": "72157623660677964", "photo_flickr_id": "4449857830", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "46100", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first , there were some interesting food choices .", "storylet_id": "230501"}], [{"original_text": "And then some truly thrilling entertainment.", "album_id": "72157623660677964", "photo_flickr_id": "4449081881", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "46100", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and then some truly thrilling entertainment .", "storylet_id": "230502"}], [{"original_text": "Of course, they caught some live music.", "album_id": "72157623660677964", "photo_flickr_id": "4449858068", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "46100", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course , they caught some live music .", "storylet_id": "230503"}], [{"original_text": "At the end of the night, they relaxed and reflected over some cocktails.", "album_id": "72157623660677964", "photo_flickr_id": "4449858098", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "46100", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , they relaxed and reflected over some cocktails .", "storylet_id": "230504"}], [{"original_text": "My friend and I went out to eat together last night.", "album_id": "72157623660677964", "photo_flickr_id": "4449857890", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46101", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend and i went out to eat together last night .", "storylet_id": "230505"}], [{"original_text": "We started off with a couple of drinks.", "album_id": "72157623660677964", "photo_flickr_id": "4449858098", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46101", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started off with a couple of drinks .", "storylet_id": "230506"}], [{"original_text": "Then our food came and it was delicious.", "album_id": "72157623660677964", "photo_flickr_id": "4449082195", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46101", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then our food came and it was delicious .", "storylet_id": "230507"}], [{"original_text": "We may have ordered a little too much food.", "album_id": "72157623660677964", "photo_flickr_id": "4449858292", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46101", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we may have ordered a little too much food .", "storylet_id": "230508"}], [{"original_text": "But at the end we were very happy that we went.", "album_id": "72157623660677964", "photo_flickr_id": "4449081649", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46101", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but at the end we were very happy that we went .", "storylet_id": "230509"}], [{"original_text": "Bob and Fred were ready for a night on the town.", "album_id": "72157623660677964", "photo_flickr_id": "4449081649", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "46102", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [male] were ready for a night on the town .", "storylet_id": "230510"}], [{"original_text": "The started off the night with tacos for dinner.", "album_id": "72157623660677964", "photo_flickr_id": "4449857830", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "46102", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the started off the night with tacos for dinner .", "storylet_id": "230511"}], [{"original_text": "After dinner they went to a typing championship match;which wasn't as fun as it sounds.", "album_id": "72157623660677964", "photo_flickr_id": "4449081881", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "46102", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after dinner they went to a typing championship match ; which was n't as fun as it sounds .", "storylet_id": "230512"}], [{"original_text": "They decided to go see a live band perform.", "album_id": "72157623660677964", "photo_flickr_id": "4449858068", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "46102", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they decided to go see a live band perform .", "storylet_id": "230513"}], [{"original_text": "They ended their night out with a couple of coctails.", "album_id": "72157623660677964", "photo_flickr_id": "4449858098", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "46102", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ended their night out with a couple of coctails .", "storylet_id": "230514"}], [{"original_text": "I went out to the bar with my best friend.", "album_id": "72157623660677964", "photo_flickr_id": "4449081649", "setting": "last-3-pick-old-and-tell", "worker_id": "T6H9UFFMSJQHKX1", "story_id": "46103", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went out to the bar with my best friend .", "storylet_id": "230515"}], [{"original_text": "We had some tacos for appetizer.", "album_id": "72157623660677964", "photo_flickr_id": "4449857830", "setting": "last-3-pick-old-and-tell", "worker_id": "T6H9UFFMSJQHKX1", "story_id": "46103", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had some tacos for appetizer .", "storylet_id": "230516"}], [{"original_text": "We laughed a bit about this typing championship.", "album_id": "72157623660677964", "photo_flickr_id": "4449081881", "setting": "last-3-pick-old-and-tell", "worker_id": "T6H9UFFMSJQHKX1", "story_id": "46103", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we laughed a bit about this typing championship .", "storylet_id": "230517"}], [{"original_text": "The music wasn't that great, but I enjoyed talking with my friend.", "album_id": "72157623660677964", "photo_flickr_id": "4449858068", "setting": "last-3-pick-old-and-tell", "worker_id": "T6H9UFFMSJQHKX1", "story_id": "46103", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the music was n't that great , but i enjoyed talking with my friend .", "storylet_id": "230518"}], [{"original_text": "The best part, was this giant tequila shot, it was great.", "album_id": "72157623660677964", "photo_flickr_id": "4449858098", "setting": "last-3-pick-old-and-tell", "worker_id": "T6H9UFFMSJQHKX1", "story_id": "46103", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part , was this giant tequila shot , it was great .", "storylet_id": "230519"}], [{"original_text": "Two friends went downtown so they could watch their favorite band play live.", "album_id": "72157623660677964", "photo_flickr_id": "4449081649", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46104", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two friends went downtown so they could watch their favorite band play live .", "storylet_id": "230520"}], [{"original_text": "There was food served to everyone that came out.", "album_id": "72157623660677964", "photo_flickr_id": "4449857830", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46104", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was food served to everyone that came out .", "storylet_id": "230521"}], [{"original_text": "There was also games to be played before the band came out to play.", "album_id": "72157623660677964", "photo_flickr_id": "4449081881", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46104", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was also games to be played before the band came out to play .", "storylet_id": "230522"}], [{"original_text": "When the band finally did come out to play, the whole audience went crazy.", "album_id": "72157623660677964", "photo_flickr_id": "4449858068", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46104", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the band finally did come out to play , the whole audience went crazy .", "storylet_id": "230523"}], [{"original_text": "Alcohol was served and everyone had a good time.", "album_id": "72157623660677964", "photo_flickr_id": "4449858098", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46104", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "alcohol was served and everyone had a good time .", "storylet_id": "230524"}], [{"original_text": "they were going to have a presentation", "album_id": "72157626883738735", "photo_flickr_id": "5853926883", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46105", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were going to have a presentation", "storylet_id": "230525"}], [{"original_text": "the group decided what to put on", "album_id": "72157626883738735", "photo_flickr_id": "5853943173", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46105", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the group decided what to put on", "storylet_id": "230526"}], [{"original_text": "this guy was looking really bored", "album_id": "72157626883738735", "photo_flickr_id": "5854484430", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46105", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this guy was looking really bored", "storylet_id": "230527"}], [{"original_text": "but these two found humor in it", "album_id": "72157626883738735", "photo_flickr_id": "5853934087", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46105", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but these two found humor in it", "storylet_id": "230528"}], [{"original_text": "it was a great night ", "album_id": "72157626883738735", "photo_flickr_id": "5854492416", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46105", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great night", "storylet_id": "230529"}], [{"original_text": "Everyone from the town gathered to attend the homeowner's association meeting. ", "album_id": "72157626883738735", "photo_flickr_id": "5853926883", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46106", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone from the town gathered to attend the homeowner 's association meeting .", "storylet_id": "230530"}], [{"original_text": "Lea didn't agree with some of the proposals raised at the meeting.", "album_id": "72157626883738735", "photo_flickr_id": "5854480792", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46106", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] did n't agree with some of the proposals raised at the meeting .", "storylet_id": "230531"}], [{"original_text": "Bob was just thinking about going home to eat some pizza and watch TV. ", "album_id": "72157626883738735", "photo_flickr_id": "5854484430", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46106", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was just thinking about going home to eat some pizza and watch tv .", "storylet_id": "230532"}], [{"original_text": "The presenters made a joke about pooper scoopers. ", "album_id": "72157626883738735", "photo_flickr_id": "5853934087", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46106", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the presenters made a joke about pooper scoopers .", "storylet_id": "230533"}], [{"original_text": "Tim looked at his wife who arrived late to the meeting.", "album_id": "72157626883738735", "photo_flickr_id": "5854494672", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46106", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] looked at his wife who arrived late to the meeting .", "storylet_id": "230534"}], [{"original_text": "It was time for the Navaro actors yearly guild meeting.", "album_id": "72157626883738735", "photo_flickr_id": "5853926883", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46107", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was time for the navaro actors yearly guild meeting .", "storylet_id": "230535"}], [{"original_text": "Fred and James took the stage and started the talk.", "album_id": "72157626883738735", "photo_flickr_id": "5853943173", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46107", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] and [male] took the stage and started the talk .", "storylet_id": "230536"}], [{"original_text": "Erik wasn't too happy about this because he had wanted to be one of the starters.", "album_id": "72157626883738735", "photo_flickr_id": "5854484430", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46107", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was n't too happy about this because he had wanted to be one of the starters .", "storylet_id": "230537"}], [{"original_text": "Kathy and Kit enjoyed the starters though.", "album_id": "72157626883738735", "photo_flickr_id": "5853934087", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46107", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and kit enjoyed the starters though .", "storylet_id": "230538"}], [{"original_text": "Rachael just wasn't amused. She had had a bad day and just wasn't feeling it.", "album_id": "72157626883738735", "photo_flickr_id": "5854492416", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46107", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] just was n't amused . she had had a bad day and just was n't feeling it .", "storylet_id": "230539"}], [{"original_text": "These three people are charged with consorting with Satan deep in the forest at night. ", "album_id": "72157626883738735", "photo_flickr_id": "5853926883", "setting": "last-3-pick-old-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "46108", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these three people are charged with consorting with satan deep in the forest at night .", "storylet_id": "230540"}], [{"original_text": "They plead innocent at the village meeting. Gina voted to drown them.", "album_id": "72157626883738735", "photo_flickr_id": "5854480792", "setting": "last-3-pick-old-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "46108", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they plead innocent at the village meeting . [female] voted to drown them .", "storylet_id": "230541"}], [{"original_text": "Tim voted to stone them--not with rocks, just some mushrooms he'd saved from the Druid Daze festival.", "album_id": "72157626883738735", "photo_flickr_id": "5854484430", "setting": "last-3-pick-old-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "46108", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] voted to stone them -- not with rocks , just some mushrooms he 'd saved from the druid daze festival .", "storylet_id": "230542"}], [{"original_text": "Jen and Tod abstained because they'd been in the woods with the accused and didn't want to be ratted out.", "album_id": "72157626883738735", "photo_flickr_id": "5853934087", "setting": "last-3-pick-old-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "46108", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "jen and tod abstained because they 'd been in the woods with the accused and did n't want to be ratted out .", "storylet_id": "230543"}], [{"original_text": "Will (who hadn't been paying attention) decided to vote with the majority. The accused will be stoned at dawn.", "album_id": "72157626883738735", "photo_flickr_id": "5854494672", "setting": "last-3-pick-old-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "46108", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] ( who had n't been paying attention ) decided to vote with the majority . the accused will be stoned at dawn .", "storylet_id": "230544"}], [{"original_text": "Quite a few people came to listen to the speakers.", "album_id": "72157626883738735", "photo_flickr_id": "5853926883", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "46109", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "quite a few people came to listen to the speakers .", "storylet_id": "230545"}], [{"original_text": "The audience paid close attention.", "album_id": "72157626883738735", "photo_flickr_id": "5854480792", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "46109", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the audience paid close attention .", "storylet_id": "230546"}], [{"original_text": "They seemed very absorbed in what was being said.", "album_id": "72157626883738735", "photo_flickr_id": "5854484430", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "46109", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they seemed very absorbed in what was being said .", "storylet_id": "230547"}], [{"original_text": "They laughed at some things that were said.", "album_id": "72157626883738735", "photo_flickr_id": "5853934087", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "46109", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they laughed at some things that were said .", "storylet_id": "230548"}], [{"original_text": "They learned a lot.", "album_id": "72157626883738735", "photo_flickr_id": "5854494672", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "46109", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they learned a lot .", "storylet_id": "230549"}], [{"original_text": "It was a sad day for Mr. Shakir, he never thought he would have to say goodbye to his beloved wife so soon.", "album_id": "72157631819742383", "photo_flickr_id": "8108944617", "setting": "first-2-pick-and-tell", "worker_id": "M2MHH0TK19CSLQG", "story_id": "46110", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a sad day for mr. shakir , he never thought he would have to say goodbye to his beloved wife so soon .", "storylet_id": "230550"}], [{"original_text": "Today was the day he would bury her and attempt to say goodbye to the life they shared.", "album_id": "72157631819742383", "photo_flickr_id": "8108923536", "setting": "first-2-pick-and-tell", "worker_id": "M2MHH0TK19CSLQG", "story_id": "46110", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today was the day he would bury her and attempt to say goodbye to the life they shared .", "storylet_id": "230551"}], [{"original_text": "He told her so many times it wasn't a safe alternative to cigarettes. If only she would of listened she would still be here. ", "album_id": "72157631819742383", "photo_flickr_id": "8108919323", "setting": "first-2-pick-and-tell", "worker_id": "M2MHH0TK19CSLQG", "story_id": "46110", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he told her so many times it was n't a safe alternative to cigarettes . if only she would of listened she would still be here .", "storylet_id": "230552"}], [{"original_text": "Instead he is covering her grave in flowers. ", "album_id": "72157631819742383", "photo_flickr_id": "8108926782", "setting": "first-2-pick-and-tell", "worker_id": "M2MHH0TK19CSLQG", "story_id": "46110", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "instead he is covering her grave in flowers .", "storylet_id": "230553"}], [{"original_text": "And a headstone is being placed to mark the memory of her life. ", "album_id": "72157631819742383", "photo_flickr_id": "8108924337", "setting": "first-2-pick-and-tell", "worker_id": "M2MHH0TK19CSLQG", "story_id": "46110", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and a headstone is being placed to mark the memory of her life .", "storylet_id": "230554"}], [{"original_text": "A man in blue comes to the cemetery to pay his respects.", "album_id": "72157631819742383", "photo_flickr_id": "8108944617", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46111", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a man in blue comes to the cemetery to pay his respects .", "storylet_id": "230555"}], [{"original_text": "The man is coming to the cemetery to visit a loved one that passed away.", "album_id": "72157631819742383", "photo_flickr_id": "8108951140", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46111", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man is coming to the cemetery to visit a loved one that passed away .", "storylet_id": "230556"}], [{"original_text": "A freshly dug grave covered in flowers.", "album_id": "72157631819742383", "photo_flickr_id": "8108926782", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46111", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a freshly dug grave covered in flowers .", "storylet_id": "230557"}], [{"original_text": "Flowers surround a final resting place in the cemetery.", "album_id": "72157631819742383", "photo_flickr_id": "8108912039", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46111", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "flowers surround a final resting place in the cemetery .", "storylet_id": "230558"}], [{"original_text": "The grave of a deceased man who was in the Army and fought in Korea.", "album_id": "72157631819742383", "photo_flickr_id": "8108909559", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46111", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the grave of a deceased man who was in the organization and fought in location .", "storylet_id": "230559"}], [{"original_text": "Joe went to see his mother's grave", "album_id": "72157631819742383", "photo_flickr_id": "8108944617", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46112", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] went to see his mother 's grave", "storylet_id": "230560"}], [{"original_text": "someone had planted a tree in place for her", "album_id": "72157631819742383", "photo_flickr_id": "8108923536", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46112", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "someone had planted a tree in place for her", "storylet_id": "230561"}], [{"original_text": "a lot of people payed tribute to her", "album_id": "72157631819742383", "photo_flickr_id": "8108919323", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46112", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lot of people payed tribute to her", "storylet_id": "230562"}], [{"original_text": "lot of memorabilia was left at the grave side ", "album_id": "72157631819742383", "photo_flickr_id": "8108926782", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46112", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "lot of memorabilia was left at the grave side", "storylet_id": "230563"}], [{"original_text": "here was her tombstone ", "album_id": "72157631819742383", "photo_flickr_id": "8108924337", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46112", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here was her tombstone", "storylet_id": "230564"}], [{"original_text": "We took a trip to an old cemetery today. ", "album_id": "72157631819742383", "photo_flickr_id": "8108944617", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46113", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to an old cemetery today .", "storylet_id": "230565"}], [{"original_text": "Some of the graves looked lonely and not very well cared for.", "album_id": "72157631819742383", "photo_flickr_id": "8108923536", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46113", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the graves looked lonely and not very well cared for .", "storylet_id": "230566"}], [{"original_text": "There were funny things scattered about as well.", "album_id": "72157631819742383", "photo_flickr_id": "8108919323", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46113", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were funny things scattered about as well .", "storylet_id": "230567"}], [{"original_text": "This grave looked recent and had a tone of flowers.", "album_id": "72157631819742383", "photo_flickr_id": "8108926782", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46113", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this grave looked recent and had a tone of flowers .", "storylet_id": "230568"}], [{"original_text": "It belonged to a loving wife and mother.", "album_id": "72157631819742383", "photo_flickr_id": "8108924337", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46113", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it belonged to a loving wife and mother .", "storylet_id": "230569"}], [{"original_text": "I go to my mother's gravesite once a year.", "album_id": "72157631819742383", "photo_flickr_id": "8108944617", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46114", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i go to my mother 's gravesite once a year .", "storylet_id": "230570"}], [{"original_text": "Lately, the place doesn't seem well kept up.", "album_id": "72157631819742383", "photo_flickr_id": "8108923536", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46114", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lately , the place does n't seem well kept up .", "storylet_id": "230571"}], [{"original_text": "I find a lot of litter on the ground, and try to pick it up when I can.", "album_id": "72157631819742383", "photo_flickr_id": "8108919323", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46114", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i find a lot of litter on the ground , and try to pick it up when i can .", "storylet_id": "230572"}], [{"original_text": "There's always one or two graves completely covered with flowers, but others that seem to never see a visitor.", "album_id": "72157631819742383", "photo_flickr_id": "8108926782", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46114", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there 's always one or two graves completely covered with flowers , but others that seem to never see a visitor .", "storylet_id": "230573"}], [{"original_text": "I spend time sitting near my mother's grave, and think about how short life is. I miss her every day.", "album_id": "72157631819742383", "photo_flickr_id": "8108924337", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46114", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i spend time sitting near my mother 's grave , and think about how short life is . i miss her every day .", "storylet_id": "230574"}], [{"original_text": "I woke up to the sound of helicopters after a night of binge drinking.", "album_id": "72157632828469673", "photo_flickr_id": "8499000016", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46115", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i woke up to the sound of helicopters after a night of binge drinking .", "storylet_id": "230575"}], [{"original_text": "There was a party going on around me.", "album_id": "72157632828469673", "photo_flickr_id": "8499000290", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46115", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a party going on around me .", "storylet_id": "230576"}], [{"original_text": "Everyone wanted to meet me.", "album_id": "72157632828469673", "photo_flickr_id": "8499003526", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46115", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone wanted to meet me .", "storylet_id": "230577"}], [{"original_text": "Even the mayor's wife showed up to shake my hand.", "album_id": "72157632828469673", "photo_flickr_id": "8499002058", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46115", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the mayor 's wife showed up to shake my hand .", "storylet_id": "230578"}], [{"original_text": "Someone gave me a flag which was weird.", "album_id": "72157632828469673", "photo_flickr_id": "8497899781", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46115", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someone gave me a flag which was weird .", "storylet_id": "230579"}], [{"original_text": "We're here today to commemorate a fallen soldier.", "album_id": "72157632828469673", "photo_flickr_id": "8499003526", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46116", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 're here today to commemorate a fallen soldier .", "storylet_id": "230580"}], [{"original_text": "There are even helicopters.", "album_id": "72157632828469673", "photo_flickr_id": "8499000016", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46116", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are even helicopters .", "storylet_id": "230581"}], [{"original_text": "John Apple, a brave soldier.", "album_id": "72157632828469673", "photo_flickr_id": "8497896519", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46116", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] apple , a brave soldier .", "storylet_id": "230582"}], [{"original_text": "May he rest in peace.", "album_id": "72157632828469673", "photo_flickr_id": "8499000774", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46116", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] he rest in peace .", "storylet_id": "230583"}], [{"original_text": "The mother of John Apple.", "album_id": "72157632828469673", "photo_flickr_id": "8497896153", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46116", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the mother of [male] apple .", "storylet_id": "230584"}], [{"original_text": "Some came by helicopter. ", "album_id": "72157632828469673", "photo_flickr_id": "8499000016", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46117", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some came by helicopter .", "storylet_id": "230585"}], [{"original_text": "They all wanted to pay their respects. The grave side service was overflowing with people. ", "album_id": "72157632828469673", "photo_flickr_id": "8499000290", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46117", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all wanted to pay their respects . the grave side service was overflowing with people .", "storylet_id": "230586"}], [{"original_text": "Many paid their respects to the parents. ", "album_id": "72157632828469673", "photo_flickr_id": "8499003526", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46117", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many paid their respects to the parents .", "storylet_id": "230587"}], [{"original_text": "Respects were also paid to the sister. ", "album_id": "72157632828469673", "photo_flickr_id": "8499002058", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46117", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "respects were also paid to the sister .", "storylet_id": "230588"}], [{"original_text": " Formally folded flags were presented to the family. ", "album_id": "72157632828469673", "photo_flickr_id": "8497899781", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46117", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "formally folded flags were presented to the family .", "storylet_id": "230589"}], [{"original_text": "Today, on a beautiful peaceful day, we said goodbye to a loved one.", "album_id": "72157632828469673", "photo_flickr_id": "8499000016", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46118", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , on a beautiful peaceful day , we said goodbye to a loved one .", "storylet_id": "230590"}], [{"original_text": "It was a good turnout as we watched the casket lower into the ground.", "album_id": "72157632828469673", "photo_flickr_id": "8499000290", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46118", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a good turnout as we watched the casket lower into the ground .", "storylet_id": "230591"}], [{"original_text": "Many people came by to offer condolences.", "album_id": "72157632828469673", "photo_flickr_id": "8499003526", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46118", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many people came by to offer condolences .", "storylet_id": "230592"}], [{"original_text": "Even back at the house the family was overwhelmed by the love and support shown during this tragic time.", "album_id": "72157632828469673", "photo_flickr_id": "8499002058", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46118", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even back at the house the family was overwhelmed by the love and support shown during this tragic time .", "storylet_id": "230593"}], [{"original_text": "The best part of the service was when the family was presented with the flags and thanked for their service.", "album_id": "72157632828469673", "photo_flickr_id": "8497899781", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46118", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part of the service was when the family was presented with the flags and thanked for their service .", "storylet_id": "230594"}], [{"original_text": "It was a nice clear day for the service.", "album_id": "72157632828469673", "photo_flickr_id": "8499000016", "setting": "last-3-pick-old-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "46119", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a nice clear day for the service .", "storylet_id": "230595"}], [{"original_text": "Many paid their respects as he was laid to rest.", "album_id": "72157632828469673", "photo_flickr_id": "8499000290", "setting": "last-3-pick-old-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "46119", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many paid their respects as he was laid to rest .", "storylet_id": "230596"}], [{"original_text": "There were so many people who came to show their support", "album_id": "72157632828469673", "photo_flickr_id": "8499003526", "setting": "last-3-pick-old-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "46119", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were so many people who came to show their support", "storylet_id": "230597"}], [{"original_text": "Many people shared stories about him.", "album_id": "72157632828469673", "photo_flickr_id": "8499002058", "setting": "last-3-pick-old-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "46119", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many people shared stories about him .", "storylet_id": "230598"}], [{"original_text": "His family receives the flag in his honor.", "album_id": "72157632828469673", "photo_flickr_id": "8497899781", "setting": "last-3-pick-old-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "46119", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his family receives the flag in his honor .", "storylet_id": "230599"}], [{"original_text": "Today I decided to leave the house and go to the farmer's market.", "album_id": "72157624337173194", "photo_flickr_id": "4725948651", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46120", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i decided to leave the house and go to the farmer 's market .", "storylet_id": "230600"}], [{"original_text": "Lots of fresh fruit and vegetables to choose from.", "album_id": "72157624337173194", "photo_flickr_id": "4725949925", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46120", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of fresh fruit and vegetables to choose from .", "storylet_id": "230601"}], [{"original_text": "I wanted to make a very colorful meal and these turnips looked nice.", "album_id": "72157624337173194", "photo_flickr_id": "4726600016", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46120", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i wanted to make a very colorful meal and these turnips looked nice .", "storylet_id": "230602"}], [{"original_text": "But I didn't have any meat protein for my dish.", "album_id": "72157624337173194", "photo_flickr_id": "4725945673", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46120", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but i did n't have any meat protein for my dish .", "storylet_id": "230603"}], [{"original_text": "The meal turned out great and I was very proud of myself.", "album_id": "72157624337173194", "photo_flickr_id": "4726595156", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46120", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the meal turned out great and i was very proud of myself .", "storylet_id": "230604"}], [{"original_text": "Checking out the weather before I do some gardening.", "album_id": "72157624337173194", "photo_flickr_id": "4726601686", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "46121", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "checking out the weather before i do some gardening .", "storylet_id": "230605"}], [{"original_text": "Weather is cooperating so I bought the supplies.", "album_id": "72157624337173194", "photo_flickr_id": "4726601076", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "46121", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "weather is cooperating so i bought the supplies .", "storylet_id": "230606"}], [{"original_text": "My husband got of photo of me and my favorite past time.", "album_id": "72157624337173194", "photo_flickr_id": "4725945673", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "46121", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my husband got of photo of me and my favorite past time .", "storylet_id": "230607"}], [{"original_text": "Later on we went to a farmers market for fresh veggies.", "album_id": "72157624337173194", "photo_flickr_id": "4725948651", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "46121", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later on we went to a farmers market for fresh veggies .", "storylet_id": "230608"}], [{"original_text": "The meal I prepared at the end of a long but pleasant day.", "album_id": "72157624337173194", "photo_flickr_id": "4726595156", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "46121", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the meal i prepared at the end of a long but pleasant day .", "storylet_id": "230609"}], [{"original_text": "Lizzie went for a drive and stopped at a farm. ", "album_id": "72157624337173194", "photo_flickr_id": "4725948651", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46122", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] went for a drive and stopped at a farm .", "storylet_id": "230610"}], [{"original_text": "There were many different lettuces to choose from.", "album_id": "72157624337173194", "photo_flickr_id": "4725949925", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46122", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many different lettuces to choose from .", "storylet_id": "230611"}], [{"original_text": "Lizzie really liked how deep red the beets were.", "album_id": "72157624337173194", "photo_flickr_id": "4726600016", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46122", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] really liked how deep red the beets were .", "storylet_id": "230612"}], [{"original_text": "Lizzie picked some vegetables herself. ", "album_id": "72157624337173194", "photo_flickr_id": "4725945673", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46122", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] picked some vegetables herself .", "storylet_id": "230613"}], [{"original_text": "Back at home Lizzie made herself a salad from all the delicious food she had bought at the farm. ", "album_id": "72157624337173194", "photo_flickr_id": "4726595156", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46122", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "back at home [female] made herself a salad from all the delicious food she had bought at the farm .", "storylet_id": "230614"}], [{"original_text": "There was no traffic to hamper her plans.", "album_id": "72157624337173194", "photo_flickr_id": "4725948651", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9TVZ4VK3J3YTQB", "story_id": "46123", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was no traffic to hamper her plans .", "storylet_id": "230615"}], [{"original_text": "She went to the farmers market.", "album_id": "72157624337173194", "photo_flickr_id": "4725949925", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9TVZ4VK3J3YTQB", "story_id": "46123", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she went to the farmers market .", "storylet_id": "230616"}], [{"original_text": "A variety of vegetables were available for purchase.", "album_id": "72157624337173194", "photo_flickr_id": "4726600016", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9TVZ4VK3J3YTQB", "story_id": "46123", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a variety of vegetables were available for purchase .", "storylet_id": "230617"}], [{"original_text": "Later her son took advantage of the good weather by exploring the outdoors.", "album_id": "72157624337173194", "photo_flickr_id": "4725945673", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9TVZ4VK3J3YTQB", "story_id": "46123", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later her son took advantage of the good weather by exploring the outdoors .", "storylet_id": "230618"}], [{"original_text": "A good meal was prepared from the goods from the market.", "album_id": "72157624337173194", "photo_flickr_id": "4726595156", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9TVZ4VK3J3YTQB", "story_id": "46123", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a good meal was prepared from the goods from the market .", "storylet_id": "230619"}], [{"original_text": "She showed up to the product market. It was a nice day.", "album_id": "72157624337173194", "photo_flickr_id": "4725948651", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46124", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she showed up to the product market . it was a nice day .", "storylet_id": "230620"}], [{"original_text": "Here she is looking through all the fresh vegetables. ", "album_id": "72157624337173194", "photo_flickr_id": "4725949925", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46124", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here she is looking through all the fresh vegetables .", "storylet_id": "230621"}], [{"original_text": "They had amazing red onions", "album_id": "72157624337173194", "photo_flickr_id": "4726600016", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46124", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had amazing red onions", "storylet_id": "230622"}], [{"original_text": "Here are one of the workers picking them.", "album_id": "72157624337173194", "photo_flickr_id": "4725945673", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46124", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here are one of the workers picking them .", "storylet_id": "230623"}], [{"original_text": "And when you're done shopping, you can get a delicious salad. ", "album_id": "72157624337173194", "photo_flickr_id": "4726595156", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46124", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and when you 're done shopping , you can get a delicious salad .", "storylet_id": "230624"}], [{"original_text": "Today's tour at the stair and ramp museum starts out with a creepy over-sized head statue. ", "album_id": "72157626666548053", "photo_flickr_id": "5752467505", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46125", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today 's tour at the stair and ramp museum starts out with a creepy over-sized head statue .", "storylet_id": "230625"}], [{"original_text": "I thought hey, why not take every picture in black and white, all the cool kids are!", "album_id": "72157626666548053", "photo_flickr_id": "5752469663", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46125", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i thought hey , why not take every picture in black and white , all the cool kids are !", "storylet_id": "230626"}], [{"original_text": "I don't know what it is about that ramp, but I just knew I'd regret it if I didn't get photos of it from many angles.", "album_id": "72157626666548053", "photo_flickr_id": "5753015910", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46125", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i do n't know what it is about that ramp , but i just knew i 'd regret it if i did n't get photos of it from many angles .", "storylet_id": "230627"}], [{"original_text": "Then we got to this awesome semi-spiral staircase inside! Watch your step on those platforms!", "album_id": "72157626666548053", "photo_flickr_id": "5753018756", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46125", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we got to this awesome semi-spiral staircase inside ! watch your step on those platforms !", "storylet_id": "230628"}], [{"original_text": "Our tour ended back outside, with a different set of stairs, by this point, I was convinced I had wasted my entire day.", "album_id": "72157626666548053", "photo_flickr_id": "5753017066", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46125", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our tour ended back outside , with a different set of stairs , by this point , i was convinced i had wasted my entire day .", "storylet_id": "230629"}], [{"original_text": "We visited abandoned buildings near our house this weekend.", "album_id": "72157626666548053", "photo_flickr_id": "5752469097", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46126", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited abandoned buildings near our house this weekend .", "storylet_id": "230630"}], [{"original_text": "It's eerie how quiet it is, even though there's buildings around.", "album_id": "72157626666548053", "photo_flickr_id": "5753015910", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46126", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's eerie how quiet it is , even though there 's buildings around .", "storylet_id": "230631"}], [{"original_text": "It looks like they were abandoned in the middle of construction.", "album_id": "72157626666548053", "photo_flickr_id": "5753017066", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46126", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it looks like they were abandoned in the middle of construction .", "storylet_id": "230632"}], [{"original_text": "Some parts are mostly finished.", "album_id": "72157626666548053", "photo_flickr_id": "5753018352", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46126", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some parts are mostly finished .", "storylet_id": "230633"}], [{"original_text": "They even have working stairs in them.", "album_id": "72157626666548053", "photo_flickr_id": "5753018756", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46126", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even have working stairs in them .", "storylet_id": "230634"}], [{"original_text": "Kurt was practicing his photography. ", "album_id": "72157626666548053", "photo_flickr_id": "5752469097", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46127", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was practicing his photography .", "storylet_id": "230635"}], [{"original_text": "He wanted to get better at black and white photos.", "album_id": "72157626666548053", "photo_flickr_id": "5753015910", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46127", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he wanted to get better at black and white photos .", "storylet_id": "230636"}], [{"original_text": "This empty lot seemed like the best spot to start.", "album_id": "72157626666548053", "photo_flickr_id": "5753017066", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46127", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this empty lot seemed like the best spot to start .", "storylet_id": "230637"}], [{"original_text": "He climbed up the stairs and took a shot of the door.", "album_id": "72157626666548053", "photo_flickr_id": "5753018352", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46127", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he climbed up the stairs and took a shot of the door .", "storylet_id": "230638"}], [{"original_text": "Then looked down them at what a beautiful scene he had created.", "album_id": "72157626666548053", "photo_flickr_id": "5753018756", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "46127", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then looked down them at what a beautiful scene he had created .", "storylet_id": "230639"}], [{"original_text": "He preferred taking pictures of the old buildings in grayscale.", "album_id": "72157626666548053", "photo_flickr_id": "5752469097", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "46128", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he preferred taking pictures of the old buildings in grayscale .", "storylet_id": "230640"}], [{"original_text": "He felt that it gave more character to the pedways...", "album_id": "72157626666548053", "photo_flickr_id": "5753015910", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "46128", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he felt that it gave more character to the pedways ...", "storylet_id": "230641"}], [{"original_text": "And, especially the exterior of the building. ", "album_id": "72157626666548053", "photo_flickr_id": "5753017066", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "46128", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and , especially the exterior of the building .", "storylet_id": "230642"}], [{"original_text": "He loved the way the light glared in the background.", "album_id": "72157626666548053", "photo_flickr_id": "5753018352", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "46128", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he loved the way the light glared in the background .", "storylet_id": "230643"}], [{"original_text": "And, he finished his shoot with the downward shot of the stairs.", "album_id": "72157626666548053", "photo_flickr_id": "5753018756", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "46128", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , he finished his shoot with the downward shot of the stairs .", "storylet_id": "230644"}], [{"original_text": "I bought some souvenirs on vacation last weekend.", "album_id": "72157626666548053", "photo_flickr_id": "5752467505", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46129", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i bought some souvenirs on vacation last weekend .", "storylet_id": "230645"}], [{"original_text": "There were some bridges to get to them.", "album_id": "72157626666548053", "photo_flickr_id": "5752469663", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46129", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were some bridges to get to them .", "storylet_id": "230646"}], [{"original_text": "There was no one else around.", "album_id": "72157626666548053", "photo_flickr_id": "5753015910", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46129", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was no one else around .", "storylet_id": "230647"}], [{"original_text": "There was no one inside either.", "album_id": "72157626666548053", "photo_flickr_id": "5753018756", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46129", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was no one inside either .", "storylet_id": "230648"}], [{"original_text": "I spent some time walking around looking for somebody.", "album_id": "72157626666548053", "photo_flickr_id": "5753017066", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46129", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i spent some time walking around looking for somebody .", "storylet_id": "230649"}], [{"original_text": "The stain glass windows were bright.", "album_id": "72157624260296988", "photo_flickr_id": "4635170925", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46130", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stain glass windows were bright .", "storylet_id": "230650"}], [{"original_text": "The color of the walls were golden.", "album_id": "72157624260296988", "photo_flickr_id": "4635775274", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46130", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the color of the walls were golden .", "storylet_id": "230651"}], [{"original_text": "The sun shone bright into the room.", "album_id": "72157624260296988", "photo_flickr_id": "4635171677", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46130", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sun shone bright into the room .", "storylet_id": "230652"}], [{"original_text": "Everything was set up and ready.", "album_id": "72157624260296988", "photo_flickr_id": "4635776072", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46130", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everything was set up and ready .", "storylet_id": "230653"}], [{"original_text": "The sky darken and cast a shadow in the back.", "album_id": "72157624260296988", "photo_flickr_id": "4638685696", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46130", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sky darken and cast a shadow in the back .", "storylet_id": "230654"}], [{"original_text": "Admiring the beautiful stained glass inside a house of worship.", "album_id": "72157624260296988", "photo_flickr_id": "4635171677", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46131", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "admiring the beautiful stained glass inside a house of worship .", "storylet_id": "230655"}], [{"original_text": "A lovely old church where we are going to worship today.", "album_id": "72157624260296988", "photo_flickr_id": "4638082719", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46131", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lovely old church where we are going to worship today .", "storylet_id": "230656"}], [{"original_text": "The outstanding stained glass windows inside the church.", "album_id": "72157624260296988", "photo_flickr_id": "4635776610", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46131", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the outstanding stained glass windows inside the church .", "storylet_id": "230657"}], [{"original_text": "A man coming to speak with God inside a beautiful church.", "album_id": "72157624260296988", "photo_flickr_id": "4635777148", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46131", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a man coming to speak with god inside a beautiful church .", "storylet_id": "230658"}], [{"original_text": "To women come to worship in the house of the Lord.", "album_id": "72157624260296988", "photo_flickr_id": "4635173415", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46131", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to women come to worship in the house of the lord .", "storylet_id": "230659"}], [{"original_text": "My first visit to an out of my state church. Looks really beautiful. The windows are gorgeous. ", "album_id": "72157624260296988", "photo_flickr_id": "4635170925", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46132", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my first visit to an out of my state church . looks really beautiful . the windows are gorgeous .", "storylet_id": "230660"}], [{"original_text": "The paint on the walls are exquisite. This is a lovely place to worship.", "album_id": "72157624260296988", "photo_flickr_id": "4635775274", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46132", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the paint on the walls are exquisite . this is a lovely place to worship .", "storylet_id": "230661"}], [{"original_text": "More windows on the other side of this church.", "album_id": "72157624260296988", "photo_flickr_id": "4635171677", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46132", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "more windows on the other side of this church .", "storylet_id": "230662"}], [{"original_text": "This room is quiet. I don't think i'm allowed in here.", "album_id": "72157624260296988", "photo_flickr_id": "4635776072", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46132", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this room is quiet . i do n't think i 'm allowed in here .", "storylet_id": "230663"}], [{"original_text": "Out in the yard, all the beautiful crosses.", "album_id": "72157624260296988", "photo_flickr_id": "4638685696", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46132", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "out in the yard , all the beautiful crosses .", "storylet_id": "230664"}], [{"original_text": "This was one if the nicest churches they ever visited. ", "album_id": "72157624260296988", "photo_flickr_id": "4635170925", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46133", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was one if the nicest churches they ever visited .", "storylet_id": "230665"}], [{"original_text": "The painting was amazing. ", "album_id": "72157624260296988", "photo_flickr_id": "4635775274", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46133", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the painting was amazing .", "storylet_id": "230666"}], [{"original_text": "As were the stained glass windows. ", "album_id": "72157624260296988", "photo_flickr_id": "4635171677", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46133", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as were the stained glass windows .", "storylet_id": "230667"}], [{"original_text": "And intricate metal and wood work. ", "album_id": "72157624260296988", "photo_flickr_id": "4635776072", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46133", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and intricate metal and wood work .", "storylet_id": "230668"}], [{"original_text": "The headstones in the graveyard outside of the church were even detailed. ", "album_id": "72157624260296988", "photo_flickr_id": "4638685696", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46133", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the headstones in the graveyard outside of the church were even detailed .", "storylet_id": "230669"}], [{"original_text": "This summer, I toured a beautiful cathedral. ", "album_id": "72157624260296988", "photo_flickr_id": "4635171677", "setting": "last-3-pick-old-and-tell", "worker_id": "J8V2D9J94VQSX6K", "story_id": "46134", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this summer , i toured a beautiful cathedral .", "storylet_id": "230670"}], [{"original_text": "It was really old, and very pretty on the outside.", "album_id": "72157624260296988", "photo_flickr_id": "4638082719", "setting": "last-3-pick-old-and-tell", "worker_id": "J8V2D9J94VQSX6K", "story_id": "46134", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was really old , and very pretty on the outside .", "storylet_id": "230671"}], [{"original_text": "It had the most beautiful stained glass windows that I have ever seen.", "album_id": "72157624260296988", "photo_flickr_id": "4635776610", "setting": "last-3-pick-old-and-tell", "worker_id": "J8V2D9J94VQSX6K", "story_id": "46134", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it had the most beautiful stained glass windows that i have ever seen .", "storylet_id": "230672"}], [{"original_text": "There were many rows of stained-wood pews.", "album_id": "72157624260296988", "photo_flickr_id": "4635777148", "setting": "last-3-pick-old-and-tell", "worker_id": "J8V2D9J94VQSX6K", "story_id": "46134", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many rows of stained-wood pews .", "storylet_id": "230673"}], [{"original_text": "Other people were touring as well.", "album_id": "72157624260296988", "photo_flickr_id": "4635173415", "setting": "last-3-pick-old-and-tell", "worker_id": "J8V2D9J94VQSX6K", "story_id": "46134", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "other people were touring as well .", "storylet_id": "230674"}], [{"original_text": "Everyone arrived for the family reunion.", "album_id": "72157632109434318", "photo_flickr_id": "8220982343", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46135", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone arrived for the family reunion .", "storylet_id": "230675"}], [{"original_text": "There was plenty of food and alcohol.", "album_id": "72157632109434318", "photo_flickr_id": "8220975789", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46135", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was plenty of food and alcohol .", "storylet_id": "230676"}], [{"original_text": "Mom was starting to have a little too much fun.", "album_id": "72157632109434318", "photo_flickr_id": "8220974503", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46135", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom was starting to have a little too much fun .", "storylet_id": "230677"}], [{"original_text": "Many photographs were taken.", "album_id": "72157632109434318", "photo_flickr_id": "8220976261", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46135", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many photographs were taken .", "storylet_id": "230678"}], [{"original_text": "After a long day of celebration I decided to take a nap.", "album_id": "72157632109434318", "photo_flickr_id": "8222057528", "setting": "first-2-pick-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "46135", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long day of celebration i decided to take a nap .", "storylet_id": "230679"}], [{"original_text": "Looks like the ladies are gathering in the kitchen again.", "album_id": "72157632109434318", "photo_flickr_id": "8220974503", "setting": "first-2-pick-and-tell", "worker_id": "E4R975VXFGRC2BK", "story_id": "46136", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "looks like the ladies are gathering in the kitchen again .", "storylet_id": "230680"}], [{"original_text": "Aunt Kathy retreated to her favorite chair.", "album_id": "72157632109434318", "photo_flickr_id": "8220977143", "setting": "first-2-pick-and-tell", "worker_id": "E4R975VXFGRC2BK", "story_id": "46136", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "aunt [female] retreated to her favorite chair .", "storylet_id": "230681"}], [{"original_text": "While Aunt Mel is enjoying a cold one to celebrate the reunion. ", "album_id": "72157632109434318", "photo_flickr_id": "8220977591", "setting": "first-2-pick-and-tell", "worker_id": "E4R975VXFGRC2BK", "story_id": "46136", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "while aunt mel is enjoying a cold one to celebrate the reunion .", "storylet_id": "230682"}], [{"original_text": "Uncle Larry can't even stay awake. He hates these kind of things.", "album_id": "72157632109434318", "photo_flickr_id": "8222057528", "setting": "first-2-pick-and-tell", "worker_id": "E4R975VXFGRC2BK", "story_id": "46136", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "uncle [male] ca n't even stay awake . he hates these kind of things .", "storylet_id": "230683"}], [{"original_text": "It is great to see the whole family get together again.", "album_id": "72157632109434318", "photo_flickr_id": "8222060344", "setting": "first-2-pick-and-tell", "worker_id": "E4R975VXFGRC2BK", "story_id": "46136", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is great to see the whole family get together again .", "storylet_id": "230684"}], [{"original_text": "This family gets together with grandpa every summer.", "album_id": "72157632109434318", "photo_flickr_id": "8220982343", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "46137", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this family gets together with grandpa every summer .", "storylet_id": "230685"}], [{"original_text": "Mom shares her recipes with the daughter in law in the kitchen.", "album_id": "72157632109434318", "photo_flickr_id": "8220975789", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "46137", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom shares her recipes with the daughter in law in the kitchen .", "storylet_id": "230686"}], [{"original_text": "Mom and grand ma invited little Tommy to come by for a drink.", "album_id": "72157632109434318", "photo_flickr_id": "8220974503", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "46137", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom and grand ma invited little [male] to come by for a drink .", "storylet_id": "230687"}], [{"original_text": "The daughter and daughter in law wanted to make sure to get a photo of little Tommy.", "album_id": "72157632109434318", "photo_flickr_id": "8220976261", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "46137", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the daughter and daughter in law wanted to make sure to get a photo of little [male] .", "storylet_id": "230688"}], [{"original_text": "And of course Bob dosed off on grandpas favorite chair.", "album_id": "72157632109434318", "photo_flickr_id": "8222057528", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "46137", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and of course [male] dosed off on grandpas favorite chair .", "storylet_id": "230689"}], [{"original_text": "We got the family together for a nice relaxing day, just to catch up on each others lives.", "album_id": "72157632109434318", "photo_flickr_id": "8220982343", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46138", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got the family together for a nice relaxing day , just to catch up on each others lives .", "storylet_id": "230690"}], [{"original_text": "I helped mom organize her kitchen, it was such a mess, but I had fun spending time with mom.", "album_id": "72157632109434318", "photo_flickr_id": "8220975789", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46138", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i helped mom organize her kitchen , it was such a mess , but i had fun spending time with mom .", "storylet_id": "230691"}], [{"original_text": "We made some cocktails to drink. Something mild but I knew mom would enjoy it.", "album_id": "72157632109434318", "photo_flickr_id": "8220974503", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46138", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we made some cocktails to drink . something mild but i knew mom would enjoy it .", "storylet_id": "230692"}], [{"original_text": "We had a lot of fun, We also took a lot of pictures to remember this blissful day.", "album_id": "72157632109434318", "photo_flickr_id": "8220976261", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46138", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a lot of fun , we also took a lot of pictures to remember this blissful day .", "storylet_id": "230693"}], [{"original_text": "We caught Dan sleeping! He couldn't handle all the amazing food we had eaten.", "album_id": "72157632109434318", "photo_flickr_id": "8222057528", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46138", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we caught [male] sleeping ! he could n't handle all the amazing food we had eaten .", "storylet_id": "230694"}], [{"original_text": "This month, my family had their annual reunion.", "album_id": "72157632109434318", "photo_flickr_id": "8220982343", "setting": "last-3-pick-old-and-tell", "worker_id": "J8V2D9J94VQSX6K", "story_id": "46139", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this month , my family had their annual reunion .", "storylet_id": "230695"}], [{"original_text": "My mom and grandmother made dinner for everyone.", "album_id": "72157632109434318", "photo_flickr_id": "8220975789", "setting": "last-3-pick-old-and-tell", "worker_id": "J8V2D9J94VQSX6K", "story_id": "46139", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my mom and grandmother made dinner for everyone .", "storylet_id": "230696"}], [{"original_text": "My great-grandmother, aunt, and grandmother took turns telling all kinds of stories.", "album_id": "72157632109434318", "photo_flickr_id": "8220974503", "setting": "last-3-pick-old-and-tell", "worker_id": "J8V2D9J94VQSX6K", "story_id": "46139", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my great-grandmother , aunt , and grandmother took turns telling all kinds of stories .", "storylet_id": "230697"}], [{"original_text": "My cousin Alicia took pictures of everything!", "album_id": "72157632109434318", "photo_flickr_id": "8220976261", "setting": "last-3-pick-old-and-tell", "worker_id": "J8V2D9J94VQSX6K", "story_id": "46139", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my cousin [female] took pictures of everything !", "storylet_id": "230698"}], [{"original_text": "My dad got so tired, he fell asleep watching television.", "album_id": "72157632109434318", "photo_flickr_id": "8222057528", "setting": "last-3-pick-old-and-tell", "worker_id": "J8V2D9J94VQSX6K", "story_id": "46139", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my dad got so tired , he fell asleep watching television .", "storylet_id": "230699"}], [{"original_text": "I'm so glad I had my camera with me today, during our stroll we came across this amazing building.", "album_id": "72157627531935274", "photo_flickr_id": "6086527462", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46140", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 'm so glad i had my camera with me today , during our stroll we came across this amazing building .", "storylet_id": "230700"}], [{"original_text": "As we got closer I was amazed at how gorgeous it really was.", "album_id": "72157627531935274", "photo_flickr_id": "6085993841", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46140", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as we got closer i was amazed at how gorgeous it really was .", "storylet_id": "230701"}], [{"original_text": "There were many religious statues placed throughout the grounds.", "album_id": "72157627531935274", "photo_flickr_id": "6086534978", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46140", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many religious statues placed throughout the grounds .", "storylet_id": "230702"}], [{"original_text": "Although Jason gets pretty bored with architecture, even he was in awe of the beauty! ", "album_id": "72157627531935274", "photo_flickr_id": "6085978629", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46140", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "although [male] gets pretty bored with architecture , even he was in awe of the beauty !", "storylet_id": "230703"}], [{"original_text": "It wasn't until about 15 minutes walking the grounds that we realized we were trespassing and were soon escorted off the property, but I couldn't resist to snap a few more picture on our way out! ", "album_id": "72157627531935274", "photo_flickr_id": "6085991975", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46140", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was n't until about 15 minutes walking the grounds that we realized we were trespassing and were soon escorted off the property , but i could n't resist to snap a few more picture on our way out !", "storylet_id": "230704"}], [{"original_text": "I went around town testing out my new camera by taking pictures of various buildings.", "album_id": "72157627531935274", "photo_flickr_id": "6085993841", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46141", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went around town testing out my new camera by taking pictures of various buildings .", "storylet_id": "230705"}], [{"original_text": "I found out there's a lot of statues to be found too.", "album_id": "72157627531935274", "photo_flickr_id": "6086534978", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46141", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i found out there 's a lot of statues to be found too .", "storylet_id": "230706"}], [{"original_text": "Some of the buildings are old and falling down.", "album_id": "72157627531935274", "photo_flickr_id": "6086536704", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46141", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the buildings are old and falling down .", "storylet_id": "230707"}], [{"original_text": "The artwork is impressive on some of them.", "album_id": "72157627531935274", "photo_flickr_id": "6085978629", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46141", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the artwork is impressive on some of them .", "storylet_id": "230708"}], [{"original_text": "I wish I could get closer to some to get a better shot of them.", "album_id": "72157627531935274", "photo_flickr_id": "6085984475", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46141", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i wish i could get closer to some to get a better shot of them .", "storylet_id": "230709"}], [{"original_text": "We had a wonderful tour of the city looking at architecture.", "album_id": "72157627531935274", "photo_flickr_id": "6085993841", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46142", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a wonderful tour of the city looking at architecture .", "storylet_id": "230710"}], [{"original_text": "Many of the buildings are adorned with art such as statues.", "album_id": "72157627531935274", "photo_flickr_id": "6086534978", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46142", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of the buildings are adorned with art such as statues .", "storylet_id": "230711"}], [{"original_text": "The buildings themselves are works of art.", "album_id": "72157627531935274", "photo_flickr_id": "6086536704", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46142", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the buildings themselves are works of art .", "storylet_id": "230712"}], [{"original_text": "Intricate reliefs are to be seen everywhere and are magnificent. ", "album_id": "72157627531935274", "photo_flickr_id": "6085978629", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46142", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "intricate reliefs are to be seen everywhere and are magnificent .", "storylet_id": "230713"}], [{"original_text": "The tall artistic columns are very imposing.", "album_id": "72157627531935274", "photo_flickr_id": "6085984475", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46142", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the tall artistic columns are very imposing .", "storylet_id": "230714"}], [{"original_text": "The day began with looking at old, fancy buildings.", "album_id": "72157627531935274", "photo_flickr_id": "6086527462", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46143", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day began with looking at old , fancy buildings .", "storylet_id": "230715"}], [{"original_text": "They looked at one building with statues of a adult figure with children.", "album_id": "72157627531935274", "photo_flickr_id": "6085993841", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46143", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they looked at one building with statues of a adult figure with children .", "storylet_id": "230716"}], [{"original_text": "Then, a martyr like figure was observed.", "album_id": "72157627531935274", "photo_flickr_id": "6086534978", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46143", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then , a martyr like figure was observed .", "storylet_id": "230717"}], [{"original_text": "They were astonished by the beauty of the carvings in the buildings.", "album_id": "72157627531935274", "photo_flickr_id": "6085978629", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46143", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were astonished by the beauty of the carvings in the buildings .", "storylet_id": "230718"}], [{"original_text": "They walked down the road, amazed at what they had seen.", "album_id": "72157627531935274", "photo_flickr_id": "6085991975", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46143", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they walked down the road , amazed at what they had seen .", "storylet_id": "230719"}], [{"original_text": "Jesus statues freaked him out. ", "album_id": "72157627531935274", "photo_flickr_id": "6085993841", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46144", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] statues freaked him out .", "storylet_id": "230720"}], [{"original_text": "Mary even more so. ", "album_id": "72157627531935274", "photo_flickr_id": "6086534978", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46144", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] even more so .", "storylet_id": "230721"}], [{"original_text": "He just didn't get it. ", "album_id": "72157627531935274", "photo_flickr_id": "6086536704", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46144", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he just did n't get it .", "storylet_id": "230722"}], [{"original_text": "In his mind it was like having an imaginary friend. ", "album_id": "72157627531935274", "photo_flickr_id": "6085978629", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46144", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in his mind it was like having an imaginary friend .", "storylet_id": "230723"}], [{"original_text": "And building enormous buildings, spending tons of money for it. ", "album_id": "72157627531935274", "photo_flickr_id": "6085984475", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46144", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and building enormous buildings , spending tons of money for it .", "storylet_id": "230724"}], [{"original_text": "A parade marking an election in Britian.", "album_id": "72157637051940796", "photo_flickr_id": "10538281026", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46145", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a parade marking an election in location .", "storylet_id": "230725"}], [{"original_text": "People watch what is going on below.", "album_id": "72157637051940796", "photo_flickr_id": "10538297075", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46145", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people watch what is going on below .", "storylet_id": "230726"}], [{"original_text": "Reporters and photographers are on hand to capture the moment.", "album_id": "72157637051940796", "photo_flickr_id": "10538586303", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46145", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "reporters and photographers are on hand to capture the moment .", "storylet_id": "230727"}], [{"original_text": "Various people milling about on the sidewalk.", "album_id": "72157637051940796", "photo_flickr_id": "10538674963", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46145", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "various people milling about on the sidewalk .", "storylet_id": "230728"}], [{"original_text": "A man holding a sign during the parade.", "album_id": "72157637051940796", "photo_flickr_id": "10538694973", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46145", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a man holding a sign during the parade .", "storylet_id": "230729"}], [{"original_text": "The band played the music in a reverent way.", "album_id": "72157637051940796", "photo_flickr_id": "10538260206", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46146", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the band played the music in a reverent way .", "storylet_id": "230730"}], [{"original_text": "They brought the casket out.", "album_id": "72157637051940796", "photo_flickr_id": "10538174775", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46146", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they brought the casket out .", "storylet_id": "230731"}], [{"original_text": "They placed the casket in the hearse.", "album_id": "72157637051940796", "photo_flickr_id": "10538223494", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46146", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they placed the casket in the hearse .", "storylet_id": "230732"}], [{"original_text": "The dignitaries followed behind.", "album_id": "72157637051940796", "photo_flickr_id": "10538233134", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46146", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dignitaries followed behind .", "storylet_id": "230733"}], [{"original_text": "They had a gentleman give an account of the happenings inside.", "album_id": "72157637051940796", "photo_flickr_id": "10538536306", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46146", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had a gentleman give an account of the happenings inside .", "storylet_id": "230734"}], [{"original_text": "There was a parade in London with a marching band from the military. ", "album_id": "72157637051940796", "photo_flickr_id": "10538281026", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46147", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a parade in location with a marching band from the military .", "storylet_id": "230735"}], [{"original_text": "People watched from the building windows. ", "album_id": "72157637051940796", "photo_flickr_id": "10538297075", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46147", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people watched from the building windows .", "storylet_id": "230736"}], [{"original_text": "Many more people watched from the sidewalks. ", "album_id": "72157637051940796", "photo_flickr_id": "10538586303", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46147", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many more people watched from the sidewalks .", "storylet_id": "230737"}], [{"original_text": "When the parade was over people talked about it together. ", "album_id": "72157637051940796", "photo_flickr_id": "10538674963", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46147", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the parade was over people talked about it together .", "storylet_id": "230738"}], [{"original_text": "One man was determined to protest the event with a large sign. ", "album_id": "72157637051940796", "photo_flickr_id": "10538694973", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46147", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one man was determined to protest the event with a large sign .", "storylet_id": "230739"}], [{"original_text": "Margret Thatcher is honored by the british guards band.", "album_id": "72157637051940796", "photo_flickr_id": "10538281026", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "46148", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "margret thatcher is honored by the british guards band .", "storylet_id": "230740"}], [{"original_text": "The community is saddened by the loss of Margaret Thatcher.", "album_id": "72157637051940796", "photo_flickr_id": "10538297075", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "46148", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the community is saddened by the loss of [female] thatcher .", "storylet_id": "230741"}], [{"original_text": "Even the news media is interested in the funeral procession of a great Prime Minister.", "album_id": "72157637051940796", "photo_flickr_id": "10538586303", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "46148", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the news media is interested in the funeral procession of a great prime minister .", "storylet_id": "230742"}], [{"original_text": "Many public officials will be by to honor the ex Prime Minister.", "album_id": "72157637051940796", "photo_flickr_id": "10538674963", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "46148", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many public officials will be by to honor the ex prime minister .", "storylet_id": "230743"}], [{"original_text": "Some People are angered by the current Prime minister and prefer Thatcher to Blair.", "album_id": "72157637051940796", "photo_flickr_id": "10538694973", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "46148", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people are angered by the current prime minister and prefer thatcher to [male] .", "storylet_id": "230744"}], [{"original_text": "The marching band played a beautiful melody.", "album_id": "72157637051940796", "photo_flickr_id": "10538281026", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46149", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the marching band played a beautiful melody .", "storylet_id": "230745"}], [{"original_text": "There were even supporters that came out from a hotel.", "album_id": "72157637051940796", "photo_flickr_id": "10538297075", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46149", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were even supporters that came out from a hotel .", "storylet_id": "230746"}], [{"original_text": "The event was very loud and important.", "album_id": "72157637051940796", "photo_flickr_id": "10538586303", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46149", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the event was very loud and important .", "storylet_id": "230747"}], [{"original_text": "We even saw a Christian member of a church to support the gathering.", "album_id": "72157637051940796", "photo_flickr_id": "10538674963", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46149", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even saw a [male] member of a church to support the gathering .", "storylet_id": "230748"}], [{"original_text": "Even if somebody is Christian, they can make mistakes.", "album_id": "72157637051940796", "photo_flickr_id": "10538694973", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46149", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even if somebody is [male] , they can make mistakes .", "storylet_id": "230749"}], [{"original_text": "Today there was an assembly after class, it was voluntary, but I had nothing going on that afternoon so I attended.", "album_id": "72157626609658836", "photo_flickr_id": "5670707024", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46150", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today there was an assembly after class , it was voluntary , but i had nothing going on that afternoon so i attended .", "storylet_id": "230750"}], [{"original_text": "At first we thought it was about money around the world, but when the 2nd speaker came out with photos of a graveyard, we became very confused.", "album_id": "72157626609658836", "photo_flickr_id": "5670140889", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46150", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at first we thought it was about money around the world , but when the 2nd speaker came out with photos of a graveyard , we became very confused .", "storylet_id": "230751"}], [{"original_text": "Unfortunately, I don't think the speakers realize standing directly in front of the screen will result in their face telling more of the story than they hoped for. We had a good laugh though!", "album_id": "72157626609658836", "photo_flickr_id": "5670142941", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46150", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "unfortunately , i do n't think the speakers realize standing directly in front of the screen will result in their face telling more of the story than they hoped for . we had a good laugh though !", "storylet_id": "230752"}], [{"original_text": "This was my favorite piece of equipment to learn about, many-a-nights walking home alone I've wished I had some kind of shank-like object on me, now I know exactly what to make!", "album_id": "72157626609658836", "photo_flickr_id": "5670144093", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46150", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was my favorite piece of equipment to learn about , many-a-nights walking home alone i 've wished i had some kind of shank-like object on me , now i know exactly what to make !", "storylet_id": "230753"}], [{"original_text": "The afternoon had ended on the strangest note yet, this man didn't have anything to show us, he just came out, did a dance and ended the meeting.", "album_id": "72157626609658836", "photo_flickr_id": "5670146529", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46150", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the afternoon had ended on the strangest note yet , this man did n't have anything to show us , he just came out , did a dance and ended the meeting .", "storylet_id": "230754"}], [{"original_text": "Antiques roadshow came to town and was giving a presentation on old items.", "album_id": "72157626609658836", "photo_flickr_id": "5670707024", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46151", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "antiques roadshow came to town and was giving a presentation on old items .", "storylet_id": "230755"}], [{"original_text": "They showed things that had a large value that no one would expect.", "album_id": "72157626609658836", "photo_flickr_id": "5670140889", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46151", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they showed things that had a large value that no one would expect .", "storylet_id": "230756"}], [{"original_text": "This coffin top is easily worth a few million.", "album_id": "72157626609658836", "photo_flickr_id": "5670141511", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46151", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this coffin top is easily worth a few million .", "storylet_id": "230757"}], [{"original_text": "Then they had an open discussion about antiques.", "album_id": "72157626609658836", "photo_flickr_id": "5670142941", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46151", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they had an open discussion about antiques .", "storylet_id": "230758"}], [{"original_text": "People could then get their items appraised live on the screen.", "album_id": "72157626609658836", "photo_flickr_id": "5670145195", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46151", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people could then get their items appraised live on the screen .", "storylet_id": "230759"}], [{"original_text": "Dave Jansen gave a speech at my University last week.", "album_id": "72157626609658836", "photo_flickr_id": "5670707024", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46152", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] jansen gave a speech at my organization last week .", "storylet_id": "230760"}], [{"original_text": "He talked about the importance of a good headstone.", "album_id": "72157626609658836", "photo_flickr_id": "5670140889", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46152", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he talked about the importance of a good headstone .", "storylet_id": "230761"}], [{"original_text": "Bob Charley also showed up to do a skit with Dave.", "album_id": "72157626609658836", "photo_flickr_id": "5670142941", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46152", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] [male] also showed up to do a skit with [male] .", "storylet_id": "230762"}], [{"original_text": "They talked about self defense and blade safety.", "album_id": "72157626609658836", "photo_flickr_id": "5670144093", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46152", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they talked about self defense and blade safety .", "storylet_id": "230763"}], [{"original_text": "Then a random girl in a yellow dress started dancing.", "album_id": "72157626609658836", "photo_flickr_id": "5670146529", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46152", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then a random girl in a yellow dress started dancing .", "storylet_id": "230764"}], [{"original_text": "during the conference i spoke as clear as possible ", "album_id": "72157626609658836", "photo_flickr_id": "5670707024", "setting": "last-3-pick-old-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46153", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during the conference i spoke as clear as possible", "storylet_id": "230765"}], [{"original_text": "when it was my turn to speak it was i reference to the ancient tomb stones ", "album_id": "72157626609658836", "photo_flickr_id": "5670140889", "setting": "last-3-pick-old-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46153", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when it was my turn to speak it was i reference to the ancient tomb stones", "storylet_id": "230766"}], [{"original_text": "once all the serious was over at the conference our was basic on how to meet and greet customers", "album_id": "72157626609658836", "photo_flickr_id": "5670142941", "setting": "last-3-pick-old-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46153", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once all the serious was over at the conference our was basic on how to meet and greet customers", "storylet_id": "230767"}], [{"original_text": "up to date the materials are different in carving a tomb stone ", "album_id": "72157626609658836", "photo_flickr_id": "5670144093", "setting": "last-3-pick-old-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46153", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "up to date the materials are different in carving a tomb stone", "storylet_id": "230768"}], [{"original_text": "to thank everyone for coming out and participating i sung a song", "album_id": "72157626609658836", "photo_flickr_id": "5670146529", "setting": "last-3-pick-old-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46153", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to thank everyone for coming out and participating i sung a song", "storylet_id": "230769"}], [{"original_text": "They were doing a fun talk on items from history.", "album_id": "72157626609658836", "photo_flickr_id": "5670707024", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "46154", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were doing a fun talk on items from history .", "storylet_id": "230770"}], [{"original_text": "They talked about the different gravestones around.", "album_id": "72157626609658836", "photo_flickr_id": "5670140889", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "46154", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they talked about the different gravestones around .", "storylet_id": "230771"}], [{"original_text": "The two presenters bantered back and forth making the talk interesting and funny.", "album_id": "72157626609658836", "photo_flickr_id": "5670142941", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "46154", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the two presenters bantered back and forth making the talk interesting and funny .", "storylet_id": "230772"}], [{"original_text": "They showed a lipstick knife.", "album_id": "72157626609658836", "photo_flickr_id": "5670144093", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "46154", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they showed a lipstick knife .", "storylet_id": "230773"}], [{"original_text": "Then one of the presenters dressed up like a lady drawing many laughs.", "album_id": "72157626609658836", "photo_flickr_id": "5670146529", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "46154", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then one of the presenters dressed up like a lady drawing many laughs .", "storylet_id": "230774"}], [{"original_text": "It was time for practice, and he wondered how they always managed to tangle the wires.", "album_id": "72157624710867491", "photo_flickr_id": "4938840463", "setting": "first-2-pick-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46155", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was time for practice , and he wondered how they always managed to tangle the wires .", "storylet_id": "230775"}], [{"original_text": "It would be easy to trip over the wires, and even just standing there, he could see that.", "album_id": "72157624710867491", "photo_flickr_id": "4938841311", "setting": "first-2-pick-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46155", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it would be easy to trip over the wires , and even just standing there , he could see that .", "storylet_id": "230776"}], [{"original_text": "He adjusted the cymbals, wondering if the session would be successful.", "album_id": "72157624710867491", "photo_flickr_id": "4938838089", "setting": "first-2-pick-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46155", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he adjusted the cymbals , wondering if the session would be successful .", "storylet_id": "230777"}], [{"original_text": "He began with one of the softer songs, loosening up his vocal cords.", "album_id": "72157624710867491", "photo_flickr_id": "4938839059", "setting": "first-2-pick-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46155", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he began with one of the softer songs , loosening up his vocal cords .", "storylet_id": "230778"}], [{"original_text": "As his voice warmed up, he tested some louder notes, thinking this recording session would work out fine.", "album_id": "72157624710867491", "photo_flickr_id": "4938838667", "setting": "first-2-pick-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46155", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as his voice warmed up , he tested some louder notes , thinking this recording session would work out fine .", "storylet_id": "230779"}], [{"original_text": "A drum solo during the concert for the fans.", "album_id": "72157624710867491", "photo_flickr_id": "4939422258", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46156", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a drum solo during the concert for the fans .", "storylet_id": "230780"}], [{"original_text": "Young man playing the keyboards during the festivities.", "album_id": "72157624710867491", "photo_flickr_id": "4939427284", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46156", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "young man playing the keyboards during the festivities .", "storylet_id": "230781"}], [{"original_text": "Slim young man playing the guitar and singing.", "album_id": "72157624710867491", "photo_flickr_id": "4938838667", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46156", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "slim young man playing the guitar and singing .", "storylet_id": "230782"}], [{"original_text": "Checking the cables before the show to make sure everything is working.", "album_id": "72157624710867491", "photo_flickr_id": "4938840463", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46156", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "checking the cables before the show to make sure everything is working .", "storylet_id": "230783"}], [{"original_text": "A person truly into their art sings for the audience.", "album_id": "72157624710867491", "photo_flickr_id": "4938842949", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46156", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a person truly into their art sings for the audience .", "storylet_id": "230784"}], [{"original_text": "This is the band.", "album_id": "72157624710867491", "photo_flickr_id": "4938840463", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46157", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the band .", "storylet_id": "230785"}], [{"original_text": "This is my shoes playing in with the band. I love to dance and sing.", "album_id": "72157624710867491", "photo_flickr_id": "4938841311", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46157", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is my shoes playing in with the band . i love to dance and sing .", "storylet_id": "230786"}], [{"original_text": "Here goes the drummer doing his drummer thing.", "album_id": "72157624710867491", "photo_flickr_id": "4938838089", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46157", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here goes the drummer doing his drummer thing .", "storylet_id": "230787"}], [{"original_text": "I'm singing a song called money, love and fun", "album_id": "72157624710867491", "photo_flickr_id": "4938839059", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46157", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'm singing a song called money , love and fun", "storylet_id": "230788"}], [{"original_text": "I think the crowd likes me.", "album_id": "72157624710867491", "photo_flickr_id": "4938838667", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46157", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think the crowd likes me .", "storylet_id": "230789"}], [{"original_text": "The band member calibrates his instrument with a tuning device.", "album_id": "72157624710867491", "photo_flickr_id": "4938840463", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46158", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the band member calibrates his instrument with a tuning device .", "storylet_id": "230790"}], [{"original_text": "Poised and firm, the band member gets ready for the event.", "album_id": "72157624710867491", "photo_flickr_id": "4938841311", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46158", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "poised and firm , the band member gets ready for the event .", "storylet_id": "230791"}], [{"original_text": "The drummer sets his cymbals to prepare for the gathering.", "album_id": "72157624710867491", "photo_flickr_id": "4938838089", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46158", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the drummer sets his cymbals to prepare for the gathering .", "storylet_id": "230792"}], [{"original_text": "The guitarist sings in a calm manner.", "album_id": "72157624710867491", "photo_flickr_id": "4938839059", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46158", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guitarist sings in a calm manner .", "storylet_id": "230793"}], [{"original_text": "Then he swings his mood from calm to excited.", "album_id": "72157624710867491", "photo_flickr_id": "4938838667", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46158", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then he swings his mood from calm to excited .", "storylet_id": "230794"}], [{"original_text": "Photographed an awesome band.", "album_id": "72157624710867491", "photo_flickr_id": "4938840463", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46159", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "photographed an awesome band .", "storylet_id": "230795"}], [{"original_text": "There is so much that goes on behind the scenes than people realize.", "album_id": "72157624710867491", "photo_flickr_id": "4938841311", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46159", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is so much that goes on behind the scenes than people realize .", "storylet_id": "230796"}], [{"original_text": "The drummer was setting up his drums to make sure everything was perfect.", "album_id": "72157624710867491", "photo_flickr_id": "4938838089", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46159", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the drummer was setting up his drums to make sure everything was perfect .", "storylet_id": "230797"}], [{"original_text": "The lead singer and guitarist was on point in his practice.", "album_id": "72157624710867491", "photo_flickr_id": "4938839059", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46159", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lead singer and guitarist was on point in his practice .", "storylet_id": "230798"}], [{"original_text": "He sang a perfect song and played beautifully.", "album_id": "72157624710867491", "photo_flickr_id": "4938838667", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46159", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he sang a perfect song and played beautifully .", "storylet_id": "230799"}], [{"original_text": "This was a very eerie yet beautiful place to take photos", "album_id": "420512", "photo_flickr_id": "17723237", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "46160", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was a very eerie yet beautiful place to take photos", "storylet_id": "230800"}], [{"original_text": "These old gravestones are surreal but captivating.", "album_id": "420512", "photo_flickr_id": "17723239", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "46160", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these old gravestones are surreal but captivating .", "storylet_id": "230801"}], [{"original_text": "The old font used in these tombs were very interesting.", "album_id": "420512", "photo_flickr_id": "17724181", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "46160", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the old font used in these tombs were very interesting .", "storylet_id": "230802"}], [{"original_text": "These tombs looked stood out for their uniqueness. ", "album_id": "420512", "photo_flickr_id": "17725235", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "46160", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these tombs looked stood out for their uniqueness .", "storylet_id": "230803"}], [{"original_text": "Even the gate was very artistic. ", "album_id": "420512", "photo_flickr_id": "17733194", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "46160", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the gate was very artistic .", "storylet_id": "230804"}], [{"original_text": "While at the art gallery viewing we saw some great work.", "album_id": "420512", "photo_flickr_id": "17723238", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46161", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while at the art gallery viewing we saw some great work .", "storylet_id": "230805"}], [{"original_text": "During our time viewing the art we drank a little wine.", "album_id": "420512", "photo_flickr_id": "17723240", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46161", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "during our time viewing the art we drank a little wine .", "storylet_id": "230806"}], [{"original_text": "My friends were amazed at the art and how great it looked.", "album_id": "420512", "photo_flickr_id": "17723242", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46161", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friends were amazed at the art and how great it looked .", "storylet_id": "230807"}], [{"original_text": "My husband was there enjoying his night after work.", "album_id": "420512", "photo_flickr_id": "17724182", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46161", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my husband was there enjoying his night after work .", "storylet_id": "230808"}], [{"original_text": "We ended up drinking a little too much wine but it was a fun night.", "album_id": "420512", "photo_flickr_id": "17724186", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46161", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended up drinking a little too much wine but it was a fun night .", "storylet_id": "230809"}], [{"original_text": "We decided to tour a historical cemetery.", "album_id": "420512", "photo_flickr_id": "17723237", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46162", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to tour a historical cemetery .", "storylet_id": "230810"}], [{"original_text": "Some of the headstones were beyond repair.", "album_id": "420512", "photo_flickr_id": "17723239", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46162", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the headstones were beyond repair .", "storylet_id": "230811"}], [{"original_text": "The monuments were interesting to look at.", "album_id": "420512", "photo_flickr_id": "17724181", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46162", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the monuments were interesting to look at .", "storylet_id": "230812"}], [{"original_text": "Some almost looked like buildings.", "album_id": "420512", "photo_flickr_id": "17725235", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46162", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some almost looked like buildings .", "storylet_id": "230813"}], [{"original_text": "It was an unusual experience.", "album_id": "420512", "photo_flickr_id": "17733194", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46162", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was an unusual experience .", "storylet_id": "230814"}], [{"original_text": "there are so many stories about grave yards", "album_id": "420512", "photo_flickr_id": "17723237", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "46163", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are so many stories about grave yards", "storylet_id": "230815"}], [{"original_text": "so I went myself and read up on the history", "album_id": "420512", "photo_flickr_id": "17723239", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "46163", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so i went myself and read up on the history", "storylet_id": "230816"}], [{"original_text": "took great pictures of the old buildings", "album_id": "420512", "photo_flickr_id": "17724181", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "46163", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "took great pictures of the old buildings", "storylet_id": "230817"}], [{"original_text": "there also was the old graves that e encounted", "album_id": "420512", "photo_flickr_id": "17725235", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "46163", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there also was the old graves that e encounted", "storylet_id": "230818"}], [{"original_text": "there is great history about this grave yard", "album_id": "420512", "photo_flickr_id": "17733194", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "46163", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is great history about this grave yard", "storylet_id": "230819"}], [{"original_text": "I choose to take black and white photos today.", "album_id": "420512", "photo_flickr_id": "17723237", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46164", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i choose to take black and white photos today .", "storylet_id": "230820"}], [{"original_text": "An old leaflet I found on the floor of the cemetery.", "album_id": "420512", "photo_flickr_id": "17723239", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46164", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "an old leaflet i found on the floor of the cemetery .", "storylet_id": "230821"}], [{"original_text": "I tried to read this but it was in a foreign language.", "album_id": "420512", "photo_flickr_id": "17724181", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46164", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i tried to read this but it was in a foreign language .", "storylet_id": "230822"}], [{"original_text": "These must have been wealthy considering the size of the their tombstones. ", "album_id": "420512", "photo_flickr_id": "17725235", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46164", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these must have been wealthy considering the size of the their tombstones .", "storylet_id": "230823"}], [{"original_text": "And that concluded the day at the LaFayette Cemetery.", "album_id": "420512", "photo_flickr_id": "17733194", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46164", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and that concluded the day at the location location .", "storylet_id": "230824"}], [{"original_text": "Many people showed up in remembrance of the soldier.", "album_id": "549401", "photo_flickr_id": "23981571", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46165", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people showed up in remembrance of the soldier .", "storylet_id": "230825"}], [{"original_text": "He was honored by his former comrades.", "album_id": "549401", "photo_flickr_id": "23981592", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46165", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was honored by his former comrades .", "storylet_id": "230826"}], [{"original_text": "They laid the flag over his coffin.", "album_id": "549401", "photo_flickr_id": "23981621", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46165", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they laid the flag over his coffin .", "storylet_id": "230827"}], [{"original_text": "His family showed up in his support.", "album_id": "549401", "photo_flickr_id": "23981738", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46165", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his family showed up in his support .", "storylet_id": "230828"}], [{"original_text": "This family consists of two brothers and a sister.", "album_id": "549401", "photo_flickr_id": "23981797", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46165", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this family consists of two brothers and a sister .", "storylet_id": "230829"}], [{"original_text": "There was a cube in the cemetery.", "album_id": "549401", "photo_flickr_id": "23981680", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "46166", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a cube in the cemetery .", "storylet_id": "230830"}], [{"original_text": "So we went home instead.", "album_id": "549401", "photo_flickr_id": "23981854", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "46166", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so we went home instead .", "storylet_id": "230831"}], [{"original_text": "Where we proceeded to open our mouths.", "album_id": "549401", "photo_flickr_id": "23981861", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "46166", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "where we proceeded to open our mouths .", "storylet_id": "230832"}], [{"original_text": "Then we took a better picture.", "album_id": "549401", "photo_flickr_id": "23981878", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "46166", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we took a better picture .", "storylet_id": "230833"}], [{"original_text": "I think I drove her away.", "album_id": "549401", "photo_flickr_id": "23981937", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "46166", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think i drove her away .", "storylet_id": "230834"}], [{"original_text": "The funeral for the soldier was uniform.", "album_id": "549401", "photo_flickr_id": "23981571", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "46167", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the funeral for the soldier was uniform .", "storylet_id": "230835"}], [{"original_text": "They gave him a proper send off.", "album_id": "549401", "photo_flickr_id": "23981592", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "46167", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they gave him a proper send off .", "storylet_id": "230836"}], [{"original_text": "They folded the flag above his grave.", "album_id": "549401", "photo_flickr_id": "23981621", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "46167", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they folded the flag above his grave .", "storylet_id": "230837"}], [{"original_text": "Mary and her brother attended.", "album_id": "549401", "photo_flickr_id": "23981738", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "46167", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and her brother attended .", "storylet_id": "230838"}], [{"original_text": "Their family was reunited in this sad time.", "album_id": "549401", "photo_flickr_id": "23981797", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "46167", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their family was reunited in this sad time .", "storylet_id": "230839"}], [{"original_text": "A soldier's funeral includes folding the flag that draped the coffin.", "album_id": "549401", "photo_flickr_id": "23981571", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "46168", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a soldier 's funeral includes folding the flag that draped the coffin .", "storylet_id": "230840"}], [{"original_text": "He died a hero and will be remembered by all whose lives he saved.", "album_id": "549401", "photo_flickr_id": "23981592", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "46168", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he died a hero and will be remembered by all whose lives he saved .", "storylet_id": "230841"}], [{"original_text": "After the flag is silently folded it is presented to family.", "album_id": "549401", "photo_flickr_id": "23981621", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "46168", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the flag is silently folded it is presented to family .", "storylet_id": "230842"}], [{"original_text": "I saw some old classmates that came to pay their respects.", "album_id": "549401", "photo_flickr_id": "23981738", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "46168", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i saw some old classmates that came to pay their respects .", "storylet_id": "230843"}], [{"original_text": "They hadn't seen the fallen soldier since high school but felt compelled to attend the funeral.", "album_id": "549401", "photo_flickr_id": "23981797", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "46168", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had n't seen the fallen soldier since high school but felt compelled to attend the funeral .", "storylet_id": "230844"}], [{"original_text": "The soldiers stood at attention as they unfolded the American flag.", "album_id": "549401", "photo_flickr_id": "23981571", "setting": "last-3-pick-old-and-tell", "worker_id": "TXHL4IYE271GQOW", "story_id": "46169", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the soldiers stood at attention as they unfolded the american flag .", "storylet_id": "230845"}], [{"original_text": "As they continued to unfold the flag, the Chaplain started the funeral service.", "album_id": "549401", "photo_flickr_id": "23981592", "setting": "last-3-pick-old-and-tell", "worker_id": "TXHL4IYE271GQOW", "story_id": "46169", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as they continued to unfold the flag , the chaplain started the funeral service .", "storylet_id": "230846"}], [{"original_text": "The soldiers held the flag in honor over the casket.", "album_id": "549401", "photo_flickr_id": "23981621", "setting": "last-3-pick-old-and-tell", "worker_id": "TXHL4IYE271GQOW", "story_id": "46169", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the soldiers held the flag in honor over the casket .", "storylet_id": "230847"}], [{"original_text": "The soldier's children took a picture at the funeral, where they were honoring their father.", "album_id": "549401", "photo_flickr_id": "23981738", "setting": "last-3-pick-old-and-tell", "worker_id": "TXHL4IYE271GQOW", "story_id": "46169", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the soldier 's children took a picture at the funeral , where they were honoring their father .", "storylet_id": "230848"}], [{"original_text": "The children and son in law took a picture at the funeral celebrating their father's life.", "album_id": "549401", "photo_flickr_id": "23981797", "setting": "last-3-pick-old-and-tell", "worker_id": "TXHL4IYE271GQOW", "story_id": "46169", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the children and son in law took a picture at the funeral celebrating their father 's life .", "storylet_id": "230849"}], [{"original_text": "We took our first trip to the art museum today!", "album_id": "72157627331890945", "photo_flickr_id": "6062211493", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46170", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took our first trip to the art museum today !", "storylet_id": "230850"}], [{"original_text": "There were so many different styles.", "album_id": "72157627331890945", "photo_flickr_id": "6052951557", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46170", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many different styles .", "storylet_id": "230851"}], [{"original_text": "This one seemed a bit out of place, but I guess that's the glory of art, it's all objective.", "album_id": "72157627331890945", "photo_flickr_id": "6052949677", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46170", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one seemed a bit out of place , but i guess that 's the glory of art , it 's all objective .", "storylet_id": "230852"}], [{"original_text": "I loved the paintings that looked so realistic!", "album_id": "72157627331890945", "photo_flickr_id": "6058422814", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46170", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i loved the paintings that looked so realistic !", "storylet_id": "230853"}], [{"original_text": "Jason laughs at me, but I swear I found myself spending more time checking out gorgeous frames than I did the art itself! Definitely planning another trip in the near future!", "album_id": "72157627331890945", "photo_flickr_id": "6061462684", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46170", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] laughs at me , but i swear i found myself spending more time checking out gorgeous frames than i did the art itself ! definitely planning another trip in the near future !", "storylet_id": "230854"}], [{"original_text": "We went to a museum last week and took pictures of lots of paintings.", "album_id": "72157627331890945", "photo_flickr_id": "6053500632", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46171", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a museum last week and took pictures of lots of paintings .", "storylet_id": "230855"}], [{"original_text": "Our goal was to get design ideas for our new apartment.", "album_id": "72157627331890945", "photo_flickr_id": "6061356616", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46171", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our goal was to get design ideas for our new apartment .", "storylet_id": "230856"}], [{"original_text": "We liked contrasting colors.", "album_id": "72157627331890945", "photo_flickr_id": "6061329274", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46171", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we liked contrasting colors .", "storylet_id": "230857"}], [{"original_text": "Interesting sceneries were also part of it.", "album_id": "72157627331890945", "photo_flickr_id": "6062211493", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46171", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "interesting sceneries were also part of it .", "storylet_id": "230858"}], [{"original_text": "We ended up loving this painting and asked them to buy it, but one million dollars was out of our budget.", "album_id": "72157627331890945", "photo_flickr_id": "6061462684", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46171", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended up loving this painting and asked them to buy it , but one million dollars was out of our budget .", "storylet_id": "230859"}], [{"original_text": "We went to the art museum today.", "album_id": "72157627331890945", "photo_flickr_id": "6062211493", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "46172", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the art museum today .", "storylet_id": "230860"}], [{"original_text": "They had a lot of different styles displayed.", "album_id": "72157627331890945", "photo_flickr_id": "6052951557", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "46172", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a lot of different styles displayed .", "storylet_id": "230861"}], [{"original_text": "There were portraits done with pencils.", "album_id": "72157627331890945", "photo_flickr_id": "6052949677", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "46172", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were portraits done with pencils .", "storylet_id": "230862"}], [{"original_text": "Also still life paintings done with oils.", "album_id": "72157627331890945", "photo_flickr_id": "6058422814", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "46172", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "also still life paintings done with oils .", "storylet_id": "230863"}], [{"original_text": "My favorite were the flower paintings.", "album_id": "72157627331890945", "photo_flickr_id": "6061462684", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "46172", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite were the flower paintings .", "storylet_id": "230864"}], [{"original_text": "I went to the museum today to check out some paintings.", "album_id": "72157627331890945", "photo_flickr_id": "6062211493", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "46173", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the museum today to check out some paintings .", "storylet_id": "230865"}], [{"original_text": "I saw this really interesting painting of the last meal.", "album_id": "72157627331890945", "photo_flickr_id": "6052951557", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "46173", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw this really interesting painting of the last meal .", "storylet_id": "230866"}], [{"original_text": "Diego Rivera even had some of his early sketches in the collection.", "album_id": "72157627331890945", "photo_flickr_id": "6052949677", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "46173", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] rivera even had some of his early sketches in the collection .", "storylet_id": "230867"}], [{"original_text": "I was really inspired by a painting of sculptures, it was so realistic.", "album_id": "72157627331890945", "photo_flickr_id": "6058422814", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "46173", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was really inspired by a painting of sculptures , it was so realistic .", "storylet_id": "230868"}], [{"original_text": "I bought a print of my favorite painting of flowers from the gift shop.", "album_id": "72157627331890945", "photo_flickr_id": "6061462684", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "46173", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i bought a print of my favorite painting of flowers from the gift shop .", "storylet_id": "230869"}], [{"original_text": "For me, a walk through an art museum is better than a movie. This painting took to to the beach in my mind.", "album_id": "72157627331890945", "photo_flickr_id": "6053500632", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46174", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for me , a walk through an art museum is better than a movie . this painting took to to the beach in my mind .", "storylet_id": "230870"}], [{"original_text": "Here, I was transported into a long ago horse show.", "album_id": "72157627331890945", "photo_flickr_id": "6061356616", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46174", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here , i was transported into a long ago horse show .", "storylet_id": "230871"}], [{"original_text": "I may never go back in time to an ancient Native American village, but I can go using the painting in my mind!", "album_id": "72157627331890945", "photo_flickr_id": "6061329274", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46174", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i may never go back in time to an ancient native american village , but i can go using the painting in my mind !", "storylet_id": "230872"}], [{"original_text": "Or I can walk on the long ago streets of Paris.", "album_id": "72157627331890945", "photo_flickr_id": "6062211493", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46174", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "or i can walk on the long ago streets of location .", "storylet_id": "230873"}], [{"original_text": "I can imagine my lover has just presented me with this vase full of zinnias. My mind gets to go everywhere in a day.", "album_id": "72157627331890945", "photo_flickr_id": "6061462684", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46174", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i can imagine my lover has just presented me with this vase full of zinnias . my mind gets to go everywhere in a day .", "storylet_id": "230874"}], [{"original_text": "The group of people were excited for their first family reunion.", "album_id": "72157641419066363", "photo_flickr_id": "12727194355", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46175", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group of people were excited for their first family reunion .", "storylet_id": "230875"}], [{"original_text": "Traveling all the way from Idaho, the Adams family were extremely delightful to visit.", "album_id": "72157641419066363", "photo_flickr_id": "12727364993", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46175", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "traveling all the way from location , the adams family were extremely delightful to visit .", "storylet_id": "230876"}], [{"original_text": "Jill and Janet found it hard to believe that their grandchildren were growing up.", "album_id": "72157641419066363", "photo_flickr_id": "12727244765", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46175", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] and [female] found it hard to believe that their grandchildren were growing up .", "storylet_id": "230877"}], [{"original_text": "The Smith's family proposed the idea of the reunion and requested to meet up in their hometown.", "album_id": "72157641419066363", "photo_flickr_id": "12727405633", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46175", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the smith 's family proposed the idea of the reunion and requested to meet up in their hometown .", "storylet_id": "230878"}], [{"original_text": "Even the Jackson family were excited to find out the news.", "album_id": "72157641419066363", "photo_flickr_id": "12727428953", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46175", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the [male] family were excited to find out the news .", "storylet_id": "230879"}], [{"original_text": "Lots of family members came from far and wide to attend the reunion.", "album_id": "72157641419066363", "photo_flickr_id": "12727645554", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46176", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "lots of family members came from far and wide to attend the reunion .", "storylet_id": "230880"}], [{"original_text": "The entire family has not seen each other in many years.", "album_id": "72157641419066363", "photo_flickr_id": "12727194355", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46176", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the entire family has not seen each other in many years .", "storylet_id": "230881"}], [{"original_text": "Brothers and sisters who don't always see each other very often were reunited.", "album_id": "72157641419066363", "photo_flickr_id": "12727202485", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46176", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "brothers and sisters who do n't always see each other very often were reunited .", "storylet_id": "230882"}], [{"original_text": "The two oldest surviving sisters were ecstatic to see each other.", "album_id": "72157641419066363", "photo_flickr_id": "12727244765", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46176", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the two oldest surviving sisters were ecstatic to see each other .", "storylet_id": "230883"}], [{"original_text": "Many younger members of the family also came to the reunion.", "album_id": "72157641419066363", "photo_flickr_id": "12727413893", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46176", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many younger members of the family also came to the reunion .", "storylet_id": "230884"}], [{"original_text": "There was an opportunity for the family to get photos together. Here we are all together.", "album_id": "72157641419066363", "photo_flickr_id": "12727194355", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "46177", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an opportunity for the family to get photos together . here we are all together .", "storylet_id": "230885"}], [{"original_text": "This picture shows the siblings and their spouses.", "album_id": "72157641419066363", "photo_flickr_id": "12727364993", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "46177", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this picture shows the siblings and their spouses .", "storylet_id": "230886"}], [{"original_text": "The two eldest in the group are here with each other.", "album_id": "72157641419066363", "photo_flickr_id": "12727244765", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "46177", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the two eldest in the group are here with each other .", "storylet_id": "230887"}], [{"original_text": "This is the younger generation of cousins.", "album_id": "72157641419066363", "photo_flickr_id": "12727405633", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "46177", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the younger generation of cousins .", "storylet_id": "230888"}], [{"original_text": "We were able to get one of just the four of us.", "album_id": "72157641419066363", "photo_flickr_id": "12727428953", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "46177", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were able to get one of just the four of us .", "storylet_id": "230889"}], [{"original_text": "We got the whole family together to take a large family photo.", "album_id": "72157641419066363", "photo_flickr_id": "12727194355", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46178", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got the whole family together to take a large family photo .", "storylet_id": "230890"}], [{"original_text": "All the sons and daughters got together for a photo.", "album_id": "72157641419066363", "photo_flickr_id": "12727364993", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46178", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the sons and daughters got together for a photo .", "storylet_id": "230891"}], [{"original_text": "Mom even got together with her sister for a photo. So many of us took a picture of this, they didn't know where to look.", "album_id": "72157641419066363", "photo_flickr_id": "12727244765", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46178", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom even got together with her sister for a photo . so many of us took a picture of this , they did n't know where to look .", "storylet_id": "230892"}], [{"original_text": "We also got the grand kids to take a few pictures as well for the photo album.", "album_id": "72157641419066363", "photo_flickr_id": "12727405633", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46178", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also got the grand kids to take a few pictures as well for the photo album .", "storylet_id": "230893"}], [{"original_text": "Finally we also got the immediate family members together to take pictures.", "album_id": "72157641419066363", "photo_flickr_id": "12727428953", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46178", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally we also got the immediate family members together to take pictures .", "storylet_id": "230894"}], [{"original_text": "Picture day, this is the one of the entire group!", "album_id": "72157641419066363", "photo_flickr_id": "12727194355", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46179", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "picture day , this is the one of the entire group !", "storylet_id": "230895"}], [{"original_text": "A subgroup within the family, great smiling faces.", "album_id": "72157641419066363", "photo_flickr_id": "12727364993", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46179", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a subgroup within the family , great smiling faces .", "storylet_id": "230896"}], [{"original_text": "Two amazing women, mothers, and grandmothers!", "album_id": "72157641419066363", "photo_flickr_id": "12727244765", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46179", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two amazing women , mothers , and grandmothers !", "storylet_id": "230897"}], [{"original_text": "A picture of some of the girls.", "album_id": "72157641419066363", "photo_flickr_id": "12727405633", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46179", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a picture of some of the girls .", "storylet_id": "230898"}], [{"original_text": "A very sweet family who helps hold the large unit together.", "album_id": "72157641419066363", "photo_flickr_id": "12727428953", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46179", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a very sweet family who helps hold the large unit together .", "storylet_id": "230899"}], [{"original_text": "The wagon prepares to receive the body of the fallen cowboy.", "album_id": "72157641572652875", "photo_flickr_id": "12798585705", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46180", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wagon prepares to receive the body of the fallen cowboy .", "storylet_id": "230900"}], [{"original_text": "Members of the deceased's family gather in preparation for the arrival of the body.", "album_id": "72157641572652875", "photo_flickr_id": "12798581445", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46180", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "members of the deceased 's family gather in preparation for the arrival of the body .", "storylet_id": "230901"}], [{"original_text": "The body is carried by the deceased's friends and family as they prepare to load it onto the wagon.", "album_id": "72157641572652875", "photo_flickr_id": "12798674673", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46180", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the body is carried by the deceased 's friends and family as they prepare to load it onto the wagon .", "storylet_id": "230902"}], [{"original_text": "The body is loaded onto the wagon so that it can be transferred to the cemetery.", "album_id": "72157641572652875", "photo_flickr_id": "12798669253", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46180", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the body is loaded onto the wagon so that it can be transferred to the cemetery .", "storylet_id": "230903"}], [{"original_text": "The wagon and horse mounted cowboys process down the street en route to the cemetery.", "album_id": "72157641572652875", "photo_flickr_id": "12798976294", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46180", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the wagon and horse mounted cowboys process down the street en route to the cemetery .", "storylet_id": "230904"}], [{"original_text": "A service for someone who was perhaps a cowboy due to the wagon.", "album_id": "72157641572652875", "photo_flickr_id": "12798585705", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46181", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a service for someone who was perhaps a cowboy due to the wagon .", "storylet_id": "230905"}], [{"original_text": "Family and friends come to pay their last respects to the departed.", "album_id": "72157641572652875", "photo_flickr_id": "12798681523", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46181", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "family and friends come to pay their last respects to the departed .", "storylet_id": "230906"}], [{"original_text": "A picture taken as a memorial to the person that passed away.", "album_id": "72157641572652875", "photo_flickr_id": "12798581445", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46181", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a picture taken as a memorial to the person that passed away .", "storylet_id": "230907"}], [{"original_text": "The coffin being brought from the church.", "album_id": "72157641572652875", "photo_flickr_id": "12798987574", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46181", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the coffin being brought from the church .", "storylet_id": "230908"}], [{"original_text": "The coffin being placed in the wagon by friends and family for transport.", "album_id": "72157641572652875", "photo_flickr_id": "12798669253", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46181", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the coffin being placed in the wagon by friends and family for transport .", "storylet_id": "230909"}], [{"original_text": "grandfather always wanted his funeral on horse and buggy.", "album_id": "72157641572652875", "photo_flickr_id": "12798585705", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46182", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandfather always wanted his funeral on horse and buggy .", "storylet_id": "230910"}], [{"original_text": "Here is 1 of his friends. He will be missed.", "album_id": "72157641572652875", "photo_flickr_id": "12798681523", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46182", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is 1 of his friends . he will be missed .", "storylet_id": "230911"}], [{"original_text": "Taking pictures with his friend.", "album_id": "72157641572652875", "photo_flickr_id": "12798581445", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46182", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "taking pictures with his friend .", "storylet_id": "230912"}], [{"original_text": "Carrying his to his horse and carriage ride to the cemetary.", "album_id": "72157641572652875", "photo_flickr_id": "12798987574", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46182", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "carrying his to his horse and carriage ride to the cemetary .", "storylet_id": "230913"}], [{"original_text": "On the way to the cemetary.", "album_id": "72157641572652875", "photo_flickr_id": "12798669253", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46182", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the way to the cemetary .", "storylet_id": "230914"}], [{"original_text": "We had an old fashioned funeral for our grandmother today.", "album_id": "72157641572652875", "photo_flickr_id": "12798585705", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "46183", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had an old fashioned funeral for our grandmother today .", "storylet_id": "230915"}], [{"original_text": "Here is a picture of the whole family.", "album_id": "72157641572652875", "photo_flickr_id": "12798581445", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "46183", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is a picture of the whole family .", "storylet_id": "230916"}], [{"original_text": "My dad and brother helped carry the casket along.", "album_id": "72157641572652875", "photo_flickr_id": "12798674673", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "46183", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my dad and brother helped carry the casket along .", "storylet_id": "230917"}], [{"original_text": "We loaded it into the wagon.", "album_id": "72157641572652875", "photo_flickr_id": "12798669253", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "46183", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we loaded it into the wagon .", "storylet_id": "230918"}], [{"original_text": "Some of our family road on horses along with her.", "album_id": "72157641572652875", "photo_flickr_id": "12798976294", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "46183", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of our family road on horses along with her .", "storylet_id": "230919"}], [{"original_text": "A horse drawn wagon prepares to assist in a western themed funeral.", "album_id": "72157641572652875", "photo_flickr_id": "12798585705", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46184", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a horse drawn wagon prepares to assist in a western themed funeral .", "storylet_id": "230920"}], [{"original_text": "The family of the deceased takes a group photo at the funeral home.", "album_id": "72157641572652875", "photo_flickr_id": "12798581445", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46184", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family of the deceased takes a group photo at the funeral home .", "storylet_id": "230921"}], [{"original_text": "The casket is rolled out of the funeral home.", "album_id": "72157641572652875", "photo_flickr_id": "12798674673", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46184", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the casket is rolled out of the funeral home .", "storylet_id": "230922"}], [{"original_text": "The casket it loaded onto the old wagon.", "album_id": "72157641572652875", "photo_flickr_id": "12798669253", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46184", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the casket it loaded onto the old wagon .", "storylet_id": "230923"}], [{"original_text": "Horses replace cars as the funeral procession travels down the street.", "album_id": "72157641572652875", "photo_flickr_id": "12798976294", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46184", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "horses replace cars as the funeral procession travels down the street .", "storylet_id": "230924"}], [{"original_text": "The abandoned town of Chernobyl. ", "album_id": "72157641657578444", "photo_flickr_id": "12836196545", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46185", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the abandoned town of location .", "storylet_id": "230925"}], [{"original_text": "The trees look all dead.", "album_id": "72157641657578444", "photo_flickr_id": "12836625644", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46185", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the trees look all dead .", "storylet_id": "230926"}], [{"original_text": "Looks like a wasteland.", "album_id": "72157641657578444", "photo_flickr_id": "12836194785", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46185", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looks like a wasteland .", "storylet_id": "230927"}], [{"original_text": "All the houses are deserted.", "album_id": "72157641657578444", "photo_flickr_id": "12836624464", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46185", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all the houses are deserted .", "storylet_id": "230928"}], [{"original_text": "Finally out of the town. Fresh air.", "album_id": "72157641657578444", "photo_flickr_id": "12836625634", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46185", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally out of the town . fresh air .", "storylet_id": "230929"}], [{"original_text": "The band has a gig tonight and decides to set everything up prior to the event.", "album_id": "72157641657578444", "photo_flickr_id": "12836196545", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "46186", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the band has a gig tonight and decides to set everything up prior to the event .", "storylet_id": "230930"}], [{"original_text": "First, the vocals and sound is checked. Dylan sounds great!", "album_id": "72157641657578444", "photo_flickr_id": "12836277663", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "46186", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first , the vocals and sound is checked . [male] sounds great !", "storylet_id": "230931"}], [{"original_text": "Next, keyboard is checked. The keyboard adds so much to the band's unique sound.", "album_id": "72157641657578444", "photo_flickr_id": "12836194785", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "46186", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next , keyboard is checked . the keyboard adds so much to the band 's unique sound .", "storylet_id": "230932"}], [{"original_text": "Steve is making sure all the keys and strokes are ready for tonight.", "album_id": "72157641657578444", "photo_flickr_id": "12836275863", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "46186", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is making sure all the keys and strokes are ready for tonight .", "storylet_id": "230933"}], [{"original_text": "Lastly, Adam sings the chorus to make sure that everyone is in tune and ready.", "album_id": "72157641657578444", "photo_flickr_id": "12836276873", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "46186", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , [male] sings the chorus to make sure that everyone is in tune and ready .", "storylet_id": "230934"}], [{"original_text": "i drove into the enclosure, past the red lights on the chain link fence.", "album_id": "72157641657578444", "photo_flickr_id": "12836196545", "setting": "last-3-pick-old-and-tell", "worker_id": "R8S6417UDUFP0VI", "story_id": "46187", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i drove into the enclosure , past the red lights on the chain link fence .", "storylet_id": "230935"}], [{"original_text": "There used to be old growth trees in this area.", "album_id": "72157641657578444", "photo_flickr_id": "12836625644", "setting": "last-3-pick-old-and-tell", "worker_id": "R8S6417UDUFP0VI", "story_id": "46187", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there used to be old growth trees in this area .", "storylet_id": "230936"}], [{"original_text": "The Atlantis Company destroyed the forests while strip mining.", "album_id": "72157641657578444", "photo_flickr_id": "12836194785", "setting": "last-3-pick-old-and-tell", "worker_id": "R8S6417UDUFP0VI", "story_id": "46187", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the organization organization destroyed the forests while strip mining .", "storylet_id": "230937"}], [{"original_text": "The company went bankrupt. The buildings were abandoned and closed off.", "album_id": "72157641657578444", "photo_flickr_id": "12836624464", "setting": "last-3-pick-old-and-tell", "worker_id": "R8S6417UDUFP0VI", "story_id": "46187", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the company went bankrupt . the buildings were abandoned and closed off .", "storylet_id": "230938"}], [{"original_text": "Some of the woods came back, ten years later.", "album_id": "72157641657578444", "photo_flickr_id": "12836625634", "setting": "last-3-pick-old-and-tell", "worker_id": "R8S6417UDUFP0VI", "story_id": "46187", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the woods came back , ten years later .", "storylet_id": "230939"}], [{"original_text": "An outside light guards the fenced in area waiting for construction crews. ", "album_id": "72157641657578444", "photo_flickr_id": "12836196545", "setting": "last-3-pick-old-and-tell", "worker_id": "NZ11PA62TSBB5NF", "story_id": "46188", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an outside light guards the fenced in area waiting for construction crews .", "storylet_id": "230940"}], [{"original_text": "A hand drawn rendering of what will eventually exist on the construction site. ", "album_id": "72157641657578444", "photo_flickr_id": "12836277663", "setting": "last-3-pick-old-and-tell", "worker_id": "NZ11PA62TSBB5NF", "story_id": "46188", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a hand drawn rendering of what will eventually exist on the construction site .", "storylet_id": "230941"}], [{"original_text": "Mounds of dirt are ll that remain in the area that has recently been cleared away. ", "album_id": "72157641657578444", "photo_flickr_id": "12836194785", "setting": "last-3-pick-old-and-tell", "worker_id": "NZ11PA62TSBB5NF", "story_id": "46188", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mounds of dirt are ll that remain in the area that has recently been cleared away .", "storylet_id": "230942"}], [{"original_text": "An old building is being destroyed to make way for a new day.", "album_id": "72157641657578444", "photo_flickr_id": "12836275863", "setting": "last-3-pick-old-and-tell", "worker_id": "NZ11PA62TSBB5NF", "story_id": "46188", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an old building is being destroyed to make way for a new day .", "storylet_id": "230943"}], [{"original_text": "An empty parking lot awaits the return of the builders to work on their construction project. ", "album_id": "72157641657578444", "photo_flickr_id": "12836276873", "setting": "last-3-pick-old-and-tell", "worker_id": "NZ11PA62TSBB5NF", "story_id": "46188", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "an empty parking lot awaits the return of the builders to work on their construction project .", "storylet_id": "230944"}], [{"original_text": "This is some of my favorite pieces of art.", "album_id": "72157641657578444", "photo_flickr_id": "12836196545", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46189", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is some of my favorite pieces of art .", "storylet_id": "230945"}], [{"original_text": "Here is several trees. I love this picture.", "album_id": "72157641657578444", "photo_flickr_id": "12836625644", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46189", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is several trees . i love this picture .", "storylet_id": "230946"}], [{"original_text": "Sands and mountains.", "album_id": "72157641657578444", "photo_flickr_id": "12836194785", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46189", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sands and mountains .", "storylet_id": "230947"}], [{"original_text": "An abandon building", "album_id": "72157641657578444", "photo_flickr_id": "12836624464", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46189", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an abandon building", "storylet_id": "230948"}], [{"original_text": "A long corridor of trees.", "album_id": "72157641657578444", "photo_flickr_id": "12836625634", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46189", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a long corridor of trees .", "storylet_id": "230949"}], [{"original_text": "This Saturday we had a get-together for all the people I work with.", "album_id": "72157624756855255", "photo_flickr_id": "4959286652", "setting": "first-2-pick-and-tell", "worker_id": "1YK1DFB5KJCUARP", "story_id": "46190", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this saturday we had a get-together for all the people i work with .", "storylet_id": "230950"}], [{"original_text": "This was documented by a professional photographer.", "album_id": "72157624756855255", "photo_flickr_id": "4958698357", "setting": "first-2-pick-and-tell", "worker_id": "1YK1DFB5KJCUARP", "story_id": "46190", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was documented by a professional photographer .", "storylet_id": "230951"}], [{"original_text": "There was plenty of delicious cake and ice cream.", "album_id": "72157624756855255", "photo_flickr_id": "4959293396", "setting": "first-2-pick-and-tell", "worker_id": "1YK1DFB5KJCUARP", "story_id": "46190", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was plenty of delicious cake and ice cream .", "storylet_id": "230952"}], [{"original_text": "There were also many games involving balls.", "album_id": "72157624756855255", "photo_flickr_id": "4959294560", "setting": "first-2-pick-and-tell", "worker_id": "1YK1DFB5KJCUARP", "story_id": "46190", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also many games involving balls .", "storylet_id": "230953"}], [{"original_text": "This surely brought all of us closer.", "album_id": "72157624756855255", "photo_flickr_id": "4958711719", "setting": "first-2-pick-and-tell", "worker_id": "1YK1DFB5KJCUARP", "story_id": "46190", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this surely brought all of us closer .", "storylet_id": "230954"}], [{"original_text": "We had a lot of fun this afternoon at the work party.", "album_id": "72157624756855255", "photo_flickr_id": "4959294560", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46191", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a lot of fun this afternoon at the work party .", "storylet_id": "230955"}], [{"original_text": "They had cake.", "album_id": "72157624756855255", "photo_flickr_id": "4959287618", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46191", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had cake .", "storylet_id": "230956"}], [{"original_text": "There were a lot of people taking pictures.", "album_id": "72157624756855255", "photo_flickr_id": "4959296286", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46191", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of people taking pictures .", "storylet_id": "230957"}], [{"original_text": "We had a lot of fun playing games outside.", "album_id": "72157624756855255", "photo_flickr_id": "4958705055", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46191", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a lot of fun playing games outside .", "storylet_id": "230958"}], [{"original_text": "Afterwards we all took pictures together.", "album_id": "72157624756855255", "photo_flickr_id": "4958711719", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46191", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards we all took pictures together .", "storylet_id": "230959"}], [{"original_text": "The company social was appreciated by those that worked on the special project.", "album_id": "72157624756855255", "photo_flickr_id": "4959286652", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46192", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the company social was appreciated by those that worked on the special project .", "storylet_id": "230960"}], [{"original_text": "Some of the activities were recorded for memories sake.", "album_id": "72157624756855255", "photo_flickr_id": "4958698357", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46192", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the activities were recorded for memories sake .", "storylet_id": "230961"}], [{"original_text": "Lots of delicious, but unhealthy goodies were served.", "album_id": "72157624756855255", "photo_flickr_id": "4959293396", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46192", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lots of delicious , but unhealthy goodies were served .", "storylet_id": "230962"}], [{"original_text": "And, lawn games were provided as well.", "album_id": "72157624756855255", "photo_flickr_id": "4959294560", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46192", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , lawn games were provided as well .", "storylet_id": "230963"}], [{"original_text": "The team's success certainly made the party more enjoyable.", "album_id": "72157624756855255", "photo_flickr_id": "4958711719", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46192", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the team 's success certainly made the party more enjoyable .", "storylet_id": "230964"}], [{"original_text": "The company threw us a party for doing a great job on a project.", "album_id": "72157624756855255", "photo_flickr_id": "4959286652", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46193", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the company threw us a party for doing a great job on a project .", "storylet_id": "230965"}], [{"original_text": "Our team was being recorded to show other teams what a successful team looks like.", "album_id": "72157624756855255", "photo_flickr_id": "4958698357", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46193", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our team was being recorded to show other teams what a successful team looks like .", "storylet_id": "230966"}], [{"original_text": "They provided drinks and cake.", "album_id": "72157624756855255", "photo_flickr_id": "4959293396", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46193", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they provided drinks and cake .", "storylet_id": "230967"}], [{"original_text": "We had games to play.", "album_id": "72157624756855255", "photo_flickr_id": "4959294560", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46193", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had games to play .", "storylet_id": "230968"}], [{"original_text": "We made great memories as team members for our company.", "album_id": "72157624756855255", "photo_flickr_id": "4958711719", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46193", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we made great memories as team members for our company .", "storylet_id": "230969"}], [{"original_text": "This day was full of fun. Our team building event included Bocce ball.", "album_id": "72157624756855255", "photo_flickr_id": "4959294560", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46194", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this day was full of fun . our team building event included organization ball .", "storylet_id": "230970"}], [{"original_text": "And the cake for desert pretty much got eaten all up.", "album_id": "72157624756855255", "photo_flickr_id": "4959287618", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46194", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the cake for desert pretty much got eaten all up .", "storylet_id": "230971"}], [{"original_text": "Here's a photo of our photographer taking pictures of the event.", "album_id": "72157624756855255", "photo_flickr_id": "4959296286", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46194", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's a photo of our photographer taking pictures of the event .", "storylet_id": "230972"}], [{"original_text": "And here's our CEO throwing the bocce ball.", "album_id": "72157624756855255", "photo_flickr_id": "4958705055", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46194", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and here 's our ceo throwing the bocce ball .", "storylet_id": "230973"}], [{"original_text": "Had to take a final photo of our team. ", "album_id": "72157624756855255", "photo_flickr_id": "4958711719", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46194", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "had to take a final photo of our team .", "storylet_id": "230974"}], [{"original_text": "Lat night I went out for drinks with my girlfriends, this is Kelly.", "album_id": "72157629391264564", "photo_flickr_id": "7051768533", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46195", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "lat night i went out for drinks with my girlfriends , this is [female] .", "storylet_id": "230975"}], [{"original_text": "My freind Jesee was really enjoying herself.", "album_id": "72157629391264564", "photo_flickr_id": "6905679512", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46195", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my freind jesee was really enjoying herself .", "storylet_id": "230976"}], [{"original_text": "Claire was quoting a freind of hers in this picture.", "album_id": "72157629391264564", "photo_flickr_id": "6905682906", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46195", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] was quoting a freind of hers in this picture .", "storylet_id": "230977"}], [{"original_text": "The is my freind Denise looking great as usual.", "album_id": "72157629391264564", "photo_flickr_id": "7051780851", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46195", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the is my freind [female] looking great as usual .", "storylet_id": "230978"}], [{"original_text": "My freind Tammy always has a great smile when taking pictures.", "album_id": "72157629391264564", "photo_flickr_id": "7051783159", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46195", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my freind [female] always has a great smile when taking pictures .", "storylet_id": "230979"}], [{"original_text": "A dad takes his son out to dinner.", "album_id": "72157629391264564", "photo_flickr_id": "7051774227", "setting": "first-2-pick-and-tell", "worker_id": "XB8E16ILVELBVUP", "story_id": "46196", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a dad takes his son out to dinner .", "storylet_id": "230980"}], [{"original_text": "The people at the next table thought the boy was cute and stopped to take a picture.", "album_id": "72157629391264564", "photo_flickr_id": "6905688916", "setting": "first-2-pick-and-tell", "worker_id": "XB8E16ILVELBVUP", "story_id": "46196", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the people at the next table thought the boy was cute and stopped to take a picture .", "storylet_id": "230981"}], [{"original_text": "The waitress was lots of fun.", "album_id": "72157629391264564", "photo_flickr_id": "7051783159", "setting": "first-2-pick-and-tell", "worker_id": "XB8E16ILVELBVUP", "story_id": "46196", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the waitress was lots of fun .", "storylet_id": "230982"}], [{"original_text": "The little boy sat with his mom for a little while.", "album_id": "72157629391264564", "photo_flickr_id": "7051792981", "setting": "first-2-pick-and-tell", "worker_id": "XB8E16ILVELBVUP", "story_id": "46196", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the little boy sat with his mom for a little while .", "storylet_id": "230983"}], [{"original_text": "The boy and his mom saw an old friend who stopped by to take a picture.", "album_id": "72157629391264564", "photo_flickr_id": "7051795847", "setting": "first-2-pick-and-tell", "worker_id": "XB8E16ILVELBVUP", "story_id": "46196", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boy and his mom saw an old friend who stopped by to take a picture .", "storylet_id": "230984"}], [{"original_text": "Capturing family moments on at the party was my favorite part of the day.", "album_id": "72157629391264564", "photo_flickr_id": "7051774227", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46197", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "capturing family moments on at the party was my favorite part of the day .", "storylet_id": "230985"}], [{"original_text": "When the little guy arrived all eyes were on him.", "album_id": "72157629391264564", "photo_flickr_id": "6905688916", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46197", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when the little guy arrived all eyes were on him .", "storylet_id": "230986"}], [{"original_text": "Everyone was happy to be there for the day.", "album_id": "72157629391264564", "photo_flickr_id": "7051783159", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46197", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was happy to be there for the day .", "storylet_id": "230987"}], [{"original_text": "He could tell that he was going to have a good day.", "album_id": "72157629391264564", "photo_flickr_id": "7051792981", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46197", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he could tell that he was going to have a good day .", "storylet_id": "230988"}], [{"original_text": "I am so glad I got to be a part of something so special.", "album_id": "72157629391264564", "photo_flickr_id": "7051795847", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46197", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am so glad i got to be a part of something so special .", "storylet_id": "230989"}], [{"original_text": "Everyone seemed to have a blast on our night out at the restaurant. ", "album_id": "72157629391264564", "photo_flickr_id": "7051768533", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46198", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone seemed to have a blast on our night out at the restaurant .", "storylet_id": "230990"}], [{"original_text": "The food and drinks were delicious. ", "album_id": "72157629391264564", "photo_flickr_id": "6905679512", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46198", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the food and drinks were delicious .", "storylet_id": "230991"}], [{"original_text": "A lot of conversation was had while we were waiting. ", "album_id": "72157629391264564", "photo_flickr_id": "6905682906", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46198", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lot of conversation was had while we were waiting .", "storylet_id": "230992"}], [{"original_text": "Everyone had a smile on their face.", "album_id": "72157629391264564", "photo_flickr_id": "7051780851", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46198", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone had a smile on their face .", "storylet_id": "230993"}], [{"original_text": "It seemed like no one shied away from the camera.", "album_id": "72157629391264564", "photo_flickr_id": "7051783159", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46198", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it seemed like no one shied away from the camera .", "storylet_id": "230994"}], [{"original_text": "Happy hour event for the ladies. Here's a picture of the newest member of the team.", "album_id": "72157629391264564", "photo_flickr_id": "7051768533", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46199", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "happy hour event for the ladies . here 's a picture of the newest member of the team .", "storylet_id": "230995"}], [{"original_text": "And here is the group leader caught in the act of putting a bite in her mouth.", "album_id": "72157629391264564", "photo_flickr_id": "6905679512", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46199", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and here is the group leader caught in the act of putting a bite in her mouth .", "storylet_id": "230996"}], [{"original_text": "The serious one in the group telling a story with the \"double quotes\" motion.", "album_id": "72157629391264564", "photo_flickr_id": "6905682906", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46199", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the serious one in the group telling a story with the `` double quotes '' motion .", "storylet_id": "230997"}], [{"original_text": "Another team member anxiously waiting on her happy hour beer.", "album_id": "72157629391264564", "photo_flickr_id": "7051780851", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46199", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another team member anxiously waiting on her happy hour beer .", "storylet_id": "230998"}], [{"original_text": "And then there's the team clown, already cracking jokes, holding up the peace sign.", "album_id": "72157629391264564", "photo_flickr_id": "7051783159", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46199", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then there 's the team clown , already cracking jokes , holding up the peace sign .", "storylet_id": "230999"}], [{"original_text": "We had a party and we decided to cook instead of ordering out.", "album_id": "710543", "photo_flickr_id": "31872479", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "46200", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a party and we decided to cook instead of ordering out .", "storylet_id": "231000"}], [{"original_text": "We had live music. He is so talented.", "album_id": "710543", "photo_flickr_id": "31872586", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "46200", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had live music . he is so talented .", "storylet_id": "231001"}], [{"original_text": "The guys gathered around to play some cards.", "album_id": "710543", "photo_flickr_id": "31872512", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "46200", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guys gathered around to play some cards .", "storylet_id": "231002"}], [{"original_text": "Quick photo-op!", "album_id": "710543", "photo_flickr_id": "31872785", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "46200", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "quick photo-op !", "storylet_id": "231003"}], [{"original_text": "He's counting his winnings from poker.", "album_id": "710543", "photo_flickr_id": "31873365", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "46200", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he 's counting his winnings from poker .", "storylet_id": "231004"}], [{"original_text": "preparing dinner for tonight", "album_id": "710543", "photo_flickr_id": "31916399", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46201", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "preparing dinner for tonight", "storylet_id": "231005"}], [{"original_text": "me and my friend sharing this old recipe", "album_id": "710543", "photo_flickr_id": "31916372", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46201", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "me and my friend sharing this old recipe", "storylet_id": "231006"}], [{"original_text": "after sharing our secrets together this was our dish", "album_id": "710543", "photo_flickr_id": "31872479", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46201", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after sharing our secrets together this was our dish", "storylet_id": "231007"}], [{"original_text": "wish turned out to be very delicious", "album_id": "710543", "photo_flickr_id": "31872438", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46201", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "wish turned out to be very delicious", "storylet_id": "231008"}], [{"original_text": "so after dinner i decided to play some nice music to relax", "album_id": "710543", "photo_flickr_id": "31872537", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46201", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so after dinner i decided to play some nice music to relax", "storylet_id": "231009"}], [{"original_text": "I ate a lot of food last night at the party.", "album_id": "710543", "photo_flickr_id": "31872479", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46202", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i ate a lot of food last night at the party .", "storylet_id": "231010"}], [{"original_text": "I invited all of my friends over. Some of them also brought their guitars.", "album_id": "710543", "photo_flickr_id": "31872586", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46202", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i invited all of my friends over . some of them also brought their guitars .", "storylet_id": "231011"}], [{"original_text": "We played games in my room all night.", "album_id": "710543", "photo_flickr_id": "31872512", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46202", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we played games in my room all night .", "storylet_id": "231012"}], [{"original_text": "Afterward we were hungry so we went to the kitchen.", "album_id": "710543", "photo_flickr_id": "31872785", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46202", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we were hungry so we went to the kitchen .", "storylet_id": "231013"}], [{"original_text": "There was no food in the kitchen so we decided to pool our money together for pizza.", "album_id": "710543", "photo_flickr_id": "31873365", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46202", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was no food in the kitchen so we decided to pool our money together for pizza .", "storylet_id": "231014"}], [{"original_text": "My boyfriend decided to have a small dinner party at our apartment. ", "album_id": "710543", "photo_flickr_id": "31916399", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46203", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my boyfriend decided to have a small dinner party at our apartment .", "storylet_id": "231015"}], [{"original_text": "One of my friends was overlooking the food, because the smell attracted him. ", "album_id": "710543", "photo_flickr_id": "31916372", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46203", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of my friends was overlooking the food , because the smell attracted him .", "storylet_id": "231016"}], [{"original_text": "The boneless chicken stir fry was so delicious. ", "album_id": "710543", "photo_flickr_id": "31872479", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46203", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boneless chicken stir fry was so delicious .", "storylet_id": "231017"}], [{"original_text": "I had to get a spoon, because I really wanted to drink the broth as well. ", "album_id": "710543", "photo_flickr_id": "31872438", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46203", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had to get a spoon , because i really wanted to drink the broth as well .", "storylet_id": "231018"}], [{"original_text": "My friend played a nice tune on his guitar. ", "album_id": "710543", "photo_flickr_id": "31872537", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46203", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my friend played a nice tune on his guitar .", "storylet_id": "231019"}], [{"original_text": "Tonight the college friends decided to have a fun get together.", "album_id": "710543", "photo_flickr_id": "31916399", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "46204", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "tonight the college friends decided to have a fun get together .", "storylet_id": "231020"}], [{"original_text": "This time the men were cooking good home cooked meals. ", "album_id": "710543", "photo_flickr_id": "31916372", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "46204", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this time the men were cooking good home cooked meals .", "storylet_id": "231021"}], [{"original_text": "There were dished filled with chicken and delicious sauces and broths with vegetables.", "album_id": "710543", "photo_flickr_id": "31872479", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "46204", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were dished filled with chicken and delicious sauces and broths with vegetables .", "storylet_id": "231022"}], [{"original_text": "The food was like home and inspired by what mom used to make when they were young.", "album_id": "710543", "photo_flickr_id": "31872438", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "46204", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food was like home and inspired by what mom used to make when they were young .", "storylet_id": "231023"}], [{"original_text": "The boys ended the evening playing the acoustic guitar and singing.", "album_id": "710543", "photo_flickr_id": "31872537", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "46204", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boys ended the evening playing the acoustic guitar and singing .", "storylet_id": "231024"}], [{"original_text": "I went to a party with some friends of mine, this is Dave and Tom.", "album_id": "72157625576160174", "photo_flickr_id": "5251232681", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46205", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a party with some friends of mine , this is [male] and [male] .", "storylet_id": "231025"}], [{"original_text": "There was a large table that we were sitting at, Kate takes great pictures.", "album_id": "72157625576160174", "photo_flickr_id": "5251230373", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46205", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a large table that we were sitting at , [female] takes great pictures .", "storylet_id": "231026"}], [{"original_text": "I caught Jessica off guard in this pic, it is great.", "album_id": "72157625576160174", "photo_flickr_id": "5251230503", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46205", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i caught [female] off guard in this pic , it is great .", "storylet_id": "231027"}], [{"original_text": "My other friends were enjoying the evening and their beers.", "album_id": "72157625576160174", "photo_flickr_id": "5251834766", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46205", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my other friends were enjoying the evening and their beers .", "storylet_id": "231028"}], [{"original_text": "I got a picture in my long hat with my friend Trevor, it was a great night.", "album_id": "72157625576160174", "photo_flickr_id": "5251230995", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46205", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i got a picture in my long hat with my friend [male] , it was a great night .", "storylet_id": "231029"}], [{"original_text": "Bob and Jim want to have a party so Jim can introduce the group to his new girlfriend.", "album_id": "72157625576160174", "photo_flickr_id": "5251232681", "setting": "first-2-pick-and-tell", "worker_id": "JX97A8HPOGJM3LJ", "story_id": "46206", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [male] want to have a party so [male] can introduce the group to his new girlfriend .", "storylet_id": "231030"}], [{"original_text": "When they tell their roommates, their roommates act very surprised.", "album_id": "72157625576160174", "photo_flickr_id": "5251230503", "setting": "first-2-pick-and-tell", "worker_id": "JX97A8HPOGJM3LJ", "story_id": "46206", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when they tell their roommates , their roommates act very surprised .", "storylet_id": "231031"}], [{"original_text": "Bob and Jim try to convince everyone that it will be a good idea.", "album_id": "72157625576160174", "photo_flickr_id": "5251834766", "setting": "first-2-pick-and-tell", "worker_id": "JX97A8HPOGJM3LJ", "story_id": "46206", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and [male] try to convince everyone that it will be a good idea .", "storylet_id": "231032"}], [{"original_text": "The general consensus is a decided unease.", "album_id": "72157625576160174", "photo_flickr_id": "5251835080", "setting": "first-2-pick-and-tell", "worker_id": "JX97A8HPOGJM3LJ", "story_id": "46206", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the general consensus is a decided unease .", "storylet_id": "231033"}], [{"original_text": "Finally the roommates agree to throw a party and Jim is able to tell her girlfriend that they agreed.", "album_id": "72157625576160174", "photo_flickr_id": "5251230995", "setting": "first-2-pick-and-tell", "worker_id": "JX97A8HPOGJM3LJ", "story_id": "46206", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the roommates agree to throw a party and [male] is able to tell her girlfriend that they agreed .", "storylet_id": "231034"}], [{"original_text": "Just walked into the place to have something to eat and hang out a little.", "album_id": "72157625576160174", "photo_flickr_id": "5251232681", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46207", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "just walked into the place to have something to eat and hang out a little .", "storylet_id": "231035"}], [{"original_text": "A couple of people are joining in to the potential fun.", "album_id": "72157625576160174", "photo_flickr_id": "5251230503", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46207", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a couple of people are joining in to the potential fun .", "storylet_id": "231036"}], [{"original_text": "Looks like a couple of guys are having a beer.", "album_id": "72157625576160174", "photo_flickr_id": "5251834766", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46207", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looks like a couple of guys are having a beer .", "storylet_id": "231037"}], [{"original_text": "He looks like he`d like to join in with the others.", "album_id": "72157625576160174", "photo_flickr_id": "5251835080", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46207", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he looks like he`d like to join in with the others .", "storylet_id": "231038"}], [{"original_text": "This woman is a new addition to the gang forming inside.", "album_id": "72157625576160174", "photo_flickr_id": "5251230995", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46207", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this woman is a new addition to the gang forming inside .", "storylet_id": "231039"}], [{"original_text": "Friends of all sizes decided to goof off today. ", "album_id": "72157625576160174", "photo_flickr_id": "5251232681", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46208", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends of all sizes decided to goof off today .", "storylet_id": "231040"}], [{"original_text": "The drinks they had may have had something to do with it. ", "album_id": "72157625576160174", "photo_flickr_id": "5251230373", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46208", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the drinks they had may have had something to do with it .", "storylet_id": "231041"}], [{"original_text": "Interesting facial expressions were made. ", "album_id": "72157625576160174", "photo_flickr_id": "5251230503", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46208", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "interesting facial expressions were made .", "storylet_id": "231042"}], [{"original_text": "Funny faces could not be controlled. ", "album_id": "72157625576160174", "photo_flickr_id": "5251834766", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46208", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "funny faces could not be controlled .", "storylet_id": "231043"}], [{"original_text": "Even goofy outfits appeared. ", "album_id": "72157625576160174", "photo_flickr_id": "5251230995", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46208", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even goofy outfits appeared .", "storylet_id": "231044"}], [{"original_text": "This group went out beer tasting and this guy asked to have his photo taken next to this tall stranger.", "album_id": "72157625576160174", "photo_flickr_id": "5251232681", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46209", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this group went out beer tasting and this guy asked to have his photo taken next to this tall stranger .", "storylet_id": "231045"}], [{"original_text": "It's either Christmastime or that individual behind the girl in the yellow shirt just likes to wear her Santa hat year-long.", "album_id": "72157625576160174", "photo_flickr_id": "5251230503", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46209", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's either christmastime or that individual behind the girl in the yellow shirt just likes to wear her location hat year-long .", "storylet_id": "231046"}], [{"original_text": "The group just chilling enjoying their micro-brews.", "album_id": "72157625576160174", "photo_flickr_id": "5251834766", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46209", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the group just chilling enjoying their micro-brews .", "storylet_id": "231047"}], [{"original_text": "Photo of this guy's reaction when asked if he would like to take the chrysanthemums home with him.", "album_id": "72157625576160174", "photo_flickr_id": "5251835080", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46209", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "photo of this guy 's reaction when asked if he would like to take the chrysanthemums home with him .", "storylet_id": "231048"}], [{"original_text": "And of course the group jester had to take a final photo with another stranger. Just look at the nitted beanie. ", "album_id": "72157625576160174", "photo_flickr_id": "5251230995", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46209", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and of course the group jester had to take a final photo with another stranger . just look at the nitted beanie .", "storylet_id": "231049"}], [{"original_text": "The downtown area has lots of attractions and features wonderful lodging options.", "album_id": "72157628370536917", "photo_flickr_id": "6491905811", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46210", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the downtown area has lots of attractions and features wonderful lodging options .", "storylet_id": "231050"}], [{"original_text": "There are also lots of gas stations nearby in case you need to tour the city in your vehicle.", "album_id": "72157628370536917", "photo_flickr_id": "6491928775", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46210", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are also lots of gas stations nearby in case you need to tour the city in your vehicle .", "storylet_id": "231051"}], [{"original_text": "There are also lots of restaurants, some of them fast food. ", "album_id": "72157628370536917", "photo_flickr_id": "6491910751", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46210", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are also lots of restaurants , some of them fast food .", "storylet_id": "231052"}], [{"original_text": "Some of the restaurants also offer more formal sit down options.", "album_id": "72157628370536917", "photo_flickr_id": "6491921589", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46210", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the restaurants also offer more formal sit down options .", "storylet_id": "231053"}], [{"original_text": "This time of year, the town will be decorated to celebrate Christmas.", "album_id": "72157628370536917", "photo_flickr_id": "6491917925", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46210", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this time of year , the town will be decorated to celebrate christmas .", "storylet_id": "231054"}], [{"original_text": "Our road trip led us here for lodging.", "album_id": "72157628370536917", "photo_flickr_id": "6491905811", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46211", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our road trip led us here for lodging .", "storylet_id": "231055"}], [{"original_text": "The city lights were bright that evening.", "album_id": "72157628370536917", "photo_flickr_id": "6491914557", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46211", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city lights were bright that evening .", "storylet_id": "231056"}], [{"original_text": "This was a good place to dine.", "album_id": "72157628370536917", "photo_flickr_id": "6491921589", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46211", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was a good place to dine .", "storylet_id": "231057"}], [{"original_text": "We stopped to fuel up before heading home.", "album_id": "72157628370536917", "photo_flickr_id": "6491928775", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46211", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped to fuel up before heading home .", "storylet_id": "231058"}], [{"original_text": "The moon was full and beautiful.", "album_id": "72157628370536917", "photo_flickr_id": "6491925235", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46211", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the moon was full and beautiful .", "storylet_id": "231059"}], [{"original_text": "The hotel didn't have a bar.", "album_id": "72157628370536917", "photo_flickr_id": "6491905811", "setting": "last-3-pick-old-and-tell", "worker_id": "351958JM3YVRMQL", "story_id": "46212", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the hotel did n't have a bar .", "storylet_id": "231060"}], [{"original_text": "The downtown of this city was unknown to them.", "album_id": "72157628370536917", "photo_flickr_id": "6491914557", "setting": "last-3-pick-old-and-tell", "worker_id": "351958JM3YVRMQL", "story_id": "46212", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the downtown of this city was unknown to them .", "storylet_id": "231061"}], [{"original_text": "They tried many places to find a drink.", "album_id": "72157628370536917", "photo_flickr_id": "6491921589", "setting": "last-3-pick-old-and-tell", "worker_id": "351958JM3YVRMQL", "story_id": "46212", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they tried many places to find a drink .", "storylet_id": "231062"}], [{"original_text": "But gas stations couldn't help.", "album_id": "72157628370536917", "photo_flickr_id": "6491928775", "setting": "last-3-pick-old-and-tell", "worker_id": "351958JM3YVRMQL", "story_id": "46212", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but gas stations could n't help .", "storylet_id": "231063"}], [{"original_text": "They stared into the moon until morning.", "album_id": "72157628370536917", "photo_flickr_id": "6491925235", "setting": "last-3-pick-old-and-tell", "worker_id": "351958JM3YVRMQL", "story_id": "46212", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they stared into the moon until morning .", "storylet_id": "231064"}], [{"original_text": "We drove around looking for a hotel room to stay at. First place we went to didn't have any rooms.", "album_id": "72157628370536917", "photo_flickr_id": "6491905811", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46213", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we drove around looking for a hotel room to stay at . first place we went to did n't have any rooms .", "storylet_id": "231065"}], [{"original_text": "Then we came across a gas station that the gas prices were high.", "album_id": "72157628370536917", "photo_flickr_id": "6491928775", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46213", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we came across a gas station that the gas prices were high .", "storylet_id": "231066"}], [{"original_text": "After that we passed a KFC.", "album_id": "72157628370536917", "photo_flickr_id": "6491910751", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46213", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that we passed a organization .", "storylet_id": "231067"}], [{"original_text": "Then we finally got a room at The Lakeside.", "album_id": "72157628370536917", "photo_flickr_id": "6491921589", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46213", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we finally got a room at the lakeside .", "storylet_id": "231068"}], [{"original_text": "In the lobby was Christmas tree with lights.", "album_id": "72157628370536917", "photo_flickr_id": "6491917925", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46213", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the lobby was christmas tree with lights .", "storylet_id": "231069"}], [{"original_text": "This is where our family stayed on vacation.", "album_id": "72157628370536917", "photo_flickr_id": "6491905811", "setting": "last-3-pick-old-and-tell", "worker_id": "T9EQLGVLEIZ2F1Q", "story_id": "46214", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is where our family stayed on vacation .", "storylet_id": "231070"}], [{"original_text": "We stopped to gas up and couldn't believe the price of gas here!", "album_id": "72157628370536917", "photo_flickr_id": "6491928775", "setting": "last-3-pick-old-and-tell", "worker_id": "T9EQLGVLEIZ2F1Q", "story_id": "46214", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped to gas up and could n't believe the price of gas here !", "storylet_id": "231071"}], [{"original_text": "We were all so hungry we stopped at the local KFC for a quick dinner.", "album_id": "72157628370536917", "photo_flickr_id": "6491910751", "setting": "last-3-pick-old-and-tell", "worker_id": "T9EQLGVLEIZ2F1Q", "story_id": "46214", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were all so hungry we stopped at the local organization for a quick dinner .", "storylet_id": "231072"}], [{"original_text": "We checked out this place called \" The Lakeside\" it was pretty fancy.", "album_id": "72157628370536917", "photo_flickr_id": "6491921589", "setting": "last-3-pick-old-and-tell", "worker_id": "T9EQLGVLEIZ2F1Q", "story_id": "46214", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we checked out this place called `` the lakeside '' it was pretty fancy .", "storylet_id": "231073"}], [{"original_text": "This was the Christmas tree in the lobby of our motel, they were getting into the Christmas spirit.", "album_id": "72157628370536917", "photo_flickr_id": "6491917925", "setting": "last-3-pick-old-and-tell", "worker_id": "T9EQLGVLEIZ2F1Q", "story_id": "46214", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the christmas tree in the lobby of our motel , they were getting into the christmas spirit .", "storylet_id": "231074"}], [{"original_text": "Jesus is going to be leaving the state in a couple weeks, so his friends decided to throw him a going away party.", "album_id": "159626", "photo_flickr_id": "6394446", "setting": "first-2-pick-and-tell", "worker_id": "7JZ97OVJ90FL7AL", "story_id": "46215", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is going to be leaving the state in a couple weeks , so his friends decided to throw him a going away party .", "storylet_id": "231075"}], [{"original_text": "Jesus was extremely surprised and thrilled.", "album_id": "159626", "photo_flickr_id": "6394502", "setting": "first-2-pick-and-tell", "worker_id": "7JZ97OVJ90FL7AL", "story_id": "46215", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was extremely surprised and thrilled .", "storylet_id": "231076"}], [{"original_text": "His friends even made him a special cake for the occasion.", "album_id": "159626", "photo_flickr_id": "6394587", "setting": "first-2-pick-and-tell", "worker_id": "7JZ97OVJ90FL7AL", "story_id": "46215", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his friends even made him a special cake for the occasion .", "storylet_id": "231077"}], [{"original_text": "After eating some cake, everybody went to the living room to have some drinks.", "album_id": "159626", "photo_flickr_id": "6394777", "setting": "first-2-pick-and-tell", "worker_id": "7JZ97OVJ90FL7AL", "story_id": "46215", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after eating some cake , everybody went to the living room to have some drinks .", "storylet_id": "231078"}], [{"original_text": "All in all, the going away party was a success. Everybody had a wonderful time.", "album_id": "159626", "photo_flickr_id": "6394873", "setting": "first-2-pick-and-tell", "worker_id": "7JZ97OVJ90FL7AL", "story_id": "46215", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all in all , the going away party was a success . everybody had a wonderful time .", "storylet_id": "231079"}], [{"original_text": "So we had a gathering with tons of food.", "album_id": "159626", "photo_flickr_id": "6394286", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "46216", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so we had a gathering with tons of food .", "storylet_id": "231080"}], [{"original_text": "We were sending off our friend. We will miss him!", "album_id": "159626", "photo_flickr_id": "6394587", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "46216", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were sending off our friend . we will miss him !", "storylet_id": "231081"}], [{"original_text": "We each took turns writing down some memories.", "album_id": "159626", "photo_flickr_id": "6394681", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "46216", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we each took turns writing down some memories .", "storylet_id": "231082"}], [{"original_text": "Too much junk food was consumed by all.", "album_id": "159626", "photo_flickr_id": "6394709", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "46216", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "too much junk food was consumed by all .", "storylet_id": "231083"}], [{"original_text": "The group shot was perfect! I love tripods and self-timers.", "album_id": "159626", "photo_flickr_id": "6394873", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "46216", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the group shot was perfect ! i love tripods and self-timers .", "storylet_id": "231084"}], [{"original_text": "I waited in line at the party until I could grab some food. I was so hungry.", "album_id": "159626", "photo_flickr_id": "6394446", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46217", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i waited in line at the party until i could grab some food . i was so hungry .", "storylet_id": "231085"}], [{"original_text": "After I ate I decided to get the cake.", "album_id": "159626", "photo_flickr_id": "6394502", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46217", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after i ate i decided to get the cake .", "storylet_id": "231086"}], [{"original_text": "There was a lovely cake in the fridge and I cut and served it.", "album_id": "159626", "photo_flickr_id": "6394587", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46217", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a lovely cake in the fridge and i cut and served it .", "storylet_id": "231087"}], [{"original_text": "Everyone enjoyed it.", "album_id": "159626", "photo_flickr_id": "6394777", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46217", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone enjoyed it .", "storylet_id": "231088"}], [{"original_text": "Afterward we all got together for a group photo.", "album_id": "159626", "photo_flickr_id": "6394873", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46217", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we all got together for a group photo .", "storylet_id": "231089"}], [{"original_text": "Had a great going away party.", "album_id": "159626", "photo_flickr_id": "6394286", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46218", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "had a great going away party .", "storylet_id": "231090"}], [{"original_text": "Yes, we will miss you!", "album_id": "159626", "photo_flickr_id": "6394587", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46218", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "yes , we will miss you !", "storylet_id": "231091"}], [{"original_text": "Your tribe will be here when you get back.", "album_id": "159626", "photo_flickr_id": "6394681", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46218", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "your tribe will be here when you get back .", "storylet_id": "231092"}], [{"original_text": "It's not a party until the Fritos and Tostitos show up! ", "album_id": "159626", "photo_flickr_id": "6394709", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46218", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's not a party until the fritos and organization show up !", "storylet_id": "231093"}], [{"original_text": "The whole gang was here.", "album_id": "159626", "photo_flickr_id": "6394873", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46218", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the whole gang was here .", "storylet_id": "231094"}], [{"original_text": "The family decided to have a going away party for their son.", "album_id": "159626", "photo_flickr_id": "6394286", "setting": "last-3-pick-old-and-tell", "worker_id": "G1RG3TUCYYUM8TC", "story_id": "46219", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family decided to have a going away party for their son .", "storylet_id": "231095"}], [{"original_text": "He posed with the cake they made for him. He was going overseas in a military base.", "album_id": "159626", "photo_flickr_id": "6394587", "setting": "last-3-pick-old-and-tell", "worker_id": "G1RG3TUCYYUM8TC", "story_id": "46219", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he posed with the cake they made for him . he was going overseas in a military base .", "storylet_id": "231096"}], [{"original_text": "During the party, everyone decided to play games and draw.", "album_id": "159626", "photo_flickr_id": "6394681", "setting": "last-3-pick-old-and-tell", "worker_id": "G1RG3TUCYYUM8TC", "story_id": "46219", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "during the party , everyone decided to play games and draw .", "storylet_id": "231097"}], [{"original_text": "The cookies and chips were never in shortage.", "album_id": "159626", "photo_flickr_id": "6394709", "setting": "last-3-pick-old-and-tell", "worker_id": "G1RG3TUCYYUM8TC", "story_id": "46219", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cookies and chips were never in shortage .", "storylet_id": "231098"}], [{"original_text": "At the end of the night, everyone decided to take a group picture to remember the great moment.", "album_id": "159626", "photo_flickr_id": "6394873", "setting": "last-3-pick-old-and-tell", "worker_id": "G1RG3TUCYYUM8TC", "story_id": "46219", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , everyone decided to take a group picture to remember the great moment .", "storylet_id": "231099"}], [{"original_text": "Having a good time with friends. ", "album_id": "638064", "photo_flickr_id": "28261010", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46220", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "having a good time with friends .", "storylet_id": "231100"}], [{"original_text": "gathering the glasses and the drinks. ", "album_id": "638064", "photo_flickr_id": "28261439", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46220", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "gathering the glasses and the drinks .", "storylet_id": "231101"}], [{"original_text": "Taking shots with his friends. ", "album_id": "638064", "photo_flickr_id": "28261224", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46220", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "taking shots with his friends .", "storylet_id": "231102"}], [{"original_text": "feeling dizzy after a couple of shots.", "album_id": "638064", "photo_flickr_id": "28261247", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46220", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "feeling dizzy after a couple of shots .", "storylet_id": "231103"}], [{"original_text": "Ready to call a cab and go home. ", "album_id": "638064", "photo_flickr_id": "28261401", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46220", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ready to call a cab and go home .", "storylet_id": "231104"}], [{"original_text": "I think I was just arriving when I took this picture.", "album_id": "638064", "photo_flickr_id": "28260689", "setting": "first-2-pick-and-tell", "worker_id": "FDH6EIE1H02MPWL", "story_id": "46221", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i think i was just arriving when i took this picture .", "storylet_id": "231105"}], [{"original_text": "I can say that this shot came out way too dark.", "album_id": "638064", "photo_flickr_id": "28261104", "setting": "first-2-pick-and-tell", "worker_id": "FDH6EIE1H02MPWL", "story_id": "46221", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i can say that this shot came out way too dark .", "storylet_id": "231106"}], [{"original_text": "This guy seems to be all alone but he has a team of friends sitting just opposite out of the frame.", "album_id": "638064", "photo_flickr_id": "28261224", "setting": "first-2-pick-and-tell", "worker_id": "FDH6EIE1H02MPWL", "story_id": "46221", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this guy seems to be all alone but he has a team of friends sitting just opposite out of the frame .", "storylet_id": "231107"}], [{"original_text": "I kept hearing this guy call me over to take his photo, but he kept moving and made the shot come out blurry. ", "album_id": "638064", "photo_flickr_id": "28261247", "setting": "first-2-pick-and-tell", "worker_id": "FDH6EIE1H02MPWL", "story_id": "46221", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i kept hearing this guy call me over to take his photo , but he kept moving and made the shot come out blurry .", "storylet_id": "231108"}], [{"original_text": "I usually just don't talk to anyone but this guy had to be one of the best comedians ever. He had me laughing the rest of the night.", "album_id": "638064", "photo_flickr_id": "28261336", "setting": "first-2-pick-and-tell", "worker_id": "FDH6EIE1H02MPWL", "story_id": "46221", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i usually just do n't talk to anyone but this guy had to be one of the best comedians ever . he had me laughing the rest of the night .", "storylet_id": "231109"}], [{"original_text": "Friends are out for a night of fun.", "album_id": "638064", "photo_flickr_id": "28261010", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46222", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends are out for a night of fun .", "storylet_id": "231110"}], [{"original_text": "Many glasses fill the celebrants table.", "album_id": "638064", "photo_flickr_id": "28261439", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46222", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many glasses fill the celebrants table .", "storylet_id": "231111"}], [{"original_text": "A lone man sits alone waiting for his friends to come back.", "album_id": "638064", "photo_flickr_id": "28261224", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46222", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lone man sits alone waiting for his friends to come back .", "storylet_id": "231112"}], [{"original_text": "The photographer has a shaky hand after a night of drinking.", "album_id": "638064", "photo_flickr_id": "28261247", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46222", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the photographer has a shaky hand after a night of drinking .", "storylet_id": "231113"}], [{"original_text": "Outside the pub to get some fresh air.", "album_id": "638064", "photo_flickr_id": "28261401", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46222", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "outside the pub to get some fresh air .", "storylet_id": "231114"}], [{"original_text": "A group of friends wanted to hang out one night.", "album_id": "638064", "photo_flickr_id": "28261010", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46223", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends wanted to hang out one night .", "storylet_id": "231115"}], [{"original_text": "Drinks were provided every minute and no one left sober.", "album_id": "638064", "photo_flickr_id": "28261439", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46223", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "drinks were provided every minute and no one left sober .", "storylet_id": "231116"}], [{"original_text": "Hank had four beers and began discussing soil science.", "album_id": "638064", "photo_flickr_id": "28261224", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46223", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "hank had four beers and began discussing soil science .", "storylet_id": "231117"}], [{"original_text": "Jerimiah was so wasted he saw doubles of everything in the bar.", "album_id": "638064", "photo_flickr_id": "28261247", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46223", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "jerimiah was so wasted he saw doubles of everything in the bar .", "storylet_id": "231118"}], [{"original_text": "A fun night in the bar ended with a mischievous night out on the streets. ", "album_id": "638064", "photo_flickr_id": "28261401", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46223", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a fun night in the bar ended with a mischievous night out on the streets .", "storylet_id": "231119"}], [{"original_text": "My friends dragged me to this strange party.", "album_id": "638064", "photo_flickr_id": "28261010", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZI4DXJ0ZJ5U63Y", "story_id": "46224", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends dragged me to this strange party .", "storylet_id": "231120"}], [{"original_text": "They said it would be a party I'd never forget.", "album_id": "638064", "photo_flickr_id": "28261439", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZI4DXJ0ZJ5U63Y", "story_id": "46224", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they said it would be a party i 'd never forget .", "storylet_id": "231121"}], [{"original_text": "Then I noticed the radioactive ore behind me.", "album_id": "638064", "photo_flickr_id": "28261224", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZI4DXJ0ZJ5U63Y", "story_id": "46224", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then i noticed the radioactive ore behind me .", "storylet_id": "231122"}], [{"original_text": "I could feel it changing my body. Suddenly, I had the power to cause motion blur whenever I wanted!", "album_id": "638064", "photo_flickr_id": "28261247", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZI4DXJ0ZJ5U63Y", "story_id": "46224", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i could feel it changing my body . suddenly , i had the power to cause motion blur whenever i wanted !", "storylet_id": "231123"}], [{"original_text": "My other friend gained the power to turn into a black woman. What a strange party indeed.", "album_id": "638064", "photo_flickr_id": "28261401", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZI4DXJ0ZJ5U63Y", "story_id": "46224", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my other friend gained the power to turn into a black woman . what a strange party indeed .", "storylet_id": "231124"}], [{"original_text": "I went to a 4th of July celebraion at the beach.", "album_id": "72157624451310233", "photo_flickr_id": "4825597605", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46225", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a 4th of july celebraion at the beach .", "storylet_id": "231125"}], [{"original_text": "The fireworks were beautiful, I enjoyed the red one here.", "album_id": "72157624451310233", "photo_flickr_id": "4826208280", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46225", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fireworks were beautiful , i enjoyed the red one here .", "storylet_id": "231126"}], [{"original_text": "The green ones went screeching in every direction.", "album_id": "72157624451310233", "photo_flickr_id": "4826208856", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46225", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the green ones went screeching in every direction .", "storylet_id": "231127"}], [{"original_text": "This multicolored one was my favorite of the night.", "album_id": "72157624451310233", "photo_flickr_id": "4826212254", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46225", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this multicolored one was my favorite of the night .", "storylet_id": "231128"}], [{"original_text": "The finale was a great ending, there was so much to look at and it was loud, which I love.", "album_id": "72157624451310233", "photo_flickr_id": "4826212628", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46225", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finale was a great ending , there was so much to look at and it was loud , which i love .", "storylet_id": "231129"}], [{"original_text": "Watching fireworks on the fourth of july. ", "album_id": "72157624451310233", "photo_flickr_id": "4825597605", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46226", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "watching fireworks on the fourth of july .", "storylet_id": "231130"}], [{"original_text": "There was a huge red one. ", "album_id": "72157624451310233", "photo_flickr_id": "4826208280", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46226", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a huge red one .", "storylet_id": "231131"}], [{"original_text": "A beautiful yellow one. ", "album_id": "72157624451310233", "photo_flickr_id": "4826209784", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46226", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a beautiful yellow one .", "storylet_id": "231132"}], [{"original_text": "A colorful one. ", "album_id": "72157624451310233", "photo_flickr_id": "4826212254", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46226", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a colorful one .", "storylet_id": "231133"}], [{"original_text": "And a green sparkly one. ", "album_id": "72157624451310233", "photo_flickr_id": "4826208856", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46226", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and a green sparkly one .", "storylet_id": "231134"}], [{"original_text": "We were able to watch the fireworks from the beach.", "album_id": "72157624451310233", "photo_flickr_id": "4825597605", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46227", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were able to watch the fireworks from the beach .", "storylet_id": "231135"}], [{"original_text": "They were so beautiful and lit up the night sky.", "album_id": "72157624451310233", "photo_flickr_id": "4826208280", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46227", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were so beautiful and lit up the night sky .", "storylet_id": "231136"}], [{"original_text": "The hotel had music synchronized to the fireworks.", "album_id": "72157624451310233", "photo_flickr_id": "4826209784", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46227", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the hotel had music synchronized to the fireworks .", "storylet_id": "231137"}], [{"original_text": "We were able to enjoy them without the crowds.", "album_id": "72157624451310233", "photo_flickr_id": "4826212254", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46227", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were able to enjoy them without the crowds .", "storylet_id": "231138"}], [{"original_text": "The finale was spectacular.", "album_id": "72157624451310233", "photo_flickr_id": "4826208856", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46227", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finale was spectacular .", "storylet_id": "231139"}], [{"original_text": "Many people gathered to watch the firework celebration. ", "album_id": "72157624451310233", "photo_flickr_id": "4825597605", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46228", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people gathered to watch the firework celebration .", "storylet_id": "231140"}], [{"original_text": "The fireworks came in a wide variety of colors. ", "album_id": "72157624451310233", "photo_flickr_id": "4826208280", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46228", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fireworks came in a wide variety of colors .", "storylet_id": "231141"}], [{"original_text": "There were green fireworks.", "album_id": "72157624451310233", "photo_flickr_id": "4826208856", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46228", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were green fireworks .", "storylet_id": "231142"}], [{"original_text": "There were also orange fireworks. ", "album_id": "72157624451310233", "photo_flickr_id": "4826212254", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46228", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also orange fireworks .", "storylet_id": "231143"}], [{"original_text": "At the end of the show they launched many fireworks all at once. ", "album_id": "72157624451310233", "photo_flickr_id": "4826212628", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46228", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the show they launched many fireworks all at once .", "storylet_id": "231144"}], [{"original_text": "Down near the beach spectators stop to watch the firework show on the Fourth of July. In the beginning there is a ground show.", "album_id": "72157624451310233", "photo_flickr_id": "4825597605", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46229", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "down near the beach spectators stop to watch the firework show on the fourth of july . in the beginning there is a ground show .", "storylet_id": "231145"}], [{"original_text": "Then it breaks into the high loud booming colorful fireworks.", "album_id": "72157624451310233", "photo_flickr_id": "4826208280", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46229", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then it breaks into the high loud booming colorful fireworks .", "storylet_id": "231146"}], [{"original_text": "These one were exceptionally loud.", "album_id": "72157624451310233", "photo_flickr_id": "4826209784", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46229", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these one were exceptionally loud .", "storylet_id": "231147"}], [{"original_text": "It was cool to see some other fireworks show off in the distance as well.", "album_id": "72157624451310233", "photo_flickr_id": "4826212254", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46229", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was cool to see some other fireworks show off in the distance as well .", "storylet_id": "231148"}], [{"original_text": "Here is the beginning to the end of the show with the spectacular finale.", "album_id": "72157624451310233", "photo_flickr_id": "4826208856", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46229", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is the beginning to the end of the show with the spectacular finale .", "storylet_id": "231149"}], [{"original_text": "We were very excited to go the annual arts and crafts fair at our school.", "album_id": "72157624685271305", "photo_flickr_id": "4928701478", "setting": "first-2-pick-and-tell", "worker_id": "D7085IXR902RJII", "story_id": "46230", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were very excited to go the annual arts and crafts fair at our school .", "storylet_id": "231150"}], [{"original_text": "The school had a big arts and crafts fair and the parents pitched in.", "album_id": "72157624685271305", "photo_flickr_id": "4928092429", "setting": "first-2-pick-and-tell", "worker_id": "D7085IXR902RJII", "story_id": "46230", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the school had a big arts and crafts fair and the parents pitched in .", "storylet_id": "231151"}], [{"original_text": "As the day progressed, it became cloudy and there was fear that they would get rained out.", "album_id": "72157624685271305", "photo_flickr_id": "4928091435", "setting": "first-2-pick-and-tell", "worker_id": "D7085IXR902RJII", "story_id": "46230", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as the day progressed , it became cloudy and there was fear that they would get rained out .", "storylet_id": "231152"}], [{"original_text": "Everyone had a great time. It was one of the best ones they had ever had.", "album_id": "72157624685271305", "photo_flickr_id": "4928685152", "setting": "first-2-pick-and-tell", "worker_id": "D7085IXR902RJII", "story_id": "46230", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone had a great time . it was one of the best ones they had ever had .", "storylet_id": "231153"}], [{"original_text": "At the end of the day, we all took a picture together to commemorate the day.", "album_id": "72157624685271305", "photo_flickr_id": "4928094209", "setting": "first-2-pick-and-tell", "worker_id": "D7085IXR902RJII", "story_id": "46230", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , we all took a picture together to commemorate the day .", "storylet_id": "231154"}], [{"original_text": "There is a long drive to the party tonight.", "album_id": "72157624685271305", "photo_flickr_id": "4928683392", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46231", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is a long drive to the party tonight .", "storylet_id": "231155"}], [{"original_text": "We finally see the exit sign on the highway for the party.", "album_id": "72157624685271305", "photo_flickr_id": "4928089463", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46231", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we finally see the exit sign on the highway for the party .", "storylet_id": "231156"}], [{"original_text": "When we got there, all our friends are already there.", "album_id": "72157624685271305", "photo_flickr_id": "4928685152", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46231", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we got there , all our friends are already there .", "storylet_id": "231157"}], [{"original_text": "Some of the guests will be sleeping over tonight and sleeping on the futons in the living room.", "album_id": "72157624685271305", "photo_flickr_id": "4928095097", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46231", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the guests will be sleeping over tonight and sleeping on the futons in the living room .", "storylet_id": "231158"}], [{"original_text": "When all the guests have gone home, the host is vacuuming the living room. ", "album_id": "72157624685271305", "photo_flickr_id": "4928693392", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46231", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when all the guests have gone home , the host is vacuuming the living room .", "storylet_id": "231159"}], [{"original_text": "On a drive to friends and good times.", "album_id": "72157624685271305", "photo_flickr_id": "4928701478", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46232", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on a drive to friends and good times .", "storylet_id": "231160"}], [{"original_text": "Once there, we all sat down to have something to eat.", "album_id": "72157624685271305", "photo_flickr_id": "4928092429", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46232", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once there , we all sat down to have something to eat .", "storylet_id": "231161"}], [{"original_text": "Sitting around talking is so much fun to do.", "album_id": "72157624685271305", "photo_flickr_id": "4928091435", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46232", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sitting around talking is so much fun to do .", "storylet_id": "231162"}], [{"original_text": "As the day goes on more people showed up to this friendly event.", "album_id": "72157624685271305", "photo_flickr_id": "4928685152", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46232", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the day goes on more people showed up to this friendly event .", "storylet_id": "231163"}], [{"original_text": "Well into the night everyone hung out, it was a successful get together.", "album_id": "72157624685271305", "photo_flickr_id": "4928094209", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46232", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "well into the night everyone hung out , it was a successful get together .", "storylet_id": "231164"}], [{"original_text": "On our way to Aunt Julie's holiday celebration/birthday party!", "album_id": "72157624685271305", "photo_flickr_id": "4928701478", "setting": "last-3-pick-old-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "46233", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our way to aunt [female] 's holiday celebration/birthday party !", "storylet_id": "231165"}], [{"original_text": "Here's Julie opening some items to start playing a game.", "album_id": "72157624685271305", "photo_flickr_id": "4928092429", "setting": "last-3-pick-old-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "46233", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's [female] opening some items to start playing a game .", "storylet_id": "231166"}], [{"original_text": "All the adults decided to sit on one side.", "album_id": "72157624685271305", "photo_flickr_id": "4928091435", "setting": "last-3-pick-old-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "46233", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the adults decided to sit on one side .", "storylet_id": "231167"}], [{"original_text": "The larger group numbered around 50. We continued eating well into the afternoon.", "album_id": "72157624685271305", "photo_flickr_id": "4928685152", "setting": "last-3-pick-old-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "46233", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the larger group numbered around 50 . we continued eating well into the afternoon .", "storylet_id": "231168"}], [{"original_text": "At dusk we watched fireworks and gathered for a group photo with the flag.", "album_id": "72157624685271305", "photo_flickr_id": "4928094209", "setting": "last-3-pick-old-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "46233", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at dusk we watched fireworks and gathered for a group photo with the flag .", "storylet_id": "231169"}], [{"original_text": "The raod trip wouldn't last much longer and we would soon be at the festival/", "album_id": "72157624685271305", "photo_flickr_id": "4928701478", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46234", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the raod trip would n't last much longer and we would soon be at the festival/", "storylet_id": "231170"}], [{"original_text": "They had local artist from all over exhibit their trades.", "album_id": "72157624685271305", "photo_flickr_id": "4928092429", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46234", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had local artist from all over exhibit their trades .", "storylet_id": "231171"}], [{"original_text": "We stood watching them craft for a while.", "album_id": "72157624685271305", "photo_flickr_id": "4928091435", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46234", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stood watching them craft for a while .", "storylet_id": "231172"}], [{"original_text": "The crowds began to grown in wonder at what they were making.", "album_id": "72157624685271305", "photo_flickr_id": "4928685152", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46234", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowds began to grown in wonder at what they were making .", "storylet_id": "231173"}], [{"original_text": "At the end of the night many people became friends because of the festival crafters.", "album_id": "72157624685271305", "photo_flickr_id": "4928094209", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46234", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night many people became friends because of the festival crafters .", "storylet_id": "231174"}], [{"original_text": "The picnic table was filled with goodies.", "album_id": "72157600272663173", "photo_flickr_id": "516373090", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46235", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the picnic table was filled with goodies .", "storylet_id": "231175"}], [{"original_text": "Children could play while the adults chatted.", "album_id": "72157600272663173", "photo_flickr_id": "516373164", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46235", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "children could play while the adults chatted .", "storylet_id": "231176"}], [{"original_text": "Bubbles were blown under the sunlight.", "album_id": "72157600272663173", "photo_flickr_id": "516398945", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46235", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "bubbles were blown under the sunlight .", "storylet_id": "231177"}], [{"original_text": "More lunch was kept in the coolers.", "album_id": "72157600272663173", "photo_flickr_id": "516373660", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46235", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more lunch was kept in the coolers .", "storylet_id": "231178"}], [{"original_text": "There were also games for children.", "album_id": "72157600272663173", "photo_flickr_id": "516399421", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46235", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were also games for children .", "storylet_id": "231179"}], [{"original_text": "Food is being prepared for the party at the park. ", "album_id": "72157600272663173", "photo_flickr_id": "516398371", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46236", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "food is being prepared for the party at the park .", "storylet_id": "231180"}], [{"original_text": "The food is being put on the park table. ", "album_id": "72157600272663173", "photo_flickr_id": "516373090", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46236", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the food is being put on the park table .", "storylet_id": "231181"}], [{"original_text": "The children are quietly playing next to the table of food. ", "album_id": "72157600272663173", "photo_flickr_id": "516398697", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46236", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the children are quietly playing next to the table of food .", "storylet_id": "231182"}], [{"original_text": "The children like to play with the bubble machine. ", "album_id": "72157600272663173", "photo_flickr_id": "516398945", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46236", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the children like to play with the bubble machine .", "storylet_id": "231183"}], [{"original_text": "There are also blocks for the children to play with.", "album_id": "72157600272663173", "photo_flickr_id": "516399421", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46236", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are also blocks for the children to play with .", "storylet_id": "231184"}], [{"original_text": "The yearly family reunion always had the best food.", "album_id": "72157600272663173", "photo_flickr_id": "516373090", "setting": "last-3-pick-old-and-tell", "worker_id": "N2121AEJNH9XWTS", "story_id": "46237", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the yearly family reunion always had the best food .", "storylet_id": "231185"}], [{"original_text": "While nana got everything set up for lunch the kids loved playing with bubbles.", "album_id": "72157600272663173", "photo_flickr_id": "516373164", "setting": "last-3-pick-old-and-tell", "worker_id": "N2121AEJNH9XWTS", "story_id": "46237", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while nana got everything set up for lunch the kids loved playing with bubbles .", "storylet_id": "231186"}], [{"original_text": "This year we got them a bubble machine.", "album_id": "72157600272663173", "photo_flickr_id": "516398945", "setting": "last-3-pick-old-and-tell", "worker_id": "N2121AEJNH9XWTS", "story_id": "46237", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this year we got them a bubble machine .", "storylet_id": "231187"}], [{"original_text": "The adults had some fun of their own. Uncle Joey always made fun of the beer cooler.", "album_id": "72157600272663173", "photo_flickr_id": "516373660", "setting": "last-3-pick-old-and-tell", "worker_id": "N2121AEJNH9XWTS", "story_id": "46237", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the adults had some fun of their own . uncle [male] always made fun of the beer cooler .", "storylet_id": "231188"}], [{"original_text": "When the bubbles were gone we had to find something else to entertain the kids.", "album_id": "72157600272663173", "photo_flickr_id": "516399421", "setting": "last-3-pick-old-and-tell", "worker_id": "N2121AEJNH9XWTS", "story_id": "46237", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the bubbles were gone we had to find something else to entertain the kids .", "storylet_id": "231189"}], [{"original_text": "Grandma made it so fun for the grand kids today. She made a picnic in the park.", "album_id": "72157600272663173", "photo_flickr_id": "516373090", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "46238", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandma made it so fun for the grand kids today . she made a picnic in the park .", "storylet_id": "231190"}], [{"original_text": "There was plenty of toys to play with.", "album_id": "72157600272663173", "photo_flickr_id": "516373164", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "46238", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was plenty of toys to play with .", "storylet_id": "231191"}], [{"original_text": "There was even an automatic bubble maker.", "album_id": "72157600272663173", "photo_flickr_id": "516398945", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "46238", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was even an automatic bubble maker .", "storylet_id": "231192"}], [{"original_text": "Of course grandma seemed happy and non stressed.", "album_id": "72157600272663173", "photo_flickr_id": "516373660", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "46238", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course grandma seemed happy and non stressed .", "storylet_id": "231193"}], [{"original_text": "Grandma even made an alphabet game and everyone was the winner.", "album_id": "72157600272663173", "photo_flickr_id": "516399421", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "46238", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandma even made an alphabet game and everyone was the winner .", "storylet_id": "231194"}], [{"original_text": "The neighborhood planned a potluck meal at the local park.", "album_id": "72157600272663173", "photo_flickr_id": "516373090", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46239", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the neighborhood planned a potluck meal at the local park .", "storylet_id": "231195"}], [{"original_text": "Kids were also invited, and many brought toys.", "album_id": "72157600272663173", "photo_flickr_id": "516373164", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46239", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "kids were also invited , and many brought toys .", "storylet_id": "231196"}], [{"original_text": "The kids loved the wide open spaces, and they were allowed to run around and play.", "album_id": "72157600272663173", "photo_flickr_id": "516398945", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46239", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids loved the wide open spaces , and they were allowed to run around and play .", "storylet_id": "231197"}], [{"original_text": "Lots of food and beverages were brought to the outing.", "album_id": "72157600272663173", "photo_flickr_id": "516373660", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46239", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "lots of food and beverages were brought to the outing .", "storylet_id": "231198"}], [{"original_text": "And, the kids had a blast playing with lots of toys.", "album_id": "72157600272663173", "photo_flickr_id": "516399421", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46239", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , the kids had a blast playing with lots of toys .", "storylet_id": "231199"}], [{"original_text": "Yesterday after I was bored so I called all of my friends to come over.", "album_id": "72157624051098317", "photo_flickr_id": "4656668175", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46240", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday after i was bored so i called all of my friends to come over .", "storylet_id": "231200"}], [{"original_text": "I made cupcakes for everyone before they arrived.", "album_id": "72157624051098317", "photo_flickr_id": "4657288522", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46240", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i made cupcakes for everyone before they arrived .", "storylet_id": "231201"}], [{"original_text": "Eventually some people started showing up.", "album_id": "72157624051098317", "photo_flickr_id": "4657289986", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46240", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "eventually some people started showing up .", "storylet_id": "231202"}], [{"original_text": "We had a lot of fun chatting with each other.", "album_id": "72157624051098317", "photo_flickr_id": "4656667643", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46240", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a lot of fun chatting with each other .", "storylet_id": "231203"}], [{"original_text": "I had a great time and I hope everyone can come over again soon.", "album_id": "72157624051098317", "photo_flickr_id": "4656667153", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46240", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time and i hope everyone can come over again soon .", "storylet_id": "231204"}], [{"original_text": "If we really focus on it we can get on this show!", "album_id": "72157624051098317", "photo_flickr_id": "4656667913", "setting": "first-2-pick-and-tell", "worker_id": "NWZH7FLUHURC1LX", "story_id": "46241", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "if we really focus on it we can get on this show !", "storylet_id": "231205"}], [{"original_text": "Come on I know we can do it if we work together", "album_id": "72157624051098317", "photo_flickr_id": "4656667643", "setting": "first-2-pick-and-tell", "worker_id": "NWZH7FLUHURC1LX", "story_id": "46241", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "come on i know we can do it if we work together", "storylet_id": "231206"}], [{"original_text": "All I have to do is get a few people and we are off to the races", "album_id": "72157624051098317", "photo_flickr_id": "4657289986", "setting": "first-2-pick-and-tell", "worker_id": "NWZH7FLUHURC1LX", "story_id": "46241", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all i have to do is get a few people and we are off to the races", "storylet_id": "231207"}], [{"original_text": "I think we can do it just a couple more", "album_id": "72157624051098317", "photo_flickr_id": "4656667523", "setting": "first-2-pick-and-tell", "worker_id": "NWZH7FLUHURC1LX", "story_id": "46241", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i think we can do it just a couple more", "storylet_id": "231208"}], [{"original_text": "Here we are this is the team that is going to win!", "album_id": "72157624051098317", "photo_flickr_id": "4656667363", "setting": "first-2-pick-and-tell", "worker_id": "NWZH7FLUHURC1LX", "story_id": "46241", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here we are this is the team that is going to win !", "storylet_id": "231209"}], [{"original_text": "The lounge recently had a flat-screen TV installed on the wall.", "album_id": "72157624051098317", "photo_flickr_id": "4656667913", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46242", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lounge recently had a flat-screen tv installed on the wall .", "storylet_id": "231210"}], [{"original_text": "Several people worked together to install it.", "album_id": "72157624051098317", "photo_flickr_id": "4656667643", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46242", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "several people worked together to install it .", "storylet_id": "231211"}], [{"original_text": "Now, when people gather in the lounge they can watch TV.", "album_id": "72157624051098317", "photo_flickr_id": "4657289986", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46242", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now , when people gather in the lounge they can watch tv .", "storylet_id": "231212"}], [{"original_text": "This has made people quite happy.", "album_id": "72157624051098317", "photo_flickr_id": "4656667523", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46242", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this has made people quite happy .", "storylet_id": "231213"}], [{"original_text": "And, people tend to frequent the lounge much more now.", "album_id": "72157624051098317", "photo_flickr_id": "4656667363", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46242", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , people tend to frequent the lounge much more now .", "storylet_id": "231214"}], [{"original_text": "The Fedora team got together at Saxby's for casual discussion. ", "album_id": "72157624051098317", "photo_flickr_id": "4656667913", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46243", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fedora team got together at saxby 's for casual discussion .", "storylet_id": "231215"}], [{"original_text": "Many things were discussed in a nice and relaxed setting. ", "album_id": "72157624051098317", "photo_flickr_id": "4656667643", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46243", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many things were discussed in a nice and relaxed setting .", "storylet_id": "231216"}], [{"original_text": "It didn't seem like work in such a cozy place. ", "album_id": "72157624051098317", "photo_flickr_id": "4657289986", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46243", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it did n't seem like work in such a cozy place .", "storylet_id": "231217"}], [{"original_text": "There were many smiles. ", "album_id": "72157624051098317", "photo_flickr_id": "4656667523", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46243", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many smiles .", "storylet_id": "231218"}], [{"original_text": "The meeting was a success with much done. ", "album_id": "72157624051098317", "photo_flickr_id": "4656667363", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46243", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the meeting was a success with much done .", "storylet_id": "231219"}], [{"original_text": "It's was eric's birthday and everybody at the office bought presents to surprise him with. ", "album_id": "72157624051098317", "photo_flickr_id": "4656668175", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46244", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's was eric 's birthday and everybody at the office bought presents to surprise him with .", "storylet_id": "231220"}], [{"original_text": "One coworker even baked cupcakes. ", "album_id": "72157624051098317", "photo_flickr_id": "4657288522", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46244", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one coworker even baked cupcakes .", "storylet_id": "231221"}], [{"original_text": "The group of friends socialized in the meeting room. ", "album_id": "72157624051098317", "photo_flickr_id": "4657289986", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46244", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the group of friends socialized in the meeting room .", "storylet_id": "231222"}], [{"original_text": "Eric thanked his friends for throwing such a great party. ", "album_id": "72157624051098317", "photo_flickr_id": "4656667643", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46244", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] thanked his friends for throwing such a great party .", "storylet_id": "231223"}], [{"original_text": "Everybody was laughing and having a good time. ", "album_id": "72157624051098317", "photo_flickr_id": "4656667153", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46244", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everybody was laughing and having a good time .", "storylet_id": "231224"}], [{"original_text": "My friend wanted to jump in the water.", "album_id": "846237", "photo_flickr_id": "38106672", "setting": "first-2-pick-and-tell", "worker_id": "JJL0WPCMGGHBQ5Z", "story_id": "46245", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend wanted to jump in the water .", "storylet_id": "231225"}], [{"original_text": "He finally did dive in.", "album_id": "846237", "photo_flickr_id": "38106810", "setting": "first-2-pick-and-tell", "worker_id": "JJL0WPCMGGHBQ5Z", "story_id": "46245", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he finally did dive in .", "storylet_id": "231226"}], [{"original_text": "Then I joined him.", "album_id": "846237", "photo_flickr_id": "38106929", "setting": "first-2-pick-and-tell", "worker_id": "JJL0WPCMGGHBQ5Z", "story_id": "46245", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then i joined him .", "storylet_id": "231227"}], [{"original_text": "Another person joined in soon afterwards.", "album_id": "846237", "photo_flickr_id": "38107073", "setting": "first-2-pick-and-tell", "worker_id": "JJL0WPCMGGHBQ5Z", "story_id": "46245", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another person joined in soon afterwards .", "storylet_id": "231228"}], [{"original_text": "Then one more person joined in.", "album_id": "846237", "photo_flickr_id": "38107216", "setting": "first-2-pick-and-tell", "worker_id": "JJL0WPCMGGHBQ5Z", "story_id": "46245", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then one more person joined in .", "storylet_id": "231229"}], [{"original_text": "We went swimming out in the lake.", "album_id": "846237", "photo_flickr_id": "38106672", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46246", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went swimming out in the lake .", "storylet_id": "231230"}], [{"original_text": "We had lots of floats.", "album_id": "846237", "photo_flickr_id": "38106929", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46246", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had lots of floats .", "storylet_id": "231231"}], [{"original_text": "Everyone had a great time.", "album_id": "846237", "photo_flickr_id": "38107490", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46246", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone had a great time .", "storylet_id": "231232"}], [{"original_text": "I got a lot of practice swimming.", "album_id": "846237", "photo_flickr_id": "38107886", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46246", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i got a lot of practice swimming .", "storylet_id": "231233"}], [{"original_text": "We had a lot of fun too.", "album_id": "846237", "photo_flickr_id": "38108792", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46246", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a lot of fun too .", "storylet_id": "231234"}], [{"original_text": "Out swimming in the lake. I'm gonna dive in!", "album_id": "846237", "photo_flickr_id": "38106672", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46247", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "out swimming in the lake . i 'm gon na dive in !", "storylet_id": "231235"}], [{"original_text": "Susan swimming already.", "album_id": "846237", "photo_flickr_id": "38106929", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46247", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] swimming already .", "storylet_id": "231236"}], [{"original_text": "Gramma and Grampa are enjoying it.", "album_id": "846237", "photo_flickr_id": "38107490", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46247", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "gramma and grampa are enjoying it .", "storylet_id": "231237"}], [{"original_text": "Sitting on the noodle is such fun.", "album_id": "846237", "photo_flickr_id": "38107886", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46247", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sitting on the noodle is such fun .", "storylet_id": "231238"}], [{"original_text": "Me and Susan playing around.", "album_id": "846237", "photo_flickr_id": "38108792", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46247", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "me and [female] playing around .", "storylet_id": "231239"}], [{"original_text": "Getting ready to dive from the pier.", "album_id": "846237", "photo_flickr_id": "38106672", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46248", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting ready to dive from the pier .", "storylet_id": "231240"}], [{"original_text": "A dive into the cold lake.", "album_id": "846237", "photo_flickr_id": "38106810", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46248", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a dive into the cold lake .", "storylet_id": "231241"}], [{"original_text": "Swimming about on the raft.", "album_id": "846237", "photo_flickr_id": "38106929", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46248", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "swimming about on the raft .", "storylet_id": "231242"}], [{"original_text": "Two friends enjoy the refreshing lake.", "album_id": "846237", "photo_flickr_id": "38107073", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46248", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two friends enjoy the refreshing lake .", "storylet_id": "231243"}], [{"original_text": "Noodles at the ready for a fun fight.", "album_id": "846237", "photo_flickr_id": "38107216", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46248", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "noodles at the ready for a fun fight .", "storylet_id": "231244"}], [{"original_text": "The boy is deciding whether to take a swim.", "album_id": "846237", "photo_flickr_id": "38106672", "setting": "last-3-pick-old-and-tell", "worker_id": "XD2SWWLV77VINHX", "story_id": "46249", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boy is deciding whether to take a swim .", "storylet_id": "231245"}], [{"original_text": "He decides to dive in the water.", "album_id": "846237", "photo_flickr_id": "38106810", "setting": "last-3-pick-old-and-tell", "worker_id": "XD2SWWLV77VINHX", "story_id": "46249", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he decides to dive in the water .", "storylet_id": "231246"}], [{"original_text": "She is wading around in the cool water.", "album_id": "846237", "photo_flickr_id": "38106929", "setting": "last-3-pick-old-and-tell", "worker_id": "XD2SWWLV77VINHX", "story_id": "46249", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she is wading around in the cool water .", "storylet_id": "231247"}], [{"original_text": "They notice someone with a camera taking their picture.", "album_id": "846237", "photo_flickr_id": "38107073", "setting": "last-3-pick-old-and-tell", "worker_id": "XD2SWWLV77VINHX", "story_id": "46249", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they notice someone with a camera taking their picture .", "storylet_id": "231248"}], [{"original_text": "The girls have a stick fight to decide who gets the boy.", "album_id": "846237", "photo_flickr_id": "38107216", "setting": "last-3-pick-old-and-tell", "worker_id": "XD2SWWLV77VINHX", "story_id": "46249", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girls have a stick fight to decide who gets the boy .", "storylet_id": "231249"}], [{"original_text": "We hang out at the bar today.", "album_id": "981650", "photo_flickr_id": "44908327", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46250", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we hang out at the bar today .", "storylet_id": "231250"}], [{"original_text": "We played a lot of pool.", "album_id": "981650", "photo_flickr_id": "44908959", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46250", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we played a lot of pool .", "storylet_id": "231251"}], [{"original_text": "We'd go a bit crazy sometimes.", "album_id": "981650", "photo_flickr_id": "44909283", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46250", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we 'd go a bit crazy sometimes .", "storylet_id": "231252"}], [{"original_text": "We look lots of pictures.", "album_id": "981650", "photo_flickr_id": "44910176", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46250", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we look lots of pictures .", "storylet_id": "231253"}], [{"original_text": "It was a great time.", "album_id": "981650", "photo_flickr_id": "44911123", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46250", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great time .", "storylet_id": "231254"}], [{"original_text": "Last week my best girlfriends took me out to teach me to play pool.", "album_id": "981650", "photo_flickr_id": "44910176", "setting": "first-2-pick-and-tell", "worker_id": "RQ25RRST89HT6OO", "story_id": "46251", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week my best girlfriends took me out to teach me to play pool .", "storylet_id": "231255"}], [{"original_text": "Here we are getting a drink while waiting on a table.", "album_id": "981650", "photo_flickr_id": "44908692", "setting": "first-2-pick-and-tell", "worker_id": "RQ25RRST89HT6OO", "story_id": "46251", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we are getting a drink while waiting on a table .", "storylet_id": "231256"}], [{"original_text": "Here's a shot someone snuck of me lining up on the cueball.", "album_id": "981650", "photo_flickr_id": "44908327", "setting": "first-2-pick-and-tell", "worker_id": "RQ25RRST89HT6OO", "story_id": "46251", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's a shot someone snuck of me lining up on the cueball .", "storylet_id": "231257"}], [{"original_text": "Another shot here, the ball I'm trying to hit is right on the edge of the pocket at the opposite corner.", "album_id": "981650", "photo_flickr_id": "44908959", "setting": "first-2-pick-and-tell", "worker_id": "RQ25RRST89HT6OO", "story_id": "46251", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another shot here , the ball i 'm trying to hit is right on the edge of the pocket at the opposite corner .", "storylet_id": "231258"}], [{"original_text": "Later in the night, one of the girls decided she'd make my shots harder. We had a great time!", "album_id": "981650", "photo_flickr_id": "44909283", "setting": "first-2-pick-and-tell", "worker_id": "RQ25RRST89HT6OO", "story_id": "46251", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later in the night , one of the girls decided she 'd make my shots harder . we had a great time !", "storylet_id": "231259"}], [{"original_text": "When we got to the bar there were already a lot of people there.", "album_id": "981650", "photo_flickr_id": "44910176", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46252", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when we got to the bar there were already a lot of people there .", "storylet_id": "231260"}], [{"original_text": "I found my friends sitting by the bar.", "album_id": "981650", "photo_flickr_id": "44908692", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46252", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i found my friends sitting by the bar .", "storylet_id": "231261"}], [{"original_text": "They wanted to play some pool so we waited for a table to open up.", "album_id": "981650", "photo_flickr_id": "44908327", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46252", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they wanted to play some pool so we waited for a table to open up .", "storylet_id": "231262"}], [{"original_text": "We had a lot of fun playing.", "album_id": "981650", "photo_flickr_id": "44908959", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46252", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a lot of fun playing .", "storylet_id": "231263"}], [{"original_text": "Some people did not know how to play.", "album_id": "981650", "photo_flickr_id": "44909283", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46252", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people did not know how to play .", "storylet_id": "231264"}], [{"original_text": "The annual pool tournament of guys vs. girls had commenced!", "album_id": "981650", "photo_flickr_id": "44908327", "setting": "last-3-pick-old-and-tell", "worker_id": "M2MHH0TK19CSLQG", "story_id": "46253", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the annual pool tournament of guys vs. girls had commenced !", "storylet_id": "231265"}], [{"original_text": "The girls had started it off.", "album_id": "981650", "photo_flickr_id": "44908959", "setting": "last-3-pick-old-and-tell", "worker_id": "M2MHH0TK19CSLQG", "story_id": "46253", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girls had started it off .", "storylet_id": "231266"}], [{"original_text": "And they were having a nice streak.", "album_id": "981650", "photo_flickr_id": "44909283", "setting": "last-3-pick-old-and-tell", "worker_id": "M2MHH0TK19CSLQG", "story_id": "46253", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and they were having a nice streak .", "storylet_id": "231267"}], [{"original_text": "They started teasing the guys.", "album_id": "981650", "photo_flickr_id": "44910176", "setting": "last-3-pick-old-and-tell", "worker_id": "M2MHH0TK19CSLQG", "story_id": "46253", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they started teasing the guys .", "storylet_id": "231268"}], [{"original_text": "The guys did not like the teasing and responded with cockiness. ", "album_id": "981650", "photo_flickr_id": "44911123", "setting": "last-3-pick-old-and-tell", "worker_id": "M2MHH0TK19CSLQG", "story_id": "46253", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the guys did not like the teasing and responded with cockiness .", "storylet_id": "231269"}], [{"original_text": "A friendly game of pool at the pub.", "album_id": "981650", "photo_flickr_id": "44908327", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46254", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a friendly game of pool at the pub .", "storylet_id": "231270"}], [{"original_text": "Lining up the perfect shot.", "album_id": "981650", "photo_flickr_id": "44908959", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46254", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lining up the perfect shot .", "storylet_id": "231271"}], [{"original_text": "A lady dives across the table to save the shot.", "album_id": "981650", "photo_flickr_id": "44909283", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46254", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lady dives across the table to save the shot .", "storylet_id": "231272"}], [{"original_text": "Two friends out on the town.", "album_id": "981650", "photo_flickr_id": "44910176", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46254", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two friends out on the town .", "storylet_id": "231273"}], [{"original_text": "Someone is telling the photographer they are number one.", "album_id": "981650", "photo_flickr_id": "44911123", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46254", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someone is telling the photographer they are number one .", "storylet_id": "231274"}], [{"original_text": "We went to the city today.", "album_id": "1399396", "photo_flickr_id": "64051461", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46255", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the city today .", "storylet_id": "231275"}], [{"original_text": "We took lots of pictures.", "album_id": "1399396", "photo_flickr_id": "64051511", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46255", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took lots of pictures .", "storylet_id": "231276"}], [{"original_text": "We went and got something to drink.", "album_id": "1399396", "photo_flickr_id": "64051523", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46255", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went and got something to drink .", "storylet_id": "231277"}], [{"original_text": "We really enjoy the juice bar.", "album_id": "1399396", "photo_flickr_id": "64055962", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46255", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we really enjoy the juice bar .", "storylet_id": "231278"}], [{"original_text": "We had a great day.", "album_id": "1399396", "photo_flickr_id": "64055982", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46255", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great day .", "storylet_id": "231279"}], [{"original_text": "A school based foreign exchange program at a located at an Asian university allows many foreigners to experience Asia's culture. A teacher and student pose outside a venue where an end of the semester party is being held.", "album_id": "1399396", "photo_flickr_id": "64051511", "setting": "first-2-pick-and-tell", "worker_id": "2MOQKIJCGO8PIAY", "story_id": "46256", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a school based foreign exchange program at a located at an asian university allows many foreigners to experience location 's culture . a teacher and student pose outside a venue where an end of the semester party is being held .", "storylet_id": "231280"}], [{"original_text": "A Pakistani man is deep in conversation with his Asian room mate.", "album_id": "1399396", "photo_flickr_id": "64056033", "setting": "first-2-pick-and-tell", "worker_id": "2MOQKIJCGO8PIAY", "story_id": "46256", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a pakistani man is deep in conversation with his asian room mate .", "storylet_id": "231281"}], [{"original_text": "An American exchange student smiles as she converses in semi fluent Chinese.", "album_id": "1399396", "photo_flickr_id": "64056052", "setting": "first-2-pick-and-tell", "worker_id": "2MOQKIJCGO8PIAY", "story_id": "46256", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "an american exchange student smiles as she converses in semi fluent chinese .", "storylet_id": "231282"}], [{"original_text": "Another student dishes helps cut slices of cake for guests. He has no problem cracking jokes and making everyone laugh.", "album_id": "1399396", "photo_flickr_id": "64058481", "setting": "first-2-pick-and-tell", "worker_id": "2MOQKIJCGO8PIAY", "story_id": "46256", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another student dishes helps cut slices of cake for guests . he has no problem cracking jokes and making everyone laugh .", "storylet_id": "231283"}], [{"original_text": "Everyone smiles for and end of semester class photograph. Everyone had a great time at this party.", "album_id": "1399396", "photo_flickr_id": "63982980", "setting": "first-2-pick-and-tell", "worker_id": "2MOQKIJCGO8PIAY", "story_id": "46256", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone smiles for and end of semester class photograph . everyone had a great time at this party .", "storylet_id": "231284"}], [{"original_text": "I saw her crossing the street and thought id say hello.", "album_id": "1399396", "photo_flickr_id": "64051461", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46257", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i saw her crossing the street and thought id say hello .", "storylet_id": "231285"}], [{"original_text": "She ran right into one of her good friends. Blocked.", "album_id": "1399396", "photo_flickr_id": "64051511", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46257", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she ran right into one of her good friends . blocked .", "storylet_id": "231286"}], [{"original_text": "I tagged along to a local cafe where i was lucky enough to make them laugh a few times.", "album_id": "1399396", "photo_flickr_id": "64051523", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46257", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i tagged along to a local cafe where i was lucky enough to make them laugh a few times .", "storylet_id": "231287"}], [{"original_text": "They did that whole \"piece sign\" thing but they where still cute. ", "album_id": "1399396", "photo_flickr_id": "64055962", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46257", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they did that whole `` piece sign '' thing but they where still cute .", "storylet_id": "231288"}], [{"original_text": "We had a few drinks and let the night go wherever it was.", "album_id": "1399396", "photo_flickr_id": "64055982", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46257", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a few drinks and let the night go wherever it was .", "storylet_id": "231289"}], [{"original_text": "She was headed to meet her friend who is planning on showing her around.", "album_id": "1399396", "photo_flickr_id": "64051461", "setting": "last-3-pick-old-and-tell", "worker_id": "M2MHH0TK19CSLQG", "story_id": "46258", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she was headed to meet her friend who is planning on showing her around .", "storylet_id": "231290"}], [{"original_text": "It's her first time in the city.", "album_id": "1399396", "photo_flickr_id": "64051511", "setting": "last-3-pick-old-and-tell", "worker_id": "M2MHH0TK19CSLQG", "story_id": "46258", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's her first time in the city .", "storylet_id": "231291"}], [{"original_text": "Her friend takes her to this really down to earth restaurant.", "album_id": "1399396", "photo_flickr_id": "64051523", "setting": "last-3-pick-old-and-tell", "worker_id": "M2MHH0TK19CSLQG", "story_id": "46258", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her friend takes her to this really down to earth restaurant .", "storylet_id": "231292"}], [{"original_text": "Where they meet up with some of her local friends.", "album_id": "1399396", "photo_flickr_id": "64055962", "setting": "last-3-pick-old-and-tell", "worker_id": "M2MHH0TK19CSLQG", "story_id": "46258", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "where they meet up with some of her local friends .", "storylet_id": "231293"}], [{"original_text": "They all sit down for a nice meal before doing some sight seeing. ", "album_id": "1399396", "photo_flickr_id": "64055982", "setting": "last-3-pick-old-and-tell", "worker_id": "M2MHH0TK19CSLQG", "story_id": "46258", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all sit down for a nice meal before doing some sight seeing .", "storylet_id": "231294"}], [{"original_text": "My best friend and I went out to meet with some other friends of ours.", "album_id": "1399396", "photo_flickr_id": "64051511", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46259", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my best friend and i went out to meet with some other friends of ours .", "storylet_id": "231295"}], [{"original_text": "Jim was shocked to see us after so many years.", "album_id": "1399396", "photo_flickr_id": "64056033", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46259", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was shocked to see us after so many years .", "storylet_id": "231296"}], [{"original_text": "Jim introduced us to his new wife. They are such a perfect couple!", "album_id": "1399396", "photo_flickr_id": "64056052", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46259", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] introduced us to his new wife . they are such a perfect couple !", "storylet_id": "231297"}], [{"original_text": "We went back to another friends place so continue catching up.", "album_id": "1399396", "photo_flickr_id": "64058481", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46259", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went back to another friends place so continue catching up .", "storylet_id": "231298"}], [{"original_text": "We took a group picture to remember this event for all times.", "album_id": "1399396", "photo_flickr_id": "63982980", "setting": "last-3-pick-old-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "46259", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took a group picture to remember this event for all times .", "storylet_id": "231299"}], [{"original_text": "We had a party today.", "album_id": "72057594067732259", "photo_flickr_id": "102367779", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46260", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a party today .", "storylet_id": "231300"}], [{"original_text": "Lot's of people came.", "album_id": "72057594067732259", "photo_flickr_id": "102368204", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46260", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lot 's of people came .", "storylet_id": "231301"}], [{"original_text": "We took a lot of pictures.", "album_id": "72057594067732259", "photo_flickr_id": "102370676", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46260", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took a lot of pictures .", "storylet_id": "231302"}], [{"original_text": "We drank a lot too.", "album_id": "72057594067732259", "photo_flickr_id": "102371021", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46260", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we drank a lot too .", "storylet_id": "231303"}], [{"original_text": "There was plenty of food.", "album_id": "72057594067732259", "photo_flickr_id": "102374673", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46260", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was plenty of food .", "storylet_id": "231304"}], [{"original_text": "Frank enjoyed a nice garlic snack while at the Christmas party.", "album_id": "72057594067732259", "photo_flickr_id": "102374673", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "46261", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] enjoyed a nice garlic snack while at the christmas party .", "storylet_id": "231305"}], [{"original_text": "After eating, he spotted Jim talking with a girl.", "album_id": "72057594067732259", "photo_flickr_id": "102368913", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "46261", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after eating , he spotted [male] talking with a girl .", "storylet_id": "231306"}], [{"original_text": "Frank decided to say hello to Jim.", "album_id": "72057594067732259", "photo_flickr_id": "102372043", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "46261", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] decided to say hello to [male] .", "storylet_id": "231307"}], [{"original_text": "Frank's breath smelled so bad from the garlic snack, that Jim scrunched up his face.", "album_id": "72057594067732259", "photo_flickr_id": "102371686", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "46261", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] 's breath smelled so bad from the garlic snack , that [male] scrunched up his face .", "storylet_id": "231308"}], [{"original_text": "Jim said to Frank, \"you wouldn't happen to have some gum on you, would you Frank?\"", "album_id": "72057594067732259", "photo_flickr_id": "102372913", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "46261", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] said to [male] , `` you would n't happen to have some gum on you , would you [male] ? ''", "storylet_id": "231309"}], [{"original_text": "The night was young, but the group was ready for their meeting.", "album_id": "72057594067732259", "photo_flickr_id": "102367779", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46262", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the night was young , but the group was ready for their meeting .", "storylet_id": "231310"}], [{"original_text": "We had a great time figuring out how we planned to blow up the bank vault and steel all the money.", "album_id": "72057594067732259", "photo_flickr_id": "102368204", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46262", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a great time figuring out how we planned to blow up the bank vault and steel all the money .", "storylet_id": "231311"}], [{"original_text": "These two happily volunteered to go into the bank first, guns blazing, they may be the first to die if the police show.", "album_id": "72057594067732259", "photo_flickr_id": "102370676", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46262", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these two happily volunteered to go into the bank first , guns blazing , they may be the first to die if the police show .", "storylet_id": "231312"}], [{"original_text": "These are our master locksmiths, their job is to unlock any stubborn deposit boxes in the vault.", "album_id": "72057594067732259", "photo_flickr_id": "102371021", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46262", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these are our master locksmiths , their job is to unlock any stubborn deposit boxes in the vault .", "storylet_id": "231313"}], [{"original_text": "But when all of the roles for the robbery we assigned, we ate a bunch of great food.", "album_id": "72057594067732259", "photo_flickr_id": "102374673", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46262", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but when all of the roles for the robbery we assigned , we ate a bunch of great food .", "storylet_id": "231314"}], [{"original_text": "The guests pose for a picture.", "album_id": "72057594067732259", "photo_flickr_id": "102367779", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46263", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guests pose for a picture .", "storylet_id": "231315"}], [{"original_text": "Someone looks unhappy to have his picture taken.", "album_id": "72057594067732259", "photo_flickr_id": "102368204", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46263", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "someone looks unhappy to have his picture taken .", "storylet_id": "231316"}], [{"original_text": "Two friends pose for a picture.", "album_id": "72057594067732259", "photo_flickr_id": "102370676", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46263", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two friends pose for a picture .", "storylet_id": "231317"}], [{"original_text": "This couple looks on their way to having a good time.", "album_id": "72057594067732259", "photo_flickr_id": "102371021", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46263", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this couple looks on their way to having a good time .", "storylet_id": "231318"}], [{"original_text": "Food prepared for the guests.", "album_id": "72057594067732259", "photo_flickr_id": "102374673", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46263", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "food prepared for the guests .", "storylet_id": "231319"}], [{"original_text": "My sister Lesley is good at many things, but cooking is not one of them. We took a bunch of pictures at her latest party to show that.", "album_id": "72057594067732259", "photo_flickr_id": "102374673", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46264", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister [female] is good at many things , but cooking is not one of them . we took a bunch of pictures at her latest party to show that .", "storylet_id": "231320"}], [{"original_text": "At first, everyone was happy and chatting.", "album_id": "72057594067732259", "photo_flickr_id": "102368913", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46264", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at first , everyone was happy and chatting .", "storylet_id": "231321"}], [{"original_text": "People were all smiles.", "album_id": "72057594067732259", "photo_flickr_id": "102372043", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46264", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people were all smiles .", "storylet_id": "231322"}], [{"original_text": "Then, they got their first taste of Lesley's famous tarts. The faces were incredible.", "album_id": "72057594067732259", "photo_flickr_id": "102371686", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46264", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , they got their first taste of [female] 's famous tarts . the faces were incredible .", "storylet_id": "231323"}], [{"original_text": "It was lucky there was a glass of juice handy, or her guest might have thrown up.", "album_id": "72057594067732259", "photo_flickr_id": "102372913", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46264", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was lucky there was a glass of juice handy , or her guest might have thrown up .", "storylet_id": "231324"}], [{"original_text": "A group of friends having a get together party.", "album_id": "72157594245097786", "photo_flickr_id": "220671139", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46265", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends having a get together party .", "storylet_id": "231325"}], [{"original_text": "They start posing for pictures and are having a good time.", "album_id": "72157594245097786", "photo_flickr_id": "220671318", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46265", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they start posing for pictures and are having a good time .", "storylet_id": "231326"}], [{"original_text": "A lady falls down and it causes everyone to look at her.", "album_id": "72157594245097786", "photo_flickr_id": "220671669", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46265", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lady falls down and it causes everyone to look at her .", "storylet_id": "231327"}], [{"original_text": "Good times and memories are being made as they all share a beer and pose for a picture.", "album_id": "72157594245097786", "photo_flickr_id": "220672143", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46265", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "good times and memories are being made as they all share a beer and pose for a picture .", "storylet_id": "231328"}], [{"original_text": "After the picture they start getting up and dancing.", "album_id": "72157594245097786", "photo_flickr_id": "220672458", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46265", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the picture they start getting up and dancing .", "storylet_id": "231329"}], [{"original_text": "We had a part today.", "album_id": "72157594245097786", "photo_flickr_id": "220671139", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46266", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a part today .", "storylet_id": "231330"}], [{"original_text": "Everyone got mad drunk.", "album_id": "72157594245097786", "photo_flickr_id": "220671318", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46266", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone got mad drunk .", "storylet_id": "231331"}], [{"original_text": "And we also had karaoke.", "album_id": "72157594245097786", "photo_flickr_id": "220671930", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46266", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and we also had karaoke .", "storylet_id": "231332"}], [{"original_text": "We took lots of silly pictures.", "album_id": "72157594245097786", "photo_flickr_id": "220671996", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46266", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took lots of silly pictures .", "storylet_id": "231333"}], [{"original_text": "It was a great time.", "album_id": "72157594245097786", "photo_flickr_id": "220672281", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46266", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great time .", "storylet_id": "231334"}], [{"original_text": "These two ladies were dressed to kill at tonight's party, lets hope they can sing!", "album_id": "72157594245097786", "photo_flickr_id": "220671139", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46267", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these two ladies were dressed to kill at tonight 's party , lets hope they can sing !", "storylet_id": "231335"}], [{"original_text": "This lovely couple was inseparable the whole night.", "album_id": "72157594245097786", "photo_flickr_id": "220671318", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46267", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this lovely couple was inseparable the whole night .", "storylet_id": "231336"}], [{"original_text": "Singing commenced, although it wasn't very good.", "album_id": "72157594245097786", "photo_flickr_id": "220671669", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46267", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "singing commenced , although it was n't very good .", "storylet_id": "231337"}], [{"original_text": "At least the boys were enjoying themselves with a few beers.", "album_id": "72157594245097786", "photo_flickr_id": "220672143", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46267", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at least the boys were enjoying themselves with a few beers .", "storylet_id": "231338"}], [{"original_text": "But the beers definitely seem to bring out the dancer in everyone. ", "album_id": "72157594245097786", "photo_flickr_id": "220672458", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46267", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the beers definitely seem to bring out the dancer in everyone .", "storylet_id": "231339"}], [{"original_text": "It was party time for my friends.", "album_id": "72157594245097786", "photo_flickr_id": "220671139", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46268", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was party time for my friends .", "storylet_id": "231340"}], [{"original_text": "I sat quietly in the background with my boyfriend.", "album_id": "72157594245097786", "photo_flickr_id": "220671318", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46268", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i sat quietly in the background with my boyfriend .", "storylet_id": "231341"}], [{"original_text": "They got up and sang karaoke.", "album_id": "72157594245097786", "photo_flickr_id": "220671669", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46268", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they got up and sang karaoke .", "storylet_id": "231342"}], [{"original_text": "The boys threw back some beers.", "album_id": "72157594245097786", "photo_flickr_id": "220672143", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46268", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boys threw back some beers .", "storylet_id": "231343"}], [{"original_text": "The girls danced up on eachother.", "album_id": "72157594245097786", "photo_flickr_id": "220672458", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46268", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girls danced up on eachother .", "storylet_id": "231344"}], [{"original_text": "We might just look like a random group of drunk partygoers here, but we weren't.", "album_id": "72157594245097786", "photo_flickr_id": "220671139", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46269", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we might just look like a random group of drunk partygoers here , but we were n't .", "storylet_id": "231345"}], [{"original_text": "We were all here for one reason---to celebrate the end of our friend Barry's cancer treatment.", "album_id": "72157594245097786", "photo_flickr_id": "220671318", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46269", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were all here for one reason -- -to celebrate the end of our friend [male] 's cancer treatment .", "storylet_id": "231346"}], [{"original_text": "I gave a speech about him, and I teared up badly.", "album_id": "72157594245097786", "photo_flickr_id": "220671669", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46269", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i gave a speech about him , and i teared up badly .", "storylet_id": "231347"}], [{"original_text": "We gave him a Superman shirt, and he put it on. That is what he is to all of us--a Superman.", "album_id": "72157594245097786", "photo_flickr_id": "220672143", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46269", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we gave him a superman shirt , and he put it on . that is what he is to all of us -- a superman .", "storylet_id": "231348"}], [{"original_text": "Then, I danced the night away with everyone else, very happy we still had Barry with us.", "album_id": "72157594245097786", "photo_flickr_id": "220672458", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46269", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then , i danced the night away with everyone else , very happy we still had [male] with us .", "storylet_id": "231349"}], [{"original_text": "James is leaving the job", "album_id": "72157594282668993", "photo_flickr_id": "242427259", "setting": "first-2-pick-and-tell", "worker_id": "EZEA6M505LTG4YL", "story_id": "46270", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is leaving the job", "storylet_id": "231350"}], [{"original_text": "James will be missed.", "album_id": "72157594282668993", "photo_flickr_id": "242428386", "setting": "first-2-pick-and-tell", "worker_id": "EZEA6M505LTG4YL", "story_id": "46270", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] will be missed .", "storylet_id": "231351"}], [{"original_text": "James has lots of co-workers that really like him.", "album_id": "72157594282668993", "photo_flickr_id": "242429198", "setting": "first-2-pick-and-tell", "worker_id": "EZEA6M505LTG4YL", "story_id": "46270", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] has lots of co-workers that really like him .", "storylet_id": "231352"}], [{"original_text": "We wish you the best James.", "album_id": "72157594282668993", "photo_flickr_id": "242429927", "setting": "first-2-pick-and-tell", "worker_id": "EZEA6M505LTG4YL", "story_id": "46270", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we wish you the best [male] .", "storylet_id": "231353"}], [{"original_text": "Hey man good luck, stay cool.", "album_id": "72157594282668993", "photo_flickr_id": "242430518", "setting": "first-2-pick-and-tell", "worker_id": "EZEA6M505LTG4YL", "story_id": "46270", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "hey man good luck , stay cool .", "storylet_id": "231354"}], [{"original_text": "We had a party at my place of employment.", "album_id": "72157594282668993", "photo_flickr_id": "242427259", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46271", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a party at my place of employment .", "storylet_id": "231355"}], [{"original_text": "It was a going away party.", "album_id": "72157594282668993", "photo_flickr_id": "242427528", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46271", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a going away party .", "storylet_id": "231356"}], [{"original_text": "A lot of people came to support me.", "album_id": "72157594282668993", "photo_flickr_id": "242427627", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46271", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lot of people came to support me .", "storylet_id": "231357"}], [{"original_text": "I really like my co workers.", "album_id": "72157594282668993", "photo_flickr_id": "242428247", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46271", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i really like my co workers .", "storylet_id": "231358"}], [{"original_text": "I am going to miss them.", "album_id": "72157594282668993", "photo_flickr_id": "242429075", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46271", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am going to miss them .", "storylet_id": "231359"}], [{"original_text": "James is leaving, and this cake commemorates the event honoring him. ", "album_id": "72157594282668993", "photo_flickr_id": "242427259", "setting": "last-3-pick-old-and-tell", "worker_id": "CTMZO7K3PJGNK38", "story_id": "46272", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is leaving , and this cake commemorates the event honoring him .", "storylet_id": "231360"}], [{"original_text": "A colleague enjoys the cake and some conversation. ", "album_id": "72157594282668993", "photo_flickr_id": "242428386", "setting": "last-3-pick-old-and-tell", "worker_id": "CTMZO7K3PJGNK38", "story_id": "46272", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a colleague enjoys the cake and some conversation .", "storylet_id": "231361"}], [{"original_text": "Others are all smiles as they celebrate James and their time with him. ", "album_id": "72157594282668993", "photo_flickr_id": "242429198", "setting": "last-3-pick-old-and-tell", "worker_id": "CTMZO7K3PJGNK38", "story_id": "46272", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others are all smiles as they celebrate [male] and their time with him .", "storylet_id": "231362"}], [{"original_text": "More co-workers pose for a photo as they say goodbye to James. ", "album_id": "72157594282668993", "photo_flickr_id": "242429927", "setting": "last-3-pick-old-and-tell", "worker_id": "CTMZO7K3PJGNK38", "story_id": "46272", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more co-workers pose for a photo as they say goodbye to [male] .", "storylet_id": "231363"}], [{"original_text": "Here's James, waving goodbye as he leaves for the final time and new adventures await him. ", "album_id": "72157594282668993", "photo_flickr_id": "242430518", "setting": "last-3-pick-old-and-tell", "worker_id": "CTMZO7K3PJGNK38", "story_id": "46272", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's [male] , waving goodbye as he leaves for the final time and new adventures await him .", "storylet_id": "231364"}], [{"original_text": "I just picked up the cake and brought it to the surprise party.", "album_id": "72157594282668993", "photo_flickr_id": "242427259", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46273", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i just picked up the cake and brought it to the surprise party .", "storylet_id": "231365"}], [{"original_text": "My friend was very eager to eat some of it.", "album_id": "72157594282668993", "photo_flickr_id": "242428386", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46273", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend was very eager to eat some of it .", "storylet_id": "231366"}], [{"original_text": "I had everyone wait for the birthday person to open up the door.", "album_id": "72157594282668993", "photo_flickr_id": "242429198", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46273", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had everyone wait for the birthday person to open up the door .", "storylet_id": "231367"}], [{"original_text": "We were very excited.", "album_id": "72157594282668993", "photo_flickr_id": "242429927", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46273", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were very excited .", "storylet_id": "231368"}], [{"original_text": "We all surprised him when he came through the door.", "album_id": "72157594282668993", "photo_flickr_id": "242430518", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46273", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all surprised him when he came through the door .", "storylet_id": "231369"}], [{"original_text": "James would be retiring this year and everyone decided to get him a cake at work.", "album_id": "72157594282668993", "photo_flickr_id": "242427259", "setting": "last-3-pick-old-and-tell", "worker_id": "G1RG3TUCYYUM8TC", "story_id": "46274", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] would be retiring this year and everyone decided to get him a cake at work .", "storylet_id": "231370"}], [{"original_text": "The cake was the most delicious part of the lunch!", "album_id": "72157594282668993", "photo_flickr_id": "242428386", "setting": "last-3-pick-old-and-tell", "worker_id": "G1RG3TUCYYUM8TC", "story_id": "46274", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cake was the most delicious part of the lunch !", "storylet_id": "231371"}], [{"original_text": "Everyone was really excited to wish him luck and get in line for some cake.", "album_id": "72157594282668993", "photo_flickr_id": "242429198", "setting": "last-3-pick-old-and-tell", "worker_id": "G1RG3TUCYYUM8TC", "story_id": "46274", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was really excited to wish him luck and get in line for some cake .", "storylet_id": "231372"}], [{"original_text": "It was great because everyone got to talk and remember the great times with their co-worker.", "album_id": "72157594282668993", "photo_flickr_id": "242429927", "setting": "last-3-pick-old-and-tell", "worker_id": "G1RG3TUCYYUM8TC", "story_id": "46274", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was great because everyone got to talk and remember the great times with their co-worker .", "storylet_id": "231373"}], [{"original_text": "James decides to wave goodbye for the final picture. Everyone will miss him.", "album_id": "72157594282668993", "photo_flickr_id": "242430518", "setting": "last-3-pick-old-and-tell", "worker_id": "G1RG3TUCYYUM8TC", "story_id": "46274", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] decides to wave goodbye for the final picture . everyone will miss him .", "storylet_id": "231374"}], [{"original_text": "We had a birthday party.", "album_id": "72157594530445108", "photo_flickr_id": "387161394", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46275", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a birthday party .", "storylet_id": "231375"}], [{"original_text": "It was at a local restaurant.", "album_id": "72157594530445108", "photo_flickr_id": "387161690", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46275", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was at a local restaurant .", "storylet_id": "231376"}], [{"original_text": "Lots of people came.", "album_id": "72157594530445108", "photo_flickr_id": "387161820", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46275", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lots of people came .", "storylet_id": "231377"}], [{"original_text": "We had cake too.", "album_id": "72157594530445108", "photo_flickr_id": "387162432", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46275", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had cake too .", "storylet_id": "231378"}], [{"original_text": "It was a great time.", "album_id": "72157594530445108", "photo_flickr_id": "387162790", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46275", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great time .", "storylet_id": "231379"}], [{"original_text": "Sally is turning 21 today!", "album_id": "72157594530445108", "photo_flickr_id": "387161394", "setting": "first-2-pick-and-tell", "worker_id": "EZEA6M505LTG4YL", "story_id": "46276", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is turning 21 today !", "storylet_id": "231380"}], [{"original_text": "Sally makes her wish.", "album_id": "72157594530445108", "photo_flickr_id": "387162432", "setting": "first-2-pick-and-tell", "worker_id": "EZEA6M505LTG4YL", "story_id": "46276", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] makes her wish .", "storylet_id": "231381"}], [{"original_text": "Time to enjoy some of the wonderful cake.", "album_id": "72157594530445108", "photo_flickr_id": "387162790", "setting": "first-2-pick-and-tell", "worker_id": "EZEA6M505LTG4YL", "story_id": "46276", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "time to enjoy some of the wonderful cake .", "storylet_id": "231382"}], [{"original_text": "Friends at the party for Sally.", "album_id": "72157594530445108", "photo_flickr_id": "387161522", "setting": "first-2-pick-and-tell", "worker_id": "EZEA6M505LTG4YL", "story_id": "46276", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "friends at the party for [female] .", "storylet_id": "231383"}], [{"original_text": "Sally is really enjoying herself and feeling pretty good!", "album_id": "72157594530445108", "photo_flickr_id": "387162922", "setting": "first-2-pick-and-tell", "worker_id": "EZEA6M505LTG4YL", "story_id": "46276", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] is really enjoying herself and feeling pretty good !", "storylet_id": "231384"}], [{"original_text": "It was my birthday today.", "album_id": "72157594530445108", "photo_flickr_id": "387161394", "setting": "last-3-pick-old-and-tell", "worker_id": "U8V1GQJYW47YWYS", "story_id": "46277", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was my birthday today .", "storylet_id": "231385"}], [{"original_text": "My friends too me out to dinner.", "album_id": "72157594530445108", "photo_flickr_id": "387161690", "setting": "last-3-pick-old-and-tell", "worker_id": "U8V1GQJYW47YWYS", "story_id": "46277", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friends too me out to dinner .", "storylet_id": "231386"}], [{"original_text": "They watched me open presents.", "album_id": "72157594530445108", "photo_flickr_id": "387161820", "setting": "last-3-pick-old-and-tell", "worker_id": "U8V1GQJYW47YWYS", "story_id": "46277", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they watched me open presents .", "storylet_id": "231387"}], [{"original_text": "And they got me a cake.", "album_id": "72157594530445108", "photo_flickr_id": "387162432", "setting": "last-3-pick-old-and-tell", "worker_id": "U8V1GQJYW47YWYS", "story_id": "46277", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and they got me a cake .", "storylet_id": "231388"}], [{"original_text": "Then they sang Happy birthday and embarrassed me.", "album_id": "72157594530445108", "photo_flickr_id": "387162790", "setting": "last-3-pick-old-and-tell", "worker_id": "U8V1GQJYW47YWYS", "story_id": "46277", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then they sang happy birthday and embarrassed me .", "storylet_id": "231389"}], [{"original_text": "I was so happy because I was about to celebrate my birthday.", "album_id": "72157594530445108", "photo_flickr_id": "387161394", "setting": "last-3-pick-old-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46278", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was so happy because i was about to celebrate my birthday .", "storylet_id": "231390"}], [{"original_text": "I was presented with a beautiful cake while people clapped.", "album_id": "72157594530445108", "photo_flickr_id": "387162432", "setting": "last-3-pick-old-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46278", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was presented with a beautiful cake while people clapped .", "storylet_id": "231391"}], [{"original_text": "I made a wish and blew out the candles.", "album_id": "72157594530445108", "photo_flickr_id": "387162790", "setting": "last-3-pick-old-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46278", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i made a wish and blew out the candles .", "storylet_id": "231392"}], [{"original_text": "My friends and family were happy for me.", "album_id": "72157594530445108", "photo_flickr_id": "387161522", "setting": "last-3-pick-old-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46278", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friends and family were happy for me .", "storylet_id": "231393"}], [{"original_text": "Afterward my boyfriend played my favorite song on the guitar.", "album_id": "72157594530445108", "photo_flickr_id": "387162922", "setting": "last-3-pick-old-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46278", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward my boyfriend played my favorite song on the guitar .", "storylet_id": "231394"}], [{"original_text": "She is having her eighteenth birthday party.", "album_id": "72157594530445108", "photo_flickr_id": "387161394", "setting": "last-3-pick-old-and-tell", "worker_id": "XD2SWWLV77VINHX", "story_id": "46279", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she is having her eighteenth birthday party .", "storylet_id": "231395"}], [{"original_text": "A group of her classmates pose for the camera.", "album_id": "72157594530445108", "photo_flickr_id": "387161690", "setting": "last-3-pick-old-and-tell", "worker_id": "XD2SWWLV77VINHX", "story_id": "46279", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a group of her classmates pose for the camera .", "storylet_id": "231396"}], [{"original_text": "Her two best friends attend the party.", "album_id": "72157594530445108", "photo_flickr_id": "387161820", "setting": "last-3-pick-old-and-tell", "worker_id": "XD2SWWLV77VINHX", "story_id": "46279", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her two best friends attend the party .", "storylet_id": "231397"}], [{"original_text": "They all sing \"Happy Birthday\" to the girl.", "album_id": "72157594530445108", "photo_flickr_id": "387162432", "setting": "last-3-pick-old-and-tell", "worker_id": "XD2SWWLV77VINHX", "story_id": "46279", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they all sing `` happy birthday '' to the girl .", "storylet_id": "231398"}], [{"original_text": "She makes a wish before blowing out the candles.", "album_id": "72157594530445108", "photo_flickr_id": "387162790", "setting": "last-3-pick-old-and-tell", "worker_id": "XD2SWWLV77VINHX", "story_id": "46279", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she makes a wish before blowing out the candles .", "storylet_id": "231399"}], [{"original_text": "We had a party at my place.", "album_id": "72157600872071738", "photo_flickr_id": "838839789", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46280", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a party at my place .", "storylet_id": "231400"}], [{"original_text": "There was a lot of drinking.", "album_id": "72157600872071738", "photo_flickr_id": "839707124", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46280", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of drinking .", "storylet_id": "231401"}], [{"original_text": "And a lot of silly photos.", "album_id": "72157600872071738", "photo_flickr_id": "839712180", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46280", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and a lot of silly photos .", "storylet_id": "231402"}], [{"original_text": "We drank a little too much.", "album_id": "72157600872071738", "photo_flickr_id": "839713476", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46280", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we drank a little too much .", "storylet_id": "231403"}], [{"original_text": "But it was overall a good time.", "album_id": "72157600872071738", "photo_flickr_id": "838837247", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46280", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but it was overall a good time .", "storylet_id": "231404"}], [{"original_text": "At first I was a bit worried about the company party having a luau theme.", "album_id": "72157600872071738", "photo_flickr_id": "839713476", "setting": "first-2-pick-and-tell", "worker_id": "XYGXH4NOC4LG1VB", "story_id": "46281", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at first i was a bit worried about the company party having a luau theme .", "storylet_id": "231405"}], [{"original_text": "But the drinks had silly little umbrellas. ", "album_id": "72157600872071738", "photo_flickr_id": "838839789", "setting": "first-2-pick-and-tell", "worker_id": "XYGXH4NOC4LG1VB", "story_id": "46281", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but the drinks had silly little umbrellas .", "storylet_id": "231406"}], [{"original_text": "And I'm not sure how Harry Potter relates to a luau theme, but the drinks were great. ", "album_id": "72157600872071738", "photo_flickr_id": "838843083", "setting": "first-2-pick-and-tell", "worker_id": "XYGXH4NOC4LG1VB", "story_id": "46281", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and i 'm not sure how [male] potter relates to a luau theme , but the drinks were great .", "storylet_id": "231407"}], [{"original_text": "To liven things up I pretended to eat a lizard, I think I may have had too many of those umbrella drinks. ", "album_id": "72157600872071738", "photo_flickr_id": "839709540", "setting": "first-2-pick-and-tell", "worker_id": "XYGXH4NOC4LG1VB", "story_id": "46281", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to liven things up i pretended to eat a lizard , i think i may have had too many of those umbrella drinks .", "storylet_id": "231408"}], [{"original_text": "In the end, after some good food and drinking, the party was a hit. ", "album_id": "72157600872071738", "photo_flickr_id": "838840711", "setting": "first-2-pick-and-tell", "worker_id": "XYGXH4NOC4LG1VB", "story_id": "46281", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , after some good food and drinking , the party was a hit .", "storylet_id": "231409"}], [{"original_text": "The night started off slow enough. Everyone sat around chatting.", "album_id": "72157600872071738", "photo_flickr_id": "839713476", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "46282", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the night started off slow enough . everyone sat around chatting .", "storylet_id": "231410"}], [{"original_text": "Then the drinks came out and things started to get a bit hairy.", "album_id": "72157600872071738", "photo_flickr_id": "838839789", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "46282", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then the drinks came out and things started to get a bit hairy .", "storylet_id": "231411"}], [{"original_text": "After a few drinks, the girl started picking things up randomly and demanding to be photographed with them.", "album_id": "72157600872071738", "photo_flickr_id": "838843083", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "46282", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after a few drinks , the girl started picking things up randomly and demanding to be photographed with them .", "storylet_id": "231412"}], [{"original_text": "After a few more drinks, she tried to eat a frog. She passed out after that.", "album_id": "72157600872071738", "photo_flickr_id": "839709540", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "46282", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a few more drinks , she tried to eat a frog . she passed out after that .", "storylet_id": "231413"}], [{"original_text": "The next night, it started all over again.", "album_id": "72157600872071738", "photo_flickr_id": "838840711", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "46282", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the next night , it started all over again .", "storylet_id": "231414"}], [{"original_text": "I had a lot to drink at the party last night.", "album_id": "72157600872071738", "photo_flickr_id": "838839789", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46283", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a lot to drink at the party last night .", "storylet_id": "231415"}], [{"original_text": "There were a lot of people there.", "album_id": "72157600872071738", "photo_flickr_id": "839707124", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46283", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people there .", "storylet_id": "231416"}], [{"original_text": "I took pictures with all of them.", "album_id": "72157600872071738", "photo_flickr_id": "839712180", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46283", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took pictures with all of them .", "storylet_id": "231417"}], [{"original_text": "After a few hours I was feeling really tired and sat down.", "album_id": "72157600872071738", "photo_flickr_id": "839713476", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46283", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a few hours i was feeling really tired and sat down .", "storylet_id": "231418"}], [{"original_text": "I think I may have had too much to drink.", "album_id": "72157600872071738", "photo_flickr_id": "838837247", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46283", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think i may have had too much to drink .", "storylet_id": "231419"}], [{"original_text": "Another day, another party. I was getting sick of these things, but I wouldn't let anyone know.", "album_id": "72157600872071738", "photo_flickr_id": "838839789", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZI4DXJ0ZJ5U63Y", "story_id": "46284", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "another day , another party . i was getting sick of these things , but i would n't let anyone know .", "storylet_id": "231420"}], [{"original_text": "Most of the other guests didn't want to come anymore, so we had to invite total strangers.", "album_id": "72157600872071738", "photo_flickr_id": "839707124", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZI4DXJ0ZJ5U63Y", "story_id": "46284", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "most of the other guests did n't want to come anymore , so we had to invite total strangers .", "storylet_id": "231421"}], [{"original_text": "I don't know who this woman is. She smells like toenails but I have to keep smiling.", "album_id": "72157600872071738", "photo_flickr_id": "839712180", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZI4DXJ0ZJ5U63Y", "story_id": "46284", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i do n't know who this woman is . she smells like toenails but i have to keep smiling .", "storylet_id": "231422"}], [{"original_text": "I almost broke down. But my parents kept me going.", "album_id": "72157600872071738", "photo_flickr_id": "839713476", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZI4DXJ0ZJ5U63Y", "story_id": "46284", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i almost broke down . but my parents kept me going .", "storylet_id": "231423"}], [{"original_text": "Please, if someone is reading this, send help. I don't want to party anymore. I can only fake this smile for so long.", "album_id": "72157600872071738", "photo_flickr_id": "838837247", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZI4DXJ0ZJ5U63Y", "story_id": "46284", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "please , if someone is reading this , send help . i do n't want to party anymore . i can only fake this smile for so long .", "storylet_id": "231424"}], [{"original_text": "Repairs and renovations were needed for the RV.", "album_id": "72157625837785063", "photo_flickr_id": "5411560428", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "46285", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "repairs and renovations were needed for the rv .", "storylet_id": "231425"}], [{"original_text": "The inside was fine, however, and was very cozy.", "album_id": "72157625837785063", "photo_flickr_id": "5411561802", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "46285", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the inside was fine , however , and was very cozy .", "storylet_id": "231426"}], [{"original_text": "In fact, it was very fancy! ", "album_id": "72157625837785063", "photo_flickr_id": "5411562094", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "46285", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in fact , it was very fancy !", "storylet_id": "231427"}], [{"original_text": "But outside needed some tender-loving care.", "album_id": "72157625837785063", "photo_flickr_id": "5411563496", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "46285", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but outside needed some tender-loving care .", "storylet_id": "231428"}], [{"original_text": "Work continues, but is nearing completion!", "album_id": "72157625837785063", "photo_flickr_id": "5410951049", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "46285", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "work continues , but is nearing completion !", "storylet_id": "231429"}], [{"original_text": "The man had contracted for a job on an RV.", "album_id": "72157625837785063", "photo_flickr_id": "5410947939", "setting": "first-2-pick-and-tell", "worker_id": "M6GYOWAFH8VMXOJ", "story_id": "46286", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man had contracted for a job on an rv .", "storylet_id": "231430"}], [{"original_text": "The RV was incredibly extravagant.", "album_id": "72157625837785063", "photo_flickr_id": "5410948269", "setting": "first-2-pick-and-tell", "worker_id": "M6GYOWAFH8VMXOJ", "story_id": "46286", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rv was incredibly extravagant .", "storylet_id": "231431"}], [{"original_text": "Its most extravagant piece was the a very expensive lamp.", "album_id": "72157625837785063", "photo_flickr_id": "5411562880", "setting": "first-2-pick-and-tell", "worker_id": "M6GYOWAFH8VMXOJ", "story_id": "46286", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "its most extravagant piece was the a very expensive lamp .", "storylet_id": "231432"}], [{"original_text": "The workers opened the side of the bus exposing the underpanels.", "album_id": "72157625837785063", "photo_flickr_id": "5411563208", "setting": "first-2-pick-and-tell", "worker_id": "M6GYOWAFH8VMXOJ", "story_id": "46286", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the workers opened the side of the bus exposing the underpanels .", "storylet_id": "231433"}], [{"original_text": "One of the workers patched the back windows with tape.", "album_id": "72157625837785063", "photo_flickr_id": "5410951049", "setting": "first-2-pick-and-tell", "worker_id": "M6GYOWAFH8VMXOJ", "story_id": "46286", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of the workers patched the back windows with tape .", "storylet_id": "231434"}], [{"original_text": "The inside of the RV was modified a lot. ", "album_id": "72157625837785063", "photo_flickr_id": "5411560428", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46287", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the inside of the rv was modified a lot .", "storylet_id": "231435"}], [{"original_text": "Wood paneling, granite counter tops, lighting fixtures and padded seating were all installed. ", "album_id": "72157625837785063", "photo_flickr_id": "5411561802", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46287", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "wood paneling , granite counter tops , lighting fixtures and padded seating were all installed .", "storylet_id": "231436"}], [{"original_text": "This renovations seemed to open up a lot of space. ", "album_id": "72157625837785063", "photo_flickr_id": "5411562094", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46287", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this renovations seemed to open up a lot of space .", "storylet_id": "231437"}], [{"original_text": "The outside of it was left relatively unchanged.", "album_id": "72157625837785063", "photo_flickr_id": "5411563496", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46287", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the outside of it was left relatively unchanged .", "storylet_id": "231438"}], [{"original_text": "However, the windows were covered before the big reveal. ", "album_id": "72157625837785063", "photo_flickr_id": "5410951049", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46287", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , the windows were covered before the big reveal .", "storylet_id": "231439"}], [{"original_text": "I went to visit a friend who runs a luxury vehicle company.", "album_id": "72157625837785063", "photo_flickr_id": "5411560428", "setting": "last-3-pick-old-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "46288", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to visit a friend who runs a luxury vehicle company .", "storylet_id": "231440"}], [{"original_text": "I asked to step inside and saw the amazing interior.", "album_id": "72157625837785063", "photo_flickr_id": "5411561802", "setting": "last-3-pick-old-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "46288", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i asked to step inside and saw the amazing interior .", "storylet_id": "231441"}], [{"original_text": "This is perfect for travel, it comes with all the comforts of home.", "album_id": "72157625837785063", "photo_flickr_id": "5411562094", "setting": "last-3-pick-old-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "46288", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is perfect for travel , it comes with all the comforts of home .", "storylet_id": "231442"}], [{"original_text": "The outside is nothing compared to the inside.", "album_id": "72157625837785063", "photo_flickr_id": "5411563496", "setting": "last-3-pick-old-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "46288", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the outside is nothing compared to the inside .", "storylet_id": "231443"}], [{"original_text": "Here's an employee attaching a new detail to the side.", "album_id": "72157625837785063", "photo_flickr_id": "5410951049", "setting": "last-3-pick-old-and-tell", "worker_id": "JA835R3AEMGS6TI", "story_id": "46288", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's an employee attaching a new detail to the side .", "storylet_id": "231444"}], [{"original_text": "On a tour of an RV manufacturer. Here this guy is making the final touches to the front end of this large motorhome.", "album_id": "72157625837785063", "photo_flickr_id": "5411560428", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46289", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on a tour of an rv manufacturer . here this guy is making the final touches to the front end of this large motorhome .", "storylet_id": "231445"}], [{"original_text": "This worker is giving the tour of the inside. He points to some areas that were quality control checked for defects.", "album_id": "72157625837785063", "photo_flickr_id": "5411561802", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46289", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this worker is giving the tour of the inside . he points to some areas that were quality control checked for defects .", "storylet_id": "231446"}], [{"original_text": "Here is a view from the front of the coach facing the back. It is very spacious.", "album_id": "72157625837785063", "photo_flickr_id": "5411562094", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46289", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is a view from the front of the coach facing the back . it is very spacious .", "storylet_id": "231447"}], [{"original_text": "Here's another photo of the entire motorhome showing the open undercarriage compartment space.", "album_id": "72157625837785063", "photo_flickr_id": "5411563496", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46289", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's another photo of the entire motorhome showing the open undercarriage compartment space .", "storylet_id": "231448"}], [{"original_text": "This guy was taping up the windows to make some final touches to the decals on the side of the motorhome.", "album_id": "72157625837785063", "photo_flickr_id": "5410951049", "setting": "last-3-pick-old-and-tell", "worker_id": "G2QALV8E3NJ66VE", "story_id": "46289", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this guy was taping up the windows to make some final touches to the decals on the side of the motorhome .", "storylet_id": "231449"}], [{"original_text": "I went to a dress up party at my dorm where people were asked to look different.", "album_id": "72157625966685320", "photo_flickr_id": "5412905750", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46290", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a dress up party at my dorm where people were asked to look different .", "storylet_id": "231450"}], [{"original_text": "A freind of mine wore a fox mask with fur around her shoulders.", "album_id": "72157625966685320", "photo_flickr_id": "5412909914", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46290", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a freind of mine wore a fox mask with fur around her shoulders .", "storylet_id": "231451"}], [{"original_text": "These 3 did a great job with just a little face paint and a few wearables.", "album_id": "72157625966685320", "photo_flickr_id": "5412316555", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46290", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these 3 did a great job with just a little face paint and a few wearables .", "storylet_id": "231452"}], [{"original_text": "This was the cutest couple at the event, they were so great together.", "album_id": "72157625966685320", "photo_flickr_id": "5412334925", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46290", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was the cutest couple at the event , they were so great together .", "storylet_id": "231453"}], [{"original_text": "My freind Jake was the person who took all the pictures, I was upset he didn't dress up himself.", "album_id": "72157625966685320", "photo_flickr_id": "5412346443", "setting": "first-2-pick-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "46290", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my freind [male] was the person who took all the pictures , i was upset he did n't dress up himself .", "storylet_id": "231454"}], [{"original_text": "Guests arrive for the costume party, and mingle with their friends.", "album_id": "72157625966685320", "photo_flickr_id": "5412901168", "setting": "first-2-pick-and-tell", "worker_id": "0OPT75RMMO1EHXO", "story_id": "46291", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "guests arrive for the costume party , and mingle with their friends .", "storylet_id": "231455"}], [{"original_text": "A guest dressed as a fox tries to lure-in another party goer. ", "album_id": "72157625966685320", "photo_flickr_id": "5412303941", "setting": "first-2-pick-and-tell", "worker_id": "0OPT75RMMO1EHXO", "story_id": "46291", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a guest dressed as a fox tries to lure-in another party goer .", "storylet_id": "231456"}], [{"original_text": "The photographer arrives and checks his camera for quality.", "album_id": "72157625966685320", "photo_flickr_id": "5412954052", "setting": "first-2-pick-and-tell", "worker_id": "0OPT75RMMO1EHXO", "story_id": "46291", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the photographer arrives and checks his camera for quality .", "storylet_id": "231457"}], [{"original_text": "He takes photos of the guests in their costumes, including a man dressed as a dog.", "album_id": "72157625966685320", "photo_flickr_id": "5412905750", "setting": "first-2-pick-and-tell", "worker_id": "0OPT75RMMO1EHXO", "story_id": "46291", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he takes photos of the guests in their costumes , including a man dressed as a dog .", "storylet_id": "231458"}], [{"original_text": "The fox is last to pose, and the final photo is captured.", "album_id": "72157625966685320", "photo_flickr_id": "5412909914", "setting": "first-2-pick-and-tell", "worker_id": "0OPT75RMMO1EHXO", "story_id": "46291", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fox is last to pose , and the final photo is captured .", "storylet_id": "231459"}], [{"original_text": "There was a costume contest today.", "album_id": "72157625966685320", "photo_flickr_id": "5412905750", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "46292", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a costume contest today .", "storylet_id": "231460"}], [{"original_text": "Some people dressed as animals this fox mask was cool.", "album_id": "72157625966685320", "photo_flickr_id": "5412909914", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "46292", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some people dressed as animals this fox mask was cool .", "storylet_id": "231461"}], [{"original_text": "There was even a blonde reindeer drinking a beverage.", "album_id": "72157625966685320", "photo_flickr_id": "5412316555", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "46292", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was even a blonde reindeer drinking a beverage .", "storylet_id": "231462"}], [{"original_text": "Two of the party goers said hi briefly and told each other they liked their costumes.", "album_id": "72157625966685320", "photo_flickr_id": "5412334925", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "46292", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two of the party goers said hi briefly and told each other they liked their costumes .", "storylet_id": "231463"}], [{"original_text": "The man that caught all the action was the photographer we hired to capture the event.", "album_id": "72157625966685320", "photo_flickr_id": "5412346443", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "46292", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the man that caught all the action was the photographer we hired to capture the event .", "storylet_id": "231464"}], [{"original_text": "This year's dorm Halloween party had a \"What does the fox say?\" theme. I dressed in a fox hat.", "album_id": "72157625966685320", "photo_flickr_id": "5412905750", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46293", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this year 's dorm halloween party had a `` what does the fox say ? '' theme . i dressed in a fox hat .", "storylet_id": "231465"}], [{"original_text": "My friend Talon found a great fox mask.", "album_id": "72157625966685320", "photo_flickr_id": "5412909914", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46293", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend talon found a great fox mask .", "storylet_id": "231466"}], [{"original_text": "Lizzie wore horns! I think she thought foxes had horns.", "album_id": "72157625966685320", "photo_flickr_id": "5412316555", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46293", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] wore horns ! i think she thought foxes had horns .", "storylet_id": "231467"}], [{"original_text": "Some people didn't stick to the theme, but they seemed to have fun anyway.", "album_id": "72157625966685320", "photo_flickr_id": "5412334925", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46293", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people did n't stick to the theme , but they seemed to have fun anyway .", "storylet_id": "231468"}], [{"original_text": "I took a lot of pictures, sneaking around to get them and being sly as a fox.", "album_id": "72157625966685320", "photo_flickr_id": "5412346443", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46293", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i took a lot of pictures , sneaking around to get them and being sly as a fox .", "storylet_id": "231469"}], [{"original_text": "The friends decided to have an animal themed party.", "album_id": "72157625966685320", "photo_flickr_id": "5412905750", "setting": "last-3-pick-old-and-tell", "worker_id": "1YRJXAQNC1V9QXR", "story_id": "46294", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends decided to have an animal themed party .", "storylet_id": "231470"}], [{"original_text": "Some of the costumes were very intricate.", "album_id": "72157625966685320", "photo_flickr_id": "5412909914", "setting": "last-3-pick-old-and-tell", "worker_id": "1YRJXAQNC1V9QXR", "story_id": "46294", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the costumes were very intricate .", "storylet_id": "231471"}], [{"original_text": "Some were more simple.", "album_id": "72157625966685320", "photo_flickr_id": "5412316555", "setting": "last-3-pick-old-and-tell", "worker_id": "1YRJXAQNC1V9QXR", "story_id": "46294", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some were more simple .", "storylet_id": "231472"}], [{"original_text": "Fun was had by single people and couples alike.", "album_id": "72157625966685320", "photo_flickr_id": "5412334925", "setting": "last-3-pick-old-and-tell", "worker_id": "1YRJXAQNC1V9QXR", "story_id": "46294", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fun was had by single people and couples alike .", "storylet_id": "231473"}], [{"original_text": "Memories were made and captured through pictures.", "album_id": "72157625966685320", "photo_flickr_id": "5412346443", "setting": "last-3-pick-old-and-tell", "worker_id": "1YRJXAQNC1V9QXR", "story_id": "46294", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "memories were made and captured through pictures .", "storylet_id": "231474"}], [{"original_text": "Everyone started walking towards the house where the party was being held.", "album_id": "72157626403967007", "photo_flickr_id": "5632661781", "setting": "first-2-pick-and-tell", "worker_id": "G694PGPGS4RNUEN", "story_id": "46295", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone started walking towards the house where the party was being held .", "storylet_id": "231475"}], [{"original_text": "Soon, the room filled up with all of them, and the sound of talking filled the room too.", "album_id": "72157626403967007", "photo_flickr_id": "5632581653", "setting": "first-2-pick-and-tell", "worker_id": "G694PGPGS4RNUEN", "story_id": "46295", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "soon , the room filled up with all of them , and the sound of talking filled the room too .", "storylet_id": "231476"}], [{"original_text": "In no time the DJ got set up and music was added to the background.", "album_id": "72157626403967007", "photo_flickr_id": "5633200836", "setting": "first-2-pick-and-tell", "worker_id": "G694PGPGS4RNUEN", "story_id": "46295", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in no time the dj got set up and music was added to the background .", "storylet_id": "231477"}], [{"original_text": "People started enjoying themselves immensely, and almost everyone ate and drank to liven up the fun.", "album_id": "72157626403967007", "photo_flickr_id": "5633153704", "setting": "first-2-pick-and-tell", "worker_id": "G694PGPGS4RNUEN", "story_id": "46295", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people started enjoying themselves immensely , and almost everyone ate and drank to liven up the fun .", "storylet_id": "231478"}], [{"original_text": "Unfortunately, there were a few people that drank too much, and some people passed out.", "album_id": "72157626403967007", "photo_flickr_id": "5632653877", "setting": "first-2-pick-and-tell", "worker_id": "G694PGPGS4RNUEN", "story_id": "46295", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "unfortunately , there were a few people that drank too much , and some people passed out .", "storylet_id": "231479"}], [{"original_text": "Toby and Mary are sitting on top of the fridge at the party.", "album_id": "72157626403967007", "photo_flickr_id": "5632560905", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46296", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] are sitting on top of the fridge at the party .", "storylet_id": "231480"}], [{"original_text": "Since it's a nice day, there are many people in the yard at the party.", "album_id": "72157626403967007", "photo_flickr_id": "5632581653", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46296", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "since it 's a nice day , there are many people in the yard at the party .", "storylet_id": "231481"}], [{"original_text": "The DJ is playing music for the party guests.", "album_id": "72157626403967007", "photo_flickr_id": "5633200836", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46296", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dj is playing music for the party guests .", "storylet_id": "231482"}], [{"original_text": "Toby is playing a joke on Mary at the party.", "album_id": "72157626403967007", "photo_flickr_id": "5632626737", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46296", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is playing a joke on [female] at the party .", "storylet_id": "231483"}], [{"original_text": "When the party is over, people are gathered outside to say goodbye. ", "album_id": "72157626403967007", "photo_flickr_id": "5632661781", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46296", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the party is over , people are gathered outside to say goodbye .", "storylet_id": "231484"}], [{"original_text": "The party was held at an interesting venue.", "album_id": "72157626403967007", "photo_flickr_id": "5632661781", "setting": "last-3-pick-old-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46297", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party was held at an interesting venue .", "storylet_id": "231485"}], [{"original_text": "The sound was good and there was plenty of open space.", "album_id": "72157626403967007", "photo_flickr_id": "5632581653", "setting": "last-3-pick-old-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46297", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sound was good and there was plenty of open space .", "storylet_id": "231486"}], [{"original_text": "The musicians entertained everyone for the evening.", "album_id": "72157626403967007", "photo_flickr_id": "5633200836", "setting": "last-3-pick-old-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46297", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the musicians entertained everyone for the evening .", "storylet_id": "231487"}], [{"original_text": "There was food and drink.", "album_id": "72157626403967007", "photo_flickr_id": "5633153704", "setting": "last-3-pick-old-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46297", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was food and drink .", "storylet_id": "231488"}], [{"original_text": "Some got a little tired from the events.", "album_id": "72157626403967007", "photo_flickr_id": "5632653877", "setting": "last-3-pick-old-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46297", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some got a little tired from the events .", "storylet_id": "231489"}], [{"original_text": "The actors celebrated the close of their play with a party.", "album_id": "72157626403967007", "photo_flickr_id": "5632661781", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46298", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the actors celebrated the close of their play with a party .", "storylet_id": "231490"}], [{"original_text": "About 50 people showed up for the party.", "album_id": "72157626403967007", "photo_flickr_id": "5632581653", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46298", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "about 50 people showed up for the party .", "storylet_id": "231491"}], [{"original_text": "Music was provided by a local DJ.", "album_id": "72157626403967007", "photo_flickr_id": "5633200836", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46298", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "music was provided by a local dj .", "storylet_id": "231492"}], [{"original_text": "Beer, wine, and mixed drinks were also provided.", "album_id": "72157626403967007", "photo_flickr_id": "5633153704", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46298", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "beer , wine , and mixed drinks were also provided .", "storylet_id": "231493"}], [{"original_text": "And, a few people had one too many drinks and needed to lie down.", "album_id": "72157626403967007", "photo_flickr_id": "5632653877", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46298", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , a few people had one too many drinks and needed to lie down .", "storylet_id": "231494"}], [{"original_text": "The old club was having a small show that night, and the turnout was bigger than expected.", "album_id": "72157626403967007", "photo_flickr_id": "5632661781", "setting": "last-3-pick-old-and-tell", "worker_id": "6Q2SR1BFEP6OUKO", "story_id": "46299", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old club was having a small show that night , and the turnout was bigger than expected .", "storylet_id": "231495"}], [{"original_text": "Many people mingled while the musicians set up.", "album_id": "72157626403967007", "photo_flickr_id": "5632581653", "setting": "last-3-pick-old-and-tell", "worker_id": "6Q2SR1BFEP6OUKO", "story_id": "46299", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people mingled while the musicians set up .", "storylet_id": "231496"}], [{"original_text": "There was even a DJ!", "album_id": "72157626403967007", "photo_flickr_id": "5633200836", "setting": "last-3-pick-old-and-tell", "worker_id": "6Q2SR1BFEP6OUKO", "story_id": "46299", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was even a dj !", "storylet_id": "231497"}], [{"original_text": "The gentlemen wore his favorite shirt to the show.", "album_id": "72157626403967007", "photo_flickr_id": "5633153704", "setting": "last-3-pick-old-and-tell", "worker_id": "6Q2SR1BFEP6OUKO", "story_id": "46299", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the gentlemen wore his favorite shirt to the show .", "storylet_id": "231498"}], [{"original_text": "Some people may have partied a little too hard, though.", "album_id": "72157626403967007", "photo_flickr_id": "5632653877", "setting": "last-3-pick-old-and-tell", "worker_id": "6Q2SR1BFEP6OUKO", "story_id": "46299", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people may have partied a little too hard , though .", "storylet_id": "231499"}], [{"original_text": "Here is Bill who is the host of the party.", "album_id": "72157627211702284", "photo_flickr_id": "5944641145", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "46300", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is [male] who is the host of the party .", "storylet_id": "231500"}], [{"original_text": "His kids are in the background playing with each other. ", "album_id": "72157627211702284", "photo_flickr_id": "5944641411", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "46300", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his kids are in the background playing with each other .", "storylet_id": "231501"}], [{"original_text": "His wife and sister is visible on the patio talking to each other. ", "album_id": "72157627211702284", "photo_flickr_id": "5945199844", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "46300", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his wife and sister is visible on the patio talking to each other .", "storylet_id": "231502"}], [{"original_text": "That is his brother Joe who is playing with his own son.", "album_id": "72157627211702284", "photo_flickr_id": "5945200148", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "46300", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that is his brother [male] who is playing with his own son .", "storylet_id": "231503"}], [{"original_text": "Bill goes back inside with everyone as it gets dark. ", "album_id": "72157627211702284", "photo_flickr_id": "5944644847", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "46300", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] goes back inside with everyone as it gets dark .", "storylet_id": "231504"}], [{"original_text": "One day a man and his wife decided to throw a house warming party for the new home they had just bought.", "album_id": "72157627211702284", "photo_flickr_id": "5944644847", "setting": "first-2-pick-and-tell", "worker_id": "POFUUHAN36UAYXZ", "story_id": "46301", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one day a man and his wife decided to throw a house warming party for the new home they had just bought .", "storylet_id": "231505"}], [{"original_text": "Both he and his wife invited old friends to enjoy the festivities.", "album_id": "72157627211702284", "photo_flickr_id": "5945199844", "setting": "first-2-pick-and-tell", "worker_id": "POFUUHAN36UAYXZ", "story_id": "46301", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "both he and his wife invited old friends to enjoy the festivities .", "storylet_id": "231506"}], [{"original_text": "It seemed however, that the children of all their friends were the ones who really enjoyed the party.", "album_id": "72157627211702284", "photo_flickr_id": "5944641411", "setting": "first-2-pick-and-tell", "worker_id": "POFUUHAN36UAYXZ", "story_id": "46301", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it seemed however , that the children of all their friends were the ones who really enjoyed the party .", "storylet_id": "231507"}], [{"original_text": "Since they got to play on the newly built playground set in the back yard.", "album_id": "72157627211702284", "photo_flickr_id": "5944641729", "setting": "first-2-pick-and-tell", "worker_id": "POFUUHAN36UAYXZ", "story_id": "46301", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "since they got to play on the newly built playground set in the back yard .", "storylet_id": "231508"}], [{"original_text": "Seeing the kids have so much fun even made some of the adults want to join in on the fun.", "album_id": "72157627211702284", "photo_flickr_id": "5945200148", "setting": "first-2-pick-and-tell", "worker_id": "POFUUHAN36UAYXZ", "story_id": "46301", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "seeing the kids have so much fun even made some of the adults want to join in on the fun .", "storylet_id": "231509"}], [{"original_text": "Having some friends and family over for some quality time.", "album_id": "72157627211702284", "photo_flickr_id": "5944644847", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46302", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "having some friends and family over for some quality time .", "storylet_id": "231510"}], [{"original_text": "These woman look very pleased to be taking this picture.", "album_id": "72157627211702284", "photo_flickr_id": "5945199844", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46302", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these woman look very pleased to be taking this picture .", "storylet_id": "231511"}], [{"original_text": "The kids are getting along great, are enjoying each other.", "album_id": "72157627211702284", "photo_flickr_id": "5944641411", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46302", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids are getting along great , are enjoying each other .", "storylet_id": "231512"}], [{"original_text": "They are swinging on swings and having a good time.", "album_id": "72157627211702284", "photo_flickr_id": "5944641729", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46302", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they are swinging on swings and having a good time .", "storylet_id": "231513"}], [{"original_text": "All the kids are gravitating to the tree playhouse area.", "album_id": "72157627211702284", "photo_flickr_id": "5945200148", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46302", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the kids are gravitating to the tree playhouse area .", "storylet_id": "231514"}], [{"original_text": "The men are waiting for the football game to begin.", "album_id": "72157627211702284", "photo_flickr_id": "5944644847", "setting": "last-3-pick-old-and-tell", "worker_id": "642AAHC37FS24JQ", "story_id": "46303", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the men are waiting for the football game to begin .", "storylet_id": "231515"}], [{"original_text": "These sisters are catching up after a few months apart.", "album_id": "72157627211702284", "photo_flickr_id": "5945199844", "setting": "last-3-pick-old-and-tell", "worker_id": "642AAHC37FS24JQ", "story_id": "46303", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these sisters are catching up after a few months apart .", "storylet_id": "231516"}], [{"original_text": "The cousins are catching up and enjoying each other. ", "album_id": "72157627211702284", "photo_flickr_id": "5944641411", "setting": "last-3-pick-old-and-tell", "worker_id": "642AAHC37FS24JQ", "story_id": "46303", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cousins are catching up and enjoying each other .", "storylet_id": "231517"}], [{"original_text": "They kids are having a great time on the swing set. ", "album_id": "72157627211702284", "photo_flickr_id": "5944641729", "setting": "last-3-pick-old-and-tell", "worker_id": "642AAHC37FS24JQ", "story_id": "46303", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they kids are having a great time on the swing set .", "storylet_id": "231518"}], [{"original_text": "Testing out some different playground equipment. ", "album_id": "72157627211702284", "photo_flickr_id": "5945200148", "setting": "last-3-pick-old-and-tell", "worker_id": "642AAHC37FS24JQ", "story_id": "46303", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "testing out some different playground equipment .", "storylet_id": "231519"}], [{"original_text": "All his family and friends are gathered at his house for a BBQ.", "album_id": "72157627211702284", "photo_flickr_id": "5944641145", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46304", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all his family and friends are gathered at his house for a bbq .", "storylet_id": "231520"}], [{"original_text": "There are adults and even little kids at the party.", "album_id": "72157627211702284", "photo_flickr_id": "5944641411", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46304", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are adults and even little kids at the party .", "storylet_id": "231521"}], [{"original_text": "The guests are mingling and chatting among themselves.", "album_id": "72157627211702284", "photo_flickr_id": "5945199844", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46304", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guests are mingling and chatting among themselves .", "storylet_id": "231522"}], [{"original_text": "There is a swing set in the backyard for the little kids to play on. ", "album_id": "72157627211702284", "photo_flickr_id": "5945200148", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46304", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there is a swing set in the backyard for the little kids to play on .", "storylet_id": "231523"}], [{"original_text": "When it gets too hot outside, the guests go to the living room to talk. ", "album_id": "72157627211702284", "photo_flickr_id": "5944644847", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46304", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when it gets too hot outside , the guests go to the living room to talk .", "storylet_id": "231524"}], [{"original_text": "The part goers were wild and exciting.", "album_id": "72157629900151022", "photo_flickr_id": "7271684152", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46305", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the part goers were wild and exciting .", "storylet_id": "231525"}], [{"original_text": "The venue was decorated with interesting pictures.", "album_id": "72157629900151022", "photo_flickr_id": "7271676642", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46305", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the venue was decorated with interesting pictures .", "storylet_id": "231526"}], [{"original_text": "There were bright lights throughout.", "album_id": "72157629900151022", "photo_flickr_id": "7271669642", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46305", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were bright lights throughout .", "storylet_id": "231527"}], [{"original_text": "It was a night for dancing.", "album_id": "72157629900151022", "photo_flickr_id": "7271667136", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46305", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a night for dancing .", "storylet_id": "231528"}], [{"original_text": "Some posed by a drink dispenser.", "album_id": "72157629900151022", "photo_flickr_id": "7271658472", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46305", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some posed by a drink dispenser .", "storylet_id": "231529"}], [{"original_text": "It was Blake's birthday so they took him out to a club.", "album_id": "72157629900151022", "photo_flickr_id": "7271681018", "setting": "first-2-pick-and-tell", "worker_id": "X95Y0LFMO9I4QHC", "story_id": "46306", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was [male] 's birthday so they took him out to a club .", "storylet_id": "231530"}], [{"original_text": "Most of his friends showed up.", "album_id": "72157629900151022", "photo_flickr_id": "7271676642", "setting": "first-2-pick-and-tell", "worker_id": "X95Y0LFMO9I4QHC", "story_id": "46306", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "most of his friends showed up .", "storylet_id": "231531"}], [{"original_text": "Even his brother John came.", "album_id": "72157629900151022", "photo_flickr_id": "7271671900", "setting": "first-2-pick-and-tell", "worker_id": "X95Y0LFMO9I4QHC", "story_id": "46306", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even his brother [male] came .", "storylet_id": "231532"}], [{"original_text": "Maria's ex showed up and caused a scene.", "album_id": "72157629900151022", "photo_flickr_id": "7271658472", "setting": "first-2-pick-and-tell", "worker_id": "X95Y0LFMO9I4QHC", "story_id": "46306", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] 's ex showed up and caused a scene .", "storylet_id": "231533"}], [{"original_text": "All in all, it was a great night for Blake.", "album_id": "72157629900151022", "photo_flickr_id": "7271665048", "setting": "first-2-pick-and-tell", "worker_id": "X95Y0LFMO9I4QHC", "story_id": "46306", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all in all , it was a great night for [male] .", "storylet_id": "231534"}], [{"original_text": "I was surprised, to say the least, when my friends threw me a surprise party.", "album_id": "72157629900151022", "photo_flickr_id": "7271681018", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "46307", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was surprised , to say the least , when my friends threw me a surprise party .", "storylet_id": "231535"}], [{"original_text": "That's me in the middle with my pals who came from another state to attend the festivities.", "album_id": "72157629900151022", "photo_flickr_id": "7271676642", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "46307", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that 's me in the middle with my pals who came from another state to attend the festivities .", "storylet_id": "231536"}], [{"original_text": "These guys work with me. I was so happy to see them there. ", "album_id": "72157629900151022", "photo_flickr_id": "7271671900", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "46307", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these guys work with me . i was so happy to see them there .", "storylet_id": "231537"}], [{"original_text": "You can see the colored lights in back at the club where the party was held. This guy looks as surprised as me.", "album_id": "72157629900151022", "photo_flickr_id": "7271658472", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "46307", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you can see the colored lights in back at the club where the party was held . this guy looks as surprised as me .", "storylet_id": "231538"}], [{"original_text": "That's me and my roommate. His red hair seemed to match the lively mood! ", "album_id": "72157629900151022", "photo_flickr_id": "7271665048", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "46307", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that 's me and my roommate . his red hair seemed to match the lively mood !", "storylet_id": "231539"}], [{"original_text": "Tonight we RAVE.", "album_id": "72157629900151022", "photo_flickr_id": "7271684152", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46308", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "tonight we rave .", "storylet_id": "231540"}], [{"original_text": "All of the cool kids are out in their best fashion.", "album_id": "72157629900151022", "photo_flickr_id": "7271676642", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46308", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the cool kids are out in their best fashion .", "storylet_id": "231541"}], [{"original_text": "There are bright lights and cute cocktails!", "album_id": "72157629900151022", "photo_flickr_id": "7271669642", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46308", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are bright lights and cute cocktails !", "storylet_id": "231542"}], [{"original_text": "Everyone is having a great time.", "album_id": "72157629900151022", "photo_flickr_id": "7271667136", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46308", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone is having a great time .", "storylet_id": "231543"}], [{"original_text": "Mike needs a drink.", "album_id": "72157629900151022", "photo_flickr_id": "7271658472", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46308", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] needs a drink .", "storylet_id": "231544"}], [{"original_text": "The group of friends arrived to the dance party. ", "album_id": "72157629900151022", "photo_flickr_id": "7271684152", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46309", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group of friends arrived to the dance party .", "storylet_id": "231545"}], [{"original_text": "Once everyone arrived they all greeted each other. ", "album_id": "72157629900151022", "photo_flickr_id": "7271676642", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46309", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once everyone arrived they all greeted each other .", "storylet_id": "231546"}], [{"original_text": "They started with having a few drinks.", "album_id": "72157629900151022", "photo_flickr_id": "7271669642", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46309", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they started with having a few drinks .", "storylet_id": "231547"}], [{"original_text": "Then they went to the dance floor to start dancing.", "album_id": "72157629900151022", "photo_flickr_id": "7271667136", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46309", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they went to the dance floor to start dancing .", "storylet_id": "231548"}], [{"original_text": "At the end of the night not everyone was having a good time.", "album_id": "72157629900151022", "photo_flickr_id": "7271658472", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46309", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night not everyone was having a good time .", "storylet_id": "231549"}], [{"original_text": "It was crowded at the wrestling match.", "album_id": "72157632548092471", "photo_flickr_id": "8392280254", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46310", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was crowded at the wrestling match .", "storylet_id": "231550"}], [{"original_text": "It was so hot and loud.", "album_id": "72157632548092471", "photo_flickr_id": "8392285402", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46310", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was so hot and loud .", "storylet_id": "231551"}], [{"original_text": "There were many different wrestlers there.", "album_id": "72157632548092471", "photo_flickr_id": "8392277214", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46310", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many different wrestlers there .", "storylet_id": "231552"}], [{"original_text": "The wrestlers performed may tricks.", "album_id": "72157632548092471", "photo_flickr_id": "8392279026", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46310", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wrestlers performed may tricks .", "storylet_id": "231553"}], [{"original_text": "The best part was the ring girls.", "album_id": "72157632548092471", "photo_flickr_id": "8391196195", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46310", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part was the ring girls .", "storylet_id": "231554"}], [{"original_text": "Mexican wrestling shows are always an entertaining event to attend.", "album_id": "72157632548092471", "photo_flickr_id": "8392287276", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46311", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mexican wrestling shows are always an entertaining event to attend .", "storylet_id": "231555"}], [{"original_text": "The wrestlers come out to the ring in exciting and entertaining costumes.", "album_id": "72157632548092471", "photo_flickr_id": "8391191245", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46311", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wrestlers come out to the ring in exciting and entertaining costumes .", "storylet_id": "231556"}], [{"original_text": "They also each have an entertaining persona.", "album_id": "72157632548092471", "photo_flickr_id": "8392278562", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46311", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also each have an entertaining persona .", "storylet_id": "231557"}], [{"original_text": "The match is exciting, with lots of high flying acrobatics.", "album_id": "72157632548092471", "photo_flickr_id": "8392278752", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46311", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the match is exciting , with lots of high flying acrobatics .", "storylet_id": "231558"}], [{"original_text": "And there's also plenty of eye candy for the men in the crowd.", "album_id": "72157632548092471", "photo_flickr_id": "8392280548", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46311", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and there 's also plenty of eye candy for the men in the crowd .", "storylet_id": "231559"}], [{"original_text": "The people gathered to enjoy some professional wrestling. ", "album_id": "72157632548092471", "photo_flickr_id": "8392280254", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46312", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people gathered to enjoy some professional wrestling .", "storylet_id": "231560"}], [{"original_text": "The crowd was full of energy. ", "album_id": "72157632548092471", "photo_flickr_id": "8392285402", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46312", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd was full of energy .", "storylet_id": "231561"}], [{"original_text": "The vibrant characters made the show very exciting. ", "album_id": "72157632548092471", "photo_flickr_id": "8392277214", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46312", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the vibrant characters made the show very exciting .", "storylet_id": "231562"}], [{"original_text": "Their advanced moves in the ring kept the crowd entertained. ", "album_id": "72157632548092471", "photo_flickr_id": "8392279026", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46312", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their advanced moves in the ring kept the crowd entertained .", "storylet_id": "231563"}], [{"original_text": "The fans were very pleased with the show. ", "album_id": "72157632548092471", "photo_flickr_id": "8391196195", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46312", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fans were very pleased with the show .", "storylet_id": "231564"}], [{"original_text": "There was a lot of people at the wrestling match today.", "album_id": "72157632548092471", "photo_flickr_id": "8392280254", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "46313", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a lot of people at the wrestling match today .", "storylet_id": "231565"}], [{"original_text": "The crowds were loud as they cheered their favorites. ", "album_id": "72157632548092471", "photo_flickr_id": "8392285402", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "46313", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowds were loud as they cheered their favorites .", "storylet_id": "231566"}], [{"original_text": "The first fighter came out in a silver mask and cape.", "album_id": "72157632548092471", "photo_flickr_id": "8392277214", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "46313", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first fighter came out in a silver mask and cape .", "storylet_id": "231567"}], [{"original_text": "His opponent was large, and quite skilled. ", "album_id": "72157632548092471", "photo_flickr_id": "8392279026", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "46313", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his opponent was large , and quite skilled .", "storylet_id": "231568"}], [{"original_text": "One of the girls came out to help stir up the crowd. ", "album_id": "72157632548092471", "photo_flickr_id": "8391196195", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "46313", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of the girls came out to help stir up the crowd .", "storylet_id": "231569"}], [{"original_text": "Many people gathered to watch luchador wrestling.", "album_id": "72157632548092471", "photo_flickr_id": "8392280254", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46314", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people gathered to watch luchador wrestling .", "storylet_id": "231570"}], [{"original_text": "The crowd was in excitement at the begging of the match.", "album_id": "72157632548092471", "photo_flickr_id": "8392285402", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46314", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd was in excitement at the begging of the match .", "storylet_id": "231571"}], [{"original_text": "The wrestlers came out to the ring one by one.", "album_id": "72157632548092471", "photo_flickr_id": "8392277214", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46314", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the wrestlers came out to the ring one by one .", "storylet_id": "231572"}], [{"original_text": "When the match started, they performed impressive moves.", "album_id": "72157632548092471", "photo_flickr_id": "8392279026", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46314", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the match started , they performed impressive moves .", "storylet_id": "231573"}], [{"original_text": "The matches even had a ring girl in between matches.", "album_id": "72157632548092471", "photo_flickr_id": "8391196195", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46314", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the matches even had a ring girl in between matches .", "storylet_id": "231574"}], [{"original_text": "Each year the USO club holds a birthday celebrating the USO anniversary.", "album_id": "72157632806954073", "photo_flickr_id": "8491725384", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46315", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "each year the organization club holds a birthday celebrating the uso anniversary .", "storylet_id": "231575"}], [{"original_text": "The venue is always outfitted with plenty of red, white and blue decorations.", "album_id": "72157632806954073", "photo_flickr_id": "8490623803", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46315", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the venue is always outfitted with plenty of red , white and blue decorations .", "storylet_id": "231576"}], [{"original_text": "A beautiful cake is also baked to celebrate.", "album_id": "72157632806954073", "photo_flickr_id": "8491733536", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46315", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a beautiful cake is also baked to celebrate .", "storylet_id": "231577"}], [{"original_text": "Veterans and members of the armed forces will often give speeches.", "album_id": "72157632806954073", "photo_flickr_id": "8490634097", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46315", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "veterans and members of the armed forces will often give speeches .", "storylet_id": "231578"}], [{"original_text": "Many people come out for the event and it reminds us of the importance of our armed forces and veterans.", "album_id": "72157632806954073", "photo_flickr_id": "8490641683", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46315", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many people come out for the event and it reminds us of the importance of our armed forces and veterans .", "storylet_id": "231579"}], [{"original_text": "The group had a celebration among themselves.", "album_id": "72157632806954073", "photo_flickr_id": "8491725384", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46316", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group had a celebration among themselves .", "storylet_id": "231580"}], [{"original_text": "The room was decorated with balloons and ribbons.", "album_id": "72157632806954073", "photo_flickr_id": "8491718466", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46316", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the room was decorated with balloons and ribbons .", "storylet_id": "231581"}], [{"original_text": "The cake was enjoyed by all.", "album_id": "72157632806954073", "photo_flickr_id": "8491733536", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46316", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cake was enjoyed by all .", "storylet_id": "231582"}], [{"original_text": "And there was plenty of food.", "album_id": "72157632806954073", "photo_flickr_id": "8490639509", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46316", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and there was plenty of food .", "storylet_id": "231583"}], [{"original_text": "A few antics were performed to entertain the crowd.", "album_id": "72157632806954073", "photo_flickr_id": "8491737774", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46316", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a few antics were performed to entertain the crowd .", "storylet_id": "231584"}], [{"original_text": "It was somebody's birthday, and they threw a party.", "album_id": "72157632806954073", "photo_flickr_id": "8491725384", "setting": "last-3-pick-old-and-tell", "worker_id": "351958JM3YVRMQL", "story_id": "46317", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was somebody 's birthday , and they threw a party .", "storylet_id": "231585"}], [{"original_text": "Not just any party.", "album_id": "72157632806954073", "photo_flickr_id": "8490623803", "setting": "last-3-pick-old-and-tell", "worker_id": "351958JM3YVRMQL", "story_id": "46317", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "not just any party .", "storylet_id": "231586"}], [{"original_text": "It was a special birthday part for the USO.", "album_id": "72157632806954073", "photo_flickr_id": "8491733536", "setting": "last-3-pick-old-and-tell", "worker_id": "351958JM3YVRMQL", "story_id": "46317", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a special birthday part for the organization .", "storylet_id": "231587"}], [{"original_text": "A man in his army gear gave a speech, and everyone listened.", "album_id": "72157632806954073", "photo_flickr_id": "8490634097", "setting": "last-3-pick-old-and-tell", "worker_id": "351958JM3YVRMQL", "story_id": "46317", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a man in his army gear gave a speech , and everyone listened .", "storylet_id": "231588"}], [{"original_text": "It was a humbling experience.", "album_id": "72157632806954073", "photo_flickr_id": "8490641683", "setting": "last-3-pick-old-and-tell", "worker_id": "351958JM3YVRMQL", "story_id": "46317", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a humbling experience .", "storylet_id": "231589"}], [{"original_text": "A birthday party was throw for the USO.", "album_id": "72157632806954073", "photo_flickr_id": "8491725384", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46318", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a birthday party was throw for the organization .", "storylet_id": "231590"}], [{"original_text": "First everyone put up decorations for the party.", "album_id": "72157632806954073", "photo_flickr_id": "8490623803", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46318", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first everyone put up decorations for the party .", "storylet_id": "231591"}], [{"original_text": "Then the cake was brought out for everyone to eat.", "album_id": "72157632806954073", "photo_flickr_id": "8491733536", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46318", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the cake was brought out for everyone to eat .", "storylet_id": "231592"}], [{"original_text": "After that there was a speech given for everyone.", "album_id": "72157632806954073", "photo_flickr_id": "8490634097", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46318", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that there was a speech given for everyone .", "storylet_id": "231593"}], [{"original_text": "At the end of the party every one gathered for a group photo.", "album_id": "72157632806954073", "photo_flickr_id": "8490641683", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46318", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the party every one gathered for a group photo .", "storylet_id": "231594"}], [{"original_text": "It was a nice day for a party for the USO.", "album_id": "72157632806954073", "photo_flickr_id": "8491725384", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "46319", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a nice day for a party for the organization .", "storylet_id": "231595"}], [{"original_text": "The decorating crew felt they did a great job livening up the place.", "album_id": "72157632806954073", "photo_flickr_id": "8490623803", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "46319", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the decorating crew felt they did a great job livening up the place .", "storylet_id": "231596"}], [{"original_text": "A delicious cake is essential to any party.", "album_id": "72157632806954073", "photo_flickr_id": "8491733536", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "46319", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a delicious cake is essential to any party .", "storylet_id": "231597"}], [{"original_text": "He compliments the cake and gestures for the others to admire it as well.", "album_id": "72157632806954073", "photo_flickr_id": "8490634097", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "46319", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he compliments the cake and gestures for the others to admire it as well .", "storylet_id": "231598"}], [{"original_text": "A quick group photo makes a memory you can frame.", "album_id": "72157632806954073", "photo_flickr_id": "8490641683", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "46319", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a quick group photo makes a memory you can frame .", "storylet_id": "231599"}], [{"original_text": "St. Patty's Day is always a fun celebration in the city.", "album_id": "72157633184822264", "photo_flickr_id": "8627047156", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46320", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "st. [female] 's day is always a fun celebration in the city .", "storylet_id": "231600"}], [{"original_text": "This restaurant always gathers a large crowd.", "album_id": "72157633184822264", "photo_flickr_id": "8627048120", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46320", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this restaurant always gathers a large crowd .", "storylet_id": "231601"}], [{"original_text": "The food is very delicious and the menu is large.", "album_id": "72157633184822264", "photo_flickr_id": "8627049322", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46320", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food is very delicious and the menu is large .", "storylet_id": "231602"}], [{"original_text": "After dinner, the drinks are poured and the partying begins.", "album_id": "72157633184822264", "photo_flickr_id": "8627050620", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46320", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after dinner , the drinks are poured and the partying begins .", "storylet_id": "231603"}], [{"original_text": "By the end of the night, most everyone is drunk and dancing.", "album_id": "72157633184822264", "photo_flickr_id": "8627053398", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46320", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of the night , most everyone is drunk and dancing .", "storylet_id": "231604"}], [{"original_text": "I went to Hector's birthday party yesterday.", "album_id": "72157633184822264", "photo_flickr_id": "8627048542", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46321", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to [male] 's birthday party yesterday .", "storylet_id": "231605"}], [{"original_text": "It was also a St. Patrick's Day.", "album_id": "72157633184822264", "photo_flickr_id": "8627047156", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46321", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was also a st. [male] 's day .", "storylet_id": "231606"}], [{"original_text": "Hector got a cell phone for a birthday present.", "album_id": "72157633184822264", "photo_flickr_id": "8625937837", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46321", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] got a cell phone for a birthday present .", "storylet_id": "231607"}], [{"original_text": "Hectors close friends were there.", "album_id": "72157633184822264", "photo_flickr_id": "8627047920", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46321", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "hectors close friends were there .", "storylet_id": "231608"}], [{"original_text": "The crowd got bigger as the night went on.", "album_id": "72157633184822264", "photo_flickr_id": "8627050620", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46321", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the crowd got bigger as the night went on .", "storylet_id": "231609"}], [{"original_text": "A group of friends decided to go out for some fun on St. Patty's Day. ", "album_id": "72157633184822264", "photo_flickr_id": "8627047156", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46322", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends decided to go out for some fun on st. [female] 's day .", "storylet_id": "231610"}], [{"original_text": "They ordered some food and drinks ", "album_id": "72157633184822264", "photo_flickr_id": "8627048120", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46322", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they ordered some food and drinks", "storylet_id": "231611"}], [{"original_text": "They shared appetizers. ", "album_id": "72157633184822264", "photo_flickr_id": "8627049322", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46322", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they shared appetizers .", "storylet_id": "231612"}], [{"original_text": "The group was happy to spend time together. ", "album_id": "72157633184822264", "photo_flickr_id": "8627050620", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46322", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the group was happy to spend time together .", "storylet_id": "231613"}], [{"original_text": "The night ended with some fun dancing at the bar. ", "album_id": "72157633184822264", "photo_flickr_id": "8627053398", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46322", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night ended with some fun dancing at the bar .", "storylet_id": "231614"}], [{"original_text": "We decided to go out and celebrate for St. Patrick's Day.", "album_id": "72157633184822264", "photo_flickr_id": "8627047156", "setting": "last-3-pick-old-and-tell", "worker_id": "42GWAQ5DISYW1GY", "story_id": "46323", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go out and celebrate for st. [male] 's day .", "storylet_id": "231615"}], [{"original_text": "We were all ready for a great meal.", "album_id": "72157633184822264", "photo_flickr_id": "8627048120", "setting": "last-3-pick-old-and-tell", "worker_id": "42GWAQ5DISYW1GY", "story_id": "46323", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were all ready for a great meal .", "storylet_id": "231616"}], [{"original_text": "The meal was delicious.", "album_id": "72157633184822264", "photo_flickr_id": "8627049322", "setting": "last-3-pick-old-and-tell", "worker_id": "42GWAQ5DISYW1GY", "story_id": "46323", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the meal was delicious .", "storylet_id": "231617"}], [{"original_text": "Everyone was having a great time.", "album_id": "72157633184822264", "photo_flickr_id": "8627050620", "setting": "last-3-pick-old-and-tell", "worker_id": "42GWAQ5DISYW1GY", "story_id": "46323", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was having a great time .", "storylet_id": "231618"}], [{"original_text": "We even did some dancing after our meal.", "album_id": "72157633184822264", "photo_flickr_id": "8627053398", "setting": "last-3-pick-old-and-tell", "worker_id": "42GWAQ5DISYW1GY", "story_id": "46323", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even did some dancing after our meal .", "storylet_id": "231619"}], [{"original_text": "A group of friends got together to celebrate St. Patty's Day.", "album_id": "72157633184822264", "photo_flickr_id": "8627047156", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46324", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends got together to celebrate st. [female] 's day .", "storylet_id": "231620"}], [{"original_text": "Everyone waited patiently for the food to arrive.", "album_id": "72157633184822264", "photo_flickr_id": "8627048120", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46324", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone waited patiently for the food to arrive .", "storylet_id": "231621"}], [{"original_text": "When the food arrived it was all very delicious.", "album_id": "72157633184822264", "photo_flickr_id": "8627049322", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46324", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when the food arrived it was all very delicious .", "storylet_id": "231622"}], [{"original_text": "Then everyone got together for a group photo.", "album_id": "72157633184822264", "photo_flickr_id": "8627050620", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46324", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then everyone got together for a group photo .", "storylet_id": "231623"}], [{"original_text": "After that, everyone finished off the night with dancing.", "album_id": "72157633184822264", "photo_flickr_id": "8627053398", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46324", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that , everyone finished off the night with dancing .", "storylet_id": "231624"}], [{"original_text": "The group continued to practice for the horse show later on in the evening. ", "album_id": "72157626743581057", "photo_flickr_id": "5790275576", "setting": "first-2-pick-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "46325", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group continued to practice for the horse show later on in the evening .", "storylet_id": "231625"}], [{"original_text": "They trained their horses thoroughly and made sure they were ready to make an impression.", "album_id": "72157626743581057", "photo_flickr_id": "5790276418", "setting": "first-2-pick-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "46325", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they trained their horses thoroughly and made sure they were ready to make an impression .", "storylet_id": "231626"}], [{"original_text": "Each rider has immaculate control of their horse.", "album_id": "72157626743581057", "photo_flickr_id": "5789723597", "setting": "first-2-pick-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "46325", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each rider has immaculate control of their horse .", "storylet_id": "231627"}], [{"original_text": "They listened to the instructor carefully to ensure the show went as smooth as possible.", "album_id": "72157626743581057", "photo_flickr_id": "5789723949", "setting": "first-2-pick-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "46325", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they listened to the instructor carefully to ensure the show went as smooth as possible .", "storylet_id": "231628"}], [{"original_text": "Before the show started, they posed for a group picture. ", "album_id": "72157626743581057", "photo_flickr_id": "5790280384", "setting": "first-2-pick-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "46325", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before the show started , they posed for a group picture .", "storylet_id": "231629"}], [{"original_text": "Today I got to ride horses.", "album_id": "72157626743581057", "photo_flickr_id": "5790273812", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "46326", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i got to ride horses .", "storylet_id": "231630"}], [{"original_text": "My friends also rode them with me.", "album_id": "72157626743581057", "photo_flickr_id": "5790275576", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "46326", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friends also rode them with me .", "storylet_id": "231631"}], [{"original_text": "I nicknamed this guy Seabiscuit.", "album_id": "72157626743581057", "photo_flickr_id": "5789721103", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "46326", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i nicknamed this guy seabiscuit .", "storylet_id": "231632"}], [{"original_text": "It is so much fun to ride horses, they go so fast.", "album_id": "72157626743581057", "photo_flickr_id": "5790276418", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "46326", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is so much fun to ride horses , they go so fast .", "storylet_id": "231633"}], [{"original_text": "I can't wait to do this again next year.", "album_id": "72157626743581057", "photo_flickr_id": "5789721911", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "46326", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ca n't wait to do this again next year .", "storylet_id": "231634"}], [{"original_text": "The horses and riders were all eager to show off.", "album_id": "72157626743581057", "photo_flickr_id": "5790275576", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46327", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the horses and riders were all eager to show off .", "storylet_id": "231635"}], [{"original_text": "The breeding and training was clearly evident.", "album_id": "72157626743581057", "photo_flickr_id": "5790276418", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46327", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the breeding and training was clearly evident .", "storylet_id": "231636"}], [{"original_text": "This animal in particular was very well bred.", "album_id": "72157626743581057", "photo_flickr_id": "5789723597", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46327", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this animal in particular was very well bred .", "storylet_id": "231637"}], [{"original_text": "Presentations were made about the animals.", "album_id": "72157626743581057", "photo_flickr_id": "5789723949", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46327", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "presentations were made about the animals .", "storylet_id": "231638"}], [{"original_text": "Afterwards clearly a group photo was in order to commemorate the day.", "album_id": "72157626743581057", "photo_flickr_id": "5790280384", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46327", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards clearly a group photo was in order to commemorate the day .", "storylet_id": "231639"}], [{"original_text": "Break out the show horses. ", "album_id": "72157626743581057", "photo_flickr_id": "5790273812", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46328", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "break out the show horses .", "storylet_id": "231640"}], [{"original_text": "Release the hounds, no wait, that's wrong. ", "album_id": "72157626743581057", "photo_flickr_id": "5790275576", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46328", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "release the hounds , no wait , that 's wrong .", "storylet_id": "231641"}], [{"original_text": "Giddy up? ", "album_id": "72157626743581057", "photo_flickr_id": "5789721103", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46328", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "giddy up ?", "storylet_id": "231642"}], [{"original_text": "Crack the whip. ", "album_id": "72157626743581057", "photo_flickr_id": "5790276418", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46328", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "crack the whip .", "storylet_id": "231643"}], [{"original_text": "Go horse go. ", "album_id": "72157626743581057", "photo_flickr_id": "5789721911", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46328", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "go horse go .", "storylet_id": "231644"}], [{"original_text": "The students arrived to learn how to ride horses.", "album_id": "72157626743581057", "photo_flickr_id": "5790275576", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46329", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the students arrived to learn how to ride horses .", "storylet_id": "231645"}], [{"original_text": "They learn new techniques to lead the horse.", "album_id": "72157626743581057", "photo_flickr_id": "5790276418", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46329", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they learn new techniques to lead the horse .", "storylet_id": "231646"}], [{"original_text": "Then they had a chance to practice their new skills.", "album_id": "72157626743581057", "photo_flickr_id": "5789723597", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46329", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they had a chance to practice their new skills .", "storylet_id": "231647"}], [{"original_text": "After that they listened while the instructor gave them some advice.", "album_id": "72157626743581057", "photo_flickr_id": "5789723949", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46329", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that they listened while the instructor gave them some advice .", "storylet_id": "231648"}], [{"original_text": "When the class was complete, they got together for a group photo.", "album_id": "72157626743581057", "photo_flickr_id": "5790280384", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46329", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the class was complete , they got together for a group photo .", "storylet_id": "231649"}], [{"original_text": "There is this awesome video game I play.", "album_id": "72157624281890851", "photo_flickr_id": "4755299024", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46330", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is this awesome video game i play .", "storylet_id": "231650"}], [{"original_text": "It's a lot like real life.", "album_id": "72157624281890851", "photo_flickr_id": "4755299078", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46330", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's a lot like real life .", "storylet_id": "231651"}], [{"original_text": "I control a human and I go through human like events.", "album_id": "72157624281890851", "photo_flickr_id": "4755299130", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46330", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i control a human and i go through human like events .", "storylet_id": "231652"}], [{"original_text": "It's very addicting. ", "album_id": "72157624281890851", "photo_flickr_id": "4754659317", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46330", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's very addicting .", "storylet_id": "231653"}], [{"original_text": "Sometimes I like to sit around in the game like I do in life.", "album_id": "72157624281890851", "photo_flickr_id": "4755299226", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46330", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sometimes i like to sit around in the game like i do in life .", "storylet_id": "231654"}], [{"original_text": "Testing a new video game design.", "album_id": "72157624281890851", "photo_flickr_id": "4755299078", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "46331", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "testing a new video game design .", "storylet_id": "231655"}], [{"original_text": "We're making them meet in the park to watch different work videos.", "album_id": "72157624281890851", "photo_flickr_id": "4755299130", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "46331", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we 're making them meet in the park to watch different work videos .", "storylet_id": "231656"}], [{"original_text": "I think they are getting bored. If we can't their attention then the game fails.", "album_id": "72157624281890851", "photo_flickr_id": "4755299226", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "46331", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i think they are getting bored . if we ca n't their attention then the game fails .", "storylet_id": "231657"}], [{"original_text": "There we go, a band is playing to keep them entertained.", "album_id": "72157624281890851", "photo_flickr_id": "4754659399", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "46331", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there we go , a band is playing to keep them entertained .", "storylet_id": "231658"}], [{"original_text": "This is a great band. They are enjoying the music.", "album_id": "72157624281890851", "photo_flickr_id": "4756675296", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "46331", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a great band . they are enjoying the music .", "storylet_id": "231659"}], [{"original_text": "The game environment seemed mostly normal at first.", "album_id": "72157624281890851", "photo_flickr_id": "4755299024", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46332", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the game environment seemed mostly normal at first .", "storylet_id": "231660"}], [{"original_text": "It then became surreal and interesting.", "album_id": "72157624281890851", "photo_flickr_id": "4755299078", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46332", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it then became surreal and interesting .", "storylet_id": "231661"}], [{"original_text": "Many people were walking around, ignoring the odd disks in the sky.", "album_id": "72157624281890851", "photo_flickr_id": "4755299130", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46332", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many people were walking around , ignoring the odd disks in the sky .", "storylet_id": "231662"}], [{"original_text": "A show was on the screen, but not everyone was paying attention.", "album_id": "72157624281890851", "photo_flickr_id": "4754659317", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46332", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a show was on the screen , but not everyone was paying attention .", "storylet_id": "231663"}], [{"original_text": "The visuals on the screen changed, but many were too busy having fun.", "album_id": "72157624281890851", "photo_flickr_id": "4755299226", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46332", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the visuals on the screen changed , but many were too busy having fun .", "storylet_id": "231664"}], [{"original_text": "OMG, she must be tripping. ", "album_id": "72157624281890851", "photo_flickr_id": "4755299078", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46333", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "omg , she must be tripping .", "storylet_id": "231665"}], [{"original_text": "Everything looked like a video game. ", "album_id": "72157624281890851", "photo_flickr_id": "4755299130", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46333", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything looked like a video game .", "storylet_id": "231666"}], [{"original_text": "What happened to the world?", "album_id": "72157624281890851", "photo_flickr_id": "4755299226", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46333", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what happened to the world ?", "storylet_id": "231667"}], [{"original_text": "Everyone was cartoonish. ", "album_id": "72157624281890851", "photo_flickr_id": "4754659399", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46333", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was cartoonish .", "storylet_id": "231668"}], [{"original_text": "Stop it. ", "album_id": "72157624281890851", "photo_flickr_id": "4756675296", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46333", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "stop it .", "storylet_id": "231669"}], [{"original_text": "I met a girl in an online game.", "album_id": "72157624281890851", "photo_flickr_id": "4755299078", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46334", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i met a girl in an online game .", "storylet_id": "231670"}], [{"original_text": "She was supposed to meet me in the outdoor club.", "album_id": "72157624281890851", "photo_flickr_id": "4755299130", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46334", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was supposed to meet me in the outdoor club .", "storylet_id": "231671"}], [{"original_text": "I guess she had other plans, though.", "album_id": "72157624281890851", "photo_flickr_id": "4755299226", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46334", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i guess she had other plans , though .", "storylet_id": "231672"}], [{"original_text": "No one ever wants to meet me at the club.", "album_id": "72157624281890851", "photo_flickr_id": "4754659399", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46334", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "no one ever wants to meet me at the club .", "storylet_id": "231673"}], [{"original_text": "I have a better shot at getting a girl in real life. ", "album_id": "72157624281890851", "photo_flickr_id": "4756675296", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46334", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i have a better shot at getting a girl in real life .", "storylet_id": "231674"}], [{"original_text": "Its graduation day and the dean is speaking.", "album_id": "72157625082576413", "photo_flickr_id": "4950513101", "setting": "first-2-pick-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "46335", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "its graduation day and the dean is speaking .", "storylet_id": "231675"}], [{"original_text": "I had a fancy mortar board.", "album_id": "72157625082576413", "photo_flickr_id": "4951103988", "setting": "first-2-pick-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "46335", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had a fancy mortar board .", "storylet_id": "231676"}], [{"original_text": "I did it, I graduated!", "album_id": "72157625082576413", "photo_flickr_id": "4950511269", "setting": "first-2-pick-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "46335", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i did it , i graduated !", "storylet_id": "231677"}], [{"original_text": "I was so happy.", "album_id": "72157625082576413", "photo_flickr_id": "4951104208", "setting": "first-2-pick-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "46335", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was so happy .", "storylet_id": "231678"}], [{"original_text": "And so were my parents.", "album_id": "72157625082576413", "photo_flickr_id": "4950513269", "setting": "first-2-pick-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "46335", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and so were my parents .", "storylet_id": "231679"}], [{"original_text": "We graduated from our college last week. The dean first made a speech about success.", "album_id": "72157625082576413", "photo_flickr_id": "4950513101", "setting": "first-2-pick-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "46336", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we graduated from our college last week . the dean first made a speech about success .", "storylet_id": "231680"}], [{"original_text": "Then they called us in to line up for accepting our diplomas.", "album_id": "72157625082576413", "photo_flickr_id": "4951104208", "setting": "first-2-pick-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "46336", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then they called us in to line up for accepting our diplomas .", "storylet_id": "231681"}], [{"original_text": "They called my name, and I went up. ", "album_id": "72157625082576413", "photo_flickr_id": "4950511269", "setting": "first-2-pick-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "46336", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they called my name , and i went up .", "storylet_id": "231682"}], [{"original_text": "After everyone had their diplomas, we all gathered with our family and friends for hugs and photographs.", "album_id": "72157625082576413", "photo_flickr_id": "4950513269", "setting": "first-2-pick-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "46336", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after everyone had their diplomas , we all gathered with our family and friends for hugs and photographs .", "storylet_id": "231683"}], [{"original_text": "Finally, we all left to celebrate!", "album_id": "72157625082576413", "photo_flickr_id": "4950512055", "setting": "first-2-pick-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "46336", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , we all left to celebrate !", "storylet_id": "231684"}], [{"original_text": "The dean spoke to the graduates.", "album_id": "72157625082576413", "photo_flickr_id": "4950513101", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "46337", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dean spoke to the graduates .", "storylet_id": "231685"}], [{"original_text": "They were so excited to get their dipolmas!", "album_id": "72157625082576413", "photo_flickr_id": "4951104208", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "46337", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were so excited to get their dipolmas !", "storylet_id": "231686"}], [{"original_text": "The graduates flipped their tassles over once they crossed the stage.", "album_id": "72157625082576413", "photo_flickr_id": "4950511269", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "46337", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the graduates flipped their tassles over once they crossed the stage .", "storylet_id": "231687"}], [{"original_text": "The family members were so proud!", "album_id": "72157625082576413", "photo_flickr_id": "4950513269", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "46337", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family members were so proud !", "storylet_id": "231688"}], [{"original_text": "It was an exciting day for everyone involved.", "album_id": "72157625082576413", "photo_flickr_id": "4950512055", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "46337", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was an exciting day for everyone involved .", "storylet_id": "231689"}], [{"original_text": "The speakers were glad to have this chance to speak all their students.", "album_id": "72157625082576413", "photo_flickr_id": "4950513101", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46338", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the speakers were glad to have this chance to speak all their students .", "storylet_id": "231690"}], [{"original_text": "Many students customized their caps.", "album_id": "72157625082576413", "photo_flickr_id": "4951103988", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46338", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many students customized their caps .", "storylet_id": "231691"}], [{"original_text": "All the students were glad to graduate.", "album_id": "72157625082576413", "photo_flickr_id": "4950511269", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46338", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the students were glad to graduate .", "storylet_id": "231692"}], [{"original_text": "Everyone had fun afterwards, ecstatic and full of energy.", "album_id": "72157625082576413", "photo_flickr_id": "4951104208", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46338", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone had fun afterwards , ecstatic and full of energy .", "storylet_id": "231693"}], [{"original_text": "Parents hug their students, glad to share in this moment.", "album_id": "72157625082576413", "photo_flickr_id": "4950513269", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46338", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "parents hug their students , glad to share in this moment .", "storylet_id": "231694"}], [{"original_text": "The president of the school made a gut-wrenching speech.", "album_id": "72157625082576413", "photo_flickr_id": "4950513101", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46339", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the president of the school made a gut-wrenching speech .", "storylet_id": "231695"}], [{"original_text": "Felicity decorated her cap with cool letters.", "album_id": "72157625082576413", "photo_flickr_id": "4951103988", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46339", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "felicity decorated her cap with cool letters .", "storylet_id": "231696"}], [{"original_text": "She was awarded high honors in her class.", "album_id": "72157625082576413", "photo_flickr_id": "4950511269", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46339", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was awarded high honors in her class .", "storylet_id": "231697"}], [{"original_text": "She ran to see her parents afterward.", "album_id": "72157625082576413", "photo_flickr_id": "4951104208", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46339", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she ran to see her parents afterward .", "storylet_id": "231698"}], [{"original_text": "They congratulated her and took her to Denny's afterward.", "album_id": "72157625082576413", "photo_flickr_id": "4950513269", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46339", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they congratulated her and took her to [male] 's afterward .", "storylet_id": "231699"}], [{"original_text": "Graduation day is here at last.", "album_id": "72157626883275776", "photo_flickr_id": "5797113040", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46340", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "graduation day is here at last .", "storylet_id": "231700"}], [{"original_text": "My name, Jesus Quiles, is right there.", "album_id": "72157626883275776", "photo_flickr_id": "5796559293", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46340", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my name , [male] quiles , is right there .", "storylet_id": "231701"}], [{"original_text": "As I received my diploma I realized something very important.", "album_id": "72157626883275776", "photo_flickr_id": "5796568943", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46340", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as i received my diploma i realized something very important .", "storylet_id": "231702"}], [{"original_text": "I had spent over 3 years in this school, and have a lot of debt.", "album_id": "72157626883275776", "photo_flickr_id": "5797123076", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46340", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had spent over 3 years in this school , and have a lot of debt .", "storylet_id": "231703"}], [{"original_text": "The truth is, I have zero chance of employment.", "album_id": "72157626883275776", "photo_flickr_id": "5796571803", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46340", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the truth is , i have zero chance of employment .", "storylet_id": "231704"}], [{"original_text": "This was a special graduation ceremony.", "album_id": "72157626883275776", "photo_flickr_id": "5796545929", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46341", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was a special graduation ceremony .", "storylet_id": "231705"}], [{"original_text": "The young adults here all felt very special.", "album_id": "72157626883275776", "photo_flickr_id": "5796550001", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46341", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the young adults here all felt very special .", "storylet_id": "231706"}], [{"original_text": "There is a list of the graduates in alphabetical order.", "album_id": "72157626883275776", "photo_flickr_id": "5796559293", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46341", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is a list of the graduates in alphabetical order .", "storylet_id": "231707"}], [{"original_text": "This graduate is very proud.", "album_id": "72157626883275776", "photo_flickr_id": "5796568943", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46341", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this graduate is very proud .", "storylet_id": "231708"}], [{"original_text": "He worked hard getting to where he is.", "album_id": "72157626883275776", "photo_flickr_id": "5796571803", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46341", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he worked hard getting to where he is .", "storylet_id": "231709"}], [{"original_text": "The School for Urban Planning and Architecture had their graduation on June 3rd of 2011.", "album_id": "72157626883275776", "photo_flickr_id": "5797113040", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46342", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the school for urban planning and architecture had their graduation on [female] 3rd of 2011 .", "storylet_id": "231710"}], [{"original_text": "There were several students were that graduated with honors.", "album_id": "72157626883275776", "photo_flickr_id": "5796559293", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46342", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were several students were that graduated with honors .", "storylet_id": "231711"}], [{"original_text": "The students came up and received their diplomas. ", "album_id": "72157626883275776", "photo_flickr_id": "5796568943", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46342", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the students came up and received their diplomas .", "storylet_id": "231712"}], [{"original_text": "They walked across the stage proud,", "album_id": "72157626883275776", "photo_flickr_id": "5797123076", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46342", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they walked across the stage proud ,", "storylet_id": "231713"}], [{"original_text": "and reflected on the knowledge they gained at school.", "album_id": "72157626883275776", "photo_flickr_id": "5796571803", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46342", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and reflected on the knowledge they gained at school .", "storylet_id": "231714"}], [{"original_text": "It was the day my boy graduated.", "album_id": "72157626883275776", "photo_flickr_id": "5797113040", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46343", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the day my boy graduated .", "storylet_id": "231715"}], [{"original_text": "I kept the pamphlet that had his name in it.", "album_id": "72157626883275776", "photo_flickr_id": "5796559293", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46343", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i kept the pamphlet that had his name in it .", "storylet_id": "231716"}], [{"original_text": "The faculty congratulated my boy on his work.", "album_id": "72157626883275776", "photo_flickr_id": "5796568943", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46343", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the faculty congratulated my boy on his work .", "storylet_id": "231717"}], [{"original_text": "He looked so proud on that stage.", "album_id": "72157626883275776", "photo_flickr_id": "5797123076", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46343", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he looked so proud on that stage .", "storylet_id": "231718"}], [{"original_text": "I hope that his smile lasts long into his adulthood. ", "album_id": "72157626883275776", "photo_flickr_id": "5796571803", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46343", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope that his smile lasts long into his adulthood .", "storylet_id": "231719"}], [{"original_text": "This was my graduation program for our school. ", "album_id": "72157626883275776", "photo_flickr_id": "5797113040", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "46344", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was my graduation program for our school .", "storylet_id": "231720"}], [{"original_text": "The graduating class was small. ", "album_id": "72157626883275776", "photo_flickr_id": "5796559293", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "46344", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the graduating class was small .", "storylet_id": "231721"}], [{"original_text": "I was so happy to finally get my degree. ", "album_id": "72157626883275776", "photo_flickr_id": "5796568943", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "46344", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was so happy to finally get my degree .", "storylet_id": "231722"}], [{"original_text": "All my hard work was realized in this moment. ", "album_id": "72157626883275776", "photo_flickr_id": "5797123076", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "46344", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all my hard work was realized in this moment .", "storylet_id": "231723"}], [{"original_text": "I could not be more proud of myself. ", "album_id": "72157626883275776", "photo_flickr_id": "5796571803", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "46344", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i could not be more proud of myself .", "storylet_id": "231724"}], [{"original_text": "Today was graduation day.", "album_id": "72157617832818157", "photo_flickr_id": "3517007914", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46345", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was graduation day .", "storylet_id": "231725"}], [{"original_text": "The girl got a picture as she went up to the stage.", "album_id": "72157617832818157", "photo_flickr_id": "3517006004", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46345", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girl got a picture as she went up to the stage .", "storylet_id": "231726"}], [{"original_text": "After graduation she got a picture on the way out.", "album_id": "72157617832818157", "photo_flickr_id": "3517000430", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46345", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after graduation she got a picture on the way out .", "storylet_id": "231727"}], [{"original_text": "She took a picture with her friend.", "album_id": "72157617832818157", "photo_flickr_id": "3517001752", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46345", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she took a picture with her friend .", "storylet_id": "231728"}], [{"original_text": "She then took a picture with her mom and dad.", "album_id": "72157617832818157", "photo_flickr_id": "3516190805", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46345", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she then took a picture with her mom and dad .", "storylet_id": "231729"}], [{"original_text": "Sarah was supported by her peers and family at her graduation!", "album_id": "72157617832818157", "photo_flickr_id": "3517007914", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46346", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was supported by her peers and family at her graduation !", "storylet_id": "231730"}], [{"original_text": "Her folks made sure to take lots of photos of the occasion.", "album_id": "72157617832818157", "photo_flickr_id": "3517006004", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46346", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her folks made sure to take lots of photos of the occasion .", "storylet_id": "231731"}], [{"original_text": "Afterwords, there was still time for congratulations.", "album_id": "72157617832818157", "photo_flickr_id": "3517000430", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46346", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwords , there was still time for congratulations .", "storylet_id": "231732"}], [{"original_text": "Her and her brother and parents took pictures together.", "album_id": "72157617832818157", "photo_flickr_id": "3516190083", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46346", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her and her brother and parents took pictures together .", "storylet_id": "231733"}], [{"original_text": "She put this one up on Facebook!", "album_id": "72157617832818157", "photo_flickr_id": "3517005154", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46346", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she put this one up on organization !", "storylet_id": "231734"}], [{"original_text": "There were a lot of students ready to graduate this year.", "album_id": "72157617832818157", "photo_flickr_id": "3517007914", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46347", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of students ready to graduate this year .", "storylet_id": "231735"}], [{"original_text": "When they called the students up they were very happy.", "album_id": "72157617832818157", "photo_flickr_id": "3517006004", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46347", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when they called the students up they were very happy .", "storylet_id": "231736"}], [{"original_text": "I was really happy to finally graduate.", "album_id": "72157617832818157", "photo_flickr_id": "3517000430", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46347", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was really happy to finally graduate .", "storylet_id": "231737"}], [{"original_text": "All of the students were very sad because they would not see each other again.", "album_id": "72157617832818157", "photo_flickr_id": "3517001752", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46347", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the students were very sad because they would not see each other again .", "storylet_id": "231738"}], [{"original_text": "My family came to support me.", "album_id": "72157617832818157", "photo_flickr_id": "3516190805", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46347", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my family came to support me .", "storylet_id": "231739"}], [{"original_text": "Mindy had been working hard to get through college. It was finally graduation. She walked up to the stage excitedly.", "album_id": "72157617832818157", "photo_flickr_id": "3517007914", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46348", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] had been working hard to get through college . it was finally graduation . she walked up to the stage excitedly .", "storylet_id": "231740"}], [{"original_text": "Just before she went on stage there was a hold up. Someone at the front of the line tripped in their high heels and was being attended to. Mindy waits anxiously for her turn.", "album_id": "72157617832818157", "photo_flickr_id": "3517006004", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46348", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "just before she went on stage there was a hold up . someone at the front of the line tripped in their high heels and was being attended to . [female] waits anxiously for her turn .", "storylet_id": "231741"}], [{"original_text": "Finally, she gets through the line, and her face lights up with the biggest smile.", "album_id": "72157617832818157", "photo_flickr_id": "3517000430", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46348", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally , she gets through the line , and her face lights up with the biggest smile .", "storylet_id": "231742"}], [{"original_text": "Then, of course, there are the obligatory photos with family and friends.", "album_id": "72157617832818157", "photo_flickr_id": "3516190083", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46348", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , of course , there are the obligatory photos with family and friends .", "storylet_id": "231743"}], [{"original_text": "Now Mindy is ready to cut the cord to her childhood and begin her new life.", "album_id": "72157617832818157", "photo_flickr_id": "3517005154", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46348", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now [female] is ready to cut the cord to her childhood and begin her new life .", "storylet_id": "231744"}], [{"original_text": "Today is my graduation day, I've been waiting forever for this day.", "album_id": "72157617832818157", "photo_flickr_id": "3517007914", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "46349", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is my graduation day , i 've been waiting forever for this day .", "storylet_id": "231745"}], [{"original_text": "I'm up next to receive my diploma, hope I don't trip up the stairs.", "album_id": "72157617832818157", "photo_flickr_id": "3517006004", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "46349", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm up next to receive my diploma , hope i do n't trip up the stairs .", "storylet_id": "231746"}], [{"original_text": "Graduation is finally over, now it's time for smiles and celebration.", "album_id": "72157617832818157", "photo_flickr_id": "3517000430", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "46349", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "graduation is finally over , now it 's time for smiles and celebration .", "storylet_id": "231747"}], [{"original_text": "Everyone is very proud of me, and wants to capture this day on film.", "album_id": "72157617832818157", "photo_flickr_id": "3516190083", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "46349", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone is very proud of me , and wants to capture this day on film .", "storylet_id": "231748"}], [{"original_text": "It's time to say goodbye to this day and town, i'm off to college in the fall!", "album_id": "72157617832818157", "photo_flickr_id": "3517005154", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "46349", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's time to say goodbye to this day and town , i 'm off to college in the fall !", "storylet_id": "231749"}], [{"original_text": "Today we attended our son's graduation from karate class.", "album_id": "72157627270728793", "photo_flickr_id": "6026552536", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "46350", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we attended our son 's graduation from karate class .", "storylet_id": "231750"}], [{"original_text": "The students stood silently as the commence began.", "album_id": "72157627270728793", "photo_flickr_id": "6026010213", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "46350", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the students stood silently as the commence began .", "storylet_id": "231751"}], [{"original_text": "In the audience were some of the new students who were entering the academy.", "album_id": "72157627270728793", "photo_flickr_id": "6026560598", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "46350", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in the audience were some of the new students who were entering the academy .", "storylet_id": "231752"}], [{"original_text": "Afterwards, some of the students gave demonstrations of what they had learned.", "album_id": "72157627270728793", "photo_flickr_id": "6026013697", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "46350", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards , some of the students gave demonstrations of what they had learned .", "storylet_id": "231753"}], [{"original_text": "There was even time for some silly dancing. When over, the students all felt proud of their special achievement.", "album_id": "72157627270728793", "photo_flickr_id": "6026569312", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "46350", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was even time for some silly dancing . when over , the students all felt proud of their special achievement .", "storylet_id": "231754"}], [{"original_text": "Graduation, the president of the class made a speech. ", "album_id": "72157627270728793", "photo_flickr_id": "6026552536", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "46351", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "graduation , the president of the class made a speech .", "storylet_id": "231755"}], [{"original_text": "Then the president of the school spoke. ", "album_id": "72157627270728793", "photo_flickr_id": "6026555754", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "46351", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then the president of the school spoke .", "storylet_id": "231756"}], [{"original_text": "The class listened intently. ", "album_id": "72157627270728793", "photo_flickr_id": "6026003717", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "46351", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the class listened intently .", "storylet_id": "231757"}], [{"original_text": "The class choir sang some songs. ", "album_id": "72157627270728793", "photo_flickr_id": "6026010213", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "46351", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the class choir sang some songs .", "storylet_id": "231758"}], [{"original_text": "My grandparents enjoyed the festivities. ", "album_id": "72157627270728793", "photo_flickr_id": "6026570390", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "46351", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my grandparents enjoyed the festivities .", "storylet_id": "231759"}], [{"original_text": "I am here to read the challenge propose to the orange team. ", "album_id": "72157627270728793", "photo_flickr_id": "6026552536", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "46352", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am here to read the challenge propose to the orange team .", "storylet_id": "231760"}], [{"original_text": "It reads, \"Yo Orange Team no one likes you because nothing rhymes with orange.\"", "album_id": "72157627270728793", "photo_flickr_id": "6026010213", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "46352", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it reads , `` organization organization organization no one likes you because nothing rhymes with orange . ''", "storylet_id": "231761"}], [{"original_text": "OOOOOOOO. Those are fighting words.", "album_id": "72157627270728793", "photo_flickr_id": "6026560598", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "46352", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "oooooooo . those are fighting words .", "storylet_id": "231762"}], [{"original_text": "A battles began between the Orange and White gangs.", "album_id": "72157627270728793", "photo_flickr_id": "6026013697", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "46352", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a battles began between the organization organization organization gangs .", "storylet_id": "231763"}], [{"original_text": "After hours of dancing nothing still rhymes with orange.", "album_id": "72157627270728793", "photo_flickr_id": "6026569312", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "46352", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after hours of dancing nothing still rhymes with orange .", "storylet_id": "231764"}], [{"original_text": "Becky started the martial arts event with a speech.", "album_id": "72157627270728793", "photo_flickr_id": "6026552536", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46353", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] started the martial arts event with a speech .", "storylet_id": "231765"}], [{"original_text": "The students stood shoulder to shoulder.", "album_id": "72157627270728793", "photo_flickr_id": "6026010213", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46353", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the students stood shoulder to shoulder .", "storylet_id": "231766"}], [{"original_text": "The audience was waiting for a great demonstration.", "album_id": "72157627270728793", "photo_flickr_id": "6026560598", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46353", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the audience was waiting for a great demonstration .", "storylet_id": "231767"}], [{"original_text": "The martial arts students showed off their skills.", "album_id": "72157627270728793", "photo_flickr_id": "6026013697", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46353", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the martial arts students showed off their skills .", "storylet_id": "231768"}], [{"original_text": "At the end of the day, the students were quite tired. ", "album_id": "72157627270728793", "photo_flickr_id": "6026569312", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46353", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , the students were quite tired .", "storylet_id": "231769"}], [{"original_text": "My sister gave the speech for the ceremony ", "album_id": "72157627270728793", "photo_flickr_id": "6026552536", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "46354", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister gave the speech for the ceremony", "storylet_id": "231770"}], [{"original_text": "The black belts ha worked very hard for their achievments ", "album_id": "72157627270728793", "photo_flickr_id": "6026010213", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "46354", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the black belts ha worked very hard for their achievments", "storylet_id": "231771"}], [{"original_text": "The on lookers were there for support ", "album_id": "72157627270728793", "photo_flickr_id": "6026560598", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "46354", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the on lookers were there for support", "storylet_id": "231772"}], [{"original_text": "The performance of their karate was entertaining ", "album_id": "72157627270728793", "photo_flickr_id": "6026013697", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "46354", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the performance of their karate was entertaining", "storylet_id": "231773"}], [{"original_text": "Their moves are really impressive. ", "album_id": "72157627270728793", "photo_flickr_id": "6026569312", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "46354", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their moves are really impressive .", "storylet_id": "231774"}], [{"original_text": "Marty is the guy in the middle. He has a pretty good life.", "album_id": "72157617993794464", "photo_flickr_id": "3521679429", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46355", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is the guy in the middle . he has a pretty good life .", "storylet_id": "231775"}], [{"original_text": "He and his lover just adopted a new baby and they couldn't be happier!", "album_id": "72157617993794464", "photo_flickr_id": "3521671139", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46355", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he and his lover just adopted a new baby and they could n't be happier !", "storylet_id": "231776"}], [{"original_text": "Here is mark with his lover. Mark is in the suit as he is the teams mascot", "album_id": "72157617993794464", "photo_flickr_id": "3522488496", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46355", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is mark with his lover . [male] is in the suit as he is the teams mascot", "storylet_id": "231777"}], [{"original_text": "He often times had to perform in front of very large crowds.", "album_id": "72157617993794464", "photo_flickr_id": "3521676225", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46355", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he often times had to perform in front of very large crowds .", "storylet_id": "231778"}], [{"original_text": "It made things especially hard since the team had been on a losing streak.", "album_id": "72157617993794464", "photo_flickr_id": "3521675369", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46355", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it made things especially hard since the team had been on a losing streak .", "storylet_id": "231779"}], [{"original_text": "It was time for graduation at UF.", "album_id": "72157617993794464", "photo_flickr_id": "3522481654", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46356", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was time for graduation at uf .", "storylet_id": "231780"}], [{"original_text": "Gus was graduating with many of his peers.", "album_id": "72157617993794464", "photo_flickr_id": "3522483512", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46356", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was graduating with many of his peers .", "storylet_id": "231781"}], [{"original_text": "After his graduation, he had to take a picture with the school mascot!", "album_id": "72157617993794464", "photo_flickr_id": "3522488496", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46356", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after his graduation , he had to take a picture with the school mascot !", "storylet_id": "231782"}], [{"original_text": "He was really great friends with his professors.", "album_id": "72157617993794464", "photo_flickr_id": "3521679429", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46356", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was really great friends with his professors .", "storylet_id": "231783"}], [{"original_text": "He even went to church with one of his professors!", "album_id": "72157617993794464", "photo_flickr_id": "3521671139", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46356", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he even went to church with one of his professors !", "storylet_id": "231784"}], [{"original_text": "After a long time I finally graduated.", "album_id": "72157617993794464", "photo_flickr_id": "3521679429", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46357", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after a long time i finally graduated .", "storylet_id": "231785"}], [{"original_text": "Everybody game to the graduation ceremony.", "album_id": "72157617993794464", "photo_flickr_id": "3521671139", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46357", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everybody game to the graduation ceremony .", "storylet_id": "231786"}], [{"original_text": "The school mascot was there to show support.", "album_id": "72157617993794464", "photo_flickr_id": "3522488496", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46357", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the school mascot was there to show support .", "storylet_id": "231787"}], [{"original_text": "There were a lot of student's graduating.", "album_id": "72157617993794464", "photo_flickr_id": "3521676225", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46357", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of student 's graduating .", "storylet_id": "231788"}], [{"original_text": "The cameras at the event made it easier to watch.", "album_id": "72157617993794464", "photo_flickr_id": "3521675369", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46357", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cameras at the event made it easier to watch .", "storylet_id": "231789"}], [{"original_text": "The college graduation has brought out a large crowd.", "album_id": "72157617993794464", "photo_flickr_id": "3522481654", "setting": "last-3-pick-old-and-tell", "worker_id": "H1AWMK4A4CPH8FT", "story_id": "46358", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the college graduation has brought out a large crowd .", "storylet_id": "231790"}], [{"original_text": "The well organized crowd are in school colors. ", "album_id": "72157617993794464", "photo_flickr_id": "3522483512", "setting": "last-3-pick-old-and-tell", "worker_id": "H1AWMK4A4CPH8FT", "story_id": "46358", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the well organized crowd are in school colors .", "storylet_id": "231791"}], [{"original_text": "Even the school's mascot is present for the festivities.", "album_id": "72157617993794464", "photo_flickr_id": "3522488496", "setting": "last-3-pick-old-and-tell", "worker_id": "H1AWMK4A4CPH8FT", "story_id": "46358", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the school 's mascot is present for the festivities .", "storylet_id": "231792"}], [{"original_text": "Happy graduates pose together with smiles on their faces.", "album_id": "72157617993794464", "photo_flickr_id": "3521679429", "setting": "last-3-pick-old-and-tell", "worker_id": "H1AWMK4A4CPH8FT", "story_id": "46358", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "happy graduates pose together with smiles on their faces .", "storylet_id": "231793"}], [{"original_text": "Family and friends join together for more photos and congratulations.", "album_id": "72157617993794464", "photo_flickr_id": "3521671139", "setting": "last-3-pick-old-and-tell", "worker_id": "H1AWMK4A4CPH8FT", "story_id": "46358", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "family and friends join together for more photos and congratulations .", "storylet_id": "231794"}], [{"original_text": "The stage is set for a wonderful graduation.", "album_id": "72157617993794464", "photo_flickr_id": "3522481654", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46359", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stage is set for a wonderful graduation .", "storylet_id": "231795"}], [{"original_text": "All of the students wait attentively to receive their degree.", "album_id": "72157617993794464", "photo_flickr_id": "3522483512", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46359", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the students wait attentively to receive their degree .", "storylet_id": "231796"}], [{"original_text": "He pauses in the excitement to take a picture with the school mascot.", "album_id": "72157617993794464", "photo_flickr_id": "3522488496", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46359", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he pauses in the excitement to take a picture with the school mascot .", "storylet_id": "231797"}], [{"original_text": "The teachers pose with one of their favorite students.", "album_id": "72157617993794464", "photo_flickr_id": "3521679429", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46359", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the teachers pose with one of their favorite students .", "storylet_id": "231798"}], [{"original_text": "After its all said and done, they take a nice family picture.", "album_id": "72157617993794464", "photo_flickr_id": "3521671139", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46359", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after its all said and done , they take a nice family picture .", "storylet_id": "231799"}], [{"original_text": "It's finally time for graduation day in our beautiful old hall.", "album_id": "72157627978450369", "photo_flickr_id": "6333828043", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46360", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's finally time for graduation day in our beautiful old hall .", "storylet_id": "231800"}], [{"original_text": "Many family and friends attended our graduation.", "album_id": "72157627978450369", "photo_flickr_id": "6334583510", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46360", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many family and friends attended our graduation .", "storylet_id": "231801"}], [{"original_text": "Everyone is awed at the beauty of our hall's architecture.", "album_id": "72157627978450369", "photo_flickr_id": "6333830581", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46360", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone is awed at the beauty of our hall 's architecture .", "storylet_id": "231802"}], [{"original_text": "The soft lights play well with the setting sun on our old school buildings.", "album_id": "72157627978450369", "photo_flickr_id": "6334585988", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46360", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the soft lights play well with the setting sun on our old school buildings .", "storylet_id": "231803"}], [{"original_text": "Graduation day comes to a close with the setting sun.", "album_id": "72157627978450369", "photo_flickr_id": "6333854725", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46360", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "graduation day comes to a close with the setting sun .", "storylet_id": "231804"}], [{"original_text": "This is where I go to school.", "album_id": "72157627978450369", "photo_flickr_id": "6334580466", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46361", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is where i go to school .", "storylet_id": "231805"}], [{"original_text": "I like the building a lot because it looks nice.", "album_id": "72157627978450369", "photo_flickr_id": "6333826851", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46361", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i like the building a lot because it looks nice .", "storylet_id": "231806"}], [{"original_text": "At this angle it looks even better.", "album_id": "72157627978450369", "photo_flickr_id": "6333827635", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46361", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at this angle it looks even better .", "storylet_id": "231807"}], [{"original_text": "A couple of my classmates are going to graduate.", "album_id": "72157627978450369", "photo_flickr_id": "6333828043", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46361", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a couple of my classmates are going to graduate .", "storylet_id": "231808"}], [{"original_text": "This is one beautiful building.", "album_id": "72157627978450369", "photo_flickr_id": "6334584586", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46361", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is one beautiful building .", "storylet_id": "231809"}], [{"original_text": "Two girls grew up in a small English suburb.", "album_id": "72157627978450369", "photo_flickr_id": "6334580466", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "46362", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two girls grew up in a small english suburb .", "storylet_id": "231810"}], [{"original_text": "Their homes were picturesque.", "album_id": "72157627978450369", "photo_flickr_id": "6333826851", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "46362", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their homes were picturesque .", "storylet_id": "231811"}], [{"original_text": "However they couldn't wait to attend Oxford University.", "album_id": "72157627978450369", "photo_flickr_id": "6333827635", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "46362", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however they could n't wait to attend organization organization .", "storylet_id": "231812"}], [{"original_text": "Their graduation day was sad seeing as Sara was not accepted.", "album_id": "72157627978450369", "photo_flickr_id": "6333828043", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "46362", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their graduation day was sad seeing as [female] was not accepted .", "storylet_id": "231813"}], [{"original_text": "She ended up as a janitor in this building. We no longer speak.", "album_id": "72157627978450369", "photo_flickr_id": "6334584586", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "46362", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she ended up as a janitor in this building . we no longer speak .", "storylet_id": "231814"}], [{"original_text": "The lawn was very well taken care of.", "album_id": "72157627978450369", "photo_flickr_id": "6334580466", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46363", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lawn was very well taken care of .", "storylet_id": "231815"}], [{"original_text": "This building was very striking in appearance.", "album_id": "72157627978450369", "photo_flickr_id": "6333826851", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46363", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this building was very striking in appearance .", "storylet_id": "231816"}], [{"original_text": "The old architecture was very appealing.", "album_id": "72157627978450369", "photo_flickr_id": "6333827635", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46363", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the old architecture was very appealing .", "storylet_id": "231817"}], [{"original_text": "Graduates had fun in front of the old buildings.", "album_id": "72157627978450369", "photo_flickr_id": "6333828043", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46363", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "graduates had fun in front of the old buildings .", "storylet_id": "231818"}], [{"original_text": "This building looked absolutely gorgeous in the sunlight.", "album_id": "72157627978450369", "photo_flickr_id": "6334584586", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46363", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this building looked absolutely gorgeous in the sunlight .", "storylet_id": "231819"}], [{"original_text": "Joan got to graduate from college.", "album_id": "72157627978450369", "photo_flickr_id": "6333828043", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46364", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] got to graduate from college .", "storylet_id": "231820"}], [{"original_text": "The rest of her life was ahead of her.", "album_id": "72157627978450369", "photo_flickr_id": "6334583510", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46364", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rest of her life was ahead of her .", "storylet_id": "231821"}], [{"original_text": "No more staying in her favorite college town.", "album_id": "72157627978450369", "photo_flickr_id": "6333830581", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46364", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "no more staying in her favorite college town .", "storylet_id": "231822"}], [{"original_text": "She will miss the streets when they glowed in the morning.", "album_id": "72157627978450369", "photo_flickr_id": "6334585988", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46364", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she will miss the streets when they glowed in the morning .", "storylet_id": "231823"}], [{"original_text": "The sun will surely follow her for the rest of her journey. ", "album_id": "72157627978450369", "photo_flickr_id": "6333854725", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46364", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sun will surely follow her for the rest of her journey .", "storylet_id": "231824"}], [{"original_text": "It was graduation time for the group of friends!", "album_id": "72157619680518585", "photo_flickr_id": "3626595009", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46365", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was graduation time for the group of friends !", "storylet_id": "231825"}], [{"original_text": "They enjoyed the time after the graduation, goofing around as usual!", "album_id": "72157619680518585", "photo_flickr_id": "3626595055", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46365", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they enjoyed the time after the graduation , goofing around as usual !", "storylet_id": "231826"}], [{"original_text": "One of their other friends wanted to take their picture together.", "album_id": "72157619680518585", "photo_flickr_id": "3626595475", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46365", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of their other friends wanted to take their picture together .", "storylet_id": "231827"}], [{"original_text": "Toby was called over by his family to take a picture with them.", "album_id": "72157619680518585", "photo_flickr_id": "3627411224", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46365", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was called over by his family to take a picture with them .", "storylet_id": "231828"}], [{"original_text": "They decided to take a picture by the fountain.", "album_id": "72157619680518585", "photo_flickr_id": "3626597027", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46365", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they decided to take a picture by the fountain .", "storylet_id": "231829"}], [{"original_text": "The man had gotten his diploma.", "album_id": "72157619680518585", "photo_flickr_id": "3627411224", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46366", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man had gotten his diploma .", "storylet_id": "231830"}], [{"original_text": "The friends took a picture together.", "album_id": "72157619680518585", "photo_flickr_id": "3626595055", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46366", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the friends took a picture together .", "storylet_id": "231831"}], [{"original_text": "He got a picture by himself.", "album_id": "72157619680518585", "photo_flickr_id": "3627409856", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46366", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he got a picture by himself .", "storylet_id": "231832"}], [{"original_text": "He got a picture with his friends again.", "album_id": "72157619680518585", "photo_flickr_id": "3627409966", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46366", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he got a picture with his friends again .", "storylet_id": "231833"}], [{"original_text": "He stopped a moment to take his cap off.", "album_id": "72157619680518585", "photo_flickr_id": "3627410884", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46366", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he stopped a moment to take his cap off .", "storylet_id": "231834"}], [{"original_text": "I went to my graduation ceremony yesterday.", "album_id": "72157619680518585", "photo_flickr_id": "3626595009", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46367", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to my graduation ceremony yesterday .", "storylet_id": "231835"}], [{"original_text": "There were a lot of students graduating.", "album_id": "72157619680518585", "photo_flickr_id": "3626595055", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46367", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of students graduating .", "storylet_id": "231836"}], [{"original_text": "We were all very happy to finally be done with school.", "album_id": "72157619680518585", "photo_flickr_id": "3626595475", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46367", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were all very happy to finally be done with school .", "storylet_id": "231837"}], [{"original_text": "I was very happy to receive my diploma.", "album_id": "72157619680518585", "photo_flickr_id": "3627411224", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46367", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was very happy to receive my diploma .", "storylet_id": "231838"}], [{"original_text": "My entire family came out to support me.", "album_id": "72157619680518585", "photo_flickr_id": "3626597027", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46367", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my entire family came out to support me .", "storylet_id": "231839"}], [{"original_text": "So many emotions filled my classmates on graduation day. Alistair seemed astonished.", "album_id": "72157619680518585", "photo_flickr_id": "3626595009", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46368", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so many emotions filled my classmates on graduation day . alistair seemed astonished .", "storylet_id": "231840"}], [{"original_text": "Navjot seemed impatient.", "album_id": "72157619680518585", "photo_flickr_id": "3626595055", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46368", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "navjot seemed impatient .", "storylet_id": "231841"}], [{"original_text": "But, we were also all happy about our accomplishments.", "album_id": "72157619680518585", "photo_flickr_id": "3626595475", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46368", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but , we were also all happy about our accomplishments .", "storylet_id": "231842"}], [{"original_text": "Especially me.", "album_id": "72157619680518585", "photo_flickr_id": "3627411224", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46368", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "especially me .", "storylet_id": "231843"}], [{"original_text": "Or, rather, I should say...Especially my family because I think they were the happiest of all.", "album_id": "72157619680518585", "photo_flickr_id": "3626597027", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46368", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "or , rather , i should say ... especially my family because i think they were the happiest of all .", "storylet_id": "231844"}], [{"original_text": "My friend Gary is about to graduate from college, he seems pretty happy.", "album_id": "72157619680518585", "photo_flickr_id": "3626595009", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "46369", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend [male] is about to graduate from college , he seems pretty happy .", "storylet_id": "231845"}], [{"original_text": "Here are a couple of his friends who are graduating with him.", "album_id": "72157619680518585", "photo_flickr_id": "3626595055", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "46369", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here are a couple of his friends who are graduating with him .", "storylet_id": "231846"}], [{"original_text": "I wanted to remember this day forever, So I took a picture of all my guys.", "album_id": "72157619680518585", "photo_flickr_id": "3626595475", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "46369", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i wanted to remember this day forever , so i took a picture of all my guys .", "storylet_id": "231847"}], [{"original_text": "Finally over, here I am with my degree in Art. I hope I get a job soon.", "album_id": "72157619680518585", "photo_flickr_id": "3627411224", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "46369", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally over , here i am with my degree in art . i hope i get a job soon .", "storylet_id": "231848"}], [{"original_text": "My family wanted to remember this day, now they have to help me pay my student debt.", "album_id": "72157619680518585", "photo_flickr_id": "3626597027", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "46369", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my family wanted to remember this day , now they have to help me pay my student debt .", "storylet_id": "231849"}], [{"original_text": "Mrs. Hoffman's choir class performed at the school today.", "album_id": "72157624153192795", "photo_flickr_id": "4701478893", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "46370", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mrs. hoffman 's choir class performed at the school today .", "storylet_id": "231850"}], [{"original_text": "The choir sang many classic songs.", "album_id": "72157624153192795", "photo_flickr_id": "4702120204", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "46370", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the choir sang many classic songs .", "storylet_id": "231851"}], [{"original_text": "All of the children put on the best performance the school had ever seen.", "album_id": "72157624153192795", "photo_flickr_id": "4701486299", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "46370", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of the children put on the best performance the school had ever seen .", "storylet_id": "231852"}], [{"original_text": "After the concert the children from the choir received rewards.", "album_id": "72157624153192795", "photo_flickr_id": "4702127404", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "46370", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the concert the children from the choir received rewards .", "storylet_id": "231853"}], [{"original_text": "Mrs.Hoffman was so proud of her very talented choir.", "album_id": "72157624153192795", "photo_flickr_id": "4701495469", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "46370", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mrs.hoffman was so proud of her very talented choir .", "storylet_id": "231854"}], [{"original_text": "There were many children at the Mill Street Orphanage.", "album_id": "72157624153192795", "photo_flickr_id": "4702120204", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "46371", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many children at the mill street orphanage .", "storylet_id": "231855"}], [{"original_text": "Each of them had giant name tags.", "album_id": "72157624153192795", "photo_flickr_id": "4701486299", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "46371", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each of them had giant name tags .", "storylet_id": "231856"}], [{"original_text": "The group was narrowed down to a few finalists eligible for adoption.", "album_id": "72157624153192795", "photo_flickr_id": "4701477749", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "46371", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the group was narrowed down to a few finalists eligible for adoption .", "storylet_id": "231857"}], [{"original_text": "The winner was announced.", "album_id": "72157624153192795", "photo_flickr_id": "4701481631", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "46371", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the winner was announced .", "storylet_id": "231858"}], [{"original_text": "The winner will leave the orphanage and join the Armed Services.", "album_id": "72157624153192795", "photo_flickr_id": "4702115900", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "46371", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the winner will leave the orphanage and join the organization organization .", "storylet_id": "231859"}], [{"original_text": "My husband and I are so proud of our daughter.", "album_id": "72157624153192795", "photo_flickr_id": "4701478893", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46372", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband and i are so proud of our daughter .", "storylet_id": "231860"}], [{"original_text": "She finally graduated from elementary school today.", "album_id": "72157624153192795", "photo_flickr_id": "4702120204", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46372", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she finally graduated from elementary school today .", "storylet_id": "231861"}], [{"original_text": "The rest of the parents were just as excited as we were.", "album_id": "72157624153192795", "photo_flickr_id": "4701486299", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46372", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the rest of the parents were just as excited as we were .", "storylet_id": "231862"}], [{"original_text": "She shook her teacher's hand and passed over into the next grade.", "album_id": "72157624153192795", "photo_flickr_id": "4702127404", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46372", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she shook her teacher 's hand and passed over into the next grade .", "storylet_id": "231863"}], [{"original_text": "All of the kids held up their diplomas with pride. ", "album_id": "72157624153192795", "photo_flickr_id": "4701495469", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46372", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of the kids held up their diplomas with pride .", "storylet_id": "231864"}], [{"original_text": "Mrs. Ellen was telling them all how proud she was of them. ", "album_id": "72157624153192795", "photo_flickr_id": "4701478893", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46373", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mrs. [female] was telling them all how proud she was of them .", "storylet_id": "231865"}], [{"original_text": "It was honors night for the 8th grade. ", "album_id": "72157624153192795", "photo_flickr_id": "4702120204", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46373", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was honors night for the 8th grade .", "storylet_id": "231866"}], [{"original_text": "Most of the kids were from underprivileged homes. ", "album_id": "72157624153192795", "photo_flickr_id": "4701486299", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46373", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most of the kids were from underprivileged homes .", "storylet_id": "231867"}], [{"original_text": "Allison had done exceedingly well. ", "album_id": "72157624153192795", "photo_flickr_id": "4702127404", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46373", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] had done exceedingly well .", "storylet_id": "231868"}], [{"original_text": "Especially considering she was from a foster home and had been in many. ", "album_id": "72157624153192795", "photo_flickr_id": "4701495469", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46373", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "especially considering she was from a foster home and had been in many .", "storylet_id": "231869"}], [{"original_text": "Ms. Naples addressed the fifth grader", "album_id": "72157624153192795", "photo_flickr_id": "4701478893", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "46374", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "ms. naples addressed the fifth grader", "storylet_id": "231870"}], [{"original_text": "The fifth grades had worked hard all year to move on to junior high ", "album_id": "72157624153192795", "photo_flickr_id": "4702120204", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "46374", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fifth grades had worked hard all year to move on to junior high", "storylet_id": "231871"}], [{"original_text": "They showed off their diplomas ", "album_id": "72157624153192795", "photo_flickr_id": "4701486299", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "46374", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they showed off their diplomas", "storylet_id": "231872"}], [{"original_text": "Casey was very proud to be valedictorian ", "album_id": "72157624153192795", "photo_flickr_id": "4702127404", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "46374", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was very proud to be valedictorian", "storylet_id": "231873"}], [{"original_text": "One more class picture. ", "album_id": "72157624153192795", "photo_flickr_id": "4701495469", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "46374", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one more class picture .", "storylet_id": "231874"}], [{"original_text": "I had to get ready for my performance yesterday. I was practicing for it for a month.", "album_id": "72157600078215468", "photo_flickr_id": "459585497", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46375", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had to get ready for my performance yesterday . i was practicing for it for a month .", "storylet_id": "231875"}], [{"original_text": "I was nervous during the event but it was okay.", "album_id": "72157600078215468", "photo_flickr_id": "459582546", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46375", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was nervous during the event but it was okay .", "storylet_id": "231876"}], [{"original_text": "I brought my dog with me to the event.", "album_id": "72157600078215468", "photo_flickr_id": "459584801", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46375", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i brought my dog with me to the event .", "storylet_id": "231877"}], [{"original_text": "My friends and family were there to support me.", "album_id": "72157600078215468", "photo_flickr_id": "459579448", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46375", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friends and family were there to support me .", "storylet_id": "231878"}], [{"original_text": "My dog was also there to support me.", "album_id": "72157600078215468", "photo_flickr_id": "459589209", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46375", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my dog was also there to support me .", "storylet_id": "231879"}], [{"original_text": "yesterday was my graduation from school and my friend helped me get dressed.", "album_id": "72157600078215468", "photo_flickr_id": "459583767", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "46376", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday was my graduation from school and my friend helped me get dressed .", "storylet_id": "231880"}], [{"original_text": "I was all set to go with my assistant dog.", "album_id": "72157600078215468", "photo_flickr_id": "459576020", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "46376", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was all set to go with my assistant dog .", "storylet_id": "231881"}], [{"original_text": "He wore a bright red harness to let everyone know he was working to help me with my ceremony.", "album_id": "72157600078215468", "photo_flickr_id": "459584801", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "46376", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he wore a bright red harness to let everyone know he was working to help me with my ceremony .", "storylet_id": "231882"}], [{"original_text": "He looked some handsome in his working vest.", "album_id": "72157600078215468", "photo_flickr_id": "459589915", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "46376", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he looked some handsome in his working vest .", "storylet_id": "231883"}], [{"original_text": "The ceremony was beautiful and we all had a good time.", "album_id": "72157600078215468", "photo_flickr_id": "459582546", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "46376", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ceremony was beautiful and we all had a good time .", "storylet_id": "231884"}], [{"original_text": "The city was filled with historic buildings. ", "album_id": "72157600078215468", "photo_flickr_id": "459585497", "setting": "last-3-pick-old-and-tell", "worker_id": "KWRKBK4LA7P15VW", "story_id": "46377", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city was filled with historic buildings .", "storylet_id": "231885"}], [{"original_text": "The choir gathered and sang a beautiful melody.", "album_id": "72157600078215468", "photo_flickr_id": "459582546", "setting": "last-3-pick-old-and-tell", "worker_id": "KWRKBK4LA7P15VW", "story_id": "46377", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the choir gathered and sang a beautiful melody .", "storylet_id": "231886"}], [{"original_text": "Finally dawning my appropriate uniform, I smile for the camera.", "album_id": "72157600078215468", "photo_flickr_id": "459584801", "setting": "last-3-pick-old-and-tell", "worker_id": "KWRKBK4LA7P15VW", "story_id": "46377", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally dawning my appropriate uniform , i smile for the camera .", "storylet_id": "231887"}], [{"original_text": "Two women pose with me and my dog.", "album_id": "72157600078215468", "photo_flickr_id": "459579448", "setting": "last-3-pick-old-and-tell", "worker_id": "KWRKBK4LA7P15VW", "story_id": "46377", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two women pose with me and my dog .", "storylet_id": "231888"}], [{"original_text": "The dog appears to smile for the camera as well.", "album_id": "72157600078215468", "photo_flickr_id": "459589209", "setting": "last-3-pick-old-and-tell", "worker_id": "KWRKBK4LA7P15VW", "story_id": "46377", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dog appears to smile for the camera as well .", "storylet_id": "231889"}], [{"original_text": "My sister had a huge day yesterday downtown!", "album_id": "72157600078215468", "photo_flickr_id": "459585497", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "46378", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister had a huge day yesterday downtown !", "storylet_id": "231890"}], [{"original_text": "She preformed a symphony with her class.", "album_id": "72157600078215468", "photo_flickr_id": "459582546", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "46378", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she preformed a symphony with her class .", "storylet_id": "231891"}], [{"original_text": "Of course, she brought her PTSD dog with her.", "album_id": "72157600078215468", "photo_flickr_id": "459584801", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "46378", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course , she brought her ptsd dog with her .", "storylet_id": "231892"}], [{"original_text": "My mother and I were so happy for her, she's never been in front of a crowd that big.", "album_id": "72157600078215468", "photo_flickr_id": "459579448", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "46378", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my mother and i were so happy for her , she 's never been in front of a crowd that big .", "storylet_id": "231893"}], [{"original_text": "It wouldn't be possible without the dog.", "album_id": "72157600078215468", "photo_flickr_id": "459589209", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "46378", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it would n't be possible without the dog .", "storylet_id": "231894"}], [{"original_text": "A lady and her sisters went to an event in the city.", "album_id": "72157600078215468", "photo_flickr_id": "459585497", "setting": "last-3-pick-old-and-tell", "worker_id": "COVJF7JW8E32K8Z", "story_id": "46379", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a lady and her sisters went to an event in the city .", "storylet_id": "231895"}], [{"original_text": "They saw a musical performance at their local church.", "album_id": "72157600078215468", "photo_flickr_id": "459582546", "setting": "last-3-pick-old-and-tell", "worker_id": "COVJF7JW8E32K8Z", "story_id": "46379", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they saw a musical performance at their local church .", "storylet_id": "231896"}], [{"original_text": "The lady thought it would be a good idea, so she took her dog along.", "album_id": "72157600078215468", "photo_flickr_id": "459584801", "setting": "last-3-pick-old-and-tell", "worker_id": "COVJF7JW8E32K8Z", "story_id": "46379", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lady thought it would be a good idea , so she took her dog along .", "storylet_id": "231897"}], [{"original_text": "After the performance, they posed for a photo.", "album_id": "72157600078215468", "photo_flickr_id": "459579448", "setting": "last-3-pick-old-and-tell", "worker_id": "COVJF7JW8E32K8Z", "story_id": "46379", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the performance , they posed for a photo .", "storylet_id": "231898"}], [{"original_text": "The dog really enjoyed the trip, and they decided to bring him along next time.", "album_id": "72157600078215468", "photo_flickr_id": "459589209", "setting": "last-3-pick-old-and-tell", "worker_id": "COVJF7JW8E32K8Z", "story_id": "46379", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dog really enjoyed the trip , and they decided to bring him along next time .", "storylet_id": "231899"}], [{"original_text": "It was graduation time for students.", "album_id": "72157624516029402", "photo_flickr_id": "4799392071", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "46380", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was graduation time for students .", "storylet_id": "231900"}], [{"original_text": "Students and friends posed for pictures together.", "album_id": "72157624516029402", "photo_flickr_id": "4800007338", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "46380", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "students and friends posed for pictures together .", "storylet_id": "231901"}], [{"original_text": "Parents arrived at the ceremony.", "album_id": "72157624516029402", "photo_flickr_id": "4799940834", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "46380", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "parents arrived at the ceremony .", "storylet_id": "231902"}], [{"original_text": "The parents took pictures with their graduating students.", "album_id": "72157624516029402", "photo_flickr_id": "4799942142", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "46380", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the parents took pictures with their graduating students .", "storylet_id": "231903"}], [{"original_text": "Friends were full of smiles knowing that they were finished with school. ", "album_id": "72157624516029402", "photo_flickr_id": "4799946376", "setting": "first-2-pick-and-tell", "worker_id": "9USKRSSC0EK8GWB", "story_id": "46380", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "friends were full of smiles knowing that they were finished with school .", "storylet_id": "231904"}], [{"original_text": "The woman had completed her program and was celebrating her graduation from the art university. She got a quick photo of her forormer professors.", "album_id": "72157624516029402", "photo_flickr_id": "4799389755", "setting": "first-2-pick-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "46381", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the woman had completed her program and was celebrating her graduation from the art university . she got a quick photo of her forormer professors .", "storylet_id": "231905"}], [{"original_text": "The woman was ecstatic, and it showed with the huge smile on her face.", "album_id": "72157624516029402", "photo_flickr_id": "4799392071", "setting": "first-2-pick-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "46381", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the woman was ecstatic , and it showed with the huge smile on her face .", "storylet_id": "231906"}], [{"original_text": "To remember her best friends, she made sure to gather them together.", "album_id": "72157624516029402", "photo_flickr_id": "4800007338", "setting": "first-2-pick-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "46381", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "to remember her best friends , she made sure to gather them together .", "storylet_id": "231907"}], [{"original_text": "She had been very social at the university, and saw more of her friends as the day carried on.", "album_id": "72157624516029402", "photo_flickr_id": "4799946376", "setting": "first-2-pick-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "46381", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she had been very social at the university , and saw more of her friends as the day carried on .", "storylet_id": "231908"}], [{"original_text": "She made sure to get one last shot of the art installation she had worked on before leaving the campus.", "album_id": "72157624516029402", "photo_flickr_id": "4799939140", "setting": "first-2-pick-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "46381", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she made sure to get one last shot of the art installation she had worked on before leaving the campus .", "storylet_id": "231909"}], [{"original_text": "Many family members were their with their students, all excited.", "album_id": "72157624516029402", "photo_flickr_id": "4799389755", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46382", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many family members were their with their students , all excited .", "storylet_id": "231910"}], [{"original_text": "This girl was clearly very happy to be graduating!", "album_id": "72157624516029402", "photo_flickr_id": "4799392071", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46382", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this girl was clearly very happy to be graduating !", "storylet_id": "231911"}], [{"original_text": "Students gather in groups, nervous or excited and usually a bit of both.", "album_id": "72157624516029402", "photo_flickr_id": "4800007338", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46382", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "students gather in groups , nervous or excited and usually a bit of both .", "storylet_id": "231912"}], [{"original_text": "These two friends look forward to entering the real world.", "album_id": "72157624516029402", "photo_flickr_id": "4799946376", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46382", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these two friends look forward to entering the real world .", "storylet_id": "231913"}], [{"original_text": "This fun structure brought some whimsy to the day.", "album_id": "72157624516029402", "photo_flickr_id": "4799939140", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "46382", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this fun structure brought some whimsy to the day .", "storylet_id": "231914"}], [{"original_text": "The Lincoln High School graduation happened today.", "album_id": "72157624516029402", "photo_flickr_id": "4799392071", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46383", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization organization organization graduation happened today .", "storylet_id": "231915"}], [{"original_text": "I attended to see a lot of people be happy.", "album_id": "72157624516029402", "photo_flickr_id": "4800007338", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46383", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i attended to see a lot of people be happy .", "storylet_id": "231916"}], [{"original_text": "Parents were smiling from ear to ear the whole time.", "album_id": "72157624516029402", "photo_flickr_id": "4799940834", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46383", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "parents were smiling from ear to ear the whole time .", "storylet_id": "231917"}], [{"original_text": "Some people came very dressed up for the occasion.", "album_id": "72157624516029402", "photo_flickr_id": "4799942142", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46383", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people came very dressed up for the occasion .", "storylet_id": "231918"}], [{"original_text": "Best friends posed for one of the last times they will see each other. ", "album_id": "72157624516029402", "photo_flickr_id": "4799946376", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46383", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "best friends posed for one of the last times they will see each other .", "storylet_id": "231919"}], [{"original_text": "She had smoked pot right before. ", "album_id": "72157624516029402", "photo_flickr_id": "4799389755", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46384", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she had smoked pot right before .", "storylet_id": "231920"}], [{"original_text": "So had she. ", "album_id": "72157624516029402", "photo_flickr_id": "4799392071", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46384", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so had she .", "storylet_id": "231921"}], [{"original_text": "They smoked pot everyday of high school. ", "album_id": "72157624516029402", "photo_flickr_id": "4800007338", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46384", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they smoked pot everyday of high school .", "storylet_id": "231922"}], [{"original_text": "Wouldn't you know it, they still graduated. ", "album_id": "72157624516029402", "photo_flickr_id": "4799946376", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46384", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "would n't you know it , they still graduated .", "storylet_id": "231923"}], [{"original_text": "They should bring it in by the crateful according to them.", "album_id": "72157624516029402", "photo_flickr_id": "4799939140", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46384", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they should bring it in by the crateful according to them .", "storylet_id": "231924"}], [{"original_text": "Everyone was cheering for Dalton today at the big game.", "album_id": "72157622470704661", "photo_flickr_id": "3540551385", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46385", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was cheering for [male] today at the big game .", "storylet_id": "231925"}], [{"original_text": "Dalton was the quarterback for the team and he had been doing fairly well.", "album_id": "72157622470704661", "photo_flickr_id": "3541358696", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46385", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was the quarterback for the team and he had been doing fairly well .", "storylet_id": "231926"}], [{"original_text": "However it had come to his attention that the school board officials decided if he lost this game he would be expelled.", "album_id": "72157622470704661", "photo_flickr_id": "3540551935", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46385", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however it had come to his attention that the school board officials decided if he lost this game he would be expelled .", "storylet_id": "231927"}], [{"original_text": "The scoreboard at the end of the game was unfortunately not in his favor.", "album_id": "72157622470704661", "photo_flickr_id": "3540546869", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46385", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the scoreboard at the end of the game was unfortunately not in his favor .", "storylet_id": "231928"}], [{"original_text": "He left the school forever, and had to find a new source of education. He went to Brown College and became a scientist. ", "album_id": "72157622470704661", "photo_flickr_id": "3541360416", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46385", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he left the school forever , and had to find a new source of education . he went to organization organization and became a scientist .", "storylet_id": "231929"}], [{"original_text": "The stadium was about to be packed for the VT commencement ceremony!", "album_id": "72157622470704661", "photo_flickr_id": "3541355238", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46386", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stadium was about to be packed for the vt commencement ceremony !", "storylet_id": "231930"}], [{"original_text": "All of the graduates were anxious for it to start.", "album_id": "72157622470704661", "photo_flickr_id": "3541356300", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46386", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the graduates were anxious for it to start .", "storylet_id": "231931"}], [{"original_text": "Finally, it began, the degrees distributed.", "album_id": "72157622470704661", "photo_flickr_id": "3540546869", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46386", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally , it began , the degrees distributed .", "storylet_id": "231932"}], [{"original_text": "Each were individually called,", "album_id": "72157622470704661", "photo_flickr_id": "3540551759", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46386", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "each were individually called ,", "storylet_id": "231933"}], [{"original_text": "and received their own diploma to display!", "album_id": "72157622470704661", "photo_flickr_id": "3541360416", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46386", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and received their own diploma to display !", "storylet_id": "231934"}], [{"original_text": "There was a huge audience at the graduation ceremony last week.", "album_id": "72157622470704661", "photo_flickr_id": "3540551385", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46387", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a huge audience at the graduation ceremony last week .", "storylet_id": "231935"}], [{"original_text": "Everyone in town was there.", "album_id": "72157622470704661", "photo_flickr_id": "3541358696", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46387", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone in town was there .", "storylet_id": "231936"}], [{"original_text": "All of the speakers took several minutes to deliver their speeches.", "album_id": "72157622470704661", "photo_flickr_id": "3540551935", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46387", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of the speakers took several minutes to deliver their speeches .", "storylet_id": "231937"}], [{"original_text": "We used the sports stadium for the event.", "album_id": "72157622470704661", "photo_flickr_id": "3540546869", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46387", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we used the sports stadium for the event .", "storylet_id": "231938"}], [{"original_text": "Everyone was really happy to receive their diploma at the end.", "album_id": "72157622470704661", "photo_flickr_id": "3541360416", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46387", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was really happy to receive their diploma at the end .", "storylet_id": "231939"}], [{"original_text": "We were all so proud on our Graduation day.", "album_id": "72157622470704661", "photo_flickr_id": "3541355238", "setting": "last-3-pick-old-and-tell", "worker_id": "PFXI98Z7K09QSPN", "story_id": "46388", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were all so proud on our graduation day .", "storylet_id": "231940"}], [{"original_text": "We had a wonderful speaker who really knew how we felt and what we were about to do with our lives.", "album_id": "72157622470704661", "photo_flickr_id": "3541356300", "setting": "last-3-pick-old-and-tell", "worker_id": "PFXI98Z7K09QSPN", "story_id": "46388", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a wonderful speaker who really knew how we felt and what we were about to do with our lives .", "storylet_id": "231941"}], [{"original_text": "The Giant Football stadium was full to capacity and the billboard was lit just for us Graduates.", "album_id": "72157622470704661", "photo_flickr_id": "3540546869", "setting": "last-3-pick-old-and-tell", "worker_id": "PFXI98Z7K09QSPN", "story_id": "46388", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the giant football stadium was full to capacity and the billboard was lit just for us graduates .", "storylet_id": "231942"}], [{"original_text": "My parents were so proud when I marched up to accept my diploma.", "album_id": "72157622470704661", "photo_flickr_id": "3540551759", "setting": "last-3-pick-old-and-tell", "worker_id": "PFXI98Z7K09QSPN", "story_id": "46388", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my parents were so proud when i marched up to accept my diploma .", "storylet_id": "231943"}], [{"original_text": "Graduation day is a day I will never forget!", "album_id": "72157622470704661", "photo_flickr_id": "3541360416", "setting": "last-3-pick-old-and-tell", "worker_id": "PFXI98Z7K09QSPN", "story_id": "46388", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "graduation day is a day i will never forget !", "storylet_id": "231944"}], [{"original_text": "The stands were absolutely packed at this year's Virginia Tech graduation ceremony.", "album_id": "72157622470704661", "photo_flickr_id": "3540551385", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46389", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stands were absolutely packed at this year 's location tech graduation ceremony .", "storylet_id": "231945"}], [{"original_text": "There were literally seas of people almost as if there was a sporting event.", "album_id": "72157622470704661", "photo_flickr_id": "3541358696", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46389", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were literally seas of people almost as if there was a sporting event .", "storylet_id": "231946"}], [{"original_text": "The commencement came with speeches from the top students in the graduating class.", "album_id": "72157622470704661", "photo_flickr_id": "3540551935", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46389", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the commencement came with speeches from the top students in the graduating class .", "storylet_id": "231947"}], [{"original_text": "The scoreboard was lit up with a congratulatory message.", "album_id": "72157622470704661", "photo_flickr_id": "3540546869", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46389", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the scoreboard was lit up with a congratulatory message .", "storylet_id": "231948"}], [{"original_text": "I will be keeping the program in remembrance of the graduation.", "album_id": "72157622470704661", "photo_flickr_id": "3541360416", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46389", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i will be keeping the program in remembrance of the graduation .", "storylet_id": "231949"}], [{"original_text": "Paul was proud to be graduating today.", "album_id": "72157624446083413", "photo_flickr_id": "4823238757", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "46390", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was proud to be graduating today .", "storylet_id": "231950"}], [{"original_text": "After getting his diploma he sat with the other students.", "album_id": "72157624446083413", "photo_flickr_id": "4823198577", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "46390", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after getting his diploma he sat with the other students .", "storylet_id": "231951"}], [{"original_text": "He listened to the dean give a speech.", "album_id": "72157624446083413", "photo_flickr_id": "4823203085", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "46390", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he listened to the dean give a speech .", "storylet_id": "231952"}], [{"original_text": "He was proud to hold his diploma in his hand.", "album_id": "72157624446083413", "photo_flickr_id": "4823822082", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "46390", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was proud to hold his diploma in his hand .", "storylet_id": "231953"}], [{"original_text": "Today was great day. The future was bright.", "album_id": "72157624446083413", "photo_flickr_id": "4823833432", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "46390", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "today was great day . the future was bright .", "storylet_id": "231954"}], [{"original_text": "A close up picture of Robert receiving his diploma from the dean of the college. ", "album_id": "72157624446083413", "photo_flickr_id": "4823238757", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "46391", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a close up picture of [male] receiving his diploma from the dean of the college .", "storylet_id": "231955"}], [{"original_text": "After getting his diploma Robert headed back to his seat, looking as if he was unsure what to do next.", "album_id": "72157624446083413", "photo_flickr_id": "4823814696", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "46391", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after getting his diploma [male] headed back to his seat , looking as if he was unsure what to do next .", "storylet_id": "231956"}], [{"original_text": "A close up of the lineup of students and speakers for the ceremony.", "album_id": "72157624446083413", "photo_flickr_id": "4823815566", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "46391", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a close up of the lineup of students and speakers for the ceremony .", "storylet_id": "231957"}], [{"original_text": "Shortly after looking at the list I snapped this picture of the dean giving his address to the graduated seniors. ", "album_id": "72157624446083413", "photo_flickr_id": "4823205091", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "46391", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "shortly after looking at the list i snapped this picture of the dean giving his address to the graduated seniors .", "storylet_id": "231958"}], [{"original_text": "Robert standing proudly with his diploma in arm after graduation.", "album_id": "72157624446083413", "photo_flickr_id": "4823822082", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "46391", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] standing proudly with his diploma in arm after graduation .", "storylet_id": "231959"}], [{"original_text": "The students went out to the stage to receive their diplomas.", "album_id": "72157624446083413", "photo_flickr_id": "4823238757", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46392", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the students went out to the stage to receive their diplomas .", "storylet_id": "231960"}], [{"original_text": "The students said their final goodbyes to their friends. ", "album_id": "72157624446083413", "photo_flickr_id": "4823198577", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46392", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the students said their final goodbyes to their friends .", "storylet_id": "231961"}], [{"original_text": "The dean of the school left the stage when he was done speaking.", "album_id": "72157624446083413", "photo_flickr_id": "4823203085", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46392", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dean of the school left the stage when he was done speaking .", "storylet_id": "231962"}], [{"original_text": "Then the students went outside to get their photo taken.", "album_id": "72157624446083413", "photo_flickr_id": "4823822082", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46392", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then the students went outside to get their photo taken .", "storylet_id": "231963"}], [{"original_text": "After that people began to leave the graduation.", "album_id": "72157624446083413", "photo_flickr_id": "4823833432", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46392", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that people began to leave the graduation .", "storylet_id": "231964"}], [{"original_text": "He shook hands with each student and handed them there diploma's. ", "album_id": "72157624446083413", "photo_flickr_id": "4823238757", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46393", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he shook hands with each student and handed them there diploma 's .", "storylet_id": "231965"}], [{"original_text": "Envelopes were in each seat. ", "album_id": "72157624446083413", "photo_flickr_id": "4823814696", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46393", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "envelopes were in each seat .", "storylet_id": "231966"}], [{"original_text": "A philanthropic member of the alumni wanted to give them gifts. ", "album_id": "72157624446083413", "photo_flickr_id": "4823815566", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46393", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a philanthropic member of the alumni wanted to give them gifts .", "storylet_id": "231967"}], [{"original_text": "He had been encouraged to start a scholarship program but refused. ", "album_id": "72157624446083413", "photo_flickr_id": "4823205091", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46393", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he had been encouraged to start a scholarship program but refused .", "storylet_id": "231968"}], [{"original_text": "He wanted to see their faces when they got their envelopes, he also wanted anonymity. ", "album_id": "72157624446083413", "photo_flickr_id": "4823822082", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46393", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he wanted to see their faces when they got their envelopes , he also wanted anonymity .", "storylet_id": "231969"}], [{"original_text": "Graduating from collage today!", "album_id": "72157624446083413", "photo_flickr_id": "4823238757", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46394", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "graduating from collage today !", "storylet_id": "231970"}], [{"original_text": "Mom taking photos of me from afar.", "album_id": "72157624446083413", "photo_flickr_id": "4823198577", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46394", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom taking photos of me from afar .", "storylet_id": "231971"}], [{"original_text": "About to accept my diploma!", "album_id": "72157624446083413", "photo_flickr_id": "4823203085", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46394", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "about to accept my diploma !", "storylet_id": "231972"}], [{"original_text": "Mom wanted an over dramatic picture.", "album_id": "72157624446083413", "photo_flickr_id": "4823822082", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46394", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom wanted an over dramatic picture .", "storylet_id": "231973"}], [{"original_text": "Last time i'll be seeing this place!", "album_id": "72157624446083413", "photo_flickr_id": "4823833432", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46394", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last time i 'll be seeing this place !", "storylet_id": "231974"}], [{"original_text": "Her graduation picture. ", "album_id": "72157627969263208", "photo_flickr_id": "6276934381", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46395", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "her graduation picture .", "storylet_id": "231975"}], [{"original_text": "Giving a certificate to the man for his work. ", "album_id": "72157627969263208", "photo_flickr_id": "6276936307", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46395", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "giving a certificate to the man for his work .", "storylet_id": "231976"}], [{"original_text": "Giving a certificate to the lady. ", "album_id": "72157627969263208", "photo_flickr_id": "6276937723", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46395", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "giving a certificate to the lady .", "storylet_id": "231977"}], [{"original_text": "Making a speech at the graduation.", "album_id": "72157627969263208", "photo_flickr_id": "6277475152", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46395", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "making a speech at the graduation .", "storylet_id": "231978"}], [{"original_text": "Getting her honorary degree. ", "album_id": "72157627969263208", "photo_flickr_id": "6277481478", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46395", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "getting her honorary degree .", "storylet_id": "231979"}], [{"original_text": "This lady is a president of a university.", "album_id": "72157627969263208", "photo_flickr_id": "6276934381", "setting": "first-2-pick-and-tell", "worker_id": "VAYSP22AKCMEDZW", "story_id": "46396", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this lady is a president of a university .", "storylet_id": "231980"}], [{"original_text": "The president of the University gives out diplomas today.", "album_id": "72157627969263208", "photo_flickr_id": "6276937723", "setting": "first-2-pick-and-tell", "worker_id": "VAYSP22AKCMEDZW", "story_id": "46396", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the president of the organization gives out diplomas today .", "storylet_id": "231981"}], [{"original_text": "The president fives her speech for the graduates.", "album_id": "72157627969263208", "photo_flickr_id": "6277460298", "setting": "first-2-pick-and-tell", "worker_id": "VAYSP22AKCMEDZW", "story_id": "46396", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the president fives her speech for the graduates .", "storylet_id": "231982"}], [{"original_text": "The woman walks off the stage with a hat on after her speech.", "album_id": "72157627969263208", "photo_flickr_id": "6276938875", "setting": "first-2-pick-and-tell", "worker_id": "VAYSP22AKCMEDZW", "story_id": "46396", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the woman walks off the stage with a hat on after her speech .", "storylet_id": "231983"}], [{"original_text": "The president is greeted by a US Navy soldier and thanks him for her service.", "album_id": "72157627969263208", "photo_flickr_id": "6276940565", "setting": "first-2-pick-and-tell", "worker_id": "VAYSP22AKCMEDZW", "story_id": "46396", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the president is greeted by a organization organization soldier and thanks him for her service .", "storylet_id": "231984"}], [{"original_text": "This weekend, we honored our mayor, who was retiring. ", "album_id": "72157627969263208", "photo_flickr_id": "6276934381", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "46397", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this weekend , we honored our mayor , who was retiring .", "storylet_id": "231985"}], [{"original_text": "A city council member gave her a certificate. ", "album_id": "72157627969263208", "photo_flickr_id": "6276936307", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "46397", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a city council member gave her a certificate .", "storylet_id": "231986"}], [{"original_text": "The head of our local PTA gave her a plaque. ", "album_id": "72157627969263208", "photo_flickr_id": "6276937723", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "46397", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the head of our local organization gave her a plaque .", "storylet_id": "231987"}], [{"original_text": "Later, the mayor spoke at a graduation ceremony. ", "album_id": "72157627969263208", "photo_flickr_id": "6277475152", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "46397", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later , the mayor spoke at a graduation ceremony .", "storylet_id": "231988"}], [{"original_text": "She was proud to had graduates their diplomas. ", "album_id": "72157627969263208", "photo_flickr_id": "6277481478", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "46397", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was proud to had graduates their diplomas .", "storylet_id": "231989"}], [{"original_text": "She was concerned but she tried desperately not to show it. ", "album_id": "72157627969263208", "photo_flickr_id": "6276934381", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46398", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she was concerned but she tried desperately not to show it .", "storylet_id": "231990"}], [{"original_text": "There best art teacher was retiring. ", "album_id": "72157627969263208", "photo_flickr_id": "6276936307", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46398", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there best art teacher was retiring .", "storylet_id": "231991"}], [{"original_text": "No one knew yet who would replace her. ", "album_id": "72157627969263208", "photo_flickr_id": "6276937723", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46398", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "no one knew yet who would replace her .", "storylet_id": "231992"}], [{"original_text": "When she addressed the class the made the announcement. ", "album_id": "72157627969263208", "photo_flickr_id": "6277475152", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46398", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when she addressed the class the made the announcement .", "storylet_id": "231993"}], [{"original_text": "No one wanted to see Mrs. Carwile retire but they were beginning to accept it was her time. ", "album_id": "72157627969263208", "photo_flickr_id": "6277481478", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46398", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "no one wanted to see mrs. carwile retire but they were beginning to accept it was her time .", "storylet_id": "231994"}], [{"original_text": "This is my last year as dean of this college.", "album_id": "72157627969263208", "photo_flickr_id": "6276934381", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46399", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my last year as dean of this college .", "storylet_id": "231995"}], [{"original_text": "Some photos of a recent event.", "album_id": "72157627969263208", "photo_flickr_id": "6276936307", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46399", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some photos of a recent event .", "storylet_id": "231996"}], [{"original_text": "Talking to some of the teachers after a speech.", "album_id": "72157627969263208", "photo_flickr_id": "6276937723", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46399", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "talking to some of the teachers after a speech .", "storylet_id": "231997"}], [{"original_text": "Giving a speech to the last students to graduate under my watch.", "album_id": "72157627969263208", "photo_flickr_id": "6277475152", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46399", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "giving a speech to the last students to graduate under my watch .", "storylet_id": "231998"}], [{"original_text": "Shaking the valedictorian's hand. ", "album_id": "72157627969263208", "photo_flickr_id": "6277481478", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46399", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "shaking the valedictorian 's hand .", "storylet_id": "231999"}], [{"original_text": "It was graduation day, and all of the graduates went to the football field for the ceremony.", "album_id": "72157618984682634", "photo_flickr_id": "3575862648", "setting": "first-2-pick-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "46400", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was graduation day , and all of the graduates went to the football field for the ceremony .", "storylet_id": "232000"}], [{"original_text": "They filed to their seats in two single-file lines.", "album_id": "72157618984682634", "photo_flickr_id": "3575054125", "setting": "first-2-pick-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "46400", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they filed to their seats in two single-file lines .", "storylet_id": "232001"}], [{"original_text": "A distinguished man in a suit came to give the commencement address.", "album_id": "72157618984682634", "photo_flickr_id": "3575863486", "setting": "first-2-pick-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "46400", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a distinguished man in a suit came to give the commencement address .", "storylet_id": "232002"}], [{"original_text": "The entire class sat and listened to the man speak.", "album_id": "72157618984682634", "photo_flickr_id": "3575863876", "setting": "first-2-pick-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "46400", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the entire class sat and listened to the man speak .", "storylet_id": "232003"}], [{"original_text": "Afterwards, one of the graduates pose for pictures with her family.", "album_id": "72157618984682634", "photo_flickr_id": "3575199834", "setting": "first-2-pick-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "46400", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , one of the graduates pose for pictures with her family .", "storylet_id": "232004"}], [{"original_text": "Today was graduation day for Parkerson High school.", "album_id": "72157618984682634", "photo_flickr_id": "3575054629", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46401", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was graduation day for organization organization organization .", "storylet_id": "232005"}], [{"original_text": "All of the students were to be graduated on the football field.", "album_id": "72157618984682634", "photo_flickr_id": "3575863876", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46401", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the students were to be graduated on the football field .", "storylet_id": "232006"}], [{"original_text": "Kelly was graduated and she is very happy about it. here she is with her mother", "album_id": "72157618984682634", "photo_flickr_id": "3575199834", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46401", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] was graduated and she is very happy about it . here she is with her mother", "storylet_id": "232007"}], [{"original_text": "Her father couldn't be prouder of her. Maybe now she can get out of the house!", "album_id": "72157618984682634", "photo_flickr_id": "3575200142", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46401", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her father could n't be prouder of her . maybe now she can get out of the house !", "storylet_id": "232008"}], [{"original_text": "\"You're next sis!\" Kelly said to Trisha. Trisha was not amused.", "album_id": "72157618984682634", "photo_flickr_id": "3575056859", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46401", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "`` you 're next sis ! '' [female] said to [female] . [female] was not amused .", "storylet_id": "232009"}], [{"original_text": "The graduation ceremony was beautiful last weekend.", "album_id": "72157618984682634", "photo_flickr_id": "3575054629", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46402", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the graduation ceremony was beautiful last weekend .", "storylet_id": "232010"}], [{"original_text": "There were a lot of students there.", "album_id": "72157618984682634", "photo_flickr_id": "3575863876", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46402", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of students there .", "storylet_id": "232011"}], [{"original_text": "Many family members showed up to support me.", "album_id": "72157618984682634", "photo_flickr_id": "3575199834", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46402", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many family members showed up to support me .", "storylet_id": "232012"}], [{"original_text": "I was very happy to see them all.", "album_id": "72157618984682634", "photo_flickr_id": "3575200142", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46402", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was very happy to see them all .", "storylet_id": "232013"}], [{"original_text": "They all got me a lot of flowers.", "album_id": "72157618984682634", "photo_flickr_id": "3575056859", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46402", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all got me a lot of flowers .", "storylet_id": "232014"}], [{"original_text": "The dean gave a motivating speech at the Betsy's graduation ceremony.", "album_id": "72157618984682634", "photo_flickr_id": "3575054629", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46403", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dean gave a motivating speech at the [female] 's graduation ceremony .", "storylet_id": "232015"}], [{"original_text": "It took a long time to get through everybody.", "album_id": "72157618984682634", "photo_flickr_id": "3575863876", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46403", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it took a long time to get through everybody .", "storylet_id": "232016"}], [{"original_text": "Afterwards, Betsy was so happy. She took a picture with her Mom.", "album_id": "72157618984682634", "photo_flickr_id": "3575199834", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46403", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards , [female] was so happy . she took a picture with her mom .", "storylet_id": "232017"}], [{"original_text": "And a picture with her Grandpa.", "album_id": "72157618984682634", "photo_flickr_id": "3575200142", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46403", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and a picture with her grandpa .", "storylet_id": "232018"}], [{"original_text": "And, even a picture with her bratty little sister, Bitsy.", "album_id": "72157618984682634", "photo_flickr_id": "3575056859", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46403", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , even a picture with her bratty little sister , bitsy .", "storylet_id": "232019"}], [{"original_text": "Graduates file onto the field for their graduation ceremony.", "album_id": "72157618984682634", "photo_flickr_id": "3575862648", "setting": "last-3-pick-old-and-tell", "worker_id": "H1AWMK4A4CPH8FT", "story_id": "46404", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "graduates file onto the field for their graduation ceremony .", "storylet_id": "232020"}], [{"original_text": "The field is becoming an excited sea of blue and white.", "album_id": "72157618984682634", "photo_flickr_id": "3575054125", "setting": "last-3-pick-old-and-tell", "worker_id": "H1AWMK4A4CPH8FT", "story_id": "46404", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the field is becoming an excited sea of blue and white .", "storylet_id": "232021"}], [{"original_text": "The dean gives his speech to the families and graduates.", "album_id": "72157618984682634", "photo_flickr_id": "3575863486", "setting": "last-3-pick-old-and-tell", "worker_id": "H1AWMK4A4CPH8FT", "story_id": "46404", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dean gives his speech to the families and graduates .", "storylet_id": "232022"}], [{"original_text": "The students wait anxiously for the dean to be done so they can officially graduate.", "album_id": "72157618984682634", "photo_flickr_id": "3575863876", "setting": "last-3-pick-old-and-tell", "worker_id": "H1AWMK4A4CPH8FT", "story_id": "46404", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the students wait anxiously for the dean to be done so they can officially graduate .", "storylet_id": "232023"}], [{"original_text": "Proud family members line up to pose with the new graduates.", "album_id": "72157618984682634", "photo_flickr_id": "3575199834", "setting": "last-3-pick-old-and-tell", "worker_id": "H1AWMK4A4CPH8FT", "story_id": "46404", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "proud family members line up to pose with the new graduates .", "storylet_id": "232024"}], [{"original_text": "We were all excited to attend the graduation. I looked through the program to see what was going to happen.", "album_id": "72157625082585609", "photo_flickr_id": "4946433766", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46405", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were all excited to attend the graduation . i looked through the program to see what was going to happen .", "storylet_id": "232025"}], [{"original_text": "A lot of people showed up. Family and friends both attended.", "album_id": "72157625082585609", "photo_flickr_id": "4945849317", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46405", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of people showed up . family and friends both attended .", "storylet_id": "232026"}], [{"original_text": "Some folks needed help with their collars being tucked into their graduation gown.", "album_id": "72157625082585609", "photo_flickr_id": "4946436736", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46405", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some folks needed help with their collars being tucked into their graduation gown .", "storylet_id": "232027"}], [{"original_text": "The multitude of graduates paraded in for the ceremony.", "album_id": "72157625082585609", "photo_flickr_id": "4946437080", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46405", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the multitude of graduates paraded in for the ceremony .", "storylet_id": "232028"}], [{"original_text": "The graduates were a proud sight as they listened attentively.", "album_id": "72157625082585609", "photo_flickr_id": "4946439950", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "46405", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the graduates were a proud sight as they listened attentively .", "storylet_id": "232029"}], [{"original_text": "My Grammie was determined to make it to my college graduation.", "album_id": "72157625082585609", "photo_flickr_id": "4946433766", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46406", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my grammie was determined to make it to my college graduation .", "storylet_id": "232030"}], [{"original_text": "It wasn't easy. We had to get her from her assisted living, and she needed a lot of rest before we left.", "album_id": "72157625082585609", "photo_flickr_id": "4945849317", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46406", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was n't easy . we had to get her from her assisted living , and she needed a lot of rest before we left .", "storylet_id": "232031"}], [{"original_text": "But she made it, and so did I! I was so happy she was going to see my big moment.", "album_id": "72157625082585609", "photo_flickr_id": "4945847695", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46406", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but she made it , and so did i ! i was so happy she was going to see my big moment .", "storylet_id": "232032"}], [{"original_text": "The fact I got to speak at graduation was icing on the cake. Grammie's hearing isn't the best, but she could see me there!", "album_id": "72157625082585609", "photo_flickr_id": "4945853951", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46406", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fact i got to speak at graduation was icing on the cake . grammie 's hearing is n't the best , but she could see me there !", "storylet_id": "232033"}], [{"original_text": "I looked at her out in the audience the whole time I spoke!", "album_id": "72157625082585609", "photo_flickr_id": "4946438536", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46406", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i looked at her out in the audience the whole time i spoke !", "storylet_id": "232034"}], [{"original_text": "My grandma ahowed up for my graduation even though she dosnt get out much anymore.", "album_id": "72157625082585609", "photo_flickr_id": "4946433766", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46407", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my grandma ahowed up for my graduation even though she dosnt get out much anymore .", "storylet_id": "232035"}], [{"original_text": "In fact the whole family came from all over the state.", "album_id": "72157625082585609", "photo_flickr_id": "4945849317", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46407", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in fact the whole family came from all over the state .", "storylet_id": "232036"}], [{"original_text": "All the graduation students were pretty pumped to finally have school over.", "album_id": "72157625082585609", "photo_flickr_id": "4945847695", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46407", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the graduation students were pretty pumped to finally have school over .", "storylet_id": "232037"}], [{"original_text": "This speaker had a great motivational talk with everyone.", "album_id": "72157625082585609", "photo_flickr_id": "4945853951", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46407", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this speaker had a great motivational talk with everyone .", "storylet_id": "232038"}], [{"original_text": "The auditorium was packed with people to see their family graduate.", "album_id": "72157625082585609", "photo_flickr_id": "4946438536", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46407", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the auditorium was packed with people to see their family graduate .", "storylet_id": "232039"}], [{"original_text": "Granny Nancy read her book for hours.", "album_id": "72157625082585609", "photo_flickr_id": "4946433766", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46408", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "granny [female] read her book for hours .", "storylet_id": "232040"}], [{"original_text": "The graduation party was just getting started.", "album_id": "72157625082585609", "photo_flickr_id": "4945849317", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46408", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the graduation party was just getting started .", "storylet_id": "232041"}], [{"original_text": "My son graduated the next day.", "album_id": "72157625082585609", "photo_flickr_id": "4945847695", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46408", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my son graduated the next day .", "storylet_id": "232042"}], [{"original_text": "The faculty were all proud of my son.", "album_id": "72157625082585609", "photo_flickr_id": "4945853951", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46408", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the faculty were all proud of my son .", "storylet_id": "232043"}], [{"original_text": "The parents could not wait to celebrate with their graduate children.", "album_id": "72157625082585609", "photo_flickr_id": "4946438536", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46408", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the parents could not wait to celebrate with their graduate children .", "storylet_id": "232044"}], [{"original_text": "Grandma reading the pamphlet for my graduatuion. ", "album_id": "72157625082585609", "photo_flickr_id": "4946433766", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46409", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandma reading the pamphlet for my graduatuion .", "storylet_id": "232045"}], [{"original_text": "Had a pre-party before I even graduated!", "album_id": "72157625082585609", "photo_flickr_id": "4945849317", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46409", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "had a pre-party before i even graduated !", "storylet_id": "232046"}], [{"original_text": "The teachers helping each other out in getting ready.", "album_id": "72157625082585609", "photo_flickr_id": "4946436736", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46409", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the teachers helping each other out in getting ready .", "storylet_id": "232047"}], [{"original_text": "Walking to the stage to get our diplomas.", "album_id": "72157625082585609", "photo_flickr_id": "4946437080", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46409", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "walking to the stage to get our diplomas .", "storylet_id": "232048"}], [{"original_text": "Patiently awaiting our names to be called.", "album_id": "72157625082585609", "photo_flickr_id": "4946439950", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46409", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "patiently awaiting our names to be called .", "storylet_id": "232049"}], [{"original_text": "It's gradaution day for Jose and Felipe. Middle school here we come. ", "album_id": "72057594105488493", "photo_flickr_id": "127561240", "setting": "first-2-pick-and-tell", "worker_id": "TKUUJ0455AOQB43", "story_id": "46410", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's gradaution day for [male] and [male] . middle school here we come .", "storylet_id": "232050"}], [{"original_text": "To celebrate the boys went out for pizza with the family.", "album_id": "72057594105488493", "photo_flickr_id": "127562531", "setting": "first-2-pick-and-tell", "worker_id": "TKUUJ0455AOQB43", "story_id": "46410", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to celebrate the boys went out for pizza with the family .", "storylet_id": "232051"}], [{"original_text": "The proud parents can't believe their kids have grown up so fast. ", "album_id": "72057594105488493", "photo_flickr_id": "127563547", "setting": "first-2-pick-and-tell", "worker_id": "TKUUJ0455AOQB43", "story_id": "46410", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the proud parents ca n't believe their kids have grown up so fast .", "storylet_id": "232052"}], [{"original_text": "Jose and Felipe are really excited to be moving on up in school.", "album_id": "72057594105488493", "photo_flickr_id": "127563975", "setting": "first-2-pick-and-tell", "worker_id": "TKUUJ0455AOQB43", "story_id": "46410", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and [male] are really excited to be moving on up in school .", "storylet_id": "232053"}], [{"original_text": "They aren't too happy when they learn there will be even more homework in middle school. ", "album_id": "72057594105488493", "photo_flickr_id": "127564434", "setting": "first-2-pick-and-tell", "worker_id": "TKUUJ0455AOQB43", "story_id": "46410", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are n't too happy when they learn there will be even more homework in middle school .", "storylet_id": "232054"}], [{"original_text": "Dinner with the family!", "album_id": "72057594105488493", "photo_flickr_id": "127562751", "setting": "first-2-pick-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46411", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dinner with the family !", "storylet_id": "232055"}], [{"original_text": "The boys found their own spot at the end of the table.", "album_id": "72057594105488493", "photo_flickr_id": "127562531", "setting": "first-2-pick-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46411", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boys found their own spot at the end of the table .", "storylet_id": "232056"}], [{"original_text": "After dinner the kids enjoyed some games.", "album_id": "72057594105488493", "photo_flickr_id": "127563295", "setting": "first-2-pick-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46411", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after dinner the kids enjoyed some games .", "storylet_id": "232057"}], [{"original_text": "The family enjoyed getting together for a nice meal out.", "album_id": "72057594105488493", "photo_flickr_id": "127563547", "setting": "first-2-pick-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46411", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family enjoyed getting together for a nice meal out .", "storylet_id": "232058"}], [{"original_text": "The kids really loved the hats they received. ", "album_id": "72057594105488493", "photo_flickr_id": "127563975", "setting": "first-2-pick-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46411", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids really loved the hats they received .", "storylet_id": "232059"}], [{"original_text": "To celebrate graduating kindergarten the family went out to eat.", "album_id": "72057594105488493", "photo_flickr_id": "127561240", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46412", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "to celebrate graduating kindergarten the family went out to eat .", "storylet_id": "232060"}], [{"original_text": "The boys got there favorite foods.", "album_id": "72057594105488493", "photo_flickr_id": "127562531", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46412", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boys got there favorite foods .", "storylet_id": "232061"}], [{"original_text": "The couple took a picture.", "album_id": "72057594105488493", "photo_flickr_id": "127563547", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46412", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the couple took a picture .", "storylet_id": "232062"}], [{"original_text": "The kids took pictures together.", "album_id": "72057594105488493", "photo_flickr_id": "127563975", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46412", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids took pictures together .", "storylet_id": "232063"}], [{"original_text": "One was serious.", "album_id": "72057594105488493", "photo_flickr_id": "127564434", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46412", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one was serious .", "storylet_id": "232064"}], [{"original_text": "Schools out for summer! ", "album_id": "72057594105488493", "photo_flickr_id": "127561240", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46413", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "schools out for summer !", "storylet_id": "232065"}], [{"original_text": "Dinner with the boys to celebrate. ", "album_id": "72057594105488493", "photo_flickr_id": "127562531", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46413", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dinner with the boys to celebrate .", "storylet_id": "232066"}], [{"original_text": "Now what are we going to do with them, we thought as we smiled for the camera.", "album_id": "72057594105488493", "photo_flickr_id": "127563547", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46413", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now what are we going to do with them , we thought as we smiled for the camera .", "storylet_id": "232067"}], [{"original_text": "Maybe they will be good? \"Smile boys\" ", "album_id": "72057594105488493", "photo_flickr_id": "127563975", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46413", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "maybe they will be good ? `` smile boys ''", "storylet_id": "232068"}], [{"original_text": "Yeah that looks more natural. But hope springs eternal! ", "album_id": "72057594105488493", "photo_flickr_id": "127564434", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46413", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "yeah that looks more natural . but hope springs eternal !", "storylet_id": "232069"}], [{"original_text": "Yesterday I looked at the calender and I realized that it was my birthday today!", "album_id": "72057594105488493", "photo_flickr_id": "127561240", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46414", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday i looked at the calender and i realized that it was my birthday today !", "storylet_id": "232070"}], [{"original_text": "Everyone took me out to eat at my favorite pizza place.", "album_id": "72057594105488493", "photo_flickr_id": "127562531", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46414", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone took me out to eat at my favorite pizza place .", "storylet_id": "232071"}], [{"original_text": "I had a great time there.", "album_id": "72057594105488493", "photo_flickr_id": "127563547", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46414", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time there .", "storylet_id": "232072"}], [{"original_text": "Everyone was really happy to celebrate my birthday with me.", "album_id": "72057594105488493", "photo_flickr_id": "127563975", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46414", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was really happy to celebrate my birthday with me .", "storylet_id": "232073"}], [{"original_text": "After a few hours everyone got tired and went home.", "album_id": "72057594105488493", "photo_flickr_id": "127564434", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46414", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a few hours everyone got tired and went home .", "storylet_id": "232074"}], [{"original_text": "The family is throwing a party today and the mother is cooking up lunch.", "album_id": "754408", "photo_flickr_id": "34042338", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "46415", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family is throwing a party today and the mother is cooking up lunch .", "storylet_id": "232075"}], [{"original_text": "The rest of the family set up tents and a sitting area outside.", "album_id": "754408", "photo_flickr_id": "34041934", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "46415", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rest of the family set up tents and a sitting area outside .", "storylet_id": "232076"}], [{"original_text": "Everyone finally arrives and starts ordering their food.", "album_id": "754408", "photo_flickr_id": "34042144", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "46415", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone finally arrives and starts ordering their food .", "storylet_id": "232077"}], [{"original_text": "At the end of the meal, two cakes were prepared to celebrate two birthdays in the family.", "album_id": "754408", "photo_flickr_id": "34041643", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "46415", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the end of the meal , two cakes were prepared to celebrate two birthdays in the family .", "storylet_id": "232078"}], [{"original_text": "The son seems to be greatly enjoying the food!", "album_id": "754408", "photo_flickr_id": "34041333", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "46415", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the son seems to be greatly enjoying the food !", "storylet_id": "232079"}], [{"original_text": "I spent a morning on my computer planning the party.", "album_id": "754408", "photo_flickr_id": "34042472", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46416", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spent a morning on my computer planning the party .", "storylet_id": "232080"}], [{"original_text": "My family members showed up to help set up.", "album_id": "754408", "photo_flickr_id": "34041738", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46416", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my family members showed up to help set up .", "storylet_id": "232081"}], [{"original_text": "It was birthday and they got me cake.", "album_id": "754408", "photo_flickr_id": "34041643", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46416", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was birthday and they got me cake .", "storylet_id": "232082"}], [{"original_text": "My friends showed up late but ate my food.", "album_id": "754408", "photo_flickr_id": "34041333", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46416", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friends showed up late but ate my food .", "storylet_id": "232083"}], [{"original_text": "When drank a bottle of wine in celebration.", "album_id": "754408", "photo_flickr_id": "34041258", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46416", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when drank a bottle of wine in celebration .", "storylet_id": "232084"}], [{"original_text": "Christopher spends all day at his computer.", "album_id": "754408", "photo_flickr_id": "34042472", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46417", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] spends all day at his computer .", "storylet_id": "232085"}], [{"original_text": "His mother and her friend like to check up on him every now and then.", "album_id": "754408", "photo_flickr_id": "34041738", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46417", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his mother and her friend like to check up on him every now and then .", "storylet_id": "232086"}], [{"original_text": "Cakes are regularly made in Christopher's home. ", "album_id": "754408", "photo_flickr_id": "34041643", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46417", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "cakes are regularly made in [male] 's home .", "storylet_id": "232087"}], [{"original_text": "When his hat is backwards and he's sitting in front of a plate of food, he means business", "album_id": "754408", "photo_flickr_id": "34041333", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46417", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when his hat is backwards and he 's sitting in front of a plate of food , he means business", "storylet_id": "232088"}], [{"original_text": "When Christopher's hat is turned the right way, it means he is satisfied.", "album_id": "754408", "photo_flickr_id": "34041258", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46417", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when [male] 's hat is turned the right way , it means he is satisfied .", "storylet_id": "232089"}], [{"original_text": "Mother was busy in the kitchen preparing the food. ", "album_id": "754408", "photo_flickr_id": "34042338", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46418", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mother was busy in the kitchen preparing the food .", "storylet_id": "232090"}], [{"original_text": "In the backyard, a canape was set up with folding chairs for the guests. ", "album_id": "754408", "photo_flickr_id": "34041934", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46418", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in the backyard , a canape was set up with folding chairs for the guests .", "storylet_id": "232091"}], [{"original_text": "Mother received several cards. ", "album_id": "754408", "photo_flickr_id": "34042144", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46418", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mother received several cards .", "storylet_id": "232092"}], [{"original_text": "She also got two cakes from friends. ", "album_id": "754408", "photo_flickr_id": "34041643", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46418", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she also got two cakes from friends .", "storylet_id": "232093"}], [{"original_text": "Her son wolfed down his meal and forgot to say thank you. ", "album_id": "754408", "photo_flickr_id": "34041333", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46418", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her son wolfed down his meal and forgot to say thank you .", "storylet_id": "232094"}], [{"original_text": "It is this man's birthday and he has no idea that a surprise party is being planned.", "album_id": "754408", "photo_flickr_id": "34042472", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "46419", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is this man 's birthday and he has no idea that a surprise party is being planned .", "storylet_id": "232095"}], [{"original_text": "His mother and sister have tricks up their sleeves.", "album_id": "754408", "photo_flickr_id": "34041738", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "46419", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his mother and sister have tricks up their sleeves .", "storylet_id": "232096"}], [{"original_text": "They baked him two cakes for his birthday.", "album_id": "754408", "photo_flickr_id": "34041643", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "46419", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they baked him two cakes for his birthday .", "storylet_id": "232097"}], [{"original_text": "The man enjoys his cake.", "album_id": "754408", "photo_flickr_id": "34041333", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "46419", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man enjoys his cake .", "storylet_id": "232098"}], [{"original_text": "He is finally 21 and can enjoy some alcohol.", "album_id": "754408", "photo_flickr_id": "34041258", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "46419", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he is finally 21 and can enjoy some alcohol .", "storylet_id": "232099"}], [{"original_text": "The soon to be graduates waited nervously in the hallway.", "album_id": "463870", "photo_flickr_id": "19789118", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "46420", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the soon to be graduates waited nervously in the hallway .", "storylet_id": "232100"}], [{"original_text": "Today was the big day they had all worked towards.", "album_id": "463870", "photo_flickr_id": "19789090", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "46420", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today was the big day they had all worked towards .", "storylet_id": "232101"}], [{"original_text": "The auditorium was completely full with friends and family.", "album_id": "463870", "photo_flickr_id": "19789951", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "46420", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the auditorium was completely full with friends and family .", "storylet_id": "232102"}], [{"original_text": "There was a presentation involved.", "album_id": "463870", "photo_flickr_id": "19790141", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "46420", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a presentation involved .", "storylet_id": "232103"}], [{"original_text": "Afterwards the graduates congratulated each other and discussed the directions their lives were now going in beyond school.", "album_id": "463870", "photo_flickr_id": "19789842", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "46420", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards the graduates congratulated each other and discussed the directions their lives were now going in beyond school .", "storylet_id": "232104"}], [{"original_text": "We had a lot of rehearsing to do for our graduation ceremony.", "album_id": "463870", "photo_flickr_id": "19789153", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46421", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a lot of rehearsing to do for our graduation ceremony .", "storylet_id": "232105"}], [{"original_text": "We were very excited to receive our diplomas.", "album_id": "463870", "photo_flickr_id": "19789090", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46421", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were very excited to receive our diplomas .", "storylet_id": "232106"}], [{"original_text": "We had studied for a long time.", "album_id": "463870", "photo_flickr_id": "19789178", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46421", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had studied for a long time .", "storylet_id": "232107"}], [{"original_text": "There were many students graduating this year.", "album_id": "463870", "photo_flickr_id": "19789460", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46421", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many students graduating this year .", "storylet_id": "232108"}], [{"original_text": "We had a great time.", "album_id": "463870", "photo_flickr_id": "19789483", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46421", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time .", "storylet_id": "232109"}], [{"original_text": "Today is the big day that we all been waiting for our whole life.", "album_id": "463870", "photo_flickr_id": "19789153", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "46422", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is the big day that we all been waiting for our whole life .", "storylet_id": "232110"}], [{"original_text": "We are all getting our degree in Screen Arts.", "album_id": "463870", "photo_flickr_id": "19789090", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "46422", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are all getting our degree in screen arts .", "storylet_id": "232111"}], [{"original_text": "She is rehearsing her lines to make sure their perfect.", "album_id": "463870", "photo_flickr_id": "19789178", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "46422", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she is rehearsing her lines to make sure their perfect .", "storylet_id": "232112"}], [{"original_text": "He is so excited for today.", "album_id": "463870", "photo_flickr_id": "19789460", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "46422", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he is so excited for today .", "storylet_id": "232113"}], [{"original_text": "We are all prepared to walk the stage so we can start a new journey in our life.", "album_id": "463870", "photo_flickr_id": "19789483", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "46422", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we are all prepared to walk the stage so we can start a new journey in our life .", "storylet_id": "232114"}], [{"original_text": "It was graduation day today.", "album_id": "463870", "photo_flickr_id": "19789118", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46423", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was graduation day today .", "storylet_id": "232115"}], [{"original_text": "Everyone was so excited to get their diploma.", "album_id": "463870", "photo_flickr_id": "19789090", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46423", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was so excited to get their diploma .", "storylet_id": "232116"}], [{"original_text": "So many people showed up for it.", "album_id": "463870", "photo_flickr_id": "19789951", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46423", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so many people showed up for it .", "storylet_id": "232117"}], [{"original_text": "We couldn't wait to get on stage!", "album_id": "463870", "photo_flickr_id": "19790141", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46423", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we could n't wait to get on stage !", "storylet_id": "232118"}], [{"original_text": "It was a great night and we are all so proud to have come this far.", "album_id": "463870", "photo_flickr_id": "19789842", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46423", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great night and we are all so proud to have come this far .", "storylet_id": "232119"}], [{"original_text": "Graduation Day is upon us.", "album_id": "463870", "photo_flickr_id": "19789118", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46424", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "graduation day is upon us .", "storylet_id": "232120"}], [{"original_text": "we were part of the screen arts graduates", "album_id": "463870", "photo_flickr_id": "19789090", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46424", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were part of the screen arts graduates", "storylet_id": "232121"}], [{"original_text": "there were so many people in attendence", "album_id": "463870", "photo_flickr_id": "19789951", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46424", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were so many people in attendence", "storylet_id": "232122"}], [{"original_text": "they even played a movie of all of our projects", "album_id": "463870", "photo_flickr_id": "19790141", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46424", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even played a movie of all of our projects", "storylet_id": "232123"}], [{"original_text": "everyone was happy", "album_id": "463870", "photo_flickr_id": "19789842", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46424", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was happy", "storylet_id": "232124"}], [{"original_text": "Family and friends came to visit Chris at his commencement.", "album_id": "72157594490707109", "photo_flickr_id": "363877065", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46425", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family and friends came to visit [male] at his commencement .", "storylet_id": "232125"}], [{"original_text": "Even his great-aunts came!", "album_id": "72157594490707109", "photo_flickr_id": "363877195", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46425", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even his great-aunts came !", "storylet_id": "232126"}], [{"original_text": "They looked in the program to find his name before the program started.", "album_id": "72157594490707109", "photo_flickr_id": "363877304", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46425", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they looked in the program to find his name before the program started .", "storylet_id": "232127"}], [{"original_text": "They were eager for it to start!", "album_id": "72157594490707109", "photo_flickr_id": "363877447", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46425", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were eager for it to start !", "storylet_id": "232128"}], [{"original_text": "They finally saw Chris and snapped a photo of him!", "album_id": "72157594490707109", "photo_flickr_id": "363877704", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46425", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they finally saw [male] and snapped a photo of him !", "storylet_id": "232129"}], [{"original_text": "For my brothers my graduation we invited all of the relatives.", "album_id": "72157594490707109", "photo_flickr_id": "363877065", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46426", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for my brothers my graduation we invited all of the relatives .", "storylet_id": "232130"}], [{"original_text": "The entire group of people at the ceremony got together for a small talk.", "album_id": "72157594490707109", "photo_flickr_id": "363877590", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46426", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the entire group of people at the ceremony got together for a small talk .", "storylet_id": "232131"}], [{"original_text": "After the graduation my brother got a photo with my grandmother and great aunt.", "album_id": "72157594490707109", "photo_flickr_id": "363878705", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46426", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the graduation my brother got a photo with my grandmother and great aunt .", "storylet_id": "232132"}], [{"original_text": "He even invited his best friend and girlfriend to the graduation.", "album_id": "72157594490707109", "photo_flickr_id": "363878967", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46426", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he even invited his best friend and girlfriend to the graduation .", "storylet_id": "232133"}], [{"original_text": "Afterwards we went out to dinner to celebrate.", "album_id": "72157594490707109", "photo_flickr_id": "363879884", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46426", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards we went out to dinner to celebrate .", "storylet_id": "232134"}], [{"original_text": "Mom, dad, and grandma all showed up for my graduation. ", "album_id": "72157594490707109", "photo_flickr_id": "363877065", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46427", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom , dad , and grandma all showed up for my graduation .", "storylet_id": "232135"}], [{"original_text": "They were so proud to see me graduate from West Chester university. ", "album_id": "72157594490707109", "photo_flickr_id": "363877590", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46427", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were so proud to see me graduate from location location university .", "storylet_id": "232136"}], [{"original_text": "I got some good family pics. ", "album_id": "72157594490707109", "photo_flickr_id": "363878705", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46427", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got some good family pics .", "storylet_id": "232137"}], [{"original_text": "My girlfriend and best friend showed up to support me as well.", "album_id": "72157594490707109", "photo_flickr_id": "363878967", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46427", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my girlfriend and best friend showed up to support me as well .", "storylet_id": "232138"}], [{"original_text": "Afterwards, we all went out to dinner. ", "album_id": "72157594490707109", "photo_flickr_id": "363879884", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46427", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , we all went out to dinner .", "storylet_id": "232139"}], [{"original_text": "We had to walk to the graduation ceremony because our car broke down.", "album_id": "72157594490707109", "photo_flickr_id": "363877065", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46428", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had to walk to the graduation ceremony because our car broke down .", "storylet_id": "232140"}], [{"original_text": "When we got there it was already over.", "album_id": "72157594490707109", "photo_flickr_id": "363877590", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46428", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we got there it was already over .", "storylet_id": "232141"}], [{"original_text": "We were still able to take pictures outside.", "album_id": "72157594490707109", "photo_flickr_id": "363878705", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46428", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were still able to take pictures outside .", "storylet_id": "232142"}], [{"original_text": "Everyone had come to show their support.", "album_id": "72157594490707109", "photo_flickr_id": "363878967", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46428", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone had come to show their support .", "storylet_id": "232143"}], [{"original_text": "Afterward we went to a restaurant for dinner.", "album_id": "72157594490707109", "photo_flickr_id": "363879884", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46428", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we went to a restaurant for dinner .", "storylet_id": "232144"}], [{"original_text": "Mom and Dad came for their son's graduation. ", "album_id": "72157594490707109", "photo_flickr_id": "363877065", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46429", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom and dad came for their son 's graduation .", "storylet_id": "232145"}], [{"original_text": "Even their aunt came along. ", "album_id": "72157594490707109", "photo_flickr_id": "363877195", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46429", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even their aunt came along .", "storylet_id": "232146"}], [{"original_text": "They looked at the brochure for their son's name. ", "album_id": "72157594490707109", "photo_flickr_id": "363877304", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46429", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they looked at the brochure for their son 's name .", "storylet_id": "232147"}], [{"original_text": "They waited patiently. ", "album_id": "72157594490707109", "photo_flickr_id": "363877447", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46429", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they waited patiently .", "storylet_id": "232148"}], [{"original_text": "Finally they heard their son's name and saw him receive his diploma. ", "album_id": "72157594490707109", "photo_flickr_id": "363877704", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46429", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally they heard their son 's name and saw him receive his diploma .", "storylet_id": "232149"}], [{"original_text": "Those were happier times, in the quad between classes. ", "album_id": "72157594334689344", "photo_flickr_id": "276165301", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "46430", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "those were happier times , in the quad between classes .", "storylet_id": "232150"}], [{"original_text": "I presented my girlfriend, with her alluring hair highlights, some aromatic flowers.", "album_id": "72157594334689344", "photo_flickr_id": "276155691", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "46430", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i presented my girlfriend , with her alluring hair highlights , some aromatic flowers .", "storylet_id": "232151"}], [{"original_text": "At graduation, she returned the gesture; hard to believe I was loving her from afar for all of high school.", "album_id": "72157594334689344", "photo_flickr_id": "276157917", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "46430", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at graduation , she returned the gesture ; hard to believe i was loving her from afar for all of high school .", "storylet_id": "232152"}], [{"original_text": "Of course, there were certain teachers who would hurt the children in any way they could; but even so, some managed to smile at graduation.", "album_id": "72157594334689344", "photo_flickr_id": "273377734", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "46430", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course , there were certain teachers who would hurt the children in any way they could ; but even so , some managed to smile at graduation .", "storylet_id": "232153"}], [{"original_text": "After catching her cheating on me, I cut my girlfriend into little pieces and left her in the unmarked locker, third in from the right, on the top row. ", "album_id": "72157594334689344", "photo_flickr_id": "276165622", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "46430", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after catching her cheating on me , i cut my girlfriend into little pieces and left her in the unmarked locker , third in from the right , on the top row .", "storylet_id": "232154"}], [{"original_text": "My son and daughter were both graduating last week.", "album_id": "72157594334689344", "photo_flickr_id": "273346081", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46431", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my son and daughter were both graduating last week .", "storylet_id": "232155"}], [{"original_text": "My son was the youngest, and now he is moving on.", "album_id": "72157594334689344", "photo_flickr_id": "273351952", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46431", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my son was the youngest , and now he is moving on .", "storylet_id": "232156"}], [{"original_text": "We are proud of his astute achievements.", "album_id": "72157594334689344", "photo_flickr_id": "273366353", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46431", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are proud of his astute achievements .", "storylet_id": "232157"}], [{"original_text": "He took a picture with his girlfriend before coming home.", "album_id": "72157594334689344", "photo_flickr_id": "276155691", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46431", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he took a picture with his girlfriend before coming home .", "storylet_id": "232158"}], [{"original_text": "My other son is proud of my youngest son.", "album_id": "72157594334689344", "photo_flickr_id": "276158889", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46431", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my other son is proud of my youngest son .", "storylet_id": "232159"}], [{"original_text": "The graduate and his good friend waiting for the big ceremony!", "album_id": "72157594334689344", "photo_flickr_id": "273346081", "setting": "last-3-pick-old-and-tell", "worker_id": "SBAFEMB1TQUWOAJ", "story_id": "46432", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the graduate and his good friend waiting for the big ceremony !", "storylet_id": "232160"}], [{"original_text": "Best buddies hamming it up on their way to grauate.", "album_id": "72157594334689344", "photo_flickr_id": "273351952", "setting": "last-3-pick-old-and-tell", "worker_id": "SBAFEMB1TQUWOAJ", "story_id": "46432", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "best buddies hamming it up on their way to grauate .", "storylet_id": "232161"}], [{"original_text": "Waiting for his turn to give his speech.", "album_id": "72157594334689344", "photo_flickr_id": "273366353", "setting": "last-3-pick-old-and-tell", "worker_id": "SBAFEMB1TQUWOAJ", "story_id": "46432", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "waiting for his turn to give his speech .", "storylet_id": "232162"}], [{"original_text": "We are so happy to be moving on to our next chapter of life!", "album_id": "72157594334689344", "photo_flickr_id": "276155691", "setting": "last-3-pick-old-and-tell", "worker_id": "SBAFEMB1TQUWOAJ", "story_id": "46432", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we are so happy to be moving on to our next chapter of life !", "storylet_id": "232163"}], [{"original_text": "So relaxed at the end of the big day.", "album_id": "72157594334689344", "photo_flickr_id": "276158889", "setting": "last-3-pick-old-and-tell", "worker_id": "SBAFEMB1TQUWOAJ", "story_id": "46432", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so relaxed at the end of the big day .", "storylet_id": "232164"}], [{"original_text": "The cute group of friends posed for a photo before graduation.", "album_id": "72157594334689344", "photo_flickr_id": "276165301", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "46433", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cute group of friends posed for a photo before graduation .", "storylet_id": "232165"}], [{"original_text": "Even Ryan and Sarah Lee were excited.", "album_id": "72157594334689344", "photo_flickr_id": "276155691", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "46433", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even [male] and [female] [male] were excited .", "storylet_id": "232166"}], [{"original_text": "At graduation they both received cool presents.", "album_id": "72157594334689344", "photo_flickr_id": "276157917", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "46433", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at graduation they both received cool presents .", "storylet_id": "232167"}], [{"original_text": "And they were seated in the Honours row.", "album_id": "72157594334689344", "photo_flickr_id": "273377734", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "46433", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and they were seated in the honours row .", "storylet_id": "232168"}], [{"original_text": "Goodbye lockers - they won't be seeing you anymore!", "album_id": "72157594334689344", "photo_flickr_id": "276165622", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "46433", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "goodbye lockers - they wo n't be seeing you anymore !", "storylet_id": "232169"}], [{"original_text": "Graduation had finally arrived. ", "album_id": "72157594334689344", "photo_flickr_id": "273346081", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46434", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "graduation had finally arrived .", "storylet_id": "232170"}], [{"original_text": "All three friends were graduating the same day. ", "album_id": "72157594334689344", "photo_flickr_id": "273351952", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46434", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all three friends were graduating the same day .", "storylet_id": "232171"}], [{"original_text": "He had worked hard for his diploma. ", "album_id": "72157594334689344", "photo_flickr_id": "273366353", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46434", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had worked hard for his diploma .", "storylet_id": "232172"}], [{"original_text": "His girlfriend had bought him flowers!", "album_id": "72157594334689344", "photo_flickr_id": "276155691", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46434", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his girlfriend had bought him flowers !", "storylet_id": "232173"}], [{"original_text": "He thought he would take off for the summer and just relax for a little while. ", "album_id": "72157594334689344", "photo_flickr_id": "276158889", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46434", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he thought he would take off for the summer and just relax for a little while .", "storylet_id": "232174"}], [{"original_text": "Mom are you done choosing the clothes you will wear on my graduation day?", "album_id": "72157594384130299", "photo_flickr_id": "302754628", "setting": "first-2-pick-and-tell", "worker_id": "S8QCEQQHY6QKAGA", "story_id": "46435", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom are you done choosing the clothes you will wear on my graduation day ?", "storylet_id": "232175"}], [{"original_text": "I am here ready to rock and roll. Do I look good or is my outfit a little bit embarrassing? ", "album_id": "72157594384130299", "photo_flickr_id": "303510118", "setting": "first-2-pick-and-tell", "worker_id": "S8QCEQQHY6QKAGA", "story_id": "46435", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i am here ready to rock and roll . do i look good or is my outfit a little bit embarrassing ?", "storylet_id": "232176"}], [{"original_text": "Finally, I am now a US Marine. Proud to serve my country. Thank you mom for the support. ", "album_id": "72157594384130299", "photo_flickr_id": "304192646", "setting": "first-2-pick-and-tell", "worker_id": "S8QCEQQHY6QKAGA", "story_id": "46435", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally , i am now a organization organization . proud to serve my country . thank you mom for the support .", "storylet_id": "232177"}], [{"original_text": "The few but proud marines! We're here to serve you America.", "album_id": "72157594384130299", "photo_flickr_id": "304918751", "setting": "first-2-pick-and-tell", "worker_id": "S8QCEQQHY6QKAGA", "story_id": "46435", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the few but proud marines ! we 're here to serve you location .", "storylet_id": "232178"}], [{"original_text": "Good bye for now mom, need to serve my country overseas. Please pray for me and I look forward to seeing you again. ", "album_id": "72157594384130299", "photo_flickr_id": "307749453", "setting": "first-2-pick-and-tell", "worker_id": "S8QCEQQHY6QKAGA", "story_id": "46435", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "good bye for now mom , need to serve my country overseas . please pray for me and i look forward to seeing you again .", "storylet_id": "232179"}], [{"original_text": "After the ceremony was over I was getting restless.", "album_id": "72157594384130299", "photo_flickr_id": "302754551", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46436", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after the ceremony was over i was getting restless .", "storylet_id": "232180"}], [{"original_text": "I said goodbye to everyone and then left.", "album_id": "72157594384130299", "photo_flickr_id": "302754593", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46436", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i said goodbye to everyone and then left .", "storylet_id": "232181"}], [{"original_text": "I stopped at a store to do some shopping.", "album_id": "72157594384130299", "photo_flickr_id": "302754628", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46436", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i stopped at a store to do some shopping .", "storylet_id": "232182"}], [{"original_text": "I bought some clothes and a stuffed animal.", "album_id": "72157594384130299", "photo_flickr_id": "302754684", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46436", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i bought some clothes and a stuffed animal .", "storylet_id": "232183"}], [{"original_text": "It was a lot of fun.", "album_id": "72157594384130299", "photo_flickr_id": "303510043", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46436", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a lot of fun .", "storylet_id": "232184"}], [{"original_text": "Yesterday, we went to my brothers military school.", "album_id": "72157594384130299", "photo_flickr_id": "302754628", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "46437", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday , we went to my brothers military school .", "storylet_id": "232185"}], [{"original_text": "It was a rather stern looking area.", "album_id": "72157594384130299", "photo_flickr_id": "303510118", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "46437", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a rather stern looking area .", "storylet_id": "232186"}], [{"original_text": "All the men were in uniform.", "album_id": "72157594384130299", "photo_flickr_id": "304192646", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "46437", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the men were in uniform .", "storylet_id": "232187"}], [{"original_text": "They looked so handsome.", "album_id": "72157594384130299", "photo_flickr_id": "304918751", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "46437", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they looked so handsome .", "storylet_id": "232188"}], [{"original_text": "I was so proud of my brother serving our country.", "album_id": "72157594384130299", "photo_flickr_id": "307749453", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "46437", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was so proud of my brother serving our country .", "storylet_id": "232189"}], [{"original_text": "Gertie decided to go shopping before the military parade.", "album_id": "72157594384130299", "photo_flickr_id": "302754628", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "46438", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "gertie decided to go shopping before the military parade .", "storylet_id": "232190"}], [{"original_text": "The streets were quite before it started.", "album_id": "72157594384130299", "photo_flickr_id": "303510118", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "46438", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the streets were quite before it started .", "storylet_id": "232191"}], [{"original_text": "When it started though the men were very somber.", "album_id": "72157594384130299", "photo_flickr_id": "304192646", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "46438", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when it started though the men were very somber .", "storylet_id": "232192"}], [{"original_text": "They stood in formation for the duration.", "album_id": "72157594384130299", "photo_flickr_id": "304918751", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "46438", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they stood in formation for the duration .", "storylet_id": "232193"}], [{"original_text": "It was in tropical Florida so it was hot outside that day.", "album_id": "72157594384130299", "photo_flickr_id": "307749453", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "46438", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was in tropical location so it was hot outside that day .", "storylet_id": "232194"}], [{"original_text": "The soldier's mom went shopping for an outfit to wear to the graduation.", "album_id": "72157594384130299", "photo_flickr_id": "302754628", "setting": "last-3-pick-old-and-tell", "worker_id": "PI2P99KZ6PNJJ4K", "story_id": "46439", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the soldier 's mom went shopping for an outfit to wear to the graduation .", "storylet_id": "232195"}], [{"original_text": "They snapped a picture of a soldier holding a flag.", "album_id": "72157594384130299", "photo_flickr_id": "303510118", "setting": "last-3-pick-old-and-tell", "worker_id": "PI2P99KZ6PNJJ4K", "story_id": "46439", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they snapped a picture of a soldier holding a flag .", "storylet_id": "232196"}], [{"original_text": "They snapped photos of their son at graduation.", "album_id": "72157594384130299", "photo_flickr_id": "304192646", "setting": "last-3-pick-old-and-tell", "worker_id": "PI2P99KZ6PNJJ4K", "story_id": "46439", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they snapped photos of their son at graduation .", "storylet_id": "232197"}], [{"original_text": "They snapped photos of the entire brigade.", "album_id": "72157594384130299", "photo_flickr_id": "304918751", "setting": "last-3-pick-old-and-tell", "worker_id": "PI2P99KZ6PNJJ4K", "story_id": "46439", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they snapped photos of the entire brigade .", "storylet_id": "232198"}], [{"original_text": "They snapped a photo of his plane as it flew over them.", "album_id": "72157594384130299", "photo_flickr_id": "307749453", "setting": "last-3-pick-old-and-tell", "worker_id": "PI2P99KZ6PNJJ4K", "story_id": "46439", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they snapped a photo of his plane as it flew over them .", "storylet_id": "232199"}], [{"original_text": "The army line was very long outside.", "album_id": "72157594518186150", "photo_flickr_id": "380018825", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46440", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the army line was very long outside .", "storylet_id": "232200"}], [{"original_text": "The wall was red and the men were ready for service.", "album_id": "72157594518186150", "photo_flickr_id": "380021108", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46440", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wall was red and the men were ready for service .", "storylet_id": "232201"}], [{"original_text": "When the event started, the men begin to line up.", "album_id": "72157594518186150", "photo_flickr_id": "380023278", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46440", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when the event started , the men begin to line up .", "storylet_id": "232202"}], [{"original_text": "They review the file with the general's names on it.", "album_id": "72157594518186150", "photo_flickr_id": "380024122", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46440", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they review the file with the general 's names on it .", "storylet_id": "232203"}], [{"original_text": "When the pins were awarded, some soldiers altered their uniforms.", "album_id": "72157594518186150", "photo_flickr_id": "380026981", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46440", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the pins were awarded , some soldiers altered their uniforms .", "storylet_id": "232204"}], [{"original_text": "I finally graduated boot camp today.", "album_id": "72157594518186150", "photo_flickr_id": "380019058", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46441", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finally graduated boot camp today .", "storylet_id": "232205"}], [{"original_text": "We did drills all day long.", "album_id": "72157594518186150", "photo_flickr_id": "380019407", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46441", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we did drills all day long .", "storylet_id": "232206"}], [{"original_text": "I was getting very tired.", "album_id": "72157594518186150", "photo_flickr_id": "380019872", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46441", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was getting very tired .", "storylet_id": "232207"}], [{"original_text": "Afterward we were all graduated.", "album_id": "72157594518186150", "photo_flickr_id": "380021977", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46441", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we were all graduated .", "storylet_id": "232208"}], [{"original_text": "They put some fancy symbols on our uniform.", "album_id": "72157594518186150", "photo_flickr_id": "380026375", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46441", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they put some fancy symbols on our uniform .", "storylet_id": "232209"}], [{"original_text": "A military graduation is a special event.", "album_id": "72157594518186150", "photo_flickr_id": "380019058", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46442", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a military graduation is a special event .", "storylet_id": "232210"}], [{"original_text": "The troops marching around the courtyard make a subtle drumming sound you can hear far and wide.", "album_id": "72157594518186150", "photo_flickr_id": "380019407", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46442", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the troops marching around the courtyard make a subtle drumming sound you can hear far and wide .", "storylet_id": "232211"}], [{"original_text": "It's quite a ceremony, one that evokes a lot of pride.", "album_id": "72157594518186150", "photo_flickr_id": "380019872", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46442", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's quite a ceremony , one that evokes a lot of pride .", "storylet_id": "232212"}], [{"original_text": "There was a big turnout for Joe's ceremony.", "album_id": "72157594518186150", "photo_flickr_id": "380021977", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46442", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a big turnout for [male] 's ceremony .", "storylet_id": "232213"}], [{"original_text": "There were a lot of teary eyes when his girlfriend's daughter pinned on his new ribbon.", "album_id": "72157594518186150", "photo_flickr_id": "380026375", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46442", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were a lot of teary eyes when his girlfriend 's daughter pinned on his new ribbon .", "storylet_id": "232214"}], [{"original_text": "We had one final morning exercise before graduation.", "album_id": "72157594518186150", "photo_flickr_id": "380018825", "setting": "last-3-pick-old-and-tell", "worker_id": "METRP05A4TQSIZ2", "story_id": "46443", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had one final morning exercise before graduation .", "storylet_id": "232215"}], [{"original_text": "It was our chance to say goodbye to the \"red monster\" that we had all struggled over at some point during our training.", "album_id": "72157594518186150", "photo_flickr_id": "380021108", "setting": "last-3-pick-old-and-tell", "worker_id": "METRP05A4TQSIZ2", "story_id": "46443", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was our chance to say goodbye to the `` red monster '' that we had all struggled over at some point during our training .", "storylet_id": "232216"}], [{"original_text": "That afternoon, dressed in our formal uniforms, we got the final salute from our commander, and then it was official.", "album_id": "72157594518186150", "photo_flickr_id": "380023278", "setting": "last-3-pick-old-and-tell", "worker_id": "METRP05A4TQSIZ2", "story_id": "46443", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that afternoon , dressed in our formal uniforms , we got the final salute from our commander , and then it was official .", "storylet_id": "232217"}], [{"original_text": "We had graduated. Mom took a picture to show that I left behind my program in my excitement after the ceremony.", "album_id": "72157594518186150", "photo_flickr_id": "380024122", "setting": "last-3-pick-old-and-tell", "worker_id": "METRP05A4TQSIZ2", "story_id": "46443", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had graduated . mom took a picture to show that i left behind my program in my excitement after the ceremony .", "storylet_id": "232218"}], [{"original_text": "But I was eager to get that brand new rank pinned to my cap.", "album_id": "72157594518186150", "photo_flickr_id": "380026981", "setting": "last-3-pick-old-and-tell", "worker_id": "METRP05A4TQSIZ2", "story_id": "46443", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but i was eager to get that brand new rank pinned to my cap .", "storylet_id": "232219"}], [{"original_text": "Marching is important to the military. ", "album_id": "72157594518186150", "photo_flickr_id": "380019058", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "46444", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "marching is important to the military .", "storylet_id": "232220"}], [{"original_text": "Marines practice marching everyday. ", "album_id": "72157594518186150", "photo_flickr_id": "380019407", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "46444", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "marines practice marching everyday .", "storylet_id": "232221"}], [{"original_text": "The unit rehearsed for the big event. ", "album_id": "72157594518186150", "photo_flickr_id": "380019872", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "46444", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the unit rehearsed for the big event .", "storylet_id": "232222"}], [{"original_text": "The new Marines were proud of their accomplishments.", "album_id": "72157594518186150", "photo_flickr_id": "380021977", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "46444", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the new marines were proud of their accomplishments .", "storylet_id": "232223"}], [{"original_text": "Promotion is something to be proud of. ", "album_id": "72157594518186150", "photo_flickr_id": "380026375", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "46444", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "promotion is something to be proud of .", "storylet_id": "232224"}], [{"original_text": "Tim worked very hard to graduate college.", "album_id": "72157600234507180", "photo_flickr_id": "505809620", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46445", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] worked very hard to graduate college .", "storylet_id": "232225"}], [{"original_text": "He got tickets for his entire family.", "album_id": "72157600234507180", "photo_flickr_id": "505809324", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46445", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he got tickets for his entire family .", "storylet_id": "232226"}], [{"original_text": "The commencement speaker congratulated the graduates.", "album_id": "72157600234507180", "photo_flickr_id": "505808062", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46445", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the commencement speaker congratulated the graduates .", "storylet_id": "232227"}], [{"original_text": "Tim got his diploma.", "album_id": "72157600234507180", "photo_flickr_id": "505806624", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46445", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] got his diploma .", "storylet_id": "232228"}], [{"original_text": "Tim's mother was very proud of his hard work.", "album_id": "72157600234507180", "photo_flickr_id": "505833933", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46445", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] 's mother was very proud of his hard work .", "storylet_id": "232229"}], [{"original_text": "Walking to his masters graduation.", "album_id": "72157600234507180", "photo_flickr_id": "505809904", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46446", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walking to his masters graduation .", "storylet_id": "232230"}], [{"original_text": "Cap and gown, hooded, and ready to go.", "album_id": "72157600234507180", "photo_flickr_id": "505809620", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46446", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "cap and gown , hooded , and ready to go .", "storylet_id": "232231"}], [{"original_text": "An admission ticket to the commencement. ", "album_id": "72157600234507180", "photo_flickr_id": "505809324", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46446", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "an admission ticket to the commencement .", "storylet_id": "232232"}], [{"original_text": "President ready to speak for the class of 2007.", "album_id": "72157600234507180", "photo_flickr_id": "505835389", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46446", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "president ready to speak for the class of 2007 .", "storylet_id": "232233"}], [{"original_text": "His master of science degree from the Worcester Polytechnic Institute. ", "album_id": "72157600234507180", "photo_flickr_id": "505806806", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46446", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his master of science degree from the organization organization organization .", "storylet_id": "232234"}], [{"original_text": "Walking from his car, Kevin was excited to finally graduate.", "album_id": "72157600234507180", "photo_flickr_id": "505809904", "setting": "last-3-pick-old-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46447", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walking from his car , [male] was excited to finally graduate .", "storylet_id": "232235"}], [{"original_text": "His pride could be seen in his smile.", "album_id": "72157600234507180", "photo_flickr_id": "505809620", "setting": "last-3-pick-old-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46447", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his pride could be seen in his smile .", "storylet_id": "232236"}], [{"original_text": "He kept one of his extra tickets as a memento.", "album_id": "72157600234507180", "photo_flickr_id": "505809324", "setting": "last-3-pick-old-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46447", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he kept one of his extra tickets as a memento .", "storylet_id": "232237"}], [{"original_text": "At last, he is in focus and receives his diploma and a handshake from the uni president.", "album_id": "72157600234507180", "photo_flickr_id": "505835389", "setting": "last-3-pick-old-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46447", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at last , he is in focus and receives his diploma and a handshake from the uni president .", "storylet_id": "232238"}], [{"original_text": "\"Wait!\" he shouted. \"This was printed on an inkjet!?!\"", "album_id": "72157600234507180", "photo_flickr_id": "505806806", "setting": "last-3-pick-old-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46447", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "`` wait ! '' he shouted . `` this was printed on an inkjet ! ? ! ''", "storylet_id": "232239"}], [{"original_text": "Here is Jared on the way to getting dressed for graduation.", "album_id": "72157600234507180", "photo_flickr_id": "505809904", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "46448", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is [male] on the way to getting dressed for graduation .", "storylet_id": "232240"}], [{"original_text": "He looked handsome once he put on his robes.", "album_id": "72157600234507180", "photo_flickr_id": "505809620", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "46448", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he looked handsome once he put on his robes .", "storylet_id": "232241"}], [{"original_text": "We got to have this card to remember the day by.", "album_id": "72157600234507180", "photo_flickr_id": "505809324", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "46448", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got to have this card to remember the day by .", "storylet_id": "232242"}], [{"original_text": "We had to keep from cheering when Jared got up.", "album_id": "72157600234507180", "photo_flickr_id": "505835389", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "46448", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had to keep from cheering when [male] got up .", "storylet_id": "232243"}], [{"original_text": "He was so proud of his diploma.", "album_id": "72157600234507180", "photo_flickr_id": "505806806", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "46448", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was so proud of his diploma .", "storylet_id": "232244"}], [{"original_text": "Jake is at his graduation.", "album_id": "72157600234507180", "photo_flickr_id": "505809620", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "46449", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is at his graduation .", "storylet_id": "232245"}], [{"original_text": "He has only one ticket for someone to join him. ", "album_id": "72157600234507180", "photo_flickr_id": "505809324", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "46449", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he has only one ticket for someone to join him .", "storylet_id": "232246"}], [{"original_text": "The person he chose is waiting in the crowd, extremely excited.", "album_id": "72157600234507180", "photo_flickr_id": "505808062", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "46449", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the person he chose is waiting in the crowd , extremely excited .", "storylet_id": "232247"}], [{"original_text": "She takes a picture of him holding his diploma.", "album_id": "72157600234507180", "photo_flickr_id": "505806624", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "46449", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she takes a picture of him holding his diploma .", "storylet_id": "232248"}], [{"original_text": "Of course it was his mom!", "album_id": "72157600234507180", "photo_flickr_id": "505833933", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "46449", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of course it was his mom !", "storylet_id": "232249"}], [{"original_text": "It was commencement time for Sherrie!", "album_id": "72157602202104234", "photo_flickr_id": "1457530284", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46450", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was commencement time for [female] !", "storylet_id": "232250"}], [{"original_text": "The whole stage was packed with faculty and graduates.", "album_id": "72157602202104234", "photo_flickr_id": "1456835289", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46450", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the whole stage was packed with faculty and graduates .", "storylet_id": "232251"}], [{"original_text": "Her family caught sight of her before her diploma was presented.", "album_id": "72157602202104234", "photo_flickr_id": "1457949102", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46450", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her family caught sight of her before her diploma was presented .", "storylet_id": "232252"}], [{"original_text": "She looked a little nervous.", "album_id": "72157602202104234", "photo_flickr_id": "1458191288", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46450", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she looked a little nervous .", "storylet_id": "232253"}], [{"original_text": "Afterwards, though, she was goofy as ever!", "album_id": "72157602202104234", "photo_flickr_id": "1460642374", "setting": "first-2-pick-and-tell", "worker_id": "DTZKO30YVLFI1DW", "story_id": "46450", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , though , she was goofy as ever !", "storylet_id": "232254"}], [{"original_text": "Graduation Day, and what a huge auditorium! ", "album_id": "72157602202104234", "photo_flickr_id": "1460470968", "setting": "first-2-pick-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46451", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "graduation day , and what a huge auditorium !", "storylet_id": "232255"}], [{"original_text": "The visuals were really great.", "album_id": "72157602202104234", "photo_flickr_id": "1459536791", "setting": "first-2-pick-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46451", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the visuals were really great .", "storylet_id": "232256"}], [{"original_text": "Time to walk across the stage.", "album_id": "72157602202104234", "photo_flickr_id": "1458191288", "setting": "first-2-pick-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46451", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "time to walk across the stage .", "storylet_id": "232257"}], [{"original_text": "The happy graduate posed with Dad", "album_id": "72157602202104234", "photo_flickr_id": "1459760857", "setting": "first-2-pick-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46451", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the happy graduate posed with dad", "storylet_id": "232258"}], [{"original_text": "She also stopped to pose with Mom.", "album_id": "72157602202104234", "photo_flickr_id": "1460638176", "setting": "first-2-pick-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "46451", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she also stopped to pose with mom .", "storylet_id": "232259"}], [{"original_text": "All gathered waiting for their graduates to graduated ", "album_id": "72157602202104234", "photo_flickr_id": "1460470968", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "46452", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all gathered waiting for their graduates to graduated", "storylet_id": "232260"}], [{"original_text": "waiting on them to call them out", "album_id": "72157602202104234", "photo_flickr_id": "1459536791", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "46452", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "waiting on them to call them out", "storylet_id": "232261"}], [{"original_text": "comes out and gets diploma ", "album_id": "72157602202104234", "photo_flickr_id": "1458191288", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "46452", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "comes out and gets diploma", "storylet_id": "232262"}], [{"original_text": "takes picture with dad", "album_id": "72157602202104234", "photo_flickr_id": "1459760857", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "46452", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "takes picture with dad", "storylet_id": "232263"}], [{"original_text": "and takes picture with mom", "album_id": "72157602202104234", "photo_flickr_id": "1460638176", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "46452", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and takes picture with mom", "storylet_id": "232264"}], [{"original_text": "There were a lot of people attending the graduation ceremony today.", "album_id": "72157602202104234", "photo_flickr_id": "1460470968", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46453", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of people attending the graduation ceremony today .", "storylet_id": "232265"}], [{"original_text": "The venue was beautiful.", "album_id": "72157602202104234", "photo_flickr_id": "1459536791", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46453", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the venue was beautiful .", "storylet_id": "232266"}], [{"original_text": "The students were very glad to finally go up and receive their diplomas.", "album_id": "72157602202104234", "photo_flickr_id": "1458191288", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46453", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the students were very glad to finally go up and receive their diplomas .", "storylet_id": "232267"}], [{"original_text": "Afterward it was time for pictures with everybody.", "album_id": "72157602202104234", "photo_flickr_id": "1459760857", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46453", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward it was time for pictures with everybody .", "storylet_id": "232268"}], [{"original_text": "It was a good day and everyone was very happy.", "album_id": "72157602202104234", "photo_flickr_id": "1460638176", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46453", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a good day and everyone was very happy .", "storylet_id": "232269"}], [{"original_text": "The stands were full of students.", "album_id": "72157602202104234", "photo_flickr_id": "1457530284", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46454", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stands were full of students .", "storylet_id": "232270"}], [{"original_text": "These students devoted at least four years of their time to be there.", "album_id": "72157602202104234", "photo_flickr_id": "1456835289", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46454", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these students devoted at least four years of their time to be there .", "storylet_id": "232271"}], [{"original_text": "The procession began and Megan was spotted.", "album_id": "72157602202104234", "photo_flickr_id": "1457949102", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46454", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the procession began and [female] was spotted .", "storylet_id": "232272"}], [{"original_text": "Her father snapped a few photos of her walking.", "album_id": "72157602202104234", "photo_flickr_id": "1458191288", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46454", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her father snapped a few photos of her walking .", "storylet_id": "232273"}], [{"original_text": "He made a completely goofy face to celebrate his daughter's incredible achievement. ", "album_id": "72157602202104234", "photo_flickr_id": "1460642374", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46454", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he made a completely goofy face to celebrate his daughter 's incredible achievement .", "storylet_id": "232274"}], [{"original_text": "Today is graduation day.", "album_id": "72157601271054577", "photo_flickr_id": "2061609083", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46455", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is graduation day .", "storylet_id": "232275"}], [{"original_text": "We get to wear these funny cloaks instead of cap and gown.", "album_id": "72157601271054577", "photo_flickr_id": "2062399328", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46455", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we get to wear these funny cloaks instead of cap and gown .", "storylet_id": "232276"}], [{"original_text": "Here we are ready to celebrate.", "album_id": "72157601271054577", "photo_flickr_id": "2061621295", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46455", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here we are ready to celebrate .", "storylet_id": "232277"}], [{"original_text": "met up with more friends, tonight is fun.", "album_id": "72157601271054577", "photo_flickr_id": "2061623455", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46455", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "met up with more friends , tonight is fun .", "storylet_id": "232278"}], [{"original_text": "End to ta perfect night.", "album_id": "72157601271054577", "photo_flickr_id": "2062410814", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46455", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "end to ta perfect night .", "storylet_id": "232279"}], [{"original_text": "The graduates are crammed in the room.", "album_id": "72157601271054577", "photo_flickr_id": "2062389058", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46456", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the graduates are crammed in the room .", "storylet_id": "232280"}], [{"original_text": "The president gave the speech.", "album_id": "72157601271054577", "photo_flickr_id": "2062392016", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46456", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the president gave the speech .", "storylet_id": "232281"}], [{"original_text": "The girls were so happy to be done.", "album_id": "72157601271054577", "photo_flickr_id": "2061602683", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46456", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girls were so happy to be done .", "storylet_id": "232282"}], [{"original_text": "She was proud to show her diploma.", "album_id": "72157601271054577", "photo_flickr_id": "2062394954", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46456", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was proud to show her diploma .", "storylet_id": "232283"}], [{"original_text": "She got a photo with her boyfriend.", "album_id": "72157601271054577", "photo_flickr_id": "2062400058", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46456", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she got a photo with her boyfriend .", "storylet_id": "232284"}], [{"original_text": "We were excited to finally be graduating.", "album_id": "72157601271054577", "photo_flickr_id": "2061609083", "setting": "last-3-pick-old-and-tell", "worker_id": "42GWAQ5DISYW1GY", "story_id": "46457", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were excited to finally be graduating .", "storylet_id": "232285"}], [{"original_text": "We made sure to get pictures with all of our friends.", "album_id": "72157601271054577", "photo_flickr_id": "2062399328", "setting": "last-3-pick-old-and-tell", "worker_id": "42GWAQ5DISYW1GY", "story_id": "46457", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made sure to get pictures with all of our friends .", "storylet_id": "232286"}], [{"original_text": "Who were also very excited.", "album_id": "72157601271054577", "photo_flickr_id": "2061621295", "setting": "last-3-pick-old-and-tell", "worker_id": "42GWAQ5DISYW1GY", "story_id": "46457", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "who were also very excited .", "storylet_id": "232287"}], [{"original_text": "The experience was unforgettable.", "album_id": "72157601271054577", "photo_flickr_id": "2061623455", "setting": "last-3-pick-old-and-tell", "worker_id": "42GWAQ5DISYW1GY", "story_id": "46457", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the experience was unforgettable .", "storylet_id": "232288"}], [{"original_text": "It was a very good night.", "album_id": "72157601271054577", "photo_flickr_id": "2062410814", "setting": "last-3-pick-old-and-tell", "worker_id": "42GWAQ5DISYW1GY", "story_id": "46457", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a very good night .", "storylet_id": "232289"}], [{"original_text": "I'm visiting my cousin today. ", "album_id": "72157601271054577", "photo_flickr_id": "2061609083", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "46458", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 'm visiting my cousin today .", "storylet_id": "232290"}], [{"original_text": "It was cold so we put on very warm coats.", "album_id": "72157601271054577", "photo_flickr_id": "2062399328", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "46458", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was cold so we put on very warm coats .", "storylet_id": "232291"}], [{"original_text": "We decided to go visit the library.", "album_id": "72157601271054577", "photo_flickr_id": "2061621295", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "46458", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we decided to go visit the library .", "storylet_id": "232292"}], [{"original_text": "At night we took a walk downtown.", "album_id": "72157601271054577", "photo_flickr_id": "2061623455", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "46458", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at night we took a walk downtown .", "storylet_id": "232293"}], [{"original_text": "The moon looked very beautiful tonight.", "album_id": "72157601271054577", "photo_flickr_id": "2062410814", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "46458", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the moon looked very beautiful tonight .", "storylet_id": "232294"}], [{"original_text": "The crowd waited for the graduation to begin.", "album_id": "72157601271054577", "photo_flickr_id": "2062389058", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46459", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowd waited for the graduation to begin .", "storylet_id": "232295"}], [{"original_text": "Then the speaker gave a speech to the audience.", "album_id": "72157601271054577", "photo_flickr_id": "2062392016", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46459", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then the speaker gave a speech to the audience .", "storylet_id": "232296"}], [{"original_text": "The students waited for their name to be called to receive their diploma.", "album_id": "72157601271054577", "photo_flickr_id": "2061602683", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46459", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the students waited for their name to be called to receive their diploma .", "storylet_id": "232297"}], [{"original_text": "All of the student were excited to be done with school.", "album_id": "72157601271054577", "photo_flickr_id": "2062394954", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46459", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the student were excited to be done with school .", "storylet_id": "232298"}], [{"original_text": "All of their friends and family were their to congratulate them.", "album_id": "72157601271054577", "photo_flickr_id": "2062400058", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46459", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of their friends and family were their to congratulate them .", "storylet_id": "232299"}], [{"original_text": "Our boy graduated today, it was a long a journey but he reached end.", "album_id": "72157606154057289", "photo_flickr_id": "2666525672", "setting": "first-2-pick-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46460", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our boy graduated today , it was a long a journey but he reached end .", "storylet_id": "232300"}], [{"original_text": "Watching him take that walk to the podium was such a great joy to see!", "album_id": "72157606154057289", "photo_flickr_id": "2666526178", "setting": "first-2-pick-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46460", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "watching him take that walk to the podium was such a great joy to see !", "storylet_id": "232301"}], [{"original_text": "There were so many happy faces in the crowd that day.", "album_id": "72157606154057289", "photo_flickr_id": "2666526594", "setting": "first-2-pick-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46460", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were so many happy faces in the crowd that day .", "storylet_id": "232302"}], [{"original_text": "It was an emotional night for us all.", "album_id": "72157606154057289", "photo_flickr_id": "2657617284", "setting": "first-2-pick-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46460", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was an emotional night for us all .", "storylet_id": "232303"}], [{"original_text": "However in the end seeing his happy face brought a smile to mine!", "album_id": "72157606154057289", "photo_flickr_id": "2657617334", "setting": "first-2-pick-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46460", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however in the end seeing his happy face brought a smile to mine !", "storylet_id": "232304"}], [{"original_text": "We had graduation today.", "album_id": "72157606154057289", "photo_flickr_id": "2666525572", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46461", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had graduation today .", "storylet_id": "232305"}], [{"original_text": "Lots of people came.", "album_id": "72157606154057289", "photo_flickr_id": "2666525934", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46461", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of people came .", "storylet_id": "232306"}], [{"original_text": "Everyone was getting ready.", "album_id": "72157606154057289", "photo_flickr_id": "2666526178", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46461", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was getting ready .", "storylet_id": "232307"}], [{"original_text": "We lined up to receive our graduation.", "album_id": "72157606154057289", "photo_flickr_id": "2666526730", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46461", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we lined up to receive our graduation .", "storylet_id": "232308"}], [{"original_text": "I was so happy after it was done.", "album_id": "72157606154057289", "photo_flickr_id": "2657617284", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46461", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was so happy after it was done .", "storylet_id": "232309"}], [{"original_text": "Graduation is the time for reflection and remembering all the years you were there.", "album_id": "72157606154057289", "photo_flickr_id": "2666525672", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46462", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "graduation is the time for reflection and remembering all the years you were there .", "storylet_id": "232310"}], [{"original_text": "All the graduates are ready and happy to move forward in their lives.", "album_id": "72157606154057289", "photo_flickr_id": "2666526178", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46462", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the graduates are ready and happy to move forward in their lives .", "storylet_id": "232311"}], [{"original_text": "Throwing their hats is a signal of the excitement they are feeling on this day.", "album_id": "72157606154057289", "photo_flickr_id": "2666526594", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46462", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "throwing their hats is a signal of the excitement they are feeling on this day .", "storylet_id": "232312"}], [{"original_text": "His family looks so proud of the graduates accomplishments.", "album_id": "72157606154057289", "photo_flickr_id": "2657617284", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46462", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his family looks so proud of the graduates accomplishments .", "storylet_id": "232313"}], [{"original_text": "There is nothing at all like the love of your family and closest friends.", "album_id": "72157606154057289", "photo_flickr_id": "2657617334", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46462", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is nothing at all like the love of your family and closest friends .", "storylet_id": "232314"}], [{"original_text": "The man stood waiting during the graduating ceremony.", "album_id": "72157606154057289", "photo_flickr_id": "2666525672", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJT9AH607DP16X", "story_id": "46463", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man stood waiting during the graduating ceremony .", "storylet_id": "232315"}], [{"original_text": "The whole graduating class patiently waits during the ceremony.", "album_id": "72157606154057289", "photo_flickr_id": "2666526178", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJT9AH607DP16X", "story_id": "46463", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the whole graduating class patiently waits during the ceremony .", "storylet_id": "232316"}], [{"original_text": "After the ceremony, the class takes a group picture.", "album_id": "72157606154057289", "photo_flickr_id": "2666526594", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJT9AH607DP16X", "story_id": "46463", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the ceremony , the class takes a group picture .", "storylet_id": "232317"}], [{"original_text": "The man's family is so proud of him for graduating.", "album_id": "72157606154057289", "photo_flickr_id": "2657617284", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJT9AH607DP16X", "story_id": "46463", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man 's family is so proud of him for graduating .", "storylet_id": "232318"}], [{"original_text": "He celebrates with his younger sister at the end of the day.", "album_id": "72157606154057289", "photo_flickr_id": "2657617334", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJT9AH607DP16X", "story_id": "46463", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he celebrates with his younger sister at the end of the day .", "storylet_id": "232319"}], [{"original_text": "Today our son Graduated.", "album_id": "72157606154057289", "photo_flickr_id": "2666525672", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46464", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today our son graduated .", "storylet_id": "232320"}], [{"original_text": "There were many people graduating with him it was a big class.", "album_id": "72157606154057289", "photo_flickr_id": "2666526178", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46464", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many people graduating with him it was a big class .", "storylet_id": "232321"}], [{"original_text": "There were so many of them they had to bring out more chairs.", "album_id": "72157606154057289", "photo_flickr_id": "2666526594", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46464", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were so many of them they had to bring out more chairs .", "storylet_id": "232322"}], [{"original_text": "His sister was very proud of him and was a little teary eyed.", "album_id": "72157606154057289", "photo_flickr_id": "2657617284", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46464", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his sister was very proud of him and was a little teary eyed .", "storylet_id": "232323"}], [{"original_text": "We enjoyed a nice dinner after the ceremony. ", "album_id": "72157606154057289", "photo_flickr_id": "2657617334", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46464", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we enjoyed a nice dinner after the ceremony .", "storylet_id": "232324"}], [{"original_text": "The students eventually find their seats.", "album_id": "72157607918278026", "photo_flickr_id": "2929969939", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46465", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the students eventually find their seats .", "storylet_id": "232325"}], [{"original_text": "It takes the speakers a very long time to finish their speeches.", "album_id": "72157607918278026", "photo_flickr_id": "2929961285", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46465", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it takes the speakers a very long time to finish their speeches .", "storylet_id": "232326"}], [{"original_text": "Finally the students are called up to receive their diplomas.", "album_id": "72157607918278026", "photo_flickr_id": "2929966185", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46465", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally the students are called up to receive their diplomas .", "storylet_id": "232327"}], [{"original_text": "The students are very excited to finally graduate.", "album_id": "72157607918278026", "photo_flickr_id": "2929975185", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46465", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the students are very excited to finally graduate .", "storylet_id": "232328"}], [{"original_text": "Many friends and family have come to show their support.", "album_id": "72157607918278026", "photo_flickr_id": "2930855380", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46465", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many friends and family have come to show their support .", "storylet_id": "232329"}], [{"original_text": "It was graduation day for the class of 2008.", "album_id": "72157607918278026", "photo_flickr_id": "2929994769", "setting": "first-2-pick-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "46466", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was graduation day for the class of 2008 .", "storylet_id": "232330"}], [{"original_text": "The boy saw the graduation sign and took a picture out front.", "album_id": "72157607918278026", "photo_flickr_id": "2930866150", "setting": "first-2-pick-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "46466", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boy saw the graduation sign and took a picture out front .", "storylet_id": "232331"}], [{"original_text": "Before going inside, he also took a picture at the window.", "album_id": "72157607918278026", "photo_flickr_id": "2929976705", "setting": "first-2-pick-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "46466", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "before going inside , he also took a picture at the window .", "storylet_id": "232332"}], [{"original_text": "He walked on stage when his name was called.", "album_id": "72157607918278026", "photo_flickr_id": "2929966185", "setting": "first-2-pick-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "46466", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he walked on stage when his name was called .", "storylet_id": "232333"}], [{"original_text": "And the boy shook the hand of the diploma handler.", "album_id": "72157607918278026", "photo_flickr_id": "2929967755", "setting": "first-2-pick-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "46466", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the boy shook the hand of the diploma handler .", "storylet_id": "232334"}], [{"original_text": "Everyone had worked so hard over the past four years, and it was finally time to graduate and celebrate our accomplishments.", "album_id": "72157607918278026", "photo_flickr_id": "2929969939", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46467", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone had worked so hard over the past four years , and it was finally time to graduate and celebrate our accomplishments .", "storylet_id": "232335"}], [{"original_text": "It felt so good when my name was called, and I walked to the front of the stage to get my diploma.", "album_id": "72157607918278026", "photo_flickr_id": "2929961285", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46467", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it felt so good when my name was called , and i walked to the front of the stage to get my diploma .", "storylet_id": "232336"}], [{"original_text": "It was great to see all my friends accept their diplomas as well. I think it finally hit us that we had really done it!", "album_id": "72157607918278026", "photo_flickr_id": "2929966185", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46467", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was great to see all my friends accept their diplomas as well . i think it finally hit us that we had really done it !", "storylet_id": "232337"}], [{"original_text": "Everyone posed for pictures afterward. You can see the excitement on our faces.", "album_id": "72157607918278026", "photo_flickr_id": "2929975185", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46467", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone posed for pictures afterward . you can see the excitement on our faces .", "storylet_id": "232338"}], [{"original_text": "My best friends and I made sure to get some pictures together. We have been through a lot together, and even though college is over, I think we'll be friends forever.", "album_id": "72157607918278026", "photo_flickr_id": "2930855380", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46467", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my best friends and i made sure to get some pictures together . we have been through a lot together , and even though college is over , i think we 'll be friends forever .", "storylet_id": "232339"}], [{"original_text": "This looks like a great place to have a graduation.", "album_id": "72157607918278026", "photo_flickr_id": "2929994769", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46468", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this looks like a great place to have a graduation .", "storylet_id": "232340"}], [{"original_text": "So many people showed up for the graduation.", "album_id": "72157607918278026", "photo_flickr_id": "2930866150", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46468", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so many people showed up for the graduation .", "storylet_id": "232341"}], [{"original_text": "There weren`t many times like this to slip away and take a self picture alone.", "album_id": "72157607918278026", "photo_flickr_id": "2929976705", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46468", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there weren`t many times like this to slip away and take a self picture alone .", "storylet_id": "232342"}], [{"original_text": "The ceremony was long but totally fulfilling.", "album_id": "72157607918278026", "photo_flickr_id": "2929966185", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46468", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ceremony was long but totally fulfilling .", "storylet_id": "232343"}], [{"original_text": "There were a couple of speakers giving hope and light to the graduates.", "album_id": "72157607918278026", "photo_flickr_id": "2929967755", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46468", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were a couple of speakers giving hope and light to the graduates .", "storylet_id": "232344"}], [{"original_text": "After many years, I finally graduated from college.", "album_id": "72157607918278026", "photo_flickr_id": "2929969939", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "46469", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after many years , i finally graduated from college .", "storylet_id": "232345"}], [{"original_text": "I watched my peers shake many hands on their way to accept their diplomas.", "album_id": "72157607918278026", "photo_flickr_id": "2929961285", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "46469", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i watched my peers shake many hands on their way to accept their diplomas .", "storylet_id": "232346"}], [{"original_text": "Eventually, it was my turn to do the same.", "album_id": "72157607918278026", "photo_flickr_id": "2929966185", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "46469", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "eventually , it was my turn to do the same .", "storylet_id": "232347"}], [{"original_text": "We all hung out afterwards, it was a great time.", "album_id": "72157607918278026", "photo_flickr_id": "2929975185", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "46469", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all hung out afterwards , it was a great time .", "storylet_id": "232348"}], [{"original_text": "I met some more of my peers at this column at the Galton Collection.", "album_id": "72157607918278026", "photo_flickr_id": "2930855380", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "46469", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i met some more of my peers at this column at the organization organization .", "storylet_id": "232349"}], [{"original_text": "Last night was my graduation ceremony.", "album_id": "72157611387513908", "photo_flickr_id": "3118013790", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46470", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night was my graduation ceremony .", "storylet_id": "232350"}], [{"original_text": "The stadium was packed with people.", "album_id": "72157611387513908", "photo_flickr_id": "3118014734", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46470", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the stadium was packed with people .", "storylet_id": "232351"}], [{"original_text": "The students waited patiently for their time to walk.", "album_id": "72157611387513908", "photo_flickr_id": "3117187677", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46470", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the students waited patiently for their time to walk .", "storylet_id": "232352"}], [{"original_text": "There were many speakers at the ceremony.", "album_id": "72157611387513908", "photo_flickr_id": "3117188091", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46470", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many speakers at the ceremony .", "storylet_id": "232353"}], [{"original_text": "Everyone celebrated when the ceremony was over.", "album_id": "72157611387513908", "photo_flickr_id": "3118016150", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46470", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone celebrated when the ceremony was over .", "storylet_id": "232354"}], [{"original_text": "The moon was in the sky.", "album_id": "72157611387513908", "photo_flickr_id": "3118013790", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "46471", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the moon was in the sky .", "storylet_id": "232355"}], [{"original_text": "So were the flying hot dogs!", "album_id": "72157611387513908", "photo_flickr_id": "3117189223", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "46471", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so were the flying hot dogs !", "storylet_id": "232356"}], [{"original_text": "But the hot dogs were actually alien warships.", "album_id": "72157611387513908", "photo_flickr_id": "3117189583", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "46471", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but the hot dogs were actually alien warships .", "storylet_id": "232357"}], [{"original_text": "And they released their bombs over a crowd.", "album_id": "72157611387513908", "photo_flickr_id": "3118016150", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "46471", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and they released their bombs over a crowd .", "storylet_id": "232358"}], [{"original_text": "Good thing I wasn't there to get hit by them!", "album_id": "72157611387513908", "photo_flickr_id": "3118016354", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "46471", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "good thing i was n't there to get hit by them !", "storylet_id": "232359"}], [{"original_text": "It was graduation night and the full moon that night looked beautiful.", "album_id": "72157611387513908", "photo_flickr_id": "3118013790", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "46472", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was graduation night and the full moon that night looked beautiful .", "storylet_id": "232360"}], [{"original_text": "The room was packed; I only spotted two empty seats.", "album_id": "72157611387513908", "photo_flickr_id": "3118014734", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "46472", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the room was packed ; i only spotted two empty seats .", "storylet_id": "232361"}], [{"original_text": "I spent a lot of time mingling with my peers.", "album_id": "72157611387513908", "photo_flickr_id": "3117187677", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "46472", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i spent a lot of time mingling with my peers .", "storylet_id": "232362"}], [{"original_text": "Finally, it was my turn to give my graduation speech.", "album_id": "72157611387513908", "photo_flickr_id": "3117188091", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "46472", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally , it was my turn to give my graduation speech .", "storylet_id": "232363"}], [{"original_text": "By the end, balloons were released in celebration.", "album_id": "72157611387513908", "photo_flickr_id": "3118016150", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "46472", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end , balloons were released in celebration .", "storylet_id": "232364"}], [{"original_text": "It is the evening of my graduation. A full moon portends good luck.", "album_id": "72157611387513908", "photo_flickr_id": "3118013790", "setting": "last-3-pick-old-and-tell", "worker_id": "YTE0WPUOGHM3R6J", "story_id": "46473", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is the evening of my graduation . a full moon portends good luck .", "storylet_id": "232365"}], [{"original_text": "Here is our entire class, we filled up the entire stadium.", "album_id": "72157611387513908", "photo_flickr_id": "3118014734", "setting": "last-3-pick-old-and-tell", "worker_id": "YTE0WPUOGHM3R6J", "story_id": "46473", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is our entire class , we filled up the entire stadium .", "storylet_id": "232366"}], [{"original_text": "We are now waiting to throw off all our hats. I'm getting excited", "album_id": "72157611387513908", "photo_flickr_id": "3117187677", "setting": "last-3-pick-old-and-tell", "worker_id": "YTE0WPUOGHM3R6J", "story_id": "46473", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are now waiting to throw off all our hats . i 'm getting excited", "storylet_id": "232367"}], [{"original_text": "Our professor is giving a final speech. I learned a lot from him these last few years.", "album_id": "72157611387513908", "photo_flickr_id": "3117188091", "setting": "last-3-pick-old-and-tell", "worker_id": "YTE0WPUOGHM3R6J", "story_id": "46473", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our professor is giving a final speech . i learned a lot from him these last few years .", "storylet_id": "232368"}], [{"original_text": "Here come the balloons. I can believe I graduated!", "album_id": "72157611387513908", "photo_flickr_id": "3118016150", "setting": "last-3-pick-old-and-tell", "worker_id": "YTE0WPUOGHM3R6J", "story_id": "46473", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here come the balloons . i can believe i graduated !", "storylet_id": "232369"}], [{"original_text": "A full moon hangs over the graduation ceremony.", "album_id": "72157611387513908", "photo_flickr_id": "3118013790", "setting": "last-3-pick-old-and-tell", "worker_id": "S9DX13UPLYI7AYY", "story_id": "46474", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a full moon hangs over the graduation ceremony .", "storylet_id": "232370"}], [{"original_text": "The venue is packed with friends and relatives of the graduates at the ceremony.", "album_id": "72157611387513908", "photo_flickr_id": "3118014734", "setting": "last-3-pick-old-and-tell", "worker_id": "S9DX13UPLYI7AYY", "story_id": "46474", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the venue is packed with friends and relatives of the graduates at the ceremony .", "storylet_id": "232371"}], [{"original_text": "Graduates file in and prepare for their graduation ceremony.", "album_id": "72157611387513908", "photo_flickr_id": "3117187677", "setting": "last-3-pick-old-and-tell", "worker_id": "S9DX13UPLYI7AYY", "story_id": "46474", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "graduates file in and prepare for their graduation ceremony .", "storylet_id": "232372"}], [{"original_text": "Staff members await a graduate to hand him his diploma.", "album_id": "72157611387513908", "photo_flickr_id": "3117188091", "setting": "last-3-pick-old-and-tell", "worker_id": "S9DX13UPLYI7AYY", "story_id": "46474", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "staff members await a graduate to hand him his diploma .", "storylet_id": "232373"}], [{"original_text": "Balloons are released at the commencement of the ceremony.", "album_id": "72157611387513908", "photo_flickr_id": "3118016150", "setting": "last-3-pick-old-and-tell", "worker_id": "S9DX13UPLYI7AYY", "story_id": "46474", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "balloons are released at the commencement of the ceremony .", "storylet_id": "232374"}], [{"original_text": "Everyone is lined up.", "album_id": "72157616261541878", "photo_flickr_id": "3407086848", "setting": "first-2-pick-and-tell", "worker_id": "VELPL3AXUYBFNXB", "story_id": "46475", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone is lined up .", "storylet_id": "232375"}], [{"original_text": "They are being visited by high-level officials.", "album_id": "72157616261541878", "photo_flickr_id": "3406270893", "setting": "first-2-pick-and-tell", "worker_id": "VELPL3AXUYBFNXB", "story_id": "46475", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are being visited by high-level officials .", "storylet_id": "232376"}], [{"original_text": "They are giving them a new mission and evaluating the troops.", "album_id": "72157616261541878", "photo_flickr_id": "3407084626", "setting": "first-2-pick-and-tell", "worker_id": "VELPL3AXUYBFNXB", "story_id": "46475", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they are giving them a new mission and evaluating the troops .", "storylet_id": "232377"}], [{"original_text": "The troops are concerned.", "album_id": "72157616261541878", "photo_flickr_id": "3407081648", "setting": "first-2-pick-and-tell", "worker_id": "VELPL3AXUYBFNXB", "story_id": "46475", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the troops are concerned .", "storylet_id": "232378"}], [{"original_text": "However, the officials are happy with what they've seen.", "album_id": "72157616261541878", "photo_flickr_id": "3407080018", "setting": "first-2-pick-and-tell", "worker_id": "VELPL3AXUYBFNXB", "story_id": "46475", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , the officials are happy with what they 've seen .", "storylet_id": "232379"}], [{"original_text": "The soldiers all awaited their assignments.", "album_id": "72157616261541878", "photo_flickr_id": "3406272329", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46476", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the soldiers all awaited their assignments .", "storylet_id": "232380"}], [{"original_text": "They were told they needed to help a nearby village with getting food and water.", "album_id": "72157616261541878", "photo_flickr_id": "3406274037", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46476", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were told they needed to help a nearby village with getting food and water .", "storylet_id": "232381"}], [{"original_text": "The sargeant called out all the names ", "album_id": "72157616261541878", "photo_flickr_id": "3407084626", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46476", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sargeant called out all the names", "storylet_id": "232382"}], [{"original_text": "Matthews. Harker, Donaldson, Johnson! Each of us would be going to assist.", "album_id": "72157616261541878", "photo_flickr_id": "3407085678", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46476", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "matthews . harker , organization , johnson ! each of us would be going to assist .", "storylet_id": "232383"}], [{"original_text": "The others looked at us as if we had gotten off easy. Little do they know the village is riddled with disease.", "album_id": "72157616261541878", "photo_flickr_id": "3407081648", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46476", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the others looked at us as if we had gotten off easy . little do they know the village is riddled with disease .", "storylet_id": "232384"}], [{"original_text": "Troops are lined up and ready for action.", "album_id": "72157616261541878", "photo_flickr_id": "3407086848", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46477", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "troops are lined up and ready for action .", "storylet_id": "232385"}], [{"original_text": "The officers are making a quick run through to see if all are together.", "album_id": "72157616261541878", "photo_flickr_id": "3406270893", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46477", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the officers are making a quick run through to see if all are together .", "storylet_id": "232386"}], [{"original_text": "The headman is going over paper work of plans made.", "album_id": "72157616261541878", "photo_flickr_id": "3407084626", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46477", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the headman is going over paper work of plans made .", "storylet_id": "232387"}], [{"original_text": "The men are serious and are waiting for instruction on what to do next.", "album_id": "72157616261541878", "photo_flickr_id": "3407081648", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46477", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the men are serious and are waiting for instruction on what to do next .", "storylet_id": "232388"}], [{"original_text": "The men in charge are conversing about where to place these troops for help.", "album_id": "72157616261541878", "photo_flickr_id": "3407080018", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46477", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the men in charge are conversing about where to place these troops for help .", "storylet_id": "232389"}], [{"original_text": "We all had to get ready at work today because the boss was coming to check in.", "album_id": "72157616261541878", "photo_flickr_id": "3407086848", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46478", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all had to get ready at work today because the boss was coming to check in .", "storylet_id": "232390"}], [{"original_text": "We all saluted him as he walked by.", "album_id": "72157616261541878", "photo_flickr_id": "3406270893", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46478", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all saluted him as he walked by .", "storylet_id": "232391"}], [{"original_text": "There were a lot of questions being asked.", "album_id": "72157616261541878", "photo_flickr_id": "3407084626", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46478", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of questions being asked .", "storylet_id": "232392"}], [{"original_text": "We had to stand for a very long time while they had conversations inside the building.", "album_id": "72157616261541878", "photo_flickr_id": "3407081648", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46478", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had to stand for a very long time while they had conversations inside the building .", "storylet_id": "232393"}], [{"original_text": "I really hope they finish up soon.", "album_id": "72157616261541878", "photo_flickr_id": "3407080018", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46478", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i really hope they finish up soon .", "storylet_id": "232394"}], [{"original_text": "Demonstration/inspection for the higher ups at our operating base.", "album_id": "72157616261541878", "photo_flickr_id": "3407086848", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46479", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "demonstration/inspection for the higher ups at our operating base .", "storylet_id": "232395"}], [{"original_text": "The officers walk by while we stand at attention in the heat with our equipment on.", "album_id": "72157616261541878", "photo_flickr_id": "3406270893", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46479", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the officers walk by while we stand at attention in the heat with our equipment on .", "storylet_id": "232396"}], [{"original_text": "The PR guy tries to remember what is next on the schedule to show to the bosses.", "album_id": "72157616261541878", "photo_flickr_id": "3407084626", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46479", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the pr guy tries to remember what is next on the schedule to show to the bosses .", "storylet_id": "232397"}], [{"original_text": "Our attention wanders while we wait.", "album_id": "72157616261541878", "photo_flickr_id": "3407081648", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46479", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our attention wanders while we wait .", "storylet_id": "232398"}], [{"original_text": "The officers take advantage of the delay in the proceedings and go inside where it is air conditioned.", "album_id": "72157616261541878", "photo_flickr_id": "3407080018", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46479", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the officers take advantage of the delay in the proceedings and go inside where it is air conditioned .", "storylet_id": "232399"}], [{"original_text": "At our graduation, there were many different people and studies.", "album_id": "72157617949218325", "photo_flickr_id": "3524878077", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46480", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at our graduation , there were many different people and studies .", "storylet_id": "232400"}], [{"original_text": "I had to adjust my hat to be on point with my camera time.", "album_id": "72157617949218325", "photo_flickr_id": "3525683588", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46480", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had to adjust my hat to be on point with my camera time .", "storylet_id": "232401"}], [{"original_text": "My friends and I were very grateful to be moving on to the next step!", "album_id": "72157617949218325", "photo_flickr_id": "3525683752", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46480", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friends and i were very grateful to be moving on to the next step !", "storylet_id": "232402"}], [{"original_text": "I had to get a picture of our teachers before leaving.", "album_id": "72157617949218325", "photo_flickr_id": "3525683956", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46480", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had to get a picture of our teachers before leaving .", "storylet_id": "232403"}], [{"original_text": "One of my friends thanked her mom for support.", "album_id": "72157617949218325", "photo_flickr_id": "3525684786", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46480", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of my friends thanked her mom for support .", "storylet_id": "232404"}], [{"original_text": "Today it was graduation for all of the high schoolers!", "album_id": "72157617949218325", "photo_flickr_id": "3524878467", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46481", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today it was graduation for all of the high schoolers !", "storylet_id": "232405"}], [{"original_text": "They all got ready and made their way to the ceremony.", "album_id": "72157617949218325", "photo_flickr_id": "3525683588", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46481", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all got ready and made their way to the ceremony .", "storylet_id": "232406"}], [{"original_text": "They did get to goof off a little bit though beforehand.", "album_id": "72157617949218325", "photo_flickr_id": "3525683752", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46481", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they did get to goof off a little bit though beforehand .", "storylet_id": "232407"}], [{"original_text": "the ceremony was long and everyone was tired and cramped.", "album_id": "72157617949218325", "photo_flickr_id": "3524878947", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46481", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ceremony was long and everyone was tired and cramped .", "storylet_id": "232408"}], [{"original_text": "But the kids were all very happy to be out of high school!", "album_id": "72157617949218325", "photo_flickr_id": "3525684786", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46481", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the kids were all very happy to be out of high school !", "storylet_id": "232409"}], [{"original_text": "The graduates are ready to go, it`s organized mayhem in here.", "album_id": "72157617949218325", "photo_flickr_id": "3524878077", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46482", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the graduates are ready to go , it`s organized mayhem in here .", "storylet_id": "232410"}], [{"original_text": "People are giving themselves the last look in the mirror.", "album_id": "72157617949218325", "photo_flickr_id": "3525683588", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46482", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people are giving themselves the last look in the mirror .", "storylet_id": "232411"}], [{"original_text": "Celebration is in the air, partying will definitely ensue.", "album_id": "72157617949218325", "photo_flickr_id": "3525683752", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46482", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "celebration is in the air , partying will definitely ensue .", "storylet_id": "232412"}], [{"original_text": "The teachers were there in full support of the students.", "album_id": "72157617949218325", "photo_flickr_id": "3525683956", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46482", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the teachers were there in full support of the students .", "storylet_id": "232413"}], [{"original_text": "Family and friends could not wait to hug and kiss the graduates.", "album_id": "72157617949218325", "photo_flickr_id": "3525684786", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46482", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "family and friends could not wait to hug and kiss the graduates .", "storylet_id": "232414"}], [{"original_text": "A congratulatory sign hung at the entrance to the school for the graduates.", "album_id": "72157617949218325", "photo_flickr_id": "3524878467", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46483", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a congratulatory sign hung at the entrance to the school for the graduates .", "storylet_id": "232415"}], [{"original_text": "She had to make sure her cap was adjusted perfectly for the ceremony.", "album_id": "72157617949218325", "photo_flickr_id": "3525683588", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46483", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had to make sure her cap was adjusted perfectly for the ceremony .", "storylet_id": "232416"}], [{"original_text": "Friends goof around just a bit to get rid of the nerves.", "album_id": "72157617949218325", "photo_flickr_id": "3525683752", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46483", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "friends goof around just a bit to get rid of the nerves .", "storylet_id": "232417"}], [{"original_text": "The graduates are seated and wait patiently to receive their diplomas.", "album_id": "72157617949218325", "photo_flickr_id": "3524878947", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46483", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the graduates are seated and wait patiently to receive their diplomas .", "storylet_id": "232418"}], [{"original_text": "Hugs of congratulations went on for quite some time after the ceremony was over.", "album_id": "72157617949218325", "photo_flickr_id": "3525684786", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46483", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "hugs of congratulations went on for quite some time after the ceremony was over .", "storylet_id": "232419"}], [{"original_text": "Today is graduation day!", "album_id": "72157617949218325", "photo_flickr_id": "3524878467", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46484", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is graduation day !", "storylet_id": "232420"}], [{"original_text": "Everyone is getting ready to make sure they look their best today.", "album_id": "72157617949218325", "photo_flickr_id": "3525683588", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46484", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone is getting ready to make sure they look their best today .", "storylet_id": "232421"}], [{"original_text": "All of my friends are excited to be graduating today.", "album_id": "72157617949218325", "photo_flickr_id": "3525683752", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46484", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of my friends are excited to be graduating today .", "storylet_id": "232422"}], [{"original_text": "There were so many people here graduating today!", "album_id": "72157617949218325", "photo_flickr_id": "3524878947", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46484", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were so many people here graduating today !", "storylet_id": "232423"}], [{"original_text": "I was so happy to have finally made it. I owe it all to my family.", "album_id": "72157617949218325", "photo_flickr_id": "3525684786", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46484", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was so happy to have finally made it . i owe it all to my family .", "storylet_id": "232424"}], [{"original_text": "It was Deb's graduation day. ", "album_id": "72157625503935527", "photo_flickr_id": "3495415862", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "46485", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was deb 's graduation day .", "storylet_id": "232425"}], [{"original_text": "Before the ceremony, she hugged her mom and stood near her son.", "album_id": "72157625503935527", "photo_flickr_id": "3495426178", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "46485", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before the ceremony , she hugged her mom and stood near her son .", "storylet_id": "232426"}], [{"original_text": "The ceremony was long, but her family stayed the time to take photos.", "album_id": "72157625503935527", "photo_flickr_id": "3494619793", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "46485", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ceremony was long , but her family stayed the time to take photos .", "storylet_id": "232427"}], [{"original_text": "The president of the university granted the degrees. Deb couldn't wait for her name to be called.", "album_id": "72157625503935527", "photo_flickr_id": "3495441888", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "46485", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the president of the university granted the degrees . deb could n't wait for her name to be called .", "storylet_id": "232428"}], [{"original_text": "When she finally made it to the stage, she pumped her fists in glee. She'd made it!", "album_id": "72157625503935527", "photo_flickr_id": "3494627487", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "46485", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when she finally made it to the stage , she pumped her fists in glee . she 'd made it !", "storylet_id": "232429"}], [{"original_text": " My aunt was graduating today receiving her masters.", "album_id": "72157625503935527", "photo_flickr_id": "3495415862", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "46486", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my aunt was graduating today receiving her masters .", "storylet_id": "232430"}], [{"original_text": "There were a lot of spectators present.", "album_id": "72157625503935527", "photo_flickr_id": "3494619793", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "46486", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of spectators present .", "storylet_id": "232431"}], [{"original_text": "My aunt was pretty nervous.", "album_id": "72157625503935527", "photo_flickr_id": "3495423574", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "46486", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my aunt was pretty nervous .", "storylet_id": "232432"}], [{"original_text": " My son and Grandma made my aunt feel a little bit at ease.", "album_id": "72157625503935527", "photo_flickr_id": "3495426178", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "46486", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my son and grandma made my aunt feel a little bit at ease .", "storylet_id": "232433"}], [{"original_text": "Eventually my aunt got her diploma and we were all over joyed for her.", "album_id": "72157625503935527", "photo_flickr_id": "3494627487", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "46486", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually my aunt got her diploma and we were all over joyed for her .", "storylet_id": "232434"}], [{"original_text": "There were a lot of people attending the graduation ceremony today.", "album_id": "72157625503935527", "photo_flickr_id": "3495415862", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46487", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of people attending the graduation ceremony today .", "storylet_id": "232435"}], [{"original_text": "The place was packed.", "album_id": "72157625503935527", "photo_flickr_id": "3494619793", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46487", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the place was packed .", "storylet_id": "232436"}], [{"original_text": "We were all glad to finally graduate.", "album_id": "72157625503935527", "photo_flickr_id": "3495423574", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46487", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were all glad to finally graduate .", "storylet_id": "232437"}], [{"original_text": "My family came to show their support.", "album_id": "72157625503935527", "photo_flickr_id": "3495426178", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46487", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my family came to show their support .", "storylet_id": "232438"}], [{"original_text": "Everyone was really proud of me.", "album_id": "72157625503935527", "photo_flickr_id": "3494627487", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46487", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was really proud of me .", "storylet_id": "232439"}], [{"original_text": "Marge worked hard to get her Master's Degree.", "album_id": "72157625503935527", "photo_flickr_id": "3495415862", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46488", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "marge worked hard to get her master 's degree .", "storylet_id": "232440"}], [{"original_text": "It was especially difficult since she was a single Mother and her Mom was too old to help with childcare.", "album_id": "72157625503935527", "photo_flickr_id": "3495426178", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46488", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was especially difficult since she was a single mother and her mom was too old to help with childcare .", "storylet_id": "232441"}], [{"original_text": "She resented the fact that her ex-husband showed up to the graduation ceremony.", "album_id": "72157625503935527", "photo_flickr_id": "3494619793", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46488", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she resented the fact that her ex-husband showed up to the graduation ceremony .", "storylet_id": "232442"}], [{"original_text": "But was thrilled to receive her degree.", "album_id": "72157625503935527", "photo_flickr_id": "3495441888", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46488", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but was thrilled to receive her degree .", "storylet_id": "232443"}], [{"original_text": "Now, onto a better paying job!", "album_id": "72157625503935527", "photo_flickr_id": "3494627487", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46488", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now , onto a better paying job !", "storylet_id": "232444"}], [{"original_text": "Amy at the award ceremony after her graduation. ", "album_id": "72157625503935527", "photo_flickr_id": "3495415862", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "46489", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] at the award ceremony after her graduation .", "storylet_id": "232445"}], [{"original_text": "Look at the crowd at the graduation", "album_id": "72157625503935527", "photo_flickr_id": "3494619793", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "46489", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look at the crowd at the graduation", "storylet_id": "232446"}], [{"original_text": "Amy walks proud to accept her award", "album_id": "72157625503935527", "photo_flickr_id": "3495423574", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "46489", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] walks proud to accept her award", "storylet_id": "232447"}], [{"original_text": "Amy and grandmother taking a pic togther", "album_id": "72157625503935527", "photo_flickr_id": "3495426178", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "46489", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and grandmother taking a pic togther", "storylet_id": "232448"}], [{"original_text": "Amy at the alter saying her speech.", "album_id": "72157625503935527", "photo_flickr_id": "3494627487", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "46489", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] at the alter saying her speech .", "storylet_id": "232449"}], [{"original_text": "My brother recently graduated college.", "album_id": "72157618548780362", "photo_flickr_id": "3549332283", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46490", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brother recently graduated college .", "storylet_id": "232450"}], [{"original_text": "It was a formal cap and gown event.", "album_id": "72157618548780362", "photo_flickr_id": "3550160812", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46490", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a formal cap and gown event .", "storylet_id": "232451"}], [{"original_text": "My mom and dad attended.", "album_id": "72157618548780362", "photo_flickr_id": "3550171580", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46490", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my mom and dad attended .", "storylet_id": "232452"}], [{"original_text": "Later, my aunt and grandma showed up.", "album_id": "72157618548780362", "photo_flickr_id": "3549368069", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46490", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later , my aunt and grandma showed up .", "storylet_id": "232453"}], [{"original_text": "When the event was over he even got congratulated by the mascot.", "album_id": "72157618548780362", "photo_flickr_id": "3549370593", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46490", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the event was over he even got congratulated by the mascot .", "storylet_id": "232454"}], [{"original_text": "Today was graduation, and Schyler was extremely happy.", "album_id": "72157618548780362", "photo_flickr_id": "3549359579", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46491", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was graduation , and schyler was extremely happy .", "storylet_id": "232455"}], [{"original_text": "However he was nervous about what the future would bring.", "album_id": "72157618548780362", "photo_flickr_id": "3549346163", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46491", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "however he was nervous about what the future would bring .", "storylet_id": "232456"}], [{"original_text": "His parents assured him that he would do well in life. That helped a little.", "album_id": "72157618548780362", "photo_flickr_id": "3550171580", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46491", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his parents assured him that he would do well in life . that helped a little .", "storylet_id": "232457"}], [{"original_text": "Of course when Benny the Squirrel gave him life advice his whole demeanor turned happily", "album_id": "72157618548780362", "photo_flickr_id": "3549370593", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46491", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course when [male] the squirrel gave him life advice his whole demeanor turned happily", "storylet_id": "232458"}], [{"original_text": "Schyler is now ready for life, after the first big chapter ending high school.", "album_id": "72157618548780362", "photo_flickr_id": "3550167922", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46491", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "schyler is now ready for life , after the first big chapter ending high school .", "storylet_id": "232459"}], [{"original_text": "Jacob graduated today.", "album_id": "72157618548780362", "photo_flickr_id": "3549332283", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46492", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] graduated today .", "storylet_id": "232460"}], [{"original_text": "The ceremony was long and pompous but worth it.", "album_id": "72157618548780362", "photo_flickr_id": "3550160812", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46492", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ceremony was long and pompous but worth it .", "storylet_id": "232461"}], [{"original_text": "His parents were so happy, even though his Dad still couldn't seem to smile for the camera.", "album_id": "72157618548780362", "photo_flickr_id": "3550171580", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46492", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his parents were so happy , even though his dad still could n't seem to smile for the camera .", "storylet_id": "232462"}], [{"original_text": "But his Mom's and Aunts' smiles made up for it.", "album_id": "72157618548780362", "photo_flickr_id": "3549368069", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46492", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but his mom 's and aunts ' smiles made up for it .", "storylet_id": "232463"}], [{"original_text": "He was happy to be done, but he was going to miss being in college.", "album_id": "72157618548780362", "photo_flickr_id": "3549370593", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46492", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was happy to be done , but he was going to miss being in college .", "storylet_id": "232464"}], [{"original_text": "Matt on his graduation day.", "album_id": "72157618548780362", "photo_flickr_id": "3549332283", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "46493", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] on his graduation day .", "storylet_id": "232465"}], [{"original_text": "Matt as he hugs his fellow classmate on stage,", "album_id": "72157618548780362", "photo_flickr_id": "3550160812", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "46493", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] as he hugs his fellow classmate on stage ,", "storylet_id": "232466"}], [{"original_text": "Jess and Jack are so proud of Matt", "album_id": "72157618548780362", "photo_flickr_id": "3550171580", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "46493", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and [male] are so proud of [male]", "storylet_id": "232467"}], [{"original_text": "We took a picture with Sam as well!", "album_id": "72157618548780362", "photo_flickr_id": "3549368069", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "46493", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a picture with [male] as well !", "storylet_id": "232468"}], [{"original_text": "The Minnesota mascot had time for the fresh graduates. ", "album_id": "72157618548780362", "photo_flickr_id": "3549370593", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "46493", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the location mascot had time for the fresh graduates .", "storylet_id": "232469"}], [{"original_text": "We were so proud that our son was graduating already.", "album_id": "72157618548780362", "photo_flickr_id": "3549332283", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46494", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were so proud that our son was graduating already .", "storylet_id": "232470"}], [{"original_text": "As he receives his diploma, I had to fight back the tears of joy.", "album_id": "72157618548780362", "photo_flickr_id": "3550160812", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46494", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as he receives his diploma , i had to fight back the tears of joy .", "storylet_id": "232471"}], [{"original_text": "Hi parents could not be more proud of him.", "album_id": "72157618548780362", "photo_flickr_id": "3550171580", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46494", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "hi parents could not be more proud of him .", "storylet_id": "232472"}], [{"original_text": "Three generations of the family on that special day.", "album_id": "72157618548780362", "photo_flickr_id": "3549368069", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46494", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "three generations of the family on that special day .", "storylet_id": "232473"}], [{"original_text": "We had to get him with the team's mascot just one more time.", "album_id": "72157618548780362", "photo_flickr_id": "3549370593", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46494", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had to get him with the team 's mascot just one more time .", "storylet_id": "232474"}], [{"original_text": "My sister recently graduated college.", "album_id": "72157619115629898", "photo_flickr_id": "3586730133", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46495", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister recently graduated college .", "storylet_id": "232475"}], [{"original_text": "Graduation was held outdoors on the athletic field.", "album_id": "72157619115629898", "photo_flickr_id": "3587544808", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46495", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "graduation was held outdoors on the athletic field .", "storylet_id": "232476"}], [{"original_text": "My mom and dad was happy to attend.", "album_id": "72157619115629898", "photo_flickr_id": "3587572878", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46495", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my mom and dad was happy to attend .", "storylet_id": "232477"}], [{"original_text": "Uncle Bill even came from Arizona.", "album_id": "72157619115629898", "photo_flickr_id": "3586760665", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46495", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "uncle [male] even came from location .", "storylet_id": "232478"}], [{"original_text": "The biggest surprise came last when my brother showed up from Italy.", "album_id": "72157619115629898", "photo_flickr_id": "3587576040", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46495", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the biggest surprise came last when my brother showed up from location .", "storylet_id": "232479"}], [{"original_text": "This is Amy with her mom and dad at the end of the proudest day of her life--college graduation!", "album_id": "72157619115629898", "photo_flickr_id": "3587572878", "setting": "first-2-pick-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "46496", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is [female] with her mom and dad at the end of the proudest day of her life -- college graduation !", "storylet_id": "232480"}], [{"original_text": "Amy felt like she was in a dream as she and her classmates walked to their seats. She'd worked so hard to earn her diploma.", "album_id": "72157619115629898", "photo_flickr_id": "3587539722", "setting": "first-2-pick-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "46496", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] felt like she was in a dream as she and her classmates walked to their seats . she 'd worked so hard to earn her diploma .", "storylet_id": "232481"}], [{"original_text": "There were several speakers before Amy received her diploma. Her best friend was valedictorian and gave a rousing speech.", "album_id": "72157619115629898", "photo_flickr_id": "3587547006", "setting": "first-2-pick-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "46496", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were several speakers before [female] received her diploma . her best friend was valedictorian and gave a rousing speech .", "storylet_id": "232482"}], [{"original_text": "There's Amy getting her diploma. She couldn't stop smiling.", "album_id": "72157619115629898", "photo_flickr_id": "3587557056", "setting": "first-2-pick-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "46496", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there 's [female] getting her diploma . she could n't stop smiling .", "storylet_id": "232483"}], [{"original_text": "Amy's grandfather was so proud he gave her a big hug! Then the family went to Amy's favorite restaurant to celebrate. It was a night Amy will always remember.", "album_id": "72157619115629898", "photo_flickr_id": "3586760665", "setting": "first-2-pick-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "46496", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] 's grandfather was so proud he gave her a big hug ! then the family went to [female] 's favorite restaurant to celebrate . it was a night [female] will always remember .", "storylet_id": "232484"}], [{"original_text": "The mom and dad are so proud of their daughter.", "album_id": "72157619115629898", "photo_flickr_id": "3587572878", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "46497", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the mom and dad are so proud of their daughter .", "storylet_id": "232485"}], [{"original_text": "She is going to get her diploma, what an honor!", "album_id": "72157619115629898", "photo_flickr_id": "3587539722", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "46497", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she is going to get her diploma , what an honor !", "storylet_id": "232486"}], [{"original_text": "The podium was well decorated. It was a great experience.", "album_id": "72157619115629898", "photo_flickr_id": "3587547006", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "46497", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the podium was well decorated . it was a great experience .", "storylet_id": "232487"}], [{"original_text": "There was so many graduates getting their diplomas today.", "album_id": "72157619115629898", "photo_flickr_id": "3587557056", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "46497", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was so many graduates getting their diplomas today .", "storylet_id": "232488"}], [{"original_text": "A proud parent with his daughter, at the graduation.", "album_id": "72157619115629898", "photo_flickr_id": "3586760665", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "46497", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a proud parent with his daughter , at the graduation .", "storylet_id": "232489"}], [{"original_text": "We are so proud of our daughter graduating today.", "album_id": "72157619115629898", "photo_flickr_id": "3587572878", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46498", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are so proud of our daughter graduating today .", "storylet_id": "232490"}], [{"original_text": "It seemed she had to walk miles to receive her diploma.", "album_id": "72157619115629898", "photo_flickr_id": "3587539722", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46498", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it seemed she had to walk miles to receive her diploma .", "storylet_id": "232491"}], [{"original_text": "The speeches that were given were very heartwarming.", "album_id": "72157619115629898", "photo_flickr_id": "3587547006", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46498", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the speeches that were given were very heartwarming .", "storylet_id": "232492"}], [{"original_text": "The students pass through one by one to receive their diplomas.", "album_id": "72157619115629898", "photo_flickr_id": "3587557056", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46498", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the students pass through one by one to receive their diplomas .", "storylet_id": "232493"}], [{"original_text": "The world's proudest grandpa on our special day.", "album_id": "72157619115629898", "photo_flickr_id": "3586760665", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46498", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the world 's proudest grandpa on our special day .", "storylet_id": "232494"}], [{"original_text": "She walked to her seat, full of anticipation for the graduation ceremony.", "album_id": "72157619115629898", "photo_flickr_id": "3586730133", "setting": "last-3-pick-old-and-tell", "worker_id": "GB31OGG0CKQCJJ2", "story_id": "46499", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she walked to her seat , full of anticipation for the graduation ceremony .", "storylet_id": "232495"}], [{"original_text": "Graduates took their seats and waited for the ceremony to begin.", "album_id": "72157619115629898", "photo_flickr_id": "3587544808", "setting": "last-3-pick-old-and-tell", "worker_id": "GB31OGG0CKQCJJ2", "story_id": "46499", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "graduates took their seats and waited for the ceremony to begin .", "storylet_id": "232496"}], [{"original_text": "After the ceremony, she posed with her proud grandparents.", "album_id": "72157619115629898", "photo_flickr_id": "3587572878", "setting": "last-3-pick-old-and-tell", "worker_id": "GB31OGG0CKQCJJ2", "story_id": "46499", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the ceremony , she posed with her proud grandparents .", "storylet_id": "232497"}], [{"original_text": "She also posed with her other grandfather, who had traveled a long way for the occasion.", "album_id": "72157619115629898", "photo_flickr_id": "3586760665", "setting": "last-3-pick-old-and-tell", "worker_id": "GB31OGG0CKQCJJ2", "story_id": "46499", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she also posed with her other grandfather , who had traveled a long way for the occasion .", "storylet_id": "232498"}], [{"original_text": "Finally, she posed with he boyfriend, who would graduate next year.", "album_id": "72157619115629898", "photo_flickr_id": "3587576040", "setting": "last-3-pick-old-and-tell", "worker_id": "GB31OGG0CKQCJJ2", "story_id": "46499", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , she posed with he boyfriend , who would graduate next year .", "storylet_id": "232499"}], [{"original_text": "Today, the whole school came together for a school performance.", "album_id": "72157619624973860", "photo_flickr_id": "3618032707", "setting": "first-2-pick-and-tell", "worker_id": "6VM439P73HNXMRJ", "story_id": "46500", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , the whole school came together for a school performance .", "storylet_id": "232500"}], [{"original_text": "The stage was beautifully decorated for this performance.", "album_id": "72157619624973860", "photo_flickr_id": "3618032207", "setting": "first-2-pick-and-tell", "worker_id": "6VM439P73HNXMRJ", "story_id": "46500", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the stage was beautifully decorated for this performance .", "storylet_id": "232501"}], [{"original_text": "One of the classes sang a song.", "album_id": "72157619624973860", "photo_flickr_id": "3618853944", "setting": "first-2-pick-and-tell", "worker_id": "6VM439P73HNXMRJ", "story_id": "46500", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the classes sang a song .", "storylet_id": "232502"}], [{"original_text": "Other students had artwork displayed.", "album_id": "72157619624973860", "photo_flickr_id": "3618040983", "setting": "first-2-pick-and-tell", "worker_id": "6VM439P73HNXMRJ", "story_id": "46500", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other students had artwork displayed .", "storylet_id": "232503"}], [{"original_text": "Afterwards, the students enjoyed some snacks.", "album_id": "72157619624973860", "photo_flickr_id": "3618033595", "setting": "first-2-pick-and-tell", "worker_id": "6VM439P73HNXMRJ", "story_id": "46500", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , the students enjoyed some snacks .", "storylet_id": "232504"}], [{"original_text": "Today Mary did a play for the school!", "album_id": "72157619624973860", "photo_flickr_id": "3618032207", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46501", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today [female] did a play for the school !", "storylet_id": "232505"}], [{"original_text": "She did really well! Afterwards she and her friends went and had a blast around town!", "album_id": "72157619624973860", "photo_flickr_id": "3618033595", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46501", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she did really well ! afterwards she and her friends went and had a blast around town !", "storylet_id": "232506"}], [{"original_text": "They were doing silly things all day.", "album_id": "72157619624973860", "photo_flickr_id": "3618854864", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46501", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were doing silly things all day .", "storylet_id": "232507"}], [{"original_text": "Mary was reading the reviews. Apparently a producer wants her to star in a film!", "album_id": "72157619624973860", "photo_flickr_id": "3618035115", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46501", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] was reading the reviews . apparently a producer wants her to star in a film !", "storylet_id": "232508"}], [{"original_text": "She is the happiest she could be! Melody was a little jealous though.", "album_id": "72157619624973860", "photo_flickr_id": "3618036061", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46501", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she is the happiest she could be ! [female] was a little jealous though .", "storylet_id": "232509"}], [{"original_text": "Our parents all gathered for our student play. ", "album_id": "72157619624973860", "photo_flickr_id": "3618032707", "setting": "last-3-pick-old-and-tell", "worker_id": "6JJJVH1G8QS7SCC", "story_id": "46502", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our parents all gathered for our student play .", "storylet_id": "232510"}], [{"original_text": "The stage was all set with the flowers and rainbow. ", "album_id": "72157619624973860", "photo_flickr_id": "3618032207", "setting": "last-3-pick-old-and-tell", "worker_id": "6JJJVH1G8QS7SCC", "story_id": "46502", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the stage was all set with the flowers and rainbow .", "storylet_id": "232511"}], [{"original_text": "We sang a few songs that we had learned. America the beautiful was my favorite. ", "album_id": "72157619624973860", "photo_flickr_id": "3618853944", "setting": "last-3-pick-old-and-tell", "worker_id": "6JJJVH1G8QS7SCC", "story_id": "46502", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we sang a few songs that we had learned . location the beautiful was my favorite .", "storylet_id": "232512"}], [{"original_text": "We showed our parents the cool mural tiles that we had made for our school mural system. ", "album_id": "72157619624973860", "photo_flickr_id": "3618040983", "setting": "last-3-pick-old-and-tell", "worker_id": "6JJJVH1G8QS7SCC", "story_id": "46502", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we showed our parents the cool mural tiles that we had made for our school mural system .", "storylet_id": "232513"}], [{"original_text": "The whole event culminated with a party with food and friends. We had a lot of fun. ", "album_id": "72157619624973860", "photo_flickr_id": "3618033595", "setting": "last-3-pick-old-and-tell", "worker_id": "6JJJVH1G8QS7SCC", "story_id": "46502", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the whole event culminated with a party with food and friends . we had a lot of fun .", "storylet_id": "232514"}], [{"original_text": "My school play is today! I am so excited to perform.", "album_id": "72157619624973860", "photo_flickr_id": "3618032707", "setting": "last-3-pick-old-and-tell", "worker_id": "PFXI98Z7K09QSPN", "story_id": "46503", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my school play is today ! i am so excited to perform .", "storylet_id": "232515"}], [{"original_text": "Our stage was amazing! We all helped to make it beautiful for our show.", "album_id": "72157619624973860", "photo_flickr_id": "3618032207", "setting": "last-3-pick-old-and-tell", "worker_id": "PFXI98Z7K09QSPN", "story_id": "46503", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our stage was amazing ! we all helped to make it beautiful for our show .", "storylet_id": "232516"}], [{"original_text": "We got so much applause and it made us feel so proud.", "album_id": "72157619624973860", "photo_flickr_id": "3618853944", "setting": "last-3-pick-old-and-tell", "worker_id": "PFXI98Z7K09QSPN", "story_id": "46503", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got so much applause and it made us feel so proud .", "storylet_id": "232517"}], [{"original_text": "We each painted a brick in the schoolyard to show our creativity. ", "album_id": "72157619624973860", "photo_flickr_id": "3618040983", "setting": "last-3-pick-old-and-tell", "worker_id": "PFXI98Z7K09QSPN", "story_id": "46503", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we each painted a brick in the schoolyard to show our creativity .", "storylet_id": "232518"}], [{"original_text": "The day was great and the food and sweets www spectacular!", "album_id": "72157619624973860", "photo_flickr_id": "3618033595", "setting": "last-3-pick-old-and-tell", "worker_id": "PFXI98Z7K09QSPN", "story_id": "46503", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day was great and the food and sweets www spectacular !", "storylet_id": "232519"}], [{"original_text": "The students awaited anxiously as the parents and guests arrived for the open house.", "album_id": "72157619624973860", "photo_flickr_id": "3618032707", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46504", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the students awaited anxiously as the parents and guests arrived for the open house .", "storylet_id": "232520"}], [{"original_text": "The stage was decorated for the event with a floral spring theme.", "album_id": "72157619624973860", "photo_flickr_id": "3618032207", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46504", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the stage was decorated for the event with a floral spring theme .", "storylet_id": "232521"}], [{"original_text": "All the children did recitations from memory.", "album_id": "72157619624973860", "photo_flickr_id": "3618853944", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46504", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the children did recitations from memory .", "storylet_id": "232522"}], [{"original_text": "A small art exhibit was displayed outside showcasing the student's work.", "album_id": "72157619624973860", "photo_flickr_id": "3618040983", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46504", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a small art exhibit was displayed outside showcasing the student 's work .", "storylet_id": "232523"}], [{"original_text": "Best friends forever after the big day!", "album_id": "72157619624973860", "photo_flickr_id": "3618033595", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "46504", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "best friends forever after the big day !", "storylet_id": "232524"}], [{"original_text": "It was a bright and sunny day yesterday. I was so excited because I was graduating.", "album_id": "72157619692962767", "photo_flickr_id": "3603621130", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46505", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a bright and sunny day yesterday . i was so excited because i was graduating .", "storylet_id": "232525"}], [{"original_text": "My boyfriend had shown up to support me as well!.", "album_id": "72157619692962767", "photo_flickr_id": "3602815329", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46505", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my boyfriend had shown up to support me as well ! .", "storylet_id": "232526"}], [{"original_text": "We took a lot of pictures throughout the day.", "album_id": "72157619692962767", "photo_flickr_id": "3603635448", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46505", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took a lot of pictures throughout the day .", "storylet_id": "232527"}], [{"original_text": "We didn't have much to do while waiting for the ceremony to start.", "album_id": "72157619692962767", "photo_flickr_id": "3602833195", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46505", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we did n't have much to do while waiting for the ceremony to start .", "storylet_id": "232528"}], [{"original_text": "There were tons of people in the stadium after it began.", "album_id": "72157619692962767", "photo_flickr_id": "3602911037", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46505", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were tons of people in the stadium after it began .", "storylet_id": "232529"}], [{"original_text": "Mike and Julia had their first date today.", "album_id": "72157619692962767", "photo_flickr_id": "3602815329", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46506", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] had their first date today .", "storylet_id": "232530"}], [{"original_text": "First they went to see some fireworks, which were beautiful.", "album_id": "72157619692962767", "photo_flickr_id": "3603865462", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46506", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first they went to see some fireworks , which were beautiful .", "storylet_id": "232531"}], [{"original_text": "Afterwards Mike bought Julia a balloon. She loved the happy face one!", "album_id": "72157619692962767", "photo_flickr_id": "3604245468", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46506", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards [male] bought [female] a balloon . she loved the happy face one !", "storylet_id": "232532"}], [{"original_text": "Afterwards the date ended in the most romantic and passionate way...", "album_id": "72157619692962767", "photo_flickr_id": "3603621130", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46506", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards the date ended in the most romantic and passionate way ...", "storylet_id": "232533"}], [{"original_text": "With a sweet rock concert!", "album_id": "72157619692962767", "photo_flickr_id": "3602859307", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "46506", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with a sweet rock concert !", "storylet_id": "232534"}], [{"original_text": "Going into the commencement hall. There are beautiful flowers marking this special day.", "album_id": "72157619692962767", "photo_flickr_id": "3603621130", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46507", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going into the commencement hall . there are beautiful flowers marking this special day .", "storylet_id": "232535"}], [{"original_text": "Graduates take photos with family and friends to celebrate before attending the ceremony.", "album_id": "72157619692962767", "photo_flickr_id": "3602815329", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46507", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "graduates take photos with family and friends to celebrate before attending the ceremony .", "storylet_id": "232536"}], [{"original_text": "More happy graduates posing with friends.", "album_id": "72157619692962767", "photo_flickr_id": "3603635448", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46507", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "more happy graduates posing with friends .", "storylet_id": "232537"}], [{"original_text": "Graduates posing on the steps before entering the hall.", "album_id": "72157619692962767", "photo_flickr_id": "3602833195", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46507", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "graduates posing on the steps before entering the hall .", "storylet_id": "232538"}], [{"original_text": "Graduation ceremony is finally underway.", "album_id": "72157619692962767", "photo_flickr_id": "3602911037", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "46507", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "graduation ceremony is finally underway .", "storylet_id": "232539"}], [{"original_text": "It was a nice summer day when Josh and Sally graduated.", "album_id": "72157619692962767", "photo_flickr_id": "3603621130", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "46508", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a nice summer day when josh and [female] graduated .", "storylet_id": "232540"}], [{"original_text": "Sally's little brother came to the ceremony and brought some balloons to celebrate.", "album_id": "72157619692962767", "photo_flickr_id": "3602815329", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "46508", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] 's little brother came to the ceremony and brought some balloons to celebrate .", "storylet_id": "232541"}], [{"original_text": "Josh's friends also came to graduation.", "album_id": "72157619692962767", "photo_flickr_id": "3603635448", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "46508", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "josh 's friends also came to graduation .", "storylet_id": "232542"}], [{"original_text": "Josh and Sally took some candid photos with their friends.", "album_id": "72157619692962767", "photo_flickr_id": "3602833195", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "46508", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "josh and [female] took some candid photos with their friends .", "storylet_id": "232543"}], [{"original_text": "The actual ceremony was inspiring and fun!", "album_id": "72157619692962767", "photo_flickr_id": "3602911037", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "46508", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the actual ceremony was inspiring and fun !", "storylet_id": "232544"}], [{"original_text": "A couple poses for a picture with balloons. ", "album_id": "72157619692962767", "photo_flickr_id": "3602815329", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "46509", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple poses for a picture with balloons .", "storylet_id": "232545"}], [{"original_text": "Behind them is a huge burst of fireworks.", "album_id": "72157619692962767", "photo_flickr_id": "3603865462", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "46509", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "behind them is a huge burst of fireworks .", "storylet_id": "232546"}], [{"original_text": "A person in the crowd is a holding a smiley face balloon.", "album_id": "72157619692962767", "photo_flickr_id": "3604245468", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "46509", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a person in the crowd is a holding a smiley face balloon .", "storylet_id": "232547"}], [{"original_text": "A bouquet of flowers grows beside the side walk.", "album_id": "72157619692962767", "photo_flickr_id": "3603621130", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "46509", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a bouquet of flowers grows beside the side walk .", "storylet_id": "232548"}], [{"original_text": "A huge concert takes place in the background.", "album_id": "72157619692962767", "photo_flickr_id": "3602859307", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "46509", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a huge concert takes place in the background .", "storylet_id": "232549"}], [{"original_text": "Bruce Wayne's father was murdered.", "album_id": "72157626662576104", "photo_flickr_id": "5693928729", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "46510", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] [male] 's father was murdered .", "storylet_id": "232550"}], [{"original_text": "Thousands gathered for the rich man's funeral.", "album_id": "72157626662576104", "photo_flickr_id": "5694502862", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "46510", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "thousands gathered for the rich man 's funeral .", "storylet_id": "232551"}], [{"original_text": "The funeral parlor was packed with mourners.", "album_id": "72157626662576104", "photo_flickr_id": "5694503202", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "46510", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the funeral parlor was packed with mourners .", "storylet_id": "232552"}], [{"original_text": "Bruce makes his decision to become Batman.", "album_id": "72157626662576104", "photo_flickr_id": "5694503702", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "46510", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] makes his decision to become batman .", "storylet_id": "232553"}], [{"original_text": "The citizens of Gotham salute their hero.", "album_id": "72157626662576104", "photo_flickr_id": "5694503874", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "46510", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the citizens of location salute their hero .", "storylet_id": "232554"}], [{"original_text": "These individuals represent the high honor graduates for the class of 2015. ", "album_id": "72157626662576104", "photo_flickr_id": "5694501782", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46511", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these individuals represent the high honor graduates for the class of 2015 .", "storylet_id": "232555"}], [{"original_text": "These individuals represent the 2015 high school graduates. ", "album_id": "72157626662576104", "photo_flickr_id": "5693928729", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46511", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these individuals represent the 2015 high school graduates .", "storylet_id": "232556"}], [{"original_text": "The high honor graduates have arrived and waiting to be seated. ", "album_id": "72157626662576104", "photo_flickr_id": "5694502126", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46511", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the high honor graduates have arrived and waiting to be seated .", "storylet_id": "232557"}], [{"original_text": "These are the dignitaries that are present at the graduation. ", "album_id": "72157626662576104", "photo_flickr_id": "5693929211", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46511", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these are the dignitaries that are present at the graduation .", "storylet_id": "232558"}], [{"original_text": "The photographer is capturing some real good shots. ", "album_id": "72157626662576104", "photo_flickr_id": "5694502472", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46511", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the photographer is capturing some real good shots .", "storylet_id": "232559"}], [{"original_text": "The students and teacher pose for a graduation picture.", "album_id": "72157626662576104", "photo_flickr_id": "5693928729", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "46512", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the students and teacher pose for a graduation picture .", "storylet_id": "232560"}], [{"original_text": "The stadium where they graduate is packed to the brim.", "album_id": "72157626662576104", "photo_flickr_id": "5694502862", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "46512", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the stadium where they graduate is packed to the brim .", "storylet_id": "232561"}], [{"original_text": "There must be over 2 thousand people there.", "album_id": "72157626662576104", "photo_flickr_id": "5694503202", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "46512", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there must be over 2 thousand people there .", "storylet_id": "232562"}], [{"original_text": "One of the students is wearing a batman shirt for some laughs.", "album_id": "72157626662576104", "photo_flickr_id": "5694503702", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "46512", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the students is wearing a batman shirt for some laughs .", "storylet_id": "232563"}], [{"original_text": "The first student to graduate walks on stage.", "album_id": "72157626662576104", "photo_flickr_id": "5694503874", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "46512", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the first student to graduate walks on stage .", "storylet_id": "232564"}], [{"original_text": "The entire class was happy to graduate.", "album_id": "72157626662576104", "photo_flickr_id": "5694501782", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46513", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the entire class was happy to graduate .", "storylet_id": "232565"}], [{"original_text": "The ones in the red were going to graduate the year after.", "album_id": "72157626662576104", "photo_flickr_id": "5693928729", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46513", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ones in the red were going to graduate the year after .", "storylet_id": "232566"}], [{"original_text": "People could wear whatever shoes they wanted at the ceremony.", "album_id": "72157626662576104", "photo_flickr_id": "5694502126", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46513", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people could wear whatever shoes they wanted at the ceremony .", "storylet_id": "232567"}], [{"original_text": "The faculty looked proud to be affiliated with the school.", "album_id": "72157626662576104", "photo_flickr_id": "5693929211", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46513", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the faculty looked proud to be affiliated with the school .", "storylet_id": "232568"}], [{"original_text": "Dan is the school photographer and we bought some of his photos.", "album_id": "72157626662576104", "photo_flickr_id": "5694502472", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46513", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] is the school photographer and we bought some of his photos .", "storylet_id": "232569"}], [{"original_text": "I am a professional photographer hired to take graduating photos.", "album_id": "72157626662576104", "photo_flickr_id": "5694501782", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46514", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am a professional photographer hired to take graduating photos .", "storylet_id": "232570"}], [{"original_text": "Here is PTC graduating class of 2014", "album_id": "72157626662576104", "photo_flickr_id": "5693928729", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46514", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is ptc graduating class of 2014", "storylet_id": "232571"}], [{"original_text": "Some more PTC graduates.", "album_id": "72157626662576104", "photo_flickr_id": "5694502126", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46514", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some more ptc graduates .", "storylet_id": "232572"}], [{"original_text": "The dean and teachers of ATU.", "album_id": "72157626662576104", "photo_flickr_id": "5693929211", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46514", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dean and teachers of organization .", "storylet_id": "232573"}], [{"original_text": "Here is me the photographer.", "album_id": "72157626662576104", "photo_flickr_id": "5694502472", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46514", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is me the photographer .", "storylet_id": "232574"}], [{"original_text": "They picked the winners for the scholarships today.", "album_id": "72157626644157407", "photo_flickr_id": "5742248788", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46515", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they picked the winners for the scholarships today .", "storylet_id": "232575"}], [{"original_text": "Many young people were chosen for them.", "album_id": "72157626644157407", "photo_flickr_id": "5741695647", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46515", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many young people were chosen for them .", "storylet_id": "232576"}], [{"original_text": "They had a speaker congratulate them.", "album_id": "72157626644157407", "photo_flickr_id": "5742249490", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46515", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a speaker congratulate them .", "storylet_id": "232577"}], [{"original_text": "Everyone was so proud to receive their scholarship.", "album_id": "72157626644157407", "photo_flickr_id": "5742249548", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46515", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was so proud to receive their scholarship .", "storylet_id": "232578"}], [{"original_text": "The families were really happy and it was great seeing them together.", "album_id": "72157626644157407", "photo_flickr_id": "5742249572", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46515", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the families were really happy and it was great seeing them together .", "storylet_id": "232579"}], [{"original_text": "I had a great time at the meeting.", "album_id": "72157626644157407", "photo_flickr_id": "5741695647", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46516", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the meeting .", "storylet_id": "232580"}], [{"original_text": "I got to meet a lot of new and interesting people.", "album_id": "72157626644157407", "photo_flickr_id": "5741695851", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46516", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got to meet a lot of new and interesting people .", "storylet_id": "232581"}], [{"original_text": "They were very funny.", "album_id": "72157626644157407", "photo_flickr_id": "5742249098", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46516", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were very funny .", "storylet_id": "232582"}], [{"original_text": "Afterward we got something to eat.", "album_id": "72157626644157407", "photo_flickr_id": "5742249364", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46516", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we got something to eat .", "storylet_id": "232583"}], [{"original_text": "There were some speakers there as well.", "album_id": "72157626644157407", "photo_flickr_id": "5741696215", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46516", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were some speakers there as well .", "storylet_id": "232584"}], [{"original_text": "People prefer to be around nice people.", "album_id": "72157626644157407", "photo_flickr_id": "5742248788", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46517", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people prefer to be around nice people .", "storylet_id": "232585"}], [{"original_text": "Stephanie is one of the nicest people at a university.", "album_id": "72157626644157407", "photo_flickr_id": "5741695647", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46517", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] is one of the nicest people at a university .", "storylet_id": "232586"}], [{"original_text": "A counselor spoke about how healthy graduating is.", "album_id": "72157626644157407", "photo_flickr_id": "5742249490", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46517", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a counselor spoke about how healthy graduating is .", "storylet_id": "232587"}], [{"original_text": "The women took a picture with a few grateful boys. ", "album_id": "72157626644157407", "photo_flickr_id": "5742249548", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46517", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the women took a picture with a few grateful boys .", "storylet_id": "232588"}], [{"original_text": "Everyone was proud of each other that day.", "album_id": "72157626644157407", "photo_flickr_id": "5742249572", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46517", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was proud of each other that day .", "storylet_id": "232589"}], [{"original_text": "The students arrived to the ceremony at USF.", "album_id": "72157626644157407", "photo_flickr_id": "5742248788", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46518", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the students arrived to the ceremony at organization .", "storylet_id": "232590"}], [{"original_text": "The students listened while the speaker gave a speech.", "album_id": "72157626644157407", "photo_flickr_id": "5741695647", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46518", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the students listened while the speaker gave a speech .", "storylet_id": "232591"}], [{"original_text": "The speaker presented before the group of students.", "album_id": "72157626644157407", "photo_flickr_id": "5742249490", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46518", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the speaker presented before the group of students .", "storylet_id": "232592"}], [{"original_text": "Some of the students received gifts at the conference.", "album_id": "72157626644157407", "photo_flickr_id": "5742249548", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46518", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the students received gifts at the conference .", "storylet_id": "232593"}], [{"original_text": "At the end, they all gathered for a group photo.", "album_id": "72157626644157407", "photo_flickr_id": "5742249572", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46518", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , they all gathered for a group photo .", "storylet_id": "232594"}], [{"original_text": "Today was the awards ceremony over at USF! I was glad to be there.", "album_id": "72157626644157407", "photo_flickr_id": "5742248788", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "46519", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the awards ceremony over at organization ! i was glad to be there .", "storylet_id": "232595"}], [{"original_text": "So was my lovely girlfriend.", "album_id": "72157626644157407", "photo_flickr_id": "5741695647", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "46519", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so was my lovely girlfriend .", "storylet_id": "232596"}], [{"original_text": "The staff seemed to be too, though they're getting paid so who knows.", "album_id": "72157626644157407", "photo_flickr_id": "5742249490", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "46519", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the staff seemed to be too , though they 're getting paid so who knows .", "storylet_id": "232597"}], [{"original_text": "Congratulations to all the winners!", "album_id": "72157626644157407", "photo_flickr_id": "5742249548", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "46519", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "congratulations to all the winners !", "storylet_id": "232598"}], [{"original_text": "Here's to next time guys. Great work.", "album_id": "72157626644157407", "photo_flickr_id": "5742249572", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "46519", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's to next time guys . great work .", "storylet_id": "232599"}], [{"original_text": "They opened the ceremony with a very strong thesis presentation.", "album_id": "72157626784170543", "photo_flickr_id": "5808595429", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "46520", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they opened the ceremony with a very strong thesis presentation .", "storylet_id": "232600"}], [{"original_text": "It was presented on Natural Gas and its contribution to the power community.", "album_id": "72157626784170543", "photo_flickr_id": "5809163792", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "46520", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was presented on natural gas and its contribution to the power community .", "storylet_id": "232601"}], [{"original_text": "Following the ceremony, they gathered outside.", "album_id": "72157626784170543", "photo_flickr_id": "5809156380", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "46520", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "following the ceremony , they gathered outside .", "storylet_id": "232602"}], [{"original_text": "Along with their entire family and took a photo...", "album_id": "72157626784170543", "photo_flickr_id": "5809161236", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "46520", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "along with their entire family and took a photo ...", "storylet_id": "232603"}], [{"original_text": "Then they went inside and watched the rest of the ceremony.", "album_id": "72157626784170543", "photo_flickr_id": "5808611567", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "46520", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then they went inside and watched the rest of the ceremony .", "storylet_id": "232604"}], [{"original_text": "Everyone was very excited at the graduation ceremony.", "album_id": "72157626784170543", "photo_flickr_id": "5809163792", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46521", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was very excited at the graduation ceremony .", "storylet_id": "232605"}], [{"original_text": "There were a lot of military members present.", "album_id": "72157626784170543", "photo_flickr_id": "5809165040", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46521", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of military members present .", "storylet_id": "232606"}], [{"original_text": "There was a thesis statement as well.", "album_id": "72157626784170543", "photo_flickr_id": "5808604465", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46521", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a thesis statement as well .", "storylet_id": "232607"}], [{"original_text": "All of the staff were very proud.", "album_id": "72157626784170543", "photo_flickr_id": "5808611567", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46521", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the staff were very proud .", "storylet_id": "232608"}], [{"original_text": "I had a great time there.", "album_id": "72157626784170543", "photo_flickr_id": "5808615527", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46521", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time there .", "storylet_id": "232609"}], [{"original_text": "The graduates were shown a movie about global warming.", "album_id": "72157626784170543", "photo_flickr_id": "5809163792", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46522", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the graduates were shown a movie about global warming .", "storylet_id": "232610"}], [{"original_text": "They all sat in confusion and boredom.", "album_id": "72157626784170543", "photo_flickr_id": "5809165040", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46522", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all sat in confusion and boredom .", "storylet_id": "232611"}], [{"original_text": "A speaker told them to imagine that they just won the lottery.", "album_id": "72157626784170543", "photo_flickr_id": "5808604465", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46522", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a speaker told them to imagine that they just won the lottery .", "storylet_id": "232612"}], [{"original_text": "The teachers looked confused in regard to that statement.", "album_id": "72157626784170543", "photo_flickr_id": "5808611567", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46522", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the teachers looked confused in regard to that statement .", "storylet_id": "232613"}], [{"original_text": "Professor Smith was the most confused out of everyone.", "album_id": "72157626784170543", "photo_flickr_id": "5808615527", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46522", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "professor smith was the most confused out of everyone .", "storylet_id": "232614"}], [{"original_text": "The final project before graduating was the thesis presentation to the panel.", "album_id": "72157626784170543", "photo_flickr_id": "5808595429", "setting": "last-3-pick-old-and-tell", "worker_id": "VLCT1FWHERWKEXQ", "story_id": "46523", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the final project before graduating was the thesis presentation to the panel .", "storylet_id": "232615"}], [{"original_text": "Each student gave their presentation on stage.", "album_id": "72157626784170543", "photo_flickr_id": "5809163792", "setting": "last-3-pick-old-and-tell", "worker_id": "VLCT1FWHERWKEXQ", "story_id": "46523", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each student gave their presentation on stage .", "storylet_id": "232616"}], [{"original_text": "When it came time for the graduation ceremony, they stood next to their classmates.", "album_id": "72157626784170543", "photo_flickr_id": "5809156380", "setting": "last-3-pick-old-and-tell", "worker_id": "VLCT1FWHERWKEXQ", "story_id": "46523", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when it came time for the graduation ceremony , they stood next to their classmates .", "storylet_id": "232617"}], [{"original_text": "Then, the graduates posed with their colleagues and family members.", "album_id": "72157626784170543", "photo_flickr_id": "5809161236", "setting": "last-3-pick-old-and-tell", "worker_id": "VLCT1FWHERWKEXQ", "story_id": "46523", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , the graduates posed with their colleagues and family members .", "storylet_id": "232618"}], [{"original_text": "Finally, they walked across the stage and collected their accolades.", "album_id": "72157626784170543", "photo_flickr_id": "5808611567", "setting": "last-3-pick-old-and-tell", "worker_id": "VLCT1FWHERWKEXQ", "story_id": "46523", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , they walked across the stage and collected their accolades .", "storylet_id": "232619"}], [{"original_text": "The class was graduating. Before the ceremony, the students presented a power point.", "album_id": "72157626784170543", "photo_flickr_id": "5809163792", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "46524", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the class was graduating . before the ceremony , the students presented a power point .", "storylet_id": "232620"}], [{"original_text": "They presented it to the military audience.", "album_id": "72157626784170543", "photo_flickr_id": "5809165040", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "46524", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they presented it to the military audience .", "storylet_id": "232621"}], [{"original_text": "They explained their ongoing project and thesis statement.", "album_id": "72157626784170543", "photo_flickr_id": "5808604465", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "46524", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they explained their ongoing project and thesis statement .", "storylet_id": "232622"}], [{"original_text": "The professors lined up to congratulate the graduates.", "album_id": "72157626784170543", "photo_flickr_id": "5808611567", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "46524", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the professors lined up to congratulate the graduates .", "storylet_id": "232623"}], [{"original_text": "After all of their hard work, the students walked down the aisle and received their diplomas.", "album_id": "72157626784170543", "photo_flickr_id": "5808615527", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "46524", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after all of their hard work , the students walked down the aisle and received their diplomas .", "storylet_id": "232624"}], [{"original_text": "Jane was excited to graduate.", "album_id": "72157626814267273", "photo_flickr_id": "5822651394", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46525", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was excited to graduate .", "storylet_id": "232625"}], [{"original_text": "She smiled with her mom.", "album_id": "72157626814267273", "photo_flickr_id": "5822651354", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46525", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she smiled with her mom .", "storylet_id": "232626"}], [{"original_text": "She smiled with her sister.", "album_id": "72157626814267273", "photo_flickr_id": "5822087063", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46525", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she smiled with her sister .", "storylet_id": "232627"}], [{"original_text": "She kissed her sister simultaneously with her mom.", "album_id": "72157626814267273", "photo_flickr_id": "5822086997", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46525", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she kissed her sister simultaneously with her mom .", "storylet_id": "232628"}], [{"original_text": "Then she went crazy and whacked the camera man!", "album_id": "72157626814267273", "photo_flickr_id": "5822651648", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46525", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then she went crazy and whacked the camera man !", "storylet_id": "232629"}], [{"original_text": "This young lady is graduating today.", "album_id": "72157626814267273", "photo_flickr_id": "5822651132", "setting": "first-2-pick-and-tell", "worker_id": "VAYSP22AKCMEDZW", "story_id": "46526", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this young lady is graduating today .", "storylet_id": "232630"}], [{"original_text": "This young lady and her proud mother pose for a picture before the graduation.", "album_id": "72157626814267273", "photo_flickr_id": "5822350514", "setting": "first-2-pick-and-tell", "worker_id": "VAYSP22AKCMEDZW", "story_id": "46526", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this young lady and her proud mother pose for a picture before the graduation .", "storylet_id": "232631"}], [{"original_text": "The young lady sits in the crowd and listens to the ceremony and waits to receive her diploma.", "album_id": "72157626814267273", "photo_flickr_id": "5822651186", "setting": "first-2-pick-and-tell", "worker_id": "VAYSP22AKCMEDZW", "story_id": "46526", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the young lady sits in the crowd and listens to the ceremony and waits to receive her diploma .", "storylet_id": "232632"}], [{"original_text": "The young lady gets her diploma and walks across the stage.", "album_id": "72157626814267273", "photo_flickr_id": "5822651718", "setting": "first-2-pick-and-tell", "worker_id": "VAYSP22AKCMEDZW", "story_id": "46526", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the young lady gets her diploma and walks across the stage .", "storylet_id": "232633"}], [{"original_text": "The young lady takes a picture with her diploma and her proud mother.", "album_id": "72157626814267273", "photo_flickr_id": "5822651354", "setting": "first-2-pick-and-tell", "worker_id": "VAYSP22AKCMEDZW", "story_id": "46526", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the young lady takes a picture with her diploma and her proud mother .", "storylet_id": "232634"}], [{"original_text": "My graduation ceremony was a success.", "album_id": "72157626814267273", "photo_flickr_id": "5822651132", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46527", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my graduation ceremony was a success .", "storylet_id": "232635"}], [{"original_text": "Mother was more proud of me than her old proudest moment, when I was born.", "album_id": "72157626814267273", "photo_flickr_id": "5822350514", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46527", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mother was more proud of me than her old proudest moment , when i was born .", "storylet_id": "232636"}], [{"original_text": "The ceremony lasted about thirty minutes.", "album_id": "72157626814267273", "photo_flickr_id": "5822651186", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46527", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ceremony lasted about thirty minutes .", "storylet_id": "232637"}], [{"original_text": "They yelled out my name and off I went with my diploma.", "album_id": "72157626814267273", "photo_flickr_id": "5822651718", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46527", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they yelled out my name and off i went with my diploma .", "storylet_id": "232638"}], [{"original_text": "Mother says she cannot wait for me to make money so she can afford to buy a beach condo. ", "album_id": "72157626814267273", "photo_flickr_id": "5822651354", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46527", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mother says she can not wait for me to make money so she can afford to buy a beach condo .", "storylet_id": "232639"}], [{"original_text": "She was ready to go to her graduation.", "album_id": "72157626814267273", "photo_flickr_id": "5822651132", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46528", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she was ready to go to her graduation .", "storylet_id": "232640"}], [{"original_text": "The family took a few final photos before leaving.", "album_id": "72157626814267273", "photo_flickr_id": "5822350514", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46528", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family took a few final photos before leaving .", "storylet_id": "232641"}], [{"original_text": "She sat in the crowd waiting patiently for her diploma.", "album_id": "72157626814267273", "photo_flickr_id": "5822651186", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46528", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she sat in the crowd waiting patiently for her diploma .", "storylet_id": "232642"}], [{"original_text": "It was her turn to walk across the stage to receive her diploma.", "album_id": "72157626814267273", "photo_flickr_id": "5822651718", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46528", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was her turn to walk across the stage to receive her diploma .", "storylet_id": "232643"}], [{"original_text": "They were so happy she graduated.", "album_id": "72157626814267273", "photo_flickr_id": "5822651354", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46528", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were so happy she graduated .", "storylet_id": "232644"}], [{"original_text": "After many years of working as a waitress during the day and going to school at night, today was her time to shine. ", "album_id": "72157626814267273", "photo_flickr_id": "5822651394", "setting": "last-3-pick-old-and-tell", "worker_id": "VLCT1FWHERWKEXQ", "story_id": "46529", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after many years of working as a waitress during the day and going to school at night , today was her time to shine .", "storylet_id": "232645"}], [{"original_text": "The new graduate showed off her diploma and posed with her roommate. ", "album_id": "72157626814267273", "photo_flickr_id": "5822651354", "setting": "last-3-pick-old-and-tell", "worker_id": "VLCT1FWHERWKEXQ", "story_id": "46529", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the new graduate showed off her diploma and posed with her roommate .", "storylet_id": "232646"}], [{"original_text": "Next, she posed with her younger sister. ", "album_id": "72157626814267273", "photo_flickr_id": "5822087063", "setting": "last-3-pick-old-and-tell", "worker_id": "VLCT1FWHERWKEXQ", "story_id": "46529", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next , she posed with her younger sister .", "storylet_id": "232647"}], [{"original_text": "The little sister was a bit startled when her older sister and sister's roommate smothered her with kisses.", "album_id": "72157626814267273", "photo_flickr_id": "5822086997", "setting": "last-3-pick-old-and-tell", "worker_id": "VLCT1FWHERWKEXQ", "story_id": "46529", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the little sister was a bit startled when her older sister and sister 's roommate smothered her with kisses .", "storylet_id": "232648"}], [{"original_text": "Finally, the new graduate made her way off the school's green field for the last time.", "album_id": "72157626814267273", "photo_flickr_id": "5822651648", "setting": "last-3-pick-old-and-tell", "worker_id": "VLCT1FWHERWKEXQ", "story_id": "46529", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , the new graduate made her way off the school 's green field for the last time .", "storylet_id": "232649"}], [{"original_text": "June asks the group, \"Did you see what Sonia is wearing?\"", "album_id": "72157627866775475", "photo_flickr_id": "6286797828", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "46530", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] asks the group , `` did you see what [female] is wearing ? ''", "storylet_id": "232650"}], [{"original_text": "The group begins to whisper about Sonia.", "album_id": "72157627866775475", "photo_flickr_id": "6286283613", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "46530", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the group begins to whisper about [female] .", "storylet_id": "232651"}], [{"original_text": "George is appalled at what Sonia is wearing.", "album_id": "72157627866775475", "photo_flickr_id": "6286262377", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "46530", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] is appalled at what [female] is wearing .", "storylet_id": "232652"}], [{"original_text": "He attempts to ignore Sonia's appearance and continue with his speech.", "album_id": "72157627866775475", "photo_flickr_id": "6286259719", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "46530", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he attempts to ignore [female] 's appearance and continue with his speech .", "storylet_id": "232653"}], [{"original_text": "Marian holds back a laugh when she spies Sonia's outfit.", "album_id": "72157627866775475", "photo_flickr_id": "6286268635", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "46530", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] holds back a laugh when she spies [female] 's outfit .", "storylet_id": "232654"}], [{"original_text": "We had an award ceremony for the seniors last night.", "album_id": "72157627866775475", "photo_flickr_id": "6286260893", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46531", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had an award ceremony for the seniors last night .", "storylet_id": "232655"}], [{"original_text": "So many people were there to attend.", "album_id": "72157627866775475", "photo_flickr_id": "6286263845", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46531", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so many people were there to attend .", "storylet_id": "232656"}], [{"original_text": "We gave out a lot of awards that night.", "album_id": "72157627866775475", "photo_flickr_id": "6286268635", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46531", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we gave out a lot of awards that night .", "storylet_id": "232657"}], [{"original_text": "They were all so proud to receive them.", "album_id": "72157627866775475", "photo_flickr_id": "6286791980", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46531", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were all so proud to receive them .", "storylet_id": "232658"}], [{"original_text": "It was a great night and everyone was so happy!", "album_id": "72157627866775475", "photo_flickr_id": "6286280529", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "46531", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great night and everyone was so happy !", "storylet_id": "232659"}], [{"original_text": "The room was dimly lit and the table was set.", "album_id": "72157627866775475", "photo_flickr_id": "6286260893", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46532", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the room was dimly lit and the table was set .", "storylet_id": "232660"}], [{"original_text": "There were many guests who showed us to discuss.", "album_id": "72157627866775475", "photo_flickr_id": "6286263845", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46532", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many guests who showed us to discuss .", "storylet_id": "232661"}], [{"original_text": "Some of the partners took a group photo.", "album_id": "72157627866775475", "photo_flickr_id": "6286268635", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46532", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the partners took a group photo .", "storylet_id": "232662"}], [{"original_text": "They were ecstatic about the progress of our company. ", "album_id": "72157627866775475", "photo_flickr_id": "6286791980", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46532", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were ecstatic about the progress of our company .", "storylet_id": "232663"}], [{"original_text": "Together, as a department, we are changing the world. ", "album_id": "72157627866775475", "photo_flickr_id": "6286280529", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46532", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "together , as a department , we are changing the world .", "storylet_id": "232664"}], [{"original_text": "The wife brought flowers for this special event. ", "album_id": "72157627866775475", "photo_flickr_id": "6286797828", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46533", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wife brought flowers for this special event .", "storylet_id": "232665"}], [{"original_text": "The coworkers of the company created a video to thank its ceo. ", "album_id": "72157627866775475", "photo_flickr_id": "6286283613", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46533", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the coworkers of the company created a video to thank its ceo .", "storylet_id": "232666"}], [{"original_text": "The ceo announced his retirement. ", "album_id": "72157627866775475", "photo_flickr_id": "6286262377", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46533", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ceo announced his retirement .", "storylet_id": "232667"}], [{"original_text": "He told everybody that his son would replace him. ", "album_id": "72157627866775475", "photo_flickr_id": "6286259719", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46533", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he told everybody that his son would replace him .", "storylet_id": "232668"}], [{"original_text": "He posed with his employees afterwards. ", "album_id": "72157627866775475", "photo_flickr_id": "6286268635", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46533", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he posed with his employees afterwards .", "storylet_id": "232669"}], [{"original_text": "The awards have arrived for the ceremony.", "album_id": "72157627866775475", "photo_flickr_id": "6286260893", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46534", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the awards have arrived for the ceremony .", "storylet_id": "232670"}], [{"original_text": "The audience listened while the speaker gave a speech.", "album_id": "72157627866775475", "photo_flickr_id": "6286263845", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46534", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the audience listened while the speaker gave a speech .", "storylet_id": "232671"}], [{"original_text": "One by one they accepted their awards. ", "album_id": "72157627866775475", "photo_flickr_id": "6286268635", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46534", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one by one they accepted their awards .", "storylet_id": "232672"}], [{"original_text": "They were so excited for the honor.", "album_id": "72157627866775475", "photo_flickr_id": "6286791980", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46534", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were so excited for the honor .", "storylet_id": "232673"}], [{"original_text": "After that they got together to take a group photo.", "album_id": "72157627866775475", "photo_flickr_id": "6286280529", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46534", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that they got together to take a group photo .", "storylet_id": "232674"}], [{"original_text": "Graduating college is an exciting time.", "album_id": "72157629972234013", "photo_flickr_id": "6999554506", "setting": "first-2-pick-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "46535", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "graduating college is an exciting time .", "storylet_id": "232675"}], [{"original_text": "Family and friends of the graduates gather for the celebration.", "album_id": "72157629972234013", "photo_flickr_id": "6999554500", "setting": "first-2-pick-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "46535", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "family and friends of the graduates gather for the celebration .", "storylet_id": "232676"}], [{"original_text": "The Dean of the University speaks to the graduating class and their guests.", "album_id": "72157629972234013", "photo_flickr_id": "6999554354", "setting": "first-2-pick-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "46535", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the [male] of the organization speaks to the graduating class and their guests .", "storylet_id": "232677"}], [{"original_text": "The graduates are very happy to close this chapter in their lives.", "album_id": "72157629972234013", "photo_flickr_id": "7145639603", "setting": "first-2-pick-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "46535", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the graduates are very happy to close this chapter in their lives .", "storylet_id": "232678"}], [{"original_text": "The family and friends await on the new graduates for pictures and hugs!", "album_id": "72157629972234013", "photo_flickr_id": "6999553640", "setting": "first-2-pick-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "46535", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family and friends await on the new graduates for pictures and hugs !", "storylet_id": "232679"}], [{"original_text": "Friends and family are gathering for the graduation ceremony and Springville College. ", "album_id": "72157629972234013", "photo_flickr_id": "6999554500", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "46536", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends and family are gathering for the graduation ceremony and organization organization .", "storylet_id": "232680"}], [{"original_text": "Everyone is finally seated so the event can begin. ", "album_id": "72157629972234013", "photo_flickr_id": "7145639791", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "46536", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone is finally seated so the event can begin .", "storylet_id": "232681"}], [{"original_text": "Here are the students in line before receiving their diplomas. ", "album_id": "72157629972234013", "photo_flickr_id": "7145640279", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "46536", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here are the students in line before receiving their diplomas .", "storylet_id": "232682"}], [{"original_text": "Finally the head principle congratulates them and wishes everyone a fabulous future. ", "album_id": "72157629972234013", "photo_flickr_id": "6999554354", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "46536", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally the head principle congratulates them and wishes everyone a fabulous future .", "storylet_id": "232683"}], [{"original_text": "This is a memorial outside for 3 students that were killed a week before the ceremony. ", "album_id": "72157629972234013", "photo_flickr_id": "6999553640", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "46536", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a memorial outside for 3 students that were killed a week before the ceremony .", "storylet_id": "232684"}], [{"original_text": "The park was so crowded in the morning. ", "album_id": "72157629972234013", "photo_flickr_id": "6999554500", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46537", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the park was so crowded in the morning .", "storylet_id": "232685"}], [{"original_text": "The venue was filled with antsy people.", "album_id": "72157629972234013", "photo_flickr_id": "7145639791", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46537", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the venue was filled with antsy people .", "storylet_id": "232686"}], [{"original_text": "The graduates word glossy black gowns. ", "album_id": "72157629972234013", "photo_flickr_id": "7145640279", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46537", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the graduates word glossy black gowns .", "storylet_id": "232687"}], [{"original_text": "This faculty member gave a excited speech. ", "album_id": "72157629972234013", "photo_flickr_id": "6999554354", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46537", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this faculty member gave a excited speech .", "storylet_id": "232688"}], [{"original_text": "We gathered together to share roses and balloons.", "album_id": "72157629972234013", "photo_flickr_id": "6999553640", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46537", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we gathered together to share roses and balloons .", "storylet_id": "232689"}], [{"original_text": "this year they had the stage outside. ", "album_id": "72157629972234013", "photo_flickr_id": "6999554506", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46538", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this year they had the stage outside .", "storylet_id": "232690"}], [{"original_text": "it was uncommon to do so, but it was neat seeing all of the gowns lined up on the sidewalk.", "album_id": "72157629972234013", "photo_flickr_id": "6999554500", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46538", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was uncommon to do so , but it was neat seeing all of the gowns lined up on the sidewalk .", "storylet_id": "232691"}], [{"original_text": "the speeches where awesome this time, but i just might be biased.", "album_id": "72157629972234013", "photo_flickr_id": "6999554354", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46538", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the speeches where awesome this time , but i just might be biased .", "storylet_id": "232692"}], [{"original_text": "we sat quietly waiting for our names to be called.", "album_id": "72157629972234013", "photo_flickr_id": "7145639603", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46538", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we sat quietly waiting for our names to be called .", "storylet_id": "232693"}], [{"original_text": "our parents and family waited for us in the quad.", "album_id": "72157629972234013", "photo_flickr_id": "6999553640", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46538", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our parents and family waited for us in the quad .", "storylet_id": "232694"}], [{"original_text": "A courtyard had a well-watered lawn.", "album_id": "72157629972234013", "photo_flickr_id": "6999554500", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46539", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a courtyard had a well-watered lawn .", "storylet_id": "232695"}], [{"original_text": "The gym was stuffy but the spirits were high.", "album_id": "72157629972234013", "photo_flickr_id": "7145639791", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46539", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the gym was stuffy but the spirits were high .", "storylet_id": "232696"}], [{"original_text": "The graduates wore the shiniest gowns I had ever seen.", "album_id": "72157629972234013", "photo_flickr_id": "7145640279", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46539", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the graduates wore the shiniest gowns i had ever seen .", "storylet_id": "232697"}], [{"original_text": "A historic speech was made by the president.", "album_id": "72157629972234013", "photo_flickr_id": "6999554354", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46539", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a historic speech was made by the president .", "storylet_id": "232698"}], [{"original_text": "Families gathered outside to reunite and take pictures. ", "album_id": "72157629972234013", "photo_flickr_id": "6999553640", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46539", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "families gathered outside to reunite and take pictures .", "storylet_id": "232699"}], [{"original_text": "Everyone was very excited to graduate last weekend.", "album_id": "72157629955722010", "photo_flickr_id": "7296535188", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46540", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was very excited to graduate last weekend .", "storylet_id": "232700"}], [{"original_text": "We had a great time there.", "album_id": "72157629955722010", "photo_flickr_id": "7296534576", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46540", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a great time there .", "storylet_id": "232701"}], [{"original_text": "The speakers were very funny.", "album_id": "72157629955722010", "photo_flickr_id": "7296539512", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46540", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the speakers were very funny .", "storylet_id": "232702"}], [{"original_text": "I really enjoyed their speeches.", "album_id": "72157629955722010", "photo_flickr_id": "7296540374", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46540", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i really enjoyed their speeches .", "storylet_id": "232703"}], [{"original_text": "Everyone was cheering and tossing hats at the end.", "album_id": "72157629955722010", "photo_flickr_id": "7296541670", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46540", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was cheering and tossing hats at the end .", "storylet_id": "232704"}], [{"original_text": "Today we renewed our navy oath", "album_id": "72157629955722010", "photo_flickr_id": "7296534086", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "46541", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we renewed our navy oath", "storylet_id": "232705"}], [{"original_text": "And I gave a fantastic speech ", "album_id": "72157629955722010", "photo_flickr_id": "7296535188", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "46541", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and i gave a fantastic speech", "storylet_id": "232706"}], [{"original_text": "We all raised our hands to take our oath ", "album_id": "72157629955722010", "photo_flickr_id": "7296536108", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "46541", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all raised our hands to take our oath", "storylet_id": "232707"}], [{"original_text": "The president shook our hands ", "album_id": "72157629955722010", "photo_flickr_id": "7296538108", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "46541", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the president shook our hands", "storylet_id": "232708"}], [{"original_text": "And off we went to march away", "album_id": "72157629955722010", "photo_flickr_id": "7296539512", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "46541", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and off we went to march away", "storylet_id": "232709"}], [{"original_text": "The military is proud to hold its graduation and many old important people spoke.", "album_id": "72157629955722010", "photo_flickr_id": "7296535188", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46542", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the military is proud to hold its graduation and many old important people spoke .", "storylet_id": "232710"}], [{"original_text": "The graduates were proud as they pledged their loyalty to their country.", "album_id": "72157629955722010", "photo_flickr_id": "7296534576", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46542", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the graduates were proud as they pledged their loyalty to their country .", "storylet_id": "232711"}], [{"original_text": "The speakers also shared in the graduates joy as they came across the stage for their diploma.", "album_id": "72157629955722010", "photo_flickr_id": "7296539512", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46542", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the speakers also shared in the graduates joy as they came across the stage for their diploma .", "storylet_id": "232712"}], [{"original_text": "Everyone on stage clapped for the graduates and their bright futures.", "album_id": "72157629955722010", "photo_flickr_id": "7296540374", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46542", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone on stage clapped for the graduates and their bright futures .", "storylet_id": "232713"}], [{"original_text": "The graduates ended the ceremony by throwing their caps into the air. It was very memorable. ", "album_id": "72157629955722010", "photo_flickr_id": "7296541670", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46542", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the graduates ended the ceremony by throwing their caps into the air . it was very memorable .", "storylet_id": "232714"}], [{"original_text": "Leon Panetta and three others pose for the came.", "album_id": "72157629955722010", "photo_flickr_id": "7296534086", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "46543", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] panetta and three others pose for the came .", "storylet_id": "232715"}], [{"original_text": "Panetta gives a speech to the grads.", "album_id": "72157629955722010", "photo_flickr_id": "7296535188", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "46543", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "panetta gives a speech to the grads .", "storylet_id": "232716"}], [{"original_text": "The grads take their final pledge before leaving.", "album_id": "72157629955722010", "photo_flickr_id": "7296536108", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "46543", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the grads take their final pledge before leaving .", "storylet_id": "232717"}], [{"original_text": "Each one shakes Leons hand.", "album_id": "72157629955722010", "photo_flickr_id": "7296538108", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "46543", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "each one shakes organization hand .", "storylet_id": "232718"}], [{"original_text": "They all had a great time.", "album_id": "72157629955722010", "photo_flickr_id": "7296539512", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "46543", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all had a great time .", "storylet_id": "232719"}], [{"original_text": "we went to this huge military rally.", "album_id": "72157629955722010", "photo_flickr_id": "7296534086", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46544", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to this huge military rally .", "storylet_id": "232720"}], [{"original_text": "there where many people that gave speeches that i did not recognise.", "album_id": "72157629955722010", "photo_flickr_id": "7296535188", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46544", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there where many people that gave speeches that i did not recognise .", "storylet_id": "232721"}], [{"original_text": "there where so many people giving oaths as well. ", "album_id": "72157629955722010", "photo_flickr_id": "7296536108", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46544", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there where so many people giving oaths as well .", "storylet_id": "232722"}], [{"original_text": "it was almost like watching a church sermon.", "album_id": "72157629955722010", "photo_flickr_id": "7296538108", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46544", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was almost like watching a church sermon .", "storylet_id": "232723"}], [{"original_text": "everyone cheered at the same time. I still dont know what the whole thing was about.", "album_id": "72157629955722010", "photo_flickr_id": "7296539512", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46544", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone cheered at the same time . i still dont know what the whole thing was about .", "storylet_id": "232724"}], [{"original_text": "It's time to pick teams for war again.", "album_id": "72157630056039634", "photo_flickr_id": "7155162371", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46545", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's time to pick teams for war again .", "storylet_id": "232725"}], [{"original_text": "The white general starts calling out names.", "album_id": "72157630056039634", "photo_flickr_id": "7155164541", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46545", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the white general starts calling out names .", "storylet_id": "232726"}], [{"original_text": "The bearded general starts calling on his turn.", "album_id": "72157630056039634", "photo_flickr_id": "7340366362", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46545", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bearded general starts calling on his turn .", "storylet_id": "232727"}], [{"original_text": "\"STOP!\" yells the caliph.", "album_id": "72157630056039634", "photo_flickr_id": "7340369856", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46545", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "`` stop ! '' yells the caliph .", "storylet_id": "232728"}], [{"original_text": "Raucous laughter from the peanut gallery, the bearded guy doesn't actually get a turn.", "album_id": "72157630056039634", "photo_flickr_id": "7340371720", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "46545", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "raucous laughter from the peanut gallery , the bearded guy does n't actually get a turn .", "storylet_id": "232729"}], [{"original_text": "I went to the award ceremony yesterday.", "album_id": "72157630056039634", "photo_flickr_id": "7155159873", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46546", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the award ceremony yesterday .", "storylet_id": "232730"}], [{"original_text": "There were a lot of people there.", "album_id": "72157630056039634", "photo_flickr_id": "7340364440", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46546", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people there .", "storylet_id": "232731"}], [{"original_text": "Everyone received an award for their effort.", "album_id": "72157630056039634", "photo_flickr_id": "7340369856", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46546", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone received an award for their effort .", "storylet_id": "232732"}], [{"original_text": "They had a great time.", "album_id": "72157630056039634", "photo_flickr_id": "7340370522", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46546", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had a great time .", "storylet_id": "232733"}], [{"original_text": "I really enjoyed being there. Some of the soldiers started singing.", "album_id": "72157630056039634", "photo_flickr_id": "7340371720", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46546", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i really enjoyed being there . some of the soldiers started singing .", "storylet_id": "232734"}], [{"original_text": "So today was our big reward celebration for being army soldiers.", "album_id": "72157630056039634", "photo_flickr_id": "7155159873", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46547", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so today was our big reward celebration for being army soldiers .", "storylet_id": "232735"}], [{"original_text": "These were my friends Matt, Jeff, and George.", "album_id": "72157630056039634", "photo_flickr_id": "7340364440", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46547", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these were my friends [male] , [male] , and [male] .", "storylet_id": "232736"}], [{"original_text": "Jeff was a great guy and couldnt wait to show off his superiority.", "album_id": "72157630056039634", "photo_flickr_id": "7340369856", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46547", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was a great guy and couldnt wait to show off his superiority .", "storylet_id": "232737"}], [{"original_text": "I got one too. I cant wait to shave this beard off!", "album_id": "72157630056039634", "photo_flickr_id": "7340370522", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46547", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i got one too . i cant wait to shave this beard off !", "storylet_id": "232738"}], [{"original_text": "All my buddies im so proud of them!", "album_id": "72157630056039634", "photo_flickr_id": "7340371720", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "46547", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all my buddies im so proud of them !", "storylet_id": "232739"}], [{"original_text": "It was one of my last days at the military training base in the desert.", "album_id": "72157630056039634", "photo_flickr_id": "7155162371", "setting": "last-3-pick-old-and-tell", "worker_id": "535RP6R17NSV48B", "story_id": "46548", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was one of my last days at the military training base in the desert .", "storylet_id": "232740"}], [{"original_text": "The ceremony began with speeches by some of the higher-ups, about the hard workers shown before them.", "album_id": "72157630056039634", "photo_flickr_id": "7155164541", "setting": "last-3-pick-old-and-tell", "worker_id": "535RP6R17NSV48B", "story_id": "46548", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ceremony began with speeches by some of the higher-ups , about the hard workers shown before them .", "storylet_id": "232741"}], [{"original_text": "One man got up and expressed his gratitude for being able to serve his country.", "album_id": "72157630056039634", "photo_flickr_id": "7340366362", "setting": "last-3-pick-old-and-tell", "worker_id": "535RP6R17NSV48B", "story_id": "46548", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one man got up and expressed his gratitude for being able to serve his country .", "storylet_id": "232742"}], [{"original_text": "Finally, the officer stood up, held up a certificate showing the completion and handed one to each private.", "album_id": "72157630056039634", "photo_flickr_id": "7340369856", "setting": "last-3-pick-old-and-tell", "worker_id": "535RP6R17NSV48B", "story_id": "46548", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally , the officer stood up , held up a certificate showing the completion and handed one to each private .", "storylet_id": "232743"}], [{"original_text": "The men cheered each other on as they received their certificate for the hard work they've done over the past eight weeks.", "album_id": "72157630056039634", "photo_flickr_id": "7340371720", "setting": "last-3-pick-old-and-tell", "worker_id": "535RP6R17NSV48B", "story_id": "46548", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the men cheered each other on as they received their certificate for the hard work they 've done over the past eight weeks .", "storylet_id": "232744"}], [{"original_text": "we had been training these boys for a long time.", "album_id": "72157630056039634", "photo_flickr_id": "7155159873", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46549", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had been training these boys for a long time .", "storylet_id": "232745"}], [{"original_text": "they had finished their training well.", "album_id": "72157630056039634", "photo_flickr_id": "7340364440", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46549", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had finished their training well .", "storylet_id": "232746"}], [{"original_text": "it was their time to be honored now.", "album_id": "72157630056039634", "photo_flickr_id": "7340369856", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46549", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was their time to be honored now .", "storylet_id": "232747"}], [{"original_text": "they would go on to defend their own land.", "album_id": "72157630056039634", "photo_flickr_id": "7340370522", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46549", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they would go on to defend their own land .", "storylet_id": "232748"}], [{"original_text": "we were so proud of them, and cheered so loud when they walked up.", "album_id": "72157630056039634", "photo_flickr_id": "7340371720", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46549", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were so proud of them , and cheered so loud when they walked up .", "storylet_id": "232749"}], [{"original_text": "At the beginning of the graduation there was a flag ceremony. ", "album_id": "72157630107880142", "photo_flickr_id": "7363625612", "setting": "first-2-pick-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "46550", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the beginning of the graduation there was a flag ceremony .", "storylet_id": "232750"}], [{"original_text": "All of the students and family members were waiting in the crowd. ", "album_id": "72157630107880142", "photo_flickr_id": "7363625198", "setting": "first-2-pick-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "46550", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the students and family members were waiting in the crowd .", "storylet_id": "232751"}], [{"original_text": "The soldiers-to-be were sitting in the very front. ", "album_id": "72157630107880142", "photo_flickr_id": "7363625130", "setting": "first-2-pick-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "46550", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the soldiers-to-be were sitting in the very front .", "storylet_id": "232752"}], [{"original_text": "One of the students gave a speech. ", "album_id": "72157630107880142", "photo_flickr_id": "7363624778", "setting": "first-2-pick-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "46550", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the students gave a speech .", "storylet_id": "232753"}], [{"original_text": "Finally we were all awarded medals. ", "album_id": "72157630107880142", "photo_flickr_id": "7178397555", "setting": "first-2-pick-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "46550", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally we were all awarded medals .", "storylet_id": "232754"}], [{"original_text": "The entire police academy class looked on as the honorary guard held the US flag at the front.", "album_id": "72157630107880142", "photo_flickr_id": "7363625612", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "46551", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the entire police academy class looked on as the honorary guard held the location flag at the front .", "storylet_id": "232755"}], [{"original_text": "My brother and his fellow police academy grads listen closely as the president of the academy speaks.", "album_id": "72157630107880142", "photo_flickr_id": "7363625130", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "46551", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my brother and his fellow police academy grads listen closely as the president of the academy speaks .", "storylet_id": "232756"}], [{"original_text": "After she was done speaking my brother took his shot at the podium.", "album_id": "72157630107880142", "photo_flickr_id": "7363624778", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "46551", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after she was done speaking my brother took his shot at the podium .", "storylet_id": "232757"}], [{"original_text": "After giving his speech my brother stood proudly with his two instructors.", "album_id": "72157630107880142", "photo_flickr_id": "7363624240", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "46551", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after giving his speech my brother stood proudly with his two instructors .", "storylet_id": "232758"}], [{"original_text": "Once he was done posing for the picture my brother's favorite instructor pinned his badge onto his shirt. ", "album_id": "72157630107880142", "photo_flickr_id": "7178397477", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "46551", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once he was done posing for the picture my brother 's favorite instructor pinned his badge onto his shirt .", "storylet_id": "232759"}], [{"original_text": "Today was one of the days I had been waiting on for a while.", "album_id": "72157630107880142", "photo_flickr_id": "7363625612", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "46552", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was one of the days i had been waiting on for a while .", "storylet_id": "232760"}], [{"original_text": "We had a ceremony for the aviation committee and it felt great.", "album_id": "72157630107880142", "photo_flickr_id": "7363625130", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "46552", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a ceremony for the aviation committee and it felt great .", "storylet_id": "232761"}], [{"original_text": "I got to speak in front of everyone. This was my first time public speaking and I was very nervous.", "album_id": "72157630107880142", "photo_flickr_id": "7363624778", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "46552", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got to speak in front of everyone . this was my first time public speaking and i was very nervous .", "storylet_id": "232762"}], [{"original_text": "I got through it and it felt so good to do something new.", "album_id": "72157630107880142", "photo_flickr_id": "7363624240", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "46552", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i got through it and it felt so good to do something new .", "storylet_id": "232763"}], [{"original_text": "Getting pinned was the best part of the day.", "album_id": "72157630107880142", "photo_flickr_id": "7178397477", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "46552", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "getting pinned was the best part of the day .", "storylet_id": "232764"}], [{"original_text": "Our award ceremony opened with the color guard presenting the flag.", "album_id": "72157630107880142", "photo_flickr_id": "7363625612", "setting": "last-3-pick-old-and-tell", "worker_id": "GZYLTLU2163MCD2", "story_id": "46553", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our award ceremony opened with the color guard presenting the flag .", "storylet_id": "232765"}], [{"original_text": "There was a large crowd in attendance.", "album_id": "72157630107880142", "photo_flickr_id": "7363625198", "setting": "last-3-pick-old-and-tell", "worker_id": "GZYLTLU2163MCD2", "story_id": "46553", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a large crowd in attendance .", "storylet_id": "232766"}], [{"original_text": "The commissioner gave a great speech about the importance of our job and congratulated us on doing it well.", "album_id": "72157630107880142", "photo_flickr_id": "7363625130", "setting": "last-3-pick-old-and-tell", "worker_id": "GZYLTLU2163MCD2", "story_id": "46553", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the commissioner gave a great speech about the importance of our job and congratulated us on doing it well .", "storylet_id": "232767"}], [{"original_text": "The best part of the ceremony was when they began to announce the names of those that would get the awards.", "album_id": "72157630107880142", "photo_flickr_id": "7363624778", "setting": "last-3-pick-old-and-tell", "worker_id": "GZYLTLU2163MCD2", "story_id": "46553", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the best part of the ceremony was when they began to announce the names of those that would get the awards .", "storylet_id": "232768"}], [{"original_text": "I was really surprised and happy to receive the Job Well Done pin!", "album_id": "72157630107880142", "photo_flickr_id": "7178397555", "setting": "last-3-pick-old-and-tell", "worker_id": "GZYLTLU2163MCD2", "story_id": "46553", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was really surprised and happy to receive the job well done pin !", "storylet_id": "232769"}], [{"original_text": "at this years rally i was on that was to be honored.", "album_id": "72157630107880142", "photo_flickr_id": "7363625612", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46554", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at this years rally i was on that was to be honored .", "storylet_id": "232770"}], [{"original_text": "i sat there in the front staring into the crowd.", "album_id": "72157630107880142", "photo_flickr_id": "7363625130", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46554", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i sat there in the front staring into the crowd .", "storylet_id": "232771"}], [{"original_text": "I could not help but to think what it was that i did to deserve this.", "album_id": "72157630107880142", "photo_flickr_id": "7363624778", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46554", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i could not help but to think what it was that i did to deserve this .", "storylet_id": "232772"}], [{"original_text": "my betters thought that in times of peace it was those that got jobs done that where worth rewarding.", "album_id": "72157630107880142", "photo_flickr_id": "7363624240", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46554", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my betters thought that in times of peace it was those that got jobs done that where worth rewarding .", "storylet_id": "232773"}], [{"original_text": "i took it in stride. it was not my place to differ.", "album_id": "72157630107880142", "photo_flickr_id": "7178397477", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "46554", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i took it in stride . it was not my place to differ .", "storylet_id": "232774"}], [{"original_text": "Here are some flowers I saw on my trip to London.", "album_id": "72157630655378016", "photo_flickr_id": "7605025214", "setting": "first-2-pick-and-tell", "worker_id": "3KJ94OASMXUYPBF", "story_id": "46555", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here are some flowers i saw on my trip to location .", "storylet_id": "232775"}], [{"original_text": "I made sure to buy magnets for all of my friends back home.", "album_id": "72157630655378016", "photo_flickr_id": "7605586246", "setting": "first-2-pick-and-tell", "worker_id": "3KJ94OASMXUYPBF", "story_id": "46555", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i made sure to buy magnets for all of my friends back home .", "storylet_id": "232776"}], [{"original_text": "We went on a cruise on the Thames.", "album_id": "72157630655378016", "photo_flickr_id": "7605042696", "setting": "first-2-pick-and-tell", "worker_id": "3KJ94OASMXUYPBF", "story_id": "46555", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went on a cruise on the thames .", "storylet_id": "232777"}], [{"original_text": "The cruise was really fun and we got to drink champagne.", "album_id": "72157630655378016", "photo_flickr_id": "7605044992", "setting": "first-2-pick-and-tell", "worker_id": "3KJ94OASMXUYPBF", "story_id": "46555", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cruise was really fun and we got to drink champagne .", "storylet_id": "232778"}], [{"original_text": "I saw this sign out in front of a department store.", "album_id": "72157630655378016", "photo_flickr_id": "7605582080", "setting": "first-2-pick-and-tell", "worker_id": "3KJ94OASMXUYPBF", "story_id": "46555", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i saw this sign out in front of a department store .", "storylet_id": "232779"}], [{"original_text": "I went for a walk yesterday.", "album_id": "72157630655378016", "photo_flickr_id": "7605018800", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46556", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a walk yesterday .", "storylet_id": "232780"}], [{"original_text": "There were a lot of interesting things outside.", "album_id": "72157630655378016", "photo_flickr_id": "7605020802", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46556", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of interesting things outside .", "storylet_id": "232781"}], [{"original_text": "I bought some souvenirs.", "album_id": "72157630655378016", "photo_flickr_id": "7605615692", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46556", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i bought some souvenirs .", "storylet_id": "232782"}], [{"original_text": "There was a business lady walking inside the mall.", "album_id": "72157630655378016", "photo_flickr_id": "7605026954", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46556", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a business lady walking inside the mall .", "storylet_id": "232783"}], [{"original_text": "I also bought some t-shirts and hoodies.", "album_id": "72157630655378016", "photo_flickr_id": "7605583766", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46556", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i also bought some t-shirts and hoodies .", "storylet_id": "232784"}], [{"original_text": "We saw beautiful flowers during our trip to London,", "album_id": "72157630655378016", "photo_flickr_id": "7605018800", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46557", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we saw beautiful flowers during our trip to location ,", "storylet_id": "232785"}], [{"original_text": "as well as many other things with which we were not familiar.", "album_id": "72157630655378016", "photo_flickr_id": "7605020802", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46557", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as well as many other things with which we were not familiar .", "storylet_id": "232786"}], [{"original_text": "We bought keychains to bring back home for friends.", "album_id": "72157630655378016", "photo_flickr_id": "7605615692", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46557", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we bought keychains to bring back home for friends .", "storylet_id": "232787"}], [{"original_text": "We walked through the train station and saw many people hurrying to their destination.", "album_id": "72157630655378016", "photo_flickr_id": "7605026954", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46557", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we walked through the train station and saw many people hurrying to their destination .", "storylet_id": "232788"}], [{"original_text": "We couldn't leave until we bought a bear from the local stand stationed there. ", "album_id": "72157630655378016", "photo_flickr_id": "7605583766", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46557", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we could n't leave until we bought a bear from the local stand stationed there .", "storylet_id": "232789"}], [{"original_text": "I brought some sunflowers for my blind date.", "album_id": "72157630655378016", "photo_flickr_id": "7605025214", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "46558", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i brought some sunflowers for my blind date .", "storylet_id": "232790"}], [{"original_text": "We stopped by the souvenir shop with all the British merchandise.", "album_id": "72157630655378016", "photo_flickr_id": "7605586246", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "46558", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped by the souvenir shop with all the british merchandise .", "storylet_id": "232791"}], [{"original_text": "Our date then began by heading over to the pier for a boat ride.", "album_id": "72157630655378016", "photo_flickr_id": "7605042696", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "46558", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our date then began by heading over to the pier for a boat ride .", "storylet_id": "232792"}], [{"original_text": "We got on a had a nice ride around the city along the river.", "album_id": "72157630655378016", "photo_flickr_id": "7605044992", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "46558", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got on a had a nice ride around the city along the river .", "storylet_id": "232793"}], [{"original_text": "We got off next to a building with the word CHANGE next to it.", "album_id": "72157630655378016", "photo_flickr_id": "7605582080", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "46558", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we got off next to a building with the word change next to it .", "storylet_id": "232794"}], [{"original_text": "A tourist takes a picture of sunflowers before entering the gift shop.", "album_id": "72157630655378016", "photo_flickr_id": "7605025214", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "46559", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a tourist takes a picture of sunflowers before entering the gift shop .", "storylet_id": "232795"}], [{"original_text": "She then takes picture of all the magnets available.", "album_id": "72157630655378016", "photo_flickr_id": "7605586246", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "46559", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she then takes picture of all the magnets available .", "storylet_id": "232796"}], [{"original_text": "Then, she goes outside to watch the boats.", "album_id": "72157630655378016", "photo_flickr_id": "7605042696", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "46559", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then , she goes outside to watch the boats .", "storylet_id": "232797"}], [{"original_text": "Two of them catch her eye. She wishes to ride them.", "album_id": "72157630655378016", "photo_flickr_id": "7605044992", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "46559", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two of them catch her eye . she wishes to ride them .", "storylet_id": "232798"}], [{"original_text": "After that, she takes a walk around town", "album_id": "72157630655378016", "photo_flickr_id": "7605582080", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "46559", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that , she takes a walk around town", "storylet_id": "232799"}], [{"original_text": "This parade really shows what it was like over the last 100 years.", "album_id": "72157606729818137", "photo_flickr_id": "4700769117", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "46560", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this parade really shows what it was like over the last 100 years .", "storylet_id": "232800"}], [{"original_text": "This car looks like it does not know what year it belongs in. ", "album_id": "72157606729818137", "photo_flickr_id": "4700782295", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "46560", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this car looks like it does not know what year it belongs in .", "storylet_id": "232801"}], [{"original_text": "People did not dress like this in 1967.", "album_id": "72157606729818137", "photo_flickr_id": "4701397532", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "46560", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people did not dress like this in 1967 .", "storylet_id": "232802"}], [{"original_text": "The band's uniforms seem to be slightly out of style. ", "album_id": "72157606729818137", "photo_flickr_id": "4700756623", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "46560", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the band 's uniforms seem to be slightly out of style .", "storylet_id": "232803"}], [{"original_text": "At least the band looks less tacky than some of the others. ", "album_id": "72157606729818137", "photo_flickr_id": "4700823945", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "46560", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at least the band looks less tacky than some of the others .", "storylet_id": "232804"}], [{"original_text": "Lots of people showed up to the parade", "album_id": "72157606729818137", "photo_flickr_id": "4700823945", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "46561", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "lots of people showed up to the parade", "storylet_id": "232805"}], [{"original_text": "we watched the band march", "album_id": "72157606729818137", "photo_flickr_id": "2762840297", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "46561", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we watched the band march", "storylet_id": "232806"}], [{"original_text": "then we observed then eating", "album_id": "72157606729818137", "photo_flickr_id": "2763686018", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "46561", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we observed then eating", "storylet_id": "232807"}], [{"original_text": "I then posed for pictures", "album_id": "72157606729818137", "photo_flickr_id": "4701380124", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "46561", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i then posed for pictures", "storylet_id": "232808"}], [{"original_text": "then continued watching the band march", "album_id": "72157606729818137", "photo_flickr_id": "4701397532", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "46561", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then continued watching the band march", "storylet_id": "232809"}], [{"original_text": "The rally was preceded by a parade.", "album_id": "72157606729818137", "photo_flickr_id": "4700769117", "setting": "last-3-pick-old-and-tell", "worker_id": "6Q2SR1BFEP6OUKO", "story_id": "46562", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the rally was preceded by a parade .", "storylet_id": "232810"}], [{"original_text": "There was a very interesting restored antique vehicle in the parade. ", "album_id": "72157606729818137", "photo_flickr_id": "4700782295", "setting": "last-3-pick-old-and-tell", "worker_id": "6Q2SR1BFEP6OUKO", "story_id": "46562", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a very interesting restored antique vehicle in the parade .", "storylet_id": "232811"}], [{"original_text": "The participants carried a banner at the front of the procession.", "album_id": "72157606729818137", "photo_flickr_id": "4701397532", "setting": "last-3-pick-old-and-tell", "worker_id": "6Q2SR1BFEP6OUKO", "story_id": "46562", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the participants carried a banner at the front of the procession .", "storylet_id": "232812"}], [{"original_text": "The participants even wore matching uniforms. ", "album_id": "72157606729818137", "photo_flickr_id": "4700756623", "setting": "last-3-pick-old-and-tell", "worker_id": "6Q2SR1BFEP6OUKO", "story_id": "46562", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the participants even wore matching uniforms .", "storylet_id": "232813"}], [{"original_text": "Everyone was excited as the parade passed by.", "album_id": "72157606729818137", "photo_flickr_id": "4700823945", "setting": "last-3-pick-old-and-tell", "worker_id": "6Q2SR1BFEP6OUKO", "story_id": "46562", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was excited as the parade passed by .", "storylet_id": "232814"}], [{"original_text": "The parade of classes at the college is a big day each year.", "album_id": "72157606729818137", "photo_flickr_id": "4700769117", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46563", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parade of classes at the college is a big day each year .", "storylet_id": "232815"}], [{"original_text": "I'm not sure why the class of 1980 has this old a car to represent it, but that's the wacky nature of the parade!", "album_id": "72157606729818137", "photo_flickr_id": "4700782295", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46563", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm not sure why the class of 1980 has this old a car to represent it , but that 's the wacky nature of the parade !", "storylet_id": "232816"}], [{"original_text": "My parents were in the class of 1967. They march every single year.", "album_id": "72157606729818137", "photo_flickr_id": "4701397532", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46563", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my parents were in the class of 1967 . they march every single year .", "storylet_id": "232817"}], [{"original_text": "Some of the classes have put together marching bands!", "album_id": "72157606729818137", "photo_flickr_id": "4700756623", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46563", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the classes have put together marching bands !", "storylet_id": "232818"}], [{"original_text": "The class of 1943 does a barbershop quartet bit, while the class of 1973 has a watermelon theme. I love the parade!", "album_id": "72157606729818137", "photo_flickr_id": "4700823945", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46563", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the class of 1943 does a barbershop quartet bit , while the class of 1973 has a watermelon theme . i love the parade !", "storylet_id": "232819"}], [{"original_text": "The rivalry begins ", "album_id": "72157606729818137", "photo_flickr_id": "4700769117", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "46564", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the rivalry begins", "storylet_id": "232820"}], [{"original_text": "the school is lavished with history ", "album_id": "72157606729818137", "photo_flickr_id": "4700782295", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "46564", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the school is lavished with history", "storylet_id": "232821"}], [{"original_text": "1967 is one of the best years in the schools history ", "album_id": "72157606729818137", "photo_flickr_id": "4701397532", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "46564", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "1967 is one of the best years in the schools history", "storylet_id": "232822"}], [{"original_text": "everyone takes pride in the events ", "album_id": "72157606729818137", "photo_flickr_id": "4700756623", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "46564", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone takes pride in the events", "storylet_id": "232823"}], [{"original_text": "old and young alike enjoy the festivities ", "album_id": "72157606729818137", "photo_flickr_id": "4700823945", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "46564", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "old and young alike enjoy the festivities", "storylet_id": "232824"}], [{"original_text": "The graduation ceremony was very long.", "album_id": "72157623931145387", "photo_flickr_id": "4609731791", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46565", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the graduation ceremony was very long .", "storylet_id": "232825"}], [{"original_text": "There were many guest speakers.", "album_id": "72157623931145387", "photo_flickr_id": "4610401388", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46565", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many guest speakers .", "storylet_id": "232826"}], [{"original_text": "One after another they got up to deliver their speech.", "album_id": "72157623931145387", "photo_flickr_id": "4609793489", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46565", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one after another they got up to deliver their speech .", "storylet_id": "232827"}], [{"original_text": "I thought it would never end.", "album_id": "72157623931145387", "photo_flickr_id": "4610485910", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46565", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i thought it would never end .", "storylet_id": "232828"}], [{"original_text": "The students were very happy to finally receive their diplomas and graduate.", "album_id": "72157623931145387", "photo_flickr_id": "4609885541", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46565", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the students were very happy to finally receive their diplomas and graduate .", "storylet_id": "232829"}], [{"original_text": "Finally graduating college after four long years of studying.", "album_id": "72157623931145387", "photo_flickr_id": "4609674755", "setting": "first-2-pick-and-tell", "worker_id": "5LZ6A6V1S1C4XT0", "story_id": "46566", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "finally graduating college after four long years of studying .", "storylet_id": "232830"}], [{"original_text": "Family and friend on my graduation day, I have many supporters.", "album_id": "72157623931145387", "photo_flickr_id": "4609790085", "setting": "first-2-pick-and-tell", "worker_id": "5LZ6A6V1S1C4XT0", "story_id": "46566", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "family and friend on my graduation day , i have many supporters .", "storylet_id": "232831"}], [{"original_text": "Amazing men it was an honor and inspiration seeing them on our graduation.", "album_id": "72157623931145387", "photo_flickr_id": "4610401388", "setting": "first-2-pick-and-tell", "worker_id": "5LZ6A6V1S1C4XT0", "story_id": "46566", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "amazing men it was an honor and inspiration seeing them on our graduation .", "storylet_id": "232832"}], [{"original_text": "Our guest speaker the highest paid anchor in CNN. ", "album_id": "72157623931145387", "photo_flickr_id": "4610485910", "setting": "first-2-pick-and-tell", "worker_id": "5LZ6A6V1S1C4XT0", "story_id": "46566", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our guest speaker the highest paid anchor in organization .", "storylet_id": "232833"}], [{"original_text": "Receiving my diploma it was an honor and unforgettable one.", "album_id": "72157623931145387", "photo_flickr_id": "4609964679", "setting": "first-2-pick-and-tell", "worker_id": "5LZ6A6V1S1C4XT0", "story_id": "46566", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "receiving my diploma it was an honor and unforgettable one .", "storylet_id": "232834"}], [{"original_text": "This is our keynote speaker, Anderson Cooper. ", "album_id": "72157623931145387", "photo_flickr_id": "4609731791", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46567", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is our keynote speaker , [male] [male] .", "storylet_id": "232835"}], [{"original_text": "These are the leaders of our school taking a picture with the keynote speaker. ", "album_id": "72157623931145387", "photo_flickr_id": "4610401388", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46567", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these are the leaders of our school taking a picture with the keynote speaker .", "storylet_id": "232836"}], [{"original_text": "The president of the school gives a brief introduction of the keynote speaker. ", "album_id": "72157623931145387", "photo_flickr_id": "4609793489", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46567", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the president of the school gives a brief introduction of the keynote speaker .", "storylet_id": "232837"}], [{"original_text": "Anderson, is doing his best to excite the crowd during his speech. ", "album_id": "72157623931145387", "photo_flickr_id": "4610485910", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46567", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] , is doing his best to excite the crowd during his speech .", "storylet_id": "232838"}], [{"original_text": "You can see the graduates excitement, as they enjoy the keynote speaker. ", "album_id": "72157623931145387", "photo_flickr_id": "4609885541", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46567", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you can see the graduates excitement , as they enjoy the keynote speaker .", "storylet_id": "232839"}], [{"original_text": "Graduation at the university was quite the affair. ", "album_id": "72157623931145387", "photo_flickr_id": "4609731791", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46568", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "graduation at the university was quite the affair .", "storylet_id": "232840"}], [{"original_text": "The speakers there were held in high esteem. ", "album_id": "72157623931145387", "photo_flickr_id": "4610401388", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46568", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the speakers there were held in high esteem .", "storylet_id": "232841"}], [{"original_text": "They were lively and motivating. ", "album_id": "72157623931145387", "photo_flickr_id": "4609793489", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46568", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were lively and motivating .", "storylet_id": "232842"}], [{"original_text": "They spoke powerful and inspired. ", "album_id": "72157623931145387", "photo_flickr_id": "4610485910", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46568", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they spoke powerful and inspired .", "storylet_id": "232843"}], [{"original_text": "Everyone cheered after. ", "album_id": "72157623931145387", "photo_flickr_id": "4609885541", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46568", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone cheered after .", "storylet_id": "232844"}], [{"original_text": "It was christina's graduation and she was really excited!", "album_id": "72157623931145387", "photo_flickr_id": "4609674755", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46569", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was christina 's graduation and she was really excited !", "storylet_id": "232845"}], [{"original_text": "So many different students were going to be graduating today. ", "album_id": "72157623931145387", "photo_flickr_id": "4609790085", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46569", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so many different students were going to be graduating today .", "storylet_id": "232846"}], [{"original_text": "All the school counselors were really excited to be there. ", "album_id": "72157623931145387", "photo_flickr_id": "4610401388", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46569", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the school counselors were really excited to be there .", "storylet_id": "232847"}], [{"original_text": "They even had a special guest speaker for all of the graduates. ", "album_id": "72157623931145387", "photo_flickr_id": "4610485910", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46569", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even had a special guest speaker for all of the graduates .", "storylet_id": "232848"}], [{"original_text": "Christina was so happy when she finally received her diploma!", "album_id": "72157623931145387", "photo_flickr_id": "4609964679", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46569", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] was so happy when she finally received her diploma !", "storylet_id": "232849"}], [{"original_text": "The graduates to be are nervous as they approach the stage.", "album_id": "72157628461758115", "photo_flickr_id": "6528483481", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46570", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the graduates to be are nervous as they approach the stage .", "storylet_id": "232850"}], [{"original_text": "The daughter celebrates after graduating and receiving her diploma.", "album_id": "72157628461758115", "photo_flickr_id": "6528475593", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46570", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the daughter celebrates after graduating and receiving her diploma .", "storylet_id": "232851"}], [{"original_text": "Family members are eager to congratulate the new graduate.", "album_id": "72157628461758115", "photo_flickr_id": "6528490095", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46570", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "family members are eager to congratulate the new graduate .", "storylet_id": "232852"}], [{"original_text": "Friends from school laugh together for the last time before going their separate ways.", "album_id": "72157628461758115", "photo_flickr_id": "6528498135", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46570", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "friends from school laugh together for the last time before going their separate ways .", "storylet_id": "232853"}], [{"original_text": "A small luncheon is held so that family and friends may socialize and celebrate this happy occasion.", "album_id": "72157628461758115", "photo_flickr_id": "6535561225", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46570", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a small luncheon is held so that family and friends may socialize and celebrate this happy occasion .", "storylet_id": "232854"}], [{"original_text": "There are a lot of students graduating this year.", "album_id": "72157628461758115", "photo_flickr_id": "6528479039", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46571", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are a lot of students graduating this year .", "storylet_id": "232855"}], [{"original_text": "Everyone of them was so excited.", "album_id": "72157628461758115", "photo_flickr_id": "6528483481", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46571", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone of them was so excited .", "storylet_id": "232856"}], [{"original_text": "There were a lot of friends and family that came to show support.", "album_id": "72157628461758115", "photo_flickr_id": "6528493093", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46571", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of friends and family that came to show support .", "storylet_id": "232857"}], [{"original_text": "I had a great time.", "album_id": "72157628461758115", "photo_flickr_id": "6528495685", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46571", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had a great time .", "storylet_id": "232858"}], [{"original_text": "I am very glad to finally graduate.", "album_id": "72157628461758115", "photo_flickr_id": "6528498135", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46571", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am very glad to finally graduate .", "storylet_id": "232859"}], [{"original_text": "the young blond girl is graduating today and all her classmates attended.", "album_id": "72157628461758115", "photo_flickr_id": "6528483481", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "46572", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the young blond girl is graduating today and all her classmates attended .", "storylet_id": "232860"}], [{"original_text": "she is so excited to now have her diploma.", "album_id": "72157628461758115", "photo_flickr_id": "6528475593", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "46572", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she is so excited to now have her diploma .", "storylet_id": "232861"}], [{"original_text": "she takes a picture with her older brother who graduated a year ago.", "album_id": "72157628461758115", "photo_flickr_id": "6528490095", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "46572", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she takes a picture with her older brother who graduated a year ago .", "storylet_id": "232862"}], [{"original_text": "her and her friends are ready to hangout one last time.", "album_id": "72157628461758115", "photo_flickr_id": "6528498135", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "46572", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her and her friends are ready to hangout one last time .", "storylet_id": "232863"}], [{"original_text": "the graduation after party had lots of finger foods.", "album_id": "72157628461758115", "photo_flickr_id": "6535561225", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "46572", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the graduation after party had lots of finger foods .", "storylet_id": "232864"}], [{"original_text": "The class arrives for graduation.", "album_id": "72157628461758115", "photo_flickr_id": "6528479039", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46573", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the class arrives for graduation .", "storylet_id": "232865"}], [{"original_text": "They all wait patiently to receive their diplomas.", "album_id": "72157628461758115", "photo_flickr_id": "6528483481", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46573", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all wait patiently to receive their diplomas .", "storylet_id": "232866"}], [{"original_text": "The girl has her picture taken with her sister afterwards.", "album_id": "72157628461758115", "photo_flickr_id": "6528493093", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46573", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girl has her picture taken with her sister afterwards .", "storylet_id": "232867"}], [{"original_text": "Then she poses for a picture with her sister and brother.", "album_id": "72157628461758115", "photo_flickr_id": "6528495685", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46573", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then she poses for a picture with her sister and brother .", "storylet_id": "232868"}], [{"original_text": "Everyone is so excited for her.", "album_id": "72157628461758115", "photo_flickr_id": "6528498135", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46573", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone is so excited for her .", "storylet_id": "232869"}], [{"original_text": "Graduation Day at last. ", "album_id": "72157628461758115", "photo_flickr_id": "6528483481", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46574", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "graduation day at last .", "storylet_id": "232870"}], [{"original_text": "I'm so excited to be finished with high school.", "album_id": "72157628461758115", "photo_flickr_id": "6528475593", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46574", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm so excited to be finished with high school .", "storylet_id": "232871"}], [{"original_text": "Of course, my boyfriend was there to witness the big day.", "album_id": "72157628461758115", "photo_flickr_id": "6528490095", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46574", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course , my boyfriend was there to witness the big day .", "storylet_id": "232872"}], [{"original_text": "My siblings were all very excited for me.", "album_id": "72157628461758115", "photo_flickr_id": "6528498135", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46574", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my siblings were all very excited for me .", "storylet_id": "232873"}], [{"original_text": "My sister did a great job of setting up the after party.", "album_id": "72157628461758115", "photo_flickr_id": "6535561225", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46574", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my sister did a great job of setting up the after party .", "storylet_id": "232874"}], [{"original_text": "Today we went to our friend krystle jozens 18th birthday party.", "album_id": "72157624254024981", "photo_flickr_id": "4743582646", "setting": "first-2-pick-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "46575", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to our friend krystle jozens 18th birthday party .", "storylet_id": "232875"}], [{"original_text": "Everything started calmly enough with a little light music and lunch.", "album_id": "72157624254024981", "photo_flickr_id": "4742904699", "setting": "first-2-pick-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "46575", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything started calmly enough with a little light music and lunch .", "storylet_id": "232876"}], [{"original_text": "We moved on to making home made ice cream. As you can see it was a hot day.", "album_id": "72157624254024981", "photo_flickr_id": "4743579546", "setting": "first-2-pick-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "46575", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we moved on to making home made ice cream . as you can see it was a hot day .", "storylet_id": "232877"}], [{"original_text": "As the evening went on we played games and won prizes. The birthday boy was dressed up as smurfette and pictures were posted to facebook.", "album_id": "72157624254024981", "photo_flickr_id": "4742924965", "setting": "first-2-pick-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "46575", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the evening went on we played games and won prizes . the birthday boy was dressed up as smurfette and pictures were posted to facebook .", "storylet_id": "232878"}], [{"original_text": "We had a blast at the party and have pictures and memories to prove it.", "album_id": "72157624254024981", "photo_flickr_id": "4743585652", "setting": "first-2-pick-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "46575", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a blast at the party and have pictures and memories to prove it .", "storylet_id": "232879"}], [{"original_text": "There are empty glasses on the table after everyone has had dinner.", "album_id": "72157624254024981", "photo_flickr_id": "4742871035", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46576", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are empty glasses on the table after everyone has had dinner .", "storylet_id": "232880"}], [{"original_text": "People are gathered around talking and catching up with their friends.", "album_id": "72157624254024981", "photo_flickr_id": "4742886605", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46576", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people are gathered around talking and catching up with their friends .", "storylet_id": "232881"}], [{"original_text": "People are lining up outside to take pictures at the photo booth.", "album_id": "72157624254024981", "photo_flickr_id": "4742913421", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46576", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people are lining up outside to take pictures at the photo booth .", "storylet_id": "232882"}], [{"original_text": "Outside the photo booth there are many wigs you can pick from to wear, such as a blue wig.", "album_id": "72157624254024981", "photo_flickr_id": "4742924965", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46576", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "outside the photo booth there are many wigs you can pick from to wear , such as a blue wig .", "storylet_id": "232883"}], [{"original_text": "The pictures from the photo booth are so fun! ", "album_id": "72157624254024981", "photo_flickr_id": "4742947139", "setting": "first-2-pick-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46576", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the pictures from the photo booth are so fun !", "storylet_id": "232884"}], [{"original_text": "The party invitations were creative and colorful.", "album_id": "72157624254024981", "photo_flickr_id": "4743582646", "setting": "last-3-pick-old-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46577", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party invitations were creative and colorful .", "storylet_id": "232885"}], [{"original_text": "It was held outdoors and indoors.", "album_id": "72157624254024981", "photo_flickr_id": "4742904699", "setting": "last-3-pick-old-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46577", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was held outdoors and indoors .", "storylet_id": "232886"}], [{"original_text": "Interesting foods made up the menu.", "album_id": "72157624254024981", "photo_flickr_id": "4743579546", "setting": "last-3-pick-old-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46577", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "interesting foods made up the menu .", "storylet_id": "232887"}], [{"original_text": "Friends came dressed in colorful attire.", "album_id": "72157624254024981", "photo_flickr_id": "4742924965", "setting": "last-3-pick-old-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46577", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "friends came dressed in colorful attire .", "storylet_id": "232888"}], [{"original_text": "The RSVPs were very high for this event.", "album_id": "72157624254024981", "photo_flickr_id": "4743585652", "setting": "last-3-pick-old-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46577", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the rsvps were very high for this event .", "storylet_id": "232889"}], [{"original_text": "We were treated with drinks before the event started.", "album_id": "72157624254024981", "photo_flickr_id": "4742871035", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46578", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were treated with drinks before the event started .", "storylet_id": "232890"}], [{"original_text": "People were starting to arrive to be a part of something special.", "album_id": "72157624254024981", "photo_flickr_id": "4742886605", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46578", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people were starting to arrive to be a part of something special .", "storylet_id": "232891"}], [{"original_text": "They were told to wear red and grey and most people complied.", "album_id": "72157624254024981", "photo_flickr_id": "4742913421", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46578", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were told to wear red and grey and most people complied .", "storylet_id": "232892"}], [{"original_text": "But this woman didn't she decided to wear blue hair.", "album_id": "72157624254024981", "photo_flickr_id": "4742924965", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46578", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but this woman did n't she decided to wear blue hair .", "storylet_id": "232893"}], [{"original_text": "When everyone saw that they wanted to get silly.", "album_id": "72157624254024981", "photo_flickr_id": "4742947139", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46578", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when everyone saw that they wanted to get silly .", "storylet_id": "232894"}], [{"original_text": "My friend Krystle's mother almost does TOO much for her birthdays. She always has a very fancy meal. ", "album_id": "72157624254024981", "photo_flickr_id": "4742871035", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46579", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend [female] 's mother almost does too much for her birthdays . she always has a very fancy meal .", "storylet_id": "232895"}], [{"original_text": "She requires a dress code---this year it was red and black, with ties for the men.", "album_id": "72157624254024981", "photo_flickr_id": "4742886605", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46579", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she requires a dress code -- -this year it was red and black , with ties for the men .", "storylet_id": "232896"}], [{"original_text": "I think Krystle sometimes feels a little overwhelmed by all the fuss.", "album_id": "72157624254024981", "photo_flickr_id": "4742913421", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46579", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i think [female] sometimes feels a little overwhelmed by all the fuss .", "storylet_id": "232897"}], [{"original_text": "Her mother has this silly tradition of making her wear a strange colored wig during the party.", "album_id": "72157624254024981", "photo_flickr_id": "4742924965", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46579", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her mother has this silly tradition of making her wear a strange colored wig during the party .", "storylet_id": "232898"}], [{"original_text": "Krystle hated the Hello Kitty on the guest cards. She hasn't been into Hello Kitty since she was seven! Her mother still sees her as a little girl.", "album_id": "72157624254024981", "photo_flickr_id": "4742947139", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46579", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] hated the hello kitty on the guest cards . she has n't been into organization organization since she was seven ! her mother still sees her as a little girl .", "storylet_id": "232899"}], [{"original_text": "I was so excited when I arrived at the party with my girlfriend. ", "album_id": "72157629960452550", "photo_flickr_id": "7298593624", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46580", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was so excited when i arrived at the party with my girlfriend .", "storylet_id": "232900"}], [{"original_text": "I found my friends and we started telling stories together. ", "album_id": "72157629960452550", "photo_flickr_id": "7298574134", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46580", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i found my friends and we started telling stories together .", "storylet_id": "232901"}], [{"original_text": "I went out on the water with my girlfriend in a paddle boat. ", "album_id": "72157629960452550", "photo_flickr_id": "7298581320", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46580", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i went out on the water with my girlfriend in a paddle boat .", "storylet_id": "232902"}], [{"original_text": "We headed back to the party and relaxed after the tiring paddle boats.", "album_id": "72157629960452550", "photo_flickr_id": "7298599220", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46580", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we headed back to the party and relaxed after the tiring paddle boats .", "storylet_id": "232903"}], [{"original_text": "We spent the rest of the night having a great time with all of our friends. ", "album_id": "72157629960452550", "photo_flickr_id": "7298601850", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46580", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we spent the rest of the night having a great time with all of our friends .", "storylet_id": "232904"}], [{"original_text": "This is my brother Jim at our family reunion.", "album_id": "72157629960452550", "photo_flickr_id": "7298589158", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46581", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my brother [male] at our family reunion .", "storylet_id": "232905"}], [{"original_text": "He brought his wife with him.", "album_id": "72157629960452550", "photo_flickr_id": "7298599220", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46581", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he brought his wife with him .", "storylet_id": "232906"}], [{"original_text": "They got into an argument and she began to avoid him.", "album_id": "72157629960452550", "photo_flickr_id": "7298583428", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46581", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they got into an argument and she began to avoid him .", "storylet_id": "232907"}], [{"original_text": "She spent most of the time with my parents.", "album_id": "72157629960452550", "photo_flickr_id": "7298601850", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46581", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she spent most of the time with my parents .", "storylet_id": "232908"}], [{"original_text": "She also spent some time with my other brother Mike.", "album_id": "72157629960452550", "photo_flickr_id": "7298593624", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46581", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she also spent some time with my other brother [male] .", "storylet_id": "232909"}], [{"original_text": "Family and friends gathered at the house. ", "album_id": "72157629960452550", "photo_flickr_id": "7298593624", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46582", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family and friends gathered at the house .", "storylet_id": "232910"}], [{"original_text": "It was a nice warm day. ", "album_id": "72157629960452550", "photo_flickr_id": "7298574134", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46582", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a nice warm day .", "storylet_id": "232911"}], [{"original_text": "They spent time on paddle boats on the lake. ", "album_id": "72157629960452550", "photo_flickr_id": "7298581320", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46582", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they spent time on paddle boats on the lake .", "storylet_id": "232912"}], [{"original_text": "They enjoyed the relaxing atmosphere. ", "album_id": "72157629960452550", "photo_flickr_id": "7298599220", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46582", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they enjoyed the relaxing atmosphere .", "storylet_id": "232913"}], [{"original_text": "They ended the night with a fun board game. ", "album_id": "72157629960452550", "photo_flickr_id": "7298601850", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46582", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ended the night with a fun board game .", "storylet_id": "232914"}], [{"original_text": "A group of friends are getting together for a few drinks.", "album_id": "72157629960452550", "photo_flickr_id": "7298593624", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46583", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends are getting together for a few drinks .", "storylet_id": "232915"}], [{"original_text": "They all get caught up on old times and tell stories.", "album_id": "72157629960452550", "photo_flickr_id": "7298574134", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46583", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all get caught up on old times and tell stories .", "storylet_id": "232916"}], [{"original_text": "Then they go down to the water and out on a pontoon boat.", "album_id": "72157629960452550", "photo_flickr_id": "7298581320", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46583", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they go down to the water and out on a pontoon boat .", "storylet_id": "232917"}], [{"original_text": "After that they sit and wait for sunset.", "album_id": "72157629960452550", "photo_flickr_id": "7298599220", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46583", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that they sit and wait for sunset .", "storylet_id": "232918"}], [{"original_text": "Then after dark they have a few more drinks and a couple more laughs.", "album_id": "72157629960452550", "photo_flickr_id": "7298601850", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46583", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then after dark they have a few more drinks and a couple more laughs .", "storylet_id": "232919"}], [{"original_text": "A young man is planning a party this weekend for him and his friends.", "album_id": "72157629960452550", "photo_flickr_id": "7298593624", "setting": "last-3-pick-old-and-tell", "worker_id": "XJZWQ04J3EPUPQH", "story_id": "46584", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a young man is planning a party this weekend for him and his friends .", "storylet_id": "232920"}], [{"original_text": "He invited his friends to his lake house for the weekend.", "album_id": "72157629960452550", "photo_flickr_id": "7298574134", "setting": "last-3-pick-old-and-tell", "worker_id": "XJZWQ04J3EPUPQH", "story_id": "46584", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he invited his friends to his lake house for the weekend .", "storylet_id": "232921"}], [{"original_text": "They all went out on the lake with a paddle boat, taking turns.", "album_id": "72157629960452550", "photo_flickr_id": "7298581320", "setting": "last-3-pick-old-and-tell", "worker_id": "XJZWQ04J3EPUPQH", "story_id": "46584", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all went out on the lake with a paddle boat , taking turns .", "storylet_id": "232922"}], [{"original_text": "Once it was getting late, they just hung around the dock and watched the sunset.", "album_id": "72157629960452550", "photo_flickr_id": "7298599220", "setting": "last-3-pick-old-and-tell", "worker_id": "XJZWQ04J3EPUPQH", "story_id": "46584", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once it was getting late , they just hung around the dock and watched the sunset .", "storylet_id": "232923"}], [{"original_text": "It was a great night, with friends, the water, and plenty of games.", "album_id": "72157629960452550", "photo_flickr_id": "7298601850", "setting": "last-3-pick-old-and-tell", "worker_id": "XJZWQ04J3EPUPQH", "story_id": "46584", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great night , with friends , the water , and plenty of games .", "storylet_id": "232924"}], [{"original_text": "The recent grad is happy to pose for some photos for her family.", "album_id": "72157630013916068", "photo_flickr_id": "7321398408", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46585", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the recent grad is happy to pose for some photos for her family .", "storylet_id": "232925"}], [{"original_text": "Her brother is a little upset that he still has years of schooling left before he can celebrate a day like today.", "album_id": "72157630013916068", "photo_flickr_id": "7321399146", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46585", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her brother is a little upset that he still has years of schooling left before he can celebrate a day like today .", "storylet_id": "232926"}], [{"original_text": "Her mother is very proud of her daughter graduating college.", "album_id": "72157630013916068", "photo_flickr_id": "7321400152", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46585", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her mother is very proud of her daughter graduating college .", "storylet_id": "232927"}], [{"original_text": "Although her aunts are proud, they are also quick to put a little humor and light heartedness into the celebration.", "album_id": "72157630013916068", "photo_flickr_id": "7321412260", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46585", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "although her aunts are proud , they are also quick to put a little humor and light heartedness into the celebration .", "storylet_id": "232928"}], [{"original_text": "After the photos, they go into the house for more celebrating and cake!", "album_id": "72157630013916068", "photo_flickr_id": "7321415840", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46585", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the photos , they go into the house for more celebrating and cake !", "storylet_id": "232929"}], [{"original_text": "A picture of the happy graduate.", "album_id": "72157630013916068", "photo_flickr_id": "7321398408", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46586", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a picture of the happy graduate .", "storylet_id": "232930"}], [{"original_text": "The brother of the graduate, he is still in school.", "album_id": "72157630013916068", "photo_flickr_id": "7321399146", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46586", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the brother of the graduate , he is still in school .", "storylet_id": "232931"}], [{"original_text": "A friend of the graduate with a picture to remember the day.", "album_id": "72157630013916068", "photo_flickr_id": "7321406104", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46586", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a friend of the graduate with a picture to remember the day .", "storylet_id": "232932"}], [{"original_text": "Friends of the graduate in the picture to remember the day.", "album_id": "72157630013916068", "photo_flickr_id": "7321413782", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46586", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "friends of the graduate in the picture to remember the day .", "storylet_id": "232933"}], [{"original_text": "A picture of the graduation sheet cake/", "album_id": "72157630013916068", "photo_flickr_id": "7321417504", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46586", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a picture of the graduation sheet cake/", "storylet_id": "232934"}], [{"original_text": "Eleni was very proud to be graduating. ", "album_id": "72157630013916068", "photo_flickr_id": "7321398408", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46587", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "eleni was very proud to be graduating .", "storylet_id": "232935"}], [{"original_text": "Her family gathered to celebrate. ", "album_id": "72157630013916068", "photo_flickr_id": "7321399146", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46587", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her family gathered to celebrate .", "storylet_id": "232936"}], [{"original_text": "They were also proud of her achievement. ", "album_id": "72157630013916068", "photo_flickr_id": "7321406104", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46587", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were also proud of her achievement .", "storylet_id": "232937"}], [{"original_text": "Everyone enjoyed themselves while celebrating with her. ", "album_id": "72157630013916068", "photo_flickr_id": "7321413782", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46587", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone enjoyed themselves while celebrating with her .", "storylet_id": "232938"}], [{"original_text": "The delicious graduation cake was the perfect end to a fun event. ", "album_id": "72157630013916068", "photo_flickr_id": "7321417504", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46587", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the delicious graduation cake was the perfect end to a fun event .", "storylet_id": "232939"}], [{"original_text": "The girl is celebrating her graduation.", "album_id": "72157630013916068", "photo_flickr_id": "7321398408", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46588", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girl is celebrating her graduation .", "storylet_id": "232940"}], [{"original_text": "She went some time with her brother.", "album_id": "72157630013916068", "photo_flickr_id": "7321399146", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46588", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she went some time with her brother .", "storylet_id": "232941"}], [{"original_text": "Then she spent some time with her grandmother.", "album_id": "72157630013916068", "photo_flickr_id": "7321400152", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46588", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then she spent some time with her grandmother .", "storylet_id": "232942"}], [{"original_text": "Everyone is so excited for her.", "album_id": "72157630013916068", "photo_flickr_id": "7321412260", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46588", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone is so excited for her .", "storylet_id": "232943"}], [{"original_text": "At the end of the party she got to eat cake.", "album_id": "72157630013916068", "photo_flickr_id": "7321415840", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46588", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the party she got to eat cake .", "storylet_id": "232944"}], [{"original_text": "A young girl is graduating from high school today!", "album_id": "72157630013916068", "photo_flickr_id": "7321398408", "setting": "last-3-pick-old-and-tell", "worker_id": "XJZWQ04J3EPUPQH", "story_id": "46589", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a young girl is graduating from high school today !", "storylet_id": "232945"}], [{"original_text": "Her younger brother had to be dragged out of bed to get ready this morning for the ceremony.", "album_id": "72157630013916068", "photo_flickr_id": "7321399146", "setting": "last-3-pick-old-and-tell", "worker_id": "XJZWQ04J3EPUPQH", "story_id": "46589", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her younger brother had to be dragged out of bed to get ready this morning for the ceremony .", "storylet_id": "232946"}], [{"original_text": "Her mother is so proud today.", "album_id": "72157630013916068", "photo_flickr_id": "7321400152", "setting": "last-3-pick-old-and-tell", "worker_id": "XJZWQ04J3EPUPQH", "story_id": "46589", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her mother is so proud today .", "storylet_id": "232947"}], [{"original_text": "All of the family was here, in their typical nature.", "album_id": "72157630013916068", "photo_flickr_id": "7321412260", "setting": "last-3-pick-old-and-tell", "worker_id": "XJZWQ04J3EPUPQH", "story_id": "46589", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the family was here , in their typical nature .", "storylet_id": "232948"}], [{"original_text": "It was a great day of celebration, and a great end with cake!", "album_id": "72157630013916068", "photo_flickr_id": "7321415840", "setting": "last-3-pick-old-and-tell", "worker_id": "XJZWQ04J3EPUPQH", "story_id": "46589", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great day of celebration , and a great end with cake !", "storylet_id": "232949"}], [{"original_text": "I have a sister named Kelly.", "album_id": "72157631041082404", "photo_flickr_id": "7770114634", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46590", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have a sister named [female] .", "storylet_id": "232950"}], [{"original_text": "I recently went to visit her.", "album_id": "72157631041082404", "photo_flickr_id": "7769754386", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46590", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i recently went to visit her .", "storylet_id": "232951"}], [{"original_text": "Kelly was graduating from college.", "album_id": "72157631041082404", "photo_flickr_id": "7769899940", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46590", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] was graduating from college .", "storylet_id": "232952"}], [{"original_text": "Her graduating class was quite large.", "album_id": "72157631041082404", "photo_flickr_id": "7769963814", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46590", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her graduating class was quite large .", "storylet_id": "232953"}], [{"original_text": "She made many friends there and was sad to say goodbye.", "album_id": "72157631041082404", "photo_flickr_id": "7769821350", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46590", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she made many friends there and was sad to say goodbye .", "storylet_id": "232954"}], [{"original_text": "I was so excited when my graduation cap and gown arrived in the mail. ", "album_id": "72157631041082404", "photo_flickr_id": "7770114634", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46591", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was so excited when my graduation cap and gown arrived in the mail .", "storylet_id": "232955"}], [{"original_text": "I couldn't believe that I was about to graduate from college. ", "album_id": "72157631041082404", "photo_flickr_id": "7769899940", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46591", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i could n't believe that i was about to graduate from college .", "storylet_id": "232956"}], [{"original_text": "I stood among my peers as the speaker thanked us for our hard work and dedication. ", "album_id": "72157631041082404", "photo_flickr_id": "7769963814", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46591", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i stood among my peers as the speaker thanked us for our hard work and dedication .", "storylet_id": "232957"}], [{"original_text": "The class erupted with celebration as they announced our graduation.", "album_id": "72157631041082404", "photo_flickr_id": "7769882490", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46591", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the class erupted with celebration as they announced our graduation .", "storylet_id": "232958"}], [{"original_text": "I was so happy that all my hard work had finally paid off. ", "album_id": "72157631041082404", "photo_flickr_id": "7769830012", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46591", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was so happy that all my hard work had finally paid off .", "storylet_id": "232959"}], [{"original_text": "After years of hard work, it was time for her to graduate. ", "album_id": "72157631041082404", "photo_flickr_id": "7770114634", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46592", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after years of hard work , it was time for her to graduate .", "storylet_id": "232960"}], [{"original_text": "It was a major achievement. ", "album_id": "72157631041082404", "photo_flickr_id": "7769754386", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46592", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a major achievement .", "storylet_id": "232961"}], [{"original_text": "She wore her cap and gown with pride. ", "album_id": "72157631041082404", "photo_flickr_id": "7769899940", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46592", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she wore her cap and gown with pride .", "storylet_id": "232962"}], [{"original_text": "As she stood with her fellow classmates, she reflected on her journey. ", "album_id": "72157631041082404", "photo_flickr_id": "7769963814", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46592", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as she stood with her fellow classmates , she reflected on her journey .", "storylet_id": "232963"}], [{"original_text": "It was a sentimental time. ", "album_id": "72157631041082404", "photo_flickr_id": "7769821350", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46592", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a sentimental time .", "storylet_id": "232964"}], [{"original_text": "The day began nice and relaxed, just hanging out on the couch.", "album_id": "72157631041082404", "photo_flickr_id": "7770114634", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46593", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day began nice and relaxed , just hanging out on the couch .", "storylet_id": "232965"}], [{"original_text": "But that wouldn't last long. It was graduation day.", "album_id": "72157631041082404", "photo_flickr_id": "7769754386", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46593", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but that would n't last long . it was graduation day .", "storylet_id": "232966"}], [{"original_text": "She was thrilled to walk across that stage.", "album_id": "72157631041082404", "photo_flickr_id": "7769899940", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46593", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was thrilled to walk across that stage .", "storylet_id": "232967"}], [{"original_text": "The other students were as well.", "album_id": "72157631041082404", "photo_flickr_id": "7769963814", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46593", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the other students were as well .", "storylet_id": "232968"}], [{"original_text": "She and her friends couldn't have been any happier. ", "album_id": "72157631041082404", "photo_flickr_id": "7769821350", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46593", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she and her friends could n't have been any happier .", "storylet_id": "232969"}], [{"original_text": "The girl is getting ready for her graduation.", "album_id": "72157631041082404", "photo_flickr_id": "7770114634", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46594", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girl is getting ready for her graduation .", "storylet_id": "232970"}], [{"original_text": "During the commencement, she was so excited.", "album_id": "72157631041082404", "photo_flickr_id": "7769899940", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46594", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "during the commencement , she was so excited .", "storylet_id": "232971"}], [{"original_text": "She waited for her name to be called for her diploma.", "album_id": "72157631041082404", "photo_flickr_id": "7769963814", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46594", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she waited for her name to be called for her diploma .", "storylet_id": "232972"}], [{"original_text": "At the end of the ceremony, everyone threw their hats up in the air.", "album_id": "72157631041082404", "photo_flickr_id": "7769882490", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46594", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the end of the ceremony , everyone threw their hats up in the air .", "storylet_id": "232973"}], [{"original_text": "Finally she is done with school and she is so happy.", "album_id": "72157631041082404", "photo_flickr_id": "7769830012", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "46594", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally she is done with school and she is so happy .", "storylet_id": "232974"}], [{"original_text": "I have a brother that graduated last weekend.", "album_id": "72157645108368763", "photo_flickr_id": "14184145060", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46595", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have a brother that graduated last weekend .", "storylet_id": "232975"}], [{"original_text": "His graduation was a large event.", "album_id": "72157645108368763", "photo_flickr_id": "14369233962", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46595", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his graduation was a large event .", "storylet_id": "232976"}], [{"original_text": "Despite being crowded he spotted us in the crowd.", "album_id": "72157645108368763", "photo_flickr_id": "14390882233", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46595", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "despite being crowded he spotted us in the crowd .", "storylet_id": "232977"}], [{"original_text": "Family came from all around to congratulate him.", "album_id": "72157645108368763", "photo_flickr_id": "14184064019", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46595", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "family came from all around to congratulate him .", "storylet_id": "232978"}], [{"original_text": "Later we had a party at the pool.", "album_id": "72157645108368763", "photo_flickr_id": "14369777134", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46595", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later we had a party at the pool .", "storylet_id": "232979"}], [{"original_text": "There were a bunch of students gathered at the ceremony yesterday.", "album_id": "72157645108368763", "photo_flickr_id": "14369244842", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46596", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a bunch of students gathered at the ceremony yesterday .", "storylet_id": "232980"}], [{"original_text": "Many people had shown up to give their support to the graduates.", "album_id": "72157645108368763", "photo_flickr_id": "14184136320", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46596", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people had shown up to give their support to the graduates .", "storylet_id": "232981"}], [{"original_text": "The students were very excited to graduate.", "album_id": "72157645108368763", "photo_flickr_id": "14390882233", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46596", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the students were very excited to graduate .", "storylet_id": "232982"}], [{"original_text": "Afterward we all got together for a small party at my house.", "album_id": "72157645108368763", "photo_flickr_id": "14369779154", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46596", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we all got together for a small party at my house .", "storylet_id": "232983"}], [{"original_text": "Then we spent some time swimming in the pool.", "album_id": "72157645108368763", "photo_flickr_id": "14370691375", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46596", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we spent some time swimming in the pool .", "storylet_id": "232984"}], [{"original_text": "Graduation day has finally arrived.", "album_id": "72157645108368763", "photo_flickr_id": "14184145060", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46597", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "graduation day has finally arrived .", "storylet_id": "232985"}], [{"original_text": "All the students started filing in. ", "album_id": "72157645108368763", "photo_flickr_id": "14369233962", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46597", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the students started filing in .", "storylet_id": "232986"}], [{"original_text": "He was thrilled to finally be graduation. ", "album_id": "72157645108368763", "photo_flickr_id": "14390882233", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46597", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was thrilled to finally be graduation .", "storylet_id": "232987"}], [{"original_text": "Everyone posed for pictures outside the venue.", "album_id": "72157645108368763", "photo_flickr_id": "14184064019", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46597", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone posed for pictures outside the venue .", "storylet_id": "232988"}], [{"original_text": "And to cap off the day, we all hung out at the pool. ", "album_id": "72157645108368763", "photo_flickr_id": "14369777134", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46597", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and to cap off the day , we all hung out at the pool .", "storylet_id": "232989"}], [{"original_text": "He was really excited on the graduation day", "album_id": "72157645108368763", "photo_flickr_id": "14184145060", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46598", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he was really excited on the graduation day", "storylet_id": "232990"}], [{"original_text": "A group photo of the new grads.", "album_id": "72157645108368763", "photo_flickr_id": "14369233962", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46598", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a group photo of the new grads .", "storylet_id": "232991"}], [{"original_text": "Waving to the cameras during the graduation ceremony", "album_id": "72157645108368763", "photo_flickr_id": "14390882233", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46598", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "waving to the cameras during the graduation ceremony", "storylet_id": "232992"}], [{"original_text": "Posing for the camera with his gay parents", "album_id": "72157645108368763", "photo_flickr_id": "14184064019", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46598", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "posing for the camera with his gay parents", "storylet_id": "232993"}], [{"original_text": "Celebrating with the family at the swimming pool", "album_id": "72157645108368763", "photo_flickr_id": "14369777134", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46598", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "celebrating with the family at the swimming pool", "storylet_id": "232994"}], [{"original_text": "He is excited to have graduated from college.", "album_id": "72157645108368763", "photo_flickr_id": "14184145060", "setting": "last-3-pick-old-and-tell", "worker_id": "S5XD6LO6U7UHGK4", "story_id": "46599", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he is excited to have graduated from college .", "storylet_id": "232995"}], [{"original_text": "A group of graduates stand on the field before their graduation ceremony begins.", "album_id": "72157645108368763", "photo_flickr_id": "14369233962", "setting": "last-3-pick-old-and-tell", "worker_id": "S5XD6LO6U7UHGK4", "story_id": "46599", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a group of graduates stand on the field before their graduation ceremony begins .", "storylet_id": "232996"}], [{"original_text": "One graduate waves to his family watching in the stands.", "album_id": "72157645108368763", "photo_flickr_id": "14390882233", "setting": "last-3-pick-old-and-tell", "worker_id": "S5XD6LO6U7UHGK4", "story_id": "46599", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one graduate waves to his family watching in the stands .", "storylet_id": "232997"}], [{"original_text": "One graduate goes out to eat with his dad and uncle.", "album_id": "72157645108368763", "photo_flickr_id": "14184064019", "setting": "last-3-pick-old-and-tell", "worker_id": "S5XD6LO6U7UHGK4", "story_id": "46599", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one graduate goes out to eat with his dad and uncle .", "storylet_id": "232998"}], [{"original_text": "After the ceremony, the family relaxes by the pool.", "album_id": "72157645108368763", "photo_flickr_id": "14369777134", "setting": "last-3-pick-old-and-tell", "worker_id": "S5XD6LO6U7UHGK4", "story_id": "46599", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the ceremony , the family relaxes by the pool .", "storylet_id": "232999"}], [{"original_text": "The kindergarten class gathers to celebrate graduation.", "album_id": "72157645175752377", "photo_flickr_id": "14423289010", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46600", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kindergarten class gathers to celebrate graduation .", "storylet_id": "233000"}], [{"original_text": "As their names are called, each student goes up to receive a diploma.", "album_id": "72157645175752377", "photo_flickr_id": "14423261170", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46600", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as their names are called , each student goes up to receive a diploma .", "storylet_id": "233001"}], [{"original_text": "They are each proud of themselves and their friends as they move on to the next chapter in their schooling.", "album_id": "72157645175752377", "photo_flickr_id": "14609343992", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46600", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they are each proud of themselves and their friends as they move on to the next chapter in their schooling .", "storylet_id": "233002"}], [{"original_text": "Each student receives this little diploma showing their achievement.", "album_id": "72157645175752377", "photo_flickr_id": "14423296109", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46600", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "each student receives this little diploma showing their achievement .", "storylet_id": "233003"}], [{"original_text": "Following the ceremony, each child goes to the local water park to celebrate and have fun!", "album_id": "72157645175752377", "photo_flickr_id": "14607803634", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46600", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "following the ceremony , each child goes to the local water park to celebrate and have fun !", "storylet_id": "233004"}], [{"original_text": "All of the children won awards last weekend.", "album_id": "72157645175752377", "photo_flickr_id": "14423261170", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46601", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all of the children won awards last weekend .", "storylet_id": "233005"}], [{"original_text": "They were all very proud to receive them.", "album_id": "72157645175752377", "photo_flickr_id": "14423275688", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46601", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were all very proud to receive them .", "storylet_id": "233006"}], [{"original_text": "Their parents were also very proud of all of them.", "album_id": "72157645175752377", "photo_flickr_id": "14607822574", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46601", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their parents were also very proud of all of them .", "storylet_id": "233007"}], [{"original_text": "Afterward they all went to the park to hang out.", "album_id": "72157645175752377", "photo_flickr_id": "14607781094", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46601", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward they all went to the park to hang out .", "storylet_id": "233008"}], [{"original_text": "All of the kids had a great time at the park.", "album_id": "72157645175752377", "photo_flickr_id": "14423213248", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46601", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of the kids had a great time at the park .", "storylet_id": "233009"}], [{"original_text": "The children lined up for a picture to commemorate their graduation from preschool.", "album_id": "72157645175752377", "photo_flickr_id": "14423289010", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "46602", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the children lined up for a picture to commemorate their graduation from preschool .", "storylet_id": "233010"}], [{"original_text": "When the teacher told them they could take a silly picture too, the kids made silly faces and gestures with glee.", "album_id": "72157645175752377", "photo_flickr_id": "14423261170", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "46602", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when the teacher told them they could take a silly picture too , the kids made silly faces and gestures with glee .", "storylet_id": "233011"}], [{"original_text": "Finally, they one by one got their diplomas as their parents watched with pride.", "album_id": "72157645175752377", "photo_flickr_id": "14609343992", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "46602", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally , they one by one got their diplomas as their parents watched with pride .", "storylet_id": "233012"}], [{"original_text": "He was so excited to move onto Kindergarten that he could hardly contain himself. ", "album_id": "72157645175752377", "photo_flickr_id": "14423296109", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "46602", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was so excited to move onto kindergarten that he could hardly contain himself .", "storylet_id": "233013"}], [{"original_text": "The parents celebrated by taking the kids to the water park. They had so much fun.", "album_id": "72157645175752377", "photo_flickr_id": "14607803634", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "46602", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the parents celebrated by taking the kids to the water park . they had so much fun .", "storylet_id": "233014"}], [{"original_text": "First grade graduation day. Special songs were sung for the parents.", "album_id": "72157645175752377", "photo_flickr_id": "14423289010", "setting": "last-3-pick-old-and-tell", "worker_id": "BZ3PTZGGGPJNXTT", "story_id": "46603", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "first grade graduation day . special songs were sung for the parents .", "storylet_id": "233015"}], [{"original_text": "The children were very animated and had so much fun!", "album_id": "72157645175752377", "photo_flickr_id": "14423261170", "setting": "last-3-pick-old-and-tell", "worker_id": "BZ3PTZGGGPJNXTT", "story_id": "46603", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children were very animated and had so much fun !", "storylet_id": "233016"}], [{"original_text": "It was hard to say goodbye to their teacher. They will miss her. She is a very special person.", "album_id": "72157645175752377", "photo_flickr_id": "14609343992", "setting": "last-3-pick-old-and-tell", "worker_id": "BZ3PTZGGGPJNXTT", "story_id": "46603", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was hard to say goodbye to their teacher . they will miss her . she is a very special person .", "storylet_id": "233017"}], [{"original_text": "Every child received a certificate of graduation. They were so proud.", "album_id": "72157645175752377", "photo_flickr_id": "14423296109", "setting": "last-3-pick-old-and-tell", "worker_id": "BZ3PTZGGGPJNXTT", "story_id": "46603", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "every child received a certificate of graduation . they were so proud .", "storylet_id": "233018"}], [{"original_text": "Celebrating the last recess of the year, they jumped in the fountains and cooled down in the heat of the summer. ", "album_id": "72157645175752377", "photo_flickr_id": "14607803634", "setting": "last-3-pick-old-and-tell", "worker_id": "BZ3PTZGGGPJNXTT", "story_id": "46603", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "celebrating the last recess of the year , they jumped in the fountains and cooled down in the heat of the summer .", "storylet_id": "233019"}], [{"original_text": "The kids were all lined up and waiting patiently.", "album_id": "72157645175752377", "photo_flickr_id": "14423289010", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "46604", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids were all lined up and waiting patiently .", "storylet_id": "233020"}], [{"original_text": "They were excited it was finally time to start.", "album_id": "72157645175752377", "photo_flickr_id": "14423261170", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "46604", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were excited it was finally time to start .", "storylet_id": "233021"}], [{"original_text": "They were so happy to receive their certificates.", "album_id": "72157645175752377", "photo_flickr_id": "14609343992", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "46604", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were so happy to receive their certificates .", "storylet_id": "233022"}], [{"original_text": "This little boy was very proud of his accomplishment.", "album_id": "72157645175752377", "photo_flickr_id": "14423296109", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "46604", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this little boy was very proud of his accomplishment .", "storylet_id": "233023"}], [{"original_text": "After the awards ceremony, it was time to play outside!", "album_id": "72157645175752377", "photo_flickr_id": "14607803634", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "46604", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the awards ceremony , it was time to play outside !", "storylet_id": "233024"}], [{"original_text": "The pumpkins were perfectly carved for Halloween.", "album_id": "72157625287632264", "photo_flickr_id": "5135814666", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46605", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the pumpkins were perfectly carved for halloween .", "storylet_id": "233025"}], [{"original_text": "Dracula was put in front of the house to scare trick or treaters.", "album_id": "72157625287632264", "photo_flickr_id": "5135217407", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46605", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dracula was put in front of the house to scare trick or treaters .", "storylet_id": "233026"}], [{"original_text": "We went in search of free candy but mom didn't want to wear a costume. ", "album_id": "72157625287632264", "photo_flickr_id": "5135220675", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46605", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went in search of free candy but mom did n't want to wear a costume .", "storylet_id": "233027"}], [{"original_text": "The pumpkins looked really scary with lights inside of them. ", "album_id": "72157625287632264", "photo_flickr_id": "5135222265", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46605", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pumpkins looked really scary with lights inside of them .", "storylet_id": "233028"}], [{"original_text": "Sam came dressed as the grim reaper. ", "album_id": "72157625287632264", "photo_flickr_id": "5135223231", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "46605", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] came dressed as the grim reaper .", "storylet_id": "233029"}], [{"original_text": "We decorated a little bit for Halloween.", "album_id": "72157625287632264", "photo_flickr_id": "5135217407", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46606", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decorated a little bit for halloween .", "storylet_id": "233030"}], [{"original_text": "This included our front porch and pumpkins.", "album_id": "72157625287632264", "photo_flickr_id": "5135218509", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46606", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this included our front porch and pumpkins .", "storylet_id": "233031"}], [{"original_text": "We had a chair set outside waiting for visitors with candy.", "album_id": "72157625287632264", "photo_flickr_id": "5135219345", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46606", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a chair set outside waiting for visitors with candy .", "storylet_id": "233032"}], [{"original_text": "My friend was dressed up waiting in the bushes for people walking by.", "album_id": "72157625287632264", "photo_flickr_id": "5135223231", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46606", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friend was dressed up waiting in the bushes for people walking by .", "storylet_id": "233033"}], [{"original_text": "Here is a victim about to get scared.", "album_id": "72157625287632264", "photo_flickr_id": "5135224161", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46606", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is a victim about to get scared .", "storylet_id": "233034"}], [{"original_text": "The pumpkins were laying on the porch.", "album_id": "72157625287632264", "photo_flickr_id": "5135814666", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46607", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the pumpkins were laying on the porch .", "storylet_id": "233035"}], [{"original_text": "Outside the home was a statue that stood tall.", "album_id": "72157625287632264", "photo_flickr_id": "5135217407", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46607", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "outside the home was a statue that stood tall .", "storylet_id": "233036"}], [{"original_text": "The home was very well lit from the outside.", "album_id": "72157625287632264", "photo_flickr_id": "5135220675", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46607", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the home was very well lit from the outside .", "storylet_id": "233037"}], [{"original_text": "When we walked in, we loved the furnishing in the home.", "album_id": "72157625287632264", "photo_flickr_id": "5135222265", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46607", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we walked in , we loved the furnishing in the home .", "storylet_id": "233038"}], [{"original_text": "We wore creepy masks to hunt candy with.", "album_id": "72157625287632264", "photo_flickr_id": "5135223231", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46607", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we wore creepy masks to hunt candy with .", "storylet_id": "233039"}], [{"original_text": "Halloween was last night!", "album_id": "72157625287632264", "photo_flickr_id": "5135814666", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46608", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "halloween was last night !", "storylet_id": "233040"}], [{"original_text": "We decorated my house with vampire themed stuff.", "album_id": "72157625287632264", "photo_flickr_id": "5135217407", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46608", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decorated my house with vampire themed stuff .", "storylet_id": "233041"}], [{"original_text": "People began showing up around 6pm.", "album_id": "72157625287632264", "photo_flickr_id": "5135220675", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46608", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people began showing up around 6pm .", "storylet_id": "233042"}], [{"original_text": "The Smiths across the street don't celebrate Halloween.", "album_id": "72157625287632264", "photo_flickr_id": "5135222265", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46608", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the smiths across the street do n't celebrate halloween .", "storylet_id": "233043"}], [{"original_text": "Jeff came over dressed like a skeleton.", "album_id": "72157625287632264", "photo_flickr_id": "5135223231", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46608", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] came over dressed like a skeleton .", "storylet_id": "233044"}], [{"original_text": "These are the jack-o-lanterns we carved that Halloween.", "album_id": "72157625287632264", "photo_flickr_id": "5135814666", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "46609", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these are the jack-o-lanterns we carved that halloween .", "storylet_id": "233045"}], [{"original_text": "Justine wanted to put up this scary scarecrow.", "album_id": "72157625287632264", "photo_flickr_id": "5135217407", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "46609", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] wanted to put up this scary scarecrow .", "storylet_id": "233046"}], [{"original_text": "The first trick-or-treaters arrive after dinner.", "album_id": "72157625287632264", "photo_flickr_id": "5135220675", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "46609", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first trick-or-treaters arrive after dinner .", "storylet_id": "233047"}], [{"original_text": "We started the rounds at Harold's house.", "album_id": "72157625287632264", "photo_flickr_id": "5135222265", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "46609", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we started the rounds at [male] 's house .", "storylet_id": "233048"}], [{"original_text": "I nearly jumped out of my skin when I saw your mask!", "album_id": "72157625287632264", "photo_flickr_id": "5135223231", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "46609", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i nearly jumped out of my skin when i saw your mask !", "storylet_id": "233049"}], [{"original_text": "We work as volunteers to help feed the community.", "album_id": "72157625163882291", "photo_flickr_id": "5135629427", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46610", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we work as volunteers to help feed the community .", "storylet_id": "233050"}], [{"original_text": "We help set up the kitchen.", "album_id": "72157625163882291", "photo_flickr_id": "5136232664", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46610", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we help set up the kitchen .", "storylet_id": "233051"}], [{"original_text": "And also prepare the food.", "album_id": "72157625163882291", "photo_flickr_id": "5136239264", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46610", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and also prepare the food .", "storylet_id": "233052"}], [{"original_text": "We enjoy what we do.", "album_id": "72157625163882291", "photo_flickr_id": "5135642541", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46610", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we enjoy what we do .", "storylet_id": "233053"}], [{"original_text": "It really helps people.", "album_id": "72157625163882291", "photo_flickr_id": "5135644285", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46610", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it really helps people .", "storylet_id": "233054"}], [{"original_text": "We had a great Halloween with our friends.", "album_id": "72157625163882291", "photo_flickr_id": "5136232110", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46611", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great halloween with our friends .", "storylet_id": "233055"}], [{"original_text": "Everyone was happy and came excited.", "album_id": "72157625163882291", "photo_flickr_id": "5136233730", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46611", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was happy and came excited .", "storylet_id": "233056"}], [{"original_text": "We tried to make the place as creepy as possible.", "album_id": "72157625163882291", "photo_flickr_id": "5135635589", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46611", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we tried to make the place as creepy as possible .", "storylet_id": "233057"}], [{"original_text": "The food was great, we all ate as much as we could.", "album_id": "72157625163882291", "photo_flickr_id": "5136240938", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46611", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food was great , we all ate as much as we could .", "storylet_id": "233058"}], [{"original_text": "Some people showed up in masks, they were pretty scary.", "album_id": "72157625163882291", "photo_flickr_id": "5135640945", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46611", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people showed up in masks , they were pretty scary .", "storylet_id": "233059"}], [{"original_text": "Everything was already for our party.", "album_id": "72157625163882291", "photo_flickr_id": "5136232110", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "46612", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everything was already for our party .", "storylet_id": "233060"}], [{"original_text": "Jerry is enjoying one of the dishes we prepared.", "album_id": "72157625163882291", "photo_flickr_id": "5136233730", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "46612", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is enjoying one of the dishes we prepared .", "storylet_id": "233061"}], [{"original_text": "All the ornaments are put up and ready for the party-goers.", "album_id": "72157625163882291", "photo_flickr_id": "5135635589", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "46612", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the ornaments are put up and ready for the party-goers .", "storylet_id": "233062"}], [{"original_text": "Everyone enjoys a good meal of cake and ice cream.", "album_id": "72157625163882291", "photo_flickr_id": "5136240938", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "46612", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone enjoys a good meal of cake and ice cream .", "storylet_id": "233063"}], [{"original_text": "Frankenstein enjoyed his cake and ice cream too.", "album_id": "72157625163882291", "photo_flickr_id": "5135640945", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "46612", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "frankenstein enjoyed his cake and ice cream too .", "storylet_id": "233064"}], [{"original_text": "We take life as seriously as we are supposed to.", "album_id": "72157625163882291", "photo_flickr_id": "5135629427", "setting": "last-3-pick-old-and-tell", "worker_id": "BGQ9WIAYOWKLWX0", "story_id": "46613", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we take life as seriously as we are supposed to .", "storylet_id": "233065"}], [{"original_text": "When we get together we also take our food just as seriously.", "album_id": "72157625163882291", "photo_flickr_id": "5136232664", "setting": "last-3-pick-old-and-tell", "worker_id": "BGQ9WIAYOWKLWX0", "story_id": "46613", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we get together we also take our food just as seriously .", "storylet_id": "233066"}], [{"original_text": "Having endless rows of good food and friends is the best way to live life to the fullest.", "album_id": "72157625163882291", "photo_flickr_id": "5136239264", "setting": "last-3-pick-old-and-tell", "worker_id": "BGQ9WIAYOWKLWX0", "story_id": "46613", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "having endless rows of good food and friends is the best way to live life to the fullest .", "storylet_id": "233067"}], [{"original_text": "Nobody said anything about us eating. Sometimes it is the best time when you provide meals for others.", "album_id": "72157625163882291", "photo_flickr_id": "5135642541", "setting": "last-3-pick-old-and-tell", "worker_id": "BGQ9WIAYOWKLWX0", "story_id": "46613", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "nobody said anything about us eating . sometimes it is the best time when you provide meals for others .", "storylet_id": "233068"}], [{"original_text": "Everyone is welcome in our circle. We feed anyone in need of a good meal.", "album_id": "72157625163882291", "photo_flickr_id": "5135644285", "setting": "last-3-pick-old-and-tell", "worker_id": "BGQ9WIAYOWKLWX0", "story_id": "46613", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone is welcome in our circle . we feed anyone in need of a good meal .", "storylet_id": "233069"}], [{"original_text": "We set up the tables for the Halloween party. ", "album_id": "72157625163882291", "photo_flickr_id": "5136232110", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "46614", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we set up the tables for the halloween party .", "storylet_id": "233070"}], [{"original_text": "The first guest to show up was Mark. ", "album_id": "72157625163882291", "photo_flickr_id": "5136233730", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "46614", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first guest to show up was [male] .", "storylet_id": "233071"}], [{"original_text": "We set up fun games and prizes to play during the party. ", "album_id": "72157625163882291", "photo_flickr_id": "5135635589", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "46614", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we set up fun games and prizes to play during the party .", "storylet_id": "233072"}], [{"original_text": "Other people arrived and got started eating. ", "album_id": "72157625163882291", "photo_flickr_id": "5136240938", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "46614", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other people arrived and got started eating .", "storylet_id": "233073"}], [{"original_text": "Someone brought a Frankenstein mask and passed it around to the guests. ", "album_id": "72157625163882291", "photo_flickr_id": "5135640945", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "46614", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someone brought a frankenstein mask and passed it around to the guests .", "storylet_id": "233074"}], [{"original_text": "The bike race is today and there are many different competitors.", "album_id": "72157625163885359", "photo_flickr_id": "5135683835", "setting": "first-2-pick-and-tell", "worker_id": "SE7VAMHDWRU9UB5", "story_id": "46615", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bike race is today and there are many different competitors .", "storylet_id": "233075"}], [{"original_text": "There is a twist: people dress up as their favorite book characters. This boy is a wereworlf.", "album_id": "72157625163885359", "photo_flickr_id": "5136284874", "setting": "first-2-pick-and-tell", "worker_id": "SE7VAMHDWRU9UB5", "story_id": "46615", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is a twist : people dress up as their favorite book characters . this boy is a wereworlf .", "storylet_id": "233076"}], [{"original_text": "There are vampires and other creatures.", "album_id": "72157625163885359", "photo_flickr_id": "5135683453", "setting": "first-2-pick-and-tell", "worker_id": "SE7VAMHDWRU9UB5", "story_id": "46615", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are vampires and other creatures .", "storylet_id": "233077"}], [{"original_text": "Dr. Seuss characters are also popular choices along with superheros.", "album_id": "72157625163885359", "photo_flickr_id": "5136285812", "setting": "first-2-pick-and-tell", "worker_id": "SE7VAMHDWRU9UB5", "story_id": "46615", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dr. seuss characters are also popular choices along with superheros .", "storylet_id": "233078"}], [{"original_text": "There are also couples who pretend to be pirates sailing their bikes through the stormy seas.", "album_id": "72157625163885359", "photo_flickr_id": "5135683907", "setting": "first-2-pick-and-tell", "worker_id": "SE7VAMHDWRU9UB5", "story_id": "46615", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are also couples who pretend to be pirates sailing their bikes through the stormy seas .", "storylet_id": "233079"}], [{"original_text": "They decided to have a Halloween party with some games.", "album_id": "72157625163885359", "photo_flickr_id": "5136284840", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "46616", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they decided to have a halloween party with some games .", "storylet_id": "233080"}], [{"original_text": "There were some unique characters that came by.", "album_id": "72157625163885359", "photo_flickr_id": "5136284946", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "46616", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were some unique characters that came by .", "storylet_id": "233081"}], [{"original_text": "The pirate team did very well in the race.", "album_id": "72157625163885359", "photo_flickr_id": "5135683907", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "46616", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the pirate team did very well in the race .", "storylet_id": "233082"}], [{"original_text": "The kids had their own race that day.", "album_id": "72157625163885359", "photo_flickr_id": "5135684131", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "46616", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids had their own race that day .", "storylet_id": "233083"}], [{"original_text": "Finally, the winners were crowned, the two \"things\" from Dr. Suess. ", "album_id": "72157625163885359", "photo_flickr_id": "5136285812", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "46616", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , the winners were crowned , the two `` things '' from dr. suess .", "storylet_id": "233084"}], [{"original_text": "Dave joined a bike race on Halloween.", "album_id": "72157625163885359", "photo_flickr_id": "5135683835", "setting": "last-3-pick-old-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "46617", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] joined a bike race on halloween .", "storylet_id": "233085"}], [{"original_text": "Dave wore his werewolf mask and was ready to race.", "album_id": "72157625163885359", "photo_flickr_id": "5136284874", "setting": "last-3-pick-old-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "46617", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] wore his werewolf mask and was ready to race .", "storylet_id": "233086"}], [{"original_text": "The race and Dave was off to a fast start.", "album_id": "72157625163885359", "photo_flickr_id": "5135683453", "setting": "last-3-pick-old-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "46617", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the race and [male] was off to a fast start .", "storylet_id": "233087"}], [{"original_text": "There were people cheering on the racers as they went by.", "album_id": "72157625163885359", "photo_flickr_id": "5136285812", "setting": "last-3-pick-old-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "46617", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were people cheering on the racers as they went by .", "storylet_id": "233088"}], [{"original_text": "Dave didn't win the race and ended up finishing third.", "album_id": "72157625163885359", "photo_flickr_id": "5135683907", "setting": "last-3-pick-old-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "46617", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] did n't win the race and ended up finishing third .", "storylet_id": "233089"}], [{"original_text": "We hit the trail on our bike.", "album_id": "72157625163885359", "photo_flickr_id": "5135683835", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46618", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we hit the trail on our bike .", "storylet_id": "233090"}], [{"original_text": "Everyone was dressed up funny for the day.", "album_id": "72157625163885359", "photo_flickr_id": "5136284874", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46618", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was dressed up funny for the day .", "storylet_id": "233091"}], [{"original_text": "We took jumps and raced each other.", "album_id": "72157625163885359", "photo_flickr_id": "5135683453", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46618", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took jumps and raced each other .", "storylet_id": "233092"}], [{"original_text": "Afterwards we all just hung out.", "album_id": "72157625163885359", "photo_flickr_id": "5136285812", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46618", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards we all just hung out .", "storylet_id": "233093"}], [{"original_text": "We spent the day just riding for fun and hanging out.", "album_id": "72157625163885359", "photo_flickr_id": "5135683907", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46618", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we spent the day just riding for fun and hanging out .", "storylet_id": "233094"}], [{"original_text": "There was a bicycle event today.", "album_id": "72157625163885359", "photo_flickr_id": "5135683835", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46619", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a bicycle event today .", "storylet_id": "233095"}], [{"original_text": "Some of the bikers even dressed up.", "album_id": "72157625163885359", "photo_flickr_id": "5136284874", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46619", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the bikers even dressed up .", "storylet_id": "233096"}], [{"original_text": "This one in particular dressed up as a werewolf.", "album_id": "72157625163885359", "photo_flickr_id": "5135683453", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46619", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one in particular dressed up as a werewolf .", "storylet_id": "233097"}], [{"original_text": "Other people had funny looking outfits as well.", "album_id": "72157625163885359", "photo_flickr_id": "5136285812", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46619", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other people had funny looking outfits as well .", "storylet_id": "233098"}], [{"original_text": "Overall, it was a fun experience.", "album_id": "72157625163885359", "photo_flickr_id": "5135683907", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46619", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall , it was a fun experience .", "storylet_id": "233099"}], [{"original_text": "The party had the normal party elements of music and drinking.", "album_id": "72157594492450216", "photo_flickr_id": "364980309", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "46620", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party had the normal party elements of music and drinking .", "storylet_id": "233100"}], [{"original_text": "Some of the guests partied harder than others. ", "album_id": "72157594492450216", "photo_flickr_id": "364962756", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "46620", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the guests partied harder than others .", "storylet_id": "233101"}], [{"original_text": "A few of the guests were lost and in found themselves in the wrong place.", "album_id": "72157594492450216", "photo_flickr_id": "364962732", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "46620", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few of the guests were lost and in found themselves in the wrong place .", "storylet_id": "233102"}], [{"original_text": "Normal party activities included drinking too much. ", "album_id": "72157594492450216", "photo_flickr_id": "364971891", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "46620", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "normal party activities included drinking too much .", "storylet_id": "233103"}], [{"original_text": "Maybe driving home is not such a great idea. ", "album_id": "72157594492450216", "photo_flickr_id": "364980313", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "46620", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "maybe driving home is not such a great idea .", "storylet_id": "233104"}], [{"original_text": "After driving around the neighborhood for a several minutes we finally found the Halloween party.", "album_id": "72157594492450216", "photo_flickr_id": "364980313", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46621", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after driving around the neighborhood for a several minutes we finally found the halloween party .", "storylet_id": "233105"}], [{"original_text": "There were a lot of people dressed in strange costumes.", "album_id": "72157594492450216", "photo_flickr_id": "364962755", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46621", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people dressed in strange costumes .", "storylet_id": "233106"}], [{"original_text": "They had some scary Halloween decorations.", "album_id": "72157594492450216", "photo_flickr_id": "364962756", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46621", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had some scary halloween decorations .", "storylet_id": "233107"}], [{"original_text": "There were some people that chose not to dress up.", "album_id": "72157594492450216", "photo_flickr_id": "364962732", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46621", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were some people that chose not to dress up .", "storylet_id": "233108"}], [{"original_text": "Afterward we all danced together.", "album_id": "72157594492450216", "photo_flickr_id": "377977421", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46621", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we all danced together .", "storylet_id": "233109"}], [{"original_text": "The drinks were cold and numerous throughout our Halloween.", "album_id": "72157594492450216", "photo_flickr_id": "364980309", "setting": "last-3-pick-old-and-tell", "worker_id": "RB92W6YD5Y2HA9R", "story_id": "46622", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the drinks were cold and numerous throughout our halloween .", "storylet_id": "233110"}], [{"original_text": "There were scary costumes that took a lot of work to design.", "album_id": "72157594492450216", "photo_flickr_id": "364962756", "setting": "last-3-pick-old-and-tell", "worker_id": "RB92W6YD5Y2HA9R", "story_id": "46622", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were scary costumes that took a lot of work to design .", "storylet_id": "233111"}], [{"original_text": "There were some guys who chose not to dress up at all. ", "album_id": "72157594492450216", "photo_flickr_id": "364962732", "setting": "last-3-pick-old-and-tell", "worker_id": "RB92W6YD5Y2HA9R", "story_id": "46622", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some guys who chose not to dress up at all .", "storylet_id": "233112"}], [{"original_text": "As the night went on, shirts came off and the crowd got a little wilder!", "album_id": "72157594492450216", "photo_flickr_id": "364971891", "setting": "last-3-pick-old-and-tell", "worker_id": "RB92W6YD5Y2HA9R", "story_id": "46622", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the night went on , shirts came off and the crowd got a little wilder !", "storylet_id": "233113"}], [{"original_text": "Luckily we all made it home in one piece with the assistance of designated drivers.", "album_id": "72157594492450216", "photo_flickr_id": "364980313", "setting": "last-3-pick-old-and-tell", "worker_id": "RB92W6YD5Y2HA9R", "story_id": "46622", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "luckily we all made it home in one piece with the assistance of designated drivers .", "storylet_id": "233114"}], [{"original_text": "Halloween was a great night at the bar.", "album_id": "72157594492450216", "photo_flickr_id": "364980309", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46623", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "halloween was a great night at the bar .", "storylet_id": "233115"}], [{"original_text": "They had spooky decorations up.", "album_id": "72157594492450216", "photo_flickr_id": "364962756", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46623", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had spooky decorations up .", "storylet_id": "233116"}], [{"original_text": "They made fun of anyone not wearing a costume.", "album_id": "72157594492450216", "photo_flickr_id": "364962732", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46623", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they made fun of anyone not wearing a costume .", "storylet_id": "233117"}], [{"original_text": "They danced until dawn.", "album_id": "72157594492450216", "photo_flickr_id": "364971891", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46623", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they danced until dawn .", "storylet_id": "233118"}], [{"original_text": "They were exhausted and fell asleep in the car on the way home.", "album_id": "72157594492450216", "photo_flickr_id": "364980313", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46623", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were exhausted and fell asleep in the car on the way home .", "storylet_id": "233119"}], [{"original_text": "It's the annual Halloween party, I went as a woman. ", "album_id": "72157594492450216", "photo_flickr_id": "364980309", "setting": "last-3-pick-old-and-tell", "worker_id": "XANY33DXDMAOJYJ", "story_id": "46624", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's the annual halloween party , i went as a woman .", "storylet_id": "233120"}], [{"original_text": "The bar always decorates well. ", "album_id": "72157594492450216", "photo_flickr_id": "364962756", "setting": "last-3-pick-old-and-tell", "worker_id": "XANY33DXDMAOJYJ", "story_id": "46624", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bar always decorates well .", "storylet_id": "233121"}], [{"original_text": "People who don't dress up get photo bombed.", "album_id": "72157594492450216", "photo_flickr_id": "364962732", "setting": "last-3-pick-old-and-tell", "worker_id": "XANY33DXDMAOJYJ", "story_id": "46624", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people who do n't dress up get photo bombed .", "storylet_id": "233122"}], [{"original_text": "Sometimes things get a little hot and steamy at the party. ", "album_id": "72157594492450216", "photo_flickr_id": "364971891", "setting": "last-3-pick-old-and-tell", "worker_id": "XANY33DXDMAOJYJ", "story_id": "46624", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes things get a little hot and steamy at the party .", "storylet_id": "233123"}], [{"original_text": "Everyone leaves having a good time. ", "album_id": "72157594492450216", "photo_flickr_id": "364980313", "setting": "last-3-pick-old-and-tell", "worker_id": "XANY33DXDMAOJYJ", "story_id": "46624", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone leaves having a good time .", "storylet_id": "233124"}], [{"original_text": "The house is decorated with pink balloons for the girl's birthday.", "album_id": "72157624409430634", "photo_flickr_id": "4755825187", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46625", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the house is decorated with pink balloons for the girl 's birthday .", "storylet_id": "233125"}], [{"original_text": "Family members arrive and share food as the birthday party starts.", "album_id": "72157624409430634", "photo_flickr_id": "4755825303", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46625", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "family members arrive and share food as the birthday party starts .", "storylet_id": "233126"}], [{"original_text": "Presents are brought and arranged on the table for her to open.", "album_id": "72157624409430634", "photo_flickr_id": "4755825385", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46625", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "presents are brought and arranged on the table for her to open .", "storylet_id": "233127"}], [{"original_text": "The young girl has a sweet tooth so she receives lots of treats and snacks.", "album_id": "72157624409430634", "photo_flickr_id": "4755825437", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46625", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the young girl has a sweet tooth so she receives lots of treats and snacks .", "storylet_id": "233128"}], [{"original_text": "The family helps her open her presents, showing them off to the camera.", "album_id": "72157624409430634", "photo_flickr_id": "4755825719", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46625", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family helps her open her presents , showing them off to the camera .", "storylet_id": "233129"}], [{"original_text": "A birthday party for a little girl.", "album_id": "72157624409430634", "photo_flickr_id": "4755825187", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46626", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a birthday party for a little girl .", "storylet_id": "233130"}], [{"original_text": "Gifts friends and family brought to the celebration.", "album_id": "72157624409430634", "photo_flickr_id": "4755825385", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46626", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "gifts friends and family brought to the celebration .", "storylet_id": "233131"}], [{"original_text": "Two cakes that were made for the birthday party.", "album_id": "72157624409430634", "photo_flickr_id": "4755825437", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46626", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two cakes that were made for the birthday party .", "storylet_id": "233132"}], [{"original_text": "The birthday girl enjoying her present.", "album_id": "72157624409430634", "photo_flickr_id": "4756463922", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46626", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the birthday girl enjoying her present .", "storylet_id": "233133"}], [{"original_text": "The invitation that was sent out inviting everyone to the party.", "album_id": "72157624409430634", "photo_flickr_id": "4756464226", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46626", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the invitation that was sent out inviting everyone to the party .", "storylet_id": "233134"}], [{"original_text": "It's time for the little girl's birthday party, and mom and dad took great care to make sure everything turned out perfectly.", "album_id": "72157624409430634", "photo_flickr_id": "4755825187", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46627", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's time for the little girl 's birthday party , and mom and dad took great care to make sure everything turned out perfectly .", "storylet_id": "233135"}], [{"original_text": "The family showed up, and everyone gathered around the table to talk and laugh.", "album_id": "72157624409430634", "photo_flickr_id": "4755825303", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46627", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family showed up , and everyone gathered around the table to talk and laugh .", "storylet_id": "233136"}], [{"original_text": "Everyone brought presents, and the little girl was so excited to open them!", "album_id": "72157624409430634", "photo_flickr_id": "4755825385", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46627", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone brought presents , and the little girl was so excited to open them !", "storylet_id": "233137"}], [{"original_text": "Of course, there were also desserts. There was plenty for everyone.", "album_id": "72157624409430634", "photo_flickr_id": "4755825437", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46627", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course , there were also desserts . there was plenty for everyone .", "storylet_id": "233138"}], [{"original_text": "Then, it was time to relax and play with all the new toys. What a fun day!", "album_id": "72157624409430634", "photo_flickr_id": "4755825719", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46627", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then , it was time to relax and play with all the new toys . what a fun day !", "storylet_id": "233139"}], [{"original_text": "A very special young girl her 4th birthday party today.", "album_id": "72157624409430634", "photo_flickr_id": "4755825187", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46628", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a very special young girl her 4th birthday party today .", "storylet_id": "233140"}], [{"original_text": "She receives many presents from her visitors.", "album_id": "72157624409430634", "photo_flickr_id": "4755825385", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46628", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she receives many presents from her visitors .", "storylet_id": "233141"}], [{"original_text": "Ice cream sandwiches will take the place of a birthday cake at this party.", "album_id": "72157624409430634", "photo_flickr_id": "4755825437", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46628", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "ice cream sandwiches will take the place of a birthday cake at this party .", "storylet_id": "233142"}], [{"original_text": "Grandpa is helping her open her presents one by one.", "album_id": "72157624409430634", "photo_flickr_id": "4756463922", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46628", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandpa is helping her open her presents one by one .", "storylet_id": "233143"}], [{"original_text": "Abby Cadabby was chosen to be the theme for this occasion.", "album_id": "72157624409430634", "photo_flickr_id": "4756464226", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46628", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] cadabby was chosen to be the theme for this occasion .", "storylet_id": "233144"}], [{"original_text": "The daughter's favorite character is displayed on a balloon.", "album_id": "72157624409430634", "photo_flickr_id": "4755825187", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46629", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the daughter 's favorite character is displayed on a balloon .", "storylet_id": "233145"}], [{"original_text": "Gifts and bags are given to show appreciation for the girl.", "album_id": "72157624409430634", "photo_flickr_id": "4755825385", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46629", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "gifts and bags are given to show appreciation for the girl .", "storylet_id": "233146"}], [{"original_text": "The family wanted the girl to also have an appetite with these delicious cookies.", "album_id": "72157624409430634", "photo_flickr_id": "4755825437", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46629", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family wanted the girl to also have an appetite with these delicious cookies .", "storylet_id": "233147"}], [{"original_text": "A moment with the father and daughter commemorates the happiness of the occasion.", "album_id": "72157624409430634", "photo_flickr_id": "4756463922", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46629", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a moment with the father and daughter commemorates the happiness of the occasion .", "storylet_id": "233148"}], [{"original_text": "Lastly, here is the invitation card that was given out to the invited guests.", "album_id": "72157624409430634", "photo_flickr_id": "4756464226", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46629", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , here is the invitation card that was given out to the invited guests .", "storylet_id": "233149"}], [{"original_text": "Bubba and Chelsea decided to start a duo folk band called the Twadles. ", "album_id": "72157625178191457", "photo_flickr_id": "5141960499", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "46630", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "bubba and [female] decided to start a duo folk band called the twadles .", "storylet_id": "233150"}], [{"original_text": "The Twadles performed at retirement homes, and in day care centers. Sometimes bars. ", "album_id": "72157625178191457", "photo_flickr_id": "5142564470", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "46630", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the twadles performed at retirement homes , and in day care centers . sometimes bars .", "storylet_id": "233151"}], [{"original_text": "Chelsea performed songs she'd written, and her voice was soft as silk.", "album_id": "72157625178191457", "photo_flickr_id": "5141961147", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "46630", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] performed songs she 'd written , and her voice was soft as silk .", "storylet_id": "233152"}], [{"original_text": "Chelsea also played a mean piano. Deep soulful ballads are her specialty. ", "album_id": "72157625178191457", "photo_flickr_id": "5141961661", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "46630", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] also played a mean piano . deep soulful ballads are her specialty .", "storylet_id": "233153"}], [{"original_text": "Last song for every performance is Love is a Bridge, a song Bubba wrote especially for his wife, Chelsea. ", "album_id": "72157625178191457", "photo_flickr_id": "5142564294", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "46630", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last song for every performance is love is a bridge , a song bubba wrote especially for his wife , [female] .", "storylet_id": "233154"}], [{"original_text": "This couple played at the bar recently.", "album_id": "72157625178191457", "photo_flickr_id": "5141960499", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "46631", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this couple played at the bar recently .", "storylet_id": "233155"}], [{"original_text": "The sounded so well together.", "album_id": "72157625178191457", "photo_flickr_id": "5142564470", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "46631", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sounded so well together .", "storylet_id": "233156"}], [{"original_text": "The female singer had an angelic voice.", "album_id": "72157625178191457", "photo_flickr_id": "5141961147", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "46631", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the female singer had an angelic voice .", "storylet_id": "233157"}], [{"original_text": "She not only played the guitar, but then she got behind the keyboard.", "album_id": "72157625178191457", "photo_flickr_id": "5141961441", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "46631", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she not only played the guitar , but then she got behind the keyboard .", "storylet_id": "233158"}], [{"original_text": "She rocked a solo. Such a great show.", "album_id": "72157625178191457", "photo_flickr_id": "5142565338", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "46631", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she rocked a solo . such a great show .", "storylet_id": "233159"}], [{"original_text": "I went to see my favorite band play tonight.", "album_id": "72157625178191457", "photo_flickr_id": "5141960499", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "46632", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to see my favorite band play tonight .", "storylet_id": "233160"}], [{"original_text": "They played all of my favorite songs.", "album_id": "72157625178191457", "photo_flickr_id": "5142564470", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "46632", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they played all of my favorite songs .", "storylet_id": "233161"}], [{"original_text": "Sandy played the guitar through most of the concert.", "album_id": "72157625178191457", "photo_flickr_id": "5141961147", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "46632", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] played the guitar through most of the concert .", "storylet_id": "233162"}], [{"original_text": "Though she switched to keyboards for a while.", "album_id": "72157625178191457", "photo_flickr_id": "5141961441", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "46632", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "though she switched to keyboards for a while .", "storylet_id": "233163"}], [{"original_text": "She can really rock out on the keyboards!", "album_id": "72157625178191457", "photo_flickr_id": "5142565338", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "46632", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she can really rock out on the keyboards !", "storylet_id": "233164"}], [{"original_text": "We went to see an underground rock show.", "album_id": "72157625178191457", "photo_flickr_id": "5141960499", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46633", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to see an underground rock show .", "storylet_id": "233165"}], [{"original_text": "It was a lot of fun.", "album_id": "72157625178191457", "photo_flickr_id": "5142564470", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46633", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a lot of fun .", "storylet_id": "233166"}], [{"original_text": "The singer had a nice voice and the songs where smooth.", "album_id": "72157625178191457", "photo_flickr_id": "5141961147", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46633", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the singer had a nice voice and the songs where smooth .", "storylet_id": "233167"}], [{"original_text": "She played keyboard near the end of the set.", "album_id": "72157625178191457", "photo_flickr_id": "5141961661", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46633", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she played keyboard near the end of the set .", "storylet_id": "233168"}], [{"original_text": "For the final song she sang and played guitar.", "album_id": "72157625178191457", "photo_flickr_id": "5142564294", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46633", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for the final song she sang and played guitar .", "storylet_id": "233169"}], [{"original_text": "The band was performing tonight.", "album_id": "72157625178191457", "photo_flickr_id": "5141960499", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46634", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the band was performing tonight .", "storylet_id": "233170"}], [{"original_text": "They were in sync today and the crowd was loving it.", "album_id": "72157625178191457", "photo_flickr_id": "5142564470", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46634", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were in sync today and the crowd was loving it .", "storylet_id": "233171"}], [{"original_text": "The leader singer was singing with all her heart.", "album_id": "72157625178191457", "photo_flickr_id": "5141961147", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46634", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the leader singer was singing with all her heart .", "storylet_id": "233172"}], [{"original_text": "She even played the keyboards.", "album_id": "72157625178191457", "photo_flickr_id": "5141961441", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46634", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she even played the keyboards .", "storylet_id": "233173"}], [{"original_text": "She had her own solo as well.", "album_id": "72157625178191457", "photo_flickr_id": "5142565338", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46634", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she had her own solo as well .", "storylet_id": "233174"}], [{"original_text": "Costume time at our favorite bar, we made sure our costumes were extra lame.", "album_id": "72157625306347444", "photo_flickr_id": "5144008308", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46635", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "costume time at our favorite bar , we made sure our costumes were extra lame .", "storylet_id": "233175"}], [{"original_text": "Some of our friends went out as drunkards, that's right, drunkards.", "album_id": "72157625306347444", "photo_flickr_id": "5144009362", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46635", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of our friends went out as drunkards , that 's right , drunkards .", "storylet_id": "233176"}], [{"original_text": "We put on our best shitty selfie faces whenever our pictures were taken.", "album_id": "72157625306347444", "photo_flickr_id": "5144009532", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46635", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we put on our best shitty selfie faces whenever our pictures were taken .", "storylet_id": "233177"}], [{"original_text": "This guy's Homer Simpson was really shitty, it was kinda scary.", "album_id": "72157625306347444", "photo_flickr_id": "5143403753", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46635", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this guy 's [male] simpson was really shitty , it was kinda scary .", "storylet_id": "233178"}], [{"original_text": "But, at least we got to see a creepy Frankenstein and an old dude.", "album_id": "72157625306347444", "photo_flickr_id": "5143404211", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46635", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but , at least we got to see a creepy frankenstein and an old dude .", "storylet_id": "233179"}], [{"original_text": "We had a great costume party this week.", "album_id": "72157625306347444", "photo_flickr_id": "5143402065", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46636", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great costume party this week .", "storylet_id": "233180"}], [{"original_text": "All my friends showed up dressed up.", "album_id": "72157625306347444", "photo_flickr_id": "5144008936", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46636", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all my friends showed up dressed up .", "storylet_id": "233181"}], [{"original_text": "Some with more clothes than others.", "album_id": "72157625306347444", "photo_flickr_id": "5144009208", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46636", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some with more clothes than others .", "storylet_id": "233182"}], [{"original_text": "Masks were aplenty and funny.", "album_id": "72157625306347444", "photo_flickr_id": "5143403753", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46636", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "masks were aplenty and funny .", "storylet_id": "233183"}], [{"original_text": "It was a great party which we will certainly repeat.", "album_id": "72157625306347444", "photo_flickr_id": "5144010254", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "46636", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great party which we will certainly repeat .", "storylet_id": "233184"}], [{"original_text": "These two sisters were wild that night.", "album_id": "72157625306347444", "photo_flickr_id": "5143402065", "setting": "last-3-pick-old-and-tell", "worker_id": "EONXET74M0XE84I", "story_id": "46637", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these two sisters were wild that night .", "storylet_id": "233185"}], [{"original_text": "Cutest couple of the night award to these two.", "album_id": "72157625306347444", "photo_flickr_id": "5144008936", "setting": "last-3-pick-old-and-tell", "worker_id": "EONXET74M0XE84I", "story_id": "46637", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "cutest couple of the night award to these two .", "storylet_id": "233186"}], [{"original_text": "They were talking about some dirty stuff when I walked over.", "album_id": "72157625306347444", "photo_flickr_id": "5144009208", "setting": "last-3-pick-old-and-tell", "worker_id": "EONXET74M0XE84I", "story_id": "46637", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were talking about some dirty stuff when i walked over .", "storylet_id": "233187"}], [{"original_text": "Homer simpson and pukashell man!", "album_id": "72157625306347444", "photo_flickr_id": "5143403753", "setting": "last-3-pick-old-and-tell", "worker_id": "EONXET74M0XE84I", "story_id": "46637", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] simpson and pukashell man !", "storylet_id": "233188"}], [{"original_text": "These four didn't understand the holiday at all.", "album_id": "72157625306347444", "photo_flickr_id": "5144010254", "setting": "last-3-pick-old-and-tell", "worker_id": "EONXET74M0XE84I", "story_id": "46637", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these four did n't understand the holiday at all .", "storylet_id": "233189"}], [{"original_text": "Its Halloween and the couple dressed up.", "album_id": "72157625306347444", "photo_flickr_id": "5144008308", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "46638", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "its halloween and the couple dressed up .", "storylet_id": "233190"}], [{"original_text": "The friends are enjoying each other company.", "album_id": "72157625306347444", "photo_flickr_id": "5144009362", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "46638", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the friends are enjoying each other company .", "storylet_id": "233191"}], [{"original_text": "They are so serious.", "album_id": "72157625306347444", "photo_flickr_id": "5144009532", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "46638", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they are so serious .", "storylet_id": "233192"}], [{"original_text": "These guys are really enjoying their self.", "album_id": "72157625306347444", "photo_flickr_id": "5143403753", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "46638", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these guys are really enjoying their self .", "storylet_id": "233193"}], [{"original_text": " These friends costumes are interesting. It was very good night for all these friends.", "album_id": "72157625306347444", "photo_flickr_id": "5143404211", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "46638", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these friends costumes are interesting . it was very good night for all these friends .", "storylet_id": "233194"}], [{"original_text": "Friends gathered for a Halloween party.", "album_id": "72157625306347444", "photo_flickr_id": "5144008308", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "46639", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends gathered for a halloween party .", "storylet_id": "233195"}], [{"original_text": "Some of the costumes showed very little effort on the part of some of the party goers.", "album_id": "72157625306347444", "photo_flickr_id": "5144009362", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "46639", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the costumes showed very little effort on the part of some of the party goers .", "storylet_id": "233196"}], [{"original_text": "Other party goers did not have costumes at all, and they were not smiling much.", "album_id": "72157625306347444", "photo_flickr_id": "5144009532", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "46639", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other party goers did not have costumes at all , and they were not smiling much .", "storylet_id": "233197"}], [{"original_text": "Then there were the people who tried to put on a good show and they seemed very happy.", "album_id": "72157625306347444", "photo_flickr_id": "5143403753", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "46639", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then there were the people who tried to put on a good show and they seemed very happy .", "storylet_id": "233198"}], [{"original_text": "A group of people put a lot of effort into their costumes, living up to the spirit of the Halloween party.", "album_id": "72157625306347444", "photo_flickr_id": "5143404211", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "46639", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a group of people put a lot of effort into their costumes , living up to the spirit of the halloween party .", "storylet_id": "233199"}], [{"original_text": "It's almost Christmas time.", "album_id": "72157594453329123", "photo_flickr_id": "361766171", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46640", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's almost christmas time .", "storylet_id": "233200"}], [{"original_text": "The children begin to open their presents.", "album_id": "72157594453329123", "photo_flickr_id": "358996991", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46640", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children begin to open their presents .", "storylet_id": "233201"}], [{"original_text": "They really love what they got.", "album_id": "72157594453329123", "photo_flickr_id": "341921817", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46640", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they really love what they got .", "storylet_id": "233202"}], [{"original_text": "Our son really likes his new bike.", "album_id": "72157594453329123", "photo_flickr_id": "354581401", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46640", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our son really likes his new bike .", "storylet_id": "233203"}], [{"original_text": "We had a very fun time.", "album_id": "72157594453329123", "photo_flickr_id": "347436150", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46640", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a very fun time .", "storylet_id": "233204"}], [{"original_text": "Just as football practice was finishing up today my parents told m they wanted to go and pick fruits.", "album_id": "72157594453329123", "photo_flickr_id": "363951997", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46641", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "just as football practice was finishing up today my parents told m they wanted to go and pick fruits .", "storylet_id": "233205"}], [{"original_text": "So we all got in the car and drove several hours away to a place that had fruits to pick.", "album_id": "72157594453329123", "photo_flickr_id": "353974580", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46641", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so we all got in the car and drove several hours away to a place that had fruits to pick .", "storylet_id": "233206"}], [{"original_text": "The trees there were so big we needed to use a ladder to get at the fruits.", "album_id": "72157594453329123", "photo_flickr_id": "347436150", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46641", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the trees there were so big we needed to use a ladder to get at the fruits .", "storylet_id": "233207"}], [{"original_text": "My dad was very hungry after that long drive and he ate a lot of them.", "album_id": "72157594453329123", "photo_flickr_id": "347436093", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46641", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my dad was very hungry after that long drive and he ate a lot of them .", "storylet_id": "233208"}], [{"original_text": "Afterward my parents bought me a present after the drive home.", "album_id": "72157594453329123", "photo_flickr_id": "341921817", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46641", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward my parents bought me a present after the drive home .", "storylet_id": "233209"}], [{"original_text": "Here our little guy is well dressed for Christmas church service!", "album_id": "72157594453329123", "photo_flickr_id": "361766171", "setting": "last-3-pick-old-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "46642", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here our little guy is well dressed for christmas church service !", "storylet_id": "233210"}], [{"original_text": "We had a great time opening presents as a family.", "album_id": "72157594453329123", "photo_flickr_id": "358996991", "setting": "last-3-pick-old-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "46642", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a great time opening presents as a family .", "storylet_id": "233211"}], [{"original_text": "He was ecstatic to receive this present!", "album_id": "72157594453329123", "photo_flickr_id": "341921817", "setting": "last-3-pick-old-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "46642", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was ecstatic to receive this present !", "storylet_id": "233212"}], [{"original_text": "He loved his big wheel bike!", "album_id": "72157594453329123", "photo_flickr_id": "354581401", "setting": "last-3-pick-old-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "46642", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he loved his big wheel bike !", "storylet_id": "233213"}], [{"original_text": "Our family loves spending time outdoors too.", "album_id": "72157594453329123", "photo_flickr_id": "347436150", "setting": "last-3-pick-old-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "46642", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our family loves spending time outdoors too .", "storylet_id": "233214"}], [{"original_text": "The child was raised in a very happy household.", "album_id": "72157594453329123", "photo_flickr_id": "361766171", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46643", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the child was raised in a very happy household .", "storylet_id": "233215"}], [{"original_text": "Him and his brother were given lots of toys for Christmas.", "album_id": "72157594453329123", "photo_flickr_id": "358996991", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46643", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "him and his brother were given lots of toys for christmas .", "storylet_id": "233216"}], [{"original_text": "He got a castle that always wanted.", "album_id": "72157594453329123", "photo_flickr_id": "341921817", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46643", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he got a castle that always wanted .", "storylet_id": "233217"}], [{"original_text": "The boy also got a big wheel that he would practice riding.", "album_id": "72157594453329123", "photo_flickr_id": "354581401", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46643", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boy also got a big wheel that he would practice riding .", "storylet_id": "233218"}], [{"original_text": "The boy was very happy and loved his family.", "album_id": "72157594453329123", "photo_flickr_id": "347436150", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46643", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boy was very happy and loved his family .", "storylet_id": "233219"}], [{"original_text": "Our children are growing up fast.", "album_id": "72157594453329123", "photo_flickr_id": "361766171", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46644", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our children are growing up fast .", "storylet_id": "233220"}], [{"original_text": "Looking back on these photos from the 1980's I can tell how much life has changed.", "album_id": "72157594453329123", "photo_flickr_id": "358996991", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46644", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "looking back on these photos from the 1980 's i can tell how much life has changed .", "storylet_id": "233221"}], [{"original_text": "I remember him being so excited to receive Masters of the Universe Castle.", "album_id": "72157594453329123", "photo_flickr_id": "341921817", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46644", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i remember him being so excited to receive masters of the universe castle .", "storylet_id": "233222"}], [{"original_text": "His big wheel took him everywhere.", "album_id": "72157594453329123", "photo_flickr_id": "354581401", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46644", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his big wheel took him everywhere .", "storylet_id": "233223"}], [{"original_text": "But the best memories were not surrounded by toys, but by the ones he loves.", "album_id": "72157594453329123", "photo_flickr_id": "347436150", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46644", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the best memories were not surrounded by toys , but by the ones he loves .", "storylet_id": "233224"}], [{"original_text": "A crowded city street that is close to the market.", "album_id": "72157624218075171", "photo_flickr_id": "4571937808", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46645", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a crowded city street that is close to the market .", "storylet_id": "233225"}], [{"original_text": "Shoppers picking out fruits and veggies at the market.", "album_id": "72157624218075171", "photo_flickr_id": "4857739681", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46645", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "shoppers picking out fruits and veggies at the market .", "storylet_id": "233226"}], [{"original_text": "Once everything is bought it's home to prepare dinner.", "album_id": "72157624218075171", "photo_flickr_id": "4581205004", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46645", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once everything is bought it 's home to prepare dinner .", "storylet_id": "233227"}], [{"original_text": "Another stand selling a variety of wares.", "album_id": "72157624218075171", "photo_flickr_id": "4858278940", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46645", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another stand selling a variety of wares .", "storylet_id": "233228"}], [{"original_text": "Scooter rental shop in case you don't want to walk.", "album_id": "72157624218075171", "photo_flickr_id": "4861644294", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46645", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "scooter rental shop in case you do n't want to walk .", "storylet_id": "233229"}], [{"original_text": "There's no better way then enjoying a trip around town during a summer weekend.", "album_id": "72157624218075171", "photo_flickr_id": "4571937808", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46646", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there 's no better way then enjoying a trip around town during a summer weekend .", "storylet_id": "233230"}], [{"original_text": "Not only were the markets full with so many products but most had good quality such as the fruits.", "album_id": "72157624218075171", "photo_flickr_id": "4857739681", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46646", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "not only were the markets full with so many products but most had good quality such as the fruits .", "storylet_id": "233231"}], [{"original_text": "For some reason, a lot of bikers were present,", "album_id": "72157624218075171", "photo_flickr_id": "4861644294", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46646", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "for some reason , a lot of bikers were present ,", "storylet_id": "233232"}], [{"original_text": "even on the streets", "album_id": "72157624218075171", "photo_flickr_id": "6103814127", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46646", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even on the streets", "storylet_id": "233233"}], [{"original_text": "My vehicle was beaten up, but it fits the occasion!", "album_id": "72157624218075171", "photo_flickr_id": "4582521576", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46646", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my vehicle was beaten up , but it fits the occasion !", "storylet_id": "233234"}], [{"original_text": "I visited a city in Asia that was very busy and congested.", "album_id": "72157624218075171", "photo_flickr_id": "4571937808", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46647", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i visited a city in location that was very busy and congested .", "storylet_id": "233235"}], [{"original_text": "I went to a market and enjoyed looking at all the stalls.", "album_id": "72157624218075171", "photo_flickr_id": "4857739681", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46647", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went to a market and enjoyed looking at all the stalls .", "storylet_id": "233236"}], [{"original_text": "Later, I hopped in a bicycle rickshaw pedaled by a local.", "album_id": "72157624218075171", "photo_flickr_id": "4861644294", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46647", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "later , i hopped in a bicycle rickshaw pedaled by a local .", "storylet_id": "233237"}], [{"original_text": "We went through the city streets and watched the people.", "album_id": "72157624218075171", "photo_flickr_id": "6103814127", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46647", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went through the city streets and watched the people .", "storylet_id": "233238"}], [{"original_text": "Finally, the driver allowed me to take his motorized wagon out for a spin.", "album_id": "72157624218075171", "photo_flickr_id": "4582521576", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46647", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , the driver allowed me to take his motorized wagon out for a spin .", "storylet_id": "233239"}], [{"original_text": "A year ago a family visited a Vietnamese city.", "album_id": "72157624218075171", "photo_flickr_id": "4571937808", "setting": "last-3-pick-old-and-tell", "worker_id": "YWXBD78508FY13N", "story_id": "46648", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a year ago a family visited a vietnamese city .", "storylet_id": "233240"}], [{"original_text": "The local market was filled with fruits and vegetable of the area.", "album_id": "72157624218075171", "photo_flickr_id": "4857739681", "setting": "last-3-pick-old-and-tell", "worker_id": "YWXBD78508FY13N", "story_id": "46648", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the local market was filled with fruits and vegetable of the area .", "storylet_id": "233241"}], [{"original_text": "They watched a local chef prepare food with meats and fish.", "album_id": "72157624218075171", "photo_flickr_id": "4581205004", "setting": "last-3-pick-old-and-tell", "worker_id": "YWXBD78508FY13N", "story_id": "46648", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they watched a local chef prepare food with meats and fish .", "storylet_id": "233242"}], [{"original_text": "The local fish market sold fish from the waters that surrounded the city.", "album_id": "72157624218075171", "photo_flickr_id": "4858278940", "setting": "last-3-pick-old-and-tell", "worker_id": "YWXBD78508FY13N", "story_id": "46648", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the local fish market sold fish from the waters that surrounded the city .", "storylet_id": "233243"}], [{"original_text": "At the end of the day, they rested and watched the local people relax by the side of the road.", "album_id": "72157624218075171", "photo_flickr_id": "4861644294", "setting": "last-3-pick-old-and-tell", "worker_id": "YWXBD78508FY13N", "story_id": "46648", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , they rested and watched the local people relax by the side of the road .", "storylet_id": "233244"}], [{"original_text": "The streets of Cambodia are very disorganized.", "album_id": "72157624218075171", "photo_flickr_id": "4571937808", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46649", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the streets of location are very disorganized .", "storylet_id": "233245"}], [{"original_text": "However, inside the market, were beautiful displays of fruits and people.", "album_id": "72157624218075171", "photo_flickr_id": "4857739681", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46649", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "however , inside the market , were beautiful displays of fruits and people .", "storylet_id": "233246"}], [{"original_text": "The meat market also had an interesting sight.", "album_id": "72157624218075171", "photo_flickr_id": "4581205004", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46649", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the meat market also had an interesting sight .", "storylet_id": "233247"}], [{"original_text": "Here is the fish market with a wide variety of fish.", "album_id": "72157624218075171", "photo_flickr_id": "4858278940", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46649", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is the fish market with a wide variety of fish .", "storylet_id": "233248"}], [{"original_text": "Lastly, we got to see cab drivers taking a break from their hard work.", "album_id": "72157624218075171", "photo_flickr_id": "4861644294", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46649", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , we got to see cab drivers taking a break from their hard work .", "storylet_id": "233249"}], [{"original_text": "Some people went over the top when it came to trying to be scary.", "album_id": "72157629197277031", "photo_flickr_id": "6828585179", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "46650", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some people went over the top when it came to trying to be scary .", "storylet_id": "233250"}], [{"original_text": "A few Jack-O-Lanterns were reported murdered.", "album_id": "72157629197277031", "photo_flickr_id": "6828584795", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "46650", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a few jack-o-lanterns were reported murdered .", "storylet_id": "233251"}], [{"original_text": "Some Jack-O-Lanterns are better looking than others. ", "album_id": "72157629197277031", "photo_flickr_id": "6828584731", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "46650", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some jack-o-lanterns are better looking than others .", "storylet_id": "233252"}], [{"original_text": "Halloween night even brings them out of the graves.", "album_id": "72157629197277031", "photo_flickr_id": "6828584669", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "46650", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "halloween night even brings them out of the graves .", "storylet_id": "233253"}], [{"original_text": "Strangers knocking on your door on this night are to be greeted with caution. ", "album_id": "72157629197277031", "photo_flickr_id": "6828585367", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "46650", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "strangers knocking on your door on this night are to be greeted with caution .", "storylet_id": "233254"}], [{"original_text": "The Davidsons went all out for Halloween last year.", "album_id": "72157629197277031", "photo_flickr_id": "6828584669", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "46651", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the davidsons went all out for halloween last year .", "storylet_id": "233255"}], [{"original_text": "They carved jack-o-lanterns, and some were whimsical.", "album_id": "72157629197277031", "photo_flickr_id": "6828584731", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "46651", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they carved jack-o-lanterns , and some were whimsical .", "storylet_id": "233256"}], [{"original_text": "Some of the jack-o-lanterns were downright scary.", "album_id": "72157629197277031", "photo_flickr_id": "6828584847", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "46651", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the jack-o-lanterns were downright scary .", "storylet_id": "233257"}], [{"original_text": "There was even a hearse as part of the spooky decorations.", "album_id": "72157629197277031", "photo_flickr_id": "6828584975", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "46651", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was even a hearse as part of the spooky decorations .", "storylet_id": "233258"}], [{"original_text": "Neighborhood parents and trick-or-treaters were frighteningly impressed.", "album_id": "72157629197277031", "photo_flickr_id": "6828585367", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "46651", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "neighborhood parents and trick-or-treaters were frighteningly impressed .", "storylet_id": "233259"}], [{"original_text": "We went to visit my friend last week. He loves Halloween.", "album_id": "72157629197277031", "photo_flickr_id": "6828585179", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46652", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to visit my friend last week . he loves halloween .", "storylet_id": "233260"}], [{"original_text": "He always makes the craziest jack-o-lanterns.", "album_id": "72157629197277031", "photo_flickr_id": "6828584795", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46652", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he always makes the craziest jack-o-lanterns .", "storylet_id": "233261"}], [{"original_text": "He really enjoys it.", "album_id": "72157629197277031", "photo_flickr_id": "6828584731", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46652", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he really enjoys it .", "storylet_id": "233262"}], [{"original_text": "He takes extra time to put up great decorations.", "album_id": "72157629197277031", "photo_flickr_id": "6828584669", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46652", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he takes extra time to put up great decorations .", "storylet_id": "233263"}], [{"original_text": "All of the kids love going to his house.", "album_id": "72157629197277031", "photo_flickr_id": "6828585367", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46652", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of the kids love going to his house .", "storylet_id": "233264"}], [{"original_text": "It was Halloween night, and the family decided to trick-or-treat together. Their first stop was a graveyard in their neighbor's lawn. ", "album_id": "72157629197277031", "photo_flickr_id": "6828585179", "setting": "last-3-pick-old-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "46653", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was halloween night , and the family decided to trick-or-treat together . their first stop was a graveyard in their neighbor 's lawn .", "storylet_id": "233265"}], [{"original_text": "Having made it through safely, they were greeted with an attacked pumpkin on the porch. ", "album_id": "72157629197277031", "photo_flickr_id": "6828584795", "setting": "last-3-pick-old-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "46653", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "having made it through safely , they were greeted with an attacked pumpkin on the porch .", "storylet_id": "233266"}], [{"original_text": "Not to be outdone, the next neighbor had an exaggerated face on her pumpkin - more odd than scary.", "album_id": "72157629197277031", "photo_flickr_id": "6828584731", "setting": "last-3-pick-old-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "46653", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not to be outdone , the next neighbor had an exaggerated face on her pumpkin - more odd than scary .", "storylet_id": "233267"}], [{"original_text": "The last house featured a ghoul enjoying some tombstones. The children were ready to return home.", "album_id": "72157629197277031", "photo_flickr_id": "6828584669", "setting": "last-3-pick-old-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "46653", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the last house featured a ghoul enjoying some tombstones . the children were ready to return home .", "storylet_id": "233268"}], [{"original_text": "The other relatives at home greeted the team as they returned from their scary visits. ", "album_id": "72157629197277031", "photo_flickr_id": "6828585367", "setting": "last-3-pick-old-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "46653", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the other relatives at home greeted the team as they returned from their scary visits .", "storylet_id": "233269"}], [{"original_text": "For Halloween this year we decorated the entire house in ghosts and pumpkins.", "album_id": "72157629197277031", "photo_flickr_id": "6828585179", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46654", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for halloween this year we decorated the entire house in ghosts and pumpkins .", "storylet_id": "233270"}], [{"original_text": "For this Pumpkin, we carved it out and gave it face before completing destroying to scare people.", "album_id": "72157629197277031", "photo_flickr_id": "6828584795", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46654", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "for this pumpkin , we carved it out and gave it face before completing destroying to scare people .", "storylet_id": "233271"}], [{"original_text": "We painted this pumpkin with makeup on it to make it look like a lady pumpkin.", "album_id": "72157629197277031", "photo_flickr_id": "6828584731", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46654", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we painted this pumpkin with makeup on it to make it look like a lady pumpkin .", "storylet_id": "233272"}], [{"original_text": "The trick or treat kids were terrified when they saw the skeleton body.", "album_id": "72157629197277031", "photo_flickr_id": "6828584669", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46654", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the trick or treat kids were terrified when they saw the skeleton body .", "storylet_id": "233273"}], [{"original_text": "While some people ran away from the house we did have people that made it to the front door throughout the night.", "album_id": "72157629197277031", "photo_flickr_id": "6828585367", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46654", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while some people ran away from the house we did have people that made it to the front door throughout the night .", "storylet_id": "233274"}], [{"original_text": "A view from the top taking in the sites from below.", "album_id": "152764", "photo_flickr_id": "6111588", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46655", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a view from the top taking in the sites from below .", "storylet_id": "233275"}], [{"original_text": "A church waiting for the faithful to arrive.", "album_id": "152764", "photo_flickr_id": "6111591", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46655", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a church waiting for the faithful to arrive .", "storylet_id": "233276"}], [{"original_text": "Rows and rows of pumpkins for the autumn season.", "album_id": "152764", "photo_flickr_id": "6111594", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46655", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "rows and rows of pumpkins for the autumn season .", "storylet_id": "233277"}], [{"original_text": "Touring a very large mansion while on vacation.", "album_id": "152764", "photo_flickr_id": "6111603", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46655", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "touring a very large mansion while on vacation .", "storylet_id": "233278"}], [{"original_text": "Dropping into the shops for some nick nacks.", "album_id": "152764", "photo_flickr_id": "6111610", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46655", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dropping into the shops for some nick nacks .", "storylet_id": "233279"}], [{"original_text": "The trains roared by as we waited for our ride.", "album_id": "152764", "photo_flickr_id": "6111577", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46656", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the trains roared by as we waited for our ride .", "storylet_id": "233280"}], [{"original_text": "When we arrived to the city, the weather was wonderful.", "album_id": "152764", "photo_flickr_id": "6111588", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46656", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we arrived to the city , the weather was wonderful .", "storylet_id": "233281"}], [{"original_text": "We got to visit many historical buildings.", "album_id": "152764", "photo_flickr_id": "6111586", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46656", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got to visit many historical buildings .", "storylet_id": "233282"}], [{"original_text": "We stopped at a produce stand along the way.", "album_id": "152764", "photo_flickr_id": "6111594", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46656", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped at a produce stand along the way .", "storylet_id": "233283"}], [{"original_text": "At the end of the day, we visited the shops.", "album_id": "152764", "photo_flickr_id": "6111610", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46656", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , we visited the shops .", "storylet_id": "233284"}], [{"original_text": "I rode the train in to the city one fall day.", "album_id": "152764", "photo_flickr_id": "6111577", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46657", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i rode the train in to the city one fall day .", "storylet_id": "233285"}], [{"original_text": "The town was dressed for fall, with crisp air and changing tree colors.", "album_id": "152764", "photo_flickr_id": "6111588", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46657", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the town was dressed for fall , with crisp air and changing tree colors .", "storylet_id": "233286"}], [{"original_text": "The cathedral at the heart of the town looked especially lovely in the light.", "album_id": "152764", "photo_flickr_id": "6111586", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46657", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cathedral at the heart of the town looked especially lovely in the light .", "storylet_id": "233287"}], [{"original_text": "A vendor had a bunch of pumpkins out for sale, which I admired.", "album_id": "152764", "photo_flickr_id": "6111594", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46657", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a vendor had a bunch of pumpkins out for sale , which i admired .", "storylet_id": "233288"}], [{"original_text": "I walked through the streets and admired the architecture and decorations.", "album_id": "152764", "photo_flickr_id": "6111610", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46657", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i walked through the streets and admired the architecture and decorations .", "storylet_id": "233289"}], [{"original_text": "Beautiful view of the majestic gardens. ", "album_id": "152764", "photo_flickr_id": "6111588", "setting": "last-3-pick-old-and-tell", "worker_id": "EKQ5IXKEPUMRW50", "story_id": "46658", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "beautiful view of the majestic gardens .", "storylet_id": "233290"}], [{"original_text": "Old chapel lying on the hills.", "album_id": "152764", "photo_flickr_id": "6111591", "setting": "last-3-pick-old-and-tell", "worker_id": "EKQ5IXKEPUMRW50", "story_id": "46658", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "old chapel lying on the hills .", "storylet_id": "233291"}], [{"original_text": "new pumpkins everywhere as the season begins. ", "album_id": "152764", "photo_flickr_id": "6111594", "setting": "last-3-pick-old-and-tell", "worker_id": "EKQ5IXKEPUMRW50", "story_id": "46658", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "new pumpkins everywhere as the season begins .", "storylet_id": "233292"}], [{"original_text": "old Victorian style castle is an amazing view. ", "album_id": "152764", "photo_flickr_id": "6111603", "setting": "last-3-pick-old-and-tell", "worker_id": "EKQ5IXKEPUMRW50", "story_id": "46658", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "old victorian style castle is an amazing view .", "storylet_id": "233293"}], [{"original_text": "Shop and a old with old hanging clock adds to the elegance of the area.", "album_id": "152764", "photo_flickr_id": "6111610", "setting": "last-3-pick-old-and-tell", "worker_id": "EKQ5IXKEPUMRW50", "story_id": "46658", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "shop and a old with old hanging clock adds to the elegance of the area .", "storylet_id": "233294"}], [{"original_text": "This is where everyone met up for the fall Halloween tour.", "album_id": "152764", "photo_flickr_id": "6111588", "setting": "last-3-pick-old-and-tell", "worker_id": "6HGKYWTJAEHHDNC", "story_id": "46659", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is where everyone met up for the fall halloween tour .", "storylet_id": "233295"}], [{"original_text": "Our first stop was an old church.", "album_id": "152764", "photo_flickr_id": "6111591", "setting": "last-3-pick-old-and-tell", "worker_id": "6HGKYWTJAEHHDNC", "story_id": "46659", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our first stop was an old church .", "storylet_id": "233296"}], [{"original_text": "Next, we got to buy our own pumpkins to carve.", "album_id": "152764", "photo_flickr_id": "6111594", "setting": "last-3-pick-old-and-tell", "worker_id": "6HGKYWTJAEHHDNC", "story_id": "46659", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next , we got to buy our own pumpkins to carve .", "storylet_id": "233297"}], [{"original_text": "Our last stop was the giant mansion. We didn't see a ghost, but maybe next time.", "album_id": "152764", "photo_flickr_id": "6111603", "setting": "last-3-pick-old-and-tell", "worker_id": "6HGKYWTJAEHHDNC", "story_id": "46659", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our last stop was the giant mansion . we did n't see a ghost , but maybe next time .", "storylet_id": "233298"}], [{"original_text": "After the tour, we went out for coffee.", "album_id": "152764", "photo_flickr_id": "6111610", "setting": "last-3-pick-old-and-tell", "worker_id": "6HGKYWTJAEHHDNC", "story_id": "46659", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the tour , we went out for coffee .", "storylet_id": "233299"}], [{"original_text": "Mike the Mermaid commands his minions from his throne.", "album_id": "72157624907734984", "photo_flickr_id": "4970832764", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "46660", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] the mermaid commands his minions from his throne .", "storylet_id": "233300"}], [{"original_text": "Among them are big evil cat face man.", "album_id": "72157624907734984", "photo_flickr_id": "4970840494", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "46660", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "among them are big evil cat face man .", "storylet_id": "233301"}], [{"original_text": "Finger that thinks people are braille, and subsequently crushes them.", "album_id": "72157624907734984", "photo_flickr_id": "4970847284", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "46660", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finger that thinks people are braille , and subsequently crushes them .", "storylet_id": "233302"}], [{"original_text": "And creepy naked monkey cat thingy.", "album_id": "72157624907734984", "photo_flickr_id": "4970846212", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "46660", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and creepy naked monkey cat thingy .", "storylet_id": "233303"}], [{"original_text": "For transport, they all share a scooter. The snowglobe decides who gets to use it.", "album_id": "72157624907734984", "photo_flickr_id": "4970227495", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "46660", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for transport , they all share a scooter . the snowglobe decides who gets to use it .", "storylet_id": "233304"}], [{"original_text": "Anna and Todd were stranded in the rain", "album_id": "72157624907734984", "photo_flickr_id": "4970833228", "setting": "first-2-pick-and-tell", "worker_id": "01FF4R6PC2W5QVJ", "story_id": "46661", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [male] were stranded in the rain", "storylet_id": "233305"}], [{"original_text": "They were able to get bikes to travel.", "album_id": "72157624907734984", "photo_flickr_id": "4970838382", "setting": "first-2-pick-and-tell", "worker_id": "01FF4R6PC2W5QVJ", "story_id": "46661", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were able to get bikes to travel .", "storylet_id": "233306"}], [{"original_text": "They took the bikes and traded it in for a vespa, and continued to travel around the world. ", "album_id": "72157624907734984", "photo_flickr_id": "4970227495", "setting": "first-2-pick-and-tell", "worker_id": "01FF4R6PC2W5QVJ", "story_id": "46661", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they took the bikes and traded it in for a vespa , and continued to travel around the world .", "storylet_id": "233307"}], [{"original_text": "On their downtime they liked to do puzzles.", "album_id": "72157624907734984", "photo_flickr_id": "4970227869", "setting": "first-2-pick-and-tell", "worker_id": "01FF4R6PC2W5QVJ", "story_id": "46661", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on their downtime they liked to do puzzles .", "storylet_id": "233308"}], [{"original_text": "At the end of the trip Tony left Anna for another woman.", "album_id": "72157624907734984", "photo_flickr_id": "4970228131", "setting": "first-2-pick-and-tell", "worker_id": "01FF4R6PC2W5QVJ", "story_id": "46661", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the trip [male] left [female] for another woman .", "storylet_id": "233309"}], [{"original_text": "A mermaid was stranded on the beach and began to take a nap.", "album_id": "72157624907734984", "photo_flickr_id": "4970832764", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "46662", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a mermaid was stranded on the beach and began to take a nap .", "storylet_id": "233310"}], [{"original_text": "He dreamed that a giant, evil cat was going to come and get him.", "album_id": "72157624907734984", "photo_flickr_id": "4970840494", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "46662", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he dreamed that a giant , evil cat was going to come and get him .", "storylet_id": "233311"}], [{"original_text": "The girl in the dream read braille in order to call for the monkey to save them. ", "album_id": "72157624907734984", "photo_flickr_id": "4970847284", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "46662", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girl in the dream read braille in order to call for the monkey to save them .", "storylet_id": "233312"}], [{"original_text": "The monkey came to help him.", "album_id": "72157624907734984", "photo_flickr_id": "4970846212", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "46662", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the monkey came to help him .", "storylet_id": "233313"}], [{"original_text": "The monkey gave the girl a scooter so she could escape the cat.", "album_id": "72157624907734984", "photo_flickr_id": "4970227495", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "46662", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the monkey gave the girl a scooter so she could escape the cat .", "storylet_id": "233314"}], [{"original_text": "In the countryside, the torrential rain made travel difficult.", "album_id": "72157624907734984", "photo_flickr_id": "4970833228", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46663", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the countryside , the torrential rain made travel difficult .", "storylet_id": "233315"}], [{"original_text": "In the city, everyone complained about the crowded streets.", "album_id": "72157624907734984", "photo_flickr_id": "4970838382", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46663", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in the city , everyone complained about the crowded streets .", "storylet_id": "233316"}], [{"original_text": "The fortune teller told her clients that they needed to taste the open road and get away.", "album_id": "72157624907734984", "photo_flickr_id": "4970227495", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46663", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fortune teller told her clients that they needed to taste the open road and get away .", "storylet_id": "233317"}], [{"original_text": "Everyone was dissatisfied with their life but was puzzled as to how to improve it", "album_id": "72157624907734984", "photo_flickr_id": "4970227869", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46663", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was dissatisfied with their life but was puzzled as to how to improve it", "storylet_id": "233318"}], [{"original_text": "Running away seamed like the only answer.", "album_id": "72157624907734984", "photo_flickr_id": "4970228131", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46663", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "running away seamed like the only answer .", "storylet_id": "233319"}], [{"original_text": "Gina and Mike had to travel through the rain.", "album_id": "72157624907734984", "photo_flickr_id": "4970833228", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46664", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [male] had to travel through the rain .", "storylet_id": "233320"}], [{"original_text": "After a long journey, they asked a man for directions to the bike store.", "album_id": "72157624907734984", "photo_flickr_id": "4970838382", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46664", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after a long journey , they asked a man for directions to the bike store .", "storylet_id": "233321"}], [{"original_text": "Along the way, we took a photo of a nice bike.", "album_id": "72157624907734984", "photo_flickr_id": "4970227495", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46664", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "along the way , we took a photo of a nice bike .", "storylet_id": "233322"}], [{"original_text": "The journey seemed to be a puzzle because we kept getting lost.", "album_id": "72157624907734984", "photo_flickr_id": "4970227869", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46664", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the journey seemed to be a puzzle because we kept getting lost .", "storylet_id": "233323"}], [{"original_text": "However, through the struggle and rain, we found the perfect bike to buy.", "album_id": "72157624907734984", "photo_flickr_id": "4970228131", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46664", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , through the struggle and rain , we found the perfect bike to buy .", "storylet_id": "233324"}], [{"original_text": "Last night was a lot of fun. I hung out with a bunch of my friends at a house party.", "album_id": "72157594470524497", "photo_flickr_id": "352300956", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46665", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night was a lot of fun . i hung out with a bunch of my friends at a house party .", "storylet_id": "233325"}], [{"original_text": "There were a lot of people there.", "album_id": "72157594470524497", "photo_flickr_id": "352300651", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46665", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people there .", "storylet_id": "233326"}], [{"original_text": "Some of them were just watching T.V. in the living room.", "album_id": "72157594470524497", "photo_flickr_id": "352300910", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46665", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them were just watching t.v . in the living room .", "storylet_id": "233327"}], [{"original_text": "There were also a lot of people outside on the porch.", "album_id": "72157594470524497", "photo_flickr_id": "352301153", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46665", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also a lot of people outside on the porch .", "storylet_id": "233328"}], [{"original_text": "There were some other people playing around in the bedroom.", "album_id": "72157594470524497", "photo_flickr_id": "352301277", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46665", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were some other people playing around in the bedroom .", "storylet_id": "233329"}], [{"original_text": "Parties at Jeff's place are always a blast.", "album_id": "72157594470524497", "photo_flickr_id": "352300651", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "46666", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "parties at [male] 's place are always a blast .", "storylet_id": "233330"}], [{"original_text": "The guys are always down to party.", "album_id": "72157594470524497", "photo_flickr_id": "352300956", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "46666", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guys are always down to party .", "storylet_id": "233331"}], [{"original_text": "But you better keep Ben away from the cake.", "album_id": "72157594470524497", "photo_flickr_id": "352301054", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "46666", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but you better keep [male] away from the cake .", "storylet_id": "233332"}], [{"original_text": "The girls are proven party animals themselves.", "album_id": "72157594470524497", "photo_flickr_id": "352301240", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "46666", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the girls are proven party animals themselves .", "storylet_id": "233333"}], [{"original_text": "Beth may or may not have had an adult beverage with her Teddy Grahams that night.", "album_id": "72157594470524497", "photo_flickr_id": "352301412", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "46666", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] may or may not have had an adult beverage with her [male] grahams that night .", "storylet_id": "233334"}], [{"original_text": "A bunch of friends gathered for a party.", "album_id": "72157594470524497", "photo_flickr_id": "352300956", "setting": "last-3-pick-old-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "46667", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a bunch of friends gathered for a party .", "storylet_id": "233335"}], [{"original_text": "They danced barefoot in the kitchen.", "album_id": "72157594470524497", "photo_flickr_id": "352300651", "setting": "last-3-pick-old-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "46667", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they danced barefoot in the kitchen .", "storylet_id": "233336"}], [{"original_text": "Then they sat on the sofa and talked.", "album_id": "72157594470524497", "photo_flickr_id": "352300910", "setting": "last-3-pick-old-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "46667", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they sat on the sofa and talked .", "storylet_id": "233337"}], [{"original_text": "Afterwards they gathered on the back porch and had fun.", "album_id": "72157594470524497", "photo_flickr_id": "352301153", "setting": "last-3-pick-old-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "46667", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards they gathered on the back porch and had fun .", "storylet_id": "233338"}], [{"original_text": "Finally, they wrestled around on the floor.", "album_id": "72157594470524497", "photo_flickr_id": "352301277", "setting": "last-3-pick-old-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "46667", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , they wrestled around on the floor .", "storylet_id": "233339"}], [{"original_text": "All the guys at the start of a fun night", "album_id": "72157594470524497", "photo_flickr_id": "352300956", "setting": "last-3-pick-old-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "46668", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all the guys at the start of a fun night", "storylet_id": "233340"}], [{"original_text": "Getting a little dancing on after some drinks", "album_id": "72157594470524497", "photo_flickr_id": "352300651", "setting": "last-3-pick-old-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "46668", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "getting a little dancing on after some drinks", "storylet_id": "233341"}], [{"original_text": "They were stuck inside doing homework", "album_id": "72157594470524497", "photo_flickr_id": "352300910", "setting": "last-3-pick-old-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "46668", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were stuck inside doing homework", "storylet_id": "233342"}], [{"original_text": "We were outside enjoying the perfect spring weather", "album_id": "72157594470524497", "photo_flickr_id": "352301153", "setting": "last-3-pick-old-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "46668", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were outside enjoying the perfect spring weather", "storylet_id": "233343"}], [{"original_text": "Things got a little weird", "album_id": "72157594470524497", "photo_flickr_id": "352301277", "setting": "last-3-pick-old-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "46668", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "things got a little weird", "storylet_id": "233344"}], [{"original_text": "We had some friends over for a graduation party.", "album_id": "72157594470524497", "photo_flickr_id": "352300956", "setting": "last-3-pick-old-and-tell", "worker_id": "ZQXGDNGR3ED0NSX", "story_id": "46669", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had some friends over for a graduation party .", "storylet_id": "233345"}], [{"original_text": "Everyone had a lot of fun and we drank a little bit more than the usual.", "album_id": "72157594470524497", "photo_flickr_id": "352300651", "setting": "last-3-pick-old-and-tell", "worker_id": "ZQXGDNGR3ED0NSX", "story_id": "46669", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone had a lot of fun and we drank a little bit more than the usual .", "storylet_id": "233346"}], [{"original_text": "Good thing one us found a box of old donuts, since no one brought any food over.", "album_id": "72157594470524497", "photo_flickr_id": "352300910", "setting": "last-3-pick-old-and-tell", "worker_id": "ZQXGDNGR3ED0NSX", "story_id": "46669", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "good thing one us found a box of old donuts , since no one brought any food over .", "storylet_id": "233347"}], [{"original_text": "The weather was very nice, so we spent most of the time on the porch.", "album_id": "72157594470524497", "photo_flickr_id": "352301153", "setting": "last-3-pick-old-and-tell", "worker_id": "ZQXGDNGR3ED0NSX", "story_id": "46669", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the weather was very nice , so we spent most of the time on the porch .", "storylet_id": "233348"}], [{"original_text": "Some pictures will definitely remain a secret only to the one attending the party.", "album_id": "72157594470524497", "photo_flickr_id": "352301277", "setting": "last-3-pick-old-and-tell", "worker_id": "ZQXGDNGR3ED0NSX", "story_id": "46669", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some pictures will definitely remain a secret only to the one attending the party .", "storylet_id": "233349"}], [{"original_text": "Halloween night. Out with friends.", "album_id": "167476", "photo_flickr_id": "6711181", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46670", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "halloween night . out with friends .", "storylet_id": "233350"}], [{"original_text": "Downtown is crowded.", "album_id": "167476", "photo_flickr_id": "6711251", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46670", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "downtown is crowded .", "storylet_id": "233351"}], [{"original_text": "Rubbing shoulders with everyone.", "album_id": "167476", "photo_flickr_id": "6711265", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46670", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "rubbing shoulders with everyone .", "storylet_id": "233352"}], [{"original_text": "Met this great couple.", "album_id": "167476", "photo_flickr_id": "6711274", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46670", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "met this great couple .", "storylet_id": "233353"}], [{"original_text": "They're getting a little bit too friendly.", "album_id": "167476", "photo_flickr_id": "6711280", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46670", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they 're getting a little bit too friendly .", "storylet_id": "233354"}], [{"original_text": "These friends were some kind of evil demons and demons.", "album_id": "167476", "photo_flickr_id": "6711181", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "46671", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these friends were some kind of evil demons and demons .", "storylet_id": "233355"}], [{"original_text": "This lady did a great Medusa.", "album_id": "167476", "photo_flickr_id": "6711245", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "46671", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this lady did a great medusa .", "storylet_id": "233356"}], [{"original_text": "The Halloween party was on, and there were lots of costumes to see.", "album_id": "167476", "photo_flickr_id": "6711265", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "46671", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the halloween party was on , and there were lots of costumes to see .", "storylet_id": "233357"}], [{"original_text": "This guy found an interesting way to proposition women.", "album_id": "167476", "photo_flickr_id": "6711280", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "46671", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this guy found an interesting way to proposition women .", "storylet_id": "233358"}], [{"original_text": "But in the end, no one could compete with this perfect terminator.", "album_id": "167476", "photo_flickr_id": "6711219", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "46671", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but in the end , no one could compete with this perfect terminator .", "storylet_id": "233359"}], [{"original_text": "We were ready for a night of partying out of the town.", "album_id": "167476", "photo_flickr_id": "6711181", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46672", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were ready for a night of partying out of the town .", "storylet_id": "233360"}], [{"original_text": "Apparently, so was the rest of the city! It was a huge turnout!", "album_id": "167476", "photo_flickr_id": "6711251", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46672", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "apparently , so was the rest of the city ! it was a huge turnout !", "storylet_id": "233361"}], [{"original_text": "We couldn't all fit inside, so we just partied on the street.", "album_id": "167476", "photo_flickr_id": "6711265", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46672", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we could n't all fit inside , so we just partied on the street .", "storylet_id": "233362"}], [{"original_text": "We saw some pretty disturbing costumes.", "album_id": "167476", "photo_flickr_id": "6711274", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46672", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw some pretty disturbing costumes .", "storylet_id": "233363"}], [{"original_text": "But everyone was obviously having a good time, and that is what we were that for!", "album_id": "167476", "photo_flickr_id": "6711280", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46672", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but everyone was obviously having a good time , and that is what we were that for !", "storylet_id": "233364"}], [{"original_text": "Group photo of us at a Halloween festival!", "album_id": "167476", "photo_flickr_id": "6711181", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "46673", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "group photo of us at a halloween festival !", "storylet_id": "233365"}], [{"original_text": "It was crazy packed that night.", "album_id": "167476", "photo_flickr_id": "6711251", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "46673", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was crazy packed that night .", "storylet_id": "233366"}], [{"original_text": "The city streets were full of costumed drunks!", "album_id": "167476", "photo_flickr_id": "6711265", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "46673", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the city streets were full of costumed drunks !", "storylet_id": "233367"}], [{"original_text": "Here is Dan looking for affection...", "album_id": "167476", "photo_flickr_id": "6711274", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "46673", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is [male] looking for affection ...", "storylet_id": "233368"}], [{"original_text": "And he gets his wish!", "album_id": "167476", "photo_flickr_id": "6711280", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "46673", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and he gets his wish !", "storylet_id": "233369"}], [{"original_text": "My friends and I all dressed for a party!", "album_id": "167476", "photo_flickr_id": "6711181", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46674", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i all dressed for a party !", "storylet_id": "233370"}], [{"original_text": "These people stretch on for miles!", "album_id": "167476", "photo_flickr_id": "6711251", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46674", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these people stretch on for miles !", "storylet_id": "233371"}], [{"original_text": "Such an exciting night everyone is having fun!", "album_id": "167476", "photo_flickr_id": "6711265", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46674", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "such an exciting night everyone is having fun !", "storylet_id": "233372"}], [{"original_text": "Look at these crazy characters!", "album_id": "167476", "photo_flickr_id": "6711274", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46674", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look at these crazy characters !", "storylet_id": "233373"}], [{"original_text": "These guys were my favorite, they were so weird!", "album_id": "167476", "photo_flickr_id": "6711280", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46674", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these guys were my favorite , they were so weird !", "storylet_id": "233374"}], [{"original_text": "I got to pick out my first pumpkin to carve, today!", "album_id": "72157625179918732", "photo_flickr_id": "5088133887", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "46675", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got to pick out my first pumpkin to carve , today !", "storylet_id": "233375"}], [{"original_text": "My sister and brother were there, too.", "album_id": "72157625179918732", "photo_flickr_id": "5088706570", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "46675", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my sister and brother were there , too .", "storylet_id": "233376"}], [{"original_text": "I really think my sister got the biggest one out of all of us!", "album_id": "72157625179918732", "photo_flickr_id": "5088121045", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "46675", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i really think my sister got the biggest one out of all of us !", "storylet_id": "233377"}], [{"original_text": "My brother insists his is the best, though.", "album_id": "72157625179918732", "photo_flickr_id": "5088122887", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "46675", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my brother insists his is the best , though .", "storylet_id": "233378"}], [{"original_text": "I'm just happy that I had fun today, and I want to do it again, sometime!", "album_id": "72157625179918732", "photo_flickr_id": "5088734170", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "46675", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm just happy that i had fun today , and i want to do it again , sometime !", "storylet_id": "233379"}], [{"original_text": "It's been two weeks since the pumpkins first appeared, the kids don't seem to know any better.", "album_id": "72157625179918732", "photo_flickr_id": "5088706570", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46676", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's been two weeks since the pumpkins first appeared , the kids do n't seem to know any better .", "storylet_id": "233380"}], [{"original_text": "These pumpkins have murdered over 40 people nation wide, it's good that the kids don't know we're being held hostage.", "album_id": "72157625179918732", "photo_flickr_id": "5088712882", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46676", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these pumpkins have murdered over 40 people nation wide , it 's good that the kids do n't know we 're being held hostage .", "storylet_id": "233381"}], [{"original_text": "This pumpkin could snap at any second and cut off my daughters head, I almost vomited after this picture.", "album_id": "72157625179918732", "photo_flickr_id": "5088722214", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46676", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this pumpkin could snap at any second and cut off my daughters head , i almost vomited after this picture .", "storylet_id": "233382"}], [{"original_text": "Look how happy he is, he doesn't know the damage this pumpkin has caused.", "album_id": "72157625179918732", "photo_flickr_id": "5088724566", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46676", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look how happy he is , he does n't know the damage this pumpkin has caused .", "storylet_id": "233383"}], [{"original_text": "It's like the pumpkins are mocking me, they know how much these pictures hurt my soul.", "album_id": "72157625179918732", "photo_flickr_id": "5088141697", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "46676", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's like the pumpkins are mocking me , they know how much these pictures hurt my soul .", "storylet_id": "233384"}], [{"original_text": "The family went to a pumpkin patch.", "album_id": "72157625179918732", "photo_flickr_id": "5088133887", "setting": "last-3-pick-old-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46677", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went to a pumpkin patch .", "storylet_id": "233385"}], [{"original_text": "They had tons of fun with pumpkins.", "album_id": "72157625179918732", "photo_flickr_id": "5088706570", "setting": "last-3-pick-old-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46677", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had tons of fun with pumpkins .", "storylet_id": "233386"}], [{"original_text": "They loved how big and round they were.", "album_id": "72157625179918732", "photo_flickr_id": "5088121045", "setting": "last-3-pick-old-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46677", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they loved how big and round they were .", "storylet_id": "233387"}], [{"original_text": "Even the youngest got in on the fun.", "album_id": "72157625179918732", "photo_flickr_id": "5088122887", "setting": "last-3-pick-old-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46677", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the youngest got in on the fun .", "storylet_id": "233388"}], [{"original_text": "They loved their time at the patch.", "album_id": "72157625179918732", "photo_flickr_id": "5088734170", "setting": "last-3-pick-old-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "46677", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they loved their time at the patch .", "storylet_id": "233389"}], [{"original_text": "The whole family went out to the pumpkin patch together.", "album_id": "72157625179918732", "photo_flickr_id": "5088133887", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46678", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family went out to the pumpkin patch together .", "storylet_id": "233390"}], [{"original_text": "The brother and sister chose one pumpkin each.", "album_id": "72157625179918732", "photo_flickr_id": "5088706570", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46678", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the brother and sister chose one pumpkin each .", "storylet_id": "233391"}], [{"original_text": "The sister was so happy with hers!", "album_id": "72157625179918732", "photo_flickr_id": "5088121045", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46678", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sister was so happy with hers !", "storylet_id": "233392"}], [{"original_text": "The brother also loved his pumpkin.", "album_id": "72157625179918732", "photo_flickr_id": "5088122887", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46678", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the brother also loved his pumpkin .", "storylet_id": "233393"}], [{"original_text": "The other sister was happiest of all, though, because she got four pumpkins.", "album_id": "72157625179918732", "photo_flickr_id": "5088734170", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46678", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the other sister was happiest of all , though , because she got four pumpkins .", "storylet_id": "233394"}], [{"original_text": "Halloween is her favorite holiday. ", "album_id": "72157625179918732", "photo_flickr_id": "5088133887", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "46679", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "halloween is her favorite holiday .", "storylet_id": "233395"}], [{"original_text": "This boy and girl picked the pumpkins they wanted to carve. ", "album_id": "72157625179918732", "photo_flickr_id": "5088706570", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "46679", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this boy and girl picked the pumpkins they wanted to carve .", "storylet_id": "233396"}], [{"original_text": "She said she is going to carve a princess on her pumpkin. ", "album_id": "72157625179918732", "photo_flickr_id": "5088121045", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "46679", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she said she is going to carve a princess on her pumpkin .", "storylet_id": "233397"}], [{"original_text": "He wants to carve Batman on his pumpkin. ", "album_id": "72157625179918732", "photo_flickr_id": "5088122887", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "46679", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he wants to carve batman on his pumpkin .", "storylet_id": "233398"}], [{"original_text": "She can't decide which pumpkin she wants to take home. \"Can I take them all\"", "album_id": "72157625179918732", "photo_flickr_id": "5088734170", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "46679", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she ca n't decide which pumpkin she wants to take home . `` can i take them all ''", "storylet_id": "233399"}], [{"original_text": "Went to Fangoria over the weekend.", "album_id": "72157623999649361", "photo_flickr_id": "4634730580", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46680", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went to location over the weekend .", "storylet_id": "233400"}], [{"original_text": "Met actress Lia Michael.", "album_id": "72157623999649361", "photo_flickr_id": "4634738318", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46680", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "met actress [female] [male] .", "storylet_id": "233401"}], [{"original_text": "Met the Freddy Krueger guy.", "album_id": "72157623999649361", "photo_flickr_id": "4634744278", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46680", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "met the [male] krueger guy .", "storylet_id": "233402"}], [{"original_text": "My buddy's costume.", "album_id": "72157623999649361", "photo_flickr_id": "4634150669", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46680", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my buddy 's costume .", "storylet_id": "233403"}], [{"original_text": "Best costume of the convention.", "album_id": "72157623999649361", "photo_flickr_id": "4634153005", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "46680", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "best costume of the convention .", "storylet_id": "233404"}], [{"original_text": "Invitation to the Fangoria event.", "album_id": "72157623999649361", "photo_flickr_id": "4634730580", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46681", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "invitation to the fangoria event .", "storylet_id": "233405"}], [{"original_text": "A couple dressed for the Fangoria party.", "album_id": "72157623999649361", "photo_flickr_id": "4634754824", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46681", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a couple dressed for the fangoria party .", "storylet_id": "233406"}], [{"original_text": "A girl sings at the party for entertainment.", "album_id": "72157623999649361", "photo_flickr_id": "4634738318", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46681", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a girl sings at the party for entertainment .", "storylet_id": "233407"}], [{"original_text": "Gentleman sings a the party to entertain the party goers.", "album_id": "72157623999649361", "photo_flickr_id": "4634741676", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46681", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "gentleman sings a the party to entertain the party goers .", "storylet_id": "233408"}], [{"original_text": "Someone had a bit of a problem while getting to the party hence the bloody outfit.", "album_id": "72157623999649361", "photo_flickr_id": "4634153005", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46681", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someone had a bit of a problem while getting to the party hence the bloody outfit .", "storylet_id": "233409"}], [{"original_text": "We went to the Fangoria Halloween conference.", "album_id": "72157623999649361", "photo_flickr_id": "4634730580", "setting": "last-3-pick-old-and-tell", "worker_id": "5G87VFMZI5VTQZN", "story_id": "46682", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the fangoria halloween conference .", "storylet_id": "233410"}], [{"original_text": "First, this lady spoke about costumes.", "album_id": "72157623999649361", "photo_flickr_id": "4634738318", "setting": "last-3-pick-old-and-tell", "worker_id": "5G87VFMZI5VTQZN", "story_id": "46682", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first , this lady spoke about costumes .", "storylet_id": "233411"}], [{"original_text": "Then, this guy spoke about makeup and wigs to complete the ensemble.", "album_id": "72157623999649361", "photo_flickr_id": "4634744278", "setting": "last-3-pick-old-and-tell", "worker_id": "5G87VFMZI5VTQZN", "story_id": "46682", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then , this guy spoke about makeup and wigs to complete the ensemble .", "storylet_id": "233412"}], [{"original_text": "Then we got to walk around and see examples of how costumes and makeup can be combined to create a scary effect.", "album_id": "72157623999649361", "photo_flickr_id": "4634150669", "setting": "last-3-pick-old-and-tell", "worker_id": "5G87VFMZI5VTQZN", "story_id": "46682", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we got to walk around and see examples of how costumes and makeup can be combined to create a scary effect .", "storylet_id": "233413"}], [{"original_text": "Here's one of our favorites.", "album_id": "72157623999649361", "photo_flickr_id": "4634153005", "setting": "last-3-pick-old-and-tell", "worker_id": "5G87VFMZI5VTQZN", "story_id": "46682", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's one of our favorites .", "storylet_id": "233414"}], [{"original_text": "fans were there to meet some of the creepiest horror actors of all time", "album_id": "72157623999649361", "photo_flickr_id": "4634730580", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46683", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "fans were there to meet some of the creepiest horror actors of all time", "storylet_id": "233415"}], [{"original_text": "they asked the hard questions to the cast", "album_id": "72157623999649361", "photo_flickr_id": "4634738318", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46683", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they asked the hard questions to the cast", "storylet_id": "233416"}], [{"original_text": "even freddy got in on the action", "album_id": "72157623999649361", "photo_flickr_id": "4634744278", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46683", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even freddy got in on the action", "storylet_id": "233417"}], [{"original_text": "this guy was dressed as a scary monster", "album_id": "72157623999649361", "photo_flickr_id": "4634150669", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46683", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this guy was dressed as a scary monster", "storylet_id": "233418"}], [{"original_text": "and here this guy was about to cut someone to pieces ", "album_id": "72157623999649361", "photo_flickr_id": "4634153005", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46683", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and here this guy was about to cut someone to pieces", "storylet_id": "233419"}], [{"original_text": "We went to the Halloween convention and saw this beauty.", "album_id": "72157623999649361", "photo_flickr_id": "4634730580", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46684", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the halloween convention and saw this beauty .", "storylet_id": "233420"}], [{"original_text": "This lady speaker took the time out of her work to speak about the festivities of Halloween.", "album_id": "72157623999649361", "photo_flickr_id": "4634738318", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46684", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this lady speaker took the time out of her work to speak about the festivities of halloween .", "storylet_id": "233421"}], [{"original_text": "This speaker gave a heartfelt story about the fantastic times he had on Halloween.", "album_id": "72157623999649361", "photo_flickr_id": "4634744278", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46684", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this speaker gave a heartfelt story about the fantastic times he had on halloween .", "storylet_id": "233422"}], [{"original_text": "There were dedicated cosplayers at the convention.", "album_id": "72157623999649361", "photo_flickr_id": "4634150669", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46684", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were dedicated cosplayers at the convention .", "storylet_id": "233423"}], [{"original_text": "There never seemed to be enough of cosplayers at the convention.", "album_id": "72157623999649361", "photo_flickr_id": "4634153005", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46684", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there never seemed to be enough of cosplayers at the convention .", "storylet_id": "233424"}], [{"original_text": "My friends and I had an awesome Halloween party!", "album_id": "72157625230652462", "photo_flickr_id": "5110135237", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "46685", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i had an awesome halloween party !", "storylet_id": "233425"}], [{"original_text": "We had so many snacks and appetizers, the assortment was endless.", "album_id": "72157625230652462", "photo_flickr_id": "5110139643", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "46685", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had so many snacks and appetizers , the assortment was endless .", "storylet_id": "233426"}], [{"original_text": "We even had cake pops that looked like eyeballs!", "album_id": "72157625230652462", "photo_flickr_id": "5110141321", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "46685", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even had cake pops that looked like eyeballs !", "storylet_id": "233427"}], [{"original_text": "And look at this scary dip bowl!", "album_id": "72157625230652462", "photo_flickr_id": "5110138271", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "46685", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and look at this scary dip bowl !", "storylet_id": "233428"}], [{"original_text": "Everybody had a blast.", "album_id": "72157625230652462", "photo_flickr_id": "5110136045", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "46685", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everybody had a blast .", "storylet_id": "233429"}], [{"original_text": "The eyeballs were cooked just right; not too rubbery, but not too squishy, either.", "album_id": "72157625230652462", "photo_flickr_id": "5110141321", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "46686", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the eyeballs were cooked just right ; not too rubbery , but not too squishy , either .", "storylet_id": "233430"}], [{"original_text": "The flocked priest warded off the shepherdess zombie with a holy sign and his rather strong body stench. It was enough to turn off the undead. ", "album_id": "72157625230652462", "photo_flickr_id": "5110736628", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "46686", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flocked priest warded off the shepherdess zombie with a holy sign and his rather strong body stench . it was enough to turn off the undead .", "storylet_id": "233431"}], [{"original_text": "An innocuous gourd, set among other delicious entrees, contained the remains of a Microsoft's intern's brain. Someone had thoughtfully left a clean spoon to scoop it with. ", "album_id": "72157625230652462", "photo_flickr_id": "5110139643", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "46686", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "an innocuous gourd , set among other delicious entrees , contained the remains of a organization 's intern 's brain . someone had thoughtfully left a clean spoon to scoop it with .", "storylet_id": "233432"}], [{"original_text": "The zombie shepherdess was impressed by the shocking gesutre from David Lee Roth. Fish man, however, was not. ", "album_id": "72157625230652462", "photo_flickr_id": "5110135237", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "46686", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the zombie shepherdess was impressed by the shocking gesutre from [male] [male] roth . fish man , however , was not .", "storylet_id": "233433"}], [{"original_text": "Plain Jane, the barkeep, enjoyed the show, and would keep smiling, until they later burnt her at the stake, mistaking her for a witch.", "album_id": "72157625230652462", "photo_flickr_id": "5110133803", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "46686", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "plain [female] , the barkeep , enjoyed the show , and would keep smiling , until they later burnt her at the stake , mistaking her for a witch .", "storylet_id": "233434"}], [{"original_text": "It was a Halloween party. ", "album_id": "72157625230652462", "photo_flickr_id": "5110135237", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "46687", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a halloween party .", "storylet_id": "233435"}], [{"original_text": "Check out our finger food and treats. ", "album_id": "72157625230652462", "photo_flickr_id": "5110139643", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "46687", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "check out our finger food and treats .", "storylet_id": "233436"}], [{"original_text": "Vanilla tasting eyeballs. ", "album_id": "72157625230652462", "photo_flickr_id": "5110141321", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "46687", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "vanilla tasting eyeballs .", "storylet_id": "233437"}], [{"original_text": "Scary head in the bowl of tortillas. ", "album_id": "72157625230652462", "photo_flickr_id": "5110138271", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "46687", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "scary head in the bowl of tortillas .", "storylet_id": "233438"}], [{"original_text": "A hug for the devil. ", "album_id": "72157625230652462", "photo_flickr_id": "5110136045", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "46687", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a hug for the devil .", "storylet_id": "233439"}], [{"original_text": "What are you dressed up as for Halloween he asked?", "album_id": "72157625230652462", "photo_flickr_id": "5110135237", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "46688", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what are you dressed up as for halloween he asked ?", "storylet_id": "233440"}], [{"original_text": "They had pumpkin soup before Halloween night. ", "album_id": "72157625230652462", "photo_flickr_id": "5110139643", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "46688", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had pumpkin soup before halloween night .", "storylet_id": "233441"}], [{"original_text": "Does anyone one want some \"eyeball\" cookies? ", "album_id": "72157625230652462", "photo_flickr_id": "5110141321", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "46688", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "does anyone one want some `` eyeball '' cookies ?", "storylet_id": "233442"}], [{"original_text": "A scary head was in the chip bowl. ", "album_id": "72157625230652462", "photo_flickr_id": "5110138271", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "46688", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a scary head was in the chip bowl .", "storylet_id": "233443"}], [{"original_text": "The couple had a great time at the Halloween party. Now it is time for them to go out. ", "album_id": "72157625230652462", "photo_flickr_id": "5110136045", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "46688", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the couple had a great time at the halloween party . now it is time for them to go out .", "storylet_id": "233444"}], [{"original_text": "Friends having fun at the halloween party. ", "album_id": "72157625230652462", "photo_flickr_id": "5110135237", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46689", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends having fun at the halloween party .", "storylet_id": "233445"}], [{"original_text": "Table full of appetizers. ", "album_id": "72157625230652462", "photo_flickr_id": "5110139643", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46689", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "table full of appetizers .", "storylet_id": "233446"}], [{"original_text": "Eating eyes for desert. ", "album_id": "72157625230652462", "photo_flickr_id": "5110141321", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46689", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "eating eyes for desert .", "storylet_id": "233447"}], [{"original_text": "Chips and bloody brain dip made of salsa. ", "album_id": "72157625230652462", "photo_flickr_id": "5110138271", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46689", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "chips and bloody brain dip made of salsa .", "storylet_id": "233448"}], [{"original_text": "Boyfriend and girlfriend having fun.", "album_id": "72157625230652462", "photo_flickr_id": "5110136045", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46689", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "boyfriend and girlfriend having fun .", "storylet_id": "233449"}], [{"original_text": "This little doll was feeling very sad.", "album_id": "72157625231799556", "photo_flickr_id": "5110811387", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46690", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this little doll was feeling very sad .", "storylet_id": "233450"}], [{"original_text": "This little doll was feeling like she cant go on anymore.", "album_id": "72157625231799556", "photo_flickr_id": "5110811805", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46690", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this little doll was feeling like she cant go on anymore .", "storylet_id": "233451"}], [{"original_text": "This doll was very evil and putting spells on the other dolls.", "album_id": "72157625231799556", "photo_flickr_id": "5111414034", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46690", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this doll was very evil and putting spells on the other dolls .", "storylet_id": "233452"}], [{"original_text": "This doll was very happy with life.", "album_id": "72157625231799556", "photo_flickr_id": "5110812469", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46690", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this doll was very happy with life .", "storylet_id": "233453"}], [{"original_text": "This doll was about to whip someone with her cane.", "album_id": "72157625231799556", "photo_flickr_id": "5111414414", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46690", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this doll was about to whip someone with her cane .", "storylet_id": "233454"}], [{"original_text": "I have always collected dolls but I have only just discovered these macabre little things.", "album_id": "72157625231799556", "photo_flickr_id": "5111414034", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "46691", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have always collected dolls but i have only just discovered these macabre little things .", "storylet_id": "233455"}], [{"original_text": "Ghoulie little girls with sunken eyes and black circles.", "album_id": "72157625231799556", "photo_flickr_id": "5110811387", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "46691", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "ghoulie little girls with sunken eyes and black circles .", "storylet_id": "233456"}], [{"original_text": "This one could be the dead version of Madame Butterfly.", "album_id": "72157625231799556", "photo_flickr_id": "5110812469", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "46691", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one could be the dead version of madame butterfly .", "storylet_id": "233457"}], [{"original_text": "Or what about the teen angst gothic girl.", "album_id": "72157625231799556", "photo_flickr_id": "5111414652", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "46691", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "or what about the teen angst gothic girl .", "storylet_id": "233458"}], [{"original_text": "They even have a ghoulie little bunny for her pet. I love innovative ideas.", "album_id": "72157625231799556", "photo_flickr_id": "5111413930", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "46691", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even have a ghoulie little bunny for her pet . i love innovative ideas .", "storylet_id": "233459"}], [{"original_text": "The dolls were all arranged nicely.", "album_id": "72157625231799556", "photo_flickr_id": "5110811387", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46692", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dolls were all arranged nicely .", "storylet_id": "233460"}], [{"original_text": "One of them kept falling off the chair, though.", "album_id": "72157625231799556", "photo_flickr_id": "5110811805", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46692", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of them kept falling off the chair , though .", "storylet_id": "233461"}], [{"original_text": "The tall female doll looked very elegant.", "album_id": "72157625231799556", "photo_flickr_id": "5111414034", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46692", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tall female doll looked very elegant .", "storylet_id": "233462"}], [{"original_text": "They all sat nicely for their photos.", "album_id": "72157625231799556", "photo_flickr_id": "5110812469", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46692", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they all sat nicely for their photos .", "storylet_id": "233463"}], [{"original_text": "It was a great occasion for all!", "album_id": "72157625231799556", "photo_flickr_id": "5111414414", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46692", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great occasion for all !", "storylet_id": "233464"}], [{"original_text": "I was frightened by the little doll even though I knew she wasn't real.", "album_id": "72157625231799556", "photo_flickr_id": "5110811387", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "46693", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was frightened by the little doll even though i knew she was n't real .", "storylet_id": "233465"}], [{"original_text": "Another doll flailed on the chair looking drunk.", "album_id": "72157625231799556", "photo_flickr_id": "5110811805", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "46693", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "another doll flailed on the chair looking drunk .", "storylet_id": "233466"}], [{"original_text": "A leather-clad platinum blonde lectured the pumpkins.", "album_id": "72157625231799556", "photo_flickr_id": "5111414034", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "46693", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a leather-clad platinum blonde lectured the pumpkins .", "storylet_id": "233467"}], [{"original_text": "Serene in a kimono, a placid doll rested on a fainting couch.", "album_id": "72157625231799556", "photo_flickr_id": "5110812469", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "46693", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "serene in a kimono , a placid doll rested on a fainting couch .", "storylet_id": "233468"}], [{"original_text": "This one was the most lovely, all in earth tones.", "album_id": "72157625231799556", "photo_flickr_id": "5111414414", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "46693", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this one was the most lovely , all in earth tones .", "storylet_id": "233469"}], [{"original_text": "Doll collecting is one of my favorite hobbies.", "album_id": "72157625231799556", "photo_flickr_id": "5110811387", "setting": "last-3-pick-old-and-tell", "worker_id": "S5XD6LO6U7UHGK4", "story_id": "46694", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "doll collecting is one of my favorite hobbies .", "storylet_id": "233470"}], [{"original_text": "There's is no limit to how creative you can be with the doll's outfits. ", "album_id": "72157625231799556", "photo_flickr_id": "5110811805", "setting": "last-3-pick-old-and-tell", "worker_id": "S5XD6LO6U7UHGK4", "story_id": "46694", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there 's is no limit to how creative you can be with the doll 's outfits .", "storylet_id": "233471"}], [{"original_text": "I even like to dress them up for holidays.", "album_id": "72157625231799556", "photo_flickr_id": "5111414034", "setting": "last-3-pick-old-and-tell", "worker_id": "S5XD6LO6U7UHGK4", "story_id": "46694", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i even like to dress them up for holidays .", "storylet_id": "233472"}], [{"original_text": "This doll is very rare and the kimono is 100% silk. ", "album_id": "72157625231799556", "photo_flickr_id": "5110812469", "setting": "last-3-pick-old-and-tell", "worker_id": "S5XD6LO6U7UHGK4", "story_id": "46694", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this doll is very rare and the kimono is 100 % silk .", "storylet_id": "233473"}], [{"original_text": "I have to be very careful because this is a porcelain doll. ", "album_id": "72157625231799556", "photo_flickr_id": "5111414414", "setting": "last-3-pick-old-and-tell", "worker_id": "S5XD6LO6U7UHGK4", "story_id": "46694", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i have to be very careful because this is a porcelain doll .", "storylet_id": "233474"}], [{"original_text": "My girlfriend really like a cat as her pet and she is very artistic..", "album_id": "72157625231750582", "photo_flickr_id": "5112037066", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "46695", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my girlfriend really like a cat as her pet and she is very artistic..", "storylet_id": "233475"}], [{"original_text": "This is the place where we express our feelings in the way of art.", "album_id": "72157625231750582", "photo_flickr_id": "5110797611", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "46695", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the place where we express our feelings in the way of art .", "storylet_id": "233476"}], [{"original_text": "This Jacky taking a pose on our art room.", "album_id": "72157625231750582", "photo_flickr_id": "5110798423", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "46695", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this jacky taking a pose on our art room .", "storylet_id": "233477"}], [{"original_text": "My self wanted to say something.", "album_id": "72157625231750582", "photo_flickr_id": "5110795457", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "46695", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my self wanted to say something .", "storylet_id": "233478"}], [{"original_text": "Also Karen our belly dancer take a pose on our art room.", "album_id": "72157625231750582", "photo_flickr_id": "5111467108", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "46695", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "also [female] our belly dancer take a pose on our art room .", "storylet_id": "233479"}], [{"original_text": "Jennifer with her cat before the photo shoot with her friends.", "album_id": "72157625231750582", "photo_flickr_id": "5112037066", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46696", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] with her cat before the photo shoot with her friends .", "storylet_id": "233480"}], [{"original_text": "First up was Ralph he shined in front of the camera.", "album_id": "72157625231750582", "photo_flickr_id": "5110797611", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46696", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first up was [male] he shined in front of the camera .", "storylet_id": "233481"}], [{"original_text": "Next up was Becky she was a sexy fox.", "album_id": "72157625231750582", "photo_flickr_id": "5110798423", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46696", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next up was [female] she was a sexy fox .", "storylet_id": "233482"}], [{"original_text": "Next up was Ricky he looked like Steve Jobs.", "album_id": "72157625231750582", "photo_flickr_id": "5110795457", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46696", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next up was [male] he looked like [male] jobs .", "storylet_id": "233483"}], [{"original_text": "And last was Vicky partying like a rock star.", "album_id": "72157625231750582", "photo_flickr_id": "5111467108", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46696", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and last was [female] partying like a rock star .", "storylet_id": "233484"}], [{"original_text": "I really love kittens. Aren't they beautiful. ", "album_id": "72157625231750582", "photo_flickr_id": "5112037066", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "46697", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i really love kittens . are n't they beautiful .", "storylet_id": "233485"}], [{"original_text": "My friends and I decided to take pictures posing in our room that we made turn out to look of nothing but cats.", "album_id": "72157625231750582", "photo_flickr_id": "5110797611", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "46697", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friends and i decided to take pictures posing in our room that we made turn out to look of nothing but cats .", "storylet_id": "233486"}], [{"original_text": "We are all making silly poses to take.", "album_id": "72157625231750582", "photo_flickr_id": "5110798423", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "46697", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are all making silly poses to take .", "storylet_id": "233487"}], [{"original_text": "Our friend here decided to just stand there and not show any emotion at all.", "album_id": "72157625231750582", "photo_flickr_id": "5110795457", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "46697", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our friend here decided to just stand there and not show any emotion at all .", "storylet_id": "233488"}], [{"original_text": "My friend here decided to dance to her music all while making different poses for the camera.", "album_id": "72157625231750582", "photo_flickr_id": "5111467108", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "46697", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my friend here decided to dance to her music all while making different poses for the camera .", "storylet_id": "233489"}], [{"original_text": "The photo shot was hipster themed. ", "album_id": "72157625231750582", "photo_flickr_id": "5112037066", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46698", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the photo shot was hipster themed .", "storylet_id": "233490"}], [{"original_text": "People posed in the middle of a dirty room.", "album_id": "72157625231750582", "photo_flickr_id": "5110797611", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46698", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people posed in the middle of a dirty room .", "storylet_id": "233491"}], [{"original_text": "Some had dramatic poses.", "album_id": "72157625231750582", "photo_flickr_id": "5110798423", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46698", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some had dramatic poses .", "storylet_id": "233492"}], [{"original_text": "Others didn't know what to do.", "album_id": "72157625231750582", "photo_flickr_id": "5110795457", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46698", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others did n't know what to do .", "storylet_id": "233493"}], [{"original_text": "But this lady made sure to make the most out of the experience.", "album_id": "72157625231750582", "photo_flickr_id": "5111467108", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "46698", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but this lady made sure to make the most out of the experience .", "storylet_id": "233494"}], [{"original_text": "At the Halloween party, one woman dressed up as a cat.", "album_id": "72157625231750582", "photo_flickr_id": "5112037066", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46699", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the halloween party , one woman dressed up as a cat .", "storylet_id": "233495"}], [{"original_text": "It was held in a very dirty house.", "album_id": "72157625231750582", "photo_flickr_id": "5110797611", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46699", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was held in a very dirty house .", "storylet_id": "233496"}], [{"original_text": "Everyone had fun posing for photos.", "album_id": "72157625231750582", "photo_flickr_id": "5110798423", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46699", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone had fun posing for photos .", "storylet_id": "233497"}], [{"original_text": "Some people didn't dress up, though.", "album_id": "72157625231750582", "photo_flickr_id": "5110795457", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46699", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people did n't dress up , though .", "storylet_id": "233498"}], [{"original_text": "Regardless, everyone had a great time!", "album_id": "72157625231750582", "photo_flickr_id": "5111467108", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46699", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "regardless , everyone had a great time !", "storylet_id": "233499"}], [{"original_text": "Last night I was trying to figure out what we were going to do and then I had a great idea.", "album_id": "72157594519612355", "photo_flickr_id": "369362774", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46700", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night i was trying to figure out what we were going to do and then i had a great idea .", "storylet_id": "233500"}], [{"original_text": "I gathered all my friends and we all went to hang out in the pool.", "album_id": "72157594519612355", "photo_flickr_id": "369362767", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46700", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i gathered all my friends and we all went to hang out in the pool .", "storylet_id": "233501"}], [{"original_text": "So many of my friends showed up.", "album_id": "72157594519612355", "photo_flickr_id": "369354988", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46700", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so many of my friends showed up .", "storylet_id": "233502"}], [{"original_text": "Afterward we all were hungry so we went to grab something to eat. I brought my scary mask to scare everybody.", "album_id": "72157594519612355", "photo_flickr_id": "369354995", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46700", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we all were hungry so we went to grab something to eat . i brought my scary mask to scare everybody .", "storylet_id": "233503"}], [{"original_text": "After we ate we decided to climb up on my roof and hang out until morning.", "album_id": "72157594519612355", "photo_flickr_id": "369362768", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46700", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we ate we decided to climb up on my roof and hang out until morning .", "storylet_id": "233504"}], [{"original_text": "Mother son and daughter in front of their home. ", "album_id": "72157594519612355", "photo_flickr_id": "369354986", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46701", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mother son and daughter in front of their home .", "storylet_id": "233505"}], [{"original_text": "Big sister and her two brothers taking a picture. ", "album_id": "72157594519612355", "photo_flickr_id": "369362772", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46701", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "big sister and her two brothers taking a picture .", "storylet_id": "233506"}], [{"original_text": "Two brothers having fun in a toy car box. ", "album_id": "72157594519612355", "photo_flickr_id": "369354992", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46701", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two brothers having fun in a toy car box .", "storylet_id": "233507"}], [{"original_text": "Brothers dressing like twins for twin day at school . ", "album_id": "72157594519612355", "photo_flickr_id": "369354988", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46701", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "brothers dressing like twins for twin day at school .", "storylet_id": "233508"}], [{"original_text": "Face painting at a friend's birthday party. ", "album_id": "72157594519612355", "photo_flickr_id": "369354995", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "46701", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "face painting at a friend 's birthday party .", "storylet_id": "233509"}], [{"original_text": "I was always a happy kid, always smiling about everything.", "album_id": "72157594519612355", "photo_flickr_id": "369362774", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46702", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was always a happy kid , always smiling about everything .", "storylet_id": "233510"}], [{"original_text": "Even when I broke my arm I still had a smile on my face.", "album_id": "72157594519612355", "photo_flickr_id": "369362767", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46702", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even when i broke my arm i still had a smile on my face .", "storylet_id": "233511"}], [{"original_text": "I have a twin brother who I love a lot.", "album_id": "72157594519612355", "photo_flickr_id": "369354988", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46702", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i have a twin brother who i love a lot .", "storylet_id": "233512"}], [{"original_text": "For Halloween I dressed up and collected candy.", "album_id": "72157594519612355", "photo_flickr_id": "369354995", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46702", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "for halloween i dressed up and collected candy .", "storylet_id": "233513"}], [{"original_text": "I love music because that is a big passion in my life.", "album_id": "72157594519612355", "photo_flickr_id": "369362768", "setting": "last-3-pick-old-and-tell", "worker_id": "A9W72M0LVOREGCR", "story_id": "46702", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love music because that is a big passion in my life .", "storylet_id": "233514"}], [{"original_text": "The Jones children always act silly.", "album_id": "72157594519612355", "photo_flickr_id": "369362774", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46703", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the jones children always act silly .", "storylet_id": "233515"}], [{"original_text": "Even when they are hurt, they love to clown around.", "album_id": "72157594519612355", "photo_flickr_id": "369362767", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46703", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even when they are hurt , they love to clown around .", "storylet_id": "233516"}], [{"original_text": "It makes for a very happy family.", "album_id": "72157594519612355", "photo_flickr_id": "369354988", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46703", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it makes for a very happy family .", "storylet_id": "233517"}], [{"original_text": "And a vey silly family, sometimes too.", "album_id": "72157594519612355", "photo_flickr_id": "369354995", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46703", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and a vey silly family , sometimes too .", "storylet_id": "233518"}], [{"original_text": "Happy kids equal a happy life.", "album_id": "72157594519612355", "photo_flickr_id": "369362768", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46703", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "happy kids equal a happy life .", "storylet_id": "233519"}], [{"original_text": "A new baby came home to meet the family", "album_id": "72157594519612355", "photo_flickr_id": "369354986", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "46704", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a new baby came home to meet the family", "storylet_id": "233520"}], [{"original_text": "He had an older brother and an older sister.", "album_id": "72157594519612355", "photo_flickr_id": "369362772", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "46704", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he had an older brother and an older sister .", "storylet_id": "233521"}], [{"original_text": "They played with their little baby brother and watched over him as he grew.", "album_id": "72157594519612355", "photo_flickr_id": "369354992", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "46704", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they played with their little baby brother and watched over him as he grew .", "storylet_id": "233522"}], [{"original_text": "They were the best of friends.", "album_id": "72157594519612355", "photo_flickr_id": "369354988", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "46704", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were the best of friends .", "storylet_id": "233523"}], [{"original_text": "Halloween was one of their favorite holidays. They had fun making their costumes and going trick-or-treating.", "album_id": "72157594519612355", "photo_flickr_id": "369354995", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "46704", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "halloween was one of their favorite holidays . they had fun making their costumes and going trick-or-treating .", "storylet_id": "233524"}], [{"original_text": "Everyone had fun at the costume party.", "album_id": "137301", "photo_flickr_id": "5451982", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46705", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone had fun at the costume party .", "storylet_id": "233525"}], [{"original_text": "The costumes ranged from wild to realistic.", "album_id": "137301", "photo_flickr_id": "5451988", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46705", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the costumes ranged from wild to realistic .", "storylet_id": "233526"}], [{"original_text": "Some resembled everyday night wear.", "album_id": "137301", "photo_flickr_id": "5451989", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46705", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some resembled everyday night wear .", "storylet_id": "233527"}], [{"original_text": "Others resembled creatures from horror movies.", "album_id": "137301", "photo_flickr_id": "5452005", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46705", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others resembled creatures from horror movies .", "storylet_id": "233528"}], [{"original_text": "A few looked great in pairs.", "album_id": "137301", "photo_flickr_id": "5452002", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "46705", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a few looked great in pairs .", "storylet_id": "233529"}], [{"original_text": "Mandy was certainly adventurous at the party with this little number.", "album_id": "137301", "photo_flickr_id": "5451982", "setting": "first-2-pick-and-tell", "worker_id": "3IHE8XWFHKXK2AO", "story_id": "46706", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was certainly adventurous at the party with this little number .", "storylet_id": "233530"}], [{"original_text": "Brian was the life of the party with this joker's outfit.", "album_id": "137301", "photo_flickr_id": "5451986", "setting": "first-2-pick-and-tell", "worker_id": "3IHE8XWFHKXK2AO", "story_id": "46706", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was the life of the party with this joker 's outfit .", "storylet_id": "233531"}], [{"original_text": "Suzy was all smiles in a bloody roman toga.", "album_id": "137301", "photo_flickr_id": "5451997", "setting": "first-2-pick-and-tell", "worker_id": "3IHE8XWFHKXK2AO", "story_id": "46706", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "suzy was all smiles in a bloody roman toga .", "storylet_id": "233532"}], [{"original_text": "Kate and Justing needed some fresh air.", "album_id": "137301", "photo_flickr_id": "5452001", "setting": "first-2-pick-and-tell", "worker_id": "3IHE8XWFHKXK2AO", "story_id": "46706", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and justing needed some fresh air .", "storylet_id": "233533"}], [{"original_text": "Kevin and Debra were total opposites at the party.", "album_id": "137301", "photo_flickr_id": "5452002", "setting": "first-2-pick-and-tell", "worker_id": "3IHE8XWFHKXK2AO", "story_id": "46706", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] and [female] were total opposites at the party .", "storylet_id": "233534"}], [{"original_text": "Everybody loves a good costume party, and our friends are no exception!", "album_id": "137301", "photo_flickr_id": "5451982", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46707", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everybody loves a good costume party , and our friends are no exception !", "storylet_id": "233535"}], [{"original_text": "We had a little of everyone show up, and we all drank and were merry.", "album_id": "137301", "photo_flickr_id": "5451988", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46707", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a little of everyone show up , and we all drank and were merry .", "storylet_id": "233536"}], [{"original_text": "Some costumes were hip.", "album_id": "137301", "photo_flickr_id": "5451989", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46707", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some costumes were hip .", "storylet_id": "233537"}], [{"original_text": "Other costumes were scary.", "album_id": "137301", "photo_flickr_id": "5452005", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46707", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other costumes were scary .", "storylet_id": "233538"}], [{"original_text": "But one thing we all had in common was the spirit of fun and friendship.", "album_id": "137301", "photo_flickr_id": "5452002", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46707", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but one thing we all had in common was the spirit of fun and friendship .", "storylet_id": "233539"}], [{"original_text": "We went to a costume party for Halloween. This lady won the prize for least costume worn.", "album_id": "137301", "photo_flickr_id": "5451982", "setting": "last-3-pick-old-and-tell", "worker_id": "5G87VFMZI5VTQZN", "story_id": "46708", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a costume party for halloween . this lady won the prize for least costume worn .", "storylet_id": "233540"}], [{"original_text": "We have no idea who this guy was supposed to be, but he sure was fun to party with.", "album_id": "137301", "photo_flickr_id": "5451988", "setting": "last-3-pick-old-and-tell", "worker_id": "5G87VFMZI5VTQZN", "story_id": "46708", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we have no idea who this guy was supposed to be , but he sure was fun to party with .", "storylet_id": "233541"}], [{"original_text": "This guy tried to be someone from a boy band.", "album_id": "137301", "photo_flickr_id": "5451989", "setting": "last-3-pick-old-and-tell", "worker_id": "5G87VFMZI5VTQZN", "story_id": "46708", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this guy tried to be someone from a boy band .", "storylet_id": "233542"}], [{"original_text": "One of our friends dressed up as death.", "album_id": "137301", "photo_flickr_id": "5452005", "setting": "last-3-pick-old-and-tell", "worker_id": "5G87VFMZI5VTQZN", "story_id": "46708", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of our friends dressed up as death .", "storylet_id": "233543"}], [{"original_text": "Here's us - not a very cohesive couple for costumes this year!", "album_id": "137301", "photo_flickr_id": "5452002", "setting": "last-3-pick-old-and-tell", "worker_id": "5G87VFMZI5VTQZN", "story_id": "46708", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's us - not a very cohesive couple for costumes this year !", "storylet_id": "233544"}], [{"original_text": "she was bad bad girl that night", "album_id": "137301", "photo_flickr_id": "5451982", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46709", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she was bad bad girl that night", "storylet_id": "233545"}], [{"original_text": "Jack was crusing for some hot guys with some hot buns ", "album_id": "137301", "photo_flickr_id": "5451988", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46709", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was crusing for some hot guys with some hot buns", "storylet_id": "233546"}], [{"original_text": "Joey was interested in Jack!", "album_id": "137301", "photo_flickr_id": "5451989", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46709", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was interested in [male] !", "storylet_id": "233547"}], [{"original_text": "darth maul showed up and caused trouble", "album_id": "137301", "photo_flickr_id": "5452005", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46709", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "darth maul showed up and caused trouble", "storylet_id": "233548"}], [{"original_text": "he left with the hottest chick at the party!", "album_id": "137301", "photo_flickr_id": "5452002", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "46709", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he left with the hottest chick at the party !", "storylet_id": "233549"}], [{"original_text": "Johnny and his friends were ready for Halloween.", "album_id": "72157625129431759", "photo_flickr_id": "5117544781", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "46710", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and his friends were ready for halloween .", "storylet_id": "233550"}], [{"original_text": "Little Charley dressed as a duck, which was his favorite animal.", "album_id": "72157625129431759", "photo_flickr_id": "5118190978", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "46710", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "little [male] dressed as a duck , which was his favorite animal .", "storylet_id": "233551"}], [{"original_text": "They moved through the neighborhood looking for houses to trick or treat at.", "album_id": "72157625129431759", "photo_flickr_id": "5118194632", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "46710", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they moved through the neighborhood looking for houses to trick or treat at .", "storylet_id": "233552"}], [{"original_text": "They saw the perfect house and rang the doorbell.", "album_id": "72157625129431759", "photo_flickr_id": "5118116468", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "46710", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they saw the perfect house and rang the doorbell .", "storylet_id": "233553"}], [{"original_text": "Johnny was a little upset that they only gave him one piece. On to the next house.", "album_id": "72157625129431759", "photo_flickr_id": "5118205330", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "46710", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was a little upset that they only gave him one piece . on to the next house .", "storylet_id": "233554"}], [{"original_text": "The little kids dressed up in costumes for a halloween party.", "album_id": "72157625129431759", "photo_flickr_id": "5118190978", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46711", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the little kids dressed up in costumes for a halloween party .", "storylet_id": "233555"}], [{"original_text": "This little girl was dressed like a cute little pumpkin.", "album_id": "72157625129431759", "photo_flickr_id": "5118144668", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46711", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this little girl was dressed like a cute little pumpkin .", "storylet_id": "233556"}], [{"original_text": "This little girl was dressed up in a duck outfit.", "album_id": "72157625129431759", "photo_flickr_id": "5118187442", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46711", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this little girl was dressed up in a duck outfit .", "storylet_id": "233557"}], [{"original_text": "The little pumpkin girl was walking home with her parents.", "album_id": "72157625129431759", "photo_flickr_id": "5118123394", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46711", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the little pumpkin girl was walking home with her parents .", "storylet_id": "233558"}], [{"original_text": "She finally arrived back at her house safe and sound.", "album_id": "72157625129431759", "photo_flickr_id": "5118116468", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "46711", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she finally arrived back at her house safe and sound .", "storylet_id": "233559"}], [{"original_text": "It's halloween and all the kids are dressed up.", "album_id": "72157625129431759", "photo_flickr_id": "5117544781", "setting": "last-3-pick-old-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "46712", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's halloween and all the kids are dressed up .", "storylet_id": "233560"}], [{"original_text": "She is so cute!", "album_id": "72157625129431759", "photo_flickr_id": "5118190978", "setting": "last-3-pick-old-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "46712", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she is so cute !", "storylet_id": "233561"}], [{"original_text": "They had a spooky graveyard set up out side.", "album_id": "72157625129431759", "photo_flickr_id": "5118194632", "setting": "last-3-pick-old-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "46712", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a spooky graveyard set up out side .", "storylet_id": "233562"}], [{"original_text": "This house was using the grave theme as well.", "album_id": "72157625129431759", "photo_flickr_id": "5118116468", "setting": "last-3-pick-old-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "46712", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this house was using the grave theme as well .", "storylet_id": "233563"}], [{"original_text": "A happy little boy with candy.", "album_id": "72157625129431759", "photo_flickr_id": "5118205330", "setting": "last-3-pick-old-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "46712", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a happy little boy with candy .", "storylet_id": "233564"}], [{"original_text": "It was the kids first Halloween.", "album_id": "72157625129431759", "photo_flickr_id": "5118190978", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46713", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the kids first halloween .", "storylet_id": "233565"}], [{"original_text": "They were so cute dressed up.", "album_id": "72157625129431759", "photo_flickr_id": "5118144668", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46713", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were so cute dressed up .", "storylet_id": "233566"}], [{"original_text": "One was dressed up like a chick.", "album_id": "72157625129431759", "photo_flickr_id": "5118187442", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46713", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one was dressed up like a chick .", "storylet_id": "233567"}], [{"original_text": "The other had a pumpkin costume.", "album_id": "72157625129431759", "photo_flickr_id": "5118123394", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46713", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the other had a pumpkin costume .", "storylet_id": "233568"}], [{"original_text": "We had the daycare all decorated, too.", "album_id": "72157625129431759", "photo_flickr_id": "5118116468", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46713", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had the daycare all decorated , too .", "storylet_id": "233569"}], [{"original_text": "It was halloween costume day on tuesday.", "album_id": "72157625129431759", "photo_flickr_id": "5117544781", "setting": "last-3-pick-old-and-tell", "worker_id": "3AJOCV9YFRMBZH0", "story_id": "46714", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was halloween costume day on tuesday .", "storylet_id": "233570"}], [{"original_text": "I dressed Tommy us as a little yellow duckling.", "album_id": "72157625129431759", "photo_flickr_id": "5118190978", "setting": "last-3-pick-old-and-tell", "worker_id": "3AJOCV9YFRMBZH0", "story_id": "46714", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i dressed [male] us as a little yellow duckling .", "storylet_id": "233571"}], [{"original_text": "On the way home we saw someone decorated their yard like a graveyard.", "album_id": "72157625129431759", "photo_flickr_id": "5118194632", "setting": "last-3-pick-old-and-tell", "worker_id": "3AJOCV9YFRMBZH0", "story_id": "46714", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on the way home we saw someone decorated their yard like a graveyard .", "storylet_id": "233572"}], [{"original_text": "Another building decorated their stoop with scary decorations.", "album_id": "72157625129431759", "photo_flickr_id": "5118116468", "setting": "last-3-pick-old-and-tell", "worker_id": "3AJOCV9YFRMBZH0", "story_id": "46714", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another building decorated their stoop with scary decorations .", "storylet_id": "233573"}], [{"original_text": "Billy the pumpkin is scared very easily and doesn't like halloween.", "album_id": "72157625129431759", "photo_flickr_id": "5118205330", "setting": "last-3-pick-old-and-tell", "worker_id": "3AJOCV9YFRMBZH0", "story_id": "46714", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] the pumpkin is scared very easily and does n't like halloween .", "storylet_id": "233574"}], [{"original_text": "We arrived at the house and it was resplendent in spookiness.", "album_id": "72157625138326527", "photo_flickr_id": "5124819752", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "46715", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at the house and it was resplendent in spookiness .", "storylet_id": "233575"}], [{"original_text": "We mingled and took pictures of the scenery.", "album_id": "72157625138326527", "photo_flickr_id": "5124820826", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "46715", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we mingled and took pictures of the scenery .", "storylet_id": "233576"}], [{"original_text": "A wraith floated with its white gown.", "album_id": "72157625138326527", "photo_flickr_id": "5124826682", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "46715", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a wraith floated with its white gown .", "storylet_id": "233577"}], [{"original_text": "We posed in the lighting and made memories.", "album_id": "72157625138326527", "photo_flickr_id": "5124830848", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "46715", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we posed in the lighting and made memories .", "storylet_id": "233578"}], [{"original_text": "We left the spooky house eventually, but it was great Halloween fun!", "album_id": "72157625138326527", "photo_flickr_id": "5124832182", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "46715", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we left the spooky house eventually , but it was great halloween fun !", "storylet_id": "233579"}], [{"original_text": "We spent a week preparing our house for Halloween night.", "album_id": "72157625138326527", "photo_flickr_id": "5124219675", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "46716", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we spent a week preparing our house for halloween night .", "storylet_id": "233580"}], [{"original_text": "We carved the pumpkins and lit them up/", "album_id": "72157625138326527", "photo_flickr_id": "5124217369", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "46716", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we carved the pumpkins and lit them up/", "storylet_id": "233581"}], [{"original_text": "We set up the coffin and filled it with a body.", "album_id": "72157625138326527", "photo_flickr_id": "5124824792", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "46716", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we set up the coffin and filled it with a body .", "storylet_id": "233582"}], [{"original_text": "The vampire couple was really scary.", "album_id": "72157625138326527", "photo_flickr_id": "5124827876", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "46716", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the vampire couple was really scary .", "storylet_id": "233583"}], [{"original_text": "Our house won an award for being the best one on the street.", "album_id": "72157625138326527", "photo_flickr_id": "5124819752", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "46716", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our house won an award for being the best one on the street .", "storylet_id": "233584"}], [{"original_text": "The house's haunted decor took hours, but it looked amazing in the end. ", "album_id": "72157625138326527", "photo_flickr_id": "5124819752", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "46717", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the house 's haunted decor took hours , but it looked amazing in the end .", "storylet_id": "233585"}], [{"original_text": "The green light made the status appear like a walking man out of nowhere. ", "album_id": "72157625138326527", "photo_flickr_id": "5124820826", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "46717", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the green light made the status appear like a walking man out of nowhere .", "storylet_id": "233586"}], [{"original_text": "The ghost danced around every time the wind blew. ", "album_id": "72157625138326527", "photo_flickr_id": "5124826682", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "46717", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ghost danced around every time the wind blew .", "storylet_id": "233587"}], [{"original_text": "Everyone appeared from the cemetery. ", "album_id": "72157625138326527", "photo_flickr_id": "5124830848", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "46717", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone appeared from the cemetery .", "storylet_id": "233588"}], [{"original_text": "The house was the best looking one on the block. ", "album_id": "72157625138326527", "photo_flickr_id": "5124832182", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "46717", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the house was the best looking one on the block .", "storylet_id": "233589"}], [{"original_text": "We turned our house into a spool fest for Halloween. ", "album_id": "72157625138326527", "photo_flickr_id": "5124819752", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "46718", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we turned our house into a spool fest for halloween .", "storylet_id": "233590"}], [{"original_text": "We put green spotlights in our landscaping. ", "album_id": "72157625138326527", "photo_flickr_id": "5124820826", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "46718", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we put green spotlights in our landscaping .", "storylet_id": "233591"}], [{"original_text": "A ghost greeted party guests. ", "album_id": "72157625138326527", "photo_flickr_id": "5124826682", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "46718", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a ghost greeted party guests .", "storylet_id": "233592"}], [{"original_text": "The Frankenstien and Bride were very realistic. ", "album_id": "72157625138326527", "photo_flickr_id": "5124830848", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "46718", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the frankenstien and bride were very realistic .", "storylet_id": "233593"}], [{"original_text": "We were the coolest house on the block! ", "album_id": "72157625138326527", "photo_flickr_id": "5124832182", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "46718", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were the coolest house on the block !", "storylet_id": "233594"}], [{"original_text": "Jeff and Dave were trying to be really spooky this halloween.", "album_id": "72157625138326527", "photo_flickr_id": "5124219675", "setting": "last-3-pick-old-and-tell", "worker_id": "3AJOCV9YFRMBZH0", "story_id": "46719", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [male] were trying to be really spooky this halloween .", "storylet_id": "233595"}], [{"original_text": "They cut some nice looking jack-o-lanterns earlier in the wek.", "album_id": "72157625138326527", "photo_flickr_id": "5124217369", "setting": "last-3-pick-old-and-tell", "worker_id": "3AJOCV9YFRMBZH0", "story_id": "46719", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they cut some nice looking jack-o-lanterns earlier in the wek .", "storylet_id": "233596"}], [{"original_text": "They even got a big dead mannequin and coffin for their porch.", "album_id": "72157625138326527", "photo_flickr_id": "5124824792", "setting": "last-3-pick-old-and-tell", "worker_id": "3AJOCV9YFRMBZH0", "story_id": "46719", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even got a big dead mannequin and coffin for their porch .", "storylet_id": "233597"}], [{"original_text": "They borrowed Terri's Frankenstien mannequin as weel.", "album_id": "72157625138326527", "photo_flickr_id": "5124827876", "setting": "last-3-pick-old-and-tell", "worker_id": "3AJOCV9YFRMBZH0", "story_id": "46719", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they borrowed [female] 's frankenstien mannequin as weel .", "storylet_id": "233598"}], [{"original_text": "Their house was really freaky.", "album_id": "72157625138326527", "photo_flickr_id": "5124819752", "setting": "last-3-pick-old-and-tell", "worker_id": "3AJOCV9YFRMBZH0", "story_id": "46719", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their house was really freaky .", "storylet_id": "233599"}], [{"original_text": "Today me and Steve went on an adventure.", "album_id": "72157625261743758", "photo_flickr_id": "5123667817", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46720", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today me and [male] went on an adventure .", "storylet_id": "233600"}], [{"original_text": "We come across this tent, with tables set up outside of it, instantly our interests are peeked.", "album_id": "72157625261743758", "photo_flickr_id": "5123659565", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46720", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we come across this tent , with tables set up outside of it , instantly our interests are peeked .", "storylet_id": "233601"}], [{"original_text": "We step inside and can't believe our eyes, wall to wall kegs.", "album_id": "72157625261743758", "photo_flickr_id": "5124267968", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46720", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we step inside and ca n't believe our eyes , wall to wall kegs .", "storylet_id": "233602"}], [{"original_text": "We met Jay, who introduced us to many different beers.", "album_id": "72157625261743758", "photo_flickr_id": "5124261220", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46720", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we met [male] , who introduced us to many different beers .", "storylet_id": "233603"}], [{"original_text": "I'm not sure if beer taste testing has the same rules as wine, but I can assure you we were not spitting out these delicious drinks!", "album_id": "72157625261743758", "photo_flickr_id": "5123666865", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "46720", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm not sure if beer taste testing has the same rules as wine , but i can assure you we were not spitting out these delicious drinks !", "storylet_id": "233604"}], [{"original_text": "I went to my first beer tasting today.", "album_id": "72157625261743758", "photo_flickr_id": "5124261220", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "46721", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to my first beer tasting today .", "storylet_id": "233605"}], [{"original_text": "There were many different kinds to choose from.", "album_id": "72157625261743758", "photo_flickr_id": "5124259770", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "46721", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many different kinds to choose from .", "storylet_id": "233606"}], [{"original_text": "I met a lot of great people there.", "album_id": "72157625261743758", "photo_flickr_id": "5123659565", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "46721", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i met a lot of great people there .", "storylet_id": "233607"}], [{"original_text": "I even ran into the president of the Brewers' Association!", "album_id": "72157625261743758", "photo_flickr_id": "5123666865", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "46721", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i even ran into the president of the organization ' association !", "storylet_id": "233608"}], [{"original_text": "All in all, it was a perfect day.", "album_id": "72157625261743758", "photo_flickr_id": "5124267968", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "46721", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all in all , it was a perfect day .", "storylet_id": "233609"}], [{"original_text": "Our friend opened a brewery in our city. ", "album_id": "72157625261743758", "photo_flickr_id": "5124261220", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46722", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our friend opened a brewery in our city .", "storylet_id": "233610"}], [{"original_text": "The brewery features a variety of beers.", "album_id": "72157625261743758", "photo_flickr_id": "5124259770", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46722", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the brewery features a variety of beers .", "storylet_id": "233611"}], [{"original_text": "Many guests gathered to try some of the beers outside the brewery.", "album_id": "72157625261743758", "photo_flickr_id": "5123659565", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46722", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many guests gathered to try some of the beers outside the brewery .", "storylet_id": "233612"}], [{"original_text": "A local newscaster visited the brewery.", "album_id": "72157625261743758", "photo_flickr_id": "5123666865", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46722", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a local newscaster visited the brewery .", "storylet_id": "233613"}], [{"original_text": "At the end of the day, more guests than anticipated arrived. ", "album_id": "72157625261743758", "photo_flickr_id": "5124267968", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46722", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , more guests than anticipated arrived .", "storylet_id": "233614"}], [{"original_text": "My buddy and I are going to a beer festival. ", "album_id": "72157625261743758", "photo_flickr_id": "5123667817", "setting": "last-3-pick-old-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "46723", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my buddy and i are going to a beer festival .", "storylet_id": "233615"}], [{"original_text": "We are early and not too many people are here.", "album_id": "72157625261743758", "photo_flickr_id": "5123659565", "setting": "last-3-pick-old-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "46723", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are early and not too many people are here .", "storylet_id": "233616"}], [{"original_text": "The tasting room is set up.", "album_id": "72157625261743758", "photo_flickr_id": "5124267968", "setting": "last-3-pick-old-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "46723", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tasting room is set up .", "storylet_id": "233617"}], [{"original_text": "They are poring right from the kegs.", "album_id": "72157625261743758", "photo_flickr_id": "5124261220", "setting": "last-3-pick-old-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "46723", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they are poring right from the kegs .", "storylet_id": "233618"}], [{"original_text": "That is the look of happiness on my face.", "album_id": "72157625261743758", "photo_flickr_id": "5123666865", "setting": "last-3-pick-old-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "46723", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that is the look of happiness on my face .", "storylet_id": "233619"}], [{"original_text": "The men were happy", "album_id": "72157625261743758", "photo_flickr_id": "5123667817", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46724", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the men were happy", "storylet_id": "233620"}], [{"original_text": "that they were at an event.", "album_id": "72157625261743758", "photo_flickr_id": "5123659565", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46724", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that they were at an event .", "storylet_id": "233621"}], [{"original_text": "They made food", "album_id": "72157625261743758", "photo_flickr_id": "5124267968", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46724", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they made food", "storylet_id": "233622"}], [{"original_text": "and were having beer", "album_id": "72157625261743758", "photo_flickr_id": "5124261220", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46724", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and were having beer", "storylet_id": "233623"}], [{"original_text": "that was home brewed.", "album_id": "72157625261743758", "photo_flickr_id": "5123666865", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46724", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that was home brewed .", "storylet_id": "233624"}], [{"original_text": "Today was the day Jimmy would be come a super hero but he needed a costume, so he looked online for some help.", "album_id": "72157625276203234", "photo_flickr_id": "5128258557", "setting": "first-2-pick-and-tell", "worker_id": "9GKX2RSC19MHDGL", "story_id": "46725", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day [male] would be come a super hero but he needed a costume , so he looked online for some help .", "storylet_id": "233625"}], [{"original_text": "He knew he needed a mask, she would start there.", "album_id": "72157625276203234", "photo_flickr_id": "5127682063", "setting": "first-2-pick-and-tell", "worker_id": "9GKX2RSC19MHDGL", "story_id": "46725", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he knew he needed a mask , she would start there .", "storylet_id": "233626"}], [{"original_text": "He added some night vision to the mask in hopes to catch the bad guys at night.", "album_id": "72157625276203234", "photo_flickr_id": "5128315933", "setting": "first-2-pick-and-tell", "worker_id": "9GKX2RSC19MHDGL", "story_id": "46725", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he added some night vision to the mask in hopes to catch the bad guys at night .", "storylet_id": "233627"}], [{"original_text": "There, finally finished. ", "album_id": "72157625276203234", "photo_flickr_id": "5130134324", "setting": "first-2-pick-and-tell", "worker_id": "9GKX2RSC19MHDGL", "story_id": "46725", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there , finally finished .", "storylet_id": "233628"}], [{"original_text": "Now what to call myself? Hmmm I got it. \" Father Feather\" AWESOME.", "album_id": "72157625276203234", "photo_flickr_id": "5130763820", "setting": "first-2-pick-and-tell", "worker_id": "9GKX2RSC19MHDGL", "story_id": "46725", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now what to call myself ? hmmm i got it. `` father feather '' awesome .", "storylet_id": "233629"}], [{"original_text": "We wanted to film a \"how-to\" video to help them make a Halloween mask.", "album_id": "72157625276203234", "photo_flickr_id": "5134507343", "setting": "first-2-pick-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "46726", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we wanted to film a `` how-to '' video to help them make a halloween mask .", "storylet_id": "233630"}], [{"original_text": "We set up the computer to film us.", "album_id": "72157625276203234", "photo_flickr_id": "5128258557", "setting": "first-2-pick-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "46726", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we set up the computer to film us .", "storylet_id": "233631"}], [{"original_text": "We took pictures of our supplies. We thought we looked very professional.", "album_id": "72157625276203234", "photo_flickr_id": "5127676701", "setting": "first-2-pick-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "46726", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took pictures of our supplies . we thought we looked very professional .", "storylet_id": "233632"}], [{"original_text": "We had trouble making sure our directions made sense, though.", "album_id": "72157625276203234", "photo_flickr_id": "5128886684", "setting": "first-2-pick-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "46726", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had trouble making sure our directions made sense , though .", "storylet_id": "233633"}], [{"original_text": "We stopped when we had to explain how to sew on the feathers. We have decided that those directions are so complicated we need to write them down.", "album_id": "72157625276203234", "photo_flickr_id": "5130134324", "setting": "first-2-pick-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "46726", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we stopped when we had to explain how to sew on the feathers . we have decided that those directions are so complicated we need to write them down .", "storylet_id": "233634"}], [{"original_text": "A friend sent me a video on how to make a Halloween mask.", "album_id": "72157625276203234", "photo_flickr_id": "5134507343", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46727", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a friend sent me a video on how to make a halloween mask .", "storylet_id": "233635"}], [{"original_text": "He had a picture slideshow and actual video footage.", "album_id": "72157625276203234", "photo_flickr_id": "5128258557", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46727", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he had a picture slideshow and actual video footage .", "storylet_id": "233636"}], [{"original_text": "One of the pictures displayed all the materials needed to make a mask.", "album_id": "72157625276203234", "photo_flickr_id": "5127676701", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46727", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the pictures displayed all the materials needed to make a mask .", "storylet_id": "233637"}], [{"original_text": "The video portion showed step by step how to assemble the mask.", "album_id": "72157625276203234", "photo_flickr_id": "5128886684", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46727", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the video portion showed step by step how to assemble the mask .", "storylet_id": "233638"}], [{"original_text": "Lastly, the final minutes of the video showed the variations of customization to the Halloween mask. ", "album_id": "72157625276203234", "photo_flickr_id": "5130134324", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46727", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , the final minutes of the video showed the variations of customization to the halloween mask .", "storylet_id": "233639"}], [{"original_text": "I decided to search online for ideas. ", "album_id": "72157625276203234", "photo_flickr_id": "5134507343", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "46728", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to search online for ideas .", "storylet_id": "233640"}], [{"original_text": "I followed the simulations on the screen. ", "album_id": "72157625276203234", "photo_flickr_id": "5128258557", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "46728", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i followed the simulations on the screen .", "storylet_id": "233641"}], [{"original_text": "Here's the products I bought. ", "album_id": "72157625276203234", "photo_flickr_id": "5127676701", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "46728", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's the products i bought .", "storylet_id": "233642"}], [{"original_text": "I'm trying to affix the screws. ", "album_id": "72157625276203234", "photo_flickr_id": "5128886684", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "46728", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'm trying to affix the screws .", "storylet_id": "233643"}], [{"original_text": "The finished mask !", "album_id": "72157625276203234", "photo_flickr_id": "5130134324", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "46728", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finished mask !", "storylet_id": "233644"}], [{"original_text": "This is a picture of a macbook air.", "album_id": "72157625276203234", "photo_flickr_id": "5128258557", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "46729", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a macbook air .", "storylet_id": "233645"}], [{"original_text": "This is a picture of a man welding.", "album_id": "72157625276203234", "photo_flickr_id": "5127682063", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "46729", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a man welding .", "storylet_id": "233646"}], [{"original_text": "This is a picture of a man.", "album_id": "72157625276203234", "photo_flickr_id": "5128315933", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "46729", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of a man .", "storylet_id": "233647"}], [{"original_text": "This is a picture of a mask.", "album_id": "72157625276203234", "photo_flickr_id": "5130134324", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "46729", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of a mask .", "storylet_id": "233648"}], [{"original_text": "This is a photo of a black mask.", "album_id": "72157625276203234", "photo_flickr_id": "5130763820", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "46729", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a photo of a black mask .", "storylet_id": "233649"}], [{"original_text": "Jack is a great guy", "album_id": "72157625283215680", "photo_flickr_id": "5133559786", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46730", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is a great guy", "storylet_id": "233650"}], [{"original_text": "he likes to have fun in the woods", "album_id": "72157625283215680", "photo_flickr_id": "5128521454", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46730", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he likes to have fun in the woods", "storylet_id": "233651"}], [{"original_text": "he lives in a brick house", "album_id": "72157625283215680", "photo_flickr_id": "5132959291", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46730", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he lives in a brick house", "storylet_id": "233652"}], [{"original_text": "Jack has a vivid imagination", "album_id": "72157625283215680", "photo_flickr_id": "5132977397", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46730", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] has a vivid imagination", "storylet_id": "233653"}], [{"original_text": "someday Jack will be a star", "album_id": "72157625283215680", "photo_flickr_id": "5132988455", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46730", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someday [male] will be a star", "storylet_id": "233654"}], [{"original_text": "After the zombie apocalypse, ted just drives around hoping to find other people.", "album_id": "72157625283215680", "photo_flickr_id": "5131781121", "setting": "first-2-pick-and-tell", "worker_id": "9GKX2RSC19MHDGL", "story_id": "46731", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after the zombie apocalypse , ted just drives around hoping to find other people .", "storylet_id": "233655"}], [{"original_text": "He checks big universities in hopes of find someone left alive. ", "album_id": "72157625283215680", "photo_flickr_id": "5132990871", "setting": "first-2-pick-and-tell", "worker_id": "9GKX2RSC19MHDGL", "story_id": "46731", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he checks big universities in hopes of find someone left alive .", "storylet_id": "233656"}], [{"original_text": "It looks like he is having no better luck here.", "album_id": "72157625283215680", "photo_flickr_id": "5133561662", "setting": "first-2-pick-and-tell", "worker_id": "9GKX2RSC19MHDGL", "story_id": "46731", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it looks like he is having no better luck here .", "storylet_id": "233657"}], [{"original_text": "There just seems like no one is left. This is making Ted very sad.", "album_id": "72157625283215680", "photo_flickr_id": "5132989737", "setting": "first-2-pick-and-tell", "worker_id": "9GKX2RSC19MHDGL", "story_id": "46731", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there just seems like no one is left . this is making [male] very sad .", "storylet_id": "233658"}], [{"original_text": "So he moves one in hopes one day he might not be so lonely.", "album_id": "72157625283215680", "photo_flickr_id": "5133592888", "setting": "first-2-pick-and-tell", "worker_id": "9GKX2RSC19MHDGL", "story_id": "46731", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so he moves one in hopes one day he might not be so lonely .", "storylet_id": "233659"}], [{"original_text": "We went to visit Dave at college.", "album_id": "72157625283215680", "photo_flickr_id": "5133559786", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "46732", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to visit [male] at college .", "storylet_id": "233660"}], [{"original_text": "It was fall, so some of the campus was decorated for the season.", "album_id": "72157625283215680", "photo_flickr_id": "5128521454", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "46732", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was fall , so some of the campus was decorated for the season .", "storylet_id": "233661"}], [{"original_text": "He showed us around campus, including the quad.", "album_id": "72157625283215680", "photo_flickr_id": "5132959291", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "46732", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he showed us around campus , including the quad .", "storylet_id": "233662"}], [{"original_text": "There were some funny spots he knew about that he was eager to show us.", "album_id": "72157625283215680", "photo_flickr_id": "5132977397", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "46732", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were some funny spots he knew about that he was eager to show us .", "storylet_id": "233663"}], [{"original_text": "It was a great visit that went by too quickly!", "album_id": "72157625283215680", "photo_flickr_id": "5132988455", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "46732", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great visit that went by too quickly !", "storylet_id": "233664"}], [{"original_text": "The man woke up early to get ready for his trip.", "album_id": "72157625283215680", "photo_flickr_id": "5133559786", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46733", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man woke up early to get ready for his trip .", "storylet_id": "233665"}], [{"original_text": "His first stop was to check out the friendly scarecrow.", "album_id": "72157625283215680", "photo_flickr_id": "5128521454", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46733", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his first stop was to check out the friendly scarecrow .", "storylet_id": "233666"}], [{"original_text": "Then, he went to look at the gardens.", "album_id": "72157625283215680", "photo_flickr_id": "5132959291", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46733", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then , he went to look at the gardens .", "storylet_id": "233667"}], [{"original_text": "He came across a gorilla and could not resist being photographed with it.", "album_id": "72157625283215680", "photo_flickr_id": "5132977397", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46733", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he came across a gorilla and could not resist being photographed with it .", "storylet_id": "233668"}], [{"original_text": "He was very happy with himself!", "album_id": "72157625283215680", "photo_flickr_id": "5132988455", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "46733", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was very happy with himself !", "storylet_id": "233669"}], [{"original_text": "He worried about his receding hairline. ", "album_id": "72157625283215680", "photo_flickr_id": "5133559786", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46734", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he worried about his receding hairline .", "storylet_id": "233670"}], [{"original_text": "He thought he looked like a scarecrow. ", "album_id": "72157625283215680", "photo_flickr_id": "5128521454", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46734", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he thought he looked like a scarecrow .", "storylet_id": "233671"}], [{"original_text": "Often he would duck inside buildings, or hide behind trees. ", "album_id": "72157625283215680", "photo_flickr_id": "5132959291", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46734", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "often he would duck inside buildings , or hide behind trees .", "storylet_id": "233672"}], [{"original_text": "He was just so wrong for worrying about his hairline. ", "album_id": "72157625283215680", "photo_flickr_id": "5132977397", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46734", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was just so wrong for worrying about his hairline .", "storylet_id": "233673"}], [{"original_text": "He is a super cute guy. ", "album_id": "72157625283215680", "photo_flickr_id": "5132988455", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "46734", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he is a super cute guy .", "storylet_id": "233674"}], [{"original_text": "The pumpkin was angry.", "album_id": "72157625150106939", "photo_flickr_id": "5129104933", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "46735", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the pumpkin was angry .", "storylet_id": "233675"}], [{"original_text": "Someone had stolen all of his seeds.", "album_id": "72157625150106939", "photo_flickr_id": "5129708728", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "46735", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "someone had stolen all of his seeds .", "storylet_id": "233676"}], [{"original_text": "He waited patiently in front of the house for night to fall.", "album_id": "72157625150106939", "photo_flickr_id": "5129709970", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "46735", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he waited patiently in front of the house for night to fall .", "storylet_id": "233677"}], [{"original_text": "Once it was night time he made his move.", "album_id": "72157625150106939", "photo_flickr_id": "5130712084", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "46735", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once it was night time he made his move .", "storylet_id": "233678"}], [{"original_text": "He proceeded into the house to finally get his revenge. There were no survivors.", "album_id": "72157625150106939", "photo_flickr_id": "5130114317", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "46735", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he proceeded into the house to finally get his revenge . there were no survivors .", "storylet_id": "233679"}], [{"original_text": "Happy Halloween everyone.its time to celebrate. ", "album_id": "72157625150106939", "photo_flickr_id": "5129104933", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "46736", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "happy halloween everyone.its time to celebrate .", "storylet_id": "233680"}], [{"original_text": "This is the front steps entrance to the house.", "album_id": "72157625150106939", "photo_flickr_id": "5129109331", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "46736", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the front steps entrance to the house .", "storylet_id": "233681"}], [{"original_text": "Here's a photo of the front of the house ", "album_id": "72157625150106939", "photo_flickr_id": "5129709970", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "46736", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's a photo of the front of the house", "storylet_id": "233682"}], [{"original_text": "I love this photo of the house lit up at night ", "album_id": "72157625150106939", "photo_flickr_id": "5130112763", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "46736", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love this photo of the house lit up at night", "storylet_id": "233683"}], [{"original_text": "And here's the completed photo during the day ", "album_id": "72157625150106939", "photo_flickr_id": "5130114317", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "46736", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and here 's the completed photo during the day", "storylet_id": "233684"}], [{"original_text": "The family decided to decorate pumpkins for Halloween.", "album_id": "72157625150106939", "photo_flickr_id": "5129104933", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46737", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family decided to decorate pumpkins for halloween .", "storylet_id": "233685"}], [{"original_text": "We baked the pumpkin seeds from the pumpkins we carved out so we could eat them. ", "album_id": "72157625150106939", "photo_flickr_id": "5129708728", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46737", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we baked the pumpkin seeds from the pumpkins we carved out so we could eat them .", "storylet_id": "233686"}], [{"original_text": "The children placed a few pumpkins outside the front yard.", "album_id": "72157625150106939", "photo_flickr_id": "5129709970", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46737", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the children placed a few pumpkins outside the front yard .", "storylet_id": "233687"}], [{"original_text": "Carving a pumpkin inside a pumpkin was difficult, but it looked fascinating.", "album_id": "72157625150106939", "photo_flickr_id": "5130712084", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46737", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "carving a pumpkin inside a pumpkin was difficult , but it looked fascinating .", "storylet_id": "233688"}], [{"original_text": "We realized we scared some children away from our home. Not many children stopped by to grab candy. ", "album_id": "72157625150106939", "photo_flickr_id": "5130114317", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "46737", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we realized we scared some children away from our home . not many children stopped by to grab candy .", "storylet_id": "233689"}], [{"original_text": "The Halloween decorations were pretty big and frightening. ", "album_id": "72157625150106939", "photo_flickr_id": "5129104933", "setting": "last-3-pick-old-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "46738", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the halloween decorations were pretty big and frightening .", "storylet_id": "233690"}], [{"original_text": "A big dinner for holiday was about to be ready.", "album_id": "72157625150106939", "photo_flickr_id": "5129708728", "setting": "last-3-pick-old-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "46738", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a big dinner for holiday was about to be ready .", "storylet_id": "233691"}], [{"original_text": "They cared and set decorations in front of the house.", "album_id": "72157625150106939", "photo_flickr_id": "5129709970", "setting": "last-3-pick-old-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "46738", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they cared and set decorations in front of the house .", "storylet_id": "233692"}], [{"original_text": "One of big pumpkin fell down. ", "album_id": "72157625150106939", "photo_flickr_id": "5130712084", "setting": "last-3-pick-old-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "46738", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of big pumpkin fell down .", "storylet_id": "233693"}], [{"original_text": "They needed to put decoration in order again. ", "album_id": "72157625150106939", "photo_flickr_id": "5130114317", "setting": "last-3-pick-old-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "46738", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they needed to put decoration in order again .", "storylet_id": "233694"}], [{"original_text": "The jack o lantern was seen eating a little pumpkin.", "album_id": "72157625150106939", "photo_flickr_id": "5129104933", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46739", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the jack o lantern was seen eating a little pumpkin .", "storylet_id": "233695"}], [{"original_text": "The seeds were being dried out to be cooked in the oven.", "album_id": "72157625150106939", "photo_flickr_id": "5129708728", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46739", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the seeds were being dried out to be cooked in the oven .", "storylet_id": "233696"}], [{"original_text": "The outside of the house with the jack o lanterns during the day.", "album_id": "72157625150106939", "photo_flickr_id": "5129709970", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46739", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the outside of the house with the jack o lanterns during the day .", "storylet_id": "233697"}], [{"original_text": "The other jack o lantern had its mouth full as well.", "album_id": "72157625150106939", "photo_flickr_id": "5130712084", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46739", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the other jack o lantern had its mouth full as well .", "storylet_id": "233698"}], [{"original_text": "The outside with the jack o lanterns lit up for the night.", "album_id": "72157625150106939", "photo_flickr_id": "5130114317", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46739", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the outside with the jack o lanterns lit up for the night .", "storylet_id": "233699"}], [{"original_text": "The kids were all ready for trick or treat.", "album_id": "72157623197339229", "photo_flickr_id": "4320108268", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46740", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids were all ready for trick or treat .", "storylet_id": "233700"}], [{"original_text": "When they arrived back home, they were worn out, but happy.", "album_id": "72157623197339229", "photo_flickr_id": "4320097894", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46740", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when they arrived back home , they were worn out , but happy .", "storylet_id": "233701"}], [{"original_text": "So many candies were brought home!", "album_id": "72157623197339229", "photo_flickr_id": "4320097172", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46740", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so many candies were brought home !", "storylet_id": "233702"}], [{"original_text": "This was their take.", "album_id": "72157623197339229", "photo_flickr_id": "4319362615", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46740", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was their take .", "storylet_id": "233703"}], [{"original_text": "He didn't reallize how much candy he had in that bag!", "album_id": "72157623197339229", "photo_flickr_id": "4320095682", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46740", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he did n't reallize how much candy he had in that bag !", "storylet_id": "233704"}], [{"original_text": "Look how much candy I have mom!", "album_id": "72157623197339229", "photo_flickr_id": "4319364221", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "46741", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "look how much candy i have mom !", "storylet_id": "233705"}], [{"original_text": "I have all this candy from tonight.", "album_id": "72157623197339229", "photo_flickr_id": "4320097172", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "46741", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i have all this candy from tonight .", "storylet_id": "233706"}], [{"original_text": "I'm going to organize it as much as possible.", "album_id": "72157623197339229", "photo_flickr_id": "4319362615", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "46741", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i 'm going to organize it as much as possible .", "storylet_id": "233707"}], [{"original_text": "Wait, there's no point.", "album_id": "72157623197339229", "photo_flickr_id": "4320095682", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "46741", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "wait , there 's no point .", "storylet_id": "233708"}], [{"original_text": "I'm just going to eat it all by myself anyways.", "album_id": "72157623197339229", "photo_flickr_id": "4320095410", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "46741", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm just going to eat it all by myself anyways .", "storylet_id": "233709"}], [{"original_text": "The last pose before heading out for treats.", "album_id": "72157623197339229", "photo_flickr_id": "4320108268", "setting": "last-3-pick-old-and-tell", "worker_id": "6TC11LV0IFG94CU", "story_id": "46742", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the last pose before heading out for treats .", "storylet_id": "233710"}], [{"original_text": "I wonder where my buddy went.", "album_id": "72157623197339229", "photo_flickr_id": "4320097894", "setting": "last-3-pick-old-and-tell", "worker_id": "6TC11LV0IFG94CU", "story_id": "46742", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i wonder where my buddy went .", "storylet_id": "233711"}], [{"original_text": "I got my cute little green bag filled. ", "album_id": "72157623197339229", "photo_flickr_id": "4320097172", "setting": "last-3-pick-old-and-tell", "worker_id": "6TC11LV0IFG94CU", "story_id": "46742", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got my cute little green bag filled .", "storylet_id": "233712"}], [{"original_text": "It was a great night. Look at all the great candy I got. ", "album_id": "72157623197339229", "photo_flickr_id": "4319362615", "setting": "last-3-pick-old-and-tell", "worker_id": "6TC11LV0IFG94CU", "story_id": "46742", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a great night . look at all the great candy i got .", "storylet_id": "233713"}], [{"original_text": "Why can't I eat my candy for dinner?", "album_id": "72157623197339229", "photo_flickr_id": "4320095682", "setting": "last-3-pick-old-and-tell", "worker_id": "6TC11LV0IFG94CU", "story_id": "46742", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "why ca n't i eat my candy for dinner ?", "storylet_id": "233714"}], [{"original_text": "I convinced my friends to go with me to the party last night.", "album_id": "72157623197339229", "photo_flickr_id": "4320108268", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46743", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i convinced my friends to go with me to the party last night .", "storylet_id": "233715"}], [{"original_text": "They put together their own costumes for the party.", "album_id": "72157623197339229", "photo_flickr_id": "4320097894", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46743", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they put together their own costumes for the party .", "storylet_id": "233716"}], [{"original_text": "We got a lot of candy from trick or treating.", "album_id": "72157623197339229", "photo_flickr_id": "4320097172", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46743", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got a lot of candy from trick or treating .", "storylet_id": "233717"}], [{"original_text": "We laid out all of our catch for the day.", "album_id": "72157623197339229", "photo_flickr_id": "4319362615", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46743", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we laid out all of our catch for the day .", "storylet_id": "233718"}], [{"original_text": "We wondered how we were going to eat all of it.", "album_id": "72157623197339229", "photo_flickr_id": "4320095682", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46743", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we wondered how we were going to eat all of it .", "storylet_id": "233719"}], [{"original_text": "getting ready for halloween, sure to scare for some candy", "album_id": "72157623197339229", "photo_flickr_id": "4320108268", "setting": "last-3-pick-old-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "46744", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting ready for halloween , sure to scare for some candy", "storylet_id": "233720"}], [{"original_text": "right after getting some loot", "album_id": "72157623197339229", "photo_flickr_id": "4320097894", "setting": "last-3-pick-old-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "46744", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "right after getting some loot", "storylet_id": "233721"}], [{"original_text": "the bag nearly filled up with the loot", "album_id": "72157623197339229", "photo_flickr_id": "4320097172", "setting": "last-3-pick-old-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "46744", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bag nearly filled up with the loot", "storylet_id": "233722"}], [{"original_text": "unloading the spoils", "album_id": "72157623197339229", "photo_flickr_id": "4319362615", "setting": "last-3-pick-old-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "46744", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "unloading the spoils", "storylet_id": "233723"}], [{"original_text": "what to do with all this candy?", "album_id": "72157623197339229", "photo_flickr_id": "4320095682", "setting": "last-3-pick-old-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "46744", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what to do with all this candy ?", "storylet_id": "233724"}], [{"original_text": "Here is an old picture of my dad.", "album_id": "72157623324729396", "photo_flickr_id": "4321455414", "setting": "first-2-pick-and-tell", "worker_id": "X0FFO3RA1W0DRKX", "story_id": "46745", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is an old picture of my dad .", "storylet_id": "233725"}], [{"original_text": "This is me when I was 7 years old.", "album_id": "72157623324729396", "photo_flickr_id": "4320722789", "setting": "first-2-pick-and-tell", "worker_id": "X0FFO3RA1W0DRKX", "story_id": "46745", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is me when i was 7 years old .", "storylet_id": "233726"}], [{"original_text": "That's my Kindergarten class picture with Mrs. Jones front and center.", "album_id": "72157623324729396", "photo_flickr_id": "4321456306", "setting": "first-2-pick-and-tell", "worker_id": "X0FFO3RA1W0DRKX", "story_id": "46745", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that 's my kindergarten class picture with mrs. jones front and center .", "storylet_id": "233727"}], [{"original_text": "The first day my kid brother was born.", "album_id": "72157623324729396", "photo_flickr_id": "4320998043", "setting": "first-2-pick-and-tell", "worker_id": "X0FFO3RA1W0DRKX", "story_id": "46745", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the first day my kid brother was born .", "storylet_id": "233728"}], [{"original_text": "My baseball card from my senior year in high school.", "album_id": "72157623324729396", "photo_flickr_id": "4320995933", "setting": "first-2-pick-and-tell", "worker_id": "X0FFO3RA1W0DRKX", "story_id": "46745", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my baseball card from my senior year in high school .", "storylet_id": "233729"}], [{"original_text": "I was looking through and old shoebox one day and I found a bunch of photos.", "album_id": "72157623324729396", "photo_flickr_id": "4320722789", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46746", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was looking through and old shoebox one day and i found a bunch of photos .", "storylet_id": "233730"}], [{"original_text": "This one is from my mom's side of the family.", "album_id": "72157623324729396", "photo_flickr_id": "4321456306", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46746", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one is from my mom 's side of the family .", "storylet_id": "233731"}], [{"original_text": "This is some old coupon.", "album_id": "72157623324729396", "photo_flickr_id": "4321457904", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46746", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is some old coupon .", "storylet_id": "233732"}], [{"original_text": "This is me when I was born.", "album_id": "72157623324729396", "photo_flickr_id": "4320998043", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46746", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is me when i was born .", "storylet_id": "233733"}], [{"original_text": "This was my favorite hockey player.", "album_id": "72157623324729396", "photo_flickr_id": "4320995933", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46746", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was my favorite hockey player .", "storylet_id": "233734"}], [{"original_text": "This was a picture taken a long time ago.", "album_id": "72157623324729396", "photo_flickr_id": "4321455414", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46747", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was a picture taken a long time ago .", "storylet_id": "233735"}], [{"original_text": "This was him when he was young.", "album_id": "72157623324729396", "photo_flickr_id": "4320722789", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46747", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was him when he was young .", "storylet_id": "233736"}], [{"original_text": "This was his class picture.", "album_id": "72157623324729396", "photo_flickr_id": "4321456306", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46747", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was his class picture .", "storylet_id": "233737"}], [{"original_text": "This was the boy when he was a baby.", "album_id": "72157623324729396", "photo_flickr_id": "4320998043", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46747", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was the boy when he was a baby .", "storylet_id": "233738"}], [{"original_text": "This was a trading card of his. ", "album_id": "72157623324729396", "photo_flickr_id": "4320995933", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "46747", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was a trading card of his .", "storylet_id": "233739"}], [{"original_text": "Joe took out all his old pictures.", "album_id": "72157623324729396", "photo_flickr_id": "4320722789", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46748", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] took out all his old pictures .", "storylet_id": "233740"}], [{"original_text": "He found a class photo from his childhood.", "album_id": "72157623324729396", "photo_flickr_id": "4321456306", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46748", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he found a class photo from his childhood .", "storylet_id": "233741"}], [{"original_text": "This coupon he had saved expired twenty years ago.", "album_id": "72157623324729396", "photo_flickr_id": "4321457904", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46748", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this coupon he had saved expired twenty years ago .", "storylet_id": "233742"}], [{"original_text": "He found a photo of his sister's birth.", "album_id": "72157623324729396", "photo_flickr_id": "4320998043", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46748", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he found a photo of his sister 's birth .", "storylet_id": "233743"}], [{"original_text": "He was happy to still have a collectible card from his favorite team.", "album_id": "72157623324729396", "photo_flickr_id": "4320995933", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "46748", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was happy to still have a collectible card from his favorite team .", "storylet_id": "233744"}], [{"original_text": "I found a box in my fathers old room of cards and photos. This is him next to a fireplace.", "album_id": "72157623324729396", "photo_flickr_id": "4321455414", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46749", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i found a box in my fathers old room of cards and photos . this is him next to a fireplace .", "storylet_id": "233745"}], [{"original_text": "This is a photo of myself when I was just a boy. I was holding an award.", "album_id": "72157623324729396", "photo_flickr_id": "4320722789", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46749", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a photo of myself when i was just a boy . i was holding an award .", "storylet_id": "233746"}], [{"original_text": "This is a school photo of me when I was just five years old.", "album_id": "72157623324729396", "photo_flickr_id": "4321456306", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46749", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a school photo of me when i was just five years old .", "storylet_id": "233747"}], [{"original_text": "This is my mother sitting next to me baby sister.", "album_id": "72157623324729396", "photo_flickr_id": "4320998043", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46749", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is my mother sitting next to me baby sister .", "storylet_id": "233748"}], [{"original_text": "This is a playing card of my favorite child hood player Bob Murray.", "album_id": "72157623324729396", "photo_flickr_id": "4320995933", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46749", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a playing card of my favorite child hood player [male] [male] .", "storylet_id": "233749"}], [{"original_text": "Our October trip to Disney World in Florida.", "album_id": "72157624852981218", "photo_flickr_id": "4947302832", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46750", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our october trip to organization organization in location .", "storylet_id": "233750"}], [{"original_text": "Some decorations like flowers were there for the season.", "album_id": "72157624852981218", "photo_flickr_id": "4946713379", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46750", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some decorations like flowers were there for the season .", "storylet_id": "233751"}], [{"original_text": "More recently everything was decorated with jack-o-lanterns. This is where we had lunch.", "album_id": "72157624852981218", "photo_flickr_id": "4946713497", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46750", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "more recently everything was decorated with jack-o-lanterns . this is where we had lunch .", "storylet_id": "233752"}], [{"original_text": "Even the information booth was decorated.", "album_id": "72157624852981218", "photo_flickr_id": "4946714125", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46750", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the information booth was decorated .", "storylet_id": "233753"}], [{"original_text": "My favorite was this witch pumpkin. ", "album_id": "72157624852981218", "photo_flickr_id": "4947303648", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46750", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite was this witch pumpkin .", "storylet_id": "233754"}], [{"original_text": "We had a Halloween festival in town.", "album_id": "72157624852981218", "photo_flickr_id": "4947302832", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46751", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a halloween festival in town .", "storylet_id": "233755"}], [{"original_text": "There where a lot of decorations.", "album_id": "72157624852981218", "photo_flickr_id": "4947302938", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46751", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there where a lot of decorations .", "storylet_id": "233756"}], [{"original_text": "There was a lot of jack o lanterns.", "album_id": "72157624852981218", "photo_flickr_id": "4946713497", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46751", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a lot of jack o lanterns .", "storylet_id": "233757"}], [{"original_text": "The decorations where very cool.", "album_id": "72157624852981218", "photo_flickr_id": "4946714125", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46751", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the decorations where very cool .", "storylet_id": "233758"}], [{"original_text": "It was a fun day.", "album_id": "72157624852981218", "photo_flickr_id": "4947303648", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "46751", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a fun day .", "storylet_id": "233759"}], [{"original_text": "The sifewalked was painted. ", "album_id": "72157624852981218", "photo_flickr_id": "4947302832", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46752", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sifewalked was painted .", "storylet_id": "233760"}], [{"original_text": "The flowers were very tall and beautiful. ", "album_id": "72157624852981218", "photo_flickr_id": "4946713379", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46752", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flowers were very tall and beautiful .", "storylet_id": "233761"}], [{"original_text": "Pumpkins rested on the balcony.", "album_id": "72157624852981218", "photo_flickr_id": "4946713497", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46752", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "pumpkins rested on the balcony .", "storylet_id": "233762"}], [{"original_text": "It took a lot of work to get our creations on the roof.", "album_id": "72157624852981218", "photo_flickr_id": "4946714125", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46752", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it took a lot of work to get our creations on the roof .", "storylet_id": "233763"}], [{"original_text": "This pumpkin won the competition. ", "album_id": "72157624852981218", "photo_flickr_id": "4947303648", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46752", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this pumpkin won the competition .", "storylet_id": "233764"}], [{"original_text": "We took a trip to the Magic Kingdom.", "album_id": "72157624852981218", "photo_flickr_id": "4947302832", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46753", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to the magic kingdom .", "storylet_id": "233765"}], [{"original_text": "Disneyland presents its visitors with a an assortment of flowers.", "album_id": "72157624852981218", "photo_flickr_id": "4946713379", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46753", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "organization presents its visitors with a an assortment of flowers .", "storylet_id": "233766"}], [{"original_text": "We went to Tony's Restaurant to recharge our energy for the day.", "album_id": "72157624852981218", "photo_flickr_id": "4946713497", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46753", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went to [male] 's restaurant to recharge our energy for the day .", "storylet_id": "233767"}], [{"original_text": "Here are 4 pumpkins that are carved with smirks on their faces.", "album_id": "72157624852981218", "photo_flickr_id": "4946714125", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46753", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here are 4 pumpkins that are carved with smirks on their faces .", "storylet_id": "233768"}], [{"original_text": "Like the carving on the pumpkin, we had to fly away to our destination.", "album_id": "72157624852981218", "photo_flickr_id": "4947303648", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46753", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "like the carving on the pumpkin , we had to fly away to our destination .", "storylet_id": "233769"}], [{"original_text": "Going to the Magic Kingdom today for Halloween festival!", "album_id": "72157624852981218", "photo_flickr_id": "4947302832", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46754", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going to the magic kingdom today for halloween festival !", "storylet_id": "233770"}], [{"original_text": "Such a beautiful view! I love it here!", "album_id": "72157624852981218", "photo_flickr_id": "4946713379", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46754", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "such a beautiful view ! i love it here !", "storylet_id": "233771"}], [{"original_text": "Cute pumpkins above Tony's Restaurant this place is the best!", "album_id": "72157624852981218", "photo_flickr_id": "4946713497", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46754", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "cute pumpkins above [male] 's restaurant this place is the best !", "storylet_id": "233772"}], [{"original_text": "look at these pumpkins with facial expressions!", "album_id": "72157624852981218", "photo_flickr_id": "4946714125", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46754", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look at these pumpkins with facial expressions !", "storylet_id": "233773"}], [{"original_text": "My favorite pumpkin of them all! The Witch Pumpkin!", "album_id": "72157624852981218", "photo_flickr_id": "4947303648", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "46754", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite pumpkin of them all ! the witch pumpkin !", "storylet_id": "233774"}], [{"original_text": "Halloween was fast approaching.", "album_id": "11799", "photo_flickr_id": "483006", "setting": "first-2-pick-and-tell", "worker_id": "XHSGIOFF42JVSG7", "story_id": "46755", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "halloween was fast approaching .", "storylet_id": "233775"}], [{"original_text": "The family decided to go to the Great Pumpkin Blaze.", "album_id": "11799", "photo_flickr_id": "483011", "setting": "first-2-pick-and-tell", "worker_id": "XHSGIOFF42JVSG7", "story_id": "46755", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family decided to go to the location location location .", "storylet_id": "233776"}], [{"original_text": "Jack-o-Lanterns everywhere in beautiful and scary designs.", "album_id": "11799", "photo_flickr_id": "483013", "setting": "first-2-pick-and-tell", "worker_id": "XHSGIOFF42JVSG7", "story_id": "46755", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "jack-o-lanterns everywhere in beautiful and scary designs .", "storylet_id": "233777"}], [{"original_text": "Some simple some intricate.", "album_id": "11799", "photo_flickr_id": "483019", "setting": "first-2-pick-and-tell", "worker_id": "XHSGIOFF42JVSG7", "story_id": "46755", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some simple some intricate .", "storylet_id": "233778"}], [{"original_text": "They never saw so many pumpkins!", "album_id": "11799", "photo_flickr_id": "483023", "setting": "first-2-pick-and-tell", "worker_id": "XHSGIOFF42JVSG7", "story_id": "46755", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they never saw so many pumpkins !", "storylet_id": "233779"}], [{"original_text": "The stairs to this place were really set up for Halloween. ", "album_id": "11799", "photo_flickr_id": "483006", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46756", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stairs to this place were really set up for halloween .", "storylet_id": "233780"}], [{"original_text": "Some weren carved to be cute ", "album_id": "11799", "photo_flickr_id": "483009", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46756", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some weren carved to be cute", "storylet_id": "233781"}], [{"original_text": "Others went for scary designs. ", "album_id": "11799", "photo_flickr_id": "483024", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46756", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others went for scary designs .", "storylet_id": "233782"}], [{"original_text": "and some were simple enough to be done by younger children.", "album_id": "11799", "photo_flickr_id": "483019", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46756", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and some were simple enough to be done by younger children .", "storylet_id": "233783"}], [{"original_text": "As we left we saw this guy taking pictures with his phone. ", "album_id": "11799", "photo_flickr_id": "483025", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46756", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as we left we saw this guy taking pictures with his phone .", "storylet_id": "233784"}], [{"original_text": "The lanterns lit up the dark night. ", "album_id": "11799", "photo_flickr_id": "483006", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46757", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lanterns lit up the dark night .", "storylet_id": "233785"}], [{"original_text": "There we're several intricate lanterns.", "album_id": "11799", "photo_flickr_id": "483009", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46757", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there we 're several intricate lanterns .", "storylet_id": "233786"}], [{"original_text": "Many of the lanterns showed very well at night time.", "album_id": "11799", "photo_flickr_id": "483024", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46757", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many of the lanterns showed very well at night time .", "storylet_id": "233787"}], [{"original_text": "My lantern was spooky and ghoulish. ", "album_id": "11799", "photo_flickr_id": "483019", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46757", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my lantern was spooky and ghoulish .", "storylet_id": "233788"}], [{"original_text": "I used my smartphone to take a gallery of photos.", "album_id": "11799", "photo_flickr_id": "483025", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46757", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i used my smartphone to take a gallery of photos .", "storylet_id": "233789"}], [{"original_text": "We decided to go all out with pumpkin carving this past Halloween.", "album_id": "11799", "photo_flickr_id": "483006", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "46758", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go all out with pumpkin carving this past halloween .", "storylet_id": "233790"}], [{"original_text": "This was suppose to turn out to be a tree. It turned out alright!", "album_id": "11799", "photo_flickr_id": "483011", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "46758", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was suppose to turn out to be a tree . it turned out alright !", "storylet_id": "233791"}], [{"original_text": "Of course you have to have a basic scary face. The basic essential of all pumpkin carving designs.", "album_id": "11799", "photo_flickr_id": "483013", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "46758", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course you have to have a basic scary face . the basic essential of all pumpkin carving designs .", "storylet_id": "233792"}], [{"original_text": "And you can't just have one! We really had the Halloween fever last year.", "album_id": "11799", "photo_flickr_id": "483019", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "46758", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and you ca n't just have one ! we really had the halloween fever last year .", "storylet_id": "233793"}], [{"original_text": "The fun thing about carving is the unlimited designs you can do. From basic designs to ones with one eye and a lightning bolt for the other.... I can't wait to carve again for this upcoming year.", "album_id": "11799", "photo_flickr_id": "483023", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "46758", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fun thing about carving is the unlimited designs you can do . from basic designs to ones with one eye and a lightning bolt for the other ... . i ca n't wait to carve again for this upcoming year .", "storylet_id": "233794"}], [{"original_text": "This is the ambiance of our halloweens usually, we start out with this section with two rows of jack o'lanterns..", "album_id": "11799", "photo_flickr_id": "483006", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "46759", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the ambiance of our halloweens usually , we start out with this section with two rows of jack o'lanterns..", "storylet_id": "233795"}], [{"original_text": "I'll close in on this one, what do you think this one is?", "album_id": "11799", "photo_flickr_id": "483009", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "46759", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'll close in on this one , what do you think this one is ?", "storylet_id": "233796"}], [{"original_text": "This is definitely a pig.", "album_id": "11799", "photo_flickr_id": "483024", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "46759", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is definitely a pig .", "storylet_id": "233797"}], [{"original_text": "This one looks like someone shot a hole into its chin, oops!", "album_id": "11799", "photo_flickr_id": "483019", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "46759", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one looks like someone shot a hole into its chin , oops !", "storylet_id": "233798"}], [{"original_text": "Somehow my friend got in this picture with his cellphone out by the front.", "album_id": "11799", "photo_flickr_id": "483025", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "46759", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "somehow my friend got in this picture with his cellphone out by the front .", "storylet_id": "233799"}], [{"original_text": "This is our home in the winter. It can get a bit chilly.", "album_id": "72157600759188796", "photo_flickr_id": "775768694", "setting": "first-2-pick-and-tell", "worker_id": "J6HSGR4B2DJTVJT", "story_id": "46760", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is our home in the winter . it can get a bit chilly .", "storylet_id": "233800"}], [{"original_text": "here's our family all bundled together.", "album_id": "72157600759188796", "photo_flickr_id": "775768732", "setting": "first-2-pick-and-tell", "worker_id": "J6HSGR4B2DJTVJT", "story_id": "46760", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's our family all bundled together .", "storylet_id": "233801"}], [{"original_text": "We decided to go a little ways south to get away from the cold.", "album_id": "72157600759188796", "photo_flickr_id": "774893413", "setting": "first-2-pick-and-tell", "worker_id": "J6HSGR4B2DJTVJT", "story_id": "46760", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we decided to go a little ways south to get away from the cold .", "storylet_id": "233802"}], [{"original_text": "Here's John sitting on the balcony of our hotel.", "album_id": "72157600759188796", "photo_flickr_id": "774893437", "setting": "first-2-pick-and-tell", "worker_id": "J6HSGR4B2DJTVJT", "story_id": "46760", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's [male] sitting on the balcony of our hotel .", "storylet_id": "233803"}], [{"original_text": "Here are some fountains that we found in the downtown area. Aren't they pretty?", "album_id": "72157600759188796", "photo_flickr_id": "775768818", "setting": "first-2-pick-and-tell", "worker_id": "J6HSGR4B2DJTVJT", "story_id": "46760", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here are some fountains that we found in the downtown area . are n't they pretty ?", "storylet_id": "233804"}], [{"original_text": "The city was vast. Harold wondered how he would like this new city. ", "album_id": "72157600759188796", "photo_flickr_id": "774893413", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46761", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city was vast . [male] wondered how he would like this new city .", "storylet_id": "233805"}], [{"original_text": "He found a pretty house in a nice neighborhood. In winter it looked like a postcard.", "album_id": "72157600759188796", "photo_flickr_id": "775768694", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46761", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he found a pretty house in a nice neighborhood . in winter it looked like a postcard .", "storylet_id": "233806"}], [{"original_text": "Harold discovered a river he thought he could fish in. ", "album_id": "72157600759188796", "photo_flickr_id": "775768772", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46761", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] discovered a river he thought he could fish in .", "storylet_id": "233807"}], [{"original_text": "Harold found a swing large enough for an adult. ", "album_id": "72157600759188796", "photo_flickr_id": "775768792", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46761", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] found a swing large enough for an adult .", "storylet_id": "233808"}], [{"original_text": "After several months living in his new city Harold knew he loved this place.", "album_id": "72157600759188796", "photo_flickr_id": "774893437", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46761", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after several months living in his new city [male] knew he loved this place .", "storylet_id": "233809"}], [{"original_text": "My new apartment has plenty to offer, and one of those things is a magnificent view of the city.", "album_id": "72157600759188796", "photo_flickr_id": "774893413", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46762", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my new apartment has plenty to offer , and one of those things is a magnificent view of the city .", "storylet_id": "233810"}], [{"original_text": "In winter, the neighborhood has a quaint feeling that I love.", "album_id": "72157600759188796", "photo_flickr_id": "775768694", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46762", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in winter , the neighborhood has a quaint feeling that i love .", "storylet_id": "233811"}], [{"original_text": "And for the summer months, it's right across the street from a beautiful little park.", "album_id": "72157600759188796", "photo_flickr_id": "775768772", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46762", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and for the summer months , it 's right across the street from a beautiful little park .", "storylet_id": "233812"}], [{"original_text": "I can act as silly as I want there.", "album_id": "72157600759188796", "photo_flickr_id": "775768792", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46762", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i can act as silly as i want there .", "storylet_id": "233813"}], [{"original_text": "Yes, I definitely found the perfect apartment for all seasons.", "album_id": "72157600759188796", "photo_flickr_id": "774893437", "setting": "last-3-pick-old-and-tell", "worker_id": "6VC1H04HGDHD8CI", "story_id": "46762", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "yes , i definitely found the perfect apartment for all seasons .", "storylet_id": "233814"}], [{"original_text": "The city was filled with a snow base.", "album_id": "72157600759188796", "photo_flickr_id": "775768694", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46763", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city was filled with a snow base .", "storylet_id": "233815"}], [{"original_text": "We took a group photo in our living room.", "album_id": "72157600759188796", "photo_flickr_id": "775768732", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46763", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a group photo in our living room .", "storylet_id": "233816"}], [{"original_text": "Outside, the city line was amazing. ", "album_id": "72157600759188796", "photo_flickr_id": "774893413", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46763", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "outside , the city line was amazing .", "storylet_id": "233817"}], [{"original_text": "I told my friend to take a photo in front of the city.", "album_id": "72157600759188796", "photo_flickr_id": "774893437", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46763", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i told my friend to take a photo in front of the city .", "storylet_id": "233818"}], [{"original_text": "The water fountain in the city was grand. ", "album_id": "72157600759188796", "photo_flickr_id": "775768818", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "46763", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the water fountain in the city was grand .", "storylet_id": "233819"}], [{"original_text": "The view in our room was beautiful.", "album_id": "72157600759188796", "photo_flickr_id": "774893413", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46764", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the view in our room was beautiful .", "storylet_id": "233820"}], [{"original_text": "The day after, we visited the mountains for fresh air.", "album_id": "72157600759188796", "photo_flickr_id": "775768694", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46764", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the day after , we visited the mountains for fresh air .", "storylet_id": "233821"}], [{"original_text": "We hiked up the trail to stop at this lake.", "album_id": "72157600759188796", "photo_flickr_id": "775768772", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46764", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we hiked up the trail to stop at this lake .", "storylet_id": "233822"}], [{"original_text": "I had lots of fun on the swinging set.", "album_id": "72157600759188796", "photo_flickr_id": "775768792", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46764", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had lots of fun on the swinging set .", "storylet_id": "233823"}], [{"original_text": "This town continues to inspire me.", "album_id": "72157600759188796", "photo_flickr_id": "774893437", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46764", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this town continues to inspire me .", "storylet_id": "233824"}], [{"original_text": "Here I am getting ready.", "album_id": "30356", "photo_flickr_id": "1183920", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "46765", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here i am getting ready .", "storylet_id": "233825"}], [{"original_text": "Now I have a shirt on.", "album_id": "30356", "photo_flickr_id": "1183927", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "46765", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "now i have a shirt on .", "storylet_id": "233826"}], [{"original_text": "Here's me with my mask.", "album_id": "30356", "photo_flickr_id": "1183934", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "46765", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's me with my mask .", "storylet_id": "233827"}], [{"original_text": "Who is this pink haired lady?", "album_id": "30356", "photo_flickr_id": "1183962", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "46765", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "who is this pink haired lady ?", "storylet_id": "233828"}], [{"original_text": "And why is that guy staring at me?", "album_id": "30356", "photo_flickr_id": "1183966", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "46765", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and why is that guy staring at me ?", "storylet_id": "233829"}], [{"original_text": "Susan is at home getting ready for the costume party at her friend's house.", "album_id": "30356", "photo_flickr_id": "1183920", "setting": "first-2-pick-and-tell", "worker_id": "89NM124JOXN14TG", "story_id": "46766", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is at home getting ready for the costume party at her friend 's house .", "storylet_id": "233830"}], [{"original_text": "She has decided to dress up in a gothic theme and has selected the perfect dress for the occasion.", "album_id": "30356", "photo_flickr_id": "1183927", "setting": "first-2-pick-and-tell", "worker_id": "89NM124JOXN14TG", "story_id": "46766", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she has decided to dress up in a gothic theme and has selected the perfect dress for the occasion .", "storylet_id": "233831"}], [{"original_text": "Maggie applies makeup, including white face powder, and black lip and eye liner to really dress the part.", "album_id": "30356", "photo_flickr_id": "1184018", "setting": "first-2-pick-and-tell", "worker_id": "89NM124JOXN14TG", "story_id": "46766", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] applies makeup , including white face powder , and black lip and eye liner to really dress the part .", "storylet_id": "233832"}], [{"original_text": "Her look is almost complete with great makeup and an added cape around her gothic dress.", "album_id": "30356", "photo_flickr_id": "1184048", "setting": "first-2-pick-and-tell", "worker_id": "89NM124JOXN14TG", "story_id": "46766", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her look is almost complete with great makeup and an added cape around her gothic dress .", "storylet_id": "233833"}], [{"original_text": "Finally, the perfect finishing touch, a mysterious mask.", "album_id": "30356", "photo_flickr_id": "1183934", "setting": "first-2-pick-and-tell", "worker_id": "89NM124JOXN14TG", "story_id": "46766", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , the perfect finishing touch , a mysterious mask .", "storylet_id": "233834"}], [{"original_text": "Halloween is my favorite holiday.", "album_id": "30356", "photo_flickr_id": "1183920", "setting": "last-3-pick-old-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "46767", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "halloween is my favorite holiday .", "storylet_id": "233835"}], [{"original_text": "A little goth makeup, and a pretty dress start the transformation.", "album_id": "30356", "photo_flickr_id": "1183927", "setting": "last-3-pick-old-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "46767", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a little goth makeup , and a pretty dress start the transformation .", "storylet_id": "233836"}], [{"original_text": "Add the mask and the transformation is complete.", "album_id": "30356", "photo_flickr_id": "1183934", "setting": "last-3-pick-old-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "46767", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "add the mask and the transformation is complete .", "storylet_id": "233837"}], [{"original_text": "It's the one time of the year you can let your inner self shine through.", "album_id": "30356", "photo_flickr_id": "1183962", "setting": "last-3-pick-old-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "46767", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's the one time of the year you can let your inner self shine through .", "storylet_id": "233838"}], [{"original_text": "Now it's time to dance the night away.", "album_id": "30356", "photo_flickr_id": "1183966", "setting": "last-3-pick-old-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "46767", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now it 's time to dance the night away .", "storylet_id": "233839"}], [{"original_text": "Taking a selfie before I put on my costume.", "album_id": "30356", "photo_flickr_id": "1183920", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "46768", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "taking a selfie before i put on my costume .", "storylet_id": "233840"}], [{"original_text": "The makeup is all done.", "album_id": "30356", "photo_flickr_id": "1183927", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "46768", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the makeup is all done .", "storylet_id": "233841"}], [{"original_text": "It 's all coming together now that I have my cape on.", "album_id": "30356", "photo_flickr_id": "1184018", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "46768", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's all coming together now that i have my cape on .", "storylet_id": "233842"}], [{"original_text": "I had to get one big smile.", "album_id": "30356", "photo_flickr_id": "1184048", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "46768", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had to get one big smile .", "storylet_id": "233843"}], [{"original_text": "I have my serious face on now. I think the mask pulled it all together. ", "album_id": "30356", "photo_flickr_id": "1183934", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "46768", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i have my serious face on now . i think the mask pulled it all together .", "storylet_id": "233844"}], [{"original_text": "Today I made my makeup crazy for the masquerade ball. ", "album_id": "30356", "photo_flickr_id": "1183920", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "46769", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i made my makeup crazy for the masquerade ball .", "storylet_id": "233845"}], [{"original_text": "I put on period Victorian clothing as well. ", "album_id": "30356", "photo_flickr_id": "1183927", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "46769", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i put on period victorian clothing as well .", "storylet_id": "233846"}], [{"original_text": "I decorated my mask with silver lining. ", "album_id": "30356", "photo_flickr_id": "1183934", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "46769", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i decorated my mask with silver lining .", "storylet_id": "233847"}], [{"original_text": "I went to the ball with my best friend. ", "album_id": "30356", "photo_flickr_id": "1183962", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "46769", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i went to the ball with my best friend .", "storylet_id": "233848"}], [{"original_text": "There were so many people dancing and drinking. ", "album_id": "30356", "photo_flickr_id": "1183966", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "46769", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were so many people dancing and drinking .", "storylet_id": "233849"}], [{"original_text": "Halloween night. The adults are ready to go trick or treating.", "album_id": "1267016", "photo_flickr_id": "58578995", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46770", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "halloween night . the adults are ready to go trick or treating .", "storylet_id": "233850"}], [{"original_text": "The kids are also ready to go get their loot.", "album_id": "1267016", "photo_flickr_id": "58579222", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46770", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids are also ready to go get their loot .", "storylet_id": "233851"}], [{"original_text": "They look adorable.", "album_id": "1267016", "photo_flickr_id": "58579189", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46770", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they look adorable .", "storylet_id": "233852"}], [{"original_text": "It was a busy night for those passing out candy.", "album_id": "1267016", "photo_flickr_id": "58578941", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46770", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a busy night for those passing out candy .", "storylet_id": "233853"}], [{"original_text": "What a great evening.", "album_id": "1267016", "photo_flickr_id": "58578892", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46770", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what a great evening .", "storylet_id": "233854"}], [{"original_text": "The family is getting ready for trick or treat.", "album_id": "1267016", "photo_flickr_id": "58578995", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "46771", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family is getting ready for trick or treat .", "storylet_id": "233855"}], [{"original_text": "Why not take a free ride!", "album_id": "1267016", "photo_flickr_id": "58579307", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "46771", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "why not take a free ride !", "storylet_id": "233856"}], [{"original_text": "Who will get the best treat?", "album_id": "1267016", "photo_flickr_id": "58579222", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "46771", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "who will get the best treat ?", "storylet_id": "233857"}], [{"original_text": "Trick or Treat...give me something good to eat!", "album_id": "1267016", "photo_flickr_id": "58579357", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "46771", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "trick or treat ... give me something good to eat !", "storylet_id": "233858"}], [{"original_text": "Night time brings out the crowds and the fun.", "album_id": "1267016", "photo_flickr_id": "58578941", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "46771", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "night time brings out the crowds and the fun .", "storylet_id": "233859"}], [{"original_text": "The family poses on the entryway for Halloween pictures.", "album_id": "1267016", "photo_flickr_id": "58578995", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46772", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family poses on the entryway for halloween pictures .", "storylet_id": "233860"}], [{"original_text": "The little toddler is dressed up in the Halloween costume.", "album_id": "1267016", "photo_flickr_id": "58579307", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46772", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the little toddler is dressed up in the halloween costume .", "storylet_id": "233861"}], [{"original_text": "All the little kids are dressed up in their costumes.", "album_id": "1267016", "photo_flickr_id": "58579222", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46772", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the little kids are dressed up in their costumes .", "storylet_id": "233862"}], [{"original_text": "The little kid has a lion costume on.", "album_id": "1267016", "photo_flickr_id": "58579357", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46772", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the little kid has a lion costume on .", "storylet_id": "233863"}], [{"original_text": "The outside of the house with all the people or the Halloween festival.", "album_id": "1267016", "photo_flickr_id": "58578941", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46772", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the outside of the house with all the people or the halloween festival .", "storylet_id": "233864"}], [{"original_text": "This family had a fun Halloween.", "album_id": "1267016", "photo_flickr_id": "58578995", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZI4DXJ0ZJ5U63Y", "story_id": "46773", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this family had a fun halloween .", "storylet_id": "233865"}], [{"original_text": "All of the kids had cute costumes.", "album_id": "1267016", "photo_flickr_id": "58579222", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZI4DXJ0ZJ5U63Y", "story_id": "46773", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the kids had cute costumes .", "storylet_id": "233866"}], [{"original_text": "The more we looked at them, the cuter they got.", "album_id": "1267016", "photo_flickr_id": "58579189", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZI4DXJ0ZJ5U63Y", "story_id": "46773", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the more we looked at them , the cuter they got .", "storylet_id": "233867"}], [{"original_text": "We went to this huge party too.", "album_id": "1267016", "photo_flickr_id": "58578941", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZI4DXJ0ZJ5U63Y", "story_id": "46773", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went to this huge party too .", "storylet_id": "233868"}], [{"original_text": "Even the youngest one got some candy.", "album_id": "1267016", "photo_flickr_id": "58578892", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZI4DXJ0ZJ5U63Y", "story_id": "46773", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the youngest one got some candy .", "storylet_id": "233869"}], [{"original_text": "This Halloween was so much fun seeing all the costumes that the families wore. ", "album_id": "1267016", "photo_flickr_id": "58578995", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "46774", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this halloween was so much fun seeing all the costumes that the families wore .", "storylet_id": "233870"}], [{"original_text": "This little one was so cute in his home made costume that his mom made for him. ", "album_id": "1267016", "photo_flickr_id": "58579307", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "46774", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this little one was so cute in his home made costume that his mom made for him .", "storylet_id": "233871"}], [{"original_text": "Just loved seeing all the little ones in their costumes they were so ready to go out and trick or treat.", "album_id": "1267016", "photo_flickr_id": "58579222", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "46774", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "just loved seeing all the little ones in their costumes they were so ready to go out and trick or treat .", "storylet_id": "233872"}], [{"original_text": "That face tells the whole story about the eagerness this little one has to get started. ", "album_id": "1267016", "photo_flickr_id": "58579357", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "46774", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that face tells the whole story about the eagerness this little one has to get started .", "storylet_id": "233873"}], [{"original_text": "Then we all ended the day going to the haunted house up the road. This is the best part of the day.", "album_id": "1267016", "photo_flickr_id": "58578941", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "46774", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we all ended the day going to the haunted house up the road . this is the best part of the day .", "storylet_id": "233874"}], [{"original_text": "Welcome. Welcome to my home.", "album_id": "1268379", "photo_flickr_id": "58639087", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46775", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "welcome . welcome to my home .", "storylet_id": "233875"}], [{"original_text": "Tonight, we will have treats, or possibly tricks.", "album_id": "1268379", "photo_flickr_id": "58639628", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46775", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "tonight , we will have treats , or possibly tricks .", "storylet_id": "233876"}], [{"original_text": "He may do an evil magic illusion.", "album_id": "1268379", "photo_flickr_id": "58640044", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46775", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he may do an evil magic illusion .", "storylet_id": "233877"}], [{"original_text": "She might give you a special apple.", "album_id": "1268379", "photo_flickr_id": "58639365", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46775", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she might give you a special apple .", "storylet_id": "233878"}], [{"original_text": "Beware, little one.", "album_id": "1268379", "photo_flickr_id": "58639276", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "46775", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "beware , little one .", "storylet_id": "233879"}], [{"original_text": "It was a spooky night in our neighborhood as everyone prepared for Halloween festivities.", "album_id": "1268379", "photo_flickr_id": "58639542", "setting": "first-2-pick-and-tell", "worker_id": "LQ3QZUCYP671Z0Y", "story_id": "46776", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a spooky night in our neighborhood as everyone prepared for halloween festivities .", "storylet_id": "233880"}], [{"original_text": "Our very best friends and neighbors arrived to help us get ready for the party and trick or treaters.", "album_id": "1268379", "photo_flickr_id": "58639827", "setting": "first-2-pick-and-tell", "worker_id": "LQ3QZUCYP671Z0Y", "story_id": "46776", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our very best friends and neighbors arrived to help us get ready for the party and trick or treaters .", "storylet_id": "233881"}], [{"original_text": "After a quick snack we all got to work on pumpkin carving and decorations.", "album_id": "1268379", "photo_flickr_id": "58639511", "setting": "first-2-pick-and-tell", "worker_id": "LQ3QZUCYP671Z0Y", "story_id": "46776", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after a quick snack we all got to work on pumpkin carving and decorations .", "storylet_id": "233882"}], [{"original_text": "The pumpkins came out amazing and we arranged them outside to greet the kids coming for candy.", "album_id": "1268379", "photo_flickr_id": "58639628", "setting": "first-2-pick-and-tell", "worker_id": "LQ3QZUCYP671Z0Y", "story_id": "46776", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pumpkins came out amazing and we arranged them outside to greet the kids coming for candy .", "storylet_id": "233883"}], [{"original_text": "Our first friend in costume arrived and it was Superman. He was the first of many visitors that night!", "album_id": "1268379", "photo_flickr_id": "58639276", "setting": "first-2-pick-and-tell", "worker_id": "LQ3QZUCYP671Z0Y", "story_id": "46776", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our first friend in costume arrived and it was superman . he was the first of many visitors that night !", "storylet_id": "233884"}], [{"original_text": "I invited all of my friends to my house for the Halloween party.", "album_id": "1268379", "photo_flickr_id": "58639542", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46777", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i invited all of my friends to my house for the halloween party .", "storylet_id": "233885"}], [{"original_text": "Everyone dressed up.", "album_id": "1268379", "photo_flickr_id": "58639827", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46777", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone dressed up .", "storylet_id": "233886"}], [{"original_text": "We all sat and had some coffee together.", "album_id": "1268379", "photo_flickr_id": "58639511", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46777", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all sat and had some coffee together .", "storylet_id": "233887"}], [{"original_text": "Afterward we got started on the jack-o-lanterns.", "album_id": "1268379", "photo_flickr_id": "58639628", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46777", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we got started on the jack-o-lanterns .", "storylet_id": "233888"}], [{"original_text": "Once it got dark there were some children asking for candy.", "album_id": "1268379", "photo_flickr_id": "58639276", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46777", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once it got dark there were some children asking for candy .", "storylet_id": "233889"}], [{"original_text": "I love decorating for Halloween. ", "album_id": "1268379", "photo_flickr_id": "58639542", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "46778", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love decorating for halloween .", "storylet_id": "233890"}], [{"original_text": "And I was thrilled that some of my friends were coming by to celebrate with me. ", "album_id": "1268379", "photo_flickr_id": "58639827", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "46778", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and i was thrilled that some of my friends were coming by to celebrate with me .", "storylet_id": "233891"}], [{"original_text": "We had some snacks and thought about how we wanted to decorate our pumpkins. ", "album_id": "1268379", "photo_flickr_id": "58639511", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "46778", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had some snacks and thought about how we wanted to decorate our pumpkins .", "storylet_id": "233892"}], [{"original_text": "We had a great time creating our pumpkins and putting them out on display. ", "album_id": "1268379", "photo_flickr_id": "58639628", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "46778", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a great time creating our pumpkins and putting them out on display .", "storylet_id": "233893"}], [{"original_text": "Then we welcomed the first of our trick or treaters. ", "album_id": "1268379", "photo_flickr_id": "58639276", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "46778", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we welcomed the first of our trick or treaters .", "storylet_id": "233894"}], [{"original_text": "I know I go a little overboard for Halloween. But I love dressing up.", "album_id": "1268379", "photo_flickr_id": "58639087", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46779", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i know i go a little overboard for halloween . but i love dressing up .", "storylet_id": "233895"}], [{"original_text": "Once I get started making jack-o-lanterns, I can't stop.", "album_id": "1268379", "photo_flickr_id": "58639628", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46779", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once i get started making jack-o-lanterns , i ca n't stop .", "storylet_id": "233896"}], [{"original_text": "I made my husband dress up too. He's a good sport about it.", "album_id": "1268379", "photo_flickr_id": "58640044", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46779", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i made my husband dress up too . he 's a good sport about it .", "storylet_id": "233897"}], [{"original_text": "My sister Laura comes over to help hand out candy, and she does it up big too.", "album_id": "1268379", "photo_flickr_id": "58639365", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46779", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my sister [female] comes over to help hand out candy , and she does it up big too .", "storylet_id": "233898"}], [{"original_text": "We love to see all the little dressed up kids. It's the best night of the year.", "album_id": "1268379", "photo_flickr_id": "58639276", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46779", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we love to see all the little dressed up kids . it 's the best night of the year .", "storylet_id": "233899"}], [{"original_text": "A rave party is about to start at the club.", "album_id": "72157602825085661", "photo_flickr_id": "1813543795", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46780", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a rave party is about to start at the club .", "storylet_id": "233900"}], [{"original_text": "Party goers from all over town show up, some in unique costumes.", "album_id": "72157602825085661", "photo_flickr_id": "1814389972", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46780", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "party goers from all over town show up , some in unique costumes .", "storylet_id": "233901"}], [{"original_text": "As more people arrive, friends are reunited and begin partying together.", "album_id": "72157602825085661", "photo_flickr_id": "1813554677", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46780", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as more people arrive , friends are reunited and begin partying together .", "storylet_id": "233902"}], [{"original_text": "The lights are turned off and the party begins, with flashing and blinking strobe lights.", "album_id": "72157602825085661", "photo_flickr_id": "1814407664", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46780", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lights are turned off and the party begins , with flashing and blinking strobe lights .", "storylet_id": "233903"}], [{"original_text": "A large turnout means lots of fun for all party goers.", "album_id": "72157602825085661", "photo_flickr_id": "1813576385", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46780", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a large turnout means lots of fun for all party goers .", "storylet_id": "233904"}], [{"original_text": "As they walk up they check out the sign", "album_id": "72157602825085661", "photo_flickr_id": "1813543795", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46781", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as they walk up they check out the sign", "storylet_id": "233905"}], [{"original_text": "Before the festivities he paused to take a picture.", "album_id": "72157602825085661", "photo_flickr_id": "1814388258", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46781", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before the festivities he paused to take a picture .", "storylet_id": "233906"}], [{"original_text": "He took a picture of his best friends before the party started.", "album_id": "72157602825085661", "photo_flickr_id": "1813551265", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46781", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he took a picture of his best friends before the party started .", "storylet_id": "233907"}], [{"original_text": "They are headed out to the light show.", "album_id": "72157602825085661", "photo_flickr_id": "1814414318", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46781", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they are headed out to the light show .", "storylet_id": "233908"}], [{"original_text": "The bright lights were quite exciting to end the night.", "album_id": "72157602825085661", "photo_flickr_id": "1814422346", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46781", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bright lights were quite exciting to end the night .", "storylet_id": "233909"}], [{"original_text": "Upon seeing the sign, everyone knew that the rave was going to be fun.", "album_id": "72157602825085661", "photo_flickr_id": "1813543795", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "46782", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "upon seeing the sign , everyone knew that the rave was going to be fun .", "storylet_id": "233910"}], [{"original_text": "He didn't know what to expect going in but found that he was having a great time.", "album_id": "72157602825085661", "photo_flickr_id": "1814388258", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "46782", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he did n't know what to expect going in but found that he was having a great time .", "storylet_id": "233911"}], [{"original_text": "He even made a friend or two once the party started.", "album_id": "72157602825085661", "photo_flickr_id": "1813551265", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "46782", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he even made a friend or two once the party started .", "storylet_id": "233912"}], [{"original_text": "His sister found the party props made it all seem even more exhilarating. ", "album_id": "72157602825085661", "photo_flickr_id": "1814414318", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "46782", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his sister found the party props made it all seem even more exhilarating .", "storylet_id": "233913"}], [{"original_text": "The lights from the rave danced along the dark lit room to create a dazzling effect as everyone danced the night away.", "album_id": "72157602825085661", "photo_flickr_id": "1814422346", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "46782", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lights from the rave danced along the dark lit room to create a dazzling effect as everyone danced the night away .", "storylet_id": "233914"}], [{"original_text": "The rave promised to be a great party.", "album_id": "72157602825085661", "photo_flickr_id": "1813543795", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46783", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the rave promised to be a great party .", "storylet_id": "233915"}], [{"original_text": "The man was ready for an exciting night, and hoped to scare a few friends with his mask.", "album_id": "72157602825085661", "photo_flickr_id": "1814389972", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46783", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man was ready for an exciting night , and hoped to scare a few friends with his mask .", "storylet_id": "233916"}], [{"original_text": "The friends were not loosened up yet, but the night was still young!", "album_id": "72157602825085661", "photo_flickr_id": "1813554677", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46783", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the friends were not loosened up yet , but the night was still young !", "storylet_id": "233917"}], [{"original_text": "The party was filled with colors and lights.", "album_id": "72157602825085661", "photo_flickr_id": "1814407664", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46783", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the party was filled with colors and lights .", "storylet_id": "233918"}], [{"original_text": "The friends crowded together to chat. The girl hoped her angel costume would be a big hit.", "album_id": "72157602825085661", "photo_flickr_id": "1813576385", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46783", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the friends crowded together to chat . the girl hoped her angel costume would be a big hit .", "storylet_id": "233919"}], [{"original_text": "It is rave night at the Flu Room!", "album_id": "72157602825085661", "photo_flickr_id": "1813543795", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46784", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is rave night at the flu room !", "storylet_id": "233920"}], [{"original_text": "Rave night makes this guy pretty happy. Peace!", "album_id": "72157602825085661", "photo_flickr_id": "1814388258", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46784", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "rave night makes this guy pretty happy . peace !", "storylet_id": "233921"}], [{"original_text": "Everyone is happier with a cocktail in hand.", "album_id": "72157602825085661", "photo_flickr_id": "1813551265", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46784", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone is happier with a cocktail in hand .", "storylet_id": "233922"}], [{"original_text": "Per-ma grin and huge glasses we do not need to tell these girls how to have a good time.", "album_id": "72157602825085661", "photo_flickr_id": "1814414318", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46784", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "per-ma grin and huge glasses we do not need to tell these girls how to have a good time .", "storylet_id": "233923"}], [{"original_text": "Pretty lights! Happy people , this night is a success.", "album_id": "72157602825085661", "photo_flickr_id": "1814422346", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46784", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "pretty lights ! happy people , this night is a success .", "storylet_id": "233924"}], [{"original_text": "The yearly office Halloween party always brings out some creative and unique costumes.", "album_id": "72157602825367937", "photo_flickr_id": "1814567466", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46785", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the yearly office halloween party always brings out some creative and unique costumes .", "storylet_id": "233925"}], [{"original_text": "Everyone enjoys having the opportunity to relax from work and enjoy themselves.", "album_id": "72157602825367937", "photo_flickr_id": "1814567558", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46785", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone enjoys having the opportunity to relax from work and enjoy themselves .", "storylet_id": "233926"}], [{"original_text": "Some employees spend months thinking of and designing their costumes.", "album_id": "72157602825367937", "photo_flickr_id": "1814567624", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46785", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some employees spend months thinking of and designing their costumes .", "storylet_id": "233927"}], [{"original_text": "While others simply show up in another uniform for a different job!", "album_id": "72157602825367937", "photo_flickr_id": "1813723929", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46785", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while others simply show up in another uniform for a different job !", "storylet_id": "233928"}], [{"original_text": "At the end of the day, much fun is had and work morale is high.", "album_id": "72157602825367937", "photo_flickr_id": "1814569068", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46785", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , much fun is had and work morale is high .", "storylet_id": "233929"}], [{"original_text": "Work was very fun yesterday because everyone dressed up for Halloween.", "album_id": "72157602825367937", "photo_flickr_id": "1813723261", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46786", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "work was very fun yesterday because everyone dressed up for halloween .", "storylet_id": "233930"}], [{"original_text": "Some people had uniforms as costumes.", "album_id": "72157602825367937", "photo_flickr_id": "1813723349", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46786", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some people had uniforms as costumes .", "storylet_id": "233931"}], [{"original_text": "Most people took the time to dress up nicely.", "album_id": "72157602825367937", "photo_flickr_id": "1813723721", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46786", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most people took the time to dress up nicely .", "storylet_id": "233932"}], [{"original_text": "There were a lot of great costume ideas.", "album_id": "72157602825367937", "photo_flickr_id": "1813723803", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46786", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of great costume ideas .", "storylet_id": "233933"}], [{"original_text": "Everyone had a great time.", "album_id": "72157602825367937", "photo_flickr_id": "1813724483", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46786", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time .", "storylet_id": "233934"}], [{"original_text": "Halloween at work was always fun because of the amazing costumes people wore, like the boss as a blue fairy.", "album_id": "72157602825367937", "photo_flickr_id": "1814567466", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "46787", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "halloween at work was always fun because of the amazing costumes people wore , like the boss as a blue fairy .", "storylet_id": "233935"}], [{"original_text": "Sometimes, it was harder to tell what someone dressed up as. He could have been a rock star or a television character. It was fun to guess.", "album_id": "72157602825367937", "photo_flickr_id": "1814567558", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "46787", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sometimes , it was harder to tell what someone dressed up as . he could have been a rock star or a television character . it was fun to guess .", "storylet_id": "233936"}], [{"original_text": "She always dressed up as Disney villains. We were excited to see who she would be next.", "album_id": "72157602825367937", "photo_flickr_id": "1814567624", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "46787", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she always dressed up as organization villains . we were excited to see who she would be next .", "storylet_id": "233937"}], [{"original_text": "Meanwhile, others would dress up to honor our soldiers.", "album_id": "72157602825367937", "photo_flickr_id": "1813723929", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "46787", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "meanwhile , others would dress up to honor our soldiers .", "storylet_id": "233938"}], [{"original_text": "Some people even brought their children in on the fun. It was an amazing day.", "album_id": "72157602825367937", "photo_flickr_id": "1814569068", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "46787", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people even brought their children in on the fun . it was an amazing day .", "storylet_id": "233939"}], [{"original_text": "Halloween was not that interesting for her, so she didn't bother dressing up.", "album_id": "72157602825367937", "photo_flickr_id": "1813723261", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46788", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "halloween was not that interesting for her , so she did n't bother dressing up .", "storylet_id": "233940"}], [{"original_text": "She borrowed a karate costume to celebrate, and loved wearing it to work.", "album_id": "72157602825367937", "photo_flickr_id": "1813723349", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46788", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she borrowed a karate costume to celebrate , and loved wearing it to work .", "storylet_id": "233941"}], [{"original_text": "She always wanted to be a kitty, and here was her chance!", "album_id": "72157602825367937", "photo_flickr_id": "1813723721", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46788", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she always wanted to be a kitty , and here was her chance !", "storylet_id": "233942"}], [{"original_text": "Their costumes made them feel like they could be anything they wanted to be.", "album_id": "72157602825367937", "photo_flickr_id": "1813723803", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46788", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their costumes made them feel like they could be anything they wanted to be .", "storylet_id": "233943"}], [{"original_text": "She felt a little odd wearing a hat at work, but she'd always wanted to be a cowgirl!", "album_id": "72157602825367937", "photo_flickr_id": "1813724483", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46788", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she felt a little odd wearing a hat at work , but she 'd always wanted to be a cowgirl !", "storylet_id": "233944"}], [{"original_text": "Halloween is just another day at the office for some people.", "album_id": "72157602825367937", "photo_flickr_id": "1813723261", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46789", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "halloween is just another day at the office for some people .", "storylet_id": "233945"}], [{"original_text": "For some people Halloween is a chance to wear that kung foo suit that has been in the back of the closet for too long.", "album_id": "72157602825367937", "photo_flickr_id": "1813723349", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46789", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "for some people halloween is a chance to wear that kung foo suit that has been in the back of the closet for too long .", "storylet_id": "233946"}], [{"original_text": "It is more fun to take calls at your desk when you are a cat.", "album_id": "72157602825367937", "photo_flickr_id": "1813723721", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46789", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is more fun to take calls at your desk when you are a cat .", "storylet_id": "233947"}], [{"original_text": "Let's all pose with this skinny fellow. The office girls are looking good.", "album_id": "72157602825367937", "photo_flickr_id": "1813723803", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46789", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "let 's all pose with this skinny fellow . the office girls are looking good .", "storylet_id": "233948"}], [{"original_text": "I want to be a cowgirl! Happy Halloween!!", "album_id": "72157602825367937", "photo_flickr_id": "1813724483", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46789", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i want to be a cowgirl ! happy halloween ! !", "storylet_id": "233949"}], [{"original_text": "I threw a Halloween party at my house yesterday.", "album_id": "72157602826978150", "photo_flickr_id": "1816149945", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46790", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i threw a halloween party at my house yesterday .", "storylet_id": "233950"}], [{"original_text": "There was a huge turnout.", "album_id": "72157602826978150", "photo_flickr_id": "1816150907", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46790", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a huge turnout .", "storylet_id": "233951"}], [{"original_text": "The party was full of people.", "album_id": "72157602826978150", "photo_flickr_id": "1816139735", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46790", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the party was full of people .", "storylet_id": "233952"}], [{"original_text": "Everyone was chatting with one another.", "album_id": "72157602826978150", "photo_flickr_id": "1816141021", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46790", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was chatting with one another .", "storylet_id": "233953"}], [{"original_text": "I got to meet a lot of new people.", "album_id": "72157602826978150", "photo_flickr_id": "1816983852", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46790", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i got to meet a lot of new people .", "storylet_id": "233954"}], [{"original_text": "We made our home into a haunted house for Halloween. ", "album_id": "72157602826978150", "photo_flickr_id": "1816990584", "setting": "first-2-pick-and-tell", "worker_id": "Z3GUPM672ZRPLXL", "story_id": "46791", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we made our home into a haunted house for halloween .", "storylet_id": "233955"}], [{"original_text": "We put a big orange sign in the front yard. ", "album_id": "72157602826978150", "photo_flickr_id": "1816149945", "setting": "first-2-pick-and-tell", "worker_id": "Z3GUPM672ZRPLXL", "story_id": "46791", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we put a big orange sign in the front yard .", "storylet_id": "233956"}], [{"original_text": "We put up a big Michael Meyers scarecrow in the front yard to scare everyone too. ", "album_id": "72157602826978150", "photo_flickr_id": "1816150907", "setting": "first-2-pick-and-tell", "worker_id": "Z3GUPM672ZRPLXL", "story_id": "46791", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we put up a big [male] meyers scarecrow in the front yard to scare everyone too .", "storylet_id": "233957"}], [{"original_text": "The entrance looks really creepy and scary. ", "album_id": "72157602826978150", "photo_flickr_id": "1816143181", "setting": "first-2-pick-and-tell", "worker_id": "Z3GUPM672ZRPLXL", "story_id": "46791", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the entrance looks really creepy and scary .", "storylet_id": "233958"}], [{"original_text": "It was a huge set up and took over the whole slide of the house.", "album_id": "72157602826978150", "photo_flickr_id": "1816988088", "setting": "first-2-pick-and-tell", "worker_id": "Z3GUPM672ZRPLXL", "story_id": "46791", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a huge set up and took over the whole slide of the house .", "storylet_id": "233959"}], [{"original_text": "The Halloween party was great, everyone came out in costume.", "album_id": "72157602826978150", "photo_flickr_id": "1816990584", "setting": "last-3-pick-old-and-tell", "worker_id": "TRXDNMNZ92OL3C5", "story_id": "46792", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the halloween party was great , everyone came out in costume .", "storylet_id": "233960"}], [{"original_text": "Everyone had a fun time with each others costumes.", "album_id": "72157602826978150", "photo_flickr_id": "1816149945", "setting": "last-3-pick-old-and-tell", "worker_id": "TRXDNMNZ92OL3C5", "story_id": "46792", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone had a fun time with each others costumes .", "storylet_id": "233961"}], [{"original_text": "Little Annie and the bumble bee pose for the camera.", "album_id": "72157602826978150", "photo_flickr_id": "1816150907", "setting": "last-3-pick-old-and-tell", "worker_id": "TRXDNMNZ92OL3C5", "story_id": "46792", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "organization organization and the bumble bee pose for the camera .", "storylet_id": "233962"}], [{"original_text": "The 70's disco look was in vogue tonight.", "album_id": "72157602826978150", "photo_flickr_id": "1816143181", "setting": "last-3-pick-old-and-tell", "worker_id": "TRXDNMNZ92OL3C5", "story_id": "46792", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the 70 's disco look was in vogue tonight .", "storylet_id": "233963"}], [{"original_text": "Fun times all around as everyone wants their picture taken, what a fun evening.", "album_id": "72157602826978150", "photo_flickr_id": "1816988088", "setting": "last-3-pick-old-and-tell", "worker_id": "TRXDNMNZ92OL3C5", "story_id": "46792", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fun times all around as everyone wants their picture taken , what a fun evening .", "storylet_id": "233964"}], [{"original_text": "The party was a big hit for everyone.", "album_id": "72157602826978150", "photo_flickr_id": "1816990584", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46793", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party was a big hit for everyone .", "storylet_id": "233965"}], [{"original_text": "Some guests posed for the camera, proud of their costume choices.", "album_id": "72157602826978150", "photo_flickr_id": "1816149945", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46793", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some guests posed for the camera , proud of their costume choices .", "storylet_id": "233966"}], [{"original_text": "The two friends enjoyed their outfits, especially the woman in the bee costume.", "album_id": "72157602826978150", "photo_flickr_id": "1816150907", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46793", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the two friends enjoyed their outfits , especially the woman in the bee costume .", "storylet_id": "233967"}], [{"original_text": "The couple was thrilled to bring back the 60's, complete with fluffy afro wigs.", "album_id": "72157602826978150", "photo_flickr_id": "1816143181", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46793", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple was thrilled to bring back the 60 's , complete with fluffy afro wigs .", "storylet_id": "233968"}], [{"original_text": "The superhero costume made a man feel brave, as he posed with his friends.", "album_id": "72157602826978150", "photo_flickr_id": "1816988088", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "46793", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the superhero costume made a man feel brave , as he posed with his friends .", "storylet_id": "233969"}], [{"original_text": "A group photo before the Halloween party", "album_id": "72157602826978150", "photo_flickr_id": "1816149945", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46794", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group photo before the halloween party", "storylet_id": "233970"}], [{"original_text": "She really like her bumblebee outfit", "album_id": "72157602826978150", "photo_flickr_id": "1816150907", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46794", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she really like her bumblebee outfit", "storylet_id": "233971"}], [{"original_text": "Everyone is dressed up for the Halloween", "album_id": "72157602826978150", "photo_flickr_id": "1816139735", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46794", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone is dressed up for the halloween", "storylet_id": "233972"}], [{"original_text": "Sitting on the stairs and deciding what to do later tonight", "album_id": "72157602826978150", "photo_flickr_id": "1816141021", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46794", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sitting on the stairs and deciding what to do later tonight", "storylet_id": "233973"}], [{"original_text": "She does not like his hat, but they look nice in this photo", "album_id": "72157602826978150", "photo_flickr_id": "1816983852", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46794", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she does not like his hat , but they look nice in this photo", "storylet_id": "233974"}], [{"original_text": "College halloween parties allow college students to take a break from their hard work.", "album_id": "72157602828723902", "photo_flickr_id": "1817119967", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46795", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "college halloween parties allow college students to take a break from their hard work .", "storylet_id": "233975"}], [{"original_text": "It also lets students come up with creative (and provocative) costumes.", "album_id": "72157602828723902", "photo_flickr_id": "1817138501", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46795", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it also lets students come up with creative ( and provocative ) costumes .", "storylet_id": "233976"}], [{"original_text": "Lots of students enjoy dressing up and then seeing their friends dressed up in different costumes.", "album_id": "72157602828723902", "photo_flickr_id": "1818000052", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46795", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lots of students enjoy dressing up and then seeing their friends dressed up in different costumes .", "storylet_id": "233977"}], [{"original_text": "They will sometimes attend a dance or party where they can dance the night away.", "album_id": "72157602828723902", "photo_flickr_id": "1817192189", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46795", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they will sometimes attend a dance or party where they can dance the night away .", "storylet_id": "233978"}], [{"original_text": "Most have so fun that they are upset when the night ends.", "album_id": "72157602828723902", "photo_flickr_id": "1818058250", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46795", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "most have so fun that they are upset when the night ends .", "storylet_id": "233979"}], [{"original_text": "There were a lot of people at the Halloween party last night.", "album_id": "72157602828723902", "photo_flickr_id": "1817164493", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46796", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of people at the halloween party last night .", "storylet_id": "233980"}], [{"original_text": "We had it in a basement.", "album_id": "72157602828723902", "photo_flickr_id": "1818027524", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46796", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had it in a basement .", "storylet_id": "233981"}], [{"original_text": "Tons of people were there and dressed up.", "album_id": "72157602828723902", "photo_flickr_id": "1817192189", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46796", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "tons of people were there and dressed up .", "storylet_id": "233982"}], [{"original_text": "I had fun taking pictures with all of them.", "album_id": "72157602828723902", "photo_flickr_id": "1817197211", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46796", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had fun taking pictures with all of them .", "storylet_id": "233983"}], [{"original_text": "Some people did not like the party.", "album_id": "72157602828723902", "photo_flickr_id": "1817213759", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46796", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people did not like the party .", "storylet_id": "233984"}], [{"original_text": "This man and women are headed to a Halloween bash.", "album_id": "72157602828723902", "photo_flickr_id": "1817119967", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46797", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this man and women are headed to a halloween bash .", "storylet_id": "233985"}], [{"original_text": "This women decided to make up her costume for the Halloween bash.", "album_id": "72157602828723902", "photo_flickr_id": "1817138501", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46797", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this women decided to make up her costume for the halloween bash .", "storylet_id": "233986"}], [{"original_text": "As these three friends get together somebody feels left out.", "album_id": "72157602828723902", "photo_flickr_id": "1818000052", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46797", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as these three friends get together somebody feels left out .", "storylet_id": "233987"}], [{"original_text": "As the girl in blue photo bombs a picture the girl with pigtails is pretending to be happy.", "album_id": "72157602828723902", "photo_flickr_id": "1817192189", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46797", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the girl in blue photo bombs a picture the girl with pigtails is pretending to be happy .", "storylet_id": "233988"}], [{"original_text": "But deep down inside she wish the girl in blue didn't photo bomb her photo.", "album_id": "72157602828723902", "photo_flickr_id": "1818058250", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46797", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but deep down inside she wish the girl in blue did n't photo bomb her photo .", "storylet_id": "233989"}], [{"original_text": "Everyone started showing up for the Halloween party. ", "album_id": "72157602828723902", "photo_flickr_id": "1817164493", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46798", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone started showing up for the halloween party .", "storylet_id": "233990"}], [{"original_text": "More people showed up than what was expected! ", "album_id": "72157602828723902", "photo_flickr_id": "1818027524", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46798", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "more people showed up than what was expected !", "storylet_id": "233991"}], [{"original_text": "They all stopped to pose for goofy photos. ", "album_id": "72157602828723902", "photo_flickr_id": "1817192189", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46798", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all stopped to pose for goofy photos .", "storylet_id": "233992"}], [{"original_text": "Many of the costumes showed a lot of skin, of course. ", "album_id": "72157602828723902", "photo_flickr_id": "1817197211", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46798", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many of the costumes showed a lot of skin , of course .", "storylet_id": "233993"}], [{"original_text": "And then there were intricate costumes like this one. ", "album_id": "72157602828723902", "photo_flickr_id": "1817213759", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46798", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then there were intricate costumes like this one .", "storylet_id": "233994"}], [{"original_text": "At the Halloween party, my friends were dressed up as two people on a boat.", "album_id": "72157602828723902", "photo_flickr_id": "1817119967", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46799", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the halloween party , my friends were dressed up as two people on a boat .", "storylet_id": "233995"}], [{"original_text": "My other friend had her costume on that she thought she would not fit into.", "album_id": "72157602828723902", "photo_flickr_id": "1817138501", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46799", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my other friend had her costume on that she thought she would not fit into .", "storylet_id": "233996"}], [{"original_text": "My two friends got a picture with a guy wearing a skeleton mask and shirt.", "album_id": "72157602828723902", "photo_flickr_id": "1818000052", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46799", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my two friends got a picture with a guy wearing a skeleton mask and shirt .", "storylet_id": "233997"}], [{"original_text": "The party was a hit and everyone enjoyed each others company.", "album_id": "72157602828723902", "photo_flickr_id": "1817192189", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46799", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the party was a hit and everyone enjoyed each others company .", "storylet_id": "233998"}], [{"original_text": "My friend was upset that her costume was shown up by many other people.", "album_id": "72157602828723902", "photo_flickr_id": "1818058250", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46799", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my friend was upset that her costume was shown up by many other people .", "storylet_id": "233999"}], [{"original_text": "Last week we had a pizza party for the class for Halloween.", "album_id": "72157637196375134", "photo_flickr_id": "10611979785", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46800", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week we had a pizza party for the class for halloween .", "storylet_id": "234000"}], [{"original_text": "I let all of the kids dress up for the day.", "album_id": "72157637196375134", "photo_flickr_id": "10612242413", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46800", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i let all of the kids dress up for the day .", "storylet_id": "234001"}], [{"original_text": "Everyone brought some very unique costumes.", "album_id": "72157637196375134", "photo_flickr_id": "10612044916", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46800", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone brought some very unique costumes .", "storylet_id": "234002"}], [{"original_text": "All of the children had a great time.", "album_id": "72157637196375134", "photo_flickr_id": "10612022385", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46800", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the children had a great time .", "storylet_id": "234003"}], [{"original_text": "I made sure to dress up as well.", "album_id": "72157637196375134", "photo_flickr_id": "10612037035", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46800", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i made sure to dress up as well .", "storylet_id": "234004"}], [{"original_text": "For Halloween, the Bennigan family dressed up as Batman and Robin. this family of 5 had 3 Batmans and 2 Robins. ", "album_id": "72157637196375134", "photo_flickr_id": "10612075244", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46801", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for halloween , the bennigan family dressed up as batman and [female] . this family of 5 had 3 batmans and 2 organization .", "storylet_id": "234005"}], [{"original_text": "The oldest daughter Lydia and her brother Max really liked their costumes. They felt like superheroes.", "album_id": "72157637196375134", "photo_flickr_id": "10600612583", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46801", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the oldest daughter [female] and her brother [male] really liked their costumes . they felt like superheroes .", "storylet_id": "234006"}], [{"original_text": "The father and mother were both dressed as Batman and the baby Joe was dressed as Robin. ", "album_id": "72157637196375134", "photo_flickr_id": "10600354794", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46801", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the father and mother were both dressed as batman and the baby [male] was dressed as [female] .", "storylet_id": "234007"}], [{"original_text": "Mr Bennigan was very proud of his baby Robin.", "album_id": "72157637196375134", "photo_flickr_id": "10612078486", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46801", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mr bennigan was very proud of his baby [female] .", "storylet_id": "234008"}], [{"original_text": "Lydia and Max had so much fun trick or treating that night with their plastic pumpkins to hold all the candy. ", "album_id": "72157637196375134", "photo_flickr_id": "10612082694", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46801", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] and [male] had so much fun trick or treating that night with their plastic pumpkins to hold all the candy .", "storylet_id": "234009"}], [{"original_text": "Six year old Batman went to school today!", "album_id": "72157637196375134", "photo_flickr_id": "10611979785", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46802", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "six year old batman went to school today !", "storylet_id": "234010"}], [{"original_text": "He made lots of friends.", "album_id": "72157637196375134", "photo_flickr_id": "10612242413", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46802", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he made lots of friends .", "storylet_id": "234011"}], [{"original_text": "He even met his 1960's self...", "album_id": "72157637196375134", "photo_flickr_id": "10612044916", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46802", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he even met his 1960 's self ...", "storylet_id": "234012"}], [{"original_text": "and even got a girlfriend!", "album_id": "72157637196375134", "photo_flickr_id": "10612022385", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46802", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and even got a girlfriend !", "storylet_id": "234013"}], [{"original_text": "Robin stayed home.", "album_id": "72157637196375134", "photo_flickr_id": "10612037035", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46802", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] stayed home .", "storylet_id": "234014"}], [{"original_text": "Batman and Robin sitting outside with the kids.", "album_id": "72157637196375134", "photo_flickr_id": "10612075244", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46803", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "batman and [female] sitting outside with the kids .", "storylet_id": "234015"}], [{"original_text": "They are so happy with their outfits", "album_id": "72157637196375134", "photo_flickr_id": "10600612583", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46803", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are so happy with their outfits", "storylet_id": "234016"}], [{"original_text": "2 Batmans and 2 Robins in this photo and a baby", "album_id": "72157637196375134", "photo_flickr_id": "10600354794", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46803", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "2 batmans and 2 organization in this photo and a baby", "storylet_id": "234017"}], [{"original_text": "Look son, you will grow up to protect the city of Gotham from evil", "album_id": "72157637196375134", "photo_flickr_id": "10612078486", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46803", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look son , you will grow up to protect the city of location from evil", "storylet_id": "234018"}], [{"original_text": "It's getting late, Halloween day was fun.", "album_id": "72157637196375134", "photo_flickr_id": "10612082694", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "46803", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's getting late , halloween day was fun .", "storylet_id": "234019"}], [{"original_text": "It was Halloween and the family was getting ready to take pictures.", "album_id": "72157637196375134", "photo_flickr_id": "10612075244", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46804", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was halloween and the family was getting ready to take pictures .", "storylet_id": "234020"}], [{"original_text": "First up, the kids and their Batman costumes!", "album_id": "72157637196375134", "photo_flickr_id": "10600612583", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46804", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first up , the kids and their batman costumes !", "storylet_id": "234021"}], [{"original_text": "Next, everyone was finally ready to take the family picture.", "album_id": "72157637196375134", "photo_flickr_id": "10600354794", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46804", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next , everyone was finally ready to take the family picture .", "storylet_id": "234022"}], [{"original_text": "The dad tried to get the baby to look at the camera.", "album_id": "72157637196375134", "photo_flickr_id": "10612078486", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46804", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dad tried to get the baby to look at the camera .", "storylet_id": "234023"}], [{"original_text": "After a long day of taking pictures, it was time to go trick or treating.", "album_id": "72157637196375134", "photo_flickr_id": "10612082694", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46804", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long day of taking pictures , it was time to go trick or treating .", "storylet_id": "234024"}], [{"original_text": "Halloween is my favorite time of year.", "album_id": "72157648674018690", "photo_flickr_id": "15686222925", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46805", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "halloween is my favorite time of year .", "storylet_id": "234025"}], [{"original_text": "I always put a lot of effort into make my home extra spooky during Halloween.", "album_id": "72157648674018690", "photo_flickr_id": "15687819652", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46805", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i always put a lot of effort into make my home extra spooky during halloween .", "storylet_id": "234026"}], [{"original_text": "I don't turn on many lights.", "album_id": "72157648674018690", "photo_flickr_id": "15501023147", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46805", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i do n't turn on many lights .", "storylet_id": "234027"}], [{"original_text": "I take time to make a lot of home-made decorations.", "album_id": "72157648674018690", "photo_flickr_id": "15501324907", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46805", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i take time to make a lot of home-made decorations .", "storylet_id": "234028"}], [{"original_text": "I take lots of pictures as well.", "album_id": "72157648674018690", "photo_flickr_id": "15501708120", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46805", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i take lots of pictures as well .", "storylet_id": "234029"}], [{"original_text": "This house was made into a haunted house. ", "album_id": "72157648674018690", "photo_flickr_id": "15065818094", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46806", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this house was made into a haunted house .", "storylet_id": "234030"}], [{"original_text": "The rooms were lit to be spooky.", "album_id": "72157648674018690", "photo_flickr_id": "15066064824", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46806", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rooms were lit to be spooky .", "storylet_id": "234031"}], [{"original_text": "Headless mannequins were dressed and dimly lit.", "album_id": "72157648674018690", "photo_flickr_id": "15662513106", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46806", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "headless mannequins were dressed and dimly lit .", "storylet_id": "234032"}], [{"original_text": "If you make it all the way through the haunted house there are snacks.", "album_id": "72157648674018690", "photo_flickr_id": "15684604921", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46806", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "if you make it all the way through the haunted house there are snacks .", "storylet_id": "234033"}], [{"original_text": "Each person gets a popcorn hand to take home. ", "album_id": "72157648674018690", "photo_flickr_id": "15686517305", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46806", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "each person gets a popcorn hand to take home .", "storylet_id": "234034"}], [{"original_text": "Halloween was a special time at the house. ", "album_id": "72157648674018690", "photo_flickr_id": "15065818094", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46807", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "halloween was a special time at the house .", "storylet_id": "234035"}], [{"original_text": "The house was fully decorated. ", "album_id": "72157648674018690", "photo_flickr_id": "15066064824", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46807", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the house was fully decorated .", "storylet_id": "234036"}], [{"original_text": "The decor was very creepy. ", "album_id": "72157648674018690", "photo_flickr_id": "15662513106", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46807", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the decor was very creepy .", "storylet_id": "234037"}], [{"original_text": "Lots of fun snacks were waiting for the guests. ", "album_id": "72157648674018690", "photo_flickr_id": "15684604921", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46807", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "lots of fun snacks were waiting for the guests .", "storylet_id": "234038"}], [{"original_text": "The combination of the decor and the treats made this a memorable Halloween season. ", "album_id": "72157648674018690", "photo_flickr_id": "15686517305", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "46807", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the combination of the decor and the treats made this a memorable halloween season .", "storylet_id": "234039"}], [{"original_text": "Did I ever tell you about this chair?", "album_id": "72157648674018690", "photo_flickr_id": "15686222925", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46808", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "did i ever tell you about this chair ?", "storylet_id": "234040"}], [{"original_text": "That chair (Like this one) is haunted!", "album_id": "72157648674018690", "photo_flickr_id": "15687819652", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46808", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that chair ( like this one ) is haunted !", "storylet_id": "234041"}], [{"original_text": "If anyone puts their chair in front of this particular light...", "album_id": "72157648674018690", "photo_flickr_id": "15501023147", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46808", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "if anyone puts their chair in front of this particular light ...", "storylet_id": "234042"}], [{"original_text": "Their hand will become like this!", "album_id": "72157648674018690", "photo_flickr_id": "15501324907", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46808", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their hand will become like this !", "storylet_id": "234043"}], [{"original_text": "This woman is living proof!", "album_id": "72157648674018690", "photo_flickr_id": "15501708120", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46808", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this woman is living proof !", "storylet_id": "234044"}], [{"original_text": "The perfect location was chosen for the Halloween party. ", "album_id": "72157648674018690", "photo_flickr_id": "15065818094", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46809", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the perfect location was chosen for the halloween party .", "storylet_id": "234045"}], [{"original_text": "The inside lighting was also perfect and sinister. ", "album_id": "72157648674018690", "photo_flickr_id": "15066064824", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46809", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the inside lighting was also perfect and sinister .", "storylet_id": "234046"}], [{"original_text": "Everything was set up perfectly, even the coat racks. ", "album_id": "72157648674018690", "photo_flickr_id": "15662513106", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46809", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everything was set up perfectly , even the coat racks .", "storylet_id": "234047"}], [{"original_text": "The food and decoration stayed on theme. ", "album_id": "72157648674018690", "photo_flickr_id": "15684604921", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46809", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food and decoration stayed on theme .", "storylet_id": "234048"}], [{"original_text": "And even looked completely horrific at times. ", "album_id": "72157648674018690", "photo_flickr_id": "15686517305", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46809", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and even looked completely horrific at times .", "storylet_id": "234049"}], [{"original_text": "On our Disney Family Vacation last year we attended the Mickey's Very Merry Christmas Party.", "album_id": "72157646733993369", "photo_flickr_id": "14931606058", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46810", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our disney family vacation last year we attended the [male] 's very merry christmas party .", "storylet_id": "234050"}], [{"original_text": "The costumes were really done well.", "album_id": "72157646733993369", "photo_flickr_id": "15095180336", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46810", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the costumes were really done well .", "storylet_id": "234051"}], [{"original_text": "Disney gives a lot of candy.", "album_id": "72157646733993369", "photo_flickr_id": "14931519740", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46810", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "organization gives a lot of candy .", "storylet_id": "234052"}], [{"original_text": "The Halloween Parade is professionally done.", "album_id": "72157646733993369", "photo_flickr_id": "15115169961", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46810", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the halloween parade is professionally done .", "storylet_id": "234053"}], [{"original_text": "Even Mickey gets into the spirit.", "album_id": "72157646733993369", "photo_flickr_id": "14932029447", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46810", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even [male] gets into the spirit .", "storylet_id": "234054"}], [{"original_text": "There were plenty of people at the festival last night.", "album_id": "72157646733993369", "photo_flickr_id": "15117799432", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46811", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were plenty of people at the festival last night .", "storylet_id": "234055"}], [{"original_text": "I had a great time watching the performers.", "album_id": "72157646733993369", "photo_flickr_id": "15117799462", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46811", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had a great time watching the performers .", "storylet_id": "234056"}], [{"original_text": "There were so many of them.", "album_id": "72157646733993369", "photo_flickr_id": "14931606048", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46811", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were so many of them .", "storylet_id": "234057"}], [{"original_text": "They all came by walking or on floats.", "album_id": "72157646733993369", "photo_flickr_id": "15095180576", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46811", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they all came by walking or on floats .", "storylet_id": "234058"}], [{"original_text": "We had a lot of brochures.", "album_id": "72157646733993369", "photo_flickr_id": "14931606288", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46811", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a lot of brochures .", "storylet_id": "234059"}], [{"original_text": "Greetings from the Disneyland Halloween party!", "album_id": "72157646733993369", "photo_flickr_id": "14931606058", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46812", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "greetings from the disneyland halloween party !", "storylet_id": "234060"}], [{"original_text": "I dressed like a goth.", "album_id": "72157646733993369", "photo_flickr_id": "15095180336", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46812", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i dressed like a goth .", "storylet_id": "234061"}], [{"original_text": "Surprisingly, I got a fair amount of candy!", "album_id": "72157646733993369", "photo_flickr_id": "14931519740", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46812", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "surprisingly , i got a fair amount of candy !", "storylet_id": "234062"}], [{"original_text": "I also saw so spooky ghost dancers,", "album_id": "72157646733993369", "photo_flickr_id": "15115169961", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46812", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also saw so spooky ghost dancers ,", "storylet_id": "234063"}], [{"original_text": "and even Count Mickey! Hope to see you Thanksgiving!", "album_id": "72157646733993369", "photo_flickr_id": "14932029447", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46812", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and even count [male] ! [female] to see you thanksgiving !", "storylet_id": "234064"}], [{"original_text": "The family ready for Halloween in the Magic Kingdom.", "album_id": "72157646733993369", "photo_flickr_id": "14931606058", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46813", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family ready for halloween in the location location .", "storylet_id": "234065"}], [{"original_text": "It is a time when zombies and ghouls haunt Main Street,", "album_id": "72157646733993369", "photo_flickr_id": "15095180336", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46813", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is a time when zombies and ghouls haunt main street ,", "storylet_id": "234066"}], [{"original_text": "and you can trick-or treat at all the shops.", "album_id": "72157646733993369", "photo_flickr_id": "14931519740", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46813", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and you can trick-or treat at all the shops .", "storylet_id": "234067"}], [{"original_text": "At night things get really creepy when the un-dead come out to dance in the parade.", "album_id": "72157646733993369", "photo_flickr_id": "15115169961", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46813", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at night things get really creepy when the un-dead come out to dance in the parade .", "storylet_id": "234068"}], [{"original_text": "Even Mickey Mouse puts on a costume and joins the fun.", "album_id": "72157646733993369", "photo_flickr_id": "14932029447", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46813", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even [male] mouse puts on a costume and joins the fun .", "storylet_id": "234069"}], [{"original_text": "What can be better than Halloween? Halloween at Disney!", "album_id": "72157646733993369", "photo_flickr_id": "14931606058", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46814", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what can be better than halloween ? halloween at organization !", "storylet_id": "234070"}], [{"original_text": "Alice in Wonderland is all dolled up zombie style! ", "album_id": "72157646733993369", "photo_flickr_id": "15095180336", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46814", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] in wonderland is all dolled up zombie style !", "storylet_id": "234071"}], [{"original_text": "I still ate too much candy.", "album_id": "72157646733993369", "photo_flickr_id": "14931519740", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46814", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i still ate too much candy .", "storylet_id": "234072"}], [{"original_text": "The Halloween parade is spectacular. The costumes are always so fun and so spooky!", "album_id": "72157646733993369", "photo_flickr_id": "15115169961", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46814", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the halloween parade is spectacular . the costumes are always so fun and so spooky !", "storylet_id": "234073"}], [{"original_text": "We thank our host, Mickey, for an unforgettable night.", "album_id": "72157646733993369", "photo_flickr_id": "14932029447", "setting": "last-3-pick-old-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "46814", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we thank our host , [male] , for an unforgettable night .", "storylet_id": "234074"}], [{"original_text": "There were a lot of people at the Halloween party yesterday.", "album_id": "72157602883754412", "photo_flickr_id": "1846345835", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46815", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of people at the halloween party yesterday .", "storylet_id": "234075"}], [{"original_text": "Some of the makeup looked very real.", "album_id": "72157602883754412", "photo_flickr_id": "1847081713", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46815", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the makeup looked very real .", "storylet_id": "234076"}], [{"original_text": "I met a lot of interesting people there.", "album_id": "72157602883754412", "photo_flickr_id": "1846883391", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46815", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i met a lot of interesting people there .", "storylet_id": "234077"}], [{"original_text": "Some of them wanted me to give them my phone number.", "album_id": "72157602883754412", "photo_flickr_id": "1847716704", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46815", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of them wanted me to give them my phone number .", "storylet_id": "234078"}], [{"original_text": "After a while it got late and I left, but everyone was still having a great time.", "album_id": "72157602883754412", "photo_flickr_id": "1846904719", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46815", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a while it got late and i left , but everyone was still having a great time .", "storylet_id": "234079"}], [{"original_text": "Its Halloween! She dressed up as a zombie!", "album_id": "72157602883754412", "photo_flickr_id": "1847149358", "setting": "first-2-pick-and-tell", "worker_id": "C7GVGFFAKR22SRE", "story_id": "46816", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "its halloween ! she dressed up as a zombie !", "storylet_id": "234080"}], [{"original_text": "Here a not so scary costume. Marilyn Monroe is always a beautiful choice.", "album_id": "72157602883754412", "photo_flickr_id": "1848004296", "setting": "first-2-pick-and-tell", "worker_id": "C7GVGFFAKR22SRE", "story_id": "46816", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here a not so scary costume . [female] [male] is always a beautiful choice .", "storylet_id": "234081"}], [{"original_text": "People really get into character. Look at this gangster.", "album_id": "72157602883754412", "photo_flickr_id": "1847160857", "setting": "first-2-pick-and-tell", "worker_id": "C7GVGFFAKR22SRE", "story_id": "46816", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people really get into character . look at this gangster .", "storylet_id": "234082"}], [{"original_text": "Everyone is having so much fun, even Marge Simpson.", "album_id": "72157602883754412", "photo_flickr_id": "1847869690", "setting": "first-2-pick-and-tell", "worker_id": "C7GVGFFAKR22SRE", "story_id": "46816", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone is having so much fun , even marge simpson .", "storylet_id": "234083"}], [{"original_text": "Tinkerbell is getting into the party game action! What a great Halloween.", "album_id": "72157602883754412", "photo_flickr_id": "1846904719", "setting": "first-2-pick-and-tell", "worker_id": "C7GVGFFAKR22SRE", "story_id": "46816", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "tinkerbell is getting into the party game action ! what a great halloween .", "storylet_id": "234084"}], [{"original_text": "We all all dolled up for the festivities.", "album_id": "72157602883754412", "photo_flickr_id": "1846345835", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "46817", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all all dolled up for the festivities .", "storylet_id": "234085"}], [{"original_text": "Look at the great job done with this makeup!", "album_id": "72157602883754412", "photo_flickr_id": "1847081713", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "46817", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look at the great job done with this makeup !", "storylet_id": "234086"}], [{"original_text": "People are happy to show off the bright costumes.", "album_id": "72157602883754412", "photo_flickr_id": "1846883391", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "46817", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people are happy to show off the bright costumes .", "storylet_id": "234087"}], [{"original_text": "Some dressed as famous movie characters.", "album_id": "72157602883754412", "photo_flickr_id": "1847716704", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "46817", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some dressed as famous movie characters .", "storylet_id": "234088"}], [{"original_text": "Everyone is happy to be together for Halloween.", "album_id": "72157602883754412", "photo_flickr_id": "1846904719", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "46817", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone is happy to be together for halloween .", "storylet_id": "234089"}], [{"original_text": "For Halloween, a friend of mine dressed as Marilyn Monroe, a look she could really pull off.", "album_id": "72157602883754412", "photo_flickr_id": "1846345835", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46818", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for halloween , a friend of mine dressed as [female] [male] , a look she could really pull off .", "storylet_id": "234090"}], [{"original_text": "Another friend went with the blood and guts routine as a murdered corpse.", "album_id": "72157602883754412", "photo_flickr_id": "1847081713", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46818", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "another friend went with the blood and guts routine as a murdered corpse .", "storylet_id": "234091"}], [{"original_text": "My best friend went as Cruella De Ville from 101 Dalmatians.", "album_id": "72157602883754412", "photo_flickr_id": "1846883391", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46818", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my best friend went as cruella de ville from 101 dalmatians .", "storylet_id": "234092"}], [{"original_text": "She had a bi-colored wig and the red gloves that are indicative of that character.", "album_id": "72157602883754412", "photo_flickr_id": "1847716704", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46818", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she had a bi-colored wig and the red gloves that are indicative of that character .", "storylet_id": "234093"}], [{"original_text": "We all posed for a group shot to capture the evening.", "album_id": "72157602883754412", "photo_flickr_id": "1846904719", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46818", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all posed for a group shot to capture the evening .", "storylet_id": "234094"}], [{"original_text": "For Halloween the office workers held a party and costume contest. Everyone went all out for their costumes. ", "album_id": "72157602883754412", "photo_flickr_id": "1846345835", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46819", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for halloween the office workers held a party and costume contest . everyone went all out for their costumes .", "storylet_id": "234095"}], [{"original_text": "The bleeding cut was a good touch. ", "album_id": "72157602883754412", "photo_flickr_id": "1847081713", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46819", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bleeding cut was a good touch .", "storylet_id": "234096"}], [{"original_text": "Rhonda went as Cruella De Vil. ", "album_id": "72157602883754412", "photo_flickr_id": "1846883391", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46819", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] went as cruella de vil .", "storylet_id": "234097"}], [{"original_text": "She looked and felt fabulous. ", "album_id": "72157602883754412", "photo_flickr_id": "1847716704", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46819", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she looked and felt fabulous .", "storylet_id": "234098"}], [{"original_text": "The workers had so much fun as characters they had a hard time choosing the winner of the costume contest. ", "album_id": "72157602883754412", "photo_flickr_id": "1846904719", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46819", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the workers had so much fun as characters they had a hard time choosing the winner of the costume contest .", "storylet_id": "234099"}], [{"original_text": "The voodoo lounge is open only one night a year on Halloween. ", "album_id": "72157602938417219", "photo_flickr_id": "1874911239", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46820", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the voodoo lounge is open only one night a year on halloween .", "storylet_id": "234100"}], [{"original_text": "Party goers come to revel in the foggy atmosphere. ", "album_id": "72157602938417219", "photo_flickr_id": "1875737002", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46820", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "party goers come to revel in the foggy atmosphere .", "storylet_id": "234101"}], [{"original_text": "The lights are eerie and glowing red. ", "album_id": "72157602938417219", "photo_flickr_id": "1874913179", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46820", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lights are eerie and glowing red .", "storylet_id": "234102"}], [{"original_text": "Skulls are an important part of the decor. ", "album_id": "72157602938417219", "photo_flickr_id": "1874913497", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46820", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "skulls are an important part of the decor .", "storylet_id": "234103"}], [{"original_text": "The partiers are ready to go again next year.", "album_id": "72157602938417219", "photo_flickr_id": "1875733532", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46820", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the partiers are ready to go again next year .", "storylet_id": "234104"}], [{"original_text": "Last night's Halloween party as so good!", "album_id": "72157602938417219", "photo_flickr_id": "1874910125", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46821", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night 's halloween party as so good !", "storylet_id": "234105"}], [{"original_text": "The party committee spent a lot of time getting everything ready.", "album_id": "72157602938417219", "photo_flickr_id": "1874911239", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46821", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the party committee spent a lot of time getting everything ready .", "storylet_id": "234106"}], [{"original_text": "A lot of people signed up for the event.", "album_id": "72157602938417219", "photo_flickr_id": "1875733532", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46821", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lot of people signed up for the event .", "storylet_id": "234107"}], [{"original_text": "There were many places to sit and have a conversation.", "album_id": "72157602938417219", "photo_flickr_id": "1875733968", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46821", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many places to sit and have a conversation .", "storylet_id": "234108"}], [{"original_text": "Outside we covered the trees in tissue paper.", "album_id": "72157602938417219", "photo_flickr_id": "1874914127", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46821", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "outside we covered the trees in tissue paper .", "storylet_id": "234109"}], [{"original_text": "The VooDoo Lounge held a Halloween party.", "album_id": "72157602938417219", "photo_flickr_id": "1874911239", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46822", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the voodoo lounge held a halloween party .", "storylet_id": "234110"}], [{"original_text": "There was a lot of people and a foggy mist that added a haunting mood to the party.", "album_id": "72157602938417219", "photo_flickr_id": "1875737002", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46822", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of people and a foggy mist that added a haunting mood to the party .", "storylet_id": "234111"}], [{"original_text": "The mist even covered the ground as people roamed the venue.", "album_id": "72157602938417219", "photo_flickr_id": "1874913179", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46822", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the mist even covered the ground as people roamed the venue .", "storylet_id": "234112"}], [{"original_text": "Even the fireplace was decorated with spooky decorations.", "album_id": "72157602938417219", "photo_flickr_id": "1874913497", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46822", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the fireplace was decorated with spooky decorations .", "storylet_id": "234113"}], [{"original_text": "Overall, the party was very spooky but everyone had a good time.", "album_id": "72157602938417219", "photo_flickr_id": "1875733532", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46822", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall , the party was very spooky but everyone had a good time .", "storylet_id": "234114"}], [{"original_text": "Welcome to the voodoo lounge!", "album_id": "72157602938417219", "photo_flickr_id": "1874911239", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46823", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "welcome to the voodoo lounge !", "storylet_id": "234115"}], [{"original_text": "Enter it's mysterious halls!", "album_id": "72157602938417219", "photo_flickr_id": "1875737002", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46823", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "enter it 's mysterious halls !", "storylet_id": "234116"}], [{"original_text": "And see it's draped furniture!", "album_id": "72157602938417219", "photo_flickr_id": "1874913179", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46823", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and see it 's draped furniture !", "storylet_id": "234117"}], [{"original_text": "Pass through the skeleton gate!", "album_id": "72157602938417219", "photo_flickr_id": "1874913497", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46823", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "pass through the skeleton gate !", "storylet_id": "234118"}], [{"original_text": "We hope you enjoy your stay. ", "album_id": "72157602938417219", "photo_flickr_id": "1875733532", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46823", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we hope you enjoy your stay .", "storylet_id": "234119"}], [{"original_text": "What better costume party than a voodoo-themed one? ", "album_id": "72157602938417219", "photo_flickr_id": "1874911239", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46824", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what better costume party than a voodoo-themed one ?", "storylet_id": "234120"}], [{"original_text": "The lighting and the haziness were perfect.", "album_id": "72157602938417219", "photo_flickr_id": "1875737002", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46824", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lighting and the haziness were perfect .", "storylet_id": "234121"}], [{"original_text": "There was a terrific creepy factor at this party. ", "album_id": "72157602938417219", "photo_flickr_id": "1874913179", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46824", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a terrific creepy factor at this party .", "storylet_id": "234122"}], [{"original_text": "The designs were perfectly placed and well done. ", "album_id": "72157602938417219", "photo_flickr_id": "1874913497", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46824", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the designs were perfectly placed and well done .", "storylet_id": "234123"}], [{"original_text": "And, of course, everyone couldn't help but to have a good time. ", "album_id": "72157602938417219", "photo_flickr_id": "1875733532", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "46824", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , of course , everyone could n't help but to have a good time .", "storylet_id": "234124"}], [{"original_text": "He stood by the fish tank waiting for things to get started.", "album_id": "72157638379440683", "photo_flickr_id": "11221958546", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46825", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he stood by the fish tank waiting for things to get started .", "storylet_id": "234125"}], [{"original_text": "Still waiting for the first guests, he decides to sit down.", "album_id": "72157638379440683", "photo_flickr_id": "11221941546", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46825", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "still waiting for the first guests , he decides to sit down .", "storylet_id": "234126"}], [{"original_text": "People start arriving at the party in crazy costumes.", "album_id": "72157638379440683", "photo_flickr_id": "11221796065", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46825", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people start arriving at the party in crazy costumes .", "storylet_id": "234127"}], [{"original_text": "They started discussing the scenery in the house.", "album_id": "72157638379440683", "photo_flickr_id": "11221974313", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46825", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they started discussing the scenery in the house .", "storylet_id": "234128"}], [{"original_text": "Everyone poses at the end of the party to take a picture.", "album_id": "72157638379440683", "photo_flickr_id": "11221739274", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46825", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone poses at the end of the party to take a picture .", "storylet_id": "234129"}], [{"original_text": "I threw a party for all of my friends yesterday.", "album_id": "72157638379440683", "photo_flickr_id": "11221973166", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46826", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i threw a party for all of my friends yesterday .", "storylet_id": "234130"}], [{"original_text": "I rented a space out and we all showed up in costumes.", "album_id": "72157638379440683", "photo_flickr_id": "11221958546", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46826", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i rented a space out and we all showed up in costumes .", "storylet_id": "234131"}], [{"original_text": "Everyone sat around and had a great time.", "album_id": "72157638379440683", "photo_flickr_id": "11221974313", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46826", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone sat around and had a great time .", "storylet_id": "234132"}], [{"original_text": "Some people brought some elaborate costumes to the party.", "album_id": "72157638379440683", "photo_flickr_id": "11221864495", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46826", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people brought some elaborate costumes to the party .", "storylet_id": "234133"}], [{"original_text": "After a while everyone was tired and went home.", "album_id": "72157638379440683", "photo_flickr_id": "11221881303", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46826", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a while everyone was tired and went home .", "storylet_id": "234134"}], [{"original_text": "There was a good variety of costumes at this Halloween party.", "album_id": "72157638379440683", "photo_flickr_id": "11221958546", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46827", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a good variety of costumes at this halloween party .", "storylet_id": "234135"}], [{"original_text": "There was a pirate.", "album_id": "72157638379440683", "photo_flickr_id": "11221941546", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46827", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a pirate .", "storylet_id": "234136"}], [{"original_text": "There was a balloon man.", "album_id": "72157638379440683", "photo_flickr_id": "11221796065", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46827", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a balloon man .", "storylet_id": "234137"}], [{"original_text": "There was even a Shrinner.", "album_id": "72157638379440683", "photo_flickr_id": "11221974313", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46827", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was even a shrinner .", "storylet_id": "234138"}], [{"original_text": "The diversity of the outfits added color to this Halloween party. It also reminded us how different each of us are as individuals.", "album_id": "72157638379440683", "photo_flickr_id": "11221739274", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46827", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the diversity of the outfits added color to this halloween party . it also reminded us how different each of us are as individuals .", "storylet_id": "234139"}], [{"original_text": "It was time for the Halloween party and Pete the Pirate was ready to go.", "album_id": "72157638379440683", "photo_flickr_id": "11221958546", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46828", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was time for the halloween party and [male] the pirate was ready to go .", "storylet_id": "234140"}], [{"original_text": "But Pete the Pirate was very sad as Billy the balloon man showed up in a better costume.", "album_id": "72157638379440683", "photo_flickr_id": "11221941546", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46828", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but [male] the pirate was very sad as [male] the balloon man showed up in a better costume .", "storylet_id": "234141"}], [{"original_text": "Billy the balloon man had all kinds of fans.", "album_id": "72157638379440683", "photo_flickr_id": "11221796065", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46828", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] the balloon man had all kinds of fans .", "storylet_id": "234142"}], [{"original_text": "A few that didn't see Pete the pirate were happy with Billy the balloon man.", "album_id": "72157638379440683", "photo_flickr_id": "11221974313", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46828", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a few that did n't see [male] the pirate were happy with [male] the balloon man .", "storylet_id": "234143"}], [{"original_text": "But when Pete the pirate asked if Billy the balloon man can be his friend, everybody joined in too.", "album_id": "72157638379440683", "photo_flickr_id": "11221739274", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46828", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but when [male] the pirate asked if [male] the balloon man can be his friend , everybody joined in too .", "storylet_id": "234144"}], [{"original_text": "Everyone is ready to take pictures for this years Halloween party. The pirate can't find an ocean so he posses to the next closest thing.", "album_id": "72157638379440683", "photo_flickr_id": "11221958546", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46829", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone is ready to take pictures for this years halloween party . the pirate ca n't find an ocean so he posses to the next closest thing .", "storylet_id": "234145"}], [{"original_text": "The host had a little trouble decorating this year, but he did the best he could.", "album_id": "72157638379440683", "photo_flickr_id": "11221941546", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46829", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the host had a little trouble decorating this year , but he did the best he could .", "storylet_id": "234146"}], [{"original_text": "Some of the guest tried harder on their costumes than others.", "album_id": "72157638379440683", "photo_flickr_id": "11221796065", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46829", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the guest tried harder on their costumes than others .", "storylet_id": "234147"}], [{"original_text": "Despite the odd decorations everyone had a great time.", "album_id": "72157638379440683", "photo_flickr_id": "11221974313", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46829", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "despite the odd decorations everyone had a great time .", "storylet_id": "234148"}], [{"original_text": "At the end of the night the host insisted that they get a group picture.", "album_id": "72157638379440683", "photo_flickr_id": "11221739274", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46829", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night the host insisted that they get a group picture .", "storylet_id": "234149"}], [{"original_text": "There were a lot of children that came by my house last Halloween.", "album_id": "72157631946128075", "photo_flickr_id": "8162217882", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46830", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of children that came by my house last halloween .", "storylet_id": "234150"}], [{"original_text": "There were so many pretty costumes.", "album_id": "72157631946128075", "photo_flickr_id": "8162217706", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46830", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many pretty costumes .", "storylet_id": "234151"}], [{"original_text": "Some of them were scary too.", "album_id": "72157631946128075", "photo_flickr_id": "8162216450", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46830", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them were scary too .", "storylet_id": "234152"}], [{"original_text": "I had to hand out a lot of candy.", "album_id": "72157631946128075", "photo_flickr_id": "8162216378", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46830", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had to hand out a lot of candy .", "storylet_id": "234153"}], [{"original_text": "This year I'm going to be prepared and buy a lot more candy.", "album_id": "72157631946128075", "photo_flickr_id": "8162181643", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46830", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this year i 'm going to be prepared and buy a lot more candy .", "storylet_id": "234154"}], [{"original_text": "The mom took her kids to the Halloween celebration at the local elementary school.", "album_id": "72157631946128075", "photo_flickr_id": "8162184353", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "46831", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the mom took her kids to the halloween celebration at the local elementary school .", "storylet_id": "234155"}], [{"original_text": "There were fun craft stations set up where the kids could take part in a hands-on activity.", "album_id": "72157631946128075", "photo_flickr_id": "8162218312", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "46831", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were fun craft stations set up where the kids could take part in a hands-on activity .", "storylet_id": "234156"}], [{"original_text": "Many of the little girls had dressed up as princesses.", "album_id": "72157631946128075", "photo_flickr_id": "8162183707", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "46831", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many of the little girls had dressed up as princesses .", "storylet_id": "234157"}], [{"original_text": "Some of the boys had chose super hero costumes.", "album_id": "72157631946128075", "photo_flickr_id": "8162183361", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "46831", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the boys had chose super hero costumes .", "storylet_id": "234158"}], [{"original_text": "There was fun stuff for everyone to do, even the littlest of people.", "album_id": "72157631946128075", "photo_flickr_id": "8162183173", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "46831", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was fun stuff for everyone to do , even the littlest of people .", "storylet_id": "234159"}], [{"original_text": "For Halloween, my daughter's school had a big costume party.", "album_id": "72157631946128075", "photo_flickr_id": "8162217882", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46832", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for halloween , my daughter 's school had a big costume party .", "storylet_id": "234160"}], [{"original_text": "My daughter insisted on going as a princess.", "album_id": "72157631946128075", "photo_flickr_id": "8162217706", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46832", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my daughter insisted on going as a princess .", "storylet_id": "234161"}], [{"original_text": "Her friends went in various costumes, including a candy corn.", "album_id": "72157631946128075", "photo_flickr_id": "8162216450", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46832", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her friends went in various costumes , including a candy corn .", "storylet_id": "234162"}], [{"original_text": "One of the littlest boys chose to be Captain America.", "album_id": "72157631946128075", "photo_flickr_id": "8162216378", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46832", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the littlest boys chose to be captain location .", "storylet_id": "234163"}], [{"original_text": "Still other kids chose to be witches.", "album_id": "72157631946128075", "photo_flickr_id": "8162181643", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46832", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "still other kids chose to be witches .", "storylet_id": "234164"}], [{"original_text": "Parents and children dressed up for the school Halloween walk.", "album_id": "72157631946128075", "photo_flickr_id": "8162184353", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "46833", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "parents and children dressed up for the school halloween walk .", "storylet_id": "234165"}], [{"original_text": "The children prepare their creative masks with construction paper and colored paper plates.", "album_id": "72157631946128075", "photo_flickr_id": "8162218312", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "46833", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children prepare their creative masks with construction paper and colored paper plates .", "storylet_id": "234166"}], [{"original_text": "The girls all wanted to be Cinderella with different colored dresses in blue, pink and yellow.", "album_id": "72157631946128075", "photo_flickr_id": "8162183707", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "46833", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girls all wanted to be cinderella with different colored dresses in blue , pink and yellow .", "storylet_id": "234167"}], [{"original_text": "The boys were left out. They posed with their hero costumes, ready to save the world!", "album_id": "72157631946128075", "photo_flickr_id": "8162183361", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "46833", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boys were left out . they posed with their hero costumes , ready to save the world !", "storylet_id": "234168"}], [{"original_text": "Even babies were in the action and were given Halloween baskets to celebrate.", "album_id": "72157631946128075", "photo_flickr_id": "8162183173", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "46833", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even babies were in the action and were given halloween baskets to celebrate .", "storylet_id": "234169"}], [{"original_text": "At the school, I dressed up with the kids for Halloween.", "album_id": "72157631946128075", "photo_flickr_id": "8162184353", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46834", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the school , i dressed up with the kids for halloween .", "storylet_id": "234170"}], [{"original_text": "Some of the other girls in glass hand made their costumes.", "album_id": "72157631946128075", "photo_flickr_id": "8162218312", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46834", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the other girls in glass hand made their costumes .", "storylet_id": "234171"}], [{"original_text": "Most of the young girls wanted to go as princesses and they did so.", "album_id": "72157631946128075", "photo_flickr_id": "8162183707", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46834", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most of the young girls wanted to go as princesses and they did so .", "storylet_id": "234172"}], [{"original_text": "The boys all wanted to go as superheroes and they were very heroic looking.", "album_id": "72157631946128075", "photo_flickr_id": "8162183361", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46834", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boys all wanted to go as superheroes and they were very heroic looking .", "storylet_id": "234173"}], [{"original_text": "My friends daughter sat in her chair just waiting for people to drop off candy.", "album_id": "72157631946128075", "photo_flickr_id": "8162183173", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46834", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my friends daughter sat in her chair just waiting for people to drop off candy .", "storylet_id": "234174"}], [{"original_text": "Fans of anime and video games sometimes like to dress up like their favorite characters.", "album_id": "72157631949230901", "photo_flickr_id": "8163007372", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46835", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "fans of anime and video games sometimes like to dress up like their favorite characters .", "storylet_id": "234175"}], [{"original_text": "This type of fandom is called \"Cos-Play\".", "album_id": "72157631949230901", "photo_flickr_id": "8163009818", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46835", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this type of fandom is called `` cos-play '' .", "storylet_id": "234176"}], [{"original_text": "Costumes can be very ornate and expensive.", "album_id": "72157631949230901", "photo_flickr_id": "8162980899", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46835", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "costumes can be very ornate and expensive .", "storylet_id": "234177"}], [{"original_text": "They enjoy dressing up and then acting like their favorite characters.", "album_id": "72157631949230901", "photo_flickr_id": "8162986391", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46835", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they enjoy dressing up and then acting like their favorite characters .", "storylet_id": "234178"}], [{"original_text": "A lot of fans will have multiple costumes for different characters.", "album_id": "72157631949230901", "photo_flickr_id": "8162989071", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46835", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a lot of fans will have multiple costumes for different characters .", "storylet_id": "234179"}], [{"original_text": "Last week I finally had a chance to wear my new costume.", "album_id": "72157631949230901", "photo_flickr_id": "8162977083", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46836", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week i finally had a chance to wear my new costume .", "storylet_id": "234180"}], [{"original_text": "There was a cosplay convention not far from my home.", "album_id": "72157631949230901", "photo_flickr_id": "8163009230", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46836", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a cosplay convention not far from my home .", "storylet_id": "234181"}], [{"original_text": "I figured this would be the best time to show off my new costume.", "album_id": "72157631949230901", "photo_flickr_id": "8162978785", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46836", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i figured this would be the best time to show off my new costume .", "storylet_id": "234182"}], [{"original_text": "I dressed up and got ready for the event.", "album_id": "72157631949230901", "photo_flickr_id": "8163016142", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46836", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i dressed up and got ready for the event .", "storylet_id": "234183"}], [{"original_text": "I brought my sword just in case.", "album_id": "72157631949230901", "photo_flickr_id": "8163016696", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46836", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i brought my sword just in case .", "storylet_id": "234184"}], [{"original_text": "Matt loved cosplay. This is where you invent a character and make a costume to develop it. ", "album_id": "72157631949230901", "photo_flickr_id": "8162977083", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46837", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] loved cosplay . this is where you invent a character and make a costume to develop it .", "storylet_id": "234185"}], [{"original_text": "He was particularly proud of the design and construction of the hilt of his sword. It was very elaborate. ", "album_id": "72157631949230901", "photo_flickr_id": "8163009230", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46837", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was particularly proud of the design and construction of the hilt of his sword . it was very elaborate .", "storylet_id": "234186"}], [{"original_text": "His cape and tunic he had made the pattern and sewn it himself. ", "album_id": "72157631949230901", "photo_flickr_id": "8162978785", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46837", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his cape and tunic he had made the pattern and sewn it himself .", "storylet_id": "234187"}], [{"original_text": "He knew had done good work. ", "album_id": "72157631949230901", "photo_flickr_id": "8163016142", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46837", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he knew had done good work .", "storylet_id": "234188"}], [{"original_text": "Matt was ready for the next cosplay event. ", "album_id": "72157631949230901", "photo_flickr_id": "8163016696", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46837", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was ready for the next cosplay event .", "storylet_id": "234189"}], [{"original_text": "He had been practicing all year for the annual role playing tournament.", "album_id": "72157631949230901", "photo_flickr_id": "8163007372", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46838", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he had been practicing all year for the annual role playing tournament .", "storylet_id": "234190"}], [{"original_text": "His outfit this year was far better than in years past.", "album_id": "72157631949230901", "photo_flickr_id": "8163009818", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46838", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his outfit this year was far better than in years past .", "storylet_id": "234191"}], [{"original_text": "Plus, his sword was something everyone would be jealous of.", "album_id": "72157631949230901", "photo_flickr_id": "8162980899", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46838", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "plus , his sword was something everyone would be jealous of .", "storylet_id": "234192"}], [{"original_text": "He had even worked on his swordsmanship throughout the year to impress all the ladies.", "album_id": "72157631949230901", "photo_flickr_id": "8162986391", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46838", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he had even worked on his swordsmanship throughout the year to impress all the ladies .", "storylet_id": "234193"}], [{"original_text": "He couldn't wait to head out so he could show off all his new skills.", "album_id": "72157631949230901", "photo_flickr_id": "8162989071", "setting": "last-3-pick-old-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "46838", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he could n't wait to head out so he could show off all his new skills .", "storylet_id": "234194"}], [{"original_text": "My little brother wanted to be some kind of character from an anime for Halloween.", "album_id": "72157631949230901", "photo_flickr_id": "8163007372", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "46839", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my little brother wanted to be some kind of character from an anime for halloween .", "storylet_id": "234195"}], [{"original_text": "He like how real the blade of his sword looked.", "album_id": "72157631949230901", "photo_flickr_id": "8163009818", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "46839", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he like how real the blade of his sword looked .", "storylet_id": "234196"}], [{"original_text": "He pretended to fight a foe!", "album_id": "72157631949230901", "photo_flickr_id": "8162980899", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "46839", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he pretended to fight a foe !", "storylet_id": "234197"}], [{"original_text": "He hacked at his imaginary enemy.", "album_id": "72157631949230901", "photo_flickr_id": "8162986391", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "46839", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he hacked at his imaginary enemy .", "storylet_id": "234198"}], [{"original_text": "After he finished pretend fighting, he stood triumphantly!", "album_id": "72157631949230901", "photo_flickr_id": "8162989071", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "46839", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after he finished pretend fighting , he stood triumphantly !", "storylet_id": "234199"}], [{"original_text": "Costume parties bring out all kinds of interesting costumes.", "album_id": "72157637638220793", "photo_flickr_id": "10840947816", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46840", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "costume parties bring out all kinds of interesting costumes .", "storylet_id": "234200"}], [{"original_text": "Lots of snacks are provided for the party goers.", "album_id": "72157637638220793", "photo_flickr_id": "10841280853", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46840", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of snacks are provided for the party goers .", "storylet_id": "234201"}], [{"original_text": "Some partiers put on lots of make up to compliment their costumes.", "album_id": "72157637638220793", "photo_flickr_id": "10841471763", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46840", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some partiers put on lots of make up to compliment their costumes .", "storylet_id": "234202"}], [{"original_text": "The venue is often decorated to be spooky and dark.", "album_id": "72157637638220793", "photo_flickr_id": "10841249735", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46840", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the venue is often decorated to be spooky and dark .", "storylet_id": "234203"}], [{"original_text": "However all of the party goers have a great time.", "album_id": "72157637638220793", "photo_flickr_id": "10841729963", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46840", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however all of the party goers have a great time .", "storylet_id": "234204"}], [{"original_text": "The Halloween party last night was a lot of fun.", "album_id": "72157637638220793", "photo_flickr_id": "10840947816", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46841", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the halloween party last night was a lot of fun .", "storylet_id": "234205"}], [{"original_text": "There were a lot of cupcakes for everybody.", "album_id": "72157637638220793", "photo_flickr_id": "10841280853", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46841", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of cupcakes for everybody .", "storylet_id": "234206"}], [{"original_text": "The music was very loud.", "album_id": "72157637638220793", "photo_flickr_id": "10840989065", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46841", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the music was very loud .", "storylet_id": "234207"}], [{"original_text": "A lot of people enjoyed the cupcakes.", "album_id": "72157637638220793", "photo_flickr_id": "10841153466", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46841", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a lot of people enjoyed the cupcakes .", "storylet_id": "234208"}], [{"original_text": "Afterward we were all very tired from dancing and partying.", "album_id": "72157637638220793", "photo_flickr_id": "10841176776", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46841", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we were all very tired from dancing and partying .", "storylet_id": "234209"}], [{"original_text": "We had a costumer party for Halloween, and I decided to start my dressing like a horse.", "album_id": "72157637638220793", "photo_flickr_id": "10840947816", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46842", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a costumer party for halloween , and i decided to start my dressing like a horse .", "storylet_id": "234210"}], [{"original_text": "My friend Elisa put together Halloween cupcakes for the party.", "album_id": "72157637638220793", "photo_flickr_id": "10841280853", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46842", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend [female] put together halloween cupcakes for the party .", "storylet_id": "234211"}], [{"original_text": "Another friend decided to dress in a theme I could only describe as \"Zombie Swan Lake.\"", "album_id": "72157637638220793", "photo_flickr_id": "10841471763", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46842", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another friend decided to dress in a theme i could only describe as `` zombie swan lake . ''", "storylet_id": "234212"}], [{"original_text": "She put on a little show for us behind a red sheet.", "album_id": "72157637638220793", "photo_flickr_id": "10841249735", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46842", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she put on a little show for us behind a red sheet .", "storylet_id": "234213"}], [{"original_text": "We all posed for pictures together, even the friends who didn't come in costume.", "album_id": "72157637638220793", "photo_flickr_id": "10841729963", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "46842", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all posed for pictures together , even the friends who did n't come in costume .", "storylet_id": "234214"}], [{"original_text": "I went to a costume party.", "album_id": "72157637638220793", "photo_flickr_id": "10840947816", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "46843", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a costume party .", "storylet_id": "234215"}], [{"original_text": "There were all kinds of delicious treats, including yummy cup cakes.", "album_id": "72157637638220793", "photo_flickr_id": "10841280853", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "46843", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were all kinds of delicious treats , including yummy cup cakes .", "storylet_id": "234216"}], [{"original_text": "A lady asked me to take her picture.", "album_id": "72157637638220793", "photo_flickr_id": "10841471763", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "46843", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lady asked me to take her picture .", "storylet_id": "234217"}], [{"original_text": "We were watching a horror movie.", "album_id": "72157637638220793", "photo_flickr_id": "10841249735", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "46843", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were watching a horror movie .", "storylet_id": "234218"}], [{"original_text": "At the end of the night, we took many pictures.", "album_id": "72157637638220793", "photo_flickr_id": "10841729963", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "46843", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , we took many pictures .", "storylet_id": "234219"}], [{"original_text": "The Halloween party started off with the host presenting himself as a horse.", "album_id": "72157637638220793", "photo_flickr_id": "10840947816", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "46844", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the halloween party started off with the host presenting himself as a horse .", "storylet_id": "234220"}], [{"original_text": "For desert there were amazing and delicious chocolate cupcakes served.", "album_id": "72157637638220793", "photo_flickr_id": "10841280853", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "46844", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "for desert there were amazing and delicious chocolate cupcakes served .", "storylet_id": "234221"}], [{"original_text": "There were also a modeling costume runway where one model shows her amazing makeup and attire.", "album_id": "72157637638220793", "photo_flickr_id": "10841471763", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "46844", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were also a modeling costume runway where one model shows her amazing makeup and attire .", "storylet_id": "234222"}], [{"original_text": "Continuing with the party was a great shadow dance by the model.", "album_id": "72157637638220793", "photo_flickr_id": "10841249735", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "46844", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "continuing with the party was a great shadow dance by the model .", "storylet_id": "234223"}], [{"original_text": "Everyone had fun and enjoyed the Halloween party.", "album_id": "72157637638220793", "photo_flickr_id": "10841729963", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "46844", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had fun and enjoyed the halloween party .", "storylet_id": "234224"}], [{"original_text": "There were a lot of men at the party.", "album_id": "463464", "photo_flickr_id": "19770920", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46845", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of men at the party .", "storylet_id": "234225"}], [{"original_text": "They were great sports.", "album_id": "463464", "photo_flickr_id": "19770926", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46845", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were great sports .", "storylet_id": "234226"}], [{"original_text": "The thug look was pretty popular.", "album_id": "463464", "photo_flickr_id": "19770950", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46845", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the thug look was pretty popular .", "storylet_id": "234227"}], [{"original_text": "As was the capes and hats.", "album_id": "463464", "photo_flickr_id": "19770968", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46845", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as was the capes and hats .", "storylet_id": "234228"}], [{"original_text": "The winner was the thug though.", "album_id": "463464", "photo_flickr_id": "19771016", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46845", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the winner was the thug though .", "storylet_id": "234229"}], [{"original_text": "Arriving at the Halloween Bash, the man was excited!", "album_id": "463464", "photo_flickr_id": "19770920", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46846", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "arriving at the halloween bash , the man was excited !", "storylet_id": "234230"}], [{"original_text": "Lots of people dressed up this year!", "album_id": "463464", "photo_flickr_id": "19770931", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46846", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of people dressed up this year !", "storylet_id": "234231"}], [{"original_text": "There were silly costumes.", "album_id": "463464", "photo_flickr_id": "19770942", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46846", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were silly costumes .", "storylet_id": "234232"}], [{"original_text": "There were also extravagant ones.", "album_id": "463464", "photo_flickr_id": "19770970", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46846", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also extravagant ones .", "storylet_id": "234233"}], [{"original_text": "Everyone was having a fun Halloween.", "album_id": "463464", "photo_flickr_id": "19770976", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46846", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was having a fun halloween .", "storylet_id": "234234"}], [{"original_text": "I showed up at the party in my fancy costume.", "album_id": "463464", "photo_flickr_id": "19770920", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46847", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i showed up at the party in my fancy costume .", "storylet_id": "234235"}], [{"original_text": "Everyone was very happy to see me.", "album_id": "463464", "photo_flickr_id": "19770926", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46847", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was very happy to see me .", "storylet_id": "234236"}], [{"original_text": "I made a lot of new friends.", "album_id": "463464", "photo_flickr_id": "19770950", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46847", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i made a lot of new friends .", "storylet_id": "234237"}], [{"original_text": "We all had a great time.", "album_id": "463464", "photo_flickr_id": "19770968", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46847", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all had a great time .", "storylet_id": "234238"}], [{"original_text": "I can't wait for next year's.", "album_id": "463464", "photo_flickr_id": "19771016", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46847", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ca n't wait for next year 's .", "storylet_id": "234239"}], [{"original_text": "Oh yes, I am a Borat. I come from Kazakhstan to go to Halloween party.", "album_id": "463464", "photo_flickr_id": "19770920", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46848", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "oh yes , i am a borat . i come from location to go to halloween party .", "storylet_id": "234240"}], [{"original_text": "And Mexican Ringo Star.", "album_id": "463464", "photo_flickr_id": "19770926", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46848", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and mexican ringo star .", "storylet_id": "234241"}], [{"original_text": "No party is complete until Ali G shows up!", "album_id": "463464", "photo_flickr_id": "19770950", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46848", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "no party is complete until [male] g shows up !", "storylet_id": "234242"}], [{"original_text": "And the poor wing man who doesn't get any play", "album_id": "463464", "photo_flickr_id": "19770968", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46848", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the poor wing man who does n't get any play", "storylet_id": "234243"}], [{"original_text": "Ali G after he's had a few drinks with the White Trash.", "album_id": "463464", "photo_flickr_id": "19771016", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46848", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] g after he 's had a few drinks with the white trash .", "storylet_id": "234244"}], [{"original_text": "On Halloween this year everyone dressed to the nines.", "album_id": "463464", "photo_flickr_id": "19770920", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46849", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on halloween this year everyone dressed to the nines .", "storylet_id": "234245"}], [{"original_text": "Some of our friends where devils.", "album_id": "463464", "photo_flickr_id": "19770931", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46849", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of our friends where devils .", "storylet_id": "234246"}], [{"original_text": "Others where 70's disco crazies.", "album_id": "463464", "photo_flickr_id": "19770942", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46849", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others where 70 's disco crazies .", "storylet_id": "234247"}], [{"original_text": "The costume party was amazing", "album_id": "463464", "photo_flickr_id": "19770970", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46849", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the costume party was amazing", "storylet_id": "234248"}], [{"original_text": "A bunch of great laughs.", "album_id": "463464", "photo_flickr_id": "19770976", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "46849", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a bunch of great laughs .", "storylet_id": "234249"}], [{"original_text": "Festive snacks were laid out before the carving began.", "album_id": "72157602571938321", "photo_flickr_id": "1664806037", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "46850", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "festive snacks were laid out before the carving began .", "storylet_id": "234250"}], [{"original_text": "Everyone began carving their pumpkins, trying to decide on what to make!", "album_id": "72157602571938321", "photo_flickr_id": "1664819935", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "46850", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone began carving their pumpkins , trying to decide on what to make !", "storylet_id": "234251"}], [{"original_text": "They came along nicely, but with a bit of a mess.", "album_id": "72157602571938321", "photo_flickr_id": "1665605922", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "46850", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they came along nicely , but with a bit of a mess .", "storylet_id": "234252"}], [{"original_text": "Some people copied famous villains...", "album_id": "72157602571938321", "photo_flickr_id": "1665625466", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "46850", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people copied famous villains ...", "storylet_id": "234253"}], [{"original_text": "While others made their own, unique creations!", "album_id": "72157602571938321", "photo_flickr_id": "1665643536", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "46850", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while others made their own , unique creations !", "storylet_id": "234254"}], [{"original_text": "Bud and Sally threw a Halloween party for their friends. There was lots of delicious food then the party turned serious.", "album_id": "72157602571938321", "photo_flickr_id": "1665672886", "setting": "first-2-pick-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "46851", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "bud and [female] threw a halloween party for their friends . there was lots of delicious food then the party turned serious .", "storylet_id": "234255"}], [{"original_text": "Bud and Sally brought out tools, old newspaper, and PUMPKINS! All shapes and sizes for their friends to carve jack-o-lanterns!", "album_id": "72157602571938321", "photo_flickr_id": "1664819935", "setting": "first-2-pick-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "46851", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "bud and [female] brought out tools , old newspaper , and pumpkins ! all shapes and sizes for their friends to carve jack-o-lanterns !", "storylet_id": "234256"}], [{"original_text": "Mimi went to work right away. Cleaning out and carving the face on the pumpkin faster than anyone.", "album_id": "72157602571938321", "photo_flickr_id": "1664755389", "setting": "first-2-pick-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "46851", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mimi went to work right away . cleaning out and carving the face on the pumpkin faster than anyone .", "storylet_id": "234257"}], [{"original_text": "Mimi's pumpkin was scary but also inspired the party-goers. Mimi smiled and told them it looked just like her boss.", "album_id": "72157602571938321", "photo_flickr_id": "1665637100", "setting": "first-2-pick-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "46851", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mimi 's pumpkin was scary but also inspired the party-goers . mimi smiled and told them it looked just like her boss .", "storylet_id": "234258"}], [{"original_text": "Everyone decided these were the best, besides Mimi's. The jack-o-lanterns greeted the lucky trick or treaters that night.", "album_id": "72157602571938321", "photo_flickr_id": "1665622686", "setting": "first-2-pick-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "46851", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone decided these were the best , besides mimi 's . the jack-o-lanterns greeted the lucky trick or treaters that night .", "storylet_id": "234259"}], [{"original_text": "The chocolate castle had spooky chocolate trees outside.", "album_id": "72157602571938321", "photo_flickr_id": "1664806037", "setting": "last-3-pick-old-and-tell", "worker_id": "441SKDQGYEG5OZC", "story_id": "46852", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the chocolate castle had spooky chocolate trees outside .", "storylet_id": "234260"}], [{"original_text": "The whole family got together to carve pumpkins.", "album_id": "72157602571938321", "photo_flickr_id": "1664819935", "setting": "last-3-pick-old-and-tell", "worker_id": "441SKDQGYEG5OZC", "story_id": "46852", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the whole family got together to carve pumpkins .", "storylet_id": "234261"}], [{"original_text": "One pumpkin felt left out, he wore his sad face.", "album_id": "72157602571938321", "photo_flickr_id": "1665605922", "setting": "last-3-pick-old-and-tell", "worker_id": "441SKDQGYEG5OZC", "story_id": "46852", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one pumpkin felt left out , he wore his sad face .", "storylet_id": "234262"}], [{"original_text": "...And then the Sith arrived to take over Halloween.", "album_id": "72157602571938321", "photo_flickr_id": "1665625466", "setting": "last-3-pick-old-and-tell", "worker_id": "441SKDQGYEG5OZC", "story_id": "46852", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "... and then the sith arrived to take over halloween .", "storylet_id": "234263"}], [{"original_text": "We defeated the Sith, hooray!!", "album_id": "72157602571938321", "photo_flickr_id": "1665643536", "setting": "last-3-pick-old-and-tell", "worker_id": "441SKDQGYEG5OZC", "story_id": "46852", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we defeated the sith , hooray ! !", "storylet_id": "234264"}], [{"original_text": "The halloween party was so we could all get together.", "album_id": "72157602571938321", "photo_flickr_id": "1665672886", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46853", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the halloween party was so we could all get together .", "storylet_id": "234265"}], [{"original_text": "There was pumpkin carving and food.", "album_id": "72157602571938321", "photo_flickr_id": "1664819935", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46853", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was pumpkin carving and food .", "storylet_id": "234266"}], [{"original_text": "Everyone did their best with the pumpkins. ", "album_id": "72157602571938321", "photo_flickr_id": "1664755389", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46853", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone did their best with the pumpkins .", "storylet_id": "234267"}], [{"original_text": "They did a great job with their carving skills.", "album_id": "72157602571938321", "photo_flickr_id": "1665637100", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46853", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they did a great job with their carving skills .", "storylet_id": "234268"}], [{"original_text": "When they were all lit up the made a great display.", "album_id": "72157602571938321", "photo_flickr_id": "1665622686", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46853", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when they were all lit up the made a great display .", "storylet_id": "234269"}], [{"original_text": "Everyone had fun at the Halloween party. ", "album_id": "72157602571938321", "photo_flickr_id": "1665672886", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46854", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone had fun at the halloween party .", "storylet_id": "234270"}], [{"original_text": "Pumpkin carving took place. ", "album_id": "72157602571938321", "photo_flickr_id": "1664819935", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46854", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "pumpkin carving took place .", "storylet_id": "234271"}], [{"original_text": "People sketched out there designs and then began to cut them out.", "album_id": "72157602571938321", "photo_flickr_id": "1664755389", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46854", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people sketched out there designs and then began to cut them out .", "storylet_id": "234272"}], [{"original_text": "The pumpkins had many different expressions.", "album_id": "72157602571938321", "photo_flickr_id": "1665637100", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46854", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pumpkins had many different expressions .", "storylet_id": "234273"}], [{"original_text": "While most of the lanterns had faces one had a boat. ", "album_id": "72157602571938321", "photo_flickr_id": "1665622686", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46854", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while most of the lanterns had faces one had a boat .", "storylet_id": "234274"}], [{"original_text": "Each year Walt Disney World holds a Halloween parade for it's guests.", "album_id": "72157636777261654", "photo_flickr_id": "10393487283", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46855", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "each year location location location holds a halloween parade for it 's guests .", "storylet_id": "234275"}], [{"original_text": "The guests are encouraged to dress up in costumes and celebrate.", "album_id": "72157636777261654", "photo_flickr_id": "10393317944", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46855", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guests are encouraged to dress up in costumes and celebrate .", "storylet_id": "234276"}], [{"original_text": "Kids especially love this event and take advantage of the opportunity to be goofy and play make believe.", "album_id": "72157636777261654", "photo_flickr_id": "10393316755", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46855", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "kids especially love this event and take advantage of the opportunity to be goofy and play make believe .", "storylet_id": "234277"}], [{"original_text": "Mr. Incredible and his son even show up!", "album_id": "72157636777261654", "photo_flickr_id": "10393312274", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46855", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mr . incredible and his son even show up !", "storylet_id": "234278"}], [{"original_text": "Everyone loves a good Halloween celebration.", "album_id": "72157636777261654", "photo_flickr_id": "10393490093", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "46855", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone loves a good halloween celebration .", "storylet_id": "234279"}], [{"original_text": "I went to comic con with my friends dressed as hippies.", "album_id": "72157636777261654", "photo_flickr_id": "10393490093", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46856", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to comic con with my friends dressed as hippies .", "storylet_id": "234280"}], [{"original_text": "We you ran into Wonder Woman and Evil Knievel.", "album_id": "72157636777261654", "photo_flickr_id": "10393346856", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46856", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we you ran into wonder woman and evil knievel .", "storylet_id": "234281"}], [{"original_text": "We met a fisherman made of bronze.", "album_id": "72157636777261654", "photo_flickr_id": "10393317944", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46856", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we met a fisherman made of bronze .", "storylet_id": "234282"}], [{"original_text": "I think we even saw Pee-wee Herman.", "album_id": "72157636777261654", "photo_flickr_id": "10393314865", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46856", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i think we even saw pee-wee [male] .", "storylet_id": "234283"}], [{"original_text": "The Incredibles were also there.", "album_id": "72157636777261654", "photo_flickr_id": "10393312274", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46856", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the incredibles were also there .", "storylet_id": "234284"}], [{"original_text": "C'mon mom! Slow down. I can't walk that fast and I can hardly see.", "album_id": "72157636777261654", "photo_flickr_id": "10393487283", "setting": "last-3-pick-old-and-tell", "worker_id": "WIGTVFHR4GUOV8N", "story_id": "46857", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "c'mon mom ! slow down . i ca n't walk that fast and i can hardly see .", "storylet_id": "234285"}], [{"original_text": "Is he real or a statue?", "album_id": "72157636777261654", "photo_flickr_id": "10393317944", "setting": "last-3-pick-old-and-tell", "worker_id": "WIGTVFHR4GUOV8N", "story_id": "46857", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "is he real or a statue ?", "storylet_id": "234286"}], [{"original_text": "Jedi, may the force be with you all.", "album_id": "72157636777261654", "photo_flickr_id": "10393316755", "setting": "last-3-pick-old-and-tell", "worker_id": "WIGTVFHR4GUOV8N", "story_id": "46857", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "jedi , may the force be with you all .", "storylet_id": "234287"}], [{"original_text": "Supersized super hero.", "album_id": "72157636777261654", "photo_flickr_id": "10393312274", "setting": "last-3-pick-old-and-tell", "worker_id": "WIGTVFHR4GUOV8N", "story_id": "46857", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "supersized super hero .", "storylet_id": "234288"}], [{"original_text": "Peace \"within\" the family!", "album_id": "72157636777261654", "photo_flickr_id": "10393490093", "setting": "last-3-pick-old-and-tell", "worker_id": "WIGTVFHR4GUOV8N", "story_id": "46857", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "peace `` within '' the family !", "storylet_id": "234289"}], [{"original_text": "People attended a Comic-con dressed in costumes.", "album_id": "72157636777261654", "photo_flickr_id": "10393487283", "setting": "last-3-pick-old-and-tell", "worker_id": "O9XAZWYIK7Z1DFI", "story_id": "46858", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people attended a comic-con dressed in costumes .", "storylet_id": "234290"}], [{"original_text": "There were all sorts of costumes, such as this toy soldier.", "album_id": "72157636777261654", "photo_flickr_id": "10393317944", "setting": "last-3-pick-old-and-tell", "worker_id": "O9XAZWYIK7Z1DFI", "story_id": "46858", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were all sorts of costumes , such as this toy soldier .", "storylet_id": "234291"}], [{"original_text": "Star Wars is always a popular cos-play choice.", "album_id": "72157636777261654", "photo_flickr_id": "10393316755", "setting": "last-3-pick-old-and-tell", "worker_id": "O9XAZWYIK7Z1DFI", "story_id": "46858", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "star wars is always a popular cos-play choice .", "storylet_id": "234292"}], [{"original_text": "And you will find plenty of superheroes!", "album_id": "72157636777261654", "photo_flickr_id": "10393312274", "setting": "last-3-pick-old-and-tell", "worker_id": "O9XAZWYIK7Z1DFI", "story_id": "46858", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and you will find plenty of superheroes !", "storylet_id": "234293"}], [{"original_text": "It was fun for everyone, including this family of hippies.", "album_id": "72157636777261654", "photo_flickr_id": "10393490093", "setting": "last-3-pick-old-and-tell", "worker_id": "O9XAZWYIK7Z1DFI", "story_id": "46858", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was fun for everyone , including this family of hippies .", "storylet_id": "234294"}], [{"original_text": "The entire family dressed up as hippies for Halloween costume contest.", "album_id": "72157636777261654", "photo_flickr_id": "10393490093", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46859", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the entire family dressed up as hippies for halloween costume contest .", "storylet_id": "234295"}], [{"original_text": "Last year mom and dad won a prize for best costume.", "album_id": "72157636777261654", "photo_flickr_id": "10393346856", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46859", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "last year mom and dad won a prize for best costume .", "storylet_id": "234296"}], [{"original_text": "Dad's crusty old fisherman costume took first place the year before that.", "album_id": "72157636777261654", "photo_flickr_id": "10393317944", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46859", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad 's crusty old fisherman costume took first place the year before that .", "storylet_id": "234297"}], [{"original_text": "This year they will have to beat Dr. Who and his companion", "album_id": "72157636777261654", "photo_flickr_id": "10393314865", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46859", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this year they will have to beat dr. who and his companion", "storylet_id": "234298"}], [{"original_text": "as well as Mr. Incredible and his son.", "album_id": "72157636777261654", "photo_flickr_id": "10393312274", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46859", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as well as mr . incredible and his son .", "storylet_id": "234299"}], [{"original_text": "Mark and Jason are dressed up for some Halloween fun.", "album_id": "72157625234587710", "photo_flickr_id": "5112801156", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "46860", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [male] are dressed up for some halloween fun .", "storylet_id": "234300"}], [{"original_text": "Jason is going as Freddie Mercury.", "album_id": "72157625234587710", "photo_flickr_id": "5112779228", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "46860", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is going as organization organization .", "storylet_id": "234301"}], [{"original_text": "Mark is going as a Fire Chief. ", "album_id": "72157625234587710", "photo_flickr_id": "5112204311", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "46860", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] is going as a fire chief .", "storylet_id": "234302"}], [{"original_text": "mark was trying to figure out what this hole was for in the Pumpkin decoration.", "album_id": "72157625234587710", "photo_flickr_id": "5112182019", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "46860", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mark was trying to figure out what this hole was for in the pumpkin decoration .", "storylet_id": "234303"}], [{"original_text": "The two boys had a great time trick or treating and hauled in lots of candy for mom and dad to check out.", "album_id": "72157625234587710", "photo_flickr_id": "5112180949", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "46860", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the two boys had a great time trick or treating and hauled in lots of candy for mom and dad to check out .", "storylet_id": "234304"}], [{"original_text": "The family arrived at the forest, ready for a great family day.", "album_id": "72157625234587710", "photo_flickr_id": "5112780330", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46861", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family arrived at the forest , ready for a great family day .", "storylet_id": "234305"}], [{"original_text": "They pose before starting the day's activities.", "album_id": "72157625234587710", "photo_flickr_id": "5112180949", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46861", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they pose before starting the day 's activities .", "storylet_id": "234306"}], [{"original_text": "It seems like they are sharing a great story", "album_id": "72157625234587710", "photo_flickr_id": "5112801156", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46861", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it seems like they are sharing a great story", "storylet_id": "234307"}], [{"original_text": "After the picture one of the brothers decides to get a mustace", "album_id": "72157625234587710", "photo_flickr_id": "5112779228", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46861", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the picture one of the brothers decides to get a mustace", "storylet_id": "234308"}], [{"original_text": "They begin playing a game to round out the day", "album_id": "72157625234587710", "photo_flickr_id": "5112802942", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46861", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they begin playing a game to round out the day", "storylet_id": "234309"}], [{"original_text": "I took my boys to the annual pumpkin festival.", "album_id": "72157625234587710", "photo_flickr_id": "5112801156", "setting": "last-3-pick-old-and-tell", "worker_id": "O9XAZWYIK7Z1DFI", "story_id": "46862", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took my boys to the annual pumpkin festival .", "storylet_id": "234310"}], [{"original_text": "They picked out their own costumes.", "album_id": "72157625234587710", "photo_flickr_id": "5112779228", "setting": "last-3-pick-old-and-tell", "worker_id": "O9XAZWYIK7Z1DFI", "story_id": "46862", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they picked out their own costumes .", "storylet_id": "234311"}], [{"original_text": "Evan was a firefighter for last year's festival, too!", "album_id": "72157625234587710", "photo_flickr_id": "5112204311", "setting": "last-3-pick-old-and-tell", "worker_id": "O9XAZWYIK7Z1DFI", "story_id": "46862", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was a firefighter for last year 's festival , too !", "storylet_id": "234312"}], [{"original_text": "Toss-the-beanbag game is always fun.", "album_id": "72157625234587710", "photo_flickr_id": "5112182019", "setting": "last-3-pick-old-and-tell", "worker_id": "O9XAZWYIK7Z1DFI", "story_id": "46862", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "toss-the-beanbag game is always fun .", "storylet_id": "234313"}], [{"original_text": "At the end of the day, my boys were tired and happy.", "album_id": "72157625234587710", "photo_flickr_id": "5112180949", "setting": "last-3-pick-old-and-tell", "worker_id": "O9XAZWYIK7Z1DFI", "story_id": "46862", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , my boys were tired and happy .", "storylet_id": "234314"}], [{"original_text": "Our two boys were so excited to celebrate Halloween and get candy.", "album_id": "72157625234587710", "photo_flickr_id": "5112801156", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46863", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our two boys were so excited to celebrate halloween and get candy .", "storylet_id": "234315"}], [{"original_text": "Out older son decided to dress up as a doctor.", "album_id": "72157625234587710", "photo_flickr_id": "5112779228", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46863", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "out older son decided to dress up as a doctor .", "storylet_id": "234316"}], [{"original_text": "Our youngest son went as a firefighter, the same job as his dad.", "album_id": "72157625234587710", "photo_flickr_id": "5112204311", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46863", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our youngest son went as a firefighter , the same job as his dad .", "storylet_id": "234317"}], [{"original_text": "We played games with cut out Pumpkin boards.", "album_id": "72157625234587710", "photo_flickr_id": "5112182019", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46863", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we played games with cut out pumpkin boards .", "storylet_id": "234318"}], [{"original_text": "After that we departed to go get some candy.", "album_id": "72157625234587710", "photo_flickr_id": "5112180949", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46863", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that we departed to go get some candy .", "storylet_id": "234319"}], [{"original_text": "The boys are both dressed up and ready to have some fun.", "album_id": "72157625234587710", "photo_flickr_id": "5112801156", "setting": "last-3-pick-old-and-tell", "worker_id": "MBVFPT101V7PPDD", "story_id": "46864", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boys are both dressed up and ready to have some fun .", "storylet_id": "234320"}], [{"original_text": "Ryan is dressed up like a scientist. Do you like his little mustache?", "album_id": "72157625234587710", "photo_flickr_id": "5112779228", "setting": "last-3-pick-old-and-tell", "worker_id": "MBVFPT101V7PPDD", "story_id": "46864", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is dressed up like a scientist . do you like his little mustache ?", "storylet_id": "234321"}], [{"original_text": "Kevin is dressed up like a firefighter ready to save the day.", "album_id": "72157625234587710", "photo_flickr_id": "5112204311", "setting": "last-3-pick-old-and-tell", "worker_id": "MBVFPT101V7PPDD", "story_id": "46864", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] is dressed up like a firefighter ready to save the day .", "storylet_id": "234322"}], [{"original_text": "Before they got out trick or treating, the boys went to check on some awesome pumpkin decorations.", "album_id": "72157625234587710", "photo_flickr_id": "5112182019", "setting": "last-3-pick-old-and-tell", "worker_id": "MBVFPT101V7PPDD", "story_id": "46864", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "before they got out trick or treating , the boys went to check on some awesome pumpkin decorations .", "storylet_id": "234323"}], [{"original_text": "They are ready to go and grab some sweets.", "album_id": "72157625234587710", "photo_flickr_id": "5112180949", "setting": "last-3-pick-old-and-tell", "worker_id": "MBVFPT101V7PPDD", "story_id": "46864", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are ready to go and grab some sweets .", "storylet_id": "234324"}], [{"original_text": "I anticipated on having a good Halloween today. ", "album_id": "72157631898865749", "photo_flickr_id": "8220823305", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46865", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i anticipated on having a good halloween today .", "storylet_id": "234325"}], [{"original_text": "Not only did my co-workers participate by wearing costumes", "album_id": "72157631898865749", "photo_flickr_id": "8221897984", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46865", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "not only did my co-workers participate by wearing costumes", "storylet_id": "234326"}], [{"original_text": "but they were in the spirit of decorating the office.", "album_id": "72157631898865749", "photo_flickr_id": "8221898312", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46865", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but they were in the spirit of decorating the office .", "storylet_id": "234327"}], [{"original_text": "The day didn't stop after work since our neighbor was throwing a huge party.", "album_id": "72157631898865749", "photo_flickr_id": "8221902650", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46865", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the day did n't stop after work since our neighbor was throwing a huge party .", "storylet_id": "234328"}], [{"original_text": "Even his wife was delighted.", "album_id": "72157631898865749", "photo_flickr_id": "8221902990", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46865", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even his wife was delighted .", "storylet_id": "234329"}], [{"original_text": "Already dressed for the party, he sits in the office waiting for the day to be over.", "album_id": "72157631898865749", "photo_flickr_id": "8221897984", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46866", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "already dressed for the party , he sits in the office waiting for the day to be over .", "storylet_id": "234330"}], [{"original_text": "They head out into the park in order to show off their costumes.", "album_id": "72157631898865749", "photo_flickr_id": "8221899092", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46866", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they head out into the park in order to show off their costumes .", "storylet_id": "234331"}], [{"original_text": "They meet some onlookers who begins to ask them questions.", "album_id": "72157631898865749", "photo_flickr_id": "8220821539", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46866", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they meet some onlookers who begins to ask them questions .", "storylet_id": "234332"}], [{"original_text": "After leaving the park, the couple head downtown", "album_id": "72157631898865749", "photo_flickr_id": "8220823305", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46866", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after leaving the park , the couple head downtown", "storylet_id": "234333"}], [{"original_text": "They recharged with a coffee break ", "album_id": "72157631898865749", "photo_flickr_id": "8221900110", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46866", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they recharged with a coffee break", "storylet_id": "234334"}], [{"original_text": "It was a chilly day for dressing up on Halloween.", "album_id": "72157631898865749", "photo_flickr_id": "8220823305", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "46867", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a chilly day for dressing up on halloween .", "storylet_id": "234335"}], [{"original_text": "One of my co-workers just used a costume he'd worn at Comic-Con.", "album_id": "72157631898865749", "photo_flickr_id": "8221897984", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "46867", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of my co-workers just used a costume he 'd worn at organization .", "storylet_id": "234336"}], [{"original_text": "Jim from Accounting is a dead ringer for the great Bob Ross.", "album_id": "72157631898865749", "photo_flickr_id": "8221898312", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "46867", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] from accounting is a dead ringer for the great [male] [male] .", "storylet_id": "234337"}], [{"original_text": "As the day wore on, he slipped in and out of character, appropriating pieces of other people's costumes. ", "album_id": "72157631898865749", "photo_flickr_id": "8221902650", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "46867", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the day wore on , he slipped in and out of character , appropriating pieces of other people 's costumes .", "storylet_id": "234338"}], [{"original_text": "Sadly, our Bob Ross also gets a little frisky-fingered a few drinks into happy hour.", "album_id": "72157631898865749", "photo_flickr_id": "8221902990", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "46867", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sadly , our [male] [male] also gets a little frisky-fingered a few drinks into happy hour .", "storylet_id": "234339"}], [{"original_text": "There was an office costume party about to start up. Everybody was waiting outside for the fun.", "album_id": "72157631898865749", "photo_flickr_id": "8220823305", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46868", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an office costume party about to start up . everybody was waiting outside for the fun .", "storylet_id": "234340"}], [{"original_text": "As people sat at their desk they looked a little different all dressed up.", "album_id": "72157631898865749", "photo_flickr_id": "8221897984", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46868", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as people sat at their desk they looked a little different all dressed up .", "storylet_id": "234341"}], [{"original_text": "Some costumes were very creative, with characters we see on TV.", "album_id": "72157631898865749", "photo_flickr_id": "8221898312", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46868", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some costumes were very creative , with characters we see on tv .", "storylet_id": "234342"}], [{"original_text": "This man decided to make this women laugh and say I didn't know we were supposed to dress up.", "album_id": "72157631898865749", "photo_flickr_id": "8221902650", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46868", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this man decided to make this women laugh and say i did n't know we were supposed to dress up .", "storylet_id": "234343"}], [{"original_text": "But he snuggles in for a picture with a women dressed for the far out seventies. ", "album_id": "72157631898865749", "photo_flickr_id": "8221902990", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46868", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but he snuggles in for a picture with a women dressed for the far out seventies .", "storylet_id": "234344"}], [{"original_text": "Dave couldn't wait to get to work to show everyone his costume. ", "album_id": "72157631898865749", "photo_flickr_id": "8220823305", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "46869", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] could n't wait to get to work to show everyone his costume .", "storylet_id": "234345"}], [{"original_text": "Drew went for a pretty predictable Magneto so you can't really tell from his mask how funny he thinks Dave's costume is. ", "album_id": "72157631898865749", "photo_flickr_id": "8221897984", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "46869", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] went for a pretty predictable magneto so you ca n't really tell from his mask how funny he thinks [male] 's costume is .", "storylet_id": "234346"}], [{"original_text": "Just in case people did't get it Dave set up a display so he could paint many \"happy little trees.\"", "album_id": "72157631898865749", "photo_flickr_id": "8221898312", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "46869", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "just in case people did't get it [male] set up a display so he could paint many `` happy little trees . ''", "storylet_id": "234347"}], [{"original_text": "He told Sara about how we also considered another 80s reference in Alfred E Neuman and his \"What Me Worry\" stance. ", "album_id": "72157631898865749", "photo_flickr_id": "8221902650", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "46869", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he told [female] about how we also considered another 80s reference in [male] e neuman and his `` what me worry '' stance .", "storylet_id": "234348"}], [{"original_text": "But Dave was having the most fun when he saw that Deidre had styled up her hair so they could hang out as Afro twins. ", "album_id": "72157631898865749", "photo_flickr_id": "8221902990", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "46869", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but [male] was having the most fun when he saw that [female] had styled up her hair so they could hang out as afro twins .", "storylet_id": "234349"}], [{"original_text": "Every Halloween, the family would get together and carve pumpkins.", "album_id": "72157631868520388", "photo_flickr_id": "8129604259", "setting": "first-2-pick-and-tell", "worker_id": "JS786QZEE2V8FIL", "story_id": "46870", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every halloween , the family would get together and carve pumpkins .", "storylet_id": "234350"}], [{"original_text": "The pumpkin carving was a tradition, and brought out the happy and goofy sides of every family member.", "album_id": "72157631868520388", "photo_flickr_id": "8129597387", "setting": "first-2-pick-and-tell", "worker_id": "JS786QZEE2V8FIL", "story_id": "46870", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pumpkin carving was a tradition , and brought out the happy and goofy sides of every family member .", "storylet_id": "234351"}], [{"original_text": "Even the family pets got to celebrate with the season and take a nice swim while the family carved pumpkins.", "album_id": "72157631868520388", "photo_flickr_id": "8129595275", "setting": "first-2-pick-and-tell", "worker_id": "JS786QZEE2V8FIL", "story_id": "46870", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the family pets got to celebrate with the season and take a nice swim while the family carved pumpkins .", "storylet_id": "234352"}], [{"original_text": "Once the pumpkins were ready, everyone got together and took family photos.", "album_id": "72157631868520388", "photo_flickr_id": "8129597238", "setting": "first-2-pick-and-tell", "worker_id": "JS786QZEE2V8FIL", "story_id": "46870", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once the pumpkins were ready , everyone got together and took family photos .", "storylet_id": "234353"}], [{"original_text": "At night, after all the activities were over, the pumpkins were put out on display for the whole neighborhood to see.", "album_id": "72157631868520388", "photo_flickr_id": "8129592785", "setting": "first-2-pick-and-tell", "worker_id": "JS786QZEE2V8FIL", "story_id": "46870", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night , after all the activities were over , the pumpkins were put out on display for the whole neighborhood to see .", "storylet_id": "234354"}], [{"original_text": "Tim and Sara decided to have a pumpkin carving contest.", "album_id": "72157631868520388", "photo_flickr_id": "8129784512", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "46871", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] decided to have a pumpkin carving contest .", "storylet_id": "234355"}], [{"original_text": "They invited some friends over and posed with their dog Max in front of some of the entries. ", "album_id": "72157631868520388", "photo_flickr_id": "8129786348", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "46871", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they invited some friends over and posed with their dog [male] in front of some of the entries .", "storylet_id": "234356"}], [{"original_text": "Tim had even carved a Sara look a like pumpkin. ", "album_id": "72157631868520388", "photo_flickr_id": "8129597387", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "46871", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] had even carved a [female] look a like pumpkin .", "storylet_id": "234357"}], [{"original_text": "Once the pumpkins were done it was time to play in the pool. ", "album_id": "72157631868520388", "photo_flickr_id": "8129595275", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "46871", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once the pumpkins were done it was time to play in the pool .", "storylet_id": "234358"}], [{"original_text": "As soon as it got dark all the fabulous pumpkins lit up the night waiting for trick or treaters. ", "album_id": "72157631868520388", "photo_flickr_id": "8129588807", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "46871", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as soon as it got dark all the fabulous pumpkins lit up the night waiting for trick or treaters .", "storylet_id": "234359"}], [{"original_text": "These people are carving their own pumpkins.", "album_id": "72157631868520388", "photo_flickr_id": "8129604259", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46872", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these people are carving their own pumpkins .", "storylet_id": "234360"}], [{"original_text": "This is just one of the many faces that was carved into the pumpkin.", "album_id": "72157631868520388", "photo_flickr_id": "8129597387", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46872", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is just one of the many faces that was carved into the pumpkin .", "storylet_id": "234361"}], [{"original_text": "They have two beautiful brown dogs.", "album_id": "72157631868520388", "photo_flickr_id": "8129595275", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46872", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they have two beautiful brown dogs .", "storylet_id": "234362"}], [{"original_text": "They like to display their art pieces around the home.", "album_id": "72157631868520388", "photo_flickr_id": "8129597238", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46872", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they like to display their art pieces around the home .", "storylet_id": "234363"}], [{"original_text": "The pumpkins are truly a work of art and they do a very good job.", "album_id": "72157631868520388", "photo_flickr_id": "8129592785", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "46872", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the pumpkins are truly a work of art and they do a very good job .", "storylet_id": "234364"}], [{"original_text": "Mylee and Jim sitting next to their carved pumpkins.", "album_id": "72157631868520388", "photo_flickr_id": "8129784512", "setting": "last-3-pick-old-and-tell", "worker_id": "GWN5P94JUVIJUMQ", "story_id": "46873", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mylee and [male] sitting next to their carved pumpkins .", "storylet_id": "234365"}], [{"original_text": "Here's the two of them with their dog and a family friend.", "album_id": "72157631868520388", "photo_flickr_id": "8129786348", "setting": "last-3-pick-old-and-tell", "worker_id": "GWN5P94JUVIJUMQ", "story_id": "46873", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's the two of them with their dog and a family friend .", "storylet_id": "234366"}], [{"original_text": "Jim is showing his impression on mylee.", "album_id": "72157631868520388", "photo_flickr_id": "8129597387", "setting": "last-3-pick-old-and-tell", "worker_id": "GWN5P94JUVIJUMQ", "story_id": "46873", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] is showing his impression on mylee .", "storylet_id": "234367"}], [{"original_text": "Mylee is trying to get the dogs to jump in the pool.", "album_id": "72157631868520388", "photo_flickr_id": "8129595275", "setting": "last-3-pick-old-and-tell", "worker_id": "GWN5P94JUVIJUMQ", "story_id": "46873", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mylee is trying to get the dogs to jump in the pool .", "storylet_id": "234368"}], [{"original_text": "Finally the carvings are completed and look very scary. ", "album_id": "72157631868520388", "photo_flickr_id": "8129588807", "setting": "last-3-pick-old-and-tell", "worker_id": "GWN5P94JUVIJUMQ", "story_id": "46873", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the carvings are completed and look very scary .", "storylet_id": "234369"}], [{"original_text": "We are so proud of our pumpkins.", "album_id": "72157631868520388", "photo_flickr_id": "8129784512", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46874", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are so proud of our pumpkins .", "storylet_id": "234370"}], [{"original_text": "Even the dog enjoyed them.", "album_id": "72157631868520388", "photo_flickr_id": "8129786348", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46874", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the dog enjoyed them .", "storylet_id": "234371"}], [{"original_text": "Some of the pumpkins looked funny.", "album_id": "72157631868520388", "photo_flickr_id": "8129597387", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46874", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the pumpkins looked funny .", "storylet_id": "234372"}], [{"original_text": "The dogs always enjoy jumping in the pool.", "album_id": "72157631868520388", "photo_flickr_id": "8129595275", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46874", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dogs always enjoy jumping in the pool .", "storylet_id": "234373"}], [{"original_text": "At night time when the pumpkins are all lit up they look amazing.", "album_id": "72157631868520388", "photo_flickr_id": "8129588807", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46874", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night time when the pumpkins are all lit up they look amazing .", "storylet_id": "234374"}], [{"original_text": "For Halloween the grown ups all gathered for a costume party at the neighbors house. ", "album_id": "72157602755096582", "photo_flickr_id": "1786870285", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46875", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for halloween the grown ups all gathered for a costume party at the neighbors house .", "storylet_id": "234375"}], [{"original_text": "Indiana Jones was there. ", "album_id": "72157602755096582", "photo_flickr_id": "1786865551", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46875", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "indiana jones was there .", "storylet_id": "234376"}], [{"original_text": "Everyone enjoyed the themed drinks.", "album_id": "72157602755096582", "photo_flickr_id": "1787721760", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46875", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone enjoyed the themed drinks .", "storylet_id": "234377"}], [{"original_text": "And then we all took photographs. ", "album_id": "72157602755096582", "photo_flickr_id": "1787726298", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46875", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and then we all took photographs .", "storylet_id": "234378"}], [{"original_text": "Towards the end everyone was tired and went home. ", "album_id": "72157602755096582", "photo_flickr_id": "1787746166", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "46875", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "towards the end everyone was tired and went home .", "storylet_id": "234379"}], [{"original_text": "I had my Indiana Jones costume on and had a beverage in hand at my friend's annual Halloween party.", "album_id": "72157602755096582", "photo_flickr_id": "1786865551", "setting": "first-2-pick-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "46876", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had my indiana jones costume on and had a beverage in hand at my friend 's annual halloween party .", "storylet_id": "234380"}], [{"original_text": "The party included tons of drink and food options thanks to our wonderful host, who's seen here working hard in the kitchen.", "album_id": "72157602755096582", "photo_flickr_id": "1786867053", "setting": "first-2-pick-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "46876", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the party included tons of drink and food options thanks to our wonderful host , who 's seen here working hard in the kitchen .", "storylet_id": "234381"}], [{"original_text": "There were lots of people there, so sometimes the party spilled out onto the front stoop.", "album_id": "72157602755096582", "photo_flickr_id": "1787718906", "setting": "first-2-pick-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "46876", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were lots of people there , so sometimes the party spilled out onto the front stoop .", "storylet_id": "234382"}], [{"original_text": "Joe's costume was my favorite. I hate clowns and he kept sneaking up behind me and scaring me, but ultimately it was funny.", "album_id": "72157602755096582", "photo_flickr_id": "1787736902", "setting": "first-2-pick-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "46876", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] 's costume was my favorite . i hate clowns and he kept sneaking up behind me and scaring me , but ultimately it was funny .", "storylet_id": "234383"}], [{"original_text": "The gang had a great time. I can't wait for another year to pass so we can attend another party.", "album_id": "72157602755096582", "photo_flickr_id": "1786889759", "setting": "first-2-pick-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "46876", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the gang had a great time . i ca n't wait for another year to pass so we can attend another party .", "storylet_id": "234384"}], [{"original_text": "Halloween parties are the best!", "album_id": "72157602755096582", "photo_flickr_id": "1786865551", "setting": "last-3-pick-old-and-tell", "worker_id": "YQ6ML2RDEMN273K", "story_id": "46877", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "halloween parties are the best !", "storylet_id": "234385"}], [{"original_text": "I enjoy getting the food and drinks together while talking to my friends in the kitchen.", "album_id": "72157602755096582", "photo_flickr_id": "1786867053", "setting": "last-3-pick-old-and-tell", "worker_id": "YQ6ML2RDEMN273K", "story_id": "46877", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i enjoy getting the food and drinks together while talking to my friends in the kitchen .", "storylet_id": "234386"}], [{"original_text": "Here are some of my friends having a blast as usual. The redhead, Julie, is so funny!", "album_id": "72157602755096582", "photo_flickr_id": "1787718906", "setting": "last-3-pick-old-and-tell", "worker_id": "YQ6ML2RDEMN273K", "story_id": "46877", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here are some of my friends having a blast as usual . the redhead , [female] , is so funny !", "storylet_id": "234387"}], [{"original_text": "Best make-up went to my friend, Victor. ", "album_id": "72157602755096582", "photo_flickr_id": "1787736902", "setting": "last-3-pick-old-and-tell", "worker_id": "YQ6ML2RDEMN273K", "story_id": "46877", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "best make-up went to my friend , [male] .", "storylet_id": "234388"}], [{"original_text": "An awesome night with a great group of friends. ", "album_id": "72157602755096582", "photo_flickr_id": "1786889759", "setting": "last-3-pick-old-and-tell", "worker_id": "YQ6ML2RDEMN273K", "story_id": "46877", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "an awesome night with a great group of friends .", "storylet_id": "234389"}], [{"original_text": "The costume party was a lot of fun.", "album_id": "72157602755096582", "photo_flickr_id": "1786865551", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46878", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the costume party was a lot of fun .", "storylet_id": "234390"}], [{"original_text": "There was plenty of food and drink.", "album_id": "72157602755096582", "photo_flickr_id": "1786867053", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46878", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was plenty of food and drink .", "storylet_id": "234391"}], [{"original_text": "There were a lot of funny moments.", "album_id": "72157602755096582", "photo_flickr_id": "1787718906", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46878", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of funny moments .", "storylet_id": "234392"}], [{"original_text": "Someone dressed up as a clown.", "album_id": "72157602755096582", "photo_flickr_id": "1787736902", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46878", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someone dressed up as a clown .", "storylet_id": "234393"}], [{"original_text": "A group picture was taken at the end. ", "album_id": "72157602755096582", "photo_flickr_id": "1786889759", "setting": "last-3-pick-old-and-tell", "worker_id": "3RC4Q8UQ8QUIAMU", "story_id": "46878", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a group picture was taken at the end .", "storylet_id": "234394"}], [{"original_text": "there were alot of great costumes at the halloween party.", "album_id": "72157602755096582", "photo_flickr_id": "1786870285", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46879", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were alot of great costumes at the halloween party .", "storylet_id": "234395"}], [{"original_text": "Indiana Jones took first place", "album_id": "72157602755096582", "photo_flickr_id": "1786865551", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46879", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "indiana jones took first place", "storylet_id": "234396"}], [{"original_text": "some people didn't put any effort int oit ", "album_id": "72157602755096582", "photo_flickr_id": "1787721760", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46879", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people did n't put any effort int oit", "storylet_id": "234397"}], [{"original_text": "there were some really freaky costumes too.", "album_id": "72157602755096582", "photo_flickr_id": "1787726298", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46879", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were some really freaky costumes too .", "storylet_id": "234398"}], [{"original_text": "sexy costumes as well from the girls ", "album_id": "72157602755096582", "photo_flickr_id": "1787746166", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46879", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sexy costumes as well from the girls", "storylet_id": "234399"}], [{"original_text": "I was on a mission last weekend to rescue the princess.", "album_id": "72157602757730171", "photo_flickr_id": "1787782198", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46880", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was on a mission last weekend to rescue the princess .", "storylet_id": "234400"}], [{"original_text": "I had to seek out a source that had vital intel on the whereabouts of the princess.", "album_id": "72157602757730171", "photo_flickr_id": "1786968329", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46880", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had to seek out a source that had vital intel on the whereabouts of the princess .", "storylet_id": "234401"}], [{"original_text": "On the way I met some resistance.", "album_id": "72157602757730171", "photo_flickr_id": "1787824408", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46880", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on the way i met some resistance .", "storylet_id": "234402"}], [{"original_text": "But I was able to take down all of my opponents.", "album_id": "72157602757730171", "photo_flickr_id": "1787792196", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46880", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but i was able to take down all of my opponents .", "storylet_id": "234403"}], [{"original_text": "I found the princess in the end and she was very glad I rescued her.", "album_id": "72157602757730171", "photo_flickr_id": "1787888316", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46880", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i found the princess in the end and she was very glad i rescued her .", "storylet_id": "234404"}], [{"original_text": "Ahh halloween, first we sent the kids out with grandma.", "album_id": "72157602757730171", "photo_flickr_id": "1786956571", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "46881", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "ahh halloween , first we sent the kids out with grandma .", "storylet_id": "234405"}], [{"original_text": "Then the real fun began.", "album_id": "72157602757730171", "photo_flickr_id": "1787782198", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "46881", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then the real fun began .", "storylet_id": "234406"}], [{"original_text": "My wife and I had a fun sword fight.", "album_id": "72157602757730171", "photo_flickr_id": "1787792196", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "46881", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my wife and i had a fun sword fight .", "storylet_id": "234407"}], [{"original_text": "My brother was making a weird alcoholic brew.", "album_id": "72157602757730171", "photo_flickr_id": "1787858002", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "46881", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my brother was making a weird alcoholic brew .", "storylet_id": "234408"}], [{"original_text": "And my wife's brother was doing smoke tricks in the kitchen. What a fun and crazy Halloween party we had.", "album_id": "72157602757730171", "photo_flickr_id": "1787912270", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "46881", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and my wife 's brother was doing smoke tricks in the kitchen . what a fun and crazy halloween party we had .", "storylet_id": "234409"}], [{"original_text": "Larry 'The Ninja' at our Halloween Party!", "album_id": "72157602757730171", "photo_flickr_id": "1787782198", "setting": "last-3-pick-old-and-tell", "worker_id": "ODHDLQA67M82YT1", "story_id": "46882", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] 'the ninja ' at our halloween party !", "storylet_id": "234410"}], [{"original_text": "Tina and Marcus are having a blast at the party tonight. ", "album_id": "72157602757730171", "photo_flickr_id": "1786968329", "setting": "last-3-pick-old-and-tell", "worker_id": "ODHDLQA67M82YT1", "story_id": "46882", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] and [male] are having a blast at the party tonight .", "storylet_id": "234411"}], [{"original_text": "No, Thomas, don't pop the yellow balloooooon. He ended up popping them. ", "album_id": "72157602757730171", "photo_flickr_id": "1787824408", "setting": "last-3-pick-old-and-tell", "worker_id": "ODHDLQA67M82YT1", "story_id": "46882", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "no , [male] , do n't pop the yellow balloooooon . he ended up popping them .", "storylet_id": "234412"}], [{"original_text": "The Ninja is fighting the female gladiator. ", "album_id": "72157602757730171", "photo_flickr_id": "1787792196", "setting": "last-3-pick-old-and-tell", "worker_id": "ODHDLQA67M82YT1", "story_id": "46882", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ninja is fighting the female gladiator .", "storylet_id": "234413"}], [{"original_text": "And here's our Miss America, Laura. I think she lost her roses somewhere. ", "album_id": "72157602757730171", "photo_flickr_id": "1787888316", "setting": "last-3-pick-old-and-tell", "worker_id": "ODHDLQA67M82YT1", "story_id": "46882", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and here 's our location location , [female] . i think she lost her roses somewhere .", "storylet_id": "234414"}], [{"original_text": "We went to a Halloween party this year.", "album_id": "72157602757730171", "photo_flickr_id": "1787782198", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46883", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a halloween party this year .", "storylet_id": "234415"}], [{"original_text": "There were a lot of amazing costumes.", "album_id": "72157602757730171", "photo_flickr_id": "1786968329", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46883", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of amazing costumes .", "storylet_id": "234416"}], [{"original_text": "Some of them looked really funny.", "album_id": "72157602757730171", "photo_flickr_id": "1787824408", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46883", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them looked really funny .", "storylet_id": "234417"}], [{"original_text": "Some of them were a little scary too.", "album_id": "72157602757730171", "photo_flickr_id": "1787792196", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46883", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of them were a little scary too .", "storylet_id": "234418"}], [{"original_text": "My costume was a common one that really fit my personality.", "album_id": "72157602757730171", "photo_flickr_id": "1787888316", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46883", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my costume was a common one that really fit my personality .", "storylet_id": "234419"}], [{"original_text": "my favorite costume was the ninja costume. ", "album_id": "72157602757730171", "photo_flickr_id": "1787782198", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46884", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my favorite costume was the ninja costume .", "storylet_id": "234420"}], [{"original_text": "everyone was having a blast. ", "album_id": "72157602757730171", "photo_flickr_id": "1786968329", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46884", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was having a blast .", "storylet_id": "234421"}], [{"original_text": "the balloon were filled with nitrous.", "album_id": "72157602757730171", "photo_flickr_id": "1787824408", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46884", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the balloon were filled with nitrous .", "storylet_id": "234422"}], [{"original_text": "Sheera and the ninja had a battle", "album_id": "72157602757730171", "photo_flickr_id": "1787792196", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46884", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sheera and the ninja had a battle", "storylet_id": "234423"}], [{"original_text": "Miss America wasn't impressed", "album_id": "72157602757730171", "photo_flickr_id": "1787888316", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "46884", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "miss location was n't impressed", "storylet_id": "234424"}], [{"original_text": "It was Halloween and everyone dressed up.", "album_id": "72157615947240780", "photo_flickr_id": "1789179606", "setting": "first-2-pick-and-tell", "worker_id": "0ATLPG4NXQE5K19", "story_id": "46885", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was halloween and everyone dressed up .", "storylet_id": "234425"}], [{"original_text": "They had a rockin' party.", "album_id": "72157615947240780", "photo_flickr_id": "1787884221", "setting": "first-2-pick-and-tell", "worker_id": "0ATLPG4NXQE5K19", "story_id": "46885", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a rockin ' party .", "storylet_id": "234426"}], [{"original_text": "It was kinda intense.", "album_id": "72157615947240780", "photo_flickr_id": "1787446975", "setting": "first-2-pick-and-tell", "worker_id": "0ATLPG4NXQE5K19", "story_id": "46885", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was kinda intense .", "storylet_id": "234427"}], [{"original_text": "They enter the bedroom.", "album_id": "72157615947240780", "photo_flickr_id": "1789319830", "setting": "first-2-pick-and-tell", "worker_id": "0ATLPG4NXQE5K19", "story_id": "46885", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they enter the bedroom .", "storylet_id": "234428"}], [{"original_text": "That night was freaky.", "album_id": "72157615947240780", "photo_flickr_id": "1788631812", "setting": "first-2-pick-and-tell", "worker_id": "0ATLPG4NXQE5K19", "story_id": "46885", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that night was freaky .", "storylet_id": "234429"}], [{"original_text": "The costume party was so much fun.", "album_id": "72157615947240780", "photo_flickr_id": "1789319830", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46886", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the costume party was so much fun .", "storylet_id": "234430"}], [{"original_text": "We really got into our characters.", "album_id": "72157615947240780", "photo_flickr_id": "1788631812", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46886", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we really got into our characters .", "storylet_id": "234431"}], [{"original_text": "Playing the parts took a lot of skill.", "album_id": "72157615947240780", "photo_flickr_id": "1788588010", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46886", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "playing the parts took a lot of skill .", "storylet_id": "234432"}], [{"original_text": "Everyone was laughing at the funny antics.", "album_id": "72157615947240780", "photo_flickr_id": "1789179606", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46886", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was laughing at the funny antics .", "storylet_id": "234433"}], [{"original_text": "After it was over I realized I hadn't been wearing my lipstick.", "album_id": "72157615947240780", "photo_flickr_id": "1787446975", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46886", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after it was over i realized i had n't been wearing my lipstick .", "storylet_id": "234434"}], [{"original_text": "Everyone was excited to go to the big Halloween Party.", "album_id": "72157615947240780", "photo_flickr_id": "1789179606", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46887", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was excited to go to the big organization organization .", "storylet_id": "234435"}], [{"original_text": "There was a pre-party before everyone left for the big party.", "album_id": "72157615947240780", "photo_flickr_id": "1787884221", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46887", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a pre-party before everyone left for the big party .", "storylet_id": "234436"}], [{"original_text": "Some people dressed in outrageous costumes.", "album_id": "72157615947240780", "photo_flickr_id": "1787446975", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46887", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people dressed in outrageous costumes .", "storylet_id": "234437"}], [{"original_text": "Others wore more traditional costumes.", "album_id": "72157615947240780", "photo_flickr_id": "1789319830", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46887", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others wore more traditional costumes .", "storylet_id": "234438"}], [{"original_text": "A few people need to rest a bit before going out for the night.", "album_id": "72157615947240780", "photo_flickr_id": "1788631812", "setting": "last-3-pick-old-and-tell", "worker_id": "DWKK3CJL5VQ9NFL", "story_id": "46887", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a few people need to rest a bit before going out for the night .", "storylet_id": "234439"}], [{"original_text": "It was time for our yearly party.", "album_id": "72157615947240780", "photo_flickr_id": "1789179606", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46888", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was time for our yearly party .", "storylet_id": "234440"}], [{"original_text": "There were a lot of people there in really weird costumes.", "album_id": "72157615947240780", "photo_flickr_id": "1787884221", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46888", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people there in really weird costumes .", "storylet_id": "234441"}], [{"original_text": "This lady was having a really good time and I loved her costume.", "album_id": "72157615947240780", "photo_flickr_id": "1787446975", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46888", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this lady was having a really good time and i loved her costume .", "storylet_id": "234442"}], [{"original_text": "We had a blast. There was a lot of laughter and joking around.", "album_id": "72157615947240780", "photo_flickr_id": "1789319830", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46888", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a blast . there was a lot of laughter and joking around .", "storylet_id": "234443"}], [{"original_text": "At the end of the night there were some people that were really tired, but others wanted to keep going.", "album_id": "72157615947240780", "photo_flickr_id": "1788631812", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46888", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night there were some people that were really tired , but others wanted to keep going .", "storylet_id": "234444"}], [{"original_text": "At a costume party, my friends and me dressed up in colorful outfits.", "album_id": "72157615947240780", "photo_flickr_id": "1789179606", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46889", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at a costume party , my friends and me dressed up in colorful outfits .", "storylet_id": "234445"}], [{"original_text": "As the night went on we started to do a little dancing.", "album_id": "72157615947240780", "photo_flickr_id": "1787884221", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46889", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the night went on we started to do a little dancing .", "storylet_id": "234446"}], [{"original_text": "I had one friend who wore a wig in her costume.", "album_id": "72157615947240780", "photo_flickr_id": "1787446975", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46889", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had one friend who wore a wig in her costume .", "storylet_id": "234447"}], [{"original_text": "My friend dressed as a sailor met a man wearing green.", "album_id": "72157615947240780", "photo_flickr_id": "1789319830", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46889", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friend dressed as a sailor met a man wearing green .", "storylet_id": "234448"}], [{"original_text": "My two friends in drag consumed many drinks throughout the night.", "album_id": "72157615947240780", "photo_flickr_id": "1788631812", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "46889", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my two friends in drag consumed many drinks throughout the night .", "storylet_id": "234449"}], [{"original_text": "This lady in pink sure is having a go-go at it!", "album_id": "72157602770687293", "photo_flickr_id": "1794864740", "setting": "first-2-pick-and-tell", "worker_id": "K16O759TPDS2446", "story_id": "46890", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this lady in pink sure is having a go-go at it !", "storylet_id": "234450"}], [{"original_text": "Let's gather with our friends for our annual Halloween festivities. ", "album_id": "72157602770687293", "photo_flickr_id": "1794023381", "setting": "first-2-pick-and-tell", "worker_id": "K16O759TPDS2446", "story_id": "46890", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "let 's gather with our friends for our annual halloween festivities .", "storylet_id": "234451"}], [{"original_text": "Even Pikachu needs to unwind every once and awhile. ", "album_id": "72157602770687293", "photo_flickr_id": "1794025049", "setting": "first-2-pick-and-tell", "worker_id": "K16O759TPDS2446", "story_id": "46890", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even pikachu needs to unwind every once and awhile .", "storylet_id": "234452"}], [{"original_text": "Jack is here to welcome you and yours to the Halloween party.", "album_id": "72157602770687293", "photo_flickr_id": "1794867790", "setting": "first-2-pick-and-tell", "worker_id": "K16O759TPDS2446", "story_id": "46890", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is here to welcome you and yours to the halloween party .", "storylet_id": "234453"}], [{"original_text": "If you need a ride to the hood, these girls are ready.", "album_id": "72157602770687293", "photo_flickr_id": "1794868540", "setting": "first-2-pick-and-tell", "worker_id": "K16O759TPDS2446", "story_id": "46890", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "if you need a ride to the hood , these girls are ready .", "storylet_id": "234454"}], [{"original_text": "We decided to have a dress up party with our friends. Two of my friends having a good time.", "album_id": "72157602770687293", "photo_flickr_id": "1794865148", "setting": "first-2-pick-and-tell", "worker_id": "31FJZDD664KBKTS", "story_id": "46891", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to have a dress up party with our friends . two of my friends having a good time .", "storylet_id": "234455"}], [{"original_text": "Some of my other friends who didn't dress up for the party.", "album_id": "72157602770687293", "photo_flickr_id": "1794023381", "setting": "first-2-pick-and-tell", "worker_id": "31FJZDD664KBKTS", "story_id": "46891", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of my other friends who did n't dress up for the party .", "storylet_id": "234456"}], [{"original_text": "Three of my close friends who came to the party in costume.", "album_id": "72157602770687293", "photo_flickr_id": "1794024369", "setting": "first-2-pick-and-tell", "worker_id": "31FJZDD664KBKTS", "story_id": "46891", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "three of my close friends who came to the party in costume .", "storylet_id": "234457"}], [{"original_text": "One of my guy friends dressed like pokemon.", "album_id": "72157602770687293", "photo_flickr_id": "1794025049", "setting": "first-2-pick-and-tell", "worker_id": "31FJZDD664KBKTS", "story_id": "46891", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of my guy friends dressed like pokemon .", "storylet_id": "234458"}], [{"original_text": "The last picture of the night, my friends drinking and posing.", "album_id": "72157602770687293", "photo_flickr_id": "1794868540", "setting": "first-2-pick-and-tell", "worker_id": "31FJZDD664KBKTS", "story_id": "46891", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last picture of the night , my friends drinking and posing .", "storylet_id": "234459"}], [{"original_text": "We had a party at my house today.", "album_id": "72157602770687293", "photo_flickr_id": "1794864740", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46892", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a party at my house today .", "storylet_id": "234460"}], [{"original_text": "Several people showed up to help us celebrate the season.", "album_id": "72157602770687293", "photo_flickr_id": "1794023381", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46892", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "several people showed up to help us celebrate the season .", "storylet_id": "234461"}], [{"original_text": "We enjoyed each others company", "album_id": "72157602770687293", "photo_flickr_id": "1794025049", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46892", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we enjoyed each others company", "storylet_id": "234462"}], [{"original_text": "We carved some scary looking pumpkins.", "album_id": "72157602770687293", "photo_flickr_id": "1794867790", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46892", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we carved some scary looking pumpkins .", "storylet_id": "234463"}], [{"original_text": "I thought this costume was very unique she looked like a car that had working head lights.", "album_id": "72157602770687293", "photo_flickr_id": "1794868540", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "46892", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i thought this costume was very unique she looked like a car that had working head lights .", "storylet_id": "234464"}], [{"original_text": "It was Halloween and this household was preparing for the festivities for the night. ", "album_id": "72157602770687293", "photo_flickr_id": "1794865148", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46893", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was halloween and this household was preparing for the festivities for the night .", "storylet_id": "234465"}], [{"original_text": "The women in the house decided to dress conservatively and go out to the bars. ", "album_id": "72157602770687293", "photo_flickr_id": "1794023381", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46893", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the women in the house decided to dress conservatively and go out to the bars .", "storylet_id": "234466"}], [{"original_text": "Other groups of people dressed up and stayed at home to relax. ", "album_id": "72157602770687293", "photo_flickr_id": "1794024369", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46893", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other groups of people dressed up and stayed at home to relax .", "storylet_id": "234467"}], [{"original_text": "One particular individual then decided that the others were boring and started drinking by himself. ", "album_id": "72157602770687293", "photo_flickr_id": "1794025049", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46893", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one particular individual then decided that the others were boring and started drinking by himself .", "storylet_id": "234468"}], [{"original_text": "The parents and kids came back and got lots of candy after everybody else left to do their own things. ", "album_id": "72157602770687293", "photo_flickr_id": "1794868540", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "46893", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the parents and kids came back and got lots of candy after everybody else left to do their own things .", "storylet_id": "234469"}], [{"original_text": "For the halloween party, Linda dressed all in black.", "album_id": "72157602770687293", "photo_flickr_id": "1794865148", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46894", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for the halloween party , [female] dressed all in black .", "storylet_id": "234470"}], [{"original_text": "She is chatting with friends she hasn't seen in a while.", "album_id": "72157602770687293", "photo_flickr_id": "1794023381", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46894", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she is chatting with friends she has n't seen in a while .", "storylet_id": "234471"}], [{"original_text": "Everyone has such great costumes, one lady even came dressed as Red riding hood.", "album_id": "72157602770687293", "photo_flickr_id": "1794024369", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46894", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone has such great costumes , one lady even came dressed as red riding hood .", "storylet_id": "234472"}], [{"original_text": "Another guest decided to come as a Pokemon character. ", "album_id": "72157602770687293", "photo_flickr_id": "1794025049", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46894", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another guest decided to come as a pokemon character .", "storylet_id": "234473"}], [{"original_text": "Even little kids dressed up for this party. ", "album_id": "72157602770687293", "photo_flickr_id": "1794868540", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "46894", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even little kids dressed up for this party .", "storylet_id": "234474"}], [{"original_text": "Last weekend's Halloween party was so much fun.", "album_id": "72157602772357974", "photo_flickr_id": "1795230723", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46895", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last weekend 's halloween party was so much fun .", "storylet_id": "234475"}], [{"original_text": "We had a cake.", "album_id": "72157602772357974", "photo_flickr_id": "1796077246", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46895", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a cake .", "storylet_id": "234476"}], [{"original_text": "I spent a lot of time hanging out with my friends.", "album_id": "72157602772357974", "photo_flickr_id": "1796085266", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46895", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i spent a lot of time hanging out with my friends .", "storylet_id": "234477"}], [{"original_text": "We took so many pictures.", "album_id": "72157602772357974", "photo_flickr_id": "1796130716", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46895", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took so many pictures .", "storylet_id": "234478"}], [{"original_text": "Everyone had a great time.", "album_id": "72157602772357974", "photo_flickr_id": "1796133022", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46895", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time .", "storylet_id": "234479"}], [{"original_text": "She takes a drag of the cigarette to calm down before the festivities.", "album_id": "72157602772357974", "photo_flickr_id": "1796064850", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46896", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she takes a drag of the cigarette to calm down before the festivities .", "storylet_id": "234480"}], [{"original_text": "It seems that some drinks are in order to get everyone in the spirit.", "album_id": "72157602772357974", "photo_flickr_id": "1796099462", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46896", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it seems that some drinks are in order to get everyone in the spirit .", "storylet_id": "234481"}], [{"original_text": "After drinking they decided to hang out for a while at the pool.", "album_id": "72157602772357974", "photo_flickr_id": "1795284255", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46896", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after drinking they decided to hang out for a while at the pool .", "storylet_id": "234482"}], [{"original_text": "Sitting by the pool, they decide its a good time to take a couple's picture.", "album_id": "72157602772357974", "photo_flickr_id": "1796133022", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46896", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sitting by the pool , they decide its a good time to take a couple 's picture .", "storylet_id": "234483"}], [{"original_text": "After heading indoors they blow out the birthday cake.", "album_id": "72157602772357974", "photo_flickr_id": "1796077246", "setting": "first-2-pick-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "46896", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after heading indoors they blow out the birthday cake .", "storylet_id": "234484"}], [{"original_text": "I went to a 90's movie themed party yesterday!", "album_id": "72157602772357974", "photo_flickr_id": "1796064850", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46897", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a 90 's movie themed party yesterday !", "storylet_id": "234485"}], [{"original_text": "I had quite a few drinks.", "album_id": "72157602772357974", "photo_flickr_id": "1796099462", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46897", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had quite a few drinks .", "storylet_id": "234486"}], [{"original_text": "Jill was there.", "album_id": "72157602772357974", "photo_flickr_id": "1795284255", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46897", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] was there .", "storylet_id": "234487"}], [{"original_text": "Kate went along, as well!", "album_id": "72157602772357974", "photo_flickr_id": "1796133022", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46897", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] went along , as well !", "storylet_id": "234488"}], [{"original_text": "I had a great time.", "album_id": "72157602772357974", "photo_flickr_id": "1796077246", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46897", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time .", "storylet_id": "234489"}], [{"original_text": "This women came out of a story book she entered the real world.", "album_id": "72157602772357974", "photo_flickr_id": "1795230723", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46898", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this women came out of a story book she entered the real world .", "storylet_id": "234490"}], [{"original_text": "She saw many magical things that the real world had.", "album_id": "72157602772357974", "photo_flickr_id": "1796077246", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46898", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she saw many magical things that the real world had .", "storylet_id": "234491"}], [{"original_text": "She even made friends with a few ladies.", "album_id": "72157602772357974", "photo_flickr_id": "1796085266", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46898", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she even made friends with a few ladies .", "storylet_id": "234492"}], [{"original_text": "One of her friends fainted and she needed true friendship to wake her up.", "album_id": "72157602772357974", "photo_flickr_id": "1796130716", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46898", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of her friends fainted and she needed true friendship to wake her up .", "storylet_id": "234493"}], [{"original_text": "So the women from the story book offered her true friendship and her friend woke up.", "album_id": "72157602772357974", "photo_flickr_id": "1796133022", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "46898", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so the women from the story book offered her true friendship and her friend woke up .", "storylet_id": "234494"}], [{"original_text": "This weekend I went to a costume Birthday Party for my best friend Ann.", "album_id": "72157602772357974", "photo_flickr_id": "1795230723", "setting": "last-3-pick-old-and-tell", "worker_id": "PP64K3JY82Y0CEJ", "story_id": "46899", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this weekend i went to a costume birthday party for my best friend [female] .", "storylet_id": "234495"}], [{"original_text": "Here's Ann and another friend around the cake that we bought her.", "album_id": "72157602772357974", "photo_flickr_id": "1796077246", "setting": "last-3-pick-old-and-tell", "worker_id": "PP64K3JY82Y0CEJ", "story_id": "46899", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's [female] and another friend around the cake that we bought her .", "storylet_id": "234496"}], [{"original_text": "Three costumed ladies after a few drinks.", "album_id": "72157602772357974", "photo_flickr_id": "1796085266", "setting": "last-3-pick-old-and-tell", "worker_id": "PP64K3JY82Y0CEJ", "story_id": "46899", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "three costumed ladies after a few drinks .", "storylet_id": "234497"}], [{"original_text": "One too many drinks for Ann apparently!", "album_id": "72157602772357974", "photo_flickr_id": "1796130716", "setting": "last-3-pick-old-and-tell", "worker_id": "PP64K3JY82Y0CEJ", "story_id": "46899", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one too many drinks for [female] apparently !", "storylet_id": "234498"}], [{"original_text": "The night ended when we all passed out near the pool.", "album_id": "72157602772357974", "photo_flickr_id": "1796133022", "setting": "last-3-pick-old-and-tell", "worker_id": "PP64K3JY82Y0CEJ", "story_id": "46899", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night ended when we all passed out near the pool .", "storylet_id": "234499"}], [{"original_text": "The woman didn't normally like parties but she wanted to spend time with her friends on Halloween so she threw a party at her apartment.", "album_id": "72157602780268689", "photo_flickr_id": "1796791735", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "46900", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the woman did n't normally like parties but she wanted to spend time with her friends on halloween so she threw a party at her apartment .", "storylet_id": "234500"}], [{"original_text": "Before the guests arrived she put the finishing touches on her costume.", "album_id": "72157602780268689", "photo_flickr_id": "1796793565", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "46900", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before the guests arrived she put the finishing touches on her costume .", "storylet_id": "234501"}], [{"original_text": "Her best friend and her husband showed up first, dressed to impressed.", "album_id": "72157602780268689", "photo_flickr_id": "1797639804", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "46900", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her best friend and her husband showed up first , dressed to impressed .", "storylet_id": "234502"}], [{"original_text": "They had brought their baby and had even dressed her up in an adorable giraffe costume.", "album_id": "72157602780268689", "photo_flickr_id": "1796806125", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "46900", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had brought their baby and had even dressed her up in an adorable giraffe costume .", "storylet_id": "234503"}], [{"original_text": "One woman that came wore a sexy outfit and kept flirting with all the men.", "album_id": "72157602780268689", "photo_flickr_id": "1797650088", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "46900", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one woman that came wore a sexy outfit and kept flirting with all the men .", "storylet_id": "234504"}], [{"original_text": "The night begins with getting all of the costumes ready and put on. The dinosaur one was really hot.", "album_id": "72157602780268689", "photo_flickr_id": "1796791735", "setting": "first-2-pick-and-tell", "worker_id": "3CJN0NKWLJNWJ97", "story_id": "46901", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the night begins with getting all of the costumes ready and put on . the dinosaur one was really hot .", "storylet_id": "234505"}], [{"original_text": "Here are a couple of the guests dressed as Medusa, a famous and mythical gorgon, and a hobo.", "album_id": "72157602780268689", "photo_flickr_id": "1797638724", "setting": "first-2-pick-and-tell", "worker_id": "3CJN0NKWLJNWJ97", "story_id": "46901", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here are a couple of the guests dressed as medusa , a famous and mythical gorgon , and a hobo .", "storylet_id": "234506"}], [{"original_text": "Here we have an old-fashioned pilgrim woman holding her traditional baby-giraffe.", "album_id": "72157602780268689", "photo_flickr_id": "1796802911", "setting": "first-2-pick-and-tell", "worker_id": "3CJN0NKWLJNWJ97", "story_id": "46901", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here we have an old-fashioned pilgrim woman holding her traditional baby-giraffe .", "storylet_id": "234507"}], [{"original_text": "The baby-giraffe is making his rounds to all the guests here. Now a biker is holding him.", "album_id": "72157602780268689", "photo_flickr_id": "1796812039", "setting": "first-2-pick-and-tell", "worker_id": "3CJN0NKWLJNWJ97", "story_id": "46901", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the baby-giraffe is making his rounds to all the guests here . now a biker is holding him .", "storylet_id": "234508"}], [{"original_text": "There are a couple Care Bears in attendance as well; the whole night was a fun and memorable experience for all those involved.", "album_id": "72157602780268689", "photo_flickr_id": "1797654248", "setting": "first-2-pick-and-tell", "worker_id": "3CJN0NKWLJNWJ97", "story_id": "46901", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are a couple care bears in attendance as well ; the whole night was a fun and memorable experience for all those involved .", "storylet_id": "234509"}], [{"original_text": "My friends were able to coax me into attending their Halloween party.", "album_id": "72157602780268689", "photo_flickr_id": "1796791735", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "46902", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends were able to coax me into attending their halloween party .", "storylet_id": "234510"}], [{"original_text": "Dinosaurs are kind of played out, but the pickings were slim at the costume store. ", "album_id": "72157602780268689", "photo_flickr_id": "1796793565", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "46902", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dinosaurs are kind of played out , but the pickings were slim at the costume store .", "storylet_id": "234511"}], [{"original_text": "I ran into my ex and his new girlfriend. Neither seemed thrilled about having their picture taken. ", "album_id": "72157602780268689", "photo_flickr_id": "1797639804", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "46902", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i ran into my ex and his new girlfriend . neither seemed thrilled about having their picture taken .", "storylet_id": "234512"}], [{"original_text": "Of course, somebody elected to ignore the \"Adults only\" request on the e-vite. ", "album_id": "72157602780268689", "photo_flickr_id": "1796806125", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "46902", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course , somebody elected to ignore the `` adults only '' request on the e-vite .", "storylet_id": "234513"}], [{"original_text": "I did see my college roommate. She always did have a preference for skimpier costumes. ", "album_id": "72157602780268689", "photo_flickr_id": "1797650088", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "46902", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i did see my college roommate . she always did have a preference for skimpier costumes .", "storylet_id": "234514"}], [{"original_text": "Happy Halloween, kids!", "album_id": "72157602780268689", "photo_flickr_id": "1796791735", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46903", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "happy halloween , kids !", "storylet_id": "234515"}], [{"original_text": "I dressed as a dinosaur today. ", "album_id": "72157602780268689", "photo_flickr_id": "1796793565", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46903", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i dressed as a dinosaur today .", "storylet_id": "234516"}], [{"original_text": "While Uncle Tom and Aunt Jane dressed like Medusa and The Big Lebowski.", "album_id": "72157602780268689", "photo_flickr_id": "1797639804", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46903", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "while uncle [male] and aunt [female] dressed like medusa and the big lebowski .", "storylet_id": "234517"}], [{"original_text": "Little Joe Jr. was a tiny Giraffe. (CUTE!)", "album_id": "72157602780268689", "photo_flickr_id": "1796806125", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46903", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "little [male] jr. was a tiny giraffe . ( cute ! )", "storylet_id": "234518"}], [{"original_text": "While Aunt Sue just dressed normally.", "album_id": "72157602780268689", "photo_flickr_id": "1797650088", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46903", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while aunt [female] just dressed normally .", "storylet_id": "234519"}], [{"original_text": "My husband and I decided to make this Halloween a special one. Thats me starring as Gozilla.", "album_id": "72157602780268689", "photo_flickr_id": "1796791735", "setting": "last-3-pick-old-and-tell", "worker_id": "ZXDUOMPSQH9NE4S", "story_id": "46904", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband and i decided to make this halloween a special one . thats me starring as gozilla .", "storylet_id": "234520"}], [{"original_text": "Our neighbours the Joneses joined us with their own idea of fun.", "album_id": "72157602780268689", "photo_flickr_id": "1797638724", "setting": "last-3-pick-old-and-tell", "worker_id": "ZXDUOMPSQH9NE4S", "story_id": "46904", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our neighbours the organization joined us with their own idea of fun .", "storylet_id": "234521"}], [{"original_text": "Thats the special one - my first born- who is also celebrating his first birthday. He is trying to get comfortable with his aunt - my elder sister.", "album_id": "72157602780268689", "photo_flickr_id": "1796802911", "setting": "last-3-pick-old-and-tell", "worker_id": "ZXDUOMPSQH9NE4S", "story_id": "46904", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "thats the special one - my first born- who is also celebrating his first birthday . he is trying to get comfortable with his aunt - my elder sister .", "storylet_id": "234522"}], [{"original_text": "Apparently he is more comfortable with his uncle - my sister's husband.", "album_id": "72157602780268689", "photo_flickr_id": "1796812039", "setting": "last-3-pick-old-and-tell", "worker_id": "ZXDUOMPSQH9NE4S", "story_id": "46904", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "apparently he is more comfortable with his uncle - my sister 's husband .", "storylet_id": "234523"}], [{"original_text": "When my sister is into this, can my kid brother be far behind? That's him with his fiance in tow for added measure.", "album_id": "72157602780268689", "photo_flickr_id": "1797654248", "setting": "last-3-pick-old-and-tell", "worker_id": "ZXDUOMPSQH9NE4S", "story_id": "46904", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when my sister is into this , can my kid brother be far behind ? that 's him with his fiance in tow for added measure .", "storylet_id": "234524"}], [{"original_text": "The mom had dressed her kids in cute costumes for the celebration.", "album_id": "72157637055790775", "photo_flickr_id": "10544016003", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "46905", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the mom had dressed her kids in cute costumes for the celebration .", "storylet_id": "234525"}], [{"original_text": "When they arrived to the location where the party was they all got cookies!", "album_id": "72157637055790775", "photo_flickr_id": "10543646056", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "46905", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when they arrived to the location where the party was they all got cookies !", "storylet_id": "234526"}], [{"original_text": "The kids quickly got bored and wanted to go outside so the mom took them out there.", "album_id": "72157637055790775", "photo_flickr_id": "10543771635", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "46905", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids quickly got bored and wanted to go outside so the mom took them out there .", "storylet_id": "234527"}], [{"original_text": "Soon it was time for the costume parade so everyone went back inside.", "album_id": "72157637055790775", "photo_flickr_id": "10543684445", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "46905", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "soon it was time for the costume parade so everyone went back inside .", "storylet_id": "234528"}], [{"original_text": "The younger kids had to be escorted by a parent in order to participate.", "album_id": "72157637055790775", "photo_flickr_id": "10543926543", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "46905", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the younger kids had to be escorted by a parent in order to participate .", "storylet_id": "234529"}], [{"original_text": "Adults getting ready for the big Halloween party.", "album_id": "72157637055790775", "photo_flickr_id": "10543646056", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46906", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "adults getting ready for the big halloween party .", "storylet_id": "234530"}], [{"original_text": "Guests in costume get ready for fun and games at the party.", "album_id": "72157637055790775", "photo_flickr_id": "10543653575", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46906", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "guests in costume get ready for fun and games at the party .", "storylet_id": "234531"}], [{"original_text": "Two adorable children in costume at the festivities.", "album_id": "72157637055790775", "photo_flickr_id": "10543787386", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46906", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two adorable children in costume at the festivities .", "storylet_id": "234532"}], [{"original_text": "The parade of costumes to see who wins the grand prize.", "album_id": "72157637055790775", "photo_flickr_id": "10543679336", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46906", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the parade of costumes to see who wins the grand prize .", "storylet_id": "234533"}], [{"original_text": "Two adults at the party cuddle together.", "album_id": "72157637055790775", "photo_flickr_id": "10543778725", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46906", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "two adults at the party cuddle together .", "storylet_id": "234534"}], [{"original_text": "The children dressed up this years Halloween party.", "album_id": "72157637055790775", "photo_flickr_id": "10544016003", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46907", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the children dressed up this years halloween party .", "storylet_id": "234535"}], [{"original_text": "We all got together and dressed up in our favorite costumes.", "album_id": "72157637055790775", "photo_flickr_id": "10543646056", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46907", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all got together and dressed up in our favorite costumes .", "storylet_id": "234536"}], [{"original_text": "The children got to play outside during the day.", "album_id": "72157637055790775", "photo_flickr_id": "10543771635", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46907", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the children got to play outside during the day .", "storylet_id": "234537"}], [{"original_text": "Then, at night we all went inside for a spooky Halloween ball.", "album_id": "72157637055790775", "photo_flickr_id": "10543684445", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46907", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , at night we all went inside for a spooky halloween ball .", "storylet_id": "234538"}], [{"original_text": "It was fun for the children and the parents, too!", "album_id": "72157637055790775", "photo_flickr_id": "10543926543", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46907", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was fun for the children and the parents , too !", "storylet_id": "234539"}], [{"original_text": "This halloween we took all 3 kids out trick-or-treating.", "album_id": "72157637055790775", "photo_flickr_id": "10544016003", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46908", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this halloween we took all 3 kids out trick-or-treating .", "storylet_id": "234540"}], [{"original_text": "Our first stop was to the nursing home to visit all the seniors.", "album_id": "72157637055790775", "photo_flickr_id": "10543646056", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46908", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our first stop was to the nursing home to visit all the seniors .", "storylet_id": "234541"}], [{"original_text": "We met up with some friends once we got back to the neighborhood.", "album_id": "72157637055790775", "photo_flickr_id": "10543771635", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46908", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we met up with some friends once we got back to the neighborhood .", "storylet_id": "234542"}], [{"original_text": "Then we headed to the school where they set up the halls for the kids.", "album_id": "72157637055790775", "photo_flickr_id": "10543684445", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46908", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we headed to the school where they set up the halls for the kids .", "storylet_id": "234543"}], [{"original_text": "Everyone had a great time and we made some new friends.", "album_id": "72157637055790775", "photo_flickr_id": "10543926543", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46908", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time and we made some new friends .", "storylet_id": "234544"}], [{"original_text": "The children were all dressed up and ready to go trick o treating and to a friends Halloween party soon after.", "album_id": "72157637055790775", "photo_flickr_id": "10544016003", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "46909", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the children were all dressed up and ready to go trick o treating and to a friends halloween party soon after .", "storylet_id": "234545"}], [{"original_text": "The kids were having a blast at the Halloween party.", "album_id": "72157637055790775", "photo_flickr_id": "10543646056", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "46909", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids were having a blast at the halloween party .", "storylet_id": "234546"}], [{"original_text": "The kids went trick o treating for a little while, while the party carried on.", "album_id": "72157637055790775", "photo_flickr_id": "10543771635", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "46909", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids went trick o treating for a little while , while the party carried on .", "storylet_id": "234547"}], [{"original_text": "The kids decided to go back to the Halloween party for more fun.", "album_id": "72157637055790775", "photo_flickr_id": "10543684445", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "46909", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids decided to go back to the halloween party for more fun .", "storylet_id": "234548"}], [{"original_text": "The kids partied at the Halloween party until they were full of candy and ready to go home.", "album_id": "72157637055790775", "photo_flickr_id": "10543926543", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "46909", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids partied at the halloween party until they were full of candy and ready to go home .", "storylet_id": "234549"}], [{"original_text": "Needed to stop and get gas before continuing on.", "album_id": "72157631879336542", "photo_flickr_id": "8134529391", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46910", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "needed to stop and get gas before continuing on .", "storylet_id": "234550"}], [{"original_text": "A lovely small town that is a good place to call home.", "album_id": "72157631879336542", "photo_flickr_id": "8134529499", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46910", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lovely small town that is a good place to call home .", "storylet_id": "234551"}], [{"original_text": "We are finally here, what natural beauty.", "album_id": "72157631879336542", "photo_flickr_id": "8138656725", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46910", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are finally here , what natural beauty .", "storylet_id": "234552"}], [{"original_text": "Another beautiful spot we found while exploring.", "album_id": "72157631879336542", "photo_flickr_id": "8138303253", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46910", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another beautiful spot we found while exploring .", "storylet_id": "234553"}], [{"original_text": "What a gorgeous place for a picnic in the beauty of nature.", "album_id": "72157631879336542", "photo_flickr_id": "8138275622", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46910", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what a gorgeous place for a picnic in the beauty of nature .", "storylet_id": "234554"}], [{"original_text": "Despite enjoying the field trip, the day was quite exhausting. We explored different areas,", "album_id": "72157631879336542", "photo_flickr_id": "8138656725", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46911", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "despite enjoying the field trip , the day was quite exhausting . we explored different areas ,", "storylet_id": "234555"}], [{"original_text": "from native habitats to modern caves.", "album_id": "72157631879336542", "photo_flickr_id": "8134637252", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46911", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from native habitats to modern caves .", "storylet_id": "234556"}], [{"original_text": "The bus ride home was quite boring, considering that I wasn't able to see any interesting from the bus window.", "album_id": "72157631879336542", "photo_flickr_id": "8138244633", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46911", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bus ride home was quite boring , considering that i was n't able to see any interesting from the bus window .", "storylet_id": "234557"}], [{"original_text": "I did come across this funny poster though.", "album_id": "72157631879336542", "photo_flickr_id": "8134529499", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46911", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i did come across this funny poster though .", "storylet_id": "234558"}], [{"original_text": "When I arrived home, I did the honor of taking out some cold refreshments.", "album_id": "72157631879336542", "photo_flickr_id": "8134529319", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "46911", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when i arrived home , i did the honor of taking out some cold refreshments .", "storylet_id": "234559"}], [{"original_text": "Gas stations are not intended to be called home, but sometimes it can be seen that way.", "album_id": "72157631879336542", "photo_flickr_id": "8134529391", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46912", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "gas stations are not intended to be called home , but sometimes it can be seen that way .", "storylet_id": "234560"}], [{"original_text": "When you live on the road, it's almost like you live everywhere. Sometimes that feeling is quite overwhelming.", "album_id": "72157631879336542", "photo_flickr_id": "8134529499", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46912", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when you live on the road , it 's almost like you live everywhere . sometimes that feeling is quite overwhelming .", "storylet_id": "234561"}], [{"original_text": "However, there are certain rewards to living on the road.", "album_id": "72157631879336542", "photo_flickr_id": "8138656725", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46912", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however , there are certain rewards to living on the road .", "storylet_id": "234562"}], [{"original_text": "Each day is a new day filled with new sights and excitement.", "album_id": "72157631879336542", "photo_flickr_id": "8138303253", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46912", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "each day is a new day filled with new sights and excitement .", "storylet_id": "234563"}], [{"original_text": "Each sight is unique and reminds us that tomorrow will be just as exciting.", "album_id": "72157631879336542", "photo_flickr_id": "8138275622", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46912", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "each sight is unique and reminds us that tomorrow will be just as exciting .", "storylet_id": "234564"}], [{"original_text": "The scene from inside the cave", "album_id": "72157631879336542", "photo_flickr_id": "8138656725", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46913", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the scene from inside the cave", "storylet_id": "234565"}], [{"original_text": "Inside the cave was unique and cold.", "album_id": "72157631879336542", "photo_flickr_id": "8134637252", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46913", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside the cave was unique and cold .", "storylet_id": "234566"}], [{"original_text": "I enjoyed this vintage sign.", "album_id": "72157631879336542", "photo_flickr_id": "8138244633", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46913", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i enjoyed this vintage sign .", "storylet_id": "234567"}], [{"original_text": "The sign that reminds we are home", "album_id": "72157631879336542", "photo_flickr_id": "8134529499", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46913", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sign that reminds we are home", "storylet_id": "234568"}], [{"original_text": "After our vacation a treat at home.", "album_id": "72157631879336542", "photo_flickr_id": "8134529319", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46913", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after our vacation a treat at home .", "storylet_id": "234569"}], [{"original_text": "We took a trip to the cave to see what all the hype was about.", "album_id": "72157631879336542", "photo_flickr_id": "8138656725", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46914", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to the cave to see what all the hype was about .", "storylet_id": "234570"}], [{"original_text": "The stairs leading down the cave took 10 minutes to walk. ", "album_id": "72157631879336542", "photo_flickr_id": "8134637252", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46914", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the stairs leading down the cave took 10 minutes to walk .", "storylet_id": "234571"}], [{"original_text": "There was a motel next to the cave that we stayed at.", "album_id": "72157631879336542", "photo_flickr_id": "8138244633", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46914", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a motel next to the cave that we stayed at .", "storylet_id": "234572"}], [{"original_text": "My husband thought this welcome mat was very... welcoming.", "album_id": "72157631879336542", "photo_flickr_id": "8134529499", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46914", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my husband thought this welcome mat was very ... welcoming .", "storylet_id": "234573"}], [{"original_text": "Chilled beers were a great way to end our trip. ", "album_id": "72157631879336542", "photo_flickr_id": "8134529319", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46914", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "chilled beers were a great way to end our trip .", "storylet_id": "234574"}], [{"original_text": "Fido is a little nervous since the humans seem to be behaving a little strangely. ", "album_id": "72157631881098299", "photo_flickr_id": "8135393286", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "46915", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "fido is a little nervous since the humans seem to be behaving a little strangely .", "storylet_id": "234575"}], [{"original_text": "Fido has never seen a group with masks and shields and swords.", "album_id": "72157631881098299", "photo_flickr_id": "8135363659", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "46915", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fido has never seen a group with masks and shields and swords .", "storylet_id": "234576"}], [{"original_text": "He is even more nervous as he observes a really tall biped with an ugly face. The hot blond does little to settle Fido's nerves.", "album_id": "72157631881098299", "photo_flickr_id": "8135394640", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "46915", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he is even more nervous as he observes a really tall biped with an ugly face . the hot blond does little to settle fido 's nerves .", "storylet_id": "234577"}], [{"original_text": "Fido is frozen. He doesn't quite feel fear, but he is sure anxious.", "album_id": "72157631881098299", "photo_flickr_id": "8135370213", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "46915", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fido is frozen . he does n't quite feel fear , but he is sure anxious .", "storylet_id": "234578"}], [{"original_text": "Finally he begins to relax because he sees these humans with regular faces and they are smiling.", "album_id": "72157631881098299", "photo_flickr_id": "8135400522", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "46915", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally he begins to relax because he sees these humans with regular faces and they are smiling .", "storylet_id": "234579"}], [{"original_text": "The costume party we went to was great!", "album_id": "72157631881098299", "photo_flickr_id": "8135394254", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46916", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the costume party we went to was great !", "storylet_id": "234580"}], [{"original_text": "There was a group who dressed as ninja turtles.", "album_id": "72157631881098299", "photo_flickr_id": "8135363659", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46916", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a group who dressed as ninja turtles .", "storylet_id": "234581"}], [{"original_text": "One guy came as Austin Powers.", "album_id": "72157631881098299", "photo_flickr_id": "8135367363", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46916", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one guy came as organization organization .", "storylet_id": "234582"}], [{"original_text": "There were tons of fairies and princesses at the party.", "album_id": "72157631881098299", "photo_flickr_id": "8135400522", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46916", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were tons of fairies and princesses at the party .", "storylet_id": "234583"}], [{"original_text": "Everyone had fun partying and drinking.", "album_id": "72157631881098299", "photo_flickr_id": "8135397516", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46916", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had fun partying and drinking .", "storylet_id": "234584"}], [{"original_text": "I've always felt like Halloween should be for kids, but a guy at my work invited me to his adult Halloween party this year.", "album_id": "72157631881098299", "photo_flickr_id": "8135394254", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46917", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 've always felt like halloween should be for kids , but a guy at my work invited me to his adult halloween party this year .", "storylet_id": "234585"}], [{"original_text": "I was truly surprised how much people did it up. I can't imagine adults making Ninja Turtle costumes.", "album_id": "72157631881098299", "photo_flickr_id": "8135363659", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46917", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was truly surprised how much people did it up . i ca n't imagine adults making ninja turtle costumes .", "storylet_id": "234586"}], [{"original_text": "My friend did an Austin Powers thing. He said it made all the woman randy.", "album_id": "72157631881098299", "photo_flickr_id": "8135367363", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46917", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend did an [male] powers thing . he said it made all the woman randy .", "storylet_id": "234587"}], [{"original_text": "I have to admit it was fun seeing women in their costumes.", "album_id": "72157631881098299", "photo_flickr_id": "8135400522", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46917", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i have to admit it was fun seeing women in their costumes .", "storylet_id": "234588"}], [{"original_text": "And there was a good deal of beer flowing freely, which made me a little more into the whole thing!", "album_id": "72157631881098299", "photo_flickr_id": "8135397516", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46917", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and there was a good deal of beer flowing freely , which made me a little more into the whole thing !", "storylet_id": "234589"}], [{"original_text": "I hosted a Halloween party at my town house and Toto loved it.", "album_id": "72157631881098299", "photo_flickr_id": "8135393286", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46918", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i hosted a halloween party at my town house and toto loved it .", "storylet_id": "234590"}], [{"original_text": "The DeLousa family dressed up as ninjas. ", "album_id": "72157631881098299", "photo_flickr_id": "8135363659", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46918", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the delousa family dressed up as ninjas .", "storylet_id": "234591"}], [{"original_text": "A guy with a skull mask showed up. ", "album_id": "72157631881098299", "photo_flickr_id": "8135394640", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46918", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a guy with a skull mask showed up .", "storylet_id": "234592"}], [{"original_text": "Toto was curious as to why so many strange creatures were at our town house. ", "album_id": "72157631881098299", "photo_flickr_id": "8135370213", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46918", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "toto was curious as to why so many strange creatures were at our town house .", "storylet_id": "234593"}], [{"original_text": "The end of the night called for a costume contest. ", "album_id": "72157631881098299", "photo_flickr_id": "8135400522", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46918", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the end of the night called for a costume contest .", "storylet_id": "234594"}], [{"original_text": "The Dog wasn't prepared for what was about to happen that night.", "album_id": "72157631881098299", "photo_flickr_id": "8135393286", "setting": "last-3-pick-old-and-tell", "worker_id": "05I538E7E4DKXCP", "story_id": "46919", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dog was n't prepared for what was about to happen that night .", "storylet_id": "234595"}], [{"original_text": "There were giant turtles everywhere!", "album_id": "72157631881098299", "photo_flickr_id": "8135363659", "setting": "last-3-pick-old-and-tell", "worker_id": "05I538E7E4DKXCP", "story_id": "46919", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were giant turtles everywhere !", "storylet_id": "234596"}], [{"original_text": "Horrible monsters and cute princesses. The house was full of weirdness.", "album_id": "72157631881098299", "photo_flickr_id": "8135394640", "setting": "last-3-pick-old-and-tell", "worker_id": "05I538E7E4DKXCP", "story_id": "46919", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "horrible monsters and cute princesses . the house was full of weirdness .", "storylet_id": "234597"}], [{"original_text": "What surprised him the most though was seeing Alice.", "album_id": "72157631881098299", "photo_flickr_id": "8135370213", "setting": "last-3-pick-old-and-tell", "worker_id": "05I538E7E4DKXCP", "story_id": "46919", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what surprised him the most though was seeing [female] .", "storylet_id": "234598"}], [{"original_text": "Yes, that Alice. The one from Wonderland.", "album_id": "72157631881098299", "photo_flickr_id": "8135400522", "setting": "last-3-pick-old-and-tell", "worker_id": "05I538E7E4DKXCP", "story_id": "46919", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "yes , that [female] . the one from wonderland .", "storylet_id": "234599"}], [{"original_text": "I talked my brother into having a Halloween party this year.", "album_id": "72157631883881971", "photo_flickr_id": "8136657389", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46920", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i talked my brother into having a halloween party this year .", "storylet_id": "234600"}], [{"original_text": "Judy, his wife dressed as a princess.", "album_id": "72157631883881971", "photo_flickr_id": "8136687964", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46920", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] , his wife dressed as a princess .", "storylet_id": "234601"}], [{"original_text": "One just came as a cowgirl.", "album_id": "72157631883881971", "photo_flickr_id": "8136662571", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46920", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one just came as a cowgirl .", "storylet_id": "234602"}], [{"original_text": "Another guest dressed like a fairy.", "album_id": "72157631883881971", "photo_flickr_id": "8136694364", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46920", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another guest dressed like a fairy .", "storylet_id": "234603"}], [{"original_text": "By the end of the evening there were many people there.", "album_id": "72157631883881971", "photo_flickr_id": "8136690424", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46920", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of the evening there were many people there .", "storylet_id": "234604"}], [{"original_text": "Everyone was excited to be heading to the Halloween party. ", "album_id": "72157631883881971", "photo_flickr_id": "8136684940", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46921", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was excited to be heading to the halloween party .", "storylet_id": "234605"}], [{"original_text": "Everyone was decked out in Halloween outfits. ", "album_id": "72157631883881971", "photo_flickr_id": "8136655939", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46921", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was decked out in halloween outfits .", "storylet_id": "234606"}], [{"original_text": "I really loved the cool outfits that everyone had come up with. ", "album_id": "72157631883881971", "photo_flickr_id": "8136687964", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46921", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i really loved the cool outfits that everyone had come up with .", "storylet_id": "234607"}], [{"original_text": "I met up with some of my friends and we had a great time talking.", "album_id": "72157631883881971", "photo_flickr_id": "8136662571", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46921", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i met up with some of my friends and we had a great time talking .", "storylet_id": "234608"}], [{"original_text": "The entire party was awesome, I'm glad I had the chance to go. ", "album_id": "72157631883881971", "photo_flickr_id": "8136690424", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46921", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the entire party was awesome , i 'm glad i had the chance to go .", "storylet_id": "234609"}], [{"original_text": "My name is Tom, and I'm testing my Black and White camera for the school Halloween party.", "album_id": "72157631883881971", "photo_flickr_id": "8136657389", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46922", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my name is [male] , and i 'm testing my black and white camera for the school halloween party .", "storylet_id": "234610"}], [{"original_text": "Here's Daisy in her costume.", "album_id": "72157631883881971", "photo_flickr_id": "8136687964", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46922", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's [female] in her costume .", "storylet_id": "234611"}], [{"original_text": "And Jackie came with her friends.", "album_id": "72157631883881971", "photo_flickr_id": "8136662571", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46922", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and [female] came with her friends .", "storylet_id": "234612"}], [{"original_text": "Sue went as little bo peep.", "album_id": "72157631883881971", "photo_flickr_id": "8136694364", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46922", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] went as little bo peep .", "storylet_id": "234613"}], [{"original_text": "Everyone had a great time, and so did I.", "album_id": "72157631883881971", "photo_flickr_id": "8136690424", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "46922", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time , and so did i .", "storylet_id": "234614"}], [{"original_text": "Last nights Halloween parts was crazy!", "album_id": "72157631883881971", "photo_flickr_id": "8136684940", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46923", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last nights halloween parts was crazy !", "storylet_id": "234615"}], [{"original_text": "There were rockstars,", "album_id": "72157631883881971", "photo_flickr_id": "8136655939", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46923", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were rockstars ,", "storylet_id": "234616"}], [{"original_text": "princesses in beautiful gowns, ", "album_id": "72157631883881971", "photo_flickr_id": "8136687964", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46923", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "princesses in beautiful gowns ,", "storylet_id": "234617"}], [{"original_text": "even a cowgirl in a cool hat.", "album_id": "72157631883881971", "photo_flickr_id": "8136662571", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46923", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even a cowgirl in a cool hat .", "storylet_id": "234618"}], [{"original_text": "Everyone was on LSD and things got weird.", "album_id": "72157631883881971", "photo_flickr_id": "8136690424", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "46923", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was on lsd and things got weird .", "storylet_id": "234619"}], [{"original_text": "I was planning on celebrating Halloween alone at a local diner.", "album_id": "72157631883881971", "photo_flickr_id": "8136657389", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46924", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was planning on celebrating halloween alone at a local diner .", "storylet_id": "234620"}], [{"original_text": "Then, a cute girl in costume invited me to her party.", "album_id": "72157631883881971", "photo_flickr_id": "8136687964", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46924", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then , a cute girl in costume invited me to her party .", "storylet_id": "234621"}], [{"original_text": "There, she introduced me to a bunch of dressed-up women.", "album_id": "72157631883881971", "photo_flickr_id": "8136662571", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46924", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there , she introduced me to a bunch of dressed-up women .", "storylet_id": "234622"}], [{"original_text": "I liked the Sugar Plum Fairy!", "album_id": "72157631883881971", "photo_flickr_id": "8136694364", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46924", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i liked the sugar plum fairy !", "storylet_id": "234623"}], [{"original_text": "There was a big turnout, and I was glad I hadn't just sat alone in the diner.", "album_id": "72157631883881971", "photo_flickr_id": "8136690424", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46924", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a big turnout , and i was glad i had n't just sat alone in the diner .", "storylet_id": "234624"}], [{"original_text": "I finally arrived at my friend's Halloween party.", "album_id": "1249068", "photo_flickr_id": "57691508", "setting": "first-2-pick-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46925", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finally arrived at my friend 's halloween party .", "storylet_id": "234625"}], [{"original_text": "Everyone was already there and it seemed I was late.", "album_id": "1249068", "photo_flickr_id": "57717821", "setting": "first-2-pick-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46925", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was already there and it seemed i was late .", "storylet_id": "234626"}], [{"original_text": "We had many drinks that night.", "album_id": "1249068", "photo_flickr_id": "57717973", "setting": "first-2-pick-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46925", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had many drinks that night .", "storylet_id": "234627"}], [{"original_text": "People were starting to get drunk.", "album_id": "1249068", "photo_flickr_id": "57692696", "setting": "first-2-pick-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46925", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people were starting to get drunk .", "storylet_id": "234628"}], [{"original_text": "I, myself, was feeling tipsy and decided to take a seat.", "album_id": "1249068", "photo_flickr_id": "57726468", "setting": "first-2-pick-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "46925", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i , myself , was feeling tipsy and decided to take a seat .", "storylet_id": "234629"}], [{"original_text": "The couple was putting the finishing touches on their costumes.", "album_id": "1249068", "photo_flickr_id": "57691508", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46926", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple was putting the finishing touches on their costumes .", "storylet_id": "234630"}], [{"original_text": "The girl needed a little bit more done on hers.", "album_id": "1249068", "photo_flickr_id": "57691676", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46926", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girl needed a little bit more done on hers .", "storylet_id": "234631"}], [{"original_text": "The man was helping her with her costume.", "album_id": "1249068", "photo_flickr_id": "57691837", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46926", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man was helping her with her costume .", "storylet_id": "234632"}], [{"original_text": "He helped her put some more paint on.", "album_id": "1249068", "photo_flickr_id": "57692013", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46926", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he helped her put some more paint on .", "storylet_id": "234633"}], [{"original_text": "They were finally all ready to go.", "album_id": "1249068", "photo_flickr_id": "57692426", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46926", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were finally all ready to go .", "storylet_id": "234634"}], [{"original_text": "Taking pictures of people at the party ,", "album_id": "1249068", "photo_flickr_id": "57691508", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "46927", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "taking pictures of people at the party ,", "storylet_id": "234635"}], [{"original_text": "friends play around with there costumes", "album_id": "1249068", "photo_flickr_id": "57691676", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "46927", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "friends play around with there costumes", "storylet_id": "234636"}], [{"original_text": "and play around while taking the pictures", "album_id": "1249068", "photo_flickr_id": "57691837", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "46927", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and play around while taking the pictures", "storylet_id": "234637"}], [{"original_text": "then more pictures are taken while they play around and", "album_id": "1249068", "photo_flickr_id": "57692013", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "46927", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then more pictures are taken while they play around and", "storylet_id": "234638"}], [{"original_text": "now the last one of someone else playing around with the girl and her costume ", "album_id": "1249068", "photo_flickr_id": "57692426", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "46927", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now the last one of someone else playing around with the girl and her costume", "storylet_id": "234639"}], [{"original_text": "When I finished my costume it did not look very impressive.", "album_id": "1249068", "photo_flickr_id": "57691508", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46928", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i finished my costume it did not look very impressive .", "storylet_id": "234640"}], [{"original_text": "My friend's costume was much better.", "album_id": "1249068", "photo_flickr_id": "57691676", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46928", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend 's costume was much better .", "storylet_id": "234641"}], [{"original_text": "She was showing off.", "album_id": "1249068", "photo_flickr_id": "57691837", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46928", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was showing off .", "storylet_id": "234642"}], [{"original_text": "I decided to teach her a lesson.", "album_id": "1249068", "photo_flickr_id": "57692013", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46928", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i decided to teach her a lesson .", "storylet_id": "234643"}], [{"original_text": "I changed my costume and then we went to the party together.", "album_id": "1249068", "photo_flickr_id": "57692426", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46928", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i changed my costume and then we went to the party together .", "storylet_id": "234644"}], [{"original_text": "Halloween costumes--even bad ones--were required for the party.", "album_id": "1249068", "photo_flickr_id": "57691508", "setting": "last-3-pick-old-and-tell", "worker_id": "SIY4Z51WQPU9UOE", "story_id": "46929", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "halloween costumes -- even bad ones -- were required for the party .", "storylet_id": "234645"}], [{"original_text": "As always, people congregated around the drinks. ", "album_id": "1249068", "photo_flickr_id": "57717821", "setting": "last-3-pick-old-and-tell", "worker_id": "SIY4Z51WQPU9UOE", "story_id": "46929", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as always , people congregated around the drinks .", "storylet_id": "234646"}], [{"original_text": "In fact, drinking cheap beer was the main event of the night.", "album_id": "1249068", "photo_flickr_id": "57717973", "setting": "last-3-pick-old-and-tell", "worker_id": "SIY4Z51WQPU9UOE", "story_id": "46929", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in fact , drinking cheap beer was the main event of the night .", "storylet_id": "234647"}], [{"original_text": "It made everyone's costumes seem cooler.", "album_id": "1249068", "photo_flickr_id": "57692696", "setting": "last-3-pick-old-and-tell", "worker_id": "SIY4Z51WQPU9UOE", "story_id": "46929", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it made everyone 's costumes seem cooler .", "storylet_id": "234648"}], [{"original_text": "I'm sure I'll feel great tomorrow morning!", "album_id": "1249068", "photo_flickr_id": "57726468", "setting": "last-3-pick-old-and-tell", "worker_id": "SIY4Z51WQPU9UOE", "story_id": "46929", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm sure i 'll feel great tomorrow morning !", "storylet_id": "234649"}], [{"original_text": "Some of the simplest costumes were the most creative. ", "album_id": "1250283", "photo_flickr_id": "57745979", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46930", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some of the simplest costumes were the most creative .", "storylet_id": "234650"}], [{"original_text": "A lot of people showed up for the party. ", "album_id": "1250283", "photo_flickr_id": "57748567", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46930", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of people showed up for the party .", "storylet_id": "234651"}], [{"original_text": "Some costumes were very scary. ", "album_id": "1250283", "photo_flickr_id": "57750992", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46930", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some costumes were very scary .", "storylet_id": "234652"}], [{"original_text": "With drinks in hand, there was plenty of conversations going.", "album_id": "1250283", "photo_flickr_id": "57751276", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46930", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with drinks in hand , there was plenty of conversations going .", "storylet_id": "234653"}], [{"original_text": "One group of guests had a little skit going. ", "album_id": "1250283", "photo_flickr_id": "57751543", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46930", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one group of guests had a little skit going .", "storylet_id": "234654"}], [{"original_text": "The party had some unique characters.", "album_id": "1250283", "photo_flickr_id": "57745979", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46931", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party had some unique characters .", "storylet_id": "234655"}], [{"original_text": "The ladies had a great time.", "album_id": "1250283", "photo_flickr_id": "57748369", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46931", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ladies had a great time .", "storylet_id": "234656"}], [{"original_text": "So did the office worker clown.", "album_id": "1250283", "photo_flickr_id": "57748567", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46931", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so did the office worker clown .", "storylet_id": "234657"}], [{"original_text": "The party was really fun.", "album_id": "1250283", "photo_flickr_id": "57749135", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46931", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the party was really fun .", "storylet_id": "234658"}], [{"original_text": "We did the robot dance.", "album_id": "1250283", "photo_flickr_id": "57752350", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46931", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we did the robot dance .", "storylet_id": "234659"}], [{"original_text": "I decided to throw a Halloween party this year, and this was my boyfriends costume. ", "album_id": "1250283", "photo_flickr_id": "57745979", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46932", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to throw a halloween party this year , and this was my boyfriends costume .", "storylet_id": "234660"}], [{"original_text": "My friends certainly did not disappoint with their costumes either. ", "album_id": "1250283", "photo_flickr_id": "57748369", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46932", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friends certainly did not disappoint with their costumes either .", "storylet_id": "234661"}], [{"original_text": "I think he is trying to be more than one individual with this costume. ", "album_id": "1250283", "photo_flickr_id": "57748567", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46932", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i think he is trying to be more than one individual with this costume .", "storylet_id": "234662"}], [{"original_text": "We have a real life rockstar at the party, so my sister decided to take a picture with him. ", "album_id": "1250283", "photo_flickr_id": "57749135", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46932", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we have a real life rockstar at the party , so my sister decided to take a picture with him .", "storylet_id": "234663"}], [{"original_text": "My sister seems to be attracted to all of the stars. ", "album_id": "1250283", "photo_flickr_id": "57752350", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46932", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my sister seems to be attracted to all of the stars .", "storylet_id": "234664"}], [{"original_text": "My friends have a great sense of humor.", "album_id": "1250283", "photo_flickr_id": "57745979", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46933", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends have a great sense of humor .", "storylet_id": "234665"}], [{"original_text": "They dressed crazy for the Halloween party.", "album_id": "1250283", "photo_flickr_id": "57748369", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46933", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they dressed crazy for the halloween party .", "storylet_id": "234666"}], [{"original_text": "One looked like a doctor clown.", "album_id": "1250283", "photo_flickr_id": "57748567", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46933", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one looked like a doctor clown .", "storylet_id": "234667"}], [{"original_text": "One of my friends made a very convincing slash.", "album_id": "1250283", "photo_flickr_id": "57749135", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46933", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of my friends made a very convincing slash .", "storylet_id": "234668"}], [{"original_text": "Several went as cross-dressers.", "album_id": "1250283", "photo_flickr_id": "57752350", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46933", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "several went as cross-dressers .", "storylet_id": "234669"}], [{"original_text": "Here is the 404 man posing for the camera.", "album_id": "1250283", "photo_flickr_id": "57745979", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46934", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is the 404 man posing for the camera .", "storylet_id": "234670"}], [{"original_text": "A man with a red nose is smiling for the camera.", "album_id": "1250283", "photo_flickr_id": "57748567", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46934", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a man with a red nose is smiling for the camera .", "storylet_id": "234671"}], [{"original_text": "The man and woman are smiling while dressed in costume.", "album_id": "1250283", "photo_flickr_id": "57750992", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46934", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man and woman are smiling while dressed in costume .", "storylet_id": "234672"}], [{"original_text": "The man and woman are smiling for the camera at the party.", "album_id": "1250283", "photo_flickr_id": "57751276", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46934", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man and woman are smiling for the camera at the party .", "storylet_id": "234673"}], [{"original_text": "The man is filming the party while the crowd looks on.", "album_id": "1250283", "photo_flickr_id": "57751543", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46934", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the man is filming the party while the crowd looks on .", "storylet_id": "234674"}], [{"original_text": "The friends went on a night time zombie walk.", "album_id": "1254452", "photo_flickr_id": "57913622", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46935", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends went on a night time zombie walk .", "storylet_id": "234675"}], [{"original_text": "They dressed up and used makeup.", "album_id": "1254452", "photo_flickr_id": "57913633", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46935", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they dressed up and used makeup .", "storylet_id": "234676"}], [{"original_text": "Everyone made themselves look very scary.", "album_id": "1254452", "photo_flickr_id": "57913641", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46935", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone made themselves look very scary .", "storylet_id": "234677"}], [{"original_text": "Then they walked slowly through the streets.", "album_id": "1254452", "photo_flickr_id": "57913730", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46935", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they walked slowly through the streets .", "storylet_id": "234678"}], [{"original_text": "They scared a lot of people.", "album_id": "1254452", "photo_flickr_id": "57913747", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46935", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they scared a lot of people .", "storylet_id": "234679"}], [{"original_text": "All the boys gathered to go out that night. ", "album_id": "1254452", "photo_flickr_id": "57913622", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46936", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all the boys gathered to go out that night .", "storylet_id": "234680"}], [{"original_text": "There was a big party at he local club.", "album_id": "1254452", "photo_flickr_id": "57913666", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46936", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a big party at he local club .", "storylet_id": "234681"}], [{"original_text": "A lot of people were starting to show up. ", "album_id": "1254452", "photo_flickr_id": "57913671", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46936", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lot of people were starting to show up .", "storylet_id": "234682"}], [{"original_text": "Most were dressed for the holiday. ", "album_id": "1254452", "photo_flickr_id": "57913730", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46936", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "most were dressed for the holiday .", "storylet_id": "234683"}], [{"original_text": "The line was getting long to get in.", "album_id": "1254452", "photo_flickr_id": "57913811", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "46936", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the line was getting long to get in .", "storylet_id": "234684"}], [{"original_text": "There were a lot of zombies on the road today.", "album_id": "1254452", "photo_flickr_id": "57913622", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46937", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of zombies on the road today .", "storylet_id": "234685"}], [{"original_text": "I did my best to avoid them.", "album_id": "1254452", "photo_flickr_id": "57913633", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46937", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i did my best to avoid them .", "storylet_id": "234686"}], [{"original_text": "They were very close at one point.", "album_id": "1254452", "photo_flickr_id": "57913641", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46937", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were very close at one point .", "storylet_id": "234687"}], [{"original_text": "There were too many of them so I got on my bike and rode away.", "album_id": "1254452", "photo_flickr_id": "57913730", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46937", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were too many of them so i got on my bike and rode away .", "storylet_id": "234688"}], [{"original_text": "I rode as fast as I could.", "album_id": "1254452", "photo_flickr_id": "57913747", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46937", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i rode as fast as i could .", "storylet_id": "234689"}], [{"original_text": "The boys arrive at the Halloween party early.", "album_id": "1254452", "photo_flickr_id": "57913622", "setting": "last-3-pick-old-and-tell", "worker_id": "ZTFD9QRP561GG3M", "story_id": "46938", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boys arrive at the halloween party early .", "storylet_id": "234690"}], [{"original_text": "They set off to enact their master plan of stealing all the punch.", "album_id": "1254452", "photo_flickr_id": "57913633", "setting": "last-3-pick-old-and-tell", "worker_id": "ZTFD9QRP561GG3M", "story_id": "46938", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they set off to enact their master plan of stealing all the punch .", "storylet_id": "234691"}], [{"original_text": "Little do they know, Claire is way ahead of them.", "album_id": "1254452", "photo_flickr_id": "57913641", "setting": "last-3-pick-old-and-tell", "worker_id": "ZTFD9QRP561GG3M", "story_id": "46938", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "little do they know , [female] is way ahead of them .", "storylet_id": "234692"}], [{"original_text": "All at once, she shuts off all the lights and grabs her car!", "album_id": "1254452", "photo_flickr_id": "57913730", "setting": "last-3-pick-old-and-tell", "worker_id": "ZTFD9QRP561GG3M", "story_id": "46938", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all at once , she shuts off all the lights and grabs her car !", "storylet_id": "234693"}], [{"original_text": "These boys will be getting a ride in the trunk back to the punch police station.", "album_id": "1254452", "photo_flickr_id": "57913747", "setting": "last-3-pick-old-and-tell", "worker_id": "ZTFD9QRP561GG3M", "story_id": "46938", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these boys will be getting a ride in the trunk back to the punch police station .", "storylet_id": "234694"}], [{"original_text": "The guy with the eye patch had a great costume", "album_id": "1254452", "photo_flickr_id": "57913622", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46939", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guy with the eye patch had a great costume", "storylet_id": "234695"}], [{"original_text": "everyone wanted to take a photo of him.", "album_id": "1254452", "photo_flickr_id": "57913633", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46939", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone wanted to take a photo of him .", "storylet_id": "234696"}], [{"original_text": "There were many good costumes overall", "album_id": "1254452", "photo_flickr_id": "57913641", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46939", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many good costumes overall", "storylet_id": "234697"}], [{"original_text": "and there was dancing at night", "album_id": "1254452", "photo_flickr_id": "57913730", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46939", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and there was dancing at night", "storylet_id": "234698"}], [{"original_text": "all night long.", "album_id": "1254452", "photo_flickr_id": "57913747", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46939", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all night long .", "storylet_id": "234699"}], [{"original_text": "The children were joined by their parents on the first day of class.", "album_id": "72157602805299990", "photo_flickr_id": "1806055913", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46940", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the children were joined by their parents on the first day of class .", "storylet_id": "234700"}], [{"original_text": "The children were urged to try new activities on their own.", "album_id": "72157602805299990", "photo_flickr_id": "1806058949", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46940", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children were urged to try new activities on their own .", "storylet_id": "234701"}], [{"original_text": "There were tons of things for the kids to do.", "album_id": "72157602805299990", "photo_flickr_id": "1806896756", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46940", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were tons of things for the kids to do .", "storylet_id": "234702"}], [{"original_text": "One young girl had a great time on the train.", "album_id": "72157602805299990", "photo_flickr_id": "1806900712", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46940", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one young girl had a great time on the train .", "storylet_id": "234703"}], [{"original_text": "She had a great day on her first day of class!", "album_id": "72157602805299990", "photo_flickr_id": "1806048445", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "46940", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she had a great day on her first day of class !", "storylet_id": "234704"}], [{"original_text": "A fun day of arts and crafts at pre-school.", "album_id": "72157602805299990", "photo_flickr_id": "1806896756", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46941", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a fun day of arts and crafts at pre-school .", "storylet_id": "234705"}], [{"original_text": "So many things for the children to play with at school, so much to pick from.", "album_id": "72157602805299990", "photo_flickr_id": "1806902020", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46941", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so many things for the children to play with at school , so much to pick from .", "storylet_id": "234706"}], [{"original_text": "Learning balance and coordination while having fun at schoo.", "album_id": "72157602805299990", "photo_flickr_id": "1806053817", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46941", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "learning balance and coordination while having fun at schoo .", "storylet_id": "234707"}], [{"original_text": "Parents with their children while they become adjusted to school.", "album_id": "72157602805299990", "photo_flickr_id": "1806055913", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46941", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "parents with their children while they become adjusted to school .", "storylet_id": "234708"}], [{"original_text": "A parent having a chat with the teacher at school.", "album_id": "72157602805299990", "photo_flickr_id": "1806058949", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46941", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a parent having a chat with the teacher at school .", "storylet_id": "234709"}], [{"original_text": "We attended a kid's play date at which the children were initially wary of each other.", "album_id": "72157602805299990", "photo_flickr_id": "1806055913", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "46942", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we attended a kid 's play date at which the children were initially wary of each other .", "storylet_id": "234710"}], [{"original_text": "I think once the adults detached themselves from their kids, the kids felt better about exploring. ", "album_id": "72157602805299990", "photo_flickr_id": "1806058949", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "46942", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i think once the adults detached themselves from their kids , the kids felt better about exploring .", "storylet_id": "234711"}], [{"original_text": "Kate first tentatively tried playing with some educational toys set on a table. ", "album_id": "72157602805299990", "photo_flickr_id": "1806896756", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "46942", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] first tentatively tried playing with some educational toys set on a table .", "storylet_id": "234712"}], [{"original_text": "But she quickly moved onto the more mobile toys, like the train ride.", "album_id": "72157602805299990", "photo_flickr_id": "1806900712", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "46942", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but she quickly moved onto the more mobile toys , like the train ride .", "storylet_id": "234713"}], [{"original_text": "She willingly gave the camera a smile when I asked. ", "album_id": "72157602805299990", "photo_flickr_id": "1806048445", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "46942", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she willingly gave the camera a smile when i asked .", "storylet_id": "234714"}], [{"original_text": "The first day of preschool was very exciting.", "album_id": "72157602805299990", "photo_flickr_id": "1806055913", "setting": "last-3-pick-old-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "46943", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the first day of preschool was very exciting .", "storylet_id": "234715"}], [{"original_text": "All the moms and dads stayed to help the kids settle in.", "album_id": "72157602805299990", "photo_flickr_id": "1806058949", "setting": "last-3-pick-old-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "46943", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the moms and dads stayed to help the kids settle in .", "storylet_id": "234716"}], [{"original_text": "My daughter found some great games to play with.", "album_id": "72157602805299990", "photo_flickr_id": "1806896756", "setting": "last-3-pick-old-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "46943", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my daughter found some great games to play with .", "storylet_id": "234717"}], [{"original_text": "She loved the train that she could ride around the room.", "album_id": "72157602805299990", "photo_flickr_id": "1806900712", "setting": "last-3-pick-old-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "46943", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she loved the train that she could ride around the room .", "storylet_id": "234718"}], [{"original_text": "She had so much fun, she can't wait for tomorrow's class.", "album_id": "72157602805299990", "photo_flickr_id": "1806048445", "setting": "last-3-pick-old-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "46943", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she had so much fun , she ca n't wait for tomorrow 's class .", "storylet_id": "234719"}], [{"original_text": "We've been visiting preschools for weeks now, looking for the right one for our little Ava.", "album_id": "72157602805299990", "photo_flickr_id": "1806055913", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46944", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 've been visiting preschools for weeks now , looking for the right one for our little [female] .", "storylet_id": "234720"}], [{"original_text": "I have to say, I was fairly impressed with Miss Laura's Play Preschool.", "album_id": "72157602805299990", "photo_flickr_id": "1806058949", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46944", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i have to say , i was fairly impressed with miss [female] 's play preschool .", "storylet_id": "234721"}], [{"original_text": "There were a huge amount of educational toys, all well kept and clean.", "album_id": "72157602805299990", "photo_flickr_id": "1806896756", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46944", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a huge amount of educational toys , all well kept and clean .", "storylet_id": "234722"}], [{"original_text": "Ava adored the train you could ride around the room.", "album_id": "72157602805299990", "photo_flickr_id": "1806900712", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46944", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] adored the train you could ride around the room .", "storylet_id": "234723"}], [{"original_text": "I loved the big smile on Ava's face when I told her she'd be going to Miss Laura's for preschool next year!", "album_id": "72157602805299990", "photo_flickr_id": "1806048445", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46944", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i loved the big smile on [female] 's face when i told her she 'd be going to miss [female] 's for preschool next year !", "storylet_id": "234724"}], [{"original_text": "Inside this spooky house, important business is happening. ", "album_id": "72157604063304707", "photo_flickr_id": "1806413325", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46945", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "inside this spooky house , important business is happening .", "storylet_id": "234725"}], [{"original_text": "All these pumpkins shall be transformed into Jack O'Lanterns.", "album_id": "72157604063304707", "photo_flickr_id": "1806393877", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46945", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all these pumpkins shall be transformed into [male] o'lanterns .", "storylet_id": "234726"}], [{"original_text": "The family takes their task very seriously.", "album_id": "72157604063304707", "photo_flickr_id": "1806394521", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46945", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family takes their task very seriously .", "storylet_id": "234727"}], [{"original_text": "First a face is drawn on the pumpkin then a sharp knife is used to carve the face out. ", "album_id": "72157604063304707", "photo_flickr_id": "1807244232", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46945", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "first a face is drawn on the pumpkin then a sharp knife is used to carve the face out .", "storylet_id": "234728"}], [{"original_text": "A candle is placed inside and the pumpkin will glow for hours. ", "album_id": "72157604063304707", "photo_flickr_id": "1806418549", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46945", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a candle is placed inside and the pumpkin will glow for hours .", "storylet_id": "234729"}], [{"original_text": "A family gets together after dinner to care the pumpkins.", "album_id": "72157604063304707", "photo_flickr_id": "1806394521", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46946", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a family gets together after dinner to care the pumpkins .", "storylet_id": "234730"}], [{"original_text": "One pumpkin even gets a Jason mask to make it more festive.", "album_id": "72157604063304707", "photo_flickr_id": "1806398637", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46946", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one pumpkin even gets a [male] mask to make it more festive .", "storylet_id": "234731"}], [{"original_text": "The house is decorated outside for the trick or treaters.", "album_id": "72157604063304707", "photo_flickr_id": "1807256080", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46946", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the house is decorated outside for the trick or treaters .", "storylet_id": "234732"}], [{"original_text": "Three carved pumpkins add a spooking glow in the dark.", "album_id": "72157604063304707", "photo_flickr_id": "1806408889", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46946", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "three carved pumpkins add a spooking glow in the dark .", "storylet_id": "234733"}], [{"original_text": "Pink lights shine down on the decorated front porch.", "album_id": "72157604063304707", "photo_flickr_id": "1806413325", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46946", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "pink lights shine down on the decorated front porch .", "storylet_id": "234734"}], [{"original_text": "We decorated our house on Halloween for the first time.", "album_id": "72157604063304707", "photo_flickr_id": "1806413325", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46947", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decorated our house on halloween for the first time .", "storylet_id": "234735"}], [{"original_text": "Then, we gathered at the dinner table to design our pumpkins.", "album_id": "72157604063304707", "photo_flickr_id": "1806393877", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46947", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then , we gathered at the dinner table to design our pumpkins .", "storylet_id": "234736"}], [{"original_text": "With a bit of work, we were able to carve out the seeds and implant faces into the pumpkins.", "album_id": "72157604063304707", "photo_flickr_id": "1806394521", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46947", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "with a bit of work , we were able to carve out the seeds and implant faces into the pumpkins .", "storylet_id": "234737"}], [{"original_text": "Here I am, unleashing my creation to the world.", "album_id": "72157604063304707", "photo_flickr_id": "1807244232", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46947", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here i am , unleashing my creation to the world .", "storylet_id": "234738"}], [{"original_text": "In the aftermath, we are proud to display our jack-o-lanterns.", "album_id": "72157604063304707", "photo_flickr_id": "1806418549", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46947", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the aftermath , we are proud to display our jack-o-lanterns .", "storylet_id": "234739"}], [{"original_text": "Carving pumpkins has always been a family tradition.", "album_id": "72157604063304707", "photo_flickr_id": "1806394521", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46948", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "carving pumpkins has always been a family tradition .", "storylet_id": "234740"}], [{"original_text": "Mark skipped cutting his pumpkin and dressed it up. ", "album_id": "72157604063304707", "photo_flickr_id": "1806398637", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46948", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] skipped cutting his pumpkin and dressed it up .", "storylet_id": "234741"}], [{"original_text": "Our house looked quite eerie from the outside. ", "album_id": "72157604063304707", "photo_flickr_id": "1807256080", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46948", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our house looked quite eerie from the outside .", "storylet_id": "234742"}], [{"original_text": "The pumpkins ended up looking good.", "album_id": "72157604063304707", "photo_flickr_id": "1806408889", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46948", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pumpkins ended up looking good .", "storylet_id": "234743"}], [{"original_text": "Our house lit up every time a trick-or-treater came by. ", "album_id": "72157604063304707", "photo_flickr_id": "1806413325", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46948", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our house lit up every time a trick-or-treater came by .", "storylet_id": "234744"}], [{"original_text": "This year we decorated the porch for halloween.", "album_id": "72157604063304707", "photo_flickr_id": "1806413325", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46949", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this year we decorated the porch for halloween .", "storylet_id": "234745"}], [{"original_text": "The family got together and carved some pumpkins also.", "album_id": "72157604063304707", "photo_flickr_id": "1806393877", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46949", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family got together and carved some pumpkins also .", "storylet_id": "234746"}], [{"original_text": "It was so fun scooping out all the inside and cutting out the faces.", "album_id": "72157604063304707", "photo_flickr_id": "1806394521", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46949", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was so fun scooping out all the inside and cutting out the faces .", "storylet_id": "234747"}], [{"original_text": "Dad was very serious when it came time for to put the knife to his pumpkin face.", "album_id": "72157604063304707", "photo_flickr_id": "1807244232", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46949", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dad was very serious when it came time for to put the knife to his pumpkin face .", "storylet_id": "234748"}], [{"original_text": "In the end they all turned out great.", "album_id": "72157604063304707", "photo_flickr_id": "1806418549", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46949", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end they all turned out great .", "storylet_id": "234749"}], [{"original_text": "A woman brings her dog to the Halloween party for pets.", "album_id": "72157625150379941", "photo_flickr_id": "5129863404", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46950", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a woman brings her dog to the halloween party for pets .", "storylet_id": "234750"}], [{"original_text": "This sweet little dog is has devil horns for the party.", "album_id": "72157625150379941", "photo_flickr_id": "5129262177", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46950", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this sweet little dog is has devil horns for the party .", "storylet_id": "234751"}], [{"original_text": "What a cute dog dressed as a pumpkin.", "album_id": "72157625150379941", "photo_flickr_id": "5129262515", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46950", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what a cute dog dressed as a pumpkin .", "storylet_id": "234752"}], [{"original_text": "An adorable pooch dressed as a king complete with robe and crown for the party.", "album_id": "72157625150379941", "photo_flickr_id": "5129864604", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46950", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an adorable pooch dressed as a king complete with robe and crown for the party .", "storylet_id": "234753"}], [{"original_text": "A black and white dog dressed in prison togs, hope he doesn't try to escape.", "album_id": "72157625150379941", "photo_flickr_id": "5129869152", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "46950", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a black and white dog dressed in prison togs , hope he does n't try to escape .", "storylet_id": "234754"}], [{"original_text": "I was so excited to take my dog Snuggles to the pet meetup.", "album_id": "72157625150379941", "photo_flickr_id": "5129863404", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46951", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was so excited to take my dog snuggles to the pet meetup .", "storylet_id": "234755"}], [{"original_text": "There were so many cute dogs at the meetup. ", "album_id": "72157625150379941", "photo_flickr_id": "5129262515", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46951", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many cute dogs at the meetup .", "storylet_id": "234756"}], [{"original_text": "The outfits were adorable but I wanted to find a friend for Snuggles. ", "album_id": "72157625150379941", "photo_flickr_id": "5129864604", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46951", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the outfits were adorable but i wanted to find a friend for snuggles .", "storylet_id": "234757"}], [{"original_text": "Finally I spotted a dog that was dressed as Superman that looked perfect for Snuggles.", "album_id": "72157625150379941", "photo_flickr_id": "5129266395", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46951", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally i spotted a dog that was dressed as superman that looked perfect for snuggles .", "storylet_id": "234758"}], [{"original_text": "I met some great people at the meetup and set up play dates for Snuggles.", "album_id": "72157625150379941", "photo_flickr_id": "5129261261", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "46951", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i met some great people at the meetup and set up play dates for snuggles .", "storylet_id": "234759"}], [{"original_text": "The Halloween parade was well under way.", "album_id": "72157625150379941", "photo_flickr_id": "5129863404", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "46952", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the halloween parade was well under way .", "storylet_id": "234760"}], [{"original_text": "Everyone had been dressed up.", "album_id": "72157625150379941", "photo_flickr_id": "5129262177", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "46952", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone had been dressed up .", "storylet_id": "234761"}], [{"original_text": "The dog lover came out in full force.", "album_id": "72157625150379941", "photo_flickr_id": "5129262515", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "46952", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dog lover came out in full force .", "storylet_id": "234762"}], [{"original_text": "All of the dog's were dressed up.", "album_id": "72157625150379941", "photo_flickr_id": "5129864604", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "46952", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the dog 's were dressed up .", "storylet_id": "234763"}], [{"original_text": "And some weren't allowed to leave!", "album_id": "72157625150379941", "photo_flickr_id": "5129869152", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "46952", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and some were n't allowed to leave !", "storylet_id": "234764"}], [{"original_text": "This year she brought her dog to watch the Halloween dog parade.", "album_id": "72157625150379941", "photo_flickr_id": "5129863404", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46953", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this year she brought her dog to watch the halloween dog parade .", "storylet_id": "234765"}], [{"original_text": "There are so many cute costumes, like this little devil.", "album_id": "72157625150379941", "photo_flickr_id": "5129262177", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46953", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are so many cute costumes , like this little devil .", "storylet_id": "234766"}], [{"original_text": "This dog looks just like a jack 'o lantern.", "album_id": "72157625150379941", "photo_flickr_id": "5129262515", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46953", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this dog looks just like a jack 'o lantern .", "storylet_id": "234767"}], [{"original_text": "Some dogs prefer a more \"royal\" look.", "album_id": "72157625150379941", "photo_flickr_id": "5129864604", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46953", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some dogs prefer a more `` royal '' look .", "storylet_id": "234768"}], [{"original_text": "But the winner of this years award for cute, goes to this little prisoner.", "album_id": "72157625150379941", "photo_flickr_id": "5129869152", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46953", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the winner of this years award for cute , goes to this little prisoner .", "storylet_id": "234769"}], [{"original_text": "Maddie wanted to go to the local dog park on Halloween. ", "album_id": "72157625150379941", "photo_flickr_id": "5129863404", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46954", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "maddie wanted to go to the local dog park on halloween .", "storylet_id": "234770"}], [{"original_text": "One dog didn't have much of a costume. ", "album_id": "72157625150379941", "photo_flickr_id": "5129262177", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46954", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one dog did n't have much of a costume .", "storylet_id": "234771"}], [{"original_text": "I laughed when I saw a dog dressed as a pumpkin.", "album_id": "72157625150379941", "photo_flickr_id": "5129262515", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46954", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i laughed when i saw a dog dressed as a pumpkin .", "storylet_id": "234772"}], [{"original_text": "Some people treat their dogs like royalty. ", "album_id": "72157625150379941", "photo_flickr_id": "5129864604", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46954", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people treat their dogs like royalty .", "storylet_id": "234773"}], [{"original_text": "Other owners treat their dogs like prisoners. ", "album_id": "72157625150379941", "photo_flickr_id": "5129869152", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "46954", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "other owners treat their dogs like prisoners .", "storylet_id": "234774"}], [{"original_text": "Vulcan Village held their own Trick or Treat event. ", "album_id": "72157637122825124", "photo_flickr_id": "10574929913", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46955", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "vulcan village held their own trick or treat event .", "storylet_id": "234775"}], [{"original_text": "Groups of children in costume traipsed from house to house for candy treats. ", "album_id": "72157637122825124", "photo_flickr_id": "10574929303", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46955", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "groups of children in costume traipsed from house to house for candy treats .", "storylet_id": "234776"}], [{"original_text": "The children loved being in their costumes and were enjoying their adventure.", "album_id": "72157637122825124", "photo_flickr_id": "10574935153", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46955", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the children loved being in their costumes and were enjoying their adventure .", "storylet_id": "234777"}], [{"original_text": "A few people gave out candy on the sidewalk. ", "album_id": "72157637122825124", "photo_flickr_id": "10574934063", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46955", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a few people gave out candy on the sidewalk .", "storylet_id": "234778"}], [{"original_text": "The small heros, witches, ghosts had their bags filled with delicious treats.", "album_id": "72157637122825124", "photo_flickr_id": "10574934823", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "46955", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the small heros , witches , ghosts had their bags filled with delicious treats .", "storylet_id": "234779"}], [{"original_text": "The party started outdoors in preparation for trick or treating.", "album_id": "72157637122825124", "photo_flickr_id": "10574715184", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46956", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party started outdoors in preparation for trick or treating .", "storylet_id": "234780"}], [{"original_text": "The little ones had fun crafting.", "album_id": "72157637122825124", "photo_flickr_id": "10574717514", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46956", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the little ones had fun crafting .", "storylet_id": "234781"}], [{"original_text": "The older ones has a chance to socialize.", "album_id": "72157637122825124", "photo_flickr_id": "10574697236", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46956", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the older ones has a chance to socialize .", "storylet_id": "234782"}], [{"original_text": "Everyone in the community participated.", "album_id": "72157637122825124", "photo_flickr_id": "10574657395", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46956", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone in the community participated .", "storylet_id": "234783"}], [{"original_text": "It was cool to see the community come together.", "album_id": "72157637122825124", "photo_flickr_id": "10574929303", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46956", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was cool to see the community come together .", "storylet_id": "234784"}], [{"original_text": "Everyone got together to celebrate Halloween.", "album_id": "72157637122825124", "photo_flickr_id": "10574715184", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46957", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone got together to celebrate halloween .", "storylet_id": "234785"}], [{"original_text": "The younger kids made arts and crafts.", "album_id": "72157637122825124", "photo_flickr_id": "10574717514", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46957", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the younger kids made arts and crafts .", "storylet_id": "234786"}], [{"original_text": "Even the older kids were being creative.", "album_id": "72157637122825124", "photo_flickr_id": "10574697236", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46957", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the older kids were being creative .", "storylet_id": "234787"}], [{"original_text": "The best part was the candy.", "album_id": "72157637122825124", "photo_flickr_id": "10574657395", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46957", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the best part was the candy .", "storylet_id": "234788"}], [{"original_text": "We all got to walked together while we Trick or Treated around the neighborhood. It was a very memorable day.", "album_id": "72157637122825124", "photo_flickr_id": "10574929303", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "46957", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all got to walked together while we trick or treated around the neighborhood . it was a very memorable day .", "storylet_id": "234789"}], [{"original_text": "Vulcan Village welcomed us at this booth.", "album_id": "72157637122825124", "photo_flickr_id": "10574929913", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46958", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "vulcan village welcomed us at this booth .", "storylet_id": "234790"}], [{"original_text": "We were directed to go outside for the candy and games.", "album_id": "72157637122825124", "photo_flickr_id": "10574929303", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46958", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were directed to go outside for the candy and games .", "storylet_id": "234791"}], [{"original_text": "A member of Vulcan Village told us a funny story.", "album_id": "72157637122825124", "photo_flickr_id": "10574935153", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46958", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a member of organization organization told us a funny story .", "storylet_id": "234792"}], [{"original_text": "Halloween wouldn't be a day without candy.", "album_id": "72157637122825124", "photo_flickr_id": "10574934063", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46958", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "halloween would n't be a day without candy .", "storylet_id": "234793"}], [{"original_text": "Lastly, one of the guests took her time picking out the best candy.", "album_id": "72157637122825124", "photo_flickr_id": "10574934823", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46958", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , one of the guests took her time picking out the best candy .", "storylet_id": "234794"}], [{"original_text": "I read in the paper about this section of town that really does up trick-or-treating big. They change their name for the night to Vulcan Village!", "album_id": "72157637122825124", "photo_flickr_id": "10574929913", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46959", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i read in the paper about this section of town that really does up trick-or-treating big . they change their name for the night to vulcan village !", "storylet_id": "234795"}], [{"original_text": "I got together the whole gang, and we headed out to Vulcan Village for fun.", "album_id": "72157637122825124", "photo_flickr_id": "10574929303", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46959", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got together the whole gang , and we headed out to vulcan village for fun .", "storylet_id": "234796"}], [{"original_text": "The kids were super excited, as kids always are on the Halloween.", "album_id": "72157637122825124", "photo_flickr_id": "10574935153", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46959", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids were super excited , as kids always are on the halloween .", "storylet_id": "234797"}], [{"original_text": "They have a special afternoon trick-or-treating policy, which is great, because kids get scared after dark.", "album_id": "72157637122825124", "photo_flickr_id": "10574934063", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46959", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they have a special afternoon trick-or-treating policy , which is great , because kids get scared after dark .", "storylet_id": "234798"}], [{"original_text": "Janey got SO much candy! I loved the whole experience.", "album_id": "72157637122825124", "photo_flickr_id": "10574934823", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "46959", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "janey got so much candy ! i loved the whole experience .", "storylet_id": "234799"}], [{"original_text": "When my brother got out of the hospital he decided to throw a Halloween party.", "album_id": "72157631897963439", "photo_flickr_id": "8142760762", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46960", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when my brother got out of the hospital he decided to throw a halloween party .", "storylet_id": "234800"}], [{"original_text": "He invited over all his friends.", "album_id": "72157631897963439", "photo_flickr_id": "8142729505", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46960", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he invited over all his friends .", "storylet_id": "234801"}], [{"original_text": "He didn't know his bottom was exposed.", "album_id": "72157631897963439", "photo_flickr_id": "8142730283", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46960", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he did n't know his bottom was exposed .", "storylet_id": "234802"}], [{"original_text": "All of us then got dressed up in costumes.", "album_id": "72157631897963439", "photo_flickr_id": "8142760166", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46960", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of us then got dressed up in costumes .", "storylet_id": "234803"}], [{"original_text": "This couple won the best costume award.", "album_id": "72157631897963439", "photo_flickr_id": "8142759172", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46960", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this couple won the best costume award .", "storylet_id": "234804"}], [{"original_text": "We had a great time at the Halloween party.", "album_id": "72157631897963439", "photo_flickr_id": "8142728147", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46961", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great time at the halloween party .", "storylet_id": "234805"}], [{"original_text": "And a lovely dinner at a nearby restaurant. ", "album_id": "72157631897963439", "photo_flickr_id": "8142757790", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46961", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and a lovely dinner at a nearby restaurant .", "storylet_id": "234806"}], [{"original_text": "It was a mix of families and couples. ", "album_id": "72157631897963439", "photo_flickr_id": "8142758814", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46961", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a mix of families and couples .", "storylet_id": "234807"}], [{"original_text": "Many of the couples dressed in matching costumes ", "album_id": "72157631897963439", "photo_flickr_id": "8142729263", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46961", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many of the couples dressed in matching costumes", "storylet_id": "234808"}], [{"original_text": "But all to soon, the babies, had to go home. ", "album_id": "72157631897963439", "photo_flickr_id": "8142732919", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46961", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but all to soon , the babies , had to go home .", "storylet_id": "234809"}], [{"original_text": "It is Halloween again, that is not an escaped medical patient.", "album_id": "72157631897963439", "photo_flickr_id": "8142760762", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "46962", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is halloween again , that is not an escaped medical patient .", "storylet_id": "234810"}], [{"original_text": "We are having a party, and everyone has arrived.", "album_id": "72157631897963439", "photo_flickr_id": "8142729505", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "46962", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are having a party , and everyone has arrived .", "storylet_id": "234811"}], [{"original_text": "Check out all the cool costumes.", "album_id": "72157631897963439", "photo_flickr_id": "8142730283", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "46962", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "check out all the cool costumes .", "storylet_id": "234812"}], [{"original_text": "We decided to take the party outside since it is so nice.", "album_id": "72157631897963439", "photo_flickr_id": "8142760166", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "46962", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we decided to take the party outside since it is so nice .", "storylet_id": "234813"}], [{"original_text": "Some of our costumes are really amazing today.", "album_id": "72157631897963439", "photo_flickr_id": "8142759172", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "46962", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of our costumes are really amazing today .", "storylet_id": "234814"}], [{"original_text": "Terry was really excited about his costume for the Halloween party. ", "album_id": "72157631897963439", "photo_flickr_id": "8142760762", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "46963", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was really excited about his costume for the halloween party .", "storylet_id": "234815"}], [{"original_text": "Here he is giggling to himself as he thinks about revealing the true surprise of his costume. ", "album_id": "72157631897963439", "photo_flickr_id": "8142729505", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "46963", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here he is giggling to himself as he thinks about revealing the true surprise of his costume .", "storylet_id": "234816"}], [{"original_text": "And, of course, he has to make sure that everyone gets a good look at his fake behind. ", "album_id": "72157631897963439", "photo_flickr_id": "8142730283", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "46963", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and , of course , he has to make sure that everyone gets a good look at his fake behind .", "storylet_id": "234817"}], [{"original_text": "Although he is a little disappointed that he doesn't get to show off that part of his costume in the group shot. ", "album_id": "72157631897963439", "photo_flickr_id": "8142760166", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "46963", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "although he is a little disappointed that he does n't get to show off that part of his costume in the group shot .", "storylet_id": "234818"}], [{"original_text": "In the end, though, he had to give it up for the Day of the Dead couple for having the best makeup. ", "album_id": "72157631897963439", "photo_flickr_id": "8142759172", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "46963", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , though , he had to give it up for the day of the dead couple for having the best makeup .", "storylet_id": "234819"}], [{"original_text": "We see this man in a hospital gown.", "album_id": "72157631897963439", "photo_flickr_id": "8142760762", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46964", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we see this man in a hospital gown .", "storylet_id": "234820"}], [{"original_text": "Everyone at the table seemed to enjoy the company of the man.", "album_id": "72157631897963439", "photo_flickr_id": "8142729505", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46964", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone at the table seemed to enjoy the company of the man .", "storylet_id": "234821"}], [{"original_text": "He showed us his elaborate details of his costume.", "album_id": "72157631897963439", "photo_flickr_id": "8142730283", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46964", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he showed us his elaborate details of his costume .", "storylet_id": "234822"}], [{"original_text": "With food in their stomachs, they decided to take a break outside.", "album_id": "72157631897963439", "photo_flickr_id": "8142760166", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46964", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with food in their stomachs , they decided to take a break outside .", "storylet_id": "234823"}], [{"original_text": "Lastly, this couple won the costume contest.", "album_id": "72157631897963439", "photo_flickr_id": "8142759172", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "46964", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , this couple won the costume contest .", "storylet_id": "234824"}], [{"original_text": "Dad was helping Mindy as she dressed for the school play.", "album_id": "72157631898749264", "photo_flickr_id": "8142901176", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "46965", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dad was helping [female] as she dressed for the school play .", "storylet_id": "234825"}], [{"original_text": "She happily receives his help and shows off her face paint.", "album_id": "72157631898749264", "photo_flickr_id": "8142900178", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "46965", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she happily receives his help and shows off her face paint .", "storylet_id": "234826"}], [{"original_text": "She is now ready with the headpiece and wings.", "album_id": "72157631898749264", "photo_flickr_id": "8142869357", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "46965", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she is now ready with the headpiece and wings .", "storylet_id": "234827"}], [{"original_text": "The side view shows the wings more clearly.", "album_id": "72157631898749264", "photo_flickr_id": "8142868999", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "46965", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the side view shows the wings more clearly .", "storylet_id": "234828"}], [{"original_text": "She joins her class and occupies the central point in the class picture. Thanks for your help, Dad.", "album_id": "72157631898749264", "photo_flickr_id": "8142868045", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "46965", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she joins her class and occupies the central point in the class picture . thanks for your help , dad .", "storylet_id": "234829"}], [{"original_text": "The children had a fun time at the costume party.", "album_id": "72157631898749264", "photo_flickr_id": "8142868045", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46966", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the children had a fun time at the costume party .", "storylet_id": "234830"}], [{"original_text": "The loved having their faces painted.", "album_id": "72157631898749264", "photo_flickr_id": "8142899868", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46966", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the loved having their faces painted .", "storylet_id": "234831"}], [{"original_text": "The entire class behaved well so everyone got to participate.", "album_id": "72157631898749264", "photo_flickr_id": "8142872159", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46966", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the entire class behaved well so everyone got to participate .", "storylet_id": "234832"}], [{"original_text": "They played guessing games indoors.", "album_id": "72157631898749264", "photo_flickr_id": "8142872763", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46966", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they played guessing games indoors .", "storylet_id": "234833"}], [{"original_text": "They loved the dance show they got to witness the teachers doing.", "album_id": "72157631898749264", "photo_flickr_id": "8142903348", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "46966", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they loved the dance show they got to witness the teachers doing .", "storylet_id": "234834"}], [{"original_text": "The kindergartners got all dressed up for Halloween ", "album_id": "72157631898749264", "photo_flickr_id": "8142868045", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46967", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kindergartners got all dressed up for halloween", "storylet_id": "234835"}], [{"original_text": "This kindergartner couldn't wait to go to school. ", "album_id": "72157631898749264", "photo_flickr_id": "8142899868", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46967", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this kindergartner could n't wait to go to school .", "storylet_id": "234836"}], [{"original_text": "Today was the big classroom party.", "album_id": "72157631898749264", "photo_flickr_id": "8142872159", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46967", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "today was the big classroom party .", "storylet_id": "234837"}], [{"original_text": "First they played games and other fun activities.", "album_id": "72157631898749264", "photo_flickr_id": "8142872763", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46967", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "first they played games and other fun activities .", "storylet_id": "234838"}], [{"original_text": "Finally it was time for the costume parade around the building.", "album_id": "72157631898749264", "photo_flickr_id": "8142903348", "setting": "last-3-pick-old-and-tell", "worker_id": "U3F7KDL0SUC1HOF", "story_id": "46967", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally it was time for the costume parade around the building .", "storylet_id": "234839"}], [{"original_text": "All the kids at the party dressed up in the backyard.", "album_id": "72157631898749264", "photo_flickr_id": "8142868045", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46968", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all the kids at the party dressed up in the backyard .", "storylet_id": "234840"}], [{"original_text": "Here is the girl at the party.", "album_id": "72157631898749264", "photo_flickr_id": "8142899868", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46968", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is the girl at the party .", "storylet_id": "234841"}], [{"original_text": "Here is a picture of the kids at school all dressed up.", "album_id": "72157631898749264", "photo_flickr_id": "8142872159", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46968", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is a picture of the kids at school all dressed up .", "storylet_id": "234842"}], [{"original_text": "The dressed up kids are dancing and having fun.", "album_id": "72157631898749264", "photo_flickr_id": "8142872763", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46968", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dressed up kids are dancing and having fun .", "storylet_id": "234843"}], [{"original_text": "Outside at the dress up party, the kids are having fun.", "album_id": "72157631898749264", "photo_flickr_id": "8142903348", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "46968", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "outside at the dress up party , the kids are having fun .", "storylet_id": "234844"}], [{"original_text": "This halloween our daughters daycare thew the kids a party.", "album_id": "72157631898749264", "photo_flickr_id": "8142901176", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46969", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this halloween our daughters daycare thew the kids a party .", "storylet_id": "234845"}], [{"original_text": "They had face painting and Maggie chose a rainbow for her cheek.", "album_id": "72157631898749264", "photo_flickr_id": "8142900178", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46969", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had face painting and [female] chose a rainbow for her cheek .", "storylet_id": "234846"}], [{"original_text": "She looked so cute dressed up as a fairy princess.", "album_id": "72157631898749264", "photo_flickr_id": "8142869357", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46969", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she looked so cute dressed up as a fairy princess .", "storylet_id": "234847"}], [{"original_text": "She really enjoyed singing along to the music they had playing.", "album_id": "72157631898749264", "photo_flickr_id": "8142868999", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46969", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she really enjoyed singing along to the music they had playing .", "storylet_id": "234848"}], [{"original_text": "All the kids were so cute in their costumes and had so much fun.", "album_id": "72157631898749264", "photo_flickr_id": "8142868045", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "46969", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the kids were so cute in their costumes and had so much fun .", "storylet_id": "234849"}], [{"original_text": "We come together with friends and family to prepare the pumpkins.", "album_id": "330946", "photo_flickr_id": "12966126", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46970", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we come together with friends and family to prepare the pumpkins .", "storylet_id": "234850"}], [{"original_text": "Once all the pumpkins are picked by size and shape, we start to clean them out. ", "album_id": "330946", "photo_flickr_id": "13648208", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46970", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once all the pumpkins are picked by size and shape , we start to clean them out .", "storylet_id": "234851"}], [{"original_text": "All pumpkins placed on the table with so many different looks.", "album_id": "330946", "photo_flickr_id": "13650765", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46970", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all pumpkins placed on the table with so many different looks .", "storylet_id": "234852"}], [{"original_text": "We gather in the beginning and party at the end. ", "album_id": "330946", "photo_flickr_id": "13648211", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46970", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we gather in the beginning and party at the end .", "storylet_id": "234853"}], [{"original_text": "What a harvest at Halloween.", "album_id": "330946", "photo_flickr_id": "13649594", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46970", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what a harvest at halloween .", "storylet_id": "234854"}], [{"original_text": "Friends gathered for a pumpkin carving party.", "album_id": "330946", "photo_flickr_id": "13649597", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "46971", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends gathered for a pumpkin carving party .", "storylet_id": "234855"}], [{"original_text": "When everyone arrived, they got to work.", "album_id": "330946", "photo_flickr_id": "13648207", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "46971", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when everyone arrived , they got to work .", "storylet_id": "234856"}], [{"original_text": "The worked hard for about an hour.", "album_id": "330946", "photo_flickr_id": "13648208", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "46971", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the worked hard for about an hour .", "storylet_id": "234857"}], [{"original_text": "They displayed the pumpkins on table.", "album_id": "330946", "photo_flickr_id": "13650765", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "46971", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they displayed the pumpkins on table .", "storylet_id": "234858"}], [{"original_text": "The most exciting part was turning off the lights to watch them glow.", "album_id": "330946", "photo_flickr_id": "13649594", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "46971", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the most exciting part was turning off the lights to watch them glow .", "storylet_id": "234859"}], [{"original_text": "I made a lot of new friends at the pumpkin carving party last week.", "album_id": "330946", "photo_flickr_id": "13649597", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46972", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i made a lot of new friends at the pumpkin carving party last week .", "storylet_id": "234860"}], [{"original_text": "Everyone showed me how to make the best jack-o-lanterns.", "album_id": "330946", "photo_flickr_id": "13648207", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46972", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone showed me how to make the best jack-o-lanterns .", "storylet_id": "234861"}], [{"original_text": "It was a lot of hard work.", "album_id": "330946", "photo_flickr_id": "13648208", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46972", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a lot of hard work .", "storylet_id": "234862"}], [{"original_text": "After a few hours we were all finished.", "album_id": "330946", "photo_flickr_id": "13650765", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46972", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a few hours we were all finished .", "storylet_id": "234863"}], [{"original_text": "They looked great outside at night.", "album_id": "330946", "photo_flickr_id": "13649594", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46972", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they looked great outside at night .", "storylet_id": "234864"}], [{"original_text": "Pumpkin carving contest. Dude, pull your pants up!", "album_id": "330946", "photo_flickr_id": "12966126", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46973", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "pumpkin carving contest . dude , pull your pants up !", "storylet_id": "234865"}], [{"original_text": "The girls were carving away, flirting with each other. ", "album_id": "330946", "photo_flickr_id": "13648208", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46973", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girls were carving away , flirting with each other .", "storylet_id": "234866"}], [{"original_text": "The finished product nine excellent Jack-o-lanterns.", "album_id": "330946", "photo_flickr_id": "13650765", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46973", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the finished product nine excellent jack-o-lanterns .", "storylet_id": "234867"}], [{"original_text": "relaxing afterward with a few beers. ", "album_id": "330946", "photo_flickr_id": "13648211", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46973", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "relaxing afterward with a few beers .", "storylet_id": "234868"}], [{"original_text": "Happy Halloween everyone. ", "album_id": "330946", "photo_flickr_id": "13649594", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "46973", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "happy halloween everyone .", "storylet_id": "234869"}], [{"original_text": "The Smith family know they needed the best lanterns for Halloween.", "album_id": "330946", "photo_flickr_id": "13649597", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "46974", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the smith family know they needed the best lanterns for halloween .", "storylet_id": "234870"}], [{"original_text": "Work began early, with family members taking shifts to get the pumpkins carved.", "album_id": "330946", "photo_flickr_id": "13648207", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "46974", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "work began early , with family members taking shifts to get the pumpkins carved .", "storylet_id": "234871"}], [{"original_text": "It was hard work, but they knew it would pay off in the end.", "album_id": "330946", "photo_flickr_id": "13648208", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "46974", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was hard work , but they knew it would pay off in the end .", "storylet_id": "234872"}], [{"original_text": "At the end of they day, there was an entire table full of jack o lanterns.", "album_id": "330946", "photo_flickr_id": "13650765", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "46974", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the end of they day , there was an entire table full of jack o lanterns .", "storylet_id": "234873"}], [{"original_text": "Come night fall, the Smith's had the scariest house on the street.", "album_id": "330946", "photo_flickr_id": "13649594", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "46974", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "come night fall , the smith 's had the scariest house on the street .", "storylet_id": "234874"}], [{"original_text": "We love costume parties and love to have them at our home because it is our favorite holiday.", "album_id": "72157602796939680", "photo_flickr_id": "14787705", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "46975", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we love costume parties and love to have them at our home because it is our favorite holiday .", "storylet_id": "234875"}], [{"original_text": "We get a kick out of all the different ideas our family/friends come up with for costumes and alien costumes are no exception.", "album_id": "72157602796939680", "photo_flickr_id": "14786890", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "46975", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we get a kick out of all the different ideas our family/friends come up with for costumes and alien costumes are no exception .", "storylet_id": "234876"}], [{"original_text": "Some come up with the most unique ideas and it does not cost a lot of money because she used a paper bowl for a hat and transformed herself into what I think is a clown.", "album_id": "72157602796939680", "photo_flickr_id": "14787291", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "46975", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some come up with the most unique ideas and it does not cost a lot of money because she used a paper bowl for a hat and transformed herself into what i think is a clown .", "storylet_id": "234877"}], [{"original_text": "Scary costumes are great and a vodoo mask is always welcome and I really liked this one.", "album_id": "72157602796939680", "photo_flickr_id": "14787491", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "46975", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "scary costumes are great and a vodoo mask is always welcome and i really liked this one .", "storylet_id": "234878"}], [{"original_text": "I did not even recognize my friend in this costume when I first saw him because he looked so different and scary which makes it a lot of fun.", "album_id": "72157602796939680", "photo_flickr_id": "14787702", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "46975", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i did not even recognize my friend in this costume when i first saw him because he looked so different and scary which makes it a lot of fun .", "storylet_id": "234879"}], [{"original_text": "The friends were having a Halloween party.", "album_id": "72157602796939680", "photo_flickr_id": "14786889", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46976", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends were having a halloween party .", "storylet_id": "234880"}], [{"original_text": "They bought decorations.", "album_id": "72157602796939680", "photo_flickr_id": "14787295", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46976", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they bought decorations .", "storylet_id": "234881"}], [{"original_text": "They bought costumes.", "album_id": "72157602796939680", "photo_flickr_id": "14787291", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46976", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they bought costumes .", "storylet_id": "234882"}], [{"original_text": "They invited over all kinds of friends.", "album_id": "72157602796939680", "photo_flickr_id": "14787702", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46976", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they invited over all kinds of friends .", "storylet_id": "234883"}], [{"original_text": "Then they had their party.", "album_id": "72157602796939680", "photo_flickr_id": "14787704", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46976", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then they had their party .", "storylet_id": "234884"}], [{"original_text": "When I got back from work there was a lot of people in my apartment.", "album_id": "72157602796939680", "photo_flickr_id": "14786889", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46977", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i got back from work there was a lot of people in my apartment .", "storylet_id": "234885"}], [{"original_text": "They had a surprise Halloween party for me.", "album_id": "72157602796939680", "photo_flickr_id": "14787295", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46977", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a surprise halloween party for me .", "storylet_id": "234886"}], [{"original_text": "They were all very happy to see me.", "album_id": "72157602796939680", "photo_flickr_id": "14787291", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46977", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were all very happy to see me .", "storylet_id": "234887"}], [{"original_text": "Some people had some great costumes.", "album_id": "72157602796939680", "photo_flickr_id": "14787702", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46977", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people had some great costumes .", "storylet_id": "234888"}], [{"original_text": "I was really happy they threw the party.", "album_id": "72157602796939680", "photo_flickr_id": "14787704", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46977", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was really happy they threw the party .", "storylet_id": "234889"}], [{"original_text": "So we had a nurse and a ghoul show up at the party.", "album_id": "72157602796939680", "photo_flickr_id": "14786889", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46978", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so we had a nurse and a ghoul show up at the party .", "storylet_id": "234890"}], [{"original_text": "And an alien and 60's chick.", "album_id": "72157602796939680", "photo_flickr_id": "14787295", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46978", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and an alien and 60 's chick .", "storylet_id": "234891"}], [{"original_text": "This guy was just lazy. But her costume is good.", "album_id": "72157602796939680", "photo_flickr_id": "14787291", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46978", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this guy was just lazy . but her costume is good .", "storylet_id": "234892"}], [{"original_text": "And there was this cross between leatherface and Paul Blart.", "album_id": "72157602796939680", "photo_flickr_id": "14787702", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46978", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and there was this cross between leatherface and [male] blart .", "storylet_id": "234893"}], [{"original_text": "And some ball player with a pixie.", "album_id": "72157602796939680", "photo_flickr_id": "14787704", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "46978", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and some ball player with a pixie .", "storylet_id": "234894"}], [{"original_text": "Halloween finally arrived.", "album_id": "72157602796939680", "photo_flickr_id": "14787705", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "46979", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "halloween finally arrived .", "storylet_id": "234895"}], [{"original_text": "Everyone took part putting together outfits from their closets.", "album_id": "72157602796939680", "photo_flickr_id": "14786890", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "46979", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone took part putting together outfits from their closets .", "storylet_id": "234896"}], [{"original_text": "We had rockstars among us.", "album_id": "72157602796939680", "photo_flickr_id": "14787291", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "46979", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had rockstars among us .", "storylet_id": "234897"}], [{"original_text": "But the most ingenious prop was the evil plank.", "album_id": "72157602796939680", "photo_flickr_id": "14787491", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "46979", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but the most ingenious prop was the evil plank .", "storylet_id": "234898"}], [{"original_text": "Though Im not sure our co-worker was happy losing the contest to a piece of wood.", "album_id": "72157602796939680", "photo_flickr_id": "14787702", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "46979", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "though im not sure our co-worker was happy losing the contest to a piece of wood .", "storylet_id": "234899"}], [{"original_text": "We decided to have a party for Halloween.", "album_id": "1242576", "photo_flickr_id": "57381204", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "46980", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to have a party for halloween .", "storylet_id": "234900"}], [{"original_text": "All my friends came over to my house.", "album_id": "1242576", "photo_flickr_id": "57381232", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "46980", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all my friends came over to my house .", "storylet_id": "234901"}], [{"original_text": "We had a lot to drink and many people showed up.", "album_id": "1242576", "photo_flickr_id": "57381295", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "46980", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a lot to drink and many people showed up .", "storylet_id": "234902"}], [{"original_text": "We all were very chatty that night.", "album_id": "1242576", "photo_flickr_id": "57381338", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "46980", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all were very chatty that night .", "storylet_id": "234903"}], [{"original_text": "I wound up needing some alone time later just for me.", "album_id": "1242576", "photo_flickr_id": "57381408", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "46980", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i wound up needing some alone time later just for me .", "storylet_id": "234904"}], [{"original_text": "The friends were all dressed up for halloween.", "album_id": "1242576", "photo_flickr_id": "57381975", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46981", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends were all dressed up for halloween .", "storylet_id": "234905"}], [{"original_text": "They went out to eat at a restaurant.", "album_id": "1242576", "photo_flickr_id": "57382082", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46981", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they went out to eat at a restaurant .", "storylet_id": "234906"}], [{"original_text": "Then they went back to the house.", "album_id": "1242576", "photo_flickr_id": "57382152", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46981", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they went back to the house .", "storylet_id": "234907"}], [{"original_text": "They continued the party there.", "album_id": "1242576", "photo_flickr_id": "57382195", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46981", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they continued the party there .", "storylet_id": "234908"}], [{"original_text": "They danced the night away.", "album_id": "1242576", "photo_flickr_id": "57382245", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "46981", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they danced the night away .", "storylet_id": "234909"}], [{"original_text": "Everyone showed up to my apartment last week for the party.", "album_id": "1242576", "photo_flickr_id": "57381204", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46982", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone showed up to my apartment last week for the party .", "storylet_id": "234910"}], [{"original_text": "There were a lot of people.", "album_id": "1242576", "photo_flickr_id": "57381232", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46982", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people .", "storylet_id": "234911"}], [{"original_text": "We all had to sit very close to each other to fit.", "album_id": "1242576", "photo_flickr_id": "57381295", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46982", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all had to sit very close to each other to fit .", "storylet_id": "234912"}], [{"original_text": "We had some food delivered. It was delicious.", "album_id": "1242576", "photo_flickr_id": "57381338", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46982", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had some food delivered . it was delicious .", "storylet_id": "234913"}], [{"original_text": "Afterward we all sat and relaxed while drinking some tea.", "album_id": "1242576", "photo_flickr_id": "57381408", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46982", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we all sat and relaxed while drinking some tea .", "storylet_id": "234914"}], [{"original_text": "It was an epic Halloween party.", "album_id": "1242576", "photo_flickr_id": "57381975", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46983", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was an epic halloween party .", "storylet_id": "234915"}], [{"original_text": "The house was decorated up with lights.", "album_id": "1242576", "photo_flickr_id": "57382082", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46983", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the house was decorated up with lights .", "storylet_id": "234916"}], [{"original_text": "My friends were stoned out of their minds.", "album_id": "1242576", "photo_flickr_id": "57382152", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46983", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friends were stoned out of their minds .", "storylet_id": "234917"}], [{"original_text": "I'm not sure they even knew I was taking pictures.", "album_id": "1242576", "photo_flickr_id": "57382195", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46983", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'm not sure they even knew i was taking pictures .", "storylet_id": "234918"}], [{"original_text": "They are crazy all the time.", "album_id": "1242576", "photo_flickr_id": "57382245", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46983", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are crazy all the time .", "storylet_id": "234919"}], [{"original_text": "The halloween party was a success", "album_id": "1242576", "photo_flickr_id": "57381975", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46984", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the halloween party was a success", "storylet_id": "234920"}], [{"original_text": "the guys had a great time talking", "album_id": "1242576", "photo_flickr_id": "57382082", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46984", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guys had a great time talking", "storylet_id": "234921"}], [{"original_text": "and dressing up with each other.", "album_id": "1242576", "photo_flickr_id": "57382152", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46984", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and dressing up with each other .", "storylet_id": "234922"}], [{"original_text": "The boys had all kinds of costumes", "album_id": "1242576", "photo_flickr_id": "57382195", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46984", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boys had all kinds of costumes", "storylet_id": "234923"}], [{"original_text": "and fun times overall.", "album_id": "1242576", "photo_flickr_id": "57382245", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46984", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and fun times overall .", "storylet_id": "234924"}], [{"original_text": "My dad got a whole head tattoo.", "album_id": "1261073", "photo_flickr_id": "58270829", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46985", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my dad got a whole head tattoo .", "storylet_id": "234925"}], [{"original_text": "Now he looks good with my mom who also tattooed her whole head blue.", "album_id": "1261073", "photo_flickr_id": "58274332", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46985", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "now he looks good with my mom who also tattooed her whole head blue .", "storylet_id": "234926"}], [{"original_text": "They went to the USO nostalgia bar to celebrate.", "album_id": "1261073", "photo_flickr_id": "58275247", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46985", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they went to the uso nostalgia bar to celebrate .", "storylet_id": "234927"}], [{"original_text": "Misery and death showed up to spoil the party.", "album_id": "1261073", "photo_flickr_id": "58273134", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46985", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "misery and death showed up to spoil the party .", "storylet_id": "234928"}], [{"original_text": "Soon everybody began to leave.", "album_id": "1261073", "photo_flickr_id": "58271453", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46985", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "soon everybody began to leave .", "storylet_id": "234929"}], [{"original_text": "Our local bar threw their annual Halloween party last weekend. ", "album_id": "1261073", "photo_flickr_id": "58270294", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "46986", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our local bar threw their annual halloween party last weekend .", "storylet_id": "234930"}], [{"original_text": "It was fun, a lot of drunks wearing rubber masks. Pretty much standard. ", "album_id": "1261073", "photo_flickr_id": "58270829", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "46986", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was fun , a lot of drunks wearing rubber masks . pretty much standard .", "storylet_id": "234931"}], [{"original_text": "Ralph seemed to be a big target for the drunk masked people, but he kept smiling. ", "album_id": "1261073", "photo_flickr_id": "58274332", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "46986", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] seemed to be a big target for the drunk masked people , but he kept smiling .", "storylet_id": "234932"}], [{"original_text": "But things got kinda weird when they announced their own version of \"Coyote Ugly\" was going to take place. ", "album_id": "1261073", "photo_flickr_id": "58274887", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "46986", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but things got kinda weird when they announced their own version of `` coyote ugly '' was going to take place .", "storylet_id": "234933"}], [{"original_text": "And so a lot of the waitresses and some of the patrons jumped up on the bar and danced. It was pretty wild. ", "album_id": "1261073", "photo_flickr_id": "58275247", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "46986", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and so a lot of the waitresses and some of the patrons jumped up on the bar and danced . it was pretty wild .", "storylet_id": "234934"}], [{"original_text": "The stage is set for a Halloween party.", "album_id": "1261073", "photo_flickr_id": "58270294", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "46987", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stage is set for a halloween party .", "storylet_id": "234935"}], [{"original_text": "This guest doesn't seem very scared of the ghoul!", "album_id": "1261073", "photo_flickr_id": "58270829", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "46987", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this guest does n't seem very scared of the ghoul !", "storylet_id": "234936"}], [{"original_text": "People were having a good time trying on scary masks.", "album_id": "1261073", "photo_flickr_id": "58274332", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "46987", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people were having a good time trying on scary masks .", "storylet_id": "234937"}], [{"original_text": "Some of the ladies decided to go all out with their costumes.", "album_id": "1261073", "photo_flickr_id": "58274887", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "46987", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the ladies decided to go all out with their costumes .", "storylet_id": "234938"}], [{"original_text": "Everybody was having a good time dancing and showing off their costumes.", "album_id": "1261073", "photo_flickr_id": "58275247", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "46987", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everybody was having a good time dancing and showing off their costumes .", "storylet_id": "234939"}], [{"original_text": "There were a lot of costumes at the party last night.", "album_id": "1261073", "photo_flickr_id": "58270829", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46988", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of costumes at the party last night .", "storylet_id": "234940"}], [{"original_text": "They were all very scary.", "album_id": "1261073", "photo_flickr_id": "58274332", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46988", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were all very scary .", "storylet_id": "234941"}], [{"original_text": "There were some dancers up on the stage as well.", "album_id": "1261073", "photo_flickr_id": "58275247", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46988", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some dancers up on the stage as well .", "storylet_id": "234942"}], [{"original_text": "The people in the scary costumes stayed at the party for a while.", "album_id": "1261073", "photo_flickr_id": "58273134", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46988", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people in the scary costumes stayed at the party for a while .", "storylet_id": "234943"}], [{"original_text": "I left because they were scaring me.", "album_id": "1261073", "photo_flickr_id": "58271453", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46988", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i left because they were scaring me .", "storylet_id": "234944"}], [{"original_text": "The company Halloween party set up was very artistic. ", "album_id": "1261073", "photo_flickr_id": "58270294", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46989", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the company halloween party set up was very artistic .", "storylet_id": "234945"}], [{"original_text": "This mask was so lifelike, it was almost scary. ", "album_id": "1261073", "photo_flickr_id": "58270829", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46989", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this mask was so lifelike , it was almost scary .", "storylet_id": "234946"}], [{"original_text": "I decided to take the mask and attempt to scare my boyfriend, epic fail. ", "album_id": "1261073", "photo_flickr_id": "58274332", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46989", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i decided to take the mask and attempt to scare my boyfriend , epic fail .", "storylet_id": "234947"}], [{"original_text": "There were some patrons, that decided it was time to dance on the bar. ", "album_id": "1261073", "photo_flickr_id": "58274887", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46989", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were some patrons , that decided it was time to dance on the bar .", "storylet_id": "234948"}], [{"original_text": "The dance was quite raunchy in nature. ", "album_id": "1261073", "photo_flickr_id": "58275247", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "46989", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dance was quite raunchy in nature .", "storylet_id": "234949"}], [{"original_text": "M&Ms came over for a visit.", "album_id": "72057594075705296", "photo_flickr_id": "108349970", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46990", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "m & ms came over for a visit .", "storylet_id": "234950"}], [{"original_text": "I told my sisters Eminem was in the house downstairs.", "album_id": "72057594075705296", "photo_flickr_id": "108348913", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46990", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i told my sisters eminem was in the house downstairs .", "storylet_id": "234951"}], [{"original_text": "They ran down the stairs but he joke was on them.", "album_id": "72057594075705296", "photo_flickr_id": "108350710", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46990", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they ran down the stairs but he joke was on them .", "storylet_id": "234952"}], [{"original_text": "Mom and Dad also ran downstairs to see.", "album_id": "72057594075705296", "photo_flickr_id": "108348592", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46990", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom and dad also ran downstairs to see .", "storylet_id": "234953"}], [{"original_text": "My sister laughed at them and started dancing around because they fell for it too.", "album_id": "72057594075705296", "photo_flickr_id": "108347629", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "46990", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my sister laughed at them and started dancing around because they fell for it too .", "storylet_id": "234954"}], [{"original_text": "We were waiting for the surprise of the night.", "album_id": "72057594075705296", "photo_flickr_id": "108346636", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46991", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were waiting for the surprise of the night .", "storylet_id": "234955"}], [{"original_text": "Everybody is laughing and having fun. ", "album_id": "72057594075705296", "photo_flickr_id": "108347338", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46991", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everybody is laughing and having fun .", "storylet_id": "234956"}], [{"original_text": "The surprise of the night has arrive and starts to dance all night.", "album_id": "72057594075705296", "photo_flickr_id": "108347629", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46991", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the surprise of the night has arrive and starts to dance all night .", "storylet_id": "234957"}], [{"original_text": "The dancer has finished her moves and we take the best picture ever.", "album_id": "72057594075705296", "photo_flickr_id": "108348913", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46991", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dancer has finished her moves and we take the best picture ever .", "storylet_id": "234958"}], [{"original_text": "Of course he fellas enjoyed the show.", "album_id": "72057594075705296", "photo_flickr_id": "108349171", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "46991", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of course he fellas enjoyed the show .", "storylet_id": "234959"}], [{"original_text": "My costume had finally arrived in the mail just in time for the party.", "album_id": "72057594075705296", "photo_flickr_id": "108349970", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46992", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my costume had finally arrived in the mail just in time for the party .", "storylet_id": "234960"}], [{"original_text": "I had a great time showing it to all the people there.", "album_id": "72057594075705296", "photo_flickr_id": "108348913", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46992", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had a great time showing it to all the people there .", "storylet_id": "234961"}], [{"original_text": "After a while I decided to rest in the living room.", "album_id": "72057594075705296", "photo_flickr_id": "108350710", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46992", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after a while i decided to rest in the living room .", "storylet_id": "234962"}], [{"original_text": "I had a great time there.", "album_id": "72057594075705296", "photo_flickr_id": "108348592", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46992", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had a great time there .", "storylet_id": "234963"}], [{"original_text": "Some of the other costumes were very good too.", "album_id": "72057594075705296", "photo_flickr_id": "108347629", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46992", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the other costumes were very good too .", "storylet_id": "234964"}], [{"original_text": "The giant M&M costume was a treat", "album_id": "72057594075705296", "photo_flickr_id": "108349970", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46993", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the giant m & m costume was a treat", "storylet_id": "234965"}], [{"original_text": "and there were many beautiful ladies.", "album_id": "72057594075705296", "photo_flickr_id": "108348913", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46993", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and there were many beautiful ladies .", "storylet_id": "234966"}], [{"original_text": "He had to take a break though", "album_id": "72057594075705296", "photo_flickr_id": "108350710", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46993", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had to take a break though", "storylet_id": "234967"}], [{"original_text": "and others took photos", "album_id": "72057594075705296", "photo_flickr_id": "108348592", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46993", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and others took photos", "storylet_id": "234968"}], [{"original_text": "while the pretty lady danced.", "album_id": "72057594075705296", "photo_flickr_id": "108347629", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46993", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while the pretty lady danced .", "storylet_id": "234969"}], [{"original_text": "Rob showed up to the Halloween party dressed as an orange M&M.", "album_id": "72057594075705296", "photo_flickr_id": "108349970", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "46994", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "rob showed up to the halloween party dressed as an orange m & m .", "storylet_id": "234970"}], [{"original_text": "Kim and Ashley looked so cute in their outfits.", "album_id": "72057594075705296", "photo_flickr_id": "108348913", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "46994", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] and [female] looked so cute in their outfits .", "storylet_id": "234971"}], [{"original_text": "Rob didn't have any luck with the ladies so he sat down to collect his thoughts.", "album_id": "72057594075705296", "photo_flickr_id": "108350710", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "46994", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "rob did n't have any luck with the ladies so he sat down to collect his thoughts .", "storylet_id": "234972"}], [{"original_text": "Joe showed Rob how to pick up a woman.", "album_id": "72057594075705296", "photo_flickr_id": "108348592", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "46994", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] showed rob how to pick up a woman .", "storylet_id": "234973"}], [{"original_text": "Ashley took her belly dancer costume too far when she decided to perform the world's worst dance.", "album_id": "72057594075705296", "photo_flickr_id": "108347629", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "46994", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] took her belly dancer costume too far when she decided to perform the world 's worst dance .", "storylet_id": "234974"}], [{"original_text": "Looks like Halloween reporting has the got the best of me.", "album_id": "72057594106619152", "photo_flickr_id": "128200732", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "46995", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "looks like halloween reporting has the got the best of me .", "storylet_id": "234975"}], [{"original_text": "Do I really look happy?", "album_id": "72057594106619152", "photo_flickr_id": "128200663", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "46995", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "do i really look happy ?", "storylet_id": "234976"}], [{"original_text": "This scare crow would make the corn field cry! ", "album_id": "72057594106619152", "photo_flickr_id": "128205365", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "46995", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this scare crow would make the corn field cry !", "storylet_id": "234977"}], [{"original_text": "I'm in love with the clown.", "album_id": "72057594106619152", "photo_flickr_id": "128205421", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "46995", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'm in love with the clown .", "storylet_id": "234978"}], [{"original_text": "Cool dude, how about a little purple.", "album_id": "72057594106619152", "photo_flickr_id": "128205462", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "46995", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "cool dude , how about a little purple .", "storylet_id": "234979"}], [{"original_text": "Remember when Halloween was scary monsters and stuff? Well evidently no one at Bill and Steph's party did. ", "album_id": "72057594106619152", "photo_flickr_id": "128200714", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "46996", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "remember when halloween was scary monsters and stuff ? well evidently no one at [male] and steph 's party did .", "storylet_id": "234980"}], [{"original_text": "I spent most of the night trying to figure out what Frank was supposed to be. ", "album_id": "72057594106619152", "photo_flickr_id": "128200732", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "46996", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i spent most of the night trying to figure out what [male] was supposed to be .", "storylet_id": "234981"}], [{"original_text": "And Rick as a really politically incorrect Pimp...that was just sad. ", "album_id": "72057594106619152", "photo_flickr_id": "128205391", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "46996", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and [male] as a really politically incorrect pimp ... that was just sad .", "storylet_id": "234982"}], [{"original_text": "Tom had a pretty accurate army costume, because it was his actual BDU. ", "album_id": "72057594106619152", "photo_flickr_id": "128205404", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "46996", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] had a pretty accurate army costume , because it was his actual organization .", "storylet_id": "234983"}], [{"original_text": "Well at least Phil was scary, since I hate clowns. But Linda still doesn't get what dressing up means. ", "album_id": "72057594106619152", "photo_flickr_id": "128205421", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "46996", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "well at least [male] was scary , since i hate clowns . but [female] still does n't get what dressing up means .", "storylet_id": "234984"}], [{"original_text": "When I got to the party everyone was already there.", "album_id": "72057594106619152", "photo_flickr_id": "128200714", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46997", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i got to the party everyone was already there .", "storylet_id": "234985"}], [{"original_text": "There were many different kinds of costumes. One was made out of paper.", "album_id": "72057594106619152", "photo_flickr_id": "128200732", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46997", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many different kinds of costumes . one was made out of paper .", "storylet_id": "234986"}], [{"original_text": "Some were very flashy.", "album_id": "72057594106619152", "photo_flickr_id": "128205391", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46997", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some were very flashy .", "storylet_id": "234987"}], [{"original_text": "Others were wearing their work uniforms.", "album_id": "72057594106619152", "photo_flickr_id": "128205404", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46997", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others were wearing their work uniforms .", "storylet_id": "234988"}], [{"original_text": "Some people forgot and thought it was a birthday party.", "album_id": "72057594106619152", "photo_flickr_id": "128205421", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "46997", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people forgot and thought it was a birthday party .", "storylet_id": "234989"}], [{"original_text": "I hate halloween parties.", "album_id": "72057594106619152", "photo_flickr_id": "128200732", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46998", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i hate halloween parties .", "storylet_id": "234990"}], [{"original_text": "Everyone is dressed up with weird hair.", "album_id": "72057594106619152", "photo_flickr_id": "128200663", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46998", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone is dressed up with weird hair .", "storylet_id": "234991"}], [{"original_text": "Others try to scare you, but they just look stupid.", "album_id": "72057594106619152", "photo_flickr_id": "128205365", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46998", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others try to scare you , but they just look stupid .", "storylet_id": "234992"}], [{"original_text": "The clowns are kinda creepy.", "album_id": "72057594106619152", "photo_flickr_id": "128205421", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46998", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the clowns are kinda creepy .", "storylet_id": "234993"}], [{"original_text": "The most bizarre was my friend trying to be a pimp.", "album_id": "72057594106619152", "photo_flickr_id": "128205462", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "46998", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the most bizarre was my friend trying to be a pimp .", "storylet_id": "234994"}], [{"original_text": "A harvard student wore his exams to the party ", "album_id": "72057594106619152", "photo_flickr_id": "128200732", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46999", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a harvard student wore his exams to the party", "storylet_id": "234995"}], [{"original_text": "with a guy with rainbow hair.", "album_id": "72057594106619152", "photo_flickr_id": "128200663", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46999", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "with a guy with rainbow hair .", "storylet_id": "234996"}], [{"original_text": "Jason also made an appearance", "album_id": "72057594106619152", "photo_flickr_id": "128205365", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46999", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] also made an appearance", "storylet_id": "234997"}], [{"original_text": "to save the girl from the clown.", "album_id": "72057594106619152", "photo_flickr_id": "128205421", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46999", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to save the girl from the clown .", "storylet_id": "234998"}], [{"original_text": "The pimp was the coolest guy of all.", "album_id": "72057594106619152", "photo_flickr_id": "128205462", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "46999", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the pimp was the coolest guy of all .", "storylet_id": "234999"}], [{"original_text": "The kids dress up for the Halloween party. This little tot is a spooky ghost!", "album_id": "72157603657119129", "photo_flickr_id": "2173637875", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47000", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids dress up for the halloween party . this little tot is a spooky ghost !", "storylet_id": "235000"}], [{"original_text": "Some of the costumes are creepy and some are as favorite movie characters such as Darth Vader.", "album_id": "72157603657119129", "photo_flickr_id": "2174426992", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47000", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the costumes are creepy and some are as favorite movie characters such as darth vader .", "storylet_id": "235001"}], [{"original_text": "Too much partying has put this little guy to sleep!", "album_id": "72157603657119129", "photo_flickr_id": "2174429800", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47000", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "too much partying has put this little guy to sleep !", "storylet_id": "235002"}], [{"original_text": "After waking up, it looks like maybe he's ready for some candy!", "album_id": "72157603657119129", "photo_flickr_id": "2174431318", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47000", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after waking up , it looks like maybe he 's ready for some candy !", "storylet_id": "235003"}], [{"original_text": "Halloween is a favorite holiday for the entire family.", "album_id": "72157603657119129", "photo_flickr_id": "2173645089", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47000", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "halloween is a favorite holiday for the entire family .", "storylet_id": "235004"}], [{"original_text": "The annual Community Holloween Night, hosted by the Wicked Witch of the Library was a raging success.", "album_id": "72157603657119129", "photo_flickr_id": "2174424068", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "47001", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the annual community holloween night , hosted by the wicked witch of the library was a raging success .", "storylet_id": "235005"}], [{"original_text": "Whether in costume or not, kids of all ages enjoyed games and activities.", "album_id": "72157603657119129", "photo_flickr_id": "2173637129", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "47001", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "whether in costume or not , kids of all ages enjoyed games and activities .", "storylet_id": "235006"}], [{"original_text": "Ninjas were on hand to provide security.", "album_id": "72157603657119129", "photo_flickr_id": "2174426000", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "47001", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "ninjas were on hand to provide security .", "storylet_id": "235007"}], [{"original_text": "Even the most devilish of the revelers had a rousing good time.", "album_id": "72157603657119129", "photo_flickr_id": "2174426992", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "47001", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the most devilish of the revelers had a rousing good time .", "storylet_id": "235008"}], [{"original_text": "Everyone had such a good time, sleep came all too easy!", "album_id": "72157603657119129", "photo_flickr_id": "2174429800", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "47001", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had such a good time , sleep came all too easy !", "storylet_id": "235009"}], [{"original_text": "Today is Halloween.", "album_id": "72157603657119129", "photo_flickr_id": "2173637875", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47002", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is halloween .", "storylet_id": "235010"}], [{"original_text": "The friends and family all dressed up to celebrate the day.", "album_id": "72157603657119129", "photo_flickr_id": "2174426992", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47002", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the friends and family all dressed up to celebrate the day .", "storylet_id": "235011"}], [{"original_text": "Even the baby dressed up.", "album_id": "72157603657119129", "photo_flickr_id": "2174429800", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47002", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the baby dressed up .", "storylet_id": "235012"}], [{"original_text": "I don't really think the baby knew what was going on, though.", "album_id": "72157603657119129", "photo_flickr_id": "2174431318", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47002", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i do n't really think the baby knew what was going on , though .", "storylet_id": "235013"}], [{"original_text": "It was a nice memorable Halloween for the family.", "album_id": "72157603657119129", "photo_flickr_id": "2173645089", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47002", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a nice memorable halloween for the family .", "storylet_id": "235014"}], [{"original_text": "The baby was dressed as a spirit for Halloween ", "album_id": "72157603657119129", "photo_flickr_id": "2173637875", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "47003", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the baby was dressed as a spirit for halloween", "storylet_id": "235015"}], [{"original_text": "The other kids were also dressed as vampires.", "album_id": "72157603657119129", "photo_flickr_id": "2174426992", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "47003", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the other kids were also dressed as vampires .", "storylet_id": "235016"}], [{"original_text": "But the little one was so warn out she went to sleep right in the middle of the event ", "album_id": "72157603657119129", "photo_flickr_id": "2174429800", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "47003", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but the little one was so warn out she went to sleep right in the middle of the event", "storylet_id": "235017"}], [{"original_text": "Mom woke him up, when they had to go. He was still exhausted ", "album_id": "72157603657119129", "photo_flickr_id": "2174431318", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "47003", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom woke him up , when they had to go . he was still exhausted", "storylet_id": "235018"}], [{"original_text": "They took pictures of the whole family before going home. ", "album_id": "72157603657119129", "photo_flickr_id": "2173645089", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "47003", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they took pictures of the whole family before going home .", "storylet_id": "235019"}], [{"original_text": "For halloween this year we took the family to the local community center event.", "album_id": "72157603657119129", "photo_flickr_id": "2174424068", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "47004", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for halloween this year we took the family to the local community center event .", "storylet_id": "235020"}], [{"original_text": "There were games set up for the kids to play.", "album_id": "72157603657119129", "photo_flickr_id": "2173637129", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "47004", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were games set up for the kids to play .", "storylet_id": "235021"}], [{"original_text": "Everyone was dressed up in their costumes.", "album_id": "72157603657119129", "photo_flickr_id": "2174426000", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "47004", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was dressed up in their costumes .", "storylet_id": "235022"}], [{"original_text": "It was great seeing everyone looking so festive.", "album_id": "72157603657119129", "photo_flickr_id": "2174426992", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "47004", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was great seeing everyone looking so festive .", "storylet_id": "235023"}], [{"original_text": "The baby didn't make it long before he was tuckered out and ready to sleep.", "album_id": "72157603657119129", "photo_flickr_id": "2174429800", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "47004", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the baby did n't make it long before he was tuckered out and ready to sleep .", "storylet_id": "235024"}], [{"original_text": "The toy store was full of goodies.", "album_id": "72157647537163181", "photo_flickr_id": "15224320475", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47005", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the toy store was full of goodies .", "storylet_id": "235025"}], [{"original_text": "They waited in line to purchase keepsakes.", "album_id": "72157647537163181", "photo_flickr_id": "15037747857", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47005", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they waited in line to purchase keepsakes .", "storylet_id": "235026"}], [{"original_text": "Rows and rows of stuffed animals filled the shelves.", "album_id": "72157647537163181", "photo_flickr_id": "15037730038", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47005", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "rows and rows of stuffed animals filled the shelves .", "storylet_id": "235027"}], [{"original_text": "A pair was bought by one of the girls.", "album_id": "72157647537163181", "photo_flickr_id": "15224317925", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47005", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a pair was bought by one of the girls .", "storylet_id": "235028"}], [{"original_text": "Workers dressed in costumes greeted shoppers.", "album_id": "72157647537163181", "photo_flickr_id": "15224316155", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47005", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "workers dressed in costumes greeted shoppers .", "storylet_id": "235029"}], [{"original_text": "The Daimaru bus told us we were in the right place.", "album_id": "72157647537163181", "photo_flickr_id": "15221234241", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "47006", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization bus told us we were in the right place .", "storylet_id": "235030"}], [{"original_text": "A whole store of Pokemon stuff, cards, games toys...", "album_id": "72157647537163181", "photo_flickr_id": "15037747857", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "47006", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a whole store of pokemon stuff , cards , games toys ...", "storylet_id": "235031"}], [{"original_text": "Lots and lots of plush toys. ", "album_id": "72157647537163181", "photo_flickr_id": "15037746997", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "47006", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lots and lots of plush toys .", "storylet_id": "235032"}], [{"original_text": "Me and my friends had such a good time.", "album_id": "72157647537163181", "photo_flickr_id": "15223945162", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "47006", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "me and my friends had such a good time .", "storylet_id": "235033"}], [{"original_text": "There were plenty of costumed characters and cosplay. ", "album_id": "72157647537163181", "photo_flickr_id": "15037628670", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "47006", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were plenty of costumed characters and cosplay .", "storylet_id": "235034"}], [{"original_text": "We were first transported to Pokemon Center in a windowless van. ", "album_id": "72157647537163181", "photo_flickr_id": "15221234241", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47007", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were first transported to organization organization in a windowless van .", "storylet_id": "235035"}], [{"original_text": "But when we arrived at the center, we were so overwhelmed we couldn't decide where to look first.", "album_id": "72157647537163181", "photo_flickr_id": "15037747857", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47007", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but when we arrived at the center , we were so overwhelmed we could n't decide where to look first .", "storylet_id": "235036"}], [{"original_text": "The shelves were crammed with wall-to-wall cuteness. Look at these plushies. ", "album_id": "72157647537163181", "photo_flickr_id": "15037746997", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47007", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the shelves were crammed with wall-to-wall cuteness . look at these plushies .", "storylet_id": "235037"}], [{"original_text": "Of course, we wanted to capture ourselves at this moment - we were in ecstasy! ", "album_id": "72157647537163181", "photo_flickr_id": "15223945162", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47007", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course , we wanted to capture ourselves at this moment - we were in ecstasy !", "storylet_id": "235038"}], [{"original_text": "There were some promos for Pokemon saga going on at the time, so visiting the booth was a great way to wrap up the experience.", "album_id": "72157647537163181", "photo_flickr_id": "15037628670", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47007", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were some promos for pokemon saga going on at the time , so visiting the booth was a great way to wrap up the experience .", "storylet_id": "235039"}], [{"original_text": "My friends and I were on a trip in another country.", "album_id": "72157647537163181", "photo_flickr_id": "15221234241", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47008", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i were on a trip in another country .", "storylet_id": "235040"}], [{"original_text": "We found a Pokemon shop and knew we had to go inside. ", "album_id": "72157647537163181", "photo_flickr_id": "15037747857", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47008", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we found a pokemon shop and knew we had to go inside .", "storylet_id": "235041"}], [{"original_text": "They had plush toys of my favorite characters.", "album_id": "72157647537163181", "photo_flickr_id": "15037746997", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47008", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had plush toys of my favorite characters .", "storylet_id": "235042"}], [{"original_text": "We all enjoyed our time on the trip.", "album_id": "72157647537163181", "photo_flickr_id": "15223945162", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47008", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all enjoyed our time on the trip .", "storylet_id": "235043"}], [{"original_text": "It was very unique and the culture was vibrant. It was a good day.", "album_id": "72157647537163181", "photo_flickr_id": "15037628670", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47008", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was very unique and the culture was vibrant . it was a good day .", "storylet_id": "235044"}], [{"original_text": "Pokemon! A Pokemon store!", "album_id": "72157647537163181", "photo_flickr_id": "15224320475", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "47009", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "pokemon ! a pokemon store !", "storylet_id": "235045"}], [{"original_text": "There is so much merchandise to see.", "album_id": "72157647537163181", "photo_flickr_id": "15037747857", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "47009", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is so much merchandise to see .", "storylet_id": "235046"}], [{"original_text": "Look at all these different Pokemon plush toys.", "album_id": "72157647537163181", "photo_flickr_id": "15037730038", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "47009", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at all these different pokemon plush toys .", "storylet_id": "235047"}], [{"original_text": "These are just a couple that I bought.", "album_id": "72157647537163181", "photo_flickr_id": "15224317925", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "47009", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these are just a couple that i bought .", "storylet_id": "235048"}], [{"original_text": "They even had Pokemon characters roaming the store.", "album_id": "72157647537163181", "photo_flickr_id": "15224316155", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "47009", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even had pokemon characters roaming the store .", "storylet_id": "235049"}], [{"original_text": "The Tour de Asia is the most popular sporting event in the world. Crowds flock to the streets to wave at the riders.", "album_id": "72157648675934897", "photo_flickr_id": "15505467568", "setting": "first-2-pick-and-tell", "worker_id": "MWBSJ0BTPQ4SRAL", "story_id": "47010", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tour de location is the most popular sporting event in the world . crowds flock to the streets to wave at the riders .", "storylet_id": "235050"}], [{"original_text": "These folks have wisely stepped back to allow the super fast bikers to pedal their way across the finish line.", "album_id": "72157648675934897", "photo_flickr_id": "15505656917", "setting": "first-2-pick-and-tell", "worker_id": "MWBSJ0BTPQ4SRAL", "story_id": "47010", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these folks have wisely stepped back to allow the super fast bikers to pedal their way across the finish line .", "storylet_id": "235051"}], [{"original_text": "Suki, Precious, and Millie salute their favorite rider, Speed Racer. Here he comes now!", "album_id": "72157648675934897", "photo_flickr_id": "15071493643", "setting": "first-2-pick-and-tell", "worker_id": "MWBSJ0BTPQ4SRAL", "story_id": "47010", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "suki , [female] , and [female] salute their favorite rider , speed racer . here he comes now !", "storylet_id": "235052"}], [{"original_text": "Whew, Speed. Now you can park that bike and receive the honors you have earned.", "album_id": "72157648675934897", "photo_flickr_id": "15071500003", "setting": "first-2-pick-and-tell", "worker_id": "MWBSJ0BTPQ4SRAL", "story_id": "47010", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "whew , speed . now you can park that bike and receive the honors you have earned .", "storylet_id": "235053"}], [{"original_text": "Winner of the Precious Poster Collection and Khaki pants...Speed Racer! What a man.", "album_id": "72157648675934897", "photo_flickr_id": "15688937311", "setting": "first-2-pick-and-tell", "worker_id": "MWBSJ0BTPQ4SRAL", "story_id": "47010", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "winner of the [female] poster collection and khaki pants ... speed racer ! what a man .", "storylet_id": "235054"}], [{"original_text": "I rode my bicycle to comic con.", "album_id": "72157648675934897", "photo_flickr_id": "15071500003", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47011", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i rode my bicycle to comic con .", "storylet_id": "235055"}], [{"original_text": "The crowd was heavy.", "album_id": "72157648675934897", "photo_flickr_id": "15505467568", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47011", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd was heavy .", "storylet_id": "235056"}], [{"original_text": "I saw a few characters walking through the crowd too.", "album_id": "72157648675934897", "photo_flickr_id": "15505657287", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47011", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i saw a few characters walking through the crowd too .", "storylet_id": "235057"}], [{"original_text": "I followed them to their display area.", "album_id": "72157648675934897", "photo_flickr_id": "15688935211", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47011", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i followed them to their display area .", "storylet_id": "235058"}], [{"original_text": "We stayed there until the sun started going down.", "album_id": "72157648675934897", "photo_flickr_id": "15690854395", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47011", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we stayed there until the sun started going down .", "storylet_id": "235059"}], [{"original_text": "The streets were filled during the festival.", "album_id": "72157648675934897", "photo_flickr_id": "15505467568", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47012", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the streets were filled during the festival .", "storylet_id": "235060"}], [{"original_text": "Some came dressed in huge cartoon outfits.", "album_id": "72157648675934897", "photo_flickr_id": "15505656917", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47012", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some came dressed in huge cartoon outfits .", "storylet_id": "235061"}], [{"original_text": "They were fun to dance and take pictures with.", "album_id": "72157648675934897", "photo_flickr_id": "15071493643", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47012", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were fun to dance and take pictures with .", "storylet_id": "235062"}], [{"original_text": "We got around using rent-able bikes. ", "album_id": "72157648675934897", "photo_flickr_id": "15071500003", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47012", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got around using rent-able bikes .", "storylet_id": "235063"}], [{"original_text": "It was a memorable day.", "album_id": "72157648675934897", "photo_flickr_id": "15688937311", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47012", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a memorable day .", "storylet_id": "235064"}], [{"original_text": "There were lots of people out at the event.", "album_id": "72157648675934897", "photo_flickr_id": "15505467568", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47013", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were lots of people out at the event .", "storylet_id": "235065"}], [{"original_text": "The characters were all on the stage.", "album_id": "72157648675934897", "photo_flickr_id": "15505656917", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47013", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the characters were all on the stage .", "storylet_id": "235066"}], [{"original_text": "These were my favorite three characters.", "album_id": "72157648675934897", "photo_flickr_id": "15071493643", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47013", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these were my favorite three characters .", "storylet_id": "235067"}], [{"original_text": "People even biked to get to the event.", "album_id": "72157648675934897", "photo_flickr_id": "15071500003", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47013", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people even biked to get to the event .", "storylet_id": "235068"}], [{"original_text": "Here is a picture of the boy with some characters.", "album_id": "72157648675934897", "photo_flickr_id": "15688937311", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47013", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is a picture of the boy with some characters .", "storylet_id": "235069"}], [{"original_text": "People rode their bikes to the festival.", "album_id": "72157648675934897", "photo_flickr_id": "15071500003", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47014", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people rode their bikes to the festival .", "storylet_id": "235070"}], [{"original_text": "It was very crowded.", "album_id": "72157648675934897", "photo_flickr_id": "15505467568", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47014", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was very crowded .", "storylet_id": "235071"}], [{"original_text": "There were characters and people in costumes.", "album_id": "72157648675934897", "photo_flickr_id": "15505657287", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47014", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were characters and people in costumes .", "storylet_id": "235072"}], [{"original_text": "They posed for the fans.", "album_id": "72157648675934897", "photo_flickr_id": "15688935211", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47014", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they posed for the fans .", "storylet_id": "235073"}], [{"original_text": "The festival continued into the evening.", "album_id": "72157648675934897", "photo_flickr_id": "15690854395", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47014", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the festival continued into the evening .", "storylet_id": "235074"}], [{"original_text": "The Wildcats homecoming game recognized breast cancer awareness.", "album_id": "72157624955008717", "photo_flickr_id": "5044778554", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "47015", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization homecoming game recognized breast cancer awareness .", "storylet_id": "235075"}], [{"original_text": "The homecoming queen and her court were excited for the game.", "album_id": "72157624955008717", "photo_flickr_id": "5044155285", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "47015", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the homecoming queen and her court were excited for the game .", "storylet_id": "235076"}], [{"original_text": "The whole homecoming court stops for a picture.", "album_id": "72157624955008717", "photo_flickr_id": "5044777752", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "47015", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the whole homecoming court stops for a picture .", "storylet_id": "235077"}], [{"original_text": "It's almost game time, but there is time for one more shot with the adorable court pages.", "album_id": "72157624955008717", "photo_flickr_id": "5044157931", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "47015", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's almost game time , but there is time for one more shot with the adorable court pages .", "storylet_id": "235078"}], [{"original_text": "The pages pose with the Wildcat mascot, dreaming of their high school futures.", "album_id": "72157624955008717", "photo_flickr_id": "5044155581", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "47015", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the pages pose with the wildcat mascot , dreaming of their high school futures .", "storylet_id": "235079"}], [{"original_text": "The homecoming dance was last night.", "album_id": "72157624955008717", "photo_flickr_id": "5044155285", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "47016", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the homecoming dance was last night .", "storylet_id": "235080"}], [{"original_text": "So many of the high school students showed up early for pictures.", "album_id": "72157624955008717", "photo_flickr_id": "5044777752", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "47016", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so many of the high school students showed up early for pictures .", "storylet_id": "235081"}], [{"original_text": "Many of the couples were all friends.", "album_id": "72157624955008717", "photo_flickr_id": "5044157931", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "47016", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many of the couples were all friends .", "storylet_id": "235082"}], [{"original_text": "The kids were so happy to be there.", "album_id": "72157624955008717", "photo_flickr_id": "5044779340", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "47016", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids were so happy to be there .", "storylet_id": "235083"}], [{"original_text": "Even some of the younger siblings were there! It was so cute.", "album_id": "72157624955008717", "photo_flickr_id": "5044154621", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "47016", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even some of the younger siblings were there ! it was so cute .", "storylet_id": "235084"}], [{"original_text": "The cheerleaders were celebrating the big game.", "album_id": "72157624955008717", "photo_flickr_id": "5044778554", "setting": "last-3-pick-old-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47017", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cheerleaders were celebrating the big game .", "storylet_id": "235085"}], [{"original_text": "The girls were all dressed in their prom dresses.", "album_id": "72157624955008717", "photo_flickr_id": "5044155285", "setting": "last-3-pick-old-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47017", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girls were all dressed in their prom dresses .", "storylet_id": "235086"}], [{"original_text": "They took a picture with the football team.", "album_id": "72157624955008717", "photo_flickr_id": "5044777752", "setting": "last-3-pick-old-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47017", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they took a picture with the football team .", "storylet_id": "235087"}], [{"original_text": "A lot of there families joined in the picture.", "album_id": "72157624955008717", "photo_flickr_id": "5044157931", "setting": "last-3-pick-old-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47017", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a lot of there families joined in the picture .", "storylet_id": "235088"}], [{"original_text": "The kids were a little scared of the mascot.", "album_id": "72157624955008717", "photo_flickr_id": "5044155581", "setting": "last-3-pick-old-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47017", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids were a little scared of the mascot .", "storylet_id": "235089"}], [{"original_text": "This was sure to be an exciting homecoming game. ", "album_id": "72157624955008717", "photo_flickr_id": "5044778554", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47018", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was sure to be an exciting homecoming game .", "storylet_id": "235090"}], [{"original_text": "There were five contestants for homecoming queen. ", "album_id": "72157624955008717", "photo_flickr_id": "5044155285", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47018", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were five contestants for homecoming queen .", "storylet_id": "235091"}], [{"original_text": "The homecoming king and queen contestants really look nice. It's going to be a hard decision. ", "album_id": "72157624955008717", "photo_flickr_id": "5044777752", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47018", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the homecoming king and queen contestants really look nice . it 's going to be a hard decision .", "storylet_id": "235092"}], [{"original_text": "Here is all of the royalty together. ", "album_id": "72157624955008717", "photo_flickr_id": "5044157931", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47018", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is all of the royalty together .", "storylet_id": "235093"}], [{"original_text": "The flower girl and crown bearer look so cute with our mascot. ", "album_id": "72157624955008717", "photo_flickr_id": "5044155581", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47018", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the flower girl and crown bearer look so cute with our mascot .", "storylet_id": "235094"}], [{"original_text": "Starting the football season off right with our homecoming game. ", "album_id": "72157624955008717", "photo_flickr_id": "5044778554", "setting": "last-3-pick-old-and-tell", "worker_id": "6I9ORX952LIABY1", "story_id": "47019", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "starting the football season off right with our homecoming game .", "storylet_id": "235095"}], [{"original_text": "The homecoming queen and her ladies looked stunning.", "album_id": "72157624955008717", "photo_flickr_id": "5044155285", "setting": "last-3-pick-old-and-tell", "worker_id": "6I9ORX952LIABY1", "story_id": "47019", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the homecoming queen and her ladies looked stunning .", "storylet_id": "235096"}], [{"original_text": "Our wonderful football team, don't they look great next to the homecoming court?", "album_id": "72157624955008717", "photo_flickr_id": "5044777752", "setting": "last-3-pick-old-and-tell", "worker_id": "6I9ORX952LIABY1", "story_id": "47019", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our wonderful football team , do n't they look great next to the homecoming court ?", "storylet_id": "235097"}], [{"original_text": "All lined up and enjoying their moment in the spotlight.", "album_id": "72157624955008717", "photo_flickr_id": "5044157931", "setting": "last-3-pick-old-and-tell", "worker_id": "6I9ORX952LIABY1", "story_id": "47019", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all lined up and enjoying their moment in the spotlight .", "storylet_id": "235098"}], [{"original_text": "The little ones posing with our team mascot. They'll be on the field one day soon!", "album_id": "72157624955008717", "photo_flickr_id": "5044155581", "setting": "last-3-pick-old-and-tell", "worker_id": "6I9ORX952LIABY1", "story_id": "47019", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the little ones posing with our team mascot . they 'll be on the field one day soon !", "storylet_id": "235099"}], [{"original_text": "There are family reunions, and then there are family reunions where the people are actually happy to see each other.", "album_id": "72157626529005069", "photo_flickr_id": "5690117559", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "47020", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are family reunions , and then there are family reunions where the people are actually happy to see each other .", "storylet_id": "235100"}], [{"original_text": "Many of the Bernard family catch up with their cousins they haven't seen in a long time.", "album_id": "72157626529005069", "photo_flickr_id": "5690117677", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "47020", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of the [male] family catch up with their cousins they have n't seen in a long time .", "storylet_id": "235101"}], [{"original_text": "Embarrassing siblings tell the tales of their travels and somehow seems less embarrassing than inspiring.", "album_id": "72157626529005069", "photo_flickr_id": "5690117707", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "47020", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "embarrassing siblings tell the tales of their travels and somehow seems less embarrassing than inspiring .", "storylet_id": "235102"}], [{"original_text": "Some things never change though, and it's not long before the croquet mallets come out.", "album_id": "72157626529005069", "photo_flickr_id": "5690117801", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "47020", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some things never change though , and it 's not long before the croquet mallets come out .", "storylet_id": "235103"}], [{"original_text": "It turns out some have been practicing over the last few years!", "album_id": "72157626529005069", "photo_flickr_id": "5690117903", "setting": "first-2-pick-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "47020", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it turns out some have been practicing over the last few years !", "storylet_id": "235104"}], [{"original_text": "Clark's job has decided to have a croquet picnic with new investors.", "album_id": "72157626529005069", "photo_flickr_id": "5690117559", "setting": "first-2-pick-and-tell", "worker_id": "ENDOM45YWF9I7BU", "story_id": "47021", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] 's job has decided to have a croquet picnic with new investors .", "storylet_id": "235105"}], [{"original_text": "Donna, one of the members of the new investment company, takes her son Tyler to meet Ashley and James, and their new baby.", "album_id": "72157626529005069", "photo_flickr_id": "5690117677", "setting": "first-2-pick-and-tell", "worker_id": "ENDOM45YWF9I7BU", "story_id": "47021", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] , one of the members of the new investment company , takes her son [male] to meet [female] and [male] , and their new baby .", "storylet_id": "235106"}], [{"original_text": "Clark has his turn in the croquet tournament. He concentrates on his shot.", "album_id": "72157626529005069", "photo_flickr_id": "5690693648", "setting": "first-2-pick-and-tell", "worker_id": "ENDOM45YWF9I7BU", "story_id": "47021", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] has his turn in the croquet tournament . he concentrates on his shot .", "storylet_id": "235107"}], [{"original_text": "Carter, a member of one of the opposing teams, takes his turn on the croquet match.", "album_id": "72157626529005069", "photo_flickr_id": "5690117903", "setting": "first-2-pick-and-tell", "worker_id": "ENDOM45YWF9I7BU", "story_id": "47021", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] , a member of one of the opposing teams , takes his turn on the croquet match .", "storylet_id": "235108"}], [{"original_text": "The concentration paid off, Clark and his team won the tournament!", "album_id": "72157626529005069", "photo_flickr_id": "5690117801", "setting": "first-2-pick-and-tell", "worker_id": "ENDOM45YWF9I7BU", "story_id": "47021", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the concentration paid off , [male] and his team won the tournament !", "storylet_id": "235109"}], [{"original_text": "There is a party going on under this tent.", "album_id": "72157626529005069", "photo_flickr_id": "5690117559", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47022", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is a party going on under this tent .", "storylet_id": "235110"}], [{"original_text": "Food and drinks are being offered to the people.", "album_id": "72157626529005069", "photo_flickr_id": "5690117677", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47022", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "food and drinks are being offered to the people .", "storylet_id": "235111"}], [{"original_text": "Games of cricket are getting ready to be played.", "album_id": "72157626529005069", "photo_flickr_id": "5690693648", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47022", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "games of cricket are getting ready to be played .", "storylet_id": "235112"}], [{"original_text": "A man with shades on is up to hit as we speak.", "album_id": "72157626529005069", "photo_flickr_id": "5690117903", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47022", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a man with shades on is up to hit as we speak .", "storylet_id": "235113"}], [{"original_text": "Everyone is patiently waiting their turn.", "album_id": "72157626529005069", "photo_flickr_id": "5690117801", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47022", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone is patiently waiting their turn .", "storylet_id": "235114"}], [{"original_text": "Several people showed up for the lawn game party. ", "album_id": "72157626529005069", "photo_flickr_id": "5690117559", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47023", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "several people showed up for the lawn game party .", "storylet_id": "235115"}], [{"original_text": "Everyone is chatting awhile before the lawn games start. ", "album_id": "72157626529005069", "photo_flickr_id": "5690117677", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47023", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone is chatting awhile before the lawn games start .", "storylet_id": "235116"}], [{"original_text": "I guess we will be first up. ", "album_id": "72157626529005069", "photo_flickr_id": "5690117707", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47023", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i guess we will be first up .", "storylet_id": "235117"}], [{"original_text": "Here we are all set to start. ", "album_id": "72157626529005069", "photo_flickr_id": "5690117801", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47023", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here we are all set to start .", "storylet_id": "235118"}], [{"original_text": "Let the games begin!", "album_id": "72157626529005069", "photo_flickr_id": "5690117903", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47023", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "let the games begin !", "storylet_id": "235119"}], [{"original_text": "We arrived late at the party and it wasn't by accident.", "album_id": "72157626529005069", "photo_flickr_id": "5690117559", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47024", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived late at the party and it was n't by accident .", "storylet_id": "235120"}], [{"original_text": "I wasn't looking forward to another boring gathering.", "album_id": "72157626529005069", "photo_flickr_id": "5690117677", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47024", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was n't looking forward to another boring gathering .", "storylet_id": "235121"}], [{"original_text": "But a croquet game started and it was really fun.", "album_id": "72157626529005069", "photo_flickr_id": "5690693648", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47024", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but a croquet game started and it was really fun .", "storylet_id": "235122"}], [{"original_text": "I hadn't played since I was a kid but I did pretty well.", "album_id": "72157626529005069", "photo_flickr_id": "5690117903", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47024", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had n't played since i was a kid but i did pretty well .", "storylet_id": "235123"}], [{"original_text": "I'll happily attend more family functions if games are played.", "album_id": "72157626529005069", "photo_flickr_id": "5690117801", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47024", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'll happily attend more family functions if games are played .", "storylet_id": "235124"}], [{"original_text": "Community run by the community center to start.It was a great turn out and amazing to see so many people participate.I don't know how they do it.I'd literally die running a mile.", "album_id": "72157625879475637", "photo_flickr_id": "5427985963", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "47025", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "community run by the community center to start.it was a great turn out and amazing to see so many people participate.i do n't know how they do it.i 'd literally die running a mile .", "storylet_id": "235125"}], [{"original_text": "Men and women from all walks of life, large and small.", "album_id": "72157625879475637", "photo_flickr_id": "5427987055", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "47025", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "men and women from all walks of life , large and small .", "storylet_id": "235126"}], [{"original_text": "One mile marker..wow look at that stride.", "album_id": "72157625879475637", "photo_flickr_id": "5428589150", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "47025", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one mile marker..wow look at that stride .", "storylet_id": "235127"}], [{"original_text": "I'm not sure of the actual distance run or who was first through the finish line.But the picture I took was at 35:32.Running that long is a work out I think.", "album_id": "72157625879475637", "photo_flickr_id": "5427992807", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "47025", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'm not sure of the actual distance run or who was first through the finish line.but the picture i took was at 35:32.running that long is a work out i think .", "storylet_id": "235128"}], [{"original_text": "Many people coming in still after 35 minutes of running.they all gave it a good try and did really well.", "album_id": "72157625879475637", "photo_flickr_id": "5427993015", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "47025", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many people coming in still after 35 minutes of running.they all gave it a good try and did really well .", "storylet_id": "235129"}], [{"original_text": "we had a 5k race for charity", "album_id": "72157625879475637", "photo_flickr_id": "5427985963", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47026", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a 5k race for charity", "storylet_id": "235130"}], [{"original_text": "lots of kids took interest and it was a success", "album_id": "72157625879475637", "photo_flickr_id": "5428587892", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47026", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of kids took interest and it was a success", "storylet_id": "235131"}], [{"original_text": "at the first mile people started to get tired ", "album_id": "72157625879475637", "photo_flickr_id": "5428589150", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47026", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the first mile people started to get tired", "storylet_id": "235132"}], [{"original_text": "some girls kept going ", "album_id": "72157625879475637", "photo_flickr_id": "5428592834", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47026", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some girls kept going", "storylet_id": "235133"}], [{"original_text": "they made it to the end ", "album_id": "72157625879475637", "photo_flickr_id": "5427993015", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47026", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they made it to the end", "storylet_id": "235134"}], [{"original_text": "We're getting ready to start the big race! My wife and I run this race yearly for charity. ", "album_id": "72157625879475637", "photo_flickr_id": "5427985963", "setting": "last-3-pick-old-and-tell", "worker_id": "9UVA1ZB3OFDJX8B", "story_id": "47027", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 're getting ready to start the big race ! my wife and i run this race yearly for charity .", "storylet_id": "235135"}], [{"original_text": "Off we go!", "album_id": "72157625879475637", "photo_flickr_id": "5428587892", "setting": "last-3-pick-old-and-tell", "worker_id": "9UVA1ZB3OFDJX8B", "story_id": "47027", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "off we go !", "storylet_id": "235136"}], [{"original_text": "This is the one mile marker.....not much more to go!", "album_id": "72157625879475637", "photo_flickr_id": "5428589150", "setting": "last-3-pick-old-and-tell", "worker_id": "9UVA1ZB3OFDJX8B", "story_id": "47027", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the one mile marker ... ..not much more to go !", "storylet_id": "235137"}], [{"original_text": "There's my wife tied for the lead!", "album_id": "72157625879475637", "photo_flickr_id": "5428592834", "setting": "last-3-pick-old-and-tell", "worker_id": "9UVA1ZB3OFDJX8B", "story_id": "47027", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there 's my wife tied for the lead !", "storylet_id": "235138"}], [{"original_text": "My wife finished 2nd! Congrats Debbie!", "album_id": "72157625879475637", "photo_flickr_id": "5427993015", "setting": "last-3-pick-old-and-tell", "worker_id": "9UVA1ZB3OFDJX8B", "story_id": "47027", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my wife finished 2nd ! congrats [female] !", "storylet_id": "235139"}], [{"original_text": "Steve signed up for the local marathon.", "album_id": "72157625879475637", "photo_flickr_id": "5427985963", "setting": "last-3-pick-old-and-tell", "worker_id": "N82YU8TZ4RL1U0K", "story_id": "47028", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] signed up for the local marathon .", "storylet_id": "235140"}], [{"original_text": "He had a great start and was leading the crowd.", "album_id": "72157625879475637", "photo_flickr_id": "5428587892", "setting": "last-3-pick-old-and-tell", "worker_id": "N82YU8TZ4RL1U0K", "story_id": "47028", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he had a great start and was leading the crowd .", "storylet_id": "235141"}], [{"original_text": "By the time he reached the one mile mark he noticed no competition.", "album_id": "72157625879475637", "photo_flickr_id": "5428589150", "setting": "last-3-pick-old-and-tell", "worker_id": "N82YU8TZ4RL1U0K", "story_id": "47028", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "by the time he reached the one mile mark he noticed no competition .", "storylet_id": "235142"}], [{"original_text": "In fact most of the runners were struggling far behind.", "album_id": "72157625879475637", "photo_flickr_id": "5428592834", "setting": "last-3-pick-old-and-tell", "worker_id": "N82YU8TZ4RL1U0K", "story_id": "47028", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in fact most of the runners were struggling far behind .", "storylet_id": "235143"}], [{"original_text": "It took them 35 minutes to even reach the one mile mark.", "album_id": "72157625879475637", "photo_flickr_id": "5427993015", "setting": "last-3-pick-old-and-tell", "worker_id": "N82YU8TZ4RL1U0K", "story_id": "47028", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it took them 35 minutes to even reach the one mile mark .", "storylet_id": "235144"}], [{"original_text": "Everyone lines up before the race starts.", "album_id": "72157625879475637", "photo_flickr_id": "5427985963", "setting": "last-3-pick-old-and-tell", "worker_id": "25M1QTIWOFX1K5X", "story_id": "47029", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone lines up before the race starts .", "storylet_id": "235145"}], [{"original_text": "The gun goes off and everyone starts running.", "album_id": "72157625879475637", "photo_flickr_id": "5427987055", "setting": "last-3-pick-old-and-tell", "worker_id": "25M1QTIWOFX1K5X", "story_id": "47029", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the gun goes off and everyone starts running .", "storylet_id": "235146"}], [{"original_text": "At the one mile mark we have lost half of the runners.", "album_id": "72157625879475637", "photo_flickr_id": "5428589150", "setting": "last-3-pick-old-and-tell", "worker_id": "25M1QTIWOFX1K5X", "story_id": "47029", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the one mile mark we have lost half of the runners .", "storylet_id": "235147"}], [{"original_text": "At the end of the race people started showing up.", "album_id": "72157625879475637", "photo_flickr_id": "5427992807", "setting": "last-3-pick-old-and-tell", "worker_id": "25M1QTIWOFX1K5X", "story_id": "47029", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the end of the race people started showing up .", "storylet_id": "235148"}], [{"original_text": "One after another, people made some good time!", "album_id": "72157625879475637", "photo_flickr_id": "5427993015", "setting": "last-3-pick-old-and-tell", "worker_id": "25M1QTIWOFX1K5X", "story_id": "47029", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one after another , people made some good time !", "storylet_id": "235149"}], [{"original_text": "there was many things of diplay", "album_id": "72157626713239724", "photo_flickr_id": "5705008408", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47030", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was many things of diplay", "storylet_id": "235150"}], [{"original_text": "from shirts to signed memorabilia ", "album_id": "72157626713239724", "photo_flickr_id": "5705009668", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47030", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from shirts to signed memorabilia", "storylet_id": "235151"}], [{"original_text": "a lot of different and interesting documents", "album_id": "72157626713239724", "photo_flickr_id": "5705011236", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47030", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lot of different and interesting documents", "storylet_id": "235152"}], [{"original_text": "this museum showed off many great treasures", "album_id": "72157626713239724", "photo_flickr_id": "5704448107", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47030", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this museum showed off many great treasures", "storylet_id": "235153"}], [{"original_text": "it would be an honor to see these masterpieces ", "album_id": "72157626713239724", "photo_flickr_id": "5713707815", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47030", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it would be an honor to see these masterpieces", "storylet_id": "235154"}], [{"original_text": "There were a lot of cool things at the museum.", "album_id": "72157626713239724", "photo_flickr_id": "5705008408", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47031", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of cool things at the museum .", "storylet_id": "235155"}], [{"original_text": "The had so many different pieces of paper.", "album_id": "72157626713239724", "photo_flickr_id": "5704441793", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47031", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the had so many different pieces of paper .", "storylet_id": "235156"}], [{"original_text": "Some of them were diplomas.", "album_id": "72157626713239724", "photo_flickr_id": "5705008976", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47031", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them were diplomas .", "storylet_id": "235157"}], [{"original_text": "I saw some rare shirts.", "album_id": "72157626713239724", "photo_flickr_id": "5704445021", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47031", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i saw some rare shirts .", "storylet_id": "235158"}], [{"original_text": "It was a lot of fun.", "album_id": "72157626713239724", "photo_flickr_id": "5705012280", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47031", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a lot of fun .", "storylet_id": "235159"}], [{"original_text": "Some historic items are displayed at the university exhibit.", "album_id": "72157626713239724", "photo_flickr_id": "5705008408", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "47032", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some historic items are displayed at the university exhibit .", "storylet_id": "235160"}], [{"original_text": "Rosie the Riveter is a famous symbol of women's contribution to war.", "album_id": "72157626713239724", "photo_flickr_id": "5705009668", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "47032", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] the riveter is a famous symbol of women 's contribution to war .", "storylet_id": "235161"}], [{"original_text": "The exhibit includes newspaper clipping of significant events.", "album_id": "72157626713239724", "photo_flickr_id": "5705011236", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "47032", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the exhibit includes newspaper clipping of significant events .", "storylet_id": "235162"}], [{"original_text": "More clippings and pictures help tell the story of the university.", "album_id": "72157626713239724", "photo_flickr_id": "5704448107", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "47032", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more clippings and pictures help tell the story of the university .", "storylet_id": "235163"}], [{"original_text": "Some famous teams and students from long ago are also honored.", "album_id": "72157626713239724", "photo_flickr_id": "5713707815", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "47032", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some famous teams and students from long ago are also honored .", "storylet_id": "235164"}], [{"original_text": "Here are some of the historical archives of a great war hero.", "album_id": "72157626713239724", "photo_flickr_id": "5705008408", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "47033", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here are some of the historical archives of a great war hero .", "storylet_id": "235165"}], [{"original_text": "There are many articles written about sergeant goodfellow.", "album_id": "72157626713239724", "photo_flickr_id": "5705009668", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "47033", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are many articles written about sergeant goodfellow .", "storylet_id": "235166"}], [{"original_text": "I like the articles about his heroic efforts at war and at home.", "album_id": "72157626713239724", "photo_flickr_id": "5705011236", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "47033", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i like the articles about his heroic efforts at war and at home .", "storylet_id": "235167"}], [{"original_text": "Sergeant Goodfellow helped many people in his short life.", "album_id": "72157626713239724", "photo_flickr_id": "5704448107", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "47033", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sergeant goodfellow helped many people in his short life .", "storylet_id": "235168"}], [{"original_text": "When I grow up I want to be just like Sergeant Goodfellow.", "album_id": "72157626713239724", "photo_flickr_id": "5713707815", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "47033", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when i grow up i want to be just like sergeant goodfellow .", "storylet_id": "235169"}], [{"original_text": "The national newspaper museum contains a great many famous articles. ", "album_id": "72157626713239724", "photo_flickr_id": "5705008408", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "47034", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the national newspaper museum contains a great many famous articles .", "storylet_id": "235170"}], [{"original_text": "This includes pieces written from the start of WWII.", "album_id": "72157626713239724", "photo_flickr_id": "5705009668", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "47034", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this includes pieces written from the start of wwii .", "storylet_id": "235171"}], [{"original_text": "Famous writings from many historical periods make up the collection.", "album_id": "72157626713239724", "photo_flickr_id": "5705011236", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "47034", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "famous writings from many historical periods make up the collection .", "storylet_id": "235172"}], [{"original_text": "A visitor is invited to view and read these pieces as they originally appeared.", "album_id": "72157626713239724", "photo_flickr_id": "5704448107", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "47034", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a visitor is invited to view and read these pieces as they originally appeared .", "storylet_id": "235173"}], [{"original_text": "It is a worthy destination for any lover of history or newspapers.", "album_id": "72157626713239724", "photo_flickr_id": "5713707815", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "47034", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is a worthy destination for any lover of history or newspapers .", "storylet_id": "235174"}], [{"original_text": "I had a great time at the picnic last week.", "album_id": "72157627739165473", "photo_flickr_id": "6232271276", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47035", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the picnic last week .", "storylet_id": "235175"}], [{"original_text": "There were a lot of people there.", "album_id": "72157627739165473", "photo_flickr_id": "6232272972", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47035", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people there .", "storylet_id": "235176"}], [{"original_text": "The children had a great time.", "album_id": "72157627739165473", "photo_flickr_id": "6231756229", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47035", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the children had a great time .", "storylet_id": "235177"}], [{"original_text": "We told them stories.", "album_id": "72157627739165473", "photo_flickr_id": "6231766943", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47035", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we told them stories .", "storylet_id": "235178"}], [{"original_text": "Some of the stories were very scary.", "album_id": "72157627739165473", "photo_flickr_id": "6231768609", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47035", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the stories were very scary .", "storylet_id": "235179"}], [{"original_text": "Today was a special day for some local kids. They would get to meet some football players from the local team and see a play.", "album_id": "72157627739165473", "photo_flickr_id": "6231779769", "setting": "first-2-pick-and-tell", "worker_id": "15L0SLJOQGO0U1T", "story_id": "47036", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was a special day for some local kids . they would get to meet some football players from the local team and see a play .", "storylet_id": "235180"}], [{"original_text": "Parents and kids alike were eager to meet their favorite football players as they lined up for autographs and pictures.", "album_id": "72157627739165473", "photo_flickr_id": "6232271276", "setting": "first-2-pick-and-tell", "worker_id": "15L0SLJOQGO0U1T", "story_id": "47036", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "parents and kids alike were eager to meet their favorite football players as they lined up for autographs and pictures .", "storylet_id": "235181"}], [{"original_text": "The football players were really nice to the kids and took the time to sign autographs for all of them, including pictures as well.", "album_id": "72157627739165473", "photo_flickr_id": "6232272972", "setting": "first-2-pick-and-tell", "worker_id": "15L0SLJOQGO0U1T", "story_id": "47036", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the football players were really nice to the kids and took the time to sign autographs for all of them , including pictures as well .", "storylet_id": "235182"}], [{"original_text": "Afterward, the kids got to watch a funny play including the mascot and some local comedians.", "album_id": "72157627739165473", "photo_flickr_id": "6231763583", "setting": "first-2-pick-and-tell", "worker_id": "15L0SLJOQGO0U1T", "story_id": "47036", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward , the kids got to watch a funny play including the mascot and some local comedians .", "storylet_id": "235183"}], [{"original_text": "After the play, children got to take pictures with the comedians and the mascot. It was a great day for everyone.", "album_id": "72157627739165473", "photo_flickr_id": "6232293706", "setting": "first-2-pick-and-tell", "worker_id": "15L0SLJOQGO0U1T", "story_id": "47036", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the play , children got to take pictures with the comedians and the mascot . it was a great day for everyone .", "storylet_id": "235184"}], [{"original_text": "Many came out to support the program, including many future footballers.", "album_id": "72157627739165473", "photo_flickr_id": "6231779769", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47037", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many came out to support the program , including many future footballers .", "storylet_id": "235185"}], [{"original_text": "Donations were coming in fast and the booth stayed busy.", "album_id": "72157627739165473", "photo_flickr_id": "6232271276", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47037", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "donations were coming in fast and the booth stayed busy .", "storylet_id": "235186"}], [{"original_text": "Including taking this 10,000 dollar check from Alex Smith.", "album_id": "72157627739165473", "photo_flickr_id": "6232272972", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47037", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "including taking this 10,000 dollar check from [male] smith .", "storylet_id": "235187"}], [{"original_text": "Which, lead to Coach Palmer shouting to the rooftops...", "album_id": "72157627739165473", "photo_flickr_id": "6231763583", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47037", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "which , lead to coach palmer shouting to the rooftops ...", "storylet_id": "235188"}], [{"original_text": "And, the Cardinal mascot chasing his daughter down for a celebratory hug!", "album_id": "72157627739165473", "photo_flickr_id": "6232293706", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47037", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , the cardinal mascot chasing his daughter down for a celebratory hug !", "storylet_id": "235189"}], [{"original_text": "The family took the kids to a summer camp.", "album_id": "72157627739165473", "photo_flickr_id": "6231779769", "setting": "last-3-pick-old-and-tell", "worker_id": "IXBY162UUJ9WTEI", "story_id": "47038", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family took the kids to a summer camp .", "storylet_id": "235190"}], [{"original_text": "They learned more about the camp when they arrived.", "album_id": "72157627739165473", "photo_flickr_id": "6232271276", "setting": "last-3-pick-old-and-tell", "worker_id": "IXBY162UUJ9WTEI", "story_id": "47038", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they learned more about the camp when they arrived .", "storylet_id": "235191"}], [{"original_text": "They signed the kids up for the camp for the day.", "album_id": "72157627739165473", "photo_flickr_id": "6232272972", "setting": "last-3-pick-old-and-tell", "worker_id": "IXBY162UUJ9WTEI", "story_id": "47038", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they signed the kids up for the camp for the day .", "storylet_id": "235192"}], [{"original_text": "The kids had fun listening to the camp leader talk.", "album_id": "72157627739165473", "photo_flickr_id": "6231763583", "setting": "last-3-pick-old-and-tell", "worker_id": "IXBY162UUJ9WTEI", "story_id": "47038", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids had fun listening to the camp leader talk .", "storylet_id": "235193"}], [{"original_text": "At the end of the day the kids got to meet the camps mascot.", "album_id": "72157627739165473", "photo_flickr_id": "6232293706", "setting": "last-3-pick-old-and-tell", "worker_id": "IXBY162UUJ9WTEI", "story_id": "47038", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day the kids got to meet the camps mascot .", "storylet_id": "235194"}], [{"original_text": "The family was all helping out", "album_id": "72157627739165473", "photo_flickr_id": "6232271276", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47039", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was all helping out", "storylet_id": "235195"}], [{"original_text": "at the event.", "album_id": "72157627739165473", "photo_flickr_id": "6232272972", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47039", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at the event .", "storylet_id": "235196"}], [{"original_text": "There were giant fingers", "album_id": "72157627739165473", "photo_flickr_id": "6231756229", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47039", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were giant fingers", "storylet_id": "235197"}], [{"original_text": "and kids were cheering ", "album_id": "72157627739165473", "photo_flickr_id": "6231766943", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47039", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and kids were cheering", "storylet_id": "235198"}], [{"original_text": "at the old man.", "album_id": "72157627739165473", "photo_flickr_id": "6231768609", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47039", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the old man .", "storylet_id": "235199"}], [{"original_text": "They pulled up at the field ready for the big game.", "album_id": "72157627864675956", "photo_flickr_id": "6232157436", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "47040", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they pulled up at the field ready for the big game .", "storylet_id": "235200"}], [{"original_text": "It was crowded and hard to tell what was going on.", "album_id": "72157627864675956", "photo_flickr_id": "6232157164", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "47040", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was crowded and hard to tell what was going on .", "storylet_id": "235201"}], [{"original_text": "Fortunately the announcer was on top of keeping the crowd informed.", "album_id": "72157627864675956", "photo_flickr_id": "6231655909", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "47040", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "fortunately the announcer was on top of keeping the crowd informed .", "storylet_id": "235202"}], [{"original_text": "The end of the game was celebrated with a small community concert.", "album_id": "72157627864675956", "photo_flickr_id": "6232174432", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "47040", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the end of the game was celebrated with a small community concert .", "storylet_id": "235203"}], [{"original_text": "Then the community enjoyed the beautiful sunset over their small town.", "album_id": "72157627864675956", "photo_flickr_id": "6232184294", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "47040", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then the community enjoyed the beautiful sunset over their small town .", "storylet_id": "235204"}], [{"original_text": "Jason had the brilliant idea of holding an improptu concert at his home.", "album_id": "72157627864675956", "photo_flickr_id": "6232158922", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47041", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] had the brilliant idea of holding an improptu concert at his home .", "storylet_id": "235205"}], [{"original_text": "He needed a stage so he called his friend to bring him his truck with the towing platform.", "album_id": "72157627864675956", "photo_flickr_id": "6231639667", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47041", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he needed a stage so he called his friend to bring him his truck with the towing platform .", "storylet_id": "235206"}], [{"original_text": "It was the perfect size for the band.", "album_id": "72157627864675956", "photo_flickr_id": "6232174432", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47041", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was the perfect size for the band .", "storylet_id": "235207"}], [{"original_text": "The band played all night long for the guests.", "album_id": "72157627864675956", "photo_flickr_id": "6231655267", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47041", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the band played all night long for the guests .", "storylet_id": "235208"}], [{"original_text": "As the sun went down, the band continued playing to the joy of others.", "album_id": "72157627864675956", "photo_flickr_id": "6232184294", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47041", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the sun went down , the band continued playing to the joy of others .", "storylet_id": "235209"}], [{"original_text": "One white car and one blue car.", "album_id": "72157627864675956", "photo_flickr_id": "6232157436", "setting": "last-3-pick-old-and-tell", "worker_id": "W1Q5SRWW4S9P1BF", "story_id": "47042", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one white car and one blue car .", "storylet_id": "235210"}], [{"original_text": "Alot of people in football fields.", "album_id": "72157627864675956", "photo_flickr_id": "6232157164", "setting": "last-3-pick-old-and-tell", "worker_id": "W1Q5SRWW4S9P1BF", "story_id": "47042", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "alot of people in football fields .", "storylet_id": "235211"}], [{"original_text": "Person watching football in room.", "album_id": "72157627864675956", "photo_flickr_id": "6231655909", "setting": "last-3-pick-old-and-tell", "worker_id": "W1Q5SRWW4S9P1BF", "story_id": "47042", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "person watching football in room .", "storylet_id": "235212"}], [{"original_text": "Person play guitar outside home.", "album_id": "72157627864675956", "photo_flickr_id": "6232174432", "setting": "last-3-pick-old-and-tell", "worker_id": "W1Q5SRWW4S9P1BF", "story_id": "47042", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "person play guitar outside home .", "storylet_id": "235213"}], [{"original_text": "Tree at night times.", "album_id": "72157627864675956", "photo_flickr_id": "6232184294", "setting": "last-3-pick-old-and-tell", "worker_id": "W1Q5SRWW4S9P1BF", "story_id": "47042", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "tree at night times .", "storylet_id": "235214"}], [{"original_text": "It's a big day in the town of Tide Alabama. ", "album_id": "72157627864675956", "photo_flickr_id": "6232157436", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47043", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a big day in the town of tide location .", "storylet_id": "235215"}], [{"original_text": "The local football team is in the championship. ", "album_id": "72157627864675956", "photo_flickr_id": "6232157164", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47043", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the local football team is in the championship .", "storylet_id": "235216"}], [{"original_text": "The announcer has a live feed going to a local radio station. ", "album_id": "72157627864675956", "photo_flickr_id": "6231655909", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47043", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the announcer has a live feed going to a local radio station .", "storylet_id": "235217"}], [{"original_text": "Many people are having parties at home to celebrate. ", "album_id": "72157627864675956", "photo_flickr_id": "6232174432", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47043", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many people are having parties at home to celebrate .", "storylet_id": "235218"}], [{"original_text": "After winning the game, everyone settled down for a nice evening under the stars.", "album_id": "72157627864675956", "photo_flickr_id": "6232184294", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47043", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after winning the game , everyone settled down for a nice evening under the stars .", "storylet_id": "235219"}], [{"original_text": "Everyone was getting ready for the after game party. ", "album_id": "72157627864675956", "photo_flickr_id": "6232157436", "setting": "last-3-pick-old-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47044", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was getting ready for the after game party .", "storylet_id": "235220"}], [{"original_text": "The football game was so exciting, the home team won. ", "album_id": "72157627864675956", "photo_flickr_id": "6232157164", "setting": "last-3-pick-old-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47044", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the football game was so exciting , the home team won .", "storylet_id": "235221"}], [{"original_text": "John had so much fun announcing the game. ", "album_id": "72157627864675956", "photo_flickr_id": "6231655909", "setting": "last-3-pick-old-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47044", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] had so much fun announcing the game .", "storylet_id": "235222"}], [{"original_text": "After the game, all the players headed to the Captain's house. ", "album_id": "72157627864675956", "photo_flickr_id": "6232174432", "setting": "last-3-pick-old-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47044", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the game , all the players headed to the captain 's house .", "storylet_id": "235223"}], [{"original_text": "After such a great game, it was fun to watch the sun set. ", "album_id": "72157627864675956", "photo_flickr_id": "6232184294", "setting": "last-3-pick-old-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47044", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after such a great game , it was fun to watch the sun set .", "storylet_id": "235224"}], [{"original_text": "it was a college basketball game", "album_id": "72157627871513354", "photo_flickr_id": "6245164969", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47045", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a college basketball game", "storylet_id": "235225"}], [{"original_text": "the basketball player slammed dunked the ball during warm ups", "album_id": "72157627871513354", "photo_flickr_id": "6245170081", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47045", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the basketball player slammed dunked the ball during warm ups", "storylet_id": "235226"}], [{"original_text": "the band played their team on", "album_id": "72157627871513354", "photo_flickr_id": "6245171177", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47045", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band played their team on", "storylet_id": "235227"}], [{"original_text": "and met with the announcers", "album_id": "72157627871513354", "photo_flickr_id": "6245177267", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47045", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and met with the announcers", "storylet_id": "235228"}], [{"original_text": "of course the cheerleaders lead their way as well ", "album_id": "72157627871513354", "photo_flickr_id": "6245181419", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47045", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of course the cheerleaders lead their way as well", "storylet_id": "235229"}], [{"original_text": "The basketball game was a lot of fun yesterday.", "album_id": "72157627871513354", "photo_flickr_id": "6245164969", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47046", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the basketball game was a lot of fun yesterday .", "storylet_id": "235230"}], [{"original_text": "I brought the entire family with me.", "album_id": "72157627871513354", "photo_flickr_id": "6245165657", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47046", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i brought the entire family with me .", "storylet_id": "235231"}], [{"original_text": "We all had a great time.", "album_id": "72157627871513354", "photo_flickr_id": "6245166435", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47046", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all had a great time .", "storylet_id": "235232"}], [{"original_text": "The mascot was very entertaining.", "album_id": "72157627871513354", "photo_flickr_id": "6245170343", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47046", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the mascot was very entertaining .", "storylet_id": "235233"}], [{"original_text": "The band also played music for everyone.", "album_id": "72157627871513354", "photo_flickr_id": "6245171177", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47046", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the band also played music for everyone .", "storylet_id": "235234"}], [{"original_text": "Here to watch the game and scream to support my team.", "album_id": "72157627871513354", "photo_flickr_id": "6245164969", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47047", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here to watch the game and scream to support my team .", "storylet_id": "235235"}], [{"original_text": "The 1st dunk of the game, looking good.", "album_id": "72157627871513354", "photo_flickr_id": "6245170081", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47047", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the 1st dunk of the game , looking good .", "storylet_id": "235236"}], [{"original_text": "The band is playing their little hearts out.", "album_id": "72157627871513354", "photo_flickr_id": "6245171177", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47047", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band is playing their little hearts out .", "storylet_id": "235237"}], [{"original_text": "Shaking hands is a big part of the game.", "album_id": "72157627871513354", "photo_flickr_id": "6245177267", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47047", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "shaking hands is a big part of the game .", "storylet_id": "235238"}], [{"original_text": "The cheerleaders are really pretty girls.", "album_id": "72157627871513354", "photo_flickr_id": "6245181419", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47047", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cheerleaders are really pretty girls .", "storylet_id": "235239"}], [{"original_text": "It seemed that everyone had come to see Darius perform for the halftime show, including Tim and Jane.", "album_id": "72157627871513354", "photo_flickr_id": "6245164969", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47048", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it seemed that everyone had come to see [male] perform for the halftime show , including [male] and [female] .", "storylet_id": "235240"}], [{"original_text": "And, their little brother and mother!", "album_id": "72157627871513354", "photo_flickr_id": "6245165657", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47048", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and , their little brother and mother !", "storylet_id": "235241"}], [{"original_text": "And, the mean girls of Chestnut night school even came out to support Darius.", "album_id": "72157627871513354", "photo_flickr_id": "6245166435", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47048", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and , the mean girls of chestnut night school even came out to support [male] .", "storylet_id": "235242"}], [{"original_text": "And, then he took of, leaping over the Cardinal Mascot and slammed the ball home.", "album_id": "72157627871513354", "photo_flickr_id": "6245170343", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47048", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , then he took of , leaping over the cardinal mascot and slammed the ball home .", "storylet_id": "235243"}], [{"original_text": "And, the band celebrated certain victory for Darius in the slam dunk contest!", "album_id": "72157627871513354", "photo_flickr_id": "6245171177", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47048", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , the band celebrated certain victory for [male] in the slam dunk contest !", "storylet_id": "235244"}], [{"original_text": "Our high school team made it to the championship.", "album_id": "72157627871513354", "photo_flickr_id": "6245164969", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47049", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our high school team made it to the championship .", "storylet_id": "235245"}], [{"original_text": "Fans from every age group attended.", "album_id": "72157627871513354", "photo_flickr_id": "6245165657", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47049", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fans from every age group attended .", "storylet_id": "235246"}], [{"original_text": "These girls are dating some of the players.", "album_id": "72157627871513354", "photo_flickr_id": "6245166435", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47049", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these girls are dating some of the players .", "storylet_id": "235247"}], [{"original_text": "The game winning slam dunk was made by our best player.", "album_id": "72157627871513354", "photo_flickr_id": "6245170343", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47049", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the game winning slam dunk was made by our best player .", "storylet_id": "235248"}], [{"original_text": "I almost joined the band this year. Now I wish I had.", "album_id": "72157627871513354", "photo_flickr_id": "6245171177", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47049", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i almost joined the band this year . now i wish i had .", "storylet_id": "235249"}], [{"original_text": "The military museum included a lot of memorabilia.", "album_id": "72157626865355029", "photo_flickr_id": "5845122897", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47050", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the military museum included a lot of memorabilia .", "storylet_id": "235250"}], [{"original_text": "From wars spanning decades.", "album_id": "72157626865355029", "photo_flickr_id": "5845123215", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47050", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from wars spanning decades .", "storylet_id": "235251"}], [{"original_text": "And weapons used in all those wars.", "album_id": "72157626865355029", "photo_flickr_id": "5845124737", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47050", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and weapons used in all those wars .", "storylet_id": "235252"}], [{"original_text": "The front yard had replicas of tanks.", "album_id": "72157626865355029", "photo_flickr_id": "5845678096", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47050", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the front yard had replicas of tanks .", "storylet_id": "235253"}], [{"original_text": "And the roof held a replica helicopter.", "album_id": "72157626865355029", "photo_flickr_id": "5845678252", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47050", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the roof held a replica helicopter .", "storylet_id": "235254"}], [{"original_text": "this was a war memorial ", "album_id": "72157626865355029", "photo_flickr_id": "5845674714", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47051", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was a war memorial", "storylet_id": "235255"}], [{"original_text": "it was dedicated to fallen soldiers ", "album_id": "72157626865355029", "photo_flickr_id": "5845123215", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47051", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was dedicated to fallen soldiers", "storylet_id": "235256"}], [{"original_text": "many fallen were honored here", "album_id": "72157626865355029", "photo_flickr_id": "5845124143", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47051", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many fallen were honored here", "storylet_id": "235257"}], [{"original_text": "and many guns were on display", "album_id": "72157626865355029", "photo_flickr_id": "5845677018", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47051", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and many guns were on display", "storylet_id": "235258"}], [{"original_text": "it's a great place to visit and pay tribute ", "album_id": "72157626865355029", "photo_flickr_id": "5845678252", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47051", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's a great place to visit and pay tribute", "storylet_id": "235259"}], [{"original_text": "The local armory is now part museum. It houses old cannons and relics from previous wars.", "album_id": "72157626865355029", "photo_flickr_id": "5845122897", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47052", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the local armory is now part museum . it houses old cannons and relics from previous wars .", "storylet_id": "235260"}], [{"original_text": "Inside, there are pictures of more modern combat.", "album_id": "72157626865355029", "photo_flickr_id": "5845123215", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47052", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside , there are pictures of more modern combat .", "storylet_id": "235261"}], [{"original_text": "It also houses many guns and weapons, to show the technological advancement.", "album_id": "72157626865355029", "photo_flickr_id": "5845124737", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47052", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it also houses many guns and weapons , to show the technological advancement .", "storylet_id": "235262"}], [{"original_text": "Usually, it is very quiet outside.", "album_id": "72157626865355029", "photo_flickr_id": "5845678096", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47052", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "usually , it is very quiet outside .", "storylet_id": "235263"}], [{"original_text": "But you can always find at least one or two veterans who return and sit outside, just remember their days at war.", "album_id": "72157626865355029", "photo_flickr_id": "5845678252", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47052", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but you can always find at least one or two veterans who return and sit outside , just remember their days at war .", "storylet_id": "235264"}], [{"original_text": "This cannon is displayed outside a war museum.", "album_id": "72157626865355029", "photo_flickr_id": "5845122897", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "47053", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this cannon is displayed outside a war museum .", "storylet_id": "235265"}], [{"original_text": "The exhibits include soldiers carefully entering a building.", "album_id": "72157626865355029", "photo_flickr_id": "5845123215", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "47053", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the exhibits include soldiers carefully entering a building .", "storylet_id": "235266"}], [{"original_text": "These are some weapons used to fight battles over the years.", "album_id": "72157626865355029", "photo_flickr_id": "5845124737", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "47053", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these are some weapons used to fight battles over the years .", "storylet_id": "235267"}], [{"original_text": "Tanks from old wars are lined up outside.", "album_id": "72157626865355029", "photo_flickr_id": "5845678096", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "47053", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "tanks from old wars are lined up outside .", "storylet_id": "235268"}], [{"original_text": "There is even a helicopter on display on the roof.", "album_id": "72157626865355029", "photo_flickr_id": "5845678252", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "47053", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is even a helicopter on display on the roof .", "storylet_id": "235269"}], [{"original_text": "The war museum was neat.", "album_id": "72157626865355029", "photo_flickr_id": "5845122897", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47054", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the war museum was neat .", "storylet_id": "235270"}], [{"original_text": "They had exhibits.", "album_id": "72157626865355029", "photo_flickr_id": "5845123215", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47054", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had exhibits .", "storylet_id": "235271"}], [{"original_text": "Many guns were on display.", "album_id": "72157626865355029", "photo_flickr_id": "5845124737", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47054", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many guns were on display .", "storylet_id": "235272"}], [{"original_text": "The outdoor area was nicely designed.", "album_id": "72157626865355029", "photo_flickr_id": "5845678096", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47054", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the outdoor area was nicely designed .", "storylet_id": "235273"}], [{"original_text": "The helicopter is the highlight of the museum.", "album_id": "72157626865355029", "photo_flickr_id": "5845678252", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47054", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the helicopter is the highlight of the museum .", "storylet_id": "235274"}], [{"original_text": "Our high school marching band looked sharp in the parade.", "album_id": "72157627717760892", "photo_flickr_id": "6167923197", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "47055", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our high school marching band looked sharp in the parade .", "storylet_id": "235275"}], [{"original_text": "The night before they had to recruit a football player to fill in at trumpet at half time.", "album_id": "72157627717760892", "photo_flickr_id": "6167924261", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "47055", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the night before they had to recruit a football player to fill in at trumpet at half time .", "storylet_id": "235276"}], [{"original_text": "He was so good, they gave him a regular uniform for the parade.", "album_id": "72157627717760892", "photo_flickr_id": "6167926207", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "47055", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was so good , they gave him a regular uniform for the parade .", "storylet_id": "235277"}], [{"original_text": "The sophomores had an interesting float promoting crayons instead of pencils for class work.", "album_id": "72157627717760892", "photo_flickr_id": "6167927129", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "47055", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sophomores had an interesting float promoting crayons instead of pencils for class work .", "storylet_id": "235278"}], [{"original_text": "One of the teachers did not appreciate this idea and threw erasers at the float.", "album_id": "72157627717760892", "photo_flickr_id": "6168465090", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "47055", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of the teachers did not appreciate this idea and threw erasers at the float .", "storylet_id": "235279"}], [{"original_text": "The school band was ready for the parade.", "album_id": "72157627717760892", "photo_flickr_id": "6167923429", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "47056", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the school band was ready for the parade .", "storylet_id": "235280"}], [{"original_text": "Although they had often performed at football games, they had never marched in a parade before.", "album_id": "72157627717760892", "photo_flickr_id": "6168461778", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "47056", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "although they had often performed at football games , they had never marched in a parade before .", "storylet_id": "235281"}], [{"original_text": "Most of the band members were upset they were behind the cheerleaders in the line up.", "album_id": "72157627717760892", "photo_flickr_id": "6168462880", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "47056", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most of the band members were upset they were behind the cheerleaders in the line up .", "storylet_id": "235282"}], [{"original_text": "But they still gave their best effort.", "album_id": "72157627717760892", "photo_flickr_id": "6168463548", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "47056", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but they still gave their best effort .", "storylet_id": "235283"}], [{"original_text": "Most people in the crowd were not impressed.", "album_id": "72157627717760892", "photo_flickr_id": "6168465520", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "47056", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "most people in the crowd were not impressed .", "storylet_id": "235284"}], [{"original_text": "Today we went to go support my school's marching band.", "album_id": "72157627717760892", "photo_flickr_id": "6167923429", "setting": "last-3-pick-old-and-tell", "worker_id": "97CW68CUF5379T3", "story_id": "47057", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to go support my school 's marching band .", "storylet_id": "235285"}], [{"original_text": "This is a photo of them standing and getting ready.", "album_id": "72157627717760892", "photo_flickr_id": "6168461778", "setting": "last-3-pick-old-and-tell", "worker_id": "97CW68CUF5379T3", "story_id": "47057", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a photo of them standing and getting ready .", "storylet_id": "235286"}], [{"original_text": "They are preparing to walk down the street for the parade.", "album_id": "72157627717760892", "photo_flickr_id": "6168462880", "setting": "last-3-pick-old-and-tell", "worker_id": "97CW68CUF5379T3", "story_id": "47057", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they are preparing to walk down the street for the parade .", "storylet_id": "235287"}], [{"original_text": "They are walking down the street with all the other floats and teams.", "album_id": "72157627717760892", "photo_flickr_id": "6168463548", "setting": "last-3-pick-old-and-tell", "worker_id": "97CW68CUF5379T3", "story_id": "47057", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they are walking down the street with all the other floats and teams .", "storylet_id": "235288"}], [{"original_text": "A lot of friends and family came out to support the marching band. ", "album_id": "72157627717760892", "photo_flickr_id": "6168465520", "setting": "last-3-pick-old-and-tell", "worker_id": "97CW68CUF5379T3", "story_id": "47057", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a lot of friends and family came out to support the marching band .", "storylet_id": "235289"}], [{"original_text": "The marching band marched in the parade.", "album_id": "72157627717760892", "photo_flickr_id": "6167923197", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47058", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the marching band marched in the parade .", "storylet_id": "235290"}], [{"original_text": "They began to play their instruments.", "album_id": "72157627717760892", "photo_flickr_id": "6167924261", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47058", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they began to play their instruments .", "storylet_id": "235291"}], [{"original_text": "When the parade began they marched along with the floats.", "album_id": "72157627717760892", "photo_flickr_id": "6167926207", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47058", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when the parade began they marched along with the floats .", "storylet_id": "235292"}], [{"original_text": "The student body even had it's own float.", "album_id": "72157627717760892", "photo_flickr_id": "6167927129", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47058", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the student body even had it 's own float .", "storylet_id": "235293"}], [{"original_text": "All of their friends and family was there to cheer them on.", "album_id": "72157627717760892", "photo_flickr_id": "6168465090", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47058", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of their friends and family was there to cheer them on .", "storylet_id": "235294"}], [{"original_text": "My son, Troy, is part of a fantastic high school.", "album_id": "72157627717760892", "photo_flickr_id": "6167923197", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47059", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my son , [male] , is part of a fantastic high school .", "storylet_id": "235295"}], [{"original_text": "The football program is top notch.", "album_id": "72157627717760892", "photo_flickr_id": "6167924261", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47059", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the football program is top notch .", "storylet_id": "235296"}], [{"original_text": "The marching band cannot be reckoned with by competitors.", "album_id": "72157627717760892", "photo_flickr_id": "6167926207", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47059", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the marching band can not be reckoned with by competitors .", "storylet_id": "235297"}], [{"original_text": "A parade happens every week.", "album_id": "72157627717760892", "photo_flickr_id": "6167927129", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47059", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a parade happens every week .", "storylet_id": "235298"}], [{"original_text": "Roy is a proud teacher at Troy's high school. ", "album_id": "72157627717760892", "photo_flickr_id": "6168465090", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47059", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] is a proud teacher at organization 's high school .", "storylet_id": "235299"}], [{"original_text": "It was an important game day at Perdue.", "album_id": "72157627829815505", "photo_flickr_id": "6270279393", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47060", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was an important game day at organization .", "storylet_id": "235300"}], [{"original_text": "The crowd was excited.", "album_id": "72157627829815505", "photo_flickr_id": "6270811678", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47060", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd was excited .", "storylet_id": "235301"}], [{"original_text": "Everyone stood up during the national anthem.", "album_id": "72157627829815505", "photo_flickr_id": "6270282667", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47060", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone stood up during the national anthem .", "storylet_id": "235302"}], [{"original_text": "When the anthem was over everyone cheered.", "album_id": "72157627829815505", "photo_flickr_id": "6270283215", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47060", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the anthem was over everyone cheered .", "storylet_id": "235303"}], [{"original_text": "Perdue University has a vibrant football culture. ", "album_id": "72157627829815505", "photo_flickr_id": "6270288311", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47060", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "organization organization has a vibrant football culture .", "storylet_id": "235304"}], [{"original_text": "We went to see the fireworks last weekend.", "album_id": "72157627829815505", "photo_flickr_id": "6270262423", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47061", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to see the fireworks last weekend .", "storylet_id": "235305"}], [{"original_text": "I love fireworks.", "album_id": "72157627829815505", "photo_flickr_id": "6270793094", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47061", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love fireworks .", "storylet_id": "235306"}], [{"original_text": "There were many different kinds filling the night sky.", "album_id": "72157627829815505", "photo_flickr_id": "6270795312", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47061", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many different kinds filling the night sky .", "storylet_id": "235307"}], [{"original_text": "I liked the multi colored ones.", "album_id": "72157627829815505", "photo_flickr_id": "6270801250", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47061", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i liked the multi colored ones .", "storylet_id": "235308"}], [{"original_text": "The closeups look very pretty.", "album_id": "72157627829815505", "photo_flickr_id": "6270811678", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47061", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the closeups look very pretty .", "storylet_id": "235309"}], [{"original_text": "The big game was scheduled for today.", "album_id": "72157627829815505", "photo_flickr_id": "6270262423", "setting": "last-3-pick-old-and-tell", "worker_id": "XHSGIOFF42JVSG7", "story_id": "47062", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the big game was scheduled for today .", "storylet_id": "235310"}], [{"original_text": "As we walked toward the entrance we saw the marching band lining up outside.", "album_id": "72157627829815505", "photo_flickr_id": "6270793094", "setting": "last-3-pick-old-and-tell", "worker_id": "XHSGIOFF42JVSG7", "story_id": "47062", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as we walked toward the entrance we saw the marching band lining up outside .", "storylet_id": "235311"}], [{"original_text": "The college was enormous with huge columns flanking the doors.", "album_id": "72157627829815505", "photo_flickr_id": "6270795312", "setting": "last-3-pick-old-and-tell", "worker_id": "XHSGIOFF42JVSG7", "story_id": "47062", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the college was enormous with huge columns flanking the doors .", "storylet_id": "235312"}], [{"original_text": "They showed alot of school pride.", "album_id": "72157627829815505", "photo_flickr_id": "6270801250", "setting": "last-3-pick-old-and-tell", "worker_id": "XHSGIOFF42JVSG7", "story_id": "47062", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they showed alot of school pride .", "storylet_id": "235313"}], [{"original_text": "We sat just in the nick of time to see the opening ceremony!", "album_id": "72157627829815505", "photo_flickr_id": "6270811678", "setting": "last-3-pick-old-and-tell", "worker_id": "XHSGIOFF42JVSG7", "story_id": "47062", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we sat just in the nick of time to see the opening ceremony !", "storylet_id": "235314"}], [{"original_text": "Got to enjoy a Purdue football game with extras.", "album_id": "72157627829815505", "photo_flickr_id": "6270279393", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47063", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "got to enjoy a organization football game with extras .", "storylet_id": "235315"}], [{"original_text": "Here is the band,they are huge and very good at what they do.", "album_id": "72157627829815505", "photo_flickr_id": "6270811678", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47063", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is the band , they are huge and very good at what they do .", "storylet_id": "235316"}], [{"original_text": "These were the singers who sang during the band performance.", "album_id": "72157627829815505", "photo_flickr_id": "6270282667", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47063", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these were the singers who sang during the band performance .", "storylet_id": "235317"}], [{"original_text": "Lovely, they spelled out Purdue!", "album_id": "72157627829815505", "photo_flickr_id": "6270283215", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47063", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "lovely , they spelled out organization !", "storylet_id": "235318"}], [{"original_text": "Got to see the world's largest drum too.", "album_id": "72157627829815505", "photo_flickr_id": "6270288311", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47063", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "got to see the world 's largest drum too .", "storylet_id": "235319"}], [{"original_text": "My Uncle Jack made us go to the Purdue game Saturday. ", "album_id": "72157627829815505", "photo_flickr_id": "6270279393", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47064", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my uncle [male] made us go to the organization game saturday .", "storylet_id": "235320"}], [{"original_text": "He went to Purdue and he thinks they are great...no matter what else anyone thinks. ", "album_id": "72157627829815505", "photo_flickr_id": "6270811678", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47064", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he went to organization and he thinks they are great ... no matter what else anyone thinks .", "storylet_id": "235321"}], [{"original_text": "We all had to sit in the bleachers and wear some ridiculous brown coats. ", "album_id": "72157627829815505", "photo_flickr_id": "6270282667", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47064", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all had to sit in the bleachers and wear some ridiculous brown coats .", "storylet_id": "235322"}], [{"original_text": "The game was good. But none of us except him are Purdue fans. ", "album_id": "72157627829815505", "photo_flickr_id": "6270283215", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47064", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the game was good . but none of us except him are organization fans .", "storylet_id": "235323"}], [{"original_text": "He really thought it was a big deal to hit the World's Largest Drum. Poor guy. ", "album_id": "72157627829815505", "photo_flickr_id": "6270288311", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47064", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he really thought it was a big deal to hit the world 's largest drum . poor guy .", "storylet_id": "235324"}], [{"original_text": "I had a great time at the high school ball game yesterday.", "album_id": "72157624903751507", "photo_flickr_id": "5021737613", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47065", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the high school ball game yesterday .", "storylet_id": "235325"}], [{"original_text": "There were many cheerleaders there.", "album_id": "72157624903751507", "photo_flickr_id": "5022344914", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47065", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many cheerleaders there .", "storylet_id": "235326"}], [{"original_text": "Their routine was very good.", "album_id": "72157624903751507", "photo_flickr_id": "5022346142", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47065", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their routine was very good .", "storylet_id": "235327"}], [{"original_text": "There were a lot of ceremonies afterward.", "album_id": "72157624903751507", "photo_flickr_id": "5022346764", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47065", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of ceremonies afterward .", "storylet_id": "235328"}], [{"original_text": "The game was very close.", "album_id": "72157624903751507", "photo_flickr_id": "5021744021", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47065", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the game was very close .", "storylet_id": "235329"}], [{"original_text": "our beautiful daughter and her boyfriend, are king and queen.", "album_id": "72157624903751507", "photo_flickr_id": "5021737613", "setting": "first-2-pick-and-tell", "worker_id": "4LS7C7FQSB81O19", "story_id": "47066", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our beautiful daughter and her boyfriend , are king and queen .", "storylet_id": "235330"}], [{"original_text": "our awesome cheerleading squad.", "album_id": "72157624903751507", "photo_flickr_id": "5022344914", "setting": "first-2-pick-and-tell", "worker_id": "4LS7C7FQSB81O19", "story_id": "47066", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our awesome cheerleading squad .", "storylet_id": "235331"}], [{"original_text": "a wonderful game, we won!", "album_id": "72157624903751507", "photo_flickr_id": "5022352774", "setting": "first-2-pick-and-tell", "worker_id": "4LS7C7FQSB81O19", "story_id": "47066", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a wonderful game , we won !", "storylet_id": "235332"}], [{"original_text": "cheerleaders being presented with a spirit stick.", "album_id": "72157624903751507", "photo_flickr_id": "5022360420", "setting": "first-2-pick-and-tell", "worker_id": "4LS7C7FQSB81O19", "story_id": "47066", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cheerleaders being presented with a spirit stick .", "storylet_id": "235333"}], [{"original_text": "our state champion marching band awesome job guys!", "album_id": "72157624903751507", "photo_flickr_id": "5021755029", "setting": "first-2-pick-and-tell", "worker_id": "4LS7C7FQSB81O19", "story_id": "47066", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our state champion marching band awesome job guys !", "storylet_id": "235334"}], [{"original_text": "High school king and queen taking a nice picture.", "album_id": "72157624903751507", "photo_flickr_id": "5021737613", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47067", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "high school king and queen taking a nice picture .", "storylet_id": "235335"}], [{"original_text": "The cheerleaders are in their uniforms going over cheers.", "album_id": "72157624903751507", "photo_flickr_id": "5022344914", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47067", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cheerleaders are in their uniforms going over cheers .", "storylet_id": "235336"}], [{"original_text": "The players are in formation to start the plays for the game.", "album_id": "72157624903751507", "photo_flickr_id": "5022352774", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47067", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the players are in formation to start the plays for the game .", "storylet_id": "235337"}], [{"original_text": "Being presented with some sort of award.", "album_id": "72157624903751507", "photo_flickr_id": "5022360420", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47067", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "being presented with some sort of award .", "storylet_id": "235338"}], [{"original_text": "The band is ready to play when the time comes.", "album_id": "72157624903751507", "photo_flickr_id": "5021755029", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47067", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the band is ready to play when the time comes .", "storylet_id": "235339"}], [{"original_text": "Our daughter was voted homecoming queen this year.", "album_id": "72157624903751507", "photo_flickr_id": "5021737613", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47068", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our daughter was voted homecoming queen this year .", "storylet_id": "235340"}], [{"original_text": "She's a star cheerleader and very athletic.", "album_id": "72157624903751507", "photo_flickr_id": "5022344914", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47068", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she 's a star cheerleader and very athletic .", "storylet_id": "235341"}], [{"original_text": "My daughter is very popular with the whole squad.", "album_id": "72157624903751507", "photo_flickr_id": "5022346142", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47068", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my daughter is very popular with the whole squad .", "storylet_id": "235342"}], [{"original_text": "Even the marching band loves her. Practice makes perfect, kids!", "album_id": "72157624903751507", "photo_flickr_id": "5022346764", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47068", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the marching band loves her . practice makes perfect , kids !", "storylet_id": "235343"}], [{"original_text": "The team quarterback was voted king. He finally asked my daughter for a date.", "album_id": "72157624903751507", "photo_flickr_id": "5021744021", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47068", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the team quarterback was voted king . he finally asked my daughter for a date .", "storylet_id": "235344"}], [{"original_text": "High school football---what is more American than that? My older daughter was the Football Queen last year!", "album_id": "72157624903751507", "photo_flickr_id": "5021737613", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47069", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "high school football -- -what is more american than that ? my older daughter was the football [female] last year !", "storylet_id": "235345"}], [{"original_text": "She's a cheerleader, and I'm very proud of her.", "album_id": "72157624903751507", "photo_flickr_id": "5022344914", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47069", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she 's a cheerleader , and i 'm very proud of her .", "storylet_id": "235346"}], [{"original_text": "They work just as hard as the football players.", "album_id": "72157624903751507", "photo_flickr_id": "5022346142", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47069", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they work just as hard as the football players .", "storylet_id": "235347"}], [{"original_text": "My younger daughter is one of the flag team.", "album_id": "72157624903751507", "photo_flickr_id": "5022346764", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47069", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my younger daughter is one of the flag team .", "storylet_id": "235348"}], [{"original_text": "And my son is one of the players. You bet I'm out there every Friday night!", "album_id": "72157624903751507", "photo_flickr_id": "5021744021", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47069", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and my son is one of the players . you bet i 'm out there every friday night !", "storylet_id": "235349"}], [{"original_text": "The three best friends stand together for a photo right before their prom.", "album_id": "72157627621433723", "photo_flickr_id": "6180004872", "setting": "first-2-pick-and-tell", "worker_id": "RTPQMY9892BCBHA", "story_id": "47070", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the three best friends stand together for a photo right before their prom .", "storylet_id": "235350"}], [{"original_text": "One of the girls dates surprises her with some flowers.", "album_id": "72157627621433723", "photo_flickr_id": "6179478653", "setting": "first-2-pick-and-tell", "worker_id": "RTPQMY9892BCBHA", "story_id": "47070", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of the girls dates surprises her with some flowers .", "storylet_id": "235351"}], [{"original_text": "The other girl examines the corsage that her date brought her, as she is afraid it doesn't match her dress.", "album_id": "72157627621433723", "photo_flickr_id": "6179479245", "setting": "first-2-pick-and-tell", "worker_id": "RTPQMY9892BCBHA", "story_id": "47070", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the other girl examines the corsage that her date brought her , as she is afraid it does n't match her dress .", "storylet_id": "235352"}], [{"original_text": "As it turns out, she doesn't really care, as long as she's with the one she cares about.", "album_id": "72157627621433723", "photo_flickr_id": "6179543687", "setting": "first-2-pick-and-tell", "worker_id": "RTPQMY9892BCBHA", "story_id": "47070", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as it turns out , she does n't really care , as long as she 's with the one she cares about .", "storylet_id": "235353"}], [{"original_text": "The group then posed for one last photo before they head off to their first, and possibly last, prom. ", "album_id": "72157627621433723", "photo_flickr_id": "6180115702", "setting": "first-2-pick-and-tell", "worker_id": "RTPQMY9892BCBHA", "story_id": "47070", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the group then posed for one last photo before they head off to their first , and possibly last , prom .", "storylet_id": "235354"}], [{"original_text": "Senior prom is one of those days you remember forever.", "album_id": "72157627621433723", "photo_flickr_id": "6179478653", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "47071", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "senior prom is one of those days you remember forever .", "storylet_id": "235355"}], [{"original_text": "My friends were so beautiful when they were all dressed up.", "album_id": "72157627621433723", "photo_flickr_id": "6180005048", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "47071", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friends were so beautiful when they were all dressed up .", "storylet_id": "235356"}], [{"original_text": "And my date was handsome too.", "album_id": "72157627621433723", "photo_flickr_id": "6180006154", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "47071", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and my date was handsome too .", "storylet_id": "235357"}], [{"original_text": "We all promised we'd be friends forever.", "album_id": "72157627621433723", "photo_flickr_id": "6180117838", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "47071", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all promised we 'd be friends forever .", "storylet_id": "235358"}], [{"original_text": "This was one last night together, before we all went our separate ways. ", "album_id": "72157627621433723", "photo_flickr_id": "6180115702", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "47071", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was one last night together , before we all went our separate ways .", "storylet_id": "235359"}], [{"original_text": "The prom is here and everyone looks great.", "album_id": "72157627621433723", "photo_flickr_id": "6180004872", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47072", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the prom is here and everyone looks great .", "storylet_id": "235360"}], [{"original_text": "The couples are getting ready to go off and have a fun night.", "album_id": "72157627621433723", "photo_flickr_id": "6179478653", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47072", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the couples are getting ready to go off and have a fun night .", "storylet_id": "235361"}], [{"original_text": "Corsages are being given out by the gentlemen.", "album_id": "72157627621433723", "photo_flickr_id": "6179479245", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47072", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "corsages are being given out by the gentlemen .", "storylet_id": "235362"}], [{"original_text": "What a nice pair these two make.", "album_id": "72157627621433723", "photo_flickr_id": "6179543687", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47072", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what a nice pair these two make .", "storylet_id": "235363"}], [{"original_text": "One last photo before driving off to the last night of being a high schooler.", "album_id": "72157627621433723", "photo_flickr_id": "6180115702", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47072", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one last photo before driving off to the last night of being a high schooler .", "storylet_id": "235364"}], [{"original_text": "Although I can't wait for the school year to finish, I'm looking forward to the prom.", "album_id": "72157627621433723", "photo_flickr_id": "6180004872", "setting": "last-3-pick-old-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47073", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "although i ca n't wait for the school year to finish , i 'm looking forward to the prom .", "storylet_id": "235365"}], [{"original_text": "My friends looked cute with their prom dates,", "album_id": "72157627621433723", "photo_flickr_id": "6179478653", "setting": "last-3-pick-old-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47073", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friends looked cute with their prom dates ,", "storylet_id": "235366"}], [{"original_text": "especially my date who just arrived.", "album_id": "72157627621433723", "photo_flickr_id": "6179479245", "setting": "last-3-pick-old-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47073", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "especially my date who just arrived .", "storylet_id": "235367"}], [{"original_text": "I never knew we can become photogenic within one day.", "album_id": "72157627621433723", "photo_flickr_id": "6179543687", "setting": "last-3-pick-old-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47073", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i never knew we can become photogenic within one day .", "storylet_id": "235368"}], [{"original_text": "Before we went to the hotel, all of us got together for a picture.", "album_id": "72157627621433723", "photo_flickr_id": "6180115702", "setting": "last-3-pick-old-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47073", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before we went to the hotel , all of us got together for a picture .", "storylet_id": "235369"}], [{"original_text": "The woman was so happy ", "album_id": "72157627621433723", "photo_flickr_id": "6179478653", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47074", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the woman was so happy", "storylet_id": "235370"}], [{"original_text": "that she took photos with her ladies.", "album_id": "72157627621433723", "photo_flickr_id": "6180005048", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47074", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that she took photos with her ladies .", "storylet_id": "235371"}], [{"original_text": "The man liked his flowers", "album_id": "72157627621433723", "photo_flickr_id": "6180006154", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47074", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man liked his flowers", "storylet_id": "235372"}], [{"original_text": "and secrets were going around", "album_id": "72157627621433723", "photo_flickr_id": "6180117838", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47074", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and secrets were going around", "storylet_id": "235373"}], [{"original_text": "before the final set of pictures.", "album_id": "72157627621433723", "photo_flickr_id": "6180115702", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47074", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before the final set of pictures .", "storylet_id": "235374"}], [{"original_text": "This guy was in the groove, he couldn't stay still!", "album_id": "72157625907820708", "photo_flickr_id": "5389359636", "setting": "first-2-pick-and-tell", "worker_id": "LYC595SSRTMLQ2F", "story_id": "47075", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this guy was in the groove , he could n't stay still !", "storylet_id": "235375"}], [{"original_text": "The crowd was so into it, he made sure to face the mic our way so we could be heard as well!", "album_id": "72157625907820708", "photo_flickr_id": "5388720009", "setting": "first-2-pick-and-tell", "worker_id": "LYC595SSRTMLQ2F", "story_id": "47075", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd was so into it , he made sure to face the mic our way so we could be heard as well !", "storylet_id": "235376"}], [{"original_text": "I was so close to the stage, I was practically face to face with the singers.", "album_id": "72157625907820708", "photo_flickr_id": "5388706397", "setting": "first-2-pick-and-tell", "worker_id": "LYC595SSRTMLQ2F", "story_id": "47075", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was so close to the stage , i was practically face to face with the singers .", "storylet_id": "235377"}], [{"original_text": "And when he wasn't singing, he was jamming on the guitar.", "album_id": "72157625907820708", "photo_flickr_id": "5388704005", "setting": "first-2-pick-and-tell", "worker_id": "LYC595SSRTMLQ2F", "story_id": "47075", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and when he was n't singing , he was jamming on the guitar .", "storylet_id": "235378"}], [{"original_text": "This was such an awesome concert, I'd see it again!", "album_id": "72157625907820708", "photo_flickr_id": "5389316984", "setting": "first-2-pick-and-tell", "worker_id": "LYC595SSRTMLQ2F", "story_id": "47075", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was such an awesome concert , i 'd see it again !", "storylet_id": "235379"}], [{"original_text": "We were there to watch him.", "album_id": "72157625907820708", "photo_flickr_id": "5389359796", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47076", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were there to watch him .", "storylet_id": "235380"}], [{"original_text": "He was on the court.", "album_id": "72157625907820708", "photo_flickr_id": "5389341422", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47076", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was on the court .", "storylet_id": "235381"}], [{"original_text": "It was good to be honored.", "album_id": "72157625907820708", "photo_flickr_id": "5388751261", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47076", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was good to be honored .", "storylet_id": "235382"}], [{"original_text": "It was a cold night.", "album_id": "72157625907820708", "photo_flickr_id": "5388753027", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47076", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a cold night .", "storylet_id": "235383"}], [{"original_text": "They are the cutest couple.", "album_id": "72157625907820708", "photo_flickr_id": "5389356370", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47076", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are the cutest couple .", "storylet_id": "235384"}], [{"original_text": "This concert was really fun!", "album_id": "72157625907820708", "photo_flickr_id": "5389359636", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47077", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this concert was really fun !", "storylet_id": "235385"}], [{"original_text": "There were a lot of people there and the performers even got the crowd involved.", "album_id": "72157625907820708", "photo_flickr_id": "5388720009", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47077", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people there and the performers even got the crowd involved .", "storylet_id": "235386"}], [{"original_text": "The performers themselves were very talented", "album_id": "72157625907820708", "photo_flickr_id": "5388706397", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47077", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the performers themselves were very talented", "storylet_id": "235387"}], [{"original_text": "and really got people excited for the party.", "album_id": "72157625907820708", "photo_flickr_id": "5388704005", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47077", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and really got people excited for the party .", "storylet_id": "235388"}], [{"original_text": "At the end of the day, we all had fun singing, dancing and making memories.", "album_id": "72157625907820708", "photo_flickr_id": "5389316984", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47077", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , we all had fun singing , dancing and making memories .", "storylet_id": "235389"}], [{"original_text": "This is a singer known as Bad Rad. ", "album_id": "72157625907820708", "photo_flickr_id": "5389359636", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47078", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a singer known as bad rad .", "storylet_id": "235390"}], [{"original_text": "The back up singer and Bad Rad have been friends since childhood. ", "album_id": "72157625907820708", "photo_flickr_id": "5388720009", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47078", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the back up singer and bad rad have been friends since childhood .", "storylet_id": "235391"}], [{"original_text": "Bad Rad started the group when they were in their late teens. ", "album_id": "72157625907820708", "photo_flickr_id": "5388706397", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47078", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "bad rad started the group when they were in their late teens .", "storylet_id": "235392"}], [{"original_text": "He also plays lead guitar for the group. ", "album_id": "72157625907820708", "photo_flickr_id": "5388704005", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47078", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he also plays lead guitar for the group .", "storylet_id": "235393"}], [{"original_text": "At the end Bad Rad raises his arms in solidarity with his many fans. ", "album_id": "72157625907820708", "photo_flickr_id": "5389316984", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47078", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end bad rad raises his arms in solidarity with his many fans .", "storylet_id": "235394"}], [{"original_text": "Man dancing to the ground. ", "album_id": "72157625907820708", "photo_flickr_id": "5389359636", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47079", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "man dancing to the ground .", "storylet_id": "235395"}], [{"original_text": "Letting a fan sing in the mic. ", "album_id": "72157625907820708", "photo_flickr_id": "5388720009", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47079", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "letting a fan sing in the mic .", "storylet_id": "235396"}], [{"original_text": "Singer singing to the crowd. ", "album_id": "72157625907820708", "photo_flickr_id": "5388706397", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47079", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "singer singing to the crowd .", "storylet_id": "235397"}], [{"original_text": "Musicians playing their guitars. ", "album_id": "72157625907820708", "photo_flickr_id": "5388704005", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47079", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "musicians playing their guitars .", "storylet_id": "235398"}], [{"original_text": "Thanking his fans for their support. ", "album_id": "72157625907820708", "photo_flickr_id": "5389316984", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47079", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thanking his fans for their support .", "storylet_id": "235399"}], [{"original_text": "The annual homecoming celebration at the local high school went really well.", "album_id": "72157627638300109", "photo_flickr_id": "6187788024", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47080", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the annual homecoming celebration at the local high school went really well .", "storylet_id": "235400"}], [{"original_text": "A lot of people were honored in front of a big crowd.", "album_id": "72157627638300109", "photo_flickr_id": "6187268329", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47080", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of people were honored in front of a big crowd .", "storylet_id": "235401"}], [{"original_text": "Kids walked on the field as their parents accompanied them. ", "album_id": "72157627638300109", "photo_flickr_id": "6187795440", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47080", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "kids walked on the field as their parents accompanied them .", "storylet_id": "235402"}], [{"original_text": "The king and queen were crowned. It was cool to watch.", "album_id": "72157627638300109", "photo_flickr_id": "6187289835", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47080", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the king and queen were crowned . it was cool to watch .", "storylet_id": "235403"}], [{"original_text": "They took a nice picture together with their tiara and crown on respectively. Congrats you two!", "album_id": "72157627638300109", "photo_flickr_id": "6187295451", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47080", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they took a nice picture together with their tiara and crown on respectively . congrats you two !", "storylet_id": "235404"}], [{"original_text": "I was so glad to attend the graduation ceremony.", "album_id": "72157627638300109", "photo_flickr_id": "6187788890", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47081", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was so glad to attend the graduation ceremony .", "storylet_id": "235405"}], [{"original_text": "Many of the students were happy to finally graduate.", "album_id": "72157627638300109", "photo_flickr_id": "6187268329", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47081", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of the students were happy to finally graduate .", "storylet_id": "235406"}], [{"original_text": "All of the students brought their friends and family to support them.", "album_id": "72157627638300109", "photo_flickr_id": "6187269537", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47081", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of the students brought their friends and family to support them .", "storylet_id": "235407"}], [{"original_text": "I took plenty of pictures while I was there.", "album_id": "72157627638300109", "photo_flickr_id": "6187792076", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47081", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i took plenty of pictures while i was there .", "storylet_id": "235408"}], [{"original_text": "I had a great time.", "album_id": "72157627638300109", "photo_flickr_id": "6187271017", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47081", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time .", "storylet_id": "235409"}], [{"original_text": "Mom and dad are so proud of their baby girl.", "album_id": "72157627638300109", "photo_flickr_id": "6187788024", "setting": "last-3-pick-old-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "47082", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom and dad are so proud of their baby girl .", "storylet_id": "235410"}], [{"original_text": "All the siblings were asked to get together and take a picture.", "album_id": "72157627638300109", "photo_flickr_id": "6187268329", "setting": "last-3-pick-old-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "47082", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the siblings were asked to get together and take a picture .", "storylet_id": "235411"}], [{"original_text": "Even mom got a great shot of her son here.", "album_id": "72157627638300109", "photo_flickr_id": "6187795440", "setting": "last-3-pick-old-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "47082", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even mom got a great shot of her son here .", "storylet_id": "235412"}], [{"original_text": "All the friends got together and shared in on the fun.", "album_id": "72157627638300109", "photo_flickr_id": "6187289835", "setting": "last-3-pick-old-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "47082", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all the friends got together and shared in on the fun .", "storylet_id": "235413"}], [{"original_text": "King and queen they are crowned.", "album_id": "72157627638300109", "photo_flickr_id": "6187295451", "setting": "last-3-pick-old-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "47082", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] and queen they are crowned .", "storylet_id": "235414"}], [{"original_text": "Today was the home coming game at my daughter's high school.", "album_id": "72157627638300109", "photo_flickr_id": "6187788024", "setting": "last-3-pick-old-and-tell", "worker_id": "VFCFA9B9A21T801", "story_id": "47083", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the home coming game at my daughter 's high school .", "storylet_id": "235415"}], [{"original_text": "A lot of her friends were jealous that she was in the running from home coming queen.", "album_id": "72157627638300109", "photo_flickr_id": "6187268329", "setting": "last-3-pick-old-and-tell", "worker_id": "VFCFA9B9A21T801", "story_id": "47083", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of her friends were jealous that she was in the running from home coming queen .", "storylet_id": "235416"}], [{"original_text": "This young man was also in the running but no one thought he would win.", "album_id": "72157627638300109", "photo_flickr_id": "6187795440", "setting": "last-3-pick-old-and-tell", "worker_id": "VFCFA9B9A21T801", "story_id": "47083", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this young man was also in the running but no one thought he would win .", "storylet_id": "235417"}], [{"original_text": "Alas, another girl won home coming queen that night", "album_id": "72157627638300109", "photo_flickr_id": "6187289835", "setting": "last-3-pick-old-and-tell", "worker_id": "VFCFA9B9A21T801", "story_id": "47083", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "alas , another girl won home coming queen that night", "storylet_id": "235418"}], [{"original_text": "As you can see, the homecoming court were elated.", "album_id": "72157627638300109", "photo_flickr_id": "6187295451", "setting": "last-3-pick-old-and-tell", "worker_id": "VFCFA9B9A21T801", "story_id": "47083", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as you can see , the homecoming court were elated .", "storylet_id": "235419"}], [{"original_text": "The parents walked her out to the field for the home coming celebration.", "album_id": "72157627638300109", "photo_flickr_id": "6187788024", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47084", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parents walked her out to the field for the home coming celebration .", "storylet_id": "235420"}], [{"original_text": "Then other students walked out to the field.", "album_id": "72157627638300109", "photo_flickr_id": "6187268329", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47084", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then other students walked out to the field .", "storylet_id": "235421"}], [{"original_text": "The teachers walked out with some of the other students.", "album_id": "72157627638300109", "photo_flickr_id": "6187795440", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47084", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the teachers walked out with some of the other students .", "storylet_id": "235422"}], [{"original_text": "After that they presented the home coming king and queen with their crowns.", "album_id": "72157627638300109", "photo_flickr_id": "6187289835", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47084", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that they presented the home coming king and queen with their crowns .", "storylet_id": "235423"}], [{"original_text": "They were so excited to receive the honor.", "album_id": "72157627638300109", "photo_flickr_id": "6187295451", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47084", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were so excited to receive the honor .", "storylet_id": "235424"}], [{"original_text": "Everyone was pumped up for the speech today, including myself.", "album_id": "72157624477904553", "photo_flickr_id": "4838273542", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47085", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was pumped up for the speech today , including myself .", "storylet_id": "235425"}], [{"original_text": "Although there were not many guests, it didn't interfere with the event.", "album_id": "72157624477904553", "photo_flickr_id": "4837644779", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47085", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "although there were not many guests , it did n't interfere with the event .", "storylet_id": "235426"}], [{"original_text": "Pamela became the first guest speaker and she expressed the importance of drug awareness.", "album_id": "72157624477904553", "photo_flickr_id": "4837652239", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47085", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] became the first guest speaker and she expressed the importance of drug awareness .", "storylet_id": "235427"}], [{"original_text": "I didn't bother to make a joke or anything since her speech made be breathless.", "album_id": "72157624477904553", "photo_flickr_id": "4838262640", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47085", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i did n't bother to make a joke or anything since her speech made be breathless .", "storylet_id": "235428"}], [{"original_text": "Afterwards, everyone enjoyed a great lunch.", "album_id": "72157624477904553", "photo_flickr_id": "4837647601", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47085", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , everyone enjoyed a great lunch .", "storylet_id": "235429"}], [{"original_text": "A church was an odd place for this particular gathering.", "album_id": "72157624477904553", "photo_flickr_id": "4837644779", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47086", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a church was an odd place for this particular gathering .", "storylet_id": "235430"}], [{"original_text": "But the Horchata championships needed someplace to have their event.", "album_id": "72157624477904553", "photo_flickr_id": "4837647601", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47086", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but the horchata championships needed someplace to have their event .", "storylet_id": "235431"}], [{"original_text": "Hundreds of entrants usually showed up.", "album_id": "72157624477904553", "photo_flickr_id": "4838260476", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47086", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "hundreds of entrants usually showed up .", "storylet_id": "235432"}], [{"original_text": "Paul Wu gave out his secret recipe.", "album_id": "72157624477904553", "photo_flickr_id": "4837656261", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47086", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] wu gave out his secret recipe .", "storylet_id": "235433"}], [{"original_text": "Jane Elderberry told the attendees about new GM horschata.", "album_id": "72157624477904553", "photo_flickr_id": "4838270250", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47086", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] elderberry told the attendees about new organization horschata .", "storylet_id": "235434"}], [{"original_text": "Before the church convention begins, some of the members clown around.", "album_id": "72157624477904553", "photo_flickr_id": "4838273542", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47087", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before the church convention begins , some of the members clown around .", "storylet_id": "235435"}], [{"original_text": "One of the speakers walks up the podium.", "album_id": "72157624477904553", "photo_flickr_id": "4837644779", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47087", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of the speakers walks up the podium .", "storylet_id": "235436"}], [{"original_text": "Another church member makes the announcements.", "album_id": "72157624477904553", "photo_flickr_id": "4837652239", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47087", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another church member makes the announcements .", "storylet_id": "235437"}], [{"original_text": "Two members listen intently to the service.", "album_id": "72157624477904553", "photo_flickr_id": "4838262640", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47087", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two members listen intently to the service .", "storylet_id": "235438"}], [{"original_text": "After the service is over, the congregation has refreshments.", "album_id": "72157624477904553", "photo_flickr_id": "4837647601", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47087", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the service is over , the congregation has refreshments .", "storylet_id": "235439"}], [{"original_text": "We decided to have an event at the church so we had a chance to meet and get to know new members.", "album_id": "72157624477904553", "photo_flickr_id": "4838273542", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "47088", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to have an event at the church so we had a chance to meet and get to know new members .", "storylet_id": "235440"}], [{"original_text": "Some of us arrived early to prepare.", "album_id": "72157624477904553", "photo_flickr_id": "4837644779", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "47088", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of us arrived early to prepare .", "storylet_id": "235441"}], [{"original_text": "Our friend gave a speech about what the church meant to her.", "album_id": "72157624477904553", "photo_flickr_id": "4837652239", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "47088", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our friend gave a speech about what the church meant to her .", "storylet_id": "235442"}], [{"original_text": "A couple of new members listened intently.", "album_id": "72157624477904553", "photo_flickr_id": "4838262640", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "47088", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a couple of new members listened intently .", "storylet_id": "235443"}], [{"original_text": "We had refreshments to serve after the services.", "album_id": "72157624477904553", "photo_flickr_id": "4837647601", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "47088", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had refreshments to serve after the services .", "storylet_id": "235444"}], [{"original_text": "The church council gathered to hear about the missionary reports. ", "album_id": "72157624477904553", "photo_flickr_id": "4838273542", "setting": "last-3-pick-old-and-tell", "worker_id": "OMALQHAJCPRZ4E0", "story_id": "47089", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the church council gathered to hear about the missionary reports .", "storylet_id": "235445"}], [{"original_text": "It was an informal gathering as everyone sat in the sanctuary to hear the speakers. ", "album_id": "72157624477904553", "photo_flickr_id": "4837644779", "setting": "last-3-pick-old-and-tell", "worker_id": "OMALQHAJCPRZ4E0", "story_id": "47089", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was an informal gathering as everyone sat in the sanctuary to hear the speakers .", "storylet_id": "235446"}], [{"original_text": "The head missionary told stories of successful work and happy children on their travels. ", "album_id": "72157624477904553", "photo_flickr_id": "4837652239", "setting": "last-3-pick-old-and-tell", "worker_id": "OMALQHAJCPRZ4E0", "story_id": "47089", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the head missionary told stories of successful work and happy children on their travels .", "storylet_id": "235447"}], [{"original_text": "The council listened and took notes. ", "album_id": "72157624477904553", "photo_flickr_id": "4838262640", "setting": "last-3-pick-old-and-tell", "worker_id": "OMALQHAJCPRZ4E0", "story_id": "47089", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the council listened and took notes .", "storylet_id": "235448"}], [{"original_text": "A luncheon with foods from the trip were served for the council. ", "album_id": "72157624477904553", "photo_flickr_id": "4837647601", "setting": "last-3-pick-old-and-tell", "worker_id": "OMALQHAJCPRZ4E0", "story_id": "47089", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a luncheon with foods from the trip were served for the council .", "storylet_id": "235449"}], [{"original_text": "The women's basketball game was today.", "album_id": "72157626367932082", "photo_flickr_id": "5565618266", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47090", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the women 's basketball game was today .", "storylet_id": "235450"}], [{"original_text": "The team members were seen on the campus before the game.", "album_id": "72157626367932082", "photo_flickr_id": "5573141447", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47090", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the team members were seen on the campus before the game .", "storylet_id": "235451"}], [{"original_text": "Everyone got into their uniforms to play.", "album_id": "72157626367932082", "photo_flickr_id": "5573733896", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47090", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone got into their uniforms to play .", "storylet_id": "235452"}], [{"original_text": "After the game two of the players were seen shaking hands.", "album_id": "72157626367932082", "photo_flickr_id": "5573746986", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47090", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the game two of the players were seen shaking hands .", "storylet_id": "235453"}], [{"original_text": "Spokane ended up winning the game.", "album_id": "72157626367932082", "photo_flickr_id": "5573203941", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47090", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "location ended up winning the game .", "storylet_id": "235454"}], [{"original_text": "Here is a ticket we saved from the 2011 NCAA Division I Women's Basketball Championship played at Spokane Arena on March 28, 2011.", "album_id": "72157626367932082", "photo_flickr_id": "5565618266", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "47091", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is a ticket we saved from the 2011 organization division i women 's basketball championship played at location location on march 28 , 2011 .", "storylet_id": "235455"}], [{"original_text": "Here is a picture of some of the women players getting fired up before the game.", "album_id": "72157626367932082", "photo_flickr_id": "5573133771", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "47091", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is a picture of some of the women players getting fired up before the game .", "storylet_id": "235456"}], [{"original_text": "The game was covered by ESPN so it was a big deal for Women's Basketball.", "album_id": "72157626367932082", "photo_flickr_id": "5573733896", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "47091", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the game was covered by organization so it was a big deal for women 's basketball .", "storylet_id": "235457"}], [{"original_text": "You can see the good sportsmanship being shown between the two teams right before tip off.", "album_id": "72157626367932082", "photo_flickr_id": "5573152499", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "47091", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you can see the good sportsmanship being shown between the two teams right before tip off .", "storylet_id": "235458"}], [{"original_text": "The thrill of victory is savored by the winners as one by one they climb the ladder to each take turns cutting down the net as is tradition.", "album_id": "72157626367932082", "photo_flickr_id": "5573793432", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "47091", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the thrill of victory is savored by the winners as one by one they climb the ladder to each take turns cutting down the net as is tradition .", "storylet_id": "235459"}], [{"original_text": "The boss gave the company tickets to see the women's basketball NCAA game.", "album_id": "72157626367932082", "photo_flickr_id": "5565618266", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47092", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boss gave the company tickets to see the women 's basketball organization game .", "storylet_id": "235460"}], [{"original_text": "After heading out with a few workers to the game, we saw a few of the girls that were going to be playing at the game.", "album_id": "72157626367932082", "photo_flickr_id": "5573141447", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47092", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after heading out with a few workers to the game , we saw a few of the girls that were going to be playing at the game .", "storylet_id": "235461"}], [{"original_text": "The place was crowded, but the seats we had gave us a great view of the game.", "album_id": "72157626367932082", "photo_flickr_id": "5573733896", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47092", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the place was crowded , but the seats we had gave us a great view of the game .", "storylet_id": "235462"}], [{"original_text": "At the end of the game, two opposing players greeted one another with a handshake.", "album_id": "72157626367932082", "photo_flickr_id": "5573746986", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47092", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the end of the game , two opposing players greeted one another with a handshake .", "storylet_id": "235463"}], [{"original_text": "The home town won the game. We were surprised by how close the game was in points. ", "album_id": "72157626367932082", "photo_flickr_id": "5573203941", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47092", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the home town won the game . we were surprised by how close the game was in points .", "storylet_id": "235464"}], [{"original_text": "Today is the big game.", "album_id": "72157626367932082", "photo_flickr_id": "5565618266", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "47093", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is the big game .", "storylet_id": "235465"}], [{"original_text": "The players are getting ready.", "album_id": "72157626367932082", "photo_flickr_id": "5573133771", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "47093", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the players are getting ready .", "storylet_id": "235466"}], [{"original_text": "The crowd is ready for the game.", "album_id": "72157626367932082", "photo_flickr_id": "5573733896", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "47093", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowd is ready for the game .", "storylet_id": "235467"}], [{"original_text": "The players are greeting each other.", "album_id": "72157626367932082", "photo_flickr_id": "5573152499", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "47093", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the players are greeting each other .", "storylet_id": "235468"}], [{"original_text": "The winning team is taking down the net and that ends the game and the day.", "album_id": "72157626367932082", "photo_flickr_id": "5573793432", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "47093", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the winning team is taking down the net and that ends the game and the day .", "storylet_id": "235469"}], [{"original_text": "It was exciting to have our first ticket for the championship.", "album_id": "72157626367932082", "photo_flickr_id": "5565618266", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47094", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was exciting to have our first ticket for the championship .", "storylet_id": "235470"}], [{"original_text": "We even got a glimpse of the team as they were walking towards the arena.", "album_id": "72157626367932082", "photo_flickr_id": "5573141447", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47094", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we even got a glimpse of the team as they were walking towards the arena .", "storylet_id": "235471"}], [{"original_text": "Before the game the team members gathered in front of the locker rooms.", "album_id": "72157626367932082", "photo_flickr_id": "5573733896", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47094", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "before the game the team members gathered in front of the locker rooms .", "storylet_id": "235472"}], [{"original_text": "On the court, the captain of each team shook hands.", "album_id": "72157626367932082", "photo_flickr_id": "5573746986", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47094", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on the court , the captain of each team shook hands .", "storylet_id": "235473"}], [{"original_text": "It was a great game, with the home team maintaining their wins.", "album_id": "72157626367932082", "photo_flickr_id": "5573203941", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47094", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great game , with the home team maintaining their wins .", "storylet_id": "235474"}], [{"original_text": "This guy got up in the morning and made breakfast.", "album_id": "1006285", "photo_flickr_id": "46054230", "setting": "first-2-pick-and-tell", "worker_id": "I5O0CD9SCPN5VOA", "story_id": "47095", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this guy got up in the morning and made breakfast .", "storylet_id": "235475"}], [{"original_text": "He drove to school and sat through traffic.", "album_id": "1006285", "photo_flickr_id": "46059377", "setting": "first-2-pick-and-tell", "worker_id": "I5O0CD9SCPN5VOA", "story_id": "47095", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he drove to school and sat through traffic .", "storylet_id": "235476"}], [{"original_text": "Gas was pretty average that day, so he stopped and filled up his tank.", "album_id": "1006285", "photo_flickr_id": "46059378", "setting": "first-2-pick-and-tell", "worker_id": "I5O0CD9SCPN5VOA", "story_id": "47095", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "gas was pretty average that day , so he stopped and filled up his tank .", "storylet_id": "235477"}], [{"original_text": "He got to school and got his books for his classes.", "album_id": "1006285", "photo_flickr_id": "46059380", "setting": "first-2-pick-and-tell", "worker_id": "I5O0CD9SCPN5VOA", "story_id": "47095", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he got to school and got his books for his classes .", "storylet_id": "235478"}], [{"original_text": "He studied throughout the day, making sure to finish his homework.", "album_id": "1006285", "photo_flickr_id": "46063387", "setting": "first-2-pick-and-tell", "worker_id": "I5O0CD9SCPN5VOA", "story_id": "47095", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he studied throughout the day , making sure to finish his homework .", "storylet_id": "235479"}], [{"original_text": "Time to start the day.", "album_id": "1006285", "photo_flickr_id": "45960378", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47096", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "time to start the day .", "storylet_id": "235480"}], [{"original_text": "First I get dressed.", "album_id": "1006285", "photo_flickr_id": "45960380", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47096", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first i get dressed .", "storylet_id": "235481"}], [{"original_text": "Next there is laundry to be done.", "album_id": "1006285", "photo_flickr_id": "46067545", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47096", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next there is laundry to be done .", "storylet_id": "235482"}], [{"original_text": "I can't forget to make dinner.", "album_id": "1006285", "photo_flickr_id": "46065990", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47096", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i ca n't forget to make dinner .", "storylet_id": "235483"}], [{"original_text": "Sigh... I think it's time for a nap.", "album_id": "1006285", "photo_flickr_id": "46069439", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47096", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sigh ... i think it 's time for a nap .", "storylet_id": "235484"}], [{"original_text": "Mom was getting ready for her night.", "album_id": "1006285", "photo_flickr_id": "45960378", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47097", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom was getting ready for her night .", "storylet_id": "235485"}], [{"original_text": "She buttoned up her jeans and got to work.", "album_id": "1006285", "photo_flickr_id": "45960380", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47097", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she buttoned up her jeans and got to work .", "storylet_id": "235486"}], [{"original_text": "Staring at the laundry made her dizzy.", "album_id": "1006285", "photo_flickr_id": "46067545", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47097", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "staring at the laundry made her dizzy .", "storylet_id": "235487"}], [{"original_text": "The dinner was in the oven.", "album_id": "1006285", "photo_flickr_id": "46065990", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47097", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dinner was in the oven .", "storylet_id": "235488"}], [{"original_text": "Mom passed out and Dad took dinner out of the oven.", "album_id": "1006285", "photo_flickr_id": "46069439", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47097", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mom passed out and dad took dinner out of the oven .", "storylet_id": "235489"}], [{"original_text": "A typical day for my son. He helps with breakfast.", "album_id": "1006285", "photo_flickr_id": "46054230", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47098", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a typical day for my son . he helps with breakfast .", "storylet_id": "235490"}], [{"original_text": "I let him drive because he just got his license and needs the practice.", "album_id": "1006285", "photo_flickr_id": "46059377", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47098", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i let him drive because he just got his license and needs the practice .", "storylet_id": "235491"}], [{"original_text": "I think we'll wait on filling up and see if the gas price goes down.", "album_id": "1006285", "photo_flickr_id": "46059378", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47098", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i think we 'll wait on filling up and see if the gas price goes down .", "storylet_id": "235492"}], [{"original_text": "The halls are a busy place before classes.", "album_id": "1006285", "photo_flickr_id": "46059380", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47098", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the halls are a busy place before classes .", "storylet_id": "235493"}], [{"original_text": "The kids get a break to read during the day before heading home to do homework.", "album_id": "1006285", "photo_flickr_id": "46063387", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47098", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids get a break to read during the day before heading home to do homework .", "storylet_id": "235494"}], [{"original_text": "A woman documented some of her typical routines.", "album_id": "1006285", "photo_flickr_id": "45960378", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "47099", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a woman documented some of her typical routines .", "storylet_id": "235495"}], [{"original_text": "She got dressed in normal clothes.", "album_id": "1006285", "photo_flickr_id": "45960380", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "47099", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she got dressed in normal clothes .", "storylet_id": "235496"}], [{"original_text": "The woman did laundry, carefully washing clothes of similar colors.", "album_id": "1006285", "photo_flickr_id": "46067545", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "47099", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the woman did laundry , carefully washing clothes of similar colors .", "storylet_id": "235497"}], [{"original_text": "She baked lasagna in a white dish in an electric oven.", "album_id": "1006285", "photo_flickr_id": "46065990", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "47099", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she baked lasagna in a white dish in an electric oven .", "storylet_id": "235498"}], [{"original_text": "She concluded her day by tiredly falling asleep.", "album_id": "1006285", "photo_flickr_id": "46069439", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "47099", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she concluded her day by tiredly falling asleep .", "storylet_id": "235499"}], [{"original_text": "The tigers got the tip off at the beginning of the game.", "album_id": "72157625944175014", "photo_flickr_id": "5403953506", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47100", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tigers got the tip off at the beginning of the game .", "storylet_id": "235500"}], [{"original_text": "But soon the Bears took over.", "album_id": "72157625944175014", "photo_flickr_id": "5403371467", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47100", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but soon the bears took over .", "storylet_id": "235501"}], [{"original_text": "One fan slipped on the floor but was helped by the mascot as the cheerleaders looked on.", "album_id": "72157625944175014", "photo_flickr_id": "5403927438", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47100", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one fan slipped on the floor but was helped by the mascot as the cheerleaders looked on .", "storylet_id": "235502"}], [{"original_text": "The Bears continued to lead the game.", "album_id": "72157625944175014", "photo_flickr_id": "5403394087", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47100", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bears continued to lead the game .", "storylet_id": "235503"}], [{"original_text": "All the way until the final shot. 99-60.", "album_id": "72157625944175014", "photo_flickr_id": "5403984732", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47100", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the way until the final shot . 99-60 .", "storylet_id": "235504"}], [{"original_text": "It was the last game of the year.", "album_id": "72157625944175014", "photo_flickr_id": "5403336043", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "47101", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the last game of the year .", "storylet_id": "235505"}], [{"original_text": "The rivalry between the two teams was intense.", "album_id": "72157625944175014", "photo_flickr_id": "5403328551", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "47101", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rivalry between the two teams was intense .", "storylet_id": "235506"}], [{"original_text": "Both teams were evenly matched.", "album_id": "72157625944175014", "photo_flickr_id": "5403400415", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "47101", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "both teams were evenly matched .", "storylet_id": "235507"}], [{"original_text": "But when Davis saw an opportunity, they took it.", "album_id": "72157625944175014", "photo_flickr_id": "5403997372", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "47101", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but when [male] saw an opportunity , they took it .", "storylet_id": "235508"}], [{"original_text": "And scored the winning point of the game. ", "album_id": "72157625944175014", "photo_flickr_id": "5403381631", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "47101", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and scored the winning point of the game .", "storylet_id": "235509"}], [{"original_text": "The game was getting very close.", "album_id": "72157625944175014", "photo_flickr_id": "5403953506", "setting": "last-3-pick-old-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47102", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the game was getting very close .", "storylet_id": "235510"}], [{"original_text": "Both teams were playing a good game.", "album_id": "72157625944175014", "photo_flickr_id": "5403371467", "setting": "last-3-pick-old-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47102", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "both teams were playing a good game .", "storylet_id": "235511"}], [{"original_text": "She put on a little show during half time.", "album_id": "72157625944175014", "photo_flickr_id": "5403927438", "setting": "last-3-pick-old-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47102", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she put on a little show during half time .", "storylet_id": "235512"}], [{"original_text": "He was one of the best players of the game", "album_id": "72157625944175014", "photo_flickr_id": "5403394087", "setting": "last-3-pick-old-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47102", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was one of the best players of the game", "storylet_id": "235513"}], [{"original_text": "He made the winning shot.", "album_id": "72157625944175014", "photo_flickr_id": "5403984732", "setting": "last-3-pick-old-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47102", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he made the winning shot .", "storylet_id": "235514"}], [{"original_text": "The kids grabbed made up's when they jumped for the ball.", "album_id": "72157625944175014", "photo_flickr_id": "5403953506", "setting": "last-3-pick-old-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47103", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids grabbed made up 's when they jumped for the ball .", "storylet_id": "235515"}], [{"original_text": "The hoop stars made some crazy moves.", "album_id": "72157625944175014", "photo_flickr_id": "5403371467", "setting": "last-3-pick-old-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47103", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the hoop stars made some crazy moves .", "storylet_id": "235516"}], [{"original_text": "A fan fell from the top deck and died. The janitor bear cleaned up the mess.", "album_id": "72157625944175014", "photo_flickr_id": "5403927438", "setting": "last-3-pick-old-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47103", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a fan fell from the top deck and died . the janitor bear cleaned up the mess .", "storylet_id": "235517"}], [{"original_text": "The game went on and this dude shot like crazy.", "album_id": "72157625944175014", "photo_flickr_id": "5403394087", "setting": "last-3-pick-old-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47103", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the game went on and this dude shot like crazy .", "storylet_id": "235518"}], [{"original_text": "He dipped, ducked, dived, and dodged.", "album_id": "72157625944175014", "photo_flickr_id": "5403984732", "setting": "last-3-pick-old-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47103", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he dipped , ducked , dived , and dodged .", "storylet_id": "235519"}], [{"original_text": "The pre-game antics were very amusing. ", "album_id": "72157625944175014", "photo_flickr_id": "5403336043", "setting": "last-3-pick-old-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47104", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the pre-game antics were very amusing .", "storylet_id": "235520"}], [{"original_text": "The team bear was very funny. ", "album_id": "72157625944175014", "photo_flickr_id": "5403328551", "setting": "last-3-pick-old-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47104", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the team bear was very funny .", "storylet_id": "235521"}], [{"original_text": "The 2 star player squared off as the game began. ", "album_id": "72157625944175014", "photo_flickr_id": "5403400415", "setting": "last-3-pick-old-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47104", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the 2 star player squared off as the game began .", "storylet_id": "235522"}], [{"original_text": "Steve Smart took off on a run. ", "album_id": "72157625944175014", "photo_flickr_id": "5403997372", "setting": "last-3-pick-old-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47104", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] smart took off on a run .", "storylet_id": "235523"}], [{"original_text": "He scored the game winning basket. ", "album_id": "72157625944175014", "photo_flickr_id": "5403381631", "setting": "last-3-pick-old-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47104", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he scored the game winning basket .", "storylet_id": "235524"}], [{"original_text": "Time for a Soccer game, but first a burrito!", "album_id": "72157626005088368", "photo_flickr_id": "5428092677", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "47105", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "time for a soccer game , but first a burrito !", "storylet_id": "235525"}], [{"original_text": "My favorite team was warming up.", "album_id": "72157626005088368", "photo_flickr_id": "5428092803", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "47105", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my favorite team was warming up .", "storylet_id": "235526"}], [{"original_text": "stands were filling up, the game was about to begin. ", "album_id": "72157626005088368", "photo_flickr_id": "5428695058", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "47105", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "stands were filling up , the game was about to begin .", "storylet_id": "235527"}], [{"original_text": "our best player and captain.", "album_id": "72157626005088368", "photo_flickr_id": "5428093253", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "47105", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our best player and captain .", "storylet_id": "235528"}], [{"original_text": "The jump for the ball. it was a fun game. ", "album_id": "72157626005088368", "photo_flickr_id": "5428696010", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "47105", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the jump for the ball . it was a fun game .", "storylet_id": "235529"}], [{"original_text": "The girls bought pizza from the concession stand. ", "album_id": "72157626005088368", "photo_flickr_id": "5428092287", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47106", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girls bought pizza from the concession stand .", "storylet_id": "235530"}], [{"original_text": "All they guys were hungry too. ", "album_id": "72157626005088368", "photo_flickr_id": "5428694698", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47106", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all they guys were hungry too .", "storylet_id": "235531"}], [{"original_text": "The soccer team lined the field for the national anthem. ", "album_id": "72157626005088368", "photo_flickr_id": "5428092803", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47106", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the soccer team lined the field for the national anthem .", "storylet_id": "235532"}], [{"original_text": "It was a close game. ", "album_id": "72157626005088368", "photo_flickr_id": "5428695058", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47106", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a close game .", "storylet_id": "235533"}], [{"original_text": "Many of the spectators got up out of their seats to cheer their team to victory. ", "album_id": "72157626005088368", "photo_flickr_id": "5428093061", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47106", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many of the spectators got up out of their seats to cheer their team to victory .", "storylet_id": "235534"}], [{"original_text": "The players interviewed before the game.", "album_id": "72157626005088368", "photo_flickr_id": "5428092677", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47107", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the players interviewed before the game .", "storylet_id": "235535"}], [{"original_text": "Then they walked out onto the field.", "album_id": "72157626005088368", "photo_flickr_id": "5428092803", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47107", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then they walked out onto the field .", "storylet_id": "235536"}], [{"original_text": "The crowd gathered in the bleachers.", "album_id": "72157626005088368", "photo_flickr_id": "5428695058", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47107", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowd gathered in the bleachers .", "storylet_id": "235537"}], [{"original_text": "The game began with an epic shot.", "album_id": "72157626005088368", "photo_flickr_id": "5428093253", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47107", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the game began with an epic shot .", "storylet_id": "235538"}], [{"original_text": "It was a close game and an awesome night.", "album_id": "72157626005088368", "photo_flickr_id": "5428696010", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47107", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a close game and an awesome night .", "storylet_id": "235539"}], [{"original_text": "I'm getting ready for the soccer match by loading up on a few snacks beforehand.", "album_id": "72157626005088368", "photo_flickr_id": "5428092677", "setting": "last-3-pick-old-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "47108", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 'm getting ready for the soccer match by loading up on a few snacks beforehand .", "storylet_id": "235540"}], [{"original_text": "The teams are being introduced and you can feel the excitement building.", "album_id": "72157626005088368", "photo_flickr_id": "5428092803", "setting": "last-3-pick-old-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "47108", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the teams are being introduced and you can feel the excitement building .", "storylet_id": "235541"}], [{"original_text": "Fans are getting aroused and are pulling hard for their team.", "album_id": "72157626005088368", "photo_flickr_id": "5428695058", "setting": "last-3-pick-old-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "47108", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "fans are getting aroused and are pulling hard for their team .", "storylet_id": "235542"}], [{"original_text": "The player has gotten free for a one on one with the goalie.", "album_id": "72157626005088368", "photo_flickr_id": "5428093253", "setting": "last-3-pick-old-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "47108", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the player has gotten free for a one on one with the goalie .", "storylet_id": "235543"}], [{"original_text": "Action is intense as the teams battle hard.", "album_id": "72157626005088368", "photo_flickr_id": "5428696010", "setting": "last-3-pick-old-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "47108", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "action is intense as the teams battle hard .", "storylet_id": "235544"}], [{"original_text": "Everyone cooked out before the game. ", "album_id": "72157626005088368", "photo_flickr_id": "5428092677", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "47109", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone cooked out before the game .", "storylet_id": "235545"}], [{"original_text": "The soccer players lined up to be introduced. ", "album_id": "72157626005088368", "photo_flickr_id": "5428092803", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "47109", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the soccer players lined up to be introduced .", "storylet_id": "235546"}], [{"original_text": "The fans cheered from the sideline. ", "album_id": "72157626005088368", "photo_flickr_id": "5428695058", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "47109", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fans cheered from the sideline .", "storylet_id": "235547"}], [{"original_text": "He got ready to take the shot. ", "album_id": "72157626005088368", "photo_flickr_id": "5428093253", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "47109", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he got ready to take the shot .", "storylet_id": "235548"}], [{"original_text": "The game was very intense until the end. ", "album_id": "72157626005088368", "photo_flickr_id": "5428696010", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "47109", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the game was very intense until the end .", "storylet_id": "235549"}], [{"original_text": "Re-enactors show their costumes at a local homestead.", "album_id": "72157607012581475", "photo_flickr_id": "2809172764", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47110", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "re-enactors show their costumes at a local homestead .", "storylet_id": "235550"}], [{"original_text": "They have livestock just like real homesteaders did!", "album_id": "72157607012581475", "photo_flickr_id": "2809172884", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47110", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they have livestock just like real homesteaders did !", "storylet_id": "235551"}], [{"original_text": "The house is an old restored cabin from the 19th century.", "album_id": "72157607012581475", "photo_flickr_id": "2808323585", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47110", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the house is an old restored cabin from the 19th century .", "storylet_id": "235552"}], [{"original_text": "They also display cattle roping talents like the cowboys did in the days of old.", "album_id": "72157607012581475", "photo_flickr_id": "2808324595", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47110", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also display cattle roping talents like the cowboys did in the days of old .", "storylet_id": "235553"}], [{"original_text": "But this young girl is more interested in climbing trees than roping cattle.", "album_id": "72157607012581475", "photo_flickr_id": "2809175474", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47110", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but this young girl is more interested in climbing trees than roping cattle .", "storylet_id": "235554"}], [{"original_text": "While at the park I stood in front of a sign that said beware of alligators and snakes.", "album_id": "72157607012581475", "photo_flickr_id": "2808322861", "setting": "first-2-pick-and-tell", "worker_id": "CQYCL1CIWJKV6O7", "story_id": "47111", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while at the park i stood in front of a sign that said beware of alligators and snakes .", "storylet_id": "235555"}], [{"original_text": "Standing in front of the of the home to show off our newly cut grass and polished exterior on our home.", "album_id": "72157607012581475", "photo_flickr_id": "2809173478", "setting": "first-2-pick-and-tell", "worker_id": "CQYCL1CIWJKV6O7", "story_id": "47111", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "standing in front of the of the home to show off our newly cut grass and polished exterior on our home .", "storylet_id": "235556"}], [{"original_text": "Deer heads on the wall are a collection made to show off my love of hunting.", "album_id": "72157607012581475", "photo_flickr_id": "2808325251", "setting": "first-2-pick-and-tell", "worker_id": "CQYCL1CIWJKV6O7", "story_id": "47111", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "deer heads on the wall are a collection made to show off my love of hunting .", "storylet_id": "235557"}], [{"original_text": "The family standing in back of the wooden balcony happily enjoying vacation time. ", "album_id": "72157607012581475", "photo_flickr_id": "2809175092", "setting": "first-2-pick-and-tell", "worker_id": "CQYCL1CIWJKV6O7", "story_id": "47111", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family standing in back of the wooden balcony happily enjoying vacation time .", "storylet_id": "235558"}], [{"original_text": "The husband and wife are standing in between a tree they find amusing because of its shape.", "album_id": "72157607012581475", "photo_flickr_id": "2809175178", "setting": "first-2-pick-and-tell", "worker_id": "CQYCL1CIWJKV6O7", "story_id": "47111", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the husband and wife are standing in between a tree they find amusing because of its shape .", "storylet_id": "235559"}], [{"original_text": "My husband doesn't take caution signs seriously, it may someday come back to bite him.", "album_id": "72157607012581475", "photo_flickr_id": "2808322861", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "47112", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband does n't take caution signs seriously , it may someday come back to bite him .", "storylet_id": "235560"}], [{"original_text": "We made sure to visit some historic homes on our vacation to the south.", "album_id": "72157607012581475", "photo_flickr_id": "2809173478", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "47112", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made sure to visit some historic homes on our vacation to the south .", "storylet_id": "235561"}], [{"original_text": "One house in particular had a large display of hunting trophies, kinda creepy.", "album_id": "72157607012581475", "photo_flickr_id": "2808325251", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "47112", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one house in particular had a large display of hunting trophies , kinda creepy .", "storylet_id": "235562"}], [{"original_text": "Although a lot of historic homes in the southern US had amazing porches to look over farmlands.", "album_id": "72157607012581475", "photo_flickr_id": "2809175092", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "47112", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "although a lot of historic homes in the southern location had amazing porches to look over farmlands .", "storylet_id": "235563"}], [{"original_text": "We couldn't resist taking a photo in the near by Walnut tree, it was massive.", "album_id": "72157607012581475", "photo_flickr_id": "2809175178", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "47112", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we could n't resist taking a photo in the near by walnut tree , it was massive .", "storylet_id": "235564"}], [{"original_text": "The family went and visited an old ranch in the south.", "album_id": "72157607012581475", "photo_flickr_id": "2809172764", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47113", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went and visited an old ranch in the south .", "storylet_id": "235565"}], [{"original_text": "They saw animals on the ranch that the ranchers take care of.", "album_id": "72157607012581475", "photo_flickr_id": "2809172884", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47113", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they saw animals on the ranch that the ranchers take care of .", "storylet_id": "235566"}], [{"original_text": "The ranchers lived in small houses and they even got to go inside a big plantation home.", "album_id": "72157607012581475", "photo_flickr_id": "2808323585", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47113", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ranchers lived in small houses and they even got to go inside a big plantation home .", "storylet_id": "235567"}], [{"original_text": "The ranchers showed off their talents at cattle roping.", "album_id": "72157607012581475", "photo_flickr_id": "2808324595", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47113", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ranchers showed off their talents at cattle roping .", "storylet_id": "235568"}], [{"original_text": "The little girl even got to climb a big oak tree.", "album_id": "72157607012581475", "photo_flickr_id": "2809175474", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47113", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the little girl even got to climb a big oak tree .", "storylet_id": "235569"}], [{"original_text": "The family had to be careful on their vacation!", "album_id": "72157607012581475", "photo_flickr_id": "2808322861", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47114", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family had to be careful on their vacation !", "storylet_id": "235570"}], [{"original_text": "Mom posed in front of the house.", "album_id": "72157607012581475", "photo_flickr_id": "2809173478", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47114", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom posed in front of the house .", "storylet_id": "235571"}], [{"original_text": "One room was full of stuffed animals.", "album_id": "72157607012581475", "photo_flickr_id": "2808325251", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47114", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one room was full of stuffed animals .", "storylet_id": "235572"}], [{"original_text": "Dad and the kids looked at the view from above.", "album_id": "72157607012581475", "photo_flickr_id": "2809175092", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47114", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dad and the kids looked at the view from above .", "storylet_id": "235573"}], [{"original_text": "Mom and dad cozied up in a tree.", "album_id": "72157607012581475", "photo_flickr_id": "2809175178", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47114", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mom and dad cozied up in a tree .", "storylet_id": "235574"}], [{"original_text": "This year we took a family vacation to the lake.", "album_id": "72157607016527320", "photo_flickr_id": "2810471722", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47115", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this year we took a family vacation to the lake .", "storylet_id": "235575"}], [{"original_text": "Our vacation home was a scenic home built right on the water!", "album_id": "72157607016527320", "photo_flickr_id": "2810472020", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47115", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our vacation home was a scenic home built right on the water !", "storylet_id": "235576"}], [{"original_text": "We spent lots of time down on the lake shore swimming and fishing.", "album_id": "72157607016527320", "photo_flickr_id": "2810473738", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47115", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we spent lots of time down on the lake shore swimming and fishing .", "storylet_id": "235577"}], [{"original_text": "We even found the ruins of an old home", "album_id": "72157607016527320", "photo_flickr_id": "2809625979", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47115", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even found the ruins of an old home", "storylet_id": "235578"}], [{"original_text": "On the last day we took a canoe trip on the lake! It was a great vacation.", "album_id": "72157607016527320", "photo_flickr_id": "2810474054", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47115", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the last day we took a canoe trip on the lake ! it was a great vacation .", "storylet_id": "235579"}], [{"original_text": "Jeff and his new bride prefer vacations with some adventure. They chose this bed and breakfast as the launching point for this trip.", "album_id": "72157607016527320", "photo_flickr_id": "2810472020", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "47116", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and his new bride prefer vacations with some adventure . they chose this bed and breakfast as the launching point for this trip .", "storylet_id": "235580"}], [{"original_text": "As they pose for pictures, they both look toward their destination", "album_id": "72157607016527320", "photo_flickr_id": "2810471878", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "47116", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as they pose for pictures , they both look toward their destination", "storylet_id": "235581"}], [{"original_text": "Now that they are underway, they paddle to assist in their down river trip.", "album_id": "72157607016527320", "photo_flickr_id": "2810474054", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "47116", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now that they are underway , they paddle to assist in their down river trip .", "storylet_id": "235582"}], [{"original_text": "After several hours of boating, the find a spot on the shore to spend the night.", "album_id": "72157607016527320", "photo_flickr_id": "2810473438", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "47116", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after several hours of boating , the find a spot on the shore to spend the night .", "storylet_id": "235583"}], [{"original_text": "Jeff has unloaded the grill from the boat and a tasty dinner will soon meet some hearty appetites. Their first evening of vacation was close to perfect.", "album_id": "72157607016527320", "photo_flickr_id": "2809627489", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "47116", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] has unloaded the grill from the boat and a tasty dinner will soon meet some hearty appetites . their first evening of vacation was close to perfect .", "storylet_id": "235584"}], [{"original_text": "Check out our new vacation house by the lake.", "album_id": "72157607016527320", "photo_flickr_id": "2810472020", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47117", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "check out our new vacation house by the lake .", "storylet_id": "235585"}], [{"original_text": "It has a great view of the water.", "album_id": "72157607016527320", "photo_flickr_id": "2810471878", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47117", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it has a great view of the water .", "storylet_id": "235586"}], [{"original_text": "We can go out in our boat and travel around.", "album_id": "72157607016527320", "photo_flickr_id": "2810474054", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47117", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we can go out in our boat and travel around .", "storylet_id": "235587"}], [{"original_text": "Then park over by the shore to do some fishing.", "album_id": "72157607016527320", "photo_flickr_id": "2810473438", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47117", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then park over by the shore to do some fishing .", "storylet_id": "235588"}], [{"original_text": "It is nice to have a BBQ at the end of the day.", "album_id": "72157607016527320", "photo_flickr_id": "2809627489", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47117", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is nice to have a bbq at the end of the day .", "storylet_id": "235589"}], [{"original_text": "Our family vacation at our old lake house was a lot of fun.", "album_id": "72157607016527320", "photo_flickr_id": "2810472020", "setting": "last-3-pick-old-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "47118", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family vacation at our old lake house was a lot of fun .", "storylet_id": "235590"}], [{"original_text": "My boyfriend and I spent a lot of time together doing many things. ", "album_id": "72157607016527320", "photo_flickr_id": "2810471878", "setting": "last-3-pick-old-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "47118", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my boyfriend and i spent a lot of time together doing many things .", "storylet_id": "235591"}], [{"original_text": "I really enjoyed riding in the canoe. ", "album_id": "72157607016527320", "photo_flickr_id": "2810474054", "setting": "last-3-pick-old-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "47118", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i really enjoyed riding in the canoe .", "storylet_id": "235592"}], [{"original_text": "I was getting hungry and wanted to go back to the house. ", "album_id": "72157607016527320", "photo_flickr_id": "2810473438", "setting": "last-3-pick-old-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "47118", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was getting hungry and wanted to go back to the house .", "storylet_id": "235593"}], [{"original_text": "Dad must have been reading my mind and had something ready to eat. ", "album_id": "72157607016527320", "photo_flickr_id": "2809627489", "setting": "last-3-pick-old-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "47118", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dad must have been reading my mind and had something ready to eat .", "storylet_id": "235594"}], [{"original_text": "Our honeymoon was a little bit different. ", "album_id": "72157607016527320", "photo_flickr_id": "2810471722", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "47119", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our honeymoon was a little bit different .", "storylet_id": "235595"}], [{"original_text": "We rented this isolated cabin home in beautiful country wilderness.", "album_id": "72157607016527320", "photo_flickr_id": "2810472020", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "47119", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we rented this isolated cabin home in beautiful country wilderness .", "storylet_id": "235596"}], [{"original_text": "It was lake front property, with no neighbors in sight except for creatures of nature.", "album_id": "72157607016527320", "photo_flickr_id": "2810473738", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "47119", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was lake front property , with no neighbors in sight except for creatures of nature .", "storylet_id": "235597"}], [{"original_text": "We took a long walk and found a deserted kiln. We had a picnic there.", "album_id": "72157607016527320", "photo_flickr_id": "2809625979", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "47119", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a long walk and found a deserted kiln . we had a picnic there .", "storylet_id": "235598"}], [{"original_text": "That's us paddling in the lake. Two weeks of peace and quiet and love. It was bliss!", "album_id": "72157607016527320", "photo_flickr_id": "2810474054", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "47119", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that 's us paddling in the lake . two weeks of peace and quiet and love . it was bliss !", "storylet_id": "235599"}], [{"original_text": "The tourists took a day trip to the House of Seven Gables, a historic landmark.", "album_id": "72157607017933719", "photo_flickr_id": "2809278431", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47120", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tourists took a day trip to the organization organization organization organization , a historic landmark .", "storylet_id": "235600"}], [{"original_text": "They got to see an old fashioned well that is on the property.", "album_id": "72157607017933719", "photo_flickr_id": "2809278837", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47120", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got to see an old fashioned well that is on the property .", "storylet_id": "235601"}], [{"original_text": "The property is located right on the banks of the gorgeous bay.", "album_id": "72157607017933719", "photo_flickr_id": "2810128238", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47120", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the property is located right on the banks of the gorgeous bay .", "storylet_id": "235602"}], [{"original_text": "There are lots of historic landmarks throughout the property.", "album_id": "72157607017933719", "photo_flickr_id": "2810128556", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47120", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are lots of historic landmarks throughout the property .", "storylet_id": "235603"}], [{"original_text": "As you can see, these buildings are very old. This is Nathaniel Hawthorne's birth house and was built in 1750!", "album_id": "72157607017933719", "photo_flickr_id": "2809280617", "setting": "first-2-pick-and-tell", "worker_id": "FJROI8NWDRIPAM1", "story_id": "47120", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as you can see , these buildings are very old . this is [male] hawthorne 's birth house and was built in 1750 !", "storylet_id": "235604"}], [{"original_text": "The walking tour took us to this famous location in Salem.", "album_id": "72157607017933719", "photo_flickr_id": "2809278431", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "47121", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the walking tour took us to this famous location in location .", "storylet_id": "235605"}], [{"original_text": "We went to Salem, Mass to tour the historical houses.", "album_id": "72157607017933719", "photo_flickr_id": "2809278837", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "47121", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to location , mass to tour the historical houses .", "storylet_id": "235606"}], [{"original_text": "It was all her idea really. ", "album_id": "72157607017933719", "photo_flickr_id": "2809280397", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "47121", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was all her idea really .", "storylet_id": "235607"}], [{"original_text": "And other important sites.", "album_id": "72157607017933719", "photo_flickr_id": "2809280551", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "47121", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and other important sites .", "storylet_id": "235608"}], [{"original_text": "I had a nice view of the water. But there were no boats to rent. ", "album_id": "72157607017933719", "photo_flickr_id": "2809279461", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "47121", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a nice view of the water . but there were no boats to rent .", "storylet_id": "235609"}], [{"original_text": "In Salem, Massachusetts, history is still alive.", "album_id": "72157607017933719", "photo_flickr_id": "2809278431", "setting": "last-3-pick-old-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "47122", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in location , location , history is still alive .", "storylet_id": "235610"}], [{"original_text": "I told my husband he didn't need any more wishes, I was his dream come true. Of course he laughed.", "album_id": "72157607017933719", "photo_flickr_id": "2809278837", "setting": "last-3-pick-old-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "47122", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i told my husband he did n't need any more wishes , i was his dream come true . of course he laughed .", "storylet_id": "235611"}], [{"original_text": "This is me pretending I'm not freezing out here. Salem gets a little chilly in the winter.", "album_id": "72157607017933719", "photo_flickr_id": "2809280397", "setting": "last-3-pick-old-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "47122", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is me pretending i 'm not freezing out here . salem gets a little chilly in the winter .", "storylet_id": "235612"}], [{"original_text": "I'm so glad they were able to save this beautiful house.", "album_id": "72157607017933719", "photo_flickr_id": "2809280551", "setting": "last-3-pick-old-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "47122", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'm so glad they were able to save this beautiful house .", "storylet_id": "235613"}], [{"original_text": "Even in winter, the harbor is quite beautiful.", "album_id": "72157607017933719", "photo_flickr_id": "2809279461", "setting": "last-3-pick-old-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "47122", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even in winter , the harbor is quite beautiful .", "storylet_id": "235614"}], [{"original_text": "The couple visited the House of the Seven Gables.", "album_id": "72157607017933719", "photo_flickr_id": "2809278431", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47123", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple visited the house of the location location .", "storylet_id": "235615"}], [{"original_text": "There were all kinds of neat things there like this well.", "album_id": "72157607017933719", "photo_flickr_id": "2809278837", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47123", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were all kinds of neat things there like this well .", "storylet_id": "235616"}], [{"original_text": "There was a beautiful view of the dock.", "album_id": "72157607017933719", "photo_flickr_id": "2810128238", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47123", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a beautiful view of the dock .", "storylet_id": "235617"}], [{"original_text": "You could even take a tour of the property if you were willing to pay.", "album_id": "72157607017933719", "photo_flickr_id": "2810128556", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47123", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you could even take a tour of the property if you were willing to pay .", "storylet_id": "235618"}], [{"original_text": "It was a nice place with a great deal of history. ", "album_id": "72157607017933719", "photo_flickr_id": "2809280617", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47123", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a nice place with a great deal of history .", "storylet_id": "235619"}], [{"original_text": "Here is the famous house of the seven gables sign.", "album_id": "72157607017933719", "photo_flickr_id": "2809278431", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47124", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is the famous house of the seven gables sign .", "storylet_id": "235620"}], [{"original_text": "The man next to the well on a cold day.", "album_id": "72157607017933719", "photo_flickr_id": "2809278837", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47124", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man next to the well on a cold day .", "storylet_id": "235621"}], [{"original_text": "A flattering picture of the female outside during the visit.", "album_id": "72157607017933719", "photo_flickr_id": "2809280397", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47124", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a flattering picture of the female outside during the visit .", "storylet_id": "235622"}], [{"original_text": "The sign of the Hooper Hathaway house since 1862.", "album_id": "72157607017933719", "photo_flickr_id": "2809280551", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47124", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sign of the hooper hathaway house since 1862 .", "storylet_id": "235623"}], [{"original_text": "The dock outside near the water on an overcast day.", "album_id": "72157607017933719", "photo_flickr_id": "2809279461", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47124", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dock outside near the water on an overcast day .", "storylet_id": "235624"}], [{"original_text": "I went on a cruise last weekend.", "album_id": "72157622991639957", "photo_flickr_id": "4235249082", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47125", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on a cruise last weekend .", "storylet_id": "235625"}], [{"original_text": "The ship was enormous.", "album_id": "72157622991639957", "photo_flickr_id": "4235249212", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47125", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ship was enormous .", "storylet_id": "235626"}], [{"original_text": "There were also some Christmas decorations there.", "album_id": "72157622991639957", "photo_flickr_id": "4235250164", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47125", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were also some christmas decorations there .", "storylet_id": "235627"}], [{"original_text": "When we were in town we were able to check out some of the shops.", "album_id": "72157622991639957", "photo_flickr_id": "4234475317", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47125", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we were in town we were able to check out some of the shops .", "storylet_id": "235628"}], [{"original_text": "I had a great time there.", "album_id": "72157622991639957", "photo_flickr_id": "4234475437", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47125", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time there .", "storylet_id": "235629"}], [{"original_text": "A woman visited Florida, where she saw large cruises approach the tourist hot spots.", "album_id": "72157622991639957", "photo_flickr_id": "4235249212", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "47126", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a woman visited location , where she saw large cruises approach the tourist hot spots .", "storylet_id": "235630"}], [{"original_text": "The architecture of the area and the plants were more tropical in appearance than the rest of the United States.", "album_id": "72157622991639957", "photo_flickr_id": "4234474743", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "47126", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the architecture of the area and the plants were more tropical in appearance than the rest of the location location .", "storylet_id": "235631"}], [{"original_text": "The quirky decorations, such as this flamingo-feathered Christmas tree, were an illustration of an area with a unique flavor.", "album_id": "72157622991639957", "photo_flickr_id": "4235250164", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "47126", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the quirky decorations , such as this flamingo-feathered christmas tree , were an illustration of an area with a unique flavor .", "storylet_id": "235632"}], [{"original_text": "The people in the area were easy going.", "album_id": "72157622991639957", "photo_flickr_id": "4235250692", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "47126", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people in the area were easy going .", "storylet_id": "235633"}], [{"original_text": "A panoramic shot of a plaza shows the energy and activity of this locale. ", "album_id": "72157622991639957", "photo_flickr_id": "4235251634", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "47126", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a panoramic shot of a plaza shows the energy and activity of this locale .", "storylet_id": "235634"}], [{"original_text": "I decided to go to the beach for the day. ", "album_id": "72157622991639957", "photo_flickr_id": "4235249212", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "47127", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to go to the beach for the day .", "storylet_id": "235635"}], [{"original_text": "This is my rental house, its so cute. ", "album_id": "72157622991639957", "photo_flickr_id": "4234474743", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "47127", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is my rental house , its so cute .", "storylet_id": "235636"}], [{"original_text": "I had to put this cute Christmas tree up. ", "album_id": "72157622991639957", "photo_flickr_id": "4235250164", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "47127", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had to put this cute christmas tree up .", "storylet_id": "235637"}], [{"original_text": "Later I met up with some friends. ", "album_id": "72157622991639957", "photo_flickr_id": "4235250692", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "47127", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later i met up with some friends .", "storylet_id": "235638"}], [{"original_text": "We went downtown where there was a lot going on. ", "album_id": "72157622991639957", "photo_flickr_id": "4235251634", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "47127", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we went downtown where there was a lot going on .", "storylet_id": "235639"}], [{"original_text": "The cruise ship look so majestic as it comes in the port.", "album_id": "72157622991639957", "photo_flickr_id": "4235249082", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "47128", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cruise ship look so majestic as it comes in the port .", "storylet_id": "235640"}], [{"original_text": "Friends are waiting to greet the passengers.", "album_id": "72157622991639957", "photo_flickr_id": "4235249212", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "47128", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "friends are waiting to greet the passengers .", "storylet_id": "235641"}], [{"original_text": "The port is all decked out for Christmas, including this wonderful tree.", "album_id": "72157622991639957", "photo_flickr_id": "4235250164", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "47128", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the port is all decked out for christmas , including this wonderful tree .", "storylet_id": "235642"}], [{"original_text": "This lamp is so cool, I wonder where you find such a thing.", "album_id": "72157622991639957", "photo_flickr_id": "4234475317", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "47128", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this lamp is so cool , i wonder where you find such a thing .", "storylet_id": "235643"}], [{"original_text": "Any of the passengers would like to get their picture taken professionally certainly have that option here.", "album_id": "72157622991639957", "photo_flickr_id": "4234475437", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "47128", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "any of the passengers would like to get their picture taken professionally certainly have that option here .", "storylet_id": "235644"}], [{"original_text": "i missed my cruise ship and got stranded", "album_id": "72157622991639957", "photo_flickr_id": "4235249212", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47129", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i missed my cruise ship and got stranded", "storylet_id": "235645"}], [{"original_text": "so i rented a house for a week", "album_id": "72157622991639957", "photo_flickr_id": "4234474743", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47129", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so i rented a house for a week", "storylet_id": "235646"}], [{"original_text": "it had a gawdy tree on the porch", "album_id": "72157622991639957", "photo_flickr_id": "4235250164", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47129", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it had a gawdy tree on the porch", "storylet_id": "235647"}], [{"original_text": "there were lots of cyclists around ", "album_id": "72157622991639957", "photo_flickr_id": "4235250692", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47129", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were lots of cyclists around", "storylet_id": "235648"}], [{"original_text": "the town square was cool", "album_id": "72157622991639957", "photo_flickr_id": "4235251634", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47129", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the town square was cool", "storylet_id": "235649"}], [{"original_text": "Love this style of French Louisiana.", "album_id": "72157623128165856", "photo_flickr_id": "4240048437", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47130", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "love this style of french location .", "storylet_id": "235650"}], [{"original_text": "Very cool designs are so comfortable and inviting.", "album_id": "72157623128165856", "photo_flickr_id": "4240058017", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47130", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "very cool designs are so comfortable and inviting .", "storylet_id": "235651"}], [{"original_text": "I don't like traffic circles much though.", "album_id": "72157623128165856", "photo_flickr_id": "4240072797", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47130", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i do n't like traffic circles much though .", "storylet_id": "235652"}], [{"original_text": "These look creepy in black and white though.", "album_id": "72157623128165856", "photo_flickr_id": "4240083257", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47130", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these look creepy in black and white though .", "storylet_id": "235653"}], [{"original_text": "Isn't this just the greatest? I could live here forever.", "album_id": "72157623128165856", "photo_flickr_id": "4240101451", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47130", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "is n't this just the greatest ? i could live here forever .", "storylet_id": "235654"}], [{"original_text": "The town was decorated for Christmas.", "album_id": "72157623128165856", "photo_flickr_id": "4240809176", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47131", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the town was decorated for christmas .", "storylet_id": "235655"}], [{"original_text": "A simple tree had been created using lights and few other materials.", "album_id": "72157623128165856", "photo_flickr_id": "4240042721", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47131", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a simple tree had been created using lights and few other materials .", "storylet_id": "235656"}], [{"original_text": "Lights tastefully lined a balcony of one building . . ,", "album_id": "72157623128165856", "photo_flickr_id": "4240048437", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47131", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lights tastefully lined a balcony of one building . . ,", "storylet_id": "235657"}], [{"original_text": "and traced the architectural features of another.", "album_id": "72157623128165856", "photo_flickr_id": "4240058017", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47131", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and traced the architectural features of another .", "storylet_id": "235658"}], [{"original_text": "Even without holiday lights, however, the town would be beautiful.", "album_id": "72157623128165856", "photo_flickr_id": "4240868044", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47131", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even without holiday lights , however , the town would be beautiful .", "storylet_id": "235659"}], [{"original_text": "Our hotel is so beautiful. ", "album_id": "72157623128165856", "photo_flickr_id": "4240048437", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "47132", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our hotel is so beautiful .", "storylet_id": "235660"}], [{"original_text": "I loved all the archways and colorful lights. ", "album_id": "72157623128165856", "photo_flickr_id": "4240058017", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "47132", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i loved all the archways and colorful lights .", "storylet_id": "235661"}], [{"original_text": "A monument out front was a nod to the french. ", "album_id": "72157623128165856", "photo_flickr_id": "4240072797", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "47132", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a monument out front was a nod to the french .", "storylet_id": "235662"}], [{"original_text": "The hotel near us is said to be haunted. ", "album_id": "72157623128165856", "photo_flickr_id": "4240083257", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "47132", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the hotel near us is said to be haunted .", "storylet_id": "235663"}], [{"original_text": "We took a carriage ride to tour the haunted hotel. ", "album_id": "72157623128165856", "photo_flickr_id": "4240101451", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "47132", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took a carriage ride to tour the haunted hotel .", "storylet_id": "235664"}], [{"original_text": "Ashley recently took her family on a vacation. She felt that they needed to get away.", "album_id": "72157623128165856", "photo_flickr_id": "4240809176", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "47133", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] recently took her family on a vacation . she felt that they needed to get away .", "storylet_id": "235665"}], [{"original_text": "They went to visit her parents at their mansion for a little while, but left because she didn't get along with her mother very well.", "album_id": "72157623128165856", "photo_flickr_id": "4240042721", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "47133", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they went to visit her parents at their mansion for a little while , but left because she did n't get along with her mother very well .", "storylet_id": "235666"}], [{"original_text": "She then checked the family into a hotel for the night.", "album_id": "72157623128165856", "photo_flickr_id": "4240048437", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "47133", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she then checked the family into a hotel for the night .", "storylet_id": "235667"}], [{"original_text": "They woke up early and traveled all day and ended up in a different hotel the next night.", "album_id": "72157623128165856", "photo_flickr_id": "4240058017", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "47133", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they woke up early and traveled all day and ended up in a different hotel the next night .", "storylet_id": "235668"}], [{"original_text": "In the morning they got up early and drove to their destination. They visited a friend in a small town and they had the time of their lives. ", "album_id": "72157623128165856", "photo_flickr_id": "4240868044", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "47133", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the morning they got up early and drove to their destination . they visited a friend in a small town and they had the time of their lives .", "storylet_id": "235669"}], [{"original_text": "A green light gives the building an eerie look.", "album_id": "72157623128165856", "photo_flickr_id": "4240809176", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47134", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a green light gives the building an eerie look .", "storylet_id": "235670"}], [{"original_text": "The light sculpture adds color to the night.", "album_id": "72157623128165856", "photo_flickr_id": "4240042721", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47134", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the light sculpture adds color to the night .", "storylet_id": "235671"}], [{"original_text": "A ornate hotel lit up at night.", "album_id": "72157623128165856", "photo_flickr_id": "4240048437", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47134", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a ornate hotel lit up at night .", "storylet_id": "235672"}], [{"original_text": "The hotel across the street lit up for the night.", "album_id": "72157623128165856", "photo_flickr_id": "4240058017", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47134", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the hotel across the street lit up for the night .", "storylet_id": "235673"}], [{"original_text": "The sunset means night is coming soon to the town.", "album_id": "72157623128165856", "photo_flickr_id": "4240868044", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47134", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sunset means night is coming soon to the town .", "storylet_id": "235674"}], [{"original_text": "I took the kids out to play some games.", "album_id": "72157623007875703", "photo_flickr_id": "4242440678", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47135", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took the kids out to play some games .", "storylet_id": "235675"}], [{"original_text": "They had a lot of fun with the glow sticks.", "album_id": "72157623007875703", "photo_flickr_id": "4241668489", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47135", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a lot of fun with the glow sticks .", "storylet_id": "235676"}], [{"original_text": "There as also an air hockey table.", "album_id": "72157623007875703", "photo_flickr_id": "4242442662", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47135", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there as also an air hockey table .", "storylet_id": "235677"}], [{"original_text": "Afterward we went outside to hang out.", "album_id": "72157623007875703", "photo_flickr_id": "4242442944", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47135", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we went outside to hang out .", "storylet_id": "235678"}], [{"original_text": "We did some snowboarding.", "album_id": "72157623007875703", "photo_flickr_id": "4241671127", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47135", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we did some snowboarding .", "storylet_id": "235679"}], [{"original_text": "after dinner the family began to walk home ", "album_id": "72157623007875703", "photo_flickr_id": "4242442030", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47136", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after dinner the family began to walk home", "storylet_id": "235680"}], [{"original_text": "and saw someone selling glow sticks which the kids played with all night ", "album_id": "72157623007875703", "photo_flickr_id": "4241670007", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47136", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and saw someone selling glow sticks which the kids played with all night", "storylet_id": "235681"}], [{"original_text": "the next morning the family went sledding ", "album_id": "72157623007875703", "photo_flickr_id": "4242442944", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47136", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next morning the family went sledding", "storylet_id": "235682"}], [{"original_text": "and I stayed inside ", "album_id": "72157623007875703", "photo_flickr_id": "4242446742", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47136", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and i stayed inside", "storylet_id": "235683"}], [{"original_text": "because I had a little peace and quiet without the kids ", "album_id": "72157623007875703", "photo_flickr_id": "4242446906", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47136", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "because i had a little peace and quiet without the kids", "storylet_id": "235684"}], [{"original_text": "The night here was cold but pleasant after the snowstorm.", "album_id": "72157623007875703", "photo_flickr_id": "4242442030", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "47137", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the night here was cold but pleasant after the snowstorm .", "storylet_id": "235685"}], [{"original_text": "We used some of these light devices to make our way around safely.", "album_id": "72157623007875703", "photo_flickr_id": "4241670007", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "47137", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we used some of these light devices to make our way around safely .", "storylet_id": "235686"}], [{"original_text": "Jerry and his son do a little sledding in the morning before breakfast", "album_id": "72157623007875703", "photo_flickr_id": "4242442944", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "47137", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and his son do a little sledding in the morning before breakfast", "storylet_id": "235687"}], [{"original_text": "His wife Sarah is in good spirits this morning and is making breakfast.", "album_id": "72157623007875703", "photo_flickr_id": "4242446742", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "47137", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his wife [female] is in good spirits this morning and is making breakfast .", "storylet_id": "235688"}], [{"original_text": "The couple discusses their plans for the day as their daughter checks out the refrigerator.", "album_id": "72157623007875703", "photo_flickr_id": "4242446906", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "47137", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the couple discusses their plans for the day as their daughter checks out the refrigerator .", "storylet_id": "235689"}], [{"original_text": "I gave my two sons a long playdate with me today.", "album_id": "72157623007875703", "photo_flickr_id": "4242440678", "setting": "last-3-pick-old-and-tell", "worker_id": "HO4JSU101DNVYG5", "story_id": "47138", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i gave my two sons a long playdate with me today .", "storylet_id": "235690"}], [{"original_text": "They got glowsticks that they could play with while it was dark out.", "album_id": "72157623007875703", "photo_flickr_id": "4241668489", "setting": "last-3-pick-old-and-tell", "worker_id": "HO4JSU101DNVYG5", "story_id": "47138", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got glowsticks that they could play with while it was dark out .", "storylet_id": "235691"}], [{"original_text": "They sat and played air hockey by the Christmas tree in our house.", "album_id": "72157623007875703", "photo_flickr_id": "4242442662", "setting": "last-3-pick-old-and-tell", "worker_id": "HO4JSU101DNVYG5", "story_id": "47138", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they sat and played air hockey by the christmas tree in our house .", "storylet_id": "235692"}], [{"original_text": "One of my sons sat on my back when we were sledding down a hill.", "album_id": "72157623007875703", "photo_flickr_id": "4242442944", "setting": "last-3-pick-old-and-tell", "worker_id": "HO4JSU101DNVYG5", "story_id": "47138", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of my sons sat on my back when we were sledding down a hill .", "storylet_id": "235693"}], [{"original_text": "They watched me snowboard for a while as well.", "album_id": "72157623007875703", "photo_flickr_id": "4241671127", "setting": "last-3-pick-old-and-tell", "worker_id": "HO4JSU101DNVYG5", "story_id": "47138", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they watched me snowboard for a while as well .", "storylet_id": "235694"}], [{"original_text": "Our neighborhood was having a moonlight watch party. ", "album_id": "72157623007875703", "photo_flickr_id": "4242442030", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "47139", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our neighborhood was having a moonlight watch party .", "storylet_id": "235695"}], [{"original_text": "We all bought glowsticks, so that we could all light up like moon. ", "album_id": "72157623007875703", "photo_flickr_id": "4241670007", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "47139", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all bought glowsticks , so that we could all light up like moon .", "storylet_id": "235696"}], [{"original_text": "Earlier in the day, my husband took the kids sledding. ", "album_id": "72157623007875703", "photo_flickr_id": "4242442944", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "47139", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "earlier in the day , my husband took the kids sledding .", "storylet_id": "235697"}], [{"original_text": "I was preparing some quick snacks for the moonlight party. ", "album_id": "72157623007875703", "photo_flickr_id": "4242446742", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "47139", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was preparing some quick snacks for the moonlight party .", "storylet_id": "235698"}], [{"original_text": "I asked a couple of my neighbors to help me prepare the snack. ", "album_id": "72157623007875703", "photo_flickr_id": "4242446906", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "47139", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i asked a couple of my neighbors to help me prepare the snack .", "storylet_id": "235699"}], [{"original_text": "The facility was cool and sterile. ", "album_id": "72157623132781720", "photo_flickr_id": "4242859406", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "47140", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the facility was cool and sterile .", "storylet_id": "235700"}], [{"original_text": "There were ropes and labels,", "album_id": "72157623132781720", "photo_flickr_id": "4242093229", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "47140", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were ropes and labels ,", "storylet_id": "235701"}], [{"original_text": "This window required bars.", "album_id": "72157623132781720", "photo_flickr_id": "4242113809", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "47140", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this window required bars .", "storylet_id": "235702"}], [{"original_text": "Everything was rusted and metal.", "album_id": "72157623132781720", "photo_flickr_id": "4242911284", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "47140", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everything was rusted and metal .", "storylet_id": "235703"}], [{"original_text": "The sky was also grey. ", "album_id": "72157623132781720", "photo_flickr_id": "4242930938", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "47140", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sky was also grey .", "storylet_id": "235704"}], [{"original_text": "it was almost war time", "album_id": "72157623132781720", "photo_flickr_id": "4242859406", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47141", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was almost war time", "storylet_id": "235705"}], [{"original_text": "it was time for the jacson 27 to go to battle", "album_id": "72157623132781720", "photo_flickr_id": "4242093229", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47141", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was time for the jacson 27 to go to battle", "storylet_id": "235706"}], [{"original_text": "it was an older ship but could still be useful", "album_id": "72157623132781720", "photo_flickr_id": "4242131931", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47141", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was an older ship but could still be useful", "storylet_id": "235707"}], [{"original_text": "they were gonna teach the enemy a thing or two", "album_id": "72157623132781720", "photo_flickr_id": "4242911284", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47141", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were gon na teach the enemy a thing or two", "storylet_id": "235708"}], [{"original_text": "war was on the horizon and jacson 27 was gonna hold its own ", "album_id": "72157623132781720", "photo_flickr_id": "4242930938", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47141", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "war was on the horizon and jacson 27 was gon na hold its own", "storylet_id": "235709"}], [{"original_text": "We took the day to visit an old abandoned ship.", "album_id": "72157623132781720", "photo_flickr_id": "4242859406", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47142", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took the day to visit an old abandoned ship .", "storylet_id": "235710"}], [{"original_text": "The name of the ship was Jascon 27.", "album_id": "72157623132781720", "photo_flickr_id": "4242093229", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47142", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the name of the ship was jascon 27 .", "storylet_id": "235711"}], [{"original_text": "It had been used in war for many of years.", "album_id": "72157623132781720", "photo_flickr_id": "4242131931", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47142", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it had been used in war for many of years .", "storylet_id": "235712"}], [{"original_text": "It was so old it was starting to rust.", "album_id": "72157623132781720", "photo_flickr_id": "4242911284", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47142", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was so old it was starting to rust .", "storylet_id": "235713"}], [{"original_text": "Overall, it was a great learning experience.", "album_id": "72157623132781720", "photo_flickr_id": "4242930938", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47142", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall , it was a great learning experience .", "storylet_id": "235714"}], [{"original_text": "Many windows to watch the daily lives of all those who work so hard on the docks.", "album_id": "72157623132781720", "photo_flickr_id": "4242859406", "setting": "last-3-pick-old-and-tell", "worker_id": "VGIMLFOXANOLZLB", "story_id": "47143", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many windows to watch the daily lives of all those who work so hard on the docks .", "storylet_id": "235715"}], [{"original_text": "The barge where I work and help deliver goods for all those people behind the windows.", "album_id": "72157623132781720", "photo_flickr_id": "4242093229", "setting": "last-3-pick-old-and-tell", "worker_id": "VGIMLFOXANOLZLB", "story_id": "47143", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the barge where i work and help deliver goods for all those people behind the windows .", "storylet_id": "235716"}], [{"original_text": "Barges have all the living quarters we need as we travel the water ways.", "album_id": "72157623132781720", "photo_flickr_id": "4242131931", "setting": "last-3-pick-old-and-tell", "worker_id": "VGIMLFOXANOLZLB", "story_id": "47143", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "barges have all the living quarters we need as we travel the water ways .", "storylet_id": "235717"}], [{"original_text": "Units to provide air and ventilation for our comfort.", "album_id": "72157623132781720", "photo_flickr_id": "4242911284", "setting": "last-3-pick-old-and-tell", "worker_id": "VGIMLFOXANOLZLB", "story_id": "47143", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "units to provide air and ventilation for our comfort .", "storylet_id": "235718"}], [{"original_text": "looking out upon our journey and protecting us from storms the shutters of our abode.", "album_id": "72157623132781720", "photo_flickr_id": "4242930938", "setting": "last-3-pick-old-and-tell", "worker_id": "VGIMLFOXANOLZLB", "story_id": "47143", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "looking out upon our journey and protecting us from storms the shutters of our abode .", "storylet_id": "235719"}], [{"original_text": "we were down by the docks", "album_id": "72157623132781720", "photo_flickr_id": "4242859406", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47144", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were down by the docks", "storylet_id": "235720"}], [{"original_text": "it was very interesting ", "album_id": "72157623132781720", "photo_flickr_id": "4242093229", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47144", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was very interesting", "storylet_id": "235721"}], [{"original_text": "there was nothing going on ", "album_id": "72157623132781720", "photo_flickr_id": "4242113809", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47144", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was nothing going on", "storylet_id": "235722"}], [{"original_text": "it was pretty much abandoned ", "album_id": "72157623132781720", "photo_flickr_id": "4242911284", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47144", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was pretty much abandoned", "storylet_id": "235723"}], [{"original_text": "the dry docks are empty", "album_id": "72157623132781720", "photo_flickr_id": "4242930938", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47144", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dry docks are empty", "storylet_id": "235724"}], [{"original_text": "There was a massive snowstorm where I live yesterday.", "album_id": "72157623023149795", "photo_flickr_id": "4248618367", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "47145", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a massive snowstorm where i live yesterday .", "storylet_id": "235725"}], [{"original_text": "The snow was so deep you could barely walk in it.", "album_id": "72157623023149795", "photo_flickr_id": "4249392926", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "47145", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the snow was so deep you could barely walk in it .", "storylet_id": "235726"}], [{"original_text": "I took my children out to play for a while.", "album_id": "72157623023149795", "photo_flickr_id": "4248618103", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "47145", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took my children out to play for a while .", "storylet_id": "235727"}], [{"original_text": "We went sledding and had a blast going down hills.", "album_id": "72157623023149795", "photo_flickr_id": "4249392660", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "47145", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went sledding and had a blast going down hills .", "storylet_id": "235728"}], [{"original_text": "After a long day of playing in the snow it was time to bring the kids inside to warm up.", "album_id": "72157623023149795", "photo_flickr_id": "4249392198", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "47145", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long day of playing in the snow it was time to bring the kids inside to warm up .", "storylet_id": "235729"}], [{"original_text": "We set out early today.", "album_id": "72157623023149795", "photo_flickr_id": "4248618767", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47146", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we set out early today .", "storylet_id": "235730"}], [{"original_text": "The path was still clear as no new snow fell last night.", "album_id": "72157623023149795", "photo_flickr_id": "4248618103", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47146", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the path was still clear as no new snow fell last night .", "storylet_id": "235731"}], [{"original_text": "The air was bitter cold.", "album_id": "72157623023149795", "photo_flickr_id": "4248617909", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47146", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the air was bitter cold .", "storylet_id": "235732"}], [{"original_text": "Not a bird was chirping. It was so quiet.", "album_id": "72157623023149795", "photo_flickr_id": "4249393156", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47146", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "not a bird was chirping . it was so quiet .", "storylet_id": "235733"}], [{"original_text": "This sunrise was so gorgeous over the snow and ice.", "album_id": "72157623023149795", "photo_flickr_id": "4249392198", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47146", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this sunrise was so gorgeous over the snow and ice .", "storylet_id": "235734"}], [{"original_text": "I always loved midwinter in the north.", "album_id": "72157623023149795", "photo_flickr_id": "4248618367", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47147", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i always loved midwinter in the north .", "storylet_id": "235735"}], [{"original_text": "The snow is piled up high enough to go sledding.", "album_id": "72157623023149795", "photo_flickr_id": "4249392926", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47147", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the snow is piled up high enough to go sledding .", "storylet_id": "235736"}], [{"original_text": "Walking on the packed snow is fun.", "album_id": "72157623023149795", "photo_flickr_id": "4248618103", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47147", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "walking on the packed snow is fun .", "storylet_id": "235737"}], [{"original_text": "The roads are nothing but packed snow and dirt.", "album_id": "72157623023149795", "photo_flickr_id": "4249392660", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47147", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the roads are nothing but packed snow and dirt .", "storylet_id": "235738"}], [{"original_text": "The bare trees allow you to see for miles.", "album_id": "72157623023149795", "photo_flickr_id": "4249392198", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47147", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bare trees allow you to see for miles .", "storylet_id": "235739"}], [{"original_text": "When I went out for a walk this morning I was taken aback by just how beautiful the snow was. ", "album_id": "72157623023149795", "photo_flickr_id": "4248618367", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "47148", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i went out for a walk this morning i was taken aback by just how beautiful the snow was .", "storylet_id": "235740"}], [{"original_text": "We get snow back home, but nothing like how this snow just seems to go on forever. ", "album_id": "72157623023149795", "photo_flickr_id": "4249392926", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "47148", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we get snow back home , but nothing like how this snow just seems to go on forever .", "storylet_id": "235741"}], [{"original_text": "I was happy to see others out enjoying the snow. ", "album_id": "72157623023149795", "photo_flickr_id": "4248618103", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "47148", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was happy to see others out enjoying the snow .", "storylet_id": "235742"}], [{"original_text": "The roadway was so nicely cleared. ", "album_id": "72157623023149795", "photo_flickr_id": "4249392660", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "47148", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the roadway was so nicely cleared .", "storylet_id": "235743"}], [{"original_text": "And you couldn't beat watching the sunrise in such a place. ", "album_id": "72157623023149795", "photo_flickr_id": "4249392198", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "47148", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and you could n't beat watching the sunrise in such a place .", "storylet_id": "235744"}], [{"original_text": "After the blizzard, the morning revealed a misty frozen lake.", "album_id": "72157623023149795", "photo_flickr_id": "4248618767", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "47149", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after the blizzard , the morning revealed a misty frozen lake .", "storylet_id": "235745"}], [{"original_text": "Despite the chill and deep snow everyone went out to take in the view.", "album_id": "72157623023149795", "photo_flickr_id": "4248618103", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "47149", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "despite the chill and deep snow everyone went out to take in the view .", "storylet_id": "235746"}], [{"original_text": "The neighbor's farm was completely snowed in.", "album_id": "72157623023149795", "photo_flickr_id": "4248617909", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "47149", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the neighbor 's farm was completely snowed in .", "storylet_id": "235747"}], [{"original_text": "The tree branches too were heavy with snow.", "album_id": "72157623023149795", "photo_flickr_id": "4249393156", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "47149", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the tree branches too were heavy with snow .", "storylet_id": "235748"}], [{"original_text": "The stark landscape was a sight to behold.", "album_id": "72157623023149795", "photo_flickr_id": "4249392198", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "47149", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the stark landscape was a sight to behold .", "storylet_id": "235749"}], [{"original_text": "We arrived around sunset and it was beautiful.", "album_id": "72157623165416012", "photo_flickr_id": "4249390336", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47150", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived around sunset and it was beautiful .", "storylet_id": "235750"}], [{"original_text": "We had to walk to our hotel, but that was not a problem.", "album_id": "72157623165416012", "photo_flickr_id": "4249394890", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47150", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to walk to our hotel , but that was not a problem .", "storylet_id": "235751"}], [{"original_text": "Except for Alex, whom was very tired.", "album_id": "72157623165416012", "photo_flickr_id": "4248626593", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47150", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "except for [male] , whom was very tired .", "storylet_id": "235752"}], [{"original_text": "We walked to the pier and checked out the fishing boats...", "album_id": "72157623165416012", "photo_flickr_id": "4249404812", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47150", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we walked to the pier and checked out the fishing boats ...", "storylet_id": "235753"}], [{"original_text": "And, Ty was a very happy boy!", "album_id": "72157623165416012", "photo_flickr_id": "4248630797", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47150", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , [male] was a very happy boy !", "storylet_id": "235754"}], [{"original_text": "I went for a walk one day.", "album_id": "72157623165416012", "photo_flickr_id": "4249397364", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47151", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a walk one day .", "storylet_id": "235755"}], [{"original_text": "There were many buildings in the area.", "album_id": "72157623165416012", "photo_flickr_id": "4249402354", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47151", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many buildings in the area .", "storylet_id": "235756"}], [{"original_text": "They were all very old.", "album_id": "72157623165416012", "photo_flickr_id": "4249403114", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47151", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were all very old .", "storylet_id": "235757"}], [{"original_text": "Some of them needed to be repainted.", "album_id": "72157623165416012", "photo_flickr_id": "4248633385", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47151", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of them needed to be repainted .", "storylet_id": "235758"}], [{"original_text": "After I did some shopping I went back home.", "album_id": "72157623165416012", "photo_flickr_id": "4248634247", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47151", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after i did some shopping i went back home .", "storylet_id": "235759"}], [{"original_text": "My friend gave me a tour of his local area a couple weeks ago.", "album_id": "72157623165416012", "photo_flickr_id": "4249397364", "setting": "last-3-pick-old-and-tell", "worker_id": "HO4JSU101DNVYG5", "story_id": "47152", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend gave me a tour of his local area a couple weeks ago .", "storylet_id": "235760"}], [{"original_text": "He has a cute kid who got to look out on all the balconies we could see.", "album_id": "72157623165416012", "photo_flickr_id": "4249402354", "setting": "last-3-pick-old-and-tell", "worker_id": "HO4JSU101DNVYG5", "story_id": "47152", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he has a cute kid who got to look out on all the balconies we could see .", "storylet_id": "235761"}], [{"original_text": "There was an area outside you could walk out onto and see the whole town.", "album_id": "72157623165416012", "photo_flickr_id": "4249403114", "setting": "last-3-pick-old-and-tell", "worker_id": "HO4JSU101DNVYG5", "story_id": "47152", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was an area outside you could walk out onto and see the whole town .", "storylet_id": "235762"}], [{"original_text": "When we were out walking, we saw doors with bright pink outlines.", "album_id": "72157623165416012", "photo_flickr_id": "4248633385", "setting": "last-3-pick-old-and-tell", "worker_id": "HO4JSU101DNVYG5", "story_id": "47152", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we were out walking , we saw doors with bright pink outlines .", "storylet_id": "235763"}], [{"original_text": "We ended up in a local coffee shop where we stopped to chat for a while.", "album_id": "72157623165416012", "photo_flickr_id": "4248634247", "setting": "last-3-pick-old-and-tell", "worker_id": "HO4JSU101DNVYG5", "story_id": "47152", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended up in a local coffee shop where we stopped to chat for a while .", "storylet_id": "235764"}], [{"original_text": "Check out the view from this window.", "album_id": "72157623165416012", "photo_flickr_id": "4249397364", "setting": "last-3-pick-old-and-tell", "worker_id": "A8KSGRBYPKHYLBN", "story_id": "47153", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "check out the view from this window .", "storylet_id": "235765"}], [{"original_text": "I love the large windows and balcony.", "album_id": "72157623165416012", "photo_flickr_id": "4249402354", "setting": "last-3-pick-old-and-tell", "worker_id": "A8KSGRBYPKHYLBN", "story_id": "47153", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love the large windows and balcony .", "storylet_id": "235766"}], [{"original_text": "The view is so beautiful and breath-taking, I can sit out here for hours.", "album_id": "72157623165416012", "photo_flickr_id": "4249403114", "setting": "last-3-pick-old-and-tell", "worker_id": "A8KSGRBYPKHYLBN", "story_id": "47153", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the view is so beautiful and breath-taking , i can sit out here for hours .", "storylet_id": "235767"}], [{"original_text": "She is entering the building.", "album_id": "72157623165416012", "photo_flickr_id": "4248633385", "setting": "last-3-pick-old-and-tell", "worker_id": "A8KSGRBYPKHYLBN", "story_id": "47153", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she is entering the building .", "storylet_id": "235768"}], [{"original_text": "This is our living space, it is kind of cluttered.", "album_id": "72157623165416012", "photo_flickr_id": "4248634247", "setting": "last-3-pick-old-and-tell", "worker_id": "A8KSGRBYPKHYLBN", "story_id": "47153", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is our living space , it is kind of cluttered .", "storylet_id": "235769"}], [{"original_text": "The sun was just rising over the small town.", "album_id": "72157623165416012", "photo_flickr_id": "4249390336", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "47154", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sun was just rising over the small town .", "storylet_id": "235770"}], [{"original_text": "There was a hotel that was on the far side of town.", "album_id": "72157623165416012", "photo_flickr_id": "4249394890", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "47154", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a hotel that was on the far side of town .", "storylet_id": "235771"}], [{"original_text": "A woman and her husband and son were on vacation here.", "album_id": "72157623165416012", "photo_flickr_id": "4248626593", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "47154", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a woman and her husband and son were on vacation here .", "storylet_id": "235772"}], [{"original_text": "They were out on their deck, relaxing and watching boats.", "album_id": "72157623165416012", "photo_flickr_id": "4249404812", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "47154", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were out on their deck , relaxing and watching boats .", "storylet_id": "235773"}], [{"original_text": "Later in the day they headed out to tour the town a bit.", "album_id": "72157623165416012", "photo_flickr_id": "4248630797", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "47154", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later in the day they headed out to tour the town a bit .", "storylet_id": "235774"}], [{"original_text": "I went to Venice Italy for a vacation to look at the Cathedrals.", "album_id": "72157623035815239", "photo_flickr_id": "4253855546", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47155", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to location location for a vacation to look at the cathedrals .", "storylet_id": "235775"}], [{"original_text": "This is the bed and breakfast where we stayed.", "album_id": "72157623035815239", "photo_flickr_id": "4253099117", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47155", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the bed and breakfast where we stayed .", "storylet_id": "235776"}], [{"original_text": "The view was amazing.", "album_id": "72157623035815239", "photo_flickr_id": "4253875856", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47155", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the view was amazing .", "storylet_id": "235777"}], [{"original_text": "There was some unusual furniture in the room.", "album_id": "72157623035815239", "photo_flickr_id": "4253095215", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47155", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was some unusual furniture in the room .", "storylet_id": "235778"}], [{"original_text": "We took the time to see their famous waterways.", "album_id": "72157623035815239", "photo_flickr_id": "4253100497", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47155", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took the time to see their famous waterways .", "storylet_id": "235779"}], [{"original_text": "The large castle build was magnificent.", "album_id": "72157623035815239", "photo_flickr_id": "4253097911", "setting": "first-2-pick-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47156", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the large castle build was magnificent .", "storylet_id": "235780"}], [{"original_text": "The picture of the firl in front of the pond with the bulding in the background.", "album_id": "72157623035815239", "photo_flickr_id": "4253101795", "setting": "first-2-pick-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47156", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the picture of the firl in front of the pond with the bulding in the background .", "storylet_id": "235781"}], [{"original_text": "The historic building had character on thd city corner street.", "album_id": "72157623035815239", "photo_flickr_id": "4253860848", "setting": "first-2-pick-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47156", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the historic building had character on thd city corner street .", "storylet_id": "235782"}], [{"original_text": "The location that we ate at had a beautiful view.", "album_id": "72157623035815239", "photo_flickr_id": "4253875856", "setting": "first-2-pick-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47156", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the location that we ate at had a beautiful view .", "storylet_id": "235783"}], [{"original_text": "The two of us are just hanging out after an eventful day.", "album_id": "72157623035815239", "photo_flickr_id": "4253113455", "setting": "first-2-pick-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47156", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the two of us are just hanging out after an eventful day .", "storylet_id": "235784"}], [{"original_text": "The chateau we stayed at for our vacation was beautiful. ", "album_id": "72157623035815239", "photo_flickr_id": "4253097911", "setting": "last-3-pick-old-and-tell", "worker_id": "F6MXET3UND9GNDK", "story_id": "47157", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the chateau we stayed at for our vacation was beautiful .", "storylet_id": "235785"}], [{"original_text": "It was surrounded by a moat we had to boat across. ", "album_id": "72157623035815239", "photo_flickr_id": "4253101795", "setting": "last-3-pick-old-and-tell", "worker_id": "F6MXET3UND9GNDK", "story_id": "47157", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was surrounded by a moat we had to boat across .", "storylet_id": "235786"}], [{"original_text": "One night we visited a local pub for dinner and drinks. ", "album_id": "72157623035815239", "photo_flickr_id": "4253860848", "setting": "last-3-pick-old-and-tell", "worker_id": "F6MXET3UND9GNDK", "story_id": "47157", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one night we visited a local pub for dinner and drinks .", "storylet_id": "235787"}], [{"original_text": "The next morning for breakfast we sat on the balcony of the chateau and admired the view. ", "album_id": "72157623035815239", "photo_flickr_id": "4253875856", "setting": "last-3-pick-old-and-tell", "worker_id": "F6MXET3UND9GNDK", "story_id": "47157", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next morning for breakfast we sat on the balcony of the chateau and admired the view .", "storylet_id": "235788"}], [{"original_text": "It started raining so we stayed inside all day and relaxed on the couches. ", "album_id": "72157623035815239", "photo_flickr_id": "4253113455", "setting": "last-3-pick-old-and-tell", "worker_id": "F6MXET3UND9GNDK", "story_id": "47157", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it started raining so we stayed inside all day and relaxed on the couches .", "storylet_id": "235789"}], [{"original_text": "We visited the mansion in the morning.", "album_id": "72157623035815239", "photo_flickr_id": "4253097911", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47158", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited the mansion in the morning .", "storylet_id": "235790"}], [{"original_text": "I took a picture by the lake.", "album_id": "72157623035815239", "photo_flickr_id": "4253101795", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47158", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i took a picture by the lake .", "storylet_id": "235791"}], [{"original_text": "Then we went to town to visit the shops.", "album_id": "72157623035815239", "photo_flickr_id": "4253860848", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47158", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we went to town to visit the shops .", "storylet_id": "235792"}], [{"original_text": "We found a small restaurant and decided to grab a bite to eat.", "album_id": "72157623035815239", "photo_flickr_id": "4253875856", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47158", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found a small restaurant and decided to grab a bite to eat .", "storylet_id": "235793"}], [{"original_text": "Then we went back to the hotel to relax.", "album_id": "72157623035815239", "photo_flickr_id": "4253113455", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47158", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we went back to the hotel to relax .", "storylet_id": "235794"}], [{"original_text": "We went around town. First, we went to the church.", "album_id": "72157623035815239", "photo_flickr_id": "4253855546", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47159", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went around town . first , we went to the church .", "storylet_id": "235795"}], [{"original_text": "The buildings in the area where really cool.", "album_id": "72157623035815239", "photo_flickr_id": "4253099117", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47159", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the buildings in the area where really cool .", "storylet_id": "235796"}], [{"original_text": "We found a quick place to sit and eat lunch.", "album_id": "72157623035815239", "photo_flickr_id": "4253875856", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47159", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we found a quick place to sit and eat lunch .", "storylet_id": "235797"}], [{"original_text": "After a coffee, we went back out.", "album_id": "72157623035815239", "photo_flickr_id": "4253095215", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47159", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a coffee , we went back out .", "storylet_id": "235798"}], [{"original_text": "We continued our walk through the streets.", "album_id": "72157623035815239", "photo_flickr_id": "4253100497", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47159", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we continued our walk through the streets .", "storylet_id": "235799"}], [{"original_text": "We arrived on site and Charles met us at the garden.", "album_id": "72157623160153286", "photo_flickr_id": "4253685935", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47160", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived on site and [male] met us at the garden .", "storylet_id": "235800"}], [{"original_text": "He would be our tour guide, along with his fancy hat.", "album_id": "72157623160153286", "photo_flickr_id": "4254451236", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47160", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he would be our tour guide , along with his fancy hat .", "storylet_id": "235801"}], [{"original_text": "He took us around the beautiful grounds...", "album_id": "72157623160153286", "photo_flickr_id": "4254449090", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47160", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he took us around the beautiful grounds ...", "storylet_id": "235802"}], [{"original_text": "And, continued through the garden...", "album_id": "72157623160153286", "photo_flickr_id": "4253684397", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47160", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , continued through the garden ...", "storylet_id": "235803"}], [{"original_text": "And, then we saw it. The beautiful church at the end of the rainbow.", "album_id": "72157623160153286", "photo_flickr_id": "4253684561", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47160", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , then we saw it . the beautiful church at the end of the rainbow .", "storylet_id": "235804"}], [{"original_text": "Nathan is a photographer for a magazine.", "album_id": "72157623160153286", "photo_flickr_id": "4254451236", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "47161", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is a photographer for a magazine .", "storylet_id": "235805"}], [{"original_text": "He takes pictures of gardens around the world.", "album_id": "72157623160153286", "photo_flickr_id": "4254450768", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "47161", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he takes pictures of gardens around the world .", "storylet_id": "235806"}], [{"original_text": "Today Nathan is taking pictures of a garden in Greece.", "album_id": "72157623160153286", "photo_flickr_id": "4254450954", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "47161", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "today [male] is taking pictures of a garden in location .", "storylet_id": "235807"}], [{"original_text": "The garden is vast and full of various plants and flowers.", "album_id": "72157623160153286", "photo_flickr_id": "4254451390", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "47161", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the garden is vast and full of various plants and flowers .", "storylet_id": "235808"}], [{"original_text": "This garden may have a chance to make the front page of the magazine.", "album_id": "72157623160153286", "photo_flickr_id": "4253684561", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "47161", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this garden may have a chance to make the front page of the magazine .", "storylet_id": "235809"}], [{"original_text": "The man is on a tour of this landmark site.", "album_id": "72157623160153286", "photo_flickr_id": "4253685935", "setting": "last-3-pick-old-and-tell", "worker_id": "J044WIQNG6W0LNF", "story_id": "47162", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man is on a tour of this landmark site .", "storylet_id": "235810"}], [{"original_text": "He stops to have his picture taken for future reference on the trip.", "album_id": "72157623160153286", "photo_flickr_id": "4254451236", "setting": "last-3-pick-old-and-tell", "worker_id": "J044WIQNG6W0LNF", "story_id": "47162", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he stops to have his picture taken for future reference on the trip .", "storylet_id": "235811"}], [{"original_text": "A building off in the distance, what could be inside it?", "album_id": "72157623160153286", "photo_flickr_id": "4254449090", "setting": "last-3-pick-old-and-tell", "worker_id": "J044WIQNG6W0LNF", "story_id": "47162", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a building off in the distance , what could be inside it ?", "storylet_id": "235812"}], [{"original_text": "As the tour continued they came across a statue and what looks to be a man made lake.", "album_id": "72157623160153286", "photo_flickr_id": "4253684397", "setting": "last-3-pick-old-and-tell", "worker_id": "J044WIQNG6W0LNF", "story_id": "47162", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the tour continued they came across a statue and what looks to be a man made lake .", "storylet_id": "235813"}], [{"original_text": "As the tour stopped to take a photo a fountain that shooting water into the air as soon as the photo was taken.", "album_id": "72157623160153286", "photo_flickr_id": "4253684561", "setting": "last-3-pick-old-and-tell", "worker_id": "J044WIQNG6W0LNF", "story_id": "47162", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the tour stopped to take a photo a fountain that shooting water into the air as soon as the photo was taken .", "storylet_id": "235814"}], [{"original_text": "My hobby is gardening.", "album_id": "72157623160153286", "photo_flickr_id": "4254451236", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "47163", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my hobby is gardening .", "storylet_id": "235815"}], [{"original_text": " When I got the chance to visit the Royal Gardens I just had to go.", "album_id": "72157623160153286", "photo_flickr_id": "4254450768", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "47163", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when i got the chance to visit the location location i just had to go .", "storylet_id": "235816"}], [{"original_text": " They were as beautiful in person as I've ever seen them pictured.", "album_id": "72157623160153286", "photo_flickr_id": "4254450954", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "47163", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were as beautiful in person as i 've ever seen them pictured .", "storylet_id": "235817"}], [{"original_text": " I walked around for hours marveling at their gardeners skills.", "album_id": "72157623160153286", "photo_flickr_id": "4254451390", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "47163", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i walked around for hours marveling at their gardeners skills .", "storylet_id": "235818"}], [{"original_text": "I had such an amazing time, I cannot wait to go again.", "album_id": "72157623160153286", "photo_flickr_id": "4253684561", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "47163", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had such an amazing time , i can not wait to go again .", "storylet_id": "235819"}], [{"original_text": "They visited the beautiful estate, viewing the amazing hedges surrounding the building.", "album_id": "72157623160153286", "photo_flickr_id": "4253685935", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "47164", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they visited the beautiful estate , viewing the amazing hedges surrounding the building .", "storylet_id": "235820"}], [{"original_text": "They loved seeing old buildings.", "album_id": "72157623160153286", "photo_flickr_id": "4254451236", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "47164", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they loved seeing old buildings .", "storylet_id": "235821"}], [{"original_text": "They found the main part of the house, it was enormous and very old.", "album_id": "72157623160153286", "photo_flickr_id": "4254449090", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "47164", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they found the main part of the house , it was enormous and very old .", "storylet_id": "235822"}], [{"original_text": "The grounds were full of statues and various relics of the past.", "album_id": "72157623160153286", "photo_flickr_id": "4253684397", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "47164", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the grounds were full of statues and various relics of the past .", "storylet_id": "235823"}], [{"original_text": "They even had a moat that flowed through the estate.", "album_id": "72157623160153286", "photo_flickr_id": "4253684561", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "47164", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even had a moat that flowed through the estate .", "storylet_id": "235824"}], [{"original_text": "I went for a ride on my boat last week.", "album_id": "72157635221100135", "photo_flickr_id": "4259595084", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47165", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a ride on my boat last week .", "storylet_id": "235825"}], [{"original_text": "I stopped in a very grassy field.", "album_id": "72157635221100135", "photo_flickr_id": "4258840025", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47165", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i stopped in a very grassy field .", "storylet_id": "235826"}], [{"original_text": "There were many clouds in the sky.", "album_id": "72157635221100135", "photo_flickr_id": "4259596548", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47165", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many clouds in the sky .", "storylet_id": "235827"}], [{"original_text": "Afterward it became very dark.", "album_id": "72157635221100135", "photo_flickr_id": "4259605924", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47165", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward it became very dark .", "storylet_id": "235828"}], [{"original_text": "I decided to leave before it began to rain.", "album_id": "72157635221100135", "photo_flickr_id": "4259606322", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47165", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to leave before it began to rain .", "storylet_id": "235829"}], [{"original_text": "Is this vacation house, not the cutest little thing.", "album_id": "72157635221100135", "photo_flickr_id": "4259593288", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47166", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "is this vacation house , not the cutest little thing .", "storylet_id": "235830"}], [{"original_text": "The wetlands may be full of bugs, but I love the sounds of the frogs.", "album_id": "72157635221100135", "photo_flickr_id": "4258840025", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47166", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wetlands may be full of bugs , but i love the sounds of the frogs .", "storylet_id": "235831"}], [{"original_text": "The water was very rough out there. This boat looks like its about to topple.", "album_id": "72157635221100135", "photo_flickr_id": "4259599916", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47166", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water was very rough out there . this boat looks like its about to topple .", "storylet_id": "235832"}], [{"original_text": "The marina was full on since the storm was coming.", "album_id": "72157635221100135", "photo_flickr_id": "4259606322", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47166", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the marina was full on since the storm was coming .", "storylet_id": "235833"}], [{"original_text": "The flags were ferociously blowing.", "album_id": "72157635221100135", "photo_flickr_id": "4259608170", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47166", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the flags were ferociously blowing .", "storylet_id": "235834"}], [{"original_text": "The family invited us to the water", "album_id": "72157635221100135", "photo_flickr_id": "4259595084", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "47167", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family invited us to the water", "storylet_id": "235835"}], [{"original_text": "It was such a beautiful peaceful day at first", "album_id": "72157635221100135", "photo_flickr_id": "4258840025", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "47167", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was such a beautiful peaceful day at first", "storylet_id": "235836"}], [{"original_text": "Then the dark clouds came rolling in", "album_id": "72157635221100135", "photo_flickr_id": "4259596548", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "47167", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the dark clouds came rolling in", "storylet_id": "235837"}], [{"original_text": "We were afraid to go out on the water", "album_id": "72157635221100135", "photo_flickr_id": "4259605924", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "47167", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were afraid to go out on the water", "storylet_id": "235838"}], [{"original_text": "So we stayed in and didn't tempt fate", "album_id": "72157635221100135", "photo_flickr_id": "4259606322", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "47167", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so we stayed in and did n't tempt fate", "storylet_id": "235839"}], [{"original_text": "Our sea-side cottage was so cute.", "album_id": "72157635221100135", "photo_flickr_id": "4259593288", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47168", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our sea-side cottage was so cute .", "storylet_id": "235840"}], [{"original_text": "The grass in front of the harbor was worthy of a run through.", "album_id": "72157635221100135", "photo_flickr_id": "4258840025", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47168", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the grass in front of the harbor was worthy of a run through .", "storylet_id": "235841"}], [{"original_text": "We watched the sailboats take off.", "album_id": "72157635221100135", "photo_flickr_id": "4259599916", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47168", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we watched the sailboats take off .", "storylet_id": "235842"}], [{"original_text": "Most of the boats here were recreational boats.", "album_id": "72157635221100135", "photo_flickr_id": "4259606322", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47168", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "most of the boats here were recreational boats .", "storylet_id": "235843"}], [{"original_text": "The marina flag flew high.", "album_id": "72157635221100135", "photo_flickr_id": "4259608170", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47168", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the marina flag flew high .", "storylet_id": "235844"}], [{"original_text": "the family has a house on the lake they visit every year on vacation.", "album_id": "72157635221100135", "photo_flickr_id": "4259595084", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "47169", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family has a house on the lake they visit every year on vacation .", "storylet_id": "235845"}], [{"original_text": "they own acres of land that is very beautiful during the summer months.", "album_id": "72157635221100135", "photo_flickr_id": "4258840025", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "47169", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they own acres of land that is very beautiful during the summer months .", "storylet_id": "235846"}], [{"original_text": "they also have over 20 acres of land for sale. that will sell real easy this time of year.", "album_id": "72157635221100135", "photo_flickr_id": "4259596548", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "47169", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also have over 20 acres of land for sale . that will sell real easy this time of year .", "storylet_id": "235847"}], [{"original_text": "next to their lake house is a boat dock where they house several boats they own.", "album_id": "72157635221100135", "photo_flickr_id": "4259605924", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "47169", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next to their lake house is a boat dock where they house several boats they own .", "storylet_id": "235848"}], [{"original_text": "this boat dock is the only one in town and it is a beautiful resort during the spring and summer.", "album_id": "72157635221100135", "photo_flickr_id": "4259606322", "setting": "last-3-pick-old-and-tell", "worker_id": "01L8SA1CQESUG02", "story_id": "47169", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this boat dock is the only one in town and it is a beautiful resort during the spring and summer .", "storylet_id": "235849"}], [{"original_text": "Donnie went to Canada to stay with his dad over the winter at his cabin.", "album_id": "72157623063255669", "photo_flickr_id": "4265299729", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "47170", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] went to location to stay with his dad over the winter at his cabin .", "storylet_id": "235850"}], [{"original_text": "The landscape was cold and harsh but at the same time beautiful.", "album_id": "72157623063255669", "photo_flickr_id": "4265285701", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "47170", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the landscape was cold and harsh but at the same time beautiful .", "storylet_id": "235851"}], [{"original_text": "During the days Donnie would hunt for food to eat.", "album_id": "72157623063255669", "photo_flickr_id": "4266034212", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "47170", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "during the days [male] would hunt for food to eat .", "storylet_id": "235852"}], [{"original_text": "While Donnie would be out hunting he took in the beauty of the outdoors.", "album_id": "72157623063255669", "photo_flickr_id": "4265296779", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "47170", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while [male] would be out hunting he took in the beauty of the outdoors .", "storylet_id": "235853"}], [{"original_text": "This was Donnie's favorite winter he has ever had and he is coming back next winter.", "album_id": "72157623063255669", "photo_flickr_id": "4266041242", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "47170", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was [male] 's favorite winter he has ever had and he is coming back next winter .", "storylet_id": "235854"}], [{"original_text": "Sam visited Japan during the summer. He found the countryside of Japan very beautiful. ", "album_id": "72157623063255669", "photo_flickr_id": "4266044950", "setting": "first-2-pick-and-tell", "worker_id": "06JNEE8AN44K0R1", "story_id": "47171", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] visited location during the summer . he found the countryside of location very beautiful .", "storylet_id": "235855"}], [{"original_text": "A pond emptied into a beautiful manmade river with rocks.", "album_id": "72157623063255669", "photo_flickr_id": "4265299729", "setting": "first-2-pick-and-tell", "worker_id": "06JNEE8AN44K0R1", "story_id": "47171", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a pond emptied into a beautiful manmade river with rocks .", "storylet_id": "235856"}], [{"original_text": "As Sam continued to take a look at the landscape, he found a beautiful rock formation.", "album_id": "72157623063255669", "photo_flickr_id": "4265292551", "setting": "first-2-pick-and-tell", "worker_id": "06JNEE8AN44K0R1", "story_id": "47171", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as [male] continued to take a look at the landscape , he found a beautiful rock formation .", "storylet_id": "235857"}], [{"original_text": "He was graciously invited to take a tour of someone's house. He noted how neat and beautifully clean the house was.", "album_id": "72157623063255669", "photo_flickr_id": "4266045784", "setting": "first-2-pick-and-tell", "worker_id": "06JNEE8AN44K0R1", "story_id": "47171", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was graciously invited to take a tour of someone 's house . he noted how neat and beautifully clean the house was .", "storylet_id": "235858"}], [{"original_text": "In the living room, they had an artwork that depicted traditional Japanese work.", "album_id": "72157623063255669", "photo_flickr_id": "4266038374", "setting": "first-2-pick-and-tell", "worker_id": "06JNEE8AN44K0R1", "story_id": "47171", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the living room , they had an artwork that depicted traditional japanese work .", "storylet_id": "235859"}], [{"original_text": "The countryside is always remarkable in the winter.", "album_id": "72157623063255669", "photo_flickr_id": "4265299729", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47172", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the countryside is always remarkable in the winter .", "storylet_id": "235860"}], [{"original_text": "The hills shine in the snow.", "album_id": "72157623063255669", "photo_flickr_id": "4265285701", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47172", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the hills shine in the snow .", "storylet_id": "235861"}], [{"original_text": "The streams freeze over.", "album_id": "72157623063255669", "photo_flickr_id": "4266034212", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47172", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the streams freeze over .", "storylet_id": "235862"}], [{"original_text": "The trees are weighed down by the snow and ice.", "album_id": "72157623063255669", "photo_flickr_id": "4265296779", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47172", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the trees are weighed down by the snow and ice .", "storylet_id": "235863"}], [{"original_text": "The bridges are slick with ice.", "album_id": "72157623063255669", "photo_flickr_id": "4266041242", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47172", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bridges are slick with ice .", "storylet_id": "235864"}], [{"original_text": "We had a snow storm move through last night.", "album_id": "72157623063255669", "photo_flickr_id": "4265299729", "setting": "last-3-pick-old-and-tell", "worker_id": "IZE32SNT4CA1CQY", "story_id": "47173", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a snow storm move through last night .", "storylet_id": "235865"}], [{"original_text": "The hillside looked like it was blanketed in a soft fluffy white blanket.", "album_id": "72157623063255669", "photo_flickr_id": "4265285701", "setting": "last-3-pick-old-and-tell", "worker_id": "IZE32SNT4CA1CQY", "story_id": "47173", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the hillside looked like it was blanketed in a soft fluffy white blanket .", "storylet_id": "235866"}], [{"original_text": "There wasn't a lot of water in the stream so we were able to walk down near the edge and walk across the rocks.", "album_id": "72157623063255669", "photo_flickr_id": "4266034212", "setting": "last-3-pick-old-and-tell", "worker_id": "IZE32SNT4CA1CQY", "story_id": "47173", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was n't a lot of water in the stream so we were able to walk down near the edge and walk across the rocks .", "storylet_id": "235867"}], [{"original_text": "There were parts of the stream where the top of the water was completely frozen over so the snow just sat on top.", "album_id": "72157623063255669", "photo_flickr_id": "4265296779", "setting": "last-3-pick-old-and-tell", "worker_id": "IZE32SNT4CA1CQY", "story_id": "47173", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were parts of the stream where the top of the water was completely frozen over so the snow just sat on top .", "storylet_id": "235868"}], [{"original_text": "Here's a beautiful shot of the bridge that goes over the stream.", "album_id": "72157623063255669", "photo_flickr_id": "4266041242", "setting": "last-3-pick-old-and-tell", "worker_id": "IZE32SNT4CA1CQY", "story_id": "47173", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's a beautiful shot of the bridge that goes over the stream .", "storylet_id": "235869"}], [{"original_text": "We recently headed up to my family's vacation house in the mountains.", "album_id": "72157623063255669", "photo_flickr_id": "4265299729", "setting": "last-3-pick-old-and-tell", "worker_id": "SVPCXOHUMPOJ9HM", "story_id": "47174", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we recently headed up to my family 's vacation house in the mountains .", "storylet_id": "235870"}], [{"original_text": "In our backyard there is this beautiful mountain.", "album_id": "72157623063255669", "photo_flickr_id": "4265285701", "setting": "last-3-pick-old-and-tell", "worker_id": "SVPCXOHUMPOJ9HM", "story_id": "47174", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in our backyard there is this beautiful mountain .", "storylet_id": "235871"}], [{"original_text": "We often go for walks on the various trails around the house.", "album_id": "72157623063255669", "photo_flickr_id": "4266034212", "setting": "last-3-pick-old-and-tell", "worker_id": "SVPCXOHUMPOJ9HM", "story_id": "47174", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we often go for walks on the various trails around the house .", "storylet_id": "235872"}], [{"original_text": "We often see a lot of animals and all of their tracks on the trails.", "album_id": "72157623063255669", "photo_flickr_id": "4265296779", "setting": "last-3-pick-old-and-tell", "worker_id": "SVPCXOHUMPOJ9HM", "story_id": "47174", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we often see a lot of animals and all of their tracks on the trails .", "storylet_id": "235873"}], [{"original_text": "At the end of the trail in this beautiful bridge that goes over a frozen river.", "album_id": "72157623063255669", "photo_flickr_id": "4266041242", "setting": "last-3-pick-old-and-tell", "worker_id": "SVPCXOHUMPOJ9HM", "story_id": "47174", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the trail in this beautiful bridge that goes over a frozen river .", "storylet_id": "235874"}], [{"original_text": "The artist created an interstingg picture of a skull head.", "album_id": "72157623189575342", "photo_flickr_id": "4266029369", "setting": "first-2-pick-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47175", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the artist created an interstingg picture of a skull head .", "storylet_id": "235875"}], [{"original_text": "The debris was covered with snow and graffiti.", "album_id": "72157623189575342", "photo_flickr_id": "4266776062", "setting": "first-2-pick-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47175", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the debris was covered with snow and graffiti .", "storylet_id": "235876"}], [{"original_text": "The individuals created an alert written on the snow.", "album_id": "72157623189575342", "photo_flickr_id": "4266776442", "setting": "first-2-pick-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47175", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the individuals created an alert written on the snow .", "storylet_id": "235877"}], [{"original_text": "The vehicle was covered with xnow and graffiti.", "album_id": "72157623189575342", "photo_flickr_id": "4266777430", "setting": "first-2-pick-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47175", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the vehicle was covered with xnow and graffiti .", "storylet_id": "235878"}], [{"original_text": "The snow covered the junk with people writing on the snow.", "album_id": "72157623189575342", "photo_flickr_id": "4266030961", "setting": "first-2-pick-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47175", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the snow covered the junk with people writing on the snow .", "storylet_id": "235879"}], [{"original_text": "Someone was getting very creative with graffiti in the snow. Is that French?", "album_id": "72157623189575342", "photo_flickr_id": "4266776132", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47176", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "someone was getting very creative with graffiti in the snow . is that french ?", "storylet_id": "235880"}], [{"original_text": "It was everywhere on this block.", "album_id": "72157623189575342", "photo_flickr_id": "4266776442", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47176", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was everywhere on this block .", "storylet_id": "235881"}], [{"original_text": "Funny saying about the white powder.", "album_id": "72157623189575342", "photo_flickr_id": "4266030075", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47176", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "funny saying about the white powder .", "storylet_id": "235882"}], [{"original_text": "And a cartoon character on this car.", "album_id": "72157623189575342", "photo_flickr_id": "4266777092", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47176", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and a cartoon character on this car .", "storylet_id": "235883"}], [{"original_text": "This must be the graffiti artist's tag. It was definitely a surprise.", "album_id": "72157623189575342", "photo_flickr_id": "4266030961", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47176", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this must be the graffiti artist 's tag . it was definitely a surprise .", "storylet_id": "235884"}], [{"original_text": "There was no reason not to start our morning out hard-core. ", "album_id": "72157623189575342", "photo_flickr_id": "4266029369", "setting": "last-3-pick-old-and-tell", "worker_id": "LOBI5AE428LIS76", "story_id": "47177", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was no reason not to start our morning out hard-core .", "storylet_id": "235885"}], [{"original_text": "It felt better painting the snow than the walls. ", "album_id": "72157623189575342", "photo_flickr_id": "4266776062", "setting": "last-3-pick-old-and-tell", "worker_id": "LOBI5AE428LIS76", "story_id": "47177", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it felt better painting the snow than the walls .", "storylet_id": "235886"}], [{"original_text": "Red really seemed to stick out against the snow. ", "album_id": "72157623189575342", "photo_flickr_id": "4266776442", "setting": "last-3-pick-old-and-tell", "worker_id": "LOBI5AE428LIS76", "story_id": "47177", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "red really seemed to stick out against the snow .", "storylet_id": "235887"}], [{"original_text": "Some people are probably going to be really worried before they realize it's just on the snow.", "album_id": "72157623189575342", "photo_flickr_id": "4266777430", "setting": "last-3-pick-old-and-tell", "worker_id": "LOBI5AE428LIS76", "story_id": "47177", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people are probably going to be really worried before they realize it 's just on the snow .", "storylet_id": "235888"}], [{"original_text": "It was a fun day with a lot of fun snow graffiti. ", "album_id": "72157623189575342", "photo_flickr_id": "4266030961", "setting": "last-3-pick-old-and-tell", "worker_id": "LOBI5AE428LIS76", "story_id": "47177", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a fun day with a lot of fun snow graffiti .", "storylet_id": "235889"}], [{"original_text": "There was a major snow storms the day before a protest was supposed to happen.", "album_id": "72157623189575342", "photo_flickr_id": "4266029369", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "47178", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a major snow storms the day before a protest was supposed to happen .", "storylet_id": "235890"}], [{"original_text": " Everybody thought because of the snow nobody would show up to protest.", "album_id": "72157623189575342", "photo_flickr_id": "4266776062", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "47178", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everybody thought because of the snow nobody would show up to protest .", "storylet_id": "235891"}], [{"original_text": "Instead everybody was shocked when the protesters used the snow to create graffiti.", "album_id": "72157623189575342", "photo_flickr_id": "4266776442", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "47178", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "instead everybody was shocked when the protesters used the snow to create graffiti .", "storylet_id": "235892"}], [{"original_text": " Sara message was plastered everywhere, but did not damage any buildings.", "album_id": "72157623189575342", "photo_flickr_id": "4266777430", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "47178", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] message was plastered everywhere , but did not damage any buildings .", "storylet_id": "235893"}], [{"original_text": "They were able to get their point across without any injuries or damage.", "album_id": "72157623189575342", "photo_flickr_id": "4266030961", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "47178", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were able to get their point across without any injuries or damage .", "storylet_id": "235894"}], [{"original_text": "Some taggers got creative and spraypainted the snowdrifts. ", "album_id": "72157623189575342", "photo_flickr_id": "4266029369", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "47179", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some taggers got creative and spraypainted the snowdrifts .", "storylet_id": "235895"}], [{"original_text": "Some messages were political. ", "album_id": "72157623189575342", "photo_flickr_id": "4266776062", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "47179", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some messages were political .", "storylet_id": "235896"}], [{"original_text": "Some messages were ironic. ", "album_id": "72157623189575342", "photo_flickr_id": "4266776442", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "47179", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some messages were ironic .", "storylet_id": "235897"}], [{"original_text": "Others were just tags. ", "album_id": "72157623189575342", "photo_flickr_id": "4266777430", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "47179", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others were just tags .", "storylet_id": "235898"}], [{"original_text": "Obvious there was more than one. What a cool idea! ", "album_id": "72157623189575342", "photo_flickr_id": "4266030961", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "47179", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "obvious there was more than one . what a cool idea !", "storylet_id": "235899"}], [{"original_text": "The famous site was a learning opportunity.", "album_id": "72157603106928876", "photo_flickr_id": "1982104275", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47180", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the famous site was a learning opportunity .", "storylet_id": "235900"}], [{"original_text": "The inside of the structure provided a p!ace for rest.", "album_id": "72157603106928876", "photo_flickr_id": "1982105469", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47180", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the inside of the structure provided a p ! ace for rest .", "storylet_id": "235901"}], [{"original_text": "The exterior was an example of historic building plans.", "album_id": "72157603106928876", "photo_flickr_id": "1982919564", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47180", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the exterior was an example of historic building plans .", "storylet_id": "235902"}], [{"original_text": "The grounds contained flowers and other free plants.", "album_id": "72157603106928876", "photo_flickr_id": "1982919820", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47180", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the grounds contained flowers and other free plants .", "storylet_id": "235903"}], [{"original_text": "She took pictures to remember the event.", "album_id": "72157603106928876", "photo_flickr_id": "1982106769", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47180", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she took pictures to remember the event .", "storylet_id": "235904"}], [{"original_text": "The neighborhood where they were house hunting was perfect.", "album_id": "72157603106928876", "photo_flickr_id": "1982104677", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "47181", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the neighborhood where they were house hunting was perfect .", "storylet_id": "235905"}], [{"original_text": "There were lots of beautiful houses.", "album_id": "72157603106928876", "photo_flickr_id": "1982918852", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "47181", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were lots of beautiful houses .", "storylet_id": "235906"}], [{"original_text": "One of the best features of one was a huge covered porch.", "album_id": "72157603106928876", "photo_flickr_id": "1982105469", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "47181", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the best features of one was a huge covered porch .", "storylet_id": "235907"}], [{"original_text": "All of the houses were spacious.", "album_id": "72157603106928876", "photo_flickr_id": "1982106435", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "47181", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the houses were spacious .", "storylet_id": "235908"}], [{"original_text": "Some had unique architecture designs.", "album_id": "72157603106928876", "photo_flickr_id": "1982107195", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "47181", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some had unique architecture designs .", "storylet_id": "235909"}], [{"original_text": "This is a historic monument in a historic town.", "album_id": "72157603106928876", "photo_flickr_id": "1982104275", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47182", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a historic monument in a historic town .", "storylet_id": "235910"}], [{"original_text": "The area is rural and has kept its natural beauty.", "album_id": "72157603106928876", "photo_flickr_id": "1982105469", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47182", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the area is rural and has kept its natural beauty .", "storylet_id": "235911"}], [{"original_text": "Most of the houses are very nice with spacious yards.", "album_id": "72157603106928876", "photo_flickr_id": "1982919564", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47182", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most of the houses are very nice with spacious yards .", "storylet_id": "235912"}], [{"original_text": "Some have very square designs with flowers and decor.", "album_id": "72157603106928876", "photo_flickr_id": "1982919820", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47182", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some have very square designs with flowers and decor .", "storylet_id": "235913"}], [{"original_text": "Others have slanted roofs much like a triangle. It is very nice to see the diversity in older architecture.", "album_id": "72157603106928876", "photo_flickr_id": "1982106769", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47182", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "others have slanted roofs much like a triangle . it is very nice to see the diversity in older architecture .", "storylet_id": "235914"}], [{"original_text": "After we spent our afternoon at the park we decided to walk back home.", "album_id": "72157603106928876", "photo_flickr_id": "1982104677", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47183", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after we spent our afternoon at the park we decided to walk back home .", "storylet_id": "235915"}], [{"original_text": "We saw a lot of interesting houses along the way.", "album_id": "72157603106928876", "photo_flickr_id": "1982918852", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47183", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw a lot of interesting houses along the way .", "storylet_id": "235916"}], [{"original_text": "Some of them were enormous.", "album_id": "72157603106928876", "photo_flickr_id": "1982105469", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47183", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them were enormous .", "storylet_id": "235917"}], [{"original_text": "After a few minutes we were almost there.", "album_id": "72157603106928876", "photo_flickr_id": "1982106435", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47183", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a few minutes we were almost there .", "storylet_id": "235918"}], [{"original_text": "Finally we arrived and we made some dinner.", "album_id": "72157603106928876", "photo_flickr_id": "1982107195", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47183", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally we arrived and we made some dinner .", "storylet_id": "235919"}], [{"original_text": "I went to the park yesterday to read a new book about architectural design.", "album_id": "72157603106928876", "photo_flickr_id": "1982104677", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47184", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the park yesterday to read a new book about architectural design .", "storylet_id": "235920"}], [{"original_text": "Most the homes in my neighborhood, like this one, are kind of mundane.", "album_id": "72157603106928876", "photo_flickr_id": "1982918852", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47184", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "most the homes in my neighborhood , like this one , are kind of mundane .", "storylet_id": "235921"}], [{"original_text": "I do appreciate homes with spacious, covered porches.", "album_id": "72157603106928876", "photo_flickr_id": "1982105469", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47184", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i do appreciate homes with spacious , covered porches .", "storylet_id": "235922"}], [{"original_text": "There are, of course, exceptions, as this is one of the nicest homes I have ever seen.", "album_id": "72157603106928876", "photo_flickr_id": "1982106435", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47184", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are , of course , exceptions , as this is one of the nicest homes i have ever seen .", "storylet_id": "235923"}], [{"original_text": "However, my favorite house in the neighborhood is undoubtedly this one.", "album_id": "72157603106928876", "photo_flickr_id": "1982107195", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47184", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , my favorite house in the neighborhood is undoubtedly this one .", "storylet_id": "235924"}], [{"original_text": "For my painting class I need to do a painting of an outdoor scene, so I took a walk today to get some ideas.", "album_id": "72157623081646221", "photo_flickr_id": "4272849913", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "47185", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for my painting class i need to do a painting of an outdoor scene , so i took a walk today to get some ideas .", "storylet_id": "235925"}], [{"original_text": "This tree captured my interest. I like the shape of the branches.", "album_id": "72157623081646221", "photo_flickr_id": "4272866259", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "47185", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this tree captured my interest . i like the shape of the branches .", "storylet_id": "235926"}], [{"original_text": "Flowers might be an idea.", "album_id": "72157623081646221", "photo_flickr_id": "4272811643", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "47185", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "flowers might be an idea .", "storylet_id": "235927"}], [{"original_text": "I just don't know if I should paint several flowers or just one.", "album_id": "72157623081646221", "photo_flickr_id": "4273569794", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "47185", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i just do n't know if i should paint several flowers or just one .", "storylet_id": "235928"}], [{"original_text": "Of course a cluster is also an idea. I have much to think ab out before my next class.", "album_id": "72157623081646221", "photo_flickr_id": "4272895383", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "47185", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of course a cluster is also an idea . i have much to think ab out before my next class .", "storylet_id": "235929"}], [{"original_text": "I went into the city to do some shopping.", "album_id": "72157623081646221", "photo_flickr_id": "4273360140", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47186", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went into the city to do some shopping .", "storylet_id": "235930"}], [{"original_text": "When I got back I decided to take a nap.", "album_id": "72157623081646221", "photo_flickr_id": "4273381192", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47186", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when i got back i decided to take a nap .", "storylet_id": "235931"}], [{"original_text": "Afterwards I had to mow the lawn.", "album_id": "72157623081646221", "photo_flickr_id": "4273517122", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47186", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards i had to mow the lawn .", "storylet_id": "235932"}], [{"original_text": "The lawn is very big.", "album_id": "72157623081646221", "photo_flickr_id": "4273534008", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47186", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lawn is very big .", "storylet_id": "235933"}], [{"original_text": "I watered the flowers.", "album_id": "72157623081646221", "photo_flickr_id": "4272811643", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47186", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i watered the flowers .", "storylet_id": "235934"}], [{"original_text": "I went on a site-seeing tour of my city today.", "album_id": "72157623081646221", "photo_flickr_id": "4273360140", "setting": "last-3-pick-old-and-tell", "worker_id": "HO4JSU101DNVYG5", "story_id": "47187", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on a site-seeing tour of my city today .", "storylet_id": "235935"}], [{"original_text": "The architecture was incredible, with stone and cement buildings.", "album_id": "72157623081646221", "photo_flickr_id": "4273381192", "setting": "last-3-pick-old-and-tell", "worker_id": "HO4JSU101DNVYG5", "story_id": "47187", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the architecture was incredible , with stone and cement buildings .", "storylet_id": "235936"}], [{"original_text": "One of them looked like it could have been built by the Romans.", "album_id": "72157623081646221", "photo_flickr_id": "4273517122", "setting": "last-3-pick-old-and-tell", "worker_id": "HO4JSU101DNVYG5", "story_id": "47187", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of them looked like it could have been built by the romans .", "storylet_id": "235937"}], [{"original_text": "Standing in a field, we could see the entire city at once.", "album_id": "72157623081646221", "photo_flickr_id": "4273534008", "setting": "last-3-pick-old-and-tell", "worker_id": "HO4JSU101DNVYG5", "story_id": "47187", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "standing in a field , we could see the entire city at once .", "storylet_id": "235938"}], [{"original_text": "The local plants are pretty incredibly, since they're so colorful.", "album_id": "72157623081646221", "photo_flickr_id": "4272811643", "setting": "last-3-pick-old-and-tell", "worker_id": "HO4JSU101DNVYG5", "story_id": "47187", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the local plants are pretty incredibly , since they 're so colorful .", "storylet_id": "235939"}], [{"original_text": "Spring is my favorite time of year.", "album_id": "72157623081646221", "photo_flickr_id": "4272849913", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47188", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "spring is my favorite time of year .", "storylet_id": "235940"}], [{"original_text": "The trees are blooming.", "album_id": "72157623081646221", "photo_flickr_id": "4272866259", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47188", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the trees are blooming .", "storylet_id": "235941"}], [{"original_text": "The colorful plants come out.", "album_id": "72157623081646221", "photo_flickr_id": "4272811643", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47188", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the colorful plants come out .", "storylet_id": "235942"}], [{"original_text": "They are fun to look out.", "album_id": "72157623081646221", "photo_flickr_id": "4273569794", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47188", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they are fun to look out .", "storylet_id": "235943"}], [{"original_text": "The flowers are always so pretty.", "album_id": "72157623081646221", "photo_flickr_id": "4272895383", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47188", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the flowers are always so pretty .", "storylet_id": "235944"}], [{"original_text": "Going to the city was great because it was the most gorgeous city I had ever seen.", "album_id": "72157623081646221", "photo_flickr_id": "4273360140", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47189", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going to the city was great because it was the most gorgeous city i had ever seen .", "storylet_id": "235945"}], [{"original_text": "The buildings were built well and near trees.", "album_id": "72157623081646221", "photo_flickr_id": "4273381192", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47189", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the buildings were built well and near trees .", "storylet_id": "235946"}], [{"original_text": "The house that we stayed in was large and accommodating.", "album_id": "72157623081646221", "photo_flickr_id": "4273517122", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47189", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the house that we stayed in was large and accommodating .", "storylet_id": "235947"}], [{"original_text": "Getting to look out at the blue sky all day was our reward.", "album_id": "72157623081646221", "photo_flickr_id": "4273534008", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47189", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "getting to look out at the blue sky all day was our reward .", "storylet_id": "235948"}], [{"original_text": "The flowers in the grass were gorgeous and we picked some.", "album_id": "72157623081646221", "photo_flickr_id": "4272811643", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47189", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the flowers in the grass were gorgeous and we picked some .", "storylet_id": "235949"}], [{"original_text": "Mom and Dad are celebrating 50 years as husband and wife.", "album_id": "72157623206241836", "photo_flickr_id": "4272588249", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47190", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom and dad are celebrating 50 years as husband and wife .", "storylet_id": "235950"}], [{"original_text": "Good friends and family were all there.", "album_id": "72157623206241836", "photo_flickr_id": "4273335094", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47190", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "good friends and family were all there .", "storylet_id": "235951"}], [{"original_text": "We count our blessings that we have such great parents.", "album_id": "72157623206241836", "photo_flickr_id": "4273335918", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47190", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we count our blessings that we have such great parents .", "storylet_id": "235952"}], [{"original_text": "My sister has put marriage on hold to go to medical school and now wonders if she made the right choice.", "album_id": "72157623206241836", "photo_flickr_id": "4272604279", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47190", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my sister has put marriage on hold to go to medical school and now wonders if she made the right choice .", "storylet_id": "235953"}], [{"original_text": "I hope that everyone will someday have a love that blooms forever.", "album_id": "72157623206241836", "photo_flickr_id": "4273351836", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47190", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope that everyone will someday have a love that blooms forever .", "storylet_id": "235954"}], [{"original_text": "My grandma and grandpa came to visit.", "album_id": "72157623206241836", "photo_flickr_id": "4272587927", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47191", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my grandma and grandpa came to visit .", "storylet_id": "235955"}], [{"original_text": "They brought there friends.", "album_id": "72157623206241836", "photo_flickr_id": "4272588249", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47191", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they brought there friends .", "storylet_id": "235956"}], [{"original_text": "I had a beer and talked a lot.", "album_id": "72157623206241836", "photo_flickr_id": "4273332190", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47191", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a beer and talked a lot .", "storylet_id": "235957"}], [{"original_text": "The ladies went outside to talk.", "album_id": "72157623206241836", "photo_flickr_id": "4273335094", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47191", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ladies went outside to talk .", "storylet_id": "235958"}], [{"original_text": "Everyone loved the flowers.", "album_id": "72157623206241836", "photo_flickr_id": "4273351836", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47191", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone loved the flowers .", "storylet_id": "235959"}], [{"original_text": "The couple held a party, everyone was invited.", "album_id": "72157623206241836", "photo_flickr_id": "4272588249", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "47192", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple held a party , everyone was invited .", "storylet_id": "235960"}], [{"original_text": "The people that came, talked all night and conversed about everything.", "album_id": "72157623206241836", "photo_flickr_id": "4273335094", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "47192", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the people that came , talked all night and conversed about everything .", "storylet_id": "235961"}], [{"original_text": "Some people had never met before, still talking to anyone they could.", "album_id": "72157623206241836", "photo_flickr_id": "4273335918", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "47192", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people had never met before , still talking to anyone they could .", "storylet_id": "235962"}], [{"original_text": "The night was a hit, and most people loved the party.", "album_id": "72157623206241836", "photo_flickr_id": "4272604279", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "47192", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the night was a hit , and most people loved the party .", "storylet_id": "235963"}], [{"original_text": "At the end of the night, everyone had fun.", "album_id": "72157623206241836", "photo_flickr_id": "4273351836", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "47192", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , everyone had fun .", "storylet_id": "235964"}], [{"original_text": "These people were involved in a lottery and didn't know they would soon be billionaires.", "album_id": "72157623206241836", "photo_flickr_id": "4272588249", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47193", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these people were involved in a lottery and did n't know they would soon be billionaires .", "storylet_id": "235965"}], [{"original_text": "They met with these people to have dinner and realized they were late to get there lottery ticket.", "album_id": "72157623206241836", "photo_flickr_id": "4273335094", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47193", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they met with these people to have dinner and realized they were late to get there lottery ticket .", "storylet_id": "235966"}], [{"original_text": "So, they called the kids and said, please go get our lottery, we never miss.", "album_id": "72157623206241836", "photo_flickr_id": "4273335918", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47193", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so , they called the kids and said , please go get our lottery , we never miss .", "storylet_id": "235967"}], [{"original_text": "This woman sold them the ticket in the Mini mart next door.", "album_id": "72157623206241836", "photo_flickr_id": "4272604279", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47193", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this woman sold them the ticket in the mini mart next door .", "storylet_id": "235968"}], [{"original_text": "They bought everyone flowers, added a 5,000 dollar check and said, thank you for all of your help.", "album_id": "72157623206241836", "photo_flickr_id": "4273351836", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47193", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they bought everyone flowers , added a 5,000 dollar check and said , thank you for all of your help .", "storylet_id": "235969"}], [{"original_text": "I took my wife to couple's support group.", "album_id": "72157623206241836", "photo_flickr_id": "4272587927", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "47194", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took my wife to couple 's support group .", "storylet_id": "235970"}], [{"original_text": "We discussed our communication difficulties with other couples.", "album_id": "72157623206241836", "photo_flickr_id": "4272588249", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "47194", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we discussed our communication difficulties with other couples .", "storylet_id": "235971"}], [{"original_text": "A therapist helped us to learn techniques.", "album_id": "72157623206241836", "photo_flickr_id": "4273332190", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "47194", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a therapist helped us to learn techniques .", "storylet_id": "235972"}], [{"original_text": "Afterwards, we went out to eat with our daughter.", "album_id": "72157623206241836", "photo_flickr_id": "4273335094", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "47194", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards , we went out to eat with our daughter .", "storylet_id": "235973"}], [{"original_text": "She had bought us a flower arrangement, which was nice of her.", "album_id": "72157623206241836", "photo_flickr_id": "4273351836", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "47194", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she had bought us a flower arrangement , which was nice of her .", "storylet_id": "235974"}], [{"original_text": "I went to the convention yesterday.", "album_id": "72157623093230347", "photo_flickr_id": "4277036319", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47195", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the convention yesterday .", "storylet_id": "235975"}], [{"original_text": "There were a lot of people there.", "album_id": "72157623093230347", "photo_flickr_id": "4277782742", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47195", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people there .", "storylet_id": "235976"}], [{"original_text": "I got to meet a lot of different people.", "album_id": "72157623093230347", "photo_flickr_id": "4277783462", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47195", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got to meet a lot of different people .", "storylet_id": "235977"}], [{"original_text": "They were all very happy.", "album_id": "72157623093230347", "photo_flickr_id": "4277788498", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47195", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were all very happy .", "storylet_id": "235978"}], [{"original_text": "We stayed to watch the presentations.", "album_id": "72157623093230347", "photo_flickr_id": "4277789224", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47195", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we stayed to watch the presentations .", "storylet_id": "235979"}], [{"original_text": "It's time for our budget meeting.", "album_id": "72157623093230347", "photo_flickr_id": "4277783462", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47196", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's time for our budget meeting .", "storylet_id": "235980"}], [{"original_text": "Everyone always loves the \"My name is\" tags.", "album_id": "72157623093230347", "photo_flickr_id": "4277038639", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47196", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone always loves the `` my name is '' tags .", "storylet_id": "235981"}], [{"original_text": "Some brought ear buds just in case of boredom.", "album_id": "72157623093230347", "photo_flickr_id": "4277036319", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47196", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some brought ear buds just in case of boredom .", "storylet_id": "235982"}], [{"original_text": "Others decided to eat while the presentation was going on.", "album_id": "72157623093230347", "photo_flickr_id": "4277789914", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47196", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others decided to eat while the presentation was going on .", "storylet_id": "235983"}], [{"original_text": "Overall it was a great success.", "album_id": "72157623093230347", "photo_flickr_id": "4277789224", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47196", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall it was a great success .", "storylet_id": "235984"}], [{"original_text": "Chester was ready to present, even though he was nervous.", "album_id": "72157623093230347", "photo_flickr_id": "4277036319", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47197", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was ready to present , even though he was nervous .", "storylet_id": "235985"}], [{"original_text": "His whole family had arrived to watch his presentation.", "album_id": "72157623093230347", "photo_flickr_id": "4277782742", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47197", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his whole family had arrived to watch his presentation .", "storylet_id": "235986"}], [{"original_text": "Along with people from all over the country.", "album_id": "72157623093230347", "photo_flickr_id": "4277783462", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47197", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "along with people from all over the country .", "storylet_id": "235987"}], [{"original_text": "They seemed excited for it to begin..", "album_id": "72157623093230347", "photo_flickr_id": "4277788498", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47197", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they seemed excited for it to begin..", "storylet_id": "235988"}], [{"original_text": "And, he finally took the stage.", "album_id": "72157623093230347", "photo_flickr_id": "4277789224", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47197", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , he finally took the stage .", "storylet_id": "235989"}], [{"original_text": "We arrived at the event.", "album_id": "72157623093230347", "photo_flickr_id": "4277036319", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47198", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at the event .", "storylet_id": "235990"}], [{"original_text": "People shook hands and talked.", "album_id": "72157623093230347", "photo_flickr_id": "4277782742", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47198", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people shook hands and talked .", "storylet_id": "235991"}], [{"original_text": "After a while, More people showed up.", "album_id": "72157623093230347", "photo_flickr_id": "4277783462", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47198", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after a while , more people showed up .", "storylet_id": "235992"}], [{"original_text": "Eventually the conference began.", "album_id": "72157623093230347", "photo_flickr_id": "4277788498", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47198", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "eventually the conference began .", "storylet_id": "235993"}], [{"original_text": "Everyone took their seats and took notes.", "album_id": "72157623093230347", "photo_flickr_id": "4277789224", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47198", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone took their seats and took notes .", "storylet_id": "235994"}], [{"original_text": "Our monthly sales meeting was not bad this month. ", "album_id": "72157623093230347", "photo_flickr_id": "4277783462", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47199", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our monthly sales meeting was not bad this month .", "storylet_id": "235995"}], [{"original_text": "Jim got stuck with making name tags, but he smiled all the way through it. ", "album_id": "72157623093230347", "photo_flickr_id": "4277038639", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47199", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] got stuck with making name tags , but he smiled all the way through it .", "storylet_id": "235996"}], [{"original_text": "Tim had a bad cord on one of his monitors and spent a lot of time trying to fix that. ", "album_id": "72157623093230347", "photo_flickr_id": "4277036319", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47199", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] had a bad cord on one of his monitors and spent a lot of time trying to fix that .", "storylet_id": "235997"}], [{"original_text": "Jack and Raj just grabbed some food and watched from a safe distance. ", "album_id": "72157623093230347", "photo_flickr_id": "4277789914", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47199", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and raj just grabbed some food and watched from a safe distance .", "storylet_id": "235998"}], [{"original_text": "But finally everything got underway and it went off without a hitch. ", "album_id": "72157623093230347", "photo_flickr_id": "4277789224", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47199", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but finally everything got underway and it went off without a hitch .", "storylet_id": "235999"}], [{"original_text": "Today we had a cooking party.", "album_id": "72157623107791583", "photo_flickr_id": "4283249791", "setting": "first-2-pick-and-tell", "worker_id": "7AOROSRUKQIXJI4", "story_id": "47200", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we had a cooking party .", "storylet_id": "236000"}], [{"original_text": "Many of us got together to create new dishes and enjoy each other's company.", "album_id": "72157623107791583", "photo_flickr_id": "4283993292", "setting": "first-2-pick-and-tell", "worker_id": "7AOROSRUKQIXJI4", "story_id": "47200", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of us got together to create new dishes and enjoy each other 's company .", "storylet_id": "236001"}], [{"original_text": "We made beautiful dishes...", "album_id": "72157623107791583", "photo_flickr_id": "4283995394", "setting": "first-2-pick-and-tell", "worker_id": "7AOROSRUKQIXJI4", "story_id": "47200", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we made beautiful dishes ...", "storylet_id": "236002"}], [{"original_text": "Each more delicious than the last.", "album_id": "72157623107791583", "photo_flickr_id": "4283996784", "setting": "first-2-pick-and-tell", "worker_id": "7AOROSRUKQIXJI4", "story_id": "47200", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "each more delicious than the last .", "storylet_id": "236003"}], [{"original_text": "We had a great time at today's cooking party.", "album_id": "72157623107791583", "photo_flickr_id": "4283255261", "setting": "first-2-pick-and-tell", "worker_id": "7AOROSRUKQIXJI4", "story_id": "47200", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time at today 's cooking party .", "storylet_id": "236004"}], [{"original_text": "I had to cook a lot of food today.", "album_id": "72157623107791583", "photo_flickr_id": "4283249791", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47201", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had to cook a lot of food today .", "storylet_id": "236005"}], [{"original_text": "There was so much work to be done.", "album_id": "72157623107791583", "photo_flickr_id": "4283993292", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47201", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was so much work to be done .", "storylet_id": "236006"}], [{"original_text": "Everyone was going to be coming over soon.", "album_id": "72157623107791583", "photo_flickr_id": "4283995394", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47201", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was going to be coming over soon .", "storylet_id": "236007"}], [{"original_text": "We had to get all of the food prepared.", "album_id": "72157623107791583", "photo_flickr_id": "4283996054", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47201", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had to get all of the food prepared .", "storylet_id": "236008"}], [{"original_text": "Thankfully I finished everything in time.", "album_id": "72157623107791583", "photo_flickr_id": "4283253155", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47201", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thankfully i finished everything in time .", "storylet_id": "236009"}], [{"original_text": "the kitchen was the best place to work.", "album_id": "72157623107791583", "photo_flickr_id": "4283249791", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47202", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kitchen was the best place to work .", "storylet_id": "236010"}], [{"original_text": "The chefs were most passionate about their creations.", "album_id": "72157623107791583", "photo_flickr_id": "4283993292", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47202", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the chefs were most passionate about their creations .", "storylet_id": "236011"}], [{"original_text": "My favorite was the veggie salad.", "album_id": "72157623107791583", "photo_flickr_id": "4283995394", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47202", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my favorite was the veggie salad .", "storylet_id": "236012"}], [{"original_text": "And the veggie pasta was delicious as well.", "album_id": "72157623107791583", "photo_flickr_id": "4283996784", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47202", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the veggie pasta was delicious as well .", "storylet_id": "236013"}], [{"original_text": "Sometimes we ate as we went along.", "album_id": "72157623107791583", "photo_flickr_id": "4283255261", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47202", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sometimes we ate as we went along .", "storylet_id": "236014"}], [{"original_text": "We were preparing for a dinner party at the house tonight. ", "album_id": "72157623107791583", "photo_flickr_id": "4283249791", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "47203", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were preparing for a dinner party at the house tonight .", "storylet_id": "236015"}], [{"original_text": "My boyfriend is making his signature dish. ", "album_id": "72157623107791583", "photo_flickr_id": "4283993292", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "47203", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my boyfriend is making his signature dish .", "storylet_id": "236016"}], [{"original_text": "The first course will be a tomato and mozzarella salad. ", "album_id": "72157623107791583", "photo_flickr_id": "4283995394", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "47203", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first course will be a tomato and mozzarella salad .", "storylet_id": "236017"}], [{"original_text": "My boyfriend is trying to get me to help cook, but I am watching for now. ", "album_id": "72157623107791583", "photo_flickr_id": "4283996054", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "47203", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my boyfriend is trying to get me to help cook , but i am watching for now .", "storylet_id": "236018"}], [{"original_text": "The second course will be a egg noodle pasta with vegetables and cheese. ", "album_id": "72157623107791583", "photo_flickr_id": "4283253155", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "47203", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the second course will be a egg noodle pasta with vegetables and cheese .", "storylet_id": "236019"}], [{"original_text": "My roommate is in culinary school.", "album_id": "72157623107791583", "photo_flickr_id": "4283249791", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47204", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my roommate is in culinary school .", "storylet_id": "236020"}], [{"original_text": "He is a pretty amazing cook.", "album_id": "72157623107791583", "photo_flickr_id": "4283993292", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47204", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he is a pretty amazing cook .", "storylet_id": "236021"}], [{"original_text": "He makes us all kinds of fancy dishes.", "album_id": "72157623107791583", "photo_flickr_id": "4283995394", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47204", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he makes us all kinds of fancy dishes .", "storylet_id": "236022"}], [{"original_text": "They look too pretty to eat.", "album_id": "72157623107791583", "photo_flickr_id": "4283996784", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47204", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they look too pretty to eat .", "storylet_id": "236023"}], [{"original_text": "I try to help him, but he's a little demanding.", "album_id": "72157623107791583", "photo_flickr_id": "4283255261", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47204", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i try to help him , but he 's a little demanding .", "storylet_id": "236024"}], [{"original_text": "house party turned out great.", "album_id": "72157623231573296", "photo_flickr_id": "4282893685", "setting": "first-2-pick-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "47205", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "house party turned out great .", "storylet_id": "236025"}], [{"original_text": "me and my wife are in love.", "album_id": "72157623231573296", "photo_flickr_id": "4282894079", "setting": "first-2-pick-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "47205", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "me and my wife are in love .", "storylet_id": "236026"}], [{"original_text": "living room came out great.", "album_id": "72157623231573296", "photo_flickr_id": "4283640966", "setting": "first-2-pick-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "47205", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "living room came out great .", "storylet_id": "236027"}], [{"original_text": "me and my son jimmy.", "album_id": "72157623231573296", "photo_flickr_id": "4283650202", "setting": "first-2-pick-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "47205", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "me and my son jimmy .", "storylet_id": "236028"}], [{"original_text": "my mother is always smiling.", "album_id": "72157623231573296", "photo_flickr_id": "4283651542", "setting": "first-2-pick-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "47205", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my mother is always smiling .", "storylet_id": "236029"}], [{"original_text": "My husband and I bought a new house for our family.", "album_id": "72157623231573296", "photo_flickr_id": "4283641948", "setting": "first-2-pick-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47206", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband and i bought a new house for our family .", "storylet_id": "236030"}], [{"original_text": "My favorite room is the bathroom.", "album_id": "72157623231573296", "photo_flickr_id": "4283648016", "setting": "first-2-pick-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47206", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my favorite room is the bathroom .", "storylet_id": "236031"}], [{"original_text": "Our son seems to really like our new house.", "album_id": "72157623231573296", "photo_flickr_id": "4283639188", "setting": "first-2-pick-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47206", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our son seems to really like our new house .", "storylet_id": "236032"}], [{"original_text": "We invited our friends over for a house warming party.", "album_id": "72157623231573296", "photo_flickr_id": "4282893685", "setting": "first-2-pick-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47206", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we invited our friends over for a house warming party .", "storylet_id": "236033"}], [{"original_text": "But it was rainy outside so we couldn't go on our new deck.", "album_id": "72157623231573296", "photo_flickr_id": "4282900015", "setting": "first-2-pick-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47206", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but it was rainy outside so we could n't go on our new deck .", "storylet_id": "236034"}], [{"original_text": "Finally saved up enough money for a new house.", "album_id": "72157623231573296", "photo_flickr_id": "4283641948", "setting": "last-3-pick-old-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "47207", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "finally saved up enough money for a new house .", "storylet_id": "236035"}], [{"original_text": "The bathroom was a little dated. It also had a window will have to replace that.", "album_id": "72157623231573296", "photo_flickr_id": "4283648016", "setting": "last-3-pick-old-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "47207", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bathroom was a little dated . it also had a window will have to replace that .", "storylet_id": "236036"}], [{"original_text": "Julie brought her baby Franklin he loved the new house.", "album_id": "72157623231573296", "photo_flickr_id": "4283639188", "setting": "last-3-pick-old-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "47207", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] brought her baby [male] he loved the new house .", "storylet_id": "236037"}], [{"original_text": "The realtor was really nice he gave us a tour at night.", "album_id": "72157623231573296", "photo_flickr_id": "4282893685", "setting": "last-3-pick-old-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "47207", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the realtor was really nice he gave us a tour at night .", "storylet_id": "236038"}], [{"original_text": "The porch was amazing I imagine I'll be spending hours here.", "album_id": "72157623231573296", "photo_flickr_id": "4282900015", "setting": "last-3-pick-old-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "47207", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the porch was amazing i imagine i 'll be spending hours here .", "storylet_id": "236039"}], [{"original_text": "The couple went to an open house. They were thinking about buying the house.", "album_id": "72157623231573296", "photo_flickr_id": "4282893685", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "47208", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple went to an open house . they were thinking about buying the house .", "storylet_id": "236040"}], [{"original_text": "They look like they may be interested.", "album_id": "72157623231573296", "photo_flickr_id": "4282894079", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "47208", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they look like they may be interested .", "storylet_id": "236041"}], [{"original_text": "There was plenty of storage space in the basement.", "album_id": "72157623231573296", "photo_flickr_id": "4283640966", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "47208", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was plenty of storage space in the basement .", "storylet_id": "236042"}], [{"original_text": "There was even a room for the baby!", "album_id": "72157623231573296", "photo_flickr_id": "4283650202", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "47208", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was even a room for the baby !", "storylet_id": "236043"}], [{"original_text": "Mom liked the house most of all.", "album_id": "72157623231573296", "photo_flickr_id": "4283651542", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "47208", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mom liked the house most of all .", "storylet_id": "236044"}], [{"original_text": "The entry way of the house we toured.", "album_id": "72157623231573296", "photo_flickr_id": "4283641948", "setting": "last-3-pick-old-and-tell", "worker_id": "EZBT64GP2LHYPMZ", "story_id": "47209", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the entry way of the house we toured .", "storylet_id": "236045"}], [{"original_text": "The garden bathtub is something I'm looking for in a new home.", "album_id": "72157623231573296", "photo_flickr_id": "4283648016", "setting": "last-3-pick-old-and-tell", "worker_id": "EZBT64GP2LHYPMZ", "story_id": "47209", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the garden bathtub is something i 'm looking for in a new home .", "storylet_id": "236046"}], [{"original_text": "Met some new friends at the house tour.", "album_id": "72157623231573296", "photo_flickr_id": "4283639188", "setting": "last-3-pick-old-and-tell", "worker_id": "EZBT64GP2LHYPMZ", "story_id": "47209", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "met some new friends at the house tour .", "storylet_id": "236047"}], [{"original_text": "Another entry way in our potential new house.", "album_id": "72157623231573296", "photo_flickr_id": "4282893685", "setting": "last-3-pick-old-and-tell", "worker_id": "EZBT64GP2LHYPMZ", "story_id": "47209", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another entry way in our potential new house .", "storylet_id": "236048"}], [{"original_text": "The deck is absolutely grand where I can host parties.", "album_id": "72157623231573296", "photo_flickr_id": "4282900015", "setting": "last-3-pick-old-and-tell", "worker_id": "EZBT64GP2LHYPMZ", "story_id": "47209", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the deck is absolutely grand where i can host parties .", "storylet_id": "236049"}], [{"original_text": "We visited an old castle in Europe. ", "album_id": "72157623130414003", "photo_flickr_id": "4293157658", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "47210", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited an old castle in location .", "storylet_id": "236050"}], [{"original_text": "The ground were meticulously maintained. ", "album_id": "72157623130414003", "photo_flickr_id": "4292421829", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "47210", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ground were meticulously maintained .", "storylet_id": "236051"}], [{"original_text": "A creek ran right through the grounds. ", "album_id": "72157623130414003", "photo_flickr_id": "4293159218", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "47210", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a creek ran right through the grounds .", "storylet_id": "236052"}], [{"original_text": "We went inside the old structure. It was amazing.", "album_id": "72157623130414003", "photo_flickr_id": "4293168072", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "47210", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went inside the old structure . it was amazing .", "storylet_id": "236053"}], [{"original_text": "I liked how the hallways went on and on. ", "album_id": "72157623130414003", "photo_flickr_id": "4293162374", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "47210", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i liked how the hallways went on and on .", "storylet_id": "236054"}], [{"original_text": "We approached the property that was to be our vacation home.", "album_id": "72157623130414003", "photo_flickr_id": "4292424265", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47211", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we approached the property that was to be our vacation home .", "storylet_id": "236055"}], [{"original_text": "A nice tall hedge tunnel leads from back yard to garden.", "album_id": "72157623130414003", "photo_flickr_id": "4292416229", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47211", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a nice tall hedge tunnel leads from back yard to garden .", "storylet_id": "236056"}], [{"original_text": "Also a large hallway on one side of house.", "album_id": "72157623130414003", "photo_flickr_id": "4292424943", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47211", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "also a large hallway on one side of house .", "storylet_id": "236057"}], [{"original_text": "An awesome looking view from this window.", "album_id": "72157623130414003", "photo_flickr_id": "4293168784", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47211", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an awesome looking view from this window .", "storylet_id": "236058"}], [{"original_text": "Yet more hallways to venture down and explore.", "album_id": "72157623130414003", "photo_flickr_id": "4293162714", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47211", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "yet more hallways to venture down and explore .", "storylet_id": "236059"}], [{"original_text": "I visited an old castle.", "album_id": "72157623130414003", "photo_flickr_id": "4293157658", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "47212", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i visited an old castle .", "storylet_id": "236060"}], [{"original_text": "The grounds were beautiful and spacious. ", "album_id": "72157623130414003", "photo_flickr_id": "4292421829", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "47212", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the grounds were beautiful and spacious .", "storylet_id": "236061"}], [{"original_text": "There was even a little creek. ", "album_id": "72157623130414003", "photo_flickr_id": "4293159218", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "47212", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was even a little creek .", "storylet_id": "236062"}], [{"original_text": "The caste had large arched windows. ", "album_id": "72157623130414003", "photo_flickr_id": "4293168072", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "47212", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the caste had large arched windows .", "storylet_id": "236063"}], [{"original_text": "Even the entrances were arched. ", "album_id": "72157623130414003", "photo_flickr_id": "4293162374", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "47212", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the entrances were arched .", "storylet_id": "236064"}], [{"original_text": "I love exploring buildings by myself. ", "album_id": "72157623130414003", "photo_flickr_id": "4292424265", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "47213", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love exploring buildings by myself .", "storylet_id": "236065"}], [{"original_text": "Once you've taken in the outside you get the chance to explore the interior spaces. ", "album_id": "72157623130414003", "photo_flickr_id": "4292416229", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "47213", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once you 've taken in the outside you get the chance to explore the interior spaces .", "storylet_id": "236066"}], [{"original_text": "And sometimes you are just overwhelmed by how much time it must have taken to build such structures a long time ago. ", "album_id": "72157623130414003", "photo_flickr_id": "4292424943", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "47213", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and sometimes you are just overwhelmed by how much time it must have taken to build such structures a long time ago .", "storylet_id": "236067"}], [{"original_text": "But you understand the drive to build them in such beautiful locations. ", "album_id": "72157623130414003", "photo_flickr_id": "4293168784", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "47213", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but you understand the drive to build them in such beautiful locations .", "storylet_id": "236068"}], [{"original_text": "And how the spaces just call for meditation. ", "album_id": "72157623130414003", "photo_flickr_id": "4293162714", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "47213", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and how the spaces just call for meditation .", "storylet_id": "236069"}], [{"original_text": "There was a big castle", "album_id": "72157623130414003", "photo_flickr_id": "4292424265", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47214", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a big castle", "storylet_id": "236070"}], [{"original_text": "near a tunnel.", "album_id": "72157623130414003", "photo_flickr_id": "4292416229", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47214", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "near a tunnel .", "storylet_id": "236071"}], [{"original_text": "There was a castle", "album_id": "72157623130414003", "photo_flickr_id": "4292424943", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47214", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a castle", "storylet_id": "236072"}], [{"original_text": "near the field", "album_id": "72157623130414003", "photo_flickr_id": "4293168784", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47214", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "near the field", "storylet_id": "236073"}], [{"original_text": "and the big towers.", "album_id": "72157623130414003", "photo_flickr_id": "4293162714", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47214", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the big towers .", "storylet_id": "236074"}], [{"original_text": "We planned on starting the day with some painting.", "album_id": "72157623140181961", "photo_flickr_id": "4296059151", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47215", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we planned on starting the day with some painting .", "storylet_id": "236075"}], [{"original_text": "However, we remembered we lived in New York City.", "album_id": "72157623140181961", "photo_flickr_id": "4298520077", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47215", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "however , we remembered we lived in location location location .", "storylet_id": "236076"}], [{"original_text": "I googled the best activities in our city...", "album_id": "72157623140181961", "photo_flickr_id": "4303824420", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47215", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i googled the best activities in our city ...", "storylet_id": "236077"}], [{"original_text": "And, we ended up in Central Park for a long stroll and a day of peace.", "album_id": "72157623140181961", "photo_flickr_id": "4318568302", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47215", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , we ended up in location location for a long stroll and a day of peace .", "storylet_id": "236078"}], [{"original_text": "We caught the subway back to Queens and talked about our day.", "album_id": "72157623140181961", "photo_flickr_id": "4333118929", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47215", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we caught the subway back to location and talked about our day .", "storylet_id": "236079"}], [{"original_text": "I went for a walk today.", "album_id": "72157623140181961", "photo_flickr_id": "4296805164", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47216", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a walk today .", "storylet_id": "236080"}], [{"original_text": "It was very cloudy.", "album_id": "72157623140181961", "photo_flickr_id": "4296805256", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47216", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was very cloudy .", "storylet_id": "236081"}], [{"original_text": "I saw a traffic cone.", "album_id": "72157623140181961", "photo_flickr_id": "4296805386", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47216", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i saw a traffic cone .", "storylet_id": "236082"}], [{"original_text": "I went down to the lake for a little while.", "album_id": "72157623140181961", "photo_flickr_id": "4296059691", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47216", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i went down to the lake for a little while .", "storylet_id": "236083"}], [{"original_text": "I saw a kite stuck on a tree.", "album_id": "72157623140181961", "photo_flickr_id": "4298518331", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47216", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i saw a kite stuck on a tree .", "storylet_id": "236084"}], [{"original_text": "This is a picture of cans.", "album_id": "72157623140181961", "photo_flickr_id": "4296059151", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47217", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of cans .", "storylet_id": "236085"}], [{"original_text": "This is a picture of a skyline.", "album_id": "72157623140181961", "photo_flickr_id": "4298520077", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47217", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a skyline .", "storylet_id": "236086"}], [{"original_text": "This is a picture of stone.", "album_id": "72157623140181961", "photo_flickr_id": "4303824420", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47217", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of stone .", "storylet_id": "236087"}], [{"original_text": "This is a picture of a walkway.", "album_id": "72157623140181961", "photo_flickr_id": "4318568302", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47217", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of a walkway .", "storylet_id": "236088"}], [{"original_text": "This is a picture of a restaurant.", "album_id": "72157623140181961", "photo_flickr_id": "4333118929", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47217", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a restaurant .", "storylet_id": "236089"}], [{"original_text": "We checked our reserves and unfortunately we were running low on almost everything.", "album_id": "72157623140181961", "photo_flickr_id": "4296059151", "setting": "last-3-pick-old-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47218", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we checked our reserves and unfortunately we were running low on almost everything .", "storylet_id": "236090"}], [{"original_text": "The only place to replenish our stores was the Dead City, over run with infected hordes.", "album_id": "72157623140181961", "photo_flickr_id": "4298520077", "setting": "last-3-pick-old-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47218", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the only place to replenish our stores was the location location , over run with infected hordes .", "storylet_id": "236091"}], [{"original_text": "Checking our fortification for weaknesses, just part of the exit routine. ", "album_id": "72157623140181961", "photo_flickr_id": "4303824420", "setting": "last-3-pick-old-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47218", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "checking our fortification for weaknesses , just part of the exit routine .", "storylet_id": "236092"}], [{"original_text": "We took in the desolate landscape as we made our way to our destination. The emptiness of our surroundings gave us a false sense of security and a false allusion of things to come.", "album_id": "72157623140181961", "photo_flickr_id": "4318568302", "setting": "last-3-pick-old-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47218", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took in the desolate landscape as we made our way to our destination . the emptiness of our surroundings gave us a false sense of security and a false allusion of things to come .", "storylet_id": "236093"}], [{"original_text": "We made our way to the Hardware Store under cover of darkness. If anything could go wrong it hadn't, yet.", "album_id": "72157623140181961", "photo_flickr_id": "4333118929", "setting": "last-3-pick-old-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47218", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we made our way to the hardware store under cover of darkness . if anything could go wrong it had n't , yet .", "storylet_id": "236094"}], [{"original_text": "The road was long", "album_id": "72157623140181961", "photo_flickr_id": "4296805164", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47219", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the road was long", "storylet_id": "236095"}], [{"original_text": "and the building was tell", "album_id": "72157623140181961", "photo_flickr_id": "4296805256", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47219", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the building was tell", "storylet_id": "236096"}], [{"original_text": "near the cone.", "album_id": "72157623140181961", "photo_flickr_id": "4296805386", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47219", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "near the cone .", "storylet_id": "236097"}], [{"original_text": "The water was calm", "album_id": "72157623140181961", "photo_flickr_id": "4296059691", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47219", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the water was calm", "storylet_id": "236098"}], [{"original_text": "and there was a happy leaf.", "album_id": "72157623140181961", "photo_flickr_id": "4298518331", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47219", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and there was a happy leaf .", "storylet_id": "236099"}], [{"original_text": "I wanted to take some pictures of the area against the darkening sky.", "album_id": "72157623144843189", "photo_flickr_id": "4298001041", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47220", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i wanted to take some pictures of the area against the darkening sky .", "storylet_id": "236100"}], [{"original_text": "I was able to get out before the sunlight was completely gone and caught this picture of the church.", "album_id": "72157623144843189", "photo_flickr_id": "4298004731", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47220", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was able to get out before the sunlight was completely gone and caught this picture of the church .", "storylet_id": "236101"}], [{"original_text": "Here is one from further back.", "album_id": "72157623144843189", "photo_flickr_id": "4298773190", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47220", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is one from further back .", "storylet_id": "236102"}], [{"original_text": "You can see this palace and it's strobe lights with people in the court area.", "album_id": "72157623144843189", "photo_flickr_id": "4298038691", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47220", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you can see this palace and it 's strobe lights with people in the court area .", "storylet_id": "236103"}], [{"original_text": "Here is a different view looking up standing very close to the building.", "album_id": "72157623144843189", "photo_flickr_id": "4298797028", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47220", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is a different view looking up standing very close to the building .", "storylet_id": "236104"}], [{"original_text": "I went on vacation last weekend.", "album_id": "72157623144843189", "photo_flickr_id": "4298001041", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47221", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on vacation last weekend .", "storylet_id": "236105"}], [{"original_text": "The city was beautiful at night.", "album_id": "72157623144843189", "photo_flickr_id": "4298004731", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47221", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city was beautiful at night .", "storylet_id": "236106"}], [{"original_text": "I had a great time walking around.", "album_id": "72157623144843189", "photo_flickr_id": "4298778830", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47221", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time walking around .", "storylet_id": "236107"}], [{"original_text": "I enjoyed all of the sights.", "album_id": "72157623144843189", "photo_flickr_id": "4298038691", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47221", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i enjoyed all of the sights .", "storylet_id": "236108"}], [{"original_text": "The buildings were very beautiful.", "album_id": "72157623144843189", "photo_flickr_id": "4298790558", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47221", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the buildings were very beautiful .", "storylet_id": "236109"}], [{"original_text": "I toured German Village last night. The houses were all so quiet. ", "album_id": "72157623144843189", "photo_flickr_id": "4298001041", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47222", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i toured location location last night . the houses were all so quiet .", "storylet_id": "236110"}], [{"original_text": "The Methodist church was lit with a huge flame. You could see it for miles. ", "album_id": "72157623144843189", "photo_flickr_id": "4298004731", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47222", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the methodist church was lit with a huge flame . you could see it for miles .", "storylet_id": "236111"}], [{"original_text": "Epic castle was looming in the background. It's such an eerie place. ", "album_id": "72157623144843189", "photo_flickr_id": "4298773190", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47222", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "epic castle was looming in the background . it 's such an eerie place .", "storylet_id": "236112"}], [{"original_text": "Over at the Imperial Armory it was so lit up and beautiful. I wanted to stay here all night but eventually I did move on. ", "album_id": "72157623144843189", "photo_flickr_id": "4298038691", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47222", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "over at the organization organization it was so lit up and beautiful . i wanted to stay here all night but eventually i did move on .", "storylet_id": "236113"}], [{"original_text": "I came here and placed a blanket down and stared up at the backside of Epic castle. I feel fast asleep. ", "album_id": "72157623144843189", "photo_flickr_id": "4298797028", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47222", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i came here and placed a blanket down and stared up at the backside of epic castle . i feel fast asleep .", "storylet_id": "236114"}], [{"original_text": "the buildings are lit of beautifully at night.", "album_id": "72157623144843189", "photo_flickr_id": "4298001041", "setting": "last-3-pick-old-and-tell", "worker_id": "9MD8RCSYAC9UIE5", "story_id": "47223", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the buildings are lit of beautifully at night .", "storylet_id": "236115"}], [{"original_text": "I think there is something burning way up in the tower.", "album_id": "72157623144843189", "photo_flickr_id": "4298004731", "setting": "last-3-pick-old-and-tell", "worker_id": "9MD8RCSYAC9UIE5", "story_id": "47223", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i think there is something burning way up in the tower .", "storylet_id": "236116"}], [{"original_text": "Just look at the scenery in the night time lights!", "album_id": "72157623144843189", "photo_flickr_id": "4298773190", "setting": "last-3-pick-old-and-tell", "worker_id": "9MD8RCSYAC9UIE5", "story_id": "47223", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "just look at the scenery in the night time lights !", "storylet_id": "236117"}], [{"original_text": "And here you can see the lights reflecting on the water.", "album_id": "72157623144843189", "photo_flickr_id": "4298038691", "setting": "last-3-pick-old-and-tell", "worker_id": "9MD8RCSYAC9UIE5", "story_id": "47223", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and here you can see the lights reflecting on the water .", "storylet_id": "236118"}], [{"original_text": "This building looks really tall because of the angle it was taken.", "album_id": "72157623144843189", "photo_flickr_id": "4298797028", "setting": "last-3-pick-old-and-tell", "worker_id": "9MD8RCSYAC9UIE5", "story_id": "47223", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this building looks really tall because of the angle it was taken .", "storylet_id": "236119"}], [{"original_text": "We walked through the city at night.", "album_id": "72157623144843189", "photo_flickr_id": "4298001041", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47224", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we walked through the city at night .", "storylet_id": "236120"}], [{"original_text": "We started near some of the castles.", "album_id": "72157623144843189", "photo_flickr_id": "4298004731", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47224", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started near some of the castles .", "storylet_id": "236121"}], [{"original_text": "They where huge and pretty amazing.", "album_id": "72157623144843189", "photo_flickr_id": "4298773190", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47224", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they where huge and pretty amazing .", "storylet_id": "236122"}], [{"original_text": "We crossed town to go see some more.", "album_id": "72157623144843189", "photo_flickr_id": "4298038691", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47224", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we crossed town to go see some more .", "storylet_id": "236123"}], [{"original_text": "We ended the night near some of the churches.", "album_id": "72157623144843189", "photo_flickr_id": "4298797028", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47224", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the night near some of the churches .", "storylet_id": "236124"}], [{"original_text": "Our little town has a lot to offer. It's rural but it's beautiful", "album_id": "72157623156198707", "photo_flickr_id": "4303033039", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47225", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our little town has a lot to offer . it 's rural but it 's beautiful", "storylet_id": "236125"}], [{"original_text": "An old rustic park bench shows the serenity of the area.", "album_id": "72157623156198707", "photo_flickr_id": "4303780076", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47225", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "an old rustic park bench shows the serenity of the area .", "storylet_id": "236126"}], [{"original_text": "The blue sky show our town to be under clear weather today!", "album_id": "72157623156198707", "photo_flickr_id": "4303781104", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47225", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the blue sky show our town to be under clear weather today !", "storylet_id": "236127"}], [{"original_text": "Our small businesses give our town some of its rustic charm.", "album_id": "72157623156198707", "photo_flickr_id": "4306415090", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47225", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our small businesses give our town some of its rustic charm .", "storylet_id": "236128"}], [{"original_text": "The little cafe on the corner is always eager to meet and greet.", "album_id": "72157623156198707", "photo_flickr_id": "4305672987", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47225", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the little cafe on the corner is always eager to meet and greet .", "storylet_id": "236129"}], [{"original_text": "When I woke up I was really hungry.", "album_id": "72157623156198707", "photo_flickr_id": "4303777548", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47226", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i woke up i was really hungry .", "storylet_id": "236130"}], [{"original_text": "I decided to go and grab some breakfast.", "album_id": "72157623156198707", "photo_flickr_id": "4303778118", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47226", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i decided to go and grab some breakfast .", "storylet_id": "236131"}], [{"original_text": "I had to walk to the restaurant.", "album_id": "72157623156198707", "photo_flickr_id": "4303781104", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47226", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had to walk to the restaurant .", "storylet_id": "236132"}], [{"original_text": "It was not a long walk.", "album_id": "72157623156198707", "photo_flickr_id": "4306414452", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47226", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was not a long walk .", "storylet_id": "236133"}], [{"original_text": "I stopped at some shops along the way.", "album_id": "72157623156198707", "photo_flickr_id": "4306415090", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47226", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i stopped at some shops along the way .", "storylet_id": "236134"}], [{"original_text": "The sun casts no shadow on the church.", "album_id": "72157623156198707", "photo_flickr_id": "4303033039", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "47227", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sun casts no shadow on the church .", "storylet_id": "236135"}], [{"original_text": "The benches were made of the finest wood.", "album_id": "72157623156198707", "photo_flickr_id": "4303780076", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "47227", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the benches were made of the finest wood .", "storylet_id": "236136"}], [{"original_text": "The street signs were cheap because they bend easily.", "album_id": "72157623156198707", "photo_flickr_id": "4303781104", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "47227", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the street signs were cheap because they bend easily .", "storylet_id": "236137"}], [{"original_text": "Fortunately, the business is successful at this time of year.", "album_id": "72157623156198707", "photo_flickr_id": "4306415090", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "47227", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fortunately , the business is successful at this time of year .", "storylet_id": "236138"}], [{"original_text": "There was not much going on in the city however.", "album_id": "72157623156198707", "photo_flickr_id": "4305672987", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "47227", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was not much going on in the city however .", "storylet_id": "236139"}], [{"original_text": "Went downtown to look for thrift stores.", "album_id": "72157623156198707", "photo_flickr_id": "4303033039", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47228", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went downtown to look for thrift stores .", "storylet_id": "236140"}], [{"original_text": "Sat on this bench and never noticed a plaque there.", "album_id": "72157623156198707", "photo_flickr_id": "4303780076", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47228", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sat on this bench and never noticed a plaque there .", "storylet_id": "236141"}], [{"original_text": "Someone had a bad night, they hit the one way sign, how?", "album_id": "72157623156198707", "photo_flickr_id": "4303781104", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47228", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "someone had a bad night , they hit the one way sign , how ?", "storylet_id": "236142"}], [{"original_text": "Here we are, thrift stores, my favorite.", "album_id": "72157623156198707", "photo_flickr_id": "4306415090", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47228", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here we are , thrift stores , my favorite .", "storylet_id": "236143"}], [{"original_text": "Thought of taking the subway but ducked into this cafe instead.", "album_id": "72157623156198707", "photo_flickr_id": "4305672987", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47228", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thought of taking the subway but ducked into this cafe instead .", "storylet_id": "236144"}], [{"original_text": "We started our walk near the church.", "album_id": "72157623156198707", "photo_flickr_id": "4303033039", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47229", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started our walk near the church .", "storylet_id": "236145"}], [{"original_text": "We sat at the park for a little bit.", "album_id": "72157623156198707", "photo_flickr_id": "4303780076", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47229", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we sat at the park for a little bit .", "storylet_id": "236146"}], [{"original_text": "Afterwards, we continued down the street.", "album_id": "72157623156198707", "photo_flickr_id": "4303781104", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47229", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards , we continued down the street .", "storylet_id": "236147"}], [{"original_text": "We passed some great shops along the way.", "album_id": "72157623156198707", "photo_flickr_id": "4306415090", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47229", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we passed some great shops along the way .", "storylet_id": "236148"}], [{"original_text": "When we got to the middle of the city we started looking for a place to eat.", "album_id": "72157623156198707", "photo_flickr_id": "4305672987", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47229", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we got to the middle of the city we started looking for a place to eat .", "storylet_id": "236149"}], [{"original_text": "As you travel through life, look at God's beauty all around you.", "album_id": "72157623157272067", "photo_flickr_id": "4304179036", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47230", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as you travel through life , look at god 's beauty all around you .", "storylet_id": "236150"}], [{"original_text": "Even in the dead of winter He takes joy in His creations.", "album_id": "72157623157272067", "photo_flickr_id": "4303437983", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47230", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even in the dead of winter he takes joy in his creations .", "storylet_id": "236151"}], [{"original_text": "Who else could form this.", "album_id": "72157623157272067", "photo_flickr_id": "4303438833", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47230", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "who else could form this .", "storylet_id": "236152"}], [{"original_text": "Or make a tree look like an actual snowflake.", "album_id": "72157623157272067", "photo_flickr_id": "4303437537", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47230", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "or make a tree look like an actual snowflake .", "storylet_id": "236153"}], [{"original_text": "Still He gives us his promise of spring.", "album_id": "72157623157272067", "photo_flickr_id": "4304179608", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47230", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "still he gives us his promise of spring .", "storylet_id": "236154"}], [{"original_text": "I went out for a hike last weekend.", "album_id": "72157623157272067", "photo_flickr_id": "4304179196", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47231", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went out for a hike last weekend .", "storylet_id": "236155"}], [{"original_text": "There was so much snow everywhere.", "album_id": "72157623157272067", "photo_flickr_id": "4303438205", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47231", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was so much snow everywhere .", "storylet_id": "236156"}], [{"original_text": "It was very cold.", "album_id": "72157623157272067", "photo_flickr_id": "4303437537", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47231", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was very cold .", "storylet_id": "236157"}], [{"original_text": "I had a great time out there.", "album_id": "72157623157272067", "photo_flickr_id": "4303437403", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47231", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had a great time out there .", "storylet_id": "236158"}], [{"original_text": "I was all by myself.", "album_id": "72157623157272067", "photo_flickr_id": "4303435759", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47231", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was all by myself .", "storylet_id": "236159"}], [{"original_text": "She loves the winter and decided to take her new camera out for pictures of the snow.", "album_id": "72157623157272067", "photo_flickr_id": "4304179036", "setting": "last-3-pick-old-and-tell", "worker_id": "736BMMFWXNRNHMF", "story_id": "47232", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she loves the winter and decided to take her new camera out for pictures of the snow .", "storylet_id": "236160"}], [{"original_text": "She got a great shot of the trees with clear blue sky in the background.", "album_id": "72157623157272067", "photo_flickr_id": "4303437983", "setting": "last-3-pick-old-and-tell", "worker_id": "736BMMFWXNRNHMF", "story_id": "47232", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she got a great shot of the trees with clear blue sky in the background .", "storylet_id": "236161"}], [{"original_text": "Another beautiful picture of a thin small tree leaning over from the weight of the snow.", "album_id": "72157623157272067", "photo_flickr_id": "4303438833", "setting": "last-3-pick-old-and-tell", "worker_id": "736BMMFWXNRNHMF", "story_id": "47232", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another beautiful picture of a thin small tree leaning over from the weight of the snow .", "storylet_id": "236162"}], [{"original_text": "This was a distance shot against the blue sky.", "album_id": "72157623157272067", "photo_flickr_id": "4303437537", "setting": "last-3-pick-old-and-tell", "worker_id": "736BMMFWXNRNHMF", "story_id": "47232", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was a distance shot against the blue sky .", "storylet_id": "236163"}], [{"original_text": "And finally a great shot of a tree with some color peeking out from under the snow.", "album_id": "72157623157272067", "photo_flickr_id": "4304179608", "setting": "last-3-pick-old-and-tell", "worker_id": "736BMMFWXNRNHMF", "story_id": "47232", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and finally a great shot of a tree with some color peeking out from under the snow .", "storylet_id": "236164"}], [{"original_text": "The snow hit heavy this year.", "album_id": "72157623157272067", "photo_flickr_id": "4304179036", "setting": "last-3-pick-old-and-tell", "worker_id": "EZBT64GP2LHYPMZ", "story_id": "47233", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the snow hit heavy this year .", "storylet_id": "236165"}], [{"original_text": "Snow covering most of the trees and ground.", "album_id": "72157623157272067", "photo_flickr_id": "4303437983", "setting": "last-3-pick-old-and-tell", "worker_id": "EZBT64GP2LHYPMZ", "story_id": "47233", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "snow covering most of the trees and ground .", "storylet_id": "236166"}], [{"original_text": "The snow dramatically bending a tree from its natural form.", "album_id": "72157623157272067", "photo_flickr_id": "4303438833", "setting": "last-3-pick-old-and-tell", "worker_id": "EZBT64GP2LHYPMZ", "story_id": "47233", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the snow dramatically bending a tree from its natural form .", "storylet_id": "236167"}], [{"original_text": "The skies are clear and warming up.", "album_id": "72157623157272067", "photo_flickr_id": "4303437537", "setting": "last-3-pick-old-and-tell", "worker_id": "EZBT64GP2LHYPMZ", "story_id": "47233", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the skies are clear and warming up .", "storylet_id": "236168"}], [{"original_text": "Snow is melting away, coming back next year hopefully.", "album_id": "72157623157272067", "photo_flickr_id": "4304179608", "setting": "last-3-pick-old-and-tell", "worker_id": "EZBT64GP2LHYPMZ", "story_id": "47233", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "snow is melting away , coming back next year hopefully .", "storylet_id": "236169"}], [{"original_text": "Seeing the snow country was absolutely stunning.", "album_id": "72157623157272067", "photo_flickr_id": "4304179036", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47234", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "seeing the snow country was absolutely stunning .", "storylet_id": "236170"}], [{"original_text": "I had never seen trees that were so white and pretty.", "album_id": "72157623157272067", "photo_flickr_id": "4303437983", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47234", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had never seen trees that were so white and pretty .", "storylet_id": "236171"}], [{"original_text": "One trip almost fell over because of the snow.", "album_id": "72157623157272067", "photo_flickr_id": "4303438833", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47234", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one trip almost fell over because of the snow .", "storylet_id": "236172"}], [{"original_text": "The blue sky in the background of the white was so cool.", "album_id": "72157623157272067", "photo_flickr_id": "4303437537", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47234", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the blue sky in the background of the white was so cool .", "storylet_id": "236173"}], [{"original_text": "We walked further in and got to see some of the brown branches.", "album_id": "72157623157272067", "photo_flickr_id": "4304179608", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47234", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we walked further in and got to see some of the brown branches .", "storylet_id": "236174"}], [{"original_text": "Another day at work.", "album_id": "72057594123141054", "photo_flickr_id": "139070671", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "47235", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "another day at work .", "storylet_id": "236175"}], [{"original_text": "These cords really need untangled.", "album_id": "72057594123141054", "photo_flickr_id": "139071089", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "47235", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these cords really need untangled .", "storylet_id": "236176"}], [{"original_text": "Really really needed untangled.", "album_id": "72057594123141054", "photo_flickr_id": "139070922", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "47235", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "really really needed untangled .", "storylet_id": "236177"}], [{"original_text": "Finally it was making progress.", "album_id": "72057594123141054", "photo_flickr_id": "139070586", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "47235", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally it was making progress .", "storylet_id": "236178"}], [{"original_text": "Just in time for business it was done.", "album_id": "72057594123141054", "photo_flickr_id": "139070761", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "47235", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "just in time for business it was done .", "storylet_id": "236179"}], [{"original_text": "We decided to visit a big city for vacation.", "album_id": "72057594123141054", "photo_flickr_id": "139071190", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47236", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to visit a big city for vacation .", "storylet_id": "236180"}], [{"original_text": "It had wonderful views, especially in the morning.", "album_id": "72057594123141054", "photo_flickr_id": "139071384", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47236", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it had wonderful views , especially in the morning .", "storylet_id": "236181"}], [{"original_text": "I was able to see for what felt like miles.", "album_id": "72057594123141054", "photo_flickr_id": "139071648", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47236", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was able to see for what felt like miles .", "storylet_id": "236182"}], [{"original_text": "There were many buidlings in the city.", "album_id": "72057594123141054", "photo_flickr_id": "139071745", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47236", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many buidlings in the city .", "storylet_id": "236183"}], [{"original_text": "Some of the buildings were huge and went high into the air. ", "album_id": "72057594123141054", "photo_flickr_id": "139071851", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47236", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the buildings were huge and went high into the air .", "storylet_id": "236184"}], [{"original_text": "The Computer IT in our department tried to help the company set up the server.", "album_id": "72057594123141054", "photo_flickr_id": "139070671", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47237", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the computer it in our department tried to help the company set up the server .", "storylet_id": "236185"}], [{"original_text": "Upon inspection, the Computer IT realized that someone had tried to reconnect the wires.", "album_id": "72057594123141054", "photo_flickr_id": "139071089", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47237", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "upon inspection , the computer it realized that someone had tried to reconnect the wires .", "storylet_id": "236186"}], [{"original_text": "All the wires for the computers were tangled. The misplaced wireds caused the computers and internet connection to malfunction.", "album_id": "72057594123141054", "photo_flickr_id": "139070922", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47237", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the wires for the computers were tangled . the misplaced wireds caused the computers and internet connection to malfunction .", "storylet_id": "236187"}], [{"original_text": "As a result, the company had to send us home early. ", "album_id": "72057594123141054", "photo_flickr_id": "139070586", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47237", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as a result , the company had to send us home early .", "storylet_id": "236188"}], [{"original_text": "The Computer IT spent over 4 hours trying to fix all the tangled wires. The company sent out an email. They prohibit any of the employees from entering the data center room. ", "album_id": "72057594123141054", "photo_flickr_id": "139070761", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47237", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the computer it spent over 4 hours trying to fix all the tangled wires . the company sent out an email . they prohibit any of the employees from entering the data center room .", "storylet_id": "236189"}], [{"original_text": "I had a lot of work to do today.", "album_id": "72057594123141054", "photo_flickr_id": "139070671", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47238", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a lot of work to do today .", "storylet_id": "236190"}], [{"original_text": "There were so many wires that were tangled up.", "album_id": "72057594123141054", "photo_flickr_id": "139071089", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47238", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many wires that were tangled up .", "storylet_id": "236191"}], [{"original_text": "I had to untangle all of them.", "album_id": "72057594123141054", "photo_flickr_id": "139070922", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47238", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had to untangle all of them .", "storylet_id": "236192"}], [{"original_text": "It took me all day.", "album_id": "72057594123141054", "photo_flickr_id": "139070586", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47238", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it took me all day .", "storylet_id": "236193"}], [{"original_text": "Eventually I finished and I was allowed to go home.", "album_id": "72057594123141054", "photo_flickr_id": "139070761", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47238", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually i finished and i was allowed to go home .", "storylet_id": "236194"}], [{"original_text": "The view of the city from the building top.", "album_id": "72057594123141054", "photo_flickr_id": "139071190", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47239", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the view of the city from the building top .", "storylet_id": "236195"}], [{"original_text": "The sun is setting in the distance overlooking the city.", "album_id": "72057594123141054", "photo_flickr_id": "139071384", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47239", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sun is setting in the distance overlooking the city .", "storylet_id": "236196"}], [{"original_text": "The view away from the sun overlooking the city.", "album_id": "72057594123141054", "photo_flickr_id": "139071648", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47239", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the view away from the sun overlooking the city .", "storylet_id": "236197"}], [{"original_text": "On top of the building is the platform where the pictures were took.", "album_id": "72057594123141054", "photo_flickr_id": "139071745", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47239", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on top of the building is the platform where the pictures were took .", "storylet_id": "236198"}], [{"original_text": "The sun shadows of the tall buildings in the city picture.", "album_id": "72057594123141054", "photo_flickr_id": "139071851", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47239", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sun shadows of the tall buildings in the city picture .", "storylet_id": "236199"}], [{"original_text": "Our trip to the city was wonderful.", "album_id": "72157601053063486", "photo_flickr_id": "926271470", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "47240", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip to the city was wonderful .", "storylet_id": "236200"}], [{"original_text": "We watched ships passed everyday.", "album_id": "72157601053063486", "photo_flickr_id": "925423901", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "47240", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we watched ships passed everyday .", "storylet_id": "236201"}], [{"original_text": "The bridge was beautiful.", "album_id": "72157601053063486", "photo_flickr_id": "925424227", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "47240", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bridge was beautiful .", "storylet_id": "236202"}], [{"original_text": "We toured a historic light house.", "album_id": "72157601053063486", "photo_flickr_id": "925425773", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "47240", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we toured a historic light house .", "storylet_id": "236203"}], [{"original_text": "The sunset was lovely our last day here.", "album_id": "72157601053063486", "photo_flickr_id": "926272822", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "47240", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sunset was lovely our last day here .", "storylet_id": "236204"}], [{"original_text": "San Francisco is a great place to get away to.", "album_id": "72157601053063486", "photo_flickr_id": "925423901", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47241", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location location is a great place to get away to .", "storylet_id": "236205"}], [{"original_text": "There are some fantastic views there.", "album_id": "72157601053063486", "photo_flickr_id": "925423977", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47241", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are some fantastic views there .", "storylet_id": "236206"}], [{"original_text": "We even got to watch the sunrise.", "album_id": "72157601053063486", "photo_flickr_id": "926271380", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47241", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even got to watch the sunrise .", "storylet_id": "236207"}], [{"original_text": "It was fun to see all the buildings in the city.", "album_id": "72157601053063486", "photo_flickr_id": "926271470", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47241", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was fun to see all the buildings in the city .", "storylet_id": "236208"}], [{"original_text": "This bridge was my favorite place to visit, so magnificant. ", "album_id": "72157601053063486", "photo_flickr_id": "925424227", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47241", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this bridge was my favorite place to visit , so magnificant .", "storylet_id": "236209"}], [{"original_text": "The beautiful city of San Francisco can be seen.", "album_id": "72157601053063486", "photo_flickr_id": "926271470", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "47242", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beautiful city of location location can be seen .", "storylet_id": "236210"}], [{"original_text": "The Golden Gate Bridge is shown over the San Francisco Bay.", "album_id": "72157601053063486", "photo_flickr_id": "925423901", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "47242", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the location location location is shown over the location location location .", "storylet_id": "236211"}], [{"original_text": "The Golden Gate Bridge is red.", "album_id": "72157601053063486", "photo_flickr_id": "925424227", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "47242", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the location location location is red .", "storylet_id": "236212"}], [{"original_text": "This big tower stands tall.", "album_id": "72157601053063486", "photo_flickr_id": "925425773", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "47242", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this big tower stands tall .", "storylet_id": "236213"}], [{"original_text": "The people stand above the view with the Golden Gate Bridge behind them.", "album_id": "72157601053063486", "photo_flickr_id": "926272822", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "47242", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the people stand above the view with the location location location behind them .", "storylet_id": "236214"}], [{"original_text": "I had a great time last weekend.", "album_id": "72157601053063486", "photo_flickr_id": "926271470", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47243", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time last weekend .", "storylet_id": "236215"}], [{"original_text": "I took time off to see many sights around the city.", "album_id": "72157601053063486", "photo_flickr_id": "925423901", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47243", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i took time off to see many sights around the city .", "storylet_id": "236216"}], [{"original_text": "The bridge was huge.", "album_id": "72157601053063486", "photo_flickr_id": "925424227", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47243", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bridge was huge .", "storylet_id": "236217"}], [{"original_text": "There were many old buildings to explore.", "album_id": "72157601053063486", "photo_flickr_id": "925425773", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47243", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many old buildings to explore .", "storylet_id": "236218"}], [{"original_text": "We had a great time.", "album_id": "72157601053063486", "photo_flickr_id": "926272822", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47243", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time .", "storylet_id": "236219"}], [{"original_text": "The photos of the distance can be very beautiful", "album_id": "72157601053063486", "photo_flickr_id": "926271470", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47244", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the photos of the distance can be very beautiful", "storylet_id": "236220"}], [{"original_text": "and the lake stays very calm.", "album_id": "72157601053063486", "photo_flickr_id": "925423901", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47244", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the lake stays very calm .", "storylet_id": "236221"}], [{"original_text": "The Golden Gate Bridge is shinging", "album_id": "72157601053063486", "photo_flickr_id": "925424227", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47244", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the location location location is shinging", "storylet_id": "236222"}], [{"original_text": "and the tower is too.", "album_id": "72157601053063486", "photo_flickr_id": "925425773", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47244", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the tower is too .", "storylet_id": "236223"}], [{"original_text": "The bridge will always stay beautiful.", "album_id": "72157601053063486", "photo_flickr_id": "926272822", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47244", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bridge will always stay beautiful .", "storylet_id": "236224"}], [{"original_text": "The Middle East gets a bad rap, but going there is amazing.", "album_id": "72157602004965238", "photo_flickr_id": "1381813266", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47245", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the location location gets a bad rap , but going there is amazing .", "storylet_id": "236225"}], [{"original_text": "We saw statues that date back centuries and it's really humbling to look at them. ", "album_id": "72157602004965238", "photo_flickr_id": "1381813416", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47245", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw statues that date back centuries and it 's really humbling to look at them .", "storylet_id": "236226"}], [{"original_text": "Of course modern transportation is still kind of iffy out there, so the old ways work best, namely camels. ", "album_id": "72157602004965238", "photo_flickr_id": "1381813532", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47245", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course modern transportation is still kind of iffy out there , so the old ways work best , namely camels .", "storylet_id": "236227"}], [{"original_text": "Looking at all this history really made us think. What would our legacy be in 1000 years? ", "album_id": "72157602004965238", "photo_flickr_id": "1381813712", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47245", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "looking at all this history really made us think . what would our legacy be in 1000 years ?", "storylet_id": "236228"}], [{"original_text": "And of course there was the Sphinx. Trust me, seeing it on TV and movies is nothing compared to seeing it in real life. ", "album_id": "72157602004965238", "photo_flickr_id": "1380913861", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47245", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and of course there was the sphinx . trust me , seeing it on tv and movies is nothing compared to seeing it in real life .", "storylet_id": "236229"}], [{"original_text": "One of our favorite things on the trip were the sunsets.", "album_id": "72157602004965238", "photo_flickr_id": "1380912859", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "47246", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one of our favorite things on the trip were the sunsets .", "storylet_id": "236230"}], [{"original_text": "During the days, people would sail the lakes.", "album_id": "72157602004965238", "photo_flickr_id": "1380913009", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "47246", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "during the days , people would sail the lakes .", "storylet_id": "236231"}], [{"original_text": "We made friends with many of the locals.", "album_id": "72157602004965238", "photo_flickr_id": "1381813532", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "47246", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we made friends with many of the locals .", "storylet_id": "236232"}], [{"original_text": "We had a great time exploring the ruins.", "album_id": "72157602004965238", "photo_flickr_id": "1381813626", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "47246", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a great time exploring the ruins .", "storylet_id": "236233"}], [{"original_text": "When the ship arrived, we didn't want to leave!", "album_id": "72157602004965238", "photo_flickr_id": "1381813818", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "47246", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the ship arrived , we did n't want to leave !", "storylet_id": "236234"}], [{"original_text": "The family visited Egypt during the fall.", "album_id": "72157602004965238", "photo_flickr_id": "1381813266", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47247", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family visited location during the fall .", "storylet_id": "236235"}], [{"original_text": "The children begged their mother to make a funny pose in front of the pharaoh statues.", "album_id": "72157602004965238", "photo_flickr_id": "1381813416", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47247", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children begged their mother to make a funny pose in front of the pharaoh statues .", "storylet_id": "236236"}], [{"original_text": "We took a few pictures of our children next to camels.", "album_id": "72157602004965238", "photo_flickr_id": "1381813532", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47247", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took a few pictures of our children next to camels .", "storylet_id": "236237"}], [{"original_text": "The family was hesitant in climbing the pyramid.", "album_id": "72157602004965238", "photo_flickr_id": "1381813712", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47247", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family was hesitant in climbing the pyramid .", "storylet_id": "236238"}], [{"original_text": "We decided to take a picture of the pyramid from afar. If we visit Egypt again, the family will not be afraid to climb the pyramid.", "album_id": "72157602004965238", "photo_flickr_id": "1380913861", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47247", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to take a picture of the pyramid from afar . if we visit location again , the family will not be afraid to climb the pyramid .", "storylet_id": "236239"}], [{"original_text": "I had a lot of fun on vacation in Egypt last week.", "album_id": "72157602004965238", "photo_flickr_id": "1381813266", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47248", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a lot of fun on vacation in location last week .", "storylet_id": "236240"}], [{"original_text": "There were so many ancient ruins that I got to explore.", "album_id": "72157602004965238", "photo_flickr_id": "1381813416", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47248", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many ancient ruins that i got to explore .", "storylet_id": "236241"}], [{"original_text": "I also got to ride on a camel.", "album_id": "72157602004965238", "photo_flickr_id": "1381813532", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47248", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also got to ride on a camel .", "storylet_id": "236242"}], [{"original_text": "The stones they used the build the pyramids were very big.", "album_id": "72157602004965238", "photo_flickr_id": "1381813712", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47248", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the stones they used the build the pyramids were very big .", "storylet_id": "236243"}], [{"original_text": "It must have taken them forever to make it.", "album_id": "72157602004965238", "photo_flickr_id": "1380913861", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47248", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it must have taken them forever to make it .", "storylet_id": "236244"}], [{"original_text": "The old statue was worn out", "album_id": "72157602004965238", "photo_flickr_id": "1381813266", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47249", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old statue was worn out", "storylet_id": "236245"}], [{"original_text": "but people were taking pictures near others.", "album_id": "72157602004965238", "photo_flickr_id": "1381813416", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47249", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but people were taking pictures near others .", "storylet_id": "236246"}], [{"original_text": "There were camels for transport", "album_id": "72157602004965238", "photo_flickr_id": "1381813532", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47249", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were camels for transport", "storylet_id": "236247"}], [{"original_text": "to the great pyramids", "album_id": "72157602004965238", "photo_flickr_id": "1381813712", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47249", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to the great pyramids", "storylet_id": "236248"}], [{"original_text": "and the sphinx too.", "album_id": "72157602004965238", "photo_flickr_id": "1380913861", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47249", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the sphinx too .", "storylet_id": "236249"}], [{"original_text": "The person that lives here called me about taking care of their yard.", "album_id": "72157602689117526", "photo_flickr_id": "1742849142", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47250", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the person that lives here called me about taking care of their yard .", "storylet_id": "236250"}], [{"original_text": "I looked at the front yard and was ready to accept the job.", "album_id": "72157602689117526", "photo_flickr_id": "1741999639", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47250", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i looked at the front yard and was ready to accept the job .", "storylet_id": "236251"}], [{"original_text": "Then they showed me the back yard.", "album_id": "72157602689117526", "photo_flickr_id": "1742849884", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47250", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they showed me the back yard .", "storylet_id": "236252"}], [{"original_text": "That was intimidating.", "album_id": "72157602689117526", "photo_flickr_id": "1742001393", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47250", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that was intimidating .", "storylet_id": "236253"}], [{"original_text": "There was two more buildings with yards to take care of in the back!", "album_id": "72157602689117526", "photo_flickr_id": "1742851524", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47250", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was two more buildings with yards to take care of in the back !", "storylet_id": "236254"}], [{"original_text": "I wanted to visit the country side for the weekend.", "album_id": "72157602689117526", "photo_flickr_id": "1742001393", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47251", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i wanted to visit the country side for the weekend .", "storylet_id": "236255"}], [{"original_text": "It was so pretty and full of nature.", "album_id": "72157602689117526", "photo_flickr_id": "1742001577", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47251", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was so pretty and full of nature .", "storylet_id": "236256"}], [{"original_text": "The flowers were in full bloom.", "album_id": "72157602689117526", "photo_flickr_id": "1742851312", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47251", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the flowers were in full bloom .", "storylet_id": "236257"}], [{"original_text": "This is the house we stayed in and tucked away with nature.", "album_id": "72157602689117526", "photo_flickr_id": "1742851524", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47251", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the house we stayed in and tucked away with nature .", "storylet_id": "236258"}], [{"original_text": "They even had a pond to go swimming in.", "album_id": "72157602689117526", "photo_flickr_id": "1742002163", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47251", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even had a pond to go swimming in .", "storylet_id": "236259"}], [{"original_text": "My relatives were waiting for my visit at their beautiful villa.", "album_id": "72157602689117526", "photo_flickr_id": "1742849142", "setting": "last-3-pick-old-and-tell", "worker_id": "91AHYP1LGNVH7TL", "story_id": "47252", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my relatives were waiting for my visit at their beautiful villa .", "storylet_id": "236260"}], [{"original_text": "I walked up the steps and saw them waiting for me by the door.", "album_id": "72157602689117526", "photo_flickr_id": "1741999639", "setting": "last-3-pick-old-and-tell", "worker_id": "91AHYP1LGNVH7TL", "story_id": "47252", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i walked up the steps and saw them waiting for me by the door .", "storylet_id": "236261"}], [{"original_text": "I enjoyed seeing their beautiful garden.", "album_id": "72157602689117526", "photo_flickr_id": "1742849884", "setting": "last-3-pick-old-and-tell", "worker_id": "91AHYP1LGNVH7TL", "story_id": "47252", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i enjoyed seeing their beautiful garden .", "storylet_id": "236262"}], [{"original_text": "The bushes were neatly trimmed and well taken care of.", "album_id": "72157602689117526", "photo_flickr_id": "1742001393", "setting": "last-3-pick-old-and-tell", "worker_id": "91AHYP1LGNVH7TL", "story_id": "47252", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bushes were neatly trimmed and well taken care of .", "storylet_id": "236263"}], [{"original_text": "The neighborhood was surrounded by trees.", "album_id": "72157602689117526", "photo_flickr_id": "1742851524", "setting": "last-3-pick-old-and-tell", "worker_id": "91AHYP1LGNVH7TL", "story_id": "47252", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the neighborhood was surrounded by trees .", "storylet_id": "236264"}], [{"original_text": "On vacation, I visited a beautiful home.", "album_id": "72157602689117526", "photo_flickr_id": "1742849142", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ6DEYJ4KGNPTLJ", "story_id": "47253", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on vacation , i visited a beautiful home .", "storylet_id": "236265"}], [{"original_text": "The home was large, and old, and well manicured.", "album_id": "72157602689117526", "photo_flickr_id": "1741999639", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ6DEYJ4KGNPTLJ", "story_id": "47253", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the home was large , and old , and well manicured .", "storylet_id": "236266"}], [{"original_text": "The gardens were so beautiful and large.", "album_id": "72157602689117526", "photo_flickr_id": "1742849884", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ6DEYJ4KGNPTLJ", "story_id": "47253", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the gardens were so beautiful and large .", "storylet_id": "236267"}], [{"original_text": "I walked through the gardens to get a closer look at all the plants they had.", "album_id": "72157602689117526", "photo_flickr_id": "1742001393", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ6DEYJ4KGNPTLJ", "story_id": "47253", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i walked through the gardens to get a closer look at all the plants they had .", "storylet_id": "236268"}], [{"original_text": "I was sad to leave this old stone home, and hope to visit again.", "album_id": "72157602689117526", "photo_flickr_id": "1742851524", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ6DEYJ4KGNPTLJ", "story_id": "47253", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was sad to leave this old stone home , and hope to visit again .", "storylet_id": "236269"}], [{"original_text": "When I got to the house I decided to buy it.", "album_id": "72157602689117526", "photo_flickr_id": "1742849142", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47254", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i got to the house i decided to buy it .", "storylet_id": "236270"}], [{"original_text": "It was beautiful.", "album_id": "72157602689117526", "photo_flickr_id": "1741999639", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47254", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was beautiful .", "storylet_id": "236271"}], [{"original_text": "Very large and the garden was gorgeous.", "album_id": "72157602689117526", "photo_flickr_id": "1742849884", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47254", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "very large and the garden was gorgeous .", "storylet_id": "236272"}], [{"original_text": "I like to spend my time walking through the garden.", "album_id": "72157602689117526", "photo_flickr_id": "1742001393", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47254", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i like to spend my time walking through the garden .", "storylet_id": "236273"}], [{"original_text": "I can't wait to move in.", "album_id": "72157602689117526", "photo_flickr_id": "1742851524", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47254", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ca n't wait to move in .", "storylet_id": "236274"}], [{"original_text": "We live in a rural area.", "album_id": "72157601372125786", "photo_flickr_id": "1085999374", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47255", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we live in a rural area .", "storylet_id": "236275"}], [{"original_text": "We're able to keep chickens at our house.", "album_id": "72157601372125786", "photo_flickr_id": "1085999140", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47255", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we 're able to keep chickens at our house .", "storylet_id": "236276"}], [{"original_text": "This is my mom showing off the hen house.", "album_id": "72157601372125786", "photo_flickr_id": "1085138331", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47255", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is my mom showing off the hen house .", "storylet_id": "236277"}], [{"original_text": "This is my mom showing off her favorite hen.", "album_id": "72157601372125786", "photo_flickr_id": "1085138447", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47255", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is my mom showing off her favorite hen .", "storylet_id": "236278"}], [{"original_text": "Her favorite part of the whole thing is when the chicks hatch.", "album_id": "72157601372125786", "photo_flickr_id": "1085997480", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47255", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her favorite part of the whole thing is when the chicks hatch .", "storylet_id": "236279"}], [{"original_text": "I love anything small and fuzzy.", "album_id": "72157601372125786", "photo_flickr_id": "1085997480", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "47256", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love anything small and fuzzy .", "storylet_id": "236280"}], [{"original_text": "The baby duckling is in my hand.", "album_id": "72157601372125786", "photo_flickr_id": "1085136333", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "47256", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the baby duckling is in my hand .", "storylet_id": "236281"}], [{"original_text": "I'm just about ready to get the chickens outdoors.", "album_id": "72157601372125786", "photo_flickr_id": "1085998102", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "47256", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i 'm just about ready to get the chickens outdoors .", "storylet_id": "236282"}], [{"original_text": "My garden is a fun spot for the chickens.", "album_id": "72157601372125786", "photo_flickr_id": "1085999140", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "47256", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my garden is a fun spot for the chickens .", "storylet_id": "236283"}], [{"original_text": "Who says you can't catch and hold a chicken!", "album_id": "72157601372125786", "photo_flickr_id": "1085138447", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "47256", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "who says you ca n't catch and hold a chicken !", "storylet_id": "236284"}], [{"original_text": "I just came back from the store with my new pets.", "album_id": "72157601372125786", "photo_flickr_id": "1085997480", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47257", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i just came back from the store with my new pets .", "storylet_id": "236285"}], [{"original_text": "I got some new chickens.", "album_id": "72157601372125786", "photo_flickr_id": "1085136333", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47257", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got some new chickens .", "storylet_id": "236286"}], [{"original_text": "They are very cute.", "album_id": "72157601372125786", "photo_flickr_id": "1085998102", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47257", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they are very cute .", "storylet_id": "236287"}], [{"original_text": "I put them outside with the other chickens.", "album_id": "72157601372125786", "photo_flickr_id": "1085999140", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47257", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i put them outside with the other chickens .", "storylet_id": "236288"}], [{"original_text": "They are my best friends.", "album_id": "72157601372125786", "photo_flickr_id": "1085138447", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47257", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are my best friends .", "storylet_id": "236289"}], [{"original_text": "We visited mother's house for the day.", "album_id": "72157601372125786", "photo_flickr_id": "1085999374", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "47258", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited mother 's house for the day .", "storylet_id": "236290"}], [{"original_text": "She has a chicken farm.", "album_id": "72157601372125786", "photo_flickr_id": "1085999140", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "47258", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she has a chicken farm .", "storylet_id": "236291"}], [{"original_text": "This is the chicken coop.", "album_id": "72157601372125786", "photo_flickr_id": "1085138331", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "47258", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the chicken coop .", "storylet_id": "236292"}], [{"original_text": "She really loves her chickens.", "album_id": "72157601372125786", "photo_flickr_id": "1085138447", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "47258", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she really loves her chickens .", "storylet_id": "236293"}], [{"original_text": "Lastly, this was a baby chicken that just hatched from an egg.", "album_id": "72157601372125786", "photo_flickr_id": "1085997480", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "47258", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , this was a baby chicken that just hatched from an egg .", "storylet_id": "236294"}], [{"original_text": "The vacation home was very beautiful ", "album_id": "72157601372125786", "photo_flickr_id": "1085999374", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47259", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the vacation home was very beautiful", "storylet_id": "236295"}], [{"original_text": "and had chickens outside.", "album_id": "72157601372125786", "photo_flickr_id": "1085999140", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47259", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and had chickens outside .", "storylet_id": "236296"}], [{"original_text": "The owner held the chicken", "album_id": "72157601372125786", "photo_flickr_id": "1085138331", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47259", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the owner held the chicken", "storylet_id": "236297"}], [{"original_text": "even though the chicken did not like it.", "album_id": "72157601372125786", "photo_flickr_id": "1085138447", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47259", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even though the chicken did not like it .", "storylet_id": "236298"}], [{"original_text": "It had a baby chicken that same day.", "album_id": "72157601372125786", "photo_flickr_id": "1085997480", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47259", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it had a baby chicken that same day .", "storylet_id": "236299"}], [{"original_text": "The park had a nice lake and there were a lot of ducks. ", "album_id": "546589", "photo_flickr_id": "22669466", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "47260", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the park had a nice lake and there were a lot of ducks .", "storylet_id": "236300"}], [{"original_text": "These little ducks are so well behaved.", "album_id": "546589", "photo_flickr_id": "22671053", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "47260", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these little ducks are so well behaved .", "storylet_id": "236301"}], [{"original_text": "These children seem to enjoy playing with the duck family. ", "album_id": "546589", "photo_flickr_id": "22674849", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "47260", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these children seem to enjoy playing with the duck family .", "storylet_id": "236302"}], [{"original_text": "We found some nice places to rest and cool off.", "album_id": "546589", "photo_flickr_id": "22669469", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "47260", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found some nice places to rest and cool off .", "storylet_id": "236303"}], [{"original_text": "I really liked these frog statues, this one is my favorite. ", "album_id": "546589", "photo_flickr_id": "22675525", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "47260", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i really liked these frog statues , this one is my favorite .", "storylet_id": "236304"}], [{"original_text": "A group of friends decided to visit the Tadpole Playground.", "album_id": "546589", "photo_flickr_id": "22674407", "setting": "first-2-pick-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "47261", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends decided to visit the location location .", "storylet_id": "236305"}], [{"original_text": "They walked through the park...", "album_id": "546589", "photo_flickr_id": "22669133", "setting": "first-2-pick-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "47261", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they walked through the park ...", "storylet_id": "236306"}], [{"original_text": "and took pictures with the statues.", "album_id": "546589", "photo_flickr_id": "22673686", "setting": "first-2-pick-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "47261", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and took pictures with the statues .", "storylet_id": "236307"}], [{"original_text": "After their walk they grabbed a bite to eat...", "album_id": "546589", "photo_flickr_id": "22669467", "setting": "first-2-pick-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "47261", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after their walk they grabbed a bite to eat ...", "storylet_id": "236308"}], [{"original_text": "and sat on the grass. To remember their trip, they took one last picture before heading home.", "album_id": "546589", "photo_flickr_id": "22672090", "setting": "first-2-pick-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "47261", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and sat on the grass . to remember their trip , they took one last picture before heading home .", "storylet_id": "236309"}], [{"original_text": "I love to travel", "album_id": "546589", "photo_flickr_id": "22669466", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47262", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love to travel", "storylet_id": "236310"}], [{"original_text": "This place is amazing", "album_id": "546589", "photo_flickr_id": "22671053", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47262", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this place is amazing", "storylet_id": "236311"}], [{"original_text": "So much to see", "album_id": "546589", "photo_flickr_id": "22674849", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47262", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so much to see", "storylet_id": "236312"}], [{"original_text": "and do", "album_id": "546589", "photo_flickr_id": "22669469", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47262", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and do", "storylet_id": "236313"}], [{"original_text": "I love this place", "album_id": "546589", "photo_flickr_id": "22675525", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47262", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love this place", "storylet_id": "236314"}], [{"original_text": "Enjoying the day at the local pond.", "album_id": "546589", "photo_flickr_id": "22669466", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47263", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "enjoying the day at the local pond .", "storylet_id": "236315"}], [{"original_text": "Loving the duck statue.", "album_id": "546589", "photo_flickr_id": "22671053", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47263", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "loving the duck statue .", "storylet_id": "236316"}], [{"original_text": "Look at all the cute ducklings. My kids love them.", "album_id": "546589", "photo_flickr_id": "22674849", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47263", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at all the cute ducklings . my kids love them .", "storylet_id": "236317"}], [{"original_text": "Sitting the grass relaxing for awhile.", "album_id": "546589", "photo_flickr_id": "22669469", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47263", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sitting the grass relaxing for awhile .", "storylet_id": "236318"}], [{"original_text": "Posing with a frog.", "album_id": "546589", "photo_flickr_id": "22675525", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47263", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "posing with a frog .", "storylet_id": "236319"}], [{"original_text": "A group of friends decided to take a walk in the peaceful Boston Commons.", "album_id": "546589", "photo_flickr_id": "22669466", "setting": "last-3-pick-old-and-tell", "worker_id": "U9PUPHN1TDQ6TZM", "story_id": "47264", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends decided to take a walk in the peaceful organization organization .", "storylet_id": "236320"}], [{"original_text": "One of them stopped to pose with the famous duckling statues that were inspired by a children's story.", "album_id": "546589", "photo_flickr_id": "22671053", "setting": "last-3-pick-old-and-tell", "worker_id": "U9PUPHN1TDQ6TZM", "story_id": "47264", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of them stopped to pose with the famous duckling statues that were inspired by a children 's story .", "storylet_id": "236321"}], [{"original_text": "They watched a group of children enjoying the ducklings themselves.", "album_id": "546589", "photo_flickr_id": "22674849", "setting": "last-3-pick-old-and-tell", "worker_id": "U9PUPHN1TDQ6TZM", "story_id": "47264", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they watched a group of children enjoying the ducklings themselves .", "storylet_id": "236322"}], [{"original_text": "They paused for a brief rest in the shade of a tree.", "album_id": "546589", "photo_flickr_id": "22669469", "setting": "last-3-pick-old-and-tell", "worker_id": "U9PUPHN1TDQ6TZM", "story_id": "47264", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they paused for a brief rest in the shade of a tree .", "storylet_id": "236323"}], [{"original_text": "These playful frog statues also caught their eye.", "album_id": "546589", "photo_flickr_id": "22675525", "setting": "last-3-pick-old-and-tell", "worker_id": "U9PUPHN1TDQ6TZM", "story_id": "47264", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these playful frog statues also caught their eye .", "storylet_id": "236324"}], [{"original_text": "Hey, let's all party.", "album_id": "544979", "photo_flickr_id": "23755094", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "47265", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hey , let 's all party .", "storylet_id": "236325"}], [{"original_text": "No. We don't like to party.", "album_id": "544979", "photo_flickr_id": "23755095", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "47265", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "no . we do n't like to party .", "storylet_id": "236326"}], [{"original_text": "Let's sit here and judge them while they party.", "album_id": "544979", "photo_flickr_id": "23755096", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "47265", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "let 's sit here and judge them while they party .", "storylet_id": "236327"}], [{"original_text": "Can I join in?", "album_id": "544979", "photo_flickr_id": "23755098", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "47265", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "can i join in ?", "storylet_id": "236328"}], [{"original_text": "We're too cool for these losers, let's go.", "album_id": "544979", "photo_flickr_id": "23898907", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "47265", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we 're too cool for these losers , let 's go .", "storylet_id": "236329"}], [{"original_text": "Tom and Lisa posing for a picture while waiting for the show to start.", "album_id": "544979", "photo_flickr_id": "23755094", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47266", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] posing for a picture while waiting for the show to start .", "storylet_id": "236330"}], [{"original_text": "Jamie brought little Suzy along to keep her entertained.", "album_id": "544979", "photo_flickr_id": "23755303", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47266", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] brought little suzy along to keep her entertained .", "storylet_id": "236331"}], [{"original_text": "Kelly rocking the pink cowboy hat like only she can.", "album_id": "544979", "photo_flickr_id": "23755304", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47266", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] rocking the pink cowboy hat like only she can .", "storylet_id": "236332"}], [{"original_text": "The light started to fade and the music started.", "album_id": "544979", "photo_flickr_id": "23898908", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47266", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the light started to fade and the music started .", "storylet_id": "236333"}], [{"original_text": "Tommy dancing to the beat of the music.", "album_id": "544979", "photo_flickr_id": "23755484", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47266", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] dancing to the beat of the music .", "storylet_id": "236334"}], [{"original_text": "We got to the park...and it was wonderful.", "album_id": "544979", "photo_flickr_id": "23755094", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47267", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got to the park ... and it was wonderful .", "storylet_id": "236335"}], [{"original_text": "We brought the baby and she was sleeping.", "album_id": "544979", "photo_flickr_id": "23755303", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47267", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we brought the baby and she was sleeping .", "storylet_id": "236336"}], [{"original_text": "But, the rest of us enjoyed ourselves.", "album_id": "544979", "photo_flickr_id": "23755304", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47267", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but , the rest of us enjoyed ourselves .", "storylet_id": "236337"}], [{"original_text": "We hung out with many we haven't seen in a long time.", "album_id": "544979", "photo_flickr_id": "23898908", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47267", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we hung out with many we have n't seen in a long time .", "storylet_id": "236338"}], [{"original_text": "And, even were given tickets to the gun show.", "album_id": "544979", "photo_flickr_id": "23755484", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47267", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , even were given tickets to the gun show .", "storylet_id": "236339"}], [{"original_text": "We spent the day at the park.", "album_id": "544979", "photo_flickr_id": "23755094", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47268", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we spent the day at the park .", "storylet_id": "236340"}], [{"original_text": "We had the babies there.", "album_id": "544979", "photo_flickr_id": "23755303", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47268", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had the babies there .", "storylet_id": "236341"}], [{"original_text": "We had the grannies there.", "album_id": "544979", "photo_flickr_id": "23755304", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47268", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had the grannies there .", "storylet_id": "236342"}], [{"original_text": "At dusk we all did a prayer circle.", "album_id": "544979", "photo_flickr_id": "23898908", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47268", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at dusk we all did a prayer circle .", "storylet_id": "236343"}], [{"original_text": "I think I need a new tattoo to commemorate the occasion.", "album_id": "544979", "photo_flickr_id": "23755484", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47268", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think i need a new tattoo to commemorate the occasion .", "storylet_id": "236344"}], [{"original_text": "We went out ot the pinic on sunday.", "album_id": "544979", "photo_flickr_id": "23755094", "setting": "last-3-pick-old-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47269", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went out ot the pinic on sunday .", "storylet_id": "236345"}], [{"original_text": "All the friends came over.", "album_id": "544979", "photo_flickr_id": "23755095", "setting": "last-3-pick-old-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47269", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the friends came over .", "storylet_id": "236346"}], [{"original_text": "We lounged out on the grass.", "album_id": "544979", "photo_flickr_id": "23755096", "setting": "last-3-pick-old-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47269", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we lounged out on the grass .", "storylet_id": "236347"}], [{"original_text": "We gossiped some after lunch.", "album_id": "544979", "photo_flickr_id": "23755098", "setting": "last-3-pick-old-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47269", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we gossiped some after lunch .", "storylet_id": "236348"}], [{"original_text": "We stayed there till the sun went down.", "album_id": "544979", "photo_flickr_id": "23898907", "setting": "last-3-pick-old-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47269", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we stayed there till the sun went down .", "storylet_id": "236349"}], [{"original_text": "It was the Fourth of July.", "album_id": "546640", "photo_flickr_id": "23682211", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47270", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the fourth of july .", "storylet_id": "236350"}], [{"original_text": "Time for lots of fireworks and fun.", "album_id": "546640", "photo_flickr_id": "23682212", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47270", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "time for lots of fireworks and fun .", "storylet_id": "236351"}], [{"original_text": "There was lots of ooooo's and ahhhh's.", "album_id": "546640", "photo_flickr_id": "23682718", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47270", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was lots of ooooo 's and ahhhh 's .", "storylet_id": "236352"}], [{"original_text": "My family and I love watching the fireworks each and every year.", "album_id": "546640", "photo_flickr_id": "23682209", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47270", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my family and i love watching the fireworks each and every year .", "storylet_id": "236353"}], [{"original_text": "The finale is always the best, except it means it's almost over.", "album_id": "546640", "photo_flickr_id": "23681617", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47270", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finale is always the best , except it means it 's almost over .", "storylet_id": "236354"}], [{"original_text": "A fireworks show was held on the fourth of July. The show started with a bright pink fire work bursting in the sky.", "album_id": "546640", "photo_flickr_id": "23682212", "setting": "first-2-pick-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "47271", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a fireworks show was held on the fourth of july . the show started with a bright pink fire work bursting in the sky .", "storylet_id": "236355"}], [{"original_text": "It was followed by a bright blue and yellow explosion. ", "album_id": "546640", "photo_flickr_id": "23682718", "setting": "first-2-pick-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "47271", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was followed by a bright blue and yellow explosion .", "storylet_id": "236356"}], [{"original_text": "The fire works exploded in time with music. There were white fire works...", "album_id": "546640", "photo_flickr_id": "23681617", "setting": "first-2-pick-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "47271", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fire works exploded in time with music . there were white fire works ...", "storylet_id": "236357"}], [{"original_text": "and blue fire works. ", "album_id": "546640", "photo_flickr_id": "23681613", "setting": "first-2-pick-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "47271", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and blue fire works .", "storylet_id": "236358"}], [{"original_text": "The finale was spectacular. Multiple red and pink fire works exploded at the same time in the sky. The show was a hit!", "album_id": "546640", "photo_flickr_id": "23681614", "setting": "first-2-pick-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "47271", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finale was spectacular . multiple red and pink fire works exploded at the same time in the sky . the show was a hit !", "storylet_id": "236359"}], [{"original_text": "I love to travel", "album_id": "546640", "photo_flickr_id": "23682211", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47272", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love to travel", "storylet_id": "236360"}], [{"original_text": "This place is amazing", "album_id": "546640", "photo_flickr_id": "23682212", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47272", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this place is amazing", "storylet_id": "236361"}], [{"original_text": "So much to see", "album_id": "546640", "photo_flickr_id": "23682718", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47272", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so much to see", "storylet_id": "236362"}], [{"original_text": "and do", "album_id": "546640", "photo_flickr_id": "23682209", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47272", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and do", "storylet_id": "236363"}], [{"original_text": "I will return", "album_id": "546640", "photo_flickr_id": "23681617", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47272", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i will return", "storylet_id": "236364"}], [{"original_text": "This is a picture of fireworks.", "album_id": "546640", "photo_flickr_id": "23682211", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47273", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of fireworks .", "storylet_id": "236365"}], [{"original_text": "This is a picture of pink fireworks.", "album_id": "546640", "photo_flickr_id": "23682212", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47273", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of pink fireworks .", "storylet_id": "236366"}], [{"original_text": "The fireworks are blue.", "album_id": "546640", "photo_flickr_id": "23682718", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47273", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fireworks are blue .", "storylet_id": "236367"}], [{"original_text": "The fireworks are orange and white.", "album_id": "546640", "photo_flickr_id": "23682209", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47273", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fireworks are orange and white .", "storylet_id": "236368"}], [{"original_text": "This is a picture of white fireworks.", "album_id": "546640", "photo_flickr_id": "23681617", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47273", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of white fireworks .", "storylet_id": "236369"}], [{"original_text": "July 4th fireworks always mesmerizes especially the bright star like ones.", "album_id": "546640", "photo_flickr_id": "23682211", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "47274", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "july 4th fireworks always mesmerizes especially the bright star like ones .", "storylet_id": "236370"}], [{"original_text": "The Forelli brothers improved this year's show by adding red highlights. ", "album_id": "546640", "photo_flickr_id": "23682212", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "47274", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the forelli brothers improved this year 's show by adding red highlights .", "storylet_id": "236371"}], [{"original_text": "And blue spheres with exploding stars in the center.", "album_id": "546640", "photo_flickr_id": "23682718", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "47274", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and blue spheres with exploding stars in the center .", "storylet_id": "236372"}], [{"original_text": "And golden showers that streaked down like meteors.", "album_id": "546640", "photo_flickr_id": "23682209", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "47274", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and golden showers that streaked down like meteors .", "storylet_id": "236373"}], [{"original_text": "And increased the luminosity of the crowd favorite chrysanthemum bursts.", "album_id": "546640", "photo_flickr_id": "23681617", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "47274", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and increased the luminosity of the crowd favorite chrysanthemum bursts .", "storylet_id": "236374"}], [{"original_text": "I took my family to see the fireworks tonight. They were so bright on the dark sky. ", "album_id": "1194349", "photo_flickr_id": "55122623", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47275", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took my family to see the fireworks tonight . they were so bright on the dark sky .", "storylet_id": "236375"}], [{"original_text": "The orange ones were my favorite. They were so big. ", "album_id": "1194349", "photo_flickr_id": "55122667", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47275", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the orange ones were my favorite . they were so big .", "storylet_id": "236376"}], [{"original_text": "The white ones were my husbands favorite. He's colorblind though so white seems to be his favorite color anyways. ", "album_id": "1194349", "photo_flickr_id": "55122382", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47275", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the white ones were my husbands favorite . he 's colorblind though so white seems to be his favorite color anyways .", "storylet_id": "236377"}], [{"original_text": "My daughters loved the crazy colored ones that shot all over the place. ", "album_id": "1194349", "photo_flickr_id": "55122506", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47275", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my daughters loved the crazy colored ones that shot all over the place .", "storylet_id": "236378"}], [{"original_text": "The grand finale was amazing. They shot up many orange and white fireworks. ", "album_id": "1194349", "photo_flickr_id": "55122390", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47275", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the grand finale was amazing . they shot up many orange and white fireworks .", "storylet_id": "236379"}], [{"original_text": "The show started of with lots of excitement and a big band.", "album_id": "1194349", "photo_flickr_id": "55122358", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47276", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the show started of with lots of excitement and a big band .", "storylet_id": "236380"}], [{"original_text": "I really liked this one with the smaller sub-explosions.", "album_id": "1194349", "photo_flickr_id": "55122667", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47276", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i really liked this one with the smaller sub-explosions .", "storylet_id": "236381"}], [{"original_text": "These little ones were so loud that I had to cover my ears.", "album_id": "1194349", "photo_flickr_id": "55122370", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47276", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these little ones were so loud that i had to cover my ears .", "storylet_id": "236382"}], [{"original_text": "This feathery firework was very unique.", "album_id": "1194349", "photo_flickr_id": "55122610", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47276", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this feathery firework was very unique .", "storylet_id": "236383"}], [{"original_text": "The finale started with red, white, and blue which soon followed.", "album_id": "1194349", "photo_flickr_id": "55122639", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47276", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finale started with red , white , and blue which soon followed .", "storylet_id": "236384"}], [{"original_text": "It was the Fourth of July!", "album_id": "1194349", "photo_flickr_id": "55122358", "setting": "last-3-pick-old-and-tell", "worker_id": "92JRF3W0PQVRUEW", "story_id": "47277", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the fourth of july !", "storylet_id": "236385"}], [{"original_text": "We got the family together to watch the fireworks.", "album_id": "1194349", "photo_flickr_id": "55122667", "setting": "last-3-pick-old-and-tell", "worker_id": "92JRF3W0PQVRUEW", "story_id": "47277", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got the family together to watch the fireworks .", "storylet_id": "236386"}], [{"original_text": "The display was spectacular.", "album_id": "1194349", "photo_flickr_id": "55122370", "setting": "last-3-pick-old-and-tell", "worker_id": "92JRF3W0PQVRUEW", "story_id": "47277", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the display was spectacular .", "storylet_id": "236387"}], [{"original_text": "There was lots of \"ooh\"ing and \"aah\"ing from the crowd.", "album_id": "1194349", "photo_flickr_id": "55122610", "setting": "last-3-pick-old-and-tell", "worker_id": "92JRF3W0PQVRUEW", "story_id": "47277", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was lots of `` ooh '' ing and `` aah '' ing from the crowd .", "storylet_id": "236388"}], [{"original_text": "The finale was mindblowing!", "album_id": "1194349", "photo_flickr_id": "55122639", "setting": "last-3-pick-old-and-tell", "worker_id": "92JRF3W0PQVRUEW", "story_id": "47277", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finale was mindblowing !", "storylet_id": "236389"}], [{"original_text": "The fireworks where awesome.", "album_id": "1194349", "photo_flickr_id": "55122623", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47278", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fireworks where awesome .", "storylet_id": "236390"}], [{"original_text": "The started out simple.", "album_id": "1194349", "photo_flickr_id": "55122667", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47278", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the started out simple .", "storylet_id": "236391"}], [{"original_text": "But built throughout the night.", "album_id": "1194349", "photo_flickr_id": "55122382", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47278", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but built throughout the night .", "storylet_id": "236392"}], [{"original_text": "They got a bit crazy.", "album_id": "1194349", "photo_flickr_id": "55122506", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47278", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they got a bit crazy .", "storylet_id": "236393"}], [{"original_text": "Then, the grand finally blew us away.", "album_id": "1194349", "photo_flickr_id": "55122390", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47278", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then , the grand finally blew us away .", "storylet_id": "236394"}], [{"original_text": "The fireworks this year were amazing. ", "album_id": "1194349", "photo_flickr_id": "55122358", "setting": "last-3-pick-old-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "47279", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fireworks this year were amazing .", "storylet_id": "236395"}], [{"original_text": "Some were like colorful star-flowers falling from fire bursts. ", "album_id": "1194349", "photo_flickr_id": "55122667", "setting": "last-3-pick-old-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "47279", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some were like colorful star-flowers falling from fire bursts .", "storylet_id": "236396"}], [{"original_text": "Some went multicolored from green to red. ", "album_id": "1194349", "photo_flickr_id": "55122370", "setting": "last-3-pick-old-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "47279", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some went multicolored from green to red .", "storylet_id": "236397"}], [{"original_text": "Many exploded from the ground making a peacock tail of fire. ", "album_id": "1194349", "photo_flickr_id": "55122610", "setting": "last-3-pick-old-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "47279", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many exploded from the ground making a peacock tail of fire .", "storylet_id": "236398"}], [{"original_text": "Brilliant colors of light made for a beautiful night. ", "album_id": "1194349", "photo_flickr_id": "55122639", "setting": "last-3-pick-old-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "47279", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "brilliant colors of light made for a beautiful night .", "storylet_id": "236399"}], [{"original_text": "I tried baking cookies for Halloween this year.", "album_id": "1656734", "photo_flickr_id": "77299280", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47280", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i tried baking cookies for halloween this year .", "storylet_id": "236400"}], [{"original_text": "I tried to get creative.", "album_id": "1656734", "photo_flickr_id": "77299731", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47280", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i tried to get creative .", "storylet_id": "236401"}], [{"original_text": "These lips shaped cookies turned out pretty well.", "album_id": "1656734", "photo_flickr_id": "77299635", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47280", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these lips shaped cookies turned out pretty well .", "storylet_id": "236402"}], [{"original_text": "I was also kind of proud of the bat cookies.", "album_id": "1656734", "photo_flickr_id": "77299543", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47280", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was also kind of proud of the bat cookies .", "storylet_id": "236403"}], [{"original_text": "Of course my little brother has to do stuff like this.", "album_id": "1656734", "photo_flickr_id": "77300189", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47280", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of course my little brother has to do stuff like this .", "storylet_id": "236404"}], [{"original_text": "Jerry made a funny cookie at the Halloween party.", "album_id": "1656734", "photo_flickr_id": "77300189", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47281", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] made a funny cookie at the halloween party .", "storylet_id": "236405"}], [{"original_text": "A more conventionally decorated cookie.", "album_id": "1656734", "photo_flickr_id": "77299846", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47281", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a more conventionally decorated cookie .", "storylet_id": "236406"}], [{"original_text": "The Rolling Stones would be very proud.", "album_id": "1656734", "photo_flickr_id": "77299635", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47281", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the organization organization would be very proud .", "storylet_id": "236407"}], [{"original_text": "A spooky cookie to go with the rest of the night.", "album_id": "1656734", "photo_flickr_id": "77299543", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47281", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a spooky cookie to go with the rest of the night .", "storylet_id": "236408"}], [{"original_text": "A collection of very well decorated cookies from the Halloween party.", "album_id": "1656734", "photo_flickr_id": "77299280", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47281", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a collection of very well decorated cookies from the halloween party .", "storylet_id": "236409"}], [{"original_text": "Kathy made her special cookies", "album_id": "1656734", "photo_flickr_id": "77299280", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47282", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] made her special cookies", "storylet_id": "236410"}], [{"original_text": "every Halloween she had something for the kdis", "album_id": "1656734", "photo_flickr_id": "77299731", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47282", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "every halloween she had something for the kdis", "storylet_id": "236411"}], [{"original_text": "this year it was some big red lips", "album_id": "1656734", "photo_flickr_id": "77299635", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47282", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this year it was some big red lips", "storylet_id": "236412"}], [{"original_text": "and followed by some spooky ghosts", "album_id": "1656734", "photo_flickr_id": "77299543", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47282", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and followed by some spooky ghosts", "storylet_id": "236413"}], [{"original_text": "and uh oh looks like someone spoiled kathy's cookies ", "album_id": "1656734", "photo_flickr_id": "77300189", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47282", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and uh oh looks like someone spoiled kathy 's cookies", "storylet_id": "236414"}], [{"original_text": "I made a lot oc ookies for the party tonight.", "album_id": "1656734", "photo_flickr_id": "77299280", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47283", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i made a lot oc ookies for the party tonight .", "storylet_id": "236415"}], [{"original_text": "I made all different kinds.", "album_id": "1656734", "photo_flickr_id": "77299731", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47283", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i made all different kinds .", "storylet_id": "236416"}], [{"original_text": "Some of them are salty.", "album_id": "1656734", "photo_flickr_id": "77299635", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47283", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them are salty .", "storylet_id": "236417"}], [{"original_text": "I made lots of different designs as well.", "album_id": "1656734", "photo_flickr_id": "77299543", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47283", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i made lots of different designs as well .", "storylet_id": "236418"}], [{"original_text": "I had a great time.", "album_id": "1656734", "photo_flickr_id": "77300189", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47283", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time .", "storylet_id": "236419"}], [{"original_text": "Today we decorated cookies.", "album_id": "1656734", "photo_flickr_id": "77299280", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47284", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we decorated cookies .", "storylet_id": "236420"}], [{"original_text": "We had the simple ones.", "album_id": "1656734", "photo_flickr_id": "77299731", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47284", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had the simple ones .", "storylet_id": "236421"}], [{"original_text": "We also had the creative ones.", "album_id": "1656734", "photo_flickr_id": "77299635", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47284", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also had the creative ones .", "storylet_id": "236422"}], [{"original_text": "My son even made a scary one.", "album_id": "1656734", "photo_flickr_id": "77299543", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47284", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my son even made a scary one .", "storylet_id": "236423"}], [{"original_text": "Of course my husband had to make a smart ass one.", "album_id": "1656734", "photo_flickr_id": "77300189", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47284", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of course my husband had to make a smart ass one .", "storylet_id": "236424"}], [{"original_text": "I took some photos of fireworks over the 4th of July.", "album_id": "72157594187905192", "photo_flickr_id": "182237118", "setting": "first-2-pick-and-tell", "worker_id": "EYLAS1JVFU2SVOO", "story_id": "47285", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took some photos of fireworks over the 4th of july .", "storylet_id": "236425"}], [{"original_text": "I just bought a new camera and wanted to try it out. ", "album_id": "72157594187905192", "photo_flickr_id": "182266229", "setting": "first-2-pick-and-tell", "worker_id": "EYLAS1JVFU2SVOO", "story_id": "47285", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i just bought a new camera and wanted to try it out .", "storylet_id": "236426"}], [{"original_text": "This is on my favorites because of the twisted tail and the starting of the explosion.", "album_id": "72157594187905192", "photo_flickr_id": "182267038", "setting": "first-2-pick-and-tell", "worker_id": "EYLAS1JVFU2SVOO", "story_id": "47285", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is on my favorites because of the twisted tail and the starting of the explosion .", "storylet_id": "236427"}], [{"original_text": "This one looks like a big fuzzy ball. But it's actually a ball of fire!", "album_id": "72157594187905192", "photo_flickr_id": "182267331", "setting": "first-2-pick-and-tell", "worker_id": "EYLAS1JVFU2SVOO", "story_id": "47285", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one looks like a big fuzzy ball . but it 's actually a ball of fire !", "storylet_id": "236428"}], [{"original_text": "This one is great too because there are so many explosions at the same time.", "album_id": "72157594187905192", "photo_flickr_id": "182267665", "setting": "first-2-pick-and-tell", "worker_id": "EYLAS1JVFU2SVOO", "story_id": "47285", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this one is great too because there are so many explosions at the same time .", "storylet_id": "236429"}], [{"original_text": "It's normal to see fireworks like this one and they are a bit run of the mill.", "album_id": "72157594187905192", "photo_flickr_id": "182267986", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "47286", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's normal to see fireworks like this one and they are a bit run of the mill .", "storylet_id": "236430"}], [{"original_text": "What's neat though is to see things like this where the fireworks workers mess around and create something truly unique.", "album_id": "72157594187905192", "photo_flickr_id": "182266229", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "47286", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "what 's neat though is to see things like this where the fireworks workers mess around and create something truly unique .", "storylet_id": "236431"}], [{"original_text": "Their creativity continuing throughout the show.", "album_id": "72157594187905192", "photo_flickr_id": "182267038", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "47286", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their creativity continuing throughout the show .", "storylet_id": "236432"}], [{"original_text": "Then before you know it they are back to the beginning again, only this time things are a bit different.", "album_id": "72157594187905192", "photo_flickr_id": "182268723", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "47286", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then before you know it they are back to the beginning again , only this time things are a bit different .", "storylet_id": "236433"}], [{"original_text": "There intention seems to almost be to bring the fireworks as close as possible. ", "album_id": "72157594187905192", "photo_flickr_id": "182268910", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "47286", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there intention seems to almost be to bring the fireworks as close as possible .", "storylet_id": "236434"}], [{"original_text": "We decided to go to the town fireworks on the Fourth of July.", "album_id": "72157594187905192", "photo_flickr_id": "182267986", "setting": "last-3-pick-old-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "47287", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go to the town fireworks on the fourth of july .", "storylet_id": "236435"}], [{"original_text": "The weather was perfect with a clear sky.", "album_id": "72157594187905192", "photo_flickr_id": "182266229", "setting": "last-3-pick-old-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "47287", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the weather was perfect with a clear sky .", "storylet_id": "236436"}], [{"original_text": "There were some interesting shapes displayed.", "album_id": "72157594187905192", "photo_flickr_id": "182267038", "setting": "last-3-pick-old-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "47287", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some interesting shapes displayed .", "storylet_id": "236437"}], [{"original_text": "The colors were brilliant.", "album_id": "72157594187905192", "photo_flickr_id": "182268723", "setting": "last-3-pick-old-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "47287", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the colors were brilliant .", "storylet_id": "236438"}], [{"original_text": "The finale was awesome!", "album_id": "72157594187905192", "photo_flickr_id": "182268910", "setting": "last-3-pick-old-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "47287", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finale was awesome !", "storylet_id": "236439"}], [{"original_text": "We went and saw the local fireworks.", "album_id": "72157594187905192", "photo_flickr_id": "182267986", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47288", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went and saw the local fireworks .", "storylet_id": "236440"}], [{"original_text": "The went way up jigh.", "album_id": "72157594187905192", "photo_flickr_id": "182266229", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47288", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the went way up jigh .", "storylet_id": "236441"}], [{"original_text": "Some looked like shooting stars. ", "album_id": "72157594187905192", "photo_flickr_id": "182267038", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47288", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some looked like shooting stars .", "storylet_id": "236442"}], [{"original_text": "I wish this was mroe than once a year.", "album_id": "72157594187905192", "photo_flickr_id": "182268723", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47288", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i wish this was mroe than once a year .", "storylet_id": "236443"}], [{"original_text": "We had a blast.", "album_id": "72157594187905192", "photo_flickr_id": "182268910", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47288", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a blast .", "storylet_id": "236444"}], [{"original_text": "The night sky lit up with fireworks.", "album_id": "72157594187905192", "photo_flickr_id": "182237118", "setting": "last-3-pick-old-and-tell", "worker_id": "GY3PJXU58I52T1U", "story_id": "47289", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the night sky lit up with fireworks .", "storylet_id": "236445"}], [{"original_text": "There were all colors, even yellows and reds. ", "album_id": "72157594187905192", "photo_flickr_id": "182266229", "setting": "last-3-pick-old-and-tell", "worker_id": "GY3PJXU58I52T1U", "story_id": "47289", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were all colors , even yellows and reds .", "storylet_id": "236446"}], [{"original_text": "Some floated down like golden rain. ", "album_id": "72157594187905192", "photo_flickr_id": "182267038", "setting": "last-3-pick-old-and-tell", "worker_id": "GY3PJXU58I52T1U", "story_id": "47289", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some floated down like golden rain .", "storylet_id": "236447"}], [{"original_text": "Some burst in giant displays of red. ", "album_id": "72157594187905192", "photo_flickr_id": "182267331", "setting": "last-3-pick-old-and-tell", "worker_id": "GY3PJXU58I52T1U", "story_id": "47289", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some burst in giant displays of red .", "storylet_id": "236448"}], [{"original_text": "Sometimes, even two shone at once.", "album_id": "72157594187905192", "photo_flickr_id": "182267665", "setting": "last-3-pick-old-and-tell", "worker_id": "GY3PJXU58I52T1U", "story_id": "47289", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sometimes , even two shone at once .", "storylet_id": "236449"}], [{"original_text": "The kids are ready to watch the parade.", "album_id": "72157594188533603", "photo_flickr_id": "182664154", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47290", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids are ready to watch the parade .", "storylet_id": "236450"}], [{"original_text": "Even the baby is ready. He looks so cute.", "album_id": "72157594188533603", "photo_flickr_id": "182664187", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47290", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the baby is ready . he looks so cute .", "storylet_id": "236451"}], [{"original_text": "A big crowd has gathered to watch.", "album_id": "72157594188533603", "photo_flickr_id": "182664318", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47290", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a big crowd has gathered to watch .", "storylet_id": "236452"}], [{"original_text": "An old fashioned fire truck lead the parade.", "album_id": "72157594188533603", "photo_flickr_id": "182664359", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47290", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an old fashioned fire truck lead the parade .", "storylet_id": "236453"}], [{"original_text": "The kids are eagerly grabbing up the candy.", "album_id": "72157594188533603", "photo_flickr_id": "182664442", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47290", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids are eagerly grabbing up the candy .", "storylet_id": "236454"}], [{"original_text": "Sarah was bored and restless because nothing much had happened. ", "album_id": "72157594188533603", "photo_flickr_id": "182664339", "setting": "first-2-pick-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47291", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was bored and restless because nothing much had happened .", "storylet_id": "236455"}], [{"original_text": "The parade kicked off with the fire engine's arrival.", "album_id": "72157594188533603", "photo_flickr_id": "182664359", "setting": "first-2-pick-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47291", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the parade kicked off with the fire engine 's arrival .", "storylet_id": "236456"}], [{"original_text": "The crowd got over excited and rushed towards the floats.", "album_id": "72157594188533603", "photo_flickr_id": "182664406", "setting": "first-2-pick-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47291", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowd got over excited and rushed towards the floats .", "storylet_id": "236457"}], [{"original_text": "Security quickly intervened to prevent any incident.", "album_id": "72157594188533603", "photo_flickr_id": "182664442", "setting": "first-2-pick-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47291", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "security quickly intervened to prevent any incident .", "storylet_id": "236458"}], [{"original_text": "All the commotion grabbed Sarah's attention and she watched quietly. ", "album_id": "72157594188533603", "photo_flickr_id": "182664285", "setting": "first-2-pick-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47291", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the commotion grabbed [female] 's attention and she watched quietly .", "storylet_id": "236459"}], [{"original_text": "It was a sunny afternoon, and we had planned to check out the parade.", "album_id": "72157594188533603", "photo_flickr_id": "182664154", "setting": "last-3-pick-old-and-tell", "worker_id": "RYOER7IHF3C9HPI", "story_id": "47292", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a sunny afternoon , and we had planned to check out the parade .", "storylet_id": "236460"}], [{"original_text": "Mom and baby were both dressed up festively.", "album_id": "72157594188533603", "photo_flickr_id": "182664187", "setting": "last-3-pick-old-and-tell", "worker_id": "RYOER7IHF3C9HPI", "story_id": "47292", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom and baby were both dressed up festively .", "storylet_id": "236461"}], [{"original_text": "We had a lot of fun watching all of the floats and cars go by.", "album_id": "72157594188533603", "photo_flickr_id": "182664318", "setting": "last-3-pick-old-and-tell", "worker_id": "RYOER7IHF3C9HPI", "story_id": "47292", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a lot of fun watching all of the floats and cars go by .", "storylet_id": "236462"}], [{"original_text": "I loved the antique fire truck that we saw.", "album_id": "72157594188533603", "photo_flickr_id": "182664359", "setting": "last-3-pick-old-and-tell", "worker_id": "RYOER7IHF3C9HPI", "story_id": "47292", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i loved the antique fire truck that we saw .", "storylet_id": "236463"}], [{"original_text": "Afterward we and the rest of the crowd dispersed and headed home.", "album_id": "72157594188533603", "photo_flickr_id": "182664442", "setting": "last-3-pick-old-and-tell", "worker_id": "RYOER7IHF3C9HPI", "story_id": "47292", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we and the rest of the crowd dispersed and headed home .", "storylet_id": "236464"}], [{"original_text": "A brother and his sister sit in the backyard and share a secret.", "album_id": "72157594188533603", "photo_flickr_id": "182664154", "setting": "last-3-pick-old-and-tell", "worker_id": "C5RDIKP5TXW7M7H", "story_id": "47293", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a brother and his sister sit in the backyard and share a secret .", "storylet_id": "236465"}], [{"original_text": "A mother shows her baby the wonders of the the park.", "album_id": "72157594188533603", "photo_flickr_id": "182664187", "setting": "last-3-pick-old-and-tell", "worker_id": "C5RDIKP5TXW7M7H", "story_id": "47293", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a mother shows her baby the wonders of the the park .", "storylet_id": "236466"}], [{"original_text": "Onlookers watcher the parade wit great enthusiam.", "album_id": "72157594188533603", "photo_flickr_id": "182664318", "setting": "last-3-pick-old-and-tell", "worker_id": "C5RDIKP5TXW7M7H", "story_id": "47293", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "onlookers watcher the parade wit great enthusiam .", "storylet_id": "236467"}], [{"original_text": "A fire engine is part of the parade.", "album_id": "72157594188533603", "photo_flickr_id": "182664359", "setting": "last-3-pick-old-and-tell", "worker_id": "C5RDIKP5TXW7M7H", "story_id": "47293", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a fire engine is part of the parade .", "storylet_id": "236468"}], [{"original_text": "A float goes by in the parade and the crowd cheers.", "album_id": "72157594188533603", "photo_flickr_id": "182664442", "setting": "last-3-pick-old-and-tell", "worker_id": "C5RDIKP5TXW7M7H", "story_id": "47293", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a float goes by in the parade and the crowd cheers .", "storylet_id": "236469"}], [{"original_text": "We spent the Fourth of July with the whole family.", "album_id": "72157594188533603", "photo_flickr_id": "182664154", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47294", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we spent the fourth of july with the whole family .", "storylet_id": "236470"}], [{"original_text": "We were getting ready and we even dressed up the baby.", "album_id": "72157594188533603", "photo_flickr_id": "182664187", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47294", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were getting ready and we even dressed up the baby .", "storylet_id": "236471"}], [{"original_text": "We attended a local parade.", "album_id": "72157594188533603", "photo_flickr_id": "182664318", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47294", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we attended a local parade .", "storylet_id": "236472"}], [{"original_text": "There were many trucks and floats that passed by.", "album_id": "72157594188533603", "photo_flickr_id": "182664359", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47294", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many trucks and floats that passed by .", "storylet_id": "236473"}], [{"original_text": "They even threw buckets of water on people for fun.", "album_id": "72157594188533603", "photo_flickr_id": "182664442", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47294", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even threw buckets of water on people for fun .", "storylet_id": "236474"}], [{"original_text": "I have a brother who lives in the swamps of the Everglades.", "album_id": "420260", "photo_flickr_id": "17721720", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47295", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have a brother who lives in the swamps of the location .", "storylet_id": "236475"}], [{"original_text": "There are super long bridges to get from place to place.", "album_id": "420260", "photo_flickr_id": "17721693", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47295", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are super long bridges to get from place to place .", "storylet_id": "236476"}], [{"original_text": "They also have regular looking beaches down there.", "album_id": "420260", "photo_flickr_id": "17721654", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47295", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also have regular looking beaches down there .", "storylet_id": "236477"}], [{"original_text": "My brother likes to joke about his place being Hotel California.", "album_id": "420260", "photo_flickr_id": "17721752", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47295", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my brother likes to joke about his place being hotel location .", "storylet_id": "236478"}], [{"original_text": "He's not your typical swamp dweller and cleans up well.", "album_id": "420260", "photo_flickr_id": "17721866", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47295", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he 's not your typical swamp dweller and cleans up well .", "storylet_id": "236479"}], [{"original_text": "Today was the day baby Sarah was going to go to the beach.", "album_id": "420260", "photo_flickr_id": "17721693", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47296", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day baby [female] was going to go to the beach .", "storylet_id": "236480"}], [{"original_text": "She was all ready and looking at her parents if it was time to go.", "album_id": "420260", "photo_flickr_id": "17721761", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47296", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was all ready and looking at her parents if it was time to go .", "storylet_id": "236481"}], [{"original_text": "She even took a look out of the window.", "album_id": "420260", "photo_flickr_id": "17721790", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47296", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she even took a look out of the window .", "storylet_id": "236482"}], [{"original_text": "This kid really wanted to go to the beach outside.", "album_id": "420260", "photo_flickr_id": "17721831", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47296", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this kid really wanted to go to the beach outside .", "storylet_id": "236483"}], [{"original_text": "Finally they took the baby outside to have fun on the beach.", "album_id": "420260", "photo_flickr_id": "17722018", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47296", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally they took the baby outside to have fun on the beach .", "storylet_id": "236484"}], [{"original_text": "My father decorated his front porch with red, white and blue for his Independence celebration.", "album_id": "420260", "photo_flickr_id": "17721720", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47297", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my father decorated his front porch with red , white and blue for his independence celebration .", "storylet_id": "236485"}], [{"original_text": "We went to the ocean afterwards.", "album_id": "420260", "photo_flickr_id": "17721693", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47297", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to the ocean afterwards .", "storylet_id": "236486"}], [{"original_text": "We relaxed on the beach because no one was there.", "album_id": "420260", "photo_flickr_id": "17721654", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47297", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we relaxed on the beach because no one was there .", "storylet_id": "236487"}], [{"original_text": "We went back home and saw that he put a hotel california sign the room we were staying at. ", "album_id": "420260", "photo_flickr_id": "17721752", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47297", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went back home and saw that he put a hotel california sign the room we were staying at .", "storylet_id": "236488"}], [{"original_text": "He has a strange sense of humor but our daughter loves him.", "album_id": "420260", "photo_flickr_id": "17721866", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47297", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he has a strange sense of humor but our daughter loves him .", "storylet_id": "236489"}], [{"original_text": "We visited my parents house, which is close to the beach.", "album_id": "420260", "photo_flickr_id": "17721720", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47298", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited my parents house , which is close to the beach .", "storylet_id": "236490"}], [{"original_text": "Their land is next to the ocean.", "album_id": "420260", "photo_flickr_id": "17721693", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47298", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their land is next to the ocean .", "storylet_id": "236491"}], [{"original_text": "The beach, however, is a little ways down the road.", "album_id": "420260", "photo_flickr_id": "17721654", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47298", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beach , however , is a little ways down the road .", "storylet_id": "236492"}], [{"original_text": "My mom showed my cousins poem he did in school.", "album_id": "420260", "photo_flickr_id": "17721752", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47298", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my mom showed my cousins poem he did in school .", "storylet_id": "236493"}], [{"original_text": "My dad enjoyed his time with his granddaughter.", "album_id": "420260", "photo_flickr_id": "17721866", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47298", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my dad enjoyed his time with his granddaughter .", "storylet_id": "236494"}], [{"original_text": "Spending the day at the lake.", "album_id": "420260", "photo_flickr_id": "17721693", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47299", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "spending the day at the lake .", "storylet_id": "236495"}], [{"original_text": "Look at that beautiful face! I love my daughter.", "album_id": "420260", "photo_flickr_id": "17721761", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47299", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look at that beautiful face ! i love my daughter .", "storylet_id": "236496"}], [{"original_text": "Here we are together looking outside.", "album_id": "420260", "photo_flickr_id": "17721790", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47299", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here we are together looking outside .", "storylet_id": "236497"}], [{"original_text": "Look at that face.", "album_id": "420260", "photo_flickr_id": "17721831", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47299", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look at that face .", "storylet_id": "236498"}], [{"original_text": "Posing by the water on the beach.", "album_id": "420260", "photo_flickr_id": "17722018", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47299", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "posing by the water on the beach .", "storylet_id": "236499"}], [{"original_text": "Everybody arrived on time for the big Walk n' Breakfast charity event.", "album_id": "72157628667758209", "photo_flickr_id": "6614565335", "setting": "first-2-pick-and-tell", "worker_id": "B0UWP77U8Z8EXOZ", "story_id": "47300", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everybody arrived on time for the big walk n ' breakfast charity event .", "storylet_id": "236500"}], [{"original_text": "Even Gladys and Dorothy remembered to bring their walking shoes.", "album_id": "72157628667758209", "photo_flickr_id": "6614960247", "setting": "first-2-pick-and-tell", "worker_id": "B0UWP77U8Z8EXOZ", "story_id": "47300", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even [female] and [female] remembered to bring their walking shoes .", "storylet_id": "236501"}], [{"original_text": "After the Walk, they were all clamoring for their Breakfast.", "album_id": "72157628667758209", "photo_flickr_id": "6615019561", "setting": "first-2-pick-and-tell", "worker_id": "B0UWP77U8Z8EXOZ", "story_id": "47300", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the walk , they were all clamoring for their breakfast .", "storylet_id": "236502"}], [{"original_text": "Norman and Lila set up the Breakfast Buffet while the crew was performing the Walk and it looks like they just finished their preparations!", "album_id": "72157628667758209", "photo_flickr_id": "6615229499", "setting": "first-2-pick-and-tell", "worker_id": "B0UWP77U8Z8EXOZ", "story_id": "47300", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and [female] set up the breakfast buffet while the crew was performing the walk and it looks like they just finished their preparations !", "storylet_id": "236503"}], [{"original_text": "Breakfast is served for all who participated in the Walk!", "album_id": "72157628667758209", "photo_flickr_id": "6615330255", "setting": "first-2-pick-and-tell", "worker_id": "B0UWP77U8Z8EXOZ", "story_id": "47300", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "breakfast is served for all who participated in the walk !", "storylet_id": "236504"}], [{"original_text": "Jerry pulled up to the picnic with his custom built horse trailer. ", "album_id": "72157628667758209", "photo_flickr_id": "6614446053", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47301", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] pulled up to the picnic with his custom built horse trailer .", "storylet_id": "236505"}], [{"original_text": "Once parked they prepared to serve the many guests. ", "album_id": "72157628667758209", "photo_flickr_id": "6614626185", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47301", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once parked they prepared to serve the many guests .", "storylet_id": "236506"}], [{"original_text": "The trailer had actually been modified into a small kitchen complete with a table. ", "album_id": "72157628667758209", "photo_flickr_id": "6615195273", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47301", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the trailer had actually been modified into a small kitchen complete with a table .", "storylet_id": "236507"}], [{"original_text": "People mingled as the food was being prepared. ", "album_id": "72157628667758209", "photo_flickr_id": "6615265475", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47301", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people mingled as the food was being prepared .", "storylet_id": "236508"}], [{"original_text": "Eventually everyone got in line to eat and enjoy Jerry's famous ribs. ", "album_id": "72157628667758209", "photo_flickr_id": "6615298289", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47301", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually everyone got in line to eat and enjoy [male] 's famous ribs .", "storylet_id": "236509"}], [{"original_text": "Getting the horse trailer loaded up for the dinner. ", "album_id": "72157628667758209", "photo_flickr_id": "6614446053", "setting": "last-3-pick-old-and-tell", "worker_id": "ODHDLQA67M82YT1", "story_id": "47302", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting the horse trailer loaded up for the dinner .", "storylet_id": "236510"}], [{"original_text": "Mom and Dad posing by the door of the trailer before we start eating. ", "album_id": "72157628667758209", "photo_flickr_id": "6614626185", "setting": "last-3-pick-old-and-tell", "worker_id": "ODHDLQA67M82YT1", "story_id": "47302", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom and dad posing by the door of the trailer before we start eating .", "storylet_id": "236511"}], [{"original_text": "Look at the spread they made for us. ", "album_id": "72157628667758209", "photo_flickr_id": "6615195273", "setting": "last-3-pick-old-and-tell", "worker_id": "ODHDLQA67M82YT1", "story_id": "47302", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at the spread they made for us .", "storylet_id": "236512"}], [{"original_text": "Our family is waiting to get in for the yummy food. ", "album_id": "72157628667758209", "photo_flickr_id": "6615265475", "setting": "last-3-pick-old-and-tell", "worker_id": "ODHDLQA67M82YT1", "story_id": "47302", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our family is waiting to get in for the yummy food .", "storylet_id": "236513"}], [{"original_text": "The line has formed and we are ready to go eat some good food. ", "album_id": "72157628667758209", "photo_flickr_id": "6615298289", "setting": "last-3-pick-old-and-tell", "worker_id": "ODHDLQA67M82YT1", "story_id": "47302", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the line has formed and we are ready to go eat some good food .", "storylet_id": "236514"}], [{"original_text": "On the road trip, we took a truck and a camper.", "album_id": "72157628667758209", "photo_flickr_id": "6614446053", "setting": "last-3-pick-old-and-tell", "worker_id": "GWN5P94JUVIJUMQ", "story_id": "47303", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on the road trip , we took a truck and a camper .", "storylet_id": "236515"}], [{"original_text": "Mom opened the door of the camper to peek inside.", "album_id": "72157628667758209", "photo_flickr_id": "6614626185", "setting": "last-3-pick-old-and-tell", "worker_id": "GWN5P94JUVIJUMQ", "story_id": "47303", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom opened the door of the camper to peek inside .", "storylet_id": "236516"}], [{"original_text": "Inside was a picnic table filled with food.", "album_id": "72157628667758209", "photo_flickr_id": "6615195273", "setting": "last-3-pick-old-and-tell", "worker_id": "GWN5P94JUVIJUMQ", "story_id": "47303", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "inside was a picnic table filled with food .", "storylet_id": "236517"}], [{"original_text": "People heard about it and started to come by.", "album_id": "72157628667758209", "photo_flickr_id": "6615265475", "setting": "last-3-pick-old-and-tell", "worker_id": "GWN5P94JUVIJUMQ", "story_id": "47303", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people heard about it and started to come by .", "storylet_id": "236518"}], [{"original_text": "More people showed for the wonderful sight inside the camper.", "album_id": "72157628667758209", "photo_flickr_id": "6615298289", "setting": "last-3-pick-old-and-tell", "worker_id": "GWN5P94JUVIJUMQ", "story_id": "47303", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "more people showed for the wonderful sight inside the camper .", "storylet_id": "236519"}], [{"original_text": "Our town can offer a different sort of street food experience.", "album_id": "72157628667758209", "photo_flickr_id": "6614565335", "setting": "last-3-pick-old-and-tell", "worker_id": "18P4Y9XZ220KAOZ", "story_id": "47304", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our town can offer a different sort of street food experience .", "storylet_id": "236520"}], [{"original_text": "Have to be dressed comfortably, to maximize the experience!", "album_id": "72157628667758209", "photo_flickr_id": "6614960247", "setting": "last-3-pick-old-and-tell", "worker_id": "18P4Y9XZ220KAOZ", "story_id": "47304", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "have to be dressed comfortably , to maximize the experience !", "storylet_id": "236521"}], [{"original_text": "People are already gathering together for food.", "album_id": "72157628667758209", "photo_flickr_id": "6615019561", "setting": "last-3-pick-old-and-tell", "worker_id": "18P4Y9XZ220KAOZ", "story_id": "47304", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people are already gathering together for food .", "storylet_id": "236522"}], [{"original_text": "Other than the food itself, cars are offered to dine in.", "album_id": "72157628667758209", "photo_flickr_id": "6615229499", "setting": "last-3-pick-old-and-tell", "worker_id": "18P4Y9XZ220KAOZ", "story_id": "47304", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other than the food itself , cars are offered to dine in .", "storylet_id": "236523"}], [{"original_text": "The cars can offer quite a cozy get-together.", "album_id": "72157628667758209", "photo_flickr_id": "6615330255", "setting": "last-3-pick-old-and-tell", "worker_id": "18P4Y9XZ220KAOZ", "story_id": "47304", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cars can offer quite a cozy get-together .", "storylet_id": "236524"}], [{"original_text": "This is what I fuel up before a big race.", "album_id": "72157601536678322", "photo_flickr_id": "1167270301", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47305", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is what i fuel up before a big race .", "storylet_id": "236525"}], [{"original_text": "We started the day under cloudy conditions.", "album_id": "72157601536678322", "photo_flickr_id": "1167270475", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47305", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started the day under cloudy conditions .", "storylet_id": "236526"}], [{"original_text": "Soon though the sun was out.", "album_id": "72157601536678322", "photo_flickr_id": "1168126734", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47305", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "soon though the sun was out .", "storylet_id": "236527"}], [{"original_text": "As evening fell we celebrated our race achievements.", "album_id": "72157601536678322", "photo_flickr_id": "1167270917", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47305", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as evening fell we celebrated our race achievements .", "storylet_id": "236528"}], [{"original_text": "We deserved the hotdogs they provided.", "album_id": "72157601536678322", "photo_flickr_id": "1168127344", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47305", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we deserved the hotdogs they provided .", "storylet_id": "236529"}], [{"original_text": "This lady wants to look fashionable before she goes out. ", "album_id": "72157601536678322", "photo_flickr_id": "1168125704", "setting": "first-2-pick-and-tell", "worker_id": "WI17X7JCS13QGWL", "story_id": "47306", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this lady wants to look fashionable before she goes out .", "storylet_id": "236530"}], [{"original_text": "She goes on her motorcycle. She prepares to go to the race.", "album_id": "72157601536678322", "photo_flickr_id": "1168125826", "setting": "first-2-pick-and-tell", "worker_id": "WI17X7JCS13QGWL", "story_id": "47306", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she goes on her motorcycle . she prepares to go to the race .", "storylet_id": "236531"}], [{"original_text": "She arrives at the race and changes into more appropriate clothing.", "album_id": "72157601536678322", "photo_flickr_id": "1168126400", "setting": "first-2-pick-and-tell", "worker_id": "WI17X7JCS13QGWL", "story_id": "47306", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she arrives at the race and changes into more appropriate clothing .", "storylet_id": "236532"}], [{"original_text": "Other people are racing. They are trying to conserve their energy for the whole race.", "album_id": "72157601536678322", "photo_flickr_id": "1167270475", "setting": "first-2-pick-and-tell", "worker_id": "WI17X7JCS13QGWL", "story_id": "47306", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other people are racing . they are trying to conserve their energy for the whole race .", "storylet_id": "236533"}], [{"original_text": "Other people are also racing. They are trying to win.", "album_id": "72157601536678322", "photo_flickr_id": "1168126734", "setting": "first-2-pick-and-tell", "worker_id": "WI17X7JCS13QGWL", "story_id": "47306", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "other people are also racing . they are trying to win .", "storylet_id": "236534"}], [{"original_text": "Decked out in my leathers and ready to ride.", "album_id": "72157601536678322", "photo_flickr_id": "1168125704", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47307", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "decked out in my leathers and ready to ride .", "storylet_id": "236535"}], [{"original_text": "Great pic of me on my bike.", "album_id": "72157601536678322", "photo_flickr_id": "1168125826", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47307", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "great pic of me on my bike .", "storylet_id": "236536"}], [{"original_text": "At the start of the race I'm ready go.", "album_id": "72157601536678322", "photo_flickr_id": "1168126400", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47307", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the start of the race i 'm ready go .", "storylet_id": "236537"}], [{"original_text": "Keeping pace with the person aside me.", "album_id": "72157601536678322", "photo_flickr_id": "1167270475", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47307", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "keeping pace with the person aside me .", "storylet_id": "236538"}], [{"original_text": "Jogging toward the finish line.", "album_id": "72157601536678322", "photo_flickr_id": "1168126734", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47307", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "jogging toward the finish line .", "storylet_id": "236539"}], [{"original_text": "Before heading out to the race, we had a nutritious breakfast. ", "album_id": "72157601536678322", "photo_flickr_id": "1167270301", "setting": "last-3-pick-old-and-tell", "worker_id": "KR2OT4K7AFSMLWQ", "story_id": "47308", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before heading out to the race , we had a nutritious breakfast .", "storylet_id": "236540"}], [{"original_text": "Here we are during the early stages of the race.", "album_id": "72157601536678322", "photo_flickr_id": "1167270475", "setting": "last-3-pick-old-and-tell", "worker_id": "KR2OT4K7AFSMLWQ", "story_id": "47308", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we are during the early stages of the race .", "storylet_id": "236541"}], [{"original_text": "It rained a little, and that cooled us down. You can see the puddles that the rain left in the road.", "album_id": "72157601536678322", "photo_flickr_id": "1168126734", "setting": "last-3-pick-old-and-tell", "worker_id": "KR2OT4K7AFSMLWQ", "story_id": "47308", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it rained a little , and that cooled us down . you can see the puddles that the rain left in the road .", "storylet_id": "236542"}], [{"original_text": "After the race, we spent some fun time celebrating with the other runners.", "album_id": "72157601536678322", "photo_flickr_id": "1167270917", "setting": "last-3-pick-old-and-tell", "worker_id": "KR2OT4K7AFSMLWQ", "story_id": "47308", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the race , we spent some fun time celebrating with the other runners .", "storylet_id": "236543"}], [{"original_text": "Now that the race is over, we can enjoy the sights and the good food.", "album_id": "72157601536678322", "photo_flickr_id": "1168127344", "setting": "last-3-pick-old-and-tell", "worker_id": "KR2OT4K7AFSMLWQ", "story_id": "47308", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now that the race is over , we can enjoy the sights and the good food .", "storylet_id": "236544"}], [{"original_text": "Maggie wore her leather clothes over her foot race clothes.", "album_id": "72157601536678322", "photo_flickr_id": "1168125704", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "47309", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] wore her leather clothes over her foot race clothes .", "storylet_id": "236545"}], [{"original_text": "She rode her motorcycle to the race. ", "album_id": "72157601536678322", "photo_flickr_id": "1168125826", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "47309", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she rode her motorcycle to the race .", "storylet_id": "236546"}], [{"original_text": "She laughed at all the other participants because she knew they were no real threat.", "album_id": "72157601536678322", "photo_flickr_id": "1168126400", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "47309", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she laughed at all the other participants because she knew they were no real threat .", "storylet_id": "236547"}], [{"original_text": "She overcame each racer in turn.", "album_id": "72157601536678322", "photo_flickr_id": "1167270475", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "47309", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she overcame each racer in turn .", "storylet_id": "236548"}], [{"original_text": "Maggie left all the other racers far behind in her quest for first place.", "album_id": "72157601536678322", "photo_flickr_id": "1168126734", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "47309", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] left all the other racers far behind in her quest for first place .", "storylet_id": "236549"}], [{"original_text": "Jason grabs a Subway ride to the race.", "album_id": "784072", "photo_flickr_id": "35433230", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47310", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] grabs a subway ride to the race .", "storylet_id": "236550"}], [{"original_text": "There he sees a few of his family members with signs.", "album_id": "784072", "photo_flickr_id": "35433182", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47310", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there he sees a few of his family members with signs .", "storylet_id": "236551"}], [{"original_text": "He then sees even more friends and family that have shown up to watch him.", "album_id": "784072", "photo_flickr_id": "35433190", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47310", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he then sees even more friends and family that have shown up to watch him .", "storylet_id": "236552"}], [{"original_text": "Jason sets a new meet record for the race.", "album_id": "784072", "photo_flickr_id": "35433250", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47310", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] sets a new meet record for the race .", "storylet_id": "236553"}], [{"original_text": "Jason couldn't be happier as he gets hugs from his family.", "album_id": "784072", "photo_flickr_id": "35433175", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47310", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] could n't be happier as he gets hugs from his family .", "storylet_id": "236554"}], [{"original_text": "The whole family came out for support.", "album_id": "784072", "photo_flickr_id": "35433190", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47311", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family came out for support .", "storylet_id": "236555"}], [{"original_text": "He was excited to start the race but not about getting up so early.", "album_id": "784072", "photo_flickr_id": "35433230", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47311", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was excited to start the race but not about getting up so early .", "storylet_id": "236556"}], [{"original_text": "The race was well underway and he made it.", "album_id": "784072", "photo_flickr_id": "35433246", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47311", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the race was well underway and he made it .", "storylet_id": "236557"}], [{"original_text": "We celebrated together afterwards.", "album_id": "784072", "photo_flickr_id": "35433256", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47311", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we celebrated together afterwards .", "storylet_id": "236558"}], [{"original_text": "He said he was starving.", "album_id": "784072", "photo_flickr_id": "35433261", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47311", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he said he was starving .", "storylet_id": "236559"}], [{"original_text": "The man gets onto the subway, ready to go to the race.", "album_id": "784072", "photo_flickr_id": "35433230", "setting": "last-3-pick-old-and-tell", "worker_id": "LDQTVVBS08HMLAX", "story_id": "47312", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man gets onto the subway , ready to go to the race .", "storylet_id": "236560"}], [{"original_text": "His friends and family cheer him on.", "album_id": "784072", "photo_flickr_id": "35433182", "setting": "last-3-pick-old-and-tell", "worker_id": "LDQTVVBS08HMLAX", "story_id": "47312", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his friends and family cheer him on .", "storylet_id": "236561"}], [{"original_text": "They yell: \"Go Jason!\" as he runs by.", "album_id": "784072", "photo_flickr_id": "35433190", "setting": "last-3-pick-old-and-tell", "worker_id": "LDQTVVBS08HMLAX", "story_id": "47312", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they yell : `` go [male] ! '' as he runs by .", "storylet_id": "236562"}], [{"original_text": "The runners make it through the course.", "album_id": "784072", "photo_flickr_id": "35433250", "setting": "last-3-pick-old-and-tell", "worker_id": "LDQTVVBS08HMLAX", "story_id": "47312", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the runners make it through the course .", "storylet_id": "236563"}], [{"original_text": "Everyone poses for a picture with the winner.", "album_id": "784072", "photo_flickr_id": "35433175", "setting": "last-3-pick-old-and-tell", "worker_id": "LDQTVVBS08HMLAX", "story_id": "47312", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone poses for a picture with the winner .", "storylet_id": "236564"}], [{"original_text": "I had a great time at the race yesterday. All of my friends came to show their support.", "album_id": "784072", "photo_flickr_id": "35433190", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47313", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the race yesterday . all of my friends came to show their support .", "storylet_id": "236565"}], [{"original_text": "It was a long bus ride to the race.", "album_id": "784072", "photo_flickr_id": "35433230", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47313", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a long bus ride to the race .", "storylet_id": "236566"}], [{"original_text": "I didn't finish first but I tried my best.", "album_id": "784072", "photo_flickr_id": "35433246", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47313", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i did n't finish first but i tried my best .", "storylet_id": "236567"}], [{"original_text": "There were a lot of people at the event.", "album_id": "784072", "photo_flickr_id": "35433256", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47313", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of people at the event .", "storylet_id": "236568"}], [{"original_text": "Afterward i ate some bananas.", "album_id": "784072", "photo_flickr_id": "35433261", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47313", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward i ate some bananas .", "storylet_id": "236569"}], [{"original_text": "This group is cheering Jason on.", "album_id": "784072", "photo_flickr_id": "35433190", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47314", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this group is cheering [male] on .", "storylet_id": "236570"}], [{"original_text": "Jason arriving at the start of the race.", "album_id": "784072", "photo_flickr_id": "35433230", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47314", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] arriving at the start of the race .", "storylet_id": "236571"}], [{"original_text": "Runners competing in the race.", "album_id": "784072", "photo_flickr_id": "35433246", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47314", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "runners competing in the race .", "storylet_id": "236572"}], [{"original_text": "A happy group of well wishers pose for a picture.", "album_id": "784072", "photo_flickr_id": "35433256", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47314", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a happy group of well wishers pose for a picture .", "storylet_id": "236573"}], [{"original_text": "The runner is wearing a silver blanket to keep in body heat.", "album_id": "784072", "photo_flickr_id": "35433261", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47314", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the runner is wearing a silver blanket to keep in body heat .", "storylet_id": "236574"}], [{"original_text": "My friend Sue ran a 5k yesterday.", "album_id": "1463239", "photo_flickr_id": "67811892", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47315", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend [female] ran a 5k yesterday .", "storylet_id": "236575"}], [{"original_text": "Here she is entering the race.", "album_id": "1463239", "photo_flickr_id": "67812178", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47315", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here she is entering the race .", "storylet_id": "236576"}], [{"original_text": "Her brother brought along a camera.", "album_id": "1463239", "photo_flickr_id": "67812220", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47315", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her brother brought along a camera .", "storylet_id": "236577"}], [{"original_text": "The race had many participants.", "album_id": "1463239", "photo_flickr_id": "67812274", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47315", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the race had many participants .", "storylet_id": "236578"}], [{"original_text": "Here's Sue getting refreshed.", "album_id": "1463239", "photo_flickr_id": "67812753", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47315", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's [female] getting refreshed .", "storylet_id": "236579"}], [{"original_text": "Many people participated in the half-marathon.", "album_id": "1463239", "photo_flickr_id": "67811929", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47316", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people participated in the half-marathon .", "storylet_id": "236580"}], [{"original_text": "Unfortunately, it was a rainy day.", "album_id": "1463239", "photo_flickr_id": "67811986", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47316", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "unfortunately , it was a rainy day .", "storylet_id": "236581"}], [{"original_text": "Refreshments were available.", "album_id": "1463239", "photo_flickr_id": "67812753", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47316", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "refreshments were available .", "storylet_id": "236582"}], [{"original_text": "After running, people needed to get warm.", "album_id": "1463239", "photo_flickr_id": "67813204", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47316", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after running , people needed to get warm .", "storylet_id": "236583"}], [{"original_text": "Everyone seemed in good spirits, despite the weather.", "album_id": "1463239", "photo_flickr_id": "67814493", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47316", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone seemed in good spirits , despite the weather .", "storylet_id": "236584"}], [{"original_text": "The racers were prepared for the big marathon.", "album_id": "1463239", "photo_flickr_id": "67811892", "setting": "last-3-pick-old-and-tell", "worker_id": "91AHYP1LGNVH7TL", "story_id": "47317", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the racers were prepared for the big marathon .", "storylet_id": "236585"}], [{"original_text": "I was excited and positive I could win the race.", "album_id": "1463239", "photo_flickr_id": "67812178", "setting": "last-3-pick-old-and-tell", "worker_id": "91AHYP1LGNVH7TL", "story_id": "47317", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was excited and positive i could win the race .", "storylet_id": "236586"}], [{"original_text": "Photographers took pictures of me and the other racers.", "album_id": "1463239", "photo_flickr_id": "67812220", "setting": "last-3-pick-old-and-tell", "worker_id": "91AHYP1LGNVH7TL", "story_id": "47317", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "photographers took pictures of me and the other racers .", "storylet_id": "236587"}], [{"original_text": "It was rainy, but we had a lot of fun.", "album_id": "1463239", "photo_flickr_id": "67812274", "setting": "last-3-pick-old-and-tell", "worker_id": "91AHYP1LGNVH7TL", "story_id": "47317", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was rainy , but we had a lot of fun .", "storylet_id": "236588"}], [{"original_text": "We needed to drink water to rehydrate.", "album_id": "1463239", "photo_flickr_id": "67812753", "setting": "last-3-pick-old-and-tell", "worker_id": "91AHYP1LGNVH7TL", "story_id": "47317", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we needed to drink water to rehydrate .", "storylet_id": "236589"}], [{"original_text": "Emily Lou and Jan pose before the marathon that Emily Lou is running.", "album_id": "1463239", "photo_flickr_id": "67811892", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "47318", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] [female] and [female] pose before the marathon that [female] [female] is running .", "storylet_id": "236590"}], [{"original_text": "Emily Lou has caught up with Cindy May.", "album_id": "1463239", "photo_flickr_id": "67812178", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "47318", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] [female] has caught up with [female] [female] .", "storylet_id": "236591"}], [{"original_text": "Shane Nicholas is taking pictures of me taking pictures of him.", "album_id": "1463239", "photo_flickr_id": "67812220", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "47318", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] [male] is taking pictures of me taking pictures of him .", "storylet_id": "236592"}], [{"original_text": "Come on racers to take a rest break.", "album_id": "1463239", "photo_flickr_id": "67812274", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "47318", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "come on racers to take a rest break .", "storylet_id": "236593"}], [{"original_text": "Emily Lou is doing well in her race but she needs a water break.", "album_id": "1463239", "photo_flickr_id": "67812753", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "47318", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] [female] is doing well in her race but she needs a water break .", "storylet_id": "236594"}], [{"original_text": "A 5K is currently taking place and here are some of the racers.", "album_id": "1463239", "photo_flickr_id": "67811929", "setting": "last-3-pick-old-and-tell", "worker_id": "Z6079EUX6AIW5M6", "story_id": "47319", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a 5k is currently taking place and here are some of the racers .", "storylet_id": "236595"}], [{"original_text": "Here are some of the racers who are in the back of the race.", "album_id": "1463239", "photo_flickr_id": "67811986", "setting": "last-3-pick-old-and-tell", "worker_id": "Z6079EUX6AIW5M6", "story_id": "47319", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here are some of the racers who are in the back of the race .", "storylet_id": "236596"}], [{"original_text": "The race is finished and a lady is drinking some water", "album_id": "1463239", "photo_flickr_id": "67812753", "setting": "last-3-pick-old-and-tell", "worker_id": "Z6079EUX6AIW5M6", "story_id": "47319", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the race is finished and a lady is drinking some water", "storylet_id": "236597"}], [{"original_text": "One man is relieved that the run is over an gives a slight grin.", "album_id": "1463239", "photo_flickr_id": "67813204", "setting": "last-3-pick-old-and-tell", "worker_id": "Z6079EUX6AIW5M6", "story_id": "47319", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one man is relieved that the run is over an gives a slight grin .", "storylet_id": "236598"}], [{"original_text": "A man and lady take a picture while they were walking around.", "album_id": "1463239", "photo_flickr_id": "67814493", "setting": "last-3-pick-old-and-tell", "worker_id": "Z6079EUX6AIW5M6", "story_id": "47319", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a man and lady take a picture while they were walking around .", "storylet_id": "236599"}], [{"original_text": "My friends participated in a dance off.", "album_id": "158010", "photo_flickr_id": "6328556", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47320", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends participated in a dance off .", "storylet_id": "236600"}], [{"original_text": "Another one of my friends came to cheer them on.", "album_id": "158010", "photo_flickr_id": "6328554", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47320", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "another one of my friends came to cheer them on .", "storylet_id": "236601"}], [{"original_text": "She is a little bit of a ham.", "album_id": "158010", "photo_flickr_id": "6328551", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47320", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she is a little bit of a ham .", "storylet_id": "236602"}], [{"original_text": "There were lots of couples competing.", "album_id": "158010", "photo_flickr_id": "6328582", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47320", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were lots of couples competing .", "storylet_id": "236603"}], [{"original_text": "The event was pretty large.", "album_id": "158010", "photo_flickr_id": "6328555", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47320", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the event was pretty large .", "storylet_id": "236604"}], [{"original_text": "Many young people attended the party.", "album_id": "158010", "photo_flickr_id": "6328546", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47321", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many young people attended the party .", "storylet_id": "236605"}], [{"original_text": "They posed for pictures.", "album_id": "158010", "photo_flickr_id": "6328551", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47321", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they posed for pictures .", "storylet_id": "236606"}], [{"original_text": "Some dressed up in costumes.", "album_id": "158010", "photo_flickr_id": "6328563", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47321", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some dressed up in costumes .", "storylet_id": "236607"}], [{"original_text": "Even Christmas sweaters made an appearance.", "album_id": "158010", "photo_flickr_id": "6328577", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47321", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even christmas sweaters made an appearance .", "storylet_id": "236608"}], [{"original_text": "The teens danced and had fun.", "album_id": "158010", "photo_flickr_id": "6328585", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47321", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the teens danced and had fun .", "storylet_id": "236609"}], [{"original_text": "Welcome to 80s' Night at the Beach Lounge Tori and Adam.", "album_id": "158010", "photo_flickr_id": "6328556", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "47322", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "welcome to 80s ' night at the organization organization organization and [male] .", "storylet_id": "236610"}], [{"original_text": "Tori and Adam dance with Jo Ellen.", "album_id": "158010", "photo_flickr_id": "6328554", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "47322", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] and [male] dance with [female] [female] .", "storylet_id": "236611"}], [{"original_text": "Jo Ellen is holding Adam up for the picture.", "album_id": "158010", "photo_flickr_id": "6328551", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "47322", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] [female] is holding [male] up for the picture .", "storylet_id": "236612"}], [{"original_text": "Robert and Callie look like they are having a good time.", "album_id": "158010", "photo_flickr_id": "6328582", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "47322", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and [female] look like they are having a good time .", "storylet_id": "236613"}], [{"original_text": "This is a great 80s' Night this year.", "album_id": "158010", "photo_flickr_id": "6328555", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "47322", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a great 80s ' night this year .", "storylet_id": "236614"}], [{"original_text": "When I got to the party everyone wanted my autograph.", "album_id": "158010", "photo_flickr_id": "6328556", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47323", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i got to the party everyone wanted my autograph .", "storylet_id": "236615"}], [{"original_text": "I was happy to take pictures with them all.", "album_id": "158010", "photo_flickr_id": "6328554", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47323", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was happy to take pictures with them all .", "storylet_id": "236616"}], [{"original_text": "I got to meet a lot of different people.", "album_id": "158010", "photo_flickr_id": "6328551", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47323", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got to meet a lot of different people .", "storylet_id": "236617"}], [{"original_text": "After a while I got tired and decided to head home.", "album_id": "158010", "photo_flickr_id": "6328582", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47323", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a while i got tired and decided to head home .", "storylet_id": "236618"}], [{"original_text": "It was a great party though.", "album_id": "158010", "photo_flickr_id": "6328555", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47323", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great party though .", "storylet_id": "236619"}], [{"original_text": "I wanted to do something different for my birthday so I convinced my firends to enter a dance contest with me.", "album_id": "158010", "photo_flickr_id": "6328546", "setting": "last-3-pick-old-and-tell", "worker_id": "5CDQKV6J4GD8A8B", "story_id": "47324", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i wanted to do something different for my birthday so i convinced my firends to enter a dance contest with me .", "storylet_id": "236620"}], [{"original_text": "Everyone had a good time goofing around, but they were not very good dancers.", "album_id": "158010", "photo_flickr_id": "6328551", "setting": "last-3-pick-old-and-tell", "worker_id": "5CDQKV6J4GD8A8B", "story_id": "47324", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone had a good time goofing around , but they were not very good dancers .", "storylet_id": "236621"}], [{"original_text": "These two got zero points on their first dance and were eliminated, but they stayed till the end.", "album_id": "158010", "photo_flickr_id": "6328563", "setting": "last-3-pick-old-and-tell", "worker_id": "5CDQKV6J4GD8A8B", "story_id": "47324", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these two got zero points on their first dance and were eliminated , but they stayed till the end .", "storylet_id": "236622"}], [{"original_text": "I couldn't believe it when I was eliminated, but it was still fun trying.", "album_id": "158010", "photo_flickr_id": "6328577", "setting": "last-3-pick-old-and-tell", "worker_id": "5CDQKV6J4GD8A8B", "story_id": "47324", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i could n't believe it when i was eliminated , but it was still fun trying .", "storylet_id": "236623"}], [{"original_text": "The winners were unknown to me, but you can see how well they were dancing.", "album_id": "158010", "photo_flickr_id": "6328585", "setting": "last-3-pick-old-and-tell", "worker_id": "5CDQKV6J4GD8A8B", "story_id": "47324", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the winners were unknown to me , but you can see how well they were dancing .", "storylet_id": "236624"}], [{"original_text": "The race line up started in the very early morning.", "album_id": "1220564", "photo_flickr_id": "56203891", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47325", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the race line up started in the very early morning .", "storylet_id": "236625"}], [{"original_text": "We git a good start.", "album_id": "1220564", "photo_flickr_id": "56203897", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47325", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we git a good start .", "storylet_id": "236626"}], [{"original_text": "There was a large crowd already.", "album_id": "1220564", "photo_flickr_id": "56203904", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47325", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a large crowd already .", "storylet_id": "236627"}], [{"original_text": "My favorite was running by the river.", "album_id": "1220564", "photo_flickr_id": "56203977", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47325", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my favorite was running by the river .", "storylet_id": "236628"}], [{"original_text": "I saw my friend at the finish line.", "album_id": "1220564", "photo_flickr_id": "56203988", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47325", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i saw my friend at the finish line .", "storylet_id": "236629"}], [{"original_text": "Before the sun set, we were preparing for our night 5K run.", "album_id": "1220564", "photo_flickr_id": "56203988", "setting": "first-2-pick-and-tell", "worker_id": "BLAC9RW2NNF51UN", "story_id": "47326", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before the sun set , we were preparing for our night 5k run .", "storylet_id": "236630"}], [{"original_text": "It did not take long before the streets were dark.", "album_id": "1220564", "photo_flickr_id": "56203867", "setting": "first-2-pick-and-tell", "worker_id": "BLAC9RW2NNF51UN", "story_id": "47326", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it did not take long before the streets were dark .", "storylet_id": "236631"}], [{"original_text": "Some of the racers were doing more chatting than racing.", "album_id": "1220564", "photo_flickr_id": "56203881", "setting": "first-2-pick-and-tell", "worker_id": "BLAC9RW2NNF51UN", "story_id": "47326", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the racers were doing more chatting than racing .", "storylet_id": "236632"}], [{"original_text": "The city was full of spectators, racers, and other people who were there to have a fun evening in the city.", "album_id": "1220564", "photo_flickr_id": "56203891", "setting": "first-2-pick-and-tell", "worker_id": "BLAC9RW2NNF51UN", "story_id": "47326", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the city was full of spectators , racers , and other people who were there to have a fun evening in the city .", "storylet_id": "236633"}], [{"original_text": "My favorite part of the evening was running through this section of crowded street while getting high fives as I passed by.", "album_id": "1220564", "photo_flickr_id": "56203904", "setting": "first-2-pick-and-tell", "worker_id": "BLAC9RW2NNF51UN", "story_id": "47326", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite part of the evening was running through this section of crowded street while getting high fives as i passed by .", "storylet_id": "236634"}], [{"original_text": "When I got to the race it was early morning and the runners were almost finished.", "album_id": "1220564", "photo_flickr_id": "56203891", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47327", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i got to the race it was early morning and the runners were almost finished .", "storylet_id": "236635"}], [{"original_text": "They were nearly at the finished line.", "album_id": "1220564", "photo_flickr_id": "56203897", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47327", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were nearly at the finished line .", "storylet_id": "236636"}], [{"original_text": "All of the people had come to see who the winner would be.", "album_id": "1220564", "photo_flickr_id": "56203904", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47327", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of the people had come to see who the winner would be .", "storylet_id": "236637"}], [{"original_text": "Eventually she came round the corner as the sun was rising and she finished the race.", "album_id": "1220564", "photo_flickr_id": "56203977", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47327", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "eventually she came round the corner as the sun was rising and she finished the race .", "storylet_id": "236638"}], [{"original_text": "She was very happy.", "album_id": "1220564", "photo_flickr_id": "56203988", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47327", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was very happy .", "storylet_id": "236639"}], [{"original_text": "We are here for a mother and daughter marathon run happening in the city tonight.", "album_id": "1220564", "photo_flickr_id": "56203988", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "47328", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are here for a mother and daughter marathon run happening in the city tonight .", "storylet_id": "236640"}], [{"original_text": "The city and sidewalks look like a blur when i am running.", "album_id": "1220564", "photo_flickr_id": "56203867", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "47328", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city and sidewalks look like a blur when i am running .", "storylet_id": "236641"}], [{"original_text": "Even the people are blurs as I run past them.", "album_id": "1220564", "photo_flickr_id": "56203881", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "47328", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the people are blurs as i run past them .", "storylet_id": "236642"}], [{"original_text": "Everyone who has finished the marathon already are gathered at the finishing line.", "album_id": "1220564", "photo_flickr_id": "56203891", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "47328", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone who has finished the marathon already are gathered at the finishing line .", "storylet_id": "236643"}], [{"original_text": "The runners who already finished are at the finish line to cheer on the other runners. ", "album_id": "1220564", "photo_flickr_id": "56203904", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "47328", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the runners who already finished are at the finish line to cheer on the other runners .", "storylet_id": "236644"}], [{"original_text": "the race went to darkness", "album_id": "1220564", "photo_flickr_id": "56203891", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47329", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the race went to darkness", "storylet_id": "236645"}], [{"original_text": "and people were still celebrating.", "album_id": "1220564", "photo_flickr_id": "56203897", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47329", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and people were still celebrating .", "storylet_id": "236646"}], [{"original_text": "Everyone managed to finish though", "album_id": "1220564", "photo_flickr_id": "56203904", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47329", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone managed to finish though", "storylet_id": "236647"}], [{"original_text": "and earlier it was rainy", "album_id": "1220564", "photo_flickr_id": "56203977", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47329", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and earlier it was rainy", "storylet_id": "236648"}], [{"original_text": "while the pictures were taken.", "album_id": "1220564", "photo_flickr_id": "56203988", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47329", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while the pictures were taken .", "storylet_id": "236649"}], [{"original_text": "It was the day of the big race.", "album_id": "1259235", "photo_flickr_id": "58186534", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "47330", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the day of the big race .", "storylet_id": "236650"}], [{"original_text": "Hundreds of people showed up in the city center to watch the runners.", "album_id": "1259235", "photo_flickr_id": "58186552", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "47330", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "hundreds of people showed up in the city center to watch the runners .", "storylet_id": "236651"}], [{"original_text": "The finish line had two red arches; people could see it from blocks away.", "album_id": "1259235", "photo_flickr_id": "58186678", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "47330", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the finish line had two red arches ; people could see it from blocks away .", "storylet_id": "236652"}], [{"original_text": "Other people lined up in the parking lot waiting for their runners to appear.", "album_id": "1259235", "photo_flickr_id": "58186694", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "47330", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other people lined up in the parking lot waiting for their runners to appear .", "storylet_id": "236653"}], [{"original_text": "One man decided to honor the veterans by taking his photo in front of the famous war scene. ", "album_id": "1259235", "photo_flickr_id": "58186514", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "47330", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one man decided to honor the veterans by taking his photo in front of the famous war scene .", "storylet_id": "236654"}], [{"original_text": "I spent the weekend at the pier.", "album_id": "1259235", "photo_flickr_id": "58186491", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47331", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spent the weekend at the pier .", "storylet_id": "236655"}], [{"original_text": "It was such a great day and the weather was perfect.", "album_id": "1259235", "photo_flickr_id": "58186507", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47331", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was such a great day and the weather was perfect .", "storylet_id": "236656"}], [{"original_text": "I saw a lot of the sights and sounds.", "album_id": "1259235", "photo_flickr_id": "58186534", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47331", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i saw a lot of the sights and sounds .", "storylet_id": "236657"}], [{"original_text": "The boardwalk was great and had a great trail.", "album_id": "1259235", "photo_flickr_id": "58186764", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47331", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boardwalk was great and had a great trail .", "storylet_id": "236658"}], [{"original_text": "The water looked so serine. ", "album_id": "1259235", "photo_flickr_id": "58186781", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47331", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the water looked so serine .", "storylet_id": "236659"}], [{"original_text": "The beach was a lot of fun. There was a marathon event going on.", "album_id": "1259235", "photo_flickr_id": "58186534", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47332", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beach was a lot of fun . there was a marathon event going on .", "storylet_id": "236660"}], [{"original_text": "I met some of the runners. They were very nice.", "album_id": "1259235", "photo_flickr_id": "58186552", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47332", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i met some of the runners . they were very nice .", "storylet_id": "236661"}], [{"original_text": "There were many people watching.", "album_id": "1259235", "photo_flickr_id": "58186678", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47332", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many people watching .", "storylet_id": "236662"}], [{"original_text": "Afterward there was a big parade.", "album_id": "1259235", "photo_flickr_id": "58186694", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47332", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward there was a big parade .", "storylet_id": "236663"}], [{"original_text": "I had a great time there.", "album_id": "1259235", "photo_flickr_id": "58186514", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47332", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time there .", "storylet_id": "236664"}], [{"original_text": "We went to the race to visit some friends.", "album_id": "1259235", "photo_flickr_id": "58186534", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47333", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the race to visit some friends .", "storylet_id": "236665"}], [{"original_text": "My best friend competed.", "album_id": "1259235", "photo_flickr_id": "58186552", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47333", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my best friend competed .", "storylet_id": "236666"}], [{"original_text": "The finish line was marked with balloons.", "album_id": "1259235", "photo_flickr_id": "58186678", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47333", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the finish line was marked with balloons .", "storylet_id": "236667"}], [{"original_text": "Military soldiers were there.", "album_id": "1259235", "photo_flickr_id": "58186694", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47333", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "military soldiers were there .", "storylet_id": "236668"}], [{"original_text": "The finish line was at a memorial.", "album_id": "1259235", "photo_flickr_id": "58186514", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47333", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finish line was at a memorial .", "storylet_id": "236669"}], [{"original_text": "People were finishing the race", "album_id": "1259235", "photo_flickr_id": "58186534", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47334", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people were finishing the race", "storylet_id": "236670"}], [{"original_text": "and the guy won the race.", "album_id": "1259235", "photo_flickr_id": "58186552", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47334", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the guy won the race .", "storylet_id": "236671"}], [{"original_text": "There was many spectators", "album_id": "1259235", "photo_flickr_id": "58186678", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47334", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was many spectators", "storylet_id": "236672"}], [{"original_text": "and even people outside the race.", "album_id": "1259235", "photo_flickr_id": "58186694", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47334", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and even people outside the race .", "storylet_id": "236673"}], [{"original_text": "It was a good day for a race.", "album_id": "1259235", "photo_flickr_id": "58186514", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47334", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a good day for a race .", "storylet_id": "236674"}], [{"original_text": "The front runners raced through the city.", "album_id": "1306323", "photo_flickr_id": "60461831", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47335", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the front runners raced through the city .", "storylet_id": "236675"}], [{"original_text": "Another group followed behind.", "album_id": "1306323", "photo_flickr_id": "60461920", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47335", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "another group followed behind .", "storylet_id": "236676"}], [{"original_text": "Some waved at supporters.", "album_id": "1306323", "photo_flickr_id": "60462302", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47335", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some waved at supporters .", "storylet_id": "236677"}], [{"original_text": "There were many participants in the race.", "album_id": "1306323", "photo_flickr_id": "60462630", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47335", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many participants in the race .", "storylet_id": "236678"}], [{"original_text": "Some had to walk to the finish line.", "album_id": "1306323", "photo_flickr_id": "60462951", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47335", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some had to walk to the finish line .", "storylet_id": "236679"}], [{"original_text": "Everyone was excited to watch the big race.", "album_id": "1306323", "photo_flickr_id": "60461920", "setting": "first-2-pick-and-tell", "worker_id": "3997WT1EFR51GVI", "story_id": "47336", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was excited to watch the big race .", "storylet_id": "236680"}], [{"original_text": "The runners were passing by adoring crowds.", "album_id": "1306323", "photo_flickr_id": "60462045", "setting": "first-2-pick-and-tell", "worker_id": "3997WT1EFR51GVI", "story_id": "47336", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the runners were passing by adoring crowds .", "storylet_id": "236681"}], [{"original_text": "One of the runners, Doug, waved at his mom as he ran by.", "album_id": "1306323", "photo_flickr_id": "60462161", "setting": "first-2-pick-and-tell", "worker_id": "3997WT1EFR51GVI", "story_id": "47336", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the runners , [male] , waved at his mom as he ran by .", "storylet_id": "236682"}], [{"original_text": "Doug was pretty popular, so he was waving at a lot of people along the route.", "album_id": "1306323", "photo_flickr_id": "60462302", "setting": "first-2-pick-and-tell", "worker_id": "3997WT1EFR51GVI", "story_id": "47336", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was pretty popular , so he was waving at a lot of people along the route .", "storylet_id": "236683"}], [{"original_text": "It seemed like everyone was having a good time at the race.", "album_id": "1306323", "photo_flickr_id": "60462384", "setting": "first-2-pick-and-tell", "worker_id": "3997WT1EFR51GVI", "story_id": "47336", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it seemed like everyone was having a good time at the race .", "storylet_id": "236684"}], [{"original_text": "The runners just began the race.", "album_id": "1306323", "photo_flickr_id": "60461831", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47337", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the runners just began the race .", "storylet_id": "236685"}], [{"original_text": "They were slowly taking off from the starting position.", "album_id": "1306323", "photo_flickr_id": "60461920", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47337", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were slowly taking off from the starting position .", "storylet_id": "236686"}], [{"original_text": "There were so many people running.", "album_id": "1306323", "photo_flickr_id": "60462302", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47337", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were so many people running .", "storylet_id": "236687"}], [{"original_text": "I watched them go by for a few minutes.", "album_id": "1306323", "photo_flickr_id": "60462630", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47337", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i watched them go by for a few minutes .", "storylet_id": "236688"}], [{"original_text": "After a while I left to find something to eat.", "album_id": "1306323", "photo_flickr_id": "60462951", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47337", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a while i left to find something to eat .", "storylet_id": "236689"}], [{"original_text": "It's a dead heat for first plce ", "album_id": "1306323", "photo_flickr_id": "60461831", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47338", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a dead heat for first plce", "storylet_id": "236690"}], [{"original_text": "and now the majority of the racers are coming across the line ", "album_id": "1306323", "photo_flickr_id": "60461920", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47338", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and now the majority of the racers are coming across the line", "storylet_id": "236691"}], [{"original_text": "it takes dedication to run a race ", "album_id": "1306323", "photo_flickr_id": "60462302", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47338", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it takes dedication to run a race", "storylet_id": "236692"}], [{"original_text": "all the crowds of people and the long track to run ", "album_id": "1306323", "photo_flickr_id": "60462630", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47338", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all the crowds of people and the long track to run", "storylet_id": "236693"}], [{"original_text": "but the cause makes it all worth while ", "album_id": "1306323", "photo_flickr_id": "60462951", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47338", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the cause makes it all worth while", "storylet_id": "236694"}], [{"original_text": "The race was coming to an end", "album_id": "1306323", "photo_flickr_id": "60461831", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47339", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the race was coming to an end", "storylet_id": "236695"}], [{"original_text": "and the people were running fast.", "album_id": "1306323", "photo_flickr_id": "60461920", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47339", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the people were running fast .", "storylet_id": "236696"}], [{"original_text": "The walkers were finishing too", "album_id": "1306323", "photo_flickr_id": "60462302", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47339", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the walkers were finishing too", "storylet_id": "236697"}], [{"original_text": "before they sped up", "album_id": "1306323", "photo_flickr_id": "60462630", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47339", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "before they sped up", "storylet_id": "236698"}], [{"original_text": "and finished the race too.", "album_id": "1306323", "photo_flickr_id": "60462951", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47339", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and finished the race too .", "storylet_id": "236699"}], [{"original_text": "We went to the airport.", "album_id": "72057594068659803", "photo_flickr_id": "93462522", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47340", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the airport .", "storylet_id": "236700"}], [{"original_text": "There was lots of waiting.", "album_id": "72057594068659803", "photo_flickr_id": "93462541", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47340", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was lots of waiting .", "storylet_id": "236701"}], [{"original_text": "Then we gave some hugs.", "album_id": "72057594068659803", "photo_flickr_id": "93462929", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47340", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we gave some hugs .", "storylet_id": "236702"}], [{"original_text": "The trip ended so fast.", "album_id": "72057594068659803", "photo_flickr_id": "93462947", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47340", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the trip ended so fast .", "storylet_id": "236703"}], [{"original_text": "Parting is such sweet sorrow.", "album_id": "72057594068659803", "photo_flickr_id": "93462972", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47340", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "parting is such sweet sorrow .", "storylet_id": "236704"}], [{"original_text": "The group of friends arrived early in the morning to relay race.", "album_id": "72057594068659803", "photo_flickr_id": "93462522", "setting": "first-2-pick-and-tell", "worker_id": "L8U5FFGVY6AJ10Q", "story_id": "47341", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group of friends arrived early in the morning to relay race .", "storylet_id": "236705"}], [{"original_text": "Groups of participants waited in line to get checked in.", "album_id": "72057594068659803", "photo_flickr_id": "93462558", "setting": "first-2-pick-and-tell", "worker_id": "L8U5FFGVY6AJ10Q", "story_id": "47341", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "groups of participants waited in line to get checked in .", "storylet_id": "236706"}], [{"original_text": "Next, the race finally began and the participants were off!", "album_id": "72057594068659803", "photo_flickr_id": "93462641", "setting": "first-2-pick-and-tell", "worker_id": "L8U5FFGVY6AJ10Q", "story_id": "47341", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next , the race finally began and the participants were off !", "storylet_id": "236707"}], [{"original_text": "5 miles later, the finish line was finally approaching.", "album_id": "72057594068659803", "photo_flickr_id": "93462845", "setting": "first-2-pick-and-tell", "worker_id": "L8U5FFGVY6AJ10Q", "story_id": "47341", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "5 miles later , the finish line was finally approaching .", "storylet_id": "236708"}], [{"original_text": "The group of friends took a picture after accomplishing their marathon! ", "album_id": "72057594068659803", "photo_flickr_id": "93462715", "setting": "first-2-pick-and-tell", "worker_id": "L8U5FFGVY6AJ10Q", "story_id": "47341", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the group of friends took a picture after accomplishing their marathon !", "storylet_id": "236709"}], [{"original_text": "When we got the airport it was very emotional.", "album_id": "72057594068659803", "photo_flickr_id": "93462522", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47342", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when we got the airport it was very emotional .", "storylet_id": "236710"}], [{"original_text": "We were very glad to see our family and friends after being away for so long.", "album_id": "72057594068659803", "photo_flickr_id": "93462541", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47342", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were very glad to see our family and friends after being away for so long .", "storylet_id": "236711"}], [{"original_text": "They were all happy to see us as well.", "album_id": "72057594068659803", "photo_flickr_id": "93462929", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47342", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were all happy to see us as well .", "storylet_id": "236712"}], [{"original_text": "It was a great day.", "album_id": "72057594068659803", "photo_flickr_id": "93462947", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47342", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a great day .", "storylet_id": "236713"}], [{"original_text": "Afterward we all grabbed everyone's luggage and went to a restaurant.", "album_id": "72057594068659803", "photo_flickr_id": "93462972", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47342", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we all grabbed everyone 's luggage and went to a restaurant .", "storylet_id": "236714"}], [{"original_text": "On the last day of the trip, everyone met at the airport to say goodbye.", "album_id": "72057594068659803", "photo_flickr_id": "93462522", "setting": "last-3-pick-old-and-tell", "worker_id": "RQ25RRST89HT6OO", "story_id": "47343", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on the last day of the trip , everyone met at the airport to say goodbye .", "storylet_id": "236715"}], [{"original_text": "There were silly poses.", "album_id": "72057594068659803", "photo_flickr_id": "93462541", "setting": "last-3-pick-old-and-tell", "worker_id": "RQ25RRST89HT6OO", "story_id": "47343", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were silly poses .", "storylet_id": "236716"}], [{"original_text": "There were sweet moments too.", "album_id": "72057594068659803", "photo_flickr_id": "93462929", "setting": "last-3-pick-old-and-tell", "worker_id": "RQ25RRST89HT6OO", "story_id": "47343", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were sweet moments too .", "storylet_id": "236717"}], [{"original_text": "Someone snapped a quick picture of mom.", "album_id": "72057594068659803", "photo_flickr_id": "93462947", "setting": "last-3-pick-old-and-tell", "worker_id": "RQ25RRST89HT6OO", "story_id": "47343", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someone snapped a quick picture of mom .", "storylet_id": "236718"}], [{"original_text": "And then finally, the goodbye hugs before taking the escalator to the terminal.", "album_id": "72057594068659803", "photo_flickr_id": "93462972", "setting": "last-3-pick-old-and-tell", "worker_id": "RQ25RRST89HT6OO", "story_id": "47343", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then finally , the goodbye hugs before taking the escalator to the terminal .", "storylet_id": "236719"}], [{"original_text": "There was a fun time at the airport.", "album_id": "72057594068659803", "photo_flickr_id": "93462522", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47344", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a fun time at the airport .", "storylet_id": "236720"}], [{"original_text": "People were dancing", "album_id": "72057594068659803", "photo_flickr_id": "93462541", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47344", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people were dancing", "storylet_id": "236721"}], [{"original_text": "and taking photos of themselves", "album_id": "72057594068659803", "photo_flickr_id": "93462929", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47344", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and taking photos of themselves", "storylet_id": "236722"}], [{"original_text": "as well as random people.", "album_id": "72057594068659803", "photo_flickr_id": "93462947", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47344", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as well as random people .", "storylet_id": "236723"}], [{"original_text": "People were greeting others as well.", "album_id": "72057594068659803", "photo_flickr_id": "93462972", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47344", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people were greeting others as well .", "storylet_id": "236724"}], [{"original_text": "Looks like it's race day.", "album_id": "72057594088507493", "photo_flickr_id": "116534546", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47345", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "looks like it 's race day .", "storylet_id": "236725"}], [{"original_text": "Good luck Trent.", "album_id": "72057594088507493", "photo_flickr_id": "116534722", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47345", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "good luck [male] .", "storylet_id": "236726"}], [{"original_text": "Go Trent Go!", "album_id": "72057594088507493", "photo_flickr_id": "116534958", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47345", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "go [male] go !", "storylet_id": "236727"}], [{"original_text": "Even the dog came.", "album_id": "72057594088507493", "photo_flickr_id": "116535063", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47345", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the dog came .", "storylet_id": "236728"}], [{"original_text": "And this guy was signing autographs!", "album_id": "72057594088507493", "photo_flickr_id": "116535114", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47345", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and this guy was signing autographs !", "storylet_id": "236729"}], [{"original_text": "Today was the day of the big race!", "album_id": "72057594088507493", "photo_flickr_id": "116534546", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47346", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day of the big race !", "storylet_id": "236730"}], [{"original_text": "We were all too excited to run.", "album_id": "72057594088507493", "photo_flickr_id": "116534613", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47346", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were all too excited to run .", "storylet_id": "236731"}], [{"original_text": "Here we are getting warmed up.", "album_id": "72057594088507493", "photo_flickr_id": "116534653", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47346", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here we are getting warmed up .", "storylet_id": "236732"}], [{"original_text": "MY cheer team was ready to go.", "album_id": "72057594088507493", "photo_flickr_id": "116534722", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47346", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my cheer team was ready to go .", "storylet_id": "236733"}], [{"original_text": "It was a fun race and I even got a medal!", "album_id": "72057594088507493", "photo_flickr_id": "116534775", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47346", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a fun race and i even got a medal !", "storylet_id": "236734"}], [{"original_text": "When I got to the end of the race I saw my entire family there supporting me.", "album_id": "72057594088507493", "photo_flickr_id": "116534546", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47347", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i got to the end of the race i saw my entire family there supporting me .", "storylet_id": "236735"}], [{"original_text": "They made many signs for me.", "album_id": "72057594088507493", "photo_flickr_id": "116534722", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47347", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they made many signs for me .", "storylet_id": "236736"}], [{"original_text": "I am so happy they were there.", "album_id": "72057594088507493", "photo_flickr_id": "116534958", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47347", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i am so happy they were there .", "storylet_id": "236737"}], [{"original_text": "They even bought me a dog.", "album_id": "72057594088507493", "photo_flickr_id": "116535063", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47347", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even bought me a dog .", "storylet_id": "236738"}], [{"original_text": "It was a great day.", "album_id": "72057594088507493", "photo_flickr_id": "116535114", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47347", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great day .", "storylet_id": "236739"}], [{"original_text": "There are many runners today in the 5K.", "album_id": "72057594088507493", "photo_flickr_id": "116534546", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "47348", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are many runners today in the 5k .", "storylet_id": "236740"}], [{"original_text": "The runners are all doing their best to finish with their best time.", "album_id": "72057594088507493", "photo_flickr_id": "116534613", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "47348", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the runners are all doing their best to finish with their best time .", "storylet_id": "236741"}], [{"original_text": "Some families who are running together wore the same colored shirts.", "album_id": "72057594088507493", "photo_flickr_id": "116534653", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "47348", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some families who are running together wore the same colored shirts .", "storylet_id": "236742"}], [{"original_text": "Supporters are lined along the streets to cheer on their loved ones.", "album_id": "72057594088507493", "photo_flickr_id": "116534722", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "47348", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "supporters are lined along the streets to cheer on their loved ones .", "storylet_id": "236743"}], [{"original_text": "The winner of the 5K poses for pictures with supporters. ", "album_id": "72057594088507493", "photo_flickr_id": "116534775", "setting": "last-3-pick-old-and-tell", "worker_id": "VJDODPHXRELUBJL", "story_id": "47348", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the winner of the 5k poses for pictures with supporters .", "storylet_id": "236744"}], [{"original_text": "There were many people in the race", "album_id": "72057594088507493", "photo_flickr_id": "116534546", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47349", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many people in the race", "storylet_id": "236745"}], [{"original_text": "and they were struggling to finish. ", "album_id": "72057594088507493", "photo_flickr_id": "116534613", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47349", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and they were struggling to finish .", "storylet_id": "236746"}], [{"original_text": "They finally did though", "album_id": "72057594088507493", "photo_flickr_id": "116534653", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47349", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they finally did though", "storylet_id": "236747"}], [{"original_text": "with all the support", "album_id": "72057594088507493", "photo_flickr_id": "116534722", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47349", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with all the support", "storylet_id": "236748"}], [{"original_text": "and took awesome photos.", "album_id": "72057594088507493", "photo_flickr_id": "116534775", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47349", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and took awesome photos .", "storylet_id": "236749"}], [{"original_text": "The party got really weird last night.", "album_id": "72057594094119797", "photo_flickr_id": "119978654", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47350", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party got really weird last night .", "storylet_id": "236750"}], [{"original_text": "The girls were showing off their tatoos.", "album_id": "72057594094119797", "photo_flickr_id": "120161506", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47350", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girls were showing off their tatoos .", "storylet_id": "236751"}], [{"original_text": "The guys played some version of a twister game.", "album_id": "72057594094119797", "photo_flickr_id": "120169379", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47350", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guys played some version of a twister game .", "storylet_id": "236752"}], [{"original_text": "I'm not sure what happened to the girls after the party.", "album_id": "72057594094119797", "photo_flickr_id": "120171258", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47350", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'm not sure what happened to the girls after the party .", "storylet_id": "236753"}], [{"original_text": "He might know the answer to that.", "album_id": "72057594094119797", "photo_flickr_id": "120172627", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47350", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he might know the answer to that .", "storylet_id": "236754"}], [{"original_text": "I decided to hang out with a good friend.", "album_id": "72057594094119797", "photo_flickr_id": "119978655", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47351", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to hang out with a good friend .", "storylet_id": "236755"}], [{"original_text": "We also invited some other friends over.", "album_id": "72057594094119797", "photo_flickr_id": "119978654", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47351", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we also invited some other friends over .", "storylet_id": "236756"}], [{"original_text": "We are very close, best friends since high school.", "album_id": "72057594094119797", "photo_flickr_id": "120161508", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47351", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are very close , best friends since high school .", "storylet_id": "236757"}], [{"original_text": "Here is my girlfriend showing me who's boss.", "album_id": "72057594094119797", "photo_flickr_id": "120169677", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47351", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is my girlfriend showing me who 's boss .", "storylet_id": "236758"}], [{"original_text": "It was a very fun night and full of laughter. ", "album_id": "72057594094119797", "photo_flickr_id": "120172064", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47351", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a very fun night and full of laughter .", "storylet_id": "236759"}], [{"original_text": "I had a great time at the house party yesterday.", "album_id": "72057594094119797", "photo_flickr_id": "119978654", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47352", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the house party yesterday .", "storylet_id": "236760"}], [{"original_text": "Some people showed me their cool tattoos.", "album_id": "72057594094119797", "photo_flickr_id": "120161506", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47352", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some people showed me their cool tattoos .", "storylet_id": "236761"}], [{"original_text": "Everyone was laughing.", "album_id": "72057594094119797", "photo_flickr_id": "120169379", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47352", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was laughing .", "storylet_id": "236762"}], [{"original_text": "Some people had fallen asleep.", "album_id": "72057594094119797", "photo_flickr_id": "120171258", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47352", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people had fallen asleep .", "storylet_id": "236763"}], [{"original_text": "After a few hours I decided to leave because I had work in the morning.", "album_id": "72057594094119797", "photo_flickr_id": "120172627", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47352", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a few hours i decided to leave because i had work in the morning .", "storylet_id": "236764"}], [{"original_text": "Today i had a bunch of friends over for a party.", "album_id": "72057594094119797", "photo_flickr_id": "119978655", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "47353", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i had a bunch of friends over for a party .", "storylet_id": "236765"}], [{"original_text": "They are such an entertaining bunch when we all get together.", "album_id": "72057594094119797", "photo_flickr_id": "119978654", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "47353", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are such an entertaining bunch when we all get together .", "storylet_id": "236766"}], [{"original_text": "I even had over some old friends I haven't seen in a very long time.", "album_id": "72057594094119797", "photo_flickr_id": "120161508", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "47353", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i even had over some old friends i have n't seen in a very long time .", "storylet_id": "236767"}], [{"original_text": "We all had such a good time goofing around.", "album_id": "72057594094119797", "photo_flickr_id": "120169677", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "47353", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all had such a good time goofing around .", "storylet_id": "236768"}], [{"original_text": "Everyone raise a hand is ready for the next party!", "album_id": "72057594094119797", "photo_flickr_id": "120172064", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "47353", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone raise a hand is ready for the next party !", "storylet_id": "236769"}], [{"original_text": "There were many funs times at the party", "album_id": "72057594094119797", "photo_flickr_id": "119978654", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47354", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many funs times at the party", "storylet_id": "236770"}], [{"original_text": "and tattoos were shown off.", "album_id": "72057594094119797", "photo_flickr_id": "120161506", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47354", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and tattoos were shown off .", "storylet_id": "236771"}], [{"original_text": "Then they laid down", "album_id": "72057594094119797", "photo_flickr_id": "120169379", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47354", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they laid down", "storylet_id": "236772"}], [{"original_text": "and took photos drunk", "album_id": "72057594094119797", "photo_flickr_id": "120171258", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47354", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and took photos drunk", "storylet_id": "236773"}], [{"original_text": "before they did not know what to think.", "album_id": "72057594094119797", "photo_flickr_id": "120172627", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47354", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before they did not know what to think .", "storylet_id": "236774"}], [{"original_text": "I was getting ready for a big concert.", "album_id": "72057594115071974", "photo_flickr_id": "133705203", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47355", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was getting ready for a big concert .", "storylet_id": "236775"}], [{"original_text": "We were playing outdoors.", "album_id": "72057594115071974", "photo_flickr_id": "133705423", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47355", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were playing outdoors .", "storylet_id": "236776"}], [{"original_text": "My bandmates and I were so excited.", "album_id": "72057594115071974", "photo_flickr_id": "133705615", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47355", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my bandmates and i were so excited .", "storylet_id": "236777"}], [{"original_text": "We had a great show and wanted to celebrate.", "album_id": "72057594115071974", "photo_flickr_id": "133706013", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47355", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a great show and wanted to celebrate .", "storylet_id": "236778"}], [{"original_text": "Smoking a cigratte hit the spot!", "album_id": "72057594115071974", "photo_flickr_id": "133706497", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47355", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "smoking a cigratte hit the spot !", "storylet_id": "236779"}], [{"original_text": "First, we grabbed a quick bite to eat. ", "album_id": "72057594115071974", "photo_flickr_id": "133707242", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "47356", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "first , we grabbed a quick bite to eat .", "storylet_id": "236780"}], [{"original_text": "Then we walked around the market place.", "album_id": "72057594115071974", "photo_flickr_id": "133707665", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "47356", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we walked around the market place .", "storylet_id": "236781"}], [{"original_text": "Next we joined other spectators to watch the runners.", "album_id": "72057594115071974", "photo_flickr_id": "133707884", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "47356", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next we joined other spectators to watch the runners .", "storylet_id": "236782"}], [{"original_text": "Soon, the runners passed by us.", "album_id": "72057594115071974", "photo_flickr_id": "133708572", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "47356", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "soon , the runners passed by us .", "storylet_id": "236783"}], [{"original_text": "That night, we enjoyed some street performers.", "album_id": "72057594115071974", "photo_flickr_id": "133705423", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "47356", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that night , we enjoyed some street performers .", "storylet_id": "236784"}], [{"original_text": "Johnny was nervous to before performing on stage.", "album_id": "72057594115071974", "photo_flickr_id": "133705203", "setting": "last-3-pick-old-and-tell", "worker_id": "KKR3VVKPOGEK6I0", "story_id": "47357", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was nervous to before performing on stage .", "storylet_id": "236785"}], [{"original_text": "During his performance, he mostly looked down at his guitar.", "album_id": "72057594115071974", "photo_flickr_id": "133705423", "setting": "last-3-pick-old-and-tell", "worker_id": "KKR3VVKPOGEK6I0", "story_id": "47357", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "during his performance , he mostly looked down at his guitar .", "storylet_id": "236786"}], [{"original_text": "One fan, Carl, watches intently.", "album_id": "72057594115071974", "photo_flickr_id": "133705615", "setting": "last-3-pick-old-and-tell", "worker_id": "KKR3VVKPOGEK6I0", "story_id": "47357", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one fan , [male] , watches intently .", "storylet_id": "236787"}], [{"original_text": "After the show, Carl and Johnny have a drink together.", "album_id": "72057594115071974", "photo_flickr_id": "133706013", "setting": "last-3-pick-old-and-tell", "worker_id": "KKR3VVKPOGEK6I0", "story_id": "47357", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the show , [male] and [male] have a drink together .", "storylet_id": "236788"}], [{"original_text": "They decide to go out on the balcony and smoke.", "album_id": "72057594115071974", "photo_flickr_id": "133706497", "setting": "last-3-pick-old-and-tell", "worker_id": "KKR3VVKPOGEK6I0", "story_id": "47357", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they decide to go out on the balcony and smoke .", "storylet_id": "236789"}], [{"original_text": "I practiced playing my guitar for hours before I had to leave for the performance.", "album_id": "72057594115071974", "photo_flickr_id": "133705203", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47358", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i practiced playing my guitar for hours before i had to leave for the performance .", "storylet_id": "236790"}], [{"original_text": "When I got there my band was already setting up.", "album_id": "72057594115071974", "photo_flickr_id": "133705423", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47358", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when i got there my band was already setting up .", "storylet_id": "236791"}], [{"original_text": "Everyone was there to see us.", "album_id": "72057594115071974", "photo_flickr_id": "133705615", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47358", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was there to see us .", "storylet_id": "236792"}], [{"original_text": "I set it up and they watched us play.", "album_id": "72057594115071974", "photo_flickr_id": "133706013", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47358", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i set it up and they watched us play .", "storylet_id": "236793"}], [{"original_text": "We were very good and everyone gave us cigarettes afterward.", "album_id": "72057594115071974", "photo_flickr_id": "133706497", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47358", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were very good and everyone gave us cigarettes afterward .", "storylet_id": "236794"}], [{"original_text": "The guy was practicing guitar", "album_id": "72057594115071974", "photo_flickr_id": "133705203", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47359", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guy was practicing guitar", "storylet_id": "236795"}], [{"original_text": "before his concert.", "album_id": "72057594115071974", "photo_flickr_id": "133705423", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47359", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before his concert .", "storylet_id": "236796"}], [{"original_text": "Many attended", "album_id": "72057594115071974", "photo_flickr_id": "133705615", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47359", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many attended", "storylet_id": "236797"}], [{"original_text": "and even smoked inside, ", "album_id": "72057594115071974", "photo_flickr_id": "133706013", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47359", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and even smoked inside ,", "storylet_id": "236798"}], [{"original_text": "as well as outside.", "album_id": "72057594115071974", "photo_flickr_id": "133706497", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47359", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as well as outside .", "storylet_id": "236799"}], [{"original_text": "A beautiful square to take a rest if you don't mind the birds.", "album_id": "202700", "photo_flickr_id": "8138855", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47360", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a beautiful square to take a rest if you do n't mind the birds .", "storylet_id": "236800"}], [{"original_text": "These waterways are used to get around the city.", "album_id": "202700", "photo_flickr_id": "8139397", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47360", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these waterways are used to get around the city .", "storylet_id": "236801"}], [{"original_text": "The churches and artwork are outstanding.", "album_id": "202700", "photo_flickr_id": "8139988", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47360", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the churches and artwork are outstanding .", "storylet_id": "236802"}], [{"original_text": "There are lots of places to sit down and grab a bite to eat.", "album_id": "202700", "photo_flickr_id": "8140630", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47360", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are lots of places to sit down and grab a bite to eat .", "storylet_id": "236803"}], [{"original_text": "You can, also, pick up fresh produce on any corner.", "album_id": "202700", "photo_flickr_id": "8140629", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47360", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you can , also , pick up fresh produce on any corner .", "storylet_id": "236804"}], [{"original_text": "Venice! This is where we stayed. Not sure I could get used to living on water.", "album_id": "202700", "photo_flickr_id": "8139399", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47361", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location ! this is where we stayed . not sure i could get used to living on water .", "storylet_id": "236805"}], [{"original_text": "We took a gondola ride, and he even sang to us.", "album_id": "202700", "photo_flickr_id": "8139398", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47361", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a gondola ride , and he even sang to us .", "storylet_id": "236806"}], [{"original_text": "Creepy, narrow alleyway. Not going down there.", "album_id": "202700", "photo_flickr_id": "8138852", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47361", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "creepy , narrow alleyway . not going down there .", "storylet_id": "236807"}], [{"original_text": "Time for lunch. It's nice eating outside except for the birds.", "album_id": "202700", "photo_flickr_id": "8139989", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47361", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "time for lunch . it 's nice eating outside except for the birds .", "storylet_id": "236808"}], [{"original_text": "Even the fresh produce is on boats. Just too weird.", "album_id": "202700", "photo_flickr_id": "8140629", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47361", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the fresh produce is on boats . just too weird .", "storylet_id": "236809"}], [{"original_text": "Many birds were present in the inner city. The family took a picture of all the birds. ", "album_id": "202700", "photo_flickr_id": "8138855", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47362", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many birds were present in the inner city . the family took a picture of all the birds .", "storylet_id": "236810"}], [{"original_text": "The family walked towards the center of the city in search of riding a gondola. ", "album_id": "202700", "photo_flickr_id": "8139397", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47362", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family walked towards the center of the city in search of riding a gondola .", "storylet_id": "236811"}], [{"original_text": "After riding a gondola, we decided to visit a cathedral.", "album_id": "202700", "photo_flickr_id": "8139988", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47362", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after riding a gondola , we decided to visit a cathedral .", "storylet_id": "236812"}], [{"original_text": "We were beginning to get hungry. The table in the middle is where we decided to eat. ", "album_id": "202700", "photo_flickr_id": "8140630", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47362", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were beginning to get hungry . the table in the middle is where we decided to eat .", "storylet_id": "236813"}], [{"original_text": "The family tried fresh fruit. Most of the fruit was bought at these little merchant stands throughout the city.", "album_id": "202700", "photo_flickr_id": "8140629", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47362", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family tried fresh fruit . most of the fruit was bought at these little merchant stands throughout the city .", "storylet_id": "236814"}], [{"original_text": "Venice is a wonderful city for tourists -- and pigeons, too!", "album_id": "202700", "photo_flickr_id": "8138855", "setting": "last-3-pick-old-and-tell", "worker_id": "65C8AN1T35LNZDJ", "story_id": "47363", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location is a wonderful city for tourists -- and pigeons , too !", "storylet_id": "236815"}], [{"original_text": "The famous canals, and the gondolas and barges that travel on them, are the first things everyone wants to see.", "album_id": "202700", "photo_flickr_id": "8139397", "setting": "last-3-pick-old-and-tell", "worker_id": "65C8AN1T35LNZDJ", "story_id": "47363", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the famous canals , and the gondolas and barges that travel on them , are the first things everyone wants to see .", "storylet_id": "236816"}], [{"original_text": "Take the time to explore the magnificent old churches, and you'll be amazed by beautiful frescoes like this one.", "album_id": "202700", "photo_flickr_id": "8139988", "setting": "last-3-pick-old-and-tell", "worker_id": "65C8AN1T35LNZDJ", "story_id": "47363", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "take the time to explore the magnificent old churches , and you 'll be amazed by beautiful frescoes like this one .", "storylet_id": "236817"}], [{"original_text": "You're never far from a pleasant cafe where you can relax with a snack and some espresso, or a glass of wine.", "album_id": "202700", "photo_flickr_id": "8140630", "setting": "last-3-pick-old-and-tell", "worker_id": "65C8AN1T35LNZDJ", "story_id": "47363", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you 're never far from a pleasant cafe where you can relax with a snack and some espresso , or a glass of wine .", "storylet_id": "236818"}], [{"original_text": "Shopping is a delightful adventure here too -- you'll find everything from fine jewelry to delicious fresh produce!", "album_id": "202700", "photo_flickr_id": "8140629", "setting": "last-3-pick-old-and-tell", "worker_id": "65C8AN1T35LNZDJ", "story_id": "47363", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "shopping is a delightful adventure here too -- you 'll find everything from fine jewelry to delicious fresh produce !", "storylet_id": "236819"}], [{"original_text": "The building was looking very nice", "album_id": "202700", "photo_flickr_id": "8139399", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47364", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the building was looking very nice", "storylet_id": "236820"}], [{"original_text": "when the canal boat took off.", "album_id": "202700", "photo_flickr_id": "8139398", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47364", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when the canal boat took off .", "storylet_id": "236821"}], [{"original_text": "The people saw an alley too", "album_id": "202700", "photo_flickr_id": "8138852", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47364", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people saw an alley too", "storylet_id": "236822"}], [{"original_text": "before going back to the square ", "album_id": "202700", "photo_flickr_id": "8139989", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47364", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "before going back to the square", "storylet_id": "236823"}], [{"original_text": "and visiting the market.", "album_id": "202700", "photo_flickr_id": "8140629", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47364", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and visiting the market .", "storylet_id": "236824"}], [{"original_text": "I take boring pictures.", "album_id": "287464", "photo_flickr_id": "11716483", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47365", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i take boring pictures .", "storylet_id": "236825"}], [{"original_text": "Here is my clock.", "album_id": "287464", "photo_flickr_id": "11717916", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47365", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is my clock .", "storylet_id": "236826"}], [{"original_text": "Here is my coffee.", "album_id": "287464", "photo_flickr_id": "11792880", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47365", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is my coffee .", "storylet_id": "236827"}], [{"original_text": "Here's a book I saw.", "album_id": "287464", "photo_flickr_id": "11832726", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47365", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's a book i saw .", "storylet_id": "236828"}], [{"original_text": "I need to get out more.", "album_id": "287464", "photo_flickr_id": "11897971", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47365", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i need to get out more .", "storylet_id": "236829"}], [{"original_text": "Started the day with the news.", "album_id": "287464", "photo_flickr_id": "11716483", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47366", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "started the day with the news .", "storylet_id": "236830"}], [{"original_text": "Looked at the clock and woke up.", "album_id": "287464", "photo_flickr_id": "11717916", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47366", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "looked at the clock and woke up .", "storylet_id": "236831"}], [{"original_text": "Had to get the coffee going.", "album_id": "287464", "photo_flickr_id": "11792880", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47366", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "had to get the coffee going .", "storylet_id": "236832"}], [{"original_text": "I wanted to get my swim in.", "album_id": "287464", "photo_flickr_id": "11897968", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47366", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i wanted to get my swim in .", "storylet_id": "236833"}], [{"original_text": "I ended the day with light reading material.", "album_id": "287464", "photo_flickr_id": "11832726", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47366", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ended the day with light reading material .", "storylet_id": "236834"}], [{"original_text": "The family is in the room together watching the sports game.", "album_id": "287464", "photo_flickr_id": "11716483", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47367", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family is in the room together watching the sports game .", "storylet_id": "236835"}], [{"original_text": "The D.V.R. is ready to play the movie.", "album_id": "287464", "photo_flickr_id": "11717916", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47367", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the d.v.r . is ready to play the movie .", "storylet_id": "236836"}], [{"original_text": "They're cooking for the famiy", "album_id": "287464", "photo_flickr_id": "11792880", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47367", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they 're cooking for the famiy", "storylet_id": "236837"}], [{"original_text": "This is the family's favorite book Samurai Executioner", "album_id": "287464", "photo_flickr_id": "11832726", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47367", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the family 's favorite book samurai executioner", "storylet_id": "236838"}], [{"original_text": "The set for the the show is being set up.", "album_id": "287464", "photo_flickr_id": "11897971", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47367", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the set for the the show is being set up .", "storylet_id": "236839"}], [{"original_text": "He watched the news on the television.", "album_id": "287464", "photo_flickr_id": "11716483", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47368", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he watched the news on the television .", "storylet_id": "236840"}], [{"original_text": "He decided to DVR it for later. ", "album_id": "287464", "photo_flickr_id": "11717916", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47368", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he decided to dvr it for later .", "storylet_id": "236841"}], [{"original_text": "He got up and made the coffee. ", "album_id": "287464", "photo_flickr_id": "11792880", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47368", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he got up and made the coffee .", "storylet_id": "236842"}], [{"original_text": "He grabbed his book just before leaving. ", "album_id": "287464", "photo_flickr_id": "11832726", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47368", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he grabbed his book just before leaving .", "storylet_id": "236843"}], [{"original_text": "As he walked he noticed scaffolding had been erected but he wasn't sure why. ", "album_id": "287464", "photo_flickr_id": "11897971", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47368", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as he walked he noticed scaffolding had been erected but he was n't sure why .", "storylet_id": "236844"}], [{"original_text": "The tv show was interesting", "album_id": "287464", "photo_flickr_id": "11716483", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47369", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tv show was interesting", "storylet_id": "236845"}], [{"original_text": "so the person changed the channel", "album_id": "287464", "photo_flickr_id": "11717916", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47369", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so the person changed the channel", "storylet_id": "236846"}], [{"original_text": "before they made coffee.", "album_id": "287464", "photo_flickr_id": "11792880", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47369", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "before they made coffee .", "storylet_id": "236847"}], [{"original_text": "Then they wanted to read ", "album_id": "287464", "photo_flickr_id": "11832726", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47369", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they wanted to read", "storylet_id": "236848"}], [{"original_text": "outside near the powerplant.", "album_id": "287464", "photo_flickr_id": "11897971", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47369", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "outside near the powerplant .", "storylet_id": "236849"}], [{"original_text": "This is a picture of my trip to Greece.", "album_id": "72157603348987515", "photo_flickr_id": "2078153417", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47370", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of my trip to location .", "storylet_id": "236850"}], [{"original_text": "They were some great views there.", "album_id": "72157603348987515", "photo_flickr_id": "2078943824", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47370", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were some great views there .", "storylet_id": "236851"}], [{"original_text": "The city was wide open and so many people around there.", "album_id": "72157603348987515", "photo_flickr_id": "2078944562", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47370", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the city was wide open and so many people around there .", "storylet_id": "236852"}], [{"original_text": "I was not afraid of heights at least!", "album_id": "72157603348987515", "photo_flickr_id": "2078155597", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47370", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was not afraid of heights at least !", "storylet_id": "236853"}], [{"original_text": "The views were so amazing, I can't wait to go back next year.", "album_id": "72157603348987515", "photo_flickr_id": "2078946160", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47370", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the views were so amazing , i ca n't wait to go back next year .", "storylet_id": "236854"}], [{"original_text": "Our vacation to Europe was fabulous.", "album_id": "72157603348987515", "photo_flickr_id": "2078943824", "setting": "first-2-pick-and-tell", "worker_id": "BLAC9RW2NNF51UN", "story_id": "47371", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our vacation to location was fabulous .", "storylet_id": "236855"}], [{"original_text": "We toured many places and saw this interesting church bell.", "album_id": "72157603348987515", "photo_flickr_id": "2078153417", "setting": "first-2-pick-and-tell", "worker_id": "BLAC9RW2NNF51UN", "story_id": "47371", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we toured many places and saw this interesting church bell .", "storylet_id": "236856"}], [{"original_text": "This is a view from atop the bell tower.", "album_id": "72157603348987515", "photo_flickr_id": "2078155597", "setting": "first-2-pick-and-tell", "worker_id": "BLAC9RW2NNF51UN", "story_id": "47371", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a view from atop the bell tower .", "storylet_id": "236857"}], [{"original_text": "Inside the church were many ornate objects.", "album_id": "72157603348987515", "photo_flickr_id": "2078947746", "setting": "first-2-pick-and-tell", "worker_id": "BLAC9RW2NNF51UN", "story_id": "47371", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "inside the church were many ornate objects .", "storylet_id": "236858"}], [{"original_text": "On our way out, we noticed this statue.", "album_id": "72157603348987515", "photo_flickr_id": "2078948442", "setting": "first-2-pick-and-tell", "worker_id": "BLAC9RW2NNF51UN", "story_id": "47371", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on our way out , we noticed this statue .", "storylet_id": "236859"}], [{"original_text": "We visited a historic town today.", "album_id": "72157603348987515", "photo_flickr_id": "2078943824", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47372", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited a historic town today .", "storylet_id": "236860"}], [{"original_text": "Here is one of the older bells they rang there.", "album_id": "72157603348987515", "photo_flickr_id": "2078153417", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47372", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is one of the older bells they rang there .", "storylet_id": "236861"}], [{"original_text": "The roofs of the houses here were so unique.", "album_id": "72157603348987515", "photo_flickr_id": "2078155597", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47372", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the roofs of the houses here were so unique .", "storylet_id": "236862"}], [{"original_text": "Here is a shrine that was in one of the tourist buildings.", "album_id": "72157603348987515", "photo_flickr_id": "2078947746", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47372", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is a shrine that was in one of the tourist buildings .", "storylet_id": "236863"}], [{"original_text": "At night, we visited a pillar.", "album_id": "72157603348987515", "photo_flickr_id": "2078948442", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47372", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night , we visited a pillar .", "storylet_id": "236864"}], [{"original_text": "When I went on vacation last week I had a great time.", "album_id": "72157603348987515", "photo_flickr_id": "2078943824", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47373", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i went on vacation last week i had a great time .", "storylet_id": "236865"}], [{"original_text": "There were many old places to see.", "album_id": "72157603348987515", "photo_flickr_id": "2078153417", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47373", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many old places to see .", "storylet_id": "236866"}], [{"original_text": "A lot of the buildings were built a long time ago.", "album_id": "72157603348987515", "photo_flickr_id": "2078155597", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47373", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lot of the buildings were built a long time ago .", "storylet_id": "236867"}], [{"original_text": "There was so much unique furniture.", "album_id": "72157603348987515", "photo_flickr_id": "2078947746", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47373", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was so much unique furniture .", "storylet_id": "236868"}], [{"original_text": "I had a great time there.", "album_id": "72157603348987515", "photo_flickr_id": "2078948442", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47373", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time there .", "storylet_id": "236869"}], [{"original_text": "The bell was old but not rusty", "album_id": "72157603348987515", "photo_flickr_id": "2078153417", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47374", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bell was old but not rusty", "storylet_id": "236870"}], [{"original_text": "and it was in the tall tower.", "album_id": "72157603348987515", "photo_flickr_id": "2078943824", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47374", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and it was in the tall tower .", "storylet_id": "236871"}], [{"original_text": "The shops were outside the tower", "album_id": "72157603348987515", "photo_flickr_id": "2078944562", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47374", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the shops were outside the tower", "storylet_id": "236872"}], [{"original_text": "and the buildings were even connected", "album_id": "72157603348987515", "photo_flickr_id": "2078155597", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47374", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the buildings were even connected", "storylet_id": "236873"}], [{"original_text": "in the city with the orange roofs.", "album_id": "72157603348987515", "photo_flickr_id": "2078946160", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47374", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the city with the orange roofs .", "storylet_id": "236874"}], [{"original_text": "When we were in Thailand we got to go to the local farmer's market.", "album_id": "72157603352064009", "photo_flickr_id": "2079837028", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "47375", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when we were in location we got to go to the local farmer 's market .", "storylet_id": "236875"}], [{"original_text": "There were many local farmers selling all sorts or fruits and vegetables.", "album_id": "72157603352064009", "photo_flickr_id": "2079054475", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "47375", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many local farmers selling all sorts or fruits and vegetables .", "storylet_id": "236876"}], [{"original_text": "Some vendors had meats and cheeses and fresh fish.", "album_id": "72157603352064009", "photo_flickr_id": "2079055049", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "47375", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some vendors had meats and cheeses and fresh fish .", "storylet_id": "236877"}], [{"original_text": "We had lunch at the market's open air restaurant.", "album_id": "72157603352064009", "photo_flickr_id": "2079844244", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "47375", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had lunch at the market 's open air restaurant .", "storylet_id": "236878"}], [{"original_text": "After lunch, we found a small candy shop and got some dessert.", "album_id": "72157603352064009", "photo_flickr_id": "2079076011", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "47375", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after lunch , we found a small candy shop and got some dessert .", "storylet_id": "236879"}], [{"original_text": "It was a great day to go shopping outside.", "album_id": "72157603352064009", "photo_flickr_id": "2079045953", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47376", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a great day to go shopping outside .", "storylet_id": "236880"}], [{"original_text": "We wanted to get some groceries for the week", "album_id": "72157603352064009", "photo_flickr_id": "2079836234", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47376", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we wanted to get some groceries for the week", "storylet_id": "236881"}], [{"original_text": "We decided to go to a Farmer's Market for the food.", "album_id": "72157603352064009", "photo_flickr_id": "2079837028", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47376", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we decided to go to a farmer 's market for the food .", "storylet_id": "236882"}], [{"original_text": "They had so much to choose from.", "album_id": "72157603352064009", "photo_flickr_id": "2079050721", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47376", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had so much to choose from .", "storylet_id": "236883"}], [{"original_text": "We wound up getting a lot of fruits for the upcoming week.", "album_id": "72157603352064009", "photo_flickr_id": "2079054475", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "47376", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we wound up getting a lot of fruits for the upcoming week .", "storylet_id": "236884"}], [{"original_text": "We went to a market in China Town today.", "album_id": "72157603352064009", "photo_flickr_id": "2079045953", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47377", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a market in location location today .", "storylet_id": "236885"}], [{"original_text": "They had all these small shops.", "album_id": "72157603352064009", "photo_flickr_id": "2079836234", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47377", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had all these small shops .", "storylet_id": "236886"}], [{"original_text": "One shop even sold all these flowers.", "album_id": "72157603352064009", "photo_flickr_id": "2079837028", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47377", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one shop even sold all these flowers .", "storylet_id": "236887"}], [{"original_text": "There were tons of food vendors.", "album_id": "72157603352064009", "photo_flickr_id": "2079050721", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47377", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were tons of food vendors .", "storylet_id": "236888"}], [{"original_text": "We ended up getting a lot of peppers.", "album_id": "72157603352064009", "photo_flickr_id": "2079054475", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47377", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended up getting a lot of peppers .", "storylet_id": "236889"}], [{"original_text": "There is a display of many flowers to choose from at so many different color and type.", "album_id": "72157603352064009", "photo_flickr_id": "2079837028", "setting": "last-3-pick-old-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "47378", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is a display of many flowers to choose from at so many different color and type .", "storylet_id": "236890"}], [{"original_text": "Many different bowls which contain different type of vegetables such as tomatoes, pepper and other vegetables.", "album_id": "72157603352064009", "photo_flickr_id": "2079054475", "setting": "last-3-pick-old-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "47378", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many different bowls which contain different type of vegetables such as tomatoes , pepper and other vegetables .", "storylet_id": "236891"}], [{"original_text": "The crowd enjoying their shopping with so many items to choose from.", "album_id": "72157603352064009", "photo_flickr_id": "2079055049", "setting": "last-3-pick-old-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "47378", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowd enjoying their shopping with so many items to choose from .", "storylet_id": "236892"}], [{"original_text": "Many tables and chairs for sitting outside and enjoy a snack.", "album_id": "72157603352064009", "photo_flickr_id": "2079844244", "setting": "last-3-pick-old-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "47378", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many tables and chairs for sitting outside and enjoy a snack .", "storylet_id": "236893"}], [{"original_text": "there is a man standing in front of the display section. ", "album_id": "72157603352064009", "photo_flickr_id": "2079076011", "setting": "last-3-pick-old-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "47378", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is a man standing in front of the display section .", "storylet_id": "236894"}], [{"original_text": "The market had many fruits", "album_id": "72157603352064009", "photo_flickr_id": "2079837028", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47379", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the market had many fruits", "storylet_id": "236895"}], [{"original_text": "and peppers too.", "album_id": "72157603352064009", "photo_flickr_id": "2079054475", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47379", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and peppers too .", "storylet_id": "236896"}], [{"original_text": "There were many people there", "album_id": "72157603352064009", "photo_flickr_id": "2079055049", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47379", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many people there", "storylet_id": "236897"}], [{"original_text": "and they sat at tables", "album_id": "72157603352064009", "photo_flickr_id": "2079844244", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47379", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and they sat at tables", "storylet_id": "236898"}], [{"original_text": "before buying food at the grocery.", "album_id": "72157603352064009", "photo_flickr_id": "2079076011", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47379", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before buying food at the grocery .", "storylet_id": "236899"}], [{"original_text": "I decided to try out Nico's Fish Market for lunch yesterday.", "album_id": "72157629152279849", "photo_flickr_id": "6810316277", "setting": "first-2-pick-and-tell", "worker_id": "THGQI1FQ9ST1MSY", "story_id": "47380", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to try out nico 's fish market for lunch yesterday .", "storylet_id": "236900"}], [{"original_text": "The restaurant's architectural design was impressive.", "album_id": "72157629152279849", "photo_flickr_id": "6810315695", "setting": "first-2-pick-and-tell", "worker_id": "THGQI1FQ9ST1MSY", "story_id": "47380", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the restaurant 's architectural design was impressive .", "storylet_id": "236901"}], [{"original_text": "The ambiance and interior organization of the restaurant is fantastic.", "album_id": "72157629152279849", "photo_flickr_id": "6810317169", "setting": "first-2-pick-and-tell", "worker_id": "THGQI1FQ9ST1MSY", "story_id": "47380", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ambiance and interior organization of the restaurant is fantastic .", "storylet_id": "236902"}], [{"original_text": "I surely enjoyed my meal, but was unable to finish it due to the generous portions.", "album_id": "72157629152279849", "photo_flickr_id": "6810318425", "setting": "first-2-pick-and-tell", "worker_id": "THGQI1FQ9ST1MSY", "story_id": "47380", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i surely enjoyed my meal , but was unable to finish it due to the generous portions .", "storylet_id": "236903"}], [{"original_text": "The toffee cream cheese chews were my dessert of choice. They were delicious.", "album_id": "72157629152279849", "photo_flickr_id": "6810319587", "setting": "first-2-pick-and-tell", "worker_id": "THGQI1FQ9ST1MSY", "story_id": "47380", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the toffee cream cheese chews were my dessert of choice . they were delicious .", "storylet_id": "236904"}], [{"original_text": "The bakery was stocked with goods.", "album_id": "72157629152279849", "photo_flickr_id": "6810319015", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47381", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bakery was stocked with goods .", "storylet_id": "236905"}], [{"original_text": "Patrons had their favorites they waited in line for.", "album_id": "72157629152279849", "photo_flickr_id": "6810319333", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47381", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "patrons had their favorites they waited in line for .", "storylet_id": "236906"}], [{"original_text": "The menu was large and diverse.", "album_id": "72157629152279849", "photo_flickr_id": "6810320367", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47381", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the menu was large and diverse .", "storylet_id": "236907"}], [{"original_text": "And offered something for everyone.", "album_id": "72157629152279849", "photo_flickr_id": "6810320611", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47381", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and offered something for everyone .", "storylet_id": "236908"}], [{"original_text": "Outside there was patio seating.", "album_id": "72157629152279849", "photo_flickr_id": "6810320885", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47381", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "outside there was patio seating .", "storylet_id": "236909"}], [{"original_text": "This is Nico's Fish Market.", "album_id": "72157629152279849", "photo_flickr_id": "6810316277", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47382", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is nico 's fish market .", "storylet_id": "236910"}], [{"original_text": "It is a small business. It has an outdoor diner", "album_id": "72157629152279849", "photo_flickr_id": "6810315695", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47382", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is a small business . it has an outdoor diner", "storylet_id": "236911"}], [{"original_text": "and an indoor diner that includes a bar.", "album_id": "72157629152279849", "photo_flickr_id": "6810317169", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47382", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and an indoor diner that includes a bar .", "storylet_id": "236912"}], [{"original_text": "The food is juicy and fresh and made by a great cook.", "album_id": "72157629152279849", "photo_flickr_id": "6810318425", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47382", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food is juicy and fresh and made by a great cook .", "storylet_id": "236913"}], [{"original_text": "If you get full on the entree, you can take your desert to go. It is a really nice place to have a meal.", "album_id": "72157629152279849", "photo_flickr_id": "6810319587", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47382", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "if you get full on the entree , you can take your desert to go . it is a really nice place to have a meal .", "storylet_id": "236914"}], [{"original_text": "Last week we went to try out a new restaurant that just opened up.", "album_id": "72157629152279849", "photo_flickr_id": "6810316277", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47383", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week we went to try out a new restaurant that just opened up .", "storylet_id": "236915"}], [{"original_text": "There were a lot of people dining there.", "album_id": "72157629152279849", "photo_flickr_id": "6810315695", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47383", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people dining there .", "storylet_id": "236916"}], [{"original_text": "We waited for a few minutes and then they seated us.", "album_id": "72157629152279849", "photo_flickr_id": "6810317169", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47383", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we waited for a few minutes and then they seated us .", "storylet_id": "236917"}], [{"original_text": "The food was delicious.", "album_id": "72157629152279849", "photo_flickr_id": "6810318425", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47383", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food was delicious .", "storylet_id": "236918"}], [{"original_text": "After we ate we ordered dessert to go.", "album_id": "72157629152279849", "photo_flickr_id": "6810319587", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47383", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we ate we ordered dessert to go .", "storylet_id": "236919"}], [{"original_text": "The restaurant sign lists the daily specials.", "album_id": "72157629152279849", "photo_flickr_id": "6810316277", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47384", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the restaurant sign lists the daily specials .", "storylet_id": "236920"}], [{"original_text": "The exterior of the restaurant.", "album_id": "72157629152279849", "photo_flickr_id": "6810315695", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47384", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the exterior of the restaurant .", "storylet_id": "236921"}], [{"original_text": "The eatery is bustling with people.", "album_id": "72157629152279849", "photo_flickr_id": "6810317169", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47384", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the eatery is bustling with people .", "storylet_id": "236922"}], [{"original_text": "The exotic food at the location is excellent.", "album_id": "72157629152279849", "photo_flickr_id": "6810318425", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47384", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the exotic food at the location is excellent .", "storylet_id": "236923"}], [{"original_text": "The desserts are to die for here.", "album_id": "72157629152279849", "photo_flickr_id": "6810319587", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47384", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the desserts are to die for here .", "storylet_id": "236924"}], [{"original_text": "The streets were crowded.", "album_id": "72157603364850497", "photo_flickr_id": "2083852338", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47385", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the streets were crowded .", "storylet_id": "236925"}], [{"original_text": "What was this hot dog doing?", "album_id": "72157603364850497", "photo_flickr_id": "2083069031", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47385", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "what was this hot dog doing ?", "storylet_id": "236926"}], [{"original_text": "At least the river was pretty.", "album_id": "72157603364850497", "photo_flickr_id": "2083853270", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47385", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at least the river was pretty .", "storylet_id": "236927"}], [{"original_text": "It looked great at night.", "album_id": "72157603364850497", "photo_flickr_id": "2083853418", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47385", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looked great at night .", "storylet_id": "236928"}], [{"original_text": "They even lit up the ships.", "album_id": "72157603364850497", "photo_flickr_id": "2083069751", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47385", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even lit up the ships .", "storylet_id": "236929"}], [{"original_text": "These people came to go on a tour of the city. Here is a church.", "album_id": "72157603364850497", "photo_flickr_id": "2083067929", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47386", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these people came to go on a tour of the city . here is a church .", "storylet_id": "236930"}], [{"original_text": "The door of the church is very old.", "album_id": "72157603364850497", "photo_flickr_id": "2083068267", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47386", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the door of the church is very old .", "storylet_id": "236931"}], [{"original_text": "After the church, they went for lunch and found this hot dog.", "album_id": "72157603364850497", "photo_flickr_id": "2083069031", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47386", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the church , they went for lunch and found this hot dog .", "storylet_id": "236932"}], [{"original_text": "After lunch, they went on a tour and saw people making some food in a pot.", "album_id": "72157603364850497", "photo_flickr_id": "2083853114", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47386", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after lunch , they went on a tour and saw people making some food in a pot .", "storylet_id": "236933"}], [{"original_text": "As night falls, they go out on the water to see the lights of the city.", "album_id": "72157603364850497", "photo_flickr_id": "2083853270", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47386", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as night falls , they go out on the water to see the lights of the city .", "storylet_id": "236934"}], [{"original_text": "I walked down to the hot dog restaurant for some food.", "album_id": "72157603364850497", "photo_flickr_id": "2083852338", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47387", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i walked down to the hot dog restaurant for some food .", "storylet_id": "236935"}], [{"original_text": "After I ate there I decided to take a walk down by the pier.", "album_id": "72157603364850497", "photo_flickr_id": "2083069031", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47387", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after i ate there i decided to take a walk down by the pier .", "storylet_id": "236936"}], [{"original_text": "The water was very calm at night.", "album_id": "72157603364850497", "photo_flickr_id": "2083853270", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47387", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water was very calm at night .", "storylet_id": "236937"}], [{"original_text": "The pier was beautiful in the evening.", "album_id": "72157603364850497", "photo_flickr_id": "2083853418", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47387", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pier was beautiful in the evening .", "storylet_id": "236938"}], [{"original_text": "I had a great time.", "album_id": "72157603364850497", "photo_flickr_id": "2083069751", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47387", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time .", "storylet_id": "236939"}], [{"original_text": "Our vacation was a strange mix of fancy and weird. The castle we stayed in was certainly fancy!", "album_id": "72157603364850497", "photo_flickr_id": "2083067929", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47388", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our vacation was a strange mix of fancy and weird . the castle we stayed in was certainly fancy !", "storylet_id": "236940"}], [{"original_text": "The door alone was enough to stun you.", "album_id": "72157603364850497", "photo_flickr_id": "2083068267", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47388", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the door alone was enough to stun you .", "storylet_id": "236941"}], [{"original_text": "However, just down the street from the castle was this weird hot dog statue.", "album_id": "72157603364850497", "photo_flickr_id": "2083069031", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47388", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however , just down the street from the castle was this weird hot dog statue .", "storylet_id": "236942"}], [{"original_text": "It was outside a hot dog cookery. We had to go in and get one.", "album_id": "72157603364850497", "photo_flickr_id": "2083853114", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47388", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was outside a hot dog cookery . we had to go in and get one .", "storylet_id": "236943"}], [{"original_text": "The bay was back to fancy---a beautiful sight at night.", "album_id": "72157603364850497", "photo_flickr_id": "2083853270", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47388", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bay was back to fancy -- -a beautiful sight at night .", "storylet_id": "236944"}], [{"original_text": "The castle had two big towers", "album_id": "72157603364850497", "photo_flickr_id": "2083067929", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47389", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the castle had two big towers", "storylet_id": "236945"}], [{"original_text": "and an awesome door too.", "album_id": "72157603364850497", "photo_flickr_id": "2083068267", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47389", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and an awesome door too .", "storylet_id": "236946"}], [{"original_text": "The big hotdog", "album_id": "72157603364850497", "photo_flickr_id": "2083069031", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47389", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the big hotdog", "storylet_id": "236947"}], [{"original_text": "was attracting people who cooked.", "album_id": "72157603364850497", "photo_flickr_id": "2083853114", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47389", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "was attracting people who cooked .", "storylet_id": "236948"}], [{"original_text": "They even stayed until darkness came.", "album_id": "72157603364850497", "photo_flickr_id": "2083853270", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47389", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even stayed until darkness came .", "storylet_id": "236949"}], [{"original_text": "When we got to the city, we expected to see some pretty modern things. ", "album_id": "72157603365865172", "photo_flickr_id": "2085235918", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47390", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when we got to the city , we expected to see some pretty modern things .", "storylet_id": "236950"}], [{"original_text": "Imagine our surprise when we found an old style carnival right in the middle of the city. ", "album_id": "72157603365865172", "photo_flickr_id": "2085241012", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47390", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "imagine our surprise when we found an old style carnival right in the middle of the city .", "storylet_id": "236951"}], [{"original_text": "It was like we had stepped back into the past almost. ", "album_id": "72157603365865172", "photo_flickr_id": "2084462481", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47390", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was like we had stepped back into the past almost .", "storylet_id": "236952"}], [{"original_text": "We bought food, souvenirs, all kinds of little nicknacks. ", "album_id": "72157603365865172", "photo_flickr_id": "2084503081", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47390", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we bought food , souvenirs , all kinds of little nicknacks .", "storylet_id": "236953"}], [{"original_text": "And before we knew it, the place was ready to close and we had to leave. ", "album_id": "72157603365865172", "photo_flickr_id": "2085291246", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47390", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and before we knew it , the place was ready to close and we had to leave .", "storylet_id": "236954"}], [{"original_text": "We went to the city for a big party in the streets.", "album_id": "72157603365865172", "photo_flickr_id": "2085235918", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47391", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the city for a big party in the streets .", "storylet_id": "236955"}], [{"original_text": "We rode the carousal at night when the lights were bright. ", "album_id": "72157603365865172", "photo_flickr_id": "2085241012", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47391", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we rode the carousal at night when the lights were bright .", "storylet_id": "236956"}], [{"original_text": "The bridge that crossed over the water was even lit up.", "album_id": "72157603365865172", "photo_flickr_id": "2085251678", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47391", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bridge that crossed over the water was even lit up .", "storylet_id": "236957"}], [{"original_text": "There were so many different fun games to play that night.", "album_id": "72157603365865172", "photo_flickr_id": "2085280412", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47391", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were so many different fun games to play that night .", "storylet_id": "236958"}], [{"original_text": "Even during the night people were out riding their bikes.", "album_id": "72157603365865172", "photo_flickr_id": "2085304452", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47391", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even during the night people were out riding their bikes .", "storylet_id": "236959"}], [{"original_text": "The skyscrapers are some of the tallest buildings across the country. ", "album_id": "72157603365865172", "photo_flickr_id": "2085235918", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47392", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the skyscrapers are some of the tallest buildings across the country .", "storylet_id": "236960"}], [{"original_text": "At night, the city hosted a nightly carnival.", "album_id": "72157603365865172", "photo_flickr_id": "2085241012", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47392", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at night , the city hosted a nightly carnival .", "storylet_id": "236961"}], [{"original_text": "The bridge is much more convenient at night. We decided to use the bridge to get to the city carnival in record breaking time. ", "album_id": "72157603365865172", "photo_flickr_id": "2085251678", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47392", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bridge is much more convenient at night . we decided to use the bridge to get to the city carnival in record breaking time .", "storylet_id": "236962"}], [{"original_text": "Many vendors had great food to offer at the carnival.", "album_id": "72157603365865172", "photo_flickr_id": "2085280412", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47392", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many vendors had great food to offer at the carnival .", "storylet_id": "236963"}], [{"original_text": "The carnival had many inner city people show up. ", "album_id": "72157603365865172", "photo_flickr_id": "2085304452", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47392", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the carnival had many inner city people show up .", "storylet_id": "236964"}], [{"original_text": "I went for walk last night.", "album_id": "72157603365865172", "photo_flickr_id": "2085235918", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47393", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for walk last night .", "storylet_id": "236965"}], [{"original_text": "There were a lot of people at the amusement park.", "album_id": "72157603365865172", "photo_flickr_id": "2085241012", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47393", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people at the amusement park .", "storylet_id": "236966"}], [{"original_text": "Nearby was the market. They always sell many unique and interesting things.", "album_id": "72157603365865172", "photo_flickr_id": "2084462481", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47393", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nearby was the market . they always sell many unique and interesting things .", "storylet_id": "236967"}], [{"original_text": "I stopped to grab some food.", "album_id": "72157603365865172", "photo_flickr_id": "2084503081", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47393", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i stopped to grab some food .", "storylet_id": "236968"}], [{"original_text": "After people starting to leave I decided to leave as well.", "album_id": "72157603365865172", "photo_flickr_id": "2085291246", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47393", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after people starting to leave i decided to leave as well .", "storylet_id": "236969"}], [{"original_text": "The city was pretty at night", "album_id": "72157603365865172", "photo_flickr_id": "2085235918", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47394", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city was pretty at night", "storylet_id": "236970"}], [{"original_text": "and had a merry go round too.", "album_id": "72157603365865172", "photo_flickr_id": "2085241012", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47394", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and had a merry go round too .", "storylet_id": "236971"}], [{"original_text": "The market was lit up ", "album_id": "72157603365865172", "photo_flickr_id": "2084462481", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47394", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the market was lit up", "storylet_id": "236972"}], [{"original_text": "and had many customers", "album_id": "72157603365865172", "photo_flickr_id": "2084503081", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47394", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and had many customers", "storylet_id": "236973"}], [{"original_text": "before darkness and rain fell on the market.", "album_id": "72157603365865172", "photo_flickr_id": "2085291246", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47394", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before darkness and rain fell on the market .", "storylet_id": "236974"}], [{"original_text": "I went to a new restaurant yesterday.", "album_id": "72157629177580209", "photo_flickr_id": "6820200197", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47395", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a new restaurant yesterday .", "storylet_id": "236975"}], [{"original_text": "The servings were huge.", "album_id": "72157629177580209", "photo_flickr_id": "6820198655", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47395", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the servings were huge .", "storylet_id": "236976"}], [{"original_text": "I got stuffed full of food.", "album_id": "72157629177580209", "photo_flickr_id": "6820199441", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47395", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got stuffed full of food .", "storylet_id": "236977"}], [{"original_text": "Then I went for a walk to walk it off.", "album_id": "72157629177580209", "photo_flickr_id": "6820192807", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47395", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then i went for a walk to walk it off .", "storylet_id": "236978"}], [{"original_text": "Finally, hours later I went back to my car and went home.", "album_id": "72157629177580209", "photo_flickr_id": "6820201755", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47395", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , hours later i went back to my car and went home .", "storylet_id": "236979"}], [{"original_text": "We went out for a tour of our vacation destination.", "album_id": "72157629177580209", "photo_flickr_id": "6820194325", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47396", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went out for a tour of our vacation destination .", "storylet_id": "236980"}], [{"original_text": "We stopped at a nice place to eat and were forced to tie Bowser up outside.", "album_id": "72157629177580209", "photo_flickr_id": "6820194865", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47396", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped at a nice place to eat and were forced to tie bowser up outside .", "storylet_id": "236981"}], [{"original_text": "Ned ordered a huge plate of fries.", "album_id": "72157629177580209", "photo_flickr_id": "6820198655", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47396", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] ordered a huge plate of fries .", "storylet_id": "236982"}], [{"original_text": "I told him not to eat them all.", "album_id": "72157629177580209", "photo_flickr_id": "6820199441", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47396", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i told him not to eat them all .", "storylet_id": "236983"}], [{"original_text": "Later that evening we headed to take in the night life.", "album_id": "72157629177580209", "photo_flickr_id": "6820190623", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47396", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later that evening we headed to take in the night life .", "storylet_id": "236984"}], [{"original_text": "He's clearly pleased with the prospect of being treated to a meal. ", "album_id": "72157629177580209", "photo_flickr_id": "6820200197", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47397", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he 's clearly pleased with the prospect of being treated to a meal .", "storylet_id": "236985"}], [{"original_text": "And because the meal was on me, he ordered liberally. This was just the appetizer. ", "album_id": "72157629177580209", "photo_flickr_id": "6820198655", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47397", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and because the meal was on me , he ordered liberally . this was just the appetizer .", "storylet_id": "236986"}], [{"original_text": "He couldn't take my request to take a picture of the occasion seriously. ", "album_id": "72157629177580209", "photo_flickr_id": "6820199441", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47397", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he could n't take my request to take a picture of the occasion seriously .", "storylet_id": "236987"}], [{"original_text": "Afterwards, we decided to walk off the meal by visiting a local street fair. ", "album_id": "72157629177580209", "photo_flickr_id": "6820192807", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47397", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards , we decided to walk off the meal by visiting a local street fair .", "storylet_id": "236988"}], [{"original_text": "We did not, however, succumb to the temptation of live nude dancing. At least not on this afternoon. ", "album_id": "72157629177580209", "photo_flickr_id": "6820201755", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47397", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we did not , however , succumb to the temptation of live nude dancing . at least not on this afternoon .", "storylet_id": "236989"}], [{"original_text": "Jim was a fun loving guy. ", "album_id": "72157629177580209", "photo_flickr_id": "6820200197", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47398", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was a fun loving guy .", "storylet_id": "236990"}], [{"original_text": "He could make the simplest meal feel like a real treat, even just a plate of french fries. ", "album_id": "72157629177580209", "photo_flickr_id": "6820198655", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47398", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he could make the simplest meal feel like a real treat , even just a plate of french fries .", "storylet_id": "236991"}], [{"original_text": "His goofy faces were incredibly, especially with his beard to accent them.", "album_id": "72157629177580209", "photo_flickr_id": "6820199441", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47398", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his goofy faces were incredibly , especially with his beard to accent them .", "storylet_id": "236992"}], [{"original_text": "After eating, he'd go to the food booths and buy something strange for dessert, to make us all gag.", "album_id": "72157629177580209", "photo_flickr_id": "6820192807", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47398", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after eating , he 'd go to the food booths and buy something strange for dessert , to make us all gag .", "storylet_id": "236993"}], [{"original_text": "I hated to see his signature blue minivan leave. He always drove a minivan, although he was single without kids!", "album_id": "72157629177580209", "photo_flickr_id": "6820201755", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47398", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hated to see his signature blue minivan leave . he always drove a minivan , although he was single without kids !", "storylet_id": "236994"}], [{"original_text": "This is the ferry we are going to take", "album_id": "72157629177580209", "photo_flickr_id": "6820194325", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47399", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the ferry we are going to take", "storylet_id": "236995"}], [{"original_text": "Doggie is waiting for his owner, tied to a street light", "album_id": "72157629177580209", "photo_flickr_id": "6820194865", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47399", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "doggie is waiting for his owner , tied to a street light", "storylet_id": "236996"}], [{"original_text": "He can't wait to go ham on that plate of food", "album_id": "72157629177580209", "photo_flickr_id": "6820198655", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47399", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he ca n't wait to go ham on that plate of food", "storylet_id": "236997"}], [{"original_text": "Making funny faces in a restaurant", "album_id": "72157629177580209", "photo_flickr_id": "6820199441", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47399", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "making funny faces in a restaurant", "storylet_id": "236998"}], [{"original_text": "Big city, bright lights is not my thing", "album_id": "72157629177580209", "photo_flickr_id": "6820190623", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47399", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "big city , bright lights is not my thing", "storylet_id": "236999"}], [{"original_text": "I went down the street last weekend.", "album_id": "72157623430943057", "photo_flickr_id": "4407330164", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47400", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went down the street last weekend .", "storylet_id": "237000"}], [{"original_text": "There was a tsunami warning issued.", "album_id": "72157623430943057", "photo_flickr_id": "4407331300", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47400", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a tsunami warning issued .", "storylet_id": "237001"}], [{"original_text": "I decided to hang around.", "album_id": "72157623430943057", "photo_flickr_id": "4406578873", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47400", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i decided to hang around .", "storylet_id": "237002"}], [{"original_text": "There were not many people outside.", "album_id": "72157623430943057", "photo_flickr_id": "4407345948", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47400", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were not many people outside .", "storylet_id": "237003"}], [{"original_text": "A camera man wanted to ask me why I was still there.", "album_id": "72157623430943057", "photo_flickr_id": "4407347156", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47400", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a camera man wanted to ask me why i was still there .", "storylet_id": "237004"}], [{"original_text": "The storm meant many people were leaving.", "album_id": "72157623430943057", "photo_flickr_id": "4407327234", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "47401", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the storm meant many people were leaving .", "storylet_id": "237005"}], [{"original_text": "The evacuation route was clearly marked.", "album_id": "72157623430943057", "photo_flickr_id": "4407331300", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "47401", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the evacuation route was clearly marked .", "storylet_id": "237006"}], [{"original_text": "Some people stayed behind.", "album_id": "72157623430943057", "photo_flickr_id": "4406572795", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "47401", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people stayed behind .", "storylet_id": "237007"}], [{"original_text": "They boarded up their windows in an effort to hunker down. ", "album_id": "72157623430943057", "photo_flickr_id": "4407348774", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "47401", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they boarded up their windows in an effort to hunker down .", "storylet_id": "237008"}], [{"original_text": "Other people had to stay to keep order. ", "album_id": "72157623430943057", "photo_flickr_id": "4406599881", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "47401", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "other people had to stay to keep order .", "storylet_id": "237009"}], [{"original_text": "Traffic was blocked off today when I tried to go home from work. ", "album_id": "72157623430943057", "photo_flickr_id": "4407330164", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47402", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "traffic was blocked off today when i tried to go home from work .", "storylet_id": "237010"}], [{"original_text": "It was at the Tsunami evacuation area. ", "album_id": "72157623430943057", "photo_flickr_id": "4407331300", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47402", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was at the tsunami evacuation area .", "storylet_id": "237011"}], [{"original_text": "I didn't see an accident anywhere but I did see blood on the side of this building. ", "album_id": "72157623430943057", "photo_flickr_id": "4406578873", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47402", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i did n't see an accident anywhere but i did see blood on the side of this building .", "storylet_id": "237012"}], [{"original_text": "Blood was across the street as well. It was speckled all over. ", "album_id": "72157623430943057", "photo_flickr_id": "4407345948", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47402", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "blood was across the street as well . it was speckled all over .", "storylet_id": "237013"}], [{"original_text": "A woman was talking to the news. She was crying talking about a woman that got run over. I was horrified. ", "album_id": "72157623430943057", "photo_flickr_id": "4407347156", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47402", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a woman was talking to the news . she was crying talking about a woman that got run over . i was horrified .", "storylet_id": "237014"}], [{"original_text": "We sped into the city and made a quick right turn.", "album_id": "72157623430943057", "photo_flickr_id": "4407330164", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47403", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we sped into the city and made a quick right turn .", "storylet_id": "237015"}], [{"original_text": "We were trying to get away from the hurricane as fast as possible.", "album_id": "72157623430943057", "photo_flickr_id": "4407331300", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47403", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were trying to get away from the hurricane as fast as possible .", "storylet_id": "237016"}], [{"original_text": "The buildings were all boarded up.", "album_id": "72157623430943057", "photo_flickr_id": "4406578873", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47403", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the buildings were all boarded up .", "storylet_id": "237017"}], [{"original_text": "Even the store on the corner!", "album_id": "72157623430943057", "photo_flickr_id": "4407345948", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47403", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the store on the corner !", "storylet_id": "237018"}], [{"original_text": "Even with the impending storm, some refused to leave and were going to ride it out.", "album_id": "72157623430943057", "photo_flickr_id": "4407347156", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47403", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even with the impending storm , some refused to leave and were going to ride it out .", "storylet_id": "237019"}], [{"original_text": "The traffic was bad", "album_id": "72157623430943057", "photo_flickr_id": "4407330164", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47404", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the traffic was bad", "storylet_id": "237020"}], [{"original_text": "in the area.", "album_id": "72157623430943057", "photo_flickr_id": "4407331300", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47404", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in the area .", "storylet_id": "237021"}], [{"original_text": "The door was boarded up", "album_id": "72157623430943057", "photo_flickr_id": "4406578873", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47404", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the door was boarded up", "storylet_id": "237022"}], [{"original_text": "and the corner was too.", "album_id": "72157623430943057", "photo_flickr_id": "4407345948", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47404", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the corner was too .", "storylet_id": "237023"}], [{"original_text": "There was a guy filming.", "album_id": "72157623430943057", "photo_flickr_id": "4407347156", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47404", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a guy filming .", "storylet_id": "237024"}], [{"original_text": "Oh boy Mitcham Milly.", "album_id": "414318", "photo_flickr_id": "17437540", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47405", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "oh boy mitcham milly .", "storylet_id": "237025"}], [{"original_text": "That means it's market day.", "album_id": "414318", "photo_flickr_id": "17439347", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47405", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that means it 's market day .", "storylet_id": "237026"}], [{"original_text": "Look at all the Safron!", "album_id": "414318", "photo_flickr_id": "17439348", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47405", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at all the safron !", "storylet_id": "237027"}], [{"original_text": "And the fresh flowers.", "album_id": "414318", "photo_flickr_id": "17461182", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47405", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the fresh flowers .", "storylet_id": "237028"}], [{"original_text": "But I was here to hit the bottle!", "album_id": "414318", "photo_flickr_id": "17465339", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47405", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but i was here to hit the bottle !", "storylet_id": "237029"}], [{"original_text": "It is time to go to the market and see what is for sale.", "album_id": "414318", "photo_flickr_id": "17445851", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47406", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is time to go to the market and see what is for sale .", "storylet_id": "237030"}], [{"original_text": "There are pots of spices in the market.", "album_id": "414318", "photo_flickr_id": "17439347", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47406", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are pots of spices in the market .", "storylet_id": "237031"}], [{"original_text": "Here is a huge bowl of Saffron!", "album_id": "414318", "photo_flickr_id": "17439348", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47406", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is a huge bowl of saffron !", "storylet_id": "237032"}], [{"original_text": "There are people that sell home made goods.", "album_id": "414318", "photo_flickr_id": "17461184", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47406", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are people that sell home made goods .", "storylet_id": "237033"}], [{"original_text": "Here is some home made syrup for sale.", "album_id": "414318", "photo_flickr_id": "17465343", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47406", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is some home made syrup for sale .", "storylet_id": "237034"}], [{"original_text": "I went to the market to buy some spices.", "album_id": "414318", "photo_flickr_id": "17437540", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47407", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the market to buy some spices .", "storylet_id": "237035"}], [{"original_text": "They had so many different kinds there.", "album_id": "414318", "photo_flickr_id": "17439347", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47407", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had so many different kinds there .", "storylet_id": "237036"}], [{"original_text": "It was for a very good price.", "album_id": "414318", "photo_flickr_id": "17439348", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47407", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was for a very good price .", "storylet_id": "237037"}], [{"original_text": "I bought what I needed and then I browsed for a bit more.", "album_id": "414318", "photo_flickr_id": "17461182", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47407", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i bought what i needed and then i browsed for a bit more .", "storylet_id": "237038"}], [{"original_text": "I decided to buy some wine as well.", "album_id": "414318", "photo_flickr_id": "17465339", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47407", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to buy some wine as well .", "storylet_id": "237039"}], [{"original_text": "I went down to this cool flower and drink shop to see what all the fuss was about.", "album_id": "414318", "photo_flickr_id": "17445851", "setting": "last-3-pick-old-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47408", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went down to this cool flower and drink shop to see what all the fuss was about .", "storylet_id": "237040"}], [{"original_text": "They had all of these cool powders and stuff for sale.", "album_id": "414318", "photo_flickr_id": "17439347", "setting": "last-3-pick-old-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47408", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had all of these cool powders and stuff for sale .", "storylet_id": "237041"}], [{"original_text": "Here is a close up of the one that I thought was the best.", "album_id": "414318", "photo_flickr_id": "17439348", "setting": "last-3-pick-old-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47408", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is a close up of the one that i thought was the best .", "storylet_id": "237042"}], [{"original_text": "They make these flower scented drinks that look really delicious.", "album_id": "414318", "photo_flickr_id": "17461184", "setting": "last-3-pick-old-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47408", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they make these flower scented drinks that look really delicious .", "storylet_id": "237043"}], [{"original_text": "They also make some wines. You know I had to try one of those!", "album_id": "414318", "photo_flickr_id": "17465343", "setting": "last-3-pick-old-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47408", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they also make some wines . you know i had to try one of those !", "storylet_id": "237044"}], [{"original_text": "The flowers were blooming ", "album_id": "414318", "photo_flickr_id": "17445851", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47409", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the flowers were blooming", "storylet_id": "237045"}], [{"original_text": "and there were many spices for sale", "album_id": "414318", "photo_flickr_id": "17439347", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47409", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and there were many spices for sale", "storylet_id": "237046"}], [{"original_text": "including curcuma.", "album_id": "414318", "photo_flickr_id": "17439348", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47409", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "including curcuma .", "storylet_id": "237047"}], [{"original_text": "There was also bottled items", "album_id": "414318", "photo_flickr_id": "17461184", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47409", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also bottled items", "storylet_id": "237048"}], [{"original_text": "that were very intricate.", "album_id": "414318", "photo_flickr_id": "17465343", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47409", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that were very intricate .", "storylet_id": "237049"}], [{"original_text": "We had a lot of work to do today.", "album_id": "72157601047470846", "photo_flickr_id": "923195154", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47410", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a lot of work to do today .", "storylet_id": "237050"}], [{"original_text": "There were many service members there.", "album_id": "72157601047470846", "photo_flickr_id": "922348035", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47410", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many service members there .", "storylet_id": "237051"}], [{"original_text": "I had a great time at the office.", "album_id": "72157601047470846", "photo_flickr_id": "922348713", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47410", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time at the office .", "storylet_id": "237052"}], [{"original_text": "I was escorted back home.", "album_id": "72157601047470846", "photo_flickr_id": "922348801", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47410", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was escorted back home .", "storylet_id": "237053"}], [{"original_text": "They were very serious.", "album_id": "72157601047470846", "photo_flickr_id": "922348897", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47410", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were very serious .", "storylet_id": "237054"}], [{"original_text": "The United States played the major role in winning the war against the Nazis and their allies in WWII and this is the White House where our president is allowed to stay during his 4 to 8 year term.", "album_id": "72157601047470846", "photo_flickr_id": "922348117", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "47411", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the location location played the major role in winning the war against the organization and their allies in wwii and this is the location location where our president is allowed to stay during his 4 to 8 year term .", "storylet_id": "237055"}], [{"original_text": "The Nazis in Germany set up prison death camps where they murdered millions of Jews during WWII.", "album_id": "72157601047470846", "photo_flickr_id": "923196966", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "47411", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the nazis in location set up prison death camps where they murdered millions of jews during wwii .", "storylet_id": "237056"}], [{"original_text": "They built these furnaces so they could dispose of the bodies.", "album_id": "72157601047470846", "photo_flickr_id": "923197202", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "47411", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they built these furnaces so they could dispose of the bodies .", "storylet_id": "237057"}], [{"original_text": "Some (if not all) of the Nazis seen in this picture were brought to trial for their war crimes against humanity.", "album_id": "72157601047470846", "photo_flickr_id": "923197710", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "47411", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some ( if not all ) of the nazis seen in this picture were brought to trial for their war crimes against humanity .", "storylet_id": "237058"}], [{"original_text": "Here we see the actual pictures of Nazis on trial where they were tried, convicted and soon after killed for their atrocities.", "album_id": "72157601047470846", "photo_flickr_id": "923198776", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "47411", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here we see the actual pictures of nazis on trial where they were tried , convicted and soon after killed for their atrocities .", "storylet_id": "237059"}], [{"original_text": "This is what the American seat of power looks like in 2015. This is the goal Herr Fuhrer. By using our new time warping machine we will influence history to ensure we're sitting in here in the future.", "album_id": "72157601047470846", "photo_flickr_id": "922348117", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "47412", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is what the american seat of power looks like in 2015 . this is the goal herr fuhrer . by using our new time warping machine we will influence history to ensure we 're sitting in here in the future .", "storylet_id": "237060"}], [{"original_text": "We will build \"The Machine\" here. It will make us masters of the universe. ", "album_id": "72157601047470846", "photo_flickr_id": "923196966", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "47412", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we will build `` the machine '' here . it will make us masters of the universe .", "storylet_id": "237061"}], [{"original_text": "\"Set the furnaces and the factories to work. We must build this\" Work begins on the dastardly plan immediately.", "album_id": "72157601047470846", "photo_flickr_id": "923197202", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "47412", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "`` set the furnaces and the factories to work . we must build this '' work begins on the dastardly plan immediately .", "storylet_id": "237062"}], [{"original_text": "The top brass comes to visit and survey the progress. The war isn't going well for Germany. \"We need to speed up progress!'", "album_id": "72157601047470846", "photo_flickr_id": "923197710", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "47412", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the top brass comes to visit and survey the progress . the war is n't going well for location . `` we need to speed up progress ! '", "storylet_id": "237063"}], [{"original_text": "So, we hear the German are up to something. No matter, we'll just drop an H-Bomb on the location. Problem solved.", "album_id": "72157601047470846", "photo_flickr_id": "923198776", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "47412", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so , we hear the german are up to something . no matter , we 'll just drop an h-bomb on the location . problem solved .", "storylet_id": "237064"}], [{"original_text": "Firefighters came to talk with our company to give a bomb safety class after someone made a bomb threat.", "album_id": "72157601047470846", "photo_flickr_id": "923195154", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEKHZ0S0O4VVYUW", "story_id": "47413", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "firefighters came to talk with our company to give a bomb safety class after someone made a bomb threat .", "storylet_id": "237065"}], [{"original_text": "Our national guard came to sweep the office.", "album_id": "72157601047470846", "photo_flickr_id": "922348035", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEKHZ0S0O4VVYUW", "story_id": "47413", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our national guard came to sweep the office .", "storylet_id": "237066"}], [{"original_text": "Now we are back at work.", "album_id": "72157601047470846", "photo_flickr_id": "922348713", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEKHZ0S0O4VVYUW", "story_id": "47413", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now we are back at work .", "storylet_id": "237067"}], [{"original_text": "While the national guard was there, some of us made friends with them.", "album_id": "72157601047470846", "photo_flickr_id": "922348801", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEKHZ0S0O4VVYUW", "story_id": "47413", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while the national guard was there , some of us made friends with them .", "storylet_id": "237068"}], [{"original_text": "Now we hang out sometimes.", "album_id": "72157601047470846", "photo_flickr_id": "922348897", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEKHZ0S0O4VVYUW", "story_id": "47413", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now we hang out sometimes .", "storylet_id": "237069"}], [{"original_text": "We visited Washington DC.", "album_id": "72157601047470846", "photo_flickr_id": "922348117", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47414", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited location location .", "storylet_id": "237070"}], [{"original_text": "In the museum was all kinds of old photos.", "album_id": "72157601047470846", "photo_flickr_id": "923196966", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47414", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in the museum was all kinds of old photos .", "storylet_id": "237071"}], [{"original_text": "Including some disturbing ones.", "album_id": "72157601047470846", "photo_flickr_id": "923197202", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47414", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "including some disturbing ones .", "storylet_id": "237072"}], [{"original_text": "There were photos from World War II.", "album_id": "72157601047470846", "photo_flickr_id": "923197710", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47414", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were photos from world war ii .", "storylet_id": "237073"}], [{"original_text": "Seeing history is an amazing thing.", "album_id": "72157601047470846", "photo_flickr_id": "923198776", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47414", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "seeing history is an amazing thing .", "storylet_id": "237074"}], [{"original_text": "Me and a few friends went on vacation!", "album_id": "72157594460914672", "photo_flickr_id": "346601054", "setting": "first-2-pick-and-tell", "worker_id": "UUDCZ20OK3D5ET6", "story_id": "47415", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and a few friends went on vacation !", "storylet_id": "237075"}], [{"original_text": "We went to this very nice building, but I cannot remember the name of it.", "album_id": "72157594460914672", "photo_flickr_id": "346601113", "setting": "first-2-pick-and-tell", "worker_id": "UUDCZ20OK3D5ET6", "story_id": "47415", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to this very nice building , but i can not remember the name of it .", "storylet_id": "237076"}], [{"original_text": "We went to the Hofburg Palace, which was very fun. We met a few royals while there!", "album_id": "72157594460914672", "photo_flickr_id": "346601149", "setting": "first-2-pick-and-tell", "worker_id": "UUDCZ20OK3D5ET6", "story_id": "47415", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went to the organization organization , which was very fun . we met a few royals while there !", "storylet_id": "237077"}], [{"original_text": "At night, we hit the town. We went to the bar and had a few drinks.", "album_id": "72157594460914672", "photo_flickr_id": "346600813", "setting": "first-2-pick-and-tell", "worker_id": "UUDCZ20OK3D5ET6", "story_id": "47415", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at night , we hit the town . we went to the bar and had a few drinks .", "storylet_id": "237078"}], [{"original_text": "After that, we stopped at a souvenier store to get some things before finally heading back to the hotel.", "album_id": "72157594460914672", "photo_flickr_id": "346600938", "setting": "first-2-pick-and-tell", "worker_id": "UUDCZ20OK3D5ET6", "story_id": "47415", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that , we stopped at a souvenier store to get some things before finally heading back to the hotel .", "storylet_id": "237079"}], [{"original_text": "The capitol in the town square that we were exploring. ", "album_id": "72157594460914672", "photo_flickr_id": "346601149", "setting": "first-2-pick-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "47416", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the capitol in the town square that we were exploring .", "storylet_id": "237080"}], [{"original_text": "a few differnt shops that we windowed shopped at", "album_id": "72157594460914672", "photo_flickr_id": "346601054", "setting": "first-2-pick-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "47416", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a few differnt shops that we windowed shopped at", "storylet_id": "237081"}], [{"original_text": "These gnomes were way too expensive", "album_id": "72157594460914672", "photo_flickr_id": "346600938", "setting": "first-2-pick-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "47416", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these gnomes were way too expensive", "storylet_id": "237082"}], [{"original_text": "The square is stunning when lit up at night", "album_id": "72157594460914672", "photo_flickr_id": "346600874", "setting": "first-2-pick-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "47416", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the square is stunning when lit up at night", "storylet_id": "237083"}], [{"original_text": "I wish I had one of those lights in my living room", "album_id": "72157594460914672", "photo_flickr_id": "346600813", "setting": "first-2-pick-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "47416", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i wish i had one of those lights in my living room", "storylet_id": "237084"}], [{"original_text": "Look at this majestic hotel we're staying at ... pretty impressive. ", "album_id": "72157594460914672", "photo_flickr_id": "346601149", "setting": "last-3-pick-old-and-tell", "worker_id": "VTV93RBEI18GAEY", "story_id": "47417", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "look at this majestic hotel we 're staying at ... pretty impressive .", "storylet_id": "237085"}], [{"original_text": "Before dinner, we decide to go into town to do some shopping. ", "album_id": "72157594460914672", "photo_flickr_id": "346601054", "setting": "last-3-pick-old-and-tell", "worker_id": "VTV93RBEI18GAEY", "story_id": "47417", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before dinner , we decide to go into town to do some shopping .", "storylet_id": "237086"}], [{"original_text": "We found a great trinket shop and bought some souvenirs to bring home. ", "album_id": "72157594460914672", "photo_flickr_id": "346600938", "setting": "last-3-pick-old-and-tell", "worker_id": "VTV93RBEI18GAEY", "story_id": "47417", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we found a great trinket shop and bought some souvenirs to bring home .", "storylet_id": "237087"}], [{"original_text": "The city buildings are all lit up at night. We really enjoyed our stroll before dinner. ", "album_id": "72157594460914672", "photo_flickr_id": "346600874", "setting": "last-3-pick-old-and-tell", "worker_id": "VTV93RBEI18GAEY", "story_id": "47417", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the city buildings are all lit up at night . we really enjoyed our stroll before dinner .", "storylet_id": "237088"}], [{"original_text": "The restaurant was amazing! Look at the decor. The food was really fantastic too.", "album_id": "72157594460914672", "photo_flickr_id": "346600813", "setting": "last-3-pick-old-and-tell", "worker_id": "VTV93RBEI18GAEY", "story_id": "47417", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the restaurant was amazing ! look at the decor . the food was really fantastic too .", "storylet_id": "237089"}], [{"original_text": "The family decides to visit an historical landmark.", "album_id": "72157594460914672", "photo_flickr_id": "346601149", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47418", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family decides to visit an historical landmark .", "storylet_id": "237090"}], [{"original_text": "After seeing the building they head to the streets.", "album_id": "72157594460914672", "photo_flickr_id": "346601054", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47418", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after seeing the building they head to the streets .", "storylet_id": "237091"}], [{"original_text": "They see many shops with many nice things inside.", "album_id": "72157594460914672", "photo_flickr_id": "346600938", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47418", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they see many shops with many nice things inside .", "storylet_id": "237092"}], [{"original_text": "Then they head over to the Church.", "album_id": "72157594460914672", "photo_flickr_id": "346600874", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47418", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they head over to the organization .", "storylet_id": "237093"}], [{"original_text": "Such a beautiful city they are visiting.", "album_id": "72157594460914672", "photo_flickr_id": "346600813", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47418", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "such a beautiful city they are visiting .", "storylet_id": "237094"}], [{"original_text": "When I arrived in Germany, the weather was a bit cold.", "album_id": "72157594460914672", "photo_flickr_id": "346601054", "setting": "last-3-pick-old-and-tell", "worker_id": "1XR0AXWDDDAZ259", "story_id": "47419", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i arrived in location , the weather was a bit cold .", "storylet_id": "237095"}], [{"original_text": "Many of the buildings were incredibly ornate , with statues near the entrances.", "album_id": "72157594460914672", "photo_flickr_id": "346601113", "setting": "last-3-pick-old-and-tell", "worker_id": "1XR0AXWDDDAZ259", "story_id": "47419", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of the buildings were incredibly ornate , with statues near the entrances .", "storylet_id": "237096"}], [{"original_text": "The palace was beautiful, and very big.", "album_id": "72157594460914672", "photo_flickr_id": "346601149", "setting": "last-3-pick-old-and-tell", "worker_id": "1XR0AXWDDDAZ259", "story_id": "47419", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the palace was beautiful , and very big .", "storylet_id": "237097"}], [{"original_text": "The city was all decked out in lights for the Christmas festival.", "album_id": "72157594460914672", "photo_flickr_id": "346600813", "setting": "last-3-pick-old-and-tell", "worker_id": "1XR0AXWDDDAZ259", "story_id": "47419", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the city was all decked out in lights for the christmas festival .", "storylet_id": "237098"}], [{"original_text": "We went in a store and saw some beautiful Christmas decorations.", "album_id": "72157594460914672", "photo_flickr_id": "346600938", "setting": "last-3-pick-old-and-tell", "worker_id": "1XR0AXWDDDAZ259", "story_id": "47419", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we went in a store and saw some beautiful christmas decorations .", "storylet_id": "237099"}], [{"original_text": "My trip to the city today was fun. ", "album_id": "72157623365952228", "photo_flickr_id": "4335570566", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47420", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my trip to the city today was fun .", "storylet_id": "237100"}], [{"original_text": "I found a really cool area to look around in. ", "album_id": "72157623365952228", "photo_flickr_id": "4334829337", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47420", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i found a really cool area to look around in .", "storylet_id": "237101"}], [{"original_text": "I found a man walking. He talked to me for many hours about a magical fruit place in the city but couldn't tell me where it was. ", "album_id": "72157623365952228", "photo_flickr_id": "4334830909", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47420", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i found a man walking . he talked to me for many hours about a magical fruit place in the city but could n't tell me where it was .", "storylet_id": "237102"}], [{"original_text": "I ventured out to find this magical fruit. I walked for miles. ", "album_id": "72157623365952228", "photo_flickr_id": "4334831283", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47420", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i ventured out to find this magical fruit . i walked for miles .", "storylet_id": "237103"}], [{"original_text": "I finally found a place and bought one of each fruit and veggie. I bit them all. Nothing happened. I am still looking for the magical fruit stand. ", "album_id": "72157623365952228", "photo_flickr_id": "4334832569", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47420", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i finally found a place and bought one of each fruit and veggie . i bit them all . nothing happened . i am still looking for the magical fruit stand .", "storylet_id": "237104"}], [{"original_text": "The green murals was not liked by many.", "album_id": "72157623365952228", "photo_flickr_id": "4335570882", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47421", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the green murals was not liked by many .", "storylet_id": "237105"}], [{"original_text": "I liked the white mural but did not know what it was.", "album_id": "72157623365952228", "photo_flickr_id": "4334829337", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47421", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i liked the white mural but did not know what it was .", "storylet_id": "237106"}], [{"original_text": "The letters were done nice.", "album_id": "72157623365952228", "photo_flickr_id": "4334829951", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47421", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the letters were done nice .", "storylet_id": "237107"}], [{"original_text": "I also liked all the trees.", "album_id": "72157623365952228", "photo_flickr_id": "4334831283", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47421", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also liked all the trees .", "storylet_id": "237108"}], [{"original_text": "The cross was the fan favorite.", "album_id": "72157623365952228", "photo_flickr_id": "4334832569", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47421", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cross was the fan favorite .", "storylet_id": "237109"}], [{"original_text": "We went down to the local market", "album_id": "72157623365952228", "photo_flickr_id": "4335570882", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "47422", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went down to the local market", "storylet_id": "237110"}], [{"original_text": "They had it all decorated for the festivsl", "album_id": "72157623365952228", "photo_flickr_id": "4334829337", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "47422", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had it all decorated for the festivsl", "storylet_id": "237111"}], [{"original_text": "They had bird nest things everywhere", "album_id": "72157623365952228", "photo_flickr_id": "4334829951", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "47422", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had bird nest things everywhere", "storylet_id": "237112"}], [{"original_text": "But we were more focused on veggies ", "album_id": "72157623365952228", "photo_flickr_id": "4334831283", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "47422", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but we were more focused on veggies", "storylet_id": "237113"}], [{"original_text": "There were tons of everything", "album_id": "72157623365952228", "photo_flickr_id": "4334832569", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "47422", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were tons of everything", "storylet_id": "237114"}], [{"original_text": "It was the weekend farmer's market.", "album_id": "72157623365952228", "photo_flickr_id": "4335570882", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "47423", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the weekend farmer 's market .", "storylet_id": "237115"}], [{"original_text": "The townspeople began to set up things.", "album_id": "72157623365952228", "photo_flickr_id": "4334829337", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "47423", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the townspeople began to set up things .", "storylet_id": "237116"}], [{"original_text": "They continued setting up all morning, until things were done", "album_id": "72157623365952228", "photo_flickr_id": "4334829951", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "47423", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they continued setting up all morning , until things were done", "storylet_id": "237117"}], [{"original_text": "Soon the people began to flood in, shopping for fresh fruits.", "album_id": "72157623365952228", "photo_flickr_id": "4334831283", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "47423", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "soon the people began to flood in , shopping for fresh fruits .", "storylet_id": "237118"}], [{"original_text": "They all were excited to have the fresh produce.", "album_id": "72157623365952228", "photo_flickr_id": "4334832569", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "47423", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all were excited to have the fresh produce .", "storylet_id": "237119"}], [{"original_text": "We are on our way to the outdoor market. A great way to start the day.", "album_id": "72157623365952228", "photo_flickr_id": "4335570566", "setting": "last-3-pick-old-and-tell", "worker_id": "VGIMLFOXANOLZLB", "story_id": "47424", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are on our way to the outdoor market . a great way to start the day .", "storylet_id": "237120"}], [{"original_text": "Love the entrance with the grass and rural look.", "album_id": "72157623365952228", "photo_flickr_id": "4334829337", "setting": "last-3-pick-old-and-tell", "worker_id": "VGIMLFOXANOLZLB", "story_id": "47424", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "love the entrance with the grass and rural look .", "storylet_id": "237121"}], [{"original_text": "Lots of vendors and produce to chose from and the street musician to listen to.", "album_id": "72157623365952228", "photo_flickr_id": "4334830909", "setting": "last-3-pick-old-and-tell", "worker_id": "VGIMLFOXANOLZLB", "story_id": "47424", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lots of vendors and produce to chose from and the street musician to listen to .", "storylet_id": "237122"}], [{"original_text": "Mom's on her way to the plant booth to add to her garden.", "album_id": "72157623365952228", "photo_flickr_id": "4334831283", "setting": "last-3-pick-old-and-tell", "worker_id": "VGIMLFOXANOLZLB", "story_id": "47424", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom 's on her way to the plant booth to add to her garden .", "storylet_id": "237123"}], [{"original_text": "And now to the food, we'll have a great dinner tonight with all this fresh produce.", "album_id": "72157623365952228", "photo_flickr_id": "4334832569", "setting": "last-3-pick-old-and-tell", "worker_id": "VGIMLFOXANOLZLB", "story_id": "47424", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and now to the food , we 'll have a great dinner tonight with all this fresh produce .", "storylet_id": "237124"}], [{"original_text": "I went for a hike last weekend.", "album_id": "72157623366569792", "photo_flickr_id": "4334937829", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47425", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a hike last weekend .", "storylet_id": "237125"}], [{"original_text": "We went through the entire forest.", "album_id": "72157623366569792", "photo_flickr_id": "4335682276", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47425", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went through the entire forest .", "storylet_id": "237126"}], [{"original_text": "It was very dense.", "album_id": "72157623366569792", "photo_flickr_id": "4335684636", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47425", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was very dense .", "storylet_id": "237127"}], [{"original_text": "When we finally got to the village we were very hungry.", "album_id": "72157623366569792", "photo_flickr_id": "4335685096", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47425", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we finally got to the village we were very hungry .", "storylet_id": "237128"}], [{"original_text": "The locals made us some food.", "album_id": "72157623366569792", "photo_flickr_id": "4335683954", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47425", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the locals made us some food .", "storylet_id": "237129"}], [{"original_text": "They decided to go on vacation to Africa.", "album_id": "72157623366569792", "photo_flickr_id": "4335682616", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "47426", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they decided to go on vacation to location .", "storylet_id": "237130"}], [{"original_text": "They stayed amongst the native people from the town.", "album_id": "72157623366569792", "photo_flickr_id": "4334937829", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "47426", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they stayed amongst the native people from the town .", "storylet_id": "237131"}], [{"original_text": "The houses consisted of shanties, but it was an exciting experience. ", "album_id": "72157623366569792", "photo_flickr_id": "4335685096", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "47426", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the houses consisted of shanties , but it was an exciting experience .", "storylet_id": "237132"}], [{"original_text": "They celebrated with the townspeople at night.", "album_id": "72157623366569792", "photo_flickr_id": "4334938719", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "47426", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they celebrated with the townspeople at night .", "storylet_id": "237133"}], [{"original_text": "In the morning they toured the beautiful landscape and saw the local wildlife. ", "album_id": "72157623366569792", "photo_flickr_id": "4335679242", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "47426", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the morning they toured the beautiful landscape and saw the local wildlife .", "storylet_id": "237134"}], [{"original_text": "These were some shots I took at the festival last weekend. ", "album_id": "72157623366569792", "photo_flickr_id": "4334937829", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "47427", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these were some shots i took at the festival last weekend .", "storylet_id": "237135"}], [{"original_text": "The views from the top were getting better as you got high.", "album_id": "72157623366569792", "photo_flickr_id": "4335682276", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "47427", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the views from the top were getting better as you got high .", "storylet_id": "237136"}], [{"original_text": "Wow what a site. It looked so beautiful.", "album_id": "72157623366569792", "photo_flickr_id": "4335684636", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "47427", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "wow what a site . it looked so beautiful .", "storylet_id": "237137"}], [{"original_text": "This was the shack with slept in. It got a little wet. ", "album_id": "72157623366569792", "photo_flickr_id": "4335685096", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "47427", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was the shack with slept in . it got a little wet .", "storylet_id": "237138"}], [{"original_text": "The dark time got a little scary. ", "album_id": "72157623366569792", "photo_flickr_id": "4335683954", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "47427", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dark time got a little scary .", "storylet_id": "237139"}], [{"original_text": "The misty mountains looked gorgeous this morning.", "album_id": "72157623366569792", "photo_flickr_id": "4335682616", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "47428", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the misty mountains looked gorgeous this morning .", "storylet_id": "237140"}], [{"original_text": "And everyone gathered here seemed to truly appreciate it.", "album_id": "72157623366569792", "photo_flickr_id": "4334937829", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "47428", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and everyone gathered here seemed to truly appreciate it .", "storylet_id": "237141"}], [{"original_text": "This shed was oddly captivating.", "album_id": "72157623366569792", "photo_flickr_id": "4335685096", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "47428", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this shed was oddly captivating .", "storylet_id": "237142"}], [{"original_text": "And at night there was a tangible sense of excitement.", "album_id": "72157623366569792", "photo_flickr_id": "4334938719", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "47428", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and at night there was a tangible sense of excitement .", "storylet_id": "237143"}], [{"original_text": "The next morning we saw tons of really cool animals.", "album_id": "72157623366569792", "photo_flickr_id": "4335679242", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "47428", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the next morning we saw tons of really cool animals .", "storylet_id": "237144"}], [{"original_text": "I went with a native to visit the living conditions of a group of people not far from me in this beautiful country I'm visiting.", "album_id": "72157623366569792", "photo_flickr_id": "4335682616", "setting": "last-3-pick-old-and-tell", "worker_id": "DSAL3QLMT73WI5U", "story_id": "47429", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went with a native to visit the living conditions of a group of people not far from me in this beautiful country i 'm visiting .", "storylet_id": "237145"}], [{"original_text": "They've set up camp near the fields they are working.", "album_id": "72157623366569792", "photo_flickr_id": "4334937829", "setting": "last-3-pick-old-and-tell", "worker_id": "DSAL3QLMT73WI5U", "story_id": "47429", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they 've set up camp near the fields they are working .", "storylet_id": "237146"}], [{"original_text": "They have built a central meeting place.", "album_id": "72157623366569792", "photo_flickr_id": "4335685096", "setting": "last-3-pick-old-and-tell", "worker_id": "DSAL3QLMT73WI5U", "story_id": "47429", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they have built a central meeting place .", "storylet_id": "237147"}], [{"original_text": "I'm amazed at how social and close this group of people are. ", "album_id": "72157623366569792", "photo_flickr_id": "4334938719", "setting": "last-3-pick-old-and-tell", "worker_id": "DSAL3QLMT73WI5U", "story_id": "47429", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'm amazed at how social and close this group of people are .", "storylet_id": "237148"}], [{"original_text": "The work they do is so hard.", "album_id": "72157623366569792", "photo_flickr_id": "4335679242", "setting": "last-3-pick-old-and-tell", "worker_id": "DSAL3QLMT73WI5U", "story_id": "47429", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the work they do is so hard .", "storylet_id": "237149"}], [{"original_text": "We arrived in Nepal and immediately were overwhelmed by Everest.", "album_id": "72157623375467685", "photo_flickr_id": "4332006810", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47430", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived in location and immediately were overwhelmed by location .", "storylet_id": "237150"}], [{"original_text": "We climbed to the nearest peak and decided on our plan.", "album_id": "72157623375467685", "photo_flickr_id": "4335064615", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47430", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we climbed to the nearest peak and decided on our plan .", "storylet_id": "237151"}], [{"original_text": "We decided to head toward the market...", "album_id": "72157623375467685", "photo_flickr_id": "4335065397", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47430", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we decided to head toward the market ...", "storylet_id": "237152"}], [{"original_text": "We took pictures, ate, and enjoyed ourselves...", "album_id": "72157623375467685", "photo_flickr_id": "4335814318", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47430", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took pictures , ate , and enjoyed ourselves ...", "storylet_id": "237153"}], [{"original_text": "And, then it was time to stock up on supplies--I wanted oranges--for the trip.", "album_id": "72157623375467685", "photo_flickr_id": "4335074029", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47430", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , then it was time to stock up on supplies -- i wanted oranges -- for the trip .", "storylet_id": "237154"}], [{"original_text": "A traveler visited Seattle and took in the classic sights of the city.", "album_id": "72157623375467685", "photo_flickr_id": "4335064615", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "47431", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a traveler visited location and took in the classic sights of the city .", "storylet_id": "237155"}], [{"original_text": "The view of Mt. Olympus outside Seattle was beautifully captured by the visitor.", "album_id": "72157623375467685", "photo_flickr_id": "4332006810", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "47431", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view of mt . organization outside location was beautifully captured by the visitor .", "storylet_id": "237156"}], [{"original_text": "Then a visit to the Public Market Center continued the quintessential sight-seeing tour.", "album_id": "72157623375467685", "photo_flickr_id": "4335809672", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "47431", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then a visit to the organization organization organization continued the quintessential sight-seeing tour .", "storylet_id": "237157"}], [{"original_text": "A wall covered with bubblegum showed the quirky character of the area.", "album_id": "72157623375467685", "photo_flickr_id": "4335812894", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "47431", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a wall covered with bubblegum showed the quirky character of the area .", "storylet_id": "237158"}], [{"original_text": "A visit to Starbucks completed the all-around Seattle experience. ", "album_id": "72157623375467685", "photo_flickr_id": "4335071867", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "47431", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a visit to organization completed the all-around location experience .", "storylet_id": "237159"}], [{"original_text": "We had a great view of the city.", "album_id": "72157623375467685", "photo_flickr_id": "4335064615", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47432", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great view of the city .", "storylet_id": "237160"}], [{"original_text": "Behind us was amazing mountains.", "album_id": "72157623375467685", "photo_flickr_id": "4332006810", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47432", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "behind us was amazing mountains .", "storylet_id": "237161"}], [{"original_text": "We went into the city from there to look around.", "album_id": "72157623375467685", "photo_flickr_id": "4335809672", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47432", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went into the city from there to look around .", "storylet_id": "237162"}], [{"original_text": "We explored the area and got to know the place.", "album_id": "72157623375467685", "photo_flickr_id": "4335812894", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47432", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we explored the area and got to know the place .", "storylet_id": "237163"}], [{"original_text": "We headed to a Starbucks to get a coffee before heading out.", "album_id": "72157623375467685", "photo_flickr_id": "4335071867", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "47432", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we headed to a organization to get a coffee before heading out .", "storylet_id": "237164"}], [{"original_text": "This is a picture of the city where we stayed on vacation.", "album_id": "72157623375467685", "photo_flickr_id": "4335064615", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "47433", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of the city where we stayed on vacation .", "storylet_id": "237165"}], [{"original_text": "Not far from us was this majestic mountain.", "album_id": "72157623375467685", "photo_flickr_id": "4332006810", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "47433", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "not far from us was this majestic mountain .", "storylet_id": "237166"}], [{"original_text": "This is where we had to park our rental car.", "album_id": "72157623375467685", "photo_flickr_id": "4335809672", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "47433", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is where we had to park our rental car .", "storylet_id": "237167"}], [{"original_text": "One of the attractions near where we parked.", "album_id": "72157623375467685", "photo_flickr_id": "4335812894", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "47433", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the attractions near where we parked .", "storylet_id": "237168"}], [{"original_text": "Thankfully there was a starbucks there!", "album_id": "72157623375467685", "photo_flickr_id": "4335071867", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "47433", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thankfully there was a starbucks there !", "storylet_id": "237169"}], [{"original_text": "They felt awe and gratitude looking at the mountain.", "album_id": "72157623375467685", "photo_flickr_id": "4332006810", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "47434", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they felt awe and gratitude looking at the mountain .", "storylet_id": "237170"}], [{"original_text": "Although it was a grey day, they still had fun exploring the city.", "album_id": "72157623375467685", "photo_flickr_id": "4335064615", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "47434", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "although it was a grey day , they still had fun exploring the city .", "storylet_id": "237171"}], [{"original_text": "The market bustled with all kinds of people.", "album_id": "72157623375467685", "photo_flickr_id": "4335065397", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "47434", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the market bustled with all kinds of people .", "storylet_id": "237172"}], [{"original_text": "They took a photo at a textured gum wall.", "album_id": "72157623375467685", "photo_flickr_id": "4335814318", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "47434", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they took a photo at a textured gum wall .", "storylet_id": "237173"}], [{"original_text": "Then they bought some oranges and made fresh-squeezed orange juice back at the hotel.", "album_id": "72157623375467685", "photo_flickr_id": "4335074029", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "47434", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then they bought some oranges and made fresh-squeezed orange juice back at the hotel .", "storylet_id": "237174"}], [{"original_text": "We went to the mega flower shop in the city.", "album_id": "72157629210282443", "photo_flickr_id": "6829247327", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47435", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the mega flower shop in the city .", "storylet_id": "237175"}], [{"original_text": "Many people were hauling in fresh flowers from afar.", "album_id": "72157629210282443", "photo_flickr_id": "6829222321", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47435", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people were hauling in fresh flowers from afar .", "storylet_id": "237176"}], [{"original_text": "A lady is selling some nice orange flowers.", "album_id": "72157629210282443", "photo_flickr_id": "6829236287", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47435", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lady is selling some nice orange flowers .", "storylet_id": "237177"}], [{"original_text": "This man has huge sacks full of flowers to sell.", "album_id": "72157629210282443", "photo_flickr_id": "6829229171", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47435", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this man has huge sacks full of flowers to sell .", "storylet_id": "237178"}], [{"original_text": "Some vendors got creative with how they display and sell their flowers.", "album_id": "72157629210282443", "photo_flickr_id": "6829215945", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "47435", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some vendors got creative with how they display and sell their flowers .", "storylet_id": "237179"}], [{"original_text": "Visiting India for the Summer . ", "album_id": "72157629210282443", "photo_flickr_id": "6829189083", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47436", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visiting location for the [female] .", "storylet_id": "237180"}], [{"original_text": "Went to the flower market to see the beautiful flowers. ", "album_id": "72157629210282443", "photo_flickr_id": "6829209005", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47436", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "went to the flower market to see the beautiful flowers .", "storylet_id": "237181"}], [{"original_text": "A merchant carrying flowers to sell to interested buyers. ", "album_id": "72157629210282443", "photo_flickr_id": "6829222321", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47436", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a merchant carrying flowers to sell to interested buyers .", "storylet_id": "237182"}], [{"original_text": "About to by a book to learn the cultures. ", "album_id": "72157629210282443", "photo_flickr_id": "6829270965", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47436", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "about to by a book to learn the cultures .", "storylet_id": "237183"}], [{"original_text": "Bought different irresistible deserts to try. ", "album_id": "72157629210282443", "photo_flickr_id": "6829190711", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47436", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "bought different irresistible deserts to try .", "storylet_id": "237184"}], [{"original_text": "Some countries have markets where they sell and trade goods.", "album_id": "72157629210282443", "photo_flickr_id": "6829247327", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47437", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some countries have markets where they sell and trade goods .", "storylet_id": "237185"}], [{"original_text": "Individuals come to the market with the goods that they make to sell or trade.", "album_id": "72157629210282443", "photo_flickr_id": "6829222321", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47437", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "individuals come to the market with the goods that they make to sell or trade .", "storylet_id": "237186"}], [{"original_text": "Many merchants have started their own businesses.", "album_id": "72157629210282443", "photo_flickr_id": "6829236287", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47437", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many merchants have started their own businesses .", "storylet_id": "237187"}], [{"original_text": "Some make a living on a specific talent or trade.", "album_id": "72157629210282443", "photo_flickr_id": "6829229171", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47437", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some make a living on a specific talent or trade .", "storylet_id": "237188"}], [{"original_text": "Whatever they have, they bring to the table to acquire needs and wants from other people. Since so many people are contributing, it is a good way to make sure everyone has their needs met.", "album_id": "72157629210282443", "photo_flickr_id": "6829215945", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "47437", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "whatever they have , they bring to the table to acquire needs and wants from other people . since so many people are contributing , it is a good way to make sure everyone has their needs met .", "storylet_id": "237189"}], [{"original_text": "Shopping in Kolkata is an experience everybody should have at least once. I still remember my first time.", "album_id": "72157629210282443", "photo_flickr_id": "6829189083", "setting": "last-3-pick-old-and-tell", "worker_id": "FG4RHLMB8T2EGUC", "story_id": "47438", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "shopping in location is an experience everybody should have at least once . i still remember my first time .", "storylet_id": "237190"}], [{"original_text": "It was packed wall to wall with excited shoppers and wary sellers.", "album_id": "72157629210282443", "photo_flickr_id": "6829209005", "setting": "last-3-pick-old-and-tell", "worker_id": "FG4RHLMB8T2EGUC", "story_id": "47438", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was packed wall to wall with excited shoppers and wary sellers .", "storylet_id": "237191"}], [{"original_text": "I still don't even know what these are, but I wanted to buy all of them.", "album_id": "72157629210282443", "photo_flickr_id": "6829222321", "setting": "last-3-pick-old-and-tell", "worker_id": "FG4RHLMB8T2EGUC", "story_id": "47438", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i still do n't even know what these are , but i wanted to buy all of them .", "storylet_id": "237192"}], [{"original_text": "I picked up some books that I still don't know how to read. I really should get on that soon!", "album_id": "72157629210282443", "photo_flickr_id": "6829270965", "setting": "last-3-pick-old-and-tell", "worker_id": "FG4RHLMB8T2EGUC", "story_id": "47438", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i picked up some books that i still do n't know how to read . i really should get on that soon !", "storylet_id": "237193"}], [{"original_text": "In the end the only language that mattered was the language of food! It is abundant and delicious. You won't find these at Safeway. Believe me, I've looked!", "album_id": "72157629210282443", "photo_flickr_id": "6829190711", "setting": "last-3-pick-old-and-tell", "worker_id": "FG4RHLMB8T2EGUC", "story_id": "47438", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end the only language that mattered was the language of food ! it is abundant and delicious . you wo n't find these at organization . believe me , i 've looked !", "storylet_id": "237194"}], [{"original_text": "A picture of the market from above.", "album_id": "72157629210282443", "photo_flickr_id": "6829189083", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47439", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a picture of the market from above .", "storylet_id": "237195"}], [{"original_text": "The market is bustling with people.", "album_id": "72157629210282443", "photo_flickr_id": "6829209005", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47439", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the market is bustling with people .", "storylet_id": "237196"}], [{"original_text": "A man carrying flowers on his head.", "album_id": "72157629210282443", "photo_flickr_id": "6829222321", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47439", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man carrying flowers on his head .", "storylet_id": "237197"}], [{"original_text": "Some books for sale at the market.", "album_id": "72157629210282443", "photo_flickr_id": "6829270965", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47439", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some books for sale at the market .", "storylet_id": "237198"}], [{"original_text": "Some lovely desserts are available for sale.", "album_id": "72157629210282443", "photo_flickr_id": "6829190711", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "47439", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some lovely desserts are available for sale .", "storylet_id": "237199"}], [{"original_text": "I went to a flea market with some interesting pieces.", "album_id": "72157628360313137", "photo_flickr_id": "6556870141", "setting": "first-2-pick-and-tell", "worker_id": "B3EU9R6FOS87Z2Q", "story_id": "47440", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a flea market with some interesting pieces .", "storylet_id": "237200"}], [{"original_text": "There were some great vintage boots. ", "album_id": "72157628360313137", "photo_flickr_id": "6623781549", "setting": "first-2-pick-and-tell", "worker_id": "B3EU9R6FOS87Z2Q", "story_id": "47440", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were some great vintage boots .", "storylet_id": "237201"}], [{"original_text": "There were some slightly-deformed cartoon characters.", "album_id": "72157628360313137", "photo_flickr_id": "6543310295", "setting": "first-2-pick-and-tell", "worker_id": "B3EU9R6FOS87Z2Q", "story_id": "47440", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some slightly-deformed cartoon characters .", "storylet_id": "237202"}], [{"original_text": "Even Santa made an appearance.", "album_id": "72157628360313137", "photo_flickr_id": "6487690857", "setting": "first-2-pick-and-tell", "worker_id": "B3EU9R6FOS87Z2Q", "story_id": "47440", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even location made an appearance .", "storylet_id": "237203"}], [{"original_text": "But I don't think I want to know what the puppies booth entails. ", "album_id": "72157628360313137", "photo_flickr_id": "6655654129", "setting": "first-2-pick-and-tell", "worker_id": "B3EU9R6FOS87Z2Q", "story_id": "47440", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but i do n't think i want to know what the puppies booth entails .", "storylet_id": "237204"}], [{"original_text": "University of Florida fans come from all over the state to celebrate every year.", "album_id": "72157628360313137", "photo_flickr_id": "6558645367", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "47441", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "organization organization organization fans come from all over the state to celebrate every year .", "storylet_id": "237205"}], [{"original_text": "Hundreds of vendors sell everything you can think of", "album_id": "72157628360313137", "photo_flickr_id": "6606666361", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "47441", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "hundreds of vendors sell everything you can think of", "storylet_id": "237206"}], [{"original_text": "People bring the strangest things to the celebration.", "album_id": "72157628360313137", "photo_flickr_id": "6556870141", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "47441", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people bring the strangest things to the celebration .", "storylet_id": "237207"}], [{"original_text": "Baby alligators and lots of other unusual things attract thousands of people. ", "album_id": "72157628360313137", "photo_flickr_id": "6608629707", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "47441", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] alligators and lots of other unusual things attract thousands of people .", "storylet_id": "237208"}], [{"original_text": "The local economy gets a big boost from all the visitors. ", "album_id": "72157628360313137", "photo_flickr_id": "6623779053", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "47441", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the local economy gets a big boost from all the visitors .", "storylet_id": "237209"}], [{"original_text": "What an awesome day to go to the fair. ", "album_id": "72157628360313137", "photo_flickr_id": "6558645367", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47442", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what an awesome day to go to the fair .", "storylet_id": "237210"}], [{"original_text": "We played games and bought t-shirts in between stops. ", "album_id": "72157628360313137", "photo_flickr_id": "6606666361", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47442", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we played games and bought t-shirts in between stops .", "storylet_id": "237211"}], [{"original_text": "There were a lot of fun attractions and things to look at like this little buddy. ", "album_id": "72157628360313137", "photo_flickr_id": "6556870141", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47442", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of fun attractions and things to look at like this little buddy .", "storylet_id": "237212"}], [{"original_text": "The kids enjoyed watching the live alligators they were pretty cool!", "album_id": "72157628360313137", "photo_flickr_id": "6608629707", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47442", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids enjoyed watching the live alligators they were pretty cool !", "storylet_id": "237213"}], [{"original_text": "We seen a lot of cool accessories and cheap clothes to buy so we bought a few things. ", "album_id": "72157628360313137", "photo_flickr_id": "6623779053", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47442", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we seen a lot of cool accessories and cheap clothes to buy so we bought a few things .", "storylet_id": "237214"}], [{"original_text": "We stumbled upon some piece of art: a man and his beer.", "album_id": "72157628360313137", "photo_flickr_id": "6556870141", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47443", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we stumbled upon some piece of art : a man and his beer .", "storylet_id": "237215"}], [{"original_text": "Boots are the perfect addition to a man's wardrobe.", "album_id": "72157628360313137", "photo_flickr_id": "6623781549", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47443", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "boots are the perfect addition to a man 's wardrobe .", "storylet_id": "237216"}], [{"original_text": "Next, we moved on to more... cutesy pieces.", "album_id": "72157628360313137", "photo_flickr_id": "6543310295", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47443", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next , we moved on to more ... cutesy pieces .", "storylet_id": "237217"}], [{"original_text": "It's Christmas in July, the mother exclaimed.", "album_id": "72157628360313137", "photo_flickr_id": "6487690857", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47443", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's christmas in july , the mother exclaimed .", "storylet_id": "237218"}], [{"original_text": "It seems we made a wrong turn and ended up in the ghetto.", "album_id": "72157628360313137", "photo_flickr_id": "6655654129", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47443", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it seems we made a wrong turn and ended up in the ghetto .", "storylet_id": "237219"}], [{"original_text": "It was a sunny day in Gator Nation ", "album_id": "72157628360313137", "photo_flickr_id": "6558645367", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "47444", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a sunny day in gator nation", "storylet_id": "237220"}], [{"original_text": "We looked for t-shirt designs and saw an opportunity to get one air brushed ", "album_id": "72157628360313137", "photo_flickr_id": "6606666361", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "47444", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we looked for t-shirt designs and saw an opportunity to get one air brushed", "storylet_id": "237221"}], [{"original_text": "My husband's idea of entertainment was to drink beer instead. ", "album_id": "72157628360313137", "photo_flickr_id": "6556870141", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "47444", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my husband 's idea of entertainment was to drink beer instead .", "storylet_id": "237222"}], [{"original_text": "Despite it being Gator Nation, we can't play with the gators", "album_id": "72157628360313137", "photo_flickr_id": "6608629707", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "47444", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "despite it being organization organization , we ca n't play with the gators", "storylet_id": "237223"}], [{"original_text": "But it didn't matter because we got ourselves a air-brushed shirt! ", "album_id": "72157628360313137", "photo_flickr_id": "6623779053", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "47444", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but it did n't matter because we got ourselves a air-brushed shirt !", "storylet_id": "237224"}], [{"original_text": "Welcome to the latest showcase of new technology. ", "album_id": "72157594470595742", "photo_flickr_id": "352347329", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "47445", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "welcome to the latest showcase of new technology .", "storylet_id": "237225"}], [{"original_text": "Here you find all the newest innovations in many areas of electronic advances.", "album_id": "72157594470595742", "photo_flickr_id": "352333804", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "47445", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here you find all the newest innovations in many areas of electronic advances .", "storylet_id": "237226"}], [{"original_text": "The latest smart phones are displayed sharply. ", "album_id": "72157594470595742", "photo_flickr_id": "352361496", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "47445", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the latest smart phones are displayed sharply .", "storylet_id": "237227"}], [{"original_text": "The newest tablet PC is demonstrated by a real human. ", "album_id": "72157594470595742", "photo_flickr_id": "352331592", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "47445", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the newest tablet pc is demonstrated by a real human .", "storylet_id": "237228"}], [{"original_text": "Self driving cars are shown to be the future of transportation. ", "album_id": "72157594470595742", "photo_flickr_id": "352333380", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "47445", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "self driving cars are shown to be the future of transportation .", "storylet_id": "237229"}], [{"original_text": "My favorite event of the year the annual technology show.", "album_id": "72157594470595742", "photo_flickr_id": "352333804", "setting": "first-2-pick-and-tell", "worker_id": "NWZH7FLUHURC1LX", "story_id": "47446", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my favorite event of the year the annual technology show .", "storylet_id": "237230"}], [{"original_text": "Absolutely everyone is there and Apple always has a big crowd.", "album_id": "72157594470595742", "photo_flickr_id": "352330648", "setting": "first-2-pick-and-tell", "worker_id": "NWZH7FLUHURC1LX", "story_id": "47446", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "absolutely everyone is there and organization always has a big crowd .", "storylet_id": "237231"}], [{"original_text": "The new HBD model Glaxon 4 looks like an amazing toy - gotta get me one.", "album_id": "72157594470595742", "photo_flickr_id": "352331116", "setting": "first-2-pick-and-tell", "worker_id": "NWZH7FLUHURC1LX", "story_id": "47446", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the new hbd model glaxon 4 looks like an amazing toy - got ta get me one .", "storylet_id": "237232"}], [{"original_text": "Of course the IPhone always makes an impressive showing.", "album_id": "72157594470595742", "photo_flickr_id": "352334658", "setting": "first-2-pick-and-tell", "worker_id": "NWZH7FLUHURC1LX", "story_id": "47446", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course the iphone always makes an impressive showing .", "storylet_id": "237233"}], [{"original_text": "Now a new part of the show - new technology for my favorite toys - shiny cars!", "album_id": "72157594470595742", "photo_flickr_id": "352333380", "setting": "first-2-pick-and-tell", "worker_id": "NWZH7FLUHURC1LX", "story_id": "47446", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now a new part of the show - new technology for my favorite toys - shiny cars !", "storylet_id": "237234"}], [{"original_text": "Yesterday we went to visit the convention center.", "album_id": "72157594470595742", "photo_flickr_id": "352347329", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47447", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday we went to visit the convention center .", "storylet_id": "237235"}], [{"original_text": "There were having many large presentations.", "album_id": "72157594470595742", "photo_flickr_id": "352333804", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47447", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were having many large presentations .", "storylet_id": "237236"}], [{"original_text": "There were a lot of new tech gadgets there.", "album_id": "72157594470595742", "photo_flickr_id": "352361496", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47447", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of new tech gadgets there .", "storylet_id": "237237"}], [{"original_text": "We got to try out a few of them.", "album_id": "72157594470595742", "photo_flickr_id": "352331592", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47447", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got to try out a few of them .", "storylet_id": "237238"}], [{"original_text": "After we were done there we decided to go to the autoshow next door.", "album_id": "72157594470595742", "photo_flickr_id": "352333380", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47447", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we were done there we decided to go to the autoshow next door .", "storylet_id": "237239"}], [{"original_text": "People are walking into the convention.", "album_id": "72157594470595742", "photo_flickr_id": "352347329", "setting": "last-3-pick-old-and-tell", "worker_id": "Z6079EUX6AIW5M6", "story_id": "47448", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people are walking into the convention .", "storylet_id": "237240"}], [{"original_text": "Everybody is gathering up preparing for the new technology to be displayed.", "album_id": "72157594470595742", "photo_flickr_id": "352333804", "setting": "last-3-pick-old-and-tell", "worker_id": "Z6079EUX6AIW5M6", "story_id": "47448", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everybody is gathering up preparing for the new technology to be displayed .", "storylet_id": "237241"}], [{"original_text": "The new Iphone is displayed showcasing its new features.", "album_id": "72157594470595742", "photo_flickr_id": "352361496", "setting": "last-3-pick-old-and-tell", "worker_id": "Z6079EUX6AIW5M6", "story_id": "47448", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the new iphone is displayed showcasing its new features .", "storylet_id": "237242"}], [{"original_text": "New tablets are being displayed and showcased.", "album_id": "72157594470595742", "photo_flickr_id": "352331592", "setting": "last-3-pick-old-and-tell", "worker_id": "Z6079EUX6AIW5M6", "story_id": "47448", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "new tablets are being displayed and showcased .", "storylet_id": "237243"}], [{"original_text": "A brand new car is being shown as part of the winner of the raffle when you enter.", "album_id": "72157594470595742", "photo_flickr_id": "352333380", "setting": "last-3-pick-old-and-tell", "worker_id": "Z6079EUX6AIW5M6", "story_id": "47448", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a brand new car is being shown as part of the winner of the raffle when you enter .", "storylet_id": "237244"}], [{"original_text": "The conference opens with an announcement of Apple TV and the crowd goes wild.", "album_id": "72157594470595742", "photo_flickr_id": "352333804", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47449", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the conference opens with an announcement of organization tv and the crowd goes wild .", "storylet_id": "237245"}], [{"original_text": "People are roaming about the conference floor to get their eyes on the newest gadgets.", "album_id": "72157594470595742", "photo_flickr_id": "352330648", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47449", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people are roaming about the conference floor to get their eyes on the newest gadgets .", "storylet_id": "237246"}], [{"original_text": "The iPhone is encased in a circular shell to protect it as if it is a piece of jewelry.", "album_id": "72157594470595742", "photo_flickr_id": "352331116", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47449", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the iphone is encased in a circular shell to protect it as if it is a piece of jewelry .", "storylet_id": "237247"}], [{"original_text": "From the front, we gaze upon its Retina display.", "album_id": "72157594470595742", "photo_flickr_id": "352334658", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47449", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "from the front , we gaze upon its retina display .", "storylet_id": "237248"}], [{"original_text": "A Mercedes-Benz is shown, with built-in Apple connectivity features.", "album_id": "72157594470595742", "photo_flickr_id": "352333380", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47449", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a organization is shown , with built-in apple connectivity features .", "storylet_id": "237249"}], [{"original_text": "The man and his dog are ready for a nature walk.", "album_id": "72157623052897651", "photo_flickr_id": "4261409138", "setting": "first-2-pick-and-tell", "worker_id": "K16O759TPDS2446", "story_id": "47450", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man and his dog are ready for a nature walk .", "storylet_id": "237250"}], [{"original_text": "They see the splendor of nature on their walk. ", "album_id": "72157623052897651", "photo_flickr_id": "4260655605", "setting": "first-2-pick-and-tell", "worker_id": "K16O759TPDS2446", "story_id": "47450", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they see the splendor of nature on their walk .", "storylet_id": "237251"}], [{"original_text": "Pooch can't wail to go on a walk with his man", "album_id": "72157623052897651", "photo_flickr_id": "4261410900", "setting": "first-2-pick-and-tell", "worker_id": "K16O759TPDS2446", "story_id": "47450", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "pooch ca n't wail to go on a walk with his man", "storylet_id": "237252"}], [{"original_text": "They take the time to tip toe through the tulips.", "album_id": "72157623052897651", "photo_flickr_id": "4260657579", "setting": "first-2-pick-and-tell", "worker_id": "K16O759TPDS2446", "story_id": "47450", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they take the time to tip toe through the tulips .", "storylet_id": "237253"}], [{"original_text": "Pooch can't believe his eyes at so many opportunities!", "album_id": "72157623052897651", "photo_flickr_id": "4260661623", "setting": "first-2-pick-and-tell", "worker_id": "K16O759TPDS2446", "story_id": "47450", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "pooch ca n't believe his eyes at so many opportunities !", "storylet_id": "237254"}], [{"original_text": "It was a beautiful day out with my dog Rocko. He was really excited. ", "album_id": "72157623052897651", "photo_flickr_id": "4261409138", "setting": "first-2-pick-and-tell", "worker_id": "FD4K5BZRH7MJBG2", "story_id": "47451", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful day out with my dog rocko . he was really excited .", "storylet_id": "237255"}], [{"original_text": "We walked through the park and saw some beautiful flowers along the way. ", "album_id": "72157623052897651", "photo_flickr_id": "4260655605", "setting": "first-2-pick-and-tell", "worker_id": "FD4K5BZRH7MJBG2", "story_id": "47451", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we walked through the park and saw some beautiful flowers along the way .", "storylet_id": "237256"}], [{"original_text": "This was Rocko investigating and being curious. ", "album_id": "72157623052897651", "photo_flickr_id": "4261410900", "setting": "first-2-pick-and-tell", "worker_id": "FD4K5BZRH7MJBG2", "story_id": "47451", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was rocko investigating and being curious .", "storylet_id": "237257"}], [{"original_text": "Rocko also ran around these trees. I haven't seen him this happy in awhile!", "album_id": "72157623052897651", "photo_flickr_id": "4260661623", "setting": "first-2-pick-and-tell", "worker_id": "FD4K5BZRH7MJBG2", "story_id": "47451", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "rocko also ran around these trees . i have n't seen him this happy in awhile !", "storylet_id": "237258"}], [{"original_text": "Sadly, when we got back to the car it looked like someone hit it. Luckily they left a note with their insurance information. Regardless, it was a good day. ", "album_id": "72157623052897651", "photo_flickr_id": "4261412106", "setting": "first-2-pick-and-tell", "worker_id": "FD4K5BZRH7MJBG2", "story_id": "47451", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sadly , when we got back to the car it looked like someone hit it . luckily they left a note with their insurance information . regardless , it was a good day .", "storylet_id": "237259"}], [{"original_text": "I went to the park last weekend with my dog.", "album_id": "72157623052897651", "photo_flickr_id": "4261409138", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47452", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the park last weekend with my dog .", "storylet_id": "237260"}], [{"original_text": "There were a lot of flowers blooming this time of year.", "album_id": "72157623052897651", "photo_flickr_id": "4260655605", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47452", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of flowers blooming this time of year .", "storylet_id": "237261"}], [{"original_text": "My dog had such a great time there.", "album_id": "72157623052897651", "photo_flickr_id": "4261410900", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47452", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my dog had such a great time there .", "storylet_id": "237262"}], [{"original_text": "He smelled every flower we came across.", "album_id": "72157623052897651", "photo_flickr_id": "4260657579", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47452", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he smelled every flower we came across .", "storylet_id": "237263"}], [{"original_text": "Afterward we were very tired and had to go.", "album_id": "72157623052897651", "photo_flickr_id": "4260661623", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47452", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we were very tired and had to go .", "storylet_id": "237264"}], [{"original_text": "A man and his dog, a friendship none other could rival.", "album_id": "72157623052897651", "photo_flickr_id": "4261409138", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47453", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a man and his dog , a friendship none other could rival .", "storylet_id": "237265"}], [{"original_text": "Venturing through the field, they come upon some brilliantly yellow flowers.", "album_id": "72157623052897651", "photo_flickr_id": "4260655605", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47453", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "venturing through the field , they come upon some brilliantly yellow flowers .", "storylet_id": "237266"}], [{"original_text": "But Mark, the dog, spots something in the distance behind them.", "album_id": "72157623052897651", "photo_flickr_id": "4261410900", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47453", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but [male] , the dog , spots something in the distance behind them .", "storylet_id": "237267"}], [{"original_text": "Behold, yellow and purple flowers that excite Mark to no end.", "album_id": "72157623052897651", "photo_flickr_id": "4260657579", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47453", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "behold , yellow and purple flowers that excite [male] to no end .", "storylet_id": "237268"}], [{"original_text": "No excursion with one's dog is complete without marking one's territory on some local trees.", "album_id": "72157623052897651", "photo_flickr_id": "4260661623", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47453", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "no excursion with one 's dog is complete without marking one 's territory on some local trees .", "storylet_id": "237269"}], [{"original_text": "Today I took my best friend to the park to play.", "album_id": "72157623052897651", "photo_flickr_id": "4261409138", "setting": "last-3-pick-old-and-tell", "worker_id": "79ANDVZRHDXYG88", "story_id": "47454", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i took my best friend to the park to play .", "storylet_id": "237270"}], [{"original_text": "All the flowers were in bloom.", "album_id": "72157623052897651", "photo_flickr_id": "4260655605", "setting": "last-3-pick-old-and-tell", "worker_id": "79ANDVZRHDXYG88", "story_id": "47454", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the flowers were in bloom .", "storylet_id": "237271"}], [{"original_text": "We spent some time just hanging out.", "album_id": "72157623052897651", "photo_flickr_id": "4261410900", "setting": "last-3-pick-old-and-tell", "worker_id": "79ANDVZRHDXYG88", "story_id": "47454", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we spent some time just hanging out .", "storylet_id": "237272"}], [{"original_text": "I got to enjoy the beautiful trees.", "album_id": "72157623052897651", "photo_flickr_id": "4260661623", "setting": "last-3-pick-old-and-tell", "worker_id": "79ANDVZRHDXYG88", "story_id": "47454", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i got to enjoy the beautiful trees .", "storylet_id": "237273"}], [{"original_text": "Then he helped me cross the street home.", "album_id": "72157623052897651", "photo_flickr_id": "4261412106", "setting": "last-3-pick-old-and-tell", "worker_id": "79ANDVZRHDXYG88", "story_id": "47454", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then he helped me cross the street home .", "storylet_id": "237274"}], [{"original_text": "It was the day of the big conference.", "album_id": "72157623240659927", "photo_flickr_id": "4234370018", "setting": "first-2-pick-and-tell", "worker_id": "0ATLPG4NXQE5K19", "story_id": "47455", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the day of the big conference .", "storylet_id": "237275"}], [{"original_text": "There were presentations.", "album_id": "72157623240659927", "photo_flickr_id": "4237507857", "setting": "first-2-pick-and-tell", "worker_id": "0ATLPG4NXQE5K19", "story_id": "47455", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were presentations .", "storylet_id": "237276"}], [{"original_text": "Yahoo was there.", "album_id": "72157623240659927", "photo_flickr_id": "4259777763", "setting": "first-2-pick-and-tell", "worker_id": "0ATLPG4NXQE5K19", "story_id": "47455", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "organization was there .", "storylet_id": "237277"}], [{"original_text": "Google was, too.", "album_id": "72157623240659927", "photo_flickr_id": "4260580338", "setting": "first-2-pick-and-tell", "worker_id": "0ATLPG4NXQE5K19", "story_id": "47455", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "organization was , too .", "storylet_id": "237278"}], [{"original_text": "They were all about preserving the internet.", "album_id": "72157623240659927", "photo_flickr_id": "4233774651", "setting": "first-2-pick-and-tell", "worker_id": "0ATLPG4NXQE5K19", "story_id": "47455", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were all about preserving the internet .", "storylet_id": "237279"}], [{"original_text": "The conference we attended had a wonderful group of speakers.", "album_id": "72157623240659927", "photo_flickr_id": "4241004647", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47456", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the conference we attended had a wonderful group of speakers .", "storylet_id": "237280"}], [{"original_text": "Sarah Miller gave a speech on the importance of balance work and life.", "album_id": "72157623240659927", "photo_flickr_id": "4237512991", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47456", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] miller gave a speech on the importance of balance work and life .", "storylet_id": "237281"}], [{"original_text": "Dan Johnson's presentation included him dancing a jig.", "album_id": "72157623240659927", "photo_flickr_id": "4233571807", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47456", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] johnson 's presentation included him dancing a jig .", "storylet_id": "237282"}], [{"original_text": "The conference was packed with attendees.", "album_id": "72157623240659927", "photo_flickr_id": "4234370018", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47456", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the conference was packed with attendees .", "storylet_id": "237283"}], [{"original_text": "At the end of the day of presentations, we all took a photo together to remember the fantastic day.", "album_id": "72157623240659927", "photo_flickr_id": "4233774651", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47456", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day of presentations , we all took a photo together to remember the fantastic day .", "storylet_id": "237284"}], [{"original_text": "For extra credit for one of my classes, we went to a GOOGLE forum.", "album_id": "72157623240659927", "photo_flickr_id": "4234370018", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47457", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for extra credit for one of my classes , we went to a organization forum .", "storylet_id": "237285"}], [{"original_text": "The speaker was Rick Smith, he was a joy to listen to.", "album_id": "72157623240659927", "photo_flickr_id": "4237507857", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47457", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the speaker was [male] smith , he was a joy to listen to .", "storylet_id": "237286"}], [{"original_text": "I was also impressed when I saw on stage that Ian Welms was also going to be a speaker.", "album_id": "72157623240659927", "photo_flickr_id": "4259777763", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47457", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was also impressed when i saw on stage that [male] welms was also going to be a speaker .", "storylet_id": "237287"}], [{"original_text": "But, when I saw George Barkley sitting just in front of the Google sign and knew that he would be a speaker too, I was just so impressed.", "album_id": "72157623240659927", "photo_flickr_id": "4260580338", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47457", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but , when i saw [male] barkley sitting just in front of the organization sign and knew that he would be a speaker too , i was just so impressed .", "storylet_id": "237288"}], [{"original_text": "At the end of the forum, they were selling pictures of the entire speakers. I am so glad I went, not just for my grade, but for the knowledge that I left with.", "album_id": "72157623240659927", "photo_flickr_id": "4233774651", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47457", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the forum , they were selling pictures of the entire speakers . i am so glad i went , not just for my grade , but for the knowledge that i left with .", "storylet_id": "237289"}], [{"original_text": "At the convention there were so many people.", "album_id": "72157623240659927", "photo_flickr_id": "4234370018", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47458", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the convention there were so many people .", "storylet_id": "237290"}], [{"original_text": "The speakers delivered their speeches one at a time.", "album_id": "72157623240659927", "photo_flickr_id": "4237507857", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47458", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the speakers delivered their speeches one at a time .", "storylet_id": "237291"}], [{"original_text": "There were a lot of popular figures there.", "album_id": "72157623240659927", "photo_flickr_id": "4259777763", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47458", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of popular figures there .", "storylet_id": "237292"}], [{"original_text": "It was awesome to see so many important in one place.", "album_id": "72157623240659927", "photo_flickr_id": "4260580338", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47458", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was awesome to see so many important in one place .", "storylet_id": "237293"}], [{"original_text": "Afterward all of the presenters went up for a group picture.", "album_id": "72157623240659927", "photo_flickr_id": "4233774651", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47458", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward all of the presenters went up for a group picture .", "storylet_id": "237294"}], [{"original_text": "The conference was well attended and the audience was engaged.", "album_id": "72157623240659927", "photo_flickr_id": "4234370018", "setting": "last-3-pick-old-and-tell", "worker_id": "DQPYDXYM7D1T7DT", "story_id": "47459", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the conference was well attended and the audience was engaged .", "storylet_id": "237295"}], [{"original_text": "Dynamic speakers presented topics on technology.", "album_id": "72157623240659927", "photo_flickr_id": "4237507857", "setting": "last-3-pick-old-and-tell", "worker_id": "DQPYDXYM7D1T7DT", "story_id": "47459", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dynamic speakers presented topics on technology .", "storylet_id": "237296"}], [{"original_text": "Executives from Yahoo! addressed the audience.", "album_id": "72157623240659927", "photo_flickr_id": "4259777763", "setting": "last-3-pick-old-and-tell", "worker_id": "DQPYDXYM7D1T7DT", "story_id": "47459", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "executives from organization ! addressed the audience .", "storylet_id": "237297"}], [{"original_text": "Then they heard from executives from Google.", "album_id": "72157623240659927", "photo_flickr_id": "4260580338", "setting": "last-3-pick-old-and-tell", "worker_id": "DQPYDXYM7D1T7DT", "story_id": "47459", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they heard from executives from organization .", "storylet_id": "237298"}], [{"original_text": "After a fulfilling day, everyone knew that they loved the Internet even more!", "album_id": "72157623240659927", "photo_flickr_id": "4233774651", "setting": "last-3-pick-old-and-tell", "worker_id": "DQPYDXYM7D1T7DT", "story_id": "47459", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a fulfilling day , everyone knew that they loved the internet even more !", "storylet_id": "237299"}], [{"original_text": "Our hotel was not what we were expecting.", "album_id": "72157600249357838", "photo_flickr_id": "32598105", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47460", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our hotel was not what we were expecting .", "storylet_id": "237300"}], [{"original_text": "We decided to make the best of it with a pillow fight.", "album_id": "72157600249357838", "photo_flickr_id": "32598176", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47460", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided to make the best of it with a pillow fight .", "storylet_id": "237301"}], [{"original_text": "We headed out to the market.", "album_id": "72157600249357838", "photo_flickr_id": "32780353", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47460", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we headed out to the market .", "storylet_id": "237302"}], [{"original_text": "I found this which summed up the hotel.", "album_id": "72157600249357838", "photo_flickr_id": "32782558", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47460", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i found this which summed up the hotel .", "storylet_id": "237303"}], [{"original_text": "The bed at least was a place to put our heads.", "album_id": "72157600249357838", "photo_flickr_id": "32783303", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47460", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bed at least was a place to put our heads .", "storylet_id": "237304"}], [{"original_text": "On our way to our new room and saw the funniest little statue.", "album_id": "72157600249357838", "photo_flickr_id": "32782558", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47461", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our way to our new room and saw the funniest little statue .", "storylet_id": "237305"}], [{"original_text": "All set up on our new bed.", "album_id": "72157600249357838", "photo_flickr_id": "32598105", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47461", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all set up on our new bed .", "storylet_id": "237306"}], [{"original_text": "Tired and ready to go to sleep.", "album_id": "72157600249357838", "photo_flickr_id": "32598123", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47461", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "tired and ready to go to sleep .", "storylet_id": "237307"}], [{"original_text": "But she woke her up with a pillow fight challenge. ", "album_id": "72157600249357838", "photo_flickr_id": "32598206", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47461", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but she woke her up with a pillow fight challenge .", "storylet_id": "237308"}], [{"original_text": "The next day, they went to the farmers market. ", "album_id": "72157600249357838", "photo_flickr_id": "32780353", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47461", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the next day , they went to the farmers market .", "storylet_id": "237309"}], [{"original_text": "This is what we saw on our way to get a massage.", "album_id": "72157600249357838", "photo_flickr_id": "32782558", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47462", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is what we saw on our way to get a massage .", "storylet_id": "237310"}], [{"original_text": "Amy and I relaxing before we get a massage.", "album_id": "72157600249357838", "photo_flickr_id": "32598105", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47462", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] and i relaxing before we get a massage .", "storylet_id": "237311"}], [{"original_text": "I think Amy fell asleep on me.", "album_id": "72157600249357838", "photo_flickr_id": "32598123", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47462", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i think [female] fell asleep on me .", "storylet_id": "237312"}], [{"original_text": "I had to wake her up with a pillow fight", "album_id": "72157600249357838", "photo_flickr_id": "32598206", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47462", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had to wake her up with a pillow fight", "storylet_id": "237313"}], [{"original_text": "After we both walked through the town", "album_id": "72157600249357838", "photo_flickr_id": "32780353", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47462", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we both walked through the town", "storylet_id": "237314"}], [{"original_text": "Can't believe the roommate I got stuck with here.", "album_id": "72157600249357838", "photo_flickr_id": "32598105", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47463", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "ca n't believe the roommate i got stuck with here .", "storylet_id": "237315"}], [{"original_text": "not getting along all that well ", "album_id": "72157600249357838", "photo_flickr_id": "32598176", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47463", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "not getting along all that well", "storylet_id": "237316"}], [{"original_text": "let's start over and see the sights ", "album_id": "72157600249357838", "photo_flickr_id": "32780353", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47463", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "let 's start over and see the sights", "storylet_id": "237317"}], [{"original_text": "stop showing your butt it's not polite ", "album_id": "72157600249357838", "photo_flickr_id": "32782558", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47463", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "stop showing your butt it 's not polite", "storylet_id": "237318"}], [{"original_text": "time to get to sleep long day tomorrow ", "album_id": "72157600249357838", "photo_flickr_id": "32783303", "setting": "last-3-pick-old-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47463", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time to get to sleep long day tomorrow", "storylet_id": "237319"}], [{"original_text": "The bedroom was very simple", "album_id": "72157600249357838", "photo_flickr_id": "32598105", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47464", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bedroom was very simple", "storylet_id": "237320"}], [{"original_text": "before the pillow fight.", "album_id": "72157600249357838", "photo_flickr_id": "32598176", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47464", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before the pillow fight .", "storylet_id": "237321"}], [{"original_text": "The ladies then went to the market", "album_id": "72157600249357838", "photo_flickr_id": "32780353", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47464", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ladies then went to the market", "storylet_id": "237322"}], [{"original_text": "and saw a funny gnome", "album_id": "72157600249357838", "photo_flickr_id": "32782558", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47464", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and saw a funny gnome", "storylet_id": "237323"}], [{"original_text": "before going back home to bed.", "album_id": "72157600249357838", "photo_flickr_id": "32783303", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47464", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before going back home to bed .", "storylet_id": "237324"}], [{"original_text": "The park looks pretty covered in snow.", "album_id": "72157623280700593", "photo_flickr_id": "4347954724", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "47465", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the park looks pretty covered in snow .", "storylet_id": "237325"}], [{"original_text": "Dang, this happened overnight. Look at all that new snow. ", "album_id": "72157623280700593", "photo_flickr_id": "4347206549", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "47465", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dang , this happened overnight . look at all that new snow .", "storylet_id": "237326"}], [{"original_text": "At least they have starting plowing the streets so I can get out.", "album_id": "72157623280700593", "photo_flickr_id": "4347206437", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "47465", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at least they have starting plowing the streets so i can get out .", "storylet_id": "237327"}], [{"original_text": "Seeing a fire truck out in this weather is not a good sign.", "album_id": "72157623280700593", "photo_flickr_id": "4347207527", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "47465", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "seeing a fire truck out in this weather is not a good sign .", "storylet_id": "237328"}], [{"original_text": "I am not even attempting to go up that off ramp.", "album_id": "72157623280700593", "photo_flickr_id": "4347206815", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "47465", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am not even attempting to go up that off ramp .", "storylet_id": "237329"}], [{"original_text": "There was record snowfall this year.", "album_id": "72157623280700593", "photo_flickr_id": "4347206549", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47466", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was record snowfall this year .", "storylet_id": "237330"}], [{"original_text": "Everything was covered.", "album_id": "72157623280700593", "photo_flickr_id": "4347206437", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47466", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything was covered .", "storylet_id": "237331"}], [{"original_text": "Thankfully I got to park in my garage.", "album_id": "72157623280700593", "photo_flickr_id": "4347206751", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47466", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "thankfully i got to park in my garage .", "storylet_id": "237332"}], [{"original_text": "It is covered.", "album_id": "72157623280700593", "photo_flickr_id": "4347206607", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47466", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is covered .", "storylet_id": "237333"}], [{"original_text": "I had to walk everywhere though.", "album_id": "72157623280700593", "photo_flickr_id": "4347955270", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47466", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had to walk everywhere though .", "storylet_id": "237334"}], [{"original_text": "This was when my town had a snowstorm. ", "album_id": "72157623280700593", "photo_flickr_id": "4347954724", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "47467", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was when my town had a snowstorm .", "storylet_id": "237335"}], [{"original_text": "The cars couldn't even drive, the snow was so deep. ", "album_id": "72157623280700593", "photo_flickr_id": "4347206549", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "47467", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cars could n't even drive , the snow was so deep .", "storylet_id": "237336"}], [{"original_text": "All of the businesses were closed due to the snowy weather. ", "album_id": "72157623280700593", "photo_flickr_id": "4347206437", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "47467", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of the businesses were closed due to the snowy weather .", "storylet_id": "237337"}], [{"original_text": "The firetrucks drove around, and made sure everything was ok. ", "album_id": "72157623280700593", "photo_flickr_id": "4347207527", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "47467", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the firetrucks drove around , and made sure everything was ok .", "storylet_id": "237338"}], [{"original_text": "The snow was beautiful to see at night. ", "album_id": "72157623280700593", "photo_flickr_id": "4347206815", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "47467", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the snow was beautiful to see at night .", "storylet_id": "237339"}], [{"original_text": "It was a spring snow storm. Cars were buried in the snowdrifts. ", "album_id": "72157623280700593", "photo_flickr_id": "4347206549", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47468", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a spring snow storm . cars were buried in the snowdrifts .", "storylet_id": "237340"}], [{"original_text": "A snow plow had cleared the street enough to drive on slowly. ", "album_id": "72157623280700593", "photo_flickr_id": "4347206437", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47468", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a snow plow had cleared the street enough to drive on slowly .", "storylet_id": "237341"}], [{"original_text": "The only place still dry was the multi story parking lots. ", "album_id": "72157623280700593", "photo_flickr_id": "4347206751", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47468", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the only place still dry was the multi story parking lots .", "storylet_id": "237342"}], [{"original_text": "The street lights glowed like miniature suns. ", "album_id": "72157623280700593", "photo_flickr_id": "4347206607", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47468", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the street lights glowed like miniature suns .", "storylet_id": "237343"}], [{"original_text": "A street sign showed a green man, a signal that it was safe to cross. But was it, really?", "album_id": "72157623280700593", "photo_flickr_id": "4347955270", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47468", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a street sign showed a green man , a signal that it was safe to cross . but was it , really ?", "storylet_id": "237344"}], [{"original_text": "Our town was hit with a major snow storm last winter.", "album_id": "72157623280700593", "photo_flickr_id": "4347954724", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47469", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our town was hit with a major snow storm last winter .", "storylet_id": "237345"}], [{"original_text": "The cars could barely drive down the roads.", "album_id": "72157623280700593", "photo_flickr_id": "4347206549", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47469", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cars could barely drive down the roads .", "storylet_id": "237346"}], [{"original_text": "My town looked like a ghost town during the storm.", "album_id": "72157623280700593", "photo_flickr_id": "4347206437", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47469", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my town looked like a ghost town during the storm .", "storylet_id": "237347"}], [{"original_text": "The firetrucks were out helping people stuck in their cars.", "album_id": "72157623280700593", "photo_flickr_id": "4347207527", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47469", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the firetrucks were out helping people stuck in their cars .", "storylet_id": "237348"}], [{"original_text": "The snow kept coming even after the sun went down.", "album_id": "72157623280700593", "photo_flickr_id": "4347206815", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47469", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the snow kept coming even after the sun went down .", "storylet_id": "237349"}], [{"original_text": "An old piano sat in the center of the store.", "album_id": "72157629261651447", "photo_flickr_id": "6852935965", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47470", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an old piano sat in the center of the store .", "storylet_id": "237350"}], [{"original_text": "There were antique dishes and other items.", "album_id": "72157629261651447", "photo_flickr_id": "6852943079", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47470", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were antique dishes and other items .", "storylet_id": "237351"}], [{"original_text": "Musical items were popular among shoppers.", "album_id": "72157629261651447", "photo_flickr_id": "6852948293", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47470", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "musical items were popular among shoppers .", "storylet_id": "237352"}], [{"original_text": "Many artistic pieces were available at very cheap prices.", "album_id": "72157629261651447", "photo_flickr_id": "6852946215", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47470", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many artistic pieces were available at very cheap prices .", "storylet_id": "237353"}], [{"original_text": "Vintage images were also favorites.", "album_id": "72157629261651447", "photo_flickr_id": "6852949415", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47470", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "vintage images were also favorites .", "storylet_id": "237354"}], [{"original_text": "Bob went to a yard sale over the weekend. When he walked up to the house, he saw a beautiful piano outside. He had always wanted to learn to play.", "album_id": "72157629261651447", "photo_flickr_id": "6852935965", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "47471", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] went to a yard sale over the weekend . when he walked up to the house , he saw a beautiful piano outside . he had always wanted to learn to play .", "storylet_id": "237355"}], [{"original_text": "He next came upon a stereo in a glass cabinet. These were very nice items for a yard sale. ", "album_id": "72157629261651447", "photo_flickr_id": "6852937811", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "47471", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he next came upon a stereo in a glass cabinet . these were very nice items for a yard sale .", "storylet_id": "237356"}], [{"original_text": "An old phonograph was also there. Bob felt he could purchase some of these items to sell for more than he paid for them.", "album_id": "72157629261651447", "photo_flickr_id": "6852942061", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "47471", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "an old phonograph was also there . [male] felt he could purchase some of these items to sell for more than he paid for them .", "storylet_id": "237357"}], [{"original_text": "A picture on the wall also caught his eye. That would look good in his bedroom, he though.", "album_id": "72157629261651447", "photo_flickr_id": "6852946215", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "47471", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a picture on the wall also caught his eye . that would look good in his bedroom , he though .", "storylet_id": "237358"}], [{"original_text": "Last, he considered some old movie posters for his office. He ended up purchasing the piano. ", "album_id": "72157629261651447", "photo_flickr_id": "6852949415", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "47471", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last , he considered some old movie posters for his office . he ended up purchasing the piano .", "storylet_id": "237359"}], [{"original_text": "I discovered this antique shop around the corner from my apartment.", "album_id": "72157629261651447", "photo_flickr_id": "6852935965", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47472", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i discovered this antique shop around the corner from my apartment .", "storylet_id": "237360"}], [{"original_text": "They had so many interesting things from the past. ", "album_id": "72157629261651447", "photo_flickr_id": "6852943079", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47472", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had so many interesting things from the past .", "storylet_id": "237361"}], [{"original_text": "One of my favorites to see were the old record players they had.", "album_id": "72157629261651447", "photo_flickr_id": "6852948293", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47472", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of my favorites to see were the old record players they had .", "storylet_id": "237362"}], [{"original_text": "A photograph hanging on the wall really fit the ambiance of the place. ", "album_id": "72157629261651447", "photo_flickr_id": "6852946215", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47472", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a photograph hanging on the wall really fit the ambiance of the place .", "storylet_id": "237363"}], [{"original_text": "As I walked out I noticed even more old advertisements posted on the wall. ", "album_id": "72157629261651447", "photo_flickr_id": "6852949415", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47472", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as i walked out i noticed even more old advertisements posted on the wall .", "storylet_id": "237364"}], [{"original_text": "The antique shop had a lot of old things, including this piano, with a copy of Beethoven song book.", "album_id": "72157629261651447", "photo_flickr_id": "6852935965", "setting": "last-3-pick-old-and-tell", "worker_id": "E8MRC8TQ6RW8R70", "story_id": "47473", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the antique shop had a lot of old things , including this piano , with a copy of beethoven song book .", "storylet_id": "237365"}], [{"original_text": "I found this old betamax player. Too bad this machine did not do as good as the VHS player.", "album_id": "72157629261651447", "photo_flickr_id": "6852937811", "setting": "last-3-pick-old-and-tell", "worker_id": "E8MRC8TQ6RW8R70", "story_id": "47473", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i found this old betamax player . too bad this machine did not do as good as the vhs player .", "storylet_id": "237366"}], [{"original_text": "I found this beautiful record player to be in great shape.", "album_id": "72157629261651447", "photo_flickr_id": "6852942061", "setting": "last-3-pick-old-and-tell", "worker_id": "E8MRC8TQ6RW8R70", "story_id": "47473", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i found this beautiful record player to be in great shape .", "storylet_id": "237367"}], [{"original_text": "This old portrait taken in 1928 would surely bring back memories for my grandparents if they saw this.", "album_id": "72157629261651447", "photo_flickr_id": "6852946215", "setting": "last-3-pick-old-and-tell", "worker_id": "E8MRC8TQ6RW8R70", "story_id": "47473", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this old portrait taken in 1928 would surely bring back memories for my grandparents if they saw this .", "storylet_id": "237368"}], [{"original_text": "These old movie posters look better than the ones we have today.", "album_id": "72157629261651447", "photo_flickr_id": "6852949415", "setting": "last-3-pick-old-and-tell", "worker_id": "E8MRC8TQ6RW8R70", "story_id": "47473", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these old movie posters look better than the ones we have today .", "storylet_id": "237369"}], [{"original_text": "there was the old piano that ", "album_id": "72157629261651447", "photo_flickr_id": "6852935965", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "47474", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was the old piano that", "storylet_id": "237370"}], [{"original_text": "there also was theis amazing radio", "album_id": "72157629261651447", "photo_flickr_id": "6852937811", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "47474", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there also was theis amazing radio", "storylet_id": "237371"}], [{"original_text": "my grandma had the same music player that I found in the store", "album_id": "72157629261651447", "photo_flickr_id": "6852942061", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "47474", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my grandma had the same music player that i found in the store", "storylet_id": "237372"}], [{"original_text": "there was also a picture that we found there from the old days", "album_id": "72157629261651447", "photo_flickr_id": "6852946215", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "47474", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also a picture that we found there from the old days", "storylet_id": "237373"}], [{"original_text": "we ended up buying some pictures as gifts", "album_id": "72157629261651447", "photo_flickr_id": "6852949415", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "47474", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended up buying some pictures as gifts", "storylet_id": "237374"}], [{"original_text": "Two women pose for the camera.", "album_id": "72157629263336881", "photo_flickr_id": "6853656887", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47475", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two women pose for the camera .", "storylet_id": "237375"}], [{"original_text": "A bunch of kids are waiting in line while reading the small menu.", "album_id": "72157629263336881", "photo_flickr_id": "6853630037", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47475", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a bunch of kids are waiting in line while reading the small menu .", "storylet_id": "237376"}], [{"original_text": "A large menu that displays meal prices.", "album_id": "72157629263336881", "photo_flickr_id": "6853679701", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47475", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a large menu that displays meal prices .", "storylet_id": "237377"}], [{"original_text": "The name of a food truck.", "album_id": "72157629263336881", "photo_flickr_id": "6853702703", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47475", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the name of a food truck .", "storylet_id": "237378"}], [{"original_text": "A food truck serving people food.", "album_id": "72157629263336881", "photo_flickr_id": "6853707331", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47475", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a food truck serving people food .", "storylet_id": "237379"}], [{"original_text": "This is the food court I visited today.", "album_id": "72157629263336881", "photo_flickr_id": "6853614075", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47476", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the food court i visited today .", "storylet_id": "237380"}], [{"original_text": "They had spicy food.", "album_id": "72157629263336881", "photo_flickr_id": "6853630037", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47476", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had spicy food .", "storylet_id": "237381"}], [{"original_text": "They had ice cream.", "album_id": "72157629263336881", "photo_flickr_id": "6853644591", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47476", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had ice cream .", "storylet_id": "237382"}], [{"original_text": "They had Mexican Food too.", "album_id": "72157629263336881", "photo_flickr_id": "6853702703", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47476", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had mexican food too .", "storylet_id": "237383"}], [{"original_text": "They even had Polish jelly doughnuts!", "album_id": "72157629263336881", "photo_flickr_id": "6853733237", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47476", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even had polish jelly doughnuts !", "storylet_id": "237384"}], [{"original_text": "We arrives early to buy some food. It smelled so good walking up.", "album_id": "72157629263336881", "photo_flickr_id": "6853656887", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47477", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrives early to buy some food . it smelled so good walking up .", "storylet_id": "237385"}], [{"original_text": "Every nearby place had their menus set up so everyone could see them.", "album_id": "72157629263336881", "photo_flickr_id": "6853630037", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47477", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "every nearby place had their menus set up so everyone could see them .", "storylet_id": "237386"}], [{"original_text": "It took us awhile to pick out what to eat. It all looked delicious.", "album_id": "72157629263336881", "photo_flickr_id": "6853679701", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47477", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it took us awhile to pick out what to eat . it all looked delicious .", "storylet_id": "237387"}], [{"original_text": "We decided on a taco truck that had a particularly cool owner.", "album_id": "72157629263336881", "photo_flickr_id": "6853702703", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47477", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we decided on a taco truck that had a particularly cool owner .", "storylet_id": "237388"}], [{"original_text": "A lot of other people had the same idea and we stood in line, eagerly awaiting our meals.", "album_id": "72157629263336881", "photo_flickr_id": "6853707331", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47477", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a lot of other people had the same idea and we stood in line , eagerly awaiting our meals .", "storylet_id": "237389"}], [{"original_text": "Good times when we went to food truck expo. ", "album_id": "72157629263336881", "photo_flickr_id": "6853656887", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47478", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "good times when we went to food truck expo .", "storylet_id": "237390"}], [{"original_text": "The kids went straight for the taco food truck. ", "album_id": "72157629263336881", "photo_flickr_id": "6853630037", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47478", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids went straight for the taco food truck .", "storylet_id": "237391"}], [{"original_text": "The lines were pretty long but the food was worth it. ", "album_id": "72157629263336881", "photo_flickr_id": "6853679701", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47478", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lines were pretty long but the food was worth it .", "storylet_id": "237392"}], [{"original_text": "We went back for seconds and there were still long lines. ", "album_id": "72157629263336881", "photo_flickr_id": "6853702703", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47478", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went back for seconds and there were still long lines .", "storylet_id": "237393"}], [{"original_text": "Everyone loved the tacos it was a big winner at the expo! ", "album_id": "72157629263336881", "photo_flickr_id": "6853707331", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47478", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone loved the tacos it was a big winner at the expo !", "storylet_id": "237394"}], [{"original_text": "People from all over the town came to the Food Truck Festival to try what local food truck has to offer.", "album_id": "72157629263336881", "photo_flickr_id": "6853614075", "setting": "last-3-pick-old-and-tell", "worker_id": "MBVFPT101V7PPDD", "story_id": "47479", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people from all over the town came to the food truck festival to try what local food truck has to offer .", "storylet_id": "237395"}], [{"original_text": "These kids are waiting their turn to try some Jalapeno Sliders.", "album_id": "72157629263336881", "photo_flickr_id": "6853630037", "setting": "last-3-pick-old-and-tell", "worker_id": "MBVFPT101V7PPDD", "story_id": "47479", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these kids are waiting their turn to try some jalapeno sliders .", "storylet_id": "237396"}], [{"original_text": "There is also a booth for homemade ice cream seen at the festival.", "album_id": "72157629263336881", "photo_flickr_id": "6853644591", "setting": "last-3-pick-old-and-tell", "worker_id": "MBVFPT101V7PPDD", "story_id": "47479", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is also a booth for homemade ice cream seen at the festival .", "storylet_id": "237397"}], [{"original_text": "The taco truck ready to serve customers some good tasting tacos.", "album_id": "72157629263336881", "photo_flickr_id": "6853702703", "setting": "last-3-pick-old-and-tell", "worker_id": "MBVFPT101V7PPDD", "story_id": "47479", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the taco truck ready to serve customers some good tasting tacos .", "storylet_id": "237398"}], [{"original_text": "Some trucks, like this one, offer different flavors that are so appealing to your taste buds.", "album_id": "72157629263336881", "photo_flickr_id": "6853733237", "setting": "last-3-pick-old-and-tell", "worker_id": "MBVFPT101V7PPDD", "story_id": "47479", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some trucks , like this one , offer different flavors that are so appealing to your taste buds .", "storylet_id": "237399"}], [{"original_text": "Last Thursday I was playing with my toys when I heard some call my name.", "album_id": "72157628821312617", "photo_flickr_id": "6678101503", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47480", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last thursday i was playing with my toys when i heard some call my name .", "storylet_id": "237400"}], [{"original_text": "I went over to my mom and asked her if she called me but she said no.", "album_id": "72157628821312617", "photo_flickr_id": "6678100971", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47480", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went over to my mom and asked her if she called me but she said no .", "storylet_id": "237401"}], [{"original_text": "I went to my grandma but she said no too.", "album_id": "72157628821312617", "photo_flickr_id": "6678098949", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47480", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i went to my grandma but she said no too .", "storylet_id": "237402"}], [{"original_text": "My sister also said no.", "album_id": "72157628821312617", "photo_flickr_id": "6678099675", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47480", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my sister also said no .", "storylet_id": "237403"}], [{"original_text": "My other sister also said no. I guess no one called me.", "album_id": "72157628821312617", "photo_flickr_id": "6678102295", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47480", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my other sister also said no . i guess no one called me .", "storylet_id": "237404"}], [{"original_text": "John makes his deliveries to the local market. ", "album_id": "72157628821312617", "photo_flickr_id": "6678096507", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47481", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] makes his deliveries to the local market .", "storylet_id": "237405"}], [{"original_text": "The shop keeper tallies the items he has delivered. ", "album_id": "72157628821312617", "photo_flickr_id": "6678097759", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47481", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the shop keeper tallies the items he has delivered .", "storylet_id": "237406"}], [{"original_text": "John them adds up his earnings for the day. ", "album_id": "72157628821312617", "photo_flickr_id": "6678099675", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47481", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] them adds up his earnings for the day .", "storylet_id": "237407"}], [{"original_text": "The shop keeper puts things in order. ", "album_id": "72157628821312617", "photo_flickr_id": "6678096011", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47481", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the shop keeper puts things in order .", "storylet_id": "237408"}], [{"original_text": "Then they wait to open for the day and serve customers. ", "album_id": "72157628821312617", "photo_flickr_id": "6678100971", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47481", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then they wait to open for the day and serve customers .", "storylet_id": "237409"}], [{"original_text": "Upon reaching my destination to journey through the world, I was surprised to find such young people working.", "album_id": "72157628821312617", "photo_flickr_id": "6678101503", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47482", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "upon reaching my destination to journey through the world , i was surprised to find such young people working .", "storylet_id": "237410"}], [{"original_text": "We strolled down the street until we found this vendor selling us some bread for dinner.", "album_id": "72157628821312617", "photo_flickr_id": "6678100971", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47482", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we strolled down the street until we found this vendor selling us some bread for dinner .", "storylet_id": "237411"}], [{"original_text": "It is always interesting to see how other parts of the world treat their elderly. I was pleasantly surprised on this trip.", "album_id": "72157628821312617", "photo_flickr_id": "6678098949", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47482", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is always interesting to see how other parts of the world treat their elderly . i was pleasantly surprised on this trip .", "storylet_id": "237412"}], [{"original_text": "I was fun to see all the different items that the store owners sold.", "album_id": "72157628821312617", "photo_flickr_id": "6678099675", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47482", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was fun to see all the different items that the store owners sold .", "storylet_id": "237413"}], [{"original_text": "But, I just had to take this picture because it was just so unbelievable that someone would be messing with their feet inside the store. Oh well, I guess it is ok to do that here.", "album_id": "72157628821312617", "photo_flickr_id": "6678102295", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47482", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but , i just had to take this picture because it was just so unbelievable that someone would be messing with their feet inside the store . oh well , i guess it is ok to do that here .", "storylet_id": "237414"}], [{"original_text": "The guy brought in merchandise to be sold.", "album_id": "72157628821312617", "photo_flickr_id": "6678096507", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "47483", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guy brought in merchandise to be sold .", "storylet_id": "237415"}], [{"original_text": "A lady was writing down the store's inventory.", "album_id": "72157628821312617", "photo_flickr_id": "6678097759", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "47483", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lady was writing down the store 's inventory .", "storylet_id": "237416"}], [{"original_text": "Another person was doing the same thing at the store next door.", "album_id": "72157628821312617", "photo_flickr_id": "6678099675", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "47483", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another person was doing the same thing at the store next door .", "storylet_id": "237417"}], [{"original_text": "A customer was resting after looking at various things sold at the store.", "album_id": "72157628821312617", "photo_flickr_id": "6678096011", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "47483", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a customer was resting after looking at various things sold at the store .", "storylet_id": "237418"}], [{"original_text": "The seller looked bored since there was no customer coming to the store.", "album_id": "72157628821312617", "photo_flickr_id": "6678100971", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "47483", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the seller looked bored since there was no customer coming to the store .", "storylet_id": "237419"}], [{"original_text": "Today, I went shopping.", "album_id": "72157628821312617", "photo_flickr_id": "6678096507", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47484", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , i went shopping .", "storylet_id": "237420"}], [{"original_text": "It was a wonderful experience.", "album_id": "72157628821312617", "photo_flickr_id": "6678097759", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47484", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a wonderful experience .", "storylet_id": "237421"}], [{"original_text": "I saw all my friends while I was out.", "album_id": "72157628821312617", "photo_flickr_id": "6678099675", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47484", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i saw all my friends while i was out .", "storylet_id": "237422"}], [{"original_text": "I passed by a lady.", "album_id": "72157628821312617", "photo_flickr_id": "6678096011", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47484", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i passed by a lady .", "storylet_id": "237423"}], [{"original_text": "It was a good day", "album_id": "72157628821312617", "photo_flickr_id": "6678100971", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47484", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a good day", "storylet_id": "237424"}], [{"original_text": "John was 28 when he left his family. He was unhappy with his wife and child and decided to devote more time to his job. ", "album_id": "118065", "photo_flickr_id": "4690322", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "47485", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was 28 when he left his family . he was unhappy with his wife and child and decided to devote more time to his job .", "storylet_id": "237425"}], [{"original_text": "That was 40 years ago. He now wondered how his wife and child were doing. He did think about them sometimes. ", "album_id": "118065", "photo_flickr_id": "4690339", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "47485", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that was 40 years ago . he now wondered how his wife and child were doing . he did think about them sometimes .", "storylet_id": "237426"}], [{"original_text": "He considered that maybe his son grew up sad or lonely, selling trinkets in the street to survive.", "album_id": "118065", "photo_flickr_id": "4690442", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "47485", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he considered that maybe his son grew up sad or lonely , selling trinkets in the street to survive .", "storylet_id": "237427"}], [{"original_text": "But then John remembered how happy he was to go off alone, without obligations or commitment.", "album_id": "118065", "photo_flickr_id": "4690461", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "47485", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but then [male] remembered how happy he was to go off alone , without obligations or commitment .", "storylet_id": "237428"}], [{"original_text": "And he knew, even though he was now an old man, that he had made the right decision to leave.", "album_id": "118065", "photo_flickr_id": "4690392", "setting": "first-2-pick-and-tell", "worker_id": "1C0DOLMVDLQFCXR", "story_id": "47485", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and he knew , even though he was now an old man , that he had made the right decision to leave .", "storylet_id": "237429"}], [{"original_text": "Walking int he market on a sunny and cold day. ", "album_id": "118065", "photo_flickr_id": "4690314", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47486", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walking int he market on a sunny and cold day .", "storylet_id": "237430"}], [{"original_text": "The dad goofy and funny and telling jokes. ", "album_id": "118065", "photo_flickr_id": "4690372", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47486", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dad goofy and funny and telling jokes .", "storylet_id": "237431"}], [{"original_text": "The son was smiling at his dad jokes. ", "album_id": "118065", "photo_flickr_id": "4690322", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47486", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the son was smiling at his dad jokes .", "storylet_id": "237432"}], [{"original_text": "The mother and the son were getting hungry. ", "album_id": "118065", "photo_flickr_id": "4690339", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47486", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the mother and the son were getting hungry .", "storylet_id": "237433"}], [{"original_text": "Decided to eat street food and enjoyed it. ", "album_id": "118065", "photo_flickr_id": "4690442", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47486", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "decided to eat street food and enjoyed it .", "storylet_id": "237434"}], [{"original_text": "Our trip to the festival made us all so excited.", "album_id": "118065", "photo_flickr_id": "4690314", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47487", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip to the festival made us all so excited .", "storylet_id": "237435"}], [{"original_text": "There was an old man there who told us stories from before we were born.", "album_id": "118065", "photo_flickr_id": "4690372", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47487", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was an old man there who told us stories from before we were born .", "storylet_id": "237436"}], [{"original_text": "His son was also there, spreading joy with his strange sense of humor.", "album_id": "118065", "photo_flickr_id": "4690322", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47487", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his son was also there , spreading joy with his strange sense of humor .", "storylet_id": "237437"}], [{"original_text": "All around children sat on their parents shoulders waiting for the festivities to begin.", "album_id": "118065", "photo_flickr_id": "4690339", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47487", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all around children sat on their parents shoulders waiting for the festivities to begin .", "storylet_id": "237438"}], [{"original_text": "Some people got tired and sat as they waited with their food.", "album_id": "118065", "photo_flickr_id": "4690442", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47487", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people got tired and sat as they waited with their food .", "storylet_id": "237439"}], [{"original_text": "During my walk through the town I saw the interesting colors of the buildings. ", "album_id": "118065", "photo_flickr_id": "4690314", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47488", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during my walk through the town i saw the interesting colors of the buildings .", "storylet_id": "237440"}], [{"original_text": "Dad walked with me too and really enjoyed himself. ", "album_id": "118065", "photo_flickr_id": "4690372", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47488", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dad walked with me too and really enjoyed himself .", "storylet_id": "237441"}], [{"original_text": "My brother enjoyed the company but no so much the town. ", "album_id": "118065", "photo_flickr_id": "4690322", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47488", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brother enjoyed the company but no so much the town .", "storylet_id": "237442"}], [{"original_text": "His wife and child seemed bored by the end of the trip. ", "album_id": "118065", "photo_flickr_id": "4690339", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47488", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his wife and child seemed bored by the end of the trip .", "storylet_id": "237443"}], [{"original_text": "On the way back from our walk we saw a boy sitting there eating his noodles and I wondered if he had a home. ", "album_id": "118065", "photo_flickr_id": "4690442", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47488", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the way back from our walk we saw a boy sitting there eating his noodles and i wondered if he had a home .", "storylet_id": "237444"}], [{"original_text": "This was me back in 1967.", "album_id": "118065", "photo_flickr_id": "4690322", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47489", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was me back in 1967 .", "storylet_id": "237445"}], [{"original_text": "I had the world at my fingertips, with a lovely wife and child.", "album_id": "118065", "photo_flickr_id": "4690339", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47489", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had the world at my fingertips , with a lovely wife and child .", "storylet_id": "237446"}], [{"original_text": "My child wasn't quite as lovely in the 1990's.", "album_id": "118065", "photo_flickr_id": "4690442", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47489", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my child was n't quite as lovely in the 1990 's .", "storylet_id": "237447"}], [{"original_text": "Sometimes the only was I can really cope is to take a walk and clear my head.", "album_id": "118065", "photo_flickr_id": "4690461", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47489", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes the only was i can really cope is to take a walk and clear my head .", "storylet_id": "237448"}], [{"original_text": "Today, I look as old as I feel.", "album_id": "118065", "photo_flickr_id": "4690392", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47489", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "today , i look as old as i feel .", "storylet_id": "237449"}], [{"original_text": "I went to the awards ceremony.", "album_id": "72157623421040528", "photo_flickr_id": "4351068729", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47490", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the awards ceremony .", "storylet_id": "237450"}], [{"original_text": "There were many contestants.", "album_id": "72157623421040528", "photo_flickr_id": "4351068719", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47490", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many contestants .", "storylet_id": "237451"}], [{"original_text": "Only 1 would be able to win the grand prize.", "album_id": "72157623421040528", "photo_flickr_id": "4351068717", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47490", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "only 1 would be able to win the grand prize .", "storylet_id": "237452"}], [{"original_text": "There was a lot of tension.", "album_id": "72157623421040528", "photo_flickr_id": "4351822044", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47490", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a lot of tension .", "storylet_id": "237453"}], [{"original_text": "Eventually the winner was announced and he was very grateful.", "album_id": "72157623421040528", "photo_flickr_id": "4351068725", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47490", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually the winner was announced and he was very grateful .", "storylet_id": "237454"}], [{"original_text": "It was a conference to celebrate the USA team.", "album_id": "72157623421040528", "photo_flickr_id": "4351068729", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47491", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a conference to celebrate the location team .", "storylet_id": "237455"}], [{"original_text": "The USA team arrive in their jackets.", "album_id": "72157623421040528", "photo_flickr_id": "4351068717", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47491", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the location team arrive in their jackets .", "storylet_id": "237456"}], [{"original_text": "These shirts were on display and available to purchase at the register.", "album_id": "72157623421040528", "photo_flickr_id": "4351822050", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47491", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these shirts were on display and available to purchase at the register .", "storylet_id": "237457"}], [{"original_text": "Fans got their chance to talk among the members of the USA team.", "album_id": "72157623421040528", "photo_flickr_id": "4351068725", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47491", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fans got their chance to talk among the members of the location team .", "storylet_id": "237458"}], [{"original_text": "The USA team having conversations with the fans.", "album_id": "72157623421040528", "photo_flickr_id": "4351822032", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47491", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the location team having conversations with the fans .", "storylet_id": "237459"}], [{"original_text": "This is a picture of three people.", "album_id": "72157623421040528", "photo_flickr_id": "4351068729", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47492", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of three people .", "storylet_id": "237460"}], [{"original_text": "This is a picture of a group.", "album_id": "72157623421040528", "photo_flickr_id": "4351068717", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47492", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a group .", "storylet_id": "237461"}], [{"original_text": "This is a picture of apparel.", "album_id": "72157623421040528", "photo_flickr_id": "4351822050", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47492", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of apparel .", "storylet_id": "237462"}], [{"original_text": "This is a picture of two men.", "album_id": "72157623421040528", "photo_flickr_id": "4351068725", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47492", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of two men .", "storylet_id": "237463"}], [{"original_text": "This is a picture of a crowd.", "album_id": "72157623421040528", "photo_flickr_id": "4351822032", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47492", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a crowd .", "storylet_id": "237464"}], [{"original_text": "Here at a Team USA meeting. They are showing the new clothing line for 2015.", "album_id": "72157623421040528", "photo_flickr_id": "4351068729", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47493", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here at a location location meeting . they are showing the new clothing line for 2015 .", "storylet_id": "237465"}], [{"original_text": "The jackets remind me of robocop. Pretty nice too.", "album_id": "72157623421040528", "photo_flickr_id": "4351068717", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47493", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the jackets remind me of robocop . pretty nice too .", "storylet_id": "237466"}], [{"original_text": "Here is a lighter jacket and tee shirt combination that is really nice.", "album_id": "72157623421040528", "photo_flickr_id": "4351822050", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47493", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is a lighter jacket and tee shirt combination that is really nice .", "storylet_id": "237467"}], [{"original_text": "Here are a couple of the designers, give them props for great work.", "album_id": "72157623421040528", "photo_flickr_id": "4351068725", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47493", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here are a couple of the designers , give them props for great work .", "storylet_id": "237468"}], [{"original_text": "Everyone will be wearing these to the matches.", "album_id": "72157623421040528", "photo_flickr_id": "4351822032", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47493", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone will be wearing these to the matches .", "storylet_id": "237469"}], [{"original_text": "The group is gathering to present their views.", "album_id": "72157623421040528", "photo_flickr_id": "4351068729", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47494", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group is gathering to present their views .", "storylet_id": "237470"}], [{"original_text": "It looks like everyone is here so we can begin.", "album_id": "72157623421040528", "photo_flickr_id": "4351068719", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47494", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it looks like everyone is here so we can begin .", "storylet_id": "237471"}], [{"original_text": "It is now time to get together to discuss what was presented.", "album_id": "72157623421040528", "photo_flickr_id": "4351068717", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47494", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is now time to get together to discuss what was presented .", "storylet_id": "237472"}], [{"original_text": "It takes a lot of people working behind the scenes to make a function work perfectly.", "album_id": "72157623421040528", "photo_flickr_id": "4351822044", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47494", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it takes a lot of people working behind the scenes to make a function work perfectly .", "storylet_id": "237473"}], [{"original_text": "It is time to share with friends what we have heard and learned.", "album_id": "72157623421040528", "photo_flickr_id": "4351068725", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47494", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is time to share with friends what we have heard and learned .", "storylet_id": "237474"}], [{"original_text": "We decided to take a country drive around our village.", "album_id": "72157623714894246", "photo_flickr_id": "4426043960", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47495", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to take a country drive around our village .", "storylet_id": "237475"}], [{"original_text": "Farm country is full of rustic charm.", "album_id": "72157623714894246", "photo_flickr_id": "4426044670", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47495", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "farm country is full of rustic charm .", "storylet_id": "237476"}], [{"original_text": "The farmer's market teems with fresh fruits and vegetables. We bought a lot of it!", "album_id": "72157623714894246", "photo_flickr_id": "4467965708", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47495", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the farmer 's market teems with fresh fruits and vegetables . we bought a lot of it !", "storylet_id": "237477"}], [{"original_text": "We were proud to see such art displayed here.", "album_id": "72157623714894246", "photo_flickr_id": "4467193341", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47495", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were proud to see such art displayed here .", "storylet_id": "237478"}], [{"original_text": "The old architecture is also artistic!", "album_id": "72157623714894246", "photo_flickr_id": "4467193103", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47495", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the old architecture is also artistic !", "storylet_id": "237479"}], [{"original_text": "We needed to get groceries today. I never noticed the flooring between these buildings before.", "album_id": "72157623714894246", "photo_flickr_id": "4467964380", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47496", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we needed to get groceries today . i never noticed the flooring between these buildings before .", "storylet_id": "237480"}], [{"original_text": "Here we are at Central Market.", "album_id": "72157623714894246", "photo_flickr_id": "4427751793", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47496", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we are at central market .", "storylet_id": "237481"}], [{"original_text": "Fresh cabbage! Can't wait to make pigs in the blanket.", "album_id": "72157623714894246", "photo_flickr_id": "4467965446", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47496", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "fresh cabbage ! ca n't wait to make pigs in the blanket .", "storylet_id": "237482"}], [{"original_text": "Snapped this picture remember what was playing at the theatre this week.", "album_id": "72157623714894246", "photo_flickr_id": "4467966062", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47496", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "snapped this picture remember what was playing at the theatre this week .", "storylet_id": "237483"}], [{"original_text": "I had to zoom in, because I just adore this statute.", "album_id": "72157623714894246", "photo_flickr_id": "4467193341", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47496", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had to zoom in , because i just adore this statute .", "storylet_id": "237484"}], [{"original_text": "There is something about a small farm that I like.", "album_id": "72157623714894246", "photo_flickr_id": "4426043960", "setting": "last-3-pick-old-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "47497", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is something about a small farm that i like .", "storylet_id": "237485"}], [{"original_text": "Fields of corn and a nice small birdhouse.", "album_id": "72157623714894246", "photo_flickr_id": "4426044670", "setting": "last-3-pick-old-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "47497", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fields of corn and a nice small birdhouse .", "storylet_id": "237486"}], [{"original_text": "The local market has some great looking food.", "album_id": "72157623714894246", "photo_flickr_id": "4467965708", "setting": "last-3-pick-old-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "47497", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the local market has some great looking food .", "storylet_id": "237487"}], [{"original_text": "A statue to watch over the town.", "album_id": "72157623714894246", "photo_flickr_id": "4467193341", "setting": "last-3-pick-old-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "47497", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a statue to watch over the town .", "storylet_id": "237488"}], [{"original_text": "I like these arched windows.", "album_id": "72157623714894246", "photo_flickr_id": "4467193103", "setting": "last-3-pick-old-and-tell", "worker_id": "ALHW5X99W46GOC1", "story_id": "47497", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i like these arched windows .", "storylet_id": "237489"}], [{"original_text": "As I continued my car journey through farming country, I spotted a picture perfect farm house. ", "album_id": "72157623714894246", "photo_flickr_id": "4426043960", "setting": "last-3-pick-old-and-tell", "worker_id": "DSAL3QLMT73WI5U", "story_id": "47498", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as i continued my car journey through farming country , i spotted a picture perfect farm house .", "storylet_id": "237490"}], [{"original_text": "It looks like the fields go on forever!", "album_id": "72157623714894246", "photo_flickr_id": "4426044670", "setting": "last-3-pick-old-and-tell", "worker_id": "DSAL3QLMT73WI5U", "story_id": "47498", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it looks like the fields go on forever !", "storylet_id": "237491"}], [{"original_text": "I needed some personal groceries and felt their local farmer's market would be the perfect place.", "album_id": "72157623714894246", "photo_flickr_id": "4467965708", "setting": "last-3-pick-old-and-tell", "worker_id": "DSAL3QLMT73WI5U", "story_id": "47498", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i needed some personal groceries and felt their local farmer 's market would be the perfect place .", "storylet_id": "237492"}], [{"original_text": "On my way out of town I saw this statue placed in an alcove on the second floor.", "album_id": "72157623714894246", "photo_flickr_id": "4467193341", "setting": "last-3-pick-old-and-tell", "worker_id": "DSAL3QLMT73WI5U", "story_id": "47498", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on my way out of town i saw this statue placed in an alcove on the second floor .", "storylet_id": "237493"}], [{"original_text": "I stopped to see who he was and discovered it to be the town's founder that they have honored. ", "album_id": "72157623714894246", "photo_flickr_id": "4467193103", "setting": "last-3-pick-old-and-tell", "worker_id": "DSAL3QLMT73WI5U", "story_id": "47498", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i stopped to see who he was and discovered it to be the town 's founder that they have honored .", "storylet_id": "237494"}], [{"original_text": "I own a four-acre four in Sioux City, Iowa.", "album_id": "72157623714894246", "photo_flickr_id": "4426043960", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47499", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i own a four-acre four in location location , location .", "storylet_id": "237495"}], [{"original_text": "We grow a lot of corn and tomatoes, but also have a good deal of open terrain.", "album_id": "72157623714894246", "photo_flickr_id": "4426044670", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47499", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we grow a lot of corn and tomatoes , but also have a good deal of open terrain .", "storylet_id": "237496"}], [{"original_text": "On the weekends I sell our vegetables at a local market.", "album_id": "72157623714894246", "photo_flickr_id": "4467965708", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47499", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on the weekends i sell our vegetables at a local market .", "storylet_id": "237497"}], [{"original_text": "The market features a statue of Iowa's first governor on the outside of the building.", "album_id": "72157623714894246", "photo_flickr_id": "4467193341", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47499", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the market features a statue of location 's first governor on the outside of the building .", "storylet_id": "237498"}], [{"original_text": "If you look at the building from afar, it's pretty plain.", "album_id": "72157623714894246", "photo_flickr_id": "4467193103", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47499", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "if you look at the building from afar , it 's pretty plain .", "storylet_id": "237499"}], [{"original_text": "The museum was my favorite part of the trip.", "album_id": "72157600773345228", "photo_flickr_id": "784295046", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47500", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the museum was my favorite part of the trip .", "storylet_id": "237500"}], [{"original_text": "When you enter it's like another world.", "album_id": "72157600773345228", "photo_flickr_id": "784295170", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47500", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when you enter it 's like another world .", "storylet_id": "237501"}], [{"original_text": "The attention to details can't be missed.", "album_id": "72157600773345228", "photo_flickr_id": "783418723", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47500", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the attention to details ca n't be missed .", "storylet_id": "237502"}], [{"original_text": "The crowds started to build as the day went on.", "album_id": "72157600773345228", "photo_flickr_id": "783418799", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47500", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowds started to build as the day went on .", "storylet_id": "237503"}], [{"original_text": "Closer to closing time though they thinned out.", "album_id": "72157600773345228", "photo_flickr_id": "783418909", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47500", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "closer to closing time though they thinned out .", "storylet_id": "237504"}], [{"original_text": "These people are going to go on a tour.", "album_id": "72157600773345228", "photo_flickr_id": "783419493", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47501", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these people are going to go on a tour .", "storylet_id": "237505"}], [{"original_text": "The painting is very large and beautiful.", "album_id": "72157600773345228", "photo_flickr_id": "784295046", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47501", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the painting is very large and beautiful .", "storylet_id": "237506"}], [{"original_text": "The walls are covered in large, beautiful paintings!", "album_id": "72157600773345228", "photo_flickr_id": "783418909", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47501", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the walls are covered in large , beautiful paintings !", "storylet_id": "237507"}], [{"original_text": "There are many chandeliers hanging from the ceiling.", "album_id": "72157600773345228", "photo_flickr_id": "783418799", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47501", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are many chandeliers hanging from the ceiling .", "storylet_id": "237508"}], [{"original_text": "There are paintings that even cover the ceilings!", "album_id": "72157600773345228", "photo_flickr_id": "783419093", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47501", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are paintings that even cover the ceilings !", "storylet_id": "237509"}], [{"original_text": "Jack and I went on our first vacation together.", "album_id": "72157600773345228", "photo_flickr_id": "783419493", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "47502", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and i went on our first vacation together .", "storylet_id": "237510"}], [{"original_text": "We went to Italy! ", "album_id": "72157600773345228", "photo_flickr_id": "784295046", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "47502", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to location !", "storylet_id": "237511"}], [{"original_text": "We got to see some amazing historical sights.", "album_id": "72157600773345228", "photo_flickr_id": "783418909", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "47502", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got to see some amazing historical sights .", "storylet_id": "237512"}], [{"original_text": "We visited different places with our touring guide buddies.", "album_id": "72157600773345228", "photo_flickr_id": "783418799", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "47502", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we visited different places with our touring guide buddies .", "storylet_id": "237513"}], [{"original_text": "We were able to capture some beautiful pictures of the sites.", "album_id": "72157600773345228", "photo_flickr_id": "783419093", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "47502", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were able to capture some beautiful pictures of the sites .", "storylet_id": "237514"}], [{"original_text": "When I was at the museum I saw a lot great pieces of art.", "album_id": "72157600773345228", "photo_flickr_id": "784295046", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47503", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i was at the museum i saw a lot great pieces of art .", "storylet_id": "237515"}], [{"original_text": "The entire building was beautiful.", "album_id": "72157600773345228", "photo_flickr_id": "784295170", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47503", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the entire building was beautiful .", "storylet_id": "237516"}], [{"original_text": "I had a great time there.", "album_id": "72157600773345228", "photo_flickr_id": "783418723", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47503", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time there .", "storylet_id": "237517"}], [{"original_text": "It was so pretty.", "album_id": "72157600773345228", "photo_flickr_id": "783418799", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47503", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was so pretty .", "storylet_id": "237518"}], [{"original_text": "I took lots of pictures.", "album_id": "72157600773345228", "photo_flickr_id": "783418909", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47503", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i took lots of pictures .", "storylet_id": "237519"}], [{"original_text": "The couple took photos in front of the tower", "album_id": "72157600773345228", "photo_flickr_id": "783419493", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47504", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple took photos in front of the tower", "storylet_id": "237520"}], [{"original_text": "and then saw a giant painting ", "album_id": "72157600773345228", "photo_flickr_id": "784295046", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47504", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and then saw a giant painting", "storylet_id": "237521"}], [{"original_text": "before viewing many other paintings ", "album_id": "72157600773345228", "photo_flickr_id": "783418909", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47504", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "before viewing many other paintings", "storylet_id": "237522"}], [{"original_text": "and even a room with a huge chandelier.", "album_id": "72157600773345228", "photo_flickr_id": "783418799", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47504", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and even a room with a huge chandelier .", "storylet_id": "237523"}], [{"original_text": "Then they went into the most beautiful room of all. ", "album_id": "72157600773345228", "photo_flickr_id": "783419093", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47504", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then they went into the most beautiful room of all .", "storylet_id": "237524"}], [{"original_text": "Last weekend we were in the park taking pictures of all the flowers we could find.", "album_id": "72157623205073294", "photo_flickr_id": "4272135271", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47505", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last weekend we were in the park taking pictures of all the flowers we could find .", "storylet_id": "237525"}], [{"original_text": "There were so many in different shapes and colors.", "album_id": "72157623205073294", "photo_flickr_id": "4272877118", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47505", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many in different shapes and colors .", "storylet_id": "237526"}], [{"original_text": "Suddenly there was a lot of noise behind us and then w saw that a street performance was occurring.", "album_id": "72157623205073294", "photo_flickr_id": "4272143587", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47505", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "suddenly there was a lot of noise behind us and then w saw that a street performance was occurring .", "storylet_id": "237527"}], [{"original_text": "We went over to watch some of the talented performers.", "album_id": "72157623205073294", "photo_flickr_id": "4272147145", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47505", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went over to watch some of the talented performers .", "storylet_id": "237528"}], [{"original_text": "It was a great way to end the day.", "album_id": "72157623205073294", "photo_flickr_id": "4272148613", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47505", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great way to end the day .", "storylet_id": "237529"}], [{"original_text": "Outside of the memorial park, there was an event going on.", "album_id": "72157623205073294", "photo_flickr_id": "4272135271", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "47506", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "outside of the memorial park , there was an event going on .", "storylet_id": "237530"}], [{"original_text": "There was a fundraiser in which a lot of people gathered around.", "album_id": "72157623205073294", "photo_flickr_id": "4272143587", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "47506", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a fundraiser in which a lot of people gathered around .", "storylet_id": "237531"}], [{"original_text": "Many small activities were going on which involved the whole community.", "album_id": "72157623205073294", "photo_flickr_id": "4272886470", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "47506", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many small activities were going on which involved the whole community .", "storylet_id": "237532"}], [{"original_text": "It was right outside this building right here.", "album_id": "72157623205073294", "photo_flickr_id": "4272144501", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "47506", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was right outside this building right here .", "storylet_id": "237533"}], [{"original_text": "Many people passed by, but also looked at what was going on.", "album_id": "72157623205073294", "photo_flickr_id": "4272152531", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "47506", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many people passed by , but also looked at what was going on .", "storylet_id": "237534"}], [{"original_text": "It was a beautiful day in the town.", "album_id": "72157623205073294", "photo_flickr_id": "4272135271", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "47507", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful day in the town .", "storylet_id": "237535"}], [{"original_text": "People gathered around to take part in, or watch different activities.", "album_id": "72157623205073294", "photo_flickr_id": "4272143587", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "47507", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people gathered around to take part in , or watch different activities .", "storylet_id": "237536"}], [{"original_text": "men in white shirts displayed their talent and had a great time together.", "album_id": "72157623205073294", "photo_flickr_id": "4272886470", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "47507", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "men in white shirts displayed their talent and had a great time together .", "storylet_id": "237537"}], [{"original_text": "Nearby people watched everything in awe and had a wonderful time.", "album_id": "72157623205073294", "photo_flickr_id": "4272144501", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "47507", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "nearby people watched everything in awe and had a wonderful time .", "storylet_id": "237538"}], [{"original_text": "After it was over, everyone left to different parts of the town to enjoy the rest of the day.", "album_id": "72157623205073294", "photo_flickr_id": "4272152531", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "47507", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after it was over , everyone left to different parts of the town to enjoy the rest of the day .", "storylet_id": "237539"}], [{"original_text": "This is the day we went to see the city's parks.", "album_id": "72157623205073294", "photo_flickr_id": "4272135271", "setting": "last-3-pick-old-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "47508", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the day we went to see the city 's parks .", "storylet_id": "237540"}], [{"original_text": "We saw all kinds of pretty flowers.", "album_id": "72157623205073294", "photo_flickr_id": "4272877118", "setting": "last-3-pick-old-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "47508", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw all kinds of pretty flowers .", "storylet_id": "237541"}], [{"original_text": "We went to see the parade downtown.", "album_id": "72157623205073294", "photo_flickr_id": "4272143587", "setting": "last-3-pick-old-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "47508", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went to see the parade downtown .", "storylet_id": "237542"}], [{"original_text": "There were all kinds of performers there.", "album_id": "72157623205073294", "photo_flickr_id": "4272147145", "setting": "last-3-pick-old-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "47508", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were all kinds of performers there .", "storylet_id": "237543"}], [{"original_text": "This guy was a fantastic juggler there.", "album_id": "72157623205073294", "photo_flickr_id": "4272148613", "setting": "last-3-pick-old-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "47508", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this guy was a fantastic juggler there .", "storylet_id": "237544"}], [{"original_text": "I thought it would be a lovely day to visit the botanical gardens.", "album_id": "72157623205073294", "photo_flickr_id": "4272135271", "setting": "last-3-pick-old-and-tell", "worker_id": "PI7MFTBPMTN3A4A", "story_id": "47509", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i thought it would be a lovely day to visit the botanical gardens .", "storylet_id": "237545"}], [{"original_text": "Looks like there is a big celebration going on. Wonder whats going on.", "album_id": "72157623205073294", "photo_flickr_id": "4272143587", "setting": "last-3-pick-old-and-tell", "worker_id": "PI7MFTBPMTN3A4A", "story_id": "47509", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "looks like there is a big celebration going on . wonder whats going on .", "storylet_id": "237546"}], [{"original_text": "Oh snap!, It's a live street dance off. I got twenty on the bald guy.", "album_id": "72157623205073294", "photo_flickr_id": "4272886470", "setting": "last-3-pick-old-and-tell", "worker_id": "PI7MFTBPMTN3A4A", "story_id": "47509", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "oh snap ! , it 's a live street dance off . i got twenty on the bald guy .", "storylet_id": "237547"}], [{"original_text": "Wha-the? I think they just did a twilight dance. Everything is in black and white. ", "album_id": "72157623205073294", "photo_flickr_id": "4272144501", "setting": "last-3-pick-old-and-tell", "worker_id": "PI7MFTBPMTN3A4A", "story_id": "47509", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "wha-the ? i think they just did a twilight dance . everything is in black and white .", "storylet_id": "237548"}], [{"original_text": "Well, Looks like we are in the twilight zone. Anyone got a paint brush?", "album_id": "72157623205073294", "photo_flickr_id": "4272152531", "setting": "last-3-pick-old-and-tell", "worker_id": "PI7MFTBPMTN3A4A", "story_id": "47509", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "well , looks like we are in the twilight zone . anyone got a paint brush ?", "storylet_id": "237549"}], [{"original_text": "I had a hard time deciding what to buy at the market today.", "album_id": "72157623493523479", "photo_flickr_id": "4431658255", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47510", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a hard time deciding what to buy at the market today .", "storylet_id": "237550"}], [{"original_text": "There were many good deals to be had.", "album_id": "72157623493523479", "photo_flickr_id": "4432428876", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47510", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many good deals to be had .", "storylet_id": "237551"}], [{"original_text": "I bought some small pumpkins.", "album_id": "72157623493523479", "photo_flickr_id": "4432429052", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47510", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i bought some small pumpkins .", "storylet_id": "237552"}], [{"original_text": "I also bought these old bananas.", "album_id": "72157623493523479", "photo_flickr_id": "4432429286", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47510", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also bought these old bananas .", "storylet_id": "237553"}], [{"original_text": "After that I went back home to eat.", "album_id": "72157623493523479", "photo_flickr_id": "4432429460", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47510", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that i went back home to eat .", "storylet_id": "237554"}], [{"original_text": "Every weekend we go to the market to get fresh food.", "album_id": "72157623493523479", "photo_flickr_id": "4432427190", "setting": "first-2-pick-and-tell", "worker_id": "IXCSR0DJU389YLX", "story_id": "47511", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every weekend we go to the market to get fresh food .", "storylet_id": "237555"}], [{"original_text": "Here are some of the fresh vegetables that we pick up.", "album_id": "72157623493523479", "photo_flickr_id": "4432427938", "setting": "first-2-pick-and-tell", "worker_id": "IXCSR0DJU389YLX", "story_id": "47511", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here are some of the fresh vegetables that we pick up .", "storylet_id": "237556"}], [{"original_text": "We usually get one bread loaf from the bakery inside of the market.", "album_id": "72157623493523479", "photo_flickr_id": "4432428876", "setting": "first-2-pick-and-tell", "worker_id": "IXCSR0DJU389YLX", "story_id": "47511", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we usually get one bread loaf from the bakery inside of the market .", "storylet_id": "237557"}], [{"original_text": "These pumpkins are so sweet and taste great in pies.", "album_id": "72157623493523479", "photo_flickr_id": "4432429052", "setting": "first-2-pick-and-tell", "worker_id": "IXCSR0DJU389YLX", "story_id": "47511", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these pumpkins are so sweet and taste great in pies .", "storylet_id": "237558"}], [{"original_text": "On our way out of the market we always make sure to get some cabbage.", "album_id": "72157623493523479", "photo_flickr_id": "4432429460", "setting": "first-2-pick-and-tell", "worker_id": "IXCSR0DJU389YLX", "story_id": "47511", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on our way out of the market we always make sure to get some cabbage .", "storylet_id": "237559"}], [{"original_text": "I found a basket of bread today at the market. I had to buy it all. ", "album_id": "72157623493523479", "photo_flickr_id": "4431658255", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47512", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i found a basket of bread today at the market . i had to buy it all .", "storylet_id": "237560"}], [{"original_text": "I went crazy when I saw a case full of pastries. I had to buy those too. ", "album_id": "72157623493523479", "photo_flickr_id": "4432428876", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47512", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went crazy when i saw a case full of pastries . i had to buy those too .", "storylet_id": "237561"}], [{"original_text": "Mini pumpkins are so cute! I bought 11. ", "album_id": "72157623493523479", "photo_flickr_id": "4432429052", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47512", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mini pumpkins are so cute ! i bought 11 .", "storylet_id": "237562"}], [{"original_text": "I didn't know what in the world these dirty black veggies were. I bought 20 though. They smelled like poop. ", "album_id": "72157623493523479", "photo_flickr_id": "4432429286", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47512", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i did n't know what in the world these dirty black veggies were . i bought 20 though . they smelled like poop .", "storylet_id": "237563"}], [{"original_text": "I came across a large pile of discounted veggies and I bought all of them. I bought way too much food today. ", "album_id": "72157623493523479", "photo_flickr_id": "4432429460", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47512", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i came across a large pile of discounted veggies and i bought all of them . i bought way too much food today .", "storylet_id": "237564"}], [{"original_text": "There was all kinds of good food at the market.", "album_id": "72157623493523479", "photo_flickr_id": "4431658255", "setting": "last-3-pick-old-and-tell", "worker_id": "T451E5GKPZL2JGH", "story_id": "47513", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was all kinds of good food at the market .", "storylet_id": "237565"}], [{"original_text": "People were selling croissants.", "album_id": "72157623493523479", "photo_flickr_id": "4432428876", "setting": "last-3-pick-old-and-tell", "worker_id": "T451E5GKPZL2JGH", "story_id": "47513", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people were selling croissants .", "storylet_id": "237566"}], [{"original_text": "Other people had veggies for sale.", "album_id": "72157623493523479", "photo_flickr_id": "4432429052", "setting": "last-3-pick-old-and-tell", "worker_id": "T451E5GKPZL2JGH", "story_id": "47513", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other people had veggies for sale .", "storylet_id": "237567"}], [{"original_text": "These radishes did not look good.", "album_id": "72157623493523479", "photo_flickr_id": "4432429286", "setting": "last-3-pick-old-and-tell", "worker_id": "T451E5GKPZL2JGH", "story_id": "47513", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these radishes did not look good .", "storylet_id": "237568"}], [{"original_text": "And the lettuce was also questionable.", "album_id": "72157623493523479", "photo_flickr_id": "4432429460", "setting": "last-3-pick-old-and-tell", "worker_id": "T451E5GKPZL2JGH", "story_id": "47513", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the lettuce was also questionable .", "storylet_id": "237569"}], [{"original_text": "I went to a local farmers market today.", "album_id": "72157623493523479", "photo_flickr_id": "4431658255", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47514", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a local farmers market today .", "storylet_id": "237570"}], [{"original_text": "I saw many things like bread and bakery.", "album_id": "72157623493523479", "photo_flickr_id": "4432428876", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47514", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw many things like bread and bakery .", "storylet_id": "237571"}], [{"original_text": "They even sold pumpkins.", "album_id": "72157623493523479", "photo_flickr_id": "4432429052", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47514", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even sold pumpkins .", "storylet_id": "237572"}], [{"original_text": "There were also old potatoes being sold.", "album_id": "72157623493523479", "photo_flickr_id": "4432429286", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47514", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also old potatoes being sold .", "storylet_id": "237573"}], [{"original_text": "We ended up buying lots of vegetables.", "album_id": "72157623493523479", "photo_flickr_id": "4432429460", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47514", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended up buying lots of vegetables .", "storylet_id": "237574"}], [{"original_text": "There is a local street fair that has everything from fur coats...", "album_id": "72157623616942902", "photo_flickr_id": "4431939584", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47515", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is a local street fair that has everything from fur coats ...", "storylet_id": "237575"}], [{"original_text": "... to old typewriters. Does anyone even use those anymore?", "album_id": "72157623616942902", "photo_flickr_id": "4431940214", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47515", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "... to old typewriters . does anyone even use those anymore ?", "storylet_id": "237576"}], [{"original_text": "There is handmade jewelry.", "album_id": "72157623616942902", "photo_flickr_id": "4431940892", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47515", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is handmade jewelry .", "storylet_id": "237577"}], [{"original_text": "Also questionable electronics.", "album_id": "72157623616942902", "photo_flickr_id": "4431939930", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47515", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "also questionable electronics .", "storylet_id": "237578"}], [{"original_text": "You can even buy beat up old pans if that is what you fancy.", "album_id": "72157623616942902", "photo_flickr_id": "4431940282", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47515", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you can even buy beat up old pans if that is what you fancy .", "storylet_id": "237579"}], [{"original_text": "The bazzar was filled with many unique items. ", "album_id": "72157623616942902", "photo_flickr_id": "4431939584", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "47516", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bazzar was filled with many unique items .", "storylet_id": "237580"}], [{"original_text": "Because of the rain, few people came out.", "album_id": "72157623616942902", "photo_flickr_id": "4431940126", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "47516", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "because of the rain , few people came out .", "storylet_id": "237581"}], [{"original_text": "As the rain cleared it began to get crowded.", "album_id": "72157623616942902", "photo_flickr_id": "4431940384", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "47516", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as the rain cleared it began to get crowded .", "storylet_id": "237582"}], [{"original_text": "Steve found a unique stall.", "album_id": "72157623616942902", "photo_flickr_id": "4431940498", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "47516", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] found a unique stall .", "storylet_id": "237583"}], [{"original_text": "The owner was a crochety old lady. ", "album_id": "72157623616942902", "photo_flickr_id": "4431169897", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "47516", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the owner was a crochety old lady .", "storylet_id": "237584"}], [{"original_text": "I went to the street fair today to find some clothing and other goodies.", "album_id": "72157623616942902", "photo_flickr_id": "4431939584", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47517", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the street fair today to find some clothing and other goodies .", "storylet_id": "237585"}], [{"original_text": "I found some antique type writers I just had to have.", "album_id": "72157623616942902", "photo_flickr_id": "4431940214", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47517", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i found some antique type writers i just had to have .", "storylet_id": "237586"}], [{"original_text": "And some vintage jewelry for my mom.", "album_id": "72157623616942902", "photo_flickr_id": "4431940892", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47517", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and some vintage jewelry for my mom .", "storylet_id": "237587"}], [{"original_text": "I can't believe people were trying to sell their old outdated junk.", "album_id": "72157623616942902", "photo_flickr_id": "4431939930", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47517", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i ca n't believe people were trying to sell their old outdated junk .", "storylet_id": "237588"}], [{"original_text": "One person even tried to sell their dirty, used pot!", "album_id": "72157623616942902", "photo_flickr_id": "4431940282", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47517", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one person even tried to sell their dirty , used pot !", "storylet_id": "237589"}], [{"original_text": "I went to the thrift store.", "album_id": "72157623616942902", "photo_flickr_id": "4431939584", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47518", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the thrift store .", "storylet_id": "237590"}], [{"original_text": "I bought a vintige type writer.", "album_id": "72157623616942902", "photo_flickr_id": "4431940214", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47518", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i bought a vintige type writer .", "storylet_id": "237591"}], [{"original_text": "I saw tons of costume jewelry", "album_id": "72157623616942902", "photo_flickr_id": "4431940892", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47518", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i saw tons of costume jewelry", "storylet_id": "237592"}], [{"original_text": "THere were necklaces also.", "album_id": "72157623616942902", "photo_flickr_id": "4431939930", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47518", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were necklaces also .", "storylet_id": "237593"}], [{"original_text": "I bought an old pan!", "album_id": "72157623616942902", "photo_flickr_id": "4431940282", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47518", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i bought an old pan !", "storylet_id": "237594"}], [{"original_text": "It is the perfect day to see what everyone is trying to sell.", "album_id": "72157623616942902", "photo_flickr_id": "4431939584", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47519", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is the perfect day to see what everyone is trying to sell .", "storylet_id": "237595"}], [{"original_text": "It has been awhile since we have seen a real typewriter.", "album_id": "72157623616942902", "photo_flickr_id": "4431940214", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47519", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it has been awhile since we have seen a real typewriter .", "storylet_id": "237596"}], [{"original_text": "There is so much jewelry to choose from", "album_id": "72157623616942902", "photo_flickr_id": "4431940892", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47519", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is so much jewelry to choose from", "storylet_id": "237597"}], [{"original_text": "There is jewelry and trinkets for all occasions.", "album_id": "72157623616942902", "photo_flickr_id": "4431939930", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47519", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there is jewelry and trinkets for all occasions .", "storylet_id": "237598"}], [{"original_text": "It is also a great place to buy antiques.", "album_id": "72157623616942902", "photo_flickr_id": "4431940282", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47519", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is also a great place to buy antiques .", "storylet_id": "237599"}], [{"original_text": "The tourists arrived in the city at sunset.", "album_id": "72157628884198187", "photo_flickr_id": "6702997213", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47520", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tourists arrived in the city at sunset .", "storylet_id": "237600"}], [{"original_text": "They walked towards the buildings under construction. ", "album_id": "72157628884198187", "photo_flickr_id": "6703001055", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47520", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they walked towards the buildings under construction .", "storylet_id": "237601"}], [{"original_text": "As they passed buildings, the lights came on inside.", "album_id": "72157628884198187", "photo_flickr_id": "6703003089", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47520", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as they passed buildings , the lights came on inside .", "storylet_id": "237602"}], [{"original_text": "They stopped to admire the new construction.", "album_id": "72157628884198187", "photo_flickr_id": "6703013391", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47520", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they stopped to admire the new construction .", "storylet_id": "237603"}], [{"original_text": "They watched the construction workers do a few final jobs before they went home for the day.", "album_id": "72157628884198187", "photo_flickr_id": "6703014877", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47520", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they watched the construction workers do a few final jobs before they went home for the day .", "storylet_id": "237604"}], [{"original_text": "We started our tour looking at the big office building.", "album_id": "72157628884198187", "photo_flickr_id": "6702997213", "setting": "first-2-pick-and-tell", "worker_id": "5BH5XMOPWWUVXHL", "story_id": "47521", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started our tour looking at the big office building .", "storylet_id": "237605"}], [{"original_text": "After that, we decided to shop for a little while in the city.", "album_id": "72157628884198187", "photo_flickr_id": "6702997875", "setting": "first-2-pick-and-tell", "worker_id": "5BH5XMOPWWUVXHL", "story_id": "47521", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after that , we decided to shop for a little while in the city .", "storylet_id": "237606"}], [{"original_text": "Once we were done shopping, we decided to tour the city at night.", "album_id": "72157628884198187", "photo_flickr_id": "6703013391", "setting": "first-2-pick-and-tell", "worker_id": "5BH5XMOPWWUVXHL", "story_id": "47521", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once we were done shopping , we decided to tour the city at night .", "storylet_id": "237607"}], [{"original_text": "There was a lot of construction going on near the buildings.", "album_id": "72157628884198187", "photo_flickr_id": "6703014877", "setting": "first-2-pick-and-tell", "worker_id": "5BH5XMOPWWUVXHL", "story_id": "47521", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a lot of construction going on near the buildings .", "storylet_id": "237608"}], [{"original_text": "The construction continued throughout the night.", "album_id": "72157628884198187", "photo_flickr_id": "6703015321", "setting": "first-2-pick-and-tell", "worker_id": "5BH5XMOPWWUVXHL", "story_id": "47521", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the construction continued throughout the night .", "storylet_id": "237609"}], [{"original_text": "As the sun was setting yesterday I knew I was really far from the restaurant.", "album_id": "72157628884198187", "photo_flickr_id": "6702997213", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47522", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as the sun was setting yesterday i knew i was really far from the restaurant .", "storylet_id": "237610"}], [{"original_text": "I wasn't entirely sure where it was but I decided to walk around and see if I could find it.", "album_id": "72157628884198187", "photo_flickr_id": "6703001055", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47522", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was n't entirely sure where it was but i decided to walk around and see if i could find it .", "storylet_id": "237611"}], [{"original_text": "It began to get very dark.", "album_id": "72157628884198187", "photo_flickr_id": "6703003089", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47522", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it began to get very dark .", "storylet_id": "237612"}], [{"original_text": "Once it was night time it made it a lot harder to see.", "album_id": "72157628884198187", "photo_flickr_id": "6703013391", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47522", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once it was night time it made it a lot harder to see .", "storylet_id": "237613"}], [{"original_text": "I gave up trying to find the restaurant and went home instead.", "album_id": "72157628884198187", "photo_flickr_id": "6703014877", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47522", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i gave up trying to find the restaurant and went home instead .", "storylet_id": "237614"}], [{"original_text": "Surely a Roman Catholic church with that architecture.", "album_id": "72157628884198187", "photo_flickr_id": "6702997213", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47523", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "surely a [male] catholic church with that architecture .", "storylet_id": "237615"}], [{"original_text": "This view isn't all that attractive.", "album_id": "72157628884198187", "photo_flickr_id": "6703001055", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47523", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this view is n't all that attractive .", "storylet_id": "237616"}], [{"original_text": "The world is winding down as the sun departs over the horizon.", "album_id": "72157628884198187", "photo_flickr_id": "6703003089", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47523", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the world is winding down as the sun departs over the horizon .", "storylet_id": "237617"}], [{"original_text": "As evening begins to creep closer, the city begins to look even better.", "album_id": "72157628884198187", "photo_flickr_id": "6703013391", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47523", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as evening begins to creep closer , the city begins to look even better .", "storylet_id": "237618"}], [{"original_text": "There's always construction of new, modern buildings going on.", "album_id": "72157628884198187", "photo_flickr_id": "6703014877", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "47523", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there 's always construction of new , modern buildings going on .", "storylet_id": "237619"}], [{"original_text": "I had a wonderful day with my family.", "album_id": "72157628884198187", "photo_flickr_id": "6702997213", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47524", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a wonderful day with my family .", "storylet_id": "237620"}], [{"original_text": "We went out in the town.", "album_id": "72157628884198187", "photo_flickr_id": "6703001055", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47524", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went out in the town .", "storylet_id": "237621"}], [{"original_text": "It was so much fun.", "album_id": "72157628884198187", "photo_flickr_id": "6703003089", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47524", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was so much fun .", "storylet_id": "237622"}], [{"original_text": "At night I went out to the club with my friends.", "album_id": "72157628884198187", "photo_flickr_id": "6703013391", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47524", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at night i went out to the club with my friends .", "storylet_id": "237623"}], [{"original_text": "We danced all night long", "album_id": "72157628884198187", "photo_flickr_id": "6703014877", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47524", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we danced all night long", "storylet_id": "237624"}], [{"original_text": "At the festival people brought fresh foods of all sorts.", "album_id": "342772", "photo_flickr_id": "14050980", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47525", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the festival people brought fresh foods of all sorts .", "storylet_id": "237625"}], [{"original_text": "I came specifically for the banana breads, which are always baked to perfection.", "album_id": "342772", "photo_flickr_id": "14051378", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47525", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i came specifically for the banana breads , which are always baked to perfection .", "storylet_id": "237626"}], [{"original_text": "Then there is the cubes of fudge that are quite a delight.", "album_id": "342772", "photo_flickr_id": "14051079", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47525", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then there is the cubes of fudge that are quite a delight .", "storylet_id": "237627"}], [{"original_text": "And the freshest, juiciest, strawberries one would ever see and taste.", "album_id": "342772", "photo_flickr_id": "14051201", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47525", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the freshest , juiciest , strawberries one would ever see and taste .", "storylet_id": "237628"}], [{"original_text": "Mama's table was my last stop, her jams were the best in the city.", "album_id": "342772", "photo_flickr_id": "14051990", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47525", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mama 's table was my last stop , her jams were the best in the city .", "storylet_id": "237629"}], [{"original_text": "Walking through the farmers market and saw a merchant selling soap. ", "album_id": "342772", "photo_flickr_id": "14050980", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47526", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walking through the farmers market and saw a merchant selling soap .", "storylet_id": "237630"}], [{"original_text": "Getting several organic soaps. ", "album_id": "342772", "photo_flickr_id": "14051079", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47526", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "getting several organic soaps .", "storylet_id": "237631"}], [{"original_text": "Radishes to make soups. ", "album_id": "342772", "photo_flickr_id": "14050866", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47526", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "radishes to make soups .", "storylet_id": "237632"}], [{"original_text": "Mushroom for the pasta sauce. ", "album_id": "342772", "photo_flickr_id": "14052128", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47526", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mushroom for the pasta sauce .", "storylet_id": "237633"}], [{"original_text": "And fresh strawberries for a strawberry sorbet.", "album_id": "342772", "photo_flickr_id": "14051201", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47526", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and fresh strawberries for a strawberry sorbet .", "storylet_id": "237634"}], [{"original_text": "The man set up his food stand at the farmers' market on Saturday.", "album_id": "342772", "photo_flickr_id": "14050980", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47527", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man set up his food stand at the farmers ' market on saturday .", "storylet_id": "237635"}], [{"original_text": "He brought with him a wide assortment of things, including fresh breads.", "album_id": "342772", "photo_flickr_id": "14051378", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47527", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he brought with him a wide assortment of things , including fresh breads .", "storylet_id": "237636"}], [{"original_text": "He set up a fudge counter, something he had recently branched out into.", "album_id": "342772", "photo_flickr_id": "14051079", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47527", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he set up a fudge counter , something he had recently branched out into .", "storylet_id": "237637"}], [{"original_text": "He also had some fresh strawberries he got from his son's garden.", "album_id": "342772", "photo_flickr_id": "14051201", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47527", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he also had some fresh strawberries he got from his son 's garden .", "storylet_id": "237638"}], [{"original_text": "But the centerpiece was the jams and jellies he had long made.", "album_id": "342772", "photo_flickr_id": "14051990", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47527", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the centerpiece was the jams and jellies he had long made .", "storylet_id": "237639"}], [{"original_text": "Yesterday I headed to the farmers market to browse the food.", "album_id": "342772", "photo_flickr_id": "14050980", "setting": "last-3-pick-old-and-tell", "worker_id": "FQC7Q2MAJW4AZ99", "story_id": "47528", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday i headed to the farmers market to browse the food .", "storylet_id": "237640"}], [{"original_text": "There was delicious fresh baked bread.", "album_id": "342772", "photo_flickr_id": "14051378", "setting": "last-3-pick-old-and-tell", "worker_id": "FQC7Q2MAJW4AZ99", "story_id": "47528", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was delicious fresh baked bread .", "storylet_id": "237641"}], [{"original_text": "There was also an assortment of various candies.", "album_id": "342772", "photo_flickr_id": "14051079", "setting": "last-3-pick-old-and-tell", "worker_id": "FQC7Q2MAJW4AZ99", "story_id": "47528", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was also an assortment of various candies .", "storylet_id": "237642"}], [{"original_text": "The strawberries were freshly picked.", "album_id": "342772", "photo_flickr_id": "14051201", "setting": "last-3-pick-old-and-tell", "worker_id": "FQC7Q2MAJW4AZ99", "story_id": "47528", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the strawberries were freshly picked .", "storylet_id": "237643"}], [{"original_text": "I wound up purchasing a jar of fresh jam.", "album_id": "342772", "photo_flickr_id": "14051990", "setting": "last-3-pick-old-and-tell", "worker_id": "FQC7Q2MAJW4AZ99", "story_id": "47528", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i wound up purchasing a jar of fresh jam .", "storylet_id": "237644"}], [{"original_text": "The man was organizing his cheese", "album_id": "342772", "photo_flickr_id": "14050980", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47529", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man was organizing his cheese", "storylet_id": "237645"}], [{"original_text": "that he had a lot of.", "album_id": "342772", "photo_flickr_id": "14051079", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47529", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that he had a lot of .", "storylet_id": "237646"}], [{"original_text": "He also had other vegetables like pototoes", "album_id": "342772", "photo_flickr_id": "14050866", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47529", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he also had other vegetables like pototoes", "storylet_id": "237647"}], [{"original_text": "and mushrooms", "album_id": "342772", "photo_flickr_id": "14052128", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47529", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and mushrooms", "storylet_id": "237648"}], [{"original_text": "as well as strawberries.", "album_id": "342772", "photo_flickr_id": "14051201", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47529", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as well as strawberries .", "storylet_id": "237649"}], [{"original_text": "The state put out a tornado warning to the citizens.", "album_id": "123763", "photo_flickr_id": "4916748", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47530", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the state put out a tornado warning to the citizens .", "storylet_id": "237650"}], [{"original_text": "Tornados started forming overhead.", "album_id": "123763", "photo_flickr_id": "4917865", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47530", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "tornados started forming overhead .", "storylet_id": "237651"}], [{"original_text": "People started panicking and running towards their shelters.", "album_id": "123763", "photo_flickr_id": "4917864", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47530", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people started panicking and running towards their shelters .", "storylet_id": "237652"}], [{"original_text": "The winds got crazy and the clouds rolled in.", "album_id": "123763", "photo_flickr_id": "4917868", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47530", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the winds got crazy and the clouds rolled in .", "storylet_id": "237653"}], [{"original_text": "Rain turned to flooding as people scrambled for safety. ", "album_id": "123763", "photo_flickr_id": "4917870", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47530", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "rain turned to flooding as people scrambled for safety .", "storylet_id": "237654"}], [{"original_text": "The weather forecast told us that we were going to have a tornado in the evening.", "album_id": "123763", "photo_flickr_id": "4917866", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47531", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the weather forecast told us that we were going to have a tornado in the evening .", "storylet_id": "237655"}], [{"original_text": "The tornado touched down over our neighbor's house.", "album_id": "123763", "photo_flickr_id": "4917865", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47531", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tornado touched down over our neighbor 's house .", "storylet_id": "237656"}], [{"original_text": "We decided it wasn't too dangerous to go outside and take some pictures.", "album_id": "123763", "photo_flickr_id": "4917864", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47531", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we decided it was n't too dangerous to go outside and take some pictures .", "storylet_id": "237657"}], [{"original_text": "The rain clouds were thick all over the town.", "album_id": "123763", "photo_flickr_id": "4917868", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47531", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rain clouds were thick all over the town .", "storylet_id": "237658"}], [{"original_text": "Some of the roads below sea level even flooded. Luckily enough no one was hurt.", "album_id": "123763", "photo_flickr_id": "4917870", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47531", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the roads below sea level even flooded . luckily enough no one was hurt .", "storylet_id": "237659"}], [{"original_text": "These maps show where all the major storms were.", "album_id": "123763", "photo_flickr_id": "4916748", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47532", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these maps show where all the major storms were .", "storylet_id": "237660"}], [{"original_text": "A large tornado touched down.", "album_id": "123763", "photo_flickr_id": "4917865", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47532", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a large tornado touched down .", "storylet_id": "237661"}], [{"original_text": "Everyone in the neighborhood was in fear of losing their homes. ", "album_id": "123763", "photo_flickr_id": "4917864", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47532", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone in the neighborhood was in fear of losing their homes .", "storylet_id": "237662"}], [{"original_text": "As you see, the clouds were very dark and sinister. ", "album_id": "123763", "photo_flickr_id": "4917868", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47532", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as you see , the clouds were very dark and sinister .", "storylet_id": "237663"}], [{"original_text": "They brought heavy rainfall and flooded roads. ", "album_id": "123763", "photo_flickr_id": "4917870", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47532", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they brought heavy rainfall and flooded roads .", "storylet_id": "237664"}], [{"original_text": "Local tornado map is not looking good.", "album_id": "123763", "photo_flickr_id": "4916748", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47533", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "local tornado map is not looking good .", "storylet_id": "237665"}], [{"original_text": "Here is a photo of the tornado that is coming close.", "album_id": "123763", "photo_flickr_id": "4917865", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47533", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is a photo of the tornado that is coming close .", "storylet_id": "237666"}], [{"original_text": "We were worried about the close proximity of the tornado", "album_id": "123763", "photo_flickr_id": "4917864", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47533", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were worried about the close proximity of the tornado", "storylet_id": "237667"}], [{"original_text": "More bad weather for the weekend", "album_id": "123763", "photo_flickr_id": "4917868", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47533", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more bad weather for the weekend", "storylet_id": "237668"}], [{"original_text": "Road is closed due to flooding", "album_id": "123763", "photo_flickr_id": "4917870", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47533", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "road is closed due to flooding", "storylet_id": "237669"}], [{"original_text": "When I first saw the tornado warning I didn't believe it.", "album_id": "123763", "photo_flickr_id": "4916748", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47534", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i first saw the tornado warning i did n't believe it .", "storylet_id": "237670"}], [{"original_text": "It wasn't until I saw the tornado with my own two eyes that I was absolutely terrified.", "album_id": "123763", "photo_flickr_id": "4917865", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47534", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was n't until i saw the tornado with my own two eyes that i was absolutely terrified .", "storylet_id": "237671"}], [{"original_text": "It only lasted for about five minutes but those five minutes felt like an hour.", "album_id": "123763", "photo_flickr_id": "4917864", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47534", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it only lasted for about five minutes but those five minutes felt like an hour .", "storylet_id": "237672"}], [{"original_text": "Fortunately, the tornado did not do significant damage.", "album_id": "123763", "photo_flickr_id": "4917868", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47534", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fortunately , the tornado did not do significant damage .", "storylet_id": "237673"}], [{"original_text": " But not long after the tornado the flooding started and our town was under siege again.", "album_id": "123763", "photo_flickr_id": "4917870", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "47534", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but not long after the tornado the flooding started and our town was under siege again .", "storylet_id": "237674"}], [{"original_text": "After the blizzard everyone was ready to make snowmen", "album_id": "72157623221299462", "photo_flickr_id": "4279217616", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47535", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after the blizzard everyone was ready to make snowmen", "storylet_id": "237675"}], [{"original_text": "This bridge got really icey and a few people slipped.", "album_id": "72157623221299462", "photo_flickr_id": "4279217880", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47535", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this bridge got really icey and a few people slipped .", "storylet_id": "237676"}], [{"original_text": "At night the town was glowing. The light from the streetlamps was bouncing off the freshly fallen snow.", "album_id": "72157623221299462", "photo_flickr_id": "4281798521", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47535", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at night the town was glowing . the light from the streetlamps was bouncing off the freshly fallen snow .", "storylet_id": "237677"}], [{"original_text": "By the morning time the roads had mostly been cleared off.", "album_id": "72157623221299462", "photo_flickr_id": "4281798799", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47535", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "by the morning time the roads had mostly been cleared off .", "storylet_id": "237678"}], [{"original_text": "The lake stayed frozen for weeks afterward, though.", "album_id": "72157623221299462", "photo_flickr_id": "4281799751", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "47535", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lake stayed frozen for weeks afterward , though .", "storylet_id": "237679"}], [{"original_text": "On a snowy day, the family decided to go to the city park.", "album_id": "72157623221299462", "photo_flickr_id": "4279228762", "setting": "first-2-pick-and-tell", "worker_id": "A0LZXX91H275PJ6", "story_id": "47536", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on a snowy day , the family decided to go to the city park .", "storylet_id": "237680"}], [{"original_text": "It was a long walk to the park.", "album_id": "72157623221299462", "photo_flickr_id": "4282548002", "setting": "first-2-pick-and-tell", "worker_id": "A0LZXX91H275PJ6", "story_id": "47536", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a long walk to the park .", "storylet_id": "237681"}], [{"original_text": "The park was beautiful . Even the bridge was covered n snow.", "album_id": "72157623221299462", "photo_flickr_id": "4279217880", "setting": "first-2-pick-and-tell", "worker_id": "A0LZXX91H275PJ6", "story_id": "47536", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the park was beautiful . even the bridge was covered n snow .", "storylet_id": "237682"}], [{"original_text": "All of the trees were heavy with fresh snow.", "album_id": "72157623221299462", "photo_flickr_id": "4278482499", "setting": "first-2-pick-and-tell", "worker_id": "A0LZXX91H275PJ6", "story_id": "47536", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the trees were heavy with fresh snow .", "storylet_id": "237683"}], [{"original_text": "The family built a snowman and had a lot of fun.", "album_id": "72157623221299462", "photo_flickr_id": "4279217616", "setting": "first-2-pick-and-tell", "worker_id": "A0LZXX91H275PJ6", "story_id": "47536", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family built a snowman and had a lot of fun .", "storylet_id": "237684"}], [{"original_text": "Snow fell in the town of Makeawish today!", "album_id": "72157623221299462", "photo_flickr_id": "4279228762", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDPT21LOK46EZVA", "story_id": "47537", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "snow fell in the town of location today !", "storylet_id": "237685"}], [{"original_text": "Children and elders flocked to the park to play in the snow.", "album_id": "72157623221299462", "photo_flickr_id": "4282548002", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDPT21LOK46EZVA", "story_id": "47537", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "children and elders flocked to the park to play in the snow .", "storylet_id": "237686"}], [{"original_text": "A group of children hid under the bridge and pelted pedestrians with snowballs.", "album_id": "72157623221299462", "photo_flickr_id": "4279217880", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDPT21LOK46EZVA", "story_id": "47537", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a group of children hid under the bridge and pelted pedestrians with snowballs .", "storylet_id": "237687"}], [{"original_text": "Almost everyone tried \"sledding\" down the hill in cardboard boxes.", "album_id": "72157623221299462", "photo_flickr_id": "4278482499", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDPT21LOK46EZVA", "story_id": "47537", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "almost everyone tried `` sledding '' down the hill in cardboard boxes .", "storylet_id": "237688"}], [{"original_text": "At the end of the day, this cute snowman was left as a solitary lonely guard over the empty park.", "album_id": "72157623221299462", "photo_flickr_id": "4279217616", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDPT21LOK46EZVA", "story_id": "47537", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , this cute snowman was left as a solitary lonely guard over the empty park .", "storylet_id": "237689"}], [{"original_text": "Somebody made a nice snowman and put a hat on him", "album_id": "72157623221299462", "photo_flickr_id": "4279217616", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47538", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "somebody made a nice snowman and put a hat on him", "storylet_id": "237690"}], [{"original_text": "Walking in the snow covered park", "album_id": "72157623221299462", "photo_flickr_id": "4279217880", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47538", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "walking in the snow covered park", "storylet_id": "237691"}], [{"original_text": "Night time the city look beautiful", "album_id": "72157623221299462", "photo_flickr_id": "4281798521", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47538", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "night time the city look beautiful", "storylet_id": "237692"}], [{"original_text": "This old stone building is quite charming", "album_id": "72157623221299462", "photo_flickr_id": "4281798799", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47538", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this old stone building is quite charming", "storylet_id": "237693"}], [{"original_text": "Waking up to this white sheet of snow in the morning is priceless", "album_id": "72157623221299462", "photo_flickr_id": "4281799751", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47538", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "waking up to this white sheet of snow in the morning is priceless", "storylet_id": "237694"}], [{"original_text": "We went to the big city in the winter and saw a gorgeous snow city.", "album_id": "72157623221299462", "photo_flickr_id": "4279228762", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47539", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the big city in the winter and saw a gorgeous snow city .", "storylet_id": "237695"}], [{"original_text": "We made tracks in the snow on a romantic walk.", "album_id": "72157623221299462", "photo_flickr_id": "4282548002", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47539", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made tracks in the snow on a romantic walk .", "storylet_id": "237696"}], [{"original_text": "We found a breathtaking bridge with snow covered on it.", "album_id": "72157623221299462", "photo_flickr_id": "4279217880", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47539", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we found a breathtaking bridge with snow covered on it .", "storylet_id": "237697"}], [{"original_text": "The snow on the trees was awesome to see in the park.", "album_id": "72157623221299462", "photo_flickr_id": "4278482499", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47539", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the snow on the trees was awesome to see in the park .", "storylet_id": "237698"}], [{"original_text": "We spent a few hours building a snowman and putting a hat on him.", "album_id": "72157623221299462", "photo_flickr_id": "4279217616", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "47539", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we spent a few hours building a snowman and putting a hat on him .", "storylet_id": "237699"}], [{"original_text": "A father with his daughter and son. Little did they know he would come out as gay later that night. They are no longer on speaking terms on account of their conservative Christianity.", "album_id": "72157628922775473", "photo_flickr_id": "6719052043", "setting": "first-2-pick-and-tell", "worker_id": "6G4LTKJTNLUJBN3", "story_id": "47540", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a father with his daughter and son . little did they know he would come out as gay later that night . they are no longer on speaking terms on account of their conservative christianity .", "storylet_id": "237700"}], [{"original_text": "Four Asian people posing for an image. They are all related. ", "album_id": "72157628922775473", "photo_flickr_id": "6719053253", "setting": "first-2-pick-and-tell", "worker_id": "6G4LTKJTNLUJBN3", "story_id": "47540", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "four asian people posing for an image . they are all related .", "storylet_id": "237701"}], [{"original_text": "An older man with his younger wife. She will later divorce him for infidelity. ", "album_id": "72157628922775473", "photo_flickr_id": "6719054099", "setting": "first-2-pick-and-tell", "worker_id": "6G4LTKJTNLUJBN3", "story_id": "47540", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "an older man with his younger wife . she will later divorce him for infidelity .", "storylet_id": "237702"}], [{"original_text": "A man with his wife. They are honestly boring because they do nothing wrong", "album_id": "72157628922775473", "photo_flickr_id": "6719055003", "setting": "first-2-pick-and-tell", "worker_id": "6G4LTKJTNLUJBN3", "story_id": "47540", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a man with his wife . they are honestly boring because they do nothing wrong", "storylet_id": "237703"}], [{"original_text": "A sexy young woman in all black. She is on the prowl for richer older men. ", "album_id": "72157628922775473", "photo_flickr_id": "6719054447", "setting": "first-2-pick-and-tell", "worker_id": "6G4LTKJTNLUJBN3", "story_id": "47540", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a sexy young woman in all black . she is on the prowl for richer older men .", "storylet_id": "237704"}], [{"original_text": "I had a great time meeting new friends last night at the business party.", "album_id": "72157628922775473", "photo_flickr_id": "6719055187", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47541", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time meeting new friends last night at the business party .", "storylet_id": "237705"}], [{"original_text": "There were a lot of people that were very nice.", "album_id": "72157628922775473", "photo_flickr_id": "6719052043", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47541", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people that were very nice .", "storylet_id": "237706"}], [{"original_text": "Some of them were very rich.", "album_id": "72157628922775473", "photo_flickr_id": "6719053477", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47541", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them were very rich .", "storylet_id": "237707"}], [{"original_text": "They all had nice things to say about me.", "album_id": "72157628922775473", "photo_flickr_id": "6719052553", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47541", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they all had nice things to say about me .", "storylet_id": "237708"}], [{"original_text": "I am glad I attended the party.", "album_id": "72157628922775473", "photo_flickr_id": "6719054447", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47541", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am glad i attended the party .", "storylet_id": "237709"}], [{"original_text": "The party was a lot of fun for everyone invited.", "album_id": "72157628922775473", "photo_flickr_id": "6719055187", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "47542", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party was a lot of fun for everyone invited .", "storylet_id": "237710"}], [{"original_text": "Old friends reunited together and made new memories.", "album_id": "72157628922775473", "photo_flickr_id": "6719052043", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "47542", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "old friends reunited together and made new memories .", "storylet_id": "237711"}], [{"original_text": "John, who was the class clown, had become a top physiologist at a University.", "album_id": "72157628922775473", "photo_flickr_id": "6719053477", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "47542", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] , who was the class clown , had become a top physiologist at a organization .", "storylet_id": "237712"}], [{"original_text": "Claire and Amanda had not seen each other in ten years and were overjoyed to spend time together again.", "album_id": "72157628922775473", "photo_flickr_id": "6719052553", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "47542", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and [female] had not seen each other in ten years and were overjoyed to spend time together again .", "storylet_id": "237713"}], [{"original_text": "Casey, who was unsure of her future, had become a top fashion designer in New York City.", "album_id": "72157628922775473", "photo_flickr_id": "6719054447", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "47542", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] , who was unsure of her future , had become a top fashion designer in location location location .", "storylet_id": "237714"}], [{"original_text": "I went to a wedding last night,", "album_id": "72157628922775473", "photo_flickr_id": "6719052043", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47543", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a wedding last night ,", "storylet_id": "237715"}], [{"original_text": "It was so much fun.", "album_id": "72157628922775473", "photo_flickr_id": "6719053253", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47543", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was so much fun .", "storylet_id": "237716"}], [{"original_text": "I talked and dance with friends all night long.", "album_id": "72157628922775473", "photo_flickr_id": "6719054099", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47543", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i talked and dance with friends all night long .", "storylet_id": "237717"}], [{"original_text": "It was such a beautiful ceremony.", "album_id": "72157628922775473", "photo_flickr_id": "6719055003", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47543", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was such a beautiful ceremony .", "storylet_id": "237718"}], [{"original_text": "I'm so happy for them.", "album_id": "72157628922775473", "photo_flickr_id": "6719054447", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47543", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm so happy for them .", "storylet_id": "237719"}], [{"original_text": "I was invited to this dinner by my boss. I had to go so I wouldn't look bad. That's him, David the lucky bald guy.", "album_id": "72157628922775473", "photo_flickr_id": "6719055187", "setting": "last-3-pick-old-and-tell", "worker_id": "PI7MFTBPMTN3A4A", "story_id": "47544", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was invited to this dinner by my boss . i had to go so i would n't look bad . that 's him , [male] the lucky bald guy .", "storylet_id": "237720"}], [{"original_text": "These are his parents and brother. I honestly don't know where David came from. They were so sweet.", "album_id": "72157628922775473", "photo_flickr_id": "6719052043", "setting": "last-3-pick-old-and-tell", "worker_id": "PI7MFTBPMTN3A4A", "story_id": "47544", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these are his parents and brother . i honestly do n't know where [male] came from . they were so sweet .", "storylet_id": "237721"}], [{"original_text": "This is me getting someone to take a selfie of me. I'm dressed pretty sharp and wanted to remember it.", "album_id": "72157628922775473", "photo_flickr_id": "6719053477", "setting": "last-3-pick-old-and-tell", "worker_id": "PI7MFTBPMTN3A4A", "story_id": "47544", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is me getting someone to take a selfie of me . i 'm dressed pretty sharp and wanted to remember it .", "storylet_id": "237722"}], [{"original_text": "Here is one of David's friends on the right and Gina from accounting on the left. she seems to be enjoying herself.", "album_id": "72157628922775473", "photo_flickr_id": "6719052553", "setting": "last-3-pick-old-and-tell", "worker_id": "PI7MFTBPMTN3A4A", "story_id": "47544", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is one of [male] 's friends on the right and [female] from accounting on the left . she seems to be enjoying herself .", "storylet_id": "237723"}], [{"original_text": "This is Donna, the office secretary. I've always had a huge crush on her. Maybe I'll ask her out tonight.... After a few more drinks!", "album_id": "72157628922775473", "photo_flickr_id": "6719054447", "setting": "last-3-pick-old-and-tell", "worker_id": "PI7MFTBPMTN3A4A", "story_id": "47544", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is [female] , the office secretary . i 've always had a huge crush on her . maybe i 'll ask her out tonight ... . after a few more drinks !", "storylet_id": "237724"}], [{"original_text": "Here is the reception area before the Bleed Blue Sales and Marketing Event.", "album_id": "72157629406351257", "photo_flickr_id": "6911603787", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47545", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is the reception area before the bleed blue sales and marketing event .", "storylet_id": "237725"}], [{"original_text": "As we filed into the auditorium this is what awaited us.", "album_id": "72157629406351257", "photo_flickr_id": "6911602631", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47545", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as we filed into the auditorium this is what awaited us .", "storylet_id": "237726"}], [{"original_text": "Everyone was excited for the event to begin. Many people were wearing Bleed Blue shirts.", "album_id": "72157629406351257", "photo_flickr_id": "6911608643", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47545", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was excited for the event to begin . many people were wearing bleed blue shirts .", "storylet_id": "237727"}], [{"original_text": "It was informative and fun. The enthusiasm on stage was infectious.", "album_id": "72157629406351257", "photo_flickr_id": "6911606753", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47545", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was informative and fun . the enthusiasm on stage was infectious .", "storylet_id": "237728"}], [{"original_text": "Here I am with new friends and old colleagues.", "album_id": "72157629406351257", "photo_flickr_id": "6911613285", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47545", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here i am with new friends and old colleagues .", "storylet_id": "237729"}], [{"original_text": "Everyone is excited for the annual meeting.", "album_id": "72157629406351257", "photo_flickr_id": "6911609147", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47546", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone is excited for the annual meeting .", "storylet_id": "237730"}], [{"original_text": "The chairs are all set up with the proper paperwork.", "album_id": "72157629406351257", "photo_flickr_id": "6911602631", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47546", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the chairs are all set up with the proper paperwork .", "storylet_id": "237731"}], [{"original_text": "The presenters are ready and have their powerpoint pulled up on the screen.", "album_id": "72157629406351257", "photo_flickr_id": "6911606753", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47546", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the presenters are ready and have their powerpoint pulled up on the screen .", "storylet_id": "237732"}], [{"original_text": "The huge crowd of people is seated and ready.", "album_id": "72157629406351257", "photo_flickr_id": "6911612281", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47546", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the huge crowd of people is seated and ready .", "storylet_id": "237733"}], [{"original_text": "Finally the presentation is done and the crowd goes wild. It was a great conference.", "album_id": "72157629406351257", "photo_flickr_id": "6911608643", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47546", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the presentation is done and the crowd goes wild . it was a great conference .", "storylet_id": "237734"}], [{"original_text": "Here we are, a throng of professionals amiably making small talk in the lobby. ", "album_id": "72157629406351257", "photo_flickr_id": "6911603787", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47547", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are , a throng of professionals amiably making small talk in the lobby .", "storylet_id": "237735"}], [{"original_text": "The day's programs were conveniently looped over our seats for perusal before the first speaker. ", "album_id": "72157629406351257", "photo_flickr_id": "6911602631", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47547", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the day 's programs were conveniently looped over our seats for perusal before the first speaker .", "storylet_id": "237736"}], [{"original_text": "As the attendees gathered in the room, the energy level rose considerably. ", "album_id": "72157629406351257", "photo_flickr_id": "6911608643", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47547", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as the attendees gathered in the room , the energy level rose considerably .", "storylet_id": "237737"}], [{"original_text": "Of course, we had to endure the requisite cheesy skit. ", "album_id": "72157629406351257", "photo_flickr_id": "6911606753", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47547", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course , we had to endure the requisite cheesy skit .", "storylet_id": "237738"}], [{"original_text": "However, the event was a success overall, and many new friendships were forged. ", "album_id": "72157629406351257", "photo_flickr_id": "6911613285", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47547", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , the event was a success overall , and many new friendships were forged .", "storylet_id": "237739"}], [{"original_text": "The event was expected to be a huge success. ", "album_id": "72157629406351257", "photo_flickr_id": "6911609147", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47548", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the event was expected to be a huge success .", "storylet_id": "237740"}], [{"original_text": "And if the designated seats were any sign, there was a big day ahead. ", "album_id": "72157629406351257", "photo_flickr_id": "6911602631", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47548", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and if the designated seats were any sign , there was a big day ahead .", "storylet_id": "237741"}], [{"original_text": "The speakers were all absolutely outstanding. ", "album_id": "72157629406351257", "photo_flickr_id": "6911606753", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47548", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the speakers were all absolutely outstanding .", "storylet_id": "237742"}], [{"original_text": "One side of the audience loved what the saw", "album_id": "72157629406351257", "photo_flickr_id": "6911612281", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47548", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one side of the audience loved what the saw", "storylet_id": "237743"}], [{"original_text": "And the other side likes it so much they gave a round of applause. ", "album_id": "72157629406351257", "photo_flickr_id": "6911608643", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47548", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the other side likes it so much they gave a round of applause .", "storylet_id": "237744"}], [{"original_text": "Everyone was arriving to the cvent Kick-Off.", "album_id": "72157629406351257", "photo_flickr_id": "6911609147", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "47549", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was arriving to the cvent kick-off .", "storylet_id": "237745"}], [{"original_text": "As the attendees walked into the theater, they took their seats that were adorned with USA Today papers.", "album_id": "72157629406351257", "photo_flickr_id": "6911602631", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "47549", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the attendees walked into the theater , they took their seats that were adorned with organization organization papers .", "storylet_id": "237746"}], [{"original_text": "The Kick-Off's presentation wa a big success.", "album_id": "72157629406351257", "photo_flickr_id": "6911606753", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "47549", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kick-off 's presentation wa a big success .", "storylet_id": "237747"}], [{"original_text": "At the end of the presentation, everyone in the theater clapped.", "album_id": "72157629406351257", "photo_flickr_id": "6911612281", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "47549", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the end of the presentation , everyone in the theater clapped .", "storylet_id": "237748"}], [{"original_text": "They very much enjoyed the Kick-Off.", "album_id": "72157629406351257", "photo_flickr_id": "6911608643", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "47549", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they very much enjoyed the kick-off .", "storylet_id": "237749"}], [{"original_text": "This was a very unique trip. I didn't go inside but had to grab a picture.", "album_id": "142047", "photo_flickr_id": "118630865", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47550", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was a very unique trip . i did n't go inside but had to grab a picture .", "storylet_id": "237750"}], [{"original_text": "One shop we went into had lots of old toys.", "album_id": "142047", "photo_flickr_id": "6977800", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47550", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one shop we went into had lots of old toys .", "storylet_id": "237751"}], [{"original_text": "Some things were a little weird and I didn't know what they were.", "album_id": "142047", "photo_flickr_id": "2131218", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47550", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some things were a little weird and i did n't know what they were .", "storylet_id": "237752"}], [{"original_text": "These guys were from a famous TV show.", "album_id": "142047", "photo_flickr_id": "5659742", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47550", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these guys were from a famous tv show .", "storylet_id": "237753"}], [{"original_text": "I came home with a funny puppet.", "album_id": "142047", "photo_flickr_id": "5660532", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47550", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i came home with a funny puppet .", "storylet_id": "237754"}], [{"original_text": "Walking in an adult only store. ", "album_id": "142047", "photo_flickr_id": "118630865", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47551", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walking in an adult only store .", "storylet_id": "237755"}], [{"original_text": "Tintin and captain Haddock with their astronaut gear walking in the moon.", "album_id": "142047", "photo_flickr_id": "5659742", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47551", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "tintin and captain haddock with their astronaut gear walking in the moon .", "storylet_id": "237756"}], [{"original_text": "Huge floating statue in the sidewalk.", "album_id": "142047", "photo_flickr_id": "5660532", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47551", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "huge floating statue in the sidewalk .", "storylet_id": "237757"}], [{"original_text": "On my way back home saw the cutes couple walking hand in hand. ", "album_id": "142047", "photo_flickr_id": "5455255", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47551", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on my way back home saw the cutes couple walking hand in hand .", "storylet_id": "237758"}], [{"original_text": "A cute Yorkie on the side of the road. ", "album_id": "142047", "photo_flickr_id": "2004941", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47551", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a cute yorkie on the side of the road .", "storylet_id": "237759"}], [{"original_text": "The family decided to visit the anime expo in our city.", "album_id": "142047", "photo_flickr_id": "118630865", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47552", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family decided to visit the anime expo in our city .", "storylet_id": "237760"}], [{"original_text": "We saw props for a new anime series based on astronauts.", "album_id": "142047", "photo_flickr_id": "5659742", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47552", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw props for a new anime series based on astronauts .", "storylet_id": "237761"}], [{"original_text": "The theme for the anime expo seemed to revolved around space and astronauts.", "album_id": "142047", "photo_flickr_id": "5660532", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47552", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the theme for the anime expo seemed to revolved around space and astronauts .", "storylet_id": "237762"}], [{"original_text": "We took a picture of the walk we had to make back to our car. ", "album_id": "142047", "photo_flickr_id": "5455255", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47552", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a picture of the walk we had to make back to our car .", "storylet_id": "237763"}], [{"original_text": "On our way back to the car, we found a puppy running on the sidewalk. ", "album_id": "142047", "photo_flickr_id": "2004941", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "47552", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on our way back to the car , we found a puppy running on the sidewalk .", "storylet_id": "237764"}], [{"original_text": "I was out walking downtown last night.", "album_id": "142047", "photo_flickr_id": "118630865", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47553", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was out walking downtown last night .", "storylet_id": "237765"}], [{"original_text": "I went to the museum to see a lot of interesting pieces.", "album_id": "142047", "photo_flickr_id": "5659742", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47553", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went to the museum to see a lot of interesting pieces .", "storylet_id": "237766"}], [{"original_text": "Some of the decorations outside were very whimsical.", "album_id": "142047", "photo_flickr_id": "5660532", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47553", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the decorations outside were very whimsical .", "storylet_id": "237767"}], [{"original_text": "After it started to get dark I began to head back.", "album_id": "142047", "photo_flickr_id": "5455255", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47553", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after it started to get dark i began to head back .", "storylet_id": "237768"}], [{"original_text": "I saw this dog on the street and took it home.", "album_id": "142047", "photo_flickr_id": "2004941", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47553", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i saw this dog on the street and took it home .", "storylet_id": "237769"}], [{"original_text": "The museum had a lot of art", "album_id": "142047", "photo_flickr_id": "118630865", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47554", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the museum had a lot of art", "storylet_id": "237770"}], [{"original_text": "and sculptures that ", "album_id": "142047", "photo_flickr_id": "6977800", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47554", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and sculptures that", "storylet_id": "237771"}], [{"original_text": "were quite random in shape.", "album_id": "142047", "photo_flickr_id": "2131218", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47554", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "were quite random in shape .", "storylet_id": "237772"}], [{"original_text": "They came in all sizes and", "album_id": "142047", "photo_flickr_id": "5659742", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47554", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they came in all sizes and", "storylet_id": "237773"}], [{"original_text": "would surprise you by what they looked like.", "album_id": "142047", "photo_flickr_id": "5660532", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47554", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "would surprise you by what they looked like .", "storylet_id": "237774"}], [{"original_text": "We went on a little shopping trip to a local market.", "album_id": "486365", "photo_flickr_id": "20531382", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47555", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on a little shopping trip to a local market .", "storylet_id": "237775"}], [{"original_text": "There were great deals all around. We weren't the only people interested in going.", "album_id": "486365", "photo_flickr_id": "20531446", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47555", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were great deals all around . we were n't the only people interested in going .", "storylet_id": "237776"}], [{"original_text": "They had watermelons sold whole or by halves that looked delicious.", "album_id": "486365", "photo_flickr_id": "20531078", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47555", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had watermelons sold whole or by halves that looked delicious .", "storylet_id": "237777"}], [{"original_text": "They also hd these coconut looking things that seemed weird.", "album_id": "486365", "photo_flickr_id": "21440231", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47555", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also hd these coconut looking things that seemed weird .", "storylet_id": "237778"}], [{"original_text": "There was single serve portions of some weird looking food but we had to try it!", "album_id": "486365", "photo_flickr_id": "20531265", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47555", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was single serve portions of some weird looking food but we had to try it !", "storylet_id": "237779"}], [{"original_text": "The open market was just that open.", "album_id": "486365", "photo_flickr_id": "20531423", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47556", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the open market was just that open .", "storylet_id": "237780"}], [{"original_text": "All the stuff is available to sample.", "album_id": "486365", "photo_flickr_id": "20531446", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47556", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the stuff is available to sample .", "storylet_id": "237781"}], [{"original_text": "They want to make sure that what you buy is fresh.", "album_id": "486365", "photo_flickr_id": "20531078", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47556", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they want to make sure that what you buy is fresh .", "storylet_id": "237782"}], [{"original_text": "They set up booths all along the road.", "album_id": "486365", "photo_flickr_id": "20531162", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47556", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they set up booths all along the road .", "storylet_id": "237783"}], [{"original_text": "You can try many unique food items.", "album_id": "486365", "photo_flickr_id": "20531265", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47556", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you can try many unique food items .", "storylet_id": "237784"}], [{"original_text": "My buddy Tim is a delivery driver in a foreign country.", "album_id": "486365", "photo_flickr_id": "20531382", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47557", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my buddy [male] is a delivery driver in a foreign country .", "storylet_id": "237785"}], [{"original_text": "He goes around on his scooter and makes deliveries to food vendors.", "album_id": "486365", "photo_flickr_id": "20531446", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47557", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he goes around on his scooter and makes deliveries to food vendors .", "storylet_id": "237786"}], [{"original_text": "Last week he had to deliver a bunch of watermelons to a guy.", "album_id": "486365", "photo_flickr_id": "20531078", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47557", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "last week he had to deliver a bunch of watermelons to a guy .", "storylet_id": "237787"}], [{"original_text": "More common is grapes or figs, which are easier to carry.", "album_id": "486365", "photo_flickr_id": "21440231", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47557", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more common is grapes or figs , which are easier to carry .", "storylet_id": "237788"}], [{"original_text": "The best in when he gets to deliver prepared food for good tips.", "album_id": "486365", "photo_flickr_id": "20531265", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47557", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best in when he gets to deliver prepared food for good tips .", "storylet_id": "237789"}], [{"original_text": "My ship visited Izmir, Turkey and I was able to go ashore.", "album_id": "486365", "photo_flickr_id": "20531423", "setting": "last-3-pick-old-and-tell", "worker_id": "5CDQKV6J4GD8A8B", "story_id": "47558", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my ship visited location , location and i was able to go ashore .", "storylet_id": "237790"}], [{"original_text": "I traded duty with another fellow so I could spend extra time seeing the sights.", "album_id": "486365", "photo_flickr_id": "20531446", "setting": "last-3-pick-old-and-tell", "worker_id": "5CDQKV6J4GD8A8B", "story_id": "47558", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i traded duty with another fellow so i could spend extra time seeing the sights .", "storylet_id": "237791"}], [{"original_text": "I tried their watermelon, and while it was good, our melons in Georgia are sweeter.", "album_id": "486365", "photo_flickr_id": "20531078", "setting": "last-3-pick-old-and-tell", "worker_id": "5CDQKV6J4GD8A8B", "story_id": "47558", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i tried their watermelon , and while it was good , our melons in location are sweeter .", "storylet_id": "237792"}], [{"original_text": "Everything seemed so colorful as I walked about.", "album_id": "486365", "photo_flickr_id": "20531162", "setting": "last-3-pick-old-and-tell", "worker_id": "5CDQKV6J4GD8A8B", "story_id": "47558", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everything seemed so colorful as i walked about .", "storylet_id": "237793"}], [{"original_text": "This shop was a little like a delicatessen and offered pistachios, oiled olives, cabbage pickled in beet juice and sliced peppers.", "album_id": "486365", "photo_flickr_id": "20531265", "setting": "last-3-pick-old-and-tell", "worker_id": "5CDQKV6J4GD8A8B", "story_id": "47558", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this shop was a little like a delicatessen and offered pistachios , oiled olives , cabbage pickled in beet juice and sliced peppers .", "storylet_id": "237794"}], [{"original_text": "A tour of the far east always has its crazy moments. What exactly is this guy selling?", "album_id": "486365", "photo_flickr_id": "20531423", "setting": "last-3-pick-old-and-tell", "worker_id": "ZXDUOMPSQH9NE4S", "story_id": "47559", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a tour of the far east always has its crazy moments . what exactly is this guy selling ?", "storylet_id": "237795"}], [{"original_text": "Fruits are easy in these parts and so is travelling - apparently.", "album_id": "486365", "photo_flickr_id": "20531446", "setting": "last-3-pick-old-and-tell", "worker_id": "ZXDUOMPSQH9NE4S", "story_id": "47559", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fruits are easy in these parts and so is travelling - apparently .", "storylet_id": "237796"}], [{"original_text": "Whose up for pumpkins? They are for eating and not just for decorations - so the locals say.", "album_id": "486365", "photo_flickr_id": "20531078", "setting": "last-3-pick-old-and-tell", "worker_id": "ZXDUOMPSQH9NE4S", "story_id": "47559", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "whose up for pumpkins ? they are for eating and not just for decorations - so the locals say .", "storylet_id": "237797"}], [{"original_text": "More fruits and the folks here look a whole lot younger. Coincidence?", "album_id": "486365", "photo_flickr_id": "20531162", "setting": "last-3-pick-old-and-tell", "worker_id": "ZXDUOMPSQH9NE4S", "story_id": "47559", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more fruits and the folks here look a whole lot younger . coincidence ?", "storylet_id": "237798"}], [{"original_text": "Condiments ahoy!", "album_id": "486365", "photo_flickr_id": "20531265", "setting": "last-3-pick-old-and-tell", "worker_id": "ZXDUOMPSQH9NE4S", "story_id": "47559", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "condiments ahoy !", "storylet_id": "237799"}], [{"original_text": "Jen took the train into the city.", "album_id": "72157628976365435", "photo_flickr_id": "6740098677", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47560", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "jen took the train into the city .", "storylet_id": "237800"}], [{"original_text": "She walked towards the market through the city.", "album_id": "72157628976365435", "photo_flickr_id": "6740099575", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47560", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she walked towards the market through the city .", "storylet_id": "237801"}], [{"original_text": "She chose some snacks to serve at her dinner party.", "album_id": "72157628976365435", "photo_flickr_id": "6740116017", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47560", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she chose some snacks to serve at her dinner party .", "storylet_id": "237802"}], [{"original_text": "She waited on line for some fancy cheese.", "album_id": "72157628976365435", "photo_flickr_id": "6740123541", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47560", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she waited on line for some fancy cheese .", "storylet_id": "237803"}], [{"original_text": "She paid for her groceries before heading back to the train station.", "album_id": "72157628976365435", "photo_flickr_id": "6740126177", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "47560", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she paid for her groceries before heading back to the train station .", "storylet_id": "237804"}], [{"original_text": "Shopping in the city sometimes requires a bit of a commute.", "album_id": "72157628976365435", "photo_flickr_id": "6740098677", "setting": "first-2-pick-and-tell", "worker_id": "ZE7D73GNC9AJ7JO", "story_id": "47561", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "shopping in the city sometimes requires a bit of a commute .", "storylet_id": "237805"}], [{"original_text": "However, one gets to experience city life as they run their errands", "album_id": "72157628976365435", "photo_flickr_id": "6740099575", "setting": "first-2-pick-and-tell", "worker_id": "ZE7D73GNC9AJ7JO", "story_id": "47561", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "however , one gets to experience city life as they run their errands", "storylet_id": "237806"}], [{"original_text": "Some people can make shopping a hassle.", "album_id": "72157628976365435", "photo_flickr_id": "6740107965", "setting": "first-2-pick-and-tell", "worker_id": "ZE7D73GNC9AJ7JO", "story_id": "47561", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people can make shopping a hassle .", "storylet_id": "237807"}], [{"original_text": "While others are simply in the same boat you are.", "album_id": "72157628976365435", "photo_flickr_id": "6740110569", "setting": "first-2-pick-and-tell", "worker_id": "ZE7D73GNC9AJ7JO", "story_id": "47561", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while others are simply in the same boat you are .", "storylet_id": "237808"}], [{"original_text": "But it is all worth it in the end to get to stuff your face with your favorite food.", "album_id": "72157628976365435", "photo_flickr_id": "6740113977", "setting": "first-2-pick-and-tell", "worker_id": "ZE7D73GNC9AJ7JO", "story_id": "47561", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but it is all worth it in the end to get to stuff your face with your favorite food .", "storylet_id": "237809"}], [{"original_text": "This was my first day and my first ride on a subway and my roommate told me she would take some pictures of me in the city.", "album_id": "72157628976365435", "photo_flickr_id": "6740098677", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47562", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was my first day and my first ride on a subway and my roommate told me she would take some pictures of me in the city .", "storylet_id": "237810"}], [{"original_text": "I got off the subway and just stared at all the buildings.", "album_id": "72157628976365435", "photo_flickr_id": "6740099575", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47562", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got off the subway and just stared at all the buildings .", "storylet_id": "237811"}], [{"original_text": "I thought I would go to some stores and low and behold there was someone doing something weird, it made me just stare.", "album_id": "72157628976365435", "photo_flickr_id": "6740107965", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47562", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i thought i would go to some stores and low and behold there was someone doing something weird , it made me just stare .", "storylet_id": "237812"}], [{"original_text": "I see that there are some elderly people shopping here too.", "album_id": "72157628976365435", "photo_flickr_id": "6740110569", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47562", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i see that there are some elderly people shopping here too .", "storylet_id": "237813"}], [{"original_text": "They asked me to try a few things and I am telling you it tasted HORRIBLE. I shouldn't have opened my mouth with food in it, but I couldn't help it.", "album_id": "72157628976365435", "photo_flickr_id": "6740113977", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47562", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they asked me to try a few things and i am telling you it tasted horrible . i should n't have opened my mouth with food in it , but i could n't help it .", "storylet_id": "237814"}], [{"original_text": "I took the subway to downtown last week.", "album_id": "72157628976365435", "photo_flickr_id": "6740098677", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47563", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took the subway to downtown last week .", "storylet_id": "237815"}], [{"original_text": "I went shopping.", "album_id": "72157628976365435", "photo_flickr_id": "6740099575", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47563", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went shopping .", "storylet_id": "237816"}], [{"original_text": "There were a lot of cool items to try out.", "album_id": "72157628976365435", "photo_flickr_id": "6740107965", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47563", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of cool items to try out .", "storylet_id": "237817"}], [{"original_text": "I met some interesting people while I was there.", "album_id": "72157628976365435", "photo_flickr_id": "6740110569", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47563", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i met some interesting people while i was there .", "storylet_id": "237818"}], [{"original_text": "Afterward we got a bite to eat and the food was really hot.", "album_id": "72157628976365435", "photo_flickr_id": "6740113977", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47563", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we got a bite to eat and the food was really hot .", "storylet_id": "237819"}], [{"original_text": "I like riding the train into the city", "album_id": "72157628976365435", "photo_flickr_id": "6740098677", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47564", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i like riding the train into the city", "storylet_id": "237820"}], [{"original_text": "When I get to the city I always do lots of shopping.", "album_id": "72157628976365435", "photo_flickr_id": "6740099575", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47564", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when i get to the city i always do lots of shopping .", "storylet_id": "237821"}], [{"original_text": "I love to get food there ", "album_id": "72157628976365435", "photo_flickr_id": "6740116017", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47564", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i love to get food there", "storylet_id": "237822"}], [{"original_text": "It's so good and tasty.", "album_id": "72157628976365435", "photo_flickr_id": "6740123541", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47564", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's so good and tasty .", "storylet_id": "237823"}], [{"original_text": "And the people are always so nice.", "album_id": "72157628976365435", "photo_flickr_id": "6740126177", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "47564", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the people are always so nice .", "storylet_id": "237824"}], [{"original_text": "We kicked off our day of sightseeing very early.", "album_id": "134606", "photo_flickr_id": "5234345", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47565", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we kicked off our day of sightseeing very early .", "storylet_id": "237825"}], [{"original_text": "It was so early that city was deserted. We later found out it was a holiday.", "album_id": "134606", "photo_flickr_id": "5234387", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47565", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was so early that city was deserted . we later found out it was a holiday .", "storylet_id": "237826"}], [{"original_text": "We strolled through many shops and were tempted to purchase too much.", "album_id": "134606", "photo_flickr_id": "5234503", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47565", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we strolled through many shops and were tempted to purchase too much .", "storylet_id": "237827"}], [{"original_text": "This was our wonderful meal at the end of a long day.", "album_id": "134606", "photo_flickr_id": "5234490", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47565", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was our wonderful meal at the end of a long day .", "storylet_id": "237828"}], [{"original_text": "We splurged on a foot massage back at the hotel while planning the next day of walking.", "album_id": "134606", "photo_flickr_id": "5234420", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47565", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we splurged on a foot massage back at the hotel while planning the next day of walking .", "storylet_id": "237829"}], [{"original_text": "A woman uses a pay phone in town just for the fun of it.", "album_id": "134606", "photo_flickr_id": "5234330", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47566", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a woman uses a pay phone in town just for the fun of it .", "storylet_id": "237830"}], [{"original_text": "She comes across a spa and gets a pedicure while she reads.", "album_id": "134606", "photo_flickr_id": "5234420", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47566", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she comes across a spa and gets a pedicure while she reads .", "storylet_id": "237831"}], [{"original_text": "After her pedicure she decides to have some lunch.", "album_id": "134606", "photo_flickr_id": "5234456", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47566", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after her pedicure she decides to have some lunch .", "storylet_id": "237832"}], [{"original_text": "Finally a stop at the local museum with some very creepy art work.", "album_id": "134606", "photo_flickr_id": "5234568", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47566", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally a stop at the local museum with some very creepy art work .", "storylet_id": "237833"}], [{"original_text": "This artist captures the essence of human beings well.", "album_id": "134606", "photo_flickr_id": "5234602", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47566", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this artist captures the essence of human beings well .", "storylet_id": "237834"}], [{"original_text": "Crystal is new in town and looking for something fun to do.", "album_id": "134606", "photo_flickr_id": "5234330", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "47567", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is new in town and looking for something fun to do .", "storylet_id": "237835"}], [{"original_text": "She searches through different catalogs to see what she can do.", "album_id": "134606", "photo_flickr_id": "5234420", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "47567", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she searches through different catalogs to see what she can do .", "storylet_id": "237836"}], [{"original_text": "She grabs a bite to eat and then locates a nearby museum with a lot of artifacts.", "album_id": "134606", "photo_flickr_id": "5234456", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "47567", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she grabs a bite to eat and then locates a nearby museum with a lot of artifacts .", "storylet_id": "237837"}], [{"original_text": "Crystal came across one that caught her eye, a caveman and a log.", "album_id": "134606", "photo_flickr_id": "5234568", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "47567", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] came across one that caught her eye , a caveman and a log .", "storylet_id": "237838"}], [{"original_text": "Next to the caveman was another, he looked so sad trying to build a fire.", "album_id": "134606", "photo_flickr_id": "5234602", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "47567", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "next to the caveman was another , he looked so sad trying to build a fire .", "storylet_id": "237839"}], [{"original_text": "Katie had saved for years for her trip to the faraway Eastern city.", "album_id": "134606", "photo_flickr_id": "5234345", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47568", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] had saved for years for her trip to the faraway eastern city .", "storylet_id": "237840"}], [{"original_text": "She stayed at a large hotel in the heart of the downtown.", "album_id": "134606", "photo_flickr_id": "5234387", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47568", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she stayed at a large hotel in the heart of the downtown .", "storylet_id": "237841"}], [{"original_text": "She had brought a lot of money to buy local goods, and she fell hard for this tree trunk chair. ", "album_id": "134606", "photo_flickr_id": "5234503", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47568", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she had brought a lot of money to buy local goods , and she fell hard for this tree trunk chair .", "storylet_id": "237842"}], [{"original_text": "She insisted on eating every meal at authentic local restaurants. She didn't like the food much, but she wouldn't admit that to herself.", "album_id": "134606", "photo_flickr_id": "5234490", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47568", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she insisted on eating every meal at authentic local restaurants . she did n't like the food much , but she would n't admit that to herself .", "storylet_id": "237843"}], [{"original_text": "At night in the hotel, she browsed her many travel booklets to decide what to see the next day. She was determined this would be the trip of a lifetime.", "album_id": "134606", "photo_flickr_id": "5234420", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47568", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night in the hotel , she browsed her many travel booklets to decide what to see the next day . she was determined this would be the trip of a lifetime .", "storylet_id": "237844"}], [{"original_text": "The young college student was visiting the city.", "album_id": "134606", "photo_flickr_id": "5234345", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47569", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the young college student was visiting the city .", "storylet_id": "237845"}], [{"original_text": "She saw some beautiful buildings.", "album_id": "134606", "photo_flickr_id": "5234387", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47569", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she saw some beautiful buildings .", "storylet_id": "237846"}], [{"original_text": "She also visited an art museum.", "album_id": "134606", "photo_flickr_id": "5234503", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47569", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she also visited an art museum .", "storylet_id": "237847"}], [{"original_text": "Then she had dinner.", "album_id": "134606", "photo_flickr_id": "5234490", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47569", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then she had dinner .", "storylet_id": "237848"}], [{"original_text": "She ended her night relaxing and reading.", "album_id": "134606", "photo_flickr_id": "5234420", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47569", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she ended her night relaxing and reading .", "storylet_id": "237849"}], [{"original_text": "Our trip began with a trip to the market.", "album_id": "72157623146557081", "photo_flickr_id": "4298772263", "setting": "first-2-pick-and-tell", "worker_id": "2I5RWWWEAXLXD6G", "story_id": "47570", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip began with a trip to the market .", "storylet_id": "237850"}], [{"original_text": "We found a large produce stand.", "album_id": "72157623146557081", "photo_flickr_id": "4298773081", "setting": "first-2-pick-and-tell", "worker_id": "2I5RWWWEAXLXD6G", "story_id": "47570", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we found a large produce stand .", "storylet_id": "237851"}], [{"original_text": "Then, we bought some baked goods.", "album_id": "72157623146557081", "photo_flickr_id": "4299526180", "setting": "first-2-pick-and-tell", "worker_id": "2I5RWWWEAXLXD6G", "story_id": "47570", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then , we bought some baked goods .", "storylet_id": "237852"}], [{"original_text": "Afterward, we gathered with the locals in the town square for a festival celebration.", "album_id": "72157623146557081", "photo_flickr_id": "4298774787", "setting": "first-2-pick-and-tell", "worker_id": "2I5RWWWEAXLXD6G", "story_id": "47570", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward , we gathered with the locals in the town square for a festival celebration .", "storylet_id": "237853"}], [{"original_text": "Our evening ended with a carriage ride back to our hotel.", "album_id": "72157623146557081", "photo_flickr_id": "4299524320", "setting": "first-2-pick-and-tell", "worker_id": "2I5RWWWEAXLXD6G", "story_id": "47570", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our evening ended with a carriage ride back to our hotel .", "storylet_id": "237854"}], [{"original_text": "We loved the food markets along the streets of Europe.", "album_id": "72157623146557081", "photo_flickr_id": "4298773081", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47571", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we loved the food markets along the streets of location .", "storylet_id": "237855"}], [{"original_text": "There were fresh meats and sausages made on the premises.", "album_id": "72157623146557081", "photo_flickr_id": "4298772263", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47571", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were fresh meats and sausages made on the premises .", "storylet_id": "237856"}], [{"original_text": "The baked goods smelled so wonderfully we had to make a purchase.", "album_id": "72157623146557081", "photo_flickr_id": "4299526180", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47571", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the baked goods smelled so wonderfully we had to make a purchase .", "storylet_id": "237857"}], [{"original_text": "We splurged on a horse drawn carriage ride on the city streets.", "album_id": "72157623146557081", "photo_flickr_id": "4299524320", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47571", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we splurged on a horse drawn carriage ride on the city streets .", "storylet_id": "237858"}], [{"original_text": "The beautiful lights made us want to stay awake all night!", "album_id": "72157623146557081", "photo_flickr_id": "4299530150", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47571", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the beautiful lights made us want to stay awake all night !", "storylet_id": "237859"}], [{"original_text": "There were so many sweets to eat at the market, I wanted to buy them all.", "album_id": "72157623146557081", "photo_flickr_id": "4298772263", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47572", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were so many sweets to eat at the market , i wanted to buy them all .", "storylet_id": "237860"}], [{"original_text": "There were also healthy options that looked just as good.", "album_id": "72157623146557081", "photo_flickr_id": "4298773081", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47572", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were also healthy options that looked just as good .", "storylet_id": "237861"}], [{"original_text": "It was hard for me to take my eyes off the sweets though.", "album_id": "72157623146557081", "photo_flickr_id": "4299526180", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47572", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was hard for me to take my eyes off the sweets though .", "storylet_id": "237862"}], [{"original_text": "Afterwards, we took a walk into town to see the lights.", "album_id": "72157623146557081", "photo_flickr_id": "4298774787", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47572", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards , we took a walk into town to see the lights .", "storylet_id": "237863"}], [{"original_text": "There were even old cars that zoomed down the streets.", "album_id": "72157623146557081", "photo_flickr_id": "4299524320", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47572", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were even old cars that zoomed down the streets .", "storylet_id": "237864"}], [{"original_text": "You wouldn't believe the quality of the meets at the strip market in town. ", "album_id": "72157623146557081", "photo_flickr_id": "4298772263", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47573", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "you would n't believe the quality of the meets at the strip market in town .", "storylet_id": "237865"}], [{"original_text": "And the product is so fresh and ripe. ", "album_id": "72157623146557081", "photo_flickr_id": "4298773081", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47573", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the product is so fresh and ripe .", "storylet_id": "237866"}], [{"original_text": "I went just the other day and spotted a new bakery. ", "album_id": "72157623146557081", "photo_flickr_id": "4299526180", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47573", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i went just the other day and spotted a new bakery .", "storylet_id": "237867"}], [{"original_text": "The streets were crowded with people which did not surprise me. ", "album_id": "72157623146557081", "photo_flickr_id": "4298774787", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47573", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the streets were crowded with people which did not surprise me .", "storylet_id": "237868"}], [{"original_text": "I decided to splurge and took a chariot ride back home. ", "album_id": "72157623146557081", "photo_flickr_id": "4299524320", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47573", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to splurge and took a chariot ride back home .", "storylet_id": "237869"}], [{"original_text": "Yet another visit to the local farmers market", "album_id": "72157623146557081", "photo_flickr_id": "4298773081", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47574", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yet another visit to the local farmers market", "storylet_id": "237870"}], [{"original_text": "Lots of different selections here, does not help my diet", "album_id": "72157623146557081", "photo_flickr_id": "4298772263", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47574", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of different selections here , does not help my diet", "storylet_id": "237871"}], [{"original_text": "This is where the sweets are sold", "album_id": "72157623146557081", "photo_flickr_id": "4299526180", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47574", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is where the sweets are sold", "storylet_id": "237872"}], [{"original_text": "An old horse drawn carriage bring the nostalgia", "album_id": "72157623146557081", "photo_flickr_id": "4299524320", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47574", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an old horse drawn carriage bring the nostalgia", "storylet_id": "237873"}], [{"original_text": "City lights at night time looking fabulous ", "album_id": "72157623146557081", "photo_flickr_id": "4299530150", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47574", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "city lights at night time looking fabulous", "storylet_id": "237874"}], [{"original_text": "We went on a tropical trip.", "album_id": "371372", "photo_flickr_id": "15397564", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47575", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on a tropical trip .", "storylet_id": "237875"}], [{"original_text": "At one point we got up close to some monkeys, and got to see some people play with them.", "album_id": "371372", "photo_flickr_id": "15397568", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47575", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at one point we got up close to some monkeys , and got to see some people play with them .", "storylet_id": "237876"}], [{"original_text": "The monkeys also enjoyed to play with each other.", "album_id": "371372", "photo_flickr_id": "15397576", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47575", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the monkeys also enjoyed to play with each other .", "storylet_id": "237877"}], [{"original_text": "After watching the monkeys we had to have a light lunch.", "album_id": "371372", "photo_flickr_id": "15397629", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47575", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after watching the monkeys we had to have a light lunch .", "storylet_id": "237878"}], [{"original_text": "We enjoyed the rest of the day by the beach watching the sunset.", "album_id": "371372", "photo_flickr_id": "15397637", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "47575", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we enjoyed the rest of the day by the beach watching the sunset .", "storylet_id": "237879"}], [{"original_text": "Welcome to Angullia Beach House Resort!", "album_id": "371372", "photo_flickr_id": "15397603", "setting": "first-2-pick-and-tell", "worker_id": "UAOUW9JIM2M91F1", "story_id": "47576", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "welcome to location location location location !", "storylet_id": "237880"}], [{"original_text": "The tourist is hungry.", "album_id": "371372", "photo_flickr_id": "15397573", "setting": "first-2-pick-and-tell", "worker_id": "UAOUW9JIM2M91F1", "story_id": "47576", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tourist is hungry .", "storylet_id": "237881"}], [{"original_text": "He sees the two monkeys.", "album_id": "371372", "photo_flickr_id": "15397576", "setting": "first-2-pick-and-tell", "worker_id": "UAOUW9JIM2M91F1", "story_id": "47576", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he sees the two monkeys .", "storylet_id": "237882"}], [{"original_text": "Here. Let me catch them and cook them for you.", "album_id": "371372", "photo_flickr_id": "15397568", "setting": "first-2-pick-and-tell", "worker_id": "UAOUW9JIM2M91F1", "story_id": "47576", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here . let me catch them and cook them for you .", "storylet_id": "237883"}], [{"original_text": "Here's your monkey dumplings!", "album_id": "371372", "photo_flickr_id": "15397629", "setting": "first-2-pick-and-tell", "worker_id": "UAOUW9JIM2M91F1", "story_id": "47576", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's your monkey dumplings !", "storylet_id": "237884"}], [{"original_text": "I visited Asia last year and got to stay in a hotel that was built on stilts.", "album_id": "371372", "photo_flickr_id": "15397564", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47577", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i visited location last year and got to stay in a hotel that was built on stilts .", "storylet_id": "237885"}], [{"original_text": "Nearby lived a man who trained monkeys for a living.", "album_id": "371372", "photo_flickr_id": "15397568", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47577", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "nearby lived a man who trained monkeys for a living .", "storylet_id": "237886"}], [{"original_text": "The monkeys would fight each other for their own amusement.", "album_id": "371372", "photo_flickr_id": "15397576", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47577", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the monkeys would fight each other for their own amusement .", "storylet_id": "237887"}], [{"original_text": "Later I would get some traditional food in small dishes.", "album_id": "371372", "photo_flickr_id": "15397629", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47577", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later i would get some traditional food in small dishes .", "storylet_id": "237888"}], [{"original_text": "I would walk down to the river and sit and watch the sunset.", "album_id": "371372", "photo_flickr_id": "15397637", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47577", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i would walk down to the river and sit and watch the sunset .", "storylet_id": "237889"}], [{"original_text": "When I was on vacation I had a very unique experience.", "album_id": "371372", "photo_flickr_id": "15397564", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47578", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i was on vacation i had a very unique experience .", "storylet_id": "237890"}], [{"original_text": "I got to play with many monkeys while I was there.", "album_id": "371372", "photo_flickr_id": "15397568", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47578", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got to play with many monkeys while i was there .", "storylet_id": "237891"}], [{"original_text": "They were very mean and took most of my food.", "album_id": "371372", "photo_flickr_id": "15397576", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47578", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were very mean and took most of my food .", "storylet_id": "237892"}], [{"original_text": "I had little to eat while I was there because of the monkeys.", "album_id": "371372", "photo_flickr_id": "15397629", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47578", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had little to eat while i was there because of the monkeys .", "storylet_id": "237893"}], [{"original_text": "After I left I was glad and I don't want to see anymore monkeys.", "album_id": "371372", "photo_flickr_id": "15397637", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47578", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after i left i was glad and i do n't want to see anymore monkeys .", "storylet_id": "237894"}], [{"original_text": "The retreat had many tall trees", "album_id": "371372", "photo_flickr_id": "15397564", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47579", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the retreat had many tall trees", "storylet_id": "237895"}], [{"original_text": "and monkey that needed to be fed. ", "album_id": "371372", "photo_flickr_id": "15397568", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47579", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and monkey that needed to be fed .", "storylet_id": "237896"}], [{"original_text": "After feeding they played", "album_id": "371372", "photo_flickr_id": "15397576", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47579", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after feeding they played", "storylet_id": "237897"}], [{"original_text": "before the adult had some food too", "album_id": "371372", "photo_flickr_id": "15397629", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47579", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "before the adult had some food too", "storylet_id": "237898"}], [{"original_text": "and enjoyed the great view of the water.", "album_id": "371372", "photo_flickr_id": "15397637", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47579", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and enjoyed the great view of the water .", "storylet_id": "237899"}], [{"original_text": "It was such a nice day today, so I took a ride into town.", "album_id": "270479", "photo_flickr_id": "10860926", "setting": "first-2-pick-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "47580", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was such a nice day today , so i took a ride into town .", "storylet_id": "237900"}], [{"original_text": "I saw some decorations down the road, so I went to go investigate.", "album_id": "270479", "photo_flickr_id": "10861228", "setting": "first-2-pick-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "47580", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw some decorations down the road , so i went to go investigate .", "storylet_id": "237901"}], [{"original_text": "I found a nice little farmers market and bought some fresh fruits.", "album_id": "270479", "photo_flickr_id": "10860832", "setting": "first-2-pick-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "47580", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i found a nice little farmers market and bought some fresh fruits .", "storylet_id": "237902"}], [{"original_text": "I sat and relaxed under a giant shady tree, and ate my fruit.", "album_id": "270479", "photo_flickr_id": "10861001", "setting": "first-2-pick-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "47580", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i sat and relaxed under a giant shady tree , and ate my fruit .", "storylet_id": "237903"}], [{"original_text": "I saw a stray cat relaxing on the pavement, and gave the cat a piece of food.", "album_id": "270479", "photo_flickr_id": "10861289", "setting": "first-2-pick-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "47580", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i saw a stray cat relaxing on the pavement , and gave the cat a piece of food .", "storylet_id": "237904"}], [{"original_text": "Today we went for a long drive by the water", "album_id": "270479", "photo_flickr_id": "10861174", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "47581", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went for a long drive by the water", "storylet_id": "237905"}], [{"original_text": "There were many beautiful scenes", "album_id": "270479", "photo_flickr_id": "10861133", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "47581", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many beautiful scenes", "storylet_id": "237906"}], [{"original_text": "Including this one if the rock wall", "album_id": "270479", "photo_flickr_id": "10861040", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "47581", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "including this one if the rock wall", "storylet_id": "237907"}], [{"original_text": "We then decided to see the other side of the rock wall", "album_id": "270479", "photo_flickr_id": "10861001", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "47581", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we then decided to see the other side of the rock wall", "storylet_id": "237908"}], [{"original_text": "And ended the day going to the market on the street ", "album_id": "270479", "photo_flickr_id": "10860832", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "47581", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and ended the day going to the market on the street", "storylet_id": "237909"}], [{"original_text": "When I was on vacation last week i had a great time.", "album_id": "270479", "photo_flickr_id": "10861174", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47582", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i was on vacation last week i had a great time .", "storylet_id": "237910"}], [{"original_text": "There were a lot of events going on while I was there.", "album_id": "270479", "photo_flickr_id": "10861133", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47582", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of events going on while i was there .", "storylet_id": "237911"}], [{"original_text": "The castle I stayed in had a huge wall.", "album_id": "270479", "photo_flickr_id": "10861040", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47582", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the castle i stayed in had a huge wall .", "storylet_id": "237912"}], [{"original_text": "There was no way I could climb it.", "album_id": "270479", "photo_flickr_id": "10861001", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47582", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was no way i could climb it .", "storylet_id": "237913"}], [{"original_text": "There was a great market nearby with lots of fresh goods.", "album_id": "270479", "photo_flickr_id": "10860832", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47582", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a great market nearby with lots of fresh goods .", "storylet_id": "237914"}], [{"original_text": "This the view of the streer on our trip", "album_id": "270479", "photo_flickr_id": "10860926", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47583", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this the view of the streer on our trip", "storylet_id": "237915"}], [{"original_text": " We saw ow people hang their clothes to dry here,", "album_id": "270479", "photo_flickr_id": "10861228", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47583", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw ow people hang their clothes to dry here ,", "storylet_id": "237916"}], [{"original_text": "The street is filled with street vendors", "album_id": "270479", "photo_flickr_id": "10860832", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47583", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the street is filled with street vendors", "storylet_id": "237917"}], [{"original_text": "This wall was one of the oldest walls here.", "album_id": "270479", "photo_flickr_id": "10861001", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47583", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this wall was one of the oldest walls here .", "storylet_id": "237918"}], [{"original_text": "We saw a black cat, We were careful it didn't cross our path.", "album_id": "270479", "photo_flickr_id": "10861289", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47583", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we saw a black cat , we were careful it did n't cross our path .", "storylet_id": "237919"}], [{"original_text": "There was not much traffic", "album_id": "270479", "photo_flickr_id": "10860926", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47584", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was not much traffic", "storylet_id": "237920"}], [{"original_text": "near the house with fish.", "album_id": "270479", "photo_flickr_id": "10861228", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47584", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "near the house with fish .", "storylet_id": "237921"}], [{"original_text": "But the market had a lot of people", "album_id": "270479", "photo_flickr_id": "10860832", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47584", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but the market had a lot of people", "storylet_id": "237922"}], [{"original_text": "and pretty trees that were green.", "album_id": "270479", "photo_flickr_id": "10861001", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47584", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and pretty trees that were green .", "storylet_id": "237923"}], [{"original_text": "Many saw the cat that was nearby.", "album_id": "270479", "photo_flickr_id": "10861289", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47584", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many saw the cat that was nearby .", "storylet_id": "237924"}], [{"original_text": "We made it to the town.", "album_id": "507082", "photo_flickr_id": "21845397", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47585", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we made it to the town .", "storylet_id": "237925"}], [{"original_text": "First stop was to purchase Russian dolls.", "album_id": "507082", "photo_flickr_id": "21845490", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47585", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first stop was to purchase russian dolls .", "storylet_id": "237926"}], [{"original_text": "She made sure to get her henna tattoo this time.", "album_id": "507082", "photo_flickr_id": "21845559", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47585", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she made sure to get her henna tattoo this time .", "storylet_id": "237927"}], [{"original_text": "The kids played on the splash pad.", "album_id": "507082", "photo_flickr_id": "21845605", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47585", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids played on the splash pad .", "storylet_id": "237928"}], [{"original_text": "The adults enjoyed wine and cheese.", "album_id": "507082", "photo_flickr_id": "21845820", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47585", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the adults enjoyed wine and cheese .", "storylet_id": "237929"}], [{"original_text": "This woman is about to get her first henna tattoo.", "album_id": "507082", "photo_flickr_id": "21845446", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47586", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this woman is about to get her first henna tattoo .", "storylet_id": "237930"}], [{"original_text": "First her arm is cleaned so the henna will adhere.", "album_id": "507082", "photo_flickr_id": "21845517", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47586", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first her arm is cleaned so the henna will adhere .", "storylet_id": "237931"}], [{"original_text": "The artist begins with the basic structure of the tattoo.", "album_id": "507082", "photo_flickr_id": "21845533", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47586", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the artist begins with the basic structure of the tattoo .", "storylet_id": "237932"}], [{"original_text": "Then, she goes back through and adds details.", "album_id": "507082", "photo_flickr_id": "21845547", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47586", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , she goes back through and adds details .", "storylet_id": "237933"}], [{"original_text": "The tattoo is finished!", "album_id": "507082", "photo_flickr_id": "21845559", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "47586", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the tattoo is finished !", "storylet_id": "237934"}], [{"original_text": "Before my friend's wedding, I went into the city to see a tattoo artist.", "album_id": "507082", "photo_flickr_id": "21845446", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47587", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before my friend 's wedding , i went into the city to see a tattoo artist .", "storylet_id": "237935"}], [{"original_text": "She unrolled my sleeve and prepared my arm for the artwork.", "album_id": "507082", "photo_flickr_id": "21845517", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47587", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she unrolled my sleeve and prepared my arm for the artwork .", "storylet_id": "237936"}], [{"original_text": "She started drawing a simple branch.", "album_id": "507082", "photo_flickr_id": "21845533", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47587", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she started drawing a simple branch .", "storylet_id": "237937"}], [{"original_text": "Then she added leaves to the long plant.", "album_id": "507082", "photo_flickr_id": "21845547", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47587", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then she added leaves to the long plant .", "storylet_id": "237938"}], [{"original_text": "Finally, she made a drawing of a plant running up my arm.", "album_id": "507082", "photo_flickr_id": "21845559", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47587", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , she made a drawing of a plant running up my arm .", "storylet_id": "237939"}], [{"original_text": "This is before I start to get some art on my arm", "album_id": "507082", "photo_flickr_id": "21845446", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47588", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is before i start to get some art on my arm", "storylet_id": "237940"}], [{"original_text": "I am a little nervous, but I out out my hand anyway.", "album_id": "507082", "photo_flickr_id": "21845517", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47588", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i am a little nervous , but i out out my hand anyway .", "storylet_id": "237941"}], [{"original_text": " The Artist starts to draw a design.", "album_id": "507082", "photo_flickr_id": "21845533", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47588", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the artist starts to draw a design .", "storylet_id": "237942"}], [{"original_text": "It is a long stem with leaves, so far so good. ", "album_id": "507082", "photo_flickr_id": "21845547", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47588", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is a long stem with leaves , so far so good .", "storylet_id": "237943"}], [{"original_text": "The end result was just what I wanted. this was great.", "album_id": "507082", "photo_flickr_id": "21845559", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47588", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the end result was just what i wanted . this was great .", "storylet_id": "237944"}], [{"original_text": "The old bridge was visited", "album_id": "507082", "photo_flickr_id": "21845397", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47589", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old bridge was visited", "storylet_id": "237945"}], [{"original_text": "by someone that had a lot of dolls", "album_id": "507082", "photo_flickr_id": "21845490", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47589", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "by someone that had a lot of dolls", "storylet_id": "237946"}], [{"original_text": "and a vine tattoo on their arm.", "album_id": "507082", "photo_flickr_id": "21845559", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47589", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and a vine tattoo on their arm .", "storylet_id": "237947"}], [{"original_text": "After they visited the fountains", "album_id": "507082", "photo_flickr_id": "21845605", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47589", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after they visited the fountains", "storylet_id": "237948"}], [{"original_text": "before eating a nice meal of cheese and grapes.", "album_id": "507082", "photo_flickr_id": "21845820", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47589", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before eating a nice meal of cheese and grapes .", "storylet_id": "237949"}], [{"original_text": "We stopped at this one little restaurant on our way to the city. ", "album_id": "72157623169361399", "photo_flickr_id": "4308260855", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47590", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we stopped at this one little restaurant on our way to the city .", "storylet_id": "237950"}], [{"original_text": "The sandwiches were very good. ", "album_id": "72157623169361399", "photo_flickr_id": "4308259951", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47590", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sandwiches were very good .", "storylet_id": "237951"}], [{"original_text": "The building just seemed to glow at night. ", "album_id": "72157623169361399", "photo_flickr_id": "4309003206", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47590", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the building just seemed to glow at night .", "storylet_id": "237952"}], [{"original_text": "After the visit to the city we stopped for some beers. ", "album_id": "72157623169361399", "photo_flickr_id": "4309009162", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47590", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the visit to the city we stopped for some beers .", "storylet_id": "237953"}], [{"original_text": "This was the view from the ferry on our way back to the hotel.", "album_id": "72157623169361399", "photo_flickr_id": "4308267667", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47590", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the view from the ferry on our way back to the hotel .", "storylet_id": "237954"}], [{"original_text": "After walking for hours on our tour, we wanted to sit and relax.", "album_id": "72157623169361399", "photo_flickr_id": "4308260855", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47591", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after walking for hours on our tour , we wanted to sit and relax .", "storylet_id": "237955"}], [{"original_text": "We started with a few beers and didn't want to leave.", "album_id": "72157623169361399", "photo_flickr_id": "4309006912", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47591", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started with a few beers and did n't want to leave .", "storylet_id": "237956"}], [{"original_text": "No that's not his beer. My son was playing waiter.", "album_id": "72157623169361399", "photo_flickr_id": "4309008396", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47591", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "no that 's not his beer . my son was playing waiter .", "storylet_id": "237957"}], [{"original_text": "As usual, we got hungry after drinking a few. The food was greasy but tasty.", "album_id": "72157623169361399", "photo_flickr_id": "4309009162", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47591", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as usual , we got hungry after drinking a few . the food was greasy but tasty .", "storylet_id": "237958"}], [{"original_text": "A photo-op by the water before heading back to the hotel.", "album_id": "72157623169361399", "photo_flickr_id": "4309004504", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47591", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a photo-op by the water before heading back to the hotel .", "storylet_id": "237959"}], [{"original_text": "The restaurant was full of people waiting to eat great tasting food. ", "album_id": "72157623169361399", "photo_flickr_id": "4308260855", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47592", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the restaurant was full of people waiting to eat great tasting food .", "storylet_id": "237960"}], [{"original_text": "The guys got together to get a quick pic together.", "album_id": "72157623169361399", "photo_flickr_id": "4308259951", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47592", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guys got together to get a quick pic together .", "storylet_id": "237961"}], [{"original_text": "The building looked classic with the light's reflection beaming from it. ", "album_id": "72157623169361399", "photo_flickr_id": "4309003206", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47592", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the building looked classic with the light 's reflection beaming from it .", "storylet_id": "237962"}], [{"original_text": "They has such a great time, and the beer was great. ", "album_id": "72157623169361399", "photo_flickr_id": "4309009162", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47592", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they has such a great time , and the beer was great .", "storylet_id": "237963"}], [{"original_text": "Seeing the colorful lights made the night worthwhile.", "album_id": "72157623169361399", "photo_flickr_id": "4308267667", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47592", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "seeing the colorful lights made the night worthwhile .", "storylet_id": "237964"}], [{"original_text": "The three of us went out the other night and had a blast. ", "album_id": "72157623169361399", "photo_flickr_id": "4308260855", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47593", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the three of us went out the other night and had a blast .", "storylet_id": "237965"}], [{"original_text": "The hand made brews were to die for. ", "album_id": "72157623169361399", "photo_flickr_id": "4309006912", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47593", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the hand made brews were to die for .", "storylet_id": "237966"}], [{"original_text": "Even this little kid thought so. ", "album_id": "72157623169361399", "photo_flickr_id": "4309008396", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47593", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even this little kid thought so .", "storylet_id": "237967"}], [{"original_text": "The food wasn't bad either but I preferred the brews. ", "album_id": "72157623169361399", "photo_flickr_id": "4309009162", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47593", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food was n't bad either but i preferred the brews .", "storylet_id": "237968"}], [{"original_text": "On the way back we got a couples photo with the dark waters behind us. ", "album_id": "72157623169361399", "photo_flickr_id": "4309004504", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47593", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the way back we got a couples photo with the dark waters behind us .", "storylet_id": "237969"}], [{"original_text": "We sent to the city for the weekend.", "album_id": "72157623169361399", "photo_flickr_id": "4308260855", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47594", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we sent to the city for the weekend .", "storylet_id": "237970"}], [{"original_text": "We ate the local food.", "album_id": "72157623169361399", "photo_flickr_id": "4308259951", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47594", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we ate the local food .", "storylet_id": "237971"}], [{"original_text": "The lights shining on the water were brilliant.", "album_id": "72157623169361399", "photo_flickr_id": "4309003206", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47594", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lights shining on the water were brilliant .", "storylet_id": "237972"}], [{"original_text": "The food and beer were delicious.", "album_id": "72157623169361399", "photo_flickr_id": "4309009162", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47594", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food and beer were delicious .", "storylet_id": "237973"}], [{"original_text": "Even in the fog the city looked majestic. ", "album_id": "72157623169361399", "photo_flickr_id": "4308267667", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47594", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even in the fog the city looked majestic .", "storylet_id": "237974"}], [{"original_text": "The local bazaar opened today complete with yummy seafood.", "album_id": "72157623402266877", "photo_flickr_id": "4395549474", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47595", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the local bazaar opened today complete with yummy seafood .", "storylet_id": "237975"}], [{"original_text": "It was fun to browse the hand woven baskets.", "album_id": "72157623402266877", "photo_flickr_id": "4395552632", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47595", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was fun to browse the hand woven baskets .", "storylet_id": "237976"}], [{"original_text": "We looked through all of the colorful musical instruments.", "album_id": "72157623402266877", "photo_flickr_id": "4394788317", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47595", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we looked through all of the colorful musical instruments .", "storylet_id": "237977"}], [{"original_text": "There is so much color here I felt I needed sunglasses!", "album_id": "72157623402266877", "photo_flickr_id": "4395556790", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47595", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there is so much color here i felt i needed sunglasses !", "storylet_id": "237978"}], [{"original_text": "Bikers came for miles to be part of this event.", "album_id": "72157623402266877", "photo_flickr_id": "4395559490", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47595", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "bikers came for miles to be part of this event .", "storylet_id": "237979"}], [{"original_text": "I went down to the market to buy some seafood.", "album_id": "72157623402266877", "photo_flickr_id": "4395549474", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47596", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went down to the market to buy some seafood .", "storylet_id": "237980"}], [{"original_text": "After that we bought some sheets.", "album_id": "72157623402266877", "photo_flickr_id": "4395551506", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47596", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after that we bought some sheets .", "storylet_id": "237981"}], [{"original_text": "I also stopped to see if their wicker baskets were any good.", "album_id": "72157623402266877", "photo_flickr_id": "4395552632", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47596", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also stopped to see if their wicker baskets were any good .", "storylet_id": "237982"}], [{"original_text": "We went to grab a ride on the bus.", "album_id": "72157623402266877", "photo_flickr_id": "4395558508", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47596", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went to grab a ride on the bus .", "storylet_id": "237983"}], [{"original_text": "When we got off there was a beautiful motorcycle parked nearby.", "album_id": "72157623402266877", "photo_flickr_id": "4395559490", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47596", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we got off there was a beautiful motorcycle parked nearby .", "storylet_id": "237984"}], [{"original_text": "I went to the market place today and had some lobster.", "album_id": "72157623402266877", "photo_flickr_id": "4395549474", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "47597", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the market place today and had some lobster .", "storylet_id": "237985"}], [{"original_text": "I bought a basket to carry some home.", "album_id": "72157623402266877", "photo_flickr_id": "4395552632", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "47597", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i bought a basket to carry some home .", "storylet_id": "237986"}], [{"original_text": "I then went around shopping and saw scarves.", "album_id": "72157623402266877", "photo_flickr_id": "4394788317", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "47597", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i then went around shopping and saw scarves .", "storylet_id": "237987"}], [{"original_text": "There were also some that looked colorful and see through.", "album_id": "72157623402266877", "photo_flickr_id": "4395556790", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "47597", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also some that looked colorful and see through .", "storylet_id": "237988"}], [{"original_text": "I went home on a motorcycle.", "album_id": "72157623402266877", "photo_flickr_id": "4395559490", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "47597", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i went home on a motorcycle .", "storylet_id": "237989"}], [{"original_text": "I went shopping at the farmers market today with my family.", "album_id": "72157623402266877", "photo_flickr_id": "4395549474", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47598", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went shopping at the farmers market today with my family .", "storylet_id": "237990"}], [{"original_text": "I found a whole bunch of baskets for crafting.", "album_id": "72157623402266877", "photo_flickr_id": "4395552632", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47598", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i found a whole bunch of baskets for crafting .", "storylet_id": "237991"}], [{"original_text": "I got my grandpa a unique walking cane.", "album_id": "72157623402266877", "photo_flickr_id": "4394788317", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47598", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got my grandpa a unique walking cane .", "storylet_id": "237992"}], [{"original_text": "My daughter really wanted a tutu from one of the shops.", "album_id": "72157623402266877", "photo_flickr_id": "4395556790", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47598", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my daughter really wanted a tutu from one of the shops .", "storylet_id": "237993"}], [{"original_text": "My husband found a blue motorcycle he's considering buying too.", "album_id": "72157623402266877", "photo_flickr_id": "4395559490", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47598", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my husband found a blue motorcycle he 's considering buying too .", "storylet_id": "237994"}], [{"original_text": "THere are many things at the market.", "album_id": "72157623402266877", "photo_flickr_id": "4395549474", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47599", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are many things at the market .", "storylet_id": "237995"}], [{"original_text": "I love the basket assortment.", "album_id": "72157623402266877", "photo_flickr_id": "4395552632", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47599", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love the basket assortment .", "storylet_id": "237996"}], [{"original_text": "There were many scarves to choose form.", "album_id": "72157623402266877", "photo_flickr_id": "4394788317", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47599", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many scarves to choose form .", "storylet_id": "237997"}], [{"original_text": "Look at all the bright dresses too!", "album_id": "72157623402266877", "photo_flickr_id": "4395556790", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47599", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look at all the bright dresses too !", "storylet_id": "237998"}], [{"original_text": "I rode home on my motorcycle.", "album_id": "72157623402266877", "photo_flickr_id": "4395559490", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47599", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i rode home on my motorcycle .", "storylet_id": "237999"}], [{"original_text": "The buildings were so old in town.", "album_id": "72157623182397155", "photo_flickr_id": "4313917504", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47600", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the buildings were so old in town .", "storylet_id": "238000"}], [{"original_text": "Even the streets looked old and different than what I am used to seeing. ", "album_id": "72157623182397155", "photo_flickr_id": "4313182211", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47600", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the streets looked old and different than what i am used to seeing .", "storylet_id": "238001"}], [{"original_text": "They had a lot of little stands with fresh fruits for sale.", "album_id": "72157623182397155", "photo_flickr_id": "4313919778", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47600", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a lot of little stands with fresh fruits for sale .", "storylet_id": "238002"}], [{"original_text": "They had a large variety of foods to choose from. ", "album_id": "72157623182397155", "photo_flickr_id": "4313184613", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47600", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had a large variety of foods to choose from .", "storylet_id": "238003"}], [{"original_text": "They all looked so good and fresh.", "album_id": "72157623182397155", "photo_flickr_id": "4313920688", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47600", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all looked so good and fresh .", "storylet_id": "238004"}], [{"original_text": "The locals traveled the streets to get to the market.", "album_id": "72157623182397155", "photo_flickr_id": "4313915930", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47601", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the locals traveled the streets to get to the market .", "storylet_id": "238005"}], [{"original_text": "It was located in an old, but trendy part of the city.", "album_id": "72157623182397155", "photo_flickr_id": "4313183665", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47601", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was located in an old , but trendy part of the city .", "storylet_id": "238006"}], [{"original_text": "There was much fresh produce to be sold.", "album_id": "72157623182397155", "photo_flickr_id": "4313919778", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47601", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was much fresh produce to be sold .", "storylet_id": "238007"}], [{"original_text": "Many browsed the baskets looking for the right goods.", "album_id": "72157623182397155", "photo_flickr_id": "4313184613", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47601", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many browsed the baskets looking for the right goods .", "storylet_id": "238008"}], [{"original_text": "The items were inexpensive to purchase.", "album_id": "72157623182397155", "photo_flickr_id": "4313920688", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47601", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the items were inexpensive to purchase .", "storylet_id": "238009"}], [{"original_text": "We decided to get out and photograph this beautiful city. ", "album_id": "72157623182397155", "photo_flickr_id": "4313917504", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47602", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to get out and photograph this beautiful city .", "storylet_id": "238010"}], [{"original_text": "The narrow alleyways are so surreal and charming.", "album_id": "72157623182397155", "photo_flickr_id": "4313182211", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47602", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the narrow alleyways are so surreal and charming .", "storylet_id": "238011"}], [{"original_text": "The markets were amazing and with fresh fruit ", "album_id": "72157623182397155", "photo_flickr_id": "4313919778", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47602", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the markets were amazing and with fresh fruit", "storylet_id": "238012"}], [{"original_text": "There were stands lining the streets. ", "album_id": "72157623182397155", "photo_flickr_id": "4313184613", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47602", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were stands lining the streets .", "storylet_id": "238013"}], [{"original_text": "And so many fresh vegetable stands. ", "album_id": "72157623182397155", "photo_flickr_id": "4313920688", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47602", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and so many fresh vegetable stands .", "storylet_id": "238014"}], [{"original_text": "I love the architecture of the old city", "album_id": "72157623182397155", "photo_flickr_id": "4313917504", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47603", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love the architecture of the old city", "storylet_id": "238015"}], [{"original_text": "The streets are narrow and everyone drive small cars", "album_id": "72157623182397155", "photo_flickr_id": "4313182211", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47603", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the streets are narrow and everyone drive small cars", "storylet_id": "238016"}], [{"original_text": "Local food is very good and very inexpensive", "album_id": "72157623182397155", "photo_flickr_id": "4313919778", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47603", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "local food is very good and very inexpensive", "storylet_id": "238017"}], [{"original_text": "All organic fruit and vegetables", "album_id": "72157623182397155", "photo_flickr_id": "4313184613", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47603", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all organic fruit and vegetables", "storylet_id": "238018"}], [{"original_text": "Fruit and vegetables were cheap and delicious", "album_id": "72157623182397155", "photo_flickr_id": "4313920688", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47603", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fruit and vegetables were cheap and delicious", "storylet_id": "238019"}], [{"original_text": "The family was taking a stroll through the old part of town.", "album_id": "72157623182397155", "photo_flickr_id": "4313917504", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47604", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was taking a stroll through the old part of town .", "storylet_id": "238020"}], [{"original_text": "The buildings were tall and close together.", "album_id": "72157623182397155", "photo_flickr_id": "4313182211", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47604", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the buildings were tall and close together .", "storylet_id": "238021"}], [{"original_text": "Their were stands all over selling fresh produce.", "album_id": "72157623182397155", "photo_flickr_id": "4313919778", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47604", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their were stands all over selling fresh produce .", "storylet_id": "238022"}], [{"original_text": "The stands stretched all the way down the street.", "album_id": "72157623182397155", "photo_flickr_id": "4313184613", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47604", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the stands stretched all the way down the street .", "storylet_id": "238023"}], [{"original_text": "We bought some peppers and pears.", "album_id": "72157623182397155", "photo_flickr_id": "4313920688", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47604", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we bought some peppers and pears .", "storylet_id": "238024"}], [{"original_text": "The village was small but quaint.", "album_id": "72157629080161275", "photo_flickr_id": "6781355063", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47605", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the village was small but quaint .", "storylet_id": "238025"}], [{"original_text": "The snowy hills brought many tourists.", "album_id": "72157629080161275", "photo_flickr_id": "6781356741", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47605", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the snowy hills brought many tourists .", "storylet_id": "238026"}], [{"original_text": "They enjoyed hiking and other activities.", "album_id": "72157629080161275", "photo_flickr_id": "6781358269", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47605", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they enjoyed hiking and other activities .", "storylet_id": "238027"}], [{"original_text": "The early evening provided a beautiful view.", "album_id": "72157629080161275", "photo_flickr_id": "6781371057", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47605", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the early evening provided a beautiful view .", "storylet_id": "238028"}], [{"original_text": "Some paths were cleared for those who didn't like the snow.", "album_id": "72157629080161275", "photo_flickr_id": "6781363957", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47605", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some paths were cleared for those who did n't like the snow .", "storylet_id": "238029"}], [{"original_text": "The view from the top of the mountain was breath-taking. ", "album_id": "72157629080161275", "photo_flickr_id": "6781355063", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47606", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the view from the top of the mountain was breath-taking .", "storylet_id": "238030"}], [{"original_text": "You could still see some rock in between the snow. ", "album_id": "72157629080161275", "photo_flickr_id": "6781356741", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47606", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you could still see some rock in between the snow .", "storylet_id": "238031"}], [{"original_text": "Mom wanted a picture of herself up top. ", "album_id": "72157629080161275", "photo_flickr_id": "6781358269", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47606", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom wanted a picture of herself up top .", "storylet_id": "238032"}], [{"original_text": "It seemed the mountains just went on forever. ", "album_id": "72157629080161275", "photo_flickr_id": "6781359767", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47606", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it seemed the mountains just went on forever .", "storylet_id": "238033"}], [{"original_text": "The water was so blue and still. ", "album_id": "72157629080161275", "photo_flickr_id": "6781360865", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47606", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the water was so blue and still .", "storylet_id": "238034"}], [{"original_text": "From the vantage point of the village, the mountains don't look cold and uninviting. ", "album_id": "72157629080161275", "photo_flickr_id": "6781355063", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47607", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "from the vantage point of the village , the mountains do n't look cold and uninviting .", "storylet_id": "238035"}], [{"original_text": "But the presence of snow becomes obviously as you hike to a higher altitude. ", "album_id": "72157629080161275", "photo_flickr_id": "6781356741", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47607", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but the presence of snow becomes obviously as you hike to a higher altitude .", "storylet_id": "238036"}], [{"original_text": "Once you're at the top, though, the view is gorgeous - it makes a perfect backdrop. ", "album_id": "72157629080161275", "photo_flickr_id": "6781358269", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47607", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once you 're at the top , though , the view is gorgeous - it makes a perfect backdrop .", "storylet_id": "238037"}], [{"original_text": "But you quickly get overwhelmed with the sense of how vast the range is. ", "album_id": "72157629080161275", "photo_flickr_id": "6781359767", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47607", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but you quickly get overwhelmed with the sense of how vast the range is .", "storylet_id": "238038"}], [{"original_text": "I felt much more comfortable closer to ground. I'm more of water person, anyway. ", "album_id": "72157629080161275", "photo_flickr_id": "6781360865", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "47607", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i felt much more comfortable closer to ground . i 'm more of water person , anyway .", "storylet_id": "238039"}], [{"original_text": "The snow had melted off of the houses. ", "album_id": "72157629080161275", "photo_flickr_id": "6781355063", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47608", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the snow had melted off of the houses .", "storylet_id": "238040"}], [{"original_text": "The mountains were very tall.", "album_id": "72157629080161275", "photo_flickr_id": "6781356741", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47608", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the mountains were very tall .", "storylet_id": "238041"}], [{"original_text": "She stopped for quick photo with the mountains in the background.", "album_id": "72157629080161275", "photo_flickr_id": "6781358269", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47608", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she stopped for quick photo with the mountains in the background .", "storylet_id": "238042"}], [{"original_text": "The snow was endless for miles to come. ", "album_id": "72157629080161275", "photo_flickr_id": "6781371057", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47608", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the snow was endless for miles to come .", "storylet_id": "238043"}], [{"original_text": "We cleared a path to be able to walk safely upon. ", "album_id": "72157629080161275", "photo_flickr_id": "6781363957", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47608", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we cleared a path to be able to walk safely upon .", "storylet_id": "238044"}], [{"original_text": "We visited Alaska this summer and loved every minute.", "album_id": "72157629080161275", "photo_flickr_id": "6781355063", "setting": "last-3-pick-old-and-tell", "worker_id": "PP64K3JY82Y0CEJ", "story_id": "47609", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited location this summer and loved every minute .", "storylet_id": "238045"}], [{"original_text": "A visit to Denali National Park was the highlight of our trip.", "album_id": "72157629080161275", "photo_flickr_id": "6781356741", "setting": "last-3-pick-old-and-tell", "worker_id": "PP64K3JY82Y0CEJ", "story_id": "47609", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a visit to location location location was the highlight of our trip .", "storylet_id": "238046"}], [{"original_text": "Here's Morgan posing in front of a huge glacier.", "album_id": "72157629080161275", "photo_flickr_id": "6781358269", "setting": "last-3-pick-old-and-tell", "worker_id": "PP64K3JY82Y0CEJ", "story_id": "47609", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's [female] posing in front of a huge glacier .", "storylet_id": "238047"}], [{"original_text": "The rivers were full of spawning salmon and other fish.", "album_id": "72157629080161275", "photo_flickr_id": "6781359767", "setting": "last-3-pick-old-and-tell", "worker_id": "PP64K3JY82Y0CEJ", "story_id": "47609", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rivers were full of spawning salmon and other fish .", "storylet_id": "238048"}], [{"original_text": "The best part of our journey was the near solitude we had in the wilderness.", "album_id": "72157629080161275", "photo_flickr_id": "6781360865", "setting": "last-3-pick-old-and-tell", "worker_id": "PP64K3JY82Y0CEJ", "story_id": "47609", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part of our journey was the near solitude we had in the wilderness .", "storylet_id": "238049"}], [{"original_text": "Shoppers arrived early for the market.", "album_id": "102972", "photo_flickr_id": "4085049", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47610", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "shoppers arrived early for the market .", "storylet_id": "238050"}], [{"original_text": "There was a variety of goods sold.", "album_id": "102972", "photo_flickr_id": "4085059", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47610", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a variety of goods sold .", "storylet_id": "238051"}], [{"original_text": "Some carried away large bundles.", "album_id": "102972", "photo_flickr_id": "4085067", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47610", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some carried away large bundles .", "storylet_id": "238052"}], [{"original_text": "Every item was fresh and colorful.", "album_id": "102972", "photo_flickr_id": "4085079", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47610", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "every item was fresh and colorful .", "storylet_id": "238053"}], [{"original_text": "The spot was a favorite among produce shoppers.", "album_id": "102972", "photo_flickr_id": "4085081", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47610", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the spot was a favorite among produce shoppers .", "storylet_id": "238054"}], [{"original_text": "It is very early in the morning. Jin is cleaning the open air market grounds. Soon the sellers will be arriving. ", "album_id": "102972", "photo_flickr_id": "4085063", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47611", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is very early in the morning . jin is cleaning the open air market grounds . soon the sellers will be arriving .", "storylet_id": "238055"}], [{"original_text": "The sellers arrive on motorcycle and bicycle carts with fresh produce and meats to sell. ", "album_id": "102972", "photo_flickr_id": "4085049", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47611", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sellers arrive on motorcycle and bicycle carts with fresh produce and meats to sell .", "storylet_id": "238056"}], [{"original_text": "Melons will be a popular item for sale today. ", "album_id": "102972", "photo_flickr_id": "4085067", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47611", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "melons will be a popular item for sale today .", "storylet_id": "238057"}], [{"original_text": "The sellers take time to array the items for sale in a decorative manner.", "album_id": "102972", "photo_flickr_id": "4085055", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47611", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sellers take time to array the items for sale in a decorative manner .", "storylet_id": "238058"}], [{"original_text": "Soon the customers will arrive and the market will be busy. ", "album_id": "102972", "photo_flickr_id": "4085087", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47611", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "soon the customers will arrive and the market will be busy .", "storylet_id": "238059"}], [{"original_text": "The men were clearing the back of the store. ", "album_id": "102972", "photo_flickr_id": "4085063", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47612", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the men were clearing the back of the store .", "storylet_id": "238060"}], [{"original_text": "The sellers were transporting their goods from one area to the other. ", "album_id": "102972", "photo_flickr_id": "4085049", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47612", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sellers were transporting their goods from one area to the other .", "storylet_id": "238061"}], [{"original_text": "The watermelons were juicy. ", "album_id": "102972", "photo_flickr_id": "4085067", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47612", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the watermelons were juicy .", "storylet_id": "238062"}], [{"original_text": "The chicken was plentiful and juicy.", "album_id": "102972", "photo_flickr_id": "4085055", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47612", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the chicken was plentiful and juicy .", "storylet_id": "238063"}], [{"original_text": "The vegetables and herbs were fresh. ", "album_id": "102972", "photo_flickr_id": "4085087", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47612", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the vegetables and herbs were fresh .", "storylet_id": "238064"}], [{"original_text": "The market is getting ready to open.", "album_id": "102972", "photo_flickr_id": "4085063", "setting": "last-3-pick-old-and-tell", "worker_id": "M5G7KBD8NH4CMER", "story_id": "47613", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the market is getting ready to open .", "storylet_id": "238065"}], [{"original_text": "People are starting to arrive to sell their wares.", "album_id": "102972", "photo_flickr_id": "4085049", "setting": "last-3-pick-old-and-tell", "worker_id": "M5G7KBD8NH4CMER", "story_id": "47613", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people are starting to arrive to sell their wares .", "storylet_id": "238066"}], [{"original_text": "This man is excited to sell his beautiful melons.", "album_id": "102972", "photo_flickr_id": "4085067", "setting": "last-3-pick-old-and-tell", "worker_id": "M5G7KBD8NH4CMER", "story_id": "47613", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this man is excited to sell his beautiful melons .", "storylet_id": "238067"}], [{"original_text": "He sells right next to a guy who sells chickens.", "album_id": "102972", "photo_flickr_id": "4085055", "setting": "last-3-pick-old-and-tell", "worker_id": "M5G7KBD8NH4CMER", "story_id": "47613", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he sells right next to a guy who sells chickens .", "storylet_id": "238068"}], [{"original_text": "There are delicious smells all through the market thanks to this man's cooked food.", "album_id": "102972", "photo_flickr_id": "4085087", "setting": "last-3-pick-old-and-tell", "worker_id": "M5G7KBD8NH4CMER", "story_id": "47613", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are delicious smells all through the market thanks to this man 's cooked food .", "storylet_id": "238069"}], [{"original_text": "The market was flourishing on a Sunday afternoon. ", "album_id": "102972", "photo_flickr_id": "4085049", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47614", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the market was flourishing on a sunday afternoon .", "storylet_id": "238070"}], [{"original_text": "Fresh produce was piled on itself. ", "album_id": "102972", "photo_flickr_id": "4085059", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47614", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fresh produce was piled on itself .", "storylet_id": "238071"}], [{"original_text": "The watermelon vendor arrived a little late.", "album_id": "102972", "photo_flickr_id": "4085067", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47614", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the watermelon vendor arrived a little late .", "storylet_id": "238072"}], [{"original_text": "Some of the fruits were oddly shaped.", "album_id": "102972", "photo_flickr_id": "4085079", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47614", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the fruits were oddly shaped .", "storylet_id": "238073"}], [{"original_text": "I called a taxi and left after shopping for a while. ", "album_id": "102972", "photo_flickr_id": "4085081", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47614", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i called a taxi and left after shopping for a while .", "storylet_id": "238074"}], [{"original_text": "Went on vacation and found a great flea market.", "album_id": "72157623132152719", "photo_flickr_id": "4328630747", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47615", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went on vacation and found a great flea market .", "storylet_id": "238075"}], [{"original_text": "While on vacation we found much shopping in the way of flea markets.", "album_id": "72157623132152719", "photo_flickr_id": "4328653829", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47615", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while on vacation we found much shopping in the way of flea markets .", "storylet_id": "238076"}], [{"original_text": "We had lunch at this pub to rest our feet after shopping.", "album_id": "72157623132152719", "photo_flickr_id": "4328608203", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47615", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had lunch at this pub to rest our feet after shopping .", "storylet_id": "238077"}], [{"original_text": "What a lovely B&B we are staying in,", "album_id": "72157623132152719", "photo_flickr_id": "4328532945", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47615", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what a lovely b & b we are staying in ,", "storylet_id": "238078"}], [{"original_text": "We found another pub close by an had this lovely dinner.", "album_id": "72157623132152719", "photo_flickr_id": "4329064552", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47615", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we found another pub close by an had this lovely dinner .", "storylet_id": "238079"}], [{"original_text": "The shop had interesting collectibles.", "album_id": "72157623132152719", "photo_flickr_id": "4318824247", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47616", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the shop had interesting collectibles .", "storylet_id": "238080"}], [{"original_text": "It was located in an old historic building.", "album_id": "72157623132152719", "photo_flickr_id": "4328608203", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47616", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was located in an old historic building .", "storylet_id": "238081"}], [{"original_text": "There was colorful seating in the back.", "album_id": "72157623132152719", "photo_flickr_id": "4328489427", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47616", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was colorful seating in the back .", "storylet_id": "238082"}], [{"original_text": "A plaque denoting the street location was present on the building.", "album_id": "72157623132152719", "photo_flickr_id": "4319533966", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47616", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a plaque denoting the street location was present on the building .", "storylet_id": "238083"}], [{"original_text": "Posters were popular among patronizers.", "album_id": "72157623132152719", "photo_flickr_id": "4328630747", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47616", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "posters were popular among patronizers .", "storylet_id": "238084"}], [{"original_text": "We went to a fabulous flea market with all kinds of treasures.", "album_id": "72157623132152719", "photo_flickr_id": "4328630747", "setting": "last-3-pick-old-and-tell", "worker_id": "G8AW2J116WYDX4L", "story_id": "47617", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a fabulous flea market with all kinds of treasures .", "storylet_id": "238085"}], [{"original_text": "The flea market was filled with interesting items galore.", "album_id": "72157623132152719", "photo_flickr_id": "4328653829", "setting": "last-3-pick-old-and-tell", "worker_id": "G8AW2J116WYDX4L", "story_id": "47617", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flea market was filled with interesting items galore .", "storylet_id": "238086"}], [{"original_text": "Nearby, the Bull Inn was a quaint and beautiful place.", "album_id": "72157623132152719", "photo_flickr_id": "4328608203", "setting": "last-3-pick-old-and-tell", "worker_id": "G8AW2J116WYDX4L", "story_id": "47617", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nearby , the organization organization was a quaint and beautiful place .", "storylet_id": "238087"}], [{"original_text": "This old building was also beautiful and looked like it had many secrets.", "album_id": "72157623132152719", "photo_flickr_id": "4328532945", "setting": "last-3-pick-old-and-tell", "worker_id": "G8AW2J116WYDX4L", "story_id": "47617", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this old building was also beautiful and looked like it had many secrets .", "storylet_id": "238088"}], [{"original_text": "We also ate a wonderful breakfast of sausage, eggs and other wonderful foods.", "album_id": "72157623132152719", "photo_flickr_id": "4329064552", "setting": "last-3-pick-old-and-tell", "worker_id": "G8AW2J116WYDX4L", "story_id": "47617", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also ate a wonderful breakfast of sausage , eggs and other wonderful foods .", "storylet_id": "238089"}], [{"original_text": "When traveling around the flea market can be a great tourist attraction.", "album_id": "72157623132152719", "photo_flickr_id": "4328630747", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "47618", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when traveling around the flea market can be a great tourist attraction .", "storylet_id": "238090"}], [{"original_text": "You find all kinds of old items you have never even seen before.", "album_id": "72157623132152719", "photo_flickr_id": "4328653829", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "47618", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you find all kinds of old items you have never even seen before .", "storylet_id": "238091"}], [{"original_text": "Flea markets can often be surrounded by other buildings that draw attention.", "album_id": "72157623132152719", "photo_flickr_id": "4328608203", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "47618", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "flea markets can often be surrounded by other buildings that draw attention .", "storylet_id": "238092"}], [{"original_text": "Even old buildings with tall tales can draw attention when traveling.", "album_id": "72157623132152719", "photo_flickr_id": "4328532945", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "47618", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even old buildings with tall tales can draw attention when traveling .", "storylet_id": "238093"}], [{"original_text": "And what better way then to start a day then to sit back at fine restaurants and eat a hearty breakfast.", "album_id": "72157623132152719", "photo_flickr_id": "4329064552", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "47618", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and what better way then to start a day then to sit back at fine restaurants and eat a hearty breakfast .", "storylet_id": "238094"}], [{"original_text": "While we were in Europe we visited several flea markets.", "album_id": "72157623132152719", "photo_flickr_id": "4328630747", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47619", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while we were in location we visited several flea markets .", "storylet_id": "238095"}], [{"original_text": "They had unique stuff for sale.", "album_id": "72157623132152719", "photo_flickr_id": "4328653829", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47619", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had unique stuff for sale .", "storylet_id": "238096"}], [{"original_text": "We stayed at the Bull Inn.", "album_id": "72157623132152719", "photo_flickr_id": "4328608203", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47619", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stayed at the organization organization .", "storylet_id": "238097"}], [{"original_text": "The building looked ancient.", "album_id": "72157623132152719", "photo_flickr_id": "4328532945", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47619", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the building looked ancient .", "storylet_id": "238098"}], [{"original_text": "We had a full English breakfast.", "album_id": "72157623132152719", "photo_flickr_id": "4329064552", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47619", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a full english breakfast .", "storylet_id": "238099"}], [{"original_text": "This was my favorite bottle of wine we encountered", "album_id": "72157623199274325", "photo_flickr_id": "4320216433", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "47620", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was my favorite bottle of wine we encountered", "storylet_id": "238100"}], [{"original_text": "This is the room where we had our wine tasting experience", "album_id": "72157623199274325", "photo_flickr_id": "4320216657", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "47620", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the room where we had our wine tasting experience", "storylet_id": "238101"}], [{"original_text": "There was A shelf filled with some of the best wines they had to offer", "album_id": "72157623199274325", "photo_flickr_id": "4320950856", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "47620", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a shelf filled with some of the best wines they had to offer", "storylet_id": "238102"}], [{"original_text": "Everybody was enjoying their drinks", "album_id": "72157623199274325", "photo_flickr_id": "4320219699", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "47620", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everybody was enjoying their drinks", "storylet_id": "238103"}], [{"original_text": "There was A beautiful view from outside the window", "album_id": "72157623199274325", "photo_flickr_id": "4320225721", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "47620", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a beautiful view from outside the window", "storylet_id": "238104"}], [{"original_text": "My friends and I went on a trip by train.", "album_id": "72157623199274325", "photo_flickr_id": "4320950396", "setting": "first-2-pick-and-tell", "worker_id": "6HGKYWTJAEHHDNC", "story_id": "47621", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i went on a trip by train .", "storylet_id": "238105"}], [{"original_text": "While on the train, we decided to go to the dinning car.", "album_id": "72157623199274325", "photo_flickr_id": "4320216657", "setting": "first-2-pick-and-tell", "worker_id": "6HGKYWTJAEHHDNC", "story_id": "47621", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while on the train , we decided to go to the dinning car .", "storylet_id": "238106"}], [{"original_text": "In the dinning car, they had a wonderful selection of local wines.", "album_id": "72157623199274325", "photo_flickr_id": "4320950856", "setting": "first-2-pick-and-tell", "worker_id": "6HGKYWTJAEHHDNC", "story_id": "47621", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in the dinning car , they had a wonderful selection of local wines .", "storylet_id": "238107"}], [{"original_text": "We each grabbed our glasses and the wine we wanted", "album_id": "72157623199274325", "photo_flickr_id": "4320950074", "setting": "first-2-pick-and-tell", "worker_id": "6HGKYWTJAEHHDNC", "story_id": "47621", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we each grabbed our glasses and the wine we wanted", "storylet_id": "238108"}], [{"original_text": "and sit down to all have wine together. That train ride was so much fun!", "album_id": "72157623199274325", "photo_flickr_id": "4320952202", "setting": "first-2-pick-and-tell", "worker_id": "6HGKYWTJAEHHDNC", "story_id": "47621", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and sit down to all have wine together . that train ride was so much fun !", "storylet_id": "238109"}], [{"original_text": "Our train ride last weekend was amazing!", "album_id": "72157623199274325", "photo_flickr_id": "4320950396", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47622", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our train ride last weekend was amazing !", "storylet_id": "238110"}], [{"original_text": "The dining cart was very elegant for a train. ", "album_id": "72157623199274325", "photo_flickr_id": "4320216657", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47622", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dining cart was very elegant for a train .", "storylet_id": "238111"}], [{"original_text": "And the wine choices were incredible. ", "album_id": "72157623199274325", "photo_flickr_id": "4320950856", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47622", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the wine choices were incredible .", "storylet_id": "238112"}], [{"original_text": "I felt like royalty as we dines with the landscape rushing by out the window. ", "album_id": "72157623199274325", "photo_flickr_id": "4320950074", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47622", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i felt like royalty as we dines with the landscape rushing by out the window .", "storylet_id": "238113"}], [{"original_text": "Before it was over I had a lady snap a picture of us but our attentions were drawn at the last minute and she took side views. ", "album_id": "72157623199274325", "photo_flickr_id": "4320952202", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47622", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before it was over i had a lady snap a picture of us but our attentions were drawn at the last minute and she took side views .", "storylet_id": "238114"}], [{"original_text": "We had a lovely dinner at a nearby winery this weekend.", "album_id": "72157623199274325", "photo_flickr_id": "4320950396", "setting": "last-3-pick-old-and-tell", "worker_id": "PP64K3JY82Y0CEJ", "story_id": "47623", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a lovely dinner at a nearby winery this weekend .", "storylet_id": "238115"}], [{"original_text": "Their dining room is in an antique railway car from the 40's.", "album_id": "72157623199274325", "photo_flickr_id": "4320216657", "setting": "last-3-pick-old-and-tell", "worker_id": "PP64K3JY82Y0CEJ", "story_id": "47623", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their dining room is in an antique railway car from the 40 's .", "storylet_id": "238116"}], [{"original_text": "The wine collection was sublime.", "album_id": "72157623199274325", "photo_flickr_id": "4320950856", "setting": "last-3-pick-old-and-tell", "worker_id": "PP64K3JY82Y0CEJ", "story_id": "47623", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the wine collection was sublime .", "storylet_id": "238117"}], [{"original_text": "The view of the vineyard added to the enjoyment if the meal.", "album_id": "72157623199274325", "photo_flickr_id": "4320950074", "setting": "last-3-pick-old-and-tell", "worker_id": "PP64K3JY82Y0CEJ", "story_id": "47623", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view of the vineyard added to the enjoyment if the meal .", "storylet_id": "238118"}], [{"original_text": "We met other couples and had a good time chatting with them through the meal.", "album_id": "72157623199274325", "photo_flickr_id": "4320952202", "setting": "last-3-pick-old-and-tell", "worker_id": "PP64K3JY82Y0CEJ", "story_id": "47623", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we met other couples and had a good time chatting with them through the meal .", "storylet_id": "238119"}], [{"original_text": "Travel by train to the vineyard. ", "album_id": "72157623199274325", "photo_flickr_id": "4320216433", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47624", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "travel by train to the vineyard .", "storylet_id": "238120"}], [{"original_text": "You will enjoy luxury dining in the all new dinning car. ", "album_id": "72157623199274325", "photo_flickr_id": "4320216657", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47624", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you will enjoy luxury dining in the all new dinning car .", "storylet_id": "238121"}], [{"original_text": "There is also wine tasting on board. ", "album_id": "72157623199274325", "photo_flickr_id": "4320950856", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47624", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is also wine tasting on board .", "storylet_id": "238122"}], [{"original_text": "Enjoy your favorite glass of chardonnay. ", "album_id": "72157623199274325", "photo_flickr_id": "4320219699", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47624", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "enjoy your favorite glass of chardonnay .", "storylet_id": "238123"}], [{"original_text": "A glimpse of beauty through through one the large windows. ", "album_id": "72157623199274325", "photo_flickr_id": "4320225721", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47624", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a glimpse of beauty through through one the large windows .", "storylet_id": "238124"}], [{"original_text": "The city's buildings were unique.", "album_id": "72157623312651344", "photo_flickr_id": "4315352329", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47625", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city 's buildings were unique .", "storylet_id": "238125"}], [{"original_text": "There were remnants of older structures on the corners.", "album_id": "72157623312651344", "photo_flickr_id": "4319676804", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47625", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were remnants of older structures on the corners .", "storylet_id": "238126"}], [{"original_text": "Small markets sold fresh goods.", "album_id": "72157623312651344", "photo_flickr_id": "4320118362", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47625", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "small markets sold fresh goods .", "storylet_id": "238127"}], [{"original_text": "The produce was especially popular.", "album_id": "72157623312651344", "photo_flickr_id": "4319368039", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47625", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the produce was especially popular .", "storylet_id": "238128"}], [{"original_text": "Night time was filled with entertainment.", "album_id": "72157623312651344", "photo_flickr_id": "4930075610", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47625", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "night time was filled with entertainment .", "storylet_id": "238129"}], [{"original_text": "We took a trip to a town for vacation.", "album_id": "72157623312651344", "photo_flickr_id": "4929484037", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47626", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to a town for vacation .", "storylet_id": "238130"}], [{"original_text": "We first stopped by a farmers market where they had all these fruits and vegetables for sale.", "album_id": "72157623312651344", "photo_flickr_id": "4319368039", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47626", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we first stopped by a farmers market where they had all these fruits and vegetables for sale .", "storylet_id": "238131"}], [{"original_text": "At night, this city becomes lit up by so many lights.", "album_id": "72157623312651344", "photo_flickr_id": "4930069930", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47626", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at night , this city becomes lit up by so many lights .", "storylet_id": "238132"}], [{"original_text": "It feels great to walk around in a busy city at night.", "album_id": "72157623312651344", "photo_flickr_id": "4930075610", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47626", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it feels great to walk around in a busy city at night .", "storylet_id": "238133"}], [{"original_text": "We stayed for a couple of days and then we went to the train station to catch a train home.", "album_id": "72157623312651344", "photo_flickr_id": "4315352997", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47626", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we stayed for a couple of days and then we went to the train station to catch a train home .", "storylet_id": "238134"}], [{"original_text": "During my trip I actually saw a huge outdoor hot bath!", "album_id": "72157623312651344", "photo_flickr_id": "4929484037", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47627", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during my trip i actually saw a huge outdoor hot bath !", "storylet_id": "238135"}], [{"original_text": "We then went to the market and got some fresh produce. ", "album_id": "72157623312651344", "photo_flickr_id": "4319368039", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47627", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we then went to the market and got some fresh produce .", "storylet_id": "238136"}], [{"original_text": "We walked around until dark. ", "album_id": "72157623312651344", "photo_flickr_id": "4930069930", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47627", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we walked around until dark .", "storylet_id": "238137"}], [{"original_text": "The streets seemed empty after dark so we went back to our room. ", "album_id": "72157623312651344", "photo_flickr_id": "4930075610", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47627", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the streets seemed empty after dark so we went back to our room .", "storylet_id": "238138"}], [{"original_text": "The next day, it was time to get back on the train and go home. ", "album_id": "72157623312651344", "photo_flickr_id": "4315352997", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47627", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the next day , it was time to get back on the train and go home .", "storylet_id": "238139"}], [{"original_text": "Not much has changed in this charming city. The buildings are old. ", "album_id": "72157623312651344", "photo_flickr_id": "4315352329", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47628", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "not much has changed in this charming city . the buildings are old .", "storylet_id": "238140"}], [{"original_text": "There are old-fashioned phone booths still hanging around. ", "album_id": "72157623312651344", "photo_flickr_id": "4319676804", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47628", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are old-fashioned phone booths still hanging around .", "storylet_id": "238141"}], [{"original_text": "The markets are set up in an old fashioned way. ", "album_id": "72157623312651344", "photo_flickr_id": "4320118362", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47628", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the markets are set up in an old fashioned way .", "storylet_id": "238142"}], [{"original_text": "They sell fresh fruits and vegetables. ", "album_id": "72157623312651344", "photo_flickr_id": "4319368039", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47628", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they sell fresh fruits and vegetables .", "storylet_id": "238143"}], [{"original_text": "Yet, there are still modern-looking areas of the city. ", "album_id": "72157623312651344", "photo_flickr_id": "4930075610", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47628", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "yet , there are still modern-looking areas of the city .", "storylet_id": "238144"}], [{"original_text": "There were a lot of old buildings.", "album_id": "72157623312651344", "photo_flickr_id": "4315352329", "setting": "last-3-pick-old-and-tell", "worker_id": "EL9ZGTQKAXCGTI5", "story_id": "47629", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of old buildings .", "storylet_id": "238145"}], [{"original_text": "There were old phone booths as well.", "album_id": "72157623312651344", "photo_flickr_id": "4319676804", "setting": "last-3-pick-old-and-tell", "worker_id": "EL9ZGTQKAXCGTI5", "story_id": "47629", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were old phone booths as well .", "storylet_id": "238146"}], [{"original_text": "The market had vegetables everywhere.", "album_id": "72157623312651344", "photo_flickr_id": "4320118362", "setting": "last-3-pick-old-and-tell", "worker_id": "EL9ZGTQKAXCGTI5", "story_id": "47629", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the market had vegetables everywhere .", "storylet_id": "238147"}], [{"original_text": "You could pick whatever fruit you wanted.", "album_id": "72157623312651344", "photo_flickr_id": "4319368039", "setting": "last-3-pick-old-and-tell", "worker_id": "EL9ZGTQKAXCGTI5", "story_id": "47629", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you could pick whatever fruit you wanted .", "storylet_id": "238148"}], [{"original_text": "Then when it got dark the streets became mostly empty. ", "album_id": "72157623312651344", "photo_flickr_id": "4930075610", "setting": "last-3-pick-old-and-tell", "worker_id": "EL9ZGTQKAXCGTI5", "story_id": "47629", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then when it got dark the streets became mostly empty .", "storylet_id": "238149"}], [{"original_text": "It can be hard to see, but it is important to remember and learn about Apartheid History.", "album_id": "72157623322062438", "photo_flickr_id": "4320181660", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47630", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it can be hard to see , but it is important to remember and learn about apartheid history .", "storylet_id": "238150"}], [{"original_text": "Learning to juggle and sharing stories for all generations.", "album_id": "72157623322062438", "photo_flickr_id": "4319450901", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47630", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "learning to juggle and sharing stories for all generations .", "storylet_id": "238151"}], [{"original_text": "The Market has amazing arts and crafts that also highlight the culture.", "album_id": "72157623322062438", "photo_flickr_id": "4320198704", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47630", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the market has amazing arts and crafts that also highlight the culture .", "storylet_id": "238152"}], [{"original_text": "It is so pretty with calm quiet places like this tree-lined road.", "album_id": "72157623322062438", "photo_flickr_id": "4319455817", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47630", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is so pretty with calm quiet places like this tree-lined road .", "storylet_id": "238153"}], [{"original_text": "There are reminders of the pain, though, with fences like this left in place.", "album_id": "72157623322062438", "photo_flickr_id": "4320201300", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47630", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are reminders of the pain , though , with fences like this left in place .", "storylet_id": "238154"}], [{"original_text": "You come down the road through this neighborhood.", "album_id": "72157623322062438", "photo_flickr_id": "4319455817", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47631", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "you come down the road through this neighborhood .", "storylet_id": "238155"}], [{"original_text": "In this house, a mother is juggling inside the kitchen.", "album_id": "72157623322062438", "photo_flickr_id": "4320182786", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47631", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in this house , a mother is juggling inside the kitchen .", "storylet_id": "238156"}], [{"original_text": "Two old women, on the outside deck, also try to juggle.", "album_id": "72157623322062438", "photo_flickr_id": "4319450901", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47631", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two old women , on the outside deck , also try to juggle .", "storylet_id": "238157"}], [{"original_text": "A look of one old woman juggling a green and blue ball.", "album_id": "72157623322062438", "photo_flickr_id": "4319452497", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47631", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a look of one old woman juggling a green and blue ball .", "storylet_id": "238158"}], [{"original_text": "A look of the second old woman juggling a green ball.", "album_id": "72157623322062438", "photo_flickr_id": "4319453925", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47631", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a look of the second old woman juggling a green ball .", "storylet_id": "238159"}], [{"original_text": "Our day started by visiting a new museum.", "album_id": "72157623322062438", "photo_flickr_id": "4320181660", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47632", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our day started by visiting a new museum .", "storylet_id": "238160"}], [{"original_text": "Clara played with a bouncy ball to work her dexterity skills.", "album_id": "72157623322062438", "photo_flickr_id": "4319450901", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47632", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] played with a bouncy ball to work her dexterity skills .", "storylet_id": "238161"}], [{"original_text": "South Africa hosts many good markets.", "album_id": "72157623322062438", "photo_flickr_id": "4320198704", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47632", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "location location hosts many good markets .", "storylet_id": "238162"}], [{"original_text": "The street is devoid of cars and all is quiet.", "album_id": "72157623322062438", "photo_flickr_id": "4319455817", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47632", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the street is devoid of cars and all is quiet .", "storylet_id": "238163"}], [{"original_text": "The embassy features steel spikes so no one breaks in. ", "album_id": "72157623322062438", "photo_flickr_id": "4320201300", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47632", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the embassy features steel spikes so no one breaks in .", "storylet_id": "238164"}], [{"original_text": "My grandmother lives on a pretty, quiet street.", "album_id": "72157623322062438", "photo_flickr_id": "4319455817", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47633", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my grandmother lives on a pretty , quiet street .", "storylet_id": "238165"}], [{"original_text": "There's always a lot going on at her house. One day we all tried to juggle!", "album_id": "72157623322062438", "photo_flickr_id": "4320182786", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47633", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there 's always a lot going on at her house . one day we all tried to juggle !", "storylet_id": "238166"}], [{"original_text": "My grandmother wasn't bad. My mother wasn't as good.", "album_id": "72157623322062438", "photo_flickr_id": "4319450901", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47633", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my grandmother was n't bad . my mother was n't as good .", "storylet_id": "238167"}], [{"original_text": "My grandmother was putting on quite a show by the end of the day.", "album_id": "72157623322062438", "photo_flickr_id": "4319452497", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47633", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my grandmother was putting on quite a show by the end of the day .", "storylet_id": "238168"}], [{"original_text": "My mother barely could throw the ball in the air.", "album_id": "72157623322062438", "photo_flickr_id": "4319453925", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47633", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my mother barely could throw the ball in the air .", "storylet_id": "238169"}], [{"original_text": "We visited the Apartheid Museum over the weekend", "album_id": "72157623322062438", "photo_flickr_id": "4320181660", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47634", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited the apartheid museum over the weekend", "storylet_id": "238170"}], [{"original_text": "Locals here are really good juggling balls in the air", "album_id": "72157623322062438", "photo_flickr_id": "4319450901", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47634", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "locals here are really good juggling balls in the air", "storylet_id": "238171"}], [{"original_text": "This is the local crafts market where you can find work by local artists", "album_id": "72157623322062438", "photo_flickr_id": "4320198704", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47634", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the local crafts market where you can find work by local artists", "storylet_id": "238172"}], [{"original_text": "Streets were quite empty today", "album_id": "72157623322062438", "photo_flickr_id": "4319455817", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47634", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "streets were quite empty today", "storylet_id": "238173"}], [{"original_text": "Nicely crafted fence, looks more like a work of art.", "album_id": "72157623322062438", "photo_flickr_id": "4320201300", "setting": "last-3-pick-old-and-tell", "worker_id": "61CEF6NVWIGYT3V", "story_id": "47634", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "nicely crafted fence , looks more like a work of art .", "storylet_id": "238174"}], [{"original_text": "The diner was a popular spot for locals and tourists.", "album_id": "72157632386835732", "photo_flickr_id": "4321318264", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47635", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the diner was a popular spot for locals and tourists .", "storylet_id": "238175"}], [{"original_text": "A cup of coffee was a favorite item among customers.", "album_id": "72157632386835732", "photo_flickr_id": "4320586329", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47635", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a cup of coffee was a favorite item among customers .", "storylet_id": "238176"}], [{"original_text": "The wait staff was friendly.", "album_id": "72157632386835732", "photo_flickr_id": "4320586553", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47635", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the wait staff was friendly .", "storylet_id": "238177"}], [{"original_text": "The seating was cozy but roomy.", "album_id": "72157632386835732", "photo_flickr_id": "4320586707", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47635", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the seating was cozy but roomy .", "storylet_id": "238178"}], [{"original_text": "The exterior was as unique as the menu.", "album_id": "72157632386835732", "photo_flickr_id": "4321319472", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47635", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the exterior was as unique as the menu .", "storylet_id": "238179"}], [{"original_text": "Here you see the small restaurant off the side of the road.", "album_id": "72157632386835732", "photo_flickr_id": "4320587965", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47636", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here you see the small restaurant off the side of the road .", "storylet_id": "238180"}], [{"original_text": "Inside you can see that a seat is open to be seated. ", "album_id": "72157632386835732", "photo_flickr_id": "4320586707", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47636", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside you can see that a seat is open to be seated .", "storylet_id": "238181"}], [{"original_text": "Or you can seat here and order items more quickly.", "album_id": "72157632386835732", "photo_flickr_id": "4320586553", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47636", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "or you can seat here and order items more quickly .", "storylet_id": "238182"}], [{"original_text": "First you get is a drink, like tea or coffee.", "album_id": "72157632386835732", "photo_flickr_id": "4320586329", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47636", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "first you get is a drink , like tea or coffee .", "storylet_id": "238183"}], [{"original_text": "Afterwards you can order meals, like these if you brought two extra friends with you.", "album_id": "72157632386835732", "photo_flickr_id": "4321319000", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47636", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards you can order meals , like these if you brought two extra friends with you .", "storylet_id": "238184"}], [{"original_text": "We ate at the best breakfast cafe the other day. ", "album_id": "72157632386835732", "photo_flickr_id": "4321318264", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47637", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we ate at the best breakfast cafe the other day .", "storylet_id": "238185"}], [{"original_text": "The coffee was delicious!", "album_id": "72157632386835732", "photo_flickr_id": "4320586329", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47637", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the coffee was delicious !", "storylet_id": "238186"}], [{"original_text": "The lady who made the coffee was really nice and didn't mind us taking photos. ", "album_id": "72157632386835732", "photo_flickr_id": "4320586553", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47637", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lady who made the coffee was really nice and did n't mind us taking photos .", "storylet_id": "238187"}], [{"original_text": "I can't believe it wasn't busier. ", "album_id": "72157632386835732", "photo_flickr_id": "4320586707", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47637", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i ca n't believe it was n't busier .", "storylet_id": "238188"}], [{"original_text": "On the way out I took one last snap shot of the outside and went home full. ", "album_id": "72157632386835732", "photo_flickr_id": "4321319472", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47637", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the way out i took one last snap shot of the outside and went home full .", "storylet_id": "238189"}], [{"original_text": "We saw an old-fashioned diner and decided to stop.", "album_id": "72157632386835732", "photo_flickr_id": "4320587965", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47638", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we saw an old-fashioned diner and decided to stop .", "storylet_id": "238190"}], [{"original_text": "The inside was even more old fashioned than the outside. ", "album_id": "72157632386835732", "photo_flickr_id": "4320586707", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47638", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the inside was even more old fashioned than the outside .", "storylet_id": "238191"}], [{"original_text": "We sort of felt like we stepped back into the 1950s.", "album_id": "72157632386835732", "photo_flickr_id": "4320586553", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47638", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we sort of felt like we stepped back into the 1950s .", "storylet_id": "238192"}], [{"original_text": "The coffee was good.", "album_id": "72157632386835732", "photo_flickr_id": "4320586329", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47638", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the coffee was good .", "storylet_id": "238193"}], [{"original_text": "The breakfast was amazing. ", "album_id": "72157632386835732", "photo_flickr_id": "4321319000", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "47638", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the breakfast was amazing .", "storylet_id": "238194"}], [{"original_text": "The new Breakfast Club is now open for business. ", "album_id": "72157632386835732", "photo_flickr_id": "4320587965", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47639", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the new organization organization is now open for business .", "storylet_id": "238195"}], [{"original_text": "Inside you will find bright, cheerful booths. ", "album_id": "72157632386835732", "photo_flickr_id": "4320586707", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47639", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside you will find bright , cheerful booths .", "storylet_id": "238196"}], [{"original_text": "Along with a friendly staff, you will receive first class service. ", "album_id": "72157632386835732", "photo_flickr_id": "4320586553", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47639", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "along with a friendly staff , you will receive first class service .", "storylet_id": "238197"}], [{"original_text": "It's been said the coffee is the very best. ", "album_id": "72157632386835732", "photo_flickr_id": "4320586329", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47639", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's been said the coffee is the very best .", "storylet_id": "238198"}], [{"original_text": "Stop by today and enjoy a hearty breakfast.", "album_id": "72157632386835732", "photo_flickr_id": "4321319000", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47639", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "stop by today and enjoy a hearty breakfast .", "storylet_id": "238199"}], [{"original_text": "The make-up team arrived to get ready for the fashion show.", "album_id": "72157629123437977", "photo_flickr_id": "6796325717", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "47640", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the make-up team arrived to get ready for the fashion show .", "storylet_id": "238200"}], [{"original_text": "They got to meet some fun people.", "album_id": "72157629123437977", "photo_flickr_id": "6796330057", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "47640", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got to meet some fun people .", "storylet_id": "238201"}], [{"original_text": "The models looked great!", "album_id": "72157629123437977", "photo_flickr_id": "6796333301", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "47640", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the models looked great !", "storylet_id": "238202"}], [{"original_text": "The talented make-up artists did a great job.", "album_id": "72157629123437977", "photo_flickr_id": "6796336623", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "47640", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the talented make-up artists did a great job .", "storylet_id": "238203"}], [{"original_text": "The fashion show was a big success.", "album_id": "72157629123437977", "photo_flickr_id": "6796340595", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "47640", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fashion show was a big success .", "storylet_id": "238204"}], [{"original_text": "Some of the Aveda workers smile for the camera.", "album_id": "72157629123437977", "photo_flickr_id": "6796325717", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47641", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some of the organization workers smile for the camera .", "storylet_id": "238205"}], [{"original_text": "A Aveda worker sitting in front of the camera.", "album_id": "72157629123437977", "photo_flickr_id": "6796334005", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47641", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a organization worker sitting in front of the camera .", "storylet_id": "238206"}], [{"original_text": "A different Aveda worker pose for the camera with a visitor.", "album_id": "72157629123437977", "photo_flickr_id": "6796330057", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47641", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a different organization worker pose for the camera with a visitor .", "storylet_id": "238207"}], [{"original_text": "The same worker but by herself posing for the camera.", "album_id": "72157629123437977", "photo_flickr_id": "6796336623", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47641", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the same worker but by herself posing for the camera .", "storylet_id": "238208"}], [{"original_text": "Four Aveda workers posing for a picture from a different camera.", "album_id": "72157629123437977", "photo_flickr_id": "6796339769", "setting": "first-2-pick-and-tell", "worker_id": "9W22RURR4ON04WC", "story_id": "47641", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "four organization workers posing for a picture from a different camera .", "storylet_id": "238209"}], [{"original_text": "Workers with Aveda salons went to the beauty pageants.", "album_id": "72157629123437977", "photo_flickr_id": "6796325717", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47642", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "workers with organization salons went to the beauty pageants .", "storylet_id": "238210"}], [{"original_text": "They did the contestants hair and makeup.", "album_id": "72157629123437977", "photo_flickr_id": "6796330057", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47642", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they did the contestants hair and makeup .", "storylet_id": "238211"}], [{"original_text": "The contestants looked great in their dresses.", "album_id": "72157629123437977", "photo_flickr_id": "6796333301", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47642", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the contestants looked great in their dresses .", "storylet_id": "238212"}], [{"original_text": "It was a great experience.", "album_id": "72157629123437977", "photo_flickr_id": "6796336623", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47642", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a great experience .", "storylet_id": "238213"}], [{"original_text": "The beauticians were proud of the contestants.", "album_id": "72157629123437977", "photo_flickr_id": "6796340595", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47642", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the beauticians were proud of the contestants .", "storylet_id": "238214"}], [{"original_text": "The committee meeting had a great turnout.", "album_id": "72157629123437977", "photo_flickr_id": "6796325717", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47643", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the committee meeting had a great turnout .", "storylet_id": "238215"}], [{"original_text": "Veronica was there and I haven't seen her in a year.", "album_id": "72157629123437977", "photo_flickr_id": "6796330057", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47643", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] was there and i have n't seen her in a year .", "storylet_id": "238216"}], [{"original_text": "The professional photographers snapped pictures of everyone.", "album_id": "72157629123437977", "photo_flickr_id": "6796333301", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47643", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the professional photographers snapped pictures of everyone .", "storylet_id": "238217"}], [{"original_text": "I look happy because the event has good food.", "album_id": "72157629123437977", "photo_flickr_id": "6796336623", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47643", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i look happy because the event has good food .", "storylet_id": "238218"}], [{"original_text": "The night ended with a beauty pageant and it was very pleasant.", "album_id": "72157629123437977", "photo_flickr_id": "6796340595", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47643", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night ended with a beauty pageant and it was very pleasant .", "storylet_id": "238219"}], [{"original_text": "The stylist team are all smiles after getting the MS USA pageant contestants ready to walk the stage.", "album_id": "72157629123437977", "photo_flickr_id": "6796325717", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "47644", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stylist team are all smiles after getting the ms location pageant contestants ready to walk the stage .", "storylet_id": "238220"}], [{"original_text": "Kim smiles for a photo with Ms. Lisa Toledo for a photo before her walk on stage.", "album_id": "72157629123437977", "photo_flickr_id": "6796330057", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "47644", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] smiles for a photo with ms. [female] toledo for a photo before her walk on stage .", "storylet_id": "238221"}], [{"original_text": "Four contestants get a quick photo op in before the big walk.", "album_id": "72157629123437977", "photo_flickr_id": "6796333301", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "47644", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "four contestants get a quick photo op in before the big walk .", "storylet_id": "238222"}], [{"original_text": "Kim takes a quick selfie before taking her seat to watch the beautiful ladies walk.", "album_id": "72157629123437977", "photo_flickr_id": "6796336623", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "47644", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] takes a quick selfie before taking her seat to watch the beautiful ladies walk .", "storylet_id": "238223"}], [{"original_text": "All of the ladies look beautiful thanks to the talented stylist. They walk across the stage proudly as they introduce themselves.", "album_id": "72157629123437977", "photo_flickr_id": "6796340595", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "47644", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of the ladies look beautiful thanks to the talented stylist . they walk across the stage proudly as they introduce themselves .", "storylet_id": "238224"}], [{"original_text": "We took the ferry to the market to enjoy the scenery.", "album_id": "402099", "photo_flickr_id": "16731978", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47645", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took the ferry to the market to enjoy the scenery .", "storylet_id": "238225"}], [{"original_text": "At the market we first stopped by the dairy aisle.", "album_id": "402099", "photo_flickr_id": "16732475", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47645", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at the market we first stopped by the dairy aisle .", "storylet_id": "238226"}], [{"original_text": "Next we got so meat and poultry for dinner.", "album_id": "402099", "photo_flickr_id": "16732601", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47645", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next we got so meat and poultry for dinner .", "storylet_id": "238227"}], [{"original_text": "Afterwards we stopped by the caf\u00c3\u0192\u00c2\u00a9 for a quick bite to eat.", "album_id": "402099", "photo_flickr_id": "16732872", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47645", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards we stopped by the caf\u00c3\u0192\u00c6\u2019\u00c3\u201a\u00c2\u00a9 for a quick bite to eat .", "storylet_id": "238228"}], [{"original_text": "Then we took another ferry back home.", "album_id": "402099", "photo_flickr_id": "16736427", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47645", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we took another ferry back home .", "storylet_id": "238229"}], [{"original_text": "The building looked like s church.", "album_id": "402099", "photo_flickr_id": "16744009", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47646", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the building looked like s church .", "storylet_id": "238230"}], [{"original_text": "But inside was a restaurant.", "album_id": "402099", "photo_flickr_id": "16732386", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47646", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but inside was a restaurant .", "storylet_id": "238231"}], [{"original_text": "They had hundreds of pastries.", "album_id": "402099", "photo_flickr_id": "16732475", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47646", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had hundreds of pastries .", "storylet_id": "238232"}], [{"original_text": "The variety of meats were abundant.", "album_id": "402099", "photo_flickr_id": "16732601", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47646", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the variety of meats were abundant .", "storylet_id": "238233"}], [{"original_text": "They had enough seating for our group.", "album_id": "402099", "photo_flickr_id": "16732872", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47646", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had enough seating for our group .", "storylet_id": "238234"}], [{"original_text": "I visited a city and walked up and down the water.", "album_id": "402099", "photo_flickr_id": "16731978", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47647", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i visited a city and walked up and down the water .", "storylet_id": "238235"}], [{"original_text": "I found a really great bakery with lots of pastries.", "album_id": "402099", "photo_flickr_id": "16732475", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47647", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i found a really great bakery with lots of pastries .", "storylet_id": "238236"}], [{"original_text": "In the same building was a meat and fish vendor.", "album_id": "402099", "photo_flickr_id": "16732601", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47647", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in the same building was a meat and fish vendor .", "storylet_id": "238237"}], [{"original_text": "There was a central cafe where we could all eat our purchases.", "album_id": "402099", "photo_flickr_id": "16732872", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47647", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a central cafe where we could all eat our purchases .", "storylet_id": "238238"}], [{"original_text": "The building it was housed in was gorgeous.", "album_id": "402099", "photo_flickr_id": "16736427", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47647", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the building it was housed in was gorgeous .", "storylet_id": "238239"}], [{"original_text": "Our day begins with a short ride on a water taxi.", "album_id": "402099", "photo_flickr_id": "16731978", "setting": "last-3-pick-old-and-tell", "worker_id": "MXCJDFXP0Q0UQ5B", "story_id": "47648", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our day begins with a short ride on a water taxi .", "storylet_id": "238240"}], [{"original_text": "We wander the aisles in search of some delicious fare.", "album_id": "402099", "photo_flickr_id": "16732475", "setting": "last-3-pick-old-and-tell", "worker_id": "MXCJDFXP0Q0UQ5B", "story_id": "47648", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we wander the aisles in search of some delicious fare .", "storylet_id": "238241"}], [{"original_text": "There is much to choose from.", "album_id": "402099", "photo_flickr_id": "16732601", "setting": "last-3-pick-old-and-tell", "worker_id": "MXCJDFXP0Q0UQ5B", "story_id": "47648", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is much to choose from .", "storylet_id": "238242"}], [{"original_text": "We take time to sample some of the local food and rest our feet.", "album_id": "402099", "photo_flickr_id": "16732872", "setting": "last-3-pick-old-and-tell", "worker_id": "MXCJDFXP0Q0UQ5B", "story_id": "47648", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we take time to sample some of the local food and rest our feet .", "storylet_id": "238243"}], [{"original_text": "Heading back we remember another satisfying day.", "album_id": "402099", "photo_flickr_id": "16736427", "setting": "last-3-pick-old-and-tell", "worker_id": "MXCJDFXP0Q0UQ5B", "story_id": "47648", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "heading back we remember another satisfying day .", "storylet_id": "238244"}], [{"original_text": "The old building had a green roof ", "album_id": "402099", "photo_flickr_id": "16744009", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47649", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old building had a green roof", "storylet_id": "238245"}], [{"original_text": "and was near a lady that sold hats.", "album_id": "402099", "photo_flickr_id": "16732386", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47649", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and was near a lady that sold hats .", "storylet_id": "238246"}], [{"original_text": "The market was not full of people", "album_id": "402099", "photo_flickr_id": "16732475", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47649", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the market was not full of people", "storylet_id": "238247"}], [{"original_text": "but had many meats for sale.", "album_id": "402099", "photo_flickr_id": "16732601", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47649", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but had many meats for sale .", "storylet_id": "238248"}], [{"original_text": "The restaurant was waiting on the people from the market to come. ", "album_id": "402099", "photo_flickr_id": "16732872", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47649", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the restaurant was waiting on the people from the market to come .", "storylet_id": "238249"}], [{"original_text": "It's festival time in a small town in Taiwan. ", "album_id": "448900", "photo_flickr_id": "16650306", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47650", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's festival time in a small town in location .", "storylet_id": "238250"}], [{"original_text": "A local school has been picked to play music while people gather. ", "album_id": "448900", "photo_flickr_id": "16149703", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47650", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a local school has been picked to play music while people gather .", "storylet_id": "238251"}], [{"original_text": "Taquin and Sodu are sisters that play the clarinet. ", "album_id": "448900", "photo_flickr_id": "16650303", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47650", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "taquin and sodu are sisters that play the clarinet .", "storylet_id": "238252"}], [{"original_text": "Their other sister Siki plays the tuba. ", "album_id": "448900", "photo_flickr_id": "16149705", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47650", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their other sister siki plays the tuba .", "storylet_id": "238253"}], [{"original_text": "There are a lot of fun treats to enjoy while listening to the talented orchestra. ", "album_id": "448900", "photo_flickr_id": "16413265", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "47650", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are a lot of fun treats to enjoy while listening to the talented orchestra .", "storylet_id": "238254"}], [{"original_text": "Staring the day at the music festival.", "album_id": "448900", "photo_flickr_id": "16650306", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47651", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "staring the day at the music festival .", "storylet_id": "238255"}], [{"original_text": "The bass player was a crowd favorite.", "album_id": "448900", "photo_flickr_id": "16149703", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47651", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bass player was a crowd favorite .", "storylet_id": "238256"}], [{"original_text": "The girls on clarinets were lovely.", "album_id": "448900", "photo_flickr_id": "16650303", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47651", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girls on clarinets were lovely .", "storylet_id": "238257"}], [{"original_text": "The saxophonist put all her heart into it.", "album_id": "448900", "photo_flickr_id": "16149704", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47651", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the saxophonist put all her heart into it .", "storylet_id": "238258"}], [{"original_text": "My favorite was the flutist with her enchanting melody.", "album_id": "448900", "photo_flickr_id": "16054905", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47651", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite was the flutist with her enchanting melody .", "storylet_id": "238259"}], [{"original_text": "My mom came to my orchestra concert that was held in the park.", "album_id": "448900", "photo_flickr_id": "16650306", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47652", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my mom came to my orchestra concert that was held in the park .", "storylet_id": "238260"}], [{"original_text": "I got on stage and played the bass like a champ.", "album_id": "448900", "photo_flickr_id": "16149703", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47652", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got on stage and played the bass like a champ .", "storylet_id": "238261"}], [{"original_text": "My friends got their woodwind section going to join me.", "album_id": "448900", "photo_flickr_id": "16650303", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47652", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friends got their woodwind section going to join me .", "storylet_id": "238262"}], [{"original_text": "At the end, my friend Marnie began to play the baritone.", "album_id": "448900", "photo_flickr_id": "16149705", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47652", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the end , my friend marnie began to play the baritone .", "storylet_id": "238263"}], [{"original_text": "My cousin Bobby enjoyed the treats he was given.", "album_id": "448900", "photo_flickr_id": "16413265", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "47652", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my cousin [male] enjoyed the treats he was given .", "storylet_id": "238264"}], [{"original_text": "i went to the festival today.", "album_id": "448900", "photo_flickr_id": "16650306", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47653", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the festival today .", "storylet_id": "238265"}], [{"original_text": "There were a lot of people performing.", "album_id": "448900", "photo_flickr_id": "16149703", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47653", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people performing .", "storylet_id": "238266"}], [{"original_text": "The orchestra was very good.", "album_id": "448900", "photo_flickr_id": "16650303", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47653", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the orchestra was very good .", "storylet_id": "238267"}], [{"original_text": "Some of the musicians were very talented.", "album_id": "448900", "photo_flickr_id": "16149705", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47653", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the musicians were very talented .", "storylet_id": "238268"}], [{"original_text": "I had a great time there.", "album_id": "448900", "photo_flickr_id": "16413265", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47653", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time there .", "storylet_id": "238269"}], [{"original_text": "She was very excited to get a good seat that day. ", "album_id": "448900", "photo_flickr_id": "16650306", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47654", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she was very excited to get a good seat that day .", "storylet_id": "238270"}], [{"original_text": "The band members had brought their instruments. ", "album_id": "448900", "photo_flickr_id": "16149703", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47654", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the band members had brought their instruments .", "storylet_id": "238271"}], [{"original_text": "These two girls were nervous about their performance. ", "album_id": "448900", "photo_flickr_id": "16650303", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47654", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these two girls were nervous about their performance .", "storylet_id": "238272"}], [{"original_text": "This girl was quite confident. ", "album_id": "448900", "photo_flickr_id": "16149704", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47654", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this girl was quite confident .", "storylet_id": "238273"}], [{"original_text": "The flutist had a solo that day. ", "album_id": "448900", "photo_flickr_id": "16054905", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47654", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the flutist had a solo that day .", "storylet_id": "238274"}], [{"original_text": "Breakfast started out well.", "album_id": "37058", "photo_flickr_id": "1451418", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47655", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "breakfast started out well .", "storylet_id": "238275"}], [{"original_text": "This was a gourmet syrup.", "album_id": "37058", "photo_flickr_id": "1451440", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47655", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was a gourmet syrup .", "storylet_id": "238276"}], [{"original_text": "It was purchased here.", "album_id": "37058", "photo_flickr_id": "1451437", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47655", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was purchased here .", "storylet_id": "238277"}], [{"original_text": "It looked appealing.", "album_id": "37058", "photo_flickr_id": "1451444", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47655", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looked appealing .", "storylet_id": "238278"}], [{"original_text": "The results were delicious.", "album_id": "37058", "photo_flickr_id": "1451445", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47655", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the results were delicious .", "storylet_id": "238279"}], [{"original_text": "These waffles look like a great choice for breakfast.", "album_id": "37058", "photo_flickr_id": "1451418", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "47656", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these waffles look like a great choice for breakfast .", "storylet_id": "238280"}], [{"original_text": "Oh no! The only syrup I have seems to have a bad cork so I'll need a fresh bottle.", "album_id": "37058", "photo_flickr_id": "1451430", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "47656", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "oh no ! the only syrup i have seems to have a bad cork so i 'll need a fresh bottle .", "storylet_id": "238281"}], [{"original_text": "Luckily, there is a shop just down the road from my apartment.", "album_id": "37058", "photo_flickr_id": "1451432", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "47656", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "luckily , there is a shop just down the road from my apartment .", "storylet_id": "238282"}], [{"original_text": "They have a wonderful selections of syrups to choose from.", "album_id": "37058", "photo_flickr_id": "1451437", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "47656", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they have a wonderful selections of syrups to choose from .", "storylet_id": "238283"}], [{"original_text": "Now I can enjoy my breakfast waffles with fresh syrup.", "album_id": "37058", "photo_flickr_id": "1451444", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "47656", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now i can enjoy my breakfast waffles with fresh syrup .", "storylet_id": "238284"}], [{"original_text": "I was hungry this morning so I decided to make some waffles.", "album_id": "37058", "photo_flickr_id": "1451418", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47657", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was hungry this morning so i decided to make some waffles .", "storylet_id": "238285"}], [{"original_text": "I began cooking them.", "album_id": "37058", "photo_flickr_id": "1451430", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47657", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i began cooking them .", "storylet_id": "238286"}], [{"original_text": "While I was out I went over to the store to buy some more ingredients.", "album_id": "37058", "photo_flickr_id": "1451432", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47657", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "while i was out i went over to the store to buy some more ingredients .", "storylet_id": "238287"}], [{"original_text": "After I was done I went back home and finished cooking my waffles.", "album_id": "37058", "photo_flickr_id": "1451437", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47657", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after i was done i went back home and finished cooking my waffles .", "storylet_id": "238288"}], [{"original_text": "They were delicious.", "album_id": "37058", "photo_flickr_id": "1451444", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47657", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were delicious .", "storylet_id": "238289"}], [{"original_text": "I could not believe we found eggos on our trip.", "album_id": "37058", "photo_flickr_id": "1451418", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47658", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i could not believe we found eggos on our trip .", "storylet_id": "238290"}], [{"original_text": "We were able to find maple syrup too.", "album_id": "37058", "photo_flickr_id": "1451440", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47658", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were able to find maple syrup too .", "storylet_id": "238291"}], [{"original_text": "Most of the stuff was kind of hidden at the store.", "album_id": "37058", "photo_flickr_id": "1451437", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47658", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most of the stuff was kind of hidden at the store .", "storylet_id": "238292"}], [{"original_text": "Yes we had waffles for dinner.", "album_id": "37058", "photo_flickr_id": "1451444", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47658", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "yes we had waffles for dinner .", "storylet_id": "238293"}], [{"original_text": "My brother could not wait to eat.", "album_id": "37058", "photo_flickr_id": "1451445", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47658", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my brother could not wait to eat .", "storylet_id": "238294"}], [{"original_text": "John got hungry so he grabbed a box of Eggos", "album_id": "37058", "photo_flickr_id": "1451418", "setting": "last-3-pick-old-and-tell", "worker_id": "ETOFAX3R4LK53AV", "story_id": "47659", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] got hungry so he grabbed a box of eggos", "storylet_id": "238295"}], [{"original_text": "John also got thirsty so he poured himself a cup to drink ", "album_id": "37058", "photo_flickr_id": "1451440", "setting": "last-3-pick-old-and-tell", "worker_id": "ETOFAX3R4LK53AV", "story_id": "47659", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] also got thirsty so he poured himself a cup to drink", "storylet_id": "238296"}], [{"original_text": "John went to the store to look at something to drink", "album_id": "37058", "photo_flickr_id": "1451437", "setting": "last-3-pick-old-and-tell", "worker_id": "ETOFAX3R4LK53AV", "story_id": "47659", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] went to the store to look at something to drink", "storylet_id": "238297"}], [{"original_text": "John poured the syrup on his Eggos", "album_id": "37058", "photo_flickr_id": "1451444", "setting": "last-3-pick-old-and-tell", "worker_id": "ETOFAX3R4LK53AV", "story_id": "47659", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] poured the syrup on his eggos", "storylet_id": "238298"}], [{"original_text": "John finally took a bite to eat of his Eggos", "album_id": "37058", "photo_flickr_id": "1451445", "setting": "last-3-pick-old-and-tell", "worker_id": "ETOFAX3R4LK53AV", "story_id": "47659", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] finally took a bite to eat of his eggos", "storylet_id": "238299"}], [{"original_text": "Man i'm so hungry. Let's get some food.", "album_id": "111086", "photo_flickr_id": "4410744", "setting": "first-2-pick-and-tell", "worker_id": "UAOUW9JIM2M91F1", "story_id": "47660", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "man i 'm so hungry . let 's get some food .", "storylet_id": "238300"}], [{"original_text": "Haha dude we're sooo high.", "album_id": "111086", "photo_flickr_id": "4410528", "setting": "first-2-pick-and-tell", "worker_id": "UAOUW9JIM2M91F1", "story_id": "47660", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "haha dude we 're sooo high .", "storylet_id": "238301"}], [{"original_text": "Let's get some soup for some food.!", "album_id": "111086", "photo_flickr_id": "4410809", "setting": "first-2-pick-and-tell", "worker_id": "UAOUW9JIM2M91F1", "story_id": "47660", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "let 's get some soup for some food . !", "storylet_id": "238302"}], [{"original_text": "Can't forget alcohol. Better turn up today!", "album_id": "111086", "photo_flickr_id": "4410646", "setting": "first-2-pick-and-tell", "worker_id": "UAOUW9JIM2M91F1", "story_id": "47660", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "ca n't forget alcohol . better turn up today !", "storylet_id": "238303"}], [{"original_text": "Time to check out the food.", "album_id": "111086", "photo_flickr_id": "4410842", "setting": "first-2-pick-and-tell", "worker_id": "UAOUW9JIM2M91F1", "story_id": "47660", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time to check out the food .", "storylet_id": "238304"}], [{"original_text": "I work at a grocery store, some may think it's lame but I love my job. ", "album_id": "111086", "photo_flickr_id": "4410744", "setting": "first-2-pick-and-tell", "worker_id": "XYGXH4NOC4LG1VB", "story_id": "47661", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i work at a grocery store , some may think it 's lame but i love my job .", "storylet_id": "238305"}], [{"original_text": "I don't have to waste my time making extra trips after work to go shopping because I can get everything I need from work. ", "album_id": "111086", "photo_flickr_id": "4410591", "setting": "first-2-pick-and-tell", "worker_id": "XYGXH4NOC4LG1VB", "story_id": "47661", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i do n't have to waste my time making extra trips after work to go shopping because i can get everything i need from work .", "storylet_id": "238306"}], [{"original_text": "My boss is great and makes me laugh.", "album_id": "111086", "photo_flickr_id": "4410528", "setting": "first-2-pick-and-tell", "worker_id": "XYGXH4NOC4LG1VB", "story_id": "47661", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my boss is great and makes me laugh .", "storylet_id": "238307"}], [{"original_text": "The store even carries my favorite brand of soup, and look at that price, what a deal!", "album_id": "111086", "photo_flickr_id": "4410809", "setting": "first-2-pick-and-tell", "worker_id": "XYGXH4NOC4LG1VB", "story_id": "47661", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the store even carries my favorite brand of soup , and look at that price , what a deal !", "storylet_id": "238308"}], [{"original_text": "After a long day of dealing with customers, this tends to be the isle I visit for a nice relaxing evening at home. ", "album_id": "111086", "photo_flickr_id": "4410646", "setting": "first-2-pick-and-tell", "worker_id": "XYGXH4NOC4LG1VB", "story_id": "47661", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long day of dealing with customers , this tends to be the isle i visit for a nice relaxing evening at home .", "storylet_id": "238309"}], [{"original_text": "I had to go to the grocery store yesterday to buy some food.", "album_id": "111086", "photo_flickr_id": "4410744", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47662", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had to go to the grocery store yesterday to buy some food .", "storylet_id": "238310"}], [{"original_text": "They had a lot of items on the shelves.", "album_id": "111086", "photo_flickr_id": "4410591", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47662", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a lot of items on the shelves .", "storylet_id": "238311"}], [{"original_text": "I had a great time laughing with the employees.", "album_id": "111086", "photo_flickr_id": "4410528", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47662", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time laughing with the employees .", "storylet_id": "238312"}], [{"original_text": "It was all very cheap.", "album_id": "111086", "photo_flickr_id": "4410809", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47662", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was all very cheap .", "storylet_id": "238313"}], [{"original_text": "Afterward I went to buy some beer.", "album_id": "111086", "photo_flickr_id": "4410646", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47662", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward i went to buy some beer .", "storylet_id": "238314"}], [{"original_text": "Today I visited a new market to look for some unique foods.", "album_id": "111086", "photo_flickr_id": "4410744", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47663", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i visited a new market to look for some unique foods .", "storylet_id": "238315"}], [{"original_text": "The workers got along great and had a nice relationship.", "album_id": "111086", "photo_flickr_id": "4410528", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47663", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the workers got along great and had a nice relationship .", "storylet_id": "238316"}], [{"original_text": "The soup wasn't on sale this week like I had hoped.", "album_id": "111086", "photo_flickr_id": "4410809", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47663", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the soup was n't on sale this week like i had hoped .", "storylet_id": "238317"}], [{"original_text": "There were so many choices of beer that I couldn't decide what to get.", "album_id": "111086", "photo_flickr_id": "4410646", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47663", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were so many choices of beer that i could n't decide what to get .", "storylet_id": "238318"}], [{"original_text": "The store manager gave me a discount on some chips and I was on my way. ", "album_id": "111086", "photo_flickr_id": "4410842", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47663", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the store manager gave me a discount on some chips and i was on my way .", "storylet_id": "238319"}], [{"original_text": "The shopping market did not have many people", "album_id": "111086", "photo_flickr_id": "4410744", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47664", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the shopping market did not have many people", "storylet_id": "238320"}], [{"original_text": "but the cashiers were very happy.", "album_id": "111086", "photo_flickr_id": "4410528", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47664", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but the cashiers were very happy .", "storylet_id": "238321"}], [{"original_text": "The soup was cheap", "album_id": "111086", "photo_flickr_id": "4410809", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47664", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the soup was cheap", "storylet_id": "238322"}], [{"original_text": "and there was a lot of beer", "album_id": "111086", "photo_flickr_id": "4410646", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47664", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and there was a lot of beer", "storylet_id": "238323"}], [{"original_text": "so customers finally started coming in.", "album_id": "111086", "photo_flickr_id": "4410842", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47664", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so customers finally started coming in .", "storylet_id": "238324"}], [{"original_text": "My vision board for today was full of ideas. The first one was to not fail!! ", "album_id": "72157628296383879", "photo_flickr_id": "6462194191", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47665", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my vision board for today was full of ideas . the first one was to not fail ! !", "storylet_id": "238325"}], [{"original_text": "To leave Hyde park because I can't ever find my way out of there. ", "album_id": "72157628296383879", "photo_flickr_id": "6462198407", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47665", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to leave hyde park because i ca n't ever find my way out of there .", "storylet_id": "238326"}], [{"original_text": "To commit to things because I never have. ", "album_id": "72157628296383879", "photo_flickr_id": "6462218837", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47665", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "to commit to things because i never have .", "storylet_id": "238327"}], [{"original_text": "Smile All! I want everyone to smile! ", "album_id": "72157628296383879", "photo_flickr_id": "6462220621", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47665", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "smile all ! i want everyone to smile !", "storylet_id": "238328"}], [{"original_text": "The last one was the magic of friendship. One day I'll make a friend!", "album_id": "72157628296383879", "photo_flickr_id": "6462231665", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47665", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last one was the magic of friendship . one day i 'll make a friend !", "storylet_id": "238329"}], [{"original_text": "I spent all day yesterday writing notes to everyone in the office.", "album_id": "72157628296383879", "photo_flickr_id": "6462174783", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47666", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spent all day yesterday writing notes to everyone in the office .", "storylet_id": "238330"}], [{"original_text": "I put a lot of quotes.", "album_id": "72157628296383879", "photo_flickr_id": "6462176055", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47666", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i put a lot of quotes .", "storylet_id": "238331"}], [{"original_text": "And funny jokes.", "album_id": "72157628296383879", "photo_flickr_id": "6462177977", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47666", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and funny jokes .", "storylet_id": "238332"}], [{"original_text": "And some inside jokes.", "album_id": "72157628296383879", "photo_flickr_id": "6462192147", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47666", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and some inside jokes .", "storylet_id": "238333"}], [{"original_text": "Everyone had a great laugh.", "album_id": "72157628296383879", "photo_flickr_id": "6462194191", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47666", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great laugh .", "storylet_id": "238334"}], [{"original_text": "The kids dream is to get a phd, ", "album_id": "72157628296383879", "photo_flickr_id": "6462174783", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "47667", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids dream is to get a phd ,", "storylet_id": "238335"}], [{"original_text": "this one is to reach their highest potential, ", "album_id": "72157628296383879", "photo_flickr_id": "6462176055", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "47667", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one is to reach their highest potential ,", "storylet_id": "238336"}], [{"original_text": "this one wants to climb a rock wall. ", "album_id": "72157628296383879", "photo_flickr_id": "6462177977", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "47667", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one wants to climb a rock wall .", "storylet_id": "238337"}], [{"original_text": "Then this guy wants to master league of SC, ", "album_id": "72157628296383879", "photo_flickr_id": "6462192147", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "47667", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then this guy wants to master league of organization ,", "storylet_id": "238338"}], [{"original_text": "and this guy simply doesn't want to fail.", "album_id": "72157628296383879", "photo_flickr_id": "6462194191", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "47667", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and this guy simply does n't want to fail .", "storylet_id": "238339"}], [{"original_text": "He made a board for them. ", "album_id": "72157628296383879", "photo_flickr_id": "6462174783", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47668", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he made a board for them .", "storylet_id": "238340"}], [{"original_text": "There assignment was to post their dreams on it. ", "album_id": "72157628296383879", "photo_flickr_id": "6462176055", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47668", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there assignment was to post their dreams on it .", "storylet_id": "238341"}], [{"original_text": "Their ambitions. ", "album_id": "72157628296383879", "photo_flickr_id": "6462177977", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47668", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their ambitions .", "storylet_id": "238342"}], [{"original_text": "Their goals. ", "album_id": "72157628296383879", "photo_flickr_id": "6462192147", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47668", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their goals .", "storylet_id": "238343"}], [{"original_text": "Since it was anonymous, a few left pranks. ", "album_id": "72157628296383879", "photo_flickr_id": "6462194191", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47668", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "since it was anonymous , a few left pranks .", "storylet_id": "238344"}], [{"original_text": "Two office coworkers sent notes to each other.", "album_id": "72157628296383879", "photo_flickr_id": "6462194191", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47669", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two office coworkers sent notes to each other .", "storylet_id": "238345"}], [{"original_text": "They were playful and sometimes cute.", "album_id": "72157628296383879", "photo_flickr_id": "6462198407", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47669", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were playful and sometimes cute .", "storylet_id": "238346"}], [{"original_text": "One of them had really nice handwriting.", "album_id": "72157628296383879", "photo_flickr_id": "6462218837", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47669", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of them had really nice handwriting .", "storylet_id": "238347"}], [{"original_text": "They did this every day and I noticed they blushed when they read them.", "album_id": "72157628296383879", "photo_flickr_id": "6462220621", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47669", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they did this every day and i noticed they blushed when they read them .", "storylet_id": "238348"}], [{"original_text": "If I recall correctly, they always meet in the bathroom after reading each others' notes.", "album_id": "72157628296383879", "photo_flickr_id": "6462231665", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47669", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "if i recall correctly , they always meet in the bathroom after reading each others ' notes .", "storylet_id": "238349"}], [{"original_text": "The protest was downtown this morning.", "album_id": "72157625850715298", "photo_flickr_id": "5364782085", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "47670", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the protest was downtown this morning .", "storylet_id": "238350"}], [{"original_text": "Many people of all races and sexes were in attendance.", "album_id": "72157625850715298", "photo_flickr_id": "5364791141", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "47670", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people of all races and sexes were in attendance .", "storylet_id": "238351"}], [{"original_text": "News crews from all around were there to report on the event.", "album_id": "72157625850715298", "photo_flickr_id": "5364801099", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "47670", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "news crews from all around were there to report on the event .", "storylet_id": "238352"}], [{"original_text": "Several groups carried banners in support of the cause.", "album_id": "72157625850715298", "photo_flickr_id": "5365704891", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "47670", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "several groups carried banners in support of the cause .", "storylet_id": "238353"}], [{"original_text": "The entire protest was very peaceful and effective in my opinion.", "album_id": "72157625850715298", "photo_flickr_id": "5366326736", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "47670", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the entire protest was very peaceful and effective in my opinion .", "storylet_id": "238354"}], [{"original_text": "Going to the protest in California.", "album_id": "72157625850715298", "photo_flickr_id": "5365875523", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47671", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going to the protest in location .", "storylet_id": "238355"}], [{"original_text": "Black and gay we are family protesters.", "album_id": "72157625850715298", "photo_flickr_id": "5366324608", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47671", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "black and gay we are family protesters .", "storylet_id": "238356"}], [{"original_text": "Black and gay here to stay sign.", "album_id": "72157625850715298", "photo_flickr_id": "5365428628", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47671", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "black and gay here to stay sign .", "storylet_id": "238357"}], [{"original_text": "Legalize gar marriage sign.", "album_id": "72157625850715298", "photo_flickr_id": "5366326736", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47671", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "legalize gar marriage sign .", "storylet_id": "238358"}], [{"original_text": "Put a ring on it sign, for gay marriage.", "album_id": "72157625850715298", "photo_flickr_id": "5365713241", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47671", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "put a ring on it sign , for gay marriage .", "storylet_id": "238359"}], [{"original_text": "It was a beautiful day in sunny California.", "album_id": "72157625850715298", "photo_flickr_id": "5365875523", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "47672", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful day in sunny location .", "storylet_id": "238360"}], [{"original_text": "A perfect day to head out to a gay pride parade.", "album_id": "72157625850715298", "photo_flickr_id": "5366324608", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "47672", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a perfect day to head out to a gay pride parade .", "storylet_id": "238361"}], [{"original_text": "Everyone was happily displaying their signs as they marched.", "album_id": "72157625850715298", "photo_flickr_id": "5365428628", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "47672", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was happily displaying their signs as they marched .", "storylet_id": "238362"}], [{"original_text": "Everyone was marching for equal rights. ", "album_id": "72157625850715298", "photo_flickr_id": "5366326736", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "47672", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was marching for equal rights .", "storylet_id": "238363"}], [{"original_text": "It was a perfect day and a peaceful march. ", "album_id": "72157625850715298", "photo_flickr_id": "5365713241", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "47672", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a perfect day and a peaceful march .", "storylet_id": "238364"}], [{"original_text": "A pride parade occurred in my hometown. ", "album_id": "72157625850715298", "photo_flickr_id": "5364782085", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47673", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a pride parade occurred in my hometown .", "storylet_id": "238365"}], [{"original_text": "Hundreds of people made their voices heard. ", "album_id": "72157625850715298", "photo_flickr_id": "5364791141", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47673", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "hundreds of people made their voices heard .", "storylet_id": "238366"}], [{"original_text": "Kalene interviewed a lot of people that day.", "album_id": "72157625850715298", "photo_flickr_id": "5364801099", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47673", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "kalene interviewed a lot of people that day .", "storylet_id": "238367"}], [{"original_text": "There were inexpensive banners being held up.", "album_id": "72157625850715298", "photo_flickr_id": "5365704891", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47673", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were inexpensive banners being held up .", "storylet_id": "238368"}], [{"original_text": "A lot of creativity went into the parade pride signs.", "album_id": "72157625850715298", "photo_flickr_id": "5366326736", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47673", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a lot of creativity went into the parade pride signs .", "storylet_id": "238369"}], [{"original_text": "Today is the day of the big march. We are really excited about it!", "album_id": "72157625850715298", "photo_flickr_id": "5364782085", "setting": "last-3-pick-old-and-tell", "worker_id": "8ERB4I67NU8YGPX", "story_id": "47674", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is the day of the big march . we are really excited about it !", "storylet_id": "238370"}], [{"original_text": "We got all the friends we could to join in and people came from other towns as well.", "album_id": "72157625850715298", "photo_flickr_id": "5364791141", "setting": "last-3-pick-old-and-tell", "worker_id": "8ERB4I67NU8YGPX", "story_id": "47674", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got all the friends we could to join in and people came from other towns as well .", "storylet_id": "238371"}], [{"original_text": "The local TV station interviewed us.", "album_id": "72157625850715298", "photo_flickr_id": "5364801099", "setting": "last-3-pick-old-and-tell", "worker_id": "8ERB4I67NU8YGPX", "story_id": "47674", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the local tv station interviewed us .", "storylet_id": "238372"}], [{"original_text": "Different groups joined in. There was loads of us.", "album_id": "72157625850715298", "photo_flickr_id": "5365704891", "setting": "last-3-pick-old-and-tell", "worker_id": "8ERB4I67NU8YGPX", "story_id": "47674", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "different groups joined in . there was loads of us .", "storylet_id": "238373"}], [{"original_text": "Some of the banners were home made but really got the point across. A great day.", "album_id": "72157625850715298", "photo_flickr_id": "5366326736", "setting": "last-3-pick-old-and-tell", "worker_id": "8ERB4I67NU8YGPX", "story_id": "47674", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the banners were home made but really got the point across . a great day .", "storylet_id": "238374"}], [{"original_text": "The morning before the protest, the streets were empty.", "album_id": "72157628917529603", "photo_flickr_id": "6707891197", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47675", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the morning before the protest , the streets were empty .", "storylet_id": "238375"}], [{"original_text": "Fences were put up to keep the peace.", "album_id": "72157628917529603", "photo_flickr_id": "6707659705", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47675", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fences were put up to keep the peace .", "storylet_id": "238376"}], [{"original_text": "Slowly, people started to make their way to the designated area.", "album_id": "72157628917529603", "photo_flickr_id": "6716700637", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47675", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "slowly , people started to make their way to the designated area .", "storylet_id": "238377"}], [{"original_text": "There were many there who supported marriage equality.", "album_id": "72157628917529603", "photo_flickr_id": "6716576847", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47675", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many there who supported marriage equality .", "storylet_id": "238378"}], [{"original_text": "While others felt strongly about traditional marriage values.", "album_id": "72157628917529603", "photo_flickr_id": "6716514913", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47675", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while others felt strongly about traditional marriage values .", "storylet_id": "238379"}], [{"original_text": "There were not a lot of people on the street today.", "album_id": "72157628917529603", "photo_flickr_id": "6707891197", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47676", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were not a lot of people on the street today .", "storylet_id": "238380"}], [{"original_text": "I walked for a while.", "album_id": "72157628917529603", "photo_flickr_id": "6707716953", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47676", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i walked for a while .", "storylet_id": "238381"}], [{"original_text": "There were a lot of people at the corner.", "album_id": "72157628917529603", "photo_flickr_id": "6716481343", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47676", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of people at the corner .", "storylet_id": "238382"}], [{"original_text": "They were having some kind of rally.", "album_id": "72157628917529603", "photo_flickr_id": "6716472221", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47676", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were having some kind of rally .", "storylet_id": "238383"}], [{"original_text": "I decided to go with them.", "album_id": "72157628917529603", "photo_flickr_id": "6716378609", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47676", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to go with them .", "storylet_id": "238384"}], [{"original_text": "We took a train into the city for the rally.", "album_id": "72157628917529603", "photo_flickr_id": "6707891197", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47677", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a train into the city for the rally .", "storylet_id": "238385"}], [{"original_text": "It was to be held tomorrow but preparations were already underway.", "album_id": "72157628917529603", "photo_flickr_id": "6707659705", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47677", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was to be held tomorrow but preparations were already underway .", "storylet_id": "238386"}], [{"original_text": "Here we are walking to the heart of the protest.", "album_id": "72157628917529603", "photo_flickr_id": "6716700637", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47677", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here we are walking to the heart of the protest .", "storylet_id": "238387"}], [{"original_text": "The crowd was passionate yet peaceful.", "album_id": "72157628917529603", "photo_flickr_id": "6716576847", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47677", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowd was passionate yet peaceful .", "storylet_id": "238388"}], [{"original_text": "The turnout was huge thanks to social media.", "album_id": "72157628917529603", "photo_flickr_id": "6716514913", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47677", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the turnout was huge thanks to social media .", "storylet_id": "238389"}], [{"original_text": "I decided to take a stroll around town to enjoy the rest of my day.", "album_id": "72157628917529603", "photo_flickr_id": "6707891197", "setting": "last-3-pick-old-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47678", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to take a stroll around town to enjoy the rest of my day .", "storylet_id": "238390"}], [{"original_text": "It seems that the town was calm and collective", "album_id": "72157628917529603", "photo_flickr_id": "6707659705", "setting": "last-3-pick-old-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47678", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it seems that the town was calm and collective", "storylet_id": "238391"}], [{"original_text": "until a group of angry protesters swarmed in. ", "album_id": "72157628917529603", "photo_flickr_id": "6716700637", "setting": "last-3-pick-old-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47678", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "until a group of angry protesters swarmed in .", "storylet_id": "238392"}], [{"original_text": "Protests in the form of speeches and marches were flooding the street.", "album_id": "72157628917529603", "photo_flickr_id": "6716576847", "setting": "last-3-pick-old-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47678", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "protests in the form of speeches and marches were flooding the street .", "storylet_id": "238393"}], [{"original_text": "In addition, a vast majority of people were advocating a health care reform.", "album_id": "72157628917529603", "photo_flickr_id": "6716514913", "setting": "last-3-pick-old-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47678", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in addition , a vast majority of people were advocating a health care reform .", "storylet_id": "238394"}], [{"original_text": "The plaza was empty", "album_id": "72157628917529603", "photo_flickr_id": "6707891197", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47679", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the plaza was empty", "storylet_id": "238395"}], [{"original_text": "when the lights lit up.", "album_id": "72157628917529603", "photo_flickr_id": "6707659705", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47679", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when the lights lit up .", "storylet_id": "238396"}], [{"original_text": "People started to come", "album_id": "72157628917529603", "photo_flickr_id": "6716700637", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47679", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people started to come", "storylet_id": "238397"}], [{"original_text": "to protest against the laws ", "album_id": "72157628917529603", "photo_flickr_id": "6716576847", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47679", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to protest against the laws", "storylet_id": "238398"}], [{"original_text": "of healthcare.", "album_id": "72157628917529603", "photo_flickr_id": "6716514913", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47679", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of healthcare .", "storylet_id": "238399"}], [{"original_text": "We visited Washington, DC for the fourth of July this year.", "album_id": "72157594482057549", "photo_flickr_id": "358847528", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47680", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited location , location for the fourth of july this year .", "storylet_id": "238400"}], [{"original_text": "There were a lot of people commemorating veterans.", "album_id": "72157594482057549", "photo_flickr_id": "358790861", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47680", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people commemorating veterans .", "storylet_id": "238401"}], [{"original_text": "There were throwing flowers every place.", "album_id": "72157594482057549", "photo_flickr_id": "358745570", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47680", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were throwing flowers every place .", "storylet_id": "238402"}], [{"original_text": "It was kind of nice to see flowers on the ground everywhere.", "album_id": "72157594482057549", "photo_flickr_id": "358943156", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47680", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was kind of nice to see flowers on the ground everywhere .", "storylet_id": "238403"}], [{"original_text": "I took the opportunity to snap this picture of the Washington Monument because it's iconic.", "album_id": "72157594482057549", "photo_flickr_id": "358866474", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47680", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i took the opportunity to snap this picture of the location monument because it 's iconic .", "storylet_id": "238404"}], [{"original_text": "washington is a beautiful place", "album_id": "72157594482057549", "photo_flickr_id": "358873005", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47681", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "washington is a beautiful place", "storylet_id": "238405"}], [{"original_text": "there was a memorial for those lost in the bombing", "album_id": "72157594482057549", "photo_flickr_id": "358790861", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47681", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a memorial for those lost in the bombing", "storylet_id": "238406"}], [{"original_text": "flowers were laid where people died from the blast", "album_id": "72157594482057549", "photo_flickr_id": "358983139", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47681", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "flowers were laid where people died from the blast", "storylet_id": "238407"}], [{"original_text": "many family members came to leave respect", "album_id": "72157594482057549", "photo_flickr_id": "358943156", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47681", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many family members came to leave respect", "storylet_id": "238408"}], [{"original_text": "there was alot of people there", "album_id": "72157594482057549", "photo_flickr_id": "358866474", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47681", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was alot of people there", "storylet_id": "238409"}], [{"original_text": "I went out for a walk today.", "album_id": "72157594482057549", "photo_flickr_id": "358847528", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47682", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went out for a walk today .", "storylet_id": "238410"}], [{"original_text": "They were having a memorial service at the capitol.", "album_id": "72157594482057549", "photo_flickr_id": "358790861", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47682", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were having a memorial service at the capitol .", "storylet_id": "238411"}], [{"original_text": "There were many flowers there.", "album_id": "72157594482057549", "photo_flickr_id": "358745570", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47682", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many flowers there .", "storylet_id": "238412"}], [{"original_text": "Everyone had come to show their respects.", "album_id": "72157594482057549", "photo_flickr_id": "358943156", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47682", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone had come to show their respects .", "storylet_id": "238413"}], [{"original_text": "There was a large turnout.", "album_id": "72157594482057549", "photo_flickr_id": "358866474", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47682", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a large turnout .", "storylet_id": "238414"}], [{"original_text": "I love to travel", "album_id": "72157594482057549", "photo_flickr_id": "358847528", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47683", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love to travel", "storylet_id": "238415"}], [{"original_text": "This place is amazing", "album_id": "72157594482057549", "photo_flickr_id": "358790861", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47683", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this place is amazing", "storylet_id": "238416"}], [{"original_text": "So much to see", "album_id": "72157594482057549", "photo_flickr_id": "358745570", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47683", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so much to see", "storylet_id": "238417"}], [{"original_text": "and do", "album_id": "72157594482057549", "photo_flickr_id": "358943156", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47683", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and do", "storylet_id": "238418"}], [{"original_text": "I love this place", "album_id": "72157594482057549", "photo_flickr_id": "358866474", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47683", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love this place", "storylet_id": "238419"}], [{"original_text": "We are going to the place my friend died.", "album_id": "72157594482057549", "photo_flickr_id": "358847528", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47684", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are going to the place my friend died .", "storylet_id": "238420"}], [{"original_text": " It was my first time coming here.", "album_id": "72157594482057549", "photo_flickr_id": "358790861", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47684", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was my first time coming here .", "storylet_id": "238421"}], [{"original_text": "I drop my flower on the floor.", "album_id": "72157594482057549", "photo_flickr_id": "358745570", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47684", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i drop my flower on the floor .", "storylet_id": "238422"}], [{"original_text": "Other come to pay their respect as well.", "album_id": "72157594482057549", "photo_flickr_id": "358943156", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47684", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other come to pay their respect as well .", "storylet_id": "238423"}], [{"original_text": "There is alot of his coming to say good bue. ", "album_id": "72157594482057549", "photo_flickr_id": "358866474", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "47684", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is alot of his coming to say good bue .", "storylet_id": "238424"}], [{"original_text": "Today we all gathered together to help clean the school outside.", "album_id": "72157612720327475", "photo_flickr_id": "3211625446", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47685", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we all gathered together to help clean the school outside .", "storylet_id": "238425"}], [{"original_text": "We shoveled up leaves", "album_id": "72157612720327475", "photo_flickr_id": "3211625310", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47685", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we shoveled up leaves", "storylet_id": "238426"}], [{"original_text": "and planted some soil for flowers in the summer.", "album_id": "72157612720327475", "photo_flickr_id": "3210779525", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47685", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and planted some soil for flowers in the summer .", "storylet_id": "238427"}], [{"original_text": "After we took a selfie. We were still in our coats because it was still cold.", "album_id": "72157612720327475", "photo_flickr_id": "3210778029", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47685", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after we took a selfie . we were still in our coats because it was still cold .", "storylet_id": "238428"}], [{"original_text": "After all the parents chatted with some coffee.", "album_id": "72157612720327475", "photo_flickr_id": "3210777881", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47685", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after all the parents chatted with some coffee .", "storylet_id": "238429"}], [{"original_text": "There was a lot of work to do.", "album_id": "72157612720327475", "photo_flickr_id": "3211625310", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47686", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a lot of work to do .", "storylet_id": "238430"}], [{"original_text": "We had to restore the nearby park to acceptable condition.", "album_id": "72157612720327475", "photo_flickr_id": "3211625046", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47686", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to restore the nearby park to acceptable condition .", "storylet_id": "238431"}], [{"original_text": "We filled the wheelbarrows with wood chips.", "album_id": "72157612720327475", "photo_flickr_id": "3210778831", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47686", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we filled the wheelbarrows with wood chips .", "storylet_id": "238432"}], [{"original_text": "We only had one wheelbarrow so some people had to carry them in buckets.", "album_id": "72157612720327475", "photo_flickr_id": "3211624280", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47686", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we only had one wheelbarrow so some people had to carry them in buckets .", "storylet_id": "238433"}], [{"original_text": "When we were finished the children were very excited to play in the park.", "album_id": "72157612720327475", "photo_flickr_id": "3210778555", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47686", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we were finished the children were very excited to play in the park .", "storylet_id": "238434"}], [{"original_text": "The garden at the local park our school volunteered to work on this weekend. ", "album_id": "72157612720327475", "photo_flickr_id": "3211625446", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "47687", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the garden at the local park our school volunteered to work on this weekend .", "storylet_id": "238435"}], [{"original_text": "We had to do a little heavy lifting early in the morning on the weekend. ", "album_id": "72157612720327475", "photo_flickr_id": "3211625310", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "47687", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to do a little heavy lifting early in the morning on the weekend .", "storylet_id": "238436"}], [{"original_text": "Do not say that teachers do not work on the weekend. ", "album_id": "72157612720327475", "photo_flickr_id": "3210779525", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "47687", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "do not say that teachers do not work on the weekend .", "storylet_id": "238437"}], [{"original_text": "The kids where so happy to take a break and have a snack. ", "album_id": "72157612720327475", "photo_flickr_id": "3210778029", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "47687", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids where so happy to take a break and have a snack .", "storylet_id": "238438"}], [{"original_text": "At the end of the day everybody was happy to be in the warm school. ", "album_id": "72157612720327475", "photo_flickr_id": "3210777881", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "47687", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day everybody was happy to be in the warm school .", "storylet_id": "238439"}], [{"original_text": "Half the community showed up to help set up the new park.", "album_id": "72157612720327475", "photo_flickr_id": "3211625310", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5JHDKGNVLHOUUV", "story_id": "47688", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "half the community showed up to help set up the new park .", "storylet_id": "238440"}], [{"original_text": "Adults and children both came to lend a helping hand.", "album_id": "72157612720327475", "photo_flickr_id": "3211625046", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5JHDKGNVLHOUUV", "story_id": "47688", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "adults and children both came to lend a helping hand .", "storylet_id": "238441"}], [{"original_text": "It was a cold day, but everyone helped carry in the mulch. ", "album_id": "72157612720327475", "photo_flickr_id": "3210778831", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5JHDKGNVLHOUUV", "story_id": "47688", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a cold day , but everyone helped carry in the mulch .", "storylet_id": "238442"}], [{"original_text": "The kids had a lot of fun making a difference. ", "album_id": "72157612720327475", "photo_flickr_id": "3211624280", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5JHDKGNVLHOUUV", "story_id": "47688", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids had a lot of fun making a difference .", "storylet_id": "238443"}], [{"original_text": "It was a good afternoon to spend with friends for a good cause. ", "album_id": "72157612720327475", "photo_flickr_id": "3210778555", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5JHDKGNVLHOUUV", "story_id": "47688", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a good afternoon to spend with friends for a good cause .", "storylet_id": "238444"}], [{"original_text": "We decided to do a service project fo rthe school.", "album_id": "72157612720327475", "photo_flickr_id": "3211625446", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47689", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to do a service project fo rthe school .", "storylet_id": "238445"}], [{"original_text": "We put mulch down for the playground.", "album_id": "72157612720327475", "photo_flickr_id": "3211625310", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47689", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we put mulch down for the playground .", "storylet_id": "238446"}], [{"original_text": "Then helped build it.", "album_id": "72157612720327475", "photo_flickr_id": "3210779525", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47689", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then helped build it .", "storylet_id": "238447"}], [{"original_text": "The kids were really excited.", "album_id": "72157612720327475", "photo_flickr_id": "3210778029", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47689", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids were really excited .", "storylet_id": "238448"}], [{"original_text": "They couldn't wait to play on it.", "album_id": "72157612720327475", "photo_flickr_id": "3210777881", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47689", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they could n't wait to play on it .", "storylet_id": "238449"}], [{"original_text": "Today we taught a classroom of kids ", "album_id": "72157623112779761", "photo_flickr_id": "4285344123", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "47690", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we taught a classroom of kids", "storylet_id": "238450"}], [{"original_text": "They came to learn about science and insects ", "album_id": "72157623112779761", "photo_flickr_id": "4286086326", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "47690", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they came to learn about science and insects", "storylet_id": "238451"}], [{"original_text": "As we taught they were listening intently ", "album_id": "72157623112779761", "photo_flickr_id": "4286086780", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "47690", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as we taught they were listening intently", "storylet_id": "238452"}], [{"original_text": "I thought they would never stop asking questions ", "album_id": "72157623112779761", "photo_flickr_id": "4286089190", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "47690", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i thought they would never stop asking questions", "storylet_id": "238453"}], [{"original_text": "Little Denny just sat there and took it all in !", "album_id": "72157623112779761", "photo_flickr_id": "4285350405", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "47690", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "little [male] just sat there and took it all in !", "storylet_id": "238454"}], [{"original_text": "The parent teacher conference started with a dramatic reading of Hamlet by one of the parents.", "album_id": "72157623112779761", "photo_flickr_id": "4286089190", "setting": "first-2-pick-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47691", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parent teacher conference started with a dramatic reading of hamlet by one of the parents .", "storylet_id": "238455"}], [{"original_text": "Mr. Wu played the part of Horatio to perfection.", "album_id": "72157623112779761", "photo_flickr_id": "4286089558", "setting": "first-2-pick-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47691", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mr. wu played the part of horatio to perfection .", "storylet_id": "238456"}], [{"original_text": "The children were a captive audience.", "album_id": "72157623112779761", "photo_flickr_id": "4285350041", "setting": "first-2-pick-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47691", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the children were a captive audience .", "storylet_id": "238457"}], [{"original_text": "I decided to read an excerpt from Dr. Seuss as well.", "album_id": "72157623112779761", "photo_flickr_id": "4285343655", "setting": "first-2-pick-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47691", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i decided to read an excerpt from dr. seuss as well .", "storylet_id": "238458"}], [{"original_text": "The children were so well behaved that I deigned to reward them with a little treat.", "album_id": "72157623112779761", "photo_flickr_id": "4285350837", "setting": "first-2-pick-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47691", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the children were so well behaved that i deigned to reward them with a little treat .", "storylet_id": "238459"}], [{"original_text": "We started today with story time.", "album_id": "72157623112779761", "photo_flickr_id": "4285344123", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "47692", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started today with story time .", "storylet_id": "238460"}], [{"original_text": "Our teacher showed us the pictures in the book while she read to us. ", "album_id": "72157623112779761", "photo_flickr_id": "4286086326", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "47692", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our teacher showed us the pictures in the book while she read to us .", "storylet_id": "238461"}], [{"original_text": "We love story time so I always look to get a good spot around the table and close to the book. ", "album_id": "72157623112779761", "photo_flickr_id": "4286086780", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "47692", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we love story time so i always look to get a good spot around the table and close to the book .", "storylet_id": "238462"}], [{"original_text": "After story time the assistant teacher started a new lesson with us. ", "album_id": "72157623112779761", "photo_flickr_id": "4286089190", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "47692", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after story time the assistant teacher started a new lesson with us .", "storylet_id": "238463"}], [{"original_text": "It wasn't quite as fun as story time. ", "album_id": "72157623112779761", "photo_flickr_id": "4285350405", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "47692", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was n't quite as fun as story time .", "storylet_id": "238464"}], [{"original_text": "The class gathered around their teacher during the experiment.", "album_id": "72157623112779761", "photo_flickr_id": "4285344123", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "47693", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the class gathered around their teacher during the experiment .", "storylet_id": "238465"}], [{"original_text": "The kids were excited to see how the experiment would turn out.", "album_id": "72157623112779761", "photo_flickr_id": "4286086326", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "47693", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids were excited to see how the experiment would turn out .", "storylet_id": "238466"}], [{"original_text": "The children waited patiently for the resukts.", "album_id": "72157623112779761", "photo_flickr_id": "4286086780", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "47693", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the children waited patiently for the resukts .", "storylet_id": "238467"}], [{"original_text": "There was a discussion afterwards about the experiment and what it meant.", "album_id": "72157623112779761", "photo_flickr_id": "4286089190", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "47693", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a discussion afterwards about the experiment and what it meant .", "storylet_id": "238468"}], [{"original_text": "The kids were exhausted, but very interested in the whole procedure. ", "album_id": "72157623112779761", "photo_flickr_id": "4285350405", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "47693", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids were exhausted , but very interested in the whole procedure .", "storylet_id": "238469"}], [{"original_text": "Teaching children about other cultures can be fun. ", "album_id": "72157623112779761", "photo_flickr_id": "4286089190", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47694", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "teaching children about other cultures can be fun .", "storylet_id": "238470"}], [{"original_text": "Mr Lee came to our 4th grade class and taught the children about growing up in China. ", "album_id": "72157623112779761", "photo_flickr_id": "4286089558", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47694", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mr [male] came to our 4th grade class and taught the children about growing up in location .", "storylet_id": "238471"}], [{"original_text": "Even though a lot of the kids there were Chinese they had been born in the US and really didn't know a lot about it. ", "album_id": "72157623112779761", "photo_flickr_id": "4285350041", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47694", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even though a lot of the kids there were chinese they had been born in the location and really did n't know a lot about it .", "storylet_id": "238472"}], [{"original_text": "Cynthia sat down and read some stories afterward, telling the children more about China. ", "album_id": "72157623112779761", "photo_flickr_id": "4285343655", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47694", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] sat down and read some stories afterward , telling the children more about location .", "storylet_id": "238473"}], [{"original_text": "And then everyone pigged out on the treats Mr. Lee brought the class. ", "album_id": "72157623112779761", "photo_flickr_id": "4285350837", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47694", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then everyone pigged out on the treats mr. [male] brought the class .", "storylet_id": "238474"}], [{"original_text": "Time for a parade to let everyone know that we have dreams.", "album_id": "72157632590003647", "photo_flickr_id": "8407733111", "setting": "first-2-pick-and-tell", "worker_id": "00DMKT3JPOTX4RT", "story_id": "47695", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "time for a parade to let everyone know that we have dreams .", "storylet_id": "238475"}], [{"original_text": "Even the sororities can come out to show they have dreams.", "album_id": "72157632590003647", "photo_flickr_id": "8408829206", "setting": "first-2-pick-and-tell", "worker_id": "00DMKT3JPOTX4RT", "story_id": "47695", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the sororities can come out to show they have dreams .", "storylet_id": "238476"}], [{"original_text": "I am apart of this dream having group and I am proud.", "album_id": "72157632590003647", "photo_flickr_id": "8407734053", "setting": "first-2-pick-and-tell", "worker_id": "00DMKT3JPOTX4RT", "story_id": "47695", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i am apart of this dream having group and i am proud .", "storylet_id": "238477"}], [{"original_text": "These 2 men are letting everyone know, \"We have dreams!\"", "album_id": "72157632590003647", "photo_flickr_id": "8408830086", "setting": "first-2-pick-and-tell", "worker_id": "00DMKT3JPOTX4RT", "story_id": "47695", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these 2 men are letting everyone know , `` we have dreams ! ''", "storylet_id": "238478"}], [{"original_text": "The whole neighborhood has finally joined in and could not be happier to let everyone know that we have dreams!", "album_id": "72157632590003647", "photo_flickr_id": "8408830180", "setting": "first-2-pick-and-tell", "worker_id": "00DMKT3JPOTX4RT", "story_id": "47695", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the whole neighborhood has finally joined in and could not be happier to let everyone know that we have dreams !", "storylet_id": "238479"}], [{"original_text": "There were many people at the rally yesterday.", "album_id": "72157632590003647", "photo_flickr_id": "8407733111", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47696", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many people at the rally yesterday .", "storylet_id": "238480"}], [{"original_text": "They were blocking traffic on the street.", "album_id": "72157632590003647", "photo_flickr_id": "8408829206", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47696", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were blocking traffic on the street .", "storylet_id": "238481"}], [{"original_text": "I had a great time there.", "album_id": "72157632590003647", "photo_flickr_id": "8407733477", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47696", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time there .", "storylet_id": "238482"}], [{"original_text": "I brought a sign with me.", "album_id": "72157632590003647", "photo_flickr_id": "8407733621", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47696", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i brought a sign with me .", "storylet_id": "238483"}], [{"original_text": "After the sun started to set I went home.", "album_id": "72157632590003647", "photo_flickr_id": "8408830086", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47696", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the sun started to set i went home .", "storylet_id": "238484"}], [{"original_text": "Black history month started with a parade at my local college.", "album_id": "72157632590003647", "photo_flickr_id": "8407733111", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47697", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "black history month started with a parade at my local college .", "storylet_id": "238485"}], [{"original_text": "The sororities came out in support.", "album_id": "72157632590003647", "photo_flickr_id": "8408829206", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47697", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sororities came out in support .", "storylet_id": "238486"}], [{"original_text": "The small parade went down the main street.", "album_id": "72157632590003647", "photo_flickr_id": "8407734053", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47697", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the small parade went down the main street .", "storylet_id": "238487"}], [{"original_text": "They headed towards the college campus, on their way to see the speaker.", "album_id": "72157632590003647", "photo_flickr_id": "8408830086", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47697", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they headed towards the college campus , on their way to see the speaker .", "storylet_id": "238488"}], [{"original_text": "They carried a sign with the words, \"I Have a Dream\", to remind everyone that they were still fighting for racial equality.", "album_id": "72157632590003647", "photo_flickr_id": "8408830180", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47697", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they carried a sign with the words , `` i have a dream '' , to remind everyone that they were still fighting for racial equality .", "storylet_id": "238489"}], [{"original_text": "The memorial March took place in the winter.", "album_id": "72157632590003647", "photo_flickr_id": "8407733111", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47698", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the memorial march took place in the winter .", "storylet_id": "238490"}], [{"original_text": "There was a great turn out of organizations.", "album_id": "72157632590003647", "photo_flickr_id": "8408829206", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47698", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a great turn out of organizations .", "storylet_id": "238491"}], [{"original_text": "A lot of groups showed up late.", "album_id": "72157632590003647", "photo_flickr_id": "8407734053", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47698", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lot of groups showed up late .", "storylet_id": "238492"}], [{"original_text": "They still made their presence known.", "album_id": "72157632590003647", "photo_flickr_id": "8408830086", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47698", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they still made their presence known .", "storylet_id": "238493"}], [{"original_text": "Dr. Kings memory still runs strong.", "album_id": "72157632590003647", "photo_flickr_id": "8408830180", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47698", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dr. kings memory still runs strong .", "storylet_id": "238494"}], [{"original_text": "There was a rally in town on Martin Luther King Day.", "album_id": "72157632590003647", "photo_flickr_id": "8407733111", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47699", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a rally in town on [male] [male] [male] day .", "storylet_id": "238495"}], [{"original_text": "Our sorority joined in. We have quite a few African American sisters.", "album_id": "72157632590003647", "photo_flickr_id": "8408829206", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47699", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our sorority joined in . we have quite a few african american sisters .", "storylet_id": "238496"}], [{"original_text": "It was a better turnout than last year.", "album_id": "72157632590003647", "photo_flickr_id": "8407734053", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47699", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a better turnout than last year .", "storylet_id": "238497"}], [{"original_text": "We stopped at town hall and waited for the mayor's speech.", "album_id": "72157632590003647", "photo_flickr_id": "8408830086", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47699", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped at town hall and waited for the mayor 's speech .", "storylet_id": "238498"}], [{"original_text": "It was a very positive experience and Martin Luther would've been proud.", "album_id": "72157632590003647", "photo_flickr_id": "8408830180", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "47699", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a very positive experience and [male] [male] would 've been proud .", "storylet_id": "238499"}], [{"original_text": "I went to visit the capitol the other day.", "album_id": "72157635062356920", "photo_flickr_id": "9505886810", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47700", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to visit the capitol the other day .", "storylet_id": "238500"}], [{"original_text": "I took my daughter with me.", "album_id": "72157635062356920", "photo_flickr_id": "9503087437", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47700", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i took my daughter with me .", "storylet_id": "238501"}], [{"original_text": "We spent a lot of time at the parks.", "album_id": "72157635062356920", "photo_flickr_id": "9505836976", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47700", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we spent a lot of time at the parks .", "storylet_id": "238502"}], [{"original_text": "We were sight seeing all day.", "album_id": "72157635062356920", "photo_flickr_id": "9502958341", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47700", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were sight seeing all day .", "storylet_id": "238503"}], [{"original_text": "We got really tired of walking everywhere.", "album_id": "72157635062356920", "photo_flickr_id": "9502956987", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47700", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we got really tired of walking everywhere .", "storylet_id": "238504"}], [{"original_text": "The whole family went on a trip to Washington D.C. to see the sights.", "album_id": "72157635062356920", "photo_flickr_id": "9502958341", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47701", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family went on a trip to location location to see the sights .", "storylet_id": "238505"}], [{"original_text": "My daughter and I sat on the steps to the memorial.", "album_id": "72157635062356920", "photo_flickr_id": "9505886810", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47701", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my daughter and i sat on the steps to the memorial .", "storylet_id": "238506"}], [{"original_text": "Grandpa might not have seemed very happy, but he was glad to be there.", "album_id": "72157635062356920", "photo_flickr_id": "9503088005", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47701", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandpa might not have seemed very happy , but he was glad to be there .", "storylet_id": "238507"}], [{"original_text": "The wife needed some time to rest her feet on the steps after a long day of walking.", "album_id": "72157635062356920", "photo_flickr_id": "9502958633", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47701", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wife needed some time to rest her feet on the steps after a long day of walking .", "storylet_id": "238508"}], [{"original_text": "On our way out we even saw some kind of protest going on.", "album_id": "72157635062356920", "photo_flickr_id": "9505699694", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47701", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on our way out we even saw some kind of protest going on .", "storylet_id": "238509"}], [{"original_text": "We had a great time on our trip to Washington D.C.", "album_id": "72157635062356920", "photo_flickr_id": "9505886810", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47702", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great time on our trip to location location .", "storylet_id": "238510"}], [{"original_text": "We did all the tourist sites and took the mandatory pictures.", "album_id": "72157635062356920", "photo_flickr_id": "9503087437", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47702", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we did all the tourist sites and took the mandatory pictures .", "storylet_id": "238511"}], [{"original_text": "Some people came prepared for a picnic.", "album_id": "72157635062356920", "photo_flickr_id": "9505836976", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47702", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people came prepared for a picnic .", "storylet_id": "238512"}], [{"original_text": "Others just relaxed beside the water.", "album_id": "72157635062356920", "photo_flickr_id": "9502958341", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47702", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others just relaxed beside the water .", "storylet_id": "238513"}], [{"original_text": "We chose a bench under a shade tree to sit down and discuss what fun we had that day.", "album_id": "72157635062356920", "photo_flickr_id": "9502956987", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47702", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we chose a bench under a shade tree to sit down and discuss what fun we had that day .", "storylet_id": "238514"}], [{"original_text": "A father and daughter took a picture together in front of a monument while on their family vacation.", "album_id": "72157635062356920", "photo_flickr_id": "9505886810", "setting": "last-3-pick-old-and-tell", "worker_id": "W8XVBS6PXCMBW2H", "story_id": "47703", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a father and daughter took a picture together in front of a monument while on their family vacation .", "storylet_id": "238515"}], [{"original_text": "The two of them continued to take pictures together in front of other historical sites.", "album_id": "72157635062356920", "photo_flickr_id": "9503087437", "setting": "last-3-pick-old-and-tell", "worker_id": "W8XVBS6PXCMBW2H", "story_id": "47703", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the two of them continued to take pictures together in front of other historical sites .", "storylet_id": "238516"}], [{"original_text": "After they had finished taking pictures, the family went to the park for a picnic and lunch.", "album_id": "72157635062356920", "photo_flickr_id": "9505836976", "setting": "last-3-pick-old-and-tell", "worker_id": "W8XVBS6PXCMBW2H", "story_id": "47703", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after they had finished taking pictures , the family went to the park for a picnic and lunch .", "storylet_id": "238517"}], [{"original_text": "Then they walked around the Washington monument area.", "album_id": "72157635062356920", "photo_flickr_id": "9502958341", "setting": "last-3-pick-old-and-tell", "worker_id": "W8XVBS6PXCMBW2H", "story_id": "47703", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they walked around the location monument area .", "storylet_id": "238518"}], [{"original_text": "Some of the family members were tired from the sight-seeing and so they rested on the park benches for a while.", "album_id": "72157635062356920", "photo_flickr_id": "9502956987", "setting": "last-3-pick-old-and-tell", "worker_id": "W8XVBS6PXCMBW2H", "story_id": "47703", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the family members were tired from the sight-seeing and so they rested on the park benches for a while .", "storylet_id": "238519"}], [{"original_text": "On our trip to D.C. Stopped off for some reflecting.", "album_id": "72157635062356920", "photo_flickr_id": "9502958341", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47704", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our trip to location . stopped off for some reflecting .", "storylet_id": "238520"}], [{"original_text": "Got to see the Lincoln Memorial.", "album_id": "72157635062356920", "photo_flickr_id": "9505886810", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47704", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "got to see the organization organization .", "storylet_id": "238521"}], [{"original_text": "Granddad was ready to march with his Union.", "album_id": "72157635062356920", "photo_flickr_id": "9503088005", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47704", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "granddad was ready to march with his organization .", "storylet_id": "238522"}], [{"original_text": "Mom thoroughly enjoyed the reflecting pool.", "album_id": "72157635062356920", "photo_flickr_id": "9502958633", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47704", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom thoroughly enjoyed the reflecting pool .", "storylet_id": "238523"}], [{"original_text": "The march went off without a hitch. We all had a great time and got our message across.", "album_id": "72157635062356920", "photo_flickr_id": "9505699694", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47704", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the march went off without a hitch . we all had a great time and got our message across .", "storylet_id": "238524"}], [{"original_text": "Dave insisted on going to the museum this month.", "album_id": "72157635093336633", "photo_flickr_id": "9524831628", "setting": "first-2-pick-and-tell", "worker_id": "N82YU8TZ4RL1U0K", "story_id": "47705", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] insisted on going to the museum this month .", "storylet_id": "238525"}], [{"original_text": "The reason was because it was having a photo exhibit of the civil rights movement.", "album_id": "72157635093336633", "photo_flickr_id": "9522210997", "setting": "first-2-pick-and-tell", "worker_id": "N82YU8TZ4RL1U0K", "story_id": "47705", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the reason was because it was having a photo exhibit of the civil rights movement .", "storylet_id": "238526"}], [{"original_text": "He took his time examining each photo.", "album_id": "72157635093336633", "photo_flickr_id": "9522283655", "setting": "first-2-pick-and-tell", "worker_id": "N82YU8TZ4RL1U0K", "story_id": "47705", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he took his time examining each photo .", "storylet_id": "238527"}], [{"original_text": "All of them were pristine in black and white themes.", "album_id": "72157635093336633", "photo_flickr_id": "9525161014", "setting": "first-2-pick-and-tell", "worker_id": "N82YU8TZ4RL1U0K", "story_id": "47705", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of them were pristine in black and white themes .", "storylet_id": "238528"}], [{"original_text": "Before he left he made sure to check the upcoming programs so he would know when to come back.", "album_id": "72157635093336633", "photo_flickr_id": "9525603920", "setting": "first-2-pick-and-tell", "worker_id": "N82YU8TZ4RL1U0K", "story_id": "47705", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before he left he made sure to check the upcoming programs so he would know when to come back .", "storylet_id": "238529"}], [{"original_text": "The museum was almost empty when I arrived. ", "album_id": "72157635093336633", "photo_flickr_id": "9524831628", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47706", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the museum was almost empty when i arrived .", "storylet_id": "238530"}], [{"original_text": "I approached the photo exhibit of the Historical March.", "album_id": "72157635093336633", "photo_flickr_id": "9524984332", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47706", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i approached the photo exhibit of the historical march .", "storylet_id": "238531"}], [{"original_text": "The sign had a lot if information that I did not know.", "album_id": "72157635093336633", "photo_flickr_id": "9522210997", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47706", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sign had a lot if information that i did not know .", "storylet_id": "238532"}], [{"original_text": "I was in awe of what these people had done.", "album_id": "72157635093336633", "photo_flickr_id": "9522283655", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47706", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was in awe of what these people had done .", "storylet_id": "238533"}], [{"original_text": "The exhibit filled many rooms. I want to go back again.", "album_id": "72157635093336633", "photo_flickr_id": "9522297429", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47706", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the exhibit filled many rooms . i want to go back again .", "storylet_id": "238534"}], [{"original_text": "The gallery is having some photos that will be seen. This person in a motor scotter has already looked at them.", "album_id": "72157635093336633", "photo_flickr_id": "9524831628", "setting": "last-3-pick-old-and-tell", "worker_id": "3V304BAXBSHWMYZ", "story_id": "47707", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the gallery is having some photos that will be seen . this person in a motor scotter has already looked at them .", "storylet_id": "238535"}], [{"original_text": "The photo exhibit sign displays what is to come.", "album_id": "72157635093336633", "photo_flickr_id": "9522210997", "setting": "last-3-pick-old-and-tell", "worker_id": "3V304BAXBSHWMYZ", "story_id": "47707", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the photo exhibit sign displays what is to come .", "storylet_id": "238536"}], [{"original_text": "A man is looking in depth at some of the amazing photos.", "album_id": "72157635093336633", "photo_flickr_id": "9522283655", "setting": "last-3-pick-old-and-tell", "worker_id": "3V304BAXBSHWMYZ", "story_id": "47707", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man is looking in depth at some of the amazing photos .", "storylet_id": "238537"}], [{"original_text": "One of the photos displays the movement from the 60's for all African Americans.", "album_id": "72157635093336633", "photo_flickr_id": "9525161014", "setting": "last-3-pick-old-and-tell", "worker_id": "3V304BAXBSHWMYZ", "story_id": "47707", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the photos displays the movement from the 60 's for all african americans .", "storylet_id": "238538"}], [{"original_text": "More programs are to come and here are some of them on the board.", "album_id": "72157635093336633", "photo_flickr_id": "9525603920", "setting": "last-3-pick-old-and-tell", "worker_id": "3V304BAXBSHWMYZ", "story_id": "47707", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "more programs are to come and here are some of them on the board .", "storylet_id": "238539"}], [{"original_text": "I visited a museum today. They had an exhibit on civil rights.", "album_id": "72157635093336633", "photo_flickr_id": "9524831628", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "47708", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i visited a museum today . they had an exhibit on civil rights .", "storylet_id": "238540"}], [{"original_text": "The sign said it was from The March on Washington D.C.", "album_id": "72157635093336633", "photo_flickr_id": "9522210997", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "47708", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sign said it was from the march on location location .", "storylet_id": "238541"}], [{"original_text": "A man was standing in my way, so I waited till he was looking.", "album_id": "72157635093336633", "photo_flickr_id": "9522283655", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "47708", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man was standing in my way , so i waited till he was looking .", "storylet_id": "238542"}], [{"original_text": "Once he moved, I walked over to see all of the historic black and white photographs, depicting civil rights marchers. It was quite interesting!", "album_id": "72157635093336633", "photo_flickr_id": "9525161014", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "47708", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once he moved , i walked over to see all of the historic black and white photographs , depicting civil rights marchers . it was quite interesting !", "storylet_id": "238543"}], [{"original_text": "There was a sign that mentioned there being more to come at a future date.", "album_id": "72157635093336633", "photo_flickr_id": "9525603920", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "47708", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a sign that mentioned there being more to come at a future date .", "storylet_id": "238544"}], [{"original_text": "There were many photos ", "album_id": "72157635093336633", "photo_flickr_id": "9524831628", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47709", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many photos", "storylet_id": "238545"}], [{"original_text": "at the exhibit.", "album_id": "72157635093336633", "photo_flickr_id": "9522210997", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47709", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at the exhibit .", "storylet_id": "238546"}], [{"original_text": "The lady was looking at them", "album_id": "72157635093336633", "photo_flickr_id": "9522283655", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47709", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lady was looking at them", "storylet_id": "238547"}], [{"original_text": "and saw many people in them", "album_id": "72157635093336633", "photo_flickr_id": "9525161014", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47709", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and saw many people in them", "storylet_id": "238548"}], [{"original_text": "before looking at the upcoming program.", "album_id": "72157635093336633", "photo_flickr_id": "9525603920", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47709", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before looking at the upcoming program .", "storylet_id": "238549"}], [{"original_text": "The group of people approached the monument. ", "album_id": "72157639865278703", "photo_flickr_id": "11996835583", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "47710", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group of people approached the monument .", "storylet_id": "238550"}], [{"original_text": "They took time to really study it.", "album_id": "72157639865278703", "photo_flickr_id": "11996853103", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "47710", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took time to really study it .", "storylet_id": "238551"}], [{"original_text": "They thought about its implications and discussed them with each other.", "album_id": "72157639865278703", "photo_flickr_id": "11996847493", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "47710", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they thought about its implications and discussed them with each other .", "storylet_id": "238552"}], [{"original_text": "They enjoyed the intellectual conversation.", "album_id": "72157639865278703", "photo_flickr_id": "11996849263", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "47710", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they enjoyed the intellectual conversation .", "storylet_id": "238553"}], [{"original_text": "After about an hour, they decided to go back the way they came, leaving the monument behind them but fresh in their memories.", "album_id": "72157639865278703", "photo_flickr_id": "11997355236", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "47710", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after about an hour , they decided to go back the way they came , leaving the monument behind them but fresh in their memories .", "storylet_id": "238554"}], [{"original_text": "I went on vacation last year.", "album_id": "72157639865278703", "photo_flickr_id": "11996835583", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47711", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on vacation last year .", "storylet_id": "238555"}], [{"original_text": "I saw a really old statue.", "album_id": "72157639865278703", "photo_flickr_id": "11996902904", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47711", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw a really old statue .", "storylet_id": "238556"}], [{"original_text": "It was magnificent.", "album_id": "72157639865278703", "photo_flickr_id": "11997355236", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47711", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was magnificent .", "storylet_id": "238557"}], [{"original_text": "I bought some flowers for it.", "album_id": "72157639865278703", "photo_flickr_id": "11996849263", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47711", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i bought some flowers for it .", "storylet_id": "238558"}], [{"original_text": "I left them there.", "album_id": "72157639865278703", "photo_flickr_id": "11996561505", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47711", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i left them there .", "storylet_id": "238559"}], [{"original_text": "The statue was amazing. ", "album_id": "72157639865278703", "photo_flickr_id": "11996835583", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47712", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the statue was amazing .", "storylet_id": "238560"}], [{"original_text": "The tourist were excited to finally be able to see it. ", "album_id": "72157639865278703", "photo_flickr_id": "11996853103", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47712", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tourist were excited to finally be able to see it .", "storylet_id": "238561"}], [{"original_text": "The structure was built decades ago. ", "album_id": "72157639865278703", "photo_flickr_id": "11996847493", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47712", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the structure was built decades ago .", "storylet_id": "238562"}], [{"original_text": "They took a picture in front of the statue together. ", "album_id": "72157639865278703", "photo_flickr_id": "11996849263", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47712", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they took a picture in front of the statue together .", "storylet_id": "238563"}], [{"original_text": "The landscape complimented the statue's appearance. ", "album_id": "72157639865278703", "photo_flickr_id": "11997355236", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "47712", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the landscape complimented the statue 's appearance .", "storylet_id": "238564"}], [{"original_text": "The statue was very monumental.", "album_id": "72157639865278703", "photo_flickr_id": "11996835583", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47713", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the statue was very monumental .", "storylet_id": "238565"}], [{"original_text": "We were the only ones there but we did noticed that someone had placed a wreath there before us.", "album_id": "72157639865278703", "photo_flickr_id": "11996853103", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47713", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were the only ones there but we did noticed that someone had placed a wreath there before us .", "storylet_id": "238566"}], [{"original_text": "My brothers decided to stay near the wreath while I walked around.", "album_id": "72157639865278703", "photo_flickr_id": "11996847493", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47713", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brothers decided to stay near the wreath while i walked around .", "storylet_id": "238567"}], [{"original_text": "We all met back there 10 minutes later but no one showed up.", "album_id": "72157639865278703", "photo_flickr_id": "11996849263", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47713", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all met back there 10 minutes later but no one showed up .", "storylet_id": "238568"}], [{"original_text": "We decided to leave after 30 minutes.", "album_id": "72157639865278703", "photo_flickr_id": "11997355236", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "47713", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to leave after 30 minutes .", "storylet_id": "238569"}], [{"original_text": "This monument is huge.", "album_id": "72157639865278703", "photo_flickr_id": "11996835583", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47714", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this monument is huge .", "storylet_id": "238570"}], [{"original_text": "We look in amazement.", "album_id": "72157639865278703", "photo_flickr_id": "11996853103", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47714", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we look in amazement .", "storylet_id": "238571"}], [{"original_text": "We talked about the statue in great depth.", "album_id": "72157639865278703", "photo_flickr_id": "11996847493", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47714", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we talked about the statue in great depth .", "storylet_id": "238572"}], [{"original_text": "We are so small compared to the monument.", "album_id": "72157639865278703", "photo_flickr_id": "11996849263", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47714", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we are so small compared to the monument .", "storylet_id": "238573"}], [{"original_text": "The water was so clear but yet looked blue.", "album_id": "72157639865278703", "photo_flickr_id": "11997355236", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47714", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the water was so clear but yet looked blue .", "storylet_id": "238574"}], [{"original_text": "They gathered early to start getting work done for the big game.", "album_id": "72157640925549645", "photo_flickr_id": "12501990253", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "47715", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they gathered early to start getting work done for the big game .", "storylet_id": "238575"}], [{"original_text": "The owner even showed up to check in on the progress.", "album_id": "72157640925549645", "photo_flickr_id": "12501990773", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "47715", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the owner even showed up to check in on the progress .", "storylet_id": "238576"}], [{"original_text": "They brought in boxes of all the supplies they would need.", "album_id": "72157640925549645", "photo_flickr_id": "12501991503", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "47715", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they brought in boxes of all the supplies they would need .", "storylet_id": "238577"}], [{"original_text": "The event coordinator was pretty impressed with the workers.", "album_id": "72157640925549645", "photo_flickr_id": "12502340124", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "47715", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the event coordinator was pretty impressed with the workers .", "storylet_id": "238578"}], [{"original_text": "They ended the day with a meeting to discuss where to go from here.", "album_id": "72157640925549645", "photo_flickr_id": "12501993283", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "47715", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ended the day with a meeting to discuss where to go from here .", "storylet_id": "238579"}], [{"original_text": "The participants of the leadership conference were encouraged to bring non-perishable food for donation.", "album_id": "72157640925549645", "photo_flickr_id": "12501990533", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47716", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the participants of the leadership conference were encouraged to bring non-perishable food for donation .", "storylet_id": "238580"}], [{"original_text": "Some of the donation items before everyone arrived.", "album_id": "72157640925549645", "photo_flickr_id": "12501991053", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47716", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the donation items before everyone arrived .", "storylet_id": "238581"}], [{"original_text": "One of the speakers talks with an attendee during a break.", "album_id": "72157640925549645", "photo_flickr_id": "12501860545", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47716", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the speakers talks with an attendee during a break .", "storylet_id": "238582"}], [{"original_text": "Lunch is served at the halfway point of the day.", "album_id": "72157640925549645", "photo_flickr_id": "12502340544", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47716", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "lunch is served at the halfway point of the day .", "storylet_id": "238583"}], [{"original_text": "A team building exercise after the speaking was all done.", "album_id": "72157640925549645", "photo_flickr_id": "12501992673", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47716", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a team building exercise after the speaking was all done .", "storylet_id": "238584"}], [{"original_text": "The job corp had many young people working for them.", "album_id": "72157640925549645", "photo_flickr_id": "12501990533", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "47717", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the job corp had many young people working for them .", "storylet_id": "238585"}], [{"original_text": "They collected food.", "album_id": "72157640925549645", "photo_flickr_id": "12501991053", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "47717", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they collected food .", "storylet_id": "238586"}], [{"original_text": "The spoke to sponsors,", "album_id": "72157640925549645", "photo_flickr_id": "12501860545", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "47717", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the spoke to sponsors ,", "storylet_id": "238587"}], [{"original_text": "and they did a trial run before the actual food giveaway to get to know each other.", "album_id": "72157640925549645", "photo_flickr_id": "12502340544", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "47717", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and they did a trial run before the actual food giveaway to get to know each other .", "storylet_id": "238588"}], [{"original_text": "Overall, the meeting was a success and they were ready to volunteer for real.", "album_id": "72157640925549645", "photo_flickr_id": "12501992673", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "47717", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall , the meeting was a success and they were ready to volunteer for real .", "storylet_id": "238589"}], [{"original_text": "The neighborhood trash pickup day started without a hitch.", "album_id": "72157640925549645", "photo_flickr_id": "12501990533", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "47718", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the neighborhood trash pickup day started without a hitch .", "storylet_id": "238590"}], [{"original_text": "Everyone worked their hardest to do what they could.", "album_id": "72157640925549645", "photo_flickr_id": "12501991053", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "47718", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone worked their hardest to do what they could .", "storylet_id": "238591"}], [{"original_text": "Even the mayor came out the show us his support.", "album_id": "72157640925549645", "photo_flickr_id": "12501860545", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "47718", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the mayor came out the show us his support .", "storylet_id": "238592"}], [{"original_text": "It was rough out in that cold, but we managed to do our best.", "album_id": "72157640925549645", "photo_flickr_id": "12502340544", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "47718", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was rough out in that cold , but we managed to do our best .", "storylet_id": "238593"}], [{"original_text": "The after party was also tons of fun.", "album_id": "72157640925549645", "photo_flickr_id": "12501992673", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "47718", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the after party was also tons of fun .", "storylet_id": "238594"}], [{"original_text": "The group arrived for a volunteer conference.", "album_id": "72157640925549645", "photo_flickr_id": "12501990253", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47719", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group arrived for a volunteer conference .", "storylet_id": "238595"}], [{"original_text": "Some of the people took time to meet with the organizer.", "album_id": "72157640925549645", "photo_flickr_id": "12501990773", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47719", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the people took time to meet with the organizer .", "storylet_id": "238596"}], [{"original_text": "They prepared the conference to be able to handle a large crowd.", "album_id": "72157640925549645", "photo_flickr_id": "12501991503", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47719", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they prepared the conference to be able to handle a large crowd .", "storylet_id": "238597"}], [{"original_text": "Some helped direct the people where to go.", "album_id": "72157640925549645", "photo_flickr_id": "12502340124", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47719", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some helped direct the people where to go .", "storylet_id": "238598"}], [{"original_text": "When everyone arrived, they broke into groups for an exercise.", "album_id": "72157640925549645", "photo_flickr_id": "12501993283", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47719", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when everyone arrived , they broke into groups for an exercise .", "storylet_id": "238599"}], [{"original_text": "The event was held in the meeting chambers at the Department of Agriculture building.", "album_id": "72157649780970810", "photo_flickr_id": "16230702051", "setting": "first-2-pick-and-tell", "worker_id": "HA074U4AKVI4UB9", "story_id": "47720", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the event was held in the meeting chambers at the organization organization organization building .", "storylet_id": "238600"}], [{"original_text": "It began with the color guard, the pledge of allegiance and the invocation.", "album_id": "72157649780970810", "photo_flickr_id": "15610154464", "setting": "first-2-pick-and-tell", "worker_id": "HA074U4AKVI4UB9", "story_id": "47720", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it began with the color guard , the pledge of allegiance and the invocation .", "storylet_id": "238601"}], [{"original_text": "Opening remarks were made by the head of the Alpha Phi Alpha Fraternity.", "album_id": "72157649780970810", "photo_flickr_id": "16045049758", "setting": "first-2-pick-and-tell", "worker_id": "HA074U4AKVI4UB9", "story_id": "47720", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "opening remarks were made by the head of the organization organization organization organization .", "storylet_id": "238602"}], [{"original_text": "An expert panel was on hand and each took turns addressing the audiences questions.", "album_id": "72157649780970810", "photo_flickr_id": "16046456669", "setting": "first-2-pick-and-tell", "worker_id": "HA074U4AKVI4UB9", "story_id": "47720", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an expert panel was on hand and each took turns addressing the audiences questions .", "storylet_id": "238603"}], [{"original_text": "It was standing room only and everyone enjoyed the presentation.", "album_id": "72157649780970810", "photo_flickr_id": "16206659906", "setting": "first-2-pick-and-tell", "worker_id": "HA074U4AKVI4UB9", "story_id": "47720", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was standing room only and everyone enjoyed the presentation .", "storylet_id": "238604"}], [{"original_text": "A public debate was starting, and it seemed to be starting off well.", "album_id": "72157649780970810", "photo_flickr_id": "15610160074", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47721", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a public debate was starting , and it seemed to be starting off well .", "storylet_id": "238605"}], [{"original_text": "Each side had their chance to give an introduction to their argument.", "album_id": "72157649780970810", "photo_flickr_id": "15612714863", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47721", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each side had their chance to give an introduction to their argument .", "storylet_id": "238606"}], [{"original_text": "The opposing side choose their words carefully.", "album_id": "72157649780970810", "photo_flickr_id": "15610170814", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47721", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the opposing side choose their words carefully .", "storylet_id": "238607"}], [{"original_text": "While members of the guard stood still holding flags, and weapons.", "album_id": "72157649780970810", "photo_flickr_id": "15610154464", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47721", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while members of the guard stood still holding flags , and weapons .", "storylet_id": "238608"}], [{"original_text": "The room was packed with people eager to hear what the two sides had to say.", "album_id": "72157649780970810", "photo_flickr_id": "16206659906", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47721", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the room was packed with people eager to hear what the two sides had to say .", "storylet_id": "238609"}], [{"original_text": "This event is for fraternities to help develop leaders and great men.", "album_id": "72157649780970810", "photo_flickr_id": "16230702051", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47722", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this event is for fraternities to help develop leaders and great men .", "storylet_id": "238610"}], [{"original_text": "The uniformed men have come together in support for this cause.", "album_id": "72157649780970810", "photo_flickr_id": "15610154464", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47722", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the uniformed men have come together in support for this cause .", "storylet_id": "238611"}], [{"original_text": "The speaker is one of the main advocates for the event.", "album_id": "72157649780970810", "photo_flickr_id": "16045049758", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47722", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the speaker is one of the main advocates for the event .", "storylet_id": "238612"}], [{"original_text": "The people on the stage ate discussing important things.", "album_id": "72157649780970810", "photo_flickr_id": "16046456669", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47722", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people on the stage ate discussing important things .", "storylet_id": "238613"}], [{"original_text": "Quite a number of people showed up to show their support for the event.", "album_id": "72157649780970810", "photo_flickr_id": "16206659906", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47722", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "quite a number of people showed up to show their support for the event .", "storylet_id": "238614"}], [{"original_text": "Last week, we had a panel of speakers come to our school.", "album_id": "72157649780970810", "photo_flickr_id": "16230702051", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "47723", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week , we had a panel of speakers come to our school .", "storylet_id": "238615"}], [{"original_text": "It was a very important affair.", "album_id": "72157649780970810", "photo_flickr_id": "15610154464", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "47723", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a very important affair .", "storylet_id": "238616"}], [{"original_text": "The speaker talked about Human Rights.", "album_id": "72157649780970810", "photo_flickr_id": "16045049758", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "47723", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the speaker talked about human rights .", "storylet_id": "238617"}], [{"original_text": "There even was a panel discussion.", "album_id": "72157649780970810", "photo_flickr_id": "16046456669", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "47723", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there even was a panel discussion .", "storylet_id": "238618"}], [{"original_text": "Everyone in the audience listed with awe at this wonderful gathering.", "album_id": "72157649780970810", "photo_flickr_id": "16206659906", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "47723", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone in the audience listed with awe at this wonderful gathering .", "storylet_id": "238619"}], [{"original_text": "This is a panel discussion.", "album_id": "72157649780970810", "photo_flickr_id": "15610160074", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47724", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a panel discussion .", "storylet_id": "238620"}], [{"original_text": "This is a picture of a man making a speech.", "album_id": "72157649780970810", "photo_flickr_id": "15612714863", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47724", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a man making a speech .", "storylet_id": "238621"}], [{"original_text": "This is a woman making a speech.", "album_id": "72157649780970810", "photo_flickr_id": "15610170814", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47724", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a woman making a speech .", "storylet_id": "238622"}], [{"original_text": "This is a group of military personnel. ", "album_id": "72157649780970810", "photo_flickr_id": "15610154464", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47724", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a group of military personnel .", "storylet_id": "238623"}], [{"original_text": "This is a picture of the audience.", "album_id": "72157649780970810", "photo_flickr_id": "16206659906", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47724", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of the audience .", "storylet_id": "238624"}], [{"original_text": "Today was the day.", "album_id": "72157650396531315", "photo_flickr_id": "16323812651", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47725", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day .", "storylet_id": "238625"}], [{"original_text": "Everyone was there.", "album_id": "72157650396531315", "photo_flickr_id": "16324760412", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47725", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was there .", "storylet_id": "238626"}], [{"original_text": "Including the cops.", "album_id": "72157650396531315", "photo_flickr_id": "16139419479", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47725", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "including the cops .", "storylet_id": "238627"}], [{"original_text": "But that didn't stop us.", "album_id": "72157650396531315", "photo_flickr_id": "16138272760", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47725", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but that did n't stop us .", "storylet_id": "238628"}], [{"original_text": "Our voices would be heard.", "album_id": "72157650396531315", "photo_flickr_id": "16138245078", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47725", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our voices would be heard .", "storylet_id": "238629"}], [{"original_text": "Traffic was heavy. ", "album_id": "72157650396531315", "photo_flickr_id": "16323812651", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47726", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "traffic was heavy .", "storylet_id": "238630"}], [{"original_text": "The stop light had stopped working. ", "album_id": "72157650396531315", "photo_flickr_id": "16324760412", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47726", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the stop light had stopped working .", "storylet_id": "238631"}], [{"original_text": "Someone called the police. ", "album_id": "72157650396531315", "photo_flickr_id": "16139419479", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47726", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "someone called the police .", "storylet_id": "238632"}], [{"original_text": "The policeman got out to direct the traffic by hand. ", "album_id": "72157650396531315", "photo_flickr_id": "15705715403", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47726", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the policeman got out to direct the traffic by hand .", "storylet_id": "238633"}], [{"original_text": "One driver paid no attention and caused an accident. ", "album_id": "72157650396531315", "photo_flickr_id": "16325627765", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47726", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one driver paid no attention and caused an accident .", "storylet_id": "238634"}], [{"original_text": "The last bit of traffic filtered through the streets.", "album_id": "72157650396531315", "photo_flickr_id": "16323812651", "setting": "last-3-pick-old-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "47727", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the last bit of traffic filtered through the streets .", "storylet_id": "238635"}], [{"original_text": "In just a few minutes, the road would be blocked off to make way for the protesters.", "album_id": "72157650396531315", "photo_flickr_id": "16324760412", "setting": "last-3-pick-old-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "47727", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in just a few minutes , the road would be blocked off to make way for the protesters .", "storylet_id": "238636"}], [{"original_text": "The police, enforcing the right to free speech, used their SUVs to block traffic so the protesters could take to the streets.", "album_id": "72157650396531315", "photo_flickr_id": "16139419479", "setting": "last-3-pick-old-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "47727", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the police , enforcing the right to free speech , used their suvs to block traffic so the protesters could take to the streets .", "storylet_id": "238637"}], [{"original_text": "\"Down with the banks!\" they chanted.", "album_id": "72157650396531315", "photo_flickr_id": "16138272760", "setting": "last-3-pick-old-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "47727", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "`` down with the banks ! '' they chanted .", "storylet_id": "238638"}], [{"original_text": "Though one man used the opportunity to tell a different story.", "album_id": "72157650396531315", "photo_flickr_id": "16138245078", "setting": "last-3-pick-old-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "47727", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "though one man used the opportunity to tell a different story .", "storylet_id": "238639"}], [{"original_text": "Today there was a protest.", "album_id": "72157650396531315", "photo_flickr_id": "16323812651", "setting": "last-3-pick-old-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "47728", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today there was a protest .", "storylet_id": "238640"}], [{"original_text": "Lot's of people came.", "album_id": "72157650396531315", "photo_flickr_id": "16324760412", "setting": "last-3-pick-old-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "47728", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lot 's of people came .", "storylet_id": "238641"}], [{"original_text": "There was police there as well.", "album_id": "72157650396531315", "photo_flickr_id": "16139419479", "setting": "last-3-pick-old-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "47728", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was police there as well .", "storylet_id": "238642"}], [{"original_text": "People stood outside with signs.", "album_id": "72157650396531315", "photo_flickr_id": "16138272760", "setting": "last-3-pick-old-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "47728", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people stood outside with signs .", "storylet_id": "238643"}], [{"original_text": "It was a chaotic day.", "album_id": "72157650396531315", "photo_flickr_id": "16138245078", "setting": "last-3-pick-old-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "47728", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a chaotic day .", "storylet_id": "238644"}], [{"original_text": "There were many cars on the road", "album_id": "72157650396531315", "photo_flickr_id": "16323812651", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47729", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many cars on the road", "storylet_id": "238645"}], [{"original_text": "and they were all bunched up", "album_id": "72157650396531315", "photo_flickr_id": "16324760412", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47729", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and they were all bunched up", "storylet_id": "238646"}], [{"original_text": "because the police came", "album_id": "72157650396531315", "photo_flickr_id": "16139419479", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47729", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "because the police came", "storylet_id": "238647"}], [{"original_text": "in their van ", "album_id": "72157650396531315", "photo_flickr_id": "15705715403", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47729", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in their van", "storylet_id": "238648"}], [{"original_text": "while the people watched what was going on.", "album_id": "72157650396531315", "photo_flickr_id": "16325627765", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47729", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while the people watched what was going on .", "storylet_id": "238649"}], [{"original_text": "A lot of people came out to hear the faith testimonies on Sunday.", "album_id": "72157650366560532", "photo_flickr_id": "16319689465", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47730", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a lot of people came out to hear the faith testimonies on sunday .", "storylet_id": "238650"}], [{"original_text": "The reverend gave a wonderful sermon about Faith, Hope, and Love.", "album_id": "72157650366560532", "photo_flickr_id": "16319100992", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47730", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the reverend gave a wonderful sermon about [female] , [female] , and love .", "storylet_id": "238651"}], [{"original_text": "Everyone wanted to say Good Morning.", "album_id": "72157650366560532", "photo_flickr_id": "16318116881", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47730", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone wanted to say good morning .", "storylet_id": "238652"}], [{"original_text": "The reverend was happy to oblige.", "album_id": "72157650366560532", "photo_flickr_id": "16319936785", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47730", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the reverend was happy to oblige .", "storylet_id": "238653"}], [{"original_text": "He was very obliging when the students wanted their picture taken with him.", "album_id": "72157650366560532", "photo_flickr_id": "16134084747", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "47730", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was very obliging when the students wanted their picture taken with him .", "storylet_id": "238654"}], [{"original_text": "Students gathered to listen.", "album_id": "72157650366560532", "photo_flickr_id": "16318422551", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47731", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "students gathered to listen .", "storylet_id": "238655"}], [{"original_text": "The speech was interesting.", "album_id": "72157650366560532", "photo_flickr_id": "16318775982", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47731", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the speech was interesting .", "storylet_id": "238656"}], [{"original_text": "The First Lady spoke.", "album_id": "72157650366560532", "photo_flickr_id": "16318781062", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47731", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first lady spoke .", "storylet_id": "238657"}], [{"original_text": "They paid attention to what was said.", "album_id": "72157650366560532", "photo_flickr_id": "16132273150", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47731", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they paid attention to what was said .", "storylet_id": "238658"}], [{"original_text": "It was a full house.", "album_id": "72157650366560532", "photo_flickr_id": "16319347132", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "47731", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a full house .", "storylet_id": "238659"}], [{"original_text": "Everybody showed up to the town meeting tonight.", "album_id": "72157650366560532", "photo_flickr_id": "16318422551", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "47732", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everybody showed up to the town meeting tonight .", "storylet_id": "238660"}], [{"original_text": "People spoke about their opposition to pet control.", "album_id": "72157650366560532", "photo_flickr_id": "16318775982", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "47732", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people spoke about their opposition to pet control .", "storylet_id": "238661"}], [{"original_text": "Others spoke about how they were in favor of it.", "album_id": "72157650366560532", "photo_flickr_id": "16318781062", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "47732", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others spoke about how they were in favor of it .", "storylet_id": "238662"}], [{"original_text": "Everyone was paying the utmost attention.", "album_id": "72157650366560532", "photo_flickr_id": "16132273150", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "47732", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was paying the utmost attention .", "storylet_id": "238663"}], [{"original_text": "The crowd was split and will go to a vote next week.", "album_id": "72157650366560532", "photo_flickr_id": "16319347132", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "47732", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the crowd was split and will go to a vote next week .", "storylet_id": "238664"}], [{"original_text": "There was an equal rights conference at the nearby court house earlier this afternoon.", "album_id": "72157650366560532", "photo_flickr_id": "16319689465", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "47733", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an equal rights conference at the nearby court house earlier this afternoon .", "storylet_id": "238665"}], [{"original_text": "Some of the city's top officials spoke and gave their opinions and thoughts on the subject.", "album_id": "72157650366560532", "photo_flickr_id": "16319100992", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "47733", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the city 's top officials spoke and gave their opinions and thoughts on the subject .", "storylet_id": "238666"}], [{"original_text": "There was also a meet and greet. It was nice to actually talk to them instead of always seeing them on the local news.", "album_id": "72157650366560532", "photo_flickr_id": "16318116881", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "47733", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was also a meet and greet . it was nice to actually talk to them instead of always seeing them on the local news .", "storylet_id": "238667"}], [{"original_text": "I'm glad I was able to make it out. It was a very interesting and informative time.", "album_id": "72157650366560532", "photo_flickr_id": "16319936785", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "47733", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'm glad i was able to make it out . it was a very interesting and informative time .", "storylet_id": "238668"}], [{"original_text": "Equal rights is vital to our freedom as citizens and I'm glad a lot of our local leaders are on board in pushing for it.", "album_id": "72157650366560532", "photo_flickr_id": "16134084747", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "47733", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "equal rights is vital to our freedom as citizens and i 'm glad a lot of our local leaders are on board in pushing for it .", "storylet_id": "238669"}], [{"original_text": "The students gathered to listen to the presenters give lectures.", "album_id": "72157650366560532", "photo_flickr_id": "16318422551", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47734", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the students gathered to listen to the presenters give lectures .", "storylet_id": "238670"}], [{"original_text": "There was several presenters on hand to speak.", "album_id": "72157650366560532", "photo_flickr_id": "16318775982", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47734", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was several presenters on hand to speak .", "storylet_id": "238671"}], [{"original_text": "They spoke to the crowd with new ideas.", "album_id": "72157650366560532", "photo_flickr_id": "16318781062", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47734", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they spoke to the crowd with new ideas .", "storylet_id": "238672"}], [{"original_text": "The students listened with interest.", "album_id": "72157650366560532", "photo_flickr_id": "16132273150", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47734", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the students listened with interest .", "storylet_id": "238673"}], [{"original_text": "Some of the students took notes as the presenters spoke.", "album_id": "72157650366560532", "photo_flickr_id": "16319347132", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47734", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the students took notes as the presenters spoke .", "storylet_id": "238674"}], [{"original_text": "Some people watched our march from their work place.", "album_id": "72157650387632771", "photo_flickr_id": "16140010998", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47735", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some people watched our march from their work place .", "storylet_id": "238675"}], [{"original_text": "People in the restaurant showed their support.", "album_id": "72157650387632771", "photo_flickr_id": "16141365699", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47735", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people in the restaurant showed their support .", "storylet_id": "238676"}], [{"original_text": "Even the children participated.", "album_id": "72157650387632771", "photo_flickr_id": "16139972608", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47735", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the children participated .", "storylet_id": "238677"}], [{"original_text": "We crossed the last street on our route.", "album_id": "72157650387632771", "photo_flickr_id": "16140010448", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47735", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we crossed the last street on our route .", "storylet_id": "238678"}], [{"original_text": "A lone bicyclist closed in the ranks at the end.", "album_id": "72157650387632771", "photo_flickr_id": "16327542235", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47735", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a lone bicyclist closed in the ranks at the end .", "storylet_id": "238679"}], [{"original_text": "One day he was driving down the street while a parade was happening.", "album_id": "72157650387632771", "photo_flickr_id": "16326641792", "setting": "first-2-pick-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "47736", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one day he was driving down the street while a parade was happening .", "storylet_id": "238680"}], [{"original_text": "But little did he know, a guy riding a bike was trying to run up on his car and wipe him out.", "album_id": "72157650387632771", "photo_flickr_id": "16327542235", "setting": "first-2-pick-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "47736", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but little did he know , a guy riding a bike was trying to run up on his car and wipe him out .", "storylet_id": "238681"}], [{"original_text": "It was a happy and joyous day. All smile and no tears.", "album_id": "72157650387632771", "photo_flickr_id": "16140156360", "setting": "first-2-pick-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "47736", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a happy and joyous day . all smile and no tears .", "storylet_id": "238682"}], [{"original_text": "This is papi chulo, he is the thuggiest thug out there.", "album_id": "72157650387632771", "photo_flickr_id": "16140010998", "setting": "first-2-pick-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "47736", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is papi chulo , he is the thuggiest thug out there .", "storylet_id": "238683"}], [{"original_text": "As the guy was approaching papi chulo's car a bus hit him. This is the bus.", "album_id": "72157650387632771", "photo_flickr_id": "15705142164", "setting": "first-2-pick-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "47736", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the guy was approaching papi chulo 's car a bus hit him . this is the bus .", "storylet_id": "238684"}], [{"original_text": "Local business owners took a break to watch the demonstrators march by.", "album_id": "72157650387632771", "photo_flickr_id": "16140010998", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47737", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "local business owners took a break to watch the demonstrators march by .", "storylet_id": "238685"}], [{"original_text": "They carried signs.", "album_id": "72157650387632771", "photo_flickr_id": "16141365699", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47737", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they carried signs .", "storylet_id": "238686"}], [{"original_text": "They brought their children.", "album_id": "72157650387632771", "photo_flickr_id": "16139972608", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47737", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they brought their children .", "storylet_id": "238687"}], [{"original_text": "They marched past a church.", "album_id": "72157650387632771", "photo_flickr_id": "16140010448", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47737", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they marched past a church .", "storylet_id": "238688"}], [{"original_text": "One person rode his bike instead of walking.", "album_id": "72157650387632771", "photo_flickr_id": "16327542235", "setting": "last-3-pick-old-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "47737", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one person rode his bike instead of walking .", "storylet_id": "238689"}], [{"original_text": "The chefs were getting made fun of", "album_id": "72157650387632771", "photo_flickr_id": "16140010998", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47738", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the chefs were getting made fun of", "storylet_id": "238690"}], [{"original_text": "while they held signs.", "album_id": "72157650387632771", "photo_flickr_id": "16141365699", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47738", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while they held signs .", "storylet_id": "238691"}], [{"original_text": "People were protesting ", "album_id": "72157650387632771", "photo_flickr_id": "16139972608", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47738", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people were protesting", "storylet_id": "238692"}], [{"original_text": "and blocking the streets", "album_id": "72157650387632771", "photo_flickr_id": "16140010448", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47738", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and blocking the streets", "storylet_id": "238693"}], [{"original_text": "from the bikers.", "album_id": "72157650387632771", "photo_flickr_id": "16327542235", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47738", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "from the bikers .", "storylet_id": "238694"}], [{"original_text": "Everybody was out, ready to watch the parade even the workers. ", "album_id": "72157650387632771", "photo_flickr_id": "16140010998", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "47739", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everybody was out , ready to watch the parade even the workers .", "storylet_id": "238695"}], [{"original_text": "The people in the restaurant were even ready to see it with their prime seats. ", "album_id": "72157650387632771", "photo_flickr_id": "16141365699", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "47739", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the people in the restaurant were even ready to see it with their prime seats .", "storylet_id": "238696"}], [{"original_text": "The children walking the route were so happy to be included. ", "album_id": "72157650387632771", "photo_flickr_id": "16139972608", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "47739", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the children walking the route were so happy to be included .", "storylet_id": "238697"}], [{"original_text": "The first part of the parade had passed the restaurant.", "album_id": "72157650387632771", "photo_flickr_id": "16140010448", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "47739", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the first part of the parade had passed the restaurant .", "storylet_id": "238698"}], [{"original_text": "A man on a bike starts the second part of the parade. ", "album_id": "72157650387632771", "photo_flickr_id": "16327542235", "setting": "last-3-pick-old-and-tell", "worker_id": "IJRSZO2NM8EQ914", "story_id": "47739", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a man on a bike starts the second part of the parade .", "storylet_id": "238699"}], [{"original_text": "A bomb exploded in London. The cop is keeping onlookers out.", "album_id": "561620", "photo_flickr_id": "24568258", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "47740", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a bomb exploded in location . the cop is keeping onlookers out .", "storylet_id": "238700"}], [{"original_text": "The area is roped off to the public. They are making sure everyone is accounted for.", "album_id": "561620", "photo_flickr_id": "24569025", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "47740", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the area is roped off to the public . they are making sure everyone is accounted for .", "storylet_id": "238701"}], [{"original_text": "The news crews have arrived and set up across the street.", "album_id": "561620", "photo_flickr_id": "24567275", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "47740", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the news crews have arrived and set up across the street .", "storylet_id": "238702"}], [{"original_text": "Their vans are blocking the road.", "album_id": "561620", "photo_flickr_id": "24564653", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "47740", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their vans are blocking the road .", "storylet_id": "238703"}], [{"original_text": "Today's paper has the blast on the front page.", "album_id": "561620", "photo_flickr_id": "24565206", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "47740", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "today 's paper has the blast on the front page .", "storylet_id": "238704"}], [{"original_text": "The people came to protest against what this person was doing.", "album_id": "561620", "photo_flickr_id": "24568574", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "47741", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people came to protest against what this person was doing .", "storylet_id": "238705"}], [{"original_text": "They marched the streets.", "album_id": "561620", "photo_flickr_id": "24565591", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "47741", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they marched the streets .", "storylet_id": "238706"}], [{"original_text": "They would no longer stand for it.", "album_id": "561620", "photo_flickr_id": "24569025", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "47741", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they would no longer stand for it .", "storylet_id": "238707"}], [{"original_text": "They tried to get others to side with them.", "album_id": "561620", "photo_flickr_id": "24566150", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "47741", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they tried to get others to side with them .", "storylet_id": "238708"}], [{"original_text": "They waved banners and flags as they marched.", "album_id": "561620", "photo_flickr_id": "24568011", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "47741", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they waved banners and flags as they marched .", "storylet_id": "238709"}], [{"original_text": "The area is being cautioned off for the event.", "album_id": "561620", "photo_flickr_id": "24568258", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47742", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the area is being cautioned off for the event .", "storylet_id": "238710"}], [{"original_text": "People are setting up, and gathering around.", "album_id": "561620", "photo_flickr_id": "24569025", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47742", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people are setting up , and gathering around .", "storylet_id": "238711"}], [{"original_text": "There is even a place to get out of the sun.", "album_id": "561620", "photo_flickr_id": "24567275", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47742", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is even a place to get out of the sun .", "storylet_id": "238712"}], [{"original_text": "All of the news groups are there to cover everything.", "album_id": "561620", "photo_flickr_id": "24564653", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47742", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the news groups are there to cover everything .", "storylet_id": "238713"}], [{"original_text": "It was even announced in the local newspaper.", "album_id": "561620", "photo_flickr_id": "24565206", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47742", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was even announced in the local newspaper .", "storylet_id": "238714"}], [{"original_text": "The security guard is standing guard over the upcoming presser.", "album_id": "561620", "photo_flickr_id": "24568258", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "47743", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the security guard is standing guard over the upcoming presser .", "storylet_id": "238715"}], [{"original_text": "Reporters are now gathered waiting for the presser to begin.", "album_id": "561620", "photo_flickr_id": "24569025", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "47743", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "reporters are now gathered waiting for the presser to begin .", "storylet_id": "238716"}], [{"original_text": "They have set up tents for their organizations.", "album_id": "561620", "photo_flickr_id": "24567275", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "47743", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they have set up tents for their organizations .", "storylet_id": "238717"}], [{"original_text": "The satellite trucks have arrived and are awaiting the presser.", "album_id": "561620", "photo_flickr_id": "24564653", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "47743", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the satellite trucks have arrived and are awaiting the presser .", "storylet_id": "238718"}], [{"original_text": "A reporter gives us a view of the latest newspaper headlines.", "album_id": "561620", "photo_flickr_id": "24565206", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "47743", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a reporter gives us a view of the latest newspaper headlines .", "storylet_id": "238719"}], [{"original_text": "THe news wa on the street..", "album_id": "561620", "photo_flickr_id": "24568574", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47744", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the news wa on the street..", "storylet_id": "238720"}], [{"original_text": "THere had been some sort of crime.", "album_id": "561620", "photo_flickr_id": "24565591", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47744", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there had been some sort of crime .", "storylet_id": "238721"}], [{"original_text": "The cops put yellow tape up.", "album_id": "561620", "photo_flickr_id": "24569025", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47744", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cops put yellow tape up .", "storylet_id": "238722"}], [{"original_text": "PEople were at the scene.", "album_id": "561620", "photo_flickr_id": "24566150", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47744", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people were at the scene .", "storylet_id": "238723"}], [{"original_text": "Everyone was curious what happened.", "album_id": "561620", "photo_flickr_id": "24568011", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "47744", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was curious what happened .", "storylet_id": "238724"}], [{"original_text": "The tree cutter went to work.", "album_id": "1476996", "photo_flickr_id": "68472933", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "47745", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tree cutter went to work .", "storylet_id": "238725"}], [{"original_text": "The men supervised.", "album_id": "1476996", "photo_flickr_id": "68472936", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "47745", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the men supervised .", "storylet_id": "238726"}], [{"original_text": "The tree was getting cut.", "album_id": "1476996", "photo_flickr_id": "68472937", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "47745", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tree was getting cut .", "storylet_id": "238727"}], [{"original_text": "He took the top off. ", "album_id": "1476996", "photo_flickr_id": "68475482", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "47745", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he took the top off .", "storylet_id": "238728"}], [{"original_text": "It was a job well done.", "album_id": "1476996", "photo_flickr_id": "68472932", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "47745", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a job well done .", "storylet_id": "238729"}], [{"original_text": "Christmas is near and these guys want to put lights on the tree.", "album_id": "1476996", "photo_flickr_id": "68472936", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "47746", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "christmas is near and these guys want to put lights on the tree .", "storylet_id": "238730"}], [{"original_text": "This is the tree they want to put lights on.", "album_id": "1476996", "photo_flickr_id": "68475474", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "47746", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the tree they want to put lights on .", "storylet_id": "238731"}], [{"original_text": "The firefighters came out to help.", "album_id": "1476996", "photo_flickr_id": "68472932", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "47746", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the firefighters came out to help .", "storylet_id": "238732"}], [{"original_text": "The guy is helping with the lights.", "album_id": "1476996", "photo_flickr_id": "68475475", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "47746", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guy is helping with the lights .", "storylet_id": "238733"}], [{"original_text": "This guy climb to the end of ladder to finish putting up the lights. Now the community would enjoy a brighter city for the holidays.", "album_id": "1476996", "photo_flickr_id": "68475482", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "47746", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this guy climb to the end of ladder to finish putting up the lights . now the community would enjoy a brighter city for the holidays .", "storylet_id": "238734"}], [{"original_text": "We had the fire company come out the help with the Christmas lights", "album_id": "1476996", "photo_flickr_id": "68472933", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "47747", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had the fire company come out the help with the christmas lights", "storylet_id": "238735"}], [{"original_text": "Everyone came to help out and get it ready", "album_id": "1476996", "photo_flickr_id": "68472936", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "47747", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone came to help out and get it ready", "storylet_id": "238736"}], [{"original_text": "We used big bulbs so they would look better ", "album_id": "1476996", "photo_flickr_id": "68472937", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "47747", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we used big bulbs so they would look better", "storylet_id": "238737"}], [{"original_text": "The trees were gigantic so we needed big ladders", "album_id": "1476996", "photo_flickr_id": "68475482", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "47747", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the trees were gigantic so we needed big ladders", "storylet_id": "238738"}], [{"original_text": "The fire truck ladder was especially useful ", "album_id": "1476996", "photo_flickr_id": "68472932", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "47747", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fire truck ladder was especially useful", "storylet_id": "238739"}], [{"original_text": "My husband helped out putting up the towns Christmas tree. ", "album_id": "1476996", "photo_flickr_id": "68472936", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "47748", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband helped out putting up the towns christmas tree .", "storylet_id": "238740"}], [{"original_text": "It took all morning just to get it into place. ", "album_id": "1476996", "photo_flickr_id": "68475474", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "47748", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it took all morning just to get it into place .", "storylet_id": "238741"}], [{"original_text": "They had to call the fire dept in for back up to help raise it. ", "album_id": "1476996", "photo_flickr_id": "68472932", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "47748", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had to call the fire dept in for back up to help raise it .", "storylet_id": "238742"}], [{"original_text": "My son could care less about the big tree. ", "album_id": "1476996", "photo_flickr_id": "68475475", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "47748", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my son could care less about the big tree .", "storylet_id": "238743"}], [{"original_text": "My husband got to climb the fire truck ladder and fix the top of the tree. ", "album_id": "1476996", "photo_flickr_id": "68475482", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "47748", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my husband got to climb the fire truck ladder and fix the top of the tree .", "storylet_id": "238744"}], [{"original_text": "It was almost Christmas and we had to decorate the tree.", "album_id": "1476996", "photo_flickr_id": "68472933", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47749", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was almost christmas and we had to decorate the tree .", "storylet_id": "238745"}], [{"original_text": "The people on the ground made sure i was secure.", "album_id": "1476996", "photo_flickr_id": "68472936", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47749", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the people on the ground made sure i was secure .", "storylet_id": "238746"}], [{"original_text": "I tried to hang the ornaments but it was too far away.", "album_id": "1476996", "photo_flickr_id": "68472937", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47749", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i tried to hang the ornaments but it was too far away .", "storylet_id": "238747"}], [{"original_text": "I finally got a good reach to the top of the tree.", "album_id": "1476996", "photo_flickr_id": "68475482", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47749", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i finally got a good reach to the top of the tree .", "storylet_id": "238748"}], [{"original_text": "I was aided with the help of a firetruck.", "album_id": "1476996", "photo_flickr_id": "68472932", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "47749", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was aided with the help of a firetruck .", "storylet_id": "238749"}], [{"original_text": "On my way to the military function today I saw this. \"Do the bad thing.\" It got me thinking about the devil. ", "album_id": "389187", "photo_flickr_id": "16219421", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47750", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on my way to the military function today i saw this . `` do the bad thing . '' it got me thinking about the devil .", "storylet_id": "238750"}], [{"original_text": "Is the devil in one of these men wearing red coats? I stared at them studying them all one by one. ", "album_id": "389187", "photo_flickr_id": "16219275", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47750", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "is the devil in one of these men wearing red coats ? i stared at them studying them all one by one .", "storylet_id": "238751"}], [{"original_text": "I didn't see the devil in any officers either. I watched the men lined up. No devil here. ", "album_id": "389187", "photo_flickr_id": "16216826", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47750", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i did n't see the devil in any officers either . i watched the men lined up . no devil here .", "storylet_id": "238752"}], [{"original_text": "I got to see firsthand and up close the soldiers in their dress whites. It was a great show and still no devil here. ", "album_id": "389187", "photo_flickr_id": "16217114", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47750", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i got to see firsthand and up close the soldiers in their dress whites . it was a great show and still no devil here .", "storylet_id": "238753"}], [{"original_text": "The music later on that night was so much fun. We sang and danced and had a great fun time. I forgot all about my mission to find the devil. ", "album_id": "389187", "photo_flickr_id": "16218274", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "47750", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the music later on that night was so much fun . we sang and danced and had a great fun time . i forgot all about my mission to find the devil .", "storylet_id": "238754"}], [{"original_text": "Roger headed to DC to see some of the sites there pwere too see.", "album_id": "389187", "photo_flickr_id": "16216168", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47751", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] headed to dc to see some of the sites there pwere too see .", "storylet_id": "238755"}], [{"original_text": "He took this picture of the capital building.", "album_id": "389187", "photo_flickr_id": "16216303", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47751", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he took this picture of the capital building .", "storylet_id": "238756"}], [{"original_text": "He was very amazed by the Capital Building it was a memory he will never froget.", "album_id": "389187", "photo_flickr_id": "16216462", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47751", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was very amazed by the capital building it was a memory he will never froget .", "storylet_id": "238757"}], [{"original_text": "He the seen some soldiers who were protecting the capital building.", "album_id": "389187", "photo_flickr_id": "16216826", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47751", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he the seen some soldiers who were protecting the capital building .", "storylet_id": "238758"}], [{"original_text": "He had to have one last shot of the building before leaving.", "album_id": "389187", "photo_flickr_id": "16217242", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "47751", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he had to have one last shot of the building before leaving .", "storylet_id": "238759"}], [{"original_text": "We decided to try and solve the mystery of the Do the BAD THING!", "album_id": "389187", "photo_flickr_id": "16219421", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "47752", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to try and solve the mystery of the do the bad thing !", "storylet_id": "238760"}], [{"original_text": "They suggested that we go and look over to the left.", "album_id": "389187", "photo_flickr_id": "16219275", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "47752", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they suggested that we go and look over to the left .", "storylet_id": "238761"}], [{"original_text": "These guys did not want to participate at all in the quest.", "album_id": "389187", "photo_flickr_id": "16216826", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "47752", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these guys did not want to participate at all in the quest .", "storylet_id": "238762"}], [{"original_text": "After the mystery was solved these men got an award for exposing the truth.", "album_id": "389187", "photo_flickr_id": "16217114", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "47752", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the mystery was solved these men got an award for exposing the truth .", "storylet_id": "238763"}], [{"original_text": "Then everyone celebrated at the great concert party.", "album_id": "389187", "photo_flickr_id": "16218274", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "47752", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then everyone celebrated at the great concert party .", "storylet_id": "238764"}], [{"original_text": "Far off places are always interesting to visit.", "album_id": "389187", "photo_flickr_id": "16219421", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "47753", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "far off places are always interesting to visit .", "storylet_id": "238765"}], [{"original_text": "You get to meet new people and have a good time.", "album_id": "389187", "photo_flickr_id": "16219275", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "47753", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you get to meet new people and have a good time .", "storylet_id": "238766"}], [{"original_text": "Even our military gather around the cities.", "album_id": "389187", "photo_flickr_id": "16216826", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "47753", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even our military gather around the cities .", "storylet_id": "238767"}], [{"original_text": "There are shows that are played for the visitors.", "album_id": "389187", "photo_flickr_id": "16217114", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "47753", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are shows that are played for the visitors .", "storylet_id": "238768"}], [{"original_text": "The night is followed up with a concert in the park.", "album_id": "389187", "photo_flickr_id": "16218274", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "47753", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night is followed up with a concert in the park .", "storylet_id": "238769"}], [{"original_text": "The trip to the capital started with viewing monuments.", "album_id": "389187", "photo_flickr_id": "16216168", "setting": "last-3-pick-old-and-tell", "worker_id": "8S99138BUBWNURV", "story_id": "47754", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the trip to the capital started with viewing monuments .", "storylet_id": "238770"}], [{"original_text": "The capital building looked impressive on this sunny day.", "album_id": "389187", "photo_flickr_id": "16216303", "setting": "last-3-pick-old-and-tell", "worker_id": "8S99138BUBWNURV", "story_id": "47754", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the capital building looked impressive on this sunny day .", "storylet_id": "238771"}], [{"original_text": "Many people enjoyed the weather and sightseeing. ", "album_id": "389187", "photo_flickr_id": "16216462", "setting": "last-3-pick-old-and-tell", "worker_id": "8S99138BUBWNURV", "story_id": "47754", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many people enjoyed the weather and sightseeing .", "storylet_id": "238772"}], [{"original_text": "There was a military gathering. ", "album_id": "389187", "photo_flickr_id": "16216826", "setting": "last-3-pick-old-and-tell", "worker_id": "8S99138BUBWNURV", "story_id": "47754", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a military gathering .", "storylet_id": "238773"}], [{"original_text": "A military demonstration was organized in front of the capital building.", "album_id": "389187", "photo_flickr_id": "16217242", "setting": "last-3-pick-old-and-tell", "worker_id": "8S99138BUBWNURV", "story_id": "47754", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a military demonstration was organized in front of the capital building .", "storylet_id": "238774"}], [{"original_text": "Sometimes you have to go out in nature.", "album_id": "800359", "photo_flickr_id": "36205416", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47755", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sometimes you have to go out in nature .", "storylet_id": "238775"}], [{"original_text": "Take the road less traveled.", "album_id": "800359", "photo_flickr_id": "36206051", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47755", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "take the road less traveled .", "storylet_id": "238776"}], [{"original_text": "Look out on the green pastures", "album_id": "800359", "photo_flickr_id": "36200877", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47755", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look out on the green pastures", "storylet_id": "238777"}], [{"original_text": "Appreciate the green trees.", "album_id": "800359", "photo_flickr_id": "36203183", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47755", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "appreciate the green trees .", "storylet_id": "238778"}], [{"original_text": "And sit down by the still waters and take a breath.", "album_id": "800359", "photo_flickr_id": "36206508", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47755", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and sit down by the still waters and take a breath .", "storylet_id": "238779"}], [{"original_text": "Maicey thought it would be a good idea to take the left side of the trail.", "album_id": "800359", "photo_flickr_id": "36200502", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47756", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "maicey thought it would be a good idea to take the left side of the trail .", "storylet_id": "238780"}], [{"original_text": "We ended up on riverbed completely lost.", "album_id": "800359", "photo_flickr_id": "36207725", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47756", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we ended up on riverbed completely lost .", "storylet_id": "238781"}], [{"original_text": "After an hour of walking we made it to a main path.", "album_id": "800359", "photo_flickr_id": "36205416", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47756", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after an hour of walking we made it to a main path .", "storylet_id": "238782"}], [{"original_text": "We could see that it lead to civilizations.", "album_id": "800359", "photo_flickr_id": "36207240", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47756", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we could see that it lead to civilizations .", "storylet_id": "238783"}], [{"original_text": "We ended up in an old English town with square buildings. ", "album_id": "800359", "photo_flickr_id": "36202545", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47756", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended up in an old english town with square buildings .", "storylet_id": "238784"}], [{"original_text": "We are going over the bridge to go for a nice hike.", "album_id": "800359", "photo_flickr_id": "36205416", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47757", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are going over the bridge to go for a nice hike .", "storylet_id": "238785"}], [{"original_text": "It is very relaxing traveling under the shade.", "album_id": "800359", "photo_flickr_id": "36206051", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47757", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is very relaxing traveling under the shade .", "storylet_id": "238786"}], [{"original_text": "The fields have so much space, it is a great place to run around.", "album_id": "800359", "photo_flickr_id": "36200877", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47757", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fields have so much space , it is a great place to run around .", "storylet_id": "238787"}], [{"original_text": "We are getting pretty deep into the forest now.", "album_id": "800359", "photo_flickr_id": "36203183", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47757", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we are getting pretty deep into the forest now .", "storylet_id": "238788"}], [{"original_text": "We have finally reached a stream of water, hopefully it is alright to drink.", "album_id": "800359", "photo_flickr_id": "36206508", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47757", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we have finally reached a stream of water , hopefully it is alright to drink .", "storylet_id": "238789"}], [{"original_text": "It was a great day to be outdoors.", "album_id": "800359", "photo_flickr_id": "36200502", "setting": "last-3-pick-old-and-tell", "worker_id": "TDJ8E88Y079J22V", "story_id": "47758", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a great day to be outdoors .", "storylet_id": "238790"}], [{"original_text": "A nice quiet stream.", "album_id": "800359", "photo_flickr_id": "36207725", "setting": "last-3-pick-old-and-tell", "worker_id": "TDJ8E88Y079J22V", "story_id": "47758", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a nice quiet stream .", "storylet_id": "238791"}], [{"original_text": "The road led them so many places.", "album_id": "800359", "photo_flickr_id": "36205416", "setting": "last-3-pick-old-and-tell", "worker_id": "TDJ8E88Y079J22V", "story_id": "47758", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the road led them so many places .", "storylet_id": "238792"}], [{"original_text": "A fantastic bridge.", "album_id": "800359", "photo_flickr_id": "36207240", "setting": "last-3-pick-old-and-tell", "worker_id": "TDJ8E88Y079J22V", "story_id": "47758", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a fantastic bridge .", "storylet_id": "238793"}], [{"original_text": "Such a quaint area.", "album_id": "800359", "photo_flickr_id": "36202545", "setting": "last-3-pick-old-and-tell", "worker_id": "TDJ8E88Y079J22V", "story_id": "47758", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "such a quaint area .", "storylet_id": "238794"}], [{"original_text": "The countryside was a beautiful lush green.", "album_id": "800359", "photo_flickr_id": "36200502", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "47759", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the countryside was a beautiful lush green .", "storylet_id": "238795"}], [{"original_text": "The water was still puddled from the storm,", "album_id": "800359", "photo_flickr_id": "36207725", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "47759", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water was still puddled from the storm ,", "storylet_id": "238796"}], [{"original_text": "This bridge took us over the river and to the trailhead.", "album_id": "800359", "photo_flickr_id": "36205416", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "47759", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this bridge took us over the river and to the trailhead .", "storylet_id": "238797"}], [{"original_text": "This is a view of the bridge from below.", "album_id": "800359", "photo_flickr_id": "36207240", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "47759", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a view of the bridge from below .", "storylet_id": "238798"}], [{"original_text": "The houses were old and so charming with their brick facades!", "album_id": "800359", "photo_flickr_id": "36202545", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "47759", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the houses were old and so charming with their brick facades !", "storylet_id": "238799"}], [{"original_text": "it's amazing looking at the water ", "album_id": "72157594147086240", "photo_flickr_id": "154482721", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47760", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's amazing looking at the water", "storylet_id": "238800"}], [{"original_text": "standing in your favorite location ", "album_id": "72157594147086240", "photo_flickr_id": "154488305", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47760", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "standing in your favorite location", "storylet_id": "238801"}], [{"original_text": "watching boats race or slowly chug by ", "album_id": "72157594147086240", "photo_flickr_id": "154493345", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47760", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "watching boats race or slowly chug by", "storylet_id": "238802"}], [{"original_text": "but it is amazing the strength of the cables ", "album_id": "72157594147086240", "photo_flickr_id": "154497330", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47760", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but it is amazing the strength of the cables", "storylet_id": "238803"}], [{"original_text": "and structures of the bridges over the water ", "album_id": "72157594147086240", "photo_flickr_id": "154498812", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "47760", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and structures of the bridges over the water", "storylet_id": "238804"}], [{"original_text": "We started our scenic walk down the Golden Gate Bridge.", "album_id": "72157594147086240", "photo_flickr_id": "154487190", "setting": "first-2-pick-and-tell", "worker_id": "D7KNGP4VQJTJ173", "story_id": "47761", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started our scenic walk down the location location location .", "storylet_id": "238805"}], [{"original_text": "We took a few minutes to gaze and enjoy the view of the bay.", "album_id": "72157594147086240", "photo_flickr_id": "154490291", "setting": "first-2-pick-and-tell", "worker_id": "D7KNGP4VQJTJ173", "story_id": "47761", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a few minutes to gaze and enjoy the view of the bay .", "storylet_id": "238806"}], [{"original_text": "There were many others there enjoying the view as well.", "album_id": "72157594147086240", "photo_flickr_id": "154495136", "setting": "first-2-pick-and-tell", "worker_id": "D7KNGP4VQJTJ173", "story_id": "47761", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many others there enjoying the view as well .", "storylet_id": "238807"}], [{"original_text": "We were joined by a little bird friend.", "album_id": "72157594147086240", "photo_flickr_id": "154489931", "setting": "first-2-pick-and-tell", "worker_id": "D7KNGP4VQJTJ173", "story_id": "47761", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were joined by a little bird friend .", "storylet_id": "238808"}], [{"original_text": "No better way to end the day than a trolley ride to the city!", "album_id": "72157594147086240", "photo_flickr_id": "154499084", "setting": "first-2-pick-and-tell", "worker_id": "D7KNGP4VQJTJ173", "story_id": "47761", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "no better way to end the day than a trolley ride to the city !", "storylet_id": "238809"}], [{"original_text": "These were from our trip to Vista Point last week.", "album_id": "72157594147086240", "photo_flickr_id": "154482721", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "47762", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these were from our trip to location location last week .", "storylet_id": "238810"}], [{"original_text": "Here she is! The view was so breathtaking. ", "album_id": "72157594147086240", "photo_flickr_id": "154488305", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "47762", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here she is ! the view was so breathtaking .", "storylet_id": "238811"}], [{"original_text": "I wanted to grow swim in the water but my wife wouldnt let me.", "album_id": "72157594147086240", "photo_flickr_id": "154493345", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "47762", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i wanted to grow swim in the water but my wife wouldnt let me .", "storylet_id": "238812"}], [{"original_text": "I would not want to fall from that height.", "album_id": "72157594147086240", "photo_flickr_id": "154497330", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "47762", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i would not want to fall from that height .", "storylet_id": "238813"}], [{"original_text": "The bridge was so pretty and fun to walk on", "album_id": "72157594147086240", "photo_flickr_id": "154498812", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "47762", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bridge was so pretty and fun to walk on", "storylet_id": "238814"}], [{"original_text": "That is the San Francisco sky line at the point of my middle finger. ", "album_id": "72157594147086240", "photo_flickr_id": "154482721", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "47763", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "that is the location location sky line at the point of my middle finger .", "storylet_id": "238815"}], [{"original_text": "On our way up to the Golden Gate bridge. ", "album_id": "72157594147086240", "photo_flickr_id": "154488305", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "47763", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on our way up to the location location bridge .", "storylet_id": "238816"}], [{"original_text": "A view across the bay at San Francisco. ", "album_id": "72157594147086240", "photo_flickr_id": "154493345", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "47763", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a view across the bay at location location .", "storylet_id": "238817"}], [{"original_text": "Looking up at the top of the Golden Gate. ", "album_id": "72157594147086240", "photo_flickr_id": "154497330", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "47763", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "looking up at the top of the location location .", "storylet_id": "238818"}], [{"original_text": "It is even more magical once you are on the bridge than you would think. ", "album_id": "72157594147086240", "photo_flickr_id": "154498812", "setting": "last-3-pick-old-and-tell", "worker_id": "71QXJJ2X51HWV14", "story_id": "47763", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is even more magical once you are on the bridge than you would think .", "storylet_id": "238819"}], [{"original_text": "We made our way to the Golden Gate Bridge. ", "album_id": "72157594147086240", "photo_flickr_id": "154487190", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "47764", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we made our way to the location location location .", "storylet_id": "238820"}], [{"original_text": "We stopped at a vista and looked out to the bay. ", "album_id": "72157594147086240", "photo_flickr_id": "154490291", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "47764", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped at a vista and looked out to the bay .", "storylet_id": "238821"}], [{"original_text": "Other people were watching the boats below from the bridge. ", "album_id": "72157594147086240", "photo_flickr_id": "154495136", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "47764", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other people were watching the boats below from the bridge .", "storylet_id": "238822"}], [{"original_text": "We saw a bird fly down in front of us. ", "album_id": "72157594147086240", "photo_flickr_id": "154489931", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "47764", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw a bird fly down in front of us .", "storylet_id": "238823"}], [{"original_text": "We even saw a trolley pass by. ", "album_id": "72157594147086240", "photo_flickr_id": "154499084", "setting": "last-3-pick-old-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "47764", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even saw a trolley pass by .", "storylet_id": "238824"}], [{"original_text": "The security guards made sure the streets in the town were clear for the parade to begin.", "album_id": "72157594148848294", "photo_flickr_id": "155753074", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47765", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the security guards made sure the streets in the town were clear for the parade to begin .", "storylet_id": "238825"}], [{"original_text": "Veterans walked in groups", "album_id": "72157594148848294", "photo_flickr_id": "155754227", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47765", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "veterans walked in groups", "storylet_id": "238826"}], [{"original_text": "based on the military force that they were apart of.", "album_id": "72157594148848294", "photo_flickr_id": "155755239", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47765", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "based on the military force that they were apart of .", "storylet_id": "238827"}], [{"original_text": "As the sound of the snare drums went off, the commander general began to make it appearance.", "album_id": "72157594148848294", "photo_flickr_id": "155758806", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47765", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the sound of the snare drums went off , the commander general began to make it appearance .", "storylet_id": "238828"}], [{"original_text": "It was easy to tell that he was impressed about the special event for veterans day.", "album_id": "72157594148848294", "photo_flickr_id": "155752138", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47765", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was easy to tell that he was impressed about the special event for veterans day .", "storylet_id": "238829"}], [{"original_text": "The mayor announcing the guest speaker.", "album_id": "72157594148848294", "photo_flickr_id": "155752138", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47766", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the mayor announcing the guest speaker .", "storylet_id": "238830"}], [{"original_text": "The streets were completely block.", "album_id": "72157594148848294", "photo_flickr_id": "155753074", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47766", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the streets were completely block .", "storylet_id": "238831"}], [{"original_text": "Presentation of arms.", "album_id": "72157594148848294", "photo_flickr_id": "155754227", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47766", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "presentation of arms .", "storylet_id": "238832"}], [{"original_text": "The american legion playing drums.", "album_id": "72157594148848294", "photo_flickr_id": "155755501", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47766", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the american legion playing drums .", "storylet_id": "238833"}], [{"original_text": "The girl scout walking in the parade.", "album_id": "72157594148848294", "photo_flickr_id": "155756697", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47766", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girl scout walking in the parade .", "storylet_id": "238834"}], [{"original_text": "today we're having our annual High school parade. ", "album_id": "72157594148848294", "photo_flickr_id": "155753074", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47767", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we 're having our annual high school parade .", "storylet_id": "238835"}], [{"original_text": "Everyone will attend, this is the boy scouts alumni.", "album_id": "72157594148848294", "photo_flickr_id": "155754227", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47767", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone will attend , this is the boy scouts alumni .", "storylet_id": "238836"}], [{"original_text": "Here comes our high school band, best in town.", "album_id": "72157594148848294", "photo_flickr_id": "155755239", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47767", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here comes our high school band , best in town .", "storylet_id": "238837"}], [{"original_text": "These are our famous drummers, they are very good.", "album_id": "72157594148848294", "photo_flickr_id": "155758806", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47767", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these are our famous drummers , they are very good .", "storylet_id": "238838"}], [{"original_text": "Here are our speakers for this years parade.", "album_id": "72157594148848294", "photo_flickr_id": "155752138", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47767", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here are our speakers for this years parade .", "storylet_id": "238839"}], [{"original_text": "A cop just taking it easy making sure nothing goes wrong.", "album_id": "72157594148848294", "photo_flickr_id": "155753074", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47768", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a cop just taking it easy making sure nothing goes wrong .", "storylet_id": "238840"}], [{"original_text": "The service men are ready to march.", "album_id": "72157594148848294", "photo_flickr_id": "155754227", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47768", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the service men are ready to march .", "storylet_id": "238841"}], [{"original_text": "Here they come starting the parade off.", "album_id": "72157594148848294", "photo_flickr_id": "155755239", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47768", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here they come starting the parade off .", "storylet_id": "238842"}], [{"original_text": "Next is the drummers playing a song.", "album_id": "72157594148848294", "photo_flickr_id": "155758806", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47768", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next is the drummers playing a song .", "storylet_id": "238843"}], [{"original_text": "Now it is dedication time and thank all the men and women for their work.", "album_id": "72157594148848294", "photo_flickr_id": "155752138", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47768", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now it is dedication time and thank all the men and women for their work .", "storylet_id": "238844"}], [{"original_text": "No one cared about the parade, so police assistance was lax to say the least. ", "album_id": "72157594148848294", "photo_flickr_id": "155753074", "setting": "last-3-pick-old-and-tell", "worker_id": "BW91YVF5JOFT4E9", "story_id": "47769", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "no one cared about the parade , so police assistance was lax to say the least .", "storylet_id": "238845"}], [{"original_text": "The marchers in the parade took everything seriously. ", "album_id": "72157594148848294", "photo_flickr_id": "155754227", "setting": "last-3-pick-old-and-tell", "worker_id": "BW91YVF5JOFT4E9", "story_id": "47769", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the marchers in the parade took everything seriously .", "storylet_id": "238846"}], [{"original_text": "Unfortunately, no one came to watch them. ", "album_id": "72157594148848294", "photo_flickr_id": "155755239", "setting": "last-3-pick-old-and-tell", "worker_id": "BW91YVF5JOFT4E9", "story_id": "47769", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "unfortunately , no one came to watch them .", "storylet_id": "238847"}], [{"original_text": "The only feedback was from someone living nearby complaining about the sound of drumming. ", "album_id": "72157594148848294", "photo_flickr_id": "155758806", "setting": "last-3-pick-old-and-tell", "worker_id": "BW91YVF5JOFT4E9", "story_id": "47769", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the only feedback was from someone living nearby complaining about the sound of drumming .", "storylet_id": "238848"}], [{"original_text": "The mayor began to give a speech, but when a breeze came by and blew it away, he had to improvise. ", "album_id": "72157594148848294", "photo_flickr_id": "155752138", "setting": "last-3-pick-old-and-tell", "worker_id": "BW91YVF5JOFT4E9", "story_id": "47769", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the mayor began to give a speech , but when a breeze came by and blew it away , he had to improvise .", "storylet_id": "238849"}], [{"original_text": "Every forth of July our motorcycle club gets together to celebrate. ", "album_id": "72157594149306041", "photo_flickr_id": "156090611", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "47770", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every forth of july our motorcycle club gets together to celebrate .", "storylet_id": "238850"}], [{"original_text": "Always willing to pose for any picture if someone ask us to.", "album_id": "72157594149306041", "photo_flickr_id": "156090335", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "47770", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "always willing to pose for any picture if someone ask us to .", "storylet_id": "238851"}], [{"original_text": "Mom and dad as proud as ever of me to I might at, I think.", "album_id": "72157594149306041", "photo_flickr_id": "156090430", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "47770", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom and dad as proud as ever of me to i might at , i think .", "storylet_id": "238852"}], [{"original_text": "There urging toward us to get a big photo of the whole club finally paying off.", "album_id": "72157594149306041", "photo_flickr_id": "156090274", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "47770", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there urging toward us to get a big photo of the whole club finally paying off .", "storylet_id": "238853"}], [{"original_text": "Even snapping a few pictures of the jackets and shirts in the back to boot. ", "album_id": "72157594149306041", "photo_flickr_id": "156090514", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "47770", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even snapping a few pictures of the jackets and shirts in the back to boot .", "storylet_id": "238854"}], [{"original_text": "I love to travel", "album_id": "72157594149306041", "photo_flickr_id": "156090611", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47771", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love to travel", "storylet_id": "238855"}], [{"original_text": "This place is amazing", "album_id": "72157594149306041", "photo_flickr_id": "156090335", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47771", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this place is amazing", "storylet_id": "238856"}], [{"original_text": "So much to see", "album_id": "72157594149306041", "photo_flickr_id": "157588142", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47771", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so much to see", "storylet_id": "238857"}], [{"original_text": "and do", "album_id": "72157594149306041", "photo_flickr_id": "157588194", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47771", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and do", "storylet_id": "238858"}], [{"original_text": "I will return", "album_id": "72157594149306041", "photo_flickr_id": "156090430", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47771", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i will return", "storylet_id": "238859"}], [{"original_text": "Today we all gathered around for the 4th of July Biker rally.", "album_id": "72157594149306041", "photo_flickr_id": "156090611", "setting": "last-3-pick-old-and-tell", "worker_id": "R4JVC9QRY8DMEYH", "story_id": "47772", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we all gathered around for the 4th of july biker rally .", "storylet_id": "238860"}], [{"original_text": "Here we are all grouped for the group photo.", "album_id": "72157594149306041", "photo_flickr_id": "156090335", "setting": "last-3-pick-old-and-tell", "worker_id": "R4JVC9QRY8DMEYH", "story_id": "47772", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we are all grouped for the group photo .", "storylet_id": "238861"}], [{"original_text": "This nice couple stopped by to compliment my bike.", "album_id": "72157594149306041", "photo_flickr_id": "156090430", "setting": "last-3-pick-old-and-tell", "worker_id": "R4JVC9QRY8DMEYH", "story_id": "47772", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this nice couple stopped by to compliment my bike .", "storylet_id": "238862"}], [{"original_text": "We took some more photos of the crew to remember the event.", "album_id": "72157594149306041", "photo_flickr_id": "156090274", "setting": "last-3-pick-old-and-tell", "worker_id": "R4JVC9QRY8DMEYH", "story_id": "47772", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took some more photos of the crew to remember the event .", "storylet_id": "238863"}], [{"original_text": "Afterwards, we sat around for a while deciding where to eat.", "album_id": "72157594149306041", "photo_flickr_id": "156090514", "setting": "last-3-pick-old-and-tell", "worker_id": "R4JVC9QRY8DMEYH", "story_id": "47772", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , we sat around for a while deciding where to eat .", "storylet_id": "238864"}], [{"original_text": "Bikers saluting the flag and getting ready to take off.", "album_id": "72157594149306041", "photo_flickr_id": "156090611", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47773", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "bikers saluting the flag and getting ready to take off .", "storylet_id": "238865"}], [{"original_text": "Here is a good one of the gang.", "album_id": "72157594149306041", "photo_flickr_id": "156090335", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47773", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is a good one of the gang .", "storylet_id": "238866"}], [{"original_text": "Here I am with my husband.", "album_id": "72157594149306041", "photo_flickr_id": "156090430", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47773", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here i am with my husband .", "storylet_id": "238867"}], [{"original_text": "Along with some of my relatives that came along.", "album_id": "72157594149306041", "photo_flickr_id": "156090274", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47773", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "along with some of my relatives that came along .", "storylet_id": "238868"}], [{"original_text": "Taking it easy and getting some rest.", "album_id": "72157594149306041", "photo_flickr_id": "156090514", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47773", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "taking it easy and getting some rest .", "storylet_id": "238869"}], [{"original_text": "The motorcyclists gathered for the Fourth of July celebration. ", "album_id": "72157594149306041", "photo_flickr_id": "156090611", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47774", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the motorcyclists gathered for the fourth of july celebration .", "storylet_id": "238870"}], [{"original_text": "They proudly posed with their bikes. ", "album_id": "72157594149306041", "photo_flickr_id": "156090335", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47774", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they proudly posed with their bikes .", "storylet_id": "238871"}], [{"original_text": "This older couple have been coming to the celebration for years. ", "album_id": "72157594149306041", "photo_flickr_id": "156090430", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47774", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this older couple have been coming to the celebration for years .", "storylet_id": "238872"}], [{"original_text": "This group of friends posed together for a photo. ", "album_id": "72157594149306041", "photo_flickr_id": "156090274", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47774", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this group of friends posed together for a photo .", "storylet_id": "238873"}], [{"original_text": "These three kicked back and enjoyed the show. ", "album_id": "72157594149306041", "photo_flickr_id": "156090514", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47774", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these three kicked back and enjoyed the show .", "storylet_id": "238874"}], [{"original_text": "When life gives you lemons.. make lemonade out of it.", "album_id": "72157594149296972", "photo_flickr_id": "156086274", "setting": "first-2-pick-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "47775", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when life gives you lemons.. make lemonade out of it .", "storylet_id": "238875"}], [{"original_text": "That what I did.", "album_id": "72157594149296972", "photo_flickr_id": "156088092", "setting": "first-2-pick-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "47775", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that what i did .", "storylet_id": "238876"}], [{"original_text": "At first i was quiet about it.", "album_id": "72157594149296972", "photo_flickr_id": "156087287", "setting": "first-2-pick-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "47775", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at first i was quiet about it .", "storylet_id": "238877"}], [{"original_text": "Until i met this guy. I love this guy", "album_id": "72157594149296972", "photo_flickr_id": "156087858", "setting": "first-2-pick-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "47775", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "until i met this guy . i love this guy", "storylet_id": "238878"}], [{"original_text": ". Now I am a open and proud about being gay", "album_id": "72157594149296972", "photo_flickr_id": "156088749", "setting": "first-2-pick-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "47775", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": ". now i am a open and proud about being gay", "storylet_id": "238879"}], [{"original_text": "The family gathered around the grill to celebrate.", "album_id": "72157594149296972", "photo_flickr_id": "156083361", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47776", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family gathered around the grill to celebrate .", "storylet_id": "238880"}], [{"original_text": "We had some shrimp skewers to cook on the barbie.", "album_id": "72157594149296972", "photo_flickr_id": "156083673", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47776", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had some shrimp skewers to cook on the barbie .", "storylet_id": "238881"}], [{"original_text": "Jimmy was having a little too much fun.", "album_id": "72157594149296972", "photo_flickr_id": "156086135", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47776", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was having a little too much fun .", "storylet_id": "238882"}], [{"original_text": "Caroline kept on trying to feed Blazer everything she was eating.", "album_id": "72157594149296972", "photo_flickr_id": "156087108", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47776", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] kept on trying to feed blazer everything she was eating .", "storylet_id": "238883"}], [{"original_text": "Jeff stole the camera and took some pictures of himself.", "album_id": "72157594149296972", "photo_flickr_id": "156088822", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47776", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] stole the camera and took some pictures of himself .", "storylet_id": "238884"}], [{"original_text": "We invited some people over for a barbeque today.", "album_id": "72157594149296972", "photo_flickr_id": "156083361", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47777", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we invited some people over for a barbeque today .", "storylet_id": "238885"}], [{"original_text": "We made some kababs.", "album_id": "72157594149296972", "photo_flickr_id": "156083673", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47777", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made some kababs .", "storylet_id": "238886"}], [{"original_text": "After that we had a little alcohol. We made margaritas!", "album_id": "72157594149296972", "photo_flickr_id": "156086135", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47777", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that we had a little alcohol . we made margaritas !", "storylet_id": "238887"}], [{"original_text": "The kids were distracted with the dog.", "album_id": "72157594149296972", "photo_flickr_id": "156087108", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47777", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids were distracted with the dog .", "storylet_id": "238888"}], [{"original_text": "After a few drinks I took a quick bathroom selfie.", "album_id": "72157594149296972", "photo_flickr_id": "156088822", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47777", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a few drinks i took a quick bathroom selfie .", "storylet_id": "238889"}], [{"original_text": "All of friends and family were at the house.", "album_id": "72157594149296972", "photo_flickr_id": "156083361", "setting": "last-3-pick-old-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "47778", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all of friends and family were at the house .", "storylet_id": "238890"}], [{"original_text": "Various foods were prepared for dinner.", "album_id": "72157594149296972", "photo_flickr_id": "156083673", "setting": "last-3-pick-old-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "47778", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "various foods were prepared for dinner .", "storylet_id": "238891"}], [{"original_text": "Everyone was having a great time.", "album_id": "72157594149296972", "photo_flickr_id": "156086135", "setting": "last-3-pick-old-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "47778", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was having a great time .", "storylet_id": "238892"}], [{"original_text": "The kids and animals bonded.", "album_id": "72157594149296972", "photo_flickr_id": "156087108", "setting": "last-3-pick-old-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "47778", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids and animals bonded .", "storylet_id": "238893"}], [{"original_text": "I even felt like taking a selfie.", "album_id": "72157594149296972", "photo_flickr_id": "156088822", "setting": "last-3-pick-old-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "47778", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i even felt like taking a selfie .", "storylet_id": "238894"}], [{"original_text": "I was cutting some lemons for lemonade.", "album_id": "72157594149296972", "photo_flickr_id": "156086274", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47779", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was cutting some lemons for lemonade .", "storylet_id": "238895"}], [{"original_text": "My friend stopped by to see what I was up to.", "album_id": "72157594149296972", "photo_flickr_id": "156088092", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47779", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend stopped by to see what i was up to .", "storylet_id": "238896"}], [{"original_text": "I told him I was making lemonade.", "album_id": "72157594149296972", "photo_flickr_id": "156087287", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47779", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i told him i was making lemonade .", "storylet_id": "238897"}], [{"original_text": "He thought that was strange for some reason.", "album_id": "72157594149296972", "photo_flickr_id": "156087858", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47779", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he thought that was strange for some reason .", "storylet_id": "238898"}], [{"original_text": "Then we went to the gay pride parade.", "album_id": "72157594149296972", "photo_flickr_id": "156088749", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "47779", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we went to the gay pride parade .", "storylet_id": "238899"}], [{"original_text": "there was a cookout with friends", "album_id": "72157594150383025", "photo_flickr_id": "156822286", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47780", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a cookout with friends", "storylet_id": "238900"}], [{"original_text": "and family met up for some stories", "album_id": "72157594150383025", "photo_flickr_id": "156823003", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47780", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and family met up for some stories", "storylet_id": "238901"}], [{"original_text": "and the kids played together", "album_id": "72157594150383025", "photo_flickr_id": "156823121", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47780", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the kids played together", "storylet_id": "238902"}], [{"original_text": "the parents loved seeing the babys", "album_id": "72157594150383025", "photo_flickr_id": "156823744", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47780", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the parents loved seeing the babys", "storylet_id": "238903"}], [{"original_text": "it was a wonderful day for kids and adults ", "album_id": "72157594150383025", "photo_flickr_id": "156824515", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "47780", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a wonderful day for kids and adults", "storylet_id": "238904"}], [{"original_text": "Mike arrived with the salmon and steaks.", "album_id": "72157594150383025", "photo_flickr_id": "156823003", "setting": "first-2-pick-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47781", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] arrived with the salmon and steaks .", "storylet_id": "238905"}], [{"original_text": "He got right to work on grilling everything just right.", "album_id": "72157594150383025", "photo_flickr_id": "156824174", "setting": "first-2-pick-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47781", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he got right to work on grilling everything just right .", "storylet_id": "238906"}], [{"original_text": "The kids sat in the driveway slurping icees and playing games.", "album_id": "72157594150383025", "photo_flickr_id": "156824515", "setting": "first-2-pick-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47781", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids sat in the driveway slurping icees and playing games .", "storylet_id": "238907"}], [{"original_text": "Ruby decide to be a little frisky for the camera.", "album_id": "72157594150383025", "photo_flickr_id": "156823121", "setting": "first-2-pick-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47781", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] decide to be a little frisky for the camera .", "storylet_id": "238908"}], [{"original_text": "Brandon seemed to have gotten into the ice cream, a fact which he solemnly denied.", "album_id": "72157594150383025", "photo_flickr_id": "156822863", "setting": "first-2-pick-and-tell", "worker_id": "WBHPFLXLINESO73", "story_id": "47781", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] seemed to have gotten into the ice cream , a fact which he solemnly denied .", "storylet_id": "238909"}], [{"original_text": "Picnic day with the family, this is gonna be fun.", "album_id": "72157594150383025", "photo_flickr_id": "156823003", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47782", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "picnic day with the family , this is gon na be fun .", "storylet_id": "238910"}], [{"original_text": "Here I am grilling these kids up some hot dogs.", "album_id": "72157594150383025", "photo_flickr_id": "156824174", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47782", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here i am grilling these kids up some hot dogs .", "storylet_id": "238911"}], [{"original_text": "The kids are so well behaved, patiently waiting for the food.", "album_id": "72157594150383025", "photo_flickr_id": "156824515", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47782", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids are so well behaved , patiently waiting for the food .", "storylet_id": "238912"}], [{"original_text": "Well, some of them are well behaved lol.", "album_id": "72157594150383025", "photo_flickr_id": "156823121", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47782", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "well , some of them are well behaved lol .", "storylet_id": "238913"}], [{"original_text": "He's too cute, he loves my cooking.", "album_id": "72157594150383025", "photo_flickr_id": "156822863", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47782", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he 's too cute , he loves my cooking .", "storylet_id": "238914"}], [{"original_text": "Friends and family came over for the cookout.", "album_id": "72157594150383025", "photo_flickr_id": "156823003", "setting": "last-3-pick-old-and-tell", "worker_id": "TLJI6IJP2C839IU", "story_id": "47783", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends and family came over for the cookout .", "storylet_id": "238915"}], [{"original_text": "Dad was on grill master duty.", "album_id": "72157594150383025", "photo_flickr_id": "156824174", "setting": "last-3-pick-old-and-tell", "worker_id": "TLJI6IJP2C839IU", "story_id": "47783", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dad was on grill master duty .", "storylet_id": "238916"}], [{"original_text": "The kids were entertained with games with one another.", "album_id": "72157594150383025", "photo_flickr_id": "156824515", "setting": "last-3-pick-old-and-tell", "worker_id": "TLJI6IJP2C839IU", "story_id": "47783", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids were entertained with games with one another .", "storylet_id": "238917"}], [{"original_text": "Silly faces were made by the toy tube.", "album_id": "72157594150383025", "photo_flickr_id": "156823121", "setting": "last-3-pick-old-and-tell", "worker_id": "TLJI6IJP2C839IU", "story_id": "47783", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "silly faces were made by the toy tube .", "storylet_id": "238918"}], [{"original_text": "The meal ended with ice cream (though some wore it on their face).", "album_id": "72157594150383025", "photo_flickr_id": "156822863", "setting": "last-3-pick-old-and-tell", "worker_id": "TLJI6IJP2C839IU", "story_id": "47783", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the meal ended with ice cream ( though some wore it on their face ) .", "storylet_id": "238919"}], [{"original_text": "Miranda smiles at me before the party began.", "album_id": "72157594150383025", "photo_flickr_id": "156822286", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "47784", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] smiles at me before the party began .", "storylet_id": "238920"}], [{"original_text": "The daddies had a little discussion before the party.", "album_id": "72157594150383025", "photo_flickr_id": "156823003", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "47784", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the daddies had a little discussion before the party .", "storylet_id": "238921"}], [{"original_text": "Miranda makes a silly face for the camera.", "album_id": "72157594150383025", "photo_flickr_id": "156823121", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "47784", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] makes a silly face for the camera .", "storylet_id": "238922"}], [{"original_text": "Saul holds his baby so she can see the activity.", "album_id": "72157594150383025", "photo_flickr_id": "156823744", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "47784", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] holds his baby so she can see the activity .", "storylet_id": "238923"}], [{"original_text": "The children waited with excitement for the singers to arrive.", "album_id": "72157594150383025", "photo_flickr_id": "156824515", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "47784", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the children waited with excitement for the singers to arrive .", "storylet_id": "238924"}], [{"original_text": "A fence alongside the river.", "album_id": "375116", "photo_flickr_id": "15575968", "setting": "first-2-pick-and-tell", "worker_id": "VHLRN1SKJC8DRU0", "story_id": "47785", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a fence alongside the river .", "storylet_id": "238925"}], [{"original_text": "A beautiful waterfall nearby.", "album_id": "375116", "photo_flickr_id": "15576766", "setting": "first-2-pick-and-tell", "worker_id": "VHLRN1SKJC8DRU0", "story_id": "47785", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a beautiful waterfall nearby .", "storylet_id": "238926"}], [{"original_text": "Two children horseplay along the riverbanks.", "album_id": "375116", "photo_flickr_id": "15577182", "setting": "first-2-pick-and-tell", "worker_id": "VHLRN1SKJC8DRU0", "story_id": "47785", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two children horseplay along the riverbanks .", "storylet_id": "238927"}], [{"original_text": "An insect on a leaf.", "album_id": "375116", "photo_flickr_id": "15582142", "setting": "first-2-pick-and-tell", "worker_id": "VHLRN1SKJC8DRU0", "story_id": "47785", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an insect on a leaf .", "storylet_id": "238928"}], [{"original_text": "A young boy strikes a pose.", "album_id": "375116", "photo_flickr_id": "15583406", "setting": "first-2-pick-and-tell", "worker_id": "VHLRN1SKJC8DRU0", "story_id": "47785", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a young boy strikes a pose .", "storylet_id": "238929"}], [{"original_text": "we took the kids on a nature walk", "album_id": "375116", "photo_flickr_id": "15577182", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47786", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took the kids on a nature walk", "storylet_id": "238930"}], [{"original_text": "we had such a good time", "album_id": "375116", "photo_flickr_id": "15576101", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47786", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had such a good time", "storylet_id": "238931"}], [{"original_text": "we found a dam", "album_id": "375116", "photo_flickr_id": "15576952", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47786", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we found a dam", "storylet_id": "238932"}], [{"original_text": "and a stream with a bridge", "album_id": "375116", "photo_flickr_id": "15582736", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47786", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and a stream with a bridge", "storylet_id": "238933"}], [{"original_text": "as well as some wild flowers", "album_id": "375116", "photo_flickr_id": "15582974", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47786", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as well as some wild flowers", "storylet_id": "238934"}], [{"original_text": "We took the at risk youth out to a field trip closer to nature.", "album_id": "375116", "photo_flickr_id": "15575968", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "47787", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took the at risk youth out to a field trip closer to nature .", "storylet_id": "238935"}], [{"original_text": "We took them to see waterfalls.", "album_id": "375116", "photo_flickr_id": "15576766", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "47787", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took them to see waterfalls .", "storylet_id": "238936"}], [{"original_text": "These two brothers are part of the program and play a bit too rough for our tastes.", "album_id": "375116", "photo_flickr_id": "15577182", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "47787", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these two brothers are part of the program and play a bit too rough for our tastes .", "storylet_id": "238937"}], [{"original_text": "We took their attention away from their violent play and towards vegetation. ", "album_id": "375116", "photo_flickr_id": "15582142", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "47787", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took their attention away from their violent play and towards vegetation .", "storylet_id": "238938"}], [{"original_text": "We don't think the trip was a success.", "album_id": "375116", "photo_flickr_id": "15583406", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "47787", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we do n't think the trip was a success .", "storylet_id": "238939"}], [{"original_text": "I love to travel", "album_id": "375116", "photo_flickr_id": "15577182", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47788", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love to travel", "storylet_id": "238940"}], [{"original_text": "This place is amazing", "album_id": "375116", "photo_flickr_id": "15576101", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47788", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this place is amazing", "storylet_id": "238941"}], [{"original_text": "So much to see", "album_id": "375116", "photo_flickr_id": "15576952", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47788", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so much to see", "storylet_id": "238942"}], [{"original_text": "and do", "album_id": "375116", "photo_flickr_id": "15582736", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47788", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and do", "storylet_id": "238943"}], [{"original_text": "I love this place", "album_id": "375116", "photo_flickr_id": "15582974", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47788", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love this place", "storylet_id": "238944"}], [{"original_text": "Nature walks are a good way for children to get exercise and learn about the world around them. ", "album_id": "375116", "photo_flickr_id": "15577182", "setting": "last-3-pick-old-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "47789", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "nature walks are a good way for children to get exercise and learn about the world around them .", "storylet_id": "238945"}], [{"original_text": "Rushing, falling water can teach them about gravity, waterflow, inertia and speed.", "album_id": "375116", "photo_flickr_id": "15576101", "setting": "last-3-pick-old-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "47789", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "rushing , falling water can teach them about gravity , waterflow , inertia and speed .", "storylet_id": "238946"}], [{"original_text": "They can even learn from man made structures meant to control water.", "album_id": "375116", "photo_flickr_id": "15576952", "setting": "last-3-pick-old-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "47789", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they can even learn from man made structures meant to control water .", "storylet_id": "238947"}], [{"original_text": "A calm body of water will let them explore wildlife that inhabit the water and surrounding area. ", "album_id": "375116", "photo_flickr_id": "15582736", "setting": "last-3-pick-old-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "47789", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a calm body of water will let them explore wildlife that inhabit the water and surrounding area .", "storylet_id": "238948"}], [{"original_text": "They can even learn about local flora. ", "album_id": "375116", "photo_flickr_id": "15582974", "setting": "last-3-pick-old-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "47789", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they can even learn about local flora .", "storylet_id": "238949"}], [{"original_text": "Everyone came over for our yearly Thanksgiving meal. The kids had been playing most of the day.", "album_id": "1699506", "photo_flickr_id": "79408514", "setting": "first-2-pick-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "47790", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone came over for our yearly thanksgiving meal . the kids had been playing most of the day .", "storylet_id": "238950"}], [{"original_text": "Bill and Susan couldn't stay awake long enough for supper.", "album_id": "1699506", "photo_flickr_id": "79408119", "setting": "first-2-pick-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "47790", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] and [female] could n't stay awake long enough for supper .", "storylet_id": "238951"}], [{"original_text": "Finally the meal was ready everyone gathered around the table.", "album_id": "1699506", "photo_flickr_id": "79408789", "setting": "first-2-pick-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "47790", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally the meal was ready everyone gathered around the table .", "storylet_id": "238952"}], [{"original_text": "Bill was falling asleep all throughout supper.", "album_id": "1699506", "photo_flickr_id": "79408611", "setting": "first-2-pick-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "47790", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was falling asleep all throughout supper .", "storylet_id": "238953"}], [{"original_text": "Once he was so tired his head fell into his soup.", "album_id": "1699506", "photo_flickr_id": "79408569", "setting": "first-2-pick-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "47790", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once he was so tired his head fell into his soup .", "storylet_id": "238954"}], [{"original_text": "We arrived at our beach house late at night.", "album_id": "1699506", "photo_flickr_id": "79408199", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47791", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at our beach house late at night .", "storylet_id": "238955"}], [{"original_text": "I was there with my family.", "album_id": "1699506", "photo_flickr_id": "79411764", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47791", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was there with my family .", "storylet_id": "238956"}], [{"original_text": "In the morning, we walked on the shore.", "album_id": "1699506", "photo_flickr_id": "79408862", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47791", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in the morning , we walked on the shore .", "storylet_id": "238957"}], [{"original_text": "Here are my mother and sister walking around.", "album_id": "1699506", "photo_flickr_id": "79410593", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47791", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here are my mother and sister walking around .", "storylet_id": "238958"}], [{"original_text": "The view from the shore was beautiful.", "album_id": "1699506", "photo_flickr_id": "79411406", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47791", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view from the shore was beautiful .", "storylet_id": "238959"}], [{"original_text": "We took a look at the beach in the night air. We were to excited to wait till morning to see the beach!", "album_id": "1699506", "photo_flickr_id": "79408514", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "47792", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a look at the beach in the night air . we were to excited to wait till morning to see the beach !", "storylet_id": "238960"}], [{"original_text": "We got to our hotel late, it was beautiful. Can't wait to hit the beach tomorrow.", "album_id": "1699506", "photo_flickr_id": "79408119", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "47792", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to our hotel late , it was beautiful . ca n't wait to hit the beach tomorrow .", "storylet_id": "238961"}], [{"original_text": "Waking up to smell of the ocean air and sounds of the waves, is something we will never forget.", "album_id": "1699506", "photo_flickr_id": "79408789", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "47792", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "waking up to smell of the ocean air and sounds of the waves , is something we will never forget .", "storylet_id": "238962"}], [{"original_text": "We posted this pic on FB and all our friends liked it. ", "album_id": "1699506", "photo_flickr_id": "79408611", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "47792", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we posted this pic on fb and all our friends liked it .", "storylet_id": "238963"}], [{"original_text": "We are definitely coming back here again!", "album_id": "1699506", "photo_flickr_id": "79408569", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "47792", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we are definitely coming back here again !", "storylet_id": "238964"}], [{"original_text": "I love to travel", "album_id": "1699506", "photo_flickr_id": "79408514", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47793", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love to travel", "storylet_id": "238965"}], [{"original_text": "This place is amazing", "album_id": "1699506", "photo_flickr_id": "79408119", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47793", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this place is amazing", "storylet_id": "238966"}], [{"original_text": "So much to see", "album_id": "1699506", "photo_flickr_id": "79408789", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47793", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so much to see", "storylet_id": "238967"}], [{"original_text": "and do ", "album_id": "1699506", "photo_flickr_id": "79408611", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47793", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and do", "storylet_id": "238968"}], [{"original_text": "I love this place", "album_id": "1699506", "photo_flickr_id": "79408569", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47793", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love this place", "storylet_id": "238969"}], [{"original_text": "Taking this trip to the beach, was the best idea ever.", "album_id": "1699506", "photo_flickr_id": "79408514", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "47794", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "taking this trip to the beach , was the best idea ever .", "storylet_id": "238970"}], [{"original_text": "The light illuminating the water way was tranquil. ", "album_id": "1699506", "photo_flickr_id": "79408119", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "47794", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the light illuminating the water way was tranquil .", "storylet_id": "238971"}], [{"original_text": "The water had receded just enough to see the beautiful sand.", "album_id": "1699506", "photo_flickr_id": "79408789", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "47794", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water had receded just enough to see the beautiful sand .", "storylet_id": "238972"}], [{"original_text": "A closeup of us all together, just having a blast.", "album_id": "1699506", "photo_flickr_id": "79408611", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "47794", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a closeup of us all together , just having a blast .", "storylet_id": "238973"}], [{"original_text": "A memory for the books.", "album_id": "1699506", "photo_flickr_id": "79408569", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "47794", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a memory for the books .", "storylet_id": "238974"}], [{"original_text": "One day we decided to take a hike through the forest.", "album_id": "72057594091145852", "photo_flickr_id": "118261131", "setting": "first-2-pick-and-tell", "worker_id": "I5O0CD9SCPN5VOA", "story_id": "47795", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one day we decided to take a hike through the forest .", "storylet_id": "238975"}], [{"original_text": "Eventually we got to a road and followed that instead.", "album_id": "72057594091145852", "photo_flickr_id": "118263158", "setting": "first-2-pick-and-tell", "worker_id": "I5O0CD9SCPN5VOA", "story_id": "47795", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "eventually we got to a road and followed that instead .", "storylet_id": "238976"}], [{"original_text": "There were some animals along the side, including some cows.", "album_id": "72057594091145852", "photo_flickr_id": "118265697", "setting": "first-2-pick-and-tell", "worker_id": "I5O0CD9SCPN5VOA", "story_id": "47795", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some animals along the side , including some cows .", "storylet_id": "238977"}], [{"original_text": "We also found a farm that had some goats.", "album_id": "72057594091145852", "photo_flickr_id": "118268111", "setting": "first-2-pick-and-tell", "worker_id": "I5O0CD9SCPN5VOA", "story_id": "47795", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also found a farm that had some goats .", "storylet_id": "238978"}], [{"original_text": "Soon we were back in the forest, hiking again.", "album_id": "72057594091145852", "photo_flickr_id": "118269774", "setting": "first-2-pick-and-tell", "worker_id": "I5O0CD9SCPN5VOA", "story_id": "47795", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "soon we were back in the forest , hiking again .", "storylet_id": "238979"}], [{"original_text": "The tree branches here had a weird green color to them.", "album_id": "72057594091145852", "photo_flickr_id": "118262891", "setting": "first-2-pick-and-tell", "worker_id": "9MD8RCSYAC9UIE5", "story_id": "47796", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tree branches here had a weird green color to them .", "storylet_id": "238980"}], [{"original_text": "There was a big gate to keep the cows in.", "album_id": "72057594091145852", "photo_flickr_id": "118265428", "setting": "first-2-pick-and-tell", "worker_id": "9MD8RCSYAC9UIE5", "story_id": "47796", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a big gate to keep the cows in .", "storylet_id": "238981"}], [{"original_text": "Here we stopped and found some pretty flowers.", "album_id": "72057594091145852", "photo_flickr_id": "118267158", "setting": "first-2-pick-and-tell", "worker_id": "9MD8RCSYAC9UIE5", "story_id": "47796", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here we stopped and found some pretty flowers .", "storylet_id": "238982"}], [{"original_text": "This is the farmhouse where the animals are.", "album_id": "72057594091145852", "photo_flickr_id": "118267858", "setting": "first-2-pick-and-tell", "worker_id": "9MD8RCSYAC9UIE5", "story_id": "47796", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the farmhouse where the animals are .", "storylet_id": "238983"}], [{"original_text": "And here is some of the goats that were inside.", "album_id": "72057594091145852", "photo_flickr_id": "118268111", "setting": "first-2-pick-and-tell", "worker_id": "9MD8RCSYAC9UIE5", "story_id": "47796", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and here is some of the goats that were inside .", "storylet_id": "238984"}], [{"original_text": "We had been in a drought recently.", "album_id": "72057594091145852", "photo_flickr_id": "118261131", "setting": "last-3-pick-old-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47797", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had been in a drought recently .", "storylet_id": "238985"}], [{"original_text": "But it finally rained. The road is damp.", "album_id": "72057594091145852", "photo_flickr_id": "118263158", "setting": "last-3-pick-old-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47797", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but it finally rained . the road is damp .", "storylet_id": "238986"}], [{"original_text": "And the cows are enjoying the fields.", "album_id": "72057594091145852", "photo_flickr_id": "118265697", "setting": "last-3-pick-old-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47797", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the cows are enjoying the fields .", "storylet_id": "238987"}], [{"original_text": "These babies want to come out and play.", "album_id": "72057594091145852", "photo_flickr_id": "118268111", "setting": "last-3-pick-old-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47797", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these babies want to come out and play .", "storylet_id": "238988"}], [{"original_text": "This is some of the damage from the drought. Tree roots are really exposed.", "album_id": "72057594091145852", "photo_flickr_id": "118269774", "setting": "last-3-pick-old-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47797", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is some of the damage from the drought . tree roots are really exposed .", "storylet_id": "238989"}], [{"original_text": "Deep in the forest in a far away land, the trees were exceptionally straight. ", "album_id": "72057594091145852", "photo_flickr_id": "118261131", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47798", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "deep in the forest in a far away land , the trees were exceptionally straight .", "storylet_id": "238990"}], [{"original_text": "There was a secret road. ", "album_id": "72057594091145852", "photo_flickr_id": "118263158", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47798", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a secret road .", "storylet_id": "238991"}], [{"original_text": "And a magic cow. ", "album_id": "72057594091145852", "photo_flickr_id": "118265697", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47798", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and a magic cow .", "storylet_id": "238992"}], [{"original_text": "The magic cow had a two headed calf. ", "album_id": "72057594091145852", "photo_flickr_id": "118268111", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47798", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the magic cow had a two headed calf .", "storylet_id": "238993"}], [{"original_text": "Only one man knew where it was or what its magic could do. ", "album_id": "72057594091145852", "photo_flickr_id": "118269774", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47798", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "only one man knew where it was or what its magic could do .", "storylet_id": "238994"}], [{"original_text": "In the forest, hidden almost away from view was a large patch of land owned by a local farmer.", "album_id": "72057594091145852", "photo_flickr_id": "118262891", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "47799", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the forest , hidden almost away from view was a large patch of land owned by a local farmer .", "storylet_id": "238995"}], [{"original_text": "There wasn't any indication that anyone lived on the land, that is unless one discovered an old gate leading to the property.", "album_id": "72057594091145852", "photo_flickr_id": "118265428", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "47799", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was n't any indication that anyone lived on the land , that is unless one discovered an old gate leading to the property .", "storylet_id": "238996"}], [{"original_text": "Amongst the field there were also beautiful wildflowers that lined the fence and the farmer's property.", "album_id": "72057594091145852", "photo_flickr_id": "118267158", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "47799", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "amongst the field there were also beautiful wildflowers that lined the fence and the farmer 's property .", "storylet_id": "238997"}], [{"original_text": "Once inside, one would come to a large building that seemed abandoned on first glance.", "album_id": "72057594091145852", "photo_flickr_id": "118267858", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "47799", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once inside , one would come to a large building that seemed abandoned on first glance .", "storylet_id": "238998"}], [{"original_text": "However, if one were to venture inside they would find an array of different livestock and animals. ", "album_id": "72057594091145852", "photo_flickr_id": "118268111", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "47799", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , if one were to venture inside they would find an array of different livestock and animals .", "storylet_id": "238999"}], [{"original_text": "Today we rode our bikes to the beach.", "album_id": "72057594135262167", "photo_flickr_id": "146743025", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47800", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we rode our bikes to the beach .", "storylet_id": "239000"}], [{"original_text": "The traffic wasn't too bad.", "album_id": "72057594135262167", "photo_flickr_id": "146742164", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47800", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the traffic was n't too bad .", "storylet_id": "239001"}], [{"original_text": "We went to watch the seals sun themselves on the beach.", "album_id": "72057594135262167", "photo_flickr_id": "146742685", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47800", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went to watch the seals sun themselves on the beach .", "storylet_id": "239002"}], [{"original_text": "One of them preferred a little privacy on a rock by himself.", "album_id": "72057594135262167", "photo_flickr_id": "146742856", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47800", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of them preferred a little privacy on a rock by himself .", "storylet_id": "239003"}], [{"original_text": "The littlest one decided it was time for a swim.", "album_id": "72057594135262167", "photo_flickr_id": "146742967", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47800", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the littlest one decided it was time for a swim .", "storylet_id": "239004"}], [{"original_text": "The three of us decided to go on a bike ride ", "album_id": "72057594135262167", "photo_flickr_id": "146741160", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "47801", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the three of us decided to go on a bike ride", "storylet_id": "239005"}], [{"original_text": "We rode for hours down all the neighborhood streets ", "album_id": "72057594135262167", "photo_flickr_id": "146741979", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "47801", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we rode for hours down all the neighborhood streets", "storylet_id": "239006"}], [{"original_text": "We rode down to the stream ", "album_id": "72057594135262167", "photo_flickr_id": "146742317", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "47801", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we rode down to the stream", "storylet_id": "239007"}], [{"original_text": "Then stopped to get our photo taken ", "album_id": "72057594135262167", "photo_flickr_id": "146742627", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "47801", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then stopped to get our photo taken", "storylet_id": "239008"}], [{"original_text": "After that we rode yo the beach and took a long walk ", "album_id": "72057594135262167", "photo_flickr_id": "146742685", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "47801", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that we rode yo the beach and took a long walk", "storylet_id": "239009"}], [{"original_text": "We are taking a bike ride over to the shore.", "album_id": "72057594135262167", "photo_flickr_id": "146743025", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47802", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are taking a bike ride over to the shore .", "storylet_id": "239010"}], [{"original_text": "The rode has it's own bike lane which is nice.", "album_id": "72057594135262167", "photo_flickr_id": "146742164", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47802", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rode has it 's own bike lane which is nice .", "storylet_id": "239011"}], [{"original_text": "We finally made it over, and there are seals all over beach.", "album_id": "72057594135262167", "photo_flickr_id": "146742685", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47802", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we finally made it over , and there are seals all over beach .", "storylet_id": "239012"}], [{"original_text": "The rocks are very close to the shore on this side.", "album_id": "72057594135262167", "photo_flickr_id": "146742856", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47802", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rocks are very close to the shore on this side .", "storylet_id": "239013"}], [{"original_text": "It is fun watching the seals swim around the beach.", "album_id": "72057594135262167", "photo_flickr_id": "146742967", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47802", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is fun watching the seals swim around the beach .", "storylet_id": "239014"}], [{"original_text": "The family riding our bikes and getting exercise.", "album_id": "72057594135262167", "photo_flickr_id": "146743025", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47803", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family riding our bikes and getting exercise .", "storylet_id": "239015"}], [{"original_text": "Look at us go, I hope I don't wreck.", "album_id": "72057594135262167", "photo_flickr_id": "146742164", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47803", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look at us go , i hope i do n't wreck .", "storylet_id": "239016"}], [{"original_text": "The seals were on the beach getting some sun.", "album_id": "72057594135262167", "photo_flickr_id": "146742685", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47803", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the seals were on the beach getting some sun .", "storylet_id": "239017"}], [{"original_text": "Some of the stayed in the water.", "album_id": "72057594135262167", "photo_flickr_id": "146742856", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47803", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the stayed in the water .", "storylet_id": "239018"}], [{"original_text": "They are going back to the water where they belong.", "album_id": "72057594135262167", "photo_flickr_id": "146742967", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47803", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are going back to the water where they belong .", "storylet_id": "239019"}], [{"original_text": "Mother and sons prepared for their bike ride.", "album_id": "72057594135262167", "photo_flickr_id": "146743025", "setting": "last-3-pick-old-and-tell", "worker_id": "TLJI6IJP2C839IU", "story_id": "47804", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mother and sons prepared for their bike ride .", "storylet_id": "239020"}], [{"original_text": "They wore helmets and traveled in the bike lane to the beach.", "album_id": "72057594135262167", "photo_flickr_id": "146742164", "setting": "last-3-pick-old-and-tell", "worker_id": "TLJI6IJP2C839IU", "story_id": "47804", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they wore helmets and traveled in the bike lane to the beach .", "storylet_id": "239021"}], [{"original_text": "At the beach they saw seals sunning themselves.", "album_id": "72057594135262167", "photo_flickr_id": "146742685", "setting": "last-3-pick-old-and-tell", "worker_id": "TLJI6IJP2C839IU", "story_id": "47804", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the beach they saw seals sunning themselves .", "storylet_id": "239022"}], [{"original_text": "Some of the seals went for a swim...", "album_id": "72057594135262167", "photo_flickr_id": "146742856", "setting": "last-3-pick-old-and-tell", "worker_id": "TLJI6IJP2C839IU", "story_id": "47804", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the seals went for a swim ...", "storylet_id": "239023"}], [{"original_text": "and some of the seals made a splash!", "album_id": "72057594135262167", "photo_flickr_id": "146742967", "setting": "last-3-pick-old-and-tell", "worker_id": "TLJI6IJP2C839IU", "story_id": "47804", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and some of the seals made a splash !", "storylet_id": "239024"}], [{"original_text": "This year I went home to spend Mother's Day with Mom and Grandma.", "album_id": "72057594136696437", "photo_flickr_id": "147651862", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "47805", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this year i went home to spend mother 's day with mom and grandma .", "storylet_id": "239025"}], [{"original_text": "I gave my mom a homemade greeting card which she simply adored.", "album_id": "72057594136696437", "photo_flickr_id": "147652834", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "47805", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i gave my mom a homemade greeting card which she simply adored .", "storylet_id": "239026"}], [{"original_text": "Mom got some of her favorite gum as a gift.", "album_id": "72057594136696437", "photo_flickr_id": "147652533", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "47805", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom got some of her favorite gum as a gift .", "storylet_id": "239027"}], [{"original_text": "I also got to spend time with the cat.", "album_id": "72057594136696437", "photo_flickr_id": "147652890", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "47805", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also got to spend time with the cat .", "storylet_id": "239028"}], [{"original_text": "We had a delicious strawberry pie after dinner.", "album_id": "72057594136696437", "photo_flickr_id": "147652186", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "47805", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a delicious strawberry pie after dinner .", "storylet_id": "239029"}], [{"original_text": "Everyone got together for Mother's Day.", "album_id": "72057594136696437", "photo_flickr_id": "147651626", "setting": "first-2-pick-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47806", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone got together for mother 's day .", "storylet_id": "239030"}], [{"original_text": "Three generations sat at the table for a big lunch.", "album_id": "72057594136696437", "photo_flickr_id": "147651862", "setting": "first-2-pick-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47806", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "three generations sat at the table for a big lunch .", "storylet_id": "239031"}], [{"original_text": "Then it was time for a delicious cake.", "album_id": "72057594136696437", "photo_flickr_id": "147652058", "setting": "first-2-pick-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47806", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then it was time for a delicious cake .", "storylet_id": "239032"}], [{"original_text": "After that they gave each other Mother's Day cards. ", "album_id": "72057594136696437", "photo_flickr_id": "147652740", "setting": "first-2-pick-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47806", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that they gave each other mother 's day cards .", "storylet_id": "239033"}], [{"original_text": "Finally the cat got some attention to during the visit.", "album_id": "72057594136696437", "photo_flickr_id": "147652890", "setting": "first-2-pick-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47806", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the cat got some attention to during the visit .", "storylet_id": "239034"}], [{"original_text": "Grandma was ready for the day.", "album_id": "72057594136696437", "photo_flickr_id": "147651626", "setting": "last-3-pick-old-and-tell", "worker_id": "4H5P8BL41VAAFOQ", "story_id": "47807", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandma was ready for the day .", "storylet_id": "239035"}], [{"original_text": "After her nap, she sat down to eat with her family.", "album_id": "72057594136696437", "photo_flickr_id": "147651862", "setting": "last-3-pick-old-and-tell", "worker_id": "4H5P8BL41VAAFOQ", "story_id": "47807", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after her nap , she sat down to eat with her family .", "storylet_id": "239036"}], [{"original_text": "After their meal, they had some cake.", "album_id": "72057594136696437", "photo_flickr_id": "147652058", "setting": "last-3-pick-old-and-tell", "worker_id": "4H5P8BL41VAAFOQ", "story_id": "47807", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after their meal , they had some cake .", "storylet_id": "239037"}], [{"original_text": "After cake they passed out their cards.", "album_id": "72057594136696437", "photo_flickr_id": "147652740", "setting": "last-3-pick-old-and-tell", "worker_id": "4H5P8BL41VAAFOQ", "story_id": "47807", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after cake they passed out their cards .", "storylet_id": "239038"}], [{"original_text": "When the day was done, they relaxed for the evening. ", "album_id": "72057594136696437", "photo_flickr_id": "147652890", "setting": "last-3-pick-old-and-tell", "worker_id": "4H5P8BL41VAAFOQ", "story_id": "47807", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the day was done , they relaxed for the evening .", "storylet_id": "239039"}], [{"original_text": "the family gathered for mother's day. ", "album_id": "72057594136696437", "photo_flickr_id": "147651862", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "47808", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family gathered for mother 's day .", "storylet_id": "239040"}], [{"original_text": "this woman received a card. ", "album_id": "72057594136696437", "photo_flickr_id": "147652834", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "47808", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this woman received a card .", "storylet_id": "239041"}], [{"original_text": "she also got a sears gift card. ", "album_id": "72057594136696437", "photo_flickr_id": "147652533", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "47808", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she also got a sears gift card .", "storylet_id": "239042"}], [{"original_text": "afterwards they played with the cat. ", "album_id": "72057594136696437", "photo_flickr_id": "147652890", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "47808", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards they played with the cat .", "storylet_id": "239043"}], [{"original_text": "they ate delicious strawberry cheesecake after dinner. ", "album_id": "72057594136696437", "photo_flickr_id": "147652186", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "47808", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ate delicious strawberry cheesecake after dinner .", "storylet_id": "239044"}], [{"original_text": "I've always been good at gift giving, but my grandmother's 90th birthday was tricky aside from a meal with her friends. ", "album_id": "72057594136696437", "photo_flickr_id": "147651862", "setting": "last-3-pick-old-and-tell", "worker_id": "BW91YVF5JOFT4E9", "story_id": "47809", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 've always been good at gift giving , but my grandmother 's 90th birthday was tricky aside from a meal with her friends .", "storylet_id": "239045"}], [{"original_text": "I figured a homemade card would be nice.", "album_id": "72057594136696437", "photo_flickr_id": "147652834", "setting": "last-3-pick-old-and-tell", "worker_id": "BW91YVF5JOFT4E9", "story_id": "47809", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i figured a homemade card would be nice .", "storylet_id": "239046"}], [{"original_text": "But the actual gift stumped me, and all I could think of was a gag gift and a gift certificate. ", "album_id": "72057594136696437", "photo_flickr_id": "147652533", "setting": "last-3-pick-old-and-tell", "worker_id": "BW91YVF5JOFT4E9", "story_id": "47809", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but the actual gift stumped me , and all i could think of was a gag gift and a gift certificate .", "storylet_id": "239047"}], [{"original_text": "I think she was just happy to see me, all young and full of joy. ", "album_id": "72057594136696437", "photo_flickr_id": "147652890", "setting": "last-3-pick-old-and-tell", "worker_id": "BW91YVF5JOFT4E9", "story_id": "47809", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i think she was just happy to see me , all young and full of joy .", "storylet_id": "239048"}], [{"original_text": "Her neighbor was nice enough to make a cake, but due to a variety of dietary restrictions among the others, I was the only one who took a slice.", "album_id": "72057594136696437", "photo_flickr_id": "147652186", "setting": "last-3-pick-old-and-tell", "worker_id": "BW91YVF5JOFT4E9", "story_id": "47809", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her neighbor was nice enough to make a cake , but due to a variety of dietary restrictions among the others , i was the only one who took a slice .", "storylet_id": "239049"}], [{"original_text": "We threw Granny a big birthday party.", "album_id": "72157594357207240", "photo_flickr_id": "286774142", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47810", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we threw granny a big birthday party .", "storylet_id": "239050"}], [{"original_text": "Mom came and got a photo with Gran.", "album_id": "72157594357207240", "photo_flickr_id": "286774149", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47810", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom came and got a photo with gran .", "storylet_id": "239051"}], [{"original_text": "A lot of family showed up for the party.", "album_id": "72157594357207240", "photo_flickr_id": "286774190", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47810", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lot of family showed up for the party .", "storylet_id": "239052"}], [{"original_text": "We met some new people too.", "album_id": "72157594357207240", "photo_flickr_id": "286774165", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47810", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we met some new people too .", "storylet_id": "239053"}], [{"original_text": "Grandpa even came and hung out with the younger women.", "album_id": "72157594357207240", "photo_flickr_id": "286774206", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47810", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandpa even came and hung out with the younger women .", "storylet_id": "239054"}], [{"original_text": "We all gathered at grandma's house for her birthday.", "album_id": "72157594357207240", "photo_flickr_id": "286774142", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "47811", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all gathered at grandma 's house for her birthday .", "storylet_id": "239055"}], [{"original_text": "We hadn't seen each other in a while.", "album_id": "72157594357207240", "photo_flickr_id": "286774214", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "47811", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had n't seen each other in a while .", "storylet_id": "239056"}], [{"original_text": "It was great to catch up with the cousins", "album_id": "72157594357207240", "photo_flickr_id": "286774224", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "47811", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was great to catch up with the cousins", "storylet_id": "239057"}], [{"original_text": "and aunts.", "album_id": "72157594357207240", "photo_flickr_id": "286774190", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "47811", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and aunts .", "storylet_id": "239058"}], [{"original_text": "We celebrated with cake and laughter.", "album_id": "72157594357207240", "photo_flickr_id": "286774160", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "47811", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we celebrated with cake and laughter .", "storylet_id": "239059"}], [{"original_text": "The whole family came out for grandma's birthday", "album_id": "72157594357207240", "photo_flickr_id": "286774142", "setting": "last-3-pick-old-and-tell", "worker_id": "NAL4OGXAKB9J4G3", "story_id": "47812", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family came out for grandma 's birthday", "storylet_id": "239060"}], [{"original_text": "Grandma's eldest daughter traveled from afar to be there. ", "album_id": "72157594357207240", "photo_flickr_id": "286774149", "setting": "last-3-pick-old-and-tell", "worker_id": "NAL4OGXAKB9J4G3", "story_id": "47812", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma 's eldest daughter traveled from afar to be there .", "storylet_id": "239061"}], [{"original_text": "The grandkids were there with their mom too.", "album_id": "72157594357207240", "photo_flickr_id": "286774190", "setting": "last-3-pick-old-and-tell", "worker_id": "NAL4OGXAKB9J4G3", "story_id": "47812", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the grandkids were there with their mom too .", "storylet_id": "239062"}], [{"original_text": "Even the next-door neighbors showed up to celebrate grandma.", "album_id": "72157594357207240", "photo_flickr_id": "286774165", "setting": "last-3-pick-old-and-tell", "worker_id": "NAL4OGXAKB9J4G3", "story_id": "47812", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the next-door neighbors showed up to celebrate grandma .", "storylet_id": "239063"}], [{"original_text": "Many generations gathered and had a good time. ", "album_id": "72157594357207240", "photo_flickr_id": "286774206", "setting": "last-3-pick-old-and-tell", "worker_id": "NAL4OGXAKB9J4G3", "story_id": "47812", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many generations gathered and had a good time .", "storylet_id": "239064"}], [{"original_text": "Mom had received lots of gifts on her birthday.", "album_id": "72157594357207240", "photo_flickr_id": "286774142", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47813", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom had received lots of gifts on her birthday .", "storylet_id": "239065"}], [{"original_text": "Geoff and mom posing for a picture together.", "album_id": "72157594357207240", "photo_flickr_id": "286774214", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47813", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "geoff and mom posing for a picture together .", "storylet_id": "239066"}], [{"original_text": "Geoff and Amy making funny faces for the camera.", "album_id": "72157594357207240", "photo_flickr_id": "286774224", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47813", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "geoff and [female] making funny faces for the camera .", "storylet_id": "239067"}], [{"original_text": "Geoff, Terry, and Amy posing for a shot.", "album_id": "72157594357207240", "photo_flickr_id": "286774190", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47813", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "geoff , [male] , and [female] posing for a shot .", "storylet_id": "239068"}], [{"original_text": "Julia, Geoff, and Terry together again.", "album_id": "72157594357207240", "photo_flickr_id": "286774160", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "47813", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] , geoff , and [male] together again .", "storylet_id": "239069"}], [{"original_text": "Grandma Annie's birthday was Sunday. ", "album_id": "72157594357207240", "photo_flickr_id": "286774142", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47814", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandma [female] 's birthday was sunday .", "storylet_id": "239070"}], [{"original_text": "She was really happy that her grandson Jack was in the area and made it to the little gathering. ", "album_id": "72157594357207240", "photo_flickr_id": "286774214", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47814", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was really happy that her grandson [male] was in the area and made it to the little gathering .", "storylet_id": "239071"}], [{"original_text": "Jack is a pro wrestler and is quite the villain on TV. ", "album_id": "72157594357207240", "photo_flickr_id": "286774224", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47814", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] is a pro wrestler and is quite the villain on tv .", "storylet_id": "239072"}], [{"original_text": "But here was family, he was just one of the guys. ", "album_id": "72157594357207240", "photo_flickr_id": "286774190", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47814", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but here was family , he was just one of the guys .", "storylet_id": "239073"}], [{"original_text": "And everyone seemed to love him, Heel or not. ", "album_id": "72157594357207240", "photo_flickr_id": "286774160", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47814", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and everyone seemed to love him , heel or not .", "storylet_id": "239074"}], [{"original_text": "A old man was sitting at his house. ", "album_id": "72157594369842318", "photo_flickr_id": "294148678", "setting": "first-2-pick-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "47815", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a old man was sitting at his house .", "storylet_id": "239075"}], [{"original_text": "His daughter visited him and showed several interesting pictures from her last trip. ", "album_id": "72157594369842318", "photo_flickr_id": "294148838", "setting": "first-2-pick-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "47815", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his daughter visited him and showed several interesting pictures from her last trip .", "storylet_id": "239076"}], [{"original_text": "There was a lot of unusual fish sculptures. ", "album_id": "72157594369842318", "photo_flickr_id": "294153506", "setting": "first-2-pick-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "47815", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a lot of unusual fish sculptures .", "storylet_id": "239077"}], [{"original_text": "They were pretty amusing and funny.", "album_id": "72157594369842318", "photo_flickr_id": "294153313", "setting": "first-2-pick-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "47815", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were pretty amusing and funny .", "storylet_id": "239078"}], [{"original_text": "Even places these fishes located were strange. ", "album_id": "72157594369842318", "photo_flickr_id": "294154253", "setting": "first-2-pick-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "47815", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even places these fishes located were strange .", "storylet_id": "239079"}], [{"original_text": "Grandpa has been doing art for the last 50 years.", "album_id": "72157594369842318", "photo_flickr_id": "294148678", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "47816", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandpa has been doing art for the last 50 years .", "storylet_id": "239080"}], [{"original_text": "He loves to make huge pieces out of wood. ", "album_id": "72157594369842318", "photo_flickr_id": "294149517", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "47816", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he loves to make huge pieces out of wood .", "storylet_id": "239081"}], [{"original_text": "He has been working on several fish sculptures.", "album_id": "72157594369842318", "photo_flickr_id": "294151161", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "47816", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he has been working on several fish sculptures .", "storylet_id": "239082"}], [{"original_text": "The local bank bought one to place near their wishing pond.", "album_id": "72157594369842318", "photo_flickr_id": "294151585", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "47816", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the local bank bought one to place near their wishing pond .", "storylet_id": "239083"}], [{"original_text": "My favorite is on the one in his yard. It reminds me of fishing with grandpa.", "album_id": "72157594369842318", "photo_flickr_id": "294152386", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "47816", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite is on the one in his yard . it reminds me of fishing with grandpa .", "storylet_id": "239084"}], [{"original_text": "For the day we prepared to take our dad to an outdoor out exibit.", "album_id": "72157594369842318", "photo_flickr_id": "294148678", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47817", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for the day we prepared to take our dad to an outdoor out exibit .", "storylet_id": "239085"}], [{"original_text": "Before he went he finished cutting down his tree.", "album_id": "72157594369842318", "photo_flickr_id": "294149517", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47817", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before he went he finished cutting down his tree .", "storylet_id": "239086"}], [{"original_text": "When we got there we saw a fish that was painted to look like an airplane.", "album_id": "72157594369842318", "photo_flickr_id": "294151161", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47817", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we got there we saw a fish that was painted to look like an airplane .", "storylet_id": "239087"}], [{"original_text": "Then there was one that had flowers painted on it.", "album_id": "72157594369842318", "photo_flickr_id": "294151585", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47817", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then there was one that had flowers painted on it .", "storylet_id": "239088"}], [{"original_text": "My favorite fish was one that was just randomly painted.", "album_id": "72157594369842318", "photo_flickr_id": "294152386", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47817", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite fish was one that was just randomly painted .", "storylet_id": "239089"}], [{"original_text": "Today I'm going to see my son's art. ", "album_id": "72157594369842318", "photo_flickr_id": "294148678", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47818", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i 'm going to see my son 's art .", "storylet_id": "239090"}], [{"original_text": "It says it's all over town, let's go.", "album_id": "72157594369842318", "photo_flickr_id": "294148838", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47818", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it says it 's all over town , let 's go .", "storylet_id": "239091"}], [{"original_text": "Oh my! This is Mr. Limpet, beautiful!", "album_id": "72157594369842318", "photo_flickr_id": "294153506", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47818", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "oh my ! this is mr. limpet , beautiful !", "storylet_id": "239092"}], [{"original_text": "Ok, our son is a little bit on the weird side but we love that about him.", "album_id": "72157594369842318", "photo_flickr_id": "294153313", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47818", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "ok , our son is a little bit on the weird side but we love that about him .", "storylet_id": "239093"}], [{"original_text": "Here is one that hangs around the top of the town, I love this!", "album_id": "72157594369842318", "photo_flickr_id": "294154253", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47818", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is one that hangs around the top of the town , i love this !", "storylet_id": "239094"}], [{"original_text": "Jim is an artist, but not your regular kind. ", "album_id": "72157594369842318", "photo_flickr_id": "294148678", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47819", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is an artist , but not your regular kind .", "storylet_id": "239095"}], [{"original_text": "He creates some amazing lawn sculptures. ", "album_id": "72157594369842318", "photo_flickr_id": "294149517", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47819", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he creates some amazing lawn sculptures .", "storylet_id": "239096"}], [{"original_text": "Some have even been on display in art galleries. ", "album_id": "72157594369842318", "photo_flickr_id": "294151161", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47819", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some have even been on display in art galleries .", "storylet_id": "239097"}], [{"original_text": "And a lot are on display all the time at office buildings. ", "album_id": "72157594369842318", "photo_flickr_id": "294151585", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47819", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and a lot are on display all the time at office buildings .", "storylet_id": "239098"}], [{"original_text": "He even has one here in our local park. ", "album_id": "72157594369842318", "photo_flickr_id": "294152386", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47819", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he even has one here in our local park .", "storylet_id": "239099"}], [{"original_text": "Two young girls are dancing in the pavilion.", "album_id": "72157600116992263", "photo_flickr_id": "470638000", "setting": "first-2-pick-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "47820", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two young girls are dancing in the pavilion .", "storylet_id": "239100"}], [{"original_text": "The adults gather together in front of the pavilion for a group photo.", "album_id": "72157600116992263", "photo_flickr_id": "470658281", "setting": "first-2-pick-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "47820", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the adults gather together in front of the pavilion for a group photo .", "storylet_id": "239101"}], [{"original_text": "The flower girl and young bridesmaid pose for a picture with some adults.", "album_id": "72157600116992263", "photo_flickr_id": "470639672", "setting": "first-2-pick-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "47820", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the flower girl and young bridesmaid pose for a picture with some adults .", "storylet_id": "239102"}], [{"original_text": "Four happy guests smile at the photographer during this happy celebration.", "album_id": "72157600116992263", "photo_flickr_id": "470639992", "setting": "first-2-pick-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "47820", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "four happy guests smile at the photographer during this happy celebration .", "storylet_id": "239103"}], [{"original_text": "The bride poses with some of her friends to mark the occasion.", "album_id": "72157600116992263", "photo_flickr_id": "470640256", "setting": "first-2-pick-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "47820", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride poses with some of her friends to mark the occasion .", "storylet_id": "239104"}], [{"original_text": "The reception was a lot of fun today!", "album_id": "72157600116992263", "photo_flickr_id": "470655807", "setting": "first-2-pick-and-tell", "worker_id": "Q16Z61ZGV9VREGA", "story_id": "47821", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the reception was a lot of fun today !", "storylet_id": "239105"}], [{"original_text": "We ate a lot of fruit and snacks!", "album_id": "72157600116992263", "photo_flickr_id": "470655911", "setting": "first-2-pick-and-tell", "worker_id": "Q16Z61ZGV9VREGA", "story_id": "47821", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we ate a lot of fruit and snacks !", "storylet_id": "239106"}], [{"original_text": "The girls danced in the gazebo and looked very pretty in their dresses. ", "album_id": "72157600116992263", "photo_flickr_id": "470638000", "setting": "first-2-pick-and-tell", "worker_id": "Q16Z61ZGV9VREGA", "story_id": "47821", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girls danced in the gazebo and looked very pretty in their dresses .", "storylet_id": "239107"}], [{"original_text": "We took some family photos to show the beautiful day!", "album_id": "72157600116992263", "photo_flickr_id": "470639672", "setting": "first-2-pick-and-tell", "worker_id": "Q16Z61ZGV9VREGA", "story_id": "47821", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took some family photos to show the beautiful day !", "storylet_id": "239108"}], [{"original_text": "The smile on her face captured the wedding day perfect!", "album_id": "72157600116992263", "photo_flickr_id": "470640344", "setting": "first-2-pick-and-tell", "worker_id": "Q16Z61ZGV9VREGA", "story_id": "47821", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the smile on her face captured the wedding day perfect !", "storylet_id": "239109"}], [{"original_text": "Everyone was excited after the wedding.", "album_id": "72157600116992263", "photo_flickr_id": "470655807", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47822", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was excited after the wedding .", "storylet_id": "239110"}], [{"original_text": "Our sister snacked on fruit at the reception.", "album_id": "72157600116992263", "photo_flickr_id": "470655911", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47822", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our sister snacked on fruit at the reception .", "storylet_id": "239111"}], [{"original_text": "The flower girls danced around the gazebo.", "album_id": "72157600116992263", "photo_flickr_id": "470638000", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47822", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the flower girls danced around the gazebo .", "storylet_id": "239112"}], [{"original_text": "After they settled down we posed for a picture.", "album_id": "72157600116992263", "photo_flickr_id": "470639672", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47822", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after they settled down we posed for a picture .", "storylet_id": "239113"}], [{"original_text": "We caught a closeup of my sister by surprise.", "album_id": "72157600116992263", "photo_flickr_id": "470640344", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47822", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we caught a closeup of my sister by surprise .", "storylet_id": "239114"}], [{"original_text": "The sisters had a great time on Easter Sunday.", "album_id": "72157600116992263", "photo_flickr_id": "470638000", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47823", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sisters had a great time on easter sunday .", "storylet_id": "239115"}], [{"original_text": "the whole family came together.", "album_id": "72157600116992263", "photo_flickr_id": "470658281", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47823", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the whole family came together .", "storylet_id": "239116"}], [{"original_text": "The girls took a picture with their grandmother, aunt, and uncle.", "album_id": "72157600116992263", "photo_flickr_id": "470639672", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47823", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girls took a picture with their grandmother , aunt , and uncle .", "storylet_id": "239117"}], [{"original_text": "Even the twins made it to the event.", "album_id": "72157600116992263", "photo_flickr_id": "470639992", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47823", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the twins made it to the event .", "storylet_id": "239118"}], [{"original_text": "It was great to be around the whole family.", "album_id": "72157600116992263", "photo_flickr_id": "470640256", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "47823", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was great to be around the whole family .", "storylet_id": "239119"}], [{"original_text": "The flower girl and mini bride play in the gazebo.", "album_id": "72157600116992263", "photo_flickr_id": "470638000", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47824", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the flower girl and mini bride play in the gazebo .", "storylet_id": "239120"}], [{"original_text": "Family and friends pose on a summer day.", "album_id": "72157600116992263", "photo_flickr_id": "470658281", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47824", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "family and friends pose on a summer day .", "storylet_id": "239121"}], [{"original_text": "Friends of the bride pose for a photo.", "album_id": "72157600116992263", "photo_flickr_id": "470639672", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47824", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "friends of the bride pose for a photo .", "storylet_id": "239122"}], [{"original_text": "Parents and grandfather and a friend smile on this happy day.", "album_id": "72157600116992263", "photo_flickr_id": "470639992", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47824", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "parents and grandfather and a friend smile on this happy day .", "storylet_id": "239123"}], [{"original_text": "The bride in white posing with friends and family on her wedding day.", "album_id": "72157600116992263", "photo_flickr_id": "470640256", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "47824", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride in white posing with friends and family on her wedding day .", "storylet_id": "239124"}], [{"original_text": "We attended lilac sunday in the park.", "album_id": "72157600210655682", "photo_flickr_id": "496411664", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47825", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we attended lilac sunday in the park .", "storylet_id": "239125"}], [{"original_text": "There were a variety such as this white.", "album_id": "72157600210655682", "photo_flickr_id": "496409902", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47825", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a variety such as this white .", "storylet_id": "239126"}], [{"original_text": "The bush was huge and smelled wonderful.", "album_id": "72157600210655682", "photo_flickr_id": "496439853", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47825", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bush was huge and smelled wonderful .", "storylet_id": "239127"}], [{"original_text": "There was the usual lilac colored lilacs.", "album_id": "72157600210655682", "photo_flickr_id": "496405800", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47825", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was the usual lilac colored lilacs .", "storylet_id": "239128"}], [{"original_text": "There was silliness from the kids playing in the tree.", "album_id": "72157600210655682", "photo_flickr_id": "496402482", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47825", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was silliness from the kids playing in the tree .", "storylet_id": "239129"}], [{"original_text": "When flowers are in bloom, it really brings out people to see them. ", "album_id": "72157600210655682", "photo_flickr_id": "496409902", "setting": "first-2-pick-and-tell", "worker_id": "P97FN4B1MA2RA74", "story_id": "47826", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when flowers are in bloom , it really brings out people to see them .", "storylet_id": "239130"}], [{"original_text": "The best part about that is that there are multiple parks and places to see them that enhance the city. ", "album_id": "72157600210655682", "photo_flickr_id": "496439853", "setting": "first-2-pick-and-tell", "worker_id": "P97FN4B1MA2RA74", "story_id": "47826", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the best part about that is that there are multiple parks and places to see them that enhance the city .", "storylet_id": "239131"}], [{"original_text": "Even the smallest of blooms look beautiful juxtaposed against a city backdrop. ", "album_id": "72157600210655682", "photo_flickr_id": "496405800", "setting": "first-2-pick-and-tell", "worker_id": "P97FN4B1MA2RA74", "story_id": "47826", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the smallest of blooms look beautiful juxtaposed against a city backdrop .", "storylet_id": "239132"}], [{"original_text": "Flowers that take so long to bloom are most enjoyable to people because of the rarity of what they are seeing and take many tours and pictures to remember this moment. ", "album_id": "72157600210655682", "photo_flickr_id": "496435775", "setting": "first-2-pick-and-tell", "worker_id": "P97FN4B1MA2RA74", "story_id": "47826", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "flowers that take so long to bloom are most enjoyable to people because of the rarity of what they are seeing and take many tours and pictures to remember this moment .", "storylet_id": "239133"}], [{"original_text": "Even tree will get in on the \"action\" as it were with kids and people climbing on them. This is one of the best parts of being outside and having the flowers in bloom. ", "album_id": "72157600210655682", "photo_flickr_id": "496402482", "setting": "first-2-pick-and-tell", "worker_id": "P97FN4B1MA2RA74", "story_id": "47826", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even tree will get in on the `` action '' as it were with kids and people climbing on them . this is one of the best parts of being outside and having the flowers in bloom .", "storylet_id": "239134"}], [{"original_text": "My friends and I went to the Arnold Arboretum.", "album_id": "72157600210655682", "photo_flickr_id": "496411664", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47827", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i went to the organization organization .", "storylet_id": "239135"}], [{"original_text": "We saw a bunch of nice trees and bushes.", "album_id": "72157600210655682", "photo_flickr_id": "496409902", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47827", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw a bunch of nice trees and bushes .", "storylet_id": "239136"}], [{"original_text": "Some of the bushes were so big.", "album_id": "72157600210655682", "photo_flickr_id": "496439853", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47827", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the bushes were so big .", "storylet_id": "239137"}], [{"original_text": "These were my favorite flowers hanging from the trees.", "album_id": "72157600210655682", "photo_flickr_id": "496405800", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47827", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these were my favorite flowers hanging from the trees .", "storylet_id": "239138"}], [{"original_text": "My friends and I had a great time.", "album_id": "72157600210655682", "photo_flickr_id": "496402482", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47827", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my friends and i had a great time .", "storylet_id": "239139"}], [{"original_text": "We went to the Arnold Arboretum for Lilac Sunday.", "album_id": "72157600210655682", "photo_flickr_id": "496411664", "setting": "last-3-pick-old-and-tell", "worker_id": "51I9G8JEWGD5BT4", "story_id": "47828", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the organization organization organization organization sunday .", "storylet_id": "239140"}], [{"original_text": "There were so many beautiful lilacs, including these lovely white ones.", "album_id": "72157600210655682", "photo_flickr_id": "496409902", "setting": "last-3-pick-old-and-tell", "worker_id": "51I9G8JEWGD5BT4", "story_id": "47828", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many beautiful lilacs , including these lovely white ones .", "storylet_id": "239141"}], [{"original_text": "Here is an even better picture of that lovely lilac bush.", "album_id": "72157600210655682", "photo_flickr_id": "496439853", "setting": "last-3-pick-old-and-tell", "worker_id": "51I9G8JEWGD5BT4", "story_id": "47828", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is an even better picture of that lovely lilac bush .", "storylet_id": "239142"}], [{"original_text": "The whole event was beautiful, but I tried to get some really pretty shots like this one of the pink.", "album_id": "72157600210655682", "photo_flickr_id": "496405800", "setting": "last-3-pick-old-and-tell", "worker_id": "51I9G8JEWGD5BT4", "story_id": "47828", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole event was beautiful , but i tried to get some really pretty shots like this one of the pink .", "storylet_id": "239143"}], [{"original_text": "It was nice to spend time with my family--look at the boys climbing the tree!", "album_id": "72157600210655682", "photo_flickr_id": "496402482", "setting": "last-3-pick-old-and-tell", "worker_id": "51I9G8JEWGD5BT4", "story_id": "47828", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was nice to spend time with my family -- look at the boys climbing the tree !", "storylet_id": "239144"}], [{"original_text": "We had a family reunion at a botanical garden.", "album_id": "72157600210655682", "photo_flickr_id": "496409902", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47829", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a family reunion at a botanical garden .", "storylet_id": "239145"}], [{"original_text": "Most of the flowers were in full bloom.", "album_id": "72157600210655682", "photo_flickr_id": "496439853", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47829", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "most of the flowers were in full bloom .", "storylet_id": "239146"}], [{"original_text": "I experimented with different focuses.", "album_id": "72157600210655682", "photo_flickr_id": "496405800", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47829", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i experimented with different focuses .", "storylet_id": "239147"}], [{"original_text": "I am not sure if I like or dislike this one.", "album_id": "72157600210655682", "photo_flickr_id": "496435775", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47829", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i am not sure if i like or dislike this one .", "storylet_id": "239148"}], [{"original_text": "The boys ended up liking climbing the trees better than looking at the flowers!", "album_id": "72157600210655682", "photo_flickr_id": "496402482", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47829", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boys ended up liking climbing the trees better than looking at the flowers !", "storylet_id": "239149"}], [{"original_text": "I bought my mother a bouquet when I came home from my freshman year of college. ", "album_id": "72157600212214546", "photo_flickr_id": "496678894", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47830", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i bought my mother a bouquet when i came home from my freshman year of college .", "storylet_id": "239150"}], [{"original_text": "I wanted her to know how much she meant to me. ", "album_id": "72157600212214546", "photo_flickr_id": "496682476", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47830", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i wanted her to know how much she meant to me .", "storylet_id": "239151"}], [{"original_text": "She was very happy, in her own special quiet way.", "album_id": "72157600212214546", "photo_flickr_id": "496690226", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47830", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was very happy , in her own special quiet way .", "storylet_id": "239152"}], [{"original_text": "She made me a huge batch of dumplings right away. That is how she shows love.", "album_id": "72157600212214546", "photo_flickr_id": "496727581", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47830", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she made me a huge batch of dumplings right away . that is how she shows love .", "storylet_id": "239153"}], [{"original_text": "Her beef and scallions made me so happy. I love my mother.", "album_id": "72157600212214546", "photo_flickr_id": "496731279", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47830", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her beef and scallions made me so happy . i love my mother .", "storylet_id": "239154"}], [{"original_text": "The decorations and gifts were worked on tirelessly.", "album_id": "72157600212214546", "photo_flickr_id": "496677202", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "47831", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the decorations and gifts were worked on tirelessly .", "storylet_id": "239155"}], [{"original_text": "They turned out beautifully!", "album_id": "72157600212214546", "photo_flickr_id": "496678894", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "47831", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they turned out beautifully !", "storylet_id": "239156"}], [{"original_text": "Mother was touched by how thoughtful the gifts were.", "album_id": "72157600212214546", "photo_flickr_id": "496690226", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "47831", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mother was touched by how thoughtful the gifts were .", "storylet_id": "239157"}], [{"original_text": "They then went out to eat in celebration.", "album_id": "72157600212214546", "photo_flickr_id": "496692330", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "47831", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they then went out to eat in celebration .", "storylet_id": "239158"}], [{"original_text": "The food was delicious and capped an already lovely day.", "album_id": "72157600212214546", "photo_flickr_id": "496731279", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "47831", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the food was delicious and capped an already lovely day .", "storylet_id": "239159"}], [{"original_text": "This restaurant has amazing flower arrangements.", "album_id": "72157600212214546", "photo_flickr_id": "496678894", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47832", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this restaurant has amazing flower arrangements .", "storylet_id": "239160"}], [{"original_text": "They even sell them by the bouquet ", "album_id": "72157600212214546", "photo_flickr_id": "496682476", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47832", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they even sell them by the bouquet", "storylet_id": "239161"}], [{"original_text": "They wrap them up neatly.", "album_id": "72157600212214546", "photo_flickr_id": "496690226", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47832", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they wrap them up neatly .", "storylet_id": "239162"}], [{"original_text": "The dumplings in this place are amazing.", "album_id": "72157600212214546", "photo_flickr_id": "496727581", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47832", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dumplings in this place are amazing .", "storylet_id": "239163"}], [{"original_text": "The main courses are cooked to perfection.", "album_id": "72157600212214546", "photo_flickr_id": "496731279", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "47832", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the main courses are cooked to perfection .", "storylet_id": "239164"}], [{"original_text": "What a lovely bouquet.", "album_id": "72157600212214546", "photo_flickr_id": "496678894", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "47833", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what a lovely bouquet .", "storylet_id": "239165"}], [{"original_text": "They were so happy to receive it.", "album_id": "72157600212214546", "photo_flickr_id": "496682476", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "47833", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were so happy to receive it .", "storylet_id": "239166"}], [{"original_text": "She would surely have it on display.", "album_id": "72157600212214546", "photo_flickr_id": "496690226", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "47833", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she would surely have it on display .", "storylet_id": "239167"}], [{"original_text": "Delicious food was being prepared.", "album_id": "72157600212214546", "photo_flickr_id": "496727581", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "47833", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "delicious food was being prepared .", "storylet_id": "239168"}], [{"original_text": "Time to dig in.", "album_id": "72157600212214546", "photo_flickr_id": "496731279", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "47833", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time to dig in .", "storylet_id": "239169"}], [{"original_text": "Look at the flowers that I got from my husband.", "album_id": "72157600212214546", "photo_flickr_id": "496678894", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47834", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "look at the flowers that i got from my husband .", "storylet_id": "239170"}], [{"original_text": "There he is, about ready to give them to me.", "album_id": "72157600212214546", "photo_flickr_id": "496682476", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47834", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there he is , about ready to give them to me .", "storylet_id": "239171"}], [{"original_text": "Look how happy I am to get them.", "album_id": "72157600212214546", "photo_flickr_id": "496690226", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47834", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look how happy i am to get them .", "storylet_id": "239172"}], [{"original_text": "Cooking some good food.", "album_id": "72157600212214546", "photo_flickr_id": "496727581", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47834", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cooking some good food .", "storylet_id": "239173"}], [{"original_text": "He deserves a great meal after all he does for me.", "album_id": "72157600212214546", "photo_flickr_id": "496731279", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "47834", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he deserves a great meal after all he does for me .", "storylet_id": "239174"}], [{"original_text": "I was wandering this building yesterday looking for a way out. I went up the stairs thinking I was below ground.", "album_id": "72157600041151400", "photo_flickr_id": "442711898", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47835", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was wandering this building yesterday looking for a way out . i went up the stairs thinking i was below ground .", "storylet_id": "239175"}], [{"original_text": "But I just found myself in a lobby. I went back to see if I missed something.", "album_id": "72157600041151400", "photo_flickr_id": "442711820", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47835", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but i just found myself in a lobby . i went back to see if i missed something .", "storylet_id": "239176"}], [{"original_text": "But then I found myself in a small office closet.", "album_id": "72157600041151400", "photo_flickr_id": "442714839", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47835", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but then i found myself in a small office closet .", "storylet_id": "239177"}], [{"original_text": "I left the office to find the exit and I checked as many doors as I could find.", "album_id": "72157600041151400", "photo_flickr_id": "442714953", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47835", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i left the office to find the exit and i checked as many doors as i could find .", "storylet_id": "239178"}], [{"original_text": "Eventually I came to a white door at the end of the hallway and it turns out that was the exit.", "album_id": "72157600041151400", "photo_flickr_id": "442714901", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47835", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually i came to a white door at the end of the hallway and it turns out that was the exit .", "storylet_id": "239179"}], [{"original_text": "When the zombie apocalypse hit, everyone disappeared.", "album_id": "72157600041151400", "photo_flickr_id": "442711312", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47836", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when the zombie apocalypse hit , everyone disappeared .", "storylet_id": "239180"}], [{"original_text": "It was like no one ever existed.", "album_id": "72157600041151400", "photo_flickr_id": "442715111", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47836", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was like no one ever existed .", "storylet_id": "239181"}], [{"original_text": "I couldn't find traces of my friends anywhere.", "album_id": "72157600041151400", "photo_flickr_id": "442711820", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47836", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i could n't find traces of my friends anywhere .", "storylet_id": "239182"}], [{"original_text": "Not even in the hall.", "album_id": "72157600041151400", "photo_flickr_id": "442714953", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47836", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "not even in the hall .", "storylet_id": "239183"}], [{"original_text": "And to make things worse, my mousse melted!", "album_id": "72157600041151400", "photo_flickr_id": "442711512", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47836", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and to make things worse , my mousse melted !", "storylet_id": "239184"}], [{"original_text": "Today I started my new job at the mission.", "album_id": "72157600041151400", "photo_flickr_id": "442711898", "setting": "last-3-pick-old-and-tell", "worker_id": "U8V1GQJYW47YWYS", "story_id": "47837", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i started my new job at the mission .", "storylet_id": "239185"}], [{"original_text": "We have activity rooms for people.", "album_id": "72157600041151400", "photo_flickr_id": "442711820", "setting": "last-3-pick-old-and-tell", "worker_id": "U8V1GQJYW47YWYS", "story_id": "47837", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we have activity rooms for people .", "storylet_id": "239186"}], [{"original_text": "There is a lot of paper work to do each day.", "album_id": "72157600041151400", "photo_flickr_id": "442714839", "setting": "last-3-pick-old-and-tell", "worker_id": "U8V1GQJYW47YWYS", "story_id": "47837", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is a lot of paper work to do each day .", "storylet_id": "239187"}], [{"original_text": "We have rooms for those who need them.", "album_id": "72157600041151400", "photo_flickr_id": "442714953", "setting": "last-3-pick-old-and-tell", "worker_id": "U8V1GQJYW47YWYS", "story_id": "47837", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we have rooms for those who need them .", "storylet_id": "239188"}], [{"original_text": "It doesn't look like much from the outside.", "album_id": "72157600041151400", "photo_flickr_id": "442714901", "setting": "last-3-pick-old-and-tell", "worker_id": "U8V1GQJYW47YWYS", "story_id": "47837", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it does n't look like much from the outside .", "storylet_id": "239189"}], [{"original_text": "It's very hard to get an appointment for a spa treatment at the most popular spa in town. Even so, the waiting room was quite empty.", "album_id": "72157600041151400", "photo_flickr_id": "442711312", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47838", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's very hard to get an appointment for a spa treatment at the most popular spa in town . even so , the waiting room was quite empty .", "storylet_id": "239190"}], [{"original_text": "I tried different chairs as I waited, including this one in the corner by the window.", "album_id": "72157600041151400", "photo_flickr_id": "442715111", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47838", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i tried different chairs as i waited , including this one in the corner by the window .", "storylet_id": "239191"}], [{"original_text": "The whole two hours I waited for my appointment, I didn't see another soul.", "album_id": "72157600041151400", "photo_flickr_id": "442711820", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47838", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the whole two hours i waited for my appointment , i did n't see another soul .", "storylet_id": "239192"}], [{"original_text": "Finally, I was called into the hall to go to my treatment room. I was pretty sick of waiting by that point.", "album_id": "72157600041151400", "photo_flickr_id": "442714953", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47838", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally , i was called into the hall to go to my treatment room . i was pretty sick of waiting by that point .", "storylet_id": "239193"}], [{"original_text": "However, it was all worthwhile. When I saw that Raspberry Ripple Mousse hair treatment, I knew I was in for a gold star experience. ", "album_id": "72157600041151400", "photo_flickr_id": "442711512", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47838", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , it was all worthwhile . when i saw that raspberry ripple mousse hair treatment , i knew i was in for a gold star experience .", "storylet_id": "239194"}], [{"original_text": "This is where I rented my new office space. It's so exciting. Doesn't it look fancy?", "album_id": "72157600041151400", "photo_flickr_id": "442711898", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47839", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is where i rented my new office space . it 's so exciting . does n't it look fancy ?", "storylet_id": "239195"}], [{"original_text": "Well inside the rooms it isn't so fancy but it gets the job done! Here is the waiting area.", "album_id": "72157600041151400", "photo_flickr_id": "442711820", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47839", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "well inside the rooms it is n't so fancy but it gets the job done ! here is the waiting area .", "storylet_id": "239196"}], [{"original_text": "Here are my filing cabinets. I really need to get organized.", "album_id": "72157600041151400", "photo_flickr_id": "442714839", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47839", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here are my filing cabinets . i really need to get organized .", "storylet_id": "239197"}], [{"original_text": "Here's the hallway of the office. I only rented out one room, by the way.", "album_id": "72157600041151400", "photo_flickr_id": "442714953", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47839", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's the hallway of the office . i only rented out one room , by the way .", "storylet_id": "239198"}], [{"original_text": "The outside of the building is kind of drab but it's a start and I'm so happy to have my own office space!", "album_id": "72157600041151400", "photo_flickr_id": "442714901", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47839", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the outside of the building is kind of drab but it 's a start and i 'm so happy to have my own office space !", "storylet_id": "239199"}], [{"original_text": "There are many families struggling to survive in this environment everyday.", "album_id": "72157624126371626", "photo_flickr_id": "4875156300", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47840", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are many families struggling to survive in this environment everyday .", "storylet_id": "239200"}], [{"original_text": "People loot through the garbage that is found on the streets in hopes that they may find something useful or edible.", "album_id": "72157624126371626", "photo_flickr_id": "4874562481", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47840", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people loot through the garbage that is found on the streets in hopes that they may find something useful or edible .", "storylet_id": "239201"}], [{"original_text": "Many of the children have to take care of each other.", "album_id": "72157624126371626", "photo_flickr_id": "4874541877", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47840", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many of the children have to take care of each other .", "storylet_id": "239202"}], [{"original_text": "Some of them are very sad because of the conditions.", "album_id": "72157624126371626", "photo_flickr_id": "4875152526", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47840", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of them are very sad because of the conditions .", "storylet_id": "239203"}], [{"original_text": "Everyday they have to struggle to survive just to make it to the next one.", "album_id": "72157624126371626", "photo_flickr_id": "4874549705", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47840", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyday they have to struggle to survive just to make it to the next one .", "storylet_id": "239204"}], [{"original_text": "This place is a dump.", "album_id": "72157624126371626", "photo_flickr_id": "4875156300", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47841", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this place is a dump .", "storylet_id": "239205"}], [{"original_text": "I mean it, a real dump.", "album_id": "72157624126371626", "photo_flickr_id": "4875159858", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47841", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i mean it , a real dump .", "storylet_id": "239206"}], [{"original_text": "Even the goat was not pleased.", "album_id": "72157624126371626", "photo_flickr_id": "4874553379", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47841", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the goat was not pleased .", "storylet_id": "239207"}], [{"original_text": "Who would live like this?", "album_id": "72157624126371626", "photo_flickr_id": "4874557065", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47841", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "who would live like this ?", "storylet_id": "239208"}], [{"original_text": "Humanity doesn't have a chance!", "album_id": "72157624126371626", "photo_flickr_id": "4874562481", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47841", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "humanity does n't have a chance !", "storylet_id": "239209"}], [{"original_text": "The newsman showed how bad the garbage has gotten at the bottom of the village.", "album_id": "72157624126371626", "photo_flickr_id": "4875156300", "setting": "last-3-pick-old-and-tell", "worker_id": "AKPMWW25LIMXPE9", "story_id": "47842", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the newsman showed how bad the garbage has gotten at the bottom of the village .", "storylet_id": "239210"}], [{"original_text": "The garbage is all the way down to the ditch in front of the buildings.", "album_id": "72157624126371626", "photo_flickr_id": "4875159858", "setting": "last-3-pick-old-and-tell", "worker_id": "AKPMWW25LIMXPE9", "story_id": "47842", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the garbage is all the way down to the ditch in front of the buildings .", "storylet_id": "239211"}], [{"original_text": "Animals will find their way to the garbage to eat it.", "album_id": "72157624126371626", "photo_flickr_id": "4874553379", "setting": "last-3-pick-old-and-tell", "worker_id": "AKPMWW25LIMXPE9", "story_id": "47842", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "animals will find their way to the garbage to eat it .", "storylet_id": "239212"}], [{"original_text": "It is beginning to blend in with the water.", "album_id": "72157624126371626", "photo_flickr_id": "4874557065", "setting": "last-3-pick-old-and-tell", "worker_id": "AKPMWW25LIMXPE9", "story_id": "47842", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is beginning to blend in with the water .", "storylet_id": "239213"}], [{"original_text": "It makes a sad and gross picture as the hotel is the backdrop.", "album_id": "72157624126371626", "photo_flickr_id": "4874562481", "setting": "last-3-pick-old-and-tell", "worker_id": "AKPMWW25LIMXPE9", "story_id": "47842", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it makes a sad and gross picture as the hotel is the backdrop .", "storylet_id": "239214"}], [{"original_text": "I went to Hati to help rebuild after the earthquake.", "album_id": "72157624126371626", "photo_flickr_id": "4875156300", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47843", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to hati to help rebuild after the earthquake .", "storylet_id": "239215"}], [{"original_text": "I didn't realize how bad of shape it was until I got there.", "album_id": "72157624126371626", "photo_flickr_id": "4874562481", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47843", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i did n't realize how bad of shape it was until i got there .", "storylet_id": "239216"}], [{"original_text": "I met a nice family while working with the locals.", "album_id": "72157624126371626", "photo_flickr_id": "4874541877", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47843", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i met a nice family while working with the locals .", "storylet_id": "239217"}], [{"original_text": "Ru and Jon, the families youngest were so sweet.", "album_id": "72157624126371626", "photo_flickr_id": "4875152526", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47843", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "ru and [male] , the families youngest were so sweet .", "storylet_id": "239218"}], [{"original_text": "And the father James helped me rebuild the homes.", "album_id": "72157624126371626", "photo_flickr_id": "4874549705", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "47843", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the father [male] helped me rebuild the homes .", "storylet_id": "239219"}], [{"original_text": "Third world countries need a lot of help. Things like this is the reason why health isn't good.", "album_id": "72157624126371626", "photo_flickr_id": "4875156300", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "47844", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "third world countries need a lot of help . things like this is the reason why health is n't good .", "storylet_id": "239220"}], [{"original_text": "Here is what used to be an old shed turned into a trash bin.", "album_id": "72157624126371626", "photo_flickr_id": "4875159858", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "47844", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is what used to be an old shed turned into a trash bin .", "storylet_id": "239221"}], [{"original_text": "Maybe we can get all the goats to clean up the trash!", "album_id": "72157624126371626", "photo_flickr_id": "4874553379", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "47844", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "maybe we can get all the goats to clean up the trash !", "storylet_id": "239222"}], [{"original_text": "That is why we are here to help make this a better place.", "album_id": "72157624126371626", "photo_flickr_id": "4874557065", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "47844", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that is why we are here to help make this a better place .", "storylet_id": "239223"}], [{"original_text": "Things like this is what gives me purpose.", "album_id": "72157624126371626", "photo_flickr_id": "4874562481", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "47844", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "things like this is what gives me purpose .", "storylet_id": "239224"}], [{"original_text": "I went to visit the cemetery yesterday to pay my respects.", "album_id": "72157603481848222", "photo_flickr_id": "2118096031", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47845", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to visit the cemetery yesterday to pay my respects .", "storylet_id": "239225"}], [{"original_text": "I planted the flag in one of the graves of the soldiers that gave their lives for the freedom of this country.", "album_id": "72157603481848222", "photo_flickr_id": "2118095305", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47845", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i planted the flag in one of the graves of the soldiers that gave their lives for the freedom of this country .", "storylet_id": "239226"}], [{"original_text": "Night started to fall.", "album_id": "72157603481848222", "photo_flickr_id": "2118873632", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47845", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "night started to fall .", "storylet_id": "239227"}], [{"original_text": "At night the statues at the cemetery become slightly creepy.", "album_id": "72157603481848222", "photo_flickr_id": "2118095921", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47845", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at night the statues at the cemetery become slightly creepy .", "storylet_id": "239228"}], [{"original_text": "I decided to leave before it got darker.", "album_id": "72157603481848222", "photo_flickr_id": "2118092861", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47845", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to leave before it got darker .", "storylet_id": "239229"}], [{"original_text": "Visiting the graves of fallen American war heroes, was humbling.", "album_id": "72157603481848222", "photo_flickr_id": "2118095613", "setting": "first-2-pick-and-tell", "worker_id": "H3Q2BXAMN48OBOL", "story_id": "47846", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visiting the graves of fallen american war heroes , was humbling .", "storylet_id": "239230"}], [{"original_text": "Each grave was one life, but represented so much more. ", "album_id": "72157603481848222", "photo_flickr_id": "2118095305", "setting": "first-2-pick-and-tell", "worker_id": "H3Q2BXAMN48OBOL", "story_id": "47846", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each grave was one life , but represented so much more .", "storylet_id": "239231"}], [{"original_text": "The history untold, yet forever held in quiet memories of the past.", "album_id": "72157603481848222", "photo_flickr_id": "2118871452", "setting": "first-2-pick-and-tell", "worker_id": "H3Q2BXAMN48OBOL", "story_id": "47846", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the history untold , yet forever held in quiet memories of the past .", "storylet_id": "239232"}], [{"original_text": "Every stone and flag represented bravery and hearts of pride for this country.", "album_id": "72157603481848222", "photo_flickr_id": "2118095537", "setting": "first-2-pick-and-tell", "worker_id": "H3Q2BXAMN48OBOL", "story_id": "47846", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "every stone and flag represented bravery and hearts of pride for this country .", "storylet_id": "239233"}], [{"original_text": "Each fallen soldier is a part of the United States, forever more.", "album_id": "72157603481848222", "photo_flickr_id": "2118095921", "setting": "first-2-pick-and-tell", "worker_id": "H3Q2BXAMN48OBOL", "story_id": "47846", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "each fallen soldier is a part of the location location , forever more .", "storylet_id": "239234"}], [{"original_text": "This is a memorial to our fallen soldiers.", "album_id": "72157603481848222", "photo_flickr_id": "2118095613", "setting": "last-3-pick-old-and-tell", "worker_id": "YTE0WPUOGHM3R6J", "story_id": "47847", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a memorial to our fallen soldiers .", "storylet_id": "239235"}], [{"original_text": "My brother Joseph is buried here. Today was the anniversary of his funeral.", "album_id": "72157603481848222", "photo_flickr_id": "2118095305", "setting": "last-3-pick-old-and-tell", "worker_id": "YTE0WPUOGHM3R6J", "story_id": "47847", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my brother [male] is buried here . today was the anniversary of his funeral .", "storylet_id": "239236"}], [{"original_text": "Jospeh had a friend named David. David was buried here also. This is very sad.", "album_id": "72157603481848222", "photo_flickr_id": "2118871452", "setting": "last-3-pick-old-and-tell", "worker_id": "YTE0WPUOGHM3R6J", "story_id": "47847", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "jospeh had a friend named [male] . [male] was buried here also . this is very sad .", "storylet_id": "239237"}], [{"original_text": "Jospeh and David worked with a dog named Blackie. Blackie was buried along side them.", "album_id": "72157603481848222", "photo_flickr_id": "2118095537", "setting": "last-3-pick-old-and-tell", "worker_id": "YTE0WPUOGHM3R6J", "story_id": "47847", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "jospeh and [male] worked with a dog named blackie . blackie was buried along side them .", "storylet_id": "239238"}], [{"original_text": "George Washington overlooks this cemetery. He was also buried here.", "album_id": "72157603481848222", "photo_flickr_id": "2118095921", "setting": "last-3-pick-old-and-tell", "worker_id": "YTE0WPUOGHM3R6J", "story_id": "47847", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] washington overlooks this cemetery . he was also buried here .", "storylet_id": "239239"}], [{"original_text": "I went on a somber trip to the cemetery to see some deceased family. ", "album_id": "72157603481848222", "photo_flickr_id": "2118096031", "setting": "last-3-pick-old-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "47848", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on a somber trip to the cemetery to see some deceased family .", "storylet_id": "239240"}], [{"original_text": "I placed a flag on one of our past relatives that was a veteran.", "album_id": "72157603481848222", "photo_flickr_id": "2118095305", "setting": "last-3-pick-old-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "47848", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i placed a flag on one of our past relatives that was a veteran .", "storylet_id": "239241"}], [{"original_text": "There were some extravagant memorials.", "album_id": "72157603481848222", "photo_flickr_id": "2118873632", "setting": "last-3-pick-old-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "47848", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some extravagant memorials .", "storylet_id": "239242"}], [{"original_text": "This one included a statue of the deceased.", "album_id": "72157603481848222", "photo_flickr_id": "2118095921", "setting": "last-3-pick-old-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "47848", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one included a statue of the deceased .", "storylet_id": "239243"}], [{"original_text": "I found this monument very interesting as well.", "album_id": "72157603481848222", "photo_flickr_id": "2118092861", "setting": "last-3-pick-old-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "47848", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i found this monument very interesting as well .", "storylet_id": "239244"}], [{"original_text": "We visited a very special cemetery today.", "album_id": "72157603481848222", "photo_flickr_id": "2118095613", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "47849", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited a very special cemetery today .", "storylet_id": "239245"}], [{"original_text": "There were many old headstones.", "album_id": "72157603481848222", "photo_flickr_id": "2118095305", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "47849", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many old headstones .", "storylet_id": "239246"}], [{"original_text": "There were some very unique headstones.", "album_id": "72157603481848222", "photo_flickr_id": "2118871452", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "47849", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some very unique headstones .", "storylet_id": "239247"}], [{"original_text": "There were a lot of service members buried there.", "album_id": "72157603481848222", "photo_flickr_id": "2118095537", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "47849", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of service members buried there .", "storylet_id": "239248"}], [{"original_text": "There were some headstones with statues on them.", "album_id": "72157603481848222", "photo_flickr_id": "2118095921", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "47849", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were some headstones with statues on them .", "storylet_id": "239249"}], [{"original_text": "I arrived at the docks early Sunday morning and everything was closed up.", "album_id": "72157629550887349", "photo_flickr_id": "6914458951", "setting": "first-2-pick-and-tell", "worker_id": "1M0HNCY9LPH9RWN", "story_id": "47850", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i arrived at the docks early sunday morning and everything was closed up .", "storylet_id": "239250"}], [{"original_text": "I was able to locate my friend's cute town house pretty quickly.", "album_id": "72157629550887349", "photo_flickr_id": "6914447471", "setting": "first-2-pick-and-tell", "worker_id": "1M0HNCY9LPH9RWN", "story_id": "47850", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was able to locate my friend 's cute town house pretty quickly .", "storylet_id": "239251"}], [{"original_text": "After breakfast we went for a long walk in the historic district.", "album_id": "72157629550887349", "photo_flickr_id": "6914451259", "setting": "first-2-pick-and-tell", "worker_id": "1M0HNCY9LPH9RWN", "story_id": "47850", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after breakfast we went for a long walk in the historic district .", "storylet_id": "239252"}], [{"original_text": "The architectural details on these historic homes are fantastic.", "album_id": "72157629550887349", "photo_flickr_id": "6914439285", "setting": "first-2-pick-and-tell", "worker_id": "1M0HNCY9LPH9RWN", "story_id": "47850", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the architectural details on these historic homes are fantastic .", "storylet_id": "239253"}], [{"original_text": "Later that day we went to an old mansion that had been converted into an art museum.", "album_id": "72157629550887349", "photo_flickr_id": "6914428513", "setting": "first-2-pick-and-tell", "worker_id": "1M0HNCY9LPH9RWN", "story_id": "47850", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later that day we went to an old mansion that had been converted into an art museum .", "storylet_id": "239254"}], [{"original_text": "After walking down the pier for hours we decided to take a walk through downtown.", "album_id": "72157629550887349", "photo_flickr_id": "6914458951", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47851", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after walking down the pier for hours we decided to take a walk through downtown .", "storylet_id": "239255"}], [{"original_text": "We stopped here to have a bite to eat.", "album_id": "72157629550887349", "photo_flickr_id": "6914445773", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47851", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped here to have a bite to eat .", "storylet_id": "239256"}], [{"original_text": "There were many large billboard signs that we saw throughout downtown.", "album_id": "72157629550887349", "photo_flickr_id": "6914504273", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47851", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many large billboard signs that we saw throughout downtown .", "storylet_id": "239257"}], [{"original_text": "Some of the apartment buildings downtown are very tall.", "album_id": "72157629550887349", "photo_flickr_id": "6914443677", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47851", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the apartment buildings downtown are very tall .", "storylet_id": "239258"}], [{"original_text": "This building had so many plants on the property.", "album_id": "72157629550887349", "photo_flickr_id": "6914473853", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47851", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this building had so many plants on the property .", "storylet_id": "239259"}], [{"original_text": "This place has the most beautiful scenery. ", "album_id": "72157629550887349", "photo_flickr_id": "6914458951", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "47852", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this place has the most beautiful scenery .", "storylet_id": "239260"}], [{"original_text": "There are great places to stop and eat.", "album_id": "72157629550887349", "photo_flickr_id": "6914445773", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "47852", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are great places to stop and eat .", "storylet_id": "239261"}], [{"original_text": "They have billboards like I had never seen before.", "album_id": "72157629550887349", "photo_flickr_id": "6914504273", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "47852", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they have billboards like i had never seen before .", "storylet_id": "239262"}], [{"original_text": "The buildings are as tall as I can see.", "album_id": "72157629550887349", "photo_flickr_id": "6914443677", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "47852", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the buildings are as tall as i can see .", "storylet_id": "239263"}], [{"original_text": "I loved it so much, I decided to buy a place of my own!", "album_id": "72157629550887349", "photo_flickr_id": "6914473853", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "47852", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i loved it so much , i decided to buy a place of my own !", "storylet_id": "239264"}], [{"original_text": "We arrived to the city by canal boat, and docked at the port.", "album_id": "72157629550887349", "photo_flickr_id": "6914458951", "setting": "last-3-pick-old-and-tell", "worker_id": "X0URYQX54A8ONV5", "story_id": "47853", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived to the city by canal boat , and docked at the port .", "storylet_id": "239265"}], [{"original_text": "It was a nice city to walk though, with unique architecture.", "album_id": "72157629550887349", "photo_flickr_id": "6914447471", "setting": "last-3-pick-old-and-tell", "worker_id": "X0URYQX54A8ONV5", "story_id": "47853", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a nice city to walk though , with unique architecture .", "storylet_id": "239266"}], [{"original_text": "Our hotel was up a long pathway from the port, there were a lot of stairs.", "album_id": "72157629550887349", "photo_flickr_id": "6914451259", "setting": "last-3-pick-old-and-tell", "worker_id": "X0URYQX54A8ONV5", "story_id": "47853", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our hotel was up a long pathway from the port , there were a lot of stairs .", "storylet_id": "239267"}], [{"original_text": "Many of the buildings in the city had decks and porches, because the weather was so nice.", "album_id": "72157629550887349", "photo_flickr_id": "6914439285", "setting": "last-3-pick-old-and-tell", "worker_id": "X0URYQX54A8ONV5", "story_id": "47853", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many of the buildings in the city had decks and porches , because the weather was so nice .", "storylet_id": "239268"}], [{"original_text": "We finally arrived at our hotel, it was a beautiful building surrounded with lush landscaping.", "album_id": "72157629550887349", "photo_flickr_id": "6914428513", "setting": "last-3-pick-old-and-tell", "worker_id": "X0URYQX54A8ONV5", "story_id": "47853", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finally arrived at our hotel , it was a beautiful building surrounded with lush landscaping .", "storylet_id": "239269"}], [{"original_text": "The first thing we did on our vacation was check out the boardwalk.", "album_id": "72157629550887349", "photo_flickr_id": "6914458951", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "47854", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the first thing we did on our vacation was check out the boardwalk .", "storylet_id": "239270"}], [{"original_text": "There was all sorts of things to do but we quickly grabbed a bite to eat.", "album_id": "72157629550887349", "photo_flickr_id": "6914445773", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "47854", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was all sorts of things to do but we quickly grabbed a bite to eat .", "storylet_id": "239271"}], [{"original_text": "Heading into town we started getting thirsty.", "album_id": "72157629550887349", "photo_flickr_id": "6914504273", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "47854", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "heading into town we started getting thirsty .", "storylet_id": "239272"}], [{"original_text": "Some of the buildings were so tall you really had strain your neck to see the top.", "album_id": "72157629550887349", "photo_flickr_id": "6914443677", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "47854", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the buildings were so tall you really had strain your neck to see the top .", "storylet_id": "239273"}], [{"original_text": "After a long walkabout we were excited to see the front door and get ready for tomarrow.", "album_id": "72157629550887349", "photo_flickr_id": "6914473853", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "47854", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long walkabout we were excited to see the front door and get ready for tomarrow .", "storylet_id": "239274"}], [{"original_text": "Yesterday I went to church.", "album_id": "72157600124891007", "photo_flickr_id": "472201649", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47855", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday i went to church .", "storylet_id": "239275"}], [{"original_text": "The inside of the church is very clean.", "album_id": "72157600124891007", "photo_flickr_id": "472201659", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47855", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the inside of the church is very clean .", "storylet_id": "239276"}], [{"original_text": "There was no one there yet when I showed up because I was early.", "album_id": "72157600124891007", "photo_flickr_id": "472201653", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47855", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was no one there yet when i showed up because i was early .", "storylet_id": "239277"}], [{"original_text": "The stained glass windows are very beautiful in the church.", "album_id": "72157600124891007", "photo_flickr_id": "472195092", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47855", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the stained glass windows are very beautiful in the church .", "storylet_id": "239278"}], [{"original_text": "They want to be sure that you are quiet during mass.", "album_id": "72157600124891007", "photo_flickr_id": "472195090", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47855", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they want to be sure that you are quiet during mass .", "storylet_id": "239279"}], [{"original_text": "Today we looked at the new apartment. I was glad to see how clean and nice it was. Though the bedrooms and other areas of the unit were nice, we couldn't believe how nice the kitchen was.", "album_id": "72157600124891007", "photo_flickr_id": "472175936", "setting": "first-2-pick-and-tell", "worker_id": "U9TKDMY2WTMEFHK", "story_id": "47856", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we looked at the new apartment . i was glad to see how clean and nice it was . though the bedrooms and other areas of the unit were nice , we could n't believe how nice the kitchen was .", "storylet_id": "239280"}], [{"original_text": "The photo's on from the ad didn't do it justice. The bathroom was immaculate and exceptionally clean", "album_id": "72157600124891007", "photo_flickr_id": "472175926", "setting": "first-2-pick-and-tell", "worker_id": "U9TKDMY2WTMEFHK", "story_id": "47856", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the photo 's on from the ad did n't do it justice . the bathroom was immaculate and exceptionally clean", "storylet_id": "239281"}], [{"original_text": "The stove was of commercial quality. It had over 6 burners and the realtor told me it was a Vulcan unit. ", "album_id": "72157600124891007", "photo_flickr_id": "472183336", "setting": "first-2-pick-and-tell", "worker_id": "U9TKDMY2WTMEFHK", "story_id": "47856", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the stove was of commercial quality . it had over 6 burners and the realtor told me it was a organization unit .", "storylet_id": "239282"}], [{"original_text": "The kitchen had a lot of counter space and a peninsula that came way out into the main area where we will be doing the cooking. ", "album_id": "72157600124891007", "photo_flickr_id": "472183334", "setting": "first-2-pick-and-tell", "worker_id": "U9TKDMY2WTMEFHK", "story_id": "47856", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kitchen had a lot of counter space and a peninsula that came way out into the main area where we will be doing the cooking .", "storylet_id": "239283"}], [{"original_text": "Overall, me and my wife were very pleased with the apartment, especially this kitchen. I can't get over how they are made such a large kitchen for a 2 bedroom apartment. We will probably be renting it.", "album_id": "72157600124891007", "photo_flickr_id": "472183332", "setting": "first-2-pick-and-tell", "worker_id": "U9TKDMY2WTMEFHK", "story_id": "47856", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall , me and my wife were very pleased with the apartment , especially this kitchen . i ca n't get over how they are made such a large kitchen for a 2 bedroom apartment . we will probably be renting it .", "storylet_id": "239284"}], [{"original_text": "This is the Saturday befor my wedding.", "album_id": "72157600124891007", "photo_flickr_id": "472201649", "setting": "last-3-pick-old-and-tell", "worker_id": "YTE0WPUOGHM3R6J", "story_id": "47857", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the saturday befor my wedding .", "storylet_id": "239285"}], [{"original_text": "We're going to have the reception in this room. A DJ will be by the door over there.", "album_id": "72157600124891007", "photo_flickr_id": "472201659", "setting": "last-3-pick-old-and-tell", "worker_id": "YTE0WPUOGHM3R6J", "story_id": "47857", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we 're going to have the reception in this room . a dj will be by the door over there .", "storylet_id": "239286"}], [{"original_text": "The dance floor will be in the back corner. With about 20 tables of people here.", "album_id": "72157600124891007", "photo_flickr_id": "472201653", "setting": "last-3-pick-old-and-tell", "worker_id": "YTE0WPUOGHM3R6J", "story_id": "47857", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dance floor will be in the back corner . with about 20 tables of people here .", "storylet_id": "239287"}], [{"original_text": "This is the chapel. I've loved this stain glass window every since I was a child.", "album_id": "72157600124891007", "photo_flickr_id": "472195092", "setting": "last-3-pick-old-and-tell", "worker_id": "YTE0WPUOGHM3R6J", "story_id": "47857", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the chapel . i 've loved this stain glass window every since i was a child .", "storylet_id": "239288"}], [{"original_text": "This silence sign is used because our church likes to meditate as well as preach. This room is used to meditate, so it helps remind everyone to be quiet.", "album_id": "72157600124891007", "photo_flickr_id": "472195090", "setting": "last-3-pick-old-and-tell", "worker_id": "YTE0WPUOGHM3R6J", "story_id": "47857", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this silence sign is used because our church likes to meditate as well as preach . this room is used to meditate , so it helps remind everyone to be quiet .", "storylet_id": "239289"}], [{"original_text": "During the visit, we went by the cathedral for a tour. ", "album_id": "72157600124891007", "photo_flickr_id": "472201649", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47858", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during the visit , we went by the cathedral for a tour .", "storylet_id": "239290"}], [{"original_text": "The cathedral was very large and empty with an old style feel. ", "album_id": "72157600124891007", "photo_flickr_id": "472201659", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47858", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cathedral was very large and empty with an old style feel .", "storylet_id": "239291"}], [{"original_text": "Big open rooms, and arches filled the cathedral. ", "album_id": "72157600124891007", "photo_flickr_id": "472201653", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47858", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "big open rooms , and arches filled the cathedral .", "storylet_id": "239292"}], [{"original_text": "There were large stained glass windows; one of which featured a beautiful rendering of Jesus. ", "album_id": "72157600124891007", "photo_flickr_id": "472195092", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47858", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were large stained glass windows ; one of which featured a beautiful rendering of [male] .", "storylet_id": "239293"}], [{"original_text": "The word 'SILENCE' found on the wall replicated the silence found in the large and empty building. ", "album_id": "72157600124891007", "photo_flickr_id": "472195090", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47858", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the word 'silence ' found on the wall replicated the silence found in the large and empty building .", "storylet_id": "239294"}], [{"original_text": "I went to visit a church in the town I was visiting.", "album_id": "72157600124891007", "photo_flickr_id": "472201649", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47859", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to visit a church in the town i was visiting .", "storylet_id": "239295"}], [{"original_text": "It is quite simple inside, much more plain than I would expect it to be.", "album_id": "72157600124891007", "photo_flickr_id": "472201659", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47859", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is quite simple inside , much more plain than i would expect it to be .", "storylet_id": "239296"}], [{"original_text": "The columns are quite nice but nothing out of the ordinary.", "album_id": "72157600124891007", "photo_flickr_id": "472201653", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47859", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the columns are quite nice but nothing out of the ordinary .", "storylet_id": "239297"}], [{"original_text": "This picture is one of the only artwork available.", "album_id": "72157600124891007", "photo_flickr_id": "472195092", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47859", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this picture is one of the only artwork available .", "storylet_id": "239298"}], [{"original_text": "This made me giggle. Then I quickly looked around, hoping I had not made too much noise. I could just imagine a none telling me, \"Silence\"", "album_id": "72157600124891007", "photo_flickr_id": "472195090", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "47859", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this made me giggle . then i quickly looked around , hoping i had not made too much noise . i could just imagine a none telling me , `` silence ''", "storylet_id": "239299"}], [{"original_text": "We went to stay at an old log home last weekend.", "album_id": "72157600545101238", "photo_flickr_id": "656688181", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47860", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to stay at an old log home last weekend .", "storylet_id": "239300"}], [{"original_text": "There were many giant windmills surrounding the home.", "album_id": "72157600545101238", "photo_flickr_id": "656793006", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47860", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many giant windmills surrounding the home .", "storylet_id": "239301"}], [{"original_text": "At night they would spin silently.", "album_id": "72157600545101238", "photo_flickr_id": "655912331", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47860", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at night they would spin silently .", "storylet_id": "239302"}], [{"original_text": "When it really blew hard the noise they made was deafening.", "album_id": "72157600545101238", "photo_flickr_id": "657081239", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47860", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when it really blew hard the noise they made was deafening .", "storylet_id": "239303"}], [{"original_text": "We had beautiful sunsets out there.", "album_id": "72157600545101238", "photo_flickr_id": "658194078", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47860", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had beautiful sunsets out there .", "storylet_id": "239304"}], [{"original_text": "Today started out as a very nice day on our coast to coast bicycle tour. It started our fairly sunny, but mother nature had other things in store for us.", "album_id": "72157600545101238", "photo_flickr_id": "656688181", "setting": "first-2-pick-and-tell", "worker_id": "U9TKDMY2WTMEFHK", "story_id": "47861", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today started out as a very nice day on our coast to coast bicycle tour . it started our fairly sunny , but mother nature had other things in store for us .", "storylet_id": "239305"}], [{"original_text": "We wanted to accomplish at least 100 miles and breeze through North Dakota, however when the winds changed, we were stuck.", "album_id": "72157600545101238", "photo_flickr_id": "658194078", "setting": "first-2-pick-and-tell", "worker_id": "U9TKDMY2WTMEFHK", "story_id": "47861", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we wanted to accomplish at least 100 miles and breeze through location location , however when the winds changed , we were stuck .", "storylet_id": "239306"}], [{"original_text": "We started out with a tail wind and were averaging 18-20 miles per hour on our bicycles, but that all changed at around 11am.", "album_id": "72157600545101238", "photo_flickr_id": "655912331", "setting": "first-2-pick-and-tell", "worker_id": "U9TKDMY2WTMEFHK", "story_id": "47861", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we started out with a tail wind and were averaging 18-20 miles per hour on our bicycles , but that all changed at around 11am .", "storylet_id": "239307"}], [{"original_text": "We now had a tail wind and were only making an average speed of 6 miles per hour. It was like riding through quick sand.", "album_id": "72157600545101238", "photo_flickr_id": "656793006", "setting": "first-2-pick-and-tell", "worker_id": "U9TKDMY2WTMEFHK", "story_id": "47861", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we now had a tail wind and were only making an average speed of 6 miles per hour . it was like riding through quick sand .", "storylet_id": "239308"}], [{"original_text": "To make matters worse, the cloud cover kept thickening up and ultimately we were stuck in a bad hail storm so we had to make camp in a field and compete our day with only 50 miles under our belts. ", "album_id": "72157600545101238", "photo_flickr_id": "657081239", "setting": "first-2-pick-and-tell", "worker_id": "U9TKDMY2WTMEFHK", "story_id": "47861", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to make matters worse , the cloud cover kept thickening up and ultimately we were stuck in a bad hail storm so we had to make camp in a field and compete our day with only 50 miles under our belts .", "storylet_id": "239309"}], [{"original_text": "So much beauty can be found when you know where to look. ", "album_id": "72157600545101238", "photo_flickr_id": "656688181", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47862", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so much beauty can be found when you know where to look .", "storylet_id": "239310"}], [{"original_text": "The great open fields filled with rows of windmills took my breath at dusk. ", "album_id": "72157600545101238", "photo_flickr_id": "658194078", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47862", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the great open fields filled with rows of windmills took my breath at dusk .", "storylet_id": "239311"}], [{"original_text": "With the sun shining through the clouds behind the windmills, I felt I could watch forever. ", "album_id": "72157600545101238", "photo_flickr_id": "655912331", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47862", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "with the sun shining through the clouds behind the windmills , i felt i could watch forever .", "storylet_id": "239312"}], [{"original_text": "They towered high into the sky. ", "album_id": "72157600545101238", "photo_flickr_id": "656793006", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47862", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they towered high into the sky .", "storylet_id": "239313"}], [{"original_text": "So high they seemed to enjoy the company of the clouds. ", "album_id": "72157600545101238", "photo_flickr_id": "657081239", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "47862", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so high they seemed to enjoy the company of the clouds .", "storylet_id": "239314"}], [{"original_text": "The family took a trip to the countryside.", "album_id": "72157600545101238", "photo_flickr_id": "656688181", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "47863", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family took a trip to the countryside .", "storylet_id": "239315"}], [{"original_text": "The sunsets were always beautiful out there.", "album_id": "72157600545101238", "photo_flickr_id": "658194078", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "47863", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sunsets were always beautiful out there .", "storylet_id": "239316"}], [{"original_text": "Even the windmills look great in such a scenic area.", "album_id": "72157600545101238", "photo_flickr_id": "655912331", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "47863", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the windmills look great in such a scenic area .", "storylet_id": "239317"}], [{"original_text": "There really were a lot of windmills out there.", "album_id": "72157600545101238", "photo_flickr_id": "656793006", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "47863", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there really were a lot of windmills out there .", "storylet_id": "239318"}], [{"original_text": "It made us happy to see all that clean energy.", "album_id": "72157600545101238", "photo_flickr_id": "657081239", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "47863", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it made us happy to see all that clean energy .", "storylet_id": "239319"}], [{"original_text": "This house has seen it all weather wise. Now it's such a beautiful sight to see.", "album_id": "72157600545101238", "photo_flickr_id": "656688181", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "47864", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this house has seen it all weather wise . now it 's such a beautiful sight to see .", "storylet_id": "239320"}], [{"original_text": "The windmills were engulfed within the clouds before I took this one.", "album_id": "72157600545101238", "photo_flickr_id": "656793006", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "47864", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the windmills were engulfed within the clouds before i took this one .", "storylet_id": "239321"}], [{"original_text": "As the sun set it's like peace and relaxation sitting here.", "album_id": "72157600545101238", "photo_flickr_id": "655912331", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "47864", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as the sun set it 's like peace and relaxation sitting here .", "storylet_id": "239322"}], [{"original_text": "The windmills were as tall as skyscrapers and they generate so much power!", "album_id": "72157600545101238", "photo_flickr_id": "657081239", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "47864", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the windmills were as tall as skyscrapers and they generate so much power !", "storylet_id": "239323"}], [{"original_text": "During the car ride home I had to take one last photo. It was a good one.", "album_id": "72157600545101238", "photo_flickr_id": "658194078", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "47864", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "during the car ride home i had to take one last photo . it was a good one .", "storylet_id": "239324"}], [{"original_text": "Bob bought an abandoned storage lot at an auction.", "album_id": "72157625152211431", "photo_flickr_id": "5130131515", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "47865", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] bought an abandoned storage lot at an auction .", "storylet_id": "239325"}], [{"original_text": "It had an old record player in it that hadn't been used for years.", "album_id": "72157625152211431", "photo_flickr_id": "5130132125", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "47865", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it had an old record player in it that had n't been used for years .", "storylet_id": "239326"}], [{"original_text": "Bob worked hard getting the stuff out of the small room.", "album_id": "72157625152211431", "photo_flickr_id": "5130132647", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "47865", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] worked hard getting the stuff out of the small room .", "storylet_id": "239327"}], [{"original_text": "The person that had owned the room must have taken Calculus (ugh) and save their note book.", "album_id": "72157625152211431", "photo_flickr_id": "5130133473", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "47865", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the person that had owned the room must have taken calculus ( ugh ) and save their note book .", "storylet_id": "239328"}], [{"original_text": "When he was done cleaning out the room, went went to get something to eat.", "album_id": "72157625152211431", "photo_flickr_id": "5130134467", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "47865", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when he was done cleaning out the room , went went to get something to eat .", "storylet_id": "239329"}], [{"original_text": "Yesterday at Panera I was having a late dinner.", "album_id": "72157625152211431", "photo_flickr_id": "5130736512", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47866", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday at panera i was having a late dinner .", "storylet_id": "239330"}], [{"original_text": "I ordered a sandwich and some soup.", "album_id": "72157625152211431", "photo_flickr_id": "5130134467", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47866", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i ordered a sandwich and some soup .", "storylet_id": "239331"}], [{"original_text": "Afterward I had to go to my public storage garage for something and there was all this stuff outside one of the garages.", "album_id": "72157625152211431", "photo_flickr_id": "5130132647", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47866", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterward i had to go to my public storage garage for something and there was all this stuff outside one of the garages .", "storylet_id": "239332"}], [{"original_text": "The inside of my public storage unit is pretty messy.", "album_id": "72157625152211431", "photo_flickr_id": "5130131515", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47866", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the inside of my public storage unit is pretty messy .", "storylet_id": "239333"}], [{"original_text": "Thankfully I found the table I was looking for.", "album_id": "72157625152211431", "photo_flickr_id": "5130734044", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47866", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thankfully i found the table i was looking for .", "storylet_id": "239334"}], [{"original_text": "I started the night with a trip to Panera.", "album_id": "72157625152211431", "photo_flickr_id": "5130736512", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "47867", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i started the night with a trip to panera .", "storylet_id": "239335"}], [{"original_text": "I ordered a delicious lettuce sandwich and a bowl of beans.", "album_id": "72157625152211431", "photo_flickr_id": "5130134467", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "47867", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i ordered a delicious lettuce sandwich and a bowl of beans .", "storylet_id": "239336"}], [{"original_text": "Then I made a trip to the storage facility, where I was greeted by cutouts of Roger Rabbit and Bob Hoskins.", "album_id": "72157625152211431", "photo_flickr_id": "5130132647", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "47867", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then i made a trip to the storage facility , where i was greeted by cutouts of [male] rabbit and [male] hoskins .", "storylet_id": "239337"}], [{"original_text": "I had to dig through a lot of my belongings to get what I was really after.", "album_id": "72157625152211431", "photo_flickr_id": "5130131515", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "47867", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had to dig through a lot of my belongings to get what i was really after .", "storylet_id": "239338"}], [{"original_text": "Finally, I found it: A plain wooden table.", "album_id": "72157625152211431", "photo_flickr_id": "5130734044", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "47867", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , i found it : a plain wooden table .", "storylet_id": "239339"}], [{"original_text": "Before going to my storage locker I stopped off for some food.", "album_id": "72157625152211431", "photo_flickr_id": "5130736512", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "47868", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before going to my storage locker i stopped off for some food .", "storylet_id": "239340"}], [{"original_text": "This place always serves up great sandwiches.", "album_id": "72157625152211431", "photo_flickr_id": "5130134467", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "47868", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this place always serves up great sandwiches .", "storylet_id": "239341"}], [{"original_text": "After eating I made it the storage unit.", "album_id": "72157625152211431", "photo_flickr_id": "5130132647", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "47868", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after eating i made it the storage unit .", "storylet_id": "239342"}], [{"original_text": "It is so full of papers and other things that I do not need.", "album_id": "72157625152211431", "photo_flickr_id": "5130131515", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "47868", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is so full of papers and other things that i do not need .", "storylet_id": "239343"}], [{"original_text": "I found this old desk in there that I forgot I had.", "album_id": "72157625152211431", "photo_flickr_id": "5130734044", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "47868", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i found this old desk in there that i forgot i had .", "storylet_id": "239344"}], [{"original_text": "We won a bid on the locker during a storage auction.", "album_id": "72157625152211431", "photo_flickr_id": "5130131515", "setting": "last-3-pick-old-and-tell", "worker_id": "N1IGQ2CKK7KUI9S", "story_id": "47869", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we won a bid on the locker during a storage auction .", "storylet_id": "239345"}], [{"original_text": "We were disappointed that the record player was not complete.", "album_id": "72157625152211431", "photo_flickr_id": "5130132125", "setting": "last-3-pick-old-and-tell", "worker_id": "N1IGQ2CKK7KUI9S", "story_id": "47869", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were disappointed that the record player was not complete .", "storylet_id": "239346"}], [{"original_text": "We were excited to see Who Framed Roger Rabbit movie memorabilia.", "album_id": "72157625152211431", "photo_flickr_id": "5130132647", "setting": "last-3-pick-old-and-tell", "worker_id": "N1IGQ2CKK7KUI9S", "story_id": "47869", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were excited to see who framed [male] rabbit movie memorabilia .", "storylet_id": "239347"}], [{"original_text": "We found some school notebooks that we had to throw away.", "album_id": "72157625152211431", "photo_flickr_id": "5130133473", "setting": "last-3-pick-old-and-tell", "worker_id": "N1IGQ2CKK7KUI9S", "story_id": "47869", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found some school notebooks that we had to throw away .", "storylet_id": "239348"}], [{"original_text": "We celebrated the locker finds by going out for lunch.", "album_id": "72157625152211431", "photo_flickr_id": "5130134467", "setting": "last-3-pick-old-and-tell", "worker_id": "N1IGQ2CKK7KUI9S", "story_id": "47869", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we celebrated the locker finds by going out for lunch .", "storylet_id": "239349"}], [{"original_text": "We took a walk through a historic park.", "album_id": "72157594341890810", "photo_flickr_id": "277611824", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47870", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a walk through a historic park .", "storylet_id": "239350"}], [{"original_text": "This sign was interesting. I wonder what people would be digging for?", "album_id": "72157594341890810", "photo_flickr_id": "277612010", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47870", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this sign was interesting . i wonder what people would be digging for ?", "storylet_id": "239351"}], [{"original_text": "So serene here though.", "album_id": "72157594341890810", "photo_flickr_id": "277611662", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47870", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so serene here though .", "storylet_id": "239352"}], [{"original_text": "Fort Wilkinson, Georgia. This plaque explains some history.", "album_id": "72157594341890810", "photo_flickr_id": "277586806", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47870", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "location location , location . this plaque explains some history .", "storylet_id": "239353"}], [{"original_text": "This stone was etched with this beautiful phrase.", "album_id": "72157594341890810", "photo_flickr_id": "279034894", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47870", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this stone was etched with this beautiful phrase .", "storylet_id": "239354"}], [{"original_text": "Signs are wonderfully informative things.", "album_id": "72157594341890810", "photo_flickr_id": "277611824", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "47871", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "signs are wonderfully informative things .", "storylet_id": "239355"}], [{"original_text": "Many times, they are brief and to the point, a warning meant to be heeded.", "album_id": "72157594341890810", "photo_flickr_id": "277612010", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "47871", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many times , they are brief and to the point , a warning meant to be heeded .", "storylet_id": "239356"}], [{"original_text": "Other times, they mark an important location and moment in time.", "album_id": "72157594341890810", "photo_flickr_id": "277586806", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "47871", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other times , they mark an important location and moment in time .", "storylet_id": "239357"}], [{"original_text": "As human beings, we want to mark the passage of time and history with signs.", "album_id": "72157594341890810", "photo_flickr_id": "279034799", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "47871", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as human beings , we want to mark the passage of time and history with signs .", "storylet_id": "239358"}], [{"original_text": "We don't want to forget.", "album_id": "72157594341890810", "photo_flickr_id": "279034846", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "47871", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we do n't want to forget .", "storylet_id": "239359"}], [{"original_text": "When I finally got to the historic site there was no one else there.", "album_id": "72157594341890810", "photo_flickr_id": "277611824", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47872", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i finally got to the historic site there was no one else there .", "storylet_id": "239360"}], [{"original_text": "There was no digging allowed according to the sign.", "album_id": "72157594341890810", "photo_flickr_id": "277612010", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47872", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was no digging allowed according to the sign .", "storylet_id": "239361"}], [{"original_text": "It was a beautiful place.", "album_id": "72157594341890810", "photo_flickr_id": "277611662", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47872", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a beautiful place .", "storylet_id": "239362"}], [{"original_text": "There were a lot of information plaques.", "album_id": "72157594341890810", "photo_flickr_id": "277586806", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47872", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of information plaques .", "storylet_id": "239363"}], [{"original_text": "I read them all.", "album_id": "72157594341890810", "photo_flickr_id": "279034894", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47872", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i read them all .", "storylet_id": "239364"}], [{"original_text": "We visited some historic sites on our trip.", "album_id": "72157594341890810", "photo_flickr_id": "277611824", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47873", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited some historic sites on our trip .", "storylet_id": "239365"}], [{"original_text": "They had a lot of warning signs when we arrived.", "album_id": "72157594341890810", "photo_flickr_id": "277612010", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47873", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a lot of warning signs when we arrived .", "storylet_id": "239366"}], [{"original_text": "After that we traveled the paths at the site.", "album_id": "72157594341890810", "photo_flickr_id": "277611662", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47873", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that we traveled the paths at the site .", "storylet_id": "239367"}], [{"original_text": "Then we came across signs that told us the history of the site.", "album_id": "72157594341890810", "photo_flickr_id": "277586806", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47873", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we came across signs that told us the history of the site .", "storylet_id": "239368"}], [{"original_text": "After that we came across some old graves at the site.", "album_id": "72157594341890810", "photo_flickr_id": "279034894", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47873", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that we came across some old graves at the site .", "storylet_id": "239369"}], [{"original_text": "A sign pointed to a local historic site.", "album_id": "72157594341890810", "photo_flickr_id": "277611824", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47874", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a sign pointed to a local historic site .", "storylet_id": "239370"}], [{"original_text": "I made sure not to dig up anything with the shovel I brought.", "album_id": "72157594341890810", "photo_flickr_id": "277612010", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47874", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i made sure not to dig up anything with the shovel i brought .", "storylet_id": "239371"}], [{"original_text": "Nature was sprawling and tall trees were everywhere.", "album_id": "72157594341890810", "photo_flickr_id": "277611662", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47874", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nature was sprawling and tall trees were everywhere .", "storylet_id": "239372"}], [{"original_text": "A slab was dedicated to telling us about the park.", "album_id": "72157594341890810", "photo_flickr_id": "277586806", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47874", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a slab was dedicated to telling us about the park .", "storylet_id": "239373"}], [{"original_text": "A stone had writing carved into it that we couldn't read because we walked by it too fast. ", "album_id": "72157594341890810", "photo_flickr_id": "279034894", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47874", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a stone had writing carved into it that we could n't read because we walked by it too fast .", "storylet_id": "239374"}], [{"original_text": "The bike ride brought several enthusiasts together.", "album_id": "72157602309308014", "photo_flickr_id": "1511480489", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47875", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bike ride brought several enthusiasts together .", "storylet_id": "239375"}], [{"original_text": "Who traveled in interesting manners.", "album_id": "72157602309308014", "photo_flickr_id": "1512327816", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47875", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "who traveled in interesting manners .", "storylet_id": "239376"}], [{"original_text": "And dressed in interesting clothing.", "album_id": "72157602309308014", "photo_flickr_id": "1511545315", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47875", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and dressed in interesting clothing .", "storylet_id": "239377"}], [{"original_text": "The event was a big hit.", "album_id": "72157602309308014", "photo_flickr_id": "1511465443", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47875", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the event was a big hit .", "storylet_id": "239378"}], [{"original_text": "Afterwards, they got together for food and drink.", "album_id": "72157602309308014", "photo_flickr_id": "1512316274", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47875", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , they got together for food and drink .", "storylet_id": "239379"}], [{"original_text": "Every summer there is this awesome party thrown in the neighborhood.", "album_id": "72157602309308014", "photo_flickr_id": "1511545315", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47876", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every summer there is this awesome party thrown in the neighborhood .", "storylet_id": "239380"}], [{"original_text": "Super soakers welcome!", "album_id": "72157602309308014", "photo_flickr_id": "1511541537", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47876", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "super soakers welcome !", "storylet_id": "239381"}], [{"original_text": "But mainly everyone invents a bicycle that has a trailer on it.", "album_id": "72157602309308014", "photo_flickr_id": "1511480489", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47876", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but mainly everyone invents a bicycle that has a trailer on it .", "storylet_id": "239382"}], [{"original_text": "And the trailer is full of random items.", "album_id": "72157602309308014", "photo_flickr_id": "1512327816", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47876", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the trailer is full of random items .", "storylet_id": "239383"}], [{"original_text": "It is so much fun watching the cyclists ride their creations.", "album_id": "72157602309308014", "photo_flickr_id": "1511465443", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "47876", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is so much fun watching the cyclists ride their creations .", "storylet_id": "239384"}], [{"original_text": "I decided to take a bicycle ride through the city yesterday.", "album_id": "72157602309308014", "photo_flickr_id": "1511480489", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47877", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to take a bicycle ride through the city yesterday .", "storylet_id": "239385"}], [{"original_text": "There were a lot of other people riding their bikes as well.", "album_id": "72157602309308014", "photo_flickr_id": "1512327816", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47877", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of other people riding their bikes as well .", "storylet_id": "239386"}], [{"original_text": "There were also some interesting outfits.", "album_id": "72157602309308014", "photo_flickr_id": "1511545315", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47877", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were also some interesting outfits .", "storylet_id": "239387"}], [{"original_text": "Some cars had trouble getting through all of the cyclists.", "album_id": "72157602309308014", "photo_flickr_id": "1511465443", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47877", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some cars had trouble getting through all of the cyclists .", "storylet_id": "239388"}], [{"original_text": "Afterward we were all very tired from biking everywhere.", "album_id": "72157602309308014", "photo_flickr_id": "1512316274", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47877", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we were all very tired from biking everywhere .", "storylet_id": "239389"}], [{"original_text": "Richie finally got the chance to show off his bikini top.", "album_id": "72157602309308014", "photo_flickr_id": "1511545315", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47878", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "richie finally got the chance to show off his bikini top .", "storylet_id": "239390"}], [{"original_text": "Alexander was about to squirt the bikini off of Richie's torso.", "album_id": "72157602309308014", "photo_flickr_id": "1511541537", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47878", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was about to squirt the bikini off of richie 's torso .", "storylet_id": "239391"}], [{"original_text": "A bicycle carried another bicycle.", "album_id": "72157602309308014", "photo_flickr_id": "1511480489", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47878", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a bicycle carried another bicycle .", "storylet_id": "239392"}], [{"original_text": "One man had a bike that let him sit down.", "album_id": "72157602309308014", "photo_flickr_id": "1512327816", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47878", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one man had a bike that let him sit down .", "storylet_id": "239393"}], [{"original_text": "A car ended up getting confused and attending a \"bike only\" area. ", "album_id": "72157602309308014", "photo_flickr_id": "1511465443", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47878", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a car ended up getting confused and attending a `` bike only '' area .", "storylet_id": "239394"}], [{"original_text": "Starting the day off with a little gender experimentation.", "album_id": "72157602309308014", "photo_flickr_id": "1511545315", "setting": "last-3-pick-old-and-tell", "worker_id": "E7KQUM1QMVP71UN", "story_id": "47879", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "starting the day off with a little gender experimentation .", "storylet_id": "239395"}], [{"original_text": "Getting all ready for the bike parade.", "album_id": "72157602309308014", "photo_flickr_id": "1511541537", "setting": "last-3-pick-old-and-tell", "worker_id": "E7KQUM1QMVP71UN", "story_id": "47879", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "getting all ready for the bike parade .", "storylet_id": "239396"}], [{"original_text": "The bike parade is going very nicely.", "album_id": "72157602309308014", "photo_flickr_id": "1511480489", "setting": "last-3-pick-old-and-tell", "worker_id": "E7KQUM1QMVP71UN", "story_id": "47879", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bike parade is going very nicely .", "storylet_id": "239397"}], [{"original_text": "Al has one dope-ass ride.", "album_id": "72157602309308014", "photo_flickr_id": "1512327816", "setting": "last-3-pick-old-and-tell", "worker_id": "E7KQUM1QMVP71UN", "story_id": "47879", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] has one dope-ass ride .", "storylet_id": "239398"}], [{"original_text": "\"Get your damn toys off the street you stupid libs!\"", "album_id": "72157602309308014", "photo_flickr_id": "1511465443", "setting": "last-3-pick-old-and-tell", "worker_id": "E7KQUM1QMVP71UN", "story_id": "47879", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "`` get your damn toys off the street you stupid libs ! ''", "storylet_id": "239399"}], [{"original_text": "On a lonesome, winding mountain road, while riding our bikes, we were abducted. ", "album_id": "72157603934726675", "photo_flickr_id": "2275641858", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "47880", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on a lonesome , winding mountain road , while riding our bikes , we were abducted .", "storylet_id": "239400"}], [{"original_text": "Down tight, filthy corridors we were drug, our terror growing the deeper we were brought. ", "album_id": "72157603934726675", "photo_flickr_id": "2275613346", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "47880", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "down tight , filthy corridors we were drug , our terror growing the deeper we were brought .", "storylet_id": "239401"}], [{"original_text": "We were left in a stone walled room with only a metal ladder for an exit; there we were subjected to unrepeatable acts of torture and depravity. ", "album_id": "72157603934726675", "photo_flickr_id": "2275610950", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "47880", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were left in a stone walled room with only a metal ladder for an exit ; there we were subjected to unrepeatable acts of torture and depravity .", "storylet_id": "239402"}], [{"original_text": "Months later, what was left of us was taken through a dirt tunnel... ", "album_id": "72157603934726675", "photo_flickr_id": "2273611713", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "47880", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "months later , what was left of us was taken through a dirt tunnel ...", "storylet_id": "239403"}], [{"original_text": " ... and tossed into the putrid pea green lake, which our restless spirits to this day haunt. ", "album_id": "72157603934726675", "photo_flickr_id": "2273578277", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "47880", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "... and tossed into the putrid pea green lake , which our restless spirits to this day haunt .", "storylet_id": "239404"}], [{"original_text": "I went on vacation last year.", "album_id": "72157603934726675", "photo_flickr_id": "2273561989", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47881", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on vacation last year .", "storylet_id": "239405"}], [{"original_text": "The place was right by the water.", "album_id": "72157603934726675", "photo_flickr_id": "2273571087", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47881", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the place was right by the water .", "storylet_id": "239406"}], [{"original_text": "It was very beautiful.", "album_id": "72157603934726675", "photo_flickr_id": "2274389014", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47881", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was very beautiful .", "storylet_id": "239407"}], [{"original_text": "There were many rocks around.", "album_id": "72157603934726675", "photo_flickr_id": "2274395542", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47881", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many rocks around .", "storylet_id": "239408"}], [{"original_text": "I took a few boat rides out on the ocean.", "album_id": "72157603934726675", "photo_flickr_id": "2273609911", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47881", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i took a few boat rides out on the ocean .", "storylet_id": "239409"}], [{"original_text": "Living in the mountains of Utah has been one of the best decisions I ever made.", "album_id": "72157603934726675", "photo_flickr_id": "2273561989", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "47882", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "living in the mountains of location has been one of the best decisions i ever made .", "storylet_id": "239410"}], [{"original_text": "Here you have access to biking trails and hiking trails with the most awesome views ever.", "album_id": "72157603934726675", "photo_flickr_id": "2273571087", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "47882", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here you have access to biking trails and hiking trails with the most awesome views ever .", "storylet_id": "239411"}], [{"original_text": "There are a surprising number of lakes and reservoirs where you can sail or motor boat or try any water sport you like.", "album_id": "72157603934726675", "photo_flickr_id": "2274389014", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "47882", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are a surprising number of lakes and reservoirs where you can sail or motor boat or try any water sport you like .", "storylet_id": "239412"}], [{"original_text": "I like rock climbing along the north face.", "album_id": "72157603934726675", "photo_flickr_id": "2274395542", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "47882", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i like rock climbing along the north face .", "storylet_id": "239413"}], [{"original_text": "Lake Powell is my favorite with the Great Salt Lake as the runner up.", "album_id": "72157603934726675", "photo_flickr_id": "2273609911", "setting": "last-3-pick-old-and-tell", "worker_id": "855GVRQADD0X73A", "story_id": "47882", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lake powell is my favorite with the location location location as the runner up .", "storylet_id": "239414"}], [{"original_text": "It's a long hike to the hidden lagoon.", "album_id": "72157603934726675", "photo_flickr_id": "2275641858", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47883", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a long hike to the hidden lagoon .", "storylet_id": "239415"}], [{"original_text": "The housing is very basic, in underground dugouts.", "album_id": "72157603934726675", "photo_flickr_id": "2275613346", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47883", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the housing is very basic , in underground dugouts .", "storylet_id": "239416"}], [{"original_text": "We sleep in the cool, long tunnels.", "album_id": "72157603934726675", "photo_flickr_id": "2275610950", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47883", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we sleep in the cool , long tunnels .", "storylet_id": "239417"}], [{"original_text": "They all have drains to the outside.", "album_id": "72157603934726675", "photo_flickr_id": "2273611713", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47883", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they all have drains to the outside .", "storylet_id": "239418"}], [{"original_text": "But it's all worth it when we get to bathe in the green-blue warm water.", "album_id": "72157603934726675", "photo_flickr_id": "2273578277", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47883", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but it 's all worth it when we get to bathe in the green-blue warm water .", "storylet_id": "239419"}], [{"original_text": "Brothers bike riding in the mountain.", "album_id": "72157603934726675", "photo_flickr_id": "2275641858", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47884", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "brothers bike riding in the mountain .", "storylet_id": "239420"}], [{"original_text": "Exploring an abandon house. ", "album_id": "72157603934726675", "photo_flickr_id": "2275613346", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47884", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "exploring an abandon house .", "storylet_id": "239421"}], [{"original_text": "And discovering a hidden chamber. ", "album_id": "72157603934726675", "photo_flickr_id": "2275610950", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47884", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and discovering a hidden chamber .", "storylet_id": "239422"}], [{"original_text": "Secret passage way to the beach.", "album_id": "72157603934726675", "photo_flickr_id": "2273611713", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47884", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "secret passage way to the beach .", "storylet_id": "239423"}], [{"original_text": "Beautiful view of the beach at the end of the tunnel. ", "album_id": "72157603934726675", "photo_flickr_id": "2273578277", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47884", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "beautiful view of the beach at the end of the tunnel .", "storylet_id": "239424"}], [{"original_text": "This building is now over 200 years old.", "album_id": "72157606503374257", "photo_flickr_id": "2725569740", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47885", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this building is now over 200 years old .", "storylet_id": "239425"}], [{"original_text": "The men were on a break and talking about the war. ", "album_id": "72157606503374257", "photo_flickr_id": "2725570114", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47885", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the men were on a break and talking about the war .", "storylet_id": "239426"}], [{"original_text": "The trees in the front yard were large.", "album_id": "72157606503374257", "photo_flickr_id": "2725570546", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47885", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the trees in the front yard were large .", "storylet_id": "239427"}], [{"original_text": "Back in the day there were a lot more trees in the neighborhood. ", "album_id": "72157606503374257", "photo_flickr_id": "2725571920", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47885", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "back in the day there were a lot more trees in the neighborhood .", "storylet_id": "239428"}], [{"original_text": "This house is still standing and looking great today.", "album_id": "72157606503374257", "photo_flickr_id": "2725572770", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47885", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this house is still standing and looking great today .", "storylet_id": "239429"}], [{"original_text": "Historic papers had a history to tell.", "album_id": "72157606503374257", "photo_flickr_id": "2725567404", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47886", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "historic papers had a history to tell .", "storylet_id": "239430"}], [{"original_text": "Details of life a century ago was in fine print.", "album_id": "72157606503374257", "photo_flickr_id": "2724744907", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47886", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "details of life a century ago was in fine print .", "storylet_id": "239431"}], [{"original_text": "There were images to accompany the print.", "album_id": "72157606503374257", "photo_flickr_id": "2724745793", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47886", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were images to accompany the print .", "storylet_id": "239432"}], [{"original_text": "There was much green space then as well.", "album_id": "72157606503374257", "photo_flickr_id": "2724751335", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47886", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was much green space then as well .", "storylet_id": "239433"}], [{"original_text": "Many were homes owned by early settlers.", "album_id": "72157606503374257", "photo_flickr_id": "2725574104", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "47886", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many were homes owned by early settlers .", "storylet_id": "239434"}], [{"original_text": "I love looking at my Great Grandparents pictures that they took. ", "album_id": "72157606503374257", "photo_flickr_id": "2725569740", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47887", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love looking at my great grandparents pictures that they took .", "storylet_id": "239435"}], [{"original_text": "Grandma said that this picture was taken just before the war.", "album_id": "72157606503374257", "photo_flickr_id": "2725570114", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47887", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma said that this picture was taken just before the war .", "storylet_id": "239436"}], [{"original_text": "And this was part of the city park that they used to picnic at.", "album_id": "72157606503374257", "photo_flickr_id": "2725570546", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47887", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and this was part of the city park that they used to picnic at .", "storylet_id": "239437"}], [{"original_text": "Here is a picture of their house. It is not even there anymore and hasn't been for over 30 years.", "album_id": "72157606503374257", "photo_flickr_id": "2725571920", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47887", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is a picture of their house . it is not even there anymore and has n't been for over 30 years .", "storylet_id": "239438"}], [{"original_text": "Here is the Mayor's house, you can tell that they came from a rich background.", "album_id": "72157606503374257", "photo_flickr_id": "2725572770", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "47887", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is the mayor 's house , you can tell that they came from a rich background .", "storylet_id": "239439"}], [{"original_text": "before the battle me and all of the other leadership met up.", "album_id": "72157606503374257", "photo_flickr_id": "2725569740", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "47888", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before the battle me and all of the other leadership met up .", "storylet_id": "239440"}], [{"original_text": "we had long talks about what was expected.", "album_id": "72157606503374257", "photo_flickr_id": "2725570114", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "47888", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had long talks about what was expected .", "storylet_id": "239441"}], [{"original_text": "where to deploy the cannons, and where they should point.", "album_id": "72157606503374257", "photo_flickr_id": "2725570546", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "47888", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "where to deploy the cannons , and where they should point .", "storylet_id": "239442"}], [{"original_text": "we had an idea to place them in the trees to make the 1st few shots a surprise.", "album_id": "72157606503374257", "photo_flickr_id": "2725571920", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "47888", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had an idea to place them in the trees to make the 1st few shots a surprise .", "storylet_id": "239443"}], [{"original_text": "some of them where even hidden behind houses.", "album_id": "72157606503374257", "photo_flickr_id": "2725572770", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "47888", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of them where even hidden behind houses .", "storylet_id": "239444"}], [{"original_text": "Today the class was looking at history ", "album_id": "72157606503374257", "photo_flickr_id": "2725569740", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "47889", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today the class was looking at history", "storylet_id": "239445"}], [{"original_text": "We saw a lot of old looking pictures.", "album_id": "72157606503374257", "photo_flickr_id": "2725570114", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "47889", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw a lot of old looking pictures .", "storylet_id": "239446"}], [{"original_text": "Some of the pictures were of familiar places where we lived.", "album_id": "72157606503374257", "photo_flickr_id": "2725570546", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "47889", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the pictures were of familiar places where we lived .", "storylet_id": "239447"}], [{"original_text": "However a lot of these places were of old parks that had been torn down.", "album_id": "72157606503374257", "photo_flickr_id": "2725571920", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "47889", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "however a lot of these places were of old parks that had been torn down .", "storylet_id": "239448"}], [{"original_text": "History sure is interesting. There's a lot to learn!", "album_id": "72157606503374257", "photo_flickr_id": "2725572770", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "47889", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "history sure is interesting . there 's a lot to learn !", "storylet_id": "239449"}], [{"original_text": "It was a great day for a cook out.", "album_id": "72157606932450262", "photo_flickr_id": "2793994373", "setting": "first-2-pick-and-tell", "worker_id": "6K8CISOFWFDJB4Y", "story_id": "47890", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a great day for a cook out .", "storylet_id": "239450"}], [{"original_text": "The family were enjoying themselves.", "album_id": "72157606932450262", "photo_flickr_id": "2793988687", "setting": "first-2-pick-and-tell", "worker_id": "6K8CISOFWFDJB4Y", "story_id": "47890", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family were enjoying themselves .", "storylet_id": "239451"}], [{"original_text": "Uncle Bob provide the entertainment.", "album_id": "72157606932450262", "photo_flickr_id": "2793956279", "setting": "first-2-pick-and-tell", "worker_id": "6K8CISOFWFDJB4Y", "story_id": "47890", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "uncle [male] provide the entertainment .", "storylet_id": "239452"}], [{"original_text": "We fired up the grill", "album_id": "72157606932450262", "photo_flickr_id": "2798251473", "setting": "first-2-pick-and-tell", "worker_id": "6K8CISOFWFDJB4Y", "story_id": "47890", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we fired up the grill", "storylet_id": "239453"}], [{"original_text": "and had some cold beer.", "album_id": "72157606932450262", "photo_flickr_id": "2793955781", "setting": "first-2-pick-and-tell", "worker_id": "6K8CISOFWFDJB4Y", "story_id": "47890", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and had some cold beer .", "storylet_id": "239454"}], [{"original_text": "I went for a walk downtown earlier.", "album_id": "72157606932450262", "photo_flickr_id": "2793988687", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47891", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a walk downtown earlier .", "storylet_id": "239455"}], [{"original_text": "I saw a motorcycle with three wheels.", "album_id": "72157606932450262", "photo_flickr_id": "2793956279", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47891", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw a motorcycle with three wheels .", "storylet_id": "239456"}], [{"original_text": "Some of the garbage cans were broken. ", "album_id": "72157606932450262", "photo_flickr_id": "2793989501", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47891", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the garbage cans were broken .", "storylet_id": "239457"}], [{"original_text": "The church had beautiful stained glass windows.", "album_id": "72157606932450262", "photo_flickr_id": "2794819556", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47891", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the church had beautiful stained glass windows .", "storylet_id": "239458"}], [{"original_text": "Afterward I finally arrived back at my apartment.", "album_id": "72157606932450262", "photo_flickr_id": "2794820174", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47891", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward i finally arrived back at my apartment .", "storylet_id": "239459"}], [{"original_text": "My photo-taking journey around the city started with this lovely scaffolding under a deep blue sky.", "album_id": "72157606932450262", "photo_flickr_id": "2793988687", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "47892", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my photo-taking journey around the city started with this lovely scaffolding under a deep blue sky .", "storylet_id": "239460"}], [{"original_text": "This lovely gentleman on this tri-ped breezed past me.", "album_id": "72157606932450262", "photo_flickr_id": "2793956279", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "47892", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this lovely gentleman on this tri-ped breezed past me .", "storylet_id": "239461"}], [{"original_text": "The beautiful trashcan gave me inspriation as contrasta gainst the grey street stripes.", "album_id": "72157606932450262", "photo_flickr_id": "2793989501", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "47892", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beautiful trashcan gave me inspriation as contrasta gainst the grey street stripes .", "storylet_id": "239462"}], [{"original_text": "The stained glass I saw later on reminded me of Old Englande.", "album_id": "72157606932450262", "photo_flickr_id": "2794819556", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "47892", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the stained glass i saw later on reminded me of old englande .", "storylet_id": "239463"}], [{"original_text": "And near the end, this chimney swept my heart away in atmospheric ruminations.", "album_id": "72157606932450262", "photo_flickr_id": "2794820174", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "47892", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and near the end , this chimney swept my heart away in atmospheric ruminations .", "storylet_id": "239464"}], [{"original_text": "A bright blue sky to start off the day.", "album_id": "72157606932450262", "photo_flickr_id": "2793988687", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "47893", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a bright blue sky to start off the day .", "storylet_id": "239465"}], [{"original_text": "Taking the trike on a drive across town.", "album_id": "72157606932450262", "photo_flickr_id": "2793956279", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "47893", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "taking the trike on a drive across town .", "storylet_id": "239466"}], [{"original_text": "Passed an odd shaped trash can that could have seen better days.", "album_id": "72157606932450262", "photo_flickr_id": "2793989501", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "47893", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "passed an odd shaped trash can that could have seen better days .", "storylet_id": "239467"}], [{"original_text": "Saw a beautiful glass sign that was perfect for the old lady but the owner refused to sell.", "album_id": "72157606932450262", "photo_flickr_id": "2794819556", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "47893", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "saw a beautiful glass sign that was perfect for the old lady but the owner refused to sell .", "storylet_id": "239468"}], [{"original_text": "Above a crow watches from the chimney.", "album_id": "72157606932450262", "photo_flickr_id": "2794820174", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "47893", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "above a crow watches from the chimney .", "storylet_id": "239469"}], [{"original_text": "Raymond loved his house. And as much as he enjoyed his, but he loved being with his girlfriend Carla. And he enjoyed his girlfriend Carla's even more than his own. He even put the good luck reef on his front door that she had given him. ", "album_id": "72157606932450262", "photo_flickr_id": "2793994373", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "47894", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] loved his house . and as much as he enjoyed his , but he loved being with his girlfriend [female] . and he enjoyed his girlfriend [female] 's even more than his own . he even put the good luck reef on his front door that she had given him .", "storylet_id": "239470"}], [{"original_text": "Along the way to his girlfriend Carla's house Raymond passes his old job at the construction site down the street from him.", "album_id": "72157606932450262", "photo_flickr_id": "2793988687", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "47894", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "along the way to his girlfriend [female] 's house [male] passes his old job at the construction site down the street from him .", "storylet_id": "239471"}], [{"original_text": "Raymond usually drives his car to Carla's but today he only had enough gas in his car to get back and forth to work until payday, so he road his dirt bike through the streets to get to her.", "album_id": "72157606932450262", "photo_flickr_id": "2793956279", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "47894", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] usually drives his car to [female] 's but today he only had enough gas in his car to get back and forth to work until payday , so he road his dirt bike through the streets to get to her .", "storylet_id": "239472"}], [{"original_text": "Raymond even stopped at the seaport he passed along the way to catch a little fish. He knew it was Carla's favorite.", "album_id": "72157606932450262", "photo_flickr_id": "2798251473", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "47894", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] even stopped at the seaport he passed along the way to catch a little fish . he knew it was [female] 's favorite .", "storylet_id": "239473"}], [{"original_text": "Finally, he arrives and notices Carla hasn't gotten home from work yet. He looks at his watch and smiles. Only five minutes left.", "album_id": "72157606932450262", "photo_flickr_id": "2793955781", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "47894", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , he arrives and notices [female] has n't gotten home from work yet . he looks at his watch and smiles . only five minutes left .", "storylet_id": "239474"}], [{"original_text": "This was an old photo of the courthouse int eh 1950s.", "album_id": "72157610561797005", "photo_flickr_id": "3075923050", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47895", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was an old photo of the courthouse int eh 1950s .", "storylet_id": "239475"}], [{"original_text": "The were delivering some very important artwork. ", "album_id": "72157610561797005", "photo_flickr_id": "3075923046", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47895", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the were delivering some very important artwork .", "storylet_id": "239476"}], [{"original_text": "They were getting the lighting ready to be hung also.", "album_id": "72157610561797005", "photo_flickr_id": "3075923030", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47895", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were getting the lighting ready to be hung also .", "storylet_id": "239477"}], [{"original_text": " The building looks exactly the same today.", "album_id": "72157610561797005", "photo_flickr_id": "3075928728", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47895", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the building looks exactly the same today .", "storylet_id": "239478"}], [{"original_text": "This is a shot from across the street.", "album_id": "72157610561797005", "photo_flickr_id": "3075928726", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "47895", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a shot from across the street .", "storylet_id": "239479"}], [{"original_text": "They visited the tourist attraction on an overcast day.", "album_id": "72157610561797005", "photo_flickr_id": "3075928714", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "47896", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they visited the tourist attraction on an overcast day .", "storylet_id": "239480"}], [{"original_text": "Inside they found a museum.", "album_id": "72157610561797005", "photo_flickr_id": "3075100323", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "47896", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside they found a museum .", "storylet_id": "239481"}], [{"original_text": "They took their time to appreciate the art.", "album_id": "72157610561797005", "photo_flickr_id": "3075100319", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "47896", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they took their time to appreciate the art .", "storylet_id": "239482"}], [{"original_text": "There were paintings and sculptures.", "album_id": "72157610561797005", "photo_flickr_id": "3075939368", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "47896", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were paintings and sculptures .", "storylet_id": "239483"}], [{"original_text": "There was even a beautiful drawing of the building itself.", "album_id": "72157610561797005", "photo_flickr_id": "3075947690", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "47896", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was even a beautiful drawing of the building itself .", "storylet_id": "239484"}], [{"original_text": "The history class was looking at old pictures", "album_id": "72157610561797005", "photo_flickr_id": "3075928714", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "47897", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the history class was looking at old pictures", "storylet_id": "239485"}], [{"original_text": "to try and piece history together.", "album_id": "72157610561797005", "photo_flickr_id": "3075100323", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "47897", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to try and piece history together .", "storylet_id": "239486"}], [{"original_text": "They looked at old museums,", "album_id": "72157610561797005", "photo_flickr_id": "3075100319", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "47897", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they looked at old museums ,", "storylet_id": "239487"}], [{"original_text": "and they looked at old artwork.", "album_id": "72157610561797005", "photo_flickr_id": "3075939368", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "47897", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and they looked at old artwork .", "storylet_id": "239488"}], [{"original_text": "But what they were most interested in was the old buildings. They loved seeing how history has changed them. ", "album_id": "72157610561797005", "photo_flickr_id": "3075947690", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "47897", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but what they were most interested in was the old buildings . they loved seeing how history has changed them .", "storylet_id": "239489"}], [{"original_text": "The old building looked very important.", "album_id": "72157610561797005", "photo_flickr_id": "3075928714", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47898", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old building looked very important .", "storylet_id": "239490"}], [{"original_text": "On the inside was a few art exhibits.", "album_id": "72157610561797005", "photo_flickr_id": "3075100323", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47898", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on the inside was a few art exhibits .", "storylet_id": "239491"}], [{"original_text": "They were painted with extreme precision.", "album_id": "72157610561797005", "photo_flickr_id": "3075100319", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47898", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were painted with extreme precision .", "storylet_id": "239492"}], [{"original_text": "A wing of the museum had amazing sculptures.", "album_id": "72157610561797005", "photo_flickr_id": "3075939368", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47898", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a wing of the museum had amazing sculptures .", "storylet_id": "239493"}], [{"original_text": "A painting of a giant building inspired me to want to paint. ", "album_id": "72157610561797005", "photo_flickr_id": "3075947690", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "47898", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a painting of a giant building inspired me to want to paint .", "storylet_id": "239494"}], [{"original_text": "The tall columns on the building had been made of imported stone. ", "album_id": "72157610561797005", "photo_flickr_id": "3075923050", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47899", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tall columns on the building had been made of imported stone .", "storylet_id": "239495"}], [{"original_text": "The trucks delivered heavy sculptures. ", "album_id": "72157610561797005", "photo_flickr_id": "3075923046", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47899", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the trucks delivered heavy sculptures .", "storylet_id": "239496"}], [{"original_text": "One sculpture was so large it had to be moved with a crane. ", "album_id": "72157610561797005", "photo_flickr_id": "3075923030", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47899", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one sculpture was so large it had to be moved with a crane .", "storylet_id": "239497"}], [{"original_text": "Many years ago, the road was lined with c chain fence. ", "album_id": "72157610561797005", "photo_flickr_id": "3075928728", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47899", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many years ago , the road was lined with c chain fence .", "storylet_id": "239498"}], [{"original_text": "You can see an old model T parked on the wide road that was new at the time. ", "album_id": "72157610561797005", "photo_flickr_id": "3075928726", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47899", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you can see an old model t parked on the wide road that was new at the time .", "storylet_id": "239499"}], [{"original_text": "Today was the day of the polar plunge for charity!", "album_id": "72157622990628531", "photo_flickr_id": "4233989059", "setting": "first-2-pick-and-tell", "worker_id": "Q9TC192SVS2K1HE", "story_id": "47900", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day of the polar plunge for charity !", "storylet_id": "239500"}], [{"original_text": "The water was so cold it had ice in parts of it.", "album_id": "72157622990628531", "photo_flickr_id": "4233994753", "setting": "first-2-pick-and-tell", "worker_id": "Q9TC192SVS2K1HE", "story_id": "47900", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water was so cold it had ice in parts of it .", "storylet_id": "239501"}], [{"original_text": "Tons of people came out to take the plunge.", "album_id": "72157622990628531", "photo_flickr_id": "4233989489", "setting": "first-2-pick-and-tell", "worker_id": "Q9TC192SVS2K1HE", "story_id": "47900", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "tons of people came out to take the plunge .", "storylet_id": "239502"}], [{"original_text": "Everyone's ready to run into the water.", "album_id": "72157622990628531", "photo_flickr_id": "4234767088", "setting": "first-2-pick-and-tell", "worker_id": "Q9TC192SVS2K1HE", "story_id": "47900", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone 's ready to run into the water .", "storylet_id": "239503"}], [{"original_text": "The water was so freezing!", "album_id": "72157622990628531", "photo_flickr_id": "4234766166", "setting": "first-2-pick-and-tell", "worker_id": "Q9TC192SVS2K1HE", "story_id": "47900", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the water was so freezing !", "storylet_id": "239504"}], [{"original_text": "Arriving at the lake festivities. ", "album_id": "72157622990628531", "photo_flickr_id": "4233985155", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47901", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "arriving at the lake festivities .", "storylet_id": "239505"}], [{"original_text": "The cold weather didn't stop the boys from getting in their swimsuits. ", "album_id": "72157622990628531", "photo_flickr_id": "4234760572", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47901", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cold weather did n't stop the boys from getting in their swimsuits .", "storylet_id": "239506"}], [{"original_text": "We all took a dip in the freezing cold this is going to be a yearly thing. ", "album_id": "72157622990628531", "photo_flickr_id": "4234766166", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47901", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all took a dip in the freezing cold this is going to be a yearly thing .", "storylet_id": "239507"}], [{"original_text": "The rowing races were fun to watch and off to a great start. ", "album_id": "72157622990628531", "photo_flickr_id": "4234760816", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47901", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rowing races were fun to watch and off to a great start .", "storylet_id": "239508"}], [{"original_text": "You can clearly see the winner won by a landslide and now everyone has their shirt off. ", "album_id": "72157622990628531", "photo_flickr_id": "4234764130", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47901", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you can clearly see the winner won by a landslide and now everyone has their shirt off .", "storylet_id": "239509"}], [{"original_text": "People gather together in the cold to go for a swim.", "album_id": "72157622990628531", "photo_flickr_id": "4233989059", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47902", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people gather together in the cold to go for a swim .", "storylet_id": "239510"}], [{"original_text": "The water still has sheets of ice in it.", "album_id": "72157622990628531", "photo_flickr_id": "4233994753", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47902", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water still has sheets of ice in it .", "storylet_id": "239511"}], [{"original_text": "Some people are there just to watch and take pictures.", "album_id": "72157622990628531", "photo_flickr_id": "4233989489", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47902", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people are there just to watch and take pictures .", "storylet_id": "239512"}], [{"original_text": "It`s a big event that happens every year.", "album_id": "72157622990628531", "photo_flickr_id": "4234767088", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47902", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it`s a big event that happens every year .", "storylet_id": "239513"}], [{"original_text": "That water is completely freezing, those are some brave people.", "album_id": "72157622990628531", "photo_flickr_id": "4234766166", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "47902", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that water is completely freezing , those are some brave people .", "storylet_id": "239514"}], [{"original_text": "People were getting ready for the New Year's Day Arctic Plunge.", "album_id": "72157622990628531", "photo_flickr_id": "4233989059", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "47903", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people were getting ready for the new year 's day arctic plunge .", "storylet_id": "239515"}], [{"original_text": "Look how cold that water is. Those people are brave.", "album_id": "72157622990628531", "photo_flickr_id": "4233994753", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "47903", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look how cold that water is . those people are brave .", "storylet_id": "239516"}], [{"original_text": "There was a large crowd of participants and spectators.", "album_id": "72157622990628531", "photo_flickr_id": "4233989489", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "47903", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a large crowd of participants and spectators .", "storylet_id": "239517"}], [{"original_text": "Here they are waiting for the whistle to dive in.", "album_id": "72157622990628531", "photo_flickr_id": "4234767088", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "47903", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here they are waiting for the whistle to dive in .", "storylet_id": "239518"}], [{"original_text": "In they went to the cold water.", "album_id": "72157622990628531", "photo_flickr_id": "4234766166", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "47903", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in they went to the cold water .", "storylet_id": "239519"}], [{"original_text": "John, Steve and Mary had signed up to do the Polar Plunge for charity. ", "album_id": "72157622990628531", "photo_flickr_id": "4233985155", "setting": "last-3-pick-old-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47904", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] , [male] and [female] had signed up to do the polar plunge for charity .", "storylet_id": "239520"}], [{"original_text": "There were many people there that day that had signed up. ", "album_id": "72157622990628531", "photo_flickr_id": "4234760572", "setting": "last-3-pick-old-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47904", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many people there that day that had signed up .", "storylet_id": "239521"}], [{"original_text": "After the first few people jumped in, it went fast. ", "album_id": "72157622990628531", "photo_flickr_id": "4234766166", "setting": "last-3-pick-old-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47904", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the first few people jumped in , it went fast .", "storylet_id": "239522"}], [{"original_text": "There were as many onlookers as people participating. ", "album_id": "72157622990628531", "photo_flickr_id": "4234760816", "setting": "last-3-pick-old-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47904", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were as many onlookers as people participating .", "storylet_id": "239523"}], [{"original_text": "There were also many people that were scared to jump in.", "album_id": "72157622990628531", "photo_flickr_id": "4234764130", "setting": "last-3-pick-old-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47904", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were also many people that were scared to jump in .", "storylet_id": "239524"}], [{"original_text": "Today we had the biggest snow storm of the winter!", "album_id": "72157623112594684", "photo_flickr_id": "4232775139", "setting": "first-2-pick-and-tell", "worker_id": "Q9TC192SVS2K1HE", "story_id": "47905", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we had the biggest snow storm of the winter !", "storylet_id": "239525"}], [{"original_text": "We were snowed in and couldn't leave.", "album_id": "72157623112594684", "photo_flickr_id": "4232775133", "setting": "first-2-pick-and-tell", "worker_id": "Q9TC192SVS2K1HE", "story_id": "47905", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were snowed in and could n't leave .", "storylet_id": "239526"}], [{"original_text": "Plenty of other cars got stuck on the side of the road in the storm.", "album_id": "72157623112594684", "photo_flickr_id": "4233561350", "setting": "first-2-pick-and-tell", "worker_id": "Q9TC192SVS2K1HE", "story_id": "47905", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "plenty of other cars got stuck on the side of the road in the storm .", "storylet_id": "239527"}], [{"original_text": "The kids loved playing in the snow building a snowman.", "album_id": "72157623112594684", "photo_flickr_id": "4232775137", "setting": "first-2-pick-and-tell", "worker_id": "Q9TC192SVS2K1HE", "story_id": "47905", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids loved playing in the snow building a snowman .", "storylet_id": "239528"}], [{"original_text": "Finally the roads were cleared we were able to get out!", "album_id": "72157623112594684", "photo_flickr_id": "4233561362", "setting": "first-2-pick-and-tell", "worker_id": "Q9TC192SVS2K1HE", "story_id": "47905", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the roads were cleared we were able to get out !", "storylet_id": "239529"}], [{"original_text": "This is Camille's house. When she awoke this morning she had a wonderful discovery. It had snowed!", "album_id": "72157623112594684", "photo_flickr_id": "4232775135", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47906", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is [female] 's house . when she awoke this morning she had a wonderful discovery . it had snowed !", "storylet_id": "239530"}], [{"original_text": "The neighborhood was covered with two feet of snow. ", "album_id": "72157623112594684", "photo_flickr_id": "4232775141", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47906", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the neighborhood was covered with two feet of snow .", "storylet_id": "239531"}], [{"original_text": "A few cars managed to make a trail through the snow. ", "album_id": "72157623112594684", "photo_flickr_id": "4233561342", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47906", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few cars managed to make a trail through the snow .", "storylet_id": "239532"}], [{"original_text": "The main road was much better. Still a good idea to drive carefully. ", "album_id": "72157623112594684", "photo_flickr_id": "4233561360", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47906", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the main road was much better . still a good idea to drive carefully .", "storylet_id": "239533"}], [{"original_text": "Camille built a snowman taller than herself.", "album_id": "72157623112594684", "photo_flickr_id": "4232775137", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47906", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] built a snowman taller than herself .", "storylet_id": "239534"}], [{"original_text": "This place is having their winter season.", "album_id": "72157623112594684", "photo_flickr_id": "4232775139", "setting": "last-3-pick-old-and-tell", "worker_id": "GU7QDXCJDC5BNEQ", "story_id": "47907", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this place is having their winter season .", "storylet_id": "239535"}], [{"original_text": "The car near the house was covered with snow.", "album_id": "72157623112594684", "photo_flickr_id": "4232775133", "setting": "last-3-pick-old-and-tell", "worker_id": "GU7QDXCJDC5BNEQ", "story_id": "47907", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the car near the house was covered with snow .", "storylet_id": "239536"}], [{"original_text": "Even the roads, the cars on the roads, the trees were also covered with snow.", "album_id": "72157623112594684", "photo_flickr_id": "4233561350", "setting": "last-3-pick-old-and-tell", "worker_id": "GU7QDXCJDC5BNEQ", "story_id": "47907", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the roads , the cars on the roads , the trees were also covered with snow .", "storylet_id": "239537"}], [{"original_text": "The two kids were enjoying the snow and making snowman.", "album_id": "72157623112594684", "photo_flickr_id": "4232775137", "setting": "last-3-pick-old-and-tell", "worker_id": "GU7QDXCJDC5BNEQ", "story_id": "47907", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the two kids were enjoying the snow and making snowman .", "storylet_id": "239538"}], [{"original_text": "The place was surrounded with snow no people around because it was cold outside.", "album_id": "72157623112594684", "photo_flickr_id": "4233561362", "setting": "last-3-pick-old-and-tell", "worker_id": "GU7QDXCJDC5BNEQ", "story_id": "47907", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the place was surrounded with snow no people around because it was cold outside .", "storylet_id": "239539"}], [{"original_text": "The house is covered in snow.", "album_id": "72157623112594684", "photo_flickr_id": "4232775135", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47908", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the house is covered in snow .", "storylet_id": "239540"}], [{"original_text": "The street is covered in snow.", "album_id": "72157623112594684", "photo_flickr_id": "4232775141", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47908", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the street is covered in snow .", "storylet_id": "239541"}], [{"original_text": "This is a winter scene.", "album_id": "72157623112594684", "photo_flickr_id": "4233561342", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47908", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a winter scene .", "storylet_id": "239542"}], [{"original_text": "The street needs to be plowed.", "album_id": "72157623112594684", "photo_flickr_id": "4233561360", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47908", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the street needs to be plowed .", "storylet_id": "239543"}], [{"original_text": "Some children are playing in the snow.", "album_id": "72157623112594684", "photo_flickr_id": "4232775137", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "47908", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some children are playing in the snow .", "storylet_id": "239544"}], [{"original_text": "We woke up to find our entire neighborhood covered in snow.", "album_id": "72157623112594684", "photo_flickr_id": "4232775139", "setting": "last-3-pick-old-and-tell", "worker_id": "KR2OT4K7AFSMLWQ", "story_id": "47909", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we woke up to find our entire neighborhood covered in snow .", "storylet_id": "239545"}], [{"original_text": "I never look forward to cleaning the snow off of the car.", "album_id": "72157623112594684", "photo_flickr_id": "4232775133", "setting": "last-3-pick-old-and-tell", "worker_id": "KR2OT4K7AFSMLWQ", "story_id": "47909", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i never look forward to cleaning the snow off of the car .", "storylet_id": "239546"}], [{"original_text": "Most of the roads were closed, so I decided that it would be more fun to spend the day enjoying the snow with the kids rather than clean the snow off of the car.", "album_id": "72157623112594684", "photo_flickr_id": "4233561350", "setting": "last-3-pick-old-and-tell", "worker_id": "KR2OT4K7AFSMLWQ", "story_id": "47909", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most of the roads were closed , so i decided that it would be more fun to spend the day enjoying the snow with the kids rather than clean the snow off of the car .", "storylet_id": "239547"}], [{"original_text": "The kids had so much fun building a snowman that my five year old ended up with snow in her hood. Big sister is helping to clear the snow out. By the look on her face, I think she might have put it there in the first place!", "album_id": "72157623112594684", "photo_flickr_id": "4232775137", "setting": "last-3-pick-old-and-tell", "worker_id": "KR2OT4K7AFSMLWQ", "story_id": "47909", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids had so much fun building a snowman that my five year old ended up with snow in her hood . big sister is helping to clear the snow out . by the look on her face , i think she might have put it there in the first place !", "storylet_id": "239548"}], [{"original_text": "By evening the roads were fairly clear. That means it's back to work tomorrow.", "album_id": "72157623112594684", "photo_flickr_id": "4233561362", "setting": "last-3-pick-old-and-tell", "worker_id": "KR2OT4K7AFSMLWQ", "story_id": "47909", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by evening the roads were fairly clear . that means it 's back to work tomorrow .", "storylet_id": "239549"}], [{"original_text": "It's sleep over night and the boys are going to have some fun.", "album_id": "72157623114581602", "photo_flickr_id": "4234484202", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "47910", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's sleep over night and the boys are going to have some fun .", "storylet_id": "239550"}], [{"original_text": "First, an indoor water gun fight.", "album_id": "72157623114581602", "photo_flickr_id": "4234491610", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "47910", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first , an indoor water gun fight .", "storylet_id": "239551"}], [{"original_text": "Ok, maybe it's time to take things down a step and watch a movie.", "album_id": "72157623114581602", "photo_flickr_id": "4234496372", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "47910", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "ok , maybe it 's time to take things down a step and watch a movie .", "storylet_id": "239552"}], [{"original_text": "Dancing mummies? Zombies? Who cares, as long as it's fun!", "album_id": "72157623114581602", "photo_flickr_id": "4234512148", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "47910", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dancing mummies ? zombies ? who cares , as long as it 's fun !", "storylet_id": "239553"}], [{"original_text": "Nothing beats an old fashioned \"horsey\" ride!", "album_id": "72157623114581602", "photo_flickr_id": "4233745509", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "47910", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "nothing beats an old fashioned `` horsey '' ride !", "storylet_id": "239554"}], [{"original_text": "I invited all my friends over to my house today so that we could play together.", "album_id": "72157623114581602", "photo_flickr_id": "4233712293", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47911", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i invited all my friends over to my house today so that we could play together .", "storylet_id": "239555"}], [{"original_text": "We had a great time. ", "album_id": "72157623114581602", "photo_flickr_id": "4234488988", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47911", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a great time .", "storylet_id": "239556"}], [{"original_text": "We played lots of games together.", "album_id": "72157623114581602", "photo_flickr_id": "4234491610", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47911", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we played lots of games together .", "storylet_id": "239557"}], [{"original_text": "After a while we got tired.", "album_id": "72157623114581602", "photo_flickr_id": "4234494084", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47911", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a while we got tired .", "storylet_id": "239558"}], [{"original_text": "We sat on the floor and watched movies together.", "album_id": "72157623114581602", "photo_flickr_id": "4234496372", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47911", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we sat on the floor and watched movies together .", "storylet_id": "239559"}], [{"original_text": "The boys posed cool for the picture.", "album_id": "72157623114581602", "photo_flickr_id": "4234484202", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "47912", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boys posed cool for the picture .", "storylet_id": "239560"}], [{"original_text": "The boys enjoyed playing a game of cops and robbers in the house.", "album_id": "72157623114581602", "photo_flickr_id": "4234491610", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "47912", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boys enjoyed playing a game of cops and robbers in the house .", "storylet_id": "239561"}], [{"original_text": "The boys watched their favorite movie on the television.", "album_id": "72157623114581602", "photo_flickr_id": "4234496372", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "47912", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boys watched their favorite movie on the television .", "storylet_id": "239562"}], [{"original_text": "The boys made funny clothes out of plastic bags. ", "album_id": "72157623114581602", "photo_flickr_id": "4234512148", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "47912", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boys made funny clothes out of plastic bags .", "storylet_id": "239563"}], [{"original_text": "The boys pretended they were at a wrestling match. ", "album_id": "72157623114581602", "photo_flickr_id": "4233745509", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "47912", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boys pretended they were at a wrestling match .", "storylet_id": "239564"}], [{"original_text": "When all the cousins get together, it's a wild time.", "album_id": "72157623114581602", "photo_flickr_id": "4234484202", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47913", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when all the cousins get together , it 's a wild time .", "storylet_id": "239565"}], [{"original_text": "Of course there are Nerf fights and video game challenges.", "album_id": "72157623114581602", "photo_flickr_id": "4234491610", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47913", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "of course there are nerf fights and video game challenges .", "storylet_id": "239566"}], [{"original_text": "There are long slumber party times, with some wild stories and TV watching.", "album_id": "72157623114581602", "photo_flickr_id": "4234496372", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47913", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are long slumber party times , with some wild stories and tv watching .", "storylet_id": "239567"}], [{"original_text": "There's dressing up crazily for a show.", "album_id": "72157623114581602", "photo_flickr_id": "4234512148", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47913", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there 's dressing up crazily for a show .", "storylet_id": "239568"}], [{"original_text": "And there's dancing around---lots of dancing around!", "album_id": "72157623114581602", "photo_flickr_id": "4233745509", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47913", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and there 's dancing around -- -lots of dancing around !", "storylet_id": "239569"}], [{"original_text": "Two boys pose for the camera like cool dudes.", "album_id": "72157623114581602", "photo_flickr_id": "4234484202", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47914", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two boys pose for the camera like cool dudes .", "storylet_id": "239570"}], [{"original_text": "They are having a sleepover and are very excited.", "album_id": "72157623114581602", "photo_flickr_id": "4234491610", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47914", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are having a sleepover and are very excited .", "storylet_id": "239571"}], [{"original_text": "They camp out in the living room in front of the tv.", "album_id": "72157623114581602", "photo_flickr_id": "4234496372", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47914", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they camp out in the living room in front of the tv .", "storylet_id": "239572"}], [{"original_text": "They dress up with bags making them into clothing items.", "album_id": "72157623114581602", "photo_flickr_id": "4234512148", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47914", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they dress up with bags making them into clothing items .", "storylet_id": "239573"}], [{"original_text": "Finally dad decides to give them piggy back rides.", "album_id": "72157623114581602", "photo_flickr_id": "4233745509", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47914", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally dad decides to give them piggy back rides .", "storylet_id": "239574"}], [{"original_text": "I had a great time at the party last week.", "album_id": "72157625207403904", "photo_flickr_id": "4952494166", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47915", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the party last week .", "storylet_id": "239575"}], [{"original_text": "They invited a team of cheerleaders to perform.", "album_id": "72157625207403904", "photo_flickr_id": "4951903323", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47915", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they invited a team of cheerleaders to perform .", "storylet_id": "239576"}], [{"original_text": "Many awards were given out.", "album_id": "72157625207403904", "photo_flickr_id": "4951903827", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47915", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many awards were given out .", "storylet_id": "239577"}], [{"original_text": "A lot of people were interviewed.", "album_id": "72157625207403904", "photo_flickr_id": "4952495212", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47915", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a lot of people were interviewed .", "storylet_id": "239578"}], [{"original_text": "Afterward I left the ceremony to find some food.", "album_id": "72157625207403904", "photo_flickr_id": "4951905887", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47915", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward i left the ceremony to find some food .", "storylet_id": "239579"}], [{"original_text": "One of the university's football players won a prestigious award, ", "album_id": "72157625207403904", "photo_flickr_id": "4951903827", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "47916", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one of the university 's football players won a prestigious award ,", "storylet_id": "239580"}], [{"original_text": "so the school decided to hold a banquet to benefit his accomplishments.", "album_id": "72157625207403904", "photo_flickr_id": "4952494166", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "47916", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so the school decided to hold a banquet to benefit his accomplishments .", "storylet_id": "239581"}], [{"original_text": "The school band performed,", "album_id": "72157625207403904", "photo_flickr_id": "4951904893", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "47916", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the school band performed ,", "storylet_id": "239582"}], [{"original_text": "as did the cheerleaders.", "album_id": "72157625207403904", "photo_flickr_id": "4951903323", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "47916", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as did the cheerleaders .", "storylet_id": "239583"}], [{"original_text": "Even the head of the alumni association made a speech about how proud alumni were of their school's continual excellence. The benefit was extremely successful and the football player felt really good about all the glory that he had brought to his alma mater. ", "album_id": "72157625207403904", "photo_flickr_id": "4952497298", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "47916", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the head of the alumni association made a speech about how proud alumni were of their school 's continual excellence . the benefit was extremely successful and the football player felt really good about all the glory that he had brought to his alma mater .", "storylet_id": "239584"}], [{"original_text": "Every was gathering before the big game.", "album_id": "72157625207403904", "photo_flickr_id": "4952494166", "setting": "last-3-pick-old-and-tell", "worker_id": "E9OWV5MFR0CF3E3", "story_id": "47917", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every was gathering before the big game .", "storylet_id": "239585"}], [{"original_text": "The cheerleaders were ready for it to start.", "album_id": "72157625207403904", "photo_flickr_id": "4951903323", "setting": "last-3-pick-old-and-tell", "worker_id": "E9OWV5MFR0CF3E3", "story_id": "47917", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cheerleaders were ready for it to start .", "storylet_id": "239586"}], [{"original_text": "Players were acknowledged with special gifts.", "album_id": "72157625207403904", "photo_flickr_id": "4951903827", "setting": "last-3-pick-old-and-tell", "worker_id": "E9OWV5MFR0CF3E3", "story_id": "47917", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "players were acknowledged with special gifts .", "storylet_id": "239587"}], [{"original_text": "The interviews were almost over.", "album_id": "72157625207403904", "photo_flickr_id": "4952495212", "setting": "last-3-pick-old-and-tell", "worker_id": "E9OWV5MFR0CF3E3", "story_id": "47917", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the interviews were almost over .", "storylet_id": "239588"}], [{"original_text": "The game would start soon!", "album_id": "72157625207403904", "photo_flickr_id": "4951905887", "setting": "last-3-pick-old-and-tell", "worker_id": "E9OWV5MFR0CF3E3", "story_id": "47917", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the game would start soon !", "storylet_id": "239589"}], [{"original_text": "The awards banquet was in full effect and the venue was packed full of people.", "album_id": "72157625207403904", "photo_flickr_id": "4952494166", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47918", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the awards banquet was in full effect and the venue was packed full of people .", "storylet_id": "239590"}], [{"original_text": "Cheerleaders performed their routine.", "album_id": "72157625207403904", "photo_flickr_id": "4951903323", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47918", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "cheerleaders performed their routine .", "storylet_id": "239591"}], [{"original_text": "The star player accepted his award and the reporter asked to comment on what this recognition meant to him. ", "album_id": "72157625207403904", "photo_flickr_id": "4951903827", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47918", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the star player accepted his award and the reporter asked to comment on what this recognition meant to him .", "storylet_id": "239592"}], [{"original_text": "The report asked his team members to say a few words as well.", "album_id": "72157625207403904", "photo_flickr_id": "4952495212", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47918", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the report asked his team members to say a few words as well .", "storylet_id": "239593"}], [{"original_text": "Outside of the venue, the streets were packed with people waiting to see the athletes.", "album_id": "72157625207403904", "photo_flickr_id": "4951905887", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47918", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "outside of the venue , the streets were packed with people waiting to see the athletes .", "storylet_id": "239594"}], [{"original_text": "Maclain accepts the trophy from the NCAA committee.", "album_id": "72157625207403904", "photo_flickr_id": "4951903827", "setting": "last-3-pick-old-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47919", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "maclain accepts the trophy from the organization committee .", "storylet_id": "239595"}], [{"original_text": "They host a party just in his favor.", "album_id": "72157625207403904", "photo_flickr_id": "4952494166", "setting": "last-3-pick-old-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47919", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they host a party just in his favor .", "storylet_id": "239596"}], [{"original_text": "They even bring in the marching band.", "album_id": "72157625207403904", "photo_flickr_id": "4951904893", "setting": "last-3-pick-old-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47919", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even bring in the marching band .", "storylet_id": "239597"}], [{"original_text": "The cheerleaders from his school even make the trip.", "album_id": "72157625207403904", "photo_flickr_id": "4951903323", "setting": "last-3-pick-old-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47919", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cheerleaders from his school even make the trip .", "storylet_id": "239598"}], [{"original_text": "Dr Rivers congratulates Maclain on being awesome.", "album_id": "72157625207403904", "photo_flickr_id": "4952497298", "setting": "last-3-pick-old-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "47919", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dr rivers congratulates maclain on being awesome .", "storylet_id": "239599"}], [{"original_text": "A big surprise for Times Square.", "album_id": "72157625737489714", "photo_flickr_id": "5319771773", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47920", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a big surprise for organization organization .", "storylet_id": "239600"}], [{"original_text": "The Army is putting in a unique career center.", "album_id": "72157625737489714", "photo_flickr_id": "5319772427", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47920", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the organization is putting in a unique career center .", "storylet_id": "239601"}], [{"original_text": "Looking good so far. I'd like to see the inside.", "album_id": "72157625737489714", "photo_flickr_id": "5319775407", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47920", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looking good so far . i 'd like to see the inside .", "storylet_id": "239602"}], [{"original_text": "A few more sheets and it will be open for business.", "album_id": "72157625737489714", "photo_flickr_id": "5319776357", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47920", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a few more sheets and it will be open for business .", "storylet_id": "239603"}], [{"original_text": "This is really cool looking. Would be cool to work in this one.", "album_id": "72157625737489714", "photo_flickr_id": "5320589612", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47920", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is really cool looking . would be cool to work in this one .", "storylet_id": "239604"}], [{"original_text": "The workers pulled the metal panel out of the truck. ", "album_id": "72157625737489714", "photo_flickr_id": "5319773579", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47921", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the workers pulled the metal panel out of the truck .", "storylet_id": "239605"}], [{"original_text": "They carried the panel a little ways down the street. ", "album_id": "72157625737489714", "photo_flickr_id": "5320374248", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47921", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they carried the panel a little ways down the street .", "storylet_id": "239606"}], [{"original_text": "They had very little time to get it all put together. They had to work quickly and efficiently.", "album_id": "72157625737489714", "photo_flickr_id": "5320375014", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47921", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had very little time to get it all put together . they had to work quickly and efficiently .", "storylet_id": "239607"}], [{"original_text": "Using an electric drill the screws went right out. ", "album_id": "72157625737489714", "photo_flickr_id": "5319774907", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47921", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "using an electric drill the screws went right out .", "storylet_id": "239608"}], [{"original_text": "It was all ready. Everyone could look at this ad now. ", "album_id": "72157625737489714", "photo_flickr_id": "5320589612", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "47921", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was all ready . everyone could look at this ad now .", "storylet_id": "239609"}], [{"original_text": "Many people visit Times Square because of the bright lights.", "album_id": "72157625737489714", "photo_flickr_id": "5319771773", "setting": "last-3-pick-old-and-tell", "worker_id": "CEJPRQKK7MKA2PC", "story_id": "47922", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people visit location location because of the bright lights .", "storylet_id": "239610"}], [{"original_text": "There is a large police presence to watch over the many people.", "album_id": "72157625737489714", "photo_flickr_id": "5319772427", "setting": "last-3-pick-old-and-tell", "worker_id": "CEJPRQKK7MKA2PC", "story_id": "47922", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is a large police presence to watch over the many people .", "storylet_id": "239611"}], [{"original_text": "Construction workers set up an Army recruiting building.", "album_id": "72157625737489714", "photo_flickr_id": "5319775407", "setting": "last-3-pick-old-and-tell", "worker_id": "CEJPRQKK7MKA2PC", "story_id": "47922", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "construction workers set up an organization recruiting building .", "storylet_id": "239612"}], [{"original_text": "Two workers move a metal plate from their truck.", "album_id": "72157625737489714", "photo_flickr_id": "5319776357", "setting": "last-3-pick-old-and-tell", "worker_id": "CEJPRQKK7MKA2PC", "story_id": "47922", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two workers move a metal plate from their truck .", "storylet_id": "239613"}], [{"original_text": "A new screen is installed in the front of the building.", "album_id": "72157625737489714", "photo_flickr_id": "5320589612", "setting": "last-3-pick-old-and-tell", "worker_id": "CEJPRQKK7MKA2PC", "story_id": "47922", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a new screen is installed in the front of the building .", "storylet_id": "239614"}], [{"original_text": "We visited Times Square in New York City.", "album_id": "72157625737489714", "photo_flickr_id": "5319771773", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47923", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited location location in location location location .", "storylet_id": "239615"}], [{"original_text": "First we came to an advertisement of the Army.", "album_id": "72157625737489714", "photo_flickr_id": "5319772427", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47923", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we came to an advertisement of the organization .", "storylet_id": "239616"}], [{"original_text": "Then we saw on advertisement on an LED screen.", "album_id": "72157625737489714", "photo_flickr_id": "5319775407", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47923", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we saw on advertisement on an led screen .", "storylet_id": "239617"}], [{"original_text": "We watched as the construction workers complete their project.", "album_id": "72157625737489714", "photo_flickr_id": "5319776357", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47923", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we watched as the construction workers complete their project .", "storylet_id": "239618"}], [{"original_text": "After that we came to the U.S. Armed Forced Career Center.", "album_id": "72157625737489714", "photo_flickr_id": "5320589612", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "47923", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that we came to the organization organization organization organization organization .", "storylet_id": "239619"}], [{"original_text": "The city is very crowded with people.", "album_id": "72157625737489714", "photo_flickr_id": "5319771773", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "47924", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city is very crowded with people .", "storylet_id": "239620"}], [{"original_text": "The cops watch over to keep it safe.", "album_id": "72157625737489714", "photo_flickr_id": "5319772427", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "47924", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cops watch over to keep it safe .", "storylet_id": "239621"}], [{"original_text": "We are getting ready to set up the party.", "album_id": "72157625737489714", "photo_flickr_id": "5319775407", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "47924", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are getting ready to set up the party .", "storylet_id": "239622"}], [{"original_text": "We are carrying the table.", "album_id": "72157625737489714", "photo_flickr_id": "5319776357", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "47924", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we are carrying the table .", "storylet_id": "239623"}], [{"original_text": "Ken is adjusting everything just right.", "album_id": "72157625737489714", "photo_flickr_id": "5320589612", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "47924", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] is adjusting everything just right .", "storylet_id": "239624"}], [{"original_text": "I ran into an Oscar Grant protest while in the city.", "album_id": "72157624150850699", "photo_flickr_id": "4706815810", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47925", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i ran into an [male] [male] protest while in the city .", "storylet_id": "239625"}], [{"original_text": "Everybody had protest signs.", "album_id": "72157624150850699", "photo_flickr_id": "4701044168", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47925", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everybody had protest signs .", "storylet_id": "239626"}], [{"original_text": "Many ethnicity were represented.", "album_id": "72157624150850699", "photo_flickr_id": "4706867072", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47925", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many ethnicity were represented .", "storylet_id": "239627"}], [{"original_text": "There were even some Hispanics there.", "album_id": "72157624150850699", "photo_flickr_id": "4706867132", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47925", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were even some hispanics there .", "storylet_id": "239628"}], [{"original_text": "People were leaving graffiti everywhere.", "album_id": "72157624150850699", "photo_flickr_id": "4706815790", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47925", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people were leaving graffiti everywhere .", "storylet_id": "239629"}], [{"original_text": "The protest was for Oscar Grant who had been gunned down by the police. ", "album_id": "72157624150850699", "photo_flickr_id": "4706815776", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47926", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the protest was for [male] [male] who had been gunned down by the police .", "storylet_id": "239630"}], [{"original_text": "People made banners with his picture. ", "album_id": "72157624150850699", "photo_flickr_id": "4706815824", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47926", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people made banners with his picture .", "storylet_id": "239631"}], [{"original_text": "They demanded justice. ", "album_id": "72157624150850699", "photo_flickr_id": "4706867078", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47926", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they demanded justice .", "storylet_id": "239632"}], [{"original_text": "Everyone blamed the police. ", "album_id": "72157624150850699", "photo_flickr_id": "4706867162", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47926", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone blamed the police .", "storylet_id": "239633"}], [{"original_text": "The rogue cops had given them all a bad name. ", "album_id": "72157624150850699", "photo_flickr_id": "4701043820", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "47926", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the rogue cops had given them all a bad name .", "storylet_id": "239634"}], [{"original_text": "A large crowd of people rallied in protest of the murder of Oscar Grant.", "album_id": "72157624150850699", "photo_flickr_id": "4706815810", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47927", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a large crowd of people rallied in protest of the murder of [male] [male] .", "storylet_id": "239635"}], [{"original_text": "Two individuals held a sign with his picture on it.", "album_id": "72157624150850699", "photo_flickr_id": "4701044168", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47927", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "two individuals held a sign with his picture on it .", "storylet_id": "239636"}], [{"original_text": "Other crowd members made their own signs to hold in the demonstration.", "album_id": "72157624150850699", "photo_flickr_id": "4706867072", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47927", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other crowd members made their own signs to hold in the demonstration .", "storylet_id": "239637"}], [{"original_text": "A couple of women held posters demanding justice for Oscar Grant.", "album_id": "72157624150850699", "photo_flickr_id": "4706867132", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47927", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a couple of women held posters demanding justice for [male] [male] .", "storylet_id": "239638"}], [{"original_text": "Someone even made sidewalk art asking for justice.", "album_id": "72157624150850699", "photo_flickr_id": "4706815790", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47927", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someone even made sidewalk art asking for justice .", "storylet_id": "239639"}], [{"original_text": "A sign laid near the street with the words \"Oscar Grant,\" on it. ", "album_id": "72157624150850699", "photo_flickr_id": "4706815776", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "47928", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a sign laid near the street with the words `` [male] [male] , '' on it .", "storylet_id": "239640"}], [{"original_text": "People held signs showing there support for Oscar Grant.", "album_id": "72157624150850699", "photo_flickr_id": "4706815824", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "47928", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people held signs showing there support for [male] [male] .", "storylet_id": "239641"}], [{"original_text": "The crowd wanted justice for Oscar.", "album_id": "72157624150850699", "photo_flickr_id": "4706867078", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "47928", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowd wanted justice for [male] .", "storylet_id": "239642"}], [{"original_text": "Protesters held signs against injustice. ", "album_id": "72157624150850699", "photo_flickr_id": "4706867162", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "47928", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "protesters held signs against injustice .", "storylet_id": "239643"}], [{"original_text": "Two guys held a sign that read, \" To Serve & Protect Whom.\"", "album_id": "72157624150850699", "photo_flickr_id": "4701043820", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "47928", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "two guys held a sign that read , `` to serve & protect whom . ''", "storylet_id": "239644"}], [{"original_text": "This is the story of Oscar Grant, who was killed by police though he was unarmed.", "album_id": "72157624150850699", "photo_flickr_id": "4706815810", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "47929", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the story of [male] [male] , who was killed by police though he was unarmed .", "storylet_id": "239645"}], [{"original_text": "He became a symbol for average people who feel oppressed in their communities.", "album_id": "72157624150850699", "photo_flickr_id": "4701044168", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "47929", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he became a symbol for average people who feel oppressed in their communities .", "storylet_id": "239646"}], [{"original_text": "All kinds of people come out to voice their anger. ", "album_id": "72157624150850699", "photo_flickr_id": "4706867072", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "47929", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all kinds of people come out to voice their anger .", "storylet_id": "239647"}], [{"original_text": "These are posters that appear in many cities in our country. ", "album_id": "72157624150850699", "photo_flickr_id": "4706867132", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "47929", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these are posters that appear in many cities in our country .", "storylet_id": "239648"}], [{"original_text": "That's Spanish for Justice for Oscar. ", "album_id": "72157624150850699", "photo_flickr_id": "4706815790", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "47929", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that 's spanish for [male] for [male] .", "storylet_id": "239649"}], [{"original_text": "Today was the day.", "album_id": "72157626390694245", "photo_flickr_id": "5626785329", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47930", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day .", "storylet_id": "239650"}], [{"original_text": "We were going to finally do.", "album_id": "72157626390694245", "photo_flickr_id": "5626792975", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47930", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were going to finally do .", "storylet_id": "239651"}], [{"original_text": "We built a bridge.", "album_id": "72157626390694245", "photo_flickr_id": "5627386094", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47930", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we built a bridge .", "storylet_id": "239652"}], [{"original_text": "And it actually worked.", "album_id": "72157626390694245", "photo_flickr_id": "5627393482", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47930", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and it actually worked .", "storylet_id": "239653"}], [{"original_text": "Now about the rest of the roast....", "album_id": "72157626390694245", "photo_flickr_id": "5627403356", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "47930", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now about the rest of the roast ... .", "storylet_id": "239654"}], [{"original_text": "We drove to a lake to go fishing.", "album_id": "72157626390694245", "photo_flickr_id": "5626785329", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47931", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we drove to a lake to go fishing .", "storylet_id": "239655"}], [{"original_text": "We got on our boat after some time.", "album_id": "72157626390694245", "photo_flickr_id": "5626792975", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47931", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got on our boat after some time .", "storylet_id": "239656"}], [{"original_text": "When we left we had to make a bridge to cross the water.", "album_id": "72157626390694245", "photo_flickr_id": "5627386094", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47931", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we left we had to make a bridge to cross the water .", "storylet_id": "239657"}], [{"original_text": "Our car was able to make it across.", "album_id": "72157626390694245", "photo_flickr_id": "5627393482", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47931", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our car was able to make it across .", "storylet_id": "239658"}], [{"original_text": "The children missed us a lot.", "album_id": "72157626390694245", "photo_flickr_id": "5626887729", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "47931", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the children missed us a lot .", "storylet_id": "239659"}], [{"original_text": "this year when we went to our summer home there was work that was needed to be done.", "album_id": "72157626390694245", "photo_flickr_id": "5626785329", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "47932", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this year when we went to our summer home there was work that was needed to be done .", "storylet_id": "239660"}], [{"original_text": " we carried the wood across two boats.", "album_id": "72157626390694245", "photo_flickr_id": "5626792975", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "47932", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we carried the wood across two boats .", "storylet_id": "239661"}], [{"original_text": "some of that wood was needed to build a make sift bridge.", "album_id": "72157626390694245", "photo_flickr_id": "5627386094", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "47932", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of that wood was needed to build a make sift bridge .", "storylet_id": "239662"}], [{"original_text": "we where really happy that it worked. losing the car in the water would not have been something we would have wanted for sure.", "album_id": "72157626390694245", "photo_flickr_id": "5627393482", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "47932", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we where really happy that it worked . losing the car in the water would not have been something we would have wanted for sure .", "storylet_id": "239663"}], [{"original_text": "even the kids helped. it was a good summer for us all.", "album_id": "72157626390694245", "photo_flickr_id": "5626887729", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "47932", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the kids helped . it was a good summer for us all .", "storylet_id": "239664"}], [{"original_text": "We embarked on a mission trip to South America. ", "album_id": "72157626390694245", "photo_flickr_id": "5626785329", "setting": "last-3-pick-old-and-tell", "worker_id": "52593T83C0ZOWS9", "story_id": "47933", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we embarked on a mission trip to location location .", "storylet_id": "239665"}], [{"original_text": "We weren't sure what we'd be doing, but we knew there would be hard work ahead when we saw a barge approaching with lumber.", "album_id": "72157626390694245", "photo_flickr_id": "5626792975", "setting": "last-3-pick-old-and-tell", "worker_id": "52593T83C0ZOWS9", "story_id": "47933", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were n't sure what we 'd be doing , but we knew there would be hard work ahead when we saw a barge approaching with lumber .", "storylet_id": "239666"}], [{"original_text": "As it turned out, a bridge had collapsed, so we got right to work. ", "album_id": "72157626390694245", "photo_flickr_id": "5627386094", "setting": "last-3-pick-old-and-tell", "worker_id": "52593T83C0ZOWS9", "story_id": "47933", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as it turned out , a bridge had collapsed , so we got right to work .", "storylet_id": "239667"}], [{"original_text": "A quick drive-over test proved our work worthwhile!", "album_id": "72157626390694245", "photo_flickr_id": "5627393482", "setting": "last-3-pick-old-and-tell", "worker_id": "52593T83C0ZOWS9", "story_id": "47933", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a quick drive-over test proved our work worthwhile !", "storylet_id": "239668"}], [{"original_text": "By the end of the day, the local kids were exhausted and took a break.", "album_id": "72157626390694245", "photo_flickr_id": "5626887729", "setting": "last-3-pick-old-and-tell", "worker_id": "52593T83C0ZOWS9", "story_id": "47933", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of the day , the local kids were exhausted and took a break .", "storylet_id": "239669"}], [{"original_text": "What do you do when you have to cross a body of water with your car but don't have a ferry available?", "album_id": "72157626390694245", "photo_flickr_id": "5626785329", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "47934", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what do you do when you have to cross a body of water with your car but do n't have a ferry available ?", "storylet_id": "239670"}], [{"original_text": "Build one, of course!", "album_id": "72157626390694245", "photo_flickr_id": "5626792975", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "47934", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "build one , of course !", "storylet_id": "239671"}], [{"original_text": "A new bridge is also necessary, but we had that covered as well.", "album_id": "72157626390694245", "photo_flickr_id": "5627386094", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "47934", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a new bridge is also necessary , but we had that covered as well .", "storylet_id": "239672"}], [{"original_text": "Luckily, it worked. Was sort of afraid of what would happen to the car, but it went well.", "album_id": "72157626390694245", "photo_flickr_id": "5627393482", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "47934", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "luckily , it worked . was sort of afraid of what would happen to the car , but it went well .", "storylet_id": "239673"}], [{"original_text": "All to get from one dirt path to another. Just another day in a remote area.", "album_id": "72157626390694245", "photo_flickr_id": "5627403356", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "47934", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all to get from one dirt path to another . just another day in a remote area .", "storylet_id": "239674"}], [{"original_text": "Our family got together for a feast a few nights ago.", "album_id": "1792064", "photo_flickr_id": "83933071", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "47935", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family got together for a feast a few nights ago .", "storylet_id": "239675"}], [{"original_text": "The kids had a lot of cool things to look at.", "album_id": "1792064", "photo_flickr_id": "83919999", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "47935", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids had a lot of cool things to look at .", "storylet_id": "239676"}], [{"original_text": "The meal took a long time to prepare.", "album_id": "1792064", "photo_flickr_id": "83919759", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "47935", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the meal took a long time to prepare .", "storylet_id": "239677"}], [{"original_text": "As you can see, it worked out very nicely and we all ate a lot.", "album_id": "1792064", "photo_flickr_id": "83933153", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "47935", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as you can see , it worked out very nicely and we all ate a lot .", "storylet_id": "239678"}], [{"original_text": "We took one last picture with my sisters and brothers before we left.", "album_id": "1792064", "photo_flickr_id": "83933212", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "47935", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took one last picture with my sisters and brothers before we left .", "storylet_id": "239679"}], [{"original_text": "we had a great get together ", "album_id": "1792064", "photo_flickr_id": "83919883", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47936", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great get together", "storylet_id": "239680"}], [{"original_text": "there was so much food", "album_id": "1792064", "photo_flickr_id": "83912790", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47936", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was so much food", "storylet_id": "239681"}], [{"original_text": "my mom went all out on the cooking", "album_id": "1792064", "photo_flickr_id": "83919759", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47936", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my mom went all out on the cooking", "storylet_id": "239682"}], [{"original_text": "there was so much bacon", "album_id": "1792064", "photo_flickr_id": "83913088", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47936", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was so much bacon", "storylet_id": "239683"}], [{"original_text": "and a wholec crockpot of beans", "album_id": "1792064", "photo_flickr_id": "83919656", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "47936", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and a wholec crockpot of beans", "storylet_id": "239684"}], [{"original_text": "We all got together for our family Sunday dinner.", "album_id": "1792064", "photo_flickr_id": "83933071", "setting": "last-3-pick-old-and-tell", "worker_id": "TRXDNMNZ92OL3C5", "story_id": "47937", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all got together for our family sunday dinner .", "storylet_id": "239685"}], [{"original_text": "The children were fascinated with the little lizard.", "album_id": "1792064", "photo_flickr_id": "83919999", "setting": "last-3-pick-old-and-tell", "worker_id": "TRXDNMNZ92OL3C5", "story_id": "47937", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children were fascinated with the little lizard .", "storylet_id": "239686"}], [{"original_text": "The cooking was a chore but everyone chipped in and helped.", "album_id": "1792064", "photo_flickr_id": "83919759", "setting": "last-3-pick-old-and-tell", "worker_id": "TRXDNMNZ92OL3C5", "story_id": "47937", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cooking was a chore but everyone chipped in and helped .", "storylet_id": "239687"}], [{"original_text": "The fruits of our labor on display, it was so delicious.", "album_id": "1792064", "photo_flickr_id": "83933153", "setting": "last-3-pick-old-and-tell", "worker_id": "TRXDNMNZ92OL3C5", "story_id": "47937", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fruits of our labor on display , it was so delicious .", "storylet_id": "239688"}], [{"original_text": "Everyone had a fine time as we usually do for our family dinner.", "album_id": "1792064", "photo_flickr_id": "83933212", "setting": "last-3-pick-old-and-tell", "worker_id": "TRXDNMNZ92OL3C5", "story_id": "47937", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a fine time as we usually do for our family dinner .", "storylet_id": "239689"}], [{"original_text": "We had a great meal today.", "album_id": "1792064", "photo_flickr_id": "83919883", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47938", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great meal today .", "storylet_id": "239690"}], [{"original_text": "We had all kinds of goodies.", "album_id": "1792064", "photo_flickr_id": "83912790", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47938", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had all kinds of goodies .", "storylet_id": "239691"}], [{"original_text": "We had homemade spaghetti sauce.", "album_id": "1792064", "photo_flickr_id": "83919759", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47938", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had homemade spaghetti sauce .", "storylet_id": "239692"}], [{"original_text": "We also had great fried potato skins.", "album_id": "1792064", "photo_flickr_id": "83913088", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47938", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also had great fried potato skins .", "storylet_id": "239693"}], [{"original_text": "But the very best was the homemade chili. It was a real feast.", "album_id": "1792064", "photo_flickr_id": "83919656", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "47938", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the very best was the homemade chili . it was a real feast .", "storylet_id": "239694"}], [{"original_text": "The three sisters gathered to celebrate Thanksgiving.", "album_id": "1792064", "photo_flickr_id": "83919883", "setting": "last-3-pick-old-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "47939", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the three sisters gathered to celebrate thanksgiving .", "storylet_id": "239695"}], [{"original_text": "Their mom made a lot of good food for dinner. ", "album_id": "1792064", "photo_flickr_id": "83912790", "setting": "last-3-pick-old-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "47939", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their mom made a lot of good food for dinner .", "storylet_id": "239696"}], [{"original_text": "She even made tons of mashed potatoes and spaghetti sauce. ", "album_id": "1792064", "photo_flickr_id": "83919759", "setting": "last-3-pick-old-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "47939", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she even made tons of mashed potatoes and spaghetti sauce .", "storylet_id": "239697"}], [{"original_text": "The plate of pulled pork is always a crowd pleaser. ", "album_id": "1792064", "photo_flickr_id": "83913088", "setting": "last-3-pick-old-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "47939", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the plate of pulled pork is always a crowd pleaser .", "storylet_id": "239698"}], [{"original_text": "Black eyed peas are delicious as well. ", "album_id": "1792064", "photo_flickr_id": "83919656", "setting": "last-3-pick-old-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "47939", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "black eyed peas are delicious as well .", "storylet_id": "239699"}], [{"original_text": "The kids set up a huge water slide on the hill.", "album_id": "72157594477476263", "photo_flickr_id": "340479904", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "47940", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids set up a huge water slide on the hill .", "storylet_id": "239700"}], [{"original_text": "They looked down it in anticipation.", "album_id": "72157594477476263", "photo_flickr_id": "356146298", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "47940", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they looked down it in anticipation .", "storylet_id": "239701"}], [{"original_text": "Everyone had a look of determination as they prepared to slide.", "album_id": "72157594477476263", "photo_flickr_id": "340479906", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "47940", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone had a look of determination as they prepared to slide .", "storylet_id": "239702"}], [{"original_text": "The sister braved the slide first.", "album_id": "72157594477476263", "photo_flickr_id": "356146291", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "47940", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sister braved the slide first .", "storylet_id": "239703"}], [{"original_text": "They the smallest brother slid down.", "album_id": "72157594477476263", "photo_flickr_id": "340476101", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "47940", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they the smallest brother slid down .", "storylet_id": "239704"}], [{"original_text": "Emily was the first to own the water slide of our four children.", "album_id": "72157594477476263", "photo_flickr_id": "356146291", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "47941", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was the first to own the water slide of our four children .", "storylet_id": "239705"}], [{"original_text": "Calab was next and despite our warnings he went in head first. ", "album_id": "72157594477476263", "photo_flickr_id": "340476101", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "47941", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "calab was next and despite our warnings he went in head first .", "storylet_id": "239706"}], [{"original_text": "He quickly turned himself around toward the end though to right himself. ", "album_id": "72157594477476263", "photo_flickr_id": "340479896", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "47941", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he quickly turned himself around toward the end though to right himself .", "storylet_id": "239707"}], [{"original_text": "Then he joined his sister for a joint ride down the slide, both pacing themselves so they did not run into one another.", "album_id": "72157594477476263", "photo_flickr_id": "356146293", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "47941", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then he joined his sister for a joint ride down the slide , both pacing themselves so they did not run into one another .", "storylet_id": "239708"}], [{"original_text": "Meeting up at the top once more with her other brother and sister. ", "album_id": "72157594477476263", "photo_flickr_id": "356146298", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "47941", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "meeting up at the top once more with her other brother and sister .", "storylet_id": "239709"}], [{"original_text": "My family set up a slip and slide this weekend.", "album_id": "72157594477476263", "photo_flickr_id": "340479904", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47942", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family set up a slip and slide this weekend .", "storylet_id": "239710"}], [{"original_text": "All the kids were really excited to go down.", "album_id": "72157594477476263", "photo_flickr_id": "356146298", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47942", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the kids were really excited to go down .", "storylet_id": "239711"}], [{"original_text": "My daughter was the first one to try.", "album_id": "72157594477476263", "photo_flickr_id": "340479906", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47942", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my daughter was the first one to try .", "storylet_id": "239712"}], [{"original_text": "She looks like shes having a great time!", "album_id": "72157594477476263", "photo_flickr_id": "356146291", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47942", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she looks like shes having a great time !", "storylet_id": "239713"}], [{"original_text": "My son was even brave enough to go down head first!", "album_id": "72157594477476263", "photo_flickr_id": "340476101", "setting": "last-3-pick-old-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "47942", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my son was even brave enough to go down head first !", "storylet_id": "239714"}], [{"original_text": "Today we made a water slide outside of our house.", "album_id": "72157594477476263", "photo_flickr_id": "340479904", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47943", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we made a water slide outside of our house .", "storylet_id": "239715"}], [{"original_text": "The kids ran the hose over to the slide so it could get wet.", "album_id": "72157594477476263", "photo_flickr_id": "356146298", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47943", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids ran the hose over to the slide so it could get wet .", "storylet_id": "239716"}], [{"original_text": "Our daughter decided to slide down first. Although she was a bit nervous.", "album_id": "72157594477476263", "photo_flickr_id": "340479906", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47943", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our daughter decided to slide down first . although she was a bit nervous .", "storylet_id": "239717"}], [{"original_text": "Then she got over it quickly as she slid down.", "album_id": "72157594477476263", "photo_flickr_id": "356146291", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47943", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then she got over it quickly as she slid down .", "storylet_id": "239718"}], [{"original_text": "After that our son slid belly first like a penguin and had a blast.", "album_id": "72157594477476263", "photo_flickr_id": "340476101", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "47943", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that our son slid belly first like a penguin and had a blast .", "storylet_id": "239719"}], [{"original_text": "Summer fun! Slip and slide.", "album_id": "72157594477476263", "photo_flickr_id": "356146291", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47944", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] fun ! slip and slide .", "storylet_id": "239720"}], [{"original_text": "Here goes my brother.", "album_id": "72157594477476263", "photo_flickr_id": "340476101", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47944", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here goes my brother .", "storylet_id": "239721"}], [{"original_text": "How'd he get up like that?", "album_id": "72157594477476263", "photo_flickr_id": "340479896", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47944", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "how 'd he get up like that ?", "storylet_id": "239722"}], [{"original_text": "Oh, he taught me how to do it.", "album_id": "72157594477476263", "photo_flickr_id": "356146293", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47944", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "oh , he taught me how to do it .", "storylet_id": "239723"}], [{"original_text": "Let's all go down together.", "album_id": "72157594477476263", "photo_flickr_id": "356146298", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "47944", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "let 's all go down together .", "storylet_id": "239724"}], [{"original_text": "We put on quite a luncheon at the office.", "album_id": "72157594463433934", "photo_flickr_id": "348043918", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47945", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we put on quite a luncheon at the office .", "storylet_id": "239725"}], [{"original_text": "There was a lot of meats and veggies.", "album_id": "72157594463433934", "photo_flickr_id": "348044130", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47945", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of meats and veggies .", "storylet_id": "239726"}], [{"original_text": "Everyone cleaned their plates though.", "album_id": "72157594463433934", "photo_flickr_id": "348044325", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47945", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone cleaned their plates though .", "storylet_id": "239727"}], [{"original_text": "We were pretty sparse with the decor.", "album_id": "72157594463433934", "photo_flickr_id": "348045105", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47945", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were pretty sparse with the decor .", "storylet_id": "239728"}], [{"original_text": "The decor was simple, but it worked out fine.", "album_id": "72157594463433934", "photo_flickr_id": "348045224", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "47945", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the decor was simple , but it worked out fine .", "storylet_id": "239729"}], [{"original_text": "When Tom said that he was doing his house Japanese style for the party, I didn't really believe him. ", "album_id": "72157594463433934", "photo_flickr_id": "348043411", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47946", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when [male] said that he was doing his house japanese style for the party , i did n't really believe him .", "storylet_id": "239730"}], [{"original_text": "But when we got there, I was stunned at what he had pulled off. ", "album_id": "72157594463433934", "photo_flickr_id": "348043583", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47946", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but when we got there , i was stunned at what he had pulled off .", "storylet_id": "239731"}], [{"original_text": "Even the dining table was low and we had to sit on the floor to eat. ", "album_id": "72157594463433934", "photo_flickr_id": "348043918", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47946", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the dining table was low and we had to sit on the floor to eat .", "storylet_id": "239732"}], [{"original_text": "And the serving platters and dishes were all authentic. ", "album_id": "72157594463433934", "photo_flickr_id": "348044325", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47946", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the serving platters and dishes were all authentic .", "storylet_id": "239733"}], [{"original_text": "He even had original Japanese artwork on the walls. He went all out. ", "album_id": "72157594463433934", "photo_flickr_id": "348045224", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47946", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he even had original japanese artwork on the walls . he went all out .", "storylet_id": "239734"}], [{"original_text": "This weekend we planned an amazing dinner for the family.", "album_id": "72157594463433934", "photo_flickr_id": "348043411", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "47947", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this weekend we planned an amazing dinner for the family .", "storylet_id": "239735"}], [{"original_text": "We decided that we would have traditional Japanese food.", "album_id": "72157594463433934", "photo_flickr_id": "348043583", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "47947", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided that we would have traditional japanese food .", "storylet_id": "239736"}], [{"original_text": "The table display was so amazing.", "album_id": "72157594463433934", "photo_flickr_id": "348043918", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "47947", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the table display was so amazing .", "storylet_id": "239737"}], [{"original_text": "Everyone enjoyed the food for much.", "album_id": "72157594463433934", "photo_flickr_id": "348044325", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "47947", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone enjoyed the food for much .", "storylet_id": "239738"}], [{"original_text": "I was very proud of the get together and I hope to plan many more. ", "album_id": "72157594463433934", "photo_flickr_id": "348045224", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "47947", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was very proud of the get together and i hope to plan many more .", "storylet_id": "239739"}], [{"original_text": "The catering was well done. ", "album_id": "72157594463433934", "photo_flickr_id": "348043918", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "47948", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the catering was well done .", "storylet_id": "239740"}], [{"original_text": "They were many different dishes for all of our tastes. ", "album_id": "72157594463433934", "photo_flickr_id": "348044130", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "47948", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were many different dishes for all of our tastes .", "storylet_id": "239741"}], [{"original_text": "We were able to try many types of flavors. ", "album_id": "72157594463433934", "photo_flickr_id": "348044325", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "47948", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were able to try many types of flavors .", "storylet_id": "239742"}], [{"original_text": "The day went really well at the office party. ", "album_id": "72157594463433934", "photo_flickr_id": "348045105", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "47948", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the day went really well at the office party .", "storylet_id": "239743"}], [{"original_text": "Good music and food brought every one closer together.", "album_id": "72157594463433934", "photo_flickr_id": "348045224", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "47948", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "good music and food brought every one closer together .", "storylet_id": "239744"}], [{"original_text": "From the entrance, the decorations told us we were having a traditional Japanese meal.", "album_id": "72157594463433934", "photo_flickr_id": "348043411", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PDS9ZYQ0GV9TX", "story_id": "47949", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "from the entrance , the decorations told us we were having a traditional japanese meal .", "storylet_id": "239745"}], [{"original_text": "The low tables had all sorts of delicious food our hosts had prepared.", "album_id": "72157594463433934", "photo_flickr_id": "348043583", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PDS9ZYQ0GV9TX", "story_id": "47949", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the low tables had all sorts of delicious food our hosts had prepared .", "storylet_id": "239746"}], [{"original_text": "But that was just the beginning, we saw as we walked towards a larger table with a fest spread upon it.", "album_id": "72157594463433934", "photo_flickr_id": "348043918", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PDS9ZYQ0GV9TX", "story_id": "47949", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but that was just the beginning , we saw as we walked towards a larger table with a fest spread upon it .", "storylet_id": "239747"}], [{"original_text": "Soon we'd consumed everything -- it was all so tasty, and interesting, too.", "album_id": "72157594463433934", "photo_flickr_id": "348044325", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PDS9ZYQ0GV9TX", "story_id": "47949", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "soon we 'd consumed everything -- it was all so tasty , and interesting , too .", "storylet_id": "239748"}], [{"original_text": "We took a moment before we left to take a closer look at the art on the walls, and found the meaning for our hosts; I guess it's rude to ask to come back right away!", "album_id": "72157594463433934", "photo_flickr_id": "348045224", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PDS9ZYQ0GV9TX", "story_id": "47949", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took a moment before we left to take a closer look at the art on the walls , and found the meaning for our hosts ; i guess it 's rude to ask to come back right away !", "storylet_id": "239749"}], [{"original_text": "Fixing up his bike.", "album_id": "72157594481790103", "photo_flickr_id": "358759160", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47950", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "fixing up his bike .", "storylet_id": "239750"}], [{"original_text": "Following the pacific coast bike route.", "album_id": "72157594481790103", "photo_flickr_id": "358795071", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47950", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "following the pacific coast bike route .", "storylet_id": "239751"}], [{"original_text": "Taking a lunch break.", "album_id": "72157594481790103", "photo_flickr_id": "358765928", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47950", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "taking a lunch break .", "storylet_id": "239752"}], [{"original_text": "Eating fruits and sandwiches", "album_id": "72157594481790103", "photo_flickr_id": "358785086", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47950", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "eating fruits and sandwiches", "storylet_id": "239753"}], [{"original_text": "About to cross the San Francisco bridge.", "album_id": "72157594481790103", "photo_flickr_id": "358762947", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "47950", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "about to cross the location location bridge .", "storylet_id": "239754"}], [{"original_text": "I went down to the beach last week.", "album_id": "72157594481790103", "photo_flickr_id": "358768356", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47951", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went down to the beach last week .", "storylet_id": "239755"}], [{"original_text": "It was a lot of fun there.", "album_id": "72157594481790103", "photo_flickr_id": "358774930", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47951", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a lot of fun there .", "storylet_id": "239756"}], [{"original_text": "The waves were slamming against the rocks.", "album_id": "72157594481790103", "photo_flickr_id": "358776114", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47951", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the waves were slamming against the rocks .", "storylet_id": "239757"}], [{"original_text": "We sat in the shade when it was too hot.", "album_id": "72157594481790103", "photo_flickr_id": "358791809", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47951", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we sat in the shade when it was too hot .", "storylet_id": "239758"}], [{"original_text": "We had to bike back home afterward.", "album_id": "72157594481790103", "photo_flickr_id": "358792547", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47951", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had to bike back home afterward .", "storylet_id": "239759"}], [{"original_text": "This weekend we geared up and got our bikes out for a little adventure.", "album_id": "72157594481790103", "photo_flickr_id": "358759160", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "47952", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this weekend we geared up and got our bikes out for a little adventure .", "storylet_id": "239760"}], [{"original_text": "We made sure to use the bike routes. ", "album_id": "72157594481790103", "photo_flickr_id": "358795071", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "47952", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made sure to use the bike routes .", "storylet_id": "239761"}], [{"original_text": "It was a blast. We traveled for miles and miles.", "album_id": "72157594481790103", "photo_flickr_id": "358765928", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "47952", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a blast . we traveled for miles and miles .", "storylet_id": "239762"}], [{"original_text": "This was Jan's first time riding a bike in a long time.", "album_id": "72157594481790103", "photo_flickr_id": "358785086", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "47952", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was [female] 's first time riding a bike in a long time .", "storylet_id": "239763"}], [{"original_text": "We just had to get a picture of the Golden Gate Bridge in the background. It was a fabulous time. ", "album_id": "72157594481790103", "photo_flickr_id": "358762947", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "47952", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we just had to get a picture of the location location location in the background . it was a fabulous time .", "storylet_id": "239764"}], [{"original_text": "Preparing the bike for the trip.", "album_id": "72157594481790103", "photo_flickr_id": "358759160", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "47953", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "preparing the bike for the trip .", "storylet_id": "239765"}], [{"original_text": "Setting out on the Highway 1 trail.", "album_id": "72157594481790103", "photo_flickr_id": "358795071", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "47953", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "setting out on the highway 1 trail .", "storylet_id": "239766"}], [{"original_text": "Eating up the miles on new terrain.", "album_id": "72157594481790103", "photo_flickr_id": "358765928", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "47953", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "eating up the miles on new terrain .", "storylet_id": "239767"}], [{"original_text": "Time for a rest stop.", "album_id": "72157594481790103", "photo_flickr_id": "358785086", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "47953", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "time for a rest stop .", "storylet_id": "239768"}], [{"original_text": "Posing next to a beautiful view", "album_id": "72157594481790103", "photo_flickr_id": "358762947", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "47953", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "posing next to a beautiful view", "storylet_id": "239769"}], [{"original_text": "The man got his bike ready for his trip.", "album_id": "72157594481790103", "photo_flickr_id": "358759160", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3X21OP9S36WZIF", "story_id": "47954", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man got his bike ready for his trip .", "storylet_id": "239770"}], [{"original_text": "He was planning to ride up the Pacific Coast Highway.", "album_id": "72157594481790103", "photo_flickr_id": "358795071", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3X21OP9S36WZIF", "story_id": "47954", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was planning to ride up the location location location .", "storylet_id": "239771"}], [{"original_text": "He was joined by two friends, who were just as excited.", "album_id": "72157594481790103", "photo_flickr_id": "358765928", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3X21OP9S36WZIF", "story_id": "47954", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was joined by two friends , who were just as excited .", "storylet_id": "239772"}], [{"original_text": "It was a tough ride, so they rewarded themselves with a picnic lunch.", "album_id": "72157594481790103", "photo_flickr_id": "358785086", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3X21OP9S36WZIF", "story_id": "47954", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a tough ride , so they rewarded themselves with a picnic lunch .", "storylet_id": "239773"}], [{"original_text": "Their arrival at the Golden Gate Bridge marked a milestone in their trip.", "album_id": "72157594481790103", "photo_flickr_id": "358762947", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3X21OP9S36WZIF", "story_id": "47954", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their arrival at the location location location marked a milestone in their trip .", "storylet_id": "239774"}], [{"original_text": "Hank and Janet's New Years Eve party in 1999 was a blast. ", "album_id": "72157601366268174", "photo_flickr_id": "1082674426", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47955", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hank and [female] 's new years eve party in 1999 was a blast .", "storylet_id": "239775"}], [{"original_text": "We were waiting for 2000 and wondering if Y2K would hit. ", "album_id": "72157601366268174", "photo_flickr_id": "1081822953", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47955", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were waiting for 2000 and wondering if y2k would hit .", "storylet_id": "239776"}], [{"original_text": "But everyone was having such a good time, they forgot about the doom and gloom. ", "album_id": "72157601366268174", "photo_flickr_id": "1081827041", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47955", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but everyone was having such a good time , they forgot about the doom and gloom .", "storylet_id": "239777"}], [{"original_text": "Janet and Carol had a good time. ", "album_id": "72157601366268174", "photo_flickr_id": "1082689442", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47955", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and [female] had a good time .", "storylet_id": "239778"}], [{"original_text": "And so did Wanda and Jen. Though I think Jen was wasted by midnight. ", "album_id": "72157601366268174", "photo_flickr_id": "1082690734", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "47955", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and so did [female] and jen . though i think jen was wasted by midnight .", "storylet_id": "239779"}], [{"original_text": "I went to Shelly's party last night and it was a mess.", "album_id": "72157601366268174", "photo_flickr_id": "1082674276", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47956", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to [female] 's party last night and it was a mess .", "storylet_id": "239780"}], [{"original_text": "Everyone was wearing the weirdest clothing.", "album_id": "72157601366268174", "photo_flickr_id": "1082674426", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47956", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was wearing the weirdest clothing .", "storylet_id": "239781"}], [{"original_text": "So many people were drunk.", "album_id": "72157601366268174", "photo_flickr_id": "1081820011", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47956", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so many people were drunk .", "storylet_id": "239782"}], [{"original_text": "I took a picture will shelly and left.", "album_id": "72157601366268174", "photo_flickr_id": "1082689442", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47956", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i took a picture will shelly and left .", "storylet_id": "239783"}], [{"original_text": "I went home and had a relaxing time with my sister.", "album_id": "72157601366268174", "photo_flickr_id": "1081820491", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "47956", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i went home and had a relaxing time with my sister .", "storylet_id": "239784"}], [{"original_text": "Billy and I had our picture taken before we went to the party.", "album_id": "72157601366268174", "photo_flickr_id": "1082674426", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "47957", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and i had our picture taken before we went to the party .", "storylet_id": "239785"}], [{"original_text": "Emily was already wearing silly party glasses when we arrived.", "album_id": "72157601366268174", "photo_flickr_id": "1081822953", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "47957", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] was already wearing silly party glasses when we arrived .", "storylet_id": "239786"}], [{"original_text": "Everyone was dancing and having a great time.", "album_id": "72157601366268174", "photo_flickr_id": "1081827041", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "47957", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was dancing and having a great time .", "storylet_id": "239787"}], [{"original_text": "Susan refused to put on her party crown.", "album_id": "72157601366268174", "photo_flickr_id": "1082689442", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "47957", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] refused to put on her party crown .", "storylet_id": "239788"}], [{"original_text": "Amber and Amy posed with their crowns when the clock struck midnight.", "album_id": "72157601366268174", "photo_flickr_id": "1082690734", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "47957", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] and [female] posed with their crowns when the clock struck midnight .", "storylet_id": "239789"}], [{"original_text": "A couple of the guest arrived and posed they have very stylish hats.", "album_id": "72157601366268174", "photo_flickr_id": "1082674426", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "47958", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple of the guest arrived and posed they have very stylish hats .", "storylet_id": "239790"}], [{"original_text": "Inside the house, the celebration begins. The food and drinks can be seen.", "album_id": "72157601366268174", "photo_flickr_id": "1081822953", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "47958", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside the house , the celebration begins . the food and drinks can be seen .", "storylet_id": "239791"}], [{"original_text": "The party ramps up. Everyone is having a good time.", "album_id": "72157601366268174", "photo_flickr_id": "1081827041", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "47958", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the party ramps up . everyone is having a good time .", "storylet_id": "239792"}], [{"original_text": "The host wearing the green hat poses for a photo with her friend.", "album_id": "72157601366268174", "photo_flickr_id": "1082689442", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "47958", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the host wearing the green hat poses for a photo with her friend .", "storylet_id": "239793"}], [{"original_text": "The host now poses with a different friend.", "album_id": "72157601366268174", "photo_flickr_id": "1082690734", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "47958", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the host now poses with a different friend .", "storylet_id": "239794"}], [{"original_text": "The year 2000 was on its way, so a group of friends decided to welcome it with a party.", "album_id": "72157601366268174", "photo_flickr_id": "1082674426", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3X21OP9S36WZIF", "story_id": "47959", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the year 2000 was on its way , so a group of friends decided to welcome it with a party .", "storylet_id": "239795"}], [{"original_text": "They filled their cups with beer and put on some New Year gear.", "album_id": "72157601366268174", "photo_flickr_id": "1081822953", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3X21OP9S36WZIF", "story_id": "47959", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they filled their cups with beer and put on some new year gear .", "storylet_id": "239796"}], [{"original_text": "Excitement built as midnight approached and the friends talked and danced.", "album_id": "72157601366268174", "photo_flickr_id": "1081827041", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3X21OP9S36WZIF", "story_id": "47959", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "excitement built as midnight approached and the friends talked and danced .", "storylet_id": "239797"}], [{"original_text": "At 11:59 PM it was time to gather around and count down to the new year together.", "album_id": "72157601366268174", "photo_flickr_id": "1082689442", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3X21OP9S36WZIF", "story_id": "47959", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at 11:59 pm it was time to gather around and count down to the new year together .", "storylet_id": "239798"}], [{"original_text": "After midnight, everybody felt tired and giddy. The year 2000 was off to a good start!", "album_id": "72157601366268174", "photo_flickr_id": "1082690734", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3X21OP9S36WZIF", "story_id": "47959", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after midnight , everybody felt tired and giddy . the year 2000 was off to a good start !", "storylet_id": "239799"}], [{"original_text": "I went down to the beach last week.", "album_id": "72157603608431779", "photo_flickr_id": "2156551961", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47960", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went down to the beach last week .", "storylet_id": "239800"}], [{"original_text": "The sun was setting so we decided to head to head to the hotel instead.", "album_id": "72157603608431779", "photo_flickr_id": "2156550151", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47960", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sun was setting so we decided to head to head to the hotel instead .", "storylet_id": "239801"}], [{"original_text": "It was a long drive.", "album_id": "72157603608431779", "photo_flickr_id": "2157337930", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47960", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a long drive .", "storylet_id": "239802"}], [{"original_text": "When we finally arrived it took forever to find a parking space.", "album_id": "72157603608431779", "photo_flickr_id": "2156543905", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47960", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we finally arrived it took forever to find a parking space .", "storylet_id": "239803"}], [{"original_text": "We had a good night's rest.", "album_id": "72157603608431779", "photo_flickr_id": "2157339040", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47960", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a good night 's rest .", "storylet_id": "239804"}], [{"original_text": "The sun was coming up.", "album_id": "72157603608431779", "photo_flickr_id": "2156549129", "setting": "first-2-pick-and-tell", "worker_id": "6YFM77REMBRCU9Z", "story_id": "47961", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sun was coming up .", "storylet_id": "239805"}], [{"original_text": "Me & Jordy were waiting in the car.", "album_id": "72157603608431779", "photo_flickr_id": "2156551961", "setting": "first-2-pick-and-tell", "worker_id": "6YFM77REMBRCU9Z", "story_id": "47961", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "me & jordy were waiting in the car .", "storylet_id": "239806"}], [{"original_text": "Bill arrived and parked close to us.", "album_id": "72157603608431779", "photo_flickr_id": "2156544889", "setting": "first-2-pick-and-tell", "worker_id": "6YFM77REMBRCU9Z", "story_id": "47961", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] arrived and parked close to us .", "storylet_id": "239807"}], [{"original_text": "Here's me & Bill!", "album_id": "72157603608431779", "photo_flickr_id": "2157340708", "setting": "first-2-pick-and-tell", "worker_id": "6YFM77REMBRCU9Z", "story_id": "47961", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's me & [male] !", "storylet_id": "239808"}], [{"original_text": "The view from the top of the mountain. ", "album_id": "72157603608431779", "photo_flickr_id": "2157337930", "setting": "first-2-pick-and-tell", "worker_id": "6YFM77REMBRCU9Z", "story_id": "47961", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view from the top of the mountain .", "storylet_id": "239809"}], [{"original_text": "They had started the car trip so early they kept Joey in his pajamas.", "album_id": "72157603608431779", "photo_flickr_id": "2156551961", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "47962", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they had started the car trip so early they kept [male] in his pajamas .", "storylet_id": "239810"}], [{"original_text": "After driving for two hours the sun began to rise.", "album_id": "72157603608431779", "photo_flickr_id": "2156550151", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "47962", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after driving for two hours the sun began to rise .", "storylet_id": "239811"}], [{"original_text": "They had just gotten to the top of the mountain when the sun filled the valley below them.", "album_id": "72157603608431779", "photo_flickr_id": "2157337930", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "47962", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had just gotten to the top of the mountain when the sun filled the valley below them .", "storylet_id": "239812"}], [{"original_text": "They ate breakfast at a road side park that had a display about local flowers.", "album_id": "72157603608431779", "photo_flickr_id": "2156543905", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "47962", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they ate breakfast at a road side park that had a display about local flowers .", "storylet_id": "239813"}], [{"original_text": "After breakfast they got back into the car to start driving again.", "album_id": "72157603608431779", "photo_flickr_id": "2157339040", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "47962", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after breakfast they got back into the car to start driving again .", "storylet_id": "239814"}], [{"original_text": "Someone was a little grumpy on the road trip.", "album_id": "72157603608431779", "photo_flickr_id": "2156551961", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "47963", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "someone was a little grumpy on the road trip .", "storylet_id": "239815"}], [{"original_text": "The sun made for a wonderful view.", "album_id": "72157603608431779", "photo_flickr_id": "2156550151", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "47963", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sun made for a wonderful view .", "storylet_id": "239816"}], [{"original_text": "We came across some beautiful sights.", "album_id": "72157603608431779", "photo_flickr_id": "2157337930", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "47963", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we came across some beautiful sights .", "storylet_id": "239817"}], [{"original_text": "There were boards to help identify things.", "album_id": "72157603608431779", "photo_flickr_id": "2156543905", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "47963", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were boards to help identify things .", "storylet_id": "239818"}], [{"original_text": "Our car after we finally settled in for the night.", "album_id": "72157603608431779", "photo_flickr_id": "2157339040", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "47963", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our car after we finally settled in for the night .", "storylet_id": "239819"}], [{"original_text": "My family and I arrived on top of the mountain at sunset.", "album_id": "72157603608431779", "photo_flickr_id": "2156549129", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "47964", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family and i arrived on top of the mountain at sunset .", "storylet_id": "239820"}], [{"original_text": "We took pictures inside the SUV. ", "album_id": "72157603608431779", "photo_flickr_id": "2156551961", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "47964", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took pictures inside the suv .", "storylet_id": "239821"}], [{"original_text": "We parked on the top of the mountain.", "album_id": "72157603608431779", "photo_flickr_id": "2156544889", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "47964", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we parked on the top of the mountain .", "storylet_id": "239822"}], [{"original_text": "We took pictures on top of the mountain.", "album_id": "72157603608431779", "photo_flickr_id": "2157340708", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "47964", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took pictures on top of the mountain .", "storylet_id": "239823"}], [{"original_text": "We looked over the mountain. ", "album_id": "72157603608431779", "photo_flickr_id": "2157337930", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "47964", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we looked over the mountain .", "storylet_id": "239824"}], [{"original_text": "The scenery is pure beauty right before we get to the dome in Rome. ", "album_id": "72157625623198327", "photo_flickr_id": "5325127772", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47965", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the scenery is pure beauty right before we get to the dome in location .", "storylet_id": "239825"}], [{"original_text": "The walk before we got to the cathedral. ", "album_id": "72157625623198327", "photo_flickr_id": "5325149234", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47965", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the walk before we got to the cathedral .", "storylet_id": "239826"}], [{"original_text": "Here is the what is left of the cathedral in Rome. ", "album_id": "72157625623198327", "photo_flickr_id": "5325129702", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47965", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is the what is left of the cathedral in location .", "storylet_id": "239827"}], [{"original_text": "Here we are inside the cathedral and loving every minute of it. ", "album_id": "72157625623198327", "photo_flickr_id": "5324525499", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47965", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here we are inside the cathedral and loving every minute of it .", "storylet_id": "239828"}], [{"original_text": "Here is some of the art we seen while there at the cathedral. ", "album_id": "72157625623198327", "photo_flickr_id": "5325111116", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "47965", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is some of the art we seen while there at the cathedral .", "storylet_id": "239829"}], [{"original_text": "I finally had the opportunity to visit an ancient civilization during summer break.", "album_id": "72157625623198327", "photo_flickr_id": "5324528089", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47966", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finally had the opportunity to visit an ancient civilization during summer break .", "storylet_id": "239830"}], [{"original_text": "Along with viewing many old monuments, Several art exhibits were up for display,", "album_id": "72157625623198327", "photo_flickr_id": "5325122012", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47966", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "along with viewing many old monuments , several art exhibits were up for display ,", "storylet_id": "239831"}], [{"original_text": "including some that were religious.", "album_id": "72157625623198327", "photo_flickr_id": "5325111116", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47966", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "including some that were religious .", "storylet_id": "239832"}], [{"original_text": "After the exploration, I decided to roam around the city with my friends to look for a bar.", "album_id": "72157625623198327", "photo_flickr_id": "5325149234", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47966", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the exploration , i decided to roam around the city with my friends to look for a bar .", "storylet_id": "239833"}], [{"original_text": "We had a toast to a great day.", "album_id": "72157625623198327", "photo_flickr_id": "5324545301", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "47966", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a toast to a great day .", "storylet_id": "239834"}], [{"original_text": "We were so excited to visit the Basiclia!", "album_id": "72157625623198327", "photo_flickr_id": "5324528089", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47967", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were so excited to visit the basiclia !", "storylet_id": "239835"}], [{"original_text": "When we arrived, I had to get several pictures, including the nameplate..", "album_id": "72157625623198327", "photo_flickr_id": "5325122012", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47967", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we arrived , i had to get several pictures , including the nameplate..", "storylet_id": "239836"}], [{"original_text": "And, the amazing mural.", "album_id": "72157625623198327", "photo_flickr_id": "5325111116", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47967", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and , the amazing mural .", "storylet_id": "239837"}], [{"original_text": "We were tired when left; however, I wasn't ready to go home yet.", "album_id": "72157625623198327", "photo_flickr_id": "5325149234", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47967", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were tired when left ; however , i was n't ready to go home yet .", "storylet_id": "239838"}], [{"original_text": "So, we decided to grab a nice cold ale and enjoy the moonlight.", "album_id": "72157625623198327", "photo_flickr_id": "5324545301", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "47967", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so , we decided to grab a nice cold ale and enjoy the moonlight .", "storylet_id": "239839"}], [{"original_text": "This is the beginning of a perfect vacation.", "album_id": "72157625623198327", "photo_flickr_id": "5325127772", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47968", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the beginning of a perfect vacation .", "storylet_id": "239840"}], [{"original_text": "I wanted to go to a place that would give me a sense of history.", "album_id": "72157625623198327", "photo_flickr_id": "5325149234", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47968", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i wanted to go to a place that would give me a sense of history .", "storylet_id": "239841"}], [{"original_text": "I am a place that puts me in awe of the architecture of the past.", "album_id": "72157625623198327", "photo_flickr_id": "5325129702", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47968", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i am a place that puts me in awe of the architecture of the past .", "storylet_id": "239842"}], [{"original_text": "What a great feeling to be part of an important time in history.", "album_id": "72157625623198327", "photo_flickr_id": "5324525499", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47968", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what a great feeling to be part of an important time in history .", "storylet_id": "239843"}], [{"original_text": "This is a beautiful scene to celebrate how the past affects the present. ", "album_id": "72157625623198327", "photo_flickr_id": "5325111116", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47968", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a beautiful scene to celebrate how the past affects the present .", "storylet_id": "239844"}], [{"original_text": "The morning view in Greece. Hopefully it warms up.", "album_id": "72157625623198327", "photo_flickr_id": "5325127772", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47969", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the morning view in location . hopefully it warms up .", "storylet_id": "239845"}], [{"original_text": "Went down to the main area of town to meet our guide and group.", "album_id": "72157625623198327", "photo_flickr_id": "5325149234", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47969", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "went down to the main area of town to meet our guide and group .", "storylet_id": "239846"}], [{"original_text": "The colosium. I have always wanted to see this and now I am!", "album_id": "72157625623198327", "photo_flickr_id": "5325129702", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47969", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the colosium . i have always wanted to see this and now i am !", "storylet_id": "239847"}], [{"original_text": "We are actually inside of it! This is so amazing and a big part of history.", "album_id": "72157625623198327", "photo_flickr_id": "5324525499", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47969", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we are actually inside of it ! this is so amazing and a big part of history .", "storylet_id": "239848"}], [{"original_text": "Statues left in the colosium. Very surreal and inspiring.", "album_id": "72157625623198327", "photo_flickr_id": "5325111116", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "47969", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "statues left in the colosium . very surreal and inspiring .", "storylet_id": "239849"}], [{"original_text": "My family came together for a Christmas dinner.Sitting around talking.", "album_id": "72157625742513764", "photo_flickr_id": "5322559402", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "47970", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family came together for a christmas dinner.sitting around talking .", "storylet_id": "239850"}], [{"original_text": "My kids snacking and enjoying the company of their family.", "album_id": "72157625742513764", "photo_flickr_id": "5322561620", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "47970", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my kids snacking and enjoying the company of their family .", "storylet_id": "239851"}], [{"original_text": "My cousins and their husbands standing around enjoying wine.", "album_id": "72157625742513764", "photo_flickr_id": "5322598036", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "47970", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my cousins and their husbands standing around enjoying wine .", "storylet_id": "239852"}], [{"original_text": "Kids were wondering where the presants were.Come on dad open just one?", "album_id": "72157625742513764", "photo_flickr_id": "5322004101", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "47970", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "kids were wondering where the presants were.come on dad open just one ?", "storylet_id": "239853"}], [{"original_text": "My sister and my niece sitting on the couch.The little ones are very tired.", "album_id": "72157625742513764", "photo_flickr_id": "5322009179", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "47970", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my sister and my niece sitting on the couch.the little ones are very tired .", "storylet_id": "239854"}], [{"original_text": "Everyone was gathered at my best friend's house, awaiting the countdown of the new year.", "album_id": "72157625742513764", "photo_flickr_id": "5322559402", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47971", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was gathered at my best friend 's house , awaiting the countdown of the new year .", "storylet_id": "239855"}], [{"original_text": "The adults weren't the only ones excited, and waiting.", "album_id": "72157625742513764", "photo_flickr_id": "5322561620", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47971", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the adults were n't the only ones excited , and waiting .", "storylet_id": "239856"}], [{"original_text": "Although some needed to be fed, and take a nap.", "album_id": "72157625742513764", "photo_flickr_id": "5321969405", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47971", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "although some needed to be fed , and take a nap .", "storylet_id": "239857"}], [{"original_text": "Many gathered in the kitchen, anxiously waiting.", "album_id": "72157625742513764", "photo_flickr_id": "5322636016", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47971", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many gathered in the kitchen , anxiously waiting .", "storylet_id": "239858"}], [{"original_text": "Until it was announced on the TV that it was now a new year!", "album_id": "72157625742513764", "photo_flickr_id": "5322594004", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "47971", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "until it was announced on the tv that it was now a new year !", "storylet_id": "239859"}], [{"original_text": "A group of friends and family gather for a Christmas party.", "album_id": "72157625742513764", "photo_flickr_id": "5322559402", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47972", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends and family gather for a christmas party .", "storylet_id": "239860"}], [{"original_text": "Two of the children sneak and eat some cheese balls.", "album_id": "72157625742513764", "photo_flickr_id": "5322561620", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47972", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "two of the children sneak and eat some cheese balls .", "storylet_id": "239861"}], [{"original_text": "One couple sits down to feed their twins.", "album_id": "72157625742513764", "photo_flickr_id": "5321969405", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47972", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one couple sits down to feed their twins .", "storylet_id": "239862"}], [{"original_text": "The group gathers in the kitchen to talk and enjoy refreshments.", "album_id": "72157625742513764", "photo_flickr_id": "5322636016", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47972", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the group gathers in the kitchen to talk and enjoy refreshments .", "storylet_id": "239863"}], [{"original_text": "They all sit down to watch the Christmas parade on the television.", "album_id": "72157625742513764", "photo_flickr_id": "5322594004", "setting": "last-3-pick-old-and-tell", "worker_id": "P38D8XX6VMBUTIO", "story_id": "47972", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all sit down to watch the christmas parade on the television .", "storylet_id": "239864"}], [{"original_text": "This is my family of thugs. ", "album_id": "72157625742513764", "photo_flickr_id": "5322559402", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "47973", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my family of thugs .", "storylet_id": "239865"}], [{"original_text": "Today we are having a party to teach the young ones in the family our traditions", "album_id": "72157625742513764", "photo_flickr_id": "5322561620", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "47973", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today we are having a party to teach the young ones in the family our traditions", "storylet_id": "239866"}], [{"original_text": "When they grow up the kids will take over the family business of selling seagull tears.", "album_id": "72157625742513764", "photo_flickr_id": "5321969405", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "47973", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when they grow up the kids will take over the family business of selling seagull tears .", "storylet_id": "239867"}], [{"original_text": "The family likes to keep all the business inside house. ", "album_id": "72157625742513764", "photo_flickr_id": "5322636016", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "47973", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family likes to keep all the business inside house .", "storylet_id": "239868"}], [{"original_text": "We will like to one see a report about our family business in the news. That would be awesome.", "album_id": "72157625742513764", "photo_flickr_id": "5322594004", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "47973", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we will like to one see a report about our family business in the news . that would be awesome .", "storylet_id": "239869"}], [{"original_text": "We got together with all our college friends last week. It was amazing to see that we all had kids now.", "album_id": "72157625742513764", "photo_flickr_id": "5322559402", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47974", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got together with all our college friends last week . it was amazing to see that we all had kids now .", "storylet_id": "239870"}], [{"original_text": "My own Becky and Joe were joined by lots of other little ones.", "album_id": "72157625742513764", "photo_flickr_id": "5322561620", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47974", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my own [female] and [male] were joined by lots of other little ones .", "storylet_id": "239871"}], [{"original_text": "We tried to act college cool, but it's harder with a million kids in tow!", "album_id": "72157625742513764", "photo_flickr_id": "5322598036", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47974", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we tried to act college cool , but it 's harder with a million kids in tow !", "storylet_id": "239872"}], [{"original_text": "Some of the parents were anti-TV, but I figured it was my house and I'd put the TV on if I wanted to.", "album_id": "72157625742513764", "photo_flickr_id": "5322004101", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47974", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the parents were anti-tv , but i figured it was my house and i 'd put the tv on if i wanted to .", "storylet_id": "239873"}], [{"original_text": "I loved seeing all the little ones show their parents that they weren't as cool as they thought!", "album_id": "72157625742513764", "photo_flickr_id": "5322009179", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47974", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i loved seeing all the little ones show their parents that they were n't as cool as they thought !", "storylet_id": "239874"}], [{"original_text": "New years eve 2011. We watched the last day of 2010 end. ", "album_id": "72157625746272588", "photo_flickr_id": "5324231346", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "47975", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "new years eve 2011 . we watched the last day of 2010 end .", "storylet_id": "239875"}], [{"original_text": "Beautiful sky as it got dark. ", "album_id": "72157625746272588", "photo_flickr_id": "5324214630", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "47975", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "beautiful sky as it got dark .", "storylet_id": "239876"}], [{"original_text": "People looked up and waited for midnight!", "album_id": "72157625746272588", "photo_flickr_id": "5323604349", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "47975", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people looked up and waited for midnight !", "storylet_id": "239877"}], [{"original_text": "Beautiful lights in the neighborhood. ", "album_id": "72157625746272588", "photo_flickr_id": "5323571453", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "47975", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "beautiful lights in the neighborhood .", "storylet_id": "239878"}], [{"original_text": "We looked up as the time hit midnight. It was 2011!", "album_id": "72157625746272588", "photo_flickr_id": "5324202258", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "47975", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we looked up as the time hit midnight . it was 2011 !", "storylet_id": "239879"}], [{"original_text": "The train arrived in the station at 9:45. ", "album_id": "72157625746272588", "photo_flickr_id": "5324157762", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47976", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the train arrived in the station at 9:45 .", "storylet_id": "239880"}], [{"original_text": "The group walked to their favorite spot on the dock and waited until dark. ", "album_id": "72157625746272588", "photo_flickr_id": "5324218486", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47976", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the group walked to their favorite spot on the dock and waited until dark .", "storylet_id": "239881"}], [{"original_text": "Once it was dark they did their yearly walk to the tower. ", "album_id": "72157625746272588", "photo_flickr_id": "5324202258", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47976", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once it was dark they did their yearly walk to the tower .", "storylet_id": "239882"}], [{"original_text": "After the tower they walked to the dock as they have done many years before. ", "album_id": "72157625746272588", "photo_flickr_id": "5324231346", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47976", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the tower they walked to the dock as they have done many years before .", "storylet_id": "239883"}], [{"original_text": "They waited for the sun to rise to end their wonderful night. ", "album_id": "72157625746272588", "photo_flickr_id": "5323625341", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "47976", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they waited for the sun to rise to end their wonderful night .", "storylet_id": "239884"}], [{"original_text": "Six friends are at a bridge with the sunset in the distance.", "album_id": "72157625746272588", "photo_flickr_id": "5324231346", "setting": "last-3-pick-old-and-tell", "worker_id": "M73OGVPYD3C9N6X", "story_id": "47977", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "six friends are at a bridge with the sunset in the distance .", "storylet_id": "239885"}], [{"original_text": "The sunset in the sky shows colors of orange, yellow and blue.", "album_id": "72157625746272588", "photo_flickr_id": "5324214630", "setting": "last-3-pick-old-and-tell", "worker_id": "M73OGVPYD3C9N6X", "story_id": "47977", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sunset in the sky shows colors of orange , yellow and blue .", "storylet_id": "239886"}], [{"original_text": "There was a festival in the night with little tents and small lit lanterns.", "album_id": "72157625746272588", "photo_flickr_id": "5323604349", "setting": "last-3-pick-old-and-tell", "worker_id": "M73OGVPYD3C9N6X", "story_id": "47977", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a festival in the night with little tents and small lit lanterns .", "storylet_id": "239887"}], [{"original_text": "Each one of the trees were decorated with colorful fluorescent lights.", "album_id": "72157625746272588", "photo_flickr_id": "5323571453", "setting": "last-3-pick-old-and-tell", "worker_id": "M73OGVPYD3C9N6X", "story_id": "47977", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "each one of the trees were decorated with colorful fluorescent lights .", "storylet_id": "239888"}], [{"original_text": "Ended the night looking at the red tower for the year of 2011.", "album_id": "72157625746272588", "photo_flickr_id": "5324202258", "setting": "last-3-pick-old-and-tell", "worker_id": "M73OGVPYD3C9N6X", "story_id": "47977", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ended the night looking at the red tower for the year of 2011 .", "storylet_id": "239889"}], [{"original_text": "I gathered with my friends on the rooftop to get a good view of the festivities. ", "album_id": "72157625746272588", "photo_flickr_id": "5324231346", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47978", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i gathered with my friends on the rooftop to get a good view of the festivities .", "storylet_id": "239890"}], [{"original_text": "The sky was clear and beautiful. ", "album_id": "72157625746272588", "photo_flickr_id": "5324214630", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47978", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sky was clear and beautiful .", "storylet_id": "239891"}], [{"original_text": "We could see all of the vendors and people on the street. ", "album_id": "72157625746272588", "photo_flickr_id": "5323604349", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47978", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we could see all of the vendors and people on the street .", "storylet_id": "239892"}], [{"original_text": "There was quite a crowd gathering. ", "album_id": "72157625746272588", "photo_flickr_id": "5323571453", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47978", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was quite a crowd gathering .", "storylet_id": "239893"}], [{"original_text": "Almost midnight and time for the new year to begin. ", "album_id": "72157625746272588", "photo_flickr_id": "5324202258", "setting": "last-3-pick-old-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "47978", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "almost midnight and time for the new year to begin .", "storylet_id": "239894"}], [{"original_text": "What a beautiful sunset.", "album_id": "72157625746272588", "photo_flickr_id": "5324231346", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47979", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what a beautiful sunset .", "storylet_id": "239895"}], [{"original_text": "Now that the sun has set it is time to have some fun.", "album_id": "72157625746272588", "photo_flickr_id": "5324214630", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47979", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "now that the sun has set it is time to have some fun .", "storylet_id": "239896"}], [{"original_text": "Let's go and enjoy each other's company.", "album_id": "72157625746272588", "photo_flickr_id": "5323604349", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47979", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "let 's go and enjoy each other 's company .", "storylet_id": "239897"}], [{"original_text": "New we just have to wait in the dark", "album_id": "72157625746272588", "photo_flickr_id": "5323571453", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47979", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "new we just have to wait in the dark", "storylet_id": "239898"}], [{"original_text": "The celebration was well worth the wait. ", "album_id": "72157625746272588", "photo_flickr_id": "5324202258", "setting": "last-3-pick-old-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "47979", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the celebration was well worth the wait .", "storylet_id": "239899"}], [{"original_text": "Our vacation led us on an unusual trail.", "album_id": "72157628671377835", "photo_flickr_id": "6616038459", "setting": "first-2-pick-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47980", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our vacation led us on an unusual trail .", "storylet_id": "239900"}], [{"original_text": "The nature all around us amazed us.", "album_id": "72157628671377835", "photo_flickr_id": "6616037501", "setting": "first-2-pick-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47980", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the nature all around us amazed us .", "storylet_id": "239901"}], [{"original_text": "The sky promised good weather ahead.", "album_id": "72157628671377835", "photo_flickr_id": "6616039221", "setting": "first-2-pick-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47980", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sky promised good weather ahead .", "storylet_id": "239902"}], [{"original_text": "The kids were particularly happy about this vacation choice.", "album_id": "72157628671377835", "photo_flickr_id": "6616045169", "setting": "first-2-pick-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47980", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids were particularly happy about this vacation choice .", "storylet_id": "239903"}], [{"original_text": "We were really happy we had decided to come. ", "album_id": "72157628671377835", "photo_flickr_id": "6616053019", "setting": "first-2-pick-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "47980", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were really happy we had decided to come .", "storylet_id": "239904"}], [{"original_text": "The kids were excited for their beach trip,", "album_id": "72157628671377835", "photo_flickr_id": "6616045169", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "47981", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids were excited for their beach trip ,", "storylet_id": "239905"}], [{"original_text": "even though it was Winter and they had to wear lots of layers and couldn't go in the cold water.", "album_id": "72157628671377835", "photo_flickr_id": "6616044629", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "47981", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even though it was winter and they had to wear lots of layers and could n't go in the cold water .", "storylet_id": "239906"}], [{"original_text": "They still had fun, though. They wrote their names and the date in the sand, and who knows, maybe the waves will spare them and the memory of them being there will live on forever.", "album_id": "72157628671377835", "photo_flickr_id": "6616053019", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "47981", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they still had fun , though . they wrote their names and the date in the sand , and who knows , maybe the waves will spare them and the memory of them being there will live on forever .", "storylet_id": "239907"}], [{"original_text": "They also had a great time jumping off the cliffs,", "album_id": "72157628671377835", "photo_flickr_id": "6616049313", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "47981", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also had a great time jumping off the cliffs ,", "storylet_id": "239908"}], [{"original_text": "and watching the waves roll in from the ocean. Even though they couldn't swim, they still had an awesome beach trip. ", "album_id": "72157628671377835", "photo_flickr_id": "6616054639", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "47981", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and watching the waves roll in from the ocean . even though they could n't swim , they still had an awesome beach trip .", "storylet_id": "239909"}], [{"original_text": "My best friend and I having a good time out doors with the crisps cool air. ", "album_id": "72157628671377835", "photo_flickr_id": "6616045169", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "47982", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my best friend and i having a good time out doors with the crisps cool air .", "storylet_id": "239910"}], [{"original_text": "I am posing for a picture for my best friend to add to album. ", "album_id": "72157628671377835", "photo_flickr_id": "6616044629", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "47982", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i am posing for a picture for my best friend to add to album .", "storylet_id": "239911"}], [{"original_text": "I decided to draw in the sand the date and location where we were on vacation. ", "album_id": "72157628671377835", "photo_flickr_id": "6616053019", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "47982", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i decided to draw in the sand the date and location where we were on vacation .", "storylet_id": "239912"}], [{"original_text": "Decided to jump from a small cliff just to have a good time and be spontaneous. ", "album_id": "72157628671377835", "photo_flickr_id": "6616049313", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "47982", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "decided to jump from a small cliff just to have a good time and be spontaneous .", "storylet_id": "239913"}], [{"original_text": "Looking at the water coming in on beach from up here is beautiful. ", "album_id": "72157628671377835", "photo_flickr_id": "6616054639", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "47982", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "looking at the water coming in on beach from up here is beautiful .", "storylet_id": "239914"}], [{"original_text": "The boardwalk to the beach is well built and beautifully surrounded by grass.", "album_id": "72157628671377835", "photo_flickr_id": "6616038459", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47983", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boardwalk to the beach is well built and beautifully surrounded by grass .", "storylet_id": "239915"}], [{"original_text": "The grass is tall and gives the ocean a wonderful look.", "album_id": "72157628671377835", "photo_flickr_id": "6616037501", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47983", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the grass is tall and gives the ocean a wonderful look .", "storylet_id": "239916"}], [{"original_text": "The sky is clear with wispy white clouds.", "album_id": "72157628671377835", "photo_flickr_id": "6616039221", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47983", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sky is clear with wispy white clouds .", "storylet_id": "239917"}], [{"original_text": "A brother and sister pose for a picture together.", "album_id": "72157628671377835", "photo_flickr_id": "6616045169", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47983", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a brother and sister pose for a picture together .", "storylet_id": "239918"}], [{"original_text": "This trip to Plum Island in 2012 will always be remembered. ", "album_id": "72157628671377835", "photo_flickr_id": "6616053019", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "47983", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this trip to location location in 2012 will always be remembered .", "storylet_id": "239919"}], [{"original_text": "The journey to the island's beach was long, but for us that was part of the fun.", "album_id": "72157628671377835", "photo_flickr_id": "6616038459", "setting": "last-3-pick-old-and-tell", "worker_id": "HEFZ0XAWLT8P8I7", "story_id": "47984", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the journey to the island 's beach was long , but for us that was part of the fun .", "storylet_id": "239920"}], [{"original_text": "Tall grass turned brown from the fall weather stretched out on either side of the path we followed.", "album_id": "72157628671377835", "photo_flickr_id": "6616037501", "setting": "last-3-pick-old-and-tell", "worker_id": "HEFZ0XAWLT8P8I7", "story_id": "47984", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "tall grass turned brown from the fall weather stretched out on either side of the path we followed .", "storylet_id": "239921"}], [{"original_text": "The sky above was a beautiful blue against a light dusting of clouds.", "album_id": "72157628671377835", "photo_flickr_id": "6616039221", "setting": "last-3-pick-old-and-tell", "worker_id": "HEFZ0XAWLT8P8I7", "story_id": "47984", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sky above was a beautiful blue against a light dusting of clouds .", "storylet_id": "239922"}], [{"original_text": "I treasure the memories I have walking that path with my older sister.", "album_id": "72157628671377835", "photo_flickr_id": "6616045169", "setting": "last-3-pick-old-and-tell", "worker_id": "HEFZ0XAWLT8P8I7", "story_id": "47984", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i treasure the memories i have walking that path with my older sister .", "storylet_id": "239923"}], [{"original_text": "I guess I really treasure all my memories from that beach.", "album_id": "72157628671377835", "photo_flickr_id": "6616053019", "setting": "last-3-pick-old-and-tell", "worker_id": "HEFZ0XAWLT8P8I7", "story_id": "47984", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i guess i really treasure all my memories from that beach .", "storylet_id": "239924"}], [{"original_text": "I saw a squirrel in the tree in my back yard.", "album_id": "72157628685616919", "photo_flickr_id": "6622212201", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47985", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i saw a squirrel in the tree in my back yard .", "storylet_id": "239925"}], [{"original_text": "It amazes me how they can cling to the trees.", "album_id": "72157628685616919", "photo_flickr_id": "6622220143", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47985", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it amazes me how they can cling to the trees .", "storylet_id": "239926"}], [{"original_text": "He came down out of the tree and stopped.", "album_id": "72157628685616919", "photo_flickr_id": "6622225775", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47985", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he came down out of the tree and stopped .", "storylet_id": "239927"}], [{"original_text": "I began to move slowly towards him.", "album_id": "72157628685616919", "photo_flickr_id": "6622234997", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47985", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i began to move slowly towards him .", "storylet_id": "239928"}], [{"original_text": "He didn't seem to mind that I was getting close to him.", "album_id": "72157628685616919", "photo_flickr_id": "6622327107", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "47985", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he did n't seem to mind that i was getting close to him .", "storylet_id": "239929"}], [{"original_text": "the coach giving a great before game pep talk.", "album_id": "72157628685616919", "photo_flickr_id": "6622220143", "setting": "first-2-pick-and-tell", "worker_id": "4LS7C7FQSB81O19", "story_id": "47986", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the coach giving a great before game pep talk .", "storylet_id": "239930"}], [{"original_text": "patrick threw the ball, they are fumbling for it.", "album_id": "72157628685616919", "photo_flickr_id": "6622244495", "setting": "first-2-pick-and-tell", "worker_id": "4LS7C7FQSB81O19", "story_id": "47986", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "patrick threw the ball , they are fumbling for it .", "storylet_id": "239931"}], [{"original_text": "john trying to make an air play.", "album_id": "72157628685616919", "photo_flickr_id": "6622248475", "setting": "first-2-pick-and-tell", "worker_id": "4LS7C7FQSB81O19", "story_id": "47986", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "john trying to make an air play .", "storylet_id": "239932"}], [{"original_text": "poor steve they are ganging up on him.", "album_id": "72157628685616919", "photo_flickr_id": "6622253435", "setting": "first-2-pick-and-tell", "worker_id": "4LS7C7FQSB81O19", "story_id": "47986", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "poor steve they are ganging up on him .", "storylet_id": "239933"}], [{"original_text": "run jack run and he makes it.", "album_id": "72157628685616919", "photo_flickr_id": "6622341743", "setting": "first-2-pick-and-tell", "worker_id": "4LS7C7FQSB81O19", "story_id": "47986", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "run jack run and he makes it .", "storylet_id": "239934"}], [{"original_text": "The team huddled to prepare for the game. ", "album_id": "72157628685616919", "photo_flickr_id": "6622220143", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "47987", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the team huddled to prepare for the game .", "storylet_id": "239935"}], [{"original_text": "The game was very important to them. ", "album_id": "72157628685616919", "photo_flickr_id": "6622244495", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "47987", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the game was very important to them .", "storylet_id": "239936"}], [{"original_text": "They played with intensity. ", "album_id": "72157628685616919", "photo_flickr_id": "6622248475", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "47987", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they played with intensity .", "storylet_id": "239937"}], [{"original_text": "The other team gave them a major challenge. ", "album_id": "72157628685616919", "photo_flickr_id": "6622253435", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "47987", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the other team gave them a major challenge .", "storylet_id": "239938"}], [{"original_text": "All the players did their best. ", "album_id": "72157628685616919", "photo_flickr_id": "6622341743", "setting": "last-3-pick-old-and-tell", "worker_id": "73EMQVQJE688WSF", "story_id": "47987", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the players did their best .", "storylet_id": "239939"}], [{"original_text": "My husband is a huge sports fan. He's always watching some sport on TV I don't even know the name of.", "album_id": "72157628685616919", "photo_flickr_id": "6622220143", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47988", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband is a huge sports fan . he 's always watching some sport on tv i do n't even know the name of .", "storylet_id": "239940"}], [{"original_text": "I can't get what this sport is! It kind of looks like a cross between soccer and football.", "album_id": "72157628685616919", "photo_flickr_id": "6622244495", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47988", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i ca n't get what this sport is ! it kind of looks like a cross between soccer and football .", "storylet_id": "239941"}], [{"original_text": "I know in soccer, you can't hold the ball, so it's probably not soccer.", "album_id": "72157628685616919", "photo_flickr_id": "6622248475", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47988", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i know in soccer , you ca n't hold the ball , so it 's probably not soccer .", "storylet_id": "239942"}], [{"original_text": "The ball looks like a football, but the players don't have any helmets on.", "album_id": "72157628685616919", "photo_flickr_id": "6622253435", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47988", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ball looks like a football , but the players do n't have any helmets on .", "storylet_id": "239943"}], [{"original_text": "My husband watches like it's the Super Bowl, and I just roll my eyes.", "album_id": "72157628685616919", "photo_flickr_id": "6622341743", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "47988", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my husband watches like it 's the super bowl , and i just roll my eyes .", "storylet_id": "239944"}], [{"original_text": "Several fell over during the game", "album_id": "72157628685616919", "photo_flickr_id": "6622212201", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47989", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "several fell over during the game", "storylet_id": "239945"}], [{"original_text": "so they regrouped.", "album_id": "72157628685616919", "photo_flickr_id": "6622220143", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47989", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so they regrouped .", "storylet_id": "239946"}], [{"original_text": "The guy hit the ball up", "album_id": "72157628685616919", "photo_flickr_id": "6622225775", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47989", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guy hit the ball up", "storylet_id": "239947"}], [{"original_text": "and couldn't believe it.", "album_id": "72157628685616919", "photo_flickr_id": "6622234997", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47989", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and could n't believe it .", "storylet_id": "239948"}], [{"original_text": "They ran after the ball so they could win the game.", "album_id": "72157628685616919", "photo_flickr_id": "6622327107", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "47989", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ran after the ball so they could win the game .", "storylet_id": "239949"}], [{"original_text": "We finally arrived in the city after driving for hours.", "album_id": "72157628662080341", "photo_flickr_id": "6612005227", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47990", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we finally arrived in the city after driving for hours .", "storylet_id": "239950"}], [{"original_text": "There were still some people out at this time of night.", "album_id": "72157628662080341", "photo_flickr_id": "6612017623", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47990", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were still some people out at this time of night .", "storylet_id": "239951"}], [{"original_text": "Some of the streets were empty though.", "album_id": "72157628662080341", "photo_flickr_id": "6612031847", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47990", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the streets were empty though .", "storylet_id": "239952"}], [{"original_text": "There were some shady looking individuals.", "album_id": "72157628662080341", "photo_flickr_id": "6612035579", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47990", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were some shady looking individuals .", "storylet_id": "239953"}], [{"original_text": "We decided it would be best to stick together if we walk around.", "album_id": "72157628662080341", "photo_flickr_id": "6612044291", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "47990", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided it would be best to stick together if we walk around .", "storylet_id": "239954"}], [{"original_text": "The mother and daughter were on vacation and admiring old buildings.", "album_id": "72157628662080341", "photo_flickr_id": "6611994035", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47991", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the mother and daughter were on vacation and admiring old buildings .", "storylet_id": "239955"}], [{"original_text": "There were some beautiful ones with columns.", "album_id": "72157628662080341", "photo_flickr_id": "6612007063", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47991", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were some beautiful ones with columns .", "storylet_id": "239956"}], [{"original_text": "The buildings were very old and tall.", "album_id": "72157628662080341", "photo_flickr_id": "6612010987", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47991", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the buildings were very old and tall .", "storylet_id": "239957"}], [{"original_text": "They visited a market next.", "album_id": "72157628662080341", "photo_flickr_id": "6612017623", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47991", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they visited a market next .", "storylet_id": "239958"}], [{"original_text": "They ended the night heading out to get some dinner.", "album_id": "72157628662080341", "photo_flickr_id": "6612044291", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47991", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ended the night heading out to get some dinner .", "storylet_id": "239959"}], [{"original_text": "We went to the city pretty late at night.", "album_id": "72157628662080341", "photo_flickr_id": "6612005227", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "47992", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the city pretty late at night .", "storylet_id": "239960"}], [{"original_text": "We were surprised at the energy and activity.", "album_id": "72157628662080341", "photo_flickr_id": "6612017623", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "47992", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were surprised at the energy and activity .", "storylet_id": "239961"}], [{"original_text": "There were still a few empty streets we came across.", "album_id": "72157628662080341", "photo_flickr_id": "6612031847", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "47992", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were still a few empty streets we came across .", "storylet_id": "239962"}], [{"original_text": "We were never very far from some other late night travelers.", "album_id": "72157628662080341", "photo_flickr_id": "6612035579", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "47992", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were never very far from some other late night travelers .", "storylet_id": "239963"}], [{"original_text": "At the end of a good walk we decided to cross the street to the bar for a cool drink.", "album_id": "72157628662080341", "photo_flickr_id": "6612044291", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "47992", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of a good walk we decided to cross the street to the bar for a cool drink .", "storylet_id": "239964"}], [{"original_text": "The cab dropped them off for a night on the town.", "album_id": "72157628662080341", "photo_flickr_id": "6612005227", "setting": "last-3-pick-old-and-tell", "worker_id": "NAL4OGXAKB9J4G3", "story_id": "47993", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cab dropped them off for a night on the town .", "storylet_id": "239965"}], [{"original_text": "Everyone is in a festive mood.", "album_id": "72157628662080341", "photo_flickr_id": "6612017623", "setting": "last-3-pick-old-and-tell", "worker_id": "NAL4OGXAKB9J4G3", "story_id": "47993", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone is in a festive mood .", "storylet_id": "239966"}], [{"original_text": "The evening grows late and the streets are more deserted.", "album_id": "72157628662080341", "photo_flickr_id": "6612031847", "setting": "last-3-pick-old-and-tell", "worker_id": "NAL4OGXAKB9J4G3", "story_id": "47993", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the evening grows late and the streets are more deserted .", "storylet_id": "239967"}], [{"original_text": "But travel a little further to where the action is...", "album_id": "72157628662080341", "photo_flickr_id": "6612035579", "setting": "last-3-pick-old-and-tell", "worker_id": "NAL4OGXAKB9J4G3", "story_id": "47993", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but travel a little further to where the action is ...", "storylet_id": "239968"}], [{"original_text": "On the streets everything bursts into color!", "album_id": "72157628662080341", "photo_flickr_id": "6612044291", "setting": "last-3-pick-old-and-tell", "worker_id": "NAL4OGXAKB9J4G3", "story_id": "47993", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the streets everything bursts into color !", "storylet_id": "239969"}], [{"original_text": "They people parked their car next to the curb under the light pole.", "album_id": "72157628662080341", "photo_flickr_id": "6612005227", "setting": "last-3-pick-old-and-tell", "worker_id": "PLLF5YRSBEOLX76", "story_id": "47994", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they people parked their car next to the curb under the light pole .", "storylet_id": "239970"}], [{"original_text": "They took a walk on the sidewalk and passed others that were walking and standing around.", "album_id": "72157628662080341", "photo_flickr_id": "6612017623", "setting": "last-3-pick-old-and-tell", "worker_id": "PLLF5YRSBEOLX76", "story_id": "47994", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took a walk on the sidewalk and passed others that were walking and standing around .", "storylet_id": "239971"}], [{"original_text": "The moon was shining bright that night.", "album_id": "72157628662080341", "photo_flickr_id": "6612031847", "setting": "last-3-pick-old-and-tell", "worker_id": "PLLF5YRSBEOLX76", "story_id": "47994", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the moon was shining bright that night .", "storylet_id": "239972"}], [{"original_text": "There were buildings on each side of the street.", "album_id": "72157628662080341", "photo_flickr_id": "6612035579", "setting": "last-3-pick-old-and-tell", "worker_id": "PLLF5YRSBEOLX76", "story_id": "47994", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were buildings on each side of the street .", "storylet_id": "239973"}], [{"original_text": "The night was coming to an end and every departed.", "album_id": "72157628662080341", "photo_flickr_id": "6612044291", "setting": "last-3-pick-old-and-tell", "worker_id": "PLLF5YRSBEOLX76", "story_id": "47994", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night was coming to an end and every departed .", "storylet_id": "239974"}], [{"original_text": "The couple was taking a tour of the city looking at statues and arts.", "album_id": "72157628666827543", "photo_flickr_id": "6614072879", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47995", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple was taking a tour of the city looking at statues and arts .", "storylet_id": "239975"}], [{"original_text": "They made their way to the open area.", "album_id": "72157628666827543", "photo_flickr_id": "6614134701", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47995", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they made their way to the open area .", "storylet_id": "239976"}], [{"original_text": "There was a lot of beautiful art in the open area.", "album_id": "72157628666827543", "photo_flickr_id": "6614199031", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47995", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a lot of beautiful art in the open area .", "storylet_id": "239977"}], [{"original_text": "There also was a balcony overlooking the courtyard.", "album_id": "72157628666827543", "photo_flickr_id": "6614289853", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47995", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there also was a balcony overlooking the courtyard .", "storylet_id": "239978"}], [{"original_text": "They ended their tour looking at a beautiful architecturally sound building.", "album_id": "72157628666827543", "photo_flickr_id": "6614364495", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "47995", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ended their tour looking at a beautiful architecturally sound building .", "storylet_id": "239979"}], [{"original_text": "The tourist decided to go sight seeing today.", "album_id": "72157628666827543", "photo_flickr_id": "6614260287", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "47996", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tourist decided to go sight seeing today .", "storylet_id": "239980"}], [{"original_text": "It was snowy out side.", "album_id": "72157628666827543", "photo_flickr_id": "6614121539", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "47996", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was snowy out side .", "storylet_id": "239981"}], [{"original_text": "Snow covered everything.", "album_id": "72157628666827543", "photo_flickr_id": "6614091753", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "47996", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "snow covered everything .", "storylet_id": "239982"}], [{"original_text": "The tourist managed to take pictures of some statutes.", "album_id": "72157628666827543", "photo_flickr_id": "6614072879", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "47996", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the tourist managed to take pictures of some statutes .", "storylet_id": "239983"}], [{"original_text": "The tourists favorite view was of the city.", "album_id": "72157628666827543", "photo_flickr_id": "6614289853", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "47996", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the tourists favorite view was of the city .", "storylet_id": "239984"}], [{"original_text": "I went for a walk in the snow. Which at first glance seemed bleak.", "album_id": "72157628666827543", "photo_flickr_id": "6614260287", "setting": "last-3-pick-old-and-tell", "worker_id": "JFK3JDONC8JF3I7", "story_id": "47997", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a walk in the snow . which at first glance seemed bleak .", "storylet_id": "239985"}], [{"original_text": "It was pretty cold and I wondered If I had on the correct shoes.", "album_id": "72157628666827543", "photo_flickr_id": "6614121539", "setting": "last-3-pick-old-and-tell", "worker_id": "JFK3JDONC8JF3I7", "story_id": "47997", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was pretty cold and i wondered if i had on the correct shoes .", "storylet_id": "239986"}], [{"original_text": " As I looked around I began to see how beautiful the snow made everything.", "album_id": "72157628666827543", "photo_flickr_id": "6614091753", "setting": "last-3-pick-old-and-tell", "worker_id": "JFK3JDONC8JF3I7", "story_id": "47997", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as i looked around i began to see how beautiful the snow made everything .", "storylet_id": "239987"}], [{"original_text": "The statues looked as if they might walk somewhere to get warm.", "album_id": "72157628666827543", "photo_flickr_id": "6614072879", "setting": "last-3-pick-old-and-tell", "worker_id": "JFK3JDONC8JF3I7", "story_id": "47997", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the statues looked as if they might walk somewhere to get warm .", "storylet_id": "239988"}], [{"original_text": "The large plaza then filled with other people looking around to see the beauty.", "album_id": "72157628666827543", "photo_flickr_id": "6614289853", "setting": "last-3-pick-old-and-tell", "worker_id": "JFK3JDONC8JF3I7", "story_id": "47997", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the large plaza then filled with other people looking around to see the beauty .", "storylet_id": "239989"}], [{"original_text": "I decide to take a walk on a cold winters day.", "album_id": "72157628666827543", "photo_flickr_id": "6614260287", "setting": "last-3-pick-old-and-tell", "worker_id": "CNKST1EBNP3YHXT", "story_id": "47998", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decide to take a walk on a cold winters day .", "storylet_id": "239990"}], [{"original_text": "I looked down at my feet and thought about where things had gone wrong with my girlfriend.", "album_id": "72157628666827543", "photo_flickr_id": "6614121539", "setting": "last-3-pick-old-and-tell", "worker_id": "CNKST1EBNP3YHXT", "story_id": "47998", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i looked down at my feet and thought about where things had gone wrong with my girlfriend .", "storylet_id": "239991"}], [{"original_text": "I wanted to sit down on a bench but it was covered in snow.", "album_id": "72157628666827543", "photo_flickr_id": "6614091753", "setting": "last-3-pick-old-and-tell", "worker_id": "CNKST1EBNP3YHXT", "story_id": "47998", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i wanted to sit down on a bench but it was covered in snow .", "storylet_id": "239992"}], [{"original_text": "I looked up and saw a statue of a couple, standing, frozen.", "album_id": "72157628666827543", "photo_flickr_id": "6614072879", "setting": "last-3-pick-old-and-tell", "worker_id": "CNKST1EBNP3YHXT", "story_id": "47998", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i looked up and saw a statue of a couple , standing , frozen .", "storylet_id": "239993"}], [{"original_text": "As I looked out ove the park I decided I was not going to remain stuck. I would call Vanessa.", "album_id": "72157628666827543", "photo_flickr_id": "6614289853", "setting": "last-3-pick-old-and-tell", "worker_id": "CNKST1EBNP3YHXT", "story_id": "47998", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as i looked out ove the park i decided i was not going to remain stuck . i would call [female] .", "storylet_id": "239994"}], [{"original_text": "I visited a public park in Europe. It had a lot of art on display, such as these statues.", "album_id": "72157628666827543", "photo_flickr_id": "6614072879", "setting": "last-3-pick-old-and-tell", "worker_id": "30C18G8GXHB71P6", "story_id": "47999", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i visited a public park in location . it had a lot of art on display , such as these statues .", "storylet_id": "239995"}], [{"original_text": "The fountain at the center of the square was not functioning that day.", "album_id": "72157628666827543", "photo_flickr_id": "6614134701", "setting": "last-3-pick-old-and-tell", "worker_id": "30C18G8GXHB71P6", "story_id": "47999", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fountain at the center of the square was not functioning that day .", "storylet_id": "239996"}], [{"original_text": "The designs on the gate were exquisitely done.", "album_id": "72157628666827543", "photo_flickr_id": "6614199031", "setting": "last-3-pick-old-and-tell", "worker_id": "30C18G8GXHB71P6", "story_id": "47999", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the designs on the gate were exquisitely done .", "storylet_id": "239997"}], [{"original_text": "The steps next to the building granted a wonderful view of the park.", "album_id": "72157628666827543", "photo_flickr_id": "6614289853", "setting": "last-3-pick-old-and-tell", "worker_id": "30C18G8GXHB71P6", "story_id": "47999", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the steps next to the building granted a wonderful view of the park .", "storylet_id": "239998"}], [{"original_text": "These light posts were very ornate.", "album_id": "72157628666827543", "photo_flickr_id": "6614364495", "setting": "last-3-pick-old-and-tell", "worker_id": "30C18G8GXHB71P6", "story_id": "47999", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these light posts were very ornate .", "storylet_id": "239999"}], [{"original_text": "The show in Las Vegas was absolutely stunning. The show girls put on an excellent performance.", "album_id": "72157628670921099", "photo_flickr_id": "6615804279", "setting": "first-2-pick-and-tell", "worker_id": "3CJN0NKWLJNWJ97", "story_id": "48000", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the show in location location was absolutely stunning . the show girls put on an excellent performance .", "storylet_id": "240000"}], [{"original_text": "The lead guitarist of that band I like was doing some serious shredding during the set.", "album_id": "72157628670921099", "photo_flickr_id": "6615793473", "setting": "first-2-pick-and-tell", "worker_id": "3CJN0NKWLJNWJ97", "story_id": "48000", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lead guitarist of that band i like was doing some serious shredding during the set .", "storylet_id": "240001"}], [{"original_text": "The other guitarist was putting on a show for sure. He was tossing his guitar every which way.", "album_id": "72157628670921099", "photo_flickr_id": "6615797821", "setting": "first-2-pick-and-tell", "worker_id": "3CJN0NKWLJNWJ97", "story_id": "48000", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the other guitarist was putting on a show for sure . he was tossing his guitar every which way .", "storylet_id": "240002"}], [{"original_text": "The lead singer looked right at us and I could swear he winked at me.", "album_id": "72157628670921099", "photo_flickr_id": "6615798721", "setting": "first-2-pick-and-tell", "worker_id": "3CJN0NKWLJNWJ97", "story_id": "48000", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lead singer looked right at us and i could swear he winked at me .", "storylet_id": "240003"}], [{"original_text": "This is from the last song of the night; it was such a wonderful time to listen to that band play.", "album_id": "72157628670921099", "photo_flickr_id": "6615802561", "setting": "first-2-pick-and-tell", "worker_id": "3CJN0NKWLJNWJ97", "story_id": "48000", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is from the last song of the night ; it was such a wonderful time to listen to that band play .", "storylet_id": "240004"}], [{"original_text": "The bachelor party arrived in Los Vegas and encountered some dancers.", "album_id": "72157628670921099", "photo_flickr_id": "6615804279", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "48001", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bachelor party arrived in location location and encountered some dancers .", "storylet_id": "240005"}], [{"original_text": "Next they went to the concert. ", "album_id": "72157628670921099", "photo_flickr_id": "6615792751", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "48001", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next they went to the concert .", "storylet_id": "240006"}], [{"original_text": "It was very loud and exciting.", "album_id": "72157628670921099", "photo_flickr_id": "6615793473", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "48001", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was very loud and exciting .", "storylet_id": "240007"}], [{"original_text": "The performers were great singers and had some awesome guitar solos.", "album_id": "72157628670921099", "photo_flickr_id": "6615799647", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "48001", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the performers were great singers and had some awesome guitar solos .", "storylet_id": "240008"}], [{"original_text": "There was a lot of crazy people at the concert including flashers.", "album_id": "72157628670921099", "photo_flickr_id": "6615803365", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "48001", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a lot of crazy people at the concert including flashers .", "storylet_id": "240009"}], [{"original_text": "My wife and I went on a fun vacation together in Las Vegas.", "album_id": "72157628670921099", "photo_flickr_id": "6615804279", "setting": "last-3-pick-old-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "48002", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my wife and i went on a fun vacation together in location location .", "storylet_id": "240010"}], [{"original_text": "We saw a concert with a really great cover band.", "album_id": "72157628670921099", "photo_flickr_id": "6615792751", "setting": "last-3-pick-old-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "48002", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw a concert with a really great cover band .", "storylet_id": "240011"}], [{"original_text": "The guitarist really did an amazing job. It was like seeing the real band!", "album_id": "72157628670921099", "photo_flickr_id": "6615793473", "setting": "last-3-pick-old-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "48002", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guitarist really did an amazing job . it was like seeing the real band !", "storylet_id": "240012"}], [{"original_text": "The whole band was amazing!", "album_id": "72157628670921099", "photo_flickr_id": "6615799647", "setting": "last-3-pick-old-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "48002", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole band was amazing !", "storylet_id": "240013"}], [{"original_text": "The concert got a little crazy. What happens in Vegas stays in Vegas!", "album_id": "72157628670921099", "photo_flickr_id": "6615803365", "setting": "last-3-pick-old-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "48002", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the concert got a little crazy . what happens in location stays in location !", "storylet_id": "240014"}], [{"original_text": "A concert was held in Las Vegas. Dancers stood outside.", "album_id": "72157628670921099", "photo_flickr_id": "6615804279", "setting": "last-3-pick-old-and-tell", "worker_id": "30C18G8GXHB71P6", "story_id": "48003", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a concert was held in location location . dancers stood outside .", "storylet_id": "240015"}], [{"original_text": "The guitarist played a solo.", "album_id": "72157628670921099", "photo_flickr_id": "6615793473", "setting": "last-3-pick-old-and-tell", "worker_id": "30C18G8GXHB71P6", "story_id": "48003", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guitarist played a solo .", "storylet_id": "240016"}], [{"original_text": "The bassist pointed his instrument at the crowd.", "album_id": "72157628670921099", "photo_flickr_id": "6615797821", "setting": "last-3-pick-old-and-tell", "worker_id": "30C18G8GXHB71P6", "story_id": "48003", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bassist pointed his instrument at the crowd .", "storylet_id": "240017"}], [{"original_text": "The lead singer pointed his finger at the crowd", "album_id": "72157628670921099", "photo_flickr_id": "6615798721", "setting": "last-3-pick-old-and-tell", "worker_id": "30C18G8GXHB71P6", "story_id": "48003", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lead singer pointed his finger at the crowd", "storylet_id": "240018"}], [{"original_text": "The concert organizer thanked the people for attending.", "album_id": "72157628670921099", "photo_flickr_id": "6615802561", "setting": "last-3-pick-old-and-tell", "worker_id": "30C18G8GXHB71P6", "story_id": "48003", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the concert organizer thanked the people for attending .", "storylet_id": "240019"}], [{"original_text": "There was a musical going on downtown today.", "album_id": "72157628670921099", "photo_flickr_id": "6615804279", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "48004", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a musical going on downtown today .", "storylet_id": "240020"}], [{"original_text": "There were many popular singers there.", "album_id": "72157628670921099", "photo_flickr_id": "6615793473", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "48004", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many popular singers there .", "storylet_id": "240021"}], [{"original_text": "They played a lot of good songs.", "album_id": "72157628670921099", "photo_flickr_id": "6615797821", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "48004", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they played a lot of good songs .", "storylet_id": "240022"}], [{"original_text": "The audience was heavily involved.", "album_id": "72157628670921099", "photo_flickr_id": "6615798721", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "48004", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the audience was heavily involved .", "storylet_id": "240023"}], [{"original_text": "The singers were very motivational.", "album_id": "72157628670921099", "photo_flickr_id": "6615802561", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "48004", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the singers were very motivational .", "storylet_id": "240024"}], [{"original_text": "The family was camping in a small cabin.", "album_id": "72157628674795963", "photo_flickr_id": "6617573703", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "48005", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was camping in a small cabin .", "storylet_id": "240025"}], [{"original_text": "It was a very calm peaceful night.", "album_id": "72157628674795963", "photo_flickr_id": "6617568849", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "48005", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a very calm peaceful night .", "storylet_id": "240026"}], [{"original_text": "They started a campfire.", "album_id": "72157628674795963", "photo_flickr_id": "6617580367", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "48005", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they started a campfire .", "storylet_id": "240027"}], [{"original_text": "The family sent off some fireworks.", "album_id": "72157628674795963", "photo_flickr_id": "6617626033", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "48005", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family sent off some fireworks .", "storylet_id": "240028"}], [{"original_text": "The family went inside and got ready for bed after a long fun day.", "album_id": "72157628674795963", "photo_flickr_id": "6617596633", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "48005", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family went inside and got ready for bed after a long fun day .", "storylet_id": "240029"}], [{"original_text": "There is not much to do in the country.", "album_id": "72157628674795963", "photo_flickr_id": "6617573703", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "48006", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is not much to do in the country .", "storylet_id": "240030"}], [{"original_text": "The couple were looking for something to do.", "album_id": "72157628674795963", "photo_flickr_id": "6617596633", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "48006", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the couple were looking for something to do .", "storylet_id": "240031"}], [{"original_text": "Grandpa said their is a fireworks display going on tonight for fourth of July.", "album_id": "72157628674795963", "photo_flickr_id": "6617580367", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "48006", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandpa said their is a fireworks display going on tonight for fourth of july .", "storylet_id": "240032"}], [{"original_text": "The couple went to the area were there's guna be fireworks.", "album_id": "72157628674795963", "photo_flickr_id": "6617608591", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "48006", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple went to the area were there 's guna be fireworks .", "storylet_id": "240033"}], [{"original_text": "They enjoyed the fire works show.", "album_id": "72157628674795963", "photo_flickr_id": "6617626033", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "48006", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they enjoyed the fire works show .", "storylet_id": "240034"}], [{"original_text": "My family and I took a vacation to a cabin by the lake for a long weekend.", "album_id": "72157628674795963", "photo_flickr_id": "6617573703", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "48007", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family and i took a vacation to a cabin by the lake for a long weekend .", "storylet_id": "240035"}], [{"original_text": "We enjoyed the peace and quiet away from the city.", "album_id": "72157628674795963", "photo_flickr_id": "6617596633", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "48007", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we enjoyed the peace and quiet away from the city .", "storylet_id": "240036"}], [{"original_text": "We had a campfire and roasted marshmallows.", "album_id": "72157628674795963", "photo_flickr_id": "6617580367", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "48007", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a campfire and roasted marshmallows .", "storylet_id": "240037"}], [{"original_text": "We let off some ground fireworks.", "album_id": "72157628674795963", "photo_flickr_id": "6617608591", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "48007", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we let off some ground fireworks .", "storylet_id": "240038"}], [{"original_text": "Then we ended the night with some fireworks bright into the sky.", "album_id": "72157628674795963", "photo_flickr_id": "6617626033", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "48007", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we ended the night with some fireworks bright into the sky .", "storylet_id": "240039"}], [{"original_text": "The Banger family wanted to spend 4th of July doing something a little different this year.", "album_id": "72157628674795963", "photo_flickr_id": "6617573703", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "48008", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the banger family wanted to spend 4th of july doing something a little different this year .", "storylet_id": "240040"}], [{"original_text": "They always watched fireworks, but then they heard about a haunted firework show.", "album_id": "72157628674795963", "photo_flickr_id": "6617568849", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "48008", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they always watched fireworks , but then they heard about a haunted firework show .", "storylet_id": "240041"}], [{"original_text": "They went to the show and had a great time being scared by the haunted creatures.", "album_id": "72157628674795963", "photo_flickr_id": "6617580367", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "48008", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they went to the show and had a great time being scared by the haunted creatures .", "storylet_id": "240042"}], [{"original_text": "The big finale with the fireworks was very entertaining.", "album_id": "72157628674795963", "photo_flickr_id": "6617626033", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "48008", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the big finale with the fireworks was very entertaining .", "storylet_id": "240043"}], [{"original_text": "When the family returned from the festivities, they were very glad they went.", "album_id": "72157628674795963", "photo_flickr_id": "6617596633", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "48008", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the family returned from the festivities , they were very glad they went .", "storylet_id": "240044"}], [{"original_text": "Our getaway in the outdoors. We love it here.", "album_id": "72157628674795963", "photo_flickr_id": "6617573703", "setting": "last-3-pick-old-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48009", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our getaway in the outdoors . we love it here .", "storylet_id": "240045"}], [{"original_text": "The night had an eerily beautiful sky.", "album_id": "72157628674795963", "photo_flickr_id": "6617568849", "setting": "last-3-pick-old-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48009", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the night had an eerily beautiful sky .", "storylet_id": "240046"}], [{"original_text": "Sitting by the fire is always a good way to relax.", "album_id": "72157628674795963", "photo_flickr_id": "6617580367", "setting": "last-3-pick-old-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48009", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sitting by the fire is always a good way to relax .", "storylet_id": "240047"}], [{"original_text": "Fireworks have always been a hobby of ours, especially out here.", "album_id": "72157628674795963", "photo_flickr_id": "6617626033", "setting": "last-3-pick-old-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48009", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fireworks have always been a hobby of ours , especially out here .", "storylet_id": "240048"}], [{"original_text": "Time to relax and enjoy some time indoors. We're sleepy.", "album_id": "72157628674795963", "photo_flickr_id": "6617596633", "setting": "last-3-pick-old-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48009", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time to relax and enjoy some time indoors . we 're sleepy .", "storylet_id": "240049"}], [{"original_text": "I spent a lot of time playing with my friends yesterday.", "album_id": "72157632405596244", "photo_flickr_id": "8333638083", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48010", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spent a lot of time playing with my friends yesterday .", "storylet_id": "240050"}], [{"original_text": "We all played on my new gaming system.", "album_id": "72157632405596244", "photo_flickr_id": "8333646653", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48010", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all played on my new gaming system .", "storylet_id": "240051"}], [{"original_text": "We played a lot of songs on it.", "album_id": "72157632405596244", "photo_flickr_id": "8334705680", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48010", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we played a lot of songs on it .", "storylet_id": "240052"}], [{"original_text": "There was a lot of fun to be had.", "album_id": "72157632405596244", "photo_flickr_id": "8334706984", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48010", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a lot of fun to be had .", "storylet_id": "240053"}], [{"original_text": "Afterward we sat together to watch the news.", "album_id": "72157632405596244", "photo_flickr_id": "8333655991", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48010", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we sat together to watch the news .", "storylet_id": "240054"}], [{"original_text": "A man and a woman were playing Rock Band video game during a party.", "album_id": "72157632405596244", "photo_flickr_id": "8333646653", "setting": "first-2-pick-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "48011", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a man and a woman were playing rock band video game during a party .", "storylet_id": "240055"}], [{"original_text": "More people were taking turn playing the video.", "album_id": "72157632405596244", "photo_flickr_id": "8333654261", "setting": "first-2-pick-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "48011", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "more people were taking turn playing the video .", "storylet_id": "240056"}], [{"original_text": "The lady wearing the pink shirt decided to stop playing the video and chatted with other guests.", "album_id": "72157632405596244", "photo_flickr_id": "8333655991", "setting": "first-2-pick-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "48011", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lady wearing the pink shirt decided to stop playing the video and chatted with other guests .", "storylet_id": "240057"}], [{"original_text": "A man and a woman were amused looking at adults having a good time playing Rock Band video game.", "album_id": "72157632405596244", "photo_flickr_id": "8334715906", "setting": "first-2-pick-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "48011", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a man and a woman were amused looking at adults having a good time playing rock band video game .", "storylet_id": "240058"}], [{"original_text": "At the end of the night, guests taking pictures before saying goodbye to each other.", "album_id": "72157632405596244", "photo_flickr_id": "8334717954", "setting": "first-2-pick-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "48011", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , guests taking pictures before saying goodbye to each other .", "storylet_id": "240059"}], [{"original_text": "A party was getting underway, with somebody picking up a guitar and playing a song.", "album_id": "72157632405596244", "photo_flickr_id": "8333638083", "setting": "last-3-pick-old-and-tell", "worker_id": "JEFVO0MA0LXHSXV", "story_id": "48012", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a party was getting underway , with somebody picking up a guitar and playing a song .", "storylet_id": "240060"}], [{"original_text": "Now a friend has joined in and is playing music at the party.", "album_id": "72157632405596244", "photo_flickr_id": "8333646653", "setting": "last-3-pick-old-and-tell", "worker_id": "JEFVO0MA0LXHSXV", "story_id": "48012", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "now a friend has joined in and is playing music at the party .", "storylet_id": "240061"}], [{"original_text": "One more friend has gotten in on the act and is singing along with her friends' guitar playing.", "album_id": "72157632405596244", "photo_flickr_id": "8334705680", "setting": "last-3-pick-old-and-tell", "worker_id": "JEFVO0MA0LXHSXV", "story_id": "48012", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one more friend has gotten in on the act and is singing along with her friends ' guitar playing .", "storylet_id": "240062"}], [{"original_text": "Other guests are enjoying the performance.", "album_id": "72157632405596244", "photo_flickr_id": "8334706984", "setting": "last-3-pick-old-and-tell", "worker_id": "JEFVO0MA0LXHSXV", "story_id": "48012", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other guests are enjoying the performance .", "storylet_id": "240063"}], [{"original_text": "Afterwards, everyone gathered around the television to watch a show.", "album_id": "72157632405596244", "photo_flickr_id": "8333655991", "setting": "last-3-pick-old-and-tell", "worker_id": "JEFVO0MA0LXHSXV", "story_id": "48012", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , everyone gathered around the television to watch a show .", "storylet_id": "240064"}], [{"original_text": "There is music being played tonight.", "album_id": "72157632405596244", "photo_flickr_id": "8333646653", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "48013", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is music being played tonight .", "storylet_id": "240065"}], [{"original_text": "They all got together to have a little jam session.", "album_id": "72157632405596244", "photo_flickr_id": "8333654261", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "48013", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all got together to have a little jam session .", "storylet_id": "240066"}], [{"original_text": "People are invited over to hang out and have some fun.", "album_id": "72157632405596244", "photo_flickr_id": "8333655991", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "48013", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people are invited over to hang out and have some fun .", "storylet_id": "240067"}], [{"original_text": "People are showing up to share in the festivities of the night.", "album_id": "72157632405596244", "photo_flickr_id": "8334715906", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "48013", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people are showing up to share in the festivities of the night .", "storylet_id": "240068"}], [{"original_text": "A great night of music and great company.", "album_id": "72157632405596244", "photo_flickr_id": "8334717954", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "48013", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a great night of music and great company .", "storylet_id": "240069"}], [{"original_text": "Our whole family is musical. When we get together at Christmas, it turns into an open mic night. John grabs a guitar,", "album_id": "72157632405596244", "photo_flickr_id": "8333638083", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48014", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our whole family is musical . when we get together at christmas , it turns into an open mic night . [male] grabs a guitar ,", "storylet_id": "240070"}], [{"original_text": "And his wife, Jenny, joins him. ", "album_id": "72157632405596244", "photo_flickr_id": "8333646653", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48014", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and his wife , [female] , joins him .", "storylet_id": "240071"}], [{"original_text": "Then Carly starts singing.", "album_id": "72157632405596244", "photo_flickr_id": "8334705680", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48014", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then [female] starts singing .", "storylet_id": "240072"}], [{"original_text": "And everybody joins the fun.", "album_id": "72157632405596244", "photo_flickr_id": "8334706984", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48014", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and everybody joins the fun .", "storylet_id": "240073"}], [{"original_text": "When they finally get tired of performing, they drink wine and watch movies.", "album_id": "72157632405596244", "photo_flickr_id": "8333655991", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48014", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when they finally get tired of performing , they drink wine and watch movies .", "storylet_id": "240074"}], [{"original_text": "At this part of the temple, there were men and women eating.", "album_id": "72157632405642272", "photo_flickr_id": "8333623623", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48015", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at this part of the temple , there were men and women eating .", "storylet_id": "240075"}], [{"original_text": "They were holding a sacred ceremony and I was glad to be there.", "album_id": "72157632405642272", "photo_flickr_id": "8333623423", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48015", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were holding a sacred ceremony and i was glad to be there .", "storylet_id": "240076"}], [{"original_text": "The candles were spread out on the table.", "album_id": "72157632405642272", "photo_flickr_id": "8333623941", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48015", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the candles were spread out on the table .", "storylet_id": "240077"}], [{"original_text": "After enjoying the candles, we went back to the hotel to snap a night picture.", "album_id": "72157632405642272", "photo_flickr_id": "8333610231", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48015", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after enjoying the candles , we went back to the hotel to snap a night picture .", "storylet_id": "240078"}], [{"original_text": "On our way home, we saw decorations in another home.", "album_id": "72157632405642272", "photo_flickr_id": "8333610001", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48015", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on our way home , we saw decorations in another home .", "storylet_id": "240079"}], [{"original_text": "We waited forever for our food. After we finished eating we decided to walk around.", "album_id": "72157632405642272", "photo_flickr_id": "8333623623", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48016", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we waited forever for our food . after we finished eating we decided to walk around .", "storylet_id": "240080"}], [{"original_text": "There were a lot of decorations up for the holidays.", "album_id": "72157632405642272", "photo_flickr_id": "8333623423", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48016", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of decorations up for the holidays .", "storylet_id": "240081"}], [{"original_text": "There were some people still doing some last minute shopping.", "album_id": "72157632405642272", "photo_flickr_id": "8333610097", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48016", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some people still doing some last minute shopping .", "storylet_id": "240082"}], [{"original_text": "Everything is always so beautiful this time of the year.", "album_id": "72157632405642272", "photo_flickr_id": "8333609909", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48016", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everything is always so beautiful this time of the year .", "storylet_id": "240083"}], [{"original_text": "After looking at a few more displays we finally headed back home.", "album_id": "72157632405642272", "photo_flickr_id": "8333610001", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48016", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after looking at a few more displays we finally headed back home .", "storylet_id": "240084"}], [{"original_text": "The preacher ran a late night Christmas mass ceremony.", "album_id": "72157632405642272", "photo_flickr_id": "8333623623", "setting": "last-3-pick-old-and-tell", "worker_id": "NRUSO6SYGQIDCD6", "story_id": "48017", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the preacher ran a late night christmas mass ceremony .", "storylet_id": "240085"}], [{"original_text": "The nativity scene is still set up.", "album_id": "72157632405642272", "photo_flickr_id": "8333623423", "setting": "last-3-pick-old-and-tell", "worker_id": "NRUSO6SYGQIDCD6", "story_id": "48017", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the nativity scene is still set up .", "storylet_id": "240086"}], [{"original_text": "The candelabra candles are still burning well into the night.", "album_id": "72157632405642272", "photo_flickr_id": "8333623941", "setting": "last-3-pick-old-and-tell", "worker_id": "NRUSO6SYGQIDCD6", "story_id": "48017", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the candelabra candles are still burning well into the night .", "storylet_id": "240087"}], [{"original_text": "The church lets the people out into the dark night.", "album_id": "72157632405642272", "photo_flickr_id": "8333610231", "setting": "last-3-pick-old-and-tell", "worker_id": "NRUSO6SYGQIDCD6", "story_id": "48017", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the church lets the people out into the dark night .", "storylet_id": "240088"}], [{"original_text": "With enough time to stop and look at a display window of Santa's workshop. ", "album_id": "72157632405642272", "photo_flickr_id": "8333610001", "setting": "last-3-pick-old-and-tell", "worker_id": "NRUSO6SYGQIDCD6", "story_id": "48017", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with enough time to stop and look at a display window of location 's workshop .", "storylet_id": "240089"}], [{"original_text": "It's the holiday season. Time for a meeting with my fellow workers at the food pantry to decide if we have enough staffing.", "album_id": "72157632405642272", "photo_flickr_id": "8333623623", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48018", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's the holiday season . time for a meeting with my fellow workers at the food pantry to decide if we have enough staffing .", "storylet_id": "240090"}], [{"original_text": "Then, on to a religious service at the local church that really has a creepy nativity scene this year.", "album_id": "72157632405642272", "photo_flickr_id": "8333623423", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48018", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then , on to a religious service at the local church that really has a creepy nativity scene this year .", "storylet_id": "240091"}], [{"original_text": "Trudging through the snow to find stores that are open. ", "album_id": "72157632405642272", "photo_flickr_id": "8333610097", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48018", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "trudging through the snow to find stores that are open .", "storylet_id": "240092"}], [{"original_text": "Enjoying the lights.", "album_id": "72157632405642272", "photo_flickr_id": "8333609909", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48018", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "enjoying the lights .", "storylet_id": "240093"}], [{"original_text": "Finding some inspiration for my last-minute gift-buying.", "album_id": "72157632405642272", "photo_flickr_id": "8333610001", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48018", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finding some inspiration for my last-minute gift-buying .", "storylet_id": "240094"}], [{"original_text": "I chaperoned a field trip to the theater recently.", "album_id": "72157632405642272", "photo_flickr_id": "8333623623", "setting": "last-3-pick-old-and-tell", "worker_id": "HZIQZCK7MT8R2ZK", "story_id": "48019", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i chaperoned a field trip to the theater recently .", "storylet_id": "240095"}], [{"original_text": "The play was from the Renaissance era.", "album_id": "72157632405642272", "photo_flickr_id": "8333623423", "setting": "last-3-pick-old-and-tell", "worker_id": "HZIQZCK7MT8R2ZK", "story_id": "48019", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the play was from the renaissance era .", "storylet_id": "240096"}], [{"original_text": "The stage lighting was very historically accurate.", "album_id": "72157632405642272", "photo_flickr_id": "8333623941", "setting": "last-3-pick-old-and-tell", "worker_id": "HZIQZCK7MT8R2ZK", "story_id": "48019", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the stage lighting was very historically accurate .", "storylet_id": "240097"}], [{"original_text": "However, the theater was quite modern-looking.", "album_id": "72157632405642272", "photo_flickr_id": "8333610231", "setting": "last-3-pick-old-and-tell", "worker_id": "HZIQZCK7MT8R2ZK", "story_id": "48019", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "however , the theater was quite modern-looking .", "storylet_id": "240098"}], [{"original_text": "I thought about the play for a while after I saw it.", "album_id": "72157632405642272", "photo_flickr_id": "8333610001", "setting": "last-3-pick-old-and-tell", "worker_id": "HZIQZCK7MT8R2ZK", "story_id": "48019", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i thought about the play for a while after i saw it .", "storylet_id": "240099"}], [{"original_text": "It was really cold last night but we managed to climb all the way to the top of the building.", "album_id": "72157639271334604", "photo_flickr_id": "11687460165", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48020", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was really cold last night but we managed to climb all the way to the top of the building .", "storylet_id": "240100"}], [{"original_text": "The view of the city from up here was beautiful.", "album_id": "72157639271334604", "photo_flickr_id": "11688231756", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48020", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view of the city from up here was beautiful .", "storylet_id": "240101"}], [{"original_text": "We lit up our balloons and released them into the sky.", "album_id": "72157639271334604", "photo_flickr_id": "11688346846", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48020", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we lit up our balloons and released them into the sky .", "storylet_id": "240102"}], [{"original_text": "We then had to climb all the way back down.", "album_id": "72157639271334604", "photo_flickr_id": "11687825903", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48020", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we then had to climb all the way back down .", "storylet_id": "240103"}], [{"original_text": "It was very late when we finally arrived home.", "album_id": "72157639271334604", "photo_flickr_id": "11687811043", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48020", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was very late when we finally arrived home .", "storylet_id": "240104"}], [{"original_text": "We went to the fabled city of lights to see some of the buildings.", "album_id": "72157639271334604", "photo_flickr_id": "11687781163", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48021", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the fabled city of lights to see some of the buildings .", "storylet_id": "240105"}], [{"original_text": "This building was always completely lit up no matter what angle you were at!", "album_id": "72157639271334604", "photo_flickr_id": "11687580985", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48021", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this building was always completely lit up no matter what angle you were at !", "storylet_id": "240106"}], [{"original_text": "Here is joe showing us how it orks.", "album_id": "72157639271334604", "photo_flickr_id": "11687566995", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48021", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is joe showing us how it orks .", "storylet_id": "240107"}], [{"original_text": "The statues were even lit up!", "album_id": "72157639271334604", "photo_flickr_id": "11687769043", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48021", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the statues were even lit up !", "storylet_id": "240108"}], [{"original_text": "This city is amazing, I wonder what else there is to see!", "album_id": "72157639271334604", "photo_flickr_id": "11687803603", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48021", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this city is amazing , i wonder what else there is to see !", "storylet_id": "240109"}], [{"original_text": "This is a big white house very castle like.", "album_id": "72157639271334604", "photo_flickr_id": "11687781163", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "48022", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a big white house very castle like .", "storylet_id": "240110"}], [{"original_text": "It can be very spooky if you considering how secluded and dark it is out there.", "album_id": "72157639271334604", "photo_flickr_id": "11687580985", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "48022", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it can be very spooky if you considering how secluded and dark it is out there .", "storylet_id": "240111"}], [{"original_text": "Walking through the streets at this time of night is not dangerous at all.", "album_id": "72157639271334604", "photo_flickr_id": "11687566995", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "48022", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "walking through the streets at this time of night is not dangerous at all .", "storylet_id": "240112"}], [{"original_text": "There is a wall that people feel compelled to stand on, you can see everything from here.", "album_id": "72157639271334604", "photo_flickr_id": "11687769043", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "48022", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there is a wall that people feel compelled to stand on , you can see everything from here .", "storylet_id": "240113"}], [{"original_text": "The city is bare with no people on the street, total ghost town.", "album_id": "72157639271334604", "photo_flickr_id": "11687803603", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "48022", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the city is bare with no people on the street , total ghost town .", "storylet_id": "240114"}], [{"original_text": "this building called out to me. i could do nothing but stare for a long time", "album_id": "72157639271334604", "photo_flickr_id": "11687781163", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48023", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this building called out to me . i could do nothing but stare for a long time", "storylet_id": "240115"}], [{"original_text": "i started to move around the building to try and find why i was so enraptured by it.", "album_id": "72157639271334604", "photo_flickr_id": "11687580985", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48023", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i started to move around the building to try and find why i was so enraptured by it .", "storylet_id": "240116"}], [{"original_text": "side by side i panned around the building to try and find a source. No luck came for me.", "album_id": "72157639271334604", "photo_flickr_id": "11687566995", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48023", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "side by side i panned around the building to try and find a source . no luck came for me .", "storylet_id": "240117"}], [{"original_text": "I called my lover over to have her try and find what was going on.", "album_id": "72157639271334604", "photo_flickr_id": "11687769043", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48023", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i called my lover over to have her try and find what was going on .", "storylet_id": "240118"}], [{"original_text": "In the end we found a way out, but we worry about others that may have been caught by the stark white of the building.", "album_id": "72157639271334604", "photo_flickr_id": "11687803603", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48023", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end we found a way out , but we worry about others that may have been caught by the stark white of the building .", "storylet_id": "240119"}], [{"original_text": "It was a quiet foggy night in the city.", "album_id": "72157639271334604", "photo_flickr_id": "11687460165", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48024", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a quiet foggy night in the city .", "storylet_id": "240120"}], [{"original_text": "A few friends decided to go up to the historical inn on the hill overlooking the city and take some photos.", "album_id": "72157639271334604", "photo_flickr_id": "11688231756", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48024", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a few friends decided to go up to the historical inn on the hill overlooking the city and take some photos .", "storylet_id": "240121"}], [{"original_text": "Someone also brought a paper lantern to release into the night to honor the orgininal owners of the inn.", "album_id": "72157639271334604", "photo_flickr_id": "11688346846", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48024", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "someone also brought a paper lantern to release into the night to honor the orgininal owners of the inn .", "storylet_id": "240122"}], [{"original_text": "While they were preparing the lantern, one of their friends took a picture of the lighted inn.", "album_id": "72157639271334604", "photo_flickr_id": "11687825903", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48024", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while they were preparing the lantern , one of their friends took a picture of the lighted inn .", "storylet_id": "240123"}], [{"original_text": "After they watch the lantern float up into the sky they decided to walk down the road to a small pub to have a night cap.", "album_id": "72157639271334604", "photo_flickr_id": "11687811043", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48024", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after they watch the lantern float up into the sky they decided to walk down the road to a small pub to have a night cap .", "storylet_id": "240124"}], [{"original_text": "We had a lot of fun at the Canadian rally!", "album_id": "72157639281932693", "photo_flickr_id": "11693156283", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48025", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a lot of fun at the canadian rally !", "storylet_id": "240125"}], [{"original_text": "Grandma and grampa showed me that there were fireworks!", "album_id": "72157639281932693", "photo_flickr_id": "11692854945", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48025", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma and grampa showed me that there were fireworks !", "storylet_id": "240126"}], [{"original_text": "There was a really neat one that we could see through trees.", "album_id": "72157639281932693", "photo_flickr_id": "11693110353", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48025", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a really neat one that we could see through trees .", "storylet_id": "240127"}], [{"original_text": "There was a huge firework in the sky too!", "album_id": "72157639281932693", "photo_flickr_id": "11693215874", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48025", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a huge firework in the sky too !", "storylet_id": "240128"}], [{"original_text": "Grandma and Grampa loved it! They want to come back to Canada next year too!", "album_id": "72157639281932693", "photo_flickr_id": "11693615656", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48025", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandma and grampa loved it ! they want to come back to location next year too !", "storylet_id": "240129"}], [{"original_text": "Everyone was excited about my brother's last hockey game of the year.", "album_id": "72157639281932693", "photo_flickr_id": "11693278414", "setting": "first-2-pick-and-tell", "worker_id": "OCDRRTDG0FP8H2O", "story_id": "48026", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was excited about my brother 's last hockey game of the year .", "storylet_id": "240130"}], [{"original_text": "The crowd was enthusiastic and loudly cheering.", "album_id": "72157639281932693", "photo_flickr_id": "11693614316", "setting": "first-2-pick-and-tell", "worker_id": "OCDRRTDG0FP8H2O", "story_id": "48026", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd was enthusiastic and loudly cheering .", "storylet_id": "240131"}], [{"original_text": "I think mom was more excited than anyone else because she cheered the loudest.", "album_id": "72157639281932693", "photo_flickr_id": "11693615656", "setting": "first-2-pick-and-tell", "worker_id": "OCDRRTDG0FP8H2O", "story_id": "48026", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i think mom was more excited than anyone else because she cheered the loudest .", "storylet_id": "240132"}], [{"original_text": "After the game, people sent paper lanterns floating up into the air to celebrate the win.", "album_id": "72157639281932693", "photo_flickr_id": "11693705746", "setting": "first-2-pick-and-tell", "worker_id": "OCDRRTDG0FP8H2O", "story_id": "48026", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the game , people sent paper lanterns floating up into the air to celebrate the win .", "storylet_id": "240133"}], [{"original_text": "The night ended with a great firework display.", "album_id": "72157639281932693", "photo_flickr_id": "11693289564", "setting": "first-2-pick-and-tell", "worker_id": "OCDRRTDG0FP8H2O", "story_id": "48026", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night ended with a great firework display .", "storylet_id": "240134"}], [{"original_text": "The hockey players are lined up ready to play after the anthem.", "album_id": "72157639281932693", "photo_flickr_id": "11693278414", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "48027", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the hockey players are lined up ready to play after the anthem .", "storylet_id": "240135"}], [{"original_text": "Spectators and fans are cheering for their teams.", "album_id": "72157639281932693", "photo_flickr_id": "11693614316", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "48027", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "spectators and fans are cheering for their teams .", "storylet_id": "240136"}], [{"original_text": "People are happy when their team scores big.", "album_id": "72157639281932693", "photo_flickr_id": "11693615656", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "48027", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people are happy when their team scores big .", "storylet_id": "240137"}], [{"original_text": "Will he release the balloon light inside or outside.", "album_id": "72157639281932693", "photo_flickr_id": "11693705746", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "48027", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] he release the balloon light inside or outside .", "storylet_id": "240138"}], [{"original_text": "The light coming through the trees looks inviting.", "album_id": "72157639281932693", "photo_flickr_id": "11693289564", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "48027", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the light coming through the trees looks inviting .", "storylet_id": "240139"}], [{"original_text": "Going to a hockey game is fun. I like to watch them line up on the ice while the anthem plays.", "album_id": "72157639281932693", "photo_flickr_id": "11693278414", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48028", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going to a hockey game is fun . i like to watch them line up on the ice while the anthem plays .", "storylet_id": "240140"}], [{"original_text": "Canadian fans go crazy when they hear \"Oh, Canada\"", "album_id": "72157639281932693", "photo_flickr_id": "11693614316", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48028", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "canadian fans go crazy when they hear `` oh , location ''", "storylet_id": "240141"}], [{"original_text": "And, go even crazier when their team scores.", "album_id": "72157639281932693", "photo_flickr_id": "11693615656", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48028", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and , go even crazier when their team scores .", "storylet_id": "240142"}], [{"original_text": "After the game, we saw people lighting balloons to celebrate the win.", "album_id": "72157639281932693", "photo_flickr_id": "11693705746", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48028", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the game , we saw people lighting balloons to celebrate the win .", "storylet_id": "240143"}], [{"original_text": "And, the city seemed to be celebrating too because there was a fireworks show in the distance. ", "album_id": "72157639281932693", "photo_flickr_id": "11693289564", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48028", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , the city seemed to be celebrating too because there was a fireworks show in the distance .", "storylet_id": "240144"}], [{"original_text": "it was game day here and we were all gearing up to have a good time.", "album_id": "72157639281932693", "photo_flickr_id": "11693156283", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48029", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was game day here and we were all gearing up to have a good time .", "storylet_id": "240145"}], [{"original_text": "here we are in our box waiting on the game to start.", "album_id": "72157639281932693", "photo_flickr_id": "11692854945", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48029", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we are in our box waiting on the game to start .", "storylet_id": "240146"}], [{"original_text": "at the end of the game they set off fireworks out side. we tried to get some good pics but the trees got in the way.", "album_id": "72157639281932693", "photo_flickr_id": "11693110353", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48029", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the end of the game they set off fireworks out side . we tried to get some good pics but the trees got in the way .", "storylet_id": "240147"}], [{"original_text": "here is another pic of the fireworks again. i sometimes wish i had a better camera.", "album_id": "72157639281932693", "photo_flickr_id": "11693215874", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48029", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is another pic of the fireworks again . i sometimes wish i had a better camera .", "storylet_id": "240148"}], [{"original_text": "at the end our team won. here i am celebrating.", "album_id": "72157639281932693", "photo_flickr_id": "11693615656", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48029", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end our team won . here i am celebrating .", "storylet_id": "240149"}], [{"original_text": "Last night's party was really wild.", "album_id": "678460", "photo_flickr_id": "30304726", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48030", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night 's party was really wild .", "storylet_id": "240150"}], [{"original_text": "There were tons of people there.", "album_id": "678460", "photo_flickr_id": "30304682", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48030", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were tons of people there .", "storylet_id": "240151"}], [{"original_text": "Everyone was being very loud.", "album_id": "678460", "photo_flickr_id": "30304661", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48030", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was being very loud .", "storylet_id": "240152"}], [{"original_text": "Some of the party goers may have had too much to drink.", "album_id": "678460", "photo_flickr_id": "30304643", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48030", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the party goers may have had too much to drink .", "storylet_id": "240153"}], [{"original_text": "Everyone had a great time though.", "album_id": "678460", "photo_flickr_id": "30304638", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48030", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time though .", "storylet_id": "240154"}], [{"original_text": "Today was the day that Fred was going to ask out the girl of his dreams, at the party!", "album_id": "678460", "photo_flickr_id": "30304790", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48031", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day that [male] was going to ask out the girl of his dreams , at the party !", "storylet_id": "240155"}], [{"original_text": "She said yes! And even kissed him!", "album_id": "678460", "photo_flickr_id": "30304716", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48031", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she said yes ! and even kissed him !", "storylet_id": "240156"}], [{"original_text": "Everyone was having a great time at the party!", "album_id": "678460", "photo_flickr_id": "30304763", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48031", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was having a great time at the party !", "storylet_id": "240157"}], [{"original_text": "That was until Freds new girlfriend was caught kissing another guy.", "album_id": "678460", "photo_flickr_id": "30304783", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48031", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that was until freds new girlfriend was caught kissing another guy .", "storylet_id": "240158"}], [{"original_text": "We decided to stay silent about it.", "album_id": "678460", "photo_flickr_id": "30304752", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48031", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to stay silent about it .", "storylet_id": "240159"}], [{"original_text": "Surprise! Happy 21st birthday!", "album_id": "678460", "photo_flickr_id": "30304790", "setting": "last-3-pick-old-and-tell", "worker_id": "YWXBD78508FY13N", "story_id": "48032", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "surprise ! happy 21st birthday !", "storylet_id": "240160"}], [{"original_text": "He is thanking his girlfriend for the awesome surprise birthday party.", "album_id": "678460", "photo_flickr_id": "30304716", "setting": "last-3-pick-old-and-tell", "worker_id": "YWXBD78508FY13N", "story_id": "48032", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he is thanking his girlfriend for the awesome surprise birthday party .", "storylet_id": "240161"}], [{"original_text": "All of his friends came to celebrate.", "album_id": "678460", "photo_flickr_id": "30304763", "setting": "last-3-pick-old-and-tell", "worker_id": "YWXBD78508FY13N", "story_id": "48032", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of his friends came to celebrate .", "storylet_id": "240162"}], [{"original_text": "His girlfriend is the best and he is so happy.", "album_id": "678460", "photo_flickr_id": "30304783", "setting": "last-3-pick-old-and-tell", "worker_id": "YWXBD78508FY13N", "story_id": "48032", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his girlfriend is the best and he is so happy .", "storylet_id": "240163"}], [{"original_text": "Everyone, including his cousin are having a great time, drinking and being happy.", "album_id": "678460", "photo_flickr_id": "30304752", "setting": "last-3-pick-old-and-tell", "worker_id": "YWXBD78508FY13N", "story_id": "48032", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone , including his cousin are having a great time , drinking and being happy .", "storylet_id": "240164"}], [{"original_text": "After finals, we all got together for a party.", "album_id": "678460", "photo_flickr_id": "30304790", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48033", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after finals , we all got together for a party .", "storylet_id": "240165"}], [{"original_text": "Of course, Jack and Diane made out most of the night.", "album_id": "678460", "photo_flickr_id": "30304716", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48033", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "of course , [male] and [female] made out most of the night .", "storylet_id": "240166"}], [{"original_text": "But most of us mingled and partied.", "album_id": "678460", "photo_flickr_id": "30304763", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48033", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but most of us mingled and partied .", "storylet_id": "240167"}], [{"original_text": "And watched Jack and Diane make out.", "album_id": "678460", "photo_flickr_id": "30304783", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48033", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and watched [male] and [female] make out .", "storylet_id": "240168"}], [{"original_text": "Except Steve, who drank the night away.", "album_id": "678460", "photo_flickr_id": "30304752", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48033", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "except [male] , who drank the night away .", "storylet_id": "240169"}], [{"original_text": "They are having fun with their first kiss.", "album_id": "678460", "photo_flickr_id": "30304726", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48034", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they are having fun with their first kiss .", "storylet_id": "240170"}], [{"original_text": "All the teens are enjoying the party.", "album_id": "678460", "photo_flickr_id": "30304682", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48034", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the teens are enjoying the party .", "storylet_id": "240171"}], [{"original_text": "One of the teen poses for a picture.", "album_id": "678460", "photo_flickr_id": "30304661", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48034", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the teen poses for a picture .", "storylet_id": "240172"}], [{"original_text": "the party is a blast. you can see as this young man poses.", "album_id": "678460", "photo_flickr_id": "30304643", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48034", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the party is a blast . you can see as this young man poses .", "storylet_id": "240173"}], [{"original_text": "Smiling as he enjoys the party with his friends.", "album_id": "678460", "photo_flickr_id": "30304638", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48034", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "smiling as he enjoys the party with his friends .", "storylet_id": "240174"}], [{"original_text": "Last night's party was so much fun.", "album_id": "927231", "photo_flickr_id": "39718835", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48035", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night 's party was so much fun .", "storylet_id": "240175"}], [{"original_text": "There were a lot of beers.", "album_id": "927231", "photo_flickr_id": "39718919", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48035", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of beers .", "storylet_id": "240176"}], [{"original_text": "We all had a lot to drink.", "album_id": "927231", "photo_flickr_id": "39718927", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48035", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all had a lot to drink .", "storylet_id": "240177"}], [{"original_text": "Afterward everyone started playing drinking games.", "album_id": "927231", "photo_flickr_id": "39718936", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48035", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward everyone started playing drinking games .", "storylet_id": "240178"}], [{"original_text": "I'm not sure if there was anyone able to drive.", "album_id": "927231", "photo_flickr_id": "39718950", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48035", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm not sure if there was anyone able to drive .", "storylet_id": "240179"}], [{"original_text": "Casie and Shauna went to the mall to find boyfriends.", "album_id": "927231", "photo_flickr_id": "39718822", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48036", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "casie and [female] went to the mall to find boyfriends .", "storylet_id": "240180"}], [{"original_text": "They scoped the area out but had no luck at the mall.", "album_id": "927231", "photo_flickr_id": "39718866", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48036", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they scoped the area out but had no luck at the mall .", "storylet_id": "240181"}], [{"original_text": "They went to the bar next to try their luck!", "album_id": "927231", "photo_flickr_id": "39718950", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48036", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they went to the bar next to try their luck !", "storylet_id": "240182"}], [{"original_text": "Shauna was eyed by a lesbian from across the bar.", "album_id": "927231", "photo_flickr_id": "39719089", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48036", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] was eyed by a lesbian from across the bar .", "storylet_id": "240183"}], [{"original_text": "Shauna now drinks heavily because she cannot find a boyfriend", "album_id": "927231", "photo_flickr_id": "39718962", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48036", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] now drinks heavily because she can not find a boyfriend", "storylet_id": "240184"}], [{"original_text": "Kat and Michelle really know how to put on a party.", "album_id": "927231", "photo_flickr_id": "39718822", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48037", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "kat and [female] really know how to put on a party .", "storylet_id": "240185"}], [{"original_text": "They invited loads of people.", "album_id": "927231", "photo_flickr_id": "39718866", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48037", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they invited loads of people .", "storylet_id": "240186"}], [{"original_text": "There were drinking games.", "album_id": "927231", "photo_flickr_id": "39718950", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48037", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were drinking games .", "storylet_id": "240187"}], [{"original_text": "Even the wallflowers had fun.", "album_id": "927231", "photo_flickr_id": "39719089", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48037", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the wallflowers had fun .", "storylet_id": "240188"}], [{"original_text": "And, some people had a LOT of fun!", "album_id": "927231", "photo_flickr_id": "39718962", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48037", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , some people had a lot of fun !", "storylet_id": "240189"}], [{"original_text": "Two roommates decided to dress up and have a party for Christmas.", "album_id": "927231", "photo_flickr_id": "39718822", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48038", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two roommates decided to dress up and have a party for christmas .", "storylet_id": "240190"}], [{"original_text": "Their friends came and were socializing with each other.", "album_id": "927231", "photo_flickr_id": "39718866", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48038", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their friends came and were socializing with each other .", "storylet_id": "240191"}], [{"original_text": "The guys decided it would be a great idea to set up some cups for beer pong.", "album_id": "927231", "photo_flickr_id": "39718950", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48038", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guys decided it would be a great idea to set up some cups for beer pong .", "storylet_id": "240192"}], [{"original_text": "Everyone appeared to be having a great time.", "album_id": "927231", "photo_flickr_id": "39719089", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48038", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone appeared to be having a great time .", "storylet_id": "240193"}], [{"original_text": "They even broke out the champagne they were saving for new years and decided to share the bottle.", "album_id": "927231", "photo_flickr_id": "39718962", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48038", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even broke out the champagne they were saving for new years and decided to share the bottle .", "storylet_id": "240194"}], [{"original_text": "Everyone is enjoying the party.", "album_id": "927231", "photo_flickr_id": "39718835", "setting": "last-3-pick-old-and-tell", "worker_id": "6V36FZB0FYMZZ7V", "story_id": "48039", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone is enjoying the party .", "storylet_id": "240195"}], [{"original_text": "Everyone has a drink in their hand!", "album_id": "927231", "photo_flickr_id": "39718919", "setting": "last-3-pick-old-and-tell", "worker_id": "6V36FZB0FYMZZ7V", "story_id": "48039", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone has a drink in their hand !", "storylet_id": "240196"}], [{"original_text": "There were a lot of people who showed up to the party.", "album_id": "927231", "photo_flickr_id": "39718927", "setting": "last-3-pick-old-and-tell", "worker_id": "6V36FZB0FYMZZ7V", "story_id": "48039", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of people who showed up to the party .", "storylet_id": "240197"}], [{"original_text": "Everyone comes to get a drink.", "album_id": "927231", "photo_flickr_id": "39718936", "setting": "last-3-pick-old-and-tell", "worker_id": "6V36FZB0FYMZZ7V", "story_id": "48039", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone comes to get a drink .", "storylet_id": "240198"}], [{"original_text": "There were plenty of drinks for everyone.", "album_id": "927231", "photo_flickr_id": "39718950", "setting": "last-3-pick-old-and-tell", "worker_id": "6V36FZB0FYMZZ7V", "story_id": "48039", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were plenty of drinks for everyone .", "storylet_id": "240199"}], [{"original_text": "I love animals and I like coming to the zoo to see my favorite ones.", "album_id": "72157628799634257", "photo_flickr_id": "6669424705", "setting": "first-2-pick-and-tell", "worker_id": "JNQ3KO5O3HTQVRW", "story_id": "48040", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love animals and i like coming to the zoo to see my favorite ones .", "storylet_id": "240200"}], [{"original_text": "I love the monkeys because they're cute and do funny things.", "album_id": "72157628799634257", "photo_flickr_id": "6669434503", "setting": "first-2-pick-and-tell", "worker_id": "JNQ3KO5O3HTQVRW", "story_id": "48040", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love the monkeys because they 're cute and do funny things .", "storylet_id": "240201"}], [{"original_text": "I love the elephants because they breath through their trunk, which I think is pretty strange.", "album_id": "72157628799634257", "photo_flickr_id": "6669440391", "setting": "first-2-pick-and-tell", "worker_id": "JNQ3KO5O3HTQVRW", "story_id": "48040", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i love the elephants because they breath through their trunk , which i think is pretty strange .", "storylet_id": "240202"}], [{"original_text": "I love the zebras because they look a lot like a striped horse.", "album_id": "72157628799634257", "photo_flickr_id": "6669441297", "setting": "first-2-pick-and-tell", "worker_id": "JNQ3KO5O3HTQVRW", "story_id": "48040", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love the zebras because they look a lot like a striped horse .", "storylet_id": "240203"}], [{"original_text": "But the animals I love most are my two best friends that are waiting for me to come home.", "album_id": "72157628799634257", "photo_flickr_id": "6629461767", "setting": "first-2-pick-and-tell", "worker_id": "JNQ3KO5O3HTQVRW", "story_id": "48040", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the animals i love most are my two best friends that are waiting for me to come home .", "storylet_id": "240204"}], [{"original_text": "The family took a train ride to the zoo today.", "album_id": "72157628799634257", "photo_flickr_id": "6629464603", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "48041", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family took a train ride to the zoo today .", "storylet_id": "240205"}], [{"original_text": "The little boy was excited once he got to the zoo.", "album_id": "72157628799634257", "photo_flickr_id": "6669424705", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "48041", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the little boy was excited once he got to the zoo .", "storylet_id": "240206"}], [{"original_text": "They went on the sky lift to see the animals below.", "album_id": "72157628799634257", "photo_flickr_id": "6629466387", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "48041", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they went on the sky lift to see the animals below .", "storylet_id": "240207"}], [{"original_text": "They saw all kinds off elephants below.", "album_id": "72157628799634257", "photo_flickr_id": "6629466167", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "48041", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they saw all kinds off elephants below .", "storylet_id": "240208"}], [{"original_text": "They loved seeing the zebras.", "album_id": "72157628799634257", "photo_flickr_id": "6669441297", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "48041", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they loved seeing the zebras .", "storylet_id": "240209"}], [{"original_text": "The family went our month trip to the zoo.", "album_id": "72157628799634257", "photo_flickr_id": "6629464603", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "48042", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went our month trip to the zoo .", "storylet_id": "240210"}], [{"original_text": "The little ones are always the most excited.", "album_id": "72157628799634257", "photo_flickr_id": "6669424705", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "48042", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the little ones are always the most excited .", "storylet_id": "240211"}], [{"original_text": "The view from the chair ride is always really cool.", "album_id": "72157628799634257", "photo_flickr_id": "6629466387", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "48042", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the view from the chair ride is always really cool .", "storylet_id": "240212"}], [{"original_text": "The whole family loves seeing the elephants.", "album_id": "72157628799634257", "photo_flickr_id": "6629466167", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "48042", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole family loves seeing the elephants .", "storylet_id": "240213"}], [{"original_text": "My favorite animal has always been the zebra,", "album_id": "72157628799634257", "photo_flickr_id": "6669441297", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "48042", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite animal has always been the zebra ,", "storylet_id": "240214"}], [{"original_text": "Today we visited the zoo.", "album_id": "72157628799634257", "photo_flickr_id": "6669424705", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "48043", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we visited the zoo .", "storylet_id": "240215"}], [{"original_text": "It was our first time seeing an animal like this one.", "album_id": "72157628799634257", "photo_flickr_id": "6669434503", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "48043", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was our first time seeing an animal like this one .", "storylet_id": "240216"}], [{"original_text": "The elephants were fun to watch.", "album_id": "72157628799634257", "photo_flickr_id": "6669440391", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "48043", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the elephants were fun to watch .", "storylet_id": "240217"}], [{"original_text": "The zebras were not very active.", "album_id": "72157628799634257", "photo_flickr_id": "6669441297", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "48043", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the zebras were not very active .", "storylet_id": "240218"}], [{"original_text": "When we arrived home the dogs were waiting patiently for us.", "album_id": "72157628799634257", "photo_flickr_id": "6629461767", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "48043", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we arrived home the dogs were waiting patiently for us .", "storylet_id": "240219"}], [{"original_text": "Took my kid out to the zoo. He was mesmerized by all the animals there. ", "album_id": "72157628799634257", "photo_flickr_id": "6669424705", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "48044", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "took my kid out to the zoo . he was mesmerized by all the animals there .", "storylet_id": "240220"}], [{"original_text": "This little guy was adorable! He kept coming to the window at us.", "album_id": "72157628799634257", "photo_flickr_id": "6669434503", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "48044", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this little guy was adorable ! he kept coming to the window at us .", "storylet_id": "240221"}], [{"original_text": "Elephants are such amazing creatures. They're so intelligent.", "album_id": "72157628799634257", "photo_flickr_id": "6669440391", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "48044", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "elephants are such amazing creatures . they 're so intelligent .", "storylet_id": "240222"}], [{"original_text": "They even had zebras there! I've never seen one this close before.", "album_id": "72157628799634257", "photo_flickr_id": "6669441297", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "48044", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even had zebras there ! i 've never seen one this close before .", "storylet_id": "240223"}], [{"original_text": "And we ended the day relaxing with our very own animals at home.", "album_id": "72157628799634257", "photo_flickr_id": "6629461767", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "48044", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and we ended the day relaxing with our very own animals at home .", "storylet_id": "240224"}], [{"original_text": "I visited my sister and her husband this weekend.", "album_id": "72157632439821875", "photo_flickr_id": "8349259523", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48045", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i visited my sister and her husband this weekend .", "storylet_id": "240225"}], [{"original_text": "She doesn't like having her picture taken.", "album_id": "72157632439821875", "photo_flickr_id": "8350328154", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48045", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she does n't like having her picture taken .", "storylet_id": "240226"}], [{"original_text": "We helped set up the Christmas tree.", "album_id": "72157632439821875", "photo_flickr_id": "8350329404", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48045", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we helped set up the christmas tree .", "storylet_id": "240227"}], [{"original_text": "After the Christmas tree was set up we went out for dinner.", "album_id": "72157632439821875", "photo_flickr_id": "8350327656", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48045", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the christmas tree was set up we went out for dinner .", "storylet_id": "240228"}], [{"original_text": "After dinner we went back to their place where she showed us her flaming hula hoop trick.", "album_id": "72157632439821875", "photo_flickr_id": "8349263551", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48045", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after dinner we went back to their place where she showed us her flaming hula hoop trick .", "storylet_id": "240229"}], [{"original_text": "Meeting new people at parties is something we all love to do.", "album_id": "72157632439821875", "photo_flickr_id": "8350332648", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "48046", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "meeting new people at parties is something we all love to do .", "storylet_id": "240230"}], [{"original_text": "People gathered in the kitchen getting drinks and chatting.", "album_id": "72157632439821875", "photo_flickr_id": "8349268393", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "48046", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people gathered in the kitchen getting drinks and chatting .", "storylet_id": "240231"}], [{"original_text": "My mate standing next to the christmas tree lit up with lights.", "album_id": "72157632439821875", "photo_flickr_id": "8349267615", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "48046", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my mate standing next to the christmas tree lit up with lights .", "storylet_id": "240232"}], [{"original_text": "Torches in a row leading to the backyard. ", "album_id": "72157632439821875", "photo_flickr_id": "8350328680", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "48046", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "torches in a row leading to the backyard .", "storylet_id": "240233"}], [{"original_text": "Fire dancers lit their hoops and put on quite a show. ", "album_id": "72157632439821875", "photo_flickr_id": "8349262525", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "48046", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fire dancers lit their hoops and put on quite a show .", "storylet_id": "240234"}], [{"original_text": "Its new years eve and a group of friends are having a party.", "album_id": "72157632439821875", "photo_flickr_id": "8350332648", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48047", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "its new years eve and a group of friends are having a party .", "storylet_id": "240235"}], [{"original_text": "They are mixing all kinds of drinks in the kitchen.", "album_id": "72157632439821875", "photo_flickr_id": "8349268393", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48047", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are mixing all kinds of drinks in the kitchen .", "storylet_id": "240236"}], [{"original_text": "A gentleman poses by the Christmas Tree for a photo.", "album_id": "72157632439821875", "photo_flickr_id": "8349267615", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48047", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a gentleman poses by the christmas tree for a photo .", "storylet_id": "240237"}], [{"original_text": "The group then moves to the backyard where the owners of the home have prepared a special treat.", "album_id": "72157632439821875", "photo_flickr_id": "8350328680", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48047", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the group then moves to the backyard where the owners of the home have prepared a special treat .", "storylet_id": "240238"}], [{"original_text": "There is a performance by a fire dancer right before midnight for everyone to enjoy.", "album_id": "72157632439821875", "photo_flickr_id": "8349262525", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48047", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is a performance by a fire dancer right before midnight for everyone to enjoy .", "storylet_id": "240239"}], [{"original_text": "Harry and Sally's Christmas party was going swell so far. ", "album_id": "72157632439821875", "photo_flickr_id": "8350332648", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48048", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] 's christmas party was going swell so far .", "storylet_id": "240240"}], [{"original_text": "Lots of punk friends and whatnot, it was pretty unorthodox compared to a traditional Christmas party.", "album_id": "72157632439821875", "photo_flickr_id": "8349268393", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48048", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of punk friends and whatnot , it was pretty unorthodox compared to a traditional christmas party .", "storylet_id": "240241"}], [{"original_text": "Harry's brother clearly isn't very good at taking pictures. ", "album_id": "72157632439821875", "photo_flickr_id": "8349267615", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48048", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] 's brother clearly is n't very good at taking pictures .", "storylet_id": "240242"}], [{"original_text": "Instead of just hanging around the tree we went outside for a surprise....", "album_id": "72157632439821875", "photo_flickr_id": "8350328680", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48048", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "instead of just hanging around the tree we went outside for a surprise ... .", "storylet_id": "240243"}], [{"original_text": "FIRE SWINGING PERFORMANCE. It was pretty exciting. ", "album_id": "72157632439821875", "photo_flickr_id": "8349262525", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48048", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fire swinging performance . it was pretty exciting .", "storylet_id": "240244"}], [{"original_text": "Our first Christmas in Australia felt strange. I wasn't used to the summer Christmas weather.", "album_id": "72157632439821875", "photo_flickr_id": "8349259523", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48049", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our first christmas in location felt strange . i was n't used to the summer christmas weather .", "storylet_id": "240245"}], [{"original_text": "My wife Gemma worked hard to make it a special day. She had a surprise for me.", "album_id": "72157632439821875", "photo_flickr_id": "8350328154", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48049", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my wife gemma worked hard to make it a special day . she had a surprise for me .", "storylet_id": "240246"}], [{"original_text": "She had put up a big Christmas tree, a type that didn't grow naturally here!", "album_id": "72157632439821875", "photo_flickr_id": "8350329404", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48049", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she had put up a big christmas tree , a type that did n't grow naturally here !", "storylet_id": "240247"}], [{"original_text": "She also invited over a lot of my American friends to make me feel more at home.", "album_id": "72157632439821875", "photo_flickr_id": "8350327656", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48049", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she also invited over a lot of my american friends to make me feel more at home .", "storylet_id": "240248"}], [{"original_text": "I didn't even mind the part of the party that took place outside in the heat!", "album_id": "72157632439821875", "photo_flickr_id": "8349263551", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48049", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i did n't even mind the part of the party that took place outside in the heat !", "storylet_id": "240249"}], [{"original_text": "The photographer of the series thought quite abstractly.", "album_id": "72157629614500404", "photo_flickr_id": "7148770327", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "48050", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the photographer of the series thought quite abstractly .", "storylet_id": "240250"}], [{"original_text": "She did portraits, but only in black in white.", "album_id": "72157629614500404", "photo_flickr_id": "7002670224", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "48050", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she did portraits , but only in black in white .", "storylet_id": "240251"}], [{"original_text": "Many of her photographs were simply patterns and she rarely offered explanations of why she chose to put these on display.", "album_id": "72157629614500404", "photo_flickr_id": "7148761587", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "48050", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many of her photographs were simply patterns and she rarely offered explanations of why she chose to put these on display .", "storylet_id": "240252"}], [{"original_text": "The people she photographed seemed to have vibrant personalities that brought light to the pictures.", "album_id": "72157629614500404", "photo_flickr_id": "7002671666", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "48050", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people she photographed seemed to have vibrant personalities that brought light to the pictures .", "storylet_id": "240253"}], [{"original_text": "The rare color photograph she took was still quite unusual.", "album_id": "72157629614500404", "photo_flickr_id": "7002677306", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "48050", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the rare color photograph she took was still quite unusual .", "storylet_id": "240254"}], [{"original_text": "A deep square room, the has all the mystery that one could think of. ", "album_id": "72157629614500404", "photo_flickr_id": "7002675114", "setting": "first-2-pick-and-tell", "worker_id": "3V304BAXBSHWMYZ", "story_id": "48051", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a deep square room , the has all the mystery that one could think of .", "storylet_id": "240255"}], [{"original_text": "As we start to walk down the pathway from that room we come upon this odd looking room as well. ", "album_id": "72157629614500404", "photo_flickr_id": "7148761587", "setting": "first-2-pick-and-tell", "worker_id": "3V304BAXBSHWMYZ", "story_id": "48051", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as we start to walk down the pathway from that room we come upon this odd looking room as well .", "storylet_id": "240256"}], [{"original_text": "We turn left and find another mystical room with a door to go to another.", "album_id": "72157629614500404", "photo_flickr_id": "7002675998", "setting": "first-2-pick-and-tell", "worker_id": "3V304BAXBSHWMYZ", "story_id": "48051", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we turn left and find another mystical room with a door to go to another .", "storylet_id": "240257"}], [{"original_text": "As we walk through we come to the open area of an art museum.", "album_id": "72157629614500404", "photo_flickr_id": "7148771071", "setting": "first-2-pick-and-tell", "worker_id": "3V304BAXBSHWMYZ", "story_id": "48051", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as we walk through we come to the open area of an art museum .", "storylet_id": "240258"}], [{"original_text": "We end our mystical trip back outside of the hall of wonders.", "album_id": "72157629614500404", "photo_flickr_id": "7002682260", "setting": "first-2-pick-and-tell", "worker_id": "3V304BAXBSHWMYZ", "story_id": "48051", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we end our mystical trip back outside of the hall of wonders .", "storylet_id": "240259"}], [{"original_text": "I had a dream I was going down a long tunnel with a light at the end.", "album_id": "72157629614500404", "photo_flickr_id": "7002675114", "setting": "last-3-pick-old-and-tell", "worker_id": "CNKST1EBNP3YHXT", "story_id": "48052", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a dream i was going down a long tunnel with a light at the end .", "storylet_id": "240260"}], [{"original_text": "Above were lights. Or were they stars?", "album_id": "72157629614500404", "photo_flickr_id": "7148761587", "setting": "last-3-pick-old-and-tell", "worker_id": "CNKST1EBNP3YHXT", "story_id": "48052", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "above were lights . or were they stars ?", "storylet_id": "240261"}], [{"original_text": "I finally found myself in a bright room.", "album_id": "72157629614500404", "photo_flickr_id": "7002675998", "setting": "last-3-pick-old-and-tell", "worker_id": "CNKST1EBNP3YHXT", "story_id": "48052", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i finally found myself in a bright room .", "storylet_id": "240262"}], [{"original_text": "When things came into focus, I saw strange alien sculptures.", "album_id": "72157629614500404", "photo_flickr_id": "7148771071", "setting": "last-3-pick-old-and-tell", "worker_id": "CNKST1EBNP3YHXT", "story_id": "48052", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when things came into focus , i saw strange alien sculptures .", "storylet_id": "240263"}], [{"original_text": "I ran away from that building as fast as I could!", "album_id": "72157629614500404", "photo_flickr_id": "7002682260", "setting": "last-3-pick-old-and-tell", "worker_id": "CNKST1EBNP3YHXT", "story_id": "48052", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ran away from that building as fast as i could !", "storylet_id": "240264"}], [{"original_text": "Sarah was embarking on a day of accumulating some more of her photographic art.", "album_id": "72157629614500404", "photo_flickr_id": "7148770327", "setting": "last-3-pick-old-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "48053", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was embarking on a day of accumulating some more of her photographic art .", "storylet_id": "240265"}], [{"original_text": "Her first subject was a portrait of a man in a hat. The backgrounds is stark adding to the artistic expression of the photo.", "album_id": "72157629614500404", "photo_flickr_id": "7002670224", "setting": "last-3-pick-old-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "48053", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her first subject was a portrait of a man in a hat . the backgrounds is stark adding to the artistic expression of the photo .", "storylet_id": "240266"}], [{"original_text": "Next, Sarah took a photo of still art. She appreciated the pattern seemingly extending forever.", "album_id": "72157629614500404", "photo_flickr_id": "7148761587", "setting": "last-3-pick-old-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "48053", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next , [female] took a photo of still art . she appreciated the pattern seemingly extending forever .", "storylet_id": "240267"}], [{"original_text": "Back to a live subject, she selected a female with a sense of motion in the photo.", "album_id": "72157629614500404", "photo_flickr_id": "7002671666", "setting": "last-3-pick-old-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "48053", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "back to a live subject , she selected a female with a sense of motion in the photo .", "storylet_id": "240268"}], [{"original_text": "The last item was another still art with a pattern that fascinated Sarah. She was comfortable with the mix of portraits and still art she created.", "album_id": "72157629614500404", "photo_flickr_id": "7002677306", "setting": "last-3-pick-old-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "48053", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last item was another still art with a pattern that fascinated [female] . she was comfortable with the mix of portraits and still art she created .", "storylet_id": "240269"}], [{"original_text": "Jessica started working on her new trailer for the big video premiere.", "album_id": "72157629614500404", "photo_flickr_id": "7148770327", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "48054", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] started working on her new trailer for the big video premiere .", "storylet_id": "240270"}], [{"original_text": "She had lots of great footage of the main character, Rob.", "album_id": "72157629614500404", "photo_flickr_id": "7002670224", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "48054", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had lots of great footage of the main character , rob .", "storylet_id": "240271"}], [{"original_text": "She mixed that footage with some artsy scenes of the room that most of the story took place.", "album_id": "72157629614500404", "photo_flickr_id": "7148761587", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "48054", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she mixed that footage with some artsy scenes of the room that most of the story took place .", "storylet_id": "240272"}], [{"original_text": "Lena, the other main girl, also made an appearance.", "album_id": "72157629614500404", "photo_flickr_id": "7002671666", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "48054", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] , the other main girl , also made an appearance .", "storylet_id": "240273"}], [{"original_text": "When the trailer was done, Jessica printed some stills of the frames and took them to the local art gallery.", "album_id": "72157629614500404", "photo_flickr_id": "7002677306", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "48054", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the trailer was done , [female] printed some stills of the frames and took them to the local art gallery .", "storylet_id": "240274"}], [{"original_text": "Me and a few coworkers decided to go out for happy hour.", "album_id": "100423", "photo_flickr_id": "4257842", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "48055", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and a few coworkers decided to go out for happy hour .", "storylet_id": "240275"}], [{"original_text": "My assistant was thrilled because she was tired from working so much and needed some relaxation.", "album_id": "100423", "photo_flickr_id": "4257686", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "48055", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my assistant was thrilled because she was tired from working so much and needed some relaxation .", "storylet_id": "240276"}], [{"original_text": "To my fellow coworkers couldn't wait to sit at the bar and have drinks.", "album_id": "100423", "photo_flickr_id": "4257763", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "48055", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "to my fellow coworkers could n't wait to sit at the bar and have drinks .", "storylet_id": "240277"}], [{"original_text": "My two bosses were really enjoying themselves.", "album_id": "100423", "photo_flickr_id": "4257909", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "48055", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my two bosses were really enjoying themselves .", "storylet_id": "240278"}], [{"original_text": "It started getting late and we realized we didn't even have dinner yet.", "album_id": "100423", "photo_flickr_id": "4258527", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "48055", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it started getting late and we realized we did n't even have dinner yet .", "storylet_id": "240279"}], [{"original_text": "While eating lunch and waiting was in conversation with a friend of mine.", "album_id": "100423", "photo_flickr_id": "4257686", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "48056", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while eating lunch and waiting was in conversation with a friend of mine .", "storylet_id": "240280"}], [{"original_text": "A storm started to roll in as we were finishing our meal. ", "album_id": "100423", "photo_flickr_id": "4257842", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "48056", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a storm started to roll in as we were finishing our meal .", "storylet_id": "240281"}], [{"original_text": "A shot of the skyline as it started to cloud over.", "album_id": "100423", "photo_flickr_id": "3479460", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "48056", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a shot of the skyline as it started to cloud over .", "storylet_id": "240282"}], [{"original_text": "The ships started to pull in as the sun started to set. ", "album_id": "100423", "photo_flickr_id": "4258527", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "48056", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ships started to pull in as the sun started to set .", "storylet_id": "240283"}], [{"original_text": "A Ferris wheel stretching up towards the sky so tall. ", "album_id": "100423", "photo_flickr_id": "4258823", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "48056", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a ferris wheel stretching up towards the sky so tall .", "storylet_id": "240284"}], [{"original_text": "The party we went to was a lot of fun.", "album_id": "100423", "photo_flickr_id": "4257842", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48057", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party we went to was a lot of fun .", "storylet_id": "240285"}], [{"original_text": "It was rainy outside but we were very dry inside.", "album_id": "100423", "photo_flickr_id": "4257686", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48057", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was rainy outside but we were very dry inside .", "storylet_id": "240286"}], [{"original_text": "I met a lot of new and interesting people there.", "album_id": "100423", "photo_flickr_id": "4257763", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48057", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i met a lot of new and interesting people there .", "storylet_id": "240287"}], [{"original_text": "Afterward we got together to exchange contact information.", "album_id": "100423", "photo_flickr_id": "4257909", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48057", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we got together to exchange contact information .", "storylet_id": "240288"}], [{"original_text": "Once night started to fall people started leaving.", "album_id": "100423", "photo_flickr_id": "4258527", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48057", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once night started to fall people started leaving .", "storylet_id": "240289"}], [{"original_text": "A nice business meeting was set up on a cold October day.", "album_id": "100423", "photo_flickr_id": "4257842", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48058", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a nice business meeting was set up on a cold october day .", "storylet_id": "240290"}], [{"original_text": "Lilly an intern for one of the leading companies was having a drink with a few associates to hand in some paperwork.", "album_id": "100423", "photo_flickr_id": "4257686", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48058", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] an intern for one of the leading companies was having a drink with a few associates to hand in some paperwork .", "storylet_id": "240291"}], [{"original_text": "During her dinner a few old friends approached her and asked if they could join.", "album_id": "100423", "photo_flickr_id": "4257763", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48058", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "during her dinner a few old friends approached her and asked if they could join .", "storylet_id": "240292"}], [{"original_text": "The two associates loved making new friends and welcomed the females.", "album_id": "100423", "photo_flickr_id": "4257909", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48058", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the two associates loved making new friends and welcomed the females .", "storylet_id": "240293"}], [{"original_text": "They had a nice dinner and ended the night with a boat ride.", "album_id": "100423", "photo_flickr_id": "4258527", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48058", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had a nice dinner and ended the night with a boat ride .", "storylet_id": "240294"}], [{"original_text": "Me and my lover went on a vacation to see some sights. Here we are getting something to eat. ", "album_id": "100423", "photo_flickr_id": "4257686", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48059", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and my lover went on a vacation to see some sights . here we are getting something to eat .", "storylet_id": "240295"}], [{"original_text": "We liked the food but the place was rather crowded for our tastes.", "album_id": "100423", "photo_flickr_id": "4257842", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48059", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we liked the food but the place was rather crowded for our tastes .", "storylet_id": "240296"}], [{"original_text": "Here is a view of the city from our hotel. It was so lovely to look out every night as the sun went down.", "album_id": "100423", "photo_flickr_id": "3479460", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48059", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is a view of the city from our hotel . it was so lovely to look out every night as the sun went down .", "storylet_id": "240297"}], [{"original_text": "another shot from high up. it was breath taking to watch the city light up as the sun went down.", "album_id": "100423", "photo_flickr_id": "4258527", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48059", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another shot from high up . it was breath taking to watch the city light up as the sun went down .", "storylet_id": "240298"}], [{"original_text": "we where in line for a ferris wheel. I thought that this would make a good pic, and i think it came out well.", "album_id": "100423", "photo_flickr_id": "4258823", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48059", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we where in line for a ferris wheel . i thought that this would make a good pic , and i think it came out well .", "storylet_id": "240299"}], [{"original_text": "We had been working hard all week to finish building our space ball.", "album_id": "72157639090930144", "photo_flickr_id": "11590523983", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48060", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had been working hard all week to finish building our space ball .", "storylet_id": "240300"}], [{"original_text": "We had to wait forever to get all of the panels assembled.", "album_id": "72157639090930144", "photo_flickr_id": "11591111666", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48060", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to wait forever to get all of the panels assembled .", "storylet_id": "240301"}], [{"original_text": "We had to climb all over the structure.", "album_id": "72157639090930144", "photo_flickr_id": "11590760395", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48060", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had to climb all over the structure .", "storylet_id": "240302"}], [{"original_text": "It was really difficult to fasten them all in place.", "album_id": "72157639090930144", "photo_flickr_id": "11590625934", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48060", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was really difficult to fasten them all in place .", "storylet_id": "240303"}], [{"original_text": "After a long time we finally finished it.", "album_id": "72157639090930144", "photo_flickr_id": "11590622884", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48060", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long time we finally finished it .", "storylet_id": "240304"}], [{"original_text": "Tony started to make aluminum sculptures.", "album_id": "72157639090930144", "photo_flickr_id": "11590525183", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48061", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] started to make aluminum sculptures .", "storylet_id": "240305"}], [{"original_text": "Once he started he could not stop, he mad huge creations.", "album_id": "72157639090930144", "photo_flickr_id": "11590516603", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48061", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once he started he could not stop , he mad huge creations .", "storylet_id": "240306"}], [{"original_text": "He made a triforce but took it a step further.", "album_id": "72157639090930144", "photo_flickr_id": "11591103646", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48061", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he made a triforce but took it a step further .", "storylet_id": "240307"}], [{"original_text": "Now it's a giant aluminum ball!", "album_id": "72157639090930144", "photo_flickr_id": "11590760395", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48061", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now it 's a giant aluminum ball !", "storylet_id": "240308"}], [{"original_text": "To this day it stands in Central park!", "album_id": "72157639090930144", "photo_flickr_id": "11590291765", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48061", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to this day it stands in central park !", "storylet_id": "240309"}], [{"original_text": "Here we viewed the making of a giant glass decorative ball. ", "album_id": "72157639090930144", "photo_flickr_id": "11590525183", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48062", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we viewed the making of a giant glass decorative ball .", "storylet_id": "240310"}], [{"original_text": "Each small triangle piece was carefully put into place. ", "album_id": "72157639090930144", "photo_flickr_id": "11590516603", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48062", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each small triangle piece was carefully put into place .", "storylet_id": "240311"}], [{"original_text": "The individual triangles made larger triangles which would then be put together as a large ball-like ornament. ", "album_id": "72157639090930144", "photo_flickr_id": "11591103646", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48062", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the individual triangles made larger triangles which would then be put together as a large ball-like ornament .", "storylet_id": "240312"}], [{"original_text": "It was high anxiety waiting for that last piece to be put into place.", "album_id": "72157639090930144", "photo_flickr_id": "11590760395", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48062", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was high anxiety waiting for that last piece to be put into place .", "storylet_id": "240313"}], [{"original_text": "The final outcome was amazing; so decorative and elegant looking. ", "album_id": "72157639090930144", "photo_flickr_id": "11590291765", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48062", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the final outcome was amazing ; so decorative and elegant looking .", "storylet_id": "240314"}], [{"original_text": "Creating a geodesic dome out of glass is a painstaking process.", "album_id": "72157639090930144", "photo_flickr_id": "11590525183", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48063", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "creating a geodesic dome out of glass is a painstaking process .", "storylet_id": "240315"}], [{"original_text": "The tiny triangles all have to be fitted together precisely.", "album_id": "72157639090930144", "photo_flickr_id": "11590516603", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48063", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tiny triangles all have to be fitted together precisely .", "storylet_id": "240316"}], [{"original_text": "These, then, form larger triangles", "album_id": "72157639090930144", "photo_flickr_id": "11591103646", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48063", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these , then , form larger triangles", "storylet_id": "240317"}], [{"original_text": "which are then fitted together to make the dome.", "album_id": "72157639090930144", "photo_flickr_id": "11590760395", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48063", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "which are then fitted together to make the dome .", "storylet_id": "240318"}], [{"original_text": "In the end, all that's left is to take a picture of this unique structure.", "album_id": "72157639090930144", "photo_flickr_id": "11590291765", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48063", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , all that 's left is to take a picture of this unique structure .", "storylet_id": "240319"}], [{"original_text": "There is a mission to build something unique. A piece of art that really stands out.", "album_id": "72157639090930144", "photo_flickr_id": "11590523983", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48064", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is a mission to build something unique . a piece of art that really stands out .", "storylet_id": "240320"}], [{"original_text": "Although it has taken time and piece by piece it seems to get harder, it still gets done.", "album_id": "72157639090930144", "photo_flickr_id": "11591111666", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48064", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "although it has taken time and piece by piece it seems to get harder , it still gets done .", "storylet_id": "240321"}], [{"original_text": "The men hold together a triangle base for each piece.", "album_id": "72157639090930144", "photo_flickr_id": "11590760395", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48064", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the men hold together a triangle base for each piece .", "storylet_id": "240322"}], [{"original_text": "Careful to not drop the art, the men focus hard on the outcome.", "album_id": "72157639090930144", "photo_flickr_id": "11590625934", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48064", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "careful to not drop the art , the men focus hard on the outcome .", "storylet_id": "240323"}], [{"original_text": "In conclusion the art piece stands tall and beautiful, proving that hard work goes a long way.", "album_id": "72157639090930144", "photo_flickr_id": "11590622884", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48064", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in conclusion the art piece stands tall and beautiful , proving that hard work goes a long way .", "storylet_id": "240324"}], [{"original_text": "As I was waiting for my brother to have dinner with me I had me a cappuccino and was reading my favorite book.", "album_id": "72157641674917713", "photo_flickr_id": "12843468144", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "48065", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as i was waiting for my brother to have dinner with me i had me a cappuccino and was reading my favorite book .", "storylet_id": "240325"}], [{"original_text": " I kept waiting at the bar for my brother he took a long time.", "album_id": "72157641674917713", "photo_flickr_id": "12843042835", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "48065", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i kept waiting at the bar for my brother he took a long time .", "storylet_id": "240326"}], [{"original_text": "My brother finally came and we got seated.", "album_id": "72157641674917713", "photo_flickr_id": "12844395593", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "48065", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brother finally came and we got seated .", "storylet_id": "240327"}], [{"original_text": " For dinner I ordered some kind of meatball soup.", "album_id": "72157641674917713", "photo_flickr_id": "12844723404", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "48065", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "for dinner i ordered some kind of meatball soup .", "storylet_id": "240328"}], [{"original_text": "My brother decided just to have some kind of egg cold beef sandwich.", "album_id": "72157641674917713", "photo_flickr_id": "12844706914", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "48065", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my brother decided just to have some kind of egg cold beef sandwich .", "storylet_id": "240329"}], [{"original_text": "We had all gone out for lunch yesterday.", "album_id": "72157641674917713", "photo_flickr_id": "12844386723", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48066", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had all gone out for lunch yesterday .", "storylet_id": "240330"}], [{"original_text": "After we finished eating we decided to walk around for a little bit.", "album_id": "72157641674917713", "photo_flickr_id": "12844384423", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48066", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after we finished eating we decided to walk around for a little bit .", "storylet_id": "240331"}], [{"original_text": "There were a lot of interesting shops that we passed by.", "album_id": "72157641674917713", "photo_flickr_id": "12844305455", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48066", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of interesting shops that we passed by .", "storylet_id": "240332"}], [{"original_text": "Afterward we decided to grab some dinner at another restaurant.", "album_id": "72157641674917713", "photo_flickr_id": "12844380223", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48066", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we decided to grab some dinner at another restaurant .", "storylet_id": "240333"}], [{"original_text": "They had some strange food there.", "album_id": "72157641674917713", "photo_flickr_id": "12844709524", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48066", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had some strange food there .", "storylet_id": "240334"}], [{"original_text": "Trying a new restaurant is always scary, but I was determined to write a review for my blog, so I sat down at a table with a magazine and ordered a cappuccino.", "album_id": "72157641674917713", "photo_flickr_id": "12843468144", "setting": "last-3-pick-old-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "48067", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "trying a new restaurant is always scary , but i was determined to write a review for my blog , so i sat down at a table with a magazine and ordered a cappuccino .", "storylet_id": "240335"}], [{"original_text": "The bar was fully stocked and had several beers on tap.", "album_id": "72157641674917713", "photo_flickr_id": "12843042835", "setting": "last-3-pick-old-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "48067", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bar was fully stocked and had several beers on tap .", "storylet_id": "240336"}], [{"original_text": "The ambiance was understated, and created an air of intimacy in the small space.", "album_id": "72157641674917713", "photo_flickr_id": "12844395593", "setting": "last-3-pick-old-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "48067", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ambiance was understated , and created an air of intimacy in the small space .", "storylet_id": "240337"}], [{"original_text": "The menu was expansive, some of the foods, like this dish drawing upon Asian influences.", "album_id": "72157641674917713", "photo_flickr_id": "12844723404", "setting": "last-3-pick-old-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "48067", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the menu was expansive , some of the foods , like this dish drawing upon asian influences .", "storylet_id": "240338"}], [{"original_text": "Other dishes had a decidedly Mediterranean flair.", "album_id": "72157641674917713", "photo_flickr_id": "12844706914", "setting": "last-3-pick-old-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "48067", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "other dishes had a decidedly mediterranean flair .", "storylet_id": "240339"}], [{"original_text": "Dining out in a foreign country is always an experience. They put salt in our hot chocolate, and when we asked why, they handed us a book about salt.", "album_id": "72157641674917713", "photo_flickr_id": "12843468144", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48068", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dining out in a foreign country is always an experience . they put salt in our hot chocolate , and when we asked why , they handed us a book about salt .", "storylet_id": "240340"}], [{"original_text": "The pubs have a million different beers, and they are all warm.", "album_id": "72157641674917713", "photo_flickr_id": "12843042835", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48068", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pubs have a million different beers , and they are all warm .", "storylet_id": "240341"}], [{"original_text": "Sometimes the dining areas have an interesting ambience...like this place where we ate in a hallway.", "album_id": "72157641674917713", "photo_flickr_id": "12844395593", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48068", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sometimes the dining areas have an interesting ambience ... like this place where we ate in a hallway .", "storylet_id": "240342"}], [{"original_text": "This soup I tried was pretty good though I'm not sure what was in it.", "album_id": "72157641674917713", "photo_flickr_id": "12844723404", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48068", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this soup i tried was pretty good though i 'm not sure what was in it .", "storylet_id": "240343"}], [{"original_text": "But, I wasn't a fan of hard-boiled eggs on my sandwich.", "album_id": "72157641674917713", "photo_flickr_id": "12844706914", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48068", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but , i was n't a fan of hard-boiled eggs on my sandwich .", "storylet_id": "240344"}], [{"original_text": "Today, our friends gathered together for some food after work.", "album_id": "72157641674917713", "photo_flickr_id": "12843468144", "setting": "last-3-pick-old-and-tell", "worker_id": "18P4Y9XZ220KAOZ", "story_id": "48069", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , our friends gathered together for some food after work .", "storylet_id": "240345"}], [{"original_text": "We arrived somewhat early, so things weren't too packed yet.", "album_id": "72157641674917713", "photo_flickr_id": "12843042835", "setting": "last-3-pick-old-and-tell", "worker_id": "18P4Y9XZ220KAOZ", "story_id": "48069", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we arrived somewhat early , so things were n't too packed yet .", "storylet_id": "240346"}], [{"original_text": "However, that quickly changed, and things became quite busy! ", "album_id": "72157641674917713", "photo_flickr_id": "12844395593", "setting": "last-3-pick-old-and-tell", "worker_id": "18P4Y9XZ220KAOZ", "story_id": "48069", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however , that quickly changed , and things became quite busy !", "storylet_id": "240347"}], [{"original_text": "The food provided was amazingly delicious.", "album_id": "72157641674917713", "photo_flickr_id": "12844723404", "setting": "last-3-pick-old-and-tell", "worker_id": "18P4Y9XZ220KAOZ", "story_id": "48069", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food provided was amazingly delicious .", "storylet_id": "240348"}], [{"original_text": "Subs and other sandwiches were also available on the menu.", "album_id": "72157641674917713", "photo_flickr_id": "12844706914", "setting": "last-3-pick-old-and-tell", "worker_id": "18P4Y9XZ220KAOZ", "story_id": "48069", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "subs and other sandwiches were also available on the menu .", "storylet_id": "240349"}], [{"original_text": "New York City is bustling during the day.", "album_id": "842625", "photo_flickr_id": "38220315", "setting": "first-2-pick-and-tell", "worker_id": "XCUTOZYCWIP8EQ2", "story_id": "48070", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location location location is bustling during the day .", "storylet_id": "240350"}], [{"original_text": "As nighttime draws near on New Years Eve in NYC the bustling and energy rise to an all time high.", "album_id": "842625", "photo_flickr_id": "38220295", "setting": "first-2-pick-and-tell", "worker_id": "XCUTOZYCWIP8EQ2", "story_id": "48070", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as nighttime draws near on new years eve in nyc the bustling and energy rise to an all time high .", "storylet_id": "240351"}], [{"original_text": "Traffic and people make their way to Times Square.", "album_id": "842625", "photo_flickr_id": "38220331", "setting": "first-2-pick-and-tell", "worker_id": "XCUTOZYCWIP8EQ2", "story_id": "48070", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "traffic and people make their way to location location .", "storylet_id": "240352"}], [{"original_text": "People from all over the country and world come to Times Square to watch the New Years Eve countdown.", "album_id": "842625", "photo_flickr_id": "38219730", "setting": "first-2-pick-and-tell", "worker_id": "XCUTOZYCWIP8EQ2", "story_id": "48070", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people from all over the country and world come to organization organization to watch the new years eve countdown .", "storylet_id": "240353"}], [{"original_text": "The scream \"Five, Four, Three, Two, One...Happy New Year!\" ", "album_id": "842625", "photo_flickr_id": "38219748", "setting": "first-2-pick-and-tell", "worker_id": "XCUTOZYCWIP8EQ2", "story_id": "48070", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the scream `` five , four , three , two , one ... happy new year ! ''", "storylet_id": "240354"}], [{"original_text": "Today we decided to go to the city.", "album_id": "842625", "photo_flickr_id": "38220295", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48071", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we decided to go to the city .", "storylet_id": "240355"}], [{"original_text": "We found some very large buildings that we hadn't seen before.", "album_id": "842625", "photo_flickr_id": "38220276", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48071", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we found some very large buildings that we had n't seen before .", "storylet_id": "240356"}], [{"original_text": "The night sky was beautiful when the sun went down.", "album_id": "842625", "photo_flickr_id": "38220331", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48071", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the night sky was beautiful when the sun went down .", "storylet_id": "240357"}], [{"original_text": "There were a lot of cool decorations that lit up at night!", "album_id": "842625", "photo_flickr_id": "38220341", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48071", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of cool decorations that lit up at night !", "storylet_id": "240358"}], [{"original_text": "I want to come back to the city tomorrow, but now I must sleep.", "album_id": "842625", "photo_flickr_id": "38219748", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48071", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i want to come back to the city tomorrow , but now i must sleep .", "storylet_id": "240359"}], [{"original_text": "I love to see famous buildings, although I usually can't remember all the names. But I can always name the Empire State Building.", "album_id": "842625", "photo_flickr_id": "38220315", "setting": "last-3-pick-old-and-tell", "worker_id": "MWBSJ0BTPQ4SRAL", "story_id": "48072", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love to see famous buildings , although i usually ca n't remember all the names . but i can always name the location location location .", "storylet_id": "240360"}], [{"original_text": "I saw a building like this in San Francisco. I'm not sure if this is it or not, but it might be. ", "album_id": "842625", "photo_flickr_id": "38220295", "setting": "last-3-pick-old-and-tell", "worker_id": "MWBSJ0BTPQ4SRAL", "story_id": "48072", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw a building like this in location location . i 'm not sure if this is it or not , but it might be .", "storylet_id": "240361"}], [{"original_text": "I know I have never visited this city because the skyscraper is not familiar to me. It is lit with red and green lights. Maybe it's Christmas.", "album_id": "842625", "photo_flickr_id": "38220331", "setting": "last-3-pick-old-and-tell", "worker_id": "MWBSJ0BTPQ4SRAL", "story_id": "48072", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i know i have never visited this city because the skyscraper is not familiar to me . it is lit with red and green lights . maybe it 's christmas .", "storylet_id": "240362"}], [{"original_text": "I'm not sure where this is either but I believe it is New Year's Eve. Looks like a brand new year.", "album_id": "842625", "photo_flickr_id": "38219730", "setting": "last-3-pick-old-and-tell", "worker_id": "MWBSJ0BTPQ4SRAL", "story_id": "48072", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'm not sure where this is either but i believe it is new year 's eve . looks like a brand new year .", "storylet_id": "240363"}], [{"original_text": "Happy New Year! Welcome 2007!", "album_id": "842625", "photo_flickr_id": "38219748", "setting": "last-3-pick-old-and-tell", "worker_id": "MWBSJ0BTPQ4SRAL", "story_id": "48072", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "happy new year ! welcome 2007 !", "storylet_id": "240364"}], [{"original_text": "Taking a tour of famous buildings in the city. I remembered this one from a TV show.", "album_id": "842625", "photo_flickr_id": "38220295", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48073", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "taking a tour of famous buildings in the city . i remembered this one from a tv show .", "storylet_id": "240365"}], [{"original_text": "The dome on this one was marvelous.", "album_id": "842625", "photo_flickr_id": "38220276", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48073", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dome on this one was marvelous .", "storylet_id": "240366"}], [{"original_text": "We couldn't stop to go in any more since it was night, but we got to see the Empire State Building from a distance,", "album_id": "842625", "photo_flickr_id": "38220331", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48073", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we could n't stop to go in any more since it was night , but we got to see the empire state building from a distance ,", "storylet_id": "240367"}], [{"original_text": "and the courthouse all lit up with the American Flag.", "album_id": "842625", "photo_flickr_id": "38220341", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48073", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the courthouse all lit up with the american flag .", "storylet_id": "240368"}], [{"original_text": "Unfortunately, the last stop on our tour took us past this ugly paragon of advertisement.", "album_id": "842625", "photo_flickr_id": "38219748", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48073", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "unfortunately , the last stop on our tour took us past this ugly paragon of advertisement .", "storylet_id": "240369"}], [{"original_text": "New York, New York baby!", "album_id": "842625", "photo_flickr_id": "38220295", "setting": "last-3-pick-old-and-tell", "worker_id": "IHR73VCWEJ0NK9L", "story_id": "48074", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location location , location location baby !", "storylet_id": "240370"}], [{"original_text": "Inside some cool ass building!", "album_id": "842625", "photo_flickr_id": "38220276", "setting": "last-3-pick-old-and-tell", "worker_id": "IHR73VCWEJ0NK9L", "story_id": "48074", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside some cool ass building !", "storylet_id": "240371"}], [{"original_text": "Time Square at dusk", "album_id": "842625", "photo_flickr_id": "38220331", "setting": "last-3-pick-old-and-tell", "worker_id": "IHR73VCWEJ0NK9L", "story_id": "48074", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "organization organization at dusk", "storylet_id": "240372"}], [{"original_text": "Night time x-mas, only New York style.", "album_id": "842625", "photo_flickr_id": "38220341", "setting": "last-3-pick-old-and-tell", "worker_id": "IHR73VCWEJ0NK9L", "story_id": "48074", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "night time x-mas , only location location style .", "storylet_id": "240373"}], [{"original_text": "HAppY NEW YORK YEAR", "album_id": "842625", "photo_flickr_id": "38219748", "setting": "last-3-pick-old-and-tell", "worker_id": "IHR73VCWEJ0NK9L", "story_id": "48074", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "happy new york year", "storylet_id": "240374"}], [{"original_text": "The venue was very comfortable. ", "album_id": "1716566", "photo_flickr_id": "80128120", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48075", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the venue was very comfortable .", "storylet_id": "240375"}], [{"original_text": "Some of my friends played the dancing game.", "album_id": "1716566", "photo_flickr_id": "80128836", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48075", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of my friends played the dancing game .", "storylet_id": "240376"}], [{"original_text": "They played for about an hour.", "album_id": "1716566", "photo_flickr_id": "80129193", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48075", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they played for about an hour .", "storylet_id": "240377"}], [{"original_text": "My coworkers talked over drinks.", "album_id": "1716566", "photo_flickr_id": "80130287", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48075", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my coworkers talked over drinks .", "storylet_id": "240378"}], [{"original_text": "The ride back was enlightening. ", "album_id": "1716566", "photo_flickr_id": "80130498", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48075", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ride back was enlightening .", "storylet_id": "240379"}], [{"original_text": "In our vacation to New York city we got on a subway for the first time.", "album_id": "1716566", "photo_flickr_id": "80131749", "setting": "first-2-pick-and-tell", "worker_id": "4PXKMZX47G3QTJC", "story_id": "48076", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in our vacation to location location city we got on a subway for the first time .", "storylet_id": "240380"}], [{"original_text": "It was so crowded people were pushing and shoving.", "album_id": "1716566", "photo_flickr_id": "80131567", "setting": "first-2-pick-and-tell", "worker_id": "4PXKMZX47G3QTJC", "story_id": "48076", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was so crowded people were pushing and shoving .", "storylet_id": "240381"}], [{"original_text": "We couldn't find a place to sit so we had to stand and we held on to the poles.", "album_id": "1716566", "photo_flickr_id": "80131400", "setting": "first-2-pick-and-tell", "worker_id": "4PXKMZX47G3QTJC", "story_id": "48076", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we could n't find a place to sit so we had to stand and we held on to the poles .", "storylet_id": "240382"}], [{"original_text": "As soon as some people got up to get off at the next stop I sat by a girl who had huge pink and blue sunglasses. ", "album_id": "1716566", "photo_flickr_id": "80130859", "setting": "first-2-pick-and-tell", "worker_id": "4PXKMZX47G3QTJC", "story_id": "48076", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as soon as some people got up to get off at the next stop i sat by a girl who had huge pink and blue sunglasses .", "storylet_id": "240383"}], [{"original_text": "I gave Carlos a look from the corner of my eye and we laughed.", "album_id": "1716566", "photo_flickr_id": "80131030", "setting": "first-2-pick-and-tell", "worker_id": "4PXKMZX47G3QTJC", "story_id": "48076", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i gave [male] a look from the corner of my eye and we laughed .", "storylet_id": "240384"}], [{"original_text": "I tried to get on the train as fast as I could.", "album_id": "1716566", "photo_flickr_id": "80131749", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48077", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i tried to get on the train as fast as i could .", "storylet_id": "240385"}], [{"original_text": "There were too many people inside.", "album_id": "1716566", "photo_flickr_id": "80131567", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48077", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were too many people inside .", "storylet_id": "240386"}], [{"original_text": "I eventually made it in but it was very crowded.", "album_id": "1716566", "photo_flickr_id": "80131400", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48077", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i eventually made it in but it was very crowded .", "storylet_id": "240387"}], [{"original_text": "I couldn't believe how many people were on the train.", "album_id": "1716566", "photo_flickr_id": "80130859", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48077", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i could n't believe how many people were on the train .", "storylet_id": "240388"}], [{"original_text": "It took a long time but we eventually made it off.", "album_id": "1716566", "photo_flickr_id": "80131030", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48077", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it took a long time but we eventually made it off .", "storylet_id": "240389"}], [{"original_text": "The subway is an economical way to get from point A to point B. ", "album_id": "1716566", "photo_flickr_id": "80131749", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48078", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the subway is an economical way to get from point a to point b .", "storylet_id": "240390"}], [{"original_text": "A lot of young people prefer the subway. ", "album_id": "1716566", "photo_flickr_id": "80131567", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48078", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of young people prefer the subway .", "storylet_id": "240391"}], [{"original_text": "Sometimes it's standing room only.", "album_id": "1716566", "photo_flickr_id": "80131400", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48078", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sometimes it 's standing room only .", "storylet_id": "240392"}], [{"original_text": "You might see someone you know. ", "album_id": "1716566", "photo_flickr_id": "80130859", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48078", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you might see someone you know .", "storylet_id": "240393"}], [{"original_text": "A neighbor or close friend could be right by you on the subway. ", "album_id": "1716566", "photo_flickr_id": "80131030", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48078", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a neighbor or close friend could be right by you on the subway .", "storylet_id": "240394"}], [{"original_text": "Drake had a plan the day of the celebration.", "album_id": "1716566", "photo_flickr_id": "80128120", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48079", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] had a plan the day of the celebration .", "storylet_id": "240395"}], [{"original_text": "He set up Dance Dance Revolution for his friend.", "album_id": "1716566", "photo_flickr_id": "80128836", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48079", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he set up dance dance revolution for his friend .", "storylet_id": "240396"}], [{"original_text": "His friend danced with his younger sister for a while.", "album_id": "1716566", "photo_flickr_id": "80129193", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48079", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his friend danced with his younger sister for a while .", "storylet_id": "240397"}], [{"original_text": "Tricia was there because her and Drake were friends since second grade.", "album_id": "1716566", "photo_flickr_id": "80130287", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48079", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] was there because her and [male] were friends since second grade .", "storylet_id": "240398"}], [{"original_text": "Rachel was on the bus on the way to Drake's house.", "album_id": "1716566", "photo_flickr_id": "80130498", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48079", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] was on the bus on the way to [male] 's house .", "storylet_id": "240399"}], [{"original_text": "We decided to let the little man invite all of his friends over for a party.", "album_id": "1715903", "photo_flickr_id": "80260314", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "48080", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to let the little man invite all of his friends over for a party .", "storylet_id": "240400"}], [{"original_text": "This is his best friend Andy, who had a few to many drinks that night.", "album_id": "1715903", "photo_flickr_id": "80352603", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "48080", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is his best friend [male] , who had a few to many drinks that night .", "storylet_id": "240401"}], [{"original_text": "There was a bunch of lasagna for the party and everyone had seconds.", "album_id": "1715903", "photo_flickr_id": "80263513", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "48080", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a bunch of lasagna for the party and everyone had seconds .", "storylet_id": "240402"}], [{"original_text": "Little man was scooped up by his woman as soon as she entered the door. ", "album_id": "1715903", "photo_flickr_id": "80504383", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "48080", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "little man was scooped up by his woman as soon as she entered the door .", "storylet_id": "240403"}], [{"original_text": "We finished off the party with a bunch of fondue.", "album_id": "1715903", "photo_flickr_id": "80266416", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "48080", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finished off the party with a bunch of fondue .", "storylet_id": "240404"}], [{"original_text": "Baby Noah came home after two weeks in the hospital we were so happy he was all better.", "album_id": "1715903", "photo_flickr_id": "80266934", "setting": "first-2-pick-and-tell", "worker_id": "4PXKMZX47G3QTJC", "story_id": "48081", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] [male] came home after two weeks in the hospital we were so happy he was all better .", "storylet_id": "240405"}], [{"original_text": "We were so excited we decided to throw a welcome home party for him.", "album_id": "1715903", "photo_flickr_id": "80263513", "setting": "first-2-pick-and-tell", "worker_id": "4PXKMZX47G3QTJC", "story_id": "48081", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were so excited we decided to throw a welcome home party for him .", "storylet_id": "240406"}], [{"original_text": "Aunt Cathy sang to Noah.", "album_id": "1715903", "photo_flickr_id": "80260314", "setting": "first-2-pick-and-tell", "worker_id": "4PXKMZX47G3QTJC", "story_id": "48081", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "aunt [female] sang to [male] .", "storylet_id": "240407"}], [{"original_text": "Uncle Rob tried to get Noah to pose for a picture but he was too interested in other things that were going on in the room.", "album_id": "1715903", "photo_flickr_id": "80352603", "setting": "first-2-pick-and-tell", "worker_id": "4PXKMZX47G3QTJC", "story_id": "48081", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "uncle rob tried to get [male] to pose for a picture but he was too interested in other things that were going on in the room .", "storylet_id": "240408"}], [{"original_text": "Like Patricia's laugh that everyone finds so annoying.", "album_id": "1715903", "photo_flickr_id": "80258802", "setting": "first-2-pick-and-tell", "worker_id": "4PXKMZX47G3QTJC", "story_id": "48081", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "like [female] 's laugh that everyone finds so annoying .", "storylet_id": "240409"}], [{"original_text": "When I got to my parent's house they were very happy to see me.", "album_id": "1715903", "photo_flickr_id": "80260314", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48082", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i got to my parent 's house they were very happy to see me .", "storylet_id": "240410"}], [{"original_text": "They had invited a bunch of friend and family over for dinner.", "album_id": "1715903", "photo_flickr_id": "80352603", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48082", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had invited a bunch of friend and family over for dinner .", "storylet_id": "240411"}], [{"original_text": "There was a lot of food there.", "album_id": "1715903", "photo_flickr_id": "80263513", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48082", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a lot of food there .", "storylet_id": "240412"}], [{"original_text": "There were many babies too.", "album_id": "1715903", "photo_flickr_id": "80504383", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48082", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many babies too .", "storylet_id": "240413"}], [{"original_text": "The food was delicious.", "album_id": "1715903", "photo_flickr_id": "80266416", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48082", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the food was delicious .", "storylet_id": "240414"}], [{"original_text": "The little baby was excited to play with his family members at the reunion. ", "album_id": "1715903", "photo_flickr_id": "80266934", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48083", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the little baby was excited to play with his family members at the reunion .", "storylet_id": "240415"}], [{"original_text": "Everyone got in line for the food,", "album_id": "1715903", "photo_flickr_id": "80263513", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48083", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone got in line for the food ,", "storylet_id": "240416"}], [{"original_text": "and then everyone passed around the baby.", "album_id": "1715903", "photo_flickr_id": "80260314", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48083", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and then everyone passed around the baby .", "storylet_id": "240417"}], [{"original_text": "He even got his uncle to hold him for a little while.", "album_id": "1715903", "photo_flickr_id": "80352603", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48083", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he even got his uncle to hold him for a little while .", "storylet_id": "240418"}], [{"original_text": "Great fun and many laughs were had by all. ", "album_id": "1715903", "photo_flickr_id": "80258802", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48083", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "great fun and many laughs were had by all .", "storylet_id": "240419"}], [{"original_text": "Baby Isaac had a family that cared for him deeply.", "album_id": "1715903", "photo_flickr_id": "80260314", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48084", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] [male] had a family that cared for him deeply .", "storylet_id": "240420"}], [{"original_text": "His father already set up a trust fund in Isaac's name. ", "album_id": "1715903", "photo_flickr_id": "80352603", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48084", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his father already set up a trust fund in [male] 's name .", "storylet_id": "240421"}], [{"original_text": "A weekend family party is a regular thing for Isaac's family.", "album_id": "1715903", "photo_flickr_id": "80263513", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48084", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a weekend family party is a regular thing for [male] 's family .", "storylet_id": "240422"}], [{"original_text": "He fell asleep in his Aunt's arms.", "album_id": "1715903", "photo_flickr_id": "80504383", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48084", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he fell asleep in his aunt 's arms .", "storylet_id": "240423"}], [{"original_text": "The final treat of the night was a fondue dish. ", "album_id": "1715903", "photo_flickr_id": "80266416", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48084", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the final treat of the night was a fondue dish .", "storylet_id": "240424"}], [{"original_text": "Our friends got together this weekend to celebrate New Years.", "album_id": "1718007", "photo_flickr_id": "80264991", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "48085", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our friends got together this weekend to celebrate new years .", "storylet_id": "240425"}], [{"original_text": "We got pretty drunk and loud, Mike was trying to eat his shirt.", "album_id": "1718007", "photo_flickr_id": "80264993", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "48085", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got pretty drunk and loud , [male] was trying to eat his shirt .", "storylet_id": "240426"}], [{"original_text": "We made sure everyone had a drink at all times, we didn't want any sobriety in this house. ", "album_id": "1718007", "photo_flickr_id": "80264995", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "48085", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we made sure everyone had a drink at all times , we did n't want any sobriety in this house .", "storylet_id": "240427"}], [{"original_text": "We blew our noise makers when the time came.", "album_id": "1718007", "photo_flickr_id": "80277381", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "48085", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we blew our noise makers when the time came .", "storylet_id": "240428"}], [{"original_text": "But, the city didn't look much different, still the same city even in the new year.", "album_id": "1718007", "photo_flickr_id": "80298962", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "48085", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but , the city did n't look much different , still the same city even in the new year .", "storylet_id": "240429"}], [{"original_text": "I went to the bar to meet my friends yesterday.", "album_id": "1718007", "photo_flickr_id": "80269103", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48086", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the bar to meet my friends yesterday .", "storylet_id": "240430"}], [{"original_text": "They were all very happy to see me.", "album_id": "1718007", "photo_flickr_id": "80269104", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48086", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were all very happy to see me .", "storylet_id": "240431"}], [{"original_text": "Everyone was enjoying themselves.", "album_id": "1718007", "photo_flickr_id": "80277383", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48086", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was enjoying themselves .", "storylet_id": "240432"}], [{"original_text": "Afterward we all went for a walk outside.", "album_id": "1718007", "photo_flickr_id": "80298950", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48086", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we all went for a walk outside .", "storylet_id": "240433"}], [{"original_text": "There were a lot of lights at night.", "album_id": "1718007", "photo_flickr_id": "80298954", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48086", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were a lot of lights at night .", "storylet_id": "240434"}], [{"original_text": "Me and by boyfriend Garrett had a great time out in the freezing weather party.", "album_id": "1718007", "photo_flickr_id": "80264991", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "48087", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and by boyfriend [male] had a great time out in the freezing weather party .", "storylet_id": "240435"}], [{"original_text": "Our friend Nathalie was crazy that night!", "album_id": "1718007", "photo_flickr_id": "80264993", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "48087", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our friend [female] was crazy that night !", "storylet_id": "240436"}], [{"original_text": "Here's Tootie and her boyfriend Jo.", "album_id": "1718007", "photo_flickr_id": "80264995", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "48087", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's tootie and her boyfriend [female] .", "storylet_id": "240437"}], [{"original_text": "And here's me and Garrett again, with my ex-boyfriend Blair in the background.", "album_id": "1718007", "photo_flickr_id": "80277381", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "48087", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and here 's me and [male] again , with my ex-boyfriend [male] in the background .", "storylet_id": "240438"}], [{"original_text": "The cityscape view from the party was spectacular.", "album_id": "1718007", "photo_flickr_id": "80298962", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "48087", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cityscape view from the party was spectacular .", "storylet_id": "240439"}], [{"original_text": "The whole gang went out last night in the extreme cold.", "album_id": "1718007", "photo_flickr_id": "80264991", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48088", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole gang went out last night in the extreme cold .", "storylet_id": "240440"}], [{"original_text": "I must say Sasha got a little drunk.", "album_id": "1718007", "photo_flickr_id": "80264993", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48088", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i must say [female] got a little drunk .", "storylet_id": "240441"}], [{"original_text": "Betty, Jerry and Max were all hitting the whisky pretty heavily.", "album_id": "1718007", "photo_flickr_id": "80264995", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48088", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] , [male] and [male] were all hitting the whisky pretty heavily .", "storylet_id": "240442"}], [{"original_text": "James had a cigar, too.", "album_id": "1718007", "photo_flickr_id": "80277381", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48088", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] had a cigar , too .", "storylet_id": "240443"}], [{"original_text": "It was a good night, and looking at the city in the dark was pretty cool.", "album_id": "1718007", "photo_flickr_id": "80298962", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48088", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a good night , and looking at the city in the dark was pretty cool .", "storylet_id": "240444"}], [{"original_text": "John and Carl have been friends for all of their life. They hung out every weekend.", "album_id": "1718007", "photo_flickr_id": "80264991", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "48089", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [male] have been friends for all of their life . they hung out every weekend .", "storylet_id": "240445"}], [{"original_text": "This weekend they decided to go to a beach party in Brooklyn, New York. They new the bird lady would be there. She loved to party.", "album_id": "1718007", "photo_flickr_id": "80264993", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "48089", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this weekend they decided to go to a beach party in location , location location . they new the bird lady would be there . she loved to party .", "storylet_id": "240446"}], [{"original_text": "Kendra also came out to party with them. She loved mixing drinks and getting toasty.", "album_id": "1718007", "photo_flickr_id": "80264995", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "48089", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] also came out to party with them . she loved mixing drinks and getting toasty .", "storylet_id": "240447"}], [{"original_text": "John and Carl would fill their pipes with tobacco and mingle with everyone there.", "album_id": "1718007", "photo_flickr_id": "80277381", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "48089", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and [male] would fill their pipes with tobacco and mingle with everyone there .", "storylet_id": "240448"}], [{"original_text": "At the end of the night people would be passed out in the sand, while those who were still awake would admire the dark nights skyline.", "album_id": "1718007", "photo_flickr_id": "80298962", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "48089", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night people would be passed out in the sand , while those who were still awake would admire the dark nights skyline .", "storylet_id": "240449"}], [{"original_text": "There were several plates to choose from.", "album_id": "1731229", "photo_flickr_id": "81050778", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48090", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were several plates to choose from .", "storylet_id": "240450"}], [{"original_text": "The band played for hours.", "album_id": "1731229", "photo_flickr_id": "81050479", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48090", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the band played for hours .", "storylet_id": "240451"}], [{"original_text": "They had both originals and covers.", "album_id": "1731229", "photo_flickr_id": "81050539", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48090", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had both originals and covers .", "storylet_id": "240452"}], [{"original_text": "The guests ate endlessly that night.", "album_id": "1731229", "photo_flickr_id": "81050444", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48090", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guests ate endlessly that night .", "storylet_id": "240453"}], [{"original_text": "And played with the music set when the band was done.", "album_id": "1731229", "photo_flickr_id": "81050646", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48090", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and played with the music set when the band was done .", "storylet_id": "240454"}], [{"original_text": "I went to a bar and my friens' band was playing there.", "album_id": "1731229", "photo_flickr_id": "81050518", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48091", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a bar and my friens ' band was playing there .", "storylet_id": "240455"}], [{"original_text": "I took a seat up front.", "album_id": "1731229", "photo_flickr_id": "81050539", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48091", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i took a seat up front .", "storylet_id": "240456"}], [{"original_text": "Soon enough, he noticed I was there.", "album_id": "1731229", "photo_flickr_id": "81050646", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48091", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "soon enough , he noticed i was there .", "storylet_id": "240457"}], [{"original_text": "He came over to say hi.", "album_id": "1731229", "photo_flickr_id": "81050690", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48091", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he came over to say hi .", "storylet_id": "240458"}], [{"original_text": "We talked and he ended up joining us for dinner.", "album_id": "1731229", "photo_flickr_id": "81050606", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48091", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we talked and he ended up joining us for dinner .", "storylet_id": "240459"}], [{"original_text": "It was my bands first big break.", "album_id": "1731229", "photo_flickr_id": "81050518", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48092", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was my bands first big break .", "storylet_id": "240460"}], [{"original_text": "We got a gig playing at the local bar for a night.", "album_id": "1731229", "photo_flickr_id": "81050539", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48092", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got a gig playing at the local bar for a night .", "storylet_id": "240461"}], [{"original_text": "Needless to say we were stoked.", "album_id": "1731229", "photo_flickr_id": "81050646", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48092", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "needless to say we were stoked .", "storylet_id": "240462"}], [{"original_text": "We took tons of promotional photos.", "album_id": "1731229", "photo_flickr_id": "81050690", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48092", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took tons of promotional photos .", "storylet_id": "240463"}], [{"original_text": "And then had a great dinner after to celebrate. ", "album_id": "1731229", "photo_flickr_id": "81050606", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48092", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then had a great dinner after to celebrate .", "storylet_id": "240464"}], [{"original_text": "The food at the restaurant was delicious.", "album_id": "1731229", "photo_flickr_id": "81050778", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48093", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the food at the restaurant was delicious .", "storylet_id": "240465"}], [{"original_text": "They also had a live band.", "album_id": "1731229", "photo_flickr_id": "81050479", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48093", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they also had a live band .", "storylet_id": "240466"}], [{"original_text": "They were very good.", "album_id": "1731229", "photo_flickr_id": "81050539", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48093", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were very good .", "storylet_id": "240467"}], [{"original_text": "We took a lot of pictures of that night.", "album_id": "1731229", "photo_flickr_id": "81050444", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48093", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a lot of pictures of that night .", "storylet_id": "240468"}], [{"original_text": "We also were able to chat with some of the band members.", "album_id": "1731229", "photo_flickr_id": "81050646", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48093", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also were able to chat with some of the band members .", "storylet_id": "240469"}], [{"original_text": "I saw my son's band play at a bar.", "album_id": "1731229", "photo_flickr_id": "81050518", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48094", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i saw my son 's band play at a bar .", "storylet_id": "240470"}], [{"original_text": "His drummer is named Roman.", "album_id": "1731229", "photo_flickr_id": "81050539", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48094", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his drummer is named [male] .", "storylet_id": "240471"}], [{"original_text": "Roman is very polite if you are polite to him.", "album_id": "1731229", "photo_flickr_id": "81050646", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48094", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] is very polite if you are polite to him .", "storylet_id": "240472"}], [{"original_text": "When you are not polite to Roman, he insults you and your son.", "album_id": "1731229", "photo_flickr_id": "81050690", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48094", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when you are not polite to [male] , he insults you and your son .", "storylet_id": "240473"}], [{"original_text": "Afterward, Roman acts overly polite and tries to scare you with how friendly he is. ", "album_id": "1731229", "photo_flickr_id": "81050606", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48094", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward , [male] acts overly polite and tries to scare you with how friendly he is .", "storylet_id": "240474"}], [{"original_text": "Friday we moved in to our new home. We bought some pizzas to celebrate with friends and family.", "album_id": "1737217", "photo_flickr_id": "81319624", "setting": "first-2-pick-and-tell", "worker_id": "4PXKMZX47G3QTJC", "story_id": "48095", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friday we moved in to our new home . we bought some pizzas to celebrate with friends and family .", "storylet_id": "240475"}], [{"original_text": "Little Mich brought the ice for the sodas.", "album_id": "1737217", "photo_flickr_id": "81319303", "setting": "first-2-pick-and-tell", "worker_id": "4PXKMZX47G3QTJC", "story_id": "48095", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "little mich brought the ice for the sodas .", "storylet_id": "240476"}], [{"original_text": "Although we only had only two chairs out the place was starting to feel like home.", "album_id": "1737217", "photo_flickr_id": "81319364", "setting": "first-2-pick-and-tell", "worker_id": "4PXKMZX47G3QTJC", "story_id": "48095", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "although we only had only two chairs out the place was starting to feel like home .", "storylet_id": "240477"}], [{"original_text": "Mom helped organize the mess we had all over. What would I do with ought her.", "album_id": "1737217", "photo_flickr_id": "81319436", "setting": "first-2-pick-and-tell", "worker_id": "4PXKMZX47G3QTJC", "story_id": "48095", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom helped organize the mess we had all over . what would i do with ought her .", "storylet_id": "240478"}], [{"original_text": "Everyone was so tired by the move that we just had to take a break. ", "album_id": "1737217", "photo_flickr_id": "81319478", "setting": "first-2-pick-and-tell", "worker_id": "4PXKMZX47G3QTJC", "story_id": "48095", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was so tired by the move that we just had to take a break .", "storylet_id": "240479"}], [{"original_text": "My son wanted to help with the ice.", "album_id": "1737217", "photo_flickr_id": "81319303", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48096", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my son wanted to help with the ice .", "storylet_id": "240480"}], [{"original_text": "Inside the room, the man spoke business. ", "album_id": "1737217", "photo_flickr_id": "81319364", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48096", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside the room , the man spoke business .", "storylet_id": "240481"}], [{"original_text": "Outsidex they talked about life.", "album_id": "1737217", "photo_flickr_id": "81319575", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48096", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "outsidex they talked about life .", "storylet_id": "240482"}], [{"original_text": "The couple was happy to be there. ", "album_id": "1737217", "photo_flickr_id": "81319624", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48096", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple was happy to be there .", "storylet_id": "240483"}], [{"original_text": "The couple's son was adorable. ", "album_id": "1737217", "photo_flickr_id": "81319718", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48096", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the couple 's son was adorable .", "storylet_id": "240484"}], [{"original_text": "This husband and wife were excited to have a pizza night at their new place.", "album_id": "1737217", "photo_flickr_id": "81319624", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48097", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this husband and wife were excited to have a pizza night at their new place .", "storylet_id": "240485"}], [{"original_text": "Their son made sure to get the ice ready for drinks,", "album_id": "1737217", "photo_flickr_id": "81319303", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48097", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their son made sure to get the ice ready for drinks ,", "storylet_id": "240486"}], [{"original_text": "and grandpa made sure that the chairs were set up.", "album_id": "1737217", "photo_flickr_id": "81319364", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48097", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and grandpa made sure that the chairs were set up .", "storylet_id": "240487"}], [{"original_text": "Everyone started arriving,", "album_id": "1737217", "photo_flickr_id": "81319436", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48097", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone started arriving ,", "storylet_id": "240488"}], [{"original_text": "and enjoyed the couple's new home. ", "album_id": "1737217", "photo_flickr_id": "81319478", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48097", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and enjoyed the couple 's new home .", "storylet_id": "240489"}], [{"original_text": "Our friends were happy to see the pizza on the kitchen tabletop.", "album_id": "1737217", "photo_flickr_id": "81319624", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48098", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our friends were happy to see the pizza on the kitchen tabletop .", "storylet_id": "240490"}], [{"original_text": "Our kid brought out the ice for the drinks.", "album_id": "1737217", "photo_flickr_id": "81319303", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48098", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our kid brought out the ice for the drinks .", "storylet_id": "240491"}], [{"original_text": "Dad relaxed on a chair with a beer in his hand.", "album_id": "1737217", "photo_flickr_id": "81319364", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48098", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad relaxed on a chair with a beer in his hand .", "storylet_id": "240492"}], [{"original_text": "Family and friends were ready to gather and talk.", "album_id": "1737217", "photo_flickr_id": "81319436", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48098", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "family and friends were ready to gather and talk .", "storylet_id": "240493"}], [{"original_text": "Lastly, we enjoyed the day with company and drinks.", "album_id": "1737217", "photo_flickr_id": "81319478", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48098", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , we enjoyed the day with company and drinks .", "storylet_id": "240494"}], [{"original_text": "We were all very hungry, so we ordered a bunch of pizza.", "album_id": "1737217", "photo_flickr_id": "81319624", "setting": "last-3-pick-old-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "48099", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were all very hungry , so we ordered a bunch of pizza .", "storylet_id": "240495"}], [{"original_text": "The little guy wanted to help with lunch, so we let him carry the ice!", "album_id": "1737217", "photo_flickr_id": "81319303", "setting": "last-3-pick-old-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "48099", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the little guy wanted to help with lunch , so we let him carry the ice !", "storylet_id": "240496"}], [{"original_text": "Grandpa rested by a fan.", "album_id": "1737217", "photo_flickr_id": "81319364", "setting": "last-3-pick-old-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "48099", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandpa rested by a fan .", "storylet_id": "240497"}], [{"original_text": "As everyone came in, we brought out the boxed wine.", "album_id": "1737217", "photo_flickr_id": "81319436", "setting": "last-3-pick-old-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "48099", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as everyone came in , we brought out the boxed wine .", "storylet_id": "240498"}], [{"original_text": "We all sat down together and enjoyed some wine.", "album_id": "1737217", "photo_flickr_id": "81319478", "setting": "last-3-pick-old-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "48099", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all sat down together and enjoyed some wine .", "storylet_id": "240499"}], [{"original_text": "The DJ entertained that evening.", "album_id": "1761721", "photo_flickr_id": "82400784", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48100", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dj entertained that evening .", "storylet_id": "240500"}], [{"original_text": "He was a favorite with the crowd.", "album_id": "1761721", "photo_flickr_id": "83035966", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48100", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was a favorite with the crowd .", "storylet_id": "240501"}], [{"original_text": "There were plenty of festive drinks.", "album_id": "1761721", "photo_flickr_id": "84023449", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48100", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were plenty of festive drinks .", "storylet_id": "240502"}], [{"original_text": "The New Year was welcomed with style.", "album_id": "1761721", "photo_flickr_id": "84044982", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48100", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the new year was welcomed with style .", "storylet_id": "240503"}], [{"original_text": "Karaoke was popular among those that liked an audience.", "album_id": "1761721", "photo_flickr_id": "84026470", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48100", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "karaoke was popular among those that liked an audience .", "storylet_id": "240504"}], [{"original_text": "We attended an awesome New Year's Eve party.", "album_id": "1761721", "photo_flickr_id": "84051114", "setting": "first-2-pick-and-tell", "worker_id": "LMMSCT5VI1D9IM8", "story_id": "48101", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we attended an awesome new year 's eve party .", "storylet_id": "240505"}], [{"original_text": "The drinks were flowing fast and furious.", "album_id": "1761721", "photo_flickr_id": "84023446", "setting": "first-2-pick-and-tell", "worker_id": "LMMSCT5VI1D9IM8", "story_id": "48101", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the drinks were flowing fast and furious .", "storylet_id": "240506"}], [{"original_text": "The two DJ's kept us dancing until the big event. ", "album_id": "1761721", "photo_flickr_id": "83035966", "setting": "first-2-pick-and-tell", "worker_id": "LMMSCT5VI1D9IM8", "story_id": "48101", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the two dj 's kept us dancing until the big event .", "storylet_id": "240507"}], [{"original_text": "Finally it was time! The place exploded in celebration.", "album_id": "1761721", "photo_flickr_id": "82400781", "setting": "first-2-pick-and-tell", "worker_id": "LMMSCT5VI1D9IM8", "story_id": "48101", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally it was time ! the place exploded in celebration .", "storylet_id": "240508"}], [{"original_text": "Happy New Year! ", "album_id": "1761721", "photo_flickr_id": "84044982", "setting": "first-2-pick-and-tell", "worker_id": "LMMSCT5VI1D9IM8", "story_id": "48101", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "happy new year !", "storylet_id": "240509"}], [{"original_text": "I had to go out and buy a lot of beer for the party but they were sold out.", "album_id": "1761721", "photo_flickr_id": "84051114", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48102", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had to go out and buy a lot of beer for the party but they were sold out .", "storylet_id": "240510"}], [{"original_text": "We decided to go to a bar instead since we could not get any beer.", "album_id": "1761721", "photo_flickr_id": "84023446", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48102", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided to go to a bar instead since we could not get any beer .", "storylet_id": "240511"}], [{"original_text": "There were only tow bartenders that night.", "album_id": "1761721", "photo_flickr_id": "83035966", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48102", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were only tow bartenders that night .", "storylet_id": "240512"}], [{"original_text": "After that we left and drove to a lounge to relax.", "album_id": "1761721", "photo_flickr_id": "82400781", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48102", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that we left and drove to a lounge to relax .", "storylet_id": "240513"}], [{"original_text": "We had a great time there.", "album_id": "1761721", "photo_flickr_id": "84044982", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48102", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time there .", "storylet_id": "240514"}], [{"original_text": "So we went to our local pub for a New Years bash.", "album_id": "1761721", "photo_flickr_id": "84051114", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48103", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so we went to our local pub for a new years bash .", "storylet_id": "240515"}], [{"original_text": "Todd our favorite bartender was there for the night giving us great discounts.", "album_id": "1761721", "photo_flickr_id": "84023446", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48103", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] our favorite bartender was there for the night giving us great discounts .", "storylet_id": "240516"}], [{"original_text": "As well as Nate and Derrick two local djs.", "album_id": "1761721", "photo_flickr_id": "83035966", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48103", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as well as nate and [male] two local djs .", "storylet_id": "240517"}], [{"original_text": "Though it was raining out it didnt kill the mood.", "album_id": "1761721", "photo_flickr_id": "82400781", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48103", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "though it was raining out it didnt kill the mood .", "storylet_id": "240518"}], [{"original_text": "The party inside was plenty wild.", "album_id": "1761721", "photo_flickr_id": "84044982", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48103", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the party inside was plenty wild .", "storylet_id": "240519"}], [{"original_text": "A DJ gets ready to perform.", "album_id": "1761721", "photo_flickr_id": "82400784", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "48104", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a dj gets ready to perform .", "storylet_id": "240520"}], [{"original_text": "He poses with his friend.", "album_id": "1761721", "photo_flickr_id": "83035966", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "48104", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he poses with his friend .", "storylet_id": "240521"}], [{"original_text": "They look for a place to sit.", "album_id": "1761721", "photo_flickr_id": "84023449", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "48104", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they look for a place to sit .", "storylet_id": "240522"}], [{"original_text": "They then proceed to dance and party.", "album_id": "1761721", "photo_flickr_id": "84044982", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "48104", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they then proceed to dance and party .", "storylet_id": "240523"}], [{"original_text": "A woman sings.", "album_id": "1761721", "photo_flickr_id": "84026470", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "48104", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a woman sings .", "storylet_id": "240524"}], [{"original_text": "I had so much food to eat yesterday.", "album_id": "72157639253910706", "photo_flickr_id": "11681476516", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48105", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had so much food to eat yesterday .", "storylet_id": "240525"}], [{"original_text": "I went to visit my family.", "album_id": "72157639253910706", "photo_flickr_id": "11681480856", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48105", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went to visit my family .", "storylet_id": "240526"}], [{"original_text": "All of the relatives were there.", "album_id": "72157639253910706", "photo_flickr_id": "11680960503", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48105", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of the relatives were there .", "storylet_id": "240527"}], [{"original_text": "We all had a great time.", "album_id": "72157639253910706", "photo_flickr_id": "11680712675", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48105", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all had a great time .", "storylet_id": "240528"}], [{"original_text": "The dessert was especially good.", "album_id": "72157639253910706", "photo_flickr_id": "11680720075", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48105", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dessert was especially good .", "storylet_id": "240529"}], [{"original_text": "A big meal is prepared. ", "album_id": "72157639253910706", "photo_flickr_id": "11680698865", "setting": "first-2-pick-and-tell", "worker_id": "6V36FZB0FYMZZ7V", "story_id": "48106", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a big meal is prepared .", "storylet_id": "240530"}], [{"original_text": "Everyone pitches in to make the meal and everyone enjoys. ", "album_id": "72157639253910706", "photo_flickr_id": "11680956263", "setting": "first-2-pick-and-tell", "worker_id": "6V36FZB0FYMZZ7V", "story_id": "48106", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone pitches in to make the meal and everyone enjoys .", "storylet_id": "240531"}], [{"original_text": "The family is together celebrating an occasion. ", "album_id": "72157639253910706", "photo_flickr_id": "11681072844", "setting": "first-2-pick-and-tell", "worker_id": "6V36FZB0FYMZZ7V", "story_id": "48106", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family is together celebrating an occasion .", "storylet_id": "240532"}], [{"original_text": "The boys pose with the birthday cake. ", "album_id": "72157639253910706", "photo_flickr_id": "11681495116", "setting": "first-2-pick-and-tell", "worker_id": "6V36FZB0FYMZZ7V", "story_id": "48106", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boys pose with the birthday cake .", "storylet_id": "240533"}], [{"original_text": "The family enjoys each other's company. ", "album_id": "72157639253910706", "photo_flickr_id": "11681091744", "setting": "first-2-pick-and-tell", "worker_id": "6V36FZB0FYMZZ7V", "story_id": "48106", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family enjoys each other 's company .", "storylet_id": "240534"}], [{"original_text": "Hu had a party at his parents' house the other night.", "album_id": "72157639253910706", "photo_flickr_id": "11681476516", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48107", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hu had a party at his parents ' house the other night .", "storylet_id": "240535"}], [{"original_text": "There was tons of food, and his Mom was anxious that everybody enjoy themselves.", "album_id": "72157639253910706", "photo_flickr_id": "11681480856", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48107", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was tons of food , and his mom was anxious that everybody enjoy themselves .", "storylet_id": "240536"}], [{"original_text": "Everyone had a good time talking and laughing. Then, Hu's brother brought out a birthday cake for Hu.", "album_id": "72157639253910706", "photo_flickr_id": "11680960503", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48107", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone had a good time talking and laughing . then , hu 's brother brought out a birthday cake for hu .", "storylet_id": "240537"}], [{"original_text": "He lit the candles while people cheered.", "album_id": "72157639253910706", "photo_flickr_id": "11680712675", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48107", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he lit the candles while people cheered .", "storylet_id": "240538"}], [{"original_text": "Then everybody dug into the delicious-looking cake.", "album_id": "72157639253910706", "photo_flickr_id": "11680720075", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48107", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then everybody dug into the delicious-looking cake .", "storylet_id": "240539"}], [{"original_text": "Today is Miko's birthday, he is turning twenty one years old.", "album_id": "72157639253910706", "photo_flickr_id": "11680698865", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48108", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is miko 's birthday , he is turning twenty one years old .", "storylet_id": "240540"}], [{"original_text": "Our closest family and friends have come together to spend this special day with him.", "album_id": "72157639253910706", "photo_flickr_id": "11680956263", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48108", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our closest family and friends have come together to spend this special day with him .", "storylet_id": "240541"}], [{"original_text": "Mico never realized how many family members he has, as everybody poses for a picture.", "album_id": "72157639253910706", "photo_flickr_id": "11681072844", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48108", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mico never realized how many family members he has , as everybody poses for a picture .", "storylet_id": "240542"}], [{"original_text": "Mico holds up his birthday cake with his cousin John.", "album_id": "72157639253910706", "photo_flickr_id": "11681495116", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48108", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mico holds up his birthday cake with his cousin [male] .", "storylet_id": "240543"}], [{"original_text": "After the party everybody relaxes watching some television. ", "album_id": "72157639253910706", "photo_flickr_id": "11681091744", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48108", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the party everybody relaxes watching some television .", "storylet_id": "240544"}], [{"original_text": "A variety of food was spread over the table.", "album_id": "72157639253910706", "photo_flickr_id": "11680698865", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9TVZ4VK3J3YTQB", "story_id": "48109", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a variety of food was spread over the table .", "storylet_id": "240545"}], [{"original_text": "The host was finally able to get a plate for herself.", "album_id": "72157639253910706", "photo_flickr_id": "11680956263", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9TVZ4VK3J3YTQB", "story_id": "48109", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the host was finally able to get a plate for herself .", "storylet_id": "240546"}], [{"original_text": "Everyone gathered in the front room to take pictures.", "album_id": "72157639253910706", "photo_flickr_id": "11681072844", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9TVZ4VK3J3YTQB", "story_id": "48109", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone gathered in the front room to take pictures .", "storylet_id": "240547"}], [{"original_text": "The birthday recipients each held up the cake.", "album_id": "72157639253910706", "photo_flickr_id": "11681495116", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9TVZ4VK3J3YTQB", "story_id": "48109", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the birthday recipients each held up the cake .", "storylet_id": "240548"}], [{"original_text": "It wasn't long before people were relaxed in conversation on the floor.", "album_id": "72157639253910706", "photo_flickr_id": "11681091744", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9TVZ4VK3J3YTQB", "story_id": "48109", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was n't long before people were relaxed in conversation on the floor .", "storylet_id": "240549"}], [{"original_text": "My smart cat was looking for a book to read.", "album_id": "72157639258283935", "photo_flickr_id": "11713882673", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48110", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my smart cat was looking for a book to read .", "storylet_id": "240550"}], [{"original_text": "My bad cat asked him if he wanted to get drunk.", "album_id": "72157639258283935", "photo_flickr_id": "11713423233", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48110", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my bad cat asked him if he wanted to get drunk .", "storylet_id": "240551"}], [{"original_text": "My Smart cat gave my bad cat a dirty look.", "album_id": "72157639258283935", "photo_flickr_id": "11713884523", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48110", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my smart cat gave my bad cat a dirty look .", "storylet_id": "240552"}], [{"original_text": "My bad cat gave him a disdainful look in return.", "album_id": "72157639258283935", "photo_flickr_id": "11713945676", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48110", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my bad cat gave him a disdainful look in return .", "storylet_id": "240553"}], [{"original_text": "My other cat often enjoys listening to them argue.", "album_id": "72157639258283935", "photo_flickr_id": "11681638194", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48110", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my other cat often enjoys listening to them argue .", "storylet_id": "240554"}], [{"original_text": "My cat does not like to have pictures taken with him in it.", "album_id": "72157639258283935", "photo_flickr_id": "11713882673", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48111", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my cat does not like to have pictures taken with him in it .", "storylet_id": "240555"}], [{"original_text": "Oh no he spotted me! That's not good!", "album_id": "72157639258283935", "photo_flickr_id": "11713884523", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48111", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "oh no he spotted me ! that 's not good !", "storylet_id": "240556"}], [{"original_text": "He turned me into the police and I was arrested next to this watch out sign!", "album_id": "72157639258283935", "photo_flickr_id": "11682055606", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48111", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he turned me into the police and i was arrested next to this watch out sign !", "storylet_id": "240557"}], [{"original_text": "We now all walk out of our apartment, homeless.", "album_id": "72157639258283935", "photo_flickr_id": "11713947326", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48111", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we now all walk out of our apartment , homeless .", "storylet_id": "240558"}], [{"original_text": "We need to find a new home. Also we can't have cats anymore. Court order.", "album_id": "72157639258283935", "photo_flickr_id": "11714387566", "setting": "first-2-pick-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "48111", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we need to find a new home . also we ca n't have cats anymore . court order .", "storylet_id": "240559"}], [{"original_text": "City life for this literary cat is hard.", "album_id": "72157639258283935", "photo_flickr_id": "11713882673", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48112", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "city life for this literary cat is hard .", "storylet_id": "240560"}], [{"original_text": "He had to find the perfect time to make his break for the door.", "album_id": "72157639258283935", "photo_flickr_id": "11713884523", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48112", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he had to find the perfect time to make his break for the door .", "storylet_id": "240561"}], [{"original_text": "He then has to avoid construction on the sidewalk", "album_id": "72157639258283935", "photo_flickr_id": "11682055606", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48112", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he then has to avoid construction on the sidewalk", "storylet_id": "240562"}], [{"original_text": "and dodge pedestrians.", "album_id": "72157639258283935", "photo_flickr_id": "11713947326", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48112", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and dodge pedestrians .", "storylet_id": "240563"}], [{"original_text": "His most difficult task, though, is figuring out which of the people at the park might share their lunch with him.", "album_id": "72157639258283935", "photo_flickr_id": "11714387566", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48112", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his most difficult task , though , is figuring out which of the people at the park might share their lunch with him .", "storylet_id": "240564"}], [{"original_text": "This cat likes to wait for mice that may lurk between the books.", "album_id": "72157639258283935", "photo_flickr_id": "11713882673", "setting": "last-3-pick-old-and-tell", "worker_id": "PFXI98Z7K09QSPN", "story_id": "48113", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this cat likes to wait for mice that may lurk between the books .", "storylet_id": "240565"}], [{"original_text": "Oh, oh the cat see's that she is being watched and is suspicious.", "album_id": "72157639258283935", "photo_flickr_id": "11713884523", "setting": "last-3-pick-old-and-tell", "worker_id": "PFXI98Z7K09QSPN", "story_id": "48113", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "oh , oh the cat see 's that she is being watched and is suspicious .", "storylet_id": "240566"}], [{"original_text": "If this floor is slippery then you better watch your step.", "album_id": "72157639258283935", "photo_flickr_id": "11682055606", "setting": "last-3-pick-old-and-tell", "worker_id": "PFXI98Z7K09QSPN", "story_id": "48113", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "if this floor is slippery then you better watch your step .", "storylet_id": "240567"}], [{"original_text": "That guy seems to be jaywalking and that is illegal.", "album_id": "72157639258283935", "photo_flickr_id": "11713947326", "setting": "last-3-pick-old-and-tell", "worker_id": "PFXI98Z7K09QSPN", "story_id": "48113", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that guy seems to be jaywalking and that is illegal .", "storylet_id": "240568"}], [{"original_text": "A restful seat in the park for two lovely couples after a busy day.", "album_id": "72157639258283935", "photo_flickr_id": "11714387566", "setting": "last-3-pick-old-and-tell", "worker_id": "PFXI98Z7K09QSPN", "story_id": "48113", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a restful seat in the park for two lovely couples after a busy day .", "storylet_id": "240569"}], [{"original_text": "It's great being the bookstore cat, I feel so literate!", "album_id": "72157639258283935", "photo_flickr_id": "11713882673", "setting": "last-3-pick-old-and-tell", "worker_id": "CZ0MBPH7U9DY79I", "story_id": "48114", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's great being the bookstore cat , i feel so literate !", "storylet_id": "240570"}], [{"original_text": "Oh yeah? It's way better being the liquor store cat! I feel sooo meow lol fft", "album_id": "72157639258283935", "photo_flickr_id": "11713423233", "setting": "last-3-pick-old-and-tell", "worker_id": "CZ0MBPH7U9DY79I", "story_id": "48114", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "oh yeah ? it 's way better being the liquor store cat ! i feel sooo meow lol fft", "storylet_id": "240571"}], [{"original_text": "Who do you think you are?", "album_id": "72157639258283935", "photo_flickr_id": "11713884523", "setting": "last-3-pick-old-and-tell", "worker_id": "CZ0MBPH7U9DY79I", "story_id": "48114", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "who do you think you are ?", "storylet_id": "240572"}], [{"original_text": "I'm Catman, who the hell are you?", "album_id": "72157639258283935", "photo_flickr_id": "11713945676", "setting": "last-3-pick-old-and-tell", "worker_id": "CZ0MBPH7U9DY79I", "story_id": "48114", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'm catman , who the hell are you ?", "storylet_id": "240573"}], [{"original_text": "Would you two shut up and help me knit a sweater?", "album_id": "72157639258283935", "photo_flickr_id": "11681638194", "setting": "last-3-pick-old-and-tell", "worker_id": "CZ0MBPH7U9DY79I", "story_id": "48114", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "would you two shut up and help me knit a sweater ?", "storylet_id": "240574"}], [{"original_text": "My friends and I went to a conference about three miles away.", "album_id": "72157639904095615", "photo_flickr_id": "12017644236", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48115", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i went to a conference about three miles away .", "storylet_id": "240575"}], [{"original_text": "I took several pictures with associates.", "album_id": "72157639904095615", "photo_flickr_id": "12017609306", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48115", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i took several pictures with associates .", "storylet_id": "240576"}], [{"original_text": "The living room was very well furnished.", "album_id": "72157639904095615", "photo_flickr_id": "12016755585", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48115", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the living room was very well furnished .", "storylet_id": "240577"}], [{"original_text": "I also had a great time exploring the hallway.", "album_id": "72157639904095615", "photo_flickr_id": "12016738595", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48115", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also had a great time exploring the hallway .", "storylet_id": "240578"}], [{"original_text": "Before we went to sleep, I took this picture with one of my friends.", "album_id": "72157639904095615", "photo_flickr_id": "12016605335", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48115", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before we went to sleep , i took this picture with one of my friends .", "storylet_id": "240579"}], [{"original_text": "Pete and Ben are talented artists. They decided to throw a party so friends could come over and see their artwork.", "album_id": "72157639904095615", "photo_flickr_id": "12017081313", "setting": "first-2-pick-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "48116", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [male] are talented artists . they decided to throw a party so friends could come over and see their artwork .", "storylet_id": "240580"}], [{"original_text": "The party goers were most impressed with how beautifully decorated the apartment was for the big event.", "album_id": "72157639904095615", "photo_flickr_id": "12016755585", "setting": "first-2-pick-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "48116", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the party goers were most impressed with how beautifully decorated the apartment was for the big event .", "storylet_id": "240581"}], [{"original_text": "They had some snacks, drinks, and chatted a bit before admiring more of the beautiful sculptures in other rooms.", "album_id": "72157639904095615", "photo_flickr_id": "12016943803", "setting": "first-2-pick-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "48116", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had some snacks , drinks , and chatted a bit before admiring more of the beautiful sculptures in other rooms .", "storylet_id": "240582"}], [{"original_text": "They loved the warm glow of the lights on the giant crucifix. It was a favorite of the guests. ", "album_id": "72157639904095615", "photo_flickr_id": "12017547036", "setting": "first-2-pick-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "48116", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they loved the warm glow of the lights on the giant crucifix . it was a favorite of the guests .", "storylet_id": "240583"}], [{"original_text": "The party was so successful Pete and Ben had to end it before guests decided to crash on Pete's elegant and very comfy bed!", "album_id": "72157639904095615", "photo_flickr_id": "12017057244", "setting": "first-2-pick-and-tell", "worker_id": "VRBP5X2QDLYPJRC", "story_id": "48116", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the party was so successful [male] and [male] had to end it before guests decided to crash on [male] 's elegant and very comfy bed !", "storylet_id": "240584"}], [{"original_text": "I went to a house party to visit with friends.", "album_id": "72157639904095615", "photo_flickr_id": "12017644236", "setting": "last-3-pick-old-and-tell", "worker_id": "XMF2IV4FIVO1KJ6", "story_id": "48117", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a house party to visit with friends .", "storylet_id": "240585"}], [{"original_text": "There were a few friends I hadn't seen in a while. ", "album_id": "72157639904095615", "photo_flickr_id": "12017609306", "setting": "last-3-pick-old-and-tell", "worker_id": "XMF2IV4FIVO1KJ6", "story_id": "48117", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a few friends i had n't seen in a while .", "storylet_id": "240586"}], [{"original_text": "It was really great to catch up with them. ", "album_id": "72157639904095615", "photo_flickr_id": "12016755585", "setting": "last-3-pick-old-and-tell", "worker_id": "XMF2IV4FIVO1KJ6", "story_id": "48117", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was really great to catch up with them .", "storylet_id": "240587"}], [{"original_text": "I saw some really nice displays as I wandered around the house.", "album_id": "72157639904095615", "photo_flickr_id": "12016738595", "setting": "last-3-pick-old-and-tell", "worker_id": "XMF2IV4FIVO1KJ6", "story_id": "48117", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i saw some really nice displays as i wandered around the house .", "storylet_id": "240588"}], [{"original_text": "But it ended up being a crazier party than I expected and a bunch of us had to spend the night. ", "album_id": "72157639904095615", "photo_flickr_id": "12016605335", "setting": "last-3-pick-old-and-tell", "worker_id": "XMF2IV4FIVO1KJ6", "story_id": "48117", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but it ended up being a crazier party than i expected and a bunch of us had to spend the night .", "storylet_id": "240589"}], [{"original_text": "I was invited to my friend's new home. He was a terrific artist. ", "album_id": "72157639904095615", "photo_flickr_id": "12017644236", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48118", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was invited to my friend 's new home . he was a terrific artist .", "storylet_id": "240590"}], [{"original_text": "Many of our childhood friends came too, it was like a reunion. ", "album_id": "72157639904095615", "photo_flickr_id": "12017609306", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48118", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of our childhood friends came too , it was like a reunion .", "storylet_id": "240591"}], [{"original_text": "The whole house had a artsy vibe to it. ", "album_id": "72157639904095615", "photo_flickr_id": "12016755585", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48118", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the whole house had a artsy vibe to it .", "storylet_id": "240592"}], [{"original_text": "A lot of religious symbolism scattered about. ", "album_id": "72157639904095615", "photo_flickr_id": "12016738595", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48118", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a lot of religious symbolism scattered about .", "storylet_id": "240593"}], [{"original_text": "Who says you can't have a sleep over in an artist's house?", "album_id": "72157639904095615", "photo_flickr_id": "12016605335", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48118", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "who says you ca n't have a sleep over in an artist 's house ?", "storylet_id": "240594"}], [{"original_text": "The old law school friends gathered together.", "album_id": "72157639904095615", "photo_flickr_id": "12017081313", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48119", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old law school friends gathered together .", "storylet_id": "240595"}], [{"original_text": "They sat around in the living room reminising about the past.", "album_id": "72157639904095615", "photo_flickr_id": "12016755585", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48119", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they sat around in the living room reminising about the past .", "storylet_id": "240596"}], [{"original_text": "The guys got together for a picture, to recreate their first pictures together.", "album_id": "72157639904095615", "photo_flickr_id": "12016943803", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48119", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guys got together for a picture , to recreate their first pictures together .", "storylet_id": "240597"}], [{"original_text": "It seemed as though the party had broken up...", "album_id": "72157639904095615", "photo_flickr_id": "12017547036", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48119", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it seemed as though the party had broken up ...", "storylet_id": "240598"}], [{"original_text": "However everyone had migrated to the bedroom to debate cotton vs flannel sheets.", "album_id": "72157639904095615", "photo_flickr_id": "12017057244", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48119", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however everyone had migrated to the bedroom to debate cotton vs flannel sheets .", "storylet_id": "240599"}], [{"original_text": "Last holiday, we gathered at my moms.", "album_id": "72157649648811240", "photo_flickr_id": "15973438307", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48120", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last holiday , we gathered at my moms .", "storylet_id": "240600"}], [{"original_text": "She had a wide variety of fruit and drinks.", "album_id": "72157649648811240", "photo_flickr_id": "16167672505", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48120", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had a wide variety of fruit and drinks .", "storylet_id": "240601"}], [{"original_text": "I brought our baby along in celebration.", "album_id": "72157649648811240", "photo_flickr_id": "15980364060", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48120", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i brought our baby along in celebration .", "storylet_id": "240602"}], [{"original_text": "My neighbor also came and had a lot of fun with us.", "album_id": "72157649648811240", "photo_flickr_id": "16167408922", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48120", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my neighbor also came and had a lot of fun with us .", "storylet_id": "240603"}], [{"original_text": "Towards the end of the night, we took a group picture.", "album_id": "72157649648811240", "photo_flickr_id": "15541960974", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48120", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "towards the end of the night , we took a group picture .", "storylet_id": "240604"}], [{"original_text": "The family gathered in the sitting room for a gathering before the party.", "album_id": "72157649648811240", "photo_flickr_id": "15973438307", "setting": "first-2-pick-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "48121", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family gathered in the sitting room for a gathering before the party .", "storylet_id": "240605"}], [{"original_text": "Next, they went to the dining room to have a nice meal.", "album_id": "72157649648811240", "photo_flickr_id": "15981616459", "setting": "first-2-pick-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "48121", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next , they went to the dining room to have a nice meal .", "storylet_id": "240606"}], [{"original_text": "They then went to have classy drinks to start the party.", "album_id": "72157649648811240", "photo_flickr_id": "16167672505", "setting": "first-2-pick-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "48121", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they then went to have classy drinks to start the party .", "storylet_id": "240607"}], [{"original_text": "Some of them then put on party hats for the birthday celebration.", "album_id": "72157649648811240", "photo_flickr_id": "16013163709", "setting": "first-2-pick-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "48121", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of them then put on party hats for the birthday celebration .", "storylet_id": "240608"}], [{"original_text": "One of the people even had a noisemaker for the celebration.", "album_id": "72157649648811240", "photo_flickr_id": "16167408922", "setting": "first-2-pick-and-tell", "worker_id": "I92Q9ZRCECIIK0A", "story_id": "48121", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of the people even had a noisemaker for the celebration .", "storylet_id": "240609"}], [{"original_text": "For 2015 there was a nice family gathering. Young and old enjoyed the night. ", "album_id": "72157649648811240", "photo_flickr_id": "15973438307", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48122", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for 2015 there was a nice family gathering . young and old enjoyed the night .", "storylet_id": "240610"}], [{"original_text": "At the grown up table they ate and drank well with good conversation too.", "album_id": "72157649648811240", "photo_flickr_id": "15981616459", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48122", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at the grown up table they ate and drank well with good conversation too .", "storylet_id": "240611"}], [{"original_text": "The cocktails seemed delightful.", "album_id": "72157649648811240", "photo_flickr_id": "16167672505", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48122", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cocktails seemed delightful .", "storylet_id": "240612"}], [{"original_text": "There was a mom, dad, and little baby who especially enjoyed themselves. ", "album_id": "72157649648811240", "photo_flickr_id": "16013163709", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48122", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a mom , dad , and little baby who especially enjoyed themselves .", "storylet_id": "240613"}], [{"original_text": "Then the night ended with party favors and smiles. ", "album_id": "72157649648811240", "photo_flickr_id": "16167408922", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48122", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then the night ended with party favors and smiles .", "storylet_id": "240614"}], [{"original_text": "The family were preparing for the upcoming costume party.", "album_id": "72157649648811240", "photo_flickr_id": "15973438307", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48123", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family were preparing for the upcoming costume party .", "storylet_id": "240615"}], [{"original_text": "Tom was putting his bartending license to good use to make sure the adult had some great drinks.", "album_id": "72157649648811240", "photo_flickr_id": "16167672505", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48123", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was putting his bartending license to good use to make sure the adult had some great drinks .", "storylet_id": "240616"}], [{"original_text": "All the invited guest were having a good time.", "album_id": "72157649648811240", "photo_flickr_id": "15980364060", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48123", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the invited guest were having a good time .", "storylet_id": "240617"}], [{"original_text": "A lot of guest really got into the spirit of the party.", "album_id": "72157649648811240", "photo_flickr_id": "16167408922", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48123", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a lot of guest really got into the spirit of the party .", "storylet_id": "240618"}], [{"original_text": "The family had a great time. All the planning and efforts seem to work out. ", "album_id": "72157649648811240", "photo_flickr_id": "15541960974", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48123", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family had a great time . all the planning and efforts seem to work out .", "storylet_id": "240619"}], [{"original_text": "The family went to their parents' house on New Year eve.", "album_id": "72157649648811240", "photo_flickr_id": "15973438307", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "48124", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went to their parents ' house on new year eve .", "storylet_id": "240620"}], [{"original_text": "The boy's grandparents served the family dinner.", "album_id": "72157649648811240", "photo_flickr_id": "15981616459", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "48124", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boy 's grandparents served the family dinner .", "storylet_id": "240621"}], [{"original_text": "They had champagne, wine, gin and tonic and some other drinks.", "album_id": "72157649648811240", "photo_flickr_id": "16167672505", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "48124", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had champagne , wine , gin and tonic and some other drinks .", "storylet_id": "240622"}], [{"original_text": "The family then decided to go out.", "album_id": "72157649648811240", "photo_flickr_id": "16013163709", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "48124", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family then decided to go out .", "storylet_id": "240623"}], [{"original_text": "They wanted to celebrate New Year eve with other people on the street.", "album_id": "72157649648811240", "photo_flickr_id": "16167408922", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "48124", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they wanted to celebrate new year eve with other people on the street .", "storylet_id": "240624"}], [{"original_text": "At this fine bar, we hosted a party for our friend.", "album_id": "72157649987300306", "photo_flickr_id": "15978645897", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48125", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at this fine bar , we hosted a party for our friend .", "storylet_id": "240625"}], [{"original_text": "He was coming back from another country and we made him a centerpiece.", "album_id": "72157649987300306", "photo_flickr_id": "16173780292", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48125", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was coming back from another country and we made him a centerpiece .", "storylet_id": "240626"}], [{"original_text": "The tables were also decorated in his honor.", "album_id": "72157649987300306", "photo_flickr_id": "16162517841", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48125", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tables were also decorated in his honor .", "storylet_id": "240627"}], [{"original_text": "My aunt and mom came from another state to celebrate too.", "album_id": "72157649987300306", "photo_flickr_id": "15987093758", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48125", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my aunt and mom came from another state to celebrate too .", "storylet_id": "240628"}], [{"original_text": "We took a picture of the important men at the event.", "album_id": "72157649987300306", "photo_flickr_id": "16173780402", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48125", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took a picture of the important men at the event .", "storylet_id": "240629"}], [{"original_text": "Kate and Lisa decided to go to the New Year's Eve party this year.", "album_id": "72157649987300306", "photo_flickr_id": "15987093758", "setting": "first-2-pick-and-tell", "worker_id": "6VM439P73HNXMRJ", "story_id": "48126", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [female] decided to go to the new year 's eve party this year .", "storylet_id": "240630"}], [{"original_text": "At the party, a bartender was there to take their order.", "album_id": "72157649987300306", "photo_flickr_id": "16174531045", "setting": "first-2-pick-and-tell", "worker_id": "6VM439P73HNXMRJ", "story_id": "48126", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at the party , a bartender was there to take their order .", "storylet_id": "240631"}], [{"original_text": "Waiters in the back worked to prepare trays of drinks for them.", "album_id": "72157649987300306", "photo_flickr_id": "16173780402", "setting": "first-2-pick-and-tell", "worker_id": "6VM439P73HNXMRJ", "story_id": "48126", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "waiters in the back worked to prepare trays of drinks for them .", "storylet_id": "240632"}], [{"original_text": "There were also tables of snacks for them to eat.", "album_id": "72157649987300306", "photo_flickr_id": "15552165604", "setting": "first-2-pick-and-tell", "worker_id": "6VM439P73HNXMRJ", "story_id": "48126", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also tables of snacks for them to eat .", "storylet_id": "240633"}], [{"original_text": "The party even had decorative hats for them to wear.", "album_id": "72157649987300306", "photo_flickr_id": "16162517841", "setting": "first-2-pick-and-tell", "worker_id": "6VM439P73HNXMRJ", "story_id": "48126", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the party even had decorative hats for them to wear .", "storylet_id": "240634"}], [{"original_text": "The place cards had been laid.", "album_id": "72157649987300306", "photo_flickr_id": "15978645897", "setting": "last-3-pick-old-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "48127", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the place cards had been laid .", "storylet_id": "240635"}], [{"original_text": "The decorations had been put up.", "album_id": "72157649987300306", "photo_flickr_id": "16173780292", "setting": "last-3-pick-old-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "48127", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the decorations had been put up .", "storylet_id": "240636"}], [{"original_text": "The party favors were organized on the tables.", "album_id": "72157649987300306", "photo_flickr_id": "16162517841", "setting": "last-3-pick-old-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "48127", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the party favors were organized on the tables .", "storylet_id": "240637"}], [{"original_text": "As the guests arrived, the were handed drinks.", "album_id": "72157649987300306", "photo_flickr_id": "15987093758", "setting": "last-3-pick-old-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "48127", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the guests arrived , the were handed drinks .", "storylet_id": "240638"}], [{"original_text": "The only thing left to do was eat and enjoy the party.", "album_id": "72157649987300306", "photo_flickr_id": "16173780402", "setting": "last-3-pick-old-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "48127", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the only thing left to do was eat and enjoy the party .", "storylet_id": "240639"}], [{"original_text": "The bar was rented out for Tom and Joy's anniversary party.", "album_id": "72157649987300306", "photo_flickr_id": "15978645897", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48128", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bar was rented out for [male] and [female] 's anniversary party .", "storylet_id": "240640"}], [{"original_text": "The bar wasted no expense to make the party feel special.", "album_id": "72157649987300306", "photo_flickr_id": "16173780292", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48128", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bar wasted no expense to make the party feel special .", "storylet_id": "240641"}], [{"original_text": "The table was set to make sure all party favors were available.", "album_id": "72157649987300306", "photo_flickr_id": "16162517841", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48128", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the table was set to make sure all party favors were available .", "storylet_id": "240642"}], [{"original_text": "Joe enjoyed the party with her friends.", "album_id": "72157649987300306", "photo_flickr_id": "15987093758", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48128", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] enjoyed the party with her friends .", "storylet_id": "240643"}], [{"original_text": "Tom was happy hanging with his friends. Everyone had a memorable time. ", "album_id": "72157649987300306", "photo_flickr_id": "16173780402", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48128", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was happy hanging with his friends . everyone had a memorable time .", "storylet_id": "240644"}], [{"original_text": "Sharon and Macy met Tom for an event at a restaurant downtown.", "album_id": "72157649987300306", "photo_flickr_id": "15987093758", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48129", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [female] met [male] for an event at a restaurant downtown .", "storylet_id": "240645"}], [{"original_text": "The restaurant was inviting.", "album_id": "72157649987300306", "photo_flickr_id": "16174531045", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48129", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the restaurant was inviting .", "storylet_id": "240646"}], [{"original_text": "Tom, himself, passed around appetizers, ", "album_id": "72157649987300306", "photo_flickr_id": "16173780402", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48129", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] , himself , passed around appetizers ,", "storylet_id": "240647"}], [{"original_text": "and there were wonderful cheese plates to sample.", "album_id": "72157649987300306", "photo_flickr_id": "15552165604", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48129", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and there were wonderful cheese plates to sample .", "storylet_id": "240648"}], [{"original_text": "Sharon and Macy declined wearing the hats, though.", "album_id": "72157649987300306", "photo_flickr_id": "16162517841", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48129", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] and organization declined wearing the hats , though .", "storylet_id": "240649"}], [{"original_text": "We had a great time on vacation last weekend.", "album_id": "72157649714582760", "photo_flickr_id": "16014741319", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48130", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great time on vacation last weekend .", "storylet_id": "240650"}], [{"original_text": "We spent the entire day hiking in the wilderness.", "album_id": "72157649714582760", "photo_flickr_id": "16200025102", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48130", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we spent the entire day hiking in the wilderness .", "storylet_id": "240651"}], [{"original_text": "We took a lot of photos of nature.", "album_id": "72157649714582760", "photo_flickr_id": "16174995166", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48130", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took a lot of photos of nature .", "storylet_id": "240652"}], [{"original_text": "After hiking for a while we came across a road.", "album_id": "72157649714582760", "photo_flickr_id": "16200845285", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48130", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after hiking for a while we came across a road .", "storylet_id": "240653"}], [{"original_text": "The view around us was complete desolate.", "album_id": "72157649714582760", "photo_flickr_id": "16198971361", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48130", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view around us was complete desolate .", "storylet_id": "240654"}], [{"original_text": "I visited my parents in Wisconsin this week.", "album_id": "72157649714582760", "photo_flickr_id": "15984878087", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48131", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i visited my parents in location this week .", "storylet_id": "240655"}], [{"original_text": "The weather was cold and snowy.", "album_id": "72157649714582760", "photo_flickr_id": "16198971361", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48131", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the weather was cold and snowy .", "storylet_id": "240656"}], [{"original_text": "We took the dog out for a walk but needed to get away from the road.", "album_id": "72157649714582760", "photo_flickr_id": "16200845285", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48131", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took the dog out for a walk but needed to get away from the road .", "storylet_id": "240657"}], [{"original_text": "We started to wander through the words worried that the dog would get cold.", "album_id": "72157649714582760", "photo_flickr_id": "15578419354", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48131", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we started to wander through the words worried that the dog would get cold .", "storylet_id": "240658"}], [{"original_text": "The dog loved the snow and laid right down and it.", "album_id": "72157649714582760", "photo_flickr_id": "16014741319", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48131", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dog loved the snow and laid right down and it .", "storylet_id": "240659"}], [{"original_text": "The family came out to enjoy the first snowfall the town has received in 10 years.", "album_id": "72157649714582760", "photo_flickr_id": "16014741319", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48132", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family came out to enjoy the first snowfall the town has received in 10 years .", "storylet_id": "240660"}], [{"original_text": "The young child was seeing snow for the first time.", "album_id": "72157649714582760", "photo_flickr_id": "16200025102", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48132", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the young child was seeing snow for the first time .", "storylet_id": "240661"}], [{"original_text": "The wooded area covered in snow made for a perfect background.", "album_id": "72157649714582760", "photo_flickr_id": "16174995166", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48132", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the wooded area covered in snow made for a perfect background .", "storylet_id": "240662"}], [{"original_text": "Even the family dog was stunned by the snow.", "album_id": "72157649714582760", "photo_flickr_id": "16200845285", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48132", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the family dog was stunned by the snow .", "storylet_id": "240663"}], [{"original_text": "The entire town was under a blanket of snow for the first time in years.", "album_id": "72157649714582760", "photo_flickr_id": "16198971361", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48132", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the entire town was under a blanket of snow for the first time in years .", "storylet_id": "240664"}], [{"original_text": "My family went for a hike on a snowy day in the woods.", "album_id": "72157649714582760", "photo_flickr_id": "16014741319", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48133", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family went for a hike on a snowy day in the woods .", "storylet_id": "240665"}], [{"original_text": "Mom loves to take pictures of me.", "album_id": "72157649714582760", "photo_flickr_id": "16200025102", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48133", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom loves to take pictures of me .", "storylet_id": "240666"}], [{"original_text": "Dad loves to take pictures of me and Mom.", "album_id": "72157649714582760", "photo_flickr_id": "16174995166", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48133", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad loves to take pictures of me and mom .", "storylet_id": "240667"}], [{"original_text": "My dog doesn't like to get his picture taken.", "album_id": "72157649714582760", "photo_flickr_id": "16200845285", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48133", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my dog does n't like to get his picture taken .", "storylet_id": "240668"}], [{"original_text": "It was nice to be back in the warm car driving home.", "album_id": "72157649714582760", "photo_flickr_id": "16198971361", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48133", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was nice to be back in the warm car driving home .", "storylet_id": "240669"}], [{"original_text": "The family went for their annual winter vacation.", "album_id": "72157649714582760", "photo_flickr_id": "16014741319", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "48134", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went for their annual winter vacation .", "storylet_id": "240670"}], [{"original_text": "They took turn posing for pictures.", "album_id": "72157649714582760", "photo_flickr_id": "16200025102", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "48134", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took turn posing for pictures .", "storylet_id": "240671"}], [{"original_text": "Dad was taking a picture of his wife, his daughter and the family's dog.", "album_id": "72157649714582760", "photo_flickr_id": "16174995166", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "48134", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad was taking a picture of his wife , his daughter and the family 's dog .", "storylet_id": "240672"}], [{"original_text": "The family walked around enjoying the snow.", "album_id": "72157649714582760", "photo_flickr_id": "16200845285", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "48134", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family walked around enjoying the snow .", "storylet_id": "240673"}], [{"original_text": "The lake appeared to be frozen.", "album_id": "72157649714582760", "photo_flickr_id": "16198971361", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "48134", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lake appeared to be frozen .", "storylet_id": "240674"}], [{"original_text": "We had been begging for a great apartment.", "album_id": "72157623748328220", "photo_flickr_id": "4482272452", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "48135", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had been begging for a great apartment .", "storylet_id": "240675"}], [{"original_text": "One with an open floor plan...", "album_id": "72157623748328220", "photo_flickr_id": "4482272602", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "48135", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one with an open floor plan ...", "storylet_id": "240676"}], [{"original_text": "And a beautiful kitchen. ", "album_id": "72157623748328220", "photo_flickr_id": "4482272724", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "48135", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and a beautiful kitchen .", "storylet_id": "240677"}], [{"original_text": "Well, we were completely surprised when this one had a washer and a dryer...", "album_id": "72157623748328220", "photo_flickr_id": "4482272782", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "48135", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "well , we were completely surprised when this one had a washer and a dryer ...", "storylet_id": "240678"}], [{"original_text": "And, was a beautiful home from the outside. We signed the papers immediately.", "album_id": "72157623748328220", "photo_flickr_id": "4481625685", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "48135", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , was a beautiful home from the outside . we signed the papers immediately .", "storylet_id": "240679"}], [{"original_text": "I just bought a new house last week.", "album_id": "72157623748328220", "photo_flickr_id": "4482272602", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48136", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i just bought a new house last week .", "storylet_id": "240680"}], [{"original_text": "It very nice inside.", "album_id": "72157623748328220", "photo_flickr_id": "4482272660", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48136", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it very nice inside .", "storylet_id": "240681"}], [{"original_text": "It is very clean.", "album_id": "72157623748328220", "photo_flickr_id": "4482272724", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48136", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is very clean .", "storylet_id": "240682"}], [{"original_text": "I moved all the furniture in yesterday.", "album_id": "72157623748328220", "photo_flickr_id": "4481624337", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48136", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i moved all the furniture in yesterday .", "storylet_id": "240683"}], [{"original_text": "I still need to buy some more.", "album_id": "72157623748328220", "photo_flickr_id": "4482273048", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48136", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i still need to buy some more .", "storylet_id": "240684"}], [{"original_text": "Moving into a new house. ", "album_id": "72157623748328220", "photo_flickr_id": "4482272452", "setting": "last-3-pick-old-and-tell", "worker_id": "HW9U7W98U2K3HIP", "story_id": "48137", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "moving into a new house .", "storylet_id": "240685"}], [{"original_text": "We will need to paint the walls. ", "album_id": "72157623748328220", "photo_flickr_id": "4482272602", "setting": "last-3-pick-old-and-tell", "worker_id": "HW9U7W98U2K3HIP", "story_id": "48137", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we will need to paint the walls .", "storylet_id": "240686"}], [{"original_text": "Not much food yet. ", "album_id": "72157623748328220", "photo_flickr_id": "4482272724", "setting": "last-3-pick-old-and-tell", "worker_id": "HW9U7W98U2K3HIP", "story_id": "48137", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not much food yet .", "storylet_id": "240687"}], [{"original_text": "Plenty of laundry will be done. ", "album_id": "72157623748328220", "photo_flickr_id": "4482272782", "setting": "last-3-pick-old-and-tell", "worker_id": "HW9U7W98U2K3HIP", "story_id": "48137", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "plenty of laundry will be done .", "storylet_id": "240688"}], [{"original_text": "We will be growing a garden in the front yard. ", "album_id": "72157623748328220", "photo_flickr_id": "4481625685", "setting": "last-3-pick-old-and-tell", "worker_id": "HW9U7W98U2K3HIP", "story_id": "48137", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we will be growing a garden in the front yard .", "storylet_id": "240689"}], [{"original_text": "Our living room looked really great.", "album_id": "72157623748328220", "photo_flickr_id": "4482272452", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "48138", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our living room looked really great .", "storylet_id": "240690"}], [{"original_text": "The decorator did an amazing job with the floor.", "album_id": "72157623748328220", "photo_flickr_id": "4482272602", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "48138", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the decorator did an amazing job with the floor .", "storylet_id": "240691"}], [{"original_text": "The kitchen looked really great with the wood cabinets.", "album_id": "72157623748328220", "photo_flickr_id": "4482272724", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "48138", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kitchen looked really great with the wood cabinets .", "storylet_id": "240692"}], [{"original_text": "Everything was really interesting to see.", "album_id": "72157623748328220", "photo_flickr_id": "4482272782", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "48138", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everything was really interesting to see .", "storylet_id": "240693"}], [{"original_text": "Even the outside of the house looked great.", "album_id": "72157623748328220", "photo_flickr_id": "4481625685", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "48138", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the outside of the house looked great .", "storylet_id": "240694"}], [{"original_text": "We were given a tour of the new house.", "album_id": "72157623748328220", "photo_flickr_id": "4482272602", "setting": "last-3-pick-old-and-tell", "worker_id": "ZBCKXZ2CM1NBZDZ", "story_id": "48139", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were given a tour of the new house .", "storylet_id": "240695"}], [{"original_text": "The first stop was the kitchen.", "album_id": "72157623748328220", "photo_flickr_id": "4482272660", "setting": "last-3-pick-old-and-tell", "worker_id": "ZBCKXZ2CM1NBZDZ", "story_id": "48139", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first stop was the kitchen .", "storylet_id": "240696"}], [{"original_text": "The kitchen has a nice setup with the range centrally located.", "album_id": "72157623748328220", "photo_flickr_id": "4482272724", "setting": "last-3-pick-old-and-tell", "worker_id": "ZBCKXZ2CM1NBZDZ", "story_id": "48139", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kitchen has a nice setup with the range centrally located .", "storylet_id": "240697"}], [{"original_text": "The master bedroom was very large with nice lighting.", "album_id": "72157623748328220", "photo_flickr_id": "4481624337", "setting": "last-3-pick-old-and-tell", "worker_id": "ZBCKXZ2CM1NBZDZ", "story_id": "48139", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the master bedroom was very large with nice lighting .", "storylet_id": "240698"}], [{"original_text": "Next we saw the updated bathroom and it was huge!", "album_id": "72157623748328220", "photo_flickr_id": "4482273048", "setting": "last-3-pick-old-and-tell", "worker_id": "ZBCKXZ2CM1NBZDZ", "story_id": "48139", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "next we saw the updated bathroom and it was huge !", "storylet_id": "240699"}], [{"original_text": "The committee was getting ready for an important meeting.", "album_id": "72157623213948893", "photo_flickr_id": "4326096875", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48140", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the committee was getting ready for an important meeting .", "storylet_id": "240700"}], [{"original_text": "Bob greeted Ted, a new committe member.", "album_id": "72157623213948893", "photo_flickr_id": "4326097133", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48140", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] greeted [male] , a new committe member .", "storylet_id": "240701"}], [{"original_text": "They were starting to sit down.", "album_id": "72157623213948893", "photo_flickr_id": "4326833754", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48140", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were starting to sit down .", "storylet_id": "240702"}], [{"original_text": "The cameras were ready.", "album_id": "72157623213948893", "photo_flickr_id": "4326097901", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48140", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cameras were ready .", "storylet_id": "240703"}], [{"original_text": "Soon the dicussion was underway.", "album_id": "72157623213948893", "photo_flickr_id": "4326835286", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48140", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "soon the dicussion was underway .", "storylet_id": "240704"}], [{"original_text": "So here we are, ready to hear what the government is up to these days.", "album_id": "72157623213948893", "photo_flickr_id": "4326096709", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "48141", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so here we are , ready to hear what the government is up to these days .", "storylet_id": "240705"}], [{"original_text": "A sign on the wall as you walk into the conference hall.", "album_id": "72157623213948893", "photo_flickr_id": "4326096875", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "48141", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a sign on the wall as you walk into the conference hall .", "storylet_id": "240706"}], [{"original_text": "The name tags of the speakers directing them to their seats.", "album_id": "72157623213948893", "photo_flickr_id": "4326833754", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "48141", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the name tags of the speakers directing them to their seats .", "storylet_id": "240707"}], [{"original_text": "The news reporter brings in his big camera.", "album_id": "72157623213948893", "photo_flickr_id": "4326097901", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "48141", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the news reporter brings in his big camera .", "storylet_id": "240708"}], [{"original_text": "The court-reporter takes her position about to transcribe each word.", "album_id": "72157623213948893", "photo_flickr_id": "4326098467", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "48141", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the court-reporter takes her position about to transcribe each word .", "storylet_id": "240709"}], [{"original_text": "We are having a meeting today on rules and regulations.", "album_id": "72157623213948893", "photo_flickr_id": "4326096875", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48142", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are having a meeting today on rules and regulations .", "storylet_id": "240710"}], [{"original_text": "The committee has gathered for the first time this year", "album_id": "72157623213948893", "photo_flickr_id": "4326097133", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48142", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the committee has gathered for the first time this year", "storylet_id": "240711"}], [{"original_text": "We are all getting ready to talk.", "album_id": "72157623213948893", "photo_flickr_id": "4326833754", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48142", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are all getting ready to talk .", "storylet_id": "240712"}], [{"original_text": "Once we are seated the speakers take the stage.", "album_id": "72157623213948893", "photo_flickr_id": "4326097901", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48142", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once we are seated the speakers take the stage .", "storylet_id": "240713"}], [{"original_text": "Then the board starts to make a ruling on the desicions", "album_id": "72157623213948893", "photo_flickr_id": "4326835286", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48142", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then the board starts to make a ruling on the desicions", "storylet_id": "240714"}], [{"original_text": "The Committee on Rules and Administration has a lot to decide today.", "album_id": "72157623213948893", "photo_flickr_id": "4326096875", "setting": "last-3-pick-old-and-tell", "worker_id": "SM64WCRJYPGB0Y7", "story_id": "48143", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization organization organization organization organization has a lot to decide today .", "storylet_id": "240715"}], [{"original_text": "Mr. Whithers is pushing to get a lot changed for the better.", "album_id": "72157623213948893", "photo_flickr_id": "4326097133", "setting": "last-3-pick-old-and-tell", "worker_id": "SM64WCRJYPGB0Y7", "story_id": "48143", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mr. whithers is pushing to get a lot changed for the better .", "storylet_id": "240716"}], [{"original_text": "It's hard to say just who is on his side this day.", "album_id": "72157623213948893", "photo_flickr_id": "4326833754", "setting": "last-3-pick-old-and-tell", "worker_id": "SM64WCRJYPGB0Y7", "story_id": "48143", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's hard to say just who is on his side this day .", "storylet_id": "240717"}], [{"original_text": "The eyes of the community are on them as deliberate.", "album_id": "72157623213948893", "photo_flickr_id": "4326097901", "setting": "last-3-pick-old-and-tell", "worker_id": "SM64WCRJYPGB0Y7", "story_id": "48143", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the eyes of the community are on them as deliberate .", "storylet_id": "240718"}], [{"original_text": "It will be hard to convince his colleagues of these changes.", "album_id": "72157623213948893", "photo_flickr_id": "4326835286", "setting": "last-3-pick-old-and-tell", "worker_id": "SM64WCRJYPGB0Y7", "story_id": "48143", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it will be hard to convince his colleagues of these changes .", "storylet_id": "240719"}], [{"original_text": "Today the committee of rules is meeting.", "album_id": "72157623213948893", "photo_flickr_id": "4326096875", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48144", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today the committee of rules is meeting .", "storylet_id": "240720"}], [{"original_text": "They are going to be hearing from 4 people today in 4 cases.", "album_id": "72157623213948893", "photo_flickr_id": "4326097133", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48144", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are going to be hearing from 4 people today in 4 cases .", "storylet_id": "240721"}], [{"original_text": "This is the first time they are meeting in 2 months so they have a lot to discuss.", "album_id": "72157623213948893", "photo_flickr_id": "4326833754", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48144", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the first time they are meeting in 2 months so they have a lot to discuss .", "storylet_id": "240722"}], [{"original_text": "It is also going to be taped for public TV!", "album_id": "72157623213948893", "photo_flickr_id": "4326097901", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48144", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is also going to be taped for public tv !", "storylet_id": "240723"}], [{"original_text": "The committee sits down to begin hearing cases.", "album_id": "72157623213948893", "photo_flickr_id": "4326835286", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48144", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the committee sits down to begin hearing cases .", "storylet_id": "240724"}], [{"original_text": "One day, Amy decided that she was craving some food from Johnny's Big Red Grill.", "album_id": "72157594458032284", "photo_flickr_id": "345894487", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48145", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one day , [female] decided that she was craving some food from [male] 's organization organization organization .", "storylet_id": "240725"}], [{"original_text": "So she went inside to get her some grub.", "album_id": "72157594458032284", "photo_flickr_id": "344869553", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48145", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so she went inside to get her some grub .", "storylet_id": "240726"}], [{"original_text": "But when she looked at the menu, there were so many choices!", "album_id": "72157594458032284", "photo_flickr_id": "344871581", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48145", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but when she looked at the menu , there were so many choices !", "storylet_id": "240727"}], [{"original_text": "And everything looked so good!", "album_id": "72157594458032284", "photo_flickr_id": "344870673", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48145", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and everything looked so good !", "storylet_id": "240728"}], [{"original_text": "But in the end, Amy was able to decide on a nice, juicy hamburger.", "album_id": "72157594458032284", "photo_flickr_id": "344874225", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48145", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but in the end , [female] was able to decide on a nice , juicy hamburger .", "storylet_id": "240729"}], [{"original_text": "The cafe was open late.", "album_id": "72157594458032284", "photo_flickr_id": "344867930", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "48146", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cafe was open late .", "storylet_id": "240730"}], [{"original_text": "John entered the empty cafe just before they closed.", "album_id": "72157594458032284", "photo_flickr_id": "344869553", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "48146", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] entered the empty cafe just before they closed .", "storylet_id": "240731"}], [{"original_text": "He perused the menu to decide what to order.", "album_id": "72157594458032284", "photo_flickr_id": "344871581", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "48146", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he perused the menu to decide what to order .", "storylet_id": "240732"}], [{"original_text": "The burger looked and tasted delicious.", "album_id": "72157594458032284", "photo_flickr_id": "344874225", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "48146", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the burger looked and tasted delicious .", "storylet_id": "240733"}], [{"original_text": "The next morning, though, John had a stomach ache.", "album_id": "72157594458032284", "photo_flickr_id": "345895086", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "48146", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the next morning , though , [male] had a stomach ache .", "storylet_id": "240734"}], [{"original_text": "A great dinner at the local sandwich shop.", "album_id": "72157594458032284", "photo_flickr_id": "344867930", "setting": "last-3-pick-old-and-tell", "worker_id": "XCUTOZYCWIP8EQ2", "story_id": "48147", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a great dinner at the local sandwich shop .", "storylet_id": "240735"}], [{"original_text": "Inside all the fresh ingredients are in full view for the customers.", "album_id": "72157594458032284", "photo_flickr_id": "344869553", "setting": "last-3-pick-old-and-tell", "worker_id": "XCUTOZYCWIP8EQ2", "story_id": "48147", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside all the fresh ingredients are in full view for the customers .", "storylet_id": "240736"}], [{"original_text": "The menu is big with a delicious selection.", "album_id": "72157594458032284", "photo_flickr_id": "344871581", "setting": "last-3-pick-old-and-tell", "worker_id": "XCUTOZYCWIP8EQ2", "story_id": "48147", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the menu is big with a delicious selection .", "storylet_id": "240737"}], [{"original_text": "The food is made to order exactly for each customers preference.", "album_id": "72157594458032284", "photo_flickr_id": "344874225", "setting": "last-3-pick-old-and-tell", "worker_id": "XCUTOZYCWIP8EQ2", "story_id": "48147", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food is made to order exactly for each customers preference .", "storylet_id": "240738"}], [{"original_text": "Customers always go home feeling satisfied with their meal.", "album_id": "72157594458032284", "photo_flickr_id": "345895086", "setting": "last-3-pick-old-and-tell", "worker_id": "XCUTOZYCWIP8EQ2", "story_id": "48147", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "customers always go home feeling satisfied with their meal .", "storylet_id": "240739"}], [{"original_text": "After we got through traffic we finally made it to the restaurant.", "album_id": "72157594458032284", "photo_flickr_id": "345894487", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48148", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after we got through traffic we finally made it to the restaurant .", "storylet_id": "240740"}], [{"original_text": "We were so hungry so we all knew exactly what to order.", "album_id": "72157594458032284", "photo_flickr_id": "344869553", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48148", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were so hungry so we all knew exactly what to order .", "storylet_id": "240741"}], [{"original_text": "Their menu is huge.", "album_id": "72157594458032284", "photo_flickr_id": "344871581", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48148", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their menu is huge .", "storylet_id": "240742"}], [{"original_text": "The food in the display case was making my mouth water.", "album_id": "72157594458032284", "photo_flickr_id": "344870673", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48148", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food in the display case was making my mouth water .", "storylet_id": "240743"}], [{"original_text": "I ordered the biggest burger they had and it was amazing.", "album_id": "72157594458032284", "photo_flickr_id": "344874225", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48148", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ordered the biggest burger they had and it was amazing .", "storylet_id": "240744"}], [{"original_text": "Ooh, Johnny's might make for a good meal.", "album_id": "72157594458032284", "photo_flickr_id": "345894487", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "48149", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "ooh , [male] 's might make for a good meal .", "storylet_id": "240745"}], [{"original_text": "Stepping in and I'm excited for the choices.", "album_id": "72157594458032284", "photo_flickr_id": "344869553", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "48149", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "stepping in and i 'm excited for the choices .", "storylet_id": "240746"}], [{"original_text": "I'm so overwhelmed by the menu options but glad that they don't just make two things.", "album_id": "72157594458032284", "photo_flickr_id": "344871581", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "48149", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i 'm so overwhelmed by the menu options but glad that they do n't just make two things .", "storylet_id": "240747"}], [{"original_text": "The food looks fresh and my mouth is getting watery.", "album_id": "72157594458032284", "photo_flickr_id": "344870673", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "48149", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food looks fresh and my mouth is getting watery .", "storylet_id": "240748"}], [{"original_text": "Finally I have my food and I'm ready to pig out.", "album_id": "72157594458032284", "photo_flickr_id": "344874225", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "48149", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally i have my food and i 'm ready to pig out .", "storylet_id": "240749"}], [{"original_text": "I was lost and about to be late to work.", "album_id": "72157628703718831", "photo_flickr_id": "6630054875", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48150", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was lost and about to be late to work .", "storylet_id": "240750"}], [{"original_text": "I drove around as fast as I could until I found the school.", "album_id": "72157628703718831", "photo_flickr_id": "6630055683", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48150", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i drove around as fast as i could until i found the school .", "storylet_id": "240751"}], [{"original_text": "At one point I went in the wrong direction and was outside of the city.", "album_id": "72157628703718831", "photo_flickr_id": "6630056949", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48150", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at one point i went in the wrong direction and was outside of the city .", "storylet_id": "240752"}], [{"original_text": "Fortunately I finally found the school and made it to class just in time.", "album_id": "72157628703718831", "photo_flickr_id": "6630063757", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48150", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fortunately i finally found the school and made it to class just in time .", "storylet_id": "240753"}], [{"original_text": "I quickly started the lesson.", "album_id": "72157628703718831", "photo_flickr_id": "6630064553", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48150", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i quickly started the lesson .", "storylet_id": "240754"}], [{"original_text": "There once was a couple who prayed for a bundle of joy.", "album_id": "72157628703718831", "photo_flickr_id": "6630053565", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48151", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there once was a couple who prayed for a bundle of joy .", "storylet_id": "240755"}], [{"original_text": "And then one day, that bundle of joy arrived!", "album_id": "72157628703718831", "photo_flickr_id": "6630065207", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48151", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and then one day , that bundle of joy arrived !", "storylet_id": "240756"}], [{"original_text": "She grew up to be a sweet girl!", "album_id": "72157628703718831", "photo_flickr_id": "6630066211", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48151", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she grew up to be a sweet girl !", "storylet_id": "240757"}], [{"original_text": "Who made crazy faces,", "album_id": "72157628703718831", "photo_flickr_id": "6630066865", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48151", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "who made crazy faces ,", "storylet_id": "240758"}], [{"original_text": "and loved the spotlight.", "album_id": "72157628703718831", "photo_flickr_id": "6630067587", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48151", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and loved the spotlight .", "storylet_id": "240759"}], [{"original_text": "The sun was rising over the lake.", "album_id": "72157628703718831", "photo_flickr_id": "6630053565", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "48152", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sun was rising over the lake .", "storylet_id": "240760"}], [{"original_text": "The baby started to fuss and she woke her sister up.", "album_id": "72157628703718831", "photo_flickr_id": "6630065207", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "48152", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the baby started to fuss and she woke her sister up .", "storylet_id": "240761"}], [{"original_text": "Big sister decided she wanted to wear her favorite pink shirt.", "album_id": "72157628703718831", "photo_flickr_id": "6630066211", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "48152", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "big sister decided she wanted to wear her favorite pink shirt .", "storylet_id": "240762"}], [{"original_text": "She didn't want her Mom to comb her curly hair.", "album_id": "72157628703718831", "photo_flickr_id": "6630066865", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "48152", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she did n't want her mom to comb her curly hair .", "storylet_id": "240763"}], [{"original_text": "She was disappointed that her Mom wouldn't let her have pancakes for breakfast.", "album_id": "72157628703718831", "photo_flickr_id": "6630067587", "setting": "last-3-pick-old-and-tell", "worker_id": "ULOISEM6BHZY9TW", "story_id": "48152", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was disappointed that her mom would n't let her have pancakes for breakfast .", "storylet_id": "240764"}], [{"original_text": "Exploring under the highways exposed a barren side of the land.", "album_id": "72157628703718831", "photo_flickr_id": "6630054875", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "48153", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "exploring under the highways exposed a barren side of the land .", "storylet_id": "240765"}], [{"original_text": "We loved the view out of the window.", "album_id": "72157628703718831", "photo_flickr_id": "6630055683", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "48153", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we loved the view out of the window .", "storylet_id": "240766"}], [{"original_text": "We even went to check out the outskirts of the city.", "album_id": "72157628703718831", "photo_flickr_id": "6630056949", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "48153", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even went to check out the outskirts of the city .", "storylet_id": "240767"}], [{"original_text": "Our classes were always interesting.", "album_id": "72157628703718831", "photo_flickr_id": "6630063757", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "48153", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our classes were always interesting .", "storylet_id": "240768"}], [{"original_text": "The teacher gave it her all in lessons.", "album_id": "72157628703718831", "photo_flickr_id": "6630064553", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "48153", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the teacher gave it her all in lessons .", "storylet_id": "240769"}], [{"original_text": "I was so tired of looking at the dingy city. I needed a change.", "album_id": "72157628703718831", "photo_flickr_id": "6630054875", "setting": "last-3-pick-old-and-tell", "worker_id": "2GR6C9JKSQ1I087", "story_id": "48154", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was so tired of looking at the dingy city . i needed a change .", "storylet_id": "240770"}], [{"original_text": "I'm up for a road trip. Goodbye hustle and bustle.", "album_id": "72157628703718831", "photo_flickr_id": "6630055683", "setting": "last-3-pick-old-and-tell", "worker_id": "2GR6C9JKSQ1I087", "story_id": "48154", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm up for a road trip . goodbye hustle and bustle .", "storylet_id": "240771"}], [{"original_text": "Ah...fresh air! I can feel myself relaxing already.", "album_id": "72157628703718831", "photo_flickr_id": "6630056949", "setting": "last-3-pick-old-and-tell", "worker_id": "2GR6C9JKSQ1I087", "story_id": "48154", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "ah ... fresh air ! i can feel myself relaxing already .", "storylet_id": "240772"}], [{"original_text": "That trip was great and I've returned to work with new energy.", "album_id": "72157628703718831", "photo_flickr_id": "6630063757", "setting": "last-3-pick-old-and-tell", "worker_id": "2GR6C9JKSQ1I087", "story_id": "48154", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that trip was great and i 've returned to work with new energy .", "storylet_id": "240773"}], [{"original_text": "I\"m enjoying my class so much more now. Maybe I should get away more often.", "album_id": "72157628703718831", "photo_flickr_id": "6630064553", "setting": "last-3-pick-old-and-tell", "worker_id": "2GR6C9JKSQ1I087", "story_id": "48154", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i '' m enjoying my class so much more now . maybe i should get away more often .", "storylet_id": "240774"}], [{"original_text": "The students gathered on the yellow school bus for a trip to the Big Apple!", "album_id": "72157628704515723", "photo_flickr_id": "6630323985", "setting": "first-2-pick-and-tell", "worker_id": "1QSY7PXEXYORE02", "story_id": "48155", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the students gathered on the yellow school bus for a trip to the big apple !", "storylet_id": "240775"}], [{"original_text": "They were excited to see all the attractions while driving around downtown.", "album_id": "72157628704515723", "photo_flickr_id": "6630278879", "setting": "first-2-pick-and-tell", "worker_id": "1QSY7PXEXYORE02", "story_id": "48155", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were excited to see all the attractions while driving around downtown .", "storylet_id": "240776"}], [{"original_text": "They crossed over a bridge and looked down at the water below.", "album_id": "72157628704515723", "photo_flickr_id": "6630326891", "setting": "first-2-pick-and-tell", "worker_id": "1QSY7PXEXYORE02", "story_id": "48155", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they crossed over a bridge and looked down at the water below .", "storylet_id": "240777"}], [{"original_text": "The bus driver let them off to explore the pier by the water.", "album_id": "72157628704515723", "photo_flickr_id": "6630311425", "setting": "first-2-pick-and-tell", "worker_id": "1QSY7PXEXYORE02", "story_id": "48155", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bus driver let them off to explore the pier by the water .", "storylet_id": "240778"}], [{"original_text": "They ended their trip by staring off into the cool calm waters. ", "album_id": "72157628704515723", "photo_flickr_id": "6630346235", "setting": "first-2-pick-and-tell", "worker_id": "1QSY7PXEXYORE02", "story_id": "48155", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ended their trip by staring off into the cool calm waters .", "storylet_id": "240779"}], [{"original_text": "The class field trip to New York was a delightful experience.", "album_id": "72157628704515723", "photo_flickr_id": "6630323985", "setting": "first-2-pick-and-tell", "worker_id": "ZE7D73GNC9AJ7JO", "story_id": "48156", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the class field trip to location location was a delightful experience .", "storylet_id": "240780"}], [{"original_text": "First, we went out to the pier, where some tried there hand at fishing.", "album_id": "72157628704515723", "photo_flickr_id": "6630311425", "setting": "first-2-pick-and-tell", "worker_id": "ZE7D73GNC9AJ7JO", "story_id": "48156", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first , we went out to the pier , where some tried there hand at fishing .", "storylet_id": "240781"}], [{"original_text": "Others just took in the great views of the skyline.", "album_id": "72157628704515723", "photo_flickr_id": "6630320383", "setting": "first-2-pick-and-tell", "worker_id": "ZE7D73GNC9AJ7JO", "story_id": "48156", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others just took in the great views of the skyline .", "storylet_id": "240782"}], [{"original_text": "Then there was the infamous hustle and bustle of Wall Street.", "album_id": "72157628704515723", "photo_flickr_id": "6630336757", "setting": "first-2-pick-and-tell", "worker_id": "ZE7D73GNC9AJ7JO", "story_id": "48156", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then there was the infamous hustle and bustle of wall street .", "storylet_id": "240783"}], [{"original_text": "New York City has so much to offer.", "album_id": "72157628704515723", "photo_flickr_id": "6630340383", "setting": "first-2-pick-and-tell", "worker_id": "ZE7D73GNC9AJ7JO", "story_id": "48156", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "location location location has so much to offer .", "storylet_id": "240784"}], [{"original_text": "I hopped in my bus last Thursday to being work.", "album_id": "72157628704515723", "photo_flickr_id": "6630323985", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48157", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i hopped in my bus last thursday to being work .", "storylet_id": "240785"}], [{"original_text": "There was a field trip today so I had to work extra.", "album_id": "72157628704515723", "photo_flickr_id": "6630278879", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48157", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a field trip today so i had to work extra .", "storylet_id": "240786"}], [{"original_text": "I took the bus across the bridge and we all went the pier.", "album_id": "72157628704515723", "photo_flickr_id": "6630326891", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48157", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took the bus across the bridge and we all went the pier .", "storylet_id": "240787"}], [{"original_text": "Everybody had a good time there.", "album_id": "72157628704515723", "photo_flickr_id": "6630311425", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48157", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everybody had a good time there .", "storylet_id": "240788"}], [{"original_text": "The water was so bright and we could see the city in the distance.", "album_id": "72157628704515723", "photo_flickr_id": "6630346235", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48157", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the water was so bright and we could see the city in the distance .", "storylet_id": "240789"}], [{"original_text": "The school buses take the kids on a trip through the city.", "album_id": "72157628704515723", "photo_flickr_id": "6630323985", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "48158", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the school buses take the kids on a trip through the city .", "storylet_id": "240790"}], [{"original_text": "Looking out over the river can be a calming experience.", "album_id": "72157628704515723", "photo_flickr_id": "6630311425", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "48158", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "looking out over the river can be a calming experience .", "storylet_id": "240791"}], [{"original_text": "Speaking of calming, one can gaze out upon the river and see the city.", "album_id": "72157628704515723", "photo_flickr_id": "6630320383", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "48158", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "speaking of calming , one can gaze out upon the river and see the city .", "storylet_id": "240792"}], [{"original_text": "Wall Street is where the magic happens... and the lying, cheating, and stealing.", "album_id": "72157628704515723", "photo_flickr_id": "6630336757", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "48158", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "wall street is where the magic happens ... and the lying , cheating , and stealing .", "storylet_id": "240793"}], [{"original_text": "New York, a great city.", "album_id": "72157628704515723", "photo_flickr_id": "6630340383", "setting": "last-3-pick-old-and-tell", "worker_id": "99PD13U3I1H8PGX", "story_id": "48158", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "location location , a great city .", "storylet_id": "240794"}], [{"original_text": "It all started that morning as I got ready to go to school.", "album_id": "72157628704515723", "photo_flickr_id": "6630323985", "setting": "last-3-pick-old-and-tell", "worker_id": "52593T83C0ZOWS9", "story_id": "48159", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it all started that morning as i got ready to go to school .", "storylet_id": "240795"}], [{"original_text": "But, just before I left, my dad said we were skipping and going on a trip to the city and beyond!", "album_id": "72157628704515723", "photo_flickr_id": "6630278879", "setting": "last-3-pick-old-and-tell", "worker_id": "52593T83C0ZOWS9", "story_id": "48159", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but , just before i left , my dad said we were skipping and going on a trip to the city and beyond !", "storylet_id": "240796"}], [{"original_text": "We went across a huge bridge!", "album_id": "72157628704515723", "photo_flickr_id": "6630326891", "setting": "last-3-pick-old-and-tell", "worker_id": "52593T83C0ZOWS9", "story_id": "48159", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went across a huge bridge !", "storylet_id": "240797"}], [{"original_text": "Then we took a walk and watched some people who were fishing. ", "album_id": "72157628704515723", "photo_flickr_id": "6630311425", "setting": "last-3-pick-old-and-tell", "worker_id": "52593T83C0ZOWS9", "story_id": "48159", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we took a walk and watched some people who were fishing .", "storylet_id": "240798"}], [{"original_text": "After our walk, we took a break and stared at the beautiful city skyline. ", "album_id": "72157628704515723", "photo_flickr_id": "6630346235", "setting": "last-3-pick-old-and-tell", "worker_id": "52593T83C0ZOWS9", "story_id": "48159", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after our walk , we took a break and stared at the beautiful city skyline .", "storylet_id": "240799"}], [{"original_text": "After I woke up yesterday I went to head to the farm.", "album_id": "72157623639739647", "photo_flickr_id": "4488468130", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48160", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after i woke up yesterday i went to head to the farm .", "storylet_id": "240800"}], [{"original_text": "I wanted to see all the horses there.", "album_id": "72157623639739647", "photo_flickr_id": "4487819525", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48160", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i wanted to see all the horses there .", "storylet_id": "240801"}], [{"original_text": "I took a shortcut through the alleys.", "album_id": "72157623639739647", "photo_flickr_id": "4487819677", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48160", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took a shortcut through the alleys .", "storylet_id": "240802"}], [{"original_text": "When I got to the barn the horse was glad to see me.", "album_id": "72157623639739647", "photo_flickr_id": "4488470792", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48160", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when i got to the barn the horse was glad to see me .", "storylet_id": "240803"}], [{"original_text": "I brushed him.", "album_id": "72157623639739647", "photo_flickr_id": "4487822401", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48160", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i brushed him .", "storylet_id": "240804"}], [{"original_text": "Dale moved to Miami this past weekend.", "album_id": "72157623639739647", "photo_flickr_id": "4487824563", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "48161", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] moved to location this past weekend .", "storylet_id": "240805"}], [{"original_text": "Dale is living in an apartment close to the beach.", "album_id": "72157623639739647", "photo_flickr_id": "4487824137", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "48161", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is living in an apartment close to the beach .", "storylet_id": "240806"}], [{"original_text": "All around Dale's apartment are some massive mansions that celebrities live in.", "album_id": "72157623639739647", "photo_flickr_id": "4487825457", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "48161", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all around [male] 's apartment are some massive mansions that celebrities live in .", "storylet_id": "240807"}], [{"original_text": "Dale thinks he is gonna like living in Miami.", "album_id": "72157623639739647", "photo_flickr_id": "4488484148", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "48161", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] thinks he is gon na like living in location .", "storylet_id": "240808"}], [{"original_text": "Dale spends most of his time now out on the beach catching some rays and relaxing.", "album_id": "72157623639739647", "photo_flickr_id": "4488486382", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "48161", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] spends most of his time now out on the beach catching some rays and relaxing .", "storylet_id": "240809"}], [{"original_text": "There are many shops and businesses near the shore.", "album_id": "72157623639739647", "photo_flickr_id": "4487824563", "setting": "last-3-pick-old-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "48162", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are many shops and businesses near the shore .", "storylet_id": "240810"}], [{"original_text": "The graffiti on this building seems to actually be an improvement. ", "album_id": "72157623639739647", "photo_flickr_id": "4487824137", "setting": "last-3-pick-old-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "48162", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the graffiti on this building seems to actually be an improvement .", "storylet_id": "240811"}], [{"original_text": "This house really has a tropical look with the palm trees surrounding it. ", "album_id": "72157623639739647", "photo_flickr_id": "4487825457", "setting": "last-3-pick-old-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "48162", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this house really has a tropical look with the palm trees surrounding it .", "storylet_id": "240812"}], [{"original_text": "The streets seem to be quite this time of day, wonder where all the people are?", "album_id": "72157623639739647", "photo_flickr_id": "4488484148", "setting": "last-3-pick-old-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "48162", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the streets seem to be quite this time of day , wonder where all the people are ?", "storylet_id": "240813"}], [{"original_text": "It is very relaxing looking out over the water and listening to the waves. ", "album_id": "72157623639739647", "photo_flickr_id": "4488486382", "setting": "last-3-pick-old-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "48162", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is very relaxing looking out over the water and listening to the waves .", "storylet_id": "240814"}], [{"original_text": "Looking at the art work on the wall.", "album_id": "72157623639739647", "photo_flickr_id": "4488468130", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48163", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "looking at the art work on the wall .", "storylet_id": "240815"}], [{"original_text": "Here we are trying to figure out what we are going to do next.", "album_id": "72157623639739647", "photo_flickr_id": "4487819525", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48163", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we are trying to figure out what we are going to do next .", "storylet_id": "240816"}], [{"original_text": "Here is where my cousin lives.", "album_id": "72157623639739647", "photo_flickr_id": "4487819677", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48163", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is where my cousin lives .", "storylet_id": "240817"}], [{"original_text": "One of my horses looking happy.", "album_id": "72157623639739647", "photo_flickr_id": "4488470792", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48163", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of my horses looking happy .", "storylet_id": "240818"}], [{"original_text": "Here is the other love of my life.", "album_id": "72157623639739647", "photo_flickr_id": "4487822401", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48163", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is the other love of my life .", "storylet_id": "240819"}], [{"original_text": "I visited South America last week with my family.", "album_id": "72157623639739647", "photo_flickr_id": "4488468130", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48164", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i visited location location last week with my family .", "storylet_id": "240820"}], [{"original_text": "My parent's and I had never been out of the country.", "album_id": "72157623639739647", "photo_flickr_id": "4487819525", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48164", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my parent 's and i had never been out of the country .", "storylet_id": "240821"}], [{"original_text": "We rented a car for our trip.", "album_id": "72157623639739647", "photo_flickr_id": "4487819677", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48164", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we rented a car for our trip .", "storylet_id": "240822"}], [{"original_text": "Our hotel ended up being a barn.", "album_id": "72157623639739647", "photo_flickr_id": "4488470792", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48164", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our hotel ended up being a barn .", "storylet_id": "240823"}], [{"original_text": "With cute little horses living in the yard.", "album_id": "72157623639739647", "photo_flickr_id": "4487822401", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48164", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with cute little horses living in the yard .", "storylet_id": "240824"}], [{"original_text": "The day began with a conversation in the hallway.", "album_id": "72157594324557686", "photo_flickr_id": "133241105", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48165", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day began with a conversation in the hallway .", "storylet_id": "240825"}], [{"original_text": "The office was very laid back.", "album_id": "72157594324557686", "photo_flickr_id": "133241121", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48165", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the office was very laid back .", "storylet_id": "240826"}], [{"original_text": "Our secretary made most of the calls.", "album_id": "72157594324557686", "photo_flickr_id": "133241164", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48165", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our secretary made most of the calls .", "storylet_id": "240827"}], [{"original_text": "The boss was happy to be there too.", "album_id": "72157594324557686", "photo_flickr_id": "133241189", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48165", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boss was happy to be there too .", "storylet_id": "240828"}], [{"original_text": "We drew a diagram as a department.", "album_id": "72157594324557686", "photo_flickr_id": "133241253", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48165", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we drew a diagram as a department .", "storylet_id": "240829"}], [{"original_text": "Just taking a break while I decide what project to start on next.", "album_id": "72157594324557686", "photo_flickr_id": "133241079", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48166", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "just taking a break while i decide what project to start on next .", "storylet_id": "240830"}], [{"original_text": "I can't be bothered to talk, I'm brokering a big deal.", "album_id": "72157594324557686", "photo_flickr_id": "133241164", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48166", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i ca n't be bothered to talk , i 'm brokering a big deal .", "storylet_id": "240831"}], [{"original_text": "The view from my office, how stunning.", "album_id": "72157594324557686", "photo_flickr_id": "133241174", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48166", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the view from my office , how stunning .", "storylet_id": "240832"}], [{"original_text": "Standing outside the NBC studio in San Diego.", "album_id": "72157594324557686", "photo_flickr_id": "133241329", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48166", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "standing outside the organization studio in location location .", "storylet_id": "240833"}], [{"original_text": "Two co-workers chat about the big new project coming to the studio.", "album_id": "72157594324557686", "photo_flickr_id": "133241364", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48166", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "two co-workers chat about the big new project coming to the studio .", "storylet_id": "240834"}], [{"original_text": "The work environment is very friendly at my new job. ", "album_id": "72157594324557686", "photo_flickr_id": "133241079", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48167", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the work environment is very friendly at my new job .", "storylet_id": "240835"}], [{"original_text": "Although, some are more serious than others. ", "album_id": "72157594324557686", "photo_flickr_id": "133241164", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48167", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "although , some are more serious than others .", "storylet_id": "240836"}], [{"original_text": "The view from my office makes it all worth it. ", "album_id": "72157594324557686", "photo_flickr_id": "133241174", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48167", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the view from my office makes it all worth it .", "storylet_id": "240837"}], [{"original_text": "I'd say, working for NBC San Diego is very rewarding. ", "album_id": "72157594324557686", "photo_flickr_id": "133241329", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48167", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'd say , working for organization location location is very rewarding .", "storylet_id": "240838"}], [{"original_text": "My boss seems to appreciate me and even gave me a raise. ", "album_id": "72157594324557686", "photo_flickr_id": "133241364", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48167", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my boss seems to appreciate me and even gave me a raise .", "storylet_id": "240839"}], [{"original_text": "Mike and Jessica talk about the seating and office arrangements for the new office.", "album_id": "72157594324557686", "photo_flickr_id": "133241105", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48168", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] talk about the seating and office arrangements for the new office .", "storylet_id": "240840"}], [{"original_text": "Amber and John love Mike and Jessica's ideas.", "album_id": "72157594324557686", "photo_flickr_id": "133241121", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48168", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] and [male] love [male] and [female] 's ideas .", "storylet_id": "240841"}], [{"original_text": "Larry calls in Melany to get help on organizing the new seating charts and office rooms.", "album_id": "72157594324557686", "photo_flickr_id": "133241164", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48168", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] calls in [female] to get help on organizing the new seating charts and office rooms .", "storylet_id": "240842"}], [{"original_text": "Melany uses her computer and figures up different ways to set up the offices and seats.", "album_id": "72157594324557686", "photo_flickr_id": "133241189", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48168", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] uses her computer and figures up different ways to set up the offices and seats .", "storylet_id": "240843"}], [{"original_text": "After working hard she displays the office chart on the way. Everybody has their own chairs and office.", "album_id": "72157594324557686", "photo_flickr_id": "133241253", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48168", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after working hard she displays the office chart on the way . everybody has their own chairs and office .", "storylet_id": "240844"}], [{"original_text": "Arriving to work my first day as an intern, I overheard two accountants having a discussion in the hallway.", "album_id": "72157594324557686", "photo_flickr_id": "133241105", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "48169", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "arriving to work my first day as an intern , i overheard two accountants having a discussion in the hallway .", "storylet_id": "240845"}], [{"original_text": "I then went to see my boss and his assistant to find out what I needed to do.", "album_id": "72157594324557686", "photo_flickr_id": "133241121", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "48169", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i then went to see my boss and his assistant to find out what i needed to do .", "storylet_id": "240846"}], [{"original_text": "I waited for one of the partners to get off the phone so I could ask for the file needed.", "album_id": "72157594324557686", "photo_flickr_id": "133241164", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "48169", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i waited for one of the partners to get off the phone so i could ask for the file needed .", "storylet_id": "240847"}], [{"original_text": "I then took the file to the business manager so she could input the information from the file into the firm's computer system.", "album_id": "72157594324557686", "photo_flickr_id": "133241189", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "48169", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i then took the file to the business manager so she could input the information from the file into the firm 's computer system .", "storylet_id": "240848"}], [{"original_text": "Then, she gave me a diagram to put in the conference room as a reference for the staff meeting at the end of the day.", "album_id": "72157594324557686", "photo_flickr_id": "133241253", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "48169", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then , she gave me a diagram to put in the conference room as a reference for the staff meeting at the end of the day .", "storylet_id": "240849"}], [{"original_text": "I went with my friend to the concert last week.", "album_id": "72157623510015317", "photo_flickr_id": "4407194567", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48170", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went with my friend to the concert last week .", "storylet_id": "240850"}], [{"original_text": "We were both very excited.", "album_id": "72157623510015317", "photo_flickr_id": "4407194845", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48170", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were both very excited .", "storylet_id": "240851"}], [{"original_text": "It was our first concert together.", "album_id": "72157623510015317", "photo_flickr_id": "4407962334", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48170", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was our first concert together .", "storylet_id": "240852"}], [{"original_text": "We were very impressed by all of the lights.", "album_id": "72157623510015317", "photo_flickr_id": "4408002320", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48170", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were very impressed by all of the lights .", "storylet_id": "240853"}], [{"original_text": "We had a great time there.", "album_id": "72157623510015317", "photo_flickr_id": "4408002458", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48170", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time there .", "storylet_id": "240854"}], [{"original_text": "The Come Up presented Shad last night.", "album_id": "72157623510015317", "photo_flickr_id": "4407773672", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "48171", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the come up presented shad last night .", "storylet_id": "240855"}], [{"original_text": "I got to go backstage and meet him.", "album_id": "72157623510015317", "photo_flickr_id": "4407962334", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "48171", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got to go backstage and meet him .", "storylet_id": "240856"}], [{"original_text": "We talked for about an hour about his music.", "album_id": "72157623510015317", "photo_flickr_id": "4407194845", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "48171", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we talked for about an hour about his music .", "storylet_id": "240857"}], [{"original_text": "He had the crowd on their feet the minute he took the stage.", "album_id": "72157623510015317", "photo_flickr_id": "4408002458", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "48171", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he had the crowd on their feet the minute he took the stage .", "storylet_id": "240858"}], [{"original_text": "His set was awesome.", "album_id": "72157623510015317", "photo_flickr_id": "4407195755", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "48171", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his set was awesome .", "storylet_id": "240859"}], [{"original_text": "Doing interviews will always be a part of the business.", "album_id": "72157623510015317", "photo_flickr_id": "4407194567", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48172", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "doing interviews will always be a part of the business .", "storylet_id": "240860"}], [{"original_text": "I have to admit though, I like it better once the interview is over and we can kick back for a minute.", "album_id": "72157623510015317", "photo_flickr_id": "4407194845", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48172", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i have to admit though , i like it better once the interview is over and we can kick back for a minute .", "storylet_id": "240861"}], [{"original_text": "It's great when the interviewer is also a fan.", "album_id": "72157623510015317", "photo_flickr_id": "4407962334", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48172", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's great when the interviewer is also a fan .", "storylet_id": "240862"}], [{"original_text": "Performing in front of a crowd has always got my adrenaline pumping.", "album_id": "72157623510015317", "photo_flickr_id": "4408002320", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48172", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "performing in front of a crowd has always got my adrenaline pumping .", "storylet_id": "240863"}], [{"original_text": "It's easy to feed off of a good crowd.", "album_id": "72157623510015317", "photo_flickr_id": "4408002458", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48172", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's easy to feed off of a good crowd .", "storylet_id": "240864"}], [{"original_text": "My brother and I had our first concert together.", "album_id": "72157623510015317", "photo_flickr_id": "4407194567", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48173", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brother and i had our first concert together .", "storylet_id": "240865"}], [{"original_text": "Him and I said a prayer before we went out on stage.", "album_id": "72157623510015317", "photo_flickr_id": "4407194845", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48173", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "him and i said a prayer before we went out on stage .", "storylet_id": "240866"}], [{"original_text": "We put on our game face and braved the crowd.", "album_id": "72157623510015317", "photo_flickr_id": "4407962334", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48173", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we put on our game face and braved the crowd .", "storylet_id": "240867"}], [{"original_text": "The concert was fun, the light show was the best.", "album_id": "72157623510015317", "photo_flickr_id": "4408002320", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48173", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the concert was fun , the light show was the best .", "storylet_id": "240868"}], [{"original_text": "Everyone in the crowd had a great time and enjoyed our music.", "album_id": "72157623510015317", "photo_flickr_id": "4408002458", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48173", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone in the crowd had a great time and enjoyed our music .", "storylet_id": "240869"}], [{"original_text": "Jerome and I are headed out to a concert.", "album_id": "72157623510015317", "photo_flickr_id": "4407194567", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48174", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and i are headed out to a concert .", "storylet_id": "240870"}], [{"original_text": "we meet up at my place.", "album_id": "72157623510015317", "photo_flickr_id": "4407194845", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48174", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we meet up at my place .", "storylet_id": "240871"}], [{"original_text": "We are excited before we go out to see our favorite rapper.", "album_id": "72157623510015317", "photo_flickr_id": "4407962334", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48174", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are excited before we go out to see our favorite rapper .", "storylet_id": "240872"}], [{"original_text": "Once the show started it was amazing.", "album_id": "72157623510015317", "photo_flickr_id": "4408002320", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48174", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once the show started it was amazing .", "storylet_id": "240873"}], [{"original_text": "The show went on the rest of the night.", "album_id": "72157623510015317", "photo_flickr_id": "4408002458", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48174", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the show went on the rest of the night .", "storylet_id": "240874"}], [{"original_text": "The table of food was a pleasure to see!", "album_id": "72157594462307386", "photo_flickr_id": "347377939", "setting": "first-2-pick-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "48175", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the table of food was a pleasure to see !", "storylet_id": "240875"}], [{"original_text": "Our food is both nutritious and beautiful!", "album_id": "72157594462307386", "photo_flickr_id": "347372877", "setting": "first-2-pick-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "48175", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our food is both nutritious and beautiful !", "storylet_id": "240876"}], [{"original_text": "The work of art that was our chicken was especially tasty!", "album_id": "72157594462307386", "photo_flickr_id": "347372879", "setting": "first-2-pick-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "48175", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the work of art that was our chicken was especially tasty !", "storylet_id": "240877"}], [{"original_text": "We love greens as they taste great and are healthy!", "album_id": "72157594462307386", "photo_flickr_id": "347377936", "setting": "first-2-pick-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "48175", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we love greens as they taste great and are healthy !", "storylet_id": "240878"}], [{"original_text": "The fruit was a colorful display that tantalized our palette.", "album_id": "72157594462307386", "photo_flickr_id": "347377943", "setting": "first-2-pick-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "48175", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fruit was a colorful display that tantalized our palette .", "storylet_id": "240879"}], [{"original_text": "The able is ready for the party. ", "album_id": "72157594462307386", "photo_flickr_id": "347377939", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48176", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the able is ready for the party .", "storylet_id": "240880"}], [{"original_text": "First appetizer is fried fish.", "album_id": "72157594462307386", "photo_flickr_id": "347372883", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48176", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first appetizer is fried fish .", "storylet_id": "240881"}], [{"original_text": "then we have a noodle salad.", "album_id": "72157594462307386", "photo_flickr_id": "347377942", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48176", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we have a noodle salad .", "storylet_id": "240882"}], [{"original_text": "There is also the option of a fruit bowl for kids. ", "album_id": "72157594462307386", "photo_flickr_id": "347377943", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48176", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there is also the option of a fruit bowl for kids .", "storylet_id": "240883"}], [{"original_text": "And finally for desert, coconut cakes. ", "album_id": "72157594462307386", "photo_flickr_id": "347377946", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48176", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and finally for desert , coconut cakes .", "storylet_id": "240884"}], [{"original_text": "Last week I made so much food for the party I wasn't sure if everyone was going to be able to finish it.", "album_id": "72157594462307386", "photo_flickr_id": "347377939", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48177", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week i made so much food for the party i was n't sure if everyone was going to be able to finish it .", "storylet_id": "240885"}], [{"original_text": "I thought I might have made too much.", "album_id": "72157594462307386", "photo_flickr_id": "347372883", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48177", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i thought i might have made too much .", "storylet_id": "240886"}], [{"original_text": "I was cooking all day.", "album_id": "72157594462307386", "photo_flickr_id": "347377942", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48177", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was cooking all day .", "storylet_id": "240887"}], [{"original_text": "Eventually I had to save some of them as leftovers.", "album_id": "72157594462307386", "photo_flickr_id": "347377943", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48177", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "eventually i had to save some of them as leftovers .", "storylet_id": "240888"}], [{"original_text": "But everyone finished all of the dessert.", "album_id": "72157594462307386", "photo_flickr_id": "347377946", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48177", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but everyone finished all of the dessert .", "storylet_id": "240889"}], [{"original_text": "The buffet had so much food to choose from.", "album_id": "72157594462307386", "photo_flickr_id": "347377939", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "48178", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the buffet had so much food to choose from .", "storylet_id": "240890"}], [{"original_text": "There was the kind for people that eat healthy.", "album_id": "72157594462307386", "photo_flickr_id": "347372877", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "48178", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was the kind for people that eat healthy .", "storylet_id": "240891"}], [{"original_text": "There was kind for people more interested in meat.", "album_id": "72157594462307386", "photo_flickr_id": "347372879", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "48178", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was kind for people more interested in meat .", "storylet_id": "240892"}], [{"original_text": "There was kinds that people had no idea about.", "album_id": "72157594462307386", "photo_flickr_id": "347377936", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "48178", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was kinds that people had no idea about .", "storylet_id": "240893"}], [{"original_text": "And there was fruit that was very nice to look at and looked delicious.", "album_id": "72157594462307386", "photo_flickr_id": "347377943", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "48178", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and there was fruit that was very nice to look at and looked delicious .", "storylet_id": "240894"}], [{"original_text": "Today there was a food taste testing!", "album_id": "72157594462307386", "photo_flickr_id": "347377939", "setting": "last-3-pick-old-and-tell", "worker_id": "18P4Y9XZ220KAOZ", "story_id": "48179", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today there was a food taste testing !", "storylet_id": "240895"}], [{"original_text": "A featured dish was a salad made of several different kinds of greens.", "album_id": "72157594462307386", "photo_flickr_id": "347372877", "setting": "last-3-pick-old-and-tell", "worker_id": "18P4Y9XZ220KAOZ", "story_id": "48179", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a featured dish was a salad made of several different kinds of greens .", "storylet_id": "240896"}], [{"original_text": "To compliment the salad, a chicken dish was also featured.", "album_id": "72157594462307386", "photo_flickr_id": "347372879", "setting": "last-3-pick-old-and-tell", "worker_id": "18P4Y9XZ220KAOZ", "story_id": "48179", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "to compliment the salad , a chicken dish was also featured .", "storylet_id": "240897"}], [{"original_text": "Another vegetable dish to add variation to the testing was available.", "album_id": "72157594462307386", "photo_flickr_id": "347377936", "setting": "last-3-pick-old-and-tell", "worker_id": "18P4Y9XZ220KAOZ", "story_id": "48179", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another vegetable dish to add variation to the testing was available .", "storylet_id": "240898"}], [{"original_text": "For dessert: a fruit platter!", "album_id": "72157594462307386", "photo_flickr_id": "347377943", "setting": "last-3-pick-old-and-tell", "worker_id": "18P4Y9XZ220KAOZ", "story_id": "48179", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for dessert : a fruit platter !", "storylet_id": "240899"}], [{"original_text": "Last week I decided to drive out into the city to visit the cemetery.", "album_id": "72157594465479147", "photo_flickr_id": "349295485", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48180", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week i decided to drive out into the city to visit the cemetery .", "storylet_id": "240900"}], [{"original_text": "It was deep in downtown so I had to drive through rush hour traffic to get there.", "album_id": "72157594465479147", "photo_flickr_id": "349292493", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48180", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was deep in downtown so i had to drive through rush hour traffic to get there .", "storylet_id": "240901"}], [{"original_text": "When I got there I made sure to read every gravestone that I passed by.", "album_id": "72157594465479147", "photo_flickr_id": "349313493", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48180", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when i got there i made sure to read every gravestone that i passed by .", "storylet_id": "240902"}], [{"original_text": "There were so many graves there.", "album_id": "72157594465479147", "photo_flickr_id": "349314481", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48180", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were so many graves there .", "storylet_id": "240903"}], [{"original_text": "I didn't have time to visit all of them.", "album_id": "72157594465479147", "photo_flickr_id": "349315362", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48180", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i did n't have time to visit all of them .", "storylet_id": "240904"}], [{"original_text": "They went to Washington DC on a trip.", "album_id": "72157594465479147", "photo_flickr_id": "349287486", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "48181", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they went to location location on a trip .", "storylet_id": "240905"}], [{"original_text": "They could see the Capitol building from their hotel.", "album_id": "72157594465479147", "photo_flickr_id": "349291068", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "48181", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they could see the location building from their hotel .", "storylet_id": "240906"}], [{"original_text": "They could also see the National Mall.", "album_id": "72157594465479147", "photo_flickr_id": "349295485", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "48181", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they could also see the location location .", "storylet_id": "240907"}], [{"original_text": "They went to pay their respects to their fallen relatives.", "album_id": "72157594465479147", "photo_flickr_id": "349305459", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "48181", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they went to pay their respects to their fallen relatives .", "storylet_id": "240908"}], [{"original_text": "The flag at half mast made them feel less alone in their grief.", "album_id": "72157594465479147", "photo_flickr_id": "349317253", "setting": "first-2-pick-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "48181", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the flag at half mast made them feel less alone in their grief .", "storylet_id": "240909"}], [{"original_text": "As Missy visited Washington DC, she realized there was so much to see.", "album_id": "72157594465479147", "photo_flickr_id": "349295485", "setting": "last-3-pick-old-and-tell", "worker_id": "CTMLAP78U0SO489", "story_id": "48182", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as missy visited location location , she realized there was so much to see .", "storylet_id": "240910"}], [{"original_text": "This included the Jefferson Memorial, the White house, and the main reason for going; Arlington Cemetery.", "album_id": "72157594465479147", "photo_flickr_id": "349292493", "setting": "last-3-pick-old-and-tell", "worker_id": "CTMLAP78U0SO489", "story_id": "48182", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this included the location location , the white house , and the main reason for going ; location location .", "storylet_id": "240911"}], [{"original_text": "Missy started with a tribute that had a message prior to entering the cemetery.", "album_id": "72157594465479147", "photo_flickr_id": "349313493", "setting": "last-3-pick-old-and-tell", "worker_id": "CTMLAP78U0SO489", "story_id": "48182", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "missy started with a tribute that had a message prior to entering the cemetery .", "storylet_id": "240912"}], [{"original_text": "Missy looked up and down many rows of tombs. ", "album_id": "72157594465479147", "photo_flickr_id": "349314481", "setting": "last-3-pick-old-and-tell", "worker_id": "CTMLAP78U0SO489", "story_id": "48182", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "missy looked up and down many rows of tombs .", "storylet_id": "240913"}], [{"original_text": "She was amazed at the amount of true veterans that were laid to rest here.", "album_id": "72157594465479147", "photo_flickr_id": "349315362", "setting": "last-3-pick-old-and-tell", "worker_id": "CTMLAP78U0SO489", "story_id": "48182", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was amazed at the amount of true veterans that were laid to rest here .", "storylet_id": "240914"}], [{"original_text": "Looking at the Washington monument on out bedroom window. ", "album_id": "72157594465479147", "photo_flickr_id": "349295485", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48183", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "looking at the location monument on out bedroom window .", "storylet_id": "240915"}], [{"original_text": "Also was able to see the capitol.", "album_id": "72157594465479147", "photo_flickr_id": "349292493", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48183", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "also was able to see the capitol .", "storylet_id": "240916"}], [{"original_text": "Then we went to visit the Arlington National Cemetery. ", "album_id": "72157594465479147", "photo_flickr_id": "349313493", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48183", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we went to visit the location location location .", "storylet_id": "240917"}], [{"original_text": "Walking through the cemetery.", "album_id": "72157594465479147", "photo_flickr_id": "349314481", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48183", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "walking through the cemetery .", "storylet_id": "240918"}], [{"original_text": "In the end we placed a red roses at the grave of a special fallen soldier, our grandfather. ", "album_id": "72157594465479147", "photo_flickr_id": "349315362", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48183", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end we placed a red roses at the grave of a special fallen soldier , our grandfather .", "storylet_id": "240919"}], [{"original_text": "I love the view from my hotel room. ", "album_id": "72157594465479147", "photo_flickr_id": "349287486", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "48184", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love the view from my hotel room .", "storylet_id": "240920"}], [{"original_text": "I can see lots of famous buildings and I'm located in the center of town. ", "album_id": "72157594465479147", "photo_flickr_id": "349291068", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "48184", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i can see lots of famous buildings and i 'm located in the center of town .", "storylet_id": "240921"}], [{"original_text": "My favorite structure is this tower.", "album_id": "72157594465479147", "photo_flickr_id": "349295485", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "48184", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my favorite structure is this tower .", "storylet_id": "240922"}], [{"original_text": "Unfortunately today i have not solemn plans on my agenda. ", "album_id": "72157594465479147", "photo_flickr_id": "349305459", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "48184", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "unfortunately today i have not solemn plans on my agenda .", "storylet_id": "240923"}], [{"original_text": "Paying a visit to the graveyards of soldiers that fought for our county. ", "album_id": "72157594465479147", "photo_flickr_id": "349317253", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "48184", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "paying a visit to the graveyards of soldiers that fought for our county .", "storylet_id": "240924"}], [{"original_text": "My new computers arrived today so it's time to set up.", "album_id": "72157623619778624", "photo_flickr_id": "4343110162", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48185", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my new computers arrived today so it 's time to set up .", "storylet_id": "240925"}], [{"original_text": "I cleaned and arranged the desk to accommodate all the new equipment.", "album_id": "72157623619778624", "photo_flickr_id": "4342372979", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48185", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i cleaned and arranged the desk to accommodate all the new equipment .", "storylet_id": "240926"}], [{"original_text": "I made sure it was all in order ready for set up.", "album_id": "72157623619778624", "photo_flickr_id": "4342373209", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48185", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i made sure it was all in order ready for set up .", "storylet_id": "240927"}], [{"original_text": "Most of it is set up here, but there are last minute arrangements.", "album_id": "72157623619778624", "photo_flickr_id": "4342373323", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48185", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "most of it is set up here , but there are last minute arrangements .", "storylet_id": "240928"}], [{"original_text": "All set; my new computers!", "album_id": "72157623619778624", "photo_flickr_id": "4343110326", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48185", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all set ; my new computers !", "storylet_id": "240929"}], [{"original_text": "I finally got my new computer.", "album_id": "72157623619778624", "photo_flickr_id": "4342372979", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48186", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finally got my new computer .", "storylet_id": "240930"}], [{"original_text": "I was waiting for days.", "album_id": "72157623619778624", "photo_flickr_id": "4342373125", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48186", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was waiting for days .", "storylet_id": "240931"}], [{"original_text": "I had to set it all up.", "album_id": "72157623619778624", "photo_flickr_id": "4342373209", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48186", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had to set it all up .", "storylet_id": "240932"}], [{"original_text": "It took me a while to put them all up.", "album_id": "72157623619778624", "photo_flickr_id": "4343110090", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48186", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it took me a while to put them all up .", "storylet_id": "240933"}], [{"original_text": "I had a lot of garbage afterward.", "album_id": "72157623619778624", "photo_flickr_id": "4343110162", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48186", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a lot of garbage afterward .", "storylet_id": "240934"}], [{"original_text": "We're setting up our home business today.", "album_id": "72157623619778624", "photo_flickr_id": "4342372979", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48187", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 're setting up our home business today .", "storylet_id": "240935"}], [{"original_text": "It will take a lot of work,", "album_id": "72157623619778624", "photo_flickr_id": "4342373125", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48187", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it will take a lot of work ,", "storylet_id": "240936"}], [{"original_text": "but the outcome will be worth it.", "album_id": "72157623619778624", "photo_flickr_id": "4342373209", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48187", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but the outcome will be worth it .", "storylet_id": "240937"}], [{"original_text": "We set up new computers,", "album_id": "72157623619778624", "photo_flickr_id": "4343110090", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48187", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we set up new computers ,", "storylet_id": "240938"}], [{"original_text": "and donated the older ones.", "album_id": "72157623619778624", "photo_flickr_id": "4343110162", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48187", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and donated the older ones .", "storylet_id": "240939"}], [{"original_text": "The students were very excited to see the arrival of their new computer equipment.", "album_id": "72157623619778624", "photo_flickr_id": "4343110162", "setting": "last-3-pick-old-and-tell", "worker_id": "C8IAWONK66F3LDD", "story_id": "48188", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the students were very excited to see the arrival of their new computer equipment .", "storylet_id": "240940"}], [{"original_text": "They had waited a long time and finally, Tim, the consultant, was on site to start the installation.", "album_id": "72157623619778624", "photo_flickr_id": "4342372979", "setting": "last-3-pick-old-and-tell", "worker_id": "C8IAWONK66F3LDD", "story_id": "48188", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had waited a long time and finally , [male] , the consultant , was on site to start the installation .", "storylet_id": "240941"}], [{"original_text": "Tim worked hard to insure that all the computers were setup correctly.", "album_id": "72157623619778624", "photo_flickr_id": "4342373209", "setting": "last-3-pick-old-and-tell", "worker_id": "C8IAWONK66F3LDD", "story_id": "48188", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] worked hard to insure that all the computers were setup correctly .", "storylet_id": "240942"}], [{"original_text": "He tested each one to make sure it could connect to the internet and had all the necessary programs installed.", "album_id": "72157623619778624", "photo_flickr_id": "4342373323", "setting": "last-3-pick-old-and-tell", "worker_id": "C8IAWONK66F3LDD", "story_id": "48188", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he tested each one to make sure it could connect to the internet and had all the necessary programs installed .", "storylet_id": "240943"}], [{"original_text": "At last the new computer lab was set up and working, and just waiting for the students to take their seats.", "album_id": "72157623619778624", "photo_flickr_id": "4343110326", "setting": "last-3-pick-old-and-tell", "worker_id": "C8IAWONK66F3LDD", "story_id": "48188", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at last the new computer lab was set up and working , and just waiting for the students to take their seats .", "storylet_id": "240944"}], [{"original_text": "I recently ordered a bunch of new computers for my home office.", "album_id": "72157623619778624", "photo_flickr_id": "4343110162", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48189", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i recently ordered a bunch of new computers for my home office .", "storylet_id": "240945"}], [{"original_text": "I also bought new desks so that I had a place to put the computers.", "album_id": "72157623619778624", "photo_flickr_id": "4342372979", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48189", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i also bought new desks so that i had a place to put the computers .", "storylet_id": "240946"}], [{"original_text": "The desks were surprisingly dusty so I spent at least 30 minutes cleaning them.", "album_id": "72157623619778624", "photo_flickr_id": "4342373209", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48189", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the desks were surprisingly dusty so i spent at least 30 minutes cleaning them .", "storylet_id": "240947"}], [{"original_text": "Once all of the computers were setup I determined where I should put them.", "album_id": "72157623619778624", "photo_flickr_id": "4342373323", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48189", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once all of the computers were setup i determined where i should put them .", "storylet_id": "240948"}], [{"original_text": "I really enjoy natural light so I settled on a nice place by a window.", "album_id": "72157623619778624", "photo_flickr_id": "4343110326", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48189", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i really enjoy natural light so i settled on a nice place by a window .", "storylet_id": "240949"}], [{"original_text": "The meeting began with check-in at 2pm.", "album_id": "72157623456487091", "photo_flickr_id": "4417773518", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "48190", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the meeting began with check-in at 2pm .", "storylet_id": "240950"}], [{"original_text": "We started with a classroom session where we learned about the new program.", "album_id": "72157623456487091", "photo_flickr_id": "4417008533", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "48190", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started with a classroom session where we learned about the new program .", "storylet_id": "240951"}], [{"original_text": "We then saw a slideshow about the history of the company.", "album_id": "72157623456487091", "photo_flickr_id": "4417774260", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "48190", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we then saw a slideshow about the history of the company .", "storylet_id": "240952"}], [{"original_text": "We had some break time in the afternoon with snacks.", "album_id": "72157623456487091", "photo_flickr_id": "4417774368", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "48190", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had some break time in the afternoon with snacks .", "storylet_id": "240953"}], [{"original_text": "Followed by a Q and A with each of the project managers.", "album_id": "72157623456487091", "photo_flickr_id": "4417775234", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "48190", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "followed by a q and a with each of the project managers .", "storylet_id": "240954"}], [{"original_text": "Beth has created an outreach program for families in need.", "album_id": "72157623456487091", "photo_flickr_id": "4417008139", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48191", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] has created an outreach program for families in need .", "storylet_id": "240955"}], [{"original_text": "With many sign ups she is slowly making a difference.", "album_id": "72157623456487091", "photo_flickr_id": "4417773518", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48191", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "with many sign ups she is slowly making a difference .", "storylet_id": "240956"}], [{"original_text": "The families have come to seek help and provide help if they can.", "album_id": "72157623456487091", "photo_flickr_id": "4417008533", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48191", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the families have come to seek help and provide help if they can .", "storylet_id": "240957"}], [{"original_text": "Many have come to speak on behalf of Beth's help to the community.", "album_id": "72157623456487091", "photo_flickr_id": "4417009011", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48191", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many have come to speak on behalf of [female] 's help to the community .", "storylet_id": "240958"}], [{"original_text": "There is even presentations made on all the program has to offer for families. ", "album_id": "72157623456487091", "photo_flickr_id": "4417775234", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "48191", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is even presentations made on all the program has to offer for families .", "storylet_id": "240959"}], [{"original_text": "I went to the meeting last week.", "album_id": "72157623456487091", "photo_flickr_id": "4417773518", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48192", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the meeting last week .", "storylet_id": "240960"}], [{"original_text": "There were many people there.", "album_id": "72157623456487091", "photo_flickr_id": "4417008533", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48192", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many people there .", "storylet_id": "240961"}], [{"original_text": "I had to give some presentations.", "album_id": "72157623456487091", "photo_flickr_id": "4417774260", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48192", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had to give some presentations .", "storylet_id": "240962"}], [{"original_text": "Afterward we had some dessert.", "album_id": "72157623456487091", "photo_flickr_id": "4417774368", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48192", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we had some dessert .", "storylet_id": "240963"}], [{"original_text": "There were many presentations there.", "album_id": "72157623456487091", "photo_flickr_id": "4417775234", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48192", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were many presentations there .", "storylet_id": "240964"}], [{"original_text": "Everyone gathered for the presentation.", "album_id": "72157623456487091", "photo_flickr_id": "4417773518", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48193", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone gathered for the presentation .", "storylet_id": "240965"}], [{"original_text": "People took their seat and it began.", "album_id": "72157623456487091", "photo_flickr_id": "4417008533", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48193", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people took their seat and it began .", "storylet_id": "240966"}], [{"original_text": "The speakers made good points.", "album_id": "72157623456487091", "photo_flickr_id": "4417774260", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48193", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the speakers made good points .", "storylet_id": "240967"}], [{"original_text": "Afterwards, we had some food and talked.", "album_id": "72157623456487091", "photo_flickr_id": "4417774368", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48193", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards , we had some food and talked .", "storylet_id": "240968"}], [{"original_text": "All in all it was a good day.", "album_id": "72157623456487091", "photo_flickr_id": "4417775234", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48193", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all in all it was a good day .", "storylet_id": "240969"}], [{"original_text": "Mary has to give a speech today.", "album_id": "72157623456487091", "photo_flickr_id": "4417008139", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48194", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] has to give a speech today .", "storylet_id": "240970"}], [{"original_text": "She is very nervous so she asks Tom some questions.", "album_id": "72157623456487091", "photo_flickr_id": "4417773518", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48194", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she is very nervous so she asks [male] some questions .", "storylet_id": "240971"}], [{"original_text": "Karen gets up first to prep the audience.", "album_id": "72157623456487091", "photo_flickr_id": "4417008533", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48194", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] gets up first to prep the audience .", "storylet_id": "240972"}], [{"original_text": "After Mary's speech, Mark gets up to give his own.", "album_id": "72157623456487091", "photo_flickr_id": "4417009011", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48194", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after [female] 's speech , [male] gets up to give his own .", "storylet_id": "240973"}], [{"original_text": "Now it is Elizabeth's turn to present her findings as well.", "album_id": "72157623456487091", "photo_flickr_id": "4417775234", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48194", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now it is [female] 's turn to present her findings as well .", "storylet_id": "240974"}], [{"original_text": "This area is full of beautiful architecture.", "album_id": "72157623578109828", "photo_flickr_id": "4416927966", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "48195", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this area is full of beautiful architecture .", "storylet_id": "240975"}], [{"original_text": "It's great to get out to play in the water!", "album_id": "72157623578109828", "photo_flickr_id": "4415774417", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "48195", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's great to get out to play in the water !", "storylet_id": "240976"}], [{"original_text": "More old buildings like this...", "album_id": "72157623578109828", "photo_flickr_id": "4416546004", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "48195", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "more old buildings like this ...", "storylet_id": "240977"}], [{"original_text": "...and this, remind me of how beautiful they built things years ago.", "album_id": "72157623578109828", "photo_flickr_id": "4416958160", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "48195", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "... and this , remind me of how beautiful they built things years ago .", "storylet_id": "240978"}], [{"original_text": "The vista is amazing!", "album_id": "72157623578109828", "photo_flickr_id": "4416252043", "setting": "first-2-pick-and-tell", "worker_id": "684SQ6OLDUJLS8Y", "story_id": "48195", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the vista is amazing !", "storylet_id": "240979"}], [{"original_text": "School was out for the summer.", "album_id": "72157623578109828", "photo_flickr_id": "4416927966", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48196", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "school was out for the summer .", "storylet_id": "240980"}], [{"original_text": "The children spent some time in the lake.", "album_id": "72157623578109828", "photo_flickr_id": "4415774417", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48196", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children spent some time in the lake .", "storylet_id": "240981"}], [{"original_text": "Later we went on drive to a nearby town.", "album_id": "72157623578109828", "photo_flickr_id": "4416235721", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48196", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "later we went on drive to a nearby town .", "storylet_id": "240982"}], [{"original_text": "We passed on of the world's oldest post office's ", "album_id": "72157623578109828", "photo_flickr_id": "4416958160", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48196", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we passed on of the world 's oldest post office 's", "storylet_id": "240983"}], [{"original_text": "Finally we reached the town. It was beautiful.", "album_id": "72157623578109828", "photo_flickr_id": "4416252043", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48196", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally we reached the town . it was beautiful .", "storylet_id": "240984"}], [{"original_text": "When I was on vacation last week the town was very small.", "album_id": "72157623578109828", "photo_flickr_id": "4416927966", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48197", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i was on vacation last week the town was very small .", "storylet_id": "240985"}], [{"original_text": "The river was nearby.", "album_id": "72157623578109828", "photo_flickr_id": "4415774417", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48197", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the river was nearby .", "storylet_id": "240986"}], [{"original_text": "I went for a walk many times.", "album_id": "72157623578109828", "photo_flickr_id": "4416546004", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48197", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i went for a walk many times .", "storylet_id": "240987"}], [{"original_text": "I liked the building for the post office.", "album_id": "72157623578109828", "photo_flickr_id": "4416958160", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48197", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i liked the building for the post office .", "storylet_id": "240988"}], [{"original_text": "I had a great time there.", "album_id": "72157623578109828", "photo_flickr_id": "4416252043", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48197", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time there .", "storylet_id": "240989"}], [{"original_text": "We had a lot too that day and we got our first errand done quick.", "album_id": "72157623578109828", "photo_flickr_id": "4416927966", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "48198", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a lot too that day and we got our first errand done quick .", "storylet_id": "240990"}], [{"original_text": "We went to the water and had some fun to begin the day.", "album_id": "72157623578109828", "photo_flickr_id": "4415774417", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "48198", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to the water and had some fun to begin the day .", "storylet_id": "240991"}], [{"original_text": "We then went to another place we needed to go.", "album_id": "72157623578109828", "photo_flickr_id": "4416546004", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "48198", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we then went to another place we needed to go .", "storylet_id": "240992"}], [{"original_text": "The post office was our final stop and we were glad to be done with everything.", "album_id": "72157623578109828", "photo_flickr_id": "4416958160", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "48198", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the post office was our final stop and we were glad to be done with everything .", "storylet_id": "240993"}], [{"original_text": "The day was really beautiful and we had time to have more fun.", "album_id": "72157623578109828", "photo_flickr_id": "4416252043", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "48198", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day was really beautiful and we had time to have more fun .", "storylet_id": "240994"}], [{"original_text": "Our home town is quaint.", "album_id": "72157623578109828", "photo_flickr_id": "4416927966", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48199", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our home town is quaint .", "storylet_id": "240995"}], [{"original_text": "We jumped in the river,", "album_id": "72157623578109828", "photo_flickr_id": "4415774417", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48199", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we jumped in the river ,", "storylet_id": "240996"}], [{"original_text": "and walked down the empty streets.", "album_id": "72157623578109828", "photo_flickr_id": "4416546004", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48199", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and walked down the empty streets .", "storylet_id": "240997"}], [{"original_text": "Visited the post office for some packages,", "album_id": "72157623578109828", "photo_flickr_id": "4416958160", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48199", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "visited the post office for some packages ,", "storylet_id": "240998"}], [{"original_text": "and then enjoyed the view.", "album_id": "72157623578109828", "photo_flickr_id": "4416252043", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48199", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then enjoyed the view .", "storylet_id": "240999"}], [{"original_text": "I just moved into town and I am looking for a house. This house looks nice, let's see how it looks inside.", "album_id": "72157623174760750", "photo_flickr_id": "4259537955", "setting": "first-2-pick-and-tell", "worker_id": "UUDCZ20OK3D5ET6", "story_id": "48200", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i just moved into town and i am looking for a house . this house looks nice , let 's see how it looks inside .", "storylet_id": "241000"}], [{"original_text": "The kitchen is perfect! Just the right size. Not too big, not too small.", "album_id": "72157623174760750", "photo_flickr_id": "4259533909", "setting": "first-2-pick-and-tell", "worker_id": "UUDCZ20OK3D5ET6", "story_id": "48200", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kitchen is perfect ! just the right size . not too big , not too small .", "storylet_id": "241001"}], [{"original_text": "The dining room is not my favorite color, but looks nice regardless of the color. I will probably repaint it.", "album_id": "72157623174760750", "photo_flickr_id": "4259534905", "setting": "first-2-pick-and-tell", "worker_id": "UUDCZ20OK3D5ET6", "story_id": "48200", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dining room is not my favorite color , but looks nice regardless of the color . i will probably repaint it .", "storylet_id": "241002"}], [{"original_text": "The living room is very nice. Pretty simple, which is how I like it.", "album_id": "72157623174760750", "photo_flickr_id": "4259535855", "setting": "first-2-pick-and-tell", "worker_id": "UUDCZ20OK3D5ET6", "story_id": "48200", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the living room is very nice . pretty simple , which is how i like it .", "storylet_id": "241003"}], [{"original_text": "The most important part of the house is the bathroom, to me. It looks marvelous! I think this is going to be the house for me!", "album_id": "72157623174760750", "photo_flickr_id": "4260298376", "setting": "first-2-pick-and-tell", "worker_id": "UUDCZ20OK3D5ET6", "story_id": "48200", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the most important part of the house is the bathroom , to me . it looks marvelous ! i think this is going to be the house for me !", "storylet_id": "241004"}], [{"original_text": "We move into our new house tomorrow.", "album_id": "72157623174760750", "photo_flickr_id": "4259537955", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48201", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we move into our new house tomorrow .", "storylet_id": "241005"}], [{"original_text": "The kitchen is small but functional.", "album_id": "72157623174760750", "photo_flickr_id": "4259533909", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48201", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kitchen is small but functional .", "storylet_id": "241006"}], [{"original_text": "The dining room will be a great place to host parties.", "album_id": "72157623174760750", "photo_flickr_id": "4259534905", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48201", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dining room will be a great place to host parties .", "storylet_id": "241007"}], [{"original_text": "The living room is elegant.", "album_id": "72157623174760750", "photo_flickr_id": "4259535855", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48201", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the living room is elegant .", "storylet_id": "241008"}], [{"original_text": "And the bedroom is gorgeous.", "album_id": "72157623174760750", "photo_flickr_id": "4259539091", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48201", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the bedroom is gorgeous .", "storylet_id": "241009"}], [{"original_text": "I love our new house.", "album_id": "72157623174760750", "photo_flickr_id": "4259537955", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "48202", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love our new house .", "storylet_id": "241010"}], [{"original_text": "It is so beautiful.", "album_id": "72157623174760750", "photo_flickr_id": "4259533909", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "48202", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is so beautiful .", "storylet_id": "241011"}], [{"original_text": "I love everything about it.", "album_id": "72157623174760750", "photo_flickr_id": "4259534905", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "48202", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i love everything about it .", "storylet_id": "241012"}], [{"original_text": "I'm so happy we bought it.", "album_id": "72157623174760750", "photo_flickr_id": "4259535855", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "48202", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'm so happy we bought it .", "storylet_id": "241013"}], [{"original_text": "Everything is great . ", "album_id": "72157623174760750", "photo_flickr_id": "4259539091", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "48202", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everything is great .", "storylet_id": "241014"}], [{"original_text": "The family was so excited to move into their new home.", "album_id": "72157623174760750", "photo_flickr_id": "4259537955", "setting": "last-3-pick-old-and-tell", "worker_id": "HZOLTK322M91WMV", "story_id": "48203", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was so excited to move into their new home .", "storylet_id": "241015"}], [{"original_text": "Mom was excited about the spacious kitchen.", "album_id": "72157623174760750", "photo_flickr_id": "4259533909", "setting": "last-3-pick-old-and-tell", "worker_id": "HZOLTK322M91WMV", "story_id": "48203", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom was excited about the spacious kitchen .", "storylet_id": "241016"}], [{"original_text": "The dining room had wonderful windows and was simply waiting for a dinner party.", "album_id": "72157623174760750", "photo_flickr_id": "4259534905", "setting": "last-3-pick-old-and-tell", "worker_id": "HZOLTK322M91WMV", "story_id": "48203", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dining room had wonderful windows and was simply waiting for a dinner party .", "storylet_id": "241017"}], [{"original_text": "The living room was inviting and perfect for a house warming party.", "album_id": "72157623174760750", "photo_flickr_id": "4259535855", "setting": "last-3-pick-old-and-tell", "worker_id": "HZOLTK322M91WMV", "story_id": "48203", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the living room was inviting and perfect for a house warming party .", "storylet_id": "241018"}], [{"original_text": "The bathroom was perfect for an evening of relaxing in the tub.", "album_id": "72157623174760750", "photo_flickr_id": "4260298376", "setting": "last-3-pick-old-and-tell", "worker_id": "HZOLTK322M91WMV", "story_id": "48203", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bathroom was perfect for an evening of relaxing in the tub .", "storylet_id": "241019"}], [{"original_text": "Of all the houses we looked at yesterday, this is the one we liked the most.", "album_id": "72157623174760750", "photo_flickr_id": "4259537955", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "48204", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "of all the houses we looked at yesterday , this is the one we liked the most .", "storylet_id": "241020"}], [{"original_text": "Although the kitchen is small, it is big enough for our three family members. We especially liked the natural light it provides.", "album_id": "72157623174760750", "photo_flickr_id": "4259533909", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "48204", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "although the kitchen is small , it is big enough for our three family members . we especially liked the natural light it provides .", "storylet_id": "241021"}], [{"original_text": "The dining room contained bay windows and wooden floors. We were pleasantly surprised at how comfortable it was.", "album_id": "72157623174760750", "photo_flickr_id": "4259534905", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "48204", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dining room contained bay windows and wooden floors . we were pleasantly surprised at how comfortable it was .", "storylet_id": "241022"}], [{"original_text": "The living room was similar to the dining room, except for the beautiful chandelier that hung from the ceiling.", "album_id": "72157623174760750", "photo_flickr_id": "4259535855", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "48204", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the living room was similar to the dining room , except for the beautiful chandelier that hung from the ceiling .", "storylet_id": "241023"}], [{"original_text": "The bedrooms were small, but roomy enough for us. There's 4 in total. That's plenty if we have a couple more kids!", "album_id": "72157623174760750", "photo_flickr_id": "4259539091", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "48204", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bedrooms were small , but roomy enough for us . there 's 4 in total . that 's plenty if we have a couple more kids !", "storylet_id": "241024"}], [{"original_text": "The family arrived at the lodge for a day of fun.", "album_id": "72157603781151759", "photo_flickr_id": "4267501373", "setting": "first-2-pick-and-tell", "worker_id": "C50B6DLLWGQL6DP", "story_id": "48205", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family arrived at the lodge for a day of fun .", "storylet_id": "241025"}], [{"original_text": "They went outside to see what animals they might see. They first saw a bald eagle.", "album_id": "72157603781151759", "photo_flickr_id": "2217163903", "setting": "first-2-pick-and-tell", "worker_id": "C50B6DLLWGQL6DP", "story_id": "48205", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they went outside to see what animals they might see . they first saw a bald eagle .", "storylet_id": "241026"}], [{"original_text": "After awhile they came across a dear in the distance.", "album_id": "72157603781151759", "photo_flickr_id": "2229330283", "setting": "first-2-pick-and-tell", "worker_id": "C50B6DLLWGQL6DP", "story_id": "48205", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after awhile they came across a dear in the distance .", "storylet_id": "241027"}], [{"original_text": "They later took a walk and saw the beautiful mountains in the distance. ", "album_id": "72157603781151759", "photo_flickr_id": "2232112830", "setting": "first-2-pick-and-tell", "worker_id": "C50B6DLLWGQL6DP", "story_id": "48205", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they later took a walk and saw the beautiful mountains in the distance .", "storylet_id": "241028"}], [{"original_text": "Finally to complete they day they went on a helicopter tour. What a great day for the family!", "album_id": "72157603781151759", "photo_flickr_id": "2212858297", "setting": "first-2-pick-and-tell", "worker_id": "C50B6DLLWGQL6DP", "story_id": "48205", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally to complete they day they went on a helicopter tour . what a great day for the family !", "storylet_id": "241029"}], [{"original_text": "Our annual vacation to the lodge was a lot of fun.", "album_id": "72157603781151759", "photo_flickr_id": "4267501373", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48206", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our annual vacation to the lodge was a lot of fun .", "storylet_id": "241030"}], [{"original_text": "We saw so many birds while hiking through the woods.", "album_id": "72157603781151759", "photo_flickr_id": "2217163903", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48206", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw so many birds while hiking through the woods .", "storylet_id": "241031"}], [{"original_text": "The deer were so used to people that they just posed for pictures.", "album_id": "72157603781151759", "photo_flickr_id": "2229330283", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48206", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the deer were so used to people that they just posed for pictures .", "storylet_id": "241032"}], [{"original_text": "We hiked all the way to a canyon where we couldn't go farther.", "album_id": "72157603781151759", "photo_flickr_id": "2234218140", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48206", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we hiked all the way to a canyon where we could n't go farther .", "storylet_id": "241033"}], [{"original_text": "When we got back, we took a helicopter tour to see the rest.", "album_id": "72157603781151759", "photo_flickr_id": "2212858297", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48206", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we got back , we took a helicopter tour to see the rest .", "storylet_id": "241034"}], [{"original_text": "I went to the nature sanctuary to see wildlife.", "album_id": "72157603781151759", "photo_flickr_id": "4267501373", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48207", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the nature sanctuary to see wildlife .", "storylet_id": "241035"}], [{"original_text": "I saw a bald eagle perched at the top of the tree.", "album_id": "72157603781151759", "photo_flickr_id": "2217163903", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48207", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw a bald eagle perched at the top of the tree .", "storylet_id": "241036"}], [{"original_text": "Nearby, a male deer sat on the ground observing what was going on around him.", "album_id": "72157603781151759", "photo_flickr_id": "2229330283", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48207", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nearby , a male deer sat on the ground observing what was going on around him .", "storylet_id": "241037"}], [{"original_text": "The canyon in the park was absolutely gorgeous.", "album_id": "72157603781151759", "photo_flickr_id": "2234218140", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48207", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the canyon in the park was absolutely gorgeous .", "storylet_id": "241038"}], [{"original_text": "Finally, I saw a helicopter leaving on a search-and-rescue mission from the park.", "album_id": "72157603781151759", "photo_flickr_id": "2212858297", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48207", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , i saw a helicopter leaving on a search-and-rescue mission from the park .", "storylet_id": "241039"}], [{"original_text": "They arrived at the lodge, then it was off to explore the flora and fauna.", "album_id": "72157603781151759", "photo_flickr_id": "4267501373", "setting": "last-3-pick-old-and-tell", "worker_id": "YTWXW4OA73NGKVA", "story_id": "48208", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they arrived at the lodge , then it was off to explore the flora and fauna .", "storylet_id": "241040"}], [{"original_text": "They saw a bald eagle,", "album_id": "72157603781151759", "photo_flickr_id": "2217163903", "setting": "last-3-pick-old-and-tell", "worker_id": "YTWXW4OA73NGKVA", "story_id": "48208", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they saw a bald eagle ,", "storylet_id": "241041"}], [{"original_text": "and a beautiful deer.", "album_id": "72157603781151759", "photo_flickr_id": "2229330283", "setting": "last-3-pick-old-and-tell", "worker_id": "YTWXW4OA73NGKVA", "story_id": "48208", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and a beautiful deer .", "storylet_id": "241042"}], [{"original_text": "The mountain scenery was so beautiful,", "album_id": "72157603781151759", "photo_flickr_id": "2234218140", "setting": "last-3-pick-old-and-tell", "worker_id": "YTWXW4OA73NGKVA", "story_id": "48208", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the mountain scenery was so beautiful ,", "storylet_id": "241043"}], [{"original_text": "they even went on a helicopter ride to get a bird's eye view of it all.", "album_id": "72157603781151759", "photo_flickr_id": "2212858297", "setting": "last-3-pick-old-and-tell", "worker_id": "YTWXW4OA73NGKVA", "story_id": "48208", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even went on a helicopter ride to get a bird 's eye view of it all .", "storylet_id": "241044"}], [{"original_text": "Every summer we visit thr lodge. ", "album_id": "72157603781151759", "photo_flickr_id": "4267501373", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "48209", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every summer we visit thr lodge .", "storylet_id": "241045"}], [{"original_text": "We go bird watching. ", "album_id": "72157603781151759", "photo_flickr_id": "2217163903", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "48209", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we go bird watching .", "storylet_id": "241046"}], [{"original_text": "We also practice animal tracking. ", "album_id": "72157603781151759", "photo_flickr_id": "2229330283", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "48209", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also practice animal tracking .", "storylet_id": "241047"}], [{"original_text": "Most of the time is spent just wondering around the grounds and adventuring ", "album_id": "72157603781151759", "photo_flickr_id": "2232112830", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "48209", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "most of the time is spent just wondering around the grounds and adventuring", "storylet_id": "241048"}], [{"original_text": "We almost always ebbs the our stay with a helicopter tour!", "album_id": "72157603781151759", "photo_flickr_id": "2212858297", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "48209", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we almost always ebbs the our stay with a helicopter tour !", "storylet_id": "241049"}], [{"original_text": "A group of coworkers decided they wanted to have a party.", "album_id": "72157623063047547", "photo_flickr_id": "4265228765", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48210", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of coworkers decided they wanted to have a party .", "storylet_id": "241050"}], [{"original_text": "They bought some fancy wine glasses for the occasion, ", "album_id": "72157623063047547", "photo_flickr_id": "4265973472", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48210", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they bought some fancy wine glasses for the occasion ,", "storylet_id": "241051"}], [{"original_text": "and drank from those fancy wine glasses.", "album_id": "72157623063047547", "photo_flickr_id": "4265974808", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48210", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and drank from those fancy wine glasses .", "storylet_id": "241052"}], [{"original_text": "They had lots of good food,", "album_id": "72157623063047547", "photo_flickr_id": "4265228253", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48210", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had lots of good food ,", "storylet_id": "241053"}], [{"original_text": "and even some good entertainment.", "album_id": "72157623063047547", "photo_flickr_id": "4265228405", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48210", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and even some good entertainment .", "storylet_id": "241054"}], [{"original_text": "Everyone listening to the boss talk before they christmas party", "album_id": "72157623063047547", "photo_flickr_id": "4265228765", "setting": "first-2-pick-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "48211", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone listening to the boss talk before they christmas party", "storylet_id": "241055"}], [{"original_text": "We even had a live sax player!", "album_id": "72157623063047547", "photo_flickr_id": "4265228405", "setting": "first-2-pick-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "48211", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we even had a live sax player !", "storylet_id": "241056"}], [{"original_text": "Everyone getting a little tipsy on champaign ", "album_id": "72157623063047547", "photo_flickr_id": "4265225943", "setting": "first-2-pick-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "48211", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone getting a little tipsy on champaign", "storylet_id": "241057"}], [{"original_text": "Always so serious", "album_id": "72157623063047547", "photo_flickr_id": "4265226911", "setting": "first-2-pick-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "48211", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "always so serious", "storylet_id": "241058"}], [{"original_text": "We had a grand christmas party feast", "album_id": "72157623063047547", "photo_flickr_id": "4265228253", "setting": "first-2-pick-and-tell", "worker_id": "3CW13XL9EUZ8UX7", "story_id": "48211", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a grand christmas party feast", "storylet_id": "241059"}], [{"original_text": "A group of fans came together one day to celebrate the opening of a new studio for an artist.", "album_id": "72157623063047547", "photo_flickr_id": "4265228765", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48212", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of fans came together one day to celebrate the opening of a new studio for an artist .", "storylet_id": "241060"}], [{"original_text": "The artist provided champagne in flutes for everyone.", "album_id": "72157623063047547", "photo_flickr_id": "4265973472", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48212", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the artist provided champagne in flutes for everyone .", "storylet_id": "241061"}], [{"original_text": "Friends toasted and cheered the artist as she opened her new studio.", "album_id": "72157623063047547", "photo_flickr_id": "4265974808", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48212", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "friends toasted and cheered the artist as she opened her new studio .", "storylet_id": "241062"}], [{"original_text": "Others ate from the buffet of hors d'oeuvres.", "album_id": "72157623063047547", "photo_flickr_id": "4265228253", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48212", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others ate from the buffet of hors d'oeuvres .", "storylet_id": "241063"}], [{"original_text": "Everyone talked and had a great time with each other at the opening.", "album_id": "72157623063047547", "photo_flickr_id": "4265228405", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48212", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone talked and had a great time with each other at the opening .", "storylet_id": "241064"}], [{"original_text": "Everyone had a good time at our family reunion.", "album_id": "72157623063047547", "photo_flickr_id": "4265228765", "setting": "last-3-pick-old-and-tell", "worker_id": "YTWXW4OA73NGKVA", "story_id": "48213", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone had a good time at our family reunion .", "storylet_id": "241065"}], [{"original_text": "We even had a band.", "album_id": "72157623063047547", "photo_flickr_id": "4265228405", "setting": "last-3-pick-old-and-tell", "worker_id": "YTWXW4OA73NGKVA", "story_id": "48213", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we even had a band .", "storylet_id": "241066"}], [{"original_text": "And I got to meet a lot of people.", "album_id": "72157623063047547", "photo_flickr_id": "4265225943", "setting": "last-3-pick-old-and-tell", "worker_id": "YTWXW4OA73NGKVA", "story_id": "48213", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and i got to meet a lot of people .", "storylet_id": "241067"}], [{"original_text": "I even got to speak one-on-one with some of the family members.", "album_id": "72157623063047547", "photo_flickr_id": "4265226911", "setting": "last-3-pick-old-and-tell", "worker_id": "YTWXW4OA73NGKVA", "story_id": "48213", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i even got to speak one-on-one with some of the family members .", "storylet_id": "241068"}], [{"original_text": "Lest I forget, the food was amazing!", "album_id": "72157623063047547", "photo_flickr_id": "4265228253", "setting": "last-3-pick-old-and-tell", "worker_id": "YTWXW4OA73NGKVA", "story_id": "48213", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lest i forget , the food was amazing !", "storylet_id": "241069"}], [{"original_text": "This is a speed dating meetup.", "album_id": "72157623063047547", "photo_flickr_id": "4265228765", "setting": "last-3-pick-old-and-tell", "worker_id": "OSDMF968MGMUGBG", "story_id": "48214", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a speed dating meetup .", "storylet_id": "241070"}], [{"original_text": "Here, the daters mingle during social hour with live musical entertainment.", "album_id": "72157623063047547", "photo_flickr_id": "4265228405", "setting": "last-3-pick-old-and-tell", "worker_id": "OSDMF968MGMUGBG", "story_id": "48214", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here , the daters mingle during social hour with live musical entertainment .", "storylet_id": "241071"}], [{"original_text": "Here is a close-up view of the daters chatting with each other with champagne flutes in their hands.", "album_id": "72157623063047547", "photo_flickr_id": "4265225943", "setting": "last-3-pick-old-and-tell", "worker_id": "OSDMF968MGMUGBG", "story_id": "48214", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is a close-up view of the daters chatting with each other with champagne flutes in their hands .", "storylet_id": "241072"}], [{"original_text": "Here, two speed daters (not dating each other!) discuss their thoughts on the meetup. ", "album_id": "72157623063047547", "photo_flickr_id": "4265226911", "setting": "last-3-pick-old-and-tell", "worker_id": "OSDMF968MGMUGBG", "story_id": "48214", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here , two speed daters ( not dating each other ! ) discuss their thoughts on the meetup .", "storylet_id": "241073"}], [{"original_text": "This is a to-go table full of snacks for the speed daters to pick up on their way out, provided as a thank you for coming.", "album_id": "72157623063047547", "photo_flickr_id": "4265228253", "setting": "last-3-pick-old-and-tell", "worker_id": "OSDMF968MGMUGBG", "story_id": "48214", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a to-go table full of snacks for the speed daters to pick up on their way out , provided as a thank you for coming .", "storylet_id": "241074"}], [{"original_text": "Everyone came out for the art display", "album_id": "72157623292282441", "photo_flickr_id": "4350372885", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "48215", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone came out for the art display", "storylet_id": "241075"}], [{"original_text": "There were so many different exhibits", "album_id": "72157623292282441", "photo_flickr_id": "4351118688", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "48215", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many different exhibits", "storylet_id": "241076"}], [{"original_text": "We were given a tour by the woman in charge", "album_id": "72157623292282441", "photo_flickr_id": "4350373157", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "48215", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were given a tour by the woman in charge", "storylet_id": "241077"}], [{"original_text": "Her favorite were these collection of prints", "album_id": "72157623292282441", "photo_flickr_id": "4350373479", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "48215", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her favorite were these collection of prints", "storylet_id": "241078"}], [{"original_text": "We all then had our picture taken outside as we stared at the beauty", "album_id": "72157623292282441", "photo_flickr_id": "4351119530", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "48215", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all then had our picture taken outside as we stared at the beauty", "storylet_id": "241079"}], [{"original_text": "Everyone came to the conference last week.", "album_id": "72157623292282441", "photo_flickr_id": "4351118966", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48216", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone came to the conference last week .", "storylet_id": "241080"}], [{"original_text": "There were many slide presentations.", "album_id": "72157623292282441", "photo_flickr_id": "4351119036", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48216", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many slide presentations .", "storylet_id": "241081"}], [{"original_text": "I waited for the event to finish.", "album_id": "72157623292282441", "photo_flickr_id": "4351119330", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48216", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i waited for the event to finish .", "storylet_id": "241082"}], [{"original_text": "When it was time to leave I packed my things.", "album_id": "72157623292282441", "photo_flickr_id": "4350373645", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48216", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when it was time to leave i packed my things .", "storylet_id": "241083"}], [{"original_text": "I said goodbye and left quickly.", "album_id": "72157623292282441", "photo_flickr_id": "4350373715", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48216", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i said goodbye and left quickly .", "storylet_id": "241084"}], [{"original_text": "Managers attendance was required. ", "album_id": "72157623292282441", "photo_flickr_id": "4350372885", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48217", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "managers attendance was required .", "storylet_id": "241085"}], [{"original_text": "They would be introduced to the staff. ", "album_id": "72157623292282441", "photo_flickr_id": "4351118688", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48217", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they would be introduced to the staff .", "storylet_id": "241086"}], [{"original_text": "Go over proper procedures. ", "album_id": "72157623292282441", "photo_flickr_id": "4350373157", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48217", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "go over proper procedures .", "storylet_id": "241087"}], [{"original_text": "They would be given the obligatory tour. ", "album_id": "72157623292282441", "photo_flickr_id": "4350373479", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48217", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they would be given the obligatory tour .", "storylet_id": "241088"}], [{"original_text": "And finally, they would get a demonstration on the newly installed security system. ", "album_id": "72157623292282441", "photo_flickr_id": "4351119530", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48217", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and finally , they would get a demonstration on the newly installed security system .", "storylet_id": "241089"}], [{"original_text": "Before the start of the day, the team met to discuss upcoming goals.", "album_id": "72157623292282441", "photo_flickr_id": "4351118966", "setting": "last-3-pick-old-and-tell", "worker_id": "LVN19XABMTRMIKC", "story_id": "48218", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before the start of the day , the team met to discuss upcoming goals .", "storylet_id": "241090"}], [{"original_text": "The President of the company gave a presentation.", "album_id": "72157623292282441", "photo_flickr_id": "4351119036", "setting": "last-3-pick-old-and-tell", "worker_id": "LVN19XABMTRMIKC", "story_id": "48218", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the president of the company gave a presentation .", "storylet_id": "241091"}], [{"original_text": "Later, the group head out to put their new goals into practice.", "album_id": "72157623292282441", "photo_flickr_id": "4351119330", "setting": "last-3-pick-old-and-tell", "worker_id": "LVN19XABMTRMIKC", "story_id": "48218", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "later , the group head out to put their new goals into practice .", "storylet_id": "241092"}], [{"original_text": "Visitors from a collaborating company came to see what was new in the firm.", "album_id": "72157623292282441", "photo_flickr_id": "4350373645", "setting": "last-3-pick-old-and-tell", "worker_id": "LVN19XABMTRMIKC", "story_id": "48218", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "visitors from a collaborating company came to see what was new in the firm .", "storylet_id": "241093"}], [{"original_text": "A tour of the business was given to help welcome the newcomers on board.", "album_id": "72157623292282441", "photo_flickr_id": "4350373715", "setting": "last-3-pick-old-and-tell", "worker_id": "LVN19XABMTRMIKC", "story_id": "48218", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a tour of the business was given to help welcome the newcomers on board .", "storylet_id": "241094"}], [{"original_text": "There was an important meeting of office staff today.", "album_id": "72157623292282441", "photo_flickr_id": "4350372885", "setting": "last-3-pick-old-and-tell", "worker_id": "U9PUPHN1TDQ6TZM", "story_id": "48219", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an important meeting of office staff today .", "storylet_id": "241095"}], [{"original_text": "The receptionist worked alone in the office while the others were meeting.", "album_id": "72157623292282441", "photo_flickr_id": "4351118688", "setting": "last-3-pick-old-and-tell", "worker_id": "U9PUPHN1TDQ6TZM", "story_id": "48219", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the receptionist worked alone in the office while the others were meeting .", "storylet_id": "241096"}], [{"original_text": "At one point they stepped outside to examine some helpful new technology.", "album_id": "72157623292282441", "photo_flickr_id": "4350373157", "setting": "last-3-pick-old-and-tell", "worker_id": "U9PUPHN1TDQ6TZM", "story_id": "48219", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at one point they stepped outside to examine some helpful new technology .", "storylet_id": "241097"}], [{"original_text": "The reception area for visitors stood empty while the meeting progressed.", "album_id": "72157623292282441", "photo_flickr_id": "4350373479", "setting": "last-3-pick-old-and-tell", "worker_id": "U9PUPHN1TDQ6TZM", "story_id": "48219", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the reception area for visitors stood empty while the meeting progressed .", "storylet_id": "241098"}], [{"original_text": "After the meeting, they continued their discussions outside for some time before they finally called it a day.", "album_id": "72157623292282441", "photo_flickr_id": "4351119530", "setting": "last-3-pick-old-and-tell", "worker_id": "U9PUPHN1TDQ6TZM", "story_id": "48219", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the meeting , they continued their discussions outside for some time before they finally called it a day .", "storylet_id": "241099"}], [{"original_text": "My buddies and I went out for some sightseeing and nightlife.", "album_id": "72157623416538636", "photo_flickr_id": "4350320223", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48220", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my buddies and i went out for some sightseeing and nightlife .", "storylet_id": "241100"}], [{"original_text": "The golden lights were more soothing than neon party lights though.", "album_id": "72157623416538636", "photo_flickr_id": "4350328579", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48220", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the golden lights were more soothing than neon party lights though .", "storylet_id": "241101"}], [{"original_text": "This chandelier that we came across was magnificent.", "album_id": "72157623416538636", "photo_flickr_id": "4351079806", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48220", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this chandelier that we came across was magnificent .", "storylet_id": "241102"}], [{"original_text": "We stopped for a bite to eat at the local fast food place.", "album_id": "72157623416538636", "photo_flickr_id": "4350337917", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48220", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped for a bite to eat at the local fast food place .", "storylet_id": "241103"}], [{"original_text": "Time to get this guy off of his phone and out to party.", "album_id": "72157623416538636", "photo_flickr_id": "4350342107", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48220", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time to get this guy off of his phone and out to party .", "storylet_id": "241104"}], [{"original_text": "Met up with my friend at Mc Donalds and we are gonna go downtown.", "album_id": "72157623416538636", "photo_flickr_id": "4351085760", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48221", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "met up with my friend at location location and we are gon na go downtown .", "storylet_id": "241105"}], [{"original_text": "Here's my friend. He's happy to see me.", "album_id": "72157623416538636", "photo_flickr_id": "4350342107", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48221", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's my friend . he 's happy to see me .", "storylet_id": "241106"}], [{"original_text": "First stop, this building, it's a temple of some kind.", "album_id": "72157623416538636", "photo_flickr_id": "4350320223", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48221", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "first stop , this building , it 's a temple of some kind .", "storylet_id": "241107"}], [{"original_text": "Then on to this building, it's really interesting.", "album_id": "72157623416538636", "photo_flickr_id": "4351068490", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48221", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then on to this building , it 's really interesting .", "storylet_id": "241108"}], [{"original_text": "Then off to the park where there are beautiful statues all around.", "album_id": "72157623416538636", "photo_flickr_id": "4350324579", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48221", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then off to the park where there are beautiful statues all around .", "storylet_id": "241109"}], [{"original_text": "The friends have stopped for lunch in a food court.", "album_id": "72157623416538636", "photo_flickr_id": "4351085760", "setting": "last-3-pick-old-and-tell", "worker_id": "J044WIQNG6W0LNF", "story_id": "48222", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends have stopped for lunch in a food court .", "storylet_id": "241110"}], [{"original_text": "As they checked their phones another friend is taking their pictures.", "album_id": "72157623416538636", "photo_flickr_id": "4350342107", "setting": "last-3-pick-old-and-tell", "worker_id": "J044WIQNG6W0LNF", "story_id": "48222", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as they checked their phones another friend is taking their pictures .", "storylet_id": "241111"}], [{"original_text": "after lunch the friends went into town taking photos of various places they passed by.", "album_id": "72157623416538636", "photo_flickr_id": "4350320223", "setting": "last-3-pick-old-and-tell", "worker_id": "J044WIQNG6W0LNF", "story_id": "48222", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after lunch the friends went into town taking photos of various places they passed by .", "storylet_id": "241112"}], [{"original_text": "They continued on the walk seeing the city skyline.", "album_id": "72157623416538636", "photo_flickr_id": "4351068490", "setting": "last-3-pick-old-and-tell", "worker_id": "J044WIQNG6W0LNF", "story_id": "48222", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they continued on the walk seeing the city skyline .", "storylet_id": "241113"}], [{"original_text": "The friends made it to a park where they took a picture of this unique statue.", "album_id": "72157623416538636", "photo_flickr_id": "4350324579", "setting": "last-3-pick-old-and-tell", "worker_id": "J044WIQNG6W0LNF", "story_id": "48222", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the friends made it to a park where they took a picture of this unique statue .", "storylet_id": "241114"}], [{"original_text": "When I went on vacation last weekend I saw many huge buildings.", "album_id": "72157623416538636", "photo_flickr_id": "4350320223", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48223", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i went on vacation last weekend i saw many huge buildings .", "storylet_id": "241115"}], [{"original_text": "The city was very beautiful at night.", "album_id": "72157623416538636", "photo_flickr_id": "4350328579", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48223", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city was very beautiful at night .", "storylet_id": "241116"}], [{"original_text": "My hotel had a lovely lobby.", "album_id": "72157623416538636", "photo_flickr_id": "4351079806", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48223", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my hotel had a lovely lobby .", "storylet_id": "241117"}], [{"original_text": "I brought my friend with me.", "album_id": "72157623416538636", "photo_flickr_id": "4350337917", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48223", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i brought my friend with me .", "storylet_id": "241118"}], [{"original_text": "We had a great time there together.", "album_id": "72157623416538636", "photo_flickr_id": "4350342107", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48223", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time there together .", "storylet_id": "241119"}], [{"original_text": "Tom and Jerry are at the airport.", "album_id": "72157623416538636", "photo_flickr_id": "4351085760", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48224", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [male] are at the airport .", "storylet_id": "241120"}], [{"original_text": "They are waiting to board and want to get their food.", "album_id": "72157623416538636", "photo_flickr_id": "4350342107", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48224", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are waiting to board and want to get their food .", "storylet_id": "241121"}], [{"original_text": "They finally land and go straight to sight seeing.", "album_id": "72157623416538636", "photo_flickr_id": "4350320223", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48224", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they finally land and go straight to sight seeing .", "storylet_id": "241122"}], [{"original_text": "They explore the city, hoping to find something cool.", "album_id": "72157623416538636", "photo_flickr_id": "4351068490", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48224", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they explore the city , hoping to find something cool .", "storylet_id": "241123"}], [{"original_text": "They come across a fun little park with lots of sculptures, this is just what they wanted to see.", "album_id": "72157623416538636", "photo_flickr_id": "4350324579", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48224", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they come across a fun little park with lots of sculptures , this is just what they wanted to see .", "storylet_id": "241124"}], [{"original_text": "The men in the building were dressed formal.", "album_id": "72157623424455540", "photo_flickr_id": "4352295447", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48225", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the men in the building were dressed formal .", "storylet_id": "241125"}], [{"original_text": "They were all talking at the conference.", "album_id": "72157623424455540", "photo_flickr_id": "4352298821", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48225", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were all talking at the conference .", "storylet_id": "241126"}], [{"original_text": "This man made a lot of funny remarks.", "album_id": "72157623424455540", "photo_flickr_id": "4353046216", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48225", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this man made a lot of funny remarks .", "storylet_id": "241127"}], [{"original_text": "He was our leader for the day in the office.", "album_id": "72157623424455540", "photo_flickr_id": "4353047436", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48225", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was our leader for the day in the office .", "storylet_id": "241128"}], [{"original_text": "Our entire department took a picture after the training.", "album_id": "72157623424455540", "photo_flickr_id": "4352293863", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48225", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our entire department took a picture after the training .", "storylet_id": "241129"}], [{"original_text": "The guys at NASA are having a party..", "album_id": "72157623424455540", "photo_flickr_id": "4352289121", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48226", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guys at organization are having a party..", "storylet_id": "241130"}], [{"original_text": "They even brought some of their toys from home.", "album_id": "72157623424455540", "photo_flickr_id": "4352289661", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48226", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they even brought some of their toys from home .", "storylet_id": "241131"}], [{"original_text": "They laughed and talked about space some.", "album_id": "72157623424455540", "photo_flickr_id": "4352291333", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48226", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they laughed and talked about space some .", "storylet_id": "241132"}], [{"original_text": "Then they had a important meeting of the minds.", "album_id": "72157623424455540", "photo_flickr_id": "4353038184", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48226", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they had a important meeting of the minds .", "storylet_id": "241133"}], [{"original_text": "After the meeting everyone was hungry and they had a nice little lunch", "album_id": "72157623424455540", "photo_flickr_id": "4353038824", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48226", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the meeting everyone was hungry and they had a nice little lunch", "storylet_id": "241134"}], [{"original_text": "There was a conference meeting at work today.", "album_id": "72157623424455540", "photo_flickr_id": "4352295447", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48227", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a conference meeting at work today .", "storylet_id": "241135"}], [{"original_text": "I took a lot of notes.", "album_id": "72157623424455540", "photo_flickr_id": "4352298821", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48227", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i took a lot of notes .", "storylet_id": "241136"}], [{"original_text": "I had to give a speech the whole time.", "album_id": "72157623424455540", "photo_flickr_id": "4353046216", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48227", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had to give a speech the whole time .", "storylet_id": "241137"}], [{"original_text": "Afterward we had some time to chat together.", "album_id": "72157623424455540", "photo_flickr_id": "4353047436", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48227", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we had some time to chat together .", "storylet_id": "241138"}], [{"original_text": "We also took a group photo with everyone.", "album_id": "72157623424455540", "photo_flickr_id": "4352293863", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48227", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also took a group photo with everyone .", "storylet_id": "241139"}], [{"original_text": "Getting ready for the meeting. ", "album_id": "72157623424455540", "photo_flickr_id": "4352289121", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48228", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting ready for the meeting .", "storylet_id": "241140"}], [{"original_text": "Trying to figure out what that is on the table.", "album_id": "72157623424455540", "photo_flickr_id": "4352289661", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48228", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "trying to figure out what that is on the table .", "storylet_id": "241141"}], [{"original_text": "Talking to a couple of friends", "album_id": "72157623424455540", "photo_flickr_id": "4352291333", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48228", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "talking to a couple of friends", "storylet_id": "241142"}], [{"original_text": "In a meeting trying to figure out what is going on.", "album_id": "72157623424455540", "photo_flickr_id": "4353038184", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48228", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in a meeting trying to figure out what is going on .", "storylet_id": "241143"}], [{"original_text": "Having dinner with my co-workers.", "album_id": "72157623424455540", "photo_flickr_id": "4353038824", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48228", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "having dinner with my co-workers .", "storylet_id": "241144"}], [{"original_text": "Our office at NASA is called the Millenium Falcon office.", "album_id": "72157623424455540", "photo_flickr_id": "4352289121", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48229", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our office at organization is called the millenium falcon office .", "storylet_id": "241145"}], [{"original_text": "We have a model of the Falcon, sort of a mascot for us.", "album_id": "72157623424455540", "photo_flickr_id": "4352289661", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48229", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we have a model of the falcon , sort of a mascot for us .", "storylet_id": "241146"}], [{"original_text": "That shows something about the guys I work with. They don't take themselves overly seriously.", "album_id": "72157623424455540", "photo_flickr_id": "4352291333", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48229", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that shows something about the guys i work with . they do n't take themselves overly seriously .", "storylet_id": "241147"}], [{"original_text": "We have a lot of meetings, but we also have a lot of laughs.", "album_id": "72157623424455540", "photo_flickr_id": "4353038184", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48229", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we have a lot of meetings , but we also have a lot of laughs .", "storylet_id": "241148"}], [{"original_text": "We try to get together to have a meal at a restaurant at least once a month.", "album_id": "72157623424455540", "photo_flickr_id": "4353038824", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48229", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we try to get together to have a meal at a restaurant at least once a month .", "storylet_id": "241149"}], [{"original_text": "Th screenwriter is writing a new story to be made into a movie.", "album_id": "159883", "photo_flickr_id": "6404342", "setting": "first-2-pick-and-tell", "worker_id": "E96JYA88ZEL20UV", "story_id": "48230", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "th screenwriter is writing a new story to be made into a movie .", "storylet_id": "241150"}], [{"original_text": "As he finishes up, he lists the cast members and gives them credit.", "album_id": "159883", "photo_flickr_id": "6404337", "setting": "first-2-pick-and-tell", "worker_id": "E96JYA88ZEL20UV", "story_id": "48230", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as he finishes up , he lists the cast members and gives them credit .", "storylet_id": "241151"}], [{"original_text": "His friend at work agrees to preview the movie and give his thoughts and ideas.", "album_id": "159883", "photo_flickr_id": "6404410", "setting": "first-2-pick-and-tell", "worker_id": "E96JYA88ZEL20UV", "story_id": "48230", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his friend at work agrees to preview the movie and give his thoughts and ideas .", "storylet_id": "241152"}], [{"original_text": "He watches the movie on the screen all the way through to the end.", "album_id": "159883", "photo_flickr_id": "6404452", "setting": "first-2-pick-and-tell", "worker_id": "E96JYA88ZEL20UV", "story_id": "48230", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he watches the movie on the screen all the way through to the end .", "storylet_id": "241153"}], [{"original_text": "He gives the screenwriter some ideas on things to change so that the movie will be a success.", "album_id": "159883", "photo_flickr_id": "6404384", "setting": "first-2-pick-and-tell", "worker_id": "E96JYA88ZEL20UV", "story_id": "48230", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he gives the screenwriter some ideas on things to change so that the movie will be a success .", "storylet_id": "241154"}], [{"original_text": "At the office getting down to work for the day.", "album_id": "159883", "photo_flickr_id": "6404342", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48231", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the office getting down to work for the day .", "storylet_id": "241155"}], [{"original_text": "The company needs to find a way to dispose of the broken towers an monitors.", "album_id": "159883", "photo_flickr_id": "6404352", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48231", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the company needs to find a way to dispose of the broken towers an monitors .", "storylet_id": "241156"}], [{"original_text": "One co-worker giving the other worker a hand with the project.", "album_id": "159883", "photo_flickr_id": "6404384", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48231", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one co-worker giving the other worker a hand with the project .", "storylet_id": "241157"}], [{"original_text": "Had to offer my friend a tic tic, I think he had onions on his hot dog.", "album_id": "159883", "photo_flickr_id": "6404444", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48231", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "had to offer my friend a tic tic , i think he had onions on his hot dog .", "storylet_id": "241158"}], [{"original_text": "A young man waits for his interview as he hopes to be hired by the company.", "album_id": "159883", "photo_flickr_id": "6404459", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48231", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a young man waits for his interview as he hopes to be hired by the company .", "storylet_id": "241159"}], [{"original_text": "While working I enjoy having sunlight coming through the windows.", "album_id": "159883", "photo_flickr_id": "6404342", "setting": "last-3-pick-old-and-tell", "worker_id": "G8AW2J116WYDX4L", "story_id": "48232", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while working i enjoy having sunlight coming through the windows .", "storylet_id": "241160"}], [{"original_text": "On my monitor I am working on the cast for a script.", "album_id": "159883", "photo_flickr_id": "6404337", "setting": "last-3-pick-old-and-tell", "worker_id": "G8AW2J116WYDX4L", "story_id": "48232", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on my monitor i am working on the cast for a script .", "storylet_id": "241161"}], [{"original_text": "My coworker sometimes sits around and stares blankly at the wall.", "album_id": "159883", "photo_flickr_id": "6404410", "setting": "last-3-pick-old-and-tell", "worker_id": "G8AW2J116WYDX4L", "story_id": "48232", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my coworker sometimes sits around and stares blankly at the wall .", "storylet_id": "241162"}], [{"original_text": "I love this location shown on my computer. What a great building.", "album_id": "159883", "photo_flickr_id": "6404452", "setting": "last-3-pick-old-and-tell", "worker_id": "G8AW2J116WYDX4L", "story_id": "48232", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love this location shown on my computer . what a great building .", "storylet_id": "241163"}], [{"original_text": "My coworker and I don't agree on the building.", "album_id": "159883", "photo_flickr_id": "6404384", "setting": "last-3-pick-old-and-tell", "worker_id": "G8AW2J116WYDX4L", "story_id": "48232", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my coworker and i do n't agree on the building .", "storylet_id": "241164"}], [{"original_text": "An important deadline was approaching quickly, so our work group had to pull long hours to get the job done.", "album_id": "159883", "photo_flickr_id": "6404342", "setting": "last-3-pick-old-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "48233", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an important deadline was approaching quickly , so our work group had to pull long hours to get the job done .", "storylet_id": "241165"}], [{"original_text": "We used our most advanced computing possible.", "album_id": "159883", "photo_flickr_id": "6404352", "setting": "last-3-pick-old-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "48233", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we used our most advanced computing possible .", "storylet_id": "241166"}], [{"original_text": "Things got a little heated after staying up so many hours.", "album_id": "159883", "photo_flickr_id": "6404384", "setting": "last-3-pick-old-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "48233", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "things got a little heated after staying up so many hours .", "storylet_id": "241167"}], [{"original_text": "We didn't get to shower and brush our teeth, so these kept us from smelling too horribly.", "album_id": "159883", "photo_flickr_id": "6404444", "setting": "last-3-pick-old-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "48233", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we did n't get to shower and brush our teeth , so these kept us from smelling too horribly .", "storylet_id": "241168"}], [{"original_text": "After hours of work, we were finally done! I enjoyed finally being able to relax and play a video game.", "album_id": "159883", "photo_flickr_id": "6404459", "setting": "last-3-pick-old-and-tell", "worker_id": "V29NQN2VIWJGN00", "story_id": "48233", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after hours of work , we were finally done ! i enjoyed finally being able to relax and play a video game .", "storylet_id": "241169"}], [{"original_text": "He is very happy to finally have modern office equipment. ", "album_id": "159883", "photo_flickr_id": "6404342", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48234", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he is very happy to finally have modern office equipment .", "storylet_id": "241170"}], [{"original_text": "The old computers were sitting in the corner awaiting pickup. ", "album_id": "159883", "photo_flickr_id": "6404352", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48234", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the old computers were sitting in the corner awaiting pickup .", "storylet_id": "241171"}], [{"original_text": "Wouldn't you know the new computer would crash on the very first day. ", "album_id": "159883", "photo_flickr_id": "6404384", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48234", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "would n't you know the new computer would crash on the very first day .", "storylet_id": "241172"}], [{"original_text": "Time for a break. ", "album_id": "159883", "photo_flickr_id": "6404444", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48234", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "time for a break .", "storylet_id": "241173"}], [{"original_text": "Meanwhile, not all the workers have desks. ", "album_id": "159883", "photo_flickr_id": "6404459", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48234", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "meanwhile , not all the workers have desks .", "storylet_id": "241174"}], [{"original_text": "All set to travel the historic lighthouse path for this part of our vacation.", "album_id": "72157623077077427", "photo_flickr_id": "4271571658", "setting": "first-2-pick-and-tell", "worker_id": "NHUIXTBLYFGB460", "story_id": "48235", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all set to travel the historic lighthouse path for this part of our vacation .", "storylet_id": "241175"}], [{"original_text": "And up the path we go.", "album_id": "72157623077077427", "photo_flickr_id": "4271605136", "setting": "first-2-pick-and-tell", "worker_id": "NHUIXTBLYFGB460", "story_id": "48235", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and up the path we go .", "storylet_id": "241176"}], [{"original_text": "Here we are at the historic lighthouse at the end of the path.", "album_id": "72157623077077427", "photo_flickr_id": "4271604506", "setting": "first-2-pick-and-tell", "worker_id": "NHUIXTBLYFGB460", "story_id": "48235", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here we are at the historic lighthouse at the end of the path .", "storylet_id": "241177"}], [{"original_text": "This is the explanatory sign for the historic lighthouse and when it was built.", "album_id": "72157623077077427", "photo_flickr_id": "4271572074", "setting": "first-2-pick-and-tell", "worker_id": "NHUIXTBLYFGB460", "story_id": "48235", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the explanatory sign for the historic lighthouse and when it was built .", "storylet_id": "241178"}], [{"original_text": "Here it is in all of it's glory. It's picture time, and part of a great vacation.", "album_id": "72157623077077427", "photo_flickr_id": "4271571808", "setting": "first-2-pick-and-tell", "worker_id": "NHUIXTBLYFGB460", "story_id": "48235", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here it is in all of it 's glory . it 's picture time , and part of a great vacation .", "storylet_id": "241179"}], [{"original_text": "We came to this island for a vacation.", "album_id": "72157623077077427", "photo_flickr_id": "4271562228", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "48236", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we came to this island for a vacation .", "storylet_id": "241180"}], [{"original_text": "There were many other tourists like us eating at this place.", "album_id": "72157623077077427", "photo_flickr_id": "4270817109", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "48236", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many other tourists like us eating at this place .", "storylet_id": "241181"}], [{"original_text": "We drove on the roads in hopes of seeing some sights.", "album_id": "72157623077077427", "photo_flickr_id": "4270861247", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "48236", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we drove on the roads in hopes of seeing some sights .", "storylet_id": "241182"}], [{"original_text": "We came upon this lighthouse close to the beach.", "album_id": "72157623077077427", "photo_flickr_id": "4270861675", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "48236", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we came upon this lighthouse close to the beach .", "storylet_id": "241183"}], [{"original_text": "We went up to the lighthouse to explore.", "album_id": "72157623077077427", "photo_flickr_id": "4271605136", "setting": "first-2-pick-and-tell", "worker_id": "Q3HDANQMY0CMV1S", "story_id": "48236", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we went up to the lighthouse to explore .", "storylet_id": "241184"}], [{"original_text": "I went to see a historic lighthouse yesterday.", "album_id": "72157623077077427", "photo_flickr_id": "4271571658", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "48237", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to see a historic lighthouse yesterday .", "storylet_id": "241185"}], [{"original_text": "It was a small lighthouse at the end of a point.", "album_id": "72157623077077427", "photo_flickr_id": "4271605136", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "48237", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a small lighthouse at the end of a point .", "storylet_id": "241186"}], [{"original_text": "It had a black base and a white top, near it was a mile marker to other locations.", "album_id": "72157623077077427", "photo_flickr_id": "4271604506", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "48237", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it had a black base and a white top , near it was a mile marker to other locations .", "storylet_id": "241187"}], [{"original_text": "The plaque at the base told me when the lighthouse was in use.", "album_id": "72157623077077427", "photo_flickr_id": "4271572074", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "48237", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the plaque at the base told me when the lighthouse was in use .", "storylet_id": "241188"}], [{"original_text": "I got a really cool picture from right at the bottom, it looked great.", "album_id": "72157623077077427", "photo_flickr_id": "4271571808", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "48237", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i got a really cool picture from right at the bottom , it looked great .", "storylet_id": "241189"}], [{"original_text": "A map guides the way to the Historic Lighthouse.", "album_id": "72157623077077427", "photo_flickr_id": "4271571658", "setting": "last-3-pick-old-and-tell", "worker_id": "HB3GKTJZFMEBN04", "story_id": "48238", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a map guides the way to the historic lighthouse .", "storylet_id": "241190"}], [{"original_text": "Looking up at the lighthouse from below.", "album_id": "72157623077077427", "photo_flickr_id": "4271605136", "setting": "last-3-pick-old-and-tell", "worker_id": "HB3GKTJZFMEBN04", "story_id": "48238", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "looking up at the lighthouse from below .", "storylet_id": "241191"}], [{"original_text": "The mile post sign showing various locations.", "album_id": "72157623077077427", "photo_flickr_id": "4271604506", "setting": "last-3-pick-old-and-tell", "worker_id": "HB3GKTJZFMEBN04", "story_id": "48238", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the mile post sign showing various locations .", "storylet_id": "241192"}], [{"original_text": "A history lesson on the lighthouse.", "album_id": "72157623077077427", "photo_flickr_id": "4271572074", "setting": "last-3-pick-old-and-tell", "worker_id": "HB3GKTJZFMEBN04", "story_id": "48238", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a history lesson on the lighthouse .", "storylet_id": "241193"}], [{"original_text": "The view of the lighthouse from the ocean side.", "album_id": "72157623077077427", "photo_flickr_id": "4271571808", "setting": "last-3-pick-old-and-tell", "worker_id": "HB3GKTJZFMEBN04", "story_id": "48238", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view of the lighthouse from the ocean side .", "storylet_id": "241194"}], [{"original_text": "Samuel was a huge fan of lighthouses. He'd go see them wherever he want.", "album_id": "72157623077077427", "photo_flickr_id": "4271571658", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48239", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was a huge fan of lighthouses . he 'd go see them wherever he want .", "storylet_id": "241195"}], [{"original_text": "He'd long had a dream to visit a remote lighthouse in England.", "album_id": "72157623077077427", "photo_flickr_id": "4271605136", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48239", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he 'd long had a dream to visit a remote lighthouse in location .", "storylet_id": "241196"}], [{"original_text": "When he got there, he was thrilled. He loved the signpost that pointed to other lighthouses around the world.", "album_id": "72157623077077427", "photo_flickr_id": "4271604506", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48239", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when he got there , he was thrilled . he loved the signpost that pointed to other lighthouses around the world .", "storylet_id": "241197"}], [{"original_text": "He took a picture of the Historic Lighthouse plaque to add to his special album of such pictures.", "album_id": "72157623077077427", "photo_flickr_id": "4271572074", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48239", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he took a picture of the historic lighthouse plaque to add to his special album of such pictures .", "storylet_id": "241198"}], [{"original_text": "He took hundreds of pictures of the light itself, so he'd never forget the special day.", "album_id": "72157623077077427", "photo_flickr_id": "4271571808", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48239", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he took hundreds of pictures of the light itself , so he 'd never forget the special day .", "storylet_id": "241199"}], [{"original_text": "Visited my family today for church services.", "album_id": "72157623307191679", "photo_flickr_id": "4355394581", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "48240", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visited my family today for church services .", "storylet_id": "241200"}], [{"original_text": "This is my brother, Joe, and my Aunt Sue. Church was just getting over.", "album_id": "72157623307191679", "photo_flickr_id": "4356138276", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "48240", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is my brother , [male] , and my aunt [female] . church was just getting over .", "storylet_id": "241201"}], [{"original_text": "Two of my other Uncles and me.", "album_id": "72157623307191679", "photo_flickr_id": "4356138474", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "48240", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two of my other uncles and me .", "storylet_id": "241202"}], [{"original_text": "Had to stop by to see my cousin, Han. He had to work today.", "album_id": "72157623307191679", "photo_flickr_id": "4356141576", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "48240", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "had to stop by to see my cousin , han . he had to work today .", "storylet_id": "241203"}], [{"original_text": "Jet and I went for a ride afterward.", "album_id": "72157623307191679", "photo_flickr_id": "4355398551", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "48240", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "jet and i went for a ride afterward .", "storylet_id": "241204"}], [{"original_text": "Going to church with my mom today.", "album_id": "72157623307191679", "photo_flickr_id": "4356138276", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "48241", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going to church with my mom today .", "storylet_id": "241205"}], [{"original_text": "Mom spends more time getting pictures of every single family member than anything else.", "album_id": "72157623307191679", "photo_flickr_id": "4355395295", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "48241", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom spends more time getting pictures of every single family member than anything else .", "storylet_id": "241206"}], [{"original_text": "Oh look, a distant cousin, grab her before she sits down mom we don't have a picture of her yet!", "album_id": "72157623307191679", "photo_flickr_id": "4355396051", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "48241", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "oh look , a distant cousin , grab her before she sits down mom we do n't have a picture of her yet !", "storylet_id": "241207"}], [{"original_text": "Just when you think mom will walk away from the camera, nope, she grabs it back out of her purse and starts snapping pics of this group of people praying.", "album_id": "72157623307191679", "photo_flickr_id": "4356140514", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "48241", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "just when you think mom will walk away from the camera , nope , she grabs it back out of her purse and starts snapping pics of this group of people praying .", "storylet_id": "241208"}], [{"original_text": "Well thank goodness that's over, 2 hours of pictures with distant relatives, we're finally free to go get some lunch...oh but look mom found uncle Ren, the crazy man who still thinks he'll catch a germ if he takes off his medical mask. I cannot wait to get out of here!!", "album_id": "72157623307191679", "photo_flickr_id": "4355398799", "setting": "first-2-pick-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "48241", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "well thank goodness that 's over , 2 hours of pictures with distant relatives , we 're finally free to go get some lunch ... oh but look mom found uncle ren , the crazy man who still thinks he 'll catch a germ if he takes off his medical mask . i can not wait to get out of here ! !", "storylet_id": "241209"}], [{"original_text": "My whole family came to visit me in America today.", "album_id": "72157623307191679", "photo_flickr_id": "4355394581", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48242", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my whole family came to visit me in location today .", "storylet_id": "241210"}], [{"original_text": "My mom and dad showed up first.", "album_id": "72157623307191679", "photo_flickr_id": "4356138276", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48242", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my mom and dad showed up first .", "storylet_id": "241211"}], [{"original_text": "Then my grandparents and cousin came to see me.", "album_id": "72157623307191679", "photo_flickr_id": "4356138474", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48242", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then my grandparents and cousin came to see me .", "storylet_id": "241212"}], [{"original_text": "My brother could care less, he just wanted to play on his computer.", "album_id": "72157623307191679", "photo_flickr_id": "4356141576", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48242", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my brother could care less , he just wanted to play on his computer .", "storylet_id": "241213"}], [{"original_text": "I took my dad out for a ride on my scooter while he was in town.", "album_id": "72157623307191679", "photo_flickr_id": "4355398551", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48242", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i took my dad out for a ride on my scooter while he was in town .", "storylet_id": "241214"}], [{"original_text": "My family came into town.", "album_id": "72157623307191679", "photo_flickr_id": "4355394581", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "48243", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family came into town .", "storylet_id": "241215"}], [{"original_text": "They went to church with me.", "album_id": "72157623307191679", "photo_flickr_id": "4356138276", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "48243", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they went to church with me .", "storylet_id": "241216"}], [{"original_text": "They visited where I work at.", "album_id": "72157623307191679", "photo_flickr_id": "4356138474", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "48243", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they visited where i work at .", "storylet_id": "241217"}], [{"original_text": "They weren't too impressed by my office.", "album_id": "72157623307191679", "photo_flickr_id": "4356141576", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "48243", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were n't too impressed by my office .", "storylet_id": "241218"}], [{"original_text": "But they did enjoy my scooter.", "album_id": "72157623307191679", "photo_flickr_id": "4355398551", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "48243", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but they did enjoy my scooter .", "storylet_id": "241219"}], [{"original_text": "The whole family poses during the reunion.", "album_id": "72157623307191679", "photo_flickr_id": "4355394581", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48244", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family poses during the reunion .", "storylet_id": "241220"}], [{"original_text": "Harry and Maude smile for the camera!", "album_id": "72157623307191679", "photo_flickr_id": "4356138276", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48244", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] and [female] smile for the camera !", "storylet_id": "241221"}], [{"original_text": "The siblings are happy to be together again.", "album_id": "72157623307191679", "photo_flickr_id": "4356138474", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48244", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the siblings are happy to be together again .", "storylet_id": "241222"}], [{"original_text": "John works at his computer.", "album_id": "72157623307191679", "photo_flickr_id": "4356141576", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48244", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] works at his computer .", "storylet_id": "241223"}], [{"original_text": "Jenny and John went on a motorcycle ride.", "album_id": "72157623307191679", "photo_flickr_id": "4355398551", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48244", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] and [male] went on a motorcycle ride .", "storylet_id": "241224"}], [{"original_text": "it was time to venture on a journey", "album_id": "72157623619601364", "photo_flickr_id": "4433116462", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "48245", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was time to venture on a journey", "storylet_id": "241225"}], [{"original_text": "off to bear lane they went", "album_id": "72157623619601364", "photo_flickr_id": "4432344885", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "48245", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "off to bear lane they went", "storylet_id": "241226"}], [{"original_text": "they had to stop and refuel at the station", "album_id": "72157623619601364", "photo_flickr_id": "4433187676", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "48245", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had to stop and refuel at the station", "storylet_id": "241227"}], [{"original_text": "they visited the fire station", "album_id": "72157623619601364", "photo_flickr_id": "4433284788", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "48245", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they visited the fire station", "storylet_id": "241228"}], [{"original_text": "and met all the brave fire fighters ", "album_id": "72157623619601364", "photo_flickr_id": "4433287736", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "48245", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and met all the brave fire fighters", "storylet_id": "241229"}], [{"original_text": "I had to find the fire department.", "album_id": "72157623619601364", "photo_flickr_id": "4432344885", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48246", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had to find the fire department .", "storylet_id": "241230"}], [{"original_text": "There was a fire nearby that I needed to warn them about.", "album_id": "72157623619601364", "photo_flickr_id": "4433190550", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48246", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a fire nearby that i needed to warn them about .", "storylet_id": "241231"}], [{"original_text": "I finally found the building after searching for hours.", "album_id": "72157623619601364", "photo_flickr_id": "4432494439", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48246", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i finally found the building after searching for hours .", "storylet_id": "241232"}], [{"original_text": "I had to run around to the front.", "album_id": "72157623619601364", "photo_flickr_id": "4432497527", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48246", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had to run around to the front .", "storylet_id": "241233"}], [{"original_text": "I saw the sign.", "album_id": "72157623619601364", "photo_flickr_id": "4433287736", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48246", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i saw the sign .", "storylet_id": "241234"}], [{"original_text": "The fire department is located in bear lane.", "album_id": "72157623619601364", "photo_flickr_id": "4432344885", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48247", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fire department is located in bear lane .", "storylet_id": "241235"}], [{"original_text": "The class went on a field trip,", "album_id": "72157623619601364", "photo_flickr_id": "4433190550", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48247", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the class went on a field trip ,", "storylet_id": "241236"}], [{"original_text": "to learn about the techniques used,", "album_id": "72157623619601364", "photo_flickr_id": "4432494439", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48247", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "to learn about the techniques used ,", "storylet_id": "241237"}], [{"original_text": "and the many ways,", "album_id": "72157623619601364", "photo_flickr_id": "4432497527", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48247", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the many ways ,", "storylet_id": "241238"}], [{"original_text": "the fire department protects the community.", "album_id": "72157623619601364", "photo_flickr_id": "4433287736", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48247", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fire department protects the community .", "storylet_id": "241239"}], [{"original_text": "We were on Bear Lane.", "album_id": "72157623619601364", "photo_flickr_id": "4432344885", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48248", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were on location location .", "storylet_id": "241240"}], [{"original_text": "This board advertised a business.", "album_id": "72157623619601364", "photo_flickr_id": "4433190550", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48248", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this board advertised a business .", "storylet_id": "241241"}], [{"original_text": "We got to see a fire station along the way.", "album_id": "72157623619601364", "photo_flickr_id": "4432494439", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48248", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got to see a fire station along the way .", "storylet_id": "241242"}], [{"original_text": "The walls were covered with bricks.", "album_id": "72157623619601364", "photo_flickr_id": "4432497527", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48248", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the walls were covered with bricks .", "storylet_id": "241243"}], [{"original_text": "It was the Warwickshire Fire and Rescue Service.", "album_id": "72157623619601364", "photo_flickr_id": "4433287736", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48248", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was the organization organization organization organization organization .", "storylet_id": "241244"}], [{"original_text": "I was born in Warwickshire, a small town in England, and I love to go back to visit.", "album_id": "72157623619601364", "photo_flickr_id": "4433116462", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48249", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was born in location , a small town in location , and i love to go back to visit .", "storylet_id": "241245"}], [{"original_text": "My childhood home was on Bear Lane.", "album_id": "72157623619601364", "photo_flickr_id": "4432344885", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48249", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my childhood home was on location location .", "storylet_id": "241246"}], [{"original_text": "My father was a fireman, so I go to visit the fire crew when I'm there.", "album_id": "72157623619601364", "photo_flickr_id": "4433187676", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48249", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my father was a fireman , so i go to visit the fire crew when i 'm there .", "storylet_id": "241247"}], [{"original_text": "They are always glad to see me.", "album_id": "72157623619601364", "photo_flickr_id": "4433284788", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48249", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they are always glad to see me .", "storylet_id": "241248"}], [{"original_text": "I feel like I'm back in my childhood years when I'm there!", "album_id": "72157623619601364", "photo_flickr_id": "4433287736", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48249", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i feel like i 'm back in my childhood years when i 'm there !", "storylet_id": "241249"}], [{"original_text": "Before we toured the new space, we were able to examine some plans so the layout was not a total surprise.", "album_id": "72157594482035348", "photo_flickr_id": "358954298", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "48250", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before we toured the new space , we were able to examine some plans so the layout was not a total surprise .", "storylet_id": "241250"}], [{"original_text": "As soon as we entered the building we noticed the old details had been preserved.", "album_id": "72157594482035348", "photo_flickr_id": "358954754", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "48250", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as soon as we entered the building we noticed the old details had been preserved .", "storylet_id": "241251"}], [{"original_text": "The large windows allowed lots of light to enter the large rooms.", "album_id": "72157594482035348", "photo_flickr_id": "358954361", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "48250", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the large windows allowed lots of light to enter the large rooms .", "storylet_id": "241252"}], [{"original_text": "The wood details in the old walls had also been preserved.", "album_id": "72157594482035348", "photo_flickr_id": "358954598", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "48250", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wood details in the old walls had also been preserved .", "storylet_id": "241253"}], [{"original_text": "The kitchen although serviceable, could use some updating if we were to sign the lease.", "album_id": "72157594482035348", "photo_flickr_id": "358954664", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "48250", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kitchen although serviceable , could use some updating if we were to sign the lease .", "storylet_id": "241254"}], [{"original_text": "Visiting and moving into new apartment. ", "album_id": "72157594482035348", "photo_flickr_id": "358954686", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48251", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visiting and moving into new apartment .", "storylet_id": "241255"}], [{"original_text": "Checking out the kitchen. ", "album_id": "72157594482035348", "photo_flickr_id": "358954664", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48251", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "checking out the kitchen .", "storylet_id": "241256"}], [{"original_text": "New Bedroom backslash made out of bricks. ", "album_id": "72157594482035348", "photo_flickr_id": "358954463", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48251", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "new bedroom backslash made out of bricks .", "storylet_id": "241257"}], [{"original_text": "Cool square lighting in the living room.", "album_id": "72157594482035348", "photo_flickr_id": "358954397", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48251", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cool square lighting in the living room .", "storylet_id": "241258"}], [{"original_text": "Fire escape plans, and emergency exit. ", "album_id": "72157594482035348", "photo_flickr_id": "358954298", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48251", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fire escape plans , and emergency exit .", "storylet_id": "241259"}], [{"original_text": "My friend decided to show off his new warehouse office to me one day.", "album_id": "72157594482035348", "photo_flickr_id": "358954686", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48252", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend decided to show off his new warehouse office to me one day .", "storylet_id": "241260"}], [{"original_text": "The office was an open plan, but had a kitchen worked in to the former warehouse space.", "album_id": "72157594482035348", "photo_flickr_id": "358954664", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48252", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the office was an open plan , but had a kitchen worked in to the former warehouse space .", "storylet_id": "241261"}], [{"original_text": "His future office had the brick wall of the building as a feature wall.", "album_id": "72157594482035348", "photo_flickr_id": "358954463", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48252", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his future office had the brick wall of the building as a feature wall .", "storylet_id": "241262"}], [{"original_text": "The ceiling had interesting light fixtures installed.", "album_id": "72157594482035348", "photo_flickr_id": "358954397", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48252", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ceiling had interesting light fixtures installed .", "storylet_id": "241263"}], [{"original_text": "The floor plan showed where his office was in relation to all the others. ", "album_id": "72157594482035348", "photo_flickr_id": "358954298", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48252", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the floor plan showed where his office was in relation to all the others .", "storylet_id": "241264"}], [{"original_text": "Today was the move in day for the college student who was moving into his first apartment alone.", "album_id": "72157594482035348", "photo_flickr_id": "358954686", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48253", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the move in day for the college student who was moving into his first apartment alone .", "storylet_id": "241265"}], [{"original_text": "He was very excited about planning out where he was going to move all his furniture.", "album_id": "72157594482035348", "photo_flickr_id": "358954664", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48253", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was very excited about planning out where he was going to move all his furniture .", "storylet_id": "241266"}], [{"original_text": "This wall will be sturdy enough to hang his new television. ", "album_id": "72157594482035348", "photo_flickr_id": "358954463", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48253", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this wall will be sturdy enough to hang his new television .", "storylet_id": "241267"}], [{"original_text": "The lighting is unique and will help save money versus using his old lamps. ", "album_id": "72157594482035348", "photo_flickr_id": "358954397", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48253", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lighting is unique and will help save money versus using his old lamps .", "storylet_id": "241268"}], [{"original_text": "He also made sure to take note of the fire escape plan for the future. He was prepared for anything and excited to finally move in.", "album_id": "72157594482035348", "photo_flickr_id": "358954298", "setting": "last-3-pick-old-and-tell", "worker_id": "0KPZWFUAMLOBOPR", "story_id": "48253", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he also made sure to take note of the fire escape plan for the future . he was prepared for anything and excited to finally move in .", "storylet_id": "241269"}], [{"original_text": "The house I bought required a lot of renovations. I ordered the original house plans to help me decide what to do.", "album_id": "72157594482035348", "photo_flickr_id": "358954298", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48254", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the house i bought required a lot of renovations . i ordered the original house plans to help me decide what to do .", "storylet_id": "241270"}], [{"original_text": "I started with the wooden trim in the living room.", "album_id": "72157594482035348", "photo_flickr_id": "358954754", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48254", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i started with the wooden trim in the living room .", "storylet_id": "241271"}], [{"original_text": "Then I did a many-paned window in the bedroom.", "album_id": "72157594482035348", "photo_flickr_id": "358954361", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48254", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then i did a many-paned window in the bedroom .", "storylet_id": "241272"}], [{"original_text": "The cellar used to have very cool wooden columns on bricks, and I restored them.", "album_id": "72157594482035348", "photo_flickr_id": "358954598", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48254", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cellar used to have very cool wooden columns on bricks , and i restored them .", "storylet_id": "241273"}], [{"original_text": "I painted the kitchen the shade of pewter blue it was years ago. I love the way the house is working out!", "album_id": "72157594482035348", "photo_flickr_id": "358954664", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48254", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i painted the kitchen the shade of pewter blue it was years ago . i love the way the house is working out !", "storylet_id": "241274"}], [{"original_text": "My wife was so happy to bring our daughter.", "album_id": "72157623117965103", "photo_flickr_id": "4290317621", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48255", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my wife was so happy to bring our daughter .", "storylet_id": "241275"}], [{"original_text": "There were other people there to watch the performance.", "album_id": "72157623117965103", "photo_flickr_id": "4291059184", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48255", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were other people there to watch the performance .", "storylet_id": "241276"}], [{"original_text": "The men were protesting outside.", "album_id": "72157623117965103", "photo_flickr_id": "4291058986", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48255", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the men were protesting outside .", "storylet_id": "241277"}], [{"original_text": "Behind the scenes were clever students.", "album_id": "72157623117965103", "photo_flickr_id": "4287506293", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48255", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "behind the scenes were clever students .", "storylet_id": "241278"}], [{"original_text": "There was a team of students who created the performance.", "album_id": "72157623117965103", "photo_flickr_id": "4288276988", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48255", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a team of students who created the performance .", "storylet_id": "241279"}], [{"original_text": "today we picked to get a new healthcare for our state. Alot of people showed up.", "album_id": "72157623117965103", "photo_flickr_id": "4291059130", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48256", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we picked to get a new healthcare for our state . alot of people showed up .", "storylet_id": "241280"}], [{"original_text": "This room was filled to capacity.", "album_id": "72157623117965103", "photo_flickr_id": "4291059184", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48256", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this room was filled to capacity .", "storylet_id": "241281"}], [{"original_text": "These are some who attended the meeting.", "album_id": "72157623117965103", "photo_flickr_id": "4290317743", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48256", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these are some who attended the meeting .", "storylet_id": "241282"}], [{"original_text": "This is Joe, he was fully into this.", "album_id": "72157623117965103", "photo_flickr_id": "4288286860", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48256", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is [male] , he was fully into this .", "storylet_id": "241283"}], [{"original_text": "Large crowds for health care.", "album_id": "72157623117965103", "photo_flickr_id": "4287551075", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48256", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "large crowds for health care .", "storylet_id": "241284"}], [{"original_text": "Lorraine was enthused to attend her daughter's ballet recital.", "album_id": "72157623117965103", "photo_flickr_id": "4290317621", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48257", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was enthused to attend her daughter 's ballet recital .", "storylet_id": "241285"}], [{"original_text": "The rest of the crowd began to hush as the performance began.", "album_id": "72157623117965103", "photo_flickr_id": "4291059184", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48257", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rest of the crowd began to hush as the performance began .", "storylet_id": "241286"}], [{"original_text": "When we left we saw two nice men holding a sign.", "album_id": "72157623117965103", "photo_flickr_id": "4291058986", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48257", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we left we saw two nice men holding a sign .", "storylet_id": "241287"}], [{"original_text": "In our garage, Jane began to program. ", "album_id": "72157623117965103", "photo_flickr_id": "4287506293", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48257", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in our garage , [female] began to program .", "storylet_id": "241288"}], [{"original_text": "Mark checked her programming before he left our garage. ", "album_id": "72157623117965103", "photo_flickr_id": "4288276988", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48257", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] checked her programming before he left our garage .", "storylet_id": "241289"}], [{"original_text": "Protest going on outside for equality health care.", "album_id": "72157623117965103", "photo_flickr_id": "4291059130", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "48258", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "protest going on outside for equality health care .", "storylet_id": "241290"}], [{"original_text": "Having a school meeting on health care.", "album_id": "72157623117965103", "photo_flickr_id": "4291059184", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "48258", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "having a school meeting on health care .", "storylet_id": "241291"}], [{"original_text": "Everyone learning about health care!", "album_id": "72157623117965103", "photo_flickr_id": "4290317743", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "48258", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone learning about health care !", "storylet_id": "241292"}], [{"original_text": "Oh look its me one of my friends grabbed the camera.", "album_id": "72157623117965103", "photo_flickr_id": "4288286860", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "48258", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "oh look its me one of my friends grabbed the camera .", "storylet_id": "241293"}], [{"original_text": "Everyone educated on health care finally!", "album_id": "72157623117965103", "photo_flickr_id": "4287551075", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "48258", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone educated on health care finally !", "storylet_id": "241294"}], [{"original_text": "A group of protesters for social inequality are protesting outside.", "album_id": "72157623117965103", "photo_flickr_id": "4291059130", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "48259", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of protesters for social inequality are protesting outside .", "storylet_id": "241295"}], [{"original_text": "We went inside to watch an assembly.", "album_id": "72157623117965103", "photo_flickr_id": "4291059184", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "48259", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went inside to watch an assembly .", "storylet_id": "241296"}], [{"original_text": "We are killing time before the main event.", "album_id": "72157623117965103", "photo_flickr_id": "4290317743", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "48259", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are killing time before the main event .", "storylet_id": "241297"}], [{"original_text": "He's really happy taking a break.", "album_id": "72157623117965103", "photo_flickr_id": "4288286860", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "48259", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he 's really happy taking a break .", "storylet_id": "241298"}], [{"original_text": "We are still watching the assembly.", "album_id": "72157623117965103", "photo_flickr_id": "4287551075", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "48259", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we are still watching the assembly .", "storylet_id": "241299"}], [{"original_text": "Our company was having a big planning meeting.", "album_id": "72157623362769573", "photo_flickr_id": "4378969709", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "48260", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our company was having a big planning meeting .", "storylet_id": "241300"}], [{"original_text": "It seemed as though everyone was there.", "album_id": "72157623362769573", "photo_flickr_id": "4378970423", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "48260", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it seemed as though everyone was there .", "storylet_id": "241301"}], [{"original_text": "Lots of presentations took place.", "album_id": "72157623362769573", "photo_flickr_id": "4378969793", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "48260", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lots of presentations took place .", "storylet_id": "241302"}], [{"original_text": "And big plans were put into place.", "album_id": "72157623362769573", "photo_flickr_id": "4378970883", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "48260", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and big plans were put into place .", "storylet_id": "241303"}], [{"original_text": "Afterwards we all talked and enjoyed each others company.", "album_id": "72157623362769573", "photo_flickr_id": "4378970537", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "48260", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards we all talked and enjoyed each others company .", "storylet_id": "241304"}], [{"original_text": "Tim arrive for his first day of college.", "album_id": "72157623362769573", "photo_flickr_id": "4378969709", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48261", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] arrive for his first day of college .", "storylet_id": "241305"}], [{"original_text": "He entered the class room and got to learning.", "album_id": "72157623362769573", "photo_flickr_id": "4378969793", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48261", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he entered the class room and got to learning .", "storylet_id": "241306"}], [{"original_text": "The teacher then asked him to get up in front of the class and solve a problem on the board.", "album_id": "72157623362769573", "photo_flickr_id": "4378970019", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48261", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the teacher then asked him to get up in front of the class and solve a problem on the board .", "storylet_id": "241307"}], [{"original_text": "Next he was shown a presentation about business.", "album_id": "72157623362769573", "photo_flickr_id": "4378970213", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48261", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next he was shown a presentation about business .", "storylet_id": "241308"}], [{"original_text": "He was really absorbing so much information on just his first day.", "album_id": "72157623362769573", "photo_flickr_id": "4379726010", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48261", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was really absorbing so much information on just his first day .", "storylet_id": "241309"}], [{"original_text": "There were a lot of people at the school today.", "album_id": "72157623362769573", "photo_flickr_id": "4378969709", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48262", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of people at the school today .", "storylet_id": "241310"}], [{"original_text": "All of the students showed up to class.", "album_id": "72157623362769573", "photo_flickr_id": "4378970423", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48262", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the students showed up to class .", "storylet_id": "241311"}], [{"original_text": "The instructor was very impressed.", "album_id": "72157623362769573", "photo_flickr_id": "4378969793", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48262", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the instructor was very impressed .", "storylet_id": "241312"}], [{"original_text": "We had a final next week.", "album_id": "72157623362769573", "photo_flickr_id": "4378970883", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48262", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a final next week .", "storylet_id": "241313"}], [{"original_text": "After class we stayed to chat.", "album_id": "72157623362769573", "photo_flickr_id": "4378970537", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48262", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after class we stayed to chat .", "storylet_id": "241314"}], [{"original_text": "They parked and got ready to be bored out of their minds.", "album_id": "72157623362769573", "photo_flickr_id": "4378969709", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "48263", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they parked and got ready to be bored out of their minds .", "storylet_id": "241315"}], [{"original_text": "The lecture ended up being interesting.", "album_id": "72157623362769573", "photo_flickr_id": "4378969793", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "48263", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lecture ended up being interesting .", "storylet_id": "241316"}], [{"original_text": "Someone had to get a replacement marker for the dry erase board.", "album_id": "72157623362769573", "photo_flickr_id": "4378970019", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "48263", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "someone had to get a replacement marker for the dry erase board .", "storylet_id": "241317"}], [{"original_text": "A man's stomach was growling so loudly everyone could hear it.", "album_id": "72157623362769573", "photo_flickr_id": "4378970213", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "48263", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a man 's stomach was growling so loudly everyone could hear it .", "storylet_id": "241318"}], [{"original_text": "They wished it was cat videos instead of Powerpoint.", "album_id": "72157623362769573", "photo_flickr_id": "4379726010", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "48263", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they wished it was cat videos instead of powerpoint .", "storylet_id": "241319"}], [{"original_text": "I just started working for a new company.", "album_id": "72157623362769573", "photo_flickr_id": "4378969709", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48264", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i just started working for a new company .", "storylet_id": "241320"}], [{"original_text": "Sometimes I feel like I do nothing but attend meetings.", "album_id": "72157623362769573", "photo_flickr_id": "4378969793", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48264", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sometimes i feel like i do nothing but attend meetings .", "storylet_id": "241321"}], [{"original_text": "Yesterday's meeting was followed by a post-meeting, meeting.", "album_id": "72157623362769573", "photo_flickr_id": "4378970019", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48264", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "yesterday 's meeting was followed by a post-meeting , meeting .", "storylet_id": "241322"}], [{"original_text": "I do have to admit that I am learning a lot during these get-togethers.", "album_id": "72157623362769573", "photo_flickr_id": "4378970213", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48264", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i do have to admit that i am learning a lot during these get-togethers .", "storylet_id": "241323"}], [{"original_text": "But still, I hope that I can start doing some real work in a matter of weeks.", "album_id": "72157623362769573", "photo_flickr_id": "4379726010", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48264", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but still , i hope that i can start doing some real work in a matter of weeks .", "storylet_id": "241324"}], [{"original_text": "The truck was orange and rusted.", "album_id": "72157623488082540", "photo_flickr_id": "4380025130", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48265", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the truck was orange and rusted .", "storylet_id": "241325"}], [{"original_text": "The tires were in a close jumble.", "album_id": "72157623488082540", "photo_flickr_id": "4379271193", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48265", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tires were in a close jumble .", "storylet_id": "241326"}], [{"original_text": "The bus was broken down and rusted.", "album_id": "72157623488082540", "photo_flickr_id": "4379270527", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48265", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bus was broken down and rusted .", "storylet_id": "241327"}], [{"original_text": "The bus was well prepared and old.", "album_id": "72157623488082540", "photo_flickr_id": "4380028382", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48265", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bus was well prepared and old .", "storylet_id": "241328"}], [{"original_text": "Inside, I could see the interior.", "album_id": "72157623488082540", "photo_flickr_id": "4380028168", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48265", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "inside , i could see the interior .", "storylet_id": "241329"}], [{"original_text": "Decided to explore at an abandoned junkyard today. Lots of wrecked cars and vans and trucks, everywhere.", "album_id": "72157623488082540", "photo_flickr_id": "4379270527", "setting": "first-2-pick-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "48266", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "decided to explore at an abandoned junkyard today . lots of wrecked cars and vans and trucks , everywhere .", "storylet_id": "241330"}], [{"original_text": "Not to mention the hundreds of tires.", "album_id": "72157623488082540", "photo_flickr_id": "4379271193", "setting": "first-2-pick-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "48266", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "not to mention the hundreds of tires .", "storylet_id": "241331"}], [{"original_text": "Think this is just some broken down junk?", "album_id": "72157623488082540", "photo_flickr_id": "4380028382", "setting": "first-2-pick-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "48266", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "think this is just some broken down junk ?", "storylet_id": "241332"}], [{"original_text": "Nope. Apparently, someone lives here.", "album_id": "72157623488082540", "photo_flickr_id": "4380028572", "setting": "first-2-pick-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "48266", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "nope . apparently , someone lives here .", "storylet_id": "241333"}], [{"original_text": "The warehouse was oddly beautiful. We'll explore it more deeply the next time we come out.", "album_id": "72157623488082540", "photo_flickr_id": "4380031072", "setting": "first-2-pick-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "48266", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the warehouse was oddly beautiful . we 'll explore it more deeply the next time we come out .", "storylet_id": "241334"}], [{"original_text": "I had never actually been to a junk yard before.", "album_id": "72157623488082540", "photo_flickr_id": "4380025130", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48267", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had never actually been to a junk yard before .", "storylet_id": "241335"}], [{"original_text": "Look at all of these tires!", "album_id": "72157623488082540", "photo_flickr_id": "4379271193", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48267", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look at all of these tires !", "storylet_id": "241336"}], [{"original_text": "Somehow I just felt this could make a really great picture for a wall, maybe the office.", "album_id": "72157623488082540", "photo_flickr_id": "4379270527", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48267", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "somehow i just felt this could make a really great picture for a wall , maybe the office .", "storylet_id": "241337"}], [{"original_text": "This bus had definitely seen it's better days.", "album_id": "72157623488082540", "photo_flickr_id": "4380028382", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48267", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this bus had definitely seen it 's better days .", "storylet_id": "241338"}], [{"original_text": "Notice anything different about it?", "album_id": "72157623488082540", "photo_flickr_id": "4380028168", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48267", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "notice anything different about it ?", "storylet_id": "241339"}], [{"original_text": "We walked through the junk yard.", "album_id": "72157623488082540", "photo_flickr_id": "4380025130", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48268", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we walked through the junk yard .", "storylet_id": "241340"}], [{"original_text": "Tires where everywhere in there.", "album_id": "72157623488082540", "photo_flickr_id": "4379271193", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48268", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "tires where everywhere in there .", "storylet_id": "241341"}], [{"original_text": "Most of the vehicles there where pretty messed up.", "album_id": "72157623488082540", "photo_flickr_id": "4379270527", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48268", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most of the vehicles there where pretty messed up .", "storylet_id": "241342"}], [{"original_text": "Some where in better condition then others.", "album_id": "72157623488082540", "photo_flickr_id": "4380028382", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48268", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some where in better condition then others .", "storylet_id": "241343"}], [{"original_text": "We got to take a look inside of a few.", "album_id": "72157623488082540", "photo_flickr_id": "4380028168", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48268", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we got to take a look inside of a few .", "storylet_id": "241344"}], [{"original_text": "An old white bus sank into a junkyard ground.", "album_id": "72157623488082540", "photo_flickr_id": "4379270527", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "48269", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an old white bus sank into a junkyard ground .", "storylet_id": "241345"}], [{"original_text": "Many rows of old tires were stored in a dirty room.", "album_id": "72157623488082540", "photo_flickr_id": "4379271193", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "48269", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many rows of old tires were stored in a dirty room .", "storylet_id": "241346"}], [{"original_text": "There was an old silver RV that looked like it needed some cleaning up.", "album_id": "72157623488082540", "photo_flickr_id": "4380028382", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "48269", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was an old silver rv that looked like it needed some cleaning up .", "storylet_id": "241347"}], [{"original_text": "There was a cluttered room that appeared to be the junkyard office.", "album_id": "72157623488082540", "photo_flickr_id": "4380028572", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "48269", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a cluttered room that appeared to be the junkyard office .", "storylet_id": "241348"}], [{"original_text": "A man basked in a beam of light coming in from a hole in a ceiling.", "album_id": "72157623488082540", "photo_flickr_id": "4380031072", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "48269", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a man basked in a beam of light coming in from a hole in a ceiling .", "storylet_id": "241349"}], [{"original_text": "There was once a breaking news story that happened at this exact location. ", "album_id": "72157594497148917", "photo_flickr_id": "367717973", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48270", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was once a breaking news story that happened at this exact location .", "storylet_id": "241350"}], [{"original_text": "So the news truck rolled up and started setting up.", "album_id": "72157594497148917", "photo_flickr_id": "367691019", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48270", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so the news truck rolled up and started setting up .", "storylet_id": "241351"}], [{"original_text": "And the reporter showed up to start filming.", "album_id": "72157594497148917", "photo_flickr_id": "367777628", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48270", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the reporter showed up to start filming .", "storylet_id": "241352"}], [{"original_text": "Soon a whole crowd gathered around to see what was happening.", "album_id": "72157594497148917", "photo_flickr_id": "367750344", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48270", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "soon a whole crowd gathered around to see what was happening .", "storylet_id": "241353"}], [{"original_text": "So they were incorporated into the news story.", "album_id": "72157594497148917", "photo_flickr_id": "367750346", "setting": "first-2-pick-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48270", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so they were incorporated into the news story .", "storylet_id": "241354"}], [{"original_text": "Last night I saw someone break into a van.", "album_id": "72157594497148917", "photo_flickr_id": "367691019", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48271", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night i saw someone break into a van .", "storylet_id": "241355"}], [{"original_text": "They drove off with it as I called the police.", "album_id": "72157594497148917", "photo_flickr_id": "367691027", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48271", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they drove off with it as i called the police .", "storylet_id": "241356"}], [{"original_text": "The news crew came to report on it.", "album_id": "72157594497148917", "photo_flickr_id": "367750354", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48271", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the news crew came to report on it .", "storylet_id": "241357"}], [{"original_text": "The whole area was lit up.", "album_id": "72157594497148917", "photo_flickr_id": "367777639", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48271", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole area was lit up .", "storylet_id": "241358"}], [{"original_text": "A crowd of people stopped to watch.", "album_id": "72157594497148917", "photo_flickr_id": "367750344", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48271", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a crowd of people stopped to watch .", "storylet_id": "241359"}], [{"original_text": "I've always liked the city part at night. The lights by the trees make a cool scene.", "album_id": "72157594497148917", "photo_flickr_id": "367691019", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48272", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 've always liked the city part at night . the lights by the trees make a cool scene .", "storylet_id": "241360"}], [{"original_text": "Even regular trees look a little spooky in the dark.", "album_id": "72157594497148917", "photo_flickr_id": "367691027", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48272", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even regular trees look a little spooky in the dark .", "storylet_id": "241361"}], [{"original_text": "My friend Joe and I hang out at midnight in the park a lot.", "album_id": "72157594497148917", "photo_flickr_id": "367750354", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48272", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend [male] and i hang out at midnight in the park a lot .", "storylet_id": "241362"}], [{"original_text": "Sometimes, we do secret planting projects to surprise people.", "album_id": "72157594497148917", "photo_flickr_id": "367777639", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48272", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes , we do secret planting projects to surprise people .", "storylet_id": "241363"}], [{"original_text": "One time, I got a whole gang together and we planted a lot of flowers.", "album_id": "72157594497148917", "photo_flickr_id": "367750344", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48272", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one time , i got a whole gang together and we planted a lot of flowers .", "storylet_id": "241364"}], [{"original_text": "It is nighttime in the city.", "album_id": "72157594497148917", "photo_flickr_id": "367691019", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48273", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is nighttime in the city .", "storylet_id": "241365"}], [{"original_text": "The van parks by the fence.", "album_id": "72157594497148917", "photo_flickr_id": "367691027", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48273", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the van parks by the fence .", "storylet_id": "241366"}], [{"original_text": "People begin to get out of the van.", "album_id": "72157594497148917", "photo_flickr_id": "367750354", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48273", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people begin to get out of the van .", "storylet_id": "241367"}], [{"original_text": "Two people set up a camera.", "album_id": "72157594497148917", "photo_flickr_id": "367777639", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48273", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two people set up a camera .", "storylet_id": "241368"}], [{"original_text": "A huge group of people poses for a picture.", "album_id": "72157594497148917", "photo_flickr_id": "367750344", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48273", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a huge group of people poses for a picture .", "storylet_id": "241369"}], [{"original_text": "We don't get a lot for snow in our area, but we were amazed to see the TV truck pull up outside of work. ", "album_id": "72157594497148917", "photo_flickr_id": "367717973", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "48274", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we do n't get a lot for snow in our area , but we were amazed to see the tv truck pull up outside of work .", "storylet_id": "241370"}], [{"original_text": "It appeared that they had selected our parking lot to do their live feed from. ", "album_id": "72157594497148917", "photo_flickr_id": "367691019", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "48274", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it appeared that they had selected our parking lot to do their live feed from .", "storylet_id": "241371"}], [{"original_text": "The newscaster got out and they did the shot, broadcasting live as we all watched. ", "album_id": "72157594497148917", "photo_flickr_id": "367777628", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "48274", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the newscaster got out and they did the shot , broadcasting live as we all watched .", "storylet_id": "241372"}], [{"original_text": "She was very nice and suggested that we line up behind her for when they came back from commercial. ", "album_id": "72157594497148917", "photo_flickr_id": "367750344", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "48274", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was very nice and suggested that we line up behind her for when they came back from commercial .", "storylet_id": "241373"}], [{"original_text": "So we did, and she asked us each what we thought of the snow on the air. It was pretty cool. ", "album_id": "72157594497148917", "photo_flickr_id": "367750346", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "48274", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so we did , and she asked us each what we thought of the snow on the air . it was pretty cool .", "storylet_id": "241374"}], [{"original_text": "I love the view from my office. ", "album_id": "72157623560377845", "photo_flickr_id": "4460288142", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "48275", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love the view from my office .", "storylet_id": "241375"}], [{"original_text": "So often when I look out the window, there are birds.", "album_id": "72157623560377845", "photo_flickr_id": "4460292766", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "48275", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so often when i look out the window , there are birds .", "storylet_id": "241376"}], [{"original_text": "This little guy was perched here fro quite awhile this morning.", "album_id": "72157623560377845", "photo_flickr_id": "4459523729", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "48275", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this little guy was perched here fro quite awhile this morning .", "storylet_id": "241377"}], [{"original_text": "This one stopped by only for a few minutes.", "album_id": "72157623560377845", "photo_flickr_id": "4459537723", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "48275", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one stopped by only for a few minutes .", "storylet_id": "241378"}], [{"original_text": "This afternoon I was able to watch this one for awhile. Being I love birds, it's no wonder I love my view.", "album_id": "72157623560377845", "photo_flickr_id": "4460339166", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "48275", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this afternoon i was able to watch this one for awhile . being i love birds , it 's no wonder i love my view .", "storylet_id": "241379"}], [{"original_text": "Birds have a very social life", "album_id": "72157623560377845", "photo_flickr_id": "4460288142", "setting": "first-2-pick-and-tell", "worker_id": "Q6QEEV8O50WN8HK", "story_id": "48276", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "birds have a very social life", "storylet_id": "241380"}], [{"original_text": "this bird is looking for a friend", "album_id": "72157623560377845", "photo_flickr_id": "4460292766", "setting": "first-2-pick-and-tell", "worker_id": "Q6QEEV8O50WN8HK", "story_id": "48276", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this bird is looking for a friend", "storylet_id": "241381"}], [{"original_text": "But isn't having much luck today", "album_id": "72157623560377845", "photo_flickr_id": "4459517973", "setting": "first-2-pick-and-tell", "worker_id": "Q6QEEV8O50WN8HK", "story_id": "48276", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but is n't having much luck today", "storylet_id": "241382"}], [{"original_text": "but just as he was about to give up...", "album_id": "72157623560377845", "photo_flickr_id": "4459533277", "setting": "first-2-pick-and-tell", "worker_id": "Q6QEEV8O50WN8HK", "story_id": "48276", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but just as he was about to give up ...", "storylet_id": "241383"}], [{"original_text": "another bird flew over ", "album_id": "72157623560377845", "photo_flickr_id": "4459537723", "setting": "first-2-pick-and-tell", "worker_id": "Q6QEEV8O50WN8HK", "story_id": "48276", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "another bird flew over", "storylet_id": "241384"}], [{"original_text": "I saw the bird as soon as I walked in and froze.", "album_id": "72157623560377845", "photo_flickr_id": "4460288142", "setting": "last-3-pick-old-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "48277", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i saw the bird as soon as i walked in and froze .", "storylet_id": "241385"}], [{"original_text": "I didn't know if I should photograph it quietly or shoo it away thru and open window.", "album_id": "72157623560377845", "photo_flickr_id": "4460292766", "setting": "last-3-pick-old-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "48277", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i did n't know if i should photograph it quietly or shoo it away thru and open window .", "storylet_id": "241386"}], [{"original_text": "I was enamored by the lighting upon the bird.", "album_id": "72157623560377845", "photo_flickr_id": "4459523729", "setting": "last-3-pick-old-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "48277", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was enamored by the lighting upon the bird .", "storylet_id": "241387"}], [{"original_text": "I tried to photograph it, but of course it moved around when it recognized that I was there.", "album_id": "72157623560377845", "photo_flickr_id": "4459537723", "setting": "last-3-pick-old-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "48277", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i tried to photograph it , but of course it moved around when it recognized that i was there .", "storylet_id": "241388"}], [{"original_text": "I ended up getting an okay photo, just not the one I wanted.", "album_id": "72157623560377845", "photo_flickr_id": "4460339166", "setting": "last-3-pick-old-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "48277", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ended up getting an okay photo , just not the one i wanted .", "storylet_id": "241389"}], [{"original_text": "I went down to the pier last week.", "album_id": "72157623560377845", "photo_flickr_id": "4460288142", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48278", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went down to the pier last week .", "storylet_id": "241390"}], [{"original_text": "There were a lot of birds out there.", "album_id": "72157623560377845", "photo_flickr_id": "4460292766", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48278", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of birds out there .", "storylet_id": "241391"}], [{"original_text": "I took many pictures of them.", "album_id": "72157623560377845", "photo_flickr_id": "4459517973", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48278", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took many pictures of them .", "storylet_id": "241392"}], [{"original_text": "They were relaxing at the pier.", "album_id": "72157623560377845", "photo_flickr_id": "4459533277", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48278", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were relaxing at the pier .", "storylet_id": "241393"}], [{"original_text": "There were many different kinds.", "album_id": "72157623560377845", "photo_flickr_id": "4459537723", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48278", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were many different kinds .", "storylet_id": "241394"}], [{"original_text": "Everyday in my office a black and yellow bird comes to visit me. ", "album_id": "72157623560377845", "photo_flickr_id": "4460288142", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48279", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyday in my office a black and yellow bird comes to visit me .", "storylet_id": "241395"}], [{"original_text": "Here he is now. ", "album_id": "72157623560377845", "photo_flickr_id": "4460292766", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48279", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here he is now .", "storylet_id": "241396"}], [{"original_text": "I love seeing him. I wave to him and he waves back. ", "album_id": "72157623560377845", "photo_flickr_id": "4459517973", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48279", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i love seeing him . i wave to him and he waves back .", "storylet_id": "241397"}], [{"original_text": "He always sings me a song. It brightens my day. ", "album_id": "72157623560377845", "photo_flickr_id": "4459533277", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48279", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he always sings me a song . it brightens my day .", "storylet_id": "241398"}], [{"original_text": "Then this guys comes and my black and yellow bird flys away. Until tomorrow, my friend. ", "album_id": "72157623560377845", "photo_flickr_id": "4459537723", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48279", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then this guys comes and my black and yellow bird flys away . until tomorrow , my friend .", "storylet_id": "241399"}], [{"original_text": "I've decided to collect old magazine ads and articles, also perhaps photos.", "album_id": "72157623566889139", "photo_flickr_id": "4459852419", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48280", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 've decided to collect old magazine ads and articles , also perhaps photos .", "storylet_id": "241400"}], [{"original_text": "This is a photo of what appears to be a medical facility.", "album_id": "72157623566889139", "photo_flickr_id": "4459852549", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48280", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a photo of what appears to be a medical facility .", "storylet_id": "241401"}], [{"original_text": "Old dental ads are great.", "album_id": "72157623566889139", "photo_flickr_id": "4459852765", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48280", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "old dental ads are great .", "storylet_id": "241402"}], [{"original_text": "Volt Ohm tubes seem like something from an old monster movie, and might be.", "album_id": "72157623566889139", "photo_flickr_id": "4459852863", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48280", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "organization organization tubes seem like something from an old monster movie , and might be .", "storylet_id": "241403"}], [{"original_text": "An old ad from a college for souvenir spoons tends to make one giggle a bit.", "album_id": "72157623566889139", "photo_flickr_id": "4460631402", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48280", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "an old ad from a college for souvenir spoons tends to make one giggle a bit .", "storylet_id": "241404"}], [{"original_text": "I looked through the manual.", "album_id": "72157623566889139", "photo_flickr_id": "4460631014", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48281", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i looked through the manual .", "storylet_id": "241405"}], [{"original_text": "There was nothing in there.", "album_id": "72157623566889139", "photo_flickr_id": "4459852549", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48281", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was nothing in there .", "storylet_id": "241406"}], [{"original_text": "Not what I was looking for.", "album_id": "72157623566889139", "photo_flickr_id": "4460631116", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48281", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not what i was looking for .", "storylet_id": "241407"}], [{"original_text": "Just page after page.", "album_id": "72157623566889139", "photo_flickr_id": "4460631186", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48281", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "just page after page .", "storylet_id": "241408"}], [{"original_text": "It was useless.", "album_id": "72157623566889139", "photo_flickr_id": "4459852765", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48281", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was useless .", "storylet_id": "241409"}], [{"original_text": "this is a flyer of where we're going this weekend.", "album_id": "72157623566889139", "photo_flickr_id": "4459852419", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48282", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a flyer of where we 're going this weekend .", "storylet_id": "241410"}], [{"original_text": "It's an old building offering different things from the 1800's.", "album_id": "72157623566889139", "photo_flickr_id": "4459852549", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48282", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's an old building offering different things from the 1800 's .", "storylet_id": "241411"}], [{"original_text": "Will be totally awesome to see this. I love it.", "album_id": "72157623566889139", "photo_flickr_id": "4459852765", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48282", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] be totally awesome to see this . i love it .", "storylet_id": "241412"}], [{"original_text": "Some of these things, I have never heard of.", "album_id": "72157623566889139", "photo_flickr_id": "4459852863", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48282", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of these things , i have never heard of .", "storylet_id": "241413"}], [{"original_text": "The place is called the Plexus Office.", "album_id": "72157623566889139", "photo_flickr_id": "4460631402", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48282", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the place is called the plexus office .", "storylet_id": "241414"}], [{"original_text": "The main lobby where you wait.", "album_id": "72157623566889139", "photo_flickr_id": "4460631014", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48283", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the main lobby where you wait .", "storylet_id": "241415"}], [{"original_text": "This is what the operating room used to look like.", "album_id": "72157623566889139", "photo_flickr_id": "4459852549", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48283", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is what the operating room used to look like .", "storylet_id": "241416"}], [{"original_text": "He is a famous doctor.", "album_id": "72157623566889139", "photo_flickr_id": "4460631116", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48283", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he is a famous doctor .", "storylet_id": "241417"}], [{"original_text": "Here is a picture of different things.", "album_id": "72157623566889139", "photo_flickr_id": "4460631186", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48283", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is a picture of different things .", "storylet_id": "241418"}], [{"original_text": "Making a doctor's visit more comfortable. ", "album_id": "72157623566889139", "photo_flickr_id": "4459852765", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48283", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "making a doctor 's visit more comfortable .", "storylet_id": "241419"}], [{"original_text": "A vintage advertisement for a clinical school.", "album_id": "72157623566889139", "photo_flickr_id": "4459852419", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "48284", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a vintage advertisement for a clinical school .", "storylet_id": "241420"}], [{"original_text": "There were nurses training in an open room.", "album_id": "72157623566889139", "photo_flickr_id": "4459852549", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "48284", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were nurses training in an open room .", "storylet_id": "241421"}], [{"original_text": "There was a vintage advertisement for dental chairs.", "album_id": "72157623566889139", "photo_flickr_id": "4459852765", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "48284", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a vintage advertisement for dental chairs .", "storylet_id": "241422"}], [{"original_text": "There were also advertisements for contraptions like static machines.", "album_id": "72157623566889139", "photo_flickr_id": "4459852863", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "48284", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also advertisements for contraptions like static machines .", "storylet_id": "241423"}], [{"original_text": "There was a souvenir spoon available fir $1.75.", "album_id": "72157623566889139", "photo_flickr_id": "4460631402", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "48284", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a souvenir spoon available fir $ 1.75 .", "storylet_id": "241424"}], [{"original_text": "Our business class area has ample room to relax while waiting for your plane to depart. ", "album_id": "72157623687984190", "photo_flickr_id": "4460684049", "setting": "first-2-pick-and-tell", "worker_id": "M5AFKXKJU03RHWR", "story_id": "48285", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our business class area has ample room to relax while waiting for your plane to depart .", "storylet_id": "241425"}], [{"original_text": "We even offer reclining chairs for lay-overs. ", "album_id": "72157623687984190", "photo_flickr_id": "4461476084", "setting": "first-2-pick-and-tell", "worker_id": "M5AFKXKJU03RHWR", "story_id": "48285", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we even offer reclining chairs for lay-overs .", "storylet_id": "241426"}], [{"original_text": "Inside the plane you can relax in or spacious chairs.", "album_id": "72157623687984190", "photo_flickr_id": "4461480266", "setting": "first-2-pick-and-tell", "worker_id": "M5AFKXKJU03RHWR", "story_id": "48285", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "inside the plane you can relax in or spacious chairs .", "storylet_id": "241427"}], [{"original_text": "Each chair has a pillow that is hypoallergenic as well as soft.", "album_id": "72157623687984190", "photo_flickr_id": "4461465672", "setting": "first-2-pick-and-tell", "worker_id": "M5AFKXKJU03RHWR", "story_id": "48285", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "each chair has a pillow that is hypoallergenic as well as soft .", "storylet_id": "241428"}], [{"original_text": "For those times your business requires a computer, we offer areas for your needs. ", "album_id": "72157623687984190", "photo_flickr_id": "4461468360", "setting": "first-2-pick-and-tell", "worker_id": "M5AFKXKJU03RHWR", "story_id": "48285", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for those times your business requires a computer , we offer areas for your needs .", "storylet_id": "241429"}], [{"original_text": "Amy had a business trip planned and headed for the airport", "album_id": "72157623687984190", "photo_flickr_id": "4460685193", "setting": "first-2-pick-and-tell", "worker_id": "Q6QEEV8O50WN8HK", "story_id": "48286", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] had a business trip planned and headed for the airport", "storylet_id": "241430"}], [{"original_text": "The airplane was comfortable and she had a nice ride", "album_id": "72157623687984190", "photo_flickr_id": "4461464560", "setting": "first-2-pick-and-tell", "worker_id": "Q6QEEV8O50WN8HK", "story_id": "48286", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the airplane was comfortable and she had a nice ride", "storylet_id": "241431"}], [{"original_text": "Finally she landed right at dawn.", "album_id": "72157623687984190", "photo_flickr_id": "4461469324", "setting": "first-2-pick-and-tell", "worker_id": "Q6QEEV8O50WN8HK", "story_id": "48286", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally she landed right at dawn .", "storylet_id": "241432"}], [{"original_text": "She waited for someone to pick her up for the meeting. ", "album_id": "72157623687984190", "photo_flickr_id": "4461476084", "setting": "first-2-pick-and-tell", "worker_id": "Q6QEEV8O50WN8HK", "story_id": "48286", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she waited for someone to pick her up for the meeting .", "storylet_id": "241433"}], [{"original_text": "Then boarded the a plane home later that evening", "album_id": "72157623687984190", "photo_flickr_id": "4461480266", "setting": "first-2-pick-and-tell", "worker_id": "Q6QEEV8O50WN8HK", "story_id": "48286", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then boarded the a plane home later that evening", "storylet_id": "241434"}], [{"original_text": "I waited at the airport for my flight.", "album_id": "72157623687984190", "photo_flickr_id": "4460684049", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48287", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i waited at the airport for my flight .", "storylet_id": "241435"}], [{"original_text": "There were a lot of comfortable seats there.", "album_id": "72157623687984190", "photo_flickr_id": "4461476084", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48287", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of comfortable seats there .", "storylet_id": "241436"}], [{"original_text": "I got to ride in first class.", "album_id": "72157623687984190", "photo_flickr_id": "4461480266", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48287", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got to ride in first class .", "storylet_id": "241437"}], [{"original_text": "The chairs were very comfortable.", "album_id": "72157623687984190", "photo_flickr_id": "4461465672", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48287", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the chairs were very comfortable .", "storylet_id": "241438"}], [{"original_text": "I had a great time on the flight.", "album_id": "72157623687984190", "photo_flickr_id": "4461468360", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48287", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time on the flight .", "storylet_id": "241439"}], [{"original_text": "This is the hotel lobby that we stayed at.", "album_id": "72157623687984190", "photo_flickr_id": "4460685193", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48288", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the hotel lobby that we stayed at .", "storylet_id": "241440"}], [{"original_text": "Here is where I sat on my private plane ride.", "album_id": "72157623687984190", "photo_flickr_id": "4461464560", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48288", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is where i sat on my private plane ride .", "storylet_id": "241441"}], [{"original_text": "Look at the sunset.", "album_id": "72157623687984190", "photo_flickr_id": "4461469324", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48288", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at the sunset .", "storylet_id": "241442"}], [{"original_text": "Another shot of the lobby from the other side.", "album_id": "72157623687984190", "photo_flickr_id": "4461476084", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48288", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another shot of the lobby from the other side .", "storylet_id": "241443"}], [{"original_text": "Here are what all the seats look like on the plane.", "album_id": "72157623687984190", "photo_flickr_id": "4461480266", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48288", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here are what all the seats look like on the plane .", "storylet_id": "241444"}], [{"original_text": "We left the hotel for out plane.", "album_id": "72157623687984190", "photo_flickr_id": "4460685193", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48289", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we left the hotel for out plane .", "storylet_id": "241445"}], [{"original_text": "The plane was really nice inside.", "album_id": "72157623687984190", "photo_flickr_id": "4461464560", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48289", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the plane was really nice inside .", "storylet_id": "241446"}], [{"original_text": "We took off around evening.", "album_id": "72157623687984190", "photo_flickr_id": "4461469324", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48289", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took off around evening .", "storylet_id": "241447"}], [{"original_text": "It sucked leaving that nice airport.", "album_id": "72157623687984190", "photo_flickr_id": "4461476084", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48289", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it sucked leaving that nice airport .", "storylet_id": "241448"}], [{"original_text": "But the flight was well worth it.", "album_id": "72157623687984190", "photo_flickr_id": "4461480266", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48289", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the flight was well worth it .", "storylet_id": "241449"}], [{"original_text": "Our sports teams showed great spirit this week.", "album_id": "72157623279962310", "photo_flickr_id": "4303412080", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48290", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our sports teams showed great spirit this week .", "storylet_id": "241450"}], [{"original_text": "They always play fair and friendly.", "album_id": "72157623279962310", "photo_flickr_id": "4303420306", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48290", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they always play fair and friendly .", "storylet_id": "241451"}], [{"original_text": "The guys team is fast and furious as always.", "album_id": "72157623279962310", "photo_flickr_id": "4303354354", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48290", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guys team is fast and furious as always .", "storylet_id": "241452"}], [{"original_text": "They like to pull surprise moves on their opponents.", "album_id": "72157623279962310", "photo_flickr_id": "4303361502", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48290", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they like to pull surprise moves on their opponents .", "storylet_id": "241453"}], [{"original_text": "The cheerleaders keep the spirit alive for us all.", "album_id": "72157623279962310", "photo_flickr_id": "4303368420", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48290", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cheerleaders keep the spirit alive for us all .", "storylet_id": "241454"}], [{"original_text": "The basketball game was very exciting.", "album_id": "72157623279962310", "photo_flickr_id": "4302640043", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48291", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the basketball game was very exciting .", "storylet_id": "241455"}], [{"original_text": "There were many good players there.", "album_id": "72157623279962310", "photo_flickr_id": "4302648503", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48291", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many good players there .", "storylet_id": "241456"}], [{"original_text": "I had a great time watching.", "album_id": "72157623279962310", "photo_flickr_id": "4302586219", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48291", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time watching .", "storylet_id": "241457"}], [{"original_text": "It was a very close game.", "album_id": "72157623279962310", "photo_flickr_id": "4302590281", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48291", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a very close game .", "storylet_id": "241458"}], [{"original_text": "I'm very glad that I went.", "album_id": "72157623279962310", "photo_flickr_id": "4303346456", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48291", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm very glad that i went .", "storylet_id": "241459"}], [{"original_text": "Here are our basketball tryouts for 2015 girls and boys basketball.", "album_id": "72157623279962310", "photo_flickr_id": "4303412080", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48292", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here are our basketball tryouts for 2015 girls and boys basketball .", "storylet_id": "241460"}], [{"original_text": "These are some great players this year. They are gonna work hard to earn a trophy.", "album_id": "72157623279962310", "photo_flickr_id": "4303420306", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48292", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these are some great players this year . they are gon na work hard to earn a trophy .", "storylet_id": "241461"}], [{"original_text": "Here are the guys and they are every bit good and hyper to play.", "album_id": "72157623279962310", "photo_flickr_id": "4303354354", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48292", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here are the guys and they are every bit good and hyper to play .", "storylet_id": "241462"}], [{"original_text": "Look at those moves. The skills on these guys will prove we will prevail both boys and girls.", "album_id": "72157623279962310", "photo_flickr_id": "4303361502", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48292", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look at those moves . the skills on these guys will prove we will prevail both boys and girls .", "storylet_id": "241463"}], [{"original_text": "Here are the cheerleaders cheering them on in there free time.", "album_id": "72157623279962310", "photo_flickr_id": "4303368420", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48292", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here are the cheerleaders cheering them on in there free time .", "storylet_id": "241464"}], [{"original_text": "Two players from rival schools were plating a basketball game.", "album_id": "72157623279962310", "photo_flickr_id": "4303412080", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "48293", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two players from rival schools were plating a basketball game .", "storylet_id": "241465"}], [{"original_text": "One woman tried to block another womans pass.", "album_id": "72157623279962310", "photo_flickr_id": "4303420306", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "48293", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one woman tried to block another womans pass .", "storylet_id": "241466"}], [{"original_text": "There were also mens basketball games happening.", "album_id": "72157623279962310", "photo_flickr_id": "4303354354", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "48293", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were also mens basketball games happening .", "storylet_id": "241467"}], [{"original_text": "Two men raced for the ball.", "album_id": "72157623279962310", "photo_flickr_id": "4303361502", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "48293", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two men raced for the ball .", "storylet_id": "241468"}], [{"original_text": "Cheerleaders cheered the team on. ", "album_id": "72157623279962310", "photo_flickr_id": "4303368420", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "48293", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "cheerleaders cheered the team on .", "storylet_id": "241469"}], [{"original_text": "Our basketball team has been a lot better since we added a good center.", "album_id": "72157623279962310", "photo_flickr_id": "4302640043", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48294", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our basketball team has been a lot better since we added a good center .", "storylet_id": "241470"}], [{"original_text": "Her sister still plays for another team, so it was hard to get her to leave.", "album_id": "72157623279962310", "photo_flickr_id": "4302648503", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48294", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her sister still plays for another team , so it was hard to get her to leave .", "storylet_id": "241471"}], [{"original_text": "Having a center opens up three point shots for our best shooters.", "album_id": "72157623279962310", "photo_flickr_id": "4302586219", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48294", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "having a center opens up three point shots for our best shooters .", "storylet_id": "241472"}], [{"original_text": "It also helps attract other good players like our new point guard.", "album_id": "72157623279962310", "photo_flickr_id": "4302590281", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48294", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it also helps attract other good players like our new point guard .", "storylet_id": "241473"}], [{"original_text": "I think our team will only get better as the year goes on.", "album_id": "72157623279962310", "photo_flickr_id": "4303346456", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48294", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think our team will only get better as the year goes on .", "storylet_id": "241474"}], [{"original_text": "Winter was very severe this year.", "album_id": "72157623517255524", "photo_flickr_id": "4394070548", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48295", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "winter was very severe this year .", "storylet_id": "241475"}], [{"original_text": "Everything was covered with snow.", "album_id": "72157623517255524", "photo_flickr_id": "4390743107", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48295", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything was covered with snow .", "storylet_id": "241476"}], [{"original_text": "It took hours to get the road cleared.", "album_id": "72157623517255524", "photo_flickr_id": "4390743335", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48295", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it took hours to get the road cleared .", "storylet_id": "241477"}], [{"original_text": "I had to help out as well.", "album_id": "72157623517255524", "photo_flickr_id": "4391525282", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48295", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had to help out as well .", "storylet_id": "241478"}], [{"original_text": "By the end of the day it snowed again.", "album_id": "72157623517255524", "photo_flickr_id": "4390744913", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48295", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of the day it snowed again .", "storylet_id": "241479"}], [{"original_text": "It was a snowy day in the city.", "album_id": "72157623517255524", "photo_flickr_id": "4394070262", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48296", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a snowy day in the city .", "storylet_id": "241480"}], [{"original_text": "The snow filled up much of all the parks in the city.", "album_id": "72157623517255524", "photo_flickr_id": "4390743107", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48296", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the snow filled up much of all the parks in the city .", "storylet_id": "241481"}], [{"original_text": "The roads were very dangerous to be on but business had to go on.", "album_id": "72157623517255524", "photo_flickr_id": "4390743335", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48296", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the roads were very dangerous to be on but business had to go on .", "storylet_id": "241482"}], [{"original_text": "These volunteers helped shovel some snow of the roads.", "album_id": "72157623517255524", "photo_flickr_id": "4391525282", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48296", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these volunteers helped shovel some snow of the roads .", "storylet_id": "241483"}], [{"original_text": "This family trying to cross the road in all the snow.", "album_id": "72157623517255524", "photo_flickr_id": "4391524182", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48296", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this family trying to cross the road in all the snow .", "storylet_id": "241484"}], [{"original_text": "The calm before the snow storm comes into town.", "album_id": "72157623517255524", "photo_flickr_id": "4394070548", "setting": "last-3-pick-old-and-tell", "worker_id": "J044WIQNG6W0LNF", "story_id": "48297", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the calm before the snow storm comes into town .", "storylet_id": "241485"}], [{"original_text": "Over night it slowed a lot enough to blanket everything in sight with snow.", "album_id": "72157623517255524", "photo_flickr_id": "4390743107", "setting": "last-3-pick-old-and-tell", "worker_id": "J044WIQNG6W0LNF", "story_id": "48297", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "over night it slowed a lot enough to blanket everything in sight with snow .", "storylet_id": "241486"}], [{"original_text": "Surprisingly the city streets have remained open to traffic.", "album_id": "72157623517255524", "photo_flickr_id": "4390743335", "setting": "last-3-pick-old-and-tell", "worker_id": "J044WIQNG6W0LNF", "story_id": "48297", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "surprisingly the city streets have remained open to traffic .", "storylet_id": "241487"}], [{"original_text": "This local business owner is shoveling the snow away from the sidewalk near hos business.", "album_id": "72157623517255524", "photo_flickr_id": "4391525282", "setting": "last-3-pick-old-and-tell", "worker_id": "J044WIQNG6W0LNF", "story_id": "48297", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this local business owner is shoveling the snow away from the sidewalk near hos business .", "storylet_id": "241488"}], [{"original_text": "The show has tarted again and is starting to make driving difficult.", "album_id": "72157623517255524", "photo_flickr_id": "4390744913", "setting": "last-3-pick-old-and-tell", "worker_id": "J044WIQNG6W0LNF", "story_id": "48297", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the show has tarted again and is starting to make driving difficult .", "storylet_id": "241489"}], [{"original_text": "It is a picture of roof tops.", "album_id": "72157623517255524", "photo_flickr_id": "4394070262", "setting": "last-3-pick-old-and-tell", "worker_id": "BLM9RM872BRUT7Q", "story_id": "48298", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is a picture of roof tops .", "storylet_id": "241490"}], [{"original_text": "The ground and fence is covered in snow.", "album_id": "72157623517255524", "photo_flickr_id": "4390743107", "setting": "last-3-pick-old-and-tell", "worker_id": "BLM9RM872BRUT7Q", "story_id": "48298", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ground and fence is covered in snow .", "storylet_id": "241491"}], [{"original_text": "The street is covered in snow.", "album_id": "72157623517255524", "photo_flickr_id": "4390743335", "setting": "last-3-pick-old-and-tell", "worker_id": "BLM9RM872BRUT7Q", "story_id": "48298", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the street is covered in snow .", "storylet_id": "241492"}], [{"original_text": "A man is shoveling snow.", "album_id": "72157623517255524", "photo_flickr_id": "4391525282", "setting": "last-3-pick-old-and-tell", "worker_id": "BLM9RM872BRUT7Q", "story_id": "48298", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a man is shoveling snow .", "storylet_id": "241493"}], [{"original_text": "People walking in the snow.", "album_id": "72157623517255524", "photo_flickr_id": "4391524182", "setting": "last-3-pick-old-and-tell", "worker_id": "BLM9RM872BRUT7Q", "story_id": "48298", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people walking in the snow .", "storylet_id": "241494"}], [{"original_text": "We went on the rooftop", "album_id": "72157623517255524", "photo_flickr_id": "4394070262", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48299", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on the rooftop", "storylet_id": "241495"}], [{"original_text": "to see the city on this snowy day.", "album_id": "72157623517255524", "photo_flickr_id": "4390743107", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48299", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to see the city on this snowy day .", "storylet_id": "241496"}], [{"original_text": "Walking down town to get our errands done, ", "album_id": "72157623517255524", "photo_flickr_id": "4390743335", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48299", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "walking down town to get our errands done ,", "storylet_id": "241497"}], [{"original_text": "we saw many people in their day to day lives.", "album_id": "72157623517255524", "photo_flickr_id": "4391525282", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48299", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw many people in their day to day lives .", "storylet_id": "241498"}], [{"original_text": "Walking is good for people watching.", "album_id": "72157623517255524", "photo_flickr_id": "4391524182", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48299", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "walking is good for people watching .", "storylet_id": "241499"}], [{"original_text": "I just bought a new bike for my bicycle collection.", "album_id": "72157594503266848", "photo_flickr_id": "371231968", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48300", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i just bought a new bike for my bicycle collection .", "storylet_id": "241500"}], [{"original_text": "This bike is really old and expensive.", "album_id": "72157594503266848", "photo_flickr_id": "371236008", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48300", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this bike is really old and expensive .", "storylet_id": "241501"}], [{"original_text": "This one is a rare edition.", "album_id": "72157594503266848", "photo_flickr_id": "371232760", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48300", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one is a rare edition .", "storylet_id": "241502"}], [{"original_text": "Everything still works.", "album_id": "72157594503266848", "photo_flickr_id": "371245006", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48300", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everything still works .", "storylet_id": "241503"}], [{"original_text": "There is some slight wear but I'm going to fix it up a little.", "album_id": "72157594503266848", "photo_flickr_id": "371235412", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48300", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is some slight wear but i 'm going to fix it up a little .", "storylet_id": "241504"}], [{"original_text": "I fix old bikes for a living.", "album_id": "72157594503266848", "photo_flickr_id": "371230853", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48301", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i fix old bikes for a living .", "storylet_id": "241505"}], [{"original_text": "I specialize in special editions.", "album_id": "72157594503266848", "photo_flickr_id": "371232760", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48301", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i specialize in special editions .", "storylet_id": "241506"}], [{"original_text": "This brand is one of my favorites.", "album_id": "72157594503266848", "photo_flickr_id": "371236008", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48301", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this brand is one of my favorites .", "storylet_id": "241507"}], [{"original_text": "The seat is perfectly contoured.", "album_id": "72157594503266848", "photo_flickr_id": "371237253", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48301", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the seat is perfectly contoured .", "storylet_id": "241508"}], [{"original_text": "And the gears are well made.", "album_id": "72157594503266848", "photo_flickr_id": "371245006", "setting": "first-2-pick-and-tell", "worker_id": "C0E8LDW4P5J8I9M", "story_id": "48301", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the gears are well made .", "storylet_id": "241509"}], [{"original_text": "My father pulled his old bicycle out of storage for me to ride.", "album_id": "72157594503266848", "photo_flickr_id": "371231968", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48302", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my father pulled his old bicycle out of storage for me to ride .", "storylet_id": "241510"}], [{"original_text": "We saw that the bicycle had been made in the early 1980s.", "album_id": "72157594503266848", "photo_flickr_id": "371236008", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48302", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw that the bicycle had been made in the early 1980s .", "storylet_id": "241511"}], [{"original_text": "The bicycle was a 10th anniversary edition for the manufacturer.", "album_id": "72157594503266848", "photo_flickr_id": "371232760", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48302", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bicycle was a 10th anniversary edition for the manufacturer .", "storylet_id": "241512"}], [{"original_text": "The gears looked as though they needed a little cleaning, but otherwise were in good shape.", "album_id": "72157594503266848", "photo_flickr_id": "371245006", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48302", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the gears looked as though they needed a little cleaning , but otherwise were in good shape .", "storylet_id": "241513"}], [{"original_text": "The frame of the bicycle was in perfect condition and was ready to be ridden.", "album_id": "72157594503266848", "photo_flickr_id": "371235412", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48302", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the frame of the bicycle was in perfect condition and was ready to be ridden .", "storylet_id": "241514"}], [{"original_text": "This is my racing bike. I have been in many races with my wonderful bike.", "album_id": "72157594503266848", "photo_flickr_id": "371230853", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48303", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my racing bike . i have been in many races with my wonderful bike .", "storylet_id": "241515"}], [{"original_text": "it is a 10th anniversary edition life cycle. It is also in my favorite color, black and gold", "album_id": "72157594503266848", "photo_flickr_id": "371232760", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48303", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is a 10th anniversary edition life cycle . it is also in my favorite color , black and gold", "storylet_id": "241516"}], [{"original_text": "i had just won my my first race. Thank you Life Cycle for not giving up on me", "album_id": "72157594503266848", "photo_flickr_id": "371236008", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48303", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had just won my my first race . thank you life cycle for not giving up on me", "storylet_id": "241517"}], [{"original_text": "My poor seat has taking a beating, but it is so comfortable!", "album_id": "72157594503266848", "photo_flickr_id": "371237253", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48303", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my poor seat has taking a beating , but it is so comfortable !", "storylet_id": "241518"}], [{"original_text": "I will be replacing the chain. As you can see it has been worn down already.", "album_id": "72157594503266848", "photo_flickr_id": "371245006", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48303", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i will be replacing the chain . as you can see it has been worn down already .", "storylet_id": "241519"}], [{"original_text": "The bike is at a bike shop.", "album_id": "72157594503266848", "photo_flickr_id": "371231968", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48304", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bike is at a bike shop .", "storylet_id": "241520"}], [{"original_text": "It is an older bike and needs work.", "album_id": "72157594503266848", "photo_flickr_id": "371236008", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48304", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is an older bike and needs work .", "storylet_id": "241521"}], [{"original_text": "Each part is striped and fixed the way it needs to be.", "album_id": "72157594503266848", "photo_flickr_id": "371232760", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48304", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each part is striped and fixed the way it needs to be .", "storylet_id": "241522"}], [{"original_text": "The gears need to be oiled.", "album_id": "72157594503266848", "photo_flickr_id": "371245006", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48304", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the gears need to be oiled .", "storylet_id": "241523"}], [{"original_text": "Finally the bar on it needs a touch up.", "album_id": "72157594503266848", "photo_flickr_id": "371235412", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48304", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the bar on it needs a touch up .", "storylet_id": "241524"}], [{"original_text": "The cheerleaders warmed up the crowd.", "album_id": "72157623294550334", "photo_flickr_id": "4309073668", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48305", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cheerleaders warmed up the crowd .", "storylet_id": "241525"}], [{"original_text": "Todd dribbled the ball towards the net.", "album_id": "72157623294550334", "photo_flickr_id": "4309076642", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48305", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] dribbled the ball towards the net .", "storylet_id": "241526"}], [{"original_text": "He scored a basket for his team.", "album_id": "72157623294550334", "photo_flickr_id": "4308340593", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48305", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he scored a basket for his team .", "storylet_id": "241527"}], [{"original_text": "Tom took the ball from Todd.", "album_id": "72157623294550334", "photo_flickr_id": "4309084606", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48305", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] took the ball from [male] .", "storylet_id": "241528"}], [{"original_text": "It was his turn to score a goal.", "album_id": "72157623294550334", "photo_flickr_id": "4309085582", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48305", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was his turn to score a goal .", "storylet_id": "241529"}], [{"original_text": "the local high school is very big on sports", "album_id": "72157623294550334", "photo_flickr_id": "4309072438", "setting": "first-2-pick-and-tell", "worker_id": "Q6QEEV8O50WN8HK", "story_id": "48306", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the local high school is very big on sports", "storylet_id": "241530"}], [{"original_text": "The cheerleaders are the best around. ", "album_id": "72157623294550334", "photo_flickr_id": "4309073668", "setting": "first-2-pick-and-tell", "worker_id": "Q6QEEV8O50WN8HK", "story_id": "48306", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cheerleaders are the best around .", "storylet_id": "241531"}], [{"original_text": "The basketball team was #1 last year.", "album_id": "72157623294550334", "photo_flickr_id": "4308341927", "setting": "first-2-pick-and-tell", "worker_id": "Q6QEEV8O50WN8HK", "story_id": "48306", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the basketball team was # 1 last year .", "storylet_id": "241532"}], [{"original_text": "Jeff Johnson is all county in basketball. ", "album_id": "72157623294550334", "photo_flickr_id": "4308344697", "setting": "first-2-pick-and-tell", "worker_id": "Q6QEEV8O50WN8HK", "story_id": "48306", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] johnson is all county in basketball .", "storylet_id": "241533"}], [{"original_text": "He is always a team player", "album_id": "72157623294550334", "photo_flickr_id": "4309085582", "setting": "first-2-pick-and-tell", "worker_id": "Q6QEEV8O50WN8HK", "story_id": "48306", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he is always a team player", "storylet_id": "241534"}], [{"original_text": "I went down to the gym yesterday.", "album_id": "72157623294550334", "photo_flickr_id": "4309073668", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48307", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went down to the gym yesterday .", "storylet_id": "241535"}], [{"original_text": "They were having a basketball game.", "album_id": "72157623294550334", "photo_flickr_id": "4309076642", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48307", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were having a basketball game .", "storylet_id": "241536"}], [{"original_text": "The game was very close.", "album_id": "72157623294550334", "photo_flickr_id": "4308340593", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48307", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the game was very close .", "storylet_id": "241537"}], [{"original_text": "All of the players were very good.", "album_id": "72157623294550334", "photo_flickr_id": "4309084606", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48307", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the players were very good .", "storylet_id": "241538"}], [{"original_text": "I had a great time at the gym.", "album_id": "72157623294550334", "photo_flickr_id": "4309085582", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48307", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time at the gym .", "storylet_id": "241539"}], [{"original_text": "They finished their performance for the crowd.", "album_id": "72157623294550334", "photo_flickr_id": "4309073668", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48308", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they finished their performance for the crowd .", "storylet_id": "241540"}], [{"original_text": "The basketball player was pumped up after the performance.", "album_id": "72157623294550334", "photo_flickr_id": "4309076642", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48308", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the basketball player was pumped up after the performance .", "storylet_id": "241541"}], [{"original_text": "This man jumped high into the air.", "album_id": "72157623294550334", "photo_flickr_id": "4308340593", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48308", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this man jumped high into the air .", "storylet_id": "241542"}], [{"original_text": "This player prepared his next shot.", "album_id": "72157623294550334", "photo_flickr_id": "4309084606", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48308", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this player prepared his next shot .", "storylet_id": "241543"}], [{"original_text": "The team in white dominated the team in yellow.", "album_id": "72157623294550334", "photo_flickr_id": "4309085582", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48308", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the team in white dominated the team in yellow .", "storylet_id": "241544"}], [{"original_text": "The cheerleaders got everyone hyped for the game.", "album_id": "72157623294550334", "photo_flickr_id": "4309073668", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48309", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cheerleaders got everyone hyped for the game .", "storylet_id": "241545"}], [{"original_text": "It was a tough competition, and everyone was good.", "album_id": "72157623294550334", "photo_flickr_id": "4309076642", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48309", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a tough competition , and everyone was good .", "storylet_id": "241546"}], [{"original_text": "But some athletes emerged as elite.", "album_id": "72157623294550334", "photo_flickr_id": "4308340593", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48309", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but some athletes emerged as elite .", "storylet_id": "241547"}], [{"original_text": "They were clearly proud of their talent.", "album_id": "72157623294550334", "photo_flickr_id": "4309084606", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48309", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were clearly proud of their talent .", "storylet_id": "241548"}], [{"original_text": "Though everyone had fun, only half of them would be winners.", "album_id": "72157623294550334", "photo_flickr_id": "4309085582", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48309", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "though everyone had fun , only half of them would be winners .", "storylet_id": "241549"}], [{"original_text": "Some of the new equipment came today. ", "album_id": "72157623718997598", "photo_flickr_id": "4469774750", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48310", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some of the new equipment came today .", "storylet_id": "241550"}], [{"original_text": "Now we can set up and organize the office.", "album_id": "72157623718997598", "photo_flickr_id": "4469777634", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48310", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "now we can set up and organize the office .", "storylet_id": "241551"}], [{"original_text": "We like to check out the electronics first.", "album_id": "72157623718997598", "photo_flickr_id": "4469036235", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48310", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we like to check out the electronics first .", "storylet_id": "241552"}], [{"original_text": "Some people are no help setting things up.", "album_id": "72157623718997598", "photo_flickr_id": "4469035491", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48310", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people are no help setting things up .", "storylet_id": "241553"}], [{"original_text": "There, all finished; clean, cozy and comfortable.", "album_id": "72157623718997598", "photo_flickr_id": "4469036523", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48310", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there , all finished ; clean , cozy and comfortable .", "storylet_id": "241554"}], [{"original_text": "We moved offices earlier this week.", "album_id": "72157623718997598", "photo_flickr_id": "4469774750", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "48311", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we moved offices earlier this week .", "storylet_id": "241555"}], [{"original_text": "So much work to do. Here are some of the most used tools.", "album_id": "72157623718997598", "photo_flickr_id": "4468995791", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "48311", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so much work to do . here are some of the most used tools .", "storylet_id": "241556"}], [{"original_text": "WIRES, wires, everywhere.", "album_id": "72157623718997598", "photo_flickr_id": "4469776402", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "48311", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "wires , wires , everywhere .", "storylet_id": "241557"}], [{"original_text": "I sure do like the view though.", "album_id": "72157623718997598", "photo_flickr_id": "4469777042", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "48311", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i sure do like the view though .", "storylet_id": "241558"}], [{"original_text": "Putting together bookshelves is always a good time.", "album_id": "72157623718997598", "photo_flickr_id": "4469815190", "setting": "first-2-pick-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "48311", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "putting together bookshelves is always a good time .", "storylet_id": "241559"}], [{"original_text": "This is the first package to arrive at my new office. I'm very excited about this opportunity!", "album_id": "72157623718997598", "photo_flickr_id": "4469774750", "setting": "last-3-pick-old-and-tell", "worker_id": "DXHNESDONAGM2K6", "story_id": "48312", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the first package to arrive at my new office . i 'm very excited about this opportunity !", "storylet_id": "241560"}], [{"original_text": "In the box I found all of my promotional material. This will definitely boost business!", "album_id": "72157623718997598", "photo_flickr_id": "4469777634", "setting": "last-3-pick-old-and-tell", "worker_id": "DXHNESDONAGM2K6", "story_id": "48312", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in the box i found all of my promotional material . this will definitely boost business !", "storylet_id": "241561"}], [{"original_text": "Here I am going over the business plan with my partner. Don't we look deep in thought?", "album_id": "72157623718997598", "photo_flickr_id": "4469036235", "setting": "last-3-pick-old-and-tell", "worker_id": "DXHNESDONAGM2K6", "story_id": "48312", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here i am going over the business plan with my partner . do n't we look deep in thought ?", "storylet_id": "241562"}], [{"original_text": "This is our desk. We're starting to get really organized. ", "album_id": "72157623718997598", "photo_flickr_id": "4469035491", "setting": "last-3-pick-old-and-tell", "worker_id": "DXHNESDONAGM2K6", "story_id": "48312", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is our desk . we 're starting to get really organized .", "storylet_id": "241563"}], [{"original_text": "This is the waiting area for the clients. I think we may put a coffee maker in soon. I love my new office!", "album_id": "72157623718997598", "photo_flickr_id": "4469036523", "setting": "last-3-pick-old-and-tell", "worker_id": "DXHNESDONAGM2K6", "story_id": "48312", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the waiting area for the clients . i think we may put a coffee maker in soon . i love my new office !", "storylet_id": "241564"}], [{"original_text": "I finally got all the parts for my desk.", "album_id": "72157623718997598", "photo_flickr_id": "4469774750", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48313", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finally got all the parts for my desk .", "storylet_id": "241565"}], [{"original_text": "I had to put them all together.", "album_id": "72157623718997598", "photo_flickr_id": "4468995791", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48313", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had to put them all together .", "storylet_id": "241566"}], [{"original_text": "It took me forever to untangle all the wire.", "album_id": "72157623718997598", "photo_flickr_id": "4469776402", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48313", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it took me forever to untangle all the wire .", "storylet_id": "241567"}], [{"original_text": "There were a lot of pieces.", "album_id": "72157623718997598", "photo_flickr_id": "4469777042", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48313", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of pieces .", "storylet_id": "241568"}], [{"original_text": "It took us all day long", "album_id": "72157623718997598", "photo_flickr_id": "4469815190", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48313", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it took us all day long", "storylet_id": "241569"}], [{"original_text": "Packing things to get ready to move.", "album_id": "72157623718997598", "photo_flickr_id": "4469774750", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48314", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "packing things to get ready to move .", "storylet_id": "241570"}], [{"original_text": "Here are my books are wrapped up.", "album_id": "72157623718997598", "photo_flickr_id": "4469777634", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48314", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here are my books are wrapped up .", "storylet_id": "241571"}], [{"original_text": "My friend and I looking at stuff on the internet.", "album_id": "72157623718997598", "photo_flickr_id": "4469036235", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48314", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend and i looking at stuff on the internet .", "storylet_id": "241572"}], [{"original_text": "Hard at work making sure everything goes right.", "album_id": "72157623718997598", "photo_flickr_id": "4469035491", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48314", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "hard at work making sure everything goes right .", "storylet_id": "241573"}], [{"original_text": "Loving the new couch in the office, nice way to relax.", "album_id": "72157623718997598", "photo_flickr_id": "4469036523", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48314", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "loving the new couch in the office , nice way to relax .", "storylet_id": "241574"}], [{"original_text": "John and Judy were ready for the march.", "album_id": "72157623722453984", "photo_flickr_id": "4471349962", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48315", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] were ready for the march .", "storylet_id": "241575"}], [{"original_text": "They had stayed in a nice hotel.", "album_id": "72157623722453984", "photo_flickr_id": "4470572183", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48315", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had stayed in a nice hotel .", "storylet_id": "241576"}], [{"original_text": "The next day there were many people gathered. ", "album_id": "72157623722453984", "photo_flickr_id": "4470564235", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48315", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next day there were many people gathered .", "storylet_id": "241577"}], [{"original_text": "They all wanted a change.", "album_id": "72157623722453984", "photo_flickr_id": "4470564759", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48315", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they all wanted a change .", "storylet_id": "241578"}], [{"original_text": "The guards tried to their best to protect the crowds and keep the peace. ", "album_id": "72157623722453984", "photo_flickr_id": "4470569339", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48315", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the guards tried to their best to protect the crowds and keep the peace .", "storylet_id": "241579"}], [{"original_text": "They came to support their cause...", "album_id": "72157623722453984", "photo_flickr_id": "4471349962", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "48316", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they came to support their cause ...", "storylet_id": "241580"}], [{"original_text": "However, the capitol building was empty...", "album_id": "72157623722453984", "photo_flickr_id": "4471350676", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "48316", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "however , the capitol building was empty ...", "storylet_id": "241581"}], [{"original_text": "There wasn't a sole on the steps...", "album_id": "72157623722453984", "photo_flickr_id": "4471350992", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "48316", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was n't a sole on the steps ...", "storylet_id": "241582"}], [{"original_text": "Until they arrived at the park.", "album_id": "72157623722453984", "photo_flickr_id": "4471343500", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "48316", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "until they arrived at the park .", "storylet_id": "241583"}], [{"original_text": "Everyone there cheered and awaited to be told it was okay.", "album_id": "72157623722453984", "photo_flickr_id": "4470567199", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "48316", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone there cheered and awaited to be told it was okay .", "storylet_id": "241584"}], [{"original_text": "I went down to the rally yesterday.", "album_id": "72157623722453984", "photo_flickr_id": "4471349962", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48317", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went down to the rally yesterday .", "storylet_id": "241585"}], [{"original_text": "It was right outside the courthouse.", "album_id": "72157623722453984", "photo_flickr_id": "4470572183", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48317", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was right outside the courthouse .", "storylet_id": "241586"}], [{"original_text": "Everyone was there.", "album_id": "72157623722453984", "photo_flickr_id": "4470564235", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48317", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was there .", "storylet_id": "241587"}], [{"original_text": "We were all standing up for our rights.", "album_id": "72157623722453984", "photo_flickr_id": "4470564759", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48317", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were all standing up for our rights .", "storylet_id": "241588"}], [{"original_text": "The White House was nearby.", "album_id": "72157623722453984", "photo_flickr_id": "4470569339", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48317", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the location location was nearby .", "storylet_id": "241589"}], [{"original_text": "This is a picture of two people.", "album_id": "72157623722453984", "photo_flickr_id": "4471349962", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48318", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of two people .", "storylet_id": "241590"}], [{"original_text": "This is a picture of the capitol building.", "album_id": "72157623722453984", "photo_flickr_id": "4471350676", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48318", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of the capitol building .", "storylet_id": "241591"}], [{"original_text": "This is a picture of a building.", "album_id": "72157623722453984", "photo_flickr_id": "4471350992", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48318", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of a building .", "storylet_id": "241592"}], [{"original_text": "This is a picture of a crowd.", "album_id": "72157623722453984", "photo_flickr_id": "4471343500", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48318", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of a crowd .", "storylet_id": "241593"}], [{"original_text": "This is a picture of a group.", "album_id": "72157623722453984", "photo_flickr_id": "4470567199", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48318", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a group .", "storylet_id": "241594"}], [{"original_text": "Samuel and Jeff pose at the congressman's office.", "album_id": "72157623722453984", "photo_flickr_id": "4471349962", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48319", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [male] pose at the congressman 's office .", "storylet_id": "241595"}], [{"original_text": "The Capitol building seemed to gleam in the sunlight.", "album_id": "72157623722453984", "photo_flickr_id": "4471350676", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48319", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the location building seemed to gleam in the sunlight .", "storylet_id": "241596"}], [{"original_text": "The steps to the Congress were intimidating!", "album_id": "72157623722453984", "photo_flickr_id": "4471350992", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48319", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the steps to the organization were intimidating !", "storylet_id": "241597"}], [{"original_text": "There was a small demonstration that day.", "album_id": "72157623722453984", "photo_flickr_id": "4471343500", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48319", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a small demonstration that day .", "storylet_id": "241598"}], [{"original_text": "I think there were about a hundred people gathered outside'", "album_id": "72157623722453984", "photo_flickr_id": "4470567199", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48319", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think there were about a hundred people gathered outside '", "storylet_id": "241599"}], [{"original_text": "The day began with a lot of hard work from the control room.", "album_id": "72157623308603824", "photo_flickr_id": "4314523222", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "48320", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day began with a lot of hard work from the control room .", "storylet_id": "241600"}], [{"original_text": "The leaders ensured that nothing would go wrong.", "album_id": "72157623308603824", "photo_flickr_id": "4313794033", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "48320", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the leaders ensured that nothing would go wrong .", "storylet_id": "241601"}], [{"original_text": "Speeches were made to commemorate the occasion.", "album_id": "72157623308603824", "photo_flickr_id": "4313797915", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "48320", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "speeches were made to commemorate the occasion .", "storylet_id": "241602"}], [{"original_text": "The rope was ceremoniously cut!", "album_id": "72157623308603824", "photo_flickr_id": "4313801155", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "48320", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rope was ceremoniously cut !", "storylet_id": "241603"}], [{"original_text": "Afterwards, the group posed for a picture.", "album_id": "72157623308603824", "photo_flickr_id": "4313804767", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "48320", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , the group posed for a picture .", "storylet_id": "241604"}], [{"original_text": "There was to be a press conference today at the security building.", "album_id": "72157623308603824", "photo_flickr_id": "4314521168", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48321", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was to be a press conference today at the security building .", "storylet_id": "241605"}], [{"original_text": "The guards had to make sure everything was right for the speech.", "album_id": "72157623308603824", "photo_flickr_id": "4314526770", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48321", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guards had to make sure everything was right for the speech .", "storylet_id": "241606"}], [{"original_text": "They had to make sure that everything was working properly.", "album_id": "72157623308603824", "photo_flickr_id": "4313794033", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48321", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had to make sure that everything was working properly .", "storylet_id": "241607"}], [{"original_text": "Everything was working right and it was time for the speech.", "album_id": "72157623308603824", "photo_flickr_id": "4313796261", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48321", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everything was working right and it was time for the speech .", "storylet_id": "241608"}], [{"original_text": "The speech was given by the chairmen of the board.", "album_id": "72157623308603824", "photo_flickr_id": "4313797915", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48321", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the speech was given by the chairmen of the board .", "storylet_id": "241609"}], [{"original_text": "Today my team and I ran the control room of the mayer's ribbon cutting ceremony.", "album_id": "72157623308603824", "photo_flickr_id": "4314523222", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48322", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today my team and i ran the control room of the mayer 's ribbon cutting ceremony .", "storylet_id": "241610"}], [{"original_text": "We used dozens of screens.", "album_id": "72157623308603824", "photo_flickr_id": "4313794033", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48322", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we used dozens of screens .", "storylet_id": "241611"}], [{"original_text": "I made sure the mayer was safe during his speech.", "album_id": "72157623308603824", "photo_flickr_id": "4313797915", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48322", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i made sure the mayer was safe during his speech .", "storylet_id": "241612"}], [{"original_text": "And I watched as he safely cut the ribbon.", "album_id": "72157623308603824", "photo_flickr_id": "4313801155", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48322", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and i watched as he safely cut the ribbon .", "storylet_id": "241613"}], [{"original_text": "My team did an excellent job keeping everyone safe and monitoring the event today.", "album_id": "72157623308603824", "photo_flickr_id": "4313804767", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "48322", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my team did an excellent job keeping everyone safe and monitoring the event today .", "storylet_id": "241614"}], [{"original_text": "Our company has a central monitoring system, where all employees are monitored at all times.", "album_id": "72157623308603824", "photo_flickr_id": "4314523222", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48323", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our company has a central monitoring system , where all employees are monitored at all times .", "storylet_id": "241615"}], [{"original_text": "We have an eye on every one of our fifty-three offices.", "album_id": "72157623308603824", "photo_flickr_id": "4313794033", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48323", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we have an eye on every one of our fifty-three offices .", "storylet_id": "241616"}], [{"original_text": "The head of monitoring knows that good monitoring makes for good workers.", "album_id": "72157623308603824", "photo_flickr_id": "4313797915", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48323", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the head of monitoring knows that good monitoring makes for good workers .", "storylet_id": "241617"}], [{"original_text": "The whole monitoring crew has gotten extensive training.", "album_id": "72157623308603824", "photo_flickr_id": "4313801155", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48323", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole monitoring crew has gotten extensive training .", "storylet_id": "241618"}], [{"original_text": "We feel they are the backbone of our success.", "album_id": "72157623308603824", "photo_flickr_id": "4313804767", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48323", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we feel they are the backbone of our success .", "storylet_id": "241619"}], [{"original_text": "Today was the big day to receive certification.", "album_id": "72157623308603824", "photo_flickr_id": "4314523222", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "48324", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the big day to receive certification .", "storylet_id": "241620"}], [{"original_text": "They had trained hard for months.", "album_id": "72157623308603824", "photo_flickr_id": "4313794033", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "48324", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had trained hard for months .", "storylet_id": "241621"}], [{"original_text": "David said he'd never seen so many qualified people in one room.", "album_id": "72157623308603824", "photo_flickr_id": "4313797915", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "48324", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] said he 'd never seen so many qualified people in one room .", "storylet_id": "241622"}], [{"original_text": "Sandra wished she hadn't worn the red jacket.", "album_id": "72157623308603824", "photo_flickr_id": "4313801155", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "48324", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] wished she had n't worn the red jacket .", "storylet_id": "241623"}], [{"original_text": "They posed for a photo and soaked in the glory of accomplishment.", "album_id": "72157623308603824", "photo_flickr_id": "4313804767", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "48324", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they posed for a photo and soaked in the glory of accomplishment .", "storylet_id": "241624"}], [{"original_text": "At the tech conference, a woman gave a great presentation on cyber secuirt.", "album_id": "72157623735481090", "photo_flickr_id": "4476940376", "setting": "first-2-pick-and-tell", "worker_id": "GMBDVY0ZSG8MFAU", "story_id": "48325", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the tech conference , a woman gave a great presentation on cyber secuirt .", "storylet_id": "241625"}], [{"original_text": "People were really interested.", "album_id": "72157623735481090", "photo_flickr_id": "4476940166", "setting": "first-2-pick-and-tell", "worker_id": "GMBDVY0ZSG8MFAU", "story_id": "48325", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people were really interested .", "storylet_id": "241626"}], [{"original_text": "Another woman gave a presentation on international hacking threats.", "album_id": "72157623735481090", "photo_flickr_id": "4476164267", "setting": "first-2-pick-and-tell", "worker_id": "GMBDVY0ZSG8MFAU", "story_id": "48325", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another woman gave a presentation on international hacking threats .", "storylet_id": "241627"}], [{"original_text": "People took lots of notes.", "album_id": "72157623735481090", "photo_flickr_id": "4476940700", "setting": "first-2-pick-and-tell", "worker_id": "GMBDVY0ZSG8MFAU", "story_id": "48325", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people took lots of notes .", "storylet_id": "241628"}], [{"original_text": "But most people were still in their hotel rooms, asleep.", "album_id": "72157623735481090", "photo_flickr_id": "4476163905", "setting": "first-2-pick-and-tell", "worker_id": "GMBDVY0ZSG8MFAU", "story_id": "48325", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but most people were still in their hotel rooms , asleep .", "storylet_id": "241629"}], [{"original_text": "There was a great turnout for the lecture.", "album_id": "72157623735481090", "photo_flickr_id": "4476941026", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48326", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a great turnout for the lecture .", "storylet_id": "241630"}], [{"original_text": "Everyone was at attention waiting for the speaker.", "album_id": "72157623735481090", "photo_flickr_id": "4476163725", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48326", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was at attention waiting for the speaker .", "storylet_id": "241631"}], [{"original_text": "She was very knowledgeable and spoke well.", "album_id": "72157623735481090", "photo_flickr_id": "4476164267", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48326", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was very knowledgeable and spoke well .", "storylet_id": "241632"}], [{"original_text": "She had everyone on the edge of their seats.", "album_id": "72157623735481090", "photo_flickr_id": "4476940700", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48326", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she had everyone on the edge of their seats .", "storylet_id": "241633"}], [{"original_text": "Many people took notes to remember her facts.", "album_id": "72157623735481090", "photo_flickr_id": "4476940952", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48326", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many people took notes to remember her facts .", "storylet_id": "241634"}], [{"original_text": "Everyone went into the meeting room.", "album_id": "72157623735481090", "photo_flickr_id": "4476941026", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48327", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone went into the meeting room .", "storylet_id": "241635"}], [{"original_text": "Once everyone was seated, the talking began.", "album_id": "72157623735481090", "photo_flickr_id": "4476163725", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48327", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once everyone was seated , the talking began .", "storylet_id": "241636"}], [{"original_text": "People at the front said their piece.", "album_id": "72157623735481090", "photo_flickr_id": "4476164267", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48327", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people at the front said their piece .", "storylet_id": "241637"}], [{"original_text": "The people in the crowd took noted on it.", "album_id": "72157623735481090", "photo_flickr_id": "4476940700", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48327", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people in the crowd took noted on it .", "storylet_id": "241638"}], [{"original_text": "The meeting lasted a few hours, then ended.", "album_id": "72157623735481090", "photo_flickr_id": "4476940952", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48327", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the meeting lasted a few hours , then ended .", "storylet_id": "241639"}], [{"original_text": "The speaker begins on her speech of how to help California with their draught.", "album_id": "72157623735481090", "photo_flickr_id": "4476940376", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48328", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the speaker begins on her speech of how to help location with their draught .", "storylet_id": "241640"}], [{"original_text": "Important people listen to the speaker on how to solve the problem.", "album_id": "72157623735481090", "photo_flickr_id": "4476940166", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48328", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "important people listen to the speaker on how to solve the problem .", "storylet_id": "241641"}], [{"original_text": "One way the speakers says is to levy a fine on people who water their lawn.", "album_id": "72157623735481090", "photo_flickr_id": "4476164267", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48328", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one way the speakers says is to levy a fine on people who water their lawn .", "storylet_id": "241642"}], [{"original_text": "Everyone agrees this is one way to curb water usage.", "album_id": "72157623735481090", "photo_flickr_id": "4476940700", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48328", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone agrees this is one way to curb water usage .", "storylet_id": "241643"}], [{"original_text": "More than half the important people don't think there is a water shortage.", "album_id": "72157623735481090", "photo_flickr_id": "4476163905", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48328", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "more than half the important people do n't think there is a water shortage .", "storylet_id": "241644"}], [{"original_text": "The day of the education conference had arrived and as soon as the doors open people began to mill into seats.", "album_id": "72157623735481090", "photo_flickr_id": "4476941026", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48329", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day of the education conference had arrived and as soon as the doors open people began to mill into seats .", "storylet_id": "241645"}], [{"original_text": "Many conference goers waited patiently for the first round of speakers to take the stand.", "album_id": "72157623735481090", "photo_flickr_id": "4476163725", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48329", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many conference goers waited patiently for the first round of speakers to take the stand .", "storylet_id": "241646"}], [{"original_text": "Each speaker was given a certain amount of time to go over the specifics of what they were trying to say.", "album_id": "72157623735481090", "photo_flickr_id": "4476164267", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48329", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each speaker was given a certain amount of time to go over the specifics of what they were trying to say .", "storylet_id": "241647"}], [{"original_text": "The audience members listened closely as they took down notes or nodded in agreement.", "album_id": "72157623735481090", "photo_flickr_id": "4476940700", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48329", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the audience members listened closely as they took down notes or nodded in agreement .", "storylet_id": "241648"}], [{"original_text": "Other attendees preferred to take notes the old fashioned way; with a pen and a notebook. ", "album_id": "72157623735481090", "photo_flickr_id": "4476940952", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48329", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "other attendees preferred to take notes the old fashioned way ; with a pen and a notebook .", "storylet_id": "241649"}], [{"original_text": "The countdown for the start of the meeting began.", "album_id": "72157623320493940", "photo_flickr_id": "4319503176", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "48330", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the countdown for the start of the meeting began .", "storylet_id": "241650"}], [{"original_text": "CEO Quan stepped out with much fanfare.", "album_id": "72157623320493940", "photo_flickr_id": "4318769963", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "48330", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "ceo quan stepped out with much fanfare .", "storylet_id": "241651"}], [{"original_text": "He introduced the paper thin TV.", "album_id": "72157623320493940", "photo_flickr_id": "4319499164", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "48330", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he introduced the paper thin tv .", "storylet_id": "241652"}], [{"original_text": "He also talked about the automatic robot vacuum.", "album_id": "72157623320493940", "photo_flickr_id": "4318766171", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "48330", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he also talked about the automatic robot vacuum .", "storylet_id": "241653"}], [{"original_text": "Then he told about Japans foray into wearable tech.", "album_id": "72157623320493940", "photo_flickr_id": "4319499542", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "48330", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then he told about location foray into wearable tech .", "storylet_id": "241654"}], [{"original_text": "I got tickets to the game last week.", "album_id": "72157623320493940", "photo_flickr_id": "4319503176", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48331", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got tickets to the game last week .", "storylet_id": "241655"}], [{"original_text": "It was really intense.", "album_id": "72157623320493940", "photo_flickr_id": "4318769963", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48331", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was really intense .", "storylet_id": "241656"}], [{"original_text": "The scores were very close all game long.", "album_id": "72157623320493940", "photo_flickr_id": "4319503290", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48331", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the scores were very close all game long .", "storylet_id": "241657"}], [{"original_text": "Both teams wanted to win badly.", "album_id": "72157623320493940", "photo_flickr_id": "4318765955", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48331", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "both teams wanted to win badly .", "storylet_id": "241658"}], [{"original_text": "It was a struggle for both of them.", "album_id": "72157623320493940", "photo_flickr_id": "4319499376", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48331", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a struggle for both of them .", "storylet_id": "241659"}], [{"original_text": "The hockey game was intense.", "album_id": "72157623320493940", "photo_flickr_id": "4319503176", "setting": "last-3-pick-old-and-tell", "worker_id": "T451E5GKPZL2JGH", "story_id": "48332", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the hockey game was intense .", "storylet_id": "241660"}], [{"original_text": "The goalie had given up many goals.", "album_id": "72157623320493940", "photo_flickr_id": "4318769963", "setting": "last-3-pick-old-and-tell", "worker_id": "T451E5GKPZL2JGH", "story_id": "48332", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the goalie had given up many goals .", "storylet_id": "241661"}], [{"original_text": "The Panthers fought back.", "album_id": "72157623320493940", "photo_flickr_id": "4319499164", "setting": "last-3-pick-old-and-tell", "worker_id": "T451E5GKPZL2JGH", "story_id": "48332", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the panthers fought back .", "storylet_id": "241662"}], [{"original_text": "They tried to defend the Capitals.", "album_id": "72157623320493940", "photo_flickr_id": "4318766171", "setting": "last-3-pick-old-and-tell", "worker_id": "T451E5GKPZL2JGH", "story_id": "48332", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they tried to defend the capitals .", "storylet_id": "241663"}], [{"original_text": "But the Capitals kept on shooting.", "album_id": "72157623320493940", "photo_flickr_id": "4319499542", "setting": "last-3-pick-old-and-tell", "worker_id": "T451E5GKPZL2JGH", "story_id": "48332", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the capitals kept on shooting .", "storylet_id": "241664"}], [{"original_text": "He prepped himself before passing the puck ", "album_id": "72157623320493940", "photo_flickr_id": "4319503176", "setting": "last-3-pick-old-and-tell", "worker_id": "X4WL5BDW1VCYZXF", "story_id": "48333", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he prepped himself before passing the puck", "storylet_id": "241665"}], [{"original_text": "The pass was good and he made a powerful shot", "album_id": "72157623320493940", "photo_flickr_id": "4318769963", "setting": "last-3-pick-old-and-tell", "worker_id": "X4WL5BDW1VCYZXF", "story_id": "48333", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pass was good and he made a powerful shot", "storylet_id": "241666"}], [{"original_text": "He then was slammed against the glass in front of the opposing team", "album_id": "72157623320493940", "photo_flickr_id": "4319499164", "setting": "last-3-pick-old-and-tell", "worker_id": "X4WL5BDW1VCYZXF", "story_id": "48333", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he then was slammed against the glass in front of the opposing team", "storylet_id": "241667"}], [{"original_text": "The puck was now in the red teams possession ", "album_id": "72157623320493940", "photo_flickr_id": "4318766171", "setting": "last-3-pick-old-and-tell", "worker_id": "X4WL5BDW1VCYZXF", "story_id": "48333", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the puck was now in the red teams possession", "storylet_id": "241668"}], [{"original_text": "He was all alone with his puck", "album_id": "72157623320493940", "photo_flickr_id": "4319499542", "setting": "last-3-pick-old-and-tell", "worker_id": "X4WL5BDW1VCYZXF", "story_id": "48333", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was all alone with his puck", "storylet_id": "241669"}], [{"original_text": "My favorite hockey team has always been the Washington Capitols.", "album_id": "72157623320493940", "photo_flickr_id": "4319503176", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48334", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my favorite hockey team has always been the location location .", "storylet_id": "241670"}], [{"original_text": "I love seeing the Capitols's opponents keeled over in disappointment. ", "album_id": "72157623320493940", "photo_flickr_id": "4318769963", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48334", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love seeing the capitols 's opponents keeled over in disappointment .", "storylet_id": "241671"}], [{"original_text": "I'm not a fan of fighting, but if you mess with players on the Capitols you will get what you deserve.", "album_id": "72157623320493940", "photo_flickr_id": "4319499164", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48334", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i 'm not a fan of fighting , but if you mess with players on the capitols you will get what you deserve .", "storylet_id": "241672"}], [{"original_text": "My favorite player to watch with the puck is Alex Ovechkin.", "album_id": "72157623320493940", "photo_flickr_id": "4318766171", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48334", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my favorite player to watch with the puck is [male] ovechkin .", "storylet_id": "241673"}], [{"original_text": "Ovechkin is an expert goal scorer and not a bad passer.", "album_id": "72157623320493940", "photo_flickr_id": "4319499542", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48334", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ovechkin is an expert goal scorer and not a bad passer .", "storylet_id": "241674"}], [{"original_text": "Does this monkey suit make me look fat?", "album_id": "11090", "photo_flickr_id": "450799", "setting": "first-2-pick-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "48335", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "does this monkey suit make me look fat ?", "storylet_id": "241675"}], [{"original_text": "Fun dressing up together. Wearing baboon suit.", "album_id": "11090", "photo_flickr_id": "450805", "setting": "first-2-pick-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "48335", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fun dressing up together . wearing baboon suit .", "storylet_id": "241676"}], [{"original_text": "Do I scare you yet?", "album_id": "11090", "photo_flickr_id": "450810", "setting": "first-2-pick-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "48335", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "do i scare you yet ?", "storylet_id": "241677"}], [{"original_text": "Look! I'm hairy like a monkey!", "album_id": "11090", "photo_flickr_id": "450812", "setting": "first-2-pick-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "48335", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look ! i 'm hairy like a monkey !", "storylet_id": "241678"}], [{"original_text": "Monkeys can do creepy stuff.", "album_id": "11090", "photo_flickr_id": "450820", "setting": "first-2-pick-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "48335", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "monkeys can do creepy stuff .", "storylet_id": "241679"}], [{"original_text": "For the office Halloween party a man's wife brought him a gorilla suit.", "album_id": "11090", "photo_flickr_id": "450799", "setting": "first-2-pick-and-tell", "worker_id": "YMMXRS8DXR9LATU", "story_id": "48336", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for the office halloween party a man 's wife brought him a gorilla suit .", "storylet_id": "241680"}], [{"original_text": "The man started changing into the suit by first putting on the mask.", "album_id": "11090", "photo_flickr_id": "450810", "setting": "first-2-pick-and-tell", "worker_id": "YMMXRS8DXR9LATU", "story_id": "48336", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man started changing into the suit by first putting on the mask .", "storylet_id": "241681"}], [{"original_text": "After he put on the mask he started to take off his shirt to put on the rest of the suit.", "album_id": "11090", "photo_flickr_id": "450812", "setting": "first-2-pick-and-tell", "worker_id": "YMMXRS8DXR9LATU", "story_id": "48336", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after he put on the mask he started to take off his shirt to put on the rest of the suit .", "storylet_id": "241682"}], [{"original_text": "He put on the rest of the suit, but in order to get it on he had to take off the mask.", "album_id": "11090", "photo_flickr_id": "450807", "setting": "first-2-pick-and-tell", "worker_id": "YMMXRS8DXR9LATU", "story_id": "48336", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he put on the rest of the suit , but in order to get it on he had to take off the mask .", "storylet_id": "241683"}], [{"original_text": "After he got the full suit on he jumped out from behind his cubical to the surprise of the rest of the office.", "album_id": "11090", "photo_flickr_id": "450820", "setting": "first-2-pick-and-tell", "worker_id": "YMMXRS8DXR9LATU", "story_id": "48336", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after he got the full suit on he jumped out from behind his cubical to the surprise of the rest of the office .", "storylet_id": "241684"}], [{"original_text": "Everyone at the office wanted to try on the gorilla outfit. ", "album_id": "11090", "photo_flickr_id": "450799", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "48337", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone at the office wanted to try on the gorilla outfit .", "storylet_id": "241685"}], [{"original_text": "It went from one worker to the next. ", "album_id": "11090", "photo_flickr_id": "450810", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "48337", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it went from one worker to the next .", "storylet_id": "241686"}], [{"original_text": "One worker didn't need the suit as he is as hairy as a gorilla himself. ", "album_id": "11090", "photo_flickr_id": "450812", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "48337", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one worker did n't need the suit as he is as hairy as a gorilla himself .", "storylet_id": "241687"}], [{"original_text": "We did get our work done, though. ", "album_id": "11090", "photo_flickr_id": "450807", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "48337", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we did get our work done , though .", "storylet_id": "241688"}], [{"original_text": "Then returned to running on our knuckles and eating bananas. ", "album_id": "11090", "photo_flickr_id": "450820", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "48337", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then returned to running on our knuckles and eating bananas .", "storylet_id": "241689"}], [{"original_text": "It's Prank Day at work, Susan seems ready.", "album_id": "11090", "photo_flickr_id": "450799", "setting": "last-3-pick-old-and-tell", "worker_id": "KBE4WJQ92WAQ68J", "story_id": "48338", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's prank day at work , [female] seems ready .", "storylet_id": "241690"}], [{"original_text": "Dan tries on the gorilla costume for later.", "album_id": "11090", "photo_flickr_id": "450805", "setting": "last-3-pick-old-and-tell", "worker_id": "KBE4WJQ92WAQ68J", "story_id": "48338", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] tries on the gorilla costume for later .", "storylet_id": "241691"}], [{"original_text": "Mike works for bananas.", "album_id": "11090", "photo_flickr_id": "450810", "setting": "last-3-pick-old-and-tell", "worker_id": "KBE4WJQ92WAQ68J", "story_id": "48338", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] works for bananas .", "storylet_id": "241692"}], [{"original_text": "Some of us don't need to wear the full costume.", "album_id": "11090", "photo_flickr_id": "450812", "setting": "last-3-pick-old-and-tell", "worker_id": "KBE4WJQ92WAQ68J", "story_id": "48338", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of us do n't need to wear the full costume .", "storylet_id": "241693"}], [{"original_text": "Fez wearing Gorilla finally makes his dancing debut.", "album_id": "11090", "photo_flickr_id": "450820", "setting": "last-3-pick-old-and-tell", "worker_id": "KBE4WJQ92WAQ68J", "story_id": "48338", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "location wearing gorilla finally makes his dancing debut .", "storylet_id": "241694"}], [{"original_text": "The gorilla suit looks realistic.", "album_id": "11090", "photo_flickr_id": "450799", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "48339", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the gorilla suit looks realistic .", "storylet_id": "241695"}], [{"original_text": "Alex wanted to try it on.", "album_id": "11090", "photo_flickr_id": "450805", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "48339", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] wanted to try it on .", "storylet_id": "241696"}], [{"original_text": "But he took the mask.", "album_id": "11090", "photo_flickr_id": "450810", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "48339", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but he took the mask .", "storylet_id": "241697"}], [{"original_text": "And he didn't need the rest of the costume.", "album_id": "11090", "photo_flickr_id": "450812", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "48339", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and he did n't need the rest of the costume .", "storylet_id": "241698"}], [{"original_text": "The gorilla suit makes us crazy.", "album_id": "11090", "photo_flickr_id": "450820", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "48339", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the gorilla suit makes us crazy .", "storylet_id": "241699"}], [{"original_text": "My life is dull.", "album_id": "60550", "photo_flickr_id": "2408632", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "48340", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my life is dull .", "storylet_id": "241700"}], [{"original_text": "I take photos of my breakfast.", "album_id": "60550", "photo_flickr_id": "2408601", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "48340", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i take photos of my breakfast .", "storylet_id": "241701"}], [{"original_text": "I also take photos of empty plates.", "album_id": "60550", "photo_flickr_id": "2408590", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "48340", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also take photos of empty plates .", "storylet_id": "241702"}], [{"original_text": "This is my computer.", "album_id": "60550", "photo_flickr_id": "2408574", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "48340", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is my computer .", "storylet_id": "241703"}], [{"original_text": "There was a crack in the drywall. ", "album_id": "60550", "photo_flickr_id": "2408556", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "48340", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a crack in the drywall .", "storylet_id": "241704"}], [{"original_text": "I sat down to eat at the desk so I can get my work done.", "album_id": "60550", "photo_flickr_id": "2408632", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48341", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i sat down to eat at the desk so i can get my work done .", "storylet_id": "241705"}], [{"original_text": "Some time had passed before I started getting hungry again.", "album_id": "60550", "photo_flickr_id": "2408574", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48341", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some time had passed before i started getting hungry again .", "storylet_id": "241706"}], [{"original_text": "so I thought I would borrow a bike from downstairs to leave and get some food.", "album_id": "60550", "photo_flickr_id": "2408535", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48341", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so i thought i would borrow a bike from downstairs to leave and get some food .", "storylet_id": "241707"}], [{"original_text": "I returned it to it's position when I got back.", "album_id": "60550", "photo_flickr_id": "2408530", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48341", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i returned it to it 's position when i got back .", "storylet_id": "241708"}], [{"original_text": "And sat down at the table to have my meal.", "album_id": "60550", "photo_flickr_id": "2408601", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48341", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and sat down at the table to have my meal .", "storylet_id": "241709"}], [{"original_text": "I sat down today to document my life.", "album_id": "60550", "photo_flickr_id": "2408632", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48342", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i sat down today to document my life .", "storylet_id": "241710"}], [{"original_text": "First, I ate a nice meal in the cafeteria.", "album_id": "60550", "photo_flickr_id": "2408601", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48342", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first , i ate a nice meal in the cafeteria .", "storylet_id": "241711"}], [{"original_text": "The remains of the meal on my plate were tossed away.", "album_id": "60550", "photo_flickr_id": "2408590", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48342", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the remains of the meal on my plate were tossed away .", "storylet_id": "241712"}], [{"original_text": "Then I returned to work at my computer, which is very old.", "album_id": "60550", "photo_flickr_id": "2408574", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48342", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then i returned to work at my computer , which is very old .", "storylet_id": "241713"}], [{"original_text": "Finally, I accidentally punched a hole in the wall when I turned too quickly.", "album_id": "60550", "photo_flickr_id": "2408556", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48342", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , i accidentally punched a hole in the wall when i turned too quickly .", "storylet_id": "241714"}], [{"original_text": "A quick view of our home shows our computer from the top.", "album_id": "60550", "photo_flickr_id": "2408632", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "48343", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a quick view of our home shows our computer from the top .", "storylet_id": "241715"}], [{"original_text": "We are in the middle of eating our meal.", "album_id": "60550", "photo_flickr_id": "2408601", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "48343", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are in the middle of eating our meal .", "storylet_id": "241716"}], [{"original_text": "This is my husband's plate.", "album_id": "60550", "photo_flickr_id": "2408590", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "48343", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is my husband 's plate .", "storylet_id": "241717"}], [{"original_text": "This is our computer from the front.", "album_id": "60550", "photo_flickr_id": "2408574", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "48343", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is our computer from the front .", "storylet_id": "241718"}], [{"original_text": "It looks like we need our wall patched up.", "album_id": "60550", "photo_flickr_id": "2408556", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "48343", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it looks like we need our wall patched up .", "storylet_id": "241719"}], [{"original_text": "The computer desk was organized", "album_id": "60550", "photo_flickr_id": "2408632", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48344", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the computer desk was organized", "storylet_id": "241720"}], [{"original_text": "so the person cooked a meal", "album_id": "60550", "photo_flickr_id": "2408601", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48344", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so the person cooked a meal", "storylet_id": "241721"}], [{"original_text": "and ate all of it.", "album_id": "60550", "photo_flickr_id": "2408590", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48344", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and ate all of it .", "storylet_id": "241722"}], [{"original_text": "Then they went back to work", "album_id": "60550", "photo_flickr_id": "2408574", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48344", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they went back to work", "storylet_id": "241723"}], [{"original_text": "and they noticed a hole in the wall.", "album_id": "60550", "photo_flickr_id": "2408556", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48344", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they noticed a hole in the wall .", "storylet_id": "241724"}], [{"original_text": "My husband was very prepared for breakfast.", "album_id": "61237", "photo_flickr_id": "2434266", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48345", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband was very prepared for breakfast .", "storylet_id": "241725"}], [{"original_text": "He brought a tree to the office in spirit.", "album_id": "61237", "photo_flickr_id": "2434281", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48345", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he brought a tree to the office in spirit .", "storylet_id": "241726"}], [{"original_text": "When it was almost time to go, we looked at the clock.", "album_id": "61237", "photo_flickr_id": "2434308", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48345", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when it was almost time to go , we looked at the clock .", "storylet_id": "241727"}], [{"original_text": "When he got home, he watered the grass with no socks on.", "album_id": "61237", "photo_flickr_id": "2434335", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48345", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when he got home , he watered the grass with no socks on .", "storylet_id": "241728"}], [{"original_text": "We made gingerbread cookies together.", "album_id": "61237", "photo_flickr_id": "2434368", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48345", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we made gingerbread cookies together .", "storylet_id": "241729"}], [{"original_text": "He got an early start.", "album_id": "61237", "photo_flickr_id": "2434212", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "48346", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he got an early start .", "storylet_id": "241730"}], [{"original_text": "He met his friends for breakfast.", "album_id": "61237", "photo_flickr_id": "2434215", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "48346", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he met his friends for breakfast .", "storylet_id": "241731"}], [{"original_text": "Then it was time for work at the office.", "album_id": "61237", "photo_flickr_id": "2434291", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "48346", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then it was time for work at the office .", "storylet_id": "241732"}], [{"original_text": "He ate dinner out.", "album_id": "61237", "photo_flickr_id": "2434396", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "48346", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he ate dinner out .", "storylet_id": "241733"}], [{"original_text": "Then he drove around looking at Christmas light displays.", "album_id": "61237", "photo_flickr_id": "2434429", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "48346", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then he drove around looking at christmas light displays .", "storylet_id": "241734"}], [{"original_text": "My co-worker Ted helped us get ready for a Christmas party.", "album_id": "61237", "photo_flickr_id": "2434266", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48347", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my co-worker [male] helped us get ready for a christmas party .", "storylet_id": "241735"}], [{"original_text": "He decorated the tree in the office.", "album_id": "61237", "photo_flickr_id": "2434281", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48347", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he decorated the tree in the office .", "storylet_id": "241736"}], [{"original_text": "At 10 minutes to 5, we decided to stop working for the day.", "album_id": "61237", "photo_flickr_id": "2434308", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48347", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at 10 minutes to 5 , we decided to stop working for the day .", "storylet_id": "241737"}], [{"original_text": "Ted went outside in his bare feet to water the grass.", "album_id": "61237", "photo_flickr_id": "2434335", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48347", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] went outside in his bare feet to water the grass .", "storylet_id": "241738"}], [{"original_text": "When he came back in, we had a bunch of gingerbread cookies out to enjoy.", "album_id": "61237", "photo_flickr_id": "2434368", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48347", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when he came back in , we had a bunch of gingerbread cookies out to enjoy .", "storylet_id": "241739"}], [{"original_text": "We helped ourselves to food to start the day.", "album_id": "61237", "photo_flickr_id": "2434266", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48348", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we helped ourselves to food to start the day .", "storylet_id": "241740"}], [{"original_text": "A Christmas tree is displayed in the office.", "album_id": "61237", "photo_flickr_id": "2434281", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48348", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a christmas tree is displayed in the office .", "storylet_id": "241741"}], [{"original_text": "It is almost time to leave the office.", "album_id": "61237", "photo_flickr_id": "2434308", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48348", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is almost time to leave the office .", "storylet_id": "241742"}], [{"original_text": "Later, we hose the grass to make sure it gets fed.", "album_id": "61237", "photo_flickr_id": "2434335", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48348", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later , we hose the grass to make sure it gets fed .", "storylet_id": "241743"}], [{"original_text": "Lastly, we made gingerbread cookies for a treat.", "album_id": "61237", "photo_flickr_id": "2434368", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48348", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , we made gingerbread cookies for a treat .", "storylet_id": "241744"}], [{"original_text": "The guy was getting a meal", "album_id": "61237", "photo_flickr_id": "2434266", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48349", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guy was getting a meal", "storylet_id": "241745"}], [{"original_text": "and then saw the Christmas tree", "album_id": "61237", "photo_flickr_id": "2434281", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48349", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and then saw the christmas tree", "storylet_id": "241746"}], [{"original_text": "near the clock.", "album_id": "61237", "photo_flickr_id": "2434308", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48349", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "near the clock .", "storylet_id": "241747"}], [{"original_text": "After he went home he used the hose", "album_id": "61237", "photo_flickr_id": "2434335", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48349", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after he went home he used the hose", "storylet_id": "241748"}], [{"original_text": "before making some cookies.", "album_id": "61237", "photo_flickr_id": "2434368", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48349", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before making some cookies .", "storylet_id": "241749"}], [{"original_text": "It was Spring in the United States and the weather was cloudy and overcast. ", "album_id": "61562", "photo_flickr_id": "2440785", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48350", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was spring in the location location and the weather was cloudy and overcast .", "storylet_id": "241750"}], [{"original_text": "A completely random snow storm hit without warning in the Midwest. ", "album_id": "61562", "photo_flickr_id": "2444816", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48350", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a completely random snow storm hit without warning in the location .", "storylet_id": "241751"}], [{"original_text": "The trees with their new growth were covered in snow. ", "album_id": "61562", "photo_flickr_id": "2440992", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48350", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the trees with their new growth were covered in snow .", "storylet_id": "241752"}], [{"original_text": "Small flowers that had just bloomed were frozen and most died. ", "album_id": "61562", "photo_flickr_id": "2444937", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48350", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "small flowers that had just bloomed were frozen and most died .", "storylet_id": "241753"}], [{"original_text": "Even the cat tails fell victim and took weeks to recover. ", "album_id": "61562", "photo_flickr_id": "2444870", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48350", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the cat tails fell victim and took weeks to recover .", "storylet_id": "241754"}], [{"original_text": "It was an odd day to have such a large snowfall in May, but made for a great day to take pictures.", "album_id": "61562", "photo_flickr_id": "2444816", "setting": "first-2-pick-and-tell", "worker_id": "XYGXH4NOC4LG1VB", "story_id": "48351", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was an odd day to have such a large snowfall in [female] , but made for a great day to take pictures .", "storylet_id": "241755"}], [{"original_text": "The spring flowers were peaking through the icy snow.", "album_id": "61562", "photo_flickr_id": "2444917", "setting": "first-2-pick-and-tell", "worker_id": "XYGXH4NOC4LG1VB", "story_id": "48351", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the spring flowers were peaking through the icy snow .", "storylet_id": "241756"}], [{"original_text": "Hopefully the last frost doesn't damage the seeds for next year, but these crab apples look strong enough. ", "album_id": "61562", "photo_flickr_id": "2440992", "setting": "first-2-pick-and-tell", "worker_id": "XYGXH4NOC4LG1VB", "story_id": "48351", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "hopefully the last frost does n't damage the seeds for next year , but these crab apples look strong enough .", "storylet_id": "241757"}], [{"original_text": "The pansies were tough enough to withstand the snow on their petals.", "album_id": "61562", "photo_flickr_id": "2444937", "setting": "first-2-pick-and-tell", "worker_id": "XYGXH4NOC4LG1VB", "story_id": "48351", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pansies were tough enough to withstand the snow on their petals .", "storylet_id": "241758"}], [{"original_text": "What an amazing, quiet, snowy morning. ", "album_id": "61562", "photo_flickr_id": "2447860", "setting": "first-2-pick-and-tell", "worker_id": "XYGXH4NOC4LG1VB", "story_id": "48351", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what an amazing , quiet , snowy morning .", "storylet_id": "241759"}], [{"original_text": "Today, we had no school because of the snow.", "album_id": "61562", "photo_flickr_id": "2440785", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "48352", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , we had no school because of the snow .", "storylet_id": "241760"}], [{"original_text": "It was such a great day.", "album_id": "61562", "photo_flickr_id": "2444816", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "48352", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was such a great day .", "storylet_id": "241761"}], [{"original_text": "I went around to look at all the things covered in snow.", "album_id": "61562", "photo_flickr_id": "2440992", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "48352", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i went around to look at all the things covered in snow .", "storylet_id": "241762"}], [{"original_text": "It was early, so no one else was up.", "album_id": "61562", "photo_flickr_id": "2444937", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "48352", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was early , so no one else was up .", "storylet_id": "241763"}], [{"original_text": "Soon, my friends arrived and we could play in the snow.", "album_id": "61562", "photo_flickr_id": "2444870", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "48352", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "soon , my friends arrived and we could play in the snow .", "storylet_id": "241764"}], [{"original_text": "It was a cold day at the historic University.", "album_id": "61562", "photo_flickr_id": "2444816", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48353", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a cold day at the historic organization .", "storylet_id": "241765"}], [{"original_text": "There had been a blizzard the previous night and everything was covered in snow.", "album_id": "61562", "photo_flickr_id": "2444917", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48353", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there had been a blizzard the previous night and everything was covered in snow .", "storylet_id": "241766"}], [{"original_text": "The beautiful trees still had little red flowers blooming out. It was a gorgeous winter day.", "album_id": "61562", "photo_flickr_id": "2440992", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48353", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beautiful trees still had little red flowers blooming out . it was a gorgeous winter day .", "storylet_id": "241767"}], [{"original_text": "There were many beautiful flowers such as tulips throughout the school. Everything was covered in a soft white blanket of snow.", "album_id": "61562", "photo_flickr_id": "2444937", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48353", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many beautiful flowers such as tulips throughout the school . everything was covered in a soft white blanket of snow .", "storylet_id": "241768"}], [{"original_text": "The day was a cold and brisk, but it was such a beautiful sight to see. ", "album_id": "61562", "photo_flickr_id": "2447860", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48353", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day was a cold and brisk , but it was such a beautiful sight to see .", "storylet_id": "241769"}], [{"original_text": "The snow made the building pretty", "album_id": "61562", "photo_flickr_id": "2444816", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48354", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the snow made the building pretty", "storylet_id": "241770"}], [{"original_text": "but covered the live plants", "album_id": "61562", "photo_flickr_id": "2444917", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48354", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but covered the live plants", "storylet_id": "241771"}], [{"original_text": "and the berries.", "album_id": "61562", "photo_flickr_id": "2440992", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48354", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the berries .", "storylet_id": "241772"}], [{"original_text": "The flowers were hidden ", "album_id": "61562", "photo_flickr_id": "2444937", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48354", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the flowers were hidden", "storylet_id": "241773"}], [{"original_text": "but the scenery was very nice.", "album_id": "61562", "photo_flickr_id": "2447860", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48354", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the scenery was very nice .", "storylet_id": "241774"}], [{"original_text": "The boardwalk hadn't had a customer in weeks.", "album_id": "72157628033104348", "photo_flickr_id": "6392828155", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "48355", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boardwalk had n't had a customer in weeks .", "storylet_id": "241775"}], [{"original_text": "The carousel was deserted.", "album_id": "72157628033104348", "photo_flickr_id": "6392866607", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "48355", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the carousel was deserted .", "storylet_id": "241776"}], [{"original_text": "They enlisted the help of the cameras to find the people.", "album_id": "72157628033104348", "photo_flickr_id": "6392871319", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "48355", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they enlisted the help of the cameras to find the people .", "storylet_id": "241777"}], [{"original_text": "They went to the local mall to drum up business.", "album_id": "72157628033104348", "photo_flickr_id": "6392879089", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "48355", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they went to the local mall to drum up business .", "storylet_id": "241778"}], [{"original_text": "Ultimately they discovered that everyone was trapped in the maze.", "album_id": "72157628033104348", "photo_flickr_id": "6392888245", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "48355", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ultimately they discovered that everyone was trapped in the maze .", "storylet_id": "241779"}], [{"original_text": "We stopped at a carnival on the way to the vacation house ", "album_id": "72157628033104348", "photo_flickr_id": "6392870391", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48356", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we stopped at a carnival on the way to the vacation house", "storylet_id": "241780"}], [{"original_text": "When we got there I took this photo of the front ", "album_id": "72157628033104348", "photo_flickr_id": "6304391025", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48356", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we got there i took this photo of the front", "storylet_id": "241781"}], [{"original_text": "Here we all are heading to check in ", "album_id": "72157628033104348", "photo_flickr_id": "6392902839", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48356", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here we all are heading to check in", "storylet_id": "241782"}], [{"original_text": "After check in we walked up the steps to our room ", "album_id": "72157628033104348", "photo_flickr_id": "6392911633", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48356", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after check in we walked up the steps to our room", "storylet_id": "241783"}], [{"original_text": "I took this photo after dinner the first night ", "album_id": "72157628033104348", "photo_flickr_id": "6392922517", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48356", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i took this photo after dinner the first night", "storylet_id": "241784"}], [{"original_text": "The group of friends took a trip in June and started at an amusement park. ", "album_id": "72157628033104348", "photo_flickr_id": "6392828155", "setting": "last-3-pick-old-and-tell", "worker_id": "78BC13GJZ237SVW", "story_id": "48357", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group of friends took a trip in [female] and started at an amusement park .", "storylet_id": "241785"}], [{"original_text": "They enjoyed riding the merry-go-round. ", "album_id": "72157628033104348", "photo_flickr_id": "6392866607", "setting": "last-3-pick-old-and-tell", "worker_id": "78BC13GJZ237SVW", "story_id": "48357", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they enjoyed riding the merry-go-round .", "storylet_id": "241786"}], [{"original_text": "Some of the students were amused by the camera lens on top of a building next to the merry-go-round. ", "album_id": "72157628033104348", "photo_flickr_id": "6392871319", "setting": "last-3-pick-old-and-tell", "worker_id": "78BC13GJZ237SVW", "story_id": "48357", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the students were amused by the camera lens on top of a building next to the merry-go-round .", "storylet_id": "241787"}], [{"original_text": "After they went to the amusement park, the group traveled to a local museum. ", "album_id": "72157628033104348", "photo_flickr_id": "6392879089", "setting": "last-3-pick-old-and-tell", "worker_id": "78BC13GJZ237SVW", "story_id": "48357", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after they went to the amusement park , the group traveled to a local museum .", "storylet_id": "241788"}], [{"original_text": "The students ended the trip when they saw some unusual gardens. ", "album_id": "72157628033104348", "photo_flickr_id": "6392888245", "setting": "last-3-pick-old-and-tell", "worker_id": "78BC13GJZ237SVW", "story_id": "48357", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the students ended the trip when they saw some unusual gardens .", "storylet_id": "241789"}], [{"original_text": "Going site seeing. The carnival is a great place to start, with all the colors and rides", "album_id": "72157628033104348", "photo_flickr_id": "6392828155", "setting": "last-3-pick-old-and-tell", "worker_id": "V7TUYZAA7KBCJLI", "story_id": "48358", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going site seeing . the carnival is a great place to start , with all the colors and rides", "storylet_id": "241790"}], [{"original_text": "Here at the Merry go round, all the colors are bright and beautiful. A great site to see.", "album_id": "72157628033104348", "photo_flickr_id": "6392866607", "setting": "last-3-pick-old-and-tell", "worker_id": "V7TUYZAA7KBCJLI", "story_id": "48358", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here at the merry go round , all the colors are bright and beautiful . a great site to see .", "storylet_id": "241791"}], [{"original_text": "Here is more common sight. The camera is watching us.", "album_id": "72157628033104348", "photo_flickr_id": "6392871319", "setting": "last-3-pick-old-and-tell", "worker_id": "V7TUYZAA7KBCJLI", "story_id": "48358", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is more common sight . the camera is watching us .", "storylet_id": "241792"}], [{"original_text": "Here, we all got together to discuss the sites we've seen, and continue with our trip.", "album_id": "72157628033104348", "photo_flickr_id": "6392879089", "setting": "last-3-pick-old-and-tell", "worker_id": "V7TUYZAA7KBCJLI", "story_id": "48358", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here , we all got together to discuss the sites we 've seen , and continue with our trip .", "storylet_id": "241793"}], [{"original_text": "Now, it's the end of the day. A compilation of great architecture and landscaping. A beautiful scene.", "album_id": "72157628033104348", "photo_flickr_id": "6392888245", "setting": "last-3-pick-old-and-tell", "worker_id": "V7TUYZAA7KBCJLI", "story_id": "48358", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now , it 's the end of the day . a compilation of great architecture and landscaping . a beautiful scene .", "storylet_id": "241794"}], [{"original_text": "The wheel was tall", "album_id": "72157628033104348", "photo_flickr_id": "6392828155", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48359", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wheel was tall", "storylet_id": "241795"}], [{"original_text": "and had a big ferris wheel.", "album_id": "72157628033104348", "photo_flickr_id": "6392866607", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48359", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and had a big ferris wheel .", "storylet_id": "241796"}], [{"original_text": "There was a light", "album_id": "72157628033104348", "photo_flickr_id": "6392871319", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48359", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a light", "storylet_id": "241797"}], [{"original_text": "and the people were filming", "album_id": "72157628033104348", "photo_flickr_id": "6392879089", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48359", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the people were filming", "storylet_id": "241798"}], [{"original_text": "near the garden.", "album_id": "72157628033104348", "photo_flickr_id": "6392888245", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48359", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "near the garden .", "storylet_id": "241799"}], [{"original_text": "There once was an artist who loved to work with food to create surrealist art.", "album_id": "72157623229321139", "photo_flickr_id": "4331678744", "setting": "first-2-pick-and-tell", "worker_id": "POFUUHAN36UAYXZ", "story_id": "48360", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there once was an artist who loved to work with food to create surrealist art .", "storylet_id": "241800"}], [{"original_text": "His work was admired by all of his peers, and one day his good friend encouraged him to open a gallery.", "album_id": "72157623229321139", "photo_flickr_id": "4331686112", "setting": "first-2-pick-and-tell", "worker_id": "POFUUHAN36UAYXZ", "story_id": "48360", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his work was admired by all of his peers , and one day his good friend encouraged him to open a gallery .", "storylet_id": "241801"}], [{"original_text": "So the artist got all of his best work, of which his favorite was death by dairy product.", "album_id": "72157623229321139", "photo_flickr_id": "4331676970", "setting": "first-2-pick-and-tell", "worker_id": "POFUUHAN36UAYXZ", "story_id": "48360", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so the artist got all of his best work , of which his favorite was death by dairy product .", "storylet_id": "241802"}], [{"original_text": "His second favorite piece was also on display showing the effects of overcooking.", "album_id": "72157623229321139", "photo_flickr_id": "4331680436", "setting": "first-2-pick-and-tell", "worker_id": "POFUUHAN36UAYXZ", "story_id": "48360", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his second favorite piece was also on display showing the effects of overcooking .", "storylet_id": "241803"}], [{"original_text": "On the night of the gallery opening it seems that the crowd favorite; however, seemed to be the video piece on food consumption.", "album_id": "72157623229321139", "photo_flickr_id": "4330951569", "setting": "first-2-pick-and-tell", "worker_id": "POFUUHAN36UAYXZ", "story_id": "48360", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the night of the gallery opening it seems that the crowd favorite ; however , seemed to be the video piece on food consumption .", "storylet_id": "241804"}], [{"original_text": "Museum display of a block of butter, knife, and jelly at the Massachusetts College of art and design. ", "album_id": "72157623229321139", "photo_flickr_id": "4331676970", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48361", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "museum display of a block of butter , knife , and jelly at the organization organization of art and design .", "storylet_id": "241805"}], [{"original_text": "Close up picture of the artwork. ", "album_id": "72157623229321139", "photo_flickr_id": "4330940567", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48361", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "close up picture of the artwork .", "storylet_id": "241806"}], [{"original_text": "Setting up second exhibition. ", "album_id": "72157623229321139", "photo_flickr_id": "4331678744", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48361", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "setting up second exhibition .", "storylet_id": "241807"}], [{"original_text": "Exhibition three, basket of lobster name the crown. ", "album_id": "72157623229321139", "photo_flickr_id": "4331680436", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48361", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "exhibition three , basket of lobster name the crown .", "storylet_id": "241808"}], [{"original_text": "Closeup realistic of two lobsters and claws. ", "album_id": "72157623229321139", "photo_flickr_id": "4330944241", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48361", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "closeup realistic of two lobsters and claws .", "storylet_id": "241809"}], [{"original_text": "Block of bloody cheese anyone? Just kidding but this is a rel work of art.", "album_id": "72157623229321139", "photo_flickr_id": "4331676970", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "48362", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "block of bloody cheese anyone ? just kidding but this is a rel work of art .", "storylet_id": "241810"}], [{"original_text": "Today i went to help my friend prepare for his art show and this is what i arrived to. I knew right away this would be interesting.", "album_id": "72157623229321139", "photo_flickr_id": "4330940567", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "48362", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today i went to help my friend prepare for his art show and this is what i arrived to . i knew right away this would be interesting .", "storylet_id": "241811"}], [{"original_text": "The part i helped with was placing yellow sticky notes under a piece of plastic.", "album_id": "72157623229321139", "photo_flickr_id": "4331678744", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "48362", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the part i helped with was placing yellow sticky notes under a piece of plastic .", "storylet_id": "241812"}], [{"original_text": "There were 2 interesting art pieces this is the first one.", "album_id": "72157623229321139", "photo_flickr_id": "4331680436", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "48362", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were 2 interesting art pieces this is the first one .", "storylet_id": "241813"}], [{"original_text": "This is the second a sort of lobster bird.All was as interesting as was thought to be.", "album_id": "72157623229321139", "photo_flickr_id": "4330944241", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "48362", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the second a sort of lobster bird.all was as interesting as was thought to be .", "storylet_id": "241814"}], [{"original_text": "It took a long time for me but I eventually finished making my cake.", "album_id": "72157623229321139", "photo_flickr_id": "4331676970", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48363", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it took a long time for me but i eventually finished making my cake .", "storylet_id": "241815"}], [{"original_text": "I put it up on a pedestal for everyone to see the work that I did.", "album_id": "72157623229321139", "photo_flickr_id": "4330940567", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48363", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i put it up on a pedestal for everyone to see the work that i did .", "storylet_id": "241816"}], [{"original_text": "I made a huge mess when trying to transport it.", "album_id": "72157623229321139", "photo_flickr_id": "4331678744", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48363", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i made a huge mess when trying to transport it .", "storylet_id": "241817"}], [{"original_text": "There were some other things that other people put up on their pedestals but I think my cake was better.", "album_id": "72157623229321139", "photo_flickr_id": "4331680436", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48363", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were some other things that other people put up on their pedestals but i think my cake was better .", "storylet_id": "241818"}], [{"original_text": "Some people put up a bunch of garbage.", "album_id": "72157623229321139", "photo_flickr_id": "4330944241", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48363", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people put up a bunch of garbage .", "storylet_id": "241819"}], [{"original_text": "Phil worked very hard for years on his art.", "album_id": "72157623229321139", "photo_flickr_id": "4331678744", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "48364", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] worked very hard for years on his art .", "storylet_id": "241820"}], [{"original_text": "It was the night of his first gallery show.", "album_id": "72157623229321139", "photo_flickr_id": "4331686112", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "48364", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was the night of his first gallery show .", "storylet_id": "241821"}], [{"original_text": "One of his pieces of art was cheese with blood flowing from it.", "album_id": "72157623229321139", "photo_flickr_id": "4331676970", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "48364", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of his pieces of art was cheese with blood flowing from it .", "storylet_id": "241822"}], [{"original_text": "He also made art that wasn't cheese based.", "album_id": "72157623229321139", "photo_flickr_id": "4331680436", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "48364", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he also made art that was n't cheese based .", "storylet_id": "241823"}], [{"original_text": "The gallery opened and people came in to judge the art.", "album_id": "72157623229321139", "photo_flickr_id": "4330951569", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "48364", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the gallery opened and people came in to judge the art .", "storylet_id": "241824"}], [{"original_text": "These beekeepers are busily working there hives.", "album_id": "72157626989753927", "photo_flickr_id": "5901458942", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48365", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these beekeepers are busily working there hives .", "storylet_id": "241825"}], [{"original_text": "They are checking the progress of the bees today making delicious honey.", "album_id": "72157626989753927", "photo_flickr_id": "5900883575", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48365", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are checking the progress of the bees today making delicious honey .", "storylet_id": "241826"}], [{"original_text": "This beekeeper shows us one of the honeycombs the bees are filling up.", "album_id": "72157626989753927", "photo_flickr_id": "5901446736", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48365", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this beekeeper shows us one of the honeycombs the bees are filling up .", "storylet_id": "241827"}], [{"original_text": "The bees don\u00c3\u00a2\u00e2\u201a\u00ac\u00e2\u201e\u00a2t pay us any mind as they go about their work.", "album_id": "72157626989753927", "photo_flickr_id": "5901448250", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48365", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bees don\u00c3\u0192\u00c2\u00a2\u00c3\u00a2\u00e2\u20ac\u0161\u00c2\u00ac\u00c3\u00a2\u00e2\u20ac\u017e\u00c2\u00a2t pay us any mind as they go about their work .", "storylet_id": "241828"}], [{"original_text": "They come back periodically to deposit their nectar.", "album_id": "72157626989753927", "photo_flickr_id": "5900897985", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48365", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they come back periodically to deposit their nectar .", "storylet_id": "241829"}], [{"original_text": "This is my first time as a bee catcher", "album_id": "72157626989753927", "photo_flickr_id": "5901446736", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48366", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my first time as a bee catcher", "storylet_id": "241830"}], [{"original_text": "I worked intently to get them inside the homemade hives ", "album_id": "72157626989753927", "photo_flickr_id": "5900883575", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48366", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i worked intently to get them inside the homemade hives", "storylet_id": "241831"}], [{"original_text": "I had to be very careful as to not get stung ", "album_id": "72157626989753927", "photo_flickr_id": "5901447802", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48366", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had to be very careful as to not get stung", "storylet_id": "241832"}], [{"original_text": "Look at all those queen bees ", "album_id": "72157626989753927", "photo_flickr_id": "5900886757", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48366", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look at all those queen bees", "storylet_id": "241833"}], [{"original_text": "We had succeeded and then started another hive", "album_id": "72157626989753927", "photo_flickr_id": "5900893251", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48366", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had succeeded and then started another hive", "storylet_id": "241834"}], [{"original_text": "The beekeepers all gathered around the bees.", "album_id": "72157626989753927", "photo_flickr_id": "5901458942", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "48367", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beekeepers all gathered around the bees .", "storylet_id": "241835"}], [{"original_text": "They took them out of their hive.", "album_id": "72157626989753927", "photo_flickr_id": "5900883575", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "48367", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took them out of their hive .", "storylet_id": "241836"}], [{"original_text": "The bees all clung to the honeycomb sheets.", "album_id": "72157626989753927", "photo_flickr_id": "5901446736", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "48367", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bees all clung to the honeycomb sheets .", "storylet_id": "241837"}], [{"original_text": "There were so many of them!", "album_id": "72157626989753927", "photo_flickr_id": "5901448250", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "48367", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were so many of them !", "storylet_id": "241838"}], [{"original_text": "Some bees flew away but the beekeepers did not worry because they knew they would always come back home.", "album_id": "72157626989753927", "photo_flickr_id": "5900897985", "setting": "last-3-pick-old-and-tell", "worker_id": "RAGP2E7BBW5MUNR", "story_id": "48367", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some bees flew away but the beekeepers did not worry because they knew they would always come back home .", "storylet_id": "241839"}], [{"original_text": "Don is a bee keeper.", "album_id": "72157626989753927", "photo_flickr_id": "5901446736", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "48368", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is a bee keeper .", "storylet_id": "241840"}], [{"original_text": "He collected 5000 bees with his two sons.", "album_id": "72157626989753927", "photo_flickr_id": "5900883575", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "48368", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he collected 5000 bees with his two sons .", "storylet_id": "241841"}], [{"original_text": "They have a thriving honey operation.", "album_id": "72157626989753927", "photo_flickr_id": "5901447802", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "48368", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they have a thriving honey operation .", "storylet_id": "241842"}], [{"original_text": "Their bees produce top quality honey.", "album_id": "72157626989753927", "photo_flickr_id": "5900886757", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "48368", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their bees produce top quality honey .", "storylet_id": "241843"}], [{"original_text": "They have their bee keeper friends over often to keep bees.", "album_id": "72157626989753927", "photo_flickr_id": "5900893251", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "48368", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they have their bee keeper friends over often to keep bees .", "storylet_id": "241844"}], [{"original_text": "The bee team was hard at work today.", "album_id": "72157626989753927", "photo_flickr_id": "5901458942", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48369", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bee team was hard at work today .", "storylet_id": "241845"}], [{"original_text": "Steven caught a whole tray of bees.", "album_id": "72157626989753927", "photo_flickr_id": "5900883575", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48369", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] caught a whole tray of bees .", "storylet_id": "241846"}], [{"original_text": "There must have been thousands of them.", "album_id": "72157626989753927", "photo_flickr_id": "5901446736", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48369", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there must have been thousands of them .", "storylet_id": "241847"}], [{"original_text": "They produced a lot of honey.", "album_id": "72157626989753927", "photo_flickr_id": "5901448250", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48369", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they produced a lot of honey .", "storylet_id": "241848"}], [{"original_text": "Some of the bees tried to run away from the ranch. ", "album_id": "72157626989753927", "photo_flickr_id": "5900897985", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48369", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the bees tried to run away from the ranch .", "storylet_id": "241849"}], [{"original_text": "The three saw the most attractive balls they had ever seen.", "album_id": "72157624067292822", "photo_flickr_id": "4610008512", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "48370", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the three saw the most attractive balls they had ever seen .", "storylet_id": "241850"}], [{"original_text": "Brandon decided to demonstrate his strength using the orange ball.", "album_id": "72157624067292822", "photo_flickr_id": "4610004458", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "48370", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] decided to demonstrate his strength using the orange ball .", "storylet_id": "241851"}], [{"original_text": "Sarah was holding the balls like she owned them, but eventually offered to share them with Jen. ", "album_id": "72157624067292822", "photo_flickr_id": "4609398093", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "48370", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] was holding the balls like she owned them , but eventually offered to share them with jen .", "storylet_id": "241852"}], [{"original_text": "Jen refused to give the balls back.", "album_id": "72157624067292822", "photo_flickr_id": "4609394025", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "48370", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "jen refused to give the balls back .", "storylet_id": "241853"}], [{"original_text": "Sarah was mad that Jen stole the balls and attacked Jen. ", "album_id": "72157624067292822", "photo_flickr_id": "4609997874", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "48370", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] was mad that jen stole the balls and attacked jen .", "storylet_id": "241854"}], [{"original_text": "the girls haven't seen each other in a few months", "album_id": "72157624067292822", "photo_flickr_id": "4609993868", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48371", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girls have n't seen each other in a few months", "storylet_id": "241855"}], [{"original_text": "so they went to the park", "album_id": "72157624067292822", "photo_flickr_id": "4609995844", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48371", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so they went to the park", "storylet_id": "241856"}], [{"original_text": "it was a fun day", "album_id": "72157624067292822", "photo_flickr_id": "4609997874", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48371", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a fun day", "storylet_id": "241857"}], [{"original_text": "they played lawn bowling", "album_id": "72157624067292822", "photo_flickr_id": "4609402943", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48371", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they played lawn bowling", "storylet_id": "241858"}], [{"original_text": "and compared muscles with each other", "album_id": "72157624067292822", "photo_flickr_id": "4609416053", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48371", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and compared muscles with each other", "storylet_id": "241859"}], [{"original_text": "We went to the park together to play.", "album_id": "72157624067292822", "photo_flickr_id": "4610008512", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48372", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the park together to play .", "storylet_id": "241860"}], [{"original_text": "Tom was very good at throwing the balls a far distance.", "album_id": "72157624067292822", "photo_flickr_id": "4610004458", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48372", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was very good at throwing the balls a far distance .", "storylet_id": "241861"}], [{"original_text": "Jane just posed with them.", "album_id": "72157624067292822", "photo_flickr_id": "4609398093", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48372", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] just posed with them .", "storylet_id": "241862"}], [{"original_text": "Ellen held on to them before her turn to throw them.", "album_id": "72157624067292822", "photo_flickr_id": "4609394025", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48372", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] held on to them before her turn to throw them .", "storylet_id": "241863"}], [{"original_text": "Then we decided to sit down for a picnic.", "album_id": "72157624067292822", "photo_flickr_id": "4609997874", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48372", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we decided to sit down for a picnic .", "storylet_id": "241864"}], [{"original_text": "These girls are looking forward to a day the park.", "album_id": "72157624067292822", "photo_flickr_id": "4609993868", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48373", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these girls are looking forward to a day the park .", "storylet_id": "241865"}], [{"original_text": "Stretched out in the sunshine for little relaxation, well deserved.", "album_id": "72157624067292822", "photo_flickr_id": "4609995844", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48373", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "stretched out in the sunshine for little relaxation , well deserved .", "storylet_id": "241866"}], [{"original_text": "The girls engage in a little wrestling match, all in good fun.", "album_id": "72157624067292822", "photo_flickr_id": "4609997874", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48373", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girls engage in a little wrestling match , all in good fun .", "storylet_id": "241867"}], [{"original_text": "She does a little stretching to loosen up.", "album_id": "72157624067292822", "photo_flickr_id": "4609402943", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48373", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she does a little stretching to loosen up .", "storylet_id": "241868"}], [{"original_text": "The girls compare biceps to see who has the bigger muscles.", "album_id": "72157624067292822", "photo_flickr_id": "4609416053", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48373", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girls compare biceps to see who has the bigger muscles .", "storylet_id": "241869"}], [{"original_text": "The group of friends decided to go out on a hot day. They wanted to work out at the local park.", "album_id": "72157624067292822", "photo_flickr_id": "4609993868", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48374", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group of friends decided to go out on a hot day . they wanted to work out at the local park .", "storylet_id": "241870"}], [{"original_text": "Both of the girls were fans of working out. They decided to have a picnic at a nearby park as well.", "album_id": "72157624067292822", "photo_flickr_id": "4609995844", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48374", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "both of the girls were fans of working out . they decided to have a picnic at a nearby park as well .", "storylet_id": "241871"}], [{"original_text": "The friends had a lot of fun working out. They also got to spend some intimate time together.", "album_id": "72157624067292822", "photo_flickr_id": "4609997874", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48374", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the friends had a lot of fun working out . they also got to spend some intimate time together .", "storylet_id": "241872"}], [{"original_text": "The practiced various stretching exercising and yoga. It was relaxing and fun.", "album_id": "72157624067292822", "photo_flickr_id": "4609402943", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48374", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the practiced various stretching exercising and yoga . it was relaxing and fun .", "storylet_id": "241873"}], [{"original_text": "At the end of the day the exercises really gave them a good workout. It was a fun and productive day.", "album_id": "72157624067292822", "photo_flickr_id": "4609416053", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48374", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day the exercises really gave them a good workout . it was a fun and productive day .", "storylet_id": "241874"}], [{"original_text": "I was off work this weekend so I decided to attend the local car show.", "album_id": "72157628295941191", "photo_flickr_id": "6462092707", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "48375", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was off work this weekend so i decided to attend the local car show .", "storylet_id": "241875"}], [{"original_text": "There was a huge variety of cars.", "album_id": "72157628295941191", "photo_flickr_id": "6462095753", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "48375", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a huge variety of cars .", "storylet_id": "241876"}], [{"original_text": "I was able to check under the hood with this one.", "album_id": "72157628295941191", "photo_flickr_id": "6462093329", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "48375", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was able to check under the hood with this one .", "storylet_id": "241877"}], [{"original_text": "I fell in love with this one.", "album_id": "72157628295941191", "photo_flickr_id": "6462098595", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "48375", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i fell in love with this one .", "storylet_id": "241878"}], [{"original_text": "I would love the chance to drive this car, but I know it won't happen. I'm just happy that I was able to attend the car show.", "album_id": "72157628295941191", "photo_flickr_id": "6462103235", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "48375", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i would love the chance to drive this car , but i know it wo n't happen . i 'm just happy that i was able to attend the car show .", "storylet_id": "241879"}], [{"original_text": "There were many cans of gasoline stored.", "album_id": "72157628295941191", "photo_flickr_id": "6462088395", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48376", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many cans of gasoline stored .", "storylet_id": "241880"}], [{"original_text": "These two men wore very interesting shirts.", "album_id": "72157628295941191", "photo_flickr_id": "6462091217", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48376", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these two men wore very interesting shirts .", "storylet_id": "241881"}], [{"original_text": "We decided to observe the televisions.", "album_id": "72157628295941191", "photo_flickr_id": "6462100717", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48376", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we decided to observe the televisions .", "storylet_id": "241882"}], [{"original_text": "The orange car arrived in excellent condition. ", "album_id": "72157628295941191", "photo_flickr_id": "6462103235", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48376", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the orange car arrived in excellent condition .", "storylet_id": "241883"}], [{"original_text": "Together, we made the plane for the next event.", "album_id": "72157628295941191", "photo_flickr_id": "6462106083", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48376", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "together , we made the plane for the next event .", "storylet_id": "241884"}], [{"original_text": "We went to an auto show today.", "album_id": "72157628295941191", "photo_flickr_id": "6462092707", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "48377", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to an auto show today .", "storylet_id": "241885"}], [{"original_text": "We saw many amazing cars.", "album_id": "72157628295941191", "photo_flickr_id": "6462095753", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "48377", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw many amazing cars .", "storylet_id": "241886"}], [{"original_text": "We saw cars that had hoods that went up in a weird way.", "album_id": "72157628295941191", "photo_flickr_id": "6462093329", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "48377", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw cars that had hoods that went up in a weird way .", "storylet_id": "241887"}], [{"original_text": "We even saw many race cars.", "album_id": "72157628295941191", "photo_flickr_id": "6462098595", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "48377", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even saw many race cars .", "storylet_id": "241888"}], [{"original_text": "We saw cars that were old and antique as well.", "album_id": "72157628295941191", "photo_flickr_id": "6462103235", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "48377", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we saw cars that were old and antique as well .", "storylet_id": "241889"}], [{"original_text": "Being in the pit at a race is exciting.", "album_id": "72157628295941191", "photo_flickr_id": "6462088395", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48378", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "being in the pit at a race is exciting .", "storylet_id": "241890"}], [{"original_text": "The guys got a couple of official shirts from the race team.", "album_id": "72157628295941191", "photo_flickr_id": "6462091217", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48378", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guys got a couple of official shirts from the race team .", "storylet_id": "241891"}], [{"original_text": "We got to watch a movie about the sport.", "album_id": "72157628295941191", "photo_flickr_id": "6462100717", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48378", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got to watch a movie about the sport .", "storylet_id": "241892"}], [{"original_text": "The cars were so pretty!", "album_id": "72157628295941191", "photo_flickr_id": "6462103235", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48378", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cars were so pretty !", "storylet_id": "241893"}], [{"original_text": "It was nice hanging out with the officials.", "album_id": "72157628295941191", "photo_flickr_id": "6462106083", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48378", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was nice hanging out with the officials .", "storylet_id": "241894"}], [{"original_text": "At the car expo, there were a number of different vendors, each with their own make and model to display.", "album_id": "72157628295941191", "photo_flickr_id": "6462092707", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48379", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the car expo , there were a number of different vendors , each with their own make and model to display .", "storylet_id": "241895"}], [{"original_text": "One of the cars, an orange muscle car seemed notable especially because of the design of the bumper.", "album_id": "72157628295941191", "photo_flickr_id": "6462095753", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48379", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of the cars , an orange muscle car seemed notable especially because of the design of the bumper .", "storylet_id": "241896"}], [{"original_text": "Other cars were designed off of classic roadsters, but were modern in the design and technological implementation. ", "album_id": "72157628295941191", "photo_flickr_id": "6462093329", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48379", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other cars were designed off of classic roadsters , but were modern in the design and technological implementation .", "storylet_id": "241897"}], [{"original_text": "Towards the back of the expo floor there was even a race car, complete with some of the items from the pit.", "album_id": "72157628295941191", "photo_flickr_id": "6462098595", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48379", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "towards the back of the expo floor there was even a race car , complete with some of the items from the pit .", "storylet_id": "241898"}], [{"original_text": "Another race car was notable because of the 70s like design that covered it. ", "album_id": "72157628295941191", "photo_flickr_id": "6462103235", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48379", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "another race car was notable because of the 70s like design that covered it .", "storylet_id": "241899"}], [{"original_text": "In the day time, there weren't many cars on the road. ", "album_id": "72157626778373335", "photo_flickr_id": "5805904377", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48380", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the day time , there were n't many cars on the road .", "storylet_id": "241900"}], [{"original_text": "We used the bridge to get closer to our home. ", "album_id": "72157626778373335", "photo_flickr_id": "5806469750", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48380", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we used the bridge to get closer to our home .", "storylet_id": "241901"}], [{"original_text": "When we got home, we noticed the room was barren and dry.", "album_id": "72157626778373335", "photo_flickr_id": "5805907303", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48380", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we got home , we noticed the room was barren and dry .", "storylet_id": "241902"}], [{"original_text": "The buildings were very tall in comparison to me.", "album_id": "72157626778373335", "photo_flickr_id": "5805912431", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48380", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the buildings were very tall in comparison to me .", "storylet_id": "241903"}], [{"original_text": "Inside the buildings was cluttered and dimly lit.", "album_id": "72157626778373335", "photo_flickr_id": "5805935457", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48380", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "inside the buildings was cluttered and dimly lit .", "storylet_id": "241904"}], [{"original_text": "When we arrived at the small town, we were ready to explore and enjoy the sights.", "album_id": "72157626778373335", "photo_flickr_id": "5805904377", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48381", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when we arrived at the small town , we were ready to explore and enjoy the sights .", "storylet_id": "241905"}], [{"original_text": "So many old and interesting buildings, we just didn\u00c3\u00a2\u00e2\u201a\u00ac\u00e2\u201e\u00a2t know where to start.", "album_id": "72157626778373335", "photo_flickr_id": "5805908895", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48381", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so many old and interesting buildings , we just didn\u00c3\u0192\u00c2\u00a2\u00c3\u00a2\u00e2\u20ac\u0161\u00c2\u00ac\u00c3\u00a2\u00e2\u20ac\u017e\u00c2\u00a2t know where to start .", "storylet_id": "241906"}], [{"original_text": "I wonder what\u00c3\u00a2\u00e2\u201a\u00ac\u00e2\u201e\u00a2s down this street? I hope lots of little shops, since I love to shop.", "album_id": "72157626778373335", "photo_flickr_id": "5805925393", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48381", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i wonder what\u00c3\u0192\u00c2\u00a2\u00c3\u00a2\u00e2\u20ac\u0161\u00c2\u00ac\u00c3\u00a2\u00e2\u20ac\u017e\u00c2\u00a2s down this street ? i hope lots of little shops , since i love to shop .", "storylet_id": "241907"}], [{"original_text": "We found this old church, I bet it\u00c3\u00a2\u00e2\u201a\u00ac\u00e2\u201e\u00a2s been here for hundreds of years.", "album_id": "72157626778373335", "photo_flickr_id": "5806478022", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48381", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found this old church , i bet it\u00c3\u0192\u00c2\u00a2\u00c3\u00a2\u00e2\u20ac\u0161\u00c2\u00ac\u00c3\u00a2\u00e2\u20ac\u017e\u00c2\u00a2s been here for hundreds of years .", "storylet_id": "241908"}], [{"original_text": "Such a beautiful day and I\u00c3\u00a2\u00e2\u201a\u00ac\u00e2\u201e\u00a2m enjoying so much, all the sights to see.", "album_id": "72157626778373335", "photo_flickr_id": "5805912431", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48381", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "such a beautiful day and i\u00c3\u0192\u00c2\u00a2\u00c3\u00a2\u00e2\u20ac\u0161\u00c2\u00ac\u00c3\u00a2\u00e2\u20ac\u017e\u00c2\u00a2m enjoying so much , all the sights to see .", "storylet_id": "241909"}], [{"original_text": "We drove our car to the city.", "album_id": "72157626778373335", "photo_flickr_id": "5805904377", "setting": "last-3-pick-old-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "48382", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we drove our car to the city .", "storylet_id": "241910"}], [{"original_text": "The bridge was a long ride.", "album_id": "72157626778373335", "photo_flickr_id": "5806469750", "setting": "last-3-pick-old-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "48382", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bridge was a long ride .", "storylet_id": "241911"}], [{"original_text": "The roof was very well made.", "album_id": "72157626778373335", "photo_flickr_id": "5805907303", "setting": "last-3-pick-old-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "48382", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the roof was very well made .", "storylet_id": "241912"}], [{"original_text": "This monument was the grandest I have ever seen.", "album_id": "72157626778373335", "photo_flickr_id": "5805912431", "setting": "last-3-pick-old-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "48382", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this monument was the grandest i have ever seen .", "storylet_id": "241913"}], [{"original_text": "We finally got there.", "album_id": "72157626778373335", "photo_flickr_id": "5805935457", "setting": "last-3-pick-old-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "48382", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finally got there .", "storylet_id": "241914"}], [{"original_text": "This is a picture of a road.", "album_id": "72157626778373335", "photo_flickr_id": "5805904377", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48383", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a road .", "storylet_id": "241915"}], [{"original_text": "This is a picture of a bridge.", "album_id": "72157626778373335", "photo_flickr_id": "5806469750", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48383", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a bridge .", "storylet_id": "241916"}], [{"original_text": "This is a picture of a building.", "album_id": "72157626778373335", "photo_flickr_id": "5805907303", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48383", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of a building .", "storylet_id": "241917"}], [{"original_text": "This is a picture of a sunny day.", "album_id": "72157626778373335", "photo_flickr_id": "5805912431", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48383", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of a sunny day .", "storylet_id": "241918"}], [{"original_text": "This is a picture of a dark room.", "album_id": "72157626778373335", "photo_flickr_id": "5805935457", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48383", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a dark room .", "storylet_id": "241919"}], [{"original_text": "The street only had a few people on it.", "album_id": "72157626778373335", "photo_flickr_id": "5805904377", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48384", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the street only had a few people on it .", "storylet_id": "241920"}], [{"original_text": "A bridge sat in silence as I crossed it.", "album_id": "72157626778373335", "photo_flickr_id": "5806469750", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48384", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a bridge sat in silence as i crossed it .", "storylet_id": "241921"}], [{"original_text": "Some of the roofing looked very old.", "album_id": "72157626778373335", "photo_flickr_id": "5805907303", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48384", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the roofing looked very old .", "storylet_id": "241922"}], [{"original_text": "The church sat nicely against the blue sky.", "album_id": "72157626778373335", "photo_flickr_id": "5805912431", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48384", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the church sat nicely against the blue sky .", "storylet_id": "241923"}], [{"original_text": "I slept very well after touring the city. ", "album_id": "72157626778373335", "photo_flickr_id": "5805935457", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48384", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i slept very well after touring the city .", "storylet_id": "241924"}], [{"original_text": "The donkey woke up early to drink water.", "album_id": "72157624434518516", "photo_flickr_id": "4767700264", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48385", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the donkey woke up early to drink water .", "storylet_id": "241925"}], [{"original_text": "Most of my family members visited my farm on that day.", "album_id": "72157624434518516", "photo_flickr_id": "4767063007", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48385", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "most of my family members visited my farm on that day .", "storylet_id": "241926"}], [{"original_text": "My dad even came to pet my donkey.", "album_id": "72157624434518516", "photo_flickr_id": "4767707262", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48385", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my dad even came to pet my donkey .", "storylet_id": "241927"}], [{"original_text": "We formed a long line and walked in circles.", "album_id": "72157624434518516", "photo_flickr_id": "4767086431", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48385", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we formed a long line and walked in circles .", "storylet_id": "241928"}], [{"original_text": "The donkey appeared to have a great time.", "album_id": "72157624434518516", "photo_flickr_id": "4767057545", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48385", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the donkey appeared to have a great time .", "storylet_id": "241929"}], [{"original_text": "Many people showed up at the ranch today.", "album_id": "72157624434518516", "photo_flickr_id": "4767063007", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48386", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people showed up at the ranch today .", "storylet_id": "241930"}], [{"original_text": "Everyone was very excited to see the donkeys.", "album_id": "72157624434518516", "photo_flickr_id": "4767064377", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48386", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was very excited to see the donkeys .", "storylet_id": "241931"}], [{"original_text": "After everyone got there, many people walked the donkeys together.", "album_id": "72157624434518516", "photo_flickr_id": "4767685986", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48386", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after everyone got there , many people walked the donkeys together .", "storylet_id": "241932"}], [{"original_text": "Grandma even got her picture taken with one of the donkeys.", "album_id": "72157624434518516", "photo_flickr_id": "4767706020", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48386", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandma even got her picture taken with one of the donkeys .", "storylet_id": "241933"}], [{"original_text": "Grandpa got to walk a donkey outside before we left.", "album_id": "72157624434518516", "photo_flickr_id": "4767707262", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48386", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandpa got to walk a donkey outside before we left .", "storylet_id": "241934"}], [{"original_text": "During the summer, the family decided to visit our family in Texas.", "album_id": "72157624434518516", "photo_flickr_id": "4767063007", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "48387", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during the summer , the family decided to visit our family in location .", "storylet_id": "241935"}], [{"original_text": "We visited some relatives who live on a ranch. ", "album_id": "72157624434518516", "photo_flickr_id": "4767064377", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "48387", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we visited some relatives who live on a ranch .", "storylet_id": "241936"}], [{"original_text": "Our relatives nourish donkeys who are ill.", "album_id": "72157624434518516", "photo_flickr_id": "4767685986", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "48387", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our relatives nourish donkeys who are ill .", "storylet_id": "241937"}], [{"original_text": "We took a few pictures of our relatives checking the animals. They do this weekly to make sure the donkeys are in good health.", "album_id": "72157624434518516", "photo_flickr_id": "4767706020", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "48387", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a few pictures of our relatives checking the animals . they do this weekly to make sure the donkeys are in good health .", "storylet_id": "241938"}], [{"original_text": "At the end of the day, we met a donkey that was more than 10 years old. ", "album_id": "72157624434518516", "photo_flickr_id": "4767707262", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "48387", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , we met a donkey that was more than 10 years old .", "storylet_id": "241939"}], [{"original_text": "This is a picture of an animal.", "album_id": "72157624434518516", "photo_flickr_id": "4767700264", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48388", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of an animal .", "storylet_id": "241940"}], [{"original_text": "This is a picture of a group of people.", "album_id": "72157624434518516", "photo_flickr_id": "4767063007", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48388", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a group of people .", "storylet_id": "241941"}], [{"original_text": "This is a picture of a man.", "album_id": "72157624434518516", "photo_flickr_id": "4767707262", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48388", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of a man .", "storylet_id": "241942"}], [{"original_text": "This is a picture of the outdoors.", "album_id": "72157624434518516", "photo_flickr_id": "4767086431", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48388", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of the outdoors .", "storylet_id": "241943"}], [{"original_text": "This is a picture of a donkey.", "album_id": "72157624434518516", "photo_flickr_id": "4767057545", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48388", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a donkey .", "storylet_id": "241944"}], [{"original_text": "We got to a petting zoo.", "album_id": "72157624434518516", "photo_flickr_id": "4767700264", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48389", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got to a petting zoo .", "storylet_id": "241945"}], [{"original_text": " this is the whole family enjoying the petting zoo.", "album_id": "72157624434518516", "photo_flickr_id": "4767063007", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48389", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the whole family enjoying the petting zoo .", "storylet_id": "241946"}], [{"original_text": "Paul excited to be here", "album_id": "72157624434518516", "photo_flickr_id": "4767707262", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48389", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] excited to be here", "storylet_id": "241947"}], [{"original_text": "We get to walk with the donkey.", "album_id": "72157624434518516", "photo_flickr_id": "4767086431", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48389", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we get to walk with the donkey .", "storylet_id": "241948"}], [{"original_text": " We say goodbye to our new friend. Until next time", "album_id": "72157624434518516", "photo_flickr_id": "4767057545", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48389", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we say goodbye to our new friend . until next time", "storylet_id": "241949"}], [{"original_text": "The village was muddy and unpaved.", "album_id": "72157624437275314", "photo_flickr_id": "4768349865", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48390", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the village was muddy and unpaved .", "storylet_id": "241950"}], [{"original_text": "The children were very grateful for the attention received.", "album_id": "72157624437275314", "photo_flickr_id": "4768349805", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48390", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children were very grateful for the attention received .", "storylet_id": "241951"}], [{"original_text": "One child was very handy with the bike.", "album_id": "72157624437275314", "photo_flickr_id": "4768987234", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48390", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one child was very handy with the bike .", "storylet_id": "241952"}], [{"original_text": "One of the camp leaders all read books to the group of children. ", "album_id": "72157624437275314", "photo_flickr_id": "4768987282", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48390", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the camp leaders all read books to the group of children .", "storylet_id": "241953"}], [{"original_text": "Another leader taught about the details of the operation.", "album_id": "72157624437275314", "photo_flickr_id": "4768349783", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48390", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "another leader taught about the details of the operation .", "storylet_id": "241954"}], [{"original_text": "An advocate for African American youth attends a fundraiser.", "album_id": "72157624437275314", "photo_flickr_id": "4768349783", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48391", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an advocate for african american youth attends a fundraiser .", "storylet_id": "241955"}], [{"original_text": "Many of the little girls that she's promoting are jumping rope.", "album_id": "72157624437275314", "photo_flickr_id": "4768987148", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48391", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of the little girls that she 's promoting are jumping rope .", "storylet_id": "241956"}], [{"original_text": "The children are very happy that the advocates have come to visit them.", "album_id": "72157624437275314", "photo_flickr_id": "4768349805", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48391", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the children are very happy that the advocates have come to visit them .", "storylet_id": "241957"}], [{"original_text": "A little girl even receives a new bicycle.", "album_id": "72157624437275314", "photo_flickr_id": "4768987234", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48391", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a little girl even receives a new bicycle .", "storylet_id": "241958"}], [{"original_text": "All of the children say goodbye and give hugs to the kind people who support them.", "album_id": "72157624437275314", "photo_flickr_id": "4768987298", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48391", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of the children say goodbye and give hugs to the kind people who support them .", "storylet_id": "241959"}], [{"original_text": "Lady taking pictures with her students at their learning center.", "album_id": "72157624437275314", "photo_flickr_id": "4768349783", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "48392", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "lady taking pictures with her students at their learning center .", "storylet_id": "241960"}], [{"original_text": "Kids outside dancing and playing jump-rope.", "album_id": "72157624437275314", "photo_flickr_id": "4768987148", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "48392", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "kids outside dancing and playing jump-rope .", "storylet_id": "241961"}], [{"original_text": "Then they stop and have story time with the kids.", "album_id": "72157624437275314", "photo_flickr_id": "4768349805", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "48392", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they stop and have story time with the kids .", "storylet_id": "241962"}], [{"original_text": "Some kids play with they bikes and some are playing over objects.", "album_id": "72157624437275314", "photo_flickr_id": "4768987234", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "48392", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some kids play with they bikes and some are playing over objects .", "storylet_id": "241963"}], [{"original_text": "Now all the kids are grabbing each other and following a man.", "album_id": "72157624437275314", "photo_flickr_id": "4768987298", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "48392", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now all the kids are grabbing each other and following a man .", "storylet_id": "241964"}], [{"original_text": "The teacher posed happily as she taught the students.", "album_id": "72157624437275314", "photo_flickr_id": "4768349783", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "48393", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the teacher posed happily as she taught the students .", "storylet_id": "241965"}], [{"original_text": "The school girls played jump rope during recess. ", "album_id": "72157624437275314", "photo_flickr_id": "4768987148", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "48393", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the school girls played jump rope during recess .", "storylet_id": "241966"}], [{"original_text": "The man taught the younger boy a song using his hands. ", "album_id": "72157624437275314", "photo_flickr_id": "4768349805", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "48393", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man taught the younger boy a song using his hands .", "storylet_id": "241967"}], [{"original_text": "The young girl liked her shiny red bike.", "album_id": "72157624437275314", "photo_flickr_id": "4768987234", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "48393", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the young girl liked her shiny red bike .", "storylet_id": "241968"}], [{"original_text": "The small children all formed a line to play a game.", "album_id": "72157624437275314", "photo_flickr_id": "4768987298", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "48393", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the small children all formed a line to play a game .", "storylet_id": "241969"}], [{"original_text": "There were people around", "album_id": "72157624437275314", "photo_flickr_id": "4768349865", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48394", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were people around", "storylet_id": "241970"}], [{"original_text": "and they showed the boys things.", "album_id": "72157624437275314", "photo_flickr_id": "4768349805", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48394", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and they showed the boys things .", "storylet_id": "241971"}], [{"original_text": "The girl was happy", "album_id": "72157624437275314", "photo_flickr_id": "4768987234", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48394", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girl was happy", "storylet_id": "241972"}], [{"original_text": "that she saw the things", "album_id": "72157624437275314", "photo_flickr_id": "4768987282", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48394", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that she saw the things", "storylet_id": "241973"}], [{"original_text": "and she gave an interview.", "album_id": "72157624437275314", "photo_flickr_id": "4768349783", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48394", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and she gave an interview .", "storylet_id": "241974"}], [{"original_text": "At the annual Stone Soup festival, everyone brings ingredients to add to the stone soup.", "album_id": "72157626582851995", "photo_flickr_id": "5698417550", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48395", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the annual stone soup festival , everyone brings ingredients to add to the stone soup .", "storylet_id": "241975"}], [{"original_text": "This man brings sprouts, a source of vitamin C.", "album_id": "72157626582851995", "photo_flickr_id": "5697848519", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48395", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this man brings sprouts , a source of vitamin c .", "storylet_id": "241976"}], [{"original_text": "This couple brought vegetables fresh from their garden.", "album_id": "72157626582851995", "photo_flickr_id": "5698427664", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48395", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this couple brought vegetables fresh from their garden .", "storylet_id": "241977"}], [{"original_text": "These ladies found a Golden Ticket, which gave them free admission to Stone Soup.", "album_id": "72157626582851995", "photo_flickr_id": "5697887413", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48395", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these ladies found a golden ticket , which gave them free admission to organization organization .", "storylet_id": "241978"}], [{"original_text": "These kids share their stone soup from a big orange bowl.", "album_id": "72157626582851995", "photo_flickr_id": "5697892207", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48395", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these kids share their stone soup from a big orange bowl .", "storylet_id": "241979"}], [{"original_text": "We arrived at the festival looking forward to an enjoyable day.", "album_id": "72157626582851995", "photo_flickr_id": "5698417550", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48396", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at the festival looking forward to an enjoyable day .", "storylet_id": "241980"}], [{"original_text": "This man had an interesting display of grass for the lawn.", "album_id": "72157626582851995", "photo_flickr_id": "5697848519", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48396", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this man had an interesting display of grass for the lawn .", "storylet_id": "241981"}], [{"original_text": "George wanted to be sure and enter the contest, maybe he will get lucky.", "album_id": "72157626582851995", "photo_flickr_id": "5697861253", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48396", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] wanted to be sure and enter the contest , maybe he will get lucky .", "storylet_id": "241982"}], [{"original_text": "These ladies wanted to show the programs they signed up for a good cause.", "album_id": "72157626582851995", "photo_flickr_id": "5697887413", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48396", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these ladies wanted to show the programs they signed up for a good cause .", "storylet_id": "241983"}], [{"original_text": "Paul and Jane picked up some plants that will go nicely in their yard.", "album_id": "72157626582851995", "photo_flickr_id": "5698427664", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48396", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] and [female] picked up some plants that will go nicely in their yard .", "storylet_id": "241984"}], [{"original_text": "This is a picture of a crowd.", "album_id": "72157626582851995", "photo_flickr_id": "5698417550", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48397", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a crowd .", "storylet_id": "241985"}], [{"original_text": "This is a picture of a man.", "album_id": "72157626582851995", "photo_flickr_id": "5697848519", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48397", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a man .", "storylet_id": "241986"}], [{"original_text": "This is a picture of a man wearing glasses.", "album_id": "72157626582851995", "photo_flickr_id": "5697861253", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48397", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of a man wearing glasses .", "storylet_id": "241987"}], [{"original_text": "This is a picture of two women.", "album_id": "72157626582851995", "photo_flickr_id": "5697887413", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48397", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of two women .", "storylet_id": "241988"}], [{"original_text": "This is a picture of two people.", "album_id": "72157626582851995", "photo_flickr_id": "5698427664", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48397", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of two people .", "storylet_id": "241989"}], [{"original_text": "We went to the stone soup festival.", "album_id": "72157626582851995", "photo_flickr_id": "5698417550", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48398", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the stone soup festival .", "storylet_id": "241990"}], [{"original_text": "The man showcased his items.", "album_id": "72157626582851995", "photo_flickr_id": "5697848519", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48398", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man showcased his items .", "storylet_id": "241991"}], [{"original_text": "This couple bought a plant.", "album_id": "72157626582851995", "photo_flickr_id": "5698427664", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48398", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this couple bought a plant .", "storylet_id": "241992"}], [{"original_text": "These two showed pieces of paper.", "album_id": "72157626582851995", "photo_flickr_id": "5697887413", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48398", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these two showed pieces of paper .", "storylet_id": "241993"}], [{"original_text": "Lastly, a group of friends are seen making soup.", "album_id": "72157626582851995", "photo_flickr_id": "5697892207", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48398", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , a group of friends are seen making soup .", "storylet_id": "241994"}], [{"original_text": "Even though the sky seemed cloudy, with a chance of drizzle, the attendants were eager to start exploring the festival. ", "album_id": "72157626582851995", "photo_flickr_id": "5698417550", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48399", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "even though the sky seemed cloudy , with a chance of drizzle , the attendants were eager to start exploring the festival .", "storylet_id": "241995"}], [{"original_text": "There were a number of exhibitions taking place, one such showcased how to probably take care of one's yard.", "album_id": "72157626582851995", "photo_flickr_id": "5697848519", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48399", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a number of exhibitions taking place , one such showcased how to probably take care of one 's yard .", "storylet_id": "241996"}], [{"original_text": "There were many different types of plants for sale and many couples couldn't resist walking home with one. ", "album_id": "72157626582851995", "photo_flickr_id": "5698427664", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48399", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many different types of plants for sale and many couples could n't resist walking home with one .", "storylet_id": "241997"}], [{"original_text": "At the festival there were also arts and crafts contents, which made the winners very happy.", "album_id": "72157626582851995", "photo_flickr_id": "5697887413", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48399", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the festival there were also arts and crafts contents , which made the winners very happy .", "storylet_id": "241998"}], [{"original_text": "There were also a number of craft booths set up; many of them run by a whole family. ", "album_id": "72157626582851995", "photo_flickr_id": "5697892207", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48399", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were also a number of craft booths set up ; many of them run by a whole family .", "storylet_id": "241999"}], [{"original_text": "It would be a great day on the water ", "album_id": "72157624109110897", "photo_flickr_id": "4683469068", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48400", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it would be a great day on the water", "storylet_id": "242000"}], [{"original_text": "The friends got together on the boat ", "album_id": "72157624109110897", "photo_flickr_id": "4682834231", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48400", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the friends got together on the boat", "storylet_id": "242001"}], [{"original_text": "They headed back to shore. ", "album_id": "72157624109110897", "photo_flickr_id": "4683468180", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48400", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they headed back to shore .", "storylet_id": "242002"}], [{"original_text": "The fish was cooked. ", "album_id": "72157624109110897", "photo_flickr_id": "4683466664", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48400", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fish was cooked .", "storylet_id": "242003"}], [{"original_text": "They had a nice dinner with friends ", "album_id": "72157624109110897", "photo_flickr_id": "4683462492", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48400", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had a nice dinner with friends", "storylet_id": "242004"}], [{"original_text": "Here are Gilligan and the Skipper, out for a 3-hour tour.", "album_id": "72157624109110897", "photo_flickr_id": "4683460114", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48401", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here are gilligan and the skipper , out for a 3-hour tour .", "storylet_id": "242005"}], [{"original_text": "Gilligan casually notes that there are rocks off the port bow. Skipper looks mildly concerned.", "album_id": "72157624109110897", "photo_flickr_id": "4682829875", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48401", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "gilligan casually notes that there are rocks off the port bow . skipper looks mildly concerned .", "storylet_id": "242006"}], [{"original_text": "Here are Gilligan and the Skipper stranded on the deserted island.", "album_id": "72157624109110897", "photo_flickr_id": "4682832421", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48401", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here are gilligan and the skipper stranded on the deserted island .", "storylet_id": "242007"}], [{"original_text": "\"Where are Ginger, Maryann?\" asks the Professor.", "album_id": "72157624109110897", "photo_flickr_id": "4683461418", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48401", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "`` where are [female] , [female] ? '' asks the professor .", "storylet_id": "242008"}], [{"original_text": "They celebrate their material for a long-running sitcom with a weenie roast.", "album_id": "72157624109110897", "photo_flickr_id": "4683466664", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48401", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they celebrate their material for a long-running sitcom with a weenie roast .", "storylet_id": "242009"}], [{"original_text": "We went sailing last weekend", "album_id": "72157624109110897", "photo_flickr_id": "4683469068", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48402", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went sailing last weekend", "storylet_id": "242010"}], [{"original_text": "we the boys.", "album_id": "72157624109110897", "photo_flickr_id": "4682834231", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48402", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we the boys .", "storylet_id": "242011"}], [{"original_text": "It was peaceful on the lake.", "album_id": "72157624109110897", "photo_flickr_id": "4683468180", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48402", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was peaceful on the lake .", "storylet_id": "242012"}], [{"original_text": "We enjoyed our hotdogs made below deck", "album_id": "72157624109110897", "photo_flickr_id": "4683466664", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48402", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we enjoyed our hotdogs made below deck", "storylet_id": "242013"}], [{"original_text": "and partied all through the night.", "album_id": "72157624109110897", "photo_flickr_id": "4683462492", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48402", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and partied all through the night .", "storylet_id": "242014"}], [{"original_text": "The weather didn't look great at first for my annual boating trip with my brothers.", "album_id": "72157624109110897", "photo_flickr_id": "4683469068", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48403", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the weather did n't look great at first for my annual boating trip with my brothers .", "storylet_id": "242015"}], [{"original_text": "However, nothing stops us!", "album_id": "72157624109110897", "photo_flickr_id": "4682834231", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48403", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "however , nothing stops us !", "storylet_id": "242016"}], [{"original_text": "It cleared up pretty quickly, and we took off.", "album_id": "72157624109110897", "photo_flickr_id": "4683468180", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48403", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it cleared up pretty quickly , and we took off .", "storylet_id": "242017"}], [{"original_text": "Larry did the cooking for supper. Yep, hot dogs again!", "album_id": "72157624109110897", "photo_flickr_id": "4683466664", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48403", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] did the cooking for supper . yep , hot dogs again !", "storylet_id": "242018"}], [{"original_text": "We love eating on the boat and being together. It's a great time.", "album_id": "72157624109110897", "photo_flickr_id": "4683462492", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48403", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we love eating on the boat and being together . it 's a great time .", "storylet_id": "242019"}], [{"original_text": "a trip out on the ocean for the guys", "album_id": "72157624109110897", "photo_flickr_id": "4683469068", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "48404", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a trip out on the ocean for the guys", "storylet_id": "242020"}], [{"original_text": "very relax on the boat on the ocean ", "album_id": "72157624109110897", "photo_flickr_id": "4682834231", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "48404", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "very relax on the boat on the ocean", "storylet_id": "242021"}], [{"original_text": "there is a beautiful view of a town", "album_id": "72157624109110897", "photo_flickr_id": "4683468180", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "48404", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is a beautiful view of a town", "storylet_id": "242022"}], [{"original_text": "having some fresh fish for dinner", "album_id": "72157624109110897", "photo_flickr_id": "4683466664", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "48404", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "having some fresh fish for dinner", "storylet_id": "242023"}], [{"original_text": "sitting around getting to start dinner ", "album_id": "72157624109110897", "photo_flickr_id": "4683462492", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "48404", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sitting around getting to start dinner", "storylet_id": "242024"}], [{"original_text": "Mary introduced the twins to their new daddy.", "album_id": "72157627022622825", "photo_flickr_id": "5915480113", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48405", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] introduced the twins to their new daddy .", "storylet_id": "242025"}], [{"original_text": "Then the boys played cornhole.", "album_id": "72157627022622825", "photo_flickr_id": "5916055792", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48405", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then the boys played cornhole .", "storylet_id": "242026"}], [{"original_text": "A tattoo artist was on hand, plying his wares.", "album_id": "72157627022622825", "photo_flickr_id": "5916041344", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48405", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a tattoo artist was on hand , plying his wares .", "storylet_id": "242027"}], [{"original_text": "Mom is going to love Sarah's new tattoo!", "album_id": "72157627022622825", "photo_flickr_id": "5916048002", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48405", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom is going to love [female] 's new tattoo !", "storylet_id": "242028"}], [{"original_text": "Music was provided by placing a goose in a bag and squeezing it repeatedly. What do they wear under their kilts, anyway?", "album_id": "72157627022622825", "photo_flickr_id": "5916128538", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48405", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "music was provided by placing a goose in a bag and squeezing it repeatedly . what do they wear under their kilts , anyway ?", "storylet_id": "242029"}], [{"original_text": "This was the twins very first family reunion. They enjoyed being greeted by different family members.", "album_id": "72157627022622825", "photo_flickr_id": "5915480113", "setting": "first-2-pick-and-tell", "worker_id": "KR2OT4K7AFSMLWQ", "story_id": "48406", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the twins very first family reunion . they enjoyed being greeted by different family members .", "storylet_id": "242030"}], [{"original_text": "Life can become so busy that families tend to lose touch, so there was a lot of catching up to do as we sat around the pick-nick table and talked.", "album_id": "72157627022622825", "photo_flickr_id": "5916093340", "setting": "first-2-pick-and-tell", "worker_id": "KR2OT4K7AFSMLWQ", "story_id": "48406", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "life can become so busy that families tend to lose touch , so there was a lot of catching up to do as we sat around the pick-nick table and talked .", "storylet_id": "242031"}], [{"original_text": "Other relatives enjoyed playing games. (The males in our family can be so competitive.)", "album_id": "72157627022622825", "photo_flickr_id": "5916055792", "setting": "first-2-pick-and-tell", "worker_id": "KR2OT4K7AFSMLWQ", "story_id": "48406", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other relatives enjoyed playing games . ( the males in our family can be so competitive . )", "storylet_id": "242032"}], [{"original_text": "Many of the cousins hadn't seen each other in years and wanted pictures to remember the time that they spent together.", "album_id": "72157627022622825", "photo_flickr_id": "5915482177", "setting": "first-2-pick-and-tell", "worker_id": "KR2OT4K7AFSMLWQ", "story_id": "48406", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many of the cousins had n't seen each other in years and wanted pictures to remember the time that they spent together .", "storylet_id": "242033"}], [{"original_text": "The reunion was a big success, everyone was happy and there were lots of smiles.", "album_id": "72157627022622825", "photo_flickr_id": "5915495691", "setting": "first-2-pick-and-tell", "worker_id": "KR2OT4K7AFSMLWQ", "story_id": "48406", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the reunion was a big success , everyone was happy and there were lots of smiles .", "storylet_id": "242034"}], [{"original_text": "We have a large family reunion every few years. This was the girl's first time.", "album_id": "72157627022622825", "photo_flickr_id": "5915480113", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48407", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we have a large family reunion every few years . this was the girl 's first time .", "storylet_id": "242035"}], [{"original_text": "The adults had fun playing in the yard.", "album_id": "72157627022622825", "photo_flickr_id": "5916055792", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48407", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the adults had fun playing in the yard .", "storylet_id": "242036"}], [{"original_text": "We even hired a face painter.", "album_id": "72157627022622825", "photo_flickr_id": "5916041344", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48407", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even hired a face painter .", "storylet_id": "242037"}], [{"original_text": "He painted anyone's face as long as they wanted it.", "album_id": "72157627022622825", "photo_flickr_id": "5916048002", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48407", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he painted anyone 's face as long as they wanted it .", "storylet_id": "242038"}], [{"original_text": "At the end, one of the richer relatives hired a bagpipe player. Not everyone was pleased by that choice of entertainment.", "album_id": "72157627022622825", "photo_flickr_id": "5916128538", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48407", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , one of the richer relatives hired a bagpipe player . not everyone was pleased by that choice of entertainment .", "storylet_id": "242039"}], [{"original_text": "This is a picture of babies.", "album_id": "72157627022622825", "photo_flickr_id": "5915480113", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48408", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of babies .", "storylet_id": "242040"}], [{"original_text": "This is a picture of golf.", "album_id": "72157627022622825", "photo_flickr_id": "5916055792", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48408", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of golf .", "storylet_id": "242041"}], [{"original_text": "This is a picture of two people.", "album_id": "72157627022622825", "photo_flickr_id": "5916041344", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48408", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of two people .", "storylet_id": "242042"}], [{"original_text": "This is a picture of face paint.", "album_id": "72157627022622825", "photo_flickr_id": "5916048002", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48408", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of face paint .", "storylet_id": "242043"}], [{"original_text": "This is a picture of a man.", "album_id": "72157627022622825", "photo_flickr_id": "5916128538", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48408", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a man .", "storylet_id": "242044"}], [{"original_text": "I took the twins to Marine Corps Day for the first time this year.", "album_id": "72157627022622825", "photo_flickr_id": "5915480113", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48409", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took the twins to marine corps day for the first time this year .", "storylet_id": "242045"}], [{"original_text": "There's always a lot of fun things going on there. ", "album_id": "72157627022622825", "photo_flickr_id": "5916055792", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48409", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there 's always a lot of fun things going on there .", "storylet_id": "242046"}], [{"original_text": "This father was coaching his daughter before it was her turn at the bean bag toss.", "album_id": "72157627022622825", "photo_flickr_id": "5916041344", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48409", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this father was coaching his daughter before it was her turn at the bean bag toss .", "storylet_id": "242047"}], [{"original_text": "This woman got facepainted, although I think it was mostly for the kids.", "album_id": "72157627022622825", "photo_flickr_id": "5916048002", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48409", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this woman got facepainted , although i think it was mostly for the kids .", "storylet_id": "242048"}], [{"original_text": "The bagpiper always ends the day.", "album_id": "72157627022622825", "photo_flickr_id": "5916128538", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48409", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bagpiper always ends the day .", "storylet_id": "242049"}], [{"original_text": "This man was making a spear using traditional methods.", "album_id": "72157627849092412", "photo_flickr_id": "6225017948", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48410", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this man was making a spear using traditional methods .", "storylet_id": "242050"}], [{"original_text": "This woman was about to weave a basket out of reeds.", "album_id": "72157627849092412", "photo_flickr_id": "6225025694", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48410", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this woman was about to weave a basket out of reeds .", "storylet_id": "242051"}], [{"original_text": "This is what her basket is going to look like when she finishes.", "album_id": "72157627849092412", "photo_flickr_id": "6225030466", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48410", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is what her basket is going to look like when she finishes .", "storylet_id": "242052"}], [{"original_text": "The locals grabbed all of the visitors and asked them to dance with them.", "album_id": "72157627849092412", "photo_flickr_id": "6225032172", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48410", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the locals grabbed all of the visitors and asked them to dance with them .", "storylet_id": "242053"}], [{"original_text": "This man is crafting some jewelry out of animal bones.", "album_id": "72157627849092412", "photo_flickr_id": "6225042158", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48410", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this man is crafting some jewelry out of animal bones .", "storylet_id": "242054"}], [{"original_text": "Jim aims his blowgun.", "album_id": "72157627849092412", "photo_flickr_id": "6224523323", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48411", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] aims his blowgun .", "storylet_id": "242055"}], [{"original_text": "Mom warns, \"Be careful with that, or someone might lose an eye!\"", "album_id": "72157627849092412", "photo_flickr_id": "6225045802", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48411", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom warns , `` be careful with that , or someone might lose an eye ! ''", "storylet_id": "242056"}], [{"original_text": "Jack ducks, so he doesn't lose an eye to the blowgun's projectile.", "album_id": "72157627849092412", "photo_flickr_id": "6224516801", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48411", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] ducks , so he does n't lose an eye to the blowgun 's projectile .", "storylet_id": "242057"}], [{"original_text": "The projectile narrowly misses Sam. Jack looks on and laughs.", "album_id": "72157627849092412", "photo_flickr_id": "6225040708", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48411", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the projectile narrowly misses [male] . [male] looks on and laughs .", "storylet_id": "242058"}], [{"original_text": "This lady has a growth on her back.", "album_id": "72157627849092412", "photo_flickr_id": "6224540957", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48411", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this lady has a growth on her back .", "storylet_id": "242059"}], [{"original_text": "The local Native American tribe had a festival and the had a bon fire.", "album_id": "72157627849092412", "photo_flickr_id": "6225017948", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "48412", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the local native american tribe had a festival and the had a bon fire .", "storylet_id": "242060"}], [{"original_text": "The women showed everyone how to make things out of feathers.", "album_id": "72157627849092412", "photo_flickr_id": "6225025694", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "48412", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the women showed everyone how to make things out of feathers .", "storylet_id": "242061"}], [{"original_text": "The showed people how to make baskets.", "album_id": "72157627849092412", "photo_flickr_id": "6225030466", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "48412", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the showed people how to make baskets .", "storylet_id": "242062"}], [{"original_text": "They then had a dance and everyone joined in.", "album_id": "72157627849092412", "photo_flickr_id": "6225032172", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "48412", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they then had a dance and everyone joined in .", "storylet_id": "242063"}], [{"original_text": "The last thing they did was show us how to make arrow heads.", "album_id": "72157627849092412", "photo_flickr_id": "6225042158", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "48412", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last thing they did was show us how to make arrow heads .", "storylet_id": "242064"}], [{"original_text": "The Festival of Native Arts was wonderful. First, we learned how to make a fire.", "album_id": "72157627849092412", "photo_flickr_id": "6225017948", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48413", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the festival of native arts was wonderful . first , we learned how to make a fire .", "storylet_id": "242065"}], [{"original_text": "Next, there was a weaving demonstration. It was fascinating. ", "album_id": "72157627849092412", "photo_flickr_id": "6225025694", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48413", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next , there was a weaving demonstration . it was fascinating .", "storylet_id": "242066"}], [{"original_text": "The basket that got woven was raffled off later in the day.", "album_id": "72157627849092412", "photo_flickr_id": "6225030466", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48413", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the basket that got woven was raffled off later in the day .", "storylet_id": "242067"}], [{"original_text": "The dancing lesson got all of us laughing!", "album_id": "72157627849092412", "photo_flickr_id": "6225032172", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48413", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dancing lesson got all of us laughing !", "storylet_id": "242068"}], [{"original_text": "We loved the show of carved wood. I couldn't help but buy a few carved animals.", "album_id": "72157627849092412", "photo_flickr_id": "6225042158", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48413", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we loved the show of carved wood . i could n't help but buy a few carved animals .", "storylet_id": "242069"}], [{"original_text": "The family went to a native american festival.", "album_id": "72157627849092412", "photo_flickr_id": "6225017948", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48414", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went to a native american festival .", "storylet_id": "242070"}], [{"original_text": "We met some very talented and unique people while we were there.", "album_id": "72157627849092412", "photo_flickr_id": "6225025694", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48414", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we met some very talented and unique people while we were there .", "storylet_id": "242071"}], [{"original_text": "This is a basket that was made by the natives.", "album_id": "72157627849092412", "photo_flickr_id": "6225030466", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48414", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a basket that was made by the natives .", "storylet_id": "242072"}], [{"original_text": "We participated in the singing and dancing.", "album_id": "72157627849092412", "photo_flickr_id": "6225032172", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48414", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we participated in the singing and dancing .", "storylet_id": "242073"}], [{"original_text": "Its fascinating watching a master work.", "album_id": "72157627849092412", "photo_flickr_id": "6225042158", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48414", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "its fascinating watching a master work .", "storylet_id": "242074"}], [{"original_text": "What a unique place to visit.", "album_id": "72157627965597479", "photo_flickr_id": "6329393320", "setting": "first-2-pick-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "48415", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what a unique place to visit .", "storylet_id": "242075"}], [{"original_text": "It had stood for such a long time.", "album_id": "72157627965597479", "photo_flickr_id": "6328641537", "setting": "first-2-pick-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "48415", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it had stood for such a long time .", "storylet_id": "242076"}], [{"original_text": "Everywhere you looked had a spectacular view.", "album_id": "72157627965597479", "photo_flickr_id": "6329398140", "setting": "first-2-pick-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "48415", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everywhere you looked had a spectacular view .", "storylet_id": "242077"}], [{"original_text": "The world was just different from here.", "album_id": "72157627965597479", "photo_flickr_id": "6329399412", "setting": "first-2-pick-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "48415", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the world was just different from here .", "storylet_id": "242078"}], [{"original_text": "It had great natural defenses that made it impenetrable.", "album_id": "72157627965597479", "photo_flickr_id": "6328654361", "setting": "first-2-pick-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "48415", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it had great natural defenses that made it impenetrable .", "storylet_id": "242079"}], [{"original_text": "You know, honey, when you said we were going to live in a cave, I wasn't so sure it was a good idea.", "album_id": "72157627965597479", "photo_flickr_id": "6328641537", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48416", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "you know , honey , when you said we were going to live in a cave , i was n't so sure it was a good idea .", "storylet_id": "242080"}], [{"original_text": "But the views here are amazing.", "album_id": "72157627965597479", "photo_flickr_id": "6329393320", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48416", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but the views here are amazing .", "storylet_id": "242081"}], [{"original_text": "And such a beautiful little town.", "album_id": "72157627965597479", "photo_flickr_id": "6329414220", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48416", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and such a beautiful little town .", "storylet_id": "242082"}], [{"original_text": "This place has a lovely garden.", "album_id": "72157627965597479", "photo_flickr_id": "6328655621", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48416", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this place has a lovely garden .", "storylet_id": "242083"}], [{"original_text": "And the nearest shopping mall isn't so far away.", "album_id": "72157627965597479", "photo_flickr_id": "6329405466", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48416", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the nearest shopping mall is n't so far away .", "storylet_id": "242084"}], [{"original_text": "This castle was the whole reason we came to this town. ", "album_id": "72157627965597479", "photo_flickr_id": "6329393320", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "48417", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this castle was the whole reason we came to this town .", "storylet_id": "242085"}], [{"original_text": "The \"secret\" entrance to the caves below the castle.", "album_id": "72157627965597479", "photo_flickr_id": "6328641537", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "48417", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the `` secret '' entrance to the caves below the castle .", "storylet_id": "242086"}], [{"original_text": "A picturesque, traditional town, ", "album_id": "72157627965597479", "photo_flickr_id": "6329398140", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "48417", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a picturesque , traditional town ,", "storylet_id": "242087"}], [{"original_text": "view from the castle ramparts. ", "album_id": "72157627965597479", "photo_flickr_id": "6329399412", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "48417", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "view from the castle ramparts .", "storylet_id": "242088"}], [{"original_text": "Sure glad we don't have to scale those cliffs under archery fire. ", "album_id": "72157627965597479", "photo_flickr_id": "6328654361", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "48417", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sure glad we do n't have to scale those cliffs under archery fire .", "storylet_id": "242089"}], [{"original_text": "This is a picture of a castle.", "album_id": "72157627965597479", "photo_flickr_id": "6329393320", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48418", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a castle .", "storylet_id": "242090"}], [{"original_text": "This is a picture of ruins.", "album_id": "72157627965597479", "photo_flickr_id": "6328641537", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48418", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of ruins .", "storylet_id": "242091"}], [{"original_text": "This is a picture of houses.", "album_id": "72157627965597479", "photo_flickr_id": "6329398140", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48418", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of houses .", "storylet_id": "242092"}], [{"original_text": "This is a picture of the outdoors.", "album_id": "72157627965597479", "photo_flickr_id": "6329399412", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48418", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of the outdoors .", "storylet_id": "242093"}], [{"original_text": "This is a picture of a building.", "album_id": "72157627965597479", "photo_flickr_id": "6328654361", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48418", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a building .", "storylet_id": "242094"}], [{"original_text": "Our first to Europe.", "album_id": "72157627965597479", "photo_flickr_id": "6329393320", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48419", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our first to location .", "storylet_id": "242095"}], [{"original_text": "This was the place we stayed at.", "album_id": "72157627965597479", "photo_flickr_id": "6328641537", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48419", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was the place we stayed at .", "storylet_id": "242096"}], [{"original_text": "This was the site from our place.", "album_id": "72157627965597479", "photo_flickr_id": "6329398140", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48419", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was the site from our place .", "storylet_id": "242097"}], [{"original_text": "We got to travel down this hil.", "album_id": "72157627965597479", "photo_flickr_id": "6329399412", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48419", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got to travel down this hil .", "storylet_id": "242098"}], [{"original_text": "Then we had to hike up the hill again", "album_id": "72157627965597479", "photo_flickr_id": "6328654361", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48419", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we had to hike up the hill again", "storylet_id": "242099"}], [{"original_text": "To all of those moms and dads who are willing to sacrifice everything for all of us, thank you.", "album_id": "72157628343838277", "photo_flickr_id": "6481837747", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48420", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "to all of those moms and dads who are willing to sacrifice everything for all of us , thank you .", "storylet_id": "242100"}], [{"original_text": "For those little people, who have to wait for Daddy to get home for a hug, thank you.", "album_id": "72157628343838277", "photo_flickr_id": "6481838601", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48420", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "for those little people , who have to wait for daddy to get home for a hug , thank you .", "storylet_id": "242101"}], [{"original_text": "Midnight feedings don't seem so bad, if we think about what your midnights have been like.", "album_id": "72157628343838277", "photo_flickr_id": "6481840541", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48420", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "midnight feedings do n't seem so bad , if we think about what your midnights have been like .", "storylet_id": "242102"}], [{"original_text": "Thank you, Daddy, for preserving her freedom.", "album_id": "72157628343838277", "photo_flickr_id": "6481273937", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48420", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "thank you , daddy , for preserving her freedom .", "storylet_id": "242103"}], [{"original_text": "And thank you, for inspiring a whole new generation.", "album_id": "72157628343838277", "photo_flickr_id": "6481841137", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48420", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and thank you , for inspiring a whole new generation .", "storylet_id": "242104"}], [{"original_text": "The families were waiting in anticipation for their loved one to return home.", "album_id": "72157628343838277", "photo_flickr_id": "6481836173", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48421", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the families were waiting in anticipation for their loved one to return home .", "storylet_id": "242105"}], [{"original_text": "The unit got off the bus and were congratulated by their fellow soldiers.", "album_id": "72157628343838277", "photo_flickr_id": "6481270635", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48421", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the unit got off the bus and were congratulated by their fellow soldiers .", "storylet_id": "242106"}], [{"original_text": "The unit starts to file into the gym and see their families.", "album_id": "72157628343838277", "photo_flickr_id": "6481837389", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48421", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the unit starts to file into the gym and see their families .", "storylet_id": "242107"}], [{"original_text": "A poster announcing what unit was returning home.", "album_id": "72157628343838277", "photo_flickr_id": "6481268499", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48421", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a poster announcing what unit was returning home .", "storylet_id": "242108"}], [{"original_text": "The television news came and produced a story on the unit's homecoming.", "album_id": "72157628343838277", "photo_flickr_id": "6481273581", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48421", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the television news came and produced a story on the unit 's homecoming .", "storylet_id": "242109"}], [{"original_text": "Although these pictures are sweet are they really needed.", "album_id": "72157628343838277", "photo_flickr_id": "6481837747", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48422", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "although these pictures are sweet are they really needed .", "storylet_id": "242110"}], [{"original_text": "We see this as inspiring but shouldnt it be sad.", "album_id": "72157628343838277", "photo_flickr_id": "6481838601", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48422", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we see this as inspiring but shouldnt it be sad .", "storylet_id": "242111"}], [{"original_text": "These men only go to war cause of the hatred in the world.", "album_id": "72157628343838277", "photo_flickr_id": "6481840541", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48422", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these men only go to war cause of the hatred in the world .", "storylet_id": "242112"}], [{"original_text": "We get so happy to see them home, but why send them in the first place.", "album_id": "72157628343838277", "photo_flickr_id": "6481273937", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48422", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we get so happy to see them home , but why send them in the first place .", "storylet_id": "242113"}], [{"original_text": "Kids should not be denied their parents. ", "album_id": "72157628343838277", "photo_flickr_id": "6481841137", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48422", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "kids should not be denied their parents .", "storylet_id": "242114"}], [{"original_text": "This is a picture of a crowd. ", "album_id": "72157628343838277", "photo_flickr_id": "6481836173", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48423", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a crowd .", "storylet_id": "242115"}], [{"original_text": "This is a picture of the army.", "album_id": "72157628343838277", "photo_flickr_id": "6481270635", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48423", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of the army .", "storylet_id": "242116"}], [{"original_text": "This is a picture of soldiers.", "album_id": "72157628343838277", "photo_flickr_id": "6481837389", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48423", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of soldiers .", "storylet_id": "242117"}], [{"original_text": "This is a picture of a sign.", "album_id": "72157628343838277", "photo_flickr_id": "6481268499", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48423", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of a sign .", "storylet_id": "242118"}], [{"original_text": "This is an interview.", "album_id": "72157628343838277", "photo_flickr_id": "6481273581", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48423", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is an interview .", "storylet_id": "242119"}], [{"original_text": "It was an emotional moment when the soldiers came home to their family.", "album_id": "72157628343838277", "photo_flickr_id": "6481837747", "setting": "last-3-pick-old-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "48424", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was an emotional moment when the soldiers came home to their family .", "storylet_id": "242120"}], [{"original_text": "Many fathers were greeted by their children, of whom they hadn't seen in over a yeaar.", "album_id": "72157628343838277", "photo_flickr_id": "6481838601", "setting": "last-3-pick-old-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "48424", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many fathers were greeted by their children , of whom they had n't seen in over a yeaar .", "storylet_id": "242121"}], [{"original_text": "One soldier even came home to a surprise, a baby boy!", "album_id": "72157628343838277", "photo_flickr_id": "6481840541", "setting": "last-3-pick-old-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "48424", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one soldier even came home to a surprise , a baby boy !", "storylet_id": "242122"}], [{"original_text": "It wasn't all boys at this reunion either, as a little girl gave her father a hug.", "album_id": "72157628343838277", "photo_flickr_id": "6481273937", "setting": "last-3-pick-old-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "48424", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was n't all boys at this reunion either , as a little girl gave her father a hug .", "storylet_id": "242123"}], [{"original_text": "The soldiers had quite a bit of luggage to bring home and some were happy to help.", "album_id": "72157628343838277", "photo_flickr_id": "6481841137", "setting": "last-3-pick-old-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "48424", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the soldiers had quite a bit of luggage to bring home and some were happy to help .", "storylet_id": "242124"}], [{"original_text": "The valley was spacious and open.", "album_id": "72157624923667378", "photo_flickr_id": "4976754288", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48425", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the valley was spacious and open .", "storylet_id": "242125"}], [{"original_text": "The water fell from the top of the cliff quickly.", "album_id": "72157624923667378", "photo_flickr_id": "4976768910", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48425", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water fell from the top of the cliff quickly .", "storylet_id": "242126"}], [{"original_text": "The sign was green and not very informative.", "album_id": "72157624923667378", "photo_flickr_id": "4976797408", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48425", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sign was green and not very informative .", "storylet_id": "242127"}], [{"original_text": "The horse assisted us with carrying resources.", "album_id": "72157624923667378", "photo_flickr_id": "4976802958", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48425", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the horse assisted us with carrying resources .", "storylet_id": "242128"}], [{"original_text": "My partner had a really exciting time at the field.", "album_id": "72157624923667378", "photo_flickr_id": "4976827842", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48425", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my partner had a really exciting time at the field .", "storylet_id": "242129"}], [{"original_text": "An overlook above the valley on our vacation.", "album_id": "72157624923667378", "photo_flickr_id": "4976754288", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48426", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an overlook above the valley on our vacation .", "storylet_id": "242130"}], [{"original_text": "A really tall waterfall we found along the way.", "album_id": "72157624923667378", "photo_flickr_id": "4976768910", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48426", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a really tall waterfall we found along the way .", "storylet_id": "242131"}], [{"original_text": "The sign stating where we were after our trip.", "album_id": "72157624923667378", "photo_flickr_id": "4976797408", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48426", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sign stating where we were after our trip .", "storylet_id": "242132"}], [{"original_text": "The locals tried to get us to rent some horses from them.", "album_id": "72157624923667378", "photo_flickr_id": "4976802958", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48426", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the locals tried to get us to rent some horses from them .", "storylet_id": "242133"}], [{"original_text": "Tammy striking a pose while out exploring.", "album_id": "72157624923667378", "photo_flickr_id": "4976220125", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48426", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] striking a pose while out exploring .", "storylet_id": "242134"}], [{"original_text": "This is a picture of a stream.", "album_id": "72157624923667378", "photo_flickr_id": "4976754288", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48427", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a stream .", "storylet_id": "242135"}], [{"original_text": "This is a picture of a waterfall.", "album_id": "72157624923667378", "photo_flickr_id": "4976768910", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48427", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a waterfall .", "storylet_id": "242136"}], [{"original_text": "This is a picture of a sign.", "album_id": "72157624923667378", "photo_flickr_id": "4976797408", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48427", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of a sign .", "storylet_id": "242137"}], [{"original_text": "This is a picture of animals.", "album_id": "72157624923667378", "photo_flickr_id": "4976802958", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48427", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of animals .", "storylet_id": "242138"}], [{"original_text": "This is a picture of a woman.", "album_id": "72157624923667378", "photo_flickr_id": "4976220125", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48427", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a woman .", "storylet_id": "242139"}], [{"original_text": "The Mitchell family wanted to take a vacation in nature. They traveled to a river near mountains.", "album_id": "72157624923667378", "photo_flickr_id": "4976754288", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "48428", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the [male] family wanted to take a vacation in nature . they traveled to a river near mountains .", "storylet_id": "242140"}], [{"original_text": "They saw a waterfall coming out of the mountain and thought is was beautiful.", "album_id": "72157624923667378", "photo_flickr_id": "4976768910", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "48428", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they saw a waterfall coming out of the mountain and thought is was beautiful .", "storylet_id": "242141"}], [{"original_text": "The family hiked to Middal Hole Point and decided to rest.", "album_id": "72157624923667378", "photo_flickr_id": "4976797408", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "48428", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family hiked to location location location and decided to rest .", "storylet_id": "242142"}], [{"original_text": "Sarah lost her favorite bracelet and they had to stop and search for it.", "album_id": "72157624923667378", "photo_flickr_id": "4976802958", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "48428", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] lost her favorite bracelet and they had to stop and search for it .", "storylet_id": "242143"}], [{"original_text": "She was so happy when they finally found it.", "album_id": "72157624923667378", "photo_flickr_id": "4976220125", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "48428", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was so happy when they finally found it .", "storylet_id": "242144"}], [{"original_text": "We started the hike in the misty early morning.", "album_id": "72157624923667378", "photo_flickr_id": "4976754288", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48429", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started the hike in the misty early morning .", "storylet_id": "242145"}], [{"original_text": "Before long, we were passing some amazing waterfalls.", "album_id": "72157624923667378", "photo_flickr_id": "4976768910", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48429", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before long , we were passing some amazing waterfalls .", "storylet_id": "242146"}], [{"original_text": "Around midday, we made it to Kiddal Hole Point.", "album_id": "72157624923667378", "photo_flickr_id": "4976797408", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48429", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "around midday , we made it to location location location .", "storylet_id": "242147"}], [{"original_text": "We were tired, and very glad there were horses to rent to ride there!", "album_id": "72157624923667378", "photo_flickr_id": "4976802958", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48429", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were tired , and very glad there were horses to rent to ride there !", "storylet_id": "242148"}], [{"original_text": "Laura loved the day, and she looked beautiful outdoors.", "album_id": "72157624923667378", "photo_flickr_id": "4976827842", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48429", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] loved the day , and she looked beautiful outdoors .", "storylet_id": "242149"}], [{"original_text": "I absolutely love photographing natures beauty ", "album_id": "72157625134324560", "photo_flickr_id": "5068124457", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48430", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i absolutely love photographing natures beauty", "storylet_id": "242150"}], [{"original_text": "I pointed my camera up to take this photo ", "album_id": "72157625134324560", "photo_flickr_id": "5068736400", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48430", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i pointed my camera up to take this photo", "storylet_id": "242151"}], [{"original_text": "Look at this beautiful shot I took of the flower ", "album_id": "72157625134324560", "photo_flickr_id": "5068741310", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48430", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at this beautiful shot i took of the flower", "storylet_id": "242152"}], [{"original_text": "This was shot as I walked through the woods ", "album_id": "72157625134324560", "photo_flickr_id": "5068753364", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48430", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was shot as i walked through the woods", "storylet_id": "242153"}], [{"original_text": "I loved walking through the cave to take this one", "album_id": "72157625134324560", "photo_flickr_id": "5068765542", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48430", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i loved walking through the cave to take this one", "storylet_id": "242154"}], [{"original_text": "A little wild pig sniffs around for some food.", "album_id": "72157625134324560", "photo_flickr_id": "5068740376", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48431", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a little wild pig sniffs around for some food .", "storylet_id": "242155"}], [{"original_text": "A very beautiful flower hidden among the other plants.", "album_id": "72157625134324560", "photo_flickr_id": "5068741310", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48431", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a very beautiful flower hidden among the other plants .", "storylet_id": "242156"}], [{"original_text": "There was a boardwalk that went over the really wet parts of the swamp.", "album_id": "72157625134324560", "photo_flickr_id": "5068133809", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48431", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a boardwalk that went over the really wet parts of the swamp .", "storylet_id": "242157"}], [{"original_text": "A snake slithered away from the group.", "album_id": "72157625134324560", "photo_flickr_id": "5068755508", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48431", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a snake slithered away from the group .", "storylet_id": "242158"}], [{"original_text": "This hollow stump seemed to go down forever. ", "album_id": "72157625134324560", "photo_flickr_id": "5068765542", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48431", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this hollow stump seemed to go down forever .", "storylet_id": "242159"}], [{"original_text": "We paid to go on a trip to the forest.", "album_id": "72157625134324560", "photo_flickr_id": "5068124457", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48432", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we paid to go on a trip to the forest .", "storylet_id": "242160"}], [{"original_text": "There was a swampy looking area,", "album_id": "72157625134324560", "photo_flickr_id": "5068736400", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48432", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a swampy looking area ,", "storylet_id": "242161"}], [{"original_text": "but right after that there were beautiful flowers.", "album_id": "72157625134324560", "photo_flickr_id": "5068741310", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48432", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but right after that there were beautiful flowers .", "storylet_id": "242162"}], [{"original_text": "The trees were majestic.", "album_id": "72157625134324560", "photo_flickr_id": "5068753364", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48432", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the trees were majestic .", "storylet_id": "242163"}], [{"original_text": "And all we could do was stare at the wonders God created.", "album_id": "72157625134324560", "photo_flickr_id": "5068765542", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48432", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and all we could do was stare at the wonders god created .", "storylet_id": "242164"}], [{"original_text": "We travel to the wild", "album_id": "72157625134324560", "photo_flickr_id": "5068740376", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48433", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we travel to the wild", "storylet_id": "242165"}], [{"original_text": "once we go there we can see the flowers.", "album_id": "72157625134324560", "photo_flickr_id": "5068741310", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48433", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once we go there we can see the flowers .", "storylet_id": "242166"}], [{"original_text": "Then we start to walk across the bridge", "album_id": "72157625134324560", "photo_flickr_id": "5068133809", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48433", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we start to walk across the bridge", "storylet_id": "242167"}], [{"original_text": "Then we reach the other side.", "album_id": "72157625134324560", "photo_flickr_id": "5068755508", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48433", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we reach the other side .", "storylet_id": "242168"}], [{"original_text": " Finally we get to a cave. ", "album_id": "72157625134324560", "photo_flickr_id": "5068765542", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48433", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally we get to a cave .", "storylet_id": "242169"}], [{"original_text": "a day at the zoo there a little Genny pig", "album_id": "72157625134324560", "photo_flickr_id": "5068740376", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "48434", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a day at the zoo there a little genny pig", "storylet_id": "242170"}], [{"original_text": "a very beautiful flower with yellow rose", "album_id": "72157625134324560", "photo_flickr_id": "5068741310", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "48434", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a very beautiful flower with yellow rose", "storylet_id": "242171"}], [{"original_text": "there is aboard walk trail to walk on", "album_id": "72157625134324560", "photo_flickr_id": "5068133809", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "48434", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is aboard walk trail to walk on", "storylet_id": "242172"}], [{"original_text": "some beautiful pictures to be taking ", "album_id": "72157625134324560", "photo_flickr_id": "5068755508", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "48434", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some beautiful pictures to be taking", "storylet_id": "242173"}], [{"original_text": "a u neat tree stunk a beautiful picture", "album_id": "72157625134324560", "photo_flickr_id": "5068765542", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "48434", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a u neat tree stunk a beautiful picture", "storylet_id": "242174"}], [{"original_text": "my company went on a team building adventure", "album_id": "72157624944950104", "photo_flickr_id": "4985766338", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48435", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my company went on a team building adventure", "storylet_id": "242175"}], [{"original_text": "we took part in many games", "album_id": "72157624944950104", "photo_flickr_id": "4985764894", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48435", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took part in many games", "storylet_id": "242176"}], [{"original_text": "we learned how to work together", "album_id": "72157624944950104", "photo_flickr_id": "4985165707", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48435", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we learned how to work together", "storylet_id": "242177"}], [{"original_text": "we built our own raft", "album_id": "72157624944950104", "photo_flickr_id": "4985765614", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48435", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we built our own raft", "storylet_id": "242178"}], [{"original_text": "in the end we all became friends", "album_id": "72157624944950104", "photo_flickr_id": "4985765844", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48435", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end we all became friends", "storylet_id": "242179"}], [{"original_text": "At summer camp for grownups, you can do anything the kids do!", "album_id": "72157624944950104", "photo_flickr_id": "4985765614", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48436", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at summer camp for grownups , you can do anything the kids do !", "storylet_id": "242180"}], [{"original_text": "We have a river for swimming....", "album_id": "72157624944950104", "photo_flickr_id": "4985765728", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48436", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we have a river for swimming ... .", "storylet_id": "242181"}], [{"original_text": "We do morning calisthenics.", "album_id": "72157624944950104", "photo_flickr_id": "4985765844", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48436", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we do morning calisthenics .", "storylet_id": "242182"}], [{"original_text": "We go for bike rides in the country.", "album_id": "72157624944950104", "photo_flickr_id": "4985166615", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48436", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we go for bike rides in the country .", "storylet_id": "242183"}], [{"original_text": "And our spiritual leader guides us through hula hoop seances.", "album_id": "72157624944950104", "photo_flickr_id": "4985167107", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "48436", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and our spiritual leader guides us through hula hoop seances .", "storylet_id": "242184"}], [{"original_text": "The team went on a team building exercise.", "album_id": "72157624944950104", "photo_flickr_id": "4985766338", "setting": "last-3-pick-old-and-tell", "worker_id": "BGQ9WIAYOWKLWX0", "story_id": "48437", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the team went on a team building exercise .", "storylet_id": "242185"}], [{"original_text": "Some of the members of the group created rafts with tubes and long poles.", "album_id": "72157624944950104", "photo_flickr_id": "4985764894", "setting": "last-3-pick-old-and-tell", "worker_id": "BGQ9WIAYOWKLWX0", "story_id": "48437", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the members of the group created rafts with tubes and long poles .", "storylet_id": "242186"}], [{"original_text": " Other members of the group carried individual tubes on sticks to the water.", "album_id": "72157624944950104", "photo_flickr_id": "4985165707", "setting": "last-3-pick-old-and-tell", "worker_id": "BGQ9WIAYOWKLWX0", "story_id": "48437", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other members of the group carried individual tubes on sticks to the water .", "storylet_id": "242187"}], [{"original_text": "After the rafts were constructed many of the team members put them in the water to test them out.", "album_id": "72157624944950104", "photo_flickr_id": "4985765614", "setting": "last-3-pick-old-and-tell", "worker_id": "BGQ9WIAYOWKLWX0", "story_id": "48437", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the rafts were constructed many of the team members put them in the water to test them out .", "storylet_id": "242188"}], [{"original_text": "Even though we were wet at the end of the day we felt as sense of accomplishment.", "album_id": "72157624944950104", "photo_flickr_id": "4985765844", "setting": "last-3-pick-old-and-tell", "worker_id": "BGQ9WIAYOWKLWX0", "story_id": "48437", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even though we were wet at the end of the day we felt as sense of accomplishment .", "storylet_id": "242189"}], [{"original_text": "My club met for a fun camping trip.", "album_id": "72157624944950104", "photo_flickr_id": "4985766338", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48438", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my club met for a fun camping trip .", "storylet_id": "242190"}], [{"original_text": "We had to do team-building exercises to build trust.", "album_id": "72157624944950104", "photo_flickr_id": "4985764894", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48438", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to do team-building exercises to build trust .", "storylet_id": "242191"}], [{"original_text": "Carrying the tires was the hardest part.", "album_id": "72157624944950104", "photo_flickr_id": "4985165707", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48438", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "carrying the tires was the hardest part .", "storylet_id": "242192"}], [{"original_text": "We got to play with the tires afterward.", "album_id": "72157624944950104", "photo_flickr_id": "4985765614", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48438", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got to play with the tires afterward .", "storylet_id": "242193"}], [{"original_text": "My team did a victory pose and went to eat fish after.", "album_id": "72157624944950104", "photo_flickr_id": "4985765844", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48438", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my team did a victory pose and went to eat fish after .", "storylet_id": "242194"}], [{"original_text": "Teamwork was key. ", "album_id": "72157624944950104", "photo_flickr_id": "4985766338", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48439", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "teamwork was key .", "storylet_id": "242195"}], [{"original_text": "In everything that required more than one. ", "album_id": "72157624944950104", "photo_flickr_id": "4985764894", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48439", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in everything that required more than one .", "storylet_id": "242196"}], [{"original_text": "Working together to achieve a common goal. ", "album_id": "72157624944950104", "photo_flickr_id": "4985165707", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48439", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "working together to achieve a common goal .", "storylet_id": "242197"}], [{"original_text": "The Oracle knew that. ", "album_id": "72157624944950104", "photo_flickr_id": "4985765614", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48439", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the oracle knew that .", "storylet_id": "242198"}], [{"original_text": "And these guys were one of the best teams they'd ever had. ", "album_id": "72157624944950104", "photo_flickr_id": "4985765844", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48439", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and these guys were one of the best teams they 'd ever had .", "storylet_id": "242199"}], [{"original_text": "We were honored to have a local representative come to our military banquet.", "album_id": "72157624030292358", "photo_flickr_id": "4594101811", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48440", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were honored to have a local representative come to our military banquet .", "storylet_id": "242200"}], [{"original_text": "We worked hard making a great lunch that day and he was served just like everyone else.", "album_id": "72157624030292358", "photo_flickr_id": "4594715218", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48440", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we worked hard making a great lunch that day and he was served just like everyone else .", "storylet_id": "242201"}], [{"original_text": "The representative gave a very encouraging speech during the meal.", "album_id": "72157624030292358", "photo_flickr_id": "4605897606", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48440", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the representative gave a very encouraging speech during the meal .", "storylet_id": "242202"}], [{"original_text": "He took time to go to each table and speak to everyone in attendance.", "album_id": "72157624030292358", "photo_flickr_id": "4594717632", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48440", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he took time to go to each table and speak to everyone in attendance .", "storylet_id": "242203"}], [{"original_text": "He presented his with a volunteer t-shirt after the dinner was over.", "album_id": "72157624030292358", "photo_flickr_id": "4605288437", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48440", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he presented his with a volunteer t-shirt after the dinner was over .", "storylet_id": "242204"}], [{"original_text": "the senator went to the military base of a good will mission", "album_id": "72157624030292358", "photo_flickr_id": "4594101811", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48441", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the senator went to the military base of a good will mission", "storylet_id": "242205"}], [{"original_text": "he wanted the full experience ", "album_id": "72157624030292358", "photo_flickr_id": "4594715218", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48441", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he wanted the full experience", "storylet_id": "242206"}], [{"original_text": "he listened to everyone and what they had to say", "album_id": "72157624030292358", "photo_flickr_id": "4594103489", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48441", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he listened to everyone and what they had to say", "storylet_id": "242207"}], [{"original_text": "he learned so much about the military system", "album_id": "72157624030292358", "photo_flickr_id": "4594714102", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48441", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he learned so much about the military system", "storylet_id": "242208"}], [{"original_text": "he felt a feeling of accomplishment when he left", "album_id": "72157624030292358", "photo_flickr_id": "4594102391", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48441", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he felt a feeling of accomplishment when he left", "storylet_id": "242209"}], [{"original_text": "The senator was invited to a military meal and demonstration.", "album_id": "72157624030292358", "photo_flickr_id": "4594101811", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "48442", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the senator was invited to a military meal and demonstration .", "storylet_id": "242210"}], [{"original_text": "He ordered a healthy meal and was ready to discuss the military matters.", "album_id": "72157624030292358", "photo_flickr_id": "4594715218", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "48442", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he ordered a healthy meal and was ready to discuss the military matters .", "storylet_id": "242211"}], [{"original_text": "During the meal, the senator listened about the advanced military hardware they had prepared to show him.", "album_id": "72157624030292358", "photo_flickr_id": "4594103489", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "48442", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "during the meal , the senator listened about the advanced military hardware they had prepared to show him .", "storylet_id": "242212"}], [{"original_text": "At the demonstration, military personnel ask the senator to look carefully as the demonstration took place.", "album_id": "72157624030292358", "photo_flickr_id": "4594714102", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "48442", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the demonstration , military personnel ask the senator to look carefully as the demonstration took place .", "storylet_id": "242213"}], [{"original_text": "Afterwards, the senator was impressed with the new hardware and thanked the men for showing him.", "album_id": "72157624030292358", "photo_flickr_id": "4594102391", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "48442", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , the senator was impressed with the new hardware and thanked the men for showing him .", "storylet_id": "242214"}], [{"original_text": "Governor Brandon had an event scheduled. When he arrived at his event he was escorted in by military men.", "album_id": "72157624030292358", "photo_flickr_id": "4594101811", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "48443", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "governor [male] had an event scheduled . when he arrived at his event he was escorted in by military men .", "storylet_id": "242215"}], [{"original_text": "He went to the serving line and ordered some food. He even have the server a tip.", "album_id": "72157624030292358", "photo_flickr_id": "4594715218", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "48443", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he went to the serving line and ordered some food . he even have the server a tip .", "storylet_id": "242216"}], [{"original_text": "The Governor have a speech about healthcare.", "album_id": "72157624030292358", "photo_flickr_id": "4605897606", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "48443", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the governor have a speech about healthcare .", "storylet_id": "242217"}], [{"original_text": "After speech he stayed and talked to local people about their concerns.", "album_id": "72157624030292358", "photo_flickr_id": "4594717632", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "48443", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after speech he stayed and talked to local people about their concerns .", "storylet_id": "242218"}], [{"original_text": "As few of the residents presented him with a jacket to show their appreciation.", "album_id": "72157624030292358", "photo_flickr_id": "4605288437", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "48443", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as few of the residents presented him with a jacket to show their appreciation .", "storylet_id": "242219"}], [{"original_text": "It was customary to give big brass a full tour. ", "album_id": "72157624030292358", "photo_flickr_id": "4594101811", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48444", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was customary to give big brass a full tour .", "storylet_id": "242220"}], [{"original_text": "Of course the mess hall would usually serve something a little better than average on \"Big Brass\" days. ", "album_id": "72157624030292358", "photo_flickr_id": "4594715218", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48444", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "of course the mess hall would usually serve something a little better than average on `` big brass '' days .", "storylet_id": "242221"}], [{"original_text": "He looked like he was okay with it. ", "album_id": "72157624030292358", "photo_flickr_id": "4594103489", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48444", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he looked like he was okay with it .", "storylet_id": "242222"}], [{"original_text": "After lunch the tour continued. ", "album_id": "72157624030292358", "photo_flickr_id": "4594714102", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48444", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after lunch the tour continued .", "storylet_id": "242223"}], [{"original_text": "He was introduced to the CO's.", "album_id": "72157624030292358", "photo_flickr_id": "4594102391", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48444", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was introduced to the co 's .", "storylet_id": "242224"}], [{"original_text": "The parents and kids relax a bit for their visit to the day camp.", "album_id": "72157624492137536", "photo_flickr_id": "4793227788", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48445", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parents and kids relax a bit for their visit to the day camp .", "storylet_id": "242225"}], [{"original_text": "This father explains how the new toy works to his intrigued son.", "album_id": "72157624492137536", "photo_flickr_id": "4793228066", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48445", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this father explains how the new toy works to his intrigued son .", "storylet_id": "242226"}], [{"original_text": "This young lady gets some help from her dad assembling her birdhouse.", "album_id": "72157624492137536", "photo_flickr_id": "4793228542", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48445", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this young lady gets some help from her dad assembling her birdhouse .", "storylet_id": "242227"}], [{"original_text": "These boys show off their creations with pride in their handiwork.", "album_id": "72157624492137536", "photo_flickr_id": "4793229520", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48445", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these boys show off their creations with pride in their handiwork .", "storylet_id": "242228"}], [{"original_text": "Many crafts projects, such as this one were available for the kids to enjoy.", "album_id": "72157624492137536", "photo_flickr_id": "4793233244", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48445", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many crafts projects , such as this one were available for the kids to enjoy .", "storylet_id": "242229"}], [{"original_text": "Lots of kids came to the craft fair.", "album_id": "72157624492137536", "photo_flickr_id": "4792595171", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "48446", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "lots of kids came to the craft fair .", "storylet_id": "242230"}], [{"original_text": "There was lots for everyone to do.", "album_id": "72157624492137536", "photo_flickr_id": "4792596797", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "48446", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was lots for everyone to do .", "storylet_id": "242231"}], [{"original_text": "And each kid had lots of fun.", "album_id": "72157624492137536", "photo_flickr_id": "4793228066", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "48446", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and each kid had lots of fun .", "storylet_id": "242232"}], [{"original_text": "There was even woodworking that some adults found fun to do.", "album_id": "72157624492137536", "photo_flickr_id": "4793231902", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "48446", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was even woodworking that some adults found fun to do .", "storylet_id": "242233"}], [{"original_text": "There was so much to do but not enough time to do it all.", "album_id": "72157624492137536", "photo_flickr_id": "4793230626", "setting": "first-2-pick-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "48446", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was so much to do but not enough time to do it all .", "storylet_id": "242234"}], [{"original_text": "Arts and crafts in the park. What better way to spend a Saturday afternoon with the kids?", "album_id": "72157624492137536", "photo_flickr_id": "4793227788", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48447", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "arts and crafts in the park . what better way to spend a saturday afternoon with the kids ?", "storylet_id": "242235"}], [{"original_text": "Today is an eco-friendly theme. We're making bird habitats to encourage small birds to breed in the area. ", "album_id": "72157624492137536", "photo_flickr_id": "4793228066", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48447", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today is an eco-friendly theme . we 're making bird habitats to encourage small birds to breed in the area .", "storylet_id": "242236"}], [{"original_text": "Maisie is becoming really quite good with the hammer here. Perhaps we've got a budding carpenter in our midst. Watch your fingers Jeff!", "album_id": "72157624492137536", "photo_flickr_id": "4793228542", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48447", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "maisie is becoming really quite good with the hammer here . perhaps we 've got a budding carpenter in our midst . watch your fingers [male] !", "storylet_id": "242237"}], [{"original_text": "The finished article and the twins are super proud of their work. Let's get these nailed up in the trees.", "album_id": "72157624492137536", "photo_flickr_id": "4793229520", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48447", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the finished article and the twins are super proud of their work . let 's get these nailed up in the trees .", "storylet_id": "242238"}], [{"original_text": "Time to pack up and leave. A fun day was had by all. We'll be back!", "album_id": "72157624492137536", "photo_flickr_id": "4793233244", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48447", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time to pack up and leave . a fun day was had by all . we 'll be back !", "storylet_id": "242239"}], [{"original_text": "Every year my family gets together for a reunion of sorts.", "album_id": "72157624492137536", "photo_flickr_id": "4793227788", "setting": "last-3-pick-old-and-tell", "worker_id": "BX4PUEJHKP3L1OA", "story_id": "48448", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every year my family gets together for a reunion of sorts .", "storylet_id": "242240"}], [{"original_text": "We start the day by planning an activity for all of the kids.", "album_id": "72157624492137536", "photo_flickr_id": "4793228066", "setting": "last-3-pick-old-and-tell", "worker_id": "BX4PUEJHKP3L1OA", "story_id": "48448", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we start the day by planning an activity for all of the kids .", "storylet_id": "242241"}], [{"original_text": "This year we decided to have them build bird houses.", "album_id": "72157624492137536", "photo_flickr_id": "4793228542", "setting": "last-3-pick-old-and-tell", "worker_id": "BX4PUEJHKP3L1OA", "story_id": "48448", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this year we decided to have them build bird houses .", "storylet_id": "242242"}], [{"original_text": "The process was made simple so the kids could finish quickly and without much help.", "album_id": "72157624492137536", "photo_flickr_id": "4793229520", "setting": "last-3-pick-old-and-tell", "worker_id": "BX4PUEJHKP3L1OA", "story_id": "48448", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the process was made simple so the kids could finish quickly and without much help .", "storylet_id": "242243"}], [{"original_text": "The day turned out to be a great success. ", "album_id": "72157624492137536", "photo_flickr_id": "4793233244", "setting": "last-3-pick-old-and-tell", "worker_id": "BX4PUEJHKP3L1OA", "story_id": "48448", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day turned out to be a great success .", "storylet_id": "242244"}], [{"original_text": "Today we had an picnic in the park", "album_id": "72157624492137536", "photo_flickr_id": "4793227788", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48449", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we had an picnic in the park", "storylet_id": "242245"}], [{"original_text": "We invited the whole familuy to come out.", "album_id": "72157624492137536", "photo_flickr_id": "4793228066", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48449", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we invited the whole familuy to come out .", "storylet_id": "242246"}], [{"original_text": " Here is uncle Bob and Sue making something.", "album_id": "72157624492137536", "photo_flickr_id": "4793228542", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48449", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is uncle [male] and [female] making something .", "storylet_id": "242247"}], [{"original_text": " Now the boys show off the birdhouses they had made", "album_id": "72157624492137536", "photo_flickr_id": "4793229520", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48449", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now the boys show off the birdhouses they had made", "storylet_id": "242248"}], [{"original_text": "Once we are we strat to clean up and go home.", "album_id": "72157624492137536", "photo_flickr_id": "4793233244", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48449", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once we are we strat to clean up and go home .", "storylet_id": "242249"}], [{"original_text": "We went to the fair this weekend and I could not believe how many people were there. Everyone was having a great time.", "album_id": "72157627071164103", "photo_flickr_id": "5938137496", "setting": "first-2-pick-and-tell", "worker_id": "E66ZGVFX1UDFG7L", "story_id": "48450", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the fair this weekend and i could not believe how many people were there . everyone was having a great time .", "storylet_id": "242250"}], [{"original_text": "There were shops set up for all kinds of crafts. I wanted to look at some hand made plates.", "album_id": "72157627071164103", "photo_flickr_id": "5937579321", "setting": "first-2-pick-and-tell", "worker_id": "E66ZGVFX1UDFG7L", "story_id": "48450", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were shops set up for all kinds of crafts . i wanted to look at some hand made plates .", "storylet_id": "242251"}], [{"original_text": "These glass vases were beautiful glittering in the sun.", "album_id": "72157627071164103", "photo_flickr_id": "5937580225", "setting": "first-2-pick-and-tell", "worker_id": "E66ZGVFX1UDFG7L", "story_id": "48450", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these glass vases were beautiful glittering in the sun .", "storylet_id": "242252"}], [{"original_text": "There was music playing everywhere. Is listened to a gentleman playing a traditional didjeridoo. ", "album_id": "72157627071164103", "photo_flickr_id": "5938136362", "setting": "first-2-pick-and-tell", "worker_id": "E66ZGVFX1UDFG7L", "story_id": "48450", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was music playing everywhere . is listened to a gentleman playing a traditional didjeridoo .", "storylet_id": "242253"}], [{"original_text": "Then it was off for more shopping. Even the kids found something to catch their eye.", "album_id": "72157627071164103", "photo_flickr_id": "5937579725", "setting": "first-2-pick-and-tell", "worker_id": "E66ZGVFX1UDFG7L", "story_id": "48450", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then it was off for more shopping . even the kids found something to catch their eye .", "storylet_id": "242254"}], [{"original_text": "we went to an arts festival", "album_id": "72157627071164103", "photo_flickr_id": "5938136362", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48451", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to an arts festival", "storylet_id": "242255"}], [{"original_text": "there was plenty to do and see", "album_id": "72157627071164103", "photo_flickr_id": "5937579725", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48451", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was plenty to do and see", "storylet_id": "242256"}], [{"original_text": "everyone had an amazing time ", "album_id": "72157627071164103", "photo_flickr_id": "5937580039", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48451", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone had an amazing time", "storylet_id": "242257"}], [{"original_text": "the art was incredible", "album_id": "72157627071164103", "photo_flickr_id": "5937580225", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48451", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the art was incredible", "storylet_id": "242258"}], [{"original_text": "so many people came to the event", "album_id": "72157627071164103", "photo_flickr_id": "5938137496", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48451", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so many people came to the event", "storylet_id": "242259"}], [{"original_text": "The family took a trip to a foreign bazaar. ", "album_id": "72157627071164103", "photo_flickr_id": "5938137496", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "48452", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family took a trip to a foreign bazaar .", "storylet_id": "242260"}], [{"original_text": "While looking around they noticed all sorts of colorful and lovely designs.", "album_id": "72157627071164103", "photo_flickr_id": "5937579321", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "48452", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while looking around they noticed all sorts of colorful and lovely designs .", "storylet_id": "242261"}], [{"original_text": "The mother especially liked the unique teapot designs.", "album_id": "72157627071164103", "photo_flickr_id": "5937580225", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "48452", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the mother especially liked the unique teapot designs .", "storylet_id": "242262"}], [{"original_text": "The grandparents tested out instruments, but they didn't sound so good.", "album_id": "72157627071164103", "photo_flickr_id": "5938136362", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "48452", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the grandparents tested out instruments , but they did n't sound so good .", "storylet_id": "242263"}], [{"original_text": "To avoid the embarrassing music from her grandparents, the daughter went to a neighboring shop and looked at cute dresses.", "album_id": "72157627071164103", "photo_flickr_id": "5937579725", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "48452", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to avoid the embarrassing music from her grandparents , the daughter went to a neighboring shop and looked at cute dresses .", "storylet_id": "242264"}], [{"original_text": "We go to the town fair.", "album_id": "72157627071164103", "photo_flickr_id": "5938137496", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48453", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we go to the town fair .", "storylet_id": "242265"}], [{"original_text": "There was a lot of food and we saw everyone we knew.", "album_id": "72157627071164103", "photo_flickr_id": "5937579321", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48453", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of food and we saw everyone we knew .", "storylet_id": "242266"}], [{"original_text": " They had awesome souvenirs for sale.", "album_id": "72157627071164103", "photo_flickr_id": "5937580225", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48453", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had awesome souvenirs for sale .", "storylet_id": "242267"}], [{"original_text": " then they put on a show.", "album_id": "72157627071164103", "photo_flickr_id": "5938136362", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48453", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they put on a show .", "storylet_id": "242268"}], [{"original_text": " We all had a blast, it was time to go", "album_id": "72157627071164103", "photo_flickr_id": "5937579725", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48453", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all had a blast , it was time to go", "storylet_id": "242269"}], [{"original_text": "There was lots to see and do at the festival, including listening to unusual instruments. ", "album_id": "72157627071164103", "photo_flickr_id": "5938136362", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48454", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was lots to see and do at the festival , including listening to unusual instruments .", "storylet_id": "242270"}], [{"original_text": "Many stalls had handmade clothing and one even had dresses specifically for little girls.", "album_id": "72157627071164103", "photo_flickr_id": "5937579725", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48454", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many stalls had handmade clothing and one even had dresses specifically for little girls .", "storylet_id": "242271"}], [{"original_text": "As part of the festival grounds, there were also numerous sculptures that one could touch.", "album_id": "72157627071164103", "photo_flickr_id": "5937580039", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48454", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as part of the festival grounds , there were also numerous sculptures that one could touch .", "storylet_id": "242272"}], [{"original_text": "Many stalls were adorned with handmade glass bottles.", "album_id": "72157627071164103", "photo_flickr_id": "5937580225", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48454", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many stalls were adorned with handmade glass bottles .", "storylet_id": "242273"}], [{"original_text": "By midday thousands were in attendance, the biggest turn out yet! ", "album_id": "72157627071164103", "photo_flickr_id": "5938137496", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48454", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by midday thousands were in attendance , the biggest turn out yet !", "storylet_id": "242274"}], [{"original_text": "A devastating hurricane has ruined a lot of homes in Colorado. Relief efforts are being discussed carefully by members of the armed forces and some community volunteers.", "album_id": "72157623509449753", "photo_flickr_id": "4439081106", "setting": "first-2-pick-and-tell", "worker_id": "IAP78Y5GSLA7P2H", "story_id": "48455", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a devastating hurricane has ruined a lot of homes in location . relief efforts are being discussed carefully by members of the armed forces and some community volunteers .", "storylet_id": "242275"}], [{"original_text": "The relief team captain talks about their efforts to make sure that everyone gets the relief they need and that no one gets left out.", "album_id": "72157623509449753", "photo_flickr_id": "4438306627", "setting": "first-2-pick-and-tell", "worker_id": "IAP78Y5GSLA7P2H", "story_id": "48455", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the relief team captain talks about their efforts to make sure that everyone gets the relief they need and that no one gets left out .", "storylet_id": "242276"}], [{"original_text": "Civilian volunteers enjoy devoting their time for a cause.", "album_id": "72157623509449753", "photo_flickr_id": "4438308417", "setting": "first-2-pick-and-tell", "worker_id": "IAP78Y5GSLA7P2H", "story_id": "48455", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "civilian volunteers enjoy devoting their time for a cause .", "storylet_id": "242277"}], [{"original_text": "Helping each other does do great things.", "album_id": "72157623509449753", "photo_flickr_id": "4440050155", "setting": "first-2-pick-and-tell", "worker_id": "IAP78Y5GSLA7P2H", "story_id": "48455", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "helping each other does do great things .", "storylet_id": "242278"}], [{"original_text": "Food and medicine successfully reached the victims of the calamity.", "album_id": "72157623509449753", "photo_flickr_id": "4440827046", "setting": "first-2-pick-and-tell", "worker_id": "IAP78Y5GSLA7P2H", "story_id": "48455", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "food and medicine successfully reached the victims of the calamity .", "storylet_id": "242279"}], [{"original_text": "Military and citizen volunteers gathered to discuss how to deal with the recent crisis.", "album_id": "72157623509449753", "photo_flickr_id": "4439081106", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "48456", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "military and citizen volunteers gathered to discuss how to deal with the recent crisis .", "storylet_id": "242280"}], [{"original_text": "City leaders got involved, learning exactly what needed to be done.", "album_id": "72157623509449753", "photo_flickr_id": "4439087920", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "48456", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "city leaders got involved , learning exactly what needed to be done .", "storylet_id": "242281"}], [{"original_text": "Some of the volunteers handled the sandbags.", "album_id": "72157623509449753", "photo_flickr_id": "4438319351", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "48456", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the volunteers handled the sandbags .", "storylet_id": "242282"}], [{"original_text": "Others were on hand to direct traffic.", "album_id": "72157623509449753", "photo_flickr_id": "4440815296", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "48456", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others were on hand to direct traffic .", "storylet_id": "242283"}], [{"original_text": "It truly was an inspiring group effort.", "album_id": "72157623509449753", "photo_flickr_id": "4440050155", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "48456", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it truly was an inspiring group effort .", "storylet_id": "242284"}], [{"original_text": "It was going to flood soon.", "album_id": "72157623509449753", "photo_flickr_id": "4439081106", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "48457", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was going to flood soon .", "storylet_id": "242285"}], [{"original_text": "It was explained how they were going to mitigate the flooding.", "album_id": "72157623509449753", "photo_flickr_id": "4438306627", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "48457", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was explained how they were going to mitigate the flooding .", "storylet_id": "242286"}], [{"original_text": "People volunteered to put up sandbags.", "album_id": "72157623509449753", "photo_flickr_id": "4438308417", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "48457", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people volunteered to put up sandbags .", "storylet_id": "242287"}], [{"original_text": "They set up a line to keep the bags moving.", "album_id": "72157623509449753", "photo_flickr_id": "4440050155", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "48457", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they set up a line to keep the bags moving .", "storylet_id": "242288"}], [{"original_text": "A lot of sandbags had to be put out.", "album_id": "72157623509449753", "photo_flickr_id": "4440827046", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "48457", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a lot of sandbags had to be put out .", "storylet_id": "242289"}], [{"original_text": "There was a high risk of flooding in the area so the local National Guard met with town officials to plan a response.", "album_id": "72157623509449753", "photo_flickr_id": "4439081106", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48458", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a high risk of flooding in the area so the local organization organization met with town officials to plan a response .", "storylet_id": "242290"}], [{"original_text": "Local residents watched excitedly as the barriers were set-up.", "album_id": "72157623509449753", "photo_flickr_id": "4439087920", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48458", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "local residents watched excitedly as the barriers were set-up .", "storylet_id": "242291"}], [{"original_text": "Everyone worked together to place the sandbags.", "album_id": "72157623509449753", "photo_flickr_id": "4438319351", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48458", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone worked together to place the sandbags .", "storylet_id": "242292"}], [{"original_text": "It required a lot of coordination to get all the materials in place.", "album_id": "72157623509449753", "photo_flickr_id": "4440815296", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48458", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it required a lot of coordination to get all the materials in place .", "storylet_id": "242293"}], [{"original_text": "It was a serious job but doing it right meant we could all start to lighten up a little.", "album_id": "72157623509449753", "photo_flickr_id": "4440050155", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48458", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a serious job but doing it right meant we could all start to lighten up a little .", "storylet_id": "242294"}], [{"original_text": "We had a meeting to discuss the plans", "album_id": "72157623509449753", "photo_flickr_id": "4439081106", "setting": "last-3-pick-old-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "48459", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a meeting to discuss the plans", "storylet_id": "242295"}], [{"original_text": "the director gave further directions outside", "album_id": "72157623509449753", "photo_flickr_id": "4439087920", "setting": "last-3-pick-old-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "48459", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the director gave further directions outside", "storylet_id": "242296"}], [{"original_text": "then we all got to work", "album_id": "72157623509449753", "photo_flickr_id": "4438319351", "setting": "last-3-pick-old-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "48459", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we all got to work", "storylet_id": "242297"}], [{"original_text": "everything was going smooth, and we were getting things done", "album_id": "72157623509449753", "photo_flickr_id": "4440815296", "setting": "last-3-pick-old-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "48459", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everything was going smooth , and we were getting things done", "storylet_id": "242298"}], [{"original_text": "Everyone chipped in, and it was a great success", "album_id": "72157623509449753", "photo_flickr_id": "4440050155", "setting": "last-3-pick-old-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "48459", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone chipped in , and it was a great success", "storylet_id": "242299"}], [{"original_text": "A bomb was made by this army.", "album_id": "72157626147554929", "photo_flickr_id": "5529583178", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48460", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a bomb was made by this army .", "storylet_id": "242300"}], [{"original_text": "It was very well as you can see it took many years to accomplish this.", "album_id": "72157626147554929", "photo_flickr_id": "5528996177", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48460", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was very well as you can see it took many years to accomplish this .", "storylet_id": "242301"}], [{"original_text": "The bomb is put away in a safe for safety reasons.", "album_id": "72157626147554929", "photo_flickr_id": "5531953401", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48460", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bomb is put away in a safe for safety reasons .", "storylet_id": "242302"}], [{"original_text": "The general talks about the power it has.", "album_id": "72157626147554929", "photo_flickr_id": "5531953959", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48460", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the general talks about the power it has .", "storylet_id": "242303"}], [{"original_text": "The officials come in and show the paperwork on the bomb.", "album_id": "72157626147554929", "photo_flickr_id": "5532537308", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48460", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the officials come in and show the paperwork on the bomb .", "storylet_id": "242304"}], [{"original_text": "we are getting ready for war", "album_id": "72157626147554929", "photo_flickr_id": "5529583354", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48461", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are getting ready for war", "storylet_id": "242305"}], [{"original_text": "in case the zombies come we are ready", "album_id": "72157626147554929", "photo_flickr_id": "5529583746", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48461", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in case the zombies come we are ready", "storylet_id": "242306"}], [{"original_text": "we have all we need", "album_id": "72157626147554929", "photo_flickr_id": "5528996177", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48461", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we have all we need", "storylet_id": "242307"}], [{"original_text": "nobody can take us down", "album_id": "72157626147554929", "photo_flickr_id": "5532536852", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48461", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "nobody can take us down", "storylet_id": "242308"}], [{"original_text": "we are the proud soldiers ", "album_id": "72157626147554929", "photo_flickr_id": "5532536954", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48461", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we are the proud soldiers", "storylet_id": "242309"}], [{"original_text": "Weapons of mass destruction were being stored in boxes.", "album_id": "72157626147554929", "photo_flickr_id": "5529583178", "setting": "last-3-pick-old-and-tell", "worker_id": "KKR3VVKPOGEK6I0", "story_id": "48462", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "weapons of mass destruction were being stored in boxes .", "storylet_id": "242310"}], [{"original_text": "One combat weapon was carelessly left out of storage.", "album_id": "72157626147554929", "photo_flickr_id": "5528996177", "setting": "last-3-pick-old-and-tell", "worker_id": "KKR3VVKPOGEK6I0", "story_id": "48462", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one combat weapon was carelessly left out of storage .", "storylet_id": "242311"}], [{"original_text": "One army personnel tries to hide their excess of weapons.", "album_id": "72157626147554929", "photo_flickr_id": "5531953401", "setting": "last-3-pick-old-and-tell", "worker_id": "KKR3VVKPOGEK6I0", "story_id": "48462", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one army personnel tries to hide their excess of weapons .", "storylet_id": "242312"}], [{"original_text": "Their commander explains to the public their innocence.", "album_id": "72157626147554929", "photo_flickr_id": "5531953959", "setting": "last-3-pick-old-and-tell", "worker_id": "KKR3VVKPOGEK6I0", "story_id": "48462", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their commander explains to the public their innocence .", "storylet_id": "242313"}], [{"original_text": "The FBI presents a warrant to search the boxes anyway.", "album_id": "72157626147554929", "photo_flickr_id": "5532537308", "setting": "last-3-pick-old-and-tell", "worker_id": "KKR3VVKPOGEK6I0", "story_id": "48462", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the organization presents a warrant to search the boxes anyway .", "storylet_id": "242314"}], [{"original_text": "Careful, that's live. ", "album_id": "72157626147554929", "photo_flickr_id": "5529583354", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48463", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "careful , that 's live .", "storylet_id": "242315"}], [{"original_text": "One spark and this place would blow. ", "album_id": "72157626147554929", "photo_flickr_id": "5529583746", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48463", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one spark and this place would blow .", "storylet_id": "242316"}], [{"original_text": "Kaboom, that'd be all she wrote. ", "album_id": "72157626147554929", "photo_flickr_id": "5528996177", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48463", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "kaboom , that 'd be all she wrote .", "storylet_id": "242317"}], [{"original_text": "Don't forget the sandbags. ", "album_id": "72157626147554929", "photo_flickr_id": "5532536852", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48463", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "do n't forget the sandbags .", "storylet_id": "242318"}], [{"original_text": "Easy, easy with those torpedoes.", "album_id": "72157626147554929", "photo_flickr_id": "5532536954", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48463", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "easy , easy with those torpedoes .", "storylet_id": "242319"}], [{"original_text": "This is a big explosive shell. ", "album_id": "72157626147554929", "photo_flickr_id": "5529583354", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48464", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a big explosive shell .", "storylet_id": "242320"}], [{"original_text": "There are lots of shells and other weapons in the share house. ", "album_id": "72157626147554929", "photo_flickr_id": "5529583746", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48464", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are lots of shells and other weapons in the share house .", "storylet_id": "242321"}], [{"original_text": "The weapons were unboxed and inspected. ", "album_id": "72157626147554929", "photo_flickr_id": "5528996177", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48464", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the weapons were unboxed and inspected .", "storylet_id": "242322"}], [{"original_text": "The shells were brought out for inspection. ", "album_id": "72157626147554929", "photo_flickr_id": "5532536852", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48464", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the shells were brought out for inspection .", "storylet_id": "242323"}], [{"original_text": "They prepared to load them on ship. ", "album_id": "72157626147554929", "photo_flickr_id": "5532536954", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48464", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they prepared to load them on ship .", "storylet_id": "242324"}], [{"original_text": "I went to a girls rugby match today.", "album_id": "72157624289348266", "photo_flickr_id": "4706310787", "setting": "first-2-pick-and-tell", "worker_id": "QVHO22WTEA9BT3R", "story_id": "48465", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a girls rugby match today .", "storylet_id": "242325"}], [{"original_text": "The girls were pretty big.", "album_id": "72157624289348266", "photo_flickr_id": "4706307467", "setting": "first-2-pick-and-tell", "worker_id": "QVHO22WTEA9BT3R", "story_id": "48465", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girls were pretty big .", "storylet_id": "242326"}], [{"original_text": "One of the smaller girls broke away with the ball.", "album_id": "72157624289348266", "photo_flickr_id": "4706949238", "setting": "first-2-pick-and-tell", "worker_id": "QVHO22WTEA9BT3R", "story_id": "48465", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the smaller girls broke away with the ball .", "storylet_id": "242327"}], [{"original_text": "This big girl took on 2 smaller ones.", "album_id": "72157624289348266", "photo_flickr_id": "4706311239", "setting": "first-2-pick-and-tell", "worker_id": "QVHO22WTEA9BT3R", "story_id": "48465", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this big girl took on 2 smaller ones .", "storylet_id": "242328"}], [{"original_text": "The refs were a little confused, but we had fun.", "album_id": "72157624289348266", "photo_flickr_id": "4706950474", "setting": "first-2-pick-and-tell", "worker_id": "QVHO22WTEA9BT3R", "story_id": "48465", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the refs were a little confused , but we had fun .", "storylet_id": "242329"}], [{"original_text": "The home team was ready for today's big game.", "album_id": "72157624289348266", "photo_flickr_id": "4706307467", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48466", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the home team was ready for today 's big game .", "storylet_id": "242330"}], [{"original_text": "The visiting team huddles for a bit prior to the start of the game.", "album_id": "72157624289348266", "photo_flickr_id": "4706308887", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48466", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the visiting team huddles for a bit prior to the start of the game .", "storylet_id": "242331"}], [{"original_text": "There seemed to be some sort of issue that needed to be resolved between the coaches.", "album_id": "72157624289348266", "photo_flickr_id": "4706309107", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48466", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there seemed to be some sort of issue that needed to be resolved between the coaches .", "storylet_id": "242332"}], [{"original_text": "After a few minutes, some technicality was explained and soon everyone took position.", "album_id": "72157624289348266", "photo_flickr_id": "4706309325", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48466", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a few minutes , some technicality was explained and soon everyone took position .", "storylet_id": "242333"}], [{"original_text": "The game started and proved to be a very exciting afternoon.", "album_id": "72157624289348266", "photo_flickr_id": "4706310787", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48466", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the game started and proved to be a very exciting afternoon .", "storylet_id": "242334"}], [{"original_text": "At this school, soccer ruled. ", "album_id": "72157624289348266", "photo_flickr_id": "4706310787", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48467", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at this school , soccer ruled .", "storylet_id": "242335"}], [{"original_text": "If you couldn't play you could stand on the side and look like you did. ", "album_id": "72157624289348266", "photo_flickr_id": "4706307467", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48467", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "if you could n't play you could stand on the side and look like you did .", "storylet_id": "242336"}], [{"original_text": "Get that ball, ya bruiser. ", "album_id": "72157624289348266", "photo_flickr_id": "4706949238", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48467", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "get that ball , ya bruiser .", "storylet_id": "242337"}], [{"original_text": "Give me that ball. ", "album_id": "72157624289348266", "photo_flickr_id": "4706311239", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48467", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "give me that ball .", "storylet_id": "242338"}], [{"original_text": "Ut oh, a whistle was blown, make that two whistles. ", "album_id": "72157624289348266", "photo_flickr_id": "4706950474", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48467", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ut oh , a whistle was blown , make that two whistles .", "storylet_id": "242339"}], [{"original_text": "The family went to a women's football game.", "album_id": "72157624289348266", "photo_flickr_id": "4706307467", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48468", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went to a women 's football game .", "storylet_id": "242340"}], [{"original_text": "The opposing team looked intimidating!", "album_id": "72157624289348266", "photo_flickr_id": "4706308887", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48468", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the opposing team looked intimidating !", "storylet_id": "242341"}], [{"original_text": "Uh oh. The coach is getting on somebody!", "album_id": "72157624289348266", "photo_flickr_id": "4706309107", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48468", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "uh oh . the coach is getting on somebody !", "storylet_id": "242342"}], [{"original_text": "They wondered what the opposing team was discussing. They look serious.", "album_id": "72157624289348266", "photo_flickr_id": "4706309325", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48468", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they wondered what the opposing team was discussing . they look serious .", "storylet_id": "242343"}], [{"original_text": "This is it girls! Win! Win! Win!", "album_id": "72157624289348266", "photo_flickr_id": "4706310787", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48468", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is it girls ! win ! win ! win !", "storylet_id": "242344"}], [{"original_text": "girls getting ready for a game against the other team ", "album_id": "72157624289348266", "photo_flickr_id": "4706307467", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "48469", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "girls getting ready for a game against the other team", "storylet_id": "242345"}], [{"original_text": "other group getting ready also", "album_id": "72157624289348266", "photo_flickr_id": "4706308887", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "48469", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "other group getting ready also", "storylet_id": "242346"}], [{"original_text": "the coach getting ready also for a foot ball game ", "album_id": "72157624289348266", "photo_flickr_id": "4706309107", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "48469", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the coach getting ready also for a foot ball game", "storylet_id": "242347"}], [{"original_text": "the girls don't look too happy", "album_id": "72157624289348266", "photo_flickr_id": "4706309325", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "48469", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the girls do n't look too happy", "storylet_id": "242348"}], [{"original_text": "the two team lining up getting ready for the game", "album_id": "72157624289348266", "photo_flickr_id": "4706310787", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "48469", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the two team lining up getting ready for the game", "storylet_id": "242349"}], [{"original_text": "This small city sits outside a large mountain range.", "album_id": "72157627332233871", "photo_flickr_id": "6053198753", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48470", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this small city sits outside a large mountain range .", "storylet_id": "242350"}], [{"original_text": "There is a small window overlooking the town.", "album_id": "72157627332233871", "photo_flickr_id": "6061887344", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48470", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is a small window overlooking the town .", "storylet_id": "242351"}], [{"original_text": "A small house is located in town and people enjoy visiting it.", "album_id": "72157627332233871", "photo_flickr_id": "6059468949", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48470", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a small house is located in town and people enjoy visiting it .", "storylet_id": "242352"}], [{"original_text": "The town itself is run down and old but has a lot of soul.", "album_id": "72157627332233871", "photo_flickr_id": "6143698378", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48470", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the town itself is run down and old but has a lot of soul .", "storylet_id": "242353"}], [{"original_text": "The building with the tree in front of it is a magistrates building.", "album_id": "72157627332233871", "photo_flickr_id": "6178288219", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48470", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the building with the tree in front of it is a magistrates building .", "storylet_id": "242354"}], [{"original_text": "we went to a mexican village", "album_id": "72157627332233871", "photo_flickr_id": "6053198753", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48471", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a mexican village", "storylet_id": "242355"}], [{"original_text": "the colors were very vivid on the houses", "album_id": "72157627332233871", "photo_flickr_id": "6059468949", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48471", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the colors were very vivid on the houses", "storylet_id": "242356"}], [{"original_text": "there was even someone painting a house while we were there ", "album_id": "72157627332233871", "photo_flickr_id": "6064266349", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48471", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was even someone painting a house while we were there", "storylet_id": "242357"}], [{"original_text": "the whole town was incredibly bright", "album_id": "72157627332233871", "photo_flickr_id": "6143698378", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48471", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole town was incredibly bright", "storylet_id": "242358"}], [{"original_text": "the buildings date back to the 1800's", "album_id": "72157627332233871", "photo_flickr_id": "6178288219", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48471", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the buildings date back to the 1800 's", "storylet_id": "242359"}], [{"original_text": "This our first trip to an island.", "album_id": "72157627332233871", "photo_flickr_id": "6053198753", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48472", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this our first trip to an island .", "storylet_id": "242360"}], [{"original_text": "on the island people keep their windows open.", "album_id": "72157627332233871", "photo_flickr_id": "6061887344", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48472", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on the island people keep their windows open .", "storylet_id": "242361"}], [{"original_text": " We got to walk arond for a bit", "album_id": "72157627332233871", "photo_flickr_id": "6059468949", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48472", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got to walk arond for a bit", "storylet_id": "242362"}], [{"original_text": "Then we go tot see this old building.", "album_id": "72157627332233871", "photo_flickr_id": "6143698378", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48472", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we go tot see this old building .", "storylet_id": "242363"}], [{"original_text": " After that we head downtown to finish the day ", "album_id": "72157627332233871", "photo_flickr_id": "6178288219", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48472", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that we head downtown to finish the day", "storylet_id": "242364"}], [{"original_text": "the mountains are seen in the distance behind some beautiful apartments", "album_id": "72157627332233871", "photo_flickr_id": "6053198753", "setting": "last-3-pick-old-and-tell", "worker_id": "CTCAFGM0ZQG5JN6", "story_id": "48473", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the mountains are seen in the distance behind some beautiful apartments", "storylet_id": "242365"}], [{"original_text": "all of us deciding where we are going to eat.", "album_id": "72157627332233871", "photo_flickr_id": "6059468949", "setting": "last-3-pick-old-and-tell", "worker_id": "CTCAFGM0ZQG5JN6", "story_id": "48473", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of us deciding where we are going to eat .", "storylet_id": "242366"}], [{"original_text": "we see some painters redoing some buildings.", "album_id": "72157627332233871", "photo_flickr_id": "6064266349", "setting": "last-3-pick-old-and-tell", "worker_id": "CTCAFGM0ZQG5JN6", "story_id": "48473", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we see some painters redoing some buildings .", "storylet_id": "242367"}], [{"original_text": "the whole downtown area is being restored.", "album_id": "72157627332233871", "photo_flickr_id": "6143698378", "setting": "last-3-pick-old-and-tell", "worker_id": "CTCAFGM0ZQG5JN6", "story_id": "48473", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole downtown area is being restored .", "storylet_id": "242368"}], [{"original_text": "it really looks great after the painters.", "album_id": "72157627332233871", "photo_flickr_id": "6178288219", "setting": "last-3-pick-old-and-tell", "worker_id": "CTCAFGM0ZQG5JN6", "story_id": "48473", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it really looks great after the painters .", "storylet_id": "242369"}], [{"original_text": "Our hotel was tucked away in the hills, and we had a great view.", "album_id": "72157627332233871", "photo_flickr_id": "6053198753", "setting": "last-3-pick-old-and-tell", "worker_id": "GJWXDYJZKHBU774", "story_id": "48474", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our hotel was tucked away in the hills , and we had a great view .", "storylet_id": "242370"}], [{"original_text": "Here in the window to my bedroom. I left it open because I liked hearing the street noises below.", "album_id": "72157627332233871", "photo_flickr_id": "6061887344", "setting": "last-3-pick-old-and-tell", "worker_id": "GJWXDYJZKHBU774", "story_id": "48474", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here in the window to my bedroom . i left it open because i liked hearing the street noises below .", "storylet_id": "242371"}], [{"original_text": "This elderly couple could be seen each morning watching passersby.", "album_id": "72157627332233871", "photo_flickr_id": "6059468949", "setting": "last-3-pick-old-and-tell", "worker_id": "GJWXDYJZKHBU774", "story_id": "48474", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this elderly couple could be seen each morning watching passersby .", "storylet_id": "242372"}], [{"original_text": "I loved the colors of the buildings. You never see combinations like this back home!", "album_id": "72157627332233871", "photo_flickr_id": "6143698378", "setting": "last-3-pick-old-and-tell", "worker_id": "GJWXDYJZKHBU774", "story_id": "48474", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i loved the colors of the buildings . you never see combinations like this back home !", "storylet_id": "242373"}], [{"original_text": "Here is the avenue I took each day from the hotel to the train.", "album_id": "72157627332233871", "photo_flickr_id": "6178288219", "setting": "last-3-pick-old-and-tell", "worker_id": "GJWXDYJZKHBU774", "story_id": "48474", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is the avenue i took each day from the hotel to the train .", "storylet_id": "242374"}], [{"original_text": "A couple went out to research local flora.", "album_id": "72157600006405360", "photo_flickr_id": "425113508", "setting": "first-2-pick-and-tell", "worker_id": "NVCRCURYXZDCOF7", "story_id": "48475", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple went out to research local flora .", "storylet_id": "242375"}], [{"original_text": "The husband took pictures of different plants.", "album_id": "72157600006405360", "photo_flickr_id": "425114749", "setting": "first-2-pick-and-tell", "worker_id": "NVCRCURYXZDCOF7", "story_id": "48475", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the husband took pictures of different plants .", "storylet_id": "242376"}], [{"original_text": "These trees were his favorite.", "album_id": "72157600006405360", "photo_flickr_id": "425113948", "setting": "first-2-pick-and-tell", "worker_id": "NVCRCURYXZDCOF7", "story_id": "48475", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these trees were his favorite .", "storylet_id": "242377"}], [{"original_text": "The wife enjoyed these flowers growing out of two rocks.", "album_id": "72157600006405360", "photo_flickr_id": "425116098", "setting": "first-2-pick-and-tell", "worker_id": "NVCRCURYXZDCOF7", "story_id": "48475", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wife enjoyed these flowers growing out of two rocks .", "storylet_id": "242378"}], [{"original_text": "They recorded their findings when they returned home.", "album_id": "72157600006405360", "photo_flickr_id": "425114521", "setting": "first-2-pick-and-tell", "worker_id": "NVCRCURYXZDCOF7", "story_id": "48475", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they recorded their findings when they returned home .", "storylet_id": "242379"}], [{"original_text": "Jack and Jill went for a hike. ", "album_id": "72157600006405360", "photo_flickr_id": "425113508", "setting": "first-2-pick-and-tell", "worker_id": "7QPLAFHUVOQNG12", "story_id": "48476", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] went for a hike .", "storylet_id": "242380"}], [{"original_text": "They cam across a nature photographer. ", "album_id": "72157600006405360", "photo_flickr_id": "425114749", "setting": "first-2-pick-and-tell", "worker_id": "7QPLAFHUVOQNG12", "story_id": "48476", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they cam across a nature photographer .", "storylet_id": "242381"}], [{"original_text": "The photographer asked jill to pose for him. ", "album_id": "72157600006405360", "photo_flickr_id": "425114371", "setting": "first-2-pick-and-tell", "worker_id": "7QPLAFHUVOQNG12", "story_id": "48476", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the photographer asked jill to pose for him .", "storylet_id": "242382"}], [{"original_text": "So she did in a house.", "album_id": "72157600006405360", "photo_flickr_id": "425114521", "setting": "first-2-pick-and-tell", "worker_id": "7QPLAFHUVOQNG12", "story_id": "48476", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so she did in a house .", "storylet_id": "242383"}], [{"original_text": "And she also also posed outside. ", "album_id": "72157600006405360", "photo_flickr_id": "425114991", "setting": "first-2-pick-and-tell", "worker_id": "7QPLAFHUVOQNG12", "story_id": "48476", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and she also also posed outside .", "storylet_id": "242384"}], [{"original_text": "Sal and i decided to take a nature hike today. We both wore hats to protect from the sun.", "album_id": "72157600006405360", "photo_flickr_id": "425113508", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "48477", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sal and i decided to take a nature hike today . we both wore hats to protect from the sun .", "storylet_id": "242385"}], [{"original_text": "Sal had a great time taking pictures with the camera i got him for his birthday.", "album_id": "72157600006405360", "photo_flickr_id": "425114749", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "48477", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sal had a great time taking pictures with the camera i got him for his birthday .", "storylet_id": "242386"}], [{"original_text": "We found this cool old tree and sal snapped a picture.", "album_id": "72157600006405360", "photo_flickr_id": "425113948", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "48477", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we found this cool old tree and sal snapped a picture .", "storylet_id": "242387"}], [{"original_text": "This is me behind a rock relaxing a bit from the hike.", "album_id": "72157600006405360", "photo_flickr_id": "425116098", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "48477", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is me behind a rock relaxing a bit from the hike .", "storylet_id": "242388"}], [{"original_text": "We finally found our destination i thought we were going for a hike but sal surpised me with a cabin in the woods.", "album_id": "72157600006405360", "photo_flickr_id": "425114521", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "48477", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finally found our destination i thought we were going for a hike but sal surpised me with a cabin in the woods .", "storylet_id": "242389"}], [{"original_text": "The pair went out on a hike.", "album_id": "72157600006405360", "photo_flickr_id": "425113508", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "48478", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the pair went out on a hike .", "storylet_id": "242390"}], [{"original_text": "He stopped to take a picture of a bug on the ground.", "album_id": "72157600006405360", "photo_flickr_id": "425114749", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "48478", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he stopped to take a picture of a bug on the ground .", "storylet_id": "242391"}], [{"original_text": "They took a picture of the hill in the background.", "album_id": "72157600006405360", "photo_flickr_id": "425114371", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "48478", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they took a picture of the hill in the background .", "storylet_id": "242392"}], [{"original_text": "They signed the guest book at the cottage.", "album_id": "72157600006405360", "photo_flickr_id": "425114521", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "48478", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they signed the guest book at the cottage .", "storylet_id": "242393"}], [{"original_text": "They took a picture of the cottage in the distance.", "album_id": "72157600006405360", "photo_flickr_id": "425114991", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "48478", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they took a picture of the cottage in the distance .", "storylet_id": "242394"}], [{"original_text": "Me and my dad are both ecologists and we always go on trips together.", "album_id": "72157600006405360", "photo_flickr_id": "425113508", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48479", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and my dad are both ecologists and we always go on trips together .", "storylet_id": "242395"}], [{"original_text": "When documenting shrub growth you need a strong attention to detail.", "album_id": "72157600006405360", "photo_flickr_id": "425114749", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48479", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when documenting shrub growth you need a strong attention to detail .", "storylet_id": "242396"}], [{"original_text": "Some of these trees are hundreds of years old.", "album_id": "72157600006405360", "photo_flickr_id": "425113948", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48479", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of these trees are hundreds of years old .", "storylet_id": "242397"}], [{"original_text": "My dad says I am always taking it too easy.", "album_id": "72157600006405360", "photo_flickr_id": "425116098", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48479", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my dad says i am always taking it too easy .", "storylet_id": "242398"}], [{"original_text": "After a long day out we had to log our findings.", "album_id": "72157600006405360", "photo_flickr_id": "425114521", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48479", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long day out we had to log our findings .", "storylet_id": "242399"}], [{"original_text": "The site for the excavations was headed up by a small team of researchers from a local university.", "album_id": "72157624300611300", "photo_flickr_id": "4710727991", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48480", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the site for the excavations was headed up by a small team of researchers from a local university .", "storylet_id": "242400"}], [{"original_text": "They were happy to be able to be working on a site so close to the city.", "album_id": "72157624300611300", "photo_flickr_id": "4711373072", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48480", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were happy to be able to be working on a site so close to the city .", "storylet_id": "242401"}], [{"original_text": "The team excavated small square sections, on at a time.", "album_id": "72157624300611300", "photo_flickr_id": "4710736143", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48480", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the team excavated small square sections , on at a time .", "storylet_id": "242402"}], [{"original_text": "The dirt was sifted through box frames with wire screening.", "album_id": "72157624300611300", "photo_flickr_id": "4711387398", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48480", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dirt was sifted through box frames with wire screening .", "storylet_id": "242403"}], [{"original_text": "These are a few of the relics that have been uncovered so far.", "album_id": "72157624300611300", "photo_flickr_id": "4710753367", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48480", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these are a few of the relics that have been uncovered so far .", "storylet_id": "242404"}], [{"original_text": "The men are excavating looking for artifacts.", "album_id": "72157624300611300", "photo_flickr_id": "4711369098", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48481", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the men are excavating looking for artifacts .", "storylet_id": "242405"}], [{"original_text": "They have troughs set up to clean anything that they do find.", "album_id": "72157624300611300", "photo_flickr_id": "4711373072", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48481", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they have troughs set up to clean anything that they do find .", "storylet_id": "242406"}], [{"original_text": "They dug a huge hole in the ground as they have been looking.", "album_id": "72157624300611300", "photo_flickr_id": "4710736143", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48481", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they dug a huge hole in the ground as they have been looking .", "storylet_id": "242407"}], [{"original_text": "There are buckets by the hole where they put items in.", "album_id": "72157624300611300", "photo_flickr_id": "4710750715", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48481", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are buckets by the hole where they put items in .", "storylet_id": "242408"}], [{"original_text": "One item that was found was an old vintage bottle.", "album_id": "72157624300611300", "photo_flickr_id": "4711394144", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48481", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one item that was found was an old vintage bottle .", "storylet_id": "242409"}], [{"original_text": "Sign in a trash can while they work in the back.", "album_id": "72157624300611300", "photo_flickr_id": "4710727991", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "48482", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sign in a trash can while they work in the back .", "storylet_id": "242410"}], [{"original_text": "The workers are working and getting ready to start to build. ", "album_id": "72157624300611300", "photo_flickr_id": "4711373072", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "48482", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the workers are working and getting ready to start to build .", "storylet_id": "242411"}], [{"original_text": "They start to dig up soil to build what they are going to build.", "album_id": "72157624300611300", "photo_flickr_id": "4710736143", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "48482", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they start to dig up soil to build what they are going to build .", "storylet_id": "242412"}], [{"original_text": "They take the dirt/soil and put it inside some wood.", "album_id": "72157624300611300", "photo_flickr_id": "4711387398", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "48482", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they take the dirt/soil and put it inside some wood .", "storylet_id": "242413"}], [{"original_text": "Then they begin test to see what kind of soil it is.", "album_id": "72157624300611300", "photo_flickr_id": "4710753367", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "48482", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then they begin test to see what kind of soil it is .", "storylet_id": "242414"}], [{"original_text": "The archaeologists get to work bright and early in the morning.", "album_id": "72157624300611300", "photo_flickr_id": "4710727991", "setting": "last-3-pick-old-and-tell", "worker_id": "KKR3VVKPOGEK6I0", "story_id": "48483", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the archaeologists get to work bright and early in the morning .", "storylet_id": "242415"}], [{"original_text": "Three of them are sifting through rocks.", "album_id": "72157624300611300", "photo_flickr_id": "4711373072", "setting": "last-3-pick-old-and-tell", "worker_id": "KKR3VVKPOGEK6I0", "story_id": "48483", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "three of them are sifting through rocks .", "storylet_id": "242416"}], [{"original_text": "One of them is digging a rectangle hole.", "album_id": "72157624300611300", "photo_flickr_id": "4710736143", "setting": "last-3-pick-old-and-tell", "worker_id": "KKR3VVKPOGEK6I0", "story_id": "48483", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of them is digging a rectangle hole .", "storylet_id": "242417"}], [{"original_text": "Another sifts through the rubble more carefully than the others.", "album_id": "72157624300611300", "photo_flickr_id": "4711387398", "setting": "last-3-pick-old-and-tell", "worker_id": "KKR3VVKPOGEK6I0", "story_id": "48483", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another sifts through the rubble more carefully than the others .", "storylet_id": "242418"}], [{"original_text": "So far, they've found a bottle in the excavation site.", "album_id": "72157624300611300", "photo_flickr_id": "4710753367", "setting": "last-3-pick-old-and-tell", "worker_id": "KKR3VVKPOGEK6I0", "story_id": "48483", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so far , they 've found a bottle in the excavation site .", "storylet_id": "242419"}], [{"original_text": "The excavation crew were on a dig.", "album_id": "72157624300611300", "photo_flickr_id": "4710727991", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48484", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the excavation crew were on a dig .", "storylet_id": "242420"}], [{"original_text": "They set up sifting boxes so they could sift through the dirt that was dug up.", "album_id": "72157624300611300", "photo_flickr_id": "4711373072", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48484", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they set up sifting boxes so they could sift through the dirt that was dug up .", "storylet_id": "242421"}], [{"original_text": "It was hard work digging all that dirt.", "album_id": "72157624300611300", "photo_flickr_id": "4710736143", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48484", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was hard work digging all that dirt .", "storylet_id": "242422"}], [{"original_text": "Each sifting box was painstakingly checked for items.", "album_id": "72157624300611300", "photo_flickr_id": "4711387398", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48484", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "each sifting box was painstakingly checked for items .", "storylet_id": "242423"}], [{"original_text": "These are some of the items that were found.", "album_id": "72157624300611300", "photo_flickr_id": "4710753367", "setting": "last-3-pick-old-and-tell", "worker_id": "9BPENQQ99T1W8J6", "story_id": "48484", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these are some of the items that were found .", "storylet_id": "242424"}], [{"original_text": "A storm was coming to the area. Many people were making precautions. The city just sat there, not knowing what was coming.", "album_id": "1164233", "photo_flickr_id": "53696512", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "48485", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a storm was coming to the area . many people were making precautions . the city just sat there , not knowing what was coming .", "storylet_id": "242425"}], [{"original_text": "First, was a blast of snow that hit the area. It looked like a lightening strike.", "album_id": "1164233", "photo_flickr_id": "53696529", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "48485", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first , was a blast of snow that hit the area . it looked like a lightening strike .", "storylet_id": "242426"}], [{"original_text": "Later, the snow covered the ground. The snow made it difficult to walk through the city.", "album_id": "1164233", "photo_flickr_id": "53696541", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "48485", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "later , the snow covered the ground . the snow made it difficult to walk through the city .", "storylet_id": "242427"}], [{"original_text": "Many people were ready to help out their neighbors and friends after the storm hit.", "album_id": "1164233", "photo_flickr_id": "53696577", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "48485", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many people were ready to help out their neighbors and friends after the storm hit .", "storylet_id": "242428"}], [{"original_text": "Though it was dangerous, it was beautiful too. The snow covered ground looked calm and peaceful.", "album_id": "1164233", "photo_flickr_id": "53696616", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "48485", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "though it was dangerous , it was beautiful too . the snow covered ground looked calm and peaceful .", "storylet_id": "242429"}], [{"original_text": "A rainy day with a convey of trucks waiting to unload.", "album_id": "1164233", "photo_flickr_id": "53696512", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48486", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a rainy day with a convey of trucks waiting to unload .", "storylet_id": "242430"}], [{"original_text": "The man checks in the truck making sure all is correct.", "album_id": "1164233", "photo_flickr_id": "53696515", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48486", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man checks in the truck making sure all is correct .", "storylet_id": "242431"}], [{"original_text": "The truck driver and checker chat outside.", "album_id": "1164233", "photo_flickr_id": "53696558", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48486", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the truck driver and checker chat outside .", "storylet_id": "242432"}], [{"original_text": "A picture of the drivers and checkers.", "album_id": "1164233", "photo_flickr_id": "53696577", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48486", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a picture of the drivers and checkers .", "storylet_id": "242433"}], [{"original_text": "Another truck waiting to be unloaded.", "album_id": "1164233", "photo_flickr_id": "53696642", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48486", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "another truck waiting to be unloaded .", "storylet_id": "242434"}], [{"original_text": "The hard workers did not let the rain prevent them from making their deliveries.", "album_id": "1164233", "photo_flickr_id": "53696512", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "48487", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the hard workers did not let the rain prevent them from making their deliveries .", "storylet_id": "242435"}], [{"original_text": "They stopped for a quick talk before heading off for more deliveries. ", "album_id": "1164233", "photo_flickr_id": "53696529", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "48487", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they stopped for a quick talk before heading off for more deliveries .", "storylet_id": "242436"}], [{"original_text": "He is clarifying the order before driving off. ", "album_id": "1164233", "photo_flickr_id": "53696541", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "48487", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he is clarifying the order before driving off .", "storylet_id": "242437"}], [{"original_text": "They all found time for a quick group picture. ", "album_id": "1164233", "photo_flickr_id": "53696577", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "48487", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they all found time for a quick group picture .", "storylet_id": "242438"}], [{"original_text": "These guys wanted to snap a quick picture in front of the truck. ", "album_id": "1164233", "photo_flickr_id": "53696616", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "48487", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these guys wanted to snap a quick picture in front of the truck .", "storylet_id": "242439"}], [{"original_text": "I drove by and saw a truck pulled over on the highway.", "album_id": "1164233", "photo_flickr_id": "53696512", "setting": "last-3-pick-old-and-tell", "worker_id": "U584YH6GOYBU353", "story_id": "48488", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i drove by and saw a truck pulled over on the highway .", "storylet_id": "242440"}], [{"original_text": "He told me he was sick of his company that he worked for because his truck kept breaking down.", "album_id": "1164233", "photo_flickr_id": "53696529", "setting": "last-3-pick-old-and-tell", "worker_id": "U584YH6GOYBU353", "story_id": "48488", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he told me he was sick of his company that he worked for because his truck kept breaking down .", "storylet_id": "242441"}], [{"original_text": "I gave him my contact info for my trucking company.", "album_id": "1164233", "photo_flickr_id": "53696541", "setting": "last-3-pick-old-and-tell", "worker_id": "U584YH6GOYBU353", "story_id": "48488", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i gave him my contact info for my trucking company .", "storylet_id": "242442"}], [{"original_text": "He then quit his company and joined mine.", "album_id": "1164233", "photo_flickr_id": "53696577", "setting": "last-3-pick-old-and-tell", "worker_id": "U584YH6GOYBU353", "story_id": "48488", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he then quit his company and joined mine .", "storylet_id": "242443"}], [{"original_text": "He quickly became acquainted with the fellow workers of the new company.", "album_id": "1164233", "photo_flickr_id": "53696616", "setting": "last-3-pick-old-and-tell", "worker_id": "U584YH6GOYBU353", "story_id": "48488", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he quickly became acquainted with the fellow workers of the new company .", "storylet_id": "242444"}], [{"original_text": "A truck stop can be a busy place.", "album_id": "1164233", "photo_flickr_id": "53696512", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "48489", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a truck stop can be a busy place .", "storylet_id": "242445"}], [{"original_text": "Members of the truckers union work to gain new membership.", "album_id": "1164233", "photo_flickr_id": "53696529", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "48489", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "members of the truckers union work to gain new membership .", "storylet_id": "242446"}], [{"original_text": "They visit with each trucker that they can. ", "album_id": "1164233", "photo_flickr_id": "53696541", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "48489", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they visit with each trucker that they can .", "storylet_id": "242447"}], [{"original_text": "Soon many new members are recruited. ", "album_id": "1164233", "photo_flickr_id": "53696577", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "48489", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "soon many new members are recruited .", "storylet_id": "242448"}], [{"original_text": "The friendship and support that members get from their union is immense.", "album_id": "1164233", "photo_flickr_id": "53696616", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "48489", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the friendship and support that members get from their union is immense .", "storylet_id": "242449"}], [{"original_text": "Jake was in the mood to take some pictures so he climbed up this mountain and took this picture.", "album_id": "72157623765822085", "photo_flickr_id": "4535471448", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48490", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was in the mood to take some pictures so he climbed up this mountain and took this picture .", "storylet_id": "242450"}], [{"original_text": "After that he decided to take some pictures of nature starting with this spider.", "album_id": "72157623765822085", "photo_flickr_id": "4534838059", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48490", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after that he decided to take some pictures of nature starting with this spider .", "storylet_id": "242451"}], [{"original_text": "Then he thought it would be amusing to take a picture of his car from a far distance away.", "album_id": "72157623765822085", "photo_flickr_id": "4534836719", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48490", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then he thought it would be amusing to take a picture of his car from a far distance away .", "storylet_id": "242452"}], [{"original_text": "After that he took a picture of this hawk.", "album_id": "72157623765822085", "photo_flickr_id": "4534840691", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48490", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that he took a picture of this hawk .", "storylet_id": "242453"}], [{"original_text": "The hawk was soaring high and Jake is so proud of this picture that he took.", "album_id": "72157623765822085", "photo_flickr_id": "4534841407", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48490", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the hawk was soaring high and [male] is so proud of this picture that he took .", "storylet_id": "242454"}], [{"original_text": "we bought a house on a mountain", "album_id": "72157623765822085", "photo_flickr_id": "4535471448", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48491", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we bought a house on a mountain", "storylet_id": "242455"}], [{"original_text": "it was an amazing place", "album_id": "72157623765822085", "photo_flickr_id": "4535470694", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48491", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was an amazing place", "storylet_id": "242456"}], [{"original_text": "so peaceful ", "album_id": "72157623765822085", "photo_flickr_id": "4534836465", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48491", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so peaceful", "storylet_id": "242457"}], [{"original_text": "the wild life is incredible", "album_id": "72157623765822085", "photo_flickr_id": "4534840691", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48491", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wild life is incredible", "storylet_id": "242458"}], [{"original_text": "the scenery makes for life to be lived at its fullest", "album_id": "72157623765822085", "photo_flickr_id": "4534841763", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48491", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the scenery makes for life to be lived at its fullest", "storylet_id": "242459"}], [{"original_text": "We arrived at the house in the mountains.", "album_id": "72157623765822085", "photo_flickr_id": "4535471448", "setting": "last-3-pick-old-and-tell", "worker_id": "E66ZGVFX1UDFG7L", "story_id": "48492", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at the house in the mountains .", "storylet_id": "242460"}], [{"original_text": "It was very well kept but the patio and fire pit needed some attention.", "album_id": "72157623765822085", "photo_flickr_id": "4535470694", "setting": "last-3-pick-old-and-tell", "worker_id": "E66ZGVFX1UDFG7L", "story_id": "48492", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was very well kept but the patio and fire pit needed some attention .", "storylet_id": "242461"}], [{"original_text": "The guest house was pretty but had a strange style.", "album_id": "72157623765822085", "photo_flickr_id": "4534836465", "setting": "last-3-pick-old-and-tell", "worker_id": "E66ZGVFX1UDFG7L", "story_id": "48492", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guest house was pretty but had a strange style .", "storylet_id": "242462"}], [{"original_text": "From the deck, we could see Hawks and buzzards soaring over the mountains.", "album_id": "72157623765822085", "photo_flickr_id": "4534840691", "setting": "last-3-pick-old-and-tell", "worker_id": "E66ZGVFX1UDFG7L", "story_id": "48492", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "from the deck , we could see hawks and buzzards soaring over the mountains .", "storylet_id": "242463"}], [{"original_text": "We didn't have a bird's eye view, but ours was more than pretty enough for us.", "album_id": "72157623765822085", "photo_flickr_id": "4534841763", "setting": "last-3-pick-old-and-tell", "worker_id": "E66ZGVFX1UDFG7L", "story_id": "48492", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we did n't have a bird 's eye view , but ours was more than pretty enough for us .", "storylet_id": "242464"}], [{"original_text": "I enjoy visiting my grandparent's home up in the mountains.", "album_id": "72157623765822085", "photo_flickr_id": "4535471448", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "48493", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i enjoy visiting my grandparent 's home up in the mountains .", "storylet_id": "242465"}], [{"original_text": "I get to see nature up close, like a spider in a web.", "album_id": "72157623765822085", "photo_flickr_id": "4534838059", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "48493", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i get to see nature up close , like a spider in a web .", "storylet_id": "242466"}], [{"original_text": "After I park the car, it's time for a long walk.", "album_id": "72157623765822085", "photo_flickr_id": "4534836719", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "48493", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after i park the car , it 's time for a long walk .", "storylet_id": "242467"}], [{"original_text": "On certain days, I can usually spot an eagle flying overhead.", "album_id": "72157623765822085", "photo_flickr_id": "4534840691", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "48493", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on certain days , i can usually spot an eagle flying overhead .", "storylet_id": "242468"}], [{"original_text": "I sometimes watch the direction the eagle is flying in and I follow it.", "album_id": "72157623765822085", "photo_flickr_id": "4534841407", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "48493", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i sometimes watch the direction the eagle is flying in and i follow it .", "storylet_id": "242469"}], [{"original_text": "It sat perched atop a tree. ", "album_id": "72157623765822085", "photo_flickr_id": "4535471448", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48494", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it sat perched atop a tree .", "storylet_id": "242470"}], [{"original_text": "It was a hunter. ", "album_id": "72157623765822085", "photo_flickr_id": "4535470694", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48494", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a hunter .", "storylet_id": "242471"}], [{"original_text": "A mighty hunter, from the sky. ", "album_id": "72157623765822085", "photo_flickr_id": "4534836465", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48494", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a mighty hunter , from the sky .", "storylet_id": "242472"}], [{"original_text": "It would swoop down for its prey. ", "album_id": "72157623765822085", "photo_flickr_id": "4534840691", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48494", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it would swoop down for its prey .", "storylet_id": "242473"}], [{"original_text": "Then carry it away to be eaten. ", "album_id": "72157623765822085", "photo_flickr_id": "4534841763", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48494", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then carry it away to be eaten .", "storylet_id": "242474"}], [{"original_text": "The career festival was a good opportunity for many people to find a new job.", "album_id": "72157626534937894", "photo_flickr_id": "5636107960", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "48495", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the career festival was a good opportunity for many people to find a new job .", "storylet_id": "242475"}], [{"original_text": "There were over 100 companies that had set up booths.", "album_id": "72157626534937894", "photo_flickr_id": "5636108012", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "48495", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were over 100 companies that had set up booths .", "storylet_id": "242476"}], [{"original_text": "Some offered hands on training.", "album_id": "72157626534937894", "photo_flickr_id": "5635528195", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "48495", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some offered hands on training .", "storylet_id": "242477"}], [{"original_text": "Others showed demonstrations of what they did.", "album_id": "72157626534937894", "photo_flickr_id": "5635528379", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "48495", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others showed demonstrations of what they did .", "storylet_id": "242478"}], [{"original_text": "There were also presidents from some of the companies who gave speeches.", "album_id": "72157626534937894", "photo_flickr_id": "5636108774", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "48495", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were also presidents from some of the companies who gave speeches .", "storylet_id": "242479"}], [{"original_text": "A fun event was planned for the evening.", "album_id": "72157626534937894", "photo_flickr_id": "5636107960", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48496", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a fun event was planned for the evening .", "storylet_id": "242480"}], [{"original_text": "This little kid is helping out with the saw.", "album_id": "72157626534937894", "photo_flickr_id": "5636108104", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48496", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this little kid is helping out with the saw .", "storylet_id": "242481"}], [{"original_text": "These kids are learning all about how to make stuff out of wood.", "album_id": "72157626534937894", "photo_flickr_id": "5635527975", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48496", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these kids are learning all about how to make stuff out of wood .", "storylet_id": "242482"}], [{"original_text": "A real hands on experience is being given to the children. ", "album_id": "72157626534937894", "photo_flickr_id": "5636108478", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48496", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a real hands on experience is being given to the children .", "storylet_id": "242483"}], [{"original_text": "After the work is done they sit down and listen to the teacher teach them more about how to make stuff out of wood.", "album_id": "72157626534937894", "photo_flickr_id": "5636108774", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48496", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the work is done they sit down and listen to the teacher teach them more about how to make stuff out of wood .", "storylet_id": "242484"}], [{"original_text": "Carpentry and wood working show was organized in Atlanta. ", "album_id": "72157626534937894", "photo_flickr_id": "5636107960", "setting": "last-3-pick-old-and-tell", "worker_id": "QO1IMFV8LBBRSFS", "story_id": "48497", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "carpentry and wood working show was organized in location .", "storylet_id": "242485"}], [{"original_text": "Children learned how to cut the wood with a saw. ", "album_id": "72157626534937894", "photo_flickr_id": "5636108104", "setting": "last-3-pick-old-and-tell", "worker_id": "QO1IMFV8LBBRSFS", "story_id": "48497", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "children learned how to cut the wood with a saw .", "storylet_id": "242486"}], [{"original_text": "There was a demonstration on making wooden design using special software.", "album_id": "72157626534937894", "photo_flickr_id": "5635527975", "setting": "last-3-pick-old-and-tell", "worker_id": "QO1IMFV8LBBRSFS", "story_id": "48497", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a demonstration on making wooden design using special software .", "storylet_id": "242487"}], [{"original_text": "Children learned how to use hammer and nails. ", "album_id": "72157626534937894", "photo_flickr_id": "5636108478", "setting": "last-3-pick-old-and-tell", "worker_id": "QO1IMFV8LBBRSFS", "story_id": "48497", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "children learned how to use hammer and nails .", "storylet_id": "242488"}], [{"original_text": "The show ended with the closing remarks from Mr. Smith, the best carpenter in Atlanta. ", "album_id": "72157626534937894", "photo_flickr_id": "5636108774", "setting": "last-3-pick-old-and-tell", "worker_id": "QO1IMFV8LBBRSFS", "story_id": "48497", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the show ended with the closing remarks from mr. smith , the best carpenter in location .", "storylet_id": "242489"}], [{"original_text": "Each year I enjoy going to the Exploratorium workshop.", "album_id": "72157626534937894", "photo_flickr_id": "5636107960", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "48498", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "each year i enjoy going to the exploratorium workshop .", "storylet_id": "242490"}], [{"original_text": "It's a family oriented event, with plenty of things for kids to see and do.", "album_id": "72157626534937894", "photo_flickr_id": "5636108104", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "48498", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's a family oriented event , with plenty of things for kids to see and do .", "storylet_id": "242491"}], [{"original_text": "My favorite area is the woodworking display.", "album_id": "72157626534937894", "photo_flickr_id": "5635527975", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "48498", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my favorite area is the woodworking display .", "storylet_id": "242492"}], [{"original_text": "They show you how to make many nice items with wood.", "album_id": "72157626534937894", "photo_flickr_id": "5636108478", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "48498", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they show you how to make many nice items with wood .", "storylet_id": "242493"}], [{"original_text": "There are also many interesting guest speakers at the event.", "album_id": "72157626534937894", "photo_flickr_id": "5636108774", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "48498", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are also many interesting guest speakers at the event .", "storylet_id": "242494"}], [{"original_text": "Step right up, step right up, glad to help ya. ", "album_id": "72157626534937894", "photo_flickr_id": "5636107960", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48499", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "step right up , step right up , glad to help ya .", "storylet_id": "242495"}], [{"original_text": "Vendors were hawking their wares. ", "album_id": "72157626534937894", "photo_flickr_id": "5636108012", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48499", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "vendors were hawking their wares .", "storylet_id": "242496"}], [{"original_text": "It was hard to tell what some things were but people will buy strange things. ", "album_id": "72157626534937894", "photo_flickr_id": "5635528195", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48499", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was hard to tell what some things were but people will buy strange things .", "storylet_id": "242497"}], [{"original_text": "Pet rocks for instance. ", "album_id": "72157626534937894", "photo_flickr_id": "5635528379", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48499", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "pet rocks for instance .", "storylet_id": "242498"}], [{"original_text": "He had come up with the idea. ", "album_id": "72157626534937894", "photo_flickr_id": "5636108774", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48499", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he had come up with the idea .", "storylet_id": "242499"}], [{"original_text": "The town reminded me of a movie scene.", "album_id": "72157624331727446", "photo_flickr_id": "4723641013", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48500", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the town reminded me of a movie scene .", "storylet_id": "242500"}], [{"original_text": "More than half of the population worked at the Jiffy factory.", "album_id": "72157624331727446", "photo_flickr_id": "4724294030", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48500", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "more than half of the population worked at the jiffy factory .", "storylet_id": "242501"}], [{"original_text": "A large map on the side of a building told us where we were.", "album_id": "72157624331727446", "photo_flickr_id": "4724295240", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48500", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a large map on the side of a building told us where we were .", "storylet_id": "242502"}], [{"original_text": "We made it to the church before the pastor left.", "album_id": "72157624331727446", "photo_flickr_id": "4724297530", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48500", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we made it to the church before the pastor left .", "storylet_id": "242503"}], [{"original_text": "Then we had lunch at a diner called Purple Rose.", "album_id": "72157624331727446", "photo_flickr_id": "4723646825", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48500", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we had lunch at a diner called purple [female] .", "storylet_id": "242504"}], [{"original_text": "Todd wanted to visit the Jiffy Mixes plant.", "album_id": "72157624331727446", "photo_flickr_id": "4723641013", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48501", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] wanted to visit the jiffy mixes plant .", "storylet_id": "242505"}], [{"original_text": "He pulls up to the plant in excitement.", "album_id": "72157624331727446", "photo_flickr_id": "4724294030", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48501", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he pulls up to the plant in excitement .", "storylet_id": "242506"}], [{"original_text": "This is the real Jiffy plant he thought to himself.", "album_id": "72157624331727446", "photo_flickr_id": "4723642315", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48501", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the real jiffy plant he thought to himself .", "storylet_id": "242507"}], [{"original_text": "He tries to find some parking for the plant but is unable to find a spot to park.", "album_id": "72157624331727446", "photo_flickr_id": "4723644225", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48501", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he tries to find some parking for the plant but is unable to find a spot to park .", "storylet_id": "242508"}], [{"original_text": "So he parks his card in in town square and walks over to the plant.", "album_id": "72157624331727446", "photo_flickr_id": "4724296714", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48501", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so he parks his card in in town square and walks over to the plant .", "storylet_id": "242509"}], [{"original_text": "Took a little road trip to a town i had never been to before.", "album_id": "72157624331727446", "photo_flickr_id": "4723641013", "setting": "last-3-pick-old-and-tell", "worker_id": "736BMMFWXNRNHMF", "story_id": "48502", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "took a little road trip to a town i had never been to before .", "storylet_id": "242510"}], [{"original_text": "Stopped by the Jiffy plant for a few pictures.", "album_id": "72157624331727446", "photo_flickr_id": "4724294030", "setting": "last-3-pick-old-and-tell", "worker_id": "736BMMFWXNRNHMF", "story_id": "48502", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "stopped by the jiffy plant for a few pictures .", "storylet_id": "242511"}], [{"original_text": "Found this huge map on the side of a building that was helpful for getting around the town.", "album_id": "72157624331727446", "photo_flickr_id": "4724295240", "setting": "last-3-pick-old-and-tell", "worker_id": "736BMMFWXNRNHMF", "story_id": "48502", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "found this huge map on the side of a building that was helpful for getting around the town .", "storylet_id": "242512"}], [{"original_text": "Ran across this building with interesting achitecture as I was driving around.", "album_id": "72157624331727446", "photo_flickr_id": "4724297530", "setting": "last-3-pick-old-and-tell", "worker_id": "736BMMFWXNRNHMF", "story_id": "48502", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "ran across this building with interesting achitecture as i was driving around .", "storylet_id": "242513"}], [{"original_text": "Last stop was the Purple Rose before heading home.", "album_id": "72157624331727446", "photo_flickr_id": "4723646825", "setting": "last-3-pick-old-and-tell", "worker_id": "736BMMFWXNRNHMF", "story_id": "48502", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last stop was the purple [female] before heading home .", "storylet_id": "242514"}], [{"original_text": "This town was famous, well kind of. ", "album_id": "72157624331727446", "photo_flickr_id": "4723641013", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48503", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this town was famous , well kind of .", "storylet_id": "242515"}], [{"original_text": "Mabel White Holmes was from here and in 1930 she invented Jiffy Mixes. ", "album_id": "72157624331727446", "photo_flickr_id": "4724294030", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48503", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] white holmes was from here and in 1930 she invented jiffy mixes .", "storylet_id": "242516"}], [{"original_text": "A map on a wall directed you on a walking tour. ", "album_id": "72157624331727446", "photo_flickr_id": "4724295240", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48503", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a map on a wall directed you on a walking tour .", "storylet_id": "242517"}], [{"original_text": "You could visit the old mill. ", "album_id": "72157624331727446", "photo_flickr_id": "4724297530", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48503", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you could visit the old mill .", "storylet_id": "242518"}], [{"original_text": "If that didn't float your boat, you could always go to the Purple Rose. ", "album_id": "72157624331727446", "photo_flickr_id": "4723646825", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48503", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "if that did n't float your boat , you could always go to the purple [female] .", "storylet_id": "242519"}], [{"original_text": "One day, the friends decided to take a day trip to the historic downtown area.", "album_id": "72157624331727446", "photo_flickr_id": "4723641013", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48504", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one day , the friends decided to take a day trip to the historic downtown area .", "storylet_id": "242520"}], [{"original_text": "Downtown there were lots of little shops and historic buildings to see.", "album_id": "72157624331727446", "photo_flickr_id": "4724294030", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48504", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "downtown there were lots of little shops and historic buildings to see .", "storylet_id": "242521"}], [{"original_text": "Many of the old areas were full of rich culture and history. There was a large guide map to help tourists as well.", "album_id": "72157624331727446", "photo_flickr_id": "4724295240", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48504", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many of the old areas were full of rich culture and history . there was a large guide map to help tourists as well .", "storylet_id": "242522"}], [{"original_text": "There were a few churches and beautiful buildings in the area. We stopped to see everything.", "album_id": "72157624331727446", "photo_flickr_id": "4724297530", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48504", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a few churches and beautiful buildings in the area . we stopped to see everything .", "storylet_id": "242523"}], [{"original_text": "The day all in all was wonderful. We would love to visit again and our last stop to the Purple Rose was a experience we won't ever forget.", "album_id": "72157624331727446", "photo_flickr_id": "4723646825", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48504", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day all in all was wonderful . we would love to visit again and our last stop to the purple [female] was a experience we wo n't ever forget .", "storylet_id": "242524"}], [{"original_text": "We captured the creature that had been causing such a disturbance.", "album_id": "72157627607446867", "photo_flickr_id": "6174056728", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48505", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we captured the creature that had been causing such a disturbance .", "storylet_id": "242525"}], [{"original_text": "It was necessary to bind the gator.", "album_id": "72157627607446867", "photo_flickr_id": "6174058782", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48505", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was necessary to bind the gator .", "storylet_id": "242526"}], [{"original_text": "People from the Wildlife preserve agreed to have a look at him.", "album_id": "72157627607446867", "photo_flickr_id": "6173533233", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48505", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people from the wildlife preserve agreed to have a look at him .", "storylet_id": "242527"}], [{"original_text": "They showed us where they would be taking the alligator.", "album_id": "72157627607446867", "photo_flickr_id": "6173536319", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48505", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they showed us where they would be taking the alligator .", "storylet_id": "242528"}], [{"original_text": "It was a facility dedicated to prehistoric animals.", "album_id": "72157627607446867", "photo_flickr_id": "6173539261", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48505", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a facility dedicated to prehistoric animals .", "storylet_id": "242529"}], [{"original_text": "the zoo got a new gator", "album_id": "72157627607446867", "photo_flickr_id": "6174056728", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48506", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the zoo got a new gator", "storylet_id": "242530"}], [{"original_text": "they needed to place it in the new habitat ", "album_id": "72157627607446867", "photo_flickr_id": "6173529819", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48506", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they needed to place it in the new habitat", "storylet_id": "242531"}], [{"original_text": "the gator didn't take to his new surroundings", "album_id": "72157627607446867", "photo_flickr_id": "6174058782", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48506", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the gator did n't take to his new surroundings", "storylet_id": "242532"}], [{"original_text": "so them moved him to a different location", "album_id": "72157627607446867", "photo_flickr_id": "6174059582", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48506", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so them moved him to a different location", "storylet_id": "242533"}], [{"original_text": "he seems content now", "album_id": "72157627607446867", "photo_flickr_id": "6174060140", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48506", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he seems content now", "storylet_id": "242534"}], [{"original_text": "Workers carefully move the box.", "album_id": "72157627607446867", "photo_flickr_id": "6174056728", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48507", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "workers carefully move the box .", "storylet_id": "242535"}], [{"original_text": "Workers examine the contents any potential damage in shipping.", "album_id": "72157627607446867", "photo_flickr_id": "6174058782", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48507", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "workers examine the contents any potential damage in shipping .", "storylet_id": "242536"}], [{"original_text": "They find all in order, they will prepare this for the display shortly.", "album_id": "72157627607446867", "photo_flickr_id": "6173533233", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48507", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they find all in order , they will prepare this for the display shortly .", "storylet_id": "242537"}], [{"original_text": "The director and her helper prepared to opening the Jurassic Park Museum.", "album_id": "72157627607446867", "photo_flickr_id": "6173536319", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48507", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the director and her helper prepared to opening the jurassic park museum .", "storylet_id": "242538"}], [{"original_text": "The big yellow dinosaur is a great draw to get visitors to the museum.", "album_id": "72157627607446867", "photo_flickr_id": "6173539261", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48507", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the big yellow dinosaur is a great draw to get visitors to the museum .", "storylet_id": "242539"}], [{"original_text": "We are here to unravel a really cool surprise for children big and small.", "album_id": "72157627607446867", "photo_flickr_id": "6174056728", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48508", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are here to unravel a really cool surprise for children big and small .", "storylet_id": "242540"}], [{"original_text": "Rain or shine, here we go. Get that thing opened.", "album_id": "72157627607446867", "photo_flickr_id": "6174058782", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48508", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "rain or shine , here we go . get that thing opened .", "storylet_id": "242541"}], [{"original_text": "It took 4 people to get it open and put together.", "album_id": "72157627607446867", "photo_flickr_id": "6173533233", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48508", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it took 4 people to get it open and put together .", "storylet_id": "242542"}], [{"original_text": "Ok, ready for the unveiling? Let's see what this is.", "album_id": "72157627607446867", "photo_flickr_id": "6173536319", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48508", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "ok , ready for the unveiling ? let 's see what this is .", "storylet_id": "242543"}], [{"original_text": "A huge dinosaur. This is great, the kids will love this.", "album_id": "72157627607446867", "photo_flickr_id": "6173539261", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48508", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a huge dinosaur . this is great , the kids will love this .", "storylet_id": "242544"}], [{"original_text": "Woowee! Nothing like a day of gator wrestling! We got this gator from someone's backyard pond, shipped him in a crate to habitat.", "album_id": "72157627607446867", "photo_flickr_id": "6174056728", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48509", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "woowee ! nothing like a day of gator wrestling ! we got this gator from someone 's backyard pond , shipped him in a crate to habitat .", "storylet_id": "242545"}], [{"original_text": "Once we had him out of the crate, it was time to move him into his closure.", "album_id": "72157627607446867", "photo_flickr_id": "6174058782", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48509", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once we had him out of the crate , it was time to move him into his closure .", "storylet_id": "242546"}], [{"original_text": "We still had to unwrap him, then run like heck out of there!", "album_id": "72157627607446867", "photo_flickr_id": "6173533233", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48509", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we still had to unwrap him , then run like heck out of there !", "storylet_id": "242547"}], [{"original_text": "Afterwards, we left the area with our boat.", "album_id": "72157627607446867", "photo_flickr_id": "6173536319", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48509", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards , we left the area with our boat .", "storylet_id": "242548"}], [{"original_text": "The place that took him looks like an upstanding establishment! ", "album_id": "72157627607446867", "photo_flickr_id": "6173539261", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48509", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the place that took him looks like an upstanding establishment !", "storylet_id": "242549"}], [{"original_text": "Having fun at the company picnic.", "album_id": "72157624137503998", "photo_flickr_id": "4640140937", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48510", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "having fun at the company picnic .", "storylet_id": "242550"}], [{"original_text": "An employee is having some lunch.", "album_id": "72157624137503998", "photo_flickr_id": "4640749230", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48510", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "an employee is having some lunch .", "storylet_id": "242551"}], [{"original_text": "Two co-workers share a laugh.", "album_id": "72157624137503998", "photo_flickr_id": "4640750892", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48510", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two co-workers share a laugh .", "storylet_id": "242552"}], [{"original_text": "Entertainment was brought in for the picnic.", "album_id": "72157624137503998", "photo_flickr_id": "4640143849", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48510", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "entertainment was brought in for the picnic .", "storylet_id": "242553"}], [{"original_text": "A couple dances to the music.", "album_id": "72157624137503998", "photo_flickr_id": "4640145803", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48510", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a couple dances to the music .", "storylet_id": "242554"}], [{"original_text": "The event at the park featured a very large buffet served under a tent.", "album_id": "72157624137503998", "photo_flickr_id": "4640140937", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48511", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the event at the park featured a very large buffet served under a tent .", "storylet_id": "242555"}], [{"original_text": "The local men that served were extremely charming and very generous.", "album_id": "72157624137503998", "photo_flickr_id": "4640749230", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48511", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the local men that served were extremely charming and very generous .", "storylet_id": "242556"}], [{"original_text": "I was amazed at the turnout of so many people in the community.", "album_id": "72157624137503998", "photo_flickr_id": "4640750512", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48511", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was amazed at the turnout of so many people in the community .", "storylet_id": "242557"}], [{"original_text": "Some of the night's entertainment featured local singers.", "album_id": "72157624137503998", "photo_flickr_id": "4640751908", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48511", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the night 's entertainment featured local singers .", "storylet_id": "242558"}], [{"original_text": "One lady in particular was extremely talented and she was accompanied by guitar.", "album_id": "72157624137503998", "photo_flickr_id": "4640753838", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48511", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one lady in particular was extremely talented and she was accompanied by guitar .", "storylet_id": "242559"}], [{"original_text": "There was a big party in the park near my house. There was catered food and games.", "album_id": "72157624137503998", "photo_flickr_id": "4640140937", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48512", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a big party in the park near my house . there was catered food and games .", "storylet_id": "242560"}], [{"original_text": "The food was delicious and everyone was full and happy.", "album_id": "72157624137503998", "photo_flickr_id": "4640749230", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48512", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the food was delicious and everyone was full and happy .", "storylet_id": "242561"}], [{"original_text": "People were having a good time and having conversations.", "album_id": "72157624137503998", "photo_flickr_id": "4640750512", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48512", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people were having a good time and having conversations .", "storylet_id": "242562"}], [{"original_text": "There was even live music!", "album_id": "72157624137503998", "photo_flickr_id": "4640751908", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48512", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was even live music !", "storylet_id": "242563"}], [{"original_text": "The music was great and people danced. Overall, the party was fun and a success.", "album_id": "72157624137503998", "photo_flickr_id": "4640753838", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48512", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the music was great and people danced . overall , the party was fun and a success .", "storylet_id": "242564"}], [{"original_text": "Our town had a Hawaiian festival this year.", "album_id": "72157624137503998", "photo_flickr_id": "4640140937", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48513", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our town had a hawaiian festival this year .", "storylet_id": "242565"}], [{"original_text": "It was a lot of fun and there was a lot of food, too!", "album_id": "72157624137503998", "photo_flickr_id": "4640749230", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48513", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a lot of fun and there was a lot of food , too !", "storylet_id": "242566"}], [{"original_text": "The police officers were there to make sure no trouble started, but of course there wasn't any.", "album_id": "72157624137503998", "photo_flickr_id": "4640750512", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48513", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the police officers were there to make sure no trouble started , but of course there was n't any .", "storylet_id": "242567"}], [{"original_text": "My grandma is the mayor, but she sings, too.", "album_id": "72157624137503998", "photo_flickr_id": "4640751908", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48513", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my grandma is the mayor , but she sings , too .", "storylet_id": "242568"}], [{"original_text": "I like to listen to her sing and play her tambourine.", "album_id": "72157624137503998", "photo_flickr_id": "4640753838", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48513", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i like to listen to her sing and play her tambourine .", "storylet_id": "242569"}], [{"original_text": "There was a Hawaiian BBQ contest at the park this weekend.", "album_id": "72157624137503998", "photo_flickr_id": "4640140937", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "48514", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a hawaiian bbq contest at the park this weekend .", "storylet_id": "242570"}], [{"original_text": "All the local BBQ enthusiasts were there competing and giving everyone a taste.", "album_id": "72157624137503998", "photo_flickr_id": "4640749230", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "48514", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the local bbq enthusiasts were there competing and giving everyone a taste .", "storylet_id": "242571"}], [{"original_text": "We had such a fun time and even got flower necklaces.", "album_id": "72157624137503998", "photo_flickr_id": "4640750892", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "48514", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had such a fun time and even got flower necklaces .", "storylet_id": "242572"}], [{"original_text": "They had live entertainment.", "album_id": "72157624137503998", "photo_flickr_id": "4640143849", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "48514", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had live entertainment .", "storylet_id": "242573"}], [{"original_text": "And there was dancing on into the night.", "album_id": "72157624137503998", "photo_flickr_id": "4640145803", "setting": "last-3-pick-old-and-tell", "worker_id": "C2SMKKL7Z5JVWCA", "story_id": "48514", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and there was dancing on into the night .", "storylet_id": "242574"}], [{"original_text": "On our evening walk we found a soccer team having a match at a local park.", "album_id": "72157624807908194", "photo_flickr_id": "4927330229", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48515", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our evening walk we found a soccer team having a match at a local park .", "storylet_id": "242575"}], [{"original_text": "The blue team was from our local community, so we naturally cheered for them.", "album_id": "72157624807908194", "photo_flickr_id": "4927329761", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48515", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the blue team was from our local community , so we naturally cheered for them .", "storylet_id": "242576"}], [{"original_text": "The opposing team was from a nearby city and they played very wel.", "album_id": "72157624807908194", "photo_flickr_id": "4927924420", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48515", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the opposing team was from a nearby city and they played very wel .", "storylet_id": "242577"}], [{"original_text": "Our local team was very aggressive with the ball but they had their work cut out for them.", "album_id": "72157624807908194", "photo_flickr_id": "4927923018", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48515", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our local team was very aggressive with the ball but they had their work cut out for them .", "storylet_id": "242578"}], [{"original_text": "The game went on even after the sun went down, but I was glad we stayed and watched.", "album_id": "72157624807908194", "photo_flickr_id": "4927325651", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48515", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the game went on even after the sun went down , but i was glad we stayed and watched .", "storylet_id": "242579"}], [{"original_text": "It was the night of Peters soccer match.", "album_id": "72157624807908194", "photo_flickr_id": "4927330667", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48516", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the night of peters soccer match .", "storylet_id": "242580"}], [{"original_text": "His team needed just one win to be in first place.", "album_id": "72157624807908194", "photo_flickr_id": "4927329761", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48516", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his team needed just one win to be in first place .", "storylet_id": "242581"}], [{"original_text": "Peter got on the field and a rainbow showed up must mean good luck or something.", "album_id": "72157624807908194", "photo_flickr_id": "4927328801", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48516", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] got on the field and a rainbow showed up must mean good luck or something .", "storylet_id": "242582"}], [{"original_text": "The game was underway and Peter was playing very hard for his team.", "album_id": "72157624807908194", "photo_flickr_id": "4927924420", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48516", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the game was underway and [male] was playing very hard for his team .", "storylet_id": "242583"}], [{"original_text": "Fighting for victory Peter scores 3 goals and helps his team win the game.", "album_id": "72157624807908194", "photo_flickr_id": "4927327407", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48516", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fighting for victory [male] scores 3 goals and helps his team win the game .", "storylet_id": "242584"}], [{"original_text": "The soccer match was hotly contested, and these players fought for the ball. ", "album_id": "72157624807908194", "photo_flickr_id": "4927330667", "setting": "last-3-pick-old-and-tell", "worker_id": "CTMZO7K3PJGNK38", "story_id": "48517", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the soccer match was hotly contested , and these players fought for the ball .", "storylet_id": "242585"}], [{"original_text": "After scoring a goal, teammates celebrated. ", "album_id": "72157624807908194", "photo_flickr_id": "4927329761", "setting": "last-3-pick-old-and-tell", "worker_id": "CTMZO7K3PJGNK38", "story_id": "48517", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after scoring a goal , teammates celebrated .", "storylet_id": "242586"}], [{"original_text": "One player patrols his area of the field during the match. ", "album_id": "72157624807908194", "photo_flickr_id": "4927328801", "setting": "last-3-pick-old-and-tell", "worker_id": "CTMZO7K3PJGNK38", "story_id": "48517", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one player patrols his area of the field during the match .", "storylet_id": "242587"}], [{"original_text": "Players milled around during a brief stoppage in the action. ", "album_id": "72157624807908194", "photo_flickr_id": "4927924420", "setting": "last-3-pick-old-and-tell", "worker_id": "CTMZO7K3PJGNK38", "story_id": "48517", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "players milled around during a brief stoppage in the action .", "storylet_id": "242588"}], [{"original_text": "The game ended with the blue team kicking the ball around. ", "album_id": "72157624807908194", "photo_flickr_id": "4927327407", "setting": "last-3-pick-old-and-tell", "worker_id": "CTMZO7K3PJGNK38", "story_id": "48517", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the game ended with the blue team kicking the ball around .", "storylet_id": "242589"}], [{"original_text": "Today we went to watch my brother play soccer.", "album_id": "72157624807908194", "photo_flickr_id": "4927330667", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "48518", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to watch my brother play soccer .", "storylet_id": "242590"}], [{"original_text": "He scored the first goal and received warm hugs from his teammates.", "album_id": "72157624807908194", "photo_flickr_id": "4927329761", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "48518", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he scored the first goal and received warm hugs from his teammates .", "storylet_id": "242591"}], [{"original_text": "A beautiful rainbow appeared behind him.", "album_id": "72157624807908194", "photo_flickr_id": "4927328801", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "48518", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a beautiful rainbow appeared behind him .", "storylet_id": "242592"}], [{"original_text": "They played through the rain.", "album_id": "72157624807908194", "photo_flickr_id": "4927924420", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "48518", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they played through the rain .", "storylet_id": "242593"}], [{"original_text": "I am proud of my brother for winning the game for his team.", "album_id": "72157624807908194", "photo_flickr_id": "4927327407", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "48518", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am proud of my brother for winning the game for his team .", "storylet_id": "242594"}], [{"original_text": "The game had started with a lot of anticipation.", "album_id": "72157624807908194", "photo_flickr_id": "4927330229", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48519", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the game had started with a lot of anticipation .", "storylet_id": "242595"}], [{"original_text": "Both teams had been preparing for this showdown since the beginning of the season.", "album_id": "72157624807908194", "photo_flickr_id": "4927329761", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48519", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "both teams had been preparing for this showdown since the beginning of the season .", "storylet_id": "242596"}], [{"original_text": "The game was intense, and the score was kept close.", "album_id": "72157624807908194", "photo_flickr_id": "4927924420", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48519", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the game was intense , and the score was kept close .", "storylet_id": "242597"}], [{"original_text": "Neither side was prepared to give an inch!", "album_id": "72157624807908194", "photo_flickr_id": "4927923018", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48519", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "neither side was prepared to give an inch !", "storylet_id": "242598"}], [{"original_text": "Night began to fall and the lights came on with the score still tied!", "album_id": "72157624807908194", "photo_flickr_id": "4927325651", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48519", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "night began to fall and the lights came on with the score still tied !", "storylet_id": "242599"}], [{"original_text": "The art convention has begun.", "album_id": "72157624585498856", "photo_flickr_id": "4830640188", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "48520", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the art convention has begun .", "storylet_id": "242600"}], [{"original_text": "Special backgrounds is the focus.", "album_id": "72157624585498856", "photo_flickr_id": "4830640420", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "48520", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "special backgrounds is the focus .", "storylet_id": "242601"}], [{"original_text": "Brainstorming is an effective technique to generate ideas.", "album_id": "72157624585498856", "photo_flickr_id": "4830029085", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "48520", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "brainstorming is an effective technique to generate ideas .", "storylet_id": "242602"}], [{"original_text": "Odd shapes are often right in front of us if we choose to notice.", "album_id": "72157624585498856", "photo_flickr_id": "4830643376", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "48520", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "odd shapes are often right in front of us if we choose to notice .", "storylet_id": "242603"}], [{"original_text": "Mixing colors is inspiring.", "album_id": "72157624585498856", "photo_flickr_id": "4830032941", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "48520", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mixing colors is inspiring .", "storylet_id": "242604"}], [{"original_text": "The cafe was crowded.", "album_id": "72157624585498856", "photo_flickr_id": "4830640188", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "48521", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cafe was crowded .", "storylet_id": "242605"}], [{"original_text": "The bikes weren't being used.", "album_id": "72157624585498856", "photo_flickr_id": "4830640420", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "48521", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bikes were n't being used .", "storylet_id": "242606"}], [{"original_text": "The symbols on the walls confused people.", "album_id": "72157624585498856", "photo_flickr_id": "4830028737", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "48521", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the symbols on the walls confused people .", "storylet_id": "242607"}], [{"original_text": "The storage room was packed.", "album_id": "72157624585498856", "photo_flickr_id": "4830641798", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "48521", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the storage room was packed .", "storylet_id": "242608"}], [{"original_text": "They needed to get organized.", "album_id": "72157624585498856", "photo_flickr_id": "4830643376", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "48521", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they needed to get organized .", "storylet_id": "242609"}], [{"original_text": "The diner was furnished and lit.", "album_id": "72157624585498856", "photo_flickr_id": "4830640188", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48522", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the diner was furnished and lit .", "storylet_id": "242610"}], [{"original_text": "Inside the studio, some bikes were parked.", "album_id": "72157624585498856", "photo_flickr_id": "4830640420", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48522", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside the studio , some bikes were parked .", "storylet_id": "242611"}], [{"original_text": "This man wore a very interesting trench coat.", "album_id": "72157624585498856", "photo_flickr_id": "4830029085", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48522", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this man wore a very interesting trench coat .", "storylet_id": "242612"}], [{"original_text": "The sculpture was a very nice and tall.", "album_id": "72157624585498856", "photo_flickr_id": "4830643376", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48522", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sculpture was a very nice and tall .", "storylet_id": "242613"}], [{"original_text": "The blue ocean was lovely.", "album_id": "72157624585498856", "photo_flickr_id": "4830032941", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48522", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the blue ocean was lovely .", "storylet_id": "242614"}], [{"original_text": "The small cafe next to gallery is where I ate almost every night.", "album_id": "72157624585498856", "photo_flickr_id": "4830640188", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48523", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the small cafe next to gallery is where i ate almost every night .", "storylet_id": "242615"}], [{"original_text": "While a lot of work had been completed for the grand opening, there was still more to do.", "album_id": "72157624585498856", "photo_flickr_id": "4830640420", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48523", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while a lot of work had been completed for the grand opening , there was still more to do .", "storylet_id": "242616"}], [{"original_text": "That also included trying to figure out how to display some of the artwork.", "album_id": "72157624585498856", "photo_flickr_id": "4830028737", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48523", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that also included trying to figure out how to display some of the artwork .", "storylet_id": "242617"}], [{"original_text": "And making sure that our space was as organized as possible. ", "album_id": "72157624585498856", "photo_flickr_id": "4830641798", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48523", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and making sure that our space was as organized as possible .", "storylet_id": "242618"}], [{"original_text": "Which also meant that some things would just have to be stuck in a corner.", "album_id": "72157624585498856", "photo_flickr_id": "4830643376", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48523", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "which also meant that some things would just have to be stuck in a corner .", "storylet_id": "242619"}], [{"original_text": "Eating dinner with friends.", "album_id": "72157624585498856", "photo_flickr_id": "4830640188", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48524", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "eating dinner with friends .", "storylet_id": "242620"}], [{"original_text": "Bike riding to the studio.", "album_id": "72157624585498856", "photo_flickr_id": "4830640420", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48524", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "bike riding to the studio .", "storylet_id": "242621"}], [{"original_text": "Examining a blank canvas with blank cross in it. ", "album_id": "72157624585498856", "photo_flickr_id": "4830029085", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48524", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "examining a blank canvas with blank cross in it .", "storylet_id": "242622"}], [{"original_text": "the work station", "album_id": "72157624585498856", "photo_flickr_id": "4830643376", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48524", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the work station", "storylet_id": "242623"}], [{"original_text": "Blue and green paint spray on a canvas.", "album_id": "72157624585498856", "photo_flickr_id": "4830032941", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48524", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "blue and green paint spray on a canvas .", "storylet_id": "242624"}], [{"original_text": "It was quiet outside.", "album_id": "292343", "photo_flickr_id": "11301909", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "48525", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was quiet outside .", "storylet_id": "242625"}], [{"original_text": "Inside, there was only two people getting ready for work.", "album_id": "292343", "photo_flickr_id": "11251067", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "48525", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside , there was only two people getting ready for work .", "storylet_id": "242626"}], [{"original_text": "Nothing interesting was happening, no one even playing sports on the field.", "album_id": "292343", "photo_flickr_id": "11249989", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "48525", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nothing interesting was happening , no one even playing sports on the field .", "storylet_id": "242627"}], [{"original_text": "The car park was empty, sans some parked cars.", "album_id": "292343", "photo_flickr_id": "11249591", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "48525", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the car park was empty , sans some parked cars .", "storylet_id": "242628"}], [{"original_text": "Indeed, this was a boring day. ", "album_id": "292343", "photo_flickr_id": "11250886", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "48525", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "indeed , this was a boring day .", "storylet_id": "242629"}], [{"original_text": "The school was practically deserted during the summer. ", "album_id": "292343", "photo_flickr_id": "11301909", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "48526", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the school was practically deserted during the summer .", "storylet_id": "242630"}], [{"original_text": "We walked through a few deserted classrooms and hallways.", "album_id": "292343", "photo_flickr_id": "11252935", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "48526", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we walked through a few deserted classrooms and hallways .", "storylet_id": "242631"}], [{"original_text": "In the cafeteria a few students were setting up chairs for the big event. We stopped to help. ", "album_id": "292343", "photo_flickr_id": "11251358", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "48526", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in the cafeteria a few students were setting up chairs for the big event . we stopped to help .", "storylet_id": "242632"}], [{"original_text": "After we finished we headed out to the sports field. ", "album_id": "292343", "photo_flickr_id": "11250886", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "48526", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after we finished we headed out to the sports field .", "storylet_id": "242633"}], [{"original_text": "We climbed up to the highest place we could reach in the bleachers and looked out over the field. ", "album_id": "292343", "photo_flickr_id": "11249989", "setting": "first-2-pick-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "48526", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we climbed up to the highest place we could reach in the bleachers and looked out over the field .", "storylet_id": "242634"}], [{"original_text": "This facility was recently constructed.", "album_id": "292343", "photo_flickr_id": "11301909", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "48527", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this facility was recently constructed .", "storylet_id": "242635"}], [{"original_text": "It features a large indoor space for activities.", "album_id": "292343", "photo_flickr_id": "11252935", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "48527", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it features a large indoor space for activities .", "storylet_id": "242636"}], [{"original_text": "There is ample dining space.", "album_id": "292343", "photo_flickr_id": "11251358", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "48527", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is ample dining space .", "storylet_id": "242637"}], [{"original_text": "Outside there is opportunity for parking.", "album_id": "292343", "photo_flickr_id": "11250886", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "48527", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "outside there is opportunity for parking .", "storylet_id": "242638"}], [{"original_text": "Fields are available for sport.", "album_id": "292343", "photo_flickr_id": "11249989", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "48527", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fields are available for sport .", "storylet_id": "242639"}], [{"original_text": "This is the building that was next to the park we visited.", "album_id": "292343", "photo_flickr_id": "11301909", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48528", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the building that was next to the park we visited .", "storylet_id": "242640"}], [{"original_text": "The cafeteria had food that was very enjoyable.", "album_id": "292343", "photo_flickr_id": "11251067", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48528", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cafeteria had food that was very enjoyable .", "storylet_id": "242641"}], [{"original_text": "The park is very big and grassy.", "album_id": "292343", "photo_flickr_id": "11249989", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48528", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the park is very big and grassy .", "storylet_id": "242642"}], [{"original_text": "The lot was occupied by a couple of visitors and workers.", "album_id": "292343", "photo_flickr_id": "11249591", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48528", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lot was occupied by a couple of visitors and workers .", "storylet_id": "242643"}], [{"original_text": "The world always seems to impress the best of us.", "album_id": "292343", "photo_flickr_id": "11250886", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48528", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the world always seems to impress the best of us .", "storylet_id": "242644"}], [{"original_text": "An event planner pulls up to an empty parking lot and takes a picture of the space for their client.", "album_id": "292343", "photo_flickr_id": "11301909", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48529", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an event planner pulls up to an empty parking lot and takes a picture of the space for their client .", "storylet_id": "242645"}], [{"original_text": "Inside the building they are given a tour of the facilities to see the space that is avaliable.", "album_id": "292343", "photo_flickr_id": "11252935", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48529", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside the building they are given a tour of the facilities to see the space that is avaliable .", "storylet_id": "242646"}], [{"original_text": "There are several large open rooms that are available for rent for a large event.", "album_id": "292343", "photo_flickr_id": "11251358", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48529", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are several large open rooms that are available for rent for a large event .", "storylet_id": "242647"}], [{"original_text": "As they step outside the planner takes a picture of the secondary parking lot for additional guests.", "album_id": "292343", "photo_flickr_id": "11250886", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48529", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as they step outside the planner takes a picture of the secondary parking lot for additional guests .", "storylet_id": "242648"}], [{"original_text": "Finally they take a picture of the view from the balcony of one of the event spaces, showing a soccer field with a quiet forest behind.", "album_id": "292343", "photo_flickr_id": "11249989", "setting": "last-3-pick-old-and-tell", "worker_id": "XFWZ6C526LN7GK3", "story_id": "48529", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally they take a picture of the view from the balcony of one of the event spaces , showing a soccer field with a quiet forest behind .", "storylet_id": "242649"}], [{"original_text": "we saw an eagle at the bird sanctuary ", "album_id": "72157624199731521", "photo_flickr_id": "4741650643", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48530", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we saw an eagle at the bird sanctuary", "storylet_id": "242650"}], [{"original_text": "there were so many different species ", "album_id": "72157624199731521", "photo_flickr_id": "4773234663", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48530", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many different species", "storylet_id": "242651"}], [{"original_text": "even seagulls ", "album_id": "72157624199731521", "photo_flickr_id": "4735108093", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48530", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even seagulls", "storylet_id": "242652"}], [{"original_text": "the owl was a crowd favorite", "album_id": "72157624199731521", "photo_flickr_id": "4741651319", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48530", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the owl was a crowd favorite", "storylet_id": "242653"}], [{"original_text": "the bird is so graceful in the sky ", "album_id": "72157624199731521", "photo_flickr_id": "4742287136", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48530", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bird is so graceful in the sky", "storylet_id": "242654"}], [{"original_text": "This little guy was chirping for a mate.", "album_id": "72157624199731521", "photo_flickr_id": "4721208252", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48531", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this little guy was chirping for a mate .", "storylet_id": "242655"}], [{"original_text": "This hawk was on the lookout for some food.", "album_id": "72157624199731521", "photo_flickr_id": "4741650643", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48531", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this hawk was on the lookout for some food .", "storylet_id": "242656"}], [{"original_text": "This little bird had already found some breakfast.", "album_id": "72157624199731521", "photo_flickr_id": "4724320098", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48531", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this little bird had already found some breakfast .", "storylet_id": "242657"}], [{"original_text": "A bird swimming along searching for some food.", "album_id": "72157624199731521", "photo_flickr_id": "4735744870", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48531", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a bird swimming along searching for some food .", "storylet_id": "242658"}], [{"original_text": "A shrike prowling the field for some food.", "album_id": "72157624199731521", "photo_flickr_id": "4742287136", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48531", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a shrike prowling the field for some food .", "storylet_id": "242659"}], [{"original_text": "I went on vacation in Wyoming.", "album_id": "72157624199731521", "photo_flickr_id": "4741650643", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "48532", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on vacation in location .", "storylet_id": "242660"}], [{"original_text": "Well there I got to go on a guided tour in a wildlife bird sanctuary.", "album_id": "72157624199731521", "photo_flickr_id": "4773234663", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "48532", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "well there i got to go on a guided tour in a wildlife bird sanctuary .", "storylet_id": "242661"}], [{"original_text": " I had never seen so many different types of birds.", "album_id": "72157624199731521", "photo_flickr_id": "4735108093", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "48532", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had never seen so many different types of birds .", "storylet_id": "242662"}], [{"original_text": "A tour guide was very knowledgeable and knew every bird we saw.", "album_id": "72157624199731521", "photo_flickr_id": "4741651319", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "48532", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a tour guide was very knowledgeable and knew every bird we saw .", "storylet_id": "242663"}], [{"original_text": "It was such an amazing experience, I cannot wait to go again.", "album_id": "72157624199731521", "photo_flickr_id": "4742287136", "setting": "last-3-pick-old-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "48532", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was such an amazing experience , i can not wait to go again .", "storylet_id": "242664"}], [{"original_text": "Have you ever gone outside and just marveled at birds?", "album_id": "72157624199731521", "photo_flickr_id": "4741650643", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "48533", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "have you ever gone outside and just marveled at birds ?", "storylet_id": "242665"}], [{"original_text": "They're so majestic in the way they act. From sitting still...", "album_id": "72157624199731521", "photo_flickr_id": "4773234663", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "48533", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they 're so majestic in the way they act . from sitting still ...", "storylet_id": "242666"}], [{"original_text": "... to flying. They swift through the thin air. ", "album_id": "72157624199731521", "photo_flickr_id": "4735108093", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "48533", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "... to flying . they swift through the thin air .", "storylet_id": "242667"}], [{"original_text": "Despite their small size their boldness stands out.", "album_id": "72157624199731521", "photo_flickr_id": "4741651319", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "48533", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "despite their small size their boldness stands out .", "storylet_id": "242668"}], [{"original_text": "Their warriors of the air and I'll never get tired of studying and watching them.", "album_id": "72157624199731521", "photo_flickr_id": "4742287136", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "48533", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their warriors of the air and i 'll never get tired of studying and watching them .", "storylet_id": "242669"}], [{"original_text": "The hawk soared majestically, giving us a sense of awe.", "album_id": "72157624199731521", "photo_flickr_id": "4741650643", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48534", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the hawk soared majestically , giving us a sense of awe .", "storylet_id": "242670"}], [{"original_text": "This guy was a little more on the cute end of the spectrum.", "album_id": "72157624199731521", "photo_flickr_id": "4773234663", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48534", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this guy was a little more on the cute end of the spectrum .", "storylet_id": "242671"}], [{"original_text": "We saw many types of birds over the day.", "album_id": "72157624199731521", "photo_flickr_id": "4735108093", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48534", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw many types of birds over the day .", "storylet_id": "242672"}], [{"original_text": "Including this one sitting on a post.", "album_id": "72157624199731521", "photo_flickr_id": "4741651319", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48534", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "including this one sitting on a post .", "storylet_id": "242673"}], [{"original_text": "But it was the birds of prey that really drew attention.", "album_id": "72157624199731521", "photo_flickr_id": "4742287136", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48534", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but it was the birds of prey that really drew attention .", "storylet_id": "242674"}], [{"original_text": "The children gathered around the tables.", "album_id": "72157624251724973", "photo_flickr_id": "4741999203", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48535", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the children gathered around the tables .", "storylet_id": "242675"}], [{"original_text": "There were quite a few boys this time.", "album_id": "72157624251724973", "photo_flickr_id": "4742518252", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48535", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were quite a few boys this time .", "storylet_id": "242676"}], [{"original_text": "It was make your own snack day.", "album_id": "72157624251724973", "photo_flickr_id": "4742518254", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48535", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was make your own snack day .", "storylet_id": "242677"}], [{"original_text": "They had peanut butter and crackers.", "album_id": "72157624251724973", "photo_flickr_id": "4742518262", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48535", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had peanut butter and crackers .", "storylet_id": "242678"}], [{"original_text": "They could design things with the supplies provided.", "album_id": "72157624251724973", "photo_flickr_id": "4742518270", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48535", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they could design things with the supplies provided .", "storylet_id": "242679"}], [{"original_text": "If it's summer is must be summer day camp.", "album_id": "72157624251724973", "photo_flickr_id": "4741999203", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48536", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "if it 's summer is must be summer day camp .", "storylet_id": "242680"}], [{"original_text": "Making lunch with the other campers.", "album_id": "72157624251724973", "photo_flickr_id": "4742518254", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48536", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "making lunch with the other campers .", "storylet_id": "242681"}], [{"original_text": "Sitting in a circle for story time.", "album_id": "72157624251724973", "photo_flickr_id": "4742518298", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48536", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sitting in a circle for story time .", "storylet_id": "242682"}], [{"original_text": "Listening to the speaker at camp.", "album_id": "72157624251724973", "photo_flickr_id": "4742518306", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48536", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "listening to the speaker at camp .", "storylet_id": "242683"}], [{"original_text": "Going fishing at the end of the day.", "album_id": "72157624251724973", "photo_flickr_id": "4742560266", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48536", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "going fishing at the end of the day .", "storylet_id": "242684"}], [{"original_text": "Everyone in attendance was clearly excited.", "album_id": "72157624251724973", "photo_flickr_id": "4741999203", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48537", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone in attendance was clearly excited .", "storylet_id": "242685"}], [{"original_text": "There were a lot of smiles to be found!", "album_id": "72157624251724973", "photo_flickr_id": "4742518252", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48537", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of smiles to be found !", "storylet_id": "242686"}], [{"original_text": "A lot of bonding took place with the kids.", "album_id": "72157624251724973", "photo_flickr_id": "4742518254", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48537", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lot of bonding took place with the kids .", "storylet_id": "242687"}], [{"original_text": "Of course some appetites got worked up along the way.", "album_id": "72157624251724973", "photo_flickr_id": "4742518262", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48537", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course some appetites got worked up along the way .", "storylet_id": "242688"}], [{"original_text": "But everyone had a great time.", "album_id": "72157624251724973", "photo_flickr_id": "4742518270", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48537", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but everyone had a great time .", "storylet_id": "242689"}], [{"original_text": "I volunteer for the Boys and Girls Club, and today we had a day camp for the kids.", "album_id": "72157624251724973", "photo_flickr_id": "4741999203", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48538", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i volunteer for the boys and organization organization , and today we had a day camp for the kids .", "storylet_id": "242690"}], [{"original_text": "We helped them make food crafts that they could eat.", "album_id": "72157624251724973", "photo_flickr_id": "4742518254", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48538", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we helped them make food crafts that they could eat .", "storylet_id": "242691"}], [{"original_text": "We sat around in a circle and told stories.", "album_id": "72157624251724973", "photo_flickr_id": "4742518298", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48538", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we sat around in a circle and told stories .", "storylet_id": "242692"}], [{"original_text": "Then we had a park ranger discuss safety with them.", "album_id": "72157624251724973", "photo_flickr_id": "4742518306", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48538", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we had a park ranger discuss safety with them .", "storylet_id": "242693"}], [{"original_text": "Finally, we let them try out fishing in the creek! ", "album_id": "72157624251724973", "photo_flickr_id": "4742560266", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48538", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , we let them try out fishing in the creek !", "storylet_id": "242694"}], [{"original_text": "Making arts and crafts. ", "album_id": "72157624251724973", "photo_flickr_id": "4741999203", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48539", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "making arts and crafts .", "storylet_id": "242695"}], [{"original_text": "Making peanut butter and jelly sandwiches. ", "album_id": "72157624251724973", "photo_flickr_id": "4742518254", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48539", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "making peanut butter and jelly sandwiches .", "storylet_id": "242696"}], [{"original_text": "Kids listening to stories. ", "album_id": "72157624251724973", "photo_flickr_id": "4742518298", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48539", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "kids listening to stories .", "storylet_id": "242697"}], [{"original_text": "Learning how to be safe by the river. ", "album_id": "72157624251724973", "photo_flickr_id": "4742518306", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48539", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "learning how to be safe by the river .", "storylet_id": "242698"}], [{"original_text": "Fishing by the rocks. ", "album_id": "72157624251724973", "photo_flickr_id": "4742560266", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48539", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fishing by the rocks .", "storylet_id": "242699"}], [{"original_text": "It's Exel the York College dance team.", "album_id": "72157626943968859", "photo_flickr_id": "5881195006", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48540", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's organization organization organization organization dance team .", "storylet_id": "242700"}], [{"original_text": "A pirate bouncy house for the children.", "album_id": "72157626943968859", "photo_flickr_id": "5881194946", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48540", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a pirate bouncy house for the children .", "storylet_id": "242701"}], [{"original_text": "The students get into the pirate theme.", "album_id": "72157626943968859", "photo_flickr_id": "5881194904", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48540", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the students get into the pirate theme .", "storylet_id": "242702"}], [{"original_text": "A fraternity gets ready for fun day at the college.", "album_id": "72157626943968859", "photo_flickr_id": "5880633427", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48540", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a fraternity gets ready for fun day at the college .", "storylet_id": "242703"}], [{"original_text": "The balloon artist has arrived, let the fun begin.", "album_id": "72157626943968859", "photo_flickr_id": "5881194686", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48540", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the balloon artist has arrived , let the fun begin .", "storylet_id": "242704"}], [{"original_text": "Our group posed in front of the bounce house at the school's yearly charity fair.", "album_id": "72157626943968859", "photo_flickr_id": "5881194946", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48541", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our group posed in front of the bounce house at the school 's yearly charity fair .", "storylet_id": "242705"}], [{"original_text": "We had a place where people could get their photo taken dressed in historical clothing.", "album_id": "72157626943968859", "photo_flickr_id": "5881194904", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48541", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a place where people could get their photo taken dressed in historical clothing .", "storylet_id": "242706"}], [{"original_text": "Our fraternity set up an informational table for prospective members to ask questions.", "album_id": "72157626943968859", "photo_flickr_id": "5880633427", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48541", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our fraternity set up an informational table for prospective members to ask questions .", "storylet_id": "242707"}], [{"original_text": "Another group had an activities table for the small children.", "album_id": "72157626943968859", "photo_flickr_id": "5880633305", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48541", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another group had an activities table for the small children .", "storylet_id": "242708"}], [{"original_text": "I was pound of the entire team that worked so hard to make the day a success.", "album_id": "72157626943968859", "photo_flickr_id": "5881195072", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48541", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was pound of the entire team that worked so hard to make the day a success .", "storylet_id": "242709"}], [{"original_text": "Our sports gathering party was a lot of fun.", "album_id": "72157626943968859", "photo_flickr_id": "5881194946", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48542", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our sports gathering party was a lot of fun .", "storylet_id": "242710"}], [{"original_text": "We had silly photo ops with silly characters.", "album_id": "72157626943968859", "photo_flickr_id": "5881194904", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48542", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had silly photo ops with silly characters .", "storylet_id": "242711"}], [{"original_text": "The sororities were out to recruit new people.", "album_id": "72157626943968859", "photo_flickr_id": "5880633427", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48542", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sororities were out to recruit new people .", "storylet_id": "242712"}], [{"original_text": "There were snacks and drinks for the kids.", "album_id": "72157626943968859", "photo_flickr_id": "5880633305", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48542", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were snacks and drinks for the kids .", "storylet_id": "242713"}], [{"original_text": "A group photo shows what fun we all had.", "album_id": "72157626943968859", "photo_flickr_id": "5881195072", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48542", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a group photo shows what fun we all had .", "storylet_id": "242714"}], [{"original_text": "This bounce castle looked very fun!", "album_id": "72157626943968859", "photo_flickr_id": "5881194946", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48543", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this bounce castle looked very fun !", "storylet_id": "242715"}], [{"original_text": "Everyone got into the pirate theme.", "album_id": "72157626943968859", "photo_flickr_id": "5881194904", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48543", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone got into the pirate theme .", "storylet_id": "242716"}], [{"original_text": "Many booths were there to give out information.", "album_id": "72157626943968859", "photo_flickr_id": "5880633427", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48543", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many booths were there to give out information .", "storylet_id": "242717"}], [{"original_text": "Little kids enjoyed the day especially.", "album_id": "72157626943968859", "photo_flickr_id": "5880633305", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48543", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "little kids enjoyed the day especially .", "storylet_id": "242718"}], [{"original_text": "And afterwards everyone took a group photo to remember it.", "album_id": "72157626943968859", "photo_flickr_id": "5881195072", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48543", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and afterwards everyone took a group photo to remember it .", "storylet_id": "242719"}], [{"original_text": "The dance excel club at York College. ", "album_id": "72157626943968859", "photo_flickr_id": "5881195006", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48544", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dance excel club at organization organization .", "storylet_id": "242720"}], [{"original_text": "The pirate club.", "album_id": "72157626943968859", "photo_flickr_id": "5881194946", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48544", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pirate club .", "storylet_id": "242721"}], [{"original_text": "Taking fun pictures in pirate costumes. ", "album_id": "72157626943968859", "photo_flickr_id": "5881194904", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48544", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "taking fun pictures in pirate costumes .", "storylet_id": "242722"}], [{"original_text": "Kappa Delta PHi Fraternity ready for new members. ", "album_id": "72157626943968859", "photo_flickr_id": "5880633427", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48544", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "kappa delta phi fraternity ready for new members .", "storylet_id": "242723"}], [{"original_text": "Trying on a huge balloon animal hat. ", "album_id": "72157626943968859", "photo_flickr_id": "5881194686", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48544", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "trying on a huge balloon animal hat .", "storylet_id": "242724"}], [{"original_text": "there was a street fair", "album_id": "72157627892108009", "photo_flickr_id": "6288165549", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48545", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a street fair", "storylet_id": "242725"}], [{"original_text": "lots of people got together to raise money for charity", "album_id": "72157627892108009", "photo_flickr_id": "6288184503", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48545", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of people got together to raise money for charity", "storylet_id": "242726"}], [{"original_text": "there were many people there ", "album_id": "72157627892108009", "photo_flickr_id": "6288195189", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48545", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many people there", "storylet_id": "242727"}], [{"original_text": "everyone had a great time", "album_id": "72157627892108009", "photo_flickr_id": "6288730380", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48545", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone had a great time", "storylet_id": "242728"}], [{"original_text": "this girl was the organizer ", "album_id": "72157627892108009", "photo_flickr_id": "6288749506", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48545", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this girl was the organizer", "storylet_id": "242729"}], [{"original_text": "The market carried traditional clothing.", "album_id": "72157627892108009", "photo_flickr_id": "6288165549", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48546", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the market carried traditional clothing .", "storylet_id": "242730"}], [{"original_text": "The ladies looked through the things available.", "album_id": "72157627892108009", "photo_flickr_id": "6288172461", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48546", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ladies looked through the things available .", "storylet_id": "242731"}], [{"original_text": "Some of them bought food.", "album_id": "72157627892108009", "photo_flickr_id": "6288174131", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48546", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them bought food .", "storylet_id": "242732"}], [{"original_text": "The men sold books.", "album_id": "72157627892108009", "photo_flickr_id": "6288697462", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48546", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the men sold books .", "storylet_id": "242733"}], [{"original_text": "She was looking at the books.", "album_id": "72157627892108009", "photo_flickr_id": "6288180139", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48546", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was looking at the books .", "storylet_id": "242734"}], [{"original_text": "This women wore a very interesting dress.", "album_id": "72157627892108009", "photo_flickr_id": "6288165549", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48547", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this women wore a very interesting dress .", "storylet_id": "242735"}], [{"original_text": "We met with some supporters who talked about the event.", "album_id": "72157627892108009", "photo_flickr_id": "6288184503", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48547", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we met with some supporters who talked about the event .", "storylet_id": "242736"}], [{"original_text": "They all gathered in the middle of town square.", "album_id": "72157627892108009", "photo_flickr_id": "6288195189", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48547", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all gathered in the middle of town square .", "storylet_id": "242737"}], [{"original_text": "Some of my friends gathered together to talk about our options.", "album_id": "72157627892108009", "photo_flickr_id": "6288730380", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48547", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of my friends gathered together to talk about our options .", "storylet_id": "242738"}], [{"original_text": "I met this woman on the side who taught me about life.", "album_id": "72157627892108009", "photo_flickr_id": "6288749506", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48547", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i met this woman on the side who taught me about life .", "storylet_id": "242739"}], [{"original_text": "Today I brought my family to a big festival. They were selling many things like clothes and food.", "album_id": "72157627892108009", "photo_flickr_id": "6288165549", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48548", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i brought my family to a big festival . they were selling many things like clothes and food .", "storylet_id": "242740"}], [{"original_text": "My daughter met a friend of hers there and they had fun.", "album_id": "72157627892108009", "photo_flickr_id": "6288184503", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48548", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my daughter met a friend of hers there and they had fun .", "storylet_id": "242741"}], [{"original_text": "There were a lot of people and they look like they enjoyed themselves.", "album_id": "72157627892108009", "photo_flickr_id": "6288195189", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48548", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of people and they look like they enjoyed themselves .", "storylet_id": "242742"}], [{"original_text": "There were three guys there who were setting up to perform later on.", "album_id": "72157627892108009", "photo_flickr_id": "6288730380", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48548", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were three guys there who were setting up to perform later on .", "storylet_id": "242743"}], [{"original_text": "My wife bought herself a nice purse. Everyone had a great time.", "album_id": "72157627892108009", "photo_flickr_id": "6288749506", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48548", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my wife bought herself a nice purse . everyone had a great time .", "storylet_id": "242744"}], [{"original_text": "It was going to be a great day of business. ", "album_id": "72157627892108009", "photo_flickr_id": "6288165549", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48549", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was going to be a great day of business .", "storylet_id": "242745"}], [{"original_text": "Sales were brisk already. ", "album_id": "72157627892108009", "photo_flickr_id": "6288184503", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48549", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sales were brisk already .", "storylet_id": "242746"}], [{"original_text": "They had a large crowd. ", "album_id": "72157627892108009", "photo_flickr_id": "6288195189", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48549", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a large crowd .", "storylet_id": "242747"}], [{"original_text": "Even some guys came. ", "album_id": "72157627892108009", "photo_flickr_id": "6288730380", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48549", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even some guys came .", "storylet_id": "242748"}], [{"original_text": "She was able to find several bags fully of goodies, all at rock bottom prices. ", "album_id": "72157627892108009", "photo_flickr_id": "6288749506", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48549", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was able to find several bags fully of goodies , all at rock bottom prices .", "storylet_id": "242749"}], [{"original_text": "It was a beautiful winter day, foggy with chill in the air, but you could make out a deer crossing the ice.", "album_id": "72157625807339605", "photo_flickr_id": "5399030648", "setting": "first-2-pick-and-tell", "worker_id": "0ZYGK28MB6OLOIH", "story_id": "48550", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful winter day , foggy with chill in the air , but you could make out a deer crossing the ice .", "storylet_id": "242750"}], [{"original_text": "From a distance you could see something perched by an ice fishing hole.", "album_id": "72157625807339605", "photo_flickr_id": "5398427983", "setting": "first-2-pick-and-tell", "worker_id": "0ZYGK28MB6OLOIH", "story_id": "48550", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from a distance you could see something perched by an ice fishing hole .", "storylet_id": "242751"}], [{"original_text": "As we approached you realize its an eagle.", "album_id": "72157625807339605", "photo_flickr_id": "5398429141", "setting": "first-2-pick-and-tell", "worker_id": "0ZYGK28MB6OLOIH", "story_id": "48550", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as we approached you realize its an eagle .", "storylet_id": "242752"}], [{"original_text": "He sat strong and elegant, probably searching for a meal.", "album_id": "72157625807339605", "photo_flickr_id": "5398431783", "setting": "first-2-pick-and-tell", "worker_id": "0ZYGK28MB6OLOIH", "story_id": "48550", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he sat strong and elegant , probably searching for a meal .", "storylet_id": "242753"}], [{"original_text": "I'd say this was one of the best days and views I've had on this frozen lake.", "album_id": "72157625807339605", "photo_flickr_id": "5398429501", "setting": "first-2-pick-and-tell", "worker_id": "0ZYGK28MB6OLOIH", "story_id": "48550", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'd say this was one of the best days and views i 've had on this frozen lake .", "storylet_id": "242754"}], [{"original_text": "The deer crossed the ice carefully.", "album_id": "72157625807339605", "photo_flickr_id": "5399030648", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "48551", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the deer crossed the ice carefully .", "storylet_id": "242755"}], [{"original_text": "It saw an eagle on a post.", "album_id": "72157625807339605", "photo_flickr_id": "5399031132", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "48551", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it saw an eagle on a post .", "storylet_id": "242756"}], [{"original_text": "The eagle waited for the deer.", "album_id": "72157625807339605", "photo_flickr_id": "5399033716", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "48551", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the eagle waited for the deer .", "storylet_id": "242757"}], [{"original_text": "The eagle avoided the ice entirely.", "album_id": "72157625807339605", "photo_flickr_id": "5398431347", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "48551", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the eagle avoided the ice entirely .", "storylet_id": "242758"}], [{"original_text": "It was alone as the deer couldn't get to it.", "album_id": "72157625807339605", "photo_flickr_id": "5398429501", "setting": "first-2-pick-and-tell", "worker_id": "613C4BYOV4GINVN", "story_id": "48551", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was alone as the deer could n't get to it .", "storylet_id": "242759"}], [{"original_text": "I visited the tundra.", "album_id": "72157625807339605", "photo_flickr_id": "5399030648", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48552", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i visited the tundra .", "storylet_id": "242760"}], [{"original_text": "I saw many animals, surprisingly.", "album_id": "72157625807339605", "photo_flickr_id": "5399031132", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48552", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw many animals , surprisingly .", "storylet_id": "242761"}], [{"original_text": "It was extremely cold.", "album_id": "72157625807339605", "photo_flickr_id": "5399033716", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48552", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was extremely cold .", "storylet_id": "242762"}], [{"original_text": "Every trace of water was frozen.", "album_id": "72157625807339605", "photo_flickr_id": "5398431347", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48552", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "every trace of water was frozen .", "storylet_id": "242763"}], [{"original_text": "It was a good learning experience, but it was so cold that I don't think I'm going to come back.", "album_id": "72157625807339605", "photo_flickr_id": "5398429501", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48552", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a good learning experience , but it was so cold that i do n't think i 'm going to come back .", "storylet_id": "242764"}], [{"original_text": "It was difficult to see. ", "album_id": "72157625807339605", "photo_flickr_id": "5399030648", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48553", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was difficult to see .", "storylet_id": "242765"}], [{"original_text": "Almost a white out. ", "album_id": "72157625807339605", "photo_flickr_id": "5399031132", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48553", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "almost a white out .", "storylet_id": "242766"}], [{"original_text": "The small natural lake had frozen. ", "album_id": "72157625807339605", "photo_flickr_id": "5399033716", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48553", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the small natural lake had frozen .", "storylet_id": "242767"}], [{"original_text": "Creatures were having a hard time finding their next meal. ", "album_id": "72157625807339605", "photo_flickr_id": "5398431347", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48553", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "creatures were having a hard time finding their next meal .", "storylet_id": "242768"}], [{"original_text": "One bird stood so still for so long he appeared frozen. ", "album_id": "72157625807339605", "photo_flickr_id": "5398429501", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48553", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one bird stood so still for so long he appeared frozen .", "storylet_id": "242769"}], [{"original_text": "Deer looking for food. ", "album_id": "72157625807339605", "photo_flickr_id": "5399030648", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48554", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "deer looking for food .", "storylet_id": "242770"}], [{"original_text": "And disappeared after hearing noises. ", "album_id": "72157625807339605", "photo_flickr_id": "5398427983", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48554", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and disappeared after hearing noises .", "storylet_id": "242771"}], [{"original_text": "Bird waiting patiently. ", "album_id": "72157625807339605", "photo_flickr_id": "5398429141", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48554", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "bird waiting patiently .", "storylet_id": "242772"}], [{"original_text": "Perching in the cold. ", "album_id": "72157625807339605", "photo_flickr_id": "5398431783", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48554", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "perching in the cold .", "storylet_id": "242773"}], [{"original_text": "About to take a flight.", "album_id": "72157625807339605", "photo_flickr_id": "5398429501", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48554", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "about to take a flight .", "storylet_id": "242774"}], [{"original_text": "The kids all gathered before the game to listen to the coach.", "album_id": "72157626609231048", "photo_flickr_id": "5670532428", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "48555", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids all gathered before the game to listen to the coach .", "storylet_id": "242775"}], [{"original_text": "Everyone was given their own shirt. ", "album_id": "72157626609231048", "photo_flickr_id": "5669966859", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "48555", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was given their own shirt .", "storylet_id": "242776"}], [{"original_text": "She was looking for her parents in the crowd. ", "album_id": "72157626609231048", "photo_flickr_id": "5669969407", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "48555", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was looking for her parents in the crowd .", "storylet_id": "242777"}], [{"original_text": "They all began to line up.", "album_id": "72157626609231048", "photo_flickr_id": "5670539720", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "48555", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they all began to line up .", "storylet_id": "242778"}], [{"original_text": "The race was ready to begin.", "album_id": "72157626609231048", "photo_flickr_id": "5669973565", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "48555", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the race was ready to begin .", "storylet_id": "242779"}], [{"original_text": "The track field is very big and it's a beautiful day to run.", "album_id": "72157626609231048", "photo_flickr_id": "5669981611", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48556", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the track field is very big and it 's a beautiful day to run .", "storylet_id": "242780"}], [{"original_text": "Many kids gather and play with hoola hoops on the track field.", "album_id": "72157626609231048", "photo_flickr_id": "5670564906", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48556", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many kids gather and play with hoola hoops on the track field .", "storylet_id": "242781"}], [{"original_text": "A parent brings her small kid to the track field and lets her watch.", "album_id": "72157626609231048", "photo_flickr_id": "5670031871", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48556", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a parent brings her small kid to the track field and lets her watch .", "storylet_id": "242782"}], [{"original_text": "A lot of the kids hold up a sign with their handprints on it.", "album_id": "72157626609231048", "photo_flickr_id": "5670014811", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48556", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a lot of the kids hold up a sign with their handprints on it .", "storylet_id": "242783"}], [{"original_text": "After a long day, the kids all enjoy a snack together.", "album_id": "72157626609231048", "photo_flickr_id": "5670589398", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48556", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long day , the kids all enjoy a snack together .", "storylet_id": "242784"}], [{"original_text": "It was Junior Field Day for the little ones. They participated in a walking race.", "album_id": "72157626609231048", "photo_flickr_id": "5669981611", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48557", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was [male] field day for the little ones . they participated in a walking race .", "storylet_id": "242785"}], [{"original_text": "They had games to play, like hoop toss.", "album_id": "72157626609231048", "photo_flickr_id": "5670564906", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48557", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had games to play , like hoop toss .", "storylet_id": "242786"}], [{"original_text": "Our littlest couldn't do much, but her spirit was high!", "album_id": "72157626609231048", "photo_flickr_id": "5670031871", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48557", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our littlest could n't do much , but her spirit was high !", "storylet_id": "242787"}], [{"original_text": "The kids lined up behind a sign for photo ops.", "album_id": "72157626609231048", "photo_flickr_id": "5670014811", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48557", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids lined up behind a sign for photo ops .", "storylet_id": "242788"}], [{"original_text": "Lastly, they were able to sit down and have a healthy snack!", "album_id": "72157626609231048", "photo_flickr_id": "5670589398", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48557", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , they were able to sit down and have a healthy snack !", "storylet_id": "242789"}], [{"original_text": "It was a day of excitement at the track.", "album_id": "72157626609231048", "photo_flickr_id": "5670532428", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48558", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a day of excitement at the track .", "storylet_id": "242790"}], [{"original_text": "Many of the kids were eager to show off and play.", "album_id": "72157626609231048", "photo_flickr_id": "5669966859", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48558", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of the kids were eager to show off and play .", "storylet_id": "242791"}], [{"original_text": "And parents were having fun with their kids.", "album_id": "72157626609231048", "photo_flickr_id": "5669969407", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48558", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and parents were having fun with their kids .", "storylet_id": "242792"}], [{"original_text": "It was important to bond together with other students.", "album_id": "72157626609231048", "photo_flickr_id": "5670539720", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48558", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was important to bond together with other students .", "storylet_id": "242793"}], [{"original_text": "Everyone had fun together in the sun.", "album_id": "72157626609231048", "photo_flickr_id": "5669973565", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48558", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had fun together in the sun .", "storylet_id": "242794"}], [{"original_text": "It was field day at Carla's school.", "album_id": "72157626609231048", "photo_flickr_id": "5669981611", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "48559", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was field day at [female] 's school .", "storylet_id": "242795"}], [{"original_text": "The first event was a bean bag toss.", "album_id": "72157626609231048", "photo_flickr_id": "5670564906", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "48559", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first event was a bean bag toss .", "storylet_id": "242796"}], [{"original_text": "We met Carla's friend's little sister later on.", "album_id": "72157626609231048", "photo_flickr_id": "5670031871", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "48559", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we met [female] 's friend 's little sister later on .", "storylet_id": "242797"}], [{"original_text": "When the events were over, everyone gathered for a group photo.", "album_id": "72157626609231048", "photo_flickr_id": "5670014811", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "48559", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the events were over , everyone gathered for a group photo .", "storylet_id": "242798"}], [{"original_text": "As field day drew to a close, everyone got snacks and prepared to go home", "album_id": "72157626609231048", "photo_flickr_id": "5670589398", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "48559", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as field day drew to a close , everyone got snacks and prepared to go home", "storylet_id": "242799"}], [{"original_text": "The seminar was held that afternoon.", "album_id": "72157626609579922", "photo_flickr_id": "5670675406", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48560", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the seminar was held that afternoon .", "storylet_id": "242800"}], [{"original_text": "The children had many hands on opportunities.", "album_id": "72157626609579922", "photo_flickr_id": "5670108043", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48560", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children had many hands on opportunities .", "storylet_id": "242801"}], [{"original_text": "Their were experts there to talk to them.", "album_id": "72157626609579922", "photo_flickr_id": "5670110193", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48560", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their were experts there to talk to them .", "storylet_id": "242802"}], [{"original_text": "They learned a great amount from being there.", "album_id": "72157626609579922", "photo_flickr_id": "5670679118", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48560", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they learned a great amount from being there .", "storylet_id": "242803"}], [{"original_text": "They thought there were many cool things.", "album_id": "72157626609579922", "photo_flickr_id": "5670679650", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48560", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they thought there were many cool things .", "storylet_id": "242804"}], [{"original_text": "The Food Safety commission brought out their tour truck in order to educate the local children.", "album_id": "72157626609579922", "photo_flickr_id": "5670103123", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48561", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization organization organization brought out their tour truck in order to educate the local children .", "storylet_id": "242805"}], [{"original_text": "There were many exhibits set up in the nearby hall that taught the kids all about proper food safety.", "album_id": "72157626609579922", "photo_flickr_id": "5670104361", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48561", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many exhibits set up in the nearby hall that taught the kids all about proper food safety .", "storylet_id": "242806"}], [{"original_text": "Even the small children were able to take part with help from mom or dad.", "album_id": "72157626609579922", "photo_flickr_id": "5670679118", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48561", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the small children were able to take part with help from mom or dad .", "storylet_id": "242807"}], [{"original_text": "So many of the exhibits were \"hands-on\" allowing the kids to do experiments.", "album_id": "72157626609579922", "photo_flickr_id": "5703748088", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48561", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so many of the exhibits were `` hands-on '' allowing the kids to do experiments .", "storylet_id": "242808"}], [{"original_text": "There were many giveaways as well, this one encouraging the kids to plant a garden.", "album_id": "72157626609579922", "photo_flickr_id": "5670111359", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48561", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were many giveaways as well , this one encouraging the kids to plant a garden .", "storylet_id": "242809"}], [{"original_text": "Today, I took my children to a festival to learn about food. There were a lot of activities for children and food trucks.", "album_id": "72157626609579922", "photo_flickr_id": "5670103123", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48562", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , i took my children to a festival to learn about food . there were a lot of activities for children and food trucks .", "storylet_id": "242810"}], [{"original_text": "Kids learned a lot about animals", "album_id": "72157626609579922", "photo_flickr_id": "5670104361", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48562", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "kids learned a lot about animals", "storylet_id": "242811"}], [{"original_text": " and eggs.", "album_id": "72157626609579922", "photo_flickr_id": "5670679118", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48562", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and eggs .", "storylet_id": "242812"}], [{"original_text": "My son learn how to cook a few things", "album_id": "72157626609579922", "photo_flickr_id": "5703748088", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48562", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my son learn how to cook a few things", "storylet_id": "242813"}], [{"original_text": " and we all learned a few things about plants and vegetables.", "album_id": "72157626609579922", "photo_flickr_id": "5670111359", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48562", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and we all learned a few things about plants and vegetables .", "storylet_id": "242814"}], [{"original_text": "We took the kids to a science museum. ", "album_id": "72157626609579922", "photo_flickr_id": "5670675406", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48563", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took the kids to a science museum .", "storylet_id": "242815"}], [{"original_text": "They got to play with education, hands on. ", "album_id": "72157626609579922", "photo_flickr_id": "5670108043", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48563", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got to play with education , hands on .", "storylet_id": "242816"}], [{"original_text": "The instructors were eager to talk to them about their specialities. ", "album_id": "72157626609579922", "photo_flickr_id": "5670110193", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48563", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the instructors were eager to talk to them about their specialities .", "storylet_id": "242817"}], [{"original_text": "There was an egg machine that would tell if they were fertilized or now. ", "album_id": "72157626609579922", "photo_flickr_id": "5670679118", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48563", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was an egg machine that would tell if they were fertilized or now .", "storylet_id": "242818"}], [{"original_text": "The body fat exhibit was a favorite for the boys who thought it was funny. ", "album_id": "72157626609579922", "photo_flickr_id": "5670679650", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48563", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the body fat exhibit was a favorite for the boys who thought it was funny .", "storylet_id": "242819"}], [{"original_text": "The USDA food safety discover zone. ", "album_id": "72157626609579922", "photo_flickr_id": "5670103123", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48564", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization food safety discover zone .", "storylet_id": "242820"}], [{"original_text": "Kids learning about food.", "album_id": "72157626609579922", "photo_flickr_id": "5670104361", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48564", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "kids learning about food .", "storylet_id": "242821"}], [{"original_text": "Is it a good egg or a bad egg. ", "album_id": "72157626609579922", "photo_flickr_id": "5670679118", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48564", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "is it a good egg or a bad egg .", "storylet_id": "242822"}], [{"original_text": "Pouring flour in the bowl.", "album_id": "72157626609579922", "photo_flickr_id": "5703748088", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48564", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "pouring flour in the bowl .", "storylet_id": "242823"}], [{"original_text": "Planting plants in pots. ", "album_id": "72157626609579922", "photo_flickr_id": "5670111359", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48564", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "planting plants in pots .", "storylet_id": "242824"}], [{"original_text": "Black and white photo of an eagle.", "album_id": "72157626831653238", "photo_flickr_id": "5771060421", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48565", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "black and white photo of an eagle .", "storylet_id": "242825"}], [{"original_text": "The eagle prepares to land.", "album_id": "72157626831653238", "photo_flickr_id": "5771064211", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48565", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the eagle prepares to land .", "storylet_id": "242826"}], [{"original_text": "An eagle lands on the mans arm.", "album_id": "72157626831653238", "photo_flickr_id": "5771607620", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48565", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "an eagle lands on the mans arm .", "storylet_id": "242827"}], [{"original_text": "An owl soaring though the air.", "album_id": "72157626831653238", "photo_flickr_id": "5771064869", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48565", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an owl soaring though the air .", "storylet_id": "242828"}], [{"original_text": "The owl about to make a landing.", "album_id": "72157626831653238", "photo_flickr_id": "5771608172", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48565", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the owl about to make a landing .", "storylet_id": "242829"}], [{"original_text": "Going to a wild bird rehabilitation center can be an eye opening trip. ", "album_id": "72157626831653238", "photo_flickr_id": "5771060421", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "48566", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going to a wild bird rehabilitation center can be an eye opening trip .", "storylet_id": "242830"}], [{"original_text": "Some of these beautiful birds have been hurt in accidents, and these people get them healed up and back into the air. ", "album_id": "72157626831653238", "photo_flickr_id": "5771063793", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "48566", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of these beautiful birds have been hurt in accidents , and these people get them healed up and back into the air .", "storylet_id": "242831"}], [{"original_text": "Bob here has trained this golden eagle to fly around and come back to land on his gloved hand. ", "album_id": "72157626831653238", "photo_flickr_id": "5771607620", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "48566", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] here has trained this golden eagle to fly around and come back to land on his gloved hand .", "storylet_id": "242832"}], [{"original_text": "While not all the birds may be attractive, they are all still important. ", "album_id": "72157626831653238", "photo_flickr_id": "5771065561", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "48566", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while not all the birds may be attractive , they are all still important .", "storylet_id": "242833"}], [{"original_text": "I had never seen an owl like this up close in daylight, and he was gorgeous. ", "album_id": "72157626831653238", "photo_flickr_id": "5771610264", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "48566", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had never seen an owl like this up close in daylight , and he was gorgeous .", "storylet_id": "242834"}], [{"original_text": "Birds are majestic creatures.", "album_id": "72157626831653238", "photo_flickr_id": "5771060421", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48567", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "birds are majestic creatures .", "storylet_id": "242835"}], [{"original_text": "They soar wild, untamed, and free.", "album_id": "72157626831653238", "photo_flickr_id": "5771063793", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48567", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they soar wild , untamed , and free .", "storylet_id": "242836"}], [{"original_text": "Though with the right trainer, most birds can be taught to be handled by humans.", "album_id": "72157626831653238", "photo_flickr_id": "5771607620", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48567", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "though with the right trainer , most birds can be taught to be handled by humans .", "storylet_id": "242837"}], [{"original_text": "A bird belongs to itself, though.", "album_id": "72157626831653238", "photo_flickr_id": "5771065561", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48567", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a bird belongs to itself , though .", "storylet_id": "242838"}], [{"original_text": "You cannot contain it's spirit.", "album_id": "72157626831653238", "photo_flickr_id": "5771610264", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48567", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you can not contain it 's spirit .", "storylet_id": "242839"}], [{"original_text": "Today I got to see a bird fly.", "album_id": "72157626831653238", "photo_flickr_id": "5771060421", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48568", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i got to see a bird fly .", "storylet_id": "242840"}], [{"original_text": " The bird first landed right by me.", "album_id": "72157626831653238", "photo_flickr_id": "5771064211", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48568", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bird first landed right by me .", "storylet_id": "242841"}], [{"original_text": "Then it took off soaring in the air again.", "album_id": "72157626831653238", "photo_flickr_id": "5771607620", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48568", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then it took off soaring in the air again .", "storylet_id": "242842"}], [{"original_text": " It spread it large wings and flew away.", "album_id": "72157626831653238", "photo_flickr_id": "5771064869", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48568", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it spread it large wings and flew away .", "storylet_id": "242843"}], [{"original_text": "I finallly saw it land close to its home", "album_id": "72157626831653238", "photo_flickr_id": "5771608172", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48568", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i finallly saw it land close to its home", "storylet_id": "242844"}], [{"original_text": "Today, we went bird watching.", "album_id": "72157626831653238", "photo_flickr_id": "5771060421", "setting": "last-3-pick-old-and-tell", "worker_id": "TPRK6109PCMU0KF", "story_id": "48569", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , we went bird watching .", "storylet_id": "242845"}], [{"original_text": "There was a large bird with long legs, flying through the air. ", "album_id": "72157626831653238", "photo_flickr_id": "5771063793", "setting": "last-3-pick-old-and-tell", "worker_id": "TPRK6109PCMU0KF", "story_id": "48569", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a large bird with long legs , flying through the air .", "storylet_id": "242846"}], [{"original_text": "A man was holding a giant bird on his arm, and told us all that he knew about it.", "album_id": "72157626831653238", "photo_flickr_id": "5771607620", "setting": "last-3-pick-old-and-tell", "worker_id": "TPRK6109PCMU0KF", "story_id": "48569", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man was holding a giant bird on his arm , and told us all that he knew about it .", "storylet_id": "242847"}], [{"original_text": "One bird looked like he would rather that we were not there.", "album_id": "72157626831653238", "photo_flickr_id": "5771065561", "setting": "last-3-pick-old-and-tell", "worker_id": "TPRK6109PCMU0KF", "story_id": "48569", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one bird looked like he would rather that we were not there .", "storylet_id": "242848"}], [{"original_text": "This bird was flying low to the ground, looking for something to eat.", "album_id": "72157626831653238", "photo_flickr_id": "5771610264", "setting": "last-3-pick-old-and-tell", "worker_id": "TPRK6109PCMU0KF", "story_id": "48569", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this bird was flying low to the ground , looking for something to eat .", "storylet_id": "242849"}], [{"original_text": "A soldier scopes out his enemies with binoculars.", "album_id": "72157625372394771", "photo_flickr_id": "5220205722", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48570", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a soldier scopes out his enemies with binoculars .", "storylet_id": "242850"}], [{"original_text": "One of the snipers takes aims at a target.", "album_id": "72157625372394771", "photo_flickr_id": "5220212034", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48570", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of the snipers takes aims at a target .", "storylet_id": "242851"}], [{"original_text": "A small boy peaks around the corner of a boulder and watches the soldiers.", "album_id": "72157625372394771", "photo_flickr_id": "5220221174", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48570", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a small boy peaks around the corner of a boulder and watches the soldiers .", "storylet_id": "242852"}], [{"original_text": "Another soldier prepares a heavy machine gun to face his enemies.", "album_id": "72157625372394771", "photo_flickr_id": "5219630429", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48570", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another soldier prepares a heavy machine gun to face his enemies .", "storylet_id": "242853"}], [{"original_text": "At the end of the day, a sergeant signs an autograph for a little boy.", "album_id": "72157625372394771", "photo_flickr_id": "5219631545", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "48570", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , a sergeant signs an autograph for a little boy .", "storylet_id": "242854"}], [{"original_text": "The spotter directs the sniper where to shoot.", "album_id": "72157625372394771", "photo_flickr_id": "5220205722", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48571", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the spotter directs the sniper where to shoot .", "storylet_id": "242855"}], [{"original_text": "The sniper zeros in on the dangerous target.", "album_id": "72157625372394771", "photo_flickr_id": "5220212034", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48571", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sniper zeros in on the dangerous target .", "storylet_id": "242856"}], [{"original_text": "One of the local soldiers conducting a routine traffic stop.", "album_id": "72157625372394771", "photo_flickr_id": "5220213746", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48571", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the local soldiers conducting a routine traffic stop .", "storylet_id": "242857"}], [{"original_text": "Travis is ready to back up the local soldiers if something heads South.", "album_id": "72157625372394771", "photo_flickr_id": "5219629045", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48571", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is ready to back up the local soldiers if something heads location .", "storylet_id": "242858"}], [{"original_text": "Tommy mans the mini gun in case of hostile activity.", "album_id": "72157625372394771", "photo_flickr_id": "5219630429", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48571", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] mans the mini gun in case of hostile activity .", "storylet_id": "242859"}], [{"original_text": "During a battle with a terrorist group, we decided to scope out the area. We found that the terrorists were holding children hostage.", "album_id": "72157625372394771", "photo_flickr_id": "5220205722", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48572", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during a battle with a terrorist group , we decided to scope out the area . we found that the terrorists were holding children hostage .", "storylet_id": "242860"}], [{"original_text": "As the expert sniper, I took out tons of terrorists without there being any casualties.", "album_id": "72157625372394771", "photo_flickr_id": "5220212034", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48572", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the expert sniper , i took out tons of terrorists without there being any casualties .", "storylet_id": "242861"}], [{"original_text": "The children were happy to be saved.", "album_id": "72157625372394771", "photo_flickr_id": "5220221174", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48572", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the children were happy to be saved .", "storylet_id": "242862"}], [{"original_text": "To finish off the terrorists, we had someone get in the turret and mow down all of them as they ran at us in a last ditch effort. They failed, and we won.", "album_id": "72157625372394771", "photo_flickr_id": "5219630429", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48572", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to finish off the terrorists , we had someone get in the turret and mow down all of them as they ran at us in a last ditch effort . they failed , and we won .", "storylet_id": "242863"}], [{"original_text": "We celebrated our win, and to make the children feel better, we gave them gift. It was a good day.", "album_id": "72157625372394771", "photo_flickr_id": "5219631545", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "48572", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we celebrated our win , and to make the children feel better , we gave them gift . it was a good day .", "storylet_id": "242864"}], [{"original_text": "The area at the border is really tense. ", "album_id": "72157625372394771", "photo_flickr_id": "5220205722", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48573", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the area at the border is really tense .", "storylet_id": "242865"}], [{"original_text": "Snipers are always ready for whatever's coming. ", "album_id": "72157625372394771", "photo_flickr_id": "5220212034", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48573", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "snipers are always ready for whatever 's coming .", "storylet_id": "242866"}], [{"original_text": "The locals are used to the guards. ", "album_id": "72157625372394771", "photo_flickr_id": "5220213746", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48573", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the locals are used to the guards .", "storylet_id": "242867"}], [{"original_text": "The soldiers always seem to be on edge, but their used to their mission. ", "album_id": "72157625372394771", "photo_flickr_id": "5219629045", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48573", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the soldiers always seem to be on edge , but their used to their mission .", "storylet_id": "242868"}], [{"original_text": "Some are more laid back, but still at the ready. ", "album_id": "72157625372394771", "photo_flickr_id": "5219630429", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48573", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some are more laid back , but still at the ready .", "storylet_id": "242869"}], [{"original_text": "There was once an American Sniper.", "album_id": "72157625372394771", "photo_flickr_id": "5220205722", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "48574", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was once an american sniper .", "storylet_id": "242870"}], [{"original_text": "He was the best in his class and has saved many lives during his tour.", "album_id": "72157625372394771", "photo_flickr_id": "5220212034", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "48574", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was the best in his class and has saved many lives during his tour .", "storylet_id": "242871"}], [{"original_text": "He makes the hard decisions of classifying someone as an enemy or civilian.", "album_id": "72157625372394771", "photo_flickr_id": "5220213746", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "48574", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he makes the hard decisions of classifying someone as an enemy or civilian .", "storylet_id": "242872"}], [{"original_text": "His decisions are the difference between mass casualty or a single death.", "album_id": "72157625372394771", "photo_flickr_id": "5219629045", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "48574", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his decisions are the difference between mass casualty or a single death .", "storylet_id": "242873"}], [{"original_text": "To shoot or not is the permanent question in his head.", "album_id": "72157625372394771", "photo_flickr_id": "5219630429", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "48574", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to shoot or not is the permanent question in his head .", "storylet_id": "242874"}], [{"original_text": "Looking at the koala bear at the zoo.", "album_id": "72157627074673796", "photo_flickr_id": "5883910368", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48575", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "looking at the koala bear at the zoo .", "storylet_id": "242875"}], [{"original_text": "Pink flamingos parade at the zoo.", "album_id": "72157627074673796", "photo_flickr_id": "5883370449", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48575", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "pink flamingos parade at the zoo .", "storylet_id": "242876"}], [{"original_text": "Getting up close to a giraffe.", "album_id": "72157627074673796", "photo_flickr_id": "5889183420", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48575", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "getting up close to a giraffe .", "storylet_id": "242877"}], [{"original_text": "Pretty blue bird at the zoo.", "album_id": "72157627074673796", "photo_flickr_id": "5889240768", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48575", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "pretty blue bird at the zoo .", "storylet_id": "242878"}], [{"original_text": "A peacock struts their stuff.", "album_id": "72157627074673796", "photo_flickr_id": "5889249188", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48575", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a peacock struts their stuff .", "storylet_id": "242879"}], [{"original_text": "we went to the zoo", "album_id": "72157627074673796", "photo_flickr_id": "5883335371", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48576", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the zoo", "storylet_id": "242880"}], [{"original_text": "there was a pink flamingo ", "album_id": "72157627074673796", "photo_flickr_id": "5883366997", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48576", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a pink flamingo", "storylet_id": "242881"}], [{"original_text": "the giraffe was laughing ", "album_id": "72157627074673796", "photo_flickr_id": "5889205810", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48576", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the giraffe was laughing", "storylet_id": "242882"}], [{"original_text": "the meercat was stinky", "album_id": "72157627074673796", "photo_flickr_id": "5889219886", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48576", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the meercat was stinky", "storylet_id": "242883"}], [{"original_text": "and the warthog was mean", "album_id": "72157627074673796", "photo_flickr_id": "5889227472", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48576", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the warthog was mean", "storylet_id": "242884"}], [{"original_text": "Our day at the zoo was fantastic fun1", "album_id": "72157627074673796", "photo_flickr_id": "5883910368", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48577", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our day at the zoo was fantastic fun1", "storylet_id": "242885"}], [{"original_text": "The flamingos were lined up like sentries.", "album_id": "72157627074673796", "photo_flickr_id": "5883370449", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48577", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flamingos were lined up like sentries .", "storylet_id": "242886"}], [{"original_text": "The giraffes ignored us as we walked by.", "album_id": "72157627074673796", "photo_flickr_id": "5889183420", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48577", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the giraffes ignored us as we walked by .", "storylet_id": "242887"}], [{"original_text": "There were beautiful blue birds.", "album_id": "72157627074673796", "photo_flickr_id": "5889240768", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48577", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were beautiful blue birds .", "storylet_id": "242888"}], [{"original_text": "Some birds had extraordinary head feathers!", "album_id": "72157627074673796", "photo_flickr_id": "5889249188", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48577", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some birds had extraordinary head feathers !", "storylet_id": "242889"}], [{"original_text": "We had so much fun on our trip to the zoo!", "album_id": "72157627074673796", "photo_flickr_id": "5883910368", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48578", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had so much fun on our trip to the zoo !", "storylet_id": "242890"}], [{"original_text": "We saw so many animals.", "album_id": "72157627074673796", "photo_flickr_id": "5883370449", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48578", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw so many animals .", "storylet_id": "242891"}], [{"original_text": "My best friend almost passed out from excitement from seeing her favorite animal, the giraffe.", "album_id": "72157627074673796", "photo_flickr_id": "5889183420", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48578", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my best friend almost passed out from excitement from seeing her favorite animal , the giraffe .", "storylet_id": "242892"}], [{"original_text": "The animal species at the zoo were so diverse.", "album_id": "72157627074673796", "photo_flickr_id": "5889240768", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48578", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the animal species at the zoo were so diverse .", "storylet_id": "242893"}], [{"original_text": "It was a very unique place.", "album_id": "72157627074673796", "photo_flickr_id": "5889249188", "setting": "last-3-pick-old-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "48578", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a very unique place .", "storylet_id": "242894"}], [{"original_text": "Koala eating leaves. ", "album_id": "72157627074673796", "photo_flickr_id": "5883910368", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48579", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "koala eating leaves .", "storylet_id": "242895"}], [{"original_text": "Flamingoes standing in a line. ", "album_id": "72157627074673796", "photo_flickr_id": "5883370449", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48579", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "flamingoes standing in a line .", "storylet_id": "242896"}], [{"original_text": "Giraffe looking for food. ", "album_id": "72157627074673796", "photo_flickr_id": "5889183420", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48579", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "giraffe looking for food .", "storylet_id": "242897"}], [{"original_text": "A singing bird. ", "album_id": "72157627074673796", "photo_flickr_id": "5889240768", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48579", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a singing bird .", "storylet_id": "242898"}], [{"original_text": "A flying bird. ", "album_id": "72157627074673796", "photo_flickr_id": "5889249188", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48579", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a flying bird .", "storylet_id": "242899"}], [{"original_text": "Drake and Sarah went to visit the stone city today. It is very unique and special.", "album_id": "72157628013505086", "photo_flickr_id": "6498377945", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "48580", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] went to visit the stone city today . it is very unique and special .", "storylet_id": "242900"}], [{"original_text": "The city has been formed throughout the years by the water and nature.", "album_id": "72157628013505086", "photo_flickr_id": "6498378711", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "48580", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city has been formed throughout the years by the water and nature .", "storylet_id": "242901"}], [{"original_text": "Sarah admires how the city was formed and how it stays there during the storms.", "album_id": "72157628013505086", "photo_flickr_id": "6498377149", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "48580", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] admires how the city was formed and how it stays there during the storms .", "storylet_id": "242902"}], [{"original_text": "Drake says he likes the really tall one. They remind him of skyscrapers.", "album_id": "72157628013505086", "photo_flickr_id": "6498380663", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "48580", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] says he likes the really tall one . they remind him of skyscrapers .", "storylet_id": "242903"}], [{"original_text": "Sarah takes one more photo to remember the stone city. It is off to lunch for the two of them.", "album_id": "72157628013505086", "photo_flickr_id": "6498386651", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "48580", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] takes one more photo to remember the stone city . it is off to lunch for the two of them .", "storylet_id": "242904"}], [{"original_text": "Taylor striking a pose along the chilly beach.", "album_id": "72157628013505086", "photo_flickr_id": "6498377149", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48581", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] striking a pose along the chilly beach .", "storylet_id": "242905"}], [{"original_text": "Some of the ruins that Taylor and Ben were exploring.", "album_id": "72157628013505086", "photo_flickr_id": "6498378711", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48581", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the ruins that [female] and [male] were exploring .", "storylet_id": "242906"}], [{"original_text": "Ben showing how peaceful and balanced he is.", "album_id": "72157628013505086", "photo_flickr_id": "6498383255", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48581", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] showing how peaceful and balanced he is .", "storylet_id": "242907"}], [{"original_text": "Taylor hiding from the wind behind a pillar.", "album_id": "72157628013505086", "photo_flickr_id": "6498386651", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48581", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] hiding from the wind behind a pillar .", "storylet_id": "242908"}], [{"original_text": "Taylor enjoying the day exploring the ruins.", "album_id": "72157628013505086", "photo_flickr_id": "6498388725", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48581", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] enjoying the day exploring the ruins .", "storylet_id": "242909"}], [{"original_text": "The ancient ruins loomed overhead as we made our way through them.", "album_id": "72157628013505086", "photo_flickr_id": "6498377945", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48582", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ancient ruins loomed overhead as we made our way through them .", "storylet_id": "242910"}], [{"original_text": "They are an awesome sight to behold.", "album_id": "72157628013505086", "photo_flickr_id": "6498378711", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48582", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are an awesome sight to behold .", "storylet_id": "242911"}], [{"original_text": "My girlfriend had a great time here.", "album_id": "72157628013505086", "photo_flickr_id": "6498377149", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48582", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my girlfriend had a great time here .", "storylet_id": "242912"}], [{"original_text": "I did as well, roaming around these old structures.", "album_id": "72157628013505086", "photo_flickr_id": "6498380663", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48582", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i did as well , roaming around these old structures .", "storylet_id": "242913"}], [{"original_text": "She even climbed up on a few and enjoyed the view.", "album_id": "72157628013505086", "photo_flickr_id": "6498386651", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48582", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she even climbed up on a few and enjoyed the view .", "storylet_id": "242914"}], [{"original_text": "We visited what was left of a construction in the hills.", "album_id": "72157628013505086", "photo_flickr_id": "6498377945", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48583", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited what was left of a construction in the hills .", "storylet_id": "242915"}], [{"original_text": "Most of the original building looks like it was worn down over time.", "album_id": "72157628013505086", "photo_flickr_id": "6498378711", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48583", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "most of the original building looks like it was worn down over time .", "storylet_id": "242916"}], [{"original_text": "We spent the day exploring the site.", "album_id": "72157628013505086", "photo_flickr_id": "6498377149", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48583", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we spent the day exploring the site .", "storylet_id": "242917"}], [{"original_text": "Then we took pictures to remember the day.", "album_id": "72157628013505086", "photo_flickr_id": "6498380663", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48583", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we took pictures to remember the day .", "storylet_id": "242918"}], [{"original_text": "After that we took time to enjoy the scenery.", "album_id": "72157628013505086", "photo_flickr_id": "6498386651", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48583", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that we took time to enjoy the scenery .", "storylet_id": "242919"}], [{"original_text": "Visiting a cite with her dad. ", "album_id": "72157628013505086", "photo_flickr_id": "6498377149", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48584", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visiting a cite with her dad .", "storylet_id": "242920"}], [{"original_text": "Looking at old ruins. ", "album_id": "72157628013505086", "photo_flickr_id": "6498378711", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48584", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "looking at old ruins .", "storylet_id": "242921"}], [{"original_text": "Doing yoga.", "album_id": "72157628013505086", "photo_flickr_id": "6498383255", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48584", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "doing yoga .", "storylet_id": "242922"}], [{"original_text": "Seating on a rock. ", "album_id": "72157628013505086", "photo_flickr_id": "6498386651", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48584", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "seating on a rock .", "storylet_id": "242923"}], [{"original_text": "Climbing through the rocks. ", "album_id": "72157628013505086", "photo_flickr_id": "6498388725", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48584", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "climbing through the rocks .", "storylet_id": "242924"}], [{"original_text": "This is a town that is centered around a castle.", "album_id": "72057594117511166", "photo_flickr_id": "135354320", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "48585", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a town that is centered around a castle .", "storylet_id": "242925"}], [{"original_text": "The river leads straight to the castle. ", "album_id": "72057594117511166", "photo_flickr_id": "136044960", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "48585", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the river leads straight to the castle .", "storylet_id": "242926"}], [{"original_text": "Quaint streets lead to gracious neighborhoods. ", "album_id": "72057594117511166", "photo_flickr_id": "135354433", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "48585", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "quaint streets lead to gracious neighborhoods .", "storylet_id": "242927"}], [{"original_text": "A local wit carved this log into a friendly crocodile, it leads the way to the suspension bridge. ", "album_id": "72057594117511166", "photo_flickr_id": "135947944", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "48585", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a local wit carved this log into a friendly crocodile , it leads the way to the suspension bridge .", "storylet_id": "242928"}], [{"original_text": "There are smaller walking bridges for pedestrians. ", "album_id": "72057594117511166", "photo_flickr_id": "136035155", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "48585", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are smaller walking bridges for pedestrians .", "storylet_id": "242929"}], [{"original_text": "I love this kind of old artwork.", "album_id": "72057594117511166", "photo_flickr_id": "135785930", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48586", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love this kind of old artwork .", "storylet_id": "242930"}], [{"original_text": "We saw some really creative works of art here.", "album_id": "72057594117511166", "photo_flickr_id": "135788723", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48586", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw some really creative works of art here .", "storylet_id": "242931"}], [{"original_text": "This alley was to beautiful not to capture", "album_id": "72057594117511166", "photo_flickr_id": "135354433", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48586", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this alley was to beautiful not to capture", "storylet_id": "242932"}], [{"original_text": "This old building was very scenic and surreal.", "album_id": "72057594117511166", "photo_flickr_id": "135354320", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48586", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this old building was very scenic and surreal .", "storylet_id": "242933"}], [{"original_text": "Finally, we saw some more modern works of art. ", "album_id": "72057594117511166", "photo_flickr_id": "135947944", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48586", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , we saw some more modern works of art .", "storylet_id": "242934"}], [{"original_text": "The old church gave off a creepy feeling.", "album_id": "72057594117511166", "photo_flickr_id": "135354320", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48587", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old church gave off a creepy feeling .", "storylet_id": "242935"}], [{"original_text": "We didn't care thought since the area was so pretty.", "album_id": "72057594117511166", "photo_flickr_id": "136044960", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48587", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we did n't care thought since the area was so pretty .", "storylet_id": "242936"}], [{"original_text": "All the pathways led to more wonders.", "album_id": "72057594117511166", "photo_flickr_id": "135354433", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48587", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the pathways led to more wonders .", "storylet_id": "242937"}], [{"original_text": "We even came across an open field.", "album_id": "72057594117511166", "photo_flickr_id": "135947944", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48587", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even came across an open field .", "storylet_id": "242938"}], [{"original_text": "From there, we could see even more water. ", "album_id": "72057594117511166", "photo_flickr_id": "136035155", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48587", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "from there , we could see even more water .", "storylet_id": "242939"}], [{"original_text": "You took a trip to another country, and saw a castle.", "album_id": "72057594117511166", "photo_flickr_id": "135354320", "setting": "last-3-pick-old-and-tell", "worker_id": "3997WT1EFR51GVI", "story_id": "48588", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "you took a trip to another country , and saw a castle .", "storylet_id": "242940"}], [{"original_text": "After that, you rested and watched a peaceful river.", "album_id": "72057594117511166", "photo_flickr_id": "136044960", "setting": "last-3-pick-old-and-tell", "worker_id": "3997WT1EFR51GVI", "story_id": "48588", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after that , you rested and watched a peaceful river .", "storylet_id": "242941"}], [{"original_text": "Next, as you were walking, you headed down a tiny street.", "album_id": "72057594117511166", "photo_flickr_id": "135354433", "setting": "last-3-pick-old-and-tell", "worker_id": "3997WT1EFR51GVI", "story_id": "48588", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next , as you were walking , you headed down a tiny street .", "storylet_id": "242942"}], [{"original_text": "Turning the corner, you found a big field, with a cool log carved into a crocodile.", "album_id": "72057594117511166", "photo_flickr_id": "135947944", "setting": "last-3-pick-old-and-tell", "worker_id": "3997WT1EFR51GVI", "story_id": "48588", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "turning the corner , you found a big field , with a cool log carved into a crocodile .", "storylet_id": "242943"}], [{"original_text": "You walked through the park until you found the river again. You had a lovely day!", "album_id": "72057594117511166", "photo_flickr_id": "136035155", "setting": "last-3-pick-old-and-tell", "worker_id": "3997WT1EFR51GVI", "story_id": "48588", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you walked through the park until you found the river again . you had a lovely day !", "storylet_id": "242944"}], [{"original_text": "We went to Europe and visited some old cathedrals.", "album_id": "72057594117511166", "photo_flickr_id": "135354320", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "48589", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to location and visited some old cathedrals .", "storylet_id": "242945"}], [{"original_text": "They were located right off the river.", "album_id": "72057594117511166", "photo_flickr_id": "136044960", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "48589", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were located right off the river .", "storylet_id": "242946"}], [{"original_text": "The streets still looked like cobblestone.", "album_id": "72057594117511166", "photo_flickr_id": "135354433", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "48589", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the streets still looked like cobblestone .", "storylet_id": "242947"}], [{"original_text": "The bridges were new though.", "album_id": "72057594117511166", "photo_flickr_id": "135947944", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "48589", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bridges were new though .", "storylet_id": "242948"}], [{"original_text": "We enjoyed the views of the water and old town.", "album_id": "72057594117511166", "photo_flickr_id": "136035155", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "48589", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we enjoyed the views of the water and old town .", "storylet_id": "242949"}], [{"original_text": "When I was in elementary school, we had a day called Field Day.", "album_id": "72057594127107722", "photo_flickr_id": "141441379", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48590", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i was in elementary school , we had a day called field day .", "storylet_id": "242950"}], [{"original_text": "On Field Day, all the kids in school would dress up in their favorite colors and compete against eachother.", "album_id": "72057594127107722", "photo_flickr_id": "141520602", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48590", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on field day , all the kids in school would dress up in their favorite colors and compete against eachother .", "storylet_id": "242951"}], [{"original_text": "We would race, jump, dribble, and climb.", "album_id": "72057594127107722", "photo_flickr_id": "141602195", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48590", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we would race , jump , dribble , and climb .", "storylet_id": "242952"}], [{"original_text": "Sometimes we would do this in the gym.", "album_id": "72057594127107722", "photo_flickr_id": "141619407", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48590", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes we would do this in the gym .", "storylet_id": "242953"}], [{"original_text": "The most important thing with these silly games was to have fun.", "album_id": "72057594127107722", "photo_flickr_id": "142376206", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48590", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the most important thing with these silly games was to have fun .", "storylet_id": "242954"}], [{"original_text": "Field day at the end of the school year is always a highlight for the kids and teachers.", "album_id": "72057594127107722", "photo_flickr_id": "141441379", "setting": "first-2-pick-and-tell", "worker_id": "89NM124JOXN14TG", "story_id": "48591", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "field day at the end of the school year is always a highlight for the kids and teachers .", "storylet_id": "242955"}], [{"original_text": "There are great activities that get the kids moving, like relay races.", "album_id": "72057594127107722", "photo_flickr_id": "141478987", "setting": "first-2-pick-and-tell", "worker_id": "89NM124JOXN14TG", "story_id": "48591", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are great activities that get the kids moving , like relay races .", "storylet_id": "242956"}], [{"original_text": "The teacher run the station for the kids, such as a basketball foul shot competition.", "album_id": "72057594127107722", "photo_flickr_id": "141619859", "setting": "first-2-pick-and-tell", "worker_id": "89NM124JOXN14TG", "story_id": "48591", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the teacher run the station for the kids , such as a basketball foul shot competition .", "storylet_id": "242957"}], [{"original_text": "There are group activities that the kids loves to work together on, like making their way through the obstacle course.", "album_id": "72057594127107722", "photo_flickr_id": "141625237", "setting": "first-2-pick-and-tell", "worker_id": "89NM124JOXN14TG", "story_id": "48591", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are group activities that the kids loves to work together on , like making their way through the obstacle course .", "storylet_id": "242958"}], [{"original_text": "Children are encouraged to try new things, and make their way through each station, like this bigfoot walk.", "album_id": "72057594127107722", "photo_flickr_id": "142360437", "setting": "first-2-pick-and-tell", "worker_id": "89NM124JOXN14TG", "story_id": "48591", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "children are encouraged to try new things , and make their way through each station , like this bigfoot walk .", "storylet_id": "242959"}], [{"original_text": "Field Day had finally come.", "album_id": "72057594127107722", "photo_flickr_id": "141441379", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48592", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "field day had finally come .", "storylet_id": "242960"}], [{"original_text": "All of the kids were excited to start their relays.", "album_id": "72057594127107722", "photo_flickr_id": "141520602", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48592", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the kids were excited to start their relays .", "storylet_id": "242961"}], [{"original_text": "The relays started they took off.", "album_id": "72057594127107722", "photo_flickr_id": "141602195", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48592", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the relays started they took off .", "storylet_id": "242962"}], [{"original_text": "They all lined up together inside too.", "album_id": "72057594127107722", "photo_flickr_id": "141619407", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48592", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they all lined up together inside too .", "storylet_id": "242963"}], [{"original_text": "There were relays for everyone to enjoy.", "album_id": "72057594127107722", "photo_flickr_id": "142376206", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48592", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were relays for everyone to enjoy .", "storylet_id": "242964"}], [{"original_text": "Jaime is balancing the egg all the way to the finish line. ", "album_id": "72057594127107722", "photo_flickr_id": "141441379", "setting": "last-3-pick-old-and-tell", "worker_id": "JUTE8N4558P20VM", "story_id": "48593", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is balancing the egg all the way to the finish line .", "storylet_id": "242965"}], [{"original_text": "The kids all line up for another field day game. ", "album_id": "72057594127107722", "photo_flickr_id": "141520602", "setting": "last-3-pick-old-and-tell", "worker_id": "JUTE8N4558P20VM", "story_id": "48593", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids all line up for another field day game .", "storylet_id": "242966"}], [{"original_text": "Cara is taking the lead and has a chance at winning this game. ", "album_id": "72057594127107722", "photo_flickr_id": "141602195", "setting": "last-3-pick-old-and-tell", "worker_id": "JUTE8N4558P20VM", "story_id": "48593", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] is taking the lead and has a chance at winning this game .", "storylet_id": "242967"}], [{"original_text": "Paul giving instructions for the basketball shoot off. ", "album_id": "72057594127107722", "photo_flickr_id": "141619407", "setting": "last-3-pick-old-and-tell", "worker_id": "JUTE8N4558P20VM", "story_id": "48593", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] giving instructions for the basketball shoot off .", "storylet_id": "242968"}], [{"original_text": "Ryan is making filling up big shoes look so easy as he takes races towards the goal. ", "album_id": "72057594127107722", "photo_flickr_id": "142376206", "setting": "last-3-pick-old-and-tell", "worker_id": "JUTE8N4558P20VM", "story_id": "48593", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] is making filling up big shoes look so easy as he takes races towards the goal .", "storylet_id": "242969"}], [{"original_text": "I had a great time at the youth charity center last weekend.", "album_id": "72057594127107722", "photo_flickr_id": "141441379", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48594", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the youth charity center last weekend .", "storylet_id": "242970"}], [{"original_text": "I helped organize the outdoors event today.", "album_id": "72057594127107722", "photo_flickr_id": "141520602", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48594", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i helped organize the outdoors event today .", "storylet_id": "242971"}], [{"original_text": "It was a lot of fun for the kids.", "album_id": "72057594127107722", "photo_flickr_id": "141602195", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48594", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a lot of fun for the kids .", "storylet_id": "242972"}], [{"original_text": "They all had a great time playing all kinds of sports today.", "album_id": "72057594127107722", "photo_flickr_id": "141619407", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48594", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they all had a great time playing all kinds of sports today .", "storylet_id": "242973"}], [{"original_text": "There were a lot of prizes to win.", "album_id": "72057594127107722", "photo_flickr_id": "142376206", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48594", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were a lot of prizes to win .", "storylet_id": "242974"}], [{"original_text": "It was a nice day to hit the slopes.", "album_id": "72157600637630564", "photo_flickr_id": "711846309", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48595", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a nice day to hit the slopes .", "storylet_id": "242975"}], [{"original_text": "Everyone was ready to enjoy the day by the lodge.", "album_id": "72157600637630564", "photo_flickr_id": "712721446", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48595", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was ready to enjoy the day by the lodge .", "storylet_id": "242976"}], [{"original_text": "The sky was clear and the slopes powdered with fresh snow.", "album_id": "72157600637630564", "photo_flickr_id": "712721964", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48595", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sky was clear and the slopes powdered with fresh snow .", "storylet_id": "242977"}], [{"original_text": "These slopes can get pretty high.", "album_id": "72157600637630564", "photo_flickr_id": "712733596", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48595", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these slopes can get pretty high .", "storylet_id": "242978"}], [{"original_text": "A great day was had by all. They can't wait to go back. ", "album_id": "72157600637630564", "photo_flickr_id": "711896545", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48595", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a great day was had by all . they ca n't wait to go back .", "storylet_id": "242979"}], [{"original_text": "The ski lodge was relatively empty.", "album_id": "72157600637630564", "photo_flickr_id": "711857563", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "48596", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ski lodge was relatively empty .", "storylet_id": "242980"}], [{"original_text": "There were very few people on the slope.", "album_id": "72157600637630564", "photo_flickr_id": "712733944", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "48596", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were very few people on the slope .", "storylet_id": "242981"}], [{"original_text": "One person went up the hill by themselves.", "album_id": "72157600637630564", "photo_flickr_id": "712771168", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "48596", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one person went up the hill by themselves .", "storylet_id": "242982"}], [{"original_text": "They then skied down by themselves. ", "album_id": "72157600637630564", "photo_flickr_id": "711896923", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "48596", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they then skied down by themselves .", "storylet_id": "242983"}], [{"original_text": "Another had an entire face to himself.", "album_id": "72157600637630564", "photo_flickr_id": "712879740", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "48596", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "another had an entire face to himself .", "storylet_id": "242984"}], [{"original_text": "These were some pictures I took on my trip skiing last winter.", "album_id": "72157600637630564", "photo_flickr_id": "711846309", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "48597", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these were some pictures i took on my trip skiing last winter .", "storylet_id": "242985"}], [{"original_text": "My husband looks very comfy. I thought we were skiing?!", "album_id": "72157600637630564", "photo_flickr_id": "712721446", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "48597", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my husband looks very comfy . i thought we were skiing ? !", "storylet_id": "242986"}], [{"original_text": "This was a picture of the trail. It looks so pretty.", "album_id": "72157600637630564", "photo_flickr_id": "712721964", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "48597", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was a picture of the trail . it looks so pretty .", "storylet_id": "242987"}], [{"original_text": "More pictures of the mountain. I could not get over how amazing the site was.", "album_id": "72157600637630564", "photo_flickr_id": "712733596", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "48597", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more pictures of the mountain . i could not get over how amazing the site was .", "storylet_id": "242988"}], [{"original_text": "Yeah rock n' roll! We have a lot of fun. ", "album_id": "72157600637630564", "photo_flickr_id": "711896545", "setting": "last-3-pick-old-and-tell", "worker_id": "EMISPZMX6IQJ6G4", "story_id": "48597", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "yeah rock n ' roll ! we have a lot of fun .", "storylet_id": "242989"}], [{"original_text": "Samantha was ready to hit the slopes.", "album_id": "72157600637630564", "photo_flickr_id": "711846309", "setting": "last-3-pick-old-and-tell", "worker_id": "3997WT1EFR51GVI", "story_id": "48598", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was ready to hit the slopes .", "storylet_id": "242990"}], [{"original_text": "Anton told her to go ahead, he was going to rest while she skied.", "album_id": "72157600637630564", "photo_flickr_id": "712721446", "setting": "last-3-pick-old-and-tell", "worker_id": "3997WT1EFR51GVI", "story_id": "48598", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] told her to go ahead , he was going to rest while she skied .", "storylet_id": "242991"}], [{"original_text": "She got to the top and got ready to go down.", "album_id": "72157600637630564", "photo_flickr_id": "712721964", "setting": "last-3-pick-old-and-tell", "worker_id": "3997WT1EFR51GVI", "story_id": "48598", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she got to the top and got ready to go down .", "storylet_id": "242992"}], [{"original_text": "The view of the mountains was beautiful as she skied down.", "album_id": "72157600637630564", "photo_flickr_id": "712733596", "setting": "last-3-pick-old-and-tell", "worker_id": "3997WT1EFR51GVI", "story_id": "48598", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view of the mountains was beautiful as she skied down .", "storylet_id": "242993"}], [{"original_text": "She had a great day skiing!", "album_id": "72157600637630564", "photo_flickr_id": "711896545", "setting": "last-3-pick-old-and-tell", "worker_id": "3997WT1EFR51GVI", "story_id": "48598", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she had a great day skiing !", "storylet_id": "242994"}], [{"original_text": "Our annual ski trip was in Colorado this year.", "album_id": "72157600637630564", "photo_flickr_id": "711846309", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "48599", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our annual ski trip was in location this year .", "storylet_id": "242995"}], [{"original_text": "My husband took a short rest to enjoy the sunshine.", "album_id": "72157600637630564", "photo_flickr_id": "712721446", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "48599", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my husband took a short rest to enjoy the sunshine .", "storylet_id": "242996"}], [{"original_text": "Here's the view from the mountain top.", "album_id": "72157600637630564", "photo_flickr_id": "712721964", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "48599", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's the view from the mountain top .", "storylet_id": "242997"}], [{"original_text": "That's where the ski lift takes us. Way up there.", "album_id": "72157600637630564", "photo_flickr_id": "712733596", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "48599", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that 's where the ski lift takes us . way up there .", "storylet_id": "242998"}], [{"original_text": "This was our best ski trip ever. I love Colorado.", "album_id": "72157600637630564", "photo_flickr_id": "711896545", "setting": "last-3-pick-old-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "48599", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was our best ski trip ever . i love location .", "storylet_id": "242999"}], [{"original_text": "I cleaned my plate.", "album_id": "72157594308439717", "photo_flickr_id": "258132232", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "48600", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i cleaned my plate .", "storylet_id": "243000"}], [{"original_text": "But then the food reappeared.", "album_id": "72157594308439717", "photo_flickr_id": "258132113", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "48600", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but then the food reappeared .", "storylet_id": "243001"}], [{"original_text": "I followed it up with some pie.", "album_id": "72157594308439717", "photo_flickr_id": "258515149", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "48600", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i followed it up with some pie .", "storylet_id": "243002"}], [{"original_text": "There were some beautiful flowers.", "album_id": "72157594308439717", "photo_flickr_id": "258515243", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "48600", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were some beautiful flowers .", "storylet_id": "243003"}], [{"original_text": "Then I saw a beautiful sunset.", "album_id": "72157594308439717", "photo_flickr_id": "259700440", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "48600", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then i saw a beautiful sunset .", "storylet_id": "243004"}], [{"original_text": "At the event at our church we got to eat lots of good food.", "album_id": "72157594308439717", "photo_flickr_id": "258131821", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "48601", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the event at our church we got to eat lots of good food .", "storylet_id": "243005"}], [{"original_text": "The plate had many healthy things on it for everyone.", "album_id": "72157594308439717", "photo_flickr_id": "258132113", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "48601", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the plate had many healthy things on it for everyone .", "storylet_id": "243006"}], [{"original_text": "After that we got to enjoy some pie for dessert.", "album_id": "72157594308439717", "photo_flickr_id": "258515149", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "48601", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that we got to enjoy some pie for dessert .", "storylet_id": "243007"}], [{"original_text": "The sun began to set on our day with our church group.", "album_id": "72157594308439717", "photo_flickr_id": "258515357", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "48601", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sun began to set on our day with our church group .", "storylet_id": "243008"}], [{"original_text": "The baby began to get tired and fell asleep.", "album_id": "72157594308439717", "photo_flickr_id": "259700308", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "48601", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the baby began to get tired and fell asleep .", "storylet_id": "243009"}], [{"original_text": "We had a church picnic last week.", "album_id": "72157594308439717", "photo_flickr_id": "258132232", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48602", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a church picnic last week .", "storylet_id": "243010"}], [{"original_text": "Everybody brought something to eat.", "album_id": "72157594308439717", "photo_flickr_id": "258132113", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48602", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everybody brought something to eat .", "storylet_id": "243011"}], [{"original_text": "The desserts were wonderful.", "album_id": "72157594308439717", "photo_flickr_id": "258515149", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48602", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the desserts were wonderful .", "storylet_id": "243012"}], [{"original_text": "The decorations were really pretty.", "album_id": "72157594308439717", "photo_flickr_id": "258515243", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48602", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the decorations were really pretty .", "storylet_id": "243013"}], [{"original_text": "At the end of the picnic, we felt good in having shared our fellowship.", "album_id": "72157594308439717", "photo_flickr_id": "259700440", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48602", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the picnic , we felt good in having shared our fellowship .", "storylet_id": "243014"}], [{"original_text": "The mom and her baby decided to enjoy a day out at the church pot luck dinner.", "album_id": "72157594308439717", "photo_flickr_id": "258131821", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "48603", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the mom and her baby decided to enjoy a day out at the church pot luck dinner .", "storylet_id": "243015"}], [{"original_text": "The ladies made traditional recipes for the event.", "album_id": "72157594308439717", "photo_flickr_id": "258132113", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "48603", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ladies made traditional recipes for the event .", "storylet_id": "243016"}], [{"original_text": "There's nothing like a homemade cherry pie.", "album_id": "72157594308439717", "photo_flickr_id": "258515149", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "48603", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there 's nothing like a homemade cherry pie .", "storylet_id": "243017"}], [{"original_text": "The sun was starting to set and everyone had eaten.", "album_id": "72157594308439717", "photo_flickr_id": "258515357", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "48603", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sun was starting to set and everyone had eaten .", "storylet_id": "243018"}], [{"original_text": "The tired babies were ready for the ride home after a fun day.", "album_id": "72157594308439717", "photo_flickr_id": "259700308", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "48603", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the tired babies were ready for the ride home after a fun day .", "storylet_id": "243019"}], [{"original_text": "Difficult food decisions for the little one. ", "album_id": "72157594308439717", "photo_flickr_id": "258131821", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48604", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "difficult food decisions for the little one .", "storylet_id": "243020"}], [{"original_text": "Comfort food, so old fashioned and good. ", "album_id": "72157594308439717", "photo_flickr_id": "258132113", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48604", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "comfort food , so old fashioned and good .", "storylet_id": "243021"}], [{"original_text": "Cherry pie always hits the spot. ", "album_id": "72157594308439717", "photo_flickr_id": "258515149", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48604", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] pie always hits the spot .", "storylet_id": "243022"}], [{"original_text": "The day was ending on the church social.", "album_id": "72157594308439717", "photo_flickr_id": "258515357", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48604", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the day was ending on the church social .", "storylet_id": "243023"}], [{"original_text": "After a busy day of fun and eating, some were already tired. ", "album_id": "72157594308439717", "photo_flickr_id": "259700308", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48604", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a busy day of fun and eating , some were already tired .", "storylet_id": "243024"}], [{"original_text": "The school was full of information. ", "album_id": "72157594326560194", "photo_flickr_id": "268648143", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48605", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the school was full of information .", "storylet_id": "243025"}], [{"original_text": "The men we're dressed in safety suits.", "album_id": "72157594326560194", "photo_flickr_id": "268648305", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48605", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the men we 're dressed in safety suits .", "storylet_id": "243026"}], [{"original_text": "I didn't know how well organized the event was.", "album_id": "72157594326560194", "photo_flickr_id": "268647742", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48605", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i did n't know how well organized the event was .", "storylet_id": "243027"}], [{"original_text": "All the men were coordinated.", "album_id": "72157594326560194", "photo_flickr_id": "268647774", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48605", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all the men were coordinated .", "storylet_id": "243028"}], [{"original_text": "I drove my car home.", "album_id": "72157594326560194", "photo_flickr_id": "268647823", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48605", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i drove my car home .", "storylet_id": "243029"}], [{"original_text": "Last week we went to a parade.", "album_id": "72157594326560194", "photo_flickr_id": "268648259", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48606", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week we went to a parade .", "storylet_id": "243030"}], [{"original_text": "It was so big, we had to take a bus to get there.", "album_id": "72157594326560194", "photo_flickr_id": "268648305", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48606", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was so big , we had to take a bus to get there .", "storylet_id": "243031"}], [{"original_text": "When we got there, I saw people walking with banners in their hands.", "album_id": "72157594326560194", "photo_flickr_id": "268647742", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48606", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we got there , i saw people walking with banners in their hands .", "storylet_id": "243032"}], [{"original_text": "The traffic was stopped for them.", "album_id": "72157594326560194", "photo_flickr_id": "268647884", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48606", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the traffic was stopped for them .", "storylet_id": "243033"}], [{"original_text": "We had fun watching all the people.", "album_id": "72157594326560194", "photo_flickr_id": "268648062", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48606", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had fun watching all the people .", "storylet_id": "243034"}], [{"original_text": "These fellows are organizing the demonstration.", "album_id": "72157594326560194", "photo_flickr_id": "268648259", "setting": "last-3-pick-old-and-tell", "worker_id": "16FI371UAAYU8E2", "story_id": "48607", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these fellows are organizing the demonstration .", "storylet_id": "243035"}], [{"original_text": "The participants don their vests.", "album_id": "72157594326560194", "photo_flickr_id": "268648305", "setting": "last-3-pick-old-and-tell", "worker_id": "16FI371UAAYU8E2", "story_id": "48607", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the participants don their vests .", "storylet_id": "243036"}], [{"original_text": "The demonstration is peaceful.", "album_id": "72157594326560194", "photo_flickr_id": "268647742", "setting": "last-3-pick-old-and-tell", "worker_id": "16FI371UAAYU8E2", "story_id": "48607", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the demonstration is peaceful .", "storylet_id": "243037"}], [{"original_text": "The word is being spread to passers by.", "album_id": "72157594326560194", "photo_flickr_id": "268647884", "setting": "last-3-pick-old-and-tell", "worker_id": "16FI371UAAYU8E2", "story_id": "48607", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the word is being spread to passers by .", "storylet_id": "243038"}], [{"original_text": "The demonstration os over and the participants return home.", "album_id": "72157594326560194", "photo_flickr_id": "268648062", "setting": "last-3-pick-old-and-tell", "worker_id": "16FI371UAAYU8E2", "story_id": "48607", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the demonstration os over and the participants return home .", "storylet_id": "243039"}], [{"original_text": "The Action Day event had plenty of information available for its attendees. ", "album_id": "72157594326560194", "photo_flickr_id": "268648143", "setting": "last-3-pick-old-and-tell", "worker_id": "KBE4WJQ92WAQ68J", "story_id": "48608", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the action day event had plenty of information available for its attendees .", "storylet_id": "243040"}], [{"original_text": "The staff worked very hard to maintain safety and security throughout the event.", "album_id": "72157594326560194", "photo_flickr_id": "268648305", "setting": "last-3-pick-old-and-tell", "worker_id": "KBE4WJQ92WAQ68J", "story_id": "48608", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the staff worked very hard to maintain safety and security throughout the event .", "storylet_id": "243041"}], [{"original_text": "People from all walks of life came to participate.", "album_id": "72157594326560194", "photo_flickr_id": "268647742", "setting": "last-3-pick-old-and-tell", "worker_id": "KBE4WJQ92WAQ68J", "story_id": "48608", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people from all walks of life came to participate .", "storylet_id": "243042"}], [{"original_text": "The march wrapped up and a great time was had by all.", "album_id": "72157594326560194", "photo_flickr_id": "268647774", "setting": "last-3-pick-old-and-tell", "worker_id": "KBE4WJQ92WAQ68J", "story_id": "48608", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the march wrapped up and a great time was had by all .", "storylet_id": "243043"}], [{"original_text": "We were having so much fun leaving was the hardest part of the day.", "album_id": "72157594326560194", "photo_flickr_id": "268647823", "setting": "last-3-pick-old-and-tell", "worker_id": "KBE4WJQ92WAQ68J", "story_id": "48608", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were having so much fun leaving was the hardest part of the day .", "storylet_id": "243044"}], [{"original_text": "A tourist is viewing the attractions.", "album_id": "72157594326560194", "photo_flickr_id": "268648143", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48609", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a tourist is viewing the attractions .", "storylet_id": "243045"}], [{"original_text": "The guards are clearing out the area.", "album_id": "72157594326560194", "photo_flickr_id": "268648305", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48609", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guards are clearing out the area .", "storylet_id": "243046"}], [{"original_text": "The people are protesting.", "album_id": "72157594326560194", "photo_flickr_id": "268647742", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48609", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people are protesting .", "storylet_id": "243047"}], [{"original_text": "The guards are stopping the protest.", "album_id": "72157594326560194", "photo_flickr_id": "268647774", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48609", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guards are stopping the protest .", "storylet_id": "243048"}], [{"original_text": "A man is handing a taxi driver money.", "album_id": "72157594326560194", "photo_flickr_id": "268647823", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48609", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a man is handing a taxi driver money .", "storylet_id": "243049"}], [{"original_text": "They gathered for a meal out", "album_id": "72157626023683282", "photo_flickr_id": "5435359991", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48610", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they gathered for a meal out", "storylet_id": "243050"}], [{"original_text": "The ships were fun to look at. ", "album_id": "72157626023683282", "photo_flickr_id": "5435360449", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48610", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ships were fun to look at .", "storylet_id": "243051"}], [{"original_text": "It was a great night out. ", "album_id": "72157626023683282", "photo_flickr_id": "5435360513", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48610", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a great night out .", "storylet_id": "243052"}], [{"original_text": "They saw lots of big ships in port. ", "album_id": "72157626023683282", "photo_flickr_id": "5435969704", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48610", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they saw lots of big ships in port .", "storylet_id": "243053"}], [{"original_text": "There were many ships in port. ", "album_id": "72157626023683282", "photo_flickr_id": "5435360641", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48610", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were many ships in port .", "storylet_id": "243054"}], [{"original_text": "we went to the salad bar for lunch", "album_id": "72157626023683282", "photo_flickr_id": "5435359991", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48611", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the salad bar for lunch", "storylet_id": "243055"}], [{"original_text": "then we took a walk in the woods", "album_id": "72157626023683282", "photo_flickr_id": "5435969360", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48611", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we took a walk in the woods", "storylet_id": "243056"}], [{"original_text": "as sunset came upon us we realized we were lost ", "album_id": "72157626023683282", "photo_flickr_id": "5435360291", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48611", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as sunset came upon us we realized we were lost", "storylet_id": "243057"}], [{"original_text": "we ended up on the ocean", "album_id": "72157626023683282", "photo_flickr_id": "5435360449", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48611", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we ended up on the ocean", "storylet_id": "243058"}], [{"original_text": "and found a pirate ship", "album_id": "72157626023683282", "photo_flickr_id": "5435360513", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48611", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and found a pirate ship", "storylet_id": "243059"}], [{"original_text": "We met a lot of good people on our visit to the pier.", "album_id": "72157626023683282", "photo_flickr_id": "5435359991", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48612", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we met a lot of good people on our visit to the pier .", "storylet_id": "243060"}], [{"original_text": "We saw old style ships with tall masts.", "album_id": "72157626023683282", "photo_flickr_id": "5435360449", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48612", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw old style ships with tall masts .", "storylet_id": "243061"}], [{"original_text": "Some flew many flags that waved against the dusky sky.", "album_id": "72157626023683282", "photo_flickr_id": "5435360513", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48612", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some flew many flags that waved against the dusky sky .", "storylet_id": "243062"}], [{"original_text": "They were held in place by a simple rope.", "album_id": "72157626023683282", "photo_flickr_id": "5435969704", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48612", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were held in place by a simple rope .", "storylet_id": "243063"}], [{"original_text": "There were many different kinds of boats and ships for us to see.", "album_id": "72157626023683282", "photo_flickr_id": "5435360641", "setting": "last-3-pick-old-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48612", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were many different kinds of boats and ships for us to see .", "storylet_id": "243064"}], [{"original_text": "All of us Gathered together outside the restaurant, before the trip. ", "album_id": "72157626023683282", "photo_flickr_id": "5435359991", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "48613", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all of us gathered together outside the restaurant , before the trip .", "storylet_id": "243065"}], [{"original_text": "once arriving at the dock the boat was more beautiful than ever imagined.", "album_id": "72157626023683282", "photo_flickr_id": "5435360449", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "48613", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once arriving at the dock the boat was more beautiful than ever imagined .", "storylet_id": "243066"}], [{"original_text": "hoisting the flag was one of my favored parts.", "album_id": "72157626023683282", "photo_flickr_id": "5435360513", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "48613", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "hoisting the flag was one of my favored parts .", "storylet_id": "243067"}], [{"original_text": "They even showed us how to anchor down the ships.", "album_id": "72157626023683282", "photo_flickr_id": "5435969704", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "48613", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even showed us how to anchor down the ships .", "storylet_id": "243068"}], [{"original_text": "Over all the sheer amount of ships was amazing. ", "album_id": "72157626023683282", "photo_flickr_id": "5435360641", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "48613", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "over all the sheer amount of ships was amazing .", "storylet_id": "243069"}], [{"original_text": "Our family has a lot of boat enthusiasts.", "album_id": "72157626023683282", "photo_flickr_id": "5435359991", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "48614", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family has a lot of boat enthusiasts .", "storylet_id": "243070"}], [{"original_text": "We went to our dock and set sail.", "album_id": "72157626023683282", "photo_flickr_id": "5435360449", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "48614", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to our dock and set sail .", "storylet_id": "243071"}], [{"original_text": "The weather was fabulous for a boat ride.", "album_id": "72157626023683282", "photo_flickr_id": "5435360513", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "48614", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the weather was fabulous for a boat ride .", "storylet_id": "243072"}], [{"original_text": "We we docked we took a walk around the pier.", "album_id": "72157626023683282", "photo_flickr_id": "5435969704", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "48614", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we we docked we took a walk around the pier .", "storylet_id": "243073"}], [{"original_text": "We saw some local shipping ships unload their inventory.", "album_id": "72157626023683282", "photo_flickr_id": "5435360641", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "48614", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we saw some local shipping ships unload their inventory .", "storylet_id": "243074"}], [{"original_text": "The family decided to have some lunch before beginning their fun for the day.", "album_id": "72157626133271663", "photo_flickr_id": "5523780890", "setting": "first-2-pick-and-tell", "worker_id": "HN4SE6W1QPEQXLO", "story_id": "48615", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family decided to have some lunch before beginning their fun for the day .", "storylet_id": "243075"}], [{"original_text": "The young daughter especially enjoyed her breakfast.", "album_id": "72157626133271663", "photo_flickr_id": "5523781784", "setting": "first-2-pick-and-tell", "worker_id": "HN4SE6W1QPEQXLO", "story_id": "48615", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the young daughter especially enjoyed her breakfast .", "storylet_id": "243076"}], [{"original_text": "The family then went out to enjoy the reenactments of the colonial days.", "album_id": "72157626133271663", "photo_flickr_id": "5523194855", "setting": "first-2-pick-and-tell", "worker_id": "HN4SE6W1QPEQXLO", "story_id": "48615", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family then went out to enjoy the reenactments of the colonial days .", "storylet_id": "243077"}], [{"original_text": "The children had an especially good time with a particular gentleman.", "album_id": "72157626133271663", "photo_flickr_id": "5523787958", "setting": "first-2-pick-and-tell", "worker_id": "HN4SE6W1QPEQXLO", "story_id": "48615", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the children had an especially good time with a particular gentleman .", "storylet_id": "243078"}], [{"original_text": "Afterwards they all went out for a hike and enjoyed the nature around them.", "album_id": "72157626133271663", "photo_flickr_id": "5523199127", "setting": "first-2-pick-and-tell", "worker_id": "HN4SE6W1QPEQXLO", "story_id": "48615", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards they all went out for a hike and enjoyed the nature around them .", "storylet_id": "243079"}], [{"original_text": "we went to the syrup festival", "album_id": "72157626133271663", "photo_flickr_id": "5523780890", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48616", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the syrup festival", "storylet_id": "243080"}], [{"original_text": "the kids got to eat pancakes", "album_id": "72157626133271663", "photo_flickr_id": "5523781784", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48616", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids got to eat pancakes", "storylet_id": "243081"}], [{"original_text": "there was also a demonstration on how syrup is made", "album_id": "72157626133271663", "photo_flickr_id": "5523194855", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48616", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was also a demonstration on how syrup is made", "storylet_id": "243082"}], [{"original_text": "we got a tour of the woods", "album_id": "72157626133271663", "photo_flickr_id": "5523199127", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48616", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got a tour of the woods", "storylet_id": "243083"}], [{"original_text": "and it ended in the production lab", "album_id": "72157626133271663", "photo_flickr_id": "5523791888", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48616", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and it ended in the production lab", "storylet_id": "243084"}], [{"original_text": "The entire family decided to get together for a family reunion.", "album_id": "72157626133271663", "photo_flickr_id": "5523780890", "setting": "last-3-pick-old-and-tell", "worker_id": "PRDID19Y56A01IQ", "story_id": "48617", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the entire family decided to get together for a family reunion .", "storylet_id": "243085"}], [{"original_text": "The little ones were given food and arts and crafts activities.", "album_id": "72157626133271663", "photo_flickr_id": "5523781784", "setting": "last-3-pick-old-and-tell", "worker_id": "PRDID19Y56A01IQ", "story_id": "48617", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the little ones were given food and arts and crafts activities .", "storylet_id": "243086"}], [{"original_text": "Meanwhile, the adults chatted about their children.", "album_id": "72157626133271663", "photo_flickr_id": "5523194855", "setting": "last-3-pick-old-and-tell", "worker_id": "PRDID19Y56A01IQ", "story_id": "48617", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "meanwhile , the adults chatted about their children .", "storylet_id": "243087"}], [{"original_text": "Then uncle Ben decided to take everyone on a hike to the forest.", "album_id": "72157626133271663", "photo_flickr_id": "5523787958", "setting": "last-3-pick-old-and-tell", "worker_id": "PRDID19Y56A01IQ", "story_id": "48617", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then uncle [male] decided to take everyone on a hike to the forest .", "storylet_id": "243088"}], [{"original_text": "Everyone was exhausted when they returned from the hike.", "album_id": "72157626133271663", "photo_flickr_id": "5523199127", "setting": "last-3-pick-old-and-tell", "worker_id": "PRDID19Y56A01IQ", "story_id": "48617", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was exhausted when they returned from the hike .", "storylet_id": "243089"}], [{"original_text": "The group of people arrived to have lunch before the settlement re-enactment.", "album_id": "72157626133271663", "photo_flickr_id": "5523780890", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48618", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group of people arrived to have lunch before the settlement re-enactment .", "storylet_id": "243090"}], [{"original_text": "Then they all enjoyed desert.", "album_id": "72157626133271663", "photo_flickr_id": "5523781784", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48618", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then they all enjoyed desert .", "storylet_id": "243091"}], [{"original_text": "Outside there was people dressed like settlers.", "album_id": "72157626133271663", "photo_flickr_id": "5523194855", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48618", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "outside there was people dressed like settlers .", "storylet_id": "243092"}], [{"original_text": "There was a sketch artist to make drawings for the kids.", "album_id": "72157626133271663", "photo_flickr_id": "5523787958", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48618", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a sketch artist to make drawings for the kids .", "storylet_id": "243093"}], [{"original_text": "After that everyone went on a small hike.", "album_id": "72157626133271663", "photo_flickr_id": "5523199127", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48618", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that everyone went on a small hike .", "storylet_id": "243094"}], [{"original_text": "We all gathered for lunch, before our exciting day.", "album_id": "72157626133271663", "photo_flickr_id": "5523780890", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "48619", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all gathered for lunch , before our exciting day .", "storylet_id": "243095"}], [{"original_text": "The strawberries, was a little to sour. ", "album_id": "72157626133271663", "photo_flickr_id": "5523781784", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "48619", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the strawberries , was a little to sour .", "storylet_id": "243096"}], [{"original_text": "We loved taking a trip back in time, to learn the native culture.", "album_id": "72157626133271663", "photo_flickr_id": "5523194855", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "48619", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we loved taking a trip back in time , to learn the native culture .", "storylet_id": "243097"}], [{"original_text": "It was a great learning experience, especially for the kids.", "album_id": "72157626133271663", "photo_flickr_id": "5523787958", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "48619", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a great learning experience , especially for the kids .", "storylet_id": "243098"}], [{"original_text": "The trails was just beautiful.", "album_id": "72157626133271663", "photo_flickr_id": "5523199127", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "48619", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the trails was just beautiful .", "storylet_id": "243099"}], [{"original_text": "He was career day at my college.", "album_id": "72157626285768710", "photo_flickr_id": "5534276385", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "48620", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he was career day at my college .", "storylet_id": "243100"}], [{"original_text": "People showed up from different companies to set up an informative booths.", "album_id": "72157626285768710", "photo_flickr_id": "5534857062", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "48620", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people showed up from different companies to set up an informative booths .", "storylet_id": "243101"}], [{"original_text": "You got to listen to guest lecturers talk about their companies.", "album_id": "72157626285768710", "photo_flickr_id": "5534857232", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "48620", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you got to listen to guest lecturers talk about their companies .", "storylet_id": "243102"}], [{"original_text": "The whole day was very informative and I managed to enjoy myself.", "album_id": "72157626285768710", "photo_flickr_id": "5534857714", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "48620", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole day was very informative and i managed to enjoy myself .", "storylet_id": "243103"}], [{"original_text": "I think I have finally found the career I want to be in.", "album_id": "72157626285768710", "photo_flickr_id": "5534859722", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "48620", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think i have finally found the career i want to be in .", "storylet_id": "243104"}], [{"original_text": "It was career day, how exciting.", "album_id": "72157626285768710", "photo_flickr_id": "5534858414", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "48621", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was career day , how exciting .", "storylet_id": "243105"}], [{"original_text": "A man gave a speech.", "album_id": "72157626285768710", "photo_flickr_id": "5534858130", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "48621", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a man gave a speech .", "storylet_id": "243106"}], [{"original_text": "Then another man gave a speech.", "album_id": "72157626285768710", "photo_flickr_id": "5534279715", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "48621", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then another man gave a speech .", "storylet_id": "243107"}], [{"original_text": "Then a man and a woman gave a speech.", "album_id": "72157626285768710", "photo_flickr_id": "5534278931", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "48621", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then a man and a woman gave a speech .", "storylet_id": "243108"}], [{"original_text": "Then two women gave a speech.", "album_id": "72157626285768710", "photo_flickr_id": "5534857392", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "48621", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then two women gave a speech .", "storylet_id": "243109"}], [{"original_text": "The people who work for the county recorder's are a dedicated bunch", "album_id": "72157626285768710", "photo_flickr_id": "5534276385", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48622", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people who work for the county recorder 's are a dedicated bunch", "storylet_id": "243110"}], [{"original_text": "and very patriotic.", "album_id": "72157626285768710", "photo_flickr_id": "5534857062", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48622", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and very patriotic .", "storylet_id": "243111"}], [{"original_text": "They go to classrooms and educate people on the importance of voting and", "album_id": "72157626285768710", "photo_flickr_id": "5534857232", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48622", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they go to classrooms and educate people on the importance of voting and", "storylet_id": "243112"}], [{"original_text": "on the history of voting in America,", "album_id": "72157626285768710", "photo_flickr_id": "5534857714", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48622", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on the history of voting in location ,", "storylet_id": "243113"}], [{"original_text": "but there most important job is to educate the volunteers for the polling places.", "album_id": "72157626285768710", "photo_flickr_id": "5534859722", "setting": "last-3-pick-old-and-tell", "worker_id": "XE8LBJ4XX6WG6BL", "story_id": "48622", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but there most important job is to educate the volunteers for the polling places .", "storylet_id": "243114"}], [{"original_text": "The conference held a book store as well.", "album_id": "72157626285768710", "photo_flickr_id": "5534276385", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48623", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the conference held a book store as well .", "storylet_id": "243115"}], [{"original_text": "You can purchase patriotic books.", "album_id": "72157626285768710", "photo_flickr_id": "5534857062", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48623", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you can purchase patriotic books .", "storylet_id": "243116"}], [{"original_text": "Some of the authors were present.", "album_id": "72157626285768710", "photo_flickr_id": "5534857232", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48623", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the authors were present .", "storylet_id": "243117"}], [{"original_text": "The speakers took turns talking about issues.", "album_id": "72157626285768710", "photo_flickr_id": "5534857714", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48623", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the speakers took turns talking about issues .", "storylet_id": "243118"}], [{"original_text": "They took questions afterwards.", "album_id": "72157626285768710", "photo_flickr_id": "5534859722", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48623", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they took questions afterwards .", "storylet_id": "243119"}], [{"original_text": "There was a huge \"American Day\" at school today.", "album_id": "72157626285768710", "photo_flickr_id": "5534276385", "setting": "last-3-pick-old-and-tell", "worker_id": "BJJM3U9HBK9TV9D", "story_id": "48624", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a huge `` american day '' at school today .", "storylet_id": "243120"}], [{"original_text": "Everyone came to visit. Even parents decided to show up!", "album_id": "72157626285768710", "photo_flickr_id": "5534857062", "setting": "last-3-pick-old-and-tell", "worker_id": "BJJM3U9HBK9TV9D", "story_id": "48624", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone came to visit . even parents decided to show up !", "storylet_id": "243121"}], [{"original_text": "Ms. Jane was able to teach some adults the proper way to be an American.", "album_id": "72157626285768710", "photo_flickr_id": "5534857232", "setting": "last-3-pick-old-and-tell", "worker_id": "BJJM3U9HBK9TV9D", "story_id": "48624", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "ms. [female] was able to teach some adults the proper way to be an american .", "storylet_id": "243122"}], [{"original_text": "While Mr. Tanner discussed his value of being American.", "album_id": "72157626285768710", "photo_flickr_id": "5534857714", "setting": "last-3-pick-old-and-tell", "worker_id": "BJJM3U9HBK9TV9D", "story_id": "48624", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while mr. [male] discussed his value of being american .", "storylet_id": "243123"}], [{"original_text": "It was very nice to have Mr. Chang give us the final announcements for \"America Day\".", "album_id": "72157626285768710", "photo_flickr_id": "5534859722", "setting": "last-3-pick-old-and-tell", "worker_id": "BJJM3U9HBK9TV9D", "story_id": "48624", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was very nice to have mr. chang give us the final announcements for `` [female] day '' .", "storylet_id": "243124"}], [{"original_text": "Drummer really was exceptional to night", "album_id": "72157626290154193", "photo_flickr_id": "5583656456", "setting": "first-2-pick-and-tell", "worker_id": "J3QSEM8UVJ844IU", "story_id": "48625", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "drummer really was exceptional to night", "storylet_id": "243125"}], [{"original_text": "while lead singer sang his heart out", "album_id": "72157626290154193", "photo_flickr_id": "5583656730", "setting": "first-2-pick-and-tell", "worker_id": "J3QSEM8UVJ844IU", "story_id": "48625", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while lead singer sang his heart out", "storylet_id": "243126"}], [{"original_text": "Guitar player was playingvery good holding his own", "album_id": "72157626290154193", "photo_flickr_id": "5583656966", "setting": "first-2-pick-and-tell", "worker_id": "J3QSEM8UVJ844IU", "story_id": "48625", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "guitar player was playingvery good holding his own", "storylet_id": "243127"}], [{"original_text": "Woman was trying to get the crowd into groove", "album_id": "72157626290154193", "photo_flickr_id": "5583070109", "setting": "first-2-pick-and-tell", "worker_id": "J3QSEM8UVJ844IU", "story_id": "48625", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "woman was trying to get the crowd into groove", "storylet_id": "243128"}], [{"original_text": "Young boy was called on stage and he played very well", "album_id": "72157626290154193", "photo_flickr_id": "5583657538", "setting": "first-2-pick-and-tell", "worker_id": "J3QSEM8UVJ844IU", "story_id": "48625", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "young boy was called on stage and he played very well", "storylet_id": "243129"}], [{"original_text": "Tommy started the open mike night off with a bang.", "album_id": "72157626290154193", "photo_flickr_id": "5583068903", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48626", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] started the open mike night off with a bang .", "storylet_id": "243130"}], [{"original_text": "Jerry was next, playing some kind of country hybrid song.", "album_id": "72157626290154193", "photo_flickr_id": "5583656500", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48626", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was next , playing some kind of country hybrid song .", "storylet_id": "243131"}], [{"original_text": "Neil played some hippy stuff that the crowd didn't care for.", "album_id": "72157626290154193", "photo_flickr_id": "5583656786", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48626", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] played some hippy stuff that the crowd did n't care for .", "storylet_id": "243132"}], [{"original_text": "Jim tried to rap, but he wasn't very good at it.", "album_id": "72157626290154193", "photo_flickr_id": "5583657420", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48626", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] tried to rap , but he was n't very good at it .", "storylet_id": "243133"}], [{"original_text": "Anita's powerful voice totally blew the crowd away.", "album_id": "72157626290154193", "photo_flickr_id": "5583070109", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "48626", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] 's powerful voice totally blew the crowd away .", "storylet_id": "243134"}], [{"original_text": "Today is open mic. This guy can play the guitar well.", "album_id": "72157626290154193", "photo_flickr_id": "5583068903", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48627", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is open mic . this guy can play the guitar well .", "storylet_id": "243135"}], [{"original_text": "This guy could sing very good.", "album_id": "72157626290154193", "photo_flickr_id": "5583656500", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48627", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this guy could sing very good .", "storylet_id": "243136"}], [{"original_text": "This guy voice was very soulful.", "album_id": "72157626290154193", "photo_flickr_id": "5583656786", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48627", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this guy voice was very soulful .", "storylet_id": "243137"}], [{"original_text": "This guy know how to rap and sing.", "album_id": "72157626290154193", "photo_flickr_id": "5583657420", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48627", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this guy know how to rap and sing .", "storylet_id": "243138"}], [{"original_text": "This lady ended the show with poetry and a little bit of singing. It was a nice show.", "album_id": "72157626290154193", "photo_flickr_id": "5583070109", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48627", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this lady ended the show with poetry and a little bit of singing . it was a nice show .", "storylet_id": "243139"}], [{"original_text": "Every kind of musician was onstage.", "album_id": "72157626290154193", "photo_flickr_id": "5583656456", "setting": "last-3-pick-old-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "48628", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every kind of musician was onstage .", "storylet_id": "243140"}], [{"original_text": "Singers belted out their melodies with passion.", "album_id": "72157626290154193", "photo_flickr_id": "5583656730", "setting": "last-3-pick-old-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "48628", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "singers belted out their melodies with passion .", "storylet_id": "243141"}], [{"original_text": "A guitarist plucked his strings.", "album_id": "72157626290154193", "photo_flickr_id": "5583656966", "setting": "last-3-pick-old-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "48628", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a guitarist plucked his strings .", "storylet_id": "243142"}], [{"original_text": "A female vocalist lent her voice to the band.", "album_id": "72157626290154193", "photo_flickr_id": "5583070109", "setting": "last-3-pick-old-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "48628", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a female vocalist lent her voice to the band .", "storylet_id": "243143"}], [{"original_text": "A younger lad even took to the stage, keeping up with those much older than him.", "album_id": "72157626290154193", "photo_flickr_id": "5583657538", "setting": "last-3-pick-old-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "48628", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a younger lad even took to the stage , keeping up with those much older than him .", "storylet_id": "243144"}], [{"original_text": "The talent show was amazing, of course they started off jamming.", "album_id": "72157626290154193", "photo_flickr_id": "5583068903", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "48629", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the talent show was amazing , of course they started off jamming .", "storylet_id": "243145"}], [{"original_text": "Another great singer, taking the crowed.", "album_id": "72157626290154193", "photo_flickr_id": "5583656500", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "48629", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "another great singer , taking the crowed .", "storylet_id": "243146"}], [{"original_text": "The talent didn't fall short today, as the singers poured their hearts out.", "album_id": "72157626290154193", "photo_flickr_id": "5583656786", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "48629", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the talent did n't fall short today , as the singers poured their hearts out .", "storylet_id": "243147"}], [{"original_text": "One of my fav.., pumping us up with a good rap.", "album_id": "72157626290154193", "photo_flickr_id": "5583657420", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "48629", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of my fav.. , pumping us up with a good rap .", "storylet_id": "243148"}], [{"original_text": "The ending could only be listed as the most emotional of all.", "album_id": "72157626290154193", "photo_flickr_id": "5583070109", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "48629", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ending could only be listed as the most emotional of all .", "storylet_id": "243149"}], [{"original_text": "There were a lot of people at the funeral.", "album_id": "408457", "photo_flickr_id": "17149937", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48630", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of people at the funeral .", "storylet_id": "243150"}], [{"original_text": "There were a lot of news helicopters in the air as well.", "album_id": "408457", "photo_flickr_id": "17149935", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48630", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of news helicopters in the air as well .", "storylet_id": "243151"}], [{"original_text": "Many bikers showed up to the event as well.", "album_id": "408457", "photo_flickr_id": "17147301", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48630", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many bikers showed up to the event as well .", "storylet_id": "243152"}], [{"original_text": "There had a lot of different kinds of motorcycles.", "album_id": "408457", "photo_flickr_id": "17145929", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48630", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there had a lot of different kinds of motorcycles .", "storylet_id": "243153"}], [{"original_text": "I watched all of them come in.", "album_id": "408457", "photo_flickr_id": "17145928", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48630", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i watched all of them come in .", "storylet_id": "243154"}], [{"original_text": "It was Veteran's Day and the weather was beautiful for a parade. ", "album_id": "408457", "photo_flickr_id": "17149936", "setting": "first-2-pick-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "48631", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was veteran 's day and the weather was beautiful for a parade .", "storylet_id": "243155"}], [{"original_text": "Each branch of the service sent representatives to honor the day. ", "album_id": "408457", "photo_flickr_id": "17149937", "setting": "first-2-pick-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "48631", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each branch of the service sent representatives to honor the day .", "storylet_id": "243156"}], [{"original_text": "Veterans and supporters came from all over the country. ", "album_id": "408457", "photo_flickr_id": "17148553", "setting": "first-2-pick-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "48631", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "veterans and supporters came from all over the country .", "storylet_id": "243157"}], [{"original_text": "There was a large crowd and the atmosphere was very patriotic. ", "album_id": "408457", "photo_flickr_id": "17147304", "setting": "first-2-pick-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "48631", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a large crowd and the atmosphere was very patriotic .", "storylet_id": "243158"}], [{"original_text": "The highlight was when the Vice President arrived to make a speech.", "album_id": "408457", "photo_flickr_id": "17148555", "setting": "first-2-pick-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "48631", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the highlight was when the vice president arrived to make a speech .", "storylet_id": "243159"}], [{"original_text": "Today is a day of pride.", "album_id": "408457", "photo_flickr_id": "17149936", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48632", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is a day of pride .", "storylet_id": "243160"}], [{"original_text": "A day of remembrance and honor.", "album_id": "408457", "photo_flickr_id": "17149937", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48632", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a day of remembrance and honor .", "storylet_id": "243161"}], [{"original_text": "A day those big and small come out to celebrate.", "album_id": "408457", "photo_flickr_id": "17148553", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48632", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a day those big and small come out to celebrate .", "storylet_id": "243162"}], [{"original_text": "A day that brings together all walks of life.", "album_id": "408457", "photo_flickr_id": "17147304", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48632", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a day that brings together all walks of life .", "storylet_id": "243163"}], [{"original_text": "Today is a day that we honor those who serve. ", "album_id": "408457", "photo_flickr_id": "17148555", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48632", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "today is a day that we honor those who serve .", "storylet_id": "243164"}], [{"original_text": "This is a picture of a soldier.", "album_id": "408457", "photo_flickr_id": "17149937", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48633", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a soldier .", "storylet_id": "243165"}], [{"original_text": "This is a picture of a helicopter.", "album_id": "408457", "photo_flickr_id": "17149935", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48633", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a helicopter .", "storylet_id": "243166"}], [{"original_text": "This is a picture of cops on motorcycles.", "album_id": "408457", "photo_flickr_id": "17147301", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48633", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of cops on motorcycles .", "storylet_id": "243167"}], [{"original_text": "This is a picture of a man on a motorcycle.", "album_id": "408457", "photo_flickr_id": "17145929", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48633", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of a man on a motorcycle .", "storylet_id": "243168"}], [{"original_text": "A flag is waving in the distance.", "album_id": "408457", "photo_flickr_id": "17145928", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48633", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a flag is waving in the distance .", "storylet_id": "243169"}], [{"original_text": "Went to a motorcycle rally today. Murica embodied.", "album_id": "408457", "photo_flickr_id": "17149936", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "48634", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went to a motorcycle rally today . murica embodied .", "storylet_id": "243170"}], [{"original_text": "Had the stone cold flagbearer in camoulflage.", "album_id": "408457", "photo_flickr_id": "17149937", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "48634", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "had the stone cold flagbearer in camoulflage .", "storylet_id": "243171"}], [{"original_text": "As well as the Hulk Hogan lookalike on his chopper.", "album_id": "408457", "photo_flickr_id": "17148553", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "48634", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as well as the hulk hogan lookalike on his chopper .", "storylet_id": "243172"}], [{"original_text": "Look at all the bikes! The line was endless.", "album_id": "408457", "photo_flickr_id": "17147304", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "48634", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look at all the bikes ! the line was endless .", "storylet_id": "243173"}], [{"original_text": "Of course, the police were checking us out to make sure we didn't do biker gang things, but it was a good day.", "album_id": "408457", "photo_flickr_id": "17148555", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "48634", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of course , the police were checking us out to make sure we did n't do biker gang things , but it was a good day .", "storylet_id": "243174"}], [{"original_text": "We went to the zoo and we looked at a tiger", "album_id": "72157594517283383", "photo_flickr_id": "379401173", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "48635", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the zoo and we looked at a tiger", "storylet_id": "243175"}], [{"original_text": "then we went over to see the monkey", "album_id": "72157594517283383", "photo_flickr_id": "379402741", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "48635", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we went over to see the monkey", "storylet_id": "243176"}], [{"original_text": "next, we went and observed the giraffe", "album_id": "72157594517283383", "photo_flickr_id": "379403570", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "48635", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next , we went and observed the giraffe", "storylet_id": "243177"}], [{"original_text": "then we went to see the ducks", "album_id": "72157594517283383", "photo_flickr_id": "379404674", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "48635", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we went to see the ducks", "storylet_id": "243178"}], [{"original_text": "finally, we visited the flamingos", "album_id": "72157594517283383", "photo_flickr_id": "379407052", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "48635", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , we visited the flamingos", "storylet_id": "243179"}], [{"original_text": "After a long winter, the weather has thawed, and the zoo animals are enjoying the outdoors.", "album_id": "72157594517283383", "photo_flickr_id": "379401173", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "48636", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after a long winter , the weather has thawed , and the zoo animals are enjoying the outdoors .", "storylet_id": "243180"}], [{"original_text": "Although ice remains on some surfaces, the lions took their chances on this slippery tree trunk.", "album_id": "72157594517283383", "photo_flickr_id": "379402087", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "48636", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "although ice remains on some surfaces , the lions took their chances on this slippery tree trunk .", "storylet_id": "243181"}], [{"original_text": "Not all animals enjoyed the outdoors as some nocturnal creatures, like this monkey, would have rather stayed inside in the dark.", "album_id": "72157594517283383", "photo_flickr_id": "379402741", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "48636", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not all animals enjoyed the outdoors as some nocturnal creatures , like this monkey , would have rather stayed inside in the dark .", "storylet_id": "243182"}], [{"original_text": "The weather warmed up enough allowing even for the tropical flamingos to have a good time.", "album_id": "72157594517283383", "photo_flickr_id": "379407052", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "48636", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the weather warmed up enough allowing even for the tropical flamingos to have a good time .", "storylet_id": "243183"}], [{"original_text": "Despite the warmer weather, the number of human visitors at the zoo remained small today.", "album_id": "72157594517283383", "photo_flickr_id": "379403570", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "48636", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "despite the warmer weather , the number of human visitors at the zoo remained small today .", "storylet_id": "243184"}], [{"original_text": "We saw so many animals during our visit to the zoo. ", "album_id": "72157594517283383", "photo_flickr_id": "379401173", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48637", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we saw so many animals during our visit to the zoo .", "storylet_id": "243185"}], [{"original_text": "The lions looked ferocious!", "album_id": "72157594517283383", "photo_flickr_id": "379402087", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48637", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lions looked ferocious !", "storylet_id": "243186"}], [{"original_text": "The ape looked like my brother. ", "album_id": "72157594517283383", "photo_flickr_id": "379402741", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48637", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ape looked like my brother .", "storylet_id": "243187"}], [{"original_text": "We even saw a flamingo drinking in the water. ", "album_id": "72157594517283383", "photo_flickr_id": "379407052", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48637", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even saw a flamingo drinking in the water .", "storylet_id": "243188"}], [{"original_text": "On the way out we saw a glimpse of a giraffe to end the day. ", "album_id": "72157594517283383", "photo_flickr_id": "379403570", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48637", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the way out we saw a glimpse of a giraffe to end the day .", "storylet_id": "243189"}], [{"original_text": "Our visit to the zoo was quite a huge treat. Of course, we started with the tiger.", "album_id": "72157594517283383", "photo_flickr_id": "379401173", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48638", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our visit to the zoo was quite a huge treat . of course , we started with the tiger .", "storylet_id": "243190"}], [{"original_text": "Right next to him was the lions. I love to watch them interact.", "album_id": "72157594517283383", "photo_flickr_id": "379402087", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48638", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "right next to him was the lions . i love to watch them interact .", "storylet_id": "243191"}], [{"original_text": "The chimp watches us as much as we watch him.", "album_id": "72157594517283383", "photo_flickr_id": "379402741", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48638", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the chimp watches us as much as we watch him .", "storylet_id": "243192"}], [{"original_text": "My daughter loves the flamingos. I always tell her about how they are pink from eating shrimp.", "album_id": "72157594517283383", "photo_flickr_id": "379407052", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48638", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my daughter loves the flamingos . i always tell her about how they are pink from eating shrimp .", "storylet_id": "243193"}], [{"original_text": "My son's favorite animal is the giraffe. I think it's because he wants to be very tall someday!", "album_id": "72157594517283383", "photo_flickr_id": "379403570", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48638", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my son 's favorite animal is the giraffe . i think it 's because he wants to be very tall someday !", "storylet_id": "243194"}], [{"original_text": "A group of people tours the zoo. First they come across a tiger.", "album_id": "72157594517283383", "photo_flickr_id": "379401173", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48639", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of people tours the zoo . first they come across a tiger .", "storylet_id": "243195"}], [{"original_text": "Next a monkey looks at them quizzically.", "album_id": "72157594517283383", "photo_flickr_id": "379402741", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48639", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next a monkey looks at them quizzically .", "storylet_id": "243196"}], [{"original_text": "A giraffe runs through the field.", "album_id": "72157594517283383", "photo_flickr_id": "379403570", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48639", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a giraffe runs through the field .", "storylet_id": "243197"}], [{"original_text": "A duck takes a bath in the water.", "album_id": "72157594517283383", "photo_flickr_id": "379404674", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48639", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a duck takes a bath in the water .", "storylet_id": "243198"}], [{"original_text": "Finally as they are leaving they spot a flamingo.", "album_id": "72157594517283383", "photo_flickr_id": "379407052", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "48639", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally as they are leaving they spot a flamingo .", "storylet_id": "243199"}], [{"original_text": "Praid day in our local town.Lots of interesting people and floats.Some were questionable I don't see how they let kids go.", "album_id": "489485", "photo_flickr_id": "20119694", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "48640", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "praid day in our local town.lots of interesting people and floats.some were questionable i do n't see how they let kids go .", "storylet_id": "243200"}], [{"original_text": "Many performers on the floats.Lots of beautiful colors and designs.", "album_id": "489485", "photo_flickr_id": "20121222", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "48640", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many performers on the floats.lots of beautiful colors and designs .", "storylet_id": "243201"}], [{"original_text": "The music and dancers really caught my eyes.", "album_id": "489485", "photo_flickr_id": "20123746", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "48640", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the music and dancers really caught my eyes .", "storylet_id": "243202"}], [{"original_text": "I often wondered how people are able to perform in such large groups of people without being scared.", "album_id": "489485", "photo_flickr_id": "20124626", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "48640", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i often wondered how people are able to perform in such large groups of people without being scared .", "storylet_id": "243203"}], [{"original_text": "After I got my face painted I decided to buy a yummy treat.Look who it is...Sponge Bob Square Pants.", "album_id": "489485", "photo_flickr_id": "20131353", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "48640", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after i got my face painted i decided to buy a yummy treat.look who it is ... organization organization organization organization .", "storylet_id": "243204"}], [{"original_text": "I took all my friends to the parade last weekend.", "album_id": "489485", "photo_flickr_id": "20118822", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48641", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took all my friends to the parade last weekend .", "storylet_id": "243205"}], [{"original_text": "There were so many unique floats.", "album_id": "489485", "photo_flickr_id": "20120079", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48641", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many unique floats .", "storylet_id": "243206"}], [{"original_text": "A lot of the performers were wearing strange outfits.", "album_id": "489485", "photo_flickr_id": "20122567", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48641", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lot of the performers were wearing strange outfits .", "storylet_id": "243207"}], [{"original_text": "We had a great time there.", "album_id": "489485", "photo_flickr_id": "20122822", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48641", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a great time there .", "storylet_id": "243208"}], [{"original_text": "We took many pictures.", "album_id": "489485", "photo_flickr_id": "20122997", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48641", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took many pictures .", "storylet_id": "243209"}], [{"original_text": "Carnival is a wonderful celebration in Brazil. People walk along a parade, sometimes topless.", "album_id": "489485", "photo_flickr_id": "20119694", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48642", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "carnival is a wonderful celebration in location . people walk along a parade , sometimes topless .", "storylet_id": "243210"}], [{"original_text": "They're usually in very colorful costumes.", "album_id": "489485", "photo_flickr_id": "20121222", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48642", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they 're usually in very colorful costumes .", "storylet_id": "243211"}], [{"original_text": "Musicians walk along with their instruments playing music and adding to the noise.", "album_id": "489485", "photo_flickr_id": "20123746", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48642", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "musicians walk along with their instruments playing music and adding to the noise .", "storylet_id": "243212"}], [{"original_text": "There are organized groups of dancers too.", "album_id": "489485", "photo_flickr_id": "20124626", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48642", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are organized groups of dancers too .", "storylet_id": "243213"}], [{"original_text": "I saw it this year and I loved it. I especially loved eating ice cream while watching it this year.", "album_id": "489485", "photo_flickr_id": "20131353", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48642", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i saw it this year and i loved it . i especially loved eating ice cream while watching it this year .", "storylet_id": "243214"}], [{"original_text": "this year for our travels we went to the city to watch a parade.", "album_id": "489485", "photo_flickr_id": "20118822", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48643", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this year for our travels we went to the city to watch a parade .", "storylet_id": "243215"}], [{"original_text": "there where so many different things to see. big float and small.", "album_id": "489485", "photo_flickr_id": "20120079", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48643", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there where so many different things to see . big float and small .", "storylet_id": "243216"}], [{"original_text": "people dress in full gowns, and some not dressed at all.", "album_id": "489485", "photo_flickr_id": "20122567", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48643", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people dress in full gowns , and some not dressed at all .", "storylet_id": "243217"}], [{"original_text": "some men where cross dressed.", "album_id": "489485", "photo_flickr_id": "20122822", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48643", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some men where cross dressed .", "storylet_id": "243218"}], [{"original_text": "there was a small theme to the cross dressers, but i did not get it.", "album_id": "489485", "photo_flickr_id": "20122997", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48643", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a small theme to the cross dressers , but i did not get it .", "storylet_id": "243219"}], [{"original_text": "We went to the parade today, and it was a sight to behold!", "album_id": "489485", "photo_flickr_id": "20119694", "setting": "last-3-pick-old-and-tell", "worker_id": "VLKDPGZ9XSZFS3U", "story_id": "48644", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the parade today , and it was a sight to behold !", "storylet_id": "243220"}], [{"original_text": "Everyone was joyful and bursting with energy and talent. ", "album_id": "489485", "photo_flickr_id": "20121222", "setting": "last-3-pick-old-and-tell", "worker_id": "VLKDPGZ9XSZFS3U", "story_id": "48644", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was joyful and bursting with energy and talent .", "storylet_id": "243221"}], [{"original_text": "Each group stopped to give a short performance - instruments, singing, and dancing galore. ", "album_id": "489485", "photo_flickr_id": "20123746", "setting": "last-3-pick-old-and-tell", "worker_id": "VLKDPGZ9XSZFS3U", "story_id": "48644", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each group stopped to give a short performance - instruments , singing , and dancing galore .", "storylet_id": "243222"}], [{"original_text": "We especially enjoyed the talented belly-dancers.", "album_id": "489485", "photo_flickr_id": "20124626", "setting": "last-3-pick-old-and-tell", "worker_id": "VLKDPGZ9XSZFS3U", "story_id": "48644", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we especially enjoyed the talented belly-dancers .", "storylet_id": "243223"}], [{"original_text": "The perfect end to the day was a delicious Sponge Bob ice cream!", "album_id": "489485", "photo_flickr_id": "20131353", "setting": "last-3-pick-old-and-tell", "worker_id": "VLKDPGZ9XSZFS3U", "story_id": "48644", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the perfect end to the day was a delicious sponge [male] ice cream !", "storylet_id": "243224"}], [{"original_text": "This young couple is checking out the sites when they come across a big crowd of people.", "album_id": "245967", "photo_flickr_id": "9954833", "setting": "first-2-pick-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "48645", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this young couple is checking out the sites when they come across a big crowd of people .", "storylet_id": "243225"}], [{"original_text": "This is such a beautiful fountain he could not refuse taking a picture with it.", "album_id": "245967", "photo_flickr_id": "9954720", "setting": "first-2-pick-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "48645", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is such a beautiful fountain he could not refuse taking a picture with it .", "storylet_id": "243226"}], [{"original_text": "The young lady is definitely having a good time in the crowd.", "album_id": "245967", "photo_flickr_id": "9953973", "setting": "first-2-pick-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "48645", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the young lady is definitely having a good time in the crowd .", "storylet_id": "243227"}], [{"original_text": "She is proud of her country.", "album_id": "245967", "photo_flickr_id": "9953949", "setting": "first-2-pick-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "48645", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she is proud of her country .", "storylet_id": "243228"}], [{"original_text": "It is great to be part of a group of people celebrating the same thing.", "album_id": "245967", "photo_flickr_id": "9954806", "setting": "first-2-pick-and-tell", "worker_id": "DSBL8OBDQPM51EL", "story_id": "48645", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is great to be part of a group of people celebrating the same thing .", "storylet_id": "243229"}], [{"original_text": "We braved the cold weather and joined everyone in the square.", "album_id": "245967", "photo_flickr_id": "9954133", "setting": "first-2-pick-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "48646", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we braved the cold weather and joined everyone in the square .", "storylet_id": "243230"}], [{"original_text": "The crowd surrounded the large fountain.", "album_id": "245967", "photo_flickr_id": "9954698", "setting": "first-2-pick-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "48646", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd surrounded the large fountain .", "storylet_id": "243231"}], [{"original_text": "Some people started dancing in the water, despite the cold.", "album_id": "245967", "photo_flickr_id": "9954399", "setting": "first-2-pick-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "48646", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people started dancing in the water , despite the cold .", "storylet_id": "243232"}], [{"original_text": "We had a lot of fun.", "album_id": "245967", "photo_flickr_id": "9954779", "setting": "first-2-pick-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "48646", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a lot of fun .", "storylet_id": "243233"}], [{"original_text": "Everyone was waving their flags and supporting their country.", "album_id": "245967", "photo_flickr_id": "9954806", "setting": "first-2-pick-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "48646", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was waving their flags and supporting their country .", "storylet_id": "243234"}], [{"original_text": "There was already a big crowd when we got there.", "album_id": "245967", "photo_flickr_id": "9954833", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48647", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was already a big crowd when we got there .", "storylet_id": "243235"}], [{"original_text": "We got a few nice pictures near the fountain.", "album_id": "245967", "photo_flickr_id": "9954720", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48647", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got a few nice pictures near the fountain .", "storylet_id": "243236"}], [{"original_text": "It was an exciting day, very dramatic!", "album_id": "245967", "photo_flickr_id": "9953973", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48647", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was an exciting day , very dramatic !", "storylet_id": "243237"}], [{"original_text": "Someone there had extra flags for us.", "album_id": "245967", "photo_flickr_id": "9953949", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48647", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someone there had extra flags for us .", "storylet_id": "243238"}], [{"original_text": "We continued to demonstrate, making sure we were heard.", "album_id": "245967", "photo_flickr_id": "9954806", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48647", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we continued to demonstrate , making sure we were heard .", "storylet_id": "243239"}], [{"original_text": "Spectator's lined the street. ", "album_id": "245967", "photo_flickr_id": "9954833", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48648", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "spectator 's lined the street .", "storylet_id": "243240"}], [{"original_text": "Charile was over by the fountain. ", "album_id": "245967", "photo_flickr_id": "9954720", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48648", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "charile was over by the fountain .", "storylet_id": "243241"}], [{"original_text": "Charlie always made her smile. ", "album_id": "245967", "photo_flickr_id": "9953973", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48648", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] always made her smile .", "storylet_id": "243242"}], [{"original_text": "He gave her a flag. ", "album_id": "245967", "photo_flickr_id": "9953949", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48648", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he gave her a flag .", "storylet_id": "243243"}], [{"original_text": "And they cheered with the rest of the crowd. ", "album_id": "245967", "photo_flickr_id": "9954806", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48648", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they cheered with the rest of the crowd .", "storylet_id": "243244"}], [{"original_text": "This is our first trip to Europe.", "album_id": "245967", "photo_flickr_id": "9954833", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48649", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is our first trip to location .", "storylet_id": "243245"}], [{"original_text": "Sam is so excited he can't stop smiling.", "album_id": "245967", "photo_flickr_id": "9954720", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48649", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is so excited he ca n't stop smiling .", "storylet_id": "243246"}], [{"original_text": "Val is enjoying the beautiful waether.", "album_id": "245967", "photo_flickr_id": "9953973", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48649", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "val is enjoying the beautiful waether .", "storylet_id": "243247"}], [{"original_text": "Val showing off her new present.", "album_id": "245967", "photo_flickr_id": "9953949", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48649", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "val showing off her new present .", "storylet_id": "243248"}], [{"original_text": "We enjoyed the whole evening here", "album_id": "245967", "photo_flickr_id": "9954806", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48649", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we enjoyed the whole evening here", "storylet_id": "243249"}], [{"original_text": "People were celebrating in the street", "album_id": "72157594492208302", "photo_flickr_id": "364832283", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "48650", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people were celebrating in the street", "storylet_id": "243250"}], [{"original_text": "and they were waving thier flags", "album_id": "72157594492208302", "photo_flickr_id": "364832278", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "48650", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and they were waving thier flags", "storylet_id": "243251"}], [{"original_text": "and also yelling to make their voice be heard", "album_id": "72157594492208302", "photo_flickr_id": "365609152", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "48650", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and also yelling to make their voice be heard", "storylet_id": "243252"}], [{"original_text": "and displaying decorations and parading", "album_id": "72157594492208302", "photo_flickr_id": "364832268", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "48650", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and displaying decorations and parading", "storylet_id": "243253"}], [{"original_text": "even the kids were into it.", "album_id": "72157594492208302", "photo_flickr_id": "364832270", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "48650", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the kids were into it .", "storylet_id": "243254"}], [{"original_text": "We decided to go to the Boise State parade to find my dad.", "album_id": "72157594492208302", "photo_flickr_id": "365595712", "setting": "first-2-pick-and-tell", "worker_id": "FX42HD0TCISH7KS", "story_id": "48651", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go to the organization organization parade to find my dad .", "storylet_id": "243255"}], [{"original_text": "We entered through a giant balloon archway.", "album_id": "72157594492208302", "photo_flickr_id": "364832268", "setting": "first-2-pick-and-tell", "worker_id": "FX42HD0TCISH7KS", "story_id": "48651", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we entered through a giant balloon archway .", "storylet_id": "243256"}], [{"original_text": "It was very noisy as kids were blowing horns.", "album_id": "72157594492208302", "photo_flickr_id": "365595702", "setting": "first-2-pick-and-tell", "worker_id": "FX42HD0TCISH7KS", "story_id": "48651", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was very noisy as kids were blowing horns .", "storylet_id": "243257"}], [{"original_text": "People were marching with flags.", "album_id": "72157594492208302", "photo_flickr_id": "365609148", "setting": "first-2-pick-and-tell", "worker_id": "FX42HD0TCISH7KS", "story_id": "48651", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people were marching with flags .", "storylet_id": "243258"}], [{"original_text": "Finally we found my dad.", "album_id": "72157594492208302", "photo_flickr_id": "365609152", "setting": "first-2-pick-and-tell", "worker_id": "FX42HD0TCISH7KS", "story_id": "48651", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally we found my dad .", "storylet_id": "243259"}], [{"original_text": "My local football team was playing on Saturday.", "album_id": "72157594492208302", "photo_flickr_id": "365595712", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48652", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my local football team was playing on saturday .", "storylet_id": "243260"}], [{"original_text": "We got together to celebrate the beginning of a new season for Boise State.", "album_id": "72157594492208302", "photo_flickr_id": "364832268", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48652", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got together to celebrate the beginning of a new season for organization organization .", "storylet_id": "243261"}], [{"original_text": "The kids dressed in blue and orange and walked with horns.", "album_id": "72157594492208302", "photo_flickr_id": "365595702", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48652", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids dressed in blue and orange and walked with horns .", "storylet_id": "243262"}], [{"original_text": "The people gathered together in a rally for the team.", "album_id": "72157594492208302", "photo_flickr_id": "365609148", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48652", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people gathered together in a rally for the team .", "storylet_id": "243263"}], [{"original_text": "Even the older fans showed up to brave the cold and celebrate the team.", "album_id": "72157594492208302", "photo_flickr_id": "365609152", "setting": "last-3-pick-old-and-tell", "worker_id": "5Y55RYPGWAH0RFO", "story_id": "48652", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the older fans showed up to brave the cold and celebrate the team .", "storylet_id": "243264"}], [{"original_text": "Kids and all joined in on the fun, all supporting Boise State!", "album_id": "72157594492208302", "photo_flickr_id": "364832283", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48653", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "kids and all joined in on the fun , all supporting location state !", "storylet_id": "243265"}], [{"original_text": "We waved our flags high. ", "album_id": "72157594492208302", "photo_flickr_id": "364832278", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48653", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we waved our flags high .", "storylet_id": "243266"}], [{"original_text": "Many yelled in support and captured photos of the event. ", "album_id": "72157594492208302", "photo_flickr_id": "365609152", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48653", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many yelled in support and captured photos of the event .", "storylet_id": "243267"}], [{"original_text": "Then, we all marched through the street with blue and orange balloons floating above.", "album_id": "72157594492208302", "photo_flickr_id": "364832268", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48653", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , we all marched through the street with blue and orange balloons floating above .", "storylet_id": "243268"}], [{"original_text": "At the end of the day we all headed home. ", "album_id": "72157594492208302", "photo_flickr_id": "364832270", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "48653", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day we all headed home .", "storylet_id": "243269"}], [{"original_text": "We were on our way to the party ", "album_id": "72157594492208302", "photo_flickr_id": "365595712", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "48654", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were on our way to the party", "storylet_id": "243270"}], [{"original_text": "We were so excited to have arrived there ", "album_id": "72157594492208302", "photo_flickr_id": "364832268", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "48654", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were so excited to have arrived there", "storylet_id": "243271"}], [{"original_text": "People of all ages were having a good time.", "album_id": "72157594492208302", "photo_flickr_id": "365595702", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "48654", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people of all ages were having a good time .", "storylet_id": "243272"}], [{"original_text": "It was nice having everyone gather together.", "album_id": "72157594492208302", "photo_flickr_id": "365609148", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "48654", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was nice having everyone gather together .", "storylet_id": "243273"}], [{"original_text": "Then some guy started singing.", "album_id": "72157594492208302", "photo_flickr_id": "365609152", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "48654", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then some guy started singing .", "storylet_id": "243274"}], [{"original_text": "We went into the city today for the parade. ", "album_id": "72157601341863571", "photo_flickr_id": "1068063621", "setting": "first-2-pick-and-tell", "worker_id": "QAW00K6NLUPH3KQ", "story_id": "48655", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went into the city today for the parade .", "storylet_id": "243275"}], [{"original_text": "It was an Asian-themed parade, with many different exhibits. ", "album_id": "72157601341863571", "photo_flickr_id": "1068064017", "setting": "first-2-pick-and-tell", "worker_id": "QAW00K6NLUPH3KQ", "story_id": "48655", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was an asian-themed parade , with many different exhibits .", "storylet_id": "243276"}], [{"original_text": "Some were pretty, and some were funny.", "album_id": "72157601341863571", "photo_flickr_id": "1068065135", "setting": "first-2-pick-and-tell", "worker_id": "QAW00K6NLUPH3KQ", "story_id": "48655", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some were pretty , and some were funny .", "storylet_id": "243277"}], [{"original_text": "Some even told a story.", "album_id": "72157601341863571", "photo_flickr_id": "1068069499", "setting": "first-2-pick-and-tell", "worker_id": "QAW00K6NLUPH3KQ", "story_id": "48655", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some even told a story .", "storylet_id": "243278"}], [{"original_text": "All in all, it was a fun celebration.", "album_id": "72157601341863571", "photo_flickr_id": "1068931572", "setting": "first-2-pick-and-tell", "worker_id": "QAW00K6NLUPH3KQ", "story_id": "48655", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all in all , it was a fun celebration .", "storylet_id": "243279"}], [{"original_text": "I was out in the street early last night because I wanted a good spot to watch the parade from.", "album_id": "72157601341863571", "photo_flickr_id": "1068063621", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48656", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was out in the street early last night because i wanted a good spot to watch the parade from .", "storylet_id": "243280"}], [{"original_text": "As night fell the parade began. It was full of lion and dragon dancers.", "album_id": "72157601341863571", "photo_flickr_id": "1068069017", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48656", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as night fell the parade began . it was full of lion and dragon dancers .", "storylet_id": "243281"}], [{"original_text": "Some people were carrying some very heavy things in the parade.", "album_id": "72157601341863571", "photo_flickr_id": "1068929922", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48656", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people were carrying some very heavy things in the parade .", "storylet_id": "243282"}], [{"original_text": "There were many performers that made up the parade.", "album_id": "72157601341863571", "photo_flickr_id": "1068930356", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48656", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many performers that made up the parade .", "storylet_id": "243283"}], [{"original_text": "Some of the floats that went by were huge.", "album_id": "72157601341863571", "photo_flickr_id": "1068933704", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48656", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the floats that went by were huge .", "storylet_id": "243284"}], [{"original_text": "Today I was excited to leave work.", "album_id": "72157601341863571", "photo_flickr_id": "1068063621", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "48657", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i was excited to leave work .", "storylet_id": "243285"}], [{"original_text": "There was a lot going on, even a parsde.", "album_id": "72157601341863571", "photo_flickr_id": "1068064017", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "48657", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot going on , even a parsde .", "storylet_id": "243286"}], [{"original_text": "Lots of people dressed up for it.", "album_id": "72157601341863571", "photo_flickr_id": "1068065135", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "48657", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lots of people dressed up for it .", "storylet_id": "243287"}], [{"original_text": "It was so much fun.", "album_id": "72157601341863571", "photo_flickr_id": "1068069499", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "48657", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was so much fun .", "storylet_id": "243288"}], [{"original_text": "I really enjoyed the Harrah'a float", "album_id": "72157601341863571", "photo_flickr_id": "1068931572", "setting": "last-3-pick-old-and-tell", "worker_id": "EMYAQAV1N7OBSJ0", "story_id": "48657", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i really enjoyed the harrah'a float", "storylet_id": "243289"}], [{"original_text": "We went to the city early for the parade.", "album_id": "72157601341863571", "photo_flickr_id": "1068063621", "setting": "last-3-pick-old-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "48658", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the city early for the parade .", "storylet_id": "243290"}], [{"original_text": "The women marched the street carrying the large dragon.", "album_id": "72157601341863571", "photo_flickr_id": "1068064017", "setting": "last-3-pick-old-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "48658", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the women marched the street carrying the large dragon .", "storylet_id": "243291"}], [{"original_text": "There were interesting masked characters walking the street.", "album_id": "72157601341863571", "photo_flickr_id": "1068065135", "setting": "last-3-pick-old-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "48658", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were interesting masked characters walking the street .", "storylet_id": "243292"}], [{"original_text": "Several floats passed en route.", "album_id": "72157601341863571", "photo_flickr_id": "1068069499", "setting": "last-3-pick-old-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "48658", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "several floats passed en route .", "storylet_id": "243293"}], [{"original_text": "Some of the floats showed royalty of the celebration.", "album_id": "72157601341863571", "photo_flickr_id": "1068931572", "setting": "last-3-pick-old-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "48658", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the floats showed royalty of the celebration .", "storylet_id": "243294"}], [{"original_text": "This is our first trip to Hong kong.", "album_id": "72157601341863571", "photo_flickr_id": "1068063621", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48659", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is our first trip to location location .", "storylet_id": "243295"}], [{"original_text": "The dragon parade on Main St. was spectacular. ", "album_id": "72157601341863571", "photo_flickr_id": "1068064017", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48659", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dragon parade on main st. was spectacular .", "storylet_id": "243296"}], [{"original_text": "I have no idea what those mask mean, but it;s fun to watch", "album_id": "72157601341863571", "photo_flickr_id": "1068065135", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48659", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i have no idea what those mask mean , but it ; s fun to watch", "storylet_id": "243297"}], [{"original_text": "The floats going down the road. Whoa, such great work", "album_id": "72157601341863571", "photo_flickr_id": "1068069499", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48659", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the floats going down the road . whoa , such great work", "storylet_id": "243298"}], [{"original_text": "Another Amazing float in the dragon parade on Hong Kong.", "album_id": "72157601341863571", "photo_flickr_id": "1068931572", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48659", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "another amazing float in the dragon parade on location location .", "storylet_id": "243299"}], [{"original_text": "The Disney Hollywood Studios parade always kicks off on time. ", "album_id": "388393", "photo_flickr_id": "16180499", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "48660", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization organization organization parade always kicks off on time .", "storylet_id": "243300"}], [{"original_text": "First up are the toy soldiers from Toy Story. ", "album_id": "388393", "photo_flickr_id": "16180717", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "48660", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first up are the toy soldiers from toy story .", "storylet_id": "243301"}], [{"original_text": "Then Buzz, Wood and friends. ", "album_id": "388393", "photo_flickr_id": "16180770", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "48660", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then buzz , wood and friends .", "storylet_id": "243302"}], [{"original_text": "Of course the best part is the Star Wars characters. ", "album_id": "388393", "photo_flickr_id": "16181087", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "48660", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course the best part is the star wars characters .", "storylet_id": "243303"}], [{"original_text": "Darth Vader is always a favorite. ", "album_id": "388393", "photo_flickr_id": "16181206", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "48660", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "darth vader is always a favorite .", "storylet_id": "243304"}], [{"original_text": "A disney parade starring Princess Mulan and her dragon. ", "album_id": "388393", "photo_flickr_id": "16181347", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48661", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a disney parade starring [female] mulan and her dragon .", "storylet_id": "243305"}], [{"original_text": "Aladdin, Jasmine in their genie vehicle. ", "album_id": "388393", "photo_flickr_id": "16181705", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48661", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "aladdin , [female] in their genie vehicle .", "storylet_id": "243306"}], [{"original_text": "The villains of Disney walking together. ", "album_id": "388393", "photo_flickr_id": "16181772", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48661", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the villains of disney walking together .", "storylet_id": "243307"}], [{"original_text": "Snow white and the seven dwarfs waving to the crowd. ", "album_id": "388393", "photo_flickr_id": "16182434", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48661", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "snow white and the seven dwarfs waving to the crowd .", "storylet_id": "243308"}], [{"original_text": "Mickey and Minnie mouse approaching the crowd. ", "album_id": "388393", "photo_flickr_id": "16182765", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48661", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] and [female] mouse approaching the crowd .", "storylet_id": "243309"}], [{"original_text": "This was a pretty cool ride with a dragon alongside.", "album_id": "388393", "photo_flickr_id": "16181347", "setting": "last-3-pick-old-and-tell", "worker_id": "H2XPIIW8Y3K0GIB", "story_id": "48662", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was a pretty cool ride with a dragon alongside .", "storylet_id": "243310"}], [{"original_text": "The magic carpet rides returns with this cool car.", "album_id": "388393", "photo_flickr_id": "16181705", "setting": "last-3-pick-old-and-tell", "worker_id": "H2XPIIW8Y3K0GIB", "story_id": "48662", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the magic carpet rides returns with this cool car .", "storylet_id": "243311"}], [{"original_text": "Uh oh. He comes Jefar to rain on the parade.", "album_id": "388393", "photo_flickr_id": "16181772", "setting": "last-3-pick-old-and-tell", "worker_id": "H2XPIIW8Y3K0GIB", "story_id": "48662", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "uh oh . he comes jefar to rain on the parade .", "storylet_id": "243312"}], [{"original_text": "This one was the great snow white.", "album_id": "388393", "photo_flickr_id": "16182434", "setting": "last-3-pick-old-and-tell", "worker_id": "H2XPIIW8Y3K0GIB", "story_id": "48662", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one was the great snow white .", "storylet_id": "243313"}], [{"original_text": "Lastly here comes the great relationship. Mickey and Minney mouse.", "album_id": "388393", "photo_flickr_id": "16182765", "setting": "last-3-pick-old-and-tell", "worker_id": "H2XPIIW8Y3K0GIB", "story_id": "48662", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly here comes the great relationship . [male] and minney mouse .", "storylet_id": "243314"}], [{"original_text": "The dragon stands next to the red automobile.", "album_id": "388393", "photo_flickr_id": "16181347", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48663", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dragon stands next to the red automobile .", "storylet_id": "243315"}], [{"original_text": "This car was inspired by the movie, \"Aladdin.\"", "album_id": "388393", "photo_flickr_id": "16181705", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48663", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this car was inspired by the movie , `` aladdin . ''", "storylet_id": "243316"}], [{"original_text": "The witch in \"Sleeping Beauty\" made an appearance.", "album_id": "388393", "photo_flickr_id": "16181772", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48663", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the witch in `` sleeping beauty '' made an appearance .", "storylet_id": "243317"}], [{"original_text": "Snow White and her friends greeted the crowd.", "album_id": "388393", "photo_flickr_id": "16182434", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48663", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "snow white and her friends greeted the crowd .", "storylet_id": "243318"}], [{"original_text": "Lastly, Mickey and Minnie mouse drove in a fancy car.", "album_id": "388393", "photo_flickr_id": "16182765", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48663", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , [male] and [female] mouse drove in a fancy car .", "storylet_id": "243319"}], [{"original_text": "The parade was amazing to watch!", "album_id": "388393", "photo_flickr_id": "16180499", "setting": "last-3-pick-old-and-tell", "worker_id": "3KRDSXTJOYU5EUD", "story_id": "48664", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parade was amazing to watch !", "storylet_id": "243320"}], [{"original_text": "There were army men marching.", "album_id": "388393", "photo_flickr_id": "16180717", "setting": "last-3-pick-old-and-tell", "worker_id": "3KRDSXTJOYU5EUD", "story_id": "48664", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were army men marching .", "storylet_id": "243321"}], [{"original_text": "Toy Story made us all smile.", "album_id": "388393", "photo_flickr_id": "16180770", "setting": "last-3-pick-old-and-tell", "worker_id": "3KRDSXTJOYU5EUD", "story_id": "48664", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "toy story made us all smile .", "storylet_id": "243322"}], [{"original_text": "R2D2 even showed up!", "album_id": "388393", "photo_flickr_id": "16181087", "setting": "last-3-pick-old-and-tell", "worker_id": "3KRDSXTJOYU5EUD", "story_id": "48664", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "r2d2 even showed up !", "storylet_id": "243323"}], [{"original_text": "Darth Vader used the Force on the audience.", "album_id": "388393", "photo_flickr_id": "16181206", "setting": "last-3-pick-old-and-tell", "worker_id": "3KRDSXTJOYU5EUD", "story_id": "48664", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "organization organization used the force on the audience .", "storylet_id": "243324"}], [{"original_text": "Halloween parade and we were ready to arrest somebody.", "album_id": "30323", "photo_flickr_id": "1182145", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "48665", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "halloween parade and we were ready to arrest somebody .", "storylet_id": "243325"}], [{"original_text": "This float and these women looked awesome and we love Z100 too.", "album_id": "30323", "photo_flickr_id": "1182183", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "48665", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this float and these women looked awesome and we love z100 too .", "storylet_id": "243326"}], [{"original_text": "Albert Einstein never looked better.", "album_id": "30323", "photo_flickr_id": "1182192", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "48665", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] einstein never looked better .", "storylet_id": "243327"}], [{"original_text": "I want these guys to cheer us on.", "album_id": "30323", "photo_flickr_id": "1182234", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "48665", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i want these guys to cheer us on .", "storylet_id": "243328"}], [{"original_text": "This outfit is incredibly sexy and I like the red faced men.", "album_id": "30323", "photo_flickr_id": "1182299", "setting": "first-2-pick-and-tell", "worker_id": "IKQ391NVL0QEBGP", "story_id": "48665", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this outfit is incredibly sexy and i like the red faced men .", "storylet_id": "243329"}], [{"original_text": "There year me and my husband went to a Halloween costume party.", "album_id": "30323", "photo_flickr_id": "1182196", "setting": "first-2-pick-and-tell", "worker_id": "IXCSR0DJU389YLX", "story_id": "48666", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there year me and my husband went to a halloween costume party .", "storylet_id": "243330"}], [{"original_text": "Our friends Jack and Anna dressed up as Breakfast at Tiffany's.", "album_id": "30323", "photo_flickr_id": "1182180", "setting": "first-2-pick-and-tell", "worker_id": "IXCSR0DJU389YLX", "story_id": "48666", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our friends [male] and [female] dressed up as breakfast at organization 's .", "storylet_id": "243331"}], [{"original_text": "I loved the girls iconic outfits.", "album_id": "30323", "photo_flickr_id": "1182275", "setting": "first-2-pick-and-tell", "worker_id": "IXCSR0DJU389YLX", "story_id": "48666", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i loved the girls iconic outfits .", "storylet_id": "243332"}], [{"original_text": "There is always room for two at costumes parties.", "album_id": "30323", "photo_flickr_id": "1182303", "setting": "first-2-pick-and-tell", "worker_id": "IXCSR0DJU389YLX", "story_id": "48666", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there is always room for two at costumes parties .", "storylet_id": "243333"}], [{"original_text": "One of my favorite costumes were this group, they stole the show.", "album_id": "30323", "photo_flickr_id": "1182309", "setting": "first-2-pick-and-tell", "worker_id": "IXCSR0DJU389YLX", "story_id": "48666", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of my favorite costumes were this group , they stole the show .", "storylet_id": "243334"}], [{"original_text": "Young people went to a costume contest to see who was the best at cosplay.", "album_id": "30323", "photo_flickr_id": "1182145", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48667", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "young people went to a costume contest to see who was the best at cosplay .", "storylet_id": "243335"}], [{"original_text": "There were flamingo dancers pumping up the energy of the party.", "album_id": "30323", "photo_flickr_id": "1182183", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48667", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were flamingo dancers pumping up the energy of the party .", "storylet_id": "243336"}], [{"original_text": "A wanna be Einstein ", "album_id": "30323", "photo_flickr_id": "1182192", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48667", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a wan na be einstein", "storylet_id": "243337"}], [{"original_text": "along with not so pretty Dallas Cowgirls also participated in a smaller capacity.", "album_id": "30323", "photo_flickr_id": "1182234", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48667", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "along with not so pretty organization organization also participated in a smaller capacity .", "storylet_id": "243338"}], [{"original_text": "But the one who won the contest was the under-dressed bat girl.", "album_id": "30323", "photo_flickr_id": "1182299", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "48667", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the one who won the contest was the under-dressed bat girl .", "storylet_id": "243339"}], [{"original_text": "He thought the girls dressed as cops were hot. ", "album_id": "30323", "photo_flickr_id": "1182145", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48668", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he thought the girls dressed as cops were hot .", "storylet_id": "243340"}], [{"original_text": "Not to mention the girls on stage. ", "album_id": "30323", "photo_flickr_id": "1182183", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48668", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "not to mention the girls on stage .", "storylet_id": "243341"}], [{"original_text": "He had dressed as Einstein. ", "album_id": "30323", "photo_flickr_id": "1182192", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48668", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had dressed as einstein .", "storylet_id": "243342"}], [{"original_text": "He hit on the girls dressed as Dallas Cowboys cheerleaders until he realized they were men. ", "album_id": "30323", "photo_flickr_id": "1182234", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48668", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he hit on the girls dressed as organization organization cheerleaders until he realized they were men .", "storylet_id": "243343"}], [{"original_text": "But then he saw a scantily clad girl and went for that. ", "album_id": "30323", "photo_flickr_id": "1182299", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48668", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but then he saw a scantily clad girl and went for that .", "storylet_id": "243344"}], [{"original_text": "The club was having a costume night.", "album_id": "30323", "photo_flickr_id": "1182145", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48669", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the club was having a costume night .", "storylet_id": "243345"}], [{"original_text": "A lot of women dressed up in scantily clad garments.", "album_id": "30323", "photo_flickr_id": "1182183", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48669", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of women dressed up in scantily clad garments .", "storylet_id": "243346"}], [{"original_text": "Albert Einstein made an appearance at the nightclub.", "album_id": "30323", "photo_flickr_id": "1182192", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48669", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] einstein made an appearance at the nightclub .", "storylet_id": "243347"}], [{"original_text": "A troupe of high school cheerleaders danced their way in the club.", "album_id": "30323", "photo_flickr_id": "1182234", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48669", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a troupe of high school cheerleaders danced their way in the club .", "storylet_id": "243348"}], [{"original_text": "Everyone drank and danced a lot and lots of fun was had. ", "album_id": "30323", "photo_flickr_id": "1182299", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48669", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone drank and danced a lot and lots of fun was had .", "storylet_id": "243349"}], [{"original_text": "Every year there is a lobster festival in Maine. ", "album_id": "82746", "photo_flickr_id": "3297760", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48670", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every year there is a lobster festival in location .", "storylet_id": "243350"}], [{"original_text": "First they put these blue tubs out. ", "album_id": "82746", "photo_flickr_id": "3297643", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48670", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first they put these blue tubs out .", "storylet_id": "243351"}], [{"original_text": "The tubs are then covered with plastic. ", "album_id": "82746", "photo_flickr_id": "3297714", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48670", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tubs are then covered with plastic .", "storylet_id": "243352"}], [{"original_text": "Once that is done they put water in the tubs. ", "album_id": "82746", "photo_flickr_id": "3297692", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48670", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once that is done they put water in the tubs .", "storylet_id": "243353"}], [{"original_text": "The lobsters are then place in the tubs for the guest to choose from. ", "album_id": "82746", "photo_flickr_id": "3297775", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48670", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lobsters are then place in the tubs for the guest to choose from .", "storylet_id": "243354"}], [{"original_text": "In the city that night, there were a lot of lights and people.", "album_id": "82746", "photo_flickr_id": "3297775", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48671", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the city that night , there were a lot of lights and people .", "storylet_id": "243355"}], [{"original_text": "I think the camera crew was setting up a scene.", "album_id": "82746", "photo_flickr_id": "3297734", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48671", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i think the camera crew was setting up a scene .", "storylet_id": "243356"}], [{"original_text": "There was a plastic pool in the middle of the road.", "album_id": "82746", "photo_flickr_id": "3297643", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48671", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a plastic pool in the middle of the road .", "storylet_id": "243357"}], [{"original_text": "We chose to pay more attention to the random walkway.", "album_id": "82746", "photo_flickr_id": "3297678", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48671", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we chose to pay more attention to the random walkway .", "storylet_id": "243358"}], [{"original_text": "My friend found this smaller replica of a bus.", "album_id": "82746", "photo_flickr_id": "3297631", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48671", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my friend found this smaller replica of a bus .", "storylet_id": "243359"}], [{"original_text": "They stand outside and begin taking the plastic off.", "album_id": "82746", "photo_flickr_id": "3297760", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "48672", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they stand outside and begin taking the plastic off .", "storylet_id": "243360"}], [{"original_text": "More people gather in support and to help them.", "album_id": "82746", "photo_flickr_id": "3297643", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "48672", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "more people gather in support and to help them .", "storylet_id": "243361"}], [{"original_text": "Midway through, a break was taken.", "album_id": "82746", "photo_flickr_id": "3297714", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "48672", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "midway through , a break was taken .", "storylet_id": "243362"}], [{"original_text": "The scenery was observed before continuing with the project.", "album_id": "82746", "photo_flickr_id": "3297692", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "48672", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the scenery was observed before continuing with the project .", "storylet_id": "243363"}], [{"original_text": "Finally finished, they begin garnishing the relic.", "album_id": "82746", "photo_flickr_id": "3297775", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "48672", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally finished , they begin garnishing the relic .", "storylet_id": "243364"}], [{"original_text": "The family is exploring the night scene.", "album_id": "82746", "photo_flickr_id": "3297760", "setting": "last-3-pick-old-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "48673", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family is exploring the night scene .", "storylet_id": "243365"}], [{"original_text": "They are watching the lighting scene from the building in front of them", "album_id": "82746", "photo_flickr_id": "3297643", "setting": "last-3-pick-old-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "48673", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are watching the lighting scene from the building in front of them", "storylet_id": "243366"}], [{"original_text": "The family decided to move to a different location to view different part of the night scene.", "album_id": "82746", "photo_flickr_id": "3297714", "setting": "last-3-pick-old-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "48673", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family decided to move to a different location to view different part of the night scene .", "storylet_id": "243367"}], [{"original_text": "The item remain there while other people viewing other display.", "album_id": "82746", "photo_flickr_id": "3297692", "setting": "last-3-pick-old-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "48673", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the item remain there while other people viewing other display .", "storylet_id": "243368"}], [{"original_text": "This family is still enjoying the scene with their kids.", "album_id": "82746", "photo_flickr_id": "3297775", "setting": "last-3-pick-old-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "48673", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this family is still enjoying the scene with their kids .", "storylet_id": "243369"}], [{"original_text": "The people were gathering around the tub", "album_id": "82746", "photo_flickr_id": "3297760", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48674", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people were gathering around the tub", "storylet_id": "243370"}], [{"original_text": "when they witnessed the man speaking", "album_id": "82746", "photo_flickr_id": "3297643", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48674", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when they witnessed the man speaking", "storylet_id": "243371"}], [{"original_text": "before leaving it.", "album_id": "82746", "photo_flickr_id": "3297714", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48674", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "before leaving it .", "storylet_id": "243372"}], [{"original_text": "Only to come back ", "album_id": "82746", "photo_flickr_id": "3297692", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48674", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "only to come back", "storylet_id": "243373"}], [{"original_text": "to see people getting in the tub.", "album_id": "82746", "photo_flickr_id": "3297775", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48674", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to see people getting in the tub .", "storylet_id": "243374"}], [{"original_text": "Watching the St Patrick's Day parade.", "album_id": "168494", "photo_flickr_id": "6754181", "setting": "first-2-pick-and-tell", "worker_id": "MIQ16VAIP2C5B45", "story_id": "48675", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "watching the st [male] 's day parade .", "storylet_id": "243375"}], [{"original_text": "We watched some cloggers perform.", "album_id": "168494", "photo_flickr_id": "6754184", "setting": "first-2-pick-and-tell", "worker_id": "MIQ16VAIP2C5B45", "story_id": "48675", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we watched some cloggers perform .", "storylet_id": "243376"}], [{"original_text": "A young man played the bagpipes.", "album_id": "168494", "photo_flickr_id": "6754687", "setting": "first-2-pick-and-tell", "worker_id": "MIQ16VAIP2C5B45", "story_id": "48675", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a young man played the bagpipes .", "storylet_id": "243377"}], [{"original_text": "Some people wore colorful masks.", "album_id": "168494", "photo_flickr_id": "6754689", "setting": "first-2-pick-and-tell", "worker_id": "MIQ16VAIP2C5B45", "story_id": "48675", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people wore colorful masks .", "storylet_id": "243378"}], [{"original_text": "A local band wearing black and red performed in the parade.", "album_id": "168494", "photo_flickr_id": "6754691", "setting": "first-2-pick-and-tell", "worker_id": "MIQ16VAIP2C5B45", "story_id": "48675", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a local band wearing black and red performed in the parade .", "storylet_id": "243379"}], [{"original_text": "It is St. Patrick's Day. Everyone is wearing green.", "album_id": "168494", "photo_flickr_id": "6753788", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "48676", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is st. [male] 's day . everyone is wearing green .", "storylet_id": "243380"}], [{"original_text": "Green is the color many people use to celebrate St. Patrick's Day.", "album_id": "168494", "photo_flickr_id": "6753791", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "48676", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "green is the color many people use to celebrate st. [male] 's day .", "storylet_id": "243381"}], [{"original_text": "Some people wear green hats.", "album_id": "168494", "photo_flickr_id": "6754181", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "48676", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people wear green hats .", "storylet_id": "243382"}], [{"original_text": "There is a wonderful parade.", "album_id": "168494", "photo_flickr_id": "6754185", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "48676", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there is a wonderful parade .", "storylet_id": "243383"}], [{"original_text": "Here come the bagpipes. What a great day!", "album_id": "168494", "photo_flickr_id": "6754687", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "48676", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here come the bagpipes . what a great day !", "storylet_id": "243384"}], [{"original_text": "The world gets greener the closer you get to a St. Patrick's Day parade.", "album_id": "168494", "photo_flickr_id": "6753788", "setting": "last-3-pick-old-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "48677", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the world gets greener the closer you get to a st. [male] 's day parade .", "storylet_id": "243385"}], [{"original_text": "Unfortunately, I came unprepared, but I found a kind Irish vendor willing to sell me every green article of clothing you can think of.", "album_id": "168494", "photo_flickr_id": "6753791", "setting": "last-3-pick-old-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "48677", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "unfortunately , i came unprepared , but i found a kind irish vendor willing to sell me every green article of clothing you can think of .", "storylet_id": "243386"}], [{"original_text": "Green hats are the most common!", "album_id": "168494", "photo_flickr_id": "6754181", "setting": "last-3-pick-old-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "48677", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "green hats are the most common !", "storylet_id": "243387"}], [{"original_text": "We enjoyed a most Irish day, watching authentic Irish dance in the streets.", "album_id": "168494", "photo_flickr_id": "6754185", "setting": "last-3-pick-old-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "48677", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we enjoyed a most irish day , watching authentic irish dance in the streets .", "storylet_id": "243388"}], [{"original_text": "And last but not least, a young man playing a bagpipe!", "album_id": "168494", "photo_flickr_id": "6754687", "setting": "last-3-pick-old-and-tell", "worker_id": "DET3ZYQOZQ9HJFP", "story_id": "48677", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and last but not least , a young man playing a bagpipe !", "storylet_id": "243389"}], [{"original_text": "Today was the St. Patrick's day parade.", "album_id": "168494", "photo_flickr_id": "6753788", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48678", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the st. [male] 's day parade .", "storylet_id": "243390"}], [{"original_text": "There were so many green things on sale!", "album_id": "168494", "photo_flickr_id": "6753791", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48678", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many green things on sale !", "storylet_id": "243391"}], [{"original_text": "We even got these crazy hats to watch the parade in.", "album_id": "168494", "photo_flickr_id": "6754181", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48678", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even got these crazy hats to watch the parade in .", "storylet_id": "243392"}], [{"original_text": "So many people were in the pride to display their heritage.", "album_id": "168494", "photo_flickr_id": "6754185", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48678", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so many people were in the pride to display their heritage .", "storylet_id": "243393"}], [{"original_text": "I absolutely love the bag pipes! Today was a great day.", "album_id": "168494", "photo_flickr_id": "6754687", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48678", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i absolutely love the bag pipes ! today was a great day .", "storylet_id": "243394"}], [{"original_text": "People with green hats came to the performance", "album_id": "168494", "photo_flickr_id": "6754181", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48679", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people with green hats came to the performance", "storylet_id": "243395"}], [{"original_text": "to see the ladies dance", "album_id": "168494", "photo_flickr_id": "6754184", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48679", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to see the ladies dance", "storylet_id": "243396"}], [{"original_text": "and the saxophone players play.", "album_id": "168494", "photo_flickr_id": "6754687", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48679", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the saxophone players play .", "storylet_id": "243397"}], [{"original_text": "There were also dances ", "album_id": "168494", "photo_flickr_id": "6754689", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48679", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also dances", "storylet_id": "243398"}], [{"original_text": "that wore different clothing.", "album_id": "168494", "photo_flickr_id": "6754691", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48679", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that wore different clothing .", "storylet_id": "243399"}], [{"original_text": "We attended the Reclaim the Streets rally in SF.", "album_id": "208690", "photo_flickr_id": "8325358", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48680", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we attended the reclaim the streets rally in sf .", "storylet_id": "243400"}], [{"original_text": "Lots of bicyclists showed up to support the cause.", "album_id": "208690", "photo_flickr_id": "8325436", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48680", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of bicyclists showed up to support the cause .", "storylet_id": "243401"}], [{"original_text": "Some folks took it even further and decided to move in.", "album_id": "208690", "photo_flickr_id": "8332763", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48680", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some folks took it even further and decided to move in .", "storylet_id": "243402"}], [{"original_text": "A few cops were around, but they were just observing and it was a peaceful protest.", "album_id": "208690", "photo_flickr_id": "8323739", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48680", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a few cops were around , but they were just observing and it was a peaceful protest .", "storylet_id": "243403"}], [{"original_text": "Overall it was a great event and lots of people showed up to enjoy the day.", "album_id": "208690", "photo_flickr_id": "8332949", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48680", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall it was a great event and lots of people showed up to enjoy the day .", "storylet_id": "243404"}], [{"original_text": "My friends an I went to a rally. ", "album_id": "208690", "photo_flickr_id": "8323295", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "48681", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends an i went to a rally .", "storylet_id": "243405"}], [{"original_text": "There were some policeman guarding the event.", "album_id": "208690", "photo_flickr_id": "8323739", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "48681", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were some policeman guarding the event .", "storylet_id": "243406"}], [{"original_text": "It's wonderful so many people gathered to fight for the cause. ", "album_id": "208690", "photo_flickr_id": "8324408", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "48681", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's wonderful so many people gathered to fight for the cause .", "storylet_id": "243407"}], [{"original_text": "I saw a person carrying a chair, so he can sit somewhere during the rally.", "album_id": "208690", "photo_flickr_id": "8332763", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "48681", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i saw a person carrying a chair , so he can sit somewhere during the rally .", "storylet_id": "243408"}], [{"original_text": "Hundreds of people gathered at the rally. ", "album_id": "208690", "photo_flickr_id": "8332949", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "48681", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "hundreds of people gathered at the rally .", "storylet_id": "243409"}], [{"original_text": "they were determined to fight for their cause", "album_id": "208690", "photo_flickr_id": "8325358", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "48682", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were determined to fight for their cause", "storylet_id": "243410"}], [{"original_text": "people from all around joined in on it", "album_id": "208690", "photo_flickr_id": "8325436", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "48682", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people from all around joined in on it", "storylet_id": "243411"}], [{"original_text": "they rioted through the streets picking up anything they could", "album_id": "208690", "photo_flickr_id": "8332763", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "48682", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they rioted through the streets picking up anything they could", "storylet_id": "243412"}], [{"original_text": "the police tried their best to keep hold of the situation", "album_id": "208690", "photo_flickr_id": "8323739", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "48682", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the police tried their best to keep hold of the situation", "storylet_id": "243413"}], [{"original_text": "all in all it turned out to be pretty peaceful protest ", "album_id": "208690", "photo_flickr_id": "8332949", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "48682", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all in all it turned out to be pretty peaceful protest", "storylet_id": "243414"}], [{"original_text": "Protesters marched holding a signed that read \"Reclaim the Streets.\"", "album_id": "208690", "photo_flickr_id": "8325358", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "48683", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "protesters marched holding a signed that read `` reclaim the streets . ''", "storylet_id": "243415"}], [{"original_text": "Thousands of people gathered in the street for a good cause.", "album_id": "208690", "photo_flickr_id": "8325436", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "48683", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "thousands of people gathered in the street for a good cause .", "storylet_id": "243416"}], [{"original_text": "A man carrying a chair attempted to make a bold but silent statement. ", "album_id": "208690", "photo_flickr_id": "8332763", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "48683", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man carrying a chair attempted to make a bold but silent statement .", "storylet_id": "243417"}], [{"original_text": "The cop stood looking at the crowd to ensure a peaceful protest. ", "album_id": "208690", "photo_flickr_id": "8323739", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "48683", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cop stood looking at the crowd to ensure a peaceful protest .", "storylet_id": "243418"}], [{"original_text": "The protesters marched the streets for hours. ", "album_id": "208690", "photo_flickr_id": "8332949", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "48683", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the protesters marched the streets for hours .", "storylet_id": "243419"}], [{"original_text": "The people protested with a big banner", "album_id": "208690", "photo_flickr_id": "8325358", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48684", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people protested with a big banner", "storylet_id": "243420"}], [{"original_text": "and there were many on bicycles.", "album_id": "208690", "photo_flickr_id": "8325436", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48684", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and there were many on bicycles .", "storylet_id": "243421"}], [{"original_text": "One man had a chair", "album_id": "208690", "photo_flickr_id": "8332763", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48684", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one man had a chair", "storylet_id": "243422"}], [{"original_text": "and the police could not believe it", "album_id": "208690", "photo_flickr_id": "8323739", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48684", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the police could not believe it", "storylet_id": "243423"}], [{"original_text": "so they evacuated the streets.", "album_id": "208690", "photo_flickr_id": "8332949", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48684", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so they evacuated the streets .", "storylet_id": "243424"}], [{"original_text": "We decided to take a trip to see the Feather River.", "album_id": "210164", "photo_flickr_id": "8460056", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48685", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to take a trip to see the location location .", "storylet_id": "243425"}], [{"original_text": "We took a barge trip and floated along down the bank.", "album_id": "210164", "photo_flickr_id": "8460062", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48685", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a barge trip and floated along down the bank .", "storylet_id": "243426"}], [{"original_text": "They let us out of the barge and we got to explore a bit.", "album_id": "210164", "photo_flickr_id": "8460089", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48685", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they let us out of the barge and we got to explore a bit .", "storylet_id": "243427"}], [{"original_text": "Here's a pic of the two of us on the barge.", "album_id": "210164", "photo_flickr_id": "8460279", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48685", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's a pic of the two of us on the barge .", "storylet_id": "243428"}], [{"original_text": "We passed under a bunch of old bridges.", "album_id": "210164", "photo_flickr_id": "8460328", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48685", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we passed under a bunch of old bridges .", "storylet_id": "243429"}], [{"original_text": "My family and I went on a tour of a historic place.", "album_id": "210164", "photo_flickr_id": "8459476", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "48686", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family and i went on a tour of a historic place .", "storylet_id": "243430"}], [{"original_text": "We had a boat ride, during the tour of the sites. ", "album_id": "210164", "photo_flickr_id": "8460062", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "48686", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a boat ride , during the tour of the sites .", "storylet_id": "243431"}], [{"original_text": "At noon, we had lunch at a nearby restaurant.", "album_id": "210164", "photo_flickr_id": "8460075", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "48686", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at noon , we had lunch at a nearby restaurant .", "storylet_id": "243432"}], [{"original_text": "During the tour, the guide gave a speech about the historical significance of the sites.", "album_id": "210164", "photo_flickr_id": "8460266", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "48686", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "during the tour , the guide gave a speech about the historical significance of the sites .", "storylet_id": "243433"}], [{"original_text": "My mother and I sitting on the bench, in the afternoon, trying to relax.", "album_id": "210164", "photo_flickr_id": "8460273", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "48686", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my mother and i sitting on the bench , in the afternoon , trying to relax .", "storylet_id": "243434"}], [{"original_text": "My family was taking a trip in another country.", "album_id": "210164", "photo_flickr_id": "8460056", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48687", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family was taking a trip in another country .", "storylet_id": "243435"}], [{"original_text": "We decided to try the local river cruise to see the sites.", "album_id": "210164", "photo_flickr_id": "8460062", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48687", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided to try the local river cruise to see the sites .", "storylet_id": "243436"}], [{"original_text": "It dropped us off deep in the jungle", "album_id": "210164", "photo_flickr_id": "8460089", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48687", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it dropped us off deep in the jungle", "storylet_id": "243437"}], [{"original_text": "Me and dad were able to get alot of good photos.", "album_id": "210164", "photo_flickr_id": "8460279", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48687", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "me and dad were able to get alot of good photos .", "storylet_id": "243438"}], [{"original_text": "We ended up back in town at the end of the day.", "album_id": "210164", "photo_flickr_id": "8460328", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48687", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended up back in town at the end of the day .", "storylet_id": "243439"}], [{"original_text": "A day at the riverwalk in San Antonio", "album_id": "210164", "photo_flickr_id": "8460056", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48688", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a day at the riverwalk in location location", "storylet_id": "243440"}], [{"original_text": "You can buy a ticket and ride down the river. ", "album_id": "210164", "photo_flickr_id": "8460062", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48688", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you can buy a ticket and ride down the river .", "storylet_id": "243441"}], [{"original_text": "Water, water everywhere. It was amazing. ", "album_id": "210164", "photo_flickr_id": "8460089", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48688", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "water , water everywhere . it was amazing .", "storylet_id": "243442"}], [{"original_text": "I had to have a little fun with dad!", "album_id": "210164", "photo_flickr_id": "8460279", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48688", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had to have a little fun with dad !", "storylet_id": "243443"}], [{"original_text": "Really cool old bridge. Very nice ", "album_id": "210164", "photo_flickr_id": "8460328", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48688", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "really cool old bridge . very nice", "storylet_id": "243444"}], [{"original_text": "The canal had many trees around it", "album_id": "210164", "photo_flickr_id": "8460056", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48689", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the canal had many trees around it", "storylet_id": "243445"}], [{"original_text": "and the old people watched the boat come through.", "album_id": "210164", "photo_flickr_id": "8460062", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48689", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the old people watched the boat come through .", "storylet_id": "243446"}], [{"original_text": "The people off the boat crossed the bridge", "album_id": "210164", "photo_flickr_id": "8460089", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48689", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people off the boat crossed the bridge", "storylet_id": "243447"}], [{"original_text": "after they took funny photos", "album_id": "210164", "photo_flickr_id": "8460279", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48689", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after they took funny photos", "storylet_id": "243448"}], [{"original_text": "and saw the bridge in the canal.", "album_id": "210164", "photo_flickr_id": "8460328", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48689", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and saw the bridge in the canal .", "storylet_id": "243449"}], [{"original_text": "The couple decided to have a nice night out.", "album_id": "72157594452138486", "photo_flickr_id": "341081399", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "48690", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple decided to have a nice night out .", "storylet_id": "243450"}], [{"original_text": "They had a great dinner at a nice restaurant.", "album_id": "72157594452138486", "photo_flickr_id": "341079575", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "48690", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a great dinner at a nice restaurant .", "storylet_id": "243451"}], [{"original_text": "Afterwards, they decided to go to a party at their friend's house.", "album_id": "72157594452138486", "photo_flickr_id": "341099957", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "48690", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards , they decided to go to a party at their friend 's house .", "storylet_id": "243452"}], [{"original_text": "They met up with their friend and spent some quality time together.", "album_id": "72157594452138486", "photo_flickr_id": "341096870", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "48690", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they met up with their friend and spent some quality time together .", "storylet_id": "243453"}], [{"original_text": "Everyone had a great time at the party! It was a great way to end the night.", "album_id": "72157594452138486", "photo_flickr_id": "341090390", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "48690", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time at the party ! it was a great way to end the night .", "storylet_id": "243454"}], [{"original_text": "We had a very nice table to sit at for our meal.", "album_id": "72157594452138486", "photo_flickr_id": "341081399", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "48691", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a very nice table to sit at for our meal .", "storylet_id": "243455"}], [{"original_text": "a picture of us after dinner and ready to party.", "album_id": "72157594452138486", "photo_flickr_id": "341099957", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "48691", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a picture of us after dinner and ready to party .", "storylet_id": "243456"}], [{"original_text": "Everybody was having a blast", "album_id": "72157594452138486", "photo_flickr_id": "341098580", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "48691", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everybody was having a blast", "storylet_id": "243457"}], [{"original_text": "We got to meet some cool ne people.", "album_id": "72157594452138486", "photo_flickr_id": "341090390", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "48691", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got to meet some cool ne people .", "storylet_id": "243458"}], [{"original_text": "This guy looks like he may have partied to hard", "album_id": "72157594452138486", "photo_flickr_id": "341086910", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "48691", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this guy looks like he may have partied to hard", "storylet_id": "243459"}], [{"original_text": "Todd and Angela celebrated their anniversary.", "album_id": "72157594452138486", "photo_flickr_id": "341081399", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48692", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] celebrated their anniversary .", "storylet_id": "243460"}], [{"original_text": "The food was expensive and very good.", "album_id": "72157594452138486", "photo_flickr_id": "341079575", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48692", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the food was expensive and very good .", "storylet_id": "243461"}], [{"original_text": "They had their picture taken nine times that night.", "album_id": "72157594452138486", "photo_flickr_id": "341099957", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48692", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had their picture taken nine times that night .", "storylet_id": "243462"}], [{"original_text": "Bret and Chad had been friends since elementary school.", "album_id": "72157594452138486", "photo_flickr_id": "341096870", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48692", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and location had been friends since elementary school .", "storylet_id": "243463"}], [{"original_text": "They called themselves the Three Amigos and rode off into sunset. ", "album_id": "72157594452138486", "photo_flickr_id": "341090390", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48692", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they called themselves the organization organization and rode off into sunset .", "storylet_id": "243464"}], [{"original_text": "They celebrating their first anniversary by going out to eat. ", "album_id": "72157594452138486", "photo_flickr_id": "341081399", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48693", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they celebrating their first anniversary by going out to eat .", "storylet_id": "243465"}], [{"original_text": "The food was quite lovely. ", "album_id": "72157594452138486", "photo_flickr_id": "341079575", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48693", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the food was quite lovely .", "storylet_id": "243466"}], [{"original_text": "After dining they decided to stop by their favorite pub. ", "album_id": "72157594452138486", "photo_flickr_id": "341099957", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48693", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after dining they decided to stop by their favorite pub .", "storylet_id": "243467"}], [{"original_text": "But as usual he started to drink too much. ", "album_id": "72157594452138486", "photo_flickr_id": "341096870", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48693", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but as usual he started to drink too much .", "storylet_id": "243468"}], [{"original_text": "He was more interested in his pals than her. ", "album_id": "72157594452138486", "photo_flickr_id": "341090390", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48693", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was more interested in his pals than her .", "storylet_id": "243469"}], [{"original_text": "Took my fiance out for a nice dinner date.", "album_id": "72157594452138486", "photo_flickr_id": "341081399", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "48694", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "took my fiance out for a nice dinner date .", "storylet_id": "243470"}], [{"original_text": "Our beautiful delicious dessert!", "album_id": "72157594452138486", "photo_flickr_id": "341079575", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "48694", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our beautiful delicious dessert !", "storylet_id": "243471"}], [{"original_text": "About to go to our friends gathering.", "album_id": "72157594452138486", "photo_flickr_id": "341099957", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "48694", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "about to go to our friends gathering .", "storylet_id": "243472"}], [{"original_text": "My friend Jack and I about to start drinking.", "album_id": "72157594452138486", "photo_flickr_id": "341096870", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "48694", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friend [male] and i about to start drinking .", "storylet_id": "243473"}], [{"original_text": "My bud is here! Marcus is the coolest guy!", "album_id": "72157594452138486", "photo_flickr_id": "341090390", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "48694", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my bud is here ! [male] is the coolest guy !", "storylet_id": "243474"}], [{"original_text": "We are not your typical bride and groom.", "album_id": "72157594452246340", "photo_flickr_id": "341170025", "setting": "first-2-pick-and-tell", "worker_id": "CZM3HZOM4GFD56O", "story_id": "48695", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are not your typical bride and groom .", "storylet_id": "243475"}], [{"original_text": "The groom getting down on the dance floor.", "album_id": "72157594452246340", "photo_flickr_id": "341170806", "setting": "first-2-pick-and-tell", "worker_id": "CZM3HZOM4GFD56O", "story_id": "48695", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the groom getting down on the dance floor .", "storylet_id": "243476"}], [{"original_text": "The bride's daughter supported her completely.", "album_id": "72157594452246340", "photo_flickr_id": "341172139", "setting": "first-2-pick-and-tell", "worker_id": "CZM3HZOM4GFD56O", "story_id": "48695", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride 's daughter supported her completely .", "storylet_id": "243477"}], [{"original_text": "The only person who showed up in a tux. ", "album_id": "72157594452246340", "photo_flickr_id": "341175321", "setting": "first-2-pick-and-tell", "worker_id": "CZM3HZOM4GFD56O", "story_id": "48695", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the only person who showed up in a tux .", "storylet_id": "243478"}], [{"original_text": "During the dollar dance they will stash money anywhere.", "album_id": "72157594452246340", "photo_flickr_id": "341175736", "setting": "first-2-pick-and-tell", "worker_id": "CZM3HZOM4GFD56O", "story_id": "48695", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "during the dollar dance they will stash money anywhere .", "storylet_id": "243479"}], [{"original_text": "This man was the host of our party.", "album_id": "72157594452246340", "photo_flickr_id": "341167307", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48696", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this man was the host of our party .", "storylet_id": "243480"}], [{"original_text": "He invited his dad who did a lot of the lighting.", "album_id": "72157594452246340", "photo_flickr_id": "341169507", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48696", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he invited his dad who did a lot of the lighting .", "storylet_id": "243481"}], [{"original_text": "His mother and aunt provided the food.", "album_id": "72157594452246340", "photo_flickr_id": "341172139", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48696", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his mother and aunt provided the food .", "storylet_id": "243482"}], [{"original_text": "He smiled several times and took photos on my camera.", "album_id": "72157594452246340", "photo_flickr_id": "341173369", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48696", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he smiled several times and took photos on my camera .", "storylet_id": "243483"}], [{"original_text": "We all had a lovely time at that party.", "album_id": "72157594452246340", "photo_flickr_id": "341177485", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48696", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all had a lovely time at that party .", "storylet_id": "243484"}], [{"original_text": "Friends having a Halloween party", "album_id": "72157594452246340", "photo_flickr_id": "341170025", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "48697", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends having a halloween party", "storylet_id": "243485"}], [{"original_text": "Friend get the dancing and having fun", "album_id": "72157594452246340", "photo_flickr_id": "341170806", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "48697", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "friend get the dancing and having fun", "storylet_id": "243486"}], [{"original_text": "Taking pictures and being crazy", "album_id": "72157594452246340", "photo_flickr_id": "341172139", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "48697", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "taking pictures and being crazy", "storylet_id": "243487"}], [{"original_text": "Continuing to take pictures of friends ", "album_id": "72157594452246340", "photo_flickr_id": "341175321", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "48697", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "continuing to take pictures of friends", "storylet_id": "243488"}], [{"original_text": "Last picture of friend before the party ended", "album_id": "72157594452246340", "photo_flickr_id": "341175736", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "48697", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last picture of friend before the party ended", "storylet_id": "243489"}], [{"original_text": "Ben threw a wild party for our friends.", "album_id": "72157594452246340", "photo_flickr_id": "341167307", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48698", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] threw a wild party for our friends .", "storylet_id": "243490"}], [{"original_text": "The survivalist Morty came over to pray for us.", "album_id": "72157594452246340", "photo_flickr_id": "341169507", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48698", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the survivalist morty came over to pray for us .", "storylet_id": "243491"}], [{"original_text": "The ladies all had a good time dancing.", "album_id": "72157594452246340", "photo_flickr_id": "341172139", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48698", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ladies all had a good time dancing .", "storylet_id": "243492"}], [{"original_text": "Ben doesn't know how to smile for pictures.", "album_id": "72157594452246340", "photo_flickr_id": "341173369", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48698", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] does n't know how to smile for pictures .", "storylet_id": "243493"}], [{"original_text": "Everyone partied until two a.m. the next day. ", "album_id": "72157594452246340", "photo_flickr_id": "341177485", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48698", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone partied until two a.m. the next day .", "storylet_id": "243494"}], [{"original_text": "My aunt and uncle are enjoying themselves.", "album_id": "72157594452246340", "photo_flickr_id": "341170025", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "48699", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my aunt and uncle are enjoying themselves .", "storylet_id": "243495"}], [{"original_text": "A lot of people loved dancing.", "album_id": "72157594452246340", "photo_flickr_id": "341170806", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "48699", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of people loved dancing .", "storylet_id": "243496"}], [{"original_text": "These two are definitely having a good time.", "album_id": "72157594452246340", "photo_flickr_id": "341172139", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "48699", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these two are definitely having a good time .", "storylet_id": "243497"}], [{"original_text": "Our friend isn't very photogenic.", "album_id": "72157594452246340", "photo_flickr_id": "341175321", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "48699", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our friend is n't very photogenic .", "storylet_id": "243498"}], [{"original_text": "He likes to be unique and oh does it show.", "album_id": "72157594452246340", "photo_flickr_id": "341175736", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "48699", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he likes to be unique and oh does it show .", "storylet_id": "243499"}], [{"original_text": "Our New Year's party was great fun.", "album_id": "72157623114382738", "photo_flickr_id": "4234393570", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48700", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our new year 's party was great fun .", "storylet_id": "243500"}], [{"original_text": "A lot of people showed up.", "album_id": "72157623114382738", "photo_flickr_id": "4234407944", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48700", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of people showed up .", "storylet_id": "243501"}], [{"original_text": "Most people were in a silly mood.", "album_id": "72157623114382738", "photo_flickr_id": "4233637719", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48700", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most people were in a silly mood .", "storylet_id": "243502"}], [{"original_text": "Everyone had a noisemaker.", "album_id": "72157623114382738", "photo_flickr_id": "4234415968", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48700", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone had a noisemaker .", "storylet_id": "243503"}], [{"original_text": "It was an amazing way to ring in the new year.", "album_id": "72157623114382738", "photo_flickr_id": "4234427216", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48700", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was an amazing way to ring in the new year .", "storylet_id": "243504"}], [{"original_text": "Jed and his coworkers having a little fun after work.", "album_id": "72157623114382738", "photo_flickr_id": "4233618513", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48701", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "jed and his coworkers having a little fun after work .", "storylet_id": "243505"}], [{"original_text": "There is greg sitting on the orange light.", "album_id": "72157623114382738", "photo_flickr_id": "4234398136", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48701", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is greg sitting on the orange light .", "storylet_id": "243506"}], [{"original_text": "This is emily and seth they are expecting a new born baby in 7 months.", "album_id": "72157623114382738", "photo_flickr_id": "4233640387", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48701", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is emily and seth they are expecting a new born baby in 7 months .", "storylet_id": "243507"}], [{"original_text": "Seth is getting a little sad because he is getting made fun of.", "album_id": "72157623114382738", "photo_flickr_id": "4233646421", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48701", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is getting a little sad because he is getting made fun of .", "storylet_id": "243508"}], [{"original_text": "The jokes are really getting to him and he wants to cry.", "album_id": "72157623114382738", "photo_flickr_id": "4234421972", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48701", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the jokes are really getting to him and he wants to cry .", "storylet_id": "243509"}], [{"original_text": "When I got to the party everyone was happy to see me.", "album_id": "72157623114382738", "photo_flickr_id": "4233618513", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48702", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i got to the party everyone was happy to see me .", "storylet_id": "243510"}], [{"original_text": "I sat and watched some movies.", "album_id": "72157623114382738", "photo_flickr_id": "4234398136", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48702", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i sat and watched some movies .", "storylet_id": "243511"}], [{"original_text": "I also got to meet a lot of interesting people there.", "album_id": "72157623114382738", "photo_flickr_id": "4233640387", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48702", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also got to meet a lot of interesting people there .", "storylet_id": "243512"}], [{"original_text": "They were also happy to be there.", "album_id": "72157623114382738", "photo_flickr_id": "4233646421", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48702", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were also happy to be there .", "storylet_id": "243513"}], [{"original_text": "Some of them were unhappy to be there.", "album_id": "72157623114382738", "photo_flickr_id": "4234421972", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48702", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of them were unhappy to be there .", "storylet_id": "243514"}], [{"original_text": "Everyone gathered at the house.", "album_id": "72157623114382738", "photo_flickr_id": "4233618513", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48703", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone gathered at the house .", "storylet_id": "243515"}], [{"original_text": "People gathered to have drinks and converse.", "album_id": "72157623114382738", "photo_flickr_id": "4234398136", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48703", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people gathered to have drinks and converse .", "storylet_id": "243516"}], [{"original_text": "Old friends who hadn't seen each other in years where there.", "album_id": "72157623114382738", "photo_flickr_id": "4233640387", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48703", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "old friends who had n't seen each other in years where there .", "storylet_id": "243517"}], [{"original_text": "The night went on without a hitch.", "album_id": "72157623114382738", "photo_flickr_id": "4233646421", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48703", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the night went on without a hitch .", "storylet_id": "243518"}], [{"original_text": "But we where sad for it to end.", "album_id": "72157623114382738", "photo_flickr_id": "4234421972", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48703", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but we where sad for it to end .", "storylet_id": "243519"}], [{"original_text": "The New Year was fast approaching and, in preparation, the house was fully decorated.", "album_id": "72157623114382738", "photo_flickr_id": "4234393570", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48704", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the new year was fast approaching and , in preparation , the house was fully decorated .", "storylet_id": "243520"}], [{"original_text": "Before the countdown began, a few party goers milled about, eager for the festivities to get underway. ", "album_id": "72157623114382738", "photo_flickr_id": "4234407944", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48704", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before the countdown began , a few party goers milled about , eager for the festivities to get underway .", "storylet_id": "243521"}], [{"original_text": "As soon as the countdown began many attendees began to honk horns and make a huge commotion out of excitement.", "album_id": "72157623114382738", "photo_flickr_id": "4233637719", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48704", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as soon as the countdown began many attendees began to honk horns and make a huge commotion out of excitement .", "storylet_id": "243522"}], [{"original_text": "Many almost made silly faces to the camera or hugged each other, rapt up in the joy of a new year.", "album_id": "72157623114382738", "photo_flickr_id": "4234415968", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48704", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many almost made silly faces to the camera or hugged each other , rapt up in the joy of a new year .", "storylet_id": "243523"}], [{"original_text": "When the clock struck midnight, everyone started shouting, dancing, and even singing. ", "album_id": "72157623114382738", "photo_flickr_id": "4234427216", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "48704", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the clock struck midnight , everyone started shouting , dancing , and even singing .", "storylet_id": "243524"}], [{"original_text": "My son's were more then ready for the trip out into the woods.", "album_id": "72157622990809751", "photo_flickr_id": "4234086757", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "48705", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my son 's were more then ready for the trip out into the woods .", "storylet_id": "243525"}], [{"original_text": "As soon as we got there Britney had set up the camera to take some pictures.", "album_id": "72157622990809751", "photo_flickr_id": "4234090371", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "48705", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as soon as we got there [female] had set up the camera to take some pictures .", "storylet_id": "243526"}], [{"original_text": "This little guy wasted no time getting into one of her shots though.", "album_id": "72157622990809751", "photo_flickr_id": "4234093165", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "48705", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this little guy wasted no time getting into one of her shots though .", "storylet_id": "243527"}], [{"original_text": "After hiking around for a bit we had worked up a bit of a hunger. ", "album_id": "72157622990809751", "photo_flickr_id": "4234870718", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "48705", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after hiking around for a bit we had worked up a bit of a hunger .", "storylet_id": "243528"}], [{"original_text": "Good thing for all of us, Britney is not only an amazing person, but also an amazing cook.", "album_id": "72157622990809751", "photo_flickr_id": "4234096113", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "48705", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "good thing for all of us , [female] is not only an amazing person , but also an amazing cook .", "storylet_id": "243529"}], [{"original_text": "David and Annie were going for a hike in the woods. ", "album_id": "72157622990809751", "photo_flickr_id": "4234090371", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48706", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] were going for a hike in the woods .", "storylet_id": "243530"}], [{"original_text": "The flowers were in full bloom.", "album_id": "72157622990809751", "photo_flickr_id": "4234091241", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48706", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flowers were in full bloom .", "storylet_id": "243531"}], [{"original_text": "Their friend Stacie was happy.", "album_id": "72157622990809751", "photo_flickr_id": "4234866740", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48706", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their friend [female] was happy .", "storylet_id": "243532"}], [{"original_text": "They saw a lovely sunset.", "album_id": "72157622990809751", "photo_flickr_id": "4234094197", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48706", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they saw a lovely sunset .", "storylet_id": "243533"}], [{"original_text": "Later they had some drinks and food. ", "album_id": "72157622990809751", "photo_flickr_id": "4234870718", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48706", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later they had some drinks and food .", "storylet_id": "243534"}], [{"original_text": "I rode my bike into the nature trail yesterday.", "album_id": "72157622990809751", "photo_flickr_id": "4234086757", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48707", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i rode my bike into the nature trail yesterday .", "storylet_id": "243535"}], [{"original_text": "I brought some friends with me.", "album_id": "72157622990809751", "photo_flickr_id": "4234090371", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48707", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i brought some friends with me .", "storylet_id": "243536"}], [{"original_text": "We saw some animals while we were there.", "album_id": "72157622990809751", "photo_flickr_id": "4234093165", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48707", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw some animals while we were there .", "storylet_id": "243537"}], [{"original_text": "We took a break and had a few drinks.", "album_id": "72157622990809751", "photo_flickr_id": "4234870718", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48707", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a break and had a few drinks .", "storylet_id": "243538"}], [{"original_text": "We had a lot of fun outside.", "album_id": "72157622990809751", "photo_flickr_id": "4234096113", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48707", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a lot of fun outside .", "storylet_id": "243539"}], [{"original_text": "Today we are taking a hike, first we need food.", "album_id": "72157622990809751", "photo_flickr_id": "4234086757", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48708", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we are taking a hike , first we need food .", "storylet_id": "243540"}], [{"original_text": "Here we are just taking a rest before we go.", "album_id": "72157622990809751", "photo_flickr_id": "4234090371", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48708", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we are just taking a rest before we go .", "storylet_id": "243541"}], [{"original_text": "I do not even want to know what that is.", "album_id": "72157622990809751", "photo_flickr_id": "4234093165", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48708", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i do not even want to know what that is .", "storylet_id": "243542"}], [{"original_text": "We are hungry, we found this convenient little cafe during our hike.", "album_id": "72157622990809751", "photo_flickr_id": "4234870718", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48708", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we are hungry , we found this convenient little cafe during our hike .", "storylet_id": "243543"}], [{"original_text": "All done, ready to go back hiking.", "album_id": "72157622990809751", "photo_flickr_id": "4234096113", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48708", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all done , ready to go back hiking .", "storylet_id": "243544"}], [{"original_text": "Today we took my nephews to get their bikes fixed. ", "album_id": "72157622990809751", "photo_flickr_id": "4234086757", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48709", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we took my nephews to get their bikes fixed .", "storylet_id": "243545"}], [{"original_text": "Afterward we took a truck ride to a local brewery. we had to go through the woods. ", "album_id": "72157622990809751", "photo_flickr_id": "4234090371", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48709", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "afterward we took a truck ride to a local brewery . we had to go through the woods .", "storylet_id": "243546"}], [{"original_text": "We saw many creatures along the way. ", "album_id": "72157622990809751", "photo_flickr_id": "4234093165", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48709", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw many creatures along the way .", "storylet_id": "243547"}], [{"original_text": "They beer was so good. It was worth the journey. ", "album_id": "72157622990809751", "photo_flickr_id": "4234870718", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48709", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they beer was so good . it was worth the journey .", "storylet_id": "243548"}], [{"original_text": "We drank too many, but it was ok. We weren't driving. ", "album_id": "72157622990809751", "photo_flickr_id": "4234096113", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48709", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we drank too many , but it was ok. we were n't driving .", "storylet_id": "243549"}], [{"original_text": "Pete was on the road to visit his parents.", "album_id": "72157622991071411", "photo_flickr_id": "4235003414", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48710", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was on the road to visit his parents .", "storylet_id": "243550"}], [{"original_text": "He seen this interesting casino on his way to his parents house.", "album_id": "72157622991071411", "photo_flickr_id": "4232419105", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48710", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he seen this interesting casino on his way to his parents house .", "storylet_id": "243551"}], [{"original_text": "They lived a few hours away so he had to drive a while.", "album_id": "72157622991071411", "photo_flickr_id": "4235010494", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48710", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they lived a few hours away so he had to drive a while .", "storylet_id": "243552"}], [{"original_text": "While driving he took a picture of this beautiful little river.", "album_id": "72157622991071411", "photo_flickr_id": "4234240129", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48710", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while driving he took a picture of this beautiful little river .", "storylet_id": "243553"}], [{"original_text": "He arrives at his parents store in his old hometown to greet them.", "album_id": "72157622991071411", "photo_flickr_id": "4235021220", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48710", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he arrives at his parents store in his old hometown to greet them .", "storylet_id": "243554"}], [{"original_text": "They told me to do some mixing before their practice session, but I got a bit distracted with the camera.", "album_id": "72157622991071411", "photo_flickr_id": "4235003414", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "48711", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they told me to do some mixing before their practice session , but i got a bit distracted with the camera .", "storylet_id": "243555"}], [{"original_text": "Beth couldn't hold back laughs before preforming and I couldn't help but capture the moment.", "album_id": "72157622991071411", "photo_flickr_id": "4235006926", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "48711", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] could n't hold back laughs before preforming and i could n't help but capture the moment .", "storylet_id": "243556"}], [{"original_text": "A few moments later and the recording began without a hitch.", "album_id": "72157622991071411", "photo_flickr_id": "4234254367", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "48711", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few moments later and the recording began without a hitch .", "storylet_id": "243557"}], [{"original_text": "I was impressed by this photo too, but it was clear that Rob was not.", "album_id": "72157622991071411", "photo_flickr_id": "4235036002", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "48711", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was impressed by this photo too , but it was clear that rob was not .", "storylet_id": "243558"}], [{"original_text": "It's alright though because his cat Benny was more than happy. ", "album_id": "72157622991071411", "photo_flickr_id": "4233292614", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "48711", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's alright though because his cat [male] was more than happy .", "storylet_id": "243559"}], [{"original_text": "I finally got to the recording studio yesterday.", "album_id": "72157622991071411", "photo_flickr_id": "4235003414", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48712", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finally got to the recording studio yesterday .", "storylet_id": "243560"}], [{"original_text": "I was very nervous.", "album_id": "72157622991071411", "photo_flickr_id": "4235006926", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48712", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was very nervous .", "storylet_id": "243561"}], [{"original_text": "I had to record the song perfectly.", "album_id": "72157622991071411", "photo_flickr_id": "4234254367", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48712", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had to record the song perfectly .", "storylet_id": "243562"}], [{"original_text": "Everyone expected me to do well.", "album_id": "72157622991071411", "photo_flickr_id": "4235036002", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48712", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone expected me to do well .", "storylet_id": "243563"}], [{"original_text": "I brought my cat with me for good luck.", "album_id": "72157622991071411", "photo_flickr_id": "4233292614", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48712", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i brought my cat with me for good luck .", "storylet_id": "243564"}], [{"original_text": "here in the studio recording a new album today.", "album_id": "72157622991071411", "photo_flickr_id": "4235003414", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48713", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here in the studio recording a new album today .", "storylet_id": "243565"}], [{"original_text": "This is broken so we had to sit around for a while waiting.", "album_id": "72157622991071411", "photo_flickr_id": "4232419105", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48713", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is broken so we had to sit around for a while waiting .", "storylet_id": "243566"}], [{"original_text": "Ok, finally we get to start singing.", "album_id": "72157622991071411", "photo_flickr_id": "4235010494", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48713", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "ok , finally we get to start singing .", "storylet_id": "243567"}], [{"original_text": "Drummer, he's drumming.", "album_id": "72157622991071411", "photo_flickr_id": "4234240129", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48713", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "drummer , he 's drumming .", "storylet_id": "243568"}], [{"original_text": "He's happy that I said that about him.", "album_id": "72157622991071411", "photo_flickr_id": "4235021220", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48713", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he 's happy that i said that about him .", "storylet_id": "243569"}], [{"original_text": "Here is our amp that we use.", "album_id": "72157622991071411", "photo_flickr_id": "4235003414", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48714", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is our amp that we use .", "storylet_id": "243570"}], [{"original_text": "I'm getting ready to sing with my friend.", "album_id": "72157622991071411", "photo_flickr_id": "4235006926", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48714", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm getting ready to sing with my friend .", "storylet_id": "243571"}], [{"original_text": "The band is playing some awesome music.", "album_id": "72157622991071411", "photo_flickr_id": "4234254367", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48714", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band is playing some awesome music .", "storylet_id": "243572"}], [{"original_text": "Here is my boyfriend getting a drink.", "album_id": "72157622991071411", "photo_flickr_id": "4235036002", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48714", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is my boyfriend getting a drink .", "storylet_id": "243573"}], [{"original_text": "This is my cat, she is the best.", "album_id": "72157622991071411", "photo_flickr_id": "4233292614", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48714", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is my cat , she is the best .", "storylet_id": "243574"}], [{"original_text": "after the good food and conversation ", "album_id": "72157622991566633", "photo_flickr_id": "4234468087", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "48715", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after the good food and conversation", "storylet_id": "243575"}], [{"original_text": "everyone is waiting on the end of night celebration ", "album_id": "72157622991566633", "photo_flickr_id": "4234468591", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "48715", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone is waiting on the end of night celebration", "storylet_id": "243576"}], [{"original_text": "it is starting to get late and people interests are waining ", "album_id": "72157622991566633", "photo_flickr_id": "4234469093", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "48715", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is starting to get late and people interests are waining", "storylet_id": "243577"}], [{"original_text": "so another round was served ", "album_id": "72157622991566633", "photo_flickr_id": "4234469417", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "48715", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so another round was served", "storylet_id": "243578"}], [{"original_text": "and now the fireworks begin ", "album_id": "72157622991566633", "photo_flickr_id": "4234517129", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "48715", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and now the fireworks begin", "storylet_id": "243579"}], [{"original_text": "Bill and Ted are throwing a party.", "album_id": "72157622991566633", "photo_flickr_id": "4234466545", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48716", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [male] are throwing a party .", "storylet_id": "243580"}], [{"original_text": "Their friend Seth is really having a good time.", "album_id": "72157622991566633", "photo_flickr_id": "4235242846", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48716", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their friend [male] is really having a good time .", "storylet_id": "243581"}], [{"original_text": "Their friend Jeremy is waiting for the fireworks to off.", "album_id": "72157622991566633", "photo_flickr_id": "4234468087", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48716", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their friend [male] is waiting for the fireworks to off .", "storylet_id": "243582"}], [{"original_text": "Everyone is now waiting for the fireworks show to begin.", "album_id": "72157622991566633", "photo_flickr_id": "4234468591", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48716", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone is now waiting for the fireworks show to begin .", "storylet_id": "243583"}], [{"original_text": "The fireworks are finally lit and the fireworks are on display.", "album_id": "72157622991566633", "photo_flickr_id": "4234517129", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "48716", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fireworks are finally lit and the fireworks are on display .", "storylet_id": "243584"}], [{"original_text": "I went to my friend's house party last week.", "album_id": "72157622991566633", "photo_flickr_id": "4234468087", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48717", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to my friend 's house party last week .", "storylet_id": "243585"}], [{"original_text": "There were a lot of people there.", "album_id": "72157622991566633", "photo_flickr_id": "4234468591", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48717", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people there .", "storylet_id": "243586"}], [{"original_text": "We were all having a great time.", "album_id": "72157622991566633", "photo_flickr_id": "4234469093", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48717", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were all having a great time .", "storylet_id": "243587"}], [{"original_text": "We played some games while we were there.", "album_id": "72157622991566633", "photo_flickr_id": "4234469417", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48717", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we played some games while we were there .", "storylet_id": "243588"}], [{"original_text": "Afterward we went up to the roof to shoot some fireworks.", "album_id": "72157622991566633", "photo_flickr_id": "4234517129", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48717", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we went up to the roof to shoot some fireworks .", "storylet_id": "243589"}], [{"original_text": "Breaking open a brew for the 4th of July.", "album_id": "72157622991566633", "photo_flickr_id": "4234468087", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48718", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "breaking open a brew for the 4th of july .", "storylet_id": "243590"}], [{"original_text": "Friends come over to celebrate.", "album_id": "72157622991566633", "photo_flickr_id": "4234468591", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48718", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "friends come over to celebrate .", "storylet_id": "243591"}], [{"original_text": "Friends drinking and chatting at the party.", "album_id": "72157622991566633", "photo_flickr_id": "4234469093", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48718", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "friends drinking and chatting at the party .", "storylet_id": "243592"}], [{"original_text": "Drinking and snacking at the party.", "album_id": "72157622991566633", "photo_flickr_id": "4234469417", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48718", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "drinking and snacking at the party .", "storylet_id": "243593"}], [{"original_text": "Lighting off fireworks for the celebration.", "album_id": "72157622991566633", "photo_flickr_id": "4234517129", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48718", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lighting off fireworks for the celebration .", "storylet_id": "243594"}], [{"original_text": "Joe and Allen pose before going in to the meeting.", "album_id": "72157622991566633", "photo_flickr_id": "4234466545", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48719", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [male] pose before going in to the meeting .", "storylet_id": "243595"}], [{"original_text": "He was happy with the results!", "album_id": "72157622991566633", "photo_flickr_id": "4235242846", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48719", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was happy with the results !", "storylet_id": "243596"}], [{"original_text": "Ted looks pretty pleased as well.", "album_id": "72157622991566633", "photo_flickr_id": "4234468087", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48719", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] looks pretty pleased as well .", "storylet_id": "243597"}], [{"original_text": "Afterwards we ball discussed the results.", "album_id": "72157622991566633", "photo_flickr_id": "4234468591", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48719", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards we ball discussed the results .", "storylet_id": "243598"}], [{"original_text": "We were so happy we set off fireworks to celebrate!", "album_id": "72157622991566633", "photo_flickr_id": "4234517129", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48719", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were so happy we set off fireworks to celebrate !", "storylet_id": "243599"}], [{"original_text": "Getting to Ed's favorite diner was not easy.", "album_id": "290987", "photo_flickr_id": "11867134", "setting": "first-2-pick-and-tell", "worker_id": "0MQRHC19TGMPXK7", "story_id": "48720", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting to [male] 's favorite diner was not easy .", "storylet_id": "243600"}], [{"original_text": "It involved a boat ride down the river.", "album_id": "290987", "photo_flickr_id": "11867070", "setting": "first-2-pick-and-tell", "worker_id": "0MQRHC19TGMPXK7", "story_id": "48720", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it involved a boat ride down the river .", "storylet_id": "243601"}], [{"original_text": "Ed's brother had a boat, though, so that made it a little better.", "album_id": "290987", "photo_flickr_id": "11866993", "setting": "first-2-pick-and-tell", "worker_id": "0MQRHC19TGMPXK7", "story_id": "48720", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] 's brother had a boat , though , so that made it a little better .", "storylet_id": "243602"}], [{"original_text": "When Ed and his brother saw the sign for the diner at the dock, they were elated!", "album_id": "290987", "photo_flickr_id": "11866764", "setting": "first-2-pick-and-tell", "worker_id": "0MQRHC19TGMPXK7", "story_id": "48720", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when [male] and his brother saw the sign for the diner at the dock , they were elated !", "storylet_id": "243603"}], [{"original_text": "They ordered their favorites, sitting at the bar, and watched the chef cook them up excitedly.", "album_id": "290987", "photo_flickr_id": "11866691", "setting": "first-2-pick-and-tell", "worker_id": "0MQRHC19TGMPXK7", "story_id": "48720", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ordered their favorites , sitting at the bar , and watched the chef cook them up excitedly .", "storylet_id": "243604"}], [{"original_text": "Today we took a boat trip to visit BainBridge.", "album_id": "290987", "photo_flickr_id": "11867134", "setting": "first-2-pick-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "48721", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we took a boat trip to visit location .", "storylet_id": "243605"}], [{"original_text": "We started the day off in town with some hot cocoa. It was dark and rich.", "album_id": "290987", "photo_flickr_id": "11867531", "setting": "first-2-pick-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "48721", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started the day off in town with some hot cocoa . it was dark and rich .", "storylet_id": "243606"}], [{"original_text": "After cocoa, we went to get some breakfast at the diner in town.They had old time food there.", "album_id": "290987", "photo_flickr_id": "11866764", "setting": "first-2-pick-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "48721", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after cocoa , we went to get some breakfast at the diner in town.they had old time food there .", "storylet_id": "243607"}], [{"original_text": "On the way back to the bus stop we came across a little concert. It was really nice to hear music on the street.", "album_id": "290987", "photo_flickr_id": "11865596", "setting": "first-2-pick-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "48721", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on the way back to the bus stop we came across a little concert . it was really nice to hear music on the street .", "storylet_id": "243608"}], [{"original_text": "We went back the the station and said good bye to Bainbridge. We enjoyed the whole day.", "album_id": "290987", "photo_flickr_id": "11867386", "setting": "first-2-pick-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "48721", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we went back the the station and said good bye to location . we enjoyed the whole day .", "storylet_id": "243609"}], [{"original_text": "First we snapped a few pics at the docks.", "album_id": "290987", "photo_flickr_id": "11867134", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48722", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "first we snapped a few pics at the docks .", "storylet_id": "243610"}], [{"original_text": "This cool thing caught everyone's eye.", "album_id": "290987", "photo_flickr_id": "11867070", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48722", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this cool thing caught everyone 's eye .", "storylet_id": "243611"}], [{"original_text": "The boat was very impressive up close.", "album_id": "290987", "photo_flickr_id": "11866993", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48722", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boat was very impressive up close .", "storylet_id": "243612"}], [{"original_text": "Afterwards we ate at this lovely little diner.", "album_id": "290987", "photo_flickr_id": "11866764", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48722", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards we ate at this lovely little diner .", "storylet_id": "243613"}], [{"original_text": "The food was great, and the kitchen was clearly busy!", "album_id": "290987", "photo_flickr_id": "11866691", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "48722", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the food was great , and the kitchen was clearly busy !", "storylet_id": "243614"}], [{"original_text": "It was too cold to be out on the deck. ", "album_id": "290987", "photo_flickr_id": "11867134", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48723", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was too cold to be out on the deck .", "storylet_id": "243615"}], [{"original_text": "But they didn't care, they wanted to watch the town disappear. ", "album_id": "290987", "photo_flickr_id": "11867070", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48723", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but they did n't care , they wanted to watch the town disappear .", "storylet_id": "243616"}], [{"original_text": "They could see the captain at the stern. ", "album_id": "290987", "photo_flickr_id": "11866993", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48723", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they could see the captain at the stern .", "storylet_id": "243617"}], [{"original_text": "They were waiting on the Streamliner Diner to open. ", "album_id": "290987", "photo_flickr_id": "11866764", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48723", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were waiting on the streamliner diner to open .", "storylet_id": "243618"}], [{"original_text": "One of their friends worked there.", "album_id": "290987", "photo_flickr_id": "11866691", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48723", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of their friends worked there .", "storylet_id": "243619"}], [{"original_text": "My father bought a boat ride for he and I.", "album_id": "290987", "photo_flickr_id": "11867134", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48724", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my father bought a boat ride for he and i .", "storylet_id": "243620"}], [{"original_text": "The hot beverages were delicious.", "album_id": "290987", "photo_flickr_id": "11867531", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48724", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the hot beverages were delicious .", "storylet_id": "243621"}], [{"original_text": "The on-board diner had a great selection of items.", "album_id": "290987", "photo_flickr_id": "11866764", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48724", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the on-board diner had a great selection of items .", "storylet_id": "243622"}], [{"original_text": "I had a great luncheon at a nice restaurant.", "album_id": "290987", "photo_flickr_id": "11865596", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48724", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had a great luncheon at a nice restaurant .", "storylet_id": "243623"}], [{"original_text": "I read walls carefully before I enter rooms. ", "album_id": "290987", "photo_flickr_id": "11867386", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48724", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i read walls carefully before i enter rooms .", "storylet_id": "243624"}], [{"original_text": "We left on the subway to get to the convention venue.", "album_id": "675903", "photo_flickr_id": "30440943", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "48725", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we left on the subway to get to the convention venue .", "storylet_id": "243625"}], [{"original_text": "Hundreds of people and computers were lined up.", "album_id": "675903", "photo_flickr_id": "30163107", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "48725", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "hundreds of people and computers were lined up .", "storylet_id": "243626"}], [{"original_text": "We pulled an all-nighter and only broke briefly to eat.", "album_id": "675903", "photo_flickr_id": "30161655", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "48725", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we pulled an all-nighter and only broke briefly to eat .", "storylet_id": "243627"}], [{"original_text": "We were at it so long that we got kind of punchy from lack of sleep.", "album_id": "675903", "photo_flickr_id": "30164056", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "48725", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were at it so long that we got kind of punchy from lack of sleep .", "storylet_id": "243628"}], [{"original_text": "It was a really fun way to spend our weekend in the city.", "album_id": "675903", "photo_flickr_id": "30164705", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "48725", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a really fun way to spend our weekend in the city .", "storylet_id": "243629"}], [{"original_text": "The party started off like any other.", "album_id": "675903", "photo_flickr_id": "30442237", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "48726", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party started off like any other .", "storylet_id": "243630"}], [{"original_text": "There was some delicious cake.", "album_id": "675903", "photo_flickr_id": "30161655", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "48726", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was some delicious cake .", "storylet_id": "243631"}], [{"original_text": "And we opened presents as well.", "album_id": "675903", "photo_flickr_id": "30440943", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "48726", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and we opened presents as well .", "storylet_id": "243632"}], [{"original_text": "Things started to get wilder as the night went on.", "album_id": "675903", "photo_flickr_id": "30164198", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "48726", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "things started to get wilder as the night went on .", "storylet_id": "243633"}], [{"original_text": "It was certainly a night no one will forget.", "album_id": "675903", "photo_flickr_id": "30161652", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "48726", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was certainly a night no one will forget .", "storylet_id": "243634"}], [{"original_text": "This year, we got Emily a wonder woman costume for her birthday.", "album_id": "675903", "photo_flickr_id": "30440943", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48727", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this year , we got [female] a wonder woman costume for her birthday .", "storylet_id": "243635"}], [{"original_text": "We brought some cupcakes.", "album_id": "675903", "photo_flickr_id": "30163107", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48727", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we brought some cupcakes .", "storylet_id": "243636"}], [{"original_text": "Emily's best friend baked her a cake.", "album_id": "675903", "photo_flickr_id": "30161655", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48727", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] 's best friend baked her a cake .", "storylet_id": "243637"}], [{"original_text": "One of the guys showed us how to write using light afterwards.", "album_id": "675903", "photo_flickr_id": "30164056", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48727", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the guys showed us how to write using light afterwards .", "storylet_id": "243638"}], [{"original_text": "Then we played some board games where losers had to do some humiliating things. It was a great night.", "album_id": "675903", "photo_flickr_id": "30164705", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48727", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we played some board games where losers had to do some humiliating things . it was a great night .", "storylet_id": "243639"}], [{"original_text": "It was fainally time for the birthday girl to take center stage.", "album_id": "675903", "photo_flickr_id": "30442237", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "48728", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was fainally time for the birthday girl to take center stage .", "storylet_id": "243640"}], [{"original_text": "We brought out the cake and she blew out the candles.", "album_id": "675903", "photo_flickr_id": "30161655", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "48728", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we brought out the cake and she blew out the candles .", "storylet_id": "243641"}], [{"original_text": "She unwrapped some of her gifts right afterward.", "album_id": "675903", "photo_flickr_id": "30440943", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "48728", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she unwrapped some of her gifts right afterward .", "storylet_id": "243642"}], [{"original_text": "Later we had some fun playing with streamers outside.", "album_id": "675903", "photo_flickr_id": "30164198", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "48728", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later we had some fun playing with streamers outside .", "storylet_id": "243643"}], [{"original_text": "It's probably best not to ask about some games we played.", "album_id": "675903", "photo_flickr_id": "30161652", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "48728", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's probably best not to ask about some games we played .", "storylet_id": "243644"}], [{"original_text": "Bringing out the birthday cake.", "album_id": "675903", "photo_flickr_id": "30442237", "setting": "last-3-pick-old-and-tell", "worker_id": "SV0BV69WZBW017J", "story_id": "48729", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "bringing out the birthday cake .", "storylet_id": "243645"}], [{"original_text": "Make and wish and blow out your candles!!!", "album_id": "675903", "photo_flickr_id": "30161655", "setting": "last-3-pick-old-and-tell", "worker_id": "SV0BV69WZBW017J", "story_id": "48729", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "make and wish and blow out your candles ! ! !", "storylet_id": "243646"}], [{"original_text": "Posing w/ wonder woman gifts, so awesome.", "album_id": "675903", "photo_flickr_id": "30440943", "setting": "last-3-pick-old-and-tell", "worker_id": "SV0BV69WZBW017J", "story_id": "48729", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "posing w/ wonder woman gifts , so awesome .", "storylet_id": "243647"}], [{"original_text": "Danny broke out her poi and put on a little show.", "album_id": "675903", "photo_flickr_id": "30164198", "setting": "last-3-pick-old-and-tell", "worker_id": "SV0BV69WZBW017J", "story_id": "48729", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] broke out her poi and put on a little show .", "storylet_id": "243648"}], [{"original_text": "I don't even know what it going on here but someone is getting frisky.", "album_id": "675903", "photo_flickr_id": "30161652", "setting": "last-3-pick-old-and-tell", "worker_id": "SV0BV69WZBW017J", "story_id": "48729", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i do n't even know what it going on here but someone is getting frisky .", "storylet_id": "243649"}], [{"original_text": "There were many stop lights along the way but we finally made it to the concert.", "album_id": "679261", "photo_flickr_id": "30350010", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48730", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many stop lights along the way but we finally made it to the concert .", "storylet_id": "243650"}], [{"original_text": "They already had a band playing.", "album_id": "679261", "photo_flickr_id": "30350277", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48730", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they already had a band playing .", "storylet_id": "243651"}], [{"original_text": "There was a lot of equipment set up in the street.", "album_id": "679261", "photo_flickr_id": "30350211", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48730", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a lot of equipment set up in the street .", "storylet_id": "243652"}], [{"original_text": "Many people were attending.", "album_id": "679261", "photo_flickr_id": "30166266", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48730", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many people were attending .", "storylet_id": "243653"}], [{"original_text": "Afterward we all bought some souvenirs.", "album_id": "679261", "photo_flickr_id": "30350376", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48730", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we all bought some souvenirs .", "storylet_id": "243654"}], [{"original_text": "People started showing up in the early morning for the day long concert", "album_id": "679261", "photo_flickr_id": "30166266", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48731", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people started showing up in the early morning for the day long concert", "storylet_id": "243655"}], [{"original_text": "Several bands played during the day. ", "album_id": "679261", "photo_flickr_id": "30350277", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48731", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "several bands played during the day .", "storylet_id": "243656"}], [{"original_text": "These people had the best view.", "album_id": "679261", "photo_flickr_id": "30350646", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48731", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these people had the best view .", "storylet_id": "243657"}], [{"original_text": "The best band played that night. ", "album_id": "679261", "photo_flickr_id": "30350549", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48731", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the best band played that night .", "storylet_id": "243658"}], [{"original_text": "There was a lot of trash to clean up. ", "album_id": "679261", "photo_flickr_id": "30351077", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48731", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a lot of trash to clean up .", "storylet_id": "243659"}], [{"original_text": "The local battle of the bands started with some typical vandalism. One of the signal lights was damaged.", "album_id": "679261", "photo_flickr_id": "30350010", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48732", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the local battle of the bands started with some typical vandalism . one of the signal lights was damaged .", "storylet_id": "243660"}], [{"original_text": "The bands started playing and this year, they were pretty good.", "album_id": "679261", "photo_flickr_id": "30350277", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48732", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bands started playing and this year , they were pretty good .", "storylet_id": "243661"}], [{"original_text": "The sound system was pretty terrible though.", "album_id": "679261", "photo_flickr_id": "30350211", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48732", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sound system was pretty terrible though .", "storylet_id": "243662"}], [{"original_text": "Hundreds of people came for a listen.", "album_id": "679261", "photo_flickr_id": "30166266", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48732", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "hundreds of people came for a listen .", "storylet_id": "243663"}], [{"original_text": "Afterwards, we found some cardboard cutouts and we decided to play some carnival games with them.", "album_id": "679261", "photo_flickr_id": "30350376", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48732", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , we found some cardboard cutouts and we decided to play some carnival games with them .", "storylet_id": "243664"}], [{"original_text": "Nothing like gather for a night concert. The weather is perfect.", "album_id": "679261", "photo_flickr_id": "30166266", "setting": "last-3-pick-old-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "48733", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "nothing like gather for a night concert . the weather is perfect .", "storylet_id": "243665"}], [{"original_text": "The guys are performing and the crowd loves it.", "album_id": "679261", "photo_flickr_id": "30350277", "setting": "last-3-pick-old-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "48733", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guys are performing and the crowd loves it .", "storylet_id": "243666"}], [{"original_text": "Hey grabbed a photo of some people getting a view of the concert from up high.", "album_id": "679261", "photo_flickr_id": "30350646", "setting": "last-3-pick-old-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "48733", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "hey grabbed a photo of some people getting a view of the concert from up high .", "storylet_id": "243667"}], [{"original_text": "The guys are doing it up. The crowd is wild tonight.", "album_id": "679261", "photo_flickr_id": "30350549", "setting": "last-3-pick-old-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "48733", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guys are doing it up . the crowd is wild tonight .", "storylet_id": "243668"}], [{"original_text": "Everything is over and the night crew have their work to do. ", "album_id": "679261", "photo_flickr_id": "30351077", "setting": "last-3-pick-old-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "48733", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everything is over and the night crew have their work to do .", "storylet_id": "243669"}], [{"original_text": "A huge crowd built up in anticipation for this band. ", "album_id": "679261", "photo_flickr_id": "30166266", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48734", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a huge crowd built up in anticipation for this band .", "storylet_id": "243670"}], [{"original_text": "The band members came out and sung their songs. ", "album_id": "679261", "photo_flickr_id": "30350277", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48734", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the band members came out and sung their songs .", "storylet_id": "243671"}], [{"original_text": "People gathered all over, even on the rooftops. ", "album_id": "679261", "photo_flickr_id": "30350646", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48734", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people gathered all over , even on the rooftops .", "storylet_id": "243672"}], [{"original_text": "The concert perhaps got a little too crazy. ", "album_id": "679261", "photo_flickr_id": "30350549", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48734", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the concert perhaps got a little too crazy .", "storylet_id": "243673"}], [{"original_text": "By the end of it, huge riots occurred and made the streets a big mess. ", "album_id": "679261", "photo_flickr_id": "30351077", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48734", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of it , huge riots occurred and made the streets a big mess .", "storylet_id": "243674"}], [{"original_text": "Ready to go in the pool.", "album_id": "72157594171848171", "photo_flickr_id": "30428730", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48735", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "ready to go in the pool .", "storylet_id": "243675"}], [{"original_text": "Seating in the shade to avoid a sunburn.", "album_id": "72157594171848171", "photo_flickr_id": "30428370", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48735", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "seating in the shade to avoid a sunburn .", "storylet_id": "243676"}], [{"original_text": "Dancing the square dance with his girlfriend.", "album_id": "72157594171848171", "photo_flickr_id": "30429774", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48735", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dancing the square dance with his girlfriend .", "storylet_id": "243677"}], [{"original_text": "And dipping her. ", "album_id": "72157594171848171", "photo_flickr_id": "30430007", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48735", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and dipping her .", "storylet_id": "243678"}], [{"original_text": "The guys doing a beer chug contest", "album_id": "72157594171848171", "photo_flickr_id": "30429110", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48735", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the guys doing a beer chug contest", "storylet_id": "243679"}], [{"original_text": "There were a lot of people at the party last week.", "album_id": "72157594171848171", "photo_flickr_id": "30428445", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48736", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of people at the party last week .", "storylet_id": "243680"}], [{"original_text": "I had a great time there.", "album_id": "72157594171848171", "photo_flickr_id": "30428531", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48736", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had a great time there .", "storylet_id": "243681"}], [{"original_text": "I met a lot of new people.", "album_id": "72157594171848171", "photo_flickr_id": "30429170", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48736", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i met a lot of new people .", "storylet_id": "243682"}], [{"original_text": "Everyone was having a good time playing around.", "album_id": "72157594171848171", "photo_flickr_id": "30429266", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48736", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was having a good time playing around .", "storylet_id": "243683"}], [{"original_text": "After a while we got tired and fell asleep.", "album_id": "72157594171848171", "photo_flickr_id": "30430165", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48736", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a while we got tired and fell asleep .", "storylet_id": "243684"}], [{"original_text": "The day started innocently enough on the swing.", "album_id": "72157594171848171", "photo_flickr_id": "30428730", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "48737", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day started innocently enough on the swing .", "storylet_id": "243685"}], [{"original_text": "Or so we thought at least, she wasn't so sure.", "album_id": "72157594171848171", "photo_flickr_id": "30428370", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "48737", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "or so we thought at least , she was n't so sure .", "storylet_id": "243686"}], [{"original_text": "Some fun dancing started.", "album_id": "72157594171848171", "photo_flickr_id": "30429774", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "48737", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some fun dancing started .", "storylet_id": "243687"}], [{"original_text": "With the obligatory dip.", "album_id": "72157594171848171", "photo_flickr_id": "30430007", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "48737", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with the obligatory dip .", "storylet_id": "243688"}], [{"original_text": "Then, somebody brought out the beer bong. The night got wild.", "album_id": "72157594171848171", "photo_flickr_id": "30429110", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "48737", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then , somebody brought out the beer bong . the night got wild .", "storylet_id": "243689"}], [{"original_text": "This is a photo of a couple.", "album_id": "72157594171848171", "photo_flickr_id": "30428730", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48738", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a photo of a couple .", "storylet_id": "243690"}], [{"original_text": "This is a picture of a girl.", "album_id": "72157594171848171", "photo_flickr_id": "30428370", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48738", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a girl .", "storylet_id": "243691"}], [{"original_text": "This is a picture of friends.", "album_id": "72157594171848171", "photo_flickr_id": "30429774", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48738", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of friends .", "storylet_id": "243692"}], [{"original_text": "This is a picture of friends having fun.", "album_id": "72157594171848171", "photo_flickr_id": "30430007", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48738", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of friends having fun .", "storylet_id": "243693"}], [{"original_text": "This is a picture of friends drinking.", "album_id": "72157594171848171", "photo_flickr_id": "30429110", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48738", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of friends drinking .", "storylet_id": "243694"}], [{"original_text": "The day was nice with us sitting on the swinging chair.", "album_id": "72157594171848171", "photo_flickr_id": "30428730", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48739", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day was nice with us sitting on the swinging chair .", "storylet_id": "243695"}], [{"original_text": "Wonder shirt girl takes her glasses off for a serious photo.", "album_id": "72157594171848171", "photo_flickr_id": "30428370", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48739", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "wonder shirt girl takes her glasses off for a serious photo .", "storylet_id": "243696"}], [{"original_text": "Some of the party goers were dancing and having a fun time.", "album_id": "72157594171848171", "photo_flickr_id": "30429774", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48739", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the party goers were dancing and having a fun time .", "storylet_id": "243697"}], [{"original_text": "The party goers really got down with the dancing.", "album_id": "72157594171848171", "photo_flickr_id": "30430007", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48739", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the party goers really got down with the dancing .", "storylet_id": "243698"}], [{"original_text": "Later that night it was essential to take a picture of the men drinking beer.", "album_id": "72157594171848171", "photo_flickr_id": "30429110", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48739", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later that night it was essential to take a picture of the men drinking beer .", "storylet_id": "243699"}], [{"original_text": "Angel and her dad are at the bowling alley for some quality time. ", "album_id": "6998", "photo_flickr_id": "315417", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48740", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and her dad are at the bowling alley for some quality time .", "storylet_id": "243700"}], [{"original_text": "They are there with some of her dads coworkers. ", "album_id": "6998", "photo_flickr_id": "315454", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48740", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are there with some of her dads coworkers .", "storylet_id": "243701"}], [{"original_text": "Nathan has been bowling on a league for many years and is pretty good. ", "album_id": "6998", "photo_flickr_id": "315457", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48740", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] has been bowling on a league for many years and is pretty good .", "storylet_id": "243702"}], [{"original_text": "Tom is new to the sport but he does OK for a beginner. ", "album_id": "6998", "photo_flickr_id": "315458", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48740", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is new to the sport but he does ok for a beginner .", "storylet_id": "243703"}], [{"original_text": "This is Angel watching as her dad scores a strike to win the game. ", "album_id": "6998", "photo_flickr_id": "315447", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48740", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is [male] watching as her dad scores a strike to win the game .", "storylet_id": "243704"}], [{"original_text": "It had been a long time since the family had all done something together.", "album_id": "6998", "photo_flickr_id": "315398", "setting": "first-2-pick-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "48741", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it had been a long time since the family had all done something together .", "storylet_id": "243705"}], [{"original_text": "Bowling sounded like a good idea and they hadn't done that in a while.", "album_id": "6998", "photo_flickr_id": "315411", "setting": "first-2-pick-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "48741", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "bowling sounded like a good idea and they had n't done that in a while .", "storylet_id": "243706"}], [{"original_text": "Everyone was really excited to find out it was half price bowling.", "album_id": "6998", "photo_flickr_id": "315429", "setting": "first-2-pick-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "48741", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was really excited to find out it was half price bowling .", "storylet_id": "243707"}], [{"original_text": "Even the little ones wanted to get in on the fun.", "album_id": "6998", "photo_flickr_id": "315447", "setting": "first-2-pick-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "48741", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the little ones wanted to get in on the fun .", "storylet_id": "243708"}], [{"original_text": "No one get any strikes, but they still had a great time.", "album_id": "6998", "photo_flickr_id": "315458", "setting": "first-2-pick-and-tell", "worker_id": "EICVRBXC88LT5US", "story_id": "48741", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "no one get any strikes , but they still had a great time .", "storylet_id": "243709"}], [{"original_text": "This dad and his daughter were ready to have a great day, but she needed a quick bite first!", "album_id": "6998", "photo_flickr_id": "315417", "setting": "last-3-pick-old-and-tell", "worker_id": "WX5ID2DT1SL0U6C", "story_id": "48742", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this dad and his daughter were ready to have a great day , but she needed a quick bite first !", "storylet_id": "243710"}], [{"original_text": "Come on, get a strike!", "album_id": "6998", "photo_flickr_id": "315454", "setting": "last-3-pick-old-and-tell", "worker_id": "WX5ID2DT1SL0U6C", "story_id": "48742", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "come on , get a strike !", "storylet_id": "243711"}], [{"original_text": "Looking over his shoulder, the man sees just 9 pins fall. Go for the spare!", "album_id": "6998", "photo_flickr_id": "315457", "setting": "last-3-pick-old-and-tell", "worker_id": "WX5ID2DT1SL0U6C", "story_id": "48742", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looking over his shoulder , the man sees just 9 pins fall . go for the spare !", "storylet_id": "243712"}], [{"original_text": "About to try for another strike!", "album_id": "6998", "photo_flickr_id": "315458", "setting": "last-3-pick-old-and-tell", "worker_id": "WX5ID2DT1SL0U6C", "story_id": "48742", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "about to try for another strike !", "storylet_id": "243713"}], [{"original_text": "She loved her day at the bowling alley, but I think she loved the fish most of all.", "album_id": "6998", "photo_flickr_id": "315447", "setting": "last-3-pick-old-and-tell", "worker_id": "WX5ID2DT1SL0U6C", "story_id": "48742", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she loved her day at the bowling alley , but i think she loved the fish most of all .", "storylet_id": "243714"}], [{"original_text": "A father and daughter decided to go out bowling with some friends.", "album_id": "6998", "photo_flickr_id": "315417", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48743", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a father and daughter decided to go out bowling with some friends .", "storylet_id": "243715"}], [{"original_text": "The fathers bowled and had fun keeping track of each others scores.", "album_id": "6998", "photo_flickr_id": "315454", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48743", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fathers bowled and had fun keeping track of each others scores .", "storylet_id": "243716"}], [{"original_text": "Some of the guys did better than others.", "album_id": "6998", "photo_flickr_id": "315457", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48743", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the guys did better than others .", "storylet_id": "243717"}], [{"original_text": "The youngest of the group kept getting strikes and ended up leading with the best scores of the night.", "album_id": "6998", "photo_flickr_id": "315458", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48743", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the youngest of the group kept getting strikes and ended up leading with the best scores of the night .", "storylet_id": "243718"}], [{"original_text": "The daughter was tired and wanted to go home later in the evening. It was a fun night of bowling.", "album_id": "6998", "photo_flickr_id": "315447", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48743", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the daughter was tired and wanted to go home later in the evening . it was a fun night of bowling .", "storylet_id": "243719"}], [{"original_text": "The parents took the girl bowling for her birthday", "album_id": "6998", "photo_flickr_id": "315417", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48744", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parents took the girl bowling for her birthday", "storylet_id": "243720"}], [{"original_text": "the people there were professinals", "album_id": "6998", "photo_flickr_id": "315454", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48744", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the people there were professinals", "storylet_id": "243721"}], [{"original_text": "and were very good.", "album_id": "6998", "photo_flickr_id": "315457", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48744", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and were very good .", "storylet_id": "243722"}], [{"original_text": "The guy in the red own everything ", "album_id": "6998", "photo_flickr_id": "315458", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48744", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guy in the red own everything", "storylet_id": "243723"}], [{"original_text": "and the girl was impressed.", "album_id": "6998", "photo_flickr_id": "315447", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48744", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the girl was impressed .", "storylet_id": "243724"}], [{"original_text": "Last night, my friends and I went to a party.", "album_id": "406196", "photo_flickr_id": "17050774", "setting": "first-2-pick-and-tell", "worker_id": "PT2K87JVU811N7Y", "story_id": "48745", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night , my friends and i went to a party .", "storylet_id": "243725"}], [{"original_text": "There were lots of our friends there celebrating.", "album_id": "406196", "photo_flickr_id": "17050845", "setting": "first-2-pick-and-tell", "worker_id": "PT2K87JVU811N7Y", "story_id": "48745", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were lots of our friends there celebrating .", "storylet_id": "243726"}], [{"original_text": "Some people were wearing wigs and silly hats.", "album_id": "406196", "photo_flickr_id": "17050681", "setting": "first-2-pick-and-tell", "worker_id": "PT2K87JVU811N7Y", "story_id": "48745", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people were wearing wigs and silly hats .", "storylet_id": "243727"}], [{"original_text": "Some had even painted their faces.", "album_id": "406196", "photo_flickr_id": "17050729", "setting": "first-2-pick-and-tell", "worker_id": "PT2K87JVU811N7Y", "story_id": "48745", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some had even painted their faces .", "storylet_id": "243728"}], [{"original_text": "By the end of the evening, it had gotten quite cold and we had to wrap up in blankets.", "album_id": "406196", "photo_flickr_id": "17050714", "setting": "first-2-pick-and-tell", "worker_id": "PT2K87JVU811N7Y", "story_id": "48745", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of the evening , it had gotten quite cold and we had to wrap up in blankets .", "storylet_id": "243729"}], [{"original_text": "Here is Jessica getting ready for the costume party.", "album_id": "406196", "photo_flickr_id": "17050800", "setting": "first-2-pick-and-tell", "worker_id": "W8QJCBFXLNXT8ZV", "story_id": "48746", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is [female] getting ready for the costume party .", "storylet_id": "243730"}], [{"original_text": "I love dressing up!", "album_id": "406196", "photo_flickr_id": "17050817", "setting": "first-2-pick-and-tell", "worker_id": "W8QJCBFXLNXT8ZV", "story_id": "48746", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love dressing up !", "storylet_id": "243731"}], [{"original_text": "The gang is all here!", "album_id": "406196", "photo_flickr_id": "17050845", "setting": "first-2-pick-and-tell", "worker_id": "W8QJCBFXLNXT8ZV", "story_id": "48746", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the gang is all here !", "storylet_id": "243732"}], [{"original_text": "It got cold but it was still fun.", "album_id": "406196", "photo_flickr_id": "17050714", "setting": "first-2-pick-and-tell", "worker_id": "W8QJCBFXLNXT8ZV", "story_id": "48746", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it got cold but it was still fun .", "storylet_id": "243733"}], [{"original_text": "I enjoyed spending the time with my friends.", "album_id": "406196", "photo_flickr_id": "17050785", "setting": "first-2-pick-and-tell", "worker_id": "W8QJCBFXLNXT8ZV", "story_id": "48746", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i enjoyed spending the time with my friends .", "storylet_id": "243734"}], [{"original_text": "The camping trip started at night.", "album_id": "406196", "photo_flickr_id": "17050774", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48747", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the camping trip started at night .", "storylet_id": "243735"}], [{"original_text": "We got to the cabin and decided to take a picture. It was the first time we had seen each other in years.", "album_id": "406196", "photo_flickr_id": "17050845", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48747", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to the cabin and decided to take a picture . it was the first time we had seen each other in years .", "storylet_id": "243736"}], [{"original_text": "Some of us decided be silly and wore wigs.", "album_id": "406196", "photo_flickr_id": "17050681", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48747", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of us decided be silly and wore wigs .", "storylet_id": "243737"}], [{"original_text": "Others decided that face painting was the way to go.", "album_id": "406196", "photo_flickr_id": "17050729", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48747", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others decided that face painting was the way to go .", "storylet_id": "243738"}], [{"original_text": "As the night wore on, we snuggled together in blankets.", "album_id": "406196", "photo_flickr_id": "17050714", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48747", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the night wore on , we snuggled together in blankets .", "storylet_id": "243739"}], [{"original_text": "Hanging out with the best friends after a long day.", "album_id": "406196", "photo_flickr_id": "17050774", "setting": "last-3-pick-old-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "48748", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hanging out with the best friends after a long day .", "storylet_id": "243740"}], [{"original_text": "Everyone dressed in their best attire for hang out night.", "album_id": "406196", "photo_flickr_id": "17050845", "setting": "last-3-pick-old-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "48748", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone dressed in their best attire for hang out night .", "storylet_id": "243741"}], [{"original_text": "My best friend Marie enjoying her light night.", "album_id": "406196", "photo_flickr_id": "17050681", "setting": "last-3-pick-old-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "48748", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my best friend [female] enjoying her light night .", "storylet_id": "243742"}], [{"original_text": "Rick can't get enough of talking to Janice. ", "album_id": "406196", "photo_flickr_id": "17050729", "setting": "last-3-pick-old-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "48748", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] ca n't get enough of talking to [female] .", "storylet_id": "243743"}], [{"original_text": "Think the crew getting tired and cold. We called it a night and all parted separate ways.", "album_id": "406196", "photo_flickr_id": "17050714", "setting": "last-3-pick-old-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "48748", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "think the crew getting tired and cold . we called it a night and all parted separate ways .", "storylet_id": "243744"}], [{"original_text": "Ive got an interesting group of friends.", "album_id": "406196", "photo_flickr_id": "17050774", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48749", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "ive got an interesting group of friends .", "storylet_id": "243745"}], [{"original_text": "They all think they belong in different time periods.", "album_id": "406196", "photo_flickr_id": "17050845", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48749", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all think they belong in different time periods .", "storylet_id": "243746"}], [{"original_text": "So each weekend they get together and play dress up.", "album_id": "406196", "photo_flickr_id": "17050681", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48749", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so each weekend they get together and play dress up .", "storylet_id": "243747"}], [{"original_text": "I think the goal is to look like there from the 70s. ", "album_id": "406196", "photo_flickr_id": "17050729", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48749", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i think the goal is to look like there from the 70s .", "storylet_id": "243748"}], [{"original_text": "But maybe its just to hang out. ", "album_id": "406196", "photo_flickr_id": "17050714", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48749", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but maybe its just to hang out .", "storylet_id": "243749"}], [{"original_text": "I went to the bar to meet my friends.", "album_id": "533451", "photo_flickr_id": "23165143", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48750", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the bar to meet my friends .", "storylet_id": "243750"}], [{"original_text": "They were already drinking when I got there.", "album_id": "533451", "photo_flickr_id": "23165152", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48750", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were already drinking when i got there .", "storylet_id": "243751"}], [{"original_text": "We had great conversation.", "album_id": "533451", "photo_flickr_id": "23165157", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48750", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had great conversation .", "storylet_id": "243752"}], [{"original_text": "I had a few cigarettes while I was hanging out with them.", "album_id": "533451", "photo_flickr_id": "23186610", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48750", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had a few cigarettes while i was hanging out with them .", "storylet_id": "243753"}], [{"original_text": "I had a great time.", "album_id": "533451", "photo_flickr_id": "23186638", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48750", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time .", "storylet_id": "243754"}], [{"original_text": "She was drinking too much that night. ", "album_id": "533451", "photo_flickr_id": "23186274", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48751", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she was drinking too much that night .", "storylet_id": "243755"}], [{"original_text": "She was completely unaware of the beer foam on her mouth. ", "album_id": "533451", "photo_flickr_id": "23186610", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48751", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was completely unaware of the beer foam on her mouth .", "storylet_id": "243756"}], [{"original_text": "Not wanting to embarrass her he kissed the foam off. ", "album_id": "533451", "photo_flickr_id": "23186631", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48751", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not wanting to embarrass her he kissed the foam off .", "storylet_id": "243757"}], [{"original_text": "He was always protective of her, which was one of the reasons she loved him. ", "album_id": "533451", "photo_flickr_id": "23186637", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48751", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was always protective of her , which was one of the reasons she loved him .", "storylet_id": "243758"}], [{"original_text": "If only he could get her to stop smoking he thought to himself. ", "album_id": "533451", "photo_flickr_id": "23186638", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48751", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "if only he could get her to stop smoking he thought to himself .", "storylet_id": "243759"}], [{"original_text": "All of our friends gathered at the local bar for some fun times. ", "album_id": "533451", "photo_flickr_id": "23165143", "setting": "last-3-pick-old-and-tell", "worker_id": "CCCMYV04WDEXQUQ", "story_id": "48752", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all of our friends gathered at the local bar for some fun times .", "storylet_id": "243760"}], [{"original_text": "David decided to light up a cigarette.", "album_id": "533451", "photo_flickr_id": "23165152", "setting": "last-3-pick-old-and-tell", "worker_id": "CCCMYV04WDEXQUQ", "story_id": "48752", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] decided to light up a cigarette .", "storylet_id": "243761"}], [{"original_text": "David became distracted at the basketball game on television.", "album_id": "533451", "photo_flickr_id": "23165157", "setting": "last-3-pick-old-and-tell", "worker_id": "CCCMYV04WDEXQUQ", "story_id": "48752", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] became distracted at the basketball game on television .", "storylet_id": "243762"}], [{"original_text": "Nancy became so drunk that she missed her mouth while eating cake.", "album_id": "533451", "photo_flickr_id": "23186610", "setting": "last-3-pick-old-and-tell", "worker_id": "CCCMYV04WDEXQUQ", "story_id": "48752", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] became so drunk that she missed her mouth while eating cake .", "storylet_id": "243763"}], [{"original_text": "After wiping off her face from her cake eating mishap, Nancy decided to have a smoke. ", "album_id": "533451", "photo_flickr_id": "23186638", "setting": "last-3-pick-old-and-tell", "worker_id": "CCCMYV04WDEXQUQ", "story_id": "48752", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after wiping off her face from her cake eating mishap , [female] decided to have a smoke .", "storylet_id": "243764"}], [{"original_text": "We hadn't seen Lindsay in awhile but when we did, we started right where we left off. Drinking.", "album_id": "533451", "photo_flickr_id": "23186274", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48753", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had n't seen [female] in awhile but when we did , we started right where we left off . drinking .", "storylet_id": "243765"}], [{"original_text": "She somehow got to eat some cake sometime during the night.", "album_id": "533451", "photo_flickr_id": "23186610", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48753", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she somehow got to eat some cake sometime during the night .", "storylet_id": "243766"}], [{"original_text": "She found her old boyfriend too. They started to make out almost immediately.", "album_id": "533451", "photo_flickr_id": "23186631", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48753", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she found her old boyfriend too . they started to make out almost immediately .", "storylet_id": "243767"}], [{"original_text": "They couldn't keep their hands off each other all night.", "album_id": "533451", "photo_flickr_id": "23186637", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48753", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they could n't keep their hands off each other all night .", "storylet_id": "243768"}], [{"original_text": "As the night wore on, they were less intimate, which was a relief to us.", "album_id": "533451", "photo_flickr_id": "23186638", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48753", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the night wore on , they were less intimate , which was a relief to us .", "storylet_id": "243769"}], [{"original_text": "It was the fight of the festival and what way to start it off then my drinking.", "album_id": "533451", "photo_flickr_id": "23165143", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "48754", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the fight of the festival and what way to start it off then my drinking .", "storylet_id": "243770"}], [{"original_text": "We played various drinking games with our friends.", "album_id": "533451", "photo_flickr_id": "23165152", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "48754", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we played various drinking games with our friends .", "storylet_id": "243771"}], [{"original_text": "By the end of it we were pretty drunk.", "album_id": "533451", "photo_flickr_id": "23165157", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "48754", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "by the end of it we were pretty drunk .", "storylet_id": "243772"}], [{"original_text": "Some of us didn't really come out of it to well.", "album_id": "533451", "photo_flickr_id": "23186610", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "48754", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of us did n't really come out of it to well .", "storylet_id": "243773"}], [{"original_text": "After sobering up we went on to other festival activities.", "album_id": "533451", "photo_flickr_id": "23186638", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "48754", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after sobering up we went on to other festival activities .", "storylet_id": "243774"}], [{"original_text": "All over the world people protest as a way to get their message out no matter how wrong or hateful it may be.", "album_id": "531768", "photo_flickr_id": "23054290", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "48755", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all over the world people protest as a way to get their message out no matter how wrong or hateful it may be .", "storylet_id": "243775"}], [{"original_text": "Here is an older poster of people protesting the G8 Summit and they are calling to an end to corporate power.", "album_id": "531768", "photo_flickr_id": "23054594", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "48755", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is an older poster of people protesting the g8 summit and they are calling to an end to corporate power .", "storylet_id": "243776"}], [{"original_text": "Here is another poster where people somewhere in the world are protesting the dropping of bombs as a solution.", "album_id": "531768", "photo_flickr_id": "23055349", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "48755", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is another poster where people somewhere in the world are protesting the dropping of bombs as a solution .", "storylet_id": "243777"}], [{"original_text": "In still another part of the world Trade Justice signs are being seen like in this picture.", "album_id": "531768", "photo_flickr_id": "23056709", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "48755", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in still another part of the world trade [male] signs are being seen like in this picture .", "storylet_id": "243778"}], [{"original_text": "The lists of groups and places protesting is endless from Europe to North America and all across the globe it will never end as long as people are not happy with the situation they are in.", "album_id": "531768", "photo_flickr_id": "23062526", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "48755", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lists of groups and places protesting is endless from location to location location and all across the globe it will never end as long as people are not happy with the situation they are in .", "storylet_id": "243779"}], [{"original_text": "My friend kept pulling on her ears making faces.", "album_id": "531768", "photo_flickr_id": "23052844", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "48756", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend kept pulling on her ears making faces .", "storylet_id": "243780"}], [{"original_text": "We had a lot of food for everyone that night.", "album_id": "531768", "photo_flickr_id": "23053120", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "48756", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a lot of food for everyone that night .", "storylet_id": "243781"}], [{"original_text": "Everyone kept kissing my friend.", "album_id": "531768", "photo_flickr_id": "23054290", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "48756", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone kept kissing my friend .", "storylet_id": "243782"}], [{"original_text": "We played a drinking game.", "album_id": "531768", "photo_flickr_id": "23057434", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "48756", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we played a drinking game .", "storylet_id": "243783"}], [{"original_text": "We finished all the beer.", "album_id": "531768", "photo_flickr_id": "23065770", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "48756", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finished all the beer .", "storylet_id": "243784"}], [{"original_text": "It was time to go to the anti-president parade.", "album_id": "531768", "photo_flickr_id": "23052844", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "48757", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was time to go to the anti-president parade .", "storylet_id": "243785"}], [{"original_text": "There was just so much hate around.", "album_id": "531768", "photo_flickr_id": "23053120", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "48757", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was just so much hate around .", "storylet_id": "243786"}], [{"original_text": "Look at this horrible Bush poster.", "album_id": "531768", "photo_flickr_id": "23054290", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "48757", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at this horrible bush poster .", "storylet_id": "243787"}], [{"original_text": "Even this little girl was embarassed.", "album_id": "531768", "photo_flickr_id": "23057434", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "48757", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even this little girl was embarassed .", "storylet_id": "243788"}], [{"original_text": "People were just confused at what to do.", "album_id": "531768", "photo_flickr_id": "23065770", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "48757", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people were just confused at what to do .", "storylet_id": "243789"}], [{"original_text": "This is a sign of a socialist.", "album_id": "531768", "photo_flickr_id": "23054290", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48758", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a sign of a socialist .", "storylet_id": "243790"}], [{"original_text": "This is a sign of the G8 summit.", "album_id": "531768", "photo_flickr_id": "23054594", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48758", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a sign of the g8 summit .", "storylet_id": "243791"}], [{"original_text": "This is a picture of a sign.", "album_id": "531768", "photo_flickr_id": "23055349", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48758", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of a sign .", "storylet_id": "243792"}], [{"original_text": "This is a picture of a protest.", "album_id": "531768", "photo_flickr_id": "23056709", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48758", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of a protest .", "storylet_id": "243793"}], [{"original_text": "This is a picture of a socialist movement.", "album_id": "531768", "photo_flickr_id": "23062526", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48758", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a socialist movement .", "storylet_id": "243794"}], [{"original_text": "I took some photos of the signs at the demonstration.", "album_id": "531768", "photo_flickr_id": "23054290", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48759", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took some photos of the signs at the demonstration .", "storylet_id": "243795"}], [{"original_text": "This sign had a strong message.", "album_id": "531768", "photo_flickr_id": "23054594", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48759", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this sign had a strong message .", "storylet_id": "243796"}], [{"original_text": "This sign expressed a common theme here at the demonstration.", "album_id": "531768", "photo_flickr_id": "23055349", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48759", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this sign expressed a common theme here at the demonstration .", "storylet_id": "243797"}], [{"original_text": "Hundreds gathered for this peaceful demonstration. ", "album_id": "531768", "photo_flickr_id": "23056709", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48759", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "hundreds gathered for this peaceful demonstration .", "storylet_id": "243798"}], [{"original_text": "Scotland had a share of demonstrators represented as well.", "album_id": "531768", "photo_flickr_id": "23062526", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48759", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "location had a share of demonstrators represented as well .", "storylet_id": "243799"}], [{"original_text": "Nick showed us his new tat before we headed out for the night. Cool.", "album_id": "533977", "photo_flickr_id": "23168597", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "48760", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] showed us his new tat before we headed out for the night . cool .", "storylet_id": "243800"}], [{"original_text": "The jazz band was half way through their set when we arrived.", "album_id": "533977", "photo_flickr_id": "23168771", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "48760", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the jazz band was half way through their set when we arrived .", "storylet_id": "243801"}], [{"original_text": "The lights were cool...or just too much to drink.", "album_id": "533977", "photo_flickr_id": "23168841", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "48760", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lights were cool ... or just too much to drink .", "storylet_id": "243802"}], [{"original_text": "Spotted these two trying to get it on in the bathroom.", "album_id": "533977", "photo_flickr_id": "23168954", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "48760", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "spotted these two trying to get it on in the bathroom .", "storylet_id": "243803"}], [{"original_text": "On the way home, we ran into a detour. Will take longer getting home.", "album_id": "533977", "photo_flickr_id": "23473996", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "48760", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the way home , we ran into a detour . [male] take longer getting home .", "storylet_id": "243804"}], [{"original_text": "I spent yesterday relaxing at home.", "album_id": "533977", "photo_flickr_id": "23168564", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48761", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spent yesterday relaxing at home .", "storylet_id": "243805"}], [{"original_text": "I smoked all of my cigarettes.", "album_id": "533977", "photo_flickr_id": "23168670", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48761", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i smoked all of my cigarettes .", "storylet_id": "243806"}], [{"original_text": "I also bought a new chandelier.", "album_id": "533977", "photo_flickr_id": "23168680", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48761", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also bought a new chandelier .", "storylet_id": "243807"}], [{"original_text": "My dog was relaxing with me.", "album_id": "533977", "photo_flickr_id": "23168704", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48761", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my dog was relaxing with me .", "storylet_id": "243808"}], [{"original_text": "After a few hours I left to go to a bar.", "album_id": "533977", "photo_flickr_id": "23168799", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48761", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a few hours i left to go to a bar .", "storylet_id": "243809"}], [{"original_text": "We visited with some friends. One of them showed me his tattoos. ", "album_id": "533977", "photo_flickr_id": "23168597", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "48762", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited with some friends . one of them showed me his tattoos .", "storylet_id": "243810"}], [{"original_text": "We went to a bar and watched some bands.", "album_id": "533977", "photo_flickr_id": "23168771", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "48762", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to a bar and watched some bands .", "storylet_id": "243811"}], [{"original_text": "The decor was brilliant.", "album_id": "533977", "photo_flickr_id": "23168841", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "48762", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the decor was brilliant .", "storylet_id": "243812"}], [{"original_text": "My husband had a great time too.", "album_id": "533977", "photo_flickr_id": "23168954", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "48762", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my husband had a great time too .", "storylet_id": "243813"}], [{"original_text": "The walk home wasn't as much fun.", "album_id": "533977", "photo_flickr_id": "23473996", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "48762", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the walk home was n't as much fun .", "storylet_id": "243814"}], [{"original_text": "He showed off his amazing, but slightly creepy tattoos right after he got to the party.", "album_id": "533977", "photo_flickr_id": "23168597", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "48763", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he showed off his amazing , but slightly creepy tattoos right after he got to the party .", "storylet_id": "243815"}], [{"original_text": "The live entertainment they had hired was great.", "album_id": "533977", "photo_flickr_id": "23168771", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "48763", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the live entertainment they had hired was great .", "storylet_id": "243816"}], [{"original_text": "The lights at the party were strange, but mesmerizing.", "album_id": "533977", "photo_flickr_id": "23168841", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "48763", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lights at the party were strange , but mesmerizing .", "storylet_id": "243817"}], [{"original_text": "He caught her in a corner and begged for a kiss.", "album_id": "533977", "photo_flickr_id": "23168954", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "48763", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he caught her in a corner and begged for a kiss .", "storylet_id": "243818"}], [{"original_text": "After the party, they were startled to discover that there was something going on with the police involved.", "album_id": "533977", "photo_flickr_id": "23473996", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "48763", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the party , they were startled to discover that there was something going on with the police involved .", "storylet_id": "243819"}], [{"original_text": "Gary showing off his tattoos to the girls. ", "album_id": "533977", "photo_flickr_id": "23168597", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48764", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] showing off his tattoos to the girls .", "storylet_id": "243820"}], [{"original_text": "Henry sings another original ballad.", "album_id": "533977", "photo_flickr_id": "23168771", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48764", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] sings another original ballad .", "storylet_id": "243821"}], [{"original_text": "The lights in the restaurant gave off a friendly glow.", "album_id": "533977", "photo_flickr_id": "23168841", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48764", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lights in the restaurant gave off a friendly glow .", "storylet_id": "243822"}], [{"original_text": "Sally and Eric get caught sneaking a kiss!", "album_id": "533977", "photo_flickr_id": "23168954", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48764", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and [male] get caught sneaking a kiss !", "storylet_id": "243823"}], [{"original_text": "We were surprised to see the street had been closed.", "album_id": "533977", "photo_flickr_id": "23473996", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "48764", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were surprised to see the street had been closed .", "storylet_id": "243824"}], [{"original_text": "Our family loves to play dress up.", "album_id": "71769", "photo_flickr_id": "2871013", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "48765", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family loves to play dress up .", "storylet_id": "243825"}], [{"original_text": "It's a great to pass the time.", "album_id": "71769", "photo_flickr_id": "2870959", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "48765", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's a great to pass the time .", "storylet_id": "243826"}], [{"original_text": "We have a lot of different things to try.", "album_id": "71769", "photo_flickr_id": "2870759", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "48765", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we have a lot of different things to try .", "storylet_id": "243827"}], [{"original_text": "The kids really enjoy it.", "album_id": "71769", "photo_flickr_id": "2870734", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "48765", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids really enjoy it .", "storylet_id": "243828"}], [{"original_text": "We should do it again sometime.", "album_id": "71769", "photo_flickr_id": "2870652", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "48765", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we should do it again sometime .", "storylet_id": "243829"}], [{"original_text": "Some friends had a theme party for Halloween. ", "album_id": "71769", "photo_flickr_id": "2870959", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "48766", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some friends had a theme party for halloween .", "storylet_id": "243830"}], [{"original_text": "Everyone dressed up in costumes and enjoyed time together.", "album_id": "71769", "photo_flickr_id": "2870942", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "48766", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone dressed up in costumes and enjoyed time together .", "storylet_id": "243831"}], [{"original_text": "He played the part of a sheriff from the old west.", "album_id": "71769", "photo_flickr_id": "2870893", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "48766", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he played the part of a sheriff from the old west .", "storylet_id": "243832"}], [{"original_text": "Boas and gloves were popular.", "album_id": "71769", "photo_flickr_id": "2870795", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "48766", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "boas and gloves were popular .", "storylet_id": "243833"}], [{"original_text": "This little guy wasn't in costume, but he did get to play cops and robbers.", "album_id": "71769", "photo_flickr_id": "2870402", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "48766", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this little guy was n't in costume , but he did get to play cops and robbers .", "storylet_id": "243834"}], [{"original_text": "He liked to think of himself as Don Draper. ", "album_id": "71769", "photo_flickr_id": "2871013", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48767", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he liked to think of himself as [male] draper .", "storylet_id": "243835"}], [{"original_text": "She KNEW he was no Don Draper. ", "album_id": "71769", "photo_flickr_id": "2870959", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48767", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she knew he was no [male] draper .", "storylet_id": "243836"}], [{"original_text": "She put on the evening gloves he had given her. ", "album_id": "71769", "photo_flickr_id": "2870759", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48767", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she put on the evening gloves he had given her .", "storylet_id": "243837"}], [{"original_text": "The children enjoyed the hot chocolate around the Christmas Tree. ", "album_id": "71769", "photo_flickr_id": "2870734", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48767", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the children enjoyed the hot chocolate around the christmas tree .", "storylet_id": "243838"}], [{"original_text": "After the children had all gone to bed, they tried to smoke but found it disgusting. ", "album_id": "71769", "photo_flickr_id": "2870652", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48767", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the children had all gone to bed , they tried to smoke but found it disgusting .", "storylet_id": "243839"}], [{"original_text": "The guests had arrived at the reading of their eccentric relative's will. It was late in the evening and nerves are on edge.", "album_id": "71769", "photo_flickr_id": "2870959", "setting": "last-3-pick-old-and-tell", "worker_id": "05I538E7E4DKXCP", "story_id": "48768", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guests had arrived at the reading of their eccentric relative 's will . it was late in the evening and nerves are on edge .", "storylet_id": "243840"}], [{"original_text": "They all regard each other with suspicion. One guest had already died under suspicious circumstances.", "album_id": "71769", "photo_flickr_id": "2870942", "setting": "last-3-pick-old-and-tell", "worker_id": "05I538E7E4DKXCP", "story_id": "48768", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all regard each other with suspicion . one guest had already died under suspicious circumstances .", "storylet_id": "243841"}], [{"original_text": "The deputy was stumped, he knew there was a murderer but could not determine who.", "album_id": "71769", "photo_flickr_id": "2870893", "setting": "last-3-pick-old-and-tell", "worker_id": "05I538E7E4DKXCP", "story_id": "48768", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the deputy was stumped , he knew there was a murderer but could not determine who .", "storylet_id": "243842"}], [{"original_text": "Everyone professed innocence . . . indeed, some were not sure any foul play was afoot!", "album_id": "71769", "photo_flickr_id": "2870795", "setting": "last-3-pick-old-and-tell", "worker_id": "05I538E7E4DKXCP", "story_id": "48768", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone professed innocence . . . indeed , some were not sure any foul play was afoot !", "storylet_id": "243843"}], [{"original_text": "Revealed! The identity of the assassin stunned them all!", "album_id": "71769", "photo_flickr_id": "2870402", "setting": "last-3-pick-old-and-tell", "worker_id": "05I538E7E4DKXCP", "story_id": "48768", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "revealed ! the identity of the assassin stunned them all !", "storylet_id": "243844"}], [{"original_text": "Janice was unhappy with her gift.", "album_id": "71769", "photo_flickr_id": "2870959", "setting": "last-3-pick-old-and-tell", "worker_id": "FQC7Q2MAJW4AZ99", "story_id": "48769", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was unhappy with her gift .", "storylet_id": "243845"}], [{"original_text": "Bob poured himself another glass of wine.", "album_id": "71769", "photo_flickr_id": "2870942", "setting": "last-3-pick-old-and-tell", "worker_id": "FQC7Q2MAJW4AZ99", "story_id": "48769", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] poured himself another glass of wine .", "storylet_id": "243846"}], [{"original_text": "Dave was also enjoying the wine.", "album_id": "71769", "photo_flickr_id": "2870893", "setting": "last-3-pick-old-and-tell", "worker_id": "FQC7Q2MAJW4AZ99", "story_id": "48769", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was also enjoying the wine .", "storylet_id": "243847"}], [{"original_text": "Tina loved the new gloves she received.", "album_id": "71769", "photo_flickr_id": "2870795", "setting": "last-3-pick-old-and-tell", "worker_id": "FQC7Q2MAJW4AZ99", "story_id": "48769", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] loved the new gloves she received .", "storylet_id": "243848"}], [{"original_text": "At the end of the day Chris played with his new toy gun.", "album_id": "71769", "photo_flickr_id": "2870402", "setting": "last-3-pick-old-and-tell", "worker_id": "FQC7Q2MAJW4AZ99", "story_id": "48769", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day [male] played with his new toy gun .", "storylet_id": "243849"}], [{"original_text": "A host is getting ready to have a party.", "album_id": "72083", "photo_flickr_id": "2883685", "setting": "first-2-pick-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "48770", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a host is getting ready to have a party .", "storylet_id": "243850"}], [{"original_text": "Looks like this is going to be a really big party.", "album_id": "72083", "photo_flickr_id": "2883780", "setting": "first-2-pick-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "48770", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "looks like this is going to be a really big party .", "storylet_id": "243851"}], [{"original_text": "The guests are starting to arrive.", "album_id": "72083", "photo_flickr_id": "2883859", "setting": "first-2-pick-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "48770", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guests are starting to arrive .", "storylet_id": "243852"}], [{"original_text": "The party's in full swing and everybody is having a great time.", "album_id": "72083", "photo_flickr_id": "2884191", "setting": "first-2-pick-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "48770", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the party 's in full swing and everybody is having a great time .", "storylet_id": "243853"}], [{"original_text": "This will certainly be a party to remember!", "album_id": "72083", "photo_flickr_id": "2884490", "setting": "first-2-pick-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "48770", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this will certainly be a party to remember !", "storylet_id": "243854"}], [{"original_text": "The list of the drinks to buy for the party.", "album_id": "72083", "photo_flickr_id": "2883641", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48771", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the list of the drinks to buy for the party .", "storylet_id": "243855"}], [{"original_text": "Got several bottles of liquors.", "album_id": "72083", "photo_flickr_id": "2883685", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48771", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "got several bottles of liquors .", "storylet_id": "243856"}], [{"original_text": "As well as cans of beers. ", "album_id": "72083", "photo_flickr_id": "2883706", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48771", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as well as cans of beers .", "storylet_id": "243857"}], [{"original_text": "Smoking hookah and partying. ", "album_id": "72083", "photo_flickr_id": "2884218", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48771", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "smoking hookah and partying .", "storylet_id": "243858"}], [{"original_text": "Having a good time with his girlfriend.", "album_id": "72083", "photo_flickr_id": "2884490", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "48771", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "having a good time with his girlfriend .", "storylet_id": "243859"}], [{"original_text": "My brother went out to buy all the liquor for his roommate's birthday. ", "album_id": "72083", "photo_flickr_id": "2883641", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48772", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brother went out to buy all the liquor for his roommate 's birthday .", "storylet_id": "243860"}], [{"original_text": "He came back with so much alcohol. ", "album_id": "72083", "photo_flickr_id": "2883685", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48772", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he came back with so much alcohol .", "storylet_id": "243861"}], [{"original_text": "His best friend brought beer for the beer drinkers. ", "album_id": "72083", "photo_flickr_id": "2883706", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48772", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his best friend brought beer for the beer drinkers .", "storylet_id": "243862"}], [{"original_text": "They nixed the no smoking in the house rule for the night. ", "album_id": "72083", "photo_flickr_id": "2884218", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48772", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they nixed the no smoking in the house rule for the night .", "storylet_id": "243863"}], [{"original_text": "His roommate finally showed up with his girlfriend, who was in on the surprise. ", "album_id": "72083", "photo_flickr_id": "2884490", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48772", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his roommate finally showed up with his girlfriend , who was in on the surprise .", "storylet_id": "243864"}], [{"original_text": "We were proud of the alcohol we had next to the window.", "album_id": "72083", "photo_flickr_id": "2883685", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48773", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were proud of the alcohol we had next to the window .", "storylet_id": "243865"}], [{"original_text": "We bought a lot of alcohol from the grocery store.", "album_id": "72083", "photo_flickr_id": "2883780", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48773", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we bought a lot of alcohol from the grocery store .", "storylet_id": "243866"}], [{"original_text": "We were preparing for the night.", "album_id": "72083", "photo_flickr_id": "2883859", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48773", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were preparing for the night .", "storylet_id": "243867"}], [{"original_text": "The guests enjoyed the alcohol we brought.", "album_id": "72083", "photo_flickr_id": "2884191", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48773", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guests enjoyed the alcohol we brought .", "storylet_id": "243868"}], [{"original_text": "Lastly, this couple got intimate at night.", "album_id": "72083", "photo_flickr_id": "2884490", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48773", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , this couple got intimate at night .", "storylet_id": "243869"}], [{"original_text": "He ran down the stairs yelling \"I found it!\" offering up the missing document.", "album_id": "72083", "photo_flickr_id": "2883641", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "48774", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he ran down the stairs yelling `` i found it ! '' offering up the missing document .", "storylet_id": "243870"}], [{"original_text": "It was time to celebrate now that the important paper had been found. He presented an array of liquor bottles.", "album_id": "72083", "photo_flickr_id": "2883685", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "48774", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was time to celebrate now that the important paper had been found . he presented an array of liquor bottles .", "storylet_id": "243871"}], [{"original_text": "The beer delivery was finally there. The party could get started.", "album_id": "72083", "photo_flickr_id": "2883706", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "48774", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beer delivery was finally there . the party could get started .", "storylet_id": "243872"}], [{"original_text": "He wondered if anyone would be upset if he told them he really didn't like being enveloped in smoke all that much.", "album_id": "72083", "photo_flickr_id": "2884218", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "48774", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he wondered if anyone would be upset if he told them he really did n't like being enveloped in smoke all that much .", "storylet_id": "243873"}], [{"original_text": "They were feeling no pain, having sampled a bit from every one of the liquor bottles on the window sill.", "album_id": "72083", "photo_flickr_id": "2884490", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "48774", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were feeling no pain , having sampled a bit from every one of the liquor bottles on the window sill .", "storylet_id": "243874"}], [{"original_text": "Everybody was excited about the concert.", "album_id": "72157623005606487", "photo_flickr_id": "4240976437", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "48775", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everybody was excited about the concert .", "storylet_id": "243875"}], [{"original_text": "The venue was crowded with people.", "album_id": "72157623005606487", "photo_flickr_id": "4241749786", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "48775", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the venue was crowded with people .", "storylet_id": "243876"}], [{"original_text": "There were even booths set up to buy food.", "album_id": "72157623005606487", "photo_flickr_id": "4240974381", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "48775", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were even booths set up to buy food .", "storylet_id": "243877"}], [{"original_text": "When the singer come out, everybody cheered.", "album_id": "72157623005606487", "photo_flickr_id": "4241773974", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "48775", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the singer come out , everybody cheered .", "storylet_id": "243878"}], [{"original_text": "The performer was so happy to see his fans, so he smiled brightly.", "album_id": "72157623005606487", "photo_flickr_id": "4241779642", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "48775", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the performer was so happy to see his fans , so he smiled brightly .", "storylet_id": "243879"}], [{"original_text": "The holiday season was in full swing.", "album_id": "72157623005606487", "photo_flickr_id": "4240980379", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48776", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the holiday season was in full swing .", "storylet_id": "243880"}], [{"original_text": "There were many people waiting for the party.", "album_id": "72157623005606487", "photo_flickr_id": "4240989507", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48776", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many people waiting for the party .", "storylet_id": "243881"}], [{"original_text": "June was shy but exited.", "album_id": "72157623005606487", "photo_flickr_id": "4240994527", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48776", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] was shy but exited .", "storylet_id": "243882"}], [{"original_text": "She was waiting for Bing to show.", "album_id": "72157623005606487", "photo_flickr_id": "4241777018", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48776", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was waiting for bing to show .", "storylet_id": "243883"}], [{"original_text": "Bing was a local celebrity.", "album_id": "72157623005606487", "photo_flickr_id": "4241779642", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48776", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "bing was a local celebrity .", "storylet_id": "243884"}], [{"original_text": "Here is my ticket to the concert.", "album_id": "72157623005606487", "photo_flickr_id": "4240976437", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48777", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is my ticket to the concert .", "storylet_id": "243885"}], [{"original_text": "Here are a few of us walking to our seats.", "album_id": "72157623005606487", "photo_flickr_id": "4241749786", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48777", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here are a few of us walking to our seats .", "storylet_id": "243886"}], [{"original_text": "Getting something to eat before it starts.", "album_id": "72157623005606487", "photo_flickr_id": "4240974381", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48777", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "getting something to eat before it starts .", "storylet_id": "243887"}], [{"original_text": "Here is who we have been waiting for.", "album_id": "72157623005606487", "photo_flickr_id": "4241773974", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48777", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is who we have been waiting for .", "storylet_id": "243888"}], [{"original_text": "The best singer of all time about to get on stage.", "album_id": "72157623005606487", "photo_flickr_id": "4241779642", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "48777", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best singer of all time about to get on stage .", "storylet_id": "243889"}], [{"original_text": "I attended this street party in China. ", "album_id": "72157623005606487", "photo_flickr_id": "4240976437", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48778", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i attended this street party in location .", "storylet_id": "243890"}], [{"original_text": "The place was crowded with people and ladders. ", "album_id": "72157623005606487", "photo_flickr_id": "4241749786", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48778", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the place was crowded with people and ladders .", "storylet_id": "243891"}], [{"original_text": "The street food had a lot to be desired however, didn't even get buns with the hotdogs. ", "album_id": "72157623005606487", "photo_flickr_id": "4240974381", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48778", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the street food had a lot to be desired however , did n't even get buns with the hotdogs .", "storylet_id": "243892"}], [{"original_text": "The reason for this party was because of an Asian boyband. ", "album_id": "72157623005606487", "photo_flickr_id": "4241773974", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48778", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the reason for this party was because of an asian boyband .", "storylet_id": "243893"}], [{"original_text": "All the girls fangirled for these guys as they walked down the street singing. ", "album_id": "72157623005606487", "photo_flickr_id": "4241779642", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "48778", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the girls fangirled for these guys as they walked down the street singing .", "storylet_id": "243894"}], [{"original_text": "I was the VIP at a chinese concert today.", "album_id": "72157623005606487", "photo_flickr_id": "4240976437", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "48779", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was the vip at a chinese concert today .", "storylet_id": "243895"}], [{"original_text": "There were many people on the streets.", "album_id": "72157623005606487", "photo_flickr_id": "4241749786", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "48779", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many people on the streets .", "storylet_id": "243896"}], [{"original_text": "Some people even brought grills to make food.", "album_id": "72157623005606487", "photo_flickr_id": "4240974381", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "48779", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people even brought grills to make food .", "storylet_id": "243897"}], [{"original_text": "The celebrity finally came out.", "album_id": "72157623005606487", "photo_flickr_id": "4241773974", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "48779", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the celebrity finally came out .", "storylet_id": "243898"}], [{"original_text": "Everyone had a great time.", "album_id": "72157623005606487", "photo_flickr_id": "4241779642", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "48779", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time .", "storylet_id": "243899"}], [{"original_text": "We were not sure what to expect from our trip to Thailand.", "album_id": "72157623010818465", "photo_flickr_id": "4242249380", "setting": "first-2-pick-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "48780", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were not sure what to expect from our trip to location .", "storylet_id": "243900"}], [{"original_text": "We explored a bit for ourselves and found some areas where there was a lot of poverty.", "album_id": "72157623010818465", "photo_flickr_id": "4242005292", "setting": "first-2-pick-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "48780", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we explored a bit for ourselves and found some areas where there was a lot of poverty .", "storylet_id": "243901"}], [{"original_text": "We also met lots of locals who were quirky and fun.", "album_id": "72157623010818465", "photo_flickr_id": "4241577091", "setting": "first-2-pick-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "48780", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also met lots of locals who were quirky and fun .", "storylet_id": "243902"}], [{"original_text": "We found a lot of beautiful architecture and art. A lot of it was religious.", "album_id": "72157623010818465", "photo_flickr_id": "4241135097", "setting": "first-2-pick-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "48780", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found a lot of beautiful architecture and art . a lot of it was religious .", "storylet_id": "243903"}], [{"original_text": "We decided that the next time we visited we would pay more attention to the history of Thailand.", "album_id": "72157623010818465", "photo_flickr_id": "4241946522", "setting": "first-2-pick-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "48780", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided that the next time we visited we would pay more attention to the history of location .", "storylet_id": "243904"}], [{"original_text": "During their trip to Thailand, the couple saw many Buddah statues surrounding the markets.", "album_id": "72157623010818465", "photo_flickr_id": "4241985748", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "48781", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during their trip to location , the couple saw many buddah statues surrounding the markets .", "storylet_id": "243905"}], [{"original_text": "The markets themselves were filled with many people selling many different things.", "album_id": "72157623010818465", "photo_flickr_id": "4241455859", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "48781", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the markets themselves were filled with many people selling many different things .", "storylet_id": "243906"}], [{"original_text": "The streets were filled with many people.", "album_id": "72157623010818465", "photo_flickr_id": "4242293664", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "48781", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the streets were filled with many people .", "storylet_id": "243907"}], [{"original_text": "You could even buy a lot of fun toys and accessories.", "album_id": "72157623010818465", "photo_flickr_id": "4241577091", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "48781", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you could even buy a lot of fun toys and accessories .", "storylet_id": "243908"}], [{"original_text": "There was even a man selling fresh fish that he caught himself.", "album_id": "72157623010818465", "photo_flickr_id": "4241594539", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "48781", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was even a man selling fresh fish that he caught himself .", "storylet_id": "243909"}], [{"original_text": "I went on vacation with my wife yesterday.", "album_id": "72157623010818465", "photo_flickr_id": "4242249380", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48782", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on vacation with my wife yesterday .", "storylet_id": "243910"}], [{"original_text": "There were a lot of things at the market.", "album_id": "72157623010818465", "photo_flickr_id": "4242005292", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48782", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of things at the market .", "storylet_id": "243911"}], [{"original_text": "I took many pictures.", "album_id": "72157623010818465", "photo_flickr_id": "4241577091", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48782", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took many pictures .", "storylet_id": "243912"}], [{"original_text": "I bought some statues while I was there.", "album_id": "72157623010818465", "photo_flickr_id": "4241135097", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48782", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i bought some statues while i was there .", "storylet_id": "243913"}], [{"original_text": "They were very expensive.", "album_id": "72157623010818465", "photo_flickr_id": "4241946522", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48782", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were very expensive .", "storylet_id": "243914"}], [{"original_text": "Our visit overseas,", "album_id": "72157623010818465", "photo_flickr_id": "4242249380", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48783", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our visit overseas ,", "storylet_id": "243915"}], [{"original_text": "led us to the town market, ", "album_id": "72157623010818465", "photo_flickr_id": "4242005292", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48783", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "led us to the town market ,", "storylet_id": "243916"}], [{"original_text": "where another day, ", "album_id": "72157623010818465", "photo_flickr_id": "4241577091", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48783", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "where another day ,", "storylet_id": "243917"}], [{"original_text": "we discovered many new things.", "album_id": "72157623010818465", "photo_flickr_id": "4241135097", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48783", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we discovered many new things .", "storylet_id": "243918"}], [{"original_text": "The religious statues being our favorite.", "album_id": "72157623010818465", "photo_flickr_id": "4241946522", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "48783", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the religious statues being our favorite .", "storylet_id": "243919"}], [{"original_text": "A nice couple having fun on vacation in a foreign country. ", "album_id": "72157623010818465", "photo_flickr_id": "4242249380", "setting": "last-3-pick-old-and-tell", "worker_id": "11260IVR2OGF0N7", "story_id": "48784", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a nice couple having fun on vacation in a foreign country .", "storylet_id": "243920"}], [{"original_text": "An assortment of items looking in a vintage state. ", "album_id": "72157623010818465", "photo_flickr_id": "4242005292", "setting": "last-3-pick-old-and-tell", "worker_id": "11260IVR2OGF0N7", "story_id": "48784", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "an assortment of items looking in a vintage state .", "storylet_id": "243921"}], [{"original_text": "A happy gentleman having fun with a party toy. ", "album_id": "72157623010818465", "photo_flickr_id": "4241577091", "setting": "last-3-pick-old-and-tell", "worker_id": "11260IVR2OGF0N7", "story_id": "48784", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a happy gentleman having fun with a party toy .", "storylet_id": "243922"}], [{"original_text": "Looking through a window you can see a beautiful figure of a golden statue. ", "album_id": "72157623010818465", "photo_flickr_id": "4241135097", "setting": "last-3-pick-old-and-tell", "worker_id": "11260IVR2OGF0N7", "story_id": "48784", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "looking through a window you can see a beautiful figure of a golden statue .", "storylet_id": "243923"}], [{"original_text": "The profile of a vintage golden statue. ", "album_id": "72157623010818465", "photo_flickr_id": "4241946522", "setting": "last-3-pick-old-and-tell", "worker_id": "11260IVR2OGF0N7", "story_id": "48784", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the profile of a vintage golden statue .", "storylet_id": "243924"}], [{"original_text": "I went to the concert last night.", "album_id": "72157623133202486", "photo_flickr_id": "4243136352", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48785", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the concert last night .", "storylet_id": "243925"}], [{"original_text": "There were a lot of band members there.", "album_id": "72157623133202486", "photo_flickr_id": "4243136776", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48785", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of band members there .", "storylet_id": "243926"}], [{"original_text": "They were all very well dressed.", "album_id": "72157623133202486", "photo_flickr_id": "4243137664", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48785", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were all very well dressed .", "storylet_id": "243927"}], [{"original_text": "They had practiced for a long time.", "album_id": "72157623133202486", "photo_flickr_id": "4243138084", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48785", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had practiced for a long time .", "storylet_id": "243928"}], [{"original_text": "I had a great time at the concert.", "album_id": "72157623133202486", "photo_flickr_id": "4242366275", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48785", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time at the concert .", "storylet_id": "243929"}], [{"original_text": "The Jewish rock band started playing.", "album_id": "72157623133202486", "photo_flickr_id": "4242363169", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "48786", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the jewish rock band started playing .", "storylet_id": "243930"}], [{"original_text": "They brought in their Kosher drum set.", "album_id": "72157623133202486", "photo_flickr_id": "4243136776", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "48786", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they brought in their kosher drum set .", "storylet_id": "243931"}], [{"original_text": "They sang songs about Buffalo Soldiers.", "album_id": "72157623133202486", "photo_flickr_id": "4242364459", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "48786", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they sang songs about organization organization .", "storylet_id": "243932"}], [{"original_text": "Then they laid down some riffs.", "album_id": "72157623133202486", "photo_flickr_id": "4243138084", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "48786", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they laid down some riffs .", "storylet_id": "243933"}], [{"original_text": "The Jewish band rocked the socks off the house.", "album_id": "72157623133202486", "photo_flickr_id": "4243138496", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "48786", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the jewish band rocked the socks off the house .", "storylet_id": "243934"}], [{"original_text": "Two friend play guitar at the party.", "album_id": "72157623133202486", "photo_flickr_id": "4242363169", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48787", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two friend play guitar at the party .", "storylet_id": "243935"}], [{"original_text": "Banging out a beat on the drums.", "album_id": "72157623133202486", "photo_flickr_id": "4243136776", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48787", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "banging out a beat on the drums .", "storylet_id": "243936"}], [{"original_text": "Strumming the guitar for the fans.", "album_id": "72157623133202486", "photo_flickr_id": "4242364459", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48787", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "strumming the guitar for the fans .", "storylet_id": "243937"}], [{"original_text": "Three friends have a jam session.", "album_id": "72157623133202486", "photo_flickr_id": "4243138084", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48787", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "three friends have a jam session .", "storylet_id": "243938"}], [{"original_text": "The man is doing his big guitar solo.", "album_id": "72157623133202486", "photo_flickr_id": "4243138496", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48787", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the man is doing his big guitar solo .", "storylet_id": "243939"}], [{"original_text": "My friend and I went to a charity concert to benefit kids in need. ", "album_id": "72157623133202486", "photo_flickr_id": "4242363169", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48788", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend and i went to a charity concert to benefit kids in need .", "storylet_id": "243940"}], [{"original_text": "A lot of different artist played and donated their time and talent to the charity. ", "album_id": "72157623133202486", "photo_flickr_id": "4243136776", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48788", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of different artist played and donated their time and talent to the charity .", "storylet_id": "243941"}], [{"original_text": "The guitars are always my favorite. ", "album_id": "72157623133202486", "photo_flickr_id": "4242364459", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48788", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guitars are always my favorite .", "storylet_id": "243942"}], [{"original_text": "Then everyone came out and played together. It was amazing. ", "album_id": "72157623133202486", "photo_flickr_id": "4243138084", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48788", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then everyone came out and played together . it was amazing .", "storylet_id": "243943"}], [{"original_text": "This was my favorite singer/guitar player. He was awesome!! ", "album_id": "72157623133202486", "photo_flickr_id": "4243138496", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48788", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was my favorite singer/guitar player . he was awesome ! !", "storylet_id": "243944"}], [{"original_text": "My favorite band has a top-tier guitarist. ", "album_id": "72157623133202486", "photo_flickr_id": "4243136352", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48789", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my favorite band has a top-tier guitarist .", "storylet_id": "243945"}], [{"original_text": "To me, the band's drummer is even better.", "album_id": "72157623133202486", "photo_flickr_id": "4243136776", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48789", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to me , the band 's drummer is even better .", "storylet_id": "243946"}], [{"original_text": "He can handle at least five different styles of drumming.", "album_id": "72157623133202486", "photo_flickr_id": "4243137664", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48789", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he can handle at least five different styles of drumming .", "storylet_id": "243947"}], [{"original_text": "The band wouldn't be the same though without the contributions of every member.", "album_id": "72157623133202486", "photo_flickr_id": "4243138084", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48789", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the band would n't be the same though without the contributions of every member .", "storylet_id": "243948"}], [{"original_text": "I could listen to these guys play for days.", "album_id": "72157623133202486", "photo_flickr_id": "4242366275", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "48789", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i could listen to these guys play for days .", "storylet_id": "243949"}], [{"original_text": "Our trip to the ski lodge was a ton of fun!", "album_id": "72157623259212490", "photo_flickr_id": "4243039545", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48790", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip to the ski lodge was a ton of fun !", "storylet_id": "243950"}], [{"original_text": "They had great food for every meal.", "album_id": "72157623259212490", "photo_flickr_id": "4243045735", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48790", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had great food for every meal .", "storylet_id": "243951"}], [{"original_text": "The vast array of options was magnificent. ", "album_id": "72157623259212490", "photo_flickr_id": "4243048059", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48790", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the vast array of options was magnificent .", "storylet_id": "243952"}], [{"original_text": "The snow pack was light, but beautiful nonetheless.", "album_id": "72157623259212490", "photo_flickr_id": "4293630189", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48790", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the snow pack was light , but beautiful nonetheless .", "storylet_id": "243953"}], [{"original_text": "The scenery alone was worth the trip.", "album_id": "72157623259212490", "photo_flickr_id": "4293427643", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48790", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the scenery alone was worth the trip .", "storylet_id": "243954"}], [{"original_text": "I ordered a lot of food.", "album_id": "72157623259212490", "photo_flickr_id": "4243045735", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48791", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i ordered a lot of food .", "storylet_id": "243955"}], [{"original_text": "After I ate I got back on the road.", "album_id": "72157623259212490", "photo_flickr_id": "4243046217", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48791", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after i ate i got back on the road .", "storylet_id": "243956"}], [{"original_text": "There was a lot of snow on the road.", "album_id": "72157623259212490", "photo_flickr_id": "4293424681", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48791", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a lot of snow on the road .", "storylet_id": "243957"}], [{"original_text": "I went for a drive.", "album_id": "72157623259212490", "photo_flickr_id": "4294372072", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48791", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i went for a drive .", "storylet_id": "243958"}], [{"original_text": "It took me a couple hours to get back home.", "album_id": "72157623259212490", "photo_flickr_id": "4293630189", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48791", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it took me a couple hours to get back home .", "storylet_id": "243959"}], [{"original_text": "It was a great day for a hike.", "album_id": "72157623259212490", "photo_flickr_id": "4243039545", "setting": "last-3-pick-old-and-tell", "worker_id": "T451E5GKPZL2JGH", "story_id": "48792", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a great day for a hike .", "storylet_id": "243960"}], [{"original_text": "But breakfast came first.", "album_id": "72157623259212490", "photo_flickr_id": "4243045735", "setting": "last-3-pick-old-and-tell", "worker_id": "T451E5GKPZL2JGH", "story_id": "48792", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but breakfast came first .", "storylet_id": "243961"}], [{"original_text": "The table was full of goodies.", "album_id": "72157623259212490", "photo_flickr_id": "4243048059", "setting": "last-3-pick-old-and-tell", "worker_id": "T451E5GKPZL2JGH", "story_id": "48792", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the table was full of goodies .", "storylet_id": "243962"}], [{"original_text": "Then the trail was ready.", "album_id": "72157623259212490", "photo_flickr_id": "4293630189", "setting": "last-3-pick-old-and-tell", "worker_id": "T451E5GKPZL2JGH", "story_id": "48792", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then the trail was ready .", "storylet_id": "243963"}], [{"original_text": "It was too snowy outside.", "album_id": "72157623259212490", "photo_flickr_id": "4293427643", "setting": "last-3-pick-old-and-tell", "worker_id": "T451E5GKPZL2JGH", "story_id": "48792", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was too snowy outside .", "storylet_id": "243964"}], [{"original_text": "Here at a small town in Japan. We are being treated so nice.", "album_id": "72157623259212490", "photo_flickr_id": "4243045735", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48793", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here at a small town in location . we are being treated so nice .", "storylet_id": "243965"}], [{"original_text": "Here is the building we are staying in. This is a loving place. 5 stars.", "album_id": "72157623259212490", "photo_flickr_id": "4243046217", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48793", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is the building we are staying in . this is a loving place . 5 stars .", "storylet_id": "243966"}], [{"original_text": "Decided to take a long walk down this street. I left here with 100's of pictures.", "album_id": "72157623259212490", "photo_flickr_id": "4293424681", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48793", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "decided to take a long walk down this street . i left here with 100 's of pictures .", "storylet_id": "243967"}], [{"original_text": "I love the snow as black and white, I love the tree and all of this picture.", "album_id": "72157623259212490", "photo_flickr_id": "4294372072", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48793", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love the snow as black and white , i love the tree and all of this picture .", "storylet_id": "243968"}], [{"original_text": "This picture just looks great, sun is in the perfect position.", "album_id": "72157623259212490", "photo_flickr_id": "4293630189", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48793", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this picture just looks great , sun is in the perfect position .", "storylet_id": "243969"}], [{"original_text": "This odd shaped restaurant is actually modern looking to me and this is where we are going to have a great meal. ", "album_id": "72157623259212490", "photo_flickr_id": "4243039545", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "48794", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this odd shaped restaurant is actually modern looking to me and this is where we are going to have a great meal .", "storylet_id": "243970"}], [{"original_text": "This is my plate I like to try new things doesn't it look awesome?", "album_id": "72157623259212490", "photo_flickr_id": "4243045735", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "48794", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is my plate i like to try new things does n't it look awesome ?", "storylet_id": "243971"}], [{"original_text": "A smorgasbord of different Asian cuisine looks very interesting. ", "album_id": "72157623259212490", "photo_flickr_id": "4243048059", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "48794", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a smorgasbord of different asian cuisine looks very interesting .", "storylet_id": "243972"}], [{"original_text": "The icy road leaving the restaurant and it looks like a Stephen King movie. Lol... ", "album_id": "72157623259212490", "photo_flickr_id": "4293630189", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "48794", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the icy road leaving the restaurant and it looks like a [male] [male] movie . lol ...", "storylet_id": "243973"}], [{"original_text": "Epic view of a cold winter day. ", "album_id": "72157623259212490", "photo_flickr_id": "4293427643", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "48794", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "epic view of a cold winter day .", "storylet_id": "243974"}], [{"original_text": "The pre-opera tailgate was a success.", "album_id": "415579", "photo_flickr_id": "17496437", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "48795", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the pre-opera tailgate was a success .", "storylet_id": "243975"}], [{"original_text": "We included lots of champagne for everyone.", "album_id": "415579", "photo_flickr_id": "17496402", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "48795", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we included lots of champagne for everyone .", "storylet_id": "243976"}], [{"original_text": "The wide variety of cheeses went well with the champagne.", "album_id": "415579", "photo_flickr_id": "17496414", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "48795", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the wide variety of cheeses went well with the champagne .", "storylet_id": "243977"}], [{"original_text": "What was supposed to be just a snack, ended up being so filling that we were able to skip dinner.", "album_id": "415579", "photo_flickr_id": "17496419", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "48795", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what was supposed to be just a snack , ended up being so filling that we were able to skip dinner .", "storylet_id": "243978"}], [{"original_text": "We had so much left that we were able to include anyone who passed by!", "album_id": "415579", "photo_flickr_id": "17496442", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "48795", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had so much left that we were able to include anyone who passed by !", "storylet_id": "243979"}], [{"original_text": "She stood at the porch waiting for her date. ", "album_id": "415579", "photo_flickr_id": "17496372", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48796", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she stood at the porch waiting for her date .", "storylet_id": "243980"}], [{"original_text": "Once he got arrived, she realized she had forgotten to tell him to wear black slacks and a tie. ", "album_id": "415579", "photo_flickr_id": "17496382", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48796", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once he got arrived , she realized she had forgotten to tell him to wear black slacks and a tie .", "storylet_id": "243981"}], [{"original_text": "He made a quick change and was the first to pop a bottle of champagne. ", "album_id": "415579", "photo_flickr_id": "17496393", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48796", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he made a quick change and was the first to pop a bottle of champagne .", "storylet_id": "243982"}], [{"original_text": "All the women had dresses on. ", "album_id": "415579", "photo_flickr_id": "17496419", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48796", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all the women had dresses on .", "storylet_id": "243983"}], [{"original_text": "There was an array of finger foods on the small table. ", "album_id": "415579", "photo_flickr_id": "17496437", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48796", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was an array of finger foods on the small table .", "storylet_id": "243984"}], [{"original_text": "Yesterday, I went to a wonderful tailgating party.", "album_id": "415579", "photo_flickr_id": "17496437", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48797", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday , i went to a wonderful tailgating party .", "storylet_id": "243985"}], [{"original_text": "They really went all out to set it up.", "album_id": "415579", "photo_flickr_id": "17496402", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48797", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they really went all out to set it up .", "storylet_id": "243986"}], [{"original_text": "They had waiters and served champagne.", "album_id": "415579", "photo_flickr_id": "17496414", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48797", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had waiters and served champagne .", "storylet_id": "243987"}], [{"original_text": "Everyone got very dressed up.", "album_id": "415579", "photo_flickr_id": "17496419", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48797", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone got very dressed up .", "storylet_id": "243988"}], [{"original_text": "I had a wonderful time at the event.", "album_id": "415579", "photo_flickr_id": "17496442", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48797", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a wonderful time at the event .", "storylet_id": "243989"}], [{"original_text": "Great food and great conversation, there is nothing like getting together with friends and family.", "album_id": "415579", "photo_flickr_id": "17496437", "setting": "last-3-pick-old-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "48798", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "great food and great conversation , there is nothing like getting together with friends and family .", "storylet_id": "243990"}], [{"original_text": "Uncle Steve topping off his glass. He loves a good drink.", "album_id": "415579", "photo_flickr_id": "17496402", "setting": "last-3-pick-old-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "48798", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "uncle [male] topping off his glass . he loves a good drink .", "storylet_id": "243991"}], [{"original_text": "Dad and Uncle Steve they are always together.", "album_id": "415579", "photo_flickr_id": "17496414", "setting": "last-3-pick-old-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "48798", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad and uncle [male] they are always together .", "storylet_id": "243992"}], [{"original_text": "Mom and cousin Tami. Mom always know were to find the food.", "album_id": "415579", "photo_flickr_id": "17496419", "setting": "last-3-pick-old-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "48798", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom and cousin [female] . mom always know were to find the food .", "storylet_id": "243993"}], [{"original_text": "The perfect way to end the vacation with a table set up for all friends and family before departure.", "album_id": "415579", "photo_flickr_id": "17496442", "setting": "last-3-pick-old-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "48798", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the perfect way to end the vacation with a table set up for all friends and family before departure .", "storylet_id": "243994"}], [{"original_text": "Connie stood outside of her new studio and sighed with contentment.", "album_id": "415579", "photo_flickr_id": "17496372", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "48799", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] stood outside of her new studio and sighed with contentment .", "storylet_id": "243995"}], [{"original_text": "She and Joe had worked a long time to build their art business into something very special.", "album_id": "415579", "photo_flickr_id": "17496382", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "48799", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she and [male] had worked a long time to build their art business into something very special .", "storylet_id": "243996"}], [{"original_text": "Joe served food and drink to all the guests who attended the grand opening.", "album_id": "415579", "photo_flickr_id": "17496393", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "48799", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] served food and drink to all the guests who attended the grand opening .", "storylet_id": "243997"}], [{"original_text": "Connie talked to prospective clients.", "album_id": "415579", "photo_flickr_id": "17496419", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "48799", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] talked to prospective clients .", "storylet_id": "243998"}], [{"original_text": "Everyone enjoyed the wonderful food and many new friends were made.", "album_id": "415579", "photo_flickr_id": "17496437", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "48799", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone enjoyed the wonderful food and many new friends were made .", "storylet_id": "243999"}], [{"original_text": "Out to dinner with friends. We are trying a new place.", "album_id": "413663", "photo_flickr_id": "17398173", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "48800", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "out to dinner with friends . we are trying a new place .", "storylet_id": "244000"}], [{"original_text": "Everyone ordered something different so we could all try it.", "album_id": "413663", "photo_flickr_id": "17399304", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "48800", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone ordered something different so we could all try it .", "storylet_id": "244001"}], [{"original_text": "We weren't sure what this was, but I guess we'll try it.", "album_id": "413663", "photo_flickr_id": "17399712", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "48800", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were n't sure what this was , but i guess we 'll try it .", "storylet_id": "244002"}], [{"original_text": "This didn't look any better but I'll give it a go.", "album_id": "413663", "photo_flickr_id": "17400033", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "48800", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this did n't look any better but i 'll give it a go .", "storylet_id": "244003"}], [{"original_text": "Had to wash it all down with lots of drinks. Still a fun night.", "album_id": "413663", "photo_flickr_id": "17401748", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "48800", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "had to wash it all down with lots of drinks . still a fun night .", "storylet_id": "244004"}], [{"original_text": "I made a lot of food for the party tonight.", "album_id": "413663", "photo_flickr_id": "17398173", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48801", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i made a lot of food for the party tonight .", "storylet_id": "244005"}], [{"original_text": "I spent time making some sauces.", "album_id": "413663", "photo_flickr_id": "17398357", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48801", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i spent time making some sauces .", "storylet_id": "244006"}], [{"original_text": "It took me a few hours.", "album_id": "413663", "photo_flickr_id": "17399712", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48801", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it took me a few hours .", "storylet_id": "244007"}], [{"original_text": "Everyone enjoyed it.", "album_id": "413663", "photo_flickr_id": "17400033", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48801", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone enjoyed it .", "storylet_id": "244008"}], [{"original_text": "There were a lot of leftovers afterward.", "album_id": "413663", "photo_flickr_id": "17400189", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48801", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were a lot of leftovers afterward .", "storylet_id": "244009"}], [{"original_text": "The friends gathered for a meal.", "album_id": "413663", "photo_flickr_id": "17398173", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "48802", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends gathered for a meal .", "storylet_id": "244010"}], [{"original_text": "The dishes were placed on the table. They all looked amazing!", "album_id": "413663", "photo_flickr_id": "17399304", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "48802", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dishes were placed on the table . they all looked amazing !", "storylet_id": "244011"}], [{"original_text": "Each dish was fresh and appetizing.", "album_id": "413663", "photo_flickr_id": "17399712", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "48802", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each dish was fresh and appetizing .", "storylet_id": "244012"}], [{"original_text": "The friends gobbled up their food.", "album_id": "413663", "photo_flickr_id": "17400033", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "48802", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the friends gobbled up their food .", "storylet_id": "244013"}], [{"original_text": "Then they made some drinks. It was a great time.", "album_id": "413663", "photo_flickr_id": "17401748", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "48802", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then they made some drinks . it was a great time .", "storylet_id": "244014"}], [{"original_text": "It was time to have a super dinner with family,", "album_id": "413663", "photo_flickr_id": "17398173", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "48803", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was time to have a super dinner with family ,", "storylet_id": "244015"}], [{"original_text": "we started out with all these taco ingredients,", "album_id": "413663", "photo_flickr_id": "17399304", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "48803", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started out with all these taco ingredients ,", "storylet_id": "244016"}], [{"original_text": "then we moved to this squid like substance.", "album_id": "413663", "photo_flickr_id": "17399712", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "48803", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we moved to this squid like substance .", "storylet_id": "244017"}], [{"original_text": "Then we had a bunch of shrimp scampi,", "album_id": "413663", "photo_flickr_id": "17400033", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "48803", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we had a bunch of shrimp scampi ,", "storylet_id": "244018"}], [{"original_text": "and finished it off with some strong drinks.", "album_id": "413663", "photo_flickr_id": "17401748", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "48803", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and finished it off with some strong drinks .", "storylet_id": "244019"}], [{"original_text": "Everyone was at the table drinking and chattering having a good time.", "album_id": "413663", "photo_flickr_id": "17398173", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48804", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was at the table drinking and chattering having a good time .", "storylet_id": "244020"}], [{"original_text": "The food served at the restaurant was very unique.", "album_id": "413663", "photo_flickr_id": "17399304", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48804", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the food served at the restaurant was very unique .", "storylet_id": "244021"}], [{"original_text": "Here is one of the main courses that was served.", "album_id": "413663", "photo_flickr_id": "17399712", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48804", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is one of the main courses that was served .", "storylet_id": "244022"}], [{"original_text": "Definitely interesting food and we passed it along to each other.", "album_id": "413663", "photo_flickr_id": "17400033", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48804", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "definitely interesting food and we passed it along to each other .", "storylet_id": "244023"}], [{"original_text": "The drink was lit up on fire and looked exotic.", "album_id": "413663", "photo_flickr_id": "17401748", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48804", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the drink was lit up on fire and looked exotic .", "storylet_id": "244024"}], [{"original_text": "Fireworks are an american tradition. ", "album_id": "543686", "photo_flickr_id": "23698061", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "48805", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "fireworks are an american tradition .", "storylet_id": "244025"}], [{"original_text": "Even though they were invented in China, Americans use them to celebrate July 4th.", "album_id": "543686", "photo_flickr_id": "23698128", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "48805", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even though they were invented in location , americans use them to celebrate july 4th .", "storylet_id": "244026"}], [{"original_text": "The displays of patriotism are common all over the US.", "album_id": "543686", "photo_flickr_id": "23698187", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "48805", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the displays of patriotism are common all over the location .", "storylet_id": "244027"}], [{"original_text": "In most areas fireworks are illegal.", "album_id": "543686", "photo_flickr_id": "23698297", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "48805", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in most areas fireworks are illegal .", "storylet_id": "244028"}], [{"original_text": "They're still commonly sold because Americans love to blow stuff up.", "album_id": "543686", "photo_flickr_id": "23698033", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "48805", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they 're still commonly sold because americans love to blow stuff up .", "storylet_id": "244029"}], [{"original_text": "Fireworks with the kids! The night was clear and warm.", "album_id": "543686", "photo_flickr_id": "23698411", "setting": "first-2-pick-and-tell", "worker_id": "6I9ORX952LIABY1", "story_id": "48806", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "fireworks with the kids ! the night was clear and warm .", "storylet_id": "244030"}], [{"original_text": "This red and green one reminds us of a sci-fi tree.", "album_id": "543686", "photo_flickr_id": "23698061", "setting": "first-2-pick-and-tell", "worker_id": "6I9ORX952LIABY1", "story_id": "48806", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this red and green one reminds us of a sci-fi tree .", "storylet_id": "244031"}], [{"original_text": "The fireworks kept blossoming out for well over an hour.", "album_id": "543686", "photo_flickr_id": "23698486", "setting": "first-2-pick-and-tell", "worker_id": "6I9ORX952LIABY1", "story_id": "48806", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fireworks kept blossoming out for well over an hour .", "storylet_id": "244032"}], [{"original_text": "This beauty crackled and sent of little trails.", "album_id": "543686", "photo_flickr_id": "23698550", "setting": "first-2-pick-and-tell", "worker_id": "6I9ORX952LIABY1", "story_id": "48806", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this beauty crackled and sent of little trails .", "storylet_id": "244033"}], [{"original_text": "Only got the very beginning of the finally because I set the camera down to enjoy the stunning show!", "album_id": "543686", "photo_flickr_id": "23698371", "setting": "first-2-pick-and-tell", "worker_id": "6I9ORX952LIABY1", "story_id": "48806", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "only got the very beginning of the finally because i set the camera down to enjoy the stunning show !", "storylet_id": "244034"}], [{"original_text": "The fireworks display was so full of color. ", "album_id": "543686", "photo_flickr_id": "23698061", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48807", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fireworks display was so full of color .", "storylet_id": "244035"}], [{"original_text": "The red and green ones were bright, and loud. ", "album_id": "543686", "photo_flickr_id": "23698128", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48807", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the red and green ones were bright , and loud .", "storylet_id": "244036"}], [{"original_text": "Some were colorful in a burst, like an array of color. ", "album_id": "543686", "photo_flickr_id": "23698187", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48807", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some were colorful in a burst , like an array of color .", "storylet_id": "244037"}], [{"original_text": "Some rained color down like they were coming from a cloud. ", "album_id": "543686", "photo_flickr_id": "23698297", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48807", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some rained color down like they were coming from a cloud .", "storylet_id": "244038"}], [{"original_text": "The big, round bright ones indicated the finale, and it was grand. ", "album_id": "543686", "photo_flickr_id": "23698033", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48807", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the big , round bright ones indicated the finale , and it was grand .", "storylet_id": "244039"}], [{"original_text": "I wish i could be close to the action.", "album_id": "543686", "photo_flickr_id": "23698411", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48808", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i wish i could be close to the action .", "storylet_id": "244040"}], [{"original_text": "With all the other people, with their friends.", "album_id": "543686", "photo_flickr_id": "23698061", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48808", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "with all the other people , with their friends .", "storylet_id": "244041"}], [{"original_text": "I miss my family and friends.", "album_id": "543686", "photo_flickr_id": "23698486", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48808", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i miss my family and friends .", "storylet_id": "244042"}], [{"original_text": "I miss what I had in the past.", "album_id": "543686", "photo_flickr_id": "23698550", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48808", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i miss what i had in the past .", "storylet_id": "244043"}], [{"original_text": "I wish I didnt have to feel so alone now.", "album_id": "543686", "photo_flickr_id": "23698371", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48808", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i wish i didnt have to feel so alone now .", "storylet_id": "244044"}], [{"original_text": "The fireworks started with a bang.", "album_id": "543686", "photo_flickr_id": "23698061", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48809", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fireworks started with a bang .", "storylet_id": "244045"}], [{"original_text": "Everyone immediately heard the noise and looked up", "album_id": "543686", "photo_flickr_id": "23698128", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48809", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone immediately heard the noise and looked up", "storylet_id": "244046"}], [{"original_text": "to see the bright colors exploding in the sky.", "album_id": "543686", "photo_flickr_id": "23698187", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48809", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "to see the bright colors exploding in the sky .", "storylet_id": "244047"}], [{"original_text": "The fireworks continued", "album_id": "543686", "photo_flickr_id": "23698297", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48809", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fireworks continued", "storylet_id": "244048"}], [{"original_text": "as the night went on in celebration of our country's independence. ", "album_id": "543686", "photo_flickr_id": "23698033", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48809", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the night went on in celebration of our country 's independence .", "storylet_id": "244049"}], [{"original_text": "The whole family got together for the birthday party.", "album_id": "72157623021292833", "photo_flickr_id": "4247886911", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48810", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family got together for the birthday party .", "storylet_id": "244050"}], [{"original_text": "There was plenty of spirits and fun.", "album_id": "72157623021292833", "photo_flickr_id": "4247867651", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48810", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was plenty of spirits and fun .", "storylet_id": "244051"}], [{"original_text": "The birthday boy was happy and having a great time.", "album_id": "72157623021292833", "photo_flickr_id": "4248644562", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48810", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the birthday boy was happy and having a great time .", "storylet_id": "244052"}], [{"original_text": "His parents were very proud of their son.", "album_id": "72157623021292833", "photo_flickr_id": "4247874315", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48810", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his parents were very proud of their son .", "storylet_id": "244053"}], [{"original_text": "The birthday boy loved his new pet chicken.", "album_id": "72157623021292833", "photo_flickr_id": "4247891519", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "48810", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the birthday boy loved his new pet chicken .", "storylet_id": "244054"}], [{"original_text": "I invited my entire family to dinner tonight.", "album_id": "72157623021292833", "photo_flickr_id": "4247867651", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48811", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i invited my entire family to dinner tonight .", "storylet_id": "244055"}], [{"original_text": "They were happy to come.", "album_id": "72157623021292833", "photo_flickr_id": "4248642144", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48811", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were happy to come .", "storylet_id": "244056"}], [{"original_text": "It was also my birthday.", "album_id": "72157623021292833", "photo_flickr_id": "4248644562", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48811", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was also my birthday .", "storylet_id": "244057"}], [{"original_text": "We all took pictures together.", "album_id": "72157623021292833", "photo_flickr_id": "4247886911", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48811", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all took pictures together .", "storylet_id": "244058"}], [{"original_text": "My uncle bought me a chicken.", "album_id": "72157623021292833", "photo_flickr_id": "4248661530", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48811", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my uncle bought me a chicken .", "storylet_id": "244059"}], [{"original_text": "Today was my birthday and my whole family was there.", "album_id": "72157623021292833", "photo_flickr_id": "4247886911", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "48812", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was my birthday and my whole family was there .", "storylet_id": "244060"}], [{"original_text": "We had a lot of food and drinks.", "album_id": "72157623021292833", "photo_flickr_id": "4247867651", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "48812", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a lot of food and drinks .", "storylet_id": "244061"}], [{"original_text": "We even took many pictures together.", "album_id": "72157623021292833", "photo_flickr_id": "4248644562", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "48812", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even took many pictures together .", "storylet_id": "244062"}], [{"original_text": "My parents were also having a great time.", "album_id": "72157623021292833", "photo_flickr_id": "4247874315", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "48812", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my parents were also having a great time .", "storylet_id": "244063"}], [{"original_text": "Someone gave me a chicken as a present.", "album_id": "72157623021292833", "photo_flickr_id": "4247891519", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "48812", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someone gave me a chicken as a present .", "storylet_id": "244064"}], [{"original_text": "My family threw me a surprise party this weekend.", "album_id": "72157623021292833", "photo_flickr_id": "4247886911", "setting": "last-3-pick-old-and-tell", "worker_id": "IXCSR0DJU389YLX", "story_id": "48813", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family threw me a surprise party this weekend .", "storylet_id": "244065"}], [{"original_text": "I got to be a king and I was in charge of blowing out all the candles in the house.", "album_id": "72157623021292833", "photo_flickr_id": "4247867651", "setting": "last-3-pick-old-and-tell", "worker_id": "IXCSR0DJU389YLX", "story_id": "48813", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got to be a king and i was in charge of blowing out all the candles in the house .", "storylet_id": "244066"}], [{"original_text": "Here I am looking cool with my king's hate on.", "album_id": "72157623021292833", "photo_flickr_id": "4248644562", "setting": "last-3-pick-old-and-tell", "worker_id": "IXCSR0DJU389YLX", "story_id": "48813", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here i am looking cool with my king 's hate on .", "storylet_id": "244067"}], [{"original_text": "My mother and father also enjoyed the day with me.", "album_id": "72157623021292833", "photo_flickr_id": "4247874315", "setting": "last-3-pick-old-and-tell", "worker_id": "IXCSR0DJU389YLX", "story_id": "48813", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my mother and father also enjoyed the day with me .", "storylet_id": "244068"}], [{"original_text": "Here is my pet chicken Dave he made a guest appearance at my birthday.", "album_id": "72157623021292833", "photo_flickr_id": "4247891519", "setting": "last-3-pick-old-and-tell", "worker_id": "IXCSR0DJU389YLX", "story_id": "48813", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is my pet chicken [male] he made a guest appearance at my birthday .", "storylet_id": "244069"}], [{"original_text": "Today is my birthday. I decided to have a party. ", "album_id": "72157623021292833", "photo_flickr_id": "4247867651", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48814", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is my birthday . i decided to have a party .", "storylet_id": "244070"}], [{"original_text": "My dad came home unexpected. But he was a good sport about it. ", "album_id": "72157623021292833", "photo_flickr_id": "4248642144", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48814", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my dad came home unexpected . but he was a good sport about it .", "storylet_id": "244071"}], [{"original_text": "I loved being the birthday boy and wearing my special crown all day. ", "album_id": "72157623021292833", "photo_flickr_id": "4248644562", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48814", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i loved being the birthday boy and wearing my special crown all day .", "storylet_id": "244072"}], [{"original_text": "Here's my family picture. See, I'm wearing my crown!", "album_id": "72157623021292833", "photo_flickr_id": "4247886911", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48814", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's my family picture . see , i 'm wearing my crown !", "storylet_id": "244073"}], [{"original_text": "My dad decided to join the fun and take a selfie with our neighbors chicken. I think he drank too much! ", "album_id": "72157623021292833", "photo_flickr_id": "4248661530", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48814", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my dad decided to join the fun and take a selfie with our neighbors chicken . i think he drank too much !", "storylet_id": "244074"}], [{"original_text": "The holiday party was in the museum of natural art this time. Some of the decorations were odd for a holiday party.", "album_id": "72157623145509240", "photo_flickr_id": "4247696867", "setting": "first-2-pick-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "48815", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the holiday party was in the museum of natural art this time . some of the decorations were odd for a holiday party .", "storylet_id": "244075"}], [{"original_text": "The food was very good, though, and most people enjoyed it.", "album_id": "72157623145509240", "photo_flickr_id": "4247710625", "setting": "first-2-pick-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "48815", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the food was very good , though , and most people enjoyed it .", "storylet_id": "244076"}], [{"original_text": "Carol and Bob hadn't attending a party in a while, so everyone was very excited to see them.", "album_id": "72157623145509240", "photo_flickr_id": "4248472628", "setting": "first-2-pick-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "48815", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] and [male] had n't attending a party in a while , so everyone was very excited to see them .", "storylet_id": "244077"}], [{"original_text": "Carol and Bob had a lot of people wanted to take pictures with them.", "album_id": "72157623145509240", "photo_flickr_id": "4248493586", "setting": "first-2-pick-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "48815", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and [male] had a lot of people wanted to take pictures with them .", "storylet_id": "244078"}], [{"original_text": "The party went on for a long time. At the end of the night, no one wanted to go home because they enjoyed talking to their friends so much.", "album_id": "72157623145509240", "photo_flickr_id": "4247704215", "setting": "first-2-pick-and-tell", "worker_id": "8MY6X93JVSVASPC", "story_id": "48815", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the party went on for a long time . at the end of the night , no one wanted to go home because they enjoyed talking to their friends so much .", "storylet_id": "244079"}], [{"original_text": "Joan was at a work party.", "album_id": "72157623145509240", "photo_flickr_id": "4247692179", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48816", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was at a work party .", "storylet_id": "244080"}], [{"original_text": "Her coluges were busy setting up.", "album_id": "72157623145509240", "photo_flickr_id": "4247698065", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48816", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her coluges were busy setting up .", "storylet_id": "244081"}], [{"original_text": "The chef was making sure everyone was having a good time.", "album_id": "72157623145509240", "photo_flickr_id": "4248471596", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48816", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the chef was making sure everyone was having a good time .", "storylet_id": "244082"}], [{"original_text": "The Gladys were all happily chatting.", "album_id": "72157623145509240", "photo_flickr_id": "4247704215", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48816", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the [female] were all happily chatting .", "storylet_id": "244083"}], [{"original_text": "June and her son were having a good time, too. ", "album_id": "72157623145509240", "photo_flickr_id": "4248484112", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "48816", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] and her son were having a good time , too .", "storylet_id": "244084"}], [{"original_text": "I went to the Christmas party last year.", "album_id": "72157623145509240", "photo_flickr_id": "4247696867", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48817", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the christmas party last year .", "storylet_id": "244085"}], [{"original_text": "Everyone was having a great time.", "album_id": "72157623145509240", "photo_flickr_id": "4247710625", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48817", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was having a great time .", "storylet_id": "244086"}], [{"original_text": "I got to dance with a lot of the people at the center.", "album_id": "72157623145509240", "photo_flickr_id": "4248472628", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48817", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got to dance with a lot of the people at the center .", "storylet_id": "244087"}], [{"original_text": "They were all very nice.", "album_id": "72157623145509240", "photo_flickr_id": "4248493586", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48817", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were all very nice .", "storylet_id": "244088"}], [{"original_text": "I made some new friends.", "album_id": "72157623145509240", "photo_flickr_id": "4247704215", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48817", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i made some new friends .", "storylet_id": "244089"}], [{"original_text": "Had our christmas party at the weirdest place. It looked like a bunch of gecko lined up against the wall.", "album_id": "72157623145509240", "photo_flickr_id": "4247696867", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48818", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "had our christmas party at the weirdest place . it looked like a bunch of gecko lined up against the wall .", "storylet_id": "244090"}], [{"original_text": "Food was great, several different combinations of food too.", "album_id": "72157623145509240", "photo_flickr_id": "4247710625", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48818", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "food was great , several different combinations of food too .", "storylet_id": "244091"}], [{"original_text": "Plenty of friends and co workers with there spouses.", "album_id": "72157623145509240", "photo_flickr_id": "4248472628", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48818", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "plenty of friends and co workers with there spouses .", "storylet_id": "244092"}], [{"original_text": "We had a raffle but I didn't win a darn thing.", "album_id": "72157623145509240", "photo_flickr_id": "4248493586", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48818", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a raffle but i did n't win a darn thing .", "storylet_id": "244093"}], [{"original_text": "Here are some ladies I got to me and they were so much fun to be around. They used the word YOLO several times in the evening.", "album_id": "72157623145509240", "photo_flickr_id": "4247704215", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "48818", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here are some ladies i got to me and they were so much fun to be around . they used the word yolo several times in the evening .", "storylet_id": "244094"}], [{"original_text": "This is our work Christmas party.", "album_id": "72157623145509240", "photo_flickr_id": "4247696867", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48819", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is our work christmas party .", "storylet_id": "244095"}], [{"original_text": "These people don't' believe in Christmas but wanted to attend the party anyways. ", "album_id": "72157623145509240", "photo_flickr_id": "4247710625", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48819", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these people do n't ' believe in christmas but wanted to attend the party anyways .", "storylet_id": "244096"}], [{"original_text": "This it the owner of our business and her husband. ", "album_id": "72157623145509240", "photo_flickr_id": "4248472628", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48819", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this it the owner of our business and her husband .", "storylet_id": "244097"}], [{"original_text": "These women all work in the front office. ", "album_id": "72157623145509240", "photo_flickr_id": "4248493586", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48819", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these women all work in the front office .", "storylet_id": "244098"}], [{"original_text": "There aren't a lot of employees so there is a lot of room at the tables. ", "album_id": "72157623145509240", "photo_flickr_id": "4247704215", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48819", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are n't a lot of employees so there is a lot of room at the tables .", "storylet_id": "244099"}], [{"original_text": "It finally got dark after everyone went hiking in the snow.", "album_id": "72157623159821460", "photo_flickr_id": "4254311274", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48820", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it finally got dark after everyone went hiking in the snow .", "storylet_id": "244100"}], [{"original_text": "The guy to a cigarette break.", "album_id": "72157623159821460", "photo_flickr_id": "4253547383", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48820", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guy to a cigarette break .", "storylet_id": "244101"}], [{"original_text": "The lady drank some coffee.", "album_id": "72157623159821460", "photo_flickr_id": "4253547573", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48820", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lady drank some coffee .", "storylet_id": "244102"}], [{"original_text": "The couple got cozy after the hike.", "album_id": "72157623159821460", "photo_flickr_id": "4254312396", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48820", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple got cozy after the hike .", "storylet_id": "244103"}], [{"original_text": "Everyone came together to celebrate their big hike. After they all called it a night.", "album_id": "72157623159821460", "photo_flickr_id": "4254311806", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48820", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone came together to celebrate their big hike . after they all called it a night .", "storylet_id": "244104"}], [{"original_text": "I went to the ski resort last night.", "album_id": "72157623159821460", "photo_flickr_id": "4253547573", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48821", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the ski resort last night .", "storylet_id": "244105"}], [{"original_text": "It was very dark at night there.", "album_id": "72157623159821460", "photo_flickr_id": "4253546369", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48821", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was very dark at night there .", "storylet_id": "244106"}], [{"original_text": "The only light was from the lodge.", "album_id": "72157623159821460", "photo_flickr_id": "4254312396", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48821", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the only light was from the lodge .", "storylet_id": "244107"}], [{"original_text": "We did some night time skiing.", "album_id": "72157623159821460", "photo_flickr_id": "4254311806", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48821", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we did some night time skiing .", "storylet_id": "244108"}], [{"original_text": "When we got back inside we had a warm espresso.", "album_id": "72157623159821460", "photo_flickr_id": "4253546883", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48821", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we got back inside we had a warm espresso .", "storylet_id": "244109"}], [{"original_text": "We went for a walk outside.", "album_id": "72157623159821460", "photo_flickr_id": "4253547573", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48822", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went for a walk outside .", "storylet_id": "244110"}], [{"original_text": "It was really cold out.", "album_id": "72157623159821460", "photo_flickr_id": "4253546369", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48822", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was really cold out .", "storylet_id": "244111"}], [{"original_text": "We walked up to a cabin where a party was going on.", "album_id": "72157623159821460", "photo_flickr_id": "4254312396", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48822", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we walked up to a cabin where a party was going on .", "storylet_id": "244112"}], [{"original_text": "We hung out there for quite sometime.", "album_id": "72157623159821460", "photo_flickr_id": "4254311806", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48822", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we hung out there for quite sometime .", "storylet_id": "244113"}], [{"original_text": "The night ended and we made our way back home.", "album_id": "72157623159821460", "photo_flickr_id": "4253546883", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "48822", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night ended and we made our way back home .", "storylet_id": "244114"}], [{"original_text": "It was night time and everyone was home from skiing.", "album_id": "72157623159821460", "photo_flickr_id": "4254311274", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48823", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was night time and everyone was home from skiing .", "storylet_id": "244115"}], [{"original_text": "Tim was out on the porch smoking.", "album_id": "72157623159821460", "photo_flickr_id": "4253547383", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48823", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was out on the porch smoking .", "storylet_id": "244116"}], [{"original_text": "Kelly joined him sipping her hot chocolate.", "album_id": "72157623159821460", "photo_flickr_id": "4253547573", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48823", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] joined him sipping her hot chocolate .", "storylet_id": "244117"}], [{"original_text": "They headed out after that, over to the mountain again.", "album_id": "72157623159821460", "photo_flickr_id": "4254312396", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48823", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they headed out after that , over to the mountain again .", "storylet_id": "244118"}], [{"original_text": "They were going to do some night time tubing tonight.", "album_id": "72157623159821460", "photo_flickr_id": "4254311806", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "48823", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were going to do some night time tubing tonight .", "storylet_id": "244119"}], [{"original_text": "We had a full day of skiing. The evening moon looks beautiful. ", "album_id": "72157623159821460", "photo_flickr_id": "4254311274", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48824", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a full day of skiing . the evening moon looks beautiful .", "storylet_id": "244120"}], [{"original_text": "My friend enjoys a cigarette outside while we walk to dinner. ", "album_id": "72157623159821460", "photo_flickr_id": "4253547383", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48824", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend enjoys a cigarette outside while we walk to dinner .", "storylet_id": "244121"}], [{"original_text": "I keep telling him smoking is bad, but he doesn't listen so I just give him this disappointing face. ", "album_id": "72157623159821460", "photo_flickr_id": "4253547573", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48824", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i keep telling him smoking is bad , but he does n't listen so i just give him this disappointing face .", "storylet_id": "244122"}], [{"original_text": "But i always forgive him. We walk towards the lodge for dinner. ", "album_id": "72157623159821460", "photo_flickr_id": "4254312396", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48824", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but i always forgive him . we walk towards the lodge for dinner .", "storylet_id": "244123"}], [{"original_text": "The rest of our group is already there. We had to fun weekend away. ", "album_id": "72157623159821460", "photo_flickr_id": "4254311806", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "48824", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the rest of our group is already there . we had to fun weekend away .", "storylet_id": "244124"}], [{"original_text": "Millie sees the luncheon destination that she and her friends are looking for.", "album_id": "217084", "photo_flickr_id": "8737351", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "48825", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] sees the luncheon destination that she and her friends are looking for .", "storylet_id": "244125"}], [{"original_text": "They have entered and are being shown to the dining area.", "album_id": "217084", "photo_flickr_id": "8737318", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "48825", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they have entered and are being shown to the dining area .", "storylet_id": "244126"}], [{"original_text": "She knows that she is not in the USA as she sees a man lighting a cigarette inside a building.", "album_id": "217084", "photo_flickr_id": "8737278", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "48825", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she knows that she is not in the location as she sees a man lighting a cigarette inside a building .", "storylet_id": "244127"}], [{"original_text": "People know each other so conversations are not restricted to only the people at your table.", "album_id": "217084", "photo_flickr_id": "8736914", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "48825", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people know each other so conversations are not restricted to only the people at your table .", "storylet_id": "244128"}], [{"original_text": "Millie loves the casual camaraderie and talks with people all over the room. It was a lunch with some excellent conversation.", "album_id": "217084", "photo_flickr_id": "8737076", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "48825", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] loves the casual camaraderie and talks with people all over the room . it was a lunch with some excellent conversation .", "storylet_id": "244129"}], [{"original_text": " Today we went to a board meetings", "album_id": "217084", "photo_flickr_id": "8736914", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48826", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to a board meetings", "storylet_id": "244130"}], [{"original_text": "There were lots of executives there ", "album_id": "217084", "photo_flickr_id": "8736966", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48826", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were lots of executives there", "storylet_id": "244131"}], [{"original_text": "George Wilson was sitting at a table enjoying a nice drink ", "album_id": "217084", "photo_flickr_id": "8736984", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48826", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] [male] was sitting at a table enjoying a nice drink", "storylet_id": "244132"}], [{"original_text": "Then I saw brad smith chatting in the hallway and said hello ", "album_id": "217084", "photo_flickr_id": "8737174", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48826", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then i saw brad smith chatting in the hallway and said hello", "storylet_id": "244133"}], [{"original_text": "After the meeting we walked home ", "album_id": "217084", "photo_flickr_id": "8737351", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "48826", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the meeting we walked home", "storylet_id": "244134"}], [{"original_text": "This is the cafe I arrive to for the meeting.", "album_id": "217084", "photo_flickr_id": "8737351", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48827", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the cafe i arrive to for the meeting .", "storylet_id": "244135"}], [{"original_text": "A couple of my friends are happy to see I made it.", "album_id": "217084", "photo_flickr_id": "8737318", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48827", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a couple of my friends are happy to see i made it .", "storylet_id": "244136"}], [{"original_text": "I told him to put the cigarette away, but I still captured the moment.", "album_id": "217084", "photo_flickr_id": "8737278", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48827", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i told him to put the cigarette away , but i still captured the moment .", "storylet_id": "244137"}], [{"original_text": "It was fun watching everyone socializing.", "album_id": "217084", "photo_flickr_id": "8736914", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48827", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was fun watching everyone socializing .", "storylet_id": "244138"}], [{"original_text": "I caught my friend off guard at the end of the event. This was the way to end the night.", "album_id": "217084", "photo_flickr_id": "8737076", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48827", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i caught my friend off guard at the end of the event . this was the way to end the night .", "storylet_id": "244139"}], [{"original_text": "Every year, my best friend and I travel with our husbands to a boutique hotel. This year, it was the Smithville Inn.", "album_id": "217084", "photo_flickr_id": "8737351", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48828", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every year , my best friend and i travel with our husbands to a boutique hotel . this year , it was the location location .", "storylet_id": "244140"}], [{"original_text": "What a lovely place! As we traditionally do, we posed first thing in the lobby.", "album_id": "217084", "photo_flickr_id": "8737318", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48828", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "what a lovely place ! as we traditionally do , we posed first thing in the lobby .", "storylet_id": "244141"}], [{"original_text": "My husband Bill liked the smoking allowed policy.", "album_id": "217084", "photo_flickr_id": "8737278", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48828", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my husband [male] liked the smoking allowed policy .", "storylet_id": "244142"}], [{"original_text": "Everyone was friendly, and we talked a lot during meals.", "album_id": "217084", "photo_flickr_id": "8736914", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48828", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was friendly , and we talked a lot during meals .", "storylet_id": "244143"}], [{"original_text": "I love the hotel week of the year. It's a great chance to not be myself for a week.", "album_id": "217084", "photo_flickr_id": "8737076", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48828", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love the hotel week of the year . it 's a great chance to not be myself for a week .", "storylet_id": "244144"}], [{"original_text": "The building was quite luxurious", "album_id": "217084", "photo_flickr_id": "8737351", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48829", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the building was quite luxurious", "storylet_id": "244145"}], [{"original_text": "and many people came to the event.", "album_id": "217084", "photo_flickr_id": "8737318", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48829", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and many people came to the event .", "storylet_id": "244146"}], [{"original_text": "There was smoking", "album_id": "217084", "photo_flickr_id": "8737278", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48829", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was smoking", "storylet_id": "244147"}], [{"original_text": "before a sit down dinner", "album_id": "217084", "photo_flickr_id": "8736914", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48829", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "before a sit down dinner", "storylet_id": "244148"}], [{"original_text": "that had a nice amount of talking.", "album_id": "217084", "photo_flickr_id": "8737076", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48829", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that had a nice amount of talking .", "storylet_id": "244149"}], [{"original_text": "The guys got together for drinks.", "album_id": "311966", "photo_flickr_id": "12806199", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "48830", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guys got together for drinks .", "storylet_id": "244150"}], [{"original_text": "They played a drinking game together at the kitchen table.", "album_id": "311966", "photo_flickr_id": "12806110", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "48830", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they played a drinking game together at the kitchen table .", "storylet_id": "244151"}], [{"original_text": "Adam's bandanna did not go unnoticed and many jokes were made about it.", "album_id": "311966", "photo_flickr_id": "12806094", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "48830", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] 's bandanna did not go unnoticed and many jokes were made about it .", "storylet_id": "244152"}], [{"original_text": "His response was to point out the silly hat that Jason showed up in.", "album_id": "311966", "photo_flickr_id": "12806038", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "48830", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his response was to point out the silly hat that [male] showed up in .", "storylet_id": "244153"}], [{"original_text": "Then of course Steven's headband became the highlight of joking.", "album_id": "311966", "photo_flickr_id": "12806197", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "48830", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then of course [male] 's headband became the highlight of joking .", "storylet_id": "244154"}], [{"original_text": "All of my friends were at my apartment last night.", "album_id": "311966", "photo_flickr_id": "12806199", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48831", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all of my friends were at my apartment last night .", "storylet_id": "244155"}], [{"original_text": "We played a lot of drinking games.", "album_id": "311966", "photo_flickr_id": "12806115", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48831", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we played a lot of drinking games .", "storylet_id": "244156"}], [{"original_text": "I wasn't very good at them.", "album_id": "311966", "photo_flickr_id": "12806122", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48831", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was n't very good at them .", "storylet_id": "244157"}], [{"original_text": "We played until late into the night.", "album_id": "311966", "photo_flickr_id": "12806110", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48831", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we played until late into the night .", "storylet_id": "244158"}], [{"original_text": "After we were done everyone had had a lot to drink.", "album_id": "311966", "photo_flickr_id": "12806176", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48831", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we were done everyone had had a lot to drink .", "storylet_id": "244159"}], [{"original_text": "The family decided it was time for a game night.", "album_id": "311966", "photo_flickr_id": "12806199", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48832", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family decided it was time for a game night .", "storylet_id": "244160"}], [{"original_text": "They got everyone seated around the table,", "album_id": "311966", "photo_flickr_id": "12806115", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48832", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got everyone seated around the table ,", "storylet_id": "244161"}], [{"original_text": "and gave the adults some beers,", "album_id": "311966", "photo_flickr_id": "12806122", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48832", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and gave the adults some beers ,", "storylet_id": "244162"}], [{"original_text": "and then they began playing. ", "album_id": "311966", "photo_flickr_id": "12806110", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48832", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and then they began playing .", "storylet_id": "244163"}], [{"original_text": "It was a fun time and brought them closer together as a family.", "album_id": "311966", "photo_flickr_id": "12806176", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48832", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a fun time and brought them closer together as a family .", "storylet_id": "244164"}], [{"original_text": "People are sitting and drinking.", "album_id": "311966", "photo_flickr_id": "12806199", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48833", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people are sitting and drinking .", "storylet_id": "244165"}], [{"original_text": "This is a photo of people having fun.", "album_id": "311966", "photo_flickr_id": "12806110", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48833", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a photo of people having fun .", "storylet_id": "244166"}], [{"original_text": "People are playing a game.", "album_id": "311966", "photo_flickr_id": "12806094", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48833", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people are playing a game .", "storylet_id": "244167"}], [{"original_text": "Friends are having fun in the picture.", "album_id": "311966", "photo_flickr_id": "12806038", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48833", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "friends are having fun in the picture .", "storylet_id": "244168"}], [{"original_text": "A person is wearing a bracelet.", "album_id": "311966", "photo_flickr_id": "12806197", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48833", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a person is wearing a bracelet .", "storylet_id": "244169"}], [{"original_text": "My friends and I had a party at home and we had a lot of fun.", "album_id": "311966", "photo_flickr_id": "12806199", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "48834", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i had a party at home and we had a lot of fun .", "storylet_id": "244170"}], [{"original_text": "Someone had an idea to do a bottle cap toss game.", "album_id": "311966", "photo_flickr_id": "12806110", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "48834", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "someone had an idea to do a bottle cap toss game .", "storylet_id": "244171"}], [{"original_text": "It was surprisingly fun and competitive.", "album_id": "311966", "photo_flickr_id": "12806094", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "48834", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was surprisingly fun and competitive .", "storylet_id": "244172"}], [{"original_text": "I didn't win or get any bottle caps in at all but it was still a blast.", "album_id": "311966", "photo_flickr_id": "12806038", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "48834", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i did n't win or get any bottle caps in at all but it was still a blast .", "storylet_id": "244173"}], [{"original_text": "Joe thought he could give himself some good luck by kissing his bottle cap. It did not work and he hit Sarah in the face instead.", "album_id": "311966", "photo_flickr_id": "12806197", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "48834", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] thought he could give himself some good luck by kissing his bottle cap . it did not work and he hit [female] in the face instead .", "storylet_id": "244174"}], [{"original_text": "The family decided to get together for the 4th of July.", "album_id": "712904", "photo_flickr_id": "31995289", "setting": "first-2-pick-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "48835", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family decided to get together for the 4th of july .", "storylet_id": "244175"}], [{"original_text": "The kids decided to go swimming in the pool.", "album_id": "712904", "photo_flickr_id": "31995346", "setting": "first-2-pick-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "48835", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids decided to go swimming in the pool .", "storylet_id": "244176"}], [{"original_text": "The kids occupied their time playing games in the pool.", "album_id": "712904", "photo_flickr_id": "31995378", "setting": "first-2-pick-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "48835", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids occupied their time playing games in the pool .", "storylet_id": "244177"}], [{"original_text": "At the 4th of July get together, they family had a great time catching up. ", "album_id": "712904", "photo_flickr_id": "31995413", "setting": "first-2-pick-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "48835", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the 4th of july get together , they family had a great time catching up .", "storylet_id": "244178"}], [{"original_text": "The grandparents came by to be with their grand kids during the 4th of July. ", "album_id": "712904", "photo_flickr_id": "31995618", "setting": "first-2-pick-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "48835", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the grandparents came by to be with their grand kids during the 4th of july .", "storylet_id": "244179"}], [{"original_text": "Melissa and I are having a little party today. ", "album_id": "712904", "photo_flickr_id": "31995600", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "48836", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and i are having a little party today .", "storylet_id": "244180"}], [{"original_text": "My girls, Tia and Tamara are so excited. ", "album_id": "712904", "photo_flickr_id": "31996421", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "48836", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my girls , [female] and [female] are so excited .", "storylet_id": "244181"}], [{"original_text": "My husband was welcoming guests as I was fixing food. ", "album_id": "712904", "photo_flickr_id": "31996187", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "48836", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my husband was welcoming guests as i was fixing food .", "storylet_id": "244182"}], [{"original_text": "Our good friends Maggie and Wilson came first. ", "album_id": "712904", "photo_flickr_id": "31995982", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "48836", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our good friends [female] and [male] came first .", "storylet_id": "244183"}], [{"original_text": "We sat and ate and chatted and had a great old time. ", "album_id": "712904", "photo_flickr_id": "31995833", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "48836", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we sat and ate and chatted and had a great old time .", "storylet_id": "244184"}], [{"original_text": "The family has all came together on this hot sunny day.", "album_id": "712904", "photo_flickr_id": "31995289", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48837", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family has all came together on this hot sunny day .", "storylet_id": "244185"}], [{"original_text": "The boys are enjoying their self in the pool.", "album_id": "712904", "photo_flickr_id": "31995346", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48837", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boys are enjoying their self in the pool .", "storylet_id": "244186"}], [{"original_text": "This was a good day to be in the pool.", "album_id": "712904", "photo_flickr_id": "31995378", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48837", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was a good day to be in the pool .", "storylet_id": "244187"}], [{"original_text": "The older folks are on the side enjoying the weather and kids playing in the pool.", "album_id": "712904", "photo_flickr_id": "31995413", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48837", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the older folks are on the side enjoying the weather and kids playing in the pool .", "storylet_id": "244188"}], [{"original_text": "It still haven't cool off and older folks are soon going inside to the air conditioner. Every one enjoyed the day though.", "album_id": "712904", "photo_flickr_id": "31995618", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48837", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it still have n't cool off and older folks are soon going inside to the air conditioner . every one enjoyed the day though .", "storylet_id": "244189"}], [{"original_text": "The neighbors invited our family over for a pool party.", "album_id": "712904", "photo_flickr_id": "31995289", "setting": "last-3-pick-old-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "48838", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the neighbors invited our family over for a pool party .", "storylet_id": "244190"}], [{"original_text": "The girls like the pool even though they cannot swim.", "album_id": "712904", "photo_flickr_id": "31995346", "setting": "last-3-pick-old-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "48838", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girls like the pool even though they can not swim .", "storylet_id": "244191"}], [{"original_text": "The neighbor boy made unwelcome advances and was repelled with the help of the pool sweep.", "album_id": "712904", "photo_flickr_id": "31995378", "setting": "last-3-pick-old-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "48838", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the neighbor boy made unwelcome advances and was repelled with the help of the pool sweep .", "storylet_id": "244192"}], [{"original_text": "Mr. Jones showed off some vacation videos on his laptop.", "album_id": "712904", "photo_flickr_id": "31995413", "setting": "last-3-pick-old-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "48838", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mr. jones showed off some vacation videos on his laptop .", "storylet_id": "244193"}], [{"original_text": "Mrs. Jones was embarrassed by the topless shots at the beach and left the table.", "album_id": "712904", "photo_flickr_id": "31995618", "setting": "last-3-pick-old-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "48838", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mrs. jones was embarrassed by the topless shots at the beach and left the table .", "storylet_id": "244194"}], [{"original_text": "They were trying to teach Dad how to use his new laptop they had gotten him. ", "album_id": "712904", "photo_flickr_id": "31995289", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48839", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were trying to teach dad how to use his new laptop they had gotten him .", "storylet_id": "244195"}], [{"original_text": "The youngsters laughed at his inability in the pool.", "album_id": "712904", "photo_flickr_id": "31995346", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48839", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the youngsters laughed at his inability in the pool .", "storylet_id": "244196"}], [{"original_text": "Grandma told them to get on the other side so as not to splash it. ", "album_id": "712904", "photo_flickr_id": "31995378", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48839", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandma told them to get on the other side so as not to splash it .", "storylet_id": "244197"}], [{"original_text": "Grandpa moaned, he'd never figure this new fangled gizmo out. ", "album_id": "712904", "photo_flickr_id": "31995413", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48839", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandpa moaned , he 'd never figure this new fangled gizmo out .", "storylet_id": "244198"}], [{"original_text": "Grandma made everyone laugh when she told him to chillax. ", "album_id": "712904", "photo_flickr_id": "31995618", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48839", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandma made everyone laugh when she told him to chillax .", "storylet_id": "244199"}], [{"original_text": "Jimmy bought a new drum set so we decided to throw a house party.", "album_id": "661616", "photo_flickr_id": "4574398", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48840", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] bought a new drum set so we decided to throw a house party .", "storylet_id": "244200"}], [{"original_text": "First step was to setup the instruments.", "album_id": "661616", "photo_flickr_id": "4551597", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48840", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first step was to setup the instruments .", "storylet_id": "244201"}], [{"original_text": "Next up, add some alcohol.", "album_id": "661616", "photo_flickr_id": "4499515", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48840", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next up , add some alcohol .", "storylet_id": "244202"}], [{"original_text": "Soon, beautiful women showed up to make it a party.", "album_id": "661616", "photo_flickr_id": "4499831", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48840", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "soon , beautiful women showed up to make it a party .", "storylet_id": "244203"}], [{"original_text": "Finally the music started and we rocked until the cops showed up!", "album_id": "661616", "photo_flickr_id": "4551888", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48840", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the music started and we rocked until the cops showed up !", "storylet_id": "244204"}], [{"original_text": "We came to the party excited.", "album_id": "661616", "photo_flickr_id": "4499515", "setting": "first-2-pick-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48841", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we came to the party excited .", "storylet_id": "244205"}], [{"original_text": "There were so many cool people there.", "album_id": "661616", "photo_flickr_id": "4499512", "setting": "first-2-pick-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48841", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many cool people there .", "storylet_id": "244206"}], [{"original_text": "Some old friends stopped by as well.", "album_id": "661616", "photo_flickr_id": "4499627", "setting": "first-2-pick-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48841", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some old friends stopped by as well .", "storylet_id": "244207"}], [{"original_text": "The band began to play and they rocked out.", "album_id": "661616", "photo_flickr_id": "4551597", "setting": "first-2-pick-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48841", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the band began to play and they rocked out .", "storylet_id": "244208"}], [{"original_text": "The music carried us through the night.", "album_id": "661616", "photo_flickr_id": "4551603", "setting": "first-2-pick-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48841", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the music carried us through the night .", "storylet_id": "244209"}], [{"original_text": "Robby is playing those drums so well at my 16th birthday party.", "album_id": "661616", "photo_flickr_id": "4574398", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "48842", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is playing those drums so well at my 16th birthday party .", "storylet_id": "244210"}], [{"original_text": "Jon Caleb is really playing that guitar well.", "album_id": "661616", "photo_flickr_id": "4551597", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "48842", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] [male] is really playing that guitar well .", "storylet_id": "244211"}], [{"original_text": "Bob is taking pictures.", "album_id": "661616", "photo_flickr_id": "4499515", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "48842", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] is taking pictures .", "storylet_id": "244212"}], [{"original_text": "This has been a good 16th birthday party.", "album_id": "661616", "photo_flickr_id": "4499831", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "48842", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this has been a good 16th birthday party .", "storylet_id": "244213"}], [{"original_text": "We are having fun.", "album_id": "661616", "photo_flickr_id": "4551888", "setting": "last-3-pick-old-and-tell", "worker_id": "MB188ZD53E9O7M5", "story_id": "48842", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we are having fun .", "storylet_id": "244214"}], [{"original_text": "Our first live performance, our drummer was ready. ", "album_id": "661616", "photo_flickr_id": "4574398", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48843", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our first live performance , our drummer was ready .", "storylet_id": "244215"}], [{"original_text": "And our guitarist was jamming it out. ", "album_id": "661616", "photo_flickr_id": "4551597", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48843", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and our guitarist was jamming it out .", "storylet_id": "244216"}], [{"original_text": "Between sets we could mingle with the crowd. ", "album_id": "661616", "photo_flickr_id": "4499515", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48843", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "between sets we could mingle with the crowd .", "storylet_id": "244217"}], [{"original_text": "One of the best things about being in a band are the hot girls that are always around. ", "album_id": "661616", "photo_flickr_id": "4499831", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48843", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the best things about being in a band are the hot girls that are always around .", "storylet_id": "244218"}], [{"original_text": "Back to business and playing our encore. It was great. ", "album_id": "661616", "photo_flickr_id": "4551888", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48843", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "back to business and playing our encore . it was great .", "storylet_id": "244219"}], [{"original_text": "Last night we all decided to get together for a fun jam session.", "album_id": "661616", "photo_flickr_id": "4574398", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48844", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night we all decided to get together for a fun jam session .", "storylet_id": "244220"}], [{"original_text": "The boys rocked out playing the electric guitar, drums and bass. A full band played and entertained our friends.", "album_id": "661616", "photo_flickr_id": "4551597", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48844", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boys rocked out playing the electric guitar , drums and bass . a full band played and entertained our friends .", "storylet_id": "244221"}], [{"original_text": "Everyone mingled, joked, and drank. There was plenty of beer to go around", "album_id": "661616", "photo_flickr_id": "4499515", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48844", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone mingled , joked , and drank . there was plenty of beer to go around", "storylet_id": "244222"}], [{"original_text": "The girls had fun and met many cute guys.", "album_id": "661616", "photo_flickr_id": "4499831", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48844", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the girls had fun and met many cute guys .", "storylet_id": "244223"}], [{"original_text": "All in all, the music was great and it was a fantastic night.", "album_id": "661616", "photo_flickr_id": "4551888", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "48844", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all in all , the music was great and it was a fantastic night .", "storylet_id": "244224"}], [{"original_text": "I went to my friends party yesterday.", "album_id": "429580", "photo_flickr_id": "18171766", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48845", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to my friends party yesterday .", "storylet_id": "244225"}], [{"original_text": "He was very happy to see me.", "album_id": "429580", "photo_flickr_id": "18171582", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48845", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was very happy to see me .", "storylet_id": "244226"}], [{"original_text": "Some of the people there were complaining about pain on their body.", "album_id": "429580", "photo_flickr_id": "18175503", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48845", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the people there were complaining about pain on their body .", "storylet_id": "244227"}], [{"original_text": "There were quite a few people complaining about it.", "album_id": "429580", "photo_flickr_id": "18185980", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48845", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were quite a few people complaining about it .", "storylet_id": "244228"}], [{"original_text": "I decided to leave after hearing all of that.", "album_id": "429580", "photo_flickr_id": "18191793", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48845", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to leave after hearing all of that .", "storylet_id": "244229"}], [{"original_text": "She loved her aunt. ", "album_id": "429580", "photo_flickr_id": "18165727", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48846", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she loved her aunt .", "storylet_id": "244230"}], [{"original_text": "Everyone said she had her mothers blue eyes. ", "album_id": "429580", "photo_flickr_id": "18167909", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48846", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone said she had her mothers blue eyes .", "storylet_id": "244231"}], [{"original_text": "She certainly didn't get her mothers big feet though. ", "album_id": "429580", "photo_flickr_id": "18191794", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48846", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she certainly did n't get her mothers big feet though .", "storylet_id": "244232"}], [{"original_text": "Fortunatly, her feet were of average size, like her aunts. ", "album_id": "429580", "photo_flickr_id": "18203987", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48846", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fortunatly , her feet were of average size , like her aunts .", "storylet_id": "244233"}], [{"original_text": "Her hands she thought were unique unto herself. ", "album_id": "429580", "photo_flickr_id": "18207288", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48846", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her hands she thought were unique unto herself .", "storylet_id": "244234"}], [{"original_text": "I found a box of old photos in the garage.", "album_id": "429580", "photo_flickr_id": "18171766", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48847", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i found a box of old photos in the garage .", "storylet_id": "244235"}], [{"original_text": "They have such an odd tint to them.", "album_id": "429580", "photo_flickr_id": "18171582", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48847", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they have such an odd tint to them .", "storylet_id": "244236"}], [{"original_text": "Oh, whats going on here?", "album_id": "429580", "photo_flickr_id": "18175503", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48847", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "oh , whats going on here ?", "storylet_id": "244237"}], [{"original_text": "Alright what did I stumble into?", "album_id": "429580", "photo_flickr_id": "18185980", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48847", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "alright what did i stumble into ?", "storylet_id": "244238"}], [{"original_text": "Ok thats enough of that, putting these back!", "album_id": "429580", "photo_flickr_id": "18191793", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48847", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ok thats enough of that , putting these back !", "storylet_id": "244239"}], [{"original_text": "This is a picture of two friends.", "album_id": "429580", "photo_flickr_id": "18165727", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48848", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of two friends .", "storylet_id": "244240"}], [{"original_text": "This is a picture of two women.", "album_id": "429580", "photo_flickr_id": "18167909", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48848", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of two women .", "storylet_id": "244241"}], [{"original_text": "This is a picture of a woman's shoes.", "album_id": "429580", "photo_flickr_id": "18191794", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48848", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of a woman 's shoes .", "storylet_id": "244242"}], [{"original_text": "This is a picture of legs.", "album_id": "429580", "photo_flickr_id": "18203987", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48848", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of legs .", "storylet_id": "244243"}], [{"original_text": "This is a picture of hands.", "album_id": "429580", "photo_flickr_id": "18207288", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48848", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of hands .", "storylet_id": "244244"}], [{"original_text": "Janice hasn't been able to hang out with her best friends in a long time. Janice and Jenny have been friends since high school.", "album_id": "429580", "photo_flickr_id": "18165727", "setting": "last-3-pick-old-and-tell", "worker_id": "IIRLTWI4X43L2CX", "story_id": "48849", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] has n't been able to hang out with her best friends in a long time . [female] and [female] have been friends since high school .", "storylet_id": "244245"}], [{"original_text": "Janice and Robyn have been friends for about 5 years. They love hanging out and comparing their favorite fashions.", "album_id": "429580", "photo_flickr_id": "18167909", "setting": "last-3-pick-old-and-tell", "worker_id": "IIRLTWI4X43L2CX", "story_id": "48849", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] and [female] have been friends for about 5 years . they love hanging out and comparing their favorite fashions .", "storylet_id": "244246"}], [{"original_text": "Janice loves Jenny's shoes. She told her she would love to borrow them sometime .", "album_id": "429580", "photo_flickr_id": "18191794", "setting": "last-3-pick-old-and-tell", "worker_id": "IIRLTWI4X43L2CX", "story_id": "48849", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] loves [female] 's shoes . she told her she would love to borrow them sometime .", "storylet_id": "244247"}], [{"original_text": "Janice also loved Robyn's shoes.", "album_id": "429580", "photo_flickr_id": "18203987", "setting": "last-3-pick-old-and-tell", "worker_id": "IIRLTWI4X43L2CX", "story_id": "48849", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] also loved [female] 's shoes .", "storylet_id": "244248"}], [{"original_text": "These were Robyn's favorite pieces of jewelry.", "album_id": "429580", "photo_flickr_id": "18207288", "setting": "last-3-pick-old-and-tell", "worker_id": "IIRLTWI4X43L2CX", "story_id": "48849", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these were [female] 's favorite pieces of jewelry .", "storylet_id": "244249"}], [{"original_text": "Friends ,family and coworkers of my uncle's retiree party.", "album_id": "560264", "photo_flickr_id": "24507522", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "48850", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends , family and coworkers of my uncle 's retiree party .", "storylet_id": "244250"}], [{"original_text": "My grandma,grandpa and my son enjoying lunch and chatting about life.", "album_id": "560264", "photo_flickr_id": "24507350", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "48850", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my grandma , grandpa and my son enjoying lunch and chatting about life .", "storylet_id": "244251"}], [{"original_text": "Ronald is bringing out all the cake.There were enough deserts on the table.", "album_id": "560264", "photo_flickr_id": "24507330", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "48850", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] is bringing out all the cake.there were enough deserts on the table .", "storylet_id": "244252"}], [{"original_text": "Not only did we have cake,but there were cupcakes and other deserts.SO MANY SWEETS!", "album_id": "560264", "photo_flickr_id": "24507346", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "48850", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "not only did we have cake , but there were cupcakes and other deserts.so many sweets !", "storylet_id": "244253"}], [{"original_text": "There are the signs I helped to make for the retiree party.The main one I worked on was the congratulations retirees.", "album_id": "560264", "photo_flickr_id": "24507497", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "48850", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are the signs i helped to make for the retiree party.the main one i worked on was the congratulations retirees .", "storylet_id": "244254"}], [{"original_text": "We had a party at work today.", "album_id": "560264", "photo_flickr_id": "24507522", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "48851", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a party at work today .", "storylet_id": "244255"}], [{"original_text": "We had a great time.", "album_id": "560264", "photo_flickr_id": "24507376", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "48851", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a great time .", "storylet_id": "244256"}], [{"original_text": "We made a lot of conversation.", "album_id": "560264", "photo_flickr_id": "24507436", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "48851", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we made a lot of conversation .", "storylet_id": "244257"}], [{"original_text": "And learned a lot of things.", "album_id": "560264", "photo_flickr_id": "24507350", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "48851", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and learned a lot of things .", "storylet_id": "244258"}], [{"original_text": "There was a lot of food there.", "album_id": "560264", "photo_flickr_id": "24507346", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "48851", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a lot of food there .", "storylet_id": "244259"}], [{"original_text": "The teachers happily gathered in the school gym to celebrate", "album_id": "560264", "photo_flickr_id": "24507522", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48852", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the teachers happily gathered in the school gym to celebrate", "storylet_id": "244260"}], [{"original_text": "Mr. Klink's retirement! He had loved this school with all of his heart,", "album_id": "560264", "photo_flickr_id": "24507376", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48852", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mr. klink 's retirement ! he had loved this school with all of his heart ,", "storylet_id": "244261"}], [{"original_text": "and he had loved his fellow faculty members,", "album_id": "560264", "photo_flickr_id": "24507436", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48852", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and he had loved his fellow faculty members ,", "storylet_id": "244262"}], [{"original_text": "but it was time to move on and to let someone younger take over his job,", "album_id": "560264", "photo_flickr_id": "24507350", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48852", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but it was time to move on and to let someone younger take over his job ,", "storylet_id": "244263"}], [{"original_text": "but not before he got to eat some delicious cake!", "album_id": "560264", "photo_flickr_id": "24507346", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48852", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but not before he got to eat some delicious cake !", "storylet_id": "244264"}], [{"original_text": "A bunch of people gather in a room.", "album_id": "560264", "photo_flickr_id": "24507522", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48853", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a bunch of people gather in a room .", "storylet_id": "244265"}], [{"original_text": "Two people are conversing.", "album_id": "560264", "photo_flickr_id": "24507376", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48853", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "two people are conversing .", "storylet_id": "244266"}], [{"original_text": "A bunch of people are talking.", "album_id": "560264", "photo_flickr_id": "24507436", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48853", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a bunch of people are talking .", "storylet_id": "244267"}], [{"original_text": "People are sitting at the table.", "album_id": "560264", "photo_flickr_id": "24507350", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48853", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people are sitting at the table .", "storylet_id": "244268"}], [{"original_text": "This is a picture of sweets.", "album_id": "560264", "photo_flickr_id": "24507346", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "48853", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of sweets .", "storylet_id": "244269"}], [{"original_text": "Gathering friends and family for Jim's retirement.", "album_id": "560264", "photo_flickr_id": "24507522", "setting": "last-3-pick-old-and-tell", "worker_id": "SV0BV69WZBW017J", "story_id": "48854", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "gathering friends and family for [male] 's retirement .", "storylet_id": "244270"}], [{"original_text": "Sharing stories w/ old friends.", "album_id": "560264", "photo_flickr_id": "24507350", "setting": "last-3-pick-old-and-tell", "worker_id": "SV0BV69WZBW017J", "story_id": "48854", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sharing stories w/ old friends .", "storylet_id": "244271"}], [{"original_text": "Anyone want cake?!", "album_id": "560264", "photo_flickr_id": "24507330", "setting": "last-3-pick-old-and-tell", "worker_id": "SV0BV69WZBW017J", "story_id": "48854", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "anyone want cake ? !", "storylet_id": "244272"}], [{"original_text": "Jenny made a beautiful cupcake display.", "album_id": "560264", "photo_flickr_id": "24507346", "setting": "last-3-pick-old-and-tell", "worker_id": "SV0BV69WZBW017J", "story_id": "48854", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] made a beautiful cupcake display .", "storylet_id": "244273"}], [{"original_text": "Congrats Mr. Klink!!!!", "album_id": "560264", "photo_flickr_id": "24507497", "setting": "last-3-pick-old-and-tell", "worker_id": "SV0BV69WZBW017J", "story_id": "48854", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "congrats mr . klink ! ! ! !", "storylet_id": "244274"}], [{"original_text": "When everyone arrived we all got ready to go.", "album_id": "78660", "photo_flickr_id": "3139743", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48855", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when everyone arrived we all got ready to go .", "storylet_id": "244275"}], [{"original_text": "We got in the car and went to the restaurant.", "album_id": "78660", "photo_flickr_id": "3139767", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48855", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got in the car and went to the restaurant .", "storylet_id": "244276"}], [{"original_text": "There were a lot of people on the guest list.", "album_id": "78660", "photo_flickr_id": "3139777", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48855", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of people on the guest list .", "storylet_id": "244277"}], [{"original_text": "We were finally seated.", "album_id": "78660", "photo_flickr_id": "3139775", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48855", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were finally seated .", "storylet_id": "244278"}], [{"original_text": "We had a great time at the restaurant.", "album_id": "78660", "photo_flickr_id": "3139778", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48855", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time at the restaurant .", "storylet_id": "244279"}], [{"original_text": "Some friends got together for a house party.", "album_id": "78660", "photo_flickr_id": "3139794", "setting": "first-2-pick-and-tell", "worker_id": "VAVWYLD4TRTDH79", "story_id": "48856", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some friends got together for a house party .", "storylet_id": "244280"}], [{"original_text": "They cooked together in the kitchen.", "album_id": "78660", "photo_flickr_id": "3139806", "setting": "first-2-pick-and-tell", "worker_id": "VAVWYLD4TRTDH79", "story_id": "48856", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they cooked together in the kitchen .", "storylet_id": "244281"}], [{"original_text": "When they had finished cooking, they ate and talked in the living room.", "album_id": "78660", "photo_flickr_id": "3139789", "setting": "first-2-pick-and-tell", "worker_id": "VAVWYLD4TRTDH79", "story_id": "48856", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when they had finished cooking , they ate and talked in the living room .", "storylet_id": "244282"}], [{"original_text": "After dinner there was dancing and games.", "album_id": "78660", "photo_flickr_id": "3139847", "setting": "first-2-pick-and-tell", "worker_id": "VAVWYLD4TRTDH79", "story_id": "48856", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after dinner there was dancing and games .", "storylet_id": "244283"}], [{"original_text": "When the party was over, everyone helped do the dishes and clean up.", "album_id": "78660", "photo_flickr_id": "3139821", "setting": "first-2-pick-and-tell", "worker_id": "VAVWYLD4TRTDH79", "story_id": "48856", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the party was over , everyone helped do the dishes and clean up .", "storylet_id": "244284"}], [{"original_text": "It was the night of our big school dance.", "album_id": "78660", "photo_flickr_id": "3139743", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "48857", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the night of our big school dance .", "storylet_id": "244285"}], [{"original_text": "Everyone dressed up and looked so glamorous and fancy.", "album_id": "78660", "photo_flickr_id": "3139767", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "48857", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone dressed up and looked so glamorous and fancy .", "storylet_id": "244286"}], [{"original_text": "We made reservations so we didn't have to wait in line for dinner.", "album_id": "78660", "photo_flickr_id": "3139777", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "48857", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we made reservations so we did n't have to wait in line for dinner .", "storylet_id": "244287"}], [{"original_text": "Our friends sat across the way from us to dine in privacy.", "album_id": "78660", "photo_flickr_id": "3139775", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "48857", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our friends sat across the way from us to dine in privacy .", "storylet_id": "244288"}], [{"original_text": "It was a great meal and the dance was even better.", "album_id": "78660", "photo_flickr_id": "3139778", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "48857", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great meal and the dance was even better .", "storylet_id": "244289"}], [{"original_text": "It is time again for our monthly gaming party.", "album_id": "78660", "photo_flickr_id": "3139794", "setting": "last-3-pick-old-and-tell", "worker_id": "VNVA6GCE27GOXR9", "story_id": "48858", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is time again for our monthly gaming party .", "storylet_id": "244290"}], [{"original_text": "No party would be complete without some snacks to fuel our furor.", "album_id": "78660", "photo_flickr_id": "3139806", "setting": "last-3-pick-old-and-tell", "worker_id": "VNVA6GCE27GOXR9", "story_id": "48858", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "no party would be complete without some snacks to fuel our furor .", "storylet_id": "244291"}], [{"original_text": "We're all together now, and the competition is heating up.", "album_id": "78660", "photo_flickr_id": "3139789", "setting": "last-3-pick-old-and-tell", "worker_id": "VNVA6GCE27GOXR9", "story_id": "48858", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we 're all together now , and the competition is heating up .", "storylet_id": "244292"}], [{"original_text": "Greg rules in the kareoke class. He always gets five stars. What a ham!", "album_id": "78660", "photo_flickr_id": "3139847", "setting": "last-3-pick-old-and-tell", "worker_id": "VNVA6GCE27GOXR9", "story_id": "48858", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] rules in the kareoke class . he always gets five stars . what a ham !", "storylet_id": "244293"}], [{"original_text": "The losers have to clean up after everyone.", "album_id": "78660", "photo_flickr_id": "3139821", "setting": "last-3-pick-old-and-tell", "worker_id": "VNVA6GCE27GOXR9", "story_id": "48858", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the losers have to clean up after everyone .", "storylet_id": "244294"}], [{"original_text": "Some of our first guests chat at our house warming party.", "album_id": "78660", "photo_flickr_id": "3139794", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48859", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some of our first guests chat at our house warming party .", "storylet_id": "244295"}], [{"original_text": "Julie helps herself to some of the snacks.", "album_id": "78660", "photo_flickr_id": "3139806", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48859", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] helps herself to some of the snacks .", "storylet_id": "244296"}], [{"original_text": "All are gathered in the living room talking and having a great time.", "album_id": "78660", "photo_flickr_id": "3139789", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48859", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all are gathered in the living room talking and having a great time .", "storylet_id": "244297"}], [{"original_text": "Sam does a little dancing to the music as Dennis looks on.", "album_id": "78660", "photo_flickr_id": "3139847", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48859", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] does a little dancing to the music as [male] looks on .", "storylet_id": "244298"}], [{"original_text": "The snacks sure were enjoyed and disappeared very quickly indeed. ", "album_id": "78660", "photo_flickr_id": "3139821", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48859", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the snacks sure were enjoyed and disappeared very quickly indeed .", "storylet_id": "244299"}], [{"original_text": "Everyone was looking forward to meeting the new baby.", "album_id": "227929", "photo_flickr_id": "8933097", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48860", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was looking forward to meeting the new baby .", "storylet_id": "244300"}], [{"original_text": "The baby was very happy to see everyone as well.", "album_id": "227929", "photo_flickr_id": "8933130", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48860", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the baby was very happy to see everyone as well .", "storylet_id": "244301"}], [{"original_text": "She was smiling at everyone and enjoyed the attention.", "album_id": "227929", "photo_flickr_id": "8933145", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48860", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was smiling at everyone and enjoyed the attention .", "storylet_id": "244302"}], [{"original_text": "He was a bit nervous holding her.", "album_id": "227929", "photo_flickr_id": "8933147", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48860", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was a bit nervous holding her .", "storylet_id": "244303"}], [{"original_text": "She loved to be held like that. It was a great day.", "album_id": "227929", "photo_flickr_id": "8933169", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48860", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she loved to be held like that . it was a great day .", "storylet_id": "244304"}], [{"original_text": "We're happy to announce the arrival of baby Steven!", "album_id": "227929", "photo_flickr_id": "8933145", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48861", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 're happy to announce the arrival of baby [male] !", "storylet_id": "244305"}], [{"original_text": "A proud mom with a sleeping baby Steven.", "album_id": "227929", "photo_flickr_id": "8933116", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48861", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a proud mom with a sleeping baby [male] .", "storylet_id": "244306"}], [{"original_text": "Dad also helped out on the naptime.", "album_id": "227929", "photo_flickr_id": "8933147", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48861", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad also helped out on the naptime .", "storylet_id": "244307"}], [{"original_text": "With mixed results! Dad still needs to work on his nap skills.", "album_id": "227929", "photo_flickr_id": "8933165", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48861", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with mixed results ! dad still needs to work on his nap skills .", "storylet_id": "244308"}], [{"original_text": "Aunt Peggy stepped in to save the day.", "album_id": "227929", "photo_flickr_id": "8933169", "setting": "first-2-pick-and-tell", "worker_id": "TJ103FKGPCKX8W5", "story_id": "48861", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "aunt [female] stepped in to save the day .", "storylet_id": "244309"}], [{"original_text": "Our newborn is home from the hospital. ", "album_id": "227929", "photo_flickr_id": "8933145", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48862", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our newborn is home from the hospital .", "storylet_id": "244310"}], [{"original_text": "He is so little, I cannot believe it. ", "album_id": "227929", "photo_flickr_id": "8933116", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48862", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he is so little , i can not believe it .", "storylet_id": "244311"}], [{"original_text": "Dad is so amazed by his new child", "album_id": "227929", "photo_flickr_id": "8933147", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48862", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad is so amazed by his new child", "storylet_id": "244312"}], [{"original_text": "Our baby likes sleeping next to him. ", "album_id": "227929", "photo_flickr_id": "8933165", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48862", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our baby likes sleeping next to him .", "storylet_id": "244313"}], [{"original_text": "But mom is always ready to comfort him. ", "album_id": "227929", "photo_flickr_id": "8933169", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48862", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but mom is always ready to comfort him .", "storylet_id": "244314"}], [{"original_text": "After 45 hours of labor baby Timothy is finally here.", "album_id": "227929", "photo_flickr_id": "8933097", "setting": "last-3-pick-old-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "48863", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after 45 hours of labor baby [male] is finally here .", "storylet_id": "244315"}], [{"original_text": "He has his mom's eyes, his mom's nose, and his dad's hair.", "album_id": "227929", "photo_flickr_id": "8933130", "setting": "last-3-pick-old-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "48863", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he has his mom 's eyes , his mom 's nose , and his dad 's hair .", "storylet_id": "244316"}], [{"original_text": "He even paused to mug for the camera!", "album_id": "227929", "photo_flickr_id": "8933145", "setting": "last-3-pick-old-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "48863", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he even paused to mug for the camera !", "storylet_id": "244317"}], [{"original_text": "He looks just like daddy.", "album_id": "227929", "photo_flickr_id": "8933147", "setting": "last-3-pick-old-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "48863", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he looks just like daddy .", "storylet_id": "244318"}], [{"original_text": "Aunt Lisa is so a happy.", "album_id": "227929", "photo_flickr_id": "8933169", "setting": "last-3-pick-old-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "48863", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "aunt [female] is so a happy .", "storylet_id": "244319"}], [{"original_text": "The baby was happy to see his father", "album_id": "227929", "photo_flickr_id": "8933145", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48864", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the baby was happy to see his father", "storylet_id": "244320"}], [{"original_text": "and then went to sleep.", "album_id": "227929", "photo_flickr_id": "8933116", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48864", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and then went to sleep .", "storylet_id": "244321"}], [{"original_text": "The father was holding it ", "album_id": "227929", "photo_flickr_id": "8933147", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48864", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the father was holding it", "storylet_id": "244322"}], [{"original_text": "and it started to cry", "album_id": "227929", "photo_flickr_id": "8933165", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48864", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and it started to cry", "storylet_id": "244323"}], [{"original_text": "so the mother cheered up the baby.", "album_id": "227929", "photo_flickr_id": "8933169", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48864", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so the mother cheered up the baby .", "storylet_id": "244324"}], [{"original_text": "We had pulled our friends out for a surprise party; we heard they were taking a long trip to China to see different family members, so we had a cake made.", "album_id": "1012491", "photo_flickr_id": "32666282", "setting": "first-2-pick-and-tell", "worker_id": "FLHYY0XX5KCQEFT", "story_id": "48865", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had pulled our friends out for a surprise party ; we heard they were taking a long trip to location to see different family members , so we had a cake made .", "storylet_id": "244325"}], [{"original_text": "Here it is, though they misspelled Waung's name, though. Fair enough, considering how uncommon it was.", "album_id": "1012491", "photo_flickr_id": "32666154", "setting": "first-2-pick-and-tell", "worker_id": "FLHYY0XX5KCQEFT", "story_id": "48865", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here it is , though they misspelled waung 's name , though . fair enough , considering how uncommon it was .", "storylet_id": "244326"}], [{"original_text": "Everyone was down there, though it was a real muted, work type party.", "album_id": "1012491", "photo_flickr_id": "32666179", "setting": "first-2-pick-and-tell", "worker_id": "FLHYY0XX5KCQEFT", "story_id": "48865", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was down there , though it was a real muted , work type party .", "storylet_id": "244327"}], [{"original_text": "Waung really enjoyed it, though. He felt a little awkward at first, but he got into it after some time. ", "album_id": "1012491", "photo_flickr_id": "32666264", "setting": "first-2-pick-and-tell", "worker_id": "FLHYY0XX5KCQEFT", "story_id": "48865", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "waung really enjoyed it , though . he felt a little awkward at first , but he got into it after some time .", "storylet_id": "244328"}], [{"original_text": "It was a pretty great party for a work-engagement type thing. I'm glad I planned it. ", "album_id": "1012491", "photo_flickr_id": "32666372", "setting": "first-2-pick-and-tell", "worker_id": "FLHYY0XX5KCQEFT", "story_id": "48865", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a pretty great party for a work-engagement type thing . i 'm glad i planned it .", "storylet_id": "244329"}], [{"original_text": "I made a special cake for my friend for his birthday.", "album_id": "1012491", "photo_flickr_id": "32666126", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48866", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i made a special cake for my friend for his birthday .", "storylet_id": "244330"}], [{"original_text": "I invited everyone of our friends.", "album_id": "1012491", "photo_flickr_id": "32666179", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48866", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i invited everyone of our friends .", "storylet_id": "244331"}], [{"original_text": "It was very crowded in the small apartment.", "album_id": "1012491", "photo_flickr_id": "32666242", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48866", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was very crowded in the small apartment .", "storylet_id": "244332"}], [{"original_text": "Everyone enjoyed the cake.", "album_id": "1012491", "photo_flickr_id": "32666251", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48866", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone enjoyed the cake .", "storylet_id": "244333"}], [{"original_text": "Some people wanted seconds.", "album_id": "1012491", "photo_flickr_id": "32666264", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48866", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people wanted seconds .", "storylet_id": "244334"}], [{"original_text": "A couple guys from our China branch came to the US for a month. ", "album_id": "1012491", "photo_flickr_id": "32666282", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48867", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple guys from our location branch came to the location for a month .", "storylet_id": "244335"}], [{"original_text": "We welcomed them with a cookie cake. ", "album_id": "1012491", "photo_flickr_id": "32666154", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48867", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we welcomed them with a cookie cake .", "storylet_id": "244336"}], [{"original_text": "The welcome event was good down time. ", "album_id": "1012491", "photo_flickr_id": "32666179", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48867", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the welcome event was good down time .", "storylet_id": "244337"}], [{"original_text": "One of the guys wasn't used the sweetness of American food and turned down his slice. ", "album_id": "1012491", "photo_flickr_id": "32666264", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48867", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the guys was n't used the sweetness of american food and turned down his slice .", "storylet_id": "244338"}], [{"original_text": "Us guys ate it up though, it was delicious. ", "album_id": "1012491", "photo_flickr_id": "32666372", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48867", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "us guys ate it up though , it was delicious .", "storylet_id": "244339"}], [{"original_text": "Two friends, Henry and Wang, decide that they want to take a trip to China to explore their heritage.", "album_id": "1012491", "photo_flickr_id": "32666282", "setting": "last-3-pick-old-and-tell", "worker_id": "U1GKMBI677UROZI", "story_id": "48868", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two friends , [male] and wang , decide that they want to take a trip to location to explore their heritage .", "storylet_id": "244340"}], [{"original_text": "Their friends decide to throw them a goodbye party and one friend made them a special desert.", "album_id": "1012491", "photo_flickr_id": "32666154", "setting": "last-3-pick-old-and-tell", "worker_id": "U1GKMBI677UROZI", "story_id": "48868", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their friends decide to throw them a goodbye party and one friend made them a special desert .", "storylet_id": "244341"}], [{"original_text": "Many friends show up to their goodbye party.", "album_id": "1012491", "photo_flickr_id": "32666179", "setting": "last-3-pick-old-and-tell", "worker_id": "U1GKMBI677UROZI", "story_id": "48868", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many friends show up to their goodbye party .", "storylet_id": "244342"}], [{"original_text": "Henry decides he should be the one to cut the cake. ", "album_id": "1012491", "photo_flickr_id": "32666264", "setting": "last-3-pick-old-and-tell", "worker_id": "U1GKMBI677UROZI", "story_id": "48868", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] decides he should be the one to cut the cake .", "storylet_id": "244343"}], [{"original_text": "All the friends enjoy the cake that was made and wish Henry and Wang a safe trip.", "album_id": "1012491", "photo_flickr_id": "32666372", "setting": "last-3-pick-old-and-tell", "worker_id": "U1GKMBI677UROZI", "story_id": "48868", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the friends enjoy the cake that was made and wish [male] and wang a safe trip .", "storylet_id": "244344"}], [{"original_text": "This was the office going away party for Huang and Wang our representatives for China office.", "album_id": "1012491", "photo_flickr_id": "32666126", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "48869", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the office going away party for huang and wang our representatives for location office .", "storylet_id": "244345"}], [{"original_text": "We got them a cake and most everyone stayed after hours to say good bye.", "album_id": "1012491", "photo_flickr_id": "32666179", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "48869", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got them a cake and most everyone stayed after hours to say good bye .", "storylet_id": "244346"}], [{"original_text": "This was the moment when they were forced to give a speech.", "album_id": "1012491", "photo_flickr_id": "32666242", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "48869", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was the moment when they were forced to give a speech .", "storylet_id": "244347"}], [{"original_text": "They didn't expect this so it was quite amusing watching them try to shy away.", "album_id": "1012491", "photo_flickr_id": "32666251", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "48869", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they did n't expect this so it was quite amusing watching them try to shy away .", "storylet_id": "244348"}], [{"original_text": "Huang making the first cut of the cake so we could finally partake. ", "album_id": "1012491", "photo_flickr_id": "32666264", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "48869", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "huang making the first cut of the cake so we could finally partake .", "storylet_id": "244349"}], [{"original_text": "Everyone comes to the park and gather for a good time. ", "album_id": "8955", "photo_flickr_id": "384783", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "48870", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone comes to the park and gather for a good time .", "storylet_id": "244350"}], [{"original_text": "Once you are able to find a spot you take it for yourself.", "album_id": "8955", "photo_flickr_id": "384784", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "48870", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once you are able to find a spot you take it for yourself .", "storylet_id": "244351"}], [{"original_text": "A place where you can put your tent and relax.", "album_id": "8955", "photo_flickr_id": "384789", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "48870", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a place where you can put your tent and relax .", "storylet_id": "244352"}], [{"original_text": "We all sleep overnight and get ready for convention the next day. ", "album_id": "8955", "photo_flickr_id": "384790", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "48870", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all sleep overnight and get ready for convention the next day .", "storylet_id": "244353"}], [{"original_text": "When the show starts everybody is cooking,eating and waiting for the speaker to begin.", "album_id": "8955", "photo_flickr_id": "384821", "setting": "first-2-pick-and-tell", "worker_id": "VGXEWUL7WXTFESC", "story_id": "48870", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the show starts everybody is cooking , eating and waiting for the speaker to begin .", "storylet_id": "244354"}], [{"original_text": "The sky was so blue that day, we knew it would be beautiful out.", "album_id": "8955", "photo_flickr_id": "384788", "setting": "first-2-pick-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48871", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sky was so blue that day , we knew it would be beautiful out .", "storylet_id": "244355"}], [{"original_text": "Everyone had set up their tents the night before and were waiting.", "album_id": "8955", "photo_flickr_id": "384790", "setting": "first-2-pick-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48871", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone had set up their tents the night before and were waiting .", "storylet_id": "244356"}], [{"original_text": "Then, one by one they came to the stages.", "album_id": "8955", "photo_flickr_id": "384786", "setting": "first-2-pick-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48871", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then , one by one they came to the stages .", "storylet_id": "244357"}], [{"original_text": "The stage was crowded around by so many people.", "album_id": "8955", "photo_flickr_id": "384818", "setting": "first-2-pick-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48871", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the stage was crowded around by so many people .", "storylet_id": "244358"}], [{"original_text": "The bands were so amazing to see live.", "album_id": "8955", "photo_flickr_id": "384820", "setting": "first-2-pick-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "48871", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bands were so amazing to see live .", "storylet_id": "244359"}], [{"original_text": "We decided to walk to the festival. ", "album_id": "8955", "photo_flickr_id": "384783", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48872", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to walk to the festival .", "storylet_id": "244360"}], [{"original_text": "The crowds hadn't quite woken up yet. ", "album_id": "8955", "photo_flickr_id": "384784", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48872", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowds had n't quite woken up yet .", "storylet_id": "244361"}], [{"original_text": "Many were still in their tents, set up by out of towners. ", "album_id": "8955", "photo_flickr_id": "384789", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48872", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many were still in their tents , set up by out of towners .", "storylet_id": "244362"}], [{"original_text": "There were lots of test in the camping area. ", "album_id": "8955", "photo_flickr_id": "384790", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48872", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were lots of test in the camping area .", "storylet_id": "244363"}], [{"original_text": "But right on time, the crowd was ready to go! ", "album_id": "8955", "photo_flickr_id": "384821", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48872", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but right on time , the crowd was ready to go !", "storylet_id": "244364"}], [{"original_text": "I wonderful day for a concert. ", "album_id": "8955", "photo_flickr_id": "384783", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48873", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i wonderful day for a concert .", "storylet_id": "244365"}], [{"original_text": "Everyone began filling in. ", "album_id": "8955", "photo_flickr_id": "384784", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48873", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone began filling in .", "storylet_id": "244366"}], [{"original_text": "We had our tent set up ready to go. ", "album_id": "8955", "photo_flickr_id": "384789", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48873", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had our tent set up ready to go .", "storylet_id": "244367"}], [{"original_text": "It was like a city just sprung up at once. ", "album_id": "8955", "photo_flickr_id": "384790", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48873", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was like a city just sprung up at once .", "storylet_id": "244368"}], [{"original_text": "Time for the show to begin, fun!", "album_id": "8955", "photo_flickr_id": "384821", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "48873", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time for the show to begin , fun !", "storylet_id": "244369"}], [{"original_text": "People were walking and seeing the flags", "album_id": "8955", "photo_flickr_id": "384783", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48874", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people were walking and seeing the flags", "storylet_id": "244370"}], [{"original_text": "before going to the open air stadium.", "album_id": "8955", "photo_flickr_id": "384784", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48874", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before going to the open air stadium .", "storylet_id": "244371"}], [{"original_text": "They then went back to the tents", "album_id": "8955", "photo_flickr_id": "384789", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48874", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they then went back to the tents", "storylet_id": "244372"}], [{"original_text": "to socialize with people.", "album_id": "8955", "photo_flickr_id": "384790", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48874", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to socialize with people .", "storylet_id": "244373"}], [{"original_text": "The festival continued the next day.", "album_id": "8955", "photo_flickr_id": "384821", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48874", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the festival continued the next day .", "storylet_id": "244374"}], [{"original_text": "They arrived the night before. ", "album_id": "444564", "photo_flickr_id": "18878974", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48875", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they arrived the night before .", "storylet_id": "244375"}], [{"original_text": "Lots of people camped out on the sidewalk.", "album_id": "444564", "photo_flickr_id": "18876662", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48875", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of people camped out on the sidewalk .", "storylet_id": "244376"}], [{"original_text": "They set up tents to get out of the rain.", "album_id": "444564", "photo_flickr_id": "18876778", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48875", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they set up tents to get out of the rain .", "storylet_id": "244377"}], [{"original_text": "There would stay there all night if they had too. ", "album_id": "444564", "photo_flickr_id": "18878640", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48875", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there would stay there all night if they had too .", "storylet_id": "244378"}], [{"original_text": "Everyone made friends. ", "album_id": "444564", "photo_flickr_id": "18878796", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "48875", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone made friends .", "storylet_id": "244379"}], [{"original_text": "There were a lot of people sleeping on the street when I went to New York yesterday.", "album_id": "444564", "photo_flickr_id": "18876662", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48876", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of people sleeping on the street when i went to location location yesterday .", "storylet_id": "244380"}], [{"original_text": "There were a lot of tents set up.", "album_id": "444564", "photo_flickr_id": "18876778", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48876", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of tents set up .", "storylet_id": "244381"}], [{"original_text": "Some of the people let me examine their tents.", "album_id": "444564", "photo_flickr_id": "18877171", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48876", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the people let me examine their tents .", "storylet_id": "244382"}], [{"original_text": "They were very comfortable.", "album_id": "444564", "photo_flickr_id": "18877304", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48876", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were very comfortable .", "storylet_id": "244383"}], [{"original_text": "They were ready to spend the night outdoors.", "album_id": "444564", "photo_flickr_id": "18877395", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48876", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were ready to spend the night outdoors .", "storylet_id": "244384"}], [{"original_text": "So we had an awesome opportunity presented to us.", "album_id": "444564", "photo_flickr_id": "18878974", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48877", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so we had an awesome opportunity presented to us .", "storylet_id": "244385"}], [{"original_text": "WE got to camp out right inside Times Square.", "album_id": "444564", "photo_flickr_id": "18876662", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48877", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to camp out right inside location location .", "storylet_id": "244386"}], [{"original_text": "Few have ever had this honor bestowed on them.", "album_id": "444564", "photo_flickr_id": "18876778", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48877", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "few have ever had this honor bestowed on them .", "storylet_id": "244387"}], [{"original_text": "Yet we won a contest and got to experience it.", "album_id": "444564", "photo_flickr_id": "18878640", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48877", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "yet we won a contest and got to experience it .", "storylet_id": "244388"}], [{"original_text": "Truly it is the city that never sleeps.", "album_id": "444564", "photo_flickr_id": "18878796", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48877", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "truly it is the city that never sleeps .", "storylet_id": "244389"}], [{"original_text": "The students prepared for their demonstration downtown tonight.", "album_id": "444564", "photo_flickr_id": "18878974", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48878", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the students prepared for their demonstration downtown tonight .", "storylet_id": "244390"}], [{"original_text": "They took their tents out of boxes", "album_id": "444564", "photo_flickr_id": "18876662", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48878", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took their tents out of boxes", "storylet_id": "244391"}], [{"original_text": "and started to set them up.", "album_id": "444564", "photo_flickr_id": "18876778", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48878", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and started to set them up .", "storylet_id": "244392"}], [{"original_text": "Then they sat in them.", "album_id": "444564", "photo_flickr_id": "18878640", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48878", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they sat in them .", "storylet_id": "244393"}], [{"original_text": "They sat in them all night, while passerby wandered by and wondered what they were up to. ", "album_id": "444564", "photo_flickr_id": "18878796", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48878", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they sat in them all night , while passerby wandered by and wondered what they were up to .", "storylet_id": "244394"}], [{"original_text": "This was us in New York preparing for a long wait.", "album_id": "444564", "photo_flickr_id": "18878974", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "48879", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was us in location location preparing for a long wait .", "storylet_id": "244395"}], [{"original_text": "I mean long wait camping tents included.", "album_id": "444564", "photo_flickr_id": "18876662", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "48879", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i mean long wait camping tents included .", "storylet_id": "244396"}], [{"original_text": "We were so lucky to be the first to arrive.", "album_id": "444564", "photo_flickr_id": "18876778", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "48879", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were so lucky to be the first to arrive .", "storylet_id": "244397"}], [{"original_text": "We camped all night awaiting apples release of the new iphone.", "album_id": "444564", "photo_flickr_id": "18878640", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "48879", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we camped all night awaiting apples release of the new iphone .", "storylet_id": "244398"}], [{"original_text": "Hot dog from street vendor were not the best idea when camping out.", "album_id": "444564", "photo_flickr_id": "18878796", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "48879", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "hot dog from street vendor were not the best idea when camping out .", "storylet_id": "244399"}], [{"original_text": "There were a lot of people at the fair.", "album_id": "758123", "photo_flickr_id": "34220377", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48880", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of people at the fair .", "storylet_id": "244400"}], [{"original_text": "Some of them were drunk.", "album_id": "758123", "photo_flickr_id": "34219735", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48880", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of them were drunk .", "storylet_id": "244401"}], [{"original_text": "They had a great time.", "album_id": "758123", "photo_flickr_id": "34220082", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48880", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a great time .", "storylet_id": "244402"}], [{"original_text": "Everyone was smiling.", "album_id": "758123", "photo_flickr_id": "34219786", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48880", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was smiling .", "storylet_id": "244403"}], [{"original_text": "Afterward we went to the park and got dressed there.", "album_id": "758123", "photo_flickr_id": "34218541", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48880", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we went to the park and got dressed there .", "storylet_id": "244404"}], [{"original_text": "He got ready for his big day.", "album_id": "758123", "photo_flickr_id": "34218541", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "48881", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he got ready for his big day .", "storylet_id": "244405"}], [{"original_text": "They chose a carnival theme for the ceremony.", "album_id": "758123", "photo_flickr_id": "34220509", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "48881", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they chose a carnival theme for the ceremony .", "storylet_id": "244406"}], [{"original_text": "There were carnival rides at the reception.", "album_id": "758123", "photo_flickr_id": "34220260", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "48881", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were carnival rides at the reception .", "storylet_id": "244407"}], [{"original_text": "They even had a performance by acrobats.", "album_id": "758123", "photo_flickr_id": "34219997", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "48881", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even had a performance by acrobats .", "storylet_id": "244408"}], [{"original_text": "The couple had a great time at their wedding!", "album_id": "758123", "photo_flickr_id": "34218707", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "48881", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the couple had a great time at their wedding !", "storylet_id": "244409"}], [{"original_text": "Everyone is all dressed up nice to attend the festival.", "album_id": "758123", "photo_flickr_id": "34218541", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48882", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone is all dressed up nice to attend the festival .", "storylet_id": "244410"}], [{"original_text": "So many great shows this year, and talented entertainers.", "album_id": "758123", "photo_flickr_id": "34220509", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48882", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so many great shows this year , and talented entertainers .", "storylet_id": "244411"}], [{"original_text": "The rides are the best, no expense was spared.", "album_id": "758123", "photo_flickr_id": "34220260", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48882", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the rides are the best , no expense was spared .", "storylet_id": "244412"}], [{"original_text": "Even a daring trapeze act to delight the crowd", "album_id": "758123", "photo_flickr_id": "34219997", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48882", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even a daring trapeze act to delight the crowd", "storylet_id": "244413"}], [{"original_text": "Some just like to enjoy the great music.", "album_id": "758123", "photo_flickr_id": "34218707", "setting": "last-3-pick-old-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "48882", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some just like to enjoy the great music .", "storylet_id": "244414"}], [{"original_text": "A pristine night at the carnival after the opera.", "album_id": "758123", "photo_flickr_id": "34220377", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48883", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a pristine night at the carnival after the opera .", "storylet_id": "244415"}], [{"original_text": "It feels good to unwind after such a regal event.", "album_id": "758123", "photo_flickr_id": "34219735", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48883", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it feels good to unwind after such a regal event .", "storylet_id": "244416"}], [{"original_text": "Makes you feel like a kid after all.", "album_id": "758123", "photo_flickr_id": "34220082", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48883", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "makes you feel like a kid after all .", "storylet_id": "244417"}], [{"original_text": "And really brings out the smiles inside everyone.", "album_id": "758123", "photo_flickr_id": "34219786", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48883", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and really brings out the smiles inside everyone .", "storylet_id": "244418"}], [{"original_text": "Before we return to the prim and proper world we are accustomed to.", "album_id": "758123", "photo_flickr_id": "34218541", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48883", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before we return to the prim and proper world we are accustomed to .", "storylet_id": "244419"}], [{"original_text": "My good friends had a circus themed wedding! ", "album_id": "758123", "photo_flickr_id": "34218541", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48884", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my good friends had a circus themed wedding !", "storylet_id": "244420"}], [{"original_text": "The wedding took place under a huge red tent.", "album_id": "758123", "photo_flickr_id": "34220509", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48884", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wedding took place under a huge red tent .", "storylet_id": "244421"}], [{"original_text": "There were rides for guests to enjoy!", "album_id": "758123", "photo_flickr_id": "34220260", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48884", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were rides for guests to enjoy !", "storylet_id": "244422"}], [{"original_text": "We also were treated to acrobats performing nearly impossible feats!", "album_id": "758123", "photo_flickr_id": "34219997", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48884", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also were treated to acrobats performing nearly impossible feats !", "storylet_id": "244423"}], [{"original_text": "Some of us were feeling slightly tipsy, and sang and danced!", "album_id": "758123", "photo_flickr_id": "34218707", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48884", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of us were feeling slightly tipsy , and sang and danced !", "storylet_id": "244424"}], [{"original_text": "The concert was a lot of fun last night.", "album_id": "462656", "photo_flickr_id": "19731231", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48885", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the concert was a lot of fun last night .", "storylet_id": "244425"}], [{"original_text": "The singer was very talented.", "album_id": "462656", "photo_flickr_id": "19731025", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48885", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the singer was very talented .", "storylet_id": "244426"}], [{"original_text": "He could also play the guitar very well.", "album_id": "462656", "photo_flickr_id": "19730669", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48885", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he could also play the guitar very well .", "storylet_id": "244427"}], [{"original_text": "It was very loud because I was really close to the stage.", "album_id": "462656", "photo_flickr_id": "19730621", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48885", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was very loud because i was really close to the stage .", "storylet_id": "244428"}], [{"original_text": "I had a great time though.", "album_id": "462656", "photo_flickr_id": "19730540", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48885", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time though .", "storylet_id": "244429"}], [{"original_text": "I went to see an awesome band called Bloc Party. ", "album_id": "462656", "photo_flickr_id": "19730000", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "48886", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to see an awesome band called organization organization .", "storylet_id": "244430"}], [{"original_text": "The lead singer was giving us his whole life. ", "album_id": "462656", "photo_flickr_id": "19730982", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "48886", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lead singer was giving us his whole life .", "storylet_id": "244431"}], [{"original_text": "As they say \"give the drummer sum\"! He did an awesome solo. ", "album_id": "462656", "photo_flickr_id": "19730920", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "48886", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as they say `` give the drummer sum '' ! he did an awesome solo .", "storylet_id": "244432"}], [{"original_text": "The lead and bass guitarist were in unison it was epic. ", "album_id": "462656", "photo_flickr_id": "19730127", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "48886", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lead and bass guitarist were in unison it was epic .", "storylet_id": "244433"}], [{"original_text": "Standing on the drum, wow, what a way to end the show I still can't stop thinking about it. ", "album_id": "462656", "photo_flickr_id": "19730075", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "48886", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "standing on the drum , wow , what a way to end the show i still ca n't stop thinking about it .", "storylet_id": "244434"}], [{"original_text": "We went to a concert to see our favorite singer Bob Singer. In the meantime we got to listen to some new groups too.", "album_id": "462656", "photo_flickr_id": "19731231", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "48887", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a concert to see our favorite singer [male] singer . in the meantime we got to listen to some new groups too .", "storylet_id": "244435"}], [{"original_text": "This group was a lot of hard rock. They were good, but real loud.", "album_id": "462656", "photo_flickr_id": "19731025", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "48887", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this group was a lot of hard rock . they were good , but real loud .", "storylet_id": "244436"}], [{"original_text": "This next group was good and the drums were fantastic. ", "album_id": "462656", "photo_flickr_id": "19730669", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "48887", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this next group was good and the drums were fantastic .", "storylet_id": "244437"}], [{"original_text": "This Drummer has a lot of talent and will go a lot of places in his career.", "album_id": "462656", "photo_flickr_id": "19730621", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "48887", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this drummer has a lot of talent and will go a lot of places in his career .", "storylet_id": "244438"}], [{"original_text": "The last group was just ok, I am not into the type of music he was singing but he really stirred up the audience.", "album_id": "462656", "photo_flickr_id": "19730540", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "48887", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last group was just ok , i am not into the type of music he was singing but he really stirred up the audience .", "storylet_id": "244439"}], [{"original_text": "Thank you Mom and Dad for the front row seats at the Bloc Party Concert.", "album_id": "462656", "photo_flickr_id": "19730000", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "48888", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "thank you mom and dad for the front row seats at the bloc party concert .", "storylet_id": "244440"}], [{"original_text": "The lead singer takes a moment to get the crowd worked up for the Drum solo.", "album_id": "462656", "photo_flickr_id": "19730982", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "48888", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lead singer takes a moment to get the crowd worked up for the drum solo .", "storylet_id": "244441"}], [{"original_text": "The drum solo got us even more pumped for the show.", "album_id": "462656", "photo_flickr_id": "19730920", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "48888", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the drum solo got us even more pumped for the show .", "storylet_id": "244442"}], [{"original_text": "This was the last song of the night. Watching these guys shred was unbelievable !", "album_id": "462656", "photo_flickr_id": "19730127", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "48888", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was the last song of the night . watching these guys shred was unbelievable !", "storylet_id": "244443"}], [{"original_text": "Sadly enough, every good show must end sometime. How's this for an encore?", "album_id": "462656", "photo_flickr_id": "19730075", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "48888", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sadly enough , every good show must end sometime . how 's this for an encore ?", "storylet_id": "244444"}], [{"original_text": "The singer is ready to do a concert getting all of his viewers excited.", "album_id": "462656", "photo_flickr_id": "19731231", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48889", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the singer is ready to do a concert getting all of his viewers excited .", "storylet_id": "244445"}], [{"original_text": "The singer kicks out with the first part of his concert.", "album_id": "462656", "photo_flickr_id": "19731025", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48889", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the singer kicks out with the first part of his concert .", "storylet_id": "244446"}], [{"original_text": "The next part is where the singer plays the guitar for his viewers.", "album_id": "462656", "photo_flickr_id": "19730669", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48889", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next part is where the singer plays the guitar for his viewers .", "storylet_id": "244447"}], [{"original_text": "For the last but not least the singer plays the drums.", "album_id": "462656", "photo_flickr_id": "19730621", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48889", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "for the last but not least the singer plays the drums .", "storylet_id": "244448"}], [{"original_text": "The singer says goodbye to all of his viewers and goes home.", "album_id": "462656", "photo_flickr_id": "19730540", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48889", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the singer says goodbye to all of his viewers and goes home .", "storylet_id": "244449"}], [{"original_text": "They filled the street and the bridge overhead.", "album_id": "56858", "photo_flickr_id": "2253573", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48890", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they filled the street and the bridge overhead .", "storylet_id": "244450"}], [{"original_text": "Many carried signs expressing political views.", "album_id": "56858", "photo_flickr_id": "2253553", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48890", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many carried signs expressing political views .", "storylet_id": "244451"}], [{"original_text": "Some brought along flags.", "album_id": "56858", "photo_flickr_id": "2253485", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48890", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some brought along flags .", "storylet_id": "244452"}], [{"original_text": "There were strong feelings in the crowd.", "album_id": "56858", "photo_flickr_id": "2253482", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48890", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were strong feelings in the crowd .", "storylet_id": "244453"}], [{"original_text": "The crowd eventually lessened over the day.", "album_id": "56858", "photo_flickr_id": "2253508", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48890", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the crowd eventually lessened over the day .", "storylet_id": "244454"}], [{"original_text": "Many people came out to support the cause today.", "album_id": "56858", "photo_flickr_id": "2253574", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48891", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people came out to support the cause today .", "storylet_id": "244455"}], [{"original_text": "We were one of many couples and that impressed us very much since this is so near to our hearts.", "album_id": "56858", "photo_flickr_id": "2253473", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48891", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were one of many couples and that impressed us very much since this is so near to our hearts .", "storylet_id": "244456"}], [{"original_text": "Many of the signs people made had compelling slogans.", "album_id": "56858", "photo_flickr_id": "2253477", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48891", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many of the signs people made had compelling slogans .", "storylet_id": "244457"}], [{"original_text": "Some people flew flags while others carried the signs.", "album_id": "56858", "photo_flickr_id": "2253485", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48891", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people flew flags while others carried the signs .", "storylet_id": "244458"}], [{"original_text": "We were moved to another location eventually by the authorities.", "album_id": "56858", "photo_flickr_id": "2253508", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "48891", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were moved to another location eventually by the authorities .", "storylet_id": "244459"}], [{"original_text": "Many people gathered today to protest the war.", "album_id": "56858", "photo_flickr_id": "2253573", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48892", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people gathered today to protest the war .", "storylet_id": "244460"}], [{"original_text": "We all stood together with our signs in peace to show our opposition.", "album_id": "56858", "photo_flickr_id": "2253553", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48892", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all stood together with our signs in peace to show our opposition .", "storylet_id": "244461"}], [{"original_text": "We marched down the street and held our signs.", "album_id": "56858", "photo_flickr_id": "2253485", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48892", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we marched down the street and held our signs .", "storylet_id": "244462"}], [{"original_text": "It was inspiring to see this many people band together under the same cause.", "album_id": "56858", "photo_flickr_id": "2253482", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48892", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was inspiring to see this many people band together under the same cause .", "storylet_id": "244463"}], [{"original_text": "At the end of the day, we all disbanded peacefully with respect knowing we had gotten our message heard.", "album_id": "56858", "photo_flickr_id": "2253508", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48892", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , we all disbanded peacefully with respect knowing we had gotten our message heard .", "storylet_id": "244464"}], [{"original_text": "We had really thought that anti-war rallies were a think of the past. ", "album_id": "56858", "photo_flickr_id": "2253574", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "48893", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had really thought that anti-war rallies were a think of the past .", "storylet_id": "244465"}], [{"original_text": "But Gloria and Stan wanted us to go and see that they are still going on today. ", "album_id": "56858", "photo_flickr_id": "2253473", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "48893", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but [female] and stan wanted us to go and see that they are still going on today .", "storylet_id": "244466"}], [{"original_text": "Sure enough, there were anti-war signs, chants, it had a real 60s feel to it. ", "album_id": "56858", "photo_flickr_id": "2253477", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "48893", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sure enough , there were anti-war signs , chants , it had a real 60s feel to it .", "storylet_id": "244467"}], [{"original_text": "People seem to be fed up with the whole Drone \"Robitic Killing Machine\" thing. ", "album_id": "56858", "photo_flickr_id": "2253485", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "48893", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people seem to be fed up with the whole drone `` robitic killing machine '' thing .", "storylet_id": "244468"}], [{"original_text": "But like everything else, all things end. And an hour after the protests, you couldn't even tell anything had happened there. ", "album_id": "56858", "photo_flickr_id": "2253508", "setting": "last-3-pick-old-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "48893", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but like everything else , all things end . and an hour after the protests , you could n't even tell anything had happened there .", "storylet_id": "244469"}], [{"original_text": "There were many people at the protest.", "album_id": "56858", "photo_flickr_id": "2253573", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48894", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many people at the protest .", "storylet_id": "244470"}], [{"original_text": "They had many signs", "album_id": "56858", "photo_flickr_id": "2253553", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48894", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had many signs", "storylet_id": "244471"}], [{"original_text": "and flags as well.", "album_id": "56858", "photo_flickr_id": "2253485", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48894", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and flags as well .", "storylet_id": "244472"}], [{"original_text": "They did not like the war", "album_id": "56858", "photo_flickr_id": "2253482", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48894", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they did not like the war", "storylet_id": "244473"}], [{"original_text": "and made this known before leaving.", "album_id": "56858", "photo_flickr_id": "2253508", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48894", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and made this known before leaving .", "storylet_id": "244474"}], [{"original_text": "Here we go with another one of those school function activities where the kids dress up and meet at school to get their awards during which snack food is served.", "album_id": "60113", "photo_flickr_id": "2390162", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "48895", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we go with another one of those school function activities where the kids dress up and meet at school to get their awards during which snack food is served .", "storylet_id": "244475"}], [{"original_text": "Some of the students prefer to get away from the crowd to enjoy their food and it looks like they found a good place.", "album_id": "60113", "photo_flickr_id": "2389880", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "48895", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the students prefer to get away from the crowd to enjoy their food and it looks like they found a good place .", "storylet_id": "244476"}], [{"original_text": "My friend's little brother seems to have found a fancy meeting room to spend his time in and he pulled out the first aid kit just in case it is needed.", "album_id": "60113", "photo_flickr_id": "2389870", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "48895", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend 's little brother seems to have found a fancy meeting room to spend his time in and he pulled out the first aid kit just in case it is needed .", "storylet_id": "244477"}], [{"original_text": "Now that I am finished, I will be glad to be getting back home because I really don't like crowds and these occasions.", "album_id": "60113", "photo_flickr_id": "2389892", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "48895", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now that i am finished , i will be glad to be getting back home because i really do n't like crowds and these occasions .", "storylet_id": "244478"}], [{"original_text": "My friend wanted to take a picture of my braces to show my Mom that I did not have candy stuck between my teeth.", "album_id": "60113", "photo_flickr_id": "2390694", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "48895", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my friend wanted to take a picture of my braces to show my mom that i did not have candy stuck between my teeth .", "storylet_id": "244479"}], [{"original_text": "He felt really good at the beginning of the night.", "album_id": "60113", "photo_flickr_id": "2269238", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48896", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he felt really good at the beginning of the night .", "storylet_id": "244480"}], [{"original_text": "The entranceway to the party.", "album_id": "60113", "photo_flickr_id": "2269199", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48896", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the entranceway to the party .", "storylet_id": "244481"}], [{"original_text": "One of the party goers had a bit to much to drink", "album_id": "60113", "photo_flickr_id": "2269200", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48896", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the party goers had a bit to much to drink", "storylet_id": "244482"}], [{"original_text": "Picture of a very large party.", "album_id": "60113", "photo_flickr_id": "2390162", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48896", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "picture of a very large party .", "storylet_id": "244483"}], [{"original_text": "Friends at the entrance to the party. ", "album_id": "60113", "photo_flickr_id": "2391549", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48896", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "friends at the entrance to the party .", "storylet_id": "244484"}], [{"original_text": "The kid burst out of the darkness screaming \"They're coming! They're coming!\". He looked scared out of his wits.", "album_id": "60113", "photo_flickr_id": "2269238", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48897", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kid burst out of the darkness screaming `` they 're coming ! they 're coming ! '' . he looked scared out of his wits .", "storylet_id": "244485"}], [{"original_text": "Outside of the lights of the parking lot it was just darkness. Who was coming? I had to know. ", "album_id": "60113", "photo_flickr_id": "2269199", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48897", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "outside of the lights of the parking lot it was just darkness . who was coming ? i had to know .", "storylet_id": "244486"}], [{"original_text": "Hey kid. Wait, it looks like he has fallen into some kind of trance. ", "album_id": "60113", "photo_flickr_id": "2269200", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48897", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "hey kid . wait , it looks like he has fallen into some kind of trance .", "storylet_id": "244487"}], [{"original_text": "I have to warn all the others inside. But what do I tell them? They're coming? They will think I'm nuts. ", "album_id": "60113", "photo_flickr_id": "2390162", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48897", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i have to warn all the others inside . but what do i tell them ? they 're coming ? they will think i 'm nuts .", "storylet_id": "244488"}], [{"original_text": "Oh crap, here they come! What are they? I'm getting out of here! It's every woman for herself!", "album_id": "60113", "photo_flickr_id": "2391549", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48897", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "oh crap , here they come ! what are they ? i 'm getting out of here ! it 's every woman for herself !", "storylet_id": "244489"}], [{"original_text": "This is my last day as a normal teen.", "album_id": "60113", "photo_flickr_id": "2390162", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48898", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my last day as a normal teen .", "storylet_id": "244490"}], [{"original_text": "Where did it all go wrong, what did I do.", "album_id": "60113", "photo_flickr_id": "2389880", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48898", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "where did it all go wrong , what did i do .", "storylet_id": "244491"}], [{"original_text": "I was a normal boy look, I was good.", "album_id": "60113", "photo_flickr_id": "2389870", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48898", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was a normal boy look , i was good .", "storylet_id": "244492"}], [{"original_text": "No no no, its not my turn it cant be.", "album_id": "60113", "photo_flickr_id": "2389892", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48898", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "no no no , its not my turn it cant be .", "storylet_id": "244493"}], [{"original_text": "Ill be a laughing stock with these on.", "album_id": "60113", "photo_flickr_id": "2390694", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48898", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ill be a laughing stock with these on .", "storylet_id": "244494"}], [{"original_text": "Adam is surprised he is having such a good night. He decided to spend the night at church with his family.", "album_id": "60113", "photo_flickr_id": "2269238", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "48899", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is surprised he is having such a good night . he decided to spend the night at church with his family .", "storylet_id": "244495"}], [{"original_text": "Adam takes some solo time and steps outside to talk to God.", "album_id": "60113", "photo_flickr_id": "2269199", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "48899", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] takes some solo time and steps outside to talk to god .", "storylet_id": "244496"}], [{"original_text": "Adam gets down on his knees. He closes his eyes and begins to pray. He thanks god for his life, then gets up and goes back into the church.", "album_id": "60113", "photo_flickr_id": "2269200", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "48899", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] gets down on his knees . he closes his eyes and begins to pray . he thanks god for his life , then gets up and goes back into the church .", "storylet_id": "244497"}], [{"original_text": "In church Adam's family praises the lord. Adam joins them in their praise. ", "album_id": "60113", "photo_flickr_id": "2390162", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "48899", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in church [male] 's family praises the lord . [male] joins them in their praise .", "storylet_id": "244498"}], [{"original_text": "After church Adam and his family join Adam in the lot for some individual group prayer. The family that prays together stays together!", "album_id": "60113", "photo_flickr_id": "2391549", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "48899", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after church [male] and his family join [male] in the lot for some individual group prayer . the family that prays together stays together !", "storylet_id": "244499"}], [{"original_text": "The Halloween party was kicking off.", "album_id": "246334", "photo_flickr_id": "9860784", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48900", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the halloween party was kicking off .", "storylet_id": "244500"}], [{"original_text": "It was a gore fest.", "album_id": "246334", "photo_flickr_id": "9860783", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48900", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a gore fest .", "storylet_id": "244501"}], [{"original_text": "It looked realistic.", "album_id": "246334", "photo_flickr_id": "9860785", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48900", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it looked realistic .", "storylet_id": "244502"}], [{"original_text": "The blood was everywhere.", "album_id": "246334", "photo_flickr_id": "9686701", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48900", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the blood was everywhere .", "storylet_id": "244503"}], [{"original_text": "Not a place in the whole building wasn't touched by it.", "album_id": "246334", "photo_flickr_id": "9860786", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48900", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "not a place in the whole building was n't touched by it .", "storylet_id": "244504"}], [{"original_text": "The theme for the party was grotesque.", "album_id": "246334", "photo_flickr_id": "9860783", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48901", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the theme for the party was grotesque .", "storylet_id": "244505"}], [{"original_text": "The costumes looked very realistic.", "album_id": "246334", "photo_flickr_id": "9860785", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48901", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the costumes looked very realistic .", "storylet_id": "244506"}], [{"original_text": "Some looked like horror movie characters.", "album_id": "246334", "photo_flickr_id": "9860786", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48901", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some looked like horror movie characters .", "storylet_id": "244507"}], [{"original_text": "Refreshments matched other decor.", "album_id": "246334", "photo_flickr_id": "9686504", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48901", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "refreshments matched other decor .", "storylet_id": "244508"}], [{"original_text": "The night was wild and entertaining.", "album_id": "246334", "photo_flickr_id": "9686505", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "48901", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night was wild and entertaining .", "storylet_id": "244509"}], [{"original_text": "I don't know what happened but I definitely had too much caffeine in the emergency room last night.", "album_id": "246334", "photo_flickr_id": "9860784", "setting": "last-3-pick-old-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "48902", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i do n't know what happened but i definitely had too much caffeine in the emergency room last night .", "storylet_id": "244510"}], [{"original_text": "Reviewing my camera footage I probably shouldn't of invited Steve and Larry.", "album_id": "246334", "photo_flickr_id": "9860783", "setting": "last-3-pick-old-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "48902", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "reviewing my camera footage i probably should n't of invited [male] and [male] .", "storylet_id": "244511"}], [{"original_text": "Apparently the nurses were having way too much fun too.", "album_id": "246334", "photo_flickr_id": "9860785", "setting": "last-3-pick-old-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "48902", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "apparently the nurses were having way too much fun too .", "storylet_id": "244512"}], [{"original_text": "Maybe the brunette was the one who brought the absinthe.", "album_id": "246334", "photo_flickr_id": "9686701", "setting": "last-3-pick-old-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "48902", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "maybe the brunette was the one who brought the absinthe .", "storylet_id": "244513"}], [{"original_text": "Looks like I had a great time, I hope the patient did too.", "album_id": "246334", "photo_flickr_id": "9860786", "setting": "last-3-pick-old-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "48902", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "looks like i had a great time , i hope the patient did too .", "storylet_id": "244514"}], [{"original_text": "The first to arrive to the gore party.", "album_id": "246334", "photo_flickr_id": "9860784", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "48903", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the first to arrive to the gore party .", "storylet_id": "244515"}], [{"original_text": "Its halloween and these two made a great pair.", "album_id": "246334", "photo_flickr_id": "9860783", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "48903", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "its halloween and these two made a great pair .", "storylet_id": "244516"}], [{"original_text": "She surprised the camera with a blood strewn smile.", "album_id": "246334", "photo_flickr_id": "9860785", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "48903", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she surprised the camera with a blood strewn smile .", "storylet_id": "244517"}], [{"original_text": "They look at the couple covered in blood.", "album_id": "246334", "photo_flickr_id": "9686701", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "48903", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they look at the couple covered in blood .", "storylet_id": "244518"}], [{"original_text": "The couple, drenched in blood pose for a moment.", "album_id": "246334", "photo_flickr_id": "9860786", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "48903", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the couple , drenched in blood pose for a moment .", "storylet_id": "244519"}], [{"original_text": "The party had many scary costumes", "album_id": "246334", "photo_flickr_id": "9860784", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48904", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party had many scary costumes", "storylet_id": "244520"}], [{"original_text": "including criminal ones.", "album_id": "246334", "photo_flickr_id": "9860783", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48904", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "including criminal ones .", "storylet_id": "244521"}], [{"original_text": "There were nurses of all kinds", "album_id": "246334", "photo_flickr_id": "9860785", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48904", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were nurses of all kinds", "storylet_id": "244522"}], [{"original_text": "and they took many photos", "album_id": "246334", "photo_flickr_id": "9686701", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48904", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and they took many photos", "storylet_id": "244523"}], [{"original_text": "and even kissed each other.", "album_id": "246334", "photo_flickr_id": "9860786", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48904", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and even kissed each other .", "storylet_id": "244524"}], [{"original_text": "Bryan loves to throw movie parties. ", "album_id": "347575", "photo_flickr_id": "14354873", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48905", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] loves to throw movie parties .", "storylet_id": "244525"}], [{"original_text": "Tonight they are going to watch a classic from Disney, The love Bug. ", "album_id": "347575", "photo_flickr_id": "14354645", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48905", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "tonight they are going to watch a classic from organization , the love bug .", "storylet_id": "244526"}], [{"original_text": "Zack got tired early and decided to take a nap. ", "album_id": "347575", "photo_flickr_id": "14354506", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48905", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "zack got tired early and decided to take a nap .", "storylet_id": "244527"}], [{"original_text": "Terry is really getting into the movie because he's never seen it before. ", "album_id": "347575", "photo_flickr_id": "14354793", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48905", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is really getting into the movie because he 's never seen it before .", "storylet_id": "244528"}], [{"original_text": "Shirley had too much to drink at the party so after everyone left Bryan set her up on the couch for the night.", "album_id": "347575", "photo_flickr_id": "14354724", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "48905", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] had too much to drink at the party so after everyone left [male] set her up on the couch for the night .", "storylet_id": "244529"}], [{"original_text": "They stayed up late watching television. ", "album_id": "347575", "photo_flickr_id": "14354645", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48906", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they stayed up late watching television .", "storylet_id": "244530"}], [{"original_text": "Jake was exhausted. ", "album_id": "347575", "photo_flickr_id": "14354506", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48906", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was exhausted .", "storylet_id": "244531"}], [{"original_text": "Mike couldn't remember being so tired. ", "album_id": "347575", "photo_flickr_id": "14354588", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48906", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] could n't remember being so tired .", "storylet_id": "244532"}], [{"original_text": "Phillip was just glad exams were finally over. ", "album_id": "347575", "photo_flickr_id": "14354533", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48906", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was just glad exams were finally over .", "storylet_id": "244533"}], [{"original_text": "Tasha slept on the sofa. ", "album_id": "347575", "photo_flickr_id": "14354724", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "48906", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] slept on the sofa .", "storylet_id": "244534"}], [{"original_text": "We really had a nice time at the party, but we were all SO TIRED.", "album_id": "347575", "photo_flickr_id": "14354645", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "48907", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we really had a nice time at the party , but we were all so tired .", "storylet_id": "244535"}], [{"original_text": "Here is James, he was the smart one, he just dropped on the first chair and covered his face and was out like a light.", "album_id": "347575", "photo_flickr_id": "14354506", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "48907", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is [male] , he was the smart one , he just dropped on the first chair and covered his face and was out like a light .", "storylet_id": "244536"}], [{"original_text": "Brad had to sit for a while before he could fall asleep, his ears were still ringing from all the loud noises.", "album_id": "347575", "photo_flickr_id": "14354588", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "48907", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] had to sit for a while before he could fall asleep , his ears were still ringing from all the loud noises .", "storylet_id": "244537"}], [{"original_text": "Steve was the only one who wasn't tired and he wouldn't shut up so the rest could sleep.", "album_id": "347575", "photo_flickr_id": "14354533", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "48907", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was the only one who was n't tired and he would n't shut up so the rest could sleep .", "storylet_id": "244538"}], [{"original_text": "His wife Helen must be used to his talking cause she was out as fast as James was. They also had the best places to sleep too.", "album_id": "347575", "photo_flickr_id": "14354724", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "48907", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his wife [female] must be used to his talking cause she was out as fast as [male] was . they also had the best places to sleep too .", "storylet_id": "244539"}], [{"original_text": "The guy friends decided to please their one girl friend and put on a Disney movie for movie night.", "album_id": "347575", "photo_flickr_id": "14354645", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48908", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guy friends decided to please their one girl friend and put on a organization movie for movie night .", "storylet_id": "244540"}], [{"original_text": "Mike hated it. He couldn't stand how girly Disney is, so he hid in his t-shirt.", "album_id": "347575", "photo_flickr_id": "14354506", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48908", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] hated it . he could n't stand how girly organization is , so he hid in his t-shirt .", "storylet_id": "244541"}], [{"original_text": "Luke was also distressed over this choice of movie and it was obvious in his body language.", "album_id": "347575", "photo_flickr_id": "14354588", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48908", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was also distressed over this choice of movie and it was obvious in his body language .", "storylet_id": "244542"}], [{"original_text": "Marco was pretty indifferent to what they watched, but he was a go with the flow kinda guy.", "album_id": "347575", "photo_flickr_id": "14354533", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48908", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was pretty indifferent to what they watched , but he was a go with the flow kinda guy .", "storylet_id": "244543"}], [{"original_text": "As soon as the movie started, their girl friend fell asleep and they were all super mad that they had to suffer through that awful movie for nothing. ", "album_id": "347575", "photo_flickr_id": "14354724", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48908", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as soon as the movie started , their girl friend fell asleep and they were all super mad that they had to suffer through that awful movie for nothing .", "storylet_id": "244544"}], [{"original_text": "The friends got together to have a movies night.", "album_id": "347575", "photo_flickr_id": "14354873", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48909", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends got together to have a movies night .", "storylet_id": "244545"}], [{"original_text": "They decided on a Disney movie.", "album_id": "347575", "photo_flickr_id": "14354645", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48909", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they decided on a organization movie .", "storylet_id": "244546"}], [{"original_text": "Not all the friends wanted to have their picture taken.", "album_id": "347575", "photo_flickr_id": "14354506", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48909", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not all the friends wanted to have their picture taken .", "storylet_id": "244547"}], [{"original_text": "Then the movie started and they sat to watch it.", "album_id": "347575", "photo_flickr_id": "14354793", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48909", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then the movie started and they sat to watch it .", "storylet_id": "244548"}], [{"original_text": "After that some of them fell asleep.", "album_id": "347575", "photo_flickr_id": "14354724", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48909", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that some of them fell asleep .", "storylet_id": "244549"}], [{"original_text": "it was graduation time", "album_id": "349272", "photo_flickr_id": "14427021", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "48910", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was graduation time", "storylet_id": "244550"}], [{"original_text": "many waited patiently for their named to be called", "album_id": "349272", "photo_flickr_id": "14427241", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "48910", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many waited patiently for their named to be called", "storylet_id": "244551"}], [{"original_text": "finally the time had come at last", "album_id": "349272", "photo_flickr_id": "14427385", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "48910", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally the time had come at last", "storylet_id": "244552"}], [{"original_text": "many parents and family members were proud of their kids", "album_id": "349272", "photo_flickr_id": "14428066", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "48910", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many parents and family members were proud of their kids", "storylet_id": "244553"}], [{"original_text": "and some celebrated with a few drinks", "album_id": "349272", "photo_flickr_id": "14430370", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "48910", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and some celebrated with a few drinks", "storylet_id": "244554"}], [{"original_text": "Graduation was finally here.", "album_id": "349272", "photo_flickr_id": "14427385", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48911", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "graduation was finally here .", "storylet_id": "244555"}], [{"original_text": "We are so proud of her.", "album_id": "349272", "photo_flickr_id": "14427709", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48911", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are so proud of her .", "storylet_id": "244556"}], [{"original_text": "The family was all there.", "album_id": "349272", "photo_flickr_id": "14428066", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48911", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family was all there .", "storylet_id": "244557"}], [{"original_text": "The rest of the family showed up.", "album_id": "349272", "photo_flickr_id": "14428319", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48911", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rest of the family showed up .", "storylet_id": "244558"}], [{"original_text": "We celebrated with drinks.", "album_id": "349272", "photo_flickr_id": "14428570", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48911", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we celebrated with drinks .", "storylet_id": "244559"}], [{"original_text": "The hall where my sister graduated was beautiful. ", "album_id": "349272", "photo_flickr_id": "14427021", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48912", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the hall where my sister graduated was beautiful .", "storylet_id": "244560"}], [{"original_text": "The wait for the procession to start was tiring. ", "album_id": "349272", "photo_flickr_id": "14427241", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48912", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wait for the procession to start was tiring .", "storylet_id": "244561"}], [{"original_text": "Finally, it started. The graduates looked so happy.", "album_id": "349272", "photo_flickr_id": "14427385", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48912", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally , it started . the graduates looked so happy .", "storylet_id": "244562"}], [{"original_text": " After, my sister took a picture with her classmates. ", "album_id": "349272", "photo_flickr_id": "14428066", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48912", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after , my sister took a picture with her classmates .", "storylet_id": "244563"}], [{"original_text": "We took her to a restaurant after and she played coy. ", "album_id": "349272", "photo_flickr_id": "14430370", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48912", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took her to a restaurant after and she played coy .", "storylet_id": "244564"}], [{"original_text": "The graduates were all lined up, ready to finally be done with school.", "album_id": "349272", "photo_flickr_id": "14427385", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48913", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the graduates were all lined up , ready to finally be done with school .", "storylet_id": "244565"}], [{"original_text": "As they walked across the stage, the president of the university handed them their diplomas. Finally, they were done.", "album_id": "349272", "photo_flickr_id": "14427709", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48913", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as they walked across the stage , the president of the university handed them their diplomas . finally , they were done .", "storylet_id": "244566"}], [{"original_text": "After the ceremony, the graduates ran to find their families", "album_id": "349272", "photo_flickr_id": "14428066", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48913", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the ceremony , the graduates ran to find their families", "storylet_id": "244567"}], [{"original_text": "so that they could take pictures with them.", "album_id": "349272", "photo_flickr_id": "14428319", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48913", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so that they could take pictures with them .", "storylet_id": "244568"}], [{"original_text": "Then, most of them went out to dinner to celebrate their accomplishments. ", "album_id": "349272", "photo_flickr_id": "14428570", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48913", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then , most of them went out to dinner to celebrate their accomplishments .", "storylet_id": "244569"}], [{"original_text": "The girl was so excited to finally be able to graduate.", "album_id": "349272", "photo_flickr_id": "14427385", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48914", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girl was so excited to finally be able to graduate .", "storylet_id": "244570"}], [{"original_text": "Then we walked across the stage to receive her diploma.", "album_id": "349272", "photo_flickr_id": "14427709", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48914", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we walked across the stage to receive her diploma .", "storylet_id": "244571"}], [{"original_text": "Her family was there to celebrate with her.", "album_id": "349272", "photo_flickr_id": "14428066", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48914", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her family was there to celebrate with her .", "storylet_id": "244572"}], [{"original_text": "They all stopped to take pictures to remember this day.", "album_id": "349272", "photo_flickr_id": "14428319", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48914", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they all stopped to take pictures to remember this day .", "storylet_id": "244573"}], [{"original_text": "After that they all sat down to have dinner.", "album_id": "349272", "photo_flickr_id": "14428570", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48914", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that they all sat down to have dinner .", "storylet_id": "244574"}], [{"original_text": "We had our family over for dinner last night.", "album_id": "608134", "photo_flickr_id": "26813830", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48915", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had our family over for dinner last night .", "storylet_id": "244575"}], [{"original_text": "The whole family was there and we were so happy to see each other.", "album_id": "608134", "photo_flickr_id": "26813901", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48915", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the whole family was there and we were so happy to see each other .", "storylet_id": "244576"}], [{"original_text": "We had really good food!", "album_id": "608134", "photo_flickr_id": "26813950", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48915", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had really good food !", "storylet_id": "244577"}], [{"original_text": "At the end of the night we all went out for a walk.", "album_id": "608134", "photo_flickr_id": "26815016", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48915", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the end of the night we all went out for a walk .", "storylet_id": "244578"}], [{"original_text": "It was a great night and we can't wait to do it again!", "album_id": "608134", "photo_flickr_id": "26815085", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48915", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great night and we ca n't wait to do it again !", "storylet_id": "244579"}], [{"original_text": "My Mom can be annoying sometimes.", "album_id": "608134", "photo_flickr_id": "26813718", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48916", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my mom can be annoying sometimes .", "storylet_id": "244580"}], [{"original_text": "Yesterday she went around taking extreme closeups of people.", "album_id": "608134", "photo_flickr_id": "26813542", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48916", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "yesterday she went around taking extreme closeups of people .", "storylet_id": "244581"}], [{"original_text": "Dad was annoyed.", "album_id": "608134", "photo_flickr_id": "26813577", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48916", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad was annoyed .", "storylet_id": "244582"}], [{"original_text": "My older brother was annoyed.", "album_id": "608134", "photo_flickr_id": "26813798", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48916", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my older brother was annoyed .", "storylet_id": "244583"}], [{"original_text": "My little brother's annoyance is obvious.", "album_id": "608134", "photo_flickr_id": "26814884", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "48916", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my little brother 's annoyance is obvious .", "storylet_id": "244584"}], [{"original_text": "The man and the woman are sitting at the table.", "album_id": "608134", "photo_flickr_id": "26813830", "setting": "last-3-pick-old-and-tell", "worker_id": "ADXALDVHMLEFGTT", "story_id": "48917", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man and the woman are sitting at the table .", "storylet_id": "244585"}], [{"original_text": "The people are drinking and eating food.", "album_id": "608134", "photo_flickr_id": "26813901", "setting": "last-3-pick-old-and-tell", "worker_id": "ADXALDVHMLEFGTT", "story_id": "48917", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the people are drinking and eating food .", "storylet_id": "244586"}], [{"original_text": "The pastries are dusted with sugar.", "album_id": "608134", "photo_flickr_id": "26813950", "setting": "last-3-pick-old-and-tell", "worker_id": "ADXALDVHMLEFGTT", "story_id": "48917", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the pastries are dusted with sugar .", "storylet_id": "244587"}], [{"original_text": "The man and the woman are outside of a building.", "album_id": "608134", "photo_flickr_id": "26815016", "setting": "last-3-pick-old-and-tell", "worker_id": "ADXALDVHMLEFGTT", "story_id": "48917", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man and the woman are outside of a building .", "storylet_id": "244588"}], [{"original_text": "The man and woman pose for a photo.", "album_id": "608134", "photo_flickr_id": "26815085", "setting": "last-3-pick-old-and-tell", "worker_id": "ADXALDVHMLEFGTT", "story_id": "48917", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the man and woman pose for a photo .", "storylet_id": "244589"}], [{"original_text": "Once a month they get together for a taste testing of the newest creation by Jean.", "album_id": "608134", "photo_flickr_id": "26813830", "setting": "last-3-pick-old-and-tell", "worker_id": "736BMMFWXNRNHMF", "story_id": "48918", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "once a month they get together for a taste testing of the newest creation by [female] .", "storylet_id": "244590"}], [{"original_text": "She invites the whole family over to get everyone's opinion.", "album_id": "608134", "photo_flickr_id": "26813901", "setting": "last-3-pick-old-and-tell", "worker_id": "736BMMFWXNRNHMF", "story_id": "48918", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she invites the whole family over to get everyone 's opinion .", "storylet_id": "244591"}], [{"original_text": "This time it's donut holes on the menu.", "album_id": "608134", "photo_flickr_id": "26813950", "setting": "last-3-pick-old-and-tell", "worker_id": "736BMMFWXNRNHMF", "story_id": "48918", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this time it 's donut holes on the menu .", "storylet_id": "244592"}], [{"original_text": "The evening was a great success.", "album_id": "608134", "photo_flickr_id": "26815016", "setting": "last-3-pick-old-and-tell", "worker_id": "736BMMFWXNRNHMF", "story_id": "48918", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the evening was a great success .", "storylet_id": "244593"}], [{"original_text": "Jean and her partner can't wait until the next one.", "album_id": "608134", "photo_flickr_id": "26815085", "setting": "last-3-pick-old-and-tell", "worker_id": "736BMMFWXNRNHMF", "story_id": "48918", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] and her partner ca n't wait until the next one .", "storylet_id": "244594"}], [{"original_text": "The young couple sat down to have a dinner with family.", "album_id": "608134", "photo_flickr_id": "26813830", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48919", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the young couple sat down to have a dinner with family .", "storylet_id": "244595"}], [{"original_text": "They had a large meal.", "album_id": "608134", "photo_flickr_id": "26813901", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48919", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a large meal .", "storylet_id": "244596"}], [{"original_text": "Then they all enjoyed desert.", "album_id": "608134", "photo_flickr_id": "26813950", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48919", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they all enjoyed desert .", "storylet_id": "244597"}], [{"original_text": "After that they went out for a night on the town.", "album_id": "608134", "photo_flickr_id": "26815016", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48919", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that they went out for a night on the town .", "storylet_id": "244598"}], [{"original_text": "The couple had such a fun time.", "album_id": "608134", "photo_flickr_id": "26815085", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48919", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the couple had such a fun time .", "storylet_id": "244599"}], [{"original_text": "There was a lot of people at the bar party.", "album_id": "609587", "photo_flickr_id": "26895257", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48920", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a lot of people at the bar party .", "storylet_id": "244600"}], [{"original_text": "We played many games together.", "album_id": "609587", "photo_flickr_id": "26894306", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48920", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we played many games together .", "storylet_id": "244601"}], [{"original_text": "We had a great time with everybody.", "album_id": "609587", "photo_flickr_id": "26893878", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48920", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a great time with everybody .", "storylet_id": "244602"}], [{"original_text": "Some people were underage.", "album_id": "609587", "photo_flickr_id": "26893853", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48920", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people were underage .", "storylet_id": "244603"}], [{"original_text": "Afterward we all went home when it was over.", "album_id": "609587", "photo_flickr_id": "26891225", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48920", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we all went home when it was over .", "storylet_id": "244604"}], [{"original_text": "This is the newest night club in town. Complete with big screens to show video.", "album_id": "609587", "photo_flickr_id": "26891225", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "48921", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the newest night club in town . complete with big screens to show video .", "storylet_id": "244605"}], [{"original_text": "It was painted in very dark colors and had odd furniture.", "album_id": "609587", "photo_flickr_id": "26894275", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "48921", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was painted in very dark colors and had odd furniture .", "storylet_id": "244606"}], [{"original_text": "I was amazed that there was a limbo.", "album_id": "609587", "photo_flickr_id": "26894402", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "48921", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was amazed that there was a limbo .", "storylet_id": "244607"}], [{"original_text": "The dance space was a pretty good size.", "album_id": "609587", "photo_flickr_id": "26894136", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "48921", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dance space was a pretty good size .", "storylet_id": "244608"}], [{"original_text": "I think it might be fun for awhile.", "album_id": "609587", "photo_flickr_id": "26894058", "setting": "first-2-pick-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "48921", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think it might be fun for awhile .", "storylet_id": "244609"}], [{"original_text": "There was a variety of drinks at the venue.", "album_id": "609587", "photo_flickr_id": "26895257", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48922", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a variety of drinks at the venue .", "storylet_id": "244610"}], [{"original_text": "This man in all white was full of energy and dance moves.", "album_id": "609587", "photo_flickr_id": "26894306", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48922", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this man in all white was full of energy and dance moves .", "storylet_id": "244611"}], [{"original_text": "The party got crazy and there were many people.", "album_id": "609587", "photo_flickr_id": "26893878", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48922", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the party got crazy and there were many people .", "storylet_id": "244612"}], [{"original_text": "I brought my friend along to share drinks with us.", "album_id": "609587", "photo_flickr_id": "26893853", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48922", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i brought my friend along to share drinks with us .", "storylet_id": "244613"}], [{"original_text": "The screen contained a blue sky and clouds.", "album_id": "609587", "photo_flickr_id": "26891225", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48922", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the screen contained a blue sky and clouds .", "storylet_id": "244614"}], [{"original_text": "The concert was wild and went on into the night.", "album_id": "609587", "photo_flickr_id": "26891225", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48923", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the concert was wild and went on into the night .", "storylet_id": "244615"}], [{"original_text": "Some people got so drunk they passed out.", "album_id": "609587", "photo_flickr_id": "26894275", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48923", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some people got so drunk they passed out .", "storylet_id": "244616"}], [{"original_text": "My brother showed the crowd his attempt at the limbo.", "album_id": "609587", "photo_flickr_id": "26894402", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48923", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brother showed the crowd his attempt at the limbo .", "storylet_id": "244617"}], [{"original_text": "Many people found themselves dancing alone.", "album_id": "609587", "photo_flickr_id": "26894136", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48923", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many people found themselves dancing alone .", "storylet_id": "244618"}], [{"original_text": "The Brinkley sisters watched the fun most of the night but rarely joined in.", "album_id": "609587", "photo_flickr_id": "26894058", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "48923", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the brinkley sisters watched the fun most of the night but rarely joined in .", "storylet_id": "244619"}], [{"original_text": "One of the big events of the college year is the Limbo Party at the big frat. I was there ready to defend my title.", "album_id": "609587", "photo_flickr_id": "26895257", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48924", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one of the big events of the college year is the organization organization at the big frat . i was there ready to defend my title .", "storylet_id": "244620"}], [{"original_text": "However, I got beaten right away by Edwardo.", "album_id": "609587", "photo_flickr_id": "26894306", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48924", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "however , i got beaten right away by edwardo .", "storylet_id": "244621"}], [{"original_text": "I had a great time anyway. There was a huge crowd.", "album_id": "609587", "photo_flickr_id": "26893878", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48924", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time anyway . there was a huge crowd .", "storylet_id": "244622"}], [{"original_text": "Some of these kids didn't really look old enough to drink to me, though!", "album_id": "609587", "photo_flickr_id": "26893853", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48924", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of these kids did n't really look old enough to drink to me , though !", "storylet_id": "244623"}], [{"original_text": "I loved the cloud projections on the wall. When you are intoxicated, they are something else to see.", "album_id": "609587", "photo_flickr_id": "26891225", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "48924", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i loved the cloud projections on the wall . when you are intoxicated , they are something else to see .", "storylet_id": "244624"}], [{"original_text": "The nightclub was filled to capacity.", "album_id": "89327", "photo_flickr_id": "3564697", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48925", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the nightclub was filled to capacity .", "storylet_id": "244625"}], [{"original_text": "The band took the stage and started to play.", "album_id": "89327", "photo_flickr_id": "3564670", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48925", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the band took the stage and started to play .", "storylet_id": "244626"}], [{"original_text": "There was a balcony overlooking the crowd.", "album_id": "89327", "photo_flickr_id": "3564592", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48925", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a balcony overlooking the crowd .", "storylet_id": "244627"}], [{"original_text": "The band started playing their favorite song.", "album_id": "89327", "photo_flickr_id": "3564427", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48925", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the band started playing their favorite song .", "storylet_id": "244628"}], [{"original_text": "A view to the balcony before the night ended. ", "album_id": "89327", "photo_flickr_id": "3564863", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48925", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a view to the balcony before the night ended .", "storylet_id": "244629"}], [{"original_text": "I went to a club the other night. Boy, was it crowded!", "album_id": "89327", "photo_flickr_id": "3564678", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "48926", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a club the other night . boy , was it crowded !", "storylet_id": "244630"}], [{"original_text": "I went upstairs and took pictures of the people.", "album_id": "89327", "photo_flickr_id": "3564547", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "48926", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went upstairs and took pictures of the people .", "storylet_id": "244631"}], [{"original_text": "The band was upstairs too. They played songs for the crowd.", "album_id": "89327", "photo_flickr_id": "3564452", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "48926", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band was upstairs too . they played songs for the crowd .", "storylet_id": "244632"}], [{"original_text": "We danced and waved to our friends.", "album_id": "89327", "photo_flickr_id": "3564384", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "48926", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we danced and waved to our friends .", "storylet_id": "244633"}], [{"original_text": "Everyone had a good time.", "album_id": "89327", "photo_flickr_id": "3564361", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "48926", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a good time .", "storylet_id": "244634"}], [{"original_text": "Our band was playing our first sold out show and we managed to get the venue packed to the wall.", "album_id": "89327", "photo_flickr_id": "3564697", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48927", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our band was playing our first sold out show and we managed to get the venue packed to the wall .", "storylet_id": "244635"}], [{"original_text": "Todd has been trying to experiment with some new guitar riffs for a bigger sound.", "album_id": "89327", "photo_flickr_id": "3564670", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48927", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] has been trying to experiment with some new guitar riffs for a bigger sound .", "storylet_id": "244636"}], [{"original_text": "We played on a platform that the audience could walk under.", "album_id": "89327", "photo_flickr_id": "3564592", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48927", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we played on a platform that the audience could walk under .", "storylet_id": "244637"}], [{"original_text": "We always try to bring as much passion as we can to our music to make it worth our fan's while.", "album_id": "89327", "photo_flickr_id": "3564427", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48927", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we always try to bring as much passion as we can to our music to make it worth our fan 's while .", "storylet_id": "244638"}], [{"original_text": "The lighting effects we could get at this bar were incredible.", "album_id": "89327", "photo_flickr_id": "3564863", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48927", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lighting effects we could get at this bar were incredible .", "storylet_id": "244639"}], [{"original_text": "There was a lot of people at the concert venue.", "album_id": "89327", "photo_flickr_id": "3564678", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48928", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a lot of people at the concert venue .", "storylet_id": "244640"}], [{"original_text": "Here are a man and woman posing for the camera above.", "album_id": "89327", "photo_flickr_id": "3564547", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48928", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here are a man and woman posing for the camera above .", "storylet_id": "244641"}], [{"original_text": "The band played awesome music for the people.", "album_id": "89327", "photo_flickr_id": "3564452", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48928", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band played awesome music for the people .", "storylet_id": "244642"}], [{"original_text": "These three men were having a great time at the concert.", "album_id": "89327", "photo_flickr_id": "3564384", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48928", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these three men were having a great time at the concert .", "storylet_id": "244643"}], [{"original_text": "A picture of the people enjoying the concert.", "album_id": "89327", "photo_flickr_id": "3564361", "setting": "last-3-pick-old-and-tell", "worker_id": "526BA1JXAY08OWP", "story_id": "48928", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a picture of the people enjoying the concert .", "storylet_id": "244644"}], [{"original_text": "The club had many people show up", "album_id": "89327", "photo_flickr_id": "3564697", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48929", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the club had many people show up", "storylet_id": "244645"}], [{"original_text": "to see the guy play guitar.", "album_id": "89327", "photo_flickr_id": "3564670", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48929", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to see the guy play guitar .", "storylet_id": "244646"}], [{"original_text": "There were even curious people ", "album_id": "89327", "photo_flickr_id": "3564592", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48929", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were even curious people", "storylet_id": "244647"}], [{"original_text": "and people that would sing.", "album_id": "89327", "photo_flickr_id": "3564427", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48929", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and people that would sing .", "storylet_id": "244648"}], [{"original_text": "There was a bridge for people to stand on as well.", "album_id": "89327", "photo_flickr_id": "3564863", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48929", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a bridge for people to stand on as well .", "storylet_id": "244649"}], [{"original_text": "Family and friends gathered at the restaurant for the celebration. ", "album_id": "129154", "photo_flickr_id": "5128839", "setting": "first-2-pick-and-tell", "worker_id": "VHLRN1SKJC8DRU0", "story_id": "48930", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family and friends gathered at the restaurant for the celebration .", "storylet_id": "244650"}], [{"original_text": "A platter of drinks arrived. ", "album_id": "129154", "photo_flickr_id": "5128817", "setting": "first-2-pick-and-tell", "worker_id": "VHLRN1SKJC8DRU0", "story_id": "48930", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a platter of drinks arrived .", "storylet_id": "244651"}], [{"original_text": "One of us didn't hesitate to jump right in. ", "album_id": "129154", "photo_flickr_id": "5128826", "setting": "first-2-pick-and-tell", "worker_id": "VHLRN1SKJC8DRU0", "story_id": "48930", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of us did n't hesitate to jump right in .", "storylet_id": "244652"}], [{"original_text": "He's always a good story teller after a few drinks. ", "album_id": "129154", "photo_flickr_id": "5129810", "setting": "first-2-pick-and-tell", "worker_id": "VHLRN1SKJC8DRU0", "story_id": "48930", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he 's always a good story teller after a few drinks .", "storylet_id": "244653"}], [{"original_text": "Sometimes he will get up to act it out. We left shortly after. ", "album_id": "129154", "photo_flickr_id": "5129603", "setting": "first-2-pick-and-tell", "worker_id": "VHLRN1SKJC8DRU0", "story_id": "48930", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sometimes he will get up to act it out . we left shortly after .", "storylet_id": "244654"}], [{"original_text": "At the pub and about to start drinking.", "album_id": "129154", "photo_flickr_id": "5128809", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48931", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the pub and about to start drinking .", "storylet_id": "244655"}], [{"original_text": "The tray of shots are ready to be drank.", "album_id": "129154", "photo_flickr_id": "5128817", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48931", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tray of shots are ready to be drank .", "storylet_id": "244656"}], [{"original_text": "Taking the first shot of the night.", "album_id": "129154", "photo_flickr_id": "5128826", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48931", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "taking the first shot of the night .", "storylet_id": "244657"}], [{"original_text": "Cleansing the palate after the first shot.", "album_id": "129154", "photo_flickr_id": "5128846", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48931", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cleansing the palate after the first shot .", "storylet_id": "244658"}], [{"original_text": "Everything is much funnier after a few shots.", "album_id": "129154", "photo_flickr_id": "5129813", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "48931", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everything is much funnier after a few shots .", "storylet_id": "244659"}], [{"original_text": "There were many people relaxing in the living room.", "album_id": "129154", "photo_flickr_id": "5128809", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48932", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many people relaxing in the living room .", "storylet_id": "244660"}], [{"original_text": "There were many shots and drinks set up.", "album_id": "129154", "photo_flickr_id": "5128817", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48932", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many shots and drinks set up .", "storylet_id": "244661"}], [{"original_text": "My friends began to take drinks in order.", "album_id": "129154", "photo_flickr_id": "5128826", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48932", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friends began to take drinks in order .", "storylet_id": "244662"}], [{"original_text": "My best friend was the real tanker. He took four shots.", "album_id": "129154", "photo_flickr_id": "5128846", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48932", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my best friend was the real tanker . he took four shots .", "storylet_id": "244663"}], [{"original_text": "He said the room was spinning and it was obviously not spinning.", "album_id": "129154", "photo_flickr_id": "5129813", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48932", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he said the room was spinning and it was obviously not spinning .", "storylet_id": "244664"}], [{"original_text": "He had to take birthday shots.", "album_id": "129154", "photo_flickr_id": "5128809", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48933", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he had to take birthday shots .", "storylet_id": "244665"}], [{"original_text": "Lots of alcohol was on the plate.", "album_id": "129154", "photo_flickr_id": "5128817", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48933", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of alcohol was on the plate .", "storylet_id": "244666"}], [{"original_text": "He started off with his first shot.", "album_id": "129154", "photo_flickr_id": "5128826", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48933", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he started off with his first shot .", "storylet_id": "244667"}], [{"original_text": "Later, he reached for the tequila.", "album_id": "129154", "photo_flickr_id": "5128846", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48933", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later , he reached for the tequila .", "storylet_id": "244668"}], [{"original_text": "Later on, he really started to feel the effects of alcohol.", "album_id": "129154", "photo_flickr_id": "5129813", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "48933", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later on , he really started to feel the effects of alcohol .", "storylet_id": "244669"}], [{"original_text": "Everyone got together for drinks and conversation.", "album_id": "129154", "photo_flickr_id": "5128839", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "48934", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone got together for drinks and conversation .", "storylet_id": "244670"}], [{"original_text": "There were cocktails and shots available.", "album_id": "129154", "photo_flickr_id": "5128817", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "48934", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were cocktails and shots available .", "storylet_id": "244671"}], [{"original_text": "Tom got a head start and downed 3 shots in a row.", "album_id": "129154", "photo_flickr_id": "5128826", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "48934", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] got a head start and downed 3 shots in a row .", "storylet_id": "244672"}], [{"original_text": "He was pretty toasty after that.", "album_id": "129154", "photo_flickr_id": "5129810", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "48934", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was pretty toasty after that .", "storylet_id": "244673"}], [{"original_text": "He stood up to see if he could walk a straight line.", "album_id": "129154", "photo_flickr_id": "5129603", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "48934", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he stood up to see if he could walk a straight line .", "storylet_id": "244674"}], [{"original_text": "Jeremy was in deep thought waiting for the St. Patrick's party to start.", "album_id": "172875", "photo_flickr_id": "6935527", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "48935", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was in deep thought waiting for the st. [male] 's party to start .", "storylet_id": "244675"}], [{"original_text": "The guys were doing last minute work on the tarp.", "album_id": "172875", "photo_flickr_id": "6935580", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "48935", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guys were doing last minute work on the tarp .", "storylet_id": "244676"}], [{"original_text": "When the party started though it was fun, and here's Jarod posing for a pic.", "album_id": "172875", "photo_flickr_id": "6935604", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "48935", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when the party started though it was fun , and here 's [male] posing for a pic .", "storylet_id": "244677"}], [{"original_text": "Sam and his boyfriend Kyle enjoyed themselves too.", "album_id": "172875", "photo_flickr_id": "6935621", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "48935", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and his boyfriend [male] enjoyed themselves too .", "storylet_id": "244678"}], [{"original_text": "Later on, Kenneth got a little sleepy though.", "album_id": "172875", "photo_flickr_id": "6935694", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "48935", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later on , [male] got a little sleepy though .", "storylet_id": "244679"}], [{"original_text": "The party was coming to an end.", "album_id": "172875", "photo_flickr_id": "6935527", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48936", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party was coming to an end .", "storylet_id": "244680"}], [{"original_text": "They had a lot to clean up.", "album_id": "172875", "photo_flickr_id": "6935534", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48936", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a lot to clean up .", "storylet_id": "244681"}], [{"original_text": "The roof had to be cover from damage.", "album_id": "172875", "photo_flickr_id": "6935580", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48936", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the roof had to be cover from damage .", "storylet_id": "244682"}], [{"original_text": "They needed to get it covered before the rain came.", "album_id": "172875", "photo_flickr_id": "6935591", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48936", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they needed to get it covered before the rain came .", "storylet_id": "244683"}], [{"original_text": "They damaged the carpet from the party.", "album_id": "172875", "photo_flickr_id": "6935592", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "48936", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they damaged the carpet from the party .", "storylet_id": "244684"}], [{"original_text": "Today was the day that I could be a Leprechaun.", "album_id": "172875", "photo_flickr_id": "6935527", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48937", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day that i could be a leprechaun .", "storylet_id": "244685"}], [{"original_text": "We started to set up for the party.", "album_id": "172875", "photo_flickr_id": "6935580", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48937", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started to set up for the party .", "storylet_id": "244686"}], [{"original_text": "My friend has his St. Patty attire on.", "album_id": "172875", "photo_flickr_id": "6935604", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48937", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend has his st. [female] attire on .", "storylet_id": "244687"}], [{"original_text": "We definitely needed a break after the hard work.", "album_id": "172875", "photo_flickr_id": "6935621", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48937", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we definitely needed a break after the hard work .", "storylet_id": "244688"}], [{"original_text": "Today was definitely exhausting but we got everything together. What a day!", "album_id": "172875", "photo_flickr_id": "6935694", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "48937", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "today was definitely exhausting but we got everything together . what a day !", "storylet_id": "244689"}], [{"original_text": "I decided to spend St. Patrick's Day with a few friends.", "album_id": "172875", "photo_flickr_id": "6935527", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48938", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to spend st. [male] 's day with a few friends .", "storylet_id": "244690"}], [{"original_text": "We set up a tarp to protect us from rain while we hung out outside. ", "album_id": "172875", "photo_flickr_id": "6935580", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48938", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we set up a tarp to protect us from rain while we hung out outside .", "storylet_id": "244691"}], [{"original_text": "Trevor thought he looked really good in a green hat.", "album_id": "172875", "photo_flickr_id": "6935604", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48938", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] thought he looked really good in a green hat .", "storylet_id": "244692"}], [{"original_text": "Friendships were kindled that day.", "album_id": "172875", "photo_flickr_id": "6935621", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48938", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "friendships were kindled that day .", "storylet_id": "244693"}], [{"original_text": "Isaac said he had the best time of his life and then he went home to hibernate. ", "album_id": "172875", "photo_flickr_id": "6935694", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48938", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] said he had the best time of his life and then he went home to hibernate .", "storylet_id": "244694"}], [{"original_text": "The guy with the green hat was thinking", "album_id": "172875", "photo_flickr_id": "6935527", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48939", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guy with the green hat was thinking", "storylet_id": "244695"}], [{"original_text": "before going outside ", "album_id": "172875", "photo_flickr_id": "6935580", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48939", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before going outside", "storylet_id": "244696"}], [{"original_text": "and then seeing another guy in a green hat ", "album_id": "172875", "photo_flickr_id": "6935604", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48939", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and then seeing another guy in a green hat", "storylet_id": "244697"}], [{"original_text": "to take a photo with.", "album_id": "172875", "photo_flickr_id": "6935621", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48939", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to take a photo with .", "storylet_id": "244698"}], [{"original_text": "The guy had a nice day overall.", "album_id": "172875", "photo_flickr_id": "6935694", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48939", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the guy had a nice day overall .", "storylet_id": "244699"}], [{"original_text": "Lacy and her friend had a night out on the town.", "album_id": "477308", "photo_flickr_id": "20452367", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "48940", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and her friend had a night out on the town .", "storylet_id": "244700"}], [{"original_text": "They met a lot of friendly people and took pictures with some of them.", "album_id": "477308", "photo_flickr_id": "20452243", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "48940", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they met a lot of friendly people and took pictures with some of them .", "storylet_id": "244701"}], [{"original_text": "They went to various different hot spots and partied the night away.", "album_id": "477308", "photo_flickr_id": "20452331", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "48940", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they went to various different hot spots and partied the night away .", "storylet_id": "244702"}], [{"original_text": "Lacy came across her one of her other friends who was also out on the town.", "album_id": "477308", "photo_flickr_id": "20452463", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "48940", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] came across her one of her other friends who was also out on the town .", "storylet_id": "244703"}], [{"original_text": "At the end of the night they were exhausted but they also had lots of fun.", "album_id": "477308", "photo_flickr_id": "20452806", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "48940", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night they were exhausted but they also had lots of fun .", "storylet_id": "244704"}], [{"original_text": "Jasmine and some of her friends went on a bunch of blind dates on week.", "album_id": "477308", "photo_flickr_id": "20452243", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "48941", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and some of her friends went on a bunch of blind dates on week .", "storylet_id": "244705"}], [{"original_text": "Jasmine's first day was very unattractive but incredibly funny.", "album_id": "477308", "photo_flickr_id": "20452290", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "48941", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] 's first day was very unattractive but incredibly funny .", "storylet_id": "244706"}], [{"original_text": "Clara's blind date looked like an anorexic serial killer.", "album_id": "477308", "photo_flickr_id": "20452551", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "48941", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] 's blind date looked like an anorexic serial killer .", "storylet_id": "244707"}], [{"original_text": "Sarah's date had social anxiety and wouldn't leave his house.", "album_id": "477308", "photo_flickr_id": "20452929", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "48941", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] 's date had social anxiety and would n't leave his house .", "storylet_id": "244708"}], [{"original_text": "Monique's blind date was a down to earth guy, and she would eventually marry him.", "album_id": "477308", "photo_flickr_id": "20453018", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "48941", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] 's blind date was a down to earth guy , and she would eventually marry him .", "storylet_id": "244709"}], [{"original_text": "The singles mingle was a great time. We met people from all over, of all different ethnicities.", "album_id": "477308", "photo_flickr_id": "20452243", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48942", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the singles mingle was a great time . we met people from all over , of all different ethnicities .", "storylet_id": "244710"}], [{"original_text": "Some of the guys were creepy but we smiled and bore with it.", "album_id": "477308", "photo_flickr_id": "20452290", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48942", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the guys were creepy but we smiled and bore with it .", "storylet_id": "244711"}], [{"original_text": "A few people hooked up pretty fast.", "album_id": "477308", "photo_flickr_id": "20452551", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48942", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few people hooked up pretty fast .", "storylet_id": "244712"}], [{"original_text": "I met my current boyfriend there.", "album_id": "477308", "photo_flickr_id": "20452929", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48942", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i met my current boyfriend there .", "storylet_id": "244713"}], [{"original_text": "My friend met hers too.", "album_id": "477308", "photo_flickr_id": "20453018", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48942", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my friend met hers too .", "storylet_id": "244714"}], [{"original_text": "my friends and I went to a club.", "album_id": "477308", "photo_flickr_id": "20452367", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48943", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i went to a club .", "storylet_id": "244715"}], [{"original_text": "We all get together some time for a good time.", "album_id": "477308", "photo_flickr_id": "20452243", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48943", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all get together some time for a good time .", "storylet_id": "244716"}], [{"original_text": "there were lots of people at the club.", "album_id": "477308", "photo_flickr_id": "20452331", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48943", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were lots of people at the club .", "storylet_id": "244717"}], [{"original_text": "We all danced and sang with the music.", "album_id": "477308", "photo_flickr_id": "20452463", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48943", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all danced and sang with the music .", "storylet_id": "244718"}], [{"original_text": "at the end of the night, we all had had fun.", "album_id": "477308", "photo_flickr_id": "20452806", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "48943", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , we all had had fun .", "storylet_id": "244719"}], [{"original_text": "The friends got together for a night out.", "album_id": "477308", "photo_flickr_id": "20452367", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48944", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends got together for a night out .", "storylet_id": "244720"}], [{"original_text": "They met new friends while they were having fun.", "album_id": "477308", "photo_flickr_id": "20452243", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48944", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they met new friends while they were having fun .", "storylet_id": "244721"}], [{"original_text": "Then they got to know the rest of the people there.", "album_id": "477308", "photo_flickr_id": "20452331", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48944", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they got to know the rest of the people there .", "storylet_id": "244722"}], [{"original_text": "Some of the them danced on the dance floor.", "album_id": "477308", "photo_flickr_id": "20452463", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48944", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the them danced on the dance floor .", "storylet_id": "244723"}], [{"original_text": "At the end of the night they had made so many new friends.", "album_id": "477308", "photo_flickr_id": "20452806", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48944", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night they had made so many new friends .", "storylet_id": "244724"}], [{"original_text": "I decided to have a summer BBQ.", "album_id": "622334", "photo_flickr_id": "27498993", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "48945", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to have a summer bbq .", "storylet_id": "244725"}], [{"original_text": "I invited a few of my friends over.", "album_id": "622334", "photo_flickr_id": "27499011", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "48945", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i invited a few of my friends over .", "storylet_id": "244726"}], [{"original_text": "We ate great food and had a couple of drinks.", "album_id": "622334", "photo_flickr_id": "27498940", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "48945", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we ate great food and had a couple of drinks .", "storylet_id": "244727"}], [{"original_text": "We hung out late into the the night.", "album_id": "622334", "photo_flickr_id": "27498944", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "48945", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we hung out late into the the night .", "storylet_id": "244728"}], [{"original_text": "Apparently some of us had to much fun and passed out early.", "album_id": "622334", "photo_flickr_id": "27498956", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "48945", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "apparently some of us had to much fun and passed out early .", "storylet_id": "244729"}], [{"original_text": "Jimmy had a cookout with all of his friends.", "album_id": "622334", "photo_flickr_id": "27498978", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "48946", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] had a cookout with all of his friends .", "storylet_id": "244730"}], [{"original_text": "They had everything you can think of cooking on the grill.", "album_id": "622334", "photo_flickr_id": "27498988", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "48946", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had everything you can think of cooking on the grill .", "storylet_id": "244731"}], [{"original_text": "Jimmy met a nice young lady named Samantha at the cookout.", "album_id": "622334", "photo_flickr_id": "27499011", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "48946", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] met a nice young lady named [female] at the cookout .", "storylet_id": "244732"}], [{"original_text": "Jimmy's cousin Sal and his girlfriend had to leave early.", "album_id": "622334", "photo_flickr_id": "27498903", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "48946", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] 's cousin sal and his girlfriend had to leave early .", "storylet_id": "244733"}], [{"original_text": "After everyone ate they hung out by the pool for the rest of the evening.", "album_id": "622334", "photo_flickr_id": "27499037", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "48946", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after everyone ate they hung out by the pool for the rest of the evening .", "storylet_id": "244734"}], [{"original_text": "Dave's barbecuing in his brick oven. He loves this kind of thing.", "album_id": "622334", "photo_flickr_id": "27498993", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48947", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] 's barbecuing in his brick oven . he loves this kind of thing .", "storylet_id": "244735"}], [{"original_text": "We're happy to let him cook. I'll just chill here with a bottle of whatever the heck this is with my girl. ", "album_id": "622334", "photo_flickr_id": "27499011", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48947", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we 're happy to let him cook . i 'll just chill here with a bottle of whatever the heck this is with my girl .", "storylet_id": "244736"}], [{"original_text": "Well, I can honestly say I have no idea what auntie Jo is mixing up. Looks like Mark is brave enough to give it a try. Better him than me. ", "album_id": "622334", "photo_flickr_id": "27498940", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48947", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "well , i can honestly say i have no idea what auntie [female] is mixing up . looks like [male] is brave enough to give it a try . better him than me .", "storylet_id": "244737"}], [{"original_text": "It's hours later and we've been looking for Mark for ever. I don't know what was in that muck he ate but he flipped out and took off running towards the beach in the dark.", "album_id": "622334", "photo_flickr_id": "27498944", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48947", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's hours later and we 've been looking for [male] for ever . i do n't know what was in that muck he ate but he flipped out and took off running towards the beach in the dark .", "storylet_id": "244738"}], [{"original_text": "Oh good lord, Skippy the wonder dog has sniffed him out. He's still alive at least but he's a really funny color. No more eating auntie Jo's food buddy.", "album_id": "622334", "photo_flickr_id": "27498956", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48947", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "oh good lord , skippy the wonder dog has sniffed him out . he 's still alive at least but he 's a really funny color . no more eating auntie [female] 's food buddy .", "storylet_id": "244739"}], [{"original_text": "The grill was fired up and ready.", "album_id": "622334", "photo_flickr_id": "27498993", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "48948", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the grill was fired up and ready .", "storylet_id": "244740"}], [{"original_text": "It was a great day for a party.", "album_id": "622334", "photo_flickr_id": "27499011", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "48948", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a great day for a party .", "storylet_id": "244741"}], [{"original_text": "Potato salad was just one of the delicious treats!", "album_id": "622334", "photo_flickr_id": "27498940", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "48948", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "potato salad was just one of the delicious treats !", "storylet_id": "244742"}], [{"original_text": "By the time night fell, they were ready to relax in the sand.", "album_id": "622334", "photo_flickr_id": "27498944", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "48948", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "by the time night fell , they were ready to relax in the sand .", "storylet_id": "244743"}], [{"original_text": "Even the dog came out to have a little party time of his own.", "album_id": "622334", "photo_flickr_id": "27498956", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "48948", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the dog came out to have a little party time of his own .", "storylet_id": "244744"}], [{"original_text": "My place was pretty awesome for having barbecues.", "album_id": "622334", "photo_flickr_id": "27498993", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48949", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my place was pretty awesome for having barbecues .", "storylet_id": "244745"}], [{"original_text": "Cindy smiled as she sat next to Craig.", "album_id": "622334", "photo_flickr_id": "27499011", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48949", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] smiled as she sat next to [male] .", "storylet_id": "244746"}], [{"original_text": "The food was abundant and spectacular.", "album_id": "622334", "photo_flickr_id": "27498940", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48949", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food was abundant and spectacular .", "storylet_id": "244747"}], [{"original_text": "Greg advanced toward Cindy toward the end of the night.", "album_id": "622334", "photo_flickr_id": "27498944", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48949", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] advanced toward [female] toward the end of the night .", "storylet_id": "244748"}], [{"original_text": "He ended up being best friends with the dog instead. ", "album_id": "622334", "photo_flickr_id": "27498956", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48949", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he ended up being best friends with the dog instead .", "storylet_id": "244749"}], [{"original_text": "The group had a great night out at the brewery restaurant.", "album_id": "255769", "photo_flickr_id": "10264118", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "48950", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group had a great night out at the brewery restaurant .", "storylet_id": "244750"}], [{"original_text": "They ordered sausages and other food to go with their beer.", "album_id": "255769", "photo_flickr_id": "10264140", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "48950", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they ordered sausages and other food to go with their beer .", "storylet_id": "244751"}], [{"original_text": "Kim loved her brew.", "album_id": "255769", "photo_flickr_id": "10264151", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "48950", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] loved her brew .", "storylet_id": "244752"}], [{"original_text": "Tom and Margaret took big gulps from theirs too.", "album_id": "255769", "photo_flickr_id": "10264153", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "48950", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and [female] took big gulps from theirs too .", "storylet_id": "244753"}], [{"original_text": "Later they all left, full and happy.", "album_id": "255769", "photo_flickr_id": "10264158", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "48950", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later they all left , full and happy .", "storylet_id": "244754"}], [{"original_text": "We decided to go out to dinner at the T.Y. Harbor Brewery.", "album_id": "255769", "photo_flickr_id": "10264118", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "48951", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go out to dinner at the location . organization organization .", "storylet_id": "244755"}], [{"original_text": "The first beer I got was a little light but it was great.", "album_id": "255769", "photo_flickr_id": "10264133", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "48951", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first beer i got was a little light but it was great .", "storylet_id": "244756"}], [{"original_text": "The food I got to wash it down was a hot dog.", "album_id": "255769", "photo_flickr_id": "10264140", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "48951", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food i got to wash it down was a hot dog .", "storylet_id": "244757"}], [{"original_text": "We then tried a few more dark beers and they were awesome.", "album_id": "255769", "photo_flickr_id": "10264153", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "48951", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we then tried a few more dark beers and they were awesome .", "storylet_id": "244758"}], [{"original_text": "After our dinner we went outside and enjoyed the atmosphere.", "album_id": "255769", "photo_flickr_id": "10264158", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "48951", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after our dinner we went outside and enjoyed the atmosphere .", "storylet_id": "244759"}], [{"original_text": "Heather went to a fancy winery for a fun night out.", "album_id": "255769", "photo_flickr_id": "10264118", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48952", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] went to a fancy winery for a fun night out .", "storylet_id": "244760"}], [{"original_text": "She ordered a dish that she has never tried before.", "album_id": "255769", "photo_flickr_id": "10264140", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48952", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she ordered a dish that she has never tried before .", "storylet_id": "244761"}], [{"original_text": "Alcohol helps her relax when talking to friends.", "album_id": "255769", "photo_flickr_id": "10264151", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48952", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "alcohol helps her relax when talking to friends .", "storylet_id": "244762"}], [{"original_text": "Her friends thought the same thing about her. ", "album_id": "255769", "photo_flickr_id": "10264153", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48952", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her friends thought the same thing about her .", "storylet_id": "244763"}], [{"original_text": "As Heather left the winery, she appreciated the great times she had there. ", "album_id": "255769", "photo_flickr_id": "10264158", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48952", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as [female] left the winery , she appreciated the great times she had there .", "storylet_id": "244764"}], [{"original_text": "This is the best place to eat", "album_id": "255769", "photo_flickr_id": "10264118", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48953", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the best place to eat", "storylet_id": "244765"}], [{"original_text": "I had my usual. ", "album_id": "255769", "photo_flickr_id": "10264140", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48953", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had my usual .", "storylet_id": "244766"}], [{"original_text": "Here Grace sending us peace.", "album_id": "255769", "photo_flickr_id": "10264151", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48953", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here [female] sending us peace .", "storylet_id": "244767"}], [{"original_text": "Jan and Art are enjoying their dark beers.", "album_id": "255769", "photo_flickr_id": "10264153", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48953", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and art are enjoying their dark beers .", "storylet_id": "244768"}], [{"original_text": "After we head out to enjoy the night sky.", "album_id": "255769", "photo_flickr_id": "10264158", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "48953", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we head out to enjoy the night sky .", "storylet_id": "244769"}], [{"original_text": "The restaurant was lit up well", "album_id": "255769", "photo_flickr_id": "10264118", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48954", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the restaurant was lit up well", "storylet_id": "244770"}], [{"original_text": "and served good food.", "album_id": "255769", "photo_flickr_id": "10264140", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48954", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and served good food .", "storylet_id": "244771"}], [{"original_text": "There was beer as well", "album_id": "255769", "photo_flickr_id": "10264151", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48954", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was beer as well", "storylet_id": "244772"}], [{"original_text": "that the couple enjoyed", "album_id": "255769", "photo_flickr_id": "10264153", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48954", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that the couple enjoyed", "storylet_id": "244773"}], [{"original_text": "while looking at the nice flowers.", "album_id": "255769", "photo_flickr_id": "10264158", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48954", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while looking at the nice flowers .", "storylet_id": "244774"}], [{"original_text": "We began our day on a platform in the lake.", "album_id": "794103", "photo_flickr_id": "35915218", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48955", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we began our day on a platform in the lake .", "storylet_id": "244775"}], [{"original_text": "Some of my friends decided to dive off and swim.", "album_id": "794103", "photo_flickr_id": "35915289", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48955", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of my friends decided to dive off and swim .", "storylet_id": "244776"}], [{"original_text": "The bridge led us to a wonderful and secluded spot.", "album_id": "794103", "photo_flickr_id": "35914563", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48955", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bridge led us to a wonderful and secluded spot .", "storylet_id": "244777"}], [{"original_text": "I took a picture with my wife and the spot.", "album_id": "794103", "photo_flickr_id": "35915365", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48955", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i took a picture with my wife and the spot .", "storylet_id": "244778"}], [{"original_text": "We also headed back and relaxed a bit before the sun went down.", "album_id": "794103", "photo_flickr_id": "35915466", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48955", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also headed back and relaxed a bit before the sun went down .", "storylet_id": "244779"}], [{"original_text": "The lake is a perfect summer destination.", "album_id": "794103", "photo_flickr_id": "35913777", "setting": "first-2-pick-and-tell", "worker_id": "VAVWYLD4TRTDH79", "story_id": "48956", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lake is a perfect summer destination .", "storylet_id": "244780"}], [{"original_text": "There are a lot of fun activities to do at the lake.", "album_id": "794103", "photo_flickr_id": "35914563", "setting": "first-2-pick-and-tell", "worker_id": "VAVWYLD4TRTDH79", "story_id": "48956", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are a lot of fun activities to do at the lake .", "storylet_id": "244781"}], [{"original_text": "You can sunbathe on the rocks and floating dock.", "album_id": "794103", "photo_flickr_id": "35915044", "setting": "first-2-pick-and-tell", "worker_id": "VAVWYLD4TRTDH79", "story_id": "48956", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you can sunbathe on the rocks and floating dock .", "storylet_id": "244782"}], [{"original_text": "You can even dive and swim in the cool, clear water.", "album_id": "794103", "photo_flickr_id": "35915289", "setting": "first-2-pick-and-tell", "worker_id": "VAVWYLD4TRTDH79", "story_id": "48956", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you can even dive and swim in the cool , clear water .", "storylet_id": "244783"}], [{"original_text": "It's a great place to come with friends and family.", "album_id": "794103", "photo_flickr_id": "35916325", "setting": "first-2-pick-and-tell", "worker_id": "VAVWYLD4TRTDH79", "story_id": "48956", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's a great place to come with friends and family .", "storylet_id": "244784"}], [{"original_text": "It's a beautiful day at Lake Tahoe. The waters are emerald green and the sun is shining.", "album_id": "794103", "photo_flickr_id": "35913777", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48957", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a beautiful day at location location . the waters are emerald green and the sun is shining .", "storylet_id": "244785"}], [{"original_text": "This is the summer house we've rented. It's in a stunning location and we're ready for fun.", "album_id": "794103", "photo_flickr_id": "35914563", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48957", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the summer house we 've rented . it 's in a stunning location and we 're ready for fun .", "storylet_id": "244786"}], [{"original_text": "The day is hot but the water is ice cold as always. Not everyone is brave enough to dive in.", "album_id": "794103", "photo_flickr_id": "35915044", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48957", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the day is hot but the water is ice cold as always . not everyone is brave enough to dive in .", "storylet_id": "244787"}], [{"original_text": "Of course a few beers helps with the courage. ", "album_id": "794103", "photo_flickr_id": "35915289", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48957", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course a few beers helps with the courage .", "storylet_id": "244788"}], [{"original_text": "The smart ones stay back and watch the foolhardy jumping into the icy water. ", "album_id": "794103", "photo_flickr_id": "35916325", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "48957", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the smart ones stay back and watch the foolhardy jumping into the icy water .", "storylet_id": "244789"}], [{"original_text": "The day of our family vacation finally arrived.", "album_id": "794103", "photo_flickr_id": "35913777", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "48958", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day of our family vacation finally arrived .", "storylet_id": "244790"}], [{"original_text": "We made out way down to the lake after leaving our belongings int eh lodge.", "album_id": "794103", "photo_flickr_id": "35914563", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "48958", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made out way down to the lake after leaving our belongings int eh lodge .", "storylet_id": "244791"}], [{"original_text": "There were a lot of other people out on the river.", "album_id": "794103", "photo_flickr_id": "35915044", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "48958", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of other people out on the river .", "storylet_id": "244792"}], [{"original_text": "They really looked like they were having fun as well.", "album_id": "794103", "photo_flickr_id": "35915289", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "48958", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they really looked like they were having fun as well .", "storylet_id": "244793"}], [{"original_text": "After a good swim we headed back to the lodge to relax.", "album_id": "794103", "photo_flickr_id": "35916325", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "48958", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a good swim we headed back to the lodge to relax .", "storylet_id": "244794"}], [{"original_text": "We spent the weekend at the lake.", "album_id": "794103", "photo_flickr_id": "35915218", "setting": "last-3-pick-old-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "48959", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we spent the weekend at the lake .", "storylet_id": "244795"}], [{"original_text": "First we went swimming from the dock. Diving and swimming.", "album_id": "794103", "photo_flickr_id": "35915289", "setting": "last-3-pick-old-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "48959", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we went swimming from the dock . diving and swimming .", "storylet_id": "244796"}], [{"original_text": "We stayed in our family cabin. ", "album_id": "794103", "photo_flickr_id": "35914563", "setting": "last-3-pick-old-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "48959", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stayed in our family cabin .", "storylet_id": "244797"}], [{"original_text": "The views from the shore are beautiful.", "album_id": "794103", "photo_flickr_id": "35915365", "setting": "last-3-pick-old-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "48959", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the views from the shore are beautiful .", "storylet_id": "244798"}], [{"original_text": "We spent the evenings relaxing and enjoying the great outdoors.", "album_id": "794103", "photo_flickr_id": "35915466", "setting": "last-3-pick-old-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "48959", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we spent the evenings relaxing and enjoying the great outdoors .", "storylet_id": "244799"}], [{"original_text": "A group of friends went to see one of the most popular DJs in the world.", "album_id": "258924", "photo_flickr_id": "10484505", "setting": "first-2-pick-and-tell", "worker_id": "NVCRCURYXZDCOF7", "story_id": "48960", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends went to see one of the most popular djs in the world .", "storylet_id": "244800"}], [{"original_text": "They watched him in awe.", "album_id": "258924", "photo_flickr_id": "10484463", "setting": "first-2-pick-and-tell", "worker_id": "NVCRCURYXZDCOF7", "story_id": "48960", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they watched him in awe .", "storylet_id": "244801"}], [{"original_text": "They made comments about his work, and he overheard.", "album_id": "258924", "photo_flickr_id": "10484356", "setting": "first-2-pick-and-tell", "worker_id": "NVCRCURYXZDCOF7", "story_id": "48960", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they made comments about his work , and he overheard .", "storylet_id": "244802"}], [{"original_text": "He invited them in for a group picture.", "album_id": "258924", "photo_flickr_id": "10484406", "setting": "first-2-pick-and-tell", "worker_id": "NVCRCURYXZDCOF7", "story_id": "48960", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he invited them in for a group picture .", "storylet_id": "244803"}], [{"original_text": "He was actually much friendlier and sillier than they thought!", "album_id": "258924", "photo_flickr_id": "10484400", "setting": "first-2-pick-and-tell", "worker_id": "NVCRCURYXZDCOF7", "story_id": "48960", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was actually much friendlier and sillier than they thought !", "storylet_id": "244804"}], [{"original_text": "Everyone showed up for the party at the club.", "album_id": "258924", "photo_flickr_id": "10484374", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48961", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone showed up for the party at the club .", "storylet_id": "244805"}], [{"original_text": "The DJ was definitely the life of the party.", "album_id": "258924", "photo_flickr_id": "10484390", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48961", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dj was definitely the life of the party .", "storylet_id": "244806"}], [{"original_text": "He was also very good at his musical job.", "album_id": "258924", "photo_flickr_id": "10484430", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48961", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was also very good at his musical job .", "storylet_id": "244807"}], [{"original_text": "The night was danced away by the crowd.", "album_id": "258924", "photo_flickr_id": "10484438", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48961", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the night was danced away by the crowd .", "storylet_id": "244808"}], [{"original_text": "Even some kids came out before the night was over.", "album_id": "258924", "photo_flickr_id": "10484531", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48961", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even some kids came out before the night was over .", "storylet_id": "244809"}], [{"original_text": "This is Jake.", "album_id": "258924", "photo_flickr_id": "10484505", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "48962", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is [male] .", "storylet_id": "244810"}], [{"original_text": "He is the best DJ in the K'ville area!", "album_id": "258924", "photo_flickr_id": "10484463", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "48962", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he is the best dj in the location area !", "storylet_id": "244811"}], [{"original_text": "Everyone asks him to come and DJ their events.", "album_id": "258924", "photo_flickr_id": "10484356", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "48962", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone asks him to come and dj their events .", "storylet_id": "244812"}], [{"original_text": "Everyone has amazing fun with Jake!", "album_id": "258924", "photo_flickr_id": "10484406", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "48962", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone has amazing fun with [male] !", "storylet_id": "244813"}], [{"original_text": "And at times, he gets a little wild and crazy!", "album_id": "258924", "photo_flickr_id": "10484400", "setting": "last-3-pick-old-and-tell", "worker_id": "45SZSSFLD4XCPY1", "story_id": "48962", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and at times , he gets a little wild and crazy !", "storylet_id": "244814"}], [{"original_text": "This DJ sometimes overshadows the music with his antics.", "album_id": "258924", "photo_flickr_id": "10484505", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48963", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this dj sometimes overshadows the music with his antics .", "storylet_id": "244815"}], [{"original_text": "Even though he has a crazy personality, he has critically acclaimed musical taste.", "album_id": "258924", "photo_flickr_id": "10484463", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48963", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even though he has a crazy personality , he has critically acclaimed musical taste .", "storylet_id": "244816"}], [{"original_text": "It's hard not to laugh at the things this grown man does.", "album_id": "258924", "photo_flickr_id": "10484356", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48963", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's hard not to laugh at the things this grown man does .", "storylet_id": "244817"}], [{"original_text": "Everyone loves to get their picture taken with the craziest DJ in town.", "album_id": "258924", "photo_flickr_id": "10484406", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48963", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone loves to get their picture taken with the craziest dj in town .", "storylet_id": "244818"}], [{"original_text": "But sometimes he isn't always appropriate for the whole family.", "album_id": "258924", "photo_flickr_id": "10484400", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "48963", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but sometimes he is n't always appropriate for the whole family .", "storylet_id": "244819"}], [{"original_text": "This group is practicing for the big concert.", "album_id": "258924", "photo_flickr_id": "10484374", "setting": "last-3-pick-old-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "48964", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this group is practicing for the big concert .", "storylet_id": "244820"}], [{"original_text": "They women with white glasses is presenting herself by having a good time.", "album_id": "258924", "photo_flickr_id": "10484390", "setting": "last-3-pick-old-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "48964", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they women with white glasses is presenting herself by having a good time .", "storylet_id": "244821"}], [{"original_text": "This band member practicing his keyboard performance. ", "album_id": "258924", "photo_flickr_id": "10484430", "setting": "last-3-pick-old-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "48964", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this band member practicing his keyboard performance .", "storylet_id": "244822"}], [{"original_text": "This band member also practicing for the concert. ", "album_id": "258924", "photo_flickr_id": "10484438", "setting": "last-3-pick-old-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "48964", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this band member also practicing for the concert .", "storylet_id": "244823"}], [{"original_text": "This band member presenting is two son, both dress in red and blue.", "album_id": "258924", "photo_flickr_id": "10484531", "setting": "last-3-pick-old-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "48964", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this band member presenting is two son , both dress in red and blue .", "storylet_id": "244824"}], [{"original_text": "Rachel and Bo decided to have a big 4th of July party. ", "album_id": "369939", "photo_flickr_id": "15358398", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "48965", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and bo decided to have a big 4th of july party .", "storylet_id": "244825"}], [{"original_text": "They invited all of their closest friends to the party, including Steven.", "album_id": "369939", "photo_flickr_id": "15358435", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "48965", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they invited all of their closest friends to the party , including [male] .", "storylet_id": "244826"}], [{"original_text": "Towards the end of the night everyone found a good spot on the grass to watch the fireworks. ", "album_id": "369939", "photo_flickr_id": "15358280", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "48965", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "towards the end of the night everyone found a good spot on the grass to watch the fireworks .", "storylet_id": "244827"}], [{"original_text": "The fireworks were very beautiful that night. ", "album_id": "369939", "photo_flickr_id": "15358516", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "48965", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fireworks were very beautiful that night .", "storylet_id": "244828"}], [{"original_text": "At the end of the night, everyone was tired including Buster their dog. ", "album_id": "369939", "photo_flickr_id": "15358058", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "48965", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , everyone was tired including buster their dog .", "storylet_id": "244829"}], [{"original_text": "I love sitting on the grass and watching fireworks on the 4th of July. ", "album_id": "369939", "photo_flickr_id": "15358280", "setting": "first-2-pick-and-tell", "worker_id": "FDZJJYBR4MI8ZHR", "story_id": "48966", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love sitting on the grass and watching fireworks on the 4th of july .", "storylet_id": "244830"}], [{"original_text": "The blue swirly one has always been one of my favorites. ", "album_id": "369939", "photo_flickr_id": "15358516", "setting": "first-2-pick-and-tell", "worker_id": "FDZJJYBR4MI8ZHR", "story_id": "48966", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the blue swirly one has always been one of my favorites .", "storylet_id": "244831"}], [{"original_text": "My dog, Boomer, didn't like it so much. ", "album_id": "369939", "photo_flickr_id": "15358058", "setting": "first-2-pick-and-tell", "worker_id": "FDZJJYBR4MI8ZHR", "story_id": "48966", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my dog , boomer , did n't like it so much .", "storylet_id": "244832"}], [{"original_text": "But it did get Lisa's attention inside the house where she had gone to get a snack. ", "album_id": "369939", "photo_flickr_id": "15359082", "setting": "first-2-pick-and-tell", "worker_id": "FDZJJYBR4MI8ZHR", "story_id": "48966", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but it did get [female] 's attention inside the house where she had gone to get a snack .", "storylet_id": "244833"}], [{"original_text": "She got back just in time to watch the rest of the pyrotechnic show with me. It was a very happy Independence Day. ", "album_id": "369939", "photo_flickr_id": "15358435", "setting": "first-2-pick-and-tell", "worker_id": "FDZJJYBR4MI8ZHR", "story_id": "48966", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she got back just in time to watch the rest of the pyrotechnic show with me . it was a very happy independence day .", "storylet_id": "244834"}], [{"original_text": "We watched the fireworks this year under a blue light. This way there was less glare.", "album_id": "369939", "photo_flickr_id": "15358280", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48967", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we watched the fireworks this year under a blue light . this way there was less glare .", "storylet_id": "244835"}], [{"original_text": "Some of the fireworks were blue too.", "album_id": "369939", "photo_flickr_id": "15358516", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48967", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the fireworks were blue too .", "storylet_id": "244836"}], [{"original_text": "My dog felt lonely since he wasn't the center of attention and so he just laid down by our side the entire night.", "album_id": "369939", "photo_flickr_id": "15358058", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48967", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my dog felt lonely since he was n't the center of attention and so he just laid down by our side the entire night .", "storylet_id": "244837"}], [{"original_text": "My girlfriend was pretty busy running around getting things and food.", "album_id": "369939", "photo_flickr_id": "15359082", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48967", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my girlfriend was pretty busy running around getting things and food .", "storylet_id": "244838"}], [{"original_text": "She took some time out from all her duties though and was able to enjoy some of the show with me.", "album_id": "369939", "photo_flickr_id": "15358435", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48967", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she took some time out from all her duties though and was able to enjoy some of the show with me .", "storylet_id": "244839"}], [{"original_text": "I spent the Fourth with my boyfriend and his family!", "album_id": "369939", "photo_flickr_id": "15358398", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48968", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spent the fourth with my boyfriend and his family !", "storylet_id": "244840"}], [{"original_text": "We both agreed to leave early to get to the fireworks show before everyone else.", "album_id": "369939", "photo_flickr_id": "15358435", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48968", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we both agreed to leave early to get to the fireworks show before everyone else .", "storylet_id": "244841"}], [{"original_text": "We laid out blankets on the ground, so we'd have somewhere to sit and watch the show.", "album_id": "369939", "photo_flickr_id": "15358280", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48968", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we laid out blankets on the ground , so we 'd have somewhere to sit and watch the show .", "storylet_id": "244842"}], [{"original_text": "The fireworks show was awesome!", "album_id": "369939", "photo_flickr_id": "15358516", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48968", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fireworks show was awesome !", "storylet_id": "244843"}], [{"original_text": "Even the dog was excited about the celebration.", "album_id": "369939", "photo_flickr_id": "15358058", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "48968", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the dog was excited about the celebration .", "storylet_id": "244844"}], [{"original_text": "The group of friends had a night together to fun.", "album_id": "369939", "photo_flickr_id": "15358398", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48969", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group of friends had a night together to fun .", "storylet_id": "244845"}], [{"original_text": "Everyone was so happy to see each other.", "album_id": "369939", "photo_flickr_id": "15358435", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48969", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was so happy to see each other .", "storylet_id": "244846"}], [{"original_text": "Then they sat outside for the night.", "album_id": "369939", "photo_flickr_id": "15358280", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48969", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they sat outside for the night .", "storylet_id": "244847"}], [{"original_text": "The camera settings were off and captured some strange photos.", "album_id": "369939", "photo_flickr_id": "15358516", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48969", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the camera settings were off and captured some strange photos .", "storylet_id": "244848"}], [{"original_text": "Even the dog joined them outside.", "album_id": "369939", "photo_flickr_id": "15358058", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48969", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the dog joined them outside .", "storylet_id": "244849"}], [{"original_text": "I had to finish the construction project as fast as possible.", "album_id": "497938", "photo_flickr_id": "21396976", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48970", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had to finish the construction project as fast as possible .", "storylet_id": "244850"}], [{"original_text": "The deadline was next week.", "album_id": "497938", "photo_flickr_id": "21397015", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48970", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the deadline was next week .", "storylet_id": "244851"}], [{"original_text": "I still had to do all of the electrical.", "album_id": "497938", "photo_flickr_id": "21397089", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48970", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i still had to do all of the electrical .", "storylet_id": "244852"}], [{"original_text": "I called some people to help me.", "album_id": "497938", "photo_flickr_id": "21397434", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48970", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i called some people to help me .", "storylet_id": "244853"}], [{"original_text": "The place was packed and we finished it up by the end of the week.", "album_id": "497938", "photo_flickr_id": "21397471", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48970", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the place was packed and we finished it up by the end of the week .", "storylet_id": "244854"}], [{"original_text": "We were putting together the last last month.", "album_id": "497938", "photo_flickr_id": "21397015", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48971", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were putting together the last last month .", "storylet_id": "244855"}], [{"original_text": "The finished product looked really amazing.", "album_id": "497938", "photo_flickr_id": "21397269", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48971", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the finished product looked really amazing .", "storylet_id": "244856"}], [{"original_text": "We even had refreshments for everyone working on it.", "album_id": "497938", "photo_flickr_id": "21397345", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48971", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even had refreshments for everyone working on it .", "storylet_id": "244857"}], [{"original_text": "It was really hard work but we all helped each other out.", "album_id": "497938", "photo_flickr_id": "21397394", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48971", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was really hard work but we all helped each other out .", "storylet_id": "244858"}], [{"original_text": "With our team work we were able to out together something really amazing.", "album_id": "497938", "photo_flickr_id": "21397434", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "48971", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with our team work we were able to out together something really amazing .", "storylet_id": "244859"}], [{"original_text": "The set for the new Community show started off slowly.", "album_id": "497938", "photo_flickr_id": "21397015", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48972", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the set for the new community show started off slowly .", "storylet_id": "244860"}], [{"original_text": "It took awhile build because they couldn't decide exactly how to portray the rooms.", "album_id": "497938", "photo_flickr_id": "21397269", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48972", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it took awhile build because they could n't decide exactly how to portray the rooms .", "storylet_id": "244861"}], [{"original_text": "It was great though because the set was catered with sandwiches everyday.", "album_id": "497938", "photo_flickr_id": "21397345", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48972", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was great though because the set was catered with sandwiches everyday .", "storylet_id": "244862"}], [{"original_text": "They even used brick in some places to make it look more believable.", "album_id": "497938", "photo_flickr_id": "21397394", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48972", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even used brick in some places to make it look more believable .", "storylet_id": "244863"}], [{"original_text": "That was also another reason why it took longer than usual to build.", "album_id": "497938", "photo_flickr_id": "21397434", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "48972", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that was also another reason why it took longer than usual to build .", "storylet_id": "244864"}], [{"original_text": "The construction scene was surprisingly clean.", "album_id": "497938", "photo_flickr_id": "21397015", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48973", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the construction scene was surprisingly clean .", "storylet_id": "244865"}], [{"original_text": "The workers didn't like mess, so they made sure to clean up every night.", "album_id": "497938", "photo_flickr_id": "21397269", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48973", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the workers did n't like mess , so they made sure to clean up every night .", "storylet_id": "244866"}], [{"original_text": "They had tables set up for them to eat lunch on,", "album_id": "497938", "photo_flickr_id": "21397345", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48973", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had tables set up for them to eat lunch on ,", "storylet_id": "244867"}], [{"original_text": "and then they got back to work", "album_id": "497938", "photo_flickr_id": "21397394", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48973", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and then they got back to work", "storylet_id": "244868"}], [{"original_text": "constructing the new building. ", "album_id": "497938", "photo_flickr_id": "21397434", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48973", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "constructing the new building .", "storylet_id": "244869"}], [{"original_text": "The workers are working on renovating a building.", "album_id": "497938", "photo_flickr_id": "21396976", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48974", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the workers are working on renovating a building .", "storylet_id": "244870"}], [{"original_text": "They worked on building the walls and the carpet.", "album_id": "497938", "photo_flickr_id": "21397015", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48974", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they worked on building the walls and the carpet .", "storylet_id": "244871"}], [{"original_text": "Then they worked on the individual offices.", "album_id": "497938", "photo_flickr_id": "21397089", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48974", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they worked on the individual offices .", "storylet_id": "244872"}], [{"original_text": "After that they finished the tile floors.", "album_id": "497938", "photo_flickr_id": "21397434", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48974", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that they finished the tile floors .", "storylet_id": "244873"}], [{"original_text": "Once they were done the crowd of people was there to celebrate the completion. ", "album_id": "497938", "photo_flickr_id": "21397471", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48974", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once they were done the crowd of people was there to celebrate the completion .", "storylet_id": "244874"}], [{"original_text": "Went to the public market, let's see what we can find today? ", "album_id": "499924", "photo_flickr_id": "21411940", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "48975", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went to the public market , let 's see what we can find today ?", "storylet_id": "244875"}], [{"original_text": "Parking was so easy, can't believe there weren't more cars here. ", "album_id": "499924", "photo_flickr_id": "21411553", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "48975", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "parking was so easy , ca n't believe there were n't more cars here .", "storylet_id": "244876"}], [{"original_text": "Fresh food, I'm sold. ", "album_id": "499924", "photo_flickr_id": "21409422", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "48975", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "fresh food , i 'm sold .", "storylet_id": "244877"}], [{"original_text": "They have some of the freshest crab in town, I'll take 2 please. ", "album_id": "499924", "photo_flickr_id": "21409779", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "48975", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they have some of the freshest crab in town , i 'll take 2 please .", "storylet_id": "244878"}], [{"original_text": "There were tons of people there and long lines for samples. ", "album_id": "499924", "photo_flickr_id": "21411189", "setting": "first-2-pick-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "48975", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were tons of people there and long lines for samples .", "storylet_id": "244879"}], [{"original_text": "Three senior students took a cruise of the bay.", "album_id": "499924", "photo_flickr_id": "21411837", "setting": "first-2-pick-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "48976", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "three senior students took a cruise of the bay .", "storylet_id": "244880"}], [{"original_text": "After the cruise one of the student went market shopping.", "album_id": "499924", "photo_flickr_id": "21409422", "setting": "first-2-pick-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "48976", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after the cruise one of the student went market shopping .", "storylet_id": "244881"}], [{"original_text": "All three students are taking a bus tour viewing the scene.", "album_id": "499924", "photo_flickr_id": "21410534", "setting": "first-2-pick-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "48976", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all three students are taking a bus tour viewing the scene .", "storylet_id": "244882"}], [{"original_text": "All three students are being presented with metal for outstanding performance.", "album_id": "499924", "photo_flickr_id": "21411082", "setting": "first-2-pick-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "48976", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all three students are being presented with metal for outstanding performance .", "storylet_id": "244883"}], [{"original_text": "Before returning home, the students are having a conversation.", "album_id": "499924", "photo_flickr_id": "21411264", "setting": "first-2-pick-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "48976", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before returning home , the students are having a conversation .", "storylet_id": "244884"}], [{"original_text": "We walked on the boardwalk in our way to the tech convention. ", "album_id": "499924", "photo_flickr_id": "21411837", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48977", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we walked on the boardwalk in our way to the tech convention .", "storylet_id": "244885"}], [{"original_text": "We passed a street market that was loaded with amazing looking fresh vegetables. ", "album_id": "499924", "photo_flickr_id": "21409422", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48977", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we passed a street market that was loaded with amazing looking fresh vegetables .", "storylet_id": "244886"}], [{"original_text": "We had to take a tram once we got on campus. ", "album_id": "499924", "photo_flickr_id": "21410534", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48977", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had to take a tram once we got on campus .", "storylet_id": "244887"}], [{"original_text": "We saw a robot demo that was really cool at the convention. ", "album_id": "499924", "photo_flickr_id": "21411082", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48977", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw a robot demo that was really cool at the convention .", "storylet_id": "244888"}], [{"original_text": "Outside, we met some guys who worked in our field and sat to talk with them a bit about our projects. ", "album_id": "499924", "photo_flickr_id": "21411264", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "48977", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "outside , we met some guys who worked in our field and sat to talk with them a bit about our projects .", "storylet_id": "244889"}], [{"original_text": "I love taking trips to the market.", "album_id": "499924", "photo_flickr_id": "21411940", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48978", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love taking trips to the market .", "storylet_id": "244890"}], [{"original_text": "Its a bit of a drive but well worth it.", "album_id": "499924", "photo_flickr_id": "21411553", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48978", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "its a bit of a drive but well worth it .", "storylet_id": "244891"}], [{"original_text": "They have fresh vegetables and fruit all week.", "album_id": "499924", "photo_flickr_id": "21409422", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48978", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they have fresh vegetables and fruit all week .", "storylet_id": "244892"}], [{"original_text": "As well as plenty of fish and meat.", "album_id": "499924", "photo_flickr_id": "21409779", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48978", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as well as plenty of fish and meat .", "storylet_id": "244893"}], [{"original_text": "The best part has to be the people though.", "album_id": "499924", "photo_flickr_id": "21411189", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "48978", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part has to be the people though .", "storylet_id": "244894"}], [{"original_text": "The market was having a huge sale today,", "album_id": "499924", "photo_flickr_id": "21411940", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48979", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the market was having a huge sale today ,", "storylet_id": "244895"}], [{"original_text": "so the workers expected a lot of people to drive by.", "album_id": "499924", "photo_flickr_id": "21411553", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48979", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so the workers expected a lot of people to drive by .", "storylet_id": "244896"}], [{"original_text": "Before they opened, they set out all of their produce,", "album_id": "499924", "photo_flickr_id": "21409422", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48979", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "before they opened , they set out all of their produce ,", "storylet_id": "244897"}], [{"original_text": "and made sure there were signs explaining how the sale worked.", "album_id": "499924", "photo_flickr_id": "21409779", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48979", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and made sure there were signs explaining how the sale worked .", "storylet_id": "244898"}], [{"original_text": "Finally, people started showing up, and the sale was a great hit. ", "album_id": "499924", "photo_flickr_id": "21411189", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48979", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , people started showing up , and the sale was a great hit .", "storylet_id": "244899"}], [{"original_text": "At last it was time for Paint Party 2005.", "album_id": "819764", "photo_flickr_id": "37115006", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "48980", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at last it was time for paint party 2005 .", "storylet_id": "244900"}], [{"original_text": "Ivan draw outlines of some creatures to paint on the otherwise boring wall.", "album_id": "819764", "photo_flickr_id": "37115031", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "48980", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] draw outlines of some creatures to paint on the otherwise boring wall .", "storylet_id": "244901"}], [{"original_text": "Unicorns made an appearance among the other mythical creatures that began to grace the walls that day.", "album_id": "819764", "photo_flickr_id": "37115053", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "48980", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "unicorns made an appearance among the other mythical creatures that began to grace the walls that day .", "storylet_id": "244902"}], [{"original_text": "Even the toilet became part of the art.", "album_id": "819764", "photo_flickr_id": "37114995", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "48980", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the toilet became part of the art .", "storylet_id": "244903"}], [{"original_text": "Afterward, there was a well deserved rest for all.", "album_id": "819764", "photo_flickr_id": "37115027", "setting": "first-2-pick-and-tell", "worker_id": "P6Q12HF8DXE0LDR", "story_id": "48980", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward , there was a well deserved rest for all .", "storylet_id": "244904"}], [{"original_text": "does anyone know an interior designeer ", "album_id": "819764", "photo_flickr_id": "37114997", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "48981", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "does anyone know an interior designeer", "storylet_id": "244905"}], [{"original_text": "to take this blank slate ", "album_id": "819764", "photo_flickr_id": "37115035", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "48981", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to take this blank slate", "storylet_id": "244906"}], [{"original_text": "and make something beautiful ", "album_id": "819764", "photo_flickr_id": "37115053", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "48981", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and make something beautiful", "storylet_id": "244907"}], [{"original_text": "it's hard work to make design work of a wall ", "album_id": "819764", "photo_flickr_id": "37115068", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "48981", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's hard work to make design work of a wall", "storylet_id": "244908"}], [{"original_text": "umm this is not what I was looking for ", "album_id": "819764", "photo_flickr_id": "37114995", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "48981", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "umm this is not what i was looking for", "storylet_id": "244909"}], [{"original_text": "Mike pointed out a spot on the wall", "album_id": "819764", "photo_flickr_id": "37114997", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48982", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] pointed out a spot on the wall", "storylet_id": "244910"}], [{"original_text": "that was completely empty. He decided it was too empty", "album_id": "819764", "photo_flickr_id": "37115035", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48982", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that was completely empty . he decided it was too empty", "storylet_id": "244911"}], [{"original_text": "and needed to be drawn on. So he found some art supplies and drew a unicorn.", "album_id": "819764", "photo_flickr_id": "37115053", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48982", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and needed to be drawn on . so he found some art supplies and drew a unicorn .", "storylet_id": "244912"}], [{"original_text": "Martha joined in and started drawing cool designs on the wall.", "album_id": "819764", "photo_flickr_id": "37115068", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48982", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] joined in and started drawing cool designs on the wall .", "storylet_id": "244913"}], [{"original_text": "Their other friend, Lyle, was just being crazy though, and his artwork was to nail a toilet seat to the wall and draw a fish in the middle. It was really funny, but not very practical. Overall, though, they had fun decorating the walls. ", "album_id": "819764", "photo_flickr_id": "37114995", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "48982", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their other friend , [male] , was just being crazy though , and his artwork was to nail a toilet seat to the wall and draw a fish in the middle . it was really funny , but not very practical . overall , though , they had fun decorating the walls .", "storylet_id": "244914"}], [{"original_text": "Everyone decided to throw a paint party.", "album_id": "819764", "photo_flickr_id": "37115006", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48983", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone decided to throw a paint party .", "storylet_id": "244915"}], [{"original_text": "First they drew doodles on the walls.", "album_id": "819764", "photo_flickr_id": "37115031", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48983", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first they drew doodles on the walls .", "storylet_id": "244916"}], [{"original_text": "Then they painted them in.", "album_id": "819764", "photo_flickr_id": "37115053", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48983", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they painted them in .", "storylet_id": "244917"}], [{"original_text": "After that they hung up decorations to go with the paintings.", "album_id": "819764", "photo_flickr_id": "37114995", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48983", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that they hung up decorations to go with the paintings .", "storylet_id": "244918"}], [{"original_text": "At the end of the day, everyone was ready for a break.", "album_id": "819764", "photo_flickr_id": "37115027", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48983", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , everyone was ready for a break .", "storylet_id": "244919"}], [{"original_text": "The chalkboard was written on", "album_id": "819764", "photo_flickr_id": "37115006", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48984", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the chalkboard was written on", "storylet_id": "244920"}], [{"original_text": "before the guy started drawing.", "album_id": "819764", "photo_flickr_id": "37115031", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48984", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before the guy started drawing .", "storylet_id": "244921"}], [{"original_text": "He draw a big unicorn", "album_id": "819764", "photo_flickr_id": "37115053", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48984", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he draw a big unicorn", "storylet_id": "244922"}], [{"original_text": "and a fish in a toilet", "album_id": "819764", "photo_flickr_id": "37114995", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48984", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and a fish in a toilet", "storylet_id": "244923"}], [{"original_text": "and his wife was impressed.", "album_id": "819764", "photo_flickr_id": "37115027", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48984", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and his wife was impressed .", "storylet_id": "244924"}], [{"original_text": "It was a day for the musicians to get together.", "album_id": "135741", "photo_flickr_id": "5386000", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48985", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a day for the musicians to get together .", "storylet_id": "244925"}], [{"original_text": "They started to slowly show up and they brought their own instruments.", "album_id": "135741", "photo_flickr_id": "5385003", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48985", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they started to slowly show up and they brought their own instruments .", "storylet_id": "244926"}], [{"original_text": "Everyone always loves to sing that song.", "album_id": "135741", "photo_flickr_id": "5385001", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48985", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone always loves to sing that song .", "storylet_id": "244927"}], [{"original_text": "Finally the electric guitarist showed up.", "album_id": "135741", "photo_flickr_id": "5386021", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48985", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally the electric guitarist showed up .", "storylet_id": "244928"}], [{"original_text": "One last jam session before the day is through.", "album_id": "135741", "photo_flickr_id": "5489837", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "48985", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one last jam session before the day is through .", "storylet_id": "244929"}], [{"original_text": "My music buddies and I are having a jam session.", "album_id": "135741", "photo_flickr_id": "5489834", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "48986", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my music buddies and i are having a jam session .", "storylet_id": "244930"}], [{"original_text": "Larry plays a sassy sax.", "album_id": "135741", "photo_flickr_id": "5386000", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "48986", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] plays a sassy sax .", "storylet_id": "244931"}], [{"original_text": "Jen rips the accordion licks. ", "album_id": "135741", "photo_flickr_id": "5385018", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "48986", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "jen rips the accordion licks .", "storylet_id": "244932"}], [{"original_text": "I love guitar and am working the chords.", "album_id": "135741", "photo_flickr_id": "5385016", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "48986", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love guitar and am working the chords .", "storylet_id": "244933"}], [{"original_text": "Pete really gets into the keyboards and keeps the music tempo.", "album_id": "135741", "photo_flickr_id": "5385998", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "48986", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] really gets into the keyboards and keeps the music tempo .", "storylet_id": "244934"}], [{"original_text": "Seth performed a wonderful saxophone solo at the start of the jam session. ", "album_id": "135741", "photo_flickr_id": "5386000", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48987", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] performed a wonderful saxophone solo at the start of the jam session .", "storylet_id": "244935"}], [{"original_text": "A couple of people brought their own instruments and attempted to play them.", "album_id": "135741", "photo_flickr_id": "5385003", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48987", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a couple of people brought their own instruments and attempted to play them .", "storylet_id": "244936"}], [{"original_text": "An amateur pianist started to play The Entertainer and got a good reception.", "album_id": "135741", "photo_flickr_id": "5385001", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48987", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "an amateur pianist started to play the entertainer and got a good reception .", "storylet_id": "244937"}], [{"original_text": "Juan brought his guitar and began to wail on it.", "album_id": "135741", "photo_flickr_id": "5386021", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48987", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] brought his guitar and began to wail on it .", "storylet_id": "244938"}], [{"original_text": "The other musicians started their own jam session and moved to the garage shortly after. ", "album_id": "135741", "photo_flickr_id": "5489837", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "48987", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the other musicians started their own jam session and moved to the garage shortly after .", "storylet_id": "244939"}], [{"original_text": "There are many musicians at the party.", "album_id": "135741", "photo_flickr_id": "5386000", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48988", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are many musicians at the party .", "storylet_id": "244940"}], [{"original_text": "People are playing guitar", "album_id": "135741", "photo_flickr_id": "5385003", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48988", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people are playing guitar", "storylet_id": "244941"}], [{"original_text": "and piano", "album_id": "135741", "photo_flickr_id": "5385001", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48988", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and piano", "storylet_id": "244942"}], [{"original_text": "and electric guitar.", "album_id": "135741", "photo_flickr_id": "5386021", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48988", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and electric guitar .", "storylet_id": "244943"}], [{"original_text": "The band is all playing together.", "album_id": "135741", "photo_flickr_id": "5489837", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "48988", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the band is all playing together .", "storylet_id": "244944"}], [{"original_text": "The Mighty Raccoons Brass Band had not seen in each other in years before they reunited.", "album_id": "135741", "photo_flickr_id": "5489834", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "48989", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the mighty raccoons brass band had not seen in each other in years before they reunited .", "storylet_id": "244945"}], [{"original_text": "Teddy 'Bad Sax' Molinski was ready to go.", "album_id": "135741", "photo_flickr_id": "5386000", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "48989", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] 'bad sax ' molinski was ready to go .", "storylet_id": "244946"}], [{"original_text": "Terry 'Motor Mouth' Crews arrived with a hot harmonica that needed playing.", "album_id": "135741", "photo_flickr_id": "5385018", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "48989", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] 'motor mouth ' crews arrived with a hot harmonica that needed playing .", "storylet_id": "244947"}], [{"original_text": "Bobby 'Stinky Finger' Jones was rocking the second he showed up.", "album_id": "135741", "photo_flickr_id": "5385016", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "48989", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] 'stinky finger ' jones was rocking the second he showed up .", "storylet_id": "244948"}], [{"original_text": "The band was all there, and played there forgotten hits alone, and together, throughout the night.", "album_id": "135741", "photo_flickr_id": "5385998", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "48989", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the band was all there , and played there forgotten hits alone , and together , throughout the night .", "storylet_id": "244949"}], [{"original_text": "The day started with a beer and the pipe.", "album_id": "1237313", "photo_flickr_id": "28415662", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48990", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day started with a beer and the pipe .", "storylet_id": "244950"}], [{"original_text": "My cousin went outside to look the animals.", "album_id": "1237313", "photo_flickr_id": "28415726", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48990", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my cousin went outside to look the animals .", "storylet_id": "244951"}], [{"original_text": "That night, we staged a huge campfire.", "album_id": "1237313", "photo_flickr_id": "28415908", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48990", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that night , we staged a huge campfire .", "storylet_id": "244952"}], [{"original_text": "My sister brought her blanket along with her.", "album_id": "1237313", "photo_flickr_id": "28784334", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48990", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my sister brought her blanket along with her .", "storylet_id": "244953"}], [{"original_text": "Before the night was over, my brother went to sleep early.", "album_id": "1237313", "photo_flickr_id": "28416397", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "48990", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before the night was over , my brother went to sleep early .", "storylet_id": "244954"}], [{"original_text": "The beach party was crazy.", "album_id": "1237313", "photo_flickr_id": "28416112", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48991", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beach party was crazy .", "storylet_id": "244955"}], [{"original_text": "We had a huge fire going.", "album_id": "1237313", "photo_flickr_id": "28416260", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48991", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a huge fire going .", "storylet_id": "244956"}], [{"original_text": "We sat around telling stories.", "album_id": "1237313", "photo_flickr_id": "28784305", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48991", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we sat around telling stories .", "storylet_id": "244957"}], [{"original_text": "We also brought some drinks with us.", "album_id": "1237313", "photo_flickr_id": "28416375", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48991", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also brought some drinks with us .", "storylet_id": "244958"}], [{"original_text": "Afterward we were very sleepy.", "album_id": "1237313", "photo_flickr_id": "28416397", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "48991", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we were very sleepy .", "storylet_id": "244959"}], [{"original_text": "We decided to go camping and dad was all up for it.", "album_id": "1237313", "photo_flickr_id": "28415662", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "48992", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go camping and dad was all up for it .", "storylet_id": "244960"}], [{"original_text": "There were animals in the wilderness where we decided to settle.", "album_id": "1237313", "photo_flickr_id": "28415726", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "48992", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were animals in the wilderness where we decided to settle .", "storylet_id": "244961"}], [{"original_text": "We built a camp fire and the fire lit up high.", "album_id": "1237313", "photo_flickr_id": "28415908", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "48992", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we built a camp fire and the fire lit up high .", "storylet_id": "244962"}], [{"original_text": "Still, it was super chilly.", "album_id": "1237313", "photo_flickr_id": "28784334", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "48992", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "still , it was super chilly .", "storylet_id": "244963"}], [{"original_text": "But I still slept like a pig that night and didn't want to wake when the sun was high and bright.", "album_id": "1237313", "photo_flickr_id": "28416397", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "48992", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but i still slept like a pig that night and did n't want to wake when the sun was high and bright .", "storylet_id": "244964"}], [{"original_text": "The men set up a large bonfire.", "album_id": "1237313", "photo_flickr_id": "28416112", "setting": "last-3-pick-old-and-tell", "worker_id": "3175AKY9DY9MXJ2", "story_id": "48993", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the men set up a large bonfire .", "storylet_id": "244965"}], [{"original_text": "They use an old bedfrme to get it started.", "album_id": "1237313", "photo_flickr_id": "28416260", "setting": "last-3-pick-old-and-tell", "worker_id": "3175AKY9DY9MXJ2", "story_id": "48993", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they use an old bedfrme to get it started .", "storylet_id": "244966"}], [{"original_text": "A woman leans in towards the fire to warm up.", "album_id": "1237313", "photo_flickr_id": "28784305", "setting": "last-3-pick-old-and-tell", "worker_id": "3175AKY9DY9MXJ2", "story_id": "48993", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a woman leans in towards the fire to warm up .", "storylet_id": "244967"}], [{"original_text": "Friends talk about old memories through the evening.", "album_id": "1237313", "photo_flickr_id": "28416375", "setting": "last-3-pick-old-and-tell", "worker_id": "3175AKY9DY9MXJ2", "story_id": "48993", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "friends talk about old memories through the evening .", "storylet_id": "244968"}], [{"original_text": "A girl falls asleep after a long night.", "album_id": "1237313", "photo_flickr_id": "28416397", "setting": "last-3-pick-old-and-tell", "worker_id": "3175AKY9DY9MXJ2", "story_id": "48993", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a girl falls asleep after a long night .", "storylet_id": "244969"}], [{"original_text": "Papa Joe sat around puffing on a cigar and drinking a can of beer.", "album_id": "1237313", "photo_flickr_id": "28415662", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "48994", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "papa [male] sat around puffing on a cigar and drinking a can of beer .", "storylet_id": "244970"}], [{"original_text": "The guys waited outside for it to get dark.", "album_id": "1237313", "photo_flickr_id": "28415726", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "48994", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guys waited outside for it to get dark .", "storylet_id": "244971"}], [{"original_text": "It was time for a bonfire.", "album_id": "1237313", "photo_flickr_id": "28415908", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "48994", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was time for a bonfire .", "storylet_id": "244972"}], [{"original_text": "It was chilly that evening, great weather to be wrapped in a cozy blanket.", "album_id": "1237313", "photo_flickr_id": "28784334", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "48994", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was chilly that evening , great weather to be wrapped in a cozy blanket .", "storylet_id": "244973"}], [{"original_text": "Such a late night made everyone rather sleepy.", "album_id": "1237313", "photo_flickr_id": "28416397", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "48994", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "such a late night made everyone rather sleepy .", "storylet_id": "244974"}], [{"original_text": "I was quite concerned when I was at the amusement park and people in bio chemical suits began to show up. I worried there was a virus outbreak.", "album_id": "649651", "photo_flickr_id": "28801655", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "48995", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was quite concerned when i was at the amusement park and people in bio chemical suits began to show up . i worried there was a virus outbreak .", "storylet_id": "244975"}], [{"original_text": "I noticed that staff members met with them and escorted them into the auditorium.", "album_id": "649651", "photo_flickr_id": "28811082", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "48995", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i noticed that staff members met with them and escorted them into the auditorium .", "storylet_id": "244976"}], [{"original_text": "They were followed by company executives. It turned out it was a seminar as to how to keep guests safe in case of a breakout.", "album_id": "649651", "photo_flickr_id": "28820400", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "48995", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were followed by company executives . it turned out it was a seminar as to how to keep guests safe in case of a breakout .", "storylet_id": "244977"}], [{"original_text": "Afterwards, they spend some time answering questions for the park's guests.", "album_id": "649651", "photo_flickr_id": "28803641", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "48995", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards , they spend some time answering questions for the park 's guests .", "storylet_id": "244978"}], [{"original_text": "They even posed for pictures. I was so glad there was nothing wrong.", "album_id": "649651", "photo_flickr_id": "28798658", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "48995", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even posed for pictures . i was so glad there was nothing wrong .", "storylet_id": "244979"}], [{"original_text": "there was an exercise in the city today ", "album_id": "649651", "photo_flickr_id": "28810077", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48996", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an exercise in the city today", "storylet_id": "244980"}], [{"original_text": "people in hazmat suits walked around to raise awareness ", "album_id": "649651", "photo_flickr_id": "28815273", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48996", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people in hazmat suits walked around to raise awareness", "storylet_id": "244981"}], [{"original_text": "they were telling people about potential hazardous waste", "album_id": "649651", "photo_flickr_id": "28816760", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48996", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were telling people about potential hazardous waste", "storylet_id": "244982"}], [{"original_text": "they really caught the attention of the fat cats", "album_id": "649651", "photo_flickr_id": "28818620", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48996", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they really caught the attention of the fat cats", "storylet_id": "244983"}], [{"original_text": "the big business people couldnt get into their building ", "album_id": "649651", "photo_flickr_id": "28819663", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "48996", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the big business people couldnt get into their building", "storylet_id": "244984"}], [{"original_text": "there was an out break last week.", "album_id": "649651", "photo_flickr_id": "28801655", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48997", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an out break last week .", "storylet_id": "244985"}], [{"original_text": "me and my team where sent to take a look at what we could do.", "album_id": "649651", "photo_flickr_id": "28811082", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48997", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "me and my team where sent to take a look at what we could do .", "storylet_id": "244986"}], [{"original_text": "we meet with some suits before we went in.", "album_id": "649651", "photo_flickr_id": "28820400", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48997", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we meet with some suits before we went in .", "storylet_id": "244987"}], [{"original_text": "after we found nothing we went and talked to the locals.", "album_id": "649651", "photo_flickr_id": "28803641", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48997", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after we found nothing we went and talked to the locals .", "storylet_id": "244988"}], [{"original_text": "some of them even wanted to take pictures.", "album_id": "649651", "photo_flickr_id": "28798658", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "48997", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of them even wanted to take pictures .", "storylet_id": "244989"}], [{"original_text": "Dressed in hazard gear, they hoped to make an impact on the community.", "album_id": "649651", "photo_flickr_id": "28810077", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "48998", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dressed in hazard gear , they hoped to make an impact on the community .", "storylet_id": "244990"}], [{"original_text": "Armed with flyers, they were determined to make a difference.", "album_id": "649651", "photo_flickr_id": "28815273", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "48998", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "armed with flyers , they were determined to make a difference .", "storylet_id": "244991"}], [{"original_text": "Many people stopped and listened to what they had to say.", "album_id": "649651", "photo_flickr_id": "28816760", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "48998", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many people stopped and listened to what they had to say .", "storylet_id": "244992"}], [{"original_text": "Others were hesitant, wanting to get away as quickly as possible.", "album_id": "649651", "photo_flickr_id": "28818620", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "48998", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others were hesitant , wanting to get away as quickly as possible .", "storylet_id": "244993"}], [{"original_text": "In the end, it seemed that they had done some good for their cause.", "album_id": "649651", "photo_flickr_id": "28819663", "setting": "last-3-pick-old-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "48998", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , it seemed that they had done some good for their cause .", "storylet_id": "244994"}], [{"original_text": "A group of people protested in costumes.", "album_id": "649651", "photo_flickr_id": "28810077", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48999", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of people protested in costumes .", "storylet_id": "244995"}], [{"original_text": "They waited on the street for people to pass by.", "album_id": "649651", "photo_flickr_id": "28815273", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48999", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they waited on the street for people to pass by .", "storylet_id": "244996"}], [{"original_text": "Then they would hand fliers to people that would pass by.", "album_id": "649651", "photo_flickr_id": "28816760", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48999", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they would hand fliers to people that would pass by .", "storylet_id": "244997"}], [{"original_text": "After that they walked down the street to find more people.", "album_id": "649651", "photo_flickr_id": "28818620", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48999", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that they walked down the street to find more people .", "storylet_id": "244998"}], [{"original_text": "They stopped a couple of men as they were walking inside the building.", "album_id": "649651", "photo_flickr_id": "28819663", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "48999", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they stopped a couple of men as they were walking inside the building .", "storylet_id": "244999"}], [{"original_text": "We took cool looking train into the city.", "album_id": "5521", "photo_flickr_id": "269115", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "49000", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took cool looking train into the city .", "storylet_id": "245000"}], [{"original_text": "We went to a beautiful park downtown.", "album_id": "5521", "photo_flickr_id": "269122", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "49000", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to a beautiful park downtown .", "storylet_id": "245001"}], [{"original_text": "The views from the park were breathtaking.", "album_id": "5521", "photo_flickr_id": "269129", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "49000", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the views from the park were breathtaking .", "storylet_id": "245002"}], [{"original_text": "We went to a spa to relax after the park.", "album_id": "5521", "photo_flickr_id": "269147", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "49000", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went to a spa to relax after the park .", "storylet_id": "245003"}], [{"original_text": "Followed by an amazing sushi dinner to top off a great day.", "album_id": "5521", "photo_flickr_id": "269159", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "49000", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "followed by an amazing sushi dinner to top off a great day .", "storylet_id": "245004"}], [{"original_text": "This is a new rocket subway being installed in Canada. ", "album_id": "5521", "photo_flickr_id": "269115", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49001", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a new rocket subway being installed in location .", "storylet_id": "245005"}], [{"original_text": "It's built underground to keep from disturbing roads already in place. ", "album_id": "5521", "photo_flickr_id": "269117", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49001", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's built underground to keep from disturbing roads already in place .", "storylet_id": "245006"}], [{"original_text": "The stations run for several blocks each. ", "album_id": "5521", "photo_flickr_id": "269116", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49001", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the stations run for several blocks each .", "storylet_id": "245007"}], [{"original_text": "In just a few months this area will be full of passengers. ", "album_id": "5521", "photo_flickr_id": "269118", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49001", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in just a few months this area will be full of passengers .", "storylet_id": "245008"}], [{"original_text": "This is a smaller eraly morning commuter version pulling in. ", "album_id": "5521", "photo_flickr_id": "269136", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49001", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a smaller eraly morning commuter version pulling in .", "storylet_id": "245009"}], [{"original_text": "The subway was extremely fast and efficient.", "album_id": "5521", "photo_flickr_id": "269115", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49002", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the subway was extremely fast and efficient .", "storylet_id": "245010"}], [{"original_text": "When we got off, we headed through the entrance to the spa.", "album_id": "5521", "photo_flickr_id": "269122", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49002", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we got off , we headed through the entrance to the spa .", "storylet_id": "245011"}], [{"original_text": "These was a longer journey than we thought to the spa.", "album_id": "5521", "photo_flickr_id": "269129", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49002", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these was a longer journey than we thought to the spa .", "storylet_id": "245012"}], [{"original_text": "When we got there, there was only one person in the tub.", "album_id": "5521", "photo_flickr_id": "269147", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49002", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we got there , there was only one person in the tub .", "storylet_id": "245013"}], [{"original_text": "We had a lot of delicious food at the spa.", "album_id": "5521", "photo_flickr_id": "269159", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49002", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a lot of delicious food at the spa .", "storylet_id": "245014"}], [{"original_text": "It's new bullet train. We call it Donald because of the nose which looks like a duck bill.", "album_id": "5521", "photo_flickr_id": "269115", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "49003", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's new bullet train . we call it [male] because of the nose which looks like a duck bill .", "storylet_id": "245015"}], [{"original_text": "Today is testing day for this new train. The station is empty because it's not ready for the public yet.", "album_id": "5521", "photo_flickr_id": "269117", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "49003", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today is testing day for this new train . the station is empty because it 's not ready for the public yet .", "storylet_id": "245016"}], [{"original_text": "The tracks are clear too. We don't want anything getting in the way of the test.", "album_id": "5521", "photo_flickr_id": "269116", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "49003", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tracks are clear too . we do n't want anything getting in the way of the test .", "storylet_id": "245017"}], [{"original_text": "It's weird to see the place so empty. Like a zombie apocalypse emptied the place of humanity.", "album_id": "5521", "photo_flickr_id": "269118", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "49003", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's weird to see the place so empty . like a zombie apocalypse emptied the place of humanity .", "storylet_id": "245018"}], [{"original_text": "Okay, and we're off. The test ride has begun.", "album_id": "5521", "photo_flickr_id": "269136", "setting": "last-3-pick-old-and-tell", "worker_id": "F1MJXSNJ5EIGTW5", "story_id": "49003", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "okay , and we 're off . the test ride has begun .", "storylet_id": "245019"}], [{"original_text": "Asian subways always impress me.", "album_id": "5521", "photo_flickr_id": "269115", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "49004", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "asian subways always impress me .", "storylet_id": "245020"}], [{"original_text": "The floors are so clean i would eat off them.", "album_id": "5521", "photo_flickr_id": "269117", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "49004", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the floors are so clean i would eat off them .", "storylet_id": "245021"}], [{"original_text": "Couldnt say that about American subways.", "album_id": "5521", "photo_flickr_id": "269116", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "49004", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "couldnt say that about american subways .", "storylet_id": "245022"}], [{"original_text": "Its odd to see them deserted, usally they are packed.", "album_id": "5521", "photo_flickr_id": "269118", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "49004", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "its odd to see them deserted , usally they are packed .", "storylet_id": "245023"}], [{"original_text": "I would take this to work every day if i could ", "album_id": "5521", "photo_flickr_id": "269136", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "49004", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i would take this to work every day if i could", "storylet_id": "245024"}], [{"original_text": "We decorated the Christmas tree for the holiday party. ", "album_id": "63789", "photo_flickr_id": "2544681", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "49005", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decorated the christmas tree for the holiday party .", "storylet_id": "245025"}], [{"original_text": "Our cat, Fluffy, climbed up a small tree, and wouldn't come back to the house. ", "album_id": "63789", "photo_flickr_id": "2544717", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "49005", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our cat , fluffy , climbed up a small tree , and would n't come back to the house .", "storylet_id": "245026"}], [{"original_text": "My friend and I baked brownies for the party. ", "album_id": "63789", "photo_flickr_id": "2544725", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "49005", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend and i baked brownies for the party .", "storylet_id": "245027"}], [{"original_text": "My brother-in-law, and his son, David, getting ready for dinner. ", "album_id": "63789", "photo_flickr_id": "2544790", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "49005", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my brother-in-law , and his son , [male] , getting ready for dinner .", "storylet_id": "245028"}], [{"original_text": "The pie we bought from Walmart was very delicious.", "album_id": "63789", "photo_flickr_id": "2544803", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "49005", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the pie we bought from organization was very delicious .", "storylet_id": "245029"}], [{"original_text": "Christmas is my favorite time of year.", "album_id": "63789", "photo_flickr_id": "2544681", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49006", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "christmas is my favorite time of year .", "storylet_id": "245030"}], [{"original_text": "We all gathered together to celebrate.", "album_id": "63789", "photo_flickr_id": "2544693", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49006", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all gathered together to celebrate .", "storylet_id": "245031"}], [{"original_text": "Uncle fez was memorialized with the planting of his tree.", "album_id": "63789", "photo_flickr_id": "2544709", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49006", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "uncle fez was memorialized with the planting of his tree .", "storylet_id": "245032"}], [{"original_text": "Ben was sad.", "album_id": "63789", "photo_flickr_id": "2544717", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49006", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was sad .", "storylet_id": "245033"}], [{"original_text": "We ate peanut butter brownies in his memory.", "album_id": "63789", "photo_flickr_id": "2544725", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49006", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ate peanut butter brownies in his memory .", "storylet_id": "245034"}], [{"original_text": "it was christmas eve and all was quiet ", "album_id": "63789", "photo_flickr_id": "2544681", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "49007", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was christmas eve and all was quiet", "storylet_id": "245035"}], [{"original_text": "not a soul around", "album_id": "63789", "photo_flickr_id": "2544693", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "49007", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "not a soul around", "storylet_id": "245036"}], [{"original_text": "only jacob outside he found a new friend", "album_id": "63789", "photo_flickr_id": "2544709", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "49007", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "only jacob outside he found a new friend", "storylet_id": "245037"}], [{"original_text": "and the two got to know each other", "album_id": "63789", "photo_flickr_id": "2544717", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "49007", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the two got to know each other", "storylet_id": "245038"}], [{"original_text": "and this was left for santa that night ", "album_id": "63789", "photo_flickr_id": "2544725", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "49007", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and this was left for santa that night", "storylet_id": "245039"}], [{"original_text": "Christmas is the best time of the year,", "album_id": "63789", "photo_flickr_id": "2544681", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49008", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "christmas is the best time of the year ,", "storylet_id": "245040"}], [{"original_text": "even if it doesn't snow where this family is.", "album_id": "63789", "photo_flickr_id": "2544717", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49008", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even if it does n't snow where this family is .", "storylet_id": "245041"}], [{"original_text": "They still love their Christmas treats", "album_id": "63789", "photo_flickr_id": "2544725", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49008", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they still love their christmas treats", "storylet_id": "245042"}], [{"original_text": "and hanging out with their family.", "album_id": "63789", "photo_flickr_id": "2544790", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49008", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and hanging out with their family .", "storylet_id": "245043"}], [{"original_text": "But best of all, the Christmas treats.", "album_id": "63789", "photo_flickr_id": "2544803", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49008", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but best of all , the christmas treats .", "storylet_id": "245044"}], [{"original_text": "I love sitting by the fireplace, looking at the Christmas tree.", "album_id": "63789", "photo_flickr_id": "2544681", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "49009", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love sitting by the fireplace , looking at the christmas tree .", "storylet_id": "245045"}], [{"original_text": "Frisky must not enjoy all the holiday company because he was outside in the tree.", "album_id": "63789", "photo_flickr_id": "2544717", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "49009", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "frisky must not enjoy all the holiday company because he was outside in the tree .", "storylet_id": "245046"}], [{"original_text": "Grandma always makes her special brownie cakes for Christmas.", "album_id": "63789", "photo_flickr_id": "2544725", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "49009", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandma always makes her special brownie cakes for christmas .", "storylet_id": "245047"}], [{"original_text": "My niece and my brother in law spent a lot of quality time together. ", "album_id": "63789", "photo_flickr_id": "2544790", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "49009", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my niece and my brother in law spent a lot of quality time together .", "storylet_id": "245048"}], [{"original_text": "The butter pecan pie never seems to last in this house.", "album_id": "63789", "photo_flickr_id": "2544803", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "49009", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the butter pecan pie never seems to last in this house .", "storylet_id": "245049"}], [{"original_text": "The amount of pictures to view from the cruise was overwhelming.", "album_id": "72157600940028059", "photo_flickr_id": "865188579", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "49010", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the amount of pictures to view from the cruise was overwhelming .", "storylet_id": "245050"}], [{"original_text": "All of the signs there looked like this.", "album_id": "72157600940028059", "photo_flickr_id": "866045220", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "49010", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the signs there looked like this .", "storylet_id": "245051"}], [{"original_text": "Here is the view as we approached the city on our boat.", "album_id": "72157600940028059", "photo_flickr_id": "865188769", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "49010", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is the view as we approached the city on our boat .", "storylet_id": "245052"}], [{"original_text": "Here we are leaving the harbor to go snorkeling.", "album_id": "72157600940028059", "photo_flickr_id": "865188815", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "49010", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here we are leaving the harbor to go snorkeling .", "storylet_id": "245053"}], [{"original_text": "I received the package from the trip today, everything seems to be in order.", "album_id": "72157600940028059", "photo_flickr_id": "865188851", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "49010", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i received the package from the trip today , everything seems to be in order .", "storylet_id": "245054"}], [{"original_text": "Shopping in a foreign country is always exiting.", "album_id": "72157600940028059", "photo_flickr_id": "865188579", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49011", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "shopping in a foreign country is always exiting .", "storylet_id": "245055"}], [{"original_text": "Walking around the city to get a feel for where we are.", "album_id": "72157600940028059", "photo_flickr_id": "865188621", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49011", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "walking around the city to get a feel for where we are .", "storylet_id": "245056"}], [{"original_text": "The street signs are a little confusing.", "album_id": "72157600940028059", "photo_flickr_id": "866045220", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49011", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the street signs are a little confusing .", "storylet_id": "245057"}], [{"original_text": "Relaxing by the water and taking a rest.", "album_id": "72157600940028059", "photo_flickr_id": "866045248", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49011", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "relaxing by the water and taking a rest .", "storylet_id": "245058"}], [{"original_text": "At the marina watching the boats come and go.", "album_id": "72157600940028059", "photo_flickr_id": "865188769", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49011", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the marina watching the boats come and go .", "storylet_id": "245059"}], [{"original_text": "After we had spent our day in the market we decided to go for a short walk.", "album_id": "72157600940028059", "photo_flickr_id": "865188579", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49012", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after we had spent our day in the market we decided to go for a short walk .", "storylet_id": "245060"}], [{"original_text": "There were a lot of apartment buildings on top of the shops in the market area.", "album_id": "72157600940028059", "photo_flickr_id": "865188621", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49012", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of apartment buildings on top of the shops in the market area .", "storylet_id": "245061"}], [{"original_text": "We had trouble deciding where we want to go.", "album_id": "72157600940028059", "photo_flickr_id": "866045220", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49012", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had trouble deciding where we want to go .", "storylet_id": "245062"}], [{"original_text": "We eventually found the dock and spent some time there.", "album_id": "72157600940028059", "photo_flickr_id": "866045248", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49012", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we eventually found the dock and spent some time there .", "storylet_id": "245063"}], [{"original_text": "After hanging out for a few minutes we decided to head home.", "album_id": "72157600940028059", "photo_flickr_id": "865188769", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49012", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after hanging out for a few minutes we decided to head home .", "storylet_id": "245064"}], [{"original_text": "A foreign country is always fun to visit.", "album_id": "72157600940028059", "photo_flickr_id": "865188579", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49013", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a foreign country is always fun to visit .", "storylet_id": "245065"}], [{"original_text": "I couldn't read most of the text.", "album_id": "72157600940028059", "photo_flickr_id": "866045220", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49013", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i could n't read most of the text .", "storylet_id": "245066"}], [{"original_text": "The lake had a lot of fish jumping in it.", "album_id": "72157600940028059", "photo_flickr_id": "865188769", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49013", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lake had a lot of fish jumping in it .", "storylet_id": "245067"}], [{"original_text": "The boats sat there quietly.", "album_id": "72157600940028059", "photo_flickr_id": "865188815", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49013", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boats sat there quietly .", "storylet_id": "245068"}], [{"original_text": "I received a nice package when I got back home. ", "album_id": "72157600940028059", "photo_flickr_id": "865188851", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49013", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i received a nice package when i got back home .", "storylet_id": "245069"}], [{"original_text": "On out trip we stopped to see the local stores.", "album_id": "72157600940028059", "photo_flickr_id": "865188579", "setting": "last-3-pick-old-and-tell", "worker_id": "FQC7Q2MAJW4AZ99", "story_id": "49014", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on out trip we stopped to see the local stores .", "storylet_id": "245070"}], [{"original_text": "Navigating was rough because we didn't understand the language.", "album_id": "72157600940028059", "photo_flickr_id": "866045220", "setting": "last-3-pick-old-and-tell", "worker_id": "FQC7Q2MAJW4AZ99", "story_id": "49014", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "navigating was rough because we did n't understand the language .", "storylet_id": "245071"}], [{"original_text": "We headed to the river to admire the view.", "album_id": "72157600940028059", "photo_flickr_id": "865188769", "setting": "last-3-pick-old-and-tell", "worker_id": "FQC7Q2MAJW4AZ99", "story_id": "49014", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we headed to the river to admire the view .", "storylet_id": "245072"}], [{"original_text": "There were plenty of boats available for rent.", "album_id": "72157600940028059", "photo_flickr_id": "865188815", "setting": "last-3-pick-old-and-tell", "worker_id": "FQC7Q2MAJW4AZ99", "story_id": "49014", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were plenty of boats available for rent .", "storylet_id": "245073"}], [{"original_text": "We bought gifts for those back at home.", "album_id": "72157600940028059", "photo_flickr_id": "865188851", "setting": "last-3-pick-old-and-tell", "worker_id": "FQC7Q2MAJW4AZ99", "story_id": "49014", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we bought gifts for those back at home .", "storylet_id": "245074"}], [{"original_text": "Sarah always throws the best parties. ", "album_id": "525776", "photo_flickr_id": "22769512", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "49015", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] always throws the best parties .", "storylet_id": "245075"}], [{"original_text": "This is the glass she always uses at her parties. ", "album_id": "525776", "photo_flickr_id": "22769274", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "49015", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the glass she always uses at her parties .", "storylet_id": "245076"}], [{"original_text": "This year's theme was a toga party. ", "album_id": "525776", "photo_flickr_id": "22769501", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "49015", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this year 's theme was a toga party .", "storylet_id": "245077"}], [{"original_text": "She picked a colorful toga.", "album_id": "525776", "photo_flickr_id": "22769478", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "49015", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she picked a colorful toga .", "storylet_id": "245078"}], [{"original_text": "As usual, the crazy party antics ensued. ", "album_id": "525776", "photo_flickr_id": "22769428", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "49015", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as usual , the crazy party antics ensued .", "storylet_id": "245079"}], [{"original_text": "We are acting like Romans.", "album_id": "525776", "photo_flickr_id": "22769501", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "49016", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are acting like romans .", "storylet_id": "245080"}], [{"original_text": "The wine from the vine is going down fine.", "album_id": "525776", "photo_flickr_id": "22769377", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "49016", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wine from the vine is going down fine .", "storylet_id": "245081"}], [{"original_text": "This bite is a all about the grapes!", "album_id": "525776", "photo_flickr_id": "22769351", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "49016", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this bite is a all about the grapes !", "storylet_id": "245082"}], [{"original_text": "Check out my headband. Whoa!", "album_id": "525776", "photo_flickr_id": "22769326", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "49016", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "check out my headband . whoa !", "storylet_id": "245083"}], [{"original_text": "They look like royalty and seem to enjoy it.", "album_id": "525776", "photo_flickr_id": "22769205", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "49016", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they look like royalty and seem to enjoy it .", "storylet_id": "245084"}], [{"original_text": "They did a great job with the costumes. ", "album_id": "525776", "photo_flickr_id": "22769501", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "49017", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they did a great job with the costumes .", "storylet_id": "245085"}], [{"original_text": "Everyone was dressed in the Roman theme.", "album_id": "525776", "photo_flickr_id": "22769377", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "49017", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was dressed in the [male] theme .", "storylet_id": "245086"}], [{"original_text": "The fun was with all the poses. ", "album_id": "525776", "photo_flickr_id": "22769351", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "49017", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fun was with all the poses .", "storylet_id": "245087"}], [{"original_text": "We drank and sat around talking. ", "album_id": "525776", "photo_flickr_id": "22769326", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "49017", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we drank and sat around talking .", "storylet_id": "245088"}], [{"original_text": "Soon we will choose the best costume award winner.", "album_id": "525776", "photo_flickr_id": "22769205", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "49017", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "soon we will choose the best costume award winner .", "storylet_id": "245089"}], [{"original_text": "My friends and I threw an awesome toga party last night.", "album_id": "525776", "photo_flickr_id": "22769512", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "49018", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i threw an awesome toga party last night .", "storylet_id": "245090"}], [{"original_text": "Loud music, cool glasses to a lot more in between. It was a good time had by all.", "album_id": "525776", "photo_flickr_id": "22769274", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "49018", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "loud music , cool glasses to a lot more in between . it was a good time had by all .", "storylet_id": "245091"}], [{"original_text": "My closest friends were able to make it out.", "album_id": "525776", "photo_flickr_id": "22769501", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "49018", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my closest friends were able to make it out .", "storylet_id": "245092"}], [{"original_text": "I was trying to be serious in some of the photos, but I busted out laughing afterwards.", "album_id": "525776", "photo_flickr_id": "22769478", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "49018", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was trying to be serious in some of the photos , but i busted out laughing afterwards .", "storylet_id": "245093"}], [{"original_text": "My friends sure are a crazy bunch, but I wouldn't have it any other way.", "album_id": "525776", "photo_flickr_id": "22769428", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "49018", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my friends sure are a crazy bunch , but i would n't have it any other way .", "storylet_id": "245094"}], [{"original_text": "Gary and Travis were best friends.", "album_id": "525776", "photo_flickr_id": "22769501", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49019", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [male] were best friends .", "storylet_id": "245095"}], [{"original_text": "They threw a toga party for their coworkers.", "album_id": "525776", "photo_flickr_id": "22769377", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49019", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they threw a toga party for their coworkers .", "storylet_id": "245096"}], [{"original_text": "Sam proposed to Melanie that night and she said yes.", "album_id": "525776", "photo_flickr_id": "22769351", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49019", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] proposed to [female] that night and she said yes .", "storylet_id": "245097"}], [{"original_text": "A couple of other girls got lucky that night.", "album_id": "525776", "photo_flickr_id": "22769326", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49019", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a couple of other girls got lucky that night .", "storylet_id": "245098"}], [{"original_text": "Samson took a photo with a girl from the party.", "album_id": "525776", "photo_flickr_id": "22769205", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49019", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "samson took a photo with a girl from the party .", "storylet_id": "245099"}], [{"original_text": "I had a great time on vacation last year. ", "album_id": "667714", "photo_flickr_id": "29713748", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49020", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time on vacation last year .", "storylet_id": "245100"}], [{"original_text": "I went to see a festival in the street.", "album_id": "667714", "photo_flickr_id": "29713750", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49020", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went to see a festival in the street .", "storylet_id": "245101"}], [{"original_text": "There were many performers.", "album_id": "667714", "photo_flickr_id": "29855438", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49020", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many performers .", "storylet_id": "245102"}], [{"original_text": "They were all carrying some sort of structure.", "album_id": "667714", "photo_flickr_id": "29855440", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49020", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were all carrying some sort of structure .", "storylet_id": "245103"}], [{"original_text": "It was very impressive.", "album_id": "667714", "photo_flickr_id": "29855441", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49020", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was very impressive .", "storylet_id": "245104"}], [{"original_text": "Steve, Tim and Matt decided to a bros only trip to Asia. ", "album_id": "667714", "photo_flickr_id": "29713746", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "49021", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] , [male] and [male] decided to a bros only trip to location .", "storylet_id": "245105"}], [{"original_text": "They chose a time of year that had many festivities. ", "album_id": "667714", "photo_flickr_id": "29713750", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "49021", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they chose a time of year that had many festivities .", "storylet_id": "245106"}], [{"original_text": "During the festivities they got really drunk. ", "album_id": "667714", "photo_flickr_id": "29713751", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "49021", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "during the festivities they got really drunk .", "storylet_id": "245107"}], [{"original_text": "They tried to get into the parade and carry a special float. ", "album_id": "667714", "photo_flickr_id": "29855437", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "49021", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they tried to get into the parade and carry a special float .", "storylet_id": "245108"}], [{"original_text": "At the end of the parade they decided to buy drinks for some of the locals. ", "album_id": "667714", "photo_flickr_id": "29855442", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "49021", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the parade they decided to buy drinks for some of the locals .", "storylet_id": "245109"}], [{"original_text": "We were asked to join in the local parade in Japan. They gave us some robes we could wear and keep.", "album_id": "667714", "photo_flickr_id": "29713746", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49022", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were asked to join in the local parade in location . they gave us some robes we could wear and keep .", "storylet_id": "245110"}], [{"original_text": "As we prepared, the streets filled up with people.", "album_id": "667714", "photo_flickr_id": "29713750", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49022", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as we prepared , the streets filled up with people .", "storylet_id": "245111"}], [{"original_text": "We chatted and got to know each other as we waited for it to start.", "album_id": "667714", "photo_flickr_id": "29713751", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49022", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we chatted and got to know each other as we waited for it to start .", "storylet_id": "245112"}], [{"original_text": "Our role was to carry a palanquin through the streets.", "album_id": "667714", "photo_flickr_id": "29855437", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49022", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our role was to carry a palanquin through the streets .", "storylet_id": "245113"}], [{"original_text": "Afterwards, we celebrated with some drinks and watched the rest of the parade.", "album_id": "667714", "photo_flickr_id": "29855442", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49022", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , we celebrated with some drinks and watched the rest of the parade .", "storylet_id": "245114"}], [{"original_text": "People crowded around to watch the parade.", "album_id": "667714", "photo_flickr_id": "29713748", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49023", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people crowded around to watch the parade .", "storylet_id": "245115"}], [{"original_text": "One float in particular, caught everyone's attention.", "album_id": "667714", "photo_flickr_id": "29713750", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49023", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one float in particular , caught everyone 's attention .", "storylet_id": "245116"}], [{"original_text": "They ran over to it to see what was going on and to take pictures.", "album_id": "667714", "photo_flickr_id": "29855438", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49023", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they ran over to it to see what was going on and to take pictures .", "storylet_id": "245117"}], [{"original_text": "It got so bad that people had to start pushing others out of the way", "album_id": "667714", "photo_flickr_id": "29855440", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49023", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it got so bad that people had to start pushing others out of the way", "storylet_id": "245118"}], [{"original_text": "just to get a look at it. ", "album_id": "667714", "photo_flickr_id": "29855441", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49023", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "just to get a look at it .", "storylet_id": "245119"}], [{"original_text": "The friends arrived to the Japanese parade.", "album_id": "667714", "photo_flickr_id": "29713746", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49024", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends arrived to the japanese parade .", "storylet_id": "245120"}], [{"original_text": "They saw some interesting floats pass by.", "album_id": "667714", "photo_flickr_id": "29713750", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49024", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they saw some interesting floats pass by .", "storylet_id": "245121"}], [{"original_text": "They watched with excitement.", "album_id": "667714", "photo_flickr_id": "29713751", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49024", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they watched with excitement .", "storylet_id": "245122"}], [{"original_text": "Then they got involved with the festivities.", "album_id": "667714", "photo_flickr_id": "29855437", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49024", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they got involved with the festivities .", "storylet_id": "245123"}], [{"original_text": "After that they sat down to have a few drinks.", "album_id": "667714", "photo_flickr_id": "29855442", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49024", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that they sat down to have a few drinks .", "storylet_id": "245124"}], [{"original_text": "Today we are celebrating are love for each other, so we went out to eat.", "album_id": "666831", "photo_flickr_id": "29655036", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49025", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we are celebrating are love for each other , so we went out to eat .", "storylet_id": "245125"}], [{"original_text": "The couple was goofing off but was so happy.", "album_id": "666831", "photo_flickr_id": "29654270", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49025", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the couple was goofing off but was so happy .", "storylet_id": "245126"}], [{"original_text": "This couple is just too in love but are really cute together.", "album_id": "666831", "photo_flickr_id": "29654431", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49025", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this couple is just too in love but are really cute together .", "storylet_id": "245127"}], [{"original_text": "We moved to the other side to hang out and drink a little bit.", "album_id": "666831", "photo_flickr_id": "29656027", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49025", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we moved to the other side to hang out and drink a little bit .", "storylet_id": "245128"}], [{"original_text": "Finally back home with my mom. We had fun.", "album_id": "666831", "photo_flickr_id": "29656670", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49025", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally back home with my mom . we had fun .", "storylet_id": "245129"}], [{"original_text": "Julie and Sandy were celebrating at the pub. ", "album_id": "666831", "photo_flickr_id": "29654165", "setting": "first-2-pick-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "49026", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [female] were celebrating at the pub .", "storylet_id": "245130"}], [{"original_text": "They invited all of their friends. ", "album_id": "666831", "photo_flickr_id": "29655036", "setting": "first-2-pick-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "49026", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they invited all of their friends .", "storylet_id": "245131"}], [{"original_text": "We waited for our food to come. ", "album_id": "666831", "photo_flickr_id": "29654094", "setting": "first-2-pick-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "49026", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we waited for our food to come .", "storylet_id": "245132"}], [{"original_text": "After a few drinks things got lively. ", "album_id": "666831", "photo_flickr_id": "29654961", "setting": "first-2-pick-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "49026", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a few drinks things got lively .", "storylet_id": "245133"}], [{"original_text": "By the end of the night many of us were a little tipsy. ", "album_id": "666831", "photo_flickr_id": "29656127", "setting": "first-2-pick-and-tell", "worker_id": "PJIRPPXPI5TE81M", "story_id": "49026", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of the night many of us were a little tipsy .", "storylet_id": "245134"}], [{"original_text": "it was going to be a bad night.", "album_id": "666831", "photo_flickr_id": "29655036", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "49027", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was going to be a bad night .", "storylet_id": "245135"}], [{"original_text": "some no brain thought it was going to be a good idea to play truth and dare in a restaurant.", "album_id": "666831", "photo_flickr_id": "29654270", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "49027", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some no brain thought it was going to be a good idea to play truth and dare in a restaurant .", "storylet_id": "245136"}], [{"original_text": "dont know why they thought this was going to be a good idea.", "album_id": "666831", "photo_flickr_id": "29654431", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "49027", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dont know why they thought this was going to be a good idea .", "storylet_id": "245137"}], [{"original_text": "after a bit most of the group split up and got their own table.", "album_id": "666831", "photo_flickr_id": "29656027", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "49027", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a bit most of the group split up and got their own table .", "storylet_id": "245138"}], [{"original_text": "me and charlie just went home.", "album_id": "666831", "photo_flickr_id": "29656670", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "49027", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "me and charlie just went home .", "storylet_id": "245139"}], [{"original_text": "My friends and I decided to go out and celebrate PRIDE day with each other.", "album_id": "666831", "photo_flickr_id": "29655036", "setting": "last-3-pick-old-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "49028", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i decided to go out and celebrate pride day with each other .", "storylet_id": "245140"}], [{"original_text": "My brother and his partner started off the night with some public displays of affection.", "album_id": "666831", "photo_flickr_id": "29654270", "setting": "last-3-pick-old-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "49028", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my brother and his partner started off the night with some public displays of affection .", "storylet_id": "245141"}], [{"original_text": "My brother gave me the idea to lay a kiss on my wife.", "album_id": "666831", "photo_flickr_id": "29654431", "setting": "last-3-pick-old-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "49028", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brother gave me the idea to lay a kiss on my wife .", "storylet_id": "245142"}], [{"original_text": "We all hung out at the bar a little while longer, talking about the day so far.", "album_id": "666831", "photo_flickr_id": "29656027", "setting": "last-3-pick-old-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "49028", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all hung out at the bar a little while longer , talking about the day so far .", "storylet_id": "245143"}], [{"original_text": "After the bar we came home. My brother and I ended the knight with some family bonding.", "album_id": "666831", "photo_flickr_id": "29656670", "setting": "last-3-pick-old-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "49028", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the bar we came home . my brother and i ended the knight with some family bonding .", "storylet_id": "245144"}], [{"original_text": "Today Kim and Stephanie celebrated their engagement.", "album_id": "666831", "photo_flickr_id": "29654165", "setting": "last-3-pick-old-and-tell", "worker_id": "N82YU8TZ4RL1U0K", "story_id": "49029", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today [female] and [female] celebrated their engagement .", "storylet_id": "245145"}], [{"original_text": "All their friends and family members attended.", "album_id": "666831", "photo_flickr_id": "29655036", "setting": "last-3-pick-old-and-tell", "worker_id": "N82YU8TZ4RL1U0K", "story_id": "49029", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all their friends and family members attended .", "storylet_id": "245146"}], [{"original_text": "They went to a nice restaurant where Kim and Stephanie first met.", "album_id": "666831", "photo_flickr_id": "29654094", "setting": "last-3-pick-old-and-tell", "worker_id": "N82YU8TZ4RL1U0K", "story_id": "49029", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they went to a nice restaurant where [female] and [female] first met .", "storylet_id": "245147"}], [{"original_text": "It was a little awkward at first but after a few drinks the table became lively.", "album_id": "666831", "photo_flickr_id": "29654961", "setting": "last-3-pick-old-and-tell", "worker_id": "N82YU8TZ4RL1U0K", "story_id": "49029", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a little awkward at first but after a few drinks the table became lively .", "storylet_id": "245148"}], [{"original_text": "The entire restaurant could hear how much of a good time they were having.", "album_id": "666831", "photo_flickr_id": "29656127", "setting": "last-3-pick-old-and-tell", "worker_id": "N82YU8TZ4RL1U0K", "story_id": "49029", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the entire restaurant could hear how much of a good time they were having .", "storylet_id": "245149"}], [{"original_text": "Bonnie's closest friends Tim and Tammy threw her a surprise birthday party. ", "album_id": "400403", "photo_flickr_id": "16763474", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "49030", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] 's closest friends [male] and [female] threw her a surprise birthday party .", "storylet_id": "245150"}], [{"original_text": "Bonnie loved opening her gifts. ", "album_id": "400403", "photo_flickr_id": "16763542", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "49030", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] loved opening her gifts .", "storylet_id": "245151"}], [{"original_text": "Bonnie's favorite gift was from John. ", "album_id": "400403", "photo_flickr_id": "16763387", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "49030", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] 's favorite gift was from [male] .", "storylet_id": "245152"}], [{"original_text": "Even Bonnie's sisters came to the party. ", "album_id": "400403", "photo_flickr_id": "16763418", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "49030", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even [female] 's sisters came to the party .", "storylet_id": "245153"}], [{"original_text": "Bonnie was able to thank John later in the evening for her fabulous gift. ", "album_id": "400403", "photo_flickr_id": "16763441", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "49030", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] was able to thank [male] later in the evening for her fabulous gift .", "storylet_id": "245154"}], [{"original_text": "All of her gifts were on the table. ", "album_id": "400403", "photo_flickr_id": "16763474", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49031", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all of her gifts were on the table .", "storylet_id": "245155"}], [{"original_text": "They were anxious for her to open them but she was still texting. ", "album_id": "400403", "photo_flickr_id": "16763542", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49031", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were anxious for her to open them but she was still texting .", "storylet_id": "245156"}], [{"original_text": "After everyone had arrived she opened each gift and thanked everyone graciously. ", "album_id": "400403", "photo_flickr_id": "16763387", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49031", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after everyone had arrived she opened each gift and thanked everyone graciously .", "storylet_id": "245157"}], [{"original_text": "Her mom and dad were very proud of her. ", "album_id": "400403", "photo_flickr_id": "16763466", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49031", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her mom and dad were very proud of her .", "storylet_id": "245158"}], [{"original_text": "Her brother joked that he didn't think she'd ever graduate. ", "album_id": "400403", "photo_flickr_id": "16763430", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49031", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her brother joked that he did n't think she 'd ever graduate .", "storylet_id": "245159"}], [{"original_text": "Carrie's friends brought her gifts and flowers for her birthday.", "album_id": "400403", "photo_flickr_id": "16763474", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49032", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] 's friends brought her gifts and flowers for her birthday .", "storylet_id": "245160"}], [{"original_text": "She took a picture of them to put on instagram,", "album_id": "400403", "photo_flickr_id": "16763542", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49032", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she took a picture of them to put on instagram ,", "storylet_id": "245161"}], [{"original_text": "and then she started opening her gifts.", "album_id": "400403", "photo_flickr_id": "16763387", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49032", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and then she started opening her gifts .", "storylet_id": "245162"}], [{"original_text": "Her guests watched excitedly as she tore through the wrapping paper,", "album_id": "400403", "photo_flickr_id": "16763466", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49032", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her guests watched excitedly as she tore through the wrapping paper ,", "storylet_id": "245163"}], [{"original_text": "and later they all made sure to tell her happy birthday. ", "album_id": "400403", "photo_flickr_id": "16763430", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49032", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and later they all made sure to tell her happy birthday .", "storylet_id": "245164"}], [{"original_text": "At Anne's birthday part watching her open gifts.", "album_id": "400403", "photo_flickr_id": "16763474", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "49033", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at [female] 's birthday part watching her open gifts .", "storylet_id": "245165"}], [{"original_text": "She checks her phone before she opens the first one.", "album_id": "400403", "photo_flickr_id": "16763542", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "49033", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she checks her phone before she opens the first one .", "storylet_id": "245166"}], [{"original_text": "Her posing with her first one.", "album_id": "400403", "photo_flickr_id": "16763387", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "49033", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her posing with her first one .", "storylet_id": "245167"}], [{"original_text": "Here are Lany and Jeff outside.", "album_id": "400403", "photo_flickr_id": "16763418", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "49033", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here are lany and [male] outside .", "storylet_id": "245168"}], [{"original_text": "Anne talking with her husband inside.", "album_id": "400403", "photo_flickr_id": "16763441", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "49033", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] talking with her husband inside .", "storylet_id": "245169"}], [{"original_text": "We all went round to out friends house for a party.", "album_id": "400403", "photo_flickr_id": "16763474", "setting": "last-3-pick-old-and-tell", "worker_id": "9S8D0HCRWZXFGR2", "story_id": "49034", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all went round to out friends house for a party .", "storylet_id": "245170"}], [{"original_text": "She was opening presents and really liked them!", "album_id": "400403", "photo_flickr_id": "16763542", "setting": "last-3-pick-old-and-tell", "worker_id": "9S8D0HCRWZXFGR2", "story_id": "49034", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was opening presents and really liked them !", "storylet_id": "245171"}], [{"original_text": "She hadn't had chalk since she was a little kid!", "album_id": "400403", "photo_flickr_id": "16763387", "setting": "last-3-pick-old-and-tell", "worker_id": "9S8D0HCRWZXFGR2", "story_id": "49034", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she had n't had chalk since she was a little kid !", "storylet_id": "245172"}], [{"original_text": "Her other friends were having a quiet drink while she opened her presents.", "album_id": "400403", "photo_flickr_id": "16763466", "setting": "last-3-pick-old-and-tell", "worker_id": "9S8D0HCRWZXFGR2", "story_id": "49034", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her other friends were having a quiet drink while she opened her presents .", "storylet_id": "245173"}], [{"original_text": "But she wasn't too happy about something her kid brother said to her and it spoiled her mood.", "album_id": "400403", "photo_flickr_id": "16763430", "setting": "last-3-pick-old-and-tell", "worker_id": "9S8D0HCRWZXFGR2", "story_id": "49034", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but she was n't too happy about something her kid brother said to her and it spoiled her mood .", "storylet_id": "245174"}], [{"original_text": "At the charity event, there were many paintings up done by local atrists.", "album_id": "10332", "photo_flickr_id": "418906", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "49035", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the charity event , there were many paintings up done by local atrists .", "storylet_id": "245175"}], [{"original_text": "One area had fun events, such as a hula-hoop competition.", "album_id": "10332", "photo_flickr_id": "418909", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "49035", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one area had fun events , such as a hula-hoop competition .", "storylet_id": "245176"}], [{"original_text": "The speakers were very interesting and their testimony was very deep and heartwarming.", "album_id": "10332", "photo_flickr_id": "418912", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "49035", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the speakers were very interesting and their testimony was very deep and heartwarming .", "storylet_id": "245177"}], [{"original_text": "I was shocked at the huge size of the crowd.", "album_id": "10332", "photo_flickr_id": "418919", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "49035", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was shocked at the huge size of the crowd .", "storylet_id": "245178"}], [{"original_text": "The finale act was worth waiting for. Everyone was singing and dancing the entire afternoon.", "album_id": "10332", "photo_flickr_id": "418926", "setting": "first-2-pick-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "49035", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finale act was worth waiting for . everyone was singing and dancing the entire afternoon .", "storylet_id": "245179"}], [{"original_text": "A crowd gathered to wait for the concert.", "album_id": "10332", "photo_flickr_id": "418920", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "49036", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a crowd gathered to wait for the concert .", "storylet_id": "245180"}], [{"original_text": "Some fans decided to have fun while they waited.", "album_id": "10332", "photo_flickr_id": "418909", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "49036", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some fans decided to have fun while they waited .", "storylet_id": "245181"}], [{"original_text": "Finally, a speaker introduced the main event.", "album_id": "10332", "photo_flickr_id": "418914", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "49036", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally , a speaker introduced the main event .", "storylet_id": "245182"}], [{"original_text": "The crowd looked on in anticipation.", "album_id": "10332", "photo_flickr_id": "418921", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "49036", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowd looked on in anticipation .", "storylet_id": "245183"}], [{"original_text": "The people went wild when they show finally started.", "album_id": "10332", "photo_flickr_id": "418924", "setting": "first-2-pick-and-tell", "worker_id": "BMXQXBDEKNA1K6J", "story_id": "49036", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the people went wild when they show finally started .", "storylet_id": "245184"}], [{"original_text": "Do you see this huge crowd? Look at all these people.", "album_id": "10332", "photo_flickr_id": "418920", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "49037", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "do you see this huge crowd ? look at all these people .", "storylet_id": "245185"}], [{"original_text": "Everyone having fun and laughing.", "album_id": "10332", "photo_flickr_id": "418909", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "49037", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone having fun and laughing .", "storylet_id": "245186"}], [{"original_text": "People singing and dancing. ", "album_id": "10332", "photo_flickr_id": "418914", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "49037", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people singing and dancing .", "storylet_id": "245187"}], [{"original_text": "Everyone together, no fights, no hate, just everyone together for one focus.", "album_id": "10332", "photo_flickr_id": "418921", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "49037", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone together , no fights , no hate , just everyone together for one focus .", "storylet_id": "245188"}], [{"original_text": "This is what concerts are all about. ", "album_id": "10332", "photo_flickr_id": "418924", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "49037", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is what concerts are all about .", "storylet_id": "245189"}], [{"original_text": "There was a concert for peace in the park today.", "album_id": "10332", "photo_flickr_id": "418906", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49038", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a concert for peace in the park today .", "storylet_id": "245190"}], [{"original_text": "There were many activities and events.", "album_id": "10332", "photo_flickr_id": "418909", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49038", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many activities and events .", "storylet_id": "245191"}], [{"original_text": "Many different people got to talk and express their thoughts.", "album_id": "10332", "photo_flickr_id": "418912", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49038", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many different people got to talk and express their thoughts .", "storylet_id": "245192"}], [{"original_text": "So many people were gathered at the park to promote the message of peace.", "album_id": "10332", "photo_flickr_id": "418919", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49038", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so many people were gathered at the park to promote the message of peace .", "storylet_id": "245193"}], [{"original_text": "We all ended on a great note and had a band end the concert with many songs.", "album_id": "10332", "photo_flickr_id": "418926", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49038", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all ended on a great note and had a band end the concert with many songs .", "storylet_id": "245194"}], [{"original_text": "He looked on at the sign emblazoned with \"This is War\" and contemplated how true the statement was. ", "album_id": "10332", "photo_flickr_id": "418906", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49039", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he looked on at the sign emblazoned with `` this is war '' and contemplated how true the statement was .", "storylet_id": "245195"}], [{"original_text": "One of the festival goers picked up a rainbow hoola hoop and attempted to beat the record. ", "album_id": "10332", "photo_flickr_id": "418909", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49039", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of the festival goers picked up a rainbow hoola hoop and attempted to beat the record .", "storylet_id": "245196"}], [{"original_text": "The woman stepped up the microphone and began to rally the crowd. ", "album_id": "10332", "photo_flickr_id": "418912", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49039", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the woman stepped up the microphone and began to rally the crowd .", "storylet_id": "245197"}], [{"original_text": "The festival goers looked on, and their forms stretched almost as far as the road itself. ", "album_id": "10332", "photo_flickr_id": "418919", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49039", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the festival goers looked on , and their forms stretched almost as far as the road itself .", "storylet_id": "245198"}], [{"original_text": "One of the musicians held up a fist and pumped up the crowd before blazing into a guitar solo. ", "album_id": "10332", "photo_flickr_id": "418926", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49039", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of the musicians held up a fist and pumped up the crowd before blazing into a guitar solo .", "storylet_id": "245199"}], [{"original_text": "My two friends, Rachael and Rebecca, laughing at my story. ", "album_id": "19074", "photo_flickr_id": "749538", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "49040", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my two friends , [female] and [female] , laughing at my story .", "storylet_id": "245200"}], [{"original_text": "Rachael observing the couples dancing in slow motion.", "album_id": "19074", "photo_flickr_id": "749540", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "49040", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] observing the couples dancing in slow motion .", "storylet_id": "245201"}], [{"original_text": "My brother, Rick, trying to tell me to stay away from where he was going.", "album_id": "19074", "photo_flickr_id": "749541", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "49040", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brother , [male] , trying to tell me to stay away from where he was going .", "storylet_id": "245202"}], [{"original_text": "Rick's classmate, John, trying to do a monster impression.", "album_id": "19074", "photo_flickr_id": "764371", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "49040", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] 's classmate , [male] , trying to do a monster impression .", "storylet_id": "245203"}], [{"original_text": "The DJ was playing music after music while the crowd cheered. ", "album_id": "19074", "photo_flickr_id": "764378", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "49040", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dj was playing music after music while the crowd cheered .", "storylet_id": "245204"}], [{"original_text": "They decided to go out to see their favorite deejay.", "album_id": "19074", "photo_flickr_id": "764375", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49041", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they decided to go out to see their favorite deejay .", "storylet_id": "245205"}], [{"original_text": "Some people even dressed formally for the occasion.", "album_id": "19074", "photo_flickr_id": "764437", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49041", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some people even dressed formally for the occasion .", "storylet_id": "245206"}], [{"original_text": "There were even people in masks and heavy make up.", "album_id": "19074", "photo_flickr_id": "764622", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49041", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were even people in masks and heavy make up .", "storylet_id": "245207"}], [{"original_text": "The place was decorated with lights.", "album_id": "19074", "photo_flickr_id": "749408", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49041", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the place was decorated with lights .", "storylet_id": "245208"}], [{"original_text": "They had a great night out.", "album_id": "19074", "photo_flickr_id": "764378", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49041", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had a great night out .", "storylet_id": "245209"}], [{"original_text": "The girls were excited to go to the club tonight.", "album_id": "19074", "photo_flickr_id": "749538", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49042", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girls were excited to go to the club tonight .", "storylet_id": "245210"}], [{"original_text": "They had a great time dancing", "album_id": "19074", "photo_flickr_id": "749540", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49042", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a great time dancing", "storylet_id": "245211"}], [{"original_text": "with most of the guys.", "album_id": "19074", "photo_flickr_id": "749541", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49042", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "with most of the guys .", "storylet_id": "245212"}], [{"original_text": "Some of the weird guys, not so much,", "album_id": "19074", "photo_flickr_id": "764371", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49042", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the weird guys , not so much ,", "storylet_id": "245213"}], [{"original_text": "but overall they had an amazing night and the DJ was awesome.", "album_id": "19074", "photo_flickr_id": "764378", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49042", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but overall they had an amazing night and the dj was awesome .", "storylet_id": "245214"}], [{"original_text": "My friend and I were excited to arrive at the venue for a fun night of experimental music. ", "album_id": "19074", "photo_flickr_id": "764375", "setting": "last-3-pick-old-and-tell", "worker_id": "FDZJJYBR4MI8ZHR", "story_id": "49043", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend and i were excited to arrive at the venue for a fun night of experimental music .", "storylet_id": "245215"}], [{"original_text": "A man dressed in a tuxedo met us as we walked in and led us to our seats. ", "album_id": "19074", "photo_flickr_id": "764437", "setting": "last-3-pick-old-and-tell", "worker_id": "FDZJJYBR4MI8ZHR", "story_id": "49043", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a man dressed in a tuxedo met us as we walked in and led us to our seats .", "storylet_id": "245216"}], [{"original_text": "On the way, we passed a man with a mask who reminded us to take water with us. ", "album_id": "19074", "photo_flickr_id": "764622", "setting": "last-3-pick-old-and-tell", "worker_id": "FDZJJYBR4MI8ZHR", "story_id": "49043", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on the way , we passed a man with a mask who reminded us to take water with us .", "storylet_id": "245217"}], [{"original_text": "The view of the sound system from our seats was pretty interesting. ", "album_id": "19074", "photo_flickr_id": "749408", "setting": "last-3-pick-old-and-tell", "worker_id": "FDZJJYBR4MI8ZHR", "story_id": "49043", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view of the sound system from our seats was pretty interesting .", "storylet_id": "245218"}], [{"original_text": "At one point we even got to go backstage for a close up view of the instruments and a view of the audience. ", "album_id": "19074", "photo_flickr_id": "764378", "setting": "last-3-pick-old-and-tell", "worker_id": "FDZJJYBR4MI8ZHR", "story_id": "49043", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at one point we even got to go backstage for a close up view of the instruments and a view of the audience .", "storylet_id": "245219"}], [{"original_text": "The girls are laughing at the party", "album_id": "19074", "photo_flickr_id": "749538", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49044", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girls are laughing at the party", "storylet_id": "245220"}], [{"original_text": "and also enjoying drinks.", "album_id": "19074", "photo_flickr_id": "749540", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49044", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and also enjoying drinks .", "storylet_id": "245221"}], [{"original_text": "The guy is singing", "album_id": "19074", "photo_flickr_id": "749541", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49044", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guy is singing", "storylet_id": "245222"}], [{"original_text": "and the DJ is being scary", "album_id": "19074", "photo_flickr_id": "764371", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49044", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the dj is being scary", "storylet_id": "245223"}], [{"original_text": "while everyone dances to the music.", "album_id": "19074", "photo_flickr_id": "764378", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49044", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while everyone dances to the music .", "storylet_id": "245224"}], [{"original_text": "These young people have decided to have an evening centered on drinking beer.", "album_id": "37189", "photo_flickr_id": "1458572", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "49045", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these young people have decided to have an evening centered on drinking beer .", "storylet_id": "245225"}], [{"original_text": "The Solo cups are filled.", "album_id": "37189", "photo_flickr_id": "1458602", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "49045", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the solo cups are filled .", "storylet_id": "245226"}], [{"original_text": "The party goers lift the cups to their lips.", "album_id": "37189", "photo_flickr_id": "1458604", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "49045", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the party goers lift the cups to their lips .", "storylet_id": "245227"}], [{"original_text": "Dave shows off his ability to guzzle from a hose.", "album_id": "37189", "photo_flickr_id": "1458598", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "49045", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] shows off his ability to guzzle from a hose .", "storylet_id": "245228"}], [{"original_text": "Sue tries to match Dave, but females have less alcohol metabolizing capability than males, so she will so pass out.", "album_id": "37189", "photo_flickr_id": "1458595", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "49045", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] tries to match [male] , but females have less alcohol metabolizing capability than males , so she will so pass out .", "storylet_id": "245229"}], [{"original_text": "The group of friends gathered for a drinking party.", "album_id": "37189", "photo_flickr_id": "1458583", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49046", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group of friends gathered for a drinking party .", "storylet_id": "245230"}], [{"original_text": "Carter wasn't happy to be there.", "album_id": "37189", "photo_flickr_id": "1458544", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49046", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was n't happy to be there .", "storylet_id": "245231"}], [{"original_text": "Fred wasn't impressed by Carter's display.", "album_id": "37189", "photo_flickr_id": "1458548", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49046", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was n't impressed by [male] 's display .", "storylet_id": "245232"}], [{"original_text": "Jermaine thought he'd won the chugging game.", "album_id": "37189", "photo_flickr_id": "1458598", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49046", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] thought he 'd won the chugging game .", "storylet_id": "245233"}], [{"original_text": "But Sarah won it with her mighty chug.", "album_id": "37189", "photo_flickr_id": "1458595", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49046", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but [female] won it with her mighty chug .", "storylet_id": "245234"}], [{"original_text": "I will put the beer in this jug to pour in the hose that we will use. ", "album_id": "37189", "photo_flickr_id": "1458583", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49047", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i will put the beer in this jug to pour in the hose that we will use .", "storylet_id": "245235"}], [{"original_text": "I am putting my middle finger up to everyone who thinks I a punk for punking out. ", "album_id": "37189", "photo_flickr_id": "1458544", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49047", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i am putting my middle finger up to everyone who thinks i a punk for punking out .", "storylet_id": "245236"}], [{"original_text": "That is really mature of you to do that. ", "album_id": "37189", "photo_flickr_id": "1458548", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49047", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that is really mature of you to do that .", "storylet_id": "245237"}], [{"original_text": "I will be first to drink down the beer. ", "album_id": "37189", "photo_flickr_id": "1458598", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49047", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i will be first to drink down the beer .", "storylet_id": "245238"}], [{"original_text": "I will beat his time for drinking down his beer. ", "album_id": "37189", "photo_flickr_id": "1458595", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49047", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i will beat his time for drinking down his beer .", "storylet_id": "245239"}], [{"original_text": "The group of friends decided to play a drinking game,", "album_id": "37189", "photo_flickr_id": "1458572", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49048", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group of friends decided to play a drinking game ,", "storylet_id": "245240"}], [{"original_text": "they got their cups,", "album_id": "37189", "photo_flickr_id": "1458602", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49048", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got their cups ,", "storylet_id": "245241"}], [{"original_text": "and they started filling them up.", "album_id": "37189", "photo_flickr_id": "1458604", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49048", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and they started filling them up .", "storylet_id": "245242"}], [{"original_text": "Joe got the funnel out", "album_id": "37189", "photo_flickr_id": "1458598", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49048", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] got the funnel out", "storylet_id": "245243"}], [{"original_text": "and then he got his wife to try it. It was a great night filled with alcohol and laughs. ", "album_id": "37189", "photo_flickr_id": "1458595", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49048", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then he got his wife to try it . it was a great night filled with alcohol and laughs .", "storylet_id": "245244"}], [{"original_text": "The party includes many drinks", "album_id": "37189", "photo_flickr_id": "1458583", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49049", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party includes many drinks", "storylet_id": "245245"}], [{"original_text": "and some not happy guys.", "album_id": "37189", "photo_flickr_id": "1458544", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49049", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and some not happy guys .", "storylet_id": "245246"}], [{"original_text": "The friend isn't happy either", "album_id": "37189", "photo_flickr_id": "1458548", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49049", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the friend is n't happy either", "storylet_id": "245247"}], [{"original_text": "to see the binge drinking although", "album_id": "37189", "photo_flickr_id": "1458598", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49049", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to see the binge drinking although", "storylet_id": "245248"}], [{"original_text": "the girl tries it too.", "album_id": "37189", "photo_flickr_id": "1458595", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49049", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girl tries it too .", "storylet_id": "245249"}], [{"original_text": "The college students gathered for a party.", "album_id": "37246", "photo_flickr_id": "1460872", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49050", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the college students gathered for a party .", "storylet_id": "245250"}], [{"original_text": "Gary played the guitar.", "album_id": "37246", "photo_flickr_id": "1460850", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49050", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] played the guitar .", "storylet_id": "245251"}], [{"original_text": "Then Steve took over on banjo.", "album_id": "37246", "photo_flickr_id": "1460860", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49050", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then [male] took over on banjo .", "storylet_id": "245252"}], [{"original_text": "Darth Vader made an appearance.", "album_id": "37246", "photo_flickr_id": "1460836", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49050", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "organization organization made an appearance .", "storylet_id": "245253"}], [{"original_text": "Chris played video games as the party wrapped up.", "album_id": "37246", "photo_flickr_id": "1460861", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49050", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] played video games as the party wrapped up .", "storylet_id": "245254"}], [{"original_text": "On the night of the party everyone was so excited to see each other.", "album_id": "37246", "photo_flickr_id": "1460872", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49051", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on the night of the party everyone was so excited to see each other .", "storylet_id": "245255"}], [{"original_text": "A few of the guys broke out the guitar and started to play some tunes.", "album_id": "37246", "photo_flickr_id": "1460850", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49051", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a few of the guys broke out the guitar and started to play some tunes .", "storylet_id": "245256"}], [{"original_text": "My friend James got a photo standing next to his favorite character Darth Vader.", "album_id": "37246", "photo_flickr_id": "1460836", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49051", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend [male] got a photo standing next to his favorite character darth vader .", "storylet_id": "245257"}], [{"original_text": "For most of the night we decided to play retro video games.", "album_id": "37246", "photo_flickr_id": "1460861", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49051", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "for most of the night we decided to play retro video games .", "storylet_id": "245258"}], [{"original_text": "The gun I used while playing the Nintendo game Dunk Hunt.", "album_id": "37246", "photo_flickr_id": "1460852", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49051", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the gun i used while playing the nintendo game dunk hunt .", "storylet_id": "245259"}], [{"original_text": "I thought I was going to a cool party but it was full of nerds.", "album_id": "37246", "photo_flickr_id": "1460872", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49052", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i thought i was going to a cool party but it was full of nerds .", "storylet_id": "245260"}], [{"original_text": "I thought I would make the best of it and busted out the guitar.", "album_id": "37246", "photo_flickr_id": "1460850", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49052", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i thought i would make the best of it and busted out the guitar .", "storylet_id": "245261"}], [{"original_text": "I was informed Darth Vader disapproved.", "album_id": "37246", "photo_flickr_id": "1460836", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49052", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was informed organization organization disapproved .", "storylet_id": "245262"}], [{"original_text": "They then went back to gaming.", "album_id": "37246", "photo_flickr_id": "1460861", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49052", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they then went back to gaming .", "storylet_id": "245263"}], [{"original_text": "I decided if they wanted to treat the gaming like real life it was time to step it up a notch.....game on. Pew!!", "album_id": "37246", "photo_flickr_id": "1460852", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49052", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided if they wanted to treat the gaming like real life it was time to step it up a notch ... ..game on . pew ! !", "storylet_id": "245264"}], [{"original_text": "We had our gamer party today.", "album_id": "37246", "photo_flickr_id": "1460872", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49053", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had our gamer party today .", "storylet_id": "245265"}], [{"original_text": "We had a good time and even played music.", "album_id": "37246", "photo_flickr_id": "1460850", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49053", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a good time and even played music .", "storylet_id": "245266"}], [{"original_text": "We even had a special guest!", "album_id": "37246", "photo_flickr_id": "1460836", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49053", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even had a special guest !", "storylet_id": "245267"}], [{"original_text": "We played many old school games together.", "album_id": "37246", "photo_flickr_id": "1460861", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49053", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we played many old school games together .", "storylet_id": "245268"}], [{"original_text": "This little guy that brought us such good memories gave us even more today!", "album_id": "37246", "photo_flickr_id": "1460852", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49053", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this little guy that brought us such good memories gave us even more today !", "storylet_id": "245269"}], [{"original_text": "The signs for the dorm jam session worked, as many people showed up.", "album_id": "37246", "photo_flickr_id": "1460872", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "49054", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the signs for the dorm jam session worked , as many people showed up .", "storylet_id": "245270"}], [{"original_text": "Ready to shred, Ted broke out the guitar to get things going.", "album_id": "37246", "photo_flickr_id": "1460850", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "49054", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "ready to shred , [male] broke out the guitar to get things going .", "storylet_id": "245271"}], [{"original_text": "Bobby started picking away, hoping other would join in.", "album_id": "37246", "photo_flickr_id": "1460860", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "49054", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] started picking away , hoping other would join in .", "storylet_id": "245272"}], [{"original_text": "Everyone had a great time. Even Darth Vader, normally moody, was having fun.", "album_id": "37246", "photo_flickr_id": "1460836", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "49054", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone had a great time . even darth vader , normally moody , was having fun .", "storylet_id": "245273"}], [{"original_text": "A great night of music can only be followed up with some Nintendo action.", "album_id": "37246", "photo_flickr_id": "1460861", "setting": "last-3-pick-old-and-tell", "worker_id": "01I1K9CEKULUS7N", "story_id": "49054", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a great night of music can only be followed up with some organization action .", "storylet_id": "245274"}], [{"original_text": "Harvey was on his way to the rave concert.", "album_id": "72057594060732425", "photo_flickr_id": "2101589", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49055", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was on his way to the rave concert .", "storylet_id": "245275"}], [{"original_text": "Anna was riding with Harvey.", "album_id": "72057594060732425", "photo_flickr_id": "2101595", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49055", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] was riding with [male] .", "storylet_id": "245276"}], [{"original_text": "They really enjoyed the concert.", "album_id": "72057594060732425", "photo_flickr_id": "2101607", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49055", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they really enjoyed the concert .", "storylet_id": "245277"}], [{"original_text": "The performer was great.", "album_id": "72057594060732425", "photo_flickr_id": "2101604", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49055", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the performer was great .", "storylet_id": "245278"}], [{"original_text": "It was by a band called Baby.", "album_id": "72057594060732425", "photo_flickr_id": "2101602", "setting": "first-2-pick-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49055", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was by a band called [male] .", "storylet_id": "245279"}], [{"original_text": "This is my friend. He invited me to go to a concert with him.", "album_id": "72057594060732425", "photo_flickr_id": "2101589", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "49056", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my friend . he invited me to go to a concert with him .", "storylet_id": "245280"}], [{"original_text": "I am so excited to be going to a concert!", "album_id": "72057594060732425", "photo_flickr_id": "2101595", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "49056", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i am so excited to be going to a concert !", "storylet_id": "245281"}], [{"original_text": "The band is playing. I love this band! They are the best.", "album_id": "72057594060732425", "photo_flickr_id": "2101599", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "49056", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band is playing . i love this band ! they are the best .", "storylet_id": "245282"}], [{"original_text": "I am so excited to be here! What a great concert!", "album_id": "72057594060732425", "photo_flickr_id": "2101607", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "49056", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i am so excited to be here ! what a great concert !", "storylet_id": "245283"}], [{"original_text": "I am having such a good time. I'm so glad I was able to come!", "album_id": "72057594060732425", "photo_flickr_id": "2101692", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "49056", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am having such a good time . i 'm so glad i was able to come !", "storylet_id": "245284"}], [{"original_text": "It is hard to see the screen from here. ", "album_id": "72057594060732425", "photo_flickr_id": "2101589", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49057", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is hard to see the screen from here .", "storylet_id": "245285"}], [{"original_text": "I agree, I can not see the screen either. Probably should move closer. ", "album_id": "72057594060732425", "photo_flickr_id": "2101595", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49057", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i agree , i can not see the screen either . probably should move closer .", "storylet_id": "245286"}], [{"original_text": "The band is playing really good. Can't hardly see them though. ", "album_id": "72057594060732425", "photo_flickr_id": "2101599", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49057", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band is playing really good . ca n't hardly see them though .", "storylet_id": "245287"}], [{"original_text": "It is so loud and crazy in here, but I am enjoying it. ", "album_id": "72057594060732425", "photo_flickr_id": "2101607", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49057", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is so loud and crazy in here , but i am enjoying it .", "storylet_id": "245288"}], [{"original_text": "Really hot and humid in here with everybody at this concert. ", "album_id": "72057594060732425", "photo_flickr_id": "2101692", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49057", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "really hot and humid in here with everybody at this concert .", "storylet_id": "245289"}], [{"original_text": "I was so happy to be heading to the concert. ", "album_id": "72057594060732425", "photo_flickr_id": "2101589", "setting": "last-3-pick-old-and-tell", "worker_id": "FDZJJYBR4MI8ZHR", "story_id": "49058", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was so happy to be heading to the concert .", "storylet_id": "245290"}], [{"original_text": "My friend was excited to be with me. ", "album_id": "72057594060732425", "photo_flickr_id": "2101595", "setting": "last-3-pick-old-and-tell", "worker_id": "FDZJJYBR4MI8ZHR", "story_id": "49058", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend was excited to be with me .", "storylet_id": "245291"}], [{"original_text": "The huge crowd was out of control by the time we got there. ", "album_id": "72057594060732425", "photo_flickr_id": "2101607", "setting": "last-3-pick-old-and-tell", "worker_id": "FDZJJYBR4MI8ZHR", "story_id": "49058", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the huge crowd was out of control by the time we got there .", "storylet_id": "245292"}], [{"original_text": "We moved closer to the stage during the show. ", "album_id": "72057594060732425", "photo_flickr_id": "2101604", "setting": "last-3-pick-old-and-tell", "worker_id": "FDZJJYBR4MI8ZHR", "story_id": "49058", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we moved closer to the stage during the show .", "storylet_id": "245293"}], [{"original_text": "The lights and projection screens were very interesting. ", "album_id": "72057594060732425", "photo_flickr_id": "2101602", "setting": "last-3-pick-old-and-tell", "worker_id": "FDZJJYBR4MI8ZHR", "story_id": "49058", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lights and projection screens were very interesting .", "storylet_id": "245294"}], [{"original_text": "The man is happy", "album_id": "72057594060732425", "photo_flickr_id": "2101589", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49059", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man is happy", "storylet_id": "245295"}], [{"original_text": "that his wife is happy.", "album_id": "72057594060732425", "photo_flickr_id": "2101595", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49059", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that his wife is happy .", "storylet_id": "245296"}], [{"original_text": "They have a good time at the club", "album_id": "72057594060732425", "photo_flickr_id": "2101607", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49059", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they have a good time at the club", "storylet_id": "245297"}], [{"original_text": "with the dancers there.", "album_id": "72057594060732425", "photo_flickr_id": "2101604", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49059", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with the dancers there .", "storylet_id": "245298"}], [{"original_text": "It ends up being a very good night.", "album_id": "72057594060732425", "photo_flickr_id": "2101602", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49059", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it ends up being a very good night .", "storylet_id": "245299"}], [{"original_text": "we had a great time at the event ", "album_id": "72157622457999530", "photo_flickr_id": "3953532774", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49060", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great time at the event", "storylet_id": "245300"}], [{"original_text": "we got to hear the speech", "album_id": "72157622457999530", "photo_flickr_id": "3953533086", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49060", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to hear the speech", "storylet_id": "245301"}], [{"original_text": "there was free wine", "album_id": "72157622457999530", "photo_flickr_id": "3952758543", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49060", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was free wine", "storylet_id": "245302"}], [{"original_text": "everyone had such a good time", "album_id": "72157622457999530", "photo_flickr_id": "3953536416", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49060", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone had such a good time", "storylet_id": "245303"}], [{"original_text": "and even Tim spoke about the future ", "album_id": "72157622457999530", "photo_flickr_id": "3953537986", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49060", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and even [male] spoke about the future", "storylet_id": "245304"}], [{"original_text": "We went to a meeting with a few friends last month.", "album_id": "72157622457999530", "photo_flickr_id": "3953536416", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "49061", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a meeting with a few friends last month .", "storylet_id": "245305"}], [{"original_text": "A guy was there that was teaching all kinds of educational stuff.", "album_id": "72157622457999530", "photo_flickr_id": "3952757287", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "49061", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a guy was there that was teaching all kinds of educational stuff .", "storylet_id": "245306"}], [{"original_text": "He had many different items he taught us about.", "album_id": "72157622457999530", "photo_flickr_id": "3953535314", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "49061", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had many different items he taught us about .", "storylet_id": "245307"}], [{"original_text": "He even played some music for us. It sounded great.", "album_id": "72157622457999530", "photo_flickr_id": "3952761487", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "49061", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he even played some music for us . it sounded great .", "storylet_id": "245308"}], [{"original_text": "We took one last picture before we went out to eat.", "album_id": "72157622457999530", "photo_flickr_id": "3953536936", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "49061", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took one last picture before we went out to eat .", "storylet_id": "245309"}], [{"original_text": "The table was well decorated.", "album_id": "72157622457999530", "photo_flickr_id": "3953532774", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49062", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the table was well decorated .", "storylet_id": "245310"}], [{"original_text": "The man wore religious garments.", "album_id": "72157622457999530", "photo_flickr_id": "3953533086", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49062", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man wore religious garments .", "storylet_id": "245311"}], [{"original_text": "We toasted to the finer things in life.", "album_id": "72157622457999530", "photo_flickr_id": "3952758543", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49062", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we toasted to the finer things in life .", "storylet_id": "245312"}], [{"original_text": "The restaurant was full at this time.", "album_id": "72157622457999530", "photo_flickr_id": "3953536416", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49062", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the restaurant was full at this time .", "storylet_id": "245313"}], [{"original_text": "I decided to visit the venue for entertainment.", "album_id": "72157622457999530", "photo_flickr_id": "3953537986", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49062", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to visit the venue for entertainment .", "storylet_id": "245314"}], [{"original_text": "Religious objects were placed on a table for people to see.", "album_id": "72157622457999530", "photo_flickr_id": "3953532774", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "49063", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "religious objects were placed on a table for people to see .", "storylet_id": "245315"}], [{"original_text": "A man in white gave a speech.", "album_id": "72157622457999530", "photo_flickr_id": "3953533086", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "49063", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a man in white gave a speech .", "storylet_id": "245316"}], [{"original_text": "Another man toasted his speech.", "album_id": "72157622457999530", "photo_flickr_id": "3952758543", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "49063", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another man toasted his speech .", "storylet_id": "245317"}], [{"original_text": "The people sat down in a room full of tables for dinner.", "album_id": "72157622457999530", "photo_flickr_id": "3953536416", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "49063", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people sat down in a room full of tables for dinner .", "storylet_id": "245318"}], [{"original_text": "A man and his wife sang.", "album_id": "72157622457999530", "photo_flickr_id": "3953537986", "setting": "last-3-pick-old-and-tell", "worker_id": "SA6JVY3LYJ13JUD", "story_id": "49063", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a man and his wife sang .", "storylet_id": "245319"}], [{"original_text": "Today we went to a ceremony for my cousin", "album_id": "72157622457999530", "photo_flickr_id": "3953532774", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "49064", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to a ceremony for my cousin", "storylet_id": "245320"}], [{"original_text": "His father spoke for him at the alter.", "album_id": "72157622457999530", "photo_flickr_id": "3953533086", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "49064", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his father spoke for him at the alter .", "storylet_id": "245321"}], [{"original_text": "We then had a toast for him.", "album_id": "72157622457999530", "photo_flickr_id": "3952758543", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "49064", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we then had a toast for him .", "storylet_id": "245322"}], [{"original_text": "After we all got to eat.", "album_id": "72157622457999530", "photo_flickr_id": "3953536416", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "49064", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after we all got to eat .", "storylet_id": "245323"}], [{"original_text": "Then my souin and his wife said a small speech to end the night.", "album_id": "72157622457999530", "photo_flickr_id": "3953537986", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "49064", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then my souin and his wife said a small speech to end the night .", "storylet_id": "245324"}], [{"original_text": "I went to a little aquatic zoo today.", "album_id": "72057594082085903", "photo_flickr_id": "112493784", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "49065", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a little aquatic zoo today .", "storylet_id": "245325"}], [{"original_text": "The first thing I saw was this huge turtle.", "album_id": "72057594082085903", "photo_flickr_id": "112493759", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "49065", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first thing i saw was this huge turtle .", "storylet_id": "245326"}], [{"original_text": "This gecko wasn't part of the aquarium but I saw it walking around.", "album_id": "72057594082085903", "photo_flickr_id": "112493953", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "49065", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this gecko was n't part of the aquarium but i saw it walking around .", "storylet_id": "245327"}], [{"original_text": "They even had various seafood around to feed the bigger aquatic mammals.", "album_id": "72057594082085903", "photo_flickr_id": "112493828", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "49065", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even had various seafood around to feed the bigger aquatic mammals .", "storylet_id": "245328"}], [{"original_text": "I managed to get this souvenir turtle!", "album_id": "72057594082085903", "photo_flickr_id": "112493852", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "49065", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i managed to get this souvenir turtle !", "storylet_id": "245329"}], [{"original_text": "Patty decided to go out to buy a new turtle for a friend.", "album_id": "72057594082085903", "photo_flickr_id": "112493852", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "49066", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] decided to go out to buy a new turtle for a friend .", "storylet_id": "245330"}], [{"original_text": "Her friend Anna was the local owner and knew just what to look for.", "album_id": "72057594082085903", "photo_flickr_id": "112493976", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "49066", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her friend [female] was the local owner and knew just what to look for .", "storylet_id": "245331"}], [{"original_text": "Along the way she met up with her friend John who was having a walk on the beach.", "album_id": "72057594082085903", "photo_flickr_id": "112494188", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "49066", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "along the way she met up with her friend [male] who was having a walk on the beach .", "storylet_id": "245332"}], [{"original_text": "She wondered if she could find any turtles around here.", "album_id": "72057594082085903", "photo_flickr_id": "112494314", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "49066", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she wondered if she could find any turtles around here .", "storylet_id": "245333"}], [{"original_text": "After her trip she opened the box to show her friend her new turtle while they were out to eat.", "album_id": "72057594082085903", "photo_flickr_id": "112493672", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "49066", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after her trip she opened the box to show her friend her new turtle while they were out to eat .", "storylet_id": "245334"}], [{"original_text": "It was time for a pet turtle.", "album_id": "72057594082085903", "photo_flickr_id": "112493784", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "49067", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was time for a pet turtle .", "storylet_id": "245335"}], [{"original_text": "This is how big they can get.", "album_id": "72057594082085903", "photo_flickr_id": "112493759", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "49067", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is how big they can get .", "storylet_id": "245336"}], [{"original_text": "Ooops I almost stepped on Gecky!", "album_id": "72057594082085903", "photo_flickr_id": "112493953", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "49067", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "ooops i almost stepped on gecky !", "storylet_id": "245337"}], [{"original_text": "They were going to feed him to these animals!", "album_id": "72057594082085903", "photo_flickr_id": "112493828", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "49067", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were going to feed him to these animals !", "storylet_id": "245338"}], [{"original_text": "I choose this turtle, I think I will call him Pikachu!", "album_id": "72057594082085903", "photo_flickr_id": "112493852", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "49067", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i choose this turtle , i think i will call him pikachu !", "storylet_id": "245339"}], [{"original_text": "The turtles stayed at the reptile house.", "album_id": "72057594082085903", "photo_flickr_id": "112493784", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49068", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the turtles stayed at the reptile house .", "storylet_id": "245340"}], [{"original_text": "This turtle was named Jerry.", "album_id": "72057594082085903", "photo_flickr_id": "112493759", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49068", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this turtle was named [male] .", "storylet_id": "245341"}], [{"original_text": "He was friends with this salamander.", "album_id": "72057594082085903", "photo_flickr_id": "112493953", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49068", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was friends with this salamander .", "storylet_id": "245342"}], [{"original_text": "They both didn't want to be used as bait.", "album_id": "72057594082085903", "photo_flickr_id": "112493828", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49068", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they both did n't want to be used as bait .", "storylet_id": "245343"}], [{"original_text": "They wanted to be sold to a nice person who would let them be alive. ", "album_id": "72057594082085903", "photo_flickr_id": "112493852", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49068", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they wanted to be sold to a nice person who would let them be alive .", "storylet_id": "245344"}], [{"original_text": "We went to the wildlife refuge today.", "album_id": "72057594082085903", "photo_flickr_id": "112493784", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49069", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the wildlife refuge today .", "storylet_id": "245345"}], [{"original_text": "We saw a giant turtle.", "album_id": "72057594082085903", "photo_flickr_id": "112493759", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49069", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw a giant turtle .", "storylet_id": "245346"}], [{"original_text": "We also saw a tiny lizard.", "album_id": "72057594082085903", "photo_flickr_id": "112493953", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49069", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also saw a tiny lizard .", "storylet_id": "245347"}], [{"original_text": "We took a bunch of fish and one lobster home.", "album_id": "72057594082085903", "photo_flickr_id": "112493828", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49069", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a bunch of fish and one lobster home .", "storylet_id": "245348"}], [{"original_text": "But I brought home the most beautiful turtle I have ever seen.", "album_id": "72057594082085903", "photo_flickr_id": "112493852", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49069", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but i brought home the most beautiful turtle i have ever seen .", "storylet_id": "245349"}], [{"original_text": "I love to travel", "album_id": "72057594107464030", "photo_flickr_id": "128757225", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49070", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love to travel", "storylet_id": "245350"}], [{"original_text": "This place is amazing", "album_id": "72057594107464030", "photo_flickr_id": "128757293", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49070", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this place is amazing", "storylet_id": "245351"}], [{"original_text": "So much to see ", "album_id": "72057594107464030", "photo_flickr_id": "128757799", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49070", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so much to see", "storylet_id": "245352"}], [{"original_text": "and do", "album_id": "72057594107464030", "photo_flickr_id": "128757856", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49070", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and do", "storylet_id": "245353"}], [{"original_text": "I will return", "album_id": "72057594107464030", "photo_flickr_id": "128757915", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49070", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i will return", "storylet_id": "245354"}], [{"original_text": "She has the look like this will be a long party.", "album_id": "72057594107464030", "photo_flickr_id": "128757225", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "49071", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she has the look like this will be a long party .", "storylet_id": "245355"}], [{"original_text": "They light the Minora and get on with it.", "album_id": "72057594107464030", "photo_flickr_id": "128757426", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "49071", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they light the minora and get on with it .", "storylet_id": "245356"}], [{"original_text": "He has a look of \"I don't want to be here\"", "album_id": "72057594107464030", "photo_flickr_id": "128757734", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "49071", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he has a look of `` i do n't want to be here ''", "storylet_id": "245357"}], [{"original_text": "The cookies look delightful and delicious.", "album_id": "72057594107464030", "photo_flickr_id": "128757799", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "49071", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cookies look delightful and delicious .", "storylet_id": "245358"}], [{"original_text": "She eases the mood with a stiff drink.", "album_id": "72057594107464030", "photo_flickr_id": "128757985", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "49071", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she eases the mood with a stiff drink .", "storylet_id": "245359"}], [{"original_text": "Janie wanted to have a candle party.", "album_id": "72057594107464030", "photo_flickr_id": "128757225", "setting": "last-3-pick-old-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "49072", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] wanted to have a candle party .", "storylet_id": "245360"}], [{"original_text": "Many came to look at all the candles she makes.", "album_id": "72057594107464030", "photo_flickr_id": "128757293", "setting": "last-3-pick-old-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "49072", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many came to look at all the candles she makes .", "storylet_id": "245361"}], [{"original_text": "She showed us all how she started them.", "album_id": "72057594107464030", "photo_flickr_id": "128757799", "setting": "last-3-pick-old-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "49072", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she showed us all how she started them .", "storylet_id": "245362"}], [{"original_text": "She had lots of tealight type candles.", "album_id": "72057594107464030", "photo_flickr_id": "128757856", "setting": "last-3-pick-old-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "49072", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she had lots of tealight type candles .", "storylet_id": "245363"}], [{"original_text": "And many pretty holders she makes as well.", "album_id": "72057594107464030", "photo_flickr_id": "128757915", "setting": "last-3-pick-old-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "49072", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and many pretty holders she makes as well .", "storylet_id": "245364"}], [{"original_text": "My new girlfriend is Jewish and from this point forward I celebrate holidays with her. ", "album_id": "72057594107464030", "photo_flickr_id": "128757225", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "49073", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my new girlfriend is jewish and from this point forward i celebrate holidays with her .", "storylet_id": "245365"}], [{"original_text": "The only symbol of Judiasm that I'm familiar with is the Menorah.", "album_id": "72057594107464030", "photo_flickr_id": "128757426", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "49073", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the only symbol of location that i 'm familiar with is the menorah .", "storylet_id": "245366"}], [{"original_text": "Some of her Jewish friends didn't really think that I fit in.", "album_id": "72057594107464030", "photo_flickr_id": "128757734", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "49073", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of her jewish friends did n't really think that i fit in .", "storylet_id": "245367"}], [{"original_text": "Maybe they were right because I did not enjoy their food.", "album_id": "72057594107464030", "photo_flickr_id": "128757799", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "49073", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "maybe they were right because i did not enjoy their food .", "storylet_id": "245368"}], [{"original_text": "The only way to get through the day was to drink lots of alcohol.", "album_id": "72057594107464030", "photo_flickr_id": "128757985", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "49073", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the only way to get through the day was to drink lots of alcohol .", "storylet_id": "245369"}], [{"original_text": "The first guests began to arrive for the Hanukkah celebration. ", "album_id": "72057594107464030", "photo_flickr_id": "128757225", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49074", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the first guests began to arrive for the hanukkah celebration .", "storylet_id": "245370"}], [{"original_text": "The candle shone brightly and the long table was set when the guests began to fill it.", "album_id": "72057594107464030", "photo_flickr_id": "128757426", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49074", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the candle shone brightly and the long table was set when the guests began to fill it .", "storylet_id": "245371"}], [{"original_text": "Each attendee shared their thanks for the hosts and began to wait for the food to arrive.", "album_id": "72057594107464030", "photo_flickr_id": "128757734", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49074", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each attendee shared their thanks for the hosts and began to wait for the food to arrive .", "storylet_id": "245372"}], [{"original_text": "When it did everyone commented on the unusual foods and how interesting it looked. ", "album_id": "72057594107464030", "photo_flickr_id": "128757799", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49074", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when it did everyone commented on the unusual foods and how interesting it looked .", "storylet_id": "245373"}], [{"original_text": "Whatever apprehensions hey had was quickly forgotten as the guests began to dig in. ", "album_id": "72057594107464030", "photo_flickr_id": "128757985", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49074", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "whatever apprehensions hey had was quickly forgotten as the guests began to dig in .", "storylet_id": "245374"}], [{"original_text": "The live music was impressive.", "album_id": "72057594111789928", "photo_flickr_id": "131522312", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "49075", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the live music was impressive .", "storylet_id": "245375"}], [{"original_text": "The girl liked the music so much she gave a kiss.", "album_id": "72057594111789928", "photo_flickr_id": "131522753", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "49075", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girl liked the music so much she gave a kiss .", "storylet_id": "245376"}], [{"original_text": "The boys are having fun.", "album_id": "72057594111789928", "photo_flickr_id": "131523611", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "49075", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boys are having fun .", "storylet_id": "245377"}], [{"original_text": "This girl likes the music.", "album_id": "72057594111789928", "photo_flickr_id": "131524250", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "49075", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this girl likes the music .", "storylet_id": "245378"}], [{"original_text": "The girl nows how to lay down some pain.", "album_id": "72057594111789928", "photo_flickr_id": "131525080", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "49075", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girl nows how to lay down some pain .", "storylet_id": "245379"}], [{"original_text": "My first party in the dorm! ", "album_id": "72057594111789928", "photo_flickr_id": "131521911", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49076", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my first party in the dorm !", "storylet_id": "245380"}], [{"original_text": "There was a very loud band called \"Very loud band.\"", "album_id": "72057594111789928", "photo_flickr_id": "131522503", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49076", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a very loud band called `` very loud band . ''", "storylet_id": "245381"}], [{"original_text": "My friend Melissa had enough. She took my hand and led me to the kitchen where we could hear. ", "album_id": "72057594111789928", "photo_flickr_id": "131524250", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49076", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend [female] had enough . she took my hand and led me to the kitchen where we could hear .", "storylet_id": "245382"}], [{"original_text": "Bobby and Jack cornered me and asked me out on a date with them both. I freaked out and ran into the hallway. ", "album_id": "72057594111789928", "photo_flickr_id": "131523611", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49076", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and [male] cornered me and asked me out on a date with them both . i freaked out and ran into the hallway .", "storylet_id": "245383"}], [{"original_text": "PARTY! They screamed. We all danced until passed out. ", "album_id": "72057594111789928", "photo_flickr_id": "131523179", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49076", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "party ! they screamed . we all danced until passed out .", "storylet_id": "245384"}], [{"original_text": "We went to see my friend's band.", "album_id": "72057594111789928", "photo_flickr_id": "131522312", "setting": "last-3-pick-old-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "49077", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to see my friend 's band .", "storylet_id": "245385"}], [{"original_text": "I ran into an old friend!", "album_id": "72057594111789928", "photo_flickr_id": "131522753", "setting": "last-3-pick-old-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "49077", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i ran into an old friend !", "storylet_id": "245386"}], [{"original_text": "We were all joking around.", "album_id": "72057594111789928", "photo_flickr_id": "131523611", "setting": "last-3-pick-old-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "49077", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were all joking around .", "storylet_id": "245387"}], [{"original_text": "I called my other friends to tell them he was here.", "album_id": "72057594111789928", "photo_flickr_id": "131524250", "setting": "last-3-pick-old-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "49077", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i called my other friends to tell them he was here .", "storylet_id": "245388"}], [{"original_text": "We all had a fun night.", "album_id": "72057594111789928", "photo_flickr_id": "131525080", "setting": "last-3-pick-old-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "49077", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all had a fun night .", "storylet_id": "245389"}], [{"original_text": "Stacy is so happy. Today is her birthday and everyone is at her house to celebrate it!", "album_id": "72057594111789928", "photo_flickr_id": "131521911", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49078", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is so happy . today is her birthday and everyone is at her house to celebrate it !", "storylet_id": "245390"}], [{"original_text": "Joel and Pablo even convinced their band to show up and sing Stacy's favorite rock songs.", "album_id": "72057594111789928", "photo_flickr_id": "131522503", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49078", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] and [male] even convinced their band to show up and sing [female] 's favorite rock songs .", "storylet_id": "245391"}], [{"original_text": "Jill is having such a great time she decides to call over even more people.", "album_id": "72057594111789928", "photo_flickr_id": "131524250", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49078", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] is having such a great time she decides to call over even more people .", "storylet_id": "245392"}], [{"original_text": "Jack and Ronald just arrived only five minutes ago and they are already having a blast.", "album_id": "72057594111789928", "photo_flickr_id": "131523611", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49078", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and [male] just arrived only five minutes ago and they are already having a blast .", "storylet_id": "245393"}], [{"original_text": "At the end of the night Stacy and all her friends get together and take silly birthday photos.", "album_id": "72057594111789928", "photo_flickr_id": "131523179", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49078", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night [female] and all her friends get together and take silly birthday photos .", "storylet_id": "245394"}], [{"original_text": "The night of the party was very exciting and when the guests began to arrive they began to share their eagerness.", "album_id": "72057594111789928", "photo_flickr_id": "131521911", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49079", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the night of the party was very exciting and when the guests began to arrive they began to share their eagerness .", "storylet_id": "245395"}], [{"original_text": "There was even a live band playing, some local kids who had decided to stop by and entertain the crowd.", "album_id": "72057594111789928", "photo_flickr_id": "131522503", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49079", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was even a live band playing , some local kids who had decided to stop by and entertain the crowd .", "storylet_id": "245396"}], [{"original_text": "Some of the kids had to call their parents against the loud noise of the music, but most didn't seem to mind.", "album_id": "72057594111789928", "photo_flickr_id": "131524250", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49079", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the kids had to call their parents against the loud noise of the music , but most did n't seem to mind .", "storylet_id": "245397"}], [{"original_text": "There was fun to be had all around, especially when it came to being goofy and silly.", "album_id": "72057594111789928", "photo_flickr_id": "131523611", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49079", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was fun to be had all around , especially when it came to being goofy and silly .", "storylet_id": "245398"}], [{"original_text": "The more the night wore on, the more the crowd began to lose all inhibitions. ", "album_id": "72057594111789928", "photo_flickr_id": "131523179", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49079", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the more the night wore on , the more the crowd began to lose all inhibitions .", "storylet_id": "245399"}], [{"original_text": "Matza balls are cooking in preparation for the Jewish celebration.", "album_id": "72157600044428041", "photo_flickr_id": "444493974", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "49080", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "matza balls are cooking in preparation for the jewish celebration .", "storylet_id": "245400"}], [{"original_text": "Some type of green bean vegetables are a compliment.", "album_id": "72157600044428041", "photo_flickr_id": "444502039", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "49080", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some type of green bean vegetables are a compliment .", "storylet_id": "245401"}], [{"original_text": "Some delicious meat will compliment the other foods.", "album_id": "72157600044428041", "photo_flickr_id": "444502311", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "49080", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some delicious meat will compliment the other foods .", "storylet_id": "245402"}], [{"original_text": "In honor of the Jewish event we have a star of david garnish art.", "album_id": "72157600044428041", "photo_flickr_id": "444499900", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "49080", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in honor of the jewish event we have a star of david garnish art .", "storylet_id": "245403"}], [{"original_text": "The girl has made a passover pillow to honor the traditions.", "album_id": "72157600044428041", "photo_flickr_id": "444902875", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "49080", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girl has made a passover pillow to honor the traditions .", "storylet_id": "245404"}], [{"original_text": "the jewish meal was started.", "album_id": "72157600044428041", "photo_flickr_id": "444493974", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "49081", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the jewish meal was started .", "storylet_id": "245405"}], [{"original_text": "The sides needed prepared.", "album_id": "72157600044428041", "photo_flickr_id": "444502039", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "49081", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sides needed prepared .", "storylet_id": "245406"}], [{"original_text": "The meat was cooked. ", "album_id": "72157600044428041", "photo_flickr_id": "444502311", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "49081", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the meat was cooked .", "storylet_id": "245407"}], [{"original_text": "The tables was set. ", "album_id": "72157600044428041", "photo_flickr_id": "444495500", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "49081", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the tables was set .", "storylet_id": "245408"}], [{"original_text": "The passover ceremony can now begin.", "album_id": "72157600044428041", "photo_flickr_id": "444499900", "setting": "first-2-pick-and-tell", "worker_id": "964JSCJG19F8ZT7", "story_id": "49081", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the passover ceremony can now begin .", "storylet_id": "245409"}], [{"original_text": "Matso ball soup being made.", "album_id": "72157600044428041", "photo_flickr_id": "444493974", "setting": "last-3-pick-old-and-tell", "worker_id": "6YFM77REMBRCU9Z", "story_id": "49082", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "matso ball soup being made .", "storylet_id": "245410"}], [{"original_text": "Some fresh greens to compliment the rest.", "album_id": "72157600044428041", "photo_flickr_id": "444502039", "setting": "last-3-pick-old-and-tell", "worker_id": "6YFM77REMBRCU9Z", "story_id": "49082", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some fresh greens to compliment the rest .", "storylet_id": "245411"}], [{"original_text": "Chipped Beef tastes yummy.", "album_id": "72157600044428041", "photo_flickr_id": "444502311", "setting": "last-3-pick-old-and-tell", "worker_id": "6YFM77REMBRCU9Z", "story_id": "49082", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "chipped beef tastes yummy .", "storylet_id": "245412"}], [{"original_text": "A cake for desert!", "album_id": "72157600044428041", "photo_flickr_id": "444499900", "setting": "last-3-pick-old-and-tell", "worker_id": "6YFM77REMBRCU9Z", "story_id": "49082", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a cake for desert !", "storylet_id": "245413"}], [{"original_text": "Here's the art project I made in school for today. ", "album_id": "72157600044428041", "photo_flickr_id": "444902875", "setting": "last-3-pick-old-and-tell", "worker_id": "6YFM77REMBRCU9Z", "story_id": "49082", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's the art project i made in school for today .", "storylet_id": "245414"}], [{"original_text": "Cook up some Matzah balls for soup.", "album_id": "72157600044428041", "photo_flickr_id": "444493974", "setting": "last-3-pick-old-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "49083", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "cook up some location balls for soup .", "storylet_id": "245415"}], [{"original_text": "Cook some green beans.", "album_id": "72157600044428041", "photo_flickr_id": "444502039", "setting": "last-3-pick-old-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "49083", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "cook some green beans .", "storylet_id": "245416"}], [{"original_text": "Cook some kosher meat.", "album_id": "72157600044428041", "photo_flickr_id": "444502311", "setting": "last-3-pick-old-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "49083", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "cook some kosher meat .", "storylet_id": "245417"}], [{"original_text": "Put all of the dishes together for a delightful Passover meal. ", "album_id": "72157600044428041", "photo_flickr_id": "444499900", "setting": "last-3-pick-old-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "49083", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "put all of the dishes together for a delightful passover meal .", "storylet_id": "245418"}], [{"original_text": "Celebrate Passover with loved ones. ", "album_id": "72157600044428041", "photo_flickr_id": "444902875", "setting": "last-3-pick-old-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "49083", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "celebrate passover with loved ones .", "storylet_id": "245419"}], [{"original_text": "We are making an Asian meal today,", "album_id": "72157600044428041", "photo_flickr_id": "444493974", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "49084", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are making an asian meal today ,", "storylet_id": "245420"}], [{"original_text": "First we cook the greens", "album_id": "72157600044428041", "photo_flickr_id": "444502039", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "49084", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we cook the greens", "storylet_id": "245421"}], [{"original_text": "Then we cook the pork.", "album_id": "72157600044428041", "photo_flickr_id": "444502311", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "49084", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we cook the pork .", "storylet_id": "245422"}], [{"original_text": "After we make a desing for the plates", "album_id": "72157600044428041", "photo_flickr_id": "444499900", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "49084", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after we make a desing for the plates", "storylet_id": "245423"}], [{"original_text": "Then we get to wat our meals", "album_id": "72157600044428041", "photo_flickr_id": "444902875", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "49084", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we get to wat our meals", "storylet_id": "245424"}], [{"original_text": "A group of family members have a great dinner.", "album_id": "72157600046387670", "photo_flickr_id": "445432751", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49085", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of family members have a great dinner .", "storylet_id": "245425"}], [{"original_text": "The brother of the family is anxious for dinner to start.", "album_id": "72157600046387670", "photo_flickr_id": "445427183", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49085", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the brother of the family is anxious for dinner to start .", "storylet_id": "245426"}], [{"original_text": "He has a hearty soup with cream on it.", "album_id": "72157600046387670", "photo_flickr_id": "445433439", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49085", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he has a hearty soup with cream on it .", "storylet_id": "245427"}], [{"original_text": "A plate of deserts are served at the end.", "album_id": "72157600046387670", "photo_flickr_id": "445428339", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49085", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a plate of deserts are served at the end .", "storylet_id": "245428"}], [{"original_text": "The family poses for a photo together.", "album_id": "72157600046387670", "photo_flickr_id": "445429517", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49085", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family poses for a photo together .", "storylet_id": "245429"}], [{"original_text": "we had incredible dinner", "album_id": "72157600046387670", "photo_flickr_id": "445432751", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49086", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had incredible dinner", "storylet_id": "245430"}], [{"original_text": "my dad made all the food ", "album_id": "72157600046387670", "photo_flickr_id": "445423976", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49086", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my dad made all the food", "storylet_id": "245431"}], [{"original_text": "and served it as well", "album_id": "72157600046387670", "photo_flickr_id": "445423196", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49086", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and served it as well", "storylet_id": "245432"}], [{"original_text": "we ate everything ", "album_id": "72157600046387670", "photo_flickr_id": "445427242", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49086", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we ate everything", "storylet_id": "245433"}], [{"original_text": "then had dessert", "album_id": "72157600046387670", "photo_flickr_id": "445428339", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49086", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then had dessert", "storylet_id": "245434"}], [{"original_text": "We had a big family dinner this week.", "album_id": "72157600046387670", "photo_flickr_id": "445432751", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49087", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a big family dinner this week .", "storylet_id": "245435"}], [{"original_text": "Everyone was hungry and eating really fast.", "album_id": "72157600046387670", "photo_flickr_id": "445427183", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49087", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was hungry and eating really fast .", "storylet_id": "245436"}], [{"original_text": "The food was delicious and all got eaten.", "album_id": "72157600046387670", "photo_flickr_id": "445433439", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49087", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food was delicious and all got eaten .", "storylet_id": "245437"}], [{"original_text": "After dinner, we snacked on desserts.", "album_id": "72157600046387670", "photo_flickr_id": "445428339", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49087", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after dinner , we snacked on desserts .", "storylet_id": "245438"}], [{"original_text": "At the end we all posed for the group picture.", "album_id": "72157600046387670", "photo_flickr_id": "445429517", "setting": "last-3-pick-old-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49087", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end we all posed for the group picture .", "storylet_id": "245439"}], [{"original_text": "A dinner table was nicely set for six for a family meal.", "album_id": "72157600046387670", "photo_flickr_id": "445432751", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "49088", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a dinner table was nicely set for six for a family meal .", "storylet_id": "245440"}], [{"original_text": "The diners seemed to have a nice, quiet time.", "album_id": "72157600046387670", "photo_flickr_id": "445427183", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "49088", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the diners seemed to have a nice , quiet time .", "storylet_id": "245441"}], [{"original_text": "One of the dishes was served in a fancy china dish with a gold ring.", "album_id": "72157600046387670", "photo_flickr_id": "445433439", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "49088", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the dishes was served in a fancy china dish with a gold ring .", "storylet_id": "245442"}], [{"original_text": "Several kinds of desserts were placed on a platter.", "album_id": "72157600046387670", "photo_flickr_id": "445428339", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "49088", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "several kinds of desserts were placed on a platter .", "storylet_id": "245443"}], [{"original_text": "After dinner, five family members posed for a photo.", "album_id": "72157600046387670", "photo_flickr_id": "445429517", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "49088", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after dinner , five family members posed for a photo .", "storylet_id": "245444"}], [{"original_text": "Uncle Bill prepared a feast for his family.", "album_id": "72157600046387670", "photo_flickr_id": "445432751", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "49089", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "uncle [male] prepared a feast for his family .", "storylet_id": "245445"}], [{"original_text": "Bill's son was distracted by the baseball game on the tv.", "album_id": "72157600046387670", "photo_flickr_id": "445427183", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "49089", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] 's son was distracted by the baseball game on the tv .", "storylet_id": "245446"}], [{"original_text": "One of the best dishes was homemade chicken broth with dumplings.", "album_id": "72157600046387670", "photo_flickr_id": "445433439", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "49089", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the best dishes was homemade chicken broth with dumplings .", "storylet_id": "245447"}], [{"original_text": "The plate of dessert treats disappeared in minutes.", "album_id": "72157600046387670", "photo_flickr_id": "445428339", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "49089", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the plate of dessert treats disappeared in minutes .", "storylet_id": "245448"}], [{"original_text": "The family gathered together on the couch, full after a big meal.", "album_id": "72157600046387670", "photo_flickr_id": "445429517", "setting": "last-3-pick-old-and-tell", "worker_id": "XP8QVJA2QNTY64X", "story_id": "49089", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family gathered together on the couch , full after a big meal .", "storylet_id": "245449"}], [{"original_text": "My priest gave me a tour of the church today. I saw many things I hadn't noticed before.", "album_id": "72157594529682304", "photo_flickr_id": "386606162", "setting": "first-2-pick-and-tell", "worker_id": "ZUO5V3K6LAELC5J", "story_id": "49090", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my priest gave me a tour of the church today . i saw many things i had n't noticed before .", "storylet_id": "245450"}], [{"original_text": "He showed me the ceiling and explained what the artwork represented in the tiles.", "album_id": "72157594529682304", "photo_flickr_id": "386606036", "setting": "first-2-pick-and-tell", "worker_id": "ZUO5V3K6LAELC5J", "story_id": "49090", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he showed me the ceiling and explained what the artwork represented in the tiles .", "storylet_id": "245451"}], [{"original_text": "The church is full of beautiful stained glass windows, and I loved looking at them all.", "album_id": "72157594529682304", "photo_flickr_id": "386606595", "setting": "first-2-pick-and-tell", "worker_id": "ZUO5V3K6LAELC5J", "story_id": "49090", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the church is full of beautiful stained glass windows , and i loved looking at them all .", "storylet_id": "245452"}], [{"original_text": "This one shows Adam and Eve in the Garden of Eden.", "album_id": "72157594529682304", "photo_flickr_id": "386606725", "setting": "first-2-pick-and-tell", "worker_id": "ZUO5V3K6LAELC5J", "story_id": "49090", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one shows [male] and eve in the garden of [female] .", "storylet_id": "245453"}], [{"original_text": "But, this one is my favorite window. It shows Jonah being swallowed by the whale. It is scary and weird, something you don't think of seeing at church!", "album_id": "72157594529682304", "photo_flickr_id": "386607469", "setting": "first-2-pick-and-tell", "worker_id": "ZUO5V3K6LAELC5J", "story_id": "49090", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but , this one is my favorite window . it shows [male] being swallowed by the whale . it is scary and weird , something you do n't think of seeing at church !", "storylet_id": "245454"}], [{"original_text": "I got the opportunity to take a tour of a 16th century church.", "album_id": "72157594529682304", "photo_flickr_id": "386605989", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "49091", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got the opportunity to take a tour of a 16th century church .", "storylet_id": "245455"}], [{"original_text": "The church had huge stained glass panels that were amazing.", "album_id": "72157594529682304", "photo_flickr_id": "389296617", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "49091", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the church had huge stained glass panels that were amazing .", "storylet_id": "245456"}], [{"original_text": "The glass panels had many different depictions of scenes from the Bible.", "album_id": "72157594529682304", "photo_flickr_id": "386607664", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "49091", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the glass panels had many different depictions of scenes from the bible .", "storylet_id": "245457"}], [{"original_text": "I was amazed at the attention to detail in the panels.", "album_id": "72157594529682304", "photo_flickr_id": "386607983", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "49091", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was amazed at the attention to detail in the panels .", "storylet_id": "245458"}], [{"original_text": "My favorite was the glass panel at the back of the church that took up the entire wall.", "album_id": "72157594529682304", "photo_flickr_id": "386606595", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "49091", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite was the glass panel at the back of the church that took up the entire wall .", "storylet_id": "245459"}], [{"original_text": "We took a tour of the old church.", "album_id": "72157594529682304", "photo_flickr_id": "386606162", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49092", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a tour of the old church .", "storylet_id": "245460"}], [{"original_text": "First there was the beautiful ceiling in the church.", "album_id": "72157594529682304", "photo_flickr_id": "386606036", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49092", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first there was the beautiful ceiling in the church .", "storylet_id": "245461"}], [{"original_text": "Then we to a large stained glass portrait.", "album_id": "72157594529682304", "photo_flickr_id": "386606595", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49092", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we to a large stained glass portrait .", "storylet_id": "245462"}], [{"original_text": "After that we came to a portrait of Adam and Eve.", "album_id": "72157594529682304", "photo_flickr_id": "386606725", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49092", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that we came to a portrait of [male] and eve .", "storylet_id": "245463"}], [{"original_text": "Finally we came to a picture of a man being swallowed by a beast.", "album_id": "72157594529682304", "photo_flickr_id": "386607469", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49092", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally we came to a picture of a man being swallowed by a beast .", "storylet_id": "245464"}], [{"original_text": "Priest looking at the ceiling of the church.", "album_id": "72157594529682304", "photo_flickr_id": "386606162", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49093", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "priest looking at the ceiling of the church .", "storylet_id": "245465"}], [{"original_text": "Mahogany ceiling with gold decor.", "album_id": "72157594529682304", "photo_flickr_id": "386606036", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49093", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mahogany ceiling with gold decor .", "storylet_id": "245466"}], [{"original_text": "Window showing the life of Jesus Christ.", "album_id": "72157594529682304", "photo_flickr_id": "386606595", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49093", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "window showing the life of [male] christ .", "storylet_id": "245467"}], [{"original_text": "Adam and eve and Satan.", "album_id": "72157594529682304", "photo_flickr_id": "386606725", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49093", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and eve and satan .", "storylet_id": "245468"}], [{"original_text": "Getting swallowed by a whale. ", "album_id": "72157594529682304", "photo_flickr_id": "386607469", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49093", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "getting swallowed by a whale .", "storylet_id": "245469"}], [{"original_text": "We visited this famous historical church downtown today.", "album_id": "72157594529682304", "photo_flickr_id": "386606162", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "49094", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited this famous historical church downtown today .", "storylet_id": "245470"}], [{"original_text": "The ceiling was almost 4 stories high! It was incredible!", "album_id": "72157594529682304", "photo_flickr_id": "386606036", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "49094", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ceiling was almost 4 stories high ! it was incredible !", "storylet_id": "245471"}], [{"original_text": "The window paintings were so intricate and beautiful.", "album_id": "72157594529682304", "photo_flickr_id": "386606595", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "49094", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the window paintings were so intricate and beautiful .", "storylet_id": "245472"}], [{"original_text": "We sat there and just stared off into the distance at the art work.", "album_id": "72157594529682304", "photo_flickr_id": "386606725", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "49094", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we sat there and just stared off into the distance at the art work .", "storylet_id": "245473"}], [{"original_text": "This one was kind of freaky for obvious reasons.", "album_id": "72157594529682304", "photo_flickr_id": "386607469", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "49094", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this one was kind of freaky for obvious reasons .", "storylet_id": "245474"}], [{"original_text": "My friends and I formed a musical band last summer.", "album_id": "72157600048223185", "photo_flickr_id": "446634997", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "49095", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i formed a musical band last summer .", "storylet_id": "245475"}], [{"original_text": "Here I'm playing the keyboard, but I don't think I'm very good at it.", "album_id": "72157600048223185", "photo_flickr_id": "446636523", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "49095", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here i 'm playing the keyboard , but i do n't think i 'm very good at it .", "storylet_id": "245476"}], [{"original_text": "My friend, Eric, sings music and is good with playing the guitar.", "album_id": "72157600048223185", "photo_flickr_id": "446638085", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "49095", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend , [male] , sings music and is good with playing the guitar .", "storylet_id": "245477"}], [{"original_text": "We had to spend a lot of money on the equipment.", "album_id": "72157600048223185", "photo_flickr_id": "446632330", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "49095", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had to spend a lot of money on the equipment .", "storylet_id": "245478"}], [{"original_text": "We have to be careful around the wires when we walk, otherwise we'll trip and fall.", "album_id": "72157600048223185", "photo_flickr_id": "446634550", "setting": "first-2-pick-and-tell", "worker_id": "CL6TWQEZXV33QDX", "story_id": "49095", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we have to be careful around the wires when we walk , otherwise we 'll trip and fall .", "storylet_id": "245479"}], [{"original_text": "We acted like groupies before the band practiced their set.", "album_id": "72157600048223185", "photo_flickr_id": "446634997", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "49096", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we acted like groupies before the band practiced their set .", "storylet_id": "245480"}], [{"original_text": "They set everything up and got started.", "album_id": "72157600048223185", "photo_flickr_id": "446632330", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "49096", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they set everything up and got started .", "storylet_id": "245481"}], [{"original_text": "Moving and being showy is part of the process.", "album_id": "72157600048223185", "photo_flickr_id": "446641333", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "49096", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "moving and being showy is part of the process .", "storylet_id": "245482"}], [{"original_text": "They are concentrating on hitting the right notes.", "album_id": "72157600048223185", "photo_flickr_id": "446640285", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "49096", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they are concentrating on hitting the right notes .", "storylet_id": "245483"}], [{"original_text": "Everyone sets up their drums differently and she is no exception.", "album_id": "72157600048223185", "photo_flickr_id": "446640625", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "49096", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone sets up their drums differently and she is no exception .", "storylet_id": "245484"}], [{"original_text": "We got some pictures with the lead vocalist before the show.", "album_id": "72157600048223185", "photo_flickr_id": "446634997", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49097", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got some pictures with the lead vocalist before the show .", "storylet_id": "245485"}], [{"original_text": "We were at the front of the show.", "album_id": "72157600048223185", "photo_flickr_id": "446636523", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49097", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were at the front of the show .", "storylet_id": "245486"}], [{"original_text": "It was an amazing performance.", "album_id": "72157600048223185", "photo_flickr_id": "446638085", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49097", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was an amazing performance .", "storylet_id": "245487"}], [{"original_text": "I got some incredible pictures from where we were standing.", "album_id": "72157600048223185", "photo_flickr_id": "446632330", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49097", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i got some incredible pictures from where we were standing .", "storylet_id": "245488"}], [{"original_text": "Just adjusting his sound settings.", "album_id": "72157600048223185", "photo_flickr_id": "446634550", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49097", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "just adjusting his sound settings .", "storylet_id": "245489"}], [{"original_text": "The musicians take pictures with some fans before the performance.", "album_id": "72157600048223185", "photo_flickr_id": "446634997", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49098", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the musicians take pictures with some fans before the performance .", "storylet_id": "245490"}], [{"original_text": "All their equipment is ready and she is playing the keys.", "album_id": "72157600048223185", "photo_flickr_id": "446636523", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49098", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all their equipment is ready and she is playing the keys .", "storylet_id": "245491"}], [{"original_text": "The lead singer starts the song and the band plays together.", "album_id": "72157600048223185", "photo_flickr_id": "446638085", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49098", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lead singer starts the song and the band plays together .", "storylet_id": "245492"}], [{"original_text": "The whole band can be seen performing.", "album_id": "72157600048223185", "photo_flickr_id": "446632330", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49098", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole band can be seen performing .", "storylet_id": "245493"}], [{"original_text": "Later in the night, another guitarist can be seen.", "album_id": "72157600048223185", "photo_flickr_id": "446634550", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49098", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later in the night , another guitarist can be seen .", "storylet_id": "245494"}], [{"original_text": "We came to a friend's concert for support and took pictures before his performance.", "album_id": "72157600048223185", "photo_flickr_id": "446634997", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49099", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we came to a friend 's concert for support and took pictures before his performance .", "storylet_id": "245495"}], [{"original_text": "Our friend performed well on stage.", "album_id": "72157600048223185", "photo_flickr_id": "446632330", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49099", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our friend performed well on stage .", "storylet_id": "245496"}], [{"original_text": "He played a variety of instruments.", "album_id": "72157600048223185", "photo_flickr_id": "446641333", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49099", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he played a variety of instruments .", "storylet_id": "245497"}], [{"original_text": "His band also played well.", "album_id": "72157600048223185", "photo_flickr_id": "446640285", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49099", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his band also played well .", "storylet_id": "245498"}], [{"original_text": "There were some technical difficulties towards the end. ", "album_id": "72157600048223185", "photo_flickr_id": "446640625", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49099", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were some technical difficulties towards the end .", "storylet_id": "245499"}], [{"original_text": "Everyone enjoyed the office Christmas dinner.", "album_id": "72157600050438193", "photo_flickr_id": "447847363", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "49100", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone enjoyed the office christmas dinner .", "storylet_id": "245500"}], [{"original_text": "Some people like to try and make you think they are grouchy.", "album_id": "72157600050438193", "photo_flickr_id": "447847629", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "49100", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some people like to try and make you think they are grouchy .", "storylet_id": "245501"}], [{"original_text": "Most people want to make sure they get a smile in a picture.", "album_id": "72157600050438193", "photo_flickr_id": "447844640", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "49100", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most people want to make sure they get a smile in a picture .", "storylet_id": "245502"}], [{"original_text": "They are all sated and content from the food.", "album_id": "72157600050438193", "photo_flickr_id": "447845518", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "49100", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they are all sated and content from the food .", "storylet_id": "245503"}], [{"original_text": "All Christmas parties need songs!", "album_id": "72157600050438193", "photo_flickr_id": "447849525", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "49100", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all christmas parties need songs !", "storylet_id": "245504"}], [{"original_text": "Our family dinner this evening. Lots of wine flowing.", "album_id": "72157600050438193", "photo_flickr_id": "447843320", "setting": "first-2-pick-and-tell", "worker_id": "1ZIKRLDCL61B1XZ", "story_id": "49101", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family dinner this evening . lots of wine flowing .", "storylet_id": "245505"}], [{"original_text": "Here I am trying to figure out how to eat more without telling anyone.", "album_id": "72157600050438193", "photo_flickr_id": "447847629", "setting": "first-2-pick-and-tell", "worker_id": "1ZIKRLDCL61B1XZ", "story_id": "49101", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here i am trying to figure out how to eat more without telling anyone .", "storylet_id": "245506"}], [{"original_text": "My brothers are just awesome. I miss when they are not around.", "album_id": "72157600050438193", "photo_flickr_id": "447844640", "setting": "first-2-pick-and-tell", "worker_id": "1ZIKRLDCL61B1XZ", "story_id": "49101", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brothers are just awesome . i miss when they are not around .", "storylet_id": "245507"}], [{"original_text": "Here is our new Christmas poem we all created together.", "album_id": "72157600050438193", "photo_flickr_id": "447849525", "setting": "first-2-pick-and-tell", "worker_id": "1ZIKRLDCL61B1XZ", "story_id": "49101", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is our new christmas poem we all created together .", "storylet_id": "245508"}], [{"original_text": "This was an incredible party. Glad to see everyone again.", "album_id": "72157600050438193", "photo_flickr_id": "447844892", "setting": "first-2-pick-and-tell", "worker_id": "1ZIKRLDCL61B1XZ", "story_id": "49101", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was an incredible party . glad to see everyone again .", "storylet_id": "245509"}], [{"original_text": "The friends were having a party.", "album_id": "72157600050438193", "photo_flickr_id": "447847363", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49102", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends were having a party .", "storylet_id": "245510"}], [{"original_text": "There was good at the party.", "album_id": "72157600050438193", "photo_flickr_id": "447847629", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49102", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was good at the party .", "storylet_id": "245511"}], [{"original_text": "The friends took pictures.", "album_id": "72157600050438193", "photo_flickr_id": "447844640", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49102", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the friends took pictures .", "storylet_id": "245512"}], [{"original_text": "There were a lot of drinks.", "album_id": "72157600050438193", "photo_flickr_id": "447845518", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49102", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of drinks .", "storylet_id": "245513"}], [{"original_text": "They even had carols. ", "album_id": "72157600050438193", "photo_flickr_id": "447849525", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49102", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even had carols .", "storylet_id": "245514"}], [{"original_text": "Just a get together - everyone's so happy.", "album_id": "72157600050438193", "photo_flickr_id": "447847363", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49103", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "just a get together - everyone 's so happy .", "storylet_id": "245515"}], [{"original_text": "Some more than others.", "album_id": "72157600050438193", "photo_flickr_id": "447847629", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49103", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some more than others .", "storylet_id": "245516"}], [{"original_text": "We're all photogenic people.", "album_id": "72157600050438193", "photo_flickr_id": "447844640", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49103", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we 're all photogenic people .", "storylet_id": "245517"}], [{"original_text": "Candid shot.", "album_id": "72157600050438193", "photo_flickr_id": "447845518", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49103", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "candid shot .", "storylet_id": "245518"}], [{"original_text": "We liked to sing.", "album_id": "72157600050438193", "photo_flickr_id": "447849525", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49103", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we liked to sing .", "storylet_id": "245519"}], [{"original_text": "All these wonderful faces coming together makes me smile.", "album_id": "72157600050438193", "photo_flickr_id": "447843320", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49104", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all these wonderful faces coming together makes me smile .", "storylet_id": "245520"}], [{"original_text": "Time for someone to try smiling!", "album_id": "72157600050438193", "photo_flickr_id": "447847629", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49104", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "time for someone to try smiling !", "storylet_id": "245521"}], [{"original_text": "These two are always cracking us up.", "album_id": "72157600050438193", "photo_flickr_id": "447844640", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49104", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these two are always cracking us up .", "storylet_id": "245522"}], [{"original_text": "Our own little take on a classic carol.", "album_id": "72157600050438193", "photo_flickr_id": "447849525", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49104", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our own little take on a classic carol .", "storylet_id": "245523"}], [{"original_text": "He somehow ends up looking rather thirsty.", "album_id": "72157600050438193", "photo_flickr_id": "447844892", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49104", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he somehow ends up looking rather thirsty .", "storylet_id": "245524"}], [{"original_text": "I sat at the table waiting for everyone to finish making the food for me.", "album_id": "72157600057236853", "photo_flickr_id": "451560498", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49105", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i sat at the table waiting for everyone to finish making the food for me .", "storylet_id": "245525"}], [{"original_text": "I had my friend come and light some candles.", "album_id": "72157600057236853", "photo_flickr_id": "451572663", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49105", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had my friend come and light some candles .", "storylet_id": "245526"}], [{"original_text": "They also made me some drinks.", "album_id": "72157600057236853", "photo_flickr_id": "451542217", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49105", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also made me some drinks .", "storylet_id": "245527"}], [{"original_text": "I did some reading while I waited.", "album_id": "72157600057236853", "photo_flickr_id": "451525434", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49105", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i did some reading while i waited .", "storylet_id": "245528"}], [{"original_text": "I was starving when they finally brought the food.", "album_id": "72157600057236853", "photo_flickr_id": "451537633", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49105", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was starving when they finally brought the food .", "storylet_id": "245529"}], [{"original_text": "It is dinnertime at my house. ", "album_id": "72157600057236853", "photo_flickr_id": "451560498", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "49106", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is dinnertime at my house .", "storylet_id": "245530"}], [{"original_text": "We have some chicken.", "album_id": "72157600057236853", "photo_flickr_id": "451537633", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "49106", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we have some chicken .", "storylet_id": "245531"}], [{"original_text": "There's some wine.", "album_id": "72157600057236853", "photo_flickr_id": "451522124", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "49106", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there 's some wine .", "storylet_id": "245532"}], [{"original_text": "There's even a great dessert. Fresh strawberries and cake taste so good.", "album_id": "72157600057236853", "photo_flickr_id": "451502114", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "49106", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there 's even a great dessert . fresh strawberries and cake taste so good .", "storylet_id": "245533"}], [{"original_text": "Dinner at my house is delicious!", "album_id": "72157600057236853", "photo_flickr_id": "451513506", "setting": "first-2-pick-and-tell", "worker_id": "FQC6O7YVZR9S2JE", "story_id": "49106", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dinner at my house is delicious !", "storylet_id": "245534"}], [{"original_text": "My brother enjoying dinner at Mom's house. ", "album_id": "72157600057236853", "photo_flickr_id": "451560498", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49107", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brother enjoying dinner at mom 's house .", "storylet_id": "245535"}], [{"original_text": "My sister is not shy when it comes to good food. Save some for me please.", "album_id": "72157600057236853", "photo_flickr_id": "451537633", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49107", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my sister is not shy when it comes to good food . save some for me please .", "storylet_id": "245536"}], [{"original_text": "My Dad with a bottle of homemade red wine. Red wine makes any meal taste better. ", "album_id": "72157600057236853", "photo_flickr_id": "451522124", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49107", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my dad with a bottle of homemade red wine . red wine makes any meal taste better .", "storylet_id": "245537"}], [{"original_text": "After dinner we had fresh cut strawberries with pound cake.", "album_id": "72157600057236853", "photo_flickr_id": "451502114", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49107", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after dinner we had fresh cut strawberries with pound cake .", "storylet_id": "245538"}], [{"original_text": "It was nice to see my brother again. He can definitely put away some food.", "album_id": "72157600057236853", "photo_flickr_id": "451513506", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49107", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was nice to see my brother again . he can definitely put away some food .", "storylet_id": "245539"}], [{"original_text": "The dinner banquet is starting off with the first guest. He waits his chance to eat.", "album_id": "72157600057236853", "photo_flickr_id": "451560498", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49108", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dinner banquet is starting off with the first guest . he waits his chance to eat .", "storylet_id": "245540"}], [{"original_text": "Another eager gets takes a piece of meat to finally eat.", "album_id": "72157600057236853", "photo_flickr_id": "451537633", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49108", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "another eager gets takes a piece of meat to finally eat .", "storylet_id": "245541"}], [{"original_text": "The man looks at one of the drinks that they will consume.", "album_id": "72157600057236853", "photo_flickr_id": "451522124", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49108", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man looks at one of the drinks that they will consume .", "storylet_id": "245542"}], [{"original_text": "The desert is all ready to eat. There are strawberries.", "album_id": "72157600057236853", "photo_flickr_id": "451502114", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49108", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the desert is all ready to eat . there are strawberries .", "storylet_id": "245543"}], [{"original_text": "Finally, he gets a chance to partake in the meal.", "album_id": "72157600057236853", "photo_flickr_id": "451513506", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49108", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , he gets a chance to partake in the meal .", "storylet_id": "245544"}], [{"original_text": "It was my son's birthday and prepared a feast for him.", "album_id": "72157600057236853", "photo_flickr_id": "451560498", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49109", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was my son 's birthday and prepared a feast for him .", "storylet_id": "245545"}], [{"original_text": "We performed a Jewish prayer and ritual before we started eating.", "album_id": "72157600057236853", "photo_flickr_id": "451572663", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49109", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we performed a jewish prayer and ritual before we started eating .", "storylet_id": "245546"}], [{"original_text": "We blessed the food with a prayer we read out loud.", "album_id": "72157600057236853", "photo_flickr_id": "451542217", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49109", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we blessed the food with a prayer we read out loud .", "storylet_id": "245547"}], [{"original_text": "The prayer was several pages.", "album_id": "72157600057236853", "photo_flickr_id": "451525434", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49109", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the prayer was several pages .", "storylet_id": "245548"}], [{"original_text": "We then started to eat the food. ", "album_id": "72157600057236853", "photo_flickr_id": "451537633", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49109", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we then started to eat the food .", "storylet_id": "245549"}], [{"original_text": "We all went camping last night.", "album_id": "72157600068572282", "photo_flickr_id": "456292041", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49110", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all went camping last night .", "storylet_id": "245550"}], [{"original_text": "We made some food while we were there.", "album_id": "72157600068572282", "photo_flickr_id": "456292263", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49110", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made some food while we were there .", "storylet_id": "245551"}], [{"original_text": "At night we stayed in our tent.", "album_id": "72157600068572282", "photo_flickr_id": "456278598", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49110", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at night we stayed in our tent .", "storylet_id": "245552"}], [{"original_text": "In the morning we had to clean up.", "album_id": "72157600068572282", "photo_flickr_id": "456292789", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49110", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the morning we had to clean up .", "storylet_id": "245553"}], [{"original_text": "It took a while.", "album_id": "72157600068572282", "photo_flickr_id": "456279208", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49110", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it took a while .", "storylet_id": "245554"}], [{"original_text": "Reading a magazine in his tent.", "album_id": "72157600068572282", "photo_flickr_id": "456282560", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49111", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "reading a magazine in his tent .", "storylet_id": "245555"}], [{"original_text": "Waiting for his girlfriend to arrive.", "album_id": "72157600068572282", "photo_flickr_id": "456297847", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49111", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "waiting for his girlfriend to arrive .", "storylet_id": "245556"}], [{"original_text": "They are ready to go on a motorcycle ride.", "album_id": "72157600068572282", "photo_flickr_id": "456281880", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49111", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they are ready to go on a motorcycle ride .", "storylet_id": "245557"}], [{"original_text": "Having fun with his girlfriend.", "album_id": "72157600068572282", "photo_flickr_id": "456282330", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49111", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "having fun with his girlfriend .", "storylet_id": "245558"}], [{"original_text": "Listening to jokes while camping.", "album_id": "72157600068572282", "photo_flickr_id": "456278598", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49111", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "listening to jokes while camping .", "storylet_id": "245559"}], [{"original_text": "The friends took a picture outside of the tent. They were the first to get there.", "album_id": "72157600068572282", "photo_flickr_id": "456292041", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49112", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends took a picture outside of the tent . they were the first to get there .", "storylet_id": "245560"}], [{"original_text": "The girl was cooking some food.", "album_id": "72157600068572282", "photo_flickr_id": "456292263", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49112", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girl was cooking some food .", "storylet_id": "245561"}], [{"original_text": "The three lazily watched.", "album_id": "72157600068572282", "photo_flickr_id": "456278598", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49112", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the three lazily watched .", "storylet_id": "245562"}], [{"original_text": "There other friend showed up the next day.", "album_id": "72157600068572282", "photo_flickr_id": "456292789", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49112", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there other friend showed up the next day .", "storylet_id": "245563"}], [{"original_text": "She fanned the flames of te fire with a magazine.", "album_id": "72157600068572282", "photo_flickr_id": "456279208", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49112", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she fanned the flames of te fire with a magazine .", "storylet_id": "245564"}], [{"original_text": "We needed a couple distractions on our trip out.", "album_id": "72157600068572282", "photo_flickr_id": "456282560", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49113", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we needed a couple distractions on our trip out .", "storylet_id": "245565"}], [{"original_text": "The motorcycle we rode out on.", "album_id": "72157600068572282", "photo_flickr_id": "456297847", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49113", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the motorcycle we rode out on .", "storylet_id": "245566"}], [{"original_text": "Happy couple!", "album_id": "72157600068572282", "photo_flickr_id": "456281880", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49113", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "happy couple !", "storylet_id": "245567"}], [{"original_text": "Another happy couple!", "album_id": "72157600068572282", "photo_flickr_id": "456282330", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49113", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another happy couple !", "storylet_id": "245568"}], [{"original_text": "Night time - bed came soon after.", "album_id": "72157600068572282", "photo_flickr_id": "456278598", "setting": "last-3-pick-old-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49113", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "night time - bed came soon after .", "storylet_id": "245569"}], [{"original_text": "It was finally the weekend and the group of friends went camping.", "album_id": "72157600068572282", "photo_flickr_id": "456292041", "setting": "last-3-pick-old-and-tell", "worker_id": "KX64G7YE3MAADP9", "story_id": "49114", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was finally the weekend and the group of friends went camping .", "storylet_id": "245570"}], [{"original_text": "One of their favorite camping activities was grilling food on an open fire.", "album_id": "72157600068572282", "photo_flickr_id": "456292263", "setting": "last-3-pick-old-and-tell", "worker_id": "KX64G7YE3MAADP9", "story_id": "49114", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of their favorite camping activities was grilling food on an open fire .", "storylet_id": "245571"}], [{"original_text": "The friends also loved to simply sit around and talk, forgetting about the normal routines of suburbia.", "album_id": "72157600068572282", "photo_flickr_id": "456278598", "setting": "last-3-pick-old-and-tell", "worker_id": "KX64G7YE3MAADP9", "story_id": "49114", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the friends also loved to simply sit around and talk , forgetting about the normal routines of suburbia .", "storylet_id": "245572"}], [{"original_text": "At one point, they ran out of fuel for the fire and found a useless magazine they could burn.", "album_id": "72157600068572282", "photo_flickr_id": "456292789", "setting": "last-3-pick-old-and-tell", "worker_id": "KX64G7YE3MAADP9", "story_id": "49114", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at one point , they ran out of fuel for the fire and found a useless magazine they could burn .", "storylet_id": "245573"}], [{"original_text": "However, one of the male friends saw the magazine cover and thought twice. He thought he could utilize the magazine for other purposes.", "album_id": "72157600068572282", "photo_flickr_id": "456279208", "setting": "last-3-pick-old-and-tell", "worker_id": "KX64G7YE3MAADP9", "story_id": "49114", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , one of the male friends saw the magazine cover and thought twice . he thought he could utilize the magazine for other purposes .", "storylet_id": "245574"}], [{"original_text": "When everyone arrived we all sat around the table.", "album_id": "72157602018934338", "photo_flickr_id": "1384879037", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49115", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when everyone arrived we all sat around the table .", "storylet_id": "245575"}], [{"original_text": "Everyone was very hungry.", "album_id": "72157602018934338", "photo_flickr_id": "1384869603", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49115", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was very hungry .", "storylet_id": "245576"}], [{"original_text": "We also had a kid that was hungry.", "album_id": "72157602018934338", "photo_flickr_id": "1384859697", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49115", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also had a kid that was hungry .", "storylet_id": "245577"}], [{"original_text": "We served the food.", "album_id": "72157602018934338", "photo_flickr_id": "1385710798", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49115", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we served the food .", "storylet_id": "245578"}], [{"original_text": "Everyone really enjoyed it.", "album_id": "72157602018934338", "photo_flickr_id": "1385700560", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49115", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone really enjoyed it .", "storylet_id": "245579"}], [{"original_text": "We had to join up several tables to fit the family.", "album_id": "72157602018934338", "photo_flickr_id": "1385788852", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49116", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had to join up several tables to fit the family .", "storylet_id": "245580"}], [{"original_text": "We all said grace before eating.", "album_id": "72157602018934338", "photo_flickr_id": "1384879037", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49116", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all said grace before eating .", "storylet_id": "245581"}], [{"original_text": "The food was great, even the picky kids loved it.", "album_id": "72157602018934338", "photo_flickr_id": "1385710798", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49116", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food was great , even the picky kids loved it .", "storylet_id": "245582"}], [{"original_text": "Dad sat at the head of the table as usual.", "album_id": "72157602018934338", "photo_flickr_id": "1385700560", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49116", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dad sat at the head of the table as usual .", "storylet_id": "245583"}], [{"original_text": "At the end of the meal, we all sat at the table sharing memories.", "album_id": "72157602018934338", "photo_flickr_id": "1385667730", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49116", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the meal , we all sat at the table sharing memories .", "storylet_id": "245584"}], [{"original_text": "Setting the tables nice and neat for the party.", "album_id": "72157602018934338", "photo_flickr_id": "1385788852", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49117", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "setting the tables nice and neat for the party .", "storylet_id": "245585"}], [{"original_text": "So wonderful that everyone could make it", "album_id": "72157602018934338", "photo_flickr_id": "1384879037", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49117", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so wonderful that everyone could make it", "storylet_id": "245586"}], [{"original_text": "Little one is finally getting a handle on feeding himself.", "album_id": "72157602018934338", "photo_flickr_id": "1385710798", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49117", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "little one is finally getting a handle on feeding himself .", "storylet_id": "245587"}], [{"original_text": "This family encourages helping yourself!", "album_id": "72157602018934338", "photo_flickr_id": "1385700560", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49117", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this family encourages helping yourself !", "storylet_id": "245588"}], [{"original_text": "After dinner ruminations with the family. ", "album_id": "72157602018934338", "photo_flickr_id": "1385667730", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49117", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after dinner ruminations with the family .", "storylet_id": "245589"}], [{"original_text": "The adults sit eagerly awaiting the meal to come.", "album_id": "72157602018934338", "photo_flickr_id": "1384879037", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49118", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the adults sit eagerly awaiting the meal to come .", "storylet_id": "245590"}], [{"original_text": "On the other side, the baby seems to be resting however there is noise.", "album_id": "72157602018934338", "photo_flickr_id": "1384869603", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49118", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on the other side , the baby seems to be resting however there is noise .", "storylet_id": "245591"}], [{"original_text": "The noise awakens the child and he wants to eat.", "album_id": "72157602018934338", "photo_flickr_id": "1384859697", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49118", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the noise awakens the child and he wants to eat .", "storylet_id": "245592"}], [{"original_text": "A boy looks on at the adult while eating his own meal.", "album_id": "72157602018934338", "photo_flickr_id": "1385710798", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49118", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a boy looks on at the adult while eating his own meal .", "storylet_id": "245593"}], [{"original_text": "At the other end of the table, the host serves food and everyones is happy.", "album_id": "72157602018934338", "photo_flickr_id": "1385700560", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49118", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the other end of the table , the host serves food and everyones is happy .", "storylet_id": "245594"}], [{"original_text": "Getting out whole extended family together for one meal is a big production!", "album_id": "72157602018934338", "photo_flickr_id": "1385788852", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PDS9ZYQ0GV9TX", "story_id": "49119", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting out whole extended family together for one meal is a big production !", "storylet_id": "245595"}], [{"original_text": "Everyone was ready for a great meal, with treats and delights from the diverse branches of our family.", "album_id": "72157602018934338", "photo_flickr_id": "1384879037", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PDS9ZYQ0GV9TX", "story_id": "49119", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was ready for a great meal , with treats and delights from the diverse branches of our family .", "storylet_id": "245596"}], [{"original_text": "Even the little kids found something yummy, although most were curious about why all these people were their family.", "album_id": "72157602018934338", "photo_flickr_id": "1385710798", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PDS9ZYQ0GV9TX", "story_id": "49119", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the little kids found something yummy , although most were curious about why all these people were their family .", "storylet_id": "245597"}], [{"original_text": "The adults told stories and re-lived old time, and soon even the children knew all these people well.", "album_id": "72157602018934338", "photo_flickr_id": "1385700560", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PDS9ZYQ0GV9TX", "story_id": "49119", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the adults told stories and re-lived old time , and soon even the children knew all these people well .", "storylet_id": "245598"}], [{"original_text": "By the end, it was, as is every dinner, a time to clean up, but also a time to relax and enjoy the mellowness of the end of a good meal.", "album_id": "72157602018934338", "photo_flickr_id": "1385667730", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PDS9ZYQ0GV9TX", "story_id": "49119", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end , it was , as is every dinner , a time to clean up , but also a time to relax and enjoy the mellowness of the end of a good meal .", "storylet_id": "245599"}], [{"original_text": "I went to my friend's party last night.", "album_id": "72157602403457113", "photo_flickr_id": "1560719769", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49120", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to my friend 's party last night .", "storylet_id": "245600"}], [{"original_text": "There was a lot of food there.", "album_id": "72157602403457113", "photo_flickr_id": "1561641852", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49120", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of food there .", "storylet_id": "245601"}], [{"original_text": "We sat on the balcony and talked for hours.", "album_id": "72157602403457113", "photo_flickr_id": "1561002829", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49120", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we sat on the balcony and talked for hours .", "storylet_id": "245602"}], [{"original_text": "We were very full.", "album_id": "72157602403457113", "photo_flickr_id": "1561048897", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49120", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were very full .", "storylet_id": "245603"}], [{"original_text": "We stayed there until the early morning hours.", "album_id": "72157602403457113", "photo_flickr_id": "1561958698", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49120", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we stayed there until the early morning hours .", "storylet_id": "245604"}], [{"original_text": "Jack's Fourth of July was kind of low key. ", "album_id": "72157602403457113", "photo_flickr_id": "1561641852", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "49121", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] 's fourth of july was kind of low key .", "storylet_id": "245605"}], [{"original_text": "That's not to say the kids didn't have a good time, they did. ", "album_id": "72157602403457113", "photo_flickr_id": "1560809449", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "49121", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that 's not to say the kids did n't have a good time , they did .", "storylet_id": "245606"}], [{"original_text": "And the adults had fun too, just chilling out. ", "album_id": "72157602403457113", "photo_flickr_id": "1561831958", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "49121", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the adults had fun too , just chilling out .", "storylet_id": "245607"}], [{"original_text": "Cammy and Rhonda just set up in two chairs and hardly moved the whole night. ", "album_id": "72157602403457113", "photo_flickr_id": "1561002829", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "49121", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cammy and [female] just set up in two chairs and hardly moved the whole night .", "storylet_id": "245608"}], [{"original_text": "Everyone had fun. Even when Billy flung some kind of weird red ball at me. ", "album_id": "72157602403457113", "photo_flickr_id": "1561126505", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "49121", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had fun . even when [male] flung some kind of weird red ball at me .", "storylet_id": "245609"}], [{"original_text": "The family gathered together for quality time.", "album_id": "72157602403457113", "photo_flickr_id": "1561641852", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "49122", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family gathered together for quality time .", "storylet_id": "245610"}], [{"original_text": "The children enjoyed out door activities.", "album_id": "72157602403457113", "photo_flickr_id": "1560809449", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "49122", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children enjoyed out door activities .", "storylet_id": "245611"}], [{"original_text": "The adults like to gather and watch the children", "album_id": "72157602403457113", "photo_flickr_id": "1561831958", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "49122", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the adults like to gather and watch the children", "storylet_id": "245612"}], [{"original_text": "Adults would reminisce over past times.", "album_id": "72157602403457113", "photo_flickr_id": "1561002829", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "49122", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "adults would reminisce over past times .", "storylet_id": "245613"}], [{"original_text": "They enjoyed making new memories.", "album_id": "72157602403457113", "photo_flickr_id": "1561126505", "setting": "last-3-pick-old-and-tell", "worker_id": "MML061RND04Z2S5", "story_id": "49122", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they enjoyed making new memories .", "storylet_id": "245614"}], [{"original_text": "Old and young enjoying dessert.", "album_id": "72157602403457113", "photo_flickr_id": "1560719769", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49123", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "old and young enjoying dessert .", "storylet_id": "245615"}], [{"original_text": "Birthday parties are always the best.", "album_id": "72157602403457113", "photo_flickr_id": "1561641852", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49123", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "birthday parties are always the best .", "storylet_id": "245616"}], [{"original_text": "Enjoying watching the children play.", "album_id": "72157602403457113", "photo_flickr_id": "1561002829", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49123", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "enjoying watching the children play .", "storylet_id": "245617"}], [{"original_text": "Everyone gathered for all the sweet treats!", "album_id": "72157602403457113", "photo_flickr_id": "1561048897", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49123", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone gathered for all the sweet treats !", "storylet_id": "245618"}], [{"original_text": "Too busy tucking in to smile for the camera!", "album_id": "72157602403457113", "photo_flickr_id": "1561958698", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49123", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "too busy tucking in to smile for the camera !", "storylet_id": "245619"}], [{"original_text": "My family and I got together for dinner.", "album_id": "72157602403457113", "photo_flickr_id": "1561641852", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49124", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family and i got together for dinner .", "storylet_id": "245620"}], [{"original_text": "The children lit fireworks and played.", "album_id": "72157602403457113", "photo_flickr_id": "1560809449", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49124", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children lit fireworks and played .", "storylet_id": "245621"}], [{"original_text": "The adults watched the children play.", "album_id": "72157602403457113", "photo_flickr_id": "1561831958", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49124", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the adults watched the children play .", "storylet_id": "245622"}], [{"original_text": "Some of us just sat and talked with a couple of drinks.", "album_id": "72157602403457113", "photo_flickr_id": "1561002829", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49124", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of us just sat and talked with a couple of drinks .", "storylet_id": "245623"}], [{"original_text": "We took a group picture at the end. ", "album_id": "72157602403457113", "photo_flickr_id": "1561126505", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49124", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took a group picture at the end .", "storylet_id": "245624"}], [{"original_text": "When the sun arose, I took a picture of this lake.", "album_id": "1085694", "photo_flickr_id": "50015993", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49125", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when the sun arose , i took a picture of this lake .", "storylet_id": "245625"}], [{"original_text": "My friends and I ventured to this spot to get more pictures.", "album_id": "1085694", "photo_flickr_id": "50016029", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49125", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friends and i ventured to this spot to get more pictures .", "storylet_id": "245626"}], [{"original_text": "Around noon, we visited the church to go to service.", "album_id": "1085694", "photo_flickr_id": "50016173", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49125", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "around noon , we visited the church to go to service .", "storylet_id": "245627"}], [{"original_text": "As a field trip, my ministry went to enjoy a waterfall.", "album_id": "1085694", "photo_flickr_id": "50016559", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49125", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as a field trip , my ministry went to enjoy a waterfall .", "storylet_id": "245628"}], [{"original_text": "Towards the end of the day, we went back to the nice hotel.", "album_id": "1085694", "photo_flickr_id": "50016644", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49125", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "towards the end of the day , we went back to the nice hotel .", "storylet_id": "245629"}], [{"original_text": "We crossed a river on the way to the church.", "album_id": "1085694", "photo_flickr_id": "50015993", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "49126", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we crossed a river on the way to the church .", "storylet_id": "245630"}], [{"original_text": "On the other side of the river was a gazebo.", "album_id": "1085694", "photo_flickr_id": "50016029", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "49126", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on the other side of the river was a gazebo .", "storylet_id": "245631"}], [{"original_text": "We could see the church from the gazebo area.", "album_id": "1085694", "photo_flickr_id": "50016058", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "49126", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we could see the church from the gazebo area .", "storylet_id": "245632"}], [{"original_text": "Getting closer to the church we had to go through an iron gate.", "album_id": "1085694", "photo_flickr_id": "50016117", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "49126", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "getting closer to the church we had to go through an iron gate .", "storylet_id": "245633"}], [{"original_text": "We made it to the church by 10:30.", "album_id": "1085694", "photo_flickr_id": "50016173", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "49126", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we made it to the church by 10:30 .", "storylet_id": "245634"}], [{"original_text": "I enjoyed looking at the blue lake.", "album_id": "1085694", "photo_flickr_id": "50015993", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "49127", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i enjoyed looking at the blue lake .", "storylet_id": "245635"}], [{"original_text": "I sat down in a gazebo watching the lake and enjoying the tranquility. ", "album_id": "1085694", "photo_flickr_id": "50016029", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "49127", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i sat down in a gazebo watching the lake and enjoying the tranquility .", "storylet_id": "245636"}], [{"original_text": "There is a grand church near the lake.", "album_id": "1085694", "photo_flickr_id": "50016173", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "49127", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is a grand church near the lake .", "storylet_id": "245637"}], [{"original_text": "A dam is located not too far away from the lake and the church.", "album_id": "1085694", "photo_flickr_id": "50016559", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "49127", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a dam is located not too far away from the lake and the church .", "storylet_id": "245638"}], [{"original_text": "The occupants of the castle-looking house are fortunate to live near the blue lake.", "album_id": "1085694", "photo_flickr_id": "50016644", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "49127", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the occupants of the castle-looking house are fortunate to live near the blue lake .", "storylet_id": "245639"}], [{"original_text": "A lovely calm lake, great scenery and wonderful to relax by.", "album_id": "1085694", "photo_flickr_id": "50015993", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49128", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a lovely calm lake , great scenery and wonderful to relax by .", "storylet_id": "245640"}], [{"original_text": "A monument telling of the great thing that happened here.", "album_id": "1085694", "photo_flickr_id": "50016029", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49128", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a monument telling of the great thing that happened here .", "storylet_id": "245641"}], [{"original_text": "A lovely clock tower in the distance, I'm sure it holds great history.", "album_id": "1085694", "photo_flickr_id": "50016058", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49128", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lovely clock tower in the distance , i 'm sure it holds great history .", "storylet_id": "245642"}], [{"original_text": "What a wonderful historic building behind the iron gate.", "album_id": "1085694", "photo_flickr_id": "50016117", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49128", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what a wonderful historic building behind the iron gate .", "storylet_id": "245643"}], [{"original_text": "Close up of the clock tower,I bet it could tell some secrets.", "album_id": "1085694", "photo_flickr_id": "50016173", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49128", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "close up of the clock tower , i bet it could tell some secrets .", "storylet_id": "245644"}], [{"original_text": "A man walked around the edge of the lake one day.", "album_id": "1085694", "photo_flickr_id": "50015993", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "49129", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a man walked around the edge of the lake one day .", "storylet_id": "245645"}], [{"original_text": "He arrived at the gazebo, and began setting up his instruments.", "album_id": "1085694", "photo_flickr_id": "50016029", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "49129", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he arrived at the gazebo , and began setting up his instruments .", "storylet_id": "245646"}], [{"original_text": "There was a college nearby.", "album_id": "1085694", "photo_flickr_id": "50016058", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "49129", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a college nearby .", "storylet_id": "245647"}], [{"original_text": "He ran over quickly to check the time, unsure when to begin his show.", "album_id": "1085694", "photo_flickr_id": "50016117", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "49129", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he ran over quickly to check the time , unsure when to begin his show .", "storylet_id": "245648"}], [{"original_text": "Checking the time, he headed back to the gazebo to begin his show.", "album_id": "1085694", "photo_flickr_id": "50016173", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "49129", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "checking the time , he headed back to the gazebo to begin his show .", "storylet_id": "245649"}], [{"original_text": "He was a huge Stevie Ray Vaughan fan. ", "album_id": "72157594370002393", "photo_flickr_id": "294201994", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49130", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he was a huge [male] [male] vaughan fan .", "storylet_id": "245650"}], [{"original_text": "Even though he grew up taking piano, he had taught himself to play guitar. ", "album_id": "72157594370002393", "photo_flickr_id": "294193970", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49130", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even though he grew up taking piano , he had taught himself to play guitar .", "storylet_id": "245651"}], [{"original_text": "He sounded like Stevie Ray. ", "album_id": "72157594370002393", "photo_flickr_id": "294199663", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49130", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he sounded like [male] [male] .", "storylet_id": "245652"}], [{"original_text": "He looked like Stevie Ray. ", "album_id": "72157594370002393", "photo_flickr_id": "294547782", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49130", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he looked like [male] [male] .", "storylet_id": "245653"}], [{"original_text": "He was so good some people were convinced he was Stevie Ray Vaughan's reincarnation. ", "album_id": "72157594370002393", "photo_flickr_id": "294550187", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49130", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was so good some people were convinced he was [male] [male] vaughan 's reincarnation .", "storylet_id": "245654"}], [{"original_text": "The crowd seemed nice, but I didn't know anyone there.", "album_id": "72157594370002393", "photo_flickr_id": "294257833", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "49131", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowd seemed nice , but i did n't know anyone there .", "storylet_id": "245655"}], [{"original_text": "Our first show was a house party for a coworker's friend.", "album_id": "72157594370002393", "photo_flickr_id": "294213302", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "49131", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our first show was a house party for a coworker 's friend .", "storylet_id": "245656"}], [{"original_text": "I was nervous, and told them so.", "album_id": "72157594370002393", "photo_flickr_id": "294215647", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "49131", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was nervous , and told them so .", "storylet_id": "245657"}], [{"original_text": "But when we started playing, all of the nerves faded away. ", "album_id": "72157594370002393", "photo_flickr_id": "294547782", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "49131", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but when we started playing , all of the nerves faded away .", "storylet_id": "245658"}], [{"original_text": "And I could tell the crowd was lost in the music too.", "album_id": "72157594370002393", "photo_flickr_id": "294181585", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "49131", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and i could tell the crowd was lost in the music too .", "storylet_id": "245659"}], [{"original_text": "The friends met up for drinks.", "album_id": "72157594370002393", "photo_flickr_id": "294257833", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49132", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends met up for drinks .", "storylet_id": "245660"}], [{"original_text": "It was a fun night out for everyone.", "album_id": "72157594370002393", "photo_flickr_id": "294213302", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49132", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a fun night out for everyone .", "storylet_id": "245661"}], [{"original_text": "The next morning everyone played instruments.", "album_id": "72157594370002393", "photo_flickr_id": "294215647", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49132", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next morning everyone played instruments .", "storylet_id": "245662"}], [{"original_text": "Ron had played the guitar since he was a kid.", "album_id": "72157594370002393", "photo_flickr_id": "294547782", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49132", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] had played the guitar since he was a kid .", "storylet_id": "245663"}], [{"original_text": "That night everyone got ready to go out and do the same thing again.", "album_id": "72157594370002393", "photo_flickr_id": "294181585", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49132", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that night everyone got ready to go out and do the same thing again .", "storylet_id": "245664"}], [{"original_text": "I went to a party last night.", "album_id": "72157594370002393", "photo_flickr_id": "294257833", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49133", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a party last night .", "storylet_id": "245665"}], [{"original_text": "All my friends were there.", "album_id": "72157594370002393", "photo_flickr_id": "294213302", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49133", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all my friends were there .", "storylet_id": "245666"}], [{"original_text": "We played games.", "album_id": "72157594370002393", "photo_flickr_id": "294215647", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49133", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we played games .", "storylet_id": "245667"}], [{"original_text": "One friend brought his guitar and played.", "album_id": "72157594370002393", "photo_flickr_id": "294547782", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49133", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one friend brought his guitar and played .", "storylet_id": "245668"}], [{"original_text": "We had so much fun together and we laughed all night..", "album_id": "72157594370002393", "photo_flickr_id": "294181585", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49133", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had so much fun together and we laughed all night..", "storylet_id": "245669"}], [{"original_text": "Here I am taking a break before my next set.", "album_id": "72157594370002393", "photo_flickr_id": "294201994", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49134", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here i am taking a break before my next set .", "storylet_id": "245670"}], [{"original_text": "Josie played the keyboard for awhile while I was gone.", "album_id": "72157594370002393", "photo_flickr_id": "294193970", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49134", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] played the keyboard for awhile while i was gone .", "storylet_id": "245671"}], [{"original_text": "But then I came back and awed everyone with my melancholy tunes.", "album_id": "72157594370002393", "photo_flickr_id": "294199663", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49134", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but then i came back and awed everyone with my melancholy tunes .", "storylet_id": "245672"}], [{"original_text": "Not a dry eye was left in the house as I played.", "album_id": "72157594370002393", "photo_flickr_id": "294547782", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49134", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "not a dry eye was left in the house as i played .", "storylet_id": "245673"}], [{"original_text": "My wife Sadie said it was like hearing inside of eternity.", "album_id": "72157594370002393", "photo_flickr_id": "294550187", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49134", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my wife [female] said it was like hearing inside of eternity .", "storylet_id": "245674"}], [{"original_text": "We headed into the mountains to tour the beautiful landscape.", "album_id": "72157600002596744", "photo_flickr_id": "422887509", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "49135", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we headed into the mountains to tour the beautiful landscape .", "storylet_id": "245675"}], [{"original_text": "It was absolutely amazing and breathtaking.", "album_id": "72157600002596744", "photo_flickr_id": "422888126", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "49135", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was absolutely amazing and breathtaking .", "storylet_id": "245676"}], [{"original_text": "There were rustic fences alongside the edge to act as guardrails.", "album_id": "72157600002596744", "photo_flickr_id": "422895371", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "49135", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were rustic fences alongside the edge to act as guardrails .", "storylet_id": "245677"}], [{"original_text": "We pulled the car over at one scenic overlook.", "album_id": "72157600002596744", "photo_flickr_id": "422899179", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "49135", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we pulled the car over at one scenic overlook .", "storylet_id": "245678"}], [{"original_text": "The waves crashing against the rocks were captivating.", "album_id": "72157600002596744", "photo_flickr_id": "422900503", "setting": "first-2-pick-and-tell", "worker_id": "2INZZN9T4JT444H", "story_id": "49135", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the waves crashing against the rocks were captivating .", "storylet_id": "245679"}], [{"original_text": "I decided to explore the beautiful coastline in California by taking a drive. ", "album_id": "72157600002596744", "photo_flickr_id": "422900036", "setting": "first-2-pick-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "49136", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to explore the beautiful coastline in location by taking a drive .", "storylet_id": "245680"}], [{"original_text": "After driving for 45 minutes I found a nice spot to pull over and enjoy the view. ", "album_id": "72157600002596744", "photo_flickr_id": "422898082", "setting": "first-2-pick-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "49136", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after driving for 45 minutes i found a nice spot to pull over and enjoy the view .", "storylet_id": "245681"}], [{"original_text": "I pulled over into the spot. I was the only one there!", "album_id": "72157600002596744", "photo_flickr_id": "422899179", "setting": "first-2-pick-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "49136", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i pulled over into the spot . i was the only one there !", "storylet_id": "245682"}], [{"original_text": "I looked out of the drivers side window and saw this beautiful view.", "album_id": "72157600002596744", "photo_flickr_id": "422887509", "setting": "first-2-pick-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "49136", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i looked out of the drivers side window and saw this beautiful view .", "storylet_id": "245683"}], [{"original_text": "I got out of the car and looked over the edge down over the rocky outcroppings and to the ocean below. ", "album_id": "72157600002596744", "photo_flickr_id": "422901031", "setting": "first-2-pick-and-tell", "worker_id": "2TKCETURODCRHVN", "story_id": "49136", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i got out of the car and looked over the edge down over the rocky outcroppings and to the ocean below .", "storylet_id": "245684"}], [{"original_text": "You could see for miles around.", "album_id": "72157600002596744", "photo_flickr_id": "422887509", "setting": "last-3-pick-old-and-tell", "worker_id": "KWRKBK4LA7P15VW", "story_id": "49137", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "you could see for miles around .", "storylet_id": "245685"}], [{"original_text": "Dust kicked up on the road by the cliff side.", "album_id": "72157600002596744", "photo_flickr_id": "422888126", "setting": "last-3-pick-old-and-tell", "worker_id": "KWRKBK4LA7P15VW", "story_id": "49137", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dust kicked up on the road by the cliff side .", "storylet_id": "245686"}], [{"original_text": "Lot's of dust blew up near the fence.", "album_id": "72157600002596744", "photo_flickr_id": "422895371", "setting": "last-3-pick-old-and-tell", "worker_id": "KWRKBK4LA7P15VW", "story_id": "49137", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lot 's of dust blew up near the fence .", "storylet_id": "245687"}], [{"original_text": "The car sat parked by itself next to the road.", "album_id": "72157600002596744", "photo_flickr_id": "422899179", "setting": "last-3-pick-old-and-tell", "worker_id": "KWRKBK4LA7P15VW", "story_id": "49137", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the car sat parked by itself next to the road .", "storylet_id": "245688"}], [{"original_text": "The water crashed against the cliffs.", "album_id": "72157600002596744", "photo_flickr_id": "422900503", "setting": "last-3-pick-old-and-tell", "worker_id": "KWRKBK4LA7P15VW", "story_id": "49137", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the water crashed against the cliffs .", "storylet_id": "245689"}], [{"original_text": "The scenery on the road is peaceful and quiet. ", "album_id": "72157600002596744", "photo_flickr_id": "422900036", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49138", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the scenery on the road is peaceful and quiet .", "storylet_id": "245690"}], [{"original_text": "The vehicle is preparing to stop for a break. ", "album_id": "72157600002596744", "photo_flickr_id": "422898082", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49138", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the vehicle is preparing to stop for a break .", "storylet_id": "245691"}], [{"original_text": "The driver stopped to take a picture of the scenery. ", "album_id": "72157600002596744", "photo_flickr_id": "422899179", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49138", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the driver stopped to take a picture of the scenery .", "storylet_id": "245692"}], [{"original_text": "This portion of the mountain is not as cloudy.", "album_id": "72157600002596744", "photo_flickr_id": "422887509", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49138", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this portion of the mountain is not as cloudy .", "storylet_id": "245693"}], [{"original_text": "The water is crashing against the rocks. ", "album_id": "72157600002596744", "photo_flickr_id": "422901031", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49138", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the water is crashing against the rocks .", "storylet_id": "245694"}], [{"original_text": "We wanted to find the perfect stop for a picture of the ocean.", "album_id": "72157600002596744", "photo_flickr_id": "422900036", "setting": "last-3-pick-old-and-tell", "worker_id": "N1IGQ2CKK7KUI9S", "story_id": "49139", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we wanted to find the perfect stop for a picture of the ocean .", "storylet_id": "245695"}], [{"original_text": "We realized we needed to get closer to the coast.", "album_id": "72157600002596744", "photo_flickr_id": "422898082", "setting": "last-3-pick-old-and-tell", "worker_id": "N1IGQ2CKK7KUI9S", "story_id": "49139", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we realized we needed to get closer to the coast .", "storylet_id": "245696"}], [{"original_text": "We found a great turn off that came close to the view we wanted.", "album_id": "72157600002596744", "photo_flickr_id": "422899179", "setting": "last-3-pick-old-and-tell", "worker_id": "N1IGQ2CKK7KUI9S", "story_id": "49139", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we found a great turn off that came close to the view we wanted .", "storylet_id": "245697"}], [{"original_text": "It had a great view of the landscape, but still did not include the ocean.", "album_id": "72157600002596744", "photo_flickr_id": "422887509", "setting": "last-3-pick-old-and-tell", "worker_id": "N1IGQ2CKK7KUI9S", "story_id": "49139", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it had a great view of the landscape , but still did not include the ocean .", "storylet_id": "245698"}], [{"original_text": "At last we found the perfect place to stop and got the picture we wanted.", "album_id": "72157600002596744", "photo_flickr_id": "422901031", "setting": "last-3-pick-old-and-tell", "worker_id": "N1IGQ2CKK7KUI9S", "story_id": "49139", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at last we found the perfect place to stop and got the picture we wanted .", "storylet_id": "245699"}], [{"original_text": "Today we did a lot of different things.", "album_id": "968378", "photo_flickr_id": "44250531", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "49140", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we did a lot of different things .", "storylet_id": "245700"}], [{"original_text": "We went an ate some food.", "album_id": "968378", "photo_flickr_id": "44250569", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "49140", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went an ate some food .", "storylet_id": "245701"}], [{"original_text": "Then we got out into the water.", "album_id": "968378", "photo_flickr_id": "44250643", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "49140", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we got out into the water .", "storylet_id": "245702"}], [{"original_text": "We decided to go ride bicycles.", "album_id": "968378", "photo_flickr_id": "44251536", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "49140", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we decided to go ride bicycles .", "storylet_id": "245703"}], [{"original_text": "It was a very active day.", "album_id": "968378", "photo_flickr_id": "44251775", "setting": "first-2-pick-and-tell", "worker_id": "2Q7PSLYRSI0PZ20", "story_id": "49140", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a very active day .", "storylet_id": "245704"}], [{"original_text": "I took my cat down to my boat with me.", "album_id": "968378", "photo_flickr_id": "44250551", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49141", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took my cat down to my boat with me .", "storylet_id": "245705"}], [{"original_text": "I invited a few of my friends to go with me.", "album_id": "968378", "photo_flickr_id": "44250569", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49141", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i invited a few of my friends to go with me .", "storylet_id": "245706"}], [{"original_text": "The sea was a little choppy.", "album_id": "968378", "photo_flickr_id": "44250590", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49141", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sea was a little choppy .", "storylet_id": "245707"}], [{"original_text": "The waves were foamy.", "album_id": "968378", "photo_flickr_id": "44250643", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49141", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the waves were foamy .", "storylet_id": "245708"}], [{"original_text": "It was a lot of fun.", "album_id": "968378", "photo_flickr_id": "44251231", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49141", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a lot of fun .", "storylet_id": "245709"}], [{"original_text": "The cat sat in the driveway looking sad.", "album_id": "968378", "photo_flickr_id": "44250531", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "49142", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cat sat in the driveway looking sad .", "storylet_id": "245710"}], [{"original_text": "The boys were happy to eat lunch at the local restaurant. ", "album_id": "968378", "photo_flickr_id": "44250569", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "49142", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boys were happy to eat lunch at the local restaurant .", "storylet_id": "245711"}], [{"original_text": "The ocean made small waves. ", "album_id": "968378", "photo_flickr_id": "44250643", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "49142", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ocean made small waves .", "storylet_id": "245712"}], [{"original_text": "The dirt bikes laid there in the dirt. ", "album_id": "968378", "photo_flickr_id": "44251536", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "49142", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dirt bikes laid there in the dirt .", "storylet_id": "245713"}], [{"original_text": "The boys took a photo after they ate lunch.", "album_id": "968378", "photo_flickr_id": "44251775", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "49142", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boys took a photo after they ate lunch .", "storylet_id": "245714"}], [{"original_text": "Cat begging for food on the sidewalk. ", "album_id": "968378", "photo_flickr_id": "44250531", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49143", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "cat begging for food on the sidewalk .", "storylet_id": "245715"}], [{"original_text": "Taking a quick breakfast before going out. ", "album_id": "968378", "photo_flickr_id": "44250569", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49143", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "taking a quick breakfast before going out .", "storylet_id": "245716"}], [{"original_text": "Going on a boat ride in the need by island. ", "album_id": "968378", "photo_flickr_id": "44250643", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49143", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "going on a boat ride in the need by island .", "storylet_id": "245717"}], [{"original_text": "Going mountain bike riding with family and friends. ", "album_id": "968378", "photo_flickr_id": "44251536", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49143", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "going mountain bike riding with family and friends .", "storylet_id": "245718"}], [{"original_text": "Quick lunch after going bike riding. ", "album_id": "968378", "photo_flickr_id": "44251775", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49143", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "quick lunch after going bike riding .", "storylet_id": "245719"}], [{"original_text": "Said goodbye to kitty today for a week. Will miss him.", "album_id": "968378", "photo_flickr_id": "44250531", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49144", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "said goodbye to kitty today for a week . [male] miss him .", "storylet_id": "245720"}], [{"original_text": "Getting a drink before we hit the beach.", "album_id": "968378", "photo_flickr_id": "44250569", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49144", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "getting a drink before we hit the beach .", "storylet_id": "245721"}], [{"original_text": "Look at the wave. No swimming today.", "album_id": "968378", "photo_flickr_id": "44250643", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49144", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at the wave . no swimming today .", "storylet_id": "245722"}], [{"original_text": "Heading down the trails for a bike ride. Going to be fun.", "album_id": "968378", "photo_flickr_id": "44251536", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49144", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "heading down the trails for a bike ride . going to be fun .", "storylet_id": "245723"}], [{"original_text": "Back in town for some much needed food with great friends.", "album_id": "968378", "photo_flickr_id": "44251775", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49144", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "back in town for some much needed food with great friends .", "storylet_id": "245724"}], [{"original_text": "The side walk looked so plain.", "album_id": "72157628974721157", "photo_flickr_id": "6739429279", "setting": "first-2-pick-and-tell", "worker_id": "OY0NQ8LTD1ZKHLS", "story_id": "49145", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the side walk looked so plain .", "storylet_id": "245725"}], [{"original_text": "We decided to plant some trees.", "album_id": "72157628974721157", "photo_flickr_id": "6739443471", "setting": "first-2-pick-and-tell", "worker_id": "OY0NQ8LTD1ZKHLS", "story_id": "49145", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided to plant some trees .", "storylet_id": "245726"}], [{"original_text": "After digging all day, we were finally ready.", "album_id": "72157628974721157", "photo_flickr_id": "6739431151", "setting": "first-2-pick-and-tell", "worker_id": "OY0NQ8LTD1ZKHLS", "story_id": "49145", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after digging all day , we were finally ready .", "storylet_id": "245727"}], [{"original_text": "Check out our tree.", "album_id": "72157628974721157", "photo_flickr_id": "6739438181", "setting": "first-2-pick-and-tell", "worker_id": "OY0NQ8LTD1ZKHLS", "story_id": "49145", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "check out our tree .", "storylet_id": "245728"}], [{"original_text": "A beautiful tree to represent our beautiful friendship.", "album_id": "72157628974721157", "photo_flickr_id": "6739440413", "setting": "first-2-pick-and-tell", "worker_id": "OY0NQ8LTD1ZKHLS", "story_id": "49145", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a beautiful tree to represent our beautiful friendship .", "storylet_id": "245729"}], [{"original_text": "Today was the big tree planting party. Here is a picture of before the event.", "album_id": "72157628974721157", "photo_flickr_id": "6739429279", "setting": "first-2-pick-and-tell", "worker_id": "CJHUYD9K7XOWOKN", "story_id": "49146", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the big tree planting party . here is a picture of before the event .", "storylet_id": "245730"}], [{"original_text": "The finished product, a hole. Now where is that tree??", "album_id": "72157628974721157", "photo_flickr_id": "6739431151", "setting": "first-2-pick-and-tell", "worker_id": "CJHUYD9K7XOWOKN", "story_id": "49146", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the finished product , a hole . now where is that tree ? ?", "storylet_id": "245731"}], [{"original_text": "There is tree? How could I misplace it? Silly me!", "album_id": "72157628974721157", "photo_flickr_id": "6739438181", "setting": "first-2-pick-and-tell", "worker_id": "CJHUYD9K7XOWOKN", "story_id": "49146", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is tree ? how could i misplace it ? silly me !", "storylet_id": "245732"}], [{"original_text": "Getting ready to do some serious work here. ", "album_id": "72157628974721157", "photo_flickr_id": "6739441963", "setting": "first-2-pick-and-tell", "worker_id": "CJHUYD9K7XOWOKN", "story_id": "49146", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "getting ready to do some serious work here .", "storylet_id": "245733"}], [{"original_text": "And the boots are put into action! As well as shovels, muscles, etc. ", "album_id": "72157628974721157", "photo_flickr_id": "6739443471", "setting": "first-2-pick-and-tell", "worker_id": "CJHUYD9K7XOWOKN", "story_id": "49146", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the boots are put into action ! as well as shovels , muscles , etc .", "storylet_id": "245734"}], [{"original_text": "Today, we went to help spruce up the town by planting small trees along the road.", "album_id": "72157628974721157", "photo_flickr_id": "6739429279", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJT9AH607DP16X", "story_id": "49147", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , we went to help spruce up the town by planting small trees along the road .", "storylet_id": "245735"}], [{"original_text": "We started digging holes on where we planned on planting the trees.", "album_id": "72157628974721157", "photo_flickr_id": "6739443471", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJT9AH607DP16X", "story_id": "49147", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started digging holes on where we planned on planting the trees .", "storylet_id": "245736"}], [{"original_text": "After the holes were dug, everyone stood back to admire their work.", "album_id": "72157628974721157", "photo_flickr_id": "6739431151", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJT9AH607DP16X", "story_id": "49147", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the holes were dug , everyone stood back to admire their work .", "storylet_id": "245737"}], [{"original_text": "The girls posed next to the new tree they helped plant.", "album_id": "72157628974721157", "photo_flickr_id": "6739438181", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJT9AH607DP16X", "story_id": "49147", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the girls posed next to the new tree they helped plant .", "storylet_id": "245738"}], [{"original_text": "Overall, the tree was firmly planted and ready to start growing tall.", "album_id": "72157628974721157", "photo_flickr_id": "6739440413", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJT9AH607DP16X", "story_id": "49147", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall , the tree was firmly planted and ready to start growing tall .", "storylet_id": "245739"}], [{"original_text": "Sarah and I decided to join the neighborhood Friends of Trees club.", "album_id": "72157628974721157", "photo_flickr_id": "6739429279", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49148", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and i decided to join the neighborhood friends of trees club .", "storylet_id": "245740"}], [{"original_text": "On a rainy day, we went out with the club and dug holes for trees.", "album_id": "72157628974721157", "photo_flickr_id": "6739443471", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49148", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on a rainy day , we went out with the club and dug holes for trees .", "storylet_id": "245741"}], [{"original_text": "It was a lot of work, as the holes had to be quite deep.", "album_id": "72157628974721157", "photo_flickr_id": "6739431151", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49148", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a lot of work , as the holes had to be quite deep .", "storylet_id": "245742"}], [{"original_text": "Planting our first tree was exciting! The club took our picture, as is their tradition.", "album_id": "72157628974721157", "photo_flickr_id": "6739438181", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49148", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "planting our first tree was exciting ! the club took our picture , as is their tradition .", "storylet_id": "245743"}], [{"original_text": "Whenever we see the tree we planted, we feel pretty excited!", "album_id": "72157628974721157", "photo_flickr_id": "6739440413", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49148", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "whenever we see the tree we planted , we feel pretty excited !", "storylet_id": "245744"}], [{"original_text": "I went to my volunteer day at Friends of Trees", "album_id": "72157628974721157", "photo_flickr_id": "6739429279", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "49149", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to my volunteer day at friends of trees", "storylet_id": "245745"}], [{"original_text": "Here is the hole we dug to plant a tree.", "album_id": "72157628974721157", "photo_flickr_id": "6739431151", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "49149", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is the hole we dug to plant a tree .", "storylet_id": "245746"}], [{"original_text": "Here's the tree we planted.", "album_id": "72157628974721157", "photo_flickr_id": "6739438181", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "49149", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's the tree we planted .", "storylet_id": "245747"}], [{"original_text": "I got kind of dirty but it was kind of cool.", "album_id": "72157628974721157", "photo_flickr_id": "6739441963", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "49149", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i got kind of dirty but it was kind of cool .", "storylet_id": "245748"}], [{"original_text": "Here is the team working on some more trees.", "album_id": "72157628974721157", "photo_flickr_id": "6739443471", "setting": "last-3-pick-old-and-tell", "worker_id": "74W1O44UXGEOU1K", "story_id": "49149", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is the team working on some more trees .", "storylet_id": "245749"}], [{"original_text": "The park was a great place to skate.", "album_id": "665897", "photo_flickr_id": "29420166", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "49150", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the park was a great place to skate .", "storylet_id": "245750"}], [{"original_text": "It was filled with many trees.", "album_id": "665897", "photo_flickr_id": "29420164", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "49150", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was filled with many trees .", "storylet_id": "245751"}], [{"original_text": "Skating amateurs performed stunts on steps.", "album_id": "665897", "photo_flickr_id": "29420169", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "49150", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "skating amateurs performed stunts on steps .", "storylet_id": "245752"}], [{"original_text": "The activity lasted into the evening.", "album_id": "665897", "photo_flickr_id": "29421851", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "49150", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the activity lasted into the evening .", "storylet_id": "245753"}], [{"original_text": "When the sky darkened, they left.", "album_id": "665897", "photo_flickr_id": "29418469", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "49150", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the sky darkened , they left .", "storylet_id": "245754"}], [{"original_text": "Hanging out with Abraham, getting some skate time in.", "album_id": "665897", "photo_flickr_id": "29420164", "setting": "first-2-pick-and-tell", "worker_id": "1WMAN0HXV3PONDX", "story_id": "49151", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hanging out with [male] , getting some skate time in .", "storylet_id": "245755"}], [{"original_text": "Hit an olie of a two step, just warming up.", "album_id": "665897", "photo_flickr_id": "29420165", "setting": "first-2-pick-and-tell", "worker_id": "1WMAN0HXV3PONDX", "story_id": "49151", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "hit an olie of a two step , just warming up .", "storylet_id": "245756"}], [{"original_text": "Abraham hit this sweet kickflip! It made for a great photo.", "album_id": "665897", "photo_flickr_id": "29420166", "setting": "first-2-pick-and-tell", "worker_id": "1WMAN0HXV3PONDX", "story_id": "49151", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] hit this sweet kickflip ! it made for a great photo .", "storylet_id": "245757"}], [{"original_text": "Manual up to a three step...", "album_id": "665897", "photo_flickr_id": "29421848", "setting": "first-2-pick-and-tell", "worker_id": "1WMAN0HXV3PONDX", "story_id": "49151", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "manual up to a three step ...", "storylet_id": "245758"}], [{"original_text": "into a frontside kickflip! My first time hitting this trick! I was super excited. ", "album_id": "665897", "photo_flickr_id": "29421850", "setting": "first-2-pick-and-tell", "worker_id": "1WMAN0HXV3PONDX", "story_id": "49151", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "into a frontside kickflip ! my first time hitting this trick ! i was super excited .", "storylet_id": "245759"}], [{"original_text": "I went to the skate park yesterday.", "album_id": "665897", "photo_flickr_id": "29420166", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49152", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the skate park yesterday .", "storylet_id": "245760"}], [{"original_text": "I met a few other people while I was there and they challenged me to some tricks.", "album_id": "665897", "photo_flickr_id": "29420164", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49152", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i met a few other people while i was there and they challenged me to some tricks .", "storylet_id": "245761"}], [{"original_text": "They did their tricks first.", "album_id": "665897", "photo_flickr_id": "29420169", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49152", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they did their tricks first .", "storylet_id": "245762"}], [{"original_text": "They were very good.", "album_id": "665897", "photo_flickr_id": "29421851", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49152", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were very good .", "storylet_id": "245763"}], [{"original_text": "I was unable to do tricks as well as they were and I lost.", "album_id": "665897", "photo_flickr_id": "29418469", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49152", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was unable to do tricks as well as they were and i lost .", "storylet_id": "245764"}], [{"original_text": "I was walking in the park and saw some boys riding their skateboards.", "album_id": "665897", "photo_flickr_id": "29420166", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49153", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was walking in the park and saw some boys riding their skateboards .", "storylet_id": "245765"}], [{"original_text": "They were practicing new tricks together.", "album_id": "665897", "photo_flickr_id": "29420164", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49153", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were practicing new tricks together .", "storylet_id": "245766"}], [{"original_text": "One rode his skateboard off the steps and flipped it midair! ", "album_id": "665897", "photo_flickr_id": "29420169", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49153", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one rode his skateboard off the steps and flipped it midair !", "storylet_id": "245767"}], [{"original_text": "They rode until the sun started going down.", "album_id": "665897", "photo_flickr_id": "29421851", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49153", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they rode until the sun started going down .", "storylet_id": "245768"}], [{"original_text": "After they left, I quietly daydreamed of myself being able to ride a skateboard too!", "album_id": "665897", "photo_flickr_id": "29418469", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49153", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after they left , i quietly daydreamed of myself being able to ride a skateboard too !", "storylet_id": "245769"}], [{"original_text": "My friend Tony likes to do skateboard tricks.", "album_id": "665897", "photo_flickr_id": "29420166", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49154", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend [male] likes to do skateboard tricks .", "storylet_id": "245770"}], [{"original_text": "One day we went to the park to take pictures.", "album_id": "665897", "photo_flickr_id": "29420164", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49154", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one day we went to the park to take pictures .", "storylet_id": "245771"}], [{"original_text": "Griffin jumped off a set of stairs in a spectacular form.", "album_id": "665897", "photo_flickr_id": "29420169", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49154", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] jumped off a set of stairs in a spectacular form .", "storylet_id": "245772"}], [{"original_text": "The sun shined down on the trees and made a nice scenery.", "album_id": "665897", "photo_flickr_id": "29421851", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49154", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sun shined down on the trees and made a nice scenery .", "storylet_id": "245773"}], [{"original_text": "We noticed there were palm trees everywhere as we left. ", "album_id": "665897", "photo_flickr_id": "29418469", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49154", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we noticed there were palm trees everywhere as we left .", "storylet_id": "245774"}], [{"original_text": "I took a trip with my camper in tow.", "album_id": "72057594061082572", "photo_flickr_id": "97030876", "setting": "first-2-pick-and-tell", "worker_id": "JJL0WPCMGGHBQ5Z", "story_id": "49155", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a trip with my camper in tow .", "storylet_id": "245775"}], [{"original_text": "My kid had a great time.", "album_id": "72057594061082572", "photo_flickr_id": "97031222", "setting": "first-2-pick-and-tell", "worker_id": "JJL0WPCMGGHBQ5Z", "story_id": "49155", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my kid had a great time .", "storylet_id": "245776"}], [{"original_text": "I took some pictures.", "album_id": "72057594061082572", "photo_flickr_id": "97030507", "setting": "first-2-pick-and-tell", "worker_id": "JJL0WPCMGGHBQ5Z", "story_id": "49155", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took some pictures .", "storylet_id": "245777"}], [{"original_text": "And then I took even more pictures.", "album_id": "72057594061082572", "photo_flickr_id": "97030771", "setting": "first-2-pick-and-tell", "worker_id": "JJL0WPCMGGHBQ5Z", "story_id": "49155", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and then i took even more pictures .", "storylet_id": "245778"}], [{"original_text": "Then we drove off.", "album_id": "72057594061082572", "photo_flickr_id": "97030985", "setting": "first-2-pick-and-tell", "worker_id": "JJL0WPCMGGHBQ5Z", "story_id": "49155", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we drove off .", "storylet_id": "245779"}], [{"original_text": "The family parked their Airstream trailer.", "album_id": "72057594061082572", "photo_flickr_id": "97030985", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "49156", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family parked their airstream trailer .", "storylet_id": "245780"}], [{"original_text": "Grandpa couldn't wait to start taking pictures.", "album_id": "72057594061082572", "photo_flickr_id": "97030507", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "49156", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandpa could n't wait to start taking pictures .", "storylet_id": "245781"}], [{"original_text": "The little girl just wanted to run!", "album_id": "72057594061082572", "photo_flickr_id": "97030642", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "49156", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the little girl just wanted to run !", "storylet_id": "245782"}], [{"original_text": "She had a lot of energy!", "album_id": "72057594061082572", "photo_flickr_id": "97031222", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "49156", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she had a lot of energy !", "storylet_id": "245783"}], [{"original_text": "Soon, her footprints could be seen everywhere.", "album_id": "72057594061082572", "photo_flickr_id": "97031323", "setting": "first-2-pick-and-tell", "worker_id": "X7BHXIIYVGRG8UK", "story_id": "49156", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "soon , her footprints could be seen everywhere .", "storylet_id": "245784"}], [{"original_text": "dan wanted to take his daughter to the desert ", "album_id": "72057594061082572", "photo_flickr_id": "97030876", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "49157", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dan wanted to take his daughter to the desert", "storylet_id": "245785"}], [{"original_text": "she had such a fun time going down the hills", "album_id": "72057594061082572", "photo_flickr_id": "97031222", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "49157", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had such a fun time going down the hills", "storylet_id": "245786"}], [{"original_text": "dan took lots and lots pictures", "album_id": "72057594061082572", "photo_flickr_id": "97030507", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "49157", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dan took lots and lots pictures", "storylet_id": "245787"}], [{"original_text": "he was loving the scenery around", "album_id": "72057594061082572", "photo_flickr_id": "97030771", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "49157", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was loving the scenery around", "storylet_id": "245788"}], [{"original_text": "and they headed back home ", "album_id": "72057594061082572", "photo_flickr_id": "97030985", "setting": "last-3-pick-old-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "49157", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they headed back home", "storylet_id": "245789"}], [{"original_text": "I took the family in my trailer for a year of adventure.", "album_id": "72057594061082572", "photo_flickr_id": "97030876", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49158", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took the family in my trailer for a year of adventure .", "storylet_id": "245790"}], [{"original_text": "We plan on driving all over the country to see what we can see.", "album_id": "72057594061082572", "photo_flickr_id": "97031222", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49158", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we plan on driving all over the country to see what we can see .", "storylet_id": "245791"}], [{"original_text": "I made sure to bring all of my camera equipment so that we can take plenty of pictures.", "album_id": "72057594061082572", "photo_flickr_id": "97030507", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49158", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i made sure to bring all of my camera equipment so that we can take plenty of pictures .", "storylet_id": "245792"}], [{"original_text": "It's going to be so much fun and I want to be sure to capture every moment.", "album_id": "72057594061082572", "photo_flickr_id": "97030771", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49158", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's going to be so much fun and i want to be sure to capture every moment .", "storylet_id": "245793"}], [{"original_text": "We are going to have a great time.", "album_id": "72057594061082572", "photo_flickr_id": "97030985", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49158", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we are going to have a great time .", "storylet_id": "245794"}], [{"original_text": "Bring the trailer to the mountains", "album_id": "72057594061082572", "photo_flickr_id": "97030985", "setting": "last-3-pick-old-and-tell", "worker_id": "6MBESC61J7LA10C", "story_id": "49159", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "bring the trailer to the mountains", "storylet_id": "245795"}], [{"original_text": "getting ready to take a picture", "album_id": "72057594061082572", "photo_flickr_id": "97030507", "setting": "last-3-pick-old-and-tell", "worker_id": "6MBESC61J7LA10C", "story_id": "49159", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "getting ready to take a picture", "storylet_id": "245796"}], [{"original_text": "My daughter running down a snowpacked slope", "album_id": "72057594061082572", "photo_flickr_id": "97030642", "setting": "last-3-pick-old-and-tell", "worker_id": "6MBESC61J7LA10C", "story_id": "49159", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my daughter running down a snowpacked slope", "storylet_id": "245797"}], [{"original_text": "my daughter having fun on the slope", "album_id": "72057594061082572", "photo_flickr_id": "97031222", "setting": "last-3-pick-old-and-tell", "worker_id": "6MBESC61J7LA10C", "story_id": "49159", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my daughter having fun on the slope", "storylet_id": "245798"}], [{"original_text": "The snow packed lanscape", "album_id": "72057594061082572", "photo_flickr_id": "97031323", "setting": "last-3-pick-old-and-tell", "worker_id": "6MBESC61J7LA10C", "story_id": "49159", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the snow packed lanscape", "storylet_id": "245799"}], [{"original_text": "This is the entrance to a wild life preserve in Washington. ", "album_id": "1462648", "photo_flickr_id": "67788205", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49160", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the entrance to a wild life preserve in location .", "storylet_id": "245800"}], [{"original_text": "Up on the bluffs you will find many animals and insects that are declining in numbers around the world. ", "album_id": "1462648", "photo_flickr_id": "67788280", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49160", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "up on the bluffs you will find many animals and insects that are declining in numbers around the world .", "storylet_id": "245801"}], [{"original_text": "This gathering of butterflies no longer takes place in a lot of locations like it use to. ", "album_id": "1462648", "photo_flickr_id": "68130501", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49160", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this gathering of butterflies no longer takes place in a lot of locations like it use to .", "storylet_id": "245802"}], [{"original_text": "This is a rare hawk that is going extinct very rapidly. ", "album_id": "1462648", "photo_flickr_id": "67773088", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49160", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a rare hawk that is going extinct very rapidly .", "storylet_id": "245803"}], [{"original_text": "This breed of Elk is starting to grow in numbers but not out of the woods quite yet. ", "album_id": "1462648", "photo_flickr_id": "68147906", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49160", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this breed of elk is starting to grow in numbers but not out of the woods quite yet .", "storylet_id": "245804"}], [{"original_text": "The wildlife is magnificent.", "album_id": "1462648", "photo_flickr_id": "67777579", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49161", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wildlife is magnificent .", "storylet_id": "245805"}], [{"original_text": "This bird is displayed in beauty.", "album_id": "1462648", "photo_flickr_id": "67797436", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49161", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this bird is displayed in beauty .", "storylet_id": "245806"}], [{"original_text": "There is so much diversity.", "album_id": "1462648", "photo_flickr_id": "68130501", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49161", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is so much diversity .", "storylet_id": "245807"}], [{"original_text": "Everything is beaming with life.", "album_id": "1462648", "photo_flickr_id": "68134056", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49161", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everything is beaming with life .", "storylet_id": "245808"}], [{"original_text": "The colors are everywhere from the bird to the butterfly.", "album_id": "1462648", "photo_flickr_id": "67777719", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49161", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the colors are everywhere from the bird to the butterfly .", "storylet_id": "245809"}], [{"original_text": "Nature is fascinating it.", "album_id": "1462648", "photo_flickr_id": "67788205", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "49162", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "nature is fascinating it .", "storylet_id": "245810"}], [{"original_text": "Even where things seem lifeless.", "album_id": "1462648", "photo_flickr_id": "67788280", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "49162", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even where things seem lifeless .", "storylet_id": "245811"}], [{"original_text": "There is an overabundance of creatures within.", "album_id": "1462648", "photo_flickr_id": "68130501", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "49162", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is an overabundance of creatures within .", "storylet_id": "245812"}], [{"original_text": "From birds of prey stalking the skys.", "album_id": "1462648", "photo_flickr_id": "67773088", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "49162", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "from birds of prey stalking the skys .", "storylet_id": "245813"}], [{"original_text": "To mammals grazing across the plains. ", "album_id": "1462648", "photo_flickr_id": "68147906", "setting": "last-3-pick-old-and-tell", "worker_id": "N8T49HHKVVAXEKH", "story_id": "49162", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to mammals grazing across the plains .", "storylet_id": "245814"}], [{"original_text": "We went for a walk in the woods.", "album_id": "1462648", "photo_flickr_id": "67788205", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "49163", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went for a walk in the woods .", "storylet_id": "245815"}], [{"original_text": "The country was rocky.", "album_id": "1462648", "photo_flickr_id": "67788280", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "49163", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the country was rocky .", "storylet_id": "245816"}], [{"original_text": "We looked at the mushrooms grow on the trees.", "album_id": "1462648", "photo_flickr_id": "68130501", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "49163", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we looked at the mushrooms grow on the trees .", "storylet_id": "245817"}], [{"original_text": "The wild life was unique.", "album_id": "1462648", "photo_flickr_id": "67773088", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "49163", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wild life was unique .", "storylet_id": "245818"}], [{"original_text": "We saw what looked like a reindeer. ", "album_id": "1462648", "photo_flickr_id": "68147906", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "49163", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we saw what looked like a reindeer .", "storylet_id": "245819"}], [{"original_text": "We took a walk through a bird park this afternoon.", "album_id": "1462648", "photo_flickr_id": "67777579", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "49164", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a walk through a bird park this afternoon .", "storylet_id": "245820"}], [{"original_text": "There were woodpeckers.", "album_id": "1462648", "photo_flickr_id": "67797436", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "49164", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were woodpeckers .", "storylet_id": "245821"}], [{"original_text": "We even saw many bird's nest around.", "album_id": "1462648", "photo_flickr_id": "68130501", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "49164", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even saw many bird 's nest around .", "storylet_id": "245822"}], [{"original_text": "The mountains were lively with water falls.", "album_id": "1462648", "photo_flickr_id": "68134056", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "49164", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the mountains were lively with water falls .", "storylet_id": "245823"}], [{"original_text": "We saw many cool looking insects like this buttlerfly.", "album_id": "1462648", "photo_flickr_id": "67777719", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "49164", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we saw many cool looking insects like this buttlerfly .", "storylet_id": "245824"}], [{"original_text": "The park was filled with beauty.", "album_id": "72057594127440513", "photo_flickr_id": "141640454", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "49165", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the park was filled with beauty .", "storylet_id": "245825"}], [{"original_text": "There was a stream beneath rocks.", "album_id": "72057594127440513", "photo_flickr_id": "141642631", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "49165", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a stream beneath rocks .", "storylet_id": "245826"}], [{"original_text": "And wooden structures that supported plants.", "album_id": "72057594127440513", "photo_flickr_id": "141640509", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "49165", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and wooden structures that supported plants .", "storylet_id": "245827"}], [{"original_text": "The two wondered how to spend the afternoon in such a serene place.", "album_id": "72057594127440513", "photo_flickr_id": "141640739", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "49165", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the two wondered how to spend the afternoon in such a serene place .", "storylet_id": "245828"}], [{"original_text": "They opted for a nap.", "album_id": "72057594127440513", "photo_flickr_id": "141642323", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "49165", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they opted for a nap .", "storylet_id": "245829"}], [{"original_text": "I went to the flower garden last week.", "album_id": "72057594127440513", "photo_flickr_id": "141640351", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49166", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the flower garden last week .", "storylet_id": "245830"}], [{"original_text": "They have a lot of beautiful plants there.", "album_id": "72057594127440513", "photo_flickr_id": "141640454", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49166", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they have a lot of beautiful plants there .", "storylet_id": "245831"}], [{"original_text": "I took some of them.", "album_id": "72057594127440513", "photo_flickr_id": "141640509", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49166", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took some of them .", "storylet_id": "245832"}], [{"original_text": "Nobody noticed they were missing.", "album_id": "72057594127440513", "photo_flickr_id": "141640548", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49166", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "nobody noticed they were missing .", "storylet_id": "245833"}], [{"original_text": "Afterward I went back home.", "album_id": "72057594127440513", "photo_flickr_id": "141640600", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49166", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward i went back home .", "storylet_id": "245834"}], [{"original_text": "Josh and Mike went to the Botanical Gardens.", "album_id": "72057594127440513", "photo_flickr_id": "141640454", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49167", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "josh and [male] went to the location location .", "storylet_id": "245835"}], [{"original_text": "There were beautiful waterways and trees.", "album_id": "72057594127440513", "photo_flickr_id": "141642631", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49167", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were beautiful waterways and trees .", "storylet_id": "245836"}], [{"original_text": "The moss hanging down caught Josh's attention.", "album_id": "72057594127440513", "photo_flickr_id": "141640509", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49167", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the moss hanging down caught josh 's attention .", "storylet_id": "245837"}], [{"original_text": "I think they have decided it is a good time to take a nap.", "album_id": "72057594127440513", "photo_flickr_id": "141640739", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49167", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i think they have decided it is a good time to take a nap .", "storylet_id": "245838"}], [{"original_text": "And I think they've found the perfect spot.", "album_id": "72057594127440513", "photo_flickr_id": "141642323", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49167", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and i think they 've found the perfect spot .", "storylet_id": "245839"}], [{"original_text": "Rick loved going to the lake. He just loved the scenery. It was beautiful and romantic.", "album_id": "72057594127440513", "photo_flickr_id": "141640454", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49168", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] loved going to the lake . he just loved the scenery . it was beautiful and romantic .", "storylet_id": "245840"}], [{"original_text": "He loved the beautiful trees, and the way the water in the lake flowed.", "album_id": "72057594127440513", "photo_flickr_id": "141642631", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49168", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he loved the beautiful trees , and the way the water in the lake flowed .", "storylet_id": "245841"}], [{"original_text": "He loved walking under the underpass and playing with the mistletoes that drooped from above over his head.", "album_id": "72057594127440513", "photo_flickr_id": "141640509", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49168", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he loved walking under the underpass and playing with the mistletoes that drooped from above over his head .", "storylet_id": "245842"}], [{"original_text": "He most of all loved going to the lake with his boyfriend Jake.", "album_id": "72057594127440513", "photo_flickr_id": "141640739", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49168", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he most of all loved going to the lake with his boyfriend [male] .", "storylet_id": "245843"}], [{"original_text": "Rick and Jake would spend hours at a time there. After they'd look at all the beautiful sights to see, they'd lay down in the grass and talk about their life together.", "album_id": "72057594127440513", "photo_flickr_id": "141642323", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49168", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] and [male] would spend hours at a time there . after they 'd look at all the beautiful sights to see , they 'd lay down in the grass and talk about their life together .", "storylet_id": "245844"}], [{"original_text": "The garden tour was cool. These flowers are so pretty.", "album_id": "72057594127440513", "photo_flickr_id": "141640351", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49169", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the garden tour was cool . these flowers are so pretty .", "storylet_id": "245845"}], [{"original_text": "This tree has moss growing on it. Looks creepy.", "album_id": "72057594127440513", "photo_flickr_id": "141640454", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49169", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this tree has moss growing on it . looks creepy .", "storylet_id": "245846"}], [{"original_text": "Dave is checking out the vine growing over the trellis.", "album_id": "72057594127440513", "photo_flickr_id": "141640509", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49169", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] is checking out the vine growing over the trellis .", "storylet_id": "245847"}], [{"original_text": "Oh that's a good look for you, Dave. You should keep that.", "album_id": "72057594127440513", "photo_flickr_id": "141640548", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49169", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "oh that 's a good look for you , [male] . you should keep that .", "storylet_id": "245848"}], [{"original_text": "The flowers are so pretty. Need them in my yard.", "album_id": "72057594127440513", "photo_flickr_id": "141640600", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49169", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the flowers are so pretty . need them in my yard .", "storylet_id": "245849"}], [{"original_text": "Our school went on a tour of a botanical garden.", "album_id": "72057594142632397", "photo_flickr_id": "151542256", "setting": "first-2-pick-and-tell", "worker_id": "LMMSCT5VI1D9IM8", "story_id": "49170", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our school went on a tour of a botanical garden .", "storylet_id": "245850"}], [{"original_text": "It had a few nice water features like this one.", "album_id": "72057594142632397", "photo_flickr_id": "151542261", "setting": "first-2-pick-and-tell", "worker_id": "LMMSCT5VI1D9IM8", "story_id": "49170", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it had a few nice water features like this one .", "storylet_id": "245851"}], [{"original_text": "Mostly though, it had lots of pretty flowers.", "album_id": "72057594142632397", "photo_flickr_id": "151559000", "setting": "first-2-pick-and-tell", "worker_id": "LMMSCT5VI1D9IM8", "story_id": "49170", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mostly though , it had lots of pretty flowers .", "storylet_id": "245852"}], [{"original_text": "I loved this colorful rose.", "album_id": "72057594142632397", "photo_flickr_id": "151558998", "setting": "first-2-pick-and-tell", "worker_id": "LMMSCT5VI1D9IM8", "story_id": "49170", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i loved this colorful rose .", "storylet_id": "245853"}], [{"original_text": "My favorite thing was the Koi pond. Such beautiful fish!", "album_id": "72057594142632397", "photo_flickr_id": "151555386", "setting": "first-2-pick-and-tell", "worker_id": "LMMSCT5VI1D9IM8", "story_id": "49170", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite thing was the location pond . such beautiful fish !", "storylet_id": "245854"}], [{"original_text": "Whenever I can, I try to take a walk in the afternoon.", "album_id": "72057594142632397", "photo_flickr_id": "151543707", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "49171", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "whenever i can , i try to take a walk in the afternoon .", "storylet_id": "245855"}], [{"original_text": "Today my first stop was the pond.", "album_id": "72057594142632397", "photo_flickr_id": "151555388", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "49171", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today my first stop was the pond .", "storylet_id": "245856"}], [{"original_text": "Where I had a light lunch.", "album_id": "72057594142632397", "photo_flickr_id": "151555386", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "49171", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "where i had a light lunch .", "storylet_id": "245857"}], [{"original_text": "Then found a sunny spot for a nap.", "album_id": "72057594142632397", "photo_flickr_id": "151543704", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "49171", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then found a sunny spot for a nap .", "storylet_id": "245858"}], [{"original_text": "Once I woke up, I found a refreshment for the walk home.", "album_id": "72057594142632397", "photo_flickr_id": "151542261", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "49171", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once i woke up , i found a refreshment for the walk home .", "storylet_id": "245859"}], [{"original_text": "Us and our close friends at a botanical garden. ", "album_id": "72057594142632397", "photo_flickr_id": "151542256", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49172", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "us and our close friends at a botanical garden .", "storylet_id": "245860"}], [{"original_text": "There was a beautiful waterfall that we could see up close. ", "album_id": "72057594142632397", "photo_flickr_id": "151542261", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49172", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a beautiful waterfall that we could see up close .", "storylet_id": "245861"}], [{"original_text": "Next we saw the flowers, this pink one was an all around favorite. ", "album_id": "72057594142632397", "photo_flickr_id": "151559000", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49172", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next we saw the flowers , this pink one was an all around favorite .", "storylet_id": "245862"}], [{"original_text": "This rose was also a close second favorite. ", "album_id": "72057594142632397", "photo_flickr_id": "151558998", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49172", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this rose was also a close second favorite .", "storylet_id": "245863"}], [{"original_text": "Lastly we watched the fish in the koi pond. ", "album_id": "72057594142632397", "photo_flickr_id": "151555386", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49172", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly we watched the fish in the koi pond .", "storylet_id": "245864"}], [{"original_text": "My class went on a trip to local park.", "album_id": "72057594142632397", "photo_flickr_id": "151542256", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49173", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my class went on a trip to local park .", "storylet_id": "245865"}], [{"original_text": "There, they had some small waterfalls.", "album_id": "72057594142632397", "photo_flickr_id": "151542261", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49173", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there , they had some small waterfalls .", "storylet_id": "245866"}], [{"original_text": "The flower we saw were exquisite.", "album_id": "72057594142632397", "photo_flickr_id": "151559000", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49173", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the flower we saw were exquisite .", "storylet_id": "245867"}], [{"original_text": "There were so many different color buds.", "album_id": "72057594142632397", "photo_flickr_id": "151558998", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49173", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were so many different color buds .", "storylet_id": "245868"}], [{"original_text": "We ended the day by a pond filled with goldfish.", "album_id": "72057594142632397", "photo_flickr_id": "151555386", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49173", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the day by a pond filled with goldfish .", "storylet_id": "245869"}], [{"original_text": "I love to go on nature walks.", "album_id": "72057594142632397", "photo_flickr_id": "151543707", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49174", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love to go on nature walks .", "storylet_id": "245870"}], [{"original_text": "There are beautiful lily pads in the pond behind my house.", "album_id": "72057594142632397", "photo_flickr_id": "151555388", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49174", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are beautiful lily pads in the pond behind my house .", "storylet_id": "245871"}], [{"original_text": "There are also colorful coi fish.", "album_id": "72057594142632397", "photo_flickr_id": "151555386", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49174", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are also colorful coi fish .", "storylet_id": "245872"}], [{"original_text": "The warm sun shines down on a fallen tree.", "album_id": "72057594142632397", "photo_flickr_id": "151543704", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49174", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the warm sun shines down on a fallen tree .", "storylet_id": "245873"}], [{"original_text": "The little waterfall reminds me how breath taking nature is.", "album_id": "72057594142632397", "photo_flickr_id": "151542261", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49174", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the little waterfall reminds me how breath taking nature is .", "storylet_id": "245874"}], [{"original_text": "Visiting a Chinese temple with our pet doe.", "album_id": "72157594310500030", "photo_flickr_id": "259449864", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49175", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visiting a chinese temple with our pet doe .", "storylet_id": "245875"}], [{"original_text": "He's tired but we still have a lot of places we haven't explored.", "album_id": "72157594310500030", "photo_flickr_id": "259451095", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49175", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he 's tired but we still have a lot of places we have n't explored .", "storylet_id": "245876"}], [{"original_text": "This is John Doe. Get it?", "album_id": "72157594310500030", "photo_flickr_id": "259444689", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49175", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is [male] doe . get it ?", "storylet_id": "245877"}], [{"original_text": "Beautiful temple. The red paint very vibrant.", "album_id": "72157594310500030", "photo_flickr_id": "259443675", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49175", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "beautiful temple . the red paint very vibrant .", "storylet_id": "245878"}], [{"original_text": "Beautiful lake. There were also some swans but I didn't take a pic of them.", "album_id": "72157594310500030", "photo_flickr_id": "259445143", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49175", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "beautiful lake . there were also some swans but i did n't take a pic of them .", "storylet_id": "245879"}], [{"original_text": "The first thing we did when we got off the train in Nara, Japan was to feed the deer in the park.", "album_id": "72157594310500030", "photo_flickr_id": "259477310", "setting": "first-2-pick-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "49176", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the first thing we did when we got off the train in location , location was to feed the deer in the park .", "storylet_id": "245880"}], [{"original_text": "They are used to humans so you can find plenty of them near the entrances to the temples as well.", "album_id": "72157594310500030", "photo_flickr_id": "259485813", "setting": "first-2-pick-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "49176", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are used to humans so you can find plenty of them near the entrances to the temples as well .", "storylet_id": "245881"}], [{"original_text": "It is hard to really show the scope of how large this particular temple was, but this is the exterior. ", "album_id": "72157594310500030", "photo_flickr_id": "259487065", "setting": "first-2-pick-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "49176", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is hard to really show the scope of how large this particular temple was , but this is the exterior .", "storylet_id": "245882"}], [{"original_text": "I really loved seeing this giant Buddha which had a very peaceful presence. ", "album_id": "72157594310500030", "photo_flickr_id": "259491943", "setting": "first-2-pick-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "49176", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i really loved seeing this giant buddha which had a very peaceful presence .", "storylet_id": "245883"}], [{"original_text": "Inside the temple you could attempt to put yourself through this support post are said to be blessed with enlightenment in the next life. ", "album_id": "72157594310500030", "photo_flickr_id": "259475783", "setting": "first-2-pick-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "49176", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "inside the temple you could attempt to put yourself through this support post are said to be blessed with enlightenment in the next life .", "storylet_id": "245884"}], [{"original_text": "We met this deer while we were touring.", "album_id": "72157594310500030", "photo_flickr_id": "259477310", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "49177", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we met this deer while we were touring .", "storylet_id": "245885"}], [{"original_text": "We followed him along for a while.", "album_id": "72157594310500030", "photo_flickr_id": "259485813", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "49177", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we followed him along for a while .", "storylet_id": "245886"}], [{"original_text": "He actually took us to some cool places.", "album_id": "72157594310500030", "photo_flickr_id": "259487065", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "49177", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he actually took us to some cool places .", "storylet_id": "245887"}], [{"original_text": "We went inside to look at things.", "album_id": "72157594310500030", "photo_flickr_id": "259491943", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "49177", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went inside to look at things .", "storylet_id": "245888"}], [{"original_text": "The deer actually stayed there like he was waiting for us!", "album_id": "72157594310500030", "photo_flickr_id": "259475783", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "49177", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the deer actually stayed there like he was waiting for us !", "storylet_id": "245889"}], [{"original_text": "A deer follows a man on the sidewalk.", "album_id": "72157594310500030", "photo_flickr_id": "259449864", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "49178", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a deer follows a man on the sidewalk .", "storylet_id": "245890"}], [{"original_text": "The man pets the deers mother.", "album_id": "72157594310500030", "photo_flickr_id": "259451095", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "49178", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man pets the deers mother .", "storylet_id": "245891"}], [{"original_text": "The deer gets close to the camera and the man snaps a picture.", "album_id": "72157594310500030", "photo_flickr_id": "259444689", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "49178", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the deer gets close to the camera and the man snaps a picture .", "storylet_id": "245892"}], [{"original_text": "The man then goes to an Asian temple of some kind.", "album_id": "72157594310500030", "photo_flickr_id": "259443675", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "49178", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man then goes to an asian temple of some kind .", "storylet_id": "245893"}], [{"original_text": "He then relaxes on a mini island.", "album_id": "72157594310500030", "photo_flickr_id": "259445143", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "49178", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he then relaxes on a mini island .", "storylet_id": "245894"}], [{"original_text": "We visited China and got to see animals along the way.", "album_id": "72157594310500030", "photo_flickr_id": "259477310", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49179", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited location and got to see animals along the way .", "storylet_id": "245895"}], [{"original_text": "There was even a deer that looked comfortable with people.", "album_id": "72157594310500030", "photo_flickr_id": "259485813", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49179", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was even a deer that looked comfortable with people .", "storylet_id": "245896"}], [{"original_text": "The architecture is very beautiful.", "album_id": "72157594310500030", "photo_flickr_id": "259487065", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49179", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the architecture is very beautiful .", "storylet_id": "245897"}], [{"original_text": "The Buddhist statue presents a holy aura.", "album_id": "72157594310500030", "photo_flickr_id": "259491943", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49179", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the organization statue presents a holy aura .", "storylet_id": "245898"}], [{"original_text": "Lastly, we had fun where it was needed.", "album_id": "72157594310500030", "photo_flickr_id": "259475783", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49179", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , we had fun where it was needed .", "storylet_id": "245899"}], [{"original_text": "We crossed the bridge in the park heading for the stream.", "album_id": "72157594422873458", "photo_flickr_id": "323189821", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "49180", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we crossed the bridge in the park heading for the stream .", "storylet_id": "245900"}], [{"original_text": "As we got closer, we could hear the water getting louder.", "album_id": "72157594422873458", "photo_flickr_id": "323164838", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "49180", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as we got closer , we could hear the water getting louder .", "storylet_id": "245901"}], [{"original_text": "Natural rock formation provided glimpses of the area around the stream.", "album_id": "72157594422873458", "photo_flickr_id": "323189818", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "49180", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "natural rock formation provided glimpses of the area around the stream .", "storylet_id": "245902"}], [{"original_text": "When we got to the source of the sound, we found a waterfall.", "album_id": "72157594422873458", "photo_flickr_id": "323164829", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "49180", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we got to the source of the sound , we found a waterfall .", "storylet_id": "245903"}], [{"original_text": "The waterfall and pool created a sort of grotto in the back wall of the rock.", "album_id": "72157594422873458", "photo_flickr_id": "323164841", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "49180", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the waterfall and pool created a sort of grotto in the back wall of the rock .", "storylet_id": "245904"}], [{"original_text": "Since the weather was so nice, we decided to go hiking on some local trails.", "album_id": "72157594422873458", "photo_flickr_id": "323164838", "setting": "first-2-pick-and-tell", "worker_id": "H2VH5F3HTD2P2OO", "story_id": "49181", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "since the weather was so nice , we decided to go hiking on some local trails .", "storylet_id": "245905"}], [{"original_text": "The kids had a lot of fun playing in and around the natural rock formations.", "album_id": "72157594422873458", "photo_flickr_id": "323189818", "setting": "first-2-pick-and-tell", "worker_id": "H2VH5F3HTD2P2OO", "story_id": "49181", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids had a lot of fun playing in and around the natural rock formations .", "storylet_id": "245906"}], [{"original_text": "Near a flowing stream, we saw a beautiful tree with white blossoms. ", "album_id": "72157594422873458", "photo_flickr_id": "323164841", "setting": "first-2-pick-and-tell", "worker_id": "H2VH5F3HTD2P2OO", "story_id": "49181", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "near a flowing stream , we saw a beautiful tree with white blossoms .", "storylet_id": "245907"}], [{"original_text": "We came to a foot bridge that crossed over the stream, and lead to the trail up the mountain side. ", "album_id": "72157594422873458", "photo_flickr_id": "323189821", "setting": "first-2-pick-and-tell", "worker_id": "H2VH5F3HTD2P2OO", "story_id": "49181", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we came to a foot bridge that crossed over the stream , and lead to the trail up the mountain side .", "storylet_id": "245908"}], [{"original_text": "The hike up the mountain was tough, but the views were well worth it. ", "album_id": "72157594422873458", "photo_flickr_id": "323164832", "setting": "first-2-pick-and-tell", "worker_id": "H2VH5F3HTD2P2OO", "story_id": "49181", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the hike up the mountain was tough , but the views were well worth it .", "storylet_id": "245909"}], [{"original_text": "We started our hike at the beautiful old bridge.", "album_id": "72157594422873458", "photo_flickr_id": "323189821", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49182", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started our hike at the beautiful old bridge .", "storylet_id": "245910"}], [{"original_text": "Next we saw the lovely tiny creek.", "album_id": "72157594422873458", "photo_flickr_id": "323164838", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49182", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next we saw the lovely tiny creek .", "storylet_id": "245911"}], [{"original_text": "From there we saw many different things along the way including this hole in the tree.", "album_id": "72157594422873458", "photo_flickr_id": "323189818", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49182", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "from there we saw many different things along the way including this hole in the tree .", "storylet_id": "245912"}], [{"original_text": "This was far and away our favorite part of the hike. ", "album_id": "72157594422873458", "photo_flickr_id": "323164829", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49182", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was far and away our favorite part of the hike .", "storylet_id": "245913"}], [{"original_text": "It's beauty was only surpassed by its wonder.", "album_id": "72157594422873458", "photo_flickr_id": "323164841", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49182", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's beauty was only surpassed by its wonder .", "storylet_id": "245914"}], [{"original_text": "Someone is in the bushes.", "album_id": "72157594422873458", "photo_flickr_id": "323189821", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "49183", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "someone is in the bushes .", "storylet_id": "245915"}], [{"original_text": "He climbs up the bumpy hill.", "album_id": "72157594422873458", "photo_flickr_id": "323164838", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "49183", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he climbs up the bumpy hill .", "storylet_id": "245916"}], [{"original_text": "He looks down upon the stream.", "album_id": "72157594422873458", "photo_flickr_id": "323189818", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "49183", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he looks down upon the stream .", "storylet_id": "245917"}], [{"original_text": "He comes across a beautiful waterfall.", "album_id": "72157594422873458", "photo_flickr_id": "323164829", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "49183", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he comes across a beautiful waterfall .", "storylet_id": "245918"}], [{"original_text": "He then finds a secret passageway under the waterfall.", "album_id": "72157594422873458", "photo_flickr_id": "323164841", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "49183", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he then finds a secret passageway under the waterfall .", "storylet_id": "245919"}], [{"original_text": "The rickety old bridge had been there for as long as anyone could remember. ", "album_id": "72157594422873458", "photo_flickr_id": "323189821", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49184", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the rickety old bridge had been there for as long as anyone could remember .", "storylet_id": "245920"}], [{"original_text": "Along the trail, there were steep caverns ", "album_id": "72157594422873458", "photo_flickr_id": "323164838", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49184", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "along the trail , there were steep caverns", "storylet_id": "245921"}], [{"original_text": "Unusual rock formations were abundant. ", "album_id": "72157594422873458", "photo_flickr_id": "323189818", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49184", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "unusual rock formations were abundant .", "storylet_id": "245922"}], [{"original_text": "You could see a waterfall in the distance. ", "album_id": "72157594422873458", "photo_flickr_id": "323164829", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49184", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you could see a waterfall in the distance .", "storylet_id": "245923"}], [{"original_text": "The river seemed to disappear in the mountain. ", "album_id": "72157594422873458", "photo_flickr_id": "323164841", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49184", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the river seemed to disappear in the mountain .", "storylet_id": "245924"}], [{"original_text": "He had never been to such a majestic place before.", "album_id": "72157594553148814", "photo_flickr_id": "400095912", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "49185", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he had never been to such a majestic place before .", "storylet_id": "245925"}], [{"original_text": "The locals told him all about the beauty of the land.", "album_id": "72157594553148814", "photo_flickr_id": "399717450", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "49185", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the locals told him all about the beauty of the land .", "storylet_id": "245926"}], [{"original_text": "Information was written in stone to tell him about it.", "album_id": "72157594553148814", "photo_flickr_id": "399540137", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "49185", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "information was written in stone to tell him about it .", "storylet_id": "245927"}], [{"original_text": "The mountains were beautiful.", "album_id": "72157594553148814", "photo_flickr_id": "399537897", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "49185", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the mountains were beautiful .", "storylet_id": "245928"}], [{"original_text": "He stood atop them and looked at the vast canyon.", "album_id": "72157594553148814", "photo_flickr_id": "399625223", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "49185", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he stood atop them and looked at the vast canyon .", "storylet_id": "245929"}], [{"original_text": "We went to the park and a deer followed us.", "album_id": "72157594553148814", "photo_flickr_id": "399537897", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49186", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the park and a deer followed us .", "storylet_id": "245930"}], [{"original_text": "We pet it and took pictures with it.", "album_id": "72157594553148814", "photo_flickr_id": "400029880", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49186", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we pet it and took pictures with it .", "storylet_id": "245931"}], [{"original_text": "Then we traveled to the marvelous hotel.", "album_id": "72157594553148814", "photo_flickr_id": "400036602", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49186", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we traveled to the marvelous hotel .", "storylet_id": "245932"}], [{"original_text": "The grounds were so immaculate.", "album_id": "72157594553148814", "photo_flickr_id": "400040466", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49186", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the grounds were so immaculate .", "storylet_id": "245933"}], [{"original_text": "We also got great pictures of the outside decor.", "album_id": "72157594553148814", "photo_flickr_id": "400090995", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49186", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also got great pictures of the outside decor .", "storylet_id": "245934"}], [{"original_text": "I went to a restaurant with a friend of mine yesterday.", "album_id": "72157594553148814", "photo_flickr_id": "400095912", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49187", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a restaurant with a friend of mine yesterday .", "storylet_id": "245935"}], [{"original_text": "We hadn't seen each other in a long time.", "album_id": "72157594553148814", "photo_flickr_id": "399717450", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49187", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had n't seen each other in a long time .", "storylet_id": "245936"}], [{"original_text": "Afterward we decided to go on a hike through the wilderness.", "album_id": "72157594553148814", "photo_flickr_id": "399540137", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49187", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterward we decided to go on a hike through the wilderness .", "storylet_id": "245937"}], [{"original_text": "There was nobody else out there.", "album_id": "72157594553148814", "photo_flickr_id": "399537897", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49187", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was nobody else out there .", "storylet_id": "245938"}], [{"original_text": "We had a great view at the end of the hike.", "album_id": "72157594553148814", "photo_flickr_id": "399625223", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49187", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great view at the end of the hike .", "storylet_id": "245939"}], [{"original_text": "The mountains loomed in the distance as I started my hike through the sparsely vegetated desert.", "album_id": "72157594553148814", "photo_flickr_id": "399537897", "setting": "last-3-pick-old-and-tell", "worker_id": "SE7VAMHDWRU9UB5", "story_id": "49188", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the mountains loomed in the distance as i started my hike through the sparsely vegetated desert .", "storylet_id": "245940"}], [{"original_text": "The only paths were dirt roads marked by the rangers who travelled them regularly through the wilderness.", "album_id": "72157594553148814", "photo_flickr_id": "400029880", "setting": "last-3-pick-old-and-tell", "worker_id": "SE7VAMHDWRU9UB5", "story_id": "49188", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the only paths were dirt roads marked by the rangers who travelled them regularly through the wilderness .", "storylet_id": "245941"}], [{"original_text": "As I climbed higher and higher there was more greenery and the view was spectacular.", "album_id": "72157594553148814", "photo_flickr_id": "400036602", "setting": "last-3-pick-old-and-tell", "worker_id": "SE7VAMHDWRU9UB5", "story_id": "49188", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as i climbed higher and higher there was more greenery and the view was spectacular .", "storylet_id": "245942"}], [{"original_text": "I even tried my hand at rock climbing the towering stacks of boulders that were deposited everywhere.", "album_id": "72157594553148814", "photo_flickr_id": "400040466", "setting": "last-3-pick-old-and-tell", "worker_id": "SE7VAMHDWRU9UB5", "story_id": "49188", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i even tried my hand at rock climbing the towering stacks of boulders that were deposited everywhere .", "storylet_id": "245943"}], [{"original_text": "Once I climbed to the top the view took my breath away; I could see everywhere I had just hiked in one glance.", "album_id": "72157594553148814", "photo_flickr_id": "400090995", "setting": "last-3-pick-old-and-tell", "worker_id": "SE7VAMHDWRU9UB5", "story_id": "49188", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once i climbed to the top the view took my breath away ; i could see everywhere i had just hiked in one glance .", "storylet_id": "245944"}], [{"original_text": "It was a perfect day to spend outdoors. ", "album_id": "72157594553148814", "photo_flickr_id": "399537897", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49189", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a perfect day to spend outdoors .", "storylet_id": "245945"}], [{"original_text": "A hike seemed like a good idea. ", "album_id": "72157594553148814", "photo_flickr_id": "400029880", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49189", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a hike seemed like a good idea .", "storylet_id": "245946"}], [{"original_text": "Spring was the best time to hike in the mountains. ", "album_id": "72157594553148814", "photo_flickr_id": "400036602", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49189", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "spring was the best time to hike in the mountains .", "storylet_id": "245947"}], [{"original_text": "Rock climbing was also good that day. ", "album_id": "72157594553148814", "photo_flickr_id": "400040466", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49189", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "rock climbing was also good that day .", "storylet_id": "245948"}], [{"original_text": "The views were magnificent. ", "album_id": "72157594553148814", "photo_flickr_id": "400090995", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49189", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the views were magnificent .", "storylet_id": "245949"}], [{"original_text": "The god of fog and mist was angry.", "album_id": "72157600060241193", "photo_flickr_id": "378395497", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "49190", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the god of fog and mist was angry .", "storylet_id": "245950"}], [{"original_text": "He stood ever vigilant over his lands.", "album_id": "72157600060241193", "photo_flickr_id": "378393135", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "49190", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he stood ever vigilant over his lands .", "storylet_id": "245951"}], [{"original_text": "However the rivers and lakes were polluted.", "album_id": "72157600060241193", "photo_flickr_id": "380624072", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "49190", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however the rivers and lakes were polluted .", "storylet_id": "245952"}], [{"original_text": "Man had caused this, and man would be punished in never-ending fog.", "album_id": "72157600060241193", "photo_flickr_id": "380622547", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "49190", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "man had caused this , and man would be punished in never-ending fog .", "storylet_id": "245953"}], [{"original_text": "The mists and fogs rolled in, the god knew this would be mankind's final days.", "album_id": "72157600060241193", "photo_flickr_id": "374513504", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "49190", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the mists and fogs rolled in , the god knew this would be mankind 's final days .", "storylet_id": "245954"}], [{"original_text": "going on a hiking trip in this area will be a blast", "album_id": "72157600060241193", "photo_flickr_id": "380615062", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "49191", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going on a hiking trip in this area will be a blast", "storylet_id": "245955"}], [{"original_text": "what is all that smoke from?", "album_id": "72157600060241193", "photo_flickr_id": "380617699", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "49191", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "what is all that smoke from ?", "storylet_id": "245956"}], [{"original_text": "the water is so hot it is boiling the mud", "album_id": "72157600060241193", "photo_flickr_id": "373643243", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "49191", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water is so hot it is boiling the mud", "storylet_id": "245957"}], [{"original_text": "we found this old bridge to cross the treacherous ", "album_id": "72157600060241193", "photo_flickr_id": "374513482", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "49191", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found this old bridge to cross the treacherous", "storylet_id": "245958"}], [{"original_text": "and at the other side of the bridge we see these great statues!", "album_id": "72157600060241193", "photo_flickr_id": "378393135", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "49191", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and at the other side of the bridge we see these great statues !", "storylet_id": "245959"}], [{"original_text": "The jungle was misty and spooky the day we visited the national park.", "album_id": "72157600060241193", "photo_flickr_id": "380615062", "setting": "last-3-pick-old-and-tell", "worker_id": "SE7VAMHDWRU9UB5", "story_id": "49192", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the jungle was misty and spooky the day we visited the national park .", "storylet_id": "245960"}], [{"original_text": "You could see the remains of trees that had burned in a fire that swept over the land a few years ago.", "album_id": "72157600060241193", "photo_flickr_id": "380617699", "setting": "last-3-pick-old-and-tell", "worker_id": "SE7VAMHDWRU9UB5", "story_id": "49192", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you could see the remains of trees that had burned in a fire that swept over the land a few years ago .", "storylet_id": "245961"}], [{"original_text": "The tar pits were constantly bubbling, emitting gas and steam.", "album_id": "72157600060241193", "photo_flickr_id": "373643243", "setting": "last-3-pick-old-and-tell", "worker_id": "SE7VAMHDWRU9UB5", "story_id": "49192", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tar pits were constantly bubbling , emitting gas and steam .", "storylet_id": "245962"}], [{"original_text": "The bridge crossing the pits was covered with a fine ash from the residue.", "album_id": "72157600060241193", "photo_flickr_id": "374513482", "setting": "last-3-pick-old-and-tell", "worker_id": "SE7VAMHDWRU9UB5", "story_id": "49192", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bridge crossing the pits was covered with a fine ash from the residue .", "storylet_id": "245963"}], [{"original_text": "There were giant tiki statues everywhere paying homage to the native populations that settled the land.", "album_id": "72157600060241193", "photo_flickr_id": "378393135", "setting": "last-3-pick-old-and-tell", "worker_id": "SE7VAMHDWRU9UB5", "story_id": "49192", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were giant tiki statues everywhere paying homage to the native populations that settled the land .", "storylet_id": "245964"}], [{"original_text": "Today I experienced the art of another culture.", "album_id": "72157600060241193", "photo_flickr_id": "378395497", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49193", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i experienced the art of another culture .", "storylet_id": "245965"}], [{"original_text": "Giant statues were created almost a century ago in Indonesia.", "album_id": "72157600060241193", "photo_flickr_id": "378393135", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49193", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "giant statues were created almost a century ago in location .", "storylet_id": "245966"}], [{"original_text": "There were hidden lakes that made for good vacation spots.", "album_id": "72157600060241193", "photo_flickr_id": "380624072", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49193", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were hidden lakes that made for good vacation spots .", "storylet_id": "245967"}], [{"original_text": "An eerie bridge scared me because of the fog.", "album_id": "72157600060241193", "photo_flickr_id": "380622547", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49193", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an eerie bridge scared me because of the fog .", "storylet_id": "245968"}], [{"original_text": "I ended up walking down the bridge and going home. ", "album_id": "72157600060241193", "photo_flickr_id": "374513504", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49193", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ended up walking down the bridge and going home .", "storylet_id": "245969"}], [{"original_text": "Walking through the hazy jungle.", "album_id": "72157600060241193", "photo_flickr_id": "380615062", "setting": "last-3-pick-old-and-tell", "worker_id": "E7KQUM1QMVP71UN", "story_id": "49194", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walking through the hazy jungle .", "storylet_id": "245970"}], [{"original_text": "\"What is that?\"", "album_id": "72157600060241193", "photo_flickr_id": "380617699", "setting": "last-3-pick-old-and-tell", "worker_id": "E7KQUM1QMVP71UN", "story_id": "49194", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "`` what is that ? ''", "storylet_id": "245971"}], [{"original_text": "Sploosh! \"Be careful numnuts!\" \"Aieeee pull me out Dave!\"", "album_id": "72157600060241193", "photo_flickr_id": "373643243", "setting": "last-3-pick-old-and-tell", "worker_id": "E7KQUM1QMVP71UN", "story_id": "49194", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sploosh ! `` be careful numnuts ! '' `` aieeee pull me out [male] ! ''", "storylet_id": "245972"}], [{"original_text": "\"Where is this place?\"", "album_id": "72157600060241193", "photo_flickr_id": "374513482", "setting": "last-3-pick-old-and-tell", "worker_id": "E7KQUM1QMVP71UN", "story_id": "49194", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "`` where is this place ? ''", "storylet_id": "245973"}], [{"original_text": "\"Sorry Al turns out the native New Zealanders figured out the true Gods. Hell is thataway\". ", "album_id": "72157600060241193", "photo_flickr_id": "378393135", "setting": "last-3-pick-old-and-tell", "worker_id": "E7KQUM1QMVP71UN", "story_id": "49194", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "`` sorry [male] turns out the native new zealanders figured out the true gods . hell is thataway '' .", "storylet_id": "245974"}], [{"original_text": "I rode on the bus to get to work yesterday.", "album_id": "72157594458372207", "photo_flickr_id": "345095482", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49195", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i rode on the bus to get to work yesterday .", "storylet_id": "245975"}], [{"original_text": "It was a long ride.", "album_id": "72157594458372207", "photo_flickr_id": "345095696", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49195", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a long ride .", "storylet_id": "245976"}], [{"original_text": "I fell asleep during it.", "album_id": "72157594458372207", "photo_flickr_id": "345095893", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49195", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i fell asleep during it .", "storylet_id": "245977"}], [{"original_text": "When we finally got close I woke up.", "album_id": "72157594458372207", "photo_flickr_id": "345096290", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49195", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we finally got close i woke up .", "storylet_id": "245978"}], [{"original_text": "I had five more minutes until we would arrive.", "album_id": "72157594458372207", "photo_flickr_id": "345096501", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49195", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had five more minutes until we would arrive .", "storylet_id": "245979"}], [{"original_text": "Was it foggy outside or was it smoke from the inside? ", "album_id": "72157594458372207", "photo_flickr_id": "345095696", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49196", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "was it foggy outside or was it smoke from the inside ?", "storylet_id": "245980"}], [{"original_text": "Being an old hippie sometimes had its disadvantages. ", "album_id": "72157594458372207", "photo_flickr_id": "345095893", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49196", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "being an old hippie sometimes had its disadvantages .", "storylet_id": "245981"}], [{"original_text": "Seeing the world through a haze and fringe wasn't everything she had thought it might be.", "album_id": "72157594458372207", "photo_flickr_id": "345096125", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49196", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "seeing the world through a haze and fringe was n't everything she had thought it might be .", "storylet_id": "245982"}], [{"original_text": "They lived on the road. ", "album_id": "72157594458372207", "photo_flickr_id": "345099957", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49196", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they lived on the road .", "storylet_id": "245983"}], [{"original_text": "Her home was the highway and she longed for stability. ", "album_id": "72157594458372207", "photo_flickr_id": "345104068", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49196", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her home was the highway and she longed for stability .", "storylet_id": "245984"}], [{"original_text": "A photo of the bus I was on when I took a trip. ", "album_id": "72157594458372207", "photo_flickr_id": "345095482", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49197", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a photo of the bus i was on when i took a trip .", "storylet_id": "245985"}], [{"original_text": "The bus is still on the freeway, after driving a few hours. ", "album_id": "72157594458372207", "photo_flickr_id": "345095696", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49197", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bus is still on the freeway , after driving a few hours .", "storylet_id": "245986"}], [{"original_text": "The weather is a little sunnier, but we are still on the road. ", "album_id": "72157594458372207", "photo_flickr_id": "345095893", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49197", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the weather is a little sunnier , but we are still on the road .", "storylet_id": "245987"}], [{"original_text": "I decided to stop for the night at this hotel. ", "album_id": "72157594458372207", "photo_flickr_id": "345096290", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49197", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i decided to stop for the night at this hotel .", "storylet_id": "245988"}], [{"original_text": "The next day I was back on the road. ", "album_id": "72157594458372207", "photo_flickr_id": "345096501", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49197", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the next day i was back on the road .", "storylet_id": "245989"}], [{"original_text": "Lucy was driving up north to visit her parents. Though it wasn't the drive she loved.", "album_id": "72157594458372207", "photo_flickr_id": "345095696", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49198", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was driving up north to visit her parents . though it was n't the drive she loved .", "storylet_id": "245990"}], [{"original_text": "She would take I-80 and eventually merge on to I-95 north.", "album_id": "72157594458372207", "photo_flickr_id": "345095893", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49198", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she would take i-80 and eventually merge on to i-95 north .", "storylet_id": "245991"}], [{"original_text": "Lucy looked up at the sky. It looked like rain was coming. She hated driving in the rain.", "album_id": "72157594458372207", "photo_flickr_id": "345096125", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49198", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] looked up at the sky . it looked like rain was coming . she hated driving in the rain .", "storylet_id": "245992"}], [{"original_text": "Lucy saw many big trucks going the opposite way. It must be a big day for deliveries she thought, as she continued her journey.", "album_id": "72157594458372207", "photo_flickr_id": "345099957", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49198", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] saw many big trucks going the opposite way . it must be a big day for deliveries she thought , as she continued her journey .", "storylet_id": "245993"}], [{"original_text": "Lucy thought to herself, thank you lord, the skies have cleared up. It didn't look like rain anymore, but she still had four more hours of driving before she'd reach her parents house in Michigan. ", "album_id": "72157594458372207", "photo_flickr_id": "345104068", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49198", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] thought to herself , thank you lord , the skies have cleared up . it did n't look like rain anymore , but she still had four more hours of driving before she 'd reach her parents house in location .", "storylet_id": "245994"}], [{"original_text": "We took a drive across the country last summer.", "album_id": "72157594458372207", "photo_flickr_id": "345095696", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49199", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a drive across the country last summer .", "storylet_id": "245995"}], [{"original_text": "It was a great feeling being on the open road.", "album_id": "72157594458372207", "photo_flickr_id": "345095893", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49199", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a great feeling being on the open road .", "storylet_id": "245996"}], [{"original_text": "Nothing compares to having a whole road to yourself!", "album_id": "72157594458372207", "photo_flickr_id": "345096125", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49199", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nothing compares to having a whole road to yourself !", "storylet_id": "245997"}], [{"original_text": "Well, most of the time anyways!", "album_id": "72157594458372207", "photo_flickr_id": "345099957", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49199", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "well , most of the time anyways !", "storylet_id": "245998"}], [{"original_text": "It was a great trip and we got to see many places.", "album_id": "72157594458372207", "photo_flickr_id": "345104068", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49199", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great trip and we got to see many places .", "storylet_id": "245999"}], [{"original_text": "When I went on vacation last year I saw some interesting things.", "album_id": "72157594583750217", "photo_flickr_id": "355728429", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49200", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i went on vacation last year i saw some interesting things .", "storylet_id": "246000"}], [{"original_text": "There were a lot of unique trees there.", "album_id": "72157594583750217", "photo_flickr_id": "355728436", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49200", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of unique trees there .", "storylet_id": "246001"}], [{"original_text": "They were all very old.", "album_id": "72157594583750217", "photo_flickr_id": "355728433", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49200", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were all very old .", "storylet_id": "246002"}], [{"original_text": "They were very unique.", "album_id": "72157594583750217", "photo_flickr_id": "355728431", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49200", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were very unique .", "storylet_id": "246003"}], [{"original_text": "I took some samples of them.", "album_id": "72157594583750217", "photo_flickr_id": "355728432", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49200", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i took some samples of them .", "storylet_id": "246004"}], [{"original_text": "About to start our journey into the jungle.", "album_id": "72157594583750217", "photo_flickr_id": "355728429", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "49201", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "about to start our journey into the jungle .", "storylet_id": "246005"}], [{"original_text": "These trees are so old, moss are other plant life start to grow all around.", "album_id": "72157594583750217", "photo_flickr_id": "355728433", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "49201", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these trees are so old , moss are other plant life start to grow all around .", "storylet_id": "246006"}], [{"original_text": "Looking up towards the canopy, monkeys can be seen playing.", "album_id": "72157594583750217", "photo_flickr_id": "355729381", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "49201", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looking up towards the canopy , monkeys can be seen playing .", "storylet_id": "246007"}], [{"original_text": "This tree curved at an upward angle. ", "album_id": "72157594583750217", "photo_flickr_id": "358115451", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "49201", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this tree curved at an upward angle .", "storylet_id": "246008"}], [{"original_text": "The view from the top was breathtaking. ", "album_id": "72157594583750217", "photo_flickr_id": "358119827", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "49201", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view from the top was breathtaking .", "storylet_id": "246009"}], [{"original_text": "While on vacation, we went to the jungle.", "album_id": "72157594583750217", "photo_flickr_id": "355728429", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49202", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while on vacation , we went to the jungle .", "storylet_id": "246010"}], [{"original_text": "In the woods there were some many sights to see.", "album_id": "72157594583750217", "photo_flickr_id": "355728433", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49202", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in the woods there were some many sights to see .", "storylet_id": "246011"}], [{"original_text": "We even saw a monkey there.", "album_id": "72157594583750217", "photo_flickr_id": "355729381", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49202", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even saw a monkey there .", "storylet_id": "246012"}], [{"original_text": "My friends climbed all over the trees.", "album_id": "72157594583750217", "photo_flickr_id": "358115451", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49202", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friends climbed all over the trees .", "storylet_id": "246013"}], [{"original_text": "Looking out across the expanse was beautiful.", "album_id": "72157594583750217", "photo_flickr_id": "358119827", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49202", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "looking out across the expanse was beautiful .", "storylet_id": "246014"}], [{"original_text": "We took a trip to the forest today.", "album_id": "72157594583750217", "photo_flickr_id": "355728429", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49203", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to the forest today .", "storylet_id": "246015"}], [{"original_text": "There were so many huge trees.", "album_id": "72157594583750217", "photo_flickr_id": "355728436", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49203", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many huge trees .", "storylet_id": "246016"}], [{"original_text": "The trees had been there for a very long time.", "album_id": "72157594583750217", "photo_flickr_id": "355728433", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49203", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the trees had been there for a very long time .", "storylet_id": "246017"}], [{"original_text": "It was so majestic looking up at the trees.", "album_id": "72157594583750217", "photo_flickr_id": "355728431", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49203", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was so majestic looking up at the trees .", "storylet_id": "246018"}], [{"original_text": "It was a great day and we have so much fun exploring the forest.", "album_id": "72157594583750217", "photo_flickr_id": "355728432", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49203", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great day and we have so much fun exploring the forest .", "storylet_id": "246019"}], [{"original_text": "We're exploring the forest today", "album_id": "72157594583750217", "photo_flickr_id": "355728429", "setting": "last-3-pick-old-and-tell", "worker_id": "VELPL3AXUYBFNXB", "story_id": "49204", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 're exploring the forest today", "storylet_id": "246020"}], [{"original_text": "There are a lot of interesting trees and growth.", "album_id": "72157594583750217", "photo_flickr_id": "355728433", "setting": "last-3-pick-old-and-tell", "worker_id": "VELPL3AXUYBFNXB", "story_id": "49204", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are a lot of interesting trees and growth .", "storylet_id": "246021"}], [{"original_text": "There are even wild monkeys.", "album_id": "72157594583750217", "photo_flickr_id": "355729381", "setting": "last-3-pick-old-and-tell", "worker_id": "VELPL3AXUYBFNXB", "story_id": "49204", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are even wild monkeys .", "storylet_id": "246022"}], [{"original_text": "There are some wild monkeys among our group too", "album_id": "72157594583750217", "photo_flickr_id": "358115451", "setting": "last-3-pick-old-and-tell", "worker_id": "VELPL3AXUYBFNXB", "story_id": "49204", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are some wild monkeys among our group too", "storylet_id": "246023"}], [{"original_text": "Exploring God's creation is marvelous.", "album_id": "72157594583750217", "photo_flickr_id": "358119827", "setting": "last-3-pick-old-and-tell", "worker_id": "VELPL3AXUYBFNXB", "story_id": "49204", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "exploring god 's creation is marvelous .", "storylet_id": "246024"}], [{"original_text": "Flowers bloom.", "album_id": "72157600027450140", "photo_flickr_id": "434670495", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "49205", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "flowers bloom .", "storylet_id": "246025"}], [{"original_text": "Squirrels gather nuts for winter.", "album_id": "72157600027450140", "photo_flickr_id": "434669188", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "49205", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "squirrels gather nuts for winter .", "storylet_id": "246026"}], [{"original_text": "Flowers don't care what squirrels do.", "album_id": "72157600027450140", "photo_flickr_id": "434670911", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "49205", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "flowers do n't care what squirrels do .", "storylet_id": "246027"}], [{"original_text": "Squirrels don't care what flowers do.", "album_id": "72157600027450140", "photo_flickr_id": "434669304", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "49205", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "squirrels do n't care what flowers do .", "storylet_id": "246028"}], [{"original_text": "Flowers bloom some more.", "album_id": "72157600027450140", "photo_flickr_id": "434671019", "setting": "first-2-pick-and-tell", "worker_id": "LK5D1ECZNOETNFS", "story_id": "49205", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "flowers bloom some more .", "storylet_id": "246029"}], [{"original_text": "Testing my new amazing camera.", "album_id": "72157600027450140", "photo_flickr_id": "434669241", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49206", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "testing my new amazing camera .", "storylet_id": "246030"}], [{"original_text": "The close up shot of this cactus is amazing. The quality.", "album_id": "72157600027450140", "photo_flickr_id": "434669313", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49206", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the close up shot of this cactus is amazing . the quality .", "storylet_id": "246031"}], [{"original_text": "I try to get an even closer view of the cactus. The quality is still there.", "album_id": "72157600027450140", "photo_flickr_id": "434668408", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49206", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i try to get an even closer view of the cactus . the quality is still there .", "storylet_id": "246032"}], [{"original_text": "This squirrel is actually 30 feet away from me. I kept zooming in and got this amazing photo.", "album_id": "72157600027450140", "photo_flickr_id": "434669188", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49206", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this squirrel is actually 30 feet away from me . i kept zooming in and got this amazing photo .", "storylet_id": "246033"}], [{"original_text": "The details of this shot is amazing. You can see all the pores on the tips.", "album_id": "72157600027450140", "photo_flickr_id": "434671019", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49206", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the details of this shot is amazing . you can see all the pores on the tips .", "storylet_id": "246034"}], [{"original_text": "The flowers had come into bloom.", "album_id": "72157600027450140", "photo_flickr_id": "434670495", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49207", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the flowers had come into bloom .", "storylet_id": "246035"}], [{"original_text": "The squirrel was hungry, what would he eat?", "album_id": "72157600027450140", "photo_flickr_id": "434669188", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49207", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the squirrel was hungry , what would he eat ?", "storylet_id": "246036"}], [{"original_text": "He saw the purple plant.", "album_id": "72157600027450140", "photo_flickr_id": "434670911", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49207", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he saw the purple plant .", "storylet_id": "246037"}], [{"original_text": "He decided to go with the yellow flower.", "album_id": "72157600027450140", "photo_flickr_id": "434669304", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49207", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he decided to go with the yellow flower .", "storylet_id": "246038"}], [{"original_text": "Oh no, he didn't notice his favorite plant, the red one.", "album_id": "72157600027450140", "photo_flickr_id": "434671019", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49207", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "oh no , he did n't notice his favorite plant , the red one .", "storylet_id": "246039"}], [{"original_text": "I went for a walk through the woods yesterday.", "album_id": "72157600027450140", "photo_flickr_id": "434670495", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49208", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a walk through the woods yesterday .", "storylet_id": "246040"}], [{"original_text": "There were a lot of squirrels watching me.", "album_id": "72157600027450140", "photo_flickr_id": "434669188", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49208", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of squirrels watching me .", "storylet_id": "246041"}], [{"original_text": "I found some interesting plants while I was out there.", "album_id": "72157600027450140", "photo_flickr_id": "434670911", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49208", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i found some interesting plants while i was out there .", "storylet_id": "246042"}], [{"original_text": "The squirrels watched me for hours.", "album_id": "72157600027450140", "photo_flickr_id": "434669304", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49208", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the squirrels watched me for hours .", "storylet_id": "246043"}], [{"original_text": "The flowers are very beautiful this time of the year.", "album_id": "72157600027450140", "photo_flickr_id": "434671019", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49208", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the flowers are very beautiful this time of the year .", "storylet_id": "246044"}], [{"original_text": "A girl looks at a dying sunflower.", "album_id": "72157600027450140", "photo_flickr_id": "434670495", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "49209", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a girl looks at a dying sunflower .", "storylet_id": "246045"}], [{"original_text": "She then sees a fat squirrel eating.", "album_id": "72157600027450140", "photo_flickr_id": "434669188", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "49209", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she then sees a fat squirrel eating .", "storylet_id": "246046"}], [{"original_text": "She looks at purple flowers.", "album_id": "72157600027450140", "photo_flickr_id": "434670911", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "49209", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she looks at purple flowers .", "storylet_id": "246047"}], [{"original_text": "But then she goes back to the fat squirrel.", "album_id": "72157600027450140", "photo_flickr_id": "434669304", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "49209", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but then she goes back to the fat squirrel .", "storylet_id": "246048"}], [{"original_text": "She then comes across a flower she didn't see before.", "album_id": "72157600027450140", "photo_flickr_id": "434671019", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "49209", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she then comes across a flower she did n't see before .", "storylet_id": "246049"}], [{"original_text": "I finally got to the house just beyond the marsh.", "album_id": "72157600053481092", "photo_flickr_id": "449300051", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "49210", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finally got to the house just beyond the marsh .", "storylet_id": "246050"}], [{"original_text": "I had to cross the creepy lake.", "album_id": "72157600053481092", "photo_flickr_id": "449302691", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "49210", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had to cross the creepy lake .", "storylet_id": "246051"}], [{"original_text": "After having made it across the wobbly bridge.", "album_id": "72157600053481092", "photo_flickr_id": "449296532", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "49210", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after having made it across the wobbly bridge .", "storylet_id": "246052"}], [{"original_text": "Even before that I walked through the suffocating swamp.", "album_id": "72157600053481092", "photo_flickr_id": "449307006", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "49210", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even before that i walked through the suffocating swamp .", "storylet_id": "246053"}], [{"original_text": "The swamp had started as an upsetting stream of dead fishes, flies, and frogs.", "album_id": "72157600053481092", "photo_flickr_id": "449313397", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "49210", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the swamp had started as an upsetting stream of dead fishes , flies , and frogs .", "storylet_id": "246054"}], [{"original_text": "Heavy flood in our town. Testing the new camera that I got.", "album_id": "72157600053481092", "photo_flickr_id": "449290420", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49211", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "heavy flood in our town . testing the new camera that i got .", "storylet_id": "246055"}], [{"original_text": "The flood is starting to subside but you can see there are still quite a lot of water.", "album_id": "72157600053481092", "photo_flickr_id": "449300951", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49211", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flood is starting to subside but you can see there are still quite a lot of water .", "storylet_id": "246056"}], [{"original_text": "Frogs are being washed up.", "album_id": "72157600053481092", "photo_flickr_id": "449301357", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49211", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "frogs are being washed up .", "storylet_id": "246057"}], [{"original_text": "24x Zoom on the Nikon camera.", "album_id": "72157600053481092", "photo_flickr_id": "449313755", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49211", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "24x zoom on the organization camera .", "storylet_id": "246058"}], [{"original_text": "64X zoom. The quality is amazing.", "album_id": "72157600053481092", "photo_flickr_id": "449308962", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49211", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "64x zoom . the quality is amazing .", "storylet_id": "246059"}], [{"original_text": "The city had old charm architecture. ", "album_id": "72157600053481092", "photo_flickr_id": "449300051", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49212", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city had old charm architecture .", "storylet_id": "246060"}], [{"original_text": "The water flowed slowly between the trees. ", "album_id": "72157600053481092", "photo_flickr_id": "449302691", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49212", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water flowed slowly between the trees .", "storylet_id": "246061"}], [{"original_text": "The old walkway was loosely planted on the ground. ", "album_id": "72157600053481092", "photo_flickr_id": "449296532", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49212", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the old walkway was loosely planted on the ground .", "storylet_id": "246062"}], [{"original_text": "The plants stuck out from the water. ", "album_id": "72157600053481092", "photo_flickr_id": "449307006", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49212", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the plants stuck out from the water .", "storylet_id": "246063"}], [{"original_text": "The water became swampy. ", "album_id": "72157600053481092", "photo_flickr_id": "449313397", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49212", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the water became swampy .", "storylet_id": "246064"}], [{"original_text": "We left the house and headed into the swamp.", "album_id": "72157600053481092", "photo_flickr_id": "449300051", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49213", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we left the house and headed into the swamp .", "storylet_id": "246065"}], [{"original_text": "We went a ways before finding a trail.", "album_id": "72157600053481092", "photo_flickr_id": "449302691", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49213", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went a ways before finding a trail .", "storylet_id": "246066"}], [{"original_text": "We went over a small man made bridge at one point.", "album_id": "72157600053481092", "photo_flickr_id": "449296532", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49213", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went over a small man made bridge at one point .", "storylet_id": "246067"}], [{"original_text": "Thenit was back into the swamp.", "album_id": "72157600053481092", "photo_flickr_id": "449307006", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49213", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "thenit was back into the swamp .", "storylet_id": "246068"}], [{"original_text": "We passed by a large tree before heading back out.", "album_id": "72157600053481092", "photo_flickr_id": "449313397", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49213", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we passed by a large tree before heading back out .", "storylet_id": "246069"}], [{"original_text": "We walked through the village and saw a hawk flying in the air.", "album_id": "72157600053481092", "photo_flickr_id": "449290420", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49214", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we walked through the village and saw a hawk flying in the air .", "storylet_id": "246070"}], [{"original_text": "The village was covered in mud from all the rain.", "album_id": "72157600053481092", "photo_flickr_id": "449300951", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49214", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the village was covered in mud from all the rain .", "storylet_id": "246071"}], [{"original_text": "Then we found a frog hiding in the grass.", "album_id": "72157600053481092", "photo_flickr_id": "449301357", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49214", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we found a frog hiding in the grass .", "storylet_id": "246072"}], [{"original_text": "After that came to a sheep with her babies.", "album_id": "72157600053481092", "photo_flickr_id": "449313755", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49214", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that came to a sheep with her babies .", "storylet_id": "246073"}], [{"original_text": "We watched them as they ate.", "album_id": "72157600053481092", "photo_flickr_id": "449308962", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49214", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we watched them as they ate .", "storylet_id": "246074"}], [{"original_text": "The gardening course was filled with fun.", "album_id": "72157600249028369", "photo_flickr_id": "510335859", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "49215", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the gardening course was filled with fun .", "storylet_id": "246075"}], [{"original_text": "Edible offshoots were grown.", "album_id": "72157600249028369", "photo_flickr_id": "510335163", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "49215", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "edible offshoots were grown .", "storylet_id": "246076"}], [{"original_text": "Flowers were popular among some growers.", "album_id": "72157600249028369", "photo_flickr_id": "510336639", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "49215", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "flowers were popular among some growers .", "storylet_id": "246077"}], [{"original_text": "Different species were examined on the table.", "album_id": "72157600249028369", "photo_flickr_id": "510314518", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "49215", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "different species were examined on the table .", "storylet_id": "246078"}], [{"original_text": "Some contained only a few blooms.", "album_id": "72157600249028369", "photo_flickr_id": "510318560", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "49215", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some contained only a few blooms .", "storylet_id": "246079"}], [{"original_text": "I am artistic.", "album_id": "72157600249028369", "photo_flickr_id": "510335859", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49216", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am artistic .", "storylet_id": "246080"}], [{"original_text": "I take artistic photos.", "album_id": "72157600249028369", "photo_flickr_id": "510335163", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49216", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i take artistic photos .", "storylet_id": "246081"}], [{"original_text": "Today it's of plants.", "album_id": "72157600249028369", "photo_flickr_id": "510335503", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49216", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "today it 's of plants .", "storylet_id": "246082"}], [{"original_text": "Like this one.", "album_id": "72157600249028369", "photo_flickr_id": "510336251", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49216", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "like this one .", "storylet_id": "246083"}], [{"original_text": "It has lots of leaves.", "album_id": "72157600249028369", "photo_flickr_id": "510336407", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49216", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it has lots of leaves .", "storylet_id": "246084"}], [{"original_text": "This brown seed pod was the first plant clipping I collected last weekend.", "album_id": "72157600249028369", "photo_flickr_id": "510335859", "setting": "last-3-pick-old-and-tell", "worker_id": "L8M6ZZU2QHTVX6B", "story_id": "49217", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this brown seed pod was the first plant clipping i collected last weekend .", "storylet_id": "246085"}], [{"original_text": "I found this branch that looked like it was growing berries.", "album_id": "72157600249028369", "photo_flickr_id": "510335163", "setting": "last-3-pick-old-and-tell", "worker_id": "L8M6ZZU2QHTVX6B", "story_id": "49217", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i found this branch that looked like it was growing berries .", "storylet_id": "246086"}], [{"original_text": "These flowers were just about in bloom, so I grabbed them to put in water later.", "album_id": "72157600249028369", "photo_flickr_id": "510335503", "setting": "last-3-pick-old-and-tell", "worker_id": "L8M6ZZU2QHTVX6B", "story_id": "49217", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these flowers were just about in bloom , so i grabbed them to put in water later .", "storylet_id": "246087"}], [{"original_text": "The long, beautiful leaves on this plant made a nice addition to my collection.", "album_id": "72157600249028369", "photo_flickr_id": "510336251", "setting": "last-3-pick-old-and-tell", "worker_id": "L8M6ZZU2QHTVX6B", "story_id": "49217", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the long , beautiful leaves on this plant made a nice addition to my collection .", "storylet_id": "246088"}], [{"original_text": "The last clipping I took was this hearty looking leaf, which had a smooth waxy coating.", "album_id": "72157600249028369", "photo_flickr_id": "510336407", "setting": "last-3-pick-old-and-tell", "worker_id": "L8M6ZZU2QHTVX6B", "story_id": "49217", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last clipping i took was this hearty looking leaf , which had a smooth waxy coating .", "storylet_id": "246089"}], [{"original_text": "The shells were opened,", "album_id": "72157600249028369", "photo_flickr_id": "510335859", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49218", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the shells were opened ,", "storylet_id": "246090"}], [{"original_text": "and the insides came out.", "album_id": "72157600249028369", "photo_flickr_id": "510335163", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49218", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the insides came out .", "storylet_id": "246091"}], [{"original_text": "The botanists were enraptured with the process,", "album_id": "72157600249028369", "photo_flickr_id": "510336639", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49218", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the botanists were enraptured with the process ,", "storylet_id": "246092"}], [{"original_text": "so they grew more plants", "album_id": "72157600249028369", "photo_flickr_id": "510314518", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49218", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so they grew more plants", "storylet_id": "246093"}], [{"original_text": "and started the life cycle all over again. ", "album_id": "72157600249028369", "photo_flickr_id": "510318560", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49218", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and started the life cycle all over again .", "storylet_id": "246094"}], [{"original_text": "The banana was putrid, rotted compelty. ", "album_id": "72157600249028369", "photo_flickr_id": "510335859", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49219", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the banana was putrid , rotted compelty .", "storylet_id": "246095"}], [{"original_text": "A few of the berries still seemed viable. ", "album_id": "72157600249028369", "photo_flickr_id": "510335163", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49219", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a few of the berries still seemed viable .", "storylet_id": "246096"}], [{"original_text": "A flower had managed to blossom. ", "album_id": "72157600249028369", "photo_flickr_id": "510336639", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49219", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a flower had managed to blossom .", "storylet_id": "246097"}], [{"original_text": "The eucalyptus was still fragrant. ", "album_id": "72157600249028369", "photo_flickr_id": "510314518", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49219", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the eucalyptus was still fragrant .", "storylet_id": "246098"}], [{"original_text": "No one believed this sick little plant would survive. ", "album_id": "72157600249028369", "photo_flickr_id": "510318560", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49219", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "no one believed this sick little plant would survive .", "storylet_id": "246099"}], [{"original_text": "A lady went to visit this seaside town.", "album_id": "72157600324602921", "photo_flickr_id": "535342269", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "49220", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a lady went to visit this seaside town .", "storylet_id": "246100"}], [{"original_text": "It was a very pretty and spacious town.", "album_id": "72157600324602921", "photo_flickr_id": "535337735", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "49220", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a very pretty and spacious town .", "storylet_id": "246101"}], [{"original_text": "The architecture was also very cool and unique.", "album_id": "72157600324602921", "photo_flickr_id": "535235204", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "49220", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the architecture was also very cool and unique .", "storylet_id": "246102"}], [{"original_text": "Her favorite meal from this plate was this dessert.", "album_id": "72157600324602921", "photo_flickr_id": "535187512", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "49220", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her favorite meal from this plate was this dessert .", "storylet_id": "246103"}], [{"original_text": "She clearly loves it!", "album_id": "72157600324602921", "photo_flickr_id": "535313619", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "49220", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she clearly loves it !", "storylet_id": "246104"}], [{"original_text": "She had wanted to visit the area for a long time.", "album_id": "72157600324602921", "photo_flickr_id": "535339947", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49221", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she had wanted to visit the area for a long time .", "storylet_id": "246105"}], [{"original_text": "She had finally made it.", "album_id": "72157600324602921", "photo_flickr_id": "535342269", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49221", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had finally made it .", "storylet_id": "246106"}], [{"original_text": "The day started with a quick drink.", "album_id": "72157600324602921", "photo_flickr_id": "535344507", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49221", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the day started with a quick drink .", "storylet_id": "246107"}], [{"original_text": "Then it was off to see the sights.", "album_id": "72157600324602921", "photo_flickr_id": "535347105", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49221", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then it was off to see the sights .", "storylet_id": "246108"}], [{"original_text": "She even came across a vintage car.", "album_id": "72157600324602921", "photo_flickr_id": "535239210", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49221", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she even came across a vintage car .", "storylet_id": "246109"}], [{"original_text": "Reina was excited to finally make the trip to San Jose. ", "album_id": "72157600324602921", "photo_flickr_id": "535342269", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49222", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "reina was excited to finally make the trip to location location .", "storylet_id": "246110"}], [{"original_text": "She had heard for years that the town was filled with gorgeous nature", "album_id": "72157600324602921", "photo_flickr_id": "535337735", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49222", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had heard for years that the town was filled with gorgeous nature", "storylet_id": "246111"}], [{"original_text": "and beautiful architecture. ", "album_id": "72157600324602921", "photo_flickr_id": "535235204", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49222", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and beautiful architecture .", "storylet_id": "246112"}], [{"original_text": "Little did she know, though that it was also famous for its drinks,", "album_id": "72157600324602921", "photo_flickr_id": "535187512", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49222", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "little did she know , though that it was also famous for its drinks ,", "storylet_id": "246113"}], [{"original_text": "but she soon learned as she quickly downed her delicious drink. It was a great trip. ", "album_id": "72157600324602921", "photo_flickr_id": "535313619", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49222", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but she soon learned as she quickly downed her delicious drink . it was a great trip .", "storylet_id": "246114"}], [{"original_text": "Liz was so happy to be on vacation. ", "album_id": "72157600324602921", "photo_flickr_id": "535342269", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49223", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "liz was so happy to be on vacation .", "storylet_id": "246115"}], [{"original_text": "She had a great view of the mountains from her hotel. ", "album_id": "72157600324602921", "photo_flickr_id": "535337735", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49223", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had a great view of the mountains from her hotel .", "storylet_id": "246116"}], [{"original_text": "She went to the local restaurant nearby. ", "album_id": "72157600324602921", "photo_flickr_id": "535235204", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49223", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she went to the local restaurant nearby .", "storylet_id": "246117"}], [{"original_text": "She had herself a tasty corn dish. ", "album_id": "72157600324602921", "photo_flickr_id": "535187512", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49223", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she had herself a tasty corn dish .", "storylet_id": "246118"}], [{"original_text": "She loved the sweet taste and texture of her food as she posed for a picture. ", "album_id": "72157600324602921", "photo_flickr_id": "535313619", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49223", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she loved the sweet taste and texture of her food as she posed for a picture .", "storylet_id": "246119"}], [{"original_text": "The water glistened with the suns first rays. ", "album_id": "72157600324602921", "photo_flickr_id": "535339947", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49224", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the water glistened with the suns first rays .", "storylet_id": "246120"}], [{"original_text": "She dressed warmly that day. ", "album_id": "72157600324602921", "photo_flickr_id": "535342269", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49224", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she dressed warmly that day .", "storylet_id": "246121"}], [{"original_text": "She tried an exotic drink in the local bar. ", "album_id": "72157600324602921", "photo_flickr_id": "535344507", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49224", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she tried an exotic drink in the local bar .", "storylet_id": "246122"}], [{"original_text": "She posed at the original well site. ", "album_id": "72157600324602921", "photo_flickr_id": "535347105", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49224", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she posed at the original well site .", "storylet_id": "246123"}], [{"original_text": "The most amazing thing she saw was an old Rolls Royce being used as a planter. ", "album_id": "72157600324602921", "photo_flickr_id": "535239210", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49224", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the most amazing thing she saw was an old rolls [male] being used as a planter .", "storylet_id": "246124"}], [{"original_text": "A girl went to visit this building.", "album_id": "72157600325422018", "photo_flickr_id": "535226859", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "49225", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a girl went to visit this building .", "storylet_id": "246125"}], [{"original_text": "It was a really nice architecturally styled building.", "album_id": "72157600325422018", "photo_flickr_id": "535218539", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "49225", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a really nice architecturally styled building .", "storylet_id": "246126"}], [{"original_text": "She particularly found the pillars very interesting.", "album_id": "72157600325422018", "photo_flickr_id": "535115262", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "49225", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she particularly found the pillars very interesting .", "storylet_id": "246127"}], [{"original_text": "It even had a nice garden.", "album_id": "72157600325422018", "photo_flickr_id": "535108100", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "49225", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it even had a nice garden .", "storylet_id": "246128"}], [{"original_text": "There was even a garden for her to try some of the herbs.", "album_id": "72157600325422018", "photo_flickr_id": "535232919", "setting": "first-2-pick-and-tell", "worker_id": "029TNLF9GALL6NA", "story_id": "49225", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was even a garden for her to try some of the herbs .", "storylet_id": "246129"}], [{"original_text": "We go to a park. It is so nice. ", "album_id": "72157600325422018", "photo_flickr_id": "535218539", "setting": "first-2-pick-and-tell", "worker_id": "GLADFVY0284MUL9", "story_id": "49226", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we go to a park . it is so nice .", "storylet_id": "246130"}], [{"original_text": "This lady admires the view. It is so green.", "album_id": "72157600325422018", "photo_flickr_id": "535226859", "setting": "first-2-pick-and-tell", "worker_id": "GLADFVY0284MUL9", "story_id": "49226", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this lady admires the view . it is so green .", "storylet_id": "246131"}], [{"original_text": "She thinks twice about stepping on the plant. She wants to be careful.", "album_id": "72157600325422018", "photo_flickr_id": "535227833", "setting": "first-2-pick-and-tell", "worker_id": "GLADFVY0284MUL9", "story_id": "49226", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she thinks twice about stepping on the plant . she wants to be careful .", "storylet_id": "246132"}], [{"original_text": "There is another tree growing near the scene. It is very beautiful.", "album_id": "72157600325422018", "photo_flickr_id": "535228547", "setting": "first-2-pick-and-tell", "worker_id": "GLADFVY0284MUL9", "story_id": "49226", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there is another tree growing near the scene . it is very beautiful .", "storylet_id": "246133"}], [{"original_text": "This lady wants to remember this moment forever. She takes a photo next to the tree.", "album_id": "72157600325422018", "photo_flickr_id": "535232919", "setting": "first-2-pick-and-tell", "worker_id": "GLADFVY0284MUL9", "story_id": "49226", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this lady wants to remember this moment forever . she takes a photo next to the tree .", "storylet_id": "246134"}], [{"original_text": "Marlene was excited for the picnic today,", "album_id": "72157600325422018", "photo_flickr_id": "535218539", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49227", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was excited for the picnic today ,", "storylet_id": "246135"}], [{"original_text": "but nobody showed up!", "album_id": "72157600325422018", "photo_flickr_id": "535226859", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49227", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but nobody showed up !", "storylet_id": "246136"}], [{"original_text": "She walked around the premises,", "album_id": "72157600325422018", "photo_flickr_id": "535227833", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49227", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she walked around the premises ,", "storylet_id": "246137"}], [{"original_text": "but still she saw nobody.", "album_id": "72157600325422018", "photo_flickr_id": "535228547", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49227", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but still she saw nobody .", "storylet_id": "246138"}], [{"original_text": "She was livid, but there was nothing she could do, so she picnicked alone. ", "album_id": "72157600325422018", "photo_flickr_id": "535232919", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49227", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was livid , but there was nothing she could do , so she picnicked alone .", "storylet_id": "246139"}], [{"original_text": "She volunteered to work in the campus garden. ", "album_id": "72157600325422018", "photo_flickr_id": "535226859", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49228", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she volunteered to work in the campus garden .", "storylet_id": "246140"}], [{"original_text": "It was starting to look better with each passing day. ", "album_id": "72157600325422018", "photo_flickr_id": "535218539", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49228", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was starting to look better with each passing day .", "storylet_id": "246141"}], [{"original_text": "She hoped to get large potted plants to put in each arch. ", "album_id": "72157600325422018", "photo_flickr_id": "535115262", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49228", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she hoped to get large potted plants to put in each arch .", "storylet_id": "246142"}], [{"original_text": "The flowers she had planted were doing exceptionally well. ", "album_id": "72157600325422018", "photo_flickr_id": "535108100", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49228", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the flowers she had planted were doing exceptionally well .", "storylet_id": "246143"}], [{"original_text": "For her, it was a labor of love. ", "album_id": "72157600325422018", "photo_flickr_id": "535232919", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49228", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for her , it was a labor of love .", "storylet_id": "246144"}], [{"original_text": "Lola leaned against a column and surveyed the yard of her new house.", "album_id": "72157600325422018", "photo_flickr_id": "535226859", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "49229", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] leaned against a column and surveyed the yard of her new house .", "storylet_id": "246145"}], [{"original_text": "The grounds were immaculately kept.", "album_id": "72157600325422018", "photo_flickr_id": "535218539", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "49229", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the grounds were immaculately kept .", "storylet_id": "246146"}], [{"original_text": "The breezeway provided a much needed respite from the sun.", "album_id": "72157600325422018", "photo_flickr_id": "535115262", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "49229", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the breezeway provided a much needed respite from the sun .", "storylet_id": "246147"}], [{"original_text": "Lola planted beautiful herbs and was able to have them anytime she wanted.", "album_id": "72157600325422018", "photo_flickr_id": "535108100", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "49229", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] planted beautiful herbs and was able to have them anytime she wanted .", "storylet_id": "246148"}], [{"original_text": "She could not have been prouder of her new home.", "album_id": "72157600325422018", "photo_flickr_id": "535232919", "setting": "last-3-pick-old-and-tell", "worker_id": "P1ZV77FX7YBKM44", "story_id": "49229", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she could not have been prouder of her new home .", "storylet_id": "246149"}], [{"original_text": "The field was so filled with beautiful flowers and animals.", "album_id": "72157600334514375", "photo_flickr_id": "539253667", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49230", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the field was so filled with beautiful flowers and animals .", "storylet_id": "246150"}], [{"original_text": "The flwere were such a perfect mix of colors. ", "album_id": "72157600334514375", "photo_flickr_id": "538297379", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49230", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flwere were such a perfect mix of colors .", "storylet_id": "246151"}], [{"original_text": "The little bridge gave it such a nice touch.", "album_id": "72157600334514375", "photo_flickr_id": "538297851", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49230", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the little bridge gave it such a nice touch .", "storylet_id": "246152"}], [{"original_text": "The water was so clear you could see all the fish swimming.", "album_id": "72157600334514375", "photo_flickr_id": "538180502", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49230", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the water was so clear you could see all the fish swimming .", "storylet_id": "246153"}], [{"original_text": "The goose had a little baby it was watching after.", "album_id": "72157600334514375", "photo_flickr_id": "538183004", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49230", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the goose had a little baby it was watching after .", "storylet_id": "246154"}], [{"original_text": "I love nature.", "album_id": "72157600334514375", "photo_flickr_id": "538173358", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49231", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love nature .", "storylet_id": "246155"}], [{"original_text": "The beautiful dragonflies.", "album_id": "72157600334514375", "photo_flickr_id": "538303249", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49231", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the beautiful dragonflies .", "storylet_id": "246156"}], [{"original_text": "The pretty flowers.", "album_id": "72157600334514375", "photo_flickr_id": "538293119", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49231", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the pretty flowers .", "storylet_id": "246157"}], [{"original_text": "The grand views.", "album_id": "72157600334514375", "photo_flickr_id": "539253667", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49231", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the grand views .", "storylet_id": "246158"}], [{"original_text": "And the baby geese.", "album_id": "72157600334514375", "photo_flickr_id": "538183004", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49231", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the baby geese .", "storylet_id": "246159"}], [{"original_text": "We hiked out to the nearby lake last week and it was a beautiful day.", "album_id": "72157600334514375", "photo_flickr_id": "539253667", "setting": "last-3-pick-old-and-tell", "worker_id": "L8M6ZZU2QHTVX6B", "story_id": "49232", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we hiked out to the nearby lake last week and it was a beautiful day .", "storylet_id": "246160"}], [{"original_text": "We saw so many pretty flowers, including these delicate white and yellow ones.", "album_id": "72157600334514375", "photo_flickr_id": "538297379", "setting": "last-3-pick-old-and-tell", "worker_id": "L8M6ZZU2QHTVX6B", "story_id": "49232", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw so many pretty flowers , including these delicate white and yellow ones .", "storylet_id": "246161"}], [{"original_text": "We crossed a small wooden bridge that was really quaint.", "album_id": "72157600334514375", "photo_flickr_id": "538297851", "setting": "last-3-pick-old-and-tell", "worker_id": "L8M6ZZU2QHTVX6B", "story_id": "49232", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we crossed a small wooden bridge that was really quaint .", "storylet_id": "246162"}], [{"original_text": "Light green moss blanketed the ground like a living carpet.", "album_id": "72157600334514375", "photo_flickr_id": "538180502", "setting": "last-3-pick-old-and-tell", "worker_id": "L8M6ZZU2QHTVX6B", "story_id": "49232", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "light green moss blanketed the ground like a living carpet .", "storylet_id": "246163"}], [{"original_text": "We passed by this cute little family of ducks as we made our way back home.", "album_id": "72157600334514375", "photo_flickr_id": "538183004", "setting": "last-3-pick-old-and-tell", "worker_id": "L8M6ZZU2QHTVX6B", "story_id": "49232", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we passed by this cute little family of ducks as we made our way back home .", "storylet_id": "246164"}], [{"original_text": "Large mushrooms cascaded down the old tree stump. ", "album_id": "72157600334514375", "photo_flickr_id": "538173358", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49233", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "large mushrooms cascaded down the old tree stump .", "storylet_id": "246165"}], [{"original_text": "A dragon fly rested on a leaf over the water. ", "album_id": "72157600334514375", "photo_flickr_id": "538303249", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49233", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a dragon fly rested on a leaf over the water .", "storylet_id": "246166"}], [{"original_text": "The waterlilies were beginning to bloom. ", "album_id": "72157600334514375", "photo_flickr_id": "538293119", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49233", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the waterlilies were beginning to bloom .", "storylet_id": "246167"}], [{"original_text": "The road had lush greenery on both side. ", "album_id": "72157600334514375", "photo_flickr_id": "539253667", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49233", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the road had lush greenery on both side .", "storylet_id": "246168"}], [{"original_text": "A family of ducks ate their morning meal. ", "album_id": "72157600334514375", "photo_flickr_id": "538183004", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49233", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a family of ducks ate their morning meal .", "storylet_id": "246169"}], [{"original_text": "It was a lovely day outside.", "album_id": "72157600334514375", "photo_flickr_id": "538173358", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "49234", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a lovely day outside .", "storylet_id": "246170"}], [{"original_text": "This little bug landed on a leave plant.", "album_id": "72157600334514375", "photo_flickr_id": "538303249", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "49234", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this little bug landed on a leave plant .", "storylet_id": "246171"}], [{"original_text": "Then he made up his mind to move to another flower.", "album_id": "72157600334514375", "photo_flickr_id": "538293119", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "49234", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then he made up his mind to move to another flower .", "storylet_id": "246172"}], [{"original_text": "The fields were very beautiful.", "album_id": "72157600334514375", "photo_flickr_id": "539253667", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "49234", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fields were very beautiful .", "storylet_id": "246173"}], [{"original_text": "He seen some of his duck buddies and decided to say hello.", "album_id": "72157600334514375", "photo_flickr_id": "538183004", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "49234", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he seen some of his duck buddies and decided to say hello .", "storylet_id": "246174"}], [{"original_text": "I went to a village.", "album_id": "72157600738834989", "photo_flickr_id": "765359781", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49235", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a village .", "storylet_id": "246175"}], [{"original_text": "Many trees grew there.", "album_id": "72157600738834989", "photo_flickr_id": "766292776", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49235", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many trees grew there .", "storylet_id": "246176"}], [{"original_text": "They were taking over.", "album_id": "72157600738834989", "photo_flickr_id": "766228474", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49235", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were taking over .", "storylet_id": "246177"}], [{"original_text": "The village was in ruins.", "album_id": "72157600738834989", "photo_flickr_id": "765367401", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49235", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the village was in ruins .", "storylet_id": "246178"}], [{"original_text": "But it was still epic.", "album_id": "72157600738834989", "photo_flickr_id": "765370795", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49235", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but it was still epic .", "storylet_id": "246179"}], [{"original_text": "It was the entrance to the ancient city. We were all excited.", "album_id": "72157600738834989", "photo_flickr_id": "766263320", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49236", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the entrance to the ancient city . we were all excited .", "storylet_id": "246180"}], [{"original_text": "These buildings were absolute wonders.", "album_id": "72157600738834989", "photo_flickr_id": "765359781", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49236", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these buildings were absolute wonders .", "storylet_id": "246181"}], [{"original_text": "This tree majestically soured into the sky.", "album_id": "72157600738834989", "photo_flickr_id": "766292776", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49236", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this tree majestically soured into the sky .", "storylet_id": "246182"}], [{"original_text": "This tree actually became part of the city.", "album_id": "72157600738834989", "photo_flickr_id": "766228474", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49236", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this tree actually became part of the city .", "storylet_id": "246183"}], [{"original_text": "Before we left we snapped one more shot of this amazing temple. ", "album_id": "72157600738834989", "photo_flickr_id": "765387567", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49236", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before we left we snapped one more shot of this amazing temple .", "storylet_id": "246184"}], [{"original_text": "The tourists excitedly walked through the safari park. ", "album_id": "72157600738834989", "photo_flickr_id": "766263320", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49237", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tourists excitedly walked through the safari park .", "storylet_id": "246185"}], [{"original_text": "They were excited to see the animals", "album_id": "72157600738834989", "photo_flickr_id": "765359781", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49237", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were excited to see the animals", "storylet_id": "246186"}], [{"original_text": "and the oddly shaped trees.", "album_id": "72157600738834989", "photo_flickr_id": "766292776", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49237", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the oddly shaped trees .", "storylet_id": "246187"}], [{"original_text": "They trekked through the park", "album_id": "72157600738834989", "photo_flickr_id": "766228474", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49237", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they trekked through the park", "storylet_id": "246188"}], [{"original_text": "in search of the hiding animals. ", "album_id": "72157600738834989", "photo_flickr_id": "765387567", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49237", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in search of the hiding animals .", "storylet_id": "246189"}], [{"original_text": "The ancient structure was taken over by the plants. ", "album_id": "72157600738834989", "photo_flickr_id": "765359781", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49238", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ancient structure was taken over by the plants .", "storylet_id": "246190"}], [{"original_text": "A tree had taken root and grown very tall on top the building. ", "album_id": "72157600738834989", "photo_flickr_id": "766292776", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49238", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a tree had taken root and grown very tall on top the building .", "storylet_id": "246191"}], [{"original_text": "Another tree had knees with roots that covered the stone fence. ", "album_id": "72157600738834989", "photo_flickr_id": "766228474", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49238", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another tree had knees with roots that covered the stone fence .", "storylet_id": "246192"}], [{"original_text": "Moss was beginning to grow on the ancient wall. ", "album_id": "72157600738834989", "photo_flickr_id": "765367401", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49238", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "moss was beginning to grow on the ancient wall .", "storylet_id": "246193"}], [{"original_text": "From the doorway you could see the plants on the other side. ", "album_id": "72157600738834989", "photo_flickr_id": "765370795", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49238", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "from the doorway you could see the plants on the other side .", "storylet_id": "246194"}], [{"original_text": "The tour took place in the ruins of a Thai village.", "album_id": "72157600738834989", "photo_flickr_id": "766263320", "setting": "last-3-pick-old-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49239", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tour took place in the ruins of a thai village .", "storylet_id": "246195"}], [{"original_text": "They showed us the old Buddisht temple remains.", "album_id": "72157600738834989", "photo_flickr_id": "765359781", "setting": "last-3-pick-old-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49239", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they showed us the old buddisht temple remains .", "storylet_id": "246196"}], [{"original_text": "The old trees around the property were thousands of years old.", "album_id": "72157600738834989", "photo_flickr_id": "766292776", "setting": "last-3-pick-old-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49239", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the old trees around the property were thousands of years old .", "storylet_id": "246197"}], [{"original_text": "They grew deep and wide into the ground.", "album_id": "72157600738834989", "photo_flickr_id": "766228474", "setting": "last-3-pick-old-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49239", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they grew deep and wide into the ground .", "storylet_id": "246198"}], [{"original_text": "The old decaying structure was a great and scary.", "album_id": "72157600738834989", "photo_flickr_id": "765387567", "setting": "last-3-pick-old-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49239", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the old decaying structure was a great and scary .", "storylet_id": "246199"}], [{"original_text": "I climbed the stairs.", "album_id": "72157600908003290", "photo_flickr_id": "854028751", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49240", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i climbed the stairs .", "storylet_id": "246200"}], [{"original_text": "The lead to this place.", "album_id": "72157600908003290", "photo_flickr_id": "854887050", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49240", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lead to this place .", "storylet_id": "246201"}], [{"original_text": "It was a beautiful stream.", "album_id": "72157600908003290", "photo_flickr_id": "854027339", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49240", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a beautiful stream .", "storylet_id": "246202"}], [{"original_text": "It was in the jungle.", "album_id": "72157600908003290", "photo_flickr_id": "854884738", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49240", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was in the jungle .", "storylet_id": "246203"}], [{"original_text": "And there was a waterfall.", "album_id": "72157600908003290", "photo_flickr_id": "854883460", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49240", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and there was a waterfall .", "storylet_id": "246204"}], [{"original_text": "The teen outreach group went on a hike.", "album_id": "72157600908003290", "photo_flickr_id": "854028751", "setting": "first-2-pick-and-tell", "worker_id": "8U4IW0SIQSY4MID", "story_id": "49241", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the teen outreach group went on a hike .", "storylet_id": "246205"}], [{"original_text": "The kids were all very excited to get to explore nature. ", "album_id": "72157600908003290", "photo_flickr_id": "854021989", "setting": "first-2-pick-and-tell", "worker_id": "8U4IW0SIQSY4MID", "story_id": "49241", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids were all very excited to get to explore nature .", "storylet_id": "246206"}], [{"original_text": "They got up close and personal with the wild.", "album_id": "72157600908003290", "photo_flickr_id": "854016599", "setting": "first-2-pick-and-tell", "worker_id": "8U4IW0SIQSY4MID", "story_id": "49241", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they got up close and personal with the wild .", "storylet_id": "246207"}], [{"original_text": "And stopped for a break and a picnic lunch.", "album_id": "72157600908003290", "photo_flickr_id": "854867124", "setting": "first-2-pick-and-tell", "worker_id": "8U4IW0SIQSY4MID", "story_id": "49241", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and stopped for a break and a picnic lunch .", "storylet_id": "246208"}], [{"original_text": "They were all very impressed by the majesty of the outdoors.", "album_id": "72157600908003290", "photo_flickr_id": "854860546", "setting": "first-2-pick-and-tell", "worker_id": "8U4IW0SIQSY4MID", "story_id": "49241", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were all very impressed by the majesty of the outdoors .", "storylet_id": "246209"}], [{"original_text": "There was no one on the stairs", "album_id": "72157600908003290", "photo_flickr_id": "854028751", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49242", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was no one on the stairs", "storylet_id": "246210"}], [{"original_text": "There was no one in the water.", "album_id": "72157600908003290", "photo_flickr_id": "854887050", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49242", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was no one in the water .", "storylet_id": "246211"}], [{"original_text": "The park was completely abandoned.", "album_id": "72157600908003290", "photo_flickr_id": "854027339", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49242", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the park was completely abandoned .", "storylet_id": "246212"}], [{"original_text": "But maybe it was all for the best, the plants thought, because now no one will step on us", "album_id": "72157600908003290", "photo_flickr_id": "854884738", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49242", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but maybe it was all for the best , the plants thought , because now no one will step on us", "storylet_id": "246213"}], [{"original_text": "and the animals will be free to roam around as they please. ", "album_id": "72157600908003290", "photo_flickr_id": "854883460", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49242", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the animals will be free to roam around as they please .", "storylet_id": "246214"}], [{"original_text": "The stairs meandered down the hillside among the lush, tropical vegetation. ", "album_id": "72157600908003290", "photo_flickr_id": "854028751", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49243", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stairs meandered down the hillside among the lush , tropical vegetation .", "storylet_id": "246215"}], [{"original_text": "The sounds of the small brook were peaceful. ", "album_id": "72157600908003290", "photo_flickr_id": "854887050", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49243", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sounds of the small brook were peaceful .", "storylet_id": "246216"}], [{"original_text": "A small waterfall intensified the sounds of the water. ", "album_id": "72157600908003290", "photo_flickr_id": "854027339", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49243", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a small waterfall intensified the sounds of the water .", "storylet_id": "246217"}], [{"original_text": "The underbrush was thick. ", "album_id": "72157600908003290", "photo_flickr_id": "854884738", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49243", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the underbrush was thick .", "storylet_id": "246218"}], [{"original_text": "A larger waterfall was ahead beyond the path. ", "album_id": "72157600908003290", "photo_flickr_id": "854883460", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49243", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a larger waterfall was ahead beyond the path .", "storylet_id": "246219"}], [{"original_text": "A group of friends got together for a hike.", "album_id": "72157600908003290", "photo_flickr_id": "854028751", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "49244", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends got together for a hike .", "storylet_id": "246220"}], [{"original_text": "They made their way up the mountain.", "album_id": "72157600908003290", "photo_flickr_id": "854021989", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "49244", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they made their way up the mountain .", "storylet_id": "246221"}], [{"original_text": "Being careful not to slip and fall.", "album_id": "72157600908003290", "photo_flickr_id": "854016599", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "49244", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "being careful not to slip and fall .", "storylet_id": "246222"}], [{"original_text": "After reaching the top they sit down for a short rest.", "album_id": "72157600908003290", "photo_flickr_id": "854867124", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "49244", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after reaching the top they sit down for a short rest .", "storylet_id": "246223"}], [{"original_text": "They really take in the beauty of the mountain top by taking a picture of this waterfall.", "album_id": "72157600908003290", "photo_flickr_id": "854860546", "setting": "last-3-pick-old-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "49244", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they really take in the beauty of the mountain top by taking a picture of this waterfall .", "storylet_id": "246224"}], [{"original_text": "The leaf was perfectly shaped. ", "album_id": "72157606501282252", "photo_flickr_id": "941975397", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49245", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the leaf was perfectly shaped .", "storylet_id": "246225"}], [{"original_text": "The pink was so bright on these flowers. ", "album_id": "72157606501282252", "photo_flickr_id": "942818210", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49245", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pink was so bright on these flowers .", "storylet_id": "246226"}], [{"original_text": "The white flowers had a hint of pink to them.", "album_id": "72157606501282252", "photo_flickr_id": "941971999", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49245", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the white flowers had a hint of pink to them .", "storylet_id": "246227"}], [{"original_text": "These flowers were shaped strangely, but pretty. ", "album_id": "72157606501282252", "photo_flickr_id": "942817210", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49245", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these flowers were shaped strangely , but pretty .", "storylet_id": "246228"}], [{"original_text": "I never saw a flower like this. ", "album_id": "72157606501282252", "photo_flickr_id": "942813226", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49245", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i never saw a flower like this .", "storylet_id": "246229"}], [{"original_text": "I love nature.", "album_id": "72157606501282252", "photo_flickr_id": "941975397", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49246", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love nature .", "storylet_id": "246230"}], [{"original_text": "Look at all the colors.", "album_id": "72157606501282252", "photo_flickr_id": "942818210", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49246", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look at all the colors .", "storylet_id": "246231"}], [{"original_text": "The flowers were pretty.", "album_id": "72157606501282252", "photo_flickr_id": "941971999", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49246", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the flowers were pretty .", "storylet_id": "246232"}], [{"original_text": "The lily was huge.", "album_id": "72157606501282252", "photo_flickr_id": "941962469", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49246", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lily was huge .", "storylet_id": "246233"}], [{"original_text": "And the leaves were abundant.", "album_id": "72157606501282252", "photo_flickr_id": "941970807", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49246", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the leaves were abundant .", "storylet_id": "246234"}], [{"original_text": "nature is so beautiful at this time of year, all the leaves turn green. ", "album_id": "72157606501282252", "photo_flickr_id": "941975397", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49247", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "nature is so beautiful at this time of year , all the leaves turn green .", "storylet_id": "246235"}], [{"original_text": "there are bright pink flowers that adorn the trees. ", "album_id": "72157606501282252", "photo_flickr_id": "942818210", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49247", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are bright pink flowers that adorn the trees .", "storylet_id": "246236"}], [{"original_text": "the water flowers appear from the pond. ", "album_id": "72157606501282252", "photo_flickr_id": "941971999", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49247", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water flowers appear from the pond .", "storylet_id": "246237"}], [{"original_text": "this particular pond has huge water lillies that float on the water. ", "album_id": "72157606501282252", "photo_flickr_id": "941962469", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49247", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this particular pond has huge water lillies that float on the water .", "storylet_id": "246238"}], [{"original_text": "there are many different types of vegetation growing in the water. ", "album_id": "72157606501282252", "photo_flickr_id": "941970807", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49247", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are many different types of vegetation growing in the water .", "storylet_id": "246239"}], [{"original_text": "With all the plants coming back to life it was the perfect time to visit the botanical garden. ", "album_id": "72157606501282252", "photo_flickr_id": "941975397", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49248", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "with all the plants coming back to life it was the perfect time to visit the botanical garden .", "storylet_id": "246240"}], [{"original_text": "The smallest pedals produced vivid colors. ", "album_id": "72157606501282252", "photo_flickr_id": "942818210", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49248", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the smallest pedals produced vivid colors .", "storylet_id": "246241"}], [{"original_text": "The white blossoms were so fragrant. ", "album_id": "72157606501282252", "photo_flickr_id": "941971999", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49248", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the white blossoms were so fragrant .", "storylet_id": "246242"}], [{"original_text": "In the water pond three new platforms had been added. ", "album_id": "72157606501282252", "photo_flickr_id": "941962469", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49248", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the water pond three new platforms had been added .", "storylet_id": "246243"}], [{"original_text": "The small waterlilies were doing quite well already. ", "album_id": "72157606501282252", "photo_flickr_id": "941970807", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49248", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the small waterlilies were doing quite well already .", "storylet_id": "246244"}], [{"original_text": "I have been outside doing micro photography for a class project. ", "album_id": "72157606501282252", "photo_flickr_id": "941975397", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "49249", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have been outside doing micro photography for a class project .", "storylet_id": "246245"}], [{"original_text": "Love how it is possible to get a good blur in pictures like this. ", "album_id": "72157606501282252", "photo_flickr_id": "942818210", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "49249", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "love how it is possible to get a good blur in pictures like this .", "storylet_id": "246246"}], [{"original_text": "These flowers were so beautiful. One of my class subjects is nature. ", "album_id": "72157606501282252", "photo_flickr_id": "941971999", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "49249", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these flowers were so beautiful . one of my class subjects is nature .", "storylet_id": "246247"}], [{"original_text": "Nothing beats getting out and taking pictures of sites like this. Most people never experience this. ", "album_id": "72157606501282252", "photo_flickr_id": "942817210", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "49249", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "nothing beats getting out and taking pictures of sites like this . most people never experience this .", "storylet_id": "246248"}], [{"original_text": "Last but not least a single red flower. This day of shooting turned out very good. ", "album_id": "72157606501282252", "photo_flickr_id": "942813226", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "49249", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last but not least a single red flower . this day of shooting turned out very good .", "storylet_id": "246249"}], [{"original_text": "We wanted to get closer to nature so we took a grass pathway.", "album_id": "72157600600643506", "photo_flickr_id": "691991553", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49250", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we wanted to get closer to nature so we took a grass pathway .", "storylet_id": "246250"}], [{"original_text": "We got to the shaded area under some trees.", "album_id": "72157600600643506", "photo_flickr_id": "692053623", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49250", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to the shaded area under some trees .", "storylet_id": "246251"}], [{"original_text": "A few miles away was a lake that we really enjoyed watching.", "album_id": "72157600600643506", "photo_flickr_id": "692991106", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49250", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few miles away was a lake that we really enjoyed watching .", "storylet_id": "246252"}], [{"original_text": "My friend found this patch of grass.", "album_id": "72157600600643506", "photo_flickr_id": "693043152", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49250", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friend found this patch of grass .", "storylet_id": "246253"}], [{"original_text": "I was really amazed at the complexity of the trees.", "album_id": "72157600600643506", "photo_flickr_id": "693159880", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49250", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was really amazed at the complexity of the trees .", "storylet_id": "246254"}], [{"original_text": "This is one of my pet Chuchi. We love to walked every morning.", "album_id": "72157600600643506", "photo_flickr_id": "692368525", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "49251", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is one of my pet chuchi . we love to walked every morning .", "storylet_id": "246255"}], [{"original_text": "along the way we found a butterfly that injured on the left wing. ", "album_id": "72157600600643506", "photo_flickr_id": "693277934", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "49251", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "along the way we found a butterfly that injured on the left wing .", "storylet_id": "246256"}], [{"original_text": "As we walked we see this beautiful nature that full of greens.", "album_id": "72157600600643506", "photo_flickr_id": "692896772", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "49251", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as we walked we see this beautiful nature that full of greens .", "storylet_id": "246257"}], [{"original_text": "On the other side we have this view in which no leaves on the tree.", "album_id": "72157600600643506", "photo_flickr_id": "692378631", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "49251", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on the other side we have this view in which no leaves on the tree .", "storylet_id": "246258"}], [{"original_text": "After 2 weeks this is what happen to the tree. So sad to look at.", "album_id": "72157600600643506", "photo_flickr_id": "692405357", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "49251", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after 2 weeks this is what happen to the tree . so sad to look at .", "storylet_id": "246259"}], [{"original_text": "The farm stretched for acres and miles, more than I could count. ", "album_id": "72157600600643506", "photo_flickr_id": "691991553", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49252", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the farm stretched for acres and miles , more than i could count .", "storylet_id": "246260"}], [{"original_text": "All of the trees provided ample shade. ", "album_id": "72157600600643506", "photo_flickr_id": "692053623", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49252", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the trees provided ample shade .", "storylet_id": "246261"}], [{"original_text": "The lake has a beautiful blue color. ", "album_id": "72157600600643506", "photo_flickr_id": "692991106", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49252", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lake has a beautiful blue color .", "storylet_id": "246262"}], [{"original_text": "Minimal plants grew on the dirt filled hills. ", "album_id": "72157600600643506", "photo_flickr_id": "693043152", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49252", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "minimal plants grew on the dirt filled hills .", "storylet_id": "246263"}], [{"original_text": "A woodpecker made a hole in the tree. ", "album_id": "72157600600643506", "photo_flickr_id": "693159880", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49252", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a woodpecker made a hole in the tree .", "storylet_id": "246264"}], [{"original_text": "There were lots of neat things to take pictures of on our trip to the country. This guy was checking us out.", "album_id": "72157600600643506", "photo_flickr_id": "692368525", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49253", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were lots of neat things to take pictures of on our trip to the country . this guy was checking us out .", "storylet_id": "246265"}], [{"original_text": "I've never seen a butterfly like this. Isn't it pretty?", "album_id": "72157600600643506", "photo_flickr_id": "693277934", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49253", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 've never seen a butterfly like this . is n't it pretty ?", "storylet_id": "246266"}], [{"original_text": "The grass was so green from all the rain.", "album_id": "72157600600643506", "photo_flickr_id": "692896772", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49253", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the grass was so green from all the rain .", "storylet_id": "246267"}], [{"original_text": "There were some trees that hadn't gotten their leaves back yet.", "album_id": "72157600600643506", "photo_flickr_id": "692378631", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49253", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were some trees that had n't gotten their leaves back yet .", "storylet_id": "246268"}], [{"original_text": "I thought this deadwood was really beautiful, too, like tall sentinels. ", "album_id": "72157600600643506", "photo_flickr_id": "692405357", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49253", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i thought this deadwood was really beautiful , too , like tall sentinels .", "storylet_id": "246269"}], [{"original_text": "Pepper found her way home.", "album_id": "72157600600643506", "photo_flickr_id": "692368525", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49254", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "pepper found her way home .", "storylet_id": "246270"}], [{"original_text": "She went chasing after a butterfly.", "album_id": "72157600600643506", "photo_flickr_id": "693277934", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49254", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she went chasing after a butterfly .", "storylet_id": "246271"}], [{"original_text": "She chased to the woods.", "album_id": "72157600600643506", "photo_flickr_id": "692896772", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49254", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she chased to the woods .", "storylet_id": "246272"}], [{"original_text": "We found her by the water.", "album_id": "72157600600643506", "photo_flickr_id": "692378631", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49254", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found her by the water .", "storylet_id": "246273"}], [{"original_text": "She has gotten frightened.", "album_id": "72157600600643506", "photo_flickr_id": "692405357", "setting": "last-3-pick-old-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49254", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she has gotten frightened .", "storylet_id": "246274"}], [{"original_text": "Today was our botany hike, we planned to take pictures of all sorts of stuff.", "album_id": "72157601226364674", "photo_flickr_id": "1014486142", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "49255", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was our botany hike , we planned to take pictures of all sorts of stuff .", "storylet_id": "246275"}], [{"original_text": "We found a cool berry, not sure what it is, bu it looked pretty.", "album_id": "72157601226364674", "photo_flickr_id": "1014501810", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "49255", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we found a cool berry , not sure what it is , bu it looked pretty .", "storylet_id": "246276"}], [{"original_text": "Mandatory Banana Slug picture, you'll see one on every hike.", "album_id": "72157601226364674", "photo_flickr_id": "1014518682", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "49255", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mandatory banana slug picture , you 'll see one on every hike .", "storylet_id": "246277"}], [{"original_text": "We found a cool little succulent plant growing on a rocky area.", "album_id": "72157601226364674", "photo_flickr_id": "1013700321", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "49255", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found a cool little succulent plant growing on a rocky area .", "storylet_id": "246278"}], [{"original_text": "Although we didn't see many flowering plants, we found these two species all over the forest floor.", "album_id": "72157601226364674", "photo_flickr_id": "1014583114", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "49255", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "although we did n't see many flowering plants , we found these two species all over the forest floor .", "storylet_id": "246279"}], [{"original_text": "Though sometimes it may be hard to see.", "album_id": "72157601226364674", "photo_flickr_id": "1014612226", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "49256", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "though sometimes it may be hard to see .", "storylet_id": "246280"}], [{"original_text": "I know I live in one of the most beautiful places in the world.", "album_id": "72157601226364674", "photo_flickr_id": "1013680303", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "49256", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i know i live in one of the most beautiful places in the world .", "storylet_id": "246281"}], [{"original_text": "I may not be as beautiful it's true. ", "album_id": "72157601226364674", "photo_flickr_id": "1014599294", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "49256", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i may not be as beautiful it 's true .", "storylet_id": "246282"}], [{"original_text": "But everyday I do my job eating all of the decaying forest vegetation. ", "album_id": "72157601226364674", "photo_flickr_id": "1014518682", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "49256", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but everyday i do my job eating all of the decaying forest vegetation .", "storylet_id": "246283"}], [{"original_text": "So that new things can grow around me.", "album_id": "72157601226364674", "photo_flickr_id": "1013700321", "setting": "first-2-pick-and-tell", "worker_id": "QFMM341WZOY9I5O", "story_id": "49256", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so that new things can grow around me .", "storylet_id": "246284"}], [{"original_text": "I went out for a hike out in the hills this morning while it was foggy. I thought the light would be great for some photography.", "album_id": "72157601226364674", "photo_flickr_id": "1014612226", "setting": "last-3-pick-old-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "49257", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went out for a hike out in the hills this morning while it was foggy . i thought the light would be great for some photography .", "storylet_id": "246285"}], [{"original_text": "The fog got thicker as I hiked up into the trees.", "album_id": "72157601226364674", "photo_flickr_id": "1013680303", "setting": "last-3-pick-old-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "49257", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fog got thicker as i hiked up into the trees .", "storylet_id": "246286"}], [{"original_text": "I found a neat-looking banana slug making its way along some rocks, and snapped a photo", "album_id": "72157601226364674", "photo_flickr_id": "1014599294", "setting": "last-3-pick-old-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "49257", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i found a neat-looking banana slug making its way along some rocks , and snapped a photo", "storylet_id": "246287"}], [{"original_text": "Later, I found another banana slug, and got an even better close-up shot.", "album_id": "72157601226364674", "photo_flickr_id": "1014518682", "setting": "last-3-pick-old-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "49257", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later , i found another banana slug , and got an even better close-up shot .", "storylet_id": "246288"}], [{"original_text": "Finally, I came across this neat, brightly-colored succulent. It made for another great photo!", "album_id": "72157601226364674", "photo_flickr_id": "1013700321", "setting": "last-3-pick-old-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "49257", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , i came across this neat , brightly-colored succulent . it made for another great photo !", "storylet_id": "246289"}], [{"original_text": "This was the most organic hiking trip I've been on. ", "album_id": "72157601226364674", "photo_flickr_id": "1014486142", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "49258", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the most organic hiking trip i 've been on .", "storylet_id": "246290"}], [{"original_text": "The berries looked like something straight out of Willy Wonka's Factory. ", "album_id": "72157601226364674", "photo_flickr_id": "1014501810", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "49258", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the berries looked like something straight out of willy wonka 's factory .", "storylet_id": "246291"}], [{"original_text": "The animals had a very Jurassic Park feel to them. ", "album_id": "72157601226364674", "photo_flickr_id": "1014518682", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "49258", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the animals had a very jurassic park feel to them .", "storylet_id": "246292"}], [{"original_text": "I felt like everything looked colorful and thus probably poisonous. ", "album_id": "72157601226364674", "photo_flickr_id": "1013700321", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "49258", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i felt like everything looked colorful and thus probably poisonous .", "storylet_id": "246293"}], [{"original_text": "The only sane looking thing was the flowers, at least they looked normal. ", "album_id": "72157601226364674", "photo_flickr_id": "1014583114", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "49258", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the only sane looking thing was the flowers , at least they looked normal .", "storylet_id": "246294"}], [{"original_text": "We went on a nature hike today.", "album_id": "72157601226364674", "photo_flickr_id": "1014486142", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49259", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on a nature hike today .", "storylet_id": "246295"}], [{"original_text": "There were many beautiful things around the forest.", "album_id": "72157601226364674", "photo_flickr_id": "1014501810", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49259", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many beautiful things around the forest .", "storylet_id": "246296"}], [{"original_text": "We even got to see some wildlife.", "album_id": "72157601226364674", "photo_flickr_id": "1014518682", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49259", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even got to see some wildlife .", "storylet_id": "246297"}], [{"original_text": "We took many pictures of all the plants.", "album_id": "72157601226364674", "photo_flickr_id": "1013700321", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49259", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took many pictures of all the plants .", "storylet_id": "246298"}], [{"original_text": "We had a great time and got so many great pictures.", "album_id": "72157601226364674", "photo_flickr_id": "1014583114", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49259", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time and got so many great pictures .", "storylet_id": "246299"}], [{"original_text": "The windows on this restaurant have this cool embellishment.", "album_id": "72157602007678960", "photo_flickr_id": "1382134303", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49260", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the windows on this restaurant have this cool embellishment .", "storylet_id": "246300"}], [{"original_text": "The back has a cool retro feel to it.", "album_id": "72157602007678960", "photo_flickr_id": "1383032696", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49260", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the back has a cool retro feel to it .", "storylet_id": "246301"}], [{"original_text": "They light up the trees all around the building.", "album_id": "72157602007678960", "photo_flickr_id": "1383035734", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49260", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they light up the trees all around the building .", "storylet_id": "246302"}], [{"original_text": "The white dog was just hanging around and enjoying the day", "album_id": "72157602007678960", "photo_flickr_id": "1382141127", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49260", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the white dog was just hanging around and enjoying the day", "storylet_id": "246303"}], [{"original_text": "You could see a house through the brush.", "album_id": "72157602007678960", "photo_flickr_id": "1383040336", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49260", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you could see a house through the brush .", "storylet_id": "246304"}], [{"original_text": "This is my house.", "album_id": "72157602007678960", "photo_flickr_id": "1382134303", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49261", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my house .", "storylet_id": "246305"}], [{"original_text": "It's not very good.", "album_id": "72157602007678960", "photo_flickr_id": "1383032696", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49261", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's not very good .", "storylet_id": "246306"}], [{"original_text": "Neither is this picture.", "album_id": "72157602007678960", "photo_flickr_id": "1383035734", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49261", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "neither is this picture .", "storylet_id": "246307"}], [{"original_text": "But there's my dog.", "album_id": "72157602007678960", "photo_flickr_id": "1382141127", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49261", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but there 's my dog .", "storylet_id": "246308"}], [{"original_text": "He runs through this yard.", "album_id": "72157602007678960", "photo_flickr_id": "1383040336", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49261", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he runs through this yard .", "storylet_id": "246309"}], [{"original_text": "Everything was looking nice.", "album_id": "72157602007678960", "photo_flickr_id": "1382134303", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49262", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everything was looking nice .", "storylet_id": "246310"}], [{"original_text": "The weather was getting cold.", "album_id": "72157602007678960", "photo_flickr_id": "1383032696", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49262", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the weather was getting cold .", "storylet_id": "246311"}], [{"original_text": "The trees were lit up for all to see.", "album_id": "72157602007678960", "photo_flickr_id": "1383035734", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49262", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the trees were lit up for all to see .", "storylet_id": "246312"}], [{"original_text": "People walked on the city streets.", "album_id": "72157602007678960", "photo_flickr_id": "1382141127", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49262", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people walked on the city streets .", "storylet_id": "246313"}], [{"original_text": "They didn't know when the weather would turn.", "album_id": "72157602007678960", "photo_flickr_id": "1383040336", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49262", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they did n't know when the weather would turn .", "storylet_id": "246314"}], [{"original_text": "I left the house i just got to go see the community.", "album_id": "72157602007678960", "photo_flickr_id": "1382134303", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49263", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i left the house i just got to go see the community .", "storylet_id": "246315"}], [{"original_text": "Stopped by the neighbors but no one was home.", "album_id": "72157602007678960", "photo_flickr_id": "1383032696", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49263", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "stopped by the neighbors but no one was home .", "storylet_id": "246316"}], [{"original_text": "They had lights set for Christmas in their trees", "album_id": "72157602007678960", "photo_flickr_id": "1383035734", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49263", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had lights set for christmas in their trees", "storylet_id": "246317"}], [{"original_text": "The street itself was simple and relaxing.", "album_id": "72157602007678960", "photo_flickr_id": "1382141127", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49263", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the street itself was simple and relaxing .", "storylet_id": "246318"}], [{"original_text": "We walked back home through the trail and called it a day.", "album_id": "72157602007678960", "photo_flickr_id": "1383040336", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49263", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we walked back home through the trail and called it a day .", "storylet_id": "246319"}], [{"original_text": "Todd wanted to fix up his old house. ", "album_id": "72157602007678960", "photo_flickr_id": "1382134303", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49264", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] wanted to fix up his old house .", "storylet_id": "246320"}], [{"original_text": "He wanted to redo the bricks on the outside. ", "album_id": "72157602007678960", "photo_flickr_id": "1383032696", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49264", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he wanted to redo the bricks on the outside .", "storylet_id": "246321"}], [{"original_text": "He got inspiration to also add lights from his neighbor. ", "album_id": "72157602007678960", "photo_flickr_id": "1383035734", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49264", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he got inspiration to also add lights from his neighbor .", "storylet_id": "246322"}], [{"original_text": "He walked down to the local hardware store to buy his supplies. ", "album_id": "72157602007678960", "photo_flickr_id": "1382141127", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49264", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he walked down to the local hardware store to buy his supplies .", "storylet_id": "246323"}], [{"original_text": "He also remembered he needed to mow his front lawn. ", "album_id": "72157602007678960", "photo_flickr_id": "1383040336", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49264", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he also remembered he needed to mow his front lawn .", "storylet_id": "246324"}], [{"original_text": "There were lots of cars.", "album_id": "72157602410720603", "photo_flickr_id": "1565939996", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49265", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were lots of cars .", "storylet_id": "246325"}], [{"original_text": "They were blurry.", "album_id": "72157602410720603", "photo_flickr_id": "1565083739", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49265", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were blurry .", "storylet_id": "246326"}], [{"original_text": "There was a lake.", "album_id": "72157602410720603", "photo_flickr_id": "1565093813", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49265", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a lake .", "storylet_id": "246327"}], [{"original_text": "The tree fell in the lake.", "album_id": "72157602410720603", "photo_flickr_id": "1565981998", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49265", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the tree fell in the lake .", "storylet_id": "246328"}], [{"original_text": "I saw a spider too.", "album_id": "72157602410720603", "photo_flickr_id": "1565972884", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49265", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i saw a spider too .", "storylet_id": "246329"}], [{"original_text": "Timmy and I went on a nature walk. I made sure his jacket was on since it is a little bit cold. He said he wanted to bring his Frisbee that Daddy had bought him.", "album_id": "72157602410720603", "photo_flickr_id": "1565071461", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "49266", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and i went on a nature walk . i made sure his jacket was on since it is a little bit cold . he said he wanted to bring his frisbee that daddy had bought him .", "storylet_id": "246330"}], [{"original_text": "Look at the size of this leaf! It is huge. We saw several this size. We also saw mushrooms.", "album_id": "72157602410720603", "photo_flickr_id": "1565092847", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "49266", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look at the size of this leaf ! it is huge . we saw several this size . we also saw mushrooms .", "storylet_id": "246331"}], [{"original_text": "Timmy said he was hot, so I took off his jacket. He is such a cutie!", "album_id": "72157602410720603", "photo_flickr_id": "1565963570", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "49266", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] said he was hot , so i took off his jacket . he is such a cutie !", "storylet_id": "246332"}], [{"original_text": "Timmy was really interested in the spider and web. I thought the web had a cool design. ", "album_id": "72157602410720603", "photo_flickr_id": "1565102901", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "49266", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was really interested in the spider and web . i thought the web had a cool design .", "storylet_id": "246333"}], [{"original_text": "But, I backed up when I saw the size of this spider. It was so big!", "album_id": "72157602410720603", "photo_flickr_id": "1565972884", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "49266", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but , i backed up when i saw the size of this spider . it was so big !", "storylet_id": "246334"}], [{"original_text": "Our son showing of his new toy. ", "album_id": "72157602410720603", "photo_flickr_id": "1565071461", "setting": "last-3-pick-old-and-tell", "worker_id": "42BV4M5UI1NRFUA", "story_id": "49267", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our son showing of his new toy .", "storylet_id": "246335"}], [{"original_text": "A wild mushroom patch that we ran across while at the park. ", "album_id": "72157602410720603", "photo_flickr_id": "1565092847", "setting": "last-3-pick-old-and-tell", "worker_id": "42BV4M5UI1NRFUA", "story_id": "49267", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a wild mushroom patch that we ran across while at the park .", "storylet_id": "246336"}], [{"original_text": "A photo of our son while at the park with the sun setting.", "album_id": "72157602410720603", "photo_flickr_id": "1565963570", "setting": "last-3-pick-old-and-tell", "worker_id": "42BV4M5UI1NRFUA", "story_id": "49267", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a photo of our son while at the park with the sun setting .", "storylet_id": "246337"}], [{"original_text": "A picture of mother nature making some fine art. ", "album_id": "72157602410720603", "photo_flickr_id": "1565102901", "setting": "last-3-pick-old-and-tell", "worker_id": "42BV4M5UI1NRFUA", "story_id": "49267", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a picture of mother nature making some fine art .", "storylet_id": "246338"}], [{"original_text": "Interesting spider making his home. A true art piece. ", "album_id": "72157602410720603", "photo_flickr_id": "1565972884", "setting": "last-3-pick-old-and-tell", "worker_id": "42BV4M5UI1NRFUA", "story_id": "49267", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "interesting spider making his home . a true art piece .", "storylet_id": "246339"}], [{"original_text": "I finally tried some time lapse photography.", "album_id": "72157602410720603", "photo_flickr_id": "1565939996", "setting": "last-3-pick-old-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "49268", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finally tried some time lapse photography .", "storylet_id": "246340"}], [{"original_text": "It was a little too foggy.", "album_id": "72157602410720603", "photo_flickr_id": "1565083739", "setting": "last-3-pick-old-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "49268", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a little too foggy .", "storylet_id": "246341"}], [{"original_text": "I changed to taking art type pictures.", "album_id": "72157602410720603", "photo_flickr_id": "1565093813", "setting": "last-3-pick-old-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "49268", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i changed to taking art type pictures .", "storylet_id": "246342"}], [{"original_text": "This was a pretty scene.", "album_id": "72157602410720603", "photo_flickr_id": "1565981998", "setting": "last-3-pick-old-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "49268", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was a pretty scene .", "storylet_id": "246343"}], [{"original_text": "Finally I tried a macro shot.", "album_id": "72157602410720603", "photo_flickr_id": "1565972884", "setting": "last-3-pick-old-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "49268", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally i tried a macro shot .", "storylet_id": "246344"}], [{"original_text": "This child was so happy to play outside. ", "album_id": "72157602410720603", "photo_flickr_id": "1565071461", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49269", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this child was so happy to play outside .", "storylet_id": "246345"}], [{"original_text": "He found some mushrooms in the field. ", "album_id": "72157602410720603", "photo_flickr_id": "1565092847", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49269", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he found some mushrooms in the field .", "storylet_id": "246346"}], [{"original_text": "All of a sudden he got really scared. ", "album_id": "72157602410720603", "photo_flickr_id": "1565963570", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49269", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of a sudden he got really scared .", "storylet_id": "246347"}], [{"original_text": "He felt something sticky against his hands. ", "album_id": "72157602410720603", "photo_flickr_id": "1565102901", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49269", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he felt something sticky against his hands .", "storylet_id": "246348"}], [{"original_text": "It turned out he touched the spiderweb of a hungry spider. ", "album_id": "72157602410720603", "photo_flickr_id": "1565972884", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49269", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it turned out he touched the spiderweb of a hungry spider .", "storylet_id": "246349"}], [{"original_text": "This is a prime example of how hard working ants really are.", "album_id": "72157602444903586", "photo_flickr_id": "1584818205", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49270", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a prime example of how hard working ants really are .", "storylet_id": "246350"}], [{"original_text": "This monarch is pure beauty.", "album_id": "72157602444903586", "photo_flickr_id": "1585674474", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49270", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this monarch is pure beauty .", "storylet_id": "246351"}], [{"original_text": "The flowers were in full bloom and beautiful", "album_id": "72157602444903586", "photo_flickr_id": "1585659254", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49270", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the flowers were in full bloom and beautiful", "storylet_id": "246352"}], [{"original_text": "This was a very cool looking flower", "album_id": "72157602444903586", "photo_flickr_id": "1584778275", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49270", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was a very cool looking flower", "storylet_id": "246353"}], [{"original_text": "The swallow was sitting on a branch.", "album_id": "72157602444903586", "photo_flickr_id": "1585708342", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49270", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the swallow was sitting on a branch .", "storylet_id": "246354"}], [{"original_text": "I like bugs.", "album_id": "72157602444903586", "photo_flickr_id": "1585670516", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49271", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i like bugs .", "storylet_id": "246355"}], [{"original_text": "Butterflies to be precise.", "album_id": "72157602444903586", "photo_flickr_id": "1585676998", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49271", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "butterflies to be precise .", "storylet_id": "246356"}], [{"original_text": "Like this black one.", "album_id": "72157602444903586", "photo_flickr_id": "1584795991", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49271", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "like this black one .", "storylet_id": "246357"}], [{"original_text": "Or this guy.", "album_id": "72157602444903586", "photo_flickr_id": "1585682498", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49271", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "or this guy .", "storylet_id": "246358"}], [{"original_text": "Or this gal.", "album_id": "72157602444903586", "photo_flickr_id": "1584780549", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49271", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "or this gal .", "storylet_id": "246359"}], [{"original_text": "Nature can be so beautiful at times.", "album_id": "72157602444903586", "photo_flickr_id": "1585670516", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49272", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "nature can be so beautiful at times .", "storylet_id": "246360"}], [{"original_text": "Sometimes it doesn't even look real.", "album_id": "72157602444903586", "photo_flickr_id": "1585676998", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49272", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sometimes it does n't even look real .", "storylet_id": "246361"}], [{"original_text": "This could be on a postcard.", "album_id": "72157602444903586", "photo_flickr_id": "1584795991", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49272", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this could be on a postcard .", "storylet_id": "246362"}], [{"original_text": "They are so peaceful to look at.", "album_id": "72157602444903586", "photo_flickr_id": "1585682498", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49272", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they are so peaceful to look at .", "storylet_id": "246363"}], [{"original_text": "Yet have so much beauty at the same time.", "album_id": "72157602444903586", "photo_flickr_id": "1584780549", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49272", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "yet have so much beauty at the same time .", "storylet_id": "246364"}], [{"original_text": "This tropical climate was perfect for plants growing everywhere. ", "album_id": "72157602444903586", "photo_flickr_id": "1584818205", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49273", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this tropical climate was perfect for plants growing everywhere .", "storylet_id": "246365"}], [{"original_text": "This butterfly was about to have an interesting day. ", "album_id": "72157602444903586", "photo_flickr_id": "1585674474", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49273", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this butterfly was about to have an interesting day .", "storylet_id": "246366"}], [{"original_text": "It had eaten the nectar from this flower first. ", "album_id": "72157602444903586", "photo_flickr_id": "1585659254", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49273", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it had eaten the nectar from this flower first .", "storylet_id": "246367"}], [{"original_text": "Then it started feeding on this flower. ", "album_id": "72157602444903586", "photo_flickr_id": "1584778275", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49273", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then it started feeding on this flower .", "storylet_id": "246368"}], [{"original_text": "All of a sudden a bird flew down from the sky and ate the butterfly. ", "album_id": "72157602444903586", "photo_flickr_id": "1585708342", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49273", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of a sudden a bird flew down from the sky and ate the butterfly .", "storylet_id": "246369"}], [{"original_text": "This rope had ants all over it at the botanical garden.", "album_id": "72157602444903586", "photo_flickr_id": "1584818205", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49274", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this rope had ants all over it at the botanical garden .", "storylet_id": "246370"}], [{"original_text": "A really cool butterfly getting something to eat.", "album_id": "72157602444903586", "photo_flickr_id": "1585674474", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49274", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a really cool butterfly getting something to eat .", "storylet_id": "246371"}], [{"original_text": "Some amazing flowers at the botanical garden.", "album_id": "72157602444903586", "photo_flickr_id": "1585659254", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49274", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some amazing flowers at the botanical garden .", "storylet_id": "246372"}], [{"original_text": "This flower had a really cool center.", "album_id": "72157602444903586", "photo_flickr_id": "1584778275", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49274", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this flower had a really cool center .", "storylet_id": "246373"}], [{"original_text": "They even had birds at the botanical gardens.", "album_id": "72157602444903586", "photo_flickr_id": "1585708342", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49274", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even had birds at the botanical gardens .", "storylet_id": "246374"}], [{"original_text": "The water ran over the funny shaped rocks.", "album_id": "72157602649605030", "photo_flickr_id": "1428261043", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49275", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the water ran over the funny shaped rocks .", "storylet_id": "246375"}], [{"original_text": "The weather must have shaped a lot of the rocks there.", "album_id": "72157602649605030", "photo_flickr_id": "1702842977", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49275", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the weather must have shaped a lot of the rocks there .", "storylet_id": "246376"}], [{"original_text": "The water trickled over some of the rocks.", "album_id": "72157602649605030", "photo_flickr_id": "1703715428", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49275", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water trickled over some of the rocks .", "storylet_id": "246377"}], [{"original_text": "Thee was an old little house in the middle of the area.", "album_id": "72157602649605030", "photo_flickr_id": "1703734026", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49275", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "thee was an old little house in the middle of the area .", "storylet_id": "246378"}], [{"original_text": "The water had overflowed here and was finally drying up.", "album_id": "72157602649605030", "photo_flickr_id": "1702899529", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49275", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the water had overflowed here and was finally drying up .", "storylet_id": "246379"}], [{"original_text": "We decided to go for a nature walk and found this babbling brook.", "album_id": "72157602649605030", "photo_flickr_id": "1428261043", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49276", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go for a nature walk and found this babbling brook .", "storylet_id": "246380"}], [{"original_text": "This old bridge was incredibly beautiful.", "album_id": "72157602649605030", "photo_flickr_id": "1428267959", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49276", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this old bridge was incredibly beautiful .", "storylet_id": "246381"}], [{"original_text": "The old gear mechanisms really put you back in time.", "album_id": "72157602649605030", "photo_flickr_id": "1702886809", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49276", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the old gear mechanisms really put you back in time .", "storylet_id": "246382"}], [{"original_text": "This old shack and mill was the highlight of our day.", "album_id": "72157602649605030", "photo_flickr_id": "1428270833", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49276", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this old shack and mill was the highlight of our day .", "storylet_id": "246383"}], [{"original_text": "We went back home from our favorite trail. ", "album_id": "72157602649605030", "photo_flickr_id": "1702927435", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49276", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we went back home from our favorite trail .", "storylet_id": "246384"}], [{"original_text": "It was a great day to take a hike.", "album_id": "72157602649605030", "photo_flickr_id": "1428261043", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49277", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a great day to take a hike .", "storylet_id": "246385"}], [{"original_text": "They never knew where they were going next.", "album_id": "72157602649605030", "photo_flickr_id": "1428267959", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49277", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they never knew where they were going next .", "storylet_id": "246386"}], [{"original_text": "Old machinery was still in its place.", "album_id": "72157602649605030", "photo_flickr_id": "1702886809", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49277", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "old machinery was still in its place .", "storylet_id": "246387"}], [{"original_text": "What a simpler time they lived in.", "album_id": "72157602649605030", "photo_flickr_id": "1428270833", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49277", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what a simpler time they lived in .", "storylet_id": "246388"}], [{"original_text": "There was so much to see all around.", "album_id": "72157602649605030", "photo_flickr_id": "1702927435", "setting": "last-3-pick-old-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49277", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was so much to see all around .", "storylet_id": "246389"}], [{"original_text": "We passed a small waterfall", "album_id": "72157602649605030", "photo_flickr_id": "1428261043", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49278", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we passed a small waterfall", "storylet_id": "246390"}], [{"original_text": "Small and natural structures were around the lake.", "album_id": "72157602649605030", "photo_flickr_id": "1702842977", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49278", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "small and natural structures were around the lake .", "storylet_id": "246391"}], [{"original_text": "Every little ways we would come up to another waterfall.", "album_id": "72157602649605030", "photo_flickr_id": "1703715428", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49278", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "every little ways we would come up to another waterfall .", "storylet_id": "246392"}], [{"original_text": "Then, hidden away was a tiny mill.", "album_id": "72157602649605030", "photo_flickr_id": "1703734026", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49278", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , hidden away was a tiny mill .", "storylet_id": "246393"}], [{"original_text": "We followed the dried up stream that used to feed it.", "album_id": "72157602649605030", "photo_flickr_id": "1702899529", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49278", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we followed the dried up stream that used to feed it .", "storylet_id": "246394"}], [{"original_text": "Made a trip to the smoky mountains and stopped to take a picture of the river with the mini waterfalls. ", "album_id": "72157602649605030", "photo_flickr_id": "1428261043", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "49279", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "made a trip to the smoky mountains and stopped to take a picture of the river with the mini waterfalls .", "storylet_id": "246395"}], [{"original_text": " Some of the rocks here look like nature carved out a seat for me. ", "album_id": "72157602649605030", "photo_flickr_id": "1702842977", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "49279", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the rocks here look like nature carved out a seat for me .", "storylet_id": "246396"}], [{"original_text": "The water coming down like this is always so pretty. ", "album_id": "72157602649605030", "photo_flickr_id": "1703715428", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "49279", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water coming down like this is always so pretty .", "storylet_id": "246397"}], [{"original_text": "What a stunning old water mill it does not work any longer but it is still so beautiful in itself. ", "album_id": "72157602649605030", "photo_flickr_id": "1703734026", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "49279", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what a stunning old water mill it does not work any longer but it is still so beautiful in itself .", "storylet_id": "246398"}], [{"original_text": "The water in the spring is so dry. I bet during the early spring this has tons of water flowing through it. ", "album_id": "72157602649605030", "photo_flickr_id": "1702899529", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "49279", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the water in the spring is so dry . i bet during the early spring this has tons of water flowing through it .", "storylet_id": "246399"}], [{"original_text": "The morning brought fresh air and the trees were lively.", "album_id": "72157602788961834", "photo_flickr_id": "1794758489", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49280", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the morning brought fresh air and the trees were lively .", "storylet_id": "246400"}], [{"original_text": "I found a leaf on the ground.", "album_id": "72157602788961834", "photo_flickr_id": "1794765075", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49280", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i found a leaf on the ground .", "storylet_id": "246401"}], [{"original_text": "We took the trail to find the nearest bridge.", "album_id": "72157602788961834", "photo_flickr_id": "1794759513", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49280", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took the trail to find the nearest bridge .", "storylet_id": "246402"}], [{"original_text": "When we arrived at the bridge, we realized we were five minutes away from home.", "album_id": "72157602788961834", "photo_flickr_id": "1795599732", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49280", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we arrived at the bridge , we realized we were five minutes away from home .", "storylet_id": "246403"}], [{"original_text": "When we got home, we took a picture from inside.", "album_id": "72157602788961834", "photo_flickr_id": "1794747777", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49280", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we got home , we took a picture from inside .", "storylet_id": "246404"}], [{"original_text": "It is officially the Fall season because I can see that some trees have already turned their leaves to that beautiful color while others will soon follow.", "album_id": "72157602788961834", "photo_flickr_id": "1795599532", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "49281", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is officially the fall season because i can see that some trees have already turned their leaves to that beautiful color while others will soon follow .", "storylet_id": "246405"}], [{"original_text": "I am inside and look out at all the beauty of the Fall and I wish it could be like this year round.", "album_id": "72157602788961834", "photo_flickr_id": "1794747777", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "49281", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i am inside and look out at all the beauty of the fall and i wish it could be like this year round .", "storylet_id": "246406"}], [{"original_text": "Long walks in the cool autumn air down country roads makes me go back in time to when I used to hunt and fish.", "album_id": "72157602788961834", "photo_flickr_id": "1794758663", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "49281", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "long walks in the cool autumn air down country roads makes me go back in time to when i used to hunt and fish .", "storylet_id": "246407"}], [{"original_text": "I always loved going out in the country in the fall and to me it was the perfect time for everything including football.", "album_id": "72157602788961834", "photo_flickr_id": "1795599732", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "49281", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i always loved going out in the country in the fall and to me it was the perfect time for everything including football .", "storylet_id": "246408"}], [{"original_text": "This pictures sums it all up for me when I say that Fall is the most beautiful season and the one that I can't wait for every year.", "album_id": "72157602788961834", "photo_flickr_id": "1795598966", "setting": "first-2-pick-and-tell", "worker_id": "0QTM3SQDTW2M1RK", "story_id": "49281", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this pictures sums it all up for me when i say that fall is the most beautiful season and the one that i ca n't wait for every year .", "storylet_id": "246409"}], [{"original_text": "We took a stroll to see the fall tree colors.", "album_id": "72157602788961834", "photo_flickr_id": "1794758489", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49282", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a stroll to see the fall tree colors .", "storylet_id": "246410"}], [{"original_text": "Here's a fallen leaf.", "album_id": "72157602788961834", "photo_flickr_id": "1794765075", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49282", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's a fallen leaf .", "storylet_id": "246411"}], [{"original_text": "The trail was really quite beautiful.", "album_id": "72157602788961834", "photo_flickr_id": "1794759513", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49282", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the trail was really quite beautiful .", "storylet_id": "246412"}], [{"original_text": "Here we are farther up along it towards the old cabin in the woods.", "album_id": "72157602788961834", "photo_flickr_id": "1795599732", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49282", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here we are farther up along it towards the old cabin in the woods .", "storylet_id": "246413"}], [{"original_text": "We made it to the dark cabin and stayed inside for the night.", "album_id": "72157602788961834", "photo_flickr_id": "1794747777", "setting": "last-3-pick-old-and-tell", "worker_id": "A9RU59VMN5HU5N2", "story_id": "49282", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we made it to the dark cabin and stayed inside for the night .", "storylet_id": "246414"}], [{"original_text": "Fall is my favorite season.", "album_id": "72157602788961834", "photo_flickr_id": "1794758489", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49283", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "fall is my favorite season .", "storylet_id": "246415"}], [{"original_text": "I love how pretty the leaves are.", "album_id": "72157602788961834", "photo_flickr_id": "1794765075", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49283", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love how pretty the leaves are .", "storylet_id": "246416"}], [{"original_text": "It is a great time to walk through the forest.", "album_id": "72157602788961834", "photo_flickr_id": "1794759513", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49283", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is a great time to walk through the forest .", "storylet_id": "246417"}], [{"original_text": "So many leaves have already fallen.", "album_id": "72157602788961834", "photo_flickr_id": "1795599732", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49283", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so many leaves have already fallen .", "storylet_id": "246418"}], [{"original_text": "I love seeing the trees from my house. I love this season!", "album_id": "72157602788961834", "photo_flickr_id": "1794747777", "setting": "last-3-pick-old-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49283", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love seeing the trees from my house . i love this season !", "storylet_id": "246419"}], [{"original_text": "It was a beautiful fall day.", "album_id": "72157602788961834", "photo_flickr_id": "1794758489", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "49284", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful fall day .", "storylet_id": "246420"}], [{"original_text": "I decided to go for a walk to enjoy the fallen leaves.", "album_id": "72157602788961834", "photo_flickr_id": "1794765075", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "49284", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i decided to go for a walk to enjoy the fallen leaves .", "storylet_id": "246421"}], [{"original_text": "Walking in the forest, the weather was beautiful.", "album_id": "72157602788961834", "photo_flickr_id": "1794759513", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "49284", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "walking in the forest , the weather was beautiful .", "storylet_id": "246422"}], [{"original_text": "I knew once I reached the bridge over the creek it was time to turn back to go home.", "album_id": "72157602788961834", "photo_flickr_id": "1795599732", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "49284", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i knew once i reached the bridge over the creek it was time to turn back to go home .", "storylet_id": "246423"}], [{"original_text": "I enjoyed the rest of the beautiful fall day from my window.", "album_id": "72157602788961834", "photo_flickr_id": "1794747777", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "49284", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i enjoyed the rest of the beautiful fall day from my window .", "storylet_id": "246424"}], [{"original_text": "The leaves on the trees were starting to change colors.", "album_id": "72157603248353977", "photo_flickr_id": "2049346315", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49285", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the leaves on the trees were starting to change colors .", "storylet_id": "246425"}], [{"original_text": "There were still a few bright colors to be seen.", "album_id": "72157603248353977", "photo_flickr_id": "2050131908", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49285", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were still a few bright colors to be seen .", "storylet_id": "246426"}], [{"original_text": "The boy drove his bike to the store.", "album_id": "72157603248353977", "photo_flickr_id": "2050132256", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49285", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boy drove his bike to the store .", "storylet_id": "246427"}], [{"original_text": "There was a small power station on the side of the building.", "album_id": "72157603248353977", "photo_flickr_id": "2052702362", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49285", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a small power station on the side of the building .", "storylet_id": "246428"}], [{"original_text": "The building was closed, but had just put up new signs.", "album_id": "72157603248353977", "photo_flickr_id": "2051915903", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49285", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the building was closed , but had just put up new signs .", "storylet_id": "246429"}], [{"original_text": "After finishing up his laundry he had other chores.", "album_id": "72157603248353977", "photo_flickr_id": "2065825004", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49286", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after finishing up his laundry he had other chores .", "storylet_id": "246430"}], [{"original_text": "He finished his household work and took a walk down the street.", "album_id": "72157603248353977", "photo_flickr_id": "2052702362", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49286", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he finished his household work and took a walk down the street .", "storylet_id": "246431"}], [{"original_text": "He crossed the intersection.", "album_id": "72157603248353977", "photo_flickr_id": "2065028731", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49286", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he crossed the intersection .", "storylet_id": "246432"}], [{"original_text": "He was craving a cigarette but the smoke shop was closed.", "album_id": "72157603248353977", "photo_flickr_id": "2076097626", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49286", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was craving a cigarette but the smoke shop was closed .", "storylet_id": "246433"}], [{"original_text": "At last he made it to the convenience store to by a cold drink and a pack of cigarettes.", "album_id": "72157603248353977", "photo_flickr_id": "2050132256", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49286", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at last he made it to the convenience store to by a cold drink and a pack of cigarettes .", "storylet_id": "246434"}], [{"original_text": "The city streets had trees in autumn foliage.", "album_id": "72157603248353977", "photo_flickr_id": "2049346315", "setting": "last-3-pick-old-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "49287", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city streets had trees in autumn foliage .", "storylet_id": "246435"}], [{"original_text": "There were beautiful flowers everywhere.", "album_id": "72157603248353977", "photo_flickr_id": "2050131908", "setting": "last-3-pick-old-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "49287", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were beautiful flowers everywhere .", "storylet_id": "246436"}], [{"original_text": "The city was very bike friendly.", "album_id": "72157603248353977", "photo_flickr_id": "2050132256", "setting": "last-3-pick-old-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "49287", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the city was very bike friendly .", "storylet_id": "246437"}], [{"original_text": "There were all kinds of interesting vending machines that we weren't use to seeing.", "album_id": "72157603248353977", "photo_flickr_id": "2052702362", "setting": "last-3-pick-old-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "49287", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were all kinds of interesting vending machines that we were n't use to seeing .", "storylet_id": "246438"}], [{"original_text": "The quaint buildings had colorful signs around them.", "album_id": "72157603248353977", "photo_flickr_id": "2051915903", "setting": "last-3-pick-old-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "49287", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the quaint buildings had colorful signs around them .", "storylet_id": "246439"}], [{"original_text": "We passed through the back yard on the way out", "album_id": "72157603248353977", "photo_flickr_id": "2049346315", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49288", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we passed through the back yard on the way out", "storylet_id": "246440"}], [{"original_text": "The flowers outside always make the walk better.", "album_id": "72157603248353977", "photo_flickr_id": "2050131908", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49288", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flowers outside always make the walk better .", "storylet_id": "246441"}], [{"original_text": "Passed on to a street to stop by the gas station.", "album_id": "72157603248353977", "photo_flickr_id": "2050132256", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49288", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "passed on to a street to stop by the gas station .", "storylet_id": "246442"}], [{"original_text": "Passing the pumps on the way out. i decided to take the road back.", "album_id": "72157603248353977", "photo_flickr_id": "2052702362", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49288", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "passing the pumps on the way out . i decided to take the road back .", "storylet_id": "246443"}], [{"original_text": "I arrived back at the front of the house without issue.", "album_id": "72157603248353977", "photo_flickr_id": "2051915903", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49288", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i arrived back at the front of the house without issue .", "storylet_id": "246444"}], [{"original_text": "It is early morning here and the flowers are open now.", "album_id": "72157603248353977", "photo_flickr_id": "2049346315", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "49289", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is early morning here and the flowers are open now .", "storylet_id": "246445"}], [{"original_text": "Always love how the colors of red are used in China town. ", "album_id": "72157603248353977", "photo_flickr_id": "2050131908", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "49289", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "always love how the colors of red are used in location town .", "storylet_id": "246446"}], [{"original_text": "This is one of the few places open at this hour of the day. ", "album_id": "72157603248353977", "photo_flickr_id": "2050132256", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "49289", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is one of the few places open at this hour of the day .", "storylet_id": "246447"}], [{"original_text": "You can find many old machines like this sitting outside the stores here. ", "album_id": "72157603248353977", "photo_flickr_id": "2052702362", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "49289", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you can find many old machines like this sitting outside the stores here .", "storylet_id": "246448"}], [{"original_text": "Even in the subdivisions near by you see the Chinese decorations displayed. ", "album_id": "72157603248353977", "photo_flickr_id": "2051915903", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "49289", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even in the subdivisions near by you see the chinese decorations displayed .", "storylet_id": "246449"}], [{"original_text": "My family and I went to an indoor arboretum.", "album_id": "72157625098821810", "photo_flickr_id": "2140917187", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "49290", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family and i went to an indoor arboretum .", "storylet_id": "246450"}], [{"original_text": "They had a fountain inside.", "album_id": "72157625098821810", "photo_flickr_id": "2140867809", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "49290", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a fountain inside .", "storylet_id": "246451"}], [{"original_text": "The indoor pond had lily-pads.", "album_id": "72157625098821810", "photo_flickr_id": "2140948429", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "49290", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the indoor pond had lily-pads .", "storylet_id": "246452"}], [{"original_text": "Some of the fruit trees actually had fruit on them.", "album_id": "72157625098821810", "photo_flickr_id": "2140924715", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "49290", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the fruit trees actually had fruit on them .", "storylet_id": "246453"}], [{"original_text": "They even had a Chocolate Tree.", "album_id": "72157625098821810", "photo_flickr_id": "2141745842", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "49290", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even had a chocolate tree .", "storylet_id": "246454"}], [{"original_text": "We went to saw many exotic flowers and gardens today. This flower looks like it has fingers!", "album_id": "72157625098821810", "photo_flickr_id": "2141654652", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "49291", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to saw many exotic flowers and gardens today . this flower looks like it has fingers !", "storylet_id": "246455"}], [{"original_text": "This yellow flowers are petite and cute. The yellow is very mellow.", "album_id": "72157625098821810", "photo_flickr_id": "2141711684", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "49291", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this yellow flowers are petite and cute . the yellow is very mellow .", "storylet_id": "246456"}], [{"original_text": "The lily pads just floated in the water. It is cool how they stay at the top of the water.", "album_id": "72157625098821810", "photo_flickr_id": "2140948429", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "49291", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lily pads just floated in the water . it is cool how they stay at the top of the water .", "storylet_id": "246457"}], [{"original_text": "Believe in or not this is a chocolate tree. Unfortunately, it is not edible!", "album_id": "72157625098821810", "photo_flickr_id": "2141745842", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "49291", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "believe in or not this is a chocolate tree . unfortunately , it is not edible !", "storylet_id": "246458"}], [{"original_text": "This was my favorite one. The grass grew in the middle of the flower. How cool is that?", "album_id": "72157625098821810", "photo_flickr_id": "2141757386", "setting": "first-2-pick-and-tell", "worker_id": "GZBGGTRNF5DV4LL", "story_id": "49291", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was my favorite one . the grass grew in the middle of the flower . how cool is that ?", "storylet_id": "246459"}], [{"original_text": "The gardens had all types of plants, both indoors and outdoors.", "album_id": "72157625098821810", "photo_flickr_id": "2140917187", "setting": "last-3-pick-old-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "49292", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the gardens had all types of plants , both indoors and outdoors .", "storylet_id": "246460"}], [{"original_text": "There were beautiful fountains along the walkway.", "album_id": "72157625098821810", "photo_flickr_id": "2140867809", "setting": "last-3-pick-old-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "49292", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were beautiful fountains along the walkway .", "storylet_id": "246461"}], [{"original_text": "My favorite were the blossoming water lillies.", "album_id": "72157625098821810", "photo_flickr_id": "2140948429", "setting": "last-3-pick-old-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "49292", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my favorite were the blossoming water lillies .", "storylet_id": "246462"}], [{"original_text": "Some plants had exotic fruits growing.", "album_id": "72157625098821810", "photo_flickr_id": "2140924715", "setting": "last-3-pick-old-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "49292", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some plants had exotic fruits growing .", "storylet_id": "246463"}], [{"original_text": "Each plant had a sign with a short description about it.", "album_id": "72157625098821810", "photo_flickr_id": "2141745842", "setting": "last-3-pick-old-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "49292", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "each plant had a sign with a short description about it .", "storylet_id": "246464"}], [{"original_text": "Timothy was a huge fan of the local nature preserve. He took pictures of almost every plant he saw.", "album_id": "72157625098821810", "photo_flickr_id": "2141654652", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49293", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was a huge fan of the local nature preserve . he took pictures of almost every plant he saw .", "storylet_id": "246465"}], [{"original_text": "He was able to capture some beautiful details, like this buttery yellow flowers.", "album_id": "72157625098821810", "photo_flickr_id": "2141711684", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49293", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was able to capture some beautiful details , like this buttery yellow flowers .", "storylet_id": "246466"}], [{"original_text": "His pictures of the floating lilies were exquisite. ", "album_id": "72157625098821810", "photo_flickr_id": "2140948429", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49293", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his pictures of the floating lilies were exquisite .", "storylet_id": "246467"}], [{"original_text": "I loved his weird pictures too, like this strange plant with a big hanging pod.", "album_id": "72157625098821810", "photo_flickr_id": "2141745842", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49293", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i loved his weird pictures too , like this strange plant with a big hanging pod .", "storylet_id": "246468"}], [{"original_text": "He made me realize every flower has a huge amount of beauty close up.", "album_id": "72157625098821810", "photo_flickr_id": "2141757386", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49293", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he made me realize every flower has a huge amount of beauty close up .", "storylet_id": "246469"}], [{"original_text": "This was the first thing we saw as we entered the botanical gardens.", "album_id": "72157625098821810", "photo_flickr_id": "2140917187", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49294", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the first thing we saw as we entered the botanical gardens .", "storylet_id": "246470"}], [{"original_text": "A small pool that was on display at the botanical gardens.", "album_id": "72157625098821810", "photo_flickr_id": "2140867809", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49294", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a small pool that was on display at the botanical gardens .", "storylet_id": "246471"}], [{"original_text": "Some lily pads floating in another pool at the gardens.", "album_id": "72157625098821810", "photo_flickr_id": "2140948429", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49294", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some lily pads floating in another pool at the gardens .", "storylet_id": "246472"}], [{"original_text": "An apple that was able to grow inside at the gardens.", "album_id": "72157625098821810", "photo_flickr_id": "2140924715", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49294", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an apple that was able to grow inside at the gardens .", "storylet_id": "246473"}], [{"original_text": "This trees had some kind of melon growing on it.", "album_id": "72157625098821810", "photo_flickr_id": "2141745842", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49294", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this trees had some kind of melon growing on it .", "storylet_id": "246474"}], [{"original_text": "The pink flowers really stood out that day.", "album_id": "72157603262854032", "photo_flickr_id": "2054952292", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49295", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the pink flowers really stood out that day .", "storylet_id": "246475"}], [{"original_text": "I took the longest trail to the garden.", "album_id": "72157603262854032", "photo_flickr_id": "2054953602", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49295", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i took the longest trail to the garden .", "storylet_id": "246476"}], [{"original_text": "The garden led me to a clearing in the forest.", "album_id": "72157603262854032", "photo_flickr_id": "2054954530", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49295", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the garden led me to a clearing in the forest .", "storylet_id": "246477"}], [{"original_text": "Many people were already at the spot.", "album_id": "72157603262854032", "photo_flickr_id": "2054955090", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49295", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many people were already at the spot .", "storylet_id": "246478"}], [{"original_text": "I noticed the harvesting lines when I walked around.", "album_id": "72157603262854032", "photo_flickr_id": "2054172963", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49295", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i noticed the harvesting lines when i walked around .", "storylet_id": "246479"}], [{"original_text": "Today we went cor lunch at a new garden ", "album_id": "72157603262854032", "photo_flickr_id": "2054951184", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49296", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went cor lunch at a new garden", "storylet_id": "246480"}], [{"original_text": "After lunch we walked through the many fields of flowers", "album_id": "72157603262854032", "photo_flickr_id": "2054951450", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49296", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after lunch we walked through the many fields of flowers", "storylet_id": "246481"}], [{"original_text": "The beautiful pink ones reminded me of Hawaii ", "album_id": "72157603262854032", "photo_flickr_id": "2054952292", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49296", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beautiful pink ones reminded me of location", "storylet_id": "246482"}], [{"original_text": "There were purple lilies with polka dots too", "album_id": "72157603262854032", "photo_flickr_id": "2054952870", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49296", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were purple lilies with polka dots too", "storylet_id": "246483"}], [{"original_text": "Then we walked down the entrance path home", "album_id": "72157603262854032", "photo_flickr_id": "2054172371", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49296", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we walked down the entrance path home", "storylet_id": "246484"}], [{"original_text": "We eat a hearty breakfast before setting out on our nature walk.", "album_id": "72157603262854032", "photo_flickr_id": "2054951184", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49297", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we eat a hearty breakfast before setting out on our nature walk .", "storylet_id": "246485"}], [{"original_text": "The meadow is full of flora and fauna.", "album_id": "72157603262854032", "photo_flickr_id": "2054951450", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49297", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the meadow is full of flora and fauna .", "storylet_id": "246486"}], [{"original_text": "These fuchsia flowers really stand out against the green fields.", "album_id": "72157603262854032", "photo_flickr_id": "2054952292", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49297", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these fuchsia flowers really stand out against the green fields .", "storylet_id": "246487"}], [{"original_text": "The orchids are the most beautiful flowers I have seen.", "album_id": "72157603262854032", "photo_flickr_id": "2054952870", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49297", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the orchids are the most beautiful flowers i have seen .", "storylet_id": "246488"}], [{"original_text": "But my favorite thing is the leaning trees. I wonder about how they grow like that. Mother nature is awesome.", "album_id": "72157603262854032", "photo_flickr_id": "2054172371", "setting": "last-3-pick-old-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49297", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but my favorite thing is the leaning trees . i wonder about how they grow like that . mother nature is awesome .", "storylet_id": "246489"}], [{"original_text": "I've always had a fondness for two things: food and flowers. ", "album_id": "72157603262854032", "photo_flickr_id": "2054951184", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "49298", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 've always had a fondness for two things : food and flowers .", "storylet_id": "246490"}], [{"original_text": "Flowers are diverse and beautiful in each of their own ways, like people. ", "album_id": "72157603262854032", "photo_flickr_id": "2054951450", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "49298", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "flowers are diverse and beautiful in each of their own ways , like people .", "storylet_id": "246491"}], [{"original_text": "I know more people named after this flower than I do named Roger, Grace or Deaken. ", "album_id": "72157603262854032", "photo_flickr_id": "2054952292", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "49298", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i know more people named after this flower than i do named [male] , [female] or deaken .", "storylet_id": "246492"}], [{"original_text": "Some flowers define a person's attire. Whoever likes this flower must be a fan of plaid. ", "album_id": "72157603262854032", "photo_flickr_id": "2054952870", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "49298", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some flowers define a person 's attire . whoever likes this flower must be a fan of plaid .", "storylet_id": "246493"}], [{"original_text": "Some represent size, I wish I was as tall as a tree. ", "album_id": "72157603262854032", "photo_flickr_id": "2054172371", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "49298", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some represent size , i wish i was as tall as a tree .", "storylet_id": "246494"}], [{"original_text": "I was so excited to go the botanic garden today.", "album_id": "72157603262854032", "photo_flickr_id": "2054952292", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "49299", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was so excited to go the botanic garden today .", "storylet_id": "246495"}], [{"original_text": "The walkways through the garden were paved, making it easy to walk through it.", "album_id": "72157603262854032", "photo_flickr_id": "2054953602", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "49299", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the walkways through the garden were paved , making it easy to walk through it .", "storylet_id": "246496"}], [{"original_text": "I finally reached an open field where I could stop and rest.", "album_id": "72157603262854032", "photo_flickr_id": "2054954530", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "49299", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i finally reached an open field where i could stop and rest .", "storylet_id": "246497"}], [{"original_text": "It was the perfect place to have a little picnic lunch.", "album_id": "72157603262854032", "photo_flickr_id": "2054955090", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "49299", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was the perfect place to have a little picnic lunch .", "storylet_id": "246498"}], [{"original_text": "After lunch, I continued to walk through the garden, enjoying it even though some flowers had not yet bloomed.", "album_id": "72157603262854032", "photo_flickr_id": "2054172963", "setting": "last-3-pick-old-and-tell", "worker_id": "0RUIP8R97TD2B2D", "story_id": "49299", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after lunch , i continued to walk through the garden , enjoying it even though some flowers had not yet bloomed .", "storylet_id": "246499"}], [{"original_text": "Today we are going on a little hike.", "album_id": "72157603215309500", "photo_flickr_id": "2040063543", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49300", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we are going on a little hike .", "storylet_id": "246500"}], [{"original_text": "He already seemed lost.", "album_id": "72157603215309500", "photo_flickr_id": "2040058575", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49300", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he already seemed lost .", "storylet_id": "246501"}], [{"original_text": "She is exhausted after looking at how far there is to go.", "album_id": "72157603215309500", "photo_flickr_id": "2040857390", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49300", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she is exhausted after looking at how far there is to go .", "storylet_id": "246502"}], [{"original_text": "We ran in to a pile of rocks.", "album_id": "72157603215309500", "photo_flickr_id": "2040842360", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49300", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we ran in to a pile of rocks .", "storylet_id": "246503"}], [{"original_text": "We finally made it to the top. It was well worth it and an accomplish mission.", "album_id": "72157603215309500", "photo_flickr_id": "2040855348", "setting": "first-2-pick-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49300", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finally made it to the top . it was well worth it and an accomplish mission .", "storylet_id": "246504"}], [{"original_text": "Lola and friends went hiking to find ", "album_id": "72157603215309500", "photo_flickr_id": "2040844806", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49301", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and friends went hiking to find", "storylet_id": "246505"}], [{"original_text": "a spring.", "album_id": "72157603215309500", "photo_flickr_id": "2040843806", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49301", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a spring .", "storylet_id": "246506"}], [{"original_text": "They walked many miles and saw a lot of green leaves.", "album_id": "72157603215309500", "photo_flickr_id": "2040856778", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49301", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they walked many miles and saw a lot of green leaves .", "storylet_id": "246507"}], [{"original_text": "But finally she found the spring and spread her arms open in triumph.", "album_id": "72157603215309500", "photo_flickr_id": "2040840884", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49301", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but finally she found the spring and spread her arms open in triumph .", "storylet_id": "246508"}], [{"original_text": "The spring was beautiful and well worth the hike.", "album_id": "72157603215309500", "photo_flickr_id": "2040066419", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49301", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the spring was beautiful and well worth the hike .", "storylet_id": "246509"}], [{"original_text": "Today, I went on a hike in the woods with some friends.", "album_id": "72157603215309500", "photo_flickr_id": "2040063543", "setting": "last-3-pick-old-and-tell", "worker_id": "535RP6R17NSV48B", "story_id": "49302", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , i went on a hike in the woods with some friends .", "storylet_id": "246510"}], [{"original_text": "We traveled through some freshly fallen leaves.", "album_id": "72157603215309500", "photo_flickr_id": "2040058575", "setting": "last-3-pick-old-and-tell", "worker_id": "535RP6R17NSV48B", "story_id": "49302", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we traveled through some freshly fallen leaves .", "storylet_id": "246511"}], [{"original_text": "We also went through a very rocky path.", "album_id": "72157603215309500", "photo_flickr_id": "2040857390", "setting": "last-3-pick-old-and-tell", "worker_id": "535RP6R17NSV48B", "story_id": "49302", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also went through a very rocky path .", "storylet_id": "246512"}], [{"original_text": "During one of our breaks, we decided to build fun rock sculptures.", "album_id": "72157603215309500", "photo_flickr_id": "2040842360", "setting": "last-3-pick-old-and-tell", "worker_id": "535RP6R17NSV48B", "story_id": "49302", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "during one of our breaks , we decided to build fun rock sculptures .", "storylet_id": "246513"}], [{"original_text": "Once we got to the end of the trail, we took some pictures of the view, it was gorgeous.", "album_id": "72157603215309500", "photo_flickr_id": "2040855348", "setting": "last-3-pick-old-and-tell", "worker_id": "535RP6R17NSV48B", "story_id": "49302", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once we got to the end of the trail , we took some pictures of the view , it was gorgeous .", "storylet_id": "246514"}], [{"original_text": "Me and a friend decided to go on a hike.", "album_id": "72157603215309500", "photo_flickr_id": "2040063543", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "49303", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and a friend decided to go on a hike .", "storylet_id": "246515"}], [{"original_text": "It was a cold afternoon.", "album_id": "72157603215309500", "photo_flickr_id": "2040058575", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "49303", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a cold afternoon .", "storylet_id": "246516"}], [{"original_text": "The mountain was high and there were many rocks.", "album_id": "72157603215309500", "photo_flickr_id": "2040857390", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "49303", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the mountain was high and there were many rocks .", "storylet_id": "246517"}], [{"original_text": "We saw so many rocks we decided to build a tower with them.", "album_id": "72157603215309500", "photo_flickr_id": "2040842360", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "49303", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw so many rocks we decided to build a tower with them .", "storylet_id": "246518"}], [{"original_text": "We ended up getting all the way to the top.", "album_id": "72157603215309500", "photo_flickr_id": "2040855348", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "49303", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended up getting all the way to the top .", "storylet_id": "246519"}], [{"original_text": "There was a big sign", "album_id": "72157603215309500", "photo_flickr_id": "2040063543", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49304", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a big sign", "storylet_id": "246520"}], [{"original_text": "that the guy passed.", "album_id": "72157603215309500", "photo_flickr_id": "2040058575", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49304", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that the guy passed .", "storylet_id": "246521"}], [{"original_text": "The girl also saw it", "album_id": "72157603215309500", "photo_flickr_id": "2040857390", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49304", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girl also saw it", "storylet_id": "246522"}], [{"original_text": "near the big rocks", "album_id": "72157603215309500", "photo_flickr_id": "2040842360", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49304", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "near the big rocks", "storylet_id": "246523"}], [{"original_text": "before they took a photo.", "album_id": "72157603215309500", "photo_flickr_id": "2040855348", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49304", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before they took a photo .", "storylet_id": "246524"}], [{"original_text": "it was a bright sunny day in the city", "album_id": "72157603870972242", "photo_flickr_id": "2251124588", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "49305", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a bright sunny day in the city", "storylet_id": "246525"}], [{"original_text": "the city had a beautiful landscape with many statues", "album_id": "72157603870972242", "photo_flickr_id": "2250328985", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "49305", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city had a beautiful landscape with many statues", "storylet_id": "246526"}], [{"original_text": "and beautiful buildings", "album_id": "72157603870972242", "photo_flickr_id": "2250331641", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "49305", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and beautiful buildings", "storylet_id": "246527"}], [{"original_text": "the beach was stunning", "album_id": "72157603870972242", "photo_flickr_id": "2250335015", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "49305", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beach was stunning", "storylet_id": "246528"}], [{"original_text": "overall this place was very interesting to visit ", "album_id": "72157603870972242", "photo_flickr_id": "2250336943", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "49305", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall this place was very interesting to visit", "storylet_id": "246529"}], [{"original_text": "A founding father statue stands in front of the mountain range.", "album_id": "72157603870972242", "photo_flickr_id": "2250328985", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "49306", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a founding father statue stands in front of the mountain range .", "storylet_id": "246530"}], [{"original_text": "A building looks out of place against the mountainside.", "album_id": "72157603870972242", "photo_flickr_id": "2251128640", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "49306", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a building looks out of place against the mountainside .", "storylet_id": "246531"}], [{"original_text": "The range is continual with rocky tops.", "album_id": "72157603870972242", "photo_flickr_id": "2250334613", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "49306", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the range is continual with rocky tops .", "storylet_id": "246532"}], [{"original_text": "At the bottom of the range is a sandy beach for fun seeking.", "album_id": "72157603870972242", "photo_flickr_id": "2251131236", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "49306", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the bottom of the range is a sandy beach for fun seeking .", "storylet_id": "246533"}], [{"original_text": "Hotels line the north side of the beach to lure in the tourists.", "album_id": "72157603870972242", "photo_flickr_id": "2251132736", "setting": "first-2-pick-and-tell", "worker_id": "3IHPSYWD138LML9", "story_id": "49306", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "hotels line the north side of the beach to lure in the tourists .", "storylet_id": "246534"}], [{"original_text": "Took a stroll through the city we are staying on vacation today.", "album_id": "72157603870972242", "photo_flickr_id": "2250328985", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "49307", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "took a stroll through the city we are staying on vacation today .", "storylet_id": "246535"}], [{"original_text": "I decided I would ride one of these carts for the first time.", "album_id": "72157603870972242", "photo_flickr_id": "2251128640", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "49307", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i decided i would ride one of these carts for the first time .", "storylet_id": "246536"}], [{"original_text": "The view I got from up so high was great.", "album_id": "72157603870972242", "photo_flickr_id": "2250334613", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "49307", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the view i got from up so high was great .", "storylet_id": "246537"}], [{"original_text": "Afterward headed down to the beach for a dip.", "album_id": "72157603870972242", "photo_flickr_id": "2251131236", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "49307", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward headed down to the beach for a dip .", "storylet_id": "246538"}], [{"original_text": "Really loved the water and how scenic walking back to the car was.", "album_id": "72157603870972242", "photo_flickr_id": "2251132736", "setting": "last-3-pick-old-and-tell", "worker_id": "EV8E6SOEI51OD7R", "story_id": "49307", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "really loved the water and how scenic walking back to the car was .", "storylet_id": "246539"}], [{"original_text": "We met up at the statue of General Tomasco.", "album_id": "72157603870972242", "photo_flickr_id": "2250328985", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49308", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we met up at the statue of general tomasco .", "storylet_id": "246540"}], [{"original_text": "There was a RAM there that would take us down to the beach.", "album_id": "72157603870972242", "photo_flickr_id": "2251128640", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49308", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a ram there that would take us down to the beach .", "storylet_id": "246541"}], [{"original_text": "The view was very beautiful as we were riding it, showing us green shrubs with craggy mountains in the background.", "album_id": "72157603870972242", "photo_flickr_id": "2250334613", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49308", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the view was very beautiful as we were riding it , showing us green shrubs with craggy mountains in the background .", "storylet_id": "246542"}], [{"original_text": "Our first view of the beach was pretty amazing. All the people were so small.", "album_id": "72157603870972242", "photo_flickr_id": "2251131236", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49308", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our first view of the beach was pretty amazing . all the people were so small .", "storylet_id": "246543"}], [{"original_text": "As we got closer to the shoreline, we got a great view of the buildings on the coastline.", "album_id": "72157603870972242", "photo_flickr_id": "2251132736", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49308", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as we got closer to the shoreline , we got a great view of the buildings on the coastline .", "storylet_id": "246544"}], [{"original_text": "It was a sunny day downtown near the clock tower.", "album_id": "72157603870972242", "photo_flickr_id": "2251124588", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49309", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a sunny day downtown near the clock tower .", "storylet_id": "246545"}], [{"original_text": "There was no one in sight, unless you count the statues.", "album_id": "72157603870972242", "photo_flickr_id": "2250328985", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49309", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was no one in sight , unless you count the statues .", "storylet_id": "246546"}], [{"original_text": "For some reason it was a quiet day around town.", "album_id": "72157603870972242", "photo_flickr_id": "2250331641", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49309", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "for some reason it was a quiet day around town .", "storylet_id": "246547"}], [{"original_text": "Oh wait, that's because it was so nice that everyone decided to go to the beach.", "album_id": "72157603870972242", "photo_flickr_id": "2250335015", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49309", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "oh wait , that 's because it was so nice that everyone decided to go to the beach .", "storylet_id": "246548"}], [{"original_text": "They had a great afternoon walking up those stairs that led to the pier and then out onto the sand or into the water. ", "album_id": "72157603870972242", "photo_flickr_id": "2250336943", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49309", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had a great afternoon walking up those stairs that led to the pier and then out onto the sand or into the water .", "storylet_id": "246549"}], [{"original_text": "It was that time of year for a party.", "album_id": "72157603947798265", "photo_flickr_id": "2258423349", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "49310", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was that time of year for a party .", "storylet_id": "246550"}], [{"original_text": "We wanted to make the outdoors look nice too.", "album_id": "72157603947798265", "photo_flickr_id": "2259215462", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "49310", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we wanted to make the outdoors look nice too .", "storylet_id": "246551"}], [{"original_text": "The whole town was ready.", "album_id": "72157603947798265", "photo_flickr_id": "2259215838", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "49310", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the whole town was ready .", "storylet_id": "246552"}], [{"original_text": "Everyone started to come over.", "album_id": "72157603947798265", "photo_flickr_id": "2258424747", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "49310", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone started to come over .", "storylet_id": "246553"}], [{"original_text": "All in all it was a fun time and great weather.", "album_id": "72157603947798265", "photo_flickr_id": "2259216116", "setting": "first-2-pick-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "49310", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all in all it was a fun time and great weather .", "storylet_id": "246554"}], [{"original_text": "Going over to see my grandma for Christmas this year.", "album_id": "72157603947798265", "photo_flickr_id": "2258423349", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49311", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going over to see my grandma for christmas this year .", "storylet_id": "246555"}], [{"original_text": "She lives in a very beautiful house outside of the city.", "album_id": "72157603947798265", "photo_flickr_id": "2259216116", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49311", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she lives in a very beautiful house outside of the city .", "storylet_id": "246556"}], [{"original_text": "It is always so beautiful out there this time of year.", "album_id": "72157603947798265", "photo_flickr_id": "2258425647", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49311", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is always so beautiful out there this time of year .", "storylet_id": "246557"}], [{"original_text": "I was so happy to see my grandma and her great aunt.", "album_id": "72157603947798265", "photo_flickr_id": "2259217486", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49311", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was so happy to see my grandma and her great aunt .", "storylet_id": "246558"}], [{"original_text": "Of course her dog is also part of the family! We had a great time.", "album_id": "72157603947798265", "photo_flickr_id": "2258422367", "setting": "first-2-pick-and-tell", "worker_id": "ONQHFMS1FCHLNLK", "story_id": "49311", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of course her dog is also part of the family ! we had a great time .", "storylet_id": "246559"}], [{"original_text": "The Christmas decorations came out,", "album_id": "72157603947798265", "photo_flickr_id": "2258423349", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49312", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the christmas decorations came out ,", "storylet_id": "246560"}], [{"original_text": "even though it didn't look like Winter outside.", "album_id": "72157603947798265", "photo_flickr_id": "2259215462", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49312", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even though it did n't look like winter outside .", "storylet_id": "246561"}], [{"original_text": "Where the family lived didn't get much snow,", "album_id": "72157603947798265", "photo_flickr_id": "2259215838", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49312", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "where the family lived did n't get much snow ,", "storylet_id": "246562"}], [{"original_text": "but that didn't stop it from being cold. Tommy still needed to wear pants and long sleeves to stay warm when he parked the car!", "album_id": "72157603947798265", "photo_flickr_id": "2258424747", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49312", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but that did n't stop it from being cold . [male] still needed to wear pants and long sleeves to stay warm when he parked the car !", "storylet_id": "246563"}], [{"original_text": "Christmas still came to that little house on the hill, even though it wasn't a white one. ", "album_id": "72157603947798265", "photo_flickr_id": "2259216116", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "49312", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "christmas still came to that little house on the hill , even though it was n't a white one .", "storylet_id": "246564"}], [{"original_text": "We started the holidays by settig up a tiny christmas tree.", "album_id": "72157603947798265", "photo_flickr_id": "2258423349", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49313", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started the holidays by settig up a tiny christmas tree .", "storylet_id": "246565"}], [{"original_text": "The streets where calm outside. Everyone was celebrating the holidays.", "album_id": "72157603947798265", "photo_flickr_id": "2259216116", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49313", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the streets where calm outside . everyone was celebrating the holidays .", "storylet_id": "246566"}], [{"original_text": "I went for an afternoon walk to my favorite spot before heading home.", "album_id": "72157603947798265", "photo_flickr_id": "2258425647", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49313", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i went for an afternoon walk to my favorite spot before heading home .", "storylet_id": "246567"}], [{"original_text": "The family sat together and celebrated Christmas.", "album_id": "72157603947798265", "photo_flickr_id": "2259217486", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49313", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family sat together and celebrated christmas .", "storylet_id": "246568"}], [{"original_text": "The night came to an end and everyone slowly went home.", "album_id": "72157603947798265", "photo_flickr_id": "2258422367", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49313", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night came to an end and everyone slowly went home .", "storylet_id": "246569"}], [{"original_text": "We visited family for Christmas.", "album_id": "72157603947798265", "photo_flickr_id": "2258423349", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49314", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited family for christmas .", "storylet_id": "246570"}], [{"original_text": "They live out in the country far from the city.", "album_id": "72157603947798265", "photo_flickr_id": "2259216116", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49314", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they live out in the country far from the city .", "storylet_id": "246571"}], [{"original_text": "The trees lost their leaves because it is so cold outside.", "album_id": "72157603947798265", "photo_flickr_id": "2258425647", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49314", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the trees lost their leaves because it is so cold outside .", "storylet_id": "246572"}], [{"original_text": "They were so happy that we had arrived.", "album_id": "72157603947798265", "photo_flickr_id": "2259217486", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49314", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were so happy that we had arrived .", "storylet_id": "246573"}], [{"original_text": "Even the dog had a marry Christmas.", "album_id": "72157603947798265", "photo_flickr_id": "2258422367", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49314", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the dog had a marry christmas .", "storylet_id": "246574"}], [{"original_text": "The sun rose quietly over the mountain, signalling the start of the new day.", "album_id": "72157603766250446", "photo_flickr_id": "2209218921", "setting": "first-2-pick-and-tell", "worker_id": "BQ8R3MILY3IIKY4", "story_id": "49315", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sun rose quietly over the mountain , signalling the start of the new day .", "storylet_id": "246575"}], [{"original_text": "A solitary bird looked out over the campground.", "album_id": "72157603766250446", "photo_flickr_id": "2210020224", "setting": "first-2-pick-and-tell", "worker_id": "BQ8R3MILY3IIKY4", "story_id": "49315", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a solitary bird looked out over the campground .", "storylet_id": "246576"}], [{"original_text": "The young woman looked over the cheese selections and tried to decide which ones she wanted to take back to the campground.", "album_id": "72157603766250446", "photo_flickr_id": "2209227381", "setting": "first-2-pick-and-tell", "worker_id": "BQ8R3MILY3IIKY4", "story_id": "49315", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the young woman looked over the cheese selections and tried to decide which ones she wanted to take back to the campground .", "storylet_id": "246577"}], [{"original_text": "The young man smiled confidently for the camera, showing how much he enjoys his vacation.", "album_id": "72157603766250446", "photo_flickr_id": "2209225319", "setting": "first-2-pick-and-tell", "worker_id": "BQ8R3MILY3IIKY4", "story_id": "49315", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the young man smiled confidently for the camera , showing how much he enjoys his vacation .", "storylet_id": "246578"}], [{"original_text": "Meanwhile, the large spider marched confidently down the hill, preparing to cause havoc at the camground.", "album_id": "72157603766250446", "photo_flickr_id": "2209228323", "setting": "first-2-pick-and-tell", "worker_id": "BQ8R3MILY3IIKY4", "story_id": "49315", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "meanwhile , the large spider marched confidently down the hill , preparing to cause havoc at the camground .", "storylet_id": "246579"}], [{"original_text": "We had an amazing time on our trip. We visited the chocolate factory and took home a few treats.", "album_id": "72157603766250446", "photo_flickr_id": "2209218191", "setting": "first-2-pick-and-tell", "worker_id": "HVQCFRPO5SCQ5GW", "story_id": "49316", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had an amazing time on our trip . we visited the chocolate factory and took home a few treats .", "storylet_id": "246580"}], [{"original_text": "We relaxed on the beach at sunset. ", "album_id": "72157603766250446", "photo_flickr_id": "2209218705", "setting": "first-2-pick-and-tell", "worker_id": "HVQCFRPO5SCQ5GW", "story_id": "49316", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we relaxed on the beach at sunset .", "storylet_id": "246581"}], [{"original_text": "We explored a rainforest exhibit that had some terrifying spiders and beautiful trees. ", "album_id": "72157603766250446", "photo_flickr_id": "2209219225", "setting": "first-2-pick-and-tell", "worker_id": "HVQCFRPO5SCQ5GW", "story_id": "49316", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we explored a rainforest exhibit that had some terrifying spiders and beautiful trees .", "storylet_id": "246582"}], [{"original_text": "In the afternoons, we relaxed in the yard. ", "album_id": "72157603766250446", "photo_flickr_id": "2210018018", "setting": "first-2-pick-and-tell", "worker_id": "HVQCFRPO5SCQ5GW", "story_id": "49316", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the afternoons , we relaxed in the yard .", "storylet_id": "246583"}], [{"original_text": "The view from the house was breathtaking. It was hard to leave behind. ", "album_id": "72157603766250446", "photo_flickr_id": "2210020136", "setting": "first-2-pick-and-tell", "worker_id": "HVQCFRPO5SCQ5GW", "story_id": "49316", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view from the house was breathtaking . it was hard to leave behind .", "storylet_id": "246584"}], [{"original_text": "Our summer vacation this year was camping in the great outdoors. We were in for an adventure!", "album_id": "72157603766250446", "photo_flickr_id": "2209218921", "setting": "last-3-pick-old-and-tell", "worker_id": "477AE4TTCT57X5A", "story_id": "49317", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our summer vacation this year was camping in the great outdoors . we were in for an adventure !", "storylet_id": "246585"}], [{"original_text": "We saw this eagle nesting in the tree near our campsite. Such a beautiful bird!", "album_id": "72157603766250446", "photo_flickr_id": "2210020224", "setting": "last-3-pick-old-and-tell", "worker_id": "477AE4TTCT57X5A", "story_id": "49317", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw this eagle nesting in the tree near our campsite . such a beautiful bird !", "storylet_id": "246586"}], [{"original_text": "I went to the store to stock up on food for the weekend, while my husband set up the tent on our site.", "album_id": "72157603766250446", "photo_flickr_id": "2209227381", "setting": "last-3-pick-old-and-tell", "worker_id": "477AE4TTCT57X5A", "story_id": "49317", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i went to the store to stock up on food for the weekend , while my husband set up the tent on our site .", "storylet_id": "246587"}], [{"original_text": "When I got back to the site, my husband had everything set up and was lounging in his chair. This was a great night.", "album_id": "72157603766250446", "photo_flickr_id": "2209225319", "setting": "last-3-pick-old-and-tell", "worker_id": "477AE4TTCT57X5A", "story_id": "49317", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when i got back to the site , my husband had everything set up and was lounging in his chair . this was a great night .", "storylet_id": "246588"}], [{"original_text": "Then, right before we went to bed..we saw this spider! It was gigantic! I insisted we head to a hotel instead.", "album_id": "72157603766250446", "photo_flickr_id": "2209228323", "setting": "last-3-pick-old-and-tell", "worker_id": "477AE4TTCT57X5A", "story_id": "49317", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then , right before we went to bed..we saw this spider ! it was gigantic ! i insisted we head to a hotel instead .", "storylet_id": "246589"}], [{"original_text": "We set out from camp early on.", "album_id": "72157603766250446", "photo_flickr_id": "2209218921", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49318", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we set out from camp early on .", "storylet_id": "246590"}], [{"original_text": "We got to see some birds along the trail from there.", "album_id": "72157603766250446", "photo_flickr_id": "2210020224", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49318", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to see some birds along the trail from there .", "storylet_id": "246591"}], [{"original_text": "We looked at some of the local shops from there.", "album_id": "72157603766250446", "photo_flickr_id": "2209227381", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49318", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we looked at some of the local shops from there .", "storylet_id": "246592"}], [{"original_text": "Afterwards, We chilled out by the campsite.", "album_id": "72157603766250446", "photo_flickr_id": "2209225319", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49318", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards , we chilled out by the campsite .", "storylet_id": "246593"}], [{"original_text": "Then, a large spider walked up and made the night that much more interesting.", "album_id": "72157603766250446", "photo_flickr_id": "2209228323", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49318", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then , a large spider walked up and made the night that much more interesting .", "storylet_id": "246594"}], [{"original_text": "The first night of our vacation we saw a beautiful sunset.", "album_id": "72157603766250446", "photo_flickr_id": "2209218921", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3ZHSSERCLC3FK6", "story_id": "49319", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the first night of our vacation we saw a beautiful sunset .", "storylet_id": "246595"}], [{"original_text": "A beautiful black and white bird perched in the leafless tree.", "album_id": "72157603766250446", "photo_flickr_id": "2210020224", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3ZHSSERCLC3FK6", "story_id": "49319", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a beautiful black and white bird perched in the leafless tree .", "storylet_id": "246596"}], [{"original_text": "Sandy chose from a variety of cheeses to find her favorite.", "album_id": "72157603766250446", "photo_flickr_id": "2209227381", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3ZHSSERCLC3FK6", "story_id": "49319", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] chose from a variety of cheeses to find her favorite .", "storylet_id": "246597"}], [{"original_text": "Ben relaxed in a comfortable chair beside the fire.", "album_id": "72157603766250446", "photo_flickr_id": "2209225319", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3ZHSSERCLC3FK6", "story_id": "49319", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] relaxed in a comfortable chair beside the fire .", "storylet_id": "246598"}], [{"original_text": "The black hair spider looked real from a distance but was soon identified as fake.", "album_id": "72157603766250446", "photo_flickr_id": "2209228323", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3ZHSSERCLC3FK6", "story_id": "49319", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the black hair spider looked real from a distance but was soon identified as fake .", "storylet_id": "246599"}], [{"original_text": "The moon rose to a magnificent height that morning.", "album_id": "72157603819121906", "photo_flickr_id": "2229841519", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49320", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the moon rose to a magnificent height that morning .", "storylet_id": "246600"}], [{"original_text": "The plains had a morning dew on them.", "album_id": "72157603819121906", "photo_flickr_id": "2229841259", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49320", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the plains had a morning dew on them .", "storylet_id": "246601"}], [{"original_text": "I realized the plants near the tree were lovely.", "album_id": "72157603819121906", "photo_flickr_id": "2230633970", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49320", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i realized the plants near the tree were lovely .", "storylet_id": "246602"}], [{"original_text": "I also realized the simplicity of the brick wall.", "album_id": "72157603819121906", "photo_flickr_id": "2229824167", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49320", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also realized the simplicity of the brick wall .", "storylet_id": "246603"}], [{"original_text": "Near the end of the day, I went to relax by the water.", "album_id": "72157603819121906", "photo_flickr_id": "2229832331", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49320", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "near the end of the day , i went to relax by the water .", "storylet_id": "246604"}], [{"original_text": "There was a full moon that night. ", "album_id": "72157603819121906", "photo_flickr_id": "2229841519", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49321", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a full moon that night .", "storylet_id": "246605"}], [{"original_text": "The forest was perfectly spooky looking. ", "album_id": "72157603819121906", "photo_flickr_id": "2229828455", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49321", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the forest was perfectly spooky looking .", "storylet_id": "246606"}], [{"original_text": "They found an old path. ", "album_id": "72157603819121906", "photo_flickr_id": "2230622754", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49321", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they found an old path .", "storylet_id": "246607"}], [{"original_text": "If they saw sticks tied together like The Blair Witch movie, she intended to run. ", "album_id": "72157603819121906", "photo_flickr_id": "2230624034", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49321", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "if they saw sticks tied together like the [male] witch movie , she intended to run .", "storylet_id": "246608"}], [{"original_text": "She was relieved when they got to the castle safe and sound. ", "album_id": "72157603819121906", "photo_flickr_id": "2230615488", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49321", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was relieved when they got to the castle safe and sound .", "storylet_id": "246609"}], [{"original_text": "This is the moon as we went on our annual camping trip! What a beautiful full moon!", "album_id": "72157603819121906", "photo_flickr_id": "2229841519", "setting": "last-3-pick-old-and-tell", "worker_id": "DXHNESDONAGM2K6", "story_id": "49322", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the moon as we went on our annual camping trip ! what a beautiful full moon !", "storylet_id": "246610"}], [{"original_text": "When we got up the next morning, we hiked over to the next village. This is the view overlooking the village. ", "album_id": "72157603819121906", "photo_flickr_id": "2229841259", "setting": "last-3-pick-old-and-tell", "worker_id": "DXHNESDONAGM2K6", "story_id": "49322", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we got up the next morning , we hiked over to the next village . this is the view overlooking the village .", "storylet_id": "246611"}], [{"original_text": "We continued our hike and found many different colored leaves since it was fall. ", "album_id": "72157603819121906", "photo_flickr_id": "2230633970", "setting": "last-3-pick-old-and-tell", "worker_id": "DXHNESDONAGM2K6", "story_id": "49322", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we continued our hike and found many different colored leaves since it was fall .", "storylet_id": "246612"}], [{"original_text": "As we continued to hike, we came to a brick wall that came between us and the village. ", "album_id": "72157603819121906", "photo_flickr_id": "2229824167", "setting": "last-3-pick-old-and-tell", "worker_id": "DXHNESDONAGM2K6", "story_id": "49322", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as we continued to hike , we came to a brick wall that came between us and the village .", "storylet_id": "246613"}], [{"original_text": "This is the wall that ended our hike. It was a great hike!", "album_id": "72157603819121906", "photo_flickr_id": "2229832331", "setting": "last-3-pick-old-and-tell", "worker_id": "DXHNESDONAGM2K6", "story_id": "49322", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the wall that ended our hike . it was a great hike !", "storylet_id": "246614"}], [{"original_text": "A full moon brings a melancholy mood the forest below.", "album_id": "72157603819121906", "photo_flickr_id": "2229841519", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "49323", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a full moon brings a melancholy mood the forest below .", "storylet_id": "246615"}], [{"original_text": "No sun the next morn to cheer the gray and dreary forest.", "album_id": "72157603819121906", "photo_flickr_id": "2229828455", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "49323", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "no sun the next morn to cheer the gray and dreary forest .", "storylet_id": "246616"}], [{"original_text": "One full of forgotten and hidden paths.", "album_id": "72157603819121906", "photo_flickr_id": "2230622754", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "49323", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one full of forgotten and hidden paths .", "storylet_id": "246617"}], [{"original_text": "The ground littered with dead wood and rotting leaves.", "album_id": "72157603819121906", "photo_flickr_id": "2230624034", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "49323", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ground littered with dead wood and rotting leaves .", "storylet_id": "246618"}], [{"original_text": "A most formidable defense before the castle at its heart.", "album_id": "72157603819121906", "photo_flickr_id": "2230615488", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "49323", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a most formidable defense before the castle at its heart .", "storylet_id": "246619"}], [{"original_text": "One night, a full moon out hung in the sky glowing with a red sheen. I couldn't sleep, and headed outside for some fresh air.", "album_id": "72157603819121906", "photo_flickr_id": "2229841519", "setting": "last-3-pick-old-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "49324", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one night , a full moon out hung in the sky glowing with a red sheen . i could n't sleep , and headed outside for some fresh air .", "storylet_id": "246620"}], [{"original_text": "Wind whistled through the leafless trees, making an eerie sound. A shiver ran down my spine.", "album_id": "72157603819121906", "photo_flickr_id": "2229828455", "setting": "last-3-pick-old-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "49324", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "wind whistled through the leafless trees , making an eerie sound . a shiver ran down my spine .", "storylet_id": "246621"}], [{"original_text": "I heard someone coming down the path, making heavy footfalls. It sounded someone was heading straight for me, and fast.", "album_id": "72157603819121906", "photo_flickr_id": "2230622754", "setting": "last-3-pick-old-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "49324", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i heard someone coming down the path , making heavy footfalls . it sounded someone was heading straight for me , and fast .", "storylet_id": "246622"}], [{"original_text": "Panicking, I ducked behind a hill and threw some leaves over myself. I tried to stay perfectly still and quiet until the person passed by.", "album_id": "72157603819121906", "photo_flickr_id": "2230624034", "setting": "last-3-pick-old-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "49324", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "panicking , i ducked behind a hill and threw some leaves over myself . i tried to stay perfectly still and quiet until the person passed by .", "storylet_id": "246623"}], [{"original_text": "When I was sure all was safe, I made my way carefully back to the castle. I had to get inside and tell someone what had just happened.", "album_id": "72157603819121906", "photo_flickr_id": "2230615488", "setting": "last-3-pick-old-and-tell", "worker_id": "WVG6SPQI5XU3RT2", "story_id": "49324", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when i was sure all was safe , i made my way carefully back to the castle . i had to get inside and tell someone what had just happened .", "storylet_id": "246624"}], [{"original_text": "The family got together for a day out.", "album_id": "72157607015881191", "photo_flickr_id": "2809700202", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "49325", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family got together for a day out .", "storylet_id": "246625"}], [{"original_text": "They went to a fun museum.", "album_id": "72157607015881191", "photo_flickr_id": "2809698340", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "49325", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they went to a fun museum .", "storylet_id": "246626"}], [{"original_text": "There were lots of interesting exhibits that everyone enjoyed.", "album_id": "72157607015881191", "photo_flickr_id": "2808851063", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "49325", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were lots of interesting exhibits that everyone enjoyed .", "storylet_id": "246627"}], [{"original_text": "They had a good time spending the day together.", "album_id": "72157607015881191", "photo_flickr_id": "2808851497", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "49325", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had a good time spending the day together .", "storylet_id": "246628"}], [{"original_text": "Everyone was worn out by the end of the day!", "album_id": "72157607015881191", "photo_flickr_id": "2809699516", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "49325", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was worn out by the end of the day !", "storylet_id": "246629"}], [{"original_text": "Sara was happy to arrive at orientation. ", "album_id": "72157607015881191", "photo_flickr_id": "2808851345", "setting": "first-2-pick-and-tell", "worker_id": "81UUHOWH4B38LAZ", "story_id": "49326", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was happy to arrive at orientation .", "storylet_id": "246630"}], [{"original_text": "She and her friend even slide down the stairs they were so energized.", "album_id": "72157607015881191", "photo_flickr_id": "2808851497", "setting": "first-2-pick-and-tell", "worker_id": "81UUHOWH4B38LAZ", "story_id": "49326", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she and her friend even slide down the stairs they were so energized .", "storylet_id": "246631"}], [{"original_text": "But when they got there this nerdy guy was talking about his invention. ", "album_id": "72157607015881191", "photo_flickr_id": "2809699364", "setting": "first-2-pick-and-tell", "worker_id": "81UUHOWH4B38LAZ", "story_id": "49326", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but when they got there this nerdy guy was talking about his invention .", "storylet_id": "246632"}], [{"original_text": "And in the other room some kind of depressing support group was going on. ", "album_id": "72157607015881191", "photo_flickr_id": "2809699516", "setting": "first-2-pick-and-tell", "worker_id": "81UUHOWH4B38LAZ", "story_id": "49326", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and in the other room some kind of depressing support group was going on .", "storylet_id": "246633"}], [{"original_text": "So Sara and her friend left the building to find something more fun to do. ", "album_id": "72157607015881191", "photo_flickr_id": "2809698150", "setting": "first-2-pick-and-tell", "worker_id": "81UUHOWH4B38LAZ", "story_id": "49326", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so [female] and her friend left the building to find something more fun to do .", "storylet_id": "246634"}], [{"original_text": "Our family all gathered together before we left for the museum to enjoy on summer break.", "album_id": "72157607015881191", "photo_flickr_id": "2809700202", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "49327", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family all gathered together before we left for the museum to enjoy on summer break .", "storylet_id": "246635"}], [{"original_text": "First stop was to get all the information we needed. The desk kind of reminded me of a Joker's hat for some reason. Joy looked so pretty there.", "album_id": "72157607015881191", "photo_flickr_id": "2809698340", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "49327", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first stop was to get all the information we needed . the desk kind of reminded me of a joker 's hat for some reason . [female] looked so pretty there .", "storylet_id": "246636"}], [{"original_text": "Then off to the imaginary subway train to get into the actual museum, we felt silly.", "album_id": "72157607015881191", "photo_flickr_id": "2808851063", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "49327", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then off to the imaginary subway train to get into the actual museum , we felt silly .", "storylet_id": "246637"}], [{"original_text": "But, not as silly as these two who decided to slide down the stair railings. I thought for sure that the Security Guards were going to ask us to leave!", "album_id": "72157607015881191", "photo_flickr_id": "2808851497", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "49327", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but , not as silly as these two who decided to slide down the stair railings . i thought for sure that the security guards were going to ask us to leave !", "storylet_id": "246638"}], [{"original_text": "At the end we took a group picture. We were all so tired and hungry. But over all, we had a delightful day.", "album_id": "72157607015881191", "photo_flickr_id": "2809699516", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "49327", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end we took a group picture . we were all so tired and hungry . but over all , we had a delightful day .", "storylet_id": "246639"}], [{"original_text": "The church tour was a complete success.", "album_id": "72157607015881191", "photo_flickr_id": "2808851345", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49328", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the church tour was a complete success .", "storylet_id": "246640"}], [{"original_text": "The ladies posed in a funny way.", "album_id": "72157607015881191", "photo_flickr_id": "2808851497", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49328", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ladies posed in a funny way .", "storylet_id": "246641"}], [{"original_text": "Chad likes to touch things with his hands.", "album_id": "72157607015881191", "photo_flickr_id": "2809699364", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49328", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "location likes to touch things with his hands .", "storylet_id": "246642"}], [{"original_text": "We went into a room and saw a group mourning someone's death.", "album_id": "72157607015881191", "photo_flickr_id": "2809699516", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49328", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went into a room and saw a group mourning someone 's death .", "storylet_id": "246643"}], [{"original_text": "The outside of the building looked nice when I left.", "album_id": "72157607015881191", "photo_flickr_id": "2809698150", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "49328", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the outside of the building looked nice when i left .", "storylet_id": "246644"}], [{"original_text": "Our church is throwing a festival.", "album_id": "72157607015881191", "photo_flickr_id": "2809700202", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "49329", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our church is throwing a festival .", "storylet_id": "246645"}], [{"original_text": "The info station i helped setup!", "album_id": "72157607015881191", "photo_flickr_id": "2809698340", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "49329", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the info station i helped setup !", "storylet_id": "246646"}], [{"original_text": "Kids area, looks like so much fun!", "album_id": "72157607015881191", "photo_flickr_id": "2808851063", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "49329", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "kids area , looks like so much fun !", "storylet_id": "246647"}], [{"original_text": "Posing like weridos on he staircase!", "album_id": "72157607015881191", "photo_flickr_id": "2808851497", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "49329", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "posing like weridos on he staircase !", "storylet_id": "246648"}], [{"original_text": "Prayer circle in the worship center.", "album_id": "72157607015881191", "photo_flickr_id": "2809699516", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "49329", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "prayer circle in the worship center .", "storylet_id": "246649"}], [{"original_text": "Today I got to take a trip to my husbands work. This is the trolley. ", "album_id": "72157607018707495", "photo_flickr_id": "2810227720", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49330", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i got to take a trip to my husbands work . this is the trolley .", "storylet_id": "246650"}], [{"original_text": "Here's me and my husband at his job.", "album_id": "72157607018707495", "photo_flickr_id": "2810228582", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49330", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's me and my husband at his job .", "storylet_id": "246651"}], [{"original_text": "Wow, a rocket, I think it will go to Mars someday.", "album_id": "72157607018707495", "photo_flickr_id": "2810228224", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49330", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "wow , a rocket , i think it will go to location someday .", "storylet_id": "246652"}], [{"original_text": "What, a new car for the future, shhh, it flies but it's hush hush.", "album_id": "72157607018707495", "photo_flickr_id": "2810229492", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49330", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what , a new car for the future , shhh , it flies but it 's hush hush .", "storylet_id": "246653"}], [{"original_text": "Here is another car, this one drives itself. Shh, don't tell anyone.", "album_id": "72157607018707495", "photo_flickr_id": "2809381151", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49330", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is another car , this one drives itself . shh , do n't tell anyone .", "storylet_id": "246654"}], [{"original_text": "Here is the happy couple on vacation.", "album_id": "72157607018707495", "photo_flickr_id": "2810228582", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49331", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is the happy couple on vacation .", "storylet_id": "246655"}], [{"original_text": "I'm in the rocket taking it for a test drive.", "album_id": "72157607018707495", "photo_flickr_id": "2809381151", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49331", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm in the rocket taking it for a test drive .", "storylet_id": "246656"}], [{"original_text": "My wife is trying out her own rocket to see what she thinks.", "album_id": "72157607018707495", "photo_flickr_id": "2809381291", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49331", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my wife is trying out her own rocket to see what she thinks .", "storylet_id": "246657"}], [{"original_text": "Checking out the control panels to make sure I can operate them.", "album_id": "72157607018707495", "photo_flickr_id": "2809381633", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49331", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "checking out the control panels to make sure i can operate them .", "storylet_id": "246658"}], [{"original_text": "Before I get in I need to make sure I can drive it.", "album_id": "72157607018707495", "photo_flickr_id": "2810229492", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49331", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before i get in i need to make sure i can drive it .", "storylet_id": "246659"}], [{"original_text": "We arrived on a tram that went so quickly. ", "album_id": "72157607018707495", "photo_flickr_id": "2810227720", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "49332", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived on a tram that went so quickly .", "storylet_id": "246660"}], [{"original_text": "We were very excited to have finally arrived.", "album_id": "72157607018707495", "photo_flickr_id": "2810228582", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "49332", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were very excited to have finally arrived .", "storylet_id": "246661"}], [{"original_text": "All of the space materials were interesting to look at.", "album_id": "72157607018707495", "photo_flickr_id": "2810228224", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "49332", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of the space materials were interesting to look at .", "storylet_id": "246662"}], [{"original_text": "There was even a ride that we were allowed to use.", "album_id": "72157607018707495", "photo_flickr_id": "2810229492", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "49332", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was even a ride that we were allowed to use .", "storylet_id": "246663"}], [{"original_text": "I myself took a test run in it. It was so much fun.", "album_id": "72157607018707495", "photo_flickr_id": "2809381151", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "49332", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i myself took a test run in it . it was so much fun .", "storylet_id": "246664"}], [{"original_text": "Today, they decided to visit the aerospace center. ", "album_id": "72157607018707495", "photo_flickr_id": "2810228582", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49333", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , they decided to visit the aerospace center .", "storylet_id": "246665"}], [{"original_text": "They were given rides in simulators. ", "album_id": "72157607018707495", "photo_flickr_id": "2809381151", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49333", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were given rides in simulators .", "storylet_id": "246666"}], [{"original_text": "She screamed during the entire ride. ", "album_id": "72157607018707495", "photo_flickr_id": "2809381291", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49333", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she screamed during the entire ride .", "storylet_id": "246667"}], [{"original_text": "She was particular interested in the control center. ", "album_id": "72157607018707495", "photo_flickr_id": "2809381633", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49333", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was particular interested in the control center .", "storylet_id": "246668"}], [{"original_text": "He was more fascinated with the rides. ", "album_id": "72157607018707495", "photo_flickr_id": "2810229492", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49333", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was more fascinated with the rides .", "storylet_id": "246669"}], [{"original_text": "My husband and I were finally going on a trip to the Houston Space Center! ", "album_id": "72157607018707495", "photo_flickr_id": "2810227720", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "49334", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband and i were finally going on a trip to the location location location !", "storylet_id": "246670"}], [{"original_text": "We got on the tram that leads you from the parking lot to the actual museum.", "album_id": "72157607018707495", "photo_flickr_id": "2810228582", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "49334", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got on the tram that leads you from the parking lot to the actual museum .", "storylet_id": "246671"}], [{"original_text": "When we got inside, they had an actual shuttle on display that was open so we could see the inside.", "album_id": "72157607018707495", "photo_flickr_id": "2810228224", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "49334", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we got inside , they had an actual shuttle on display that was open so we could see the inside .", "storylet_id": "246672"}], [{"original_text": "They had lots of experimental vehicles on display and this really captivated my husband.", "album_id": "72157607018707495", "photo_flickr_id": "2810229492", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "49334", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had lots of experimental vehicles on display and this really captivated my husband .", "storylet_id": "246673"}], [{"original_text": "He even got to test one of them out in a simulator. It was a great day and something we would definitely do again.", "album_id": "72157607018707495", "photo_flickr_id": "2809381151", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "49334", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he even got to test one of them out in a simulator . it was a great day and something we would definitely do again .", "storylet_id": "246674"}], [{"original_text": "As night fell, the crowd gathered for the race.", "album_id": "72157622987335991", "photo_flickr_id": "4232526461", "setting": "first-2-pick-and-tell", "worker_id": "UX2F5GIVEBUT7K4", "story_id": "49335", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as night fell , the crowd gathered for the race .", "storylet_id": "246675"}], [{"original_text": "Everyone game out with their fun costumes.", "album_id": "72157622987335991", "photo_flickr_id": "4232528533", "setting": "first-2-pick-and-tell", "worker_id": "UX2F5GIVEBUT7K4", "story_id": "49335", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone game out with their fun costumes .", "storylet_id": "246676"}], [{"original_text": "The cold couldn't stop this ballerina from joining in.", "album_id": "72157622987335991", "photo_flickr_id": "4232528175", "setting": "first-2-pick-and-tell", "worker_id": "UX2F5GIVEBUT7K4", "story_id": "49335", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cold could n't stop this ballerina from joining in .", "storylet_id": "246677"}], [{"original_text": "These tetris costumes were difficult to run in, but were a hit.", "album_id": "72157622987335991", "photo_flickr_id": "4233301342", "setting": "first-2-pick-and-tell", "worker_id": "UX2F5GIVEBUT7K4", "story_id": "49335", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these tetris costumes were difficult to run in , but were a hit .", "storylet_id": "246678"}], [{"original_text": "A fireworks display was the perfect end to a great night.", "album_id": "72157622987335991", "photo_flickr_id": "4232526827", "setting": "first-2-pick-and-tell", "worker_id": "UX2F5GIVEBUT7K4", "story_id": "49335", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a fireworks display was the perfect end to a great night .", "storylet_id": "246679"}], [{"original_text": "The morning race was about to be underway.", "album_id": "72157622987335991", "photo_flickr_id": "4232524689", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49336", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the morning race was about to be underway .", "storylet_id": "246680"}], [{"original_text": "We received our bib numbers and waited for the line up.", "album_id": "72157622987335991", "photo_flickr_id": "4233296922", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49336", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we received our bib numbers and waited for the line up .", "storylet_id": "246681"}], [{"original_text": "The crowds began to gather.", "album_id": "72157622987335991", "photo_flickr_id": "4233297208", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49336", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowds began to gather .", "storylet_id": "246682"}], [{"original_text": "By midnight the lines were already getting deeper.", "album_id": "72157622987335991", "photo_flickr_id": "4232525449", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49336", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "by midnight the lines were already getting deeper .", "storylet_id": "246683"}], [{"original_text": "The fireworks went off to signal the start.", "album_id": "72157622987335991", "photo_flickr_id": "4233302390", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49336", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fireworks went off to signal the start .", "storylet_id": "246684"}], [{"original_text": "A strange tradition at my college is the fireworks-lit night race.", "album_id": "72157622987335991", "photo_flickr_id": "4232526461", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49337", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a strange tradition at my college is the fireworks-lit night race .", "storylet_id": "246685"}], [{"original_text": "It takes place during the winter, so everyone dresses warmly.", "album_id": "72157622987335991", "photo_flickr_id": "4232528533", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49337", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it takes place during the winter , so everyone dresses warmly .", "storylet_id": "246686"}], [{"original_text": "Fireworks go off all during the race---you can see everyone here is a little distracted!", "album_id": "72157622987335991", "photo_flickr_id": "4232528175", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49337", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "fireworks go off all during the race -- -you can see everyone here is a little distracted !", "storylet_id": "246687"}], [{"original_text": "People dress up in strange costumes, to try to look like unlit fireworks.", "album_id": "72157622987335991", "photo_flickr_id": "4233301342", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49337", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people dress up in strange costumes , to try to look like unlit fireworks .", "storylet_id": "246688"}], [{"original_text": "I love looking up as I run and seeing the big explosions!", "album_id": "72157622987335991", "photo_flickr_id": "4232526827", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49337", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love looking up as i run and seeing the big explosions !", "storylet_id": "246689"}], [{"original_text": "There was a charity walk-a-thon last night.", "album_id": "72157622987335991", "photo_flickr_id": "4232526461", "setting": "last-3-pick-old-and-tell", "worker_id": "6NFZOY74NKK3OTN", "story_id": "49338", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a charity walk-a-thon last night .", "storylet_id": "246690"}], [{"original_text": "Lots of people showed up to it.", "album_id": "72157622987335991", "photo_flickr_id": "4232528533", "setting": "last-3-pick-old-and-tell", "worker_id": "6NFZOY74NKK3OTN", "story_id": "49338", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of people showed up to it .", "storylet_id": "246691"}], [{"original_text": "It had to be well over 1500 people total.", "album_id": "72157622987335991", "photo_flickr_id": "4232528175", "setting": "last-3-pick-old-and-tell", "worker_id": "6NFZOY74NKK3OTN", "story_id": "49338", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it had to be well over 1500 people total .", "storylet_id": "246692"}], [{"original_text": "Some people even dressed up in weird costumes.", "album_id": "72157622987335991", "photo_flickr_id": "4233301342", "setting": "last-3-pick-old-and-tell", "worker_id": "6NFZOY74NKK3OTN", "story_id": "49338", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people even dressed up in weird costumes .", "storylet_id": "246693"}], [{"original_text": "After everyone finished, there was a big fireworks display.", "album_id": "72157622987335991", "photo_flickr_id": "4232526827", "setting": "last-3-pick-old-and-tell", "worker_id": "6NFZOY74NKK3OTN", "story_id": "49338", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after everyone finished , there was a big fireworks display .", "storylet_id": "246694"}], [{"original_text": "A crowd is gathered together for New Years.", "album_id": "72157622987335991", "photo_flickr_id": "4232526461", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49339", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a crowd is gathered together for new years .", "storylet_id": "246695"}], [{"original_text": "A man and woman wear headpieces for the new year.", "album_id": "72157622987335991", "photo_flickr_id": "4232528533", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49339", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a man and woman wear headpieces for the new year .", "storylet_id": "246696"}], [{"original_text": "The group is gathered together for warmth.", "album_id": "72157622987335991", "photo_flickr_id": "4232528175", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49339", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the group is gathered together for warmth .", "storylet_id": "246697"}], [{"original_text": "Two of the people are wearing strange costumes.", "album_id": "72157622987335991", "photo_flickr_id": "4233301342", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49339", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two of the people are wearing strange costumes .", "storylet_id": "246698"}], [{"original_text": "Finally some fireworks take place.", "album_id": "72157622987335991", "photo_flickr_id": "4232526827", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49339", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally some fireworks take place .", "storylet_id": "246699"}], [{"original_text": "During Christmas, the oldest son of a family of 5 got socks.", "album_id": "72157594458437632", "photo_flickr_id": "345042358", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "49340", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during christmas , the oldest son of a family of 5 got socks .", "storylet_id": "246700"}], [{"original_text": "The mom got a book from one of her favorite authors.", "album_id": "72157594458437632", "photo_flickr_id": "345044356", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "49340", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the mom got a book from one of her favorite authors .", "storylet_id": "246701"}], [{"original_text": "Dad got a new keyring so he could stop losing his keys.", "album_id": "72157594458437632", "photo_flickr_id": "345046756", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "49340", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad got a new keyring so he could stop losing his keys .", "storylet_id": "246702"}], [{"original_text": "The youngest daughter got some new baby clothes for her newborn.", "album_id": "72157594458437632", "photo_flickr_id": "345049693", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "49340", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the youngest daughter got some new baby clothes for her newborn .", "storylet_id": "246703"}], [{"original_text": "The youngest son got a new video game for the Nintendo Wii", "album_id": "72157594458437632", "photo_flickr_id": "345051681", "setting": "first-2-pick-and-tell", "worker_id": "DCPP7KNP26QCXJX", "story_id": "49340", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the youngest son got a new video game for the organization organization", "storylet_id": "246704"}], [{"original_text": "I had a great Christmas this year.", "album_id": "72157594458437632", "photo_flickr_id": "345041369", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49341", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great christmas this year .", "storylet_id": "246705"}], [{"original_text": "My entire family received great gifts.", "album_id": "72157594458437632", "photo_flickr_id": "345042358", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49341", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my entire family received great gifts .", "storylet_id": "246706"}], [{"original_text": "I got everything that I wanted.", "album_id": "72157594458437632", "photo_flickr_id": "345043329", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49341", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got everything that i wanted .", "storylet_id": "246707"}], [{"original_text": "And a new car.", "album_id": "72157594458437632", "photo_flickr_id": "345046756", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49341", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and a new car .", "storylet_id": "246708"}], [{"original_text": "And my wife got me this shirt.", "album_id": "72157594458437632", "photo_flickr_id": "345048727", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49341", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and my wife got me this shirt .", "storylet_id": "246709"}], [{"original_text": "In keeping with Christmas tradition, Joey got underwear.", "album_id": "72157594458437632", "photo_flickr_id": "345042358", "setting": "last-3-pick-old-and-tell", "worker_id": "X1PYO9ZWCXQ8TQQ", "story_id": "49342", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in keeping with christmas tradition , [male] got underwear .", "storylet_id": "246710"}], [{"original_text": "Sue got a book she wanted. Knowing her, she'll have it finished before New Year!", "album_id": "72157594458437632", "photo_flickr_id": "345044356", "setting": "last-3-pick-old-and-tell", "worker_id": "X1PYO9ZWCXQ8TQQ", "story_id": "49342", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] got a book she wanted . knowing her , she 'll have it finished before new year !", "storylet_id": "246711"}], [{"original_text": "Phil did pretty well. His wife got him a car! I'm envious...but he deserves it.", "album_id": "72157594458437632", "photo_flickr_id": "345046756", "setting": "last-3-pick-old-and-tell", "worker_id": "X1PYO9ZWCXQ8TQQ", "story_id": "49342", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] did pretty well . his wife got him a car ! i 'm envious ... but he deserves it .", "storylet_id": "246712"}], [{"original_text": "Another tradition. I got a new pair of warm & snuggly PJs.", "album_id": "72157594458437632", "photo_flickr_id": "345049693", "setting": "last-3-pick-old-and-tell", "worker_id": "X1PYO9ZWCXQ8TQQ", "story_id": "49342", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another tradition . i got a new pair of warm & snuggly pjs .", "storylet_id": "246713"}], [{"original_text": "I'm glad I got this picture of Tom when I did, because immediately after this, he disappeared into his room to play the game.", "album_id": "72157594458437632", "photo_flickr_id": "345051681", "setting": "last-3-pick-old-and-tell", "worker_id": "X1PYO9ZWCXQ8TQQ", "story_id": "49342", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm glad i got this picture of [male] when i did , because immediately after this , he disappeared into his room to play the game .", "storylet_id": "246714"}], [{"original_text": "We all got together for Christmas again! Here's my brother with yet more underwear!", "album_id": "72157594458437632", "photo_flickr_id": "345042358", "setting": "last-3-pick-old-and-tell", "worker_id": "1UAE2DP6V1ZY5Y6", "story_id": "49343", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all got together for christmas again ! here 's my brother with yet more underwear !", "storylet_id": "246715"}], [{"original_text": "Mom got a book from her favorite author.", "album_id": "72157594458437632", "photo_flickr_id": "345044356", "setting": "last-3-pick-old-and-tell", "worker_id": "1UAE2DP6V1ZY5Y6", "story_id": "49343", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom got a book from her favorite author .", "storylet_id": "246716"}], [{"original_text": "My uncle got some sort of electronic gadget. I'm sure he'll figure it out!", "album_id": "72157594458437632", "photo_flickr_id": "345046756", "setting": "last-3-pick-old-and-tell", "worker_id": "1UAE2DP6V1ZY5Y6", "story_id": "49343", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my uncle got some sort of electronic gadget . i 'm sure he 'll figure it out !", "storylet_id": "246717"}], [{"original_text": "My sister with some new clothes for her baby.", "album_id": "72157594458437632", "photo_flickr_id": "345049693", "setting": "last-3-pick-old-and-tell", "worker_id": "1UAE2DP6V1ZY5Y6", "story_id": "49343", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my sister with some new clothes for her baby .", "storylet_id": "246718"}], [{"original_text": "Joe with the new Zelda game! He'll be bust for awhile.", "album_id": "72157594458437632", "photo_flickr_id": "345051681", "setting": "last-3-pick-old-and-tell", "worker_id": "1UAE2DP6V1ZY5Y6", "story_id": "49343", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] with the new [female] game ! he 'll be bust for awhile .", "storylet_id": "246719"}], [{"original_text": "Its Christmas time and everyone is opening gifts. This guy is not impressed.", "album_id": "72157594458437632", "photo_flickr_id": "345042358", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49344", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "its christmas time and everyone is opening gifts . this guy is not impressed .", "storylet_id": "246720"}], [{"original_text": "Mom gets a book and is excited to read it.", "album_id": "72157594458437632", "photo_flickr_id": "345044356", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49344", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom gets a book and is excited to read it .", "storylet_id": "246721"}], [{"original_text": "Someone else gets a keyless entry key for their car.", "album_id": "72157594458437632", "photo_flickr_id": "345046756", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49344", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "someone else gets a keyless entry key for their car .", "storylet_id": "246722"}], [{"original_text": "She gets pajamas and doesn't look too thrilled about it.", "album_id": "72157594458437632", "photo_flickr_id": "345049693", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49344", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she gets pajamas and does n't look too thrilled about it .", "storylet_id": "246723"}], [{"original_text": "Finally he gets to open a gift and is excited to do so.", "album_id": "72157594458437632", "photo_flickr_id": "345051681", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49344", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally he gets to open a gift and is excited to do so .", "storylet_id": "246724"}], [{"original_text": "I was walking along the shore when I spotted a baby seal.", "album_id": "72157623003626359", "photo_flickr_id": "4240870628", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49345", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was walking along the shore when i spotted a baby seal .", "storylet_id": "246725"}], [{"original_text": "It was awesome! I had to stop and take a picture of it.", "album_id": "72157623003626359", "photo_flickr_id": "4262347589", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49345", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was awesome ! i had to stop and take a picture of it .", "storylet_id": "246726"}], [{"original_text": "I tried to hide so that it wouldn't see me and run away.", "album_id": "72157623003626359", "photo_flickr_id": "4240102269", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49345", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i tried to hide so that it would n't see me and run away .", "storylet_id": "246727"}], [{"original_text": "My dog saw the seal and wanted to approach it.", "album_id": "72157623003626359", "photo_flickr_id": "4240111795", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49345", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my dog saw the seal and wanted to approach it .", "storylet_id": "246728"}], [{"original_text": "The baby seal eventually crawled over to its parents.", "album_id": "72157623003626359", "photo_flickr_id": "4263096440", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49345", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the baby seal eventually crawled over to its parents .", "storylet_id": "246729"}], [{"original_text": "One of the best things we saw the whole trip was the seals.", "album_id": "72157623003626359", "photo_flickr_id": "4240075057", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49346", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one of the best things we saw the whole trip was the seals .", "storylet_id": "246730"}], [{"original_text": "The seals are a playful animal.", "album_id": "72157623003626359", "photo_flickr_id": "4240867510", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49346", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the seals are a playful animal .", "storylet_id": "246731"}], [{"original_text": "We were doing a photo shoot when we came upon them.", "album_id": "72157623003626359", "photo_flickr_id": "4240102269", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49346", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were doing a photo shoot when we came upon them .", "storylet_id": "246732"}], [{"original_text": "Our dog had alerted us to them.", "album_id": "72157623003626359", "photo_flickr_id": "4240111795", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49346", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our dog had alerted us to them .", "storylet_id": "246733"}], [{"original_text": "We knew something when he came running up the beach toward us.", "album_id": "72157623003626359", "photo_flickr_id": "4240901222", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49346", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we knew something when he came running up the beach toward us .", "storylet_id": "246734"}], [{"original_text": "The walrus enjoys a nice day on the beach. ", "album_id": "72157623003626359", "photo_flickr_id": "4240075057", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49347", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the walrus enjoys a nice day on the beach .", "storylet_id": "246735"}], [{"original_text": "The eyes of the walrus pierce your soul, as if asking to come join you. ", "album_id": "72157623003626359", "photo_flickr_id": "4240867510", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49347", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the eyes of the walrus pierce your soul , as if asking to come join you .", "storylet_id": "246736"}], [{"original_text": "I had to hide far away in the bushes, so that I could capture the shots of the walrus. ", "album_id": "72157623003626359", "photo_flickr_id": "4240102269", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49347", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had to hide far away in the bushes , so that i could capture the shots of the walrus .", "storylet_id": "246737"}], [{"original_text": "My trusty companion is taking a break after running around at the beach. ", "album_id": "72157623003626359", "photo_flickr_id": "4240111795", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49347", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my trusty companion is taking a break after running around at the beach .", "storylet_id": "246738"}], [{"original_text": "My companion is running around the beach, and running away from the waves. ", "album_id": "72157623003626359", "photo_flickr_id": "4240901222", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49347", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my companion is running around the beach , and running away from the waves .", "storylet_id": "246739"}], [{"original_text": "A seal laying on the ground in the snow.", "album_id": "72157623003626359", "photo_flickr_id": "4240870628", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49348", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a seal laying on the ground in the snow .", "storylet_id": "246740"}], [{"original_text": "The seal sees the cameraman.", "album_id": "72157623003626359", "photo_flickr_id": "4262347589", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49348", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the seal sees the cameraman .", "storylet_id": "246741"}], [{"original_text": "The cameraman takes a picture of the seal.", "album_id": "72157623003626359", "photo_flickr_id": "4240102269", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49348", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cameraman takes a picture of the seal .", "storylet_id": "246742"}], [{"original_text": "A dog looks on at the seal.", "album_id": "72157623003626359", "photo_flickr_id": "4240111795", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49348", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a dog looks on at the seal .", "storylet_id": "246743"}], [{"original_text": "The seal nuzzles another seal laying on the ground.", "album_id": "72157623003626359", "photo_flickr_id": "4263096440", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49348", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the seal nuzzles another seal laying on the ground .", "storylet_id": "246744"}], [{"original_text": "Alaska's outback is not to be compared. Many area have never been traveled by humans. This seal doesn't seem to have any fear of man. ", "album_id": "72157623003626359", "photo_flickr_id": "4240870628", "setting": "last-3-pick-old-and-tell", "worker_id": "AFXJ3ZY3I4CBL4Q", "story_id": "49349", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location 's outback is not to be compared . many area have never been traveled by humans . this seal does n't seem to have any fear of man .", "storylet_id": "246745"}], [{"original_text": "I can't believe I was able to get this close to her. I can see her black eyes and the cool air ascending from her breathe. ", "album_id": "72157623003626359", "photo_flickr_id": "4262347589", "setting": "last-3-pick-old-and-tell", "worker_id": "AFXJ3ZY3I4CBL4Q", "story_id": "49349", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i ca n't believe i was able to get this close to her . i can see her black eyes and the cool air ascending from her breathe .", "storylet_id": "246746"}], [{"original_text": "It's an eerie quietness out here but I love every minute of it. ", "album_id": "72157623003626359", "photo_flickr_id": "4240102269", "setting": "last-3-pick-old-and-tell", "worker_id": "AFXJ3ZY3I4CBL4Q", "story_id": "49349", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's an eerie quietness out here but i love every minute of it .", "storylet_id": "246747"}], [{"original_text": "My dog Harry loves it too. He seems quite relaxed. ", "album_id": "72157623003626359", "photo_flickr_id": "4240111795", "setting": "last-3-pick-old-and-tell", "worker_id": "AFXJ3ZY3I4CBL4Q", "story_id": "49349", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my dog [male] loves it too . he seems quite relaxed .", "storylet_id": "246748"}], [{"original_text": "The area is full of walrus and seals. The shots I am able to get are amazing. ", "album_id": "72157623003626359", "photo_flickr_id": "4263096440", "setting": "last-3-pick-old-and-tell", "worker_id": "AFXJ3ZY3I4CBL4Q", "story_id": "49349", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the area is full of walrus and seals . the shots i am able to get are amazing .", "storylet_id": "246749"}], [{"original_text": "I went to the museum last week.", "album_id": "72157623618977978", "photo_flickr_id": "4432058479", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49350", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the museum last week .", "storylet_id": "246750"}], [{"original_text": "There were many strange robots there.", "album_id": "72157623618977978", "photo_flickr_id": "4432058695", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49350", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many strange robots there .", "storylet_id": "246751"}], [{"original_text": "They had some that looked like insects.", "album_id": "72157623618977978", "photo_flickr_id": "4432831688", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49350", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had some that looked like insects .", "storylet_id": "246752"}], [{"original_text": "Others looked like animals.", "album_id": "72157623618977978", "photo_flickr_id": "4432060379", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49350", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others looked like animals .", "storylet_id": "246753"}], [{"original_text": "I spent a few hours there.", "album_id": "72157623618977978", "photo_flickr_id": "4432833418", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49350", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i spent a few hours there .", "storylet_id": "246754"}], [{"original_text": "The team geared up for the science convention.", "album_id": "72157623618977978", "photo_flickr_id": "4432831058", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49351", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the team geared up for the science convention .", "storylet_id": "246755"}], [{"original_text": "They unveiled their new robot design.", "album_id": "72157623618977978", "photo_flickr_id": "4432058695", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49351", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they unveiled their new robot design .", "storylet_id": "246756"}], [{"original_text": "Other teams showcased their projects as well.", "album_id": "72157623618977978", "photo_flickr_id": "4432832274", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49351", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other teams showcased their projects as well .", "storylet_id": "246757"}], [{"original_text": "One team made a new type of remote car.", "album_id": "72157623618977978", "photo_flickr_id": "4432833614", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49351", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one team made a new type of remote car .", "storylet_id": "246758"}], [{"original_text": "This team won the most votes with their horse robot.", "album_id": "72157623618977978", "photo_flickr_id": "4432061647", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49351", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this team won the most votes with their horse robot .", "storylet_id": "246759"}], [{"original_text": "The technology exhibits were amazing, this one looks like its making lightning.", "album_id": "72157623618977978", "photo_flickr_id": "4432058479", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "49352", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the technology exhibits were amazing , this one looks like its making lightning .", "storylet_id": "246760"}], [{"original_text": "This robot guy had a very interesting display.", "album_id": "72157623618977978", "photo_flickr_id": "4432058695", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "49352", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this robot guy had a very interesting display .", "storylet_id": "246761"}], [{"original_text": "This spider robot was really scary, let's hope they don't take over the world and enslave us all.", "album_id": "72157623618977978", "photo_flickr_id": "4432831688", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "49352", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this spider robot was really scary , let 's hope they do n't take over the world and enslave us all .", "storylet_id": "246762"}], [{"original_text": "This horse-robot-thing was kind of funny looking, i wanted to jump on it and go for a ride, but I didn't want to pay for it when I broke it.", "album_id": "72157623618977978", "photo_flickr_id": "4432060379", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "49352", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this horse-robot-thing was kind of funny looking , i wanted to jump on it and go for a ride , but i did n't want to pay for it when i broke it .", "storylet_id": "246763"}], [{"original_text": "Heres the robot guy again, hes a little big to be a calculator, I wonder what his purpose is?", "album_id": "72157623618977978", "photo_flickr_id": "4432833418", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "49352", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "heres the robot guy again , hes a little big to be a calculator , i wonder what his purpose is ?", "storylet_id": "246764"}], [{"original_text": "The students at UCLA entered a robot competition. They planned their robot.", "album_id": "72157623618977978", "photo_flickr_id": "4432831058", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "49353", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the students at organization entered a robot competition . they planned their robot .", "storylet_id": "246765"}], [{"original_text": "They then built the robot. They made it look like a human.", "album_id": "72157623618977978", "photo_flickr_id": "4432058695", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "49353", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they then built the robot . they made it look like a human .", "storylet_id": "246766"}], [{"original_text": "They got to the competition and waited their turn.", "album_id": "72157623618977978", "photo_flickr_id": "4432832274", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "49353", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they got to the competition and waited their turn .", "storylet_id": "246767"}], [{"original_text": "Whend it was therir turn they showed off their robot and won the competition. They", "album_id": "72157623618977978", "photo_flickr_id": "4432833614", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "49353", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "whend it was therir turn they showed off their robot and won the competition . they", "storylet_id": "246768"}], [{"original_text": "They then got to keep the robot that lost to theirs. ", "album_id": "72157623618977978", "photo_flickr_id": "4432061647", "setting": "last-3-pick-old-and-tell", "worker_id": "9112T1YNPSBLDLD", "story_id": "49353", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they then got to keep the robot that lost to theirs .", "storylet_id": "246769"}], [{"original_text": "Today we had a party at work. ", "album_id": "72157623618977978", "photo_flickr_id": "4432831058", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "49354", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we had a party at work .", "storylet_id": "246770"}], [{"original_text": "My friend made a robot to serve us and entertain us. ", "album_id": "72157623618977978", "photo_flickr_id": "4432058695", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "49354", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend made a robot to serve us and entertain us .", "storylet_id": "246771"}], [{"original_text": "We then played games with the robot. ", "album_id": "72157623618977978", "photo_flickr_id": "4432832274", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "49354", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we then played games with the robot .", "storylet_id": "246772"}], [{"original_text": "The games was fun, but brutal. ", "album_id": "72157623618977978", "photo_flickr_id": "4432833614", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "49354", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the games was fun , but brutal .", "storylet_id": "246773"}], [{"original_text": "The other robot was sad that he lost. Oh well. ", "album_id": "72157623618977978", "photo_flickr_id": "4432061647", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "49354", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the other robot was sad that he lost . oh well .", "storylet_id": "246774"}], [{"original_text": "I got to talk with some of the racers.", "album_id": "72157601365594266", "photo_flickr_id": "1081467225", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "49355", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got to talk with some of the racers .", "storylet_id": "246775"}], [{"original_text": "This guy was awesome and we thought his hair was cool.", "album_id": "72157601365594266", "photo_flickr_id": "1082321576", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "49355", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this guy was awesome and we thought his hair was cool .", "storylet_id": "246776"}], [{"original_text": "There were people of all ages attending the event", "album_id": "72157601365594266", "photo_flickr_id": "1082323630", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "49355", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were people of all ages attending the event", "storylet_id": "246777"}], [{"original_text": "Me pretending like I had won the race.", "album_id": "72157601365594266", "photo_flickr_id": "1082324742", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "49355", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "me pretending like i had won the race .", "storylet_id": "246778"}], [{"original_text": "Had to get a picture with the sign before the day was over", "album_id": "72157601365594266", "photo_flickr_id": "1081470817", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "49355", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "had to get a picture with the sign before the day was over", "storylet_id": "246779"}], [{"original_text": "SIGNING UP FOR A CAR RACE", "album_id": "72157601365594266", "photo_flickr_id": "1081467225", "setting": "first-2-pick-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "49356", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "signing up for a car race", "storylet_id": "246780"}], [{"original_text": "SHOPPING GETTING READY FOR THE RACE", "album_id": "72157601365594266", "photo_flickr_id": "1082323860", "setting": "first-2-pick-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "49356", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "shopping getting ready for the race", "storylet_id": "246781"}], [{"original_text": "THE CLOUD IN THE BACK GROUND WATCHING THE DRIVER WAITING", "album_id": "72157601365594266", "photo_flickr_id": "1081469793", "setting": "first-2-pick-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "49356", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cloud in the back ground watching the driver waiting", "storylet_id": "246782"}], [{"original_text": "STAND BY HIS CAR WAITING TO PUT ON HELLBENT TO GET STARTED ", "album_id": "72157601365594266", "photo_flickr_id": "1082324494", "setting": "first-2-pick-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "49356", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "stand by his car waiting to put on hellbent to get started", "storylet_id": "246783"}], [{"original_text": "THERE IS A MURCIA ABOUT BUD WISE JACKET ", "album_id": "72157601365594266", "photo_flickr_id": "1081470985", "setting": "first-2-pick-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "49356", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is a location about bud wise jacket", "storylet_id": "246784"}], [{"original_text": "The guys got together to discuss their plans.", "album_id": "72157601365594266", "photo_flickr_id": "1081467225", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49357", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guys got together to discuss their plans .", "storylet_id": "246785"}], [{"original_text": "He caught lobster. ", "album_id": "72157601365594266", "photo_flickr_id": "1082321576", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49357", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he caught lobster .", "storylet_id": "246786"}], [{"original_text": "The baby was prepared for the big day. ", "album_id": "72157601365594266", "photo_flickr_id": "1082323630", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49357", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the baby was prepared for the big day .", "storylet_id": "246787"}], [{"original_text": "He was very supportive of the foundation. ", "album_id": "72157601365594266", "photo_flickr_id": "1082324742", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49357", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was very supportive of the foundation .", "storylet_id": "246788"}], [{"original_text": "We were excited to see the monument. ", "album_id": "72157601365594266", "photo_flickr_id": "1081470817", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49357", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were excited to see the monument .", "storylet_id": "246789"}], [{"original_text": "Last week I went on vacation.", "album_id": "72157601365594266", "photo_flickr_id": "1081467225", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49358", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week i went on vacation .", "storylet_id": "246790"}], [{"original_text": "I had a great time diving and catching wildlife in the ocean.", "album_id": "72157601365594266", "photo_flickr_id": "1082321576", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49358", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had a great time diving and catching wildlife in the ocean .", "storylet_id": "246791"}], [{"original_text": "One of my friends brought their toddler along.", "album_id": "72157601365594266", "photo_flickr_id": "1082323630", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49358", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of my friends brought their toddler along .", "storylet_id": "246792"}], [{"original_text": "We had a great time while we were there.", "album_id": "72157601365594266", "photo_flickr_id": "1082324742", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49358", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a great time while we were there .", "storylet_id": "246793"}], [{"original_text": "Afterward we went to do some sight-seeing.", "album_id": "72157601365594266", "photo_flickr_id": "1081470817", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49358", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we went to do some sight-seeing .", "storylet_id": "246794"}], [{"original_text": "Mark decided to go on a trip to see some car races in Miami.", "album_id": "72157601365594266", "photo_flickr_id": "1081467225", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "49359", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] decided to go on a trip to see some car races in location .", "storylet_id": "246795"}], [{"original_text": "While there, he got to meet and greet some of his favorite professional race car drivers.", "album_id": "72157601365594266", "photo_flickr_id": "1082323860", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "49359", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while there , he got to meet and greet some of his favorite professional race car drivers .", "storylet_id": "246796"}], [{"original_text": "He got to take pictures from the side of the track that was not open to just anyone.", "album_id": "72157601365594266", "photo_flickr_id": "1081469793", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "49359", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he got to take pictures from the side of the track that was not open to just anyone .", "storylet_id": "246797"}], [{"original_text": "Mark has had a love of race cars and car racing from a young age.", "album_id": "72157601365594266", "photo_flickr_id": "1082324494", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "49359", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] has had a love of race cars and car racing from a young age .", "storylet_id": "246798"}], [{"original_text": "At the end of the night, Mark received a jacket from his favorite driver's sponsor. It was a great day for Mark! ", "album_id": "72157601365594266", "photo_flickr_id": "1081470985", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "49359", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , [male] received a jacket from his favorite driver 's sponsor . it was a great day for [male] !", "storylet_id": "246799"}], [{"original_text": "The crowd starts to gather as the race cars start to pull up and prepare for the race.", "album_id": "72157594481294190", "photo_flickr_id": "358497706", "setting": "first-2-pick-and-tell", "worker_id": "H25ELUX8080QDIS", "story_id": "49360", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowd starts to gather as the race cars start to pull up and prepare for the race .", "storylet_id": "246800"}], [{"original_text": "The race is about to start and the cars are lining up while the crowd cheers. ", "album_id": "72157594481294190", "photo_flickr_id": "358500064", "setting": "first-2-pick-and-tell", "worker_id": "H25ELUX8080QDIS", "story_id": "49360", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the race is about to start and the cars are lining up while the crowd cheers .", "storylet_id": "246801"}], [{"original_text": "The cheerios car is off to a good start. ", "album_id": "72157594481294190", "photo_flickr_id": "358504169", "setting": "first-2-pick-and-tell", "worker_id": "H25ELUX8080QDIS", "story_id": "49360", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cheerios car is off to a good start .", "storylet_id": "246802"}], [{"original_text": "The bud car has pulled ahead of the cheerios car and is in the lead. ", "album_id": "72157594481294190", "photo_flickr_id": "358505120", "setting": "first-2-pick-and-tell", "worker_id": "H25ELUX8080QDIS", "story_id": "49360", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bud car has pulled ahead of the cheerios car and is in the lead .", "storylet_id": "246803"}], [{"original_text": "It is the final lap and the Lowe's car is in the lead, the crowd goes wide. ", "album_id": "72157594481294190", "photo_flickr_id": "358513769", "setting": "first-2-pick-and-tell", "worker_id": "H25ELUX8080QDIS", "story_id": "49360", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is the final lap and the lowe 's car is in the lead , the crowd goes wide .", "storylet_id": "246804"}], [{"original_text": "Last week I decided to take my car to the race track.", "album_id": "72157594481294190", "photo_flickr_id": "358500064", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49361", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week i decided to take my car to the race track .", "storylet_id": "246805"}], [{"original_text": "There were many other people there with their own cars out on the track.", "album_id": "72157594481294190", "photo_flickr_id": "358500797", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49361", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many other people there with their own cars out on the track .", "storylet_id": "246806"}], [{"original_text": "Some of them were very fast.", "album_id": "72157594481294190", "photo_flickr_id": "358502630", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49361", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them were very fast .", "storylet_id": "246807"}], [{"original_text": "I had a lot of fun racing with them.", "album_id": "72157594481294190", "photo_flickr_id": "358512859", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49361", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had a lot of fun racing with them .", "storylet_id": "246808"}], [{"original_text": "I hope I can go back again soon.", "album_id": "72157594481294190", "photo_flickr_id": "358515855", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49361", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope i can go back again soon .", "storylet_id": "246809"}], [{"original_text": "A day at the races with my family. My favorite;#55", "album_id": "72157594481294190", "photo_flickr_id": "358500064", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "49362", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a day at the races with my family . my favorite ; # 55", "storylet_id": "246810"}], [{"original_text": "My dad likes car #19. Rooting for different drivers makes the races exciting for my family. ", "album_id": "72157594481294190", "photo_flickr_id": "358500797", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "49362", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my dad likes car # 19 . rooting for different drivers makes the races exciting for my family .", "storylet_id": "246811"}], [{"original_text": "My brother is a fan of car #21. ", "album_id": "72157594481294190", "photo_flickr_id": "358502630", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "49362", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brother is a fan of car # 21 .", "storylet_id": "246812"}], [{"original_text": "My mom likes car #44 she could be the biggest fan. ", "album_id": "72157594481294190", "photo_flickr_id": "358512859", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "49362", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my mom likes car # 44 she could be the biggest fan .", "storylet_id": "246813"}], [{"original_text": "Car #07 ended up the winner. Well at least we had a good time!", "album_id": "72157594481294190", "photo_flickr_id": "358515855", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "49362", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "car # 07 ended up the winner . well at least we had a good time !", "storylet_id": "246814"}], [{"original_text": "I'd never been to a stock car race in my life until this weekend. My new boyfriend is a stock car racer, using car 55!", "album_id": "72157594481294190", "photo_flickr_id": "358500064", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49363", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 'd never been to a stock car race in my life until this weekend . my new boyfriend is a stock car racer , using car 55 !", "storylet_id": "246815"}], [{"original_text": "I realized the race was a huge amount of fun to watch.", "album_id": "72157594481294190", "photo_flickr_id": "358500797", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49363", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i realized the race was a huge amount of fun to watch .", "storylet_id": "246816"}], [{"original_text": "It's cool how all the cars are covered with ads. It's strange, but a lot of fun to see.", "album_id": "72157594481294190", "photo_flickr_id": "358502630", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49363", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's cool how all the cars are covered with ads . it 's strange , but a lot of fun to see .", "storylet_id": "246817"}], [{"original_text": "My boyfriend's arch-rival is number 44. He was glad when the officials stopped his car!", "album_id": "72157594481294190", "photo_flickr_id": "358512859", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49363", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my boyfriend 's arch-rival is number 44 . he was glad when the officials stopped his car !", "storylet_id": "246818"}], [{"original_text": "The ultimate winner was number 97, who my boyfriend says is a very good racer. I'll be willing to go to more races in the future.", "album_id": "72157594481294190", "photo_flickr_id": "358515855", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49363", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ultimate winner was number 97 , who my boyfriend says is a very good racer . i 'll be willing to go to more races in the future .", "storylet_id": "246819"}], [{"original_text": "A race car takes off from its pit crew.", "album_id": "72157594481294190", "photo_flickr_id": "358497706", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49364", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a race car takes off from its pit crew .", "storylet_id": "246820"}], [{"original_text": "Number 55 race car waits on its crew to fix it up.", "album_id": "72157594481294190", "photo_flickr_id": "358500064", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49364", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "number 55 race car waits on its crew to fix it up .", "storylet_id": "246821"}], [{"original_text": "A yellow cheerios car is in the lead.", "album_id": "72157594481294190", "photo_flickr_id": "358504169", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49364", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a yellow cheerios car is in the lead .", "storylet_id": "246822"}], [{"original_text": "The red bud car is falling slightly behind.", "album_id": "72157594481294190", "photo_flickr_id": "358505120", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49364", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the red bud car is falling slightly behind .", "storylet_id": "246823"}], [{"original_text": "The lowes car is not far behind the Cheerios car.", "album_id": "72157594481294190", "photo_flickr_id": "358513769", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49364", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lowes car is not far behind the cheerios car .", "storylet_id": "246824"}], [{"original_text": "We decided to go to the market downtown.", "album_id": "72157623675822498", "photo_flickr_id": "4455909831", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49365", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go to the market downtown .", "storylet_id": "246825"}], [{"original_text": "We shopped the wide assortment in the meat department.", "album_id": "72157623675822498", "photo_flickr_id": "4455910097", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49365", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we shopped the wide assortment in the meat department .", "storylet_id": "246826"}], [{"original_text": "We ordered sausage with colorful toppings.", "album_id": "72157623675822498", "photo_flickr_id": "4455909777", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49365", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we ordered sausage with colorful toppings .", "storylet_id": "246827"}], [{"original_text": "The fried shrimp is always great.", "album_id": "72157623675822498", "photo_flickr_id": "4456688408", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49365", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fried shrimp is always great .", "storylet_id": "246828"}], [{"original_text": "We also loved the architecture. We can't wait to come back. ", "album_id": "72157623675822498", "photo_flickr_id": "4456688568", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49365", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also loved the architecture . we ca n't wait to come back .", "storylet_id": "246829"}], [{"original_text": "Reading is one of the most important things a person learns to do in life. ", "album_id": "72157623675822498", "photo_flickr_id": "4455909831", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49366", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "reading is one of the most important things a person learns to do in life .", "storylet_id": "246830"}], [{"original_text": "We read to determine what's in our foods and how much they cost and weigh. ", "album_id": "72157623675822498", "photo_flickr_id": "4455910097", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49366", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we read to determine what 's in our foods and how much they cost and weigh .", "storylet_id": "246831"}], [{"original_text": "We read to find out business hours and days. ", "album_id": "72157623675822498", "photo_flickr_id": "4456688394", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49366", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we read to find out business hours and days .", "storylet_id": "246832"}], [{"original_text": "Sometimes we even read to figure out where we are when we're lost. ", "album_id": "72157623675822498", "photo_flickr_id": "4455909905", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49366", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes we even read to figure out where we are when we 're lost .", "storylet_id": "246833"}], [{"original_text": "Reading can also serve to remind us of the important things we might otherwise forget. ", "album_id": "72157623675822498", "photo_flickr_id": "4456688604", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49366", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "reading can also serve to remind us of the important things we might otherwise forget .", "storylet_id": "246834"}], [{"original_text": "I went to the market last week.", "album_id": "72157623675822498", "photo_flickr_id": "4455909831", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49367", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the market last week .", "storylet_id": "246835"}], [{"original_text": "I was really hungry.", "album_id": "72157623675822498", "photo_flickr_id": "4455910097", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49367", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was really hungry .", "storylet_id": "246836"}], [{"original_text": "I bought a delicious sandwich there.", "album_id": "72157623675822498", "photo_flickr_id": "4455909777", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49367", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i bought a delicious sandwich there .", "storylet_id": "246837"}], [{"original_text": "Afterward I went for a walk.", "album_id": "72157623675822498", "photo_flickr_id": "4456688408", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49367", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward i went for a walk .", "storylet_id": "246838"}], [{"original_text": "I found myself in Chinatown.", "album_id": "72157623675822498", "photo_flickr_id": "4456688568", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49367", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i found myself in location .", "storylet_id": "246839"}], [{"original_text": "My family took me on a trip to see the famous Reading Terminal marketplace.", "album_id": "72157623675822498", "photo_flickr_id": "4455909831", "setting": "last-3-pick-old-and-tell", "worker_id": "HO3EB2UBHSDFYW9", "story_id": "49368", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family took me on a trip to see the famous reading terminal marketplace .", "storylet_id": "246840"}], [{"original_text": "The market had a huge selection of exotic imported meats.", "album_id": "72157623675822498", "photo_flickr_id": "4455910097", "setting": "last-3-pick-old-and-tell", "worker_id": "HO3EB2UBHSDFYW9", "story_id": "49368", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the market had a huge selection of exotic imported meats .", "storylet_id": "246841"}], [{"original_text": "I got to try a spicy sub sandwich with all kinds of exotic meats and cheeses on it.", "album_id": "72157623675822498", "photo_flickr_id": "4455909777", "setting": "last-3-pick-old-and-tell", "worker_id": "HO3EB2UBHSDFYW9", "story_id": "49368", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got to try a spicy sub sandwich with all kinds of exotic meats and cheeses on it .", "storylet_id": "246842"}], [{"original_text": "On the trip, we even found familiar food like fried shrimp.", "album_id": "72157623675822498", "photo_flickr_id": "4456688408", "setting": "last-3-pick-old-and-tell", "worker_id": "HO3EB2UBHSDFYW9", "story_id": "49368", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on the trip , we even found familiar food like fried shrimp .", "storylet_id": "246843"}], [{"original_text": "Aside from the food, the architecture of the area was breathtaking.", "album_id": "72157623675822498", "photo_flickr_id": "4456688568", "setting": "last-3-pick-old-and-tell", "worker_id": "HO3EB2UBHSDFYW9", "story_id": "49368", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "aside from the food , the architecture of the area was breathtaking .", "storylet_id": "246844"}], [{"original_text": "The Reading Terminal Market, let's see what they have in here today. ", "album_id": "72157623675822498", "photo_flickr_id": "4455909831", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "49369", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the reading terminal market , let 's see what they have in here today .", "storylet_id": "246845"}], [{"original_text": "Fresh sausages and I some of each time. ", "album_id": "72157623675822498", "photo_flickr_id": "4455910097", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "49369", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fresh sausages and i some of each time .", "storylet_id": "246846"}], [{"original_text": "A hot sandwiches with greens on top, Yum!", "album_id": "72157623675822498", "photo_flickr_id": "4455909777", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "49369", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a hot sandwiches with greens on top , yum !", "storylet_id": "246847"}], [{"original_text": "In the restaurant looking out. ", "album_id": "72157623675822498", "photo_flickr_id": "4456688408", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "49369", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the restaurant looking out .", "storylet_id": "246848"}], [{"original_text": "Beautiful building and the colors flow lovely together. ", "album_id": "72157623675822498", "photo_flickr_id": "4456688568", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "49369", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "beautiful building and the colors flow lovely together .", "storylet_id": "246849"}], [{"original_text": "Jerry loved being a jockey.", "album_id": "72157623377031461", "photo_flickr_id": "4385572926", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49370", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] loved being a jockey .", "storylet_id": "246850"}], [{"original_text": "But falling off his horse was embarrasing.", "album_id": "72157623377031461", "photo_flickr_id": "4385573796", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49370", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but falling off his horse was embarrasing .", "storylet_id": "246851"}], [{"original_text": "He watched all the other horses and jockey's pass him by.", "album_id": "72157623377031461", "photo_flickr_id": "4385575510", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49370", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he watched all the other horses and jockey 's pass him by .", "storylet_id": "246852"}], [{"original_text": "He watched all the horses pass the finish line.", "album_id": "72157623377031461", "photo_flickr_id": "4384814293", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49370", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he watched all the horses pass the finish line .", "storylet_id": "246853"}], [{"original_text": "He thought he was going to cry.", "album_id": "72157623377031461", "photo_flickr_id": "4385574642", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49370", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he thought he was going to cry .", "storylet_id": "246854"}], [{"original_text": "I got on the horse with my friend to practice around the track.", "album_id": "72157623377031461", "photo_flickr_id": "4384810097", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49371", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got on the horse with my friend to practice around the track .", "storylet_id": "246855"}], [{"original_text": "However, we noticed that someone had fallen.", "album_id": "72157623377031461", "photo_flickr_id": "4385573796", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49371", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "however , we noticed that someone had fallen .", "storylet_id": "246856"}], [{"original_text": "Their horse had also tripped over.", "album_id": "72157623377031461", "photo_flickr_id": "4385574040", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49371", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their horse had also tripped over .", "storylet_id": "246857"}], [{"original_text": "We stopped practicing to see if she was all right.", "album_id": "72157623377031461", "photo_flickr_id": "4385576706", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49371", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped practicing to see if she was all right .", "storylet_id": "246858"}], [{"original_text": "She seemed to be fine and just upset.", "album_id": "72157623377031461", "photo_flickr_id": "4385574642", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49371", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she seemed to be fine and just upset .", "storylet_id": "246859"}], [{"original_text": "The horse races were so exciting today!", "album_id": "72157623377031461", "photo_flickr_id": "4384810097", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "49372", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the horse races were so exciting today !", "storylet_id": "246860"}], [{"original_text": "One of the racers didn't make it over an obstacle and fell off his horse.", "album_id": "72157623377031461", "photo_flickr_id": "4385573796", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "49372", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of the racers did n't make it over an obstacle and fell off his horse .", "storylet_id": "246861"}], [{"original_text": "It looked like he and his horse were hurt.", "album_id": "72157623377031461", "photo_flickr_id": "4385574040", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "49372", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it looked like he and his horse were hurt .", "storylet_id": "246862"}], [{"original_text": "The other racers got around him easily enough.", "album_id": "72157623377031461", "photo_flickr_id": "4385576706", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "49372", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the other racers got around him easily enough .", "storylet_id": "246863"}], [{"original_text": "He didn't have a very good race, he never did get back on his horse.", "album_id": "72157623377031461", "photo_flickr_id": "4385574642", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "49372", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he did n't have a very good race , he never did get back on his horse .", "storylet_id": "246864"}], [{"original_text": "I went to the race last week.", "album_id": "72157623377031461", "photo_flickr_id": "4384810097", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49373", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the race last week .", "storylet_id": "246865"}], [{"original_text": "some riders who were injured.", "album_id": "72157623377031461", "photo_flickr_id": "4385573796", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49373", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some riders who were injured .", "storylet_id": "246866"}], [{"original_text": "They were not moving.", "album_id": "72157623377031461", "photo_flickr_id": "4385574040", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49373", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were not moving .", "storylet_id": "246867"}], [{"original_text": "The other riders had to avoid them.", "album_id": "72157623377031461", "photo_flickr_id": "4385576706", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49373", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the other riders had to avoid them .", "storylet_id": "246868"}], [{"original_text": "They were okay in the end.", "album_id": "72157623377031461", "photo_flickr_id": "4385574642", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49373", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were okay in the end .", "storylet_id": "246869"}], [{"original_text": "Went to the horse race and right away there was some excitement as a jockey lost control.", "album_id": "72157623377031461", "photo_flickr_id": "4385572926", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "49374", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went to the horse race and right away there was some excitement as a jockey lost control .", "storylet_id": "246870"}], [{"original_text": "The rider and his horse were okay but you could really see his dissapointment.", "album_id": "72157623377031461", "photo_flickr_id": "4385573796", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "49374", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rider and his horse were okay but you could really see his dissapointment .", "storylet_id": "246871"}], [{"original_text": "During a race like this the obstacles make winners and losers.", "album_id": "72157623377031461", "photo_flickr_id": "4385575510", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "49374", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "during a race like this the obstacles make winners and losers .", "storylet_id": "246872"}], [{"original_text": "This rider was having trouble coming off the jump.", "album_id": "72157623377031461", "photo_flickr_id": "4384814293", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "49374", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this rider was having trouble coming off the jump .", "storylet_id": "246873"}], [{"original_text": "This rider who lost control earlierin the race was still there at the end. I felt quite bad for him.", "album_id": "72157623377031461", "photo_flickr_id": "4385574642", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "49374", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this rider who lost control earlierin the race was still there at the end . i felt quite bad for him .", "storylet_id": "246874"}], [{"original_text": "The new Honda was unveiled at the car show.", "album_id": "72157623543731149", "photo_flickr_id": "4452871185", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "49375", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the new organization was unveiled at the car show .", "storylet_id": "246875"}], [{"original_text": "It is very sleek and sporty.", "album_id": "72157623543731149", "photo_flickr_id": "4525253050", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "49375", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is very sleek and sporty .", "storylet_id": "246876"}], [{"original_text": "There were many models to help show off the car.", "album_id": "72157623543731149", "photo_flickr_id": "4535688665", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "49375", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many models to help show off the car .", "storylet_id": "246877"}], [{"original_text": "The engine was newly designed for efficiency.", "album_id": "72157623543731149", "photo_flickr_id": "4452680629", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "49375", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the engine was newly designed for efficiency .", "storylet_id": "246878"}], [{"original_text": "This is a beautiful new automobile.", "album_id": "72157623543731149", "photo_flickr_id": "4536355169", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "49375", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a beautiful new automobile .", "storylet_id": "246879"}], [{"original_text": "There was a problem with the car's engine and we needed a mechanic.", "album_id": "72157623543731149", "photo_flickr_id": "4524624481", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49376", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a problem with the car 's engine and we needed a mechanic .", "storylet_id": "246880"}], [{"original_text": "We brought it to Stacy who came highly recommended.", "album_id": "72157623543731149", "photo_flickr_id": "4535688665", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49376", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we brought it to [female] who came highly recommended .", "storylet_id": "246881"}], [{"original_text": "She was not your typical mechanic. She used some sort of dance to fix the car.", "album_id": "72157623543731149", "photo_flickr_id": "4536382334", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49376", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was not your typical mechanic . she used some sort of dance to fix the car .", "storylet_id": "246882"}], [{"original_text": "The engine magically started.", "album_id": "72157623543731149", "photo_flickr_id": "4452680629", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49376", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the engine magically started .", "storylet_id": "246883"}], [{"original_text": "We were able to leave and Stacy dances off into the distance.", "album_id": "72157623543731149", "photo_flickr_id": "4458779553", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49376", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were able to leave and [female] dances off into the distance .", "storylet_id": "246884"}], [{"original_text": "I finally got my new car today!", "album_id": "72157623543731149", "photo_flickr_id": "4452871185", "setting": "last-3-pick-old-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "49377", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finally got my new car today !", "storylet_id": "246885"}], [{"original_text": "I was so excited about my new car that I had to take photos for Instagram.", "album_id": "72157623543731149", "photo_flickr_id": "4525253050", "setting": "last-3-pick-old-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "49377", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was so excited about my new car that i had to take photos for instagram .", "storylet_id": "246886"}], [{"original_text": "Of course, I decided to do a sexy pose to get those likes up!", "album_id": "72157623543731149", "photo_flickr_id": "4535688665", "setting": "last-3-pick-old-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "49377", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course , i decided to do a sexy pose to get those likes up !", "storylet_id": "246887"}], [{"original_text": "After that, I did the sensible thing like check the engine and all that.", "album_id": "72157623543731149", "photo_flickr_id": "4452680629", "setting": "last-3-pick-old-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "49377", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that , i did the sensible thing like check the engine and all that .", "storylet_id": "246888"}], [{"original_text": "Now I'm ready to drive my car all afternoon! ", "album_id": "72157623543731149", "photo_flickr_id": "4536355169", "setting": "last-3-pick-old-and-tell", "worker_id": "CRSTQ7G9A0QM1C0", "story_id": "49377", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now i 'm ready to drive my car all afternoon !", "storylet_id": "246889"}], [{"original_text": "Here is the newest Honda car available for purchase.", "album_id": "72157623543731149", "photo_flickr_id": "4524624481", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49378", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is the newest organization car available for purchase .", "storylet_id": "246890"}], [{"original_text": "Nevermind the girl in the short clothes, some people think this sells a car.", "album_id": "72157623543731149", "photo_flickr_id": "4535688665", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49378", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "nevermind the girl in the short clothes , some people think this sells a car .", "storylet_id": "246891"}], [{"original_text": "Here she is again, can we get to the car part now?", "album_id": "72157623543731149", "photo_flickr_id": "4536382334", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49378", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here she is again , can we get to the car part now ?", "storylet_id": "246892"}], [{"original_text": "Here is your engine, looks good to me and ready to rev.", "album_id": "72157623543731149", "photo_flickr_id": "4452680629", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49378", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is your engine , looks good to me and ready to rev .", "storylet_id": "246893"}], [{"original_text": "Here's a good back end and it's will definitely sell to me.", "album_id": "72157623543731149", "photo_flickr_id": "4458779553", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49378", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's a good back end and it 's will definitely sell to me .", "storylet_id": "246894"}], [{"original_text": "This is a picture of a woman.", "album_id": "72157623543731149", "photo_flickr_id": "4452871185", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "49379", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a woman .", "storylet_id": "246895"}], [{"original_text": "This is a picture of a car.", "album_id": "72157623543731149", "photo_flickr_id": "4525253050", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "49379", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a car .", "storylet_id": "246896"}], [{"original_text": "This is a picture of a woman and a car.", "album_id": "72157623543731149", "photo_flickr_id": "4535688665", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "49379", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of a woman and a car .", "storylet_id": "246897"}], [{"original_text": "This is a picture of a car hood.", "album_id": "72157623543731149", "photo_flickr_id": "4452680629", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "49379", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of a car hood .", "storylet_id": "246898"}], [{"original_text": "This is a red car.", "album_id": "72157623543731149", "photo_flickr_id": "4536355169", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "49379", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a red car .", "storylet_id": "246899"}], [{"original_text": "Our friend ran the 20 mile marathon this week.", "album_id": "72157623563366489", "photo_flickr_id": "4461456398", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49380", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our friend ran the 20 mile marathon this week .", "storylet_id": "246900"}], [{"original_text": "We were there to encourage her the whole way.", "album_id": "72157623563366489", "photo_flickr_id": "4461457500", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49380", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were there to encourage her the whole way .", "storylet_id": "246901"}], [{"original_text": "She started out slow but steady.", "album_id": "72157623563366489", "photo_flickr_id": "4461459744", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49380", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she started out slow but steady .", "storylet_id": "246902"}], [{"original_text": "Eventually she made it to the front of the pack.", "album_id": "72157623563366489", "photo_flickr_id": "4463827742", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49380", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "eventually she made it to the front of the pack .", "storylet_id": "246903"}], [{"original_text": "She managed to finish in the top 10!", "album_id": "72157623563366489", "photo_flickr_id": "4463827798", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49380", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she managed to finish in the top 10 !", "storylet_id": "246904"}], [{"original_text": "Running a marathon.", "album_id": "72157623563366489", "photo_flickr_id": "4461456398", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49381", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "running a marathon .", "storylet_id": "246905"}], [{"original_text": "Her fans cheering for her.", "album_id": "72157623563366489", "photo_flickr_id": "4461457500", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49381", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her fans cheering for her .", "storylet_id": "246906"}], [{"original_text": "Three more miles to go.", "album_id": "72157623563366489", "photo_flickr_id": "4463827754", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49381", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "three more miles to go .", "storylet_id": "246907"}], [{"original_text": "Crossing the finish line.", "album_id": "72157623563366489", "photo_flickr_id": "4463827798", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49381", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "crossing the finish line .", "storylet_id": "246908"}], [{"original_text": "Eating a celebratory meal. ", "album_id": "72157623563366489", "photo_flickr_id": "4460682227", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49381", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eating a celebratory meal .", "storylet_id": "246909"}], [{"original_text": "I went to the race last week.", "album_id": "72157623563366489", "photo_flickr_id": "4461456398", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49382", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the race last week .", "storylet_id": "246910"}], [{"original_text": "There were many people there.", "album_id": "72157623563366489", "photo_flickr_id": "4461457500", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49382", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many people there .", "storylet_id": "246911"}], [{"original_text": "I was there to support my friend.", "album_id": "72157623563366489", "photo_flickr_id": "4463827754", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49382", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was there to support my friend .", "storylet_id": "246912"}], [{"original_text": "She finished in first place!", "album_id": "72157623563366489", "photo_flickr_id": "4463827798", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49382", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she finished in first place !", "storylet_id": "246913"}], [{"original_text": "Afterward I took her out for dessert.", "album_id": "72157623563366489", "photo_flickr_id": "4460682227", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49382", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward i took her out for dessert .", "storylet_id": "246914"}], [{"original_text": "All the runners were eager to participate!", "album_id": "72157623563366489", "photo_flickr_id": "4461456398", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49383", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all the runners were eager to participate !", "storylet_id": "246915"}], [{"original_text": "And many of their family members were their to encourage them.", "album_id": "72157623563366489", "photo_flickr_id": "4461457500", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49383", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and many of their family members were their to encourage them .", "storylet_id": "246916"}], [{"original_text": "It was hard work but very gratifying.", "album_id": "72157623563366489", "photo_flickr_id": "4463827754", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49383", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was hard work but very gratifying .", "storylet_id": "246917"}], [{"original_text": "Everyone who finished was immensely proud of themselves!", "album_id": "72157623563366489", "photo_flickr_id": "4463827798", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49383", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone who finished was immensely proud of themselves !", "storylet_id": "246918"}], [{"original_text": "And afterwards some breakfast really hit the spot.", "album_id": "72157623563366489", "photo_flickr_id": "4460682227", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49383", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and afterwards some breakfast really hit the spot .", "storylet_id": "246919"}], [{"original_text": "The racers gathered in the morning.", "album_id": "72157623563366489", "photo_flickr_id": "4461456398", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49384", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the racers gathered in the morning .", "storylet_id": "246920"}], [{"original_text": "The fans made signs to cheer them on.", "album_id": "72157623563366489", "photo_flickr_id": "4461457500", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49384", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fans made signs to cheer them on .", "storylet_id": "246921"}], [{"original_text": "Around noon, the race was started.", "album_id": "72157623563366489", "photo_flickr_id": "4461459744", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49384", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "around noon , the race was started .", "storylet_id": "246922"}], [{"original_text": "Some just walked. It was for charity.", "album_id": "72157623563366489", "photo_flickr_id": "4463827742", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49384", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some just walked . it was for charity .", "storylet_id": "246923"}], [{"original_text": "When they crossed the finish line, the race was officially ", "album_id": "72157623563366489", "photo_flickr_id": "4463827798", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49384", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when they crossed the finish line , the race was officially", "storylet_id": "246924"}], [{"original_text": "The game was a defensive battle. This breakaway was the first threat to score.", "album_id": "72157623277682842", "photo_flickr_id": "4302379940", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "49385", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the game was a defensive battle . this breakaway was the first threat to score .", "storylet_id": "246925"}], [{"original_text": "The wingman took the puck to the goal but a nice play by the goalie saved the goal.", "album_id": "72157623277682842", "photo_flickr_id": "4304581523", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "49385", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wingman took the puck to the goal but a nice play by the goalie saved the goal .", "storylet_id": "246926"}], [{"original_text": "Finally, in the third period, the other team gets the puck deep into red zone.", "album_id": "72157623277682842", "photo_flickr_id": "4304585317", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "49385", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally , in the third period , the other team gets the puck deep into red zone .", "storylet_id": "246927"}], [{"original_text": "He is now withing 20 feet of the goal.", "album_id": "72157623277682842", "photo_flickr_id": "4305360676", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "49385", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he is now withing 20 feet of the goal .", "storylet_id": "246928"}], [{"original_text": "He shoots, he scores and the game ends one to nothing!", "album_id": "72157623277682842", "photo_flickr_id": "4304617031", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "49385", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he shoots , he scores and the game ends one to nothing !", "storylet_id": "246929"}], [{"original_text": "Cleaning the ice.", "album_id": "72157623277682842", "photo_flickr_id": "4307785441", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49386", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "cleaning the ice .", "storylet_id": "246930"}], [{"original_text": "About to start the game.", "album_id": "72157623277682842", "photo_flickr_id": "4301630997", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49386", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "about to start the game .", "storylet_id": "246931"}], [{"original_text": "Practicing through the cones. ", "album_id": "72157623277682842", "photo_flickr_id": "4302379940", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49386", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "practicing through the cones .", "storylet_id": "246932"}], [{"original_text": "Making a shot.", "album_id": "72157623277682842", "photo_flickr_id": "4304582871", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49386", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "making a shot .", "storylet_id": "246933"}], [{"original_text": "Making the winning shot. ", "album_id": "72157623277682842", "photo_flickr_id": "4302380500", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49386", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "making the winning shot .", "storylet_id": "246934"}], [{"original_text": "While playing ice hockey, one man skates by an orange cone with the puck.", "album_id": "72157623277682842", "photo_flickr_id": "4302379940", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "49387", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while playing ice hockey , one man skates by an orange cone with the puck .", "storylet_id": "246935"}], [{"original_text": "The player takes the puck and is skating with it.", "album_id": "72157623277682842", "photo_flickr_id": "4304581523", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "49387", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the player takes the puck and is skating with it .", "storylet_id": "246936"}], [{"original_text": "Now another player has the puck and the goalie watches as he begins to hit the puck his direction.", "album_id": "72157623277682842", "photo_flickr_id": "4304585317", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "49387", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now another player has the puck and the goalie watches as he begins to hit the puck his direction .", "storylet_id": "246937"}], [{"original_text": "The player is aiming the puck to the goal.", "album_id": "72157623277682842", "photo_flickr_id": "4305360676", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "49387", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the player is aiming the puck to the goal .", "storylet_id": "246938"}], [{"original_text": "The goalie is ready to block the puck as the other player takes his shot.", "album_id": "72157623277682842", "photo_flickr_id": "4304617031", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "49387", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the goalie is ready to block the puck as the other player takes his shot .", "storylet_id": "246939"}], [{"original_text": "The hockey player skates around an orange cone with the hockey puck.", "album_id": "72157623277682842", "photo_flickr_id": "4302379940", "setting": "last-3-pick-old-and-tell", "worker_id": "CAIYHF695SKHOFV", "story_id": "49388", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the hockey player skates around an orange cone with the hockey puck .", "storylet_id": "246940"}], [{"original_text": "He dodges the red defense hockey player and continues skating with the puck.", "album_id": "72157623277682842", "photo_flickr_id": "4304581523", "setting": "last-3-pick-old-and-tell", "worker_id": "CAIYHF695SKHOFV", "story_id": "49388", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he dodges the red defense hockey player and continues skating with the puck .", "storylet_id": "246941"}], [{"original_text": "The red player intercepts the puck and goes for the goal.", "album_id": "72157623277682842", "photo_flickr_id": "4304585317", "setting": "last-3-pick-old-and-tell", "worker_id": "CAIYHF695SKHOFV", "story_id": "49388", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the red player intercepts the puck and goes for the goal .", "storylet_id": "246942"}], [{"original_text": "The red player lines up the puck for the shot.", "album_id": "72157623277682842", "photo_flickr_id": "4305360676", "setting": "last-3-pick-old-and-tell", "worker_id": "CAIYHF695SKHOFV", "story_id": "49388", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the red player lines up the puck for the shot .", "storylet_id": "246943"}], [{"original_text": "The goalie blocks the puck!", "album_id": "72157623277682842", "photo_flickr_id": "4304617031", "setting": "last-3-pick-old-and-tell", "worker_id": "CAIYHF695SKHOFV", "story_id": "49388", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the goalie blocks the puck !", "storylet_id": "246944"}], [{"original_text": "February's hockey game was a lot of fun to watch.", "album_id": "72157623277682842", "photo_flickr_id": "4302379940", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "49389", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "february 's hockey game was a lot of fun to watch .", "storylet_id": "246945"}], [{"original_text": "I was especially rooting for this player.", "album_id": "72157623277682842", "photo_flickr_id": "4304581523", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "49389", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was especially rooting for this player .", "storylet_id": "246946"}], [{"original_text": "Here the goalie tries to block a score.", "album_id": "72157623277682842", "photo_flickr_id": "4304585317", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "49389", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here the goalie tries to block a score .", "storylet_id": "246947"}], [{"original_text": "There was some intense playing in the rink that day.", "album_id": "72157623277682842", "photo_flickr_id": "4305360676", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "49389", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was some intense playing in the rink that day .", "storylet_id": "246948"}], [{"original_text": "I held my breath in anticipation!", "album_id": "72157623277682842", "photo_flickr_id": "4304617031", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "49389", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i held my breath in anticipation !", "storylet_id": "246949"}], [{"original_text": "It was a great day to attend the auto show outdoors.", "album_id": "72157623276651796", "photo_flickr_id": "4301889122", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49390", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a great day to attend the auto show outdoors .", "storylet_id": "246950"}], [{"original_text": "First we saw this Ferrari pull up.", "album_id": "72157623276651796", "photo_flickr_id": "4302093166", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49390", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we saw this ferrari pull up .", "storylet_id": "246951"}], [{"original_text": "Then out of nowhere comes another Ferrari.", "album_id": "72157623276651796", "photo_flickr_id": "4301447475", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49390", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then out of nowhere comes another ferrari .", "storylet_id": "246952"}], [{"original_text": "This Lamborghini really stole the show.", "album_id": "72157623276651796", "photo_flickr_id": "4328789280", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49390", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this lamborghini really stole the show .", "storylet_id": "246953"}], [{"original_text": "Our favorite however, was this white Porsche. What a car.", "album_id": "72157623276651796", "photo_flickr_id": "4335560750", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49390", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our favorite however , was this white organization . what a car .", "storylet_id": "246954"}], [{"original_text": "This car owned by our Manager.", "album_id": "72157623276651796", "photo_flickr_id": "4301889122", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "49391", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this car owned by our manager .", "storylet_id": "246955"}], [{"original_text": "This red one belongs to my immediate supervisor. ", "album_id": "72157623276651796", "photo_flickr_id": "4302093166", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "49391", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this red one belongs to my immediate supervisor .", "storylet_id": "246956"}], [{"original_text": "The black one owned by our Team lead", "album_id": "72157623276651796", "photo_flickr_id": "4307303645", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "49391", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the black one owned by our team lead", "storylet_id": "246957"}], [{"original_text": "This one owned by our board of director.", "album_id": "72157623276651796", "photo_flickr_id": "4307813600", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "49391", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one owned by our board of director .", "storylet_id": "246958"}], [{"original_text": "And i am proud to say that i owned this one.", "album_id": "72157623276651796", "photo_flickr_id": "4309941285", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "49391", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and i am proud to say that i owned this one .", "storylet_id": "246959"}], [{"original_text": "Look at these awesome cars.", "album_id": "72157623276651796", "photo_flickr_id": "4301889122", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "49392", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "look at these awesome cars .", "storylet_id": "246960"}], [{"original_text": "This car is a one of a kind Delorean.", "album_id": "72157623276651796", "photo_flickr_id": "4302093166", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "49392", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this car is a one of a kind delorean .", "storylet_id": "246961"}], [{"original_text": "Here we have a Mazarati and a Beemer.", "album_id": "72157623276651796", "photo_flickr_id": "4307303645", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "49392", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here we have a mazarati and a beemer .", "storylet_id": "246962"}], [{"original_text": "This car costs over $500,000", "album_id": "72157623276651796", "photo_flickr_id": "4307813600", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "49392", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this car costs over $ 500,000", "storylet_id": "246963"}], [{"original_text": "Can you believe this car is 30 years old?", "album_id": "72157623276651796", "photo_flickr_id": "4309941285", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "49392", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "can you believe this car is 30 years old ?", "storylet_id": "246964"}], [{"original_text": "There were a lot of fancy cars in the neighbor hood today.", "album_id": "72157623276651796", "photo_flickr_id": "4301889122", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49393", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of fancy cars in the neighbor hood today .", "storylet_id": "246965"}], [{"original_text": "I had a great time taking pictures of all of them.", "album_id": "72157623276651796", "photo_flickr_id": "4302093166", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49393", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had a great time taking pictures of all of them .", "storylet_id": "246966"}], [{"original_text": "They were very fast.", "album_id": "72157623276651796", "photo_flickr_id": "4307303645", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49393", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were very fast .", "storylet_id": "246967"}], [{"original_text": "I'm not sure what was happening in town.", "album_id": "72157623276651796", "photo_flickr_id": "4307813600", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49393", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'm not sure what was happening in town .", "storylet_id": "246968"}], [{"original_text": "Some of them were very expensive.", "album_id": "72157623276651796", "photo_flickr_id": "4309941285", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49393", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of them were very expensive .", "storylet_id": "246969"}], [{"original_text": "There was a car show in the village center today. Classic cars were on display.", "album_id": "72157623276651796", "photo_flickr_id": "4301889122", "setting": "last-3-pick-old-and-tell", "worker_id": "X0URYQX54A8ONV5", "story_id": "49394", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a car show in the village center today . classic cars were on display .", "storylet_id": "246970"}], [{"original_text": "And modern cars were welcome, too.", "album_id": "72157623276651796", "photo_flickr_id": "4302093166", "setting": "last-3-pick-old-and-tell", "worker_id": "X0URYQX54A8ONV5", "story_id": "49394", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and modern cars were welcome , too .", "storylet_id": "246971"}], [{"original_text": "Some of the drivers took a spin around the village in their cars.", "album_id": "72157623276651796", "photo_flickr_id": "4301447475", "setting": "last-3-pick-old-and-tell", "worker_id": "X0URYQX54A8ONV5", "story_id": "49394", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the drivers took a spin around the village in their cars .", "storylet_id": "246972"}], [{"original_text": "Other drivers just parked their automobiles at the curb so fans could admire them.", "album_id": "72157623276651796", "photo_flickr_id": "4328789280", "setting": "last-3-pick-old-and-tell", "worker_id": "X0URYQX54A8ONV5", "story_id": "49394", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other drivers just parked their automobiles at the curb so fans could admire them .", "storylet_id": "246973"}], [{"original_text": "This driver parked right at the corner, so his car could be seen by everyone coming into the village.", "album_id": "72157623276651796", "photo_flickr_id": "4335560750", "setting": "last-3-pick-old-and-tell", "worker_id": "X0URYQX54A8ONV5", "story_id": "49394", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this driver parked right at the corner , so his car could be seen by everyone coming into the village .", "storylet_id": "246974"}], [{"original_text": "It was my two dad's birthdays today. My sister and I threw them a party. ", "album_id": "129219", "photo_flickr_id": "5131949", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49395", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was my two dad 's birthdays today . my sister and i threw them a party .", "storylet_id": "246975"}], [{"original_text": "Ethel and Bob came. They were the life of the party. ", "album_id": "129219", "photo_flickr_id": "5132016", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49395", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] and [male] came . they were the life of the party .", "storylet_id": "246976"}], [{"original_text": "My little nephew Fred and his dad Bill played around the pool most of the time. ", "album_id": "129219", "photo_flickr_id": "5132063", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49395", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my little nephew [male] and his dad [male] played around the pool most of the time .", "storylet_id": "246977"}], [{"original_text": "Ethel and Bob rounded everyone up and made a comical toast to my two dad's. ", "album_id": "129219", "photo_flickr_id": "5132148", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49395", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and [male] rounded everyone up and made a comical toast to my two dad 's .", "storylet_id": "246978"}], [{"original_text": "Erica my niece kissed Jack on the face and wished him a Merry Christmas! I don't think she knew it was summer time. ", "album_id": "129219", "photo_flickr_id": "5132308", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49395", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] my niece kissed [male] on the face and wished him a merry christmas ! i do n't think she knew it was summer time .", "storylet_id": "246979"}], [{"original_text": "Melissa was glad to see her father and father-in-law finally meet.", "album_id": "129219", "photo_flickr_id": "5131949", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "49396", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was glad to see her father and father-in-law finally meet .", "storylet_id": "246980"}], [{"original_text": "Before going to the synagogue, Melissa's husband Fred chats with two new congregation members.", "album_id": "129219", "photo_flickr_id": "5131971", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "49396", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before going to the synagogue , [female] 's husband [male] chats with two new congregation members .", "storylet_id": "246981"}], [{"original_text": "Lloyd and Phyllis stop by before church to visit Melissa and Ted.", "album_id": "129219", "photo_flickr_id": "5132016", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "49396", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "organization and [female] stop by before church to visit [female] and [male] .", "storylet_id": "246982"}], [{"original_text": "The Rabbi leads them in prayer.", "album_id": "129219", "photo_flickr_id": "5132113", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "49396", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rabbi leads them in prayer .", "storylet_id": "246983"}], [{"original_text": "Lloyd and Phyllis have some refreshment and mingle with the other guests.", "album_id": "129219", "photo_flickr_id": "5132148", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "49396", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "organization and [female] have some refreshment and mingle with the other guests .", "storylet_id": "246984"}], [{"original_text": "Our family gathered together for a formal event.", "album_id": "129219", "photo_flickr_id": "5131949", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49397", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family gathered together for a formal event .", "storylet_id": "246985"}], [{"original_text": "We invited some business partners to give a chat.", "album_id": "129219", "photo_flickr_id": "5131971", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49397", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we invited some business partners to give a chat .", "storylet_id": "246986"}], [{"original_text": "My older neighbors came to pray with us.", "album_id": "129219", "photo_flickr_id": "5132016", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49397", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my older neighbors came to pray with us .", "storylet_id": "246987"}], [{"original_text": "One of the men brought a bible and some wine.", "album_id": "129219", "photo_flickr_id": "5132113", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49397", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the men brought a bible and some wine .", "storylet_id": "246988"}], [{"original_text": "Eventually, it was really crowded in my living room.", "album_id": "129219", "photo_flickr_id": "5132148", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49397", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually , it was really crowded in my living room .", "storylet_id": "246989"}], [{"original_text": "Today was the day for the family reunion.", "album_id": "129219", "photo_flickr_id": "5131949", "setting": "last-3-pick-old-and-tell", "worker_id": "92JRF3W0PQVRUEW", "story_id": "49398", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day for the family reunion .", "storylet_id": "246990"}], [{"original_text": "Our grandparents were there celebrating 50 years of marriage.", "album_id": "129219", "photo_flickr_id": "5132016", "setting": "last-3-pick-old-and-tell", "worker_id": "92JRF3W0PQVRUEW", "story_id": "49398", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our grandparents were there celebrating 50 years of marriage .", "storylet_id": "246991"}], [{"original_text": "It was a great day to celebrate all ages in our family.", "album_id": "129219", "photo_flickr_id": "5132063", "setting": "last-3-pick-old-and-tell", "worker_id": "92JRF3W0PQVRUEW", "story_id": "49398", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a great day to celebrate all ages in our family .", "storylet_id": "246992"}], [{"original_text": "We had a special toast for the happy couple.", "album_id": "129219", "photo_flickr_id": "5132148", "setting": "last-3-pick-old-and-tell", "worker_id": "92JRF3W0PQVRUEW", "story_id": "49398", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a special toast for the happy couple .", "storylet_id": "246993"}], [{"original_text": "It was a joyous occasion.", "album_id": "129219", "photo_flickr_id": "5132308", "setting": "last-3-pick-old-and-tell", "worker_id": "92JRF3W0PQVRUEW", "story_id": "49398", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a joyous occasion .", "storylet_id": "246994"}], [{"original_text": "At the family reunion, members began to arrive eager to see one another.", "album_id": "129219", "photo_flickr_id": "5131949", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49399", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the family reunion , members began to arrive eager to see one another .", "storylet_id": "246995"}], [{"original_text": "It had been years since many last spoke and thus, everyone was excited to share news that they had missed.", "album_id": "129219", "photo_flickr_id": "5131971", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49399", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it had been years since many last spoke and thus , everyone was excited to share news that they had missed .", "storylet_id": "246996"}], [{"original_text": "Even the oldest among the clan were eager to talk and share insight with the younger ones. ", "album_id": "129219", "photo_flickr_id": "5132016", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49399", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the oldest among the clan were eager to talk and share insight with the younger ones .", "storylet_id": "246997"}], [{"original_text": "Before dinner, the patriarch of the family read from the torah and prayed over the family meal. ", "album_id": "129219", "photo_flickr_id": "5132113", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49399", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "before dinner , the patriarch of the family read from the torah and prayed over the family meal .", "storylet_id": "246998"}], [{"original_text": "Afterwards the group began to eat and drink, making merry knowing that it would be another year before they would visit again. ", "album_id": "129219", "photo_flickr_id": "5132148", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "49399", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards the group began to eat and drink , making merry knowing that it would be another year before they would visit again .", "storylet_id": "246999"}], [{"original_text": "To get to the island, they needed to take a motorboat. There were many seats and an awning over the top. In the background, you could see other islands and a mountain. ", "album_id": "72157602047008082", "photo_flickr_id": "1397547036", "setting": "first-2-pick-and-tell", "worker_id": "E632KNLJWYRXM6L", "story_id": "49400", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "to get to the island , they needed to take a motorboat . there were many seats and an awning over the top . in the background , you could see other islands and a mountain .", "storylet_id": "247000"}], [{"original_text": "From a distance, the island was really just a small rock with large green shade trees. ", "album_id": "72157602047008082", "photo_flickr_id": "1397545698", "setting": "first-2-pick-and-tell", "worker_id": "E632KNLJWYRXM6L", "story_id": "49400", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from a distance , the island was really just a small rock with large green shade trees .", "storylet_id": "247001"}], [{"original_text": "The vacationers got on the boat and traveled quickly to the small island. ", "album_id": "72157602047008082", "photo_flickr_id": "1396656009", "setting": "first-2-pick-and-tell", "worker_id": "E632KNLJWYRXM6L", "story_id": "49400", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the vacationers got on the boat and traveled quickly to the small island .", "storylet_id": "247002"}], [{"original_text": "Once there, they could see a building. It was well shaded in the trees. The roof was grass, a common roofing material in the tropics. ", "album_id": "72157602047008082", "photo_flickr_id": "1397546470", "setting": "first-2-pick-and-tell", "worker_id": "E632KNLJWYRXM6L", "story_id": "49400", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once there , they could see a building . it was well shaded in the trees . the roof was grass , a common roofing material in the tropics .", "storylet_id": "247003"}], [{"original_text": "The most beautiful part of the building was the open atrium. There were beautiful plants and a fountain. The vacationers planned to spend part of the afternoon there, before traveling again. ", "album_id": "72157602047008082", "photo_flickr_id": "1396661127", "setting": "first-2-pick-and-tell", "worker_id": "E632KNLJWYRXM6L", "story_id": "49400", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the most beautiful part of the building was the open atrium . there were beautiful plants and a fountain . the vacationers planned to spend part of the afternoon there , before traveling again .", "storylet_id": "247004"}], [{"original_text": "everyone got to meet the baby today ", "album_id": "72157602047008082", "photo_flickr_id": "1397537448", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49401", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone got to meet the baby today", "storylet_id": "247005"}], [{"original_text": "Papa and all his girls ", "album_id": "72157602047008082", "photo_flickr_id": "1396653033", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49401", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "papa and all his girls", "storylet_id": "247006"}], [{"original_text": "he worked hard and will be honored", "album_id": "72157602047008082", "photo_flickr_id": "1396656009", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49401", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he worked hard and will be honored", "storylet_id": "247007"}], [{"original_text": "grandma got in some time as well", "album_id": "72157602047008082", "photo_flickr_id": "1397549318", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49401", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandma got in some time as well", "storylet_id": "247008"}], [{"original_text": "everyone loved the baby", "album_id": "72157602047008082", "photo_flickr_id": "1396663319", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49401", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone loved the baby", "storylet_id": "247009"}], [{"original_text": "Caught off guard but still camera ready. ", "album_id": "72157602047008082", "photo_flickr_id": "1397547036", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "49402", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "caught off guard but still camera ready .", "storylet_id": "247010"}], [{"original_text": "Grandpa with the baby their both so cute. ", "album_id": "72157602047008082", "photo_flickr_id": "1397545698", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "49402", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandpa with the baby their both so cute .", "storylet_id": "247011"}], [{"original_text": "he such a happy baby , I love it! Grandpa say cheeese! ", "album_id": "72157602047008082", "photo_flickr_id": "1396656009", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "49402", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he such a happy baby , i love it ! grandpa say cheeese !", "storylet_id": "247012"}], [{"original_text": "Spending time with family and it was great day. ", "album_id": "72157602047008082", "photo_flickr_id": "1397546470", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "49402", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "spending time with family and it was great day .", "storylet_id": "247013"}], [{"original_text": "Grandma wanted her quality time with the sweet baby. ", "album_id": "72157602047008082", "photo_flickr_id": "1396661127", "setting": "last-3-pick-old-and-tell", "worker_id": "ORRPBFMT3QEO0Z7", "story_id": "49402", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandma wanted her quality time with the sweet baby .", "storylet_id": "247014"}], [{"original_text": "I came to Grandpa's party and was surprised at what I saw.", "album_id": "72157602047008082", "photo_flickr_id": "1397547036", "setting": "last-3-pick-old-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "49403", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i came to grandpa 's party and was surprised at what i saw .", "storylet_id": "247015"}], [{"original_text": "He had a blast meeting his new great grand child.", "album_id": "72157602047008082", "photo_flickr_id": "1397545698", "setting": "last-3-pick-old-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "49403", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he had a blast meeting his new great grand child .", "storylet_id": "247016"}], [{"original_text": "They had a wonderful time together.", "album_id": "72157602047008082", "photo_flickr_id": "1396656009", "setting": "last-3-pick-old-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "49403", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a wonderful time together .", "storylet_id": "247017"}], [{"original_text": "Grandpa enjoyed all his company.", "album_id": "72157602047008082", "photo_flickr_id": "1397546470", "setting": "last-3-pick-old-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "49403", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandpa enjoyed all his company .", "storylet_id": "247018"}], [{"original_text": "And we all enjoyed a great meal as well.", "album_id": "72157602047008082", "photo_flickr_id": "1396661127", "setting": "last-3-pick-old-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "49403", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and we all enjoyed a great meal as well .", "storylet_id": "247019"}], [{"original_text": "The grandparents meeting their great-grandson for the first time.", "album_id": "72157602047008082", "photo_flickr_id": "1397537448", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49404", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the grandparents meeting their great-grandson for the first time .", "storylet_id": "247020"}], [{"original_text": "Great 3 generation picture.", "album_id": "72157602047008082", "photo_flickr_id": "1396653033", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49404", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "great 3 generation picture .", "storylet_id": "247021"}], [{"original_text": "Great-grandpa and baby smiling for the camera.", "album_id": "72157602047008082", "photo_flickr_id": "1396656009", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49404", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "great-grandpa and baby smiling for the camera .", "storylet_id": "247022"}], [{"original_text": "Great-grandma holding the baby. She is all smiles.", "album_id": "72157602047008082", "photo_flickr_id": "1397549318", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49404", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "great-grandma holding the baby . she is all smiles .", "storylet_id": "247023"}], [{"original_text": "Baby is probably thinking who are all these people..haha.", "album_id": "72157602047008082", "photo_flickr_id": "1396663319", "setting": "last-3-pick-old-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49404", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] is probably thinking who are all these people..haha .", "storylet_id": "247024"}], [{"original_text": "There are many types of horns and bone.", "album_id": "72157624597178924", "photo_flickr_id": "4835898982", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49405", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are many types of horns and bone .", "storylet_id": "247025"}], [{"original_text": "This is a ram horn and it has been shined well.", "album_id": "72157624597178924", "photo_flickr_id": "4835290145", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49405", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a ram horn and it has been shined well .", "storylet_id": "247026"}], [{"original_text": "Next there is a horn that has been made into a pipe.", "album_id": "72157624597178924", "photo_flickr_id": "4835290303", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49405", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next there is a horn that has been made into a pipe .", "storylet_id": "247027"}], [{"original_text": "A curved horn has been rubbed and shined.", "album_id": "72157624597178924", "photo_flickr_id": "4835291511", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49405", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a curved horn has been rubbed and shined .", "storylet_id": "247028"}], [{"original_text": "Finally there is a straight piece of bone that has been shaped.", "album_id": "72157624597178924", "photo_flickr_id": "4835900662", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49405", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally there is a straight piece of bone that has been shaped .", "storylet_id": "247029"}], [{"original_text": "there are many kinds of horns", "album_id": "72157624597178924", "photo_flickr_id": "4835898982", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49406", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are many kinds of horns", "storylet_id": "247030"}], [{"original_text": "different animals produce different shapes", "album_id": "72157624597178924", "photo_flickr_id": "4835290007", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49406", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "different animals produce different shapes", "storylet_id": "247031"}], [{"original_text": "some are hollowed out and used as sound makers", "album_id": "72157624597178924", "photo_flickr_id": "4835290505", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49406", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some are hollowed out and used as sound makers", "storylet_id": "247032"}], [{"original_text": "others are used for decoration", "album_id": "72157624597178924", "photo_flickr_id": "4835291511", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49406", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others are used for decoration", "storylet_id": "247033"}], [{"original_text": "and even weapons", "album_id": "72157624597178924", "photo_flickr_id": "4835900662", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49406", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and even weapons", "storylet_id": "247034"}], [{"original_text": "An annual display of horns. First is the cows horn.", "album_id": "72157624597178924", "photo_flickr_id": "4835898982", "setting": "last-3-pick-old-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "49407", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an annual display of horns . first is the cows horn .", "storylet_id": "247035"}], [{"original_text": "Then a long horned sheep horn.", "album_id": "72157624597178924", "photo_flickr_id": "4835290007", "setting": "last-3-pick-old-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "49407", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then a long horned sheep horn .", "storylet_id": "247036"}], [{"original_text": "Rams horn.", "album_id": "72157624597178924", "photo_flickr_id": "4835290505", "setting": "last-3-pick-old-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "49407", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "rams horn .", "storylet_id": "247037"}], [{"original_text": "Mountain goat horn.", "album_id": "72157624597178924", "photo_flickr_id": "4835291511", "setting": "last-3-pick-old-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "49407", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mountain goat horn .", "storylet_id": "247038"}], [{"original_text": "And a gazelles horn.", "album_id": "72157624597178924", "photo_flickr_id": "4835900662", "setting": "last-3-pick-old-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "49407", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and a gazelles horn .", "storylet_id": "247039"}], [{"original_text": "i have this odd hobby. i dont know anyone else that shares it with me.", "album_id": "72157624597178924", "photo_flickr_id": "4835898982", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "49408", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have this odd hobby . i dont know anyone else that shares it with me .", "storylet_id": "247040"}], [{"original_text": "I collect shells at the beach.", "album_id": "72157624597178924", "photo_flickr_id": "4835290007", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "49408", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i collect shells at the beach .", "storylet_id": "247041"}], [{"original_text": "i polish them to make all of the colors come out.", "album_id": "72157624597178924", "photo_flickr_id": "4835290505", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "49408", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i polish them to make all of the colors come out .", "storylet_id": "247042"}], [{"original_text": "I then mount them to a white foam board.", "album_id": "72157624597178924", "photo_flickr_id": "4835291511", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "49408", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i then mount them to a white foam board .", "storylet_id": "247043"}], [{"original_text": "I have many different kinds. I just wish someone would want to see them.", "album_id": "72157624597178924", "photo_flickr_id": "4835900662", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "49408", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i have many different kinds . i just wish someone would want to see them .", "storylet_id": "247044"}], [{"original_text": "I'm doing a report on ivory pieces.", "album_id": "72157624597178924", "photo_flickr_id": "4835898982", "setting": "last-3-pick-old-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "49409", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 'm doing a report on ivory pieces .", "storylet_id": "247045"}], [{"original_text": "I have found many different kinds.", "album_id": "72157624597178924", "photo_flickr_id": "4835290145", "setting": "last-3-pick-old-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "49409", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i have found many different kinds .", "storylet_id": "247046"}], [{"original_text": "I really like this black one the best.", "album_id": "72157624597178924", "photo_flickr_id": "4835290303", "setting": "last-3-pick-old-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "49409", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i really like this black one the best .", "storylet_id": "247047"}], [{"original_text": "This one is shaped rather interestingly.", "album_id": "72157624597178924", "photo_flickr_id": "4835291511", "setting": "last-3-pick-old-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "49409", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one is shaped rather interestingly .", "storylet_id": "247048"}], [{"original_text": "This is a long tusk used for making canes.", "album_id": "72157624597178924", "photo_flickr_id": "4835900662", "setting": "last-3-pick-old-and-tell", "worker_id": "52QCXNLFKXZQBCA", "story_id": "49409", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a long tusk used for making canes .", "storylet_id": "247049"}], [{"original_text": "Our son was ready for his first game of the season.", "album_id": "72157623752789696", "photo_flickr_id": "4483705776", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49410", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our son was ready for his first game of the season .", "storylet_id": "247050"}], [{"original_text": "The weather was great for the boys' game today.", "album_id": "72157623752789696", "photo_flickr_id": "4483708136", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49410", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the weather was great for the boys ' game today .", "storylet_id": "247051"}], [{"original_text": "Our son played fairly well today.", "album_id": "72157623752789696", "photo_flickr_id": "4483709112", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49410", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our son played fairly well today .", "storylet_id": "247052"}], [{"original_text": "He was shooting for the goal for the winning point.", "album_id": "72157623752789696", "photo_flickr_id": "4483061947", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49410", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was shooting for the goal for the winning point .", "storylet_id": "247053"}], [{"original_text": "The ball flew past the goalie and we won!", "album_id": "72157623752789696", "photo_flickr_id": "4483056647", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49410", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ball flew past the goalie and we won !", "storylet_id": "247054"}], [{"original_text": "John knew that this was a crucial game.", "album_id": "72157623752789696", "photo_flickr_id": "4483705776", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "49411", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] knew that this was a crucial game .", "storylet_id": "247055"}], [{"original_text": "It would be a hard-fought battle between two contenders.", "album_id": "72157623752789696", "photo_flickr_id": "4483057495", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "49411", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it would be a hard-fought battle between two contenders .", "storylet_id": "247056"}], [{"original_text": "He set the pace with his fast style of play.", "album_id": "72157623752789696", "photo_flickr_id": "4483708136", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "49411", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he set the pace with his fast style of play .", "storylet_id": "247057"}], [{"original_text": "He used limber, quick moves to outduel his opponents.", "album_id": "72157623752789696", "photo_flickr_id": "4483709112", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "49411", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he used limber , quick moves to outduel his opponents .", "storylet_id": "247058"}], [{"original_text": "In the end, John scored the winning goal.", "album_id": "72157623752789696", "photo_flickr_id": "4483061947", "setting": "first-2-pick-and-tell", "worker_id": "3WWMARC27VGNG6M", "story_id": "49411", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , [male] scored the winning goal .", "storylet_id": "247059"}], [{"original_text": "Number 19 at the soccer game at the park.", "album_id": "72157623752789696", "photo_flickr_id": "4483705776", "setting": "last-3-pick-old-and-tell", "worker_id": "AKJIYVSZV9EYAGK", "story_id": "49412", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "number 19 at the soccer game at the park .", "storylet_id": "247060"}], [{"original_text": "He gets the ball, and needs to get it to the goal....", "album_id": "72157623752789696", "photo_flickr_id": "4483708136", "setting": "last-3-pick-old-and-tell", "worker_id": "AKJIYVSZV9EYAGK", "story_id": "49412", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he gets the ball , and needs to get it to the goal ... .", "storylet_id": "247061"}], [{"original_text": "...almost a steal but he gets it back...", "album_id": "72157623752789696", "photo_flickr_id": "4483709112", "setting": "last-3-pick-old-and-tell", "worker_id": "AKJIYVSZV9EYAGK", "story_id": "49412", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "... almost a steal but he gets it back ...", "storylet_id": "247062"}], [{"original_text": "..he's in goal range, and sees an opening...he kicks...", "album_id": "72157623752789696", "photo_flickr_id": "4483061947", "setting": "last-3-pick-old-and-tell", "worker_id": "AKJIYVSZV9EYAGK", "story_id": "49412", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "..he 's in goal range , and sees an opening ... he kicks ...", "storylet_id": "247063"}], [{"original_text": "...GOAL! He makes it and wins the game!", "album_id": "72157623752789696", "photo_flickr_id": "4483056647", "setting": "last-3-pick-old-and-tell", "worker_id": "AKJIYVSZV9EYAGK", "story_id": "49412", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "... goal ! he makes it and wins the game !", "storylet_id": "247064"}], [{"original_text": "Yesterday I had my championship soccer game take place.", "album_id": "72157623752789696", "photo_flickr_id": "4483705776", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49413", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday i had my championship soccer game take place .", "storylet_id": "247065"}], [{"original_text": "My team played the best they could.", "album_id": "72157623752789696", "photo_flickr_id": "4483708136", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49413", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my team played the best they could .", "storylet_id": "247066"}], [{"original_text": "It was very close for a while.", "album_id": "72157623752789696", "photo_flickr_id": "4483709112", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49413", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was very close for a while .", "storylet_id": "247067"}], [{"original_text": "Finally I made the last goal before time ran out.", "album_id": "72157623752789696", "photo_flickr_id": "4483061947", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49413", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally i made the last goal before time ran out .", "storylet_id": "247068"}], [{"original_text": "It scored! Victory!", "album_id": "72157623752789696", "photo_flickr_id": "4483056647", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49413", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it scored ! victory !", "storylet_id": "247069"}], [{"original_text": "George loved being on his soccer team.", "album_id": "72157623752789696", "photo_flickr_id": "4483705776", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "49414", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] loved being on his soccer team .", "storylet_id": "247070"}], [{"original_text": "He practiced every day so that he would be ready for games.", "album_id": "72157623752789696", "photo_flickr_id": "4483708136", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "49414", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he practiced every day so that he would be ready for games .", "storylet_id": "247071"}], [{"original_text": "When he did play official games it was impossible to get the ball away from him.", "album_id": "72157623752789696", "photo_flickr_id": "4483709112", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "49414", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when he did play official games it was impossible to get the ball away from him .", "storylet_id": "247072"}], [{"original_text": "He took every shot he could.", "album_id": "72157623752789696", "photo_flickr_id": "4483061947", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "49414", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he took every shot he could .", "storylet_id": "247073"}], [{"original_text": "He almost always made the goal.", "album_id": "72157623752789696", "photo_flickr_id": "4483056647", "setting": "last-3-pick-old-and-tell", "worker_id": "Y99S3SHJ7JPR752", "story_id": "49414", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he almost always made the goal .", "storylet_id": "247074"}], [{"original_text": "Everyone filed in to the glass-covered auditorium to see the presentation.", "album_id": "72157626285246453", "photo_flickr_id": "5581583790", "setting": "first-2-pick-and-tell", "worker_id": "M087RFFV14FC4J7", "story_id": "49415", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone filed in to the glass-covered auditorium to see the presentation .", "storylet_id": "247075"}], [{"original_text": "Numerous guests spoke about topics of interest to the crowd.", "album_id": "72157626285246453", "photo_flickr_id": "5581585228", "setting": "first-2-pick-and-tell", "worker_id": "M087RFFV14FC4J7", "story_id": "49415", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "numerous guests spoke about topics of interest to the crowd .", "storylet_id": "247076"}], [{"original_text": "People sat in rapt attention as they listened to the speakers.", "album_id": "72157626285246453", "photo_flickr_id": "5581585880", "setting": "first-2-pick-and-tell", "worker_id": "M087RFFV14FC4J7", "story_id": "49415", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people sat in rapt attention as they listened to the speakers .", "storylet_id": "247077"}], [{"original_text": "After the presentation was over, a few remained to talk to the speakers.", "album_id": "72157626285246453", "photo_flickr_id": "5581000601", "setting": "first-2-pick-and-tell", "worker_id": "M087RFFV14FC4J7", "story_id": "49415", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the presentation was over , a few remained to talk to the speakers .", "storylet_id": "247078"}], [{"original_text": "Everyone enjoyed food, drinks, and conversation to end the night.", "album_id": "72157626285246453", "photo_flickr_id": "5581588850", "setting": "first-2-pick-and-tell", "worker_id": "M087RFFV14FC4J7", "story_id": "49415", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone enjoyed food , drinks , and conversation to end the night .", "storylet_id": "247079"}], [{"original_text": "We waited as the theatre filled.", "album_id": "72157626285246453", "photo_flickr_id": "5581583790", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49416", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we waited as the theatre filled .", "storylet_id": "247080"}], [{"original_text": "The first speaker was the vice president of the company.", "album_id": "72157626285246453", "photo_flickr_id": "5581584586", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49416", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first speaker was the vice president of the company .", "storylet_id": "247081"}], [{"original_text": "The keynote speaker was a developer of an important software we are using.", "album_id": "72157626285246453", "photo_flickr_id": "5581585228", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49416", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the keynote speaker was a developer of an important software we are using .", "storylet_id": "247082"}], [{"original_text": "They served food during the event.", "album_id": "72157626285246453", "photo_flickr_id": "5581000847", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49416", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they served food during the event .", "storylet_id": "247083"}], [{"original_text": "After the speeches we spent time socializing, then went home.", "album_id": "72157626285246453", "photo_flickr_id": "5581000601", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49416", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the speeches we spent time socializing , then went home .", "storylet_id": "247084"}], [{"original_text": "The conference was held in big open place.", "album_id": "72157626285246453", "photo_flickr_id": "5581583790", "setting": "last-3-pick-old-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "49417", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the conference was held in big open place .", "storylet_id": "247085"}], [{"original_text": "Several speakers participated. ", "album_id": "72157626285246453", "photo_flickr_id": "5581585228", "setting": "last-3-pick-old-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "49417", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "several speakers participated .", "storylet_id": "247086"}], [{"original_text": "They took their time and answered patiently all questions. ", "album_id": "72157626285246453", "photo_flickr_id": "5581585880", "setting": "last-3-pick-old-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "49417", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they took their time and answered patiently all questions .", "storylet_id": "247087"}], [{"original_text": "It got too late and people were in hurry to get home.", "album_id": "72157626285246453", "photo_flickr_id": "5581000601", "setting": "last-3-pick-old-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "49417", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it got too late and people were in hurry to get home .", "storylet_id": "247088"}], [{"original_text": "The conference was pretty long, but they served nice food during the break.", "album_id": "72157626285246453", "photo_flickr_id": "5581588850", "setting": "last-3-pick-old-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "49417", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the conference was pretty long , but they served nice food during the break .", "storylet_id": "247089"}], [{"original_text": "Everyone took their seats in the auditorium before the speech.", "album_id": "72157626285246453", "photo_flickr_id": "5581583790", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49418", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone took their seats in the auditorium before the speech .", "storylet_id": "247090"}], [{"original_text": "As the speech began, there was talk of big ideas.", "album_id": "72157626285246453", "photo_flickr_id": "5581585228", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49418", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the speech began , there was talk of big ideas .", "storylet_id": "247091"}], [{"original_text": "There was a guest speaker who shed some light on new evidence.", "album_id": "72157626285246453", "photo_flickr_id": "5581585880", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49418", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a guest speaker who shed some light on new evidence .", "storylet_id": "247092"}], [{"original_text": "The stage was large and well lit for the audience.", "album_id": "72157626285246453", "photo_flickr_id": "5581000601", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49418", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the stage was large and well lit for the audience .", "storylet_id": "247093"}], [{"original_text": "Afterwards there was a food vendor outside to feed the audience.", "album_id": "72157626285246453", "photo_flickr_id": "5581588850", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49418", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards there was a food vendor outside to feed the audience .", "storylet_id": "247094"}], [{"original_text": "The crowd arrived for the conference.", "album_id": "72157626285246453", "photo_flickr_id": "5581583790", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49419", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowd arrived for the conference .", "storylet_id": "247095"}], [{"original_text": "The first presenter offered a lecture to the crowd.", "album_id": "72157626285246453", "photo_flickr_id": "5581585228", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49419", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first presenter offered a lecture to the crowd .", "storylet_id": "247096"}], [{"original_text": "After each presentation, the speakers would allow the audience to ask questions.", "album_id": "72157626285246453", "photo_flickr_id": "5581585880", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49419", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after each presentation , the speakers would allow the audience to ask questions .", "storylet_id": "247097"}], [{"original_text": "Then when the lecture was done the room would clear out.", "album_id": "72157626285246453", "photo_flickr_id": "5581000601", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49419", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then when the lecture was done the room would clear out .", "storylet_id": "247098"}], [{"original_text": "In the lobby, the conference was serving food to the guests.", "album_id": "72157626285246453", "photo_flickr_id": "5581588850", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49419", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the lobby , the conference was serving food to the guests .", "storylet_id": "247099"}], [{"original_text": "A long night, but he went for the basket.", "album_id": "72157625207406112", "photo_flickr_id": "4952492436", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49420", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a long night , but he went for the basket .", "storylet_id": "247100"}], [{"original_text": "He was almost blocked.", "album_id": "72157625207406112", "photo_flickr_id": "4951900811", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49420", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was almost blocked .", "storylet_id": "247101"}], [{"original_text": "Looking to pass was a hard task.", "album_id": "72157625207406112", "photo_flickr_id": "4952492218", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49420", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looking to pass was a hard task .", "storylet_id": "247102"}], [{"original_text": "The crowd wanted more from the team.", "album_id": "72157625207406112", "photo_flickr_id": "4952493476", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49420", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowd wanted more from the team .", "storylet_id": "247103"}], [{"original_text": "That was the first three-pointer of the night.", "album_id": "72157625207406112", "photo_flickr_id": "4952493306", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49420", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that was the first three-pointer of the night .", "storylet_id": "247104"}], [{"original_text": "Before every game, as the many support staff are getting ready, the fans start getting excited.", "album_id": "72157625207406112", "photo_flickr_id": "4952490752", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49421", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before every game , as the many support staff are getting ready , the fans start getting excited .", "storylet_id": "247105"}], [{"original_text": "They line up, hungry for any glimpse of the players.", "album_id": "72157625207406112", "photo_flickr_id": "4951900321", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49421", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they line up , hungry for any glimpse of the players .", "storylet_id": "247106"}], [{"original_text": "They scream and shout during the game, electrified by the action.", "album_id": "72157625207406112", "photo_flickr_id": "4951900811", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49421", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they scream and shout during the game , electrified by the action .", "storylet_id": "247107"}], [{"original_text": "The big green monster might LOOK like the Red Sox mascot, but any true fans know he's very different.", "album_id": "72157625207406112", "photo_flickr_id": "4952492716", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49421", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the big green monster might look like the organization organization mascot , but any true fans know he 's very different .", "storylet_id": "247108"}], [{"original_text": "If you are a fan of the black and white, you are a fan all the way!", "album_id": "72157625207406112", "photo_flickr_id": "4952493476", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49421", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "if you are a fan of the black and white , you are a fan all the way !", "storylet_id": "247109"}], [{"original_text": "The player in white has the ball, dribbling to the hoop.", "album_id": "72157625207406112", "photo_flickr_id": "4952492436", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49422", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the player in white has the ball , dribbling to the hoop .", "storylet_id": "247110"}], [{"original_text": "As he goes up for a shot, the player in red has a quick defense.", "album_id": "72157625207406112", "photo_flickr_id": "4951900811", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49422", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as he goes up for a shot , the player in red has a quick defense .", "storylet_id": "247111"}], [{"original_text": "Now in possession of the ball, the red team plans to make a point.", "album_id": "72157625207406112", "photo_flickr_id": "4952492218", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49422", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now in possession of the ball , the red team plans to make a point .", "storylet_id": "247112"}], [{"original_text": "The crowd cheers from the sidelines.", "album_id": "72157625207406112", "photo_flickr_id": "4952493476", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49422", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowd cheers from the sidelines .", "storylet_id": "247113"}], [{"original_text": "White team has the ball again and goes up for a shot.", "album_id": "72157625207406112", "photo_flickr_id": "4952493306", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49422", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "white team has the ball again and goes up for a shot .", "storylet_id": "247114"}], [{"original_text": "Number 12 of the red team attempts to slow number 11 down.", "album_id": "72157625207406112", "photo_flickr_id": "4952492436", "setting": "last-3-pick-old-and-tell", "worker_id": "DTUHBRYTPPSUDEN", "story_id": "49423", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "number 12 of the red team attempts to slow number 11 down .", "storylet_id": "247115"}], [{"original_text": "Unfortunately number 11 was able to pass the ball to number 22 of the white team who for the shot.", "album_id": "72157625207406112", "photo_flickr_id": "4951900811", "setting": "last-3-pick-old-and-tell", "worker_id": "DTUHBRYTPPSUDEN", "story_id": "49423", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "unfortunately number 11 was able to pass the ball to number 22 of the white team who for the shot .", "storylet_id": "247116"}], [{"original_text": "Number 12 of the white team missed the shot and it was rebounded by number 43 of the the red team.", "album_id": "72157625207406112", "photo_flickr_id": "4952492218", "setting": "last-3-pick-old-and-tell", "worker_id": "DTUHBRYTPPSUDEN", "story_id": "49423", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "number 12 of the white team missed the shot and it was rebounded by number 43 of the the red team .", "storylet_id": "247117"}], [{"original_text": "The crowd went crazy with excitement only to be disappointed in the end with", "album_id": "72157625207406112", "photo_flickr_id": "4952493476", "setting": "last-3-pick-old-and-tell", "worker_id": "DTUHBRYTPPSUDEN", "story_id": "49423", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowd went crazy with excitement only to be disappointed in the end with", "storylet_id": "247118"}], [{"original_text": "number 11 stealing the ball and making a 3 point shot from the line for he win.", "album_id": "72157625207406112", "photo_flickr_id": "4952493306", "setting": "last-3-pick-old-and-tell", "worker_id": "DTUHBRYTPPSUDEN", "story_id": "49423", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "number 11 stealing the ball and making a 3 point shot from the line for he win .", "storylet_id": "247119"}], [{"original_text": "Signing the contracts.", "album_id": "72157625207406112", "photo_flickr_id": "4952490752", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49424", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "signing the contracts .", "storylet_id": "247120"}], [{"original_text": "Presenting the trophy.", "album_id": "72157625207406112", "photo_flickr_id": "4951900321", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49424", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "presenting the trophy .", "storylet_id": "247121"}], [{"original_text": "Making a dunk.", "album_id": "72157625207406112", "photo_flickr_id": "4951900811", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49424", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "making a dunk .", "storylet_id": "247122"}], [{"original_text": "The mascots running away.", "album_id": "72157625207406112", "photo_flickr_id": "4952492716", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49424", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the mascots running away .", "storylet_id": "247123"}], [{"original_text": "The fans cheering and shouting.", "album_id": "72157625207406112", "photo_flickr_id": "4952493476", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49424", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fans cheering and shouting .", "storylet_id": "247124"}], [{"original_text": "We attended one of the Rockies games while visiting in Colorado.", "album_id": "72157602272641871", "photo_flickr_id": "1487132955", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49425", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we attended one of the organization games while visiting in location .", "storylet_id": "247125"}], [{"original_text": "We got there early to watch the batting practice.", "album_id": "72157602272641871", "photo_flickr_id": "1487986820", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49425", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got there early to watch the batting practice .", "storylet_id": "247126"}], [{"original_text": "Before the game a military troop came on to the field for recognition.", "album_id": "72157602272641871", "photo_flickr_id": "1487134859", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49425", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "before the game a military troop came on to the field for recognition .", "storylet_id": "247127"}], [{"original_text": "The troops presented the flags prior to the game.", "album_id": "72157602272641871", "photo_flickr_id": "1487997728", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49425", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the troops presented the flags prior to the game .", "storylet_id": "247128"}], [{"original_text": "The players took the field for the game.", "album_id": "72157602272641871", "photo_flickr_id": "1487167737", "setting": "first-2-pick-and-tell", "worker_id": "SM8EDNBTQFY8SJ5", "story_id": "49425", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the players took the field for the game .", "storylet_id": "247129"}], [{"original_text": "Instead of watching in the TV we are able to watch it live. We are proud of our soldiers.", "album_id": "72157602272641871", "photo_flickr_id": "1487134859", "setting": "first-2-pick-and-tell", "worker_id": "5LZ6A6V1S1C4XT0", "story_id": "49426", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "instead of watching in the tv we are able to watch it live . we are proud of our soldiers .", "storylet_id": "247130"}], [{"original_text": "Love to hear the music, it was played before the game.", "album_id": "72157602272641871", "photo_flickr_id": "1488005360", "setting": "first-2-pick-and-tell", "worker_id": "5LZ6A6V1S1C4XT0", "story_id": "49426", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "love to hear the music , it was played before the game .", "storylet_id": "247131"}], [{"original_text": "Our soldier in the field we are honored to have them.", "album_id": "72157602272641871", "photo_flickr_id": "1488008444", "setting": "first-2-pick-and-tell", "worker_id": "5LZ6A6V1S1C4XT0", "story_id": "49426", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our soldier in the field we are honored to have them .", "storylet_id": "247132"}], [{"original_text": "First time to watch baseball game live, it was so much action and fun. ", "album_id": "72157602272641871", "photo_flickr_id": "1487261037", "setting": "first-2-pick-and-tell", "worker_id": "5LZ6A6V1S1C4XT0", "story_id": "49426", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "first time to watch baseball game live , it was so much action and fun .", "storylet_id": "247133"}], [{"original_text": "Big giant screen during break time, it was fun entertaining people during the break.", "album_id": "72157602272641871", "photo_flickr_id": "1488116686", "setting": "first-2-pick-and-tell", "worker_id": "5LZ6A6V1S1C4XT0", "story_id": "49426", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "big giant screen during break time , it was fun entertaining people during the break .", "storylet_id": "247134"}], [{"original_text": "Today was fan appreciation day at the stadium. The event was sponsored by coca-cola and coors light.", "album_id": "72157602272641871", "photo_flickr_id": "1487132955", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "49427", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was fan appreciation day at the stadium . the event was sponsored by coca-cola and coors light .", "storylet_id": "247135"}], [{"original_text": "The first part of the entertainment was the ribbon twirlers.", "album_id": "72157602272641871", "photo_flickr_id": "1487986820", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "49427", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first part of the entertainment was the ribbon twirlers .", "storylet_id": "247136"}], [{"original_text": "Next came the marching band playing the good ole tune yankee doodle dandy.", "album_id": "72157602272641871", "photo_flickr_id": "1487134859", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "49427", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next came the marching band playing the good ole tune yankee doodle dandy .", "storylet_id": "247137"}], [{"original_text": "The marching band was followed by the flag bearers .", "album_id": "72157602272641871", "photo_flickr_id": "1487997728", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "49427", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the marching band was followed by the flag bearers .", "storylet_id": "247138"}], [{"original_text": "It was a great fan appreciation day today. Everything even the whether was perfect.", "album_id": "72157602272641871", "photo_flickr_id": "1487167737", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "49427", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great fan appreciation day today . everything even the whether was perfect .", "storylet_id": "247139"}], [{"original_text": "After waiting for a long time the ball game finally began.", "album_id": "72157602272641871", "photo_flickr_id": "1487134859", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49428", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after waiting for a long time the ball game finally began .", "storylet_id": "247140"}], [{"original_text": "We still had to go through the beginning procedures.", "album_id": "72157602272641871", "photo_flickr_id": "1488005360", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49428", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we still had to go through the beginning procedures .", "storylet_id": "247141"}], [{"original_text": "We took a few minutes to say the pledge.", "album_id": "72157602272641871", "photo_flickr_id": "1488008444", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49428", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took a few minutes to say the pledge .", "storylet_id": "247142"}], [{"original_text": "And then it was time to play ball!", "album_id": "72157602272641871", "photo_flickr_id": "1487261037", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49428", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and then it was time to play ball !", "storylet_id": "247143"}], [{"original_text": "I had a great time that game.", "album_id": "72157602272641871", "photo_flickr_id": "1488116686", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49428", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time that game .", "storylet_id": "247144"}], [{"original_text": "The soldiers marched through the stadium before the start of the game.", "album_id": "72157602272641871", "photo_flickr_id": "1487134859", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "49429", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the soldiers marched through the stadium before the start of the game .", "storylet_id": "247145"}], [{"original_text": "The national anthem was played in front of the crowd.", "album_id": "72157602272641871", "photo_flickr_id": "1488005360", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "49429", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the national anthem was played in front of the crowd .", "storylet_id": "247146"}], [{"original_text": "The soldiers saluted and honored the flag.", "album_id": "72157602272641871", "photo_flickr_id": "1488008444", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "49429", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the soldiers saluted and honored the flag .", "storylet_id": "247147"}], [{"original_text": "The game began!", "album_id": "72157602272641871", "photo_flickr_id": "1487261037", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "49429", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the game began !", "storylet_id": "247148"}], [{"original_text": "The fans cheered on their team", "album_id": "72157602272641871", "photo_flickr_id": "1488116686", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "49429", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fans cheered on their team", "storylet_id": "247149"}], [{"original_text": "They arrived at the summit, and had a drink together.", "album_id": "72157627815812442", "photo_flickr_id": "6211041978", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49430", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they arrived at the summit , and had a drink together .", "storylet_id": "247150"}], [{"original_text": "They were there to speak on the upcoming game releases.", "album_id": "72157627815812442", "photo_flickr_id": "6259916257", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49430", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were there to speak on the upcoming game releases .", "storylet_id": "247151"}], [{"original_text": "They were interviewed by numerous reporters...", "album_id": "72157627815812442", "photo_flickr_id": "6230757072", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49430", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were interviewed by numerous reporters ...", "storylet_id": "247152"}], [{"original_text": "And required to speak in front of the media..", "album_id": "72157627815812442", "photo_flickr_id": "6230761860", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49430", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and required to speak in front of the media..", "storylet_id": "247153"}], [{"original_text": "Which, certainly, didn't seem to please Tim.", "album_id": "72157627815812442", "photo_flickr_id": "6230240911", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49430", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "which , certainly , did n't seem to please [male] .", "storylet_id": "247154"}], [{"original_text": "I now introduce a man who probably needs no introduction, Mr. Allen Sampson.", "album_id": "72157627815812442", "photo_flickr_id": "6211033380", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49431", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i now introduce a man who probably needs no introduction , mr. [male] sampson .", "storylet_id": "247155"}], [{"original_text": "Mr. Sampson spoke movingly to the crowd about the need for better eye care in America.", "album_id": "72157627815812442", "photo_flickr_id": "6230761860", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49431", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mr. sampson spoke movingly to the crowd about the need for better eye care in location .", "storylet_id": "247156"}], [{"original_text": "He listened well to the questions during the question and answer session.", "album_id": "72157627815812442", "photo_flickr_id": "6213867922", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49431", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he listened well to the questions during the question and answer session .", "storylet_id": "247157"}], [{"original_text": "He did get a bit annoyed at some of the ignorance out there about glasses.", "album_id": "72157627815812442", "photo_flickr_id": "6211069328", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49431", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he did get a bit annoyed at some of the ignorance out there about glasses .", "storylet_id": "247158"}], [{"original_text": "This guy especially, with his wide-eyed stare, made Mr. Sampson a bit peeved.", "album_id": "72157627815812442", "photo_flickr_id": "6256702159", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49431", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this guy especially , with his wide-eyed stare , made mr. sampson a bit peeved .", "storylet_id": "247159"}], [{"original_text": "There were many speakers at a conference.", "album_id": "72157627815812442", "photo_flickr_id": "6211033380", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49432", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many speakers at a conference .", "storylet_id": "247160"}], [{"original_text": "People of all ethnicities spoke to the audience. ", "album_id": "72157627815812442", "photo_flickr_id": "6230761860", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49432", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people of all ethnicities spoke to the audience .", "storylet_id": "247161"}], [{"original_text": "The speakers also listened to other people speak.", "album_id": "72157627815812442", "photo_flickr_id": "6213867922", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49432", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the speakers also listened to other people speak .", "storylet_id": "247162"}], [{"original_text": "They judged what they said to the audience.", "album_id": "72157627815812442", "photo_flickr_id": "6211069328", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49432", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they judged what they said to the audience .", "storylet_id": "247163"}], [{"original_text": "There were questions asked and answered at the conference.", "album_id": "72157627815812442", "photo_flickr_id": "6256702159", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49432", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were questions asked and answered at the conference .", "storylet_id": "247164"}], [{"original_text": "I went to a conference.", "album_id": "72157627815812442", "photo_flickr_id": "6211041978", "setting": "last-3-pick-old-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49433", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a conference .", "storylet_id": "247165"}], [{"original_text": "These were the key speakers at the event.", "album_id": "72157627815812442", "photo_flickr_id": "6259916257", "setting": "last-3-pick-old-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49433", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these were the key speakers at the event .", "storylet_id": "247166"}], [{"original_text": "They were very vocal about their game.", "album_id": "72157627815812442", "photo_flickr_id": "6230757072", "setting": "last-3-pick-old-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49433", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were very vocal about their game .", "storylet_id": "247167"}], [{"original_text": "This man moved a lot of people emotionally.", "album_id": "72157627815812442", "photo_flickr_id": "6230761860", "setting": "last-3-pick-old-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49433", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this man moved a lot of people emotionally .", "storylet_id": "247168"}], [{"original_text": "They sat in a panel and answered questions.", "album_id": "72157627815812442", "photo_flickr_id": "6230240911", "setting": "last-3-pick-old-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49433", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they sat in a panel and answered questions .", "storylet_id": "247169"}], [{"original_text": "The speakers gathered before the conference to wait for the time to present.", "album_id": "72157627815812442", "photo_flickr_id": "6211041978", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49434", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the speakers gathered before the conference to wait for the time to present .", "storylet_id": "247170"}], [{"original_text": "They took a group photo before presenting at the conference.", "album_id": "72157627815812442", "photo_flickr_id": "6259916257", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49434", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took a group photo before presenting at the conference .", "storylet_id": "247171"}], [{"original_text": "Some of them gave interviewed for the local media.", "album_id": "72157627815812442", "photo_flickr_id": "6230757072", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49434", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them gave interviewed for the local media .", "storylet_id": "247172"}], [{"original_text": "When it was time, they all took turns speaking before the audience.", "album_id": "72157627815812442", "photo_flickr_id": "6230761860", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49434", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when it was time , they all took turns speaking before the audience .", "storylet_id": "247173"}], [{"original_text": "After that they would take questions from the audience.", "album_id": "72157627815812442", "photo_flickr_id": "6230240911", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49434", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that they would take questions from the audience .", "storylet_id": "247174"}], [{"original_text": "The race cars line up after finishing the race.", "album_id": "72157627215779095", "photo_flickr_id": "6011707300", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49435", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the race cars line up after finishing the race .", "storylet_id": "247175"}], [{"original_text": "The third place team posing outside of their car.", "album_id": "72157627215779095", "photo_flickr_id": "6011268647", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49435", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the third place team posing outside of their car .", "storylet_id": "247176"}], [{"original_text": "The second place team looks to the crowd for a photo opportunity. ", "album_id": "72157627215779095", "photo_flickr_id": "6012374762", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49435", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the second place team looks to the crowd for a photo opportunity .", "storylet_id": "247177"}], [{"original_text": "The winners celebrate their speedy victory.", "album_id": "72157627215779095", "photo_flickr_id": "6010708753", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49435", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the winners celebrate their speedy victory .", "storylet_id": "247178"}], [{"original_text": "The crowd is turned loose to mill among the cars.", "album_id": "72157627215779095", "photo_flickr_id": "6011165607", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49435", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the crowd is turned loose to mill among the cars .", "storylet_id": "247179"}], [{"original_text": "It was race day at the racetrack.", "album_id": "72157627215779095", "photo_flickr_id": "6010711427", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "49436", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was race day at the racetrack .", "storylet_id": "247180"}], [{"original_text": " All the drivers stood around preparing for the race.", "album_id": "72157627215779095", "photo_flickr_id": "6001582615", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "49436", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the drivers stood around preparing for the race .", "storylet_id": "247181"}], [{"original_text": " After sometime everybody lined up and it was almost time to start.", "album_id": "72157627215779095", "photo_flickr_id": "6011707300", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "49436", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after sometime everybody lined up and it was almost time to start .", "storylet_id": "247182"}], [{"original_text": "The race lasts for hours, it was so thrilling.", "album_id": "72157627215779095", "photo_flickr_id": "6011807240", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "49436", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the race lasts for hours , it was so thrilling .", "storylet_id": "247183"}], [{"original_text": " There can only be one winner and these guys beat everybody by a mile.", "album_id": "72157627215779095", "photo_flickr_id": "6010708753", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "49436", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there can only be one winner and these guys beat everybody by a mile .", "storylet_id": "247184"}], [{"original_text": "Oh how excited am I, I won tickets to meet these racers up close!", "album_id": "72157627215779095", "photo_flickr_id": "6011707300", "setting": "last-3-pick-old-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "49437", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "oh how excited am i , i won tickets to meet these racers up close !", "storylet_id": "247185"}], [{"original_text": "Of course, in meeting them, it would help if they were even slightly interested in meeting us.", "album_id": "72157627215779095", "photo_flickr_id": "6011268647", "setting": "last-3-pick-old-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "49437", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "of course , in meeting them , it would help if they were even slightly interested in meeting us .", "storylet_id": "247186"}], [{"original_text": "In all fairness, they need to focus on the upcoming race, driving in circles is hard core work.", "album_id": "72157627215779095", "photo_flickr_id": "6012374762", "setting": "last-3-pick-old-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "49437", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in all fairness , they need to focus on the upcoming race , driving in circles is hard core work .", "storylet_id": "247187"}], [{"original_text": "My bitterness faded slightly when I at least got these guys to pose for a photo.", "album_id": "72157627215779095", "photo_flickr_id": "6010708753", "setting": "last-3-pick-old-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "49437", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my bitterness faded slightly when i at least got these guys to pose for a photo .", "storylet_id": "247188"}], [{"original_text": "This is the final shot I took of the track before decided I'd proceed to my seat and hope for some wrecks.", "album_id": "72157627215779095", "photo_flickr_id": "6011165607", "setting": "last-3-pick-old-and-tell", "worker_id": "46ECVMIAF96T26T", "story_id": "49437", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the final shot i took of the track before decided i 'd proceed to my seat and hope for some wrecks .", "storylet_id": "247189"}], [{"original_text": "The cars were getting ready for the race.", "album_id": "72157627215779095", "photo_flickr_id": "6011707300", "setting": "last-3-pick-old-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49438", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cars were getting ready for the race .", "storylet_id": "247190"}], [{"original_text": "They made sure the car was prepped.", "album_id": "72157627215779095", "photo_flickr_id": "6011268647", "setting": "last-3-pick-old-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49438", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they made sure the car was prepped .", "storylet_id": "247191"}], [{"original_text": "The other racers also got prepped.", "album_id": "72157627215779095", "photo_flickr_id": "6012374762", "setting": "last-3-pick-old-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49438", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the other racers also got prepped .", "storylet_id": "247192"}], [{"original_text": "This was the winner waving at us.", "album_id": "72157627215779095", "photo_flickr_id": "6010708753", "setting": "last-3-pick-old-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49438", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was the winner waving at us .", "storylet_id": "247193"}], [{"original_text": "The crowd was very excited to watch.", "album_id": "72157627215779095", "photo_flickr_id": "6011165607", "setting": "last-3-pick-old-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49438", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the crowd was very excited to watch .", "storylet_id": "247194"}], [{"original_text": "Today was race car qualifiers.", "album_id": "72157627215779095", "photo_flickr_id": "6011707300", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49439", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was race car qualifiers .", "storylet_id": "247195"}], [{"original_text": "The Italian team looked very prepared.", "album_id": "72157627215779095", "photo_flickr_id": "6011268647", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49439", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the italian team looked very prepared .", "storylet_id": "247196"}], [{"original_text": "The team with the black car does not seem to worry about to competition.", "album_id": "72157627215779095", "photo_flickr_id": "6012374762", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49439", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the team with the black car does not seem to worry about to competition .", "storylet_id": "247197"}], [{"original_text": "At the end of the event, the white car's team won the championship.", "album_id": "72157627215779095", "photo_flickr_id": "6010708753", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49439", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the end of the event , the white car 's team won the championship .", "storylet_id": "247198"}], [{"original_text": "All the race cars came together for press pictures.", "album_id": "72157627215779095", "photo_flickr_id": "6011165607", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49439", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the race cars came together for press pictures .", "storylet_id": "247199"}], [{"original_text": "We went to watch the Sumo Wrestlers yesterday.", "album_id": "428173", "photo_flickr_id": "17912473", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49440", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to watch the sumo wrestlers yesterday .", "storylet_id": "247200"}], [{"original_text": "They would all hunker down and watch each other wrestle.", "album_id": "428173", "photo_flickr_id": "17913490", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49440", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they would all hunker down and watch each other wrestle .", "storylet_id": "247201"}], [{"original_text": "There was a referee that made sure no one did anything illegal.", "album_id": "428173", "photo_flickr_id": "17913555", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49440", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a referee that made sure no one did anything illegal .", "storylet_id": "247202"}], [{"original_text": "Some of the matches took a long time.", "album_id": "428173", "photo_flickr_id": "18097699", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49440", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the matches took a long time .", "storylet_id": "247203"}], [{"original_text": "But in the end, there was only one winner.", "album_id": "428173", "photo_flickr_id": "18098040", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49440", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but in the end , there was only one winner .", "storylet_id": "247204"}], [{"original_text": "This club has many activities, such as swimming.", "album_id": "428173", "photo_flickr_id": "17912566", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "49441", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this club has many activities , such as swimming .", "storylet_id": "247205"}], [{"original_text": "They also ride bicycles.", "album_id": "428173", "photo_flickr_id": "17913954", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "49441", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they also ride bicycles .", "storylet_id": "247206"}], [{"original_text": "Running is also on offer.", "album_id": "428173", "photo_flickr_id": "18097674", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "49441", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "running is also on offer .", "storylet_id": "247207"}], [{"original_text": "This is the fitness club.", "album_id": "428173", "photo_flickr_id": "18097816", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "49441", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the fitness club .", "storylet_id": "247208"}], [{"original_text": "The club is financed by payments from its members.", "album_id": "428173", "photo_flickr_id": "17912473", "setting": "first-2-pick-and-tell", "worker_id": "CBJI2E553DE16P0", "story_id": "49441", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the club is financed by payments from its members .", "storylet_id": "247209"}], [{"original_text": "Before the match, the wrestlers warm up.", "album_id": "428173", "photo_flickr_id": "17912473", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "49442", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before the match , the wrestlers warm up .", "storylet_id": "247210"}], [{"original_text": "While others look on, the challengers face one another.", "album_id": "428173", "photo_flickr_id": "17913490", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "49442", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while others look on , the challengers face one another .", "storylet_id": "247211"}], [{"original_text": "The match begins.", "album_id": "428173", "photo_flickr_id": "17913555", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "49442", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the match begins .", "storylet_id": "247212"}], [{"original_text": "A winner is decided!", "album_id": "428173", "photo_flickr_id": "18097699", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "49442", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a winner is decided !", "storylet_id": "247213"}], [{"original_text": "The winner is awarded the prize.", "album_id": "428173", "photo_flickr_id": "18098040", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "49442", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the winner is awarded the prize .", "storylet_id": "247214"}], [{"original_text": "The sumo wrestlers are meditating backstage.", "album_id": "428173", "photo_flickr_id": "17912473", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49443", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sumo wrestlers are meditating backstage .", "storylet_id": "247215"}], [{"original_text": "Two sumo wrestlers await in anticipation for their fight.", "album_id": "428173", "photo_flickr_id": "17913490", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49443", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "two sumo wrestlers await in anticipation for their fight .", "storylet_id": "247216"}], [{"original_text": "It was a fierce battle between the two men.", "album_id": "428173", "photo_flickr_id": "17913555", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49443", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a fierce battle between the two men .", "storylet_id": "247217"}], [{"original_text": "One eventually claims victory over his opponent.", "album_id": "428173", "photo_flickr_id": "18097699", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49443", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one eventually claims victory over his opponent .", "storylet_id": "247218"}], [{"original_text": "We even saw a young sumo wrestler that appears to be in training.", "album_id": "428173", "photo_flickr_id": "18098040", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49443", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even saw a young sumo wrestler that appears to be in training .", "storylet_id": "247219"}], [{"original_text": "Sumo wrestlers meditating before the fight.", "album_id": "428173", "photo_flickr_id": "17912473", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49444", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sumo wrestlers meditating before the fight .", "storylet_id": "247220"}], [{"original_text": "The wrestlers waiting for their turn and watching the fight.", "album_id": "428173", "photo_flickr_id": "17913490", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49444", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wrestlers waiting for their turn and watching the fight .", "storylet_id": "247221"}], [{"original_text": "Round 2, the team is winning so far.", "album_id": "428173", "photo_flickr_id": "17913555", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49444", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "round 2 , the team is winning so far .", "storylet_id": "247222"}], [{"original_text": "Wrestling and the crowd is watching attentively. ", "album_id": "428173", "photo_flickr_id": "18097699", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49444", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "wrestling and the crowd is watching attentively .", "storylet_id": "247223"}], [{"original_text": "The young man is about to go wrestle. ", "album_id": "428173", "photo_flickr_id": "18098040", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49444", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the young man is about to go wrestle .", "storylet_id": "247224"}], [{"original_text": "Today is the big day for this football team.", "album_id": "72157631742265391", "photo_flickr_id": "6120541648", "setting": "first-2-pick-and-tell", "worker_id": "RBCHD254AMPB6BT", "story_id": "49445", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is the big day for this football team .", "storylet_id": "247225"}], [{"original_text": "They are about to play for a championship.", "album_id": "72157631742265391", "photo_flickr_id": "6120000581", "setting": "first-2-pick-and-tell", "worker_id": "RBCHD254AMPB6BT", "story_id": "49445", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are about to play for a championship .", "storylet_id": "247226"}], [{"original_text": "First Time in ten years.", "album_id": "72157631742265391", "photo_flickr_id": "6120006065", "setting": "first-2-pick-and-tell", "worker_id": "RBCHD254AMPB6BT", "story_id": "49445", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "organization organization in ten years .", "storylet_id": "247227"}], [{"original_text": "This is the new football stadium that was built and this is where they will be playing.", "album_id": "72157631742265391", "photo_flickr_id": "6120550408", "setting": "first-2-pick-and-tell", "worker_id": "RBCHD254AMPB6BT", "story_id": "49445", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the new football stadium that was built and this is where they will be playing .", "storylet_id": "247228"}], [{"original_text": "This is what it looked like before the new stadium was there. ", "album_id": "72157631742265391", "photo_flickr_id": "6120552658", "setting": "first-2-pick-and-tell", "worker_id": "RBCHD254AMPB6BT", "story_id": "49445", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is what it looked like before the new stadium was there .", "storylet_id": "247229"}], [{"original_text": "we got a private tour of the field ", "album_id": "72157631742265391", "photo_flickr_id": "6120000581", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49446", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got a private tour of the field", "storylet_id": "247230"}], [{"original_text": "we got to walk around and take pictures ", "album_id": "72157631742265391", "photo_flickr_id": "6120545236", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49446", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to walk around and take pictures", "storylet_id": "247231"}], [{"original_text": "i got right at the field goal post ", "album_id": "72157631742265391", "photo_flickr_id": "6120546334", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49446", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got right at the field goal post", "storylet_id": "247232"}], [{"original_text": "the stadium was huge", "album_id": "72157631742265391", "photo_flickr_id": "6120004139", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49446", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the stadium was huge", "storylet_id": "247233"}], [{"original_text": "Clemson is a fun place to visit", "album_id": "72157631742265391", "photo_flickr_id": "6120550408", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49446", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "organization is a fun place to visit", "storylet_id": "247234"}], [{"original_text": "It was a sunny and clear day at the football stadium.", "album_id": "72157631742265391", "photo_flickr_id": "6120541648", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49447", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a sunny and clear day at the football stadium .", "storylet_id": "247235"}], [{"original_text": "At Memorial Stadium, there were cars lining up to get in.", "album_id": "72157631742265391", "photo_flickr_id": "6120000581", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49447", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at location location , there were cars lining up to get in .", "storylet_id": "247236"}], [{"original_text": "A view of the field showed how well kept it was.", "album_id": "72157631742265391", "photo_flickr_id": "6120006065", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49447", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a view of the field showed how well kept it was .", "storylet_id": "247237"}], [{"original_text": "A giant orange paw print marks the stadium from another side.", "album_id": "72157631742265391", "photo_flickr_id": "6120550408", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49447", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a giant orange paw print marks the stadium from another side .", "storylet_id": "247238"}], [{"original_text": "There is beautiful landscaping around the stadium.", "album_id": "72157631742265391", "photo_flickr_id": "6120552658", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49447", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is beautiful landscaping around the stadium .", "storylet_id": "247239"}], [{"original_text": "This was the large stadium empty.", "album_id": "72157631742265391", "photo_flickr_id": "6120541648", "setting": "last-3-pick-old-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49448", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the large stadium empty .", "storylet_id": "247240"}], [{"original_text": "Some cars were lined up in front of the building already.", "album_id": "72157631742265391", "photo_flickr_id": "6120000581", "setting": "last-3-pick-old-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49448", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some cars were lined up in front of the building already .", "storylet_id": "247241"}], [{"original_text": "This was the view from the goal.", "album_id": "72157631742265391", "photo_flickr_id": "6120006065", "setting": "last-3-pick-old-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49448", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was the view from the goal .", "storylet_id": "247242"}], [{"original_text": "The building was slanted and appealed to the younger kids.", "album_id": "72157631742265391", "photo_flickr_id": "6120550408", "setting": "last-3-pick-old-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49448", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the building was slanted and appealed to the younger kids .", "storylet_id": "247243"}], [{"original_text": "The area was not well taken care of though.", "album_id": "72157631742265391", "photo_flickr_id": "6120552658", "setting": "last-3-pick-old-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49448", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the area was not well taken care of though .", "storylet_id": "247244"}], [{"original_text": "Felt like visiting Memorial Stadium today.", "album_id": "72157631742265391", "photo_flickr_id": "6120000581", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "49449", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "felt like visiting location location today .", "storylet_id": "247245"}], [{"original_text": "Had the whole field all to myself!", "album_id": "72157631742265391", "photo_flickr_id": "6120545236", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "49449", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "had the whole field all to myself !", "storylet_id": "247246"}], [{"original_text": "The place sure does look grand.", "album_id": "72157631742265391", "photo_flickr_id": "6120546334", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "49449", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the place sure does look grand .", "storylet_id": "247247"}], [{"original_text": "The size of it is even crazier when it's empty. Can you imagine all those seats are filled so often?", "album_id": "72157631742265391", "photo_flickr_id": "6120004139", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "49449", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the size of it is even crazier when it 's empty . can you imagine all those seats are filled so often ?", "storylet_id": "247248"}], [{"original_text": "Bless our beloved Tigers.", "album_id": "72157631742265391", "photo_flickr_id": "6120550408", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "49449", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "bless our beloved tigers .", "storylet_id": "247249"}], [{"original_text": "Mom made us something to eat before we left.", "album_id": "72157627722157927", "photo_flickr_id": "6223325265", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49450", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom made us something to eat before we left .", "storylet_id": "247250"}], [{"original_text": "The line to the game was long.", "album_id": "72157627722157927", "photo_flickr_id": "6223855792", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49450", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the line to the game was long .", "storylet_id": "247251"}], [{"original_text": "We ended up taking pictures instead.", "album_id": "72157627722157927", "photo_flickr_id": "6223858170", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49450", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we ended up taking pictures instead .", "storylet_id": "247252"}], [{"original_text": "This lady had a cool outfit.", "album_id": "72157627722157927", "photo_flickr_id": "6223346959", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49450", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this lady had a cool outfit .", "storylet_id": "247253"}], [{"original_text": "This was a picture of me afterwards.", "album_id": "72157627722157927", "photo_flickr_id": "6223362709", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49450", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was a picture of me afterwards .", "storylet_id": "247254"}], [{"original_text": "It's the behind the scenes people that really make any sports event special.", "album_id": "72157627722157927", "photo_flickr_id": "6223842594", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49451", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's the behind the scenes people that really make any sports event special .", "storylet_id": "247255"}], [{"original_text": "Jill here, at the coffee station, is as important as any of the runners.", "album_id": "72157627722157927", "photo_flickr_id": "6223325265", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49451", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] here , at the coffee station , is as important as any of the runners .", "storylet_id": "247256"}], [{"original_text": "The Sandbag Ladies are a big part of the race, just in case a flood starts during the running.", "album_id": "72157627722157927", "photo_flickr_id": "6223858170", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49451", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sandbag ladies are a big part of the race , just in case a flood starts during the running .", "storylet_id": "247257"}], [{"original_text": "Melinda the Good Witch, the race mascot, is absolutely a crucial part of the fun.", "album_id": "72157627722157927", "photo_flickr_id": "6223346959", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49451", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] the good witch , the race mascot , is absolutely a crucial part of the fun .", "storylet_id": "247258"}], [{"original_text": "And Sally, the Finish Line Umbrella Woman, is a special lady indeed!", "album_id": "72157627722157927", "photo_flickr_id": "6223874154", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49451", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and [female] , the finish line umbrella woman , is a special lady indeed !", "storylet_id": "247259"}], [{"original_text": "The lady is so excited for the race today!", "album_id": "72157627722157927", "photo_flickr_id": "6223842594", "setting": "last-3-pick-old-and-tell", "worker_id": "9UVA1ZB3OFDJX8B", "story_id": "49452", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lady is so excited for the race today !", "storylet_id": "247260"}], [{"original_text": "She is packing up coffee for her friends in case they get cold.", "album_id": "72157627722157927", "photo_flickr_id": "6223325265", "setting": "last-3-pick-old-and-tell", "worker_id": "9UVA1ZB3OFDJX8B", "story_id": "49452", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she is packing up coffee for her friends in case they get cold .", "storylet_id": "247261"}], [{"original_text": "Three volunteers are selling t-shirts for the charity.", "album_id": "72157627722157927", "photo_flickr_id": "6223858170", "setting": "last-3-pick-old-and-tell", "worker_id": "9UVA1ZB3OFDJX8B", "story_id": "49452", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "three volunteers are selling t-shirts for the charity .", "storylet_id": "247262"}], [{"original_text": "One runner dressed as a pirate to make it more fun.", "album_id": "72157627722157927", "photo_flickr_id": "6223346959", "setting": "last-3-pick-old-and-tell", "worker_id": "9UVA1ZB3OFDJX8B", "story_id": "49452", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one runner dressed as a pirate to make it more fun .", "storylet_id": "247263"}], [{"original_text": "This lady brought her umbrella to the race in case of rain.", "album_id": "72157627722157927", "photo_flickr_id": "6223874154", "setting": "last-3-pick-old-and-tell", "worker_id": "9UVA1ZB3OFDJX8B", "story_id": "49452", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this lady brought her umbrella to the race in case of rain .", "storylet_id": "247264"}], [{"original_text": "Before heading to the race, we stopped at Starbucks for coffee.", "album_id": "72157627722157927", "photo_flickr_id": "6223325265", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49453", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before heading to the race , we stopped at organization for coffee .", "storylet_id": "247265"}], [{"original_text": "When we arrived to the race, we had to register.", "album_id": "72157627722157927", "photo_flickr_id": "6223855792", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49453", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we arrived to the race , we had to register .", "storylet_id": "247266"}], [{"original_text": "After that we had to pick up our t-shirts.", "album_id": "72157627722157927", "photo_flickr_id": "6223858170", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49453", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that we had to pick up our t-shirts .", "storylet_id": "247267"}], [{"original_text": "Some of us wore costumes for the race.", "album_id": "72157627722157927", "photo_flickr_id": "6223346959", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49453", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of us wore costumes for the race .", "storylet_id": "247268"}], [{"original_text": "Everyone gathered and was ready for the race.", "album_id": "72157627722157927", "photo_flickr_id": "6223362709", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49453", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone gathered and was ready for the race .", "storylet_id": "247269"}], [{"original_text": "Every Sunday we go and help out at the veterans shelter.", "album_id": "72157627722157927", "photo_flickr_id": "6223325265", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49454", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every sunday we go and help out at the veterans shelter .", "storylet_id": "247270"}], [{"original_text": "We prepared car packages for overseas soldiers.", "album_id": "72157627722157927", "photo_flickr_id": "6223855792", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49454", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we prepared car packages for overseas soldiers .", "storylet_id": "247271"}], [{"original_text": "We even made t-shirts for the whole team.", "album_id": "72157627722157927", "photo_flickr_id": "6223858170", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49454", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even made t-shirts for the whole team .", "storylet_id": "247272"}], [{"original_text": "We had fun in between the seriousness.", "album_id": "72157627722157927", "photo_flickr_id": "6223346959", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49454", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had fun in between the seriousness .", "storylet_id": "247273"}], [{"original_text": "Here, Charlie is doing a charity run for our organization.", "album_id": "72157627722157927", "photo_flickr_id": "6223362709", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49454", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here , [male] is doing a charity run for our organization .", "storylet_id": "247274"}], [{"original_text": "Tricycle racing is a lonely, stupid thing. ", "album_id": "72157600061046554", "photo_flickr_id": "453626624", "setting": "first-2-pick-and-tell", "worker_id": "1P73XCCAEA691IJ", "story_id": "49455", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "tricycle racing is a lonely , stupid thing .", "storylet_id": "247275"}], [{"original_text": "These people are the loneliest, but not the stupidest. Until they mount their trics.", "album_id": "72157600061046554", "photo_flickr_id": "453622213", "setting": "first-2-pick-and-tell", "worker_id": "1P73XCCAEA691IJ", "story_id": "49455", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these people are the loneliest , but not the stupidest . until they mount their trics .", "storylet_id": "247276"}], [{"original_text": "This looks like a normal man with a hunger for the finish line. But much about Tricycle racing is deceptive. ", "album_id": "72157600061046554", "photo_flickr_id": "453605572", "setting": "first-2-pick-and-tell", "worker_id": "1P73XCCAEA691IJ", "story_id": "49455", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this looks like a normal man with a hunger for the finish line . but much about tricycle racing is deceptive .", "storylet_id": "247277"}], [{"original_text": "This is what a moment of glory looks like in this sport. ", "album_id": "72157600061046554", "photo_flickr_id": "453641198", "setting": "first-2-pick-and-tell", "worker_id": "1P73XCCAEA691IJ", "story_id": "49455", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is what a moment of glory looks like in this sport .", "storylet_id": "247278"}], [{"original_text": "These people have come to face their mortality and the deep questions that arise from every true tricycle race. ", "album_id": "72157600061046554", "photo_flickr_id": "453642917", "setting": "first-2-pick-and-tell", "worker_id": "1P73XCCAEA691IJ", "story_id": "49455", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these people have come to face their mortality and the deep questions that arise from every true tricycle race .", "storylet_id": "247279"}], [{"original_text": "We arrived at the event", "album_id": "72157600061046554", "photo_flickr_id": "453640425", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "49456", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at the event", "storylet_id": "247280"}], [{"original_text": "everyone was talking about the events plans", "album_id": "72157600061046554", "photo_flickr_id": "453623995", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "49456", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was talking about the events plans", "storylet_id": "247281"}], [{"original_text": "some people were wearing silly masks", "album_id": "72157600061046554", "photo_flickr_id": "453622213", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "49456", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people were wearing silly masks", "storylet_id": "247282"}], [{"original_text": "they were lots of people attending", "album_id": "72157600061046554", "photo_flickr_id": "453618031", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "49456", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were lots of people attending", "storylet_id": "247283"}], [{"original_text": "and even more showed up.", "album_id": "72157600061046554", "photo_flickr_id": "453642917", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "49456", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and even more showed up .", "storylet_id": "247284"}], [{"original_text": "Two orange and green hot wheels marked the beginning of a fun time in town today.", "album_id": "72157600061046554", "photo_flickr_id": "453626624", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "49457", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two orange and green hot wheels marked the beginning of a fun time in town today .", "storylet_id": "247285"}], [{"original_text": "There were people dresses in silly costumes.", "album_id": "72157600061046554", "photo_flickr_id": "453622213", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "49457", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were people dresses in silly costumes .", "storylet_id": "247286"}], [{"original_text": "One man rode around on a mini bike.", "album_id": "72157600061046554", "photo_flickr_id": "453605572", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "49457", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one man rode around on a mini bike .", "storylet_id": "247287"}], [{"original_text": "People lined both sides of the street to see the mini cycle drag race.", "album_id": "72157600061046554", "photo_flickr_id": "453641198", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "49457", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people lined both sides of the street to see the mini cycle drag race .", "storylet_id": "247288"}], [{"original_text": "Everyone had fun saw lots of exciting things and swore to come back next year.", "album_id": "72157600061046554", "photo_flickr_id": "453642917", "setting": "last-3-pick-old-and-tell", "worker_id": "7TBDP2TX41Q9SVG", "story_id": "49457", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had fun saw lots of exciting things and swore to come back next year .", "storylet_id": "247289"}], [{"original_text": "We started the day off with a bit of tricycling.", "album_id": "72157600061046554", "photo_flickr_id": "453640425", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "49458", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started the day off with a bit of tricycling .", "storylet_id": "247290"}], [{"original_text": "Many of us were also wearing funny costumes.", "album_id": "72157600061046554", "photo_flickr_id": "453623995", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "49458", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of us were also wearing funny costumes .", "storylet_id": "247291"}], [{"original_text": "A man and his child were dressed like Beaker from the Muppets.", "album_id": "72157600061046554", "photo_flickr_id": "453622213", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "49458", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man and his child were dressed like beaker from the organization .", "storylet_id": "247292"}], [{"original_text": "Many of us proceeded through the city.", "album_id": "72157600061046554", "photo_flickr_id": "453618031", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "49458", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many of us proceeded through the city .", "storylet_id": "247293"}], [{"original_text": "It was a huge gathering.", "album_id": "72157600061046554", "photo_flickr_id": "453642917", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "49458", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a huge gathering .", "storylet_id": "247294"}], [{"original_text": "We all brought our tricycles to the meet today.", "album_id": "72157600061046554", "photo_flickr_id": "453640425", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49459", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all brought our tricycles to the meet today .", "storylet_id": "247295"}], [{"original_text": "Everybody had one.", "album_id": "72157600061046554", "photo_flickr_id": "453623995", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49459", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everybody had one .", "storylet_id": "247296"}], [{"original_text": "Lots of interesting people came to watch. ", "album_id": "72157600061046554", "photo_flickr_id": "453622213", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49459", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lots of interesting people came to watch .", "storylet_id": "247297"}], [{"original_text": "Eventually the whole town was out in the streets watching the performance.", "album_id": "72157600061046554", "photo_flickr_id": "453618031", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49459", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "eventually the whole town was out in the streets watching the performance .", "storylet_id": "247298"}], [{"original_text": "It was a great day.", "album_id": "72157600061046554", "photo_flickr_id": "453642917", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49459", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great day .", "storylet_id": "247299"}], [{"original_text": "I finally got to the try out the high jump.", "album_id": "72157626805179777", "photo_flickr_id": "5818566916", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49460", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finally got to the try out the high jump .", "storylet_id": "247300"}], [{"original_text": "My friend went to play tennis.", "album_id": "72157626805179777", "photo_flickr_id": "5818567574", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49460", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend went to play tennis .", "storylet_id": "247301"}], [{"original_text": "The court was empty and crisp.", "album_id": "72157626805179777", "photo_flickr_id": "5818568172", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49460", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the court was empty and crisp .", "storylet_id": "247302"}], [{"original_text": "The horses were near us and that was scary.", "album_id": "72157626805179777", "photo_flickr_id": "5818888658", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49460", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the horses were near us and that was scary .", "storylet_id": "247303"}], [{"original_text": "Afterwards, we went to play some basketball.", "album_id": "72157626805179777", "photo_flickr_id": "5818301885", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49460", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , we went to play some basketball .", "storylet_id": "247304"}], [{"original_text": "Terry won the running race at the special Olympics.", "album_id": "72157626805179777", "photo_flickr_id": "5818566702", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49461", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] won the running race at the special olympics .", "storylet_id": "247305"}], [{"original_text": "Jim finally made it over the bar.", "album_id": "72157626805179777", "photo_flickr_id": "5818566916", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49461", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] finally made it over the bar .", "storylet_id": "247306"}], [{"original_text": "Tom blasted the ball during the softball.", "album_id": "72157626805179777", "photo_flickr_id": "5817999775", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49461", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] blasted the ball during the softball .", "storylet_id": "247307"}], [{"original_text": "Travis loves to swim for competition.", "album_id": "72157626805179777", "photo_flickr_id": "5818868892", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49461", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] loves to swim for competition .", "storylet_id": "247308"}], [{"original_text": "Danny tries to direct the ball during the tennis match.", "album_id": "72157626805179777", "photo_flickr_id": "5818567574", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49461", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] tries to direct the ball during the tennis match .", "storylet_id": "247309"}], [{"original_text": "Today was the day of the School Olympics. Everyone in the school picked a sport and competed. All of the classes picked a participant for each sport to try and find a winner. First up was the 800 meter relay race.", "album_id": "72157626805179777", "photo_flickr_id": "5818566702", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "49462", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day of the school olympics . everyone in the school picked a sport and competed . all of the classes picked a participant for each sport to try and find a winner . first up was the 800 meter relay race .", "storylet_id": "247310"}], [{"original_text": "Then, there was the long jump.", "album_id": "72157626805179777", "photo_flickr_id": "5818566916", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "49462", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then , there was the long jump .", "storylet_id": "247311"}], [{"original_text": "The students also competed in a softball game", "album_id": "72157626805179777", "photo_flickr_id": "5817999775", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "49462", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the students also competed in a softball game", "storylet_id": "247312"}], [{"original_text": " and some swimming events.", "album_id": "72157626805179777", "photo_flickr_id": "5818868892", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "49462", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and some swimming events .", "storylet_id": "247313"}], [{"original_text": "The final score was determined by a tennis match and the winners ended up being the seniors. It was a fun and exciting day.", "album_id": "72157626805179777", "photo_flickr_id": "5818567574", "setting": "last-3-pick-old-and-tell", "worker_id": "RU4XEL300S5CIY2", "story_id": "49462", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the final score was determined by a tennis match and the winners ended up being the seniors . it was a fun and exciting day .", "storylet_id": "247314"}], [{"original_text": "At the competition there was a runner who was sprinting.", "album_id": "72157626805179777", "photo_flickr_id": "5818566702", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49463", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the competition there was a runner who was sprinting .", "storylet_id": "247315"}], [{"original_text": "There was also a high jumper.", "album_id": "72157626805179777", "photo_flickr_id": "5818566916", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49463", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was also a high jumper .", "storylet_id": "247316"}], [{"original_text": "Baseball was played outside.", "album_id": "72157626805179777", "photo_flickr_id": "5817999775", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49463", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "baseball was played outside .", "storylet_id": "247317"}], [{"original_text": "There was a swimming pool with active swimmers.", "album_id": "72157626805179777", "photo_flickr_id": "5818868892", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49463", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a swimming pool with active swimmers .", "storylet_id": "247318"}], [{"original_text": "We also saw tennis players planning their strategy.", "album_id": "72157626805179777", "photo_flickr_id": "5818567574", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49463", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also saw tennis players planning their strategy .", "storylet_id": "247319"}], [{"original_text": "I volunteered at our Special Olympics competition.", "album_id": "72157626805179777", "photo_flickr_id": "5818566916", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49464", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i volunteered at our special olympics competition .", "storylet_id": "247320"}], [{"original_text": "There were people competing in tennis.", "album_id": "72157626805179777", "photo_flickr_id": "5818567574", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49464", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were people competing in tennis .", "storylet_id": "247321"}], [{"original_text": "They did great!", "album_id": "72157626805179777", "photo_flickr_id": "5818568172", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49464", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they did great !", "storylet_id": "247322"}], [{"original_text": "There was also horseback riding competition, which looked pretty enjoyable!", "album_id": "72157626805179777", "photo_flickr_id": "5818888658", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49464", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also horseback riding competition , which looked pretty enjoyable !", "storylet_id": "247323"}], [{"original_text": "My favorite was the basketball game. Those guys work hard out there on the court!", "album_id": "72157626805179777", "photo_flickr_id": "5818301885", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49464", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite was the basketball game . those guys work hard out there on the court !", "storylet_id": "247324"}], [{"original_text": "An MC takes the stage to talk on the microphone.", "album_id": "72157602348894457", "photo_flickr_id": "1531610300", "setting": "first-2-pick-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "49465", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an mc takes the stage to talk on the microphone .", "storylet_id": "247325"}], [{"original_text": "A couple is dancing together at the club.", "album_id": "72157602348894457", "photo_flickr_id": "1530743781", "setting": "first-2-pick-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "49465", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a couple is dancing together at the club .", "storylet_id": "247326"}], [{"original_text": "A group of friends are dancing and having fun.", "album_id": "72157602348894457", "photo_flickr_id": "1530750395", "setting": "first-2-pick-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "49465", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a group of friends are dancing and having fun .", "storylet_id": "247327"}], [{"original_text": "A couple poses together for the camera.", "album_id": "72157602348894457", "photo_flickr_id": "1530753127", "setting": "first-2-pick-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "49465", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a couple poses together for the camera .", "storylet_id": "247328"}], [{"original_text": "A man wearing a sweatshirt poses for the camera.", "album_id": "72157602348894457", "photo_flickr_id": "1530753707", "setting": "first-2-pick-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "49465", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a man wearing a sweatshirt poses for the camera .", "storylet_id": "247329"}], [{"original_text": "the party was getting loud", "album_id": "72157602348894457", "photo_flickr_id": "1530739281", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "49466", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party was getting loud", "storylet_id": "247330"}], [{"original_text": "and the performers on stage were great", "album_id": "72157602348894457", "photo_flickr_id": "1531610300", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "49466", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the performers on stage were great", "storylet_id": "247331"}], [{"original_text": "they had everyone dancing", "album_id": "72157602348894457", "photo_flickr_id": "1530743781", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "49466", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had everyone dancing", "storylet_id": "247332"}], [{"original_text": "and just having a good time", "album_id": "72157602348894457", "photo_flickr_id": "1530744577", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "49466", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and just having a good time", "storylet_id": "247333"}], [{"original_text": "then we took pictures", "album_id": "72157602348894457", "photo_flickr_id": "1530747757", "setting": "first-2-pick-and-tell", "worker_id": "4DPEUC83G2ITJP7", "story_id": "49466", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we took pictures", "storylet_id": "247334"}], [{"original_text": "The DJ got the audience hyped up for the party.", "album_id": "72157602348894457", "photo_flickr_id": "1531610300", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49467", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dj got the audience hyped up for the party .", "storylet_id": "247335"}], [{"original_text": "A lot of people were dancing.", "album_id": "72157602348894457", "photo_flickr_id": "1530743781", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49467", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of people were dancing .", "storylet_id": "247336"}], [{"original_text": "Others were dancing in larger groups.", "album_id": "72157602348894457", "photo_flickr_id": "1530750395", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49467", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others were dancing in larger groups .", "storylet_id": "247337"}], [{"original_text": "The two stopped for a photo.", "album_id": "72157602348894457", "photo_flickr_id": "1530753127", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49467", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the two stopped for a photo .", "storylet_id": "247338"}], [{"original_text": "Some people left the party earlier than others. ", "album_id": "72157602348894457", "photo_flickr_id": "1530753707", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49467", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people left the party earlier than others .", "storylet_id": "247339"}], [{"original_text": "It was the company party and everyone was wearing matching shirts and waiting for the DJ to start.", "album_id": "72157602348894457", "photo_flickr_id": "1530739281", "setting": "last-3-pick-old-and-tell", "worker_id": "6B1WB40MR9XEDHW", "story_id": "49468", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the company party and everyone was wearing matching shirts and waiting for the dj to start .", "storylet_id": "247340"}], [{"original_text": "The DJ came on stage to a very excited crowd.", "album_id": "72157602348894457", "photo_flickr_id": "1531610300", "setting": "last-3-pick-old-and-tell", "worker_id": "6B1WB40MR9XEDHW", "story_id": "49468", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dj came on stage to a very excited crowd .", "storylet_id": "247341"}], [{"original_text": "The dancing began and there were possibilities of romance!", "album_id": "72157602348894457", "photo_flickr_id": "1530743781", "setting": "last-3-pick-old-and-tell", "worker_id": "6B1WB40MR9XEDHW", "story_id": "49468", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dancing began and there were possibilities of romance !", "storylet_id": "247342"}], [{"original_text": "Even without romantic prospects, everyone had fun dancing with friends.", "album_id": "72157602348894457", "photo_flickr_id": "1530744577", "setting": "last-3-pick-old-and-tell", "worker_id": "6B1WB40MR9XEDHW", "story_id": "49468", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even without romantic prospects , everyone had fun dancing with friends .", "storylet_id": "247343"}], [{"original_text": "Even the bar staff had a good time at the party.", "album_id": "72157602348894457", "photo_flickr_id": "1530747757", "setting": "last-3-pick-old-and-tell", "worker_id": "6B1WB40MR9XEDHW", "story_id": "49468", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the bar staff had a good time at the party .", "storylet_id": "247344"}], [{"original_text": "When everybody had arrived we finally got the party going.", "album_id": "72157602348894457", "photo_flickr_id": "1531610300", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49469", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when everybody had arrived we finally got the party going .", "storylet_id": "247345"}], [{"original_text": "Everyone was on the dance floor when the lights went out.", "album_id": "72157602348894457", "photo_flickr_id": "1530743781", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49469", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was on the dance floor when the lights went out .", "storylet_id": "247346"}], [{"original_text": "It was a lot of fun.", "album_id": "72157602348894457", "photo_flickr_id": "1530750395", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49469", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a lot of fun .", "storylet_id": "247347"}], [{"original_text": "Tons of people told us they would definitely be back.", "album_id": "72157602348894457", "photo_flickr_id": "1530753127", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49469", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "tons of people told us they would definitely be back .", "storylet_id": "247348"}], [{"original_text": "I had a great time.", "album_id": "72157602348894457", "photo_flickr_id": "1530753707", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49469", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time .", "storylet_id": "247349"}], [{"original_text": "The goal kicked the ball.", "album_id": "72157626821743987", "photo_flickr_id": "5825628321", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49470", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the goal kicked the ball .", "storylet_id": "247350"}], [{"original_text": "It was back in play.", "album_id": "72157626821743987", "photo_flickr_id": "5826203924", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49470", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was back in play .", "storylet_id": "247351"}], [{"original_text": "The boys fought for it.", "album_id": "72157626821743987", "photo_flickr_id": "5826204720", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49470", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boys fought for it .", "storylet_id": "247352"}], [{"original_text": "One of them ended stealing it.", "album_id": "72157626821743987", "photo_flickr_id": "5825648267", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49470", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of them ended stealing it .", "storylet_id": "247353"}], [{"original_text": "He heads for the goalie.", "album_id": "72157626821743987", "photo_flickr_id": "5825649497", "setting": "first-2-pick-and-tell", "worker_id": "1Q0QENJXXE4W8ZR", "story_id": "49470", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he heads for the goalie .", "storylet_id": "247354"}], [{"original_text": "The yellow shirt lines up the ball for a goal.", "album_id": "72157626821743987", "photo_flickr_id": "5825628321", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49471", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the yellow shirt lines up the ball for a goal .", "storylet_id": "247355"}], [{"original_text": "The green and white shirt chases the red shirt for the ball.", "album_id": "72157626821743987", "photo_flickr_id": "5825630327", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49471", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the green and white shirt chases the red shirt for the ball .", "storylet_id": "247356"}], [{"original_text": "Two players battle it out for the ball.", "album_id": "72157626821743987", "photo_flickr_id": "5826204720", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49471", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two players battle it out for the ball .", "storylet_id": "247357"}], [{"original_text": "The red shirt is intent on getting the ball back.", "album_id": "72157626821743987", "photo_flickr_id": "5826208244", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49471", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the red shirt is intent on getting the ball back .", "storylet_id": "247358"}], [{"original_text": "The green and white shirt tries to block the goal.", "album_id": "72157626821743987", "photo_flickr_id": "5826216062", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49471", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the green and white shirt tries to block the goal .", "storylet_id": "247359"}], [{"original_text": "At the kids soccer camp, they practiced kicking the balls.", "album_id": "72157626821743987", "photo_flickr_id": "5825628321", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49472", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the kids soccer camp , they practiced kicking the balls .", "storylet_id": "247360"}], [{"original_text": "They played on teams to try to add some competition.", "album_id": "72157626821743987", "photo_flickr_id": "5825630327", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49472", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they played on teams to try to add some competition .", "storylet_id": "247361"}], [{"original_text": "There were boys of all ages on the field, competing for the win.", "album_id": "72157626821743987", "photo_flickr_id": "5826204720", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49472", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were boys of all ages on the field , competing for the win .", "storylet_id": "247362"}], [{"original_text": "Hustling around, the boys tried their best to make a goal.", "album_id": "72157626821743987", "photo_flickr_id": "5826208244", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49472", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "hustling around , the boys tried their best to make a goal .", "storylet_id": "247363"}], [{"original_text": "Careful attention was paid to the soccer ball to make sure it was kept in control.", "album_id": "72157626821743987", "photo_flickr_id": "5826216062", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49472", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "careful attention was paid to the soccer ball to make sure it was kept in control .", "storylet_id": "247364"}], [{"original_text": "The game began between the teams. ", "album_id": "72157626821743987", "photo_flickr_id": "5825628321", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "49473", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the game began between the teams .", "storylet_id": "247365"}], [{"original_text": "The players had a fun time playing each other.", "album_id": "72157626821743987", "photo_flickr_id": "5826203924", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "49473", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the players had a fun time playing each other .", "storylet_id": "247366"}], [{"original_text": "The red team was in the lead, but the green team was fighting back.", "album_id": "72157626821743987", "photo_flickr_id": "5826204720", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "49473", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the red team was in the lead , but the green team was fighting back .", "storylet_id": "247367"}], [{"original_text": "The left winger on the green team was determined to score a goal.", "album_id": "72157626821743987", "photo_flickr_id": "5825648267", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "49473", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the left winger on the green team was determined to score a goal .", "storylet_id": "247368"}], [{"original_text": "The game was nearing the end and the red team looked victorious.", "album_id": "72157626821743987", "photo_flickr_id": "5825649497", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "49473", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the game was nearing the end and the red team looked victorious .", "storylet_id": "247369"}], [{"original_text": "The game was tied after some great catches by the goaless.", "album_id": "72157626821743987", "photo_flickr_id": "5825628321", "setting": "last-3-pick-old-and-tell", "worker_id": "PRDID19Y56A01IQ", "story_id": "49474", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the game was tied after some great catches by the goaless .", "storylet_id": "247370"}], [{"original_text": "John was ready to score the winning goal, he wanted victory.", "album_id": "72157626821743987", "photo_flickr_id": "5826203924", "setting": "last-3-pick-old-and-tell", "worker_id": "PRDID19Y56A01IQ", "story_id": "49474", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was ready to score the winning goal , he wanted victory .", "storylet_id": "247371"}], [{"original_text": "The ball was stolen by the other team.", "album_id": "72157626821743987", "photo_flickr_id": "5826204720", "setting": "last-3-pick-old-and-tell", "worker_id": "PRDID19Y56A01IQ", "story_id": "49474", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ball was stolen by the other team .", "storylet_id": "247372"}], [{"original_text": "Johns teammate stepped up and tried to get it back.", "album_id": "72157626821743987", "photo_flickr_id": "5825648267", "setting": "last-3-pick-old-and-tell", "worker_id": "PRDID19Y56A01IQ", "story_id": "49474", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "johns teammate stepped up and tried to get it back .", "storylet_id": "247373"}], [{"original_text": "Sadly for John and his team the other team had the ball and made the winning shot.", "album_id": "72157626821743987", "photo_flickr_id": "5825649497", "setting": "last-3-pick-old-and-tell", "worker_id": "PRDID19Y56A01IQ", "story_id": "49474", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sadly for [male] and his team the other team had the ball and made the winning shot .", "storylet_id": "247374"}], [{"original_text": "Our whole team was excited to arrive at the big conference about sport protective gear. The big tube outside let us know we were really there.", "album_id": "72157624845628495", "photo_flickr_id": "4996714644", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49475", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our whole team was excited to arrive at the big conference about sport protective gear . the big tube outside let us know we were really there .", "storylet_id": "247375"}], [{"original_text": "We listened to the keynote speeches from up on the catwalk.", "album_id": "72157624845628495", "photo_flickr_id": "4996722958", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49475", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we listened to the keynote speeches from up on the catwalk .", "storylet_id": "247376"}], [{"original_text": "Then we all went to some of the demonstrations. The advances in gloves were particularly compelling.", "album_id": "72157624845628495", "photo_flickr_id": "4996109323", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49475", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we all went to some of the demonstrations . the advances in gloves were particularly compelling .", "storylet_id": "247377"}], [{"original_text": "This guy from Aker Solutions blew us away with some of his monitoring devices. ", "album_id": "72157624845628495", "photo_flickr_id": "4996718796", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49475", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this guy from organization organization blew us away with some of his monitoring devices .", "storylet_id": "247378"}], [{"original_text": "And this man talking about hockey falls was amazing. We were all very glad we attended the conference.", "album_id": "72157624845628495", "photo_flickr_id": "4996719834", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49475", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and this man talking about hockey falls was amazing . we were all very glad we attended the conference .", "storylet_id": "247379"}], [{"original_text": "our company had a tech open house", "album_id": "72157624845628495", "photo_flickr_id": "4996714644", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49476", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our company had a tech open house", "storylet_id": "247380"}], [{"original_text": "the ceo talked about the future", "album_id": "72157624845628495", "photo_flickr_id": "4996114141", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49476", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ceo talked about the future", "storylet_id": "247381"}], [{"original_text": "there was alot of buzz about the announcement", "album_id": "72157624845628495", "photo_flickr_id": "4996722958", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49476", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was alot of buzz about the announcement", "storylet_id": "247382"}], [{"original_text": "there were demonstrations ", "album_id": "72157624845628495", "photo_flickr_id": "4996109323", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49476", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were demonstrations", "storylet_id": "247383"}], [{"original_text": "everyone had a great time learning about new products", "album_id": "72157624845628495", "photo_flickr_id": "4996718796", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49476", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time learning about new products", "storylet_id": "247384"}], [{"original_text": "At the fundraiser event, there were many attractions.", "album_id": "72157624845628495", "photo_flickr_id": "4996714644", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49477", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the fundraiser event , there were many attractions .", "storylet_id": "247385"}], [{"original_text": "The leader of the company had some words for the audience.", "album_id": "72157624845628495", "photo_flickr_id": "4996114141", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49477", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the leader of the company had some words for the audience .", "storylet_id": "247386"}], [{"original_text": "He even brought out a few guest speakers.", "album_id": "72157624845628495", "photo_flickr_id": "4996722958", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49477", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he even brought out a few guest speakers .", "storylet_id": "247387"}], [{"original_text": "People began arriving to support the company.", "album_id": "72157624845628495", "photo_flickr_id": "4996109323", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49477", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people began arriving to support the company .", "storylet_id": "247388"}], [{"original_text": "The new innovations were showed off to the audience.", "album_id": "72157624845628495", "photo_flickr_id": "4996718796", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49477", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the new innovations were showed off to the audience .", "storylet_id": "247389"}], [{"original_text": "The conference was being prepared for the people to arrive.", "album_id": "72157624845628495", "photo_flickr_id": "4996714644", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49478", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the conference was being prepared for the people to arrive .", "storylet_id": "247390"}], [{"original_text": "The guests were greeted by a couple of presenters.", "album_id": "72157624845628495", "photo_flickr_id": "4996722958", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49478", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guests were greeted by a couple of presenters .", "storylet_id": "247391"}], [{"original_text": "The crowd greeted each other as they arrived.", "album_id": "72157624845628495", "photo_flickr_id": "4996109323", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49478", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowd greeted each other as they arrived .", "storylet_id": "247392"}], [{"original_text": "Then lectures were given at the conference.", "album_id": "72157624845628495", "photo_flickr_id": "4996718796", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49478", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then lectures were given at the conference .", "storylet_id": "247393"}], [{"original_text": "After each lecture, they took questions from the audience.", "album_id": "72157624845628495", "photo_flickr_id": "4996719834", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49478", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after each lecture , they took questions from the audience .", "storylet_id": "247394"}], [{"original_text": "The field was all set up for the race.", "album_id": "72157624845628495", "photo_flickr_id": "4996714644", "setting": "last-3-pick-old-and-tell", "worker_id": "HT9WVLWKUXTB4JG", "story_id": "49479", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the field was all set up for the race .", "storylet_id": "247395"}], [{"original_text": "Soon the speakers got ready to get the event going and the participants on their way. ", "album_id": "72157624845628495", "photo_flickr_id": "4996722958", "setting": "last-3-pick-old-and-tell", "worker_id": "HT9WVLWKUXTB4JG", "story_id": "49479", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "soon the speakers got ready to get the event going and the participants on their way .", "storylet_id": "247396"}], [{"original_text": "The athletes spent a few min discussing gear and renewing friendships.", "album_id": "72157624845628495", "photo_flickr_id": "4996109323", "setting": "last-3-pick-old-and-tell", "worker_id": "HT9WVLWKUXTB4JG", "story_id": "49479", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the athletes spent a few min discussing gear and renewing friendships .", "storylet_id": "247397"}], [{"original_text": "Vendors were on hand to show off the newest gear.", "album_id": "72157624845628495", "photo_flickr_id": "4996718796", "setting": "last-3-pick-old-and-tell", "worker_id": "HT9WVLWKUXTB4JG", "story_id": "49479", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "vendors were on hand to show off the newest gear .", "storylet_id": "247398"}], [{"original_text": "A summary of the day's activities capped off the event.", "album_id": "72157624845628495", "photo_flickr_id": "4996719834", "setting": "last-3-pick-old-and-tell", "worker_id": "HT9WVLWKUXTB4JG", "story_id": "49479", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a summary of the day 's activities capped off the event .", "storylet_id": "247399"}], [{"original_text": "A fun soccer match, that is my team in the black. ", "album_id": "72157628032301395", "photo_flickr_id": "6356270143", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "49480", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a fun soccer match , that is my team in the black .", "storylet_id": "247400"}], [{"original_text": "The team with the white shirts was very good. ", "album_id": "72157628032301395", "photo_flickr_id": "6356274361", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "49480", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the team with the white shirts was very good .", "storylet_id": "247401"}], [{"original_text": "That is me about to kick the ball. ", "album_id": "72157628032301395", "photo_flickr_id": "6356283129", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "49480", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that is me about to kick the ball .", "storylet_id": "247402"}], [{"original_text": "The other teams players could jump very high. ", "album_id": "72157628032301395", "photo_flickr_id": "6356287691", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "49480", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the other teams players could jump very high .", "storylet_id": "247403"}], [{"original_text": "The ball goes into the net, GOAL!", "album_id": "72157628032301395", "photo_flickr_id": "6356290947", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "49480", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ball goes into the net , goal !", "storylet_id": "247404"}], [{"original_text": "The blue shirt has the ball.", "album_id": "72157628032301395", "photo_flickr_id": "6356270143", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49481", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the blue shirt has the ball .", "storylet_id": "247405"}], [{"original_text": "The boy lines up a goal.", "album_id": "72157628032301395", "photo_flickr_id": "6356271777", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49481", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boy lines up a goal .", "storylet_id": "247406"}], [{"original_text": "The taller boy tries to steal the ball.", "album_id": "72157628032301395", "photo_flickr_id": "6356280839", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49481", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the taller boy tries to steal the ball .", "storylet_id": "247407"}], [{"original_text": "Chasing the ball to make a goal.", "album_id": "72157628032301395", "photo_flickr_id": "6356286399", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49481", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "chasing the ball to make a goal .", "storylet_id": "247408"}], [{"original_text": "From behind the goal we can watch the action.", "album_id": "72157628032301395", "photo_flickr_id": "6356294795", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49481", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "from behind the goal we can watch the action .", "storylet_id": "247409"}], [{"original_text": "The children played an intense game of soccer.", "album_id": "72157628032301395", "photo_flickr_id": "6356270143", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49482", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the children played an intense game of soccer .", "storylet_id": "247410"}], [{"original_text": "They were both very eager to get ahead in the game.", "album_id": "72157628032301395", "photo_flickr_id": "6356274361", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49482", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were both very eager to get ahead in the game .", "storylet_id": "247411"}], [{"original_text": "One boy played with his heart to score a goal.", "album_id": "72157628032301395", "photo_flickr_id": "6356283129", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49482", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one boy played with his heart to score a goal .", "storylet_id": "247412"}], [{"original_text": "It was a great game and it was close.", "album_id": "72157628032301395", "photo_flickr_id": "6356287691", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49482", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a great game and it was close .", "storylet_id": "247413"}], [{"original_text": "The goalie tried his best to stop them from scoring.", "album_id": "72157628032301395", "photo_flickr_id": "6356290947", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49482", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the goalie tried his best to stop them from scoring .", "storylet_id": "247414"}], [{"original_text": "The boys on the soccer team hustled to get the ball away from the other team.", "album_id": "72157628032301395", "photo_flickr_id": "6356270143", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49483", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boys on the soccer team hustled to get the ball away from the other team .", "storylet_id": "247415"}], [{"original_text": "They used their head to hit the ball in the direction they wanted.", "album_id": "72157628032301395", "photo_flickr_id": "6356274361", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49483", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they used their head to hit the ball in the direction they wanted .", "storylet_id": "247416"}], [{"original_text": "A hard heavy kick was made by the blue team.", "album_id": "72157628032301395", "photo_flickr_id": "6356283129", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49483", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a hard heavy kick was made by the blue team .", "storylet_id": "247417"}], [{"original_text": "Team mates jumped in anticipation at the shot.", "album_id": "72157628032301395", "photo_flickr_id": "6356287691", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49483", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "team mates jumped in anticipation at the shot .", "storylet_id": "247418"}], [{"original_text": "The goal keeper tries to defend the goal fro the ball.", "album_id": "72157628032301395", "photo_flickr_id": "6356290947", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49483", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the goal keeper tries to defend the goal fro the ball .", "storylet_id": "247419"}], [{"original_text": "Charlie is the star player of the team.", "album_id": "72157628032301395", "photo_flickr_id": "6356270143", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49484", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is the star player of the team .", "storylet_id": "247420"}], [{"original_text": "Here, Charlie is focused on the ball.", "album_id": "72157628032301395", "photo_flickr_id": "6356274361", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49484", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here , [male] is focused on the ball .", "storylet_id": "247421"}], [{"original_text": "Charlie's teammate attempts to make a goal.", "album_id": "72157628032301395", "photo_flickr_id": "6356283129", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49484", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] 's teammate attempts to make a goal .", "storylet_id": "247422"}], [{"original_text": "The team jumps to see whether the ball goes in.", "album_id": "72157628032301395", "photo_flickr_id": "6356287691", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49484", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the team jumps to see whether the ball goes in .", "storylet_id": "247423"}], [{"original_text": "GOAL! Charlie's team is going really well.", "album_id": "72157628032301395", "photo_flickr_id": "6356290947", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49484", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "goal ! [male] 's team is going really well .", "storylet_id": "247424"}], [{"original_text": "Playing at recess for fun and exercise.", "album_id": "72157624409178315", "photo_flickr_id": "4804319957", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49485", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "playing at recess for fun and exercise .", "storylet_id": "247425"}], [{"original_text": "A little girl jumps rope for fun.", "album_id": "72157624409178315", "photo_flickr_id": "4804951902", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49485", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a little girl jumps rope for fun .", "storylet_id": "247426"}], [{"original_text": "Little boy jumping on a pile of something white.", "album_id": "72157624409178315", "photo_flickr_id": "4804955992", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49485", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "little boy jumping on a pile of something white .", "storylet_id": "247427"}], [{"original_text": "The children sitting down waiting to go back into the school.", "album_id": "72157624409178315", "photo_flickr_id": "4804333143", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49485", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the children sitting down waiting to go back into the school .", "storylet_id": "247428"}], [{"original_text": "A teacher overseeing the children on the playground.", "album_id": "72157624409178315", "photo_flickr_id": "4804964568", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49485", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a teacher overseeing the children on the playground .", "storylet_id": "247429"}], [{"original_text": "It did not seem to matter if the children played by them self on the playground.", "album_id": "72157624409178315", "photo_flickr_id": "4804341315", "setting": "first-2-pick-and-tell", "worker_id": "O4E3UA6HKSGZ8G3", "story_id": "49486", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it did not seem to matter if the children played by them self on the playground .", "storylet_id": "247430"}], [{"original_text": "It did not seem to matter if they played in a group.", "album_id": "72157624409178315", "photo_flickr_id": "4804951902", "setting": "first-2-pick-and-tell", "worker_id": "O4E3UA6HKSGZ8G3", "story_id": "49486", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it did not seem to matter if they played in a group .", "storylet_id": "247431"}], [{"original_text": "What did matter was that when they sat and though, their play ground seemed to be missing something. ", "album_id": "72157624409178315", "photo_flickr_id": "4804333143", "setting": "first-2-pick-and-tell", "worker_id": "O4E3UA6HKSGZ8G3", "story_id": "49486", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what did matter was that when they sat and though , their play ground seemed to be missing something .", "storylet_id": "247432"}], [{"original_text": "One day a girl invited an adult to play. It was the most fun they every had on the playground. ", "album_id": "72157624409178315", "photo_flickr_id": "4804964568", "setting": "first-2-pick-and-tell", "worker_id": "O4E3UA6HKSGZ8G3", "story_id": "49486", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one day a girl invited an adult to play . it was the most fun they every had on the playground .", "storylet_id": "247433"}], [{"original_text": "Soon more and more adults were coming and having fun. The adults seemed to make their playground complete. ", "album_id": "72157624409178315", "photo_flickr_id": "4804977724", "setting": "first-2-pick-and-tell", "worker_id": "O4E3UA6HKSGZ8G3", "story_id": "49486", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "soon more and more adults were coming and having fun . the adults seemed to make their playground complete .", "storylet_id": "247434"}], [{"original_text": "My daughter loves to go to school and this was her first day. She was so excited.", "album_id": "72157624409178315", "photo_flickr_id": "4804319957", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "49487", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my daughter loves to go to school and this was her first day . she was so excited .", "storylet_id": "247435"}], [{"original_text": "She made friends quickly and started playing almost immediately.", "album_id": "72157624409178315", "photo_flickr_id": "4804951902", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "49487", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she made friends quickly and started playing almost immediately .", "storylet_id": "247436"}], [{"original_text": "At lunch she was watching other students play Hula-Hoop with a dog", "album_id": "72157624409178315", "photo_flickr_id": "4804955992", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "49487", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at lunch she was watching other students play hula-hoop with a dog", "storylet_id": "247437"}], [{"original_text": "Then it was quiet time and they all sat and learned about the game they were going to play with a green ball.", "album_id": "72157624409178315", "photo_flickr_id": "4804333143", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "49487", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then it was quiet time and they all sat and learned about the game they were going to play with a green ball .", "storylet_id": "247438"}], [{"original_text": "At the end of the day everyone was exhausted and said their good byes and left for the busses. A good first day!", "album_id": "72157624409178315", "photo_flickr_id": "4804964568", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "49487", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day everyone was exhausted and said their good byes and left for the busses . a good first day !", "storylet_id": "247439"}], [{"original_text": "The students wait for the game to begin.", "album_id": "72157624409178315", "photo_flickr_id": "4804319957", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "49488", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the students wait for the game to begin .", "storylet_id": "247440"}], [{"original_text": "As the game begins, excited students ready themselves.", "album_id": "72157624409178315", "photo_flickr_id": "4804951902", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "49488", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the game begins , excited students ready themselves .", "storylet_id": "247441"}], [{"original_text": "A student excitedly approaches the event.", "album_id": "72157624409178315", "photo_flickr_id": "4804955992", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "49488", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a student excitedly approaches the event .", "storylet_id": "247442"}], [{"original_text": "The students listen patiently to the directions.", "album_id": "72157624409178315", "photo_flickr_id": "4804333143", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "49488", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the students listen patiently to the directions .", "storylet_id": "247443"}], [{"original_text": "The final event begins and it is evident the day has been a success.", "album_id": "72157624409178315", "photo_flickr_id": "4804964568", "setting": "last-3-pick-old-and-tell", "worker_id": "LM17FUZO6V7BNIL", "story_id": "49488", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the final event begins and it is evident the day has been a success .", "storylet_id": "247444"}], [{"original_text": "Children await for the event to happen.", "album_id": "72157624409178315", "photo_flickr_id": "4804319957", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49489", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "children await for the event to happen .", "storylet_id": "247445"}], [{"original_text": "Once started, two girls are seen jumping in excitement.", "album_id": "72157624409178315", "photo_flickr_id": "4804951902", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49489", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once started , two girls are seen jumping in excitement .", "storylet_id": "247446"}], [{"original_text": "A child in a red jacket is focused on the wool.", "album_id": "72157624409178315", "photo_flickr_id": "4804955992", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49489", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a child in a red jacket is focused on the wool .", "storylet_id": "247447"}], [{"original_text": "After much energy, the children need a break from the action.", "album_id": "72157624409178315", "photo_flickr_id": "4804333143", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49489", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after much energy , the children need a break from the action .", "storylet_id": "247448"}], [{"original_text": "Finally, the event goes on with another game.", "album_id": "72157624409178315", "photo_flickr_id": "4804964568", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49489", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , the event goes on with another game .", "storylet_id": "247449"}], [{"original_text": "Juan steals the ball from the other team.", "album_id": "72157628058774325", "photo_flickr_id": "6366788329", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49490", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] steals the ball from the other team .", "storylet_id": "247450"}], [{"original_text": "Juan lets the ball get ahead of him loses possession.", "album_id": "72157628058774325", "photo_flickr_id": "6366790995", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49490", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] lets the ball get ahead of him loses possession .", "storylet_id": "247451"}], [{"original_text": "Tommy heads the ball to another team member.", "album_id": "72157628058774325", "photo_flickr_id": "6366798743", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49490", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] heads the ball to another team member .", "storylet_id": "247452"}], [{"original_text": "The boys rush after the ball with reckless abandon.", "album_id": "72157628058774325", "photo_flickr_id": "6366817933", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49490", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boys rush after the ball with reckless abandon .", "storylet_id": "247453"}], [{"original_text": "Danny really tries to head the ball into the goal.", "album_id": "72157628058774325", "photo_flickr_id": "6366820805", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49490", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] really tries to head the ball into the goal .", "storylet_id": "247454"}], [{"original_text": "My son plays soccer for his school team, St. Joseph Patrick.", "album_id": "72157628058774325", "photo_flickr_id": "6366788329", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49491", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my son plays soccer for his school team , st. [male] [male] .", "storylet_id": "247455"}], [{"original_text": "He's a very good player. He's great at headers.", "album_id": "72157628058774325", "photo_flickr_id": "6366798743", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49491", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he 's a very good player . he 's great at headers .", "storylet_id": "247456"}], [{"original_text": "We go to every single game. He might be shorter than the other players, but I'd say he's the best on the team.", "album_id": "72157628058774325", "photo_flickr_id": "6366817933", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49491", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we go to every single game . he might be shorter than the other players , but i 'd say he 's the best on the team .", "storylet_id": "247457"}], [{"original_text": "The action at the games is incredible. You would think you're watching professional soccer.", "album_id": "72157628058774325", "photo_flickr_id": "6366828123", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49491", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the action at the games is incredible . you would think you 're watching professional soccer .", "storylet_id": "247458"}], [{"original_text": "Jimmy's ball control is getting better all the time. I think he might go pro at some point.", "album_id": "72157628058774325", "photo_flickr_id": "6366850233", "setting": "first-2-pick-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49491", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] 's ball control is getting better all the time . i think he might go pro at some point .", "storylet_id": "247459"}], [{"original_text": "The soccer teams battled to see who would win the game.", "album_id": "72157628058774325", "photo_flickr_id": "6366788329", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49492", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the soccer teams battled to see who would win the game .", "storylet_id": "247460"}], [{"original_text": "The ball switched sides as everyone tried to gain control.", "album_id": "72157628058774325", "photo_flickr_id": "6366790995", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49492", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ball switched sides as everyone tried to gain control .", "storylet_id": "247461"}], [{"original_text": "There was physical contact trying to retrieve the ball.", "album_id": "72157628058774325", "photo_flickr_id": "6366798743", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49492", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was physical contact trying to retrieve the ball .", "storylet_id": "247462"}], [{"original_text": "The team members hustled down the field.", "album_id": "72157628058774325", "photo_flickr_id": "6366817933", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49492", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the team members hustled down the field .", "storylet_id": "247463"}], [{"original_text": "There were some close calls where some team members could have been hurt.", "album_id": "72157628058774325", "photo_flickr_id": "6366820805", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49492", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were some close calls where some team members could have been hurt .", "storylet_id": "247464"}], [{"original_text": "It's a great day for a soccer game.", "album_id": "72157628058774325", "photo_flickr_id": "6366788329", "setting": "last-3-pick-old-and-tell", "worker_id": "TI7SOUAFE73R3GU", "story_id": "49493", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a great day for a soccer game .", "storylet_id": "247465"}], [{"original_text": "The teams are fiercely competing for the ball.", "album_id": "72157628058774325", "photo_flickr_id": "6366790995", "setting": "last-3-pick-old-and-tell", "worker_id": "TI7SOUAFE73R3GU", "story_id": "49493", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the teams are fiercely competing for the ball .", "storylet_id": "247466"}], [{"original_text": "Two players collide in the battle for the ball.", "album_id": "72157628058774325", "photo_flickr_id": "6366798743", "setting": "last-3-pick-old-and-tell", "worker_id": "TI7SOUAFE73R3GU", "story_id": "49493", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two players collide in the battle for the ball .", "storylet_id": "247467"}], [{"original_text": "They watch in anticipation as they try to decipher where the ball is going to go. ", "album_id": "72157628058774325", "photo_flickr_id": "6366817933", "setting": "last-3-pick-old-and-tell", "worker_id": "TI7SOUAFE73R3GU", "story_id": "49493", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they watch in anticipation as they try to decipher where the ball is going to go .", "storylet_id": "247468"}], [{"original_text": "This player saves his team with quick thinking, hitting it with his head to keep it from the other team.", "album_id": "72157628058774325", "photo_flickr_id": "6366820805", "setting": "last-3-pick-old-and-tell", "worker_id": "TI7SOUAFE73R3GU", "story_id": "49493", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this player saves his team with quick thinking , hitting it with his head to keep it from the other team .", "storylet_id": "247469"}], [{"original_text": "Sammy is doing really well in soccer.", "album_id": "72157628058774325", "photo_flickr_id": "6366788329", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49494", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is doing really well in soccer .", "storylet_id": "247470"}], [{"original_text": "Sammy is like a Tasmanian devil with the soccer ball.", "album_id": "72157628058774325", "photo_flickr_id": "6366790995", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49494", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is like a tasmanian devil with the soccer ball .", "storylet_id": "247471"}], [{"original_text": "Sammy takes the game very seriously and will not let anyone else get in the way.", "album_id": "72157628058774325", "photo_flickr_id": "6366798743", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49494", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] takes the game very seriously and will not let anyone else get in the way .", "storylet_id": "247472"}], [{"original_text": "The game was exciting and fun for everyone.", "album_id": "72157628058774325", "photo_flickr_id": "6366817933", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49494", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the game was exciting and fun for everyone .", "storylet_id": "247473"}], [{"original_text": "There were no injuries but everyone took the game very seriously.", "album_id": "72157628058774325", "photo_flickr_id": "6366820805", "setting": "last-3-pick-old-and-tell", "worker_id": "A86CVU2NAUI3K7I", "story_id": "49494", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were no injuries but everyone took the game very seriously .", "storylet_id": "247474"}], [{"original_text": "The triathletes finished their swim, ready to switch to bikes.", "album_id": "72157627037920956", "photo_flickr_id": "5866100667", "setting": "first-2-pick-and-tell", "worker_id": "M087RFFV14FC4J7", "story_id": "49495", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the triathletes finished their swim , ready to switch to bikes .", "storylet_id": "247475"}], [{"original_text": "The transition went smooth for most of the athletes.", "album_id": "72157627037920956", "photo_flickr_id": "5866655126", "setting": "first-2-pick-and-tell", "worker_id": "M087RFFV14FC4J7", "story_id": "49495", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the transition went smooth for most of the athletes .", "storylet_id": "247476"}], [{"original_text": "Once on their bikes, they prepared to take off down the road.", "album_id": "72157627037920956", "photo_flickr_id": "5866100937", "setting": "first-2-pick-and-tell", "worker_id": "M087RFFV14FC4J7", "story_id": "49495", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once on their bikes , they prepared to take off down the road .", "storylet_id": "247477"}], [{"original_text": "After the bike ride, the triathletes ran and hydrated.", "album_id": "72157627037920956", "photo_flickr_id": "5866656716", "setting": "first-2-pick-and-tell", "worker_id": "M087RFFV14FC4J7", "story_id": "49495", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the bike ride , the triathletes ran and hydrated .", "storylet_id": "247478"}], [{"original_text": "Trophies waited for the athletes at the finish line.", "album_id": "72157627037920956", "photo_flickr_id": "5866103757", "setting": "first-2-pick-and-tell", "worker_id": "M087RFFV14FC4J7", "story_id": "49495", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "trophies waited for the athletes at the finish line .", "storylet_id": "247479"}], [{"original_text": "Swimming is the first part of the race.", "album_id": "72157627037920956", "photo_flickr_id": "5866100667", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49496", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "swimming is the first part of the race .", "storylet_id": "247480"}], [{"original_text": "Biking is the second part of the race.", "album_id": "72157627037920956", "photo_flickr_id": "5866100937", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49496", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "biking is the second part of the race .", "storylet_id": "247481"}], [{"original_text": "Running is the third part of the race.", "album_id": "72157627037920956", "photo_flickr_id": "5866656146", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49496", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "running is the third part of the race .", "storylet_id": "247482"}], [{"original_text": "A racer needs some water to keep going.", "album_id": "72157627037920956", "photo_flickr_id": "5866102779", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49496", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a racer needs some water to keep going .", "storylet_id": "247483"}], [{"original_text": "The winners circle with medals and trophies.", "album_id": "72157627037920956", "photo_flickr_id": "5866103757", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49496", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the winners circle with medals and trophies .", "storylet_id": "247484"}], [{"original_text": "The people took a swim before the race.", "album_id": "72157627037920956", "photo_flickr_id": "5866100667", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "49497", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people took a swim before the race .", "storylet_id": "247485"}], [{"original_text": "They got on their bikes and began the race.", "album_id": "72157627037920956", "photo_flickr_id": "5866100937", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "49497", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got on their bikes and began the race .", "storylet_id": "247486"}], [{"original_text": "After the bikes, they had to run on foot.", "album_id": "72157627037920956", "photo_flickr_id": "5866656146", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "49497", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the bikes , they had to run on foot .", "storylet_id": "247487"}], [{"original_text": "Number 90 was encouraged by a friend to move on.", "album_id": "72157627037920956", "photo_flickr_id": "5866102779", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "49497", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "number 90 was encouraged by a friend to move on .", "storylet_id": "247488"}], [{"original_text": "At the end of the race, the awards were handed out.", "album_id": "72157627037920956", "photo_flickr_id": "5866103757", "setting": "last-3-pick-old-and-tell", "worker_id": "1MKXPXQJXNYLHDB", "story_id": "49497", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the race , the awards were handed out .", "storylet_id": "247489"}], [{"original_text": "One of the triathlons events was swimming and despite the cold weather, everyone got in the water.", "album_id": "72157627037920956", "photo_flickr_id": "5866100667", "setting": "last-3-pick-old-and-tell", "worker_id": "PRDID19Y56A01IQ", "story_id": "49498", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one of the triathlons events was swimming and despite the cold weather , everyone got in the water .", "storylet_id": "247490"}], [{"original_text": "They dried off as quickly as possible then got on their bikes and pedaled as fast as they could.", "album_id": "72157627037920956", "photo_flickr_id": "5866100937", "setting": "last-3-pick-old-and-tell", "worker_id": "PRDID19Y56A01IQ", "story_id": "49498", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they dried off as quickly as possible then got on their bikes and pedaled as fast as they could .", "storylet_id": "247491"}], [{"original_text": "When they were done biking they took off running, the sun was beating down harder and some had to use water to cool down.", "album_id": "72157627037920956", "photo_flickr_id": "5866656146", "setting": "last-3-pick-old-and-tell", "worker_id": "PRDID19Y56A01IQ", "story_id": "49498", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when they were done biking they took off running , the sun was beating down harder and some had to use water to cool down .", "storylet_id": "247492"}], [{"original_text": "The participants started to return to the venue and look for food and water.", "album_id": "72157627037920956", "photo_flickr_id": "5866102779", "setting": "last-3-pick-old-and-tell", "worker_id": "PRDID19Y56A01IQ", "story_id": "49498", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the participants started to return to the venue and look for food and water .", "storylet_id": "247493"}], [{"original_text": "Everyone got a participation ribbon.", "album_id": "72157627037920956", "photo_flickr_id": "5866103757", "setting": "last-3-pick-old-and-tell", "worker_id": "PRDID19Y56A01IQ", "story_id": "49498", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone got a participation ribbon .", "storylet_id": "247494"}], [{"original_text": "The water was cold, but it was still fun to run through.", "album_id": "72157627037920956", "photo_flickr_id": "5866100667", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49499", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the water was cold , but it was still fun to run through .", "storylet_id": "247495"}], [{"original_text": "People had all the latest gear for the bike race.", "album_id": "72157627037920956", "photo_flickr_id": "5866655126", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49499", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people had all the latest gear for the bike race .", "storylet_id": "247496"}], [{"original_text": "Cyclists were ready to go and eager to race.", "album_id": "72157627037920956", "photo_flickr_id": "5866100937", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49499", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "cyclists were ready to go and eager to race .", "storylet_id": "247497"}], [{"original_text": "Everyone involved was competitive and excited.", "album_id": "72157627037920956", "photo_flickr_id": "5866656716", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49499", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone involved was competitive and excited .", "storylet_id": "247498"}], [{"original_text": "There were plenty of trophies, but those who didn't win still had fun.", "album_id": "72157627037920956", "photo_flickr_id": "5866103757", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49499", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were plenty of trophies , but those who did n't win still had fun .", "storylet_id": "247499"}], [{"original_text": "The brochure for the race was interesting. ", "album_id": "72157629808029571", "photo_flickr_id": "6424949257", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49500", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the brochure for the race was interesting .", "storylet_id": "247500"}], [{"original_text": "I saw this ball on the ground and it was very old looking. ", "album_id": "72157629808029571", "photo_flickr_id": "6424950857", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49500", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw this ball on the ground and it was very old looking .", "storylet_id": "247501"}], [{"original_text": "The track was all ready for the race.", "album_id": "72157629808029571", "photo_flickr_id": "6424952299", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49500", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the track was all ready for the race .", "storylet_id": "247502"}], [{"original_text": "The horses were all out practicing.", "album_id": "72157629808029571", "photo_flickr_id": "6424954929", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49500", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the horses were all out practicing .", "storylet_id": "247503"}], [{"original_text": "They were even playing a bit before the race. ", "album_id": "72157629808029571", "photo_flickr_id": "6424957997", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49500", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were even playing a bit before the race .", "storylet_id": "247504"}], [{"original_text": "We practiced for our figure skating performance this week.", "album_id": "72157629808029571", "photo_flickr_id": "6424949257", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49501", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we practiced for our figure skating performance this week .", "storylet_id": "247505"}], [{"original_text": "The moves are very hard to master.", "album_id": "72157629808029571", "photo_flickr_id": "6424952299", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49501", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the moves are very hard to master .", "storylet_id": "247506"}], [{"original_text": "It took us several hours to get this routine down.", "album_id": "72157629808029571", "photo_flickr_id": "6424954929", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49501", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it took us several hours to get this routine down .", "storylet_id": "247507"}], [{"original_text": "We fell many times training.", "album_id": "72157629808029571", "photo_flickr_id": "6424963597", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49501", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we fell many times training .", "storylet_id": "247508"}], [{"original_text": "The end result was worth it and we look forward to the actual performance.", "album_id": "72157629808029571", "photo_flickr_id": "6424965615", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49501", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the end result was worth it and we look forward to the actual performance .", "storylet_id": "247509"}], [{"original_text": "These two love to ice skate.", "album_id": "72157629808029571", "photo_flickr_id": "6424949257", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49502", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these two love to ice skate .", "storylet_id": "247510"}], [{"original_text": "The girl love to do tricks on the ice.", "album_id": "72157629808029571", "photo_flickr_id": "6424950857", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49502", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girl love to do tricks on the ice .", "storylet_id": "247511"}], [{"original_text": "She glides very smootly.", "album_id": "72157629808029571", "photo_flickr_id": "6424952299", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49502", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she glides very smootly .", "storylet_id": "247512"}], [{"original_text": "The couple did a nice performance together.", "album_id": "72157629808029571", "photo_flickr_id": "6424954929", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49502", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple did a nice performance together .", "storylet_id": "247513"}], [{"original_text": "The couple did many tricks and show so much passion through their ice skating. It was a sight to see.", "album_id": "72157629808029571", "photo_flickr_id": "6424957997", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49502", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the couple did many tricks and show so much passion through their ice skating . it was a sight to see .", "storylet_id": "247514"}], [{"original_text": "After the first two contestants finished their performance, Lisa knew she had to try harder.", "album_id": "72157629808029571", "photo_flickr_id": "6424949257", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49503", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after the first two contestants finished their performance , [female] knew she had to try harder .", "storylet_id": "247515"}], [{"original_text": "Lisa in her pink outfit started her first performance with an impressive one foot lap around the ice rink.", "album_id": "72157629808029571", "photo_flickr_id": "6424950857", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49503", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] in her pink outfit started her first performance with an impressive one foot lap around the ice rink .", "storylet_id": "247516"}], [{"original_text": "She then landed in the center of the rink after a fantastic spin and ended her performance.", "album_id": "72157629808029571", "photo_flickr_id": "6424952299", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49503", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she then landed in the center of the rink after a fantastic spin and ended her performance .", "storylet_id": "247517"}], [{"original_text": "Immediately after Lisa's performance the couple from earlier started their second attempt.", "album_id": "72157629808029571", "photo_flickr_id": "6424954929", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49503", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "immediately after [female] 's performance the couple from earlier started their second attempt .", "storylet_id": "247518"}], [{"original_text": "They were very impressive while they held each other and spun around, but even this second performance didn't distress Lisa.", "album_id": "72157629808029571", "photo_flickr_id": "6424957997", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49503", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were very impressive while they held each other and spun around , but even this second performance did n't distress [female] .", "storylet_id": "247519"}], [{"original_text": "A couple prepares for an ice skating dance together.", "album_id": "72157629808029571", "photo_flickr_id": "6424949257", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49504", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple prepares for an ice skating dance together .", "storylet_id": "247520"}], [{"original_text": "First the girl shows off her skills in the rink.", "album_id": "72157629808029571", "photo_flickr_id": "6424950857", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49504", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first the girl shows off her skills in the rink .", "storylet_id": "247521"}], [{"original_text": "Giving the audience a show, she displays her charm.", "album_id": "72157629808029571", "photo_flickr_id": "6424952299", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49504", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "giving the audience a show , she displays her charm .", "storylet_id": "247522"}], [{"original_text": "Now the couple takes the stage and steals the show.", "album_id": "72157629808029571", "photo_flickr_id": "6424954929", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49504", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now the couple takes the stage and steals the show .", "storylet_id": "247523"}], [{"original_text": "They dance together on the ice with ease.", "album_id": "72157629808029571", "photo_flickr_id": "6424957997", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49504", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they dance together on the ice with ease .", "storylet_id": "247524"}], [{"original_text": "Fans watch the fireworks in the distance.", "album_id": "72157625082564869", "photo_flickr_id": "4947113239", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49505", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "fans watch the fireworks in the distance .", "storylet_id": "247525"}], [{"original_text": "Many campers share a tent.", "album_id": "72157625082564869", "photo_flickr_id": "4947113743", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49505", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many campers share a tent .", "storylet_id": "247526"}], [{"original_text": "Friends visit from tent to tent.", "album_id": "72157625082564869", "photo_flickr_id": "4947702810", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49505", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "friends visit from tent to tent .", "storylet_id": "247527"}], [{"original_text": "Darkness has fallen and it's time to rest.", "album_id": "72157625082564869", "photo_flickr_id": "4947114189", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49505", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "darkness has fallen and it 's time to rest .", "storylet_id": "247528"}], [{"original_text": "It's the morning of the big game.", "album_id": "72157625082564869", "photo_flickr_id": "4947703230", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49505", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's the morning of the big game .", "storylet_id": "247529"}], [{"original_text": "The organizers got their tents set up that day.", "album_id": "72157625082564869", "photo_flickr_id": "4947703230", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "49506", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organizers got their tents set up that day .", "storylet_id": "247530"}], [{"original_text": "They planned on what they were going to do.", "album_id": "72157625082564869", "photo_flickr_id": "4947702036", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "49506", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they planned on what they were going to do .", "storylet_id": "247531"}], [{"original_text": "They unpacked all their needed supplies.", "album_id": "72157625082564869", "photo_flickr_id": "4947702928", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "49506", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they unpacked all their needed supplies .", "storylet_id": "247532"}], [{"original_text": "Then they got all the equipment ready to go.", "album_id": "72157625082564869", "photo_flickr_id": "4947701670", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "49506", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they got all the equipment ready to go .", "storylet_id": "247533"}], [{"original_text": "Once it was all set up, and the clock struck 9, their firework display started.", "album_id": "72157625082564869", "photo_flickr_id": "4947113239", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "49506", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once it was all set up , and the clock struck 9 , their firework display started .", "storylet_id": "247534"}], [{"original_text": "Families went camping near the beach and they watched the fireworks.", "album_id": "72157625082564869", "photo_flickr_id": "4947113239", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49507", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "families went camping near the beach and they watched the fireworks .", "storylet_id": "247535"}], [{"original_text": "People ate inside the tent.", "album_id": "72157625082564869", "photo_flickr_id": "4947113743", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49507", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people ate inside the tent .", "storylet_id": "247536"}], [{"original_text": "They also took the time to speak to each other.", "album_id": "72157625082564869", "photo_flickr_id": "4947702810", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49507", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also took the time to speak to each other .", "storylet_id": "247537"}], [{"original_text": "Many families and friends stayed there overnight.", "album_id": "72157625082564869", "photo_flickr_id": "4947114189", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49507", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many families and friends stayed there overnight .", "storylet_id": "247538"}], [{"original_text": "Mostly it was a successful event that went well into the morning.", "album_id": "72157625082564869", "photo_flickr_id": "4947703230", "setting": "last-3-pick-old-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49507", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mostly it was a successful event that went well into the morning .", "storylet_id": "247539"}], [{"original_text": "For fourth of July weekend we decided to take a camping trip and watch the stars and fireworks from our tent.", "album_id": "72157625082564869", "photo_flickr_id": "4947113239", "setting": "last-3-pick-old-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "49508", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for fourth of july weekend we decided to take a camping trip and watch the stars and fireworks from our tent .", "storylet_id": "247540"}], [{"original_text": "We had so much fun talking we almost missed the finale.", "album_id": "72157625082564869", "photo_flickr_id": "4947113743", "setting": "last-3-pick-old-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "49508", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had so much fun talking we almost missed the finale .", "storylet_id": "247541"}], [{"original_text": "We talked a bit about the show and also about the concert that would be happening in the same place the next day. ", "album_id": "72157625082564869", "photo_flickr_id": "4947702810", "setting": "last-3-pick-old-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "49508", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we talked a bit about the show and also about the concert that would be happening in the same place the next day .", "storylet_id": "247542"}], [{"original_text": "After the show and talking, we all turned in and called it a night. ", "album_id": "72157625082564869", "photo_flickr_id": "4947114189", "setting": "last-3-pick-old-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "49508", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the show and talking , we all turned in and called it a night .", "storylet_id": "247543"}], [{"original_text": "We woke up the next morning to find that even more people had set up camp overnight !it was like a real festival.", "album_id": "72157625082564869", "photo_flickr_id": "4947703230", "setting": "last-3-pick-old-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "49508", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we woke up the next morning to find that even more people had set up camp overnight ! it was like a real festival .", "storylet_id": "247544"}], [{"original_text": "Fireworks made for a relaxing evening, after the crowds started growing.", "album_id": "72157625082564869", "photo_flickr_id": "4947113239", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "49509", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "fireworks made for a relaxing evening , after the crowds started growing .", "storylet_id": "247545"}], [{"original_text": "We tried hanging at the tent for the most part.", "album_id": "72157625082564869", "photo_flickr_id": "4947113743", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "49509", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we tried hanging at the tent for the most part .", "storylet_id": "247546"}], [{"original_text": "Most fans walked around chatting to pass the time.", "album_id": "72157625082564869", "photo_flickr_id": "4947702810", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "49509", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most fans walked around chatting to pass the time .", "storylet_id": "247547"}], [{"original_text": "I had plenty of time to drop back and get a good pick, of our spot in line.", "album_id": "72157625082564869", "photo_flickr_id": "4947114189", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "49509", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had plenty of time to drop back and get a good pick , of our spot in line .", "storylet_id": "247548"}], [{"original_text": "Even had so much time I was able to climb up and get an areal view.", "album_id": "72157625082564869", "photo_flickr_id": "4947703230", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "49509", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even had so much time i was able to climb up and get an areal view .", "storylet_id": "247549"}], [{"original_text": "The fans arrived at the basketball game.", "album_id": "72157625082566321", "photo_flickr_id": "4947668254", "setting": "first-2-pick-and-tell", "worker_id": "VF9K3AOXELQX9TJ", "story_id": "49510", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fans arrived at the basketball game .", "storylet_id": "247550"}], [{"original_text": "The dance team performed on the court.", "album_id": "72157625082566321", "photo_flickr_id": "4947079783", "setting": "first-2-pick-and-tell", "worker_id": "VF9K3AOXELQX9TJ", "story_id": "49510", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dance team performed on the court .", "storylet_id": "247551"}], [{"original_text": "Then the marching band played songs.", "album_id": "72157625082566321", "photo_flickr_id": "4947079919", "setting": "first-2-pick-and-tell", "worker_id": "VF9K3AOXELQX9TJ", "story_id": "49510", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the marching band played songs .", "storylet_id": "247552"}], [{"original_text": "The cheerleaders pumped up the crowd.", "album_id": "72157625082566321", "photo_flickr_id": "4947668638", "setting": "first-2-pick-and-tell", "worker_id": "VF9K3AOXELQX9TJ", "story_id": "49510", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cheerleaders pumped up the crowd .", "storylet_id": "247553"}], [{"original_text": "Joe Paterno offered words before the game.", "album_id": "72157625082566321", "photo_flickr_id": "4947080653", "setting": "first-2-pick-and-tell", "worker_id": "VF9K3AOXELQX9TJ", "story_id": "49510", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] paterno offered words before the game .", "storylet_id": "247554"}], [{"original_text": "Fans show their support in the stands.", "album_id": "72157625082566321", "photo_flickr_id": "4947668254", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49511", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "fans show their support in the stands .", "storylet_id": "247555"}], [{"original_text": "Dancers rally the fans.", "album_id": "72157625082566321", "photo_flickr_id": "4947079783", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49511", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dancers rally the fans .", "storylet_id": "247556"}], [{"original_text": "The band warms up the crowd.", "album_id": "72157625082566321", "photo_flickr_id": "4947079919", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49511", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band warms up the crowd .", "storylet_id": "247557"}], [{"original_text": "Cheerleaders lead the fans in cheering.", "album_id": "72157625082566321", "photo_flickr_id": "4947668638", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49511", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cheerleaders lead the fans in cheering .", "storylet_id": "247558"}], [{"original_text": "Jo Pa is on the court.", "album_id": "72157625082566321", "photo_flickr_id": "4947080653", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49511", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] pa is on the court .", "storylet_id": "247559"}], [{"original_text": "The school held a pep rally before the homecoming game.", "album_id": "72157625082566321", "photo_flickr_id": "4947668254", "setting": "last-3-pick-old-and-tell", "worker_id": "8UJ07C6MKEF2498", "story_id": "49512", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the school held a pep rally before the homecoming game .", "storylet_id": "247560"}], [{"original_text": "The dance squad's performance included high kicks.", "album_id": "72157625082566321", "photo_flickr_id": "4947079783", "setting": "last-3-pick-old-and-tell", "worker_id": "8UJ07C6MKEF2498", "story_id": "49512", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dance squad 's performance included high kicks .", "storylet_id": "247561"}], [{"original_text": "The band also played at the pep rally.", "album_id": "72157625082566321", "photo_flickr_id": "4947079919", "setting": "last-3-pick-old-and-tell", "worker_id": "8UJ07C6MKEF2498", "story_id": "49512", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band also played at the pep rally .", "storylet_id": "247562"}], [{"original_text": "The cheerleaders were also there to motivate the crowd.", "album_id": "72157625082566321", "photo_flickr_id": "4947668638", "setting": "last-3-pick-old-and-tell", "worker_id": "8UJ07C6MKEF2498", "story_id": "49512", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cheerleaders were also there to motivate the crowd .", "storylet_id": "247563"}], [{"original_text": "The coach spoke at the pep rally and predicted that the team would win the homecoming game.", "album_id": "72157625082566321", "photo_flickr_id": "4947080653", "setting": "last-3-pick-old-and-tell", "worker_id": "8UJ07C6MKEF2498", "story_id": "49512", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the coach spoke at the pep rally and predicted that the team would win the homecoming game .", "storylet_id": "247564"}], [{"original_text": "The audience roared with excitement!", "album_id": "72157625082566321", "photo_flickr_id": "4947668254", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49513", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the audience roared with excitement !", "storylet_id": "247565"}], [{"original_text": "The dance team did a performance, ", "album_id": "72157625082566321", "photo_flickr_id": "4947079783", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49513", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dance team did a performance ,", "storylet_id": "247566"}], [{"original_text": "then the band played a song.", "album_id": "72157625082566321", "photo_flickr_id": "4947079919", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49513", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the band played a song .", "storylet_id": "247567"}], [{"original_text": "Finally, the cheerleaders all led us in welcoming our team to the court!", "album_id": "72157625082566321", "photo_flickr_id": "4947668638", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49513", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally , the cheerleaders all led us in welcoming our team to the court !", "storylet_id": "247568"}], [{"original_text": "The coach was so excited, he couldn't contain himself!", "album_id": "72157625082566321", "photo_flickr_id": "4947080653", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49513", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the coach was so excited , he could n't contain himself !", "storylet_id": "247569"}], [{"original_text": "Wilford High had never won a game.", "album_id": "72157625082566321", "photo_flickr_id": "4947668254", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "49514", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "organization organization had never won a game .", "storylet_id": "247570"}], [{"original_text": "So they decided to engage in a group martial arts tournament.", "album_id": "72157625082566321", "photo_flickr_id": "4947079783", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "49514", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so they decided to engage in a group martial arts tournament .", "storylet_id": "247571"}], [{"original_text": "They trained night and day.", "album_id": "72157625082566321", "photo_flickr_id": "4947079919", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "49514", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they trained night and day .", "storylet_id": "247572"}], [{"original_text": "Even the cheerleaders took part.", "album_id": "72157625082566321", "photo_flickr_id": "4947668638", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "49514", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the cheerleaders took part .", "storylet_id": "247573"}], [{"original_text": "In the end they broke records and won the heart of everyone.", "album_id": "72157625082566321", "photo_flickr_id": "4947080653", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "49514", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end they broke records and won the heart of everyone .", "storylet_id": "247574"}], [{"original_text": "I went to see my team, Penn St. play for the title", "album_id": "72157625207407464", "photo_flickr_id": "4946708975", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "49515", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to see my team , organization organization play for the title", "storylet_id": "247575"}], [{"original_text": "We have great athletes who can really jump. ", "album_id": "72157625207407464", "photo_flickr_id": "4946710757", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "49515", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we have great athletes who can really jump .", "storylet_id": "247576"}], [{"original_text": "The game was back and forth for much of the game. ", "album_id": "72157625207407464", "photo_flickr_id": "4947302306", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "49515", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the game was back and forth for much of the game .", "storylet_id": "247577"}], [{"original_text": "We were up with the game almost over. ", "album_id": "72157625207407464", "photo_flickr_id": "4947302486", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "49515", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were up with the game almost over .", "storylet_id": "247578"}], [{"original_text": "We won the game and celebrated victory. ", "album_id": "72157625207407464", "photo_flickr_id": "4946713243", "setting": "first-2-pick-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "49515", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we won the game and celebrated victory .", "storylet_id": "247579"}], [{"original_text": "Marcus slam dunks another one!", "album_id": "72157625207407464", "photo_flickr_id": "4946708975", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49516", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] slam dunks another one !", "storylet_id": "247580"}], [{"original_text": "Later on in the game Marcus tries to retain control of the ball.", "album_id": "72157625207407464", "photo_flickr_id": "4946710305", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49516", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "later on in the game [male] tries to retain control of the ball .", "storylet_id": "247581"}], [{"original_text": "He goes up for anther slam dunk.", "album_id": "72157625207407464", "photo_flickr_id": "4946710757", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49516", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he goes up for anther slam dunk .", "storylet_id": "247582"}], [{"original_text": "Sam yells \"nothing but net!\".", "album_id": "72157625207407464", "photo_flickr_id": "4947301910", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49516", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] yells `` nothing but net ! `` .", "storylet_id": "247583"}], [{"original_text": "They win the game and continue on to the championship.", "album_id": "72157625207407464", "photo_flickr_id": "4946713243", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49516", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they win the game and continue on to the championship .", "storylet_id": "247584"}], [{"original_text": "The basketball teams were very physical during the playoff game.", "album_id": "72157625207407464", "photo_flickr_id": "4946708975", "setting": "last-3-pick-old-and-tell", "worker_id": "8UJ07C6MKEF2498", "story_id": "49517", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the basketball teams were very physical during the playoff game .", "storylet_id": "247585"}], [{"original_text": "The point guard for the home team made a slam dunk.", "album_id": "72157625207407464", "photo_flickr_id": "4946710757", "setting": "last-3-pick-old-and-tell", "worker_id": "8UJ07C6MKEF2498", "story_id": "49517", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the point guard for the home team made a slam dunk .", "storylet_id": "247586"}], [{"original_text": "After that another player from the home team made a 3 point shot. ", "album_id": "72157625207407464", "photo_flickr_id": "4947302306", "setting": "last-3-pick-old-and-tell", "worker_id": "8UJ07C6MKEF2498", "story_id": "49517", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that another player from the home team made a 3 point shot .", "storylet_id": "247587"}], [{"original_text": "The home team celebrated the incredible shot.", "album_id": "72157625207407464", "photo_flickr_id": "4947302486", "setting": "last-3-pick-old-and-tell", "worker_id": "8UJ07C6MKEF2498", "story_id": "49517", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the home team celebrated the incredible shot .", "storylet_id": "247588"}], [{"original_text": "The fans went wild and celebrated after the home team won.", "album_id": "72157625207407464", "photo_flickr_id": "4946713243", "setting": "last-3-pick-old-and-tell", "worker_id": "8UJ07C6MKEF2498", "story_id": "49517", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fans went wild and celebrated after the home team won .", "storylet_id": "247589"}], [{"original_text": "The day had finally entered it's second half.", "album_id": "72157625207407464", "photo_flickr_id": "4946708975", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "49518", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day had finally entered it 's second half .", "storylet_id": "247590"}], [{"original_text": "Everyone was on pins and needles.", "album_id": "72157625207407464", "photo_flickr_id": "4946710757", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "49518", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was on pins and needles .", "storylet_id": "247591"}], [{"original_text": "The game was so close through every second of the game.", "album_id": "72157625207407464", "photo_flickr_id": "4947302306", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "49518", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the game was so close through every second of the game .", "storylet_id": "247592"}], [{"original_text": "But finally the momentum started to shift.", "album_id": "72157625207407464", "photo_flickr_id": "4947302486", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "49518", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but finally the momentum started to shift .", "storylet_id": "247593"}], [{"original_text": "And one team managed to come out on top.", "album_id": "72157625207407464", "photo_flickr_id": "4946713243", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "49518", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and one team managed to come out on top .", "storylet_id": "247594"}], [{"original_text": "The basketball player went for a slam dunk.", "album_id": "72157625207407464", "photo_flickr_id": "4946708975", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49519", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the basketball player went for a slam dunk .", "storylet_id": "247595"}], [{"original_text": "He missed but still managed to catch the ball.", "album_id": "72157625207407464", "photo_flickr_id": "4946710305", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49519", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he missed but still managed to catch the ball .", "storylet_id": "247596"}], [{"original_text": "Then he went for another slam dunk.", "album_id": "72157625207407464", "photo_flickr_id": "4946710757", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49519", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then he went for another slam dunk .", "storylet_id": "247597"}], [{"original_text": "The ball went into the hoop.", "album_id": "72157625207407464", "photo_flickr_id": "4947301910", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49519", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ball went into the hoop .", "storylet_id": "247598"}], [{"original_text": "After that the crowd cheered.", "album_id": "72157625207407464", "photo_flickr_id": "4946713243", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49519", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that the crowd cheered .", "storylet_id": "247599"}], [{"original_text": "Autumn can only mean one thing, football!", "album_id": "72157625207413126", "photo_flickr_id": "4946383863", "setting": "first-2-pick-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "49520", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] can only mean one thing , football !", "storylet_id": "247600"}], [{"original_text": "The bus is loaded and ready to go.", "album_id": "72157625207413126", "photo_flickr_id": "4946970520", "setting": "first-2-pick-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "49520", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bus is loaded and ready to go .", "storylet_id": "247601"}], [{"original_text": "The coach is excited and expects a great season.", "album_id": "72157625207413126", "photo_flickr_id": "4946970348", "setting": "first-2-pick-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "49520", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the coach is excited and expects a great season .", "storylet_id": "247602"}], [{"original_text": "Sportscasters line up and hand out predictions for the upcoming season.", "album_id": "72157625207413126", "photo_flickr_id": "4946381465", "setting": "first-2-pick-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "49520", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sportscasters line up and hand out predictions for the upcoming season .", "storylet_id": "247603"}], [{"original_text": "But most important of all are the players. They've been practicing all year for this moment.", "album_id": "72157625207413126", "photo_flickr_id": "4946382427", "setting": "first-2-pick-and-tell", "worker_id": "JGYLN166T3XN1LS", "story_id": "49520", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but most important of all are the players . they 've been practicing all year for this moment .", "storylet_id": "247604"}], [{"original_text": "I got VIP tickets to see the Superbowl.", "album_id": "72157625207413126", "photo_flickr_id": "4946383863", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "49521", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got vip tickets to see the superbowl .", "storylet_id": "247605"}], [{"original_text": " They arrived in a luxurious coach bus.", "album_id": "72157625207413126", "photo_flickr_id": "4946970520", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "49521", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they arrived in a luxurious coach bus .", "storylet_id": "247606"}], [{"original_text": "I got a chance to have a meet and greet with the coach of my favorite team.", "album_id": "72157625207413126", "photo_flickr_id": "4946970348", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "49521", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got a chance to have a meet and greet with the coach of my favorite team .", "storylet_id": "247607"}], [{"original_text": "I also got to meet a few of the players.", "album_id": "72157625207413126", "photo_flickr_id": "4946383447", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "49521", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also got to meet a few of the players .", "storylet_id": "247608"}], [{"original_text": "It wasn't until I saw the number 5 in my heart started to race, he was my favorite player of all time!", "album_id": "72157625207413126", "photo_flickr_id": "4946971088", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "49521", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was n't until i saw the number 5 in my heart started to race , he was my favorite player of all time !", "storylet_id": "247609"}], [{"original_text": "My dream of being on the football field finally came true.", "album_id": "72157625207413126", "photo_flickr_id": "4946383863", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49522", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my dream of being on the football field finally came true .", "storylet_id": "247610"}], [{"original_text": "I got to have a tour if the players bus.", "album_id": "72157625207413126", "photo_flickr_id": "4946970520", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49522", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got to have a tour if the players bus .", "storylet_id": "247611"}], [{"original_text": "The coach gave an awesome speech.", "album_id": "72157625207413126", "photo_flickr_id": "4946970348", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49522", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the coach gave an awesome speech .", "storylet_id": "247612"}], [{"original_text": "I watched as they did interviews and got to see behind the scenes.", "album_id": "72157625207413126", "photo_flickr_id": "4946381465", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49522", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i watched as they did interviews and got to see behind the scenes .", "storylet_id": "247613"}], [{"original_text": "But the best part was meeting all of the players.", "album_id": "72157625207413126", "photo_flickr_id": "4946382427", "setting": "last-3-pick-old-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49522", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the best part was meeting all of the players .", "storylet_id": "247614"}], [{"original_text": "Football games draw thousands of fans every weekend.", "album_id": "72157625207413126", "photo_flickr_id": "4946383863", "setting": "last-3-pick-old-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "49523", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "football games draw thousands of fans every weekend .", "storylet_id": "247615"}], [{"original_text": "Players are greeted with enthusiasm. ", "album_id": "72157625207413126", "photo_flickr_id": "4946970520", "setting": "last-3-pick-old-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "49523", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "players are greeted with enthusiasm .", "storylet_id": "247616"}], [{"original_text": "Coaches do their best to spread team spirit.", "album_id": "72157625207413126", "photo_flickr_id": "4946970348", "setting": "last-3-pick-old-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "49523", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "coaches do their best to spread team spirit .", "storylet_id": "247617"}], [{"original_text": "The media gather to discuss the games before they start.", "album_id": "72157625207413126", "photo_flickr_id": "4946381465", "setting": "last-3-pick-old-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "49523", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the media gather to discuss the games before they start .", "storylet_id": "247618"}], [{"original_text": "Teams make their fans happy by providing team photos. ", "album_id": "72157625207413126", "photo_flickr_id": "4946382427", "setting": "last-3-pick-old-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "49523", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "teams make their fans happy by providing team photos .", "storylet_id": "247619"}], [{"original_text": "The stadium was ominous as the playoffs loomed.", "album_id": "72157625207413126", "photo_flickr_id": "4946383863", "setting": "last-3-pick-old-and-tell", "worker_id": "83E3VVCVQ2O33YA", "story_id": "49524", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stadium was ominous as the playoffs loomed .", "storylet_id": "247620"}], [{"original_text": "The team arrived to an empty stadium.", "album_id": "72157625207413126", "photo_flickr_id": "4946970520", "setting": "last-3-pick-old-and-tell", "worker_id": "83E3VVCVQ2O33YA", "story_id": "49524", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the team arrived to an empty stadium .", "storylet_id": "247621"}], [{"original_text": "Unfortunately, the opposition's coach was attempting to throw them off guard.", "album_id": "72157625207413126", "photo_flickr_id": "4946970348", "setting": "last-3-pick-old-and-tell", "worker_id": "83E3VVCVQ2O33YA", "story_id": "49524", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "unfortunately , the opposition 's coach was attempting to throw them off guard .", "storylet_id": "247622"}], [{"original_text": "The other team was rallying across the street from the stadium.", "album_id": "72157625207413126", "photo_flickr_id": "4946383447", "setting": "last-3-pick-old-and-tell", "worker_id": "83E3VVCVQ2O33YA", "story_id": "49524", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the other team was rallying across the street from the stadium .", "storylet_id": "247623"}], [{"original_text": "Later, during a post game interview, Largenberger said, \"They got us this time, but we will meet again!\"", "album_id": "72157625207413126", "photo_flickr_id": "4946971088", "setting": "last-3-pick-old-and-tell", "worker_id": "83E3VVCVQ2O33YA", "story_id": "49524", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later , during a post game interview , largenberger said , `` they got us this time , but we will meet again ! ''", "storylet_id": "247624"}], [{"original_text": "Our schools gymnastic meet was this week.", "album_id": "72157625207418354", "photo_flickr_id": "4946079883", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49525", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our schools gymnastic meet was this week .", "storylet_id": "247625"}], [{"original_text": "Many people were present and had a great time.", "album_id": "72157625207418354", "photo_flickr_id": "4946081337", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49525", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people were present and had a great time .", "storylet_id": "247626"}], [{"original_text": "Everyone showed their best moves.", "album_id": "72157625207418354", "photo_flickr_id": "4946081945", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49525", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone showed their best moves .", "storylet_id": "247627"}], [{"original_text": "It was an event for the whole family, where we raised funds for the school.", "album_id": "72157625207418354", "photo_flickr_id": "4946671908", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49525", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was an event for the whole family , where we raised funds for the school .", "storylet_id": "247628"}], [{"original_text": "The event was a real success and we plan to do it again soon.", "album_id": "72157625207418354", "photo_flickr_id": "4946673512", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49525", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the event was a real success and we plan to do it again soon .", "storylet_id": "247629"}], [{"original_text": "Today we went to the gymnastics competition ", "album_id": "72157625207418354", "photo_flickr_id": "4946079883", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49526", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to the gymnastics competition", "storylet_id": "247630"}], [{"original_text": "There were so many different age levels there ", "album_id": "72157625207418354", "photo_flickr_id": "4946668592", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49526", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many different age levels there", "storylet_id": "247631"}], [{"original_text": "We did tumbles and splits and lots of other moves ", "album_id": "72157625207418354", "photo_flickr_id": "4946081945", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49526", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we did tumbles and splits and lots of other moves", "storylet_id": "247632"}], [{"original_text": "Afterwards the parents of smaller children posed with the little ones for photos ", "album_id": "72157625207418354", "photo_flickr_id": "4946671908", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49526", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards the parents of smaller children posed with the little ones for photos", "storylet_id": "247633"}], [{"original_text": "What a great day it was to celebrate", "album_id": "72157625207418354", "photo_flickr_id": "4946673512", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49526", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what a great day it was to celebrate", "storylet_id": "247634"}], [{"original_text": "During the charity athletics event, people from all over the neighborhood showed up.", "album_id": "72157625207418354", "photo_flickr_id": "4946079883", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49527", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during the charity athletics event , people from all over the neighborhood showed up .", "storylet_id": "247635"}], [{"original_text": "Some children who were a little too young to do the athletics, were given water shooters to help cool off some of the professionals. They just needed to be careful where they shoot.", "album_id": "72157625207418354", "photo_flickr_id": "4946668592", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49527", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some children who were a little too young to do the athletics , were given water shooters to help cool off some of the professionals . they just needed to be careful where they shoot .", "storylet_id": "247636"}], [{"original_text": "One of the best athletes came on stage and showed the kids how impressive being healthy and fit can be.", "album_id": "72157625207418354", "photo_flickr_id": "4946081945", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49527", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the best athletes came on stage and showed the kids how impressive being healthy and fit can be .", "storylet_id": "247637"}], [{"original_text": "After multiple presentations, the coordinators came on stage to announce how beneficial the entire event had been so far.", "album_id": "72157625207418354", "photo_flickr_id": "4946671908", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49527", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after multiple presentations , the coordinators came on stage to announce how beneficial the entire event had been so far .", "storylet_id": "247638"}], [{"original_text": "Children, athletes, and parents all came on stage and held up numbered cards that showed just how much money was earned at the charity event and the crowd was very excited.", "album_id": "72157625207418354", "photo_flickr_id": "4946673512", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49527", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "children , athletes , and parents all came on stage and held up numbered cards that showed just how much money was earned at the charity event and the crowd was very excited .", "storylet_id": "247639"}], [{"original_text": "There were many people in the arena.", "album_id": "72157625207418354", "photo_flickr_id": "4946079883", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49528", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many people in the arena .", "storylet_id": "247640"}], [{"original_text": "Kids and adults were having fun together.", "album_id": "72157625207418354", "photo_flickr_id": "4946668592", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49528", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "kids and adults were having fun together .", "storylet_id": "247641"}], [{"original_text": "There were gymnasts who were showing off their skills.", "album_id": "72157625207418354", "photo_flickr_id": "4946081945", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49528", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were gymnasts who were showing off their skills .", "storylet_id": "247642"}], [{"original_text": "Guest speakers talked about their personal experiences.", "album_id": "72157625207418354", "photo_flickr_id": "4946671908", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49528", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "guest speakers talked about their personal experiences .", "storylet_id": "247643"}], [{"original_text": "United together, people celebrated their cause.", "album_id": "72157625207418354", "photo_flickr_id": "4946673512", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49528", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "united together , people celebrated their cause .", "storylet_id": "247644"}], [{"original_text": "The Telethon this year brought in thousands because of the new talent.", "album_id": "72157625207418354", "photo_flickr_id": "4946079883", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "49529", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the telethon this year brought in thousands because of the new talent .", "storylet_id": "247645"}], [{"original_text": "Interacting with the audience.", "album_id": "72157625207418354", "photo_flickr_id": "4946081337", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "49529", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "interacting with the audience .", "storylet_id": "247646"}], [{"original_text": "Off the wall performances were given.", "album_id": "72157625207418354", "photo_flickr_id": "4946081945", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "49529", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "off the wall performances were given .", "storylet_id": "247647"}], [{"original_text": "Singing for hope.", "album_id": "72157625207418354", "photo_flickr_id": "4946671908", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "49529", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "singing for hope .", "storylet_id": "247648"}], [{"original_text": "Sweet Success this year!", "album_id": "72157625207418354", "photo_flickr_id": "4946673512", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "49529", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sweet success this year !", "storylet_id": "247649"}], [{"original_text": "Kelly and Christine love to hang out together.", "album_id": "801340", "photo_flickr_id": "36139829", "setting": "first-2-pick-and-tell", "worker_id": "Z8AP99DPCPVW96P", "story_id": "49530", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [female] love to hang out together .", "storylet_id": "247650"}], [{"original_text": "Every Saturday night they go to the Springfield Mall. This Saturday they went shopping for a costume party.", "album_id": "801340", "photo_flickr_id": "36138805", "setting": "first-2-pick-and-tell", "worker_id": "Z8AP99DPCPVW96P", "story_id": "49530", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "every saturday night they go to the location location . this saturday they went shopping for a costume party .", "storylet_id": "247651"}], [{"original_text": "There were overwhelmed by all the choices; so they walked around the store to get some ideas.", "album_id": "801340", "photo_flickr_id": "36139271", "setting": "first-2-pick-and-tell", "worker_id": "Z8AP99DPCPVW96P", "story_id": "49530", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were overwhelmed by all the choices ; so they walked around the store to get some ideas .", "storylet_id": "247652"}], [{"original_text": "They were playing around in the the Harry Potter section when they ran in to their friend, Bill.", "album_id": "801340", "photo_flickr_id": "36140543", "setting": "first-2-pick-and-tell", "worker_id": "Z8AP99DPCPVW96P", "story_id": "49530", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were playing around in the the [male] potter section when they ran in to their friend , [male] .", "storylet_id": "247653"}], [{"original_text": "He said that he was going to the party as Harry Potter. Christine decided that she would go as Hermione and Kelly was going to give everyone a laugh by dressing as Ron.", "album_id": "801340", "photo_flickr_id": "36140199", "setting": "first-2-pick-and-tell", "worker_id": "Z8AP99DPCPVW96P", "story_id": "49530", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he said that he was going to the party as [male] potter . [female] decided that she would go as hermione and [female] was going to give everyone a laugh by dressing as [male] .", "storylet_id": "247654"}], [{"original_text": "The crowd inside the mall was huge that day.", "album_id": "801340", "photo_flickr_id": "36138805", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49531", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowd inside the mall was huge that day .", "storylet_id": "247655"}], [{"original_text": "It was very easy to get lost in the madness.", "album_id": "801340", "photo_flickr_id": "36139977", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49531", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was very easy to get lost in the madness .", "storylet_id": "247656"}], [{"original_text": "We met all sorts of strange people.", "album_id": "801340", "photo_flickr_id": "36140199", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49531", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we met all sorts of strange people .", "storylet_id": "247657"}], [{"original_text": "We even got some temporary tattoos.", "album_id": "801340", "photo_flickr_id": "36140543", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49531", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even got some temporary tattoos .", "storylet_id": "247658"}], [{"original_text": "We checked out and left the mob of people. ", "album_id": "801340", "photo_flickr_id": "36140676", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "49531", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we checked out and left the mob of people .", "storylet_id": "247659"}], [{"original_text": "Janet and Rain loved shopping.", "album_id": "801340", "photo_flickr_id": "36139829", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49532", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and rain loved shopping .", "storylet_id": "247660"}], [{"original_text": "They loved the crowds and the deals at the local mall.", "album_id": "801340", "photo_flickr_id": "36138805", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49532", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they loved the crowds and the deals at the local mall .", "storylet_id": "247661"}], [{"original_text": "Rain wanted to get some bracelets.", "album_id": "801340", "photo_flickr_id": "36139271", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49532", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "rain wanted to get some bracelets .", "storylet_id": "247662"}], [{"original_text": "They both tried on some silly glasses for fun.", "album_id": "801340", "photo_flickr_id": "36140543", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49532", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they both tried on some silly glasses for fun .", "storylet_id": "247663"}], [{"original_text": "Rain's brother Todd tried the same glasses on and bought them.", "album_id": "801340", "photo_flickr_id": "36140199", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49532", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "rain 's brother [male] tried the same glasses on and bought them .", "storylet_id": "247664"}], [{"original_text": "Best friend attending the harry potter convention.", "album_id": "801340", "photo_flickr_id": "36139829", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49533", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "best friend attending the harry potter convention .", "storylet_id": "247665"}], [{"original_text": "The huge crowd interacting with one another. ", "album_id": "801340", "photo_flickr_id": "36138805", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49533", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the huge crowd interacting with one another .", "storylet_id": "247666"}], [{"original_text": "Checking out books.", "album_id": "801340", "photo_flickr_id": "36139271", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49533", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "checking out books .", "storylet_id": "247667"}], [{"original_text": "And getting tattoos.", "album_id": "801340", "photo_flickr_id": "36140543", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49533", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and getting tattoos .", "storylet_id": "247668"}], [{"original_text": "Wearing Harry Potter's glasses.", "album_id": "801340", "photo_flickr_id": "36140199", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49533", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "wearing [male] potter 's glasses .", "storylet_id": "247669"}], [{"original_text": "Two ladies are enjoying the mall.", "album_id": "801340", "photo_flickr_id": "36139829", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49534", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two ladies are enjoying the mall .", "storylet_id": "247670"}], [{"original_text": "The mall has lots of people.", "album_id": "801340", "photo_flickr_id": "36138805", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49534", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the mall has lots of people .", "storylet_id": "247671"}], [{"original_text": "The ladies are looking for clothes.", "album_id": "801340", "photo_flickr_id": "36139271", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49534", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ladies are looking for clothes .", "storylet_id": "247672"}], [{"original_text": "The ladies get fake tattoos.", "album_id": "801340", "photo_flickr_id": "36140543", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49534", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ladies get fake tattoos .", "storylet_id": "247673"}], [{"original_text": "The man is trying on glasses.", "album_id": "801340", "photo_flickr_id": "36140199", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49534", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the man is trying on glasses .", "storylet_id": "247674"}], [{"original_text": "Today was the big day.", "album_id": "72057594128484139", "photo_flickr_id": "142408086", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49535", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the big day .", "storylet_id": "247675"}], [{"original_text": "We got dressed up.", "album_id": "72057594128484139", "photo_flickr_id": "142408389", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49535", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got dressed up .", "storylet_id": "247676"}], [{"original_text": "Then went out on the town.", "album_id": "72057594128484139", "photo_flickr_id": "142408540", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49535", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then went out on the town .", "storylet_id": "247677"}], [{"original_text": "There weren't short on drinks.", "album_id": "72057594128484139", "photo_flickr_id": "142408647", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49535", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were n't short on drinks .", "storylet_id": "247678"}], [{"original_text": "But they were short on skirts!", "album_id": "72057594128484139", "photo_flickr_id": "142409086", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49535", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but they were short on skirts !", "storylet_id": "247679"}], [{"original_text": "It was raining when we headed out to the game.", "album_id": "72057594128484139", "photo_flickr_id": "142408540", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49536", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was raining when we headed out to the game .", "storylet_id": "247680"}], [{"original_text": "We saw some of the performers when we got to the stadium.", "album_id": "72057594128484139", "photo_flickr_id": "142409086", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49536", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw some of the performers when we got to the stadium .", "storylet_id": "247681"}], [{"original_text": "It was easy to get a drink before taking our seats.", "album_id": "72057594128484139", "photo_flickr_id": "142408647", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49536", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was easy to get a drink before taking our seats .", "storylet_id": "247682"}], [{"original_text": "We could get snacks and drinks from the people in the stands, too.", "album_id": "72057594128484139", "photo_flickr_id": "142409602", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49536", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we could get snacks and drinks from the people in the stands , too .", "storylet_id": "247683"}], [{"original_text": "We had a really great view of the game!", "album_id": "72057594128484139", "photo_flickr_id": "142409200", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49536", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a really great view of the game !", "storylet_id": "247684"}], [{"original_text": "Last weekend was Home Coming weekend for our school.", "album_id": "72057594128484139", "photo_flickr_id": "142408086", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49537", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last weekend was home coming weekend for our school .", "storylet_id": "247685"}], [{"original_text": "It was the weekend were all the Alumni came to watch the games.", "album_id": "72057594128484139", "photo_flickr_id": "142408389", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49537", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was the weekend were all the alumni came to watch the games .", "storylet_id": "247686"}], [{"original_text": "Everyone gathered for the reunion.", "album_id": "72057594128484139", "photo_flickr_id": "142408540", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49537", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone gathered for the reunion .", "storylet_id": "247687"}], [{"original_text": "They had a party with drinks and food afterwards.", "album_id": "72057594128484139", "photo_flickr_id": "142408647", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49537", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had a party with drinks and food afterwards .", "storylet_id": "247688"}], [{"original_text": "Everyone was so happy to see each other again.", "album_id": "72057594128484139", "photo_flickr_id": "142409086", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "49537", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was so happy to see each other again .", "storylet_id": "247689"}], [{"original_text": "We took a trip to Japan", "album_id": "72057594128484139", "photo_flickr_id": "142408540", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49538", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to location", "storylet_id": "247690"}], [{"original_text": "While there, we saw a ball game.", "album_id": "72057594128484139", "photo_flickr_id": "142409086", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49538", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while there , we saw a ball game .", "storylet_id": "247691"}], [{"original_text": "We bought some beverages before heading to our seats.", "album_id": "72057594128484139", "photo_flickr_id": "142408647", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49538", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we bought some beverages before heading to our seats .", "storylet_id": "247692"}], [{"original_text": "Once in our seats, we saw some interesting fans!", "album_id": "72057594128484139", "photo_flickr_id": "142409602", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49538", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once in our seats , we saw some interesting fans !", "storylet_id": "247693"}], [{"original_text": "Finally, the ball game started and we could cheer for the local team.", "album_id": "72057594128484139", "photo_flickr_id": "142409200", "setting": "last-3-pick-old-and-tell", "worker_id": "AN06N0LC7ARSTN1", "story_id": "49538", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , the ball game started and we could cheer for the local team .", "storylet_id": "247694"}], [{"original_text": "A group of students gathered together in the building.", "album_id": "72057594128484139", "photo_flickr_id": "142408086", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49539", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of students gathered together in the building .", "storylet_id": "247695"}], [{"original_text": "It is comicon and everyone is very excited.", "album_id": "72057594128484139", "photo_flickr_id": "142408389", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49539", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is comicon and everyone is very excited .", "storylet_id": "247696"}], [{"original_text": "It is rainy and dreary outside.", "album_id": "72057594128484139", "photo_flickr_id": "142408540", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49539", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is rainy and dreary outside .", "storylet_id": "247697"}], [{"original_text": "The staff quickly makes food and drinks for the people who are there.", "album_id": "72057594128484139", "photo_flickr_id": "142408647", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49539", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the staff quickly makes food and drinks for the people who are there .", "storylet_id": "247698"}], [{"original_text": "Two girls are dressed as the same character.", "album_id": "72057594128484139", "photo_flickr_id": "142409086", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49539", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "two girls are dressed as the same character .", "storylet_id": "247699"}], [{"original_text": "The sky was starting to look a little gray.", "album_id": "72157594178913581", "photo_flickr_id": "176018508", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49540", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sky was starting to look a little gray .", "storylet_id": "247700"}], [{"original_text": "They all stood around looking at the sky.", "album_id": "72157594178913581", "photo_flickr_id": "176018511", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49540", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all stood around looking at the sky .", "storylet_id": "247701"}], [{"original_text": "They decided to play anyways.", "album_id": "72157594178913581", "photo_flickr_id": "176018512", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49540", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they decided to play anyways .", "storylet_id": "247702"}], [{"original_text": "The game was in full force and the sky was clearing.", "album_id": "72157594178913581", "photo_flickr_id": "176018513", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49540", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the game was in full force and the sky was clearing .", "storylet_id": "247703"}], [{"original_text": "The first inning was over and the pitcher was practicing.", "album_id": "72157594178913581", "photo_flickr_id": "176018515", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49540", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the first inning was over and the pitcher was practicing .", "storylet_id": "247704"}], [{"original_text": "The friends went to the baseball game.", "album_id": "72157594178913581", "photo_flickr_id": "176018508", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49541", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends went to the baseball game .", "storylet_id": "247705"}], [{"original_text": "The crowd was going wild as the pitcher wound up.", "album_id": "72157594178913581", "photo_flickr_id": "176018513", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49541", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd was going wild as the pitcher wound up .", "storylet_id": "247706"}], [{"original_text": "Everyone cheered when the mascot arrived.", "album_id": "72157594178913581", "photo_flickr_id": "176033656", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49541", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone cheered when the mascot arrived .", "storylet_id": "247707"}], [{"original_text": "He jumped around doing all kinds of crazy stuff.", "album_id": "72157594178913581", "photo_flickr_id": "176040818", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49541", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he jumped around doing all kinds of crazy stuff .", "storylet_id": "247708"}], [{"original_text": "The game came to a close as it got dark.", "album_id": "72157594178913581", "photo_flickr_id": "176040827", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49541", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the game came to a close as it got dark .", "storylet_id": "247709"}], [{"original_text": "We are going to watch a baseball game today.", "album_id": "72157594178913581", "photo_flickr_id": "176018508", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "49542", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are going to watch a baseball game today .", "storylet_id": "247710"}], [{"original_text": "The players are doing a great job.", "album_id": "72157594178913581", "photo_flickr_id": "176018513", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "49542", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the players are doing a great job .", "storylet_id": "247711"}], [{"original_text": "We even got to interact with the crowd.", "album_id": "72157594178913581", "photo_flickr_id": "176033656", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "49542", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even got to interact with the crowd .", "storylet_id": "247712"}], [{"original_text": "The mascot was great, and very funny.", "album_id": "72157594178913581", "photo_flickr_id": "176040818", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "49542", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the mascot was great , and very funny .", "storylet_id": "247713"}], [{"original_text": "Final score is here, what a great day.", "album_id": "72157594178913581", "photo_flickr_id": "176040827", "setting": "last-3-pick-old-and-tell", "worker_id": "K6JPILMRGGGFYZA", "story_id": "49542", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "final score is here , what a great day .", "storylet_id": "247714"}], [{"original_text": "Storm clouds threatened the game, but we were all hopeful we wouldn't get wet.", "album_id": "72157594178913581", "photo_flickr_id": "176018508", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49543", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "storm clouds threatened the game , but we were all hopeful we would n't get wet .", "storylet_id": "247715"}], [{"original_text": "We got to sit really close to the players.", "album_id": "72157594178913581", "photo_flickr_id": "176018513", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49543", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to sit really close to the players .", "storylet_id": "247716"}], [{"original_text": "The mascot got the crowd going.", "album_id": "72157594178913581", "photo_flickr_id": "176033656", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49543", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the mascot got the crowd going .", "storylet_id": "247717"}], [{"original_text": "He likes teasing the kids.", "album_id": "72157594178913581", "photo_flickr_id": "176040818", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49543", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he likes teasing the kids .", "storylet_id": "247718"}], [{"original_text": "No rain! We made it through the night and won the game!", "album_id": "72157594178913581", "photo_flickr_id": "176040827", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49543", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "no rain ! we made it through the night and won the game !", "storylet_id": "247719"}], [{"original_text": "Before the start of the minor league baseball game, fans were allowed on the field.", "album_id": "72157594178913581", "photo_flickr_id": "176018508", "setting": "last-3-pick-old-and-tell", "worker_id": "0VDPLDNV79K6M4O", "story_id": "49544", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before the start of the minor league baseball game , fans were allowed on the field .", "storylet_id": "247720"}], [{"original_text": "Families especially seemed to have fun.", "album_id": "72157594178913581", "photo_flickr_id": "176018511", "setting": "last-3-pick-old-and-tell", "worker_id": "0VDPLDNV79K6M4O", "story_id": "49544", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "families especially seemed to have fun .", "storylet_id": "247721"}], [{"original_text": "Before too long, a few players came out and began to stretch out before the start of the game.", "album_id": "72157594178913581", "photo_flickr_id": "176018512", "setting": "last-3-pick-old-and-tell", "worker_id": "0VDPLDNV79K6M4O", "story_id": "49544", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "before too long , a few players came out and began to stretch out before the start of the game .", "storylet_id": "247722"}], [{"original_text": "Eventually, that day's starting pitcher began to warm up.", "album_id": "72157594178913581", "photo_flickr_id": "176018513", "setting": "last-3-pick-old-and-tell", "worker_id": "0VDPLDNV79K6M4O", "story_id": "49544", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "eventually , that day 's starting pitcher began to warm up .", "storylet_id": "247723"}], [{"original_text": "Once he finished his throwing, the game would begin.", "album_id": "72157594178913581", "photo_flickr_id": "176018515", "setting": "last-3-pick-old-and-tell", "worker_id": "0VDPLDNV79K6M4O", "story_id": "49544", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once he finished his throwing , the game would begin .", "storylet_id": "247724"}], [{"original_text": "The registration process was as simple as it could get.", "album_id": "72157594230490220", "photo_flickr_id": "210929866", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "49545", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the registration process was as simple as it could get .", "storylet_id": "247725"}], [{"original_text": "It was great to run into my buddy Dave.", "album_id": "72157594230490220", "photo_flickr_id": "210929621", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "49545", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was great to run into my buddy [male] .", "storylet_id": "247726"}], [{"original_text": "And I certainly took note of all of the sponsors that participated in the event.", "album_id": "72157594230490220", "photo_flickr_id": "210933153", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "49545", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and i certainly took note of all of the sponsors that participated in the event .", "storylet_id": "247727"}], [{"original_text": "Dave showed off his new golfing skills.", "album_id": "72157594230490220", "photo_flickr_id": "210931584", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "49545", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] showed off his new golfing skills .", "storylet_id": "247728"}], [{"original_text": "Overall, it was great to get out with the wife and do something that I enjoy for a change.", "album_id": "72157594230490220", "photo_flickr_id": "210929473", "setting": "first-2-pick-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "49545", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall , it was great to get out with the wife and do something that i enjoy for a change .", "storylet_id": "247729"}], [{"original_text": "The two brothers decided to go golfing.", "album_id": "72157594230490220", "photo_flickr_id": "210929621", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49546", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the two brothers decided to go golfing .", "storylet_id": "247730"}], [{"original_text": "They found the sign up table.", "album_id": "72157594230490220", "photo_flickr_id": "210929866", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49546", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they found the sign up table .", "storylet_id": "247731"}], [{"original_text": "There were a lot of other people wanting to golf to.", "album_id": "72157594230490220", "photo_flickr_id": "210930175", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49546", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of other people wanting to golf to .", "storylet_id": "247732"}], [{"original_text": "The first brother took a swing.", "album_id": "72157594230490220", "photo_flickr_id": "210931382", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49546", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the first brother took a swing .", "storylet_id": "247733"}], [{"original_text": "Then the other brother took his turn.", "album_id": "72157594230490220", "photo_flickr_id": "210931823", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49546", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then the other brother took his turn .", "storylet_id": "247734"}], [{"original_text": "Setting up for the golf tourney.", "album_id": "72157594230490220", "photo_flickr_id": "210929866", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "49547", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "setting up for the golf tourney .", "storylet_id": "247735"}], [{"original_text": "There was no way I was going to believe the stories these two guys were telling.", "album_id": "72157594230490220", "photo_flickr_id": "210929621", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "49547", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was no way i was going to believe the stories these two guys were telling .", "storylet_id": "247736"}], [{"original_text": "These signs were everywhere, with all different sponsors. ", "album_id": "72157594230490220", "photo_flickr_id": "210933153", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "49547", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these signs were everywhere , with all different sponsors .", "storylet_id": "247737"}], [{"original_text": "The golf swing workshop was very successful. ", "album_id": "72157594230490220", "photo_flickr_id": "210931584", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "49547", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the golf swing workshop was very successful .", "storylet_id": "247738"}], [{"original_text": "It was definitely worth the money. ", "album_id": "72157594230490220", "photo_flickr_id": "210929473", "setting": "last-3-pick-old-and-tell", "worker_id": "AGOL69BREBSNS92", "story_id": "49547", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was definitely worth the money .", "storylet_id": "247739"}], [{"original_text": "Sign up table for the charity golf game.", "album_id": "72157594230490220", "photo_flickr_id": "210929866", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49548", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sign up table for the charity golf game .", "storylet_id": "247740"}], [{"original_text": "Two friends wish each other well before the game.", "album_id": "72157594230490220", "photo_flickr_id": "210929621", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49548", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "two friends wish each other well before the game .", "storylet_id": "247741"}], [{"original_text": "One of the sponsors of the charity golf game.", "album_id": "72157594230490220", "photo_flickr_id": "210933153", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49548", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the sponsors of the charity golf game .", "storylet_id": "247742"}], [{"original_text": "Taking the perfect shot for charity.", "album_id": "72157594230490220", "photo_flickr_id": "210931584", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49548", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "taking the perfect shot for charity .", "storylet_id": "247743"}], [{"original_text": "A couple play golf for a worthy cause.", "album_id": "72157594230490220", "photo_flickr_id": "210929473", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49548", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a couple play golf for a worthy cause .", "storylet_id": "247744"}], [{"original_text": "Two guys, Brad and Kim (guy's version of the name) decided to throw a gold party.", "album_id": "72157594230490220", "photo_flickr_id": "210929621", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "49549", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two guys , [male] and [female] ( guy 's version of the name ) decided to throw a gold party .", "storylet_id": "247745"}], [{"original_text": "They set up one entire table for the whole event.", "album_id": "72157594230490220", "photo_flickr_id": "210929866", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "49549", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they set up one entire table for the whole event .", "storylet_id": "247746"}], [{"original_text": "Hundreds of people showed up for the event.", "album_id": "72157594230490220", "photo_flickr_id": "210930175", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "49549", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "hundreds of people showed up for the event .", "storylet_id": "247747"}], [{"original_text": "People got to play golf.", "album_id": "72157594230490220", "photo_flickr_id": "210931382", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "49549", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people got to play golf .", "storylet_id": "247748"}], [{"original_text": "Everyone eventually had to wear hats because the sun was OUT OF CONTROL that day.", "album_id": "72157594230490220", "photo_flickr_id": "210931823", "setting": "last-3-pick-old-and-tell", "worker_id": "6M4J3DKFYURYGBF", "story_id": "49549", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone eventually had to wear hats because the sun was out of control that day .", "storylet_id": "247749"}], [{"original_text": "I like orange stuff.", "album_id": "72157594260040449", "photo_flickr_id": "229275843", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49550", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i like orange stuff .", "storylet_id": "247750"}], [{"original_text": "Like the orange on this flag.", "album_id": "72157594260040449", "photo_flickr_id": "229278852", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49550", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "like the orange on this flag .", "storylet_id": "247751"}], [{"original_text": "I also like my hate.", "album_id": "72157594260040449", "photo_flickr_id": "229279498", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49550", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also like my hate .", "storylet_id": "247752"}], [{"original_text": "I took lots of pictures of my hat.", "album_id": "72157594260040449", "photo_flickr_id": "229280107", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49550", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i took lots of pictures of my hat .", "storylet_id": "247753"}], [{"original_text": "My hat is epic.", "album_id": "72157594260040449", "photo_flickr_id": "229280690", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49550", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my hat is epic .", "storylet_id": "247754"}], [{"original_text": "Look at all the flags for the race today.", "album_id": "72157594260040449", "photo_flickr_id": "229275286", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49551", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "look at all the flags for the race today .", "storylet_id": "247755"}], [{"original_text": "Bringing his luggage to the race. Must need a quick getaway.", "album_id": "72157594260040449", "photo_flickr_id": "229276464", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49551", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "bringing his luggage to the race . must need a quick getaway .", "storylet_id": "247756"}], [{"original_text": "My ticket, hat, and program. Can't wait!", "album_id": "72157594260040449", "photo_flickr_id": "229280690", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49551", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my ticket , hat , and program . ca n't wait !", "storylet_id": "247757"}], [{"original_text": "My favorite car in the race.", "album_id": "72157594260040449", "photo_flickr_id": "229277652", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49551", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my favorite car in the race .", "storylet_id": "247758"}], [{"original_text": "Hope he wins!", "album_id": "72157594260040449", "photo_flickr_id": "229278339", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49551", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] he wins !", "storylet_id": "247759"}], [{"original_text": "Here are all the flags of the country's taking part in the Rally this year.", "album_id": "72157594260040449", "photo_flickr_id": "229275286", "setting": "last-3-pick-old-and-tell", "worker_id": "7STQGSDU5LGQOVM", "story_id": "49552", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here are all the flags of the country 's taking part in the rally this year .", "storylet_id": "247760"}], [{"original_text": "Here I am arriving at the Rally. ", "album_id": "72157594260040449", "photo_flickr_id": "229276464", "setting": "last-3-pick-old-and-tell", "worker_id": "7STQGSDU5LGQOVM", "story_id": "49552", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here i am arriving at the rally .", "storylet_id": "247761"}], [{"original_text": "Here are the souvenirs I am going to keep from the Rally.", "album_id": "72157594260040449", "photo_flickr_id": "229280690", "setting": "last-3-pick-old-and-tell", "worker_id": "7STQGSDU5LGQOVM", "story_id": "49552", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here are the souvenirs i am going to keep from the rally .", "storylet_id": "247762"}], [{"original_text": "This is the Rally safety car I drove this year.", "album_id": "72157594260040449", "photo_flickr_id": "229277652", "setting": "last-3-pick-old-and-tell", "worker_id": "7STQGSDU5LGQOVM", "story_id": "49552", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the rally safety car i drove this year .", "storylet_id": "247763"}], [{"original_text": "This is a picture of the drivers area of the car. I spent a lot of time sitting here, but it was worth it to be part of the Rally.", "album_id": "72157594260040449", "photo_flickr_id": "229278339", "setting": "last-3-pick-old-and-tell", "worker_id": "7STQGSDU5LGQOVM", "story_id": "49552", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of the drivers area of the car . i spent a lot of time sitting here , but it was worth it to be part of the rally .", "storylet_id": "247764"}], [{"original_text": "This past weekend I attended the Cyprus Rally.", "album_id": "72157594260040449", "photo_flickr_id": "229275286", "setting": "last-3-pick-old-and-tell", "worker_id": "WZFHYC1AGKNDI28", "story_id": "49553", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this past weekend i attended the location rally .", "storylet_id": "247765"}], [{"original_text": "I had to bring a bag to hold my gear.", "album_id": "72157594260040449", "photo_flickr_id": "229276464", "setting": "last-3-pick-old-and-tell", "worker_id": "WZFHYC1AGKNDI28", "story_id": "49553", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had to bring a bag to hold my gear .", "storylet_id": "247766"}], [{"original_text": "I received a bunch of free stuff.", "album_id": "72157594260040449", "photo_flickr_id": "229280690", "setting": "last-3-pick-old-and-tell", "worker_id": "WZFHYC1AGKNDI28", "story_id": "49553", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i received a bunch of free stuff .", "storylet_id": "247767"}], [{"original_text": "I saw the safety car.", "album_id": "72157594260040449", "photo_flickr_id": "229277652", "setting": "last-3-pick-old-and-tell", "worker_id": "WZFHYC1AGKNDI28", "story_id": "49553", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i saw the safety car .", "storylet_id": "247768"}], [{"original_text": "I got a closer look at the safety car. ", "album_id": "72157594260040449", "photo_flickr_id": "229278339", "setting": "last-3-pick-old-and-tell", "worker_id": "WZFHYC1AGKNDI28", "story_id": "49553", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i got a closer look at the safety car .", "storylet_id": "247769"}], [{"original_text": "We went to the Cyress Rally this weekend.", "album_id": "72157594260040449", "photo_flickr_id": "229275843", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49554", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the cyress rally this weekend .", "storylet_id": "247770"}], [{"original_text": "Alot of countries were represented.", "album_id": "72157594260040449", "photo_flickr_id": "229278852", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49554", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "alot of countries were represented .", "storylet_id": "247771"}], [{"original_text": "They gave me this cool hat.", "album_id": "72157594260040449", "photo_flickr_id": "229279498", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49554", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they gave me this cool hat .", "storylet_id": "247772"}], [{"original_text": "I also got a special laminate Rally pass.", "album_id": "72157594260040449", "photo_flickr_id": "229280107", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49554", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also got a special laminate rally pass .", "storylet_id": "247773"}], [{"original_text": "they also include an event program", "album_id": "72157594260040449", "photo_flickr_id": "229280690", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49554", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they also include an event program", "storylet_id": "247774"}], [{"original_text": "I think a dirt track is the best place for cars to race.", "album_id": "72157594295140238", "photo_flickr_id": "249829914", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "49555", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i think a dirt track is the best place for cars to race .", "storylet_id": "247775"}], [{"original_text": "It reminds me of the old NASCAR days where dirt tracks were common.", "album_id": "72157594295140238", "photo_flickr_id": "249828289", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "49555", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it reminds me of the old organization days where dirt tracks were common .", "storylet_id": "247776"}], [{"original_text": "The track was challenging for some of the drivers. ", "album_id": "72157594295140238", "photo_flickr_id": "249828792", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "49555", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the track was challenging for some of the drivers .", "storylet_id": "247777"}], [{"original_text": "It is not a real race without stirring up a little dust.", "album_id": "72157594295140238", "photo_flickr_id": "249829627", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "49555", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is not a real race without stirring up a little dust .", "storylet_id": "247778"}], [{"original_text": "The crowd definitely had a good time. ", "album_id": "72157594295140238", "photo_flickr_id": "249826882", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "49555", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the crowd definitely had a good time .", "storylet_id": "247779"}], [{"original_text": "The friends went to a car race.", "album_id": "72157594295140238", "photo_flickr_id": "249826211", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49556", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends went to a car race .", "storylet_id": "247780"}], [{"original_text": "There were a lot of colorful fast cars in the race.", "album_id": "72157594295140238", "photo_flickr_id": "249826473", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49556", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of colorful fast cars in the race .", "storylet_id": "247781"}], [{"original_text": "A lot of people had come out to watch.", "album_id": "72157594295140238", "photo_flickr_id": "249829914", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49556", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lot of people had come out to watch .", "storylet_id": "247782"}], [{"original_text": "The cars were close for first.", "album_id": "72157594295140238", "photo_flickr_id": "249831792", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49556", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cars were close for first .", "storylet_id": "247783"}], [{"original_text": "It was the blue and red car that won.", "album_id": "72157594295140238", "photo_flickr_id": "249832090", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49556", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was the blue and red car that won .", "storylet_id": "247784"}], [{"original_text": "The red car was in the lead as it rounded the corner in the Annual Rally race in town.", "album_id": "72157594295140238", "photo_flickr_id": "249829914", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49557", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the red car was in the lead as it rounded the corner in the annual rally race in town .", "storylet_id": "247785"}], [{"original_text": "Next came the white, blue and green car, throwing up clouds of dust.", "album_id": "72157594295140238", "photo_flickr_id": "249828289", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49557", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next came the white , blue and green car , throwing up clouds of dust .", "storylet_id": "247786"}], [{"original_text": "Right after it came a blue and white car that looked very similar to the white, blue and green car.", "album_id": "72157594295140238", "photo_flickr_id": "249828792", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49557", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "right after it came a blue and white car that looked very similar to the white , blue and green car .", "storylet_id": "247787"}], [{"original_text": "In last place was the blue and yellow Subaru as they headed into the finish.", "album_id": "72157594295140238", "photo_flickr_id": "249829627", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49557", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in last place was the blue and yellow subaru as they headed into the finish .", "storylet_id": "247788"}], [{"original_text": "The white, blue and green car actually pulled ahead of the red car right before the finish and won!", "album_id": "72157594295140238", "photo_flickr_id": "249826882", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49557", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the white , blue and green car actually pulled ahead of the red car right before the finish and won !", "storylet_id": "247789"}], [{"original_text": "There was an auto race out on the dirt track in the hill country.", "album_id": "72157594295140238", "photo_flickr_id": "249826211", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49558", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an auto race out on the dirt track in the hill country .", "storylet_id": "247790"}], [{"original_text": "Safety ropes were set up so the drivers knew where to go.", "album_id": "72157594295140238", "photo_flickr_id": "249826473", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49558", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "safety ropes were set up so the drivers knew where to go .", "storylet_id": "247791"}], [{"original_text": "People stood in the roads! I thought that was a little dangerous.", "album_id": "72157594295140238", "photo_flickr_id": "249829914", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49558", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people stood in the roads ! i thought that was a little dangerous .", "storylet_id": "247792"}], [{"original_text": "If you stood too close you definitely got dirty!", "album_id": "72157594295140238", "photo_flickr_id": "249831792", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49558", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "if you stood too close you definitely got dirty !", "storylet_id": "247793"}], [{"original_text": "Here comes the winner!", "album_id": "72157594295140238", "photo_flickr_id": "249832090", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49558", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here comes the winner !", "storylet_id": "247794"}], [{"original_text": "The race started. dangerous as always.", "album_id": "72157594295140238", "photo_flickr_id": "249826211", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49559", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the race started . dangerous as always .", "storylet_id": "247795"}], [{"original_text": "The cars took no time flying and weaving around corners.", "album_id": "72157594295140238", "photo_flickr_id": "249826473", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49559", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cars took no time flying and weaving around corners .", "storylet_id": "247796"}], [{"original_text": "People were standing out in front of the cars putting themselves in danger.", "album_id": "72157594295140238", "photo_flickr_id": "249829914", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49559", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people were standing out in front of the cars putting themselves in danger .", "storylet_id": "247797"}], [{"original_text": "The head car rounded the final corner.", "album_id": "72157594295140238", "photo_flickr_id": "249831792", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49559", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the head car rounded the final corner .", "storylet_id": "247798"}], [{"original_text": "Crossing the finish line, the fans went crazy and the race was over.", "album_id": "72157594295140238", "photo_flickr_id": "249832090", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49559", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "crossing the finish line , the fans went crazy and the race was over .", "storylet_id": "247799"}], [{"original_text": "We thought we arrived early for the big book debut but apparently not.", "album_id": "72157594583357775", "photo_flickr_id": "418262142", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49560", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we thought we arrived early for the big book debut but apparently not .", "storylet_id": "247800"}], [{"original_text": "My friend was dressed in costume for the latest book in the series.", "album_id": "72157594583357775", "photo_flickr_id": "418269284", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49560", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend was dressed in costume for the latest book in the series .", "storylet_id": "247801"}], [{"original_text": "We looked at all the other books waiting to get our hands on what we wanted.", "album_id": "72157594583357775", "photo_flickr_id": "418271779", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49560", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we looked at all the other books waiting to get our hands on what we wanted .", "storylet_id": "247802"}], [{"original_text": "A guy their had the same glasses my friend was wearing.", "album_id": "72157594583357775", "photo_flickr_id": "418283157", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49560", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a guy their had the same glasses my friend was wearing .", "storylet_id": "247803"}], [{"original_text": "I finally got the book I came for after hours of waiting.", "album_id": "72157594583357775", "photo_flickr_id": "418294348", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49560", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i finally got the book i came for after hours of waiting .", "storylet_id": "247804"}], [{"original_text": "We went to a airplane museum.", "album_id": "72157594583357775", "photo_flickr_id": "418264528", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49561", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a airplane museum .", "storylet_id": "247805"}], [{"original_text": "There were all kinds of old airplanes on display.", "album_id": "72157594583357775", "photo_flickr_id": "418267215", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49561", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were all kinds of old airplanes on display .", "storylet_id": "247806"}], [{"original_text": "We saw an old fashioned pilot uniform.", "album_id": "72157594583357775", "photo_flickr_id": "418294348", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49561", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw an old fashioned pilot uniform .", "storylet_id": "247807"}], [{"original_text": "This one was the son's favorite.", "album_id": "72157594583357775", "photo_flickr_id": "418329894", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49561", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one was the son 's favorite .", "storylet_id": "247808"}], [{"original_text": "The trip to the museum was a fun trip for all.", "album_id": "72157594583357775", "photo_flickr_id": "418236442", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "49561", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the trip to the museum was a fun trip for all .", "storylet_id": "247809"}], [{"original_text": "This is a seriously fast strong fighter jet plane for the military.", "album_id": "72157594583357775", "photo_flickr_id": "418262142", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "49562", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a seriously fast strong fighter jet plane for the military .", "storylet_id": "247810"}], [{"original_text": "This wheel is no good, no one should use this plane until the wheels are fixed.", "album_id": "72157594583357775", "photo_flickr_id": "418269284", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "49562", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this wheel is no good , no one should use this plane until the wheels are fixed .", "storylet_id": "247811"}], [{"original_text": "The propeller produces high mile per hour winds that can blow someone away.", "album_id": "72157594583357775", "photo_flickr_id": "418271779", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "49562", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the propeller produces high mile per hour winds that can blow someone away .", "storylet_id": "247812"}], [{"original_text": "The propellers look small but don't let that fool you.", "album_id": "72157594583357775", "photo_flickr_id": "418283157", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "49562", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the propellers look small but do n't let that fool you .", "storylet_id": "247813"}], [{"original_text": "This is a test pilot with all the gear on, let's fly.", "album_id": "72157594583357775", "photo_flickr_id": "418294348", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "49562", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a test pilot with all the gear on , let 's fly .", "storylet_id": "247814"}], [{"original_text": "The Boy Scout troop got to tour the local Air Force base. The boys loved seeing the fighter jets.", "album_id": "72157594583357775", "photo_flickr_id": "418264528", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49563", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boy scout troop got to tour the local organization organization base . the boys loved seeing the fighter jets .", "storylet_id": "247815"}], [{"original_text": "They got to watch as one of them was serviced.", "album_id": "72157594583357775", "photo_flickr_id": "418267215", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49563", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got to watch as one of them was serviced .", "storylet_id": "247816"}], [{"original_text": "Everyone liked seeing the test dummy.", "album_id": "72157594583357775", "photo_flickr_id": "418294348", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49563", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone liked seeing the test dummy .", "storylet_id": "247817"}], [{"original_text": "The big hangar was beautiful.", "album_id": "72157594583357775", "photo_flickr_id": "418329894", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49563", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the big hangar was beautiful .", "storylet_id": "247818"}], [{"original_text": "I hope the boys get to visit again next year.", "album_id": "72157594583357775", "photo_flickr_id": "418236442", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49563", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope the boys get to visit again next year .", "storylet_id": "247819"}], [{"original_text": "We went to the Aviation Museum ", "album_id": "72157594583357775", "photo_flickr_id": "418264528", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49564", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the aviation museum", "storylet_id": "247820"}], [{"original_text": "We got to see alot of cool stuff.", "album_id": "72157594583357775", "photo_flickr_id": "418267215", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49564", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to see alot of cool stuff .", "storylet_id": "247821"}], [{"original_text": "I saw authentic WWII stuff.", "album_id": "72157594583357775", "photo_flickr_id": "418294348", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49564", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i saw authentic wwii stuff .", "storylet_id": "247822"}], [{"original_text": "As well as a stealth plane.", "album_id": "72157594583357775", "photo_flickr_id": "418329894", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49564", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as well as a stealth plane .", "storylet_id": "247823"}], [{"original_text": "I would go back again.", "album_id": "72157594583357775", "photo_flickr_id": "418236442", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49564", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i would go back again .", "storylet_id": "247824"}], [{"original_text": "The family likes going to see the game.", "album_id": "72157604403044021", "photo_flickr_id": "2391016512", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49565", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family likes going to see the game .", "storylet_id": "247825"}], [{"original_text": "We always sit together in a big group.", "album_id": "72157604403044021", "photo_flickr_id": "2390186251", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49565", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we always sit together in a big group .", "storylet_id": "247826"}], [{"original_text": "We don't always play with our food, but today we can't help it.", "album_id": "72157604403044021", "photo_flickr_id": "2390184847", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49565", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we do n't always play with our food , but today we ca n't help it .", "storylet_id": "247827"}], [{"original_text": "Our seats are high up in the stadium so we are glad for the big screen.", "album_id": "72157604403044021", "photo_flickr_id": "2390185835", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49565", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our seats are high up in the stadium so we are glad for the big screen .", "storylet_id": "247828"}], [{"original_text": "Thanks, Dad, for the tickets!", "album_id": "72157604403044021", "photo_flickr_id": "2391018918", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49565", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thanks , dad , for the tickets !", "storylet_id": "247829"}], [{"original_text": "Bobby and Suzie decided to spend the night watching a basketball game. ", "album_id": "72157604403044021", "photo_flickr_id": "2390186399", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49566", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and suzie decided to spend the night watching a basketball game .", "storylet_id": "247830"}], [{"original_text": "It was actually a surprise for Suzie so she gave him a big kiss to show her appreciation. ", "album_id": "72157604403044021", "photo_flickr_id": "2391018918", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49566", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was actually a surprise for organization so she gave him a big kiss to show her appreciation .", "storylet_id": "247831"}], [{"original_text": "They shared an order of delicious onion rings. ", "album_id": "72157604403044021", "photo_flickr_id": "2390184847", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49566", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they shared an order of delicious onion rings .", "storylet_id": "247832"}], [{"original_text": "Suzie's daughter called to see how they were enjoying things. ", "album_id": "72157604403044021", "photo_flickr_id": "2390186005", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49566", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "suzie 's daughter called to see how they were enjoying things .", "storylet_id": "247833"}], [{"original_text": "Then it was time for the game to start in front of this packed crowd. ", "album_id": "72157604403044021", "photo_flickr_id": "2391016780", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49566", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then it was time for the game to start in front of this packed crowd .", "storylet_id": "247834"}], [{"original_text": "Janie went with her father to the basketball game.", "album_id": "72157604403044021", "photo_flickr_id": "2390186399", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49567", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] went with her father to the basketball game .", "storylet_id": "247835"}], [{"original_text": "She loved spending time with him", "album_id": "72157604403044021", "photo_flickr_id": "2391018918", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49567", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she loved spending time with him", "storylet_id": "247836"}], [{"original_text": "They found a surprise in their onion rings!", "album_id": "72157604403044021", "photo_flickr_id": "2390184847", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49567", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they found a surprise in their onion rings !", "storylet_id": "247837"}], [{"original_text": "The whole group was having fun.", "album_id": "72157604403044021", "photo_flickr_id": "2390186005", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49567", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole group was having fun .", "storylet_id": "247838"}], [{"original_text": "At the end of the night, they had so much fun watching the players.", "album_id": "72157604403044021", "photo_flickr_id": "2391016780", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49567", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , they had so much fun watching the players .", "storylet_id": "247839"}], [{"original_text": "Looks like we're in the front row!", "album_id": "72157604403044021", "photo_flickr_id": "2391016512", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49568", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "looks like we 're in the front row !", "storylet_id": "247840"}], [{"original_text": "The girls enjoying their time.", "album_id": "72157604403044021", "photo_flickr_id": "2390186251", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49568", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girls enjoying their time .", "storylet_id": "247841"}], [{"original_text": "Look! An anti-onion ring!", "album_id": "72157604403044021", "photo_flickr_id": "2390184847", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49568", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look ! an anti-onion ring !", "storylet_id": "247842"}], [{"original_text": "Since we can't really see the court, we can at least watch it on the jumbo-tron.", "album_id": "72157604403044021", "photo_flickr_id": "2390185835", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49568", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "since we ca n't really see the court , we can at least watch it on the jumbo-tron .", "storylet_id": "247843"}], [{"original_text": "She's kissing me?!", "album_id": "72157604403044021", "photo_flickr_id": "2391018918", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49568", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she 's kissing me ? !", "storylet_id": "247844"}], [{"original_text": "We went to the game last night. It was absolutely packed. ", "album_id": "72157604403044021", "photo_flickr_id": "2391016512", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "49569", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the game last night . it was absolutely packed .", "storylet_id": "247845"}], [{"original_text": "But, as you see, we were all happy to be there. ", "album_id": "72157604403044021", "photo_flickr_id": "2390186251", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "49569", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but , as you see , we were all happy to be there .", "storylet_id": "247846"}], [{"original_text": "We reverted to being children with the food. ", "album_id": "72157604403044021", "photo_flickr_id": "2390184847", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "49569", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we reverted to being children with the food .", "storylet_id": "247847"}], [{"original_text": "The center court display was impressive. ", "album_id": "72157604403044021", "photo_flickr_id": "2390185835", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "49569", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the center court display was impressive .", "storylet_id": "247848"}], [{"original_text": "All the couple there had a great time. ", "album_id": "72157604403044021", "photo_flickr_id": "2391018918", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "49569", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the couple there had a great time .", "storylet_id": "247849"}], [{"original_text": "Today was the day.", "album_id": "72157604409060777", "photo_flickr_id": "2392193422", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49570", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day .", "storylet_id": "247850"}], [{"original_text": "I was going to prove my theory.", "album_id": "72157604409060777", "photo_flickr_id": "2392198790", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49570", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was going to prove my theory .", "storylet_id": "247851"}], [{"original_text": "The theory that people are most closely related to lemmings.", "album_id": "72157604409060777", "photo_flickr_id": "2392210682", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49570", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the theory that people are most closely related to lemmings .", "storylet_id": "247852"}], [{"original_text": "And the people didn't let me down.", "album_id": "72157604409060777", "photo_flickr_id": "2392234560", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49570", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the people did n't let me down .", "storylet_id": "247853"}], [{"original_text": "They all went over the edge!", "album_id": "72157604409060777", "photo_flickr_id": "2392240432", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49570", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all went over the edge !", "storylet_id": "247854"}], [{"original_text": "Everyone gathered around for the big Red Bull parade at the sea doc.", "album_id": "72157604409060777", "photo_flickr_id": "2392214160", "setting": "first-2-pick-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49571", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone gathered around for the big red bull parade at the sea doc .", "storylet_id": "247855"}], [{"original_text": "There were great big Red and White Red Bull signs and banners everywhere upon every boat.", "album_id": "72157604409060777", "photo_flickr_id": "2392216698", "setting": "first-2-pick-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49571", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were great big red and white red bull signs and banners everywhere upon every boat .", "storylet_id": "247856"}], [{"original_text": "Lots of people watched and listened to speakers come talk about a new Red Bull line coming out soon.", "album_id": "72157604409060777", "photo_flickr_id": "2392228136", "setting": "first-2-pick-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49571", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lots of people watched and listened to speakers come talk about a new organization organization line coming out soon .", "storylet_id": "247857"}], [{"original_text": "Some of the people from the crowd even got to participate in Red Bull contest on the Red Bull boat.", "album_id": "72157604409060777", "photo_flickr_id": "2391415579", "setting": "first-2-pick-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49571", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the people from the crowd even got to participate in organization organization contest on the organization organization boat .", "storylet_id": "247858"}], [{"original_text": "Everyone had a great time, and after the parade was over everyone got together for a Red Bull photo op.", "album_id": "72157604409060777", "photo_flickr_id": "2391423651", "setting": "first-2-pick-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "49571", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time , and after the parade was over everyone got together for a organization organization photo op .", "storylet_id": "247859"}], [{"original_text": "The crowd watched as each of the contenders stepped up to the plate.", "album_id": "72157604409060777", "photo_flickr_id": "2392193422", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49572", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowd watched as each of the contenders stepped up to the plate .", "storylet_id": "247860"}], [{"original_text": "The planes would fly from the boat and try to land successfully.", "album_id": "72157604409060777", "photo_flickr_id": "2392198790", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49572", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the planes would fly from the boat and try to land successfully .", "storylet_id": "247861"}], [{"original_text": "One by one, they succeeded or failed.", "album_id": "72157604409060777", "photo_flickr_id": "2392210682", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49572", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one by one , they succeeded or failed .", "storylet_id": "247862"}], [{"original_text": "Some designs were more ingenious than others.", "album_id": "72157604409060777", "photo_flickr_id": "2392234560", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49572", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some designs were more ingenious than others .", "storylet_id": "247863"}], [{"original_text": "The last one almost tipped over the side.", "album_id": "72157604409060777", "photo_flickr_id": "2392240432", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49572", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last one almost tipped over the side .", "storylet_id": "247864"}], [{"original_text": "We loved seeing all the boats.", "album_id": "72157604409060777", "photo_flickr_id": "2392214160", "setting": "last-3-pick-old-and-tell", "worker_id": "KVSCSC3OTUJR5HJ", "story_id": "49573", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we loved seeing all the boats .", "storylet_id": "247865"}], [{"original_text": "We were anticipating the next diver.", "album_id": "72157604409060777", "photo_flickr_id": "2392216698", "setting": "last-3-pick-old-and-tell", "worker_id": "KVSCSC3OTUJR5HJ", "story_id": "49573", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were anticipating the next diver .", "storylet_id": "247866"}], [{"original_text": "We watched this guy fall face first in the water.", "album_id": "72157604409060777", "photo_flickr_id": "2392228136", "setting": "last-3-pick-old-and-tell", "worker_id": "KVSCSC3OTUJR5HJ", "story_id": "49573", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we watched this guy fall face first in the water .", "storylet_id": "247867"}], [{"original_text": "We thought the stunts were amazing", "album_id": "72157604409060777", "photo_flickr_id": "2391415579", "setting": "last-3-pick-old-and-tell", "worker_id": "KVSCSC3OTUJR5HJ", "story_id": "49573", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we thought the stunts were amazing", "storylet_id": "247868"}], [{"original_text": "This place was crowded that we almost lost each other.", "album_id": "72157604409060777", "photo_flickr_id": "2391423651", "setting": "last-3-pick-old-and-tell", "worker_id": "KVSCSC3OTUJR5HJ", "story_id": "49573", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this place was crowded that we almost lost each other .", "storylet_id": "247869"}], [{"original_text": "Help! I'm falling!", "album_id": "72157604409060777", "photo_flickr_id": "2392193422", "setting": "last-3-pick-old-and-tell", "worker_id": "UAOUW9JIM2M91F1", "story_id": "49574", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "help ! i 'm falling !", "storylet_id": "247870"}], [{"original_text": "Don't worry. I gotchu. O wait...", "album_id": "72157604409060777", "photo_flickr_id": "2392198790", "setting": "last-3-pick-old-and-tell", "worker_id": "UAOUW9JIM2M91F1", "story_id": "49574", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "do n't worry . i gotchu . o wait ...", "storylet_id": "247871"}], [{"original_text": "Are we just diving into the water now? I guess it's my turn!", "album_id": "72157604409060777", "photo_flickr_id": "2392210682", "setting": "last-3-pick-old-and-tell", "worker_id": "UAOUW9JIM2M91F1", "story_id": "49574", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "are we just diving into the water now ? i guess it 's my turn !", "storylet_id": "247872"}], [{"original_text": "Crap! The road ends here!", "album_id": "72157604409060777", "photo_flickr_id": "2392234560", "setting": "last-3-pick-old-and-tell", "worker_id": "UAOUW9JIM2M91F1", "story_id": "49574", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "crap ! the road ends here !", "storylet_id": "247873"}], [{"original_text": "NOOOOOO. I'm falling!", "album_id": "72157604409060777", "photo_flickr_id": "2392240432", "setting": "last-3-pick-old-and-tell", "worker_id": "UAOUW9JIM2M91F1", "story_id": "49574", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "noooooo . i 'm falling !", "storylet_id": "247874"}], [{"original_text": "We had a meetup at our local car garage this week.", "album_id": "72157626347795121", "photo_flickr_id": "5608228191", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49575", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a meetup at our local car garage this week .", "storylet_id": "247875"}], [{"original_text": "It turned into a cookout when someone brought their grill.", "album_id": "72157626347795121", "photo_flickr_id": "5608227607", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49575", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it turned into a cookout when someone brought their grill .", "storylet_id": "247876"}], [{"original_text": "Everyone displayed their cars and we talked about different parts.", "album_id": "72157626347795121", "photo_flickr_id": "5608227923", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49575", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone displayed their cars and we talked about different parts .", "storylet_id": "247877"}], [{"original_text": "A local mechanic showed us a few tricks and tips under the hoods of our cars.", "album_id": "72157626347795121", "photo_flickr_id": "5608228759", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49575", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a local mechanic showed us a few tricks and tips under the hoods of our cars .", "storylet_id": "247878"}], [{"original_text": "All the people in attendance enjoyed the day.", "album_id": "72157626347795121", "photo_flickr_id": "5608228353", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "49575", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the people in attendance enjoyed the day .", "storylet_id": "247879"}], [{"original_text": "This past saturday the boys at All Pro Subaru decided to have a BBQ while tricking out their cars.", "album_id": "72157626347795121", "photo_flickr_id": "5608810444", "setting": "first-2-pick-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "49576", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this past saturday the boys at organization organization organization decided to have a bbq while tricking out their cars .", "storylet_id": "247880"}], [{"original_text": "As the burgers grilled, the boys started on the cars.", "album_id": "72157626347795121", "photo_flickr_id": "5608810540", "setting": "first-2-pick-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "49576", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the burgers grilled , the boys started on the cars .", "storylet_id": "247881"}], [{"original_text": "Stan handled the new brake installations.", "album_id": "72157626347795121", "photo_flickr_id": "5608810840", "setting": "first-2-pick-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "49576", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "stan handled the new brake installations .", "storylet_id": "247882"}], [{"original_text": "While Tom, Mark, and Jerry worked on the engine.", "album_id": "72157626347795121", "photo_flickr_id": "5608228759", "setting": "first-2-pick-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "49576", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while [male] , [male] , and [male] worked on the engine .", "storylet_id": "247883"}], [{"original_text": "Little Deb inspects the new build as the team moved onto the next car.", "album_id": "72157626347795121", "photo_flickr_id": "5608229485", "setting": "first-2-pick-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "49576", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "little deb inspects the new build as the team moved onto the next car .", "storylet_id": "247884"}], [{"original_text": "Dad and I love cars. ", "album_id": "72157626347795121", "photo_flickr_id": "5608228191", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49577", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dad and i love cars .", "storylet_id": "247885"}], [{"original_text": "The local dealership hosted a small car show and they cooked food on the grill.", "album_id": "72157626347795121", "photo_flickr_id": "5608227607", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49577", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the local dealership hosted a small car show and they cooked food on the grill .", "storylet_id": "247886"}], [{"original_text": "My favorite car was this blue Subaru. It was beautiful.", "album_id": "72157626347795121", "photo_flickr_id": "5608227923", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49577", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my favorite car was this blue subaru . it was beautiful .", "storylet_id": "247887"}], [{"original_text": "They even did an oil change tutorial.", "album_id": "72157626347795121", "photo_flickr_id": "5608228759", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49577", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even did an oil change tutorial .", "storylet_id": "247888"}], [{"original_text": "All of the cars were beautiful. I can't wait to get me a new ride. ", "album_id": "72157626347795121", "photo_flickr_id": "5608228353", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49577", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of the cars were beautiful . i ca n't wait to get me a new ride .", "storylet_id": "247889"}], [{"original_text": "allpro cookout day.", "album_id": "72157626347795121", "photo_flickr_id": "5608228191", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "49578", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "allpro cookout day .", "storylet_id": "247890"}], [{"original_text": "Some coworkers enjoying some hamburgers and hotdogs.", "album_id": "72157626347795121", "photo_flickr_id": "5608227607", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "49578", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some coworkers enjoying some hamburgers and hotdogs .", "storylet_id": "247891"}], [{"original_text": "Would love to see whats under that hood.", "album_id": "72157626347795121", "photo_flickr_id": "5608227923", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "49578", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "would love to see whats under that hood .", "storylet_id": "247892"}], [{"original_text": "Check it out.", "album_id": "72157626347795121", "photo_flickr_id": "5608228759", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "49578", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "check it out .", "storylet_id": "247893"}], [{"original_text": "Lets pimp some rides!", "album_id": "72157626347795121", "photo_flickr_id": "5608228353", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "49578", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lets pimp some rides !", "storylet_id": "247894"}], [{"original_text": "The car show was awesome.", "album_id": "72157626347795121", "photo_flickr_id": "5608228191", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "49579", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the car show was awesome .", "storylet_id": "247895"}], [{"original_text": "We had a bbq while we waited for everyone to get there.", "album_id": "72157626347795121", "photo_flickr_id": "5608227607", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "49579", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a bbq while we waited for everyone to get there .", "storylet_id": "247896"}], [{"original_text": "My car was the favorite amongst those who gathered.", "album_id": "72157626347795121", "photo_flickr_id": "5608227923", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "49579", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my car was the favorite amongst those who gathered .", "storylet_id": "247897"}], [{"original_text": "We spent the whole day comparing engines and cars in general.", "album_id": "72157626347795121", "photo_flickr_id": "5608228759", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "49579", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we spent the whole day comparing engines and cars in general .", "storylet_id": "247898"}], [{"original_text": "It was the most fun I've had in months.", "album_id": "72157626347795121", "photo_flickr_id": "5608228353", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "49579", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was the most fun i 've had in months .", "storylet_id": "247899"}], [{"original_text": "the dirt bike race was international ", "album_id": "72157629613256003", "photo_flickr_id": "6994225967", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49580", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dirt bike race was international", "storylet_id": "247900"}], [{"original_text": "it was very exciting ", "album_id": "72157629613256003", "photo_flickr_id": "6847944168", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49580", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was very exciting", "storylet_id": "247901"}], [{"original_text": "the bikes go really fast", "album_id": "72157629613256003", "photo_flickr_id": "6847944186", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49580", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bikes go really fast", "storylet_id": "247902"}], [{"original_text": "the riders are professionals", "album_id": "72157629613256003", "photo_flickr_id": "6994151295", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49580", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the riders are professionals", "storylet_id": "247903"}], [{"original_text": "many guys come to compete", "album_id": "72157629613256003", "photo_flickr_id": "6847734946", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49580", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many guys come to compete", "storylet_id": "247904"}], [{"original_text": "The racers unloading their bikes from the truck.", "album_id": "72157629613256003", "photo_flickr_id": "6847734946", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49581", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the racers unloading their bikes from the truck .", "storylet_id": "247905"}], [{"original_text": "The photographers ironically posing for a photo.", "album_id": "72157629613256003", "photo_flickr_id": "6847937212", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49581", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the photographers ironically posing for a photo .", "storylet_id": "247906"}], [{"original_text": "Two riders practicing before the race.", "album_id": "72157629613256003", "photo_flickr_id": "6847944168", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49581", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two riders practicing before the race .", "storylet_id": "247907"}], [{"original_text": "The racers lined up at the starting gate.", "album_id": "72157629613256003", "photo_flickr_id": "6994225967", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49581", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the racers lined up at the starting gate .", "storylet_id": "247908"}], [{"original_text": "And they're off with a loud rumble!", "album_id": "72157629613256003", "photo_flickr_id": "6994225979", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49581", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they 're off with a loud rumble !", "storylet_id": "247909"}], [{"original_text": "My brother, Billy, is a dirt biker. This weekend was his first race.", "album_id": "72157629613256003", "photo_flickr_id": "6994225967", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49582", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brother , [male] , is a dirt biker . this weekend was his first race .", "storylet_id": "247910"}], [{"original_text": "It was so amazing seeing him in action.", "album_id": "72157629613256003", "photo_flickr_id": "6847944168", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49582", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was so amazing seeing him in action .", "storylet_id": "247911"}], [{"original_text": "This was the first time that I had ever seen him on the bike and he did an incredible job.", "album_id": "72157629613256003", "photo_flickr_id": "6847944186", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49582", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was the first time that i had ever seen him on the bike and he did an incredible job .", "storylet_id": "247912"}], [{"original_text": "I wish that I was as talented as he is.", "album_id": "72157629613256003", "photo_flickr_id": "6994151295", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49582", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i wish that i was as talented as he is .", "storylet_id": "247913"}], [{"original_text": "Everyone did a good job and I'm definitely going to come to these competitions more often. ", "album_id": "72157629613256003", "photo_flickr_id": "6847734946", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49582", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone did a good job and i 'm definitely going to come to these competitions more often .", "storylet_id": "247914"}], [{"original_text": "The motorbikes gather at the starting line as the race is about to begin.", "album_id": "72157629613256003", "photo_flickr_id": "6994225967", "setting": "last-3-pick-old-and-tell", "worker_id": "Q0D0TO3EGJO813H", "story_id": "49583", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the motorbikes gather at the starting line as the race is about to begin .", "storylet_id": "247915"}], [{"original_text": "Going through the hills, the motorbikes are going up and down into the air.", "album_id": "72157629613256003", "photo_flickr_id": "6847944168", "setting": "last-3-pick-old-and-tell", "worker_id": "Q0D0TO3EGJO813H", "story_id": "49583", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "going through the hills , the motorbikes are going up and down into the air .", "storylet_id": "247916"}], [{"original_text": "A tight curve is coming up as the racer in green prepares for the turn.", "album_id": "72157629613256003", "photo_flickr_id": "6847944186", "setting": "last-3-pick-old-and-tell", "worker_id": "Q0D0TO3EGJO813H", "story_id": "49583", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a tight curve is coming up as the racer in green prepares for the turn .", "storylet_id": "247917"}], [{"original_text": "They make the turn successfully but are unable to keep up with the pack.", "album_id": "72157629613256003", "photo_flickr_id": "6994151295", "setting": "last-3-pick-old-and-tell", "worker_id": "Q0D0TO3EGJO813H", "story_id": "49583", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they make the turn successfully but are unable to keep up with the pack .", "storylet_id": "247918"}], [{"original_text": "The man in white is seen smiling as he wins the race.", "album_id": "72157629613256003", "photo_flickr_id": "6847734946", "setting": "last-3-pick-old-and-tell", "worker_id": "Q0D0TO3EGJO813H", "story_id": "49583", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the man in white is seen smiling as he wins the race .", "storylet_id": "247919"}], [{"original_text": "The ATV race was a tough one.", "album_id": "72157629613256003", "photo_flickr_id": "6994225967", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "49584", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the atv race was a tough one .", "storylet_id": "247920"}], [{"original_text": "Racers from all across the globe arrived and pulled off fantastic stunts.", "album_id": "72157629613256003", "photo_flickr_id": "6847944168", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "49584", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "racers from all across the globe arrived and pulled off fantastic stunts .", "storylet_id": "247921"}], [{"original_text": "Stuntman Pete was not deterred.", "album_id": "72157629613256003", "photo_flickr_id": "6847944186", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "49584", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "stuntman [male] was not deterred .", "storylet_id": "247922"}], [{"original_text": "He rode on, steady and slow without showing off.", "album_id": "72157629613256003", "photo_flickr_id": "6994151295", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "49584", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he rode on , steady and slow without showing off .", "storylet_id": "247923"}], [{"original_text": "He got 2nd place but to get 2nd amongst the world's titans is still a feat!", "album_id": "72157629613256003", "photo_flickr_id": "6847734946", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "49584", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he got 2nd place but to get 2nd amongst the world 's titans is still a feat !", "storylet_id": "247924"}], [{"original_text": "Paddy O'Leary contemplates his next pint.", "album_id": "72057594084671142", "photo_flickr_id": "114088176", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "49585", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "paddy o'leary contemplates his next pint .", "storylet_id": "247925"}], [{"original_text": "He is so fond of the Guinness, that he has it tattooed on his face.", "album_id": "72057594084671142", "photo_flickr_id": "114088391", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "49585", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he is so fond of the guinness , that he has it tattooed on his face .", "storylet_id": "247926"}], [{"original_text": "Down another one, Paddy O'Leary!", "album_id": "72057594084671142", "photo_flickr_id": "114089836", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "49585", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "down another one , paddy o'leary !", "storylet_id": "247927"}], [{"original_text": "Paddy makes interesting decisions when he has been drinking.", "album_id": "72057594084671142", "photo_flickr_id": "114090325", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "49585", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "paddy makes interesting decisions when he has been drinking .", "storylet_id": "247928"}], [{"original_text": "Paddy looks festive in the Guinness crown.", "album_id": "72057594084671142", "photo_flickr_id": "114086407", "setting": "first-2-pick-and-tell", "worker_id": "7EO91SZZ892R7C4", "story_id": "49585", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "paddy looks festive in the guinness crown .", "storylet_id": "247929"}], [{"original_text": "Saint Paddy's Day is special to Ian since he's Irish. ", "album_id": "72057594084671142", "photo_flickr_id": "114086222", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "49586", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "saint paddy 's day is special to [male] since he 's irish .", "storylet_id": "247930"}], [{"original_text": "But lack of Irish blood didn't stop anyone else from having a good time. ", "album_id": "72057594084671142", "photo_flickr_id": "114086407", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "49586", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but lack of irish blood did n't stop anyone else from having a good time .", "storylet_id": "247931"}], [{"original_text": "His sister Moira had flown in from Ireland and she was having fun as well. ", "album_id": "72057594084671142", "photo_flickr_id": "114086554", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "49586", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his sister moira had flown in from location and she was having fun as well .", "storylet_id": "247932"}], [{"original_text": "But like I said, everyone did, Irish or not. ", "album_id": "72057594084671142", "photo_flickr_id": "114087919", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "49586", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but like i said , everyone did , irish or not .", "storylet_id": "247933"}], [{"original_text": "Then Ian got all quiet and started quoting James Joyce and things got weird. ", "album_id": "72057594084671142", "photo_flickr_id": "114088176", "setting": "first-2-pick-and-tell", "worker_id": "3EL0C3VSZQILON2", "story_id": "49586", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then [male] got all quiet and started quoting [male] [female] and things got weird .", "storylet_id": "247934"}], [{"original_text": "Looking pensive the chap gazed as he was looking into a far distant land while sporting a clover on his left cheek.", "album_id": "72057594084671142", "photo_flickr_id": "114088176", "setting": "last-3-pick-old-and-tell", "worker_id": "5IE13M8G117I2OI", "story_id": "49587", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "looking pensive the chap gazed as he was looking into a far distant land while sporting a clover on his left cheek .", "storylet_id": "247935"}], [{"original_text": "Ever pensive the fellow stroked where a beard would be and turned his gaze revealing a painted beer glass on his right cheek.", "album_id": "72057594084671142", "photo_flickr_id": "114088391", "setting": "last-3-pick-old-and-tell", "worker_id": "5IE13M8G117I2OI", "story_id": "49587", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "ever pensive the fellow stroked where a beard would be and turned his gaze revealing a painted beer glass on his right cheek .", "storylet_id": "247936"}], [{"original_text": "The first sip off the top to is always the best. The man enjoyed it with his eyes closed.", "album_id": "72057594084671142", "photo_flickr_id": "114089836", "setting": "last-3-pick-old-and-tell", "worker_id": "5IE13M8G117I2OI", "story_id": "49587", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first sip off the top to is always the best . the man enjoyed it with his eyes closed .", "storylet_id": "247937"}], [{"original_text": "Keeping with tradition a friend painted her fingernails green and gold.", "album_id": "72057594084671142", "photo_flickr_id": "114090325", "setting": "last-3-pick-old-and-tell", "worker_id": "5IE13M8G117I2OI", "story_id": "49587", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "keeping with tradition a friend painted her fingernails green and gold .", "storylet_id": "247938"}], [{"original_text": "An oversized hat is a good way to help keep the party alive.", "album_id": "72057594084671142", "photo_flickr_id": "114086407", "setting": "last-3-pick-old-and-tell", "worker_id": "5IE13M8G117I2OI", "story_id": "49587", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "an oversized hat is a good way to help keep the party alive .", "storylet_id": "247939"}], [{"original_text": "Sporting a green St. Patrick's Day hat, a man holds a stuffed animal, while his friend looks bemused.", "album_id": "72057594084671142", "photo_flickr_id": "114086222", "setting": "last-3-pick-old-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "49588", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sporting a green st. [male] 's day hat , a man holds a stuffed animal , while his friend looks bemused .", "storylet_id": "247940"}], [{"original_text": "A guy is shown up close, grinning at the camera while wearing a tall black Guinness hat.", "album_id": "72057594084671142", "photo_flickr_id": "114086407", "setting": "last-3-pick-old-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "49588", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a guy is shown up close , grinning at the camera while wearing a tall black guinness hat .", "storylet_id": "247941"}], [{"original_text": "A woman chats with a friend over a meal during the festivities.", "album_id": "72057594084671142", "photo_flickr_id": "114086554", "setting": "last-3-pick-old-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "49588", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a woman chats with a friend over a meal during the festivities .", "storylet_id": "247942"}], [{"original_text": "More people gather together and converse while drinking beer.", "album_id": "72057594084671142", "photo_flickr_id": "114087919", "setting": "last-3-pick-old-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "49588", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more people gather together and converse while drinking beer .", "storylet_id": "247943"}], [{"original_text": "With his hair pulled back, you can clearly see the shamrock painted on the side of his face as he studiously poses for the camera.", "album_id": "72057594084671142", "photo_flickr_id": "114088176", "setting": "last-3-pick-old-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "49588", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with his hair pulled back , you can clearly see the shamrock painted on the side of his face as he studiously poses for the camera .", "storylet_id": "247944"}], [{"original_text": "It is the best hat contest and it is just starting.", "album_id": "72057594084671142", "photo_flickr_id": "114086222", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49589", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is the best hat contest and it is just starting .", "storylet_id": "247945"}], [{"original_text": "First competitor, has a black hat.", "album_id": "72057594084671142", "photo_flickr_id": "114086407", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49589", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first competitor , has a black hat .", "storylet_id": "247946"}], [{"original_text": "The judge is impressed by the first contestant.", "album_id": "72057594084671142", "photo_flickr_id": "114086554", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49589", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the judge is impressed by the first contestant .", "storylet_id": "247947"}], [{"original_text": "Some fools show up without a hat but they are allowed to stay.", "album_id": "72057594084671142", "photo_flickr_id": "114087919", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49589", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some fools show up without a hat but they are allowed to stay .", "storylet_id": "247948"}], [{"original_text": "The winner strikes a pose.", "album_id": "72057594084671142", "photo_flickr_id": "114088176", "setting": "last-3-pick-old-and-tell", "worker_id": "6AKUHBB6HD79X18", "story_id": "49589", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the winner strikes a pose .", "storylet_id": "247949"}], [{"original_text": "Today is the annual Scottish pride parade in the city.", "album_id": "72057594080540770", "photo_flickr_id": "111470582", "setting": "first-2-pick-and-tell", "worker_id": "1BBYQ5N199DPCJD", "story_id": "49590", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is the annual scottish pride parade in the city .", "storylet_id": "247950"}], [{"original_text": "Men line the streets wearing their kilts with great pride.", "album_id": "72057594080540770", "photo_flickr_id": "111408058", "setting": "first-2-pick-and-tell", "worker_id": "1BBYQ5N199DPCJD", "story_id": "49590", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "men line the streets wearing their kilts with great pride .", "storylet_id": "247951"}], [{"original_text": "Beer is a fun part of the Scottish pride parade.", "album_id": "72057594080540770", "photo_flickr_id": "111407954", "setting": "first-2-pick-and-tell", "worker_id": "1BBYQ5N199DPCJD", "story_id": "49590", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "beer is a fun part of the scottish pride parade .", "storylet_id": "247952"}], [{"original_text": "This man is leading the troop of men playing their bagpipes.", "album_id": "72057594080540770", "photo_flickr_id": "111470654", "setting": "first-2-pick-and-tell", "worker_id": "1BBYQ5N199DPCJD", "story_id": "49590", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this man is leading the troop of men playing their bagpipes .", "storylet_id": "247953"}], [{"original_text": "It was a rainy day but everyone still enjoyed the sights and sounds of Scotland. ", "album_id": "72057594080540770", "photo_flickr_id": "111470624", "setting": "first-2-pick-and-tell", "worker_id": "1BBYQ5N199DPCJD", "story_id": "49590", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a rainy day but everyone still enjoyed the sights and sounds of location .", "storylet_id": "247954"}], [{"original_text": "We went to a rainy St. Patricks parade.", "album_id": "72057594080540770", "photo_flickr_id": "111407954", "setting": "first-2-pick-and-tell", "worker_id": "EYLAS1JVFU2SVOO", "story_id": "49591", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a rainy st. patricks parade .", "storylet_id": "247955"}], [{"original_text": "The highlight was the band of bag pipers.", "album_id": "72057594080540770", "photo_flickr_id": "111470582", "setting": "first-2-pick-and-tell", "worker_id": "EYLAS1JVFU2SVOO", "story_id": "49591", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the highlight was the band of bag pipers .", "storylet_id": "247956"}], [{"original_text": "They were decked out with various socks and shoes.", "album_id": "72057594080540770", "photo_flickr_id": "111408105", "setting": "first-2-pick-and-tell", "worker_id": "EYLAS1JVFU2SVOO", "story_id": "49591", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were decked out with various socks and shoes .", "storylet_id": "247957"}], [{"original_text": "These were my favorite socks at the parade.", "album_id": "72057594080540770", "photo_flickr_id": "111408129", "setting": "first-2-pick-and-tell", "worker_id": "EYLAS1JVFU2SVOO", "story_id": "49591", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these were my favorite socks at the parade .", "storylet_id": "247958"}], [{"original_text": "This gentleman was wearing those socks.", "album_id": "72057594080540770", "photo_flickr_id": "111470654", "setting": "first-2-pick-and-tell", "worker_id": "EYLAS1JVFU2SVOO", "story_id": "49591", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this gentleman was wearing those socks .", "storylet_id": "247959"}], [{"original_text": "The man wore a brave and bold uniform.", "album_id": "72057594080540770", "photo_flickr_id": "111470582", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49592", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man wore a brave and bold uniform .", "storylet_id": "247960"}], [{"original_text": "His men followed him in respect.", "album_id": "72057594080540770", "photo_flickr_id": "111408058", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49592", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his men followed him in respect .", "storylet_id": "247961"}], [{"original_text": "A man wore a cup costume and strolled around.", "album_id": "72057594080540770", "photo_flickr_id": "111407954", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49592", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man wore a cup costume and strolled around .", "storylet_id": "247962"}], [{"original_text": "The tradition was magical and I felt the culture.", "album_id": "72057594080540770", "photo_flickr_id": "111470654", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49592", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the tradition was magical and i felt the culture .", "storylet_id": "247963"}], [{"original_text": "The men played bagpipe instruments.", "album_id": "72057594080540770", "photo_flickr_id": "111470624", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49592", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the men played bagpipe instruments .", "storylet_id": "247964"}], [{"original_text": "Only men can live in the world of Guinnes.", "album_id": "72057594080540770", "photo_flickr_id": "111407954", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "49593", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "only men can live in the world of location .", "storylet_id": "247965"}], [{"original_text": "Men wear skirts.", "album_id": "72057594080540770", "photo_flickr_id": "111470582", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "49593", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "men wear skirts .", "storylet_id": "247966"}], [{"original_text": "Men weird extremely cute ssocks.", "album_id": "72057594080540770", "photo_flickr_id": "111408105", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "49593", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "men weird extremely cute ssocks .", "storylet_id": "247967"}], [{"original_text": "Men wear skirts with extremely cute socks with cute fur hanging.", "album_id": "72057594080540770", "photo_flickr_id": "111408129", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "49593", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "men wear skirts with extremely cute socks with cute fur hanging .", "storylet_id": "247968"}], [{"original_text": "We are men of Guinness. We are proud.", "album_id": "72057594080540770", "photo_flickr_id": "111470654", "setting": "last-3-pick-old-and-tell", "worker_id": "YZQEQRJ6KUFUESZ", "story_id": "49593", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we are men of guinness . we are proud .", "storylet_id": "247969"}], [{"original_text": "We watched the pied pipers march in the parade.", "album_id": "72057594080540770", "photo_flickr_id": "111470582", "setting": "last-3-pick-old-and-tell", "worker_id": "NWPIKTEZLWUSZXP", "story_id": "49594", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we watched the pied pipers march in the parade .", "storylet_id": "247970"}], [{"original_text": "They all walked in step with one another.", "album_id": "72057594080540770", "photo_flickr_id": "111408058", "setting": "last-3-pick-old-and-tell", "worker_id": "NWPIKTEZLWUSZXP", "story_id": "49594", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all walked in step with one another .", "storylet_id": "247971"}], [{"original_text": "This guy was my favorite. He looked like a big mug of beer. ", "album_id": "72057594080540770", "photo_flickr_id": "111407954", "setting": "last-3-pick-old-and-tell", "worker_id": "NWPIKTEZLWUSZXP", "story_id": "49594", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this guy was my favorite . he looked like a big mug of beer .", "storylet_id": "247972"}], [{"original_text": "The pipers played heavenly music while marching. ", "album_id": "72057594080540770", "photo_flickr_id": "111470654", "setting": "last-3-pick-old-and-tell", "worker_id": "NWPIKTEZLWUSZXP", "story_id": "49594", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pipers played heavenly music while marching .", "storylet_id": "247973"}], [{"original_text": "They marched for many blocks while they played their music.", "album_id": "72057594080540770", "photo_flickr_id": "111470624", "setting": "last-3-pick-old-and-tell", "worker_id": "NWPIKTEZLWUSZXP", "story_id": "49594", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they marched for many blocks while they played their music .", "storylet_id": "247974"}], [{"original_text": "It was a big national Holiday. ", "album_id": "72057594084559688", "photo_flickr_id": "114015831", "setting": "first-2-pick-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "49595", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a big national holiday .", "storylet_id": "247975"}], [{"original_text": "People were ready for San-Patrick Day. ", "album_id": "72057594084559688", "photo_flickr_id": "114016147", "setting": "first-2-pick-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "49595", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people were ready for san-patrick day .", "storylet_id": "247976"}], [{"original_text": "Even a performing band was in green colors. ", "album_id": "72057594084559688", "photo_flickr_id": "114016014", "setting": "first-2-pick-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "49595", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even a performing band was in green colors .", "storylet_id": "247977"}], [{"original_text": "People who didn't wear green that day deserved black and white photos.", "album_id": "72057594084559688", "photo_flickr_id": "114015936", "setting": "first-2-pick-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "49595", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people who did n't wear green that day deserved black and white photos .", "storylet_id": "247978"}], [{"original_text": "It was enormous crowd. ", "album_id": "72057594084559688", "photo_flickr_id": "114016072", "setting": "first-2-pick-and-tell", "worker_id": "WETQN2GDJ7J9S0W", "story_id": "49595", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was enormous crowd .", "storylet_id": "247979"}], [{"original_text": "Dad was so proud of us, that his smile threatened to engulf his whole face. ", "album_id": "72057594084559688", "photo_flickr_id": "114015747", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49596", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dad was so proud of us , that his smile threatened to engulf his whole face .", "storylet_id": "247980"}], [{"original_text": "We had made it to the big city. There I am, with Mitch: Isn't he darling in his suit?", "album_id": "72057594084559688", "photo_flickr_id": "114015936", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49596", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had made it to the big city . there i am , with mitch : is n't he darling in his suit ?", "storylet_id": "247981"}], [{"original_text": "There's Jim and his wife Anita; I can't believe she didn't tuck her antennas in! That's just the sort of thing the humans notice!", "album_id": "72057594084559688", "photo_flickr_id": "114016121", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49596", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there 's [male] and his wife [female] ; i ca n't believe she did n't tuck her antennas in ! that 's just the sort of thing the humans notice !", "storylet_id": "247982"}], [{"original_text": "Highly intoxicated, the Irish King indicated he'd like two more beverages, while his mates posed with him for a photograph. ", "album_id": "72057594084559688", "photo_flickr_id": "114016147", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49596", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "highly intoxicated , the irish [male] indicated he 'd like two more beverages , while his mates posed with him for a photograph .", "storylet_id": "247983"}], [{"original_text": "And there, deep in the crowd, a lone stranger held up a sign, trying to warn his peers, but to no avail. ", "album_id": "72057594084559688", "photo_flickr_id": "114015772", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49596", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and there , deep in the crowd , a lone stranger held up a sign , trying to warn his peers , but to no avail .", "storylet_id": "247984"}], [{"original_text": "The crowd for St. Patrick's Day was so crazy. I had never seen it like that before.", "album_id": "72057594084559688", "photo_flickr_id": "114015831", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49597", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowd for st. [male] 's day was so crazy . i had never seen it like that before .", "storylet_id": "247985"}], [{"original_text": "First thing I did was snap some pictures with the bros because there was no way I was going to remember the night otherwise.", "album_id": "72057594084559688", "photo_flickr_id": "114016147", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49597", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first thing i did was snap some pictures with the bros because there was no way i was going to remember the night otherwise .", "storylet_id": "247986"}], [{"original_text": "We got so wasted we decided to get on stage and sing Ice Ice Baby.", "album_id": "72057594084559688", "photo_flickr_id": "114016014", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49597", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got so wasted we decided to get on stage and sing ice ice [male] .", "storylet_id": "247987"}], [{"original_text": "At the end of the night I found a hot babe to take home with me.", "album_id": "72057594084559688", "photo_flickr_id": "114015936", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49597", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the end of the night i found a hot babe to take home with me .", "storylet_id": "247988"}], [{"original_text": "It was a great night I think. I can't really remember anything.", "album_id": "72057594084559688", "photo_flickr_id": "114016072", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49597", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great night i think . i ca n't really remember anything .", "storylet_id": "247989"}], [{"original_text": "A crowd has gathered outside to celebrate St. Patrick's Day.", "album_id": "72057594084559688", "photo_flickr_id": "114015831", "setting": "last-3-pick-old-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "49598", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a crowd has gathered outside to celebrate st. [male] 's day .", "storylet_id": "247990"}], [{"original_text": "A group of friends takes a closeup photo, with the guy in a green beer stein hat taking the middle spot.", "album_id": "72057594084559688", "photo_flickr_id": "114016147", "setting": "last-3-pick-old-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "49598", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a group of friends takes a closeup photo , with the guy in a green beer stein hat taking the middle spot .", "storylet_id": "247991"}], [{"original_text": "A band dressed in all green takes center stage for the evening's entertainment.", "album_id": "72057594084559688", "photo_flickr_id": "114016014", "setting": "last-3-pick-old-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "49598", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a band dressed in all green takes center stage for the evening 's entertainment .", "storylet_id": "247992"}], [{"original_text": "A young couple take a moment to themselves to pose on the sidewalk.", "album_id": "72057594084559688", "photo_flickr_id": "114015936", "setting": "last-3-pick-old-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "49598", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a young couple take a moment to themselves to pose on the sidewalk .", "storylet_id": "247993"}], [{"original_text": "Once more inside, the party carries on for this packed St. Paddy's Day celebration.", "album_id": "72057594084559688", "photo_flickr_id": "114016072", "setting": "last-3-pick-old-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "49598", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once more inside , the party carries on for this packed st. paddy 's day celebration .", "storylet_id": "247994"}], [{"original_text": "The city's annual beer festival kicked on Friday night. ", "album_id": "72057594084559688", "photo_flickr_id": "114015831", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49599", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city 's annual beer festival kicked on friday night .", "storylet_id": "247995"}], [{"original_text": "This group of friends celebrated with green beer.", "album_id": "72057594084559688", "photo_flickr_id": "114016147", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49599", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this group of friends celebrated with green beer .", "storylet_id": "247996"}], [{"original_text": "A band came onstage to entertain the crowd.", "album_id": "72057594084559688", "photo_flickr_id": "114016014", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49599", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a band came onstage to entertain the crowd .", "storylet_id": "247997"}], [{"original_text": "The couple enjoyed the festival but decided to make it an early night. ", "album_id": "72057594084559688", "photo_flickr_id": "114015936", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49599", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple enjoyed the festival but decided to make it an early night .", "storylet_id": "247998"}], [{"original_text": "Other people partied well into the morning with music, dancing and beer.", "album_id": "72057594084559688", "photo_flickr_id": "114016072", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49599", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "other people partied well into the morning with music , dancing and beer .", "storylet_id": "247999"}], [{"original_text": "Mr. Stoker arrived in his grey passenger vehicle, adorned with custom plates and inane stickers.", "album_id": "72057594087766263", "photo_flickr_id": "116154798", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49600", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mr. stoker arrived in his grey passenger vehicle , adorned with custom plates and inane stickers .", "storylet_id": "248000"}], [{"original_text": "His faithful servants etched his sigil upon the sand, calling upon the powers of transformation!", "album_id": "72057594087766263", "photo_flickr_id": "116154073", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49600", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his faithful servants etched his sigil upon the sand , calling upon the powers of transformation !", "storylet_id": "248001"}], [{"original_text": "In a blink of a shutter, Mr. Stoker turned into a multi-colored dragon, riding the wind eddies of the cloudy sky. ", "album_id": "72057594087766263", "photo_flickr_id": "116144448", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49600", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in a blink of a shutter , mr. stoker turned into a multi-colored dragon , riding the wind eddies of the cloudy sky .", "storylet_id": "248002"}], [{"original_text": "But alas! The sun appeared, and burned him into a little black crisp.", "album_id": "72057594087766263", "photo_flickr_id": "116151139", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49600", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but alas ! the sun appeared , and burned him into a little black crisp .", "storylet_id": "248003"}], [{"original_text": "His no longer so faithful servants quickly found a holy building to purge their souls of his depravity. ", "album_id": "72057594087766263", "photo_flickr_id": "116157183", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49600", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his no longer so faithful servants quickly found a holy building to purge their souls of his depravity .", "storylet_id": "248004"}], [{"original_text": "I thought I spotted something off in the distance.", "album_id": "72057594087766263", "photo_flickr_id": "116147419", "setting": "first-2-pick-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49601", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i thought i spotted something off in the distance .", "storylet_id": "248005"}], [{"original_text": "As it got closer I thought it didn't look like any bird I had seen in person before.", "album_id": "72057594087766263", "photo_flickr_id": "116145178", "setting": "first-2-pick-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49601", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as it got closer i thought it did n't look like any bird i had seen in person before .", "storylet_id": "248006"}], [{"original_text": "Then it got close and I could see it was a dragon.", "album_id": "72057594087766263", "photo_flickr_id": "116144448", "setting": "first-2-pick-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49601", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then it got close and i could see it was a dragon .", "storylet_id": "248007"}], [{"original_text": "We were scared so we took a huddle to make a game plan.", "album_id": "72057594087766263", "photo_flickr_id": "116154073", "setting": "first-2-pick-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49601", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were scared so we took a huddle to make a game plan .", "storylet_id": "248008"}], [{"original_text": "Then it occurred to me to call the vampire. He would know what to do.", "album_id": "72057594087766263", "photo_flickr_id": "116154798", "setting": "first-2-pick-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49601", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then it occurred to me to call the vampire . he would know what to do .", "storylet_id": "248009"}], [{"original_text": "Taking a tour in Transylvania and we come across this. Welcome home.", "album_id": "72057594087766263", "photo_flickr_id": "116154798", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49602", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "taking a tour in location and we come across this . welcome home .", "storylet_id": "248010"}], [{"original_text": "The ancient writings shown here kept us occupied for a while. We still don't know what they mean.", "album_id": "72057594087766263", "photo_flickr_id": "116154073", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49602", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ancient writings shown here kept us occupied for a while . we still do n't know what they mean .", "storylet_id": "248011"}], [{"original_text": "Someone flying a dragon kite over Dracula's castle was cool, but eerie.", "album_id": "72057594087766263", "photo_flickr_id": "116144448", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49602", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "someone flying a dragon kite over dracula 's castle was cool , but eerie .", "storylet_id": "248012"}], [{"original_text": "As the sun starts to set, we see a real bat fly over the castle.", "album_id": "72057594087766263", "photo_flickr_id": "116151139", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49602", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the sun starts to set , we see a real bat fly over the castle .", "storylet_id": "248013"}], [{"original_text": "Dracula's castle at sunset was amazing and scary. ", "album_id": "72057594087766263", "photo_flickr_id": "116157183", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49602", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dracula 's castle at sunset was amazing and scary .", "storylet_id": "248014"}], [{"original_text": "A somewhat menacing license plate...", "album_id": "72057594087766263", "photo_flickr_id": "116154798", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49603", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a somewhat menacing license plate ...", "storylet_id": "248015"}], [{"original_text": "Photo-op with the sidewalk art!", "album_id": "72057594087766263", "photo_flickr_id": "116154073", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49603", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "photo-op with the sidewalk art !", "storylet_id": "248016"}], [{"original_text": "Strange creature flying through the sky...", "album_id": "72057594087766263", "photo_flickr_id": "116144448", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49603", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "strange creature flying through the sky ...", "storylet_id": "248017"}], [{"original_text": "Flying in the distance lit by the clouded sun.", "album_id": "72057594087766263", "photo_flickr_id": "116151139", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49603", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "flying in the distance lit by the clouded sun .", "storylet_id": "248018"}], [{"original_text": "A beautiful cathedral on a beautiful day.", "album_id": "72057594087766263", "photo_flickr_id": "116157183", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49603", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a beautiful cathedral on a beautiful day .", "storylet_id": "248019"}], [{"original_text": "A group of friends and I drove to visit a church.", "album_id": "72057594087766263", "photo_flickr_id": "116154798", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49604", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends and i drove to visit a church .", "storylet_id": "248020"}], [{"original_text": "When we got there we planned are day together.", "album_id": "72057594087766263", "photo_flickr_id": "116154073", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49604", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we got there we planned are day together .", "storylet_id": "248021"}], [{"original_text": "There was a bird flying in the sky that I have never seen.", "album_id": "72057594087766263", "photo_flickr_id": "116144448", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49604", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a bird flying in the sky that i have never seen .", "storylet_id": "248022"}], [{"original_text": "The day was sunny and cloudy at the same time.", "album_id": "72057594087766263", "photo_flickr_id": "116151139", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49604", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the day was sunny and cloudy at the same time .", "storylet_id": "248023"}], [{"original_text": "When we arrived at the church it was huge.", "album_id": "72057594087766263", "photo_flickr_id": "116157183", "setting": "last-3-pick-old-and-tell", "worker_id": "TC7RGONQN55Y1DG", "story_id": "49604", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we arrived at the church it was huge .", "storylet_id": "248024"}], [{"original_text": "We started St. Patrick's day early in the morning.", "album_id": "72157594197494263", "photo_flickr_id": "188516609", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "49605", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started organization organization 's day early in the morning .", "storylet_id": "248025"}], [{"original_text": "Even the dog was excited to be Irish for a day.", "album_id": "72157594197494263", "photo_flickr_id": "188516673", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "49605", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the dog was excited to be irish for a day .", "storylet_id": "248026"}], [{"original_text": "We crowned Mary the Irish princess.", "album_id": "72157594197494263", "photo_flickr_id": "188516850", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "49605", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we crowned [female] the irish princess .", "storylet_id": "248027"}], [{"original_text": "It was a fun, boozy day.", "album_id": "72157594197494263", "photo_flickr_id": "188516920", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "49605", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a fun , boozy day .", "storylet_id": "248028"}], [{"original_text": "Mark got all the girls to kiss him by saying \"Kiss me, I'm Irish.\"", "album_id": "72157594197494263", "photo_flickr_id": "188516711", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "49605", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] got all the girls to kiss him by saying `` kiss me , i 'm irish . ''", "storylet_id": "248029"}], [{"original_text": "I had a great time at the party.", "album_id": "72157594197494263", "photo_flickr_id": "188516651", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49606", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the party .", "storylet_id": "248030"}], [{"original_text": "We all played with the dog.", "album_id": "72157594197494263", "photo_flickr_id": "188516673", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49606", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all played with the dog .", "storylet_id": "248031"}], [{"original_text": "I met a lot of new people there.", "album_id": "72157594197494263", "photo_flickr_id": "188516689", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49606", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i met a lot of new people there .", "storylet_id": "248032"}], [{"original_text": "There were many games that we played.", "album_id": "72157594197494263", "photo_flickr_id": "188516850", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49606", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many games that we played .", "storylet_id": "248033"}], [{"original_text": "Some people had a lot to drink.", "album_id": "72157594197494263", "photo_flickr_id": "188516879", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49606", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people had a lot to drink .", "storylet_id": "248034"}], [{"original_text": "We stacked the tub full of ice and brews. The party just started with a bang.", "album_id": "72157594197494263", "photo_flickr_id": "188516609", "setting": "last-3-pick-old-and-tell", "worker_id": "5IE13M8G117I2OI", "story_id": "49607", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we stacked the tub full of ice and brews . the party just started with a bang .", "storylet_id": "248035"}], [{"original_text": "Everyone got a round of beers and we all began to play drunk musical chairs.", "album_id": "72157594197494263", "photo_flickr_id": "188516673", "setting": "last-3-pick-old-and-tell", "worker_id": "5IE13M8G117I2OI", "story_id": "49607", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone got a round of beers and we all began to play drunk musical chairs .", "storylet_id": "248036"}], [{"original_text": "Then there were two and the wasted chair throwing game was finally over.", "album_id": "72157594197494263", "photo_flickr_id": "188516850", "setting": "last-3-pick-old-and-tell", "worker_id": "5IE13M8G117I2OI", "story_id": "49607", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then there were two and the wasted chair throwing game was finally over .", "storylet_id": "248037"}], [{"original_text": "After the game we all got together and played kings cup.", "album_id": "72157594197494263", "photo_flickr_id": "188516920", "setting": "last-3-pick-old-and-tell", "worker_id": "5IE13M8G117I2OI", "story_id": "49607", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the game we all got together and played kings cup .", "storylet_id": "248038"}], [{"original_text": "Daniel made a rule that ended up working in his favor very well.", "album_id": "72157594197494263", "photo_flickr_id": "188516711", "setting": "last-3-pick-old-and-tell", "worker_id": "5IE13M8G117I2OI", "story_id": "49607", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] made a rule that ended up working in his favor very well .", "storylet_id": "248039"}], [{"original_text": "Top O' the Morning to you. It's St. Patty's Day, and we begin the day with a beer bath ... literally.", "album_id": "72157594197494263", "photo_flickr_id": "188516609", "setting": "last-3-pick-old-and-tell", "worker_id": "SHF7YT4LAM2TH2A", "story_id": "49608", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "top o ' the morning to you . it 's st. [female] 's day , and we begin the day with a beer bath ... literally .", "storylet_id": "248040"}], [{"original_text": "Later in the day, a bunch of maybe-Irish, maybe-not-Irish people gather to plan the day for St. Patty's Day.", "album_id": "72157594197494263", "photo_flickr_id": "188516673", "setting": "last-3-pick-old-and-tell", "worker_id": "SHF7YT4LAM2TH2A", "story_id": "49608", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "later in the day , a bunch of maybe-irish , maybe-not-irish people gather to plan the day for st. [female] 's day .", "storylet_id": "248041"}], [{"original_text": "The group make their way to a bar and pose for pictures in their St. Patty's Day regalia.", "album_id": "72157594197494263", "photo_flickr_id": "188516850", "setting": "last-3-pick-old-and-tell", "worker_id": "SHF7YT4LAM2TH2A", "story_id": "49608", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the group make their way to a bar and pose for pictures in their st. [female] 's day regalia .", "storylet_id": "248042"}], [{"original_text": "During St. Patty's Day, EVERYONE is your friend.", "album_id": "72157594197494263", "photo_flickr_id": "188516920", "setting": "last-3-pick-old-and-tell", "worker_id": "SHF7YT4LAM2TH2A", "story_id": "49608", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "during st. [female] 's day , everyone is your friend .", "storylet_id": "248043"}], [{"original_text": "Kissing - they're Irish. Or not. It doesn't matter because everyone is Irish on St.Patty's Day.", "album_id": "72157594197494263", "photo_flickr_id": "188516711", "setting": "last-3-pick-old-and-tell", "worker_id": "SHF7YT4LAM2TH2A", "story_id": "49608", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "kissing - they 're irish . or not . it does n't matter because everyone is irish on st.patty 's day .", "storylet_id": "248044"}], [{"original_text": "Lots of drinks for the St Paddy's Day party! ", "album_id": "72157594197494263", "photo_flickr_id": "188516609", "setting": "last-3-pick-old-and-tell", "worker_id": "2PL3B0FZDPA3DFY", "story_id": "49609", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "lots of drinks for the organization organization 's day party !", "storylet_id": "248045"}], [{"original_text": "Even the dog Marnie had maybe a drink or two. ", "album_id": "72157594197494263", "photo_flickr_id": "188516673", "setting": "last-3-pick-old-and-tell", "worker_id": "2PL3B0FZDPA3DFY", "story_id": "49609", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the dog marnie had maybe a drink or two .", "storylet_id": "248046"}], [{"original_text": "Couple drinks in and James and Martha are feeling quite cozy. ", "album_id": "72157594197494263", "photo_flickr_id": "188516850", "setting": "last-3-pick-old-and-tell", "worker_id": "2PL3B0FZDPA3DFY", "story_id": "49609", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "couple drinks in and [male] and [female] are feeling quite cozy .", "storylet_id": "248047"}], [{"original_text": "A couple more drinks and Martha is hugging everybody. ", "album_id": "72157594197494263", "photo_flickr_id": "188516920", "setting": "last-3-pick-old-and-tell", "worker_id": "2PL3B0FZDPA3DFY", "story_id": "49609", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a couple more drinks and [female] is hugging everybody .", "storylet_id": "248048"}], [{"original_text": "Not to be outdone though, Nicole was out here kissing random guys. ", "album_id": "72157594197494263", "photo_flickr_id": "188516711", "setting": "last-3-pick-old-and-tell", "worker_id": "2PL3B0FZDPA3DFY", "story_id": "49609", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "not to be outdone though , [female] was out here kissing random guys .", "storylet_id": "248049"}], [{"original_text": "I went to the science fair last week.", "album_id": "72157600005042432", "photo_flickr_id": "424268036", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49610", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the science fair last week .", "storylet_id": "248050"}], [{"original_text": "There were many different booths.", "album_id": "72157600005042432", "photo_flickr_id": "424268274", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49610", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many different booths .", "storylet_id": "248051"}], [{"original_text": "I saw a lot of different equipment there.", "album_id": "72157600005042432", "photo_flickr_id": "424268441", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49610", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i saw a lot of different equipment there .", "storylet_id": "248052"}], [{"original_text": "There was also a presentation.", "album_id": "72157600005042432", "photo_flickr_id": "424575422", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49610", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also a presentation .", "storylet_id": "248053"}], [{"original_text": "It was very insightful.", "album_id": "72157600005042432", "photo_flickr_id": "424577043", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49610", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was very insightful .", "storylet_id": "248054"}], [{"original_text": "The seminar for self-help was a museum.", "album_id": "72157600005042432", "photo_flickr_id": "424268036", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49611", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the seminar for self-help was a museum .", "storylet_id": "248055"}], [{"original_text": "The whole thing was bizarre.", "album_id": "72157600005042432", "photo_flickr_id": "424268274", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49611", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the whole thing was bizarre .", "storylet_id": "248056"}], [{"original_text": "At least we got to see cool gadgets.", "album_id": "72157600005042432", "photo_flickr_id": "424268441", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49611", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at least we got to see cool gadgets .", "storylet_id": "248057"}], [{"original_text": "Some of the exhibits were really interesting.", "album_id": "72157600005042432", "photo_flickr_id": "424268657", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49611", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the exhibits were really interesting .", "storylet_id": "248058"}], [{"original_text": "The actual seminar was a bust.", "album_id": "72157600005042432", "photo_flickr_id": "424269401", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49611", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the actual seminar was a bust .", "storylet_id": "248059"}], [{"original_text": "Today we took an adult field trip to the most boring museum ever.", "album_id": "72157600005042432", "photo_flickr_id": "424268036", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49612", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we took an adult field trip to the most boring museum ever .", "storylet_id": "248060"}], [{"original_text": "They had exhibits of people just sitting around doing nothing.", "album_id": "72157600005042432", "photo_flickr_id": "424268274", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49612", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had exhibits of people just sitting around doing nothing .", "storylet_id": "248061"}], [{"original_text": "They also had a satellite which was random, but it was interesting to see.", "album_id": "72157600005042432", "photo_flickr_id": "424268441", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49612", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also had a satellite which was random , but it was interesting to see .", "storylet_id": "248062"}], [{"original_text": "There was a faux classroom where we had to listen to a lecture.", "album_id": "72157600005042432", "photo_flickr_id": "424268657", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49612", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a faux classroom where we had to listen to a lecture .", "storylet_id": "248063"}], [{"original_text": "There was even an overhead presentation. ", "album_id": "72157600005042432", "photo_flickr_id": "424269401", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49612", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was even an overhead presentation .", "storylet_id": "248064"}], [{"original_text": "I arrived for my first day of college and immediately I felt nervous.", "album_id": "72157600005042432", "photo_flickr_id": "424268036", "setting": "last-3-pick-old-and-tell", "worker_id": "5IE13M8G117I2OI", "story_id": "49613", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i arrived for my first day of college and immediately i felt nervous .", "storylet_id": "248065"}], [{"original_text": "There were so many people and the building was so large it was all somewhat overwhelming.", "album_id": "72157600005042432", "photo_flickr_id": "424268274", "setting": "last-3-pick-old-and-tell", "worker_id": "5IE13M8G117I2OI", "story_id": "49613", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many people and the building was so large it was all somewhat overwhelming .", "storylet_id": "248066"}], [{"original_text": "Then I saw a familiar piece of technology that made me feel almost at home.", "album_id": "72157600005042432", "photo_flickr_id": "424268441", "setting": "last-3-pick-old-and-tell", "worker_id": "5IE13M8G117I2OI", "story_id": "49613", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then i saw a familiar piece of technology that made me feel almost at home .", "storylet_id": "248067"}], [{"original_text": "Class began and the nerves started working against me again.", "album_id": "72157600005042432", "photo_flickr_id": "424575422", "setting": "last-3-pick-old-and-tell", "worker_id": "5IE13M8G117I2OI", "story_id": "49613", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "class began and the nerves started working against me again .", "storylet_id": "248068"}], [{"original_text": "After a short while though I realized the curriculum was very similar to what I already knew making me feel at home once again.", "album_id": "72157600005042432", "photo_flickr_id": "424577043", "setting": "last-3-pick-old-and-tell", "worker_id": "5IE13M8G117I2OI", "story_id": "49613", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a short while though i realized the curriculum was very similar to what i already knew making me feel at home once again .", "storylet_id": "248069"}], [{"original_text": "Students gather outside of the lecture hall before class.", "album_id": "72157600005042432", "photo_flickr_id": "424268036", "setting": "last-3-pick-old-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "49614", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "students gather outside of the lecture hall before class .", "storylet_id": "248070"}], [{"original_text": "A different view is shown as the picture taker stands upstairs peering down at the mingling students.", "album_id": "72157600005042432", "photo_flickr_id": "424268274", "setting": "last-3-pick-old-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "49614", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a different view is shown as the picture taker stands upstairs peering down at the mingling students .", "storylet_id": "248071"}], [{"original_text": "A replica of a ground satellite perches on a wooden stand in the corner of the room.", "album_id": "72157600005042432", "photo_flickr_id": "424268441", "setting": "last-3-pick-old-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "49614", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a replica of a ground satellite perches on a wooden stand in the corner of the room .", "storylet_id": "248072"}], [{"original_text": "Class begins as the instructor speaks to the class while standing in front of the chalkboard and projector.", "album_id": "72157600005042432", "photo_flickr_id": "424575422", "setting": "last-3-pick-old-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "49614", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "class begins as the instructor speaks to the class while standing in front of the chalkboard and projector .", "storylet_id": "248073"}], [{"original_text": "Information is shown on the overhead projector as students take notes.", "album_id": "72157600005042432", "photo_flickr_id": "424577043", "setting": "last-3-pick-old-and-tell", "worker_id": "X2VHR338MLTH9O6", "story_id": "49614", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "information is shown on the overhead projector as students take notes .", "storylet_id": "248074"}], [{"original_text": "The winter irish parade took place in December.", "album_id": "72157600005620402", "photo_flickr_id": "424544231", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49615", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the winter irish parade took place in december .", "storylet_id": "248075"}], [{"original_text": "The rain caught the people, but they had umbrellas to cover themselves.", "album_id": "72157600005620402", "photo_flickr_id": "424545395", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49615", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rain caught the people , but they had umbrellas to cover themselves .", "storylet_id": "248076"}], [{"original_text": "Even the family pets joined in to the festivites.", "album_id": "72157600005620402", "photo_flickr_id": "424542189", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49615", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the family pets joined in to the festivites .", "storylet_id": "248077"}], [{"original_text": "People had fun tooting their horns.", "album_id": "72157600005620402", "photo_flickr_id": "424543575", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49615", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people had fun tooting their horns .", "storylet_id": "248078"}], [{"original_text": "The parade ended with a band playing old irish jigs.", "album_id": "72157600005620402", "photo_flickr_id": "424541468", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49615", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the parade ended with a band playing old irish jigs .", "storylet_id": "248079"}], [{"original_text": "The fair had lots of people in cool costumes.", "album_id": "72157600005620402", "photo_flickr_id": "424542601", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "49616", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fair had lots of people in cool costumes .", "storylet_id": "248080"}], [{"original_text": "They were celebrating different holidays.", "album_id": "72157600005620402", "photo_flickr_id": "424542907", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "49616", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were celebrating different holidays .", "storylet_id": "248081"}], [{"original_text": "Even dogs were in on the fun.", "album_id": "72157600005620402", "photo_flickr_id": "424543033", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "49616", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even dogs were in on the fun .", "storylet_id": "248082"}], [{"original_text": "Some people wore silly outfits.", "album_id": "72157600005620402", "photo_flickr_id": "424542708", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "49616", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people wore silly outfits .", "storylet_id": "248083"}], [{"original_text": "Some people took it more seriously.", "album_id": "72157600005620402", "photo_flickr_id": "424545630", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "49616", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people took it more seriously .", "storylet_id": "248084"}], [{"original_text": "There were many posters brought to the event.", "album_id": "72157600005620402", "photo_flickr_id": "424544231", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49617", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many posters brought to the event .", "storylet_id": "248085"}], [{"original_text": "There were plenty of green items.", "album_id": "72157600005620402", "photo_flickr_id": "424545395", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49617", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were plenty of green items .", "storylet_id": "248086"}], [{"original_text": "The dogs even wore green leashes.", "album_id": "72157600005620402", "photo_flickr_id": "424542189", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49617", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dogs even wore green leashes .", "storylet_id": "248087"}], [{"original_text": "One fan brought a loud horn.", "album_id": "72157600005620402", "photo_flickr_id": "424543575", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49617", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one fan brought a loud horn .", "storylet_id": "248088"}], [{"original_text": "Some people gathered on the side.", "album_id": "72157600005620402", "photo_flickr_id": "424541468", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49617", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people gathered on the side .", "storylet_id": "248089"}], [{"original_text": "The Irish parade was covered in green.", "album_id": "72157600005620402", "photo_flickr_id": "424544231", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "49618", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the irish parade was covered in green .", "storylet_id": "248090"}], [{"original_text": "There was even a unicyclist.", "album_id": "72157600005620402", "photo_flickr_id": "424545395", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "49618", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was even a unicyclist .", "storylet_id": "248091"}], [{"original_text": "Even the dogs were dressed in green.", "album_id": "72157600005620402", "photo_flickr_id": "424542189", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "49618", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the dogs were dressed in green .", "storylet_id": "248092"}], [{"original_text": "The whole town came out for the festivities.", "album_id": "72157600005620402", "photo_flickr_id": "424543575", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "49618", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole town came out for the festivities .", "storylet_id": "248093"}], [{"original_text": "There was an Irish rock band performing as well.", "album_id": "72157600005620402", "photo_flickr_id": "424541468", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "49618", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was an irish rock band performing as well .", "storylet_id": "248094"}], [{"original_text": "it was st. patrick's day. ", "album_id": "72157600005620402", "photo_flickr_id": "424544231", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49619", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was st. patrick 's day .", "storylet_id": "248095"}], [{"original_text": "performers rode unicycles. ", "album_id": "72157600005620402", "photo_flickr_id": "424545395", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49619", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "performers rode unicycles .", "storylet_id": "248096"}], [{"original_text": "some people even brought their dogs. ", "album_id": "72157600005620402", "photo_flickr_id": "424542189", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49619", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people even brought their dogs .", "storylet_id": "248097"}], [{"original_text": "this man played a pipe. ", "album_id": "72157600005620402", "photo_flickr_id": "424543575", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49619", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this man played a pipe .", "storylet_id": "248098"}], [{"original_text": "some people even jammed out. ", "album_id": "72157600005620402", "photo_flickr_id": "424541468", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "49619", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people even jammed out .", "storylet_id": "248099"}], [{"original_text": "We invited lots of friends for a barbeque.", "album_id": "72157594320730897", "photo_flickr_id": "265427460", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49620", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we invited lots of friends for a barbeque .", "storylet_id": "248100"}], [{"original_text": "The fire pit was very large.", "album_id": "72157594320730897", "photo_flickr_id": "265437294", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49620", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fire pit was very large .", "storylet_id": "248101"}], [{"original_text": "We roasted hot dogs right over the flame.", "album_id": "72157594320730897", "photo_flickr_id": "270150100", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49620", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we roasted hot dogs right over the flame .", "storylet_id": "248102"}], [{"original_text": "Lots of people were happy.", "album_id": "72157594320730897", "photo_flickr_id": "270189481", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49620", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "lots of people were happy .", "storylet_id": "248103"}], [{"original_text": "And there was a lot of beer too.", "album_id": "72157594320730897", "photo_flickr_id": "276172017", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49620", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and there was a lot of beer too .", "storylet_id": "248104"}], [{"original_text": "It was our first big backyard barbeque of the summer. We invited all of our friends.", "album_id": "72157594320730897", "photo_flickr_id": "265427460", "setting": "first-2-pick-and-tell", "worker_id": "5K8U8CVA24BB89V", "story_id": "49621", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was our first big backyard barbeque of the summer . we invited all of our friends .", "storylet_id": "248105"}], [{"original_text": "We all sat around and caught up with each others' lives.", "album_id": "72157594320730897", "photo_flickr_id": "276368661", "setting": "first-2-pick-and-tell", "worker_id": "5K8U8CVA24BB89V", "story_id": "49621", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all sat around and caught up with each others ' lives .", "storylet_id": "248106"}], [{"original_text": "Dave started the fire pit. Look at those flames!", "album_id": "72157594320730897", "photo_flickr_id": "265437294", "setting": "first-2-pick-and-tell", "worker_id": "5K8U8CVA24BB89V", "story_id": "49621", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] started the fire pit . look at those flames !", "storylet_id": "248107"}], [{"original_text": "Everyone put hot dogs on skewers and roasted them over the fire.", "album_id": "72157594320730897", "photo_flickr_id": "270140939", "setting": "first-2-pick-and-tell", "worker_id": "5K8U8CVA24BB89V", "story_id": "49621", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone put hot dogs on skewers and roasted them over the fire .", "storylet_id": "248108"}], [{"original_text": "We all had a great time hanging out until very late in the night. It was a great party!", "album_id": "72157594320730897", "photo_flickr_id": "276286657", "setting": "first-2-pick-and-tell", "worker_id": "5K8U8CVA24BB89V", "story_id": "49621", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all had a great time hanging out until very late in the night . it was a great party !", "storylet_id": "248109"}], [{"original_text": "The family having a couple of drinks before our annual cook out always makes good memories.", "album_id": "72157594320730897", "photo_flickr_id": "265427460", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49622", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family having a couple of drinks before our annual cook out always makes good memories .", "storylet_id": "248110"}], [{"original_text": "Jim is always trying to blow something up. Looks like he was definitely the man for this job.", "album_id": "72157594320730897", "photo_flickr_id": "265437294", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49622", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is always trying to blow something up . looks like he was definitely the man for this job .", "storylet_id": "248111"}], [{"original_text": "Thanks to Jim everyone can now relax by the fire and roast some hotdogs.", "album_id": "72157594320730897", "photo_flickr_id": "270150100", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49622", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "thanks to [male] everyone can now relax by the fire and roast some hotdogs .", "storylet_id": "248112"}], [{"original_text": "My sister with the pyro maniac himself, Jim getting ready to Entertain us with Karoke.", "album_id": "72157594320730897", "photo_flickr_id": "270189481", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49622", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my sister with the pyro maniac himself , [male] getting ready to entertain us with karoke .", "storylet_id": "248113"}], [{"original_text": "My niece ang Jim seem to be having some creative differences before the show.", "album_id": "72157594320730897", "photo_flickr_id": "276172017", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49622", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my niece ang [male] seem to be having some creative differences before the show .", "storylet_id": "248114"}], [{"original_text": "One night, we were out at the new neighbors' place, and had a few beers and drinks while we waited for the food.", "album_id": "72157594320730897", "photo_flickr_id": "265427460", "setting": "last-3-pick-old-and-tell", "worker_id": "ITQFTYSH50MQQYC", "story_id": "49623", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one night , we were out at the new neighbors ' place , and had a few beers and drinks while we waited for the food .", "storylet_id": "248115"}], [{"original_text": "The pit master, Craig, ended up making a huge fire in a fire pit that he bought. He used some good wood that day.", "album_id": "72157594320730897", "photo_flickr_id": "265437294", "setting": "last-3-pick-old-and-tell", "worker_id": "ITQFTYSH50MQQYC", "story_id": "49623", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pit master , [male] , ended up making a huge fire in a fire pit that he bought . he used some good wood that day .", "storylet_id": "248116"}], [{"original_text": "The spread was crazy, but I ended up sticking towards eating wood-smoked hot dogs.", "album_id": "72157594320730897", "photo_flickr_id": "270150100", "setting": "last-3-pick-old-and-tell", "worker_id": "ITQFTYSH50MQQYC", "story_id": "49623", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the spread was crazy , but i ended up sticking towards eating wood-smoked hot dogs .", "storylet_id": "248117"}], [{"original_text": "It was such a good time that I ended up meeting Sarah. We ended up going back to my place for some coffee.", "album_id": "72157594320730897", "photo_flickr_id": "270189481", "setting": "last-3-pick-old-and-tell", "worker_id": "ITQFTYSH50MQQYC", "story_id": "49623", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was such a good time that i ended up meeting [female] . we ended up going back to my place for some coffee .", "storylet_id": "248118"}], [{"original_text": "Cynthia was very excited that I had found a woman to suit my needs.", "album_id": "72157594320730897", "photo_flickr_id": "276172017", "setting": "last-3-pick-old-and-tell", "worker_id": "ITQFTYSH50MQQYC", "story_id": "49623", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] was very excited that i had found a woman to suit my needs .", "storylet_id": "248119"}], [{"original_text": "The group had a few beers before it was time for dinner.", "album_id": "72157594320730897", "photo_flickr_id": "265427460", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49624", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group had a few beers before it was time for dinner .", "storylet_id": "248120"}], [{"original_text": "Then they got the fire ready for cooking food.", "album_id": "72157594320730897", "photo_flickr_id": "265437294", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49624", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then they got the fire ready for cooking food .", "storylet_id": "248121"}], [{"original_text": "After that they roasted hot dogs over the open fire.", "album_id": "72157594320730897", "photo_flickr_id": "270150100", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49624", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that they roasted hot dogs over the open fire .", "storylet_id": "248122"}], [{"original_text": "The group was so happy to see each other.", "album_id": "72157594320730897", "photo_flickr_id": "270189481", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49624", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the group was so happy to see each other .", "storylet_id": "248123"}], [{"original_text": "By the end of the night, everyone had a really good time.", "album_id": "72157594320730897", "photo_flickr_id": "276172017", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49624", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of the night , everyone had a really good time .", "storylet_id": "248124"}], [{"original_text": "The mood of this private party was jovial and quite cheerful.", "album_id": "72057594059970350", "photo_flickr_id": "96000272", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "49625", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the mood of this private party was jovial and quite cheerful .", "storylet_id": "248125"}], [{"original_text": "As you can see, plenty of refreshment was available.", "album_id": "72057594059970350", "photo_flickr_id": "96003230", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "49625", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as you can see , plenty of refreshment was available .", "storylet_id": "248126"}], [{"original_text": "The party goers were all talking and having a great time.", "album_id": "72057594059970350", "photo_flickr_id": "96047567", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "49625", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the party goers were all talking and having a great time .", "storylet_id": "248127"}], [{"original_text": "The party even included some video games for everyone to play.", "album_id": "72057594059970350", "photo_flickr_id": "96126806", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "49625", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the party even included some video games for everyone to play .", "storylet_id": "248128"}], [{"original_text": "This game I found particularly interesting and challenging.", "album_id": "72057594059970350", "photo_flickr_id": "96125013", "setting": "first-2-pick-and-tell", "worker_id": "BH573MD8SUJUSVE", "story_id": "49625", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this game i found particularly interesting and challenging .", "storylet_id": "248129"}], [{"original_text": "This is a party that a my friends and I went to.", "album_id": "72057594059970350", "photo_flickr_id": "96047567", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "49626", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a party that a my friends and i went to .", "storylet_id": "248130"}], [{"original_text": "We all watched people playing video games all night.", "album_id": "72057594059970350", "photo_flickr_id": "96043979", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "49626", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all watched people playing video games all night .", "storylet_id": "248131"}], [{"original_text": "Here are a couple people playing the games.", "album_id": "72057594059970350", "photo_flickr_id": "96049783", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "49626", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here are a couple people playing the games .", "storylet_id": "248132"}], [{"original_text": "This dog was too cute to not take a picture of him.", "album_id": "72057594059970350", "photo_flickr_id": "96050477", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "49626", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this dog was too cute to not take a picture of him .", "storylet_id": "248133"}], [{"original_text": "We played some ping pong before heading home for the night.", "album_id": "72057594059970350", "photo_flickr_id": "96127933", "setting": "first-2-pick-and-tell", "worker_id": "W4V8YVSCD3SR7TI", "story_id": "49626", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we played some ping pong before heading home for the night .", "storylet_id": "248134"}], [{"original_text": "Friends gathered in the basement for a night of games and fun.", "album_id": "72057594059970350", "photo_flickr_id": "96000272", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49627", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends gathered in the basement for a night of games and fun .", "storylet_id": "248135"}], [{"original_text": "There is plenty of alcohol for a good time.", "album_id": "72057594059970350", "photo_flickr_id": "96003230", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49627", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is plenty of alcohol for a good time .", "storylet_id": "248136"}], [{"original_text": "The friends catch up and start drinking out of blue cups.", "album_id": "72057594059970350", "photo_flickr_id": "96047567", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49627", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the friends catch up and start drinking out of blue cups .", "storylet_id": "248137"}], [{"original_text": "Then the games begin on the television.", "album_id": "72057594059970350", "photo_flickr_id": "96126806", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49627", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then the games begin on the television .", "storylet_id": "248138"}], [{"original_text": "The simple game keeps the party goers busy and occupied.", "album_id": "72057594059970350", "photo_flickr_id": "96125013", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "49627", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the simple game keeps the party goers busy and occupied .", "storylet_id": "248139"}], [{"original_text": "We had a party at the student center.", "album_id": "72057594059970350", "photo_flickr_id": "96047567", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49628", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a party at the student center .", "storylet_id": "248140"}], [{"original_text": "It was a lot of fun watching the ballgame with friends.", "album_id": "72057594059970350", "photo_flickr_id": "96043979", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49628", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a lot of fun watching the ballgame with friends .", "storylet_id": "248141"}], [{"original_text": "A few guys had video games going.", "album_id": "72057594059970350", "photo_flickr_id": "96049783", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49628", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few guys had video games going .", "storylet_id": "248142"}], [{"original_text": "Our mascot got his dinner.", "album_id": "72057594059970350", "photo_flickr_id": "96050477", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49628", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our mascot got his dinner .", "storylet_id": "248143"}], [{"original_text": "Ping pong was a big hit and much more fun than the video games.", "album_id": "72057594059970350", "photo_flickr_id": "96127933", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49628", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ping pong was a big hit and much more fun than the video games .", "storylet_id": "248144"}], [{"original_text": "Trying to talk everyone into beer pong.", "album_id": "72057594059970350", "photo_flickr_id": "96000272", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "49629", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "trying to talk everyone into beer pong .", "storylet_id": "248145"}], [{"original_text": "Seemed like everyone had already drunk most of the liquor.", "album_id": "72057594059970350", "photo_flickr_id": "96003230", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "49629", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "seemed like everyone had already drunk most of the liquor .", "storylet_id": "248146"}], [{"original_text": "As more people showed up so did more drinks.", "album_id": "72057594059970350", "photo_flickr_id": "96047567", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "49629", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as more people showed up so did more drinks .", "storylet_id": "248147"}], [{"original_text": "By the end, we had started beer gaming.", "album_id": "72057594059970350", "photo_flickr_id": "96126806", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "49629", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "by the end , we had started beer gaming .", "storylet_id": "248148"}], [{"original_text": "Not to mention, it took five drunk guys two hours to find the oldest game system in town.", "album_id": "72057594059970350", "photo_flickr_id": "96125013", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "49629", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "not to mention , it took five drunk guys two hours to find the oldest game system in town .", "storylet_id": "248149"}], [{"original_text": "We were all prepared for the big game. ", "album_id": "72057594059978402", "photo_flickr_id": "96146749", "setting": "first-2-pick-and-tell", "worker_id": "LOBI5AE428LIS76", "story_id": "49630", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were all prepared for the big game .", "storylet_id": "248150"}], [{"original_text": "The players seemed to be having fun too. ", "album_id": "72057594059978402", "photo_flickr_id": "96148648", "setting": "first-2-pick-and-tell", "worker_id": "LOBI5AE428LIS76", "story_id": "49630", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the players seemed to be having fun too .", "storylet_id": "248151"}], [{"original_text": "But once they really began, there was a change in effort. ", "album_id": "72057594059978402", "photo_flickr_id": "96149970", "setting": "first-2-pick-and-tell", "worker_id": "LOBI5AE428LIS76", "story_id": "49630", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but once they really began , there was a change in effort .", "storylet_id": "248152"}], [{"original_text": "They even had a tiny guest star!", "album_id": "72057594059978402", "photo_flickr_id": "96149168", "setting": "first-2-pick-and-tell", "worker_id": "LOBI5AE428LIS76", "story_id": "49630", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even had a tiny guest star !", "storylet_id": "248153"}], [{"original_text": "I'm really glad I was able to get a picture with one of the players after it was over.", "album_id": "72057594059978402", "photo_flickr_id": "96149295", "setting": "first-2-pick-and-tell", "worker_id": "LOBI5AE428LIS76", "story_id": "49630", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm really glad i was able to get a picture with one of the players after it was over .", "storylet_id": "248154"}], [{"original_text": "The city is busy with people.", "album_id": "72057594059978402", "photo_flickr_id": "96138209", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49631", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city is busy with people .", "storylet_id": "248155"}], [{"original_text": "It is dark but the people are having a great time.", "album_id": "72057594059978402", "photo_flickr_id": "96138681", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49631", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is dark but the people are having a great time .", "storylet_id": "248156"}], [{"original_text": "The building outside the city is snowy.", "album_id": "72057594059978402", "photo_flickr_id": "96147464", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49631", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the building outside the city is snowy .", "storylet_id": "248157"}], [{"original_text": "A small camp is going on inside for people to work on their football skills.", "album_id": "72057594059978402", "photo_flickr_id": "96148428", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49631", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a small camp is going on inside for people to work on their football skills .", "storylet_id": "248158"}], [{"original_text": "They get to train with local football players.", "album_id": "72057594059978402", "photo_flickr_id": "96148648", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49631", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they get to train with local football players .", "storylet_id": "248159"}], [{"original_text": "Ahh a night of good food.", "album_id": "72057594059978402", "photo_flickr_id": "96138209", "setting": "last-3-pick-old-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "49632", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "ahh a night of good food .", "storylet_id": "248160"}], [{"original_text": "And outdoor activities while we enjoy our visit to Vegas.", "album_id": "72057594059978402", "photo_flickr_id": "96138681", "setting": "last-3-pick-old-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "49632", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and outdoor activities while we enjoy our visit to vegas .", "storylet_id": "248161"}], [{"original_text": "The weather isn't spectacular.", "album_id": "72057594059978402", "photo_flickr_id": "96147464", "setting": "last-3-pick-old-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "49632", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the weather is n't spectacular .", "storylet_id": "248162"}], [{"original_text": "So we go to the NFL indoor field.", "album_id": "72057594059978402", "photo_flickr_id": "96148428", "setting": "last-3-pick-old-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "49632", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so we go to the organization indoor field .", "storylet_id": "248163"}], [{"original_text": "It got crazy real fast there!", "album_id": "72057594059978402", "photo_flickr_id": "96148648", "setting": "last-3-pick-old-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "49632", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it got crazy real fast there !", "storylet_id": "248164"}], [{"original_text": "The family went to a local football game. ", "album_id": "72057594059978402", "photo_flickr_id": "96146749", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49633", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went to a local football game .", "storylet_id": "248165"}], [{"original_text": "Before the game, the kids played on the course. ", "album_id": "72057594059978402", "photo_flickr_id": "96148648", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49633", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before the game , the kids played on the course .", "storylet_id": "248166"}], [{"original_text": "Everyone had a good time chasing each other. ", "album_id": "72057594059978402", "photo_flickr_id": "96149970", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49633", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone had a good time chasing each other .", "storylet_id": "248167"}], [{"original_text": "One little kid had the ball, and made a touch down. ", "album_id": "72057594059978402", "photo_flickr_id": "96149168", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49633", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one little kid had the ball , and made a touch down .", "storylet_id": "248168"}], [{"original_text": "Some of the players were kind enough to take a picture with us. ", "album_id": "72057594059978402", "photo_flickr_id": "96149295", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49633", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the players were kind enough to take a picture with us .", "storylet_id": "248169"}], [{"original_text": "We headed out on the town at night.", "album_id": "72057594059978402", "photo_flickr_id": "96138209", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49634", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we headed out on the town at night .", "storylet_id": "248170"}], [{"original_text": "It was lit up beautifully.", "album_id": "72057594059978402", "photo_flickr_id": "96138681", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49634", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was lit up beautifully .", "storylet_id": "248171"}], [{"original_text": "We walked the town a lot during that time.", "album_id": "72057594059978402", "photo_flickr_id": "96147464", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49634", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we walked the town a lot during that time .", "storylet_id": "248172"}], [{"original_text": "We went to a few awesome exhibits.", "album_id": "72057594059978402", "photo_flickr_id": "96148428", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49634", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went to a few awesome exhibits .", "storylet_id": "248173"}], [{"original_text": "It got a little weird sometimes.", "album_id": "72057594059978402", "photo_flickr_id": "96148648", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49634", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it got a little weird sometimes .", "storylet_id": "248174"}], [{"original_text": "Grandpa kept going to the drinks table for booze refills.", "album_id": "72157594179308414", "photo_flickr_id": "97346903", "setting": "first-2-pick-and-tell", "worker_id": "81UUHOWH4B38LAZ", "story_id": "49635", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandpa kept going to the drinks table for booze refills .", "storylet_id": "248175"}], [{"original_text": "When his grandson tried to grab a beer from the guest, they knew there was a problem.", "album_id": "72157594179308414", "photo_flickr_id": "97346727", "setting": "first-2-pick-and-tell", "worker_id": "81UUHOWH4B38LAZ", "story_id": "49635", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when his grandson tried to grab a beer from the guest , they knew there was a problem .", "storylet_id": "248176"}], [{"original_text": "Grandma took the boy to another room and called for help. ", "album_id": "72157594179308414", "photo_flickr_id": "97346244", "setting": "first-2-pick-and-tell", "worker_id": "81UUHOWH4B38LAZ", "story_id": "49635", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandma took the boy to another room and called for help .", "storylet_id": "248177"}], [{"original_text": "The next day they all attended the AA meeting. ", "album_id": "72157594179308414", "photo_flickr_id": "97346624", "setting": "first-2-pick-and-tell", "worker_id": "81UUHOWH4B38LAZ", "story_id": "49635", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next day they all attended the aa meeting .", "storylet_id": "248178"}], [{"original_text": "At 30 days sober, Jeb got a prize. ", "album_id": "72157594179308414", "photo_flickr_id": "97342851", "setting": "first-2-pick-and-tell", "worker_id": "81UUHOWH4B38LAZ", "story_id": "49635", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at 30 days sober , jeb got a prize .", "storylet_id": "248179"}], [{"original_text": "Superbowl Sunday is a day when many people have parties. ", "album_id": "72157594179308414", "photo_flickr_id": "97346903", "setting": "first-2-pick-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "49636", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "superbowl sunday is a day when many people have parties .", "storylet_id": "248180"}], [{"original_text": "Friends and family gather to watch the game.", "album_id": "72157594179308414", "photo_flickr_id": "97346318", "setting": "first-2-pick-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "49636", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "friends and family gather to watch the game .", "storylet_id": "248181"}], [{"original_text": "It doesn't matter if their favorite team is playing or not, the game is exciting for everyone.", "album_id": "72157594179308414", "photo_flickr_id": "96873632", "setting": "first-2-pick-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "49636", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it does n't matter if their favorite team is playing or not , the game is exciting for everyone .", "storylet_id": "248182"}], [{"original_text": "People will stay glued to the television. ", "album_id": "72157594179308414", "photo_flickr_id": "97345744", "setting": "first-2-pick-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "49636", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people will stay glued to the television .", "storylet_id": "248183"}], [{"original_text": "Whether you have a large gathering or not, it can be a great time. ", "album_id": "72157594179308414", "photo_flickr_id": "97342573", "setting": "first-2-pick-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "49636", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "whether you have a large gathering or not , it can be a great time .", "storylet_id": "248184"}], [{"original_text": "It was dad's 74 birthday.", "album_id": "72157594179308414", "photo_flickr_id": "97346903", "setting": "last-3-pick-old-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "49637", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was dad 's 74 birthday .", "storylet_id": "248185"}], [{"original_text": "Almost all the immediate family showed up to celebrate. ", "album_id": "72157594179308414", "photo_flickr_id": "97346318", "setting": "last-3-pick-old-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "49637", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "almost all the immediate family showed up to celebrate .", "storylet_id": "248186"}], [{"original_text": "Uncle frank got a little to into the game. Like always.", "album_id": "72157594179308414", "photo_flickr_id": "96873632", "setting": "last-3-pick-old-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "49637", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "uncle frank got a little to into the game . like always .", "storylet_id": "248187"}], [{"original_text": "It was karaoke time one of Franks favorite games.", "album_id": "72157594179308414", "photo_flickr_id": "97345744", "setting": "last-3-pick-old-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "49637", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was karaoke time one of franks favorite games .", "storylet_id": "248188"}], [{"original_text": "When he started to sing everyone ran away. The driveway was gridlocked so many people was leaving.", "album_id": "72157594179308414", "photo_flickr_id": "97342573", "setting": "last-3-pick-old-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "49637", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when he started to sing everyone ran away . the driveway was gridlocked so many people was leaving .", "storylet_id": "248189"}], [{"original_text": "Uncle George was in charge of the drinks for the Superbowl party.", "album_id": "72157594179308414", "photo_flickr_id": "97346903", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "49638", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "uncle [male] was in charge of the drinks for the superbowl party .", "storylet_id": "248190"}], [{"original_text": "My siblings were all excited for the game.", "album_id": "72157594179308414", "photo_flickr_id": "97346318", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "49638", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my siblings were all excited for the game .", "storylet_id": "248191"}], [{"original_text": "A missed pass had everyone groaning.", "album_id": "72157594179308414", "photo_flickr_id": "96873632", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "49638", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a missed pass had everyone groaning .", "storylet_id": "248192"}], [{"original_text": "Almost everyone was absorbed by the game except Mom.", "album_id": "72157594179308414", "photo_flickr_id": "97345744", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "49638", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "almost everyone was absorbed by the game except mom .", "storylet_id": "248193"}], [{"original_text": "Cousins Robert and Frankie were relegated to the basement because they were Steeler fans.", "album_id": "72157594179308414", "photo_flickr_id": "97342573", "setting": "last-3-pick-old-and-tell", "worker_id": "RM4OT4HO9S39KV4", "story_id": "49638", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "cousins [male] and [male] were relegated to the basement because they were steeler fans .", "storylet_id": "248194"}], [{"original_text": "Dad, ready for the game, his face when i told him it was cancelled.", "album_id": "72157594179308414", "photo_flickr_id": "97346903", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "49639", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dad , ready for the game , his face when i told him it was cancelled .", "storylet_id": "248195"}], [{"original_text": "Caught little man trying to steal some drinks.", "album_id": "72157594179308414", "photo_flickr_id": "97346727", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "49639", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "caught little man trying to steal some drinks .", "storylet_id": "248196"}], [{"original_text": "Mom done such a great job with the kids.", "album_id": "72157594179308414", "photo_flickr_id": "97346244", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "49639", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom done such a great job with the kids .", "storylet_id": "248197"}], [{"original_text": "The game was on, but the guys kept shushing us the whole time.", "album_id": "72157594179308414", "photo_flickr_id": "97346624", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "49639", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the game was on , but the guys kept shushing us the whole time .", "storylet_id": "248198"}], [{"original_text": "They was fine after their team won.", "album_id": "72157594179308414", "photo_flickr_id": "97342851", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "49639", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they was fine after their team won .", "storylet_id": "248199"}], [{"original_text": "Brad is getting ready to have a few friends over to drink and hangout. ", "album_id": "72157594198881999", "photo_flickr_id": "189401930", "setting": "first-2-pick-and-tell", "worker_id": "1BBYQ5N199DPCJD", "story_id": "49640", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is getting ready to have a few friends over to drink and hangout .", "storylet_id": "248200"}], [{"original_text": "John is on his way to Brad's to see some of his old college friends.", "album_id": "72157594198881999", "photo_flickr_id": "189401854", "setting": "first-2-pick-and-tell", "worker_id": "1BBYQ5N199DPCJD", "story_id": "49640", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is on his way to [male] 's to see some of his old college friends .", "storylet_id": "248201"}], [{"original_text": "Some friends have already arrived and begun drinking.", "album_id": "72157594198881999", "photo_flickr_id": "189401881", "setting": "first-2-pick-and-tell", "worker_id": "1BBYQ5N199DPCJD", "story_id": "49640", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some friends have already arrived and begun drinking .", "storylet_id": "248202"}], [{"original_text": "Once the girls arrive they take some photos posing together.", "album_id": "72157594198881999", "photo_flickr_id": "189401943", "setting": "first-2-pick-and-tell", "worker_id": "1BBYQ5N199DPCJD", "story_id": "49640", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once the girls arrive they take some photos posing together .", "storylet_id": "248203"}], [{"original_text": "By the end of it all, Steve is passed out in a recliner while everyone else has left.", "album_id": "72157594198881999", "photo_flickr_id": "189401909", "setting": "first-2-pick-and-tell", "worker_id": "1BBYQ5N199DPCJD", "story_id": "49640", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of it all , [male] is passed out in a recliner while everyone else has left .", "storylet_id": "248204"}], [{"original_text": "the group took mushrooms", "album_id": "72157594198881999", "photo_flickr_id": "189401869", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49641", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group took mushrooms", "storylet_id": "248205"}], [{"original_text": "they all got wierd", "album_id": "72157594198881999", "photo_flickr_id": "189401903", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49641", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all got wierd", "storylet_id": "248206"}], [{"original_text": "everyone was having so much fun", "album_id": "72157594198881999", "photo_flickr_id": "189401921", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49641", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was having so much fun", "storylet_id": "248207"}], [{"original_text": "there was funny stuff happening", "album_id": "72157594198881999", "photo_flickr_id": "189401930", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49641", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was funny stuff happening", "storylet_id": "248208"}], [{"original_text": "but this picture is great", "album_id": "72157594198881999", "photo_flickr_id": "189396627", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49641", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but this picture is great", "storylet_id": "248209"}], [{"original_text": "When we got to our friend's apartment we went into the kitchen to start developing some of the film for the pictures we took. ", "album_id": "72157594198881999", "photo_flickr_id": "189401930", "setting": "last-3-pick-old-and-tell", "worker_id": "F6MXET3UND9GNDK", "story_id": "49642", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when we got to our friend 's apartment we went into the kitchen to start developing some of the film for the pictures we took .", "storylet_id": "248210"}], [{"original_text": "John apparently isn't a safe driver because he likes to take pictures when he's driving. ", "album_id": "72157594198881999", "photo_flickr_id": "189401854", "setting": "last-3-pick-old-and-tell", "worker_id": "F6MXET3UND9GNDK", "story_id": "49642", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] apparently is n't a safe driver because he likes to take pictures when he 's driving .", "storylet_id": "248211"}], [{"original_text": "Most of the pictures just showed the guys sitting on the couch hanging out. ", "album_id": "72157594198881999", "photo_flickr_id": "189401881", "setting": "last-3-pick-old-and-tell", "worker_id": "F6MXET3UND9GNDK", "story_id": "49642", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most of the pictures just showed the guys sitting on the couch hanging out .", "storylet_id": "248212"}], [{"original_text": "Their girlfriends must have gotten a hold of the camera and took some selfies. ", "album_id": "72157594198881999", "photo_flickr_id": "189401943", "setting": "last-3-pick-old-and-tell", "worker_id": "F6MXET3UND9GNDK", "story_id": "49642", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their girlfriends must have gotten a hold of the camera and took some selfies .", "storylet_id": "248213"}], [{"original_text": "One of our friends isn't very lively during parties and often times falls asleep. ", "album_id": "72157594198881999", "photo_flickr_id": "189401909", "setting": "last-3-pick-old-and-tell", "worker_id": "F6MXET3UND9GNDK", "story_id": "49642", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of our friends is n't very lively during parties and often times falls asleep .", "storylet_id": "248214"}], [{"original_text": "Busted surfing porn. ", "album_id": "72157594198881999", "photo_flickr_id": "189401869", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49643", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "busted surfing porn .", "storylet_id": "248215"}], [{"original_text": "They all laughed at him. ", "album_id": "72157594198881999", "photo_flickr_id": "189401903", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49643", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all laughed at him .", "storylet_id": "248216"}], [{"original_text": "His girl friend didn't mind though, in fact, it turned her on. ", "album_id": "72157594198881999", "photo_flickr_id": "189401921", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49643", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his girl friend did n't mind though , in fact , it turned her on .", "storylet_id": "248217"}], [{"original_text": "She kind of liked this new friend he had brought over. ", "album_id": "72157594198881999", "photo_flickr_id": "189401930", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49643", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she kind of liked this new friend he had brought over .", "storylet_id": "248218"}], [{"original_text": "In fact, she liked him more than just a little.", "album_id": "72157594198881999", "photo_flickr_id": "189396627", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "49643", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in fact , she liked him more than just a little .", "storylet_id": "248219"}], [{"original_text": "The girl was in the doorway", "album_id": "72157594198881999", "photo_flickr_id": "189401930", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49644", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girl was in the doorway", "storylet_id": "248220"}], [{"original_text": "and the man was driving.", "album_id": "72157594198881999", "photo_flickr_id": "189401854", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49644", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the man was driving .", "storylet_id": "248221"}], [{"original_text": "The people were happy", "album_id": "72157594198881999", "photo_flickr_id": "189401881", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49644", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people were happy", "storylet_id": "248222"}], [{"original_text": "that they cuddled", "album_id": "72157594198881999", "photo_flickr_id": "189401943", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49644", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that they cuddled", "storylet_id": "248223"}], [{"original_text": "and the man was sleeping.", "album_id": "72157594198881999", "photo_flickr_id": "189401909", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49644", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the man was sleeping .", "storylet_id": "248224"}], [{"original_text": "My sister announced that she is engaged to be married.", "album_id": "72157594548530232", "photo_flickr_id": "397794451", "setting": "first-2-pick-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "49645", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister announced that she is engaged to be married .", "storylet_id": "248225"}], [{"original_text": "So our family got together...", "album_id": "72157594548530232", "photo_flickr_id": "397792698", "setting": "first-2-pick-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "49645", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so our family got together ...", "storylet_id": "248226"}], [{"original_text": "With his family to throw them a \"Welcome To The Family\" Dinner.", "album_id": "72157594548530232", "photo_flickr_id": "397793195", "setting": "first-2-pick-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "49645", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "with his family to throw them a `` welcome to the family '' dinner .", "storylet_id": "248227"}], [{"original_text": "It was a huge success! Wow our big family could actually get bigger?", "album_id": "72157594548530232", "photo_flickr_id": "397790269", "setting": "first-2-pick-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "49645", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a huge success ! wow our big family could actually get bigger ?", "storylet_id": "248228"}], [{"original_text": "I think the newly engaged couple were really surprised! Here's to a long and happy Marriage!", "album_id": "72157594548530232", "photo_flickr_id": "397791665", "setting": "first-2-pick-and-tell", "worker_id": "3CWDJP0J767QAM9", "story_id": "49645", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think the newly engaged couple were really surprised ! here 's to a long and happy marriage !", "storylet_id": "248229"}], [{"original_text": "On St. Patrick's Day we whipped up a batch of green eggs and ham.", "album_id": "72157594548530232", "photo_flickr_id": "397789455", "setting": "first-2-pick-and-tell", "worker_id": "Q16Z61ZGV9VREGA", "story_id": "49646", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on st. [male] 's day we whipped up a batch of green eggs and ham .", "storylet_id": "248230"}], [{"original_text": "Then we cut our ham in the shape of clovers.", "album_id": "72157594548530232", "photo_flickr_id": "397789910", "setting": "first-2-pick-and-tell", "worker_id": "Q16Z61ZGV9VREGA", "story_id": "49646", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we cut our ham in the shape of clovers .", "storylet_id": "248231"}], [{"original_text": "It was a great breakfast to honor the occasion. ", "album_id": "72157594548530232", "photo_flickr_id": "397790269", "setting": "first-2-pick-and-tell", "worker_id": "Q16Z61ZGV9VREGA", "story_id": "49646", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a great breakfast to honor the occasion .", "storylet_id": "248232"}], [{"original_text": "We then proceeded to the parade.", "album_id": "72157594548530232", "photo_flickr_id": "397792121", "setting": "first-2-pick-and-tell", "worker_id": "Q16Z61ZGV9VREGA", "story_id": "49646", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we then proceeded to the parade .", "storylet_id": "248233"}], [{"original_text": "The music was great, and the band did a great job. ", "album_id": "72157594548530232", "photo_flickr_id": "397793596", "setting": "first-2-pick-and-tell", "worker_id": "Q16Z61ZGV9VREGA", "story_id": "49646", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the music was great , and the band did a great job .", "storylet_id": "248234"}], [{"original_text": "In the living room, there was a great atmosphere.", "album_id": "72157594548530232", "photo_flickr_id": "397794451", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49647", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the living room , there was a great atmosphere .", "storylet_id": "248235"}], [{"original_text": "My family met in the middle to take pictures.", "album_id": "72157594548530232", "photo_flickr_id": "397792698", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49647", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my family met in the middle to take pictures .", "storylet_id": "248236"}], [{"original_text": "We all posed together in unison.", "album_id": "72157594548530232", "photo_flickr_id": "397793195", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49647", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all posed together in unison .", "storylet_id": "248237"}], [{"original_text": "The living room and the kitchen were open.", "album_id": "72157594548530232", "photo_flickr_id": "397790269", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49647", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the living room and the kitchen were open .", "storylet_id": "248238"}], [{"original_text": "We had a lovely event on that night.", "album_id": "72157594548530232", "photo_flickr_id": "397791665", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "49647", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a lovely event on that night .", "storylet_id": "248239"}], [{"original_text": "The whole family met at their favorite restaurant.", "album_id": "72157594548530232", "photo_flickr_id": "397789455", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49648", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family met at their favorite restaurant .", "storylet_id": "248240"}], [{"original_text": "All of the brothers were excited to see each other.", "album_id": "72157594548530232", "photo_flickr_id": "397789910", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49648", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the brothers were excited to see each other .", "storylet_id": "248241"}], [{"original_text": "Everyone was happy to get the whole extended family together.", "album_id": "72157594548530232", "photo_flickr_id": "397790269", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49648", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was happy to get the whole extended family together .", "storylet_id": "248242"}], [{"original_text": "Mom and her baby both ate a lot. ", "album_id": "72157594548530232", "photo_flickr_id": "397792121", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49648", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom and her baby both ate a lot .", "storylet_id": "248243"}], [{"original_text": "Everyone had a fun time.", "album_id": "72157594548530232", "photo_flickr_id": "397793596", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49648", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a fun time .", "storylet_id": "248244"}], [{"original_text": "My family decided to my brother's graduation. ", "album_id": "72157594548530232", "photo_flickr_id": "397789455", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "49649", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family decided to my brother 's graduation .", "storylet_id": "248245"}], [{"original_text": "Our cousins came over to watch movies and play games. ", "album_id": "72157594548530232", "photo_flickr_id": "397789910", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "49649", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our cousins came over to watch movies and play games .", "storylet_id": "248246"}], [{"original_text": "The lot of us ate lunch and took a family photo. ", "album_id": "72157594548530232", "photo_flickr_id": "397790269", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "49649", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lot of us ate lunch and took a family photo .", "storylet_id": "248247"}], [{"original_text": "That was my brother as a baby being held by our mom. ", "album_id": "72157594548530232", "photo_flickr_id": "397792121", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "49649", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that was my brother as a baby being held by our mom .", "storylet_id": "248248"}], [{"original_text": "At night our relatives left and we enjoyed a nice quiet dinner. It was a nice day. ", "album_id": "72157594548530232", "photo_flickr_id": "397793596", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "49649", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night our relatives left and we enjoyed a nice quiet dinner . it was a nice day .", "storylet_id": "248249"}], [{"original_text": "I put a lot of bacon on the turkey.", "album_id": "1437238", "photo_flickr_id": "66595026", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49650", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i put a lot of bacon on the turkey .", "storylet_id": "248250"}], [{"original_text": "I had to cook it for many hours.", "album_id": "1437238", "photo_flickr_id": "66595047", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49650", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had to cook it for many hours .", "storylet_id": "248251"}], [{"original_text": "I also made sure to have some vegetables.", "album_id": "1437238", "photo_flickr_id": "69252331", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49650", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also made sure to have some vegetables .", "storylet_id": "248252"}], [{"original_text": "I also included some citrus.", "album_id": "1437238", "photo_flickr_id": "69252425", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49650", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also included some citrus .", "storylet_id": "248253"}], [{"original_text": "The turkey turned out great!", "album_id": "1437238", "photo_flickr_id": "69252370", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49650", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the turkey turned out great !", "storylet_id": "248254"}], [{"original_text": "We took the chicken out of the oven. ", "album_id": "1437238", "photo_flickr_id": "66586383", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49651", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took the chicken out of the oven .", "storylet_id": "248255"}], [{"original_text": "We set up a plate to serve up the chicken. ", "album_id": "1437238", "photo_flickr_id": "69252443", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49651", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we set up a plate to serve up the chicken .", "storylet_id": "248256"}], [{"original_text": "We cut the chicken in pieces to easier cut down. ", "album_id": "1437238", "photo_flickr_id": "69252496", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49651", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we cut the chicken in pieces to easier cut down .", "storylet_id": "248257"}], [{"original_text": "We cut down the chicken to smaller pieces. ", "album_id": "1437238", "photo_flickr_id": "69252384", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49651", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we cut down the chicken to smaller pieces .", "storylet_id": "248258"}], [{"original_text": "We served the chicken on the place of lettuce. ", "album_id": "1437238", "photo_flickr_id": "69252465", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49651", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we served the chicken on the place of lettuce .", "storylet_id": "248259"}], [{"original_text": "We covered the turkey in bacon and put it in the oven.", "album_id": "1437238", "photo_flickr_id": "66595026", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49652", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we covered the turkey in bacon and put it in the oven .", "storylet_id": "248260"}], [{"original_text": "It came out perfect.", "album_id": "1437238", "photo_flickr_id": "66595047", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49652", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it came out perfect .", "storylet_id": "248261"}], [{"original_text": "We added some lettuce to the plate ", "album_id": "1437238", "photo_flickr_id": "69252331", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49652", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we added some lettuce to the plate", "storylet_id": "248262"}], [{"original_text": "with orange slices on top.", "album_id": "1437238", "photo_flickr_id": "69252425", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49652", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with orange slices on top .", "storylet_id": "248263"}], [{"original_text": "Then we cut the turkey up to serve.", "album_id": "1437238", "photo_flickr_id": "69252370", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49652", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we cut the turkey up to serve .", "storylet_id": "248264"}], [{"original_text": "Anything wrapped in bacon means \"delicious\"!", "album_id": "1437238", "photo_flickr_id": "66595026", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49653", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "anything wrapped in bacon means `` delicious '' !", "storylet_id": "248265"}], [{"original_text": "Prepping the bird for slicing.", "album_id": "1437238", "photo_flickr_id": "66595047", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49653", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "prepping the bird for slicing .", "storylet_id": "248266"}], [{"original_text": "A bed of green leaves to hold the delicious meat. ", "album_id": "1437238", "photo_flickr_id": "69252331", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49653", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a bed of green leaves to hold the delicious meat .", "storylet_id": "248267"}], [{"original_text": "A little garnish for variety and flavor.", "album_id": "1437238", "photo_flickr_id": "69252425", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49653", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a little garnish for variety and flavor .", "storylet_id": "248268"}], [{"original_text": "Slicing the meal to come.", "album_id": "1437238", "photo_flickr_id": "69252370", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49653", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "slicing the meal to come .", "storylet_id": "248269"}], [{"original_text": "Mary found a recipe for a roast chicken wrapped in bacon.", "album_id": "1437238", "photo_flickr_id": "66595026", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49654", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] found a recipe for a roast chicken wrapped in bacon .", "storylet_id": "248270"}], [{"original_text": "The chicken was so tender that it fell off the bone.", "album_id": "1437238", "photo_flickr_id": "66595047", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49654", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the chicken was so tender that it fell off the bone .", "storylet_id": "248271"}], [{"original_text": "She decided to pair it with some romaine. ", "album_id": "1437238", "photo_flickr_id": "69252331", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49654", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she decided to pair it with some romaine .", "storylet_id": "248272"}], [{"original_text": "Orange slices give the romaine a nice tangy taste. ", "album_id": "1437238", "photo_flickr_id": "69252425", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49654", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "orange slices give the romaine a nice tangy taste .", "storylet_id": "248273"}], [{"original_text": "Now it's time to enjoy the meal. ", "album_id": "1437238", "photo_flickr_id": "69252370", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49654", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now it 's time to enjoy the meal .", "storylet_id": "248274"}], [{"original_text": "There was other food, but nobody cared.", "album_id": "1493887", "photo_flickr_id": "69349312", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49655", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was other food , but nobody cared .", "storylet_id": "248275"}], [{"original_text": "When the fruit basket was finally ready, she showed it to the family.", "album_id": "1493887", "photo_flickr_id": "69349461", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49655", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when the fruit basket was finally ready , she showed it to the family .", "storylet_id": "248276"}], [{"original_text": "Grandma worked for days to prepare her famous fruit basket. She forgot to clean her apron.", "album_id": "1493887", "photo_flickr_id": "69349592", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49655", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandma worked for days to prepare her famous fruit basket . she forgot to clean her apron .", "storylet_id": "248277"}], [{"original_text": "They were all so amazed at how beautiful it was.", "album_id": "1493887", "photo_flickr_id": "69349633", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49655", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were all so amazed at how beautiful it was .", "storylet_id": "248278"}], [{"original_text": "John was so happy he gave her a cold stare.", "album_id": "1493887", "photo_flickr_id": "69273678", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49655", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was so happy he gave her a cold stare .", "storylet_id": "248279"}], [{"original_text": "Here is the spread of food before the party started. ", "album_id": "1493887", "photo_flickr_id": "69349312", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49656", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is the spread of food before the party started .", "storylet_id": "248280"}], [{"original_text": "We helped ourselves to the food, buffet style. ", "album_id": "1493887", "photo_flickr_id": "69349368", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49656", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we helped ourselves to the food , buffet style .", "storylet_id": "248281"}], [{"original_text": "Our chef made sure our wine was filled to the top. ", "album_id": "1493887", "photo_flickr_id": "69349592", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49656", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our chef made sure our wine was filled to the top .", "storylet_id": "248282"}], [{"original_text": "We enjoyed our meal together on this holiday. ", "album_id": "1493887", "photo_flickr_id": "69349704", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49656", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we enjoyed our meal together on this holiday .", "storylet_id": "248283"}], [{"original_text": "We opened presents, and I got a tree plate. ", "album_id": "1493887", "photo_flickr_id": "68568243", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49656", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we opened presents , and i got a tree plate .", "storylet_id": "248284"}], [{"original_text": "We got the family together for christmas dinner. All the food was laid out.", "album_id": "1493887", "photo_flickr_id": "69349312", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49657", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got the family together for christmas dinner . all the food was laid out .", "storylet_id": "248285"}], [{"original_text": "The family made their plates.", "album_id": "1493887", "photo_flickr_id": "69349368", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49657", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family made their plates .", "storylet_id": "248286"}], [{"original_text": "Mom filled up the wine glasses.", "album_id": "1493887", "photo_flickr_id": "69349592", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49657", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom filled up the wine glasses .", "storylet_id": "248287"}], [{"original_text": "It was nice catching up.", "album_id": "1493887", "photo_flickr_id": "69349704", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49657", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was nice catching up .", "storylet_id": "248288"}], [{"original_text": "We then opened presents.", "album_id": "1493887", "photo_flickr_id": "68568243", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49657", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we then opened presents .", "storylet_id": "248289"}], [{"original_text": "The food is ready and smelling so good.", "album_id": "1493887", "photo_flickr_id": "69349312", "setting": "last-3-pick-old-and-tell", "worker_id": "Y6QU45ILCBD4MYW", "story_id": "49658", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the food is ready and smelling so good .", "storylet_id": "248290"}], [{"original_text": "Even the table decor is looking great.", "album_id": "1493887", "photo_flickr_id": "69349461", "setting": "last-3-pick-old-and-tell", "worker_id": "Y6QU45ILCBD4MYW", "story_id": "49658", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the table decor is looking great .", "storylet_id": "248291"}], [{"original_text": "Lets have some wine with this dinner to loosen everyone up.", "album_id": "1493887", "photo_flickr_id": "69349592", "setting": "last-3-pick-old-and-tell", "worker_id": "Y6QU45ILCBD4MYW", "story_id": "49658", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lets have some wine with this dinner to loosen everyone up .", "storylet_id": "248292"}], [{"original_text": "Everyone is eating, drinking and enjoying themselves at dinner.", "album_id": "1493887", "photo_flickr_id": "69349633", "setting": "last-3-pick-old-and-tell", "worker_id": "Y6QU45ILCBD4MYW", "story_id": "49658", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone is eating , drinking and enjoying themselves at dinner .", "storylet_id": "248293"}], [{"original_text": "Someone had a little too much wine tonight.", "album_id": "1493887", "photo_flickr_id": "69273678", "setting": "last-3-pick-old-and-tell", "worker_id": "Y6QU45ILCBD4MYW", "story_id": "49658", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someone had a little too much wine tonight .", "storylet_id": "248294"}], [{"original_text": "Christmas was awesome with the family.", "album_id": "1493887", "photo_flickr_id": "69349312", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49659", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "christmas was awesome with the family .", "storylet_id": "248295"}], [{"original_text": "Dad filled his plate.", "album_id": "1493887", "photo_flickr_id": "69349368", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49659", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dad filled his plate .", "storylet_id": "248296"}], [{"original_text": "Mom poured wine.", "album_id": "1493887", "photo_flickr_id": "69349592", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49659", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom poured wine .", "storylet_id": "248297"}], [{"original_text": "We all ate and talked.", "album_id": "1493887", "photo_flickr_id": "69349704", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49659", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all ate and talked .", "storylet_id": "248298"}], [{"original_text": "Emmy loved her presents!", "album_id": "1493887", "photo_flickr_id": "68568243", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49659", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "emmy loved her presents !", "storylet_id": "248299"}], [{"original_text": "It's a gathering for the Fall Birthdays within our family. ", "album_id": "1121075", "photo_flickr_id": "51764342", "setting": "first-2-pick-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "49660", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a gathering for the fall birthdays within our family .", "storylet_id": "248300"}], [{"original_text": "Delicious cakes like this are crafted lovingly just for this purpose.", "album_id": "1121075", "photo_flickr_id": "51304736", "setting": "first-2-pick-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "49660", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "delicious cakes like this are crafted lovingly just for this purpose .", "storylet_id": "248301"}], [{"original_text": "We can't wait to eat them, and boy do they smell good.", "album_id": "1121075", "photo_flickr_id": "51304734", "setting": "first-2-pick-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "49660", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we ca n't wait to eat them , and boy do they smell good .", "storylet_id": "248302"}], [{"original_text": "How good, you might wonder? So good that they're worth licking the air for in hopes of a taste!", "album_id": "1121075", "photo_flickr_id": "51767001", "setting": "first-2-pick-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "49660", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "how good , you might wonder ? so good that they 're worth licking the air for in hopes of a taste !", "storylet_id": "248303"}], [{"original_text": "Finally the moment that we've all been waiting for arrives, and it's time to dig in.", "album_id": "1121075", "photo_flickr_id": "51315773", "setting": "first-2-pick-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "49660", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the moment that we 've all been waiting for arrives , and it 's time to dig in .", "storylet_id": "248304"}], [{"original_text": "The dog was having an interesting time at the party.", "album_id": "1121075", "photo_flickr_id": "51764736", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49661", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dog was having an interesting time at the party .", "storylet_id": "248305"}], [{"original_text": "It had so many new people to interact with.", "album_id": "1121075", "photo_flickr_id": "51765327", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49661", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it had so many new people to interact with .", "storylet_id": "248306"}], [{"original_text": "It got in the way of some photos.", "album_id": "1121075", "photo_flickr_id": "51766606", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49661", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it got in the way of some photos .", "storylet_id": "248307"}], [{"original_text": "And then became the subject of the photo.", "album_id": "1121075", "photo_flickr_id": "51767001", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49661", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and then became the subject of the photo .", "storylet_id": "248308"}], [{"original_text": "After a long day the pup sat down next to someone to sleep and get petted.", "album_id": "1121075", "photo_flickr_id": "51768528", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49661", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long day the pup sat down next to someone to sleep and get petted .", "storylet_id": "248309"}], [{"original_text": "Today is the day of the party.", "album_id": "1121075", "photo_flickr_id": "51764342", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49662", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is the day of the party .", "storylet_id": "248310"}], [{"original_text": "The cake was finally made and it was nicely decorated.", "album_id": "1121075", "photo_flickr_id": "51304736", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49662", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cake was finally made and it was nicely decorated .", "storylet_id": "248311"}], [{"original_text": "The family finally arrived.", "album_id": "1121075", "photo_flickr_id": "51304734", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49662", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family finally arrived .", "storylet_id": "248312"}], [{"original_text": "The dog was part of the gift for the birthday boy.", "album_id": "1121075", "photo_flickr_id": "51767001", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49662", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dog was part of the gift for the birthday boy .", "storylet_id": "248313"}], [{"original_text": "Finally, the birthday boy cut the cake and then we went out to the club.", "album_id": "1121075", "photo_flickr_id": "51315773", "setting": "last-3-pick-old-and-tell", "worker_id": "G0B4FMMMC0EGLJ6", "story_id": "49662", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , the birthday boy cut the cake and then we went out to the club .", "storylet_id": "248314"}], [{"original_text": "Dinner table set up for the guests before they come.", "album_id": "1121075", "photo_flickr_id": "51764342", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "49663", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dinner table set up for the guests before they come .", "storylet_id": "248315"}], [{"original_text": "Birthday cake is ready and set out for the falls birthday.", "album_id": "1121075", "photo_flickr_id": "51304736", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "49663", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "birthday cake is ready and set out for the falls birthday .", "storylet_id": "248316"}], [{"original_text": "People arrive and start talking and enjoying themselves.", "album_id": "1121075", "photo_flickr_id": "51304734", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "49663", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people arrive and start talking and enjoying themselves .", "storylet_id": "248317"}], [{"original_text": "Some sit with the dog and relax.", "album_id": "1121075", "photo_flickr_id": "51767001", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "49663", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some sit with the dog and relax .", "storylet_id": "248318"}], [{"original_text": "Then the birthday cake is cut.", "album_id": "1121075", "photo_flickr_id": "51315773", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "49663", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then the birthday cake is cut .", "storylet_id": "248319"}], [{"original_text": "This day was a very special day, as someone was celebrating their birthday.", "album_id": "1121075", "photo_flickr_id": "51764342", "setting": "last-3-pick-old-and-tell", "worker_id": "RTPQMY9892BCBHA", "story_id": "49664", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this day was a very special day , as someone was celebrating their birthday .", "storylet_id": "248320"}], [{"original_text": "The chocolate cake was sitting in all its glory, waiting to be devoured by the hungry guests.", "album_id": "1121075", "photo_flickr_id": "51304736", "setting": "last-3-pick-old-and-tell", "worker_id": "RTPQMY9892BCBHA", "story_id": "49664", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the chocolate cake was sitting in all its glory , waiting to be devoured by the hungry guests .", "storylet_id": "248321"}], [{"original_text": "Everyone gathered around to sing Happy Birthday and to eat some cake.", "album_id": "1121075", "photo_flickr_id": "51304734", "setting": "last-3-pick-old-and-tell", "worker_id": "RTPQMY9892BCBHA", "story_id": "49664", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone gathered around to sing happy birthday and to eat some cake .", "storylet_id": "248322"}], [{"original_text": "Afterwards, everyone decided to spend some time relaxing.", "album_id": "1121075", "photo_flickr_id": "51767001", "setting": "last-3-pick-old-and-tell", "worker_id": "RTPQMY9892BCBHA", "story_id": "49664", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards , everyone decided to spend some time relaxing .", "storylet_id": "248323"}], [{"original_text": "But it wasn't long before people went back for second servings of the cake.", "album_id": "1121075", "photo_flickr_id": "51315773", "setting": "last-3-pick-old-and-tell", "worker_id": "RTPQMY9892BCBHA", "story_id": "49664", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but it was n't long before people went back for second servings of the cake .", "storylet_id": "248324"}], [{"original_text": "That night we saw beautiful fireworks.", "album_id": "1376049", "photo_flickr_id": "63725327", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49665", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "that night we saw beautiful fireworks .", "storylet_id": "248325"}], [{"original_text": "The sunrise was gorgeous the next day.", "album_id": "1376049", "photo_flickr_id": "63725328", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49665", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sunrise was gorgeous the next day .", "storylet_id": "248326"}], [{"original_text": "Then we even saw a shooting star.", "album_id": "1376049", "photo_flickr_id": "63727186", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49665", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we even saw a shooting star .", "storylet_id": "248327"}], [{"original_text": "The sunset and the buildings was beautiful.", "album_id": "1376049", "photo_flickr_id": "63727185", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49665", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sunset and the buildings was beautiful .", "storylet_id": "248328"}], [{"original_text": "We ended our night watching the sun go down.", "album_id": "1376049", "photo_flickr_id": "63727188", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "49665", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended our night watching the sun go down .", "storylet_id": "248329"}], [{"original_text": "We decided to travel all around the world.", "album_id": "1376049", "photo_flickr_id": "63725327", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49666", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to travel all around the world .", "storylet_id": "248330"}], [{"original_text": "We started with the liberty bell in Philly.", "album_id": "1376049", "photo_flickr_id": "63725329", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49666", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started with the liberty bell in location .", "storylet_id": "248331"}], [{"original_text": "Next we were off to the mountains.", "album_id": "1376049", "photo_flickr_id": "63727183", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49666", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next we were off to the mountains .", "storylet_id": "248332"}], [{"original_text": "the rocket museum was very cool.", "album_id": "1376049", "photo_flickr_id": "63727181", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49666", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rocket museum was very cool .", "storylet_id": "248333"}], [{"original_text": "Our trip ended when our car got struck my lightning.", "album_id": "1376049", "photo_flickr_id": "63725331", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49666", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our trip ended when our car got struck my lightning .", "storylet_id": "248334"}], [{"original_text": "Fireworks lit up the sky as we left the town.", "album_id": "1376049", "photo_flickr_id": "63725327", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49667", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "fireworks lit up the sky as we left the town .", "storylet_id": "248335"}], [{"original_text": "We heard the bells ringing as well as others fled before the others could get them.", "album_id": "1376049", "photo_flickr_id": "63725329", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49667", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we heard the bells ringing as well as others fled before the others could get them .", "storylet_id": "248336"}], [{"original_text": "We headed for the closest mountain range, that's where we were told the closest camp was.", "album_id": "1376049", "photo_flickr_id": "63727183", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49667", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we headed for the closest mountain range , that 's where we were told the closest camp was .", "storylet_id": "248337"}], [{"original_text": "We listed to the silos and everything creak as the monsters attempts to scramble up them.", "album_id": "1376049", "photo_flickr_id": "63727181", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49667", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we listed to the silos and everything creak as the monsters attempts to scramble up them .", "storylet_id": "248338"}], [{"original_text": "We were trying to get there before the storm would hit.", "album_id": "1376049", "photo_flickr_id": "63725331", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49667", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were trying to get there before the storm would hit .", "storylet_id": "248339"}], [{"original_text": "The fantastic fireworks show wowed the crowd.", "album_id": "1376049", "photo_flickr_id": "63725327", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49668", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fantastic fireworks show wowed the crowd .", "storylet_id": "248340"}], [{"original_text": "Sunrise on the canyon walls was nothing short of inspiring. ", "album_id": "1376049", "photo_flickr_id": "63725328", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49668", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sunrise on the canyon walls was nothing short of inspiring .", "storylet_id": "248341"}], [{"original_text": "A streak of beautiful light flew across the night sky. ", "album_id": "1376049", "photo_flickr_id": "63727186", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49668", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a streak of beautiful light flew across the night sky .", "storylet_id": "248342"}], [{"original_text": "We had a spectacular view at sunset. ", "album_id": "1376049", "photo_flickr_id": "63727185", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49668", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a spectacular view at sunset .", "storylet_id": "248343"}], [{"original_text": "The clouds put on quite a show for us. ", "album_id": "1376049", "photo_flickr_id": "63727188", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49668", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the clouds put on quite a show for us .", "storylet_id": "248344"}], [{"original_text": "We watched the fireworks they were so pretty.", "album_id": "1376049", "photo_flickr_id": "63725327", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49669", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we watched the fireworks they were so pretty .", "storylet_id": "248345"}], [{"original_text": "We went on a hike then on the mountain. It was challenging but fun.", "album_id": "1376049", "photo_flickr_id": "63725328", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49669", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went on a hike then on the mountain . it was challenging but fun .", "storylet_id": "248346"}], [{"original_text": "We saw a shooting star the next day.", "album_id": "1376049", "photo_flickr_id": "63727186", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49669", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw a shooting star the next day .", "storylet_id": "248347"}], [{"original_text": "We also got to see historical sites. It was cool.", "album_id": "1376049", "photo_flickr_id": "63727185", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49669", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also got to see historical sites . it was cool .", "storylet_id": "248348"}], [{"original_text": "At the end of the night we saw a wonderful sunset. We were all happy.", "album_id": "1376049", "photo_flickr_id": "63727188", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49669", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night we saw a wonderful sunset . we were all happy .", "storylet_id": "248349"}], [{"original_text": "I took the train to go visit my brother.", "album_id": "63571", "photo_flickr_id": "2378786", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49670", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took the train to go visit my brother .", "storylet_id": "248350"}], [{"original_text": "He was there to pick me up at the train station.", "album_id": "63571", "photo_flickr_id": "2534959", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49670", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was there to pick me up at the train station .", "storylet_id": "248351"}], [{"original_text": "We posed for a quick selfie before heading into town.", "album_id": "63571", "photo_flickr_id": "2536057", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49670", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we posed for a quick selfie before heading into town .", "storylet_id": "248352"}], [{"original_text": "In town, we saw an old man feeding a bunch of pigeons.", "album_id": "63571", "photo_flickr_id": "2537929", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49670", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in town , we saw an old man feeding a bunch of pigeons .", "storylet_id": "248353"}], [{"original_text": "Later in the day, we went to the park and met some other people.", "album_id": "63571", "photo_flickr_id": "2536058", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49670", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later in the day , we went to the park and met some other people .", "storylet_id": "248354"}], [{"original_text": "John had recently lost his job.", "album_id": "63571", "photo_flickr_id": "2534955", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49671", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] had recently lost his job .", "storylet_id": "248355"}], [{"original_text": "John went to the park everyday. ", "album_id": "63571", "photo_flickr_id": "2537937", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49671", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] went to the park everyday .", "storylet_id": "248356"}], [{"original_text": "He took the train and pretended to go to work.", "album_id": "63571", "photo_flickr_id": "2378786", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49671", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he took the train and pretended to go to work .", "storylet_id": "248357"}], [{"original_text": "He would sit and feed the birds all day long while his wife though he was at work.", "album_id": "63571", "photo_flickr_id": "2537929", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49671", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he would sit and feed the birds all day long while his wife though he was at work .", "storylet_id": "248358"}], [{"original_text": "When she found out he was lying she was very angry.", "album_id": "63571", "photo_flickr_id": "2378669", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49671", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when she found out he was lying she was very angry .", "storylet_id": "248359"}], [{"original_text": "We headed to the park.", "album_id": "63571", "photo_flickr_id": "2534955", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49672", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we headed to the park .", "storylet_id": "248360"}], [{"original_text": "We went to Wellesley Hills. ", "album_id": "63571", "photo_flickr_id": "2537937", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49672", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to location location .", "storylet_id": "248361"}], [{"original_text": "We walked along the side of the railway.", "album_id": "63571", "photo_flickr_id": "2378786", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49672", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we walked along the side of the railway .", "storylet_id": "248362"}], [{"original_text": "We spotted an older man feeding the birds.", "album_id": "63571", "photo_flickr_id": "2537929", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49672", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we spotted an older man feeding the birds .", "storylet_id": "248363"}], [{"original_text": "After we posed for a quick picture.", "album_id": "63571", "photo_flickr_id": "2378669", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49672", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we posed for a quick picture .", "storylet_id": "248364"}], [{"original_text": "Sam was reluctant to leave the city to return home for Thanksgiving.", "album_id": "63571", "photo_flickr_id": "2534955", "setting": "last-3-pick-old-and-tell", "worker_id": "F7W924PM5HIUIYL", "story_id": "49673", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was reluctant to leave the city to return home for thanksgiving .", "storylet_id": "248365"}], [{"original_text": "He arrived in his home town dreading the long family dinner ahead of him.", "album_id": "63571", "photo_flickr_id": "2537937", "setting": "last-3-pick-old-and-tell", "worker_id": "F7W924PM5HIUIYL", "story_id": "49673", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he arrived in his home town dreading the long family dinner ahead of him .", "storylet_id": "248366"}], [{"original_text": "Sam wondered briefly about taking the train back into the city.", "album_id": "63571", "photo_flickr_id": "2378786", "setting": "last-3-pick-old-and-tell", "worker_id": "F7W924PM5HIUIYL", "story_id": "49673", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] wondered briefly about taking the train back into the city .", "storylet_id": "248367"}], [{"original_text": "Sam began to relax when he saw the people from his small home town going about the daily routines he remembered.", "album_id": "63571", "photo_flickr_id": "2537929", "setting": "last-3-pick-old-and-tell", "worker_id": "F7W924PM5HIUIYL", "story_id": "49673", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] began to relax when he saw the people from his small home town going about the daily routines he remembered .", "storylet_id": "248368"}], [{"original_text": "Suddenly, Sam's brother surprised him by arriving at the train station, and Sam was very glad to be home.", "album_id": "63571", "photo_flickr_id": "2378669", "setting": "last-3-pick-old-and-tell", "worker_id": "F7W924PM5HIUIYL", "story_id": "49673", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "suddenly , [male] 's brother surprised him by arriving at the train station , and [male] was very glad to be home .", "storylet_id": "248369"}], [{"original_text": "We waited for the commuter rail to pull up to the stop.", "album_id": "63571", "photo_flickr_id": "2378786", "setting": "last-3-pick-old-and-tell", "worker_id": "SBYYZUIWP2E9VS8", "story_id": "49674", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we waited for the commuter rail to pull up to the stop .", "storylet_id": "248370"}], [{"original_text": "He couldn't believe how late it was.", "album_id": "63571", "photo_flickr_id": "2534959", "setting": "last-3-pick-old-and-tell", "worker_id": "SBYYZUIWP2E9VS8", "story_id": "49674", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he could n't believe how late it was .", "storylet_id": "248371"}], [{"original_text": "But he was happy to be with me.", "album_id": "63571", "photo_flickr_id": "2536057", "setting": "last-3-pick-old-and-tell", "worker_id": "SBYYZUIWP2E9VS8", "story_id": "49674", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but he was happy to be with me .", "storylet_id": "248372"}], [{"original_text": "We took the commuter rail to a park where we saw a main feeding the birds.", "album_id": "63571", "photo_flickr_id": "2537929", "setting": "last-3-pick-old-and-tell", "worker_id": "SBYYZUIWP2E9VS8", "story_id": "49674", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took the commuter rail to a park where we saw a main feeding the birds .", "storylet_id": "248373"}], [{"original_text": "And then we went ice skating.", "album_id": "63571", "photo_flickr_id": "2536058", "setting": "last-3-pick-old-and-tell", "worker_id": "SBYYZUIWP2E9VS8", "story_id": "49674", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then we went ice skating .", "storylet_id": "248374"}], [{"original_text": "I put on some tunes to set the thanksgiving day mood.", "album_id": "1440568", "photo_flickr_id": "66772250", "setting": "first-2-pick-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49675", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i put on some tunes to set the thanksgiving day mood .", "storylet_id": "248375"}], [{"original_text": "I preemptively set the table.", "album_id": "1440568", "photo_flickr_id": "66772075", "setting": "first-2-pick-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49675", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i preemptively set the table .", "storylet_id": "248376"}], [{"original_text": "I made sure the living room was clean for my guests. ", "album_id": "1440568", "photo_flickr_id": "66772249", "setting": "first-2-pick-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49675", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i made sure the living room was clean for my guests .", "storylet_id": "248377"}], [{"original_text": "Then I learned how to cook real quick.", "album_id": "1440568", "photo_flickr_id": "66776911", "setting": "first-2-pick-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49675", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then i learned how to cook real quick .", "storylet_id": "248378"}], [{"original_text": "I think it turned out great. Lovely meal.", "album_id": "1440568", "photo_flickr_id": "66777976", "setting": "first-2-pick-and-tell", "worker_id": "V26GVFV0CXFNFPJ", "story_id": "49675", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think it turned out great . lovely meal .", "storylet_id": "248379"}], [{"original_text": "Everyone though that grandma's recipe was passed down, but it really came from a book.", "album_id": "1440568", "photo_flickr_id": "66776911", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49676", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone though that grandma 's recipe was passed down , but it really came from a book .", "storylet_id": "248380"}], [{"original_text": "She would spend hours mixing ingredients to the recipe.", "album_id": "1440568", "photo_flickr_id": "66772252", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49676", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she would spend hours mixing ingredients to the recipe .", "storylet_id": "248381"}], [{"original_text": "She heated the oven to just the right temperature.", "album_id": "1440568", "photo_flickr_id": "66772250", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49676", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she heated the oven to just the right temperature .", "storylet_id": "248382"}], [{"original_text": "She served it up just how everyone liked it.", "album_id": "1440568", "photo_flickr_id": "66778003", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49676", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she served it up just how everyone liked it .", "storylet_id": "248383"}], [{"original_text": "The family cut it up and enjoyed the meal unaware of the lie Grandma was selling them year after year.", "album_id": "1440568", "photo_flickr_id": "66772078", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49676", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family cut it up and enjoyed the meal unaware of the lie grandma was selling them year after year .", "storylet_id": "248384"}], [{"original_text": "I read over the recipe to make the perfect stuffing.", "album_id": "1440568", "photo_flickr_id": "66776911", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49677", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i read over the recipe to make the perfect stuffing .", "storylet_id": "248385"}], [{"original_text": "I added all the ingredients together.", "album_id": "1440568", "photo_flickr_id": "66772252", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49677", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i added all the ingredients together .", "storylet_id": "248386"}], [{"original_text": "Then I set the timer.", "album_id": "1440568", "photo_flickr_id": "66772250", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49677", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then i set the timer .", "storylet_id": "248387"}], [{"original_text": "We served the food and added the gravy.", "album_id": "1440568", "photo_flickr_id": "66778003", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49677", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we served the food and added the gravy .", "storylet_id": "248388"}], [{"original_text": "After dinner we had my homemade pecan pie.", "album_id": "1440568", "photo_flickr_id": "66772078", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49677", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after dinner we had my homemade pecan pie .", "storylet_id": "248389"}], [{"original_text": "Time to make a fantastic recipe.", "album_id": "1440568", "photo_flickr_id": "66776911", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49678", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "time to make a fantastic recipe .", "storylet_id": "248390"}], [{"original_text": "Gathering and mixing ingredients is very important.", "album_id": "1440568", "photo_flickr_id": "66772252", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49678", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "gathering and mixing ingredients is very important .", "storylet_id": "248391"}], [{"original_text": "Music and cooking is always a great combo. ", "album_id": "1440568", "photo_flickr_id": "66772250", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49678", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "music and cooking is always a great combo .", "storylet_id": "248392"}], [{"original_text": "Preparing the table for the delicious meal to come.", "album_id": "1440568", "photo_flickr_id": "66778003", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49678", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "preparing the table for the delicious meal to come .", "storylet_id": "248393"}], [{"original_text": "Nothing more satisfying than enjoying something savory you made yourself. ", "album_id": "1440568", "photo_flickr_id": "66772078", "setting": "last-3-pick-old-and-tell", "worker_id": "1I6WHRSGBXO2NKS", "story_id": "49678", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "nothing more satisfying than enjoying something savory you made yourself .", "storylet_id": "248394"}], [{"original_text": "We visited my aunts.", "album_id": "1440568", "photo_flickr_id": "66772250", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49679", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited my aunts .", "storylet_id": "248395"}], [{"original_text": "Her patio table was so decorated.", "album_id": "1440568", "photo_flickr_id": "66772075", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49679", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her patio table was so decorated .", "storylet_id": "248396"}], [{"original_text": "The sitting area lookes like a great place to read.", "album_id": "1440568", "photo_flickr_id": "66772249", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49679", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sitting area lookes like a great place to read .", "storylet_id": "248397"}], [{"original_text": "I read and relaxed for hours.", "album_id": "1440568", "photo_flickr_id": "66776911", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49679", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i read and relaxed for hours .", "storylet_id": "248398"}], [{"original_text": "At night we had a candle lit dinner.", "album_id": "1440568", "photo_flickr_id": "66777976", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49679", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night we had a candle lit dinner .", "storylet_id": "248399"}], [{"original_text": "The turkey was served for the whole family to enjoy.", "album_id": "1443082", "photo_flickr_id": "66884237", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49680", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the turkey was served for the whole family to enjoy .", "storylet_id": "248400"}], [{"original_text": "they devoured it like animals.", "album_id": "1443082", "photo_flickr_id": "66884274", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49680", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they devoured it like animals .", "storylet_id": "248401"}], [{"original_text": "next came dessert, which everyone enjoyed.", "album_id": "1443082", "photo_flickr_id": "66884344", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49680", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next came dessert , which everyone enjoyed .", "storylet_id": "248402"}], [{"original_text": "After dinner it was time for a boring game of scrabble.", "album_id": "1443082", "photo_flickr_id": "66884460", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49680", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after dinner it was time for a boring game of scrabble .", "storylet_id": "248403"}], [{"original_text": "The night ended with a dispute over a strange word in the boring scrabble game.", "album_id": "1443082", "photo_flickr_id": "66884411", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49680", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night ended with a dispute over a strange word in the boring scrabble game .", "storylet_id": "248404"}], [{"original_text": "We set up the bird before we shoved it in the oven. ", "album_id": "1443082", "photo_flickr_id": "66884180", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49681", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we set up the bird before we shoved it in the oven .", "storylet_id": "248405"}], [{"original_text": "Here is some sweet potatoes we are mashing. ", "album_id": "1443082", "photo_flickr_id": "66884209", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49681", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is some sweet potatoes we are mashing .", "storylet_id": "248406"}], [{"original_text": "Here is the bird, cooked, in all its delicious glory. ", "album_id": "1443082", "photo_flickr_id": "66884237", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49681", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is the bird , cooked , in all its delicious glory .", "storylet_id": "248407"}], [{"original_text": "We carved up the bird because we wer ehungry. ", "album_id": "1443082", "photo_flickr_id": "66884246", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49681", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we carved up the bird because we wer ehungry .", "storylet_id": "248408"}], [{"original_text": "Our desserts we sweet and out of this world. ", "album_id": "1443082", "photo_flickr_id": "66884380", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49681", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our desserts we sweet and out of this world .", "storylet_id": "248409"}], [{"original_text": "My first Thanksgiving turkey looks good. Not bad for a beginner.", "album_id": "1443082", "photo_flickr_id": "66884180", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49682", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my first thanksgiving turkey looks good . not bad for a beginner .", "storylet_id": "248410"}], [{"original_text": "Some southern fried yams is a delicacy in this household.", "album_id": "1443082", "photo_flickr_id": "66884209", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49682", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some southern fried yams is a delicacy in this household .", "storylet_id": "248411"}], [{"original_text": "Here is the star of the show. Letting it rest before carving.", "album_id": "1443082", "photo_flickr_id": "66884237", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49682", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is the star of the show . letting it rest before carving .", "storylet_id": "248412"}], [{"original_text": "Here I am carving this yummy bird. It turned out so juicy and moist.", "album_id": "1443082", "photo_flickr_id": "66884246", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49682", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here i am carving this yummy bird . it turned out so juicy and moist .", "storylet_id": "248413"}], [{"original_text": "Grandma made her famous spinach cream cheese dip as an after dinner snack. Good food and good times.", "album_id": "1443082", "photo_flickr_id": "66884380", "setting": "last-3-pick-old-and-tell", "worker_id": "DU1SOA88G4FYUSW", "story_id": "49682", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandma made her famous spinach cream cheese dip as an after dinner snack . good food and good times .", "storylet_id": "248414"}], [{"original_text": "Jerry made Thanksgiving dinner,", "album_id": "1443082", "photo_flickr_id": "66884180", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49683", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] made thanksgiving dinner ,", "storylet_id": "248415"}], [{"original_text": "He mashed yams.", "album_id": "1443082", "photo_flickr_id": "66884209", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49683", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he mashed yams .", "storylet_id": "248416"}], [{"original_text": "The turkey came out perfect,", "album_id": "1443082", "photo_flickr_id": "66884237", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49683", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the turkey came out perfect ,", "storylet_id": "248417"}], [{"original_text": "Jerry slices the turkey.", "album_id": "1443082", "photo_flickr_id": "66884246", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49683", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] slices the turkey .", "storylet_id": "248418"}], [{"original_text": "The cheese ball he made was everyone's favorite.", "album_id": "1443082", "photo_flickr_id": "66884380", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49683", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cheese ball he made was everyone 's favorite .", "storylet_id": "248419"}], [{"original_text": "Everyone came for Thanksgiving,", "album_id": "1443082", "photo_flickr_id": "66884237", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49684", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone came for thanksgiving ,", "storylet_id": "248420"}], [{"original_text": "We ate most of the turkey , it was delicious.", "album_id": "1443082", "photo_flickr_id": "66884274", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49684", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we ate most of the turkey , it was delicious .", "storylet_id": "248421"}], [{"original_text": "The strawberry cheesecakes were a big hit!", "album_id": "1443082", "photo_flickr_id": "66884344", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49684", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the strawberry cheesecakes were a big hit !", "storylet_id": "248422"}], [{"original_text": "After dinner Tom and Ally played Scrabble.", "album_id": "1443082", "photo_flickr_id": "66884460", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49684", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after dinner [male] and ally played scrabble .", "storylet_id": "248423"}], [{"original_text": "Everyone was stuffed.", "album_id": "1443082", "photo_flickr_id": "66884411", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49684", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was stuffed .", "storylet_id": "248424"}], [{"original_text": "We had the family over for dinner one night and I made turkey.", "album_id": "1450140", "photo_flickr_id": "66880611", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49685", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had the family over for dinner one night and i made turkey .", "storylet_id": "248425"}], [{"original_text": "For the side dish I made baked beans.", "album_id": "1450140", "photo_flickr_id": "66880612", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49685", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "for the side dish i made baked beans .", "storylet_id": "248426"}], [{"original_text": "For the dessert I made several fruit salads.", "album_id": "1450140", "photo_flickr_id": "66871027", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49685", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "for the dessert i made several fruit salads .", "storylet_id": "248427"}], [{"original_text": "After dinner we joked around and carla chugged a bottle of wine.", "album_id": "1450140", "photo_flickr_id": "66882786", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49685", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after dinner we joked around and carla chugged a bottle of wine .", "storylet_id": "248428"}], [{"original_text": "She started dancing which made us all have a good laugh.", "album_id": "1450140", "photo_flickr_id": "66882784", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49685", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she started dancing which made us all have a good laugh .", "storylet_id": "248429"}], [{"original_text": "Here are the cookies being made from scratch. ", "album_id": "1450140", "photo_flickr_id": "66871027", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49686", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here are the cookies being made from scratch .", "storylet_id": "248430"}], [{"original_text": "We have some great artwork staring at us, making sure we do a great job. ", "album_id": "1450140", "photo_flickr_id": "66880607", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49686", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we have some great artwork staring at us , making sure we do a great job .", "storylet_id": "248431"}], [{"original_text": "The meal is setup and ready to eat. ", "album_id": "1450140", "photo_flickr_id": "66880609", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49686", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the meal is setup and ready to eat .", "storylet_id": "248432"}], [{"original_text": "We enjoyed our food, im suprised we had time to take a photo. ", "album_id": "1450140", "photo_flickr_id": "66880611", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49686", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we enjoyed our food , im suprised we had time to take a photo .", "storylet_id": "248433"}], [{"original_text": "After the meal we played a long game of Monopoly. ", "album_id": "1450140", "photo_flickr_id": "66871030", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49686", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the meal we played a long game of monopoly .", "storylet_id": "248434"}], [{"original_text": "We're expecting company so I attempted to make some food.", "album_id": "1450140", "photo_flickr_id": "66880611", "setting": "last-3-pick-old-and-tell", "worker_id": "PLPSZ2NGRGSU7OT", "story_id": "49687", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 're expecting company so i attempted to make some food .", "storylet_id": "248435"}], [{"original_text": "I'm not a very good cook so I threw a large can of beans in a pot and called it a day.", "album_id": "1450140", "photo_flickr_id": "66880612", "setting": "last-3-pick-old-and-tell", "worker_id": "PLPSZ2NGRGSU7OT", "story_id": "49687", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm not a very good cook so i threw a large can of beans in a pot and called it a day .", "storylet_id": "248436"}], [{"original_text": "Here I just dyed some whipped cream pink. It was a real challenge keeping it looking fluffy.", "album_id": "1450140", "photo_flickr_id": "66871027", "setting": "last-3-pick-old-and-tell", "worker_id": "PLPSZ2NGRGSU7OT", "story_id": "49687", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here i just dyed some whipped cream pink . it was a real challenge keeping it looking fluffy .", "storylet_id": "248437"}], [{"original_text": "Ah finally, a well deserved drink after all that hard work cooking a feast.", "album_id": "1450140", "photo_flickr_id": "66882786", "setting": "last-3-pick-old-and-tell", "worker_id": "PLPSZ2NGRGSU7OT", "story_id": "49687", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "ah finally , a well deserved drink after all that hard work cooking a feast .", "storylet_id": "248438"}], [{"original_text": "Unfortunately, no one seemed very impressed with my cooking other than grandma there.", "album_id": "1450140", "photo_flickr_id": "66882784", "setting": "last-3-pick-old-and-tell", "worker_id": "PLPSZ2NGRGSU7OT", "story_id": "49687", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "unfortunately , no one seemed very impressed with my cooking other than grandma there .", "storylet_id": "248439"}], [{"original_text": "Alex made dinner,", "album_id": "1450140", "photo_flickr_id": "66871027", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49688", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] made dinner ,", "storylet_id": "248440"}], [{"original_text": "There was peas and carrots.", "album_id": "1450140", "photo_flickr_id": "66880607", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49688", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was peas and carrots .", "storylet_id": "248441"}], [{"original_text": "There was baked Mac and Cheese.", "album_id": "1450140", "photo_flickr_id": "66880609", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49688", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was baked mac and cheese .", "storylet_id": "248442"}], [{"original_text": "The turkey was excellent,", "album_id": "1450140", "photo_flickr_id": "66880611", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49688", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the turkey was excellent ,", "storylet_id": "248443"}], [{"original_text": "Kat loves the dinner rolls.", "album_id": "1450140", "photo_flickr_id": "66871030", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49688", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "kat loves the dinner rolls .", "storylet_id": "248444"}], [{"original_text": "The family always puts together a huge feast for Thanksgiving. ", "album_id": "1450140", "photo_flickr_id": "66880611", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49689", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family always puts together a huge feast for thanksgiving .", "storylet_id": "248445"}], [{"original_text": "Beans were made for guests who do not eat turkey.", "album_id": "1450140", "photo_flickr_id": "66880612", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49689", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "beans were made for guests who do not eat turkey .", "storylet_id": "248446"}], [{"original_text": "There were several sides and desserts to choose from.", "album_id": "1450140", "photo_flickr_id": "66871027", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49689", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were several sides and desserts to choose from .", "storylet_id": "248447"}], [{"original_text": "The host's daughter just turned 21, and it was the first time she could drink with the family. ", "album_id": "1450140", "photo_flickr_id": "66882786", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49689", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the host 's daughter just turned 21 , and it was the first time she could drink with the family .", "storylet_id": "248448"}], [{"original_text": "Grandma loves to tell stories during dinner to embarrass everyone.", "album_id": "1450140", "photo_flickr_id": "66882784", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49689", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandma loves to tell stories during dinner to embarrass everyone .", "storylet_id": "248449"}], [{"original_text": "When I got to my friend's apartment I went to the balcony to see the view.", "album_id": "1443998", "photo_flickr_id": "66916961", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49690", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i got to my friend 's apartment i went to the balcony to see the view .", "storylet_id": "248450"}], [{"original_text": "He was in the kitchen preparing the food.", "album_id": "1443998", "photo_flickr_id": "66917232", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49690", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was in the kitchen preparing the food .", "storylet_id": "248451"}], [{"original_text": "It looked delicious.", "album_id": "1443998", "photo_flickr_id": "66917503", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49690", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it looked delicious .", "storylet_id": "248452"}], [{"original_text": "Everyone was very hungry.", "album_id": "1443998", "photo_flickr_id": "66919096", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49690", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was very hungry .", "storylet_id": "248453"}], [{"original_text": "I had a great time there.", "album_id": "1443998", "photo_flickr_id": "66919432", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49690", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time there .", "storylet_id": "248454"}], [{"original_text": "The apartment was clean for the big day.", "album_id": "1443998", "photo_flickr_id": "66916409", "setting": "first-2-pick-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49691", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the apartment was clean for the big day .", "storylet_id": "248455"}], [{"original_text": "The view was excellent.", "album_id": "1443998", "photo_flickr_id": "66916961", "setting": "first-2-pick-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49691", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view was excellent .", "storylet_id": "248456"}], [{"original_text": "They definitely cleaned their plates this time.", "album_id": "1443998", "photo_flickr_id": "66918735", "setting": "first-2-pick-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49691", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they definitely cleaned their plates this time .", "storylet_id": "248457"}], [{"original_text": "Some were still hungry.", "album_id": "1443998", "photo_flickr_id": "66919096", "setting": "first-2-pick-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49691", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some were still hungry .", "storylet_id": "248458"}], [{"original_text": "Time to clean up.", "album_id": "1443998", "photo_flickr_id": "66920008", "setting": "first-2-pick-and-tell", "worker_id": "GW2F398CE7ZBE2O", "story_id": "49691", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time to clean up .", "storylet_id": "248459"}], [{"original_text": "We had a very nice view from the apartment before dinner", "album_id": "1443998", "photo_flickr_id": "66916961", "setting": "last-3-pick-old-and-tell", "worker_id": "L2PMSQ10E2ZCDSF", "story_id": "49692", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a very nice view from the apartment before dinner", "storylet_id": "248460"}], [{"original_text": "The man was carving up the turkey to prepare for the feast", "album_id": "1443998", "photo_flickr_id": "66917232", "setting": "last-3-pick-old-and-tell", "worker_id": "L2PMSQ10E2ZCDSF", "story_id": "49692", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man was carving up the turkey to prepare for the feast", "storylet_id": "248461"}], [{"original_text": "The table was set and the food was ready to be devoured ", "album_id": "1443998", "photo_flickr_id": "66917503", "setting": "last-3-pick-old-and-tell", "worker_id": "L2PMSQ10E2ZCDSF", "story_id": "49692", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the table was set and the food was ready to be devoured", "storylet_id": "248462"}], [{"original_text": "She loved the food so much she ate from the serving plate. ", "album_id": "1443998", "photo_flickr_id": "66919096", "setting": "last-3-pick-old-and-tell", "worker_id": "L2PMSQ10E2ZCDSF", "story_id": "49692", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she loved the food so much she ate from the serving plate .", "storylet_id": "248463"}], [{"original_text": "She was very happy with all the food and the company of friends", "album_id": "1443998", "photo_flickr_id": "66919432", "setting": "last-3-pick-old-and-tell", "worker_id": "L2PMSQ10E2ZCDSF", "story_id": "49692", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was very happy with all the food and the company of friends", "storylet_id": "248464"}], [{"original_text": "THanksgiving time is here,", "album_id": "1443998", "photo_flickr_id": "66916409", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49693", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "thanksgiving time is here ,", "storylet_id": "248465"}], [{"original_text": "We went into the city to see friends.", "album_id": "1443998", "photo_flickr_id": "66916961", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49693", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went into the city to see friends .", "storylet_id": "248466"}], [{"original_text": "We ate till our plates were empty,", "album_id": "1443998", "photo_flickr_id": "66918735", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49693", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we ate till our plates were empty ,", "storylet_id": "248467"}], [{"original_text": "Fran ate right from the serving dishes.", "album_id": "1443998", "photo_flickr_id": "66919096", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49693", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fran ate right from the serving dishes .", "storylet_id": "248468"}], [{"original_text": "I helped Fran clean up.", "album_id": "1443998", "photo_flickr_id": "66920008", "setting": "last-3-pick-old-and-tell", "worker_id": "2X3BJDYM8S9U3NJ", "story_id": "49693", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i helped fran clean up .", "storylet_id": "248469"}], [{"original_text": "We went to the city for thanksgiving.", "album_id": "1443998", "photo_flickr_id": "66916961", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49694", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the city for thanksgiving .", "storylet_id": "248470"}], [{"original_text": "I caarved the turkey,", "album_id": "1443998", "photo_flickr_id": "66917232", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49694", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i caarved the turkey ,", "storylet_id": "248471"}], [{"original_text": "We ate so much.", "album_id": "1443998", "photo_flickr_id": "66917503", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49694", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we ate so much .", "storylet_id": "248472"}], [{"original_text": "Erin ate like a pig.", "album_id": "1443998", "photo_flickr_id": "66919096", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49694", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] ate like a pig .", "storylet_id": "248473"}], [{"original_text": "We laughed a lot.", "album_id": "1443998", "photo_flickr_id": "66919432", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49694", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we laughed a lot .", "storylet_id": "248474"}], [{"original_text": "John loved his cat very much.", "album_id": "1444744", "photo_flickr_id": "66920839", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49695", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] loved his cat very much .", "storylet_id": "248475"}], [{"original_text": "he loved it more than his own family.", "album_id": "1444744", "photo_flickr_id": "66921926", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49695", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he loved it more than his own family .", "storylet_id": "248476"}], [{"original_text": "He though it was truly his best friend.", "album_id": "1444744", "photo_flickr_id": "66920689", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49695", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he though it was truly his best friend .", "storylet_id": "248477"}], [{"original_text": "He sat with his family to eat dinner, thinking of the cat the entire time.", "album_id": "1444744", "photo_flickr_id": "66921706", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49695", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he sat with his family to eat dinner , thinking of the cat the entire time .", "storylet_id": "248478"}], [{"original_text": "After dinner he fell asleep on the floor with his best friend.", "album_id": "1444744", "photo_flickr_id": "66922852", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49695", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after dinner he fell asleep on the floor with his best friend .", "storylet_id": "248479"}], [{"original_text": "I got a new cat today!", "album_id": "1444744", "photo_flickr_id": "66920689", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49696", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got a new cat today !", "storylet_id": "248480"}], [{"original_text": "I didn't know what to feed her so I made some salad.", "album_id": "1444744", "photo_flickr_id": "66921102", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49696", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i did n't know what to feed her so i made some salad .", "storylet_id": "248481"}], [{"original_text": "She fell asleep afterward and I slept next to her.", "album_id": "1444744", "photo_flickr_id": "66922852", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49696", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she fell asleep afterward and i slept next to her .", "storylet_id": "248482"}], [{"original_text": "I also bought some string for her to play with.", "album_id": "1444744", "photo_flickr_id": "66923115", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49696", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also bought some string for her to play with .", "storylet_id": "248483"}], [{"original_text": "The string was everywhere.", "album_id": "1444744", "photo_flickr_id": "66923438", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49696", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the string was everywhere .", "storylet_id": "248484"}], [{"original_text": "Today we got a cat.", "album_id": "1444744", "photo_flickr_id": "66920839", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49697", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we got a cat .", "storylet_id": "248485"}], [{"original_text": "We decorated the house for the occasion.", "album_id": "1444744", "photo_flickr_id": "66921926", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49697", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decorated the house for the occasion .", "storylet_id": "248486"}], [{"original_text": "We named the cat Moose and gave him pets.", "album_id": "1444744", "photo_flickr_id": "66920689", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49697", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we named the cat moose and gave him pets .", "storylet_id": "248487"}], [{"original_text": "We made a delicious salad.", "album_id": "1444744", "photo_flickr_id": "66921706", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49697", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we made a delicious salad .", "storylet_id": "248488"}], [{"original_text": "He was getting so much love.", "album_id": "1444744", "photo_flickr_id": "66922852", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49697", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was getting so much love .", "storylet_id": "248489"}], [{"original_text": "There's only one person I can really call a friend in my life.", "album_id": "1444744", "photo_flickr_id": "66920839", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49698", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there 's only one person i can really call a friend in my life .", "storylet_id": "248490"}], [{"original_text": "My friend's name is Whiskers.", "album_id": "1444744", "photo_flickr_id": "66921926", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49698", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend 's name is whiskers .", "storylet_id": "248491"}], [{"original_text": "He's always been there for me when no one else was.", "album_id": "1444744", "photo_flickr_id": "66920689", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49698", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he 's always been there for me when no one else was .", "storylet_id": "248492"}], [{"original_text": "I do everything together. Especially eat.", "album_id": "1444744", "photo_flickr_id": "66921706", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49698", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i do everything together . especially eat .", "storylet_id": "248493"}], [{"original_text": "And when I'm sleepy he's there to cuddle with me.", "album_id": "1444744", "photo_flickr_id": "66922852", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "49698", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and when i 'm sleepy he 's there to cuddle with me .", "storylet_id": "248494"}], [{"original_text": "Mike decided to steal his neighbor's cat, Mr. Boots.", "album_id": "1444744", "photo_flickr_id": "66920839", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3LY2J5LLLDCA0", "story_id": "49699", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] decided to steal his neighbor 's cat , mr. boots .", "storylet_id": "248495"}], [{"original_text": "Mike's mom and sister stared in disbelief when he introduced the cat to them.", "album_id": "1444744", "photo_flickr_id": "66921926", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3LY2J5LLLDCA0", "story_id": "49699", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] 's mom and sister stared in disbelief when he introduced the cat to them .", "storylet_id": "248496"}], [{"original_text": "Mike had to force the cat to stay since it kept trying to run out the front door.", "album_id": "1444744", "photo_flickr_id": "66920689", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3LY2J5LLLDCA0", "story_id": "49699", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] had to force the cat to stay since it kept trying to run out the front door .", "storylet_id": "248497"}], [{"original_text": "Mike made a salad for the cat, but he didn't realize cats don't eat lettuce.", "album_id": "1444744", "photo_flickr_id": "66921706", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3LY2J5LLLDCA0", "story_id": "49699", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] made a salad for the cat , but he did n't realize cats do n't eat lettuce .", "storylet_id": "248498"}], [{"original_text": "Fed up with Mr. Boots' escape attempts, Mike decided to lay on the cat to make him stay.", "album_id": "1444744", "photo_flickr_id": "66922852", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3LY2J5LLLDCA0", "story_id": "49699", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fed up with mr. boots ' escape attempts , [male] decided to lay on the cat to make him stay .", "storylet_id": "248499"}], [{"original_text": "I had to take a lot of photos today.", "album_id": "1445259", "photo_flickr_id": "66979648", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49700", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had to take a lot of photos today .", "storylet_id": "248500"}], [{"original_text": "Everyone wanted a picture taken of them.", "album_id": "1445259", "photo_flickr_id": "66979713", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49700", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone wanted a picture taken of them .", "storylet_id": "248501"}], [{"original_text": "I had them all pose for the camera.", "album_id": "1445259", "photo_flickr_id": "66979789", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49700", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had them all pose for the camera .", "storylet_id": "248502"}], [{"original_text": "There were also some children there.", "album_id": "1445259", "photo_flickr_id": "66980064", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49700", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also some children there .", "storylet_id": "248503"}], [{"original_text": "They were scared to have their picture taken.", "album_id": "1445259", "photo_flickr_id": "66980141", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49700", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were scared to have their picture taken .", "storylet_id": "248504"}], [{"original_text": "I am so excited to try out my new camera.", "album_id": "1445259", "photo_flickr_id": "67506559", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49701", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am so excited to try out my new camera .", "storylet_id": "248505"}], [{"original_text": "I took a photo of myself with my three sisters.", "album_id": "1445259", "photo_flickr_id": "66979789", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49701", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i took a photo of myself with my three sisters .", "storylet_id": "248506"}], [{"original_text": "I also took a photo of my brother in one of his serious moods.", "album_id": "1445259", "photo_flickr_id": "66979919", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49701", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also took a photo of my brother in one of his serious moods .", "storylet_id": "248507"}], [{"original_text": "I captured a great photo of my young niece while she was thinking. ", "album_id": "1445259", "photo_flickr_id": "66980064", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49701", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i captured a great photo of my young niece while she was thinking .", "storylet_id": "248508"}], [{"original_text": "Later, I took a photo of her doing her favorite coloring book.", "album_id": "1445259", "photo_flickr_id": "66980000", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49701", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later , i took a photo of her doing her favorite coloring book .", "storylet_id": "248509"}], [{"original_text": "My sister was excited to use her new camera.", "album_id": "1445259", "photo_flickr_id": "67506559", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49702", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister was excited to use her new camera .", "storylet_id": "248510"}], [{"original_text": "She gave it to me to take a group photo.", "album_id": "1445259", "photo_flickr_id": "66979789", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49702", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she gave it to me to take a group photo .", "storylet_id": "248511"}], [{"original_text": "Then she took a picture of our brother.", "album_id": "1445259", "photo_flickr_id": "66979919", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49702", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then she took a picture of our brother .", "storylet_id": "248512"}], [{"original_text": "Then her daughter.", "album_id": "1445259", "photo_flickr_id": "66980064", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49702", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then her daughter .", "storylet_id": "248513"}], [{"original_text": "She snapped her coloring.", "album_id": "1445259", "photo_flickr_id": "66980000", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49702", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she snapped her coloring .", "storylet_id": "248514"}], [{"original_text": "Amanda was surprised by the generous gift her parents gave her for her birthday.", "album_id": "1445259", "photo_flickr_id": "66979648", "setting": "last-3-pick-old-and-tell", "worker_id": "F7W924PM5HIUIYL", "story_id": "49703", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was surprised by the generous gift her parents gave her for her birthday .", "storylet_id": "248515"}], [{"original_text": "Amanda was so excited to receive the camera she'd been dreaming of!", "album_id": "1445259", "photo_flickr_id": "66979713", "setting": "last-3-pick-old-and-tell", "worker_id": "F7W924PM5HIUIYL", "story_id": "49703", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] was so excited to receive the camera she 'd been dreaming of !", "storylet_id": "248516"}], [{"original_text": "She immediately used her tripod and timer to take a picture of her roommates but was dissatisfied with the light quality.", "album_id": "1445259", "photo_flickr_id": "66979789", "setting": "last-3-pick-old-and-tell", "worker_id": "F7W924PM5HIUIYL", "story_id": "49703", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she immediately used her tripod and timer to take a picture of her roommates but was dissatisfied with the light quality .", "storylet_id": "248517"}], [{"original_text": "When Amanda took the camera outside and away from fluorescent light, she was amazed by the quality of her shots.", "album_id": "1445259", "photo_flickr_id": "66980064", "setting": "last-3-pick-old-and-tell", "worker_id": "F7W924PM5HIUIYL", "story_id": "49703", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when [female] took the camera outside and away from fluorescent light , she was amazed by the quality of her shots .", "storylet_id": "248518"}], [{"original_text": "Capturing such subtle expressions on her subjects face, Amanda's desire to be a professional photographer was renewed.", "album_id": "1445259", "photo_flickr_id": "66980141", "setting": "last-3-pick-old-and-tell", "worker_id": "F7W924PM5HIUIYL", "story_id": "49703", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "capturing such subtle expressions on her subjects face , [female] 's desire to be a professional photographer was renewed .", "storylet_id": "248519"}], [{"original_text": "Kayla was always the one to take pictures at events and get togethers.", "album_id": "1445259", "photo_flickr_id": "67506559", "setting": "last-3-pick-old-and-tell", "worker_id": "YU27W8MIZD1UXHH", "story_id": "49704", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was always the one to take pictures at events and get togethers .", "storylet_id": "248520"}], [{"original_text": "Sometimes she would set up the camera's timer and get in the photo, too. ", "album_id": "1445259", "photo_flickr_id": "66979789", "setting": "last-3-pick-old-and-tell", "worker_id": "YU27W8MIZD1UXHH", "story_id": "49704", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sometimes she would set up the camera 's timer and get in the photo , too .", "storylet_id": "248521"}], [{"original_text": "She was always good about getting the most thoughtful photo's of her brother, Braydon.", "album_id": "1445259", "photo_flickr_id": "66979919", "setting": "last-3-pick-old-and-tell", "worker_id": "YU27W8MIZD1UXHH", "story_id": "49704", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was always good about getting the most thoughtful photo 's of her brother , [male] .", "storylet_id": "248522"}], [{"original_text": "Her favorite subject to photograph was her niece Payton. ", "album_id": "1445259", "photo_flickr_id": "66980064", "setting": "last-3-pick-old-and-tell", "worker_id": "YU27W8MIZD1UXHH", "story_id": "49704", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her favorite subject to photograph was her niece [female] .", "storylet_id": "248523"}], [{"original_text": "Her is Payton doing an activity and Kayla is right there recording it for future fun1", "album_id": "1445259", "photo_flickr_id": "66980000", "setting": "last-3-pick-old-and-tell", "worker_id": "YU27W8MIZD1UXHH", "story_id": "49704", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her is [female] doing an activity and [female] is right there recording it for future fun1", "storylet_id": "248524"}], [{"original_text": "Amy prepared our christmas turkey. ", "album_id": "1445664", "photo_flickr_id": "66994313", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49705", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] prepared our christmas turkey .", "storylet_id": "248525"}], [{"original_text": "After it was done we all sat down to eat.", "album_id": "1445664", "photo_flickr_id": "66994709", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49705", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after it was done we all sat down to eat .", "storylet_id": "248526"}], [{"original_text": "We also got to meet our brothers new baby. He was so sweet.", "album_id": "1445664", "photo_flickr_id": "66995305", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49705", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also got to meet our brothers new baby . he was so sweet .", "storylet_id": "248527"}], [{"original_text": "After dinner we went outside and snapped some photos", "album_id": "1445664", "photo_flickr_id": "66994032", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49705", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after dinner we went outside and snapped some photos", "storylet_id": "248528"}], [{"original_text": "Then we all listened to my niece play piano.", "album_id": "1445664", "photo_flickr_id": "67693915", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49705", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we all listened to my niece play piano .", "storylet_id": "248529"}], [{"original_text": "I finally finished preparing all of the food for the party.", "album_id": "1445664", "photo_flickr_id": "66994471", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49706", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finally finished preparing all of the food for the party .", "storylet_id": "248530"}], [{"original_text": "It looked delicious.", "album_id": "1445664", "photo_flickr_id": "66994631", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49706", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it looked delicious .", "storylet_id": "248531"}], [{"original_text": "Everyone was very hungry.", "album_id": "1445664", "photo_flickr_id": "66995107", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49706", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was very hungry .", "storylet_id": "248532"}], [{"original_text": "They ate all of the food and there was no leftovers.", "album_id": "1445664", "photo_flickr_id": "66995225", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49706", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they ate all of the food and there was no leftovers .", "storylet_id": "248533"}], [{"original_text": "Afterward we spent some time chatting before everyone left.", "album_id": "1445664", "photo_flickr_id": "66995305", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49706", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we spent some time chatting before everyone left .", "storylet_id": "248534"}], [{"original_text": "Cooking a thanksgiving dinner, Mary ponders over what to be thankful over.", "album_id": "1445664", "photo_flickr_id": "66994471", "setting": "last-3-pick-old-and-tell", "worker_id": "P99Q6IF3SXG1KTJ", "story_id": "49707", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "cooking a thanksgiving dinner , [female] ponders over what to be thankful over .", "storylet_id": "248535"}], [{"original_text": "John, her husband, being the glutton he is, decided to start eating first!", "album_id": "1445664", "photo_flickr_id": "66994631", "setting": "last-3-pick-old-and-tell", "worker_id": "P99Q6IF3SXG1KTJ", "story_id": "49707", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] , her husband , being the glutton he is , decided to start eating first !", "storylet_id": "248536"}], [{"original_text": "They were all enjoying themselves, except Martha, who tightens her maroon scarf as she listens to the adults speak.", "album_id": "1445664", "photo_flickr_id": "66995107", "setting": "last-3-pick-old-and-tell", "worker_id": "P99Q6IF3SXG1KTJ", "story_id": "49707", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were all enjoying themselves , except [female] , who tightens her maroon scarf as she listens to the adults speak .", "storylet_id": "248537"}], [{"original_text": "Her sister, who was talking to John stopped to check her text messages.", "album_id": "1445664", "photo_flickr_id": "66995225", "setting": "last-3-pick-old-and-tell", "worker_id": "P99Q6IF3SXG1KTJ", "story_id": "49707", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her sister , who was talking to [male] stopped to check her text messages .", "storylet_id": "248538"}], [{"original_text": "While Sue and Rick were showing of their little girl, who was very happy!", "album_id": "1445664", "photo_flickr_id": "66995305", "setting": "last-3-pick-old-and-tell", "worker_id": "P99Q6IF3SXG1KTJ", "story_id": "49707", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while [female] and [male] were showing of their little girl , who was very happy !", "storylet_id": "248539"}], [{"original_text": "The turkey was golden and ready to come out of the oven.", "album_id": "1445664", "photo_flickr_id": "66994471", "setting": "last-3-pick-old-and-tell", "worker_id": "SBYYZUIWP2E9VS8", "story_id": "49708", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the turkey was golden and ready to come out of the oven .", "storylet_id": "248540"}], [{"original_text": "He carved the turkey before putting it on the table.", "album_id": "1445664", "photo_flickr_id": "66994631", "setting": "last-3-pick-old-and-tell", "worker_id": "SBYYZUIWP2E9VS8", "story_id": "49708", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he carved the turkey before putting it on the table .", "storylet_id": "248541"}], [{"original_text": "We all gathered around the dining table with a fruit center piece.", "album_id": "1445664", "photo_flickr_id": "66995107", "setting": "last-3-pick-old-and-tell", "worker_id": "SBYYZUIWP2E9VS8", "story_id": "49708", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all gathered around the dining table with a fruit center piece .", "storylet_id": "248542"}], [{"original_text": "We talked and gave thanks while we waited.", "album_id": "1445664", "photo_flickr_id": "66995225", "setting": "last-3-pick-old-and-tell", "worker_id": "SBYYZUIWP2E9VS8", "story_id": "49708", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we talked and gave thanks while we waited .", "storylet_id": "248543"}], [{"original_text": "We stayed and visited after dinner.", "album_id": "1445664", "photo_flickr_id": "66995305", "setting": "last-3-pick-old-and-tell", "worker_id": "SBYYZUIWP2E9VS8", "story_id": "49708", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we stayed and visited after dinner .", "storylet_id": "248544"}], [{"original_text": "The family was having a good time", "album_id": "1445664", "photo_flickr_id": "66994313", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49709", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was having a good time", "storylet_id": "248545"}], [{"original_text": "at the dinner.", "album_id": "1445664", "photo_flickr_id": "66994709", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49709", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at the dinner .", "storylet_id": "248546"}], [{"original_text": "The baby was happy", "album_id": "1445664", "photo_flickr_id": "66995305", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49709", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the baby was happy", "storylet_id": "248547"}], [{"original_text": "and they went outside", "album_id": "1445664", "photo_flickr_id": "66994032", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49709", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and they went outside", "storylet_id": "248548"}], [{"original_text": "after they had a nice meal.", "album_id": "1445664", "photo_flickr_id": "67693915", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49709", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after they had a nice meal .", "storylet_id": "248549"}], [{"original_text": "I brought the turkey to my friend's Thanksgiving party last week.", "album_id": "1455232", "photo_flickr_id": "67417994", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49710", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i brought the turkey to my friend 's thanksgiving party last week .", "storylet_id": "248550"}], [{"original_text": "They were still busy making some of the food.", "album_id": "1455232", "photo_flickr_id": "67418164", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49710", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were still busy making some of the food .", "storylet_id": "248551"}], [{"original_text": "Everyone was drinking and having a great time.", "album_id": "1455232", "photo_flickr_id": "67418612", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49710", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was drinking and having a great time .", "storylet_id": "248552"}], [{"original_text": "After the food was ready we served it.", "album_id": "1455232", "photo_flickr_id": "67419798", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49710", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the food was ready we served it .", "storylet_id": "248553"}], [{"original_text": "Everyone was very eager to have some of the turkey.", "album_id": "1455232", "photo_flickr_id": "67419871", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49710", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was very eager to have some of the turkey .", "storylet_id": "248554"}], [{"original_text": "Our get togethers with family are always so much fun.", "album_id": "1455232", "photo_flickr_id": "67420308", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49711", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our get togethers with family are always so much fun .", "storylet_id": "248555"}], [{"original_text": "The turkey looks burnt, but it isn't.", "album_id": "1455232", "photo_flickr_id": "67417994", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49711", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the turkey looks burnt , but it is n't .", "storylet_id": "248556"}], [{"original_text": "Before dinner everyone calms down a bit.", "album_id": "1455232", "photo_flickr_id": "67419433", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49711", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "before dinner everyone calms down a bit .", "storylet_id": "248557"}], [{"original_text": "The food is always greatat the gatherings.", "album_id": "1455232", "photo_flickr_id": "67419871", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49711", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food is always greatat the gatherings .", "storylet_id": "248558"}], [{"original_text": "My silly sister, who missed the gathering this year.", "album_id": "1455232", "photo_flickr_id": "67420064", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49711", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my silly sister , who missed the gathering this year .", "storylet_id": "248559"}], [{"original_text": "The turkey was cooked so we pulled it out of the oven.", "album_id": "1455232", "photo_flickr_id": "67417994", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49712", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the turkey was cooked so we pulled it out of the oven .", "storylet_id": "248560"}], [{"original_text": "My sister put the beans in a dish.", "album_id": "1455232", "photo_flickr_id": "67418164", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49712", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my sister put the beans in a dish .", "storylet_id": "248561"}], [{"original_text": "Everyone scrambled to sit down.", "album_id": "1455232", "photo_flickr_id": "67418612", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49712", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone scrambled to sit down .", "storylet_id": "248562"}], [{"original_text": "We started to cut the turkey.", "album_id": "1455232", "photo_flickr_id": "67419798", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49712", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we started to cut the turkey .", "storylet_id": "248563"}], [{"original_text": "After everyone relaxed with a smoke and wine.", "album_id": "1455232", "photo_flickr_id": "67419871", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49712", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after everyone relaxed with a smoke and wine .", "storylet_id": "248564"}], [{"original_text": "It was a turkey party at the university.", "album_id": "1455232", "photo_flickr_id": "67420308", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49713", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a turkey party at the university .", "storylet_id": "248565"}], [{"original_text": "The turkey was looking good.", "album_id": "1455232", "photo_flickr_id": "67417994", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49713", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the turkey was looking good .", "storylet_id": "248566"}], [{"original_text": "Everyone was fighting to get in line.", "album_id": "1455232", "photo_flickr_id": "67419433", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49713", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was fighting to get in line .", "storylet_id": "248567"}], [{"original_text": "They ended up playing games to see who goes first.", "album_id": "1455232", "photo_flickr_id": "67419871", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49713", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they ended up playing games to see who goes first .", "storylet_id": "248568"}], [{"original_text": "Samantha won with her hair mustache.", "album_id": "1455232", "photo_flickr_id": "67420064", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49713", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] won with her hair mustache .", "storylet_id": "248569"}], [{"original_text": "The grilled beer can chicken, it was so delicious.", "album_id": "1455232", "photo_flickr_id": "67417994", "setting": "last-3-pick-old-and-tell", "worker_id": "PSFXSSAPK4QAZEG", "story_id": "49714", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the grilled beer can chicken , it was so delicious .", "storylet_id": "248570"}], [{"original_text": "Finishing getting everything ready for dinner.", "album_id": "1455232", "photo_flickr_id": "67418164", "setting": "last-3-pick-old-and-tell", "worker_id": "PSFXSSAPK4QAZEG", "story_id": "49714", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "finishing getting everything ready for dinner .", "storylet_id": "248571"}], [{"original_text": "Everyone hanging around having a great time.", "album_id": "1455232", "photo_flickr_id": "67418612", "setting": "last-3-pick-old-and-tell", "worker_id": "PSFXSSAPK4QAZEG", "story_id": "49714", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone hanging around having a great time .", "storylet_id": "248572"}], [{"original_text": "Helping get last minute dinner ready.", "album_id": "1455232", "photo_flickr_id": "67419798", "setting": "last-3-pick-old-and-tell", "worker_id": "PSFXSSAPK4QAZEG", "story_id": "49714", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "helping get last minute dinner ready .", "storylet_id": "248573"}], [{"original_text": "Everyone hanging around just talking after our wonderful dinner.", "album_id": "1455232", "photo_flickr_id": "67419871", "setting": "last-3-pick-old-and-tell", "worker_id": "PSFXSSAPK4QAZEG", "story_id": "49714", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone hanging around just talking after our wonderful dinner .", "storylet_id": "248574"}], [{"original_text": "I spent a few hours at the bar with my friend's yesterday.", "album_id": "1460418", "photo_flickr_id": "67668752", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49715", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spent a few hours at the bar with my friend 's yesterday .", "storylet_id": "248575"}], [{"original_text": "I hadn't seen them in a long time.", "album_id": "1460418", "photo_flickr_id": "67668905", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49715", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had n't seen them in a long time .", "storylet_id": "248576"}], [{"original_text": "They were very happy to see me.", "album_id": "1460418", "photo_flickr_id": "67670184", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49715", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were very happy to see me .", "storylet_id": "248577"}], [{"original_text": "I also got to meet some new people while I was there.", "album_id": "1460418", "photo_flickr_id": "67670352", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49715", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also got to meet some new people while i was there .", "storylet_id": "248578"}], [{"original_text": "We drank a lot as well.", "album_id": "1460418", "photo_flickr_id": "67670491", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49715", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we drank a lot as well .", "storylet_id": "248579"}], [{"original_text": "Eric went to his friend's get-together at the bar.", "album_id": "1460418", "photo_flickr_id": "67668356", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49716", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] went to his friend 's get-together at the bar .", "storylet_id": "248580"}], [{"original_text": "Everyone was having a great time drinking.", "album_id": "1460418", "photo_flickr_id": "67668752", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49716", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was having a great time drinking .", "storylet_id": "248581"}], [{"original_text": "Gerald was the one chugging the most alcohol.", "album_id": "1460418", "photo_flickr_id": "67668905", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49716", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was the one chugging the most alcohol .", "storylet_id": "248582"}], [{"original_text": "He was so drunk he passed out on the table.", "album_id": "1460418", "photo_flickr_id": "67669096", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49716", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was so drunk he passed out on the table .", "storylet_id": "248583"}], [{"original_text": "Jacob was confused at the situation and went home. ", "album_id": "1460418", "photo_flickr_id": "67669464", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49716", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was confused at the situation and went home .", "storylet_id": "248584"}], [{"original_text": "Pub Day!", "album_id": "1460418", "photo_flickr_id": "67668752", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49717", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "pub day !", "storylet_id": "248585"}], [{"original_text": "It was pub day!", "album_id": "1460418", "photo_flickr_id": "67668905", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49717", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was pub day !", "storylet_id": "248586"}], [{"original_text": "Everyone was happy and drinking like no tomorrow.", "album_id": "1460418", "photo_flickr_id": "67670184", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49717", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was happy and drinking like no tomorrow .", "storylet_id": "248587"}], [{"original_text": "Even the twins were into it.", "album_id": "1460418", "photo_flickr_id": "67670352", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49717", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the twins were into it .", "storylet_id": "248588"}], [{"original_text": "Dan wasn't happy though as they started playing the \"Closing time\" song.", "album_id": "1460418", "photo_flickr_id": "67670491", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "49717", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was n't happy though as they started playing the `` closing time '' song .", "storylet_id": "248589"}], [{"original_text": "The crew was partying at the bar!", "album_id": "1460418", "photo_flickr_id": "67668752", "setting": "last-3-pick-old-and-tell", "worker_id": "P99Q6IF3SXG1KTJ", "story_id": "49718", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crew was partying at the bar !", "storylet_id": "248590"}], [{"original_text": "Mark, Janice, and Ford were having a drink and enjoying themselves.", "album_id": "1460418", "photo_flickr_id": "67668905", "setting": "last-3-pick-old-and-tell", "worker_id": "P99Q6IF3SXG1KTJ", "story_id": "49718", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] , [female] , and organization were having a drink and enjoying themselves .", "storylet_id": "248591"}], [{"original_text": "Dave, who was flirting with some woman should learn to dress better.", "album_id": "1460418", "photo_flickr_id": "67670184", "setting": "last-3-pick-old-and-tell", "worker_id": "P99Q6IF3SXG1KTJ", "story_id": "49718", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] , who was flirting with some woman should learn to dress better .", "storylet_id": "248592"}], [{"original_text": "Here is kirk and lisa. Maybe Kirk is questioning his choice in women after Lisa got stone drunk, and threw up.", "album_id": "1460418", "photo_flickr_id": "67670352", "setting": "last-3-pick-old-and-tell", "worker_id": "P99Q6IF3SXG1KTJ", "story_id": "49718", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is kirk and lisa . maybe [male] is questioning his choice in women after [female] got stone drunk , and threw up .", "storylet_id": "248593"}], [{"original_text": "Here is the hardy boys, taking about nothing really, just trying to upstage each other generally.", "album_id": "1460418", "photo_flickr_id": "67670491", "setting": "last-3-pick-old-and-tell", "worker_id": "P99Q6IF3SXG1KTJ", "story_id": "49718", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is the hardy boys , taking about nothing really , just trying to upstage each other generally .", "storylet_id": "248594"}], [{"original_text": "some friends went to the bar.", "album_id": "1460418", "photo_flickr_id": "67668752", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49719", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some friends went to the bar .", "storylet_id": "248595"}], [{"original_text": "We all laughed at fred.", "album_id": "1460418", "photo_flickr_id": "67668905", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49719", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all laughed at fred .", "storylet_id": "248596"}], [{"original_text": "Jamie had a bit of a drunk on.", "album_id": "1460418", "photo_flickr_id": "67670184", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49719", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] had a bit of a drunk on .", "storylet_id": "248597"}], [{"original_text": "Selfies were great!", "album_id": "1460418", "photo_flickr_id": "67670352", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49719", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "selfies were great !", "storylet_id": "248598"}], [{"original_text": "Dave really likes Tom.", "album_id": "1460418", "photo_flickr_id": "67670491", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49719", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] really likes [male] .", "storylet_id": "248599"}], [{"original_text": "The Thanksgiving table was beautiful.", "album_id": "1463296", "photo_flickr_id": "67817350", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49720", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the thanksgiving table was beautiful .", "storylet_id": "248600"}], [{"original_text": "Everyone was there to celebrate.", "album_id": "1463296", "photo_flickr_id": "67817390", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49720", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was there to celebrate .", "storylet_id": "248601"}], [{"original_text": "It was very loud.", "album_id": "1463296", "photo_flickr_id": "67817461", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49720", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was very loud .", "storylet_id": "248602"}], [{"original_text": "After dinner we played some board games.", "album_id": "1463296", "photo_flickr_id": "67817473", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49720", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after dinner we played some board games .", "storylet_id": "248603"}], [{"original_text": "The children had a great time.", "album_id": "1463296", "photo_flickr_id": "67817483", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49720", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the children had a great time .", "storylet_id": "248604"}], [{"original_text": "Martha wanted a wholesome birthday party.", "album_id": "1463296", "photo_flickr_id": "67817350", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49721", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] wanted a wholesome birthday party .", "storylet_id": "248605"}], [{"original_text": "The dinner was sans alcohol.", "album_id": "1463296", "photo_flickr_id": "67817390", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49721", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dinner was sans alcohol .", "storylet_id": "248606"}], [{"original_text": "Everyone brought their favorite dish to share.", "album_id": "1463296", "photo_flickr_id": "67817445", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49721", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone brought their favorite dish to share .", "storylet_id": "248607"}], [{"original_text": "The grownups playe board games all night.", "album_id": "1463296", "photo_flickr_id": "67817483", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49721", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the grownups playe board games all night .", "storylet_id": "248608"}], [{"original_text": "The children had lots of fun playing games as well.", "album_id": "1463296", "photo_flickr_id": "67817535", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49721", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the children had lots of fun playing games as well .", "storylet_id": "248609"}], [{"original_text": "All our family was over for thanksgiving.", "album_id": "1463296", "photo_flickr_id": "67817350", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49722", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all our family was over for thanksgiving .", "storylet_id": "248610"}], [{"original_text": "The room was crowded as everyone found their place to sit.", "album_id": "1463296", "photo_flickr_id": "67817390", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49722", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the room was crowded as everyone found their place to sit .", "storylet_id": "248611"}], [{"original_text": "It was nice to catch up.", "album_id": "1463296", "photo_flickr_id": "67817461", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49722", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was nice to catch up .", "storylet_id": "248612"}], [{"original_text": "After we set up a board game.", "album_id": "1463296", "photo_flickr_id": "67817473", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49722", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after we set up a board game .", "storylet_id": "248613"}], [{"original_text": "The kids had a blast playing.", "album_id": "1463296", "photo_flickr_id": "67817483", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49722", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids had a blast playing .", "storylet_id": "248614"}], [{"original_text": "The family is preparing for a large dinner.", "album_id": "1463296", "photo_flickr_id": "67817350", "setting": "last-3-pick-old-and-tell", "worker_id": "P3V1GB9CCQ8F4ZM", "story_id": "49723", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family is preparing for a large dinner .", "storylet_id": "248615"}], [{"original_text": "Here the family is setting up the table for their get together. ", "album_id": "1463296", "photo_flickr_id": "67817390", "setting": "last-3-pick-old-and-tell", "worker_id": "P3V1GB9CCQ8F4ZM", "story_id": "49723", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here the family is setting up the table for their get together .", "storylet_id": "248616"}], [{"original_text": "This is some of the extended family enjoying some of the food. ", "album_id": "1463296", "photo_flickr_id": "67817445", "setting": "last-3-pick-old-and-tell", "worker_id": "P3V1GB9CCQ8F4ZM", "story_id": "49723", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is some of the extended family enjoying some of the food .", "storylet_id": "248617"}], [{"original_text": "Here are a couple of the kids enjoying a game at the table after finishing dinner. ", "album_id": "1463296", "photo_flickr_id": "67817483", "setting": "last-3-pick-old-and-tell", "worker_id": "P3V1GB9CCQ8F4ZM", "story_id": "49723", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here are a couple of the kids enjoying a game at the table after finishing dinner .", "storylet_id": "248618"}], [{"original_text": "And here are the youngest members of the family playing on our pool table.", "album_id": "1463296", "photo_flickr_id": "67817535", "setting": "last-3-pick-old-and-tell", "worker_id": "P3V1GB9CCQ8F4ZM", "story_id": "49723", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and here are the youngest members of the family playing on our pool table .", "storylet_id": "248619"}], [{"original_text": "Game night was upon us and we prepared a feast for our guests", "album_id": "1463296", "photo_flickr_id": "67817350", "setting": "last-3-pick-old-and-tell", "worker_id": "OLY7XHRXN2MOCL5", "story_id": "49724", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "game night was upon us and we prepared a feast for our guests", "storylet_id": "248620"}], [{"original_text": "Before playing, we all ate the potluck and had wonderful conversation.", "album_id": "1463296", "photo_flickr_id": "67817390", "setting": "last-3-pick-old-and-tell", "worker_id": "OLY7XHRXN2MOCL5", "story_id": "49724", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before playing , we all ate the potluck and had wonderful conversation .", "storylet_id": "248621"}], [{"original_text": "We settled into the table and ate before John said \"Let's start playing!\"", "album_id": "1463296", "photo_flickr_id": "67817461", "setting": "last-3-pick-old-and-tell", "worker_id": "OLY7XHRXN2MOCL5", "story_id": "49724", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we settled into the table and ate before [male] said `` let 's start playing ! ''", "storylet_id": "248622"}], [{"original_text": "The women formed a team in the first game.", "album_id": "1463296", "photo_flickr_id": "67817473", "setting": "last-3-pick-old-and-tell", "worker_id": "OLY7XHRXN2MOCL5", "story_id": "49724", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the women formed a team in the first game .", "storylet_id": "248623"}], [{"original_text": "They won against the guys team on the other side of the table.", "album_id": "1463296", "photo_flickr_id": "67817483", "setting": "last-3-pick-old-and-tell", "worker_id": "OLY7XHRXN2MOCL5", "story_id": "49724", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they won against the guys team on the other side of the table .", "storylet_id": "248624"}], [{"original_text": "The girls bonded over the the games together.", "album_id": "1438619", "photo_flickr_id": "66683388", "setting": "first-2-pick-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "49725", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girls bonded over the the games together .", "storylet_id": "248625"}], [{"original_text": "Our little pooch snuck up on us through the shadows!", "album_id": "1438619", "photo_flickr_id": "66683408", "setting": "first-2-pick-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "49725", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our little pooch snuck up on us through the shadows !", "storylet_id": "248626"}], [{"original_text": "The whole family enjoyed the game.", "album_id": "1438619", "photo_flickr_id": "66683416", "setting": "first-2-pick-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "49725", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the whole family enjoyed the game .", "storylet_id": "248627"}], [{"original_text": "Our favorite girl smiles for the camera.", "album_id": "1438619", "photo_flickr_id": "66683446", "setting": "first-2-pick-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "49725", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our favorite girl smiles for the camera .", "storylet_id": "248628"}], [{"original_text": "We had fun gathering the whole family together again.", "album_id": "1438619", "photo_flickr_id": "68364058", "setting": "first-2-pick-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "49725", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had fun gathering the whole family together again .", "storylet_id": "248629"}], [{"original_text": "Today was a typical fun day at my house and it made me smile.", "album_id": "1438619", "photo_flickr_id": "66683446", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49726", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was a typical fun day at my house and it made me smile .", "storylet_id": "248630"}], [{"original_text": "I played a game of Monopoly with my younger sister.", "album_id": "1438619", "photo_flickr_id": "66683388", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49726", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i played a game of monopoly with my younger sister .", "storylet_id": "248631"}], [{"original_text": "We all sat around the table and enjoyed a delicious dinner. ", "album_id": "1438619", "photo_flickr_id": "66683420", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49726", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all sat around the table and enjoyed a delicious dinner .", "storylet_id": "248632"}], [{"original_text": "My brothers sat on the floor and watched television.", "album_id": "1438619", "photo_flickr_id": "66683454", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49726", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my brothers sat on the floor and watched television .", "storylet_id": "248633"}], [{"original_text": "We stayed up so late that my brother fell asleep on the sofa.", "album_id": "1438619", "photo_flickr_id": "66683442", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49726", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we stayed up so late that my brother fell asleep on the sofa .", "storylet_id": "248634"}], [{"original_text": "The family all came over for dinner.", "album_id": "1438619", "photo_flickr_id": "66683446", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49727", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family all came over for dinner .", "storylet_id": "248635"}], [{"original_text": "The kids set up dogoploly and played until dinner was ready.", "album_id": "1438619", "photo_flickr_id": "66683388", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49727", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids set up dogoploly and played until dinner was ready .", "storylet_id": "248636"}], [{"original_text": "We crowded all around and got our food. ", "album_id": "1438619", "photo_flickr_id": "66683420", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49727", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we crowded all around and got our food .", "storylet_id": "248637"}], [{"original_text": "After we lounged around and watched family videos.", "album_id": "1438619", "photo_flickr_id": "66683454", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49727", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after we lounged around and watched family videos .", "storylet_id": "248638"}], [{"original_text": "John was so full he fell asleep.", "album_id": "1438619", "photo_flickr_id": "66683442", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49727", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was so full he fell asleep .", "storylet_id": "248639"}], [{"original_text": "Here is a mom and her daughter with their new family dog. ", "album_id": "1438619", "photo_flickr_id": "66683388", "setting": "last-3-pick-old-and-tell", "worker_id": "P3V1GB9CCQ8F4ZM", "story_id": "49728", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is a mom and her daughter with their new family dog .", "storylet_id": "248640"}], [{"original_text": "The dog is a small cute fluffy white dog named jack. ", "album_id": "1438619", "photo_flickr_id": "66683408", "setting": "last-3-pick-old-and-tell", "worker_id": "P3V1GB9CCQ8F4ZM", "story_id": "49728", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dog is a small cute fluffy white dog named jack .", "storylet_id": "248641"}], [{"original_text": "Here is the rest of the family which includes a mom, dad sister and her brother.", "album_id": "1438619", "photo_flickr_id": "66683416", "setting": "last-3-pick-old-and-tell", "worker_id": "P3V1GB9CCQ8F4ZM", "story_id": "49728", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is the rest of the family which includes a mom , dad sister and her brother .", "storylet_id": "248642"}], [{"original_text": "Here is the mom posing for a candid family photo.", "album_id": "1438619", "photo_flickr_id": "66683446", "setting": "last-3-pick-old-and-tell", "worker_id": "P3V1GB9CCQ8F4ZM", "story_id": "49728", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is the mom posing for a candid family photo .", "storylet_id": "248643"}], [{"original_text": "And here is some the extended family. Who have come over for a family get together. ", "album_id": "1438619", "photo_flickr_id": "68364058", "setting": "last-3-pick-old-and-tell", "worker_id": "P3V1GB9CCQ8F4ZM", "story_id": "49728", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and here is some the extended family . who have come over for a family get together .", "storylet_id": "248644"}], [{"original_text": "Julie came over to play a game with her kid and the dog.", "album_id": "1438619", "photo_flickr_id": "66683446", "setting": "last-3-pick-old-and-tell", "worker_id": "OLY7XHRXN2MOCL5", "story_id": "49729", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] came over to play a game with her kid and the dog .", "storylet_id": "248645"}], [{"original_text": "The two played an interesting game of monopoly.", "album_id": "1438619", "photo_flickr_id": "66683388", "setting": "last-3-pick-old-and-tell", "worker_id": "OLY7XHRXN2MOCL5", "story_id": "49729", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the two played an interesting game of monopoly .", "storylet_id": "248646"}], [{"original_text": "Afterwards, everyone, who is dressed in red coincidentally, had some food.", "album_id": "1438619", "photo_flickr_id": "66683420", "setting": "last-3-pick-old-and-tell", "worker_id": "OLY7XHRXN2MOCL5", "story_id": "49729", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards , everyone , who is dressed in red coincidentally , had some food .", "storylet_id": "248647"}], [{"original_text": "Julie's ex and his husband had to lie down after eating such a large dinner.", "album_id": "1438619", "photo_flickr_id": "66683454", "setting": "last-3-pick-old-and-tell", "worker_id": "OLY7XHRXN2MOCL5", "story_id": "49729", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] 's ex and his husband had to lie down after eating such a large dinner .", "storylet_id": "248648"}], [{"original_text": "Julie's ex then fell asleep after eating -- it was a large food coma indeed!", "album_id": "1438619", "photo_flickr_id": "66683442", "setting": "last-3-pick-old-and-tell", "worker_id": "OLY7XHRXN2MOCL5", "story_id": "49729", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] 's ex then fell asleep after eating -- it was a large food coma indeed !", "storylet_id": "248649"}], [{"original_text": "It's my brothers birthday today.", "album_id": "1475214", "photo_flickr_id": "68385075", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49730", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's my brothers birthday today .", "storylet_id": "248650"}], [{"original_text": "We're having a birthday party.", "album_id": "1475214", "photo_flickr_id": "68385390", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49730", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we 're having a birthday party .", "storylet_id": "248651"}], [{"original_text": "Here I am with dad.", "album_id": "1475214", "photo_flickr_id": "68385308", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49730", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here i am with dad .", "storylet_id": "248652"}], [{"original_text": "Here's my aunt.", "album_id": "1475214", "photo_flickr_id": "68385270", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49730", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's my aunt .", "storylet_id": "248653"}], [{"original_text": "Here's my brother. Happy Birthday!", "album_id": "1475214", "photo_flickr_id": "68389700", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49730", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's my brother . happy birthday !", "storylet_id": "248654"}], [{"original_text": "The table setting was gorgeous for the party. ", "album_id": "1475214", "photo_flickr_id": "68385517", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49731", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the table setting was gorgeous for the party .", "storylet_id": "248655"}], [{"original_text": "The little ones were hungry, and ready to eat. ", "album_id": "1475214", "photo_flickr_id": "68385075", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49731", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the little ones were hungry , and ready to eat .", "storylet_id": "248656"}], [{"original_text": "We gathered around and gave thanks for what we were thankful for. ", "album_id": "1475214", "photo_flickr_id": "68385390", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49731", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we gathered around and gave thanks for what we were thankful for .", "storylet_id": "248657"}], [{"original_text": "The little ones look goofy in their hats. ", "album_id": "1475214", "photo_flickr_id": "68389765", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49731", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the little ones look goofy in their hats .", "storylet_id": "248658"}], [{"original_text": "We sat around the table and enjoyed the great meal. ", "album_id": "1475214", "photo_flickr_id": "68385026", "setting": "first-2-pick-and-tell", "worker_id": "6W67LPOZN0TYV90", "story_id": "49731", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we sat around the table and enjoyed the great meal .", "storylet_id": "248659"}], [{"original_text": "Today they were setting up for a birthday.", "album_id": "1475214", "photo_flickr_id": "68385517", "setting": "last-3-pick-old-and-tell", "worker_id": "RBCHD254AMPB6BT", "story_id": "49732", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today they were setting up for a birthday .", "storylet_id": "248660"}], [{"original_text": "It was her 2 and birthday.", "album_id": "1475214", "photo_flickr_id": "68385075", "setting": "last-3-pick-old-and-tell", "worker_id": "RBCHD254AMPB6BT", "story_id": "49732", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was her 2 and birthday .", "storylet_id": "248661"}], [{"original_text": "She got all kinds of presents from everyone.", "album_id": "1475214", "photo_flickr_id": "68385390", "setting": "last-3-pick-old-and-tell", "worker_id": "RBCHD254AMPB6BT", "story_id": "49732", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she got all kinds of presents from everyone .", "storylet_id": "248662"}], [{"original_text": "A whole bunch of people came to see her.", "album_id": "1475214", "photo_flickr_id": "68389765", "setting": "last-3-pick-old-and-tell", "worker_id": "RBCHD254AMPB6BT", "story_id": "49732", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a whole bunch of people came to see her .", "storylet_id": "248663"}], [{"original_text": "They all had an amazing dinner and time together.", "album_id": "1475214", "photo_flickr_id": "68385026", "setting": "last-3-pick-old-and-tell", "worker_id": "RBCHD254AMPB6BT", "story_id": "49732", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all had an amazing dinner and time together .", "storylet_id": "248664"}], [{"original_text": "Jenny was dressed in her nice red dress.", "album_id": "1475214", "photo_flickr_id": "68385075", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49733", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was dressed in her nice red dress .", "storylet_id": "248665"}], [{"original_text": "Everyone was happy at the party. They all had a good time.", "album_id": "1475214", "photo_flickr_id": "68385390", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49733", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was happy at the party . they all had a good time .", "storylet_id": "248666"}], [{"original_text": "Jenny and Uncle Bob wore hats were playing around.", "album_id": "1475214", "photo_flickr_id": "68385308", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49733", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] and uncle [male] wore hats were playing around .", "storylet_id": "248667"}], [{"original_text": "Aunt Patty was drinking a really big glass of wine.", "album_id": "1475214", "photo_flickr_id": "68385270", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49733", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "aunt [female] was drinking a really big glass of wine .", "storylet_id": "248668"}], [{"original_text": "Mom, Dad and Bobby were all on the couch with their hats.", "album_id": "1475214", "photo_flickr_id": "68389700", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49733", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mom , dad and [male] were all on the couch with their hats .", "storylet_id": "248669"}], [{"original_text": "Little Jenny wasn't happy about having to wear a dress for Thanksgiving. ", "album_id": "1475214", "photo_flickr_id": "68385075", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49734", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "little [female] was n't happy about having to wear a dress for thanksgiving .", "storylet_id": "248670"}], [{"original_text": "She started to cheer up as more family members came over, and they all made turkey hats to wear.", "album_id": "1475214", "photo_flickr_id": "68385390", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49734", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she started to cheer up as more family members came over , and they all made turkey hats to wear .", "storylet_id": "248671"}], [{"original_text": "Jenny laughed and laughed as her dad pretended to be a real turkey.", "album_id": "1475214", "photo_flickr_id": "68385308", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49734", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] laughed and laughed as her dad pretended to be a real turkey .", "storylet_id": "248672"}], [{"original_text": "Mom got a little tired of the game and broke open a bottle of wine. ", "album_id": "1475214", "photo_flickr_id": "68385270", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49734", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom got a little tired of the game and broke open a bottle of wine .", "storylet_id": "248673"}], [{"original_text": "Their neighbors played along, too, and made matching hats.", "album_id": "1475214", "photo_flickr_id": "68389700", "setting": "last-3-pick-old-and-tell", "worker_id": "7UVJDOEJQGLWEY0", "story_id": "49734", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their neighbors played along , too , and made matching hats .", "storylet_id": "248674"}], [{"original_text": "An amazing evening with guests gathered around having a laugh and drinking beer. ", "album_id": "1477049", "photo_flickr_id": "68479670", "setting": "first-2-pick-and-tell", "worker_id": "YWB4YNGKDCE7MUP", "story_id": "49735", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an amazing evening with guests gathered around having a laugh and drinking beer .", "storylet_id": "248675"}], [{"original_text": "The smell of roast was in the air and the Chicken was cooked just right. ", "album_id": "1477049", "photo_flickr_id": "68479719", "setting": "first-2-pick-and-tell", "worker_id": "YWB4YNGKDCE7MUP", "story_id": "49735", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the smell of roast was in the air and the chicken was cooked just right .", "storylet_id": "248676"}], [{"original_text": "As you can see she was impatient to try some of her own delicacies. ", "album_id": "1477049", "photo_flickr_id": "68479740", "setting": "first-2-pick-and-tell", "worker_id": "YWB4YNGKDCE7MUP", "story_id": "49735", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as you can see she was impatient to try some of her own delicacies .", "storylet_id": "248677"}], [{"original_text": "There were plenty of drinks to go around and it kept peoples spirits up while the food was getting ready. ", "album_id": "1477049", "photo_flickr_id": "68479807", "setting": "first-2-pick-and-tell", "worker_id": "YWB4YNGKDCE7MUP", "story_id": "49735", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were plenty of drinks to go around and it kept peoples spirits up while the food was getting ready .", "storylet_id": "248678"}], [{"original_text": "After it was all prepared, guests sat around the table enjoying their food and evening. ", "album_id": "1477049", "photo_flickr_id": "68479787", "setting": "first-2-pick-and-tell", "worker_id": "YWB4YNGKDCE7MUP", "story_id": "49735", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after it was all prepared , guests sat around the table enjoying their food and evening .", "storylet_id": "248679"}], [{"original_text": "Here's one of our Thanksgiving turkeys.", "album_id": "1477049", "photo_flickr_id": "68479659", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49736", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here 's one of our thanksgiving turkeys .", "storylet_id": "248680"}], [{"original_text": "Our family always gathers around to talk at Thanksgiving.", "album_id": "1477049", "photo_flickr_id": "68479670", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49736", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our family always gathers around to talk at thanksgiving .", "storylet_id": "248681"}], [{"original_text": "Here is the other turkey.", "album_id": "1477049", "photo_flickr_id": "68479719", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49736", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is the other turkey .", "storylet_id": "248682"}], [{"original_text": "We gather around a huge table of great food.", "album_id": "1477049", "photo_flickr_id": "68479787", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49736", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we gather around a huge table of great food .", "storylet_id": "248683"}], [{"original_text": "Best of all is my Uncle's home brewed beer.", "album_id": "1477049", "photo_flickr_id": "68479869", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49736", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "best of all is my uncle 's home brewed beer .", "storylet_id": "248684"}], [{"original_text": "My dad decided to smoke the turkey for Thanksgiving this year.", "album_id": "1477049", "photo_flickr_id": "68479659", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49737", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my dad decided to smoke the turkey for thanksgiving this year .", "storylet_id": "248685"}], [{"original_text": "Most of the family gathered in the living room to watch TV.", "album_id": "1477049", "photo_flickr_id": "68479670", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49737", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "most of the family gathered in the living room to watch tv .", "storylet_id": "248686"}], [{"original_text": "This was the bird after it was finally done cooking, yum!", "album_id": "1477049", "photo_flickr_id": "68479719", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49737", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was the bird after it was finally done cooking , yum !", "storylet_id": "248687"}], [{"original_text": "We had an informal dinner that was almost more of a BBQ, but we all loved it.", "album_id": "1477049", "photo_flickr_id": "68479787", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49737", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had an informal dinner that was almost more of a bbq , but we all loved it .", "storylet_id": "248688"}], [{"original_text": "Nothing better to finish off a great dinner than a very good stout, cheers!", "album_id": "1477049", "photo_flickr_id": "68479869", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49737", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "nothing better to finish off a great dinner than a very good stout , cheers !", "storylet_id": "248689"}], [{"original_text": "The turkey is done and ready to be cut.", "album_id": "1477049", "photo_flickr_id": "68479659", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "49738", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the turkey is done and ready to be cut .", "storylet_id": "248690"}], [{"original_text": "Everyone sitting and waiting on the food.", "album_id": "1477049", "photo_flickr_id": "68479670", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "49738", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone sitting and waiting on the food .", "storylet_id": "248691"}], [{"original_text": "Getting ready to slice it up.", "album_id": "1477049", "photo_flickr_id": "68479719", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "49738", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "getting ready to slice it up .", "storylet_id": "248692"}], [{"original_text": "Food and drinks on the table.", "album_id": "1477049", "photo_flickr_id": "68479787", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "49738", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "food and drinks on the table .", "storylet_id": "248693"}], [{"original_text": "A glass of beer looks really great.", "album_id": "1477049", "photo_flickr_id": "68479869", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "49738", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a glass of beer looks really great .", "storylet_id": "248694"}], [{"original_text": "The family gathered for a traditional Thanksgiving Day party.", "album_id": "1477049", "photo_flickr_id": "68479670", "setting": "last-3-pick-old-and-tell", "worker_id": "VYED4TCLG4F9S44", "story_id": "49739", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family gathered for a traditional thanksgiving day party .", "storylet_id": "248695"}], [{"original_text": "The turkey was basted and laid out on the table for all to enjoy.", "album_id": "1477049", "photo_flickr_id": "68479719", "setting": "last-3-pick-old-and-tell", "worker_id": "VYED4TCLG4F9S44", "story_id": "49739", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the turkey was basted and laid out on the table for all to enjoy .", "storylet_id": "248696"}], [{"original_text": "Sheila couldn't help but sneak a quick taste before we sat down to eat.", "album_id": "1477049", "photo_flickr_id": "68479740", "setting": "last-3-pick-old-and-tell", "worker_id": "VYED4TCLG4F9S44", "story_id": "49739", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] could n't help but sneak a quick taste before we sat down to eat .", "storylet_id": "248697"}], [{"original_text": "Cold drinks waited for us as we took our seats.", "album_id": "1477049", "photo_flickr_id": "68479807", "setting": "last-3-pick-old-and-tell", "worker_id": "VYED4TCLG4F9S44", "story_id": "49739", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cold drinks waited for us as we took our seats .", "storylet_id": "248698"}], [{"original_text": "A beautifully set table, delicious food, and memories were shared by all!", "album_id": "1477049", "photo_flickr_id": "68479787", "setting": "last-3-pick-old-and-tell", "worker_id": "VYED4TCLG4F9S44", "story_id": "49739", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a beautifully set table , delicious food , and memories were shared by all !", "storylet_id": "248699"}], [{"original_text": "The new baby was brought to the new house to visit.", "album_id": "1478789", "photo_flickr_id": "68559374", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49740", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the new baby was brought to the new house to visit .", "storylet_id": "248700"}], [{"original_text": "The parents relaxed on the couch while the kids played.", "album_id": "1478789", "photo_flickr_id": "68557148", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49740", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the parents relaxed on the couch while the kids played .", "storylet_id": "248701"}], [{"original_text": "The brother bonded with his new sister.", "album_id": "1478789", "photo_flickr_id": "68557436", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49740", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the brother bonded with his new sister .", "storylet_id": "248702"}], [{"original_text": "After we had some more wine", "album_id": "1478789", "photo_flickr_id": "68551876", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49740", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after we had some more wine", "storylet_id": "248703"}], [{"original_text": "and grandma read the baby a new short story.", "album_id": "1478789", "photo_flickr_id": "68551224", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49740", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and grandma read the baby a new short story .", "storylet_id": "248704"}], [{"original_text": "It's fall and mom and dad are here to see our newest baby.", "album_id": "1478789", "photo_flickr_id": "68559374", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49741", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's fall and mom and dad are here to see our newest baby .", "storylet_id": "248705"}], [{"original_text": "Here I am with my new one.", "album_id": "1478789", "photo_flickr_id": "68558571", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49741", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here i am with my new one .", "storylet_id": "248706"}], [{"original_text": "Here is my brother with our pride and joy.", "album_id": "1478789", "photo_flickr_id": "68557990", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49741", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is my brother with our pride and joy .", "storylet_id": "248707"}], [{"original_text": "Here's my dad with one of his grand babies.", "album_id": "1478789", "photo_flickr_id": "68554809", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49741", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's my dad with one of his grand babies .", "storylet_id": "248708"}], [{"original_text": "Dad looks happy but what about my boy?", "album_id": "1478789", "photo_flickr_id": "68554240", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49741", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dad looks happy but what about my boy ?", "storylet_id": "248709"}], [{"original_text": "The family has the newly born baby.", "album_id": "1478789", "photo_flickr_id": "68559374", "setting": "last-3-pick-old-and-tell", "worker_id": "78NC3IZA64PT37E", "story_id": "49742", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family has the newly born baby .", "storylet_id": "248710"}], [{"original_text": "They are very happy to have a baby.", "album_id": "1478789", "photo_flickr_id": "68558571", "setting": "last-3-pick-old-and-tell", "worker_id": "78NC3IZA64PT37E", "story_id": "49742", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are very happy to have a baby .", "storylet_id": "248711"}], [{"original_text": "All the people love him very much.", "album_id": "1478789", "photo_flickr_id": "68557990", "setting": "last-3-pick-old-and-tell", "worker_id": "78NC3IZA64PT37E", "story_id": "49742", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the people love him very much .", "storylet_id": "248712"}], [{"original_text": "The child is very shy and do not like to have pictures.", "album_id": "1478789", "photo_flickr_id": "68554809", "setting": "last-3-pick-old-and-tell", "worker_id": "78NC3IZA64PT37E", "story_id": "49742", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the child is very shy and do not like to have pictures .", "storylet_id": "248713"}], [{"original_text": "The family is taking pictures of his son.", "album_id": "1478789", "photo_flickr_id": "68554240", "setting": "last-3-pick-old-and-tell", "worker_id": "78NC3IZA64PT37E", "story_id": "49742", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family is taking pictures of his son .", "storylet_id": "248714"}], [{"original_text": "Baby Jimmer came over for the first time to his grandparent's house.", "album_id": "1478789", "photo_flickr_id": "68559374", "setting": "last-3-pick-old-and-tell", "worker_id": "OLY7XHRXN2MOCL5", "story_id": "49743", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] jimmer came over for the first time to his grandparent 's house .", "storylet_id": "248715"}], [{"original_text": "The grandparents felt a little weird since they were so young but welcomed Jimmer.", "album_id": "1478789", "photo_flickr_id": "68557148", "setting": "last-3-pick-old-and-tell", "worker_id": "OLY7XHRXN2MOCL5", "story_id": "49743", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the grandparents felt a little weird since they were so young but welcomed jimmer .", "storylet_id": "248716"}], [{"original_text": "The other grandchild pretended to change a diaper but then changed his mind.", "album_id": "1478789", "photo_flickr_id": "68557436", "setting": "last-3-pick-old-and-tell", "worker_id": "OLY7XHRXN2MOCL5", "story_id": "49743", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the other grandchild pretended to change a diaper but then changed his mind .", "storylet_id": "248717"}], [{"original_text": "So the grandparents changed the diaper in the kitchen for real.", "album_id": "1478789", "photo_flickr_id": "68551876", "setting": "last-3-pick-old-and-tell", "worker_id": "OLY7XHRXN2MOCL5", "story_id": "49743", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so the grandparents changed the diaper in the kitchen for real .", "storylet_id": "248718"}], [{"original_text": "After Jimmer had a clean diaper, his mother read to him from a picture book.", "album_id": "1478789", "photo_flickr_id": "68551224", "setting": "last-3-pick-old-and-tell", "worker_id": "OLY7XHRXN2MOCL5", "story_id": "49743", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after jimmer had a clean diaper , his mother read to him from a picture book .", "storylet_id": "248719"}], [{"original_text": "Jeffrey loves to sit in dad's lap", "album_id": "1478789", "photo_flickr_id": "68559374", "setting": "last-3-pick-old-and-tell", "worker_id": "1WWQGDKMB164CIO", "story_id": "49744", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] loves to sit in dad 's lap", "storylet_id": "248720"}], [{"original_text": "He was easily distracted by his toys", "album_id": "1478789", "photo_flickr_id": "68558571", "setting": "last-3-pick-old-and-tell", "worker_id": "1WWQGDKMB164CIO", "story_id": "49744", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was easily distracted by his toys", "storylet_id": "248721"}], [{"original_text": "Dad caught some of the game while Jeffrey worked on some new teeth", "album_id": "1478789", "photo_flickr_id": "68557990", "setting": "last-3-pick-old-and-tell", "worker_id": "1WWQGDKMB164CIO", "story_id": "49744", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad caught some of the game while [male] worked on some new teeth", "storylet_id": "248722"}], [{"original_text": "His brother Michael got upset that Jeffrey had all the camera's attention", "album_id": "1478789", "photo_flickr_id": "68554809", "setting": "last-3-pick-old-and-tell", "worker_id": "1WWQGDKMB164CIO", "story_id": "49744", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his brother [male] got upset that [male] had all the camera 's attention", "storylet_id": "248723"}], [{"original_text": "He did a great job of playing it up!", "album_id": "1478789", "photo_flickr_id": "68554240", "setting": "last-3-pick-old-and-tell", "worker_id": "1WWQGDKMB164CIO", "story_id": "49744", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he did a great job of playing it up !", "storylet_id": "248724"}], [{"original_text": "At the antique shop, a dog was standing next to an old sofa.", "album_id": "634613", "photo_flickr_id": "28088502", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49745", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the antique shop , a dog was standing next to an old sofa .", "storylet_id": "248725"}], [{"original_text": "The sofa was rather small and it had an unusual covering.", "album_id": "634613", "photo_flickr_id": "28088409", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49745", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sofa was rather small and it had an unusual covering .", "storylet_id": "248726"}], [{"original_text": "The covering showed old covered bridges in Autumn.", "album_id": "634613", "photo_flickr_id": "28088727", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49745", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the covering showed old covered bridges in [female] .", "storylet_id": "248727"}], [{"original_text": "It also showed old windmills and it was very pretty.", "album_id": "634613", "photo_flickr_id": "28088661", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49745", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it also showed old windmills and it was very pretty .", "storylet_id": "248728"}], [{"original_text": "I reached into the sofa and found an old coin buried in between the cushions.", "album_id": "634613", "photo_flickr_id": "28095832", "setting": "first-2-pick-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49745", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i reached into the sofa and found an old coin buried in between the cushions .", "storylet_id": "248729"}], [{"original_text": "I reupholstered our old sofa.", "album_id": "634613", "photo_flickr_id": "28088458", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49746", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i reupholstered our old sofa .", "storylet_id": "248730"}], [{"original_text": "I picked this beautiful rustic design.", "album_id": "634613", "photo_flickr_id": "28088661", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49746", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i picked this beautiful rustic design .", "storylet_id": "248731"}], [{"original_text": "This reminds me of a bridge where I grew up.", "album_id": "634613", "photo_flickr_id": "28088727", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49746", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this reminds me of a bridge where i grew up .", "storylet_id": "248732"}], [{"original_text": "And this looks like a well at Grammy's house.", "album_id": "634613", "photo_flickr_id": "28088842", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49746", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and this looks like a well at grammy 's house .", "storylet_id": "248733"}], [{"original_text": "Our dog doesn't even notice the new upholstery.", "album_id": "634613", "photo_flickr_id": "28088502", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "49746", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our dog does n't even notice the new upholstery .", "storylet_id": "248734"}], [{"original_text": "I visited my grandmas house recently, her dog Fritz was happy to see me.", "album_id": "634613", "photo_flickr_id": "28088502", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49747", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i visited my grandmas house recently , her dog fritz was happy to see me .", "storylet_id": "248735"}], [{"original_text": "I was obsessed by this old wide chair that I had sat in so many times over the years.", "album_id": "634613", "photo_flickr_id": "28088409", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49747", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was obsessed by this old wide chair that i had sat in so many times over the years .", "storylet_id": "248736"}], [{"original_text": "Some of the images on the chair showed many cool things like this wooden bridge..", "album_id": "634613", "photo_flickr_id": "28088727", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49747", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the images on the chair showed many cool things like this wooden bridge..", "storylet_id": "248737"}], [{"original_text": "or this old school windmill, I never really paid attention to these before.", "album_id": "634613", "photo_flickr_id": "28088661", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49747", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "or this old school windmill , i never really paid attention to these before .", "storylet_id": "248738"}], [{"original_text": "As I bonus I even found this old coin, I'm not sure what it is, so it is off to do some investigating, what a cool old chair.", "album_id": "634613", "photo_flickr_id": "28095832", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49747", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as i bonus i even found this old coin , i 'm not sure what it is , so it is off to do some investigating , what a cool old chair .", "storylet_id": "248739"}], [{"original_text": "Today the family bought a used couch. The puppy is checking it out.", "album_id": "634613", "photo_flickr_id": "28088502", "setting": "last-3-pick-old-and-tell", "worker_id": "56NX4F7T06S1ON1", "story_id": "49748", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today the family bought a used couch . the puppy is checking it out .", "storylet_id": "248740"}], [{"original_text": "Everyone decides the couch looks great in the office.", "album_id": "634613", "photo_flickr_id": "28088409", "setting": "last-3-pick-old-and-tell", "worker_id": "56NX4F7T06S1ON1", "story_id": "49748", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone decides the couch looks great in the office .", "storylet_id": "248741"}], [{"original_text": "They like the couch because it reminds them of the covered bridges they saw on their trip to New England.", "album_id": "634613", "photo_flickr_id": "28088727", "setting": "last-3-pick-old-and-tell", "worker_id": "56NX4F7T06S1ON1", "story_id": "49748", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they like the couch because it reminds them of the covered bridges they saw on their trip to location location .", "storylet_id": "248742"}], [{"original_text": "They also like that the windmill designs remind them of their trip to Denmark.", "album_id": "634613", "photo_flickr_id": "28088661", "setting": "last-3-pick-old-and-tell", "worker_id": "56NX4F7T06S1ON1", "story_id": "49748", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also like that the windmill designs remind them of their trip to location .", "storylet_id": "248743"}], [{"original_text": "The children found an old coin in the couch! Everyone was excited.", "album_id": "634613", "photo_flickr_id": "28095832", "setting": "last-3-pick-old-and-tell", "worker_id": "56NX4F7T06S1ON1", "story_id": "49748", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the children found an old coin in the couch ! everyone was excited .", "storylet_id": "248744"}], [{"original_text": "I bought an old chair at the tag sale.", "album_id": "634613", "photo_flickr_id": "28088502", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49749", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i bought an old chair at the tag sale .", "storylet_id": "248745"}], [{"original_text": "It was more of a couch than a chair,", "album_id": "634613", "photo_flickr_id": "28088409", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49749", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was more of a couch than a chair ,", "storylet_id": "248746"}], [{"original_text": "There was a rustic barn photo on the print,", "album_id": "634613", "photo_flickr_id": "28088727", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49749", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a rustic barn photo on the print ,", "storylet_id": "248747"}], [{"original_text": "There were windmills too.", "album_id": "634613", "photo_flickr_id": "28088661", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49749", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were windmills too .", "storylet_id": "248748"}], [{"original_text": "There was a quarter in it!", "album_id": "634613", "photo_flickr_id": "28095832", "setting": "last-3-pick-old-and-tell", "worker_id": "76GANNDWME0YGWM", "story_id": "49749", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a quarter in it !", "storylet_id": "248749"}], [{"original_text": "We took a trip to the mountains.", "album_id": "1146517", "photo_flickr_id": "52858356", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49750", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to the mountains .", "storylet_id": "248750"}], [{"original_text": "We say a large beautiful building.", "album_id": "1146517", "photo_flickr_id": "52858091", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49750", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we say a large beautiful building .", "storylet_id": "248751"}], [{"original_text": "We snapped a few shots before heading back.", "album_id": "1146517", "photo_flickr_id": "52858573", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49750", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we snapped a few shots before heading back .", "storylet_id": "248752"}], [{"original_text": "We all got together for a large dinner", "album_id": "1146517", "photo_flickr_id": "52858932", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49750", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all got together for a large dinner", "storylet_id": "248753"}], [{"original_text": "and shared some laughs with some wine.", "album_id": "1146517", "photo_flickr_id": "52859583", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49750", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and shared some laughs with some wine .", "storylet_id": "248754"}], [{"original_text": "It's a gorgeous day to be outside.", "album_id": "1146517", "photo_flickr_id": "52858723", "setting": "first-2-pick-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "49751", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a gorgeous day to be outside .", "storylet_id": "248755"}], [{"original_text": "We're enjoying the sights and the peaceful atmosphere.", "album_id": "1146517", "photo_flickr_id": "52858455", "setting": "first-2-pick-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "49751", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we 're enjoying the sights and the peaceful atmosphere .", "storylet_id": "248756"}], [{"original_text": "The fresh air is a wonderful addition, and we can't get enough of it!", "album_id": "1146517", "photo_flickr_id": "52858573", "setting": "first-2-pick-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "49751", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fresh air is a wonderful addition , and we ca n't get enough of it !", "storylet_id": "248757"}], [{"original_text": "Moving further away adds to the serenity and doesn't diminish the regal beauty.", "album_id": "1146517", "photo_flickr_id": "52858091", "setting": "first-2-pick-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "49751", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "moving further away adds to the serenity and does n't diminish the regal beauty .", "storylet_id": "248758"}], [{"original_text": "The clear water lapping at the shores adds a harmony with nature that never gets old.", "album_id": "1146517", "photo_flickr_id": "52858201", "setting": "first-2-pick-and-tell", "worker_id": "9YX3TNS5UU4LTWD", "story_id": "49751", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the clear water lapping at the shores adds a harmony with nature that never gets old .", "storylet_id": "248759"}], [{"original_text": "My wife and I visited a small villiage on the Danube river in Europe.", "album_id": "1146517", "photo_flickr_id": "52858723", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49752", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my wife and i visited a small villiage on the location river in location .", "storylet_id": "248760"}], [{"original_text": "This was her, I keep telling her to smile bigger with no luck.", "album_id": "1146517", "photo_flickr_id": "52858455", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49752", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was her , i keep telling her to smile bigger with no luck .", "storylet_id": "248761"}], [{"original_text": "Although I didn't do much better, even with the great scenery.", "album_id": "1146517", "photo_flickr_id": "52858573", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49752", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "although i did n't do much better , even with the great scenery .", "storylet_id": "248762"}], [{"original_text": "This shot from up the mountian of this local town was highly impressive.", "album_id": "1146517", "photo_flickr_id": "52858091", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49752", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this shot from up the mountian of this local town was highly impressive .", "storylet_id": "248763"}], [{"original_text": "The river was so peaceful and calming, we plan to head back again soon.", "album_id": "1146517", "photo_flickr_id": "52858201", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49752", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the river was so peaceful and calming , we plan to head back again soon .", "storylet_id": "248764"}], [{"original_text": "In early fall, as the leaves were at their peak", "album_id": "1146517", "photo_flickr_id": "52858723", "setting": "last-3-pick-old-and-tell", "worker_id": "0OKLVVFCFAHN32Q", "story_id": "49753", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in early fall , as the leaves were at their peak", "storylet_id": "248765"}], [{"original_text": "I decided to go to a quaint mountain town for vacation", "album_id": "1146517", "photo_flickr_id": "52858455", "setting": "last-3-pick-old-and-tell", "worker_id": "0OKLVVFCFAHN32Q", "story_id": "49753", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i decided to go to a quaint mountain town for vacation", "storylet_id": "248766"}], [{"original_text": "I brought my boyfriend", "album_id": "1146517", "photo_flickr_id": "52858573", "setting": "last-3-pick-old-and-tell", "worker_id": "0OKLVVFCFAHN32Q", "story_id": "49753", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i brought my boyfriend", "storylet_id": "248767"}], [{"original_text": "and we stayed at a resort overlooking this beautiful mountain", "album_id": "1146517", "photo_flickr_id": "52858091", "setting": "last-3-pick-old-and-tell", "worker_id": "0OKLVVFCFAHN32Q", "story_id": "49753", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and we stayed at a resort overlooking this beautiful mountain", "storylet_id": "248768"}], [{"original_text": "At the base of the mountain was a beautiful clear lake. We had a great time!", "album_id": "1146517", "photo_flickr_id": "52858201", "setting": "last-3-pick-old-and-tell", "worker_id": "0OKLVVFCFAHN32Q", "story_id": "49753", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the base of the mountain was a beautiful clear lake . we had a great time !", "storylet_id": "248769"}], [{"original_text": "Going hiking and looking at the wonderful view of the mountains.", "album_id": "1146517", "photo_flickr_id": "52858356", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "49754", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going hiking and looking at the wonderful view of the mountains .", "storylet_id": "248770"}], [{"original_text": "I love the castle behind all the trees.", "album_id": "1146517", "photo_flickr_id": "52858091", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "49754", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love the castle behind all the trees .", "storylet_id": "248771"}], [{"original_text": "Here I am standing by the mountains.", "album_id": "1146517", "photo_flickr_id": "52858573", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "49754", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here i am standing by the mountains .", "storylet_id": "248772"}], [{"original_text": "It's party time, let's get something to eat.", "album_id": "1146517", "photo_flickr_id": "52858932", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "49754", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's party time , let 's get something to eat .", "storylet_id": "248773"}], [{"original_text": "A couple of friends having a drink.", "album_id": "1146517", "photo_flickr_id": "52859583", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "49754", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a couple of friends having a drink .", "storylet_id": "248774"}], [{"original_text": "I decided today would be the day I was going to conquer my fear of roller coasters and go on the Mantis.", "album_id": "868353", "photo_flickr_id": "39459617", "setting": "first-2-pick-and-tell", "worker_id": "QVHO22WTEA9BT3R", "story_id": "49755", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided today would be the day i was going to conquer my fear of roller coasters and go on the mantis .", "storylet_id": "248775"}], [{"original_text": "I thought reading all the safety checks would help ease my fear but it didn't.", "album_id": "868353", "photo_flickr_id": "40364150", "setting": "first-2-pick-and-tell", "worker_id": "QVHO22WTEA9BT3R", "story_id": "49755", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i thought reading all the safety checks would help ease my fear but it did n't .", "storylet_id": "248776"}], [{"original_text": "This is no ordinary coaster, here you can see where it loops around upside down.", "album_id": "868353", "photo_flickr_id": "39459479", "setting": "first-2-pick-and-tell", "worker_id": "QVHO22WTEA9BT3R", "story_id": "49755", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is no ordinary coaster , here you can see where it loops around upside down .", "storylet_id": "248777"}], [{"original_text": "This is the scariest part, you go straight up then free fall down backwards.", "album_id": "868353", "photo_flickr_id": "40741337", "setting": "first-2-pick-and-tell", "worker_id": "QVHO22WTEA9BT3R", "story_id": "49755", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the scariest part , you go straight up then free fall down backwards .", "storylet_id": "248778"}], [{"original_text": "This is the bush I threw up in after I got off the coaster, and no I didn't conquer my fear.", "album_id": "868353", "photo_flickr_id": "40741268", "setting": "first-2-pick-and-tell", "worker_id": "QVHO22WTEA9BT3R", "story_id": "49755", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the bush i threw up in after i got off the coaster , and no i did n't conquer my fear .", "storylet_id": "248779"}], [{"original_text": "We drove next to the train.", "album_id": "868353", "photo_flickr_id": "39459416", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49756", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we drove next to the train .", "storylet_id": "248780"}], [{"original_text": "Then we found Mantis.", "album_id": "868353", "photo_flickr_id": "39459617", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49756", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we found mantis .", "storylet_id": "248781"}], [{"original_text": "It seemed really dangerous at the park.", "album_id": "868353", "photo_flickr_id": "40364150", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49756", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it seemed really dangerous at the park .", "storylet_id": "248782"}], [{"original_text": "So we hid under an umbrella.", "album_id": "868353", "photo_flickr_id": "40741245", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49756", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so we hid under an umbrella .", "storylet_id": "248783"}], [{"original_text": "I sure hope this isn't poison ivy!", "album_id": "868353", "photo_flickr_id": "40741268", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49756", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i sure hope this is n't poison ivy !", "storylet_id": "248784"}], [{"original_text": "This looks like a scary ride.", "album_id": "868353", "photo_flickr_id": "39459617", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49757", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this looks like a scary ride .", "storylet_id": "248785"}], [{"original_text": "Safety rules must be folioed at all times at the amusement park.", "album_id": "868353", "photo_flickr_id": "40364150", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49757", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "safety rules must be folioed at all times at the amusement park .", "storylet_id": "248786"}], [{"original_text": "This ride looks like a colorful sculpture in the sky.", "album_id": "868353", "photo_flickr_id": "39459479", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49757", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this ride looks like a colorful sculpture in the sky .", "storylet_id": "248787"}], [{"original_text": "The people on this scary ride must be very brave.", "album_id": "868353", "photo_flickr_id": "40741337", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49757", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people on this scary ride must be very brave .", "storylet_id": "248788"}], [{"original_text": "The park has pretty gardens for those who don't care for the rides.", "album_id": "868353", "photo_flickr_id": "40741268", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49757", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the park has pretty gardens for those who do n't care for the rides .", "storylet_id": "248789"}], [{"original_text": "We decided to go to the amusement part for the day.", "album_id": "868353", "photo_flickr_id": "39459617", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "49758", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go to the amusement part for the day .", "storylet_id": "248790"}], [{"original_text": "The kids were able to pass the regulations and go on the rides. ", "album_id": "868353", "photo_flickr_id": "40364150", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "49758", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids were able to pass the regulations and go on the rides .", "storylet_id": "248791"}], [{"original_text": "Some of the rides were very loopy. ", "album_id": "868353", "photo_flickr_id": "39459479", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "49758", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the rides were very loopy .", "storylet_id": "248792"}], [{"original_text": "Or even downright scary. ", "album_id": "868353", "photo_flickr_id": "40741337", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "49758", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "or even downright scary .", "storylet_id": "248793"}], [{"original_text": "And littering the ground, all over the park, were these strange-looking plants. ", "album_id": "868353", "photo_flickr_id": "40741268", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "49758", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and littering the ground , all over the park , were these strange-looking plants .", "storylet_id": "248794"}], [{"original_text": "Riders enjoying the day at Cedar Point.", "album_id": "868353", "photo_flickr_id": "39459617", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49759", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "riders enjoying the day at location location .", "storylet_id": "248795"}], [{"original_text": "Reviewing the safety guide at the park.", "album_id": "868353", "photo_flickr_id": "40364150", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49759", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "reviewing the safety guide at the park .", "storylet_id": "248796"}], [{"original_text": "What an amazing water slide at the park.", "album_id": "868353", "photo_flickr_id": "39459479", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49759", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what an amazing water slide at the park .", "storylet_id": "248797"}], [{"original_text": "A very odd roller coaster in the park.", "album_id": "868353", "photo_flickr_id": "40741337", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49759", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a very odd roller coaster in the park .", "storylet_id": "248798"}], [{"original_text": "Foliage on the grounds of the park.", "album_id": "868353", "photo_flickr_id": "40741268", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49759", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "foliage on the grounds of the park .", "storylet_id": "248799"}], [{"original_text": "On the city street, it is rainy.", "album_id": "72057594090774925", "photo_flickr_id": "118022026", "setting": "first-2-pick-and-tell", "worker_id": "TQED0D8LV6DH8MN", "story_id": "49760", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on the city street , it is rainy .", "storylet_id": "248800"}], [{"original_text": "We escape the rain in the train station.", "album_id": "72057594090774925", "photo_flickr_id": "118022258", "setting": "first-2-pick-and-tell", "worker_id": "TQED0D8LV6DH8MN", "story_id": "49760", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we escape the rain in the train station .", "storylet_id": "248801"}], [{"original_text": "This is where we see the amateur dancers on the platform.", "album_id": "72057594090774925", "photo_flickr_id": "118021671", "setting": "first-2-pick-and-tell", "worker_id": "TQED0D8LV6DH8MN", "story_id": "49760", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is where we see the amateur dancers on the platform .", "storylet_id": "248802"}], [{"original_text": "They prove that break dancing is still popular.", "album_id": "72057594090774925", "photo_flickr_id": "118021811", "setting": "first-2-pick-and-tell", "worker_id": "TQED0D8LV6DH8MN", "story_id": "49760", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they prove that break dancing is still popular .", "storylet_id": "248803"}], [{"original_text": "Here is one of the dancers in his home environment, happy to be out of the rain.", "album_id": "72057594090774925", "photo_flickr_id": "118022015", "setting": "first-2-pick-and-tell", "worker_id": "TQED0D8LV6DH8MN", "story_id": "49760", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is one of the dancers in his home environment , happy to be out of the rain .", "storylet_id": "248804"}], [{"original_text": "We decided to take off and go to the Mercedes-Benz show room.", "album_id": "72057594090774925", "photo_flickr_id": "118022283", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49761", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to take off and go to the organization show room .", "storylet_id": "248805"}], [{"original_text": "The white car was without a doubt my favorite model.", "album_id": "72057594090774925", "photo_flickr_id": "118022258", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49761", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the white car was without a doubt my favorite model .", "storylet_id": "248806"}], [{"original_text": "We even got to see the motorcycle's they are working on.", "album_id": "72057594090774925", "photo_flickr_id": "118021651", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49761", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even got to see the motorcycle 's they are working on .", "storylet_id": "248807"}], [{"original_text": "The red car was awesome and very expensive.", "album_id": "72057594090774925", "photo_flickr_id": "118021660", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49761", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the red car was awesome and very expensive .", "storylet_id": "248808"}], [{"original_text": "Inside the car was amazing and I felt like I was in the future.", "album_id": "72057594090774925", "photo_flickr_id": "118022046", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49761", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "inside the car was amazing and i felt like i was in the future .", "storylet_id": "248809"}], [{"original_text": "The New York bridge stood above them as they visited it.", "album_id": "72057594090774925", "photo_flickr_id": "118022283", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49762", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the location location bridge stood above them as they visited it .", "storylet_id": "248810"}], [{"original_text": "They moved through the subway trying to get to their destination.", "album_id": "72057594090774925", "photo_flickr_id": "118022258", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49762", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they moved through the subway trying to get to their destination .", "storylet_id": "248811"}], [{"original_text": "They got to the dance contest, just in time.", "album_id": "72057594090774925", "photo_flickr_id": "118021651", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49762", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they got to the dance contest , just in time .", "storylet_id": "248812"}], [{"original_text": "They watched people dancing all night.", "album_id": "72057594090774925", "photo_flickr_id": "118021660", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49762", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they watched people dancing all night .", "storylet_id": "248813"}], [{"original_text": "They finished off the night by finding these tiny drawn robots in a window.", "album_id": "72057594090774925", "photo_flickr_id": "118022046", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49762", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they finished off the night by finding these tiny drawn robots in a window .", "storylet_id": "248814"}], [{"original_text": "I was walking down the pier yesterday, admiring the bridge.", "album_id": "72057594090774925", "photo_flickr_id": "118022283", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49763", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was walking down the pier yesterday , admiring the bridge .", "storylet_id": "248815"}], [{"original_text": "When I went to catch the subway I noticed a gathering nearby.", "album_id": "72057594090774925", "photo_flickr_id": "118022258", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49763", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when i went to catch the subway i noticed a gathering nearby .", "storylet_id": "248816"}], [{"original_text": "There were a lot of people watching some street performers.", "album_id": "72057594090774925", "photo_flickr_id": "118021651", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49763", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of people watching some street performers .", "storylet_id": "248817"}], [{"original_text": "They were very good.", "album_id": "72057594090774925", "photo_flickr_id": "118021660", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49763", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were very good .", "storylet_id": "248818"}], [{"original_text": "Afterward I left and got on that subway.", "album_id": "72057594090774925", "photo_flickr_id": "118022046", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49763", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward i left and got on that subway .", "storylet_id": "248819"}], [{"original_text": "It was a rainy day in the city, but beautiful. ", "album_id": "72057594090774925", "photo_flickr_id": "118022026", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "49764", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a rainy day in the city , but beautiful .", "storylet_id": "248820"}], [{"original_text": "The subways were surprisingly quiet. ", "album_id": "72057594090774925", "photo_flickr_id": "118022258", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "49764", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the subways were surprisingly quiet .", "storylet_id": "248821"}], [{"original_text": "Which made the large crowds at the dance-off startling.", "album_id": "72057594090774925", "photo_flickr_id": "118021671", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "49764", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "which made the large crowds at the dance-off startling .", "storylet_id": "248822"}], [{"original_text": "The dancers were incredible though.", "album_id": "72057594090774925", "photo_flickr_id": "118021811", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "49764", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dancers were incredible though .", "storylet_id": "248823"}], [{"original_text": "At the end of the day, we were happy to have gone. ", "album_id": "72057594090774925", "photo_flickr_id": "118022015", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "49764", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , we were happy to have gone .", "storylet_id": "248824"}], [{"original_text": "We set up the birthday banner for dad's party.", "album_id": "72157594267605245", "photo_flickr_id": "233409656", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49765", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we set up the birthday banner for dad 's party .", "storylet_id": "248825"}], [{"original_text": "Joking around, he put on his lion mask.", "album_id": "72157594267605245", "photo_flickr_id": "233409600", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49765", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "joking around , he put on his lion mask .", "storylet_id": "248826"}], [{"original_text": "We sang happy birthday to him", "album_id": "72157594267605245", "photo_flickr_id": "233409390", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49765", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we sang happy birthday to him", "storylet_id": "248827"}], [{"original_text": "and he blew out his candles. He wouldn't tell us his wish.", "album_id": "72157594267605245", "photo_flickr_id": "233409466", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49765", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and he blew out his candles . he would n't tell us his wish .", "storylet_id": "248828"}], [{"original_text": "After he opened up his gifts while still wearing his lion mask.", "album_id": "72157594267605245", "photo_flickr_id": "233409008", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49765", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after he opened up his gifts while still wearing his lion mask .", "storylet_id": "248829"}], [{"original_text": "I threw a birthday party for my dad last week.", "album_id": "72157594267605245", "photo_flickr_id": "233409656", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49766", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i threw a birthday party for my dad last week .", "storylet_id": "248830"}], [{"original_text": "He was very surprised!", "album_id": "72157594267605245", "photo_flickr_id": "233409008", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49766", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was very surprised !", "storylet_id": "248831"}], [{"original_text": "Even the dogs were happy for him!", "album_id": "72157594267605245", "photo_flickr_id": "233408702", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49766", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the dogs were happy for him !", "storylet_id": "248832"}], [{"original_text": "The children all spent a lot of time on their gifts.", "album_id": "72157594267605245", "photo_flickr_id": "233408447", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49766", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the children all spent a lot of time on their gifts .", "storylet_id": "248833"}], [{"original_text": "They turned out great.", "album_id": "72157594267605245", "photo_flickr_id": "233408619", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49766", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they turned out great .", "storylet_id": "248834"}], [{"original_text": "It's dads birthday today. The family spent a long time decorating.", "album_id": "72157594267605245", "photo_flickr_id": "233409656", "setting": "last-3-pick-old-and-tell", "worker_id": "P3V1GB9CCQ8F4ZM", "story_id": "49767", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's dads birthday today . the family spent a long time decorating .", "storylet_id": "248835"}], [{"original_text": "The family has gotten together to celebrate this occasion ", "album_id": "72157594267605245", "photo_flickr_id": "233409008", "setting": "last-3-pick-old-and-tell", "worker_id": "P3V1GB9CCQ8F4ZM", "story_id": "49767", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family has gotten together to celebrate this occasion", "storylet_id": "248836"}], [{"original_text": "Dad likes the gifts he has received and the dog appears to be in on the festivities ", "album_id": "72157594267605245", "photo_flickr_id": "233408702", "setting": "last-3-pick-old-and-tell", "worker_id": "P3V1GB9CCQ8F4ZM", "story_id": "49767", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad likes the gifts he has received and the dog appears to be in on the festivities", "storylet_id": "248837"}], [{"original_text": "The kids have gotten dad some more presents and he's opening them.", "album_id": "72157594267605245", "photo_flickr_id": "233408447", "setting": "last-3-pick-old-and-tell", "worker_id": "P3V1GB9CCQ8F4ZM", "story_id": "49767", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids have gotten dad some more presents and he 's opening them .", "storylet_id": "248838"}], [{"original_text": "Dad shows off the card his two sons made for him.", "album_id": "72157594267605245", "photo_flickr_id": "233408619", "setting": "last-3-pick-old-and-tell", "worker_id": "P3V1GB9CCQ8F4ZM", "story_id": "49767", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dad shows off the card his two sons made for him .", "storylet_id": "248839"}], [{"original_text": "The banner is put up for the birthday party. Everything looks good.", "album_id": "72157594267605245", "photo_flickr_id": "233409656", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49768", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the banner is put up for the birthday party . everything looks good .", "storylet_id": "248840"}], [{"original_text": "Grandpa looks scary in his mask. Hope he don't scare anyone.", "album_id": "72157594267605245", "photo_flickr_id": "233409600", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49768", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandpa looks scary in his mask . [female] he do n't scare anyone .", "storylet_id": "248841"}], [{"original_text": "Everyone is sitting down. We are all ready for cake.", "album_id": "72157594267605245", "photo_flickr_id": "233409390", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49768", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone is sitting down . we are all ready for cake .", "storylet_id": "248842"}], [{"original_text": "Grandpa is blowing out the candles. Boy he is old.", "album_id": "72157594267605245", "photo_flickr_id": "233409466", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49768", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandpa is blowing out the candles . boy he is old .", "storylet_id": "248843"}], [{"original_text": "Grandpa is checking out his presents on the couch.", "album_id": "72157594267605245", "photo_flickr_id": "233409008", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49768", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandpa is checking out his presents on the couch .", "storylet_id": "248844"}], [{"original_text": "Grandpa walked into his birthday surprise.", "album_id": "72157594267605245", "photo_flickr_id": "233409656", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49769", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandpa walked into his birthday surprise .", "storylet_id": "248845"}], [{"original_text": "We made him wear a mask to get in the spirit.", "album_id": "72157594267605245", "photo_flickr_id": "233409600", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49769", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made him wear a mask to get in the spirit .", "storylet_id": "248846"}], [{"original_text": "We presented the cake to grandpa.", "album_id": "72157594267605245", "photo_flickr_id": "233409390", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49769", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we presented the cake to grandpa .", "storylet_id": "248847"}], [{"original_text": "Grandpa blowing out his candles on the cake. Make a wish!", "album_id": "72157594267605245", "photo_flickr_id": "233409466", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49769", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandpa blowing out his candles on the cake . make a wish !", "storylet_id": "248848"}], [{"original_text": "Little Johnny gave grandpa his gift bag. No pants needed!", "album_id": "72157594267605245", "photo_flickr_id": "233409008", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49769", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "little [male] gave grandpa his gift bag . no pants needed !", "storylet_id": "248849"}], [{"original_text": "It is the start of a national rose competition and Sarah is judging.", "album_id": "72157594537876926", "photo_flickr_id": "391461218", "setting": "first-2-pick-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49770", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is the start of a national rose competition and [female] is judging .", "storylet_id": "248850"}], [{"original_text": "Sarah makes her way past many different roses but comes across one that looks spectacular.", "album_id": "72157594537876926", "photo_flickr_id": "391459455", "setting": "first-2-pick-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49770", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] makes her way past many different roses but comes across one that looks spectacular .", "storylet_id": "248851"}], [{"original_text": "She knows that, as a judge, she must examine each rose thoroughly.", "album_id": "72157594537876926", "photo_flickr_id": "391460750", "setting": "first-2-pick-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49770", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she knows that , as a judge , she must examine each rose thoroughly .", "storylet_id": "248852"}], [{"original_text": "Sarah dips close and examines each rose keeping an eye out for wilted petals and other abnormalities.", "album_id": "72157594537876926", "photo_flickr_id": "391460337", "setting": "first-2-pick-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49770", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] dips close and examines each rose keeping an eye out for wilted petals and other abnormalities .", "storylet_id": "248853"}], [{"original_text": "She even takes out a magnifying lens and realizes that this rose is absolutely perfect. Sarah gives the rose the highest score.", "album_id": "72157594537876926", "photo_flickr_id": "391462848", "setting": "first-2-pick-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49770", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she even takes out a magnifying lens and realizes that this rose is absolutely perfect . [female] gives the rose the highest score .", "storylet_id": "248854"}], [{"original_text": "I bought some roses today.", "album_id": "72157594537876926", "photo_flickr_id": "391460337", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49771", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i bought some roses today .", "storylet_id": "248855"}], [{"original_text": "They are very beautiful.", "album_id": "72157594537876926", "photo_flickr_id": "391460750", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49771", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are very beautiful .", "storylet_id": "248856"}], [{"original_text": "I also bought a vase to put them in.", "album_id": "72157594537876926", "photo_flickr_id": "391461218", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49771", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also bought a vase to put them in .", "storylet_id": "248857"}], [{"original_text": "I placed them on my desk at home.", "album_id": "72157594537876926", "photo_flickr_id": "391461610", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49771", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i placed them on my desk at home .", "storylet_id": "248858"}], [{"original_text": "I smell them every time I sit down.", "album_id": "72157594537876926", "photo_flickr_id": "391464232", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49771", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i smell them every time i sit down .", "storylet_id": "248859"}], [{"original_text": "I filled the vase up with water.", "album_id": "72157594537876926", "photo_flickr_id": "391461218", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49772", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i filled the vase up with water .", "storylet_id": "248860"}], [{"original_text": "I added the roses to the vase.", "album_id": "72157594537876926", "photo_flickr_id": "391459455", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49772", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i added the roses to the vase .", "storylet_id": "248861"}], [{"original_text": "I put the in at a time. ", "album_id": "72157594537876926", "photo_flickr_id": "391460750", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49772", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i put the in at a time .", "storylet_id": "248862"}], [{"original_text": "They were fully bloomed.", "album_id": "72157594537876926", "photo_flickr_id": "391460337", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49772", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were fully bloomed .", "storylet_id": "248863"}], [{"original_text": "And the perfect red color.", "album_id": "72157594537876926", "photo_flickr_id": "391462848", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49772", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the perfect red color .", "storylet_id": "248864"}], [{"original_text": "I started a project to start growing flowers.", "album_id": "72157594537876926", "photo_flickr_id": "391461218", "setting": "last-3-pick-old-and-tell", "worker_id": "8THCOZTW7CGC653", "story_id": "49773", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i started a project to start growing flowers .", "storylet_id": "248865"}], [{"original_text": "This is the first set of flowers I grew.", "album_id": "72157594537876926", "photo_flickr_id": "391459455", "setting": "last-3-pick-old-and-tell", "worker_id": "8THCOZTW7CGC653", "story_id": "49773", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the first set of flowers i grew .", "storylet_id": "248866"}], [{"original_text": "You can see the great petal formation here.", "album_id": "72157594537876926", "photo_flickr_id": "391460750", "setting": "last-3-pick-old-and-tell", "worker_id": "8THCOZTW7CGC653", "story_id": "49773", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you can see the great petal formation here .", "storylet_id": "248867"}], [{"original_text": "If you look close you can see the great pigmentation.", "album_id": "72157594537876926", "photo_flickr_id": "391460337", "setting": "last-3-pick-old-and-tell", "worker_id": "8THCOZTW7CGC653", "story_id": "49773", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "if you look close you can see the great pigmentation .", "storylet_id": "248868"}], [{"original_text": "I was very happy with the result of the flower everyone liked the.", "album_id": "72157594537876926", "photo_flickr_id": "391462848", "setting": "last-3-pick-old-and-tell", "worker_id": "8THCOZTW7CGC653", "story_id": "49773", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was very happy with the result of the flower everyone liked the .", "storylet_id": "248869"}], [{"original_text": "There was a symbol on the flower pot.", "album_id": "72157594537876926", "photo_flickr_id": "391461218", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49774", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a symbol on the flower pot .", "storylet_id": "248870"}], [{"original_text": "The flower pot held a bunch of roses.", "album_id": "72157594537876926", "photo_flickr_id": "391459455", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49774", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flower pot held a bunch of roses .", "storylet_id": "248871"}], [{"original_text": "The roses were very red.", "album_id": "72157594537876926", "photo_flickr_id": "391460750", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49774", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the roses were very red .", "storylet_id": "248872"}], [{"original_text": "Each rose looked slightly different.", "album_id": "72157594537876926", "photo_flickr_id": "391460337", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49774", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "each rose looked slightly different .", "storylet_id": "248873"}], [{"original_text": "This rose was much fuller than the others.", "album_id": "72157594537876926", "photo_flickr_id": "391462848", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49774", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this rose was much fuller than the others .", "storylet_id": "248874"}], [{"original_text": "Today we decided to take a hike.", "album_id": "72157594538251999", "photo_flickr_id": "393733957", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49775", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we decided to take a hike .", "storylet_id": "248875"}], [{"original_text": "We wondered into a town an saw some nice iron work.", "album_id": "72157594538251999", "photo_flickr_id": "391652250", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49775", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we wondered into a town an saw some nice iron work .", "storylet_id": "248876"}], [{"original_text": "There was also an abandoned building with a freight elevator.", "album_id": "72157594538251999", "photo_flickr_id": "393734432", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49775", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was also an abandoned building with a freight elevator .", "storylet_id": "248877"}], [{"original_text": "During the hike we saw a gorgeous waterfall.", "album_id": "72157594538251999", "photo_flickr_id": "393732444", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49775", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "during the hike we saw a gorgeous waterfall .", "storylet_id": "248878"}], [{"original_text": "We then walked across a scary rope bridge.", "album_id": "72157594538251999", "photo_flickr_id": "393732927", "setting": "first-2-pick-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49775", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we then walked across a scary rope bridge .", "storylet_id": "248879"}], [{"original_text": "I went out into the city last week.", "album_id": "72157594538251999", "photo_flickr_id": "391653758", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49776", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went out into the city last week .", "storylet_id": "248880"}], [{"original_text": "There were many interesting sights to see.", "album_id": "72157594538251999", "photo_flickr_id": "391652250", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49776", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many interesting sights to see .", "storylet_id": "248881"}], [{"original_text": "Some of the doors were marked dangerous.", "album_id": "72157594538251999", "photo_flickr_id": "393734432", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49776", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the doors were marked dangerous .", "storylet_id": "248882"}], [{"original_text": "After I left I decided to head out of the city to see a waterfall.", "album_id": "72157594538251999", "photo_flickr_id": "393732444", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49776", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after i left i decided to head out of the city to see a waterfall .", "storylet_id": "248883"}], [{"original_text": "The bridge to the falls was very narrow.", "album_id": "72157594538251999", "photo_flickr_id": "393732927", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49776", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bridge to the falls was very narrow .", "storylet_id": "248884"}], [{"original_text": "Today was the day.", "album_id": "72157594538251999", "photo_flickr_id": "391653758", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49777", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day .", "storylet_id": "248885"}], [{"original_text": "Out big sightseeing trip.", "album_id": "72157594538251999", "photo_flickr_id": "391652250", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49777", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "out big sightseeing trip .", "storylet_id": "248886"}], [{"original_text": "It was dangerous.", "album_id": "72157594538251999", "photo_flickr_id": "393734432", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49777", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was dangerous .", "storylet_id": "248887"}], [{"original_text": "There were waterfalls.", "album_id": "72157594538251999", "photo_flickr_id": "393732444", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49777", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were waterfalls .", "storylet_id": "248888"}], [{"original_text": "And a super cool bridge.", "album_id": "72157594538251999", "photo_flickr_id": "393732927", "setting": "last-3-pick-old-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49777", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and a super cool bridge .", "storylet_id": "248889"}], [{"original_text": "Here we are stopping for a rest", "album_id": "72157594538251999", "photo_flickr_id": "393733957", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "49778", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are stopping for a rest", "storylet_id": "248890"}], [{"original_text": "Trying to figure out what this is, but it's amazing.", "album_id": "72157594538251999", "photo_flickr_id": "391652250", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "49778", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "trying to figure out what this is , but it 's amazing .", "storylet_id": "248891"}], [{"original_text": "I wonder what is behind here.", "album_id": "72157594538251999", "photo_flickr_id": "393734432", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "49778", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i wonder what is behind here .", "storylet_id": "248892"}], [{"original_text": "Loving the waterfall in woods.", "album_id": "72157594538251999", "photo_flickr_id": "393732444", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "49778", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "loving the waterfall in woods .", "storylet_id": "248893"}], [{"original_text": "Walking across the bridge to get tot the other side.", "album_id": "72157594538251999", "photo_flickr_id": "393732927", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "49778", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "walking across the bridge to get tot the other side .", "storylet_id": "248894"}], [{"original_text": "The happy couple met up in the afternoon to grab lunch downtown and head out on a hike.", "album_id": "72157594538251999", "photo_flickr_id": "393733957", "setting": "last-3-pick-old-and-tell", "worker_id": "9VD4TEF1FC5U2Z8", "story_id": "49779", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the happy couple met up in the afternoon to grab lunch downtown and head out on a hike .", "storylet_id": "248895"}], [{"original_text": "The architecture and details at the restaurant were ornate and beautiful. Modern, yet had classic elements mixed in. ", "album_id": "72157594538251999", "photo_flickr_id": "391652250", "setting": "last-3-pick-old-and-tell", "worker_id": "9VD4TEF1FC5U2Z8", "story_id": "49779", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the architecture and details at the restaurant were ornate and beautiful . modern , yet had classic elements mixed in .", "storylet_id": "248896"}], [{"original_text": "The building itself was a very old building, which had one of the very first freight elevators in the city.", "album_id": "72157594538251999", "photo_flickr_id": "393734432", "setting": "last-3-pick-old-and-tell", "worker_id": "9VD4TEF1FC5U2Z8", "story_id": "49779", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the building itself was a very old building , which had one of the very first freight elevators in the city .", "storylet_id": "248897"}], [{"original_text": "After a couple miles of moderate climbing, the couple found themselves at the beautiful cascading waterfall.", "album_id": "72157594538251999", "photo_flickr_id": "393732444", "setting": "last-3-pick-old-and-tell", "worker_id": "9VD4TEF1FC5U2Z8", "story_id": "49779", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a couple miles of moderate climbing , the couple found themselves at the beautiful cascading waterfall .", "storylet_id": "248898"}], [{"original_text": "The couple enjoyed the swing bridge over the river canyon below. ", "album_id": "72157594538251999", "photo_flickr_id": "393732927", "setting": "last-3-pick-old-and-tell", "worker_id": "9VD4TEF1FC5U2Z8", "story_id": "49779", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the couple enjoyed the swing bridge over the river canyon below .", "storylet_id": "248899"}], [{"original_text": "There was a ton of snow on the ground yesterday.", "album_id": "72157594541874242", "photo_flickr_id": "393748685", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49780", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a ton of snow on the ground yesterday .", "storylet_id": "248900"}], [{"original_text": "I went to the park to walk my dog.", "album_id": "72157594541874242", "photo_flickr_id": "393748689", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49780", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went to the park to walk my dog .", "storylet_id": "248901"}], [{"original_text": "He was very excited to see all of the snow.", "album_id": "72157594541874242", "photo_flickr_id": "393763253", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49780", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was very excited to see all of the snow .", "storylet_id": "248902"}], [{"original_text": "There was a lot of graffiti in the park.", "album_id": "72157594541874242", "photo_flickr_id": "393763256", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49780", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a lot of graffiti in the park .", "storylet_id": "248903"}], [{"original_text": "After we played for a while I walked my dog back home.", "album_id": "72157594541874242", "photo_flickr_id": "393763258", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49780", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we played for a while i walked my dog back home .", "storylet_id": "248904"}], [{"original_text": "Frank was in his home when he was suddenly inspired to release his inner artist.", "album_id": "72157594541874242", "photo_flickr_id": "393763246", "setting": "first-2-pick-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49781", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was in his home when he was suddenly inspired to release his inner artist .", "storylet_id": "248905"}], [{"original_text": "He left out his home and petted his dog knowing that he had to travel a long way to find the perfect spot.", "album_id": "72157594541874242", "photo_flickr_id": "393763253", "setting": "first-2-pick-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49781", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he left out his home and petted his dog knowing that he had to travel a long way to find the perfect spot .", "storylet_id": "248906"}], [{"original_text": "After walking for about an hour, Frank's anticipation had peaked as he saw the perfect spot to start his graffiti work.", "album_id": "72157594541874242", "photo_flickr_id": "393763258", "setting": "first-2-pick-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49781", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after walking for about an hour , [male] 's anticipation had peaked as he saw the perfect spot to start his graffiti work .", "storylet_id": "248907"}], [{"original_text": "His first drawing was just a warm-up. Frank tested his sprays and cracked his knuckles for his masterpiece.", "album_id": "72157594541874242", "photo_flickr_id": "393748691", "setting": "first-2-pick-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49781", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his first drawing was just a warm-up . [male] tested his sprays and cracked his knuckles for his masterpiece .", "storylet_id": "248908"}], [{"original_text": "Frank spent some time but finally finished his favorite graffiti work of all time. Tired from all his work he was not looking forward to his long walk back home.", "album_id": "72157594541874242", "photo_flickr_id": "393763256", "setting": "first-2-pick-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49781", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] spent some time but finally finished his favorite graffiti work of all time . tired from all his work he was not looking forward to his long walk back home .", "storylet_id": "248909"}], [{"original_text": "We were off work because of the snow, so we took a walk. ", "album_id": "72157594541874242", "photo_flickr_id": "393748685", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49782", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were off work because of the snow , so we took a walk .", "storylet_id": "248910"}], [{"original_text": "There was some spraypaint on a nearby building.", "album_id": "72157594541874242", "photo_flickr_id": "393748689", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49782", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was some spraypaint on a nearby building .", "storylet_id": "248911"}], [{"original_text": "The dog loved it.", "album_id": "72157594541874242", "photo_flickr_id": "393763253", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49782", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dog loved it .", "storylet_id": "248912"}], [{"original_text": "More tagging on a fence.", "album_id": "72157594541874242", "photo_flickr_id": "393763256", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49782", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more tagging on a fence .", "storylet_id": "248913"}], [{"original_text": "The cold air felt good.", "album_id": "72157594541874242", "photo_flickr_id": "393763258", "setting": "last-3-pick-old-and-tell", "worker_id": "YXP3SWQEB3HDVFV", "story_id": "49782", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cold air felt good .", "storylet_id": "248914"}], [{"original_text": "It had snowed, but the dog needed to be walked.", "album_id": "72157594541874242", "photo_flickr_id": "393748685", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49783", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it had snowed , but the dog needed to be walked .", "storylet_id": "248915"}], [{"original_text": "There was graffiti outside.", "album_id": "72157594541874242", "photo_flickr_id": "393748689", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49783", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was graffiti outside .", "storylet_id": "248916"}], [{"original_text": "The man stopped to pet his dog.", "album_id": "72157594541874242", "photo_flickr_id": "393763253", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49783", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man stopped to pet his dog .", "storylet_id": "248917"}], [{"original_text": "The two passed by more artwork.", "album_id": "72157594541874242", "photo_flickr_id": "393763256", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49783", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the two passed by more artwork .", "storylet_id": "248918"}], [{"original_text": "They were nearing home now after the long, cold walk.", "album_id": "72157594541874242", "photo_flickr_id": "393763258", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "49783", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were nearing home now after the long , cold walk .", "storylet_id": "248919"}], [{"original_text": "The man is out for a walk after a fresh snow fall.", "album_id": "72157594541874242", "photo_flickr_id": "393748685", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "49784", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man is out for a walk after a fresh snow fall .", "storylet_id": "248920"}], [{"original_text": "He notices some odd graffiti on the walls of the coffee house that he visits often.", "album_id": "72157594541874242", "photo_flickr_id": "393748689", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "49784", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he notices some odd graffiti on the walls of the coffee house that he visits often .", "storylet_id": "248921"}], [{"original_text": "He stops to pet a dog.", "album_id": "72157594541874242", "photo_flickr_id": "393763253", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "49784", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he stops to pet a dog .", "storylet_id": "248922"}], [{"original_text": "He continues on his walk only to notice more graffiti on the fences surrounding the school.", "album_id": "72157594541874242", "photo_flickr_id": "393763256", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "49784", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he continues on his walk only to notice more graffiti on the fences surrounding the school .", "storylet_id": "248923"}], [{"original_text": "He walks back through the forest to emerge on the pathway behind his home.", "album_id": "72157594541874242", "photo_flickr_id": "393763258", "setting": "last-3-pick-old-and-tell", "worker_id": "M4A8TYKGBYVGOI0", "story_id": "49784", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he walks back through the forest to emerge on the pathway behind his home .", "storylet_id": "248924"}], [{"original_text": "Sargent Corpral was recieving an important medal today. ", "album_id": "72157623624264675", "photo_flickr_id": "4482338138", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49785", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sargent corpral was recieving an important medal today .", "storylet_id": "248925"}], [{"original_text": "After he got his medal, some of the officers wrote it down in the big book.", "album_id": "72157623624264675", "photo_flickr_id": "4481693935", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49785", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after he got his medal , some of the officers wrote it down in the big book .", "storylet_id": "248926"}], [{"original_text": "Then he had to be interviewed for the Military TV show.", "album_id": "72157623624264675", "photo_flickr_id": "4482346446", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49785", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then he had to be interviewed for the military tv show .", "storylet_id": "248927"}], [{"original_text": "He talked about how he had won the medal and what it meant to the people.", "album_id": "72157623624264675", "photo_flickr_id": "4481698573", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49785", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he talked about how he had won the medal and what it meant to the people .", "storylet_id": "248928"}], [{"original_text": "The news reporters were very impressed by his story. ", "album_id": "72157623624264675", "photo_flickr_id": "4482350160", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49785", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the news reporters were very impressed by his story .", "storylet_id": "248929"}], [{"original_text": "One soldier adjusts another's formal fatigues. Appearance is important, especially when going before the committee. ", "album_id": "72157623624264675", "photo_flickr_id": "4482338138", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49786", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one soldier adjusts another 's formal fatigues . appearance is important , especially when going before the committee .", "storylet_id": "248930"}], [{"original_text": "The members of the committee also needed to prepare, and are feeling relaxed and attentive. ", "album_id": "72157623624264675", "photo_flickr_id": "4481690955", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49786", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the members of the committee also needed to prepare , and are feeling relaxed and attentive .", "storylet_id": "248931"}], [{"original_text": "Deckard salutes the esteemed members, showing his respect for them, even though they're all desk jockeys, while he saw real action in the Arabian theatre. ", "album_id": "72157623624264675", "photo_flickr_id": "4482344194", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49786", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "deckard salutes the esteemed members , showing his respect for them , even though they 're all desk jockeys , while he saw real action in the arabian theatre .", "storylet_id": "248932"}], [{"original_text": "Deckard testified to the committee for hours, exhaustively explaining why putting decapitated POW heads on stakes was necessary for morale. ", "album_id": "72157623624264675", "photo_flickr_id": "4482349014", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49786", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "deckard testified to the committee for hours , exhaustively explaining why putting decapitated pow heads on stakes was necessary for morale .", "storylet_id": "248933"}], [{"original_text": "After careful deliberation, the committee agreed unanimously to recommend to the Commander that new SOPs should specify decapitation for all. ", "album_id": "72157623624264675", "photo_flickr_id": "4482350160", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49786", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after careful deliberation , the committee agreed unanimously to recommend to the commander that new sops should specify decapitation for all .", "storylet_id": "248934"}], [{"original_text": "I helped pin a medal on my best friend's lapel before the interview.", "album_id": "72157623624264675", "photo_flickr_id": "4482338138", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49787", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i helped pin a medal on my best friend 's lapel before the interview .", "storylet_id": "248935"}], [{"original_text": "Our commanding officer then went over some questions with him and other candidates.", "album_id": "72157623624264675", "photo_flickr_id": "4481693935", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49787", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our commanding officer then went over some questions with him and other candidates .", "storylet_id": "248936"}], [{"original_text": "They were then ushered into a room filled with commanding officers.", "album_id": "72157623624264675", "photo_flickr_id": "4482346446", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49787", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were then ushered into a room filled with commanding officers .", "storylet_id": "248937"}], [{"original_text": "They had to then explain why they deserved the promotion.", "album_id": "72157623624264675", "photo_flickr_id": "4481698573", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49787", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had to then explain why they deserved the promotion .", "storylet_id": "248938"}], [{"original_text": "The officers then went into a side chamber to decide who would get it.", "album_id": "72157623624264675", "photo_flickr_id": "4482350160", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49787", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the officers then went into a side chamber to decide who would get it .", "storylet_id": "248939"}], [{"original_text": "We got dressed in uniform for the debriefing.", "album_id": "72157623624264675", "photo_flickr_id": "4482338138", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49788", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got dressed in uniform for the debriefing .", "storylet_id": "248940"}], [{"original_text": "The officers asked there questions of me and i answered.", "album_id": "72157623624264675", "photo_flickr_id": "4481690955", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49788", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the officers asked there questions of me and i answered .", "storylet_id": "248941"}], [{"original_text": "I said my piece and took a seat.", "album_id": "72157623624264675", "photo_flickr_id": "4482344194", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49788", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i said my piece and took a seat .", "storylet_id": "248942"}], [{"original_text": "They did what they always do and told me how it is.", "album_id": "72157623624264675", "photo_flickr_id": "4482349014", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49788", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they did what they always do and told me how it is .", "storylet_id": "248943"}], [{"original_text": "I said what needed to be said and left the room.", "album_id": "72157623624264675", "photo_flickr_id": "4482350160", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49788", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i said what needed to be said and left the room .", "storylet_id": "248944"}], [{"original_text": "There is no prouder ceremony than a military pinning ceremony.", "album_id": "72157623624264675", "photo_flickr_id": "4482338138", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49789", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is no prouder ceremony than a military pinning ceremony .", "storylet_id": "248945"}], [{"original_text": "Once my son was pinned, he got to sit in on high level briefings.", "album_id": "72157623624264675", "photo_flickr_id": "4481690955", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49789", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once my son was pinned , he got to sit in on high level briefings .", "storylet_id": "248946"}], [{"original_text": "He held a far higher post than he used to.", "album_id": "72157623624264675", "photo_flickr_id": "4482344194", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49789", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he held a far higher post than he used to .", "storylet_id": "248947"}], [{"original_text": "It came with a lot of grilling from his superiors.", "album_id": "72157623624264675", "photo_flickr_id": "4482349014", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49789", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it came with a lot of grilling from his superiors .", "storylet_id": "248948"}], [{"original_text": "However, they decided they liked him, and he rose in the ranks.", "album_id": "72157623624264675", "photo_flickr_id": "4482350160", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49789", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , they decided they liked him , and he rose in the ranks .", "storylet_id": "248949"}], [{"original_text": "I finally enlisted in the army. ", "album_id": "72157623334906462", "photo_flickr_id": "4324750673", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "49790", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finally enlisted in the army .", "storylet_id": "248950"}], [{"original_text": "We are learning all types of things.", "album_id": "72157623334906462", "photo_flickr_id": "4324749227", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "49790", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are learning all types of things .", "storylet_id": "248951"}], [{"original_text": "I can now even work on machines. ", "album_id": "72157623334906462", "photo_flickr_id": "4324761953", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "49790", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i can now even work on machines .", "storylet_id": "248952"}], [{"original_text": "And I have met a lot of good people. ", "album_id": "72157623334906462", "photo_flickr_id": "4325484802", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "49790", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and i have met a lot of good people .", "storylet_id": "248953"}], [{"original_text": "My favorite part is the march at the end of the day. ", "album_id": "72157623334906462", "photo_flickr_id": "4324775373", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "49790", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite part is the march at the end of the day .", "storylet_id": "248954"}], [{"original_text": "These men are hard workers and are trying their best to get ahead in life.", "album_id": "72157623334906462", "photo_flickr_id": "4324750673", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49791", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these men are hard workers and are trying their best to get ahead in life .", "storylet_id": "248955"}], [{"original_text": "They work on a car engine trying to get it to work correctly.", "album_id": "72157623334906462", "photo_flickr_id": "4324761953", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49791", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they work on a car engine trying to get it to work correctly .", "storylet_id": "248956"}], [{"original_text": "The men dig and pick at the ground trying to get it flat.", "album_id": "72157623334906462", "photo_flickr_id": "4324757715", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49791", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the men dig and pick at the ground trying to get it flat .", "storylet_id": "248957"}], [{"original_text": "They also clean their guns and make sure they have ammunition.", "album_id": "72157623334906462", "photo_flickr_id": "4325504666", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49791", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also clean their guns and make sure they have ammunition .", "storylet_id": "248958"}], [{"original_text": "They are ready for whatever the day brings.", "album_id": "72157623334906462", "photo_flickr_id": "4325507496", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49791", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are ready for whatever the day brings .", "storylet_id": "248959"}], [{"original_text": "The Major signed the shipping receipt.", "album_id": "72157623334906462", "photo_flickr_id": "4324750673", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "49792", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the [male] signed the shipping receipt .", "storylet_id": "248960"}], [{"original_text": "They started to assemble the generator.", "album_id": "72157623334906462", "photo_flickr_id": "4324749227", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "49792", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they started to assemble the generator .", "storylet_id": "248961"}], [{"original_text": "Final inspection of the generator.", "album_id": "72157623334906462", "photo_flickr_id": "4324761953", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "49792", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "final inspection of the generator .", "storylet_id": "248962"}], [{"original_text": "The Major and his soldiers.", "album_id": "72157623334906462", "photo_flickr_id": "4325484802", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "49792", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the [male] and his soldiers .", "storylet_id": "248963"}], [{"original_text": "They marched thru the town in a show of peaceful force.", "album_id": "72157623334906462", "photo_flickr_id": "4324775373", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "49792", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they marched thru the town in a show of peaceful force .", "storylet_id": "248964"}], [{"original_text": "We listened attentively to the presenter.", "album_id": "72157623334906462", "photo_flickr_id": "4324750673", "setting": "last-3-pick-old-and-tell", "worker_id": "42GWAQ5DISYW1GY", "story_id": "49793", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we listened attentively to the presenter .", "storylet_id": "248965"}], [{"original_text": "We then worked on fixing the device.", "album_id": "72157623334906462", "photo_flickr_id": "4324749227", "setting": "last-3-pick-old-and-tell", "worker_id": "42GWAQ5DISYW1GY", "story_id": "49793", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we then worked on fixing the device .", "storylet_id": "248966"}], [{"original_text": "It was easier working as a group to fix it.", "album_id": "72157623334906462", "photo_flickr_id": "4324761953", "setting": "last-3-pick-old-and-tell", "worker_id": "42GWAQ5DISYW1GY", "story_id": "49793", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was easier working as a group to fix it .", "storylet_id": "248967"}], [{"original_text": "We made sure to patrols as well.", "album_id": "72157623334906462", "photo_flickr_id": "4325484802", "setting": "last-3-pick-old-and-tell", "worker_id": "42GWAQ5DISYW1GY", "story_id": "49793", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we made sure to patrols as well .", "storylet_id": "248968"}], [{"original_text": "We then trained as a group.", "album_id": "72157623334906462", "photo_flickr_id": "4324775373", "setting": "last-3-pick-old-and-tell", "worker_id": "42GWAQ5DISYW1GY", "story_id": "49793", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we then trained as a group .", "storylet_id": "248969"}], [{"original_text": "Field operations can be very stressful.", "album_id": "72157623334906462", "photo_flickr_id": "4324750673", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49794", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "field operations can be very stressful .", "storylet_id": "248970"}], [{"original_text": "It's a lot different than office work.", "album_id": "72157623334906462", "photo_flickr_id": "4324749227", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49794", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's a lot different than office work .", "storylet_id": "248971"}], [{"original_text": "We are constantly dealing with equipment that breaks down a lot.", "album_id": "72157623334906462", "photo_flickr_id": "4324761953", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49794", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are constantly dealing with equipment that breaks down a lot .", "storylet_id": "248972"}], [{"original_text": "We are out talking to the villagers and trying to help them.", "album_id": "72157623334906462", "photo_flickr_id": "4325484802", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49794", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we are out talking to the villagers and trying to help them .", "storylet_id": "248973"}], [{"original_text": "And yet there is still marching, lots and lots of marching!", "album_id": "72157623334906462", "photo_flickr_id": "4324775373", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49794", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and yet there is still marching , lots and lots of marching !", "storylet_id": "248974"}], [{"original_text": "I went to the local baseball game, halfway in we still hadn't seen any action.", "album_id": "72157623214581689", "photo_flickr_id": "4327089128", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "49795", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the local baseball game , halfway in we still had n't seen any action .", "storylet_id": "248975"}], [{"original_text": "People were growing restless, and a few even left.", "album_id": "72157623214581689", "photo_flickr_id": "4327074788", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "49795", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people were growing restless , and a few even left .", "storylet_id": "248976"}], [{"original_text": "All of a sudden a pitch like nobody had ever seen was thrown.", "album_id": "72157623214581689", "photo_flickr_id": "4326304297", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "49795", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of a sudden a pitch like nobody had ever seen was thrown .", "storylet_id": "248977"}], [{"original_text": "The batter managed to hit it out of the park.", "album_id": "72157623214581689", "photo_flickr_id": "4326323921", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "49795", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the batter managed to hit it out of the park .", "storylet_id": "248978"}], [{"original_text": "After that the game had everyone's attention. ", "album_id": "72157623214581689", "photo_flickr_id": "4326358305", "setting": "first-2-pick-and-tell", "worker_id": "V93CLJ5U818YWDA", "story_id": "49795", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that the game had everyone 's attention .", "storylet_id": "248979"}], [{"original_text": "It's time for our drum circle. ", "album_id": "72157623214581689", "photo_flickr_id": "4327095984", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49796", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's time for our drum circle .", "storylet_id": "248980"}], [{"original_text": "We like to think our drumming grounds us to mother earth.", "album_id": "72157623214581689", "photo_flickr_id": "4326360115", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49796", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we like to think our drumming grounds us to mother earth .", "storylet_id": "248981"}], [{"original_text": "Some ladies use a little flair when they play.", "album_id": "72157623214581689", "photo_flickr_id": "4326320653", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49796", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some ladies use a little flair when they play .", "storylet_id": "248982"}], [{"original_text": "Others take the more straight forward approach.", "album_id": "72157623214581689", "photo_flickr_id": "4326323921", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49796", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others take the more straight forward approach .", "storylet_id": "248983"}], [{"original_text": "Our ladies drum circle dances to the beat of our own drum.", "album_id": "72157623214581689", "photo_flickr_id": "4326336267", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49796", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our ladies drum circle dances to the beat of our own drum .", "storylet_id": "248984"}], [{"original_text": "Frank found the baseball game so boring that he decided to read a book instead.", "album_id": "72157623214581689", "photo_flickr_id": "4327089128", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49797", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] found the baseball game so boring that he decided to read a book instead .", "storylet_id": "248985"}], [{"original_text": "Others in the crowd also seem to grow bored during the game.", "album_id": "72157623214581689", "photo_flickr_id": "4327074788", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49797", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "others in the crowd also seem to grow bored during the game .", "storylet_id": "248986"}], [{"original_text": "The pitcher prepares to get an easy out with this next pitch. Another perfect game for him.", "album_id": "72157623214581689", "photo_flickr_id": "4326304297", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49797", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the pitcher prepares to get an easy out with this next pitch . another perfect game for him .", "storylet_id": "248987"}], [{"original_text": "Suddenly, a huge hit sends the ball soaring. A home run!", "album_id": "72157623214581689", "photo_flickr_id": "4326323921", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49797", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "suddenly , a huge hit sends the ball soaring . a home run !", "storylet_id": "248988"}], [{"original_text": "The play revitalized the game and Frank put down his book to see the rest of the game.", "album_id": "72157623214581689", "photo_flickr_id": "4326358305", "setting": "last-3-pick-old-and-tell", "worker_id": "VOA9ZPNCPKOCRY4", "story_id": "49797", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the play revitalized the game and [male] put down his book to see the rest of the game .", "storylet_id": "248989"}], [{"original_text": "The town was hosting a local baseball game.", "album_id": "72157623214581689", "photo_flickr_id": "4327095984", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49798", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the town was hosting a local baseball game .", "storylet_id": "248990"}], [{"original_text": "Every one came to cheer their local team on.", "album_id": "72157623214581689", "photo_flickr_id": "4326360115", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49798", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "every one came to cheer their local team on .", "storylet_id": "248991"}], [{"original_text": "Most of the people got really into it, rooting for the team.", "album_id": "72157623214581689", "photo_flickr_id": "4326320653", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49798", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most of the people got really into it , rooting for the team .", "storylet_id": "248992"}], [{"original_text": "When the local team hit a home run, the whole audience cheered.", "album_id": "72157623214581689", "photo_flickr_id": "4326323921", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49798", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the local team hit a home run , the whole audience cheered .", "storylet_id": "248993"}], [{"original_text": "At the end of the day, even though the team didn't win, every one had a good time watching.", "album_id": "72157623214581689", "photo_flickr_id": "4326336267", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49798", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , even though the team did n't win , every one had a good time watching .", "storylet_id": "248994"}], [{"original_text": "The crowd arrived to watch the baseball game.", "album_id": "72157623214581689", "photo_flickr_id": "4327095984", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49799", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowd arrived to watch the baseball game .", "storylet_id": "248995"}], [{"original_text": "Everyone was excited to watch the game.", "album_id": "72157623214581689", "photo_flickr_id": "4326360115", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49799", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was excited to watch the game .", "storylet_id": "248996"}], [{"original_text": "Some of the people had to sit in the back of the crowd.", "album_id": "72157623214581689", "photo_flickr_id": "4326320653", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49799", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the people had to sit in the back of the crowd .", "storylet_id": "248997"}], [{"original_text": "The person at bat was able to hit the baseball.", "album_id": "72157623214581689", "photo_flickr_id": "4326323921", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49799", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the person at bat was able to hit the baseball .", "storylet_id": "248998"}], [{"original_text": "The out fielder caught the pop fly.", "album_id": "72157623214581689", "photo_flickr_id": "4326336267", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49799", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the out fielder caught the pop fly .", "storylet_id": "248999"}], [{"original_text": "The fight was on.", "album_id": "72157623421003187", "photo_flickr_id": "4403493948", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49800", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fight was on .", "storylet_id": "249000"}], [{"original_text": "This is war.", "album_id": "72157623421003187", "photo_flickr_id": "4403477984", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49800", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is war .", "storylet_id": "249001"}], [{"original_text": "We have landed.", "album_id": "72157623421003187", "photo_flickr_id": "4403486194", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49800", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we have landed .", "storylet_id": "249002"}], [{"original_text": "Time to dominate.", "album_id": "72157623421003187", "photo_flickr_id": "4402717545", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49800", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "time to dominate .", "storylet_id": "249003"}], [{"original_text": "We will not lose.", "album_id": "72157623421003187", "photo_flickr_id": "4403491740", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49800", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we will not lose .", "storylet_id": "249004"}], [{"original_text": "The army received special orders to save their country.", "album_id": "72157623421003187", "photo_flickr_id": "4403489834", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49801", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the army received special orders to save their country .", "storylet_id": "249005"}], [{"original_text": "They used a helicopter,", "album_id": "72157623421003187", "photo_flickr_id": "4403493948", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49801", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they used a helicopter ,", "storylet_id": "249006"}], [{"original_text": "to get their location.", "album_id": "72157623421003187", "photo_flickr_id": "4403486194", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49801", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "to get their location .", "storylet_id": "249007"}], [{"original_text": "They blew up their enemies with a large gun.", "album_id": "72157623421003187", "photo_flickr_id": "4403477984", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49801", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they blew up their enemies with a large gun .", "storylet_id": "249008"}], [{"original_text": "Then came home victorious, saluting each other as they returned.", "album_id": "72157623421003187", "photo_flickr_id": "4402721443", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49801", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then came home victorious , saluting each other as they returned .", "storylet_id": "249009"}], [{"original_text": "The helicoptor had a group of soldiers in it.", "album_id": "72157623421003187", "photo_flickr_id": "4403493948", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49802", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the helicoptor had a group of soldiers in it .", "storylet_id": "249010"}], [{"original_text": "This soldier is using the machine gun.", "album_id": "72157623421003187", "photo_flickr_id": "4403477984", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49802", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this soldier is using the machine gun .", "storylet_id": "249011"}], [{"original_text": "Once the helicoptor landed everyone had to get out.", "album_id": "72157623421003187", "photo_flickr_id": "4403486194", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49802", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once the helicoptor landed everyone had to get out .", "storylet_id": "249012"}], [{"original_text": "These soldiers are getting orders from their commander.", "album_id": "72157623421003187", "photo_flickr_id": "4402717545", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49802", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these soldiers are getting orders from their commander .", "storylet_id": "249013"}], [{"original_text": "Once everyone got their orders it was time to head out.", "album_id": "72157623421003187", "photo_flickr_id": "4403491740", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "49802", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once everyone got their orders it was time to head out .", "storylet_id": "249014"}], [{"original_text": "A nations military is a powerful asset.", "album_id": "72157623421003187", "photo_flickr_id": "4403493948", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49803", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a nations military is a powerful asset .", "storylet_id": "249015"}], [{"original_text": "The military is a force of protection", "album_id": "72157623421003187", "photo_flickr_id": "4403477984", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49803", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the military is a force of protection", "storylet_id": "249016"}], [{"original_text": "and also can provide aid to those that need it.", "album_id": "72157623421003187", "photo_flickr_id": "4403486194", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49803", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and also can provide aid to those that need it .", "storylet_id": "249017"}], [{"original_text": "They are an extension of their nations government", "album_id": "72157623421003187", "photo_flickr_id": "4402717545", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49803", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they are an extension of their nations government", "storylet_id": "249018"}], [{"original_text": "and work as a team to be the best that they can be.", "album_id": "72157623421003187", "photo_flickr_id": "4403491740", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49803", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and work as a team to be the best that they can be .", "storylet_id": "249019"}], [{"original_text": "The helicopter flew in, bringing the new soldiers with them.", "album_id": "72157623421003187", "photo_flickr_id": "4403493948", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49804", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the helicopter flew in , bringing the new soldiers with them .", "storylet_id": "249020"}], [{"original_text": "A man armed the turret, even though they'd never seen use.", "album_id": "72157623421003187", "photo_flickr_id": "4403477984", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49804", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a man armed the turret , even though they 'd never seen use .", "storylet_id": "249021"}], [{"original_text": "The new group stepped off the helicopter, finding their way to their new homes.", "album_id": "72157623421003187", "photo_flickr_id": "4403486194", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49804", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the new group stepped off the helicopter , finding their way to their new homes .", "storylet_id": "249022"}], [{"original_text": "The Sargent gave a debriefing as soon as the soldiers arrived.", "album_id": "72157623421003187", "photo_flickr_id": "4402717545", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49804", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sargent gave a debriefing as soon as the soldiers arrived .", "storylet_id": "249023"}], [{"original_text": "This would be their new home now, the start of their new lives.", "album_id": "72157623421003187", "photo_flickr_id": "4403491740", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49804", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this would be their new home now , the start of their new lives .", "storylet_id": "249024"}], [{"original_text": "These two woman finally got a chance to meet.", "album_id": "72157623542092710", "photo_flickr_id": "4401362969", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "49805", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these two woman finally got a chance to meet .", "storylet_id": "249025"}], [{"original_text": "They collaborated about possible future business relationships. ", "album_id": "72157623542092710", "photo_flickr_id": "4402129128", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "49805", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they collaborated about possible future business relationships .", "storylet_id": "249026"}], [{"original_text": "Then they gave their speech. ", "album_id": "72157623542092710", "photo_flickr_id": "4402128428", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "49805", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they gave their speech .", "storylet_id": "249027"}], [{"original_text": "And met some good people. ", "album_id": "72157623542092710", "photo_flickr_id": "4402262036", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "49805", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and met some good people .", "storylet_id": "249028"}], [{"original_text": "Before they left they got a group picture. ", "album_id": "72157623542092710", "photo_flickr_id": "4406543207", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "49805", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before they left they got a group picture .", "storylet_id": "249029"}], [{"original_text": "It was an exciting moment to meet Hilary Clinton.", "album_id": "72157623542092710", "photo_flickr_id": "4401363735", "setting": "first-2-pick-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "49806", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was an exciting moment to meet [female] [male] .", "storylet_id": "249030"}], [{"original_text": "With her secret service we walked from the plane to a waiting limo.", "album_id": "72157623542092710", "photo_flickr_id": "4401362969", "setting": "first-2-pick-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "49806", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "with her secret service we walked from the plane to a waiting limo .", "storylet_id": "249031"}], [{"original_text": "And together we did even more waiting.", "album_id": "72157623542092710", "photo_flickr_id": "4402128676", "setting": "first-2-pick-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "49806", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and together we did even more waiting .", "storylet_id": "249032"}], [{"original_text": "And, of course had some discussions.", "album_id": "72157623542092710", "photo_flickr_id": "4402128788", "setting": "first-2-pick-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "49806", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , of course had some discussions .", "storylet_id": "249033"}], [{"original_text": "Then she gave her speech. She was really just so wonderful", "album_id": "72157623542092710", "photo_flickr_id": "4402128428", "setting": "first-2-pick-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "49806", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then she gave her speech . she was really just so wonderful", "storylet_id": "249034"}], [{"original_text": "Hillary Clinton arrives for a meeting with supporters.", "album_id": "72157623542092710", "photo_flickr_id": "4401362969", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49807", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] [male] arrives for a meeting with supporters .", "storylet_id": "249035"}], [{"original_text": "Ms. Clinton and some supporters meet privately.", "album_id": "72157623542092710", "photo_flickr_id": "4402129128", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49807", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "ms. [male] and some supporters meet privately .", "storylet_id": "249036"}], [{"original_text": "The lady in blue seems to be in charge.", "album_id": "72157623542092710", "photo_flickr_id": "4402128428", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49807", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lady in blue seems to be in charge .", "storylet_id": "249037"}], [{"original_text": "A local dignitary shakes hans with the candidate.", "album_id": "72157623542092710", "photo_flickr_id": "4402262036", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49807", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a local dignitary shakes hans with the candidate .", "storylet_id": "249038"}], [{"original_text": "Everybody wants to be photographed with Hillary.", "album_id": "72157623542092710", "photo_flickr_id": "4406543207", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49807", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everybody wants to be photographed with [female] .", "storylet_id": "249039"}], [{"original_text": "Mrs. Clinton went on a tour, visiting different politicans and people.", "album_id": "72157623542092710", "photo_flickr_id": "4401362969", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49808", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mrs. [male] went on a tour , visiting different politicans and people .", "storylet_id": "249040"}], [{"original_text": "She talked with her staff, and discussed her plan to run for the presidency.", "album_id": "72157623542092710", "photo_flickr_id": "4402129128", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49808", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she talked with her staff , and discussed her plan to run for the presidency .", "storylet_id": "249041"}], [{"original_text": "She even gave a speech, to inspire her supporters.", "album_id": "72157623542092710", "photo_flickr_id": "4402128428", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49808", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she even gave a speech , to inspire her supporters .", "storylet_id": "249042"}], [{"original_text": "She met some more politicians, and people loved seeing her.", "album_id": "72157623542092710", "photo_flickr_id": "4402262036", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49808", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she met some more politicians , and people loved seeing her .", "storylet_id": "249043"}], [{"original_text": "At the end of the day, she met with her supporters, and they got to talk to the person they wanted to be president.", "album_id": "72157623542092710", "photo_flickr_id": "4406543207", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49808", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , she met with her supporters , and they got to talk to the person they wanted to be president .", "storylet_id": "249044"}], [{"original_text": "Hilary came to visit.", "album_id": "72157623542092710", "photo_flickr_id": "4401362969", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "49809", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] came to visit .", "storylet_id": "249045"}], [{"original_text": "Here we are waiting in the lounge.", "album_id": "72157623542092710", "photo_flickr_id": "4402129128", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "49809", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we are waiting in the lounge .", "storylet_id": "249046"}], [{"original_text": "The event is about to start.", "album_id": "72157623542092710", "photo_flickr_id": "4402128428", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "49809", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the event is about to start .", "storylet_id": "249047"}], [{"original_text": "She is shaking hands with a local politician.", "album_id": "72157623542092710", "photo_flickr_id": "4402262036", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "49809", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she is shaking hands with a local politician .", "storylet_id": "249048"}], [{"original_text": "The event was a huge success.", "album_id": "72157623542092710", "photo_flickr_id": "4406543207", "setting": "last-3-pick-old-and-tell", "worker_id": "1K156RHQ2G9CPQA", "story_id": "49809", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the event was a huge success .", "storylet_id": "249049"}], [{"original_text": "Was headed to my friends house and noticed the sky looks alittle cloudy.Hope it doesn't rain.", "album_id": "72157623540522608", "photo_flickr_id": "4400922285", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "49810", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "was headed to my friends house and noticed the sky looks alittle cloudy.hope it does n't rain .", "storylet_id": "249050"}], [{"original_text": "While we waited on some food to start cooking we had a couple drinks.", "album_id": "72157623540522608", "photo_flickr_id": "4400923895", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "49810", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while we waited on some food to start cooking we had a couple drinks .", "storylet_id": "249051"}], [{"original_text": "After the drinks it was about time to start preparing the other dishes.So we chopped and cut some vegetables.", "album_id": "72157623540522608", "photo_flickr_id": "4400925803", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "49810", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the drinks it was about time to start preparing the other dishes.so we chopped and cut some vegetables .", "storylet_id": "249052"}], [{"original_text": "Unfortunately we burnt dinner and ran off to the bathroom to put out a small fire.The kitchen sink was full of dishes.", "album_id": "72157623540522608", "photo_flickr_id": "4400930287", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "49810", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "unfortunately we burnt dinner and ran off to the bathroom to put out a small fire.the kitchen sink was full of dishes .", "storylet_id": "249053"}], [{"original_text": "After ordering take out food, we decide to watch sports on tv because it started raining like I thought it would earlier.Overall it was a great time with friends.", "album_id": "72157623540522608", "photo_flickr_id": "4401696914", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "49810", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after ordering take out food , we decide to watch sports on tv because it started raining like i thought it would earlier.overall it was a great time with friends .", "storylet_id": "249054"}], [{"original_text": "Jill grew up in a poor rural community. ", "album_id": "72157623540522608", "photo_flickr_id": "4401611692", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49811", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] grew up in a poor rural community .", "storylet_id": "249055"}], [{"original_text": "She had big dreams though and plans to match. ", "album_id": "72157623540522608", "photo_flickr_id": "4400850071", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49811", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had big dreams though and plans to match .", "storylet_id": "249056"}], [{"original_text": "Jill dreamed of the day she'd have plenty to eat. ", "album_id": "72157623540522608", "photo_flickr_id": "4401662256", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49811", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] dreamed of the day she 'd have plenty to eat .", "storylet_id": "249057"}], [{"original_text": "One day she planned to live in a fine, big house. ", "album_id": "72157623540522608", "photo_flickr_id": "4400906911", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49811", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one day she planned to live in a fine , big house .", "storylet_id": "249058"}], [{"original_text": "So, she went to work and worked hard until she earned the things of her dreams. ", "album_id": "72157623540522608", "photo_flickr_id": "4400895143", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49811", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so , she went to work and worked hard until she earned the things of her dreams .", "storylet_id": "249059"}], [{"original_text": "I got to go on a mission trip.", "album_id": "72157623540522608", "photo_flickr_id": "4401611692", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49812", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got to go on a mission trip .", "storylet_id": "249060"}], [{"original_text": "We helped mentor youths.", "album_id": "72157623540522608", "photo_flickr_id": "4400850071", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49812", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we helped mentor youths .", "storylet_id": "249061"}], [{"original_text": "The food was new to me, but very good.", "album_id": "72157623540522608", "photo_flickr_id": "4401662256", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49812", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food was new to me , but very good .", "storylet_id": "249062"}], [{"original_text": "This is where we stayed.", "album_id": "72157623540522608", "photo_flickr_id": "4400906911", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49812", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is where we stayed .", "storylet_id": "249063"}], [{"original_text": "We had meetings each day to go over what we wanted to accomplish.", "album_id": "72157623540522608", "photo_flickr_id": "4400895143", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49812", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had meetings each day to go over what we wanted to accomplish .", "storylet_id": "249064"}], [{"original_text": "I went to my friends place to visit him.", "album_id": "72157623540522608", "photo_flickr_id": "4400922285", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49813", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to my friends place to visit him .", "storylet_id": "249065"}], [{"original_text": "He had some drinks for us.", "album_id": "72157623540522608", "photo_flickr_id": "4400923895", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49813", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he had some drinks for us .", "storylet_id": "249066"}], [{"original_text": "We had a great time there.", "album_id": "72157623540522608", "photo_flickr_id": "4400925803", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49813", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a great time there .", "storylet_id": "249067"}], [{"original_text": "We burned some of the food.", "album_id": "72157623540522608", "photo_flickr_id": "4400930287", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49813", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we burned some of the food .", "storylet_id": "249068"}], [{"original_text": "Afterward we played some video games on the T.V.", "album_id": "72157623540522608", "photo_flickr_id": "4401696914", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49813", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we played some video games on the t.v .", "storylet_id": "249069"}], [{"original_text": "Here for the dream project. Where we build homes and help feed and cloth people.", "album_id": "72157623540522608", "photo_flickr_id": "4401611692", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49814", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here for the dream project . where we build homes and help feed and cloth people .", "storylet_id": "249070"}], [{"original_text": "This is our poster.", "album_id": "72157623540522608", "photo_flickr_id": "4400850071", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49814", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is our poster .", "storylet_id": "249071"}], [{"original_text": "Some of our awesome food.", "album_id": "72157623540522608", "photo_flickr_id": "4401662256", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49814", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of our awesome food .", "storylet_id": "249072"}], [{"original_text": "These are some of the buildings where people get haircuts and clothes.", "album_id": "72157623540522608", "photo_flickr_id": "4400906911", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49814", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these are some of the buildings where people get haircuts and clothes .", "storylet_id": "249073"}], [{"original_text": "Here, they teach job placement skills.", "album_id": "72157623540522608", "photo_flickr_id": "4400895143", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49814", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here , they teach job placement skills .", "storylet_id": "249074"}], [{"original_text": "Everyone gathered for a nice night out.", "album_id": "72157623544089176", "photo_flickr_id": "4402171059", "setting": "first-2-pick-and-tell", "worker_id": "TDJ8E88Y079J22V", "story_id": "49815", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone gathered for a nice night out .", "storylet_id": "249075"}], [{"original_text": "Great music was heard throughout the night.", "album_id": "72157623544089176", "photo_flickr_id": "4402936964", "setting": "first-2-pick-and-tell", "worker_id": "TDJ8E88Y079J22V", "story_id": "49815", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "great music was heard throughout the night .", "storylet_id": "249076"}], [{"original_text": "So many yummy treats to try.", "album_id": "72157623544089176", "photo_flickr_id": "4402937916", "setting": "first-2-pick-and-tell", "worker_id": "TDJ8E88Y079J22V", "story_id": "49815", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so many yummy treats to try .", "storylet_id": "249077"}], [{"original_text": "The local team was well supported.", "album_id": "72157623544089176", "photo_flickr_id": "4402178061", "setting": "first-2-pick-and-tell", "worker_id": "TDJ8E88Y079J22V", "story_id": "49815", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the local team was well supported .", "storylet_id": "249078"}], [{"original_text": "Now off for a good lunch the next day.", "album_id": "72157623544089176", "photo_flickr_id": "4402180933", "setting": "first-2-pick-and-tell", "worker_id": "TDJ8E88Y079J22V", "story_id": "49815", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now off for a good lunch the next day .", "storylet_id": "249079"}], [{"original_text": "During our trip to the city, we decided to go to a club.", "album_id": "72157623544089176", "photo_flickr_id": "4402935498", "setting": "first-2-pick-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49816", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during our trip to the city , we decided to go to a club .", "storylet_id": "249080"}], [{"original_text": "The atmosphere was pleasant and the people were so friendly.", "album_id": "72157623544089176", "photo_flickr_id": "4402171059", "setting": "first-2-pick-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49816", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the atmosphere was pleasant and the people were so friendly .", "storylet_id": "249081"}], [{"original_text": "The stage was ready for the musicians to play, all we needed was for them to show up.", "album_id": "72157623544089176", "photo_flickr_id": "4402936338", "setting": "first-2-pick-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49816", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the stage was ready for the musicians to play , all we needed was for them to show up .", "storylet_id": "249082"}], [{"original_text": "Eventually they did, and they put on one of the best shows I have ever seen.", "album_id": "72157623544089176", "photo_flickr_id": "4402936736", "setting": "first-2-pick-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49816", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "eventually they did , and they put on one of the best shows i have ever seen .", "storylet_id": "249083"}], [{"original_text": "To wrap up the wonderful night, we decided to treat ourselves to dessert.", "album_id": "72157623544089176", "photo_flickr_id": "4402937916", "setting": "first-2-pick-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49816", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to wrap up the wonderful night , we decided to treat ourselves to dessert .", "storylet_id": "249084"}], [{"original_text": "The bar life is unique.", "album_id": "72157623544089176", "photo_flickr_id": "4402171059", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49817", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bar life is unique .", "storylet_id": "249085"}], [{"original_text": "There's almost always good music.", "album_id": "72157623544089176", "photo_flickr_id": "4402936964", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49817", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there 's almost always good music .", "storylet_id": "249086"}], [{"original_text": "If you are looking for good food, you can count on it being there.", "album_id": "72157623544089176", "photo_flickr_id": "4402937916", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49817", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "if you are looking for good food , you can count on it being there .", "storylet_id": "249087"}], [{"original_text": "Sometimes live musicians play and you get the opportunity to meet them.", "album_id": "72157623544089176", "photo_flickr_id": "4402178061", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49817", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes live musicians play and you get the opportunity to meet them .", "storylet_id": "249088"}], [{"original_text": "There are plenty of bars around the world and they are all unique in their own way.", "album_id": "72157623544089176", "photo_flickr_id": "4402180933", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49817", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are plenty of bars around the world and they are all unique in their own way .", "storylet_id": "249089"}], [{"original_text": "The bar was not very full, but the band was hopeful that more customers would come in.", "album_id": "72157623544089176", "photo_flickr_id": "4402935498", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "49818", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bar was not very full , but the band was hopeful that more customers would come in .", "storylet_id": "249090"}], [{"original_text": "The people outside were not sure whether they wanted to go listen to a band or not.", "album_id": "72157623544089176", "photo_flickr_id": "4402171059", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "49818", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the people outside were not sure whether they wanted to go listen to a band or not .", "storylet_id": "249091"}], [{"original_text": "The instruments were all ready to make their music.", "album_id": "72157623544089176", "photo_flickr_id": "4402936338", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "49818", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the instruments were all ready to make their music .", "storylet_id": "249092"}], [{"original_text": "The band decided to begin, even though there weren't many customers around. They loved to play their music.", "album_id": "72157623544089176", "photo_flickr_id": "4402936736", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "49818", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the band decided to begin , even though there were n't many customers around . they loved to play their music .", "storylet_id": "249093"}], [{"original_text": "A sweet dessert sat untouched on a table as the bar patrons found themselves entranced by the music.", "album_id": "72157623544089176", "photo_flickr_id": "4402937916", "setting": "last-3-pick-old-and-tell", "worker_id": "GKAWVGNMJU6HZLH", "story_id": "49818", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a sweet dessert sat untouched on a table as the bar patrons found themselves entranced by the music .", "storylet_id": "249094"}], [{"original_text": "Today my band played live.", "album_id": "72157623544089176", "photo_flickr_id": "4402171059", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "49819", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today my band played live .", "storylet_id": "249095"}], [{"original_text": "We are such a fun group to be around.", "album_id": "72157623544089176", "photo_flickr_id": "4402936964", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "49819", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are such a fun group to be around .", "storylet_id": "249096"}], [{"original_text": "One our fans even made us food.", "album_id": "72157623544089176", "photo_flickr_id": "4402937916", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "49819", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one our fans even made us food .", "storylet_id": "249097"}], [{"original_text": "Another fan made us a t shirt.", "album_id": "72157623544089176", "photo_flickr_id": "4402178061", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "49819", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another fan made us a t shirt .", "storylet_id": "249098"}], [{"original_text": "We will play anywhere and everywhere.", "album_id": "72157623544089176", "photo_flickr_id": "4402180933", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "49819", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we will play anywhere and everywhere .", "storylet_id": "249099"}], [{"original_text": "They arrived at the park and were finally able to see the caverns.", "album_id": "72157623134784128", "photo_flickr_id": "4243158865", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49820", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they arrived at the park and were finally able to see the caverns .", "storylet_id": "249100"}], [{"original_text": "They entered the cave and were immediately amazed.", "album_id": "72157623134784128", "photo_flickr_id": "4243159607", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49820", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they entered the cave and were immediately amazed .", "storylet_id": "249101"}], [{"original_text": "The glimmering caverns were beautiful.", "album_id": "72157623134784128", "photo_flickr_id": "4243159809", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49820", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the glimmering caverns were beautiful .", "storylet_id": "249102"}], [{"original_text": "And, they also appeared to be very dangerous.", "album_id": "72157623134784128", "photo_flickr_id": "4243933732", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49820", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , they also appeared to be very dangerous .", "storylet_id": "249103"}], [{"original_text": "And, it appeared they saw a bat, and Tammy was deathly afraid of bats and she quickly left the cave!", "album_id": "72157623134784128", "photo_flickr_id": "4243934520", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49820", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , it appeared they saw a bat , and [female] was deathly afraid of bats and she quickly left the cave !", "storylet_id": "249104"}], [{"original_text": "We pulled up to the resort which was nestled in the beautiful mountains.", "album_id": "72157623134784128", "photo_flickr_id": "4243158865", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "49821", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we pulled up to the resort which was nestled in the beautiful mountains .", "storylet_id": "249105"}], [{"original_text": "We got settled and then started to explore the local caves.", "album_id": "72157623134784128", "photo_flickr_id": "4243159809", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "49821", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got settled and then started to explore the local caves .", "storylet_id": "249106"}], [{"original_text": "The stalagtites were impressive.", "album_id": "72157623134784128", "photo_flickr_id": "4243933732", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "49821", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the stalagtites were impressive .", "storylet_id": "249107"}], [{"original_text": "We crept deeper and deeper into the cave.", "album_id": "72157623134784128", "photo_flickr_id": "4243935174", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "49821", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we crept deeper and deeper into the cave .", "storylet_id": "249108"}], [{"original_text": "The view from deep in the cave was magical.", "album_id": "72157623134784128", "photo_flickr_id": "4243161945", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "49821", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view from deep in the cave was magical .", "storylet_id": "249109"}], [{"original_text": "A beautiful lodge marked the location of a deep cavern.", "album_id": "72157623134784128", "photo_flickr_id": "4243158865", "setting": "last-3-pick-old-and-tell", "worker_id": "MTAILBBAMF5SZUA", "story_id": "49822", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a beautiful lodge marked the location of a deep cavern .", "storylet_id": "249110"}], [{"original_text": "The cavern was dark and vast.", "album_id": "72157623134784128", "photo_flickr_id": "4243159607", "setting": "last-3-pick-old-and-tell", "worker_id": "MTAILBBAMF5SZUA", "story_id": "49822", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cavern was dark and vast .", "storylet_id": "249111"}], [{"original_text": "There were a variety of chambers with interesting rock formations.", "album_id": "72157623134784128", "photo_flickr_id": "4243159809", "setting": "last-3-pick-old-and-tell", "worker_id": "MTAILBBAMF5SZUA", "story_id": "49822", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a variety of chambers with interesting rock formations .", "storylet_id": "249112"}], [{"original_text": "One room was full of stalactites.", "album_id": "72157623134784128", "photo_flickr_id": "4243933732", "setting": "last-3-pick-old-and-tell", "worker_id": "MTAILBBAMF5SZUA", "story_id": "49822", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one room was full of stalactites .", "storylet_id": "249113"}], [{"original_text": "Another had an interesting bumpy pattern.", "album_id": "72157623134784128", "photo_flickr_id": "4243934520", "setting": "last-3-pick-old-and-tell", "worker_id": "MTAILBBAMF5SZUA", "story_id": "49822", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "another had an interesting bumpy pattern .", "storylet_id": "249114"}], [{"original_text": "We went to a really old house today. ", "album_id": "72157623134784128", "photo_flickr_id": "4243158865", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "49823", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a really old house today .", "storylet_id": "249115"}], [{"original_text": "We found a creepy door to a basement and went inside.", "album_id": "72157623134784128", "photo_flickr_id": "4243159607", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "49823", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we found a creepy door to a basement and went inside .", "storylet_id": "249116"}], [{"original_text": "There were huge caverns underneath the house. ", "album_id": "72157623134784128", "photo_flickr_id": "4243159809", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "49823", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were huge caverns underneath the house .", "storylet_id": "249117"}], [{"original_text": "Some of the scenery was beautiful. But chilling.", "album_id": "72157623134784128", "photo_flickr_id": "4243933732", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "49823", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the scenery was beautiful . but chilling .", "storylet_id": "249118"}], [{"original_text": "We decided we needed to leave after we started hearing moaning sounds from inside.", "album_id": "72157623134784128", "photo_flickr_id": "4243934520", "setting": "last-3-pick-old-and-tell", "worker_id": "NVUTNN9XH1SGVWD", "story_id": "49823", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided we needed to leave after we started hearing moaning sounds from inside .", "storylet_id": "249119"}], [{"original_text": "Growing up in a isolated town near the mountains, caving was a natural interest. ", "album_id": "72157623134784128", "photo_flickr_id": "4243158865", "setting": "last-3-pick-old-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49824", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "growing up in a isolated town near the mountains , caving was a natural interest .", "storylet_id": "249120"}], [{"original_text": "Caves are a beautiful mysterious place to a kid. ", "album_id": "72157623134784128", "photo_flickr_id": "4243159607", "setting": "last-3-pick-old-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49824", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "caves are a beautiful mysterious place to a kid .", "storylet_id": "249121"}], [{"original_text": "I thought all the crevices and platforms had a story of their own if a person could only hear. ", "album_id": "72157623134784128", "photo_flickr_id": "4243159809", "setting": "last-3-pick-old-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49824", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i thought all the crevices and platforms had a story of their own if a person could only hear .", "storylet_id": "249122"}], [{"original_text": "Sometimes I thought I might see and elf or troll jump out from behind the stalagmites but I never did. ", "album_id": "72157623134784128", "photo_flickr_id": "4243933732", "setting": "last-3-pick-old-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49824", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes i thought i might see and elf or troll jump out from behind the stalagmites but i never did .", "storylet_id": "249123"}], [{"original_text": "Even though the rock formations are still fascinating, today I realize what a dangerous play space I enjoyed. ", "album_id": "72157623134784128", "photo_flickr_id": "4243934520", "setting": "last-3-pick-old-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49824", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even though the rock formations are still fascinating , today i realize what a dangerous play space i enjoyed .", "storylet_id": "249124"}], [{"original_text": "These are the back of the packages I have.", "album_id": "72157623431354665", "photo_flickr_id": "4406771859", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "49825", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these are the back of the packages i have .", "storylet_id": "249125"}], [{"original_text": "Some tell a story and others don't.", "album_id": "72157623431354665", "photo_flickr_id": "4406772971", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "49825", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some tell a story and others do n't .", "storylet_id": "249126"}], [{"original_text": "These are some wallpapers I like for my computer.", "album_id": "72157623431354665", "photo_flickr_id": "4407542046", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "49825", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these are some wallpapers i like for my computer .", "storylet_id": "249127"}], [{"original_text": "This scene is really cool.", "album_id": "72157623431354665", "photo_flickr_id": "4406776447", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "49825", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this scene is really cool .", "storylet_id": "249128"}], [{"original_text": "The colors in this one really stand out on my computer.", "album_id": "72157623431354665", "photo_flickr_id": "4407543194", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "49825", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the colors in this one really stand out on my computer .", "storylet_id": "249129"}], [{"original_text": "me showing you guys how to play a game", "album_id": "72157623431354665", "photo_flickr_id": "4407539876", "setting": "first-2-pick-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "49826", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me showing you guys how to play a game", "storylet_id": "249130"}], [{"original_text": "here i am showing you how to dress my characters.", "album_id": "72157623431354665", "photo_flickr_id": "4407540908", "setting": "first-2-pick-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "49826", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here i am showing you how to dress my characters .", "storylet_id": "249131"}], [{"original_text": "now i am showing you my super powers.", "album_id": "72157623431354665", "photo_flickr_id": "4406775301", "setting": "first-2-pick-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "49826", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now i am showing you my super powers .", "storylet_id": "249132"}], [{"original_text": "now i am in battle with the enemy.", "album_id": "72157623431354665", "photo_flickr_id": "4407542046", "setting": "first-2-pick-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "49826", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now i am in battle with the enemy .", "storylet_id": "249133"}], [{"original_text": "my world that shows my house.", "album_id": "72157623431354665", "photo_flickr_id": "4406776447", "setting": "first-2-pick-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "49826", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my world that shows my house .", "storylet_id": "249134"}], [{"original_text": "There were alot of toys to choose from.", "album_id": "72157623431354665", "photo_flickr_id": "4407539876", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "49827", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were alot of toys to choose from .", "storylet_id": "249135"}], [{"original_text": "Some were games and some were action figures.", "album_id": "72157623431354665", "photo_flickr_id": "4407540908", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "49827", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some were games and some were action figures .", "storylet_id": "249136"}], [{"original_text": "My granson really liked this one.", "album_id": "72157623431354665", "photo_flickr_id": "4406775301", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "49827", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my granson really liked this one .", "storylet_id": "249137"}], [{"original_text": "We bought this one.", "album_id": "72157623431354665", "photo_flickr_id": "4407542046", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "49827", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we bought this one .", "storylet_id": "249138"}], [{"original_text": "We also bought this one.", "album_id": "72157623431354665", "photo_flickr_id": "4406776447", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "49827", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also bought this one .", "storylet_id": "249139"}], [{"original_text": "Got my latest copy of Galaxy Force. I know how to read Asian", "album_id": "72157623431354665", "photo_flickr_id": "4406771859", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49828", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "got my latest copy of organization organization . i know how to read asian", "storylet_id": "249140"}], [{"original_text": "This magazine is filled with lots of colorful Anime. I love getting these.", "album_id": "72157623431354665", "photo_flickr_id": "4406772971", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49828", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this magazine is filled with lots of colorful anime . i love getting these .", "storylet_id": "249141"}], [{"original_text": "This issue shows alot of tranformers. We're going to see this movie soon.", "album_id": "72157623431354665", "photo_flickr_id": "4407542046", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49828", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this issue shows alot of tranformers . we 're going to see this movie soon .", "storylet_id": "249142"}], [{"original_text": "all are headed toward the sunset.", "album_id": "72157623431354665", "photo_flickr_id": "4406776447", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49828", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all are headed toward the sunset .", "storylet_id": "249143"}], [{"original_text": "Where they'll battle.", "album_id": "72157623431354665", "photo_flickr_id": "4407543194", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49828", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "where they 'll battle .", "storylet_id": "249144"}], [{"original_text": "I found this magazine on Gundam type collectibles at a thrift store. ", "album_id": "72157623431354665", "photo_flickr_id": "4407539876", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "49829", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i found this magazine on gundam type collectibles at a thrift store .", "storylet_id": "249145"}], [{"original_text": "Here is some of the terrific detail of some of the robots that it'd be really cool to find. ", "album_id": "72157623431354665", "photo_flickr_id": "4407540908", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "49829", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is some of the terrific detail of some of the robots that it 'd be really cool to find .", "storylet_id": "249146"}], [{"original_text": "I like how the magazine went with different colors for different pages instead of just showing the same thing over and over again. ", "album_id": "72157623431354665", "photo_flickr_id": "4406775301", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "49829", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i like how the magazine went with different colors for different pages instead of just showing the same thing over and over again .", "storylet_id": "249147"}], [{"original_text": "The magazine also had some fold out posters that you could add of cartoon versions of the robots. ", "album_id": "72157623431354665", "photo_flickr_id": "4407542046", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "49829", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the magazine also had some fold out posters that you could add of cartoon versions of the robots .", "storylet_id": "249148"}], [{"original_text": "I think I'll probably give this one to my nephew to hang up. ", "album_id": "72157623431354665", "photo_flickr_id": "4406776447", "setting": "last-3-pick-old-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "49829", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think i 'll probably give this one to my nephew to hang up .", "storylet_id": "249149"}], [{"original_text": "Robotech toys! You can build them into different things.", "album_id": "72157623555688218", "photo_flickr_id": "4407447206", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49830", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "robotech toys ! you can build them into different things .", "storylet_id": "249150"}], [{"original_text": "This one is a space ship.", "album_id": "72157623555688218", "photo_flickr_id": "4407447408", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49830", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one is a space ship .", "storylet_id": "249151"}], [{"original_text": "Or you can change it and make him a fighter.", "album_id": "72157623555688218", "photo_flickr_id": "4407447586", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49830", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "or you can change it and make him a fighter .", "storylet_id": "249152"}], [{"original_text": "Then into another space ship...all from the same parts.", "album_id": "72157623555688218", "photo_flickr_id": "4406681433", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49830", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then into another space ship ... all from the same parts .", "storylet_id": "249153"}], [{"original_text": "Different things listed on the back of the package.", "album_id": "72157623555688218", "photo_flickr_id": "4407448074", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "49830", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "different things listed on the back of the package .", "storylet_id": "249154"}], [{"original_text": "Robotech has been around for a while.", "album_id": "72157623555688218", "photo_flickr_id": "4407447206", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49831", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "robotech has been around for a while .", "storylet_id": "249155"}], [{"original_text": "The have many different sets to purchace.", "album_id": "72157623555688218", "photo_flickr_id": "4407447298", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49831", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the have many different sets to purchace .", "storylet_id": "249156"}], [{"original_text": "You can get fighter jets.", "album_id": "72157623555688218", "photo_flickr_id": "4407447408", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49831", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you can get fighter jets .", "storylet_id": "249157"}], [{"original_text": "Aircraft jets are also available.", "album_id": "72157623555688218", "photo_flickr_id": "4407447506", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49831", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "aircraft jets are also available .", "storylet_id": "249158"}], [{"original_text": "The robotic fighters are pretty cool.", "album_id": "72157623555688218", "photo_flickr_id": "4407447586", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "49831", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the robotic fighters are pretty cool .", "storylet_id": "249159"}], [{"original_text": "Lego instructions are really helpful for kids who are learning to build.", "album_id": "72157623555688218", "photo_flickr_id": "4407447206", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "49832", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "lego instructions are really helpful for kids who are learning to build .", "storylet_id": "249160"}], [{"original_text": "The planes are a favorite- they often hold missles or have large wings.", "album_id": "72157623555688218", "photo_flickr_id": "4407447408", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "49832", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the planes are a favorite- they often hold missles or have large wings .", "storylet_id": "249161"}], [{"original_text": "Kids also like to build robots and transformers.", "album_id": "72157623555688218", "photo_flickr_id": "4407447586", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "49832", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "kids also like to build robots and transformers .", "storylet_id": "249162"}], [{"original_text": "The biggest spaceships are difficult to build but are really cool.", "album_id": "72157623555688218", "photo_flickr_id": "4406681433", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "49832", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the biggest spaceships are difficult to build but are really cool .", "storylet_id": "249163"}], [{"original_text": "Instructions help kids build some really exciting models!", "album_id": "72157623555688218", "photo_flickr_id": "4407448074", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "49832", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "instructions help kids build some really exciting models !", "storylet_id": "249164"}], [{"original_text": "Robotech released their new toy, with complicated instructions..", "album_id": "72157623555688218", "photo_flickr_id": "4407447206", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49833", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "robotech released their new toy , with complicated instructions..", "storylet_id": "249165"}], [{"original_text": "After putting it together, you could finally get a cool ship to fly around.", "album_id": "72157623555688218", "photo_flickr_id": "4407447408", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49833", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after putting it together , you could finally get a cool ship to fly around .", "storylet_id": "249166"}], [{"original_text": "You could also turn it into a robot with a weapon.", "album_id": "72157623555688218", "photo_flickr_id": "4407447586", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49833", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you could also turn it into a robot with a weapon .", "storylet_id": "249167"}], [{"original_text": "If you wanted to change it even further, you get an even cooler ship.", "album_id": "72157623555688218", "photo_flickr_id": "4406681433", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49833", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "if you wanted to change it even further , you get an even cooler ship .", "storylet_id": "249168"}], [{"original_text": "There were so many different options for the new toy.", "album_id": "72157623555688218", "photo_flickr_id": "4407448074", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "49833", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were so many different options for the new toy .", "storylet_id": "249169"}], [{"original_text": "I opened the instructions to put it together.", "album_id": "72157623555688218", "photo_flickr_id": "4407447206", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49834", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i opened the instructions to put it together .", "storylet_id": "249170"}], [{"original_text": "Front page showed the finished product.", "album_id": "72157623555688218", "photo_flickr_id": "4407447408", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49834", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "front page showed the finished product .", "storylet_id": "249171"}], [{"original_text": "The next was it in another form. I was now lost.", "album_id": "72157623555688218", "photo_flickr_id": "4407447586", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49834", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next was it in another form . i was now lost .", "storylet_id": "249172"}], [{"original_text": "Then another one came up.", "album_id": "72157623555688218", "photo_flickr_id": "4406681433", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49834", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then another one came up .", "storylet_id": "249173"}], [{"original_text": "By the time i got to the last page, i gave up.", "album_id": "72157623555688218", "photo_flickr_id": "4407448074", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49834", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the time i got to the last page , i gave up .", "storylet_id": "249174"}], [{"original_text": "Robosaurus was orange and viscous, and ready to battle. ", "album_id": "72157623431139319", "photo_flickr_id": "4407457056", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49835", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "robosaurus was orange and viscous , and ready to battle .", "storylet_id": "249175"}], [{"original_text": "The Omnibot Jr. clenched its cup holders, trembling in fear. ", "album_id": "72157623431139319", "photo_flickr_id": "4406691839", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49835", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the omnibot jr. clenched its cup holders , trembling in fear .", "storylet_id": "249176"}], [{"original_text": "Mr. D.J. slide into frame and told Omnibot Jr., \"I'll fight by you!\"", "album_id": "72157623431139319", "photo_flickr_id": "4406691923", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49835", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mr. d.j . slide into frame and told omnibot jr. , `` i 'll fight by you ! ''", "storylet_id": "249177"}], [{"original_text": "And then, all the robots picked a team and played the world cup Fusball. ", "album_id": "72157623431139319", "photo_flickr_id": "4406692447", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49835", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and then , all the robots picked a team and played the world cup fusball .", "storylet_id": "249178"}], [{"original_text": "Afterwards, they broke open a water starball and quaffed the water, to the detriment of their circuits. ", "album_id": "72157623431139319", "photo_flickr_id": "4406693775", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "49835", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , they broke open a water starball and quaffed the water , to the detriment of their circuits .", "storylet_id": "249179"}], [{"original_text": "Billy Bear and his sister, Betty Bunny, were very lucky children with wonderful toys.", "album_id": "72157623431139319", "photo_flickr_id": "4407459886", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49836", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] bear and his sister , [female] bunny , were very lucky children with wonderful toys .", "storylet_id": "249180"}], [{"original_text": "Betty had a fully furnished doll house with a whole family in residence.", "album_id": "72157623431139319", "photo_flickr_id": "4406694635", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49836", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] had a fully furnished doll house with a whole family in residence .", "storylet_id": "249181"}], [{"original_text": "Billy had a terrific train set that went round and round, complete with a nearby town. ", "album_id": "72157623431139319", "photo_flickr_id": "4407459040", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49836", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] had a terrific train set that went round and round , complete with a nearby town .", "storylet_id": "249182"}], [{"original_text": "Both of them enjoyed playing with the ordinary robot. ", "album_id": "72157623431139319", "photo_flickr_id": "4406691611", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49836", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "both of them enjoyed playing with the ordinary robot .", "storylet_id": "249183"}], [{"original_text": "But by far the favorite toy that the children enjoyed was Monster Robot Dinosaur!", "album_id": "72157623431139319", "photo_flickr_id": "4407457056", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49836", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but by far the favorite toy that the children enjoyed was monster robot dinosaur !", "storylet_id": "249184"}], [{"original_text": "I was looking through the toy catalog yesterday.", "album_id": "72157623431139319", "photo_flickr_id": "4407457056", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49837", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was looking through the toy catalog yesterday .", "storylet_id": "249185"}], [{"original_text": "There were many expensive toys.", "album_id": "72157623431139319", "photo_flickr_id": "4406691839", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49837", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many expensive toys .", "storylet_id": "249186"}], [{"original_text": "Some of them were cool.", "album_id": "72157623431139319", "photo_flickr_id": "4406691923", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49837", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them were cool .", "storylet_id": "249187"}], [{"original_text": "I tried to decide which one to buy.", "album_id": "72157623431139319", "photo_flickr_id": "4406692447", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49837", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i tried to decide which one to buy .", "storylet_id": "249188"}], [{"original_text": "I think I'll buy this one.", "album_id": "72157623431139319", "photo_flickr_id": "4406693775", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49837", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think i 'll buy this one .", "storylet_id": "249189"}], [{"original_text": "My mother hand made these trinkets to sell at the annual arts and crafts fair. ", "album_id": "72157623431139319", "photo_flickr_id": "4407459886", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49838", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my mother hand made these trinkets to sell at the annual arts and crafts fair .", "storylet_id": "249190"}], [{"original_text": "This particular piece took her 72 hours to make. ", "album_id": "72157623431139319", "photo_flickr_id": "4406694635", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49838", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this particular piece took her 72 hours to make .", "storylet_id": "249191"}], [{"original_text": "The train set she got help with from dad, as it requires some wood work. ", "album_id": "72157623431139319", "photo_flickr_id": "4407459040", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49838", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the train set she got help with from dad , as it requires some wood work .", "storylet_id": "249192"}], [{"original_text": "Dad is planning to take this along to the fair, while it is not hand made, he hopes that somebody will be interested. ", "album_id": "72157623431139319", "photo_flickr_id": "4406691611", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49838", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dad is planning to take this along to the fair , while it is not hand made , he hopes that somebody will be interested .", "storylet_id": "249193"}], [{"original_text": "My mom made this for my brother, she still has it, and is debating of to take it to the fair. ", "album_id": "72157623431139319", "photo_flickr_id": "4407457056", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49838", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my mom made this for my brother , she still has it , and is debating of to take it to the fair .", "storylet_id": "249194"}], [{"original_text": "The Tomy catalog featured pages of wonderful toys such as these stuffed animals.", "album_id": "72157623431139319", "photo_flickr_id": "4407459886", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49839", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tomy catalog featured pages of wonderful toys such as these stuffed animals .", "storylet_id": "249195"}], [{"original_text": "There was also a dollhouse that any little girl would enjoy.", "album_id": "72157623431139319", "photo_flickr_id": "4406694635", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49839", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was also a dollhouse that any little girl would enjoy .", "storylet_id": "249196"}], [{"original_text": "For young boys, the model train set would be a great choice.", "album_id": "72157623431139319", "photo_flickr_id": "4407459040", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49839", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "for young boys , the model train set would be a great choice .", "storylet_id": "249197"}], [{"original_text": "The catalog also featured a few interesting toy robots.", "album_id": "72157623431139319", "photo_flickr_id": "4406691611", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49839", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the catalog also featured a few interesting toy robots .", "storylet_id": "249198"}], [{"original_text": "Of course, there were also action figures which are always a popular choice.", "album_id": "72157623431139319", "photo_flickr_id": "4407457056", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "49839", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of course , there were also action figures which are always a popular choice .", "storylet_id": "249199"}], [{"original_text": "Today was the day.", "album_id": "72157623019037905", "photo_flickr_id": "4250762445", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49840", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day .", "storylet_id": "249200"}], [{"original_text": "Everyone was there.", "album_id": "72157623019037905", "photo_flickr_id": "4246977413", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49840", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was there .", "storylet_id": "249201"}], [{"original_text": "He came home.", "album_id": "72157623019037905", "photo_flickr_id": "4247752210", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49840", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he came home .", "storylet_id": "249202"}], [{"original_text": "Stayed at the airport.", "album_id": "72157623019037905", "photo_flickr_id": "4246978161", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49840", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "stayed at the airport .", "storylet_id": "249203"}], [{"original_text": "Then we played in the snow.", "album_id": "72157623019037905", "photo_flickr_id": "4247753382", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49840", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we played in the snow .", "storylet_id": "249204"}], [{"original_text": "Just landed. ", "album_id": "72157623019037905", "photo_flickr_id": "4250762445", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49841", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "just landed .", "storylet_id": "249205"}], [{"original_text": "Talking about new projects.", "album_id": "72157623019037905", "photo_flickr_id": "4246982857", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49841", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "talking about new projects .", "storylet_id": "249206"}], [{"original_text": "Went to dinner with friends.", "album_id": "72157623019037905", "photo_flickr_id": "4247759818", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49841", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "went to dinner with friends .", "storylet_id": "249207"}], [{"original_text": "A surprise visitor joined them.", "album_id": "72157623019037905", "photo_flickr_id": "4247760126", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49841", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a surprise visitor joined them .", "storylet_id": "249208"}], [{"original_text": "Passing food around.", "album_id": "72157623019037905", "photo_flickr_id": "4247760760", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "49841", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "passing food around .", "storylet_id": "249209"}], [{"original_text": "We finally arrive after the long flight.", "album_id": "72157623019037905", "photo_flickr_id": "4250762445", "setting": "last-3-pick-old-and-tell", "worker_id": "CEJPRQKK7MKA2PC", "story_id": "49842", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we finally arrive after the long flight .", "storylet_id": "249210"}], [{"original_text": "I headed straight to my friends house where he was holding a small gathering.", "album_id": "72157623019037905", "photo_flickr_id": "4246977413", "setting": "last-3-pick-old-and-tell", "worker_id": "CEJPRQKK7MKA2PC", "story_id": "49842", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i headed straight to my friends house where he was holding a small gathering .", "storylet_id": "249211"}], [{"original_text": "My friend poses for a picture while eating food.", "album_id": "72157623019037905", "photo_flickr_id": "4247752210", "setting": "last-3-pick-old-and-tell", "worker_id": "CEJPRQKK7MKA2PC", "story_id": "49842", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend poses for a picture while eating food .", "storylet_id": "249212"}], [{"original_text": "We later get to our hotel to check in.", "album_id": "72157623019037905", "photo_flickr_id": "4246978161", "setting": "last-3-pick-old-and-tell", "worker_id": "CEJPRQKK7MKA2PC", "story_id": "49842", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we later get to our hotel to check in .", "storylet_id": "249213"}], [{"original_text": "All of us head outside and enjoy the snow.", "album_id": "72157623019037905", "photo_flickr_id": "4247753382", "setting": "last-3-pick-old-and-tell", "worker_id": "CEJPRQKK7MKA2PC", "story_id": "49842", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of us head outside and enjoy the snow .", "storylet_id": "249214"}], [{"original_text": "we went to pick up maxx from the air port the other day.", "album_id": "72157623019037905", "photo_flickr_id": "4250762445", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "49843", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to pick up maxx from the air port the other day .", "storylet_id": "249215"}], [{"original_text": "we live in a small town, so it was a big deal for him to come back and see us.", "album_id": "72157623019037905", "photo_flickr_id": "4246982857", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "49843", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we live in a small town , so it was a big deal for him to come back and see us .", "storylet_id": "249216"}], [{"original_text": "we all went out after the meeting to get some food.", "album_id": "72157623019037905", "photo_flickr_id": "4247759818", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "49843", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all went out after the meeting to get some food .", "storylet_id": "249217"}], [{"original_text": "we had the place to ourselves that night as it was a weeknight.", "album_id": "72157623019037905", "photo_flickr_id": "4247760126", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "49843", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had the place to ourselves that night as it was a weeknight .", "storylet_id": "249218"}], [{"original_text": "we ate and drake our fill. it was a good night to have old maxx back with us.", "album_id": "72157623019037905", "photo_flickr_id": "4247760760", "setting": "last-3-pick-old-and-tell", "worker_id": "428MZSHTSA2IAMW", "story_id": "49843", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ate and drake our fill . it was a good night to have old maxx back with us .", "storylet_id": "249219"}], [{"original_text": "We landed at the airport on a snowy day.", "album_id": "72157623019037905", "photo_flickr_id": "4250762445", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49844", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we landed at the airport on a snowy day .", "storylet_id": "249220"}], [{"original_text": "When we arrived, we sat down to have a large meal.", "album_id": "72157623019037905", "photo_flickr_id": "4246977413", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49844", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we arrived , we sat down to have a large meal .", "storylet_id": "249221"}], [{"original_text": "Then we had desert after the meal.", "album_id": "72157623019037905", "photo_flickr_id": "4247752210", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49844", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we had desert after the meal .", "storylet_id": "249222"}], [{"original_text": "We arrived to our hotel to check in.", "album_id": "72157623019037905", "photo_flickr_id": "4246978161", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49844", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we arrived to our hotel to check in .", "storylet_id": "249223"}], [{"original_text": "After that we took a walk in the snow.", "album_id": "72157623019037905", "photo_flickr_id": "4247753382", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "49844", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that we took a walk in the snow .", "storylet_id": "249224"}], [{"original_text": "Visited an old church.In this church was several stain glass windows with amazing biblical designs.", "album_id": "72157623653330993", "photo_flickr_id": "4494860490", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "49845", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visited an old church.in this church was several stain glass windows with amazing biblical designs .", "storylet_id": "249225"}], [{"original_text": "Each stain glass window had different pictures.", "album_id": "72157623653330993", "photo_flickr_id": "4494860484", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "49845", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each stain glass window had different pictures .", "storylet_id": "249226"}], [{"original_text": "Memorial stone for some great people.This church is dedicated to everyone who is a member.", "album_id": "72157623653330993", "photo_flickr_id": "4494288133", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "49845", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "memorial stone for some great people.this church is dedicated to everyone who is a member .", "storylet_id": "249227"}], [{"original_text": "This is what the outside of the church looks like.It's amazing and beautiful.", "album_id": "72157623653330993", "photo_flickr_id": "4495047844", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "49845", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is what the outside of the church looks like.it 's amazing and beautiful .", "storylet_id": "249228"}], [{"original_text": "While at the church I spent some time in the grave yard.Reading all the stones I seen a few from a hundred years ago.", "album_id": "72157623653330993", "photo_flickr_id": "4495047898", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "49845", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while at the church i spent some time in the grave yard.reading all the stones i seen a few from a hundred years ago .", "storylet_id": "249229"}], [{"original_text": "I got dressed for Halloween and then i went out for a walk.", "album_id": "72157623653330993", "photo_flickr_id": "4494860508", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49846", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got dressed for halloween and then i went out for a walk .", "storylet_id": "249230"}], [{"original_text": "There were a lot of decorations outside.", "album_id": "72157623653330993", "photo_flickr_id": "4494860502", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49846", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of decorations outside .", "storylet_id": "249231"}], [{"original_text": "I went to the cemetery.", "album_id": "72157623653330993", "photo_flickr_id": "4495047844", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49846", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i went to the cemetery .", "storylet_id": "249232"}], [{"original_text": "The cemetery was creepy this time of the year.", "album_id": "72157623653330993", "photo_flickr_id": "4495047898", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49846", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cemetery was creepy this time of the year .", "storylet_id": "249233"}], [{"original_text": "There were some flowers on the gravestones.", "album_id": "72157623653330993", "photo_flickr_id": "4495047890", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49846", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were some flowers on the gravestones .", "storylet_id": "249234"}], [{"original_text": "We took a tour of some of the most beautiful churches.", "album_id": "72157623653330993", "photo_flickr_id": "4494860490", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "49847", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a tour of some of the most beautiful churches .", "storylet_id": "249235"}], [{"original_text": "They had the most beautiful stain glass windows.", "album_id": "72157623653330993", "photo_flickr_id": "4494860484", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "49847", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had the most beautiful stain glass windows .", "storylet_id": "249236"}], [{"original_text": "Outside there were tombstones and memorials for locals who had died.", "album_id": "72157623653330993", "photo_flickr_id": "4494288133", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "49847", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "outside there were tombstones and memorials for locals who had died .", "storylet_id": "249237"}], [{"original_text": "We took some pictures to remember how beautiful they were.", "album_id": "72157623653330993", "photo_flickr_id": "4495047844", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "49847", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took some pictures to remember how beautiful they were .", "storylet_id": "249238"}], [{"original_text": "Our last photo was that of someone who died during WW2 in the air force.!", "album_id": "72157623653330993", "photo_flickr_id": "4495047898", "setting": "last-3-pick-old-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "49847", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our last photo was that of someone who died during ww2 in the air force . !", "storylet_id": "249239"}], [{"original_text": "Visited a Church in Boston when I went to see my mom.", "album_id": "72157623653330993", "photo_flickr_id": "4494860490", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49848", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visited a church in location when i went to see my mom .", "storylet_id": "249240"}], [{"original_text": "Windows are great! I wish I could have those.", "album_id": "72157623653330993", "photo_flickr_id": "4494860484", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49848", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "windows are great ! i wish i could have those .", "storylet_id": "249241"}], [{"original_text": "A sign for some guards of the church who were killed in battle.", "album_id": "72157623653330993", "photo_flickr_id": "4494288133", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49848", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a sign for some guards of the church who were killed in battle .", "storylet_id": "249242"}], [{"original_text": "Cemetery where all the locals are buried.", "album_id": "72157623653330993", "photo_flickr_id": "4495047844", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49848", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cemetery where all the locals are buried .", "storylet_id": "249243"}], [{"original_text": "This one is a flying officer named B. Carse, he was in the Royal Air Force.", "album_id": "72157623653330993", "photo_flickr_id": "4495047898", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49848", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this one is a flying officer named b. carse , he was in the organization organization organization .", "storylet_id": "249244"}], [{"original_text": "When we went to the church on the vacation we got to see great stained glass windows.", "album_id": "72157623653330993", "photo_flickr_id": "4494860490", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49849", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when we went to the church on the vacation we got to see great stained glass windows .", "storylet_id": "249245"}], [{"original_text": "You could see them so clearly with the light creeping in behind.", "album_id": "72157623653330993", "photo_flickr_id": "4494860484", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49849", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you could see them so clearly with the light creeping in behind .", "storylet_id": "249246"}], [{"original_text": "We got to see this memorial for a man from the church.", "album_id": "72157623653330993", "photo_flickr_id": "4494288133", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49849", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got to see this memorial for a man from the church .", "storylet_id": "249247"}], [{"original_text": "The church from the outside was gorgeous in front of the blue sky.", "album_id": "72157623653330993", "photo_flickr_id": "4495047844", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49849", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the church from the outside was gorgeous in front of the blue sky .", "storylet_id": "249248"}], [{"original_text": "We saw many memorials for people from the church.", "album_id": "72157623653330993", "photo_flickr_id": "4495047898", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "49849", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we saw many memorials for people from the church .", "storylet_id": "249249"}], [{"original_text": "My cousins arrived from all over country to celebrate grandmas birthday.", "album_id": "72157623782056916", "photo_flickr_id": "4495556673", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "49850", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my cousins arrived from all over country to celebrate grandmas birthday .", "storylet_id": "249250"}], [{"original_text": "Grandma is 90 but still very physically active and mentally sharp.", "album_id": "72157623782056916", "photo_flickr_id": "4496195710", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "49850", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma is 90 but still very physically active and mentally sharp .", "storylet_id": "249251"}], [{"original_text": "We ordered the most beautiful cake for the occasion.", "album_id": "72157623782056916", "photo_flickr_id": "4495556511", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "49850", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we ordered the most beautiful cake for the occasion .", "storylet_id": "249252"}], [{"original_text": "The governor sent her a special birthday wish. Grandma is still politically active.", "album_id": "72157623782056916", "photo_flickr_id": "4495556373", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "49850", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the governor sent her a special birthday wish . grandma is still politically active .", "storylet_id": "249253"}], [{"original_text": "She gave a moving Thank You speech to her adoring family and friends.", "album_id": "72157623782056916", "photo_flickr_id": "4495557099", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "49850", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she gave a moving thank you speech to her adoring family and friends .", "storylet_id": "249254"}], [{"original_text": "Amy was a young woman one time long ago. ", "album_id": "72157623782056916", "photo_flickr_id": "4496194472", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49851", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was a young woman one time long ago .", "storylet_id": "249255"}], [{"original_text": "She married as so many do, nothing strange in that you know. ", "album_id": "72157623782056916", "photo_flickr_id": "4495556511", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49851", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she married as so many do , nothing strange in that you know .", "storylet_id": "249256"}], [{"original_text": "Then came the baby that was such a pleasure to watch grow. ", "album_id": "72157623782056916", "photo_flickr_id": "4718165989", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49851", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then came the baby that was such a pleasure to watch grow .", "storylet_id": "249257"}], [{"original_text": "Through all those life events Amy kept her childhood friend Flo. ", "album_id": "72157623782056916", "photo_flickr_id": "4496195996", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49851", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "through all those life events [female] kept her childhood friend flo .", "storylet_id": "249258"}], [{"original_text": "When Amy was aged and her husband gone and her child grown, Flo was still the best friend Amy had ever known. ", "album_id": "72157623782056916", "photo_flickr_id": "4495557841", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49851", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when [female] was aged and her husband gone and her child grown , flo was still the best friend [female] had ever known .", "storylet_id": "249259"}], [{"original_text": "My sister Penny and my brother Jim went with me to my great Aunt Floras 87th Birthday party. ", "album_id": "72157623782056916", "photo_flickr_id": "4495556673", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49852", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister [female] and my brother [male] went with me to my great aunt floras 87th birthday party .", "storylet_id": "249260"}], [{"original_text": "It was held in a nice room at the Methodist Church. ", "album_id": "72157623782056916", "photo_flickr_id": "4496195710", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49852", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was held in a nice room at the organization organization .", "storylet_id": "249261"}], [{"original_text": "Her Birthday cake was so pretty. It was all completely edible. ", "album_id": "72157623782056916", "photo_flickr_id": "4495556511", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49852", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her birthday cake was so pretty . it was all completely edible .", "storylet_id": "249262"}], [{"original_text": "Here's Aunt Flora looking at my gift. A photo album full of old photos. ", "album_id": "72157623782056916", "photo_flickr_id": "4495556373", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49852", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's aunt [female] looking at my gift . a photo album full of old photos .", "storylet_id": "249263"}], [{"original_text": "She gave a thank you speech and everyone clapped. It was a nice day. ", "album_id": "72157623782056916", "photo_flickr_id": "4495557099", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49852", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she gave a thank you speech and everyone clapped . it was a nice day .", "storylet_id": "249264"}], [{"original_text": "Whatever the occasion is,", "album_id": "72157623782056916", "photo_flickr_id": "4496194472", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49853", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "whatever the occasion is ,", "storylet_id": "249265"}], [{"original_text": "whether it be a birthday or wedding,", "album_id": "72157623782056916", "photo_flickr_id": "4495556511", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49853", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "whether it be a birthday or wedding ,", "storylet_id": "249266"}], [{"original_text": "or church or just a community event,", "album_id": "72157623782056916", "photo_flickr_id": "4718165989", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49853", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "or church or just a community event ,", "storylet_id": "249267"}], [{"original_text": "there's always a good reason to spend time with family and friends.", "album_id": "72157623782056916", "photo_flickr_id": "4496195996", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49853", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there 's always a good reason to spend time with family and friends .", "storylet_id": "249268"}], [{"original_text": "In the end, all we have are memories. Make sure they are good ones.", "album_id": "72157623782056916", "photo_flickr_id": "4495557841", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49853", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , all we have are memories . make sure they are good ones .", "storylet_id": "249269"}], [{"original_text": "The family all got together for a birthday party.", "album_id": "72157623782056916", "photo_flickr_id": "4495556673", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49854", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family all got together for a birthday party .", "storylet_id": "249270"}], [{"original_text": "It was Helen's 85th birthday. Here she is with her children.", "album_id": "72157623782056916", "photo_flickr_id": "4496195710", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49854", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was [female] 's 85th birthday . here she is with her children .", "storylet_id": "249271"}], [{"original_text": "The bakery did a beautiful job with the cake.", "album_id": "72157623782056916", "photo_flickr_id": "4495556511", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49854", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bakery did a beautiful job with the cake .", "storylet_id": "249272"}], [{"original_text": "One of her gifts was a photo album.", "album_id": "72157623782056916", "photo_flickr_id": "4495556373", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49854", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of her gifts was a photo album .", "storylet_id": "249273"}], [{"original_text": "She was very happy to be surrounded by her family.", "album_id": "72157623782056916", "photo_flickr_id": "4495557099", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49854", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was very happy to be surrounded by her family .", "storylet_id": "249274"}], [{"original_text": "The president continued his tours of the Maldive islands, stopping at tiny pots to give speeches.", "album_id": "72157623363102898", "photo_flickr_id": "4334428360", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "49855", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the president continued his tours of the maldive islands , stopping at tiny pots to give speeches .", "storylet_id": "249275"}], [{"original_text": "To keep the villages distinct in his mind, he ordered each town to have a unque color, eg yellow.", "album_id": "72157623363102898", "photo_flickr_id": "4333675741", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "49855", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to keep the villages distinct in his mind , he ordered each town to have a unque color , eg yellow .", "storylet_id": "249276"}], [{"original_text": "The highlight of the day was the free buffet dinner.", "album_id": "72157623363102898", "photo_flickr_id": "4333687315", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "49855", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the highlight of the day was the free buffet dinner .", "storylet_id": "249277"}], [{"original_text": "Townspeople waited for hours for their chance at the provided meal.", "album_id": "72157623363102898", "photo_flickr_id": "4334429284", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "49855", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "townspeople waited for hours for their chance at the provided meal .", "storylet_id": "249278"}], [{"original_text": "On the way home, the president relaxed in the back of the boat and worked on his tan.", "album_id": "72157623363102898", "photo_flickr_id": "4333672705", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "49855", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the way home , the president relaxed in the back of the boat and worked on his tan .", "storylet_id": "249279"}], [{"original_text": "Today was the day.", "album_id": "72157623363102898", "photo_flickr_id": "4333674693", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49856", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day .", "storylet_id": "249280"}], [{"original_text": "Everyone was there.", "album_id": "72157623363102898", "photo_flickr_id": "4333675741", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49856", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was there .", "storylet_id": "249281"}], [{"original_text": "It was so crowded.", "album_id": "72157623363102898", "photo_flickr_id": "4334421070", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49856", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was so crowded .", "storylet_id": "249282"}], [{"original_text": "He shook some hands.", "album_id": "72157623363102898", "photo_flickr_id": "4334422054", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49856", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he shook some hands .", "storylet_id": "249283"}], [{"original_text": "And made some new friends.", "album_id": "72157623363102898", "photo_flickr_id": "4333679385", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49856", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and made some new friends .", "storylet_id": "249284"}], [{"original_text": "The candidate makes a speech to his fans.", "album_id": "72157623363102898", "photo_flickr_id": "4334428360", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49857", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the candidate makes a speech to his fans .", "storylet_id": "249285"}], [{"original_text": "Voters line up to hear the candidate make a speech.", "album_id": "72157623363102898", "photo_flickr_id": "4333675741", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49857", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "voters line up to hear the candidate make a speech .", "storylet_id": "249286"}], [{"original_text": "The candidate fills a plate of food his fans made for him.", "album_id": "72157623363102898", "photo_flickr_id": "4333687315", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49857", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the candidate fills a plate of food his fans made for him .", "storylet_id": "249287"}], [{"original_text": "Voters line up to say fare well to the candidate.", "album_id": "72157623363102898", "photo_flickr_id": "4334429284", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49857", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "voters line up to say fare well to the candidate .", "storylet_id": "249288"}], [{"original_text": "The candidate journeys by boat to save money.", "album_id": "72157623363102898", "photo_flickr_id": "4333672705", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49857", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the candidate journeys by boat to save money .", "storylet_id": "249289"}], [{"original_text": "The local leader was on stage to give a speech again tonight.", "album_id": "72157623363102898", "photo_flickr_id": "4334428360", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "49858", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the local leader was on stage to give a speech again tonight .", "storylet_id": "249290"}], [{"original_text": "He addressed all the issues at hand to the crowd.", "album_id": "72157623363102898", "photo_flickr_id": "4333675741", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "49858", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he addressed all the issues at hand to the crowd .", "storylet_id": "249291"}], [{"original_text": "They even provided him with many exotic foods.", "album_id": "72157623363102898", "photo_flickr_id": "4333687315", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "49858", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even provided him with many exotic foods .", "storylet_id": "249292"}], [{"original_text": "There was a mini party going on in the area.", "album_id": "72157623363102898", "photo_flickr_id": "4334429284", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "49858", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a mini party going on in the area .", "storylet_id": "249293"}], [{"original_text": "After the speech, the leader was then on a boat heading back home.", "album_id": "72157623363102898", "photo_flickr_id": "4333672705", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "49858", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the speech , the leader was then on a boat heading back home .", "storylet_id": "249294"}], [{"original_text": "The man was on the boat", "album_id": "72157623363102898", "photo_flickr_id": "4333674693", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49859", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man was on the boat", "storylet_id": "249295"}], [{"original_text": "and people were cheering.", "album_id": "72157623363102898", "photo_flickr_id": "4333675741", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49859", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and people were cheering .", "storylet_id": "249296"}], [{"original_text": "That he was returning", "album_id": "72157623363102898", "photo_flickr_id": "4334421070", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49859", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that he was returning", "storylet_id": "249297"}], [{"original_text": "and he greeted them", "album_id": "72157623363102898", "photo_flickr_id": "4334422054", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49859", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and he greeted them", "storylet_id": "249298"}], [{"original_text": "and was well liked.", "album_id": "72157623363102898", "photo_flickr_id": "4333679385", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49859", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and was well liked .", "storylet_id": "249299"}], [{"original_text": "I really love Japan.", "album_id": "72157623364325932", "photo_flickr_id": "4334910270", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49860", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i really love location .", "storylet_id": "249300"}], [{"original_text": "Sex sells everything.", "album_id": "72157623364325932", "photo_flickr_id": "4334910376", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49860", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sex sells everything .", "storylet_id": "249301"}], [{"original_text": "It doesn't matter what it is.", "album_id": "72157623364325932", "photo_flickr_id": "4334910466", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49860", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it does n't matter what it is .", "storylet_id": "249302"}], [{"original_text": "Just put some hentai on it.", "album_id": "72157623364325932", "photo_flickr_id": "4334910546", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49860", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "just put some hentai on it .", "storylet_id": "249303"}], [{"original_text": "And it will sell.", "album_id": "72157623364325932", "photo_flickr_id": "4334910654", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49860", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and it will sell .", "storylet_id": "249304"}], [{"original_text": "Tokyo is beautiful at night!", "album_id": "72157623364325932", "photo_flickr_id": "4334910270", "setting": "first-2-pick-and-tell", "worker_id": "W8QJCBFXLNXT8ZV", "story_id": "49861", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location is beautiful at night !", "storylet_id": "249305"}], [{"original_text": "We had to look at some anime stuff!", "album_id": "72157623364325932", "photo_flickr_id": "4334910546", "setting": "first-2-pick-and-tell", "worker_id": "W8QJCBFXLNXT8ZV", "story_id": "49861", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to look at some anime stuff !", "storylet_id": "249306"}], [{"original_text": "There were costumes to try on.", "album_id": "72157623364325932", "photo_flickr_id": "4334169739", "setting": "first-2-pick-and-tell", "worker_id": "W8QJCBFXLNXT8ZV", "story_id": "49861", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were costumes to try on .", "storylet_id": "249307"}], [{"original_text": "Here are some pics we took in the costumes!", "album_id": "72157623364325932", "photo_flickr_id": "4334169637", "setting": "first-2-pick-and-tell", "worker_id": "W8QJCBFXLNXT8ZV", "story_id": "49861", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here are some pics we took in the costumes !", "storylet_id": "249308"}], [{"original_text": "We enjoyed our evening! ", "album_id": "72157623364325932", "photo_flickr_id": "4334170381", "setting": "first-2-pick-and-tell", "worker_id": "W8QJCBFXLNXT8ZV", "story_id": "49861", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we enjoyed our evening !", "storylet_id": "249309"}], [{"original_text": "The city lights in Japan are quite colorful.", "album_id": "72157623364325932", "photo_flickr_id": "4334910270", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49862", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city lights in location are quite colorful .", "storylet_id": "249310"}], [{"original_text": "Anime is very popular in Japan.", "album_id": "72157623364325932", "photo_flickr_id": "4334910546", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49862", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "anime is very popular in location .", "storylet_id": "249311"}], [{"original_text": "This store sells costumes based on famous anime characters.", "album_id": "72157623364325932", "photo_flickr_id": "4334169739", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49862", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this store sells costumes based on famous anime characters .", "storylet_id": "249312"}], [{"original_text": "You can view an album of models dressed as famous anime girls.", "album_id": "72157623364325932", "photo_flickr_id": "4334169637", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49862", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you can view an album of models dressed as famous anime girls .", "storylet_id": "249313"}], [{"original_text": "There are lots of people gathered outside this spectacularly lighted building.", "album_id": "72157623364325932", "photo_flickr_id": "4334170381", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49862", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are lots of people gathered outside this spectacularly lighted building .", "storylet_id": "249314"}], [{"original_text": "Went to Akihabara today!", "album_id": "72157623364325932", "photo_flickr_id": "4334910270", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49863", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went to location today !", "storylet_id": "249315"}], [{"original_text": "Got a copy of \"Big boobed Himoko Chan\"", "album_id": "72157623364325932", "photo_flickr_id": "4334910376", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49863", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "got a copy of `` big boobed himoko chan ''", "storylet_id": "249316"}], [{"original_text": "Though there was much more on sale!", "album_id": "72157623364325932", "photo_flickr_id": "4334910466", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49863", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "though there was much more on sale !", "storylet_id": "249317"}], [{"original_text": "I couldn't buy it all!", "album_id": "72157623364325932", "photo_flickr_id": "4334910546", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49863", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i could n't buy it all !", "storylet_id": "249318"}], [{"original_text": "I found my Wifu, though.", "album_id": "72157623364325932", "photo_flickr_id": "4334910654", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49863", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i found my wifu , though .", "storylet_id": "249319"}], [{"original_text": "My first week in Tokyo, Japan.", "album_id": "72157623364325932", "photo_flickr_id": "4334910270", "setting": "last-3-pick-old-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49864", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my first week in location , location .", "storylet_id": "249320"}], [{"original_text": "Some of the first things I noticed is that the Japanese people really like anime.", "album_id": "72157623364325932", "photo_flickr_id": "4334910376", "setting": "last-3-pick-old-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49864", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the first things i noticed is that the japanese people really like anime .", "storylet_id": "249321"}], [{"original_text": "And they love playing dress up.", "album_id": "72157623364325932", "photo_flickr_id": "4334910466", "setting": "last-3-pick-old-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49864", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and they love playing dress up .", "storylet_id": "249322"}], [{"original_text": "Everything has to be a sexy variation of a uniform.", "album_id": "72157623364325932", "photo_flickr_id": "4334910546", "setting": "last-3-pick-old-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49864", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everything has to be a sexy variation of a uniform .", "storylet_id": "249323"}], [{"original_text": "This is my favorite Anime out of all of them.", "album_id": "72157623364325932", "photo_flickr_id": "4334910654", "setting": "last-3-pick-old-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "49864", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is my favorite anime out of all of them .", "storylet_id": "249324"}], [{"original_text": "I recently took a trip through Eastern Europe.", "album_id": "72157623238708241", "photo_flickr_id": "4333769073", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "49865", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i recently took a trip through location location .", "storylet_id": "249325"}], [{"original_text": "My geneology research lead me to the church my grandmother was baptized in.", "album_id": "72157623238708241", "photo_flickr_id": "4334511108", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "49865", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my geneology research lead me to the church my grandmother was baptized in .", "storylet_id": "249326"}], [{"original_text": "Near the church is the cemetery where my ancestors are buried.", "album_id": "72157623238708241", "photo_flickr_id": "4333768295", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "49865", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "near the church is the cemetery where my ancestors are buried .", "storylet_id": "249327"}], [{"original_text": "While at their graves I reflected upon the difficult lives they had in that village.", "album_id": "72157623238708241", "photo_flickr_id": "4333768349", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "49865", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while at their graves i reflected upon the difficult lives they had in that village .", "storylet_id": "249328"}], [{"original_text": "It was so emotional for me that I had to unwind at this nearby pub.", "album_id": "72157623238708241", "photo_flickr_id": "4334515420", "setting": "first-2-pick-and-tell", "worker_id": "BUJACHNHZZXENJ7", "story_id": "49865", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was so emotional for me that i had to unwind at this nearby pub .", "storylet_id": "249329"}], [{"original_text": "we took a vacation to europe this past winter", "album_id": "72157623238708241", "photo_flickr_id": "4334509464", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49866", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a vacation to europe this past winter", "storylet_id": "249330"}], [{"original_text": "we got to see all the sights ", "album_id": "72157623238708241", "photo_flickr_id": "4334511108", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49866", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to see all the sights", "storylet_id": "249331"}], [{"original_text": "we went to the top of a hill", "album_id": "72157623238708241", "photo_flickr_id": "4333768295", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49866", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went to the top of a hill", "storylet_id": "249332"}], [{"original_text": "you could see an old church. ", "album_id": "72157623238708241", "photo_flickr_id": "4333768467", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49866", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you could see an old church .", "storylet_id": "249333"}], [{"original_text": "there was no smoking in the church", "album_id": "72157623238708241", "photo_flickr_id": "4334511948", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49866", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was no smoking in the church", "storylet_id": "249334"}], [{"original_text": "When I was on vacation yesterday there was a lot of snow.", "album_id": "72157623238708241", "photo_flickr_id": "4334509464", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49867", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i was on vacation yesterday there was a lot of snow .", "storylet_id": "249335"}], [{"original_text": "The buildings were all very old and unique.", "album_id": "72157623238708241", "photo_flickr_id": "4334511108", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49867", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the buildings were all very old and unique .", "storylet_id": "249336"}], [{"original_text": "I had a great time there.", "album_id": "72157623238708241", "photo_flickr_id": "4333768295", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49867", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time there .", "storylet_id": "249337"}], [{"original_text": "The town I stayed in was small.", "album_id": "72157623238708241", "photo_flickr_id": "4333768467", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49867", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the town i stayed in was small .", "storylet_id": "249338"}], [{"original_text": "They were okay with smoking.", "album_id": "72157623238708241", "photo_flickr_id": "4334511948", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49867", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were okay with smoking .", "storylet_id": "249339"}], [{"original_text": "A perfect winter day to head out and see the town.", "album_id": "72157623238708241", "photo_flickr_id": "4333769073", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "49868", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a perfect winter day to head out and see the town .", "storylet_id": "249340"}], [{"original_text": "A beautiful church along the way, looks so peaceful against the snow.", "album_id": "72157623238708241", "photo_flickr_id": "4334511108", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "49868", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a beautiful church along the way , looks so peaceful against the snow .", "storylet_id": "249341"}], [{"original_text": "There is something about snow that makes scenery so much more beautiful", "album_id": "72157623238708241", "photo_flickr_id": "4333768295", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "49868", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is something about snow that makes scenery so much more beautiful", "storylet_id": "249342"}], [{"original_text": "Just take a look at that quiet, sleepy town.", "album_id": "72157623238708241", "photo_flickr_id": "4333768349", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "49868", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "just take a look at that quiet , sleepy town .", "storylet_id": "249343"}], [{"original_text": "And a perfect way to wrap up our winter day, a drink at the local pub. ", "album_id": "72157623238708241", "photo_flickr_id": "4334515420", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "49868", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and a perfect way to wrap up our winter day , a drink at the local pub .", "storylet_id": "249344"}], [{"original_text": "The town didn't look like much when we arrived and with all the snow cover it was easy for me to get disappointed.", "album_id": "72157623238708241", "photo_flickr_id": "4333769073", "setting": "last-3-pick-old-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49869", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the town did n't look like much when we arrived and with all the snow cover it was easy for me to get disappointed .", "storylet_id": "249345"}], [{"original_text": "As I entered the town however I was greeted by a large church at it's corner. ", "album_id": "72157623238708241", "photo_flickr_id": "4334511108", "setting": "last-3-pick-old-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49869", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as i entered the town however i was greeted by a large church at it 's corner .", "storylet_id": "249346"}], [{"original_text": "Behind the church I found a lot of very detailed gravestones, the snow almost none existent on their tops. ", "album_id": "72157623238708241", "photo_flickr_id": "4333768295", "setting": "last-3-pick-old-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49869", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "behind the church i found a lot of very detailed gravestones , the snow almost none existent on their tops .", "storylet_id": "249347"}], [{"original_text": "As I left the graveyard I couldn't help but wonder what all of the people were like.", "album_id": "72157623238708241", "photo_flickr_id": "4333768349", "setting": "last-3-pick-old-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49869", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as i left the graveyard i could n't help but wonder what all of the people were like .", "storylet_id": "249348"}], [{"original_text": "To help forget some of the depressed things I had witnessed we all hit the local pub. ", "album_id": "72157623238708241", "photo_flickr_id": "4334515420", "setting": "last-3-pick-old-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49869", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to help forget some of the depressed things i had witnessed we all hit the local pub .", "storylet_id": "249349"}], [{"original_text": "Jane looked on dispassionately. She was quite bored at this convention.", "album_id": "72157623441558787", "photo_flickr_id": "4411646952", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "49870", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] looked on dispassionately . she was quite bored at this convention .", "storylet_id": "249350"}], [{"original_text": "So many different people in so many conversations. Bob looked at Jane with interest. ", "album_id": "72157623441558787", "photo_flickr_id": "4410882573", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "49870", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so many different people in so many conversations . [male] looked at [female] with interest .", "storylet_id": "249351"}], [{"original_text": "Bozo and Jesus decided to sample a few snacks, while Allen wiped his chin. ", "album_id": "72157623441558787", "photo_flickr_id": "4411700340", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "49870", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "bozo and [male] decided to sample a few snacks , while [male] wiped his chin .", "storylet_id": "249352"}], [{"original_text": "A lumberjack nodded with approval, knowing that this convention was a great idea. ", "album_id": "72157623441558787", "photo_flickr_id": "4410946275", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "49870", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a lumberjack nodded with approval , knowing that this convention was a great idea .", "storylet_id": "249353"}], [{"original_text": "At the end, the large group agreed, wine makes it all better! ", "album_id": "72157623441558787", "photo_flickr_id": "4411720288", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "49870", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , the large group agreed , wine makes it all better !", "storylet_id": "249354"}], [{"original_text": "The view from the patio of the restaurant.", "album_id": "72157623441558787", "photo_flickr_id": "4411512804", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49871", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the view from the patio of the restaurant .", "storylet_id": "249355"}], [{"original_text": "The buffet table at the restaurant for the students gathering.", "album_id": "72157623441558787", "photo_flickr_id": "4410732463", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49871", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the buffet table at the restaurant for the students gathering .", "storylet_id": "249356"}], [{"original_text": "Some of the students sitting down to eat a well deserved dinner.", "album_id": "72157623441558787", "photo_flickr_id": "4410765023", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49871", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the students sitting down to eat a well deserved dinner .", "storylet_id": "249357"}], [{"original_text": "A couple of young men posing for a picture after dinner.", "album_id": "72157623441558787", "photo_flickr_id": "4410923961", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49871", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a couple of young men posing for a picture after dinner .", "storylet_id": "249358"}], [{"original_text": "Some of the professors catching up after eating.", "album_id": "72157623441558787", "photo_flickr_id": "4410939583", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49871", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the professors catching up after eating .", "storylet_id": "249359"}], [{"original_text": "The family gathered for our younger brother's engagement party.", "album_id": "72157623441558787", "photo_flickr_id": "4411512804", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "49872", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family gathered for our younger brother 's engagement party .", "storylet_id": "249360"}], [{"original_text": "Our brother asked the family to arrive early. He showed up before his girlfriend.", "album_id": "72157623441558787", "photo_flickr_id": "4410732463", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "49872", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our brother asked the family to arrive early . he showed up before his girlfriend .", "storylet_id": "249361"}], [{"original_text": "During dinner, our brother talked about how his girlfriend didn't know he was going to propose. ", "album_id": "72157623441558787", "photo_flickr_id": "4410765023", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "49872", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "during dinner , our brother talked about how his girlfriend did n't know he was going to propose .", "storylet_id": "249362"}], [{"original_text": "We took a picture of all the men in the family.", "album_id": "72157623441558787", "photo_flickr_id": "4410923961", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "49872", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a picture of all the men in the family .", "storylet_id": "249363"}], [{"original_text": "The girlfriends parents arrived. They sat down to talk with my brother about their future. My brother confessed that he was going to be proposing that evening. ", "album_id": "72157623441558787", "photo_flickr_id": "4410939583", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "49872", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girlfriends parents arrived . they sat down to talk with my brother about their future . my brother confessed that he was going to be proposing that evening .", "storylet_id": "249364"}], [{"original_text": "I had a great time at the dinner last weekend.", "album_id": "72157623441558787", "photo_flickr_id": "4411646952", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49873", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the dinner last weekend .", "storylet_id": "249365"}], [{"original_text": "There were a lot of my friends there.", "album_id": "72157623441558787", "photo_flickr_id": "4410882573", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49873", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of my friends there .", "storylet_id": "249366"}], [{"original_text": "We ate a lot of great food.", "album_id": "72157623441558787", "photo_flickr_id": "4411700340", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49873", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we ate a lot of great food .", "storylet_id": "249367"}], [{"original_text": "Afterward we had some drinks.", "album_id": "72157623441558787", "photo_flickr_id": "4410946275", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49873", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we had some drinks .", "storylet_id": "249368"}], [{"original_text": "We stayed there drinking for a few hours.", "album_id": "72157623441558787", "photo_flickr_id": "4411720288", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49873", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we stayed there drinking for a few hours .", "storylet_id": "249369"}], [{"original_text": "The place was gorgeous from the outside.", "album_id": "72157623441558787", "photo_flickr_id": "4411512804", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49874", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the place was gorgeous from the outside .", "storylet_id": "249370"}], [{"original_text": "And the interior looked very nice too.", "album_id": "72157623441558787", "photo_flickr_id": "4410732463", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49874", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the interior looked very nice too .", "storylet_id": "249371"}], [{"original_text": "Everyone finally arrived, it was pretty crowded.", "album_id": "72157623441558787", "photo_flickr_id": "4410765023", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49874", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone finally arrived , it was pretty crowded .", "storylet_id": "249372"}], [{"original_text": "There were certainly a lot of smiling faces!", "album_id": "72157623441558787", "photo_flickr_id": "4410923961", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49874", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were certainly a lot of smiling faces !", "storylet_id": "249373"}], [{"original_text": "And people told plenty of stories and jokes, fun was had by all.", "album_id": "72157623441558787", "photo_flickr_id": "4410939583", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49874", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and people told plenty of stories and jokes , fun was had by all .", "storylet_id": "249374"}], [{"original_text": "My family and I love going to the market downtown. One of my favorite stops is the booth that sells purses and handbags.", "album_id": "72157623151132703", "photo_flickr_id": "4301524120", "setting": "first-2-pick-and-tell", "worker_id": "DC9DJC7V4A7K0VB", "story_id": "49875", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family and i love going to the market downtown . one of my favorite stops is the booth that sells purses and handbags .", "storylet_id": "249375"}], [{"original_text": "My son loves to look at the small toys that the artists make.", "album_id": "72157623151132703", "photo_flickr_id": "4300809697", "setting": "first-2-pick-and-tell", "worker_id": "DC9DJC7V4A7K0VB", "story_id": "49875", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my son loves to look at the small toys that the artists make .", "storylet_id": "249376"}], [{"original_text": "My daughter enjoys the many stalls that contain unique dolls.", "album_id": "72157623151132703", "photo_flickr_id": "4337542680", "setting": "first-2-pick-and-tell", "worker_id": "DC9DJC7V4A7K0VB", "story_id": "49875", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my daughter enjoys the many stalls that contain unique dolls .", "storylet_id": "249377"}], [{"original_text": "My husband prefers where the hats are sold and usually buys one or two!", "album_id": "72157623151132703", "photo_flickr_id": "4438120276", "setting": "first-2-pick-and-tell", "worker_id": "DC9DJC7V4A7K0VB", "story_id": "49875", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my husband prefers where the hats are sold and usually buys one or two !", "storylet_id": "249378"}], [{"original_text": "At the end of the day, we always stop at the booth that sells shirts and get matching ones.", "album_id": "72157623151132703", "photo_flickr_id": "4456449205", "setting": "first-2-pick-and-tell", "worker_id": "DC9DJC7V4A7K0VB", "story_id": "49875", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , we always stop at the booth that sells shirts and get matching ones .", "storylet_id": "249379"}], [{"original_text": "we loved going to the shops in mexico", "album_id": "72157623151132703", "photo_flickr_id": "4438120276", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49876", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we loved going to the shops in mexico", "storylet_id": "249380"}], [{"original_text": "they had all kinds of amazing statues", "album_id": "72157623151132703", "photo_flickr_id": "4457231172", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49876", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had all kinds of amazing statues", "storylet_id": "249381"}], [{"original_text": "the artistic value alone makes these incredible", "album_id": "72157623151132703", "photo_flickr_id": "4465889388", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49876", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the artistic value alone makes these incredible", "storylet_id": "249382"}], [{"original_text": "i bought a man playing an accordian for my dad because he plays", "album_id": "72157623151132703", "photo_flickr_id": "4502579916", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49876", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i bought a man playing an accordian for my dad because he plays", "storylet_id": "249383"}], [{"original_text": "i loved these so i bought them too", "album_id": "72157623151132703", "photo_flickr_id": "4517111511", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49876", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i loved these so i bought them too", "storylet_id": "249384"}], [{"original_text": "The family decided to visit our grandparents for Christmas. We stopped by a local plaza to buy Christmas presents.", "album_id": "72157623151132703", "photo_flickr_id": "4301524120", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "49877", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family decided to visit our grandparents for christmas . we stopped by a local plaza to buy christmas presents .", "storylet_id": "249385"}], [{"original_text": "We found a few trains carved out of wood.", "album_id": "72157623151132703", "photo_flickr_id": "4300809697", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "49877", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we found a few trains carved out of wood .", "storylet_id": "249386"}], [{"original_text": "There was a vast amount of ceramic coin banks.", "album_id": "72157623151132703", "photo_flickr_id": "4337542680", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "49877", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a vast amount of ceramic coin banks .", "storylet_id": "249387"}], [{"original_text": "A small boy invited us to check out his father's hat shop.", "album_id": "72157623151132703", "photo_flickr_id": "4438120276", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "49877", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a small boy invited us to check out his father 's hat shop .", "storylet_id": "249388"}], [{"original_text": "We picked up a few blankets, shirts, and table cloths for many of the family members at the plaza. ", "album_id": "72157623151132703", "photo_flickr_id": "4456449205", "setting": "last-3-pick-old-and-tell", "worker_id": "LH59ZXJVJWLHH3Z", "story_id": "49877", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we picked up a few blankets , shirts , and table cloths for many of the family members at the plaza .", "storylet_id": "249389"}], [{"original_text": "I recently traveled abroad to do some shopping, and I started in a quaint shop with purses, hats, and other items. ", "album_id": "72157623151132703", "photo_flickr_id": "4301524120", "setting": "last-3-pick-old-and-tell", "worker_id": "78BC13GJZ237SVW", "story_id": "49878", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i recently traveled abroad to do some shopping , and i started in a quaint shop with purses , hats , and other items .", "storylet_id": "249390"}], [{"original_text": "At the next shop I saw wooden cars displayed in a bowl. ", "album_id": "72157623151132703", "photo_flickr_id": "4300809697", "setting": "last-3-pick-old-and-tell", "worker_id": "78BC13GJZ237SVW", "story_id": "49878", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at the next shop i saw wooden cars displayed in a bowl .", "storylet_id": "249391"}], [{"original_text": "I am a doll lover, so I had to stop and browse at the shop with many dolls. ", "album_id": "72157623151132703", "photo_flickr_id": "4337542680", "setting": "last-3-pick-old-and-tell", "worker_id": "78BC13GJZ237SVW", "story_id": "49878", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i am a doll lover , so i had to stop and browse at the shop with many dolls .", "storylet_id": "249392"}], [{"original_text": "Next I went to a store where a boy was selling hats with his parents. ", "album_id": "72157623151132703", "photo_flickr_id": "4438120276", "setting": "last-3-pick-old-and-tell", "worker_id": "78BC13GJZ237SVW", "story_id": "49878", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next i went to a store where a boy was selling hats with his parents .", "storylet_id": "249393"}], [{"original_text": "At my last stop I shopped at a store with many unique clothing items. ", "album_id": "72157623151132703", "photo_flickr_id": "4456449205", "setting": "last-3-pick-old-and-tell", "worker_id": "78BC13GJZ237SVW", "story_id": "49878", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at my last stop i shopped at a store with many unique clothing items .", "storylet_id": "249394"}], [{"original_text": "There was a fun looking little shop like this.", "album_id": "72157623151132703", "photo_flickr_id": "4438120276", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49879", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a fun looking little shop like this .", "storylet_id": "249395"}], [{"original_text": "Tons of interesting knick knacks filled the place.", "album_id": "72157623151132703", "photo_flickr_id": "4457231172", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49879", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "tons of interesting knick knacks filled the place .", "storylet_id": "249396"}], [{"original_text": "Including all these little figures.", "album_id": "72157623151132703", "photo_flickr_id": "4465889388", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49879", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "including all these little figures .", "storylet_id": "249397"}], [{"original_text": "And a few more interesting cultural ones.", "album_id": "72157623151132703", "photo_flickr_id": "4502579916", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49879", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and a few more interesting cultural ones .", "storylet_id": "249398"}], [{"original_text": "These two were my favorite, I nearly purchased them.", "album_id": "72157623151132703", "photo_flickr_id": "4517111511", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49879", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these two were my favorite , i nearly purchased them .", "storylet_id": "249399"}], [{"original_text": "Rick was going to give a speech today.", "album_id": "72157623454926785", "photo_flickr_id": "4417473846", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "49880", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was going to give a speech today .", "storylet_id": "249400"}], [{"original_text": "He steps up to the podium and starts to talk.", "album_id": "72157623454926785", "photo_flickr_id": "4416709093", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "49880", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he steps up to the podium and starts to talk .", "storylet_id": "249401"}], [{"original_text": "He is getting his point across about politics. ", "album_id": "72157623454926785", "photo_flickr_id": "4416709241", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "49880", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he is getting his point across about politics .", "storylet_id": "249402"}], [{"original_text": "The crowd is cheering him on as he delivers an inspirational speech.", "album_id": "72157623454926785", "photo_flickr_id": "4417474310", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "49880", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowd is cheering him on as he delivers an inspirational speech .", "storylet_id": "249403"}], [{"original_text": "After the speech a few people stop and take a picture with him.", "album_id": "72157623454926785", "photo_flickr_id": "4416709371", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "49880", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the speech a few people stop and take a picture with him .", "storylet_id": "249404"}], [{"original_text": "He was nervous; however, he entered the stage.", "album_id": "72157623454926785", "photo_flickr_id": "4417473846", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49881", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he was nervous ; however , he entered the stage .", "storylet_id": "249405"}], [{"original_text": "He began to speak and the crowd did not respond...", "album_id": "72157623454926785", "photo_flickr_id": "4416709231", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49881", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he began to speak and the crowd did not respond ...", "storylet_id": "249406"}], [{"original_text": "Until, he spoke about welfare.", "album_id": "72157623454926785", "photo_flickr_id": "4417474294", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49881", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "until , he spoke about welfare .", "storylet_id": "249407"}], [{"original_text": "A smile took over the crowd and the candidate...", "album_id": "72157623454926785", "photo_flickr_id": "4417474310", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49881", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a smile took over the crowd and the candidate ...", "storylet_id": "249408"}], [{"original_text": "And, he ended the day with his friends and a step up on his competitors.", "album_id": "72157623454926785", "photo_flickr_id": "4416709365", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49881", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , he ended the day with his friends and a step up on his competitors .", "storylet_id": "249409"}], [{"original_text": "The speaker of the evening has taken the mic and will start the meeting. ", "album_id": "72157623454926785", "photo_flickr_id": "4417473846", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49882", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the speaker of the evening has taken the mic and will start the meeting .", "storylet_id": "249410"}], [{"original_text": "He will start a slid on the screen for everyone to see. ", "album_id": "72157623454926785", "photo_flickr_id": "4416709093", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49882", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he will start a slid on the screen for everyone to see .", "storylet_id": "249411"}], [{"original_text": "Making a little joke to loosen everyone up. ", "album_id": "72157623454926785", "photo_flickr_id": "4416709241", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49882", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "making a little joke to loosen everyone up .", "storylet_id": "249412"}], [{"original_text": "Now he will end the meeting with a closing. ", "album_id": "72157623454926785", "photo_flickr_id": "4417474310", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49882", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now he will end the meeting with a closing .", "storylet_id": "249413"}], [{"original_text": "Corporate staff decided to take a picture together. ", "album_id": "72157623454926785", "photo_flickr_id": "4416709371", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49882", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "corporate staff decided to take a picture together .", "storylet_id": "249414"}], [{"original_text": "The chairman at the podium.", "album_id": "72157623454926785", "photo_flickr_id": "4417473846", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "49883", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the chairman at the podium .", "storylet_id": "249415"}], [{"original_text": "He had a big screen to show earnings graphics.", "album_id": "72157623454926785", "photo_flickr_id": "4416709093", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "49883", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he had a big screen to show earnings graphics .", "storylet_id": "249416"}], [{"original_text": "He talked for almost two hours!", "album_id": "72157623454926785", "photo_flickr_id": "4416709241", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "49883", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he talked for almost two hours !", "storylet_id": "249417"}], [{"original_text": "Finnaly: a smile and the end of the talk.", "album_id": "72157623454926785", "photo_flickr_id": "4417474310", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "49883", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finnaly : a smile and the end of the talk .", "storylet_id": "249418"}], [{"original_text": "This is the entire team.", "album_id": "72157623454926785", "photo_flickr_id": "4416709371", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "49883", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the entire team .", "storylet_id": "249419"}], [{"original_text": "The guy was giving a speech", "album_id": "72157623454926785", "photo_flickr_id": "4417473846", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49884", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guy was giving a speech", "storylet_id": "249420"}], [{"original_text": "by a large wood podium", "album_id": "72157623454926785", "photo_flickr_id": "4416709093", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49884", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "by a large wood podium", "storylet_id": "249421"}], [{"original_text": "and it was going well.", "album_id": "72157623454926785", "photo_flickr_id": "4416709241", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49884", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and it was going well .", "storylet_id": "249422"}], [{"original_text": "He was happy", "album_id": "72157623454926785", "photo_flickr_id": "4417474310", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49884", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was happy", "storylet_id": "249423"}], [{"original_text": "and took many photos after.", "album_id": "72157623454926785", "photo_flickr_id": "4416709371", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49884", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and took many photos after .", "storylet_id": "249424"}], [{"original_text": "A forum of white men decided to get together in business suits and talk. ", "album_id": "72157623578467254", "photo_flickr_id": "4416287383", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "49885", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a forum of white men decided to get together in business suits and talk .", "storylet_id": "249425"}], [{"original_text": "They allowed a few of their white male counterparts to stand at podiums in front of flags, and talk and talk. ", "album_id": "72157623578467254", "photo_flickr_id": "4417048906", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "49885", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they allowed a few of their white male counterparts to stand at podiums in front of flags , and talk and talk .", "storylet_id": "249426"}], [{"original_text": "Sometimes they would stare in the middle distance, remembering their humanity. ", "album_id": "72157623578467254", "photo_flickr_id": "4416288505", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "49885", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sometimes they would stare in the middle distance , remembering their humanity .", "storylet_id": "249427"}], [{"original_text": "The commentator would come back and introduce the next white guy to talk. He also talked about his cool flags. ", "album_id": "72157623578467254", "photo_flickr_id": "4417051248", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "49885", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the commentator would come back and introduce the next white guy to talk . he also talked about his cool flags .", "storylet_id": "249428"}], [{"original_text": "Finally the last white man decided to chat, and the forum of white guys was dismissed. ", "album_id": "72157623578467254", "photo_flickr_id": "4416290437", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "49885", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the last white man decided to chat , and the forum of white guys was dismissed .", "storylet_id": "249429"}], [{"original_text": "The delegates walking towards the annual conference.", "album_id": "72157623578467254", "photo_flickr_id": "4416283879", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49886", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the delegates walking towards the annual conference .", "storylet_id": "249430"}], [{"original_text": "The delegates about to enter the conference and get to work.", "album_id": "72157623578467254", "photo_flickr_id": "4417050434", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49886", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the delegates about to enter the conference and get to work .", "storylet_id": "249431"}], [{"original_text": "Some of the crowd needed translators to understand all of the delegates.", "album_id": "72157623578467254", "photo_flickr_id": "4417051542", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49886", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the crowd needed translators to understand all of the delegates .", "storylet_id": "249432"}], [{"original_text": "The delegate unveil the new peace plan.", "album_id": "72157623578467254", "photo_flickr_id": "4416285829", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49886", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the delegate unveil the new peace plan .", "storylet_id": "249433"}], [{"original_text": "The delegates walking away after a successful negotiation.", "album_id": "72157623578467254", "photo_flickr_id": "4421516285", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49886", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the delegates walking away after a successful negotiation .", "storylet_id": "249434"}], [{"original_text": "All of the owners arrived at the same time.", "album_id": "72157623578467254", "photo_flickr_id": "4416283879", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "49887", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all of the owners arrived at the same time .", "storylet_id": "249435"}], [{"original_text": "This group was very affluent and money-oriented.", "album_id": "72157623578467254", "photo_flickr_id": "4417050434", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "49887", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this group was very affluent and money-oriented .", "storylet_id": "249436"}], [{"original_text": "Everyone was given headphones to better enjoy the program.", "album_id": "72157623578467254", "photo_flickr_id": "4417051542", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "49887", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was given headphones to better enjoy the program .", "storylet_id": "249437"}], [{"original_text": "The show started 2 minutes early and the hosts revealed the breakdown of the new system.", "album_id": "72157623578467254", "photo_flickr_id": "4416285829", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "49887", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the show started 2 minutes early and the hosts revealed the breakdown of the new system .", "storylet_id": "249438"}], [{"original_text": "The discussions afterward were focused on bringing in the new clientele.", "album_id": "72157623578467254", "photo_flickr_id": "4421516285", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "49887", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the discussions afterward were focused on bringing in the new clientele .", "storylet_id": "249439"}], [{"original_text": "The representatives all arrived for the conference.", "album_id": "72157623578467254", "photo_flickr_id": "4416283879", "setting": "last-3-pick-old-and-tell", "worker_id": "HNWMDIXHD4DW4YS", "story_id": "49888", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the representatives all arrived for the conference .", "storylet_id": "249440"}], [{"original_text": "There were people from numerous countries.", "album_id": "72157623578467254", "photo_flickr_id": "4417050434", "setting": "last-3-pick-old-and-tell", "worker_id": "HNWMDIXHD4DW4YS", "story_id": "49888", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were people from numerous countries .", "storylet_id": "249441"}], [{"original_text": "They listened to presentations from many speakers.", "album_id": "72157623578467254", "photo_flickr_id": "4417051542", "setting": "last-3-pick-old-and-tell", "worker_id": "HNWMDIXHD4DW4YS", "story_id": "49888", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they listened to presentations from many speakers .", "storylet_id": "249442"}], [{"original_text": "Many new proposals were presented.", "album_id": "72157623578467254", "photo_flickr_id": "4416285829", "setting": "last-3-pick-old-and-tell", "worker_id": "HNWMDIXHD4DW4YS", "story_id": "49888", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many new proposals were presented .", "storylet_id": "249443"}], [{"original_text": "When it was over they all returned to their home countries.", "album_id": "72157623578467254", "photo_flickr_id": "4421516285", "setting": "last-3-pick-old-and-tell", "worker_id": "HNWMDIXHD4DW4YS", "story_id": "49888", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when it was over they all returned to their home countries .", "storylet_id": "249444"}], [{"original_text": "I snapped this photo of the dignitaries making their way toward an import conference. ", "album_id": "72157623578467254", "photo_flickr_id": "4416287383", "setting": "last-3-pick-old-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49889", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i snapped this photo of the dignitaries making their way toward an import conference .", "storylet_id": "249445"}], [{"original_text": "The first speaker takes a look at his notes as he is addressing the crowed.", "album_id": "72157623578467254", "photo_flickr_id": "4417048906", "setting": "last-3-pick-old-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49889", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first speaker takes a look at his notes as he is addressing the crowed .", "storylet_id": "249446"}], [{"original_text": "They were not afraid of answering the audiences questions as the conference went along. ", "album_id": "72157623578467254", "photo_flickr_id": "4416288505", "setting": "last-3-pick-old-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49889", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were not afraid of answering the audiences questions as the conference went along .", "storylet_id": "249447"}], [{"original_text": "As another dignitary finished speaking steward shared a laugh with the crowd. ", "album_id": "72157623578467254", "photo_flickr_id": "4417051248", "setting": "last-3-pick-old-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49889", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as another dignitary finished speaking steward shared a laugh with the crowd .", "storylet_id": "249448"}], [{"original_text": "An older speaker took command of the crowd shortly after, calming people with his booming voice. ", "album_id": "72157623578467254", "photo_flickr_id": "4416290437", "setting": "last-3-pick-old-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49889", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "an older speaker took command of the crowd shortly after , calming people with his booming voice .", "storylet_id": "249449"}], [{"original_text": "One of three signs showing where the battle was fought.", "album_id": "72157623581011328", "photo_flickr_id": "4417331701", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "49890", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one of three signs showing where the battle was fought .", "storylet_id": "249450"}], [{"original_text": "Here's another one. It's creepy out here even for it being daylight.", "album_id": "72157623581011328", "photo_flickr_id": "4417331961", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "49890", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's another one . it 's creepy out here even for it being daylight .", "storylet_id": "249451"}], [{"original_text": "May have to come ghost hunting out here some night. ", "album_id": "72157623581011328", "photo_flickr_id": "4417332479", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "49890", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] have to come ghost hunting out here some night .", "storylet_id": "249452"}], [{"original_text": "Another sign that gives more detail about the battle.", "album_id": "72157623581011328", "photo_flickr_id": "4417334169", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "49890", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another sign that gives more detail about the battle .", "storylet_id": "249453"}], [{"original_text": "Just waiting for something to come up out of the water.", "album_id": "72157623581011328", "photo_flickr_id": "4418100124", "setting": "first-2-pick-and-tell", "worker_id": "KTG69G43FLP3XC2", "story_id": "49890", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "just waiting for something to come up out of the water .", "storylet_id": "249454"}], [{"original_text": "They walked by the dirty looking river.", "album_id": "72157623581011328", "photo_flickr_id": "4418100124", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49891", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they walked by the dirty looking river .", "storylet_id": "249455"}], [{"original_text": "Finally they found the sign directing them to the historic battlefield. ", "album_id": "72157623581011328", "photo_flickr_id": "4418097606", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49891", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "finally they found the sign directing them to the historic battlefield .", "storylet_id": "249456"}], [{"original_text": "After walking for awhile they found it.", "album_id": "72157623581011328", "photo_flickr_id": "4417331701", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49891", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after walking for awhile they found it .", "storylet_id": "249457"}], [{"original_text": "There was also an informational sign so that they could read about.", "album_id": "72157623581011328", "photo_flickr_id": "4417334169", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49891", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also an informational sign so that they could read about .", "storylet_id": "249458"}], [{"original_text": "The creepiest part was the cemetery where many of the dead were buried.", "album_id": "72157623581011328", "photo_flickr_id": "4417333021", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "49891", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the creepiest part was the cemetery where many of the dead were buried .", "storylet_id": "249459"}], [{"original_text": "Historic site of where battle in 1862 had taken place. ", "album_id": "72157623581011328", "photo_flickr_id": "4417331701", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49892", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "historic site of where battle in 1862 had taken place .", "storylet_id": "249460"}], [{"original_text": "This is an old worn out sign of the historic site of Davis Bridge Battlefield. ", "album_id": "72157623581011328", "photo_flickr_id": "4417331961", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49892", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is an old worn out sign of the historic site of location location location .", "storylet_id": "249461"}], [{"original_text": "Long lonely path leading to the historic site. ", "album_id": "72157623581011328", "photo_flickr_id": "4417332479", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49892", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "long lonely path leading to the historic site .", "storylet_id": "249462"}], [{"original_text": "Here is an information sign about the battlefield and what had taken place. ", "album_id": "72157623581011328", "photo_flickr_id": "4417334169", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49892", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is an information sign about the battlefield and what had taken place .", "storylet_id": "249463"}], [{"original_text": "The battlefield is surrounded this pond of water. ", "album_id": "72157623581011328", "photo_flickr_id": "4418100124", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "49892", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the battlefield is surrounded this pond of water .", "storylet_id": "249464"}], [{"original_text": "A historic battlefield we are going to walk on.", "album_id": "72157623581011328", "photo_flickr_id": "4417331701", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49893", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a historic battlefield we are going to walk on .", "storylet_id": "249465"}], [{"original_text": "Another sign showing where the battle took place.", "album_id": "72157623581011328", "photo_flickr_id": "4417331961", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49893", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "another sign showing where the battle took place .", "storylet_id": "249466"}], [{"original_text": "Walking along the trail of a famous battle sight.", "album_id": "72157623581011328", "photo_flickr_id": "4417332479", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49893", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "walking along the trail of a famous battle sight .", "storylet_id": "249467"}], [{"original_text": "A monument to the famous battle.", "album_id": "72157623581011328", "photo_flickr_id": "4417334169", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49893", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a monument to the famous battle .", "storylet_id": "249468"}], [{"original_text": "The creek runs though a famous battle sight.", "album_id": "72157623581011328", "photo_flickr_id": "4418100124", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49893", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the creek runs though a famous battle sight .", "storylet_id": "249469"}], [{"original_text": "The water was clear.", "album_id": "72157623581011328", "photo_flickr_id": "4418100124", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49894", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the water was clear .", "storylet_id": "249470"}], [{"original_text": "The historic site was near", "album_id": "72157623581011328", "photo_flickr_id": "4418097606", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49894", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the historic site was near", "storylet_id": "249471"}], [{"original_text": "and the sign was there", "album_id": "72157623581011328", "photo_flickr_id": "4417331701", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49894", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the sign was there", "storylet_id": "249472"}], [{"original_text": "beside the description sign", "album_id": "72157623581011328", "photo_flickr_id": "4417334169", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49894", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "beside the description sign", "storylet_id": "249473"}], [{"original_text": "that told about the area.", "album_id": "72157623581011328", "photo_flickr_id": "4417333021", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49894", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that told about the area .", "storylet_id": "249474"}], [{"original_text": "Today was the day.", "album_id": "72157623047955989", "photo_flickr_id": "4259351320", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49895", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day .", "storylet_id": "249475"}], [{"original_text": "We finally met.", "album_id": "72157623047955989", "photo_flickr_id": "4258596473", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49895", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we finally met .", "storylet_id": "249476"}], [{"original_text": "We exchanged ideas.", "album_id": "72157623047955989", "photo_flickr_id": "4258596007", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49895", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we exchanged ideas .", "storylet_id": "249477"}], [{"original_text": "Left the class room behind.", "album_id": "72157623047955989", "photo_flickr_id": "4259351194", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49895", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "left the class room behind .", "storylet_id": "249478"}], [{"original_text": "And got out in the real world.", "album_id": "72157623047955989", "photo_flickr_id": "4258595899", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49895", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and got out in the real world .", "storylet_id": "249479"}], [{"original_text": "US troops are dispatched to Afghanistan last month. ", "album_id": "72157623047955989", "photo_flickr_id": "4259351756", "setting": "first-2-pick-and-tell", "worker_id": "QO1IMFV8LBBRSFS", "story_id": "49896", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location troops are dispatched to location last month .", "storylet_id": "249480"}], [{"original_text": "Solders and snipers are vigilantly performing their duties. ", "album_id": "72157623047955989", "photo_flickr_id": "4259351320", "setting": "first-2-pick-and-tell", "worker_id": "QO1IMFV8LBBRSFS", "story_id": "49896", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "solders and snipers are vigilantly performing their duties .", "storylet_id": "249481"}], [{"original_text": "They are also meeting the local leaders. ", "album_id": "72157623047955989", "photo_flickr_id": "4258596473", "setting": "first-2-pick-and-tell", "worker_id": "QO1IMFV8LBBRSFS", "story_id": "49896", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they are also meeting the local leaders .", "storylet_id": "249482"}], [{"original_text": "Some of the female soldiers visit local girls' school. ", "album_id": "72157623047955989", "photo_flickr_id": "4258596007", "setting": "first-2-pick-and-tell", "worker_id": "QO1IMFV8LBBRSFS", "story_id": "49896", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the female soldiers visit local girls ' school .", "storylet_id": "249483"}], [{"original_text": "The soldiers even attend the meetings of local people in different villages. ", "album_id": "72157623047955989", "photo_flickr_id": "4259351484", "setting": "first-2-pick-and-tell", "worker_id": "QO1IMFV8LBBRSFS", "story_id": "49896", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the soldiers even attend the meetings of local people in different villages .", "storylet_id": "249484"}], [{"original_text": "This soldier is ion the lookout for signs of trouble.", "album_id": "72157623047955989", "photo_flickr_id": "4259351320", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49897", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this soldier is ion the lookout for signs of trouble .", "storylet_id": "249485"}], [{"original_text": "The soldiers met with local people to discuss their problems and concerns.", "album_id": "72157623047955989", "photo_flickr_id": "4258596473", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49897", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the soldiers met with local people to discuss their problems and concerns .", "storylet_id": "249486"}], [{"original_text": "The female soldier enjoyed meeting the little girls of the village.", "album_id": "72157623047955989", "photo_flickr_id": "4258596007", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49897", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the female soldier enjoyed meeting the little girls of the village .", "storylet_id": "249487"}], [{"original_text": "A brand new school was constructed for the students of the village.", "album_id": "72157623047955989", "photo_flickr_id": "4259351194", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49897", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a brand new school was constructed for the students of the village .", "storylet_id": "249488"}], [{"original_text": "Female guards were careful to watch over the little schoolgirls and keep them safe from attackers.", "album_id": "72157623047955989", "photo_flickr_id": "4258595899", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49897", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "female guards were careful to watch over the little schoolgirls and keep them safe from attackers .", "storylet_id": "249489"}], [{"original_text": "Here we are in Afghanistan. To help the families.", "album_id": "72157623047955989", "photo_flickr_id": "4259351320", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49898", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are in location . to help the families .", "storylet_id": "249490"}], [{"original_text": "We talk with the mayor.", "album_id": "72157623047955989", "photo_flickr_id": "4258596473", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49898", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we talk with the mayor .", "storylet_id": "249491"}], [{"original_text": "These are the locals. They are friendly.", "album_id": "72157623047955989", "photo_flickr_id": "4258596007", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49898", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these are the locals . they are friendly .", "storylet_id": "249492"}], [{"original_text": "this is the school they get to go to right now.", "album_id": "72157623047955989", "photo_flickr_id": "4259351194", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49898", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the school they get to go to right now .", "storylet_id": "249493"}], [{"original_text": "A couple of the local children going into the tents for school.", "album_id": "72157623047955989", "photo_flickr_id": "4258595899", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49898", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a couple of the local children going into the tents for school .", "storylet_id": "249494"}], [{"original_text": "The soldier was in the military vehicle.", "album_id": "72157623047955989", "photo_flickr_id": "4259351320", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49899", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the soldier was in the military vehicle .", "storylet_id": "249495"}], [{"original_text": "The soldier was explaining something to the man.", "album_id": "72157623047955989", "photo_flickr_id": "4258596473", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49899", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the soldier was explaining something to the man .", "storylet_id": "249496"}], [{"original_text": "The soldier was in the picture with the children.", "album_id": "72157623047955989", "photo_flickr_id": "4258596007", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49899", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the soldier was in the picture with the children .", "storylet_id": "249497"}], [{"original_text": "The empty classroom has classic wooden desks.", "album_id": "72157623047955989", "photo_flickr_id": "4259351194", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49899", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the empty classroom has classic wooden desks .", "storylet_id": "249498"}], [{"original_text": "The were various camps set up.", "album_id": "72157623047955989", "photo_flickr_id": "4258595899", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "49899", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the were various camps set up .", "storylet_id": "249499"}], [{"original_text": "This is my grandma. ", "album_id": "72157623051586505", "photo_flickr_id": "4260866502", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49900", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my grandma .", "storylet_id": "249500"}], [{"original_text": "She has people that come all over to see her. ", "album_id": "72157623051586505", "photo_flickr_id": "4260870488", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49900", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she has people that come all over to see her .", "storylet_id": "249501"}], [{"original_text": "She cooks and performs for many people every week. ", "album_id": "72157623051586505", "photo_flickr_id": "4260116515", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49900", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she cooks and performs for many people every week .", "storylet_id": "249502"}], [{"original_text": "This is Martha confessing her love of spaghetti. She screams for 20 minutes straight. It's considered great luck. ", "album_id": "72157623051586505", "photo_flickr_id": "4260872174", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49900", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is [female] confessing her love of spaghetti . she screams for 20 minutes straight . it 's considered great luck .", "storylet_id": "249503"}], [{"original_text": "After all the screaming we eat! It's amazing. ", "album_id": "72157623051586505", "photo_flickr_id": "4260119317", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49900", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after all the screaming we eat ! it 's amazing .", "storylet_id": "249504"}], [{"original_text": "The Japanese cultural festival featured a variety of cultural demonstrations.", "album_id": "72157623051586505", "photo_flickr_id": "4260870488", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49901", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the japanese cultural festival featured a variety of cultural demonstrations .", "storylet_id": "249505"}], [{"original_text": "The Koto demonstration was very informative.", "album_id": "72157623051586505", "photo_flickr_id": "4260114277", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49901", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the koto demonstration was very informative .", "storylet_id": "249506"}], [{"original_text": "This demonstration showed men smashing fruits in buckets.", "album_id": "72157623051586505", "photo_flickr_id": "4260114777", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49901", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this demonstration showed men smashing fruits in buckets .", "storylet_id": "249507"}], [{"original_text": "This woman did intricate floral arrangements. Her demo was very interesting.", "album_id": "72157623051586505", "photo_flickr_id": "4260118027", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49901", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this woman did intricate floral arrangements . her demo was very interesting .", "storylet_id": "249508"}], [{"original_text": "We finished our tour by watching some Japanese craftsman make pottery.", "album_id": "72157623051586505", "photo_flickr_id": "4260873766", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "49901", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finished our tour by watching some japanese craftsman make pottery .", "storylet_id": "249509"}], [{"original_text": "The people were attending an exhibit of Japanese arts and cooking.", "album_id": "72157623051586505", "photo_flickr_id": "4260870488", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49902", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people were attending an exhibit of japanese arts and cooking .", "storylet_id": "249510"}], [{"original_text": "One of the classical Japanese musical instruments is a stringed instrument called a Koto.", "album_id": "72157623051586505", "photo_flickr_id": "4260114277", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49902", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of the classical japanese musical instruments is a stringed instrument called a koto .", "storylet_id": "249511"}], [{"original_text": "The boys demonstrated more crafts.", "album_id": "72157623051586505", "photo_flickr_id": "4260114777", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49902", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boys demonstrated more crafts .", "storylet_id": "249512"}], [{"original_text": "The spectators were treated to a lesson in flower arranging.", "album_id": "72157623051586505", "photo_flickr_id": "4260118027", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49902", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the spectators were treated to a lesson in flower arranging .", "storylet_id": "249513"}], [{"original_text": "Some of the participants received a hand-on cooking lesson.", "album_id": "72157623051586505", "photo_flickr_id": "4260873766", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "49902", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the participants received a hand-on cooking lesson .", "storylet_id": "249514"}], [{"original_text": "It was Japanese culture day at school today! Here's someone using Asian techniques on plants. ", "album_id": "72157623051586505", "photo_flickr_id": "4260866502", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49903", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was japanese culture day at school today ! here 's someone using asian techniques on plants .", "storylet_id": "249515"}], [{"original_text": "A lot of people came!", "album_id": "72157623051586505", "photo_flickr_id": "4260870488", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49903", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of people came !", "storylet_id": "249516"}], [{"original_text": "People even brought their kids!", "album_id": "72157623051586505", "photo_flickr_id": "4260116515", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49903", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people even brought their kids !", "storylet_id": "249517"}], [{"original_text": "There was an Enka singer,", "album_id": "72157623051586505", "photo_flickr_id": "4260872174", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49903", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was an enka singer ,", "storylet_id": "249518"}], [{"original_text": "and even some Japanese sweets!", "album_id": "72157623051586505", "photo_flickr_id": "4260119317", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49903", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and even some japanese sweets !", "storylet_id": "249519"}], [{"original_text": "The people were volunteering", "album_id": "72157623051586505", "photo_flickr_id": "4260870488", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49904", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people were volunteering", "storylet_id": "249520"}], [{"original_text": "when they read the article.", "album_id": "72157623051586505", "photo_flickr_id": "4260114277", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49904", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when they read the article .", "storylet_id": "249521"}], [{"original_text": "Then they chopped wood", "album_id": "72157623051586505", "photo_flickr_id": "4260114777", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49904", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they chopped wood", "storylet_id": "249522"}], [{"original_text": "and saw flowers", "album_id": "72157623051586505", "photo_flickr_id": "4260118027", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49904", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and saw flowers", "storylet_id": "249523"}], [{"original_text": "before talking at the table.", "album_id": "72157623051586505", "photo_flickr_id": "4260873766", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49904", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before talking at the table .", "storylet_id": "249524"}], [{"original_text": "I went on vacation last year.", "album_id": "72157623173423580", "photo_flickr_id": "4259628638", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49905", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on vacation last year .", "storylet_id": "249525"}], [{"original_text": "IT was a beautiful place.", "album_id": "72157623173423580", "photo_flickr_id": "4258873271", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49905", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a beautiful place .", "storylet_id": "249526"}], [{"original_text": "There were a lot of flower stores.", "album_id": "72157623173423580", "photo_flickr_id": "4258873695", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49905", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of flower stores .", "storylet_id": "249527"}], [{"original_text": "The buildings were very old.", "album_id": "72157623173423580", "photo_flickr_id": "4258874059", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49905", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the buildings were very old .", "storylet_id": "249528"}], [{"original_text": "There were a lot of other tourists there too.", "album_id": "72157623173423580", "photo_flickr_id": "4259630164", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49905", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were a lot of other tourists there too .", "storylet_id": "249529"}], [{"original_text": "The lighthouse was tall and white.", "album_id": "72157623173423580", "photo_flickr_id": "4259627880", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49906", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lighthouse was tall and white .", "storylet_id": "249530"}], [{"original_text": "There were a lot of people gathered in town.", "album_id": "72157623173423580", "photo_flickr_id": "4258872493", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49906", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people gathered in town .", "storylet_id": "249531"}], [{"original_text": "Some men were showing demonstrations.", "album_id": "72157623173423580", "photo_flickr_id": "4259628638", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49906", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some men were showing demonstrations .", "storylet_id": "249532"}], [{"original_text": "Some of the areas were really interesting to walk through.", "album_id": "72157623173423580", "photo_flickr_id": "4258873271", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49906", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the areas were really interesting to walk through .", "storylet_id": "249533"}], [{"original_text": "In all the stone and gray around, it was nice to see some color.", "album_id": "72157623173423580", "photo_flickr_id": "4258873695", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49906", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in all the stone and gray around , it was nice to see some color .", "storylet_id": "249534"}], [{"original_text": "Here in Tokyo to visit some friends.", "album_id": "72157623173423580", "photo_flickr_id": "4259628638", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49907", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here in location to visit some friends .", "storylet_id": "249535"}], [{"original_text": "Exploring the world today. What a wonderful place.", "album_id": "72157623173423580", "photo_flickr_id": "4258873271", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49907", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "exploring the world today . what a wonderful place .", "storylet_id": "249536"}], [{"original_text": "Look at all the flowers and the nice buildings.", "album_id": "72157623173423580", "photo_flickr_id": "4258873695", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49907", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at all the flowers and the nice buildings .", "storylet_id": "249537"}], [{"original_text": "This looks like an old church.", "album_id": "72157623173423580", "photo_flickr_id": "4258874059", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49907", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this looks like an old church .", "storylet_id": "249538"}], [{"original_text": "Can't leave without going to the local swap meet.", "album_id": "72157623173423580", "photo_flickr_id": "4259630164", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49907", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ca n't leave without going to the local swap meet .", "storylet_id": "249539"}], [{"original_text": "The street vendor is selling some snacks.", "album_id": "72157623173423580", "photo_flickr_id": "4259628638", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49908", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the street vendor is selling some snacks .", "storylet_id": "249540"}], [{"original_text": "Taking a picture of the building.", "album_id": "72157623173423580", "photo_flickr_id": "4258873271", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49908", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "taking a picture of the building .", "storylet_id": "249541"}], [{"original_text": "Pretty flowers in a large vase.", "album_id": "72157623173423580", "photo_flickr_id": "4258873695", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49908", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "pretty flowers in a large vase .", "storylet_id": "249542"}], [{"original_text": "Large church in the background.", "album_id": "72157623173423580", "photo_flickr_id": "4258874059", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49908", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "large church in the background .", "storylet_id": "249543"}], [{"original_text": "Walking in the open air market.", "album_id": "72157623173423580", "photo_flickr_id": "4259630164", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "49908", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "walking in the open air market .", "storylet_id": "249544"}], [{"original_text": "The guy was looking at the table", "album_id": "72157623173423580", "photo_flickr_id": "4259628638", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49909", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guy was looking at the table", "storylet_id": "249545"}], [{"original_text": "where there were things near.", "album_id": "72157623173423580", "photo_flickr_id": "4258873271", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49909", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "where there were things near .", "storylet_id": "249546"}], [{"original_text": "There were flowers outside", "album_id": "72157623173423580", "photo_flickr_id": "4258873695", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49909", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were flowers outside", "storylet_id": "249547"}], [{"original_text": "near the big building", "album_id": "72157623173423580", "photo_flickr_id": "4258874059", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49909", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "near the big building", "storylet_id": "249548"}], [{"original_text": "with all the people nearby.", "album_id": "72157623173423580", "photo_flickr_id": "4259630164", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49909", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with all the people nearby .", "storylet_id": "249549"}], [{"original_text": "Steve gabbing away while participating in the pledge drive.", "album_id": "72157623596916528", "photo_flickr_id": "4423335581", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49910", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] gabbing away while participating in the pledge drive .", "storylet_id": "249550"}], [{"original_text": "Jim didn't say much even though he had the microphone the whole time.", "album_id": "72157623596916528", "photo_flickr_id": "4423337435", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49910", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] did n't say much even though he had the microphone the whole time .", "storylet_id": "249551"}], [{"original_text": "Some of the operators in the phone center.", "album_id": "72157623596916528", "photo_flickr_id": "4423338967", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49910", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the operators in the phone center .", "storylet_id": "249552"}], [{"original_text": "Tom coordinated all of the volunteer call takers.", "album_id": "72157623596916528", "photo_flickr_id": "4423344921", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49910", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] coordinated all of the volunteer call takers .", "storylet_id": "249553"}], [{"original_text": "Dan giving the card board cutout of Jim a hug.", "album_id": "72157623596916528", "photo_flickr_id": "4424116618", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49910", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] giving the card board cutout of [male] a hug .", "storylet_id": "249554"}], [{"original_text": "we had a blast at the radio station", "album_id": "72157623596916528", "photo_flickr_id": "4424112242", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49911", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a blast at the radio station", "storylet_id": "249555"}], [{"original_text": "there was so much going on", "album_id": "72157623596916528", "photo_flickr_id": "4423348787", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49911", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was so much going on", "storylet_id": "249556"}], [{"original_text": "they had a cardboard cut out of the program director", "album_id": "72157623596916528", "photo_flickr_id": "4424114900", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49911", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a cardboard cut out of the program director", "storylet_id": "249557"}], [{"original_text": "many jokes took place because of it", "album_id": "72157623596916528", "photo_flickr_id": "4424116114", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49911", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many jokes took place because of it", "storylet_id": "249558"}], [{"original_text": "many photo ops as well", "album_id": "72157623596916528", "photo_flickr_id": "4424116618", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49911", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many photo ops as well", "storylet_id": "249559"}], [{"original_text": "My first day as a DJ at a radio station. ", "album_id": "72157623596916528", "photo_flickr_id": "4423335581", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49912", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my first day as a dj at a radio station .", "storylet_id": "249560"}], [{"original_text": "That's me in the yellow. That's a cutout of me at the mic. ", "album_id": "72157623596916528", "photo_flickr_id": "4423337435", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49912", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that 's me in the yellow . that 's a cutout of me at the mic .", "storylet_id": "249561"}], [{"original_text": "Everyone in the booth was crazy. We all talked so loud trying to be heard over the next guy. ", "album_id": "72157623596916528", "photo_flickr_id": "4423338967", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49912", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone in the booth was crazy . we all talked so loud trying to be heard over the next guy .", "storylet_id": "249562"}], [{"original_text": "It was so unorganized but I got a rush from it! ", "album_id": "72157623596916528", "photo_flickr_id": "4423344921", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49912", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was so unorganized but i got a rush from it !", "storylet_id": "249563"}], [{"original_text": "Bill my station manager hugged my cutout and said he wanted to take it home. I thought it was odd but I let him. ", "album_id": "72157623596916528", "photo_flickr_id": "4424116618", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49912", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] my station manager hugged my cutout and said he wanted to take it home . i thought it was odd but i let him .", "storylet_id": "249564"}], [{"original_text": "I went to the radio show yesterday.", "album_id": "72157623596916528", "photo_flickr_id": "4423335581", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49913", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the radio show yesterday .", "storylet_id": "249565"}], [{"original_text": "There were a lot of people there.", "album_id": "72157623596916528", "photo_flickr_id": "4423337435", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49913", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people there .", "storylet_id": "249566"}], [{"original_text": "I had a great time.", "album_id": "72157623596916528", "photo_flickr_id": "4423338967", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49913", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time .", "storylet_id": "249567"}], [{"original_text": "There were many employees monitoring the show.", "album_id": "72157623596916528", "photo_flickr_id": "4423344921", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49913", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many employees monitoring the show .", "storylet_id": "249568"}], [{"original_text": "I hope I can go on the radio again soon.", "album_id": "72157623596916528", "photo_flickr_id": "4424116618", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49913", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope i can go on the radio again soon .", "storylet_id": "249569"}], [{"original_text": "The radio caster talks with the employee in the other room.", "album_id": "72157623596916528", "photo_flickr_id": "4423335581", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49914", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the radio caster talks with the employee in the other room .", "storylet_id": "249570"}], [{"original_text": "The employee is focused on his work.", "album_id": "72157623596916528", "photo_flickr_id": "4423337435", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49914", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the employee is focused on his work .", "storylet_id": "249571"}], [{"original_text": "The other employees are busy handling phone calls and tasks.", "album_id": "72157623596916528", "photo_flickr_id": "4423338967", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49914", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the other employees are busy handling phone calls and tasks .", "storylet_id": "249572"}], [{"original_text": "They look at pieces of paper for notes.", "album_id": "72157623596916528", "photo_flickr_id": "4423344921", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49914", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they look at pieces of paper for notes .", "storylet_id": "249573"}], [{"original_text": "Lastly, this employee loved this figure very much.", "album_id": "72157623596916528", "photo_flickr_id": "4424116618", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "49914", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , this employee loved this figure very much .", "storylet_id": "249574"}], [{"original_text": "Henry was a high school counselor. ", "album_id": "72157623192175390", "photo_flickr_id": "4267437526", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49915", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was a high school counselor .", "storylet_id": "249575"}], [{"original_text": "He was the favorite one of the students he encountered.", "album_id": "72157623192175390", "photo_flickr_id": "4267438628", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49915", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was the favorite one of the students he encountered .", "storylet_id": "249576"}], [{"original_text": "Because he was always there to help.", "album_id": "72157623192175390", "photo_flickr_id": "4266688917", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49915", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "because he was always there to help .", "storylet_id": "249577"}], [{"original_text": "He even took time to go to the computer room regularly to get in touch with the students.", "album_id": "72157623192175390", "photo_flickr_id": "4267436018", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49915", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he even took time to go to the computer room regularly to get in touch with the students .", "storylet_id": "249578"}], [{"original_text": "When he retired, they all gave him a party because they truly loved him as a person.", "album_id": "72157623192175390", "photo_flickr_id": "4267436988", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "49915", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when he retired , they all gave him a party because they truly loved him as a person .", "storylet_id": "249579"}], [{"original_text": "The professor walked arounf to help the students. ", "album_id": "72157623192175390", "photo_flickr_id": "4267433606", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49916", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the professor walked arounf to help the students .", "storylet_id": "249580"}], [{"original_text": "He was there to answer any questions they had.", "album_id": "72157623192175390", "photo_flickr_id": "4267434010", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49916", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was there to answer any questions they had .", "storylet_id": "249581"}], [{"original_text": "He was very interested in what they had to say.", "album_id": "72157623192175390", "photo_flickr_id": "4266688391", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49916", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was very interested in what they had to say .", "storylet_id": "249582"}], [{"original_text": "He loved being one on one with them.", "album_id": "72157623192175390", "photo_flickr_id": "4266688917", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49916", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he loved being one on one with them .", "storylet_id": "249583"}], [{"original_text": "The students really learned a lot from him also.", "album_id": "72157623192175390", "photo_flickr_id": "4267436018", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "49916", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the students really learned a lot from him also .", "storylet_id": "249584"}], [{"original_text": "The gentleman sat with the boy to discuss the diagrams. ", "album_id": "72157623192175390", "photo_flickr_id": "4267437526", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49917", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the gentleman sat with the boy to discuss the diagrams .", "storylet_id": "249585"}], [{"original_text": "He then asked the young ladies if they needed help with anything.", "album_id": "72157623192175390", "photo_flickr_id": "4267438628", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49917", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he then asked the young ladies if they needed help with anything .", "storylet_id": "249586"}], [{"original_text": "He spoke to the man about his interest in technology. ", "album_id": "72157623192175390", "photo_flickr_id": "4266688917", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49917", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he spoke to the man about his interest in technology .", "storylet_id": "249587"}], [{"original_text": "He then met with this fellow, to discuss his future plans in engineering. ", "album_id": "72157623192175390", "photo_flickr_id": "4267436018", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49917", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he then met with this fellow , to discuss his future plans in engineering .", "storylet_id": "249588"}], [{"original_text": "The students took a picture to remember the special day. ", "album_id": "72157623192175390", "photo_flickr_id": "4267436988", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49917", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the students took a picture to remember the special day .", "storylet_id": "249589"}], [{"original_text": "He went around talking to everyone he could.", "album_id": "72157623192175390", "photo_flickr_id": "4267437526", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49918", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he went around talking to everyone he could .", "storylet_id": "249590"}], [{"original_text": "His employees along the way and the customers who used his service.", "album_id": "72157623192175390", "photo_flickr_id": "4267438628", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49918", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his employees along the way and the customers who used his service .", "storylet_id": "249591"}], [{"original_text": "He got to know the I.T team as well as possible.", "album_id": "72157623192175390", "photo_flickr_id": "4266688917", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49918", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he got to know the i.t team as well as possible .", "storylet_id": "249592"}], [{"original_text": "He always tried to stay personable with the company.", "album_id": "72157623192175390", "photo_flickr_id": "4267436018", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49918", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he always tried to stay personable with the company .", "storylet_id": "249593"}], [{"original_text": "They all gathered to take a final picture before he left.", "album_id": "72157623192175390", "photo_flickr_id": "4267436988", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "49918", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all gathered to take a final picture before he left .", "storylet_id": "249594"}], [{"original_text": "The kid was telling about his project", "album_id": "72157623192175390", "photo_flickr_id": "4267437526", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49919", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kid was telling about his project", "storylet_id": "249595"}], [{"original_text": "that he was winning.", "album_id": "72157623192175390", "photo_flickr_id": "4267438628", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49919", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that he was winning .", "storylet_id": "249596"}], [{"original_text": "Then the man talked to his staff", "album_id": "72157623192175390", "photo_flickr_id": "4266688917", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49919", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the man talked to his staff", "storylet_id": "249597"}], [{"original_text": "about the kids project", "album_id": "72157623192175390", "photo_flickr_id": "4267436018", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49919", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "about the kids project", "storylet_id": "249598"}], [{"original_text": "to give an award to.", "album_id": "72157623192175390", "photo_flickr_id": "4267436988", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49919", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to give an award to .", "storylet_id": "249599"}], [{"original_text": "The Stormtroopers took two kids hostage.", "album_id": "72157623063719839", "photo_flickr_id": "4266236932", "setting": "first-2-pick-and-tell", "worker_id": "BM1FG4KJSYN9EA7", "story_id": "49920", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stormtroopers took two kids hostage .", "storylet_id": "249600"}], [{"original_text": "There was decent among the Stormtroopers and they decided to fight.", "album_id": "72157623063719839", "photo_flickr_id": "4266252132", "setting": "first-2-pick-and-tell", "worker_id": "BM1FG4KJSYN9EA7", "story_id": "49920", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was decent among the stormtroopers and they decided to fight .", "storylet_id": "249601"}], [{"original_text": "The Stromtroopers take their battle stance.", "album_id": "72157623063719839", "photo_flickr_id": "4266253870", "setting": "first-2-pick-and-tell", "worker_id": "BM1FG4KJSYN9EA7", "story_id": "49920", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the stromtroopers take their battle stance .", "storylet_id": "249602"}], [{"original_text": "The Stormtroopers rob an Adidas store.", "album_id": "72157623063719839", "photo_flickr_id": "4265510905", "setting": "first-2-pick-and-tell", "worker_id": "BM1FG4KJSYN9EA7", "story_id": "49920", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the stormtroopers rob an organization store .", "storylet_id": "249603"}], [{"original_text": "Darth Vader marries a woman.", "album_id": "72157623063719839", "photo_flickr_id": "4266261926", "setting": "first-2-pick-and-tell", "worker_id": "BM1FG4KJSYN9EA7", "story_id": "49920", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "darth vader marries a woman .", "storylet_id": "249604"}], [{"original_text": "We went to the Adidas Star Wars Premiere today ", "album_id": "72157623063719839", "photo_flickr_id": "4266231894", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49921", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the organization organization organization organization today", "storylet_id": "249605"}], [{"original_text": "They met us right at the door ", "album_id": "72157623063719839", "photo_flickr_id": "4266236932", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49921", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they met us right at the door", "storylet_id": "249606"}], [{"original_text": "All the Star Wars characters were there", "album_id": "72157623063719839", "photo_flickr_id": "4265493827", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49921", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the star wars characters were there", "storylet_id": "249607"}], [{"original_text": "This guy was so friendly and loved entertaining us ", "album_id": "72157623063719839", "photo_flickr_id": "4266248180", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49921", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this guy was so friendly and loved entertaining us", "storylet_id": "249608"}], [{"original_text": "Here I am getting my photo taken ", "album_id": "72157623063719839", "photo_flickr_id": "4266261926", "setting": "first-2-pick-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49921", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here i am getting my photo taken", "storylet_id": "249609"}], [{"original_text": "The Star Wars Convention was amazing.", "album_id": "72157623063719839", "photo_flickr_id": "4266236932", "setting": "last-3-pick-old-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49922", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the star wars convention was amazing .", "storylet_id": "249610"}], [{"original_text": "There were storm troopers everywhere.", "album_id": "72157623063719839", "photo_flickr_id": "4266252132", "setting": "last-3-pick-old-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49922", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were storm troopers everywhere .", "storylet_id": "249611"}], [{"original_text": "They even did a choreographed dance.", "album_id": "72157623063719839", "photo_flickr_id": "4266253870", "setting": "last-3-pick-old-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49922", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even did a choreographed dance .", "storylet_id": "249612"}], [{"original_text": "We got to meet some of the Storm Troopers.", "album_id": "72157623063719839", "photo_flickr_id": "4265510905", "setting": "last-3-pick-old-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49922", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got to meet some of the storm troopers .", "storylet_id": "249613"}], [{"original_text": "The best part was when we saw Darth Vader.", "album_id": "72157623063719839", "photo_flickr_id": "4266261926", "setting": "last-3-pick-old-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49922", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part was when we saw location location .", "storylet_id": "249614"}], [{"original_text": "The Star Wars convention was amazing! I went with my brother. ", "album_id": "72157623063719839", "photo_flickr_id": "4266236932", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "49923", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the star wars convention was amazing ! i went with my brother .", "storylet_id": "249615"}], [{"original_text": "The stormtroopers put on a show!", "album_id": "72157623063719839", "photo_flickr_id": "4266252132", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "49923", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the stormtroopers put on a show !", "storylet_id": "249616"}], [{"original_text": "There was laser tag too!", "album_id": "72157623063719839", "photo_flickr_id": "4266253870", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "49923", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was laser tag too !", "storylet_id": "249617"}], [{"original_text": "We left with masks and costumes. ", "album_id": "72157623063719839", "photo_flickr_id": "4265510905", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "49923", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we left with masks and costumes .", "storylet_id": "249618"}], [{"original_text": "I put on a costume and posed with vader. ", "album_id": "72157623063719839", "photo_flickr_id": "4266261926", "setting": "last-3-pick-old-and-tell", "worker_id": "BKXFLEYZIK6SC5G", "story_id": "49923", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i put on a costume and posed with vader .", "storylet_id": "249619"}], [{"original_text": "This couple visited a star wars convention.", "album_id": "72157623063719839", "photo_flickr_id": "4266236932", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49924", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this couple visited a star wars convention .", "storylet_id": "249620"}], [{"original_text": "The convention featured a recreation of a famous star wars scene.", "album_id": "72157623063719839", "photo_flickr_id": "4266252132", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49924", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the convention featured a recreation of a famous star wars scene .", "storylet_id": "249621"}], [{"original_text": "There were effects and lighting and music!", "album_id": "72157623063719839", "photo_flickr_id": "4266253870", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49924", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were effects and lighting and music !", "storylet_id": "249622"}], [{"original_text": "The storm troopers were nice enough to carry the couples bags", "album_id": "72157623063719839", "photo_flickr_id": "4265510905", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49924", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the storm troopers were nice enough to carry the couples bags", "storylet_id": "249623"}], [{"original_text": "while they took pictures of Darth Vader. It was an out of this world day.", "album_id": "72157623063719839", "photo_flickr_id": "4266261926", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49924", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while they took pictures of organization organization . it was an out of this world day .", "storylet_id": "249624"}], [{"original_text": "Tensions were high going into the meetings.", "album_id": "72157623072796959", "photo_flickr_id": "4271520065", "setting": "first-2-pick-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49925", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "tensions were high going into the meetings .", "storylet_id": "249625"}], [{"original_text": "While the politicians were able to make some agreements, they still disagreed on some things.", "album_id": "72157623072796959", "photo_flickr_id": "4266220421", "setting": "first-2-pick-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49925", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while the politicians were able to make some agreements , they still disagreed on some things .", "storylet_id": "249626"}], [{"original_text": "The use of military force and its consequences had to be determined.", "album_id": "72157623072796959", "photo_flickr_id": "4266221255", "setting": "first-2-pick-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49925", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the use of military force and its consequences had to be determined .", "storylet_id": "249627"}], [{"original_text": "Troops were ready to be deployed, but were not sent out.", "album_id": "72157623072796959", "photo_flickr_id": "4272263618", "setting": "first-2-pick-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49925", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "troops were ready to be deployed , but were not sent out .", "storylet_id": "249628"}], [{"original_text": "Eventually they were able to make amends, and the countries lived in peace together.", "album_id": "72157623072796959", "photo_flickr_id": "4269773284", "setting": "first-2-pick-and-tell", "worker_id": "1W078USXZYU4WIA", "story_id": "49925", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually they were able to make amends , and the countries lived in peace together .", "storylet_id": "249629"}], [{"original_text": "There was an important negotiation that was about to take place and everyone was focused on the task, deep in thought.", "album_id": "72157623072796959", "photo_flickr_id": "4271520065", "setting": "first-2-pick-and-tell", "worker_id": "W8XVBS6PXCMBW2H", "story_id": "49926", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an important negotiation that was about to take place and everyone was focused on the task , deep in thought .", "storylet_id": "249630"}], [{"original_text": "Both sides sat at the table and began talking back and forth.", "album_id": "72157623072796959", "photo_flickr_id": "4271520151", "setting": "first-2-pick-and-tell", "worker_id": "W8XVBS6PXCMBW2H", "story_id": "49926", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "both sides sat at the table and began talking back and forth .", "storylet_id": "249631"}], [{"original_text": "Finally, the Americans agreed to give their counterparts a box of apples.", "album_id": "72157623072796959", "photo_flickr_id": "4266220747", "setting": "first-2-pick-and-tell", "worker_id": "W8XVBS6PXCMBW2H", "story_id": "49926", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally , the americans agreed to give their counterparts a box of apples .", "storylet_id": "249632"}], [{"original_text": "Both sides were very happy about the agreement and stood up to shake hands and mingle.", "album_id": "72157623072796959", "photo_flickr_id": "4269030597", "setting": "first-2-pick-and-tell", "worker_id": "W8XVBS6PXCMBW2H", "story_id": "49926", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "both sides were very happy about the agreement and stood up to shake hands and mingle .", "storylet_id": "249633"}], [{"original_text": "A big event was held to celebrate the momentous occasion.", "album_id": "72157623072796959", "photo_flickr_id": "4269031259", "setting": "first-2-pick-and-tell", "worker_id": "W8XVBS6PXCMBW2H", "story_id": "49926", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a big event was held to celebrate the momentous occasion .", "storylet_id": "249634"}], [{"original_text": "I had a lot of work to do at the meeting.", "album_id": "72157623072796959", "photo_flickr_id": "4271520065", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49927", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a lot of work to do at the meeting .", "storylet_id": "249635"}], [{"original_text": "There were many people there that did not speak English.", "album_id": "72157623072796959", "photo_flickr_id": "4266220421", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49927", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many people there that did not speak english .", "storylet_id": "249636"}], [{"original_text": "I tried to communicate things to them.", "album_id": "72157623072796959", "photo_flickr_id": "4266221255", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49927", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i tried to communicate things to them .", "storylet_id": "249637"}], [{"original_text": "They had a hard time understanding.", "album_id": "72157623072796959", "photo_flickr_id": "4272263618", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49927", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had a hard time understanding .", "storylet_id": "249638"}], [{"original_text": "It was going to be a long meeting.", "album_id": "72157623072796959", "photo_flickr_id": "4269773284", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49927", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was going to be a long meeting .", "storylet_id": "249639"}], [{"original_text": "The meeting was quite tense, and not starting well.", "album_id": "72157623072796959", "photo_flickr_id": "4271520065", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49928", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the meeting was quite tense , and not starting well .", "storylet_id": "249640"}], [{"original_text": "But some concessions were made, and diplomacy was advancing.", "album_id": "72157623072796959", "photo_flickr_id": "4266220421", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49928", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but some concessions were made , and diplomacy was advancing .", "storylet_id": "249641"}], [{"original_text": "Other groups were more successful overall, almost friendly.", "album_id": "72157623072796959", "photo_flickr_id": "4266221255", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49928", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other groups were more successful overall , almost friendly .", "storylet_id": "249642"}], [{"original_text": "After the meeting there were some presentations of troops.", "album_id": "72157623072796959", "photo_flickr_id": "4272263618", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49928", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the meeting there were some presentations of troops .", "storylet_id": "249643"}], [{"original_text": "And finally a speech to the public.", "album_id": "72157623072796959", "photo_flickr_id": "4269773284", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "49928", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and finally a speech to the public .", "storylet_id": "249644"}], [{"original_text": "Tensions where high even before the meeting between the two groups began.", "album_id": "72157623072796959", "photo_flickr_id": "4271520065", "setting": "last-3-pick-old-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49929", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "tensions where high even before the meeting between the two groups began .", "storylet_id": "249645"}], [{"original_text": "I was close enough to hear their breathing as the two parties began exchanging words with one another.", "album_id": "72157623072796959", "photo_flickr_id": "4266220421", "setting": "last-3-pick-old-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49929", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was close enough to hear their breathing as the two parties began exchanging words with one another .", "storylet_id": "249646"}], [{"original_text": "After meeting with enemy forces a US general and diplomats discuss what they had learned from the meeting. ", "album_id": "72157623072796959", "photo_flickr_id": "4266221255", "setting": "last-3-pick-old-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49929", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after meeting with enemy forces a location general and diplomats discuss what they had learned from the meeting .", "storylet_id": "249647"}], [{"original_text": "The diplomats flight commander looked on as the crowd began to clear the room. ", "album_id": "72157623072796959", "photo_flickr_id": "4272263618", "setting": "last-3-pick-old-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49929", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the diplomats flight commander looked on as the crowd began to clear the room .", "storylet_id": "249648"}], [{"original_text": "Just as things were winding down the two sides presented one another with a peace treaty. ", "album_id": "72157623072796959", "photo_flickr_id": "4269773284", "setting": "last-3-pick-old-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49929", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "just as things were winding down the two sides presented one another with a peace treaty .", "storylet_id": "249649"}], [{"original_text": "We continued to wait for the ride home...", "album_id": "72157623480872283", "photo_flickr_id": "4426386995", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49930", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we continued to wait for the ride home ...", "storylet_id": "249650"}], [{"original_text": "I looked over the mountains...", "album_id": "72157623480872283", "photo_flickr_id": "4426387309", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49930", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i looked over the mountains ...", "storylet_id": "249651"}], [{"original_text": "And, I started to lose faith...", "album_id": "72157623480872283", "photo_flickr_id": "4427150500", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49930", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and , i started to lose faith ...", "storylet_id": "249652"}], [{"original_text": "And, then the car arrived!", "album_id": "72157623480872283", "photo_flickr_id": "4427151400", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49930", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , then the car arrived !", "storylet_id": "249653"}], [{"original_text": "A wonderful BMW from the Gemans! I couldn't have asked for a better ride home.", "album_id": "72157623480872283", "photo_flickr_id": "4427151570", "setting": "first-2-pick-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49930", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a wonderful bmw from the gemans ! i could n't have asked for a better ride home .", "storylet_id": "249654"}], [{"original_text": "Today, we decided to take a trip to the beach.I got in my car and started the engine to begin my journey.", "album_id": "72157623480872283", "photo_flickr_id": "4426388431", "setting": "first-2-pick-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "49931", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , we decided to take a trip to the beach.i got in my car and started the engine to begin my journey .", "storylet_id": "249655"}], [{"original_text": "At the beach, I noticed an old unkept light house on the edge of the crashing waves.", "album_id": "72157623480872283", "photo_flickr_id": "4426388019", "setting": "first-2-pick-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "49931", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at the beach , i noticed an old unkept light house on the edge of the crashing waves .", "storylet_id": "249656"}], [{"original_text": "A ship wreck happen with in what must of previously been the light house's bay. The boat was nearly overturned on the ruff water.", "album_id": "72157623480872283", "photo_flickr_id": "4426387309", "setting": "first-2-pick-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "49931", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a ship wreck happen with in what must of previously been the light house 's bay . the boat was nearly overturned on the ruff water .", "storylet_id": "249657"}], [{"original_text": "The closer I moved toward the boat the stronger the waves became, crashing down near the beach.", "album_id": "72157623480872283", "photo_flickr_id": "4427150890", "setting": "first-2-pick-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "49931", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the closer i moved toward the boat the stronger the waves became , crashing down near the beach .", "storylet_id": "249658"}], [{"original_text": "We left at the end of the day and started to drive back inland home.", "album_id": "72157623480872283", "photo_flickr_id": "4427151570", "setting": "first-2-pick-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "49931", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we left at the end of the day and started to drive back inland home .", "storylet_id": "249659"}], [{"original_text": "There's class", "album_id": "72157623480872283", "photo_flickr_id": "4426388431", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49932", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there 's class", "storylet_id": "249660"}], [{"original_text": "there's beauty", "album_id": "72157623480872283", "photo_flickr_id": "4426388019", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49932", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there 's beauty", "storylet_id": "249661"}], [{"original_text": "and there's strength.", "album_id": "72157623480872283", "photo_flickr_id": "4426387309", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49932", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and there 's strength .", "storylet_id": "249662"}], [{"original_text": "On very few occasions,", "album_id": "72157623480872283", "photo_flickr_id": "4427150890", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49932", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on very few occasions ,", "storylet_id": "249663"}], [{"original_text": "there's all three. BMW is that occasion.", "album_id": "72157623480872283", "photo_flickr_id": "4427151570", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "49932", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there 's all three . organization is that occasion .", "storylet_id": "249664"}], [{"original_text": "The Dodge Caravan.", "album_id": "72157623480872283", "photo_flickr_id": "4426388431", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49933", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization organization .", "storylet_id": "249665"}], [{"original_text": "Perfect for wherever you go.", "album_id": "72157623480872283", "photo_flickr_id": "4426388019", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49933", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "perfect for wherever you go .", "storylet_id": "249666"}], [{"original_text": "That includes rocks,", "album_id": "72157623480872283", "photo_flickr_id": "4426387309", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49933", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that includes rocks ,", "storylet_id": "249667"}], [{"original_text": "and even the sea.", "album_id": "72157623480872283", "photo_flickr_id": "4427150890", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49933", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and even the sea .", "storylet_id": "249668"}], [{"original_text": "The New Dodge Caravan.", "album_id": "72157623480872283", "photo_flickr_id": "4427151570", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49933", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the new dodge caravan .", "storylet_id": "249669"}], [{"original_text": "Everything was so rustic in the new car.", "album_id": "72157623480872283", "photo_flickr_id": "4426388431", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49934", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everything was so rustic in the new car .", "storylet_id": "249670"}], [{"original_text": "And the land scapes added to the experience.", "album_id": "72157623480872283", "photo_flickr_id": "4426388019", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49934", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the land scapes added to the experience .", "storylet_id": "249671"}], [{"original_text": "Everything was so beautiful.", "album_id": "72157623480872283", "photo_flickr_id": "4426387309", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49934", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everything was so beautiful .", "storylet_id": "249672"}], [{"original_text": "We just watched it all in amazement.", "album_id": "72157623480872283", "photo_flickr_id": "4427150890", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49934", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we just watched it all in amazement .", "storylet_id": "249673"}], [{"original_text": "And drove away, happy for the day.", "album_id": "72157623480872283", "photo_flickr_id": "4427151570", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49934", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and drove away , happy for the day .", "storylet_id": "249674"}], [{"original_text": "Profesor Schullz felt like he needed to give a lesson about manners.", "album_id": "72157623481128331", "photo_flickr_id": "4427333232", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49935", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "profesor schullz felt like he needed to give a lesson about manners .", "storylet_id": "249675"}], [{"original_text": "He went on to give a sermon.", "album_id": "72157623481128331", "photo_flickr_id": "4426569977", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49935", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he went on to give a sermon .", "storylet_id": "249676"}], [{"original_text": "The students, nonplussed, asked him why he was taking away from class time.", "album_id": "72157623481128331", "photo_flickr_id": "4426570015", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49935", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the students , nonplussed , asked him why he was taking away from class time .", "storylet_id": "249677"}], [{"original_text": "Schullz didn't know how to answer the question.", "album_id": "72157623481128331", "photo_flickr_id": "4427333114", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49935", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "schullz did n't know how to answer the question .", "storylet_id": "249678"}], [{"original_text": "He stood there defeated.", "album_id": "72157623481128331", "photo_flickr_id": "4426569819", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "49935", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he stood there defeated .", "storylet_id": "249679"}], [{"original_text": "Well hello ladies.", "album_id": "72157623481128331", "photo_flickr_id": "4427333232", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49936", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "well hello ladies .", "storylet_id": "249680"}], [{"original_text": "How are you today.", "album_id": "72157623481128331", "photo_flickr_id": "4426569977", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49936", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "how are you today .", "storylet_id": "249681"}], [{"original_text": "This is my good side.", "album_id": "72157623481128331", "photo_flickr_id": "4426570015", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49936", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is my good side .", "storylet_id": "249682"}], [{"original_text": "Would you like my phone number.", "album_id": "72157623481128331", "photo_flickr_id": "4426569981", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49936", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "would you like my phone number .", "storylet_id": "249683"}], [{"original_text": "I didn't think so.", "album_id": "72157623481128331", "photo_flickr_id": "4426569967", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "49936", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i did n't think so .", "storylet_id": "249684"}], [{"original_text": "Mr. Green is a teacher at a local high school.", "album_id": "72157623481128331", "photo_flickr_id": "4427333232", "setting": "last-3-pick-old-and-tell", "worker_id": "U1GKMBI677UROZI", "story_id": "49937", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mr. green is a teacher at a local high school .", "storylet_id": "249685"}], [{"original_text": "Mr. Green teaches music. ", "album_id": "72157623481128331", "photo_flickr_id": "4426569977", "setting": "last-3-pick-old-and-tell", "worker_id": "U1GKMBI677UROZI", "story_id": "49937", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mr. green teaches music .", "storylet_id": "249686"}], [{"original_text": "Mr. Green has enjoyed teaching music for over 30 years.", "album_id": "72157623481128331", "photo_flickr_id": "4426570015", "setting": "last-3-pick-old-and-tell", "worker_id": "U1GKMBI677UROZI", "story_id": "49937", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mr. green has enjoyed teaching music for over 30 years .", "storylet_id": "249687"}], [{"original_text": "Mr. Green makes sure each of his students thoroughly understands each subject.", "album_id": "72157623481128331", "photo_flickr_id": "4427333114", "setting": "last-3-pick-old-and-tell", "worker_id": "U1GKMBI677UROZI", "story_id": "49937", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mr. green makes sure each of his students thoroughly understands each subject .", "storylet_id": "249688"}], [{"original_text": "Mr. Green's favorite part of any of his lessons are student questions.", "album_id": "72157623481128331", "photo_flickr_id": "4426569819", "setting": "last-3-pick-old-and-tell", "worker_id": "U1GKMBI677UROZI", "story_id": "49937", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mr. green 's favorite part of any of his lessons are student questions .", "storylet_id": "249689"}], [{"original_text": "The speaker was excited about his upcoming speech.", "album_id": "72157623481128331", "photo_flickr_id": "4427333232", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49938", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the speaker was excited about his upcoming speech .", "storylet_id": "249690"}], [{"original_text": "Because he would be speaking on issues that were very important to him.", "album_id": "72157623481128331", "photo_flickr_id": "4426569977", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49938", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "because he would be speaking on issues that were very important to him .", "storylet_id": "249691"}], [{"original_text": "He outlined many important issues.", "album_id": "72157623481128331", "photo_flickr_id": "4426570015", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49938", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he outlined many important issues .", "storylet_id": "249692"}], [{"original_text": "And stressed their importance.", "album_id": "72157623481128331", "photo_flickr_id": "4427333114", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49938", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and stressed their importance .", "storylet_id": "249693"}], [{"original_text": "He was satisfied with his speech.", "album_id": "72157623481128331", "photo_flickr_id": "4426569819", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49938", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was satisfied with his speech .", "storylet_id": "249694"}], [{"original_text": "My Name is Jojo Jones.", "album_id": "72157623481128331", "photo_flickr_id": "4427333232", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49939", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my name is jojo jones .", "storylet_id": "249695"}], [{"original_text": "Today I'm gonna talk to you about plastics.", "album_id": "72157623481128331", "photo_flickr_id": "4426569977", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49939", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today i 'm gon na talk to you about plastics .", "storylet_id": "249696"}], [{"original_text": "Now, I am looking at a plastic item.", "album_id": "72157623481128331", "photo_flickr_id": "4426570015", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49939", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now , i am looking at a plastic item .", "storylet_id": "249697"}], [{"original_text": "It's a clock.", "album_id": "72157623481128331", "photo_flickr_id": "4427333114", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49939", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's a clock .", "storylet_id": "249698"}], [{"original_text": "Plastics are all around us.", "album_id": "72157623481128331", "photo_flickr_id": "4426569819", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49939", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "plastics are all around us .", "storylet_id": "249699"}], [{"original_text": "I went to the meeting today.", "album_id": "72157623606238012", "photo_flickr_id": "4427535594", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49940", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the meeting today .", "storylet_id": "249700"}], [{"original_text": "It was very boring.", "album_id": "72157623606238012", "photo_flickr_id": "4426772899", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49940", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was very boring .", "storylet_id": "249701"}], [{"original_text": "The same man was talking for the entire meeting.", "album_id": "72157623606238012", "photo_flickr_id": "4426772867", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49940", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the same man was talking for the entire meeting .", "storylet_id": "249702"}], [{"original_text": "He didn't stop talking.", "album_id": "72157623606238012", "photo_flickr_id": "4426772823", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49940", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he did n't stop talking .", "storylet_id": "249703"}], [{"original_text": "I was falling asleep.", "album_id": "72157623606238012", "photo_flickr_id": "4427535442", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49940", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was falling asleep .", "storylet_id": "249704"}], [{"original_text": "John's speech to his son's Finance class was successful.", "album_id": "72157623606238012", "photo_flickr_id": "4426773083", "setting": "first-2-pick-and-tell", "worker_id": "AT0XL1LRCSO03HR", "story_id": "49941", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] 's speech to his son 's finance class was successful .", "storylet_id": "249705"}], [{"original_text": "He discussed the relevance of microeconomics versus macroeconomics in today's market.", "album_id": "72157623606238012", "photo_flickr_id": "4427535674", "setting": "first-2-pick-and-tell", "worker_id": "AT0XL1LRCSO03HR", "story_id": "49941", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he discussed the relevance of microeconomics versus macroeconomics in today 's market .", "storylet_id": "249706"}], [{"original_text": "There was a brief moment where the project stopped working; but the professor and a service tech were able to get it running again.", "album_id": "72157623606238012", "photo_flickr_id": "4427535382", "setting": "first-2-pick-and-tell", "worker_id": "AT0XL1LRCSO03HR", "story_id": "49941", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a brief moment where the project stopped working ; but the professor and a service tech were able to get it running again .", "storylet_id": "249707"}], [{"original_text": "He made sure to cover all the items hilighted on the projector screen.", "album_id": "72157623606238012", "photo_flickr_id": "4427535594", "setting": "first-2-pick-and-tell", "worker_id": "AT0XL1LRCSO03HR", "story_id": "49941", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he made sure to cover all the items hilighted on the projector screen .", "storylet_id": "249708"}], [{"original_text": "And he summed the whole thing up with a joke about two penguins selling ice.", "album_id": "72157623606238012", "photo_flickr_id": "4427535416", "setting": "first-2-pick-and-tell", "worker_id": "AT0XL1LRCSO03HR", "story_id": "49941", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and he summed the whole thing up with a joke about two penguins selling ice .", "storylet_id": "249709"}], [{"original_text": "Do you want to get out of debt?", "album_id": "72157623606238012", "photo_flickr_id": "4426773083", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49942", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "do you want to get out of debt ?", "storylet_id": "249710"}], [{"original_text": "Let me show you how!", "album_id": "72157623606238012", "photo_flickr_id": "4427535674", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49942", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "let me show you how !", "storylet_id": "249711"}], [{"original_text": "(Is my monitor working?!)", "album_id": "72157623606238012", "photo_flickr_id": "4427535382", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49942", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "( is my monitor working ? ! )", "storylet_id": "249712"}], [{"original_text": "You have to work on the NOI!", "album_id": "72157623606238012", "photo_flickr_id": "4427535594", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49942", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you have to work on the noi !", "storylet_id": "249713"}], [{"original_text": "Thank you.", "album_id": "72157623606238012", "photo_flickr_id": "4427535416", "setting": "last-3-pick-old-and-tell", "worker_id": "JBEJG8RFLDATHAI", "story_id": "49942", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thank you .", "storylet_id": "249714"}], [{"original_text": "We are at a business seminar", "album_id": "72157623606238012", "photo_flickr_id": "4426773083", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "49943", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are at a business seminar", "storylet_id": "249715"}], [{"original_text": "Todd is the speaker today.us how to ", "album_id": "72157623606238012", "photo_flickr_id": "4427535674", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "49943", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is the speaker today.us how to", "storylet_id": "249716"}], [{"original_text": "Todd is getting some material ready so we can show us. ", "album_id": "72157623606238012", "photo_flickr_id": "4427535382", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "49943", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] is getting some material ready so we can show us .", "storylet_id": "249717"}], [{"original_text": "Todd is talking to us about ROIs and how to invest.", "album_id": "72157623606238012", "photo_flickr_id": "4427535594", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "49943", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is talking to us about rois and how to invest .", "storylet_id": "249718"}], [{"original_text": "Finally at the ned of the presentation, he wishes us the best.", "album_id": "72157623606238012", "photo_flickr_id": "4427535416", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "49943", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally at the ned of the presentation , he wishes us the best .", "storylet_id": "249719"}], [{"original_text": "the CEO came out to talk about his new plans", "album_id": "72157623606238012", "photo_flickr_id": "4427535594", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49944", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ceo came out to talk about his new plans", "storylet_id": "249720"}], [{"original_text": "he was very detailed about his actions ", "album_id": "72157623606238012", "photo_flickr_id": "4426772899", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49944", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was very detailed about his actions", "storylet_id": "249721"}], [{"original_text": "there is much profit for everyone", "album_id": "72157623606238012", "photo_flickr_id": "4426772867", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49944", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is much profit for everyone", "storylet_id": "249722"}], [{"original_text": "he hopes his ideas will work", "album_id": "72157623606238012", "photo_flickr_id": "4426772823", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49944", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he hopes his ideas will work", "storylet_id": "249723"}], [{"original_text": "if not he will go work in a fast food restaurant ", "album_id": "72157623606238012", "photo_flickr_id": "4427535442", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49944", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "if not he will go work in a fast food restaurant", "storylet_id": "249724"}], [{"original_text": "The guest lecturer started by introducing himself.", "album_id": "72157623606566942", "photo_flickr_id": "4427654362", "setting": "first-2-pick-and-tell", "worker_id": "W6YUQK9W7HRYVVI", "story_id": "49945", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guest lecturer started by introducing himself .", "storylet_id": "249725"}], [{"original_text": "He talked about his days at the university.", "album_id": "72157623606566942", "photo_flickr_id": "4427654492", "setting": "first-2-pick-and-tell", "worker_id": "W6YUQK9W7HRYVVI", "story_id": "49945", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he talked about his days at the university .", "storylet_id": "249726"}], [{"original_text": "He told them all about how he started his company and what he thought the key to his success was.", "album_id": "72157623606566942", "photo_flickr_id": "4426890825", "setting": "first-2-pick-and-tell", "worker_id": "W6YUQK9W7HRYVVI", "story_id": "49945", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he told them all about how he started his company and what he thought the key to his success was .", "storylet_id": "249727"}], [{"original_text": "He used the overhead projector to help emphasize points.", "album_id": "72157623606566942", "photo_flickr_id": "4427654466", "setting": "first-2-pick-and-tell", "worker_id": "W6YUQK9W7HRYVVI", "story_id": "49945", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he used the overhead projector to help emphasize points .", "storylet_id": "249728"}], [{"original_text": "When he was done, the professor thanked him for coming.", "album_id": "72157623606566942", "photo_flickr_id": "4427654514", "setting": "first-2-pick-and-tell", "worker_id": "W6YUQK9W7HRYVVI", "story_id": "49945", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when he was done , the professor thanked him for coming .", "storylet_id": "249729"}], [{"original_text": "Beginning his speech, the man used no slides.", "album_id": "72157623606566942", "photo_flickr_id": "4426890793", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "49946", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "beginning his speech , the man used no slides .", "storylet_id": "249730"}], [{"original_text": "But only five minutes in, he turned the projector on.", "album_id": "72157623606566942", "photo_flickr_id": "4426890825", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "49946", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but only five minutes in , he turned the projector on .", "storylet_id": "249731"}], [{"original_text": "He went through the speech pointing out details he'd highlighted on the slides.", "album_id": "72157623606566942", "photo_flickr_id": "4427654460", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "49946", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he went through the speech pointing out details he 'd highlighted on the slides .", "storylet_id": "249732"}], [{"original_text": "As he neared the end of his speech he was pleased to see that the students were still paying attention.", "album_id": "72157623606566942", "photo_flickr_id": "4427654466", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "49946", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as he neared the end of his speech he was pleased to see that the students were still paying attention .", "storylet_id": "249733"}], [{"original_text": "For his efforts, he was awarded with a token of gratitude.", "album_id": "72157623606566942", "photo_flickr_id": "4427654500", "setting": "first-2-pick-and-tell", "worker_id": "SHEM97W6I4P6GRJ", "story_id": "49946", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for his efforts , he was awarded with a token of gratitude .", "storylet_id": "249734"}], [{"original_text": "I went to hear a speech by a local motivational speaker. ", "album_id": "72157623606566942", "photo_flickr_id": "4426890793", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49947", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to hear a speech by a local motivational speaker .", "storylet_id": "249735"}], [{"original_text": "His speech was unique, and helped me make some goals for myself. ", "album_id": "72157623606566942", "photo_flickr_id": "4426890825", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49947", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his speech was unique , and helped me make some goals for myself .", "storylet_id": "249736"}], [{"original_text": "He even included a slide show with his presentation. ", "album_id": "72157623606566942", "photo_flickr_id": "4427654460", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49947", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he even included a slide show with his presentation .", "storylet_id": "249737"}], [{"original_text": "He also included the audience, which helped us to be more attentive. ", "album_id": "72157623606566942", "photo_flickr_id": "4427654466", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49947", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he also included the audience , which helped us to be more attentive .", "storylet_id": "249738"}], [{"original_text": "Here he is giving me a copy of his book. ", "album_id": "72157623606566942", "photo_flickr_id": "4427654500", "setting": "last-3-pick-old-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "49947", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here he is giving me a copy of his book .", "storylet_id": "249739"}], [{"original_text": "My CEO gave his presentation today.", "album_id": "72157623606566942", "photo_flickr_id": "4427654362", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49948", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my ceo gave his presentation today .", "storylet_id": "249740"}], [{"original_text": "Everyone in the company was there.", "album_id": "72157623606566942", "photo_flickr_id": "4427654492", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49948", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone in the company was there .", "storylet_id": "249741"}], [{"original_text": "He talked about where we were.", "album_id": "72157623606566942", "photo_flickr_id": "4426890825", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49948", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he talked about where we were .", "storylet_id": "249742"}], [{"original_text": "How healthy the company was and where he saw it going.", "album_id": "72157623606566942", "photo_flickr_id": "4427654466", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49948", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "how healthy the company was and where he saw it going .", "storylet_id": "249743"}], [{"original_text": "He was then given a gift for his birthday.", "album_id": "72157623606566942", "photo_flickr_id": "4427654514", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49948", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was then given a gift for his birthday .", "storylet_id": "249744"}], [{"original_text": "The professor is speaking to the class.", "album_id": "72157623606566942", "photo_flickr_id": "4427654362", "setting": "last-3-pick-old-and-tell", "worker_id": "7AARPCF40V4MBBG", "story_id": "49949", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the professor is speaking to the class .", "storylet_id": "249745"}], [{"original_text": "As the Professor is explaining to the class that there is more to life than just looks and getting by.", "album_id": "72157623606566942", "photo_flickr_id": "4427654492", "setting": "last-3-pick-old-and-tell", "worker_id": "7AARPCF40V4MBBG", "story_id": "49949", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the professor is explaining to the class that there is more to life than just looks and getting by .", "storylet_id": "249746"}], [{"original_text": "The class looks as if they are interested in the topic of discussion.", "album_id": "72157623606566942", "photo_flickr_id": "4426890825", "setting": "last-3-pick-old-and-tell", "worker_id": "7AARPCF40V4MBBG", "story_id": "49949", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the class looks as if they are interested in the topic of discussion .", "storylet_id": "249747"}], [{"original_text": "During the lecture the boy with the black hat ask, a question and the professor responds.", "album_id": "72157623606566942", "photo_flickr_id": "4427654466", "setting": "last-3-pick-old-and-tell", "worker_id": "7AARPCF40V4MBBG", "story_id": "49949", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "during the lecture the boy with the black hat ask , a question and the professor responds .", "storylet_id": "249748"}], [{"original_text": "After class was over the professor introduce, his assistant.", "album_id": "72157623606566942", "photo_flickr_id": "4427654514", "setting": "last-3-pick-old-and-tell", "worker_id": "7AARPCF40V4MBBG", "story_id": "49949", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after class was over the professor introduce , his assistant .", "storylet_id": "249749"}], [{"original_text": "Walking into the convention room, I noticed someone standing in the front of the room.", "album_id": "72157623481403631", "photo_flickr_id": "4426672519", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "49950", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walking into the convention room , i noticed someone standing in the front of the room .", "storylet_id": "249750"}], [{"original_text": "Tito looked at the clock, oh my! It was time to start his speech. ", "album_id": "72157623481403631", "photo_flickr_id": "4427435362", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "49950", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "tito looked at the clock , oh my ! it was time to start his speech .", "storylet_id": "249751"}], [{"original_text": "Tito laughed very loudly as he got started on his sales speech. ", "album_id": "72157623481403631", "photo_flickr_id": "4427435156", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "49950", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "tito laughed very loudly as he got started on his sales speech .", "storylet_id": "249752"}], [{"original_text": "He said they could make big wads of cash, like so, if they followed his advice. ", "album_id": "72157623481403631", "photo_flickr_id": "4426672667", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "49950", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he said they could make big wads of cash , like so , if they followed his advice .", "storylet_id": "249753"}], [{"original_text": "Lastly, he whistled a tune in Gaelic, as a blessing to their fortune. ", "album_id": "72157623481403631", "photo_flickr_id": "4426672697", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "49950", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , he whistled a tune in gaelic , as a blessing to their fortune .", "storylet_id": "249754"}], [{"original_text": "Tom leading a talk on retail research.", "album_id": "72157623481403631", "photo_flickr_id": "4426672667", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49951", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] leading a talk on retail research .", "storylet_id": "249755"}], [{"original_text": "He went on and on about something most people weren't interested in.", "album_id": "72157623481403631", "photo_flickr_id": "4426672643", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49951", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he went on and on about something most people were n't interested in .", "storylet_id": "249756"}], [{"original_text": "It seems that even he was falling asleep during the talk.", "album_id": "72157623481403631", "photo_flickr_id": "4426672591", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49951", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it seems that even he was falling asleep during the talk .", "storylet_id": "249757"}], [{"original_text": "He woke up to finish the talk strong.", "album_id": "72157623481403631", "photo_flickr_id": "4427435168", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49951", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he woke up to finish the talk strong .", "storylet_id": "249758"}], [{"original_text": "Tom was happy to be done giving the retail speech.", "album_id": "72157623481403631", "photo_flickr_id": "4426672351", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "49951", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was happy to be done giving the retail speech .", "storylet_id": "249759"}], [{"original_text": "So my dad gave a speech today at Texas A&M. ", "album_id": "72157623481403631", "photo_flickr_id": "4426672667", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49952", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so my dad gave a speech today at location a & m .", "storylet_id": "249760"}], [{"original_text": "He spoke about how to sell just about anything!", "album_id": "72157623481403631", "photo_flickr_id": "4426672643", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49952", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he spoke about how to sell just about anything !", "storylet_id": "249761"}], [{"original_text": "He was so persuasive, everyone watched and listened attentively. ", "album_id": "72157623481403631", "photo_flickr_id": "4426672591", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49952", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was so persuasive , everyone watched and listened attentively .", "storylet_id": "249762"}], [{"original_text": "He told everyone he was going to sell them a very special bag of invisible air and everyone cheered! ", "album_id": "72157623481403631", "photo_flickr_id": "4427435168", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49952", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he told everyone he was going to sell them a very special bag of invisible air and everyone cheered !", "storylet_id": "249763"}], [{"original_text": "He handed them all out and made $5,000! He can sell anything to anyone. ", "album_id": "72157623481403631", "photo_flickr_id": "4426672351", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49952", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he handed them all out and made $ 5,000 ! he can sell anything to anyone .", "storylet_id": "249764"}], [{"original_text": "I had a great time at the seminar yesterday.", "album_id": "72157623481403631", "photo_flickr_id": "4426672667", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49953", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the seminar yesterday .", "storylet_id": "249765"}], [{"original_text": "There was a speaker there.", "album_id": "72157623481403631", "photo_flickr_id": "4426672643", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49953", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a speaker there .", "storylet_id": "249766"}], [{"original_text": "He had a speech prepared.", "album_id": "72157623481403631", "photo_flickr_id": "4426672591", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49953", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had a speech prepared .", "storylet_id": "249767"}], [{"original_text": "He told us all about his research.", "album_id": "72157623481403631", "photo_flickr_id": "4427435168", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49953", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he told us all about his research .", "storylet_id": "249768"}], [{"original_text": "It was very boring.", "album_id": "72157623481403631", "photo_flickr_id": "4426672351", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49953", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was very boring .", "storylet_id": "249769"}], [{"original_text": "This is a class on retail studies. ", "album_id": "72157623481403631", "photo_flickr_id": "4426672519", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49954", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a class on retail studies .", "storylet_id": "249770"}], [{"original_text": "Scott Semins has agreed to give a lecture in successful retail practices. ", "album_id": "72157623481403631", "photo_flickr_id": "4427435362", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49954", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] semins has agreed to give a lecture in successful retail practices .", "storylet_id": "249771"}], [{"original_text": "He explains several strategic points to the class. ", "album_id": "72157623481403631", "photo_flickr_id": "4427435156", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49954", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he explains several strategic points to the class .", "storylet_id": "249772"}], [{"original_text": "Also he tells them the long term goal to success. ", "album_id": "72157623481403631", "photo_flickr_id": "4426672667", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49954", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "also he tells them the long term goal to success .", "storylet_id": "249773"}], [{"original_text": "At the end he took questions from the class. ", "album_id": "72157623481403631", "photo_flickr_id": "4426672697", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "49954", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end he took questions from the class .", "storylet_id": "249774"}], [{"original_text": "Stephen was ready to start class but the students were still coming in. ", "album_id": "72157623607493402", "photo_flickr_id": "4427253447", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49955", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was ready to start class but the students were still coming in .", "storylet_id": "249775"}], [{"original_text": "As soon as they sat down he got right to lecturing.", "album_id": "72157623607493402", "photo_flickr_id": "4427253423", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49955", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as soon as they sat down he got right to lecturing .", "storylet_id": "249776"}], [{"original_text": "His lecture was very exciting.", "album_id": "72157623607493402", "photo_flickr_id": "4428017586", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49955", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his lecture was very exciting .", "storylet_id": "249777"}], [{"original_text": "Stephen was very enthusiastic.", "album_id": "72157623607493402", "photo_flickr_id": "4428017656", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49955", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was very enthusiastic .", "storylet_id": "249778"}], [{"original_text": "The class was much more exciting than I thought it would be.", "album_id": "72157623607493402", "photo_flickr_id": "4428017562", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "49955", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the class was much more exciting than i thought it would be .", "storylet_id": "249779"}], [{"original_text": "My husband is giving a presentation at the community college today. ", "album_id": "72157623607493402", "photo_flickr_id": "4428017746", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49956", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband is giving a presentation at the community college today .", "storylet_id": "249780"}], [{"original_text": "He looks a bit nervous, but I know he can do it. ", "album_id": "72157623607493402", "photo_flickr_id": "4427253447", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49956", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he looks a bit nervous , but i know he can do it .", "storylet_id": "249781"}], [{"original_text": "The students seem very engaged in the presentation. ", "album_id": "72157623607493402", "photo_flickr_id": "4428017586", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49956", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the students seem very engaged in the presentation .", "storylet_id": "249782"}], [{"original_text": "I have even caught some students actually taking notes. ", "album_id": "72157623607493402", "photo_flickr_id": "4427253275", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49956", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i have even caught some students actually taking notes .", "storylet_id": "249783"}], [{"original_text": "As the presenation nears the end, I am confident my husband did a great job. ", "album_id": "72157623607493402", "photo_flickr_id": "4428017594", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49956", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the presenation nears the end , i am confident my husband did a great job .", "storylet_id": "249784"}], [{"original_text": "A CEO from our local bank came to our school today.", "album_id": "72157623607493402", "photo_flickr_id": "4428017746", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49957", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a ceo from our local bank came to our school today .", "storylet_id": "249785"}], [{"original_text": "He came to do a presentation to our economics class.", "album_id": "72157623607493402", "photo_flickr_id": "4427253447", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49957", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he came to do a presentation to our economics class .", "storylet_id": "249786"}], [{"original_text": "He used a projector and slides to make it easier to understand.", "album_id": "72157623607493402", "photo_flickr_id": "4428017586", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49957", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he used a projector and slides to make it easier to understand .", "storylet_id": "249787"}], [{"original_text": "He was quite informative and we were all engaged in the presentation.", "album_id": "72157623607493402", "photo_flickr_id": "4427253275", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49957", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was quite informative and we were all engaged in the presentation .", "storylet_id": "249788"}], [{"original_text": "He took questions at the end and I think we all learned a lot.", "album_id": "72157623607493402", "photo_flickr_id": "4428017594", "setting": "last-3-pick-old-and-tell", "worker_id": "15UNYCWI4ZWQN1G", "story_id": "49957", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he took questions at the end and i think we all learned a lot .", "storylet_id": "249789"}], [{"original_text": "The speaker had stage freight so was nervous about his upcoming business presentation.", "album_id": "72157623607493402", "photo_flickr_id": "4427253447", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49958", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the speaker had stage freight so was nervous about his upcoming business presentation .", "storylet_id": "249790"}], [{"original_text": "But when he began it all came naturally.", "album_id": "72157623607493402", "photo_flickr_id": "4427253423", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49958", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but when he began it all came naturally .", "storylet_id": "249791"}], [{"original_text": "He showed his proposal to the company.", "album_id": "72157623607493402", "photo_flickr_id": "4428017586", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49958", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he showed his proposal to the company .", "storylet_id": "249792"}], [{"original_text": "And stressed the importance of a budget.", "album_id": "72157623607493402", "photo_flickr_id": "4428017656", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49958", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and stressed the importance of a budget .", "storylet_id": "249793"}], [{"original_text": "Everyone took notes and contemplated his ideas.", "album_id": "72157623607493402", "photo_flickr_id": "4428017562", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49958", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone took notes and contemplated his ideas .", "storylet_id": "249794"}], [{"original_text": "The man did not look pleasd", "album_id": "72157623607493402", "photo_flickr_id": "4428017746", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49959", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man did not look pleasd", "storylet_id": "249795"}], [{"original_text": "as he gave a speech.", "album_id": "72157623607493402", "photo_flickr_id": "4427253447", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49959", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as he gave a speech .", "storylet_id": "249796"}], [{"original_text": "The people paid attention though", "album_id": "72157623607493402", "photo_flickr_id": "4428017586", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49959", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people paid attention though", "storylet_id": "249797"}], [{"original_text": "and were interested in what he wanted.", "album_id": "72157623607493402", "photo_flickr_id": "4427253275", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49959", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and were interested in what he wanted .", "storylet_id": "249798"}], [{"original_text": "They all took good notes.", "album_id": "72157623607493402", "photo_flickr_id": "4428017594", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49959", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all took good notes .", "storylet_id": "249799"}], [{"original_text": "It was a packed house and Don was ready to give us a crash course on how data entry worked.", "album_id": "72157623483419823", "photo_flickr_id": "4427427811", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49960", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a packed house and [male] was ready to give us a crash course on how data entry worked .", "storylet_id": "249800"}], [{"original_text": "Standing in front of a cool digital chalk board he began writing down important information that became instantly displayed.", "album_id": "72157623483419823", "photo_flickr_id": "4427427787", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49960", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "standing in front of a cool digital chalk board he began writing down important information that became instantly displayed .", "storylet_id": "249801"}], [{"original_text": "There was no question that Don couldn't answer and he was more then happy to answer all of them.", "album_id": "72157623483419823", "photo_flickr_id": "4428192134", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49960", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was no question that [male] could n't answer and he was more then happy to answer all of them .", "storylet_id": "249802"}], [{"original_text": "A person in the audience stumped Don for a moment, but he quickly returned a answer with a bit of a joke.", "album_id": "72157623483419823", "photo_flickr_id": "4427427485", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49960", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a person in the audience stumped [male] for a moment , but he quickly returned a answer with a bit of a joke .", "storylet_id": "249803"}], [{"original_text": "As the presentation drew to a close Don took one final look at his notes.", "album_id": "72157623483419823", "photo_flickr_id": "4428191960", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49960", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the presentation drew to a close [male] took one final look at his notes .", "storylet_id": "249804"}], [{"original_text": "A presentation is taking place in the convention center.", "album_id": "72157623483419823", "photo_flickr_id": "4428192388", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49961", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a presentation is taking place in the convention center .", "storylet_id": "249805"}], [{"original_text": "There is tons of wording on the screen.", "album_id": "72157623483419823", "photo_flickr_id": "4427427755", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49961", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is tons of wording on the screen .", "storylet_id": "249806"}], [{"original_text": "The man stands next to a projector trying to show evidence of the presentation.", "album_id": "72157623483419823", "photo_flickr_id": "4428192192", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49961", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man stands next to a projector trying to show evidence of the presentation .", "storylet_id": "249807"}], [{"original_text": "The man wraps up his presentation.", "album_id": "72157623483419823", "photo_flickr_id": "4428191994", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49961", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man wraps up his presentation .", "storylet_id": "249808"}], [{"original_text": "At the end he asks if anyone would like questions answered.", "album_id": "72157623483419823", "photo_flickr_id": "4428191948", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49961", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end he asks if anyone would like questions answered .", "storylet_id": "249809"}], [{"original_text": "i am teaching a class about technology.", "album_id": "72157623483419823", "photo_flickr_id": "4427427811", "setting": "last-3-pick-old-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "49962", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am teaching a class about technology .", "storylet_id": "249810"}], [{"original_text": "i am teaching my students about new idams ", "album_id": "72157623483419823", "photo_flickr_id": "4427427787", "setting": "last-3-pick-old-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "49962", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i am teaching my students about new idams", "storylet_id": "249811"}], [{"original_text": "they are also learning about hard drives.", "album_id": "72157623483419823", "photo_flickr_id": "4428192134", "setting": "last-3-pick-old-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "49962", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they are also learning about hard drives .", "storylet_id": "249812"}], [{"original_text": "I hope my class is an inspiration to others.", "album_id": "72157623483419823", "photo_flickr_id": "4427427485", "setting": "last-3-pick-old-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "49962", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i hope my class is an inspiration to others .", "storylet_id": "249813"}], [{"original_text": "class went well today hoped everyone thought the same.", "album_id": "72157623483419823", "photo_flickr_id": "4428191960", "setting": "last-3-pick-old-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "49962", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "class went well today hoped everyone thought the same .", "storylet_id": "249814"}], [{"original_text": "Today I went to see my old teacher give a speech.", "album_id": "72157623483419823", "photo_flickr_id": "4427427811", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "49963", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i went to see my old teacher give a speech .", "storylet_id": "249815"}], [{"original_text": "He was very informative on economics.", "album_id": "72157623483419823", "photo_flickr_id": "4427427787", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "49963", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was very informative on economics .", "storylet_id": "249816"}], [{"original_text": "He made the speech come alive.", "album_id": "72157623483419823", "photo_flickr_id": "4428192134", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "49963", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he made the speech come alive .", "storylet_id": "249817"}], [{"original_text": "He really knew his information.", "album_id": "72157623483419823", "photo_flickr_id": "4427427485", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "49963", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he really knew his information .", "storylet_id": "249818"}], [{"original_text": "All in all I learned a lot today about economics.", "album_id": "72157623483419823", "photo_flickr_id": "4428191960", "setting": "last-3-pick-old-and-tell", "worker_id": "L4PFHL65OCH50UA", "story_id": "49963", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all in all i learned a lot today about economics .", "storylet_id": "249819"}], [{"original_text": "The man was talking ", "album_id": "72157623483419823", "photo_flickr_id": "4427427811", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49964", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man was talking", "storylet_id": "249820"}], [{"original_text": "and the people were listening.", "album_id": "72157623483419823", "photo_flickr_id": "4427427787", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49964", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the people were listening .", "storylet_id": "249821"}], [{"original_text": "He had a lot to say", "album_id": "72157623483419823", "photo_flickr_id": "4428192134", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49964", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had a lot to say", "storylet_id": "249822"}], [{"original_text": "and was very energetic.", "album_id": "72157623483419823", "photo_flickr_id": "4427427485", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49964", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and was very energetic .", "storylet_id": "249823"}], [{"original_text": "They were all happy with him.", "album_id": "72157623483419823", "photo_flickr_id": "4428191960", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49964", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were all happy with him .", "storylet_id": "249824"}], [{"original_text": "I had the pleasure of participating in a bridal fashion show last year. ", "album_id": "72157623195497506", "photo_flickr_id": "4268425753", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "49965", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had the pleasure of participating in a bridal fashion show last year .", "storylet_id": "249825"}], [{"original_text": "The dresses were beautiful. ", "album_id": "72157623195497506", "photo_flickr_id": "4268425759", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "49965", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dresses were beautiful .", "storylet_id": "249826"}], [{"original_text": "The suits were hot as well. ", "album_id": "72157623195497506", "photo_flickr_id": "4268425769", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "49965", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the suits were hot as well .", "storylet_id": "249827"}], [{"original_text": "They also had bridesmaids dresses. ", "album_id": "72157623195497506", "photo_flickr_id": "4271290464", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "49965", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also had bridesmaids dresses .", "storylet_id": "249828"}], [{"original_text": "The kids clothes were presented in the end and were very cute. ", "album_id": "72157623195497506", "photo_flickr_id": "4270547839", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "49965", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids clothes were presented in the end and were very cute .", "storylet_id": "249829"}], [{"original_text": "The bridal showcase had many beautiful gowns.", "album_id": "72157623195497506", "photo_flickr_id": "4268425753", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49966", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bridal showcase had many beautiful gowns .", "storylet_id": "249830"}], [{"original_text": "There was a style for everyone.", "album_id": "72157623195497506", "photo_flickr_id": "4268425767", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49966", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a style for everyone .", "storylet_id": "249831"}], [{"original_text": "They had the groom covered too.", "album_id": "72157623195497506", "photo_flickr_id": "4268475949", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49966", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had the groom covered too .", "storylet_id": "249832"}], [{"original_text": "This year's bridesmaid dresses have gotten very bold.", "album_id": "72157623195497506", "photo_flickr_id": "4268475959", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49966", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this year 's bridesmaid dresses have gotten very bold .", "storylet_id": "249833"}], [{"original_text": "Traditional is still the way to go for the flower girl and ring bearer.", "album_id": "72157623195497506", "photo_flickr_id": "4270547839", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "49966", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "traditional is still the way to go for the flower girl and ring bearer .", "storylet_id": "249834"}], [{"original_text": "The bridal show was a big event this year.", "album_id": "72157623195497506", "photo_flickr_id": "4268425753", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "49967", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bridal show was a big event this year .", "storylet_id": "249835"}], [{"original_text": "So many beautiful models walked the runway.", "album_id": "72157623195497506", "photo_flickr_id": "4268425767", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "49967", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so many beautiful models walked the runway .", "storylet_id": "249836"}], [{"original_text": "Some men did, too, modeling suits and tuxes.", "album_id": "72157623195497506", "photo_flickr_id": "4268475949", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "49967", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some men did , too , modeling suits and tuxes .", "storylet_id": "249837"}], [{"original_text": "Prom and other formal wear was also on display.", "album_id": "72157623195497506", "photo_flickr_id": "4268475959", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "49967", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "prom and other formal wear was also on display .", "storylet_id": "249838"}], [{"original_text": "Even flower girls got in on the action. It was a great show!", "album_id": "72157623195497506", "photo_flickr_id": "4270547839", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "49967", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even flower girls got in on the action . it was a great show !", "storylet_id": "249839"}], [{"original_text": "The fashion show was a success.", "album_id": "72157623195497506", "photo_flickr_id": "4268425753", "setting": "last-3-pick-old-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "49968", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fashion show was a success .", "storylet_id": "249840"}], [{"original_text": "The women all looked beautiful.", "album_id": "72157623195497506", "photo_flickr_id": "4268425767", "setting": "last-3-pick-old-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "49968", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the women all looked beautiful .", "storylet_id": "249841"}], [{"original_text": "Even the men looked great.", "album_id": "72157623195497506", "photo_flickr_id": "4268475949", "setting": "last-3-pick-old-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "49968", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the men looked great .", "storylet_id": "249842"}], [{"original_text": "This woman looked most stunning of all.", "album_id": "72157623195497506", "photo_flickr_id": "4268475959", "setting": "last-3-pick-old-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "49968", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this woman looked most stunning of all .", "storylet_id": "249843"}], [{"original_text": "The kids got in on the fun too.", "album_id": "72157623195497506", "photo_flickr_id": "4270547839", "setting": "last-3-pick-old-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "49968", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids got in on the fun too .", "storylet_id": "249844"}], [{"original_text": "Here at a bridal show. How exciting. ", "album_id": "72157623195497506", "photo_flickr_id": "4268425753", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49969", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here at a bridal show . how exciting .", "storylet_id": "249845"}], [{"original_text": "This was my favorite wedding dress.", "album_id": "72157623195497506", "photo_flickr_id": "4268425759", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49969", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was my favorite wedding dress .", "storylet_id": "249846"}], [{"original_text": "This was my favorite suit, simple yet elegant.", "album_id": "72157623195497506", "photo_flickr_id": "4268425769", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49969", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was my favorite suit , simple yet elegant .", "storylet_id": "249847"}], [{"original_text": "beautiful red dress but we're here for the little suit and tie.", "album_id": "72157623195497506", "photo_flickr_id": "4271290464", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49969", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "beautiful red dress but we 're here for the little suit and tie .", "storylet_id": "249848"}], [{"original_text": "Little girl was so cute. I had to get a picture of her.", "album_id": "72157623195497506", "photo_flickr_id": "4270547839", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49969", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "little girl was so cute . i had to get a picture of her .", "storylet_id": "249849"}], [{"original_text": "I awoke to snow this morning. ", "album_id": "72157623202372812", "photo_flickr_id": "4271798716", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49970", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i awoke to snow this morning .", "storylet_id": "249850"}], [{"original_text": "Franky my dog decided he wanted to take a run through it. ", "album_id": "72157623202372812", "photo_flickr_id": "4271804204", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49970", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "franky my dog decided he wanted to take a run through it .", "storylet_id": "249851"}], [{"original_text": "It wasn't very deep. ", "album_id": "72157623202372812", "photo_flickr_id": "4271050421", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49970", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was n't very deep .", "storylet_id": "249852"}], [{"original_text": "The playground next to my home looked so quiet and serene. ", "album_id": "72157623202372812", "photo_flickr_id": "4271801406", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49970", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the playground next to my home looked so quiet and serene .", "storylet_id": "249853"}], [{"original_text": "Even the birds were chirping a little happier this morning. It's so beautiful when the snow falls. ", "album_id": "72157623202372812", "photo_flickr_id": "4271818808", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "49970", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the birds were chirping a little happier this morning . it 's so beautiful when the snow falls .", "storylet_id": "249854"}], [{"original_text": "A snow storm arrived.", "album_id": "72157623202372812", "photo_flickr_id": "4270994371", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "49971", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a snow storm arrived .", "storylet_id": "249855"}], [{"original_text": "The cars on the street had snow on them.", "album_id": "72157623202372812", "photo_flickr_id": "4271739650", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "49971", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cars on the street had snow on them .", "storylet_id": "249856"}], [{"original_text": "The tree outside was covered with snow", "album_id": "72157623202372812", "photo_flickr_id": "4271038077", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "49971", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tree outside was covered with snow", "storylet_id": "249857"}], [{"original_text": "There were birds on the trees.", "album_id": "72157623202372812", "photo_flickr_id": "4271041961", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "49971", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were birds on the trees .", "storylet_id": "249858"}], [{"original_text": "The kids could not play in there swing set.", "album_id": "72157623202372812", "photo_flickr_id": "4271801406", "setting": "first-2-pick-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "49971", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids could not play in there swing set .", "storylet_id": "249859"}], [{"original_text": "snow is so deep here its to my knees.", "album_id": "72157623202372812", "photo_flickr_id": "4271798716", "setting": "last-3-pick-old-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "49972", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "snow is so deep here its to my knees .", "storylet_id": "249860"}], [{"original_text": "max is loving the snow.", "album_id": "72157623202372812", "photo_flickr_id": "4271804204", "setting": "last-3-pick-old-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "49972", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "max is loving the snow .", "storylet_id": "249861"}], [{"original_text": "aww how cute max left his foot prints.", "album_id": "72157623202372812", "photo_flickr_id": "4271050421", "setting": "last-3-pick-old-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "49972", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "aww how cute max left his foot prints .", "storylet_id": "249862"}], [{"original_text": "our playground is all frozen.", "album_id": "72157623202372812", "photo_flickr_id": "4271801406", "setting": "last-3-pick-old-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "49972", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our playground is all frozen .", "storylet_id": "249863"}], [{"original_text": "me and max saw this beautiful bird today.", "album_id": "72157623202372812", "photo_flickr_id": "4271818808", "setting": "last-3-pick-old-and-tell", "worker_id": "2NW4C6TBNCENELP", "story_id": "49972", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "me and max saw this beautiful bird today .", "storylet_id": "249864"}], [{"original_text": "It was a snowy day.", "album_id": "72157623202372812", "photo_flickr_id": "4270994371", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49973", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a snowy day .", "storylet_id": "249865"}], [{"original_text": "We had trouble driving because of the snow.", "album_id": "72157623202372812", "photo_flickr_id": "4271739650", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49973", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had trouble driving because of the snow .", "storylet_id": "249866"}], [{"original_text": "But it looked beautiful upon the trees.", "album_id": "72157623202372812", "photo_flickr_id": "4271038077", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49973", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but it looked beautiful upon the trees .", "storylet_id": "249867"}], [{"original_text": "And the birds even loved the snow", "album_id": "72157623202372812", "photo_flickr_id": "4271041961", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49973", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the birds even loved the snow", "storylet_id": "249868"}], [{"original_text": "It is a beautiful snow day.", "album_id": "72157623202372812", "photo_flickr_id": "4271801406", "setting": "last-3-pick-old-and-tell", "worker_id": "PCJV1YMT27VTRL7", "story_id": "49973", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is a beautiful snow day .", "storylet_id": "249869"}], [{"original_text": "we went for a walk in the show", "album_id": "72157623202372812", "photo_flickr_id": "4271798716", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49974", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went for a walk in the show", "storylet_id": "249870"}], [{"original_text": "we saw a wolf", "album_id": "72157623202372812", "photo_flickr_id": "4271804204", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49974", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw a wolf", "storylet_id": "249871"}], [{"original_text": "we found paw prints", "album_id": "72157623202372812", "photo_flickr_id": "4271050421", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49974", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we found paw prints", "storylet_id": "249872"}], [{"original_text": "the paw prints led us to a park", "album_id": "72157623202372812", "photo_flickr_id": "4271801406", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49974", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the paw prints led us to a park", "storylet_id": "249873"}], [{"original_text": "we found a bird", "album_id": "72157623202372812", "photo_flickr_id": "4271818808", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49974", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we found a bird", "storylet_id": "249874"}], [{"original_text": "A team is playing a game out in the rain.", "album_id": "72157623552169546", "photo_flickr_id": "4356834093", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49975", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a team is playing a game out in the rain .", "storylet_id": "249875"}], [{"original_text": "The two girls are watching the game with umbrellas over them.", "album_id": "72157623552169546", "photo_flickr_id": "4357585656", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49975", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the two girls are watching the game with umbrellas over them .", "storylet_id": "249876"}], [{"original_text": "The city looms in the distance and they think they may like a tour.", "album_id": "72157623552169546", "photo_flickr_id": "4356849417", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49975", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the city looms in the distance and they think they may like a tour .", "storylet_id": "249877"}], [{"original_text": "The old graveyard is very interesting and has many stones that are very old.", "album_id": "72157623552169546", "photo_flickr_id": "4356861577", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49975", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the old graveyard is very interesting and has many stones that are very old .", "storylet_id": "249878"}], [{"original_text": "Finally, they end up at their friends house for a game after party.", "album_id": "72157623552169546", "photo_flickr_id": "4357580470", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49975", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , they end up at their friends house for a game after party .", "storylet_id": "249879"}], [{"original_text": "The soccer game is in full swing.", "album_id": "72157623552169546", "photo_flickr_id": "4356835203", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "49976", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the soccer game is in full swing .", "storylet_id": "249880"}], [{"original_text": "They couple poses for a quick shot.", "album_id": "72157623552169546", "photo_flickr_id": "4356837003", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "49976", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they couple poses for a quick shot .", "storylet_id": "249881"}], [{"original_text": "The river graces the backdrop.", "album_id": "72157623552169546", "photo_flickr_id": "4357594434", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "49976", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the river graces the backdrop .", "storylet_id": "249882"}], [{"original_text": "The city skyline is seen in the background.", "album_id": "72157623552169546", "photo_flickr_id": "4356847709", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "49976", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the city skyline is seen in the background .", "storylet_id": "249883"}], [{"original_text": "The large coniferous tree is looking healthy.", "album_id": "72157623552169546", "photo_flickr_id": "4356856583", "setting": "first-2-pick-and-tell", "worker_id": "WCNWVGOZHV8BTZA", "story_id": "49976", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the large coniferous tree is looking healthy .", "storylet_id": "249884"}], [{"original_text": "Today we were going to be playing a friendly game of soccer. ", "album_id": "72157623552169546", "photo_flickr_id": "4356834093", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49977", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we were going to be playing a friendly game of soccer .", "storylet_id": "249885"}], [{"original_text": "However, as excited as we were, it decided to rain. ", "album_id": "72157623552169546", "photo_flickr_id": "4357585656", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49977", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "however , as excited as we were , it decided to rain .", "storylet_id": "249886"}], [{"original_text": "The skyline was not reassuring that the rain would subside either. ", "album_id": "72157623552169546", "photo_flickr_id": "4356849417", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49977", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the skyline was not reassuring that the rain would subside either .", "storylet_id": "249887"}], [{"original_text": "As we started the walk home, we passed by the cemetery where our grandmother was buried. ", "album_id": "72157623552169546", "photo_flickr_id": "4356861577", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49977", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as we started the walk home , we passed by the cemetery where our grandmother was buried .", "storylet_id": "249888"}], [{"original_text": "We were so glad to see our house, we were hoping not to get wet. ", "album_id": "72157623552169546", "photo_flickr_id": "4357580470", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "49977", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were so glad to see our house , we were hoping not to get wet .", "storylet_id": "249889"}], [{"original_text": "Today we headed out to watch a soccer game.", "album_id": "72157623552169546", "photo_flickr_id": "4356834093", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "49978", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we headed out to watch a soccer game .", "storylet_id": "249890"}], [{"original_text": "It was a rainy day but that didn't stop us!", "album_id": "72157623552169546", "photo_flickr_id": "4357585656", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "49978", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a rainy day but that did n't stop us !", "storylet_id": "249891"}], [{"original_text": "Look at that beautiful view of the city with the clouds over it.", "album_id": "72157623552169546", "photo_flickr_id": "4356849417", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "49978", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at that beautiful view of the city with the clouds over it .", "storylet_id": "249892"}], [{"original_text": "After the soccer game we took a walk around the quaint neighborhood and came across this sleepy little cemetery.", "album_id": "72157623552169546", "photo_flickr_id": "4356861577", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "49978", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the soccer game we took a walk around the quaint neighborhood and came across this sleepy little cemetery .", "storylet_id": "249893"}], [{"original_text": "It was near by this beautiful old house that looks like it was one of the first built in the area.", "album_id": "72157623552169546", "photo_flickr_id": "4357580470", "setting": "last-3-pick-old-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "49978", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was near by this beautiful old house that looks like it was one of the first built in the area .", "storylet_id": "249894"}], [{"original_text": "The kids were playing on the field", "album_id": "72157623552169546", "photo_flickr_id": "4356834093", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49979", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids were playing on the field", "storylet_id": "249895"}], [{"original_text": "and smiling.", "album_id": "72157623552169546", "photo_flickr_id": "4357585656", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49979", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and smiling .", "storylet_id": "249896"}], [{"original_text": "The city was big", "album_id": "72157623552169546", "photo_flickr_id": "4356849417", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49979", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the city was big", "storylet_id": "249897"}], [{"original_text": "and the cemetery was vast", "album_id": "72157623552169546", "photo_flickr_id": "4356861577", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49979", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the cemetery was vast", "storylet_id": "249898"}], [{"original_text": "near the large house.", "album_id": "72157623552169546", "photo_flickr_id": "4357580470", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "49979", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "near the large house .", "storylet_id": "249899"}], [{"original_text": "We saw a lot of busy streets on our trip to the Philippines.", "album_id": "72157623492838109", "photo_flickr_id": "4432098824", "setting": "first-2-pick-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "49980", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we saw a lot of busy streets on our trip to the location .", "storylet_id": "249900"}], [{"original_text": "The fish market was bustling.", "album_id": "72157623492838109", "photo_flickr_id": "4432099612", "setting": "first-2-pick-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "49980", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fish market was bustling .", "storylet_id": "249901"}], [{"original_text": "There were many different types of fish to choose from.", "album_id": "72157623492838109", "photo_flickr_id": "4432102780", "setting": "first-2-pick-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "49980", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many different types of fish to choose from .", "storylet_id": "249902"}], [{"original_text": "The customers deliberated to get the best deal.", "album_id": "72157623492838109", "photo_flickr_id": "4432104266", "setting": "first-2-pick-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "49980", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the customers deliberated to get the best deal .", "storylet_id": "249903"}], [{"original_text": "This little boy is not used to seeing tourists pass by.", "album_id": "72157623492838109", "photo_flickr_id": "4431335509", "setting": "first-2-pick-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "49980", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this little boy is not used to seeing tourists pass by .", "storylet_id": "249904"}], [{"original_text": "I had a lot of work to do today.", "album_id": "72157623492838109", "photo_flickr_id": "4432099612", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49981", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a lot of work to do today .", "storylet_id": "249905"}], [{"original_text": "There were many customers.", "album_id": "72157623492838109", "photo_flickr_id": "4431343983", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49981", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many customers .", "storylet_id": "249906"}], [{"original_text": "I had to see all of them.", "album_id": "72157623492838109", "photo_flickr_id": "4432103404", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49981", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had to see all of them .", "storylet_id": "249907"}], [{"original_text": "They also made me cut up seafood.", "album_id": "72157623492838109", "photo_flickr_id": "4432104266", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49981", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also made me cut up seafood .", "storylet_id": "249908"}], [{"original_text": "It was dirty work.", "album_id": "72157623492838109", "photo_flickr_id": "4431334505", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "49981", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was dirty work .", "storylet_id": "249909"}], [{"original_text": "The seafood market is a very popular place to China.", "album_id": "72157623492838109", "photo_flickr_id": "4432098824", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49982", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the seafood market is a very popular place to location .", "storylet_id": "249910"}], [{"original_text": "They have mountains of seafood.", "album_id": "72157623492838109", "photo_flickr_id": "4432099612", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49982", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they have mountains of seafood .", "storylet_id": "249911"}], [{"original_text": "The fish are all fresh and caught that day.", "album_id": "72157623492838109", "photo_flickr_id": "4432102780", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49982", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fish are all fresh and caught that day .", "storylet_id": "249912"}], [{"original_text": "Many people come for miles around to get the fresh seafood.", "album_id": "72157623492838109", "photo_flickr_id": "4432104266", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49982", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many people come for miles around to get the fresh seafood .", "storylet_id": "249913"}], [{"original_text": "Outside, children are usually wandering around the food stalls eating sweets.", "album_id": "72157623492838109", "photo_flickr_id": "4431335509", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "49982", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "outside , children are usually wandering around the food stalls eating sweets .", "storylet_id": "249914"}], [{"original_text": "Visiting a local flea market for the fish.", "album_id": "72157623492838109", "photo_flickr_id": "4432098824", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49983", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visiting a local flea market for the fish .", "storylet_id": "249915"}], [{"original_text": "See all the many types of noodles they have. I'm in heaven. ", "album_id": "72157623492838109", "photo_flickr_id": "4432099612", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49983", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "see all the many types of noodles they have . i 'm in heaven .", "storylet_id": "249916"}], [{"original_text": "I'll pass on the fish, it doesn't look very good today plus I prefer a nice lobster.", "album_id": "72157623492838109", "photo_flickr_id": "4432102780", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49983", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i 'll pass on the fish , it does n't look very good today plus i prefer a nice lobster .", "storylet_id": "249917"}], [{"original_text": "Trying to sell some fish to the locals, telling them how fresh it is.", "album_id": "72157623492838109", "photo_flickr_id": "4432104266", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49983", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "trying to sell some fish to the locals , telling them how fresh it is .", "storylet_id": "249918"}], [{"original_text": "This was a cute little boy who wanted to help me find a seat.", "album_id": "72157623492838109", "photo_flickr_id": "4431335509", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "49983", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was a cute little boy who wanted to help me find a seat .", "storylet_id": "249919"}], [{"original_text": "It was fun going to the market that day.", "album_id": "72157623492838109", "photo_flickr_id": "4432098824", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "49984", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was fun going to the market that day .", "storylet_id": "249920"}], [{"original_text": "Watching her make the noodles was very interesting.", "album_id": "72157623492838109", "photo_flickr_id": "4432099612", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "49984", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "watching her make the noodles was very interesting .", "storylet_id": "249921"}], [{"original_text": "The place smelled like fish though.", "album_id": "72157623492838109", "photo_flickr_id": "4432102780", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "49984", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the place smelled like fish though .", "storylet_id": "249922"}], [{"original_text": "We were trying to decide how much we wanted to buy for dinner.", "album_id": "72157623492838109", "photo_flickr_id": "4432104266", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "49984", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were trying to decide how much we wanted to buy for dinner .", "storylet_id": "249923"}], [{"original_text": "Even the son got a toy out of the trip.", "album_id": "72157623492838109", "photo_flickr_id": "4431335509", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "49984", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the son got a toy out of the trip .", "storylet_id": "249924"}], [{"original_text": "When the guys get together, they like to drink.", "album_id": "72157623620043998", "photo_flickr_id": "4432552129", "setting": "first-2-pick-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "49985", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when the guys get together , they like to drink .", "storylet_id": "249925"}], [{"original_text": "Everyone sits around the family room playing their own games.", "album_id": "72157623620043998", "photo_flickr_id": "4432552775", "setting": "first-2-pick-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "49985", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone sits around the family room playing their own games .", "storylet_id": "249926"}], [{"original_text": "Dad is really involved in this racing game.", "album_id": "72157623620043998", "photo_flickr_id": "4432554133", "setting": "first-2-pick-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "49985", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad is really involved in this racing game .", "storylet_id": "249927"}], [{"original_text": "After sitting inside for a while, we decided to go out to get some fresh air.", "album_id": "72157623620043998", "photo_flickr_id": "4433328732", "setting": "first-2-pick-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "49985", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after sitting inside for a while , we decided to go out to get some fresh air .", "storylet_id": "249928"}], [{"original_text": "We played a good old fashioned game of catch.", "album_id": "72157623620043998", "photo_flickr_id": "4433329372", "setting": "first-2-pick-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "49985", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we played a good old fashioned game of catch .", "storylet_id": "249929"}], [{"original_text": "At Kenny's party, lots of folks hung out in the back yard playing catch.", "album_id": "72157623620043998", "photo_flickr_id": "4433328732", "setting": "first-2-pick-and-tell", "worker_id": "0MQRHC19TGMPXK7", "story_id": "49986", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at [male] 's party , lots of folks hung out in the back yard playing catch .", "storylet_id": "249930"}], [{"original_text": "They all enjoyed getting outside for some football.", "album_id": "72157623620043998", "photo_flickr_id": "4433329372", "setting": "first-2-pick-and-tell", "worker_id": "0MQRHC19TGMPXK7", "story_id": "49986", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all enjoyed getting outside for some football .", "storylet_id": "249931"}], [{"original_text": "Some people mostly liked throwing the ball.", "album_id": "72157623620043998", "photo_flickr_id": "4433330776", "setting": "first-2-pick-and-tell", "worker_id": "0MQRHC19TGMPXK7", "story_id": "49986", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people mostly liked throwing the ball .", "storylet_id": "249932"}], [{"original_text": "Other people mostly liked catching.", "album_id": "72157623620043998", "photo_flickr_id": "4432560133", "setting": "first-2-pick-and-tell", "worker_id": "0MQRHC19TGMPXK7", "story_id": "49986", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other people mostly liked catching .", "storylet_id": "249933"}], [{"original_text": "Everyone had fun, even people who decided to sit a round out.", "album_id": "72157623620043998", "photo_flickr_id": "4433332254", "setting": "first-2-pick-and-tell", "worker_id": "0MQRHC19TGMPXK7", "story_id": "49986", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had fun , even people who decided to sit a round out .", "storylet_id": "249934"}], [{"original_text": "The brothers took a picture together. ", "album_id": "72157623620043998", "photo_flickr_id": "4432552129", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49987", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the brothers took a picture together .", "storylet_id": "249935"}], [{"original_text": "He watched TV as the kids played on their laptops. ", "album_id": "72157623620043998", "photo_flickr_id": "4432552775", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49987", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he watched tv as the kids played on their laptops .", "storylet_id": "249936"}], [{"original_text": "He was into the scary movie. ", "album_id": "72157623620043998", "photo_flickr_id": "4432554133", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49987", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was into the scary movie .", "storylet_id": "249937"}], [{"original_text": "They went outside to play football. ", "album_id": "72157623620043998", "photo_flickr_id": "4433328732", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49987", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they went outside to play football .", "storylet_id": "249938"}], [{"original_text": "Oh no, the football was thrown too high. ", "album_id": "72157623620043998", "photo_flickr_id": "4433329372", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "49987", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "oh no , the football was thrown too high .", "storylet_id": "249939"}], [{"original_text": "The man and his brother had a great time on the holiday.", "album_id": "72157623620043998", "photo_flickr_id": "4432552129", "setting": "last-3-pick-old-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "49988", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man and his brother had a great time on the holiday .", "storylet_id": "249940"}], [{"original_text": "They spent lots of time playing together.", "album_id": "72157623620043998", "photo_flickr_id": "4432552775", "setting": "last-3-pick-old-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "49988", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they spent lots of time playing together .", "storylet_id": "249941"}], [{"original_text": "They played video games.", "album_id": "72157623620043998", "photo_flickr_id": "4432554133", "setting": "last-3-pick-old-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "49988", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they played video games .", "storylet_id": "249942"}], [{"original_text": "They even went outside.", "album_id": "72157623620043998", "photo_flickr_id": "4433328732", "setting": "last-3-pick-old-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "49988", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even went outside .", "storylet_id": "249943"}], [{"original_text": "They played football together.", "album_id": "72157623620043998", "photo_flickr_id": "4433329372", "setting": "last-3-pick-old-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "49988", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they played football together .", "storylet_id": "249944"}], [{"original_text": "My best buddy Larry is such a goofball.", "album_id": "72157623620043998", "photo_flickr_id": "4432552129", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49989", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my best buddy [male] is such a goofball .", "storylet_id": "249945"}], [{"original_text": "We are always fooling around, playing video games and being silly.", "album_id": "72157623620043998", "photo_flickr_id": "4432552775", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49989", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are always fooling around , playing video games and being silly .", "storylet_id": "249946"}], [{"original_text": "I usually beat him. He's no good at video games.", "album_id": "72157623620043998", "photo_flickr_id": "4432554133", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49989", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i usually beat him . he 's no good at video games .", "storylet_id": "249947"}], [{"original_text": "But when we go outside for football, he beats me.", "album_id": "72157623620043998", "photo_flickr_id": "4433328732", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49989", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but when we go outside for football , he beats me .", "storylet_id": "249948"}], [{"original_text": "Either way, we have a great time together.", "album_id": "72157623620043998", "photo_flickr_id": "4433329372", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "49989", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "either way , we have a great time together .", "storylet_id": "249949"}], [{"original_text": "Two women sit at a restaurant table and eat their dinner.", "album_id": "72157623496934551", "photo_flickr_id": "4433197035", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49990", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two women sit at a restaurant table and eat their dinner .", "storylet_id": "249950"}], [{"original_text": "They walk through the restaurant and see statues standing in a corner.", "album_id": "72157623496934551", "photo_flickr_id": "4433971274", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49990", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they walk through the restaurant and see statues standing in a corner .", "storylet_id": "249951"}], [{"original_text": "The beach is next and they take a bike ride.", "album_id": "72157623496934551", "photo_flickr_id": "4433971786", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49990", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beach is next and they take a bike ride .", "storylet_id": "249952"}], [{"original_text": "The coast of the beach has gorgeous mountains and trees.", "album_id": "72157623496934551", "photo_flickr_id": "4433198409", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49990", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the coast of the beach has gorgeous mountains and trees .", "storylet_id": "249953"}], [{"original_text": "The two women pose by the ocean for a final picture.", "album_id": "72157623496934551", "photo_flickr_id": "4433972608", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "49990", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the two women pose by the ocean for a final picture .", "storylet_id": "249954"}], [{"original_text": "It was a beautiful spring morning in May, not so long ago.", "album_id": "72157623496934551", "photo_flickr_id": "4433198683", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49991", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful spring morning in [female] , not so long ago .", "storylet_id": "249955"}], [{"original_text": "Martha and Louis, who had been friends forever, decided to spend the day at the beach. ", "album_id": "72157623496934551", "photo_flickr_id": "4433972608", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49991", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] and [male] , who had been friends forever , decided to spend the day at the beach .", "storylet_id": "249956"}], [{"original_text": "They walked along the path by the shore, greeting the people they met along the way. ", "album_id": "72157623496934551", "photo_flickr_id": "4433971786", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49991", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they walked along the path by the shore , greeting the people they met along the way .", "storylet_id": "249957"}], [{"original_text": "Then, they walked along the shoreline until they came to the lighthouse. ", "album_id": "72157623496934551", "photo_flickr_id": "4433198409", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49991", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , they walked along the shoreline until they came to the lighthouse .", "storylet_id": "249958"}], [{"original_text": "It was a long and lovely day which they finished by watching the sunset together from the shore. ", "album_id": "72157623496934551", "photo_flickr_id": "4433198861", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "49991", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a long and lovely day which they finished by watching the sunset together from the shore .", "storylet_id": "249959"}], [{"original_text": "I took the kids to the coast for some sightseeing after lunch.", "album_id": "72157623496934551", "photo_flickr_id": "4433197035", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49992", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took the kids to the coast for some sightseeing after lunch .", "storylet_id": "249960"}], [{"original_text": "These statues were taller than us!", "album_id": "72157623496934551", "photo_flickr_id": "4433971274", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49992", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these statues were taller than us !", "storylet_id": "249961"}], [{"original_text": "We rode bikes along the beach.", "album_id": "72157623496934551", "photo_flickr_id": "4433971786", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49992", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we rode bikes along the beach .", "storylet_id": "249962"}], [{"original_text": "We also saw this beautiful lighthouse.", "album_id": "72157623496934551", "photo_flickr_id": "4433198409", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49992", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also saw this beautiful lighthouse .", "storylet_id": "249963"}], [{"original_text": "I had to get a photo with the path and lighthouse in the background.", "album_id": "72157623496934551", "photo_flickr_id": "4433972608", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "49992", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had to get a photo with the path and lighthouse in the background .", "storylet_id": "249964"}], [{"original_text": "Family and old friends got together for a trip by the coast.", "album_id": "72157623496934551", "photo_flickr_id": "4433197035", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "49993", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family and old friends got together for a trip by the coast .", "storylet_id": "249965"}], [{"original_text": "The daughter is still not as tall as she wishes she was.", "album_id": "72157623496934551", "photo_flickr_id": "4433971274", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "49993", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the daughter is still not as tall as she wishes she was .", "storylet_id": "249966"}], [{"original_text": "There is a bike path you can take for miles by the ocean.", "album_id": "72157623496934551", "photo_flickr_id": "4433971786", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "49993", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is a bike path you can take for miles by the ocean .", "storylet_id": "249967"}], [{"original_text": "It is very introspective to watch the waves slowly crash into the shore.", "album_id": "72157623496934551", "photo_flickr_id": "4433198409", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "49993", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is very introspective to watch the waves slowly crash into the shore .", "storylet_id": "249968"}], [{"original_text": "Day trips with nature always help families bond.", "album_id": "72157623496934551", "photo_flickr_id": "4433972608", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "49993", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "day trips with nature always help families bond .", "storylet_id": "249969"}], [{"original_text": "this was the sunset from our first morning on vacation", "album_id": "72157623496934551", "photo_flickr_id": "4433198683", "setting": "last-3-pick-old-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49994", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the sunset from our first morning on vacation", "storylet_id": "249970"}], [{"original_text": "John and I posing for our pictures with the lighthouse in the background", "album_id": "72157623496934551", "photo_flickr_id": "4433972608", "setting": "last-3-pick-old-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49994", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] and i posing for our pictures with the lighthouse in the background", "storylet_id": "249971"}], [{"original_text": "This is me bike rdiing along the ocean............ What beautiful scenery", "album_id": "72157623496934551", "photo_flickr_id": "4433971786", "setting": "last-3-pick-old-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49994", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is me bike rdiing along the ocean ... ... ... ... what beautiful scenery", "storylet_id": "249972"}], [{"original_text": "I love this photo from vacation", "album_id": "72157623496934551", "photo_flickr_id": "4433198409", "setting": "last-3-pick-old-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49994", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love this photo from vacation", "storylet_id": "249973"}], [{"original_text": "I took this picture of the sunset our last morning on vacation", "album_id": "72157623496934551", "photo_flickr_id": "4433198861", "setting": "last-3-pick-old-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "49994", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i took this picture of the sunset our last morning on vacation", "storylet_id": "249974"}], [{"original_text": "its a barber yumyum virtual world", "album_id": "72157623219655434", "photo_flickr_id": "4277778827", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49995", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "its a barber yumyum virtual world", "storylet_id": "249975"}], [{"original_text": "you can create your own icecream", "album_id": "72157623219655434", "photo_flickr_id": "4277805505", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49995", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you can create your own icecream", "storylet_id": "249976"}], [{"original_text": "or take a ride on the virtual carousel ", "album_id": "72157623219655434", "photo_flickr_id": "4277810989", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49995", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "or take a ride on the virtual carousel", "storylet_id": "249977"}], [{"original_text": "it shows you life is like a puzzle", "album_id": "72157623219655434", "photo_flickr_id": "4277814651", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49995", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it shows you life is like a puzzle", "storylet_id": "249978"}], [{"original_text": "and you build coliseums of life ", "album_id": "72157623219655434", "photo_flickr_id": "4278575712", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "49995", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and you build coliseums of life", "storylet_id": "249979"}], [{"original_text": "I finally got my hands on the newest game to hit the market and it's complete with realistic looking vending machines.", "album_id": "72157623219655434", "photo_flickr_id": "4278487492", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49996", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finally got my hands on the newest game to hit the market and it 's complete with realistic looking vending machines .", "storylet_id": "249980"}], [{"original_text": "After walking around the area a bit I also ran into a realistic looking statue in the center of the room.", "album_id": "72157623219655434", "photo_flickr_id": "4278494796", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49996", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after walking around the area a bit i also ran into a realistic looking statue in the center of the room .", "storylet_id": "249981"}], [{"original_text": "If your into makeup and advertising there is no need to worry because this game has that too.", "album_id": "72157623219655434", "photo_flickr_id": "4277756303", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49996", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "if your into makeup and advertising there is no need to worry because this game has that too .", "storylet_id": "249982"}], [{"original_text": "An outside look at the shopping mall from the parking lot.", "album_id": "72157623219655434", "photo_flickr_id": "4278527868", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49996", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an outside look at the shopping mall from the parking lot .", "storylet_id": "249983"}], [{"original_text": "Another store complete with a full size display and various clothes. ", "album_id": "72157623219655434", "photo_flickr_id": "4277854799", "setting": "first-2-pick-and-tell", "worker_id": "1SARHJW7YZH0WT9", "story_id": "49996", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "another store complete with a full size display and various clothes .", "storylet_id": "249984"}], [{"original_text": "The new computer technologies had allowed us to make significant strides in signs.", "album_id": "72157623219655434", "photo_flickr_id": "4277778827", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49997", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the new computer technologies had allowed us to make significant strides in signs .", "storylet_id": "249985"}], [{"original_text": "And, other types of designs or logos.", "album_id": "72157623219655434", "photo_flickr_id": "4277805505", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49997", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and , other types of designs or logos .", "storylet_id": "249986"}], [{"original_text": "I even learned to make abstract images..", "album_id": "72157623219655434", "photo_flickr_id": "4277810989", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49997", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i even learned to make abstract images..", "storylet_id": "249987"}], [{"original_text": "Like, this colorful puzzle.", "album_id": "72157623219655434", "photo_flickr_id": "4277814651", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49997", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "like , this colorful puzzle .", "storylet_id": "249988"}], [{"original_text": "I finished my education with buildings.", "album_id": "72157623219655434", "photo_flickr_id": "4278575712", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "49997", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i finished my education with buildings .", "storylet_id": "249989"}], [{"original_text": "You can explore a whole new world as a new character in video games.", "album_id": "72157623219655434", "photo_flickr_id": "4277778827", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "49998", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "you can explore a whole new world as a new character in video games .", "storylet_id": "249990"}], [{"original_text": "You can shop for accessories for your online avatar.", "album_id": "72157623219655434", "photo_flickr_id": "4277805505", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "49998", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you can shop for accessories for your online avatar .", "storylet_id": "249991"}], [{"original_text": "You can send your online persona out into the world and play games.", "album_id": "72157623219655434", "photo_flickr_id": "4277810989", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "49998", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you can send your online persona out into the world and play games .", "storylet_id": "249992"}], [{"original_text": "You can explore a world where the laws of physics sometimes work a little different.", "album_id": "72157623219655434", "photo_flickr_id": "4277814651", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "49998", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you can explore a world where the laws of physics sometimes work a little different .", "storylet_id": "249993"}], [{"original_text": "You can experience different seasons in just a few minutes.", "album_id": "72157623219655434", "photo_flickr_id": "4278575712", "setting": "last-3-pick-old-and-tell", "worker_id": "IDM4BSQ6IM7FR2A", "story_id": "49998", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you can experience different seasons in just a few minutes .", "storylet_id": "249994"}], [{"original_text": "I learned how to play a new game. My character was Barber Yumyum.", "album_id": "72157623219655434", "photo_flickr_id": "4277778827", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "49999", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i learned how to play a new game . my character was barber yumyum .", "storylet_id": "249995"}], [{"original_text": "The game was like being on an LSD trip.", "album_id": "72157623219655434", "photo_flickr_id": "4277805505", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "49999", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the game was like being on an lsd trip .", "storylet_id": "249996"}], [{"original_text": "There was a strange spaceship looking thing.", "album_id": "72157623219655434", "photo_flickr_id": "4277810989", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "49999", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a strange spaceship looking thing .", "storylet_id": "249997"}], [{"original_text": "And puzzle pieces I wasn't sure what to do with.", "album_id": "72157623219655434", "photo_flickr_id": "4277814651", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "49999", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and puzzle pieces i was n't sure what to do with .", "storylet_id": "249998"}], [{"original_text": "You also could build things.", "album_id": "72157623219655434", "photo_flickr_id": "4278575712", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "49999", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you also could build things .", "storylet_id": "249999"}], [{"original_text": "Today was the day.", "album_id": "72157623449162982", "photo_flickr_id": "4363559410", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "50000", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day .", "storylet_id": "250000"}], [{"original_text": "Everyone was there.", "album_id": "72157623449162982", "photo_flickr_id": "4362821043", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "50000", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was there .", "storylet_id": "250001"}], [{"original_text": "It was packed.", "album_id": "72157623449162982", "photo_flickr_id": "4363561824", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "50000", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was packed .", "storylet_id": "250002"}], [{"original_text": "Then came the speech.", "album_id": "72157623449162982", "photo_flickr_id": "4363560336", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "50000", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then came the speech .", "storylet_id": "250003"}], [{"original_text": "And then the awards.", "album_id": "72157623449162982", "photo_flickr_id": "4363564808", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "50000", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then the awards .", "storylet_id": "250004"}], [{"original_text": "I got to the ceremony and there was already people there.", "album_id": "72157623449162982", "photo_flickr_id": "4363561824", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50001", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got to the ceremony and there was already people there .", "storylet_id": "250005"}], [{"original_text": "They served food there.", "album_id": "72157623449162982", "photo_flickr_id": "4363563716", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50001", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they served food there .", "storylet_id": "250006"}], [{"original_text": "The speakers had a lot of speeches prepared.", "album_id": "72157623449162982", "photo_flickr_id": "4363560336", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50001", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the speakers had a lot of speeches prepared .", "storylet_id": "250007"}], [{"original_text": "There were many of them.", "album_id": "72157623449162982", "photo_flickr_id": "4363566402", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50001", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many of them .", "storylet_id": "250008"}], [{"original_text": "They talked for hours.", "album_id": "72157623449162982", "photo_flickr_id": "4363560936", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50001", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they talked for hours .", "storylet_id": "250009"}], [{"original_text": "The group gathered together to celebrate a wonderful man today..", "album_id": "72157623449162982", "photo_flickr_id": "4363559410", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50002", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group gathered together to celebrate a wonderful man today..", "storylet_id": "250010"}], [{"original_text": "Colleagues from all over the country came to sit with him and converse.", "album_id": "72157623449162982", "photo_flickr_id": "4362821043", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50002", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "colleagues from all over the country came to sit with him and converse .", "storylet_id": "250011"}], [{"original_text": "It appeared over 50 educated lecturers had came to the award ceremony.", "album_id": "72157623449162982", "photo_flickr_id": "4363561824", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50002", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it appeared over 50 educated lecturers had came to the award ceremony .", "storylet_id": "250012"}], [{"original_text": "And, finally, the dean took the podium.", "album_id": "72157623449162982", "photo_flickr_id": "4363560336", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50002", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , finally , the dean took the podium .", "storylet_id": "250013"}], [{"original_text": "He presented Mr. Ward with his award and they celebrated his accomplishment.", "album_id": "72157623449162982", "photo_flickr_id": "4363564808", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50002", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he presented mr. [male] with his award and they celebrated his accomplishment .", "storylet_id": "250014"}], [{"original_text": "There was an event today for the elders.", "album_id": "72157623449162982", "photo_flickr_id": "4363561824", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "50003", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an event today for the elders .", "storylet_id": "250015"}], [{"original_text": "Everyone was having a great time talking and communicating.", "album_id": "72157623449162982", "photo_flickr_id": "4363563716", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "50003", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was having a great time talking and communicating .", "storylet_id": "250016"}], [{"original_text": "There was a even a man on stage to give a speech.", "album_id": "72157623449162982", "photo_flickr_id": "4363560336", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "50003", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a even a man on stage to give a speech .", "storylet_id": "250017"}], [{"original_text": "A woman also had something she wanted to say to the crowd.", "album_id": "72157623449162982", "photo_flickr_id": "4363566402", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "50003", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a woman also had something she wanted to say to the crowd .", "storylet_id": "250018"}], [{"original_text": "Overall, there were three people giving speeches and each of them were important.", "album_id": "72157623449162982", "photo_flickr_id": "4363560936", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "50003", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall , there were three people giving speeches and each of them were important .", "storylet_id": "250019"}], [{"original_text": "The father was happy", "album_id": "72157623449162982", "photo_flickr_id": "4363559410", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50004", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the father was happy", "storylet_id": "250020"}], [{"original_text": "that they were coming to eat with him.", "album_id": "72157623449162982", "photo_flickr_id": "4362821043", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50004", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that they were coming to eat with him .", "storylet_id": "250021"}], [{"original_text": "Everyone sat down", "album_id": "72157623449162982", "photo_flickr_id": "4363561824", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50004", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone sat down", "storylet_id": "250022"}], [{"original_text": "to hear the guy talk", "album_id": "72157623449162982", "photo_flickr_id": "4363560336", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50004", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to hear the guy talk", "storylet_id": "250023"}], [{"original_text": "before he left the event.", "album_id": "72157623449162982", "photo_flickr_id": "4363564808", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50004", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before he left the event .", "storylet_id": "250024"}], [{"original_text": "The old train station has been meticulously restored. ", "album_id": "72157623321729475", "photo_flickr_id": "4361745963", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "50005", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old train station has been meticulously restored .", "storylet_id": "250025"}], [{"original_text": "The old engine is as pristine as it was when it was new.", "album_id": "72157623321729475", "photo_flickr_id": "4362484314", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "50005", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the old engine is as pristine as it was when it was new .", "storylet_id": "250026"}], [{"original_text": "The crew puts a lot of work into keeping things in top order.", "album_id": "72157623321729475", "photo_flickr_id": "4362527752", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "50005", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crew puts a lot of work into keeping things in top order .", "storylet_id": "250027"}], [{"original_text": "The green engine looks good pulling the three red cars. ", "album_id": "72157623321729475", "photo_flickr_id": "4361742331", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "50005", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the green engine looks good pulling the three red cars .", "storylet_id": "250028"}], [{"original_text": "No train station would be complete without it's mascot.", "album_id": "72157623321729475", "photo_flickr_id": "4362497214", "setting": "first-2-pick-and-tell", "worker_id": "IPTU5JU7N6SWWVT", "story_id": "50005", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "no train station would be complete without it 's mascot .", "storylet_id": "250029"}], [{"original_text": "The boys like the steam engine.", "album_id": "72157623321729475", "photo_flickr_id": "4361738007", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "50006", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boys like the steam engine .", "storylet_id": "250030"}], [{"original_text": "The green looks fresh.", "album_id": "72157623321729475", "photo_flickr_id": "4362482338", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "50006", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the green looks fresh .", "storylet_id": "250031"}], [{"original_text": "It still works well.", "album_id": "72157623321729475", "photo_flickr_id": "4362483008", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "50006", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it still works well .", "storylet_id": "250032"}], [{"original_text": "They let people still ride.", "album_id": "72157623321729475", "photo_flickr_id": "4362483642", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "50006", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they let people still ride .", "storylet_id": "250033"}], [{"original_text": "We will take the boys soon.", "album_id": "72157623321729475", "photo_flickr_id": "4362484314", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "50006", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we will take the boys soon .", "storylet_id": "250034"}], [{"original_text": "Today we went to the train museum.", "album_id": "72157623321729475", "photo_flickr_id": "4361738007", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "50007", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to the train museum .", "storylet_id": "250035"}], [{"original_text": "There was a train named Edward Thomas.", "album_id": "72157623321729475", "photo_flickr_id": "4362482338", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "50007", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a train named [male] [male] .", "storylet_id": "250036"}], [{"original_text": "It was green and red.", "album_id": "72157623321729475", "photo_flickr_id": "4362483008", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "50007", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was green and red .", "storylet_id": "250037"}], [{"original_text": "It looked very nostalgic and reminded me of my childhood.", "album_id": "72157623321729475", "photo_flickr_id": "4362483642", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "50007", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looked very nostalgic and reminded me of my childhood .", "storylet_id": "250038"}], [{"original_text": "The kids and I had a lot of fun.", "album_id": "72157623321729475", "photo_flickr_id": "4362484314", "setting": "last-3-pick-old-and-tell", "worker_id": "39D5Y0KG5DVUVV9", "story_id": "50007", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids and i had a lot of fun .", "storylet_id": "250039"}], [{"original_text": "I went to the train station yesterday.", "album_id": "72157623321729475", "photo_flickr_id": "4361745963", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50008", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the train station yesterday .", "storylet_id": "250040"}], [{"original_text": "When my train showed up we got on.", "album_id": "72157623321729475", "photo_flickr_id": "4362484314", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50008", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when my train showed up we got on .", "storylet_id": "250041"}], [{"original_text": "It was going to be a long ride.", "album_id": "72157623321729475", "photo_flickr_id": "4362527752", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50008", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was going to be a long ride .", "storylet_id": "250042"}], [{"original_text": "The train was not very long.", "album_id": "72157623321729475", "photo_flickr_id": "4361742331", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50008", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the train was not very long .", "storylet_id": "250043"}], [{"original_text": "I brought my dog with me.", "album_id": "72157623321729475", "photo_flickr_id": "4362497214", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50008", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i brought my dog with me .", "storylet_id": "250044"}], [{"original_text": "I decided my dog would like a train ride. Off to the train station we go.", "album_id": "72157623321729475", "photo_flickr_id": "4361745963", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50009", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided my dog would like a train ride . off to the train station we go .", "storylet_id": "250045"}], [{"original_text": "This is the train we will be taking our short trip on.", "album_id": "72157623321729475", "photo_flickr_id": "4362484314", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50009", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the train we will be taking our short trip on .", "storylet_id": "250046"}], [{"original_text": "My friend is the conductor. He is getting ready to attach the cars.", "album_id": "72157623321729475", "photo_flickr_id": "4362527752", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50009", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend is the conductor . he is getting ready to attach the cars .", "storylet_id": "250047"}], [{"original_text": "Here is the train all together.", "album_id": "72157623321729475", "photo_flickr_id": "4361742331", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50009", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is the train all together .", "storylet_id": "250048"}], [{"original_text": "As you can see, my dog had a fantastic time.", "album_id": "72157623321729475", "photo_flickr_id": "4362497214", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50009", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as you can see , my dog had a fantastic time .", "storylet_id": "250049"}], [{"original_text": "I went to the beach last Christmas.", "album_id": "72157623104927681", "photo_flickr_id": "4281973885", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50010", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the beach last christmas .", "storylet_id": "250050"}], [{"original_text": "There was no snow on the roads.", "album_id": "72157623104927681", "photo_flickr_id": "4282718892", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50010", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was no snow on the roads .", "storylet_id": "250051"}], [{"original_text": "When I got to the beach there were some flowers three.", "album_id": "72157623104927681", "photo_flickr_id": "4281976931", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50010", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when i got to the beach there were some flowers three .", "storylet_id": "250052"}], [{"original_text": "I picked them up and took them with me.", "album_id": "72157623104927681", "photo_flickr_id": "4281977367", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50010", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i picked them up and took them with me .", "storylet_id": "250053"}], [{"original_text": "I had a great time.", "album_id": "72157623104927681", "photo_flickr_id": "4281977833", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50010", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time .", "storylet_id": "250054"}], [{"original_text": "There is beauty in an old town in winter.", "album_id": "72157623104927681", "photo_flickr_id": "4282718892", "setting": "first-2-pick-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "50011", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is beauty in an old town in winter .", "storylet_id": "250055"}], [{"original_text": "The snow begins to melt, and the seagulls come out to bathe.", "album_id": "72157623104927681", "photo_flickr_id": "4281974887", "setting": "first-2-pick-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "50011", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the snow begins to melt , and the seagulls come out to bathe .", "storylet_id": "250056"}], [{"original_text": "If you look closely, you might find sharks teeth intermixed with the shells on the water's edge. ", "album_id": "72157623104927681", "photo_flickr_id": "4281975241", "setting": "first-2-pick-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "50011", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "if you look closely , you might find sharks teeth intermixed with the shells on the water 's edge .", "storylet_id": "250057"}], [{"original_text": "Some of the headstones have aged and gained new aesthetic appeal.", "album_id": "72157623104927681", "photo_flickr_id": "4281977833", "setting": "first-2-pick-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "50011", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the headstones have aged and gained new aesthetic appeal .", "storylet_id": "250058"}], [{"original_text": "This gravestone, with leaves carefully placed, makes for a wonderful photograph.", "album_id": "72157623104927681", "photo_flickr_id": "4282724700", "setting": "first-2-pick-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "50011", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this gravestone , with leaves carefully placed , makes for a wonderful photograph .", "storylet_id": "250059"}], [{"original_text": "History is important to everyone.", "album_id": "72157623104927681", "photo_flickr_id": "4281973885", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "50012", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "history is important to everyone .", "storylet_id": "250060"}], [{"original_text": "It tells us where we came from and how we got where we are.", "album_id": "72157623104927681", "photo_flickr_id": "4282718892", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "50012", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it tells us where we came from and how we got where we are .", "storylet_id": "250061"}], [{"original_text": "Graves are sad,", "album_id": "72157623104927681", "photo_flickr_id": "4281976931", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "50012", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "graves are sad ,", "storylet_id": "250062"}], [{"original_text": "but they remind us of those once loved.", "album_id": "72157623104927681", "photo_flickr_id": "4281977367", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "50012", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but they remind us of those once loved .", "storylet_id": "250063"}], [{"original_text": "Their lives may have been short, but their significance cannot be measured.", "album_id": "72157623104927681", "photo_flickr_id": "4281977833", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "50012", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their lives may have been short , but their significance can not be measured .", "storylet_id": "250064"}], [{"original_text": "The road was clear of snow", "album_id": "72157623104927681", "photo_flickr_id": "4282718892", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50013", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the road was clear of snow", "storylet_id": "250065"}], [{"original_text": "near the water.", "album_id": "72157623104927681", "photo_flickr_id": "4281974887", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50013", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "near the water .", "storylet_id": "250066"}], [{"original_text": "There was a man kneeling", "album_id": "72157623104927681", "photo_flickr_id": "4281975241", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50013", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a man kneeling", "storylet_id": "250067"}], [{"original_text": "near the grave", "album_id": "72157623104927681", "photo_flickr_id": "4281977833", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50013", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "near the grave", "storylet_id": "250068"}], [{"original_text": "of someone that he knew.", "album_id": "72157623104927681", "photo_flickr_id": "4282724700", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50013", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of someone that he knew .", "storylet_id": "250069"}], [{"original_text": "we went for a walk down my street", "album_id": "72157623104927681", "photo_flickr_id": "4282718892", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50014", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went for a walk down my street", "storylet_id": "250070"}], [{"original_text": "we found an ocean", "album_id": "72157623104927681", "photo_flickr_id": "4281974887", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50014", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we found an ocean", "storylet_id": "250071"}], [{"original_text": "there was a lady praying ", "album_id": "72157623104927681", "photo_flickr_id": "4281975241", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50014", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a lady praying", "storylet_id": "250072"}], [{"original_text": "she was at a grave by the water", "album_id": "72157623104927681", "photo_flickr_id": "4281977833", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50014", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was at a grave by the water", "storylet_id": "250073"}], [{"original_text": "someone else was buried near by as well", "album_id": "72157623104927681", "photo_flickr_id": "4282724700", "setting": "last-3-pick-old-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50014", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someone else was buried near by as well", "storylet_id": "250074"}], [{"original_text": "Sally was taking some budoir photos for her boyfriend.", "album_id": "72157623339819153", "photo_flickr_id": "4369751676", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "50015", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was taking some budoir photos for her boyfriend .", "storylet_id": "250075"}], [{"original_text": "He was fighting oversees and she wanted to look her best.", "album_id": "72157623339819153", "photo_flickr_id": "4369003831", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "50015", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was fighting oversees and she wanted to look her best .", "storylet_id": "250076"}], [{"original_text": "She enjoyed posing and smiling for the camera.", "album_id": "72157623339819153", "photo_flickr_id": "4369003879", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "50015", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she enjoyed posing and smiling for the camera .", "storylet_id": "250077"}], [{"original_text": "She knew the photos would get passed around the barracks, but as long as he was happy she didn't care.", "album_id": "72157623339819153", "photo_flickr_id": "4369004005", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "50015", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she knew the photos would get passed around the barracks , but as long as he was happy she did n't care .", "storylet_id": "250078"}], [{"original_text": "She just wanted him to remember her while he was gone. ", "album_id": "72157623339819153", "photo_flickr_id": "4369004199", "setting": "first-2-pick-and-tell", "worker_id": "0CHPLJ5JPZXENAX", "story_id": "50015", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she just wanted him to remember her while he was gone .", "storylet_id": "250079"}], [{"original_text": "The model was super cute, she loved showing off her body.", "album_id": "72157623339819153", "photo_flickr_id": "4369003781", "setting": "first-2-pick-and-tell", "worker_id": "G4LJ8VQUN4V0909", "story_id": "50016", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the model was super cute , she loved showing off her body .", "storylet_id": "250080"}], [{"original_text": "She lied on the bed very innocently.", "album_id": "72157623339819153", "photo_flickr_id": "4369003831", "setting": "first-2-pick-and-tell", "worker_id": "G4LJ8VQUN4V0909", "story_id": "50016", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she lied on the bed very innocently .", "storylet_id": "250081"}], [{"original_text": "She continued showing off her body at all angles. ", "album_id": "72157623339819153", "photo_flickr_id": "4369003915", "setting": "first-2-pick-and-tell", "worker_id": "G4LJ8VQUN4V0909", "story_id": "50016", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she continued showing off her body at all angles .", "storylet_id": "250082"}], [{"original_text": "A nice view from the back.", "album_id": "72157623339819153", "photo_flickr_id": "4369004005", "setting": "first-2-pick-and-tell", "worker_id": "G4LJ8VQUN4V0909", "story_id": "50016", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a nice view from the back .", "storylet_id": "250083"}], [{"original_text": "She finally goes topless.", "album_id": "72157623339819153", "photo_flickr_id": "4369751990", "setting": "first-2-pick-and-tell", "worker_id": "G4LJ8VQUN4V0909", "story_id": "50016", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she finally goes topless .", "storylet_id": "250084"}], [{"original_text": "The girl posed for some boudior shots.", "album_id": "72157623339819153", "photo_flickr_id": "4369751676", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50017", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girl posed for some boudior shots .", "storylet_id": "250085"}], [{"original_text": "She dressed in lingerie.", "album_id": "72157623339819153", "photo_flickr_id": "4369003831", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50017", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she dressed in lingerie .", "storylet_id": "250086"}], [{"original_text": "She planned on giving the photos to her husband for his birthday.", "album_id": "72157623339819153", "photo_flickr_id": "4369003879", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50017", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she planned on giving the photos to her husband for his birthday .", "storylet_id": "250087"}], [{"original_text": "The photographer did a great job.", "album_id": "72157623339819153", "photo_flickr_id": "4369004005", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50017", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the photographer did a great job .", "storylet_id": "250088"}], [{"original_text": "They were risque but tasteful.", "album_id": "72157623339819153", "photo_flickr_id": "4369004199", "setting": "last-3-pick-old-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50017", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were risque but tasteful .", "storylet_id": "250089"}], [{"original_text": "She wanted to make her husband a calendar for his birthday and she started off with sexy plaid.", "album_id": "72157623339819153", "photo_flickr_id": "4369751676", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50018", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she wanted to make her husband a calendar for his birthday and she started off with sexy plaid .", "storylet_id": "250090"}], [{"original_text": "She then wanted to play the devil..", "album_id": "72157623339819153", "photo_flickr_id": "4369003831", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50018", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she then wanted to play the devil..", "storylet_id": "250091"}], [{"original_text": "And, show that she would get more and more risqu\u00c3\u0192\u00c2\u00a9.", "album_id": "72157623339819153", "photo_flickr_id": "4369003879", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50018", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and , show that she would get more and more risqu\u00c3\u0192\u00c6\u2019\u00c3\u201a\u00c2\u00a9 .", "storylet_id": "250092"}], [{"original_text": "She showed her nice buttocks, which is his favorite feature on her.", "album_id": "72157623339819153", "photo_flickr_id": "4369004005", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50018", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she showed her nice buttocks , which is his favorite feature on her .", "storylet_id": "250093"}], [{"original_text": "And, finished with a beautiful frontal.", "album_id": "72157623339819153", "photo_flickr_id": "4369004199", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50018", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , finished with a beautiful frontal .", "storylet_id": "250094"}], [{"original_text": "I'd like my wife to break into underwear modeling, so I took some shots of her.", "album_id": "72157623339819153", "photo_flickr_id": "4369751676", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50019", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 'd like my wife to break into underwear modeling , so i took some shots of her .", "storylet_id": "250095"}], [{"original_text": "I think she's as pretty as anyone I've seen in catalogs.", "album_id": "72157623339819153", "photo_flickr_id": "4369003831", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50019", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i think she 's as pretty as anyone i 've seen in catalogs .", "storylet_id": "250096"}], [{"original_text": "She has gorgeous hair, and she looks great in fancy clothes.", "album_id": "72157623339819153", "photo_flickr_id": "4369003879", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50019", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she has gorgeous hair , and she looks great in fancy clothes .", "storylet_id": "250097"}], [{"original_text": "It was fun taking the pictures!", "album_id": "72157623339819153", "photo_flickr_id": "4369004005", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50019", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was fun taking the pictures !", "storylet_id": "250098"}], [{"original_text": "I hope she gets a big contract soon. It will be fun for her, and would certainly help the budget!", "album_id": "72157623339819153", "photo_flickr_id": "4369004199", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50019", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope she gets a big contract soon . it will be fun for her , and would certainly help the budget !", "storylet_id": "250099"}], [{"original_text": "We decided to take a walk around town to see all the local stores.", "album_id": "72157623461262602", "photo_flickr_id": "4368531214", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "50020", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to take a walk around town to see all the local stores .", "storylet_id": "250100"}], [{"original_text": "We started bright and early in the morning, it was such a beautiful day.", "album_id": "72157623461262602", "photo_flickr_id": "4367786395", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "50020", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started bright and early in the morning , it was such a beautiful day .", "storylet_id": "250101"}], [{"original_text": "We stopped for lunch at the Bar Cafe and had a wonderful sandwhich.", "album_id": "72157623461262602", "photo_flickr_id": "4367789127", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "50020", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stopped for lunch at the location location and had a wonderful sandwhich .", "storylet_id": "250102"}], [{"original_text": "We then went to Copperfield's books and read and browsed for awhile.", "album_id": "72157623461262602", "photo_flickr_id": "4367794215", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "50020", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we then went to copperfield 's books and read and browsed for awhile .", "storylet_id": "250103"}], [{"original_text": "Finally,on our way back we stopped in to Popeyes for some delicious fried chicken.", "album_id": "72157623461262602", "photo_flickr_id": "4368543004", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "50020", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , on our way back we stopped in to popeyes for some delicious fried chicken .", "storylet_id": "250104"}], [{"original_text": "The friends tour the town and all of the attractions it hold.", "album_id": "72157623461262602", "photo_flickr_id": "4368531214", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50021", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends tour the town and all of the attractions it hold .", "storylet_id": "250105"}], [{"original_text": "There is a large shadow cast on the ground from one of the friends.", "album_id": "72157623461262602", "photo_flickr_id": "4368533902", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50021", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is a large shadow cast on the ground from one of the friends .", "storylet_id": "250106"}], [{"original_text": "A book store named Copperfield's is in the center of town.", "album_id": "72157623461262602", "photo_flickr_id": "4367794215", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50021", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a book store named copperfield 's is in the center of town .", "storylet_id": "250107"}], [{"original_text": "The store has many great books that can be purchased if you wish to do so.", "album_id": "72157623461262602", "photo_flickr_id": "4367793639", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50021", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the store has many great books that can be purchased if you wish to do so .", "storylet_id": "250108"}], [{"original_text": "The street is empty with not many cars or people.", "album_id": "72157623461262602", "photo_flickr_id": "4367800697", "setting": "first-2-pick-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50021", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the street is empty with not many cars or people .", "storylet_id": "250109"}], [{"original_text": "They took an evening stroll to visit the downtown area of the Irish City", "album_id": "72157623461262602", "photo_flickr_id": "4368531214", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50022", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they took an evening stroll to visit the downtown area of the irish city", "storylet_id": "250110"}], [{"original_text": "The beautiful windows and buildings afforded them a lovely scene.", "album_id": "72157623461262602", "photo_flickr_id": "4367786395", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50022", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the beautiful windows and buildings afforded them a lovely scene .", "storylet_id": "250111"}], [{"original_text": "They stopped at the caf\u00c3\u0192\u00c2\u00a9 and had a cup of coffee..", "album_id": "72157623461262602", "photo_flickr_id": "4367789127", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50022", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they stopped at the caf\u00c3\u0192\u00c6\u2019\u00c3\u201a\u00c2\u00a9 and had a cup of coffee..", "storylet_id": "250112"}], [{"original_text": "And, then went to the bookstore for some old Irish books..", "album_id": "72157623461262602", "photo_flickr_id": "4367794215", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50022", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , then went to the bookstore for some old irish books..", "storylet_id": "250113"}], [{"original_text": "And, finished the day at the local karaoke bar..", "album_id": "72157623461262602", "photo_flickr_id": "4368543004", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50022", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , finished the day at the local karaoke bar..", "storylet_id": "250114"}], [{"original_text": "I went to the bookstore yesterday.", "album_id": "72157623461262602", "photo_flickr_id": "4368531214", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50023", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the bookstore yesterday .", "storylet_id": "250115"}], [{"original_text": "It was a long walk.", "album_id": "72157623461262602", "photo_flickr_id": "4368533902", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50023", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a long walk .", "storylet_id": "250116"}], [{"original_text": "They have a great selection there.", "album_id": "72157623461262602", "photo_flickr_id": "4367794215", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50023", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they have a great selection there .", "storylet_id": "250117"}], [{"original_text": "There were a ton of books on display.", "album_id": "72157623461262602", "photo_flickr_id": "4367793639", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50023", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a ton of books on display .", "storylet_id": "250118"}], [{"original_text": "Afterward I was hungry so I left to grab something to eat.", "album_id": "72157623461262602", "photo_flickr_id": "4367800697", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50023", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward i was hungry so i left to grab something to eat .", "storylet_id": "250119"}], [{"original_text": "It was a charming old store. ", "album_id": "72157623461262602", "photo_flickr_id": "4368531214", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50024", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a charming old store .", "storylet_id": "250120"}], [{"original_text": "An old man was sitting outside the entrance. ", "album_id": "72157623461262602", "photo_flickr_id": "4368533902", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50024", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "an old man was sitting outside the entrance .", "storylet_id": "250121"}], [{"original_text": "Books were her great escape. ", "album_id": "72157623461262602", "photo_flickr_id": "4367794215", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50024", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "books were her great escape .", "storylet_id": "250122"}], [{"original_text": "She was a regular, stopping by weekly. ", "album_id": "72157623461262602", "photo_flickr_id": "4367793639", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50024", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was a regular , stopping by weekly .", "storylet_id": "250123"}], [{"original_text": "Today there wasn't much traffic which was good for her since she had walked. ", "album_id": "72157623461262602", "photo_flickr_id": "4367800697", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50024", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "today there was n't much traffic which was good for her since she had walked .", "storylet_id": "250124"}], [{"original_text": "The EPA was out protesting against contaminated water.", "album_id": "72157623519894743", "photo_flickr_id": "4442496311", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50025", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization was out protesting against contaminated water .", "storylet_id": "250125"}], [{"original_text": "The protest took place in front of their headquarters.", "album_id": "72157623519894743", "photo_flickr_id": "4443285166", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50025", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the protest took place in front of their headquarters .", "storylet_id": "250126"}], [{"original_text": "This shows one of the banners they put up.", "album_id": "72157623519894743", "photo_flickr_id": "4443907430", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50025", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this shows one of the banners they put up .", "storylet_id": "250127"}], [{"original_text": "They drew quite a crowd.", "album_id": "72157623519894743", "photo_flickr_id": "4443536344", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50025", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they drew quite a crowd .", "storylet_id": "250128"}], [{"original_text": "Other protesters walked the streets. I hope it made a difference.", "album_id": "72157623519894743", "photo_flickr_id": "4443535200", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50025", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "other protesters walked the streets . i hope it made a difference .", "storylet_id": "250129"}], [{"original_text": "I flew to Appalachia in March. ", "album_id": "72157623519894743", "photo_flickr_id": "4442514311", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "50026", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i flew to location in march .", "storylet_id": "250130"}], [{"original_text": "There was an EPA protest that I wanted to attend. ", "album_id": "72157623519894743", "photo_flickr_id": "4442465263", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "50026", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was an organization protest that i wanted to attend .", "storylet_id": "250131"}], [{"original_text": "It had to do with water contamination. ", "album_id": "72157623519894743", "photo_flickr_id": "4442466007", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "50026", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it had to do with water contamination .", "storylet_id": "250132"}], [{"original_text": "The turn out was pretty good. ", "album_id": "72157623519894743", "photo_flickr_id": "4443243720", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "50026", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the turn out was pretty good .", "storylet_id": "250133"}], [{"original_text": "This guy was still there when I was leaving. ", "album_id": "72157623519894743", "photo_flickr_id": "4443258584", "setting": "first-2-pick-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "50026", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this guy was still there when i was leaving .", "storylet_id": "250134"}], [{"original_text": "The protest occurred in front of the building. ", "album_id": "72157623519894743", "photo_flickr_id": "4442496311", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50027", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the protest occurred in front of the building .", "storylet_id": "250135"}], [{"original_text": "We set up tents in front of the EPA building. ", "album_id": "72157623519894743", "photo_flickr_id": "4443285166", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50027", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we set up tents in front of the organization building .", "storylet_id": "250136"}], [{"original_text": "We wanted people to be aware of our cause. ", "album_id": "72157623519894743", "photo_flickr_id": "4443907430", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50027", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we wanted people to be aware of our cause .", "storylet_id": "250137"}], [{"original_text": "A passerby asked us what our goals were. ", "album_id": "72157623519894743", "photo_flickr_id": "4443536344", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50027", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a passerby asked us what our goals were .", "storylet_id": "250138"}], [{"original_text": "Supporters came out to protest with us.", "album_id": "72157623519894743", "photo_flickr_id": "4443535200", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50027", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "supporters came out to protest with us .", "storylet_id": "250139"}], [{"original_text": "The building was large", "album_id": "72157623519894743", "photo_flickr_id": "4442496311", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50028", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the building was large", "storylet_id": "250140"}], [{"original_text": "and had a big sign.", "album_id": "72157623519894743", "photo_flickr_id": "4443285166", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50028", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and had a big sign .", "storylet_id": "250141"}], [{"original_text": "There was an event for water", "album_id": "72157623519894743", "photo_flickr_id": "4443907430", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50028", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was an event for water", "storylet_id": "250142"}], [{"original_text": "that many people attended", "album_id": "72157623519894743", "photo_flickr_id": "4443536344", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50028", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that many people attended", "storylet_id": "250143"}], [{"original_text": "and all had a good time protesting.", "album_id": "72157623519894743", "photo_flickr_id": "4443535200", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50028", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and all had a good time protesting .", "storylet_id": "250144"}], [{"original_text": "The Environmental Protection Agency (EPA) opened its doors to an annual conference that would educate the public on global issues. ", "album_id": "72157623519894743", "photo_flickr_id": "4442496311", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50029", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization organization organization ( organization ) opened its doors to an annual conference that would educate the public on global issues .", "storylet_id": "250145"}], [{"original_text": "Any passerby would be greeted with a sign that showcased that this was indeed the EPA's headquarters.", "album_id": "72157623519894743", "photo_flickr_id": "4443285166", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50029", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "any passerby would be greeted with a sign that showcased that this was indeed the organization 's headquarters .", "storylet_id": "250146"}], [{"original_text": "A large sign, stationed outside warned of the problem with water contamination.", "album_id": "72157623519894743", "photo_flickr_id": "4443907430", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50029", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a large sign , stationed outside warned of the problem with water contamination .", "storylet_id": "250147"}], [{"original_text": "It wasn't long before camera crews began to show up, hoping to get a new story.", "album_id": "72157623519894743", "photo_flickr_id": "4443536344", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50029", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was n't long before camera crews began to show up , hoping to get a new story .", "storylet_id": "250148"}], [{"original_text": "There were also protestors who arrived, believing that the EPA was not doing enough for the community.", "album_id": "72157623519894743", "photo_flickr_id": "4443535200", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50029", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were also protestors who arrived , believing that the organization was not doing enough for the community .", "storylet_id": "250149"}], [{"original_text": "We all went hiking in the woods together.", "album_id": "72157623120685495", "photo_flickr_id": "4289349570", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50030", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all went hiking in the woods together .", "storylet_id": "250150"}], [{"original_text": "In the trunk of a tree, my friend drew a face.", "album_id": "72157623120685495", "photo_flickr_id": "4288605935", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50030", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in the trunk of a tree , my friend drew a face .", "storylet_id": "250151"}], [{"original_text": "There were some rocks planted in the soil.", "album_id": "72157623120685495", "photo_flickr_id": "4289346302", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50030", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some rocks planted in the soil .", "storylet_id": "250152"}], [{"original_text": "There was also a yellow fungus growing on the outside of the tree.", "album_id": "72157623120685495", "photo_flickr_id": "4288603769", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50030", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also a yellow fungus growing on the outside of the tree .", "storylet_id": "250153"}], [{"original_text": "One of the women drank water because she was thirsty.", "album_id": "72157623120685495", "photo_flickr_id": "4288602995", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50030", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of the women drank water because she was thirsty .", "storylet_id": "250154"}], [{"original_text": "We went on a hike yesterday.", "album_id": "72157623120685495", "photo_flickr_id": "4289349570", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50031", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on a hike yesterday .", "storylet_id": "250155"}], [{"original_text": "There were a lot of strange plants there.", "album_id": "72157623120685495", "photo_flickr_id": "4288603769", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50031", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of strange plants there .", "storylet_id": "250156"}], [{"original_text": "I had a great time.", "album_id": "72157623120685495", "photo_flickr_id": "4288603327", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50031", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time .", "storylet_id": "250157"}], [{"original_text": "We drank a lot of water while we were hiking.", "album_id": "72157623120685495", "photo_flickr_id": "4288602995", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50031", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we drank a lot of water while we were hiking .", "storylet_id": "250158"}], [{"original_text": "The view was spectacular.", "album_id": "72157623120685495", "photo_flickr_id": "4289341058", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50031", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view was spectacular .", "storylet_id": "250159"}], [{"original_text": "Family goes out for a camping trip and", "album_id": "72157623120685495", "photo_flickr_id": "4289349570", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50032", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family goes out for a camping trip and", "storylet_id": "250160"}], [{"original_text": "then they see trees carved with different kind of stuff and", "album_id": "72157623120685495", "photo_flickr_id": "4288605935", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50032", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then they see trees carved with different kind of stuff and", "storylet_id": "250161"}], [{"original_text": "bird eggs laying around , and also", "album_id": "72157623120685495", "photo_flickr_id": "4289346302", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50032", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "bird eggs laying around , and also", "storylet_id": "250162"}], [{"original_text": "some type of orange splat of liquid and then", "album_id": "72157623120685495", "photo_flickr_id": "4288603769", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50032", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some type of orange splat of liquid and then", "storylet_id": "250163"}], [{"original_text": "they take a break and drink some water", "album_id": "72157623120685495", "photo_flickr_id": "4288602995", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50032", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they take a break and drink some water", "storylet_id": "250164"}], [{"original_text": "My family and I went for a hike this weekend. ", "album_id": "72157623120685495", "photo_flickr_id": "4289349570", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "50033", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family and i went for a hike this weekend .", "storylet_id": "250165"}], [{"original_text": "There was a fallen tree which we carved a mans face in. ", "album_id": "72157623120685495", "photo_flickr_id": "4288605935", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "50033", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a fallen tree which we carved a mans face in .", "storylet_id": "250166"}], [{"original_text": "Everything, right down to the rocks seemed beautiful. ", "album_id": "72157623120685495", "photo_flickr_id": "4289346302", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "50033", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everything , right down to the rocks seemed beautiful .", "storylet_id": "250167"}], [{"original_text": "Other things were gross like this thing growing on a tree stump. ", "album_id": "72157623120685495", "photo_flickr_id": "4288603769", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "50033", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other things were gross like this thing growing on a tree stump .", "storylet_id": "250168"}], [{"original_text": "By the end I was exhausted and ready to go home. ", "album_id": "72157623120685495", "photo_flickr_id": "4288602995", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "50033", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end i was exhausted and ready to go home .", "storylet_id": "250169"}], [{"original_text": "Our group before heading out to look for mushrooms.", "album_id": "72157623120685495", "photo_flickr_id": "4289349570", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "50034", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our group before heading out to look for mushrooms .", "storylet_id": "250170"}], [{"original_text": "Someone made a very creative face with this log end.", "album_id": "72157623120685495", "photo_flickr_id": "4288605935", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "50034", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "someone made a very creative face with this log end .", "storylet_id": "250171"}], [{"original_text": "Some non edible but neat looking mushrooms.", "album_id": "72157623120685495", "photo_flickr_id": "4289346302", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "50034", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some non edible but neat looking mushrooms .", "storylet_id": "250172"}], [{"original_text": "The scrambled egg mushroom, aptly named.", "album_id": "72157623120685495", "photo_flickr_id": "4288603769", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "50034", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the scrambled egg mushroom , aptly named .", "storylet_id": "250173"}], [{"original_text": "Jean taking a long drink after a few hours of foraging.", "album_id": "72157623120685495", "photo_flickr_id": "4288602995", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "50034", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] taking a long drink after a few hours of foraging .", "storylet_id": "250174"}], [{"original_text": "They were experimenting with their coffee formula at the shop.", "album_id": "72157623351074567", "photo_flickr_id": "4373640607", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50035", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were experimenting with their coffee formula at the shop .", "storylet_id": "250175"}], [{"original_text": "First, they calibrated the machines.", "album_id": "72157623351074567", "photo_flickr_id": "4373642289", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50035", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first , they calibrated the machines .", "storylet_id": "250176"}], [{"original_text": "They then decided what flavor to make.", "album_id": "72157623351074567", "photo_flickr_id": "4373643679", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50035", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they then decided what flavor to make .", "storylet_id": "250177"}], [{"original_text": "They filtered the mixture.", "album_id": "72157623351074567", "photo_flickr_id": "4373644657", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50035", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they filtered the mixture .", "storylet_id": "250178"}], [{"original_text": "Once it was filtered, they tasted and tested until it was just right. ", "album_id": "72157623351074567", "photo_flickr_id": "4374399692", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50035", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once it was filtered , they tasted and tested until it was just right .", "storylet_id": "250179"}], [{"original_text": "Decided to take a day trip out with the family.", "album_id": "72157623351074567", "photo_flickr_id": "4373640885", "setting": "first-2-pick-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "50036", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "decided to take a day trip out with the family .", "storylet_id": "250180"}], [{"original_text": "came across a coffee factory and we got to take a tour and see how everything works.", "album_id": "72157623351074567", "photo_flickr_id": "4373640607", "setting": "first-2-pick-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "50036", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "came across a coffee factory and we got to take a tour and see how everything works .", "storylet_id": "250181"}], [{"original_text": "They have some really complicated looking machines that help with the process.", "album_id": "72157623351074567", "photo_flickr_id": "4374396660", "setting": "first-2-pick-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "50036", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they have some really complicated looking machines that help with the process .", "storylet_id": "250182"}], [{"original_text": "There are buttons and levers everywhere. ", "album_id": "72157623351074567", "photo_flickr_id": "4374398514", "setting": "first-2-pick-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "50036", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are buttons and levers everywhere .", "storylet_id": "250183"}], [{"original_text": "We even got to step in and help with the process!", "album_id": "72157623351074567", "photo_flickr_id": "4373644657", "setting": "first-2-pick-and-tell", "worker_id": "XJSENRDWC4NXWUR", "story_id": "50036", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even got to step in and help with the process !", "storylet_id": "250184"}], [{"original_text": "They arrived at the modern restaurant and ready to learn.", "album_id": "72157623351074567", "photo_flickr_id": "4373640607", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50037", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they arrived at the modern restaurant and ready to learn .", "storylet_id": "250185"}], [{"original_text": "They were fascinated by all the machinery...", "album_id": "72157623351074567", "photo_flickr_id": "4373642289", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50037", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were fascinated by all the machinery ...", "storylet_id": "250186"}], [{"original_text": "Especially, the fancy set of blenders.", "album_id": "72157623351074567", "photo_flickr_id": "4373643679", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50037", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "especially , the fancy set of blenders .", "storylet_id": "250187"}], [{"original_text": "And, then he started to make his cup of coffee.", "album_id": "72157623351074567", "photo_flickr_id": "4373644657", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50037", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , then he started to make his cup of coffee .", "storylet_id": "250188"}], [{"original_text": "Which, turned out to be a failure this time.", "album_id": "72157623351074567", "photo_flickr_id": "4374399692", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50037", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "which , turned out to be a failure this time .", "storylet_id": "250189"}], [{"original_text": "I work at a coffee shop. ", "album_id": "72157623351074567", "photo_flickr_id": "4373640607", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "50038", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i work at a coffee shop .", "storylet_id": "250190"}], [{"original_text": "We have a lot of big equipment that makes the coffee. ", "album_id": "72157623351074567", "photo_flickr_id": "4373642289", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "50038", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we have a lot of big equipment that makes the coffee .", "storylet_id": "250191"}], [{"original_text": "The coffee is really good. ", "album_id": "72157623351074567", "photo_flickr_id": "4373643679", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "50038", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the coffee is really good .", "storylet_id": "250192"}], [{"original_text": "Each cup is made with care. ", "album_id": "72157623351074567", "photo_flickr_id": "4373644657", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "50038", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "each cup is made with care .", "storylet_id": "250193"}], [{"original_text": "Even the grounds left behind are used. ", "album_id": "72157623351074567", "photo_flickr_id": "4374399692", "setting": "last-3-pick-old-and-tell", "worker_id": "8VLSU4UMFAIFTGL", "story_id": "50038", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the grounds left behind are used .", "storylet_id": "250194"}], [{"original_text": "The building had a big sign", "album_id": "72157623351074567", "photo_flickr_id": "4373640607", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50039", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the building had a big sign", "storylet_id": "250195"}], [{"original_text": "and equipment inside.", "album_id": "72157623351074567", "photo_flickr_id": "4373642289", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50039", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and equipment inside .", "storylet_id": "250196"}], [{"original_text": "There were coffee makers", "album_id": "72157623351074567", "photo_flickr_id": "4373643679", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50039", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were coffee makers", "storylet_id": "250197"}], [{"original_text": "that the man used", "album_id": "72157623351074567", "photo_flickr_id": "4373644657", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50039", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that the man used", "storylet_id": "250198"}], [{"original_text": "to make fresh coffee.", "album_id": "72157623351074567", "photo_flickr_id": "4374399692", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50039", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to make fresh coffee .", "storylet_id": "250199"}], [{"original_text": "The trail lead through the park.", "album_id": "72157623258387556", "photo_flickr_id": "4293652571", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "50040", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the trail lead through the park .", "storylet_id": "250200"}], [{"original_text": "They enjoyed looking up at the tree tops.", "album_id": "72157623258387556", "photo_flickr_id": "4293652337", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "50040", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they enjoyed looking up at the tree tops .", "storylet_id": "250201"}], [{"original_text": "There were planters along the way.", "album_id": "72157623258387556", "photo_flickr_id": "4293652715", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "50040", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were planters along the way .", "storylet_id": "250202"}], [{"original_text": "It ended at the lake.", "album_id": "72157623258387556", "photo_flickr_id": "4294394664", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "50040", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it ended at the lake .", "storylet_id": "250203"}], [{"original_text": "There was an old tree growing from the bottom of the lake but it didn't look healthy.", "album_id": "72157623258387556", "photo_flickr_id": "4293653705", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "50040", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was an old tree growing from the bottom of the lake but it did n't look healthy .", "storylet_id": "250204"}], [{"original_text": "We decided to take a walk outdoors on a fine fall day.", "album_id": "72157623258387556", "photo_flickr_id": "4293652423", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50041", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to take a walk outdoors on a fine fall day .", "storylet_id": "250205"}], [{"original_text": "The paths were clear and the landscape was lush.", "album_id": "72157623258387556", "photo_flickr_id": "4293652571", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50041", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the paths were clear and the landscape was lush .", "storylet_id": "250206"}], [{"original_text": "The railroad tracks always provide a good background.", "album_id": "72157623258387556", "photo_flickr_id": "4293653195", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50041", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the railroad tracks always provide a good background .", "storylet_id": "250207"}], [{"original_text": "The water was bustling by under the bridge.", "album_id": "72157623258387556", "photo_flickr_id": "4293653275", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50041", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the water was bustling by under the bridge .", "storylet_id": "250208"}], [{"original_text": "Finally, We reached downtown and stopped for a bite to eat. ", "album_id": "72157623258387556", "photo_flickr_id": "4293653437", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50041", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , we reached downtown and stopped for a bite to eat .", "storylet_id": "250209"}], [{"original_text": "They wandered the golf course...", "album_id": "72157623258387556", "photo_flickr_id": "4293652571", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50042", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they wandered the golf course ...", "storylet_id": "250210"}], [{"original_text": "And, took in the beautiful scenery..", "album_id": "72157623258387556", "photo_flickr_id": "4293652337", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50042", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and , took in the beautiful scenery..", "storylet_id": "250211"}], [{"original_text": "Especially the rotunda near the 16th hole...", "album_id": "72157623258387556", "photo_flickr_id": "4293652715", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50042", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "especially the rotunda near the 16th hole ...", "storylet_id": "250212"}], [{"original_text": "After the round of golf, they headed for the pond.", "album_id": "72157623258387556", "photo_flickr_id": "4294394664", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50042", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the round of golf , they headed for the pond .", "storylet_id": "250213"}], [{"original_text": "Where they sat by the shore for hours.", "album_id": "72157623258387556", "photo_flickr_id": "4293653705", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50042", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "where they sat by the shore for hours .", "storylet_id": "250214"}], [{"original_text": "My favorite time of the year is when the leaves begin to turn colors.", "album_id": "72157623258387556", "photo_flickr_id": "4293652423", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "50043", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my favorite time of the year is when the leaves begin to turn colors .", "storylet_id": "250215"}], [{"original_text": "It's a perfect time to take a walk outside and enjoy nature.", "album_id": "72157623258387556", "photo_flickr_id": "4293652571", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "50043", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's a perfect time to take a walk outside and enjoy nature .", "storylet_id": "250216"}], [{"original_text": "During my walk, I decided to follow the local railroad tracks.", "album_id": "72157623258387556", "photo_flickr_id": "4293653195", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "50043", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "during my walk , i decided to follow the local railroad tracks .", "storylet_id": "250217"}], [{"original_text": "I eventually made my way to the old bridge in town.", "album_id": "72157623258387556", "photo_flickr_id": "4293653275", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "50043", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i eventually made my way to the old bridge in town .", "storylet_id": "250218"}], [{"original_text": "At the end of my nature walk, I went into the city for lunch. ", "album_id": "72157623258387556", "photo_flickr_id": "4293653437", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "50043", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of my nature walk , i went into the city for lunch .", "storylet_id": "250219"}], [{"original_text": "We decided to get our of the city for a little while and visit the countryside.", "album_id": "72157623258387556", "photo_flickr_id": "4293652571", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50044", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to get our of the city for a little while and visit the countryside .", "storylet_id": "250220"}], [{"original_text": "The day was beautiful.", "album_id": "72157623258387556", "photo_flickr_id": "4293652337", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50044", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the day was beautiful .", "storylet_id": "250221"}], [{"original_text": "We visited a park.", "album_id": "72157623258387556", "photo_flickr_id": "4293652715", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50044", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we visited a park .", "storylet_id": "250222"}], [{"original_text": "The river ran next to the park.", "album_id": "72157623258387556", "photo_flickr_id": "4294394664", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50044", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the river ran next to the park .", "storylet_id": "250223"}], [{"original_text": "The sound of the water was very peaceful. ", "album_id": "72157623258387556", "photo_flickr_id": "4293653705", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50044", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sound of the water was very peaceful .", "storylet_id": "250224"}], [{"original_text": "There were a lot of people at the convention.", "album_id": "72157623546334961", "photo_flickr_id": "4454514366", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50045", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of people at the convention .", "storylet_id": "250225"}], [{"original_text": "They were all there to listen to the speaker.", "album_id": "72157623546334961", "photo_flickr_id": "4454514392", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50045", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were all there to listen to the speaker .", "storylet_id": "250226"}], [{"original_text": "She had prepared a great speech.", "album_id": "72157623546334961", "photo_flickr_id": "4454514478", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50045", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she had prepared a great speech .", "storylet_id": "250227"}], [{"original_text": "Everyone had questions.", "album_id": "72157623546334961", "photo_flickr_id": "4453735097", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50045", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone had questions .", "storylet_id": "250228"}], [{"original_text": "She was up there for a couple of hours.", "album_id": "72157623546334961", "photo_flickr_id": "4453735221", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50045", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was up there for a couple of hours .", "storylet_id": "250229"}], [{"original_text": "Hellen loved to give speeches but she was losing her touch.", "album_id": "72157623546334961", "photo_flickr_id": "4454514366", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50046", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hellen loved to give speeches but she was losing her touch .", "storylet_id": "250230"}], [{"original_text": "She felt like she didn't know what she was doing in front of so many people anymore.", "album_id": "72157623546334961", "photo_flickr_id": "4454514424", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50046", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she felt like she did n't know what she was doing in front of so many people anymore .", "storylet_id": "250231"}], [{"original_text": "The questions she was getting asked were more about her hair and makeup.", "album_id": "72157623546334961", "photo_flickr_id": "4453735027", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50046", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the questions she was getting asked were more about her hair and makeup .", "storylet_id": "250232"}], [{"original_text": "She wanted to talk about important topics and now hair.", "album_id": "72157623546334961", "photo_flickr_id": "4454514652", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50046", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she wanted to talk about important topics and now hair .", "storylet_id": "250233"}], [{"original_text": "She finally decided that her next speech would be about feminism. ", "album_id": "72157623546334961", "photo_flickr_id": "4453735293", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50046", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she finally decided that her next speech would be about feminism .", "storylet_id": "250234"}], [{"original_text": "Jan presented her experience running a retail store this morning to business students.", "album_id": "72157623546334961", "photo_flickr_id": "4454514366", "setting": "last-3-pick-old-and-tell", "worker_id": "H7M4J5B0DVW5OXO", "story_id": "50047", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] presented her experience running a retail store this morning to business students .", "storylet_id": "250235"}], [{"original_text": "She started off with personal experiences.", "album_id": "72157623546334961", "photo_flickr_id": "4454514424", "setting": "last-3-pick-old-and-tell", "worker_id": "H7M4J5B0DVW5OXO", "story_id": "50047", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she started off with personal experiences .", "storylet_id": "250236"}], [{"original_text": "She opened up the discussion to the students.", "album_id": "72157623546334961", "photo_flickr_id": "4453735027", "setting": "last-3-pick-old-and-tell", "worker_id": "H7M4J5B0DVW5OXO", "story_id": "50047", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she opened up the discussion to the students .", "storylet_id": "250237"}], [{"original_text": "One of the questioners was a former employee that was let go.", "album_id": "72157623546334961", "photo_flickr_id": "4454514652", "setting": "last-3-pick-old-and-tell", "worker_id": "H7M4J5B0DVW5OXO", "story_id": "50047", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the questioners was a former employee that was let go .", "storylet_id": "250238"}], [{"original_text": "It made Jan realize what a small world it truly is.", "album_id": "72157623546334961", "photo_flickr_id": "4453735293", "setting": "last-3-pick-old-and-tell", "worker_id": "H7M4J5B0DVW5OXO", "story_id": "50047", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it made [female] realize what a small world it truly is .", "storylet_id": "250239"}], [{"original_text": "Today I had to teach our new direction", "album_id": "72157623546334961", "photo_flickr_id": "4454514366", "setting": "last-3-pick-old-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "50048", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i had to teach our new direction", "storylet_id": "250240"}], [{"original_text": "I used plenty of great examples and layouts", "album_id": "72157623546334961", "photo_flickr_id": "4454514424", "setting": "last-3-pick-old-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "50048", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i used plenty of great examples and layouts", "storylet_id": "250241"}], [{"original_text": "Then stopped to answer some questions", "album_id": "72157623546334961", "photo_flickr_id": "4453735027", "setting": "last-3-pick-old-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "50048", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then stopped to answer some questions", "storylet_id": "250242"}], [{"original_text": "I then continued one more presentation", "album_id": "72157623546334961", "photo_flickr_id": "4454514652", "setting": "last-3-pick-old-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "50048", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i then continued one more presentation", "storylet_id": "250243"}], [{"original_text": "and I winded down the evening with a photo session", "album_id": "72157623546334961", "photo_flickr_id": "4453735293", "setting": "last-3-pick-old-and-tell", "worker_id": "WRE60LADQVM7YX8", "story_id": "50048", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and i winded down the evening with a photo session", "storylet_id": "250244"}], [{"original_text": "She put on her black leather jacket for the her lecture because it matched her mood. ", "album_id": "72157623546334961", "photo_flickr_id": "4454514366", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50049", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she put on her black leather jacket for the her lecture because it matched her mood .", "storylet_id": "250245"}], [{"original_text": "The message was important but with everything in the back of her mind she was worried about her delivery. ", "album_id": "72157623546334961", "photo_flickr_id": "4454514392", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50049", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the message was important but with everything in the back of her mind she was worried about her delivery .", "storylet_id": "250246"}], [{"original_text": "Being there, being present in her mind just wasn't happening that day. ", "album_id": "72157623546334961", "photo_flickr_id": "4454514478", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50049", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "being there , being present in her mind just was n't happening that day .", "storylet_id": "250247"}], [{"original_text": "She kept wondering if her audience knew. ", "album_id": "72157623546334961", "photo_flickr_id": "4453735097", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50049", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she kept wondering if her audience knew .", "storylet_id": "250248"}], [{"original_text": "Pushing the thoughts out of her mind, she persevered. ", "album_id": "72157623546334961", "photo_flickr_id": "4453735221", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50049", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "pushing the thoughts out of her mind , she persevered .", "storylet_id": "250249"}], [{"original_text": "New product line our stores will be carrying.Today is an exhibition and discussion of features and suggested retail pricing.", "album_id": "72157623546961645", "photo_flickr_id": "4454780550", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50050", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "new product line our stores will be carrying.today is an exhibition and discussion of features and suggested retail pricing .", "storylet_id": "250250"}], [{"original_text": "Each region representative got to examine and photograph the merchandise.", "album_id": "72157623546961645", "photo_flickr_id": "4454780576", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50050", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each region representative got to examine and photograph the merchandise .", "storylet_id": "250251"}], [{"original_text": "This I think was my favorite line.Big fan of earthy tones and Brown's.Don't know how I don't spend my whole paycheck working in this place.", "album_id": "72157623546961645", "photo_flickr_id": "4454001037", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50050", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this i think was my favorite line.big fan of earthy tones and brown's.do n't know how i do n't spend my whole paycheck working in this place .", "storylet_id": "250252"}], [{"original_text": "This was the most popular line with the ladies.A lot had to deal with the color choices.", "album_id": "72157623546961645", "photo_flickr_id": "4454000999", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50050", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was the most popular line with the ladies.a lot had to deal with the color choices .", "storylet_id": "250253"}], [{"original_text": "Marina choose the previous picture line of merchandise to do her presentation on.I honestly think it was her favorite.", "album_id": "72157623546961645", "photo_flickr_id": "4454780468", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50050", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] choose the previous picture line of merchandise to do her presentation on.i honestly think it was her favorite .", "storylet_id": "250254"}], [{"original_text": "I had a great time at the business meeting today.", "album_id": "72157623546961645", "photo_flickr_id": "4454001097", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50051", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the business meeting today .", "storylet_id": "250255"}], [{"original_text": "Everyone had a ton of questions.", "album_id": "72157623546961645", "photo_flickr_id": "4454780576", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50051", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone had a ton of questions .", "storylet_id": "250256"}], [{"original_text": "I sold a lot of shoes.", "album_id": "72157623546961645", "photo_flickr_id": "4454780468", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50051", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i sold a lot of shoes .", "storylet_id": "250257"}], [{"original_text": "Also sold some purses as well.", "album_id": "72157623546961645", "photo_flickr_id": "4454000901", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50051", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "also sold some purses as well .", "storylet_id": "250258"}], [{"original_text": "Everyone loved them.", "album_id": "72157623546961645", "photo_flickr_id": "4454000961", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50051", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone loved them .", "storylet_id": "250259"}], [{"original_text": "Each member together their own collection.", "album_id": "72157623546961645", "photo_flickr_id": "4454780550", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "50052", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "each member together their own collection .", "storylet_id": "250260"}], [{"original_text": "The judges walked around and picked their favorite.", "album_id": "72157623546961645", "photo_flickr_id": "4454780576", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "50052", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the judges walked around and picked their favorite .", "storylet_id": "250261"}], [{"original_text": "I hoped my collection would be chosen for the show.", "album_id": "72157623546961645", "photo_flickr_id": "4454001037", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "50052", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i hoped my collection would be chosen for the show .", "storylet_id": "250262"}], [{"original_text": "I have to admit that Jane's collection was right for the season. ", "album_id": "72157623546961645", "photo_flickr_id": "4454000999", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "50052", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i have to admit that [female] 's collection was right for the season .", "storylet_id": "250263"}], [{"original_text": "And she proudly agreed with that thought.", "album_id": "72157623546961645", "photo_flickr_id": "4454780468", "setting": "last-3-pick-old-and-tell", "worker_id": "AY4JMLV7Z66WJI2", "story_id": "50052", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and she proudly agreed with that thought .", "storylet_id": "250264"}], [{"original_text": "A show and demonstration of ladies accessories.", "album_id": "72157623546961645", "photo_flickr_id": "4454780550", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "50053", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a show and demonstration of ladies accessories .", "storylet_id": "250265"}], [{"original_text": "There were lots of items set up for this. ", "album_id": "72157623546961645", "photo_flickr_id": "4454780576", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "50053", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were lots of items set up for this .", "storylet_id": "250266"}], [{"original_text": "Boots, purses and other accessories were displayed.", "album_id": "72157623546961645", "photo_flickr_id": "4454001037", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "50053", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "boots , purses and other accessories were displayed .", "storylet_id": "250267"}], [{"original_text": "Some were more expensive than others.", "album_id": "72157623546961645", "photo_flickr_id": "4454000999", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "50053", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some were more expensive than others .", "storylet_id": "250268"}], [{"original_text": "An expert from the fashion industry was there to explain everything.", "album_id": "72157623546961645", "photo_flickr_id": "4454780468", "setting": "last-3-pick-old-and-tell", "worker_id": "VLSLWKE47E4E64H", "story_id": "50053", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "an expert from the fashion industry was there to explain everything .", "storylet_id": "250269"}], [{"original_text": "Boots, scarves, handbags were on the table.", "album_id": "72157623546961645", "photo_flickr_id": "4454001097", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50054", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "boots , scarves , handbags were on the table .", "storylet_id": "250270"}], [{"original_text": "She made sure each tables accessories matched.", "album_id": "72157623546961645", "photo_flickr_id": "4454780576", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50054", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she made sure each tables accessories matched .", "storylet_id": "250271"}], [{"original_text": "Every woman needed to pay close attention to her accessories, she told them. ", "album_id": "72157623546961645", "photo_flickr_id": "4454780468", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50054", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "every woman needed to pay close attention to her accessories , she told them .", "storylet_id": "250272"}], [{"original_text": "It was important to pay attention to the details she said. ", "album_id": "72157623546961645", "photo_flickr_id": "4454000901", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50054", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was important to pay attention to the details she said .", "storylet_id": "250273"}], [{"original_text": "Without it, you might as well go find yourself on the pages of PeopleofWalmart she joked. ", "album_id": "72157623546961645", "photo_flickr_id": "4454000961", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50054", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "without it , you might as well go find yourself on the pages of organization she joked .", "storylet_id": "250274"}], [{"original_text": "Class was very fun today.", "album_id": "72157623669470028", "photo_flickr_id": "4453165985", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50055", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "class was very fun today .", "storylet_id": "250275"}], [{"original_text": "We spent a lot of time learning.", "album_id": "72157623669470028", "photo_flickr_id": "4453945222", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50055", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we spent a lot of time learning .", "storylet_id": "250276"}], [{"original_text": "Afterward we had an opportunity to play games outside.", "album_id": "72157623669470028", "photo_flickr_id": "4453167035", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50055", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterward we had an opportunity to play games outside .", "storylet_id": "250277"}], [{"original_text": "It was a lot of fun.", "album_id": "72157623669470028", "photo_flickr_id": "4453946260", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50055", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a lot of fun .", "storylet_id": "250278"}], [{"original_text": "After that we all went back home.", "album_id": "72157623669470028", "photo_flickr_id": "4453167263", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50055", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that we all went back home .", "storylet_id": "250279"}], [{"original_text": "A new man is up for mayor and has decided to speak at a school.", "album_id": "72157623669470028", "photo_flickr_id": "4453945504", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "50056", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a new man is up for mayor and has decided to speak at a school .", "storylet_id": "250280"}], [{"original_text": "Many of the kids have a lot of questions to ask the man.", "album_id": "72157623669470028", "photo_flickr_id": "4453165985", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "50056", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of the kids have a lot of questions to ask the man .", "storylet_id": "250281"}], [{"original_text": "He has brought them a neat little celebration to honor their hard work in school.", "album_id": "72157623669470028", "photo_flickr_id": "4453945762", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "50056", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he has brought them a neat little celebration to honor their hard work in school .", "storylet_id": "250282"}], [{"original_text": "He even brought a women dressed in a sparkly ready wig to entertain.", "album_id": "72157623669470028", "photo_flickr_id": "4453167035", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "50056", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he even brought a women dressed in a sparkly ready wig to entertain .", "storylet_id": "250283"}], [{"original_text": "The man running for mayor had a big family that love being involved in his work with children.", "album_id": "72157623669470028", "photo_flickr_id": "4453945892", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "50056", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the man running for mayor had a big family that love being involved in his work with children .", "storylet_id": "250284"}], [{"original_text": "On the parents visit day at school I got to talk to the kids.", "album_id": "72157623669470028", "photo_flickr_id": "4453945504", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "50057", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on the parents visit day at school i got to talk to the kids .", "storylet_id": "250285"}], [{"original_text": "I spoke to the kids about my job and what I do for a living.", "album_id": "72157623669470028", "photo_flickr_id": "4453165985", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "50057", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i spoke to the kids about my job and what i do for a living .", "storylet_id": "250286"}], [{"original_text": "The kids went outside and took a group photo.", "album_id": "72157623669470028", "photo_flickr_id": "4453945762", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "50057", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids went outside and took a group photo .", "storylet_id": "250287"}], [{"original_text": "It was nice meeting all of the students at the school.", "album_id": "72157623669470028", "photo_flickr_id": "4453167035", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "50057", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was nice meeting all of the students at the school .", "storylet_id": "250288"}], [{"original_text": "I got a photo with some of the mothers at the school.", "album_id": "72157623669470028", "photo_flickr_id": "4453945892", "setting": "last-3-pick-old-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "50057", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i got a photo with some of the mothers at the school .", "storylet_id": "250289"}], [{"original_text": "The man was talking to the students", "album_id": "72157623669470028", "photo_flickr_id": "4453165985", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50058", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man was talking to the students", "storylet_id": "250290"}], [{"original_text": "and they were all looking.", "album_id": "72157623669470028", "photo_flickr_id": "4453945222", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50058", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and they were all looking .", "storylet_id": "250291"}], [{"original_text": "The parents were happy", "album_id": "72157623669470028", "photo_flickr_id": "4453167035", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50058", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the parents were happy", "storylet_id": "250292"}], [{"original_text": "and had their photos taken", "album_id": "72157623669470028", "photo_flickr_id": "4453946260", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50058", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and had their photos taken", "storylet_id": "250293"}], [{"original_text": "before they gave interviews.", "album_id": "72157623669470028", "photo_flickr_id": "4453167263", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50058", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before they gave interviews .", "storylet_id": "250294"}], [{"original_text": "At career day, the elementary students were treated to many different speakers from many different fields.", "album_id": "72157623669470028", "photo_flickr_id": "4453165985", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50059", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at career day , the elementary students were treated to many different speakers from many different fields .", "storylet_id": "250295"}], [{"original_text": "With the teacher nearby, the guest speaker interacted with the children and taught them more about his field.", "album_id": "72157623669470028", "photo_flickr_id": "4453945222", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50059", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "with the teacher nearby , the guest speaker interacted with the children and taught them more about his field .", "storylet_id": "250296"}], [{"original_text": "After the lesson was over, the guest speaker posed for photos and even talked to the local clown.", "album_id": "72157623669470028", "photo_flickr_id": "4453167035", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50059", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the lesson was over , the guest speaker posed for photos and even talked to the local clown .", "storylet_id": "250297"}], [{"original_text": "During the festivities many parents wanted to talk with the guest speaker and get more insight.", "album_id": "72157623669470028", "photo_flickr_id": "4453946260", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50059", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "during the festivities many parents wanted to talk with the guest speaker and get more insight .", "storylet_id": "250298"}], [{"original_text": "Towards the end of the festivities the guest speaker thanked the school for having him and said that he enjoyed his time.", "album_id": "72157623669470028", "photo_flickr_id": "4453167263", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50059", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "towards the end of the festivities the guest speaker thanked the school for having him and said that he enjoyed his time .", "storylet_id": "250299"}], [{"original_text": "I needed to get a good picture of the school principle for the paper.", "album_id": "72157623670920286", "photo_flickr_id": "4454539332", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50060", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i needed to get a good picture of the school principle for the paper .", "storylet_id": "250300"}], [{"original_text": "I didn't like the angle of this shot.", "album_id": "72157623670920286", "photo_flickr_id": "4454539140", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50060", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i did n't like the angle of this shot .", "storylet_id": "250301"}], [{"original_text": "The color on this one was too yellow.", "album_id": "72157623670920286", "photo_flickr_id": "4454539104", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50060", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the color on this one was too yellow .", "storylet_id": "250302"}], [{"original_text": "I feel this one is too far away.", "album_id": "72157623670920286", "photo_flickr_id": "4453759981", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50060", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i feel this one is too far away .", "storylet_id": "250303"}], [{"original_text": "I finally chose this one as I feel it is my best shot.", "album_id": "72157623670920286", "photo_flickr_id": "4453760055", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50060", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i finally chose this one as i feel it is my best shot .", "storylet_id": "250304"}], [{"original_text": "I spent all day listening to the speaker talk.", "album_id": "72157623670920286", "photo_flickr_id": "4454539332", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50061", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spent all day listening to the speaker talk .", "storylet_id": "250305"}], [{"original_text": "He went on for hours.", "album_id": "72157623670920286", "photo_flickr_id": "4453760201", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50061", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he went on for hours .", "storylet_id": "250306"}], [{"original_text": "He answered tons of questions.", "album_id": "72157623670920286", "photo_flickr_id": "4454539222", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50061", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he answered tons of questions .", "storylet_id": "250307"}], [{"original_text": "I lost track of time.", "album_id": "72157623670920286", "photo_flickr_id": "4454539140", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50061", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i lost track of time .", "storylet_id": "250308"}], [{"original_text": "Eventually I fell asleep.", "album_id": "72157623670920286", "photo_flickr_id": "4454539104", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50061", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually i fell asleep .", "storylet_id": "250309"}], [{"original_text": "Here to announce he's running for president. My father Mr. Joseph P. Wahl", "album_id": "72157623670920286", "photo_flickr_id": "4454539332", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50062", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here to announce he 's running for president . my father mr. [male] p. wahl", "storylet_id": "250310"}], [{"original_text": "I'm running for president in 2016, please vote for me. I care about everyone.", "album_id": "72157623670920286", "photo_flickr_id": "4454539140", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50062", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm running for president in 2016 , please vote for me . i care about everyone .", "storylet_id": "250311"}], [{"original_text": "I'm honest, sincere, happy to know everyone and mostly, NO NEW TAXES", "album_id": "72157623670920286", "photo_flickr_id": "4454539104", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50062", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i 'm honest , sincere , happy to know everyone and mostly , no new taxes", "storylet_id": "250312"}], [{"original_text": "I'm finished with my speech if there are any questions, please ask.", "album_id": "72157623670920286", "photo_flickr_id": "4453759981", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50062", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'm finished with my speech if there are any questions , please ask .", "storylet_id": "250313"}], [{"original_text": "Vote for Joseph.", "album_id": "72157623670920286", "photo_flickr_id": "4453760055", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50062", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "vote for [male] .", "storylet_id": "250314"}], [{"original_text": "The president of our company held a banquet for the employees.", "album_id": "72157623670920286", "photo_flickr_id": "4454539332", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50063", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the president of our company held a banquet for the employees .", "storylet_id": "250315"}], [{"original_text": "He spoke for a long time.", "album_id": "72157623670920286", "photo_flickr_id": "4454539140", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50063", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he spoke for a long time .", "storylet_id": "250316"}], [{"original_text": "His speech was so boring, I wondered why I came in the first place.", "album_id": "72157623670920286", "photo_flickr_id": "4454539104", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50063", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his speech was so boring , i wondered why i came in the first place .", "storylet_id": "250317"}], [{"original_text": "Then I remembered I came for the free food.", "album_id": "72157623670920286", "photo_flickr_id": "4453759981", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50063", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then i remembered i came for the free food .", "storylet_id": "250318"}], [{"original_text": "At least I could eat while he talked.", "album_id": "72157623670920286", "photo_flickr_id": "4453760055", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50063", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at least i could eat while he talked .", "storylet_id": "250319"}], [{"original_text": "The man was speechless", "album_id": "72157623670920286", "photo_flickr_id": "4454539332", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50064", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man was speechless", "storylet_id": "250320"}], [{"original_text": "and did not know what to say.", "album_id": "72157623670920286", "photo_flickr_id": "4454539140", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50064", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and did not know what to say .", "storylet_id": "250321"}], [{"original_text": "Then he started talking again", "album_id": "72157623670920286", "photo_flickr_id": "4454539104", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50064", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then he started talking again", "storylet_id": "250322"}], [{"original_text": "and was happy", "album_id": "72157623670920286", "photo_flickr_id": "4453759981", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50064", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and was happy", "storylet_id": "250323"}], [{"original_text": "at the response that he got.", "album_id": "72157623670920286", "photo_flickr_id": "4453760055", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50064", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the response that he got .", "storylet_id": "250324"}], [{"original_text": "We witnessed the most amazing landscapes and mountain ranges we have ever seen!", "album_id": "72157623268567982", "photo_flickr_id": "4298234156", "setting": "first-2-pick-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "50065", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we witnessed the most amazing landscapes and mountain ranges we have ever seen !", "storylet_id": "250325"}], [{"original_text": "The way the mountain reflected in the lake was mesmerizing!", "album_id": "72157623268567982", "photo_flickr_id": "4298235092", "setting": "first-2-pick-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "50065", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the way the mountain reflected in the lake was mesmerizing !", "storylet_id": "250326"}], [{"original_text": "We loved the design of the little town in the mountains!", "album_id": "72157623268567982", "photo_flickr_id": "4297493649", "setting": "first-2-pick-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "50065", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we loved the design of the little town in the mountains !", "storylet_id": "250327"}], [{"original_text": "The magnificent castle was high upon the mountain!", "album_id": "72157623268567982", "photo_flickr_id": "4298239016", "setting": "first-2-pick-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "50065", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the magnificent castle was high upon the mountain !", "storylet_id": "250328"}], [{"original_text": "The gorgeous mountain peak was breathtaking!", "album_id": "72157623268567982", "photo_flickr_id": "4298241254", "setting": "first-2-pick-and-tell", "worker_id": "W0KM74IP4ZT9I0Z", "story_id": "50065", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the gorgeous mountain peak was breathtaking !", "storylet_id": "250329"}], [{"original_text": "I stayed at a castle when I was on vacation last week.", "album_id": "72157623268567982", "photo_flickr_id": "4298234616", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50066", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i stayed at a castle when i was on vacation last week .", "storylet_id": "250330"}], [{"original_text": "The lake was beautiful.", "album_id": "72157623268567982", "photo_flickr_id": "4298235092", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50066", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lake was beautiful .", "storylet_id": "250331"}], [{"original_text": "The castle resort was huge.", "album_id": "72157623268567982", "photo_flickr_id": "4298239016", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50066", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the castle resort was huge .", "storylet_id": "250332"}], [{"original_text": "I couldn't understand the language so it made the signs hard to read.", "album_id": "72157623268567982", "photo_flickr_id": "4298239552", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50066", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i could n't understand the language so it made the signs hard to read .", "storylet_id": "250333"}], [{"original_text": "Afterward I bought a blanket.", "album_id": "72157623268567982", "photo_flickr_id": "4298240146", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50066", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward i bought a blanket .", "storylet_id": "250334"}], [{"original_text": "So this is where all the beautiful landscape screenshots come from!", "album_id": "72157623268567982", "photo_flickr_id": "4298234156", "setting": "last-3-pick-old-and-tell", "worker_id": "8Z14CLHFIDXWVJZ", "story_id": "50067", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so this is where all the beautiful landscape screenshots come from !", "storylet_id": "250335"}], [{"original_text": "Is this a place to live forever, or what?", "album_id": "72157623268567982", "photo_flickr_id": "4298235092", "setting": "last-3-pick-old-and-tell", "worker_id": "8Z14CLHFIDXWVJZ", "story_id": "50067", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "is this a place to live forever , or what ?", "storylet_id": "250336"}], [{"original_text": "Oh, my gosh, just build me a tiny house and I'm all here!", "album_id": "72157623268567982", "photo_flickr_id": "4297493649", "setting": "last-3-pick-old-and-tell", "worker_id": "8Z14CLHFIDXWVJZ", "story_id": "50067", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "oh , my gosh , just build me a tiny house and i 'm all here !", "storylet_id": "250337"}], [{"original_text": "And castles - they have castles, too!", "album_id": "72157623268567982", "photo_flickr_id": "4298239016", "setting": "last-3-pick-old-and-tell", "worker_id": "8Z14CLHFIDXWVJZ", "story_id": "50067", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and castles - they have castles , too !", "storylet_id": "250338"}], [{"original_text": "What an impressive mountain!", "album_id": "72157623268567982", "photo_flickr_id": "4298241254", "setting": "last-3-pick-old-and-tell", "worker_id": "8Z14CLHFIDXWVJZ", "story_id": "50067", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what an impressive mountain !", "storylet_id": "250339"}], [{"original_text": "We went to Europe and saw all the old castles.", "album_id": "72157623268567982", "photo_flickr_id": "4298234616", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50068", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to location and saw all the old castles .", "storylet_id": "250340"}], [{"original_text": "The scenery was beautiful.", "album_id": "72157623268567982", "photo_flickr_id": "4298235092", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50068", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the scenery was beautiful .", "storylet_id": "250341"}], [{"original_text": "I dream of living in a castle like that.", "album_id": "72157623268567982", "photo_flickr_id": "4298239016", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50068", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i dream of living in a castle like that .", "storylet_id": "250342"}], [{"original_text": "We went to a funny gift shop.", "album_id": "72157623268567982", "photo_flickr_id": "4298239552", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50068", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went to a funny gift shop .", "storylet_id": "250343"}], [{"original_text": "They wold a lot of interesting things.", "album_id": "72157623268567982", "photo_flickr_id": "4298240146", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50068", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they wold a lot of interesting things .", "storylet_id": "250344"}], [{"original_text": "Moving to Alaska was a huge decision. My family and I decided to go before we ever saw the raw beauty. ", "album_id": "72157623268567982", "photo_flickr_id": "4298234156", "setting": "last-3-pick-old-and-tell", "worker_id": "OMALQHAJCPRZ4E0", "story_id": "50069", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "moving to location was a huge decision . my family and i decided to go before we ever saw the raw beauty .", "storylet_id": "250345"}], [{"original_text": "The mountains and oceans merge together from all spots in Cordova, Alaska. ", "album_id": "72157623268567982", "photo_flickr_id": "4298235092", "setting": "last-3-pick-old-and-tell", "worker_id": "OMALQHAJCPRZ4E0", "story_id": "50069", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the mountains and oceans merge together from all spots in cordova , location .", "storylet_id": "250346"}], [{"original_text": "We moved there last year to pastor a small church that is smack dab in the middle of the wilderness.", "album_id": "72157623268567982", "photo_flickr_id": "4297493649", "setting": "last-3-pick-old-and-tell", "worker_id": "OMALQHAJCPRZ4E0", "story_id": "50069", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we moved there last year to pastor a small church that is smack dab in the middle of the wilderness .", "storylet_id": "250347"}], [{"original_text": "We even discovered a hidden castle behind a small mountain that was built many years ago. ", "album_id": "72157623268567982", "photo_flickr_id": "4298239016", "setting": "last-3-pick-old-and-tell", "worker_id": "OMALQHAJCPRZ4E0", "story_id": "50069", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even discovered a hidden castle behind a small mountain that was built many years ago .", "storylet_id": "250348"}], [{"original_text": "No matter where I stand, I find the majesty of Alaska. There are snow covered mountains and crystal blue oceans in all directions. ", "album_id": "72157623268567982", "photo_flickr_id": "4298241254", "setting": "last-3-pick-old-and-tell", "worker_id": "OMALQHAJCPRZ4E0", "story_id": "50069", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "no matter where i stand , i find the majesty of location . there are snow covered mountains and crystal blue oceans in all directions .", "storylet_id": "250349"}], [{"original_text": "A couple take a trip to Ikea and pose in front of the sign.", "album_id": "72157623562884889", "photo_flickr_id": "4461263664", "setting": "first-2-pick-and-tell", "worker_id": "BC1L9VM9WBX2XL3", "story_id": "50070", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple take a trip to organization and pose in front of the sign .", "storylet_id": "250350"}], [{"original_text": "The wife sits on the black couch and feels that it is comfortable.", "album_id": "72157623562884889", "photo_flickr_id": "4461261974", "setting": "first-2-pick-and-tell", "worker_id": "BC1L9VM9WBX2XL3", "story_id": "50070", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wife sits on the black couch and feels that it is comfortable .", "storylet_id": "250351"}], [{"original_text": "She tests the Ikea bed and wants to take a nap.", "album_id": "72157623562884889", "photo_flickr_id": "4460483061", "setting": "first-2-pick-and-tell", "worker_id": "BC1L9VM9WBX2XL3", "story_id": "50070", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she tests the organization bed and wants to take a nap .", "storylet_id": "250352"}], [{"original_text": "They then decide to go have dinner at a fancy restaurant.", "album_id": "72157623562884889", "photo_flickr_id": "4460485537", "setting": "first-2-pick-and-tell", "worker_id": "BC1L9VM9WBX2XL3", "story_id": "50070", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they then decide to go have dinner at a fancy restaurant .", "storylet_id": "250353"}], [{"original_text": "When they come home, they see their dogs chewing hard on a stuffed animal.", "album_id": "72157623562884889", "photo_flickr_id": "4460486325", "setting": "first-2-pick-and-tell", "worker_id": "BC1L9VM9WBX2XL3", "story_id": "50070", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when they come home , they see their dogs chewing hard on a stuffed animal .", "storylet_id": "250354"}], [{"original_text": "The couple decided to get up and go out for the day.", "album_id": "72157623562884889", "photo_flickr_id": "4460483061", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50071", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple decided to get up and go out for the day .", "storylet_id": "250355"}], [{"original_text": "They had ice cream at the fair.", "album_id": "72157623562884889", "photo_flickr_id": "4461261400", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50071", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had ice cream at the fair .", "storylet_id": "250356"}], [{"original_text": "They went to the gift shop. ", "album_id": "72157623562884889", "photo_flickr_id": "4460484343", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50071", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they went to the gift shop .", "storylet_id": "250357"}], [{"original_text": "They bought a Mickey Mouse. ", "album_id": "72157623562884889", "photo_flickr_id": "4461276934", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50071", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they bought a [male] mouse .", "storylet_id": "250358"}], [{"original_text": "They had a nice dinner at the end of the night. ", "album_id": "72157623562884889", "photo_flickr_id": "4460485537", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50071", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had a nice dinner at the end of the night .", "storylet_id": "250359"}], [{"original_text": "They had a long trip to get to Sweden..", "album_id": "72157623562884889", "photo_flickr_id": "4461263664", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50072", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they had a long trip to get to sweden..", "storylet_id": "250360"}], [{"original_text": "And, they were happy to get to the hotel and rest..", "album_id": "72157623562884889", "photo_flickr_id": "4461261974", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50072", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and , they were happy to get to the hotel and rest..", "storylet_id": "250361"}], [{"original_text": "She even wanted to take a short nap.", "album_id": "72157623562884889", "photo_flickr_id": "4460483061", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50072", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she even wanted to take a short nap .", "storylet_id": "250362"}], [{"original_text": "Then they went out to dinner and enjoyed a great evening..", "album_id": "72157623562884889", "photo_flickr_id": "4460485537", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50072", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they went out to dinner and enjoyed a great evening..", "storylet_id": "250363"}], [{"original_text": "When they returned to the hotel, their mom sent a photo of their babies playing at home", "album_id": "72157623562884889", "photo_flickr_id": "4460486325", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50072", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when they returned to the hotel , their mom sent a photo of their babies playing at home", "storylet_id": "250364"}], [{"original_text": "Today, the couple goes on a date.", "album_id": "72157623562884889", "photo_flickr_id": "4460483061", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "50073", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , the couple goes on a date .", "storylet_id": "250365"}], [{"original_text": "First, they got some ice cream and went out to see the sights of the town.", "album_id": "72157623562884889", "photo_flickr_id": "4461261400", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "50073", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first , they got some ice cream and went out to see the sights of the town .", "storylet_id": "250366"}], [{"original_text": "Then, they went into some shops and shopped for cute souvenirs.", "album_id": "72157623562884889", "photo_flickr_id": "4460484343", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "50073", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then , they went into some shops and shopped for cute souvenirs .", "storylet_id": "250367"}], [{"original_text": "They decided that the Mickey Mouse was the best souvenir to represent their trip.", "album_id": "72157623562884889", "photo_flickr_id": "4461276934", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "50073", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they decided that the [male] mouse was the best souvenir to represent their trip .", "storylet_id": "250368"}], [{"original_text": "At the end of the day, they enjoyed dinner and wine and a nice restaurant. ", "album_id": "72157623562884889", "photo_flickr_id": "4460485537", "setting": "last-3-pick-old-and-tell", "worker_id": "ORUWSWXG7S7VS35", "story_id": "50073", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , they enjoyed dinner and wine and a nice restaurant .", "storylet_id": "250369"}], [{"original_text": "on vactiont his is what im doing", "album_id": "72157623562884889", "photo_flickr_id": "4460483061", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "50074", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on vactiont his is what im doing", "storylet_id": "250370"}], [{"original_text": "rested up and me and the husband got together and have fun", "album_id": "72157623562884889", "photo_flickr_id": "4461261400", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "50074", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "rested up and me and the husband got together and have fun", "storylet_id": "250371"}], [{"original_text": "we like to clown around", "album_id": "72157623562884889", "photo_flickr_id": "4460484343", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "50074", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we like to clown around", "storylet_id": "250372"}], [{"original_text": "we have fun everywhere", "album_id": "72157623562884889", "photo_flickr_id": "4461276934", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "50074", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we have fun everywhere", "storylet_id": "250373"}], [{"original_text": "after we had dinner", "album_id": "72157623562884889", "photo_flickr_id": "4460485537", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "50074", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we had dinner", "storylet_id": "250374"}], [{"original_text": "Cycling is very popular in our city.", "album_id": "72157623686611346", "photo_flickr_id": "4460952848", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "50075", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "cycling is very popular in our city .", "storylet_id": "250375"}], [{"original_text": "People ride for recreation and transportation.", "album_id": "72157623686611346", "photo_flickr_id": "4460955758", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "50075", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people ride for recreation and transportation .", "storylet_id": "250376"}], [{"original_text": "Sometimes you see more bikes than cars on the roads.", "album_id": "72157623686611346", "photo_flickr_id": "4460176173", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "50075", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sometimes you see more bikes than cars on the roads .", "storylet_id": "250377"}], [{"original_text": "Many people commute daily on their bicycles.", "album_id": "72157623686611346", "photo_flickr_id": "4460957570", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "50075", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many people commute daily on their bicycles .", "storylet_id": "250378"}], [{"original_text": "People here certainly love cycling.", "album_id": "72157623686611346", "photo_flickr_id": "4460960236", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "50075", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people here certainly love cycling .", "storylet_id": "250379"}], [{"original_text": "The bicycle park at the train station can be very busy indeed. ", "album_id": "72157623686611346", "photo_flickr_id": "4460176173", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "50076", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bicycle park at the train station can be very busy indeed .", "storylet_id": "250380"}], [{"original_text": "Sometimes bicycle commuters have to wait while getting to their lock up. ", "album_id": "72157623686611346", "photo_flickr_id": "4460956308", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "50076", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sometimes bicycle commuters have to wait while getting to their lock up .", "storylet_id": "250381"}], [{"original_text": "Pondering options, which direction to go, this man is ready for his commute on the train. ", "album_id": "72157623686611346", "photo_flickr_id": "4460954044", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "50076", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "pondering options , which direction to go , this man is ready for his commute on the train .", "storylet_id": "250382"}], [{"original_text": "Another pensive train station bicyclist on the move, hoping she'll be on time. ", "album_id": "72157623686611346", "photo_flickr_id": "4460954606", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "50076", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another pensive train station bicyclist on the move , hoping she 'll be on time .", "storylet_id": "250383"}], [{"original_text": "Not everything is all business at the train station. Sometimes commuters have a chance for a hug! ", "album_id": "72157623686611346", "photo_flickr_id": "4460960236", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "50076", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "not everything is all business at the train station . sometimes commuters have a chance for a hug !", "storylet_id": "250384"}], [{"original_text": "Rachel loves to ride her bike. ", "album_id": "72157623686611346", "photo_flickr_id": "4460952848", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "50077", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] loves to ride her bike .", "storylet_id": "250385"}], [{"original_text": "So does Jacob. He rides several times a day. ", "album_id": "72157623686611346", "photo_flickr_id": "4460955758", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "50077", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so does [male] . he rides several times a day .", "storylet_id": "250386"}], [{"original_text": "They both steal bikes from all over town and pile them up here. ", "album_id": "72157623686611346", "photo_flickr_id": "4460176173", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "50077", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they both steal bikes from all over town and pile them up here .", "storylet_id": "250387"}], [{"original_text": "Along comes Mr. Ryobi and he counts the bikes and has them picked up to ship to the bike factory to be repainted. ", "album_id": "72157623686611346", "photo_flickr_id": "4460957570", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "50077", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "along comes mr. ryobi and he counts the bikes and has them picked up to ship to the bike factory to be repainted .", "storylet_id": "250388"}], [{"original_text": "Here's two bikes that are about to get stolen. They'll be mad but Rachel and Jacob have to make their money. ", "album_id": "72157623686611346", "photo_flickr_id": "4460960236", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "50077", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's two bikes that are about to get stolen . they 'll be mad but [female] and [male] have to make their money .", "storylet_id": "250389"}], [{"original_text": "She met him when she was out for a ride. ", "album_id": "72157623686611346", "photo_flickr_id": "4460952848", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50078", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she met him when she was out for a ride .", "storylet_id": "250390"}], [{"original_text": "They hit it off immediately. ", "album_id": "72157623686611346", "photo_flickr_id": "4460955758", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50078", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they hit it off immediately .", "storylet_id": "250391"}], [{"original_text": "They would park their bikes and take the train. ", "album_id": "72157623686611346", "photo_flickr_id": "4460176173", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50078", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they would park their bikes and take the train .", "storylet_id": "250392"}], [{"original_text": "Most of her friends rode bike to the station and Mr. Bentley was no exception. ", "album_id": "72157623686611346", "photo_flickr_id": "4460957570", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50078", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "most of her friends rode bike to the station and mr. [male] was no exception .", "storylet_id": "250393"}], [{"original_text": "When he saw them kissing, she was quite embarrassed and she didn't know why.", "album_id": "72157623686611346", "photo_flickr_id": "4460960236", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50078", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when he saw them kissing , she was quite embarrassed and she did n't know why .", "storylet_id": "250394"}], [{"original_text": "Everyone's bike was set up for the journey.", "album_id": "72157623686611346", "photo_flickr_id": "4460176173", "setting": "last-3-pick-old-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50079", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone 's bike was set up for the journey .", "storylet_id": "250395"}], [{"original_text": "There were so many lanes to overcome before moving onto a clear land.", "album_id": "72157623686611346", "photo_flickr_id": "4460956308", "setting": "last-3-pick-old-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50079", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many lanes to overcome before moving onto a clear land .", "storylet_id": "250396"}], [{"original_text": "Keith didn't look excited, but more focused.", "album_id": "72157623686611346", "photo_flickr_id": "4460954044", "setting": "last-3-pick-old-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50079", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] did n't look excited , but more focused .", "storylet_id": "250397"}], [{"original_text": "My wife was very patient since she doesn't have much experience riding bikes.", "album_id": "72157623686611346", "photo_flickr_id": "4460954606", "setting": "last-3-pick-old-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50079", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my wife was very patient since she does n't have much experience riding bikes .", "storylet_id": "250398"}], [{"original_text": "I couldn't recall a part of the journey involving a public display of affection.", "album_id": "72157623686611346", "photo_flickr_id": "4460960236", "setting": "last-3-pick-old-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50079", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i could n't recall a part of the journey involving a public display of affection .", "storylet_id": "250399"}], [{"original_text": "The state fair is great fun!", "album_id": "72157623160053863", "photo_flickr_id": "4305292064", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50080", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the state fair is great fun !", "storylet_id": "250400"}], [{"original_text": "There is great food to eat.", "album_id": "72157623160053863", "photo_flickr_id": "4305276928", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50080", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is great food to eat .", "storylet_id": "250401"}], [{"original_text": "There are events like races and animal shows.", "album_id": "72157623160053863", "photo_flickr_id": "4304546205", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50080", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are events like races and animal shows .", "storylet_id": "250402"}], [{"original_text": "Kids also enjoy the petting zoo!", "album_id": "72157623160053863", "photo_flickr_id": "4305293650", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50080", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "kids also enjoy the petting zoo !", "storylet_id": "250403"}], [{"original_text": "And you can't forget the fair oddities like the cheese sculptures! The state fair is a fun family tradition.", "album_id": "72157623160053863", "photo_flickr_id": "4304548785", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50080", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and you ca n't forget the fair oddities like the cheese sculptures ! the state fair is a fun family tradition .", "storylet_id": "250404"}], [{"original_text": "The fair came to town and Gina was going to help.", "album_id": "72157623160053863", "photo_flickr_id": "4305279194", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50081", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fair came to town and [female] was going to help .", "storylet_id": "250405"}], [{"original_text": "They put her in the livestock section and she hated it.", "album_id": "72157623160053863", "photo_flickr_id": "4305280260", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50081", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they put her in the livestock section and she hated it .", "storylet_id": "250406"}], [{"original_text": "The cows were extra smelly and gross.", "album_id": "72157623160053863", "photo_flickr_id": "4305287910", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50081", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cows were extra smelly and gross .", "storylet_id": "250407"}], [{"original_text": "But she got free food because of her help.", "album_id": "72157623160053863", "photo_flickr_id": "4304547141", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50081", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but she got free food because of her help .", "storylet_id": "250408"}], [{"original_text": "After complaining, they put her in the petting zoo.", "album_id": "72157623160053863", "photo_flickr_id": "4305293650", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50081", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after complaining , they put her in the petting zoo .", "storylet_id": "250409"}], [{"original_text": "Went to the day of the cow country fair.", "album_id": "72157623160053863", "photo_flickr_id": "4305292064", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50082", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went to the day of the cow country fair .", "storylet_id": "250410"}], [{"original_text": "Lots of foods and wonderful things to eat.", "album_id": "72157623160053863", "photo_flickr_id": "4305276928", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50082", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of foods and wonderful things to eat .", "storylet_id": "250411"}], [{"original_text": "Saw a rodeo.", "album_id": "72157623160053863", "photo_flickr_id": "4304546205", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50082", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "saw a rodeo .", "storylet_id": "250412"}], [{"original_text": "met some new cows.", "album_id": "72157623160053863", "photo_flickr_id": "4305293650", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50082", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "met some new cows .", "storylet_id": "250413"}], [{"original_text": "Woh, this is made of cheese and I want to eat it all.", "album_id": "72157623160053863", "photo_flickr_id": "4304548785", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50082", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "woh , this is made of cheese and i want to eat it all .", "storylet_id": "250414"}], [{"original_text": "We went to the state fair.", "album_id": "72157623160053863", "photo_flickr_id": "4305292064", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50083", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the state fair .", "storylet_id": "250415"}], [{"original_text": "Fair food is the best food.", "album_id": "72157623160053863", "photo_flickr_id": "4305276928", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50083", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fair food is the best food .", "storylet_id": "250416"}], [{"original_text": "We watched the rodeo.", "album_id": "72157623160053863", "photo_flickr_id": "4304546205", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50083", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we watched the rodeo .", "storylet_id": "250417"}], [{"original_text": "We went into the petting zoo to see the goats.", "album_id": "72157623160053863", "photo_flickr_id": "4305293650", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50083", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went into the petting zoo to see the goats .", "storylet_id": "250418"}], [{"original_text": "We also saw all the crafts that won prizes.", "album_id": "72157623160053863", "photo_flickr_id": "4304548785", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50083", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also saw all the crafts that won prizes .", "storylet_id": "250419"}], [{"original_text": "a day out at the fair where lot is going on", "album_id": "72157623160053863", "photo_flickr_id": "4305292064", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "50084", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a day out at the fair where lot is going on", "storylet_id": "250420"}], [{"original_text": "lots of people is there they is buying pizza", "album_id": "72157623160053863", "photo_flickr_id": "4305276928", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "50084", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of people is there they is buying pizza", "storylet_id": "250421"}], [{"original_text": "there is a horse and biggie race ", "album_id": "72157623160053863", "photo_flickr_id": "4304546205", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "50084", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is a horse and biggie race", "storylet_id": "250422"}], [{"original_text": "also there are horses and young baby horses there ", "album_id": "72157623160053863", "photo_flickr_id": "4305293650", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "50084", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "also there are horses and young baby horses there", "storylet_id": "250423"}], [{"original_text": "and lots of games also to play", "album_id": "72157623160053863", "photo_flickr_id": "4304548785", "setting": "last-3-pick-old-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "50084", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and lots of games also to play", "storylet_id": "250424"}], [{"original_text": "A helicopter flew high and displayed the flag.", "album_id": "72157623162012697", "photo_flickr_id": "4306145324", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50085", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a helicopter flew high and displayed the flag .", "storylet_id": "250425"}], [{"original_text": "From my view, I took a picture of the architecture.", "album_id": "72157623162012697", "photo_flickr_id": "4305397551", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50085", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from my view , i took a picture of the architecture .", "storylet_id": "250426"}], [{"original_text": "The city was full of life and business.", "album_id": "72157623162012697", "photo_flickr_id": "4305393947", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50085", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the city was full of life and business .", "storylet_id": "250427"}], [{"original_text": "We visited the cathedral to scout the statue.", "album_id": "72157623162012697", "photo_flickr_id": "4306128192", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50085", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we visited the cathedral to scout the statue .", "storylet_id": "250428"}], [{"original_text": "We arrived at the statue and took a great photo.", "album_id": "72157623162012697", "photo_flickr_id": "4306124672", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50085", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we arrived at the statue and took a great photo .", "storylet_id": "250429"}], [{"original_text": "Many people visit Britain, it is a beautiful place to go.", "album_id": "72157623162012697", "photo_flickr_id": "4306145324", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "50086", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people visit location , it is a beautiful place to go .", "storylet_id": "250430"}], [{"original_text": "Some people love coming in by boat it makes the traveling very nice.", "album_id": "72157623162012697", "photo_flickr_id": "4305398637", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "50086", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some people love coming in by boat it makes the traveling very nice .", "storylet_id": "250431"}], [{"original_text": "Even the bridges are so breathtaking. The view is beyond amazing.", "album_id": "72157623162012697", "photo_flickr_id": "4306138750", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "50086", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the bridges are so breathtaking . the view is beyond amazing .", "storylet_id": "250432"}], [{"original_text": "Going into museums you can see wonderful works of art.", "album_id": "72157623162012697", "photo_flickr_id": "4305391913", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "50086", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "going into museums you can see wonderful works of art .", "storylet_id": "250433"}], [{"original_text": "The outside has many statues honoring people. This one for instance, with a man on his horse.", "album_id": "72157623162012697", "photo_flickr_id": "4305381767", "setting": "first-2-pick-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "50086", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the outside has many statues honoring people . this one for instance , with a man on his horse .", "storylet_id": "250434"}], [{"original_text": "Big British flag.", "album_id": "72157623162012697", "photo_flickr_id": "4306145324", "setting": "last-3-pick-old-and-tell", "worker_id": "W1Q5SRWW4S9P1BF", "story_id": "50087", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "big british flag .", "storylet_id": "250435"}], [{"original_text": "Lots of ships in water.", "album_id": "72157623162012697", "photo_flickr_id": "4305398637", "setting": "last-3-pick-old-and-tell", "worker_id": "W1Q5SRWW4S9P1BF", "story_id": "50087", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of ships in water .", "storylet_id": "250436"}], [{"original_text": "Big bridge over there.", "album_id": "72157623162012697", "photo_flickr_id": "4306138750", "setting": "last-3-pick-old-and-tell", "worker_id": "W1Q5SRWW4S9P1BF", "story_id": "50087", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "big bridge over there .", "storylet_id": "250437"}], [{"original_text": "People look at statue.", "album_id": "72157623162012697", "photo_flickr_id": "4305391913", "setting": "last-3-pick-old-and-tell", "worker_id": "W1Q5SRWW4S9P1BF", "story_id": "50087", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people look at statue .", "storylet_id": "250438"}], [{"original_text": "A big horse statue.", "album_id": "72157623162012697", "photo_flickr_id": "4305381767", "setting": "last-3-pick-old-and-tell", "worker_id": "W1Q5SRWW4S9P1BF", "story_id": "50087", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a big horse statue .", "storylet_id": "250439"}], [{"original_text": "The flag flying was beautiful.", "album_id": "72157623162012697", "photo_flickr_id": "4306145324", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "50088", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the flag flying was beautiful .", "storylet_id": "250440"}], [{"original_text": "We got to see many famous buildings.", "album_id": "72157623162012697", "photo_flickr_id": "4305397551", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "50088", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to see many famous buildings .", "storylet_id": "250441"}], [{"original_text": "We had a great view from where we were.", "album_id": "72157623162012697", "photo_flickr_id": "4305393947", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "50088", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a great view from where we were .", "storylet_id": "250442"}], [{"original_text": "We got to see a building that was a favorite by everyone.", "album_id": "72157623162012697", "photo_flickr_id": "4306128192", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "50088", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got to see a building that was a favorite by everyone .", "storylet_id": "250443"}], [{"original_text": "The man on the horse was spectacular.", "album_id": "72157623162012697", "photo_flickr_id": "4306124672", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "50088", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the man on the horse was spectacular .", "storylet_id": "250444"}], [{"original_text": "The flag was blowing ", "album_id": "72157623162012697", "photo_flickr_id": "4306145324", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50089", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the flag was blowing", "storylet_id": "250445"}], [{"original_text": "near the dock.", "album_id": "72157623162012697", "photo_flickr_id": "4305398637", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50089", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "near the dock .", "storylet_id": "250446"}], [{"original_text": "There was a big bridge", "album_id": "72157623162012697", "photo_flickr_id": "4306138750", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50089", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a big bridge", "storylet_id": "250447"}], [{"original_text": "with a building ", "album_id": "72157623162012697", "photo_flickr_id": "4305391913", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50089", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with a building", "storylet_id": "250448"}], [{"original_text": "that had a statue nearby.", "album_id": "72157623162012697", "photo_flickr_id": "4305381767", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50089", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that had a statue nearby .", "storylet_id": "250449"}], [{"original_text": "Travelling internationally can be a kick! Here we are in Spain for a visit", "album_id": "72157623388688073", "photo_flickr_id": "4389398247", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "50090", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "travelling internationally can be a kick ! here we are in location for a visit", "storylet_id": "250450"}], [{"original_text": "We had a chance to see a lot of the statue and fountain art in the country of Spain. ", "album_id": "72157623388688073", "photo_flickr_id": "4390166096", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "50090", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a chance to see a lot of the statue and fountain art in the country of location .", "storylet_id": "250451"}], [{"original_text": "Here we got to see a tall regal old building with a nice pedestal top. ", "album_id": "72157623388688073", "photo_flickr_id": "4390166124", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "50090", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here we got to see a tall regal old building with a nice pedestal top .", "storylet_id": "250452"}], [{"original_text": "And then we had to check out the stadium in the country. ", "album_id": "72157623388688073", "photo_flickr_id": "4390165984", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "50090", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and then we had to check out the stadium in the country .", "storylet_id": "250453"}], [{"original_text": "Lastly we rode in some space age seats for a wild ride! Great trip to another country!", "album_id": "72157623388688073", "photo_flickr_id": "4390165968", "setting": "first-2-pick-and-tell", "worker_id": "I3QZ8ITPV5XILL5", "story_id": "50090", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly we rode in some space age seats for a wild ride ! great trip to another country !", "storylet_id": "250454"}], [{"original_text": "The candidate met with his supporters in Iowa.", "album_id": "72157623388688073", "photo_flickr_id": "4389398327", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50091", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the candidate met with his supporters in location .", "storylet_id": "250455"}], [{"original_text": "Before he spoke to the crowd, he listened to what his advisors had to say.", "album_id": "72157623388688073", "photo_flickr_id": "4389398293", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50091", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before he spoke to the crowd , he listened to what his advisors had to say .", "storylet_id": "250456"}], [{"original_text": "They had a lot of insights about what Iowans wanted to hear from him. He listened intently.", "album_id": "72157623388688073", "photo_flickr_id": "4390166034", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50091", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a lot of insights about what iowans wanted to hear from him . he listened intently .", "storylet_id": "250457"}], [{"original_text": "Whe it was time, he addressed the crowd that had gathered for him.", "album_id": "72157623388688073", "photo_flickr_id": "4390165968", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50091", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "whe it was time , he addressed the crowd that had gathered for him .", "storylet_id": "250458"}], [{"original_text": "He convinced many in the crowd that he was the best candidate.", "album_id": "72157623388688073", "photo_flickr_id": "4390165960", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50091", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he convinced many in the crowd that he was the best candidate .", "storylet_id": "250459"}], [{"original_text": "Meeting trying to gather ideas for our new product. ", "album_id": "72157623388688073", "photo_flickr_id": "4389398247", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "50092", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "meeting trying to gather ideas for our new product .", "storylet_id": "250460"}], [{"original_text": "Listening to some of the staff ideas on which way we should go. ", "album_id": "72157623388688073", "photo_flickr_id": "4390166096", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "50092", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "listening to some of the staff ideas on which way we should go .", "storylet_id": "250461"}], [{"original_text": "Showing them the pros and cons of the solution that was suggested.", "album_id": "72157623388688073", "photo_flickr_id": "4390166124", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "50092", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "showing them the pros and cons of the solution that was suggested .", "storylet_id": "250462"}], [{"original_text": "We wanted to get a group picture of everyone who participated.", "album_id": "72157623388688073", "photo_flickr_id": "4390165984", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "50092", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we wanted to get a group picture of everyone who participated .", "storylet_id": "250463"}], [{"original_text": "Thanking everyone for coming and will keep in touch with them.", "album_id": "72157623388688073", "photo_flickr_id": "4390165968", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "50092", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thanking everyone for coming and will keep in touch with them .", "storylet_id": "250464"}], [{"original_text": "Many of the board members came to the meeting.", "album_id": "72157623388688073", "photo_flickr_id": "4389398247", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50093", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many of the board members came to the meeting .", "storylet_id": "250465"}], [{"original_text": "The men brought most of the humor.", "album_id": "72157623388688073", "photo_flickr_id": "4390166096", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50093", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the men brought most of the humor .", "storylet_id": "250466"}], [{"original_text": "The leader also gave most of the facts for the meeting.", "album_id": "72157623388688073", "photo_flickr_id": "4390166124", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50093", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the leader also gave most of the facts for the meeting .", "storylet_id": "250467"}], [{"original_text": "The group of employees took a picture at the end.", "album_id": "72157623388688073", "photo_flickr_id": "4390165984", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50093", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the group of employees took a picture at the end .", "storylet_id": "250468"}], [{"original_text": "There was also a small lecture.", "album_id": "72157623388688073", "photo_flickr_id": "4390165968", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50093", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was also a small lecture .", "storylet_id": "250469"}], [{"original_text": "The guys were at a meeting", "album_id": "72157623388688073", "photo_flickr_id": "4389398247", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50094", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guys were at a meeting", "storylet_id": "250470"}], [{"original_text": "and laughing.", "album_id": "72157623388688073", "photo_flickr_id": "4390166096", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50094", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and laughing .", "storylet_id": "250471"}], [{"original_text": "They presented their ideas", "album_id": "72157623388688073", "photo_flickr_id": "4390166124", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50094", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they presented their ideas", "storylet_id": "250472"}], [{"original_text": "and then took photos", "album_id": "72157623388688073", "photo_flickr_id": "4390165984", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50094", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and then took photos", "storylet_id": "250473"}], [{"original_text": "before talking some more.", "album_id": "72157623388688073", "photo_flickr_id": "4390165968", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50094", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before talking some more .", "storylet_id": "250474"}], [{"original_text": "Tim is going on a stroll.", "album_id": "72157623389431321", "photo_flickr_id": "4390308492", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50095", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is going on a stroll .", "storylet_id": "250475"}], [{"original_text": "He takes a selfie to capture the moment.", "album_id": "72157623389431321", "photo_flickr_id": "4389542963", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50095", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he takes a selfie to capture the moment .", "storylet_id": "250476"}], [{"original_text": "He walks over to a famous garden of sculptures.", "album_id": "72157623389431321", "photo_flickr_id": "4390314106", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50095", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he walks over to a famous garden of sculptures .", "storylet_id": "250477"}], [{"original_text": "He takes a picture of the manmade stream.", "album_id": "72157623389431321", "photo_flickr_id": "4390321388", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50095", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he takes a picture of the manmade stream .", "storylet_id": "250478"}], [{"original_text": "He ends the stroll by the wall that has been decorated with children's handprints.", "album_id": "72157623389431321", "photo_flickr_id": "4389555955", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50095", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he ends the stroll by the wall that has been decorated with children 's handprints .", "storylet_id": "250479"}], [{"original_text": "Jim likes to sometimes walk around town, both for exercise and to view interesting sights.", "album_id": "72157623389431321", "photo_flickr_id": "4390311560", "setting": "first-2-pick-and-tell", "worker_id": "YTAGFN34NPSDIKH", "story_id": "50096", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] likes to sometimes walk around town , both for exercise and to view interesting sights .", "storylet_id": "250480"}], [{"original_text": "The plaza features attractive tiles with historical information on plaques.", "album_id": "72157623389431321", "photo_flickr_id": "4389555207", "setting": "first-2-pick-and-tell", "worker_id": "YTAGFN34NPSDIKH", "story_id": "50096", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the plaza features attractive tiles with historical information on plaques .", "storylet_id": "250481"}], [{"original_text": "The canal is always a pleasant place to rest for a while.", "album_id": "72157623389431321", "photo_flickr_id": "4390321388", "setting": "first-2-pick-and-tell", "worker_id": "YTAGFN34NPSDIKH", "story_id": "50096", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the canal is always a pleasant place to rest for a while .", "storylet_id": "250482"}], [{"original_text": "The wall with children's hand-prints is one of Jim's favorite places.", "album_id": "72157623389431321", "photo_flickr_id": "4389555955", "setting": "first-2-pick-and-tell", "worker_id": "YTAGFN34NPSDIKH", "story_id": "50096", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wall with children 's hand-prints is one of [male] 's favorite places .", "storylet_id": "250483"}], [{"original_text": "At the end of the day, Jim met some friends for dinner.", "album_id": "72157623389431321", "photo_flickr_id": "4390443426", "setting": "first-2-pick-and-tell", "worker_id": "YTAGFN34NPSDIKH", "story_id": "50096", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , [male] met some friends for dinner .", "storylet_id": "250484"}], [{"original_text": "Went to see the dedication wall and it was very nice. All those flowers were beautiful.", "album_id": "72157623389431321", "photo_flickr_id": "4390308492", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50097", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went to see the dedication wall and it was very nice . all those flowers were beautiful .", "storylet_id": "250485"}], [{"original_text": "Here I am up close.", "album_id": "72157623389431321", "photo_flickr_id": "4389542963", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50097", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here i am up close .", "storylet_id": "250486"}], [{"original_text": "I was amazed at all these chair like things.", "album_id": "72157623389431321", "photo_flickr_id": "4390314106", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50097", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was amazed at all these chair like things .", "storylet_id": "250487"}], [{"original_text": "Beautiful waterway. I enjoyed this part of the trip.", "album_id": "72157623389431321", "photo_flickr_id": "4390321388", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50097", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "beautiful waterway . i enjoyed this part of the trip .", "storylet_id": "250488"}], [{"original_text": "I mostly enjoyed all the wonderful handprints to celebrate the love of people.", "album_id": "72157623389431321", "photo_flickr_id": "4389555955", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50097", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i mostly enjoyed all the wonderful handprints to celebrate the love of people .", "storylet_id": "250489"}], [{"original_text": "I am a cop for my local town", "album_id": "72157623389431321", "photo_flickr_id": "4390311560", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "50098", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am a cop for my local town", "storylet_id": "250490"}], [{"original_text": "and I like to help others ", "album_id": "72157623389431321", "photo_flickr_id": "4389555207", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "50098", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and i like to help others", "storylet_id": "250491"}], [{"original_text": "I go around and learn my city", "album_id": "72157623389431321", "photo_flickr_id": "4390321388", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "50098", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i go around and learn my city", "storylet_id": "250492"}], [{"original_text": "I also help out with the kids", "album_id": "72157623389431321", "photo_flickr_id": "4389555955", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "50098", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also help out with the kids", "storylet_id": "250493"}], [{"original_text": "we are a great team", "album_id": "72157623389431321", "photo_flickr_id": "4390443426", "setting": "last-3-pick-old-and-tell", "worker_id": "7TRUCCS69WUW63L", "story_id": "50098", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we are a great team", "storylet_id": "250494"}], [{"original_text": "Walking was the one thing he did strictly for himself. ", "album_id": "72157623389431321", "photo_flickr_id": "4390308492", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50099", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walking was the one thing he did strictly for himself .", "storylet_id": "250495"}], [{"original_text": "It made him feel good. ", "album_id": "72157623389431321", "photo_flickr_id": "4389542963", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50099", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it made him feel good .", "storylet_id": "250496"}], [{"original_text": "Invigorated by the things he saw.", "album_id": "72157623389431321", "photo_flickr_id": "4390314106", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50099", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "invigorated by the things he saw .", "storylet_id": "250497"}], [{"original_text": "Fresh air, the water, it gave him a sense of peace. ", "album_id": "72157623389431321", "photo_flickr_id": "4390321388", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50099", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fresh air , the water , it gave him a sense of peace .", "storylet_id": "250498"}], [{"original_text": "He pressed his hand against the wall and wondered about all those souls. ", "album_id": "72157623389431321", "photo_flickr_id": "4389555955", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50099", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he pressed his hand against the wall and wondered about all those souls .", "storylet_id": "250499"}], [{"original_text": "Amy looks inside a peephole.", "album_id": "72157623389582731", "photo_flickr_id": "4389259867", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50100", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] looks inside a peephole .", "storylet_id": "250500"}], [{"original_text": "She sees a party going on so she wanders inside.", "album_id": "72157623389582731", "photo_flickr_id": "4389261747", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50100", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she sees a party going on so she wanders inside .", "storylet_id": "250501"}], [{"original_text": "It has all of her favorite characters!", "album_id": "72157623389582731", "photo_flickr_id": "4389262027", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50100", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it has all of her favorite characters !", "storylet_id": "250502"}], [{"original_text": "So she starts to dance and play with them.", "album_id": "72157623389582731", "photo_flickr_id": "4389262299", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50100", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so she starts to dance and play with them .", "storylet_id": "250503"}], [{"original_text": "She eventually tires and they all wave goodbye to her.", "album_id": "72157623389582731", "photo_flickr_id": "4390033100", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50100", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she eventually tires and they all wave goodbye to her .", "storylet_id": "250504"}], [{"original_text": "What seemed like a boring thing to the kids piling into the cafeteria would soon surprise them.", "album_id": "72157623389582731", "photo_flickr_id": "4389260131", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "50101", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what seemed like a boring thing to the kids piling into the cafeteria would soon surprise them .", "storylet_id": "250505"}], [{"original_text": "Breakfast was served buffet style.", "album_id": "72157623389582731", "photo_flickr_id": "4389261233", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "50101", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "breakfast was served buffet style .", "storylet_id": "250506"}], [{"original_text": "Soon the visitors from Sesame Street surprised the kids with a show.", "album_id": "72157623389582731", "photo_flickr_id": "4389261747", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "50101", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "soon the visitors from location location surprised the kids with a show .", "storylet_id": "250507"}], [{"original_text": "Cookie Monster did a meet and greet with all of the kids.", "album_id": "72157623389582731", "photo_flickr_id": "4390028722", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "50101", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cookie monster did a meet and greet with all of the kids .", "storylet_id": "250508"}], [{"original_text": "Big Bird also showed up!", "album_id": "72157623389582731", "photo_flickr_id": "4389263089", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "50101", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "big bird also showed up !", "storylet_id": "250509"}], [{"original_text": "We took the kids out to she the muppets.for", "album_id": "72157623389582731", "photo_flickr_id": "4389259867", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "50102", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took the kids out to she the muppets.for", "storylet_id": "250510"}], [{"original_text": "There were a lot of people there.", "album_id": "72157623389582731", "photo_flickr_id": "4389261747", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "50102", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people there .", "storylet_id": "250511"}], [{"original_text": "My little daughter was amazed!", "album_id": "72157623389582731", "photo_flickr_id": "4389262027", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "50102", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my little daughter was amazed !", "storylet_id": "250512"}], [{"original_text": "Little Jimmy showing off his dance moves.", "album_id": "72157623389582731", "photo_flickr_id": "4389262299", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "50102", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "little [male] showing off his dance moves .", "storylet_id": "250513"}], [{"original_text": "Photo op!", "album_id": "72157623389582731", "photo_flickr_id": "4390033100", "setting": "last-3-pick-old-and-tell", "worker_id": "LLNZ4SSMJHKAKTS", "story_id": "50102", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "photo op !", "storylet_id": "250514"}], [{"original_text": "Boy looking through hole.", "album_id": "72157623389582731", "photo_flickr_id": "4389259867", "setting": "last-3-pick-old-and-tell", "worker_id": "W1Q5SRWW4S9P1BF", "story_id": "50103", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "boy looking through hole .", "storylet_id": "250515"}], [{"original_text": "Sesame street on stage.", "album_id": "72157623389582731", "photo_flickr_id": "4389261747", "setting": "last-3-pick-old-and-tell", "worker_id": "W1Q5SRWW4S9P1BF", "story_id": "50103", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sesame street on stage .", "storylet_id": "250516"}], [{"original_text": "Cookie monster and some.", "album_id": "72157623389582731", "photo_flickr_id": "4389262027", "setting": "last-3-pick-old-and-tell", "worker_id": "W1Q5SRWW4S9P1BF", "story_id": "50103", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "cookie monster and some .", "storylet_id": "250517"}], [{"original_text": "Giant cartoon costume.", "album_id": "72157623389582731", "photo_flickr_id": "4389262299", "setting": "last-3-pick-old-and-tell", "worker_id": "W1Q5SRWW4S9P1BF", "story_id": "50103", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "giant cartoon costume .", "storylet_id": "250518"}], [{"original_text": "Big Bird with kid.", "album_id": "72157623389582731", "photo_flickr_id": "4390033100", "setting": "last-3-pick-old-and-tell", "worker_id": "W1Q5SRWW4S9P1BF", "story_id": "50103", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "big bird with kid .", "storylet_id": "250519"}], [{"original_text": "The boy was looking at the fence", "album_id": "72157623389582731", "photo_flickr_id": "4389259867", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50104", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boy was looking at the fence", "storylet_id": "250520"}], [{"original_text": "as people were around.", "album_id": "72157623389582731", "photo_flickr_id": "4389261747", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50104", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as people were around .", "storylet_id": "250521"}], [{"original_text": "There were giant seasame street people.", "album_id": "72157623389582731", "photo_flickr_id": "4389262027", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50104", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were giant seasame street people .", "storylet_id": "250522"}], [{"original_text": "Including an orange guy", "album_id": "72157623389582731", "photo_flickr_id": "4389262299", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50104", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "including an orange guy", "storylet_id": "250523"}], [{"original_text": "and big bird.", "album_id": "72157623389582731", "photo_flickr_id": "4390033100", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50104", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and big bird .", "storylet_id": "250524"}], [{"original_text": "At the company meeting today, after going over all of the normal business, a guest speaker was brought in.", "album_id": "72157623513338444", "photo_flickr_id": "4389436285", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50105", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the company meeting today , after going over all of the normal business , a guest speaker was brought in .", "storylet_id": "250525"}], [{"original_text": "The company CEO introduced Mr. Bartlin to the group.", "album_id": "72157623513338444", "photo_flickr_id": "4389436249", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50105", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the company ceo introduced mr. bartlin to the group .", "storylet_id": "250526"}], [{"original_text": "Mr. Bartlin is a motivational speaker who is known for being able to increase company sales.", "album_id": "72157623513338444", "photo_flickr_id": "4389436411", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50105", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mr. bartlin is a motivational speaker who is known for being able to increase company sales .", "storylet_id": "250527"}], [{"original_text": "During his presentation, he showed a graph made of other companies who have implemented his policies and it showed great growth.", "album_id": "72157623513338444", "photo_flickr_id": "4390204096", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50105", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "during his presentation , he showed a graph made of other companies who have implemented his policies and it showed great growth .", "storylet_id": "250528"}], [{"original_text": "At the end, he hosted a question and answer period which the employees really enjoyed.", "album_id": "72157623513338444", "photo_flickr_id": "4390204074", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50105", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , he hosted a question and answer period which the employees really enjoyed .", "storylet_id": "250529"}], [{"original_text": "Mr. Klein led the sales meeting", "album_id": "72157623513338444", "photo_flickr_id": "4389436257", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50106", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mr. klein led the sales meeting", "storylet_id": "250530"}], [{"original_text": "he talked about profit sharing ", "album_id": "72157623513338444", "photo_flickr_id": "4390204096", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50106", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he talked about profit sharing", "storylet_id": "250531"}], [{"original_text": "he was blessed that the company was doing well", "album_id": "72157623513338444", "photo_flickr_id": "4390204132", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50106", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was blessed that the company was doing well", "storylet_id": "250532"}], [{"original_text": "everyone was happy about it.", "album_id": "72157623513338444", "photo_flickr_id": "4389436285", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50106", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was happy about it .", "storylet_id": "250533"}], [{"original_text": "Tony Sly also spoke to the crowd.", "album_id": "72157623513338444", "photo_flickr_id": "4389436249", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50106", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] sly also spoke to the crowd .", "storylet_id": "250534"}], [{"original_text": "Welcome to the meeting of the fun jobs inc.", "album_id": "72157623513338444", "photo_flickr_id": "4389436285", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50107", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "welcome to the meeting of the fun jobs inc .", "storylet_id": "250535"}], [{"original_text": "Today we're teaching you what our company is about.", "album_id": "72157623513338444", "photo_flickr_id": "4389436249", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50107", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today we 're teaching you what our company is about .", "storylet_id": "250536"}], [{"original_text": "This man describes with great detail the fun in the company.", "album_id": "72157623513338444", "photo_flickr_id": "4389436411", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50107", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this man describes with great detail the fun in the company .", "storylet_id": "250537"}], [{"original_text": "He then shows a chart of all the profits we make at fun.", "album_id": "72157623513338444", "photo_flickr_id": "4390204096", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50107", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he then shows a chart of all the profits we make at fun .", "storylet_id": "250538"}], [{"original_text": "Any questions he says, I say, Yes, lots.", "album_id": "72157623513338444", "photo_flickr_id": "4390204074", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50107", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "any questions he says , i say , yes , lots .", "storylet_id": "250539"}], [{"original_text": "My boss had a great investment idea.", "album_id": "72157623513338444", "photo_flickr_id": "4389436285", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50108", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my boss had a great investment idea .", "storylet_id": "250540"}], [{"original_text": "He held a presentation for the board of the company.", "album_id": "72157623513338444", "photo_flickr_id": "4389436249", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50108", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he held a presentation for the board of the company .", "storylet_id": "250541"}], [{"original_text": "He explained his ideas.", "album_id": "72157623513338444", "photo_flickr_id": "4389436411", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50108", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he explained his ideas .", "storylet_id": "250542"}], [{"original_text": "He charted them out on a nice presentation.", "album_id": "72157623513338444", "photo_flickr_id": "4390204096", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50108", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he charted them out on a nice presentation .", "storylet_id": "250543"}], [{"original_text": "They seemed to respond well.", "album_id": "72157623513338444", "photo_flickr_id": "4390204074", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50108", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they seemed to respond well .", "storylet_id": "250544"}], [{"original_text": "There was an important business meeting for an up and coming technology company.", "album_id": "72157623513338444", "photo_flickr_id": "4389436257", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "50109", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an important business meeting for an up and coming technology company .", "storylet_id": "250545"}], [{"original_text": "The presenter used graphs to represent future productivity and profit levels.", "album_id": "72157623513338444", "photo_flickr_id": "4390204096", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "50109", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the presenter used graphs to represent future productivity and profit levels .", "storylet_id": "250546"}], [{"original_text": "He was asked many questions by those in attendance.", "album_id": "72157623513338444", "photo_flickr_id": "4390204132", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "50109", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was asked many questions by those in attendance .", "storylet_id": "250547"}], [{"original_text": "This group was very interested in future business goals and how it would affect them personally.", "album_id": "72157623513338444", "photo_flickr_id": "4389436285", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "50109", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this group was very interested in future business goals and how it would affect them personally .", "storylet_id": "250548"}], [{"original_text": "The presentation concluded and final questions were taken from the attendees.", "album_id": "72157623513338444", "photo_flickr_id": "4389436249", "setting": "last-3-pick-old-and-tell", "worker_id": "ULJP4P63Z2PF2EW", "story_id": "50109", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the presentation concluded and final questions were taken from the attendees .", "storylet_id": "250549"}], [{"original_text": "The group got together to discuss the future of their company.", "album_id": "72157623513528524", "photo_flickr_id": "4389506231", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50110", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group got together to discuss the future of their company .", "storylet_id": "250550"}], [{"original_text": "The CEO introduced their speaker.", "album_id": "72157623513528524", "photo_flickr_id": "4389506193", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50110", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ceo introduced their speaker .", "storylet_id": "250551"}], [{"original_text": "The man stood and began talking to them about outsourcing their jobs.", "album_id": "72157623513528524", "photo_flickr_id": "4389506207", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50110", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man stood and began talking to them about outsourcing their jobs .", "storylet_id": "250552"}], [{"original_text": "The CEO was apologetic but remained committed to his decision.", "album_id": "72157623513528524", "photo_flickr_id": "4389506305", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50110", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ceo was apologetic but remained committed to his decision .", "storylet_id": "250553"}], [{"original_text": "The employees sat around the table, stunned. They were very disappointed!", "album_id": "72157623513528524", "photo_flickr_id": "4390274340", "setting": "first-2-pick-and-tell", "worker_id": "X8UNGEEZ7YWNWET", "story_id": "50110", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the employees sat around the table , stunned . they were very disappointed !", "storylet_id": "250554"}], [{"original_text": "Young adults from local school come to learn about running a business in a business like meeting.", "album_id": "72157623513528524", "photo_flickr_id": "4390274340", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50111", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "young adults from local school come to learn about running a business in a business like meeting .", "storylet_id": "250555"}], [{"original_text": "During this time the high schoolers were given snacks and drinks as it were a long session.", "album_id": "72157623513528524", "photo_flickr_id": "4389506277", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50111", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "during this time the high schoolers were given snacks and drinks as it were a long session .", "storylet_id": "250556"}], [{"original_text": "Here is the whole group that participated that day.Including the key speaker and CEO.", "album_id": "72157623513528524", "photo_flickr_id": "4389506231", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50111", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is the whole group that participated that day.including the key speaker and ceo .", "storylet_id": "250557"}], [{"original_text": "A colleague and partner chiming in on what it takes to run a successful business.", "album_id": "72157623513528524", "photo_flickr_id": "4389506207", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50111", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a colleague and partner chiming in on what it takes to run a successful business .", "storylet_id": "250558"}], [{"original_text": "Finishing up a dramatic, I was where you were.Not thinking it was all possible.Here I am today speech.", "album_id": "72157623513528524", "photo_flickr_id": "4389506193", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50111", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finishing up a dramatic , i was where you were.not thinking it was all possible.here i am today speech .", "storylet_id": "250559"}], [{"original_text": "Our CEO started the meeting by touching on the recent departure of a senior marketing director.", "album_id": "72157623513528524", "photo_flickr_id": "4390274340", "setting": "last-3-pick-old-and-tell", "worker_id": "HVQCFRPO5SCQ5GW", "story_id": "50112", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our ceo started the meeting by touching on the recent departure of a senior marketing director .", "storylet_id": "250560"}], [{"original_text": "He hired from a competitor company with the hope of reinvigorating the marketing department. ", "album_id": "72157623513528524", "photo_flickr_id": "4389506277", "setting": "last-3-pick-old-and-tell", "worker_id": "HVQCFRPO5SCQ5GW", "story_id": "50112", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he hired from a competitor company with the hope of reinvigorating the marketing department .", "storylet_id": "250561"}], [{"original_text": "Our CEO asked us all to take a picture together; it would hang in the new director's office.", "album_id": "72157623513528524", "photo_flickr_id": "4389506231", "setting": "last-3-pick-old-and-tell", "worker_id": "HVQCFRPO5SCQ5GW", "story_id": "50112", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our ceo asked us all to take a picture together ; it would hang in the new director 's office .", "storylet_id": "250562"}], [{"original_text": "After lunch, the marketing director was brought in and introduced to the staff. ", "album_id": "72157623513528524", "photo_flickr_id": "4389506207", "setting": "last-3-pick-old-and-tell", "worker_id": "HVQCFRPO5SCQ5GW", "story_id": "50112", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after lunch , the marketing director was brought in and introduced to the staff .", "storylet_id": "250563"}], [{"original_text": "Our CEO closed the meeting with a motivating speech about the company's prospects with the new-hire heading the marketing department. ", "album_id": "72157623513528524", "photo_flickr_id": "4389506193", "setting": "last-3-pick-old-and-tell", "worker_id": "HVQCFRPO5SCQ5GW", "story_id": "50112", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our ceo closed the meeting with a motivating speech about the company 's prospects with the new-hire heading the marketing department .", "storylet_id": "250564"}], [{"original_text": "My company hired a motivational speaker to come talk to us.", "album_id": "72157623513528524", "photo_flickr_id": "4389506231", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50113", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my company hired a motivational speaker to come talk to us .", "storylet_id": "250565"}], [{"original_text": "He was very convincing.", "album_id": "72157623513528524", "photo_flickr_id": "4389506193", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50113", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was very convincing .", "storylet_id": "250566"}], [{"original_text": "My boss interrupted him sometimes though.", "album_id": "72157623513528524", "photo_flickr_id": "4389506207", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50113", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my boss interrupted him sometimes though .", "storylet_id": "250567"}], [{"original_text": "He gave us some great pointers on being productive.", "album_id": "72157623513528524", "photo_flickr_id": "4389506305", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50113", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he gave us some great pointers on being productive .", "storylet_id": "250568"}], [{"original_text": "He also pointed out some extra things we could be doing.", "album_id": "72157623513528524", "photo_flickr_id": "4390274340", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50113", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he also pointed out some extra things we could be doing .", "storylet_id": "250569"}], [{"original_text": "The chief came to great us.", "album_id": "72157623513528524", "photo_flickr_id": "4390274340", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "50114", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the chief came to great us .", "storylet_id": "250570"}], [{"original_text": "He talked with us for awhile.", "album_id": "72157623513528524", "photo_flickr_id": "4389506277", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "50114", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he talked with us for awhile .", "storylet_id": "250571"}], [{"original_text": "We got to meet his whole team.", "album_id": "72157623513528524", "photo_flickr_id": "4389506231", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "50114", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got to meet his whole team .", "storylet_id": "250572"}], [{"original_text": "Another man came to great us.", "album_id": "72157623513528524", "photo_flickr_id": "4389506207", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "50114", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another man came to great us .", "storylet_id": "250573"}], [{"original_text": "The chief waved to us as he left.", "album_id": "72157623513528524", "photo_flickr_id": "4389506193", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "50114", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the chief waved to us as he left .", "storylet_id": "250574"}], [{"original_text": "It was brainstorming time in the classroom to come up with the best investment ideas.", "album_id": "72157623514925837", "photo_flickr_id": "4440524819", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50115", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was brainstorming time in the classroom to come up with the best investment ideas .", "storylet_id": "250575"}], [{"original_text": "Various ideas were taped up on the wall.", "album_id": "72157623514925837", "photo_flickr_id": "4440524789", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50115", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "various ideas were taped up on the wall .", "storylet_id": "250576"}], [{"original_text": "Students had a chance to review the different ideas.", "album_id": "72157623514925837", "photo_flickr_id": "4464594421", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50115", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "students had a chance to review the different ideas .", "storylet_id": "250577"}], [{"original_text": "They then got to ask questions.", "album_id": "72157623514925837", "photo_flickr_id": "4440524869", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50115", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they then got to ask questions .", "storylet_id": "250578"}], [{"original_text": "Finally, they broke off into small groups to begin their investment project.", "album_id": "72157623514925837", "photo_flickr_id": "4440525113", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50115", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , they broke off into small groups to begin their investment project .", "storylet_id": "250579"}], [{"original_text": "George needed to plan the orchestra for the next movie melody.", "album_id": "72157623514925837", "photo_flickr_id": "4440524819", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50116", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] needed to plan the orchestra for the next movie melody .", "storylet_id": "250580"}], [{"original_text": "They argued about who would conduct the main production.", "album_id": "72157623514925837", "photo_flickr_id": "4440524869", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50116", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they argued about who would conduct the main production .", "storylet_id": "250581"}], [{"original_text": "The storyboard was placed up so they could get inspired.", "album_id": "72157623514925837", "photo_flickr_id": "4441301582", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50116", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the storyboard was placed up so they could get inspired .", "storylet_id": "250582"}], [{"original_text": "They got inspired right away and got into formation.", "album_id": "72157623514925837", "photo_flickr_id": "4464594421", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50116", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they got inspired right away and got into formation .", "storylet_id": "250583"}], [{"original_text": "George would conduct a masterpiece for Warner Bros.", "album_id": "72157623514925837", "photo_flickr_id": "4465372408", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50116", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] would conduct a masterpiece for organization organization .", "storylet_id": "250584"}], [{"original_text": "Brainstorming ideas for the project. ", "album_id": "72157623514925837", "photo_flickr_id": "4440524819", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "50117", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "brainstorming ideas for the project .", "storylet_id": "250585"}], [{"original_text": "We are getting in some really good ideas.", "album_id": "72157623514925837", "photo_flickr_id": "4440524869", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "50117", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are getting in some really good ideas .", "storylet_id": "250586"}], [{"original_text": "Now let's place the ideas on the board and see where we are at.", "album_id": "72157623514925837", "photo_flickr_id": "4441301582", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "50117", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now let 's place the ideas on the board and see where we are at .", "storylet_id": "250587"}], [{"original_text": "Everything is looking pretty good with the idea, just need to come to an agreement.", "album_id": "72157623514925837", "photo_flickr_id": "4464594421", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "50117", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everything is looking pretty good with the idea , just need to come to an agreement .", "storylet_id": "250588"}], [{"original_text": "Coming to a close with the meeting and would like for everyone to agree what we have done. ", "album_id": "72157623514925837", "photo_flickr_id": "4465372408", "setting": "last-3-pick-old-and-tell", "worker_id": "WDXZVSVZPQSNDF1", "story_id": "50117", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "coming to a close with the meeting and would like for everyone to agree what we have done .", "storylet_id": "250589"}], [{"original_text": "They arrived at the conference and were ready to learn.", "album_id": "72157623514925837", "photo_flickr_id": "4440524819", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50118", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they arrived at the conference and were ready to learn .", "storylet_id": "250590"}], [{"original_text": "John took the stage and began his lecture.", "album_id": "72157623514925837", "photo_flickr_id": "4440524869", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50118", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] took the stage and began his lecture .", "storylet_id": "250591"}], [{"original_text": "He was helped by Tim, whom placed notes upon the board.", "album_id": "72157623514925837", "photo_flickr_id": "4441301582", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50118", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was helped by [male] , whom placed notes upon the board .", "storylet_id": "250592"}], [{"original_text": "They discussed the notes and decided upon a decision.", "album_id": "72157623514925837", "photo_flickr_id": "4464594421", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50118", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they discussed the notes and decided upon a decision .", "storylet_id": "250593"}], [{"original_text": "They made a final decision and presented it to the crowd.", "album_id": "72157623514925837", "photo_flickr_id": "4465372408", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50118", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they made a final decision and presented it to the crowd .", "storylet_id": "250594"}], [{"original_text": "I walked into the building to give my speech.", "album_id": "72157623514925837", "photo_flickr_id": "4440524819", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "50119", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i walked into the building to give my speech .", "storylet_id": "250595"}], [{"original_text": "There were many topics that need to be covered.", "album_id": "72157623514925837", "photo_flickr_id": "4440524789", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "50119", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many topics that need to be covered .", "storylet_id": "250596"}], [{"original_text": "We stood there and reviewed them.", "album_id": "72157623514925837", "photo_flickr_id": "4464594421", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "50119", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stood there and reviewed them .", "storylet_id": "250597"}], [{"original_text": "Members got to ask questions.", "album_id": "72157623514925837", "photo_flickr_id": "4440524869", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "50119", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "members got to ask questions .", "storylet_id": "250598"}], [{"original_text": "We sat and came to an agreement.", "album_id": "72157623514925837", "photo_flickr_id": "4440525113", "setting": "last-3-pick-old-and-tell", "worker_id": "VPJTB1DWZFLFJCM", "story_id": "50119", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we sat and came to an agreement .", "storylet_id": "250599"}], [{"original_text": "Sam is very passionate about his stand for aid.", "album_id": "72157623173259093", "photo_flickr_id": "4309703245", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50120", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is very passionate about his stand for aid .", "storylet_id": "250600"}], [{"original_text": "He rallys up some markers and cardboard and him and his friends decided to make a stand.", "album_id": "72157623173259093", "photo_flickr_id": "4310440476", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50120", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he rallys up some markers and cardboard and him and his friends decided to make a stand .", "storylet_id": "250601"}], [{"original_text": "They march up to Philadelphia to make people hear what they have to say.", "album_id": "72157623173259093", "photo_flickr_id": "4310440500", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50120", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they march up to location to make people hear what they have to say .", "storylet_id": "250602"}], [{"original_text": "Sam elects a speaker to show them exactly how they feel.", "album_id": "72157623173259093", "photo_flickr_id": "4310440702", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50120", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] elects a speaker to show them exactly how they feel .", "storylet_id": "250603"}], [{"original_text": "Everyone gathers around and makes a stand.", "album_id": "72157623173259093", "photo_flickr_id": "4309703569", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50120", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone gathers around and makes a stand .", "storylet_id": "250604"}], [{"original_text": "They group came out that cold morning for a protest.", "album_id": "72157623173259093", "photo_flickr_id": "4309703257", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50121", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they group came out that cold morning for a protest .", "storylet_id": "250605"}], [{"original_text": "They brought their banners that they made.", "album_id": "72157623173259093", "photo_flickr_id": "4310440500", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50121", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they brought their banners that they made .", "storylet_id": "250606"}], [{"original_text": "The each took turns with the megaphone to air their grievances. ", "album_id": "72157623173259093", "photo_flickr_id": "4310440580", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50121", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the each took turns with the megaphone to air their grievances .", "storylet_id": "250607"}], [{"original_text": "Then they all lined up with their signs.", "album_id": "72157623173259093", "photo_flickr_id": "4310440666", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50121", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they all lined up with their signs .", "storylet_id": "250608"}], [{"original_text": "They were proud that they stood there all day for a cause they believed in. ", "album_id": "72157623173259093", "photo_flickr_id": "4309703569", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50121", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were proud that they stood there all day for a cause they believed in .", "storylet_id": "250609"}], [{"original_text": "The group arrived and they were proud.", "album_id": "72157623173259093", "photo_flickr_id": "4309703257", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50122", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group arrived and they were proud .", "storylet_id": "250610"}], [{"original_text": "They brought signs and were ready to protest.", "album_id": "72157623173259093", "photo_flickr_id": "4310440500", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50122", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they brought signs and were ready to protest .", "storylet_id": "250611"}], [{"original_text": "Before it started, Clarence requested that the protest be peaceful.", "album_id": "72157623173259093", "photo_flickr_id": "4310440580", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50122", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "before it started , [male] requested that the protest be peaceful .", "storylet_id": "250612"}], [{"original_text": "And, his members obliged.", "album_id": "72157623173259093", "photo_flickr_id": "4310440666", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50122", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , his members obliged .", "storylet_id": "250613"}], [{"original_text": "They formed a line in front of the White House and let their presence be known.", "album_id": "72157623173259093", "photo_flickr_id": "4309703569", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50122", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they formed a line in front of the organization organization and let their presence be known .", "storylet_id": "250614"}], [{"original_text": "Another rally. An important rally.", "album_id": "72157623173259093", "photo_flickr_id": "4309703257", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50123", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "another rally . an important rally .", "storylet_id": "250615"}], [{"original_text": "Recently there has been a freeze on the budget. One of the services hit by this freeze is treatment for AIDS.", "album_id": "72157623173259093", "photo_flickr_id": "4310440500", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50123", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "recently there has been a freeze on the budget . one of the services hit by this freeze is treatment for aids .", "storylet_id": "250616"}], [{"original_text": "We may not look like a large crowd, but we feel our voices will be heard.", "album_id": "72157623173259093", "photo_flickr_id": "4310440580", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50123", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we may not look like a large crowd , but we feel our voices will be heard .", "storylet_id": "250617"}], [{"original_text": "Our voices were heard. More people joined our cause.", "album_id": "72157623173259093", "photo_flickr_id": "4310440666", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50123", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our voices were heard . more people joined our cause .", "storylet_id": "250618"}], [{"original_text": "We will stand united.", "album_id": "72157623173259093", "photo_flickr_id": "4309703569", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50123", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we will stand united .", "storylet_id": "250619"}], [{"original_text": "The man was holding up a sign", "album_id": "72157623173259093", "photo_flickr_id": "4309703245", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50124", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man was holding up a sign", "storylet_id": "250620"}], [{"original_text": "and others were too.", "album_id": "72157623173259093", "photo_flickr_id": "4310440476", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50124", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and others were too .", "storylet_id": "250621"}], [{"original_text": "They were protesting", "album_id": "72157623173259093", "photo_flickr_id": "4310440500", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50124", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were protesting", "storylet_id": "250622"}], [{"original_text": "while a guy was yelling", "album_id": "72157623173259093", "photo_flickr_id": "4310440702", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50124", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while a guy was yelling", "storylet_id": "250623"}], [{"original_text": "and others had loudspeakers.", "album_id": "72157623173259093", "photo_flickr_id": "4309703569", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50124", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and others had loudspeakers .", "storylet_id": "250624"}], [{"original_text": "the old cards from player cigarettes are worth lots of money there days", "album_id": "72157623404366739", "photo_flickr_id": "4396510794", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50125", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old cards from player cigarettes are worth lots of money there days", "storylet_id": "250625"}], [{"original_text": "they featured stuff like hot air balloons", "album_id": "72157623404366739", "photo_flickr_id": "4396511188", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50125", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they featured stuff like hot air balloons", "storylet_id": "250626"}], [{"original_text": "some of them are worth up to $15,000 ", "album_id": "72157623404366739", "photo_flickr_id": "4395750371", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50125", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them are worth up to $ 15,000", "storylet_id": "250627"}], [{"original_text": "they portrait a different era", "album_id": "72157623404366739", "photo_flickr_id": "4395750741", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50125", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they portrait a different era", "storylet_id": "250628"}], [{"original_text": "indians and tobacco go hand and hand", "album_id": "72157623404366739", "photo_flickr_id": "4395744705", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50125", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "indians and tobacco go hand and hand", "storylet_id": "250629"}], [{"original_text": "About a century ago. the English cigarette company Players distributed cards with their products.", "album_id": "72157623404366739", "photo_flickr_id": "4395746825", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "50126", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "about a century ago . the english cigarette company players distributed cards with their products .", "storylet_id": "250630"}], [{"original_text": "Some of the cards depicted the people native to the arctic.", "album_id": "72157623404366739", "photo_flickr_id": "4395744705", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "50126", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the cards depicted the people native to the arctic .", "storylet_id": "250631"}], [{"original_text": "Other cards showed natural phenomena like the northern lights.", "album_id": "72157623404366739", "photo_flickr_id": "4395751623", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "50126", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other cards showed natural phenomena like the northern lights .", "storylet_id": "250632"}], [{"original_text": "Most of the cards featured the brave men who were just then exploring the incharted territory.", "album_id": "72157623404366739", "photo_flickr_id": "4395746387", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "50126", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "most of the cards featured the brave men who were just then exploring the incharted territory .", "storylet_id": "250633"}], [{"original_text": "Apparently the explorers took time to pose for selfies.", "album_id": "72157623404366739", "photo_flickr_id": "4395748093", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "50126", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "apparently the explorers took time to pose for selfies .", "storylet_id": "250634"}], [{"original_text": "Sir Edward Hamm was a great explorer. ", "album_id": "72157623404366739", "photo_flickr_id": "4396510794", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "50127", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sir [male] hamm was a great explorer .", "storylet_id": "250635"}], [{"original_text": "He traveled around in the first hot air balloon that he invented in 1760. ", "album_id": "72157623404366739", "photo_flickr_id": "4396511188", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "50127", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he traveled around in the first hot air balloon that he invented in 1760 .", "storylet_id": "250636"}], [{"original_text": "On one travel his balloon popped and he flagged down a ship. It captured him and pigmies tried to eat him. ", "album_id": "72157623404366739", "photo_flickr_id": "4395750371", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "50127", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on one travel his balloon popped and he flagged down a ship . it captured him and pigmies tried to eat him .", "storylet_id": "250637"}], [{"original_text": "He grabbed a canoe and escaped with his life. He rowed very fast and found a small island. ", "album_id": "72157623404366739", "photo_flickr_id": "4395750741", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "50127", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he grabbed a canoe and escaped with his life . he rowed very fast and found a small island .", "storylet_id": "250638"}], [{"original_text": "Tsuni Indians found him and welcomed him with open arms. He lived there until he died 50 years later. He was quite happy. ", "album_id": "72157623404366739", "photo_flickr_id": "4395744705", "setting": "last-3-pick-old-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "50127", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "tsuni indians found him and welcomed him with open arms . he lived there until he died 50 years later . he was quite happy .", "storylet_id": "250639"}], [{"original_text": "Went to the museum and found these wonderful postcards. ", "album_id": "72157623404366739", "photo_flickr_id": "4396510794", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50128", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went to the museum and found these wonderful postcards .", "storylet_id": "250640"}], [{"original_text": "I bought several that made me happy about coming to this event.", "album_id": "72157623404366739", "photo_flickr_id": "4396511188", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50128", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i bought several that made me happy about coming to this event .", "storylet_id": "250641"}], [{"original_text": "This is a ship I thought was very awesome along the snow.", "album_id": "72157623404366739", "photo_flickr_id": "4395750371", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50128", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a ship i thought was very awesome along the snow .", "storylet_id": "250642"}], [{"original_text": "This is an escimo battling waves and swimming with the seals.", "album_id": "72157623404366739", "photo_flickr_id": "4395750741", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50128", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is an escimo battling waves and swimming with the seals .", "storylet_id": "250643"}], [{"original_text": "This is an old indean family fishing.", "album_id": "72157623404366739", "photo_flickr_id": "4395744705", "setting": "last-3-pick-old-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50128", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is an old indean family fishing .", "storylet_id": "250644"}], [{"original_text": "The posters showed many things", "album_id": "72157623404366739", "photo_flickr_id": "4396510794", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50129", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the posters showed many things", "storylet_id": "250645"}], [{"original_text": "including a balloon", "album_id": "72157623404366739", "photo_flickr_id": "4396511188", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50129", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "including a balloon", "storylet_id": "250646"}], [{"original_text": "and a ship", "album_id": "72157623404366739", "photo_flickr_id": "4395750371", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50129", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and a ship", "storylet_id": "250647"}], [{"original_text": "and a guy in a canoe.", "album_id": "72157623404366739", "photo_flickr_id": "4395750741", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50129", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and a guy in a canoe .", "storylet_id": "250648"}], [{"original_text": "Lastly there were Indians.", "album_id": "72157623404366739", "photo_flickr_id": "4395744705", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50129", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly there were indians .", "storylet_id": "250649"}], [{"original_text": "Out of bed ready to start my vacation.", "album_id": "72157623184933535", "photo_flickr_id": "4314045281", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50130", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "out of bed ready to start my vacation .", "storylet_id": "250650"}], [{"original_text": "The crowd gathers around the geyser.", "album_id": "72157623184933535", "photo_flickr_id": "4314047915", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50130", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd gathers around the geyser .", "storylet_id": "250651"}], [{"original_text": "Patiently waiting for the geyser to erupt.", "album_id": "72157623184933535", "photo_flickr_id": "4314771170", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50130", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "patiently waiting for the geyser to erupt .", "storylet_id": "250652"}], [{"original_text": "The steam is shooting up in air.", "album_id": "72157623184933535", "photo_flickr_id": "4314052959", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50130", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the steam is shooting up in air .", "storylet_id": "250653"}], [{"original_text": "The crowd is happy they were able to witness the eruption.", "album_id": "72157623184933535", "photo_flickr_id": "4314754812", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50130", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the crowd is happy they were able to witness the eruption .", "storylet_id": "250654"}], [{"original_text": "we went to the hot springs", "album_id": "72157623184933535", "photo_flickr_id": "4314052959", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50131", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the hot springs", "storylet_id": "250655"}], [{"original_text": "they were blasting ", "album_id": "72157623184933535", "photo_flickr_id": "4314754812", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50131", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were blasting", "storylet_id": "250656"}], [{"original_text": "we had a great view", "album_id": "72157623184933535", "photo_flickr_id": "4314046103", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50131", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a great view", "storylet_id": "250657"}], [{"original_text": "the water was incredible", "album_id": "72157623184933535", "photo_flickr_id": "4314759568", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50131", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the water was incredible", "storylet_id": "250658"}], [{"original_text": "we would go back there soon", "album_id": "72157623184933535", "photo_flickr_id": "4314788910", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50131", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we would go back there soon", "storylet_id": "250659"}], [{"original_text": "I woke up yesterday and decided to go and see the geyser.", "album_id": "72157623184933535", "photo_flickr_id": "4314045281", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50132", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i woke up yesterday and decided to go and see the geyser .", "storylet_id": "250660"}], [{"original_text": "Many people were there to watch.", "album_id": "72157623184933535", "photo_flickr_id": "4314047915", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50132", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people were there to watch .", "storylet_id": "250661"}], [{"original_text": "It was pretty big.", "album_id": "72157623184933535", "photo_flickr_id": "4314771170", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50132", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was pretty big .", "storylet_id": "250662"}], [{"original_text": "When it erupted the water was very high.", "album_id": "72157623184933535", "photo_flickr_id": "4314052959", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50132", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when it erupted the water was very high .", "storylet_id": "250663"}], [{"original_text": "It was incredible.", "album_id": "72157623184933535", "photo_flickr_id": "4314754812", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50132", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was incredible .", "storylet_id": "250664"}], [{"original_text": "On our trip we got to see geysers. ", "album_id": "72157623184933535", "photo_flickr_id": "4314052959", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50133", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our trip we got to see geysers .", "storylet_id": "250665"}], [{"original_text": "They shot water and steam up into the air hundreds of feet.", "album_id": "72157623184933535", "photo_flickr_id": "4314754812", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50133", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they shot water and steam up into the air hundreds of feet .", "storylet_id": "250666"}], [{"original_text": "We also went to the hot springs.", "album_id": "72157623184933535", "photo_flickr_id": "4314046103", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50133", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also went to the hot springs .", "storylet_id": "250667"}], [{"original_text": "These hot springs weren't for bathing in.", "album_id": "72157623184933535", "photo_flickr_id": "4314759568", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50133", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these hot springs were n't for bathing in .", "storylet_id": "250668"}], [{"original_text": "They were too hot for that.", "album_id": "72157623184933535", "photo_flickr_id": "4314788910", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50133", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were too hot for that .", "storylet_id": "250669"}], [{"original_text": "He laughed when she started to make the bed, telling her thats what the maids were for. ", "album_id": "72157623184933535", "photo_flickr_id": "4314045281", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50134", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he laughed when she started to make the bed , telling her thats what the maids were for .", "storylet_id": "250670"}], [{"original_text": "Besides, they had to hurry to get a good view. ", "album_id": "72157623184933535", "photo_flickr_id": "4314047915", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50134", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "besides , they had to hurry to get a good view .", "storylet_id": "250671"}], [{"original_text": "The were going to watch Old Faithful. ", "album_id": "72157623184933535", "photo_flickr_id": "4314771170", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50134", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the were going to watch old faithful .", "storylet_id": "250672"}], [{"original_text": "Hot steam, propelled right out of the earth. ", "album_id": "72157623184933535", "photo_flickr_id": "4314052959", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50134", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "hot steam , propelled right out of the earth .", "storylet_id": "250673"}], [{"original_text": "Higher and higher it gushed. ", "album_id": "72157623184933535", "photo_flickr_id": "4314754812", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50134", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "higher and higher it gushed .", "storylet_id": "250674"}], [{"original_text": "Award dinner and presentation for a select few of individuals.Most of whom been waiting for recognition in all their efforts and hard work.", "album_id": "72157623613552907", "photo_flickr_id": "4477867726", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50135", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "award dinner and presentation for a select few of individuals.most of whom been waiting for recognition in all their efforts and hard work .", "storylet_id": "250675"}], [{"original_text": "Large group attended this year's session.We expanded and merged with another company,so more employees to attend.", "album_id": "72157623613552907", "photo_flickr_id": "4477245099", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50135", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "large group attended this year 's session.we expanded and merged with another company , so more employees to attend .", "storylet_id": "250676"}], [{"original_text": "There were several displays set up ,this was my favorite.They were most inviting and informative.", "album_id": "72157623613552907", "photo_flickr_id": "4477268493", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50135", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were several displays set up , this was my favorite.they were most inviting and informative .", "storylet_id": "250677"}], [{"original_text": "Each nominee got to present their ideas before the final votes.", "album_id": "72157623613552907", "photo_flickr_id": "4477246259", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50135", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "each nominee got to present their ideas before the final votes .", "storylet_id": "250678"}], [{"original_text": "Here is our regions members.The others are from various regions in our tristate area.", "album_id": "72157623613552907", "photo_flickr_id": "4477246499", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50135", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is our regions members.the others are from various regions in our tristate area .", "storylet_id": "250679"}], [{"original_text": "martha got an award at the expo", "album_id": "72157623613552907", "photo_flickr_id": "4477867726", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50136", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "martha got an award at the expo", "storylet_id": "250680"}], [{"original_text": "these people won best idea", "album_id": "72157623613552907", "photo_flickr_id": "4482246956", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50136", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these people won best idea", "storylet_id": "250681"}], [{"original_text": "there was a presentation", "album_id": "72157623613552907", "photo_flickr_id": "4477245099", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50136", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a presentation", "storylet_id": "250682"}], [{"original_text": "we learned all about new products", "album_id": "72157623613552907", "photo_flickr_id": "4477245749", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50136", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we learned all about new products", "storylet_id": "250683"}], [{"original_text": "metacarta sponsored the event ", "album_id": "72157623613552907", "photo_flickr_id": "4477270899", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50136", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "metacarta sponsored the event", "storylet_id": "250684"}], [{"original_text": "Today Jim is being honored for his hard work in the company.", "album_id": "72157623613552907", "photo_flickr_id": "4477867726", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "50137", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today [male] is being honored for his hard work in the company .", "storylet_id": "250685"}], [{"original_text": "He is attending the annual company appreciation show.", "album_id": "72157623613552907", "photo_flickr_id": "4477245099", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "50137", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he is attending the annual company appreciation show .", "storylet_id": "250686"}], [{"original_text": "During the show people even got to set up neat displays.", "album_id": "72157623613552907", "photo_flickr_id": "4477268493", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "50137", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "during the show people even got to set up neat displays .", "storylet_id": "250687"}], [{"original_text": "A few people came out to speak about the company and what it means to work there.", "album_id": "72157623613552907", "photo_flickr_id": "4477246259", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "50137", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a few people came out to speak about the company and what it means to work there .", "storylet_id": "250688"}], [{"original_text": "This is the group of people that were honored in the company.", "album_id": "72157623613552907", "photo_flickr_id": "4477246499", "setting": "last-3-pick-old-and-tell", "worker_id": "95JT2ZAPHJX040T", "story_id": "50137", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the group of people that were honored in the company .", "storylet_id": "250689"}], [{"original_text": "The worker won the award this month.", "album_id": "72157623613552907", "photo_flickr_id": "4477867726", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "50138", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the worker won the award this month .", "storylet_id": "250690"}], [{"original_text": "They had a big conference where she was awarded the plack.", "album_id": "72157623613552907", "photo_flickr_id": "4477245099", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "50138", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a big conference where she was awarded the plack .", "storylet_id": "250691"}], [{"original_text": "The signup booth was really nice for the conference.", "album_id": "72157623613552907", "photo_flickr_id": "4477268493", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "50138", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the signup booth was really nice for the conference .", "storylet_id": "250692"}], [{"original_text": "The ceo spoke to all of the employees present.", "album_id": "72157623613552907", "photo_flickr_id": "4477246259", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "50138", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ceo spoke to all of the employees present .", "storylet_id": "250693"}], [{"original_text": "The group of managers got together at the end and took a picture.", "album_id": "72157623613552907", "photo_flickr_id": "4477246499", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "50138", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the group of managers got together at the end and took a picture .", "storylet_id": "250694"}], [{"original_text": "The woman won an award", "album_id": "72157623613552907", "photo_flickr_id": "4477867726", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50139", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the woman won an award", "storylet_id": "250695"}], [{"original_text": "and got a lot of credit for it.", "album_id": "72157623613552907", "photo_flickr_id": "4482246956", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50139", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and got a lot of credit for it .", "storylet_id": "250696"}], [{"original_text": "They watched her presentation ", "album_id": "72157623613552907", "photo_flickr_id": "4477245099", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50139", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they watched her presentation", "storylet_id": "250697"}], [{"original_text": "as she presented her research", "album_id": "72157623613552907", "photo_flickr_id": "4477245749", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50139", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as she presented her research", "storylet_id": "250698"}], [{"original_text": "and then had information at a table.", "album_id": "72157623613552907", "photo_flickr_id": "4477270899", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50139", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then had information at a table .", "storylet_id": "250699"}], [{"original_text": "The night with friends was long and exciting.", "album_id": "72157623007646107", "photo_flickr_id": "4242487336", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50140", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the night with friends was long and exciting .", "storylet_id": "250700"}], [{"original_text": "A bit of horseplay was included in the evening.", "album_id": "72157623007646107", "photo_flickr_id": "4242511814", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50140", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a bit of horseplay was included in the evening .", "storylet_id": "250701"}], [{"original_text": "Beads were worn for the occasion.", "album_id": "72157623007646107", "photo_flickr_id": "4242566808", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50140", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "beads were worn for the occasion .", "storylet_id": "250702"}], [{"original_text": "There was dancing and mingling.", "album_id": "72157623007646107", "photo_flickr_id": "4241847489", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50140", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was dancing and mingling .", "storylet_id": "250703"}], [{"original_text": "But mostly laughter and chit chat.", "album_id": "72157623007646107", "photo_flickr_id": "4241880489", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50140", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but mostly laughter and chit chat .", "storylet_id": "250704"}], [{"original_text": "Last weekend all of us went out to a bar in downtown.", "album_id": "72157623007646107", "photo_flickr_id": "4241764443", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50141", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last weekend all of us went out to a bar in downtown .", "storylet_id": "250705"}], [{"original_text": "They served a lot of drinks there.", "album_id": "72157623007646107", "photo_flickr_id": "4241767977", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50141", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they served a lot of drinks there .", "storylet_id": "250706"}], [{"original_text": "We drank a lot.", "album_id": "72157623007646107", "photo_flickr_id": "4241777095", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50141", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we drank a lot .", "storylet_id": "250707"}], [{"original_text": "We all had such a great time.", "album_id": "72157623007646107", "photo_flickr_id": "4241825729", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50141", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all had such a great time .", "storylet_id": "250708"}], [{"original_text": "We stayed until early morning.", "album_id": "72157623007646107", "photo_flickr_id": "4241896893", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50141", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we stayed until early morning .", "storylet_id": "250709"}], [{"original_text": "Jane went with her friends to the bar. ", "album_id": "72157623007646107", "photo_flickr_id": "4242487336", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "50142", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] went with her friends to the bar .", "storylet_id": "250710"}], [{"original_text": "They had drinks and laughed.", "album_id": "72157623007646107", "photo_flickr_id": "4242511814", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "50142", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had drinks and laughed .", "storylet_id": "250711"}], [{"original_text": "Then Jane had shots.", "album_id": "72157623007646107", "photo_flickr_id": "4242566808", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "50142", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then [female] had shots .", "storylet_id": "250712"}], [{"original_text": "Drinking games are fun for Jane, she convinced one friend to join her. ", "album_id": "72157623007646107", "photo_flickr_id": "4241847489", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "50142", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "drinking games are fun for [female] , she convinced one friend to join her .", "storylet_id": "250713"}], [{"original_text": "All her friends then joined her in a drinking game. ", "album_id": "72157623007646107", "photo_flickr_id": "4241880489", "setting": "last-3-pick-old-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "50142", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all her friends then joined her in a drinking game .", "storylet_id": "250714"}], [{"original_text": "When she goes out she always has a great time.", "album_id": "72157623007646107", "photo_flickr_id": "4241764443", "setting": "last-3-pick-old-and-tell", "worker_id": "4N54BTGUWVCEJK4", "story_id": "50143", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when she goes out she always has a great time .", "storylet_id": "250715"}], [{"original_text": "She loves sitting at the bar,", "album_id": "72157623007646107", "photo_flickr_id": "4241767977", "setting": "last-3-pick-old-and-tell", "worker_id": "4N54BTGUWVCEJK4", "story_id": "50143", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she loves sitting at the bar ,", "storylet_id": "250716"}], [{"original_text": "Drinking and talking with the bartender.", "album_id": "72157623007646107", "photo_flickr_id": "4241777095", "setting": "last-3-pick-old-and-tell", "worker_id": "4N54BTGUWVCEJK4", "story_id": "50143", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "drinking and talking with the bartender .", "storylet_id": "250717"}], [{"original_text": "Friends are always there to have fun also.", "album_id": "72157623007646107", "photo_flickr_id": "4241825729", "setting": "last-3-pick-old-and-tell", "worker_id": "4N54BTGUWVCEJK4", "story_id": "50143", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "friends are always there to have fun also .", "storylet_id": "250718"}], [{"original_text": "There is always a lot of drinking, talking, and just having a good time!", "album_id": "72157623007646107", "photo_flickr_id": "4241896893", "setting": "last-3-pick-old-and-tell", "worker_id": "4N54BTGUWVCEJK4", "story_id": "50143", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is always a lot of drinking , talking , and just having a good time !", "storylet_id": "250719"}], [{"original_text": "Guess what today was? My birthday!", "album_id": "72157623007646107", "photo_flickr_id": "4241764443", "setting": "last-3-pick-old-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "50144", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "guess what today was ? my birthday !", "storylet_id": "250720"}], [{"original_text": "21st birthday at the bar!", "album_id": "72157623007646107", "photo_flickr_id": "4241767977", "setting": "last-3-pick-old-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "50144", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "21st birthday at the bar !", "storylet_id": "250721"}], [{"original_text": "I had a shot glass around my neck.", "album_id": "72157623007646107", "photo_flickr_id": "4241777095", "setting": "last-3-pick-old-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "50144", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a shot glass around my neck .", "storylet_id": "250722"}], [{"original_text": "Friends were having a good time.", "album_id": "72157623007646107", "photo_flickr_id": "4241825729", "setting": "last-3-pick-old-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "50144", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "friends were having a good time .", "storylet_id": "250723"}], [{"original_text": "It was the best birthday EVER!", "album_id": "72157623007646107", "photo_flickr_id": "4241896893", "setting": "last-3-pick-old-and-tell", "worker_id": "UA40V8WPYO7YAKT", "story_id": "50144", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was the best birthday ever !", "storylet_id": "250724"}], [{"original_text": "A little driver wanted to take them to their destination.", "album_id": "72157623019053803", "photo_flickr_id": "4247754534", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50145", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a little driver wanted to take them to their destination .", "storylet_id": "250725"}], [{"original_text": "The church was small and held a few guests.", "album_id": "72157623019053803", "photo_flickr_id": "4246981017", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50145", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the church was small and held a few guests .", "storylet_id": "250726"}], [{"original_text": "Members of the party were young and old.", "album_id": "72157623019053803", "photo_flickr_id": "4247756380", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50145", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "members of the party were young and old .", "storylet_id": "250727"}], [{"original_text": "The rings were basic but significant.", "album_id": "72157623019053803", "photo_flickr_id": "4247756804", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50145", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rings were basic but significant .", "storylet_id": "250728"}], [{"original_text": "Photos taken provided memories for a lifetime.", "album_id": "72157623019053803", "photo_flickr_id": "4246980087", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50145", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "photos taken provided memories for a lifetime .", "storylet_id": "250729"}], [{"original_text": "Yesterday was Jane's wedding day.", "album_id": "72157623019053803", "photo_flickr_id": "4246980509", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50146", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday was [female] 's wedding day .", "storylet_id": "250730"}], [{"original_text": "She and Bob got married in a beautiful church.", "album_id": "72157623019053803", "photo_flickr_id": "4246981017", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50146", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she and [male] got married in a beautiful church .", "storylet_id": "250731"}], [{"original_text": "They looked really nice in their wedding portrait.", "album_id": "72157623019053803", "photo_flickr_id": "4247755918", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50146", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they looked really nice in their wedding portrait .", "storylet_id": "250732"}], [{"original_text": "They had matching rings for their promises to each other.", "album_id": "72157623019053803", "photo_flickr_id": "4247756804", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50146", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had matching rings for their promises to each other .", "storylet_id": "250733"}], [{"original_text": "Jane and Bob lived happily ever after.", "album_id": "72157623019053803", "photo_flickr_id": "4246980087", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50146", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] and [male] lived happily ever after .", "storylet_id": "250734"}], [{"original_text": "The day of my wedding was one of the best events of my life, look at how happy I was!", "album_id": "72157623019053803", "photo_flickr_id": "4246980509", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50147", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day of my wedding was one of the best events of my life , look at how happy i was !", "storylet_id": "250735"}], [{"original_text": "We married in Catholic church that my husband attended growing up!", "album_id": "72157623019053803", "photo_flickr_id": "4246981017", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50147", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we married in catholic church that my husband attended growing up !", "storylet_id": "250736"}], [{"original_text": "We spent a lovely afternoon at the park.", "album_id": "72157623019053803", "photo_flickr_id": "4247755918", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50147", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we spent a lovely afternoon at the park .", "storylet_id": "250737"}], [{"original_text": "Then we got our photos taken with color enhancements on our rings.", "album_id": "72157623019053803", "photo_flickr_id": "4247756804", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50147", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we got our photos taken with color enhancements on our rings .", "storylet_id": "250738"}], [{"original_text": "Then we went back to the same park later for more fun and pictures!", "album_id": "72157623019053803", "photo_flickr_id": "4246980087", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50147", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we went back to the same park later for more fun and pictures !", "storylet_id": "250739"}], [{"original_text": "The little kid is learning how to drive in his imagination.", "album_id": "72157623019053803", "photo_flickr_id": "4247754534", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "50148", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the little kid is learning how to drive in his imagination .", "storylet_id": "250740"}], [{"original_text": "Everyone arrives at the church for the wedding. ", "album_id": "72157623019053803", "photo_flickr_id": "4246981017", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "50148", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone arrives at the church for the wedding .", "storylet_id": "250741"}], [{"original_text": "The flower girl poses in the sun with her beautiful umbrella.", "album_id": "72157623019053803", "photo_flickr_id": "4247756380", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "50148", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the flower girl poses in the sun with her beautiful umbrella .", "storylet_id": "250742"}], [{"original_text": "They place hands together to show off their beautiful rings.", "album_id": "72157623019053803", "photo_flickr_id": "4247756804", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "50148", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they place hands together to show off their beautiful rings .", "storylet_id": "250743"}], [{"original_text": "The bride and groom look so happy on this occasion.", "album_id": "72157623019053803", "photo_flickr_id": "4246980087", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "50148", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride and groom look so happy on this occasion .", "storylet_id": "250744"}], [{"original_text": "The bride was driving to the wedding. ", "album_id": "72157623019053803", "photo_flickr_id": "4246980509", "setting": "last-3-pick-old-and-tell", "worker_id": "E8ZO1K2LSSO09KX", "story_id": "50149", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride was driving to the wedding .", "storylet_id": "250745"}], [{"original_text": "The church where the wedding was being held was so beautiful.", "album_id": "72157623019053803", "photo_flickr_id": "4246981017", "setting": "last-3-pick-old-and-tell", "worker_id": "E8ZO1K2LSSO09KX", "story_id": "50149", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the church where the wedding was being held was so beautiful .", "storylet_id": "250746"}], [{"original_text": "After the wedding photos were taken with the bride and groom.", "album_id": "72157623019053803", "photo_flickr_id": "4247755918", "setting": "last-3-pick-old-and-tell", "worker_id": "E8ZO1K2LSSO09KX", "story_id": "50149", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the wedding photos were taken with the bride and groom .", "storylet_id": "250747"}], [{"original_text": "Then a photo to show there new rings.", "album_id": "72157623019053803", "photo_flickr_id": "4247756804", "setting": "last-3-pick-old-and-tell", "worker_id": "E8ZO1K2LSSO09KX", "story_id": "50149", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then a photo to show there new rings .", "storylet_id": "250748"}], [{"original_text": "As the nite drew to a close the two enjoyed each other. ", "album_id": "72157623019053803", "photo_flickr_id": "4246980087", "setting": "last-3-pick-old-and-tell", "worker_id": "E8ZO1K2LSSO09KX", "story_id": "50149", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the nite drew to a close the two enjoyed each other .", "storylet_id": "250749"}], [{"original_text": "Several flower arrangements were available.", "album_id": "72157623149579924", "photo_flickr_id": "4249420053", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50150", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "several flower arrangements were available .", "storylet_id": "250750"}], [{"original_text": "Some involved vases and other containers.", "album_id": "72157623149579924", "photo_flickr_id": "4250194494", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50150", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some involved vases and other containers .", "storylet_id": "250751"}], [{"original_text": "Others were adorned with ribbons and decoratives.", "album_id": "72157623149579924", "photo_flickr_id": "4249418153", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50150", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others were adorned with ribbons and decoratives .", "storylet_id": "250752"}], [{"original_text": "Many counts were ordered to ensure enough were present.", "album_id": "72157623149579924", "photo_flickr_id": "4249418807", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50150", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many counts were ordered to ensure enough were present .", "storylet_id": "250753"}], [{"original_text": "Several combinations were included for the ceremony.", "album_id": "72157623149579924", "photo_flickr_id": "4249420289", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50150", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "several combinations were included for the ceremony .", "storylet_id": "250754"}], [{"original_text": "The flowers finally arrived for the wedding.", "album_id": "72157623149579924", "photo_flickr_id": "4249420053", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50151", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the flowers finally arrived for the wedding .", "storylet_id": "250755"}], [{"original_text": "They looked beautiful.", "album_id": "72157623149579924", "photo_flickr_id": "4250194230", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50151", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they looked beautiful .", "storylet_id": "250756"}], [{"original_text": "Some of them were designed real tall.", "album_id": "72157623149579924", "photo_flickr_id": "4249418807", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50151", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them were designed real tall .", "storylet_id": "250757"}], [{"original_text": "One bouquet had a gold ribbon tied around it.", "album_id": "72157623149579924", "photo_flickr_id": "4249418153", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50151", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one bouquet had a gold ribbon tied around it .", "storylet_id": "250758"}], [{"original_text": "All the flowers were just perfect for the happy occasion.", "album_id": "72157623149579924", "photo_flickr_id": "4249420289", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50151", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the flowers were just perfect for the happy occasion .", "storylet_id": "250759"}], [{"original_text": "I took pictures today of various flowers we had in our shop, this is the first.", "album_id": "72157623149579924", "photo_flickr_id": "4249420053", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50152", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took pictures today of various flowers we had in our shop , this is the first .", "storylet_id": "250760"}], [{"original_text": "Next to this we had this lovely arrangement that had more variety.", "album_id": "72157623149579924", "photo_flickr_id": "4250194230", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50152", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next to this we had this lovely arrangement that had more variety .", "storylet_id": "250761"}], [{"original_text": "This one has even more color, some hints of orange here.", "album_id": "72157623149579924", "photo_flickr_id": "4249418807", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50152", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one has even more color , some hints of orange here .", "storylet_id": "250762"}], [{"original_text": "This was my favorite as it had ribbons to accent the flowers.", "album_id": "72157623149579924", "photo_flickr_id": "4249418153", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50152", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was my favorite as it had ribbons to accent the flowers .", "storylet_id": "250763"}], [{"original_text": "Lastly this is a nice pair of flowers, this photo album will make a good promotional piece for the shop.", "album_id": "72157623149579924", "photo_flickr_id": "4249420289", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50152", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly this is a nice pair of flowers , this photo album will make a good promotional piece for the shop .", "storylet_id": "250764"}], [{"original_text": "The arrangement is prepared before placing in a vase.", "album_id": "72157623149579924", "photo_flickr_id": "4249420053", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "50153", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the arrangement is prepared before placing in a vase .", "storylet_id": "250765"}], [{"original_text": "The arrangement was set in a vase and water. ", "album_id": "72157623149579924", "photo_flickr_id": "4250194494", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "50153", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the arrangement was set in a vase and water .", "storylet_id": "250766"}], [{"original_text": "A beautiful ribbon was added to compliment the flower arrangement.", "album_id": "72157623149579924", "photo_flickr_id": "4249418153", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "50153", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a beautiful ribbon was added to compliment the flower arrangement .", "storylet_id": "250767"}], [{"original_text": "In addition to the flowers in the vase, another centerpiece was made.", "album_id": "72157623149579924", "photo_flickr_id": "4249418807", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "50153", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in addition to the flowers in the vase , another centerpiece was made .", "storylet_id": "250768"}], [{"original_text": "The final piece to the set were two gorgeous flower bundles. ", "album_id": "72157623149579924", "photo_flickr_id": "4249420289", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "50153", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the final piece to the set were two gorgeous flower bundles .", "storylet_id": "250769"}], [{"original_text": "These are the flowers I have picked out for the dessert table at my wedding reception.", "album_id": "72157623149579924", "photo_flickr_id": "4249420053", "setting": "last-3-pick-old-and-tell", "worker_id": "XHW5WZ2P4MR4BW8", "story_id": "50154", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these are the flowers i have picked out for the dessert table at my wedding reception .", "storylet_id": "250770"}], [{"original_text": "I asked the florist to add some yellow to the vases that will be on each dinner table.", "album_id": "72157623149579924", "photo_flickr_id": "4250194494", "setting": "last-3-pick-old-and-tell", "worker_id": "XHW5WZ2P4MR4BW8", "story_id": "50154", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i asked the florist to add some yellow to the vases that will be on each dinner table .", "storylet_id": "250771"}], [{"original_text": "I am so excited to show these bridesmaid bouquets to my girlfriends.", "album_id": "72157623149579924", "photo_flickr_id": "4249418153", "setting": "last-3-pick-old-and-tell", "worker_id": "XHW5WZ2P4MR4BW8", "story_id": "50154", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i am so excited to show these bridesmaid bouquets to my girlfriends .", "storylet_id": "250772"}], [{"original_text": "This larger arrangement will be at the front of the church with 2 candles on each side.", "album_id": "72157623149579924", "photo_flickr_id": "4249418807", "setting": "last-3-pick-old-and-tell", "worker_id": "XHW5WZ2P4MR4BW8", "story_id": "50154", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this larger arrangement will be at the front of the church with 2 candles on each side .", "storylet_id": "250773"}], [{"original_text": "I wanted the groomsmen to match the bridesmaids and found these to be the perfect match.", "album_id": "72157623149579924", "photo_flickr_id": "4249420289", "setting": "last-3-pick-old-and-tell", "worker_id": "XHW5WZ2P4MR4BW8", "story_id": "50154", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i wanted the groomsmen to match the bridesmaids and found these to be the perfect match .", "storylet_id": "250774"}], [{"original_text": "Nice decorations outside the venue for the annual office Christmas party.", "album_id": "72157623038153663", "photo_flickr_id": "4255154802", "setting": "first-2-pick-and-tell", "worker_id": "6JS5VGNHR0Z85Q6", "story_id": "50155", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "nice decorations outside the venue for the annual office christmas party .", "storylet_id": "250775"}], [{"original_text": "We even got to valet our cars, which made everyone feel very appreciated.", "album_id": "72157623038153663", "photo_flickr_id": "4255160960", "setting": "first-2-pick-and-tell", "worker_id": "6JS5VGNHR0Z85Q6", "story_id": "50155", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we even got to valet our cars , which made everyone feel very appreciated .", "storylet_id": "250776"}], [{"original_text": "The food was a superb all you can eat buffett.", "album_id": "72157623038153663", "photo_flickr_id": "4255155740", "setting": "first-2-pick-and-tell", "worker_id": "6JS5VGNHR0Z85Q6", "story_id": "50155", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food was a superb all you can eat buffett .", "storylet_id": "250777"}], [{"original_text": "Here we are enjoying the delicious meal together.", "album_id": "72157623038153663", "photo_flickr_id": "4254390889", "setting": "first-2-pick-and-tell", "worker_id": "6JS5VGNHR0Z85Q6", "story_id": "50155", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here we are enjoying the delicious meal together .", "storylet_id": "250778"}], [{"original_text": "Afterwards, drinks and smiles were had by all. Great party!", "album_id": "72157623038153663", "photo_flickr_id": "4254394653", "setting": "first-2-pick-and-tell", "worker_id": "6JS5VGNHR0Z85Q6", "story_id": "50155", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , drinks and smiles were had by all . great party !", "storylet_id": "250779"}], [{"original_text": "Our business hosted its winter holiday party at a hotel.", "album_id": "72157623038153663", "photo_flickr_id": "4255154802", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "50156", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our business hosted its winter holiday party at a hotel .", "storylet_id": "250780"}], [{"original_text": "The food was served as a buffet.", "album_id": "72157623038153663", "photo_flickr_id": "4255155740", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "50156", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the food was served as a buffet .", "storylet_id": "250781"}], [{"original_text": "All the young workers sat at one end of the table.", "album_id": "72157623038153663", "photo_flickr_id": "4255156234", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "50156", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the young workers sat at one end of the table .", "storylet_id": "250782"}], [{"original_text": "The older co-workers sat at the other end of the table.", "album_id": "72157623038153663", "photo_flickr_id": "4254390889", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "50156", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the older co-workers sat at the other end of the table .", "storylet_id": "250783"}], [{"original_text": "In the end, both young and old co-workers stayed until closing time for the hotel restaurant.", "album_id": "72157623038153663", "photo_flickr_id": "4254393173", "setting": "first-2-pick-and-tell", "worker_id": "5N9KW50TH7L1C4O", "story_id": "50156", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , both young and old co-workers stayed until closing time for the hotel restaurant .", "storylet_id": "250784"}], [{"original_text": "Christmas time in our front yard. The trees this year were decorated so well.", "album_id": "72157623038153663", "photo_flickr_id": "4255154802", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "50157", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "christmas time in our front yard . the trees this year were decorated so well .", "storylet_id": "250785"}], [{"original_text": "Over at the car I see that it is starting to snow. Maybe it WILL be a white Christmas.", "album_id": "72157623038153663", "photo_flickr_id": "4255160960", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "50157", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "over at the car i see that it is starting to snow . maybe it will be a white christmas .", "storylet_id": "250786"}], [{"original_text": "At the Christmas dinner we had a variety of wonderful foods.", "album_id": "72157623038153663", "photo_flickr_id": "4255155740", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "50157", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the christmas dinner we had a variety of wonderful foods .", "storylet_id": "250787"}], [{"original_text": "Just looking over our family all celebrating is just beautiful.", "album_id": "72157623038153663", "photo_flickr_id": "4254390889", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "50157", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "just looking over our family all celebrating is just beautiful .", "storylet_id": "250788"}], [{"original_text": "Here is Grandma and my Aunt that came for the festivities. It truly was a time of joy and celebration. The best Christmas of 2012.", "album_id": "72157623038153663", "photo_flickr_id": "4254394653", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "50157", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is grandma and my aunt that came for the festivities . it truly was a time of joy and celebration . the best christmas of 2012 .", "storylet_id": "250789"}], [{"original_text": "I will never forget the Christmas family dinner last year.", "album_id": "72157623038153663", "photo_flickr_id": "4255154802", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "50158", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i will never forget the christmas family dinner last year .", "storylet_id": "250790"}], [{"original_text": "Not even the rain could slow down the good vibes.", "album_id": "72157623038153663", "photo_flickr_id": "4255160960", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "50158", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "not even the rain could slow down the good vibes .", "storylet_id": "250791"}], [{"original_text": "Fish, lobster and shrimp. We really went all out. Our wallets are still hurting!", "album_id": "72157623038153663", "photo_flickr_id": "4255155740", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "50158", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "fish , lobster and shrimp . we really went all out . our wallets are still hurting !", "storylet_id": "250792"}], [{"original_text": "It was just nice to catch up with family I haven't seen in quite some time.", "album_id": "72157623038153663", "photo_flickr_id": "4254390889", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "50158", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was just nice to catch up with family i have n't seen in quite some time .", "storylet_id": "250793"}], [{"original_text": "I'm glad my mom and my sister were able to make it out. I hope we're able to have another family gathering soon.", "album_id": "72157623038153663", "photo_flickr_id": "4254394653", "setting": "last-3-pick-old-and-tell", "worker_id": "9M49ZVNU5SAFP4V", "story_id": "50158", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm glad my mom and my sister were able to make it out . i hope we 're able to have another family gathering soon .", "storylet_id": "250794"}], [{"original_text": "Our dinner last night had a lovely setting.", "album_id": "72157623038153663", "photo_flickr_id": "4255154802", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50159", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our dinner last night had a lovely setting .", "storylet_id": "250795"}], [{"original_text": "This was the seafood bar, we went straight here after walking past the lovely decorations.", "album_id": "72157623038153663", "photo_flickr_id": "4255155740", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50159", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was the seafood bar , we went straight here after walking past the lovely decorations .", "storylet_id": "250796"}], [{"original_text": "This was our table, we sat with some of our colleagues.", "album_id": "72157623038153663", "photo_flickr_id": "4255156234", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50159", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was our table , we sat with some of our colleagues .", "storylet_id": "250797"}], [{"original_text": "More people joined us later.", "album_id": "72157623038153663", "photo_flickr_id": "4254390889", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50159", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more people joined us later .", "storylet_id": "250798"}], [{"original_text": "After dinner we went to this bar area for drinks.", "album_id": "72157623038153663", "photo_flickr_id": "4254393173", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50159", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after dinner we went to this bar area for drinks .", "storylet_id": "250799"}], [{"original_text": "The evening was young and the friends were ready for excitement.", "album_id": "72157623162647704", "photo_flickr_id": "4254456925", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50160", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the evening was young and the friends were ready for excitement .", "storylet_id": "250800"}], [{"original_text": "There sat in small groups and mingled among themselves.", "album_id": "72157623162647704", "photo_flickr_id": "4255222604", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50160", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there sat in small groups and mingled among themselves .", "storylet_id": "250801"}], [{"original_text": "The tables were long enough to accommodate them all.", "album_id": "72157623162647704", "photo_flickr_id": "4254458181", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50160", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tables were long enough to accommodate them all .", "storylet_id": "250802"}], [{"original_text": "The atmosphere was fun and lively.", "album_id": "72157623162647704", "photo_flickr_id": "4255226326", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50160", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the atmosphere was fun and lively .", "storylet_id": "250803"}], [{"original_text": "There was plenty of food for everyone.", "album_id": "72157623162647704", "photo_flickr_id": "4254462995", "setting": "first-2-pick-and-tell", "worker_id": "TLX3QAHTK5UGGMH", "story_id": "50160", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was plenty of food for everyone .", "storylet_id": "250804"}], [{"original_text": "Tonight was a fun night with friends.", "album_id": "72157623162647704", "photo_flickr_id": "4254458181", "setting": "first-2-pick-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "50161", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "tonight was a fun night with friends .", "storylet_id": "250805"}], [{"original_text": "We had some delicious seafood for dinner.", "album_id": "72157623162647704", "photo_flickr_id": "4254462995", "setting": "first-2-pick-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "50161", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had some delicious seafood for dinner .", "storylet_id": "250806"}], [{"original_text": "Everyone tried a crab leg for the first time. ", "album_id": "72157623162647704", "photo_flickr_id": "4255228894", "setting": "first-2-pick-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "50161", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone tried a crab leg for the first time .", "storylet_id": "250807"}], [{"original_text": "Then afterwards we danced under the stars. ", "album_id": "72157623162647704", "photo_flickr_id": "4254464363", "setting": "first-2-pick-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "50161", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then afterwards we danced under the stars .", "storylet_id": "250808"}], [{"original_text": "Later some friends had a fun mock fighting match. ", "album_id": "72157623162647704", "photo_flickr_id": "4254464905", "setting": "first-2-pick-and-tell", "worker_id": "SRN68HAYVQMVI48", "story_id": "50161", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later some friends had a fun mock fighting match .", "storylet_id": "250809"}], [{"original_text": "It was a warm summer evening.", "album_id": "72157623162647704", "photo_flickr_id": "4254456925", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50162", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a warm summer evening .", "storylet_id": "250810"}], [{"original_text": "The friends had gotten together to celebrate their vacation.", "album_id": "72157623162647704", "photo_flickr_id": "4255222604", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50162", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the friends had gotten together to celebrate their vacation .", "storylet_id": "250811"}], [{"original_text": "They got to talking and realized they were all really hungry.", "album_id": "72157623162647704", "photo_flickr_id": "4254458181", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50162", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they got to talking and realized they were all really hungry .", "storylet_id": "250812"}], [{"original_text": "They arrived at a place they found off of yelp.", "album_id": "72157623162647704", "photo_flickr_id": "4255226326", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50162", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they arrived at a place they found off of yelp .", "storylet_id": "250813"}], [{"original_text": "It turned out to be even better than they expected!", "album_id": "72157623162647704", "photo_flickr_id": "4254462995", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50162", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it turned out to be even better than they expected !", "storylet_id": "250814"}], [{"original_text": "we all were waiting anxiously for dinner.", "album_id": "72157623162647704", "photo_flickr_id": "4254458181", "setting": "last-3-pick-old-and-tell", "worker_id": "T3C6HAWRV0GTLE3", "story_id": "50163", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all were waiting anxiously for dinner .", "storylet_id": "250815"}], [{"original_text": "then the lovely seafood platter arrived.", "album_id": "72157623162647704", "photo_flickr_id": "4254462995", "setting": "last-3-pick-old-and-tell", "worker_id": "T3C6HAWRV0GTLE3", "story_id": "50163", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then the lovely seafood platter arrived .", "storylet_id": "250816"}], [{"original_text": "we love playing with lobster legs", "album_id": "72157623162647704", "photo_flickr_id": "4255228894", "setting": "last-3-pick-old-and-tell", "worker_id": "T3C6HAWRV0GTLE3", "story_id": "50163", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we love playing with lobster legs", "storylet_id": "250817"}], [{"original_text": "it was time to exercise the dinner off", "album_id": "72157623162647704", "photo_flickr_id": "4254464363", "setting": "last-3-pick-old-and-tell", "worker_id": "T3C6HAWRV0GTLE3", "story_id": "50163", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was time to exercise the dinner off", "storylet_id": "250818"}], [{"original_text": "so we palinode the beach like young kids", "album_id": "72157623162647704", "photo_flickr_id": "4254464905", "setting": "last-3-pick-old-and-tell", "worker_id": "T3C6HAWRV0GTLE3", "story_id": "50163", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so we palinode the beach like young kids", "storylet_id": "250819"}], [{"original_text": "The night is illuminated with the full moon.", "album_id": "72157623162647704", "photo_flickr_id": "4254456925", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "50164", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the night is illuminated with the full moon .", "storylet_id": "250820"}], [{"original_text": "The people gather today to sit down for a meal.", "album_id": "72157623162647704", "photo_flickr_id": "4255222604", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "50164", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the people gather today to sit down for a meal .", "storylet_id": "250821"}], [{"original_text": "They've all ordered food and are now waiting for the waitress.", "album_id": "72157623162647704", "photo_flickr_id": "4254458181", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "50164", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they 've all ordered food and are now waiting for the waitress .", "storylet_id": "250822"}], [{"original_text": "As they waited they took a picture of the sign overhead.", "album_id": "72157623162647704", "photo_flickr_id": "4255226326", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "50164", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as they waited they took a picture of the sign overhead .", "storylet_id": "250823"}], [{"original_text": "The meal finally arrived, and it looks delicious. ", "album_id": "72157623162647704", "photo_flickr_id": "4254462995", "setting": "last-3-pick-old-and-tell", "worker_id": "6O4QRWEXYPBURBJ", "story_id": "50164", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the meal finally arrived , and it looks delicious .", "storylet_id": "250824"}], [{"original_text": "Brad and I got married today. ", "album_id": "72157623064224327", "photo_flickr_id": "4265671393", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "50165", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and i got married today .", "storylet_id": "250825"}], [{"original_text": "I posed for many pictures. This one is my favorite. My two kids Chandellier and Margorita. ", "album_id": "72157623064224327", "photo_flickr_id": "4265671939", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "50165", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i posed for many pictures . this one is my favorite . my two kids chandellier and margorita .", "storylet_id": "250826"}], [{"original_text": "My brother Jim texted me this picture of himself not at my wedding. He wanted to show his support. ", "album_id": "72157623064224327", "photo_flickr_id": "4265674513", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "50165", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brother [male] texted me this picture of himself not at my wedding . he wanted to show his support .", "storylet_id": "250827"}], [{"original_text": "He also texted me a picture of my dad at home who also didn't attend my wedding because they hate my husband. ", "album_id": "72157623064224327", "photo_flickr_id": "4266421256", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "50165", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he also texted me a picture of my dad at home who also did n't attend my wedding because they hate my husband .", "storylet_id": "250828"}], [{"original_text": "My mom did however come. She hates my husband for being a man as well but she came to support me. ", "album_id": "72157623064224327", "photo_flickr_id": "4265676855", "setting": "first-2-pick-and-tell", "worker_id": "KZTRS7L4OCNZ8A5", "story_id": "50165", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my mom did however come . she hates my husband for being a man as well but she came to support me .", "storylet_id": "250829"}], [{"original_text": "An invitation to a winter wedding.", "album_id": "72157623064224327", "photo_flickr_id": "4266419858", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50166", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an invitation to a winter wedding .", "storylet_id": "250830"}], [{"original_text": "Bride poses with her attendants.", "album_id": "72157623064224327", "photo_flickr_id": "4265673147", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50166", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "bride poses with her attendants .", "storylet_id": "250831"}], [{"original_text": "Father walking the bride down the aisle.", "album_id": "72157623064224327", "photo_flickr_id": "4266417646", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50166", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "father walking the bride down the aisle .", "storylet_id": "250832"}], [{"original_text": "A formal picture of the happy couple.", "album_id": "72157623064224327", "photo_flickr_id": "4266423200", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50166", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a formal picture of the happy couple .", "storylet_id": "250833"}], [{"original_text": "Candid shot of the bride and groom. ", "album_id": "72157623064224327", "photo_flickr_id": "4265671393", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50166", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "candid shot of the bride and groom .", "storylet_id": "250834"}], [{"original_text": "My best friend Steve is getting married. ", "album_id": "72157623064224327", "photo_flickr_id": "4265671393", "setting": "last-3-pick-old-and-tell", "worker_id": "HW9U7W98U2K3HIP", "story_id": "50167", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my best friend [male] is getting married .", "storylet_id": "250835"}], [{"original_text": "Their two kids were bored out their minds. ", "album_id": "72157623064224327", "photo_flickr_id": "4265671939", "setting": "last-3-pick-old-and-tell", "worker_id": "HW9U7W98U2K3HIP", "story_id": "50167", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their two kids were bored out their minds .", "storylet_id": "250836"}], [{"original_text": "A few hours before the wedding. ", "album_id": "72157623064224327", "photo_flickr_id": "4265674513", "setting": "last-3-pick-old-and-tell", "worker_id": "HW9U7W98U2K3HIP", "story_id": "50167", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few hours before the wedding .", "storylet_id": "250837"}], [{"original_text": "Steve's dad was very happy. ", "album_id": "72157623064224327", "photo_flickr_id": "4266421256", "setting": "last-3-pick-old-and-tell", "worker_id": "HW9U7W98U2K3HIP", "story_id": "50167", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] 's dad was very happy .", "storylet_id": "250838"}], [{"original_text": "My mom looking after the baby was cute. ", "album_id": "72157623064224327", "photo_flickr_id": "4265676855", "setting": "last-3-pick-old-and-tell", "worker_id": "HW9U7W98U2K3HIP", "story_id": "50167", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my mom looking after the baby was cute .", "storylet_id": "250839"}], [{"original_text": "The wedding day was finally here.", "album_id": "72157623064224327", "photo_flickr_id": "4266419858", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "50168", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding day was finally here .", "storylet_id": "250840"}], [{"original_text": "Everyone was pretty nervous for it.", "album_id": "72157623064224327", "photo_flickr_id": "4265673147", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "50168", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was pretty nervous for it .", "storylet_id": "250841"}], [{"original_text": "But surely enough, it came time for the big moment.", "album_id": "72157623064224327", "photo_flickr_id": "4266417646", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "50168", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but surely enough , it came time for the big moment .", "storylet_id": "250842"}], [{"original_text": "We finally became man and wife.", "album_id": "72157623064224327", "photo_flickr_id": "4266423200", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "50168", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we finally became man and wife .", "storylet_id": "250843"}], [{"original_text": "I was the happiest day of my life.", "album_id": "72157623064224327", "photo_flickr_id": "4265671393", "setting": "last-3-pick-old-and-tell", "worker_id": "YWYHVCBPQ5RS179", "story_id": "50168", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was the happiest day of my life .", "storylet_id": "250844"}], [{"original_text": "People should serious consider getting married in winter. This couple did and they had a great wedding. ", "album_id": "72157623064224327", "photo_flickr_id": "4266419858", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "50169", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people should serious consider getting married in winter . this couple did and they had a great wedding .", "storylet_id": "250845"}], [{"original_text": "The bride and her friends looks gorgeous. ", "album_id": "72157623064224327", "photo_flickr_id": "4265673147", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "50169", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and her friends looks gorgeous .", "storylet_id": "250846"}], [{"original_text": "The lucky couple walked together for the first time. ", "album_id": "72157623064224327", "photo_flickr_id": "4266417646", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "50169", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lucky couple walked together for the first time .", "storylet_id": "250847"}], [{"original_text": "They posed for pictures together. The looked stunning. ", "album_id": "72157623064224327", "photo_flickr_id": "4266423200", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "50169", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they posed for pictures together . the looked stunning .", "storylet_id": "250848"}], [{"original_text": "She was a very happy bride. ", "album_id": "72157623064224327", "photo_flickr_id": "4265671393", "setting": "last-3-pick-old-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "50169", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was a very happy bride .", "storylet_id": "250849"}], [{"original_text": "We got married this weekend in a traditional Chinese wedding.", "album_id": "72157623281358480", "photo_flickr_id": "4303233519", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "50170", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got married this weekend in a traditional chinese wedding .", "storylet_id": "250850"}], [{"original_text": "The party was huge and we were the center of attention.", "album_id": "72157623281358480", "photo_flickr_id": "4303975766", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "50170", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the party was huge and we were the center of attention .", "storylet_id": "250851"}], [{"original_text": "Guests came bearing many gifts.", "album_id": "72157623281358480", "photo_flickr_id": "4303973798", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "50170", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "guests came bearing many gifts .", "storylet_id": "250852"}], [{"original_text": "They applauded our step into marriage.", "album_id": "72157623281358480", "photo_flickr_id": "4303231247", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "50170", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they applauded our step into marriage .", "storylet_id": "250853"}], [{"original_text": "Everyone loved the ceremony, we are very happy with how it turned out.", "album_id": "72157623281358480", "photo_flickr_id": "4303976396", "setting": "first-2-pick-and-tell", "worker_id": "IEMBE2HJJMR9XH3", "story_id": "50170", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone loved the ceremony , we are very happy with how it turned out .", "storylet_id": "250854"}], [{"original_text": "the traditional taiwanese wedding was very interesting ", "album_id": "72157623281358480", "photo_flickr_id": "4303975652", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50171", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the traditional taiwanese wedding was very interesting", "storylet_id": "250855"}], [{"original_text": "it was very impersonal", "album_id": "72157623281358480", "photo_flickr_id": "4303230079", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50171", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was very impersonal", "storylet_id": "250856"}], [{"original_text": "there traditions are not of what I am used to", "album_id": "72157623281358480", "photo_flickr_id": "4303975496", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50171", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there traditions are not of what i am used to", "storylet_id": "250857"}], [{"original_text": "family and friends did have fun", "album_id": "72157623281358480", "photo_flickr_id": "4303231885", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50171", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "family and friends did have fun", "storylet_id": "250858"}], [{"original_text": "and you could buy a picture of the bride and groom", "album_id": "72157623281358480", "photo_flickr_id": "4303977710", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50171", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and you could buy a picture of the bride and groom", "storylet_id": "250859"}], [{"original_text": "Going to an interesting Asian themed wedding. ", "album_id": "72157623281358480", "photo_flickr_id": "4303975652", "setting": "last-3-pick-old-and-tell", "worker_id": "HW9U7W98U2K3HIP", "story_id": "50172", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going to an interesting asian themed wedding .", "storylet_id": "250860"}], [{"original_text": "Thankfully Amy translated what was being said. ", "album_id": "72157623281358480", "photo_flickr_id": "4303230079", "setting": "last-3-pick-old-and-tell", "worker_id": "HW9U7W98U2K3HIP", "story_id": "50172", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "thankfully [female] translated what was being said .", "storylet_id": "250861"}], [{"original_text": "Seeing different cultures in action. ", "album_id": "72157623281358480", "photo_flickr_id": "4303975496", "setting": "last-3-pick-old-and-tell", "worker_id": "HW9U7W98U2K3HIP", "story_id": "50172", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "seeing different cultures in action .", "storylet_id": "250862"}], [{"original_text": "Our best friends, Max and Kelly enjoying the reception. ", "album_id": "72157623281358480", "photo_flickr_id": "4303231885", "setting": "last-3-pick-old-and-tell", "worker_id": "HW9U7W98U2K3HIP", "story_id": "50172", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our best friends , [male] and [female] enjoying the reception .", "storylet_id": "250863"}], [{"original_text": "The wedding photos turned out great. ", "album_id": "72157623281358480", "photo_flickr_id": "4303977710", "setting": "last-3-pick-old-and-tell", "worker_id": "HW9U7W98U2K3HIP", "story_id": "50172", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the wedding photos turned out great .", "storylet_id": "250864"}], [{"original_text": "I first met the love of my life at a party.", "album_id": "72157623281358480", "photo_flickr_id": "4303233519", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "50173", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i first met the love of my life at a party .", "storylet_id": "250865"}], [{"original_text": "We saw a couple hit if off and through mutual friends we grew to love one another.", "album_id": "72157623281358480", "photo_flickr_id": "4303975766", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "50173", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw a couple hit if off and through mutual friends we grew to love one another .", "storylet_id": "250866"}], [{"original_text": "Our wedding happened less than a year later.", "album_id": "72157623281358480", "photo_flickr_id": "4303973798", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "50173", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our wedding happened less than a year later .", "storylet_id": "250867"}], [{"original_text": "Friends told us we were going to fast...", "album_id": "72157623281358480", "photo_flickr_id": "4303231247", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "50173", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "friends told us we were going to fast ...", "storylet_id": "250868"}], [{"original_text": "but they welcomed our love regardless.", "album_id": "72157623281358480", "photo_flickr_id": "4303976396", "setting": "last-3-pick-old-and-tell", "worker_id": "0B6Z3YCSUUMH9UC", "story_id": "50173", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but they welcomed our love regardless .", "storylet_id": "250869"}], [{"original_text": "On the stage, nervous as can be. ", "album_id": "72157623281358480", "photo_flickr_id": "4303975652", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "50174", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on the stage , nervous as can be .", "storylet_id": "250870"}], [{"original_text": "They had trouble finding there seats.", "album_id": "72157623281358480", "photo_flickr_id": "4303230079", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "50174", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had trouble finding there seats .", "storylet_id": "250871"}], [{"original_text": "The girls and me finding an uptick beat.", "album_id": "72157623281358480", "photo_flickr_id": "4303975496", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "50174", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girls and me finding an uptick beat .", "storylet_id": "250872"}], [{"original_text": "As you can tell we had no trouble filling the seats.", "album_id": "72157623281358480", "photo_flickr_id": "4303231885", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "50174", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as you can tell we had no trouble filling the seats .", "storylet_id": "250873"}], [{"original_text": "Here's a memory of you and me.", "album_id": "72157623281358480", "photo_flickr_id": "4303977710", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "50174", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's a memory of you and me .", "storylet_id": "250874"}], [{"original_text": "Daniel and Anna got married today.", "album_id": "6096", "photo_flickr_id": "278796", "setting": "first-2-pick-and-tell", "worker_id": "RUGN6NE264D1LW6", "story_id": "50175", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] got married today .", "storylet_id": "250875"}], [{"original_text": "The venue for their wedding was picturesque.", "album_id": "6096", "photo_flickr_id": "278684", "setting": "first-2-pick-and-tell", "worker_id": "RUGN6NE264D1LW6", "story_id": "50175", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the venue for their wedding was picturesque .", "storylet_id": "250876"}], [{"original_text": "After the ceremony, they headed off to their wedding reception. ", "album_id": "6096", "photo_flickr_id": "278978", "setting": "first-2-pick-and-tell", "worker_id": "RUGN6NE264D1LW6", "story_id": "50175", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the ceremony , they headed off to their wedding reception .", "storylet_id": "250877"}], [{"original_text": "They opened gifts at the reception. ", "album_id": "6096", "photo_flickr_id": "280799", "setting": "first-2-pick-and-tell", "worker_id": "RUGN6NE264D1LW6", "story_id": "50175", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they opened gifts at the reception .", "storylet_id": "250878"}], [{"original_text": "After the reception they took for their honeymoon in Paris. ", "album_id": "6096", "photo_flickr_id": "279040", "setting": "first-2-pick-and-tell", "worker_id": "RUGN6NE264D1LW6", "story_id": "50175", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the reception they took for their honeymoon in location .", "storylet_id": "250879"}], [{"original_text": "The guests met up after the wedding ceremony.", "album_id": "6096", "photo_flickr_id": "278782", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "50176", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guests met up after the wedding ceremony .", "storylet_id": "250880"}], [{"original_text": "They stopped to talk about it.", "album_id": "6096", "photo_flickr_id": "278787", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "50176", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they stopped to talk about it .", "storylet_id": "250881"}], [{"original_text": "Like any wedding, the party had a cake.", "album_id": "6096", "photo_flickr_id": "280536", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "50176", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "like any wedding , the party had a cake .", "storylet_id": "250882"}], [{"original_text": "Later on at the party, the couple cut the cake.", "album_id": "6096", "photo_flickr_id": "280500", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "50176", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later on at the party , the couple cut the cake .", "storylet_id": "250883"}], [{"original_text": "The bride and groom stood with their wedding gifts.", "album_id": "6096", "photo_flickr_id": "280799", "setting": "first-2-pick-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "50176", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride and groom stood with their wedding gifts .", "storylet_id": "250884"}], [{"original_text": "Saturday was my cousins wedding day.", "album_id": "6096", "photo_flickr_id": "278796", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50177", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "saturday was my cousins wedding day .", "storylet_id": "250885"}], [{"original_text": "She had the wedding at a beautiful church.", "album_id": "6096", "photo_flickr_id": "278684", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50177", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had the wedding at a beautiful church .", "storylet_id": "250886"}], [{"original_text": "The bride and groom were so happy to be wed.", "album_id": "6096", "photo_flickr_id": "278978", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50177", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and groom were so happy to be wed .", "storylet_id": "250887"}], [{"original_text": "The reception was held in a room below the church.", "album_id": "6096", "photo_flickr_id": "280799", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50177", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the reception was held in a room below the church .", "storylet_id": "250888"}], [{"original_text": "Afterwards, the bride and groom left for their honeymoon.", "album_id": "6096", "photo_flickr_id": "279040", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50177", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , the bride and groom left for their honeymoon .", "storylet_id": "250889"}], [{"original_text": "We received out invitation for the upcoming wedding.", "album_id": "6096", "photo_flickr_id": "278796", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "50178", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we received out invitation for the upcoming wedding .", "storylet_id": "250890"}], [{"original_text": "We arrived in front of the event. WOW! it was a beautiful place to hold it.", "album_id": "6096", "photo_flickr_id": "278684", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "50178", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we arrived in front of the event . wow ! it was a beautiful place to hold it .", "storylet_id": "250891"}], [{"original_text": "The bide and groom were married in no time and happy as ever.", "album_id": "6096", "photo_flickr_id": "278978", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "50178", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bide and groom were married in no time and happy as ever .", "storylet_id": "250892"}], [{"original_text": "They cut the cake as we all drank and laughed together.", "album_id": "6096", "photo_flickr_id": "280799", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "50178", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they cut the cake as we all drank and laughed together .", "storylet_id": "250893"}], [{"original_text": "In the end, they got in their car and drove off for the honeymoon.", "album_id": "6096", "photo_flickr_id": "279040", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "50178", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , they got in their car and drove off for the honeymoon .", "storylet_id": "250894"}], [{"original_text": "Save the date, we're getting married.", "album_id": "6096", "photo_flickr_id": "278796", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50179", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "save the date , we 're getting married .", "storylet_id": "250895"}], [{"original_text": "Guest walking to the manor home for the wedding.", "album_id": "6096", "photo_flickr_id": "278684", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50179", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "guest walking to the manor home for the wedding .", "storylet_id": "250896"}], [{"original_text": "The happy bride and groom after the ceremony,", "album_id": "6096", "photo_flickr_id": "278978", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50179", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the happy bride and groom after the ceremony ,", "storylet_id": "250897"}], [{"original_text": "The bride and groom posing for pictures.", "album_id": "6096", "photo_flickr_id": "280799", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50179", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride and groom posing for pictures .", "storylet_id": "250898"}], [{"original_text": "The getaway car of the happy couple.", "album_id": "6096", "photo_flickr_id": "279040", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50179", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the getaway car of the happy couple .", "storylet_id": "250899"}], [{"original_text": "Some people wore fancy clothes.", "album_id": "28374", "photo_flickr_id": "525366", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "50180", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some people wore fancy clothes .", "storylet_id": "250900"}], [{"original_text": "Others did not.", "album_id": "28374", "photo_flickr_id": "525691", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "50180", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "others did not .", "storylet_id": "250901"}], [{"original_text": "He was so mad he threw her out.", "album_id": "28374", "photo_flickr_id": "525921", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "50180", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was so mad he threw her out .", "storylet_id": "250902"}], [{"original_text": "She needed an escort.", "album_id": "28374", "photo_flickr_id": "525927", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "50180", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she needed an escort .", "storylet_id": "250903"}], [{"original_text": "At least she had cute shoes.", "album_id": "28374", "photo_flickr_id": "525364", "setting": "first-2-pick-and-tell", "worker_id": "PJ1BYTR4KU01IV1", "story_id": "50180", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at least she had cute shoes .", "storylet_id": "250904"}], [{"original_text": "It was a beautiful day for a wedding.", "album_id": "28374", "photo_flickr_id": "525695", "setting": "first-2-pick-and-tell", "worker_id": "8U4IW0SIQSY4MID", "story_id": "50181", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful day for a wedding .", "storylet_id": "250905"}], [{"original_text": "All of the bridesmaids were excited for the happy couple. ", "album_id": "28374", "photo_flickr_id": "525688", "setting": "first-2-pick-and-tell", "worker_id": "8U4IW0SIQSY4MID", "story_id": "50181", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the bridesmaids were excited for the happy couple .", "storylet_id": "250906"}], [{"original_text": "And the groomsmen had a great time, too.", "album_id": "28374", "photo_flickr_id": "525366", "setting": "first-2-pick-and-tell", "worker_id": "8U4IW0SIQSY4MID", "story_id": "50181", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the groomsmen had a great time , too .", "storylet_id": "250907"}], [{"original_text": "The couple was clearly very much in love.", "album_id": "28374", "photo_flickr_id": "525698", "setting": "first-2-pick-and-tell", "worker_id": "8U4IW0SIQSY4MID", "story_id": "50181", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple was clearly very much in love .", "storylet_id": "250908"}], [{"original_text": "They rushed off on their honeymoon as soon as they could.", "album_id": "28374", "photo_flickr_id": "525923", "setting": "first-2-pick-and-tell", "worker_id": "8U4IW0SIQSY4MID", "story_id": "50181", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they rushed off on their honeymoon as soon as they could .", "storylet_id": "250909"}], [{"original_text": "The happy couple are married at last.", "album_id": "28374", "photo_flickr_id": "525695", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "50182", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the happy couple are married at last .", "storylet_id": "250910"}], [{"original_text": "The bride's friends are happy to be the bridesmaids.", "album_id": "28374", "photo_flickr_id": "525688", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "50182", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride 's friends are happy to be the bridesmaids .", "storylet_id": "250911"}], [{"original_text": "The groomsmen have brought out their best shoes for the occasion.", "album_id": "28374", "photo_flickr_id": "525366", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "50182", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the groomsmen have brought out their best shoes for the occasion .", "storylet_id": "250912"}], [{"original_text": "The bride and groom couldn't be happier.", "album_id": "28374", "photo_flickr_id": "525698", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "50182", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride and groom could n't be happier .", "storylet_id": "250913"}], [{"original_text": "The newly married couple are going away to their honeymoon.", "album_id": "28374", "photo_flickr_id": "525923", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "50182", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the newly married couple are going away to their honeymoon .", "storylet_id": "250914"}], [{"original_text": "Last week I met all of my friends and we decided to go for a walk.", "album_id": "28374", "photo_flickr_id": "525366", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50183", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week i met all of my friends and we decided to go for a walk .", "storylet_id": "250915"}], [{"original_text": "Some were very well dressed for the day.", "album_id": "28374", "photo_flickr_id": "525691", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50183", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some were very well dressed for the day .", "storylet_id": "250916"}], [{"original_text": "One of my friends decided to be the leader of the walk.", "album_id": "28374", "photo_flickr_id": "525921", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50183", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of my friends decided to be the leader of the walk .", "storylet_id": "250917"}], [{"original_text": "Off we go!", "album_id": "28374", "photo_flickr_id": "525927", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50183", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "off we go !", "storylet_id": "250918"}], [{"original_text": "After about five minutes we had to stop because our feet hurt.", "album_id": "28374", "photo_flickr_id": "525364", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50183", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after about five minutes we had to stop because our feet hurt .", "storylet_id": "250919"}], [{"original_text": "After a long engagement period, the couple finally got married.", "album_id": "28374", "photo_flickr_id": "525695", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "50184", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after a long engagement period , the couple finally got married .", "storylet_id": "250920"}], [{"original_text": "Four bridesmaids were friends of the bride. ", "album_id": "28374", "photo_flickr_id": "525688", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "50184", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "four bridesmaids were friends of the bride .", "storylet_id": "250921"}], [{"original_text": "Male guests huddled together to talk about sports.", "album_id": "28374", "photo_flickr_id": "525366", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "50184", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "male guests huddled together to talk about sports .", "storylet_id": "250922"}], [{"original_text": "The groom and the bride looked very happy.", "album_id": "28374", "photo_flickr_id": "525698", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "50184", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the groom and the bride looked very happy .", "storylet_id": "250923"}], [{"original_text": "When the wedding ceremony was over, they said goodbye to their guests and went to their hotel.", "album_id": "28374", "photo_flickr_id": "525923", "setting": "last-3-pick-old-and-tell", "worker_id": "JRUJMI5Q9NABOFH", "story_id": "50184", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the wedding ceremony was over , they said goodbye to their guests and went to their hotel .", "storylet_id": "250924"}], [{"original_text": "What a beautiful church for a wedding.", "album_id": "27798", "photo_flickr_id": "1083452", "setting": "first-2-pick-and-tell", "worker_id": "TQED0D8LV6DH8MN", "story_id": "50185", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what a beautiful church for a wedding .", "storylet_id": "250925"}], [{"original_text": "Bride and Groom at their happiest.", "album_id": "27798", "photo_flickr_id": "1083383", "setting": "first-2-pick-and-tell", "worker_id": "TQED0D8LV6DH8MN", "story_id": "50185", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "bride and groom at their happiest .", "storylet_id": "250926"}], [{"original_text": "Here is the bride's brother with his wife.", "album_id": "27798", "photo_flickr_id": "1083426", "setting": "first-2-pick-and-tell", "worker_id": "TQED0D8LV6DH8MN", "story_id": "50185", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is the bride 's brother with his wife .", "storylet_id": "250927"}], [{"original_text": "Here is the bride's brother with the groom, both smiling.", "album_id": "27798", "photo_flickr_id": "1083424", "setting": "first-2-pick-and-tell", "worker_id": "TQED0D8LV6DH8MN", "story_id": "50185", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is the bride 's brother with the groom , both smiling .", "storylet_id": "250928"}], [{"original_text": "The wedding festivities have begun!", "album_id": "27798", "photo_flickr_id": "1083355", "setting": "first-2-pick-and-tell", "worker_id": "TQED0D8LV6DH8MN", "story_id": "50185", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the wedding festivities have begun !", "storylet_id": "250929"}], [{"original_text": "Families gathered to the church as a wedding ceremony took place that afternoon.", "album_id": "27798", "photo_flickr_id": "1083452", "setting": "first-2-pick-and-tell", "worker_id": "L8U5FFGVY6AJ10Q", "story_id": "50186", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "families gathered to the church as a wedding ceremony took place that afternoon .", "storylet_id": "250930"}], [{"original_text": "After the ceremony, they arrived at the venue for the reception.", "album_id": "27798", "photo_flickr_id": "1083388", "setting": "first-2-pick-and-tell", "worker_id": "L8U5FFGVY6AJ10Q", "story_id": "50186", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after the ceremony , they arrived at the venue for the reception .", "storylet_id": "250931"}], [{"original_text": "The DJ announced the new bride and groom as they arrived.", "album_id": "27798", "photo_flickr_id": "1083383", "setting": "first-2-pick-and-tell", "worker_id": "L8U5FFGVY6AJ10Q", "story_id": "50186", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dj announced the new bride and groom as they arrived .", "storylet_id": "250932"}], [{"original_text": "Everyone enjoyed a beautiful catered dinner.", "album_id": "27798", "photo_flickr_id": "1083407", "setting": "first-2-pick-and-tell", "worker_id": "L8U5FFGVY6AJ10Q", "story_id": "50186", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone enjoyed a beautiful catered dinner .", "storylet_id": "250933"}], [{"original_text": "Next, they topped off the reception with a fun filled night of dancing!", "album_id": "27798", "photo_flickr_id": "1083355", "setting": "first-2-pick-and-tell", "worker_id": "L8U5FFGVY6AJ10Q", "story_id": "50186", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "next , they topped off the reception with a fun filled night of dancing !", "storylet_id": "250934"}], [{"original_text": "My best friend had her wedding at her church.", "album_id": "27798", "photo_flickr_id": "1083452", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50187", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my best friend had her wedding at her church .", "storylet_id": "250935"}], [{"original_text": "Her and her groom looked so happy.", "album_id": "27798", "photo_flickr_id": "1083383", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50187", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her and her groom looked so happy .", "storylet_id": "250936"}], [{"original_text": "Her parents beamed with delight.", "album_id": "27798", "photo_flickr_id": "1083426", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50187", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her parents beamed with delight .", "storylet_id": "250937"}], [{"original_text": "Her brother was the Best Man.", "album_id": "27798", "photo_flickr_id": "1083424", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50187", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her brother was the best man .", "storylet_id": "250938"}], [{"original_text": "Afterward, her guests celebrated for the rest of the night.", "album_id": "27798", "photo_flickr_id": "1083355", "setting": "last-3-pick-old-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50187", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward , her guests celebrated for the rest of the night .", "storylet_id": "250939"}], [{"original_text": "The church the couple had chosen for their wedding was gorgeous.", "album_id": "27798", "photo_flickr_id": "1083452", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "50188", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the church the couple had chosen for their wedding was gorgeous .", "storylet_id": "250940"}], [{"original_text": "The wedding was in full swing and everyone looked amazing.", "album_id": "27798", "photo_flickr_id": "1083388", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "50188", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wedding was in full swing and everyone looked amazing .", "storylet_id": "250941"}], [{"original_text": "The bride and groom were the most gorgeous.", "album_id": "27798", "photo_flickr_id": "1083383", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "50188", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and groom were the most gorgeous .", "storylet_id": "250942"}], [{"original_text": "Everyone was having fun and the wedding was working out perfectly.", "album_id": "27798", "photo_flickr_id": "1083407", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "50188", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was having fun and the wedding was working out perfectly .", "storylet_id": "250943"}], [{"original_text": "Everyone danced and had fun, the night was amazing.", "album_id": "27798", "photo_flickr_id": "1083355", "setting": "last-3-pick-old-and-tell", "worker_id": "B1HHVZ33242XEEP", "story_id": "50188", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone danced and had fun , the night was amazing .", "storylet_id": "250944"}], [{"original_text": "The church that the marriage was to be held at was a historic one.", "album_id": "27798", "photo_flickr_id": "1083452", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "50189", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the church that the marriage was to be held at was a historic one .", "storylet_id": "250945"}], [{"original_text": "The bride and the groom posed happily on their wedding day.", "album_id": "27798", "photo_flickr_id": "1083383", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "50189", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and the groom posed happily on their wedding day .", "storylet_id": "250946"}], [{"original_text": "The best man and one of the bridesmaid decided to smile for the camera.", "album_id": "27798", "photo_flickr_id": "1083426", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "50189", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the best man and one of the bridesmaid decided to smile for the camera .", "storylet_id": "250947"}], [{"original_text": "The best man and one of the groomsman look happy to be a part of something important. ", "album_id": "27798", "photo_flickr_id": "1083424", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "50189", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the best man and one of the groomsman look happy to be a part of something important .", "storylet_id": "250948"}], [{"original_text": "After the wedding, everyone hit the dance floor to party the night away.", "album_id": "27798", "photo_flickr_id": "1083355", "setting": "last-3-pick-old-and-tell", "worker_id": "H0V4EQ1CCL6VEYX", "story_id": "50189", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the wedding , everyone hit the dance floor to party the night away .", "storylet_id": "250949"}], [{"original_text": "The groom waits for his bride.", "album_id": "33936", "photo_flickr_id": "1326820", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "50190", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the groom waits for his bride .", "storylet_id": "250950"}], [{"original_text": "The Dad has an important job walking his daughter down the isle.", "album_id": "33936", "photo_flickr_id": "1327257", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "50190", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dad has an important job walking his daughter down the isle .", "storylet_id": "250951"}], [{"original_text": "A big hug during the ceremony.", "album_id": "33936", "photo_flickr_id": "1326825", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "50190", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a big hug during the ceremony .", "storylet_id": "250952"}], [{"original_text": "Here is the bride and groom with their Best Man and the Maid of Honor.", "album_id": "33936", "photo_flickr_id": "1327263", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "50190", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is the bride and groom with their best man and the maid of honor .", "storylet_id": "250953"}], [{"original_text": "A new family portrait to remember the big day.", "album_id": "33936", "photo_flickr_id": "1326826", "setting": "first-2-pick-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "50190", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a new family portrait to remember the big day .", "storylet_id": "250954"}], [{"original_text": "It was the big wedding day.", "album_id": "33936", "photo_flickr_id": "1327258", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "50191", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the big wedding day .", "storylet_id": "250955"}], [{"original_text": "Her father walked her down the aisle.", "album_id": "33936", "photo_flickr_id": "1327257", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "50191", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her father walked her down the aisle .", "storylet_id": "250956"}], [{"original_text": "She made it to her soon to be husband.", "album_id": "33936", "photo_flickr_id": "1326830", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "50191", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she made it to her soon to be husband .", "storylet_id": "250957"}], [{"original_text": "They were finally officially married.", "album_id": "33936", "photo_flickr_id": "1327263", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "50191", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were finally officially married .", "storylet_id": "250958"}], [{"original_text": "They were so excited to be a real family.", "album_id": "33936", "photo_flickr_id": "1326826", "setting": "first-2-pick-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "50191", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were so excited to be a real family .", "storylet_id": "250959"}], [{"original_text": "The groom waits impatiently for his bride.", "album_id": "33936", "photo_flickr_id": "1326820", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "50192", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the groom waits impatiently for his bride .", "storylet_id": "250960"}], [{"original_text": "The brides father is walking her down the aisle to be married.", "album_id": "33936", "photo_flickr_id": "1327257", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "50192", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the brides father is walking her down the aisle to be married .", "storylet_id": "250961"}], [{"original_text": "A big hug and kiss for the newly married couple.", "album_id": "33936", "photo_flickr_id": "1326825", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "50192", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a big hug and kiss for the newly married couple .", "storylet_id": "250962"}], [{"original_text": "The couple have chosen their best friends for the wedding party.", "album_id": "33936", "photo_flickr_id": "1327263", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "50192", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple have chosen their best friends for the wedding party .", "storylet_id": "250963"}], [{"original_text": "Of course, the children of the family want to be in the wedding.", "album_id": "33936", "photo_flickr_id": "1326826", "setting": "last-3-pick-old-and-tell", "worker_id": "F7VN54TM0L4ZQO5", "story_id": "50192", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of course , the children of the family want to be in the wedding .", "storylet_id": "250964"}], [{"original_text": "The groom waits proudly for his beautiful bride.", "album_id": "33936", "photo_flickr_id": "1326820", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "50193", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the groom waits proudly for his beautiful bride .", "storylet_id": "250965"}], [{"original_text": "Here she comes being walked by her proud father. ", "album_id": "33936", "photo_flickr_id": "1327257", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "50193", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here she comes being walked by her proud father .", "storylet_id": "250966"}], [{"original_text": "They embrace after the ceremonial kiss.", "album_id": "33936", "photo_flickr_id": "1326825", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "50193", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they embrace after the ceremonial kiss .", "storylet_id": "250967"}], [{"original_text": "And now the family poses for pictures.", "album_id": "33936", "photo_flickr_id": "1327263", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "50193", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and now the family poses for pictures .", "storylet_id": "250968"}], [{"original_text": "Youngsters included! Everyone was thrilled for them. ", "album_id": "33936", "photo_flickr_id": "1326826", "setting": "last-3-pick-old-and-tell", "worker_id": "L82D98W0NE7OJAZ", "story_id": "50193", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "youngsters included ! everyone was thrilled for them .", "storylet_id": "250969"}], [{"original_text": "The groom waits for his bride.", "album_id": "33936", "photo_flickr_id": "1326820", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50194", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the groom waits for his bride .", "storylet_id": "250970"}], [{"original_text": "Father walking his daughter down the aisle.", "album_id": "33936", "photo_flickr_id": "1327257", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50194", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "father walking his daughter down the aisle .", "storylet_id": "250971"}], [{"original_text": "Happy couple kiss after the ceremony.", "album_id": "33936", "photo_flickr_id": "1326825", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50194", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "happy couple kiss after the ceremony .", "storylet_id": "250972"}], [{"original_text": "A picture of the bride and groom with his parents.", "album_id": "33936", "photo_flickr_id": "1327263", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50194", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a picture of the bride and groom with his parents .", "storylet_id": "250973"}], [{"original_text": "A lasting memory of the happy couple.", "album_id": "33936", "photo_flickr_id": "1326826", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50194", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a lasting memory of the happy couple .", "storylet_id": "250974"}], [{"original_text": "This was the set up for my friend's wedding.", "album_id": "72157624460721459", "photo_flickr_id": "4829666410", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "50195", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the set up for my friend 's wedding .", "storylet_id": "250975"}], [{"original_text": "They looked so happy as they got their vows read.", "album_id": "72157624460721459", "photo_flickr_id": "4858588950", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "50195", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they looked so happy as they got their vows read .", "storylet_id": "250976"}], [{"original_text": "The flower girls were very excited too.", "album_id": "72157624460721459", "photo_flickr_id": "4857970801", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "50195", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the flower girls were very excited too .", "storylet_id": "250977"}], [{"original_text": "The set up of the flowers in the glass was lovely.", "album_id": "72157624460721459", "photo_flickr_id": "4858587782", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "50195", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the set up of the flowers in the glass was lovely .", "storylet_id": "250978"}], [{"original_text": "Here was a wide shot of the dining area.", "album_id": "72157624460721459", "photo_flickr_id": "4858579000", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "50195", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here was a wide shot of the dining area .", "storylet_id": "250979"}], [{"original_text": "The couple exchanging vows.", "album_id": "72157624460721459", "photo_flickr_id": "4858594900", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50196", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple exchanging vows .", "storylet_id": "250980"}], [{"original_text": "Groom putting the wedding band on her finger.", "album_id": "72157624460721459", "photo_flickr_id": "4857971851", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50196", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "groom putting the wedding band on her finger .", "storylet_id": "250981"}], [{"original_text": "Best man giving the groom the rings.", "album_id": "72157624460721459", "photo_flickr_id": "4857978167", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50196", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "best man giving the groom the rings .", "storylet_id": "250982"}], [{"original_text": "Kids Playing piano.", "album_id": "72157624460721459", "photo_flickr_id": "4858580572", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50196", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "kids playing piano .", "storylet_id": "250983"}], [{"original_text": "The bride dancing with her daughter.", "album_id": "72157624460721459", "photo_flickr_id": "4858576954", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50196", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride dancing with her daughter .", "storylet_id": "250984"}], [{"original_text": "Everything at the wedding was so tastefully done.", "album_id": "72157624460721459", "photo_flickr_id": "4829666410", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50197", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everything at the wedding was so tastefully done .", "storylet_id": "250985"}], [{"original_text": "I bet they'll be together forever!", "album_id": "72157624460721459", "photo_flickr_id": "4858588950", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50197", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i bet they 'll be together forever !", "storylet_id": "250986"}], [{"original_text": "The girls were so cute.", "album_id": "72157624460721459", "photo_flickr_id": "4857970801", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50197", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girls were so cute .", "storylet_id": "250987"}], [{"original_text": "They had these really interesting candles.", "album_id": "72157624460721459", "photo_flickr_id": "4858587782", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50197", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had these really interesting candles .", "storylet_id": "250988"}], [{"original_text": "Such a fun event, I hope the best for both of them.", "album_id": "72157624460721459", "photo_flickr_id": "4858579000", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50197", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "such a fun event , i hope the best for both of them .", "storylet_id": "250989"}], [{"original_text": "I spent all day decorating the place for the wedding.", "album_id": "72157624460721459", "photo_flickr_id": "4829666410", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50198", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spent all day decorating the place for the wedding .", "storylet_id": "250990"}], [{"original_text": "The bride and groom were very excited.", "album_id": "72157624460721459", "photo_flickr_id": "4858588950", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50198", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom were very excited .", "storylet_id": "250991"}], [{"original_text": "Everyone looked great for the event.", "album_id": "72157624460721459", "photo_flickr_id": "4857970801", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50198", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone looked great for the event .", "storylet_id": "250992"}], [{"original_text": "I lit some candles.", "album_id": "72157624460721459", "photo_flickr_id": "4858587782", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50198", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i lit some candles .", "storylet_id": "250993"}], [{"original_text": "I set up all the tables and chairs.", "album_id": "72157624460721459", "photo_flickr_id": "4858579000", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50198", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i set up all the tables and chairs .", "storylet_id": "250994"}], [{"original_text": "Our wedding day was perfect. We spent a lot of time to make sure that everything was simple, but marvelous.", "album_id": "72157624460721459", "photo_flickr_id": "4829666410", "setting": "last-3-pick-old-and-tell", "worker_id": "V7TUYZAA7KBCJLI", "story_id": "50199", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our wedding day was perfect . we spent a lot of time to make sure that everything was simple , but marvelous .", "storylet_id": "250995"}], [{"original_text": "I'm happy that we chose an intimate ceremony. A ceremony large enough for our family and friends, but small enough so that we all felt really close.", "album_id": "72157624460721459", "photo_flickr_id": "4858588950", "setting": "last-3-pick-old-and-tell", "worker_id": "V7TUYZAA7KBCJLI", "story_id": "50199", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm happy that we chose an intimate ceremony . a ceremony large enough for our family and friends , but small enough so that we all felt really close .", "storylet_id": "250996"}], [{"original_text": "Here are my bridesmaids, family and friends. Everyone is dressed in my wedding colors. The pictures are going to be beautiful.", "album_id": "72157624460721459", "photo_flickr_id": "4857970801", "setting": "last-3-pick-old-and-tell", "worker_id": "V7TUYZAA7KBCJLI", "story_id": "50199", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here are my bridesmaids , family and friends . everyone is dressed in my wedding colors . the pictures are going to be beautiful .", "storylet_id": "250997"}], [{"original_text": "My friend created these for me. Aren't they beautiful? These took hours to create, but it was worth it.", "album_id": "72157624460721459", "photo_flickr_id": "4858587782", "setting": "last-3-pick-old-and-tell", "worker_id": "V7TUYZAA7KBCJLI", "story_id": "50199", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friend created these for me . are n't they beautiful ? these took hours to create , but it was worth it .", "storylet_id": "250998"}], [{"original_text": "The reception is going to be great. The table settings are really beautiful. I almost don't want to eat and mess up this beautiful sight.", "album_id": "72157624460721459", "photo_flickr_id": "4858579000", "setting": "last-3-pick-old-and-tell", "worker_id": "V7TUYZAA7KBCJLI", "story_id": "50199", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the reception is going to be great . the table settings are really beautiful . i almost do n't want to eat and mess up this beautiful sight .", "storylet_id": "250999"}], [{"original_text": "Today is the most important day of my life, being married to my significant other", "album_id": "72157624523284401", "photo_flickr_id": "4858488050", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50200", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is the most important day of my life , being married to my significant other", "storylet_id": "251000"}], [{"original_text": "I decided to take a picture of the wedding site before everyone came and took their seats.", "album_id": "72157624523284401", "photo_flickr_id": "4857879309", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50200", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i decided to take a picture of the wedding site before everyone came and took their seats .", "storylet_id": "251001"}], [{"original_text": "The marriage certificate makes everything official however, it doesn't hold much value to me.", "album_id": "72157624523284401", "photo_flickr_id": "4858504078", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50200", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the marriage certificate makes everything official however , it does n't hold much value to me .", "storylet_id": "251002"}], [{"original_text": "My family decided to visit my house after the ceremony and reception.", "album_id": "72157624523284401", "photo_flickr_id": "4858548766", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50200", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my family decided to visit my house after the ceremony and reception .", "storylet_id": "251003"}], [{"original_text": "Everyone was too energetic and forgot about sleeping.", "album_id": "72157624523284401", "photo_flickr_id": "4857934157", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50200", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was too energetic and forgot about sleeping .", "storylet_id": "251004"}], [{"original_text": "the chapel area was very simple ", "album_id": "72157624523284401", "photo_flickr_id": "4857879309", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "50201", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the chapel area was very simple", "storylet_id": "251005"}], [{"original_text": "the bride and groom were very happy together ", "album_id": "72157624523284401", "photo_flickr_id": "4857881597", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "50201", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom were very happy together", "storylet_id": "251006"}], [{"original_text": "and the marriage license was signed ", "album_id": "72157624523284401", "photo_flickr_id": "4858504078", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "50201", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the marriage license was signed", "storylet_id": "251007"}], [{"original_text": "the music was nice and simple ", "album_id": "72157624523284401", "photo_flickr_id": "4858505794", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "50201", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the music was nice and simple", "storylet_id": "251008"}], [{"original_text": "and her bouquet was very pretty ", "album_id": "72157624523284401", "photo_flickr_id": "4858517930", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "50201", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and her bouquet was very pretty", "storylet_id": "251009"}], [{"original_text": "I went to the wedding last week.", "album_id": "72157624523284401", "photo_flickr_id": "4857879309", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50202", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the wedding last week .", "storylet_id": "251010"}], [{"original_text": "It was on the lake.", "album_id": "72157624523284401", "photo_flickr_id": "4857881597", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50202", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was on the lake .", "storylet_id": "251011"}], [{"original_text": "I brought all the necessary paperwork.", "album_id": "72157624523284401", "photo_flickr_id": "4858504078", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50202", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i brought all the necessary paperwork .", "storylet_id": "251012"}], [{"original_text": "The live band was very good.", "album_id": "72157624523284401", "photo_flickr_id": "4858505794", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50202", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the live band was very good .", "storylet_id": "251013"}], [{"original_text": "I bought many flowers for the couple.", "album_id": "72157624523284401", "photo_flickr_id": "4858517930", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50202", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i bought many flowers for the couple .", "storylet_id": "251014"}], [{"original_text": "We went down to the church.", "album_id": "72157624523284401", "photo_flickr_id": "4857879309", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "50203", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went down to the church .", "storylet_id": "251015"}], [{"original_text": "We where getting married that day.", "album_id": "72157624523284401", "photo_flickr_id": "4857881597", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "50203", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we where getting married that day .", "storylet_id": "251016"}], [{"original_text": "The certificate was signed and it was official.", "album_id": "72157624523284401", "photo_flickr_id": "4858504078", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "50203", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the certificate was signed and it was official .", "storylet_id": "251017"}], [{"original_text": "We danced to a few songs after.", "album_id": "72157624523284401", "photo_flickr_id": "4858505794", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "50203", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we danced to a few songs after .", "storylet_id": "251018"}], [{"original_text": "Then headed home as husband and wife.", "album_id": "72157624523284401", "photo_flickr_id": "4858517930", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "50203", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then headed home as husband and wife .", "storylet_id": "251019"}], [{"original_text": "The couple eagerly drove to their friend's wedding ceremony, eager to share their wishes. ", "album_id": "72157624523284401", "photo_flickr_id": "4858488050", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50204", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple eagerly drove to their friend 's wedding ceremony , eager to share their wishes .", "storylet_id": "251020"}], [{"original_text": "The place where the wedding would be held was small, but very picturesque, which was perfect for the occasion. ", "album_id": "72157624523284401", "photo_flickr_id": "4857879309", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50204", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the place where the wedding would be held was small , but very picturesque , which was perfect for the occasion .", "storylet_id": "251021"}], [{"original_text": "The certificate of marriage was done very soon after and the couple eagerly signed the license. ", "album_id": "72157624523284401", "photo_flickr_id": "4858504078", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50204", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the certificate of marriage was done very soon after and the couple eagerly signed the license .", "storylet_id": "251022"}], [{"original_text": "At the reception, a number of guests shared happy wishes and hopeful advice for the future.", "album_id": "72157624523284401", "photo_flickr_id": "4858548766", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50204", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the reception , a number of guests shared happy wishes and hopeful advice for the future .", "storylet_id": "251023"}], [{"original_text": "Afterwards, everyone brought out cake and the children were especially happy for it. ", "album_id": "72157624523284401", "photo_flickr_id": "4857934157", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50204", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , everyone brought out cake and the children were especially happy for it .", "storylet_id": "251024"}], [{"original_text": "Before the wedding, the bride was made more beautiful.", "album_id": "72157623780545748", "photo_flickr_id": "4495759906", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "50205", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before the wedding , the bride was made more beautiful .", "storylet_id": "251025"}], [{"original_text": "As the ceremony started, the groom was escorted down the aisle by his mother.", "album_id": "72157623780545748", "photo_flickr_id": "4495760472", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "50205", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the ceremony started , the groom was escorted down the aisle by his mother .", "storylet_id": "251026"}], [{"original_text": "The bride followed escorted by her father.", "album_id": "72157623780545748", "photo_flickr_id": "4495122139", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "50205", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride followed escorted by her father .", "storylet_id": "251027"}], [{"original_text": "The priest made the couple kneel down before reading into the microphone.", "album_id": "72157623780545748", "photo_flickr_id": "4495762252", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "50205", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the priest made the couple kneel down before reading into the microphone .", "storylet_id": "251028"}], [{"original_text": "Everybody had a great time at the reception afterwards.", "album_id": "72157623780545748", "photo_flickr_id": "4495764024", "setting": "first-2-pick-and-tell", "worker_id": "ECPCWAXYLZY784Z", "story_id": "50205", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everybody had a great time at the reception afterwards .", "storylet_id": "251029"}], [{"original_text": "Maria had dreamed of the perfect wedding since she was a little girl. ", "album_id": "72157623780545748", "photo_flickr_id": "4495121183", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "50206", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] had dreamed of the perfect wedding since she was a little girl .", "storylet_id": "251030"}], [{"original_text": "She would think of her beautiful bridesmaids and being dressed like a princess. ", "album_id": "72157623780545748", "photo_flickr_id": "4495761994", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "50206", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she would think of her beautiful bridesmaids and being dressed like a princess .", "storylet_id": "251031"}], [{"original_text": "Sometimes she would get lost in daydreams of the romantic bride and grooms first dance. ", "album_id": "72157623780545748", "photo_flickr_id": "4495124325", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "50206", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sometimes she would get lost in daydreams of the romantic bride and grooms first dance .", "storylet_id": "251032"}], [{"original_text": "Maria thought about what wonderful time everyone would have at the reception. ", "album_id": "72157623780545748", "photo_flickr_id": "4495125547", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "50206", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] thought about what wonderful time everyone would have at the reception .", "storylet_id": "251033"}], [{"original_text": "Best of all, she dreamed of deep kisses and happily ever after. ", "album_id": "72157623780545748", "photo_flickr_id": "4495763430", "setting": "first-2-pick-and-tell", "worker_id": "ML7S1C54GU80W1R", "story_id": "50206", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "best of all , she dreamed of deep kisses and happily ever after .", "storylet_id": "251034"}], [{"original_text": "Adding the last touches of makeup before the ceremony.", "album_id": "72157623780545748", "photo_flickr_id": "4495759906", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50207", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "adding the last touches of makeup before the ceremony .", "storylet_id": "251035"}], [{"original_text": "The bridesmaid and the groomsman are walking down the isle.", "album_id": "72157623780545748", "photo_flickr_id": "4495760472", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50207", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bridesmaid and the groomsman are walking down the isle .", "storylet_id": "251036"}], [{"original_text": "Now the blushing bride is being walked down the isle.", "album_id": "72157623780545748", "photo_flickr_id": "4495122139", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50207", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now the blushing bride is being walked down the isle .", "storylet_id": "251037"}], [{"original_text": "The ceremony is in full swing.", "album_id": "72157623780545748", "photo_flickr_id": "4495762252", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50207", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ceremony is in full swing .", "storylet_id": "251038"}], [{"original_text": "Let the celebration of the marriage begin!", "album_id": "72157623780545748", "photo_flickr_id": "4495764024", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50207", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "let the celebration of the marriage begin !", "storylet_id": "251039"}], [{"original_text": "The makeup artist did their job.", "album_id": "72157623780545748", "photo_flickr_id": "4495759906", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "50208", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the makeup artist did their job .", "storylet_id": "251040"}], [{"original_text": "Then the show began.", "album_id": "72157623780545748", "photo_flickr_id": "4495760472", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "50208", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then the show began .", "storylet_id": "251041"}], [{"original_text": "The place was pretty packed by then.", "album_id": "72157623780545748", "photo_flickr_id": "4495122139", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "50208", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the place was pretty packed by then .", "storylet_id": "251042"}], [{"original_text": "But the event went off without a hitch.", "album_id": "72157623780545748", "photo_flickr_id": "4495762252", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "50208", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but the event went off without a hitch .", "storylet_id": "251043"}], [{"original_text": "We partied then called it a night.", "album_id": "72157623780545748", "photo_flickr_id": "4495764024", "setting": "last-3-pick-old-and-tell", "worker_id": "CVY8AMTJO68MIYH", "story_id": "50208", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we partied then called it a night .", "storylet_id": "251044"}], [{"original_text": "Susan gets her make up put on before the wedding.", "album_id": "72157623780545748", "photo_flickr_id": "4495759906", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "50209", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] gets her make up put on before the wedding .", "storylet_id": "251045"}], [{"original_text": "Mom and Dad are proud to be there!", "album_id": "72157623780545748", "photo_flickr_id": "4495760472", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "50209", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom and dad are proud to be there !", "storylet_id": "251046"}], [{"original_text": "The couple prepare to take their vows.", "album_id": "72157623780545748", "photo_flickr_id": "4495122139", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "50209", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the couple prepare to take their vows .", "storylet_id": "251047"}], [{"original_text": "Here they are pronounced man and wife.", "album_id": "72157623780545748", "photo_flickr_id": "4495762252", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "50209", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here they are pronounced man and wife .", "storylet_id": "251048"}], [{"original_text": "Everyone enjoyed the reception.", "album_id": "72157623780545748", "photo_flickr_id": "4495764024", "setting": "last-3-pick-old-and-tell", "worker_id": "Q3XNI151U39PM8C", "story_id": "50209", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone enjoyed the reception .", "storylet_id": "251049"}], [{"original_text": "The violinist played throughout the entire ceremony ", "album_id": "72157623889944943", "photo_flickr_id": "4587372491", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "50210", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the violinist played throughout the entire ceremony", "storylet_id": "251050"}], [{"original_text": "the flower girls made sure flowers were everyone ", "album_id": "72157623889944943", "photo_flickr_id": "4587376217", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "50210", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flower girls made sure flowers were everyone", "storylet_id": "251051"}], [{"original_text": "and the bread had a lead in ", "album_id": "72157623889944943", "photo_flickr_id": "4588002442", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "50210", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the bread had a lead in", "storylet_id": "251052"}], [{"original_text": "the flowers were pretty ", "album_id": "72157623889944943", "photo_flickr_id": "4588011862", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "50210", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the flowers were pretty", "storylet_id": "251053"}], [{"original_text": "and they were on the sidelines ", "album_id": "72157623889944943", "photo_flickr_id": "4588014250", "setting": "first-2-pick-and-tell", "worker_id": "OEMOIJSYZFZP7ZV", "story_id": "50210", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they were on the sidelines", "storylet_id": "251054"}], [{"original_text": "The violinist began to play as soon as the wedding ceremony started", "album_id": "72157623889944943", "photo_flickr_id": "4587372491", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50211", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the violinist began to play as soon as the wedding ceremony started", "storylet_id": "251055"}], [{"original_text": "and it was also a sign for the flower girls to begin their routine.", "album_id": "72157623889944943", "photo_flickr_id": "4587376217", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50211", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and it was also a sign for the flower girls to begin their routine .", "storylet_id": "251056"}], [{"original_text": "The marriage went well and my cousin couldn't have found a more beautiful suit.", "album_id": "72157623889944943", "photo_flickr_id": "4588003898", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50211", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the marriage went well and my cousin could n't have found a more beautiful suit .", "storylet_id": "251057"}], [{"original_text": "The overall scenery was beautiful, from the different colored flowers", "album_id": "72157623889944943", "photo_flickr_id": "4588011862", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50211", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the overall scenery was beautiful , from the different colored flowers", "storylet_id": "251058"}], [{"original_text": "to the beautiful lake.", "album_id": "72157623889944943", "photo_flickr_id": "4588014250", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50211", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to the beautiful lake .", "storylet_id": "251059"}], [{"original_text": "I hired a violin player for the wedding.", "album_id": "72157623889944943", "photo_flickr_id": "4587372491", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50212", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i hired a violin player for the wedding .", "storylet_id": "251060"}], [{"original_text": "The children were having a great time.", "album_id": "72157623889944943", "photo_flickr_id": "4587376217", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50212", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children were having a great time .", "storylet_id": "251061"}], [{"original_text": "They threw flowers everywhere.", "album_id": "72157623889944943", "photo_flickr_id": "4588002442", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50212", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they threw flowers everywhere .", "storylet_id": "251062"}], [{"original_text": "There were many beautiful trees.", "album_id": "72157623889944943", "photo_flickr_id": "4588011862", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50212", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many beautiful trees .", "storylet_id": "251063"}], [{"original_text": "I made sure to plant some flowers nearby.", "album_id": "72157623889944943", "photo_flickr_id": "4588014250", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50212", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i made sure to plant some flowers nearby .", "storylet_id": "251064"}], [{"original_text": "Here is my sister playing a violin. ", "album_id": "72157623889944943", "photo_flickr_id": "4587372491", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "50213", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is my sister playing a violin .", "storylet_id": "251065"}], [{"original_text": "The flower girls are coming down the aisle.", "album_id": "72157623889944943", "photo_flickr_id": "4587376217", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "50213", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flower girls are coming down the aisle .", "storylet_id": "251066"}], [{"original_text": "Here is the anxious groom waiting. ", "album_id": "72157623889944943", "photo_flickr_id": "4588003898", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "50213", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is the anxious groom waiting .", "storylet_id": "251067"}], [{"original_text": "Look at the yellow tree.", "album_id": "72157623889944943", "photo_flickr_id": "4588011862", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "50213", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look at the yellow tree .", "storylet_id": "251068"}], [{"original_text": "Here are some beautiful purple flowers.", "album_id": "72157623889944943", "photo_flickr_id": "4588014250", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "50213", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here are some beautiful purple flowers .", "storylet_id": "251069"}], [{"original_text": "The violin playing was beautiful.", "album_id": "72157623889944943", "photo_flickr_id": "4587372491", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "50214", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the violin playing was beautiful .", "storylet_id": "251070"}], [{"original_text": "The children had a lot of fun dressing up.", "album_id": "72157623889944943", "photo_flickr_id": "4587376217", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "50214", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children had a lot of fun dressing up .", "storylet_id": "251071"}], [{"original_text": "And everyone in attendance looked their best.", "album_id": "72157623889944943", "photo_flickr_id": "4588003898", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "50214", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and everyone in attendance looked their best .", "storylet_id": "251072"}], [{"original_text": "The flowers nearby were gorgeous.", "album_id": "72157623889944943", "photo_flickr_id": "4588011862", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "50214", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the flowers nearby were gorgeous .", "storylet_id": "251073"}], [{"original_text": "It was a perfect location!", "album_id": "72157623889944943", "photo_flickr_id": "4588014250", "setting": "last-3-pick-old-and-tell", "worker_id": "NICMZED5W2J6NNL", "story_id": "50214", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a perfect location !", "storylet_id": "251074"}], [{"original_text": "These two lovebirds are getting married today.", "album_id": "72057594085302199", "photo_flickr_id": "32792813", "setting": "first-2-pick-and-tell", "worker_id": "M7VD4A1TKYXJARX", "story_id": "50215", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these two lovebirds are getting married today .", "storylet_id": "251075"}], [{"original_text": "Here they are saying their vows.", "album_id": "72057594085302199", "photo_flickr_id": "32792883", "setting": "first-2-pick-and-tell", "worker_id": "M7VD4A1TKYXJARX", "story_id": "50215", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here they are saying their vows .", "storylet_id": "251076"}], [{"original_text": "Here they are posing with their official wedding certificate!", "album_id": "72057594085302199", "photo_flickr_id": "31336525", "setting": "first-2-pick-and-tell", "worker_id": "M7VD4A1TKYXJARX", "story_id": "50215", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here they are posing with their official wedding certificate !", "storylet_id": "251077"}], [{"original_text": "They wanted to make sure to get a photo of their rings too.", "album_id": "72057594085302199", "photo_flickr_id": "32792972", "setting": "first-2-pick-and-tell", "worker_id": "M7VD4A1TKYXJARX", "story_id": "50215", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they wanted to make sure to get a photo of their rings too .", "storylet_id": "251078"}], [{"original_text": "And finally, this is the bridesmobile after the wedding!", "album_id": "72057594085302199", "photo_flickr_id": "32793123", "setting": "first-2-pick-and-tell", "worker_id": "M7VD4A1TKYXJARX", "story_id": "50215", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and finally , this is the bridesmobile after the wedding !", "storylet_id": "251079"}], [{"original_text": "My sister's wedding day.", "album_id": "72057594085302199", "photo_flickr_id": "31336357", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "50216", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister 's wedding day .", "storylet_id": "251080"}], [{"original_text": "My beautiful sister.", "album_id": "72057594085302199", "photo_flickr_id": "32792454", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "50216", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my beautiful sister .", "storylet_id": "251081"}], [{"original_text": "Took this wonderful picture without her looking.", "album_id": "72057594085302199", "photo_flickr_id": "32792758", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "50216", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "took this wonderful picture without her looking .", "storylet_id": "251082"}], [{"original_text": "Her husband. Great guy.", "album_id": "72057594085302199", "photo_flickr_id": "31336483", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "50216", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her husband . great guy .", "storylet_id": "251083"}], [{"original_text": "And then they drove off to the sunset.", "album_id": "72057594085302199", "photo_flickr_id": "32793123", "setting": "first-2-pick-and-tell", "worker_id": "ITEVBHA3LBDZI30", "story_id": "50216", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then they drove off to the sunset .", "storylet_id": "251084"}], [{"original_text": "The wedding we went to last week was really small.", "album_id": "72057594085302199", "photo_flickr_id": "31336357", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50217", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding we went to last week was really small .", "storylet_id": "251085"}], [{"original_text": "The bridge was very beautiful however.", "album_id": "72057594085302199", "photo_flickr_id": "32792454", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50217", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bridge was very beautiful however .", "storylet_id": "251086"}], [{"original_text": "She was very happy.", "album_id": "72057594085302199", "photo_flickr_id": "32792758", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50217", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was very happy .", "storylet_id": "251087"}], [{"original_text": "It was a quiet wedding in the backyard.", "album_id": "72057594085302199", "photo_flickr_id": "31336483", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50217", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a quiet wedding in the backyard .", "storylet_id": "251088"}], [{"original_text": "Afterward they drove off to their honeymoon.", "album_id": "72057594085302199", "photo_flickr_id": "32793123", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50217", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward they drove off to their honeymoon .", "storylet_id": "251089"}], [{"original_text": "Mary was at her sister's wedding slaving away over making flower arrangements.", "album_id": "72057594085302199", "photo_flickr_id": "31336357", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50218", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was at her sister 's wedding slaving away over making flower arrangements .", "storylet_id": "251090"}], [{"original_text": "She thought about how perfect her sister was and how she might never get married.", "album_id": "72057594085302199", "photo_flickr_id": "32792454", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50218", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she thought about how perfect her sister was and how she might never get married .", "storylet_id": "251091"}], [{"original_text": "Her sister Linda was always the perfect one that got whatever she wanted.", "album_id": "72057594085302199", "photo_flickr_id": "32792758", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50218", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her sister [female] was always the perfect one that got whatever she wanted .", "storylet_id": "251092"}], [{"original_text": "Little did Mary know that her sister's soon to be husband wondered if maybe he was marrying the wrong sister.", "album_id": "72057594085302199", "photo_flickr_id": "31336483", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50218", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "little did [female] know that her sister 's soon to be husband wondered if maybe he was marrying the wrong sister .", "storylet_id": "251093"}], [{"original_text": "Well, it was too late know, he thought\u00c3\u00a2\u00e2\u201a\u00ac\u00c2\u00a6 As they drove away.", "album_id": "72057594085302199", "photo_flickr_id": "32793123", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50218", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "well , it was too late know , he thought\u00c3\u0192\u00c2\u00a2\u00c3\u00a2\u00e2\u20ac\u0161\u00c2\u00ac\u00c3\u201a\u00c2\u00a6 as they drove away .", "storylet_id": "251094"}], [{"original_text": "Shelby and Brian's wedding day was finally here and it was pure excitement. ", "album_id": "72057594085302199", "photo_flickr_id": "32792813", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "50219", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [male] 's wedding day was finally here and it was pure excitement .", "storylet_id": "251095"}], [{"original_text": "The bride and groom looked their very best during the ceremony and you could tell they were both happy and nervous.", "album_id": "72057594085302199", "photo_flickr_id": "32792883", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "50219", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom looked their very best during the ceremony and you could tell they were both happy and nervous .", "storylet_id": "251096"}], [{"original_text": "When the ceremony was over, they proudly displayed their marriage certificate for everyone to see.", "album_id": "72057594085302199", "photo_flickr_id": "31336525", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "50219", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when the ceremony was over , they proudly displayed their marriage certificate for everyone to see .", "storylet_id": "251097"}], [{"original_text": "They showed off their rings to everyone. They were perfectly accented to complement each other.", "album_id": "72057594085302199", "photo_flickr_id": "32792972", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "50219", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they showed off their rings to everyone . they were perfectly accented to complement each other .", "storylet_id": "251098"}], [{"original_text": "As the day turned into evening, they got into their chariot to leave for their honeymoon. A good day was had by all.", "album_id": "72057594085302199", "photo_flickr_id": "32793123", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "50219", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the day turned into evening , they got into their chariot to leave for their honeymoon . a good day was had by all .", "storylet_id": "251099"}], [{"original_text": "The wedding theme was a rustic woodsy one.", "album_id": "72157624798593665", "photo_flickr_id": "4975321377", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "50220", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding theme was a rustic woodsy one .", "storylet_id": "251100"}], [{"original_text": "The bride and groom arrived in a classic horse and buggy.", "album_id": "72157624798593665", "photo_flickr_id": "4976759644", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "50220", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom arrived in a classic horse and buggy .", "storylet_id": "251101"}], [{"original_text": "The place settings at the table were very elegant.", "album_id": "72157624798593665", "photo_flickr_id": "4976178855", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "50220", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the place settings at the table were very elegant .", "storylet_id": "251102"}], [{"original_text": "Carrie's whole family was very proud to be here.", "album_id": "72157624798593665", "photo_flickr_id": "4976183863", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "50220", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] 's whole family was very proud to be here .", "storylet_id": "251103"}], [{"original_text": "The happy couple looked very blissful and content.", "album_id": "72157624798593665", "photo_flickr_id": "4976185253", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "50220", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the happy couple looked very blissful and content .", "storylet_id": "251104"}], [{"original_text": "Preparing the wedding cake was a daunting task since it consisted of more than one piece.", "album_id": "72157624798593665", "photo_flickr_id": "4975937040", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50221", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "preparing the wedding cake was a daunting task since it consisted of more than one piece .", "storylet_id": "251105"}], [{"original_text": "I started to feel dizzy after midnight since I've been helping my cousins prepare it.", "album_id": "72157624798593665", "photo_flickr_id": "4975938510", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50221", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i started to feel dizzy after midnight since i 've been helping my cousins prepare it .", "storylet_id": "251106"}], [{"original_text": "Luckily they've handled most of the manual work.", "album_id": "72157624798593665", "photo_flickr_id": "4975941862", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50221", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "luckily they 've handled most of the manual work .", "storylet_id": "251107"}], [{"original_text": "The finished product was nice although I expected a better look.", "album_id": "72157624798593665", "photo_flickr_id": "4975943648", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50221", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the finished product was nice although i expected a better look .", "storylet_id": "251108"}], [{"original_text": "Putting everything together, I was glad to invest my time towards helping.", "album_id": "72157624798593665", "photo_flickr_id": "4975321377", "setting": "first-2-pick-and-tell", "worker_id": "ITTX1AEBCVOUL0W", "story_id": "50221", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "putting everything together , i was glad to invest my time towards helping .", "storylet_id": "251109"}], [{"original_text": "This is a picture of a woman.", "album_id": "72157624798593665", "photo_flickr_id": "4975937040", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "50222", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a woman .", "storylet_id": "251110"}], [{"original_text": "This is a picture of a man.", "album_id": "72157624798593665", "photo_flickr_id": "4975938510", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "50222", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a man .", "storylet_id": "251111"}], [{"original_text": "This is a picture of a couple.", "album_id": "72157624798593665", "photo_flickr_id": "4975941862", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "50222", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of a couple .", "storylet_id": "251112"}], [{"original_text": "This is as picture of a pie.", "album_id": "72157624798593665", "photo_flickr_id": "4975943648", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "50222", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is as picture of a pie .", "storylet_id": "251113"}], [{"original_text": "This is a picture of a sign.", "album_id": "72157624798593665", "photo_flickr_id": "4975321377", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "50222", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a sign .", "storylet_id": "251114"}], [{"original_text": "We are making our own table pieces for my wedding. ", "album_id": "72157624798593665", "photo_flickr_id": "4975937040", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "50223", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are making our own table pieces for my wedding .", "storylet_id": "251115"}], [{"original_text": "My fiance is practicing on the piano as he us going to play for our wedding. ", "album_id": "72157624798593665", "photo_flickr_id": "4975938510", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "50223", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my fiance is practicing on the piano as he us going to play for our wedding .", "storylet_id": "251116"}], [{"original_text": "My mom is helping my fiance with the dishes. ", "album_id": "72157624798593665", "photo_flickr_id": "4975941862", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "50223", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my mom is helping my fiance with the dishes .", "storylet_id": "251117"}], [{"original_text": "This is the first part of the centerpiece. ", "album_id": "72157624798593665", "photo_flickr_id": "4975943648", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "50223", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the first part of the centerpiece .", "storylet_id": "251118"}], [{"original_text": "This is the completed project. ", "album_id": "72157624798593665", "photo_flickr_id": "4975321377", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "50223", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the completed project .", "storylet_id": "251119"}], [{"original_text": "Look at the beautiful arrangement!", "album_id": "72157624798593665", "photo_flickr_id": "4975321377", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50224", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "look at the beautiful arrangement !", "storylet_id": "251120"}], [{"original_text": "This is the elegant horse-drawn carriage to carry away the bride and the groom after the ceremony.", "album_id": "72157624798593665", "photo_flickr_id": "4976759644", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50224", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the elegant horse-drawn carriage to carry away the bride and the groom after the ceremony .", "storylet_id": "251121"}], [{"original_text": "The beautiful setup for the wedding reception.", "album_id": "72157624798593665", "photo_flickr_id": "4976178855", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50224", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beautiful setup for the wedding reception .", "storylet_id": "251122"}], [{"original_text": "Family pictures save the special moment to remember for a life time.", "album_id": "72157624798593665", "photo_flickr_id": "4976183863", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50224", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "family pictures save the special moment to remember for a life time .", "storylet_id": "251123"}], [{"original_text": "The groom and the bride are so happy.", "album_id": "72157624798593665", "photo_flickr_id": "4976185253", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50224", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the groom and the bride are so happy .", "storylet_id": "251124"}], [{"original_text": "It was our special wedding day. We were very happy.", "album_id": "447662", "photo_flickr_id": "19026433", "setting": "first-2-pick-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "50225", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was our special wedding day . we were very happy .", "storylet_id": "251125"}], [{"original_text": "We couldn't wait to greet our family and friends after the ceremony.", "album_id": "447662", "photo_flickr_id": "19026435", "setting": "first-2-pick-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "50225", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we could n't wait to greet our family and friends after the ceremony .", "storylet_id": "251126"}], [{"original_text": "We left temporarily and changed to traditional clothing before mingling with the guests.", "album_id": "447662", "photo_flickr_id": "19022969", "setting": "first-2-pick-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "50225", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we left temporarily and changed to traditional clothing before mingling with the guests .", "storylet_id": "251127"}], [{"original_text": "It was good to see everyone in one place to celebrate our wedding.", "album_id": "447662", "photo_flickr_id": "19022065", "setting": "first-2-pick-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "50225", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was good to see everyone in one place to celebrate our wedding .", "storylet_id": "251128"}], [{"original_text": "We had a lot of fun!", "album_id": "447662", "photo_flickr_id": "19022064", "setting": "first-2-pick-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "50225", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a lot of fun !", "storylet_id": "251129"}], [{"original_text": "The day finally arrived for us to exchange our vows and commit ourselves to each other till death do us part.", "album_id": "447662", "photo_flickr_id": "19026431", "setting": "first-2-pick-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "50226", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day finally arrived for us to exchange our vows and commit ourselves to each other till death do us part .", "storylet_id": "251130"}], [{"original_text": "We are so happy to finally be husband and wife! I've waited forever for this day!", "album_id": "447662", "photo_flickr_id": "19022971", "setting": "first-2-pick-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "50226", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are so happy to finally be husband and wife ! i 've waited forever for this day !", "storylet_id": "251131"}], [{"original_text": "We share our custom made wedding cake with each other. It was so delicious that it was all gone by the end of the night.", "album_id": "447662", "photo_flickr_id": "19026436", "setting": "first-2-pick-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "50226", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we share our custom made wedding cake with each other . it was so delicious that it was all gone by the end of the night .", "storylet_id": "251132"}], [{"original_text": "We invited our closes friends and family to the after party to extend the celebration.", "album_id": "447662", "photo_flickr_id": "19022065", "setting": "first-2-pick-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "50226", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we invited our closes friends and family to the after party to extend the celebration .", "storylet_id": "251133"}], [{"original_text": "We danced and partied the night away to some of our favorite songs, hand selected by the newly weds.", "album_id": "447662", "photo_flickr_id": "19022064", "setting": "first-2-pick-and-tell", "worker_id": "UZDTIBI4FCFUHXC", "story_id": "50226", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we danced and partied the night away to some of our favorite songs , hand selected by the newly weds .", "storylet_id": "251134"}], [{"original_text": "My daughter Gina here is getting walked down the aisle by her Father. Gina looks so beautiful.", "album_id": "447662", "photo_flickr_id": "19026433", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "50227", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my daughter [female] here is getting walked down the aisle by her father . [female] looks so beautiful .", "storylet_id": "251135"}], [{"original_text": "After the ceremony she raises her flowers in victory and celebration.", "album_id": "447662", "photo_flickr_id": "19026435", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "50227", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after the ceremony she raises her flowers in victory and celebration .", "storylet_id": "251136"}], [{"original_text": "Some of Gina and Grant's guests included dress from Grant's homeland. It was awesome to learn more about his culture.", "album_id": "447662", "photo_flickr_id": "19022969", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "50227", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of [female] and [male] 's guests included dress from [male] 's homeland . it was awesome to learn more about his culture .", "storylet_id": "251137"}], [{"original_text": "Here at the reception all were honored by having their picture taken. Everyone looked so happy to be celebrating together.", "album_id": "447662", "photo_flickr_id": "19022065", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "50227", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here at the reception all were honored by having their picture taken . everyone looked so happy to be celebrating together .", "storylet_id": "251138"}], [{"original_text": "We even had a dance that derived from Grant's homeland. It was fun watching everyone try to match steps. What a fantastic time we had.", "album_id": "447662", "photo_flickr_id": "19022064", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "50227", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even had a dance that derived from [male] 's homeland . it was fun watching everyone try to match steps . what a fantastic time we had .", "storylet_id": "251139"}], [{"original_text": "When I finally got to the wedding it was just in time.", "album_id": "447662", "photo_flickr_id": "19026433", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50228", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i finally got to the wedding it was just in time .", "storylet_id": "251140"}], [{"original_text": "The groom and bride were just married and walking off to the car.", "album_id": "447662", "photo_flickr_id": "19026435", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50228", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the groom and bride were just married and walking off to the car .", "storylet_id": "251141"}], [{"original_text": "Afterward I showed up for the food.", "album_id": "447662", "photo_flickr_id": "19022969", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50228", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterward i showed up for the food .", "storylet_id": "251142"}], [{"original_text": "There were a lot of people there.", "album_id": "447662", "photo_flickr_id": "19022065", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50228", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of people there .", "storylet_id": "251143"}], [{"original_text": "At night there was a lot of dancing.", "album_id": "447662", "photo_flickr_id": "19022064", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50228", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night there was a lot of dancing .", "storylet_id": "251144"}], [{"original_text": "Dan and Gina's wedding happend today.", "album_id": "447662", "photo_flickr_id": "19026433", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50229", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] 's wedding happend today .", "storylet_id": "251145"}], [{"original_text": "Gina looked so happy when she saw all of her family.", "album_id": "447662", "photo_flickr_id": "19026435", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50229", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] looked so happy when she saw all of her family .", "storylet_id": "251146"}], [{"original_text": "There were around thirty people that showed up.", "album_id": "447662", "photo_flickr_id": "19022969", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50229", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were around thirty people that showed up .", "storylet_id": "251147"}], [{"original_text": "Family photos are always nice to have.", "album_id": "447662", "photo_flickr_id": "19022065", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50229", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "family photos are always nice to have .", "storylet_id": "251148"}], [{"original_text": "People took pictures all night and I left early. ", "album_id": "447662", "photo_flickr_id": "19022064", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50229", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people took pictures all night and i left early .", "storylet_id": "251149"}], [{"original_text": "This was the wedding cake at my friend's wedding.", "album_id": "72157623931497939", "photo_flickr_id": "4605310320", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "50230", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the wedding cake at my friend 's wedding .", "storylet_id": "251150"}], [{"original_text": "They had premade napkins.", "album_id": "72157623931497939", "photo_flickr_id": "4604695737", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "50230", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had premade napkins .", "storylet_id": "251151"}], [{"original_text": "There was a lot of family and friends at the wedding.", "album_id": "72157623931497939", "photo_flickr_id": "4605311050", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "50230", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a lot of family and friends at the wedding .", "storylet_id": "251152"}], [{"original_text": "They had cute decorations.", "album_id": "72157623931497939", "photo_flickr_id": "4604697291", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "50230", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had cute decorations .", "storylet_id": "251153"}], [{"original_text": "Here is the bride smiling happily.", "album_id": "72157623931497939", "photo_flickr_id": "4605313062", "setting": "first-2-pick-and-tell", "worker_id": "BFKGLQ537F2MNIA", "story_id": "50230", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is the bride smiling happily .", "storylet_id": "251154"}], [{"original_text": "The guest stood as the bride walked down the aisle.", "album_id": "72157623931497939", "photo_flickr_id": "4605311050", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "50231", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guest stood as the bride walked down the aisle .", "storylet_id": "251155"}], [{"original_text": "The couple held hands as they proceeded with the ceremony.", "album_id": "72157623931497939", "photo_flickr_id": "4604696287", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "50231", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the couple held hands as they proceeded with the ceremony .", "storylet_id": "251156"}], [{"original_text": "After being wed, the couple mixed sand together, symbolizing coming together as a family. ", "album_id": "72157623931497939", "photo_flickr_id": "4604697291", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "50231", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after being wed , the couple mixed sand together , symbolizing coming together as a family .", "storylet_id": "251157"}], [{"original_text": "After the ceremony, the guests and the couple headed towards the reception area to enjoy cake and their meals.", "album_id": "72157623931497939", "photo_flickr_id": "4605310320", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "50231", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the ceremony , the guests and the couple headed towards the reception area to enjoy cake and their meals .", "storylet_id": "251158"}], [{"original_text": "The food was buffet style.", "album_id": "72157623931497939", "photo_flickr_id": "4604698073", "setting": "first-2-pick-and-tell", "worker_id": "Q6FFWNO3H9YTSPM", "story_id": "50231", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the food was buffet style .", "storylet_id": "251159"}], [{"original_text": "The family all getting together to celebrate the wedding.", "album_id": "72157623931497939", "photo_flickr_id": "4605311050", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50232", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family all getting together to celebrate the wedding .", "storylet_id": "251160"}], [{"original_text": "Here they are, So happy for them.", "album_id": "72157623931497939", "photo_flickr_id": "4604696287", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50232", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here they are , so happy for them .", "storylet_id": "251161"}], [{"original_text": "They had such interesting decorations at the wedding, this candle really lit the place up.", "album_id": "72157623931497939", "photo_flickr_id": "4604697291", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50232", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had such interesting decorations at the wedding , this candle really lit the place up .", "storylet_id": "251162"}], [{"original_text": "The cake was great, i almost didn't want to cut into it because it was so perfect, but I wanted cake so I ate it.", "album_id": "72157623931497939", "photo_flickr_id": "4605310320", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50232", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cake was great , i almost did n't want to cut into it because it was so perfect , but i wanted cake so i ate it .", "storylet_id": "251163"}], [{"original_text": "I ate a lot of cake, I think everyone else did too, it was good.", "album_id": "72157623931497939", "photo_flickr_id": "4604698073", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50232", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ate a lot of cake , i think everyone else did too , it was good .", "storylet_id": "251164"}], [{"original_text": "The wedding cake was covered in pink and red roses.", "album_id": "72157623931497939", "photo_flickr_id": "4605310320", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "50233", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding cake was covered in pink and red roses .", "storylet_id": "251165"}], [{"original_text": "Napkins were decorated with the names of the bride and groom.", "album_id": "72157623931497939", "photo_flickr_id": "4604695737", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "50233", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "napkins were decorated with the names of the bride and groom .", "storylet_id": "251166"}], [{"original_text": "Guests gathered in the church to prepare for the ceremony.", "album_id": "72157623931497939", "photo_flickr_id": "4605311050", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "50233", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "guests gathered in the church to prepare for the ceremony .", "storylet_id": "251167"}], [{"original_text": "Glass artwork was displayed to add to the beauty of the scene.", "album_id": "72157623931497939", "photo_flickr_id": "4604697291", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "50233", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "glass artwork was displayed to add to the beauty of the scene .", "storylet_id": "251168"}], [{"original_text": "The bride and her friend posed for an after picture.", "album_id": "72157623931497939", "photo_flickr_id": "4605313062", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "50233", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride and her friend posed for an after picture .", "storylet_id": "251169"}], [{"original_text": "I love my beautiful wedding cake.", "album_id": "72157623931497939", "photo_flickr_id": "4605310320", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "50234", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love my beautiful wedding cake .", "storylet_id": "251170"}], [{"original_text": "Napkins with our wedding date on them.", "album_id": "72157623931497939", "photo_flickr_id": "4604695737", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "50234", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "napkins with our wedding date on them .", "storylet_id": "251171"}], [{"original_text": "Everyone standing waiting on me to come down the aisle.", "album_id": "72157623931497939", "photo_flickr_id": "4605311050", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "50234", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone standing waiting on me to come down the aisle .", "storylet_id": "251172"}], [{"original_text": "I love the cross!", "album_id": "72157623931497939", "photo_flickr_id": "4604697291", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "50234", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love the cross !", "storylet_id": "251173"}], [{"original_text": "Here I am with my sister", "album_id": "72157623931497939", "photo_flickr_id": "4605313062", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "50234", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here i am with my sister", "storylet_id": "251174"}], [{"original_text": "Preparing for the entrance, everyone in the church gathers.", "album_id": "72157623519648199", "photo_flickr_id": "4443162250", "setting": "first-2-pick-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "50235", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "preparing for the entrance , everyone in the church gathers .", "storylet_id": "251175"}], [{"original_text": "The bride looks gorgeous, as she is brought into the church with her father.", "album_id": "72157623519648199", "photo_flickr_id": "4443163780", "setting": "first-2-pick-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "50235", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride looks gorgeous , as she is brought into the church with her father .", "storylet_id": "251176"}], [{"original_text": "The ceremony commences and it is very passionate. ", "album_id": "72157623519648199", "photo_flickr_id": "4443164392", "setting": "first-2-pick-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "50235", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ceremony commences and it is very passionate .", "storylet_id": "251177"}], [{"original_text": "Creating memories, the camera people get the best angles. ", "album_id": "72157623519648199", "photo_flickr_id": "4443165390", "setting": "first-2-pick-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "50235", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "creating memories , the camera people get the best angles .", "storylet_id": "251178"}], [{"original_text": "As it ends, they all leave to attend the after party and dance the night away.", "album_id": "72157623519648199", "photo_flickr_id": "4442390611", "setting": "first-2-pick-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "50235", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as it ends , they all leave to attend the after party and dance the night away .", "storylet_id": "251179"}], [{"original_text": "The groom was nervous before the wedding.", "album_id": "72157623519648199", "photo_flickr_id": "4443162250", "setting": "first-2-pick-and-tell", "worker_id": "ZV3XTRYH2O00WS7", "story_id": "50236", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the groom was nervous before the wedding .", "storylet_id": "251180"}], [{"original_text": "The church was set up nicely and everyone was ready for the ceremony to start.", "album_id": "72157623519648199", "photo_flickr_id": "4443162868", "setting": "first-2-pick-and-tell", "worker_id": "ZV3XTRYH2O00WS7", "story_id": "50236", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the church was set up nicely and everyone was ready for the ceremony to start .", "storylet_id": "251181"}], [{"original_text": "The bride was escorted down the aisle by her father. ", "album_id": "72157623519648199", "photo_flickr_id": "4443163780", "setting": "first-2-pick-and-tell", "worker_id": "ZV3XTRYH2O00WS7", "story_id": "50236", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride was escorted down the aisle by her father .", "storylet_id": "251182"}], [{"original_text": "The wedding ceremony was nice and the bride shed a tear.", "album_id": "72157623519648199", "photo_flickr_id": "4443164392", "setting": "first-2-pick-and-tell", "worker_id": "ZV3XTRYH2O00WS7", "story_id": "50236", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wedding ceremony was nice and the bride shed a tear .", "storylet_id": "251183"}], [{"original_text": "The bride and groom looked very happy after they were married.", "album_id": "72157623519648199", "photo_flickr_id": "4442387467", "setting": "first-2-pick-and-tell", "worker_id": "ZV3XTRYH2O00WS7", "story_id": "50236", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride and groom looked very happy after they were married .", "storylet_id": "251184"}], [{"original_text": "Last night the wedding was very beautiful.", "album_id": "72157623519648199", "photo_flickr_id": "4443162250", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50237", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night the wedding was very beautiful .", "storylet_id": "251185"}], [{"original_text": "The bride and groom were so happy to finally be married.", "album_id": "72157623519648199", "photo_flickr_id": "4443163780", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50237", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom were so happy to finally be married .", "storylet_id": "251186"}], [{"original_text": "The ceremony and vows were also great.", "album_id": "72157623519648199", "photo_flickr_id": "4443164392", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50237", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ceremony and vows were also great .", "storylet_id": "251187"}], [{"original_text": "There were a lot of professional photographers there.", "album_id": "72157623519648199", "photo_flickr_id": "4443165390", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50237", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of professional photographers there .", "storylet_id": "251188"}], [{"original_text": "Afterward we all had fun dancing and playing games.", "album_id": "72157623519648199", "photo_flickr_id": "4442390611", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50237", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we all had fun dancing and playing games .", "storylet_id": "251189"}], [{"original_text": "The doors were ajar and I could hear a conversation.", "album_id": "72157623519648199", "photo_flickr_id": "4443162250", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50238", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the doors were ajar and i could hear a conversation .", "storylet_id": "251190"}], [{"original_text": "The couple walked into the room and everyone gasped.", "album_id": "72157623519648199", "photo_flickr_id": "4443163780", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50238", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the couple walked into the room and everyone gasped .", "storylet_id": "251191"}], [{"original_text": "The church was beautiful.", "album_id": "72157623519648199", "photo_flickr_id": "4443164392", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50238", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the church was beautiful .", "storylet_id": "251192"}], [{"original_text": "Marco is the wedding photographer and he likes the groom.", "album_id": "72157623519648199", "photo_flickr_id": "4443165390", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50238", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is the wedding photographer and he likes the groom .", "storylet_id": "251193"}], [{"original_text": "The dancing went well into the night. ", "album_id": "72157623519648199", "photo_flickr_id": "4442390611", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50238", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dancing went well into the night .", "storylet_id": "251194"}], [{"original_text": "Katherine's wedding day was finally here and the excitement surrounding the event was immense.", "album_id": "72157623519648199", "photo_flickr_id": "4443162250", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "50239", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] 's wedding day was finally here and the excitement surrounding the event was immense .", "storylet_id": "251195"}], [{"original_text": "As her father walked her down the aisle, she looked breathtaking in a stunning A line gown with a simple bouquet of purple flowers. ", "album_id": "72157623519648199", "photo_flickr_id": "4443163780", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "50239", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as her father walked her down the aisle , she looked breathtaking in a stunning a line gown with a simple bouquet of purple flowers .", "storylet_id": "251196"}], [{"original_text": "The site for the wedding was extravagant and immense. The aisles were filled with people.", "album_id": "72157623519648199", "photo_flickr_id": "4443164392", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "50239", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the site for the wedding was extravagant and immense . the aisles were filled with people .", "storylet_id": "251197"}], [{"original_text": "Even the videographers were captivated by how stunning the event was.", "album_id": "72157623519648199", "photo_flickr_id": "4443165390", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "50239", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the videographers were captivated by how stunning the event was .", "storylet_id": "251198"}], [{"original_text": "The reception took place right next door and a good time was had by all at this very memorable event.", "album_id": "72157623519648199", "photo_flickr_id": "4442390611", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "50239", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the reception took place right next door and a good time was had by all at this very memorable event .", "storylet_id": "251199"}], [{"original_text": "They committee gathered for a discussion.", "album_id": "72157624179145821", "photo_flickr_id": "4712530124", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50240", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they committee gathered for a discussion .", "storylet_id": "251200"}], [{"original_text": "Afterwards, they enjoyed some sweets.", "album_id": "72157624179145821", "photo_flickr_id": "4712530976", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50240", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "afterwards , they enjoyed some sweets .", "storylet_id": "251201"}], [{"original_text": "They then enjoyed some entrees at the restaurant. ", "album_id": "72157624179145821", "photo_flickr_id": "4711890869", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50240", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they then enjoyed some entrees at the restaurant .", "storylet_id": "251202"}], [{"original_text": "They stepped outside for some fresh air.", "album_id": "72157624179145821", "photo_flickr_id": "4712532648", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50240", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they stepped outside for some fresh air .", "storylet_id": "251203"}], [{"original_text": "They posed for some photos before leaving.", "album_id": "72157624179145821", "photo_flickr_id": "4711893869", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50240", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they posed for some photos before leaving .", "storylet_id": "251204"}], [{"original_text": "Old friends come together to attend their friends wedding.", "album_id": "72157624179145821", "photo_flickr_id": "4711890205", "setting": "first-2-pick-and-tell", "worker_id": "BYFJJOZZFXMUSUX", "story_id": "50241", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "old friends come together to attend their friends wedding .", "storylet_id": "251205"}], [{"original_text": "Family and guest wait patiently for the ceremony to finish.", "album_id": "72157624179145821", "photo_flickr_id": "4712530124", "setting": "first-2-pick-and-tell", "worker_id": "BYFJJOZZFXMUSUX", "story_id": "50241", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "family and guest wait patiently for the ceremony to finish .", "storylet_id": "251206"}], [{"original_text": "The bride and groom smile for photos after the ceremony.", "album_id": "72157624179145821", "photo_flickr_id": "4712532304", "setting": "first-2-pick-and-tell", "worker_id": "BYFJJOZZFXMUSUX", "story_id": "50241", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and groom smile for photos after the ceremony .", "storylet_id": "251207"}], [{"original_text": "They also talk, and laugh with family.", "album_id": "72157624179145821", "photo_flickr_id": "4711890869", "setting": "first-2-pick-and-tell", "worker_id": "BYFJJOZZFXMUSUX", "story_id": "50241", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also talk , and laugh with family .", "storylet_id": "251208"}], [{"original_text": "Then everyone sat down, and ate all the food prepared.", "album_id": "72157624179145821", "photo_flickr_id": "4712530976", "setting": "first-2-pick-and-tell", "worker_id": "BYFJJOZZFXMUSUX", "story_id": "50241", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then everyone sat down , and ate all the food prepared .", "storylet_id": "251209"}], [{"original_text": "I went down to the wedding party.", "album_id": "72157624179145821", "photo_flickr_id": "4711890205", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50242", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went down to the wedding party .", "storylet_id": "251210"}], [{"original_text": "There were tons of people there.", "album_id": "72157624179145821", "photo_flickr_id": "4712530124", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50242", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were tons of people there .", "storylet_id": "251211"}], [{"original_text": "We were having some drinks outside.", "album_id": "72157624179145821", "photo_flickr_id": "4712532304", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50242", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were having some drinks outside .", "storylet_id": "251212"}], [{"original_text": "There was a lot of food.", "album_id": "72157624179145821", "photo_flickr_id": "4711890869", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50242", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a lot of food .", "storylet_id": "251213"}], [{"original_text": "I ate a lot of cupcakes.", "album_id": "72157624179145821", "photo_flickr_id": "4712530976", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50242", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ate a lot of cupcakes .", "storylet_id": "251214"}], [{"original_text": "The men are all talking happily.", "album_id": "72157624179145821", "photo_flickr_id": "4711890205", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50243", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the men are all talking happily .", "storylet_id": "251215"}], [{"original_text": "The guests wait for the ceremony to start.", "album_id": "72157624179145821", "photo_flickr_id": "4712530124", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50243", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guests wait for the ceremony to start .", "storylet_id": "251216"}], [{"original_text": "A picture of the excited wedding party.", "album_id": "72157624179145821", "photo_flickr_id": "4712532304", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50243", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a picture of the excited wedding party .", "storylet_id": "251217"}], [{"original_text": "The group is celebrating with food and entertainment.", "album_id": "72157624179145821", "photo_flickr_id": "4711890869", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50243", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the group is celebrating with food and entertainment .", "storylet_id": "251218"}], [{"original_text": "The wedding party has provided cupcakes for all the guests.", "album_id": "72157624179145821", "photo_flickr_id": "4712530976", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50243", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the wedding party has provided cupcakes for all the guests .", "storylet_id": "251219"}], [{"original_text": "Everyone at the conference was very well dressed.", "album_id": "72157624179145821", "photo_flickr_id": "4712530124", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50244", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone at the conference was very well dressed .", "storylet_id": "251220"}], [{"original_text": "The place was filled with cupcakes of all varieties. ", "album_id": "72157624179145821", "photo_flickr_id": "4712530976", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50244", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the place was filled with cupcakes of all varieties .", "storylet_id": "251221"}], [{"original_text": "We finished our conference at Luigi's pizzas. ", "album_id": "72157624179145821", "photo_flickr_id": "4711890869", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50244", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we finished our conference at luigi 's pizzas .", "storylet_id": "251222"}], [{"original_text": "Todd won a black football at the trivia game. ", "album_id": "72157624179145821", "photo_flickr_id": "4712532648", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50244", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] won a black football at the trivia game .", "storylet_id": "251223"}], [{"original_text": "My buds and I have known each other for 5 years. ", "album_id": "72157624179145821", "photo_flickr_id": "4711893869", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50244", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my buds and i have known each other for 5 years .", "storylet_id": "251224"}], [{"original_text": "The bride and groom's parents gathered after the ceremony, for a picture.", "album_id": "987727", "photo_flickr_id": "45183282", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "50245", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride and groom 's parents gathered after the ceremony , for a picture .", "storylet_id": "251225"}], [{"original_text": "Everyone gathered around the bride and groom for a photo to capture the day.", "album_id": "987727", "photo_flickr_id": "45188331", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "50245", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone gathered around the bride and groom for a photo to capture the day .", "storylet_id": "251226"}], [{"original_text": "Before the reception began, the family posed for one last photo.", "album_id": "987727", "photo_flickr_id": "45188334", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "50245", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "before the reception began , the family posed for one last photo .", "storylet_id": "251227"}], [{"original_text": "The bridesmaid was delighted for the new couple, and couldn't wait to head to the reception.", "album_id": "987727", "photo_flickr_id": "45185348", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "50245", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bridesmaid was delighted for the new couple , and could n't wait to head to the reception .", "storylet_id": "251228"}], [{"original_text": "The bride and groom toasted their new marriage in the back of the limo on the way to the reception. They were overjoyed and in love.", "album_id": "987727", "photo_flickr_id": "45185352", "setting": "first-2-pick-and-tell", "worker_id": "KJBUEQNPUUNGSJB", "story_id": "50245", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride and groom toasted their new marriage in the back of the limo on the way to the reception . they were overjoyed and in love .", "storylet_id": "251229"}], [{"original_text": "The bride and groom walked to their limo.", "album_id": "987727", "photo_flickr_id": "45183284", "setting": "first-2-pick-and-tell", "worker_id": "QXKR7ODHOAOCW6O", "story_id": "50246", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride and groom walked to their limo .", "storylet_id": "251230"}], [{"original_text": "Their family and friends watched them get in.", "album_id": "987727", "photo_flickr_id": "45185348", "setting": "first-2-pick-and-tell", "worker_id": "QXKR7ODHOAOCW6O", "story_id": "50246", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their family and friends watched them get in .", "storylet_id": "251231"}], [{"original_text": "As they headed to the limo they grabbed a bottle of champagne.", "album_id": "987727", "photo_flickr_id": "45185349", "setting": "first-2-pick-and-tell", "worker_id": "QXKR7ODHOAOCW6O", "story_id": "50246", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as they headed to the limo they grabbed a bottle of champagne .", "storylet_id": "251232"}], [{"original_text": "They toasted with the champagne once they got in the limo.", "album_id": "987727", "photo_flickr_id": "45185352", "setting": "first-2-pick-and-tell", "worker_id": "QXKR7ODHOAOCW6O", "story_id": "50246", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they toasted with the champagne once they got in the limo .", "storylet_id": "251233"}], [{"original_text": "The bride smiled on her happy day.", "album_id": "987727", "photo_flickr_id": "45186932", "setting": "first-2-pick-and-tell", "worker_id": "QXKR7ODHOAOCW6O", "story_id": "50246", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride smiled on her happy day .", "storylet_id": "251234"}], [{"original_text": "Married couple and family gather and take a picture", "album_id": "987727", "photo_flickr_id": "45183282", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50247", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "married couple and family gather and take a picture", "storylet_id": "251235"}], [{"original_text": "Kids take picture with mom and dad", "album_id": "987727", "photo_flickr_id": "45188331", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50247", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "kids take picture with mom and dad", "storylet_id": "251236"}], [{"original_text": "All the family gather and take picture together", "album_id": "987727", "photo_flickr_id": "45188334", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50247", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the family gather and take picture together", "storylet_id": "251237"}], [{"original_text": "Bride very happy on her wedding day", "album_id": "987727", "photo_flickr_id": "45185348", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50247", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "bride very happy on her wedding day", "storylet_id": "251238"}], [{"original_text": "Bride and Husband get in the car and ready to start their married lifes", "album_id": "987727", "photo_flickr_id": "45185352", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50247", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "bride and husband get in the car and ready to start their married lifes", "storylet_id": "251239"}], [{"original_text": "Last week I attended a wedding for the first time.", "album_id": "987727", "photo_flickr_id": "45183282", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50248", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week i attended a wedding for the first time .", "storylet_id": "251240"}], [{"original_text": "There were a lot of families there.", "album_id": "987727", "photo_flickr_id": "45188331", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50248", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of families there .", "storylet_id": "251241"}], [{"original_text": "They were all taking pictures together.", "album_id": "987727", "photo_flickr_id": "45188334", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50248", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were all taking pictures together .", "storylet_id": "251242"}], [{"original_text": "Everyone was very happy.", "album_id": "987727", "photo_flickr_id": "45185348", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50248", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was very happy .", "storylet_id": "251243"}], [{"original_text": "The bride and groom got to ride in a limo that they rented.", "album_id": "987727", "photo_flickr_id": "45185352", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50248", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride and groom got to ride in a limo that they rented .", "storylet_id": "251244"}], [{"original_text": "What a blessed event our marriage was, with our parents by our side.", "album_id": "987727", "photo_flickr_id": "45183282", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "50249", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what a blessed event our marriage was , with our parents by our side .", "storylet_id": "251245"}], [{"original_text": "We all danced at the reception, though some of the kids were shy to dance. ", "album_id": "987727", "photo_flickr_id": "45188331", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "50249", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all danced at the reception , though some of the kids were shy to dance .", "storylet_id": "251246"}], [{"original_text": "That's the family portrait. Three generations, we are blessed. ", "album_id": "987727", "photo_flickr_id": "45188334", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "50249", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that 's the family portrait . three generations , we are blessed .", "storylet_id": "251247"}], [{"original_text": "That's me. I have great reason to smile!", "album_id": "987727", "photo_flickr_id": "45185348", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "50249", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that 's me . i have great reason to smile !", "storylet_id": "251248"}], [{"original_text": "Champagne, a limo. Next stop, honeymoon. ", "album_id": "987727", "photo_flickr_id": "45185352", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "50249", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "champagne , a limo . next stop , honeymoon .", "storylet_id": "251249"}], [{"original_text": "Gary and Rebecca have their wedding on the sea.", "album_id": "255653", "photo_flickr_id": "10355441", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "50250", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] have their wedding on the sea .", "storylet_id": "251250"}], [{"original_text": "Her dad takes her down the aisle.", "album_id": "255653", "photo_flickr_id": "10355551", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "50250", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her dad takes her down the aisle .", "storylet_id": "251251"}], [{"original_text": "She patiently awaits for the ceremony to begin.", "album_id": "255653", "photo_flickr_id": "10355704", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "50250", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she patiently awaits for the ceremony to begin .", "storylet_id": "251252"}], [{"original_text": "The ceremony ends in the traditional Jewish fashion.", "album_id": "255653", "photo_flickr_id": "10355596", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "50250", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ceremony ends in the traditional jewish fashion .", "storylet_id": "251253"}], [{"original_text": "The newlyweds jump on a boat and head to their honeymoon.", "album_id": "255653", "photo_flickr_id": "10355775", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "50250", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the newlyweds jump on a boat and head to their honeymoon .", "storylet_id": "251254"}], [{"original_text": "A WEDDING IS GETTING READY TO HAPPEN.THERE IS FLOWER GIRLS WAITING", "album_id": "255653", "photo_flickr_id": "10355487", "setting": "first-2-pick-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "50251", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a wedding is getting ready to happen.there is flower girls waiting", "storylet_id": "251255"}], [{"original_text": "THE BRIDE FATHER IS BRING HER OUT", "album_id": "255653", "photo_flickr_id": "10355551", "setting": "first-2-pick-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "50251", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride father is bring her out", "storylet_id": "251256"}], [{"original_text": "THE BRIDE AND GROOM IS GETTING MARRIED ", "album_id": "255653", "photo_flickr_id": "10355576", "setting": "first-2-pick-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "50251", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and groom is getting married", "storylet_id": "251257"}], [{"original_text": "NOW THE BRIDE AND GROOM ARE KISSING EACH OTHER", "album_id": "255653", "photo_flickr_id": "10355620", "setting": "first-2-pick-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "50251", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now the bride and groom are kissing each other", "storylet_id": "251258"}], [{"original_text": "THIS WEDDING IS TAKING PLACE ON A BOAT", "album_id": "255653", "photo_flickr_id": "10355775", "setting": "first-2-pick-and-tell", "worker_id": "ZCG8DQCKMBO5P2D", "story_id": "50251", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this wedding is taking place on a boat", "storylet_id": "251259"}], [{"original_text": "We are so glad that we are finally married now.", "album_id": "255653", "photo_flickr_id": "10355441", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50252", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are so glad that we are finally married now .", "storylet_id": "251260"}], [{"original_text": "There were a lot of people there.", "album_id": "255653", "photo_flickr_id": "10355551", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50252", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people there .", "storylet_id": "251261"}], [{"original_text": "They all sat down to wait for the ceremony to begin.", "album_id": "255653", "photo_flickr_id": "10355704", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50252", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all sat down to wait for the ceremony to begin .", "storylet_id": "251262"}], [{"original_text": "Afterward we had a lot of fun playing wedding games together.", "album_id": "255653", "photo_flickr_id": "10355596", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50252", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we had a lot of fun playing wedding games together .", "storylet_id": "251263"}], [{"original_text": "It was a very nice day for the wedding.", "album_id": "255653", "photo_flickr_id": "10355775", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50252", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a very nice day for the wedding .", "storylet_id": "251264"}], [{"original_text": "It was the day for Gary and Rebecca to tie the knot!", "album_id": "255653", "photo_flickr_id": "10355441", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50253", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the day for [male] and [female] to tie the knot !", "storylet_id": "251265"}], [{"original_text": "As Rebecca was walked down the isle by her father she started to rethink things.", "album_id": "255653", "photo_flickr_id": "10355551", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50253", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as [female] was walked down the isle by her father she started to rethink things .", "storylet_id": "251266"}], [{"original_text": "She nervously looked at the exits plotting her escape.", "album_id": "255653", "photo_flickr_id": "10355704", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50253", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she nervously looked at the exits plotting her escape .", "storylet_id": "251267"}], [{"original_text": "When everyones heads were turned she made a dash.", "album_id": "255653", "photo_flickr_id": "10355596", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50253", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when everyones heads were turned she made a dash .", "storylet_id": "251268"}], [{"original_text": "She escaped on a small boat to run for her independence.", "album_id": "255653", "photo_flickr_id": "10355775", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50253", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she escaped on a small boat to run for her independence .", "storylet_id": "251269"}], [{"original_text": "Such a beautiful wedding display.", "album_id": "255653", "photo_flickr_id": "10355441", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "50254", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "such a beautiful wedding display .", "storylet_id": "251270"}], [{"original_text": "The beautiful bride and her father walking down the isle.", "album_id": "255653", "photo_flickr_id": "10355551", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "50254", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the beautiful bride and her father walking down the isle .", "storylet_id": "251271"}], [{"original_text": "Saying their vows to each other.", "album_id": "255653", "photo_flickr_id": "10355704", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "50254", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "saying their vows to each other .", "storylet_id": "251272"}], [{"original_text": "Crushing of the glass ceremony.", "album_id": "255653", "photo_flickr_id": "10355596", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "50254", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "crushing of the glass ceremony .", "storylet_id": "251273"}], [{"original_text": "The Bride and Groom leaving on their little boat!", "album_id": "255653", "photo_flickr_id": "10355775", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "50254", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride and groom leaving on their little boat !", "storylet_id": "251274"}], [{"original_text": "The bride doing her hair for her wedding day. ", "album_id": "649437", "photo_flickr_id": "28810629", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50255", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride doing her hair for her wedding day .", "storylet_id": "251275"}], [{"original_text": "The bride wedding bouquet in green, pink roses and baby blue hydrangeas. ", "album_id": "649437", "photo_flickr_id": "28810805", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50255", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride wedding bouquet in green , pink roses and baby blue hydrangeas .", "storylet_id": "251276"}], [{"original_text": "The bride showing her shiny wedding band.", "album_id": "649437", "photo_flickr_id": "28811631", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50255", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride showing her shiny wedding band .", "storylet_id": "251277"}], [{"original_text": "The bride's grandmother and the grooms grandmother. ", "album_id": "649437", "photo_flickr_id": "28811330", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50255", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride 's grandmother and the grooms grandmother .", "storylet_id": "251278"}], [{"original_text": "The groom and his best friend having a good time on the dance floor. ", "album_id": "649437", "photo_flickr_id": "28811604", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50255", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the groom and his best friend having a good time on the dance floor .", "storylet_id": "251279"}], [{"original_text": "She was getting ready for her big day finally. ", "album_id": "649437", "photo_flickr_id": "28810520", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "50256", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she was getting ready for her big day finally .", "storylet_id": "251280"}], [{"original_text": "There was a lot of preparation to be done. ", "album_id": "649437", "photo_flickr_id": "28810559", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "50256", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of preparation to be done .", "storylet_id": "251281"}], [{"original_text": "She could not have been any happier. ", "album_id": "649437", "photo_flickr_id": "28810746", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "50256", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she could not have been any happier .", "storylet_id": "251282"}], [{"original_text": "The flowers arrived and were perfect. ", "album_id": "649437", "photo_flickr_id": "28810859", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "50256", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the flowers arrived and were perfect .", "storylet_id": "251283"}], [{"original_text": "She liked the purple ones the best. ", "album_id": "649437", "photo_flickr_id": "28810909", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "50256", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she liked the purple ones the best .", "storylet_id": "251284"}], [{"original_text": "Last week was my wedding.", "album_id": "649437", "photo_flickr_id": "28810629", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50257", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week was my wedding .", "storylet_id": "251285"}], [{"original_text": "We all bought the biggest flower arrangements.", "album_id": "649437", "photo_flickr_id": "28810805", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50257", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all bought the biggest flower arrangements .", "storylet_id": "251286"}], [{"original_text": "I love how big my ring is.", "album_id": "649437", "photo_flickr_id": "28811631", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50257", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i love how big my ring is .", "storylet_id": "251287"}], [{"original_text": "All of my family came to celebrate.", "album_id": "649437", "photo_flickr_id": "28811330", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50257", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of my family came to celebrate .", "storylet_id": "251288"}], [{"original_text": "Some of the staff were goofing off.", "album_id": "649437", "photo_flickr_id": "28811604", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50257", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the staff were goofing off .", "storylet_id": "251289"}], [{"original_text": "Amy never thought that she would get married.", "album_id": "649437", "photo_flickr_id": "28810629", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50258", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] never thought that she would get married .", "storylet_id": "251290"}], [{"original_text": "It started with Mike bringing her some flowers.", "album_id": "649437", "photo_flickr_id": "28810805", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50258", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it started with [male] bringing her some flowers .", "storylet_id": "251291"}], [{"original_text": "It then evolved into a ring and proposal!", "album_id": "649437", "photo_flickr_id": "28811631", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50258", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it then evolved into a ring and proposal !", "storylet_id": "251292"}], [{"original_text": "her grandma's were just grateful that she wouldn't grow old and live with 10 cats.", "album_id": "649437", "photo_flickr_id": "28811330", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50258", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her grandma 's were just grateful that she would n't grow old and live with 10 cats .", "storylet_id": "251293"}], [{"original_text": "And her cousins were excited to finally have a chance to party.", "album_id": "649437", "photo_flickr_id": "28811604", "setting": "last-3-pick-old-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50258", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and her cousins were excited to finally have a chance to party .", "storylet_id": "251294"}], [{"original_text": "I did my daughter's hair today for her wedding.", "album_id": "649437", "photo_flickr_id": "28810629", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50259", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i did my daughter 's hair today for her wedding .", "storylet_id": "251295"}], [{"original_text": "The bouquet looked more amazing in person.", "album_id": "649437", "photo_flickr_id": "28810805", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50259", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bouquet looked more amazing in person .", "storylet_id": "251296"}], [{"original_text": "The ring was sparkling in every beam of light.", "album_id": "649437", "photo_flickr_id": "28811631", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50259", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ring was sparkling in every beam of light .", "storylet_id": "251297"}], [{"original_text": "Phyllis and Margot enjoyed the gourmet food.", "album_id": "649437", "photo_flickr_id": "28811330", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50259", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and margot enjoyed the gourmet food .", "storylet_id": "251298"}], [{"original_text": "Pete got too drunk and put a tie around his head. ", "album_id": "649437", "photo_flickr_id": "28811604", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50259", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] got too drunk and put a tie around his head .", "storylet_id": "251299"}], [{"original_text": "Saying our vows for our wedding day.", "album_id": "1023318", "photo_flickr_id": "46925056", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50260", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "saying our vows for our wedding day .", "storylet_id": "251300"}], [{"original_text": "I do, I do! Almost time to be Mrs.", "album_id": "1023318", "photo_flickr_id": "46925225", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50260", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i do , i do ! almost time to be mrs .", "storylet_id": "251301"}], [{"original_text": "Yes, I get to kiss the bride.", "album_id": "1023318", "photo_flickr_id": "46924113", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50260", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "yes , i get to kiss the bride .", "storylet_id": "251302"}], [{"original_text": "Nervously walking down the aisle as Mrs.", "album_id": "1023318", "photo_flickr_id": "46924150", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50260", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "nervously walking down the aisle as mrs .", "storylet_id": "251303"}], [{"original_text": "Intruducing Mr. and Mrs.", "album_id": "1023318", "photo_flickr_id": "46924177", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50260", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "intruducing mr. and mrs .", "storylet_id": "251304"}], [{"original_text": "We were in New York for our friends wedding day. ", "album_id": "1023318", "photo_flickr_id": "46925150", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "50261", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were in location location for our friends wedding day .", "storylet_id": "251305"}], [{"original_text": "We stopped at a coffee shop for a quick drink before we headed to the wedding. ", "album_id": "1023318", "photo_flickr_id": "46925187", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "50261", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped at a coffee shop for a quick drink before we headed to the wedding .", "storylet_id": "251306"}], [{"original_text": "The bride and groom looked absolutely beautiful as they read their vows.", "album_id": "1023318", "photo_flickr_id": "46925225", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "50261", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and groom looked absolutely beautiful as they read their vows .", "storylet_id": "251307"}], [{"original_text": "The newly wed couple cut the cake and served it to everyone. ", "album_id": "1023318", "photo_flickr_id": "46924233", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "50261", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the newly wed couple cut the cake and served it to everyone .", "storylet_id": "251308"}], [{"original_text": "We had a great time at the wedding! Everyone was happy that everything went great. ", "album_id": "1023318", "photo_flickr_id": "46924346", "setting": "first-2-pick-and-tell", "worker_id": "Y6ZNXABP31FUVQ8", "story_id": "50261", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time at the wedding ! everyone was happy that everything went great .", "storylet_id": "251309"}], [{"original_text": "I was so glad to be up there saying my vows.", "album_id": "1023318", "photo_flickr_id": "46925056", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50262", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was so glad to be up there saying my vows .", "storylet_id": "251310"}], [{"original_text": "We had been waiting for a long time until we finally decided to get married.", "album_id": "1023318", "photo_flickr_id": "46925225", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50262", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had been waiting for a long time until we finally decided to get married .", "storylet_id": "251311"}], [{"original_text": "I'm glad we finally did it.", "album_id": "1023318", "photo_flickr_id": "46924113", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50262", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i 'm glad we finally did it .", "storylet_id": "251312"}], [{"original_text": "Afterward we made our way out of the church.", "album_id": "1023318", "photo_flickr_id": "46924150", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50262", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we made our way out of the church .", "storylet_id": "251313"}], [{"original_text": "We spent a few minutes taking photos outside.", "album_id": "1023318", "photo_flickr_id": "46924177", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50262", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we spent a few minutes taking photos outside .", "storylet_id": "251314"}], [{"original_text": "I went to my friends wedding.", "album_id": "1023318", "photo_flickr_id": "46925056", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50263", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to my friends wedding .", "storylet_id": "251315"}], [{"original_text": "It was held at a beautiful Catholic Church.", "album_id": "1023318", "photo_flickr_id": "46925225", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50263", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was held at a beautiful organization organization .", "storylet_id": "251316"}], [{"original_text": "The bride looked like a princess.", "album_id": "1023318", "photo_flickr_id": "46924113", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50263", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride looked like a princess .", "storylet_id": "251317"}], [{"original_text": "The happy couple walked down the aisle. ", "album_id": "1023318", "photo_flickr_id": "46924150", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50263", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the happy couple walked down the aisle .", "storylet_id": "251318"}], [{"original_text": "The bride took pictures with the bridal party.", "album_id": "1023318", "photo_flickr_id": "46924177", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50263", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride took pictures with the bridal party .", "storylet_id": "251319"}], [{"original_text": "My college roommate's wedding was held at a very fancy hotel.", "album_id": "1023318", "photo_flickr_id": "46925150", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50264", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my college roommate 's wedding was held at a very fancy hotel .", "storylet_id": "251320"}], [{"original_text": "You should have seen the breakfast cappechinos there!", "album_id": "1023318", "photo_flickr_id": "46925187", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50264", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you should have seen the breakfast cappechinos there !", "storylet_id": "251321"}], [{"original_text": "The wedding was beautiful. Laura and Ben looked so amazing.", "album_id": "1023318", "photo_flickr_id": "46925225", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50264", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the wedding was beautiful . [female] and [male] looked so amazing .", "storylet_id": "251322"}], [{"original_text": "The cake was a work of art. Both of them just looked so happy.", "album_id": "1023318", "photo_flickr_id": "46924233", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50264", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cake was a work of art . both of them just looked so happy .", "storylet_id": "251323"}], [{"original_text": "Watching them dance, it felt like the start of a real fairy tale.", "album_id": "1023318", "photo_flickr_id": "46924346", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50264", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "watching them dance , it felt like the start of a real fairy tale .", "storylet_id": "251324"}], [{"original_text": "Cindy's family and friends threw her a baby shower yesterday.", "album_id": "72157600049671824", "photo_flickr_id": "15983377", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50265", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] 's family and friends threw her a baby shower yesterday .", "storylet_id": "251325"}], [{"original_text": "They all gathered to celebrate the new baby.", "album_id": "72157600049671824", "photo_flickr_id": "15983392", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50265", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all gathered to celebrate the new baby .", "storylet_id": "251326"}], [{"original_text": "Cindy and her husband were so happy to have them there.", "album_id": "72157600049671824", "photo_flickr_id": "15983393", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50265", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] and her husband were so happy to have them there .", "storylet_id": "251327"}], [{"original_text": "They had a huge cake.", "album_id": "72157600049671824", "photo_flickr_id": "15983405", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50265", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had a huge cake .", "storylet_id": "251328"}], [{"original_text": "At the end of the party, Cindy got to open all the baby gifts.", "album_id": "72157600049671824", "photo_flickr_id": "15983413", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50265", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the party , [female] got to open all the baby gifts .", "storylet_id": "251329"}], [{"original_text": "The wedding day had finally arrived, and the weather was beautiful.", "album_id": "72157600049671824", "photo_flickr_id": "15983377", "setting": "first-2-pick-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "50266", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding day had finally arrived , and the weather was beautiful .", "storylet_id": "251330"}], [{"original_text": "The bride didn't want to wear a traditional wedding gown.", "album_id": "72157600049671824", "photo_flickr_id": "15983381", "setting": "first-2-pick-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "50266", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride did n't want to wear a traditional wedding gown .", "storylet_id": "251331"}], [{"original_text": "A nice group photo of the family is taken after the ceremony.", "album_id": "72157600049671824", "photo_flickr_id": "15983392", "setting": "first-2-pick-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "50266", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a nice group photo of the family is taken after the ceremony .", "storylet_id": "251332"}], [{"original_text": "\"Here, enjoy some of our wedding cake!\"", "album_id": "72157600049671824", "photo_flickr_id": "15983406", "setting": "first-2-pick-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "50266", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "`` here , enjoy some of our wedding cake ! ''", "storylet_id": "251333"}], [{"original_text": "A toast to many years of happiness for the new couple.", "album_id": "72157600049671824", "photo_flickr_id": "15983409", "setting": "first-2-pick-and-tell", "worker_id": "K6OICR9UK3HAK32", "story_id": "50266", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a toast to many years of happiness for the new couple .", "storylet_id": "251334"}], [{"original_text": "I went to see my friend's get married yesterday.", "album_id": "72157600049671824", "photo_flickr_id": "15983377", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50267", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to see my friend 's get married yesterday .", "storylet_id": "251335"}], [{"original_text": "They had been together for a long time.", "album_id": "72157600049671824", "photo_flickr_id": "15983392", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50267", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had been together for a long time .", "storylet_id": "251336"}], [{"original_text": "So they were very excited to be finally getting married.", "album_id": "72157600049671824", "photo_flickr_id": "15983393", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50267", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so they were very excited to be finally getting married .", "storylet_id": "251337"}], [{"original_text": "They had a beautiful cake.", "album_id": "72157600049671824", "photo_flickr_id": "15983405", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50267", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had a beautiful cake .", "storylet_id": "251338"}], [{"original_text": "Everyone had shown up to celebrate.", "album_id": "72157600049671824", "photo_flickr_id": "15983413", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50267", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had shown up to celebrate .", "storylet_id": "251339"}], [{"original_text": "The celebration began with Todd in a blue shirt.", "album_id": "72157600049671824", "photo_flickr_id": "15983377", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50268", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the celebration began with [male] in a blue shirt .", "storylet_id": "251340"}], [{"original_text": "Marissa put on her favorite shirt to celebrate.", "album_id": "72157600049671824", "photo_flickr_id": "15983381", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50268", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] put on her favorite shirt to celebrate .", "storylet_id": "251341"}], [{"original_text": "The weather made a group picture very tolerable.", "album_id": "72157600049671824", "photo_flickr_id": "15983392", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50268", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the weather made a group picture very tolerable .", "storylet_id": "251342"}], [{"original_text": "Stuffing food in Marissa's mouth is a hobby of Todd.", "album_id": "72157600049671824", "photo_flickr_id": "15983406", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50268", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "stuffing food in [female] 's mouth is a hobby of [male] .", "storylet_id": "251343"}], [{"original_text": "The couple consented and filled each other with glasses of wine. ", "album_id": "72157600049671824", "photo_flickr_id": "15983409", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50268", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the couple consented and filled each other with glasses of wine .", "storylet_id": "251344"}], [{"original_text": "Timmy and Betsy's wedding was a very casual affair. After all, it was a third wedding for both of them.", "album_id": "72157600049671824", "photo_flickr_id": "15983377", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50269", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] 's wedding was a very casual affair . after all , it was a third wedding for both of them .", "storylet_id": "251345"}], [{"original_text": "They dressed up some, but not a lot!", "album_id": "72157600049671824", "photo_flickr_id": "15983392", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50269", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they dressed up some , but not a lot !", "storylet_id": "251346"}], [{"original_text": "It was held in Betsy's back yard, with craft store paper decorations.", "album_id": "72157600049671824", "photo_flickr_id": "15983393", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50269", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was held in [female] 's back yard , with craft store paper decorations .", "storylet_id": "251347"}], [{"original_text": "The cake was bought at the local grocery store.", "album_id": "72157600049671824", "photo_flickr_id": "15983405", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50269", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cake was bought at the local grocery store .", "storylet_id": "251348"}], [{"original_text": "The dress code was very, very loose. I've never been to a wedding with people in shorts and tie-died tops!", "album_id": "72157600049671824", "photo_flickr_id": "15983413", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50269", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dress code was very , very loose . i 've never been to a wedding with people in shorts and tie-died tops !", "storylet_id": "251349"}], [{"original_text": "it was the wedding of a lifetime", "album_id": "72157624110756682", "photo_flickr_id": "4628644650", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50270", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the wedding of a lifetime", "storylet_id": "251350"}], [{"original_text": "the beautiful couple had waited for this day", "album_id": "72157624110756682", "photo_flickr_id": "4840128300", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50270", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the beautiful couple had waited for this day", "storylet_id": "251351"}], [{"original_text": "the friends of the groom took a picture", "album_id": "72157624110756682", "photo_flickr_id": "4822716855", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50270", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the friends of the groom took a picture", "storylet_id": "251352"}], [{"original_text": "and then all the people took one together", "album_id": "72157624110756682", "photo_flickr_id": "4840128340", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50270", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and then all the people took one together", "storylet_id": "251353"}], [{"original_text": "it was their special day indeed ", "album_id": "72157624110756682", "photo_flickr_id": "4634467995", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50270", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was their special day indeed", "storylet_id": "251354"}], [{"original_text": "In order to hallucinate a wedding, I bought some LSD from these two guys.", "album_id": "72157624110756682", "photo_flickr_id": "4628644650", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "50271", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in order to hallucinate a wedding , i bought some lsd from these two guys .", "storylet_id": "251355"}], [{"original_text": "It wasn't long before we started tripping, I thought I was dressed up to marry a complete stranger.", "album_id": "72157624110756682", "photo_flickr_id": "4840128300", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "50271", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was n't long before we started tripping , i thought i was dressed up to marry a complete stranger .", "storylet_id": "251356"}], [{"original_text": "All my friends appeared out of nowhere, their faces were so strange.", "album_id": "72157624110756682", "photo_flickr_id": "4822716855", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "50271", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all my friends appeared out of nowhere , their faces were so strange .", "storylet_id": "251357"}], [{"original_text": "I thought I could hide with my imaginary bride, but for some reason I thought someone was watching us wherever we went.", "album_id": "72157624110756682", "photo_flickr_id": "4839516457", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "50271", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i thought i could hide with my imaginary bride , but for some reason i thought someone was watching us wherever we went .", "storylet_id": "251358"}], [{"original_text": "Then I flew away with my random bride, past the clouds, out of earth's orbit, and into outer space. ", "album_id": "72157624110756682", "photo_flickr_id": "4634467995", "setting": "first-2-pick-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "50271", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then i flew away with my random bride , past the clouds , out of earth 's orbit , and into outer space .", "storylet_id": "251359"}], [{"original_text": "Chester and I crashed a wedding today.", "album_id": "72157624110756682", "photo_flickr_id": "4628644650", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50272", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and i crashed a wedding today .", "storylet_id": "251360"}], [{"original_text": "We caught the bride assaulting this man, reason is still unknown.", "album_id": "72157624110756682", "photo_flickr_id": "4840128300", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50272", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we caught the bride assaulting this man , reason is still unknown .", "storylet_id": "251361"}], [{"original_text": "These guys were all really scared of us, we're not sure why.", "album_id": "72157624110756682", "photo_flickr_id": "4822716855", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50272", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these guys were all really scared of us , we 're not sure why .", "storylet_id": "251362"}], [{"original_text": "The photographer asked us to hold his camera for a moment so we snapped this picture.", "album_id": "72157624110756682", "photo_flickr_id": "4840128340", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50272", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the photographer asked us to hold his camera for a moment so we snapped this picture .", "storylet_id": "251363"}], [{"original_text": "I guess the bride made up with that man she was assaulting earlier.", "album_id": "72157624110756682", "photo_flickr_id": "4634467995", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50272", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i guess the bride made up with that man she was assaulting earlier .", "storylet_id": "251364"}], [{"original_text": "Two of my friends sent a video with funny faces to congratulate us on the wedding they couldn't attend.", "album_id": "72157624110756682", "photo_flickr_id": "4628644650", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "50273", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two of my friends sent a video with funny faces to congratulate us on the wedding they could n't attend .", "storylet_id": "251365"}], [{"original_text": "We decided to make silly faces our wedding them.", "album_id": "72157624110756682", "photo_flickr_id": "4840128300", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "50273", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided to make silly faces our wedding them .", "storylet_id": "251366"}], [{"original_text": "All the guests put on their funniest faces.", "album_id": "72157624110756682", "photo_flickr_id": "4822716855", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "50273", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the guests put on their funniest faces .", "storylet_id": "251367"}], [{"original_text": "We took a load of pictures of the wedding.", "album_id": "72157624110756682", "photo_flickr_id": "4840128340", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "50273", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a load of pictures of the wedding .", "storylet_id": "251368"}], [{"original_text": "It was so much fun!", "album_id": "72157624110756682", "photo_flickr_id": "4634467995", "setting": "last-3-pick-old-and-tell", "worker_id": "1UT2M0YVJR2249M", "story_id": "50273", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was so much fun !", "storylet_id": "251369"}], [{"original_text": "I went to the wedding yesterday.", "album_id": "72157624110756682", "photo_flickr_id": "4628644650", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50274", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the wedding yesterday .", "storylet_id": "251370"}], [{"original_text": "It was very silly.", "album_id": "72157624110756682", "photo_flickr_id": "4840128300", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50274", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was very silly .", "storylet_id": "251371"}], [{"original_text": "Everyone was making silly faces.", "album_id": "72157624110756682", "photo_flickr_id": "4822716855", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50274", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was making silly faces .", "storylet_id": "251372"}], [{"original_text": "We had a great time.", "album_id": "72157624110756682", "photo_flickr_id": "4840128340", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50274", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a great time .", "storylet_id": "251373"}], [{"original_text": "The new couple was very excited.", "album_id": "72157624110756682", "photo_flickr_id": "4634467995", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50274", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the new couple was very excited .", "storylet_id": "251374"}], [{"original_text": "The wedding guests listening to the vows. ", "album_id": "10664", "photo_flickr_id": "439759", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50275", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding guests listening to the vows .", "storylet_id": "251375"}], [{"original_text": "Bride and groom exchanging rings. ", "album_id": "10664", "photo_flickr_id": "439790", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50275", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "bride and groom exchanging rings .", "storylet_id": "251376"}], [{"original_text": "The bride putting the ring int he grooms finer. ", "album_id": "10664", "photo_flickr_id": "439765", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50275", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride putting the ring int he grooms finer .", "storylet_id": "251377"}], [{"original_text": "Bride and groom first kiss as married couples.", "album_id": "10664", "photo_flickr_id": "439796", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50275", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "bride and groom first kiss as married couples .", "storylet_id": "251378"}], [{"original_text": "The pastor presenting them as husband and wife for the first time.", "album_id": "10664", "photo_flickr_id": "439755", "setting": "first-2-pick-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50275", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the pastor presenting them as husband and wife for the first time .", "storylet_id": "251379"}], [{"original_text": "There was a wedding ceremony outside of manhattan. ", "album_id": "10664", "photo_flickr_id": "439755", "setting": "first-2-pick-and-tell", "worker_id": "ZH4GLMJRO3MYXZ1", "story_id": "50276", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a wedding ceremony outside of manhattan .", "storylet_id": "251380"}], [{"original_text": "A small number of the bride and groom's family decided to come along. ", "album_id": "10664", "photo_flickr_id": "439759", "setting": "first-2-pick-and-tell", "worker_id": "ZH4GLMJRO3MYXZ1", "story_id": "50276", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a small number of the bride and groom 's family decided to come along .", "storylet_id": "251381"}], [{"original_text": "They said their vows with a gorgeous view of the city in the background. ", "album_id": "10664", "photo_flickr_id": "439762", "setting": "first-2-pick-and-tell", "worker_id": "ZH4GLMJRO3MYXZ1", "story_id": "50276", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they said their vows with a gorgeous view of the city in the background .", "storylet_id": "251382"}], [{"original_text": "Then they exchanged their rings. ", "album_id": "10664", "photo_flickr_id": "439775", "setting": "first-2-pick-and-tell", "worker_id": "ZH4GLMJRO3MYXZ1", "story_id": "50276", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they exchanged their rings .", "storylet_id": "251383"}], [{"original_text": "The couple were finally married!", "album_id": "10664", "photo_flickr_id": "439796", "setting": "first-2-pick-and-tell", "worker_id": "ZH4GLMJRO3MYXZ1", "story_id": "50276", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the couple were finally married !", "storylet_id": "251384"}], [{"original_text": "Everyone sat in anticipation until the wedding started.", "album_id": "10664", "photo_flickr_id": "439759", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "50277", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone sat in anticipation until the wedding started .", "storylet_id": "251385"}], [{"original_text": "The bride and the groom looked very nervous at first.", "album_id": "10664", "photo_flickr_id": "439790", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "50277", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and the groom looked very nervous at first .", "storylet_id": "251386"}], [{"original_text": "However, they quickly became relaxed.", "album_id": "10664", "photo_flickr_id": "439765", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "50277", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however , they quickly became relaxed .", "storylet_id": "251387"}], [{"original_text": "Their kiss was magical as they began their lives together.", "album_id": "10664", "photo_flickr_id": "439796", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "50277", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their kiss was magical as they began their lives together .", "storylet_id": "251388"}], [{"original_text": "There was so much joy that day, everyone was so happy.", "album_id": "10664", "photo_flickr_id": "439755", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "50277", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was so much joy that day , everyone was so happy .", "storylet_id": "251389"}], [{"original_text": "Many people came to the wedding yesterday.", "album_id": "10664", "photo_flickr_id": "439759", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50278", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people came to the wedding yesterday .", "storylet_id": "251390"}], [{"original_text": "The couple was very excited to finally be married.", "album_id": "10664", "photo_flickr_id": "439790", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50278", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the couple was very excited to finally be married .", "storylet_id": "251391"}], [{"original_text": "It was a beautiful moment.", "album_id": "10664", "photo_flickr_id": "439765", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50278", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a beautiful moment .", "storylet_id": "251392"}], [{"original_text": "They had chosen a lovely location at the pier.", "album_id": "10664", "photo_flickr_id": "439796", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50278", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had chosen a lovely location at the pier .", "storylet_id": "251393"}], [{"original_text": "Everyone had a great time.", "album_id": "10664", "photo_flickr_id": "439755", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50278", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time .", "storylet_id": "251394"}], [{"original_text": "All kind of family came for the celebration.", "album_id": "10664", "photo_flickr_id": "439759", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "50279", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all kind of family came for the celebration .", "storylet_id": "251395"}], [{"original_text": "The couple was renewing their vows.", "album_id": "10664", "photo_flickr_id": "439790", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "50279", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the couple was renewing their vows .", "storylet_id": "251396"}], [{"original_text": "It was a very special day.", "album_id": "10664", "photo_flickr_id": "439765", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "50279", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a very special day .", "storylet_id": "251397"}], [{"original_text": "They couple kissed and made it official.", "album_id": "10664", "photo_flickr_id": "439796", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "50279", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they couple kissed and made it official .", "storylet_id": "251398"}], [{"original_text": "The ceremony was very beautiful.", "album_id": "10664", "photo_flickr_id": "439755", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "50279", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ceremony was very beautiful .", "storylet_id": "251399"}], [{"original_text": "For as long as I can remember, I've always known that I would get married by the sea...", "album_id": "194658", "photo_flickr_id": "7799368", "setting": "first-2-pick-and-tell", "worker_id": "36TOHSTA8E55JUR", "story_id": "50280", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for as long as i can remember , i 've always known that i would get married by the sea ...", "storylet_id": "251400"}], [{"original_text": "and that my best friend in the world, Sparky, would be in the front row cheering me on.", "album_id": "194658", "photo_flickr_id": "7797761", "setting": "first-2-pick-and-tell", "worker_id": "36TOHSTA8E55JUR", "story_id": "50280", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and that my best friend in the world , sparky , would be in the front row cheering me on .", "storylet_id": "251401"}], [{"original_text": "The ceremony was right out of a fairy tale; only better.", "album_id": "194658", "photo_flickr_id": "7797940", "setting": "first-2-pick-and-tell", "worker_id": "36TOHSTA8E55JUR", "story_id": "50280", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ceremony was right out of a fairy tale ; only better .", "storylet_id": "251402"}], [{"original_text": "As you can see, I'm really in love with my new husband, Francis.", "album_id": "194658", "photo_flickr_id": "7798169", "setting": "first-2-pick-and-tell", "worker_id": "36TOHSTA8E55JUR", "story_id": "50280", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as you can see , i 'm really in love with my new husband , [male] .", "storylet_id": "251403"}], [{"original_text": "If our marriage turns out as good as this wedding cake, we've got a wonderful life ahead of us!!", "album_id": "194658", "photo_flickr_id": "7798491", "setting": "first-2-pick-and-tell", "worker_id": "36TOHSTA8E55JUR", "story_id": "50280", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "if our marriage turns out as good as this wedding cake , we 've got a wonderful life ahead of us ! !", "storylet_id": "251404"}], [{"original_text": "We are now Mr. and Mrs. Shall we dance?", "album_id": "194658", "photo_flickr_id": "7798080", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50281", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are now mr. and mrs. shall we dance ?", "storylet_id": "251405"}], [{"original_text": "My new husband dances so divinely ", "album_id": "194658", "photo_flickr_id": "7798097", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50281", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my new husband dances so divinely", "storylet_id": "251406"}], [{"original_text": "Kissing is fun!", "album_id": "194658", "photo_flickr_id": "7798169", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50281", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "kissing is fun !", "storylet_id": "251407"}], [{"original_text": "Mr. and Mrs. cutting the cake. ", "album_id": "194658", "photo_flickr_id": "7798491", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50281", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mr. and mrs. cutting the cake .", "storylet_id": "251408"}], [{"original_text": "Here are some of our guest, thank all of them for coming.", "album_id": "194658", "photo_flickr_id": "7798575", "setting": "first-2-pick-and-tell", "worker_id": "RIPWCPVZWJTQDR5", "story_id": "50281", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here are some of our guest , thank all of them for coming .", "storylet_id": "251409"}], [{"original_text": "The view of the water at the wedding was incredible.", "album_id": "194658", "photo_flickr_id": "7799368", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "50282", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the view of the water at the wedding was incredible .", "storylet_id": "251410"}], [{"original_text": "There were stuffed animals sitting on the children's seats.", "album_id": "194658", "photo_flickr_id": "7797761", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "50282", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were stuffed animals sitting on the children 's seats .", "storylet_id": "251411"}], [{"original_text": "The ceremony itself was beautiful to watch.", "album_id": "194658", "photo_flickr_id": "7797940", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "50282", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ceremony itself was beautiful to watch .", "storylet_id": "251412"}], [{"original_text": "The bride and groom looked so happy at the reception.", "album_id": "194658", "photo_flickr_id": "7798169", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "50282", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride and groom looked so happy at the reception .", "storylet_id": "251413"}], [{"original_text": "They beamed with pride as they cut the cake together.", "album_id": "194658", "photo_flickr_id": "7798491", "setting": "last-3-pick-old-and-tell", "worker_id": "2RBJH8SOSTXJWWZ", "story_id": "50282", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they beamed with pride as they cut the cake together .", "storylet_id": "251414"}], [{"original_text": "We had a great time at the wedding last weekend.", "album_id": "194658", "photo_flickr_id": "7799368", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50283", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great time at the wedding last weekend .", "storylet_id": "251415"}], [{"original_text": "There were a lot of people there.", "album_id": "194658", "photo_flickr_id": "7797761", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50283", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people there .", "storylet_id": "251416"}], [{"original_text": "They chose a beautiful cliff location for the ceremony.", "album_id": "194658", "photo_flickr_id": "7797940", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50283", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they chose a beautiful cliff location for the ceremony .", "storylet_id": "251417"}], [{"original_text": "The couple was very happy to finally be married.", "album_id": "194658", "photo_flickr_id": "7798169", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50283", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple was very happy to finally be married .", "storylet_id": "251418"}], [{"original_text": "Afterward the cut and served the beautiful wedding cake.", "album_id": "194658", "photo_flickr_id": "7798491", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50283", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward the cut and served the beautiful wedding cake .", "storylet_id": "251419"}], [{"original_text": "The view of where my friend is getting married.", "album_id": "194658", "photo_flickr_id": "7799368", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "50284", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the view of where my friend is getting married .", "storylet_id": "251420"}], [{"original_text": "The cute guest of honor!", "album_id": "194658", "photo_flickr_id": "7797761", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "50284", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cute guest of honor !", "storylet_id": "251421"}], [{"original_text": "Vows being exchanged about how they love each other.", "album_id": "194658", "photo_flickr_id": "7797940", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "50284", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "vows being exchanged about how they love each other .", "storylet_id": "251422"}], [{"original_text": "First dance as husband and wife!", "album_id": "194658", "photo_flickr_id": "7798169", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "50284", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "first dance as husband and wife !", "storylet_id": "251423"}], [{"original_text": "Cutting of the cake! Time to eat!", "album_id": "194658", "photo_flickr_id": "7798491", "setting": "last-3-pick-old-and-tell", "worker_id": "C6XJ69Y79LL2WUZ", "story_id": "50284", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "cutting of the cake ! time to eat !", "storylet_id": "251424"}], [{"original_text": "The couple posing with the brides father.", "album_id": "22059", "photo_flickr_id": "860172", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "50285", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple posing with the brides father .", "storylet_id": "251425"}], [{"original_text": "We then got a nice photo of the couple together.", "album_id": "22059", "photo_flickr_id": "860175", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "50285", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we then got a nice photo of the couple together .", "storylet_id": "251426"}], [{"original_text": "Here is the new married couple enjoying their first kiss as a married couple.", "album_id": "22059", "photo_flickr_id": "860182", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "50285", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is the new married couple enjoying their first kiss as a married couple .", "storylet_id": "251427"}], [{"original_text": "You could see the desire as they looked into each others eyes.", "album_id": "22059", "photo_flickr_id": "860189", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "50285", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you could see the desire as they looked into each others eyes .", "storylet_id": "251428"}], [{"original_text": "A wonderful picture of their wedding rings.", "album_id": "22059", "photo_flickr_id": "860191", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "50285", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a wonderful picture of their wedding rings .", "storylet_id": "251429"}], [{"original_text": "The wedding day was a success. ", "album_id": "22059", "photo_flickr_id": "860172", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "50286", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding day was a success .", "storylet_id": "251430"}], [{"original_text": "The bride looked beautiful. ", "album_id": "22059", "photo_flickr_id": "860174", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "50286", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride looked beautiful .", "storylet_id": "251431"}], [{"original_text": "They were both so very happy together. ", "album_id": "22059", "photo_flickr_id": "860175", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "50286", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were both so very happy together .", "storylet_id": "251432"}], [{"original_text": "The flower colors looked just perfect with her dress. ", "album_id": "22059", "photo_flickr_id": "860178", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "50286", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the flower colors looked just perfect with her dress .", "storylet_id": "251433"}], [{"original_text": "They make a cute couple. ", "album_id": "22059", "photo_flickr_id": "860182", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "50286", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they make a cute couple .", "storylet_id": "251434"}], [{"original_text": "It was the couple's wedding day.", "album_id": "22059", "photo_flickr_id": "860172", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "50287", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the couple 's wedding day .", "storylet_id": "251435"}], [{"original_text": "They were happy to finally tie the knot.", "album_id": "22059", "photo_flickr_id": "860175", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "50287", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were happy to finally tie the knot .", "storylet_id": "251436"}], [{"original_text": "The crowd cheered as they shared their first kiss.", "album_id": "22059", "photo_flickr_id": "860182", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "50287", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowd cheered as they shared their first kiss .", "storylet_id": "251437"}], [{"original_text": "They stopped for a photoshoot outside of the house.", "album_id": "22059", "photo_flickr_id": "860189", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "50287", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they stopped for a photoshoot outside of the house .", "storylet_id": "251438"}], [{"original_text": "Exchanging their vows were they highlight of the evening.", "album_id": "22059", "photo_flickr_id": "860191", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "50287", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "exchanging their vows were they highlight of the evening .", "storylet_id": "251439"}], [{"original_text": "The wedding was beautiful yesterday.", "album_id": "22059", "photo_flickr_id": "860172", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50288", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding was beautiful yesterday .", "storylet_id": "251440"}], [{"original_text": "Everyone had come to show their support.", "album_id": "22059", "photo_flickr_id": "860174", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50288", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone had come to show their support .", "storylet_id": "251441"}], [{"original_text": "The couple was very happy to finally be getting married.", "album_id": "22059", "photo_flickr_id": "860175", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50288", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the couple was very happy to finally be getting married .", "storylet_id": "251442"}], [{"original_text": "They had been waiting for this moment for a long time.", "album_id": "22059", "photo_flickr_id": "860178", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50288", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had been waiting for this moment for a long time .", "storylet_id": "251443"}], [{"original_text": "Everyone had a great time.", "album_id": "22059", "photo_flickr_id": "860182", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50288", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time .", "storylet_id": "251444"}], [{"original_text": "My friend got married to a guy named Stephen today.", "album_id": "22059", "photo_flickr_id": "860172", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50289", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend got married to a guy named [male] today .", "storylet_id": "251445"}], [{"original_text": "They didn't look as happy as I thought they would.", "album_id": "22059", "photo_flickr_id": "860175", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50289", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they did n't look as happy as i thought they would .", "storylet_id": "251446"}], [{"original_text": "Steve gave my friend a long, passionate kiss.", "album_id": "22059", "photo_flickr_id": "860182", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50289", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] gave my friend a long , passionate kiss .", "storylet_id": "251447"}], [{"original_text": "The couple stood outside and asked for me to take their photo.", "album_id": "22059", "photo_flickr_id": "860189", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50289", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple stood outside and asked for me to take their photo .", "storylet_id": "251448"}], [{"original_text": "All in all, their wedding day turned out nice. ", "album_id": "22059", "photo_flickr_id": "860191", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50289", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all in all , their wedding day turned out nice .", "storylet_id": "251449"}], [{"original_text": "A young couple exchanging vows surrounded by friends and family.", "album_id": "29583", "photo_flickr_id": "1152248", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50290", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a young couple exchanging vows surrounded by friends and family .", "storylet_id": "251450"}], [{"original_text": "After the ceremony a picture of the happy couple.", "album_id": "29583", "photo_flickr_id": "1152271", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50290", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after the ceremony a picture of the happy couple .", "storylet_id": "251451"}], [{"original_text": "Lovely picture of the bride with the best man.", "album_id": "29583", "photo_flickr_id": "1152276", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50290", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lovely picture of the bride with the best man .", "storylet_id": "251452"}], [{"original_text": "The happy groom having a glass of bubbly.", "album_id": "29583", "photo_flickr_id": "1152279", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50290", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the happy groom having a glass of bubbly .", "storylet_id": "251453"}], [{"original_text": "The groom flanked by two of the ushers.", "album_id": "29583", "photo_flickr_id": "1152376", "setting": "first-2-pick-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50290", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the groom flanked by two of the ushers .", "storylet_id": "251454"}], [{"original_text": "The wedding reception was really fun!", "album_id": "29583", "photo_flickr_id": "1152248", "setting": "first-2-pick-and-tell", "worker_id": "ZH4GLMJRO3MYXZ1", "story_id": "50291", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding reception was really fun !", "storylet_id": "251455"}], [{"original_text": "The bride and groom were very happy. ", "album_id": "29583", "photo_flickr_id": "1152271", "setting": "first-2-pick-and-tell", "worker_id": "ZH4GLMJRO3MYXZ1", "story_id": "50291", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom were very happy .", "storylet_id": "251456"}], [{"original_text": "Even the mother-in-laws weren't being obnoxious. ", "album_id": "29583", "photo_flickr_id": "1152379", "setting": "first-2-pick-and-tell", "worker_id": "ZH4GLMJRO3MYXZ1", "story_id": "50291", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the mother-in-laws were n't being obnoxious .", "storylet_id": "251457"}], [{"original_text": "The bride and groom cut the cake together. ", "album_id": "29583", "photo_flickr_id": "1152283", "setting": "first-2-pick-and-tell", "worker_id": "ZH4GLMJRO3MYXZ1", "story_id": "50291", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride and groom cut the cake together .", "storylet_id": "251458"}], [{"original_text": "Everyone had a good time. ", "album_id": "29583", "photo_flickr_id": "1152300", "setting": "first-2-pick-and-tell", "worker_id": "ZH4GLMJRO3MYXZ1", "story_id": "50291", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a good time .", "storylet_id": "251459"}], [{"original_text": "My cousin got married last year.", "album_id": "29583", "photo_flickr_id": "1152248", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50292", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my cousin got married last year .", "storylet_id": "251460"}], [{"original_text": "She had a night wedding.", "album_id": "29583", "photo_flickr_id": "1152271", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50292", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had a night wedding .", "storylet_id": "251461"}], [{"original_text": "The groomsman had a beard.", "album_id": "29583", "photo_flickr_id": "1152276", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50292", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the groomsman had a beard .", "storylet_id": "251462"}], [{"original_text": "Drinks were free.", "album_id": "29583", "photo_flickr_id": "1152279", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50292", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "drinks were free .", "storylet_id": "251463"}], [{"original_text": "The groom posed with his best man and father.", "album_id": "29583", "photo_flickr_id": "1152376", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50292", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the groom posed with his best man and father .", "storylet_id": "251464"}], [{"original_text": "We were married on a boat, it was way cool.", "album_id": "29583", "photo_flickr_id": "1152248", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "50293", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were married on a boat , it was way cool .", "storylet_id": "251465"}], [{"original_text": "My husband is dashing and handsome. He says he's the lucky one. ", "album_id": "29583", "photo_flickr_id": "1152271", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "50293", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my husband is dashing and handsome . he says he 's the lucky one .", "storylet_id": "251466"}], [{"original_text": "That's my Mom and his Mom. We all get along. ", "album_id": "29583", "photo_flickr_id": "1152379", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "50293", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that 's my mom and his mom . we all get along .", "storylet_id": "251467"}], [{"original_text": "We cut the cake, I almost dropped the knife.", "album_id": "29583", "photo_flickr_id": "1152283", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "50293", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we cut the cake , i almost dropped the knife .", "storylet_id": "251468"}], [{"original_text": "That's my hubby with his best man.", "album_id": "29583", "photo_flickr_id": "1152300", "setting": "last-3-pick-old-and-tell", "worker_id": "TNRFQN3AMIK9HGZ", "story_id": "50293", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that 's my hubby with his best man .", "storylet_id": "251469"}], [{"original_text": "The festivities began with a speech by the groom.", "album_id": "29583", "photo_flickr_id": "1152248", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50294", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the festivities began with a speech by the groom .", "storylet_id": "251470"}], [{"original_text": "A lovely photo will be cherished forever.", "album_id": "29583", "photo_flickr_id": "1152271", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50294", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lovely photo will be cherished forever .", "storylet_id": "251471"}], [{"original_text": "I told the group to take a photo in front of the mountains.", "album_id": "29583", "photo_flickr_id": "1152379", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50294", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i told the group to take a photo in front of the mountains .", "storylet_id": "251472"}], [{"original_text": "The couple never goes anywhere alone.", "album_id": "29583", "photo_flickr_id": "1152283", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50294", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple never goes anywhere alone .", "storylet_id": "251473"}], [{"original_text": "Jay was jealous that his best friend got married that night. ", "album_id": "29583", "photo_flickr_id": "1152300", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50294", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was jealous that his best friend got married that night .", "storylet_id": "251474"}], [{"original_text": "We were so proud of the new couple.", "album_id": "1056310", "photo_flickr_id": "48584699", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50295", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were so proud of the new couple .", "storylet_id": "251475"}], [{"original_text": "The groom showed love and appreciation to his siters.", "album_id": "1056310", "photo_flickr_id": "49325140", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50295", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the groom showed love and appreciation to his siters .", "storylet_id": "251476"}], [{"original_text": "We took a group picture before talking to the bride.", "album_id": "1056310", "photo_flickr_id": "48584749", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50295", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took a group picture before talking to the bride .", "storylet_id": "251477"}], [{"original_text": "She thanked us for joining her on her lovely day.", "album_id": "1056310", "photo_flickr_id": "48584527", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50295", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she thanked us for joining her on her lovely day .", "storylet_id": "251478"}], [{"original_text": "We had dessert before we left the venue.", "album_id": "1056310", "photo_flickr_id": "48584495", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50295", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had dessert before we left the venue .", "storylet_id": "251479"}], [{"original_text": "The wedding guests are waiting for the reception to start.", "album_id": "1056310", "photo_flickr_id": "48584887", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "50296", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding guests are waiting for the reception to start .", "storylet_id": "251480"}], [{"original_text": "The wedding party is taking pictures with the families.", "album_id": "1056310", "photo_flickr_id": "48584749", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "50296", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wedding party is taking pictures with the families .", "storylet_id": "251481"}], [{"original_text": "The bride and groom take some pictures just of them, as well.", "album_id": "1056310", "photo_flickr_id": "48584642", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "50296", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and groom take some pictures just of them , as well .", "storylet_id": "251482"}], [{"original_text": "Now it's time for dinner and dessert.", "album_id": "1056310", "photo_flickr_id": "48584495", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "50296", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now it 's time for dinner and dessert .", "storylet_id": "251483"}], [{"original_text": "After the dinner, it's time to have fun together.", "album_id": "1056310", "photo_flickr_id": "49325140", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "50296", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the dinner , it 's time to have fun together .", "storylet_id": "251484"}], [{"original_text": "The couple took a beautiful picture together in front of church.", "album_id": "1056310", "photo_flickr_id": "48584699", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50297", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple took a beautiful picture together in front of church .", "storylet_id": "251485"}], [{"original_text": "The sisters and brothers took a picture together. ", "album_id": "1056310", "photo_flickr_id": "49325140", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50297", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sisters and brothers took a picture together .", "storylet_id": "251486"}], [{"original_text": "Everyone gathered outside for a picture before the reception. ", "album_id": "1056310", "photo_flickr_id": "48584749", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50297", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone gathered outside for a picture before the reception .", "storylet_id": "251487"}], [{"original_text": "The bride smiled widely for the pic. ", "album_id": "1056310", "photo_flickr_id": "48584527", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50297", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride smiled widely for the pic .", "storylet_id": "251488"}], [{"original_text": "The dessert was delicious. ", "album_id": "1056310", "photo_flickr_id": "48584495", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50297", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dessert was delicious .", "storylet_id": "251489"}], [{"original_text": "Jerry's friends were ready for a party, instead of a wedding.", "album_id": "1056310", "photo_flickr_id": "48584887", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50298", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] 's friends were ready for a party , instead of a wedding .", "storylet_id": "251490"}], [{"original_text": "However, Tara's family was happy to gather for the wonderful day.", "album_id": "1056310", "photo_flickr_id": "48584749", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50298", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "however , [female] 's family was happy to gather for the wonderful day .", "storylet_id": "251491"}], [{"original_text": "They had a beautiful backdrop for the wedding, a castle.", "album_id": "1056310", "photo_flickr_id": "48584642", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50298", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a beautiful backdrop for the wedding , a castle .", "storylet_id": "251492"}], [{"original_text": "And, the food was absolutely wonderful!", "album_id": "1056310", "photo_flickr_id": "48584495", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50298", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , the food was absolutely wonderful !", "storylet_id": "251493"}], [{"original_text": "Of course, as we mentioned, Jerry's friends were there for the party and party they did.", "album_id": "1056310", "photo_flickr_id": "49325140", "setting": "last-3-pick-old-and-tell", "worker_id": "2F92MPNB5VXHOCA", "story_id": "50298", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of course , as we mentioned , [male] 's friends were there for the party and party they did .", "storylet_id": "251494"}], [{"original_text": "All of my friends came to the wedding yesterday.", "album_id": "1056310", "photo_flickr_id": "48584887", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50299", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all of my friends came to the wedding yesterday .", "storylet_id": "251495"}], [{"original_text": "There were a lot of people there.", "album_id": "1056310", "photo_flickr_id": "48584749", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50299", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people there .", "storylet_id": "251496"}], [{"original_text": "They took many pictures of the castle location.", "album_id": "1056310", "photo_flickr_id": "48584642", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50299", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they took many pictures of the castle location .", "storylet_id": "251497"}], [{"original_text": "The cake they served at the ceremony was delicious.", "album_id": "1056310", "photo_flickr_id": "48584495", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50299", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cake they served at the ceremony was delicious .", "storylet_id": "251498"}], [{"original_text": "We had a great time there.", "album_id": "1056310", "photo_flickr_id": "49325140", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50299", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time there .", "storylet_id": "251499"}], [{"original_text": "The Johnsons decided to have a pirate themed wedding.", "album_id": "1266780", "photo_flickr_id": "58413375", "setting": "first-2-pick-and-tell", "worker_id": "X95Y0LFMO9I4QHC", "story_id": "50300", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization decided to have a pirate themed wedding .", "storylet_id": "251500"}], [{"original_text": "They rented out a authentic pirate ship and everything.", "album_id": "1266780", "photo_flickr_id": "58413455", "setting": "first-2-pick-and-tell", "worker_id": "X95Y0LFMO9I4QHC", "story_id": "50300", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they rented out a authentic pirate ship and everything .", "storylet_id": "251501"}], [{"original_text": "After 2 years of being engaged, they", "album_id": "1266780", "photo_flickr_id": "58413542", "setting": "first-2-pick-and-tell", "worker_id": "X95Y0LFMO9I4QHC", "story_id": "50300", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after 2 years of being engaged , they", "storylet_id": "251502"}], [{"original_text": "Mr Johnsons sister decided to dress as a bartender.", "album_id": "1266780", "photo_flickr_id": "58413633", "setting": "first-2-pick-and-tell", "worker_id": "X95Y0LFMO9I4QHC", "story_id": "50300", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mr johnsons sister decided to dress as a bartender .", "storylet_id": "251503"}], [{"original_text": "The best man dressed up as Mr. Johnson's right hand man, a fitting comparison!", "album_id": "1266780", "photo_flickr_id": "58413620", "setting": "first-2-pick-and-tell", "worker_id": "X95Y0LFMO9I4QHC", "story_id": "50300", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best man dressed up as mr. johnson 's right hand man , a fitting comparison !", "storylet_id": "251504"}], [{"original_text": "The wedding guests are dressed as pirates!", "album_id": "1266780", "photo_flickr_id": "58413375", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "50301", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding guests are dressed as pirates !", "storylet_id": "251505"}], [{"original_text": "They are seated and waiting for the bride and groom.", "album_id": "1266780", "photo_flickr_id": "58413417", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "50301", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are seated and waiting for the bride and groom .", "storylet_id": "251506"}], [{"original_text": "Here comes the bride and groom.", "album_id": "1266780", "photo_flickr_id": "58413455", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "50301", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here comes the bride and groom .", "storylet_id": "251507"}], [{"original_text": "They exchange their vows and prepare for their first kiss.", "album_id": "1266780", "photo_flickr_id": "58413542", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "50301", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they exchange their vows and prepare for their first kiss .", "storylet_id": "251508"}], [{"original_text": "Now that the bride and groom are wed, it's time for a pirate party!", "album_id": "1266780", "photo_flickr_id": "58413633", "setting": "first-2-pick-and-tell", "worker_id": "I8J20Q66T79A6E1", "story_id": "50301", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now that the bride and groom are wed , it 's time for a pirate party !", "storylet_id": "251509"}], [{"original_text": "The couple decided they wanted a pirate themed wedding,", "album_id": "1266780", "photo_flickr_id": "58413375", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50302", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple decided they wanted a pirate themed wedding ,", "storylet_id": "251510"}], [{"original_text": "so the bride and groom dressed up like pirates,", "album_id": "1266780", "photo_flickr_id": "58413455", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50302", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so the bride and groom dressed up like pirates ,", "storylet_id": "251511"}], [{"original_text": "and they got married by the water like pirates do.", "album_id": "1266780", "photo_flickr_id": "58413542", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50302", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and they got married by the water like pirates do .", "storylet_id": "251512"}], [{"original_text": "Their wedding party played into the theme,", "album_id": "1266780", "photo_flickr_id": "58413633", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50302", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their wedding party played into the theme ,", "storylet_id": "251513"}], [{"original_text": "as did their guests.", "album_id": "1266780", "photo_flickr_id": "58413620", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50302", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as did their guests .", "storylet_id": "251514"}], [{"original_text": "The pirates prepared themselves, masks and all, for the wedding that was to come. ", "album_id": "1266780", "photo_flickr_id": "58413375", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50303", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the pirates prepared themselves , masks and all , for the wedding that was to come .", "storylet_id": "251515"}], [{"original_text": "The crowd was ready, as was the backdrop, for the best pirate themed wedding there ever was. ", "album_id": "1266780", "photo_flickr_id": "58413417", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50303", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd was ready , as was the backdrop , for the best pirate themed wedding there ever was .", "storylet_id": "251516"}], [{"original_text": "Murmurs swept through the crowd as the pirate bride and groom began to walk forward, the gentle breeze blowing behind them. ", "album_id": "1266780", "photo_flickr_id": "58413455", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50303", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "murmurs swept through the crowd as the pirate bride and groom began to walk forward , the gentle breeze blowing behind them .", "storylet_id": "251517"}], [{"original_text": "The pirate bride and groom looked lovingly in each others eyes as they said their vows. ", "album_id": "1266780", "photo_flickr_id": "58413542", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50303", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pirate bride and groom looked lovingly in each others eyes as they said their vows .", "storylet_id": "251518"}], [{"original_text": "At the wedding reception, there were many happy couples traversing about. ", "album_id": "1266780", "photo_flickr_id": "58413633", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50303", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the wedding reception , there were many happy couples traversing about .", "storylet_id": "251519"}], [{"original_text": "The event has many costumes.", "album_id": "1266780", "photo_flickr_id": "58413375", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50304", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the event has many costumes .", "storylet_id": "251520"}], [{"original_text": "The wedding is pirate themed", "album_id": "1266780", "photo_flickr_id": "58413417", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50304", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wedding is pirate themed", "storylet_id": "251521"}], [{"original_text": "and the couple is wearing costumes.", "album_id": "1266780", "photo_flickr_id": "58413455", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50304", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the couple is wearing costumes .", "storylet_id": "251522"}], [{"original_text": "They say their vows in outfit", "album_id": "1266780", "photo_flickr_id": "58413542", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50304", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they say their vows in outfit", "storylet_id": "251523"}], [{"original_text": "before dancing the night away.", "album_id": "1266780", "photo_flickr_id": "58413633", "setting": "last-3-pick-old-and-tell", "worker_id": "OIVZOPFL7J8ERHY", "story_id": "50304", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before dancing the night away .", "storylet_id": "251524"}], [{"original_text": "Marie is turing the dirty 30 and is having a party with he friends", "album_id": "72157594457806898", "photo_flickr_id": "344725916", "setting": "first-2-pick-and-tell", "worker_id": "CFJVVCWK7M9KXTK", "story_id": "50305", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is turing the dirty 30 and is having a party with he friends", "storylet_id": "251525"}], [{"original_text": "Here she is conversing with a old friend from college and one from work", "album_id": "72157594457806898", "photo_flickr_id": "344726007", "setting": "first-2-pick-and-tell", "worker_id": "CFJVVCWK7M9KXTK", "story_id": "50305", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here she is conversing with a old friend from college and one from work", "storylet_id": "251526"}], [{"original_text": "She decorated the tables seating placements herself. ", "album_id": "72157594457806898", "photo_flickr_id": "344725357", "setting": "first-2-pick-and-tell", "worker_id": "CFJVVCWK7M9KXTK", "story_id": "50305", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she decorated the tables seating placements herself .", "storylet_id": "251527"}], [{"original_text": "It is now time to eat. Her friend from work made her the food she likes the most which is lobster", "album_id": "72157594457806898", "photo_flickr_id": "344725700", "setting": "first-2-pick-and-tell", "worker_id": "CFJVVCWK7M9KXTK", "story_id": "50305", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is now time to eat . her friend from work made her the food she likes the most which is lobster", "storylet_id": "251528"}], [{"original_text": "Marie takes one more picture from tonight and she is happy as can be from a wonderful birthday party.", "album_id": "72157594457806898", "photo_flickr_id": "344726656", "setting": "first-2-pick-and-tell", "worker_id": "CFJVVCWK7M9KXTK", "story_id": "50305", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] takes one more picture from tonight and she is happy as can be from a wonderful birthday party .", "storylet_id": "251529"}], [{"original_text": "In celebration of the end of Bush's tenure, some friends decided to have a party.", "album_id": "72157594457806898", "photo_flickr_id": "344776051", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "50306", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in celebration of the end of bush 's tenure , some friends decided to have a party .", "storylet_id": "251530"}], [{"original_text": "Crazy Joe showed up with his new fling in a shirt he stole from a 1970's film set.", "album_id": "72157594457806898", "photo_flickr_id": "344775878", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "50306", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "crazy [male] showed up with his new fling in a shirt he stole from a 1970 's film set .", "storylet_id": "251531"}], [{"original_text": "Jamie, the life of the party, brought his sister to the festivities.", "album_id": "72157594457806898", "photo_flickr_id": "344726096", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "50306", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] , the life of the party , brought his sister to the festivities .", "storylet_id": "251532"}], [{"original_text": "Weird Uncle Mike cried the whole night, as he was an avid supporter of Bush.", "album_id": "72157594457806898", "photo_flickr_id": "344726304", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "50306", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "weird uncle [male] cried the whole night , as he was an avid supporter of bush .", "storylet_id": "251533"}], [{"original_text": "The group finally settled down to a magical and fun meal.", "album_id": "72157594457806898", "photo_flickr_id": "344725617", "setting": "first-2-pick-and-tell", "worker_id": "6FTWVOQTLTLN5NC", "story_id": "50306", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the group finally settled down to a magical and fun meal .", "storylet_id": "251534"}], [{"original_text": "It was Bush's last day in office. This was the happiest day of my life.", "album_id": "72157594457806898", "photo_flickr_id": "344776051", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "50307", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was bush 's last day in office . this was the happiest day of my life .", "storylet_id": "251535"}], [{"original_text": "Me and my wife were ecstatic.", "album_id": "72157594457806898", "photo_flickr_id": "344775878", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "50307", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "me and my wife were ecstatic .", "storylet_id": "251536"}], [{"original_text": "We were almost as ecstatic as our friends.", "album_id": "72157594457806898", "photo_flickr_id": "344726096", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "50307", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were almost as ecstatic as our friends .", "storylet_id": "251537"}], [{"original_text": "But our friend who always wears yellow hats was perhaps the happiest of all.", "album_id": "72157594457806898", "photo_flickr_id": "344726304", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "50307", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but our friend who always wears yellow hats was perhaps the happiest of all .", "storylet_id": "251538"}], [{"original_text": "We celebrated by putting balloons on our dinner plates.", "album_id": "72157594457806898", "photo_flickr_id": "344725617", "setting": "last-3-pick-old-and-tell", "worker_id": "OW0TD8WGZBE8WEA", "story_id": "50307", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we celebrated by putting balloons on our dinner plates .", "storylet_id": "251539"}], [{"original_text": "It was an end of an era, and we were ready to celebrate.", "album_id": "72157594457806898", "photo_flickr_id": "344776051", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50308", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was an end of an era , and we were ready to celebrate .", "storylet_id": "251540"}], [{"original_text": "Our host and hostess were all smiles.", "album_id": "72157594457806898", "photo_flickr_id": "344775878", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50308", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our host and hostess were all smiles .", "storylet_id": "251541"}], [{"original_text": "Even the guests were all smiles.", "album_id": "72157594457806898", "photo_flickr_id": "344726096", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50308", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the guests were all smiles .", "storylet_id": "251542"}], [{"original_text": "One guest was ready to sing.", "album_id": "72157594457806898", "photo_flickr_id": "344726304", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50308", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one guest was ready to sing .", "storylet_id": "251543"}], [{"original_text": "The table arrangement looked festive.", "album_id": "72157594457806898", "photo_flickr_id": "344725617", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50308", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the table arrangement looked festive .", "storylet_id": "251544"}], [{"original_text": "My friend George threw a party to celebrate the last day of Bush's presidency. He'd planned it for years.", "album_id": "72157594457806898", "photo_flickr_id": "344776051", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50309", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend [male] threw a party to celebrate the last day of bush 's presidency . he 'd planned it for years .", "storylet_id": "251545"}], [{"original_text": "Sally and I were excited to go. George always threw a great party.", "album_id": "72157594457806898", "photo_flickr_id": "344775878", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50309", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] and i were excited to go . [male] always threw a great party .", "storylet_id": "251546"}], [{"original_text": "Ben and Tammy were there, even though Ben is a Republican.", "album_id": "72157594457806898", "photo_flickr_id": "344726096", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50309", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and [female] were there , even though [male] is a republican .", "storylet_id": "251547"}], [{"original_text": "George sang a song he'd composed himself about Bush being no longer president.", "album_id": "72157594457806898", "photo_flickr_id": "344726304", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50309", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] sang a song he 'd composed himself about bush being no longer president .", "storylet_id": "251548"}], [{"original_text": "No one quite understood the balloon theme at the table, but that's George. He always keeps you guessing!", "album_id": "72157594457806898", "photo_flickr_id": "344725617", "setting": "last-3-pick-old-and-tell", "worker_id": "91DHG0O6ZOG31C8", "story_id": "50309", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "no one quite understood the balloon theme at the table , but that 's [male] . he always keeps you guessing !", "storylet_id": "251549"}], [{"original_text": "Today was our wedding day and we are very nontraditional.", "album_id": "72157623988073332", "photo_flickr_id": "4792121350", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "50310", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was our wedding day and we are very nontraditional .", "storylet_id": "251550"}], [{"original_text": "The rings were presented on a flower.", "album_id": "72157623988073332", "photo_flickr_id": "4661581351", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "50310", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rings were presented on a flower .", "storylet_id": "251551"}], [{"original_text": "The groom wore Chucks.", "album_id": "72157623988073332", "photo_flickr_id": "4683067873", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "50310", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the groom wore chucks .", "storylet_id": "251552"}], [{"original_text": "We had wedding cupcakes instead of cake.", "album_id": "72157623988073332", "photo_flickr_id": "4792121004", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "50310", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had wedding cupcakes instead of cake .", "storylet_id": "251553"}], [{"original_text": "We are going to have a wonderful life together.", "album_id": "72157623988073332", "photo_flickr_id": "4791487181", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "50310", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we are going to have a wonderful life together .", "storylet_id": "251554"}], [{"original_text": "Suzy getting ready with the help of her mom.", "album_id": "72157623988073332", "photo_flickr_id": "4792120306", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "50311", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "suzy getting ready with the help of her mom .", "storylet_id": "251555"}], [{"original_text": "Alex smiling right before he gets married.", "album_id": "72157623988073332", "photo_flickr_id": "4683067767", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "50311", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] smiling right before he gets married .", "storylet_id": "251556"}], [{"original_text": "The groomsmen showing off their matching suits.", "album_id": "72157623988073332", "photo_flickr_id": "4791487701", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "50311", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the groomsmen showing off their matching suits .", "storylet_id": "251557"}], [{"original_text": "The wedding cake was made of entirely of cupcakes.", "album_id": "72157623988073332", "photo_flickr_id": "4792121004", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "50311", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wedding cake was made of entirely of cupcakes .", "storylet_id": "251558"}], [{"original_text": "Their first dance as husband and wife.", "album_id": "72157623988073332", "photo_flickr_id": "4791488795", "setting": "first-2-pick-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "50311", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their first dance as husband and wife .", "storylet_id": "251559"}], [{"original_text": "We went to a wedding recently.", "album_id": "72157623988073332", "photo_flickr_id": "4792120306", "setting": "last-3-pick-old-and-tell", "worker_id": "LZRAH6EMV6YF7HJ", "story_id": "50312", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a wedding recently .", "storylet_id": "251560"}], [{"original_text": "The groom looked so happy!", "album_id": "72157623988073332", "photo_flickr_id": "4683067767", "setting": "last-3-pick-old-and-tell", "worker_id": "LZRAH6EMV6YF7HJ", "story_id": "50312", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the groom looked so happy !", "storylet_id": "251561"}], [{"original_text": "All the groom's friends were happy for him.", "album_id": "72157623988073332", "photo_flickr_id": "4791487701", "setting": "last-3-pick-old-and-tell", "worker_id": "LZRAH6EMV6YF7HJ", "story_id": "50312", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the groom 's friends were happy for him .", "storylet_id": "251562"}], [{"original_text": "The food was amazing!", "album_id": "72157623988073332", "photo_flickr_id": "4792121004", "setting": "last-3-pick-old-and-tell", "worker_id": "LZRAH6EMV6YF7HJ", "story_id": "50312", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food was amazing !", "storylet_id": "251563"}], [{"original_text": "They got married and looked amazing!", "album_id": "72157623988073332", "photo_flickr_id": "4791488795", "setting": "last-3-pick-old-and-tell", "worker_id": "LZRAH6EMV6YF7HJ", "story_id": "50312", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they got married and looked amazing !", "storylet_id": "251564"}], [{"original_text": "The person at the office signed the marriage certificate.", "album_id": "72157623988073332", "photo_flickr_id": "4792121350", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50313", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the person at the office signed the marriage certificate .", "storylet_id": "251565"}], [{"original_text": "Before the wedding, they look at the pretty flowers.", "album_id": "72157623988073332", "photo_flickr_id": "4661581351", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50313", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before the wedding , they look at the pretty flowers .", "storylet_id": "251566"}], [{"original_text": "The photographer wants to get some unique shots of them.", "album_id": "72157623988073332", "photo_flickr_id": "4683067873", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50313", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the photographer wants to get some unique shots of them .", "storylet_id": "251567"}], [{"original_text": "The bride made sure he also gets shots of the food.", "album_id": "72157623988073332", "photo_flickr_id": "4792121004", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50313", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride made sure he also gets shots of the food .", "storylet_id": "251568"}], [{"original_text": "They get married, and share their first kiss. ", "album_id": "72157623988073332", "photo_flickr_id": "4791487181", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50313", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they get married , and share their first kiss .", "storylet_id": "251569"}], [{"original_text": "It was Wendy and Michael's wedding day. They signed their marriage certificate and went off to their reception.", "album_id": "72157623988073332", "photo_flickr_id": "4792121350", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "50314", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was [female] and [male] 's wedding day . they signed their marriage certificate and went off to their reception .", "storylet_id": "251570"}], [{"original_text": "The flowers at their reception were a beautiful orange with pink accents. ", "album_id": "72157623988073332", "photo_flickr_id": "4661581351", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "50314", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flowers at their reception were a beautiful orange with pink accents .", "storylet_id": "251571"}], [{"original_text": "As they walked into their reception everyone admired Wendy's dress.", "album_id": "72157623988073332", "photo_flickr_id": "4683067873", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "50314", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as they walked into their reception everyone admired [female] 's dress .", "storylet_id": "251572"}], [{"original_text": "Instead of a traditional wedding cake, Wendy opted for cupcakes from a local bakery. ", "album_id": "72157623988073332", "photo_flickr_id": "4792121004", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "50314", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "instead of a traditional wedding cake , [female] opted for cupcakes from a local bakery .", "storylet_id": "251573"}], [{"original_text": "Wendy and Michael were in love and so happy to finally be married.", "album_id": "72157623988073332", "photo_flickr_id": "4791487181", "setting": "last-3-pick-old-and-tell", "worker_id": "G3QMVHE6BY4VI05", "story_id": "50314", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] and [male] were in love and so happy to finally be married .", "storylet_id": "251574"}], [{"original_text": "The music starts to play Here Comes The Bride.", "album_id": "72157627275106773", "photo_flickr_id": "6028494956", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50315", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the music starts to play here comes the bride .", "storylet_id": "251575"}], [{"original_text": "Lee and Marie will be married in a matter of a few minutes.", "album_id": "72157627275106773", "photo_flickr_id": "6027945529", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50315", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] and [female] will be married in a matter of a few minutes .", "storylet_id": "251576"}], [{"original_text": "After the ceremony they had smiles on their faces,they are happy and look forward to spending the rest of their lives together.", "album_id": "72157627275106773", "photo_flickr_id": "6027948649", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50315", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the ceremony they had smiles on their faces , they are happy and look forward to spending the rest of their lives together .", "storylet_id": "251577"}], [{"original_text": "Some of their friends and family seen here posing with them.", "album_id": "72157627275106773", "photo_flickr_id": "6027956657", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50315", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of their friends and family seen here posing with them .", "storylet_id": "251578"}], [{"original_text": "What nobody knows at this point is that Marie only has 12 weeks to live.", "album_id": "72157627275106773", "photo_flickr_id": "6028508754", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50315", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what nobody knows at this point is that [female] only has 12 weeks to live .", "storylet_id": "251579"}], [{"original_text": "This is me on my way to the altar for my wedding and very excited to see my bride.", "album_id": "72157627275106773", "photo_flickr_id": "6027944633", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "50316", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is me on my way to the altar for my wedding and very excited to see my bride .", "storylet_id": "251580"}], [{"original_text": "There she is, the most beautiful bride I've ever seen. ", "album_id": "72157627275106773", "photo_flickr_id": "6027945177", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "50316", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there she is , the most beautiful bride i 've ever seen .", "storylet_id": "251581"}], [{"original_text": "I am now holding the hand of my very beautiful wife. So excited to make the vows and be and husband. ", "album_id": "72157627275106773", "photo_flickr_id": "6027945529", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "50316", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i am now holding the hand of my very beautiful wife . so excited to make the vows and be and husband .", "storylet_id": "251582"}], [{"original_text": "With all my heart I take you as my wife and will promise to remain faithful and will love you unconditionally. Amen. ", "album_id": "72157627275106773", "photo_flickr_id": "6028498298", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "50316", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with all my heart i take you as my wife and will promise to remain faithful and will love you unconditionally . amen .", "storylet_id": "251583"}], [{"original_text": "Our first dance as husband and wife. I love you honey.", "album_id": "72157627275106773", "photo_flickr_id": "6028508754", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "50316", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our first dance as husband and wife . i love you honey .", "storylet_id": "251584"}], [{"original_text": "The string ensemble provided background music at the wedding of my best friend.", "album_id": "72157627275106773", "photo_flickr_id": "6028494956", "setting": "last-3-pick-old-and-tell", "worker_id": "GZYLTLU2163MCD2", "story_id": "50317", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the string ensemble provided background music at the wedding of my best friend .", "storylet_id": "251585"}], [{"original_text": "She looked beautiful when she joined her groom at the alter to take their vows.", "album_id": "72157627275106773", "photo_flickr_id": "6027945529", "setting": "last-3-pick-old-and-tell", "worker_id": "GZYLTLU2163MCD2", "story_id": "50317", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she looked beautiful when she joined her groom at the alter to take their vows .", "storylet_id": "251586"}], [{"original_text": "They were both smiling happily when they were pronounced man and wife.", "album_id": "72157627275106773", "photo_flickr_id": "6027948649", "setting": "last-3-pick-old-and-tell", "worker_id": "GZYLTLU2163MCD2", "story_id": "50317", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were both smiling happily when they were pronounced man and wife .", "storylet_id": "251587"}], [{"original_text": "She took the time to pose with me and our other friends during the reception so we would all have a great picture to remember the day.", "album_id": "72157627275106773", "photo_flickr_id": "6027956657", "setting": "last-3-pick-old-and-tell", "worker_id": "GZYLTLU2163MCD2", "story_id": "50317", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she took the time to pose with me and our other friends during the reception so we would all have a great picture to remember the day .", "storylet_id": "251588"}], [{"original_text": "When the new husband and wife danced together for the first time, I captured their love in this photo.", "album_id": "72157627275106773", "photo_flickr_id": "6028508754", "setting": "last-3-pick-old-and-tell", "worker_id": "GZYLTLU2163MCD2", "story_id": "50317", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the new husband and wife danced together for the first time , i captured their love in this photo .", "storylet_id": "251589"}], [{"original_text": "The hired band plays the songs they were asked to play.", "album_id": "72157627275106773", "photo_flickr_id": "6028494956", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50318", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the hired band plays the songs they were asked to play .", "storylet_id": "251590"}], [{"original_text": "The bride and groom get ready for the big moment.", "album_id": "72157627275106773", "photo_flickr_id": "6027945529", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50318", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom get ready for the big moment .", "storylet_id": "251591"}], [{"original_text": "They first take some pictures for the family.", "album_id": "72157627275106773", "photo_flickr_id": "6027948649", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50318", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they first take some pictures for the family .", "storylet_id": "251592"}], [{"original_text": "They all pose with their loved ones.", "album_id": "72157627275106773", "photo_flickr_id": "6027956657", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50318", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they all pose with their loved ones .", "storylet_id": "251593"}], [{"original_text": "Then, they share their first dance as a married couple", "album_id": "72157627275106773", "photo_flickr_id": "6028508754", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50318", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then , they share their first dance as a married couple", "storylet_id": "251594"}], [{"original_text": "The band played for the guests.", "album_id": "72157627275106773", "photo_flickr_id": "6028494956", "setting": "last-3-pick-old-and-tell", "worker_id": "W1VUJ7PU63H1Y52", "story_id": "50319", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the band played for the guests .", "storylet_id": "251595"}], [{"original_text": "The bride and groom looked amazing.", "album_id": "72157627275106773", "photo_flickr_id": "6027945529", "setting": "last-3-pick-old-and-tell", "worker_id": "W1VUJ7PU63H1Y52", "story_id": "50319", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom looked amazing .", "storylet_id": "251596"}], [{"original_text": "They were ready for their closeup.", "album_id": "72157627275106773", "photo_flickr_id": "6027948649", "setting": "last-3-pick-old-and-tell", "worker_id": "W1VUJ7PU63H1Y52", "story_id": "50319", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were ready for their closeup .", "storylet_id": "251597"}], [{"original_text": "Everyone then hit the dance floor.", "album_id": "72157627275106773", "photo_flickr_id": "6027956657", "setting": "last-3-pick-old-and-tell", "worker_id": "W1VUJ7PU63H1Y52", "story_id": "50319", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone then hit the dance floor .", "storylet_id": "251598"}], [{"original_text": "We watched as the couple had their first dance.", "album_id": "72157627275106773", "photo_flickr_id": "6028508754", "setting": "last-3-pick-old-and-tell", "worker_id": "W1VUJ7PU63H1Y52", "story_id": "50319", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we watched as the couple had their first dance .", "storylet_id": "251599"}], [{"original_text": "The bleak weather couldn't ruin the outlook of our wonderful wedding day.", "album_id": "72157628921838053", "photo_flickr_id": "6718703211", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "50320", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bleak weather could n't ruin the outlook of our wonderful wedding day .", "storylet_id": "251600"}], [{"original_text": "I had been looking forward to this day my whole life.", "album_id": "72157628921838053", "photo_flickr_id": "6718703297", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "50320", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had been looking forward to this day my whole life .", "storylet_id": "251601"}], [{"original_text": "My future husband and I had been sweethearts since the 10th grade.", "album_id": "72157628921838053", "photo_flickr_id": "6718704319", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "50320", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my future husband and i had been sweethearts since the 10th grade .", "storylet_id": "251602"}], [{"original_text": "Now here we were getting married on Christmas eve in such a lovely atmosphere.", "album_id": "72157628921838053", "photo_flickr_id": "6718704979", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "50320", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now here we were getting married on christmas eve in such a lovely atmosphere .", "storylet_id": "251603"}], [{"original_text": "Just as I had always dreamed, we went on a magic Cinderella carriage ride to the reception after the wedding. ", "album_id": "72157628921838053", "photo_flickr_id": "6718705885", "setting": "first-2-pick-and-tell", "worker_id": "RXPSXJMKRXQ1QO7", "story_id": "50320", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "just as i had always dreamed , we went on a magic cinderella carriage ride to the reception after the wedding .", "storylet_id": "251604"}], [{"original_text": "They decided to have their wedding at the church.", "album_id": "72157628921838053", "photo_flickr_id": "6718703211", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "50321", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they decided to have their wedding at the church .", "storylet_id": "251605"}], [{"original_text": " The bride started getting ready.", "album_id": "72157628921838053", "photo_flickr_id": "6718703297", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "50321", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride started getting ready .", "storylet_id": "251606"}], [{"original_text": "The bride finally put her dress on.", "album_id": "72157628921838053", "photo_flickr_id": "6718703859", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "50321", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride finally put her dress on .", "storylet_id": "251607"}], [{"original_text": " The bride and the groom said their I do's.", "album_id": "72157628921838053", "photo_flickr_id": "6718704319", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "50321", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride and the groom said their i do 's .", "storylet_id": "251608"}], [{"original_text": "The whole family got together for a group picture.", "album_id": "72157628921838053", "photo_flickr_id": "6718704721", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "50321", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the whole family got together for a group picture .", "storylet_id": "251609"}], [{"original_text": "The church was all ready for the wedding.", "album_id": "72157628921838053", "photo_flickr_id": "6718703211", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "50322", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the church was all ready for the wedding .", "storylet_id": "251610"}], [{"original_text": "The bride was getting her hair done in preparation.", "album_id": "72157628921838053", "photo_flickr_id": "6718703297", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "50322", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride was getting her hair done in preparation .", "storylet_id": "251611"}], [{"original_text": "And she got zipped into her dress.", "album_id": "72157628921838053", "photo_flickr_id": "6718703859", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "50322", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and she got zipped into her dress .", "storylet_id": "251612"}], [{"original_text": "The vows were said and everyone had a great time.", "album_id": "72157628921838053", "photo_flickr_id": "6718704319", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "50322", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the vows were said and everyone had a great time .", "storylet_id": "251613"}], [{"original_text": "They ended the evening with a beautiful group photo.", "album_id": "72157628921838053", "photo_flickr_id": "6718704721", "setting": "last-3-pick-old-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "50322", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ended the evening with a beautiful group photo .", "storylet_id": "251614"}], [{"original_text": "Sydney and Sam had their wedding at a church last night.", "album_id": "72157628921838053", "photo_flickr_id": "6718703211", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "50323", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location and [male] had their wedding at a church last night .", "storylet_id": "251615"}], [{"original_text": "Sydney started off the day by having her hair done.", "album_id": "72157628921838053", "photo_flickr_id": "6718703297", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "50323", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "location started off the day by having her hair done .", "storylet_id": "251616"}], [{"original_text": "Then her maid of honor helped her put on her wedding dress.", "album_id": "72157628921838053", "photo_flickr_id": "6718703859", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "50323", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then her maid of honor helped her put on her wedding dress .", "storylet_id": "251617"}], [{"original_text": "Sydney and Sam said their \"I do's\" in front of a beautifully lit up Christmas tree.", "album_id": "72157628921838053", "photo_flickr_id": "6718704319", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "50323", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "location and [male] said their `` i do 's '' in front of a beautifully lit up christmas tree .", "storylet_id": "251618"}], [{"original_text": "The bride and groom posed for pictures after the ceremony.", "album_id": "72157628921838053", "photo_flickr_id": "6718704721", "setting": "last-3-pick-old-and-tell", "worker_id": "X1XHRF0BQSQ91YA", "story_id": "50323", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride and groom posed for pictures after the ceremony .", "storylet_id": "251619"}], [{"original_text": "Picture of the cross, it is a blessed day.", "album_id": "72157628921838053", "photo_flickr_id": "6718703211", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50324", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "picture of the cross , it is a blessed day .", "storylet_id": "251620"}], [{"original_text": "Bride getting her hair done. ", "album_id": "72157628921838053", "photo_flickr_id": "6718703297", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50324", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "bride getting her hair done .", "storylet_id": "251621"}], [{"original_text": "Husband saying his vows to his new bride. ", "album_id": "72157628921838053", "photo_flickr_id": "6718704319", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50324", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "husband saying his vows to his new bride .", "storylet_id": "251622"}], [{"original_text": "Exchanging rings at the alter. ", "album_id": "72157628921838053", "photo_flickr_id": "6718704979", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50324", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "exchanging rings at the alter .", "storylet_id": "251623"}], [{"original_text": "On a carriage driving to their new life together. ", "album_id": "72157628921838053", "photo_flickr_id": "6718705885", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50324", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on a carriage driving to their new life together .", "storylet_id": "251624"}], [{"original_text": "Our first meal together as a married couple was as beautiful as it was delicious.", "album_id": "72157594541988863", "photo_flickr_id": "393835512", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "50325", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our first meal together as a married couple was as beautiful as it was delicious .", "storylet_id": "251625"}], [{"original_text": "The roses they sent over were of the highest quality like the ingredients in their food.", "album_id": "72157594541988863", "photo_flickr_id": "393835902", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "50325", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the roses they sent over were of the highest quality like the ingredients in their food .", "storylet_id": "251626"}], [{"original_text": "The personal touches like the unique cake designs made it even more special.", "album_id": "72157594541988863", "photo_flickr_id": "393836113", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "50325", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the personal touches like the unique cake designs made it even more special .", "storylet_id": "251627"}], [{"original_text": "We were on our way to married life in high class style.", "album_id": "72157594541988863", "photo_flickr_id": "393838546", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "50325", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were on our way to married life in high class style .", "storylet_id": "251628"}], [{"original_text": "And this was literally the icing on the cake.", "album_id": "72157594541988863", "photo_flickr_id": "393839760", "setting": "first-2-pick-and-tell", "worker_id": "E7F7K1T3N3Y42T1", "story_id": "50325", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and this was literally the icing on the cake .", "storylet_id": "251629"}], [{"original_text": "The bride's guests were ready to eat.", "album_id": "72157594541988863", "photo_flickr_id": "393838546", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "50326", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride 's guests were ready to eat .", "storylet_id": "251630"}], [{"original_text": "The guests were able to choose what they want off the menu.", "album_id": "72157594541988863", "photo_flickr_id": "393835783", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "50326", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guests were able to choose what they want off the menu .", "storylet_id": "251631"}], [{"original_text": " Some of the guests had choose fish.", "album_id": "72157594541988863", "photo_flickr_id": "393837894", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "50326", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the guests had choose fish .", "storylet_id": "251632"}], [{"original_text": "Most of the guests had the meat.", "album_id": "72157594541988863", "photo_flickr_id": "393838435", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "50326", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "most of the guests had the meat .", "storylet_id": "251633"}], [{"original_text": "The dessert was delicious.", "album_id": "72157594541988863", "photo_flickr_id": "393839760", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "50326", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dessert was delicious .", "storylet_id": "251634"}], [{"original_text": "The reception was beautifully decorated with golds and pinks. ", "album_id": "72157594541988863", "photo_flickr_id": "393835512", "setting": "last-3-pick-old-and-tell", "worker_id": "K16O759TPDS2446", "story_id": "50327", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the reception was beautifully decorated with golds and pinks .", "storylet_id": "251635"}], [{"original_text": "The beautifully ribbons on tied around the pink roses were placed at every seat. ", "album_id": "72157594541988863", "photo_flickr_id": "393835902", "setting": "last-3-pick-old-and-tell", "worker_id": "K16O759TPDS2446", "story_id": "50327", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the beautifully ribbons on tied around the pink roses were placed at every seat .", "storylet_id": "251636"}], [{"original_text": "The wedding cake is delightful with fresh berries and flowers.", "album_id": "72157594541988863", "photo_flickr_id": "393836113", "setting": "last-3-pick-old-and-tell", "worker_id": "K16O759TPDS2446", "story_id": "50327", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the wedding cake is delightful with fresh berries and flowers .", "storylet_id": "251637"}], [{"original_text": "Let's take a peek at the bride and groom. The bride's dress is intricately detailed with tulle and fabric covered buttons. ", "album_id": "72157594541988863", "photo_flickr_id": "393838546", "setting": "last-3-pick-old-and-tell", "worker_id": "K16O759TPDS2446", "story_id": "50327", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "let 's take a peek at the bride and groom . the bride 's dress is intricately detailed with tulle and fabric covered buttons .", "storylet_id": "251638"}], [{"original_text": "The delicate wedding cake is complimented by the fresh berries and a dollop of sauce.", "album_id": "72157594541988863", "photo_flickr_id": "393839760", "setting": "last-3-pick-old-and-tell", "worker_id": "K16O759TPDS2446", "story_id": "50327", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the delicate wedding cake is complimented by the fresh berries and a dollop of sauce .", "storylet_id": "251639"}], [{"original_text": "It was a beautiful wedding ceremony.", "album_id": "72157594541988863", "photo_flickr_id": "393838546", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50328", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful wedding ceremony .", "storylet_id": "251640"}], [{"original_text": "The ceremony was followed by a reception. We had a choice of entrees.", "album_id": "72157594541988863", "photo_flickr_id": "393835783", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50328", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ceremony was followed by a reception . we had a choice of entrees .", "storylet_id": "251641"}], [{"original_text": "The fish was prepared elegantly.", "album_id": "72157594541988863", "photo_flickr_id": "393837894", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50328", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fish was prepared elegantly .", "storylet_id": "251642"}], [{"original_text": "The beef, too, was prepared in a fine manner.", "album_id": "72157594541988863", "photo_flickr_id": "393838435", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50328", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beef , too , was prepared in a fine manner .", "storylet_id": "251643"}], [{"original_text": "Dessert was the best part. Simple and tasty.", "album_id": "72157594541988863", "photo_flickr_id": "393839760", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50328", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dessert was the best part . simple and tasty .", "storylet_id": "251644"}], [{"original_text": "The bride and groom looked so elegant on their wedding day.", "album_id": "72157594541988863", "photo_flickr_id": "393838546", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "50329", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride and groom looked so elegant on their wedding day .", "storylet_id": "251645"}], [{"original_text": "The program was professionally printed and I kept it as a memento.", "album_id": "72157594541988863", "photo_flickr_id": "393835783", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "50329", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the program was professionally printed and i kept it as a memento .", "storylet_id": "251646"}], [{"original_text": "The fish entree at the wedding reception dinner had a tomato based sauce.", "album_id": "72157594541988863", "photo_flickr_id": "393837894", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "50329", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fish entree at the wedding reception dinner had a tomato based sauce .", "storylet_id": "251647"}], [{"original_text": "I love steak, but the steak served at the wedding reception dinner was a bit too rare for me.", "album_id": "72157594541988863", "photo_flickr_id": "393838435", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "50329", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love steak , but the steak served at the wedding reception dinner was a bit too rare for me .", "storylet_id": "251648"}], [{"original_text": "The berries on top of the dessert torte were a perfect compliment to the vanilla layers.", "album_id": "72157594541988863", "photo_flickr_id": "393839760", "setting": "last-3-pick-old-and-tell", "worker_id": "JF9CA5PJKZO56D7", "story_id": "50329", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the berries on top of the dessert torte were a perfect compliment to the vanilla layers .", "storylet_id": "251649"}], [{"original_text": "We flew all night to make it to the wedding. ", "album_id": "41585", "photo_flickr_id": "1582719", "setting": "first-2-pick-and-tell", "worker_id": "NAL4OGXAKB9J4G3", "story_id": "50330", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we flew all night to make it to the wedding .", "storylet_id": "251650"}], [{"original_text": "The reception hall was cozy and beautiful. ", "album_id": "41585", "photo_flickr_id": "1601495", "setting": "first-2-pick-and-tell", "worker_id": "NAL4OGXAKB9J4G3", "story_id": "50330", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the reception hall was cozy and beautiful .", "storylet_id": "251651"}], [{"original_text": "The families posed for a large group portrait.", "album_id": "41585", "photo_flickr_id": "18256580", "setting": "first-2-pick-and-tell", "worker_id": "NAL4OGXAKB9J4G3", "story_id": "50330", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the families posed for a large group portrait .", "storylet_id": "251652"}], [{"original_text": "The dance floor gave a festive atmosphere to the night. ", "album_id": "41585", "photo_flickr_id": "18256518", "setting": "first-2-pick-and-tell", "worker_id": "NAL4OGXAKB9J4G3", "story_id": "50330", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dance floor gave a festive atmosphere to the night .", "storylet_id": "251653"}], [{"original_text": "The flower arrangements were whimsically placed inside cowboy boots. ", "album_id": "41585", "photo_flickr_id": "1612710", "setting": "first-2-pick-and-tell", "worker_id": "NAL4OGXAKB9J4G3", "story_id": "50330", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the flower arrangements were whimsically placed inside cowboy boots .", "storylet_id": "251654"}], [{"original_text": "Here we are preparing to head to another wedding.", "album_id": "41585", "photo_flickr_id": "1584046", "setting": "first-2-pick-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "50331", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are preparing to head to another wedding .", "storylet_id": "251655"}], [{"original_text": "Today was not the best travel day, but we tried to keep our spirits up.", "album_id": "41585", "photo_flickr_id": "1578492", "setting": "first-2-pick-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "50331", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today was not the best travel day , but we tried to keep our spirits up .", "storylet_id": "251656"}], [{"original_text": "Although seeing signs like these let you know you weren't in Kansas anymore, or New York where we are from.", "album_id": "41585", "photo_flickr_id": "1602621", "setting": "first-2-pick-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "50331", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "although seeing signs like these let you know you were n't in location anymore , or location location where we are from .", "storylet_id": "251657"}], [{"original_text": "Still it was great to see everyone, and the wedding was a blast. ", "album_id": "41585", "photo_flickr_id": "18256580", "setting": "first-2-pick-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "50331", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "still it was great to see everyone , and the wedding was a blast .", "storylet_id": "251658"}], [{"original_text": "And, thankfully, the flight back was in much better conditions. ", "album_id": "41585", "photo_flickr_id": "1582719", "setting": "first-2-pick-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "50331", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , thankfully , the flight back was in much better conditions .", "storylet_id": "251659"}], [{"original_text": "Last weekend was very sunny. I went to see my friend's wedding.", "album_id": "41585", "photo_flickr_id": "1582719", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50332", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last weekend was very sunny . i went to see my friend 's wedding .", "storylet_id": "251660"}], [{"original_text": "They were getting married after being together for six years.", "album_id": "41585", "photo_flickr_id": "1601495", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50332", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were getting married after being together for six years .", "storylet_id": "251661"}], [{"original_text": "Everyone had shown up to celebrate.", "album_id": "41585", "photo_flickr_id": "18256580", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50332", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone had shown up to celebrate .", "storylet_id": "251662"}], [{"original_text": "There was a lot of dancing.", "album_id": "41585", "photo_flickr_id": "18256518", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50332", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a lot of dancing .", "storylet_id": "251663"}], [{"original_text": "Afterward they were given all the gifts.", "album_id": "41585", "photo_flickr_id": "1612710", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50332", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward they were given all the gifts .", "storylet_id": "251664"}], [{"original_text": "A man takes a picture of an eclipse out of the airplane window.", "album_id": "41585", "photo_flickr_id": "1582719", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50333", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a man takes a picture of an eclipse out of the airplane window .", "storylet_id": "251665"}], [{"original_text": "When he lands, he meets his family and friends at a restaurant.", "album_id": "41585", "photo_flickr_id": "1601495", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50333", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when he lands , he meets his family and friends at a restaurant .", "storylet_id": "251666"}], [{"original_text": "They all get together for the first time in years for a photo.", "album_id": "41585", "photo_flickr_id": "18256580", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50333", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all get together for the first time in years for a photo .", "storylet_id": "251667"}], [{"original_text": "A few of them share a dance.", "album_id": "41585", "photo_flickr_id": "18256518", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50333", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a few of them share a dance .", "storylet_id": "251668"}], [{"original_text": "They realize that the waiter accidentally put flowers in a boot and not a vase.", "album_id": "41585", "photo_flickr_id": "1612710", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50333", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they realize that the waiter accidentally put flowers in a boot and not a vase .", "storylet_id": "251669"}], [{"original_text": "Laura could not wait to get off the plane. She was traveling to her best friend's wedding.", "album_id": "41585", "photo_flickr_id": "1582719", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "50334", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] could not wait to get off the plane . she was traveling to her best friend 's wedding .", "storylet_id": "251670"}], [{"original_text": "She arrived at the wedding and immediately opened a beer to celebrate.", "album_id": "41585", "photo_flickr_id": "1601495", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "50334", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she arrived at the wedding and immediately opened a beer to celebrate .", "storylet_id": "251671"}], [{"original_text": "Laura saw many of her old friends.", "album_id": "41585", "photo_flickr_id": "18256580", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "50334", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] saw many of her old friends .", "storylet_id": "251672"}], [{"original_text": "She danced the night away.", "album_id": "41585", "photo_flickr_id": "18256518", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "50334", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she danced the night away .", "storylet_id": "251673"}], [{"original_text": "When she left, Laura took some flowers and stuck them in her boots for fun.", "album_id": "41585", "photo_flickr_id": "1612710", "setting": "last-3-pick-old-and-tell", "worker_id": "PPY6LYT9SOLOYZA", "story_id": "50334", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when she left , [female] took some flowers and stuck them in her boots for fun .", "storylet_id": "251674"}], [{"original_text": "The man was very excited and nervous to finally get married.", "album_id": "72057594120703798", "photo_flickr_id": "21206200", "setting": "first-2-pick-and-tell", "worker_id": "O8I53AMHEWB80VF", "story_id": "50335", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man was very excited and nervous to finally get married .", "storylet_id": "251675"}], [{"original_text": "So he went to see his love one more time to prepare himself for the big day.", "album_id": "72057594120703798", "photo_flickr_id": "20981158", "setting": "first-2-pick-and-tell", "worker_id": "O8I53AMHEWB80VF", "story_id": "50335", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so he went to see his love one more time to prepare himself for the big day .", "storylet_id": "251676"}], [{"original_text": "He was giddy with anticipation as the ceremony was going on.", "album_id": "72057594120703798", "photo_flickr_id": "20981169", "setting": "first-2-pick-and-tell", "worker_id": "O8I53AMHEWB80VF", "story_id": "50335", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was giddy with anticipation as the ceremony was going on .", "storylet_id": "251677"}], [{"original_text": "It finally happened and he couldn't be any happier.", "album_id": "72057594120703798", "photo_flickr_id": "20981188", "setting": "first-2-pick-and-tell", "worker_id": "O8I53AMHEWB80VF", "story_id": "50335", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it finally happened and he could n't be any happier .", "storylet_id": "251678"}], [{"original_text": "He had decided that that day, surrounded by friends and family, and marrying his true love, was the best day of his life.", "album_id": "72057594120703798", "photo_flickr_id": "3565793163", "setting": "first-2-pick-and-tell", "worker_id": "O8I53AMHEWB80VF", "story_id": "50335", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he had decided that that day , surrounded by friends and family , and marrying his true love , was the best day of his life .", "storylet_id": "251679"}], [{"original_text": "Talking happily with one of the guests from the wedding.", "album_id": "72057594120703798", "photo_flickr_id": "21206144", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "50336", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "talking happily with one of the guests from the wedding .", "storylet_id": "251680"}], [{"original_text": "A quick photo of the bride and groom looking nice.", "album_id": "72057594120703798", "photo_flickr_id": "21206192", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "50336", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a quick photo of the bride and groom looking nice .", "storylet_id": "251681"}], [{"original_text": "He is sort of camera shy. ", "album_id": "72057594120703798", "photo_flickr_id": "21206200", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "50336", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he is sort of camera shy .", "storylet_id": "251682"}], [{"original_text": "Happily wed, these two start the rest of their lives.", "album_id": "72057594120703798", "photo_flickr_id": "20981179", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "50336", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "happily wed , these two start the rest of their lives .", "storylet_id": "251683"}], [{"original_text": "The after party is in full swing!", "album_id": "72057594120703798", "photo_flickr_id": "21206249", "setting": "first-2-pick-and-tell", "worker_id": "RNV5LCXC8MM54WX", "story_id": "50336", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the after party is in full swing !", "storylet_id": "251684"}], [{"original_text": "This is my uncle at his rehearsal dinner.", "album_id": "72057594120703798", "photo_flickr_id": "21206200", "setting": "last-3-pick-old-and-tell", "worker_id": "45UB9OHSAA33VED", "story_id": "50337", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my uncle at his rehearsal dinner .", "storylet_id": "251685"}], [{"original_text": "And here he is with his almost-wife! I'm so excited that she's joining our family.", "album_id": "72057594120703798", "photo_flickr_id": "20981158", "setting": "last-3-pick-old-and-tell", "worker_id": "45UB9OHSAA33VED", "story_id": "50337", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and here he is with his almost-wife ! i 'm so excited that she 's joining our family .", "storylet_id": "251686"}], [{"original_text": "It was hard to get pictures during the wedding, but here they are!", "album_id": "72057594120703798", "photo_flickr_id": "20981169", "setting": "last-3-pick-old-and-tell", "worker_id": "45UB9OHSAA33VED", "story_id": "50337", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was hard to get pictures during the wedding , but here they are !", "storylet_id": "251687"}], [{"original_text": "Heading down the aisle seconds after being named husband and wife!", "album_id": "72057594120703798", "photo_flickr_id": "20981188", "setting": "last-3-pick-old-and-tell", "worker_id": "45UB9OHSAA33VED", "story_id": "50337", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "heading down the aisle seconds after being named husband and wife !", "storylet_id": "251688"}], [{"original_text": "The reception was awesome and we had a great time.", "album_id": "72057594120703798", "photo_flickr_id": "3565793163", "setting": "last-3-pick-old-and-tell", "worker_id": "45UB9OHSAA33VED", "story_id": "50337", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the reception was awesome and we had a great time .", "storylet_id": "251689"}], [{"original_text": "I can't wait to be married to the love of my life.", "album_id": "72057594120703798", "photo_flickr_id": "21206200", "setting": "last-3-pick-old-and-tell", "worker_id": "CVSK6Y618VYSU5L", "story_id": "50338", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i ca n't wait to be married to the love of my life .", "storylet_id": "251690"}], [{"original_text": "We are tired, but everything will be worth it in the end.", "album_id": "72057594120703798", "photo_flickr_id": "20981158", "setting": "last-3-pick-old-and-tell", "worker_id": "CVSK6Y618VYSU5L", "story_id": "50338", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are tired , but everything will be worth it in the end .", "storylet_id": "251691"}], [{"original_text": "The wedding vows are finally being said and I couldn't be more happy.", "album_id": "72057594120703798", "photo_flickr_id": "20981169", "setting": "last-3-pick-old-and-tell", "worker_id": "CVSK6Y618VYSU5L", "story_id": "50338", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the wedding vows are finally being said and i could n't be more happy .", "storylet_id": "251692"}], [{"original_text": "Now all that's left is to enjoy our reception and attend to our family and friends.", "album_id": "72057594120703798", "photo_flickr_id": "20981188", "setting": "last-3-pick-old-and-tell", "worker_id": "CVSK6Y618VYSU5L", "story_id": "50338", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now all that 's left is to enjoy our reception and attend to our family and friends .", "storylet_id": "251693"}], [{"original_text": "Thankfully are reception went off without a hitch and all had a good time.", "album_id": "72057594120703798", "photo_flickr_id": "3565793163", "setting": "last-3-pick-old-and-tell", "worker_id": "CVSK6Y618VYSU5L", "story_id": "50338", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thankfully are reception went off without a hitch and all had a good time .", "storylet_id": "251694"}], [{"original_text": "I am happy because my brother has found his true love.", "album_id": "72057594120703798", "photo_flickr_id": "21206144", "setting": "last-3-pick-old-and-tell", "worker_id": "CZ0MBPH7U9DY79I", "story_id": "50339", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am happy because my brother has found his true love .", "storylet_id": "251695"}], [{"original_text": "Don't they look happy together? I think they were together in a past life!", "album_id": "72057594120703798", "photo_flickr_id": "21206192", "setting": "last-3-pick-old-and-tell", "worker_id": "CZ0MBPH7U9DY79I", "story_id": "50339", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "do n't they look happy together ? i think they were together in a past life !", "storylet_id": "251696"}], [{"original_text": "See how handsome he is? Alina took this picture. Oh, if only a man would look at me that way!", "album_id": "72057594120703798", "photo_flickr_id": "21206200", "setting": "last-3-pick-old-and-tell", "worker_id": "CZ0MBPH7U9DY79I", "story_id": "50339", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "see how handsome he is ? alina took this picture . oh , if only a man would look at me that way !", "storylet_id": "251697"}], [{"original_text": "I found this picture of them together on a website devoted to the lives of French soldiers who died at Verdun in WWI. They were married in 1913.", "album_id": "72057594120703798", "photo_flickr_id": "20981179", "setting": "last-3-pick-old-and-tell", "worker_id": "CZ0MBPH7U9DY79I", "story_id": "50339", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i found this picture of them together on a website devoted to the lives of french soldiers who died at location in wwi . they were married in 1913 .", "storylet_id": "251698"}], [{"original_text": "I am dancing because no world war can destroy their true love now!", "album_id": "72057594120703798", "photo_flickr_id": "21206249", "setting": "last-3-pick-old-and-tell", "worker_id": "CZ0MBPH7U9DY79I", "story_id": "50339", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am dancing because no world war can destroy their true love now !", "storylet_id": "251699"}], [{"original_text": "The bride was so happy she got married.", "album_id": "214418", "photo_flickr_id": "106221", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "50340", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride was so happy she got married .", "storylet_id": "251700"}], [{"original_text": "The bride and groom both took pictures at the church.", "album_id": "214418", "photo_flickr_id": "106235", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "50340", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom both took pictures at the church .", "storylet_id": "251701"}], [{"original_text": "The friends of the married couple were glad to be there.", "album_id": "214418", "photo_flickr_id": "106238", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "50340", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the friends of the married couple were glad to be there .", "storylet_id": "251702"}], [{"original_text": "The best man was excited to give his speech after.", "album_id": "214418", "photo_flickr_id": "106246", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "50340", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the best man was excited to give his speech after .", "storylet_id": "251703"}], [{"original_text": "Over all the wedding was perfect.", "album_id": "214418", "photo_flickr_id": "106254", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "50340", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "over all the wedding was perfect .", "storylet_id": "251704"}], [{"original_text": "I went to a really wonderful wedding last weekend.", "album_id": "214418", "photo_flickr_id": "106158", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "50341", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a really wonderful wedding last weekend .", "storylet_id": "251705"}], [{"original_text": "The bride and her bridesmaids looked absolutely gorgeous.", "album_id": "214418", "photo_flickr_id": "106160", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "50341", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and her bridesmaids looked absolutely gorgeous .", "storylet_id": "251706"}], [{"original_text": "It was so precious when they cut the cake together.", "album_id": "214418", "photo_flickr_id": "106223", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "50341", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was so precious when they cut the cake together .", "storylet_id": "251707"}], [{"original_text": "They are going to be such a great couple. Their love was so apparent.", "album_id": "214418", "photo_flickr_id": "106255", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "50341", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they are going to be such a great couple . their love was so apparent .", "storylet_id": "251708"}], [{"original_text": "We had a blast dancing the night away and watching all the festivities unfold.", "album_id": "214418", "photo_flickr_id": "106259", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "50341", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a blast dancing the night away and watching all the festivities unfold .", "storylet_id": "251709"}], [{"original_text": "Shelly is scared, she's getting married.", "album_id": "214418", "photo_flickr_id": "106221", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "50342", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is scared , she 's getting married .", "storylet_id": "251710"}], [{"original_text": "This is her first wedding photo.", "album_id": "214418", "photo_flickr_id": "106235", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "50342", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is her first wedding photo .", "storylet_id": "251711"}], [{"original_text": "And here she is with everyone in the wedding.", "album_id": "214418", "photo_flickr_id": "106238", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "50342", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and here she is with everyone in the wedding .", "storylet_id": "251712"}], [{"original_text": "This is Johnny, her husband with Lockla, the best man.", "album_id": "214418", "photo_flickr_id": "106246", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "50342", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is [male] , her husband with location , the best man .", "storylet_id": "251713"}], [{"original_text": "Here's Johnny and his family.", "album_id": "214418", "photo_flickr_id": "106254", "setting": "last-3-pick-old-and-tell", "worker_id": "JPTCJKIZJ9WTY59", "story_id": "50342", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's [male] and his family .", "storylet_id": "251714"}], [{"original_text": "The bride poses for the camera.", "album_id": "214418", "photo_flickr_id": "106221", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50343", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride poses for the camera .", "storylet_id": "251715"}], [{"original_text": "The bride and groom walk the stairway.", "album_id": "214418", "photo_flickr_id": "106235", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50343", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom walk the stairway .", "storylet_id": "251716"}], [{"original_text": "They enjoy the fresh air outside.", "album_id": "214418", "photo_flickr_id": "106238", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50343", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they enjoy the fresh air outside .", "storylet_id": "251717"}], [{"original_text": "The groom is next to the groomsman.", "album_id": "214418", "photo_flickr_id": "106246", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50343", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the groom is next to the groomsman .", "storylet_id": "251718"}], [{"original_text": "Lastly, we took photos with the groom.", "album_id": "214418", "photo_flickr_id": "106254", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50343", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , we took photos with the groom .", "storylet_id": "251719"}], [{"original_text": "Tom and Jill's Wedding.", "album_id": "214418", "photo_flickr_id": "106158", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "50344", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] 's wedding .", "storylet_id": "251720"}], [{"original_text": "All the bridal maids gather for a picture", "album_id": "214418", "photo_flickr_id": "106160", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "50344", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the bridal maids gather for a picture", "storylet_id": "251721"}], [{"original_text": "After they tie the knot, It's time to cut some cake.", "album_id": "214418", "photo_flickr_id": "106223", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "50344", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after they tie the knot , it 's time to cut some cake .", "storylet_id": "251722"}], [{"original_text": "The lovely couple togther.", "album_id": "214418", "photo_flickr_id": "106255", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "50344", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lovely couple togther .", "storylet_id": "251723"}], [{"original_text": " The dance party starts. What a great event", "album_id": "214418", "photo_flickr_id": "106259", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "50344", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dance party starts . what a great event", "storylet_id": "251724"}], [{"original_text": "It was the big day. I started getting ready for the wedding.", "album_id": "72157600024838608", "photo_flickr_id": "433039260", "setting": "first-2-pick-and-tell", "worker_id": "CNKST1EBNP3YHXT", "story_id": "50345", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the big day . i started getting ready for the wedding .", "storylet_id": "251725"}], [{"original_text": "My very best friend was there.", "album_id": "72157600024838608", "photo_flickr_id": "433033946", "setting": "first-2-pick-and-tell", "worker_id": "CNKST1EBNP3YHXT", "story_id": "50345", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my very best friend was there .", "storylet_id": "251726"}], [{"original_text": "We got married outside. What a beautiful day!", "album_id": "72157600024838608", "photo_flickr_id": "433039246", "setting": "first-2-pick-and-tell", "worker_id": "CNKST1EBNP3YHXT", "story_id": "50345", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got married outside . what a beautiful day !", "storylet_id": "251727"}], [{"original_text": "We did all the traditional parts like removing the garter.", "album_id": "72157600024838608", "photo_flickr_id": "433013836", "setting": "first-2-pick-and-tell", "worker_id": "CNKST1EBNP3YHXT", "story_id": "50345", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we did all the traditional parts like removing the garter .", "storylet_id": "251728"}], [{"original_text": "And finally we cut the cake. What a perfect day!", "album_id": "72157600024838608", "photo_flickr_id": "433031095", "setting": "first-2-pick-and-tell", "worker_id": "CNKST1EBNP3YHXT", "story_id": "50345", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and finally we cut the cake . what a perfect day !", "storylet_id": "251729"}], [{"original_text": "The bride and groom finally got married.", "album_id": "72157600024838608", "photo_flickr_id": "433033936", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "50346", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride and groom finally got married .", "storylet_id": "251730"}], [{"original_text": "They got together for a group photo.", "album_id": "72157600024838608", "photo_flickr_id": "433031105", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "50346", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got together for a group photo .", "storylet_id": "251731"}], [{"original_text": " The bride and groom decided to cut the cake.", "album_id": "72157600024838608", "photo_flickr_id": "433031095", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "50346", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and groom decided to cut the cake .", "storylet_id": "251732"}], [{"original_text": "The men at the wedding we're ready to party.", "album_id": "72157600024838608", "photo_flickr_id": "433013822", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "50346", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the men at the wedding we 're ready to party .", "storylet_id": "251733"}], [{"original_text": "The guests were all enjoying themselves.", "album_id": "72157600024838608", "photo_flickr_id": "433013846", "setting": "first-2-pick-and-tell", "worker_id": "KVGANW4A2MRVG1V", "story_id": "50346", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the guests were all enjoying themselves .", "storylet_id": "251734"}], [{"original_text": "Mother of the bride relaxing until its time to get ready.", "album_id": "72157600024838608", "photo_flickr_id": "433039260", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "50347", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mother of the bride relaxing until its time to get ready .", "storylet_id": "251735"}], [{"original_text": "Mother and daughter so happy together.", "album_id": "72157600024838608", "photo_flickr_id": "433033946", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "50347", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mother and daughter so happy together .", "storylet_id": "251736"}], [{"original_text": "The bride and her entourage.", "album_id": "72157600024838608", "photo_flickr_id": "433039246", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "50347", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and her entourage .", "storylet_id": "251737"}], [{"original_text": "The groom is trying to put on her belt.", "album_id": "72157600024838608", "photo_flickr_id": "433013836", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "50347", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the groom is trying to put on her belt .", "storylet_id": "251738"}], [{"original_text": "The cake looks delicious.", "album_id": "72157600024838608", "photo_flickr_id": "433031095", "setting": "last-3-pick-old-and-tell", "worker_id": "MWT4SST9YNI8G0Z", "story_id": "50347", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cake looks delicious .", "storylet_id": "251739"}], [{"original_text": "We were so happy to be married!", "album_id": "72157600024838608", "photo_flickr_id": "433033936", "setting": "last-3-pick-old-and-tell", "worker_id": "5U8EXIDQWH2GMLR", "story_id": "50348", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were so happy to be married !", "storylet_id": "251740"}], [{"original_text": "Everyone wanted to take a picture with us and we were so happy to do it. We couldn't keep the smiles off are faces. ", "album_id": "72157600024838608", "photo_flickr_id": "433031105", "setting": "last-3-pick-old-and-tell", "worker_id": "5U8EXIDQWH2GMLR", "story_id": "50348", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone wanted to take a picture with us and we were so happy to do it . we could n't keep the smiles off are faces .", "storylet_id": "251741"}], [{"original_text": "We cut the beautiful cake my bridesmaid had made for us. It was so good.", "album_id": "72157600024838608", "photo_flickr_id": "433031095", "setting": "last-3-pick-old-and-tell", "worker_id": "5U8EXIDQWH2GMLR", "story_id": "50348", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we cut the beautiful cake my bridesmaid had made for us . it was so good .", "storylet_id": "251742"}], [{"original_text": "After this came the garter toss. Man were the men excited about this!", "album_id": "72157600024838608", "photo_flickr_id": "433013822", "setting": "last-3-pick-old-and-tell", "worker_id": "5U8EXIDQWH2GMLR", "story_id": "50348", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after this came the garter toss . man were the men excited about this !", "storylet_id": "251743"}], [{"original_text": "At the end, I went to say good bye to my brother and his fiance. They helped us out so much with the wedding.", "album_id": "72157600024838608", "photo_flickr_id": "433013846", "setting": "last-3-pick-old-and-tell", "worker_id": "5U8EXIDQWH2GMLR", "story_id": "50348", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , i went to say good bye to my brother and his fiance . they helped us out so much with the wedding .", "storylet_id": "251744"}], [{"original_text": "Today was a very special day for me.", "album_id": "72157600024838608", "photo_flickr_id": "433039260", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "50349", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was a very special day for me .", "storylet_id": "251745"}], [{"original_text": "I had all of my best friends with me.", "album_id": "72157600024838608", "photo_flickr_id": "433033946", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "50349", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had all of my best friends with me .", "storylet_id": "251746"}], [{"original_text": "It was my wedding day and everything was in place.", "album_id": "72157600024838608", "photo_flickr_id": "433039246", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "50349", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was my wedding day and everything was in place .", "storylet_id": "251747"}], [{"original_text": "My wedding was very special and unforgettable. ", "album_id": "72157600024838608", "photo_flickr_id": "433013836", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "50349", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my wedding was very special and unforgettable .", "storylet_id": "251748"}], [{"original_text": "Our cake was perfectly made and was very good.", "album_id": "72157600024838608", "photo_flickr_id": "433031095", "setting": "last-3-pick-old-and-tell", "worker_id": "3LRE1OHZWWPB6F7", "story_id": "50349", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our cake was perfectly made and was very good .", "storylet_id": "251749"}], [{"original_text": "The wedding party gets together for a photo.", "album_id": "419705", "photo_flickr_id": "17691953", "setting": "first-2-pick-and-tell", "worker_id": "2ZR6UBWK0DTYG50", "story_id": "50350", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding party gets together for a photo .", "storylet_id": "251750"}], [{"original_text": "The bride and groom share their first dance together.", "album_id": "419705", "photo_flickr_id": "17691955", "setting": "first-2-pick-and-tell", "worker_id": "2ZR6UBWK0DTYG50", "story_id": "50350", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom share their first dance together .", "storylet_id": "251751"}], [{"original_text": "The bride and groom cut their wedding cake together.", "album_id": "419705", "photo_flickr_id": "17695101", "setting": "first-2-pick-and-tell", "worker_id": "2ZR6UBWK0DTYG50", "story_id": "50350", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and groom cut their wedding cake together .", "storylet_id": "251752"}], [{"original_text": "The bride and groom pose for a lovely photo.", "album_id": "419705", "photo_flickr_id": "17695102", "setting": "first-2-pick-and-tell", "worker_id": "2ZR6UBWK0DTYG50", "story_id": "50350", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride and groom pose for a lovely photo .", "storylet_id": "251753"}], [{"original_text": "The women of the wedding party huddle together for a photo.", "album_id": "419705", "photo_flickr_id": "17691952", "setting": "first-2-pick-and-tell", "worker_id": "2ZR6UBWK0DTYG50", "story_id": "50350", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the women of the wedding party huddle together for a photo .", "storylet_id": "251754"}], [{"original_text": "All the best friends got ready together for her wedding.", "album_id": "419705", "photo_flickr_id": "17691950", "setting": "first-2-pick-and-tell", "worker_id": "H1MEHE0KGPOE1VI", "story_id": "50351", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all the best friends got ready together for her wedding .", "storylet_id": "251755"}], [{"original_text": "We all took pictures before leaving for the ceremony.", "album_id": "419705", "photo_flickr_id": "17691952", "setting": "first-2-pick-and-tell", "worker_id": "H1MEHE0KGPOE1VI", "story_id": "50351", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all took pictures before leaving for the ceremony .", "storylet_id": "251756"}], [{"original_text": "The actual ceremony itself was so beautiful.", "album_id": "419705", "photo_flickr_id": "17691953", "setting": "first-2-pick-and-tell", "worker_id": "H1MEHE0KGPOE1VI", "story_id": "50351", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the actual ceremony itself was so beautiful .", "storylet_id": "251757"}], [{"original_text": "The bride and groom danced to a beautiful song for their first dance.", "album_id": "419705", "photo_flickr_id": "17691955", "setting": "first-2-pick-and-tell", "worker_id": "H1MEHE0KGPOE1VI", "story_id": "50351", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride and groom danced to a beautiful song for their first dance .", "storylet_id": "251758"}], [{"original_text": "We finished off the night by having a bite to eat.", "album_id": "419705", "photo_flickr_id": "17695105", "setting": "first-2-pick-and-tell", "worker_id": "H1MEHE0KGPOE1VI", "story_id": "50351", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finished off the night by having a bite to eat .", "storylet_id": "251759"}], [{"original_text": "The night before the wedding, we huddled together and gossiped, just like we did at Mt. Holyoke so many years before. ", "album_id": "419705", "photo_flickr_id": "17691950", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "50352", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the night before the wedding , we huddled together and gossiped , just like we did at mt . location so many years before .", "storylet_id": "251760"}], [{"original_text": "And now look at us - one of us actually getting married. ", "album_id": "419705", "photo_flickr_id": "17691952", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "50352", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and now look at us - one of us actually getting married .", "storylet_id": "251761"}], [{"original_text": "It is so like Sarah to have her vows taking place on a stage with a velvety backdrop. ", "album_id": "419705", "photo_flickr_id": "17691953", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "50352", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is so like [female] to have her vows taking place on a stage with a velvety backdrop .", "storylet_id": "251762"}], [{"original_text": "And, of course, the first dance took place on stage. ", "album_id": "419705", "photo_flickr_id": "17691955", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "50352", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , of course , the first dance took place on stage .", "storylet_id": "251763"}], [{"original_text": "I mean, the ceremony in itself was lovely, but it was weird to be both a part of the wedding party and forced to look on, facing the stage, as though we were mere ticket-holders, too. ", "album_id": "419705", "photo_flickr_id": "17695105", "setting": "last-3-pick-old-and-tell", "worker_id": "W42WXONDS2FTVWN", "story_id": "50352", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i mean , the ceremony in itself was lovely , but it was weird to be both a part of the wedding party and forced to look on , facing the stage , as though we were mere ticket-holders , too .", "storylet_id": "251764"}], [{"original_text": "Everyone had shown up to the wedding last Thursday.", "album_id": "419705", "photo_flickr_id": "17691953", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50353", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone had shown up to the wedding last thursday .", "storylet_id": "251765"}], [{"original_text": "The bride and groom were very happy that so many people could make it.", "album_id": "419705", "photo_flickr_id": "17691955", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50353", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom were very happy that so many people could make it .", "storylet_id": "251766"}], [{"original_text": "After a few hours it was time to cut and serve the cake.", "album_id": "419705", "photo_flickr_id": "17695101", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50353", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after a few hours it was time to cut and serve the cake .", "storylet_id": "251767"}], [{"original_text": "The bride and groom had a great time taking a lot of pictures.", "album_id": "419705", "photo_flickr_id": "17695102", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50353", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride and groom had a great time taking a lot of pictures .", "storylet_id": "251768"}], [{"original_text": "There were lots of pictures taken that day.", "album_id": "419705", "photo_flickr_id": "17691952", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50353", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were lots of pictures taken that day .", "storylet_id": "251769"}], [{"original_text": "The bride, groom, and others pose on stage for the wedding pictures.", "album_id": "419705", "photo_flickr_id": "17691953", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50354", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride , groom , and others pose on stage for the wedding pictures .", "storylet_id": "251770"}], [{"original_text": "The newly married couple dance for the first time.", "album_id": "419705", "photo_flickr_id": "17691955", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50354", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the newly married couple dance for the first time .", "storylet_id": "251771"}], [{"original_text": "The groom helps her cut the delicious cake.", "album_id": "419705", "photo_flickr_id": "17695101", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50354", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the groom helps her cut the delicious cake .", "storylet_id": "251772"}], [{"original_text": "They get home to pose for many of their families pictures.", "album_id": "419705", "photo_flickr_id": "17695102", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50354", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they get home to pose for many of their families pictures .", "storylet_id": "251773"}], [{"original_text": "The bride poses with her best friends.", "album_id": "419705", "photo_flickr_id": "17691952", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50354", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride poses with her best friends .", "storylet_id": "251774"}], [{"original_text": "My sister Shelly got married last weekend.", "album_id": "419257", "photo_flickr_id": "17673792", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50355", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister [female] got married last weekend .", "storylet_id": "251775"}], [{"original_text": "My cousin Gina was one of the bridesmaids.", "album_id": "419257", "photo_flickr_id": "17673213", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50355", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my cousin [female] was one of the bridesmaids .", "storylet_id": "251776"}], [{"original_text": "My dad was so proud walking her down the aisle.", "album_id": "419257", "photo_flickr_id": "17673237", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50355", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my dad was so proud walking her down the aisle .", "storylet_id": "251777"}], [{"original_text": "The reception that followed was fun.", "album_id": "419257", "photo_flickr_id": "17673444", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50355", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the reception that followed was fun .", "storylet_id": "251778"}], [{"original_text": "At the end, I tried to catch the bouquet, but I failed. Still, it was a beautiful day.", "album_id": "419257", "photo_flickr_id": "17673618", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50355", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , i tried to catch the bouquet , but i failed . still , it was a beautiful day .", "storylet_id": "251779"}], [{"original_text": "Everyone was getting ready for the wedding.", "album_id": "419257", "photo_flickr_id": "17673071", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "50356", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was getting ready for the wedding .", "storylet_id": "251780"}], [{"original_text": "We were really excited, especially the groom and bride.", "album_id": "419257", "photo_flickr_id": "17673545", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "50356", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were really excited , especially the groom and bride .", "storylet_id": "251781"}], [{"original_text": "We all took many pictures together. ", "album_id": "419257", "photo_flickr_id": "17673766", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "50356", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all took many pictures together .", "storylet_id": "251782"}], [{"original_text": "The bride looked gorgeous.", "album_id": "419257", "photo_flickr_id": "17673792", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "50356", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride looked gorgeous .", "storylet_id": "251783"}], [{"original_text": "Even though the day was serious, there were fun moments as well.", "album_id": "419257", "photo_flickr_id": "17673824", "setting": "first-2-pick-and-tell", "worker_id": "GR4JHP1D1VWUYJN", "story_id": "50356", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even though the day was serious , there were fun moments as well .", "storylet_id": "251784"}], [{"original_text": "Bride got her flowers and is ready to get married.", "album_id": "419257", "photo_flickr_id": "17673792", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50357", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "bride got her flowers and is ready to get married .", "storylet_id": "251785"}], [{"original_text": "The bridesmaids are happy also waiting for them to get married , then", "album_id": "419257", "photo_flickr_id": "17673213", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50357", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bridesmaids are happy also waiting for them to get married , then", "storylet_id": "251786"}], [{"original_text": "the bride and her dad walks her to the stand , and ", "album_id": "419257", "photo_flickr_id": "17673237", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50357", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and her dad walks her to the stand , and", "storylet_id": "251787"}], [{"original_text": "the couple are pronounced married and get ready to kiss , and finally ", "album_id": "419257", "photo_flickr_id": "17673444", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50357", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple are pronounced married and get ready to kiss , and finally", "storylet_id": "251788"}], [{"original_text": "they start to have fun and dancing at the wedding ", "album_id": "419257", "photo_flickr_id": "17673618", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50357", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they start to have fun and dancing at the wedding", "storylet_id": "251789"}], [{"original_text": "Tom and jay are having fun at the wedding", "album_id": "419257", "photo_flickr_id": "17673071", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "50358", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and jay are having fun at the wedding", "storylet_id": "251790"}], [{"original_text": " They meet up with the lucky couple for a picture.", "album_id": "419257", "photo_flickr_id": "17673545", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "50358", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they meet up with the lucky couple for a picture .", "storylet_id": "251791"}], [{"original_text": "Sam and Al smile at the big event.", "album_id": "419257", "photo_flickr_id": "17673766", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "50358", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and [male] smile at the big event .", "storylet_id": "251792"}], [{"original_text": "The Bride shows off her bouquet. ", "album_id": "419257", "photo_flickr_id": "17673792", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "50358", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride shows off her bouquet .", "storylet_id": "251793"}], [{"original_text": "Sandra is her room after a wonderful night", "album_id": "419257", "photo_flickr_id": "17673824", "setting": "last-3-pick-old-and-tell", "worker_id": "D5YFBYZASNBBY2A", "story_id": "50358", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] is her room after a wonderful night", "storylet_id": "251794"}], [{"original_text": "The bride was so excited to get married.", "album_id": "419257", "photo_flickr_id": "17673792", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50359", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride was so excited to get married .", "storylet_id": "251795"}], [{"original_text": "The bride's maids took their place for the wedding.", "album_id": "419257", "photo_flickr_id": "17673213", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50359", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride 's maids took their place for the wedding .", "storylet_id": "251796"}], [{"original_text": "Then the bride walked down the aisle with her father.", "album_id": "419257", "photo_flickr_id": "17673237", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50359", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the bride walked down the aisle with her father .", "storylet_id": "251797"}], [{"original_text": "After the wedding the bride and groom had their first dance.", "album_id": "419257", "photo_flickr_id": "17673444", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50359", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the wedding the bride and groom had their first dance .", "storylet_id": "251798"}], [{"original_text": "All of their friends and family threw a huge party.", "album_id": "419257", "photo_flickr_id": "17673618", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50359", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of their friends and family threw a huge party .", "storylet_id": "251799"}], [{"original_text": "Maybe this is how you normally picture an Indian wedding. ", "album_id": "770686", "photo_flickr_id": "28495313", "setting": "first-2-pick-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "50360", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "maybe this is how you normally picture an indian wedding .", "storylet_id": "251800"}], [{"original_text": "Or perhaps this staged shot?", "album_id": "770686", "photo_flickr_id": "28495214", "setting": "first-2-pick-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "50360", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "or perhaps this staged shot ?", "storylet_id": "251801"}], [{"original_text": "Or maybe this grouping that implies the guys are off by themselves. ", "album_id": "770686", "photo_flickr_id": "28495065", "setting": "first-2-pick-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "50360", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "or maybe this grouping that implies the guys are off by themselves .", "storylet_id": "251802"}], [{"original_text": "But, you are missing out on the real fun. ", "album_id": "770686", "photo_flickr_id": "28495114", "setting": "first-2-pick-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "50360", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but , you are missing out on the real fun .", "storylet_id": "251803"}], [{"original_text": "Come to an Indian wedding and be ready to dance!", "album_id": "770686", "photo_flickr_id": "28495189", "setting": "first-2-pick-and-tell", "worker_id": "TPO9ISSJTRZV2K9", "story_id": "50360", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "come to an indian wedding and be ready to dance !", "storylet_id": "251804"}], [{"original_text": "It was my best friend's big day!", "album_id": "770686", "photo_flickr_id": "28495271", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "50361", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was my best friend 's big day !", "storylet_id": "251805"}], [{"original_text": "It was great to seem them all going through the ceremony.", "album_id": "770686", "photo_flickr_id": "28495093", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "50361", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was great to seem them all going through the ceremony .", "storylet_id": "251806"}], [{"original_text": "Some of the guests just wanted to sit down and relax.", "album_id": "770686", "photo_flickr_id": "28495102", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "50361", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the guests just wanted to sit down and relax .", "storylet_id": "251807"}], [{"original_text": "While others of us wanted to dance!", "album_id": "770686", "photo_flickr_id": "28495189", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "50361", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while others of us wanted to dance !", "storylet_id": "251808"}], [{"original_text": "It was great to see so many familiar faces.", "album_id": "770686", "photo_flickr_id": "28495155", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "50361", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was great to see so many familiar faces .", "storylet_id": "251809"}], [{"original_text": "They took a lot of pictures.", "album_id": "770686", "photo_flickr_id": "28495313", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "50362", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they took a lot of pictures .", "storylet_id": "251810"}], [{"original_text": "They took pictures as a group.", "album_id": "770686", "photo_flickr_id": "28495214", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "50362", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took pictures as a group .", "storylet_id": "251811"}], [{"original_text": "The main group was the center of attention.", "album_id": "770686", "photo_flickr_id": "28495065", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "50362", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the main group was the center of attention .", "storylet_id": "251812"}], [{"original_text": "They met up after the party.", "album_id": "770686", "photo_flickr_id": "28495114", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "50362", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they met up after the party .", "storylet_id": "251813"}], [{"original_text": "The party was a lot of fun for everyone in it.", "album_id": "770686", "photo_flickr_id": "28495189", "setting": "last-3-pick-old-and-tell", "worker_id": "ERO6HJSVY58SKVE", "story_id": "50362", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the party was a lot of fun for everyone in it .", "storylet_id": "251814"}], [{"original_text": "There were many people at the party last week.", "album_id": "770686", "photo_flickr_id": "28495313", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50363", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many people at the party last week .", "storylet_id": "251815"}], [{"original_text": "Everyone had a great time.", "album_id": "770686", "photo_flickr_id": "28495214", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50363", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone had a great time .", "storylet_id": "251816"}], [{"original_text": "The party began with the start of a traditional prayer.", "album_id": "770686", "photo_flickr_id": "28495065", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50363", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the party began with the start of a traditional prayer .", "storylet_id": "251817"}], [{"original_text": "Everyone had a great time praying.", "album_id": "770686", "photo_flickr_id": "28495114", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50363", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone had a great time praying .", "storylet_id": "251818"}], [{"original_text": "Afterward it was time for dancing and everyone got up to dance.", "album_id": "770686", "photo_flickr_id": "28495189", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50363", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward it was time for dancing and everyone got up to dance .", "storylet_id": "251819"}], [{"original_text": "The groom and his buds pose for the camera.", "album_id": "770686", "photo_flickr_id": "28495271", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50364", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the groom and his buds pose for the camera .", "storylet_id": "251820"}], [{"original_text": "They all perform an indian ritual in front of everyone.", "album_id": "770686", "photo_flickr_id": "28495093", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50364", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all perform an indian ritual in front of everyone .", "storylet_id": "251821"}], [{"original_text": "The groom and some family talk with each other.", "album_id": "770686", "photo_flickr_id": "28495102", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50364", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the groom and some family talk with each other .", "storylet_id": "251822"}], [{"original_text": "The bride looks on as the others dance.", "album_id": "770686", "photo_flickr_id": "28495189", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50364", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride looks on as the others dance .", "storylet_id": "251823"}], [{"original_text": "The whole family then huddles together for a photo", "album_id": "770686", "photo_flickr_id": "28495155", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50364", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the whole family then huddles together for a photo", "storylet_id": "251824"}], [{"original_text": "The wedding dress for the big day", "album_id": "872064", "photo_flickr_id": "39617093", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "50365", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding dress for the big day", "storylet_id": "251825"}], [{"original_text": "The bride stairs out the window from the reception room excited for today", "album_id": "872064", "photo_flickr_id": "39617091", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "50365", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride stairs out the window from the reception room excited for today", "storylet_id": "251826"}], [{"original_text": "the brides party all together in matching dresses", "album_id": "872064", "photo_flickr_id": "39617096", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "50365", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the brides party all together in matching dresses", "storylet_id": "251827"}], [{"original_text": "Now the flower girl is having some fun with bubbles", "album_id": "872064", "photo_flickr_id": "39640138", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "50365", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now the flower girl is having some fun with bubbles", "storylet_id": "251828"}], [{"original_text": "the pet hedgehog even came to congratulate the married couple", "album_id": "872064", "photo_flickr_id": "39640142", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "50365", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the pet hedgehog even came to congratulate the married couple", "storylet_id": "251829"}], [{"original_text": "It was the start of my wedding day as I marveled at my beautiful dress hanging up.", "album_id": "872064", "photo_flickr_id": "39617093", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "50366", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the start of my wedding day as i marveled at my beautiful dress hanging up .", "storylet_id": "251830"}], [{"original_text": "Our cute little flower girl got the day started for us. Isn't she adorable?", "album_id": "872064", "photo_flickr_id": "39617094", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "50366", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our cute little flower girl got the day started for us . is n't she adorable ?", "storylet_id": "251831"}], [{"original_text": "I took some pictures with my bridesmaids; I love them so much.", "album_id": "872064", "photo_flickr_id": "39617096", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "50366", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took some pictures with my bridesmaids ; i love them so much .", "storylet_id": "251832"}], [{"original_text": "My cake was small, but it was perfect. ", "album_id": "872064", "photo_flickr_id": "39617091", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "50366", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my cake was small , but it was perfect .", "storylet_id": "251833"}], [{"original_text": "By the end of the night I was blowing bubbles for fun, it brought me back to the great memories I had as a child.", "album_id": "872064", "photo_flickr_id": "39617097", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "50366", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of the night i was blowing bubbles for fun , it brought me back to the great memories i had as a child .", "storylet_id": "251834"}], [{"original_text": "The wedding is tomorrow and I am very excited.", "album_id": "872064", "photo_flickr_id": "39617093", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50367", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding is tomorrow and i am very excited .", "storylet_id": "251835"}], [{"original_text": "I went to the rehearsal today and it went well.", "album_id": "872064", "photo_flickr_id": "39617091", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50367", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went to the rehearsal today and it went well .", "storylet_id": "251836"}], [{"original_text": "Everyone is so excited for the wedding tomorrow.", "album_id": "872064", "photo_flickr_id": "39617096", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50367", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone is so excited for the wedding tomorrow .", "storylet_id": "251837"}], [{"original_text": "All of the children can't wait to throw the flowers.", "album_id": "872064", "photo_flickr_id": "39640138", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50367", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the children ca n't wait to throw the flowers .", "storylet_id": "251838"}], [{"original_text": "Even my hedgehog is excited for the wedding.", "album_id": "872064", "photo_flickr_id": "39640142", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50367", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even my hedgehog is excited for the wedding .", "storylet_id": "251839"}], [{"original_text": "This picture of my wedding dress takes my breath away. ", "album_id": "872064", "photo_flickr_id": "39617093", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "50368", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this picture of my wedding dress takes my breath away .", "storylet_id": "251840"}], [{"original_text": "My sister took this picture, as I viewed the decorated reception hall. ", "album_id": "872064", "photo_flickr_id": "39617091", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "50368", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my sister took this picture , as i viewed the decorated reception hall .", "storylet_id": "251841"}], [{"original_text": "This picture of my bridal party makes me feel, like we were all princesses. ", "album_id": "872064", "photo_flickr_id": "39617096", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "50368", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this picture of my bridal party makes me feel , like we were all princesses .", "storylet_id": "251842"}], [{"original_text": "My daughter was trying to eat a bubble that was blown by me. ", "album_id": "872064", "photo_flickr_id": "39640138", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "50368", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my daughter was trying to eat a bubble that was blown by me .", "storylet_id": "251843"}], [{"original_text": "It seems there are all sorts of wedding crashers. ", "album_id": "872064", "photo_flickr_id": "39640142", "setting": "last-3-pick-old-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "50368", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it seems there are all sorts of wedding crashers .", "storylet_id": "251844"}], [{"original_text": "The bride's dress hangs up, waiting to be worn for the big day.", "album_id": "872064", "photo_flickr_id": "39617093", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50369", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride 's dress hangs up , waiting to be worn for the big day .", "storylet_id": "251845"}], [{"original_text": "The bride stares at the soon-to-be-eaten cake.", "album_id": "872064", "photo_flickr_id": "39617091", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50369", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride stares at the soon-to-be-eaten cake .", "storylet_id": "251846"}], [{"original_text": "The bride and bridesmaids pose.", "album_id": "872064", "photo_flickr_id": "39617096", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50369", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and bridesmaids pose .", "storylet_id": "251847"}], [{"original_text": "The groom's niece plays with bubbles. ", "album_id": "872064", "photo_flickr_id": "39640138", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50369", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the groom 's niece plays with bubbles .", "storylet_id": "251848"}], [{"original_text": "They come across a hedgehog.", "album_id": "872064", "photo_flickr_id": "39640142", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50369", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they come across a hedgehog .", "storylet_id": "251849"}], [{"original_text": "I got to watch two of my good friends get married this weekend.", "album_id": "962352", "photo_flickr_id": "43975069", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "50370", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got to watch two of my good friends get married this weekend .", "storylet_id": "251850"}], [{"original_text": "After they danced they went to cut the cake. The bride was having fun with it!", "album_id": "962352", "photo_flickr_id": "43975081", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "50370", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after they danced they went to cut the cake . the bride was having fun with it !", "storylet_id": "251851"}], [{"original_text": "Even the kids had a great time dancing on the dance floor.", "album_id": "962352", "photo_flickr_id": "43975087", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "50370", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the kids had a great time dancing on the dance floor .", "storylet_id": "251852"}], [{"original_text": "The groom was almost in disbelief with how much fun everybody was having.", "album_id": "962352", "photo_flickr_id": "43975089", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "50370", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the groom was almost in disbelief with how much fun everybody was having .", "storylet_id": "251853"}], [{"original_text": "By the end of the night some of the kids just wanted to sit down and relax; they were tired of dancing.", "album_id": "962352", "photo_flickr_id": "43975112", "setting": "first-2-pick-and-tell", "worker_id": "I8RI5T8SGKFWAJA", "story_id": "50370", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of the night some of the kids just wanted to sit down and relax ; they were tired of dancing .", "storylet_id": "251854"}], [{"original_text": "It was time for their big day, but where was the bride?", "album_id": "962352", "photo_flickr_id": "43975089", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "50371", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was time for their big day , but where was the bride ?", "storylet_id": "251855"}], [{"original_text": "She finally showed up, and made it up to her now husband.", "album_id": "962352", "photo_flickr_id": "43975069", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "50371", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she finally showed up , and made it up to her now husband .", "storylet_id": "251856"}], [{"original_text": "What would a wedding be without the cake?", "album_id": "962352", "photo_flickr_id": "43975081", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "50371", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what would a wedding be without the cake ?", "storylet_id": "251857"}], [{"original_text": "Married for half an hour, and she already wants to choke him.", "album_id": "962352", "photo_flickr_id": "43975083", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "50371", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "married for half an hour , and she already wants to choke him .", "storylet_id": "251858"}], [{"original_text": "Everyone wanted to dance, even the little ones.", "album_id": "962352", "photo_flickr_id": "43975087", "setting": "first-2-pick-and-tell", "worker_id": "OXXZIM57ZJOY5M0", "story_id": "50371", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone wanted to dance , even the little ones .", "storylet_id": "251859"}], [{"original_text": "Today was probably the best wedding I had ever seen, these two were so romantic.", "album_id": "962352", "photo_flickr_id": "43975069", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "50372", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was probably the best wedding i had ever seen , these two were so romantic .", "storylet_id": "251860"}], [{"original_text": "Everything about it was like a storybook, even the cake was a character out of a story.", "album_id": "962352", "photo_flickr_id": "43975081", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "50372", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything about it was like a storybook , even the cake was a character out of a story .", "storylet_id": "251861"}], [{"original_text": "The kids had a great time dancing around the newlyweds.", "album_id": "962352", "photo_flickr_id": "43975087", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "50372", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids had a great time dancing around the newlyweds .", "storylet_id": "251862"}], [{"original_text": "The Groom gave his thanks to everyone at the party, what a gentleman.", "album_id": "962352", "photo_flickr_id": "43975089", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "50372", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the groom gave his thanks to everyone at the party , what a gentleman .", "storylet_id": "251863"}], [{"original_text": "Overall, it was a spectacular event and everyone dressed sharp as a tack.", "album_id": "962352", "photo_flickr_id": "43975112", "setting": "last-3-pick-old-and-tell", "worker_id": "K0091GY0VMLJBAC", "story_id": "50372", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall , it was a spectacular event and everyone dressed sharp as a tack .", "storylet_id": "251864"}], [{"original_text": "The wedding was beautiful last night.", "album_id": "962352", "photo_flickr_id": "43975069", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50373", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding was beautiful last night .", "storylet_id": "251865"}], [{"original_text": "The bride and groom cut up the wedding cake and served it. It was very good.", "album_id": "962352", "photo_flickr_id": "43975081", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50373", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom cut up the wedding cake and served it . it was very good .", "storylet_id": "251866"}], [{"original_text": "At night everyone got together to dance.", "album_id": "962352", "photo_flickr_id": "43975087", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50373", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at night everyone got together to dance .", "storylet_id": "251867"}], [{"original_text": "The groom was willing to dance with anybody who wanted to.", "album_id": "962352", "photo_flickr_id": "43975089", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50373", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the groom was willing to dance with anybody who wanted to .", "storylet_id": "251868"}], [{"original_text": "Some of the children were very bored.", "album_id": "962352", "photo_flickr_id": "43975112", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50373", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the children were very bored .", "storylet_id": "251869"}], [{"original_text": "The bride and groom look into each others eyes as if its the first time they met.", "album_id": "962352", "photo_flickr_id": "43975069", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50374", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride and groom look into each others eyes as if its the first time they met .", "storylet_id": "251870"}], [{"original_text": "They both get ready to slice the cake.", "album_id": "962352", "photo_flickr_id": "43975081", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50374", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they both get ready to slice the cake .", "storylet_id": "251871"}], [{"original_text": "The dancing and fun starts.", "album_id": "962352", "photo_flickr_id": "43975087", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50374", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dancing and fun starts .", "storylet_id": "251872"}], [{"original_text": "The groom gives a speech to the crowd.", "album_id": "962352", "photo_flickr_id": "43975089", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50374", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the groom gives a speech to the crowd .", "storylet_id": "251873"}], [{"original_text": "A child and his mom look at their food. ", "album_id": "962352", "photo_flickr_id": "43975112", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50374", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a child and his mom look at their food .", "storylet_id": "251874"}], [{"original_text": "Yes, I came to my friends wedding in sneakers, heels all night, no way! ", "album_id": "1260032", "photo_flickr_id": "58237786", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "50375", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yes , i came to my friends wedding in sneakers , heels all night , no way !", "storylet_id": "251875"}], [{"original_text": "My family was so happy for my sister on her big day. ", "album_id": "1260032", "photo_flickr_id": "58237787", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "50375", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my family was so happy for my sister on her big day .", "storylet_id": "251876"}], [{"original_text": "My mom is dancing with her new son in law. ", "album_id": "1260032", "photo_flickr_id": "58237784", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "50375", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my mom is dancing with her new son in law .", "storylet_id": "251877"}], [{"original_text": "My sister and her husband taking time to take a picture for me. ", "album_id": "1260032", "photo_flickr_id": "58237785", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "50375", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my sister and her husband taking time to take a picture for me .", "storylet_id": "251878"}], [{"original_text": "My brother in law has the moves going on. ", "album_id": "1260032", "photo_flickr_id": "58331499", "setting": "first-2-pick-and-tell", "worker_id": "8XKRUDH8RP6UJKL", "story_id": "50375", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my brother in law has the moves going on .", "storylet_id": "251879"}], [{"original_text": "She wore a red dress with blue high top sneakers. ", "album_id": "1260032", "photo_flickr_id": "58237786", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50376", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she wore a red dress with blue high top sneakers .", "storylet_id": "251880"}], [{"original_text": "The older women laughed about it. ", "album_id": "1260032", "photo_flickr_id": "58237787", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50376", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the older women laughed about it .", "storylet_id": "251881"}], [{"original_text": "Sneakers helped her boogie. ", "album_id": "1260032", "photo_flickr_id": "58331499", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50376", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sneakers helped her boogie .", "storylet_id": "251882"}], [{"original_text": "She broke a strap on her dress when she was dancing. ", "album_id": "1260032", "photo_flickr_id": "58204189", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50376", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she broke a strap on her dress when she was dancing .", "storylet_id": "251883"}], [{"original_text": "At the end of the night they toasted her sneakers. ", "album_id": "1260032", "photo_flickr_id": "58331500", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50376", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night they toasted her sneakers .", "storylet_id": "251884"}], [{"original_text": "The party was at a banquet hall.", "album_id": "1260032", "photo_flickr_id": "58237786", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "50377", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party was at a banquet hall .", "storylet_id": "251885"}], [{"original_text": "Everyone was having a lot of fun.", "album_id": "1260032", "photo_flickr_id": "58237787", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "50377", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was having a lot of fun .", "storylet_id": "251886"}], [{"original_text": "Some people even danced.", "album_id": "1260032", "photo_flickr_id": "58331499", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "50377", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people even danced .", "storylet_id": "251887"}], [{"original_text": "Janet needed help with her dress.", "album_id": "1260032", "photo_flickr_id": "58204189", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "50377", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] needed help with her dress .", "storylet_id": "251888"}], [{"original_text": "Once the open bar started the real party began.", "album_id": "1260032", "photo_flickr_id": "58331500", "setting": "last-3-pick-old-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "50377", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once the open bar started the real party began .", "storylet_id": "251889"}], [{"original_text": "Reception time! She has her dancing shoes on.", "album_id": "1260032", "photo_flickr_id": "58237786", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "50378", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "reception time ! she has her dancing shoes on .", "storylet_id": "251890"}], [{"original_text": "The grooms family is having a good time.", "album_id": "1260032", "photo_flickr_id": "58237787", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "50378", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the grooms family is having a good time .", "storylet_id": "251891"}], [{"original_text": "The groom is having a good time, too, showing off his dance moves!", "album_id": "1260032", "photo_flickr_id": "58331499", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "50378", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the groom is having a good time , too , showing off his dance moves !", "storylet_id": "251892"}], [{"original_text": "Help with a dress strap was needed.", "album_id": "1260032", "photo_flickr_id": "58204189", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "50378", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "help with a dress strap was needed .", "storylet_id": "251893"}], [{"original_text": "A toast to the happy couple.", "album_id": "1260032", "photo_flickr_id": "58331500", "setting": "last-3-pick-old-and-tell", "worker_id": "54BTNU0A5UPXKPG", "story_id": "50378", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a toast to the happy couple .", "storylet_id": "251894"}], [{"original_text": "Ashley can't believe her best friend Jill is now a married woman. She also can't believe she took her shoes off and put on her sneakers. Her feet were killing her.", "album_id": "1260032", "photo_flickr_id": "58237786", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "50379", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] ca n't believe her best friend [female] is now a married woman . she also ca n't believe she took her shoes off and put on her sneakers . her feet were killing her .", "storylet_id": "251895"}], [{"original_text": "Jill's grandmother and sisters are having such a good time, her uncle Ray sees a photo-op.", "album_id": "1260032", "photo_flickr_id": "58237787", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "50379", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] 's grandmother and sisters are having such a good time , her uncle [male] sees a photo-op .", "storylet_id": "251896"}], [{"original_text": "Jill's parents take the floor and have the 1st dance with the newlyweds as instructed from the handsome groom.", "album_id": "1260032", "photo_flickr_id": "58237784", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "50379", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] 's parents take the floor and have the 1st dance with the newlyweds as instructed from the handsome groom .", "storylet_id": "251897"}], [{"original_text": "Jill and her husband Scott were heating up the floor so much that uncle Ray figured he snap a quick shot. Just incase they really set the floor on fire.", "album_id": "1260032", "photo_flickr_id": "58237785", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "50379", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and her husband [male] were heating up the floor so much that uncle [male] figured he snap a quick shot . just incase they really set the floor on fire .", "storylet_id": "251898"}], [{"original_text": "After catching all of his nieces Jill sweet memories, uncle Ray decides to heat up the dance floor a little himself.", "album_id": "1260032", "photo_flickr_id": "58331499", "setting": "last-3-pick-old-and-tell", "worker_id": "VVOPKDSR0JDUMYT", "story_id": "50379", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after catching all of his nieces [female] sweet memories , uncle [male] decides to heat up the dance floor a little himself .", "storylet_id": "251899"}], [{"original_text": "She got an invitation to a big event.", "album_id": "72057594057255637", "photo_flickr_id": "93886933", "setting": "first-2-pick-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "50380", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she got an invitation to a big event .", "storylet_id": "251900"}], [{"original_text": "So took the subway.", "album_id": "72057594057255637", "photo_flickr_id": "93887131", "setting": "first-2-pick-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "50380", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so took the subway .", "storylet_id": "251901"}], [{"original_text": "Went up the escalator.", "album_id": "72057594057255637", "photo_flickr_id": "93887188", "setting": "first-2-pick-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "50380", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "went up the escalator .", "storylet_id": "251902"}], [{"original_text": "And when she arrived the party was amazing.", "album_id": "72057594057255637", "photo_flickr_id": "93887564", "setting": "first-2-pick-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "50380", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and when she arrived the party was amazing .", "storylet_id": "251903"}], [{"original_text": "She had a great time partying.", "album_id": "72057594057255637", "photo_flickr_id": "93887687", "setting": "first-2-pick-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "50380", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she had a great time partying .", "storylet_id": "251904"}], [{"original_text": "And so I had arrived and I know the train was a little early.", "album_id": "72057594057255637", "photo_flickr_id": "93886933", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "50381", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "and so i had arrived and i know the train was a little early .", "storylet_id": "251905"}], [{"original_text": "I looked around the station, expected to see him waiting for me.", "album_id": "72057594057255637", "photo_flickr_id": "93887000", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "50381", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i looked around the station , expected to see him waiting for me .", "storylet_id": "251906"}], [{"original_text": "Pretty soon the place emptied out but he still wasn't there and I had looked everywhere for him.", "album_id": "72057594057255637", "photo_flickr_id": "93887188", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "50381", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "pretty soon the place emptied out but he still was n't there and i had looked everywhere for him .", "storylet_id": "251907"}], [{"original_text": "I finally had to call him and it turned out he forgot he was supposed to meet me.", "album_id": "72057594057255637", "photo_flickr_id": "93887131", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "50381", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i finally had to call him and it turned out he forgot he was supposed to meet me .", "storylet_id": "251908"}], [{"original_text": "We ended up having a great night out and I forgave his forgetfulness.", "album_id": "72057594057255637", "photo_flickr_id": "93887289", "setting": "first-2-pick-and-tell", "worker_id": "Z3J9IMNH2TLJ9F6", "story_id": "50381", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended up having a great night out and i forgave his forgetfulness .", "storylet_id": "251909"}], [{"original_text": "After getting off the train, we stopped to do some window shopping.", "album_id": "72057594057255637", "photo_flickr_id": "93886933", "setting": "last-3-pick-old-and-tell", "worker_id": "RQ25RRST89HT6OO", "story_id": "50382", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after getting off the train , we stopped to do some window shopping .", "storylet_id": "251910"}], [{"original_text": "Here's a picture of my best girlfriend on her phone. She can't live without it.", "album_id": "72057594057255637", "photo_flickr_id": "93887131", "setting": "last-3-pick-old-and-tell", "worker_id": "RQ25RRST89HT6OO", "story_id": "50382", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's a picture of my best girlfriend on her phone . she ca n't live without it .", "storylet_id": "251911"}], [{"original_text": "And I love escalators, ever since I was a little kid.", "album_id": "72057594057255637", "photo_flickr_id": "93887188", "setting": "last-3-pick-old-and-tell", "worker_id": "RQ25RRST89HT6OO", "story_id": "50382", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and i love escalators , ever since i was a little kid .", "storylet_id": "251912"}], [{"original_text": "Here we are at the club, having a great time.", "album_id": "72057594057255637", "photo_flickr_id": "93887564", "setting": "last-3-pick-old-and-tell", "worker_id": "RQ25RRST89HT6OO", "story_id": "50382", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here we are at the club , having a great time .", "storylet_id": "251913"}], [{"original_text": "And here's a group picture with the DJ who we became fast friends with.", "album_id": "72057594057255637", "photo_flickr_id": "93887687", "setting": "last-3-pick-old-and-tell", "worker_id": "RQ25RRST89HT6OO", "story_id": "50382", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and here 's a group picture with the dj who we became fast friends with .", "storylet_id": "251914"}], [{"original_text": "On friday night, I went out to meet my friends at the club. ", "album_id": "72057594057255637", "photo_flickr_id": "93886933", "setting": "last-3-pick-old-and-tell", "worker_id": "O7O89COPEMAI617", "story_id": "50383", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on friday night , i went out to meet my friends at the club .", "storylet_id": "251915"}], [{"original_text": "I went by train, as I do not have a car. ", "album_id": "72057594057255637", "photo_flickr_id": "93887131", "setting": "last-3-pick-old-and-tell", "worker_id": "O7O89COPEMAI617", "story_id": "50383", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went by train , as i do not have a car .", "storylet_id": "251916"}], [{"original_text": "I love riding the escalator! ", "album_id": "72057594057255637", "photo_flickr_id": "93887188", "setting": "last-3-pick-old-and-tell", "worker_id": "O7O89COPEMAI617", "story_id": "50383", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i love riding the escalator !", "storylet_id": "251917"}], [{"original_text": "My friend Tanya was there. ", "album_id": "72057594057255637", "photo_flickr_id": "93887564", "setting": "last-3-pick-old-and-tell", "worker_id": "O7O89COPEMAI617", "story_id": "50383", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friend [female] was there .", "storylet_id": "251918"}], [{"original_text": "Tanya's boyfriend Jamahl was there too. ", "album_id": "72057594057255637", "photo_flickr_id": "93887687", "setting": "last-3-pick-old-and-tell", "worker_id": "O7O89COPEMAI617", "story_id": "50383", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] 's boyfriend jamahl was there too .", "storylet_id": "251919"}], [{"original_text": "Kacey had an appointment that day to meet her boyfriend at Exit 2 at the subway station.", "album_id": "72057594057255637", "photo_flickr_id": "93886933", "setting": "last-3-pick-old-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50384", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] had an appointment that day to meet her boyfriend at exit 2 at the subway station .", "storylet_id": "251920"}], [{"original_text": "She waited and waited but didn't see him.", "album_id": "72057594057255637", "photo_flickr_id": "93887000", "setting": "last-3-pick-old-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50384", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she waited and waited but did n't see him .", "storylet_id": "251921"}], [{"original_text": "Finally she went up the escalator to get reception, and call him.", "album_id": "72057594057255637", "photo_flickr_id": "93887188", "setting": "last-3-pick-old-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50384", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally she went up the escalator to get reception , and call him .", "storylet_id": "251922"}], [{"original_text": "When she called him, he didn't answer, and pissed she headed home.", "album_id": "72057594057255637", "photo_flickr_id": "93887131", "setting": "last-3-pick-old-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50384", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when she called him , he did n't answer , and pissed she headed home .", "storylet_id": "251923"}], [{"original_text": "She didn't know that her boyfriend was busy at the club, hitting on girls.", "album_id": "72057594057255637", "photo_flickr_id": "93887289", "setting": "last-3-pick-old-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50384", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she did n't know that her boyfriend was busy at the club , hitting on girls .", "storylet_id": "251924"}], [{"original_text": "So, we arrived at the party, fashionably late of course.", "album_id": "72057594071585364", "photo_flickr_id": "91640609", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "50385", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so , we arrived at the party , fashionably late of course .", "storylet_id": "251925"}], [{"original_text": "Late, but hot was our aesthetic.", "album_id": "72057594071585364", "photo_flickr_id": "91646814", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "50385", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "late , but hot was our aesthetic .", "storylet_id": "251926"}], [{"original_text": "We met up with some friends and of course, we commenced drinking. ", "album_id": "72057594071585364", "photo_flickr_id": "91646817", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "50385", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we met up with some friends and of course , we commenced drinking .", "storylet_id": "251927"}], [{"original_text": "The whole gang was there and of course the orange wig made an appearance.", "album_id": "72057594071585364", "photo_flickr_id": "91646819", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "50385", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole gang was there and of course the orange wig made an appearance .", "storylet_id": "251928"}], [{"original_text": "I love costume parties with my friends.", "album_id": "72057594071585364", "photo_flickr_id": "91176223", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "50385", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love costume parties with my friends .", "storylet_id": "251929"}], [{"original_text": "We are having a few friends over this evening. Time to make some cocktails.", "album_id": "72057594071585364", "photo_flickr_id": "91647427", "setting": "first-2-pick-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "50386", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are having a few friends over this evening . time to make some cocktails .", "storylet_id": "251930"}], [{"original_text": "We practice a few dance moves as the guest start to arrive.", "album_id": "72057594071585364", "photo_flickr_id": "91647424", "setting": "first-2-pick-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "50386", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we practice a few dance moves as the guest start to arrive .", "storylet_id": "251931"}], [{"original_text": "Take a look at this handsome couple!", "album_id": "72057594071585364", "photo_flickr_id": "91646813", "setting": "first-2-pick-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "50386", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "take a look at this handsome couple !", "storylet_id": "251932"}], [{"original_text": "So many great people in so many great hats! Our friends are hamms for the camera.", "album_id": "72057594071585364", "photo_flickr_id": "91646814", "setting": "first-2-pick-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "50386", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so many great people in so many great hats ! our friends are hamms for the camera .", "storylet_id": "251933"}], [{"original_text": "Smile everyone! What a fun night we had.", "album_id": "72057594071585364", "photo_flickr_id": "91646819", "setting": "first-2-pick-and-tell", "worker_id": "GPF5LS7AHOMHJJK", "story_id": "50386", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "smile everyone ! what a fun night we had .", "storylet_id": "251934"}], [{"original_text": "The boyfriend and girlfriend show off their drinks.", "album_id": "72057594071585364", "photo_flickr_id": "91647427", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50387", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boyfriend and girlfriend show off their drinks .", "storylet_id": "251935"}], [{"original_text": "The family is celebrating and having a good time.", "album_id": "72057594071585364", "photo_flickr_id": "91647424", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50387", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family is celebrating and having a good time .", "storylet_id": "251936"}], [{"original_text": "Another couple poses in their halloween costumes.", "album_id": "72057594071585364", "photo_flickr_id": "91646813", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50387", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another couple poses in their halloween costumes .", "storylet_id": "251937"}], [{"original_text": "Two more people pose for the camera.", "album_id": "72057594071585364", "photo_flickr_id": "91646814", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50387", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two more people pose for the camera .", "storylet_id": "251938"}], [{"original_text": "A group of halloween parties smile for the camera.", "album_id": "72057594071585364", "photo_flickr_id": "91646819", "setting": "last-3-pick-old-and-tell", "worker_id": "8I1ZRZ4NCW81CIJ", "story_id": "50387", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a group of halloween parties smile for the camera .", "storylet_id": "251939"}], [{"original_text": "Ready to attend the part.", "album_id": "72057594071585364", "photo_flickr_id": "91640609", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50388", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "ready to attend the part .", "storylet_id": "251940"}], [{"original_text": "Bride and groom dressed up at rehearsal dinner. ", "album_id": "72057594071585364", "photo_flickr_id": "91646814", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50388", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "bride and groom dressed up at rehearsal dinner .", "storylet_id": "251941"}], [{"original_text": "Best man and a bridesmaid drunk as can be.", "album_id": "72057594071585364", "photo_flickr_id": "91646817", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50388", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "best man and a bridesmaid drunk as can be .", "storylet_id": "251942"}], [{"original_text": "The wedding party the night before the wedding. ", "album_id": "72057594071585364", "photo_flickr_id": "91646819", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50388", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wedding party the night before the wedding .", "storylet_id": "251943"}], [{"original_text": "Having fun before the wedding. ", "album_id": "72057594071585364", "photo_flickr_id": "91176223", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50388", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "having fun before the wedding .", "storylet_id": "251944"}], [{"original_text": "We decided to go out on halloween to my friend's halloween party.", "album_id": "72057594071585364", "photo_flickr_id": "91640609", "setting": "last-3-pick-old-and-tell", "worker_id": "O7O89COPEMAI617", "story_id": "50389", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go out on halloween to my friend 's halloween party .", "storylet_id": "251945"}], [{"original_text": "I was a cosmic cowgirl, he was a pimp. ", "album_id": "72057594071585364", "photo_flickr_id": "91646814", "setting": "last-3-pick-old-and-tell", "worker_id": "O7O89COPEMAI617", "story_id": "50389", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was a cosmic cowgirl , he was a pimp .", "storylet_id": "251946"}], [{"original_text": "My friends Debbie and Mike were there. ", "album_id": "72057594071585364", "photo_flickr_id": "91646817", "setting": "last-3-pick-old-and-tell", "worker_id": "O7O89COPEMAI617", "story_id": "50389", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friends [female] and [male] were there .", "storylet_id": "251947"}], [{"original_text": "The crowd got larger as the night went on. ", "album_id": "72057594071585364", "photo_flickr_id": "91646819", "setting": "last-3-pick-old-and-tell", "worker_id": "O7O89COPEMAI617", "story_id": "50389", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowd got larger as the night went on .", "storylet_id": "251948"}], [{"original_text": "After we partied a little bit we all took a group shot. ", "album_id": "72057594071585364", "photo_flickr_id": "91176223", "setting": "last-3-pick-old-and-tell", "worker_id": "O7O89COPEMAI617", "story_id": "50389", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we partied a little bit we all took a group shot .", "storylet_id": "251949"}], [{"original_text": "Family and friends got together for a small wedding in a beautiful historic building. ", "album_id": "72057594069417750", "photo_flickr_id": "103598026", "setting": "first-2-pick-and-tell", "worker_id": "D7B67JZ8CZQZ91Y", "story_id": "50390", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family and friends got together for a small wedding in a beautiful historic building .", "storylet_id": "251950"}], [{"original_text": "A bridesmaid happily posed with a guest.", "album_id": "72057594069417750", "photo_flickr_id": "103596646", "setting": "first-2-pick-and-tell", "worker_id": "D7B67JZ8CZQZ91Y", "story_id": "50390", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a bridesmaid happily posed with a guest .", "storylet_id": "251951"}], [{"original_text": "The bride and groom shared their first dance. ", "album_id": "72057594069417750", "photo_flickr_id": "103596692", "setting": "first-2-pick-and-tell", "worker_id": "D7B67JZ8CZQZ91Y", "story_id": "50390", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and groom shared their first dance .", "storylet_id": "251952"}], [{"original_text": "Family and friends had a wonderful time at the formal dinner with drinks. ", "album_id": "72057594069417750", "photo_flickr_id": "103596754", "setting": "first-2-pick-and-tell", "worker_id": "D7B67JZ8CZQZ91Y", "story_id": "50390", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "family and friends had a wonderful time at the formal dinner with drinks .", "storylet_id": "251953"}], [{"original_text": "Beautiful flowers decorated a momentous occasion.", "album_id": "72057594069417750", "photo_flickr_id": "103597842", "setting": "first-2-pick-and-tell", "worker_id": "D7B67JZ8CZQZ91Y", "story_id": "50390", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "beautiful flowers decorated a momentous occasion .", "storylet_id": "251954"}], [{"original_text": "Welcome to the tour of the old Grayson Manor, this way to the Conference Room. ", "album_id": "72057594069417750", "photo_flickr_id": "103597655", "setting": "first-2-pick-and-tell", "worker_id": "HYQW2VDID5S00WW", "story_id": "50391", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "welcome to the tour of the old location location , this way to the conference room .", "storylet_id": "251955"}], [{"original_text": "The Conference Room actually served duel purposes, as the family often dined in here. ", "album_id": "72057594069417750", "photo_flickr_id": "103597692", "setting": "first-2-pick-and-tell", "worker_id": "HYQW2VDID5S00WW", "story_id": "50391", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the conference room actually served duel purposes , as the family often dined in here .", "storylet_id": "251956"}], [{"original_text": "Edward Grayson lived to the ripe of age of 84, which was considered to be a long life back in his time. ", "album_id": "72057594069417750", "photo_flickr_id": "103597720", "setting": "first-2-pick-and-tell", "worker_id": "HYQW2VDID5S00WW", "story_id": "50391", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] [male] lived to the ripe of age of 84 , which was considered to be a long life back in his time .", "storylet_id": "251957"}], [{"original_text": "Edward was also an serious book collector, and had several libraries. ", "album_id": "72057594069417750", "photo_flickr_id": "103597746", "setting": "first-2-pick-and-tell", "worker_id": "HYQW2VDID5S00WW", "story_id": "50391", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was also an serious book collector , and had several libraries .", "storylet_id": "251958"}], [{"original_text": "His estate is now considered to be a historical monument. ", "album_id": "72057594069417750", "photo_flickr_id": "103598026", "setting": "first-2-pick-and-tell", "worker_id": "HYQW2VDID5S00WW", "story_id": "50391", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his estate is now considered to be a historical monument .", "storylet_id": "251959"}], [{"original_text": "This is the church where the wedding was held. ", "album_id": "72057594069417750", "photo_flickr_id": "103598026", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50392", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the church where the wedding was held .", "storylet_id": "251960"}], [{"original_text": "The bridesmaids took a quick pic together. ", "album_id": "72057594069417750", "photo_flickr_id": "103596646", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50392", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bridesmaids took a quick pic together .", "storylet_id": "251961"}], [{"original_text": "The bride and groom leaned forward for a quick kiss. ", "album_id": "72057594069417750", "photo_flickr_id": "103596692", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50392", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and groom leaned forward for a quick kiss .", "storylet_id": "251962"}], [{"original_text": "The guests were overwhelmed with joy.", "album_id": "72057594069417750", "photo_flickr_id": "103596754", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50392", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guests were overwhelmed with joy .", "storylet_id": "251963"}], [{"original_text": "The bouquet was beautiful. ", "album_id": "72057594069417750", "photo_flickr_id": "103597842", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50392", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bouquet was beautiful .", "storylet_id": "251964"}], [{"original_text": "This is the chapel we wedded at!", "album_id": "72057594069417750", "photo_flickr_id": "103598026", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50393", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the chapel we wedded at !", "storylet_id": "251965"}], [{"original_text": "Such a happy day, here I was with my new sister in law.", "album_id": "72057594069417750", "photo_flickr_id": "103596646", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50393", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "such a happy day , here i was with my new sister in law .", "storylet_id": "251966"}], [{"original_text": "This was from the earlier wedding, so much dancing!", "album_id": "72057594069417750", "photo_flickr_id": "103596692", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50393", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was from the earlier wedding , so much dancing !", "storylet_id": "251967"}], [{"original_text": "Here at the dinner we had a blasts!", "album_id": "72057594069417750", "photo_flickr_id": "103596754", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50393", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here at the dinner we had a blasts !", "storylet_id": "251968"}], [{"original_text": "This was the bouquet I threw into the crowd!", "album_id": "72057594069417750", "photo_flickr_id": "103597842", "setting": "last-3-pick-old-and-tell", "worker_id": "CTDQJLX53RCSPOR", "story_id": "50393", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the bouquet i threw into the crowd !", "storylet_id": "251969"}], [{"original_text": "My new house looked lovely from a distance.", "album_id": "72057594069417750", "photo_flickr_id": "103598026", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50394", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my new house looked lovely from a distance .", "storylet_id": "251970"}], [{"original_text": "The girls really liked the heated floors.", "album_id": "72057594069417750", "photo_flickr_id": "103596646", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50394", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girls really liked the heated floors .", "storylet_id": "251971"}], [{"original_text": "I rented the place out to have a wedding.", "album_id": "72057594069417750", "photo_flickr_id": "103596692", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50394", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i rented the place out to have a wedding .", "storylet_id": "251972"}], [{"original_text": "All of the guests were happy because of the open bar.", "album_id": "72057594069417750", "photo_flickr_id": "103596754", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50394", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the guests were happy because of the open bar .", "storylet_id": "251973"}], [{"original_text": "Flowers were placed in the ballroom to signify a nice evening. ", "album_id": "72057594069417750", "photo_flickr_id": "103597842", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50394", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "flowers were placed in the ballroom to signify a nice evening .", "storylet_id": "251974"}], [{"original_text": "The little girl played with the cone.", "album_id": "72057594090741088", "photo_flickr_id": "117993688", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50395", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the little girl played with the cone .", "storylet_id": "251975"}], [{"original_text": "I told my aunt and uncle to take a partner picture together.", "album_id": "72057594090741088", "photo_flickr_id": "117993994", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50395", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i told my aunt and uncle to take a partner picture together .", "storylet_id": "251976"}], [{"original_text": "The venue was full of seats and people.", "album_id": "72057594090741088", "photo_flickr_id": "117994396", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50395", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the venue was full of seats and people .", "storylet_id": "251977"}], [{"original_text": "The event began promptly.", "album_id": "72057594090741088", "photo_flickr_id": "117995005", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50395", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the event began promptly .", "storylet_id": "251978"}], [{"original_text": "The cake was lovely and not very big but it was very tasty.", "album_id": "72057594090741088", "photo_flickr_id": "117995899", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50395", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cake was lovely and not very big but it was very tasty .", "storylet_id": "251979"}], [{"original_text": "A woman was being walked down the aisle to meet her groom.", "album_id": "72057594090741088", "photo_flickr_id": "117995005", "setting": "first-2-pick-and-tell", "worker_id": "MTAILBBAMF5SZUA", "story_id": "50396", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a woman was being walked down the aisle to meet her groom .", "storylet_id": "251980"}], [{"original_text": "She was so excited to say her vows and marry her husband.", "album_id": "72057594090741088", "photo_flickr_id": "117995297", "setting": "first-2-pick-and-tell", "worker_id": "MTAILBBAMF5SZUA", "story_id": "50396", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was so excited to say her vows and marry her husband .", "storylet_id": "251981"}], [{"original_text": "Afterwards, the groom gave a toast.", "album_id": "72057594090741088", "photo_flickr_id": "117996226", "setting": "first-2-pick-and-tell", "worker_id": "MTAILBBAMF5SZUA", "story_id": "50396", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards , the groom gave a toast .", "storylet_id": "251982"}], [{"original_text": "Then, they cut their cake. ", "album_id": "72057594090741088", "photo_flickr_id": "117996640", "setting": "first-2-pick-and-tell", "worker_id": "MTAILBBAMF5SZUA", "story_id": "50396", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , they cut their cake .", "storylet_id": "251983"}], [{"original_text": "They spend the rest of the night dancing.", "album_id": "72057594090741088", "photo_flickr_id": "117997024", "setting": "first-2-pick-and-tell", "worker_id": "MTAILBBAMF5SZUA", "story_id": "50396", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they spend the rest of the night dancing .", "storylet_id": "251984"}], [{"original_text": "A little girl is by a cone.", "album_id": "72057594090741088", "photo_flickr_id": "117993688", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "50397", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a little girl is by a cone .", "storylet_id": "251985"}], [{"original_text": "This is a picture of a couple.", "album_id": "72057594090741088", "photo_flickr_id": "117993994", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "50397", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a couple .", "storylet_id": "251986"}], [{"original_text": "This is a picture of the audience.", "album_id": "72057594090741088", "photo_flickr_id": "117994396", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "50397", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of the audience .", "storylet_id": "251987"}], [{"original_text": "A couple is getting married.", "album_id": "72057594090741088", "photo_flickr_id": "117995005", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "50397", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a couple is getting married .", "storylet_id": "251988"}], [{"original_text": "This is a picture of a wedding cake.", "album_id": "72057594090741088", "photo_flickr_id": "117995899", "setting": "last-3-pick-old-and-tell", "worker_id": "MUOMGU8DPLDXB1Y", "story_id": "50397", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a wedding cake .", "storylet_id": "251989"}], [{"original_text": "My friends wedding was held outside.", "album_id": "72057594090741088", "photo_flickr_id": "117995005", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50398", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends wedding was held outside .", "storylet_id": "251990"}], [{"original_text": "It took place in the autumn. ", "album_id": "72057594090741088", "photo_flickr_id": "117995297", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50398", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it took place in the autumn .", "storylet_id": "251991"}], [{"original_text": "The bride and groom both went to college with me.", "album_id": "72057594090741088", "photo_flickr_id": "117996226", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50398", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and groom both went to college with me .", "storylet_id": "251992"}], [{"original_text": "It was a pretty casual event. My uncle wore an ugly dragon shirt.", "album_id": "72057594090741088", "photo_flickr_id": "117996640", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50398", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a pretty casual event . my uncle wore an ugly dragon shirt .", "storylet_id": "251993"}], [{"original_text": "They fed each other the cake.", "album_id": "72057594090741088", "photo_flickr_id": "117997024", "setting": "last-3-pick-old-and-tell", "worker_id": "TAICGSPTUJQY1SQ", "story_id": "50398", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they fed each other the cake .", "storylet_id": "251994"}], [{"original_text": "Today is the day she is attending her first wedding.", "album_id": "72057594090741088", "photo_flickr_id": "117993688", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "50399", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is the day she is attending her first wedding .", "storylet_id": "251995"}], [{"original_text": "Mom and dad are coming too.", "album_id": "72057594090741088", "photo_flickr_id": "117993994", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "50399", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom and dad are coming too .", "storylet_id": "251996"}], [{"original_text": "She looks around at all the people and how nice they look.", "album_id": "72057594090741088", "photo_flickr_id": "117994396", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "50399", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she looks around at all the people and how nice they look .", "storylet_id": "251997"}], [{"original_text": "She thinks that the bride and groom are very lovely.", "album_id": "72057594090741088", "photo_flickr_id": "117995005", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "50399", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she thinks that the bride and groom are very lovely .", "storylet_id": "251998"}], [{"original_text": "Her favorite part will be getting a piece of the cake.", "album_id": "72057594090741088", "photo_flickr_id": "117995899", "setting": "last-3-pick-old-and-tell", "worker_id": "A877LK9TV9O003L", "story_id": "50399", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her favorite part will be getting a piece of the cake .", "storylet_id": "251999"}], [{"original_text": "The halloween party had finally started with people dressed as witches and Freddy.", "album_id": "72057594087647761", "photo_flickr_id": "116077074", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "50400", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the halloween party had finally started with people dressed as witches and [male] .", "storylet_id": "252000"}], [{"original_text": "Some took a more exotic approach dressing like Elvis or Egyptians from ancient times.", "album_id": "72057594087647761", "photo_flickr_id": "116077189", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "50400", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some took a more exotic approach dressing like [male] or egyptians from ancient times .", "storylet_id": "252001"}], [{"original_text": "Coupled dressed in themed costumes, like this one with Frankestein's doctor and his bride.", "album_id": "72057594087647761", "photo_flickr_id": "116077335", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "50400", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "coupled dressed in themed costumes , like this one with frankestein 's doctor and his bride .", "storylet_id": "252002"}], [{"original_text": "Others took advantage to dress up because there isn't another chance to get away with dressing like princesses or Marylin.", "album_id": "72057594087647761", "photo_flickr_id": "116077470", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "50400", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others took advantage to dress up because there is n't another chance to get away with dressing like princesses or marylin .", "storylet_id": "252003"}], [{"original_text": "All who attended had a great time together, wearing whatever it was that pleased them within reason.", "album_id": "72057594087647761", "photo_flickr_id": "116077127", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "50400", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all who attended had a great time together , wearing whatever it was that pleased them within reason .", "storylet_id": "252004"}], [{"original_text": "We had so much fun at the halloween party.", "album_id": "72057594087647761", "photo_flickr_id": "116077074", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "50401", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had so much fun at the halloween party .", "storylet_id": "252005"}], [{"original_text": "I loved the Freddy Krueger and Elvis costumes.", "album_id": "72057594087647761", "photo_flickr_id": "116077120", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "50401", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i loved the [male] krueger and [male] costumes .", "storylet_id": "252006"}], [{"original_text": "There was even a guy who looked like a cross between the joker and a rolling stone.", "album_id": "72057594087647761", "photo_flickr_id": "116077275", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "50401", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was even a guy who looked like a cross between the joker and a rolling stone .", "storylet_id": "252007"}], [{"original_text": "Jack skeleton made his appearance at the party.", "album_id": "72057594087647761", "photo_flickr_id": "116077375", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "50401", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] skeleton made his appearance at the party .", "storylet_id": "252008"}], [{"original_text": "And there was even the zombie characters represented as well.", "album_id": "72057594087647761", "photo_flickr_id": "116077442", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "50401", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and there was even the zombie characters represented as well .", "storylet_id": "252009"}], [{"original_text": "The couple looked artistic in their Halloween costumes. ", "album_id": "72057594087647761", "photo_flickr_id": "116077074", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50402", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple looked artistic in their halloween costumes .", "storylet_id": "252010"}], [{"original_text": "He looked like a rock star.", "album_id": "72057594087647761", "photo_flickr_id": "116077189", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50402", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he looked like a rock star .", "storylet_id": "252011"}], [{"original_text": "The couple swapped a quick peck on the cheek. ", "album_id": "72057594087647761", "photo_flickr_id": "116077335", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50402", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the couple swapped a quick peck on the cheek .", "storylet_id": "252012"}], [{"original_text": "The women looked glamorous. ", "album_id": "72057594087647761", "photo_flickr_id": "116077470", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50402", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the women looked glamorous .", "storylet_id": "252013"}], [{"original_text": "Everyone gathered together for a photo together. ", "album_id": "72057594087647761", "photo_flickr_id": "116077127", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50402", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone gathered together for a photo together .", "storylet_id": "252014"}], [{"original_text": "The couples Halloween costume contest was about to begin. No one really understood this costume.", "album_id": "72057594087647761", "photo_flickr_id": "116077074", "setting": "last-3-pick-old-and-tell", "worker_id": "CS7KNP8P891NKFD", "story_id": "50403", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couples halloween costume contest was about to begin . no one really understood this costume .", "storylet_id": "252015"}], [{"original_text": "No one really understood this one either.", "album_id": "72057594087647761", "photo_flickr_id": "116077189", "setting": "last-3-pick-old-and-tell", "worker_id": "CS7KNP8P891NKFD", "story_id": "50403", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "no one really understood this one either .", "storylet_id": "252016"}], [{"original_text": "They thought this was something along the lines of mad scientist/Frankenstein.", "album_id": "72057594087647761", "photo_flickr_id": "116077335", "setting": "last-3-pick-old-and-tell", "worker_id": "CS7KNP8P891NKFD", "story_id": "50403", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they thought this was something along the lines of mad scientist/frankenstein .", "storylet_id": "252017"}], [{"original_text": "This couple won. The judges where frat boys.", "album_id": "72057594087647761", "photo_flickr_id": "116077470", "setting": "last-3-pick-old-and-tell", "worker_id": "CS7KNP8P891NKFD", "story_id": "50403", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this couple won . the judges where frat boys .", "storylet_id": "252018"}], [{"original_text": "After the contest the party really went wild and the group posed for a silly photo.", "album_id": "72057594087647761", "photo_flickr_id": "116077127", "setting": "last-3-pick-old-and-tell", "worker_id": "CS7KNP8P891NKFD", "story_id": "50403", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the contest the party really went wild and the group posed for a silly photo .", "storylet_id": "252019"}], [{"original_text": "Everyone is gathered together to celebrate Halloween.", "album_id": "72057594087647761", "photo_flickr_id": "116077074", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50404", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone is gathered together to celebrate halloween .", "storylet_id": "252020"}], [{"original_text": "Elvis and Cleopatra pose for the camera.", "album_id": "72057594087647761", "photo_flickr_id": "116077189", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50404", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] and cleopatra pose for the camera .", "storylet_id": "252021"}], [{"original_text": "Then there is Frankenstein's wife and a mad scientist.", "album_id": "72057594087647761", "photo_flickr_id": "116077335", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50404", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then there is frankenstein 's wife and a mad scientist .", "storylet_id": "252022"}], [{"original_text": "Two friends come dressed as a prom queen and Marilyn Monroe.", "album_id": "72057594087647761", "photo_flickr_id": "116077470", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50404", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two friends come dressed as a prom queen and [female] [male] .", "storylet_id": "252023"}], [{"original_text": "As the party comes to a close the group poses for a picture.", "album_id": "72057594087647761", "photo_flickr_id": "116077127", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50404", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the party comes to a close the group poses for a picture .", "storylet_id": "252024"}], [{"original_text": "Today I visited my foster family who were of Asian descent. ", "album_id": "72057594110155809", "photo_flickr_id": "130615952", "setting": "first-2-pick-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50405", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i visited my foster family who were of asian descent .", "storylet_id": "252025"}], [{"original_text": "My brother got to hold my baby for the first time.", "album_id": "72057594110155809", "photo_flickr_id": "130615916", "setting": "first-2-pick-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50405", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my brother got to hold my baby for the first time .", "storylet_id": "252026"}], [{"original_text": "We all enjoyed watching a movie together. ", "album_id": "72057594110155809", "photo_flickr_id": "130615943", "setting": "first-2-pick-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50405", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all enjoyed watching a movie together .", "storylet_id": "252027"}], [{"original_text": "And then we did some arts and crafts.", "album_id": "72057594110155809", "photo_flickr_id": "130615975", "setting": "first-2-pick-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50405", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and then we did some arts and crafts .", "storylet_id": "252028"}], [{"original_text": "My wife looked like she fit right in. ", "album_id": "72057594110155809", "photo_flickr_id": "130616009", "setting": "first-2-pick-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50405", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my wife looked like she fit right in .", "storylet_id": "252029"}], [{"original_text": "At the baby shower everyone showed up for a great time.", "album_id": "72057594110155809", "photo_flickr_id": "130615762", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "50406", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the baby shower everyone showed up for a great time .", "storylet_id": "252030"}], [{"original_text": "The kids went out back to play with toys.", "album_id": "72057594110155809", "photo_flickr_id": "130615807", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "50406", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids went out back to play with toys .", "storylet_id": "252031"}], [{"original_text": "They went into the small sandbox and buried the toys.", "album_id": "72057594110155809", "photo_flickr_id": "130615840", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "50406", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they went into the small sandbox and buried the toys .", "storylet_id": "252032"}], [{"original_text": "My husband was laughing at my for taking to many pictures of the event.", "album_id": "72057594110155809", "photo_flickr_id": "130615952", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "50406", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my husband was laughing at my for taking to many pictures of the event .", "storylet_id": "252033"}], [{"original_text": "So many gifts were received by my sister who was having her first baby.", "album_id": "72057594110155809", "photo_flickr_id": "130616009", "setting": "first-2-pick-and-tell", "worker_id": "RZVYQC1NN0TN7DI", "story_id": "50406", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so many gifts were received by my sister who was having her first baby .", "storylet_id": "252034"}], [{"original_text": "Everyone brought gifts to the birthday party,", "album_id": "72057594110155809", "photo_flickr_id": "130615762", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50407", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone brought gifts to the birthday party ,", "storylet_id": "252035"}], [{"original_text": "but the kids didn't care.", "album_id": "72057594110155809", "photo_flickr_id": "130615807", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50407", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but the kids did n't care .", "storylet_id": "252036"}], [{"original_text": "They just wanted to play with in the sandbox.", "album_id": "72057594110155809", "photo_flickr_id": "130615840", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50407", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they just wanted to play with in the sandbox .", "storylet_id": "252037"}], [{"original_text": "The birthday boy cared about the presents though,", "album_id": "72057594110155809", "photo_flickr_id": "130615952", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50407", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the birthday boy cared about the presents though ,", "storylet_id": "252038"}], [{"original_text": "and the rest of the adults worked on crafting to make the party venue look fantastic. ", "album_id": "72057594110155809", "photo_flickr_id": "130616009", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50407", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the rest of the adults worked on crafting to make the party venue look fantastic .", "storylet_id": "252039"}], [{"original_text": "I take a moment to prepare for the guests today.", "album_id": "72057594110155809", "photo_flickr_id": "130615952", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50408", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i take a moment to prepare for the guests today .", "storylet_id": "252040"}], [{"original_text": "The father holds his baby while next to his wife.", "album_id": "72057594110155809", "photo_flickr_id": "130615916", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50408", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the father holds his baby while next to his wife .", "storylet_id": "252041"}], [{"original_text": "The girls smile in joy.", "album_id": "72057594110155809", "photo_flickr_id": "130615943", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50408", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girls smile in joy .", "storylet_id": "252042"}], [{"original_text": "There were many activities to do.", "album_id": "72057594110155809", "photo_flickr_id": "130615975", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50408", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many activities to do .", "storylet_id": "252043"}], [{"original_text": "One of them was opening presents. The baby shower presented to be a success.", "album_id": "72057594110155809", "photo_flickr_id": "130616009", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50408", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of them was opening presents . the baby shower presented to be a success .", "storylet_id": "252044"}], [{"original_text": "The man is smiling widely at the camera.", "album_id": "72057594110155809", "photo_flickr_id": "130615952", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "50409", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man is smiling widely at the camera .", "storylet_id": "252045"}], [{"original_text": "The man is holding the baby while the woman is smiling.", "album_id": "72057594110155809", "photo_flickr_id": "130615916", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "50409", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man is holding the baby while the woman is smiling .", "storylet_id": "252046"}], [{"original_text": "The whole family is watching television.", "album_id": "72057594110155809", "photo_flickr_id": "130615943", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "50409", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the whole family is watching television .", "storylet_id": "252047"}], [{"original_text": "The family is getting organized at the table.", "album_id": "72057594110155809", "photo_flickr_id": "130615975", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "50409", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family is getting organized at the table .", "storylet_id": "252048"}], [{"original_text": "The family is making big plans at the table.", "album_id": "72057594110155809", "photo_flickr_id": "130616009", "setting": "last-3-pick-old-and-tell", "worker_id": "JVA4LZVUU1FNPS9", "story_id": "50409", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family is making big plans at the table .", "storylet_id": "252049"}], [{"original_text": "The ceremony was over.", "album_id": "72157602307184121", "photo_flickr_id": "135754129", "setting": "first-2-pick-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "50410", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ceremony was over .", "storylet_id": "252050"}], [{"original_text": "The guests were all ready to dance.", "album_id": "72157602307184121", "photo_flickr_id": "135754065", "setting": "first-2-pick-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "50410", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guests were all ready to dance .", "storylet_id": "252051"}], [{"original_text": "The parents of the bride and groom danced together.", "album_id": "72157602307184121", "photo_flickr_id": "135754075", "setting": "first-2-pick-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "50410", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the parents of the bride and groom danced together .", "storylet_id": "252052"}], [{"original_text": "And the bride and groom danced as well.", "album_id": "72157602307184121", "photo_flickr_id": "135754084", "setting": "first-2-pick-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "50410", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the bride and groom danced as well .", "storylet_id": "252053"}], [{"original_text": "The final act of the evening was a group photo commemorate the wedding.", "album_id": "72157602307184121", "photo_flickr_id": "135754246", "setting": "first-2-pick-and-tell", "worker_id": "3BS51D7GEX0VKPV", "story_id": "50410", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the final act of the evening was a group photo commemorate the wedding .", "storylet_id": "252054"}], [{"original_text": "The big day had finally arrived for Jess and Tom..", "album_id": "72157602307184121", "photo_flickr_id": "135754108", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "50411", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the big day had finally arrived for [male] and tom..", "storylet_id": "252055"}], [{"original_text": "They said their vows and exchanged rings.", "album_id": "72157602307184121", "photo_flickr_id": "135754120", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "50411", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they said their vows and exchanged rings .", "storylet_id": "252056"}], [{"original_text": "Before family and friends, they became husband and wife.", "album_id": "72157602307184121", "photo_flickr_id": "135754129", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "50411", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "before family and friends , they became husband and wife .", "storylet_id": "252057"}], [{"original_text": "The reception hall was decorated beautifully. Jess spared no expense.", "album_id": "72157602307184121", "photo_flickr_id": "135754147", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "50411", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the reception hall was decorated beautifully . [male] spared no expense .", "storylet_id": "252058"}], [{"original_text": "What a beautiful family portrait on Jess and Tom's big day.", "album_id": "72157602307184121", "photo_flickr_id": "135754246", "setting": "first-2-pick-and-tell", "worker_id": "WAPP3LWTIM0PT64", "story_id": "50411", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what a beautiful family portrait on [male] and [male] 's big day .", "storylet_id": "252059"}], [{"original_text": "The bride and groom walked back down the aisle as husband and wife and headed out to the reception.", "album_id": "72157602307184121", "photo_flickr_id": "135754129", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50412", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride and groom walked back down the aisle as husband and wife and headed out to the reception .", "storylet_id": "252060"}], [{"original_text": "The bride was cold at the reception, so the groom sweetly gave her his jacket.", "album_id": "72157602307184121", "photo_flickr_id": "135754065", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50412", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride was cold at the reception , so the groom sweetly gave her his jacket .", "storylet_id": "252061"}], [{"original_text": "Everyone danced", "album_id": "72157602307184121", "photo_flickr_id": "135754075", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50412", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone danced", "storylet_id": "252062"}], [{"original_text": "and did the traditional dance with the bride and groom.", "album_id": "72157602307184121", "photo_flickr_id": "135754084", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50412", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and did the traditional dance with the bride and groom .", "storylet_id": "252063"}], [{"original_text": "And they made sure to snap lots of pictures so that they could always look back on this day fondly. ", "album_id": "72157602307184121", "photo_flickr_id": "135754246", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50412", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they made sure to snap lots of pictures so that they could always look back on this day fondly .", "storylet_id": "252064"}], [{"original_text": "A couple was married on this day.", "album_id": "72157602307184121", "photo_flickr_id": "135754129", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50413", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple was married on this day .", "storylet_id": "252065"}], [{"original_text": "Friends of the couple enjoy the celebration of the event.", "album_id": "72157602307184121", "photo_flickr_id": "135754065", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50413", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "friends of the couple enjoy the celebration of the event .", "storylet_id": "252066"}], [{"original_text": "An older gentleman dances with his wife.", "album_id": "72157602307184121", "photo_flickr_id": "135754075", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50413", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "an older gentleman dances with his wife .", "storylet_id": "252067"}], [{"original_text": "The wedding couple enjoy a ride on the crowd.", "album_id": "72157602307184121", "photo_flickr_id": "135754084", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50413", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wedding couple enjoy a ride on the crowd .", "storylet_id": "252068"}], [{"original_text": "Lastly, the family of the couple take a moment to pose for the camera.", "album_id": "72157602307184121", "photo_flickr_id": "135754246", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50413", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , the family of the couple take a moment to pose for the camera .", "storylet_id": "252069"}], [{"original_text": "The wedding was filled with love and joy as friends and family gathered for the occasion.", "album_id": "72157602307184121", "photo_flickr_id": "135754129", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "50414", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding was filled with love and joy as friends and family gathered for the occasion .", "storylet_id": "252070"}], [{"original_text": "The husband ensures his wife doesn't get cold out by showing his loving character by encasing his bride with his jacket.", "album_id": "72157602307184121", "photo_flickr_id": "135754065", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "50414", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the husband ensures his wife does n't get cold out by showing his loving character by encasing his bride with his jacket .", "storylet_id": "252071"}], [{"original_text": "The joyous stepparents slow dance to one of the couples favorite songs.", "album_id": "72157602307184121", "photo_flickr_id": "135754075", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "50414", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the joyous stepparents slow dance to one of the couples favorite songs .", "storylet_id": "252072"}], [{"original_text": "It's party time. The reception turned out to be a great success!", "album_id": "72157602307184121", "photo_flickr_id": "135754084", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "50414", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's party time . the reception turned out to be a great success !", "storylet_id": "252073"}], [{"original_text": "The family photo was one not to be forgotten which including all family members and close friends.", "album_id": "72157602307184121", "photo_flickr_id": "135754246", "setting": "last-3-pick-old-and-tell", "worker_id": "QA2UUY3F63BB425", "story_id": "50414", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family photo was one not to be forgotten which including all family members and close friends .", "storylet_id": "252074"}], [{"original_text": "The couple plans to exchange their vows before men and before God as they marry in their church.", "album_id": "72057594136895808", "photo_flickr_id": "147774456", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "50415", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple plans to exchange their vows before men and before god as they marry in their church .", "storylet_id": "252075"}], [{"original_text": "They exchange the vows as their minister presides.", "album_id": "72057594136895808", "photo_flickr_id": "147774550", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "50415", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they exchange the vows as their minister presides .", "storylet_id": "252076"}], [{"original_text": "The couple is presented to the witnesses.", "album_id": "72057594136895808", "photo_flickr_id": "147774706", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "50415", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the couple is presented to the witnesses .", "storylet_id": "252077"}], [{"original_text": "They dance at the reception.", "album_id": "72057594136895808", "photo_flickr_id": "147775316", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "50415", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they dance at the reception .", "storylet_id": "252078"}], [{"original_text": "They each add their mom to one of the post wedding photos. They have prayed that God will bless this union.", "album_id": "72057594136895808", "photo_flickr_id": "147774784", "setting": "first-2-pick-and-tell", "worker_id": "L1R6VNB0SLL056Y", "story_id": "50415", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they each add their mom to one of the post wedding photos . they have prayed that god will bless this union .", "storylet_id": "252079"}], [{"original_text": "We were so excited to share in the wedding day with the beautiful couple.", "album_id": "72057594136895808", "photo_flickr_id": "147774456", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "50416", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were so excited to share in the wedding day with the beautiful couple .", "storylet_id": "252080"}], [{"original_text": "We watched as they exchanged vows to each other", "album_id": "72057594136895808", "photo_flickr_id": "147774550", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "50416", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we watched as they exchanged vows to each other", "storylet_id": "252081"}], [{"original_text": "We then had our pictures taken outside with them", "album_id": "72057594136895808", "photo_flickr_id": "147774740", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "50416", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we then had our pictures taken outside with them", "storylet_id": "252082"}], [{"original_text": "We listened as his brother the best man gave a great toast ", "album_id": "72057594136895808", "photo_flickr_id": "147774944", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "50416", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we listened as his brother the best man gave a great toast", "storylet_id": "252083"}], [{"original_text": "And finally it ended with an epic lightsaber duel.", "album_id": "72057594136895808", "photo_flickr_id": "147775235", "setting": "first-2-pick-and-tell", "worker_id": "BG2UBJ3G1SY6K5F", "story_id": "50416", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and finally it ended with an epic lightsaber duel .", "storylet_id": "252084"}], [{"original_text": "We gathered at the church to celebrate the marriage.", "album_id": "72057594136895808", "photo_flickr_id": "147774456", "setting": "last-3-pick-old-and-tell", "worker_id": "1M0HNCY9LPH9RWN", "story_id": "50417", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we gathered at the church to celebrate the marriage .", "storylet_id": "252085"}], [{"original_text": "The bride and groom wrote their own wedding vows.", "album_id": "72057594136895808", "photo_flickr_id": "147774550", "setting": "last-3-pick-old-and-tell", "worker_id": "1M0HNCY9LPH9RWN", "story_id": "50417", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom wrote their own wedding vows .", "storylet_id": "252086"}], [{"original_text": "They make a handsome couple.", "album_id": "72057594136895808", "photo_flickr_id": "147774706", "setting": "last-3-pick-old-and-tell", "worker_id": "1M0HNCY9LPH9RWN", "story_id": "50417", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they make a handsome couple .", "storylet_id": "252087"}], [{"original_text": "The reception began with the bride and groom dancing.", "album_id": "72057594136895808", "photo_flickr_id": "147775316", "setting": "last-3-pick-old-and-tell", "worker_id": "1M0HNCY9LPH9RWN", "story_id": "50417", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the reception began with the bride and groom dancing .", "storylet_id": "252088"}], [{"original_text": "After the reception, family pictures were taken with the bride and groom.", "album_id": "72057594136895808", "photo_flickr_id": "147774784", "setting": "last-3-pick-old-and-tell", "worker_id": "1M0HNCY9LPH9RWN", "story_id": "50417", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the reception , family pictures were taken with the bride and groom .", "storylet_id": "252089"}], [{"original_text": "The venue was ready for the wedding ceremony to begin.", "album_id": "72057594136895808", "photo_flickr_id": "147774456", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50418", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the venue was ready for the wedding ceremony to begin .", "storylet_id": "252090"}], [{"original_text": "So the bride walked down the aisle and met her fiance at the alter so that they could exchange vow and become husband and wife.", "album_id": "72057594136895808", "photo_flickr_id": "147774550", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50418", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so the bride walked down the aisle and met her fiance at the alter so that they could exchange vow and become husband and wife .", "storylet_id": "252091"}], [{"original_text": "After the vows were exchanged, they began their trek back down the aisle, but this time as a married couple.", "album_id": "72057594136895808", "photo_flickr_id": "147774706", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50418", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the vows were exchanged , they began their trek back down the aisle , but this time as a married couple .", "storylet_id": "252092"}], [{"original_text": "They shared their first dance together at the reception", "album_id": "72057594136895808", "photo_flickr_id": "147775316", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50418", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they shared their first dance together at the reception", "storylet_id": "252093"}], [{"original_text": "and made sure to get several pictures so that they could cherish this day forever. ", "album_id": "72057594136895808", "photo_flickr_id": "147774784", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50418", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and made sure to get several pictures so that they could cherish this day forever .", "storylet_id": "252094"}], [{"original_text": "The wedding ceremony is held inside a church.", "album_id": "72057594136895808", "photo_flickr_id": "147774456", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50419", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding ceremony is held inside a church .", "storylet_id": "252095"}], [{"original_text": "The bride and groom hold hands.", "album_id": "72057594136895808", "photo_flickr_id": "147774550", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50419", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom hold hands .", "storylet_id": "252096"}], [{"original_text": "They face toward the crowd.", "album_id": "72057594136895808", "photo_flickr_id": "147774706", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50419", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they face toward the crowd .", "storylet_id": "252097"}], [{"original_text": "They take a moment to dance.", "album_id": "72057594136895808", "photo_flickr_id": "147775316", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50419", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they take a moment to dance .", "storylet_id": "252098"}], [{"original_text": "Lastly, the couple takes a picture with their mothers.", "album_id": "72057594136895808", "photo_flickr_id": "147774784", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50419", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , the couple takes a picture with their mothers .", "storylet_id": "252099"}], [{"original_text": "It was going to be a great day for a wedding. ", "album_id": "72157594156380350", "photo_flickr_id": "160919407", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "50420", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was going to be a great day for a wedding .", "storylet_id": "252100"}], [{"original_text": "The bride and groom walked to the front of the people gathered. ", "album_id": "72157594156380350", "photo_flickr_id": "160919417", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "50420", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom walked to the front of the people gathered .", "storylet_id": "252101"}], [{"original_text": "They were pronounced man and wife in front of all there family and friends.", "album_id": "72157594156380350", "photo_flickr_id": "160913430", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "50420", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were pronounced man and wife in front of all there family and friends .", "storylet_id": "252102"}], [{"original_text": "Next it was time to pose for photos for cherished memories. ", "album_id": "72157594156380350", "photo_flickr_id": "160913417", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "50420", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next it was time to pose for photos for cherished memories .", "storylet_id": "252103"}], [{"original_text": "Later in the day everyone enjoyed a great meal at the reception. ", "album_id": "72157594156380350", "photo_flickr_id": "160919420", "setting": "first-2-pick-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "50420", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later in the day everyone enjoyed a great meal at the reception .", "storylet_id": "252104"}], [{"original_text": "The church was ready and waiting. ", "album_id": "72157594156380350", "photo_flickr_id": "160921195", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "50421", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the church was ready and waiting .", "storylet_id": "252105"}], [{"original_text": "The groom yelled out the window his great love for his soon to be bride. ", "album_id": "72157594156380350", "photo_flickr_id": "160919415", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "50421", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the groom yelled out the window his great love for his soon to be bride .", "storylet_id": "252106"}], [{"original_text": "The wedding guests enjoyed a savory luncheon.", "album_id": "72157594156380350", "photo_flickr_id": "160919420", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "50421", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the wedding guests enjoyed a savory luncheon .", "storylet_id": "252107"}], [{"original_text": "The bride and groom were thrilled to be married. The bride threw her bouquet over her shoulder. ", "album_id": "72157594156380350", "photo_flickr_id": "160919417", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "50421", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride and groom were thrilled to be married . the bride threw her bouquet over her shoulder .", "storylet_id": "252108"}], [{"original_text": "The happy couple got into the waiting Royals Royce to go off on their honeymoon. ", "album_id": "72157594156380350", "photo_flickr_id": "160919407", "setting": "first-2-pick-and-tell", "worker_id": "8I5AEA6W356YKL3", "story_id": "50421", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the happy couple got into the waiting royals [male] to go off on their honeymoon .", "storylet_id": "252109"}], [{"original_text": "The bride and groom arrived in style for their elegant wedding.", "album_id": "72157594156380350", "photo_flickr_id": "160919407", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50422", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride and groom arrived in style for their elegant wedding .", "storylet_id": "252110"}], [{"original_text": "They walked down the aisle and said their vows.", "album_id": "72157594156380350", "photo_flickr_id": "160919417", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50422", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they walked down the aisle and said their vows .", "storylet_id": "252111"}], [{"original_text": "Then they walked back down the aisle as husband and wife.", "album_id": "72157594156380350", "photo_flickr_id": "160913430", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50422", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they walked back down the aisle as husband and wife .", "storylet_id": "252112"}], [{"original_text": "After the ceremony, they made sure to stop so people could snap some photos,", "album_id": "72157594156380350", "photo_flickr_id": "160913417", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50422", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the ceremony , they made sure to stop so people could snap some photos ,", "storylet_id": "252113"}], [{"original_text": "and then they made their way to their reception.", "album_id": "72157594156380350", "photo_flickr_id": "160919420", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50422", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then they made their way to their reception .", "storylet_id": "252114"}], [{"original_text": "The car was a fantastic touch to the event.", "album_id": "72157594156380350", "photo_flickr_id": "160919407", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50423", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the car was a fantastic touch to the event .", "storylet_id": "252115"}], [{"original_text": "The groom and bride are intimate.", "album_id": "72157594156380350", "photo_flickr_id": "160919417", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50423", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the groom and bride are intimate .", "storylet_id": "252116"}], [{"original_text": "They were the main attraction of the event.", "album_id": "72157594156380350", "photo_flickr_id": "160913430", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50423", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were the main attraction of the event .", "storylet_id": "252117"}], [{"original_text": "The couple watches the crowd with happiness.", "album_id": "72157594156380350", "photo_flickr_id": "160913417", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50423", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple watches the crowd with happiness .", "storylet_id": "252118"}], [{"original_text": "Lastly, lunch was served in a well-furnished building.", "album_id": "72157594156380350", "photo_flickr_id": "160919420", "setting": "last-3-pick-old-and-tell", "worker_id": "X82FW5TY9R07R6R", "story_id": "50423", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , lunch was served in a well-furnished building .", "storylet_id": "252119"}], [{"original_text": "Friends and family gathered for a wedding.", "album_id": "72157594156380350", "photo_flickr_id": "160919407", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50424", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends and family gathered for a wedding .", "storylet_id": "252120"}], [{"original_text": "Everyone watched as the young couple got married.", "album_id": "72157594156380350", "photo_flickr_id": "160919417", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50424", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone watched as the young couple got married .", "storylet_id": "252121"}], [{"original_text": "They were there to congratulate them.", "album_id": "72157594156380350", "photo_flickr_id": "160913430", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50424", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were there to congratulate them .", "storylet_id": "252122"}], [{"original_text": "Then the bride and groom took time to thank everyone. ", "album_id": "72157594156380350", "photo_flickr_id": "160913417", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50424", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then the bride and groom took time to thank everyone .", "storylet_id": "252123"}], [{"original_text": "After the wedding everyone sat down to a large meal.", "album_id": "72157594156380350", "photo_flickr_id": "160919420", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50424", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the wedding everyone sat down to a large meal .", "storylet_id": "252124"}], [{"original_text": "Everyone was getting ready for the wedding that day. ", "album_id": "72157594192099361", "photo_flickr_id": "185024794", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50425", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was getting ready for the wedding that day .", "storylet_id": "252125"}], [{"original_text": "Redbull and Tums were brought for added fun.", "album_id": "72157594192099361", "photo_flickr_id": "185025013", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50425", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "redbull and tums were brought for added fun .", "storylet_id": "252126"}], [{"original_text": "The men all posed for a picture before the ceremony. ", "album_id": "72157594192099361", "photo_flickr_id": "185024509", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50425", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the men all posed for a picture before the ceremony .", "storylet_id": "252127"}], [{"original_text": "The bride and groom walk down the aisle to take their vows.", "album_id": "72157594192099361", "photo_flickr_id": "185024637", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50425", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride and groom walk down the aisle to take their vows .", "storylet_id": "252128"}], [{"original_text": "The night winds down as the man makes a speech at the reception. ", "album_id": "72157594192099361", "photo_flickr_id": "185024753", "setting": "first-2-pick-and-tell", "worker_id": "VTK03JJ7IMF6Z33", "story_id": "50425", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night winds down as the man makes a speech at the reception .", "storylet_id": "252129"}], [{"original_text": "The groom was more than ready for his big day.", "album_id": "72157594192099361", "photo_flickr_id": "185024794", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "50426", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the groom was more than ready for his big day .", "storylet_id": "252130"}], [{"original_text": "He started the day with a stiff drink.", "album_id": "72157594192099361", "photo_flickr_id": "185024904", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "50426", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he started the day with a stiff drink .", "storylet_id": "252131"}], [{"original_text": "His best man was still working on the speech.", "album_id": "72157594192099361", "photo_flickr_id": "185024961", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "50426", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his best man was still working on the speech .", "storylet_id": "252132"}], [{"original_text": "The other men were getting dressed. ", "album_id": "72157594192099361", "photo_flickr_id": "185025030", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "50426", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the other men were getting dressed .", "storylet_id": "252133"}], [{"original_text": "They had all the basics for the day.", "album_id": "72157594192099361", "photo_flickr_id": "185025013", "setting": "first-2-pick-and-tell", "worker_id": "EA2RCJS9ZWAQQP0", "story_id": "50426", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had all the basics for the day .", "storylet_id": "252134"}], [{"original_text": "The soon to be groom was in good spirits the day of his wedding.", "album_id": "72157594192099361", "photo_flickr_id": "185024794", "setting": "last-3-pick-old-and-tell", "worker_id": "64SVRZOF6PPO6Q7", "story_id": "50427", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the soon to be groom was in good spirits the day of his wedding .", "storylet_id": "252135"}], [{"original_text": "He had tums and energy drinks to keep him going, since he had stayed up late the night before for his bachelor party.", "album_id": "72157594192099361", "photo_flickr_id": "185025013", "setting": "last-3-pick-old-and-tell", "worker_id": "64SVRZOF6PPO6Q7", "story_id": "50427", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he had tums and energy drinks to keep him going , since he had stayed up late the night before for his bachelor party .", "storylet_id": "252136"}], [{"original_text": "After he got ready, he posed with his closest friends and family.", "album_id": "72157594192099361", "photo_flickr_id": "185024509", "setting": "last-3-pick-old-and-tell", "worker_id": "64SVRZOF6PPO6Q7", "story_id": "50427", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after he got ready , he posed with his closest friends and family .", "storylet_id": "252137"}], [{"original_text": "The bride and groom both looked stunning during the ceremony.", "album_id": "72157594192099361", "photo_flickr_id": "185024637", "setting": "last-3-pick-old-and-tell", "worker_id": "64SVRZOF6PPO6Q7", "story_id": "50427", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride and groom both looked stunning during the ceremony .", "storylet_id": "252138"}], [{"original_text": "Everyone had a great time at the reception, eating and listening to everyone's well wishes, jokes and speeches.", "album_id": "72157594192099361", "photo_flickr_id": "185024753", "setting": "last-3-pick-old-and-tell", "worker_id": "64SVRZOF6PPO6Q7", "story_id": "50427", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time at the reception , eating and listening to everyone 's well wishes , jokes and speeches .", "storylet_id": "252139"}], [{"original_text": "Here I am. Ready to get married.", "album_id": "72157594192099361", "photo_flickr_id": "185024794", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50428", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here i am . ready to get married .", "storylet_id": "252140"}], [{"original_text": "Last night was the bachelor party. This is what I need to recover and make it down the aisle.", "album_id": "72157594192099361", "photo_flickr_id": "185025013", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50428", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "last night was the bachelor party . this is what i need to recover and make it down the aisle .", "storylet_id": "252141"}], [{"original_text": "All the groomsmen, looking a bit rough themselves.", "album_id": "72157594192099361", "photo_flickr_id": "185024509", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50428", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the groomsmen , looking a bit rough themselves .", "storylet_id": "252142"}], [{"original_text": "My beautiful bride walking down the aisle with her father.", "album_id": "72157594192099361", "photo_flickr_id": "185024637", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50428", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my beautiful bride walking down the aisle with her father .", "storylet_id": "252143"}], [{"original_text": "Here is my best man giving the traditional toast. Such a great day.", "album_id": "72157594192099361", "photo_flickr_id": "185024753", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50428", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is my best man giving the traditional toast . such a great day .", "storylet_id": "252144"}], [{"original_text": "Wow the big day has arrived and now I have to get ready. ", "album_id": "72157594192099361", "photo_flickr_id": "185024794", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "50429", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "wow the big day has arrived and now i have to get ready .", "storylet_id": "252145"}], [{"original_text": "A few energy drinks and other necessities to get me through the day. ", "album_id": "72157594192099361", "photo_flickr_id": "185025013", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "50429", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a few energy drinks and other necessities to get me through the day .", "storylet_id": "252146"}], [{"original_text": "Don't we just all look handsome in our suits. ", "album_id": "72157594192099361", "photo_flickr_id": "185024509", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "50429", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "do n't we just all look handsome in our suits .", "storylet_id": "252147"}], [{"original_text": "It is done we are married and she is beautiful. I cannot wait to start my life with her she is my everything. ", "album_id": "72157594192099361", "photo_flickr_id": "185024637", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "50429", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is done we are married and she is beautiful . i can not wait to start my life with her she is my everything .", "storylet_id": "252148"}], [{"original_text": "My best friend and best man starting the reception off right telling a few jokes and saying the best thinks ever. ", "album_id": "72157594192099361", "photo_flickr_id": "185024753", "setting": "last-3-pick-old-and-tell", "worker_id": "U20RP7PGNKMK3SR", "story_id": "50429", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my best friend and best man starting the reception off right telling a few jokes and saying the best thinks ever .", "storylet_id": "252149"}], [{"original_text": "My bother finally got married.", "album_id": "72157594193720935", "photo_flickr_id": "186196715", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "50430", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my bother finally got married .", "storylet_id": "252150"}], [{"original_text": "Him and his wife like to joke around.", "album_id": "72157594193720935", "photo_flickr_id": "186195990", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "50430", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "him and his wife like to joke around .", "storylet_id": "252151"}], [{"original_text": "Here is my new sister in law posing with my parents.", "album_id": "72157594193720935", "photo_flickr_id": "186189574", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "50430", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is my new sister in law posing with my parents .", "storylet_id": "252152"}], [{"original_text": "They're really in love.", "album_id": "72157594193720935", "photo_flickr_id": "186192112", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "50430", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they 're really in love .", "storylet_id": "252153"}], [{"original_text": "I took one final shot to remember the visit.", "album_id": "72157594193720935", "photo_flickr_id": "186187927", "setting": "first-2-pick-and-tell", "worker_id": "OAXY4J0IYZTQYUJ", "story_id": "50430", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i took one final shot to remember the visit .", "storylet_id": "252154"}], [{"original_text": "Relaxing after the big day..our wedding!", "album_id": "72157594193720935", "photo_flickr_id": "186195990", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "50431", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "relaxing after the big day..our wedding !", "storylet_id": "252155"}], [{"original_text": "I am the luckiest girl in the world. ", "album_id": "72157594193720935", "photo_flickr_id": "186192112", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "50431", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i am the luckiest girl in the world .", "storylet_id": "252156"}], [{"original_text": "My besties and me after the wedding. Couldn't have pulled this off without them.", "album_id": "72157594193720935", "photo_flickr_id": "186190442", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "50431", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my besties and me after the wedding . could n't have pulled this off without them .", "storylet_id": "252157"}], [{"original_text": "My parents and me. They have supported me the whole time.", "album_id": "72157594193720935", "photo_flickr_id": "186189574", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "50431", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my parents and me . they have supported me the whole time .", "storylet_id": "252158"}], [{"original_text": "The happy couple! Look how cute we are.", "album_id": "72157594193720935", "photo_flickr_id": "186187927", "setting": "first-2-pick-and-tell", "worker_id": "9U7SVX7WEX1CSRY", "story_id": "50431", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the happy couple ! look how cute we are .", "storylet_id": "252159"}], [{"original_text": "The newlyweds celebrated with the woman's parents the day after their wedding.", "album_id": "72157594193720935", "photo_flickr_id": "186196715", "setting": "last-3-pick-old-and-tell", "worker_id": "64SVRZOF6PPO6Q7", "story_id": "50432", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the newlyweds celebrated with the woman 's parents the day after their wedding .", "storylet_id": "252160"}], [{"original_text": "The young couple had a great time, laughing about how nervous they had been at the wedding.", "album_id": "72157594193720935", "photo_flickr_id": "186195990", "setting": "last-3-pick-old-and-tell", "worker_id": "64SVRZOF6PPO6Q7", "story_id": "50432", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the young couple had a great time , laughing about how nervous they had been at the wedding .", "storylet_id": "252161"}], [{"original_text": "The husband took a picture of his new wife with her parents before they left to let the young couple enjoy their honeymoon.", "album_id": "72157594193720935", "photo_flickr_id": "186189574", "setting": "last-3-pick-old-and-tell", "worker_id": "64SVRZOF6PPO6Q7", "story_id": "50432", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the husband took a picture of his new wife with her parents before they left to let the young couple enjoy their honeymoon .", "storylet_id": "252162"}], [{"original_text": "But before they left, the parents took a couple of pictures of the young couple.", "album_id": "72157594193720935", "photo_flickr_id": "186192112", "setting": "last-3-pick-old-and-tell", "worker_id": "64SVRZOF6PPO6Q7", "story_id": "50432", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but before they left , the parents took a couple of pictures of the young couple .", "storylet_id": "252163"}], [{"original_text": "The new bride was sad to see her parents go, but also excited to spend some time with her new groom.", "album_id": "72157594193720935", "photo_flickr_id": "186187927", "setting": "last-3-pick-old-and-tell", "worker_id": "64SVRZOF6PPO6Q7", "story_id": "50432", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the new bride was sad to see her parents go , but also excited to spend some time with her new groom .", "storylet_id": "252164"}], [{"original_text": "Together. Celebrating at our engagement party.", "album_id": "72157594193720935", "photo_flickr_id": "186196715", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50433", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "together . celebrating at our engagement party .", "storylet_id": "252165"}], [{"original_text": "This is my husband to be. He always makes me smile.", "album_id": "72157594193720935", "photo_flickr_id": "186195990", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50433", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is my husband to be . he always makes me smile .", "storylet_id": "252166"}], [{"original_text": "My mother and father are sharing this special moment with me.", "album_id": "72157594193720935", "photo_flickr_id": "186189574", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50433", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my mother and father are sharing this special moment with me .", "storylet_id": "252167"}], [{"original_text": "I think we make a cute couple.", "album_id": "72157594193720935", "photo_flickr_id": "186192112", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50433", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i think we make a cute couple .", "storylet_id": "252168"}], [{"original_text": "We will always be happy.", "album_id": "72157594193720935", "photo_flickr_id": "186187927", "setting": "last-3-pick-old-and-tell", "worker_id": "93GFF6884Z8941H", "story_id": "50433", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we will always be happy .", "storylet_id": "252169"}], [{"original_text": "Tina and Jim at their rehearsal dinner.", "album_id": "72157594193720935", "photo_flickr_id": "186196715", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "50434", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [male] at their rehearsal dinner .", "storylet_id": "252170"}], [{"original_text": "Jim cracked a joke about his father.", "album_id": "72157594193720935", "photo_flickr_id": "186195990", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "50434", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] cracked a joke about his father .", "storylet_id": "252171"}], [{"original_text": "Tina posing with her adopted parents.", "album_id": "72157594193720935", "photo_flickr_id": "186189574", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "50434", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] posing with her adopted parents .", "storylet_id": "252172"}], [{"original_text": "The bride and groom posing for another shot.", "album_id": "72157594193720935", "photo_flickr_id": "186192112", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "50434", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride and groom posing for another shot .", "storylet_id": "252173"}], [{"original_text": "The happy couple ready to get married tomorrow.", "album_id": "72157594193720935", "photo_flickr_id": "186187927", "setting": "last-3-pick-old-and-tell", "worker_id": "1JTYXROZVMV1R75", "story_id": "50434", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the happy couple ready to get married tomorrow .", "storylet_id": "252174"}], [{"original_text": "The bride was tended to by her bridesmaids.", "album_id": "72157594189042441", "photo_flickr_id": "183022985", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "50435", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride was tended to by her bridesmaids .", "storylet_id": "252175"}], [{"original_text": "They stood in the background making sure everything went well.", "album_id": "72157594189042441", "photo_flickr_id": "183022820", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "50435", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they stood in the background making sure everything went well .", "storylet_id": "252176"}], [{"original_text": "Her best friends came from out of town.", "album_id": "72157594189042441", "photo_flickr_id": "183022174", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "50435", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her best friends came from out of town .", "storylet_id": "252177"}], [{"original_text": "His sister who was also a bridesmaid and her partner also showed the groom support.", "album_id": "72157594189042441", "photo_flickr_id": "183021957", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "50435", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his sister who was also a bridesmaid and her partner also showed the groom support .", "storylet_id": "252178"}], [{"original_text": "Family and friends stood together to support the newlywed couple through their exciting day.", "album_id": "72157594189042441", "photo_flickr_id": "183021394", "setting": "first-2-pick-and-tell", "worker_id": "DNES1HK93X4NT80", "story_id": "50435", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "family and friends stood together to support the newlywed couple through their exciting day .", "storylet_id": "252179"}], [{"original_text": "Shannon and Dave had a wonderful wedding. ", "album_id": "72157594189042441", "photo_flickr_id": "183021756", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "50436", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [male] had a wonderful wedding .", "storylet_id": "252180"}], [{"original_text": "Shannon was so happy.", "album_id": "72157594189042441", "photo_flickr_id": "183021684", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "50436", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] was so happy .", "storylet_id": "252181"}], [{"original_text": "The guests had a good time too.", "album_id": "72157594189042441", "photo_flickr_id": "183021577", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "50436", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guests had a good time too .", "storylet_id": "252182"}], [{"original_text": "The beautiful wedding was held by a lake. ", "album_id": "72157594189042441", "photo_flickr_id": "183021351", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "50436", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beautiful wedding was held by a lake .", "storylet_id": "252183"}], [{"original_text": "After the wedding the bride and groom at the first slice of cake.", "album_id": "72157594189042441", "photo_flickr_id": "183021070", "setting": "first-2-pick-and-tell", "worker_id": "LQKFWF1KHEHFA3H", "story_id": "50436", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the wedding the bride and groom at the first slice of cake .", "storylet_id": "252184"}], [{"original_text": "Everyone watched as the bride and groom got married.", "album_id": "72157594189042441", "photo_flickr_id": "183022985", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50437", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone watched as the bride and groom got married .", "storylet_id": "252185"}], [{"original_text": "All of the bride's maids stood behind the bride to watch her get married.", "album_id": "72157594189042441", "photo_flickr_id": "183022820", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50437", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the bride 's maids stood behind the bride to watch her get married .", "storylet_id": "252186"}], [{"original_text": "The bride's friends was so excited for her.", "album_id": "72157594189042441", "photo_flickr_id": "183022174", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50437", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride 's friends was so excited for her .", "storylet_id": "252187"}], [{"original_text": "All of their friends and family were their to congratulate them.", "album_id": "72157594189042441", "photo_flickr_id": "183021957", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50437", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of their friends and family were their to congratulate them .", "storylet_id": "252188"}], [{"original_text": "After the wedding, they all took time for group photos.", "album_id": "72157594189042441", "photo_flickr_id": "183021394", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50437", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the wedding , they all took time for group photos .", "storylet_id": "252189"}], [{"original_text": "The bride and groom are at the front by the arch and they are saying their vows.", "album_id": "72157594189042441", "photo_flickr_id": "183022985", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50438", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride and groom are at the front by the arch and they are saying their vows .", "storylet_id": "252190"}], [{"original_text": "They both say I do and applause is hear very loudly.", "album_id": "72157594189042441", "photo_flickr_id": "183022820", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50438", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they both say i do and applause is hear very loudly .", "storylet_id": "252191"}], [{"original_text": "The bride poses with her two bridesmaids.", "album_id": "72157594189042441", "photo_flickr_id": "183022174", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50438", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride poses with her two bridesmaids .", "storylet_id": "252192"}], [{"original_text": "The groom takes a photo with a bridesmaid and his sister.", "album_id": "72157594189042441", "photo_flickr_id": "183021957", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50438", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the groom takes a photo with a bridesmaid and his sister .", "storylet_id": "252193"}], [{"original_text": "Finally the whole wedding party is photographed together.", "album_id": "72157594189042441", "photo_flickr_id": "183021394", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50438", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the whole wedding party is photographed together .", "storylet_id": "252194"}], [{"original_text": "My best friend from childhood got married today.", "album_id": "72157594189042441", "photo_flickr_id": "183022985", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "50439", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my best friend from childhood got married today .", "storylet_id": "252195"}], [{"original_text": "Her bridesmaids all wore stunning red dresses.", "album_id": "72157594189042441", "photo_flickr_id": "183022820", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "50439", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her bridesmaids all wore stunning red dresses .", "storylet_id": "252196"}], [{"original_text": "Though her bridesmaids were pretty, the bride truly stole the show.", "album_id": "72157594189042441", "photo_flickr_id": "183022174", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "50439", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "though her bridesmaids were pretty , the bride truly stole the show .", "storylet_id": "252197"}], [{"original_text": "In truth, I was jealous, and ended up hitting on every girl at the wedding dinner.", "album_id": "72157594189042441", "photo_flickr_id": "183021957", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "50439", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in truth , i was jealous , and ended up hitting on every girl at the wedding dinner .", "storylet_id": "252198"}], [{"original_text": "The weather was absolutely perfect for wedding pictures.", "album_id": "72157594189042441", "photo_flickr_id": "183021394", "setting": "last-3-pick-old-and-tell", "worker_id": "80ALO3ZDDCMOP6A", "story_id": "50439", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the weather was absolutely perfect for wedding pictures .", "storylet_id": "252199"}], [{"original_text": "The flower girl was really excited for the wedding.", "album_id": "313345", "photo_flickr_id": "12846319", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "50440", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the flower girl was really excited for the wedding .", "storylet_id": "252200"}], [{"original_text": "The bride and bridesmaids all lined up and looking beautiful.", "album_id": "313345", "photo_flickr_id": "12846321", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "50440", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and bridesmaids all lined up and looking beautiful .", "storylet_id": "252201"}], [{"original_text": "The newly married couple making the first cut into their cake.", "album_id": "313345", "photo_flickr_id": "12846326", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "50440", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the newly married couple making the first cut into their cake .", "storylet_id": "252202"}], [{"original_text": "This little guy loved being the ring bearer.", "album_id": "313345", "photo_flickr_id": "12846352", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "50440", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this little guy loved being the ring bearer .", "storylet_id": "252203"}], [{"original_text": "You could tell how happy the bride was to be married.", "album_id": "313345", "photo_flickr_id": "12846413", "setting": "first-2-pick-and-tell", "worker_id": "4WQJZEPUTSSQL82", "story_id": "50440", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you could tell how happy the bride was to be married .", "storylet_id": "252204"}], [{"original_text": "Doesn't Jessica look just adorable as the flower girl? I love her makeup!", "album_id": "313345", "photo_flickr_id": "12846319", "setting": "first-2-pick-and-tell", "worker_id": "SF9LHCBMKXNNZSB", "story_id": "50441", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "does n't [female] look just adorable as the flower girl ? i love her makeup !", "storylet_id": "252205"}], [{"original_text": "Here are the bridesmaids and I. I picked out the color for the dresses, I thought they were great.", "album_id": "313345", "photo_flickr_id": "12846321", "setting": "first-2-pick-and-tell", "worker_id": "SF9LHCBMKXNNZSB", "story_id": "50441", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here are the bridesmaids and i. i picked out the color for the dresses , i thought they were great .", "storylet_id": "252206"}], [{"original_text": "We even had a professional caterer come in to help with the buffet. Everyone seemed to enjoy it.", "album_id": "313345", "photo_flickr_id": "12846341", "setting": "first-2-pick-and-tell", "worker_id": "SF9LHCBMKXNNZSB", "story_id": "50441", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even had a professional caterer come in to help with the buffet . everyone seemed to enjoy it .", "storylet_id": "252207"}], [{"original_text": "Here are all of my adorable children. I'm so lucky to have a husband that loves children.", "album_id": "313345", "photo_flickr_id": "12846361", "setting": "first-2-pick-and-tell", "worker_id": "SF9LHCBMKXNNZSB", "story_id": "50441", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here are all of my adorable children . i 'm so lucky to have a husband that loves children .", "storylet_id": "252208"}], [{"original_text": "Here we are after a big day. I should look happier, but I totally am, I swear!", "album_id": "313345", "photo_flickr_id": "12846378", "setting": "first-2-pick-and-tell", "worker_id": "SF9LHCBMKXNNZSB", "story_id": "50441", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here we are after a big day . i should look happier , but i totally am , i swear !", "storylet_id": "252209"}], [{"original_text": "Everyone was really excited for the wedding today.", "album_id": "313345", "photo_flickr_id": "12846319", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50442", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was really excited for the wedding today .", "storylet_id": "252210"}], [{"original_text": "They were all dressed so nice.", "album_id": "313345", "photo_flickr_id": "12846321", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50442", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were all dressed so nice .", "storylet_id": "252211"}], [{"original_text": "We had the entire event catered.", "album_id": "313345", "photo_flickr_id": "12846341", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50442", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had the entire event catered .", "storylet_id": "252212"}], [{"original_text": "All of the family members were there.", "album_id": "313345", "photo_flickr_id": "12846361", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50442", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the family members were there .", "storylet_id": "252213"}], [{"original_text": "The new couple had a lovely time.", "album_id": "313345", "photo_flickr_id": "12846378", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50442", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the new couple had a lovely time .", "storylet_id": "252214"}], [{"original_text": "Penelope had the cutest smile when I took her photo.", "album_id": "313345", "photo_flickr_id": "12846319", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50443", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "penelope had the cutest smile when i took her photo .", "storylet_id": "252215"}], [{"original_text": "The girls looked so lovely in their dresses.", "album_id": "313345", "photo_flickr_id": "12846321", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50443", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girls looked so lovely in their dresses .", "storylet_id": "252216"}], [{"original_text": "The cake didn't cost much but it tasted great.", "album_id": "313345", "photo_flickr_id": "12846326", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50443", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cake did n't cost much but it tasted great .", "storylet_id": "252217"}], [{"original_text": "Franky had a little suit that really suited him.", "album_id": "313345", "photo_flickr_id": "12846352", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50443", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "franky had a little suit that really suited him .", "storylet_id": "252218"}], [{"original_text": "Yessenia made a funny face when she held the flowers. ", "album_id": "313345", "photo_flickr_id": "12846413", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50443", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "yessenia made a funny face when she held the flowers .", "storylet_id": "252219"}], [{"original_text": "Today was my friends wedding day and my daughter was the flower girl.", "album_id": "313345", "photo_flickr_id": "12846319", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "50444", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was my friends wedding day and my daughter was the flower girl .", "storylet_id": "252220"}], [{"original_text": "And I was of course one of the bridesmaids.", "album_id": "313345", "photo_flickr_id": "12846321", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "50444", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and i was of course one of the bridesmaids .", "storylet_id": "252221"}], [{"original_text": "The reception was lovely with lots of food.", "album_id": "313345", "photo_flickr_id": "12846341", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "50444", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the reception was lovely with lots of food .", "storylet_id": "252222"}], [{"original_text": "Plus we got to get all of our kids out of dirty clothes into suits.", "album_id": "313345", "photo_flickr_id": "12846361", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "50444", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "plus we got to get all of our kids out of dirty clothes into suits .", "storylet_id": "252223"}], [{"original_text": "But most importantly the bride and groom were happy with the service.", "album_id": "313345", "photo_flickr_id": "12846378", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "50444", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but most importantly the bride and groom were happy with the service .", "storylet_id": "252224"}], [{"original_text": "It 's Jena's christening day.", "album_id": "72157624235889886", "photo_flickr_id": "4684544220", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "50445", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's [female] 's christening day .", "storylet_id": "252225"}], [{"original_text": "Welcoming our angel on her christian world.", "album_id": "72157624235889886", "photo_flickr_id": "4683917735", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "50445", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "welcoming our angel on her christian world .", "storylet_id": "252226"}], [{"original_text": "My relatives were all present on the event.", "album_id": "72157624235889886", "photo_flickr_id": "4684548412", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "50445", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my relatives were all present on the event .", "storylet_id": "252227"}], [{"original_text": "The reception almost ready for the visitor to come.", "album_id": "72157624235889886", "photo_flickr_id": "4684548716", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "50445", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the reception almost ready for the visitor to come .", "storylet_id": "252228"}], [{"original_text": "They were coming and we the parents of Jana was so excited.", "album_id": "72157624235889886", "photo_flickr_id": "4683918039", "setting": "first-2-pick-and-tell", "worker_id": "F51D4MLFUWWI7UD", "story_id": "50445", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were coming and we the parents of [female] was so excited .", "storylet_id": "252229"}], [{"original_text": "Megan and Heather are having a party.", "album_id": "72157624235889886", "photo_flickr_id": "4683917461", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "50446", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [female] are having a party .", "storylet_id": "252230"}], [{"original_text": "They set up the tables real nice for everyone.", "album_id": "72157624235889886", "photo_flickr_id": "4684548716", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "50446", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they set up the tables real nice for everyone .", "storylet_id": "252231"}], [{"original_text": "Glenn and Becky looking hot tonight.", "album_id": "72157624235889886", "photo_flickr_id": "4683913995", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "50446", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and [female] looking hot tonight .", "storylet_id": "252232"}], [{"original_text": "James brings his brand new baby daughter to the party.", "album_id": "72157624235889886", "photo_flickr_id": "4684544220", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "50446", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] brings his brand new baby daughter to the party .", "storylet_id": "252233"}], [{"original_text": "They all drink up and have a good time.", "album_id": "72157624235889886", "photo_flickr_id": "4683913381", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "50446", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all drink up and have a good time .", "storylet_id": "252234"}], [{"original_text": "Dad and his little girl were so cute today.", "album_id": "72157624235889886", "photo_flickr_id": "4684544220", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50447", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dad and his little girl were so cute today .", "storylet_id": "252235"}], [{"original_text": "My sister held this little guy for a while, she really enjoyed being around children.", "album_id": "72157624235889886", "photo_flickr_id": "4683917735", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50447", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my sister held this little guy for a while , she really enjoyed being around children .", "storylet_id": "252236"}], [{"original_text": "Here's dad with some of the lovely ladies from the party.", "album_id": "72157624235889886", "photo_flickr_id": "4684548412", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50447", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's dad with some of the lovely ladies from the party .", "storylet_id": "252237"}], [{"original_text": "We ate so much, it was so good, would highly recommend.", "album_id": "72157624235889886", "photo_flickr_id": "4684548716", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50447", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we ate so much , it was so good , would highly recommend .", "storylet_id": "252238"}], [{"original_text": "It was so fun, I really enjoyed being with everyone, I took this picture before I left.", "album_id": "72157624235889886", "photo_flickr_id": "4683918039", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50447", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was so fun , i really enjoyed being with everyone , i took this picture before i left .", "storylet_id": "252239"}], [{"original_text": "I went to the wedding last weekend.", "album_id": "72157624235889886", "photo_flickr_id": "4683917461", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50448", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the wedding last weekend .", "storylet_id": "252240"}], [{"original_text": "The tables were beautiful.", "album_id": "72157624235889886", "photo_flickr_id": "4684548716", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50448", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tables were beautiful .", "storylet_id": "252241"}], [{"original_text": "I had a great time there.", "album_id": "72157624235889886", "photo_flickr_id": "4683913995", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50448", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time there .", "storylet_id": "252242"}], [{"original_text": "The entire family was there.", "album_id": "72157624235889886", "photo_flickr_id": "4684544220", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50448", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the entire family was there .", "storylet_id": "252243"}], [{"original_text": "It was so much fun.", "album_id": "72157624235889886", "photo_flickr_id": "4683913381", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50448", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was so much fun .", "storylet_id": "252244"}], [{"original_text": "Here is my friend and I after the wedding.", "album_id": "72157624235889886", "photo_flickr_id": "4683917461", "setting": "last-3-pick-old-and-tell", "worker_id": "V7TUYZAA7KBCJLI", "story_id": "50449", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is my friend and i after the wedding .", "storylet_id": "252245"}], [{"original_text": "Look at how beautiful the seating is. It took me months to decide on the decorations.", "album_id": "72157624235889886", "photo_flickr_id": "4684548716", "setting": "last-3-pick-old-and-tell", "worker_id": "V7TUYZAA7KBCJLI", "story_id": "50449", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look at how beautiful the seating is . it took me months to decide on the decorations .", "storylet_id": "252246"}], [{"original_text": "Here is my new husband and I. Aren't we the perfect couple.", "album_id": "72157624235889886", "photo_flickr_id": "4683913995", "setting": "last-3-pick-old-and-tell", "worker_id": "V7TUYZAA7KBCJLI", "story_id": "50449", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is my new husband and i . are n't we the perfect couple .", "storylet_id": "252247"}], [{"original_text": "Here is my friend and his little girl. Isn't she just adorable? I hope to start a family of my own really soon.", "album_id": "72157624235889886", "photo_flickr_id": "4684544220", "setting": "last-3-pick-old-and-tell", "worker_id": "V7TUYZAA7KBCJLI", "story_id": "50449", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is my friend and his little girl . is n't she just adorable ? i hope to start a family of my own really soon .", "storylet_id": "252248"}], [{"original_text": "I am so glad to see that everyone is having a good time. Even the baby!", "album_id": "72157624235889886", "photo_flickr_id": "4683913381", "setting": "last-3-pick-old-and-tell", "worker_id": "V7TUYZAA7KBCJLI", "story_id": "50449", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am so glad to see that everyone is having a good time . even the baby !", "storylet_id": "252249"}], [{"original_text": "The host of the party took a picture of himself as he waited for the guests.", "album_id": "72157624568422501", "photo_flickr_id": "4878444682", "setting": "first-2-pick-and-tell", "worker_id": "VS6N8GXQYF1G2TR", "story_id": "50450", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the host of the party took a picture of himself as he waited for the guests .", "storylet_id": "252250"}], [{"original_text": "Guests arrived as the party began.", "album_id": "72157624568422501", "photo_flickr_id": "4878444124", "setting": "first-2-pick-and-tell", "worker_id": "VS6N8GXQYF1G2TR", "story_id": "50450", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "guests arrived as the party began .", "storylet_id": "252251"}], [{"original_text": "Various guests enjoyed the drinks under the midday sun.", "album_id": "72157624568422501", "photo_flickr_id": "4878444496", "setting": "first-2-pick-and-tell", "worker_id": "VS6N8GXQYF1G2TR", "story_id": "50450", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "various guests enjoyed the drinks under the midday sun .", "storylet_id": "252252"}], [{"original_text": "Into the evening, people danced and laughed as they enjoyed themselves.", "album_id": "72157624568422501", "photo_flickr_id": "4972991632", "setting": "first-2-pick-and-tell", "worker_id": "VS6N8GXQYF1G2TR", "story_id": "50450", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "into the evening , people danced and laughed as they enjoyed themselves .", "storylet_id": "252253"}], [{"original_text": "To remember the party, the host took pictures of the guests who were still dancing.", "album_id": "72157624568422501", "photo_flickr_id": "4972992380", "setting": "first-2-pick-and-tell", "worker_id": "VS6N8GXQYF1G2TR", "story_id": "50450", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to remember the party , the host took pictures of the guests who were still dancing .", "storylet_id": "252254"}], [{"original_text": "A lovely day for a nice wedding.", "album_id": "72157624568422501", "photo_flickr_id": "4878443954", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "50451", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a lovely day for a nice wedding .", "storylet_id": "252255"}], [{"original_text": "Phillip looks at the happy bride and groom and wonders \"will i ever find true love\"", "album_id": "72157624568422501", "photo_flickr_id": "4878444682", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "50451", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] looks at the happy bride and groom and wonders `` will i ever find true love ''", "storylet_id": "252256"}], [{"original_text": "The Groom is ready for the wedding to get underway.", "album_id": "72157624568422501", "photo_flickr_id": "4878444318", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "50451", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the groom is ready for the wedding to get underway .", "storylet_id": "252257"}], [{"original_text": "Phillip is getting hammered after realizing he will be lonely for the rest of his life.", "album_id": "72157624568422501", "photo_flickr_id": "4972992380", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "50451", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is getting hammered after realizing he will be lonely for the rest of his life .", "storylet_id": "252258"}], [{"original_text": "He smiles on the outside but is broken to pieces on the inside.", "album_id": "72157624568422501", "photo_flickr_id": "4972379929", "setting": "first-2-pick-and-tell", "worker_id": "J3CDOIM1U3SDDLT", "story_id": "50451", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he smiles on the outside but is broken to pieces on the inside .", "storylet_id": "252259"}], [{"original_text": "i went to the park today and found a bunch of people there.", "album_id": "72157624568422501", "photo_flickr_id": "4878443954", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50452", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the park today and found a bunch of people there .", "storylet_id": "252260"}], [{"original_text": "They were having some kind of party, so I just went through and started taking a bunch of pictures.", "album_id": "72157624568422501", "photo_flickr_id": "4878444682", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50452", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were having some kind of party , so i just went through and started taking a bunch of pictures .", "storylet_id": "252261"}], [{"original_text": "I told this guy I was a hired photographer, I don't think he believed me.", "album_id": "72157624568422501", "photo_flickr_id": "4878444318", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50452", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i told this guy i was a hired photographer , i do n't think he believed me .", "storylet_id": "252262"}], [{"original_text": "I wonder if they're starting to suspect that I'm a ginger.", "album_id": "72157624568422501", "photo_flickr_id": "4972992380", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50452", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i wonder if they 're starting to suspect that i 'm a ginger .", "storylet_id": "252263"}], [{"original_text": "They never found out I was a ginger, It was really fun.", "album_id": "72157624568422501", "photo_flickr_id": "4972379929", "setting": "last-3-pick-old-and-tell", "worker_id": "4T7XGAFB1S8ZN4G", "story_id": "50452", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they never found out i was a ginger , it was really fun .", "storylet_id": "252264"}], [{"original_text": "The wedding reception was a blast. I never know what to wear to these kinds of things.", "album_id": "72157624568422501", "photo_flickr_id": "4878444682", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "50453", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding reception was a blast . i never know what to wear to these kinds of things .", "storylet_id": "252265"}], [{"original_text": "Seems like everyone was dressed up except me.", "album_id": "72157624568422501", "photo_flickr_id": "4878444124", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "50453", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "seems like everyone was dressed up except me .", "storylet_id": "252266"}], [{"original_text": "It was so nice seeing my family and friends.", "album_id": "72157624568422501", "photo_flickr_id": "4878444496", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "50453", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was so nice seeing my family and friends .", "storylet_id": "252267"}], [{"original_text": "We really got down on the dance floor.", "album_id": "72157624568422501", "photo_flickr_id": "4972991632", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "50453", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we really got down on the dance floor .", "storylet_id": "252268"}], [{"original_text": "The bride really enjoyed herself and it was a beautiful day.", "album_id": "72157624568422501", "photo_flickr_id": "4972992380", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "50453", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride really enjoyed herself and it was a beautiful day .", "storylet_id": "252269"}], [{"original_text": "John is helping set up a wedding. ", "album_id": "72157624568422501", "photo_flickr_id": "4878444682", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "50454", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is helping set up a wedding .", "storylet_id": "252270"}], [{"original_text": "Sally is the decorator and making sure everything is in it's place. ", "album_id": "72157624568422501", "photo_flickr_id": "4878444124", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "50454", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] is the decorator and making sure everything is in it 's place .", "storylet_id": "252271"}], [{"original_text": "A few guest are already milling around. ", "album_id": "72157624568422501", "photo_flickr_id": "4878444496", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "50454", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few guest are already milling around .", "storylet_id": "252272"}], [{"original_text": "After the wedding came the reception. ", "album_id": "72157624568422501", "photo_flickr_id": "4972991632", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "50454", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the wedding came the reception .", "storylet_id": "252273"}], [{"original_text": "John is trying to get the camera positioned to show the cake cutting. ", "album_id": "72157624568422501", "photo_flickr_id": "4972992380", "setting": "last-3-pick-old-and-tell", "worker_id": "DSMZ5LYP6HN3G0H", "story_id": "50454", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] is trying to get the camera positioned to show the cake cutting .", "storylet_id": "252274"}], [{"original_text": "We decorated her in fine jewelry.", "album_id": "722094", "photo_flickr_id": "32448829", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50455", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decorated her in fine jewelry .", "storylet_id": "252275"}], [{"original_text": "There was a man kneeling in one room.", "album_id": "722094", "photo_flickr_id": "32630023", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50455", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a man kneeling in one room .", "storylet_id": "252276"}], [{"original_text": "The girls were dressed very elegantly.", "album_id": "722094", "photo_flickr_id": "32630302", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50455", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girls were dressed very elegantly .", "storylet_id": "252277"}], [{"original_text": "We hired someone to take photos.", "album_id": "722094", "photo_flickr_id": "32631382", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50455", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we hired someone to take photos .", "storylet_id": "252278"}], [{"original_text": "She was expecting a baby and we were taking pictures.", "album_id": "722094", "photo_flickr_id": "32822125", "setting": "first-2-pick-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50455", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was expecting a baby and we were taking pictures .", "storylet_id": "252279"}], [{"original_text": "The family got to the venue early to start decorating for the big day.", "album_id": "722094", "photo_flickr_id": "32448587", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "50456", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family got to the venue early to start decorating for the big day .", "storylet_id": "252280"}], [{"original_text": "The bride got ready with help from her sisters.", "album_id": "722094", "photo_flickr_id": "32448829", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "50456", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride got ready with help from her sisters .", "storylet_id": "252281"}], [{"original_text": "The groom nervously waited for the big moment.", "album_id": "722094", "photo_flickr_id": "32630023", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "50456", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the groom nervously waited for the big moment .", "storylet_id": "252282"}], [{"original_text": "There were lots of guests in attendance.", "album_id": "722094", "photo_flickr_id": "32630302", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "50456", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were lots of guests in attendance .", "storylet_id": "252283"}], [{"original_text": "The ceremony was beautiful and fun!", "album_id": "722094", "photo_flickr_id": "32821349", "setting": "first-2-pick-and-tell", "worker_id": "D9CYZIYGBE4H6NH", "story_id": "50456", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ceremony was beautiful and fun !", "storylet_id": "252284"}], [{"original_text": "Last weekend we had a great time at the party.", "album_id": "722094", "photo_flickr_id": "32448587", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50457", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last weekend we had a great time at the party .", "storylet_id": "252285"}], [{"original_text": "Some people had brought some very elaborate costumes.", "album_id": "722094", "photo_flickr_id": "32448829", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50457", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some people had brought some very elaborate costumes .", "storylet_id": "252286"}], [{"original_text": "There were a lot of strange people there too.", "album_id": "722094", "photo_flickr_id": "32630023", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50457", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of strange people there too .", "storylet_id": "252287"}], [{"original_text": "The children had fun playing together.", "album_id": "722094", "photo_flickr_id": "32630302", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50457", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the children had fun playing together .", "storylet_id": "252288"}], [{"original_text": "Everyone gathered in the room for the meeting.", "album_id": "722094", "photo_flickr_id": "32821349", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50457", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone gathered in the room for the meeting .", "storylet_id": "252289"}], [{"original_text": "A large wedding is about to take place.", "album_id": "722094", "photo_flickr_id": "32448829", "setting": "last-3-pick-old-and-tell", "worker_id": "D011M4H05QQ772N", "story_id": "50458", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a large wedding is about to take place .", "storylet_id": "252290"}], [{"original_text": "A family member carefully prepares the setting for the ceremony.", "album_id": "722094", "photo_flickr_id": "32630023", "setting": "last-3-pick-old-and-tell", "worker_id": "D011M4H05QQ772N", "story_id": "50458", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a family member carefully prepares the setting for the ceremony .", "storylet_id": "252291"}], [{"original_text": "The flower girls are brought into the room and told what to do.", "album_id": "722094", "photo_flickr_id": "32630302", "setting": "last-3-pick-old-and-tell", "worker_id": "D011M4H05QQ772N", "story_id": "50458", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the flower girls are brought into the room and told what to do .", "storylet_id": "252292"}], [{"original_text": "The wedding photographer takes pictures of the wedding scenery.", "album_id": "722094", "photo_flickr_id": "32631382", "setting": "last-3-pick-old-and-tell", "worker_id": "D011M4H05QQ772N", "story_id": "50458", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wedding photographer takes pictures of the wedding scenery .", "storylet_id": "252293"}], [{"original_text": "The mother of the bride watches the action around her curiously.", "album_id": "722094", "photo_flickr_id": "32822125", "setting": "last-3-pick-old-and-tell", "worker_id": "D011M4H05QQ772N", "story_id": "50458", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the mother of the bride watches the action around her curiously .", "storylet_id": "252294"}], [{"original_text": "Setting up for Amir's big day is taking a lot of time.", "album_id": "722094", "photo_flickr_id": "32448587", "setting": "last-3-pick-old-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "50459", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "setting up for [male] 's big day is taking a lot of time .", "storylet_id": "252295"}], [{"original_text": "It took seven hours for Geetha to get ready.", "album_id": "722094", "photo_flickr_id": "32448829", "setting": "last-3-pick-old-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "50459", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it took seven hours for geetha to get ready .", "storylet_id": "252296"}], [{"original_text": "The priest had to bless the hall before anyone arrived.", "album_id": "722094", "photo_flickr_id": "32630023", "setting": "last-3-pick-old-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "50459", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the priest had to bless the hall before anyone arrived .", "storylet_id": "252297"}], [{"original_text": "Even Amir's nieces came all the way from America to see him get married.", "album_id": "722094", "photo_flickr_id": "32630302", "setting": "last-3-pick-old-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "50459", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even [male] 's nieces came all the way from location to see him get married .", "storylet_id": "252298"}], [{"original_text": "There was a great feast after the wedding.", "album_id": "722094", "photo_flickr_id": "32821349", "setting": "last-3-pick-old-and-tell", "worker_id": "7SYV4W65SBS9D0G", "story_id": "50459", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a great feast after the wedding .", "storylet_id": "252299"}], [{"original_text": "it was the big day of the wedding", "album_id": "72157624580453635", "photo_flickr_id": "4882923097", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50460", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the big day of the wedding", "storylet_id": "252300"}], [{"original_text": "daddy was trying his best to be strong for his daughter", "album_id": "72157624580453635", "photo_flickr_id": "4883530032", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50460", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "daddy was trying his best to be strong for his daughter", "storylet_id": "252301"}], [{"original_text": "her friends and family looked on", "album_id": "72157624580453635", "photo_flickr_id": "4883530524", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50460", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her friends and family looked on", "storylet_id": "252302"}], [{"original_text": "it was a great wedding", "album_id": "72157624580453635", "photo_flickr_id": "4882927495", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50460", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a great wedding", "storylet_id": "252303"}], [{"original_text": "very beautiful moment for the family and friends ", "album_id": "72157624580453635", "photo_flickr_id": "4882928919", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50460", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "very beautiful moment for the family and friends", "storylet_id": "252304"}], [{"original_text": "The Dagger of Power was shorn upon the grey and black plaid clothe. ", "album_id": "72157624580453635", "photo_flickr_id": "4882923097", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "50461", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dagger of power was shorn upon the grey and black plaid clothe .", "storylet_id": "252305"}], [{"original_text": "Matching Rings of Power, forged by master Chinese steelworkers, reflected light and hope alike. ", "album_id": "72157624580453635", "photo_flickr_id": "4882923471", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "50461", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "matching rings of power , forged by master chinese steelworkers , reflected light and hope alike .", "storylet_id": "252306"}], [{"original_text": "The quaint mountain church had been cleaned and made ready for the joining of the highlanders. ", "album_id": "72157624580453635", "photo_flickr_id": "4883529554", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "50461", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the quaint mountain church had been cleaned and made ready for the joining of the highlanders .", "storylet_id": "252307"}], [{"original_text": "Seen here, after the wedding, happy and ready to embark on a life of joy and bliss. ", "album_id": "72157624580453635", "photo_flickr_id": "4883530032", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "50461", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "seen here , after the wedding , happy and ready to embark on a life of joy and bliss .", "storylet_id": "252308"}], [{"original_text": "Alas, it was then that Michelle's adult diaper noticeably tore, and no adjusting of her green dress was going to hide it. ", "album_id": "72157624580453635", "photo_flickr_id": "4883530524", "setting": "first-2-pick-and-tell", "worker_id": "3FJUMJR89HDROZ5", "story_id": "50461", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "alas , it was then that [female] 's adult diaper noticeably tore , and no adjusting of her green dress was going to hide it .", "storylet_id": "252309"}], [{"original_text": "He attached his sword pin to his lapel.", "album_id": "72157624580453635", "photo_flickr_id": "4882923097", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "50462", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he attached his sword pin to his lapel .", "storylet_id": "252310"}], [{"original_text": "The rings were in place in both their boxes.", "album_id": "72157624580453635", "photo_flickr_id": "4882923471", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "50462", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rings were in place in both their boxes .", "storylet_id": "252311"}], [{"original_text": "The church scenery was perfect.", "album_id": "72157624580453635", "photo_flickr_id": "4883529554", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "50462", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the church scenery was perfect .", "storylet_id": "252312"}], [{"original_text": "The groom stood proudly by his bride.", "album_id": "72157624580453635", "photo_flickr_id": "4883530032", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "50462", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the groom stood proudly by his bride .", "storylet_id": "252313"}], [{"original_text": "Her mother watched on with happiness and sadness. ", "album_id": "72157624580453635", "photo_flickr_id": "4883530524", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "50462", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her mother watched on with happiness and sadness .", "storylet_id": "252314"}], [{"original_text": "Ross wore this sword pin because his ancestors used to be knights. ", "album_id": "72157624580453635", "photo_flickr_id": "4882923097", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50463", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] wore this sword pin because his ancestors used to be knights .", "storylet_id": "252315"}], [{"original_text": "These rings have been passed down from generation to generation.", "album_id": "72157624580453635", "photo_flickr_id": "4882923471", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50463", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these rings have been passed down from generation to generation .", "storylet_id": "252316"}], [{"original_text": "The wedding had not started so the church was empty and quiet. ", "album_id": "72157624580453635", "photo_flickr_id": "4883529554", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50463", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the wedding had not started so the church was empty and quiet .", "storylet_id": "252317"}], [{"original_text": "Tyler gave his fiance kind words to better her mood for the day. ", "album_id": "72157624580453635", "photo_flickr_id": "4883530032", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50463", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] gave his fiance kind words to better her mood for the day .", "storylet_id": "252318"}], [{"original_text": "Tyler's parents and relatives arrived shortly for the big day.", "album_id": "72157624580453635", "photo_flickr_id": "4883530524", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50463", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] 's parents and relatives arrived shortly for the big day .", "storylet_id": "252319"}], [{"original_text": "At the wedding, the bride and groom had a knife that was symbolic of the groom's family line.", "album_id": "72157624580453635", "photo_flickr_id": "4882923097", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50464", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the wedding , the bride and groom had a knife that was symbolic of the groom 's family line .", "storylet_id": "252320"}], [{"original_text": "The bride had not expected this display, but was eager to be accepted in such an unusual way. ", "album_id": "72157624580453635", "photo_flickr_id": "4883530032", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50464", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride had not expected this display , but was eager to be accepted in such an unusual way .", "storylet_id": "252321"}], [{"original_text": "The bride's maid and other party guests were also treated with special items and decorations that spoke of the new union.", "album_id": "72157624580453635", "photo_flickr_id": "4883530524", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50464", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride 's maid and other party guests were also treated with special items and decorations that spoke of the new union .", "storylet_id": "252322"}], [{"original_text": "After the wedding was over, the bridge and groom, along with all their friends and family posed for pictures.", "album_id": "72157624580453635", "photo_flickr_id": "4882927495", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50464", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the wedding was over , the bridge and groom , along with all their friends and family posed for pictures .", "storylet_id": "252323"}], [{"original_text": "The bride was especially happy knowing that this day would mark am important moment in her life. ", "album_id": "72157624580453635", "photo_flickr_id": "4882928919", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50464", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride was especially happy knowing that this day would mark am important moment in her life .", "storylet_id": "252324"}], [{"original_text": "Everyone gathered for the performance.", "album_id": "72157624700649708", "photo_flickr_id": "4881170211", "setting": "first-2-pick-and-tell", "worker_id": "W6YUQK9W7HRYVVI", "story_id": "50465", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone gathered for the performance .", "storylet_id": "252325"}], [{"original_text": "We all got to watch a special dance.", "album_id": "72157624700649708", "photo_flickr_id": "4881141603", "setting": "first-2-pick-and-tell", "worker_id": "W6YUQK9W7HRYVVI", "story_id": "50465", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all got to watch a special dance .", "storylet_id": "252326"}], [{"original_text": "There was a march with flags of many nations.", "album_id": "72157624700649708", "photo_flickr_id": "4881154225", "setting": "first-2-pick-and-tell", "worker_id": "W6YUQK9W7HRYVVI", "story_id": "50465", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a march with flags of many nations .", "storylet_id": "252327"}], [{"original_text": "Afterwards we all attended a special dinner.", "album_id": "72157624700649708", "photo_flickr_id": "4881777180", "setting": "first-2-pick-and-tell", "worker_id": "W6YUQK9W7HRYVVI", "story_id": "50465", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards we all attended a special dinner .", "storylet_id": "252328"}], [{"original_text": "Everyone had a great time.", "album_id": "72157624700649708", "photo_flickr_id": "4881156399", "setting": "first-2-pick-and-tell", "worker_id": "W6YUQK9W7HRYVVI", "story_id": "50465", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time .", "storylet_id": "252329"}], [{"original_text": "Asad and Balia asked me to pick a picture from their reception to have blown up to poster size.", "album_id": "72157624700649708", "photo_flickr_id": "4881170211", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50466", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "asad and balia asked me to pick a picture from their reception to have blown up to poster size .", "storylet_id": "252330"}], [{"original_text": "The photographer had taken many interesting pictures during the reception.", "album_id": "72157624700649708", "photo_flickr_id": "4881746008", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50466", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the photographer had taken many interesting pictures during the reception .", "storylet_id": "252331"}], [{"original_text": "This was one of the most romantic pictures I saw.", "album_id": "72157624700649708", "photo_flickr_id": "4881166519", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50466", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was one of the most romantic pictures i saw .", "storylet_id": "252332"}], [{"original_text": "This one really shows the love between them.", "album_id": "72157624700649708", "photo_flickr_id": "4881777180", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50466", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one really shows the love between them .", "storylet_id": "252333"}], [{"original_text": "I finally chose this one as it really captures how colorful and festive the reception was.", "album_id": "72157624700649708", "photo_flickr_id": "4881141603", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50466", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i finally chose this one as it really captures how colorful and festive the reception was .", "storylet_id": "252334"}], [{"original_text": "The bride and groom were astounding. ", "album_id": "72157624700649708", "photo_flickr_id": "4881170211", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50467", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride and groom were astounding .", "storylet_id": "252335"}], [{"original_text": "They danced together. ", "album_id": "72157624700649708", "photo_flickr_id": "4881141603", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50467", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they danced together .", "storylet_id": "252336"}], [{"original_text": "They were careful not to slip. ", "album_id": "72157624700649708", "photo_flickr_id": "4881154225", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50467", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were careful not to slip .", "storylet_id": "252337"}], [{"original_text": "They laughed the night away. ", "album_id": "72157624700649708", "photo_flickr_id": "4881777180", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50467", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they laughed the night away .", "storylet_id": "252338"}], [{"original_text": "The guests joined in on the dancing too. ", "album_id": "72157624700649708", "photo_flickr_id": "4881156399", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50467", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the guests joined in on the dancing too .", "storylet_id": "252339"}], [{"original_text": "The photo captures the couple dancing.", "album_id": "72157624700649708", "photo_flickr_id": "4881170211", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50468", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the photo captures the couple dancing .", "storylet_id": "252340"}], [{"original_text": "The happy couple dances on the dancefloor.", "album_id": "72157624700649708", "photo_flickr_id": "4881141603", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50468", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the happy couple dances on the dancefloor .", "storylet_id": "252341"}], [{"original_text": "The guests stand and watch the couple.", "album_id": "72157624700649708", "photo_flickr_id": "4881154225", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50468", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guests stand and watch the couple .", "storylet_id": "252342"}], [{"original_text": "The couple smiles at each other.", "album_id": "72157624700649708", "photo_flickr_id": "4881777180", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50468", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple smiles at each other .", "storylet_id": "252343"}], [{"original_text": "The group celebrates together.", "album_id": "72157624700649708", "photo_flickr_id": "4881156399", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50468", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the group celebrates together .", "storylet_id": "252344"}], [{"original_text": "There was an Indian dance wedding today.", "album_id": "72157624700649708", "photo_flickr_id": "4881170211", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "50469", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an indian dance wedding today .", "storylet_id": "252345"}], [{"original_text": "There was a lot of dancing.", "album_id": "72157624700649708", "photo_flickr_id": "4881141603", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "50469", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of dancing .", "storylet_id": "252346"}], [{"original_text": "The Bride and Groom's first dance.", "album_id": "72157624700649708", "photo_flickr_id": "4881154225", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "50469", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and groom 's first dance .", "storylet_id": "252347"}], [{"original_text": "It was all smiles and laughter.", "album_id": "72157624700649708", "photo_flickr_id": "4881777180", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "50469", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was all smiles and laughter .", "storylet_id": "252348"}], [{"original_text": "The whole family was there!", "album_id": "72157624700649708", "photo_flickr_id": "4881156399", "setting": "last-3-pick-old-and-tell", "worker_id": "CVQZSEX04YTQG0A", "story_id": "50469", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the whole family was there !", "storylet_id": "252349"}], [{"original_text": "what a beautiful picture of an old historic building", "album_id": "72157623923244977", "photo_flickr_id": "4597490260", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50470", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what a beautiful picture of an old historic building", "storylet_id": "252350"}], [{"original_text": "the statues in the city had so much rich histroy", "album_id": "72157623923244977", "photo_flickr_id": "4613776404", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50470", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the statues in the city had so much rich histroy", "storylet_id": "252351"}], [{"original_text": "the town was still and quiet", "album_id": "72157623923244977", "photo_flickr_id": "4621590112", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50470", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the town was still and quiet", "storylet_id": "252352"}], [{"original_text": "the boat ride would bring many people into the city", "album_id": "72157623923244977", "photo_flickr_id": "4624267732", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50470", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boat ride would bring many people into the city", "storylet_id": "252353"}], [{"original_text": "and then the parade started and the city was kicking again ", "album_id": "72157623923244977", "photo_flickr_id": "4604763963", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50470", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then the parade started and the city was kicking again", "storylet_id": "252354"}], [{"original_text": "Chris decided he had to go to Bourbon Street for Mardi Gras.", "album_id": "72157623923244977", "photo_flickr_id": "4606998870", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "50471", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] decided he had to go to location location for mardi gras .", "storylet_id": "252355"}], [{"original_text": "When he got there he was amazed at the artwork that lined the streets.", "album_id": "72157623923244977", "photo_flickr_id": "4613775860", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "50471", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when he got there he was amazed at the artwork that lined the streets .", "storylet_id": "252356"}], [{"original_text": "There was always a place to get a ice cold Coca Cola.", "album_id": "72157623923244977", "photo_flickr_id": "4621590112", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "50471", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was always a place to get a ice cold organization organization .", "storylet_id": "252357"}], [{"original_text": "Everywhere Chris went there was someone playing some kind of music.", "album_id": "72157623923244977", "photo_flickr_id": "4604763963", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "50471", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everywhere [male] went there was someone playing some kind of music .", "storylet_id": "252358"}], [{"original_text": "Bourbon Street is the place to be for Mardi Gras according to Chris.", "album_id": "72157623923244977", "photo_flickr_id": "4595022297", "setting": "first-2-pick-and-tell", "worker_id": "6JI83CKC28WOTTY", "story_id": "50471", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "location location is the place to be for organization organization according to [male] .", "storylet_id": "252359"}], [{"original_text": "The family vacation took us far and wide, this estate was particularly impressive.", "album_id": "72157623923244977", "photo_flickr_id": "4597490260", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "50472", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family vacation took us far and wide , this estate was particularly impressive .", "storylet_id": "252360"}], [{"original_text": "Artwork such as this statue left me awestruck at it's realism and size.", "album_id": "72157623923244977", "photo_flickr_id": "4613776404", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "50472", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "artwork such as this statue left me awestruck at it 's realism and size .", "storylet_id": "252361"}], [{"original_text": "There were plenty of places to grab a bite, hamburgers are always a favorite.", "album_id": "72157623923244977", "photo_flickr_id": "4621590112", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "50472", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were plenty of places to grab a bite , hamburgers are always a favorite .", "storylet_id": "252362"}], [{"original_text": "We saw an old timey paddle wheeler going up the river. Looks like a fun ride!", "album_id": "72157623923244977", "photo_flickr_id": "4624267732", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "50472", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw an old timey paddle wheeler going up the river . looks like a fun ride !", "storylet_id": "252363"}], [{"original_text": "We had to stop awhile and enjoy the lively music from the band.", "album_id": "72157623923244977", "photo_flickr_id": "4604763963", "setting": "last-3-pick-old-and-tell", "worker_id": "4X0F3ACB2HWSLHS", "story_id": "50472", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had to stop awhile and enjoy the lively music from the band .", "storylet_id": "252364"}], [{"original_text": "In the background is a beautiful castle.", "album_id": "72157623923244977", "photo_flickr_id": "4597490260", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50473", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the background is a beautiful castle .", "storylet_id": "252365"}], [{"original_text": "A historical statue is in place to view.", "album_id": "72157623923244977", "photo_flickr_id": "4613776404", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50473", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a historical statue is in place to view .", "storylet_id": "252366"}], [{"original_text": "Seeing a view of the street.", "album_id": "72157623923244977", "photo_flickr_id": "4621590112", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50473", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "seeing a view of the street .", "storylet_id": "252367"}], [{"original_text": "On the water is a boat sailing.", "album_id": "72157623923244977", "photo_flickr_id": "4624267732", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50473", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on the water is a boat sailing .", "storylet_id": "252368"}], [{"original_text": "A band is playing music together. ", "album_id": "72157623923244977", "photo_flickr_id": "4604763963", "setting": "last-3-pick-old-and-tell", "worker_id": "PLOQ1BIARW971PF", "story_id": "50473", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a band is playing music together .", "storylet_id": "252369"}], [{"original_text": "We went on a day trip to Bourbon street in New Orleans.", "album_id": "72157623923244977", "photo_flickr_id": "4606998870", "setting": "last-3-pick-old-and-tell", "worker_id": "LFH8A0P59V5BTXD", "story_id": "50474", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on a day trip to bourbon street in location location .", "storylet_id": "252370"}], [{"original_text": "First, we saw some public art and made a list of things to do. ", "album_id": "72157623923244977", "photo_flickr_id": "4613775860", "setting": "last-3-pick-old-and-tell", "worker_id": "LFH8A0P59V5BTXD", "story_id": "50474", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first , we saw some public art and made a list of things to do .", "storylet_id": "252371"}], [{"original_text": "Then we ate some classic New Orleans Seafood. ", "album_id": "72157623923244977", "photo_flickr_id": "4621590112", "setting": "last-3-pick-old-and-tell", "worker_id": "LFH8A0P59V5BTXD", "story_id": "50474", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we ate some classic new orleans seafood .", "storylet_id": "252372"}], [{"original_text": "Our trip wouldn't have been complete without hearing some Jazz!", "album_id": "72157623923244977", "photo_flickr_id": "4604763963", "setting": "last-3-pick-old-and-tell", "worker_id": "LFH8A0P59V5BTXD", "story_id": "50474", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our trip would n't have been complete without hearing some jazz !", "storylet_id": "252373"}], [{"original_text": "We finished up the trip by sleeping in a historic hotel.", "album_id": "72157623923244977", "photo_flickr_id": "4595022297", "setting": "last-3-pick-old-and-tell", "worker_id": "LFH8A0P59V5BTXD", "story_id": "50474", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finished up the trip by sleeping in a historic hotel .", "storylet_id": "252374"}], [{"original_text": "Naomi and Garret had a traditional Jewish wedding.", "album_id": "72157624166599233", "photo_flickr_id": "4707717580", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50475", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [male] had a traditional jewish wedding .", "storylet_id": "252375"}], [{"original_text": "Here they are lighting the candle.", "album_id": "72157624166599233", "photo_flickr_id": "4707717534", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50475", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here they are lighting the candle .", "storylet_id": "252376"}], [{"original_text": "After the ceremony, they posed for pictures.", "album_id": "72157624166599233", "photo_flickr_id": "4707075871", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50475", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the ceremony , they posed for pictures .", "storylet_id": "252377"}], [{"original_text": "When they arrived at the reception, everyone was having a good time.", "album_id": "72157624166599233", "photo_flickr_id": "4707718464", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50475", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when they arrived at the reception , everyone was having a good time .", "storylet_id": "252378"}], [{"original_text": "Their personal highlight of the reception was the first dance. It was indeed a special day for Naomi and Garret.", "album_id": "72157624166599233", "photo_flickr_id": "4707076375", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50475", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their personal highlight of the reception was the first dance . it was indeed a special day for [female] and [male] .", "storylet_id": "252379"}], [{"original_text": "Everyone rose as the bride entered the building at the start of the wedding ceremony.", "album_id": "72157624166599233", "photo_flickr_id": "4707074695", "setting": "first-2-pick-and-tell", "worker_id": "OCTWU3PL63WROVZ", "story_id": "50476", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone rose as the bride entered the building at the start of the wedding ceremony .", "storylet_id": "252380"}], [{"original_text": "They were married by a priest, and shared their vows with each other.", "album_id": "72157624166599233", "photo_flickr_id": "4707717580", "setting": "first-2-pick-and-tell", "worker_id": "OCTWU3PL63WROVZ", "story_id": "50476", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were married by a priest , and shared their vows with each other .", "storylet_id": "252381"}], [{"original_text": "After the wedding ceremony, everyone gathered together in the hall for the reception.", "album_id": "72157624166599233", "photo_flickr_id": "4707718464", "setting": "first-2-pick-and-tell", "worker_id": "OCTWU3PL63WROVZ", "story_id": "50476", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the wedding ceremony , everyone gathered together in the hall for the reception .", "storylet_id": "252382"}], [{"original_text": "The bride and her father danced together.", "album_id": "72157624166599233", "photo_flickr_id": "4707076441", "setting": "first-2-pick-and-tell", "worker_id": "OCTWU3PL63WROVZ", "story_id": "50476", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride and her father danced together .", "storylet_id": "252383"}], [{"original_text": "The bride and groom then danced together for the first time as a happily married couple.", "album_id": "72157624166599233", "photo_flickr_id": "4707718930", "setting": "first-2-pick-and-tell", "worker_id": "OCTWU3PL63WROVZ", "story_id": "50476", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride and groom then danced together for the first time as a happily married couple .", "storylet_id": "252384"}], [{"original_text": "It had been a long day as the couple said their vows.", "album_id": "72157624166599233", "photo_flickr_id": "4707717580", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "50477", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it had been a long day as the couple said their vows .", "storylet_id": "252385"}], [{"original_text": "At the end they lit a candle to symbolize coming together as one.", "album_id": "72157624166599233", "photo_flickr_id": "4707717534", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "50477", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at the end they lit a candle to symbolize coming together as one .", "storylet_id": "252386"}], [{"original_text": "The families stood together to take pictures.", "album_id": "72157624166599233", "photo_flickr_id": "4707075871", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "50477", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the families stood together to take pictures .", "storylet_id": "252387"}], [{"original_text": "Generations gathered to witness the event.", "album_id": "72157624166599233", "photo_flickr_id": "4707718464", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "50477", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "generations gathered to witness the event .", "storylet_id": "252388"}], [{"original_text": "But at the end of the day it was just them slow dancing together.", "album_id": "72157624166599233", "photo_flickr_id": "4707076375", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6WS5P6924RXNA", "story_id": "50477", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but at the end of the day it was just them slow dancing together .", "storylet_id": "252389"}], [{"original_text": "Wedding guests gathered in the church.", "album_id": "72157624166599233", "photo_flickr_id": "4707074695", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "50478", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "wedding guests gathered in the church .", "storylet_id": "252390"}], [{"original_text": "The bride and groom were married on the altar.", "album_id": "72157624166599233", "photo_flickr_id": "4707717580", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "50478", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom were married on the altar .", "storylet_id": "252391"}], [{"original_text": "Guests from the wedding posed for photos during the wedding.", "album_id": "72157624166599233", "photo_flickr_id": "4707718464", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "50478", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "guests from the wedding posed for photos during the wedding .", "storylet_id": "252392"}], [{"original_text": "The bride and groom shared their first dance in front of their family and friends.", "album_id": "72157624166599233", "photo_flickr_id": "4707076441", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "50478", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride and groom shared their first dance in front of their family and friends .", "storylet_id": "252393"}], [{"original_text": "They held each other closely and showed their love.", "album_id": "72157624166599233", "photo_flickr_id": "4707718930", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "50478", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they held each other closely and showed their love .", "storylet_id": "252394"}], [{"original_text": "The rabbi performs a marriage ceremony.", "album_id": "72157624166599233", "photo_flickr_id": "4707717580", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50479", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the rabbi performs a marriage ceremony .", "storylet_id": "252395"}], [{"original_text": "The couple light the unity candle.", "album_id": "72157624166599233", "photo_flickr_id": "4707717534", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50479", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the couple light the unity candle .", "storylet_id": "252396"}], [{"original_text": "The bride poses with family.", "album_id": "72157624166599233", "photo_flickr_id": "4707075871", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50479", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride poses with family .", "storylet_id": "252397"}], [{"original_text": "Friends and family at the wedding reception.", "album_id": "72157624166599233", "photo_flickr_id": "4707718464", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50479", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "friends and family at the wedding reception .", "storylet_id": "252398"}], [{"original_text": "The newlyweds dance together for the first time.", "album_id": "72157624166599233", "photo_flickr_id": "4707076375", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50479", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the newlyweds dance together for the first time .", "storylet_id": "252399"}], [{"original_text": "Two families are coming together for a wedding at this very nice chapel!", "album_id": "599806", "photo_flickr_id": "26394293", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "50480", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two families are coming together for a wedding at this very nice chapel !", "storylet_id": "252400"}], [{"original_text": "the chapel is great but look at the surrounding area!", "album_id": "599806", "photo_flickr_id": "26394634", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "50480", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the chapel is great but look at the surrounding area !", "storylet_id": "252401"}], [{"original_text": "the family is having a good time and decides to take some pictures at the reception ", "album_id": "599806", "photo_flickr_id": "26395922", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "50480", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family is having a good time and decides to take some pictures at the reception", "storylet_id": "252402"}], [{"original_text": "Its time to cut the cake but they second guess themselves when looking at the beautiful work that was done", "album_id": "599806", "photo_flickr_id": "26396120", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "50480", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "its time to cut the cake but they second guess themselves when looking at the beautiful work that was done", "storylet_id": "252403"}], [{"original_text": "Night settles on this wonderous day and everyone heads home", "album_id": "599806", "photo_flickr_id": "26396240", "setting": "first-2-pick-and-tell", "worker_id": "6OQY4E524UPO7ZY", "story_id": "50480", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "night settles on this wonderous day and everyone heads home", "storylet_id": "252404"}], [{"original_text": "Last week Jane got married at her church.", "album_id": "599806", "photo_flickr_id": "26394293", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50481", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week [female] got married at her church .", "storylet_id": "252405"}], [{"original_text": "She had her reception at a marina.", "album_id": "599806", "photo_flickr_id": "26394810", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50481", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had her reception at a marina .", "storylet_id": "252406"}], [{"original_text": "There, all her friends and family gathered to celebrate.", "album_id": "599806", "photo_flickr_id": "26395671", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50481", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there , all her friends and family gathered to celebrate .", "storylet_id": "252407"}], [{"original_text": "They even had a huge cake in the shape of a lighthouse.", "album_id": "599806", "photo_flickr_id": "26396214", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50481", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even had a huge cake in the shape of a lighthouse .", "storylet_id": "252408"}], [{"original_text": "At the end of the reception, Jane said good bye to all her friends.", "album_id": "599806", "photo_flickr_id": "26396284", "setting": "first-2-pick-and-tell", "worker_id": "BU8R5SE8UUFY84V", "story_id": "50481", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the reception , [female] said good bye to all her friends .", "storylet_id": "252409"}], [{"original_text": "Everyone was excited for today's wedding.", "album_id": "599806", "photo_flickr_id": "26394293", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "50482", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was excited for today 's wedding .", "storylet_id": "252410"}], [{"original_text": "The event was situated on an island, surrounded by clear waters.", "album_id": "599806", "photo_flickr_id": "26394634", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "50482", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the event was situated on an island , surrounded by clear waters .", "storylet_id": "252411"}], [{"original_text": "The guests were also having the time of their lives.", "album_id": "599806", "photo_flickr_id": "26395922", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "50482", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guests were also having the time of their lives .", "storylet_id": "252412"}], [{"original_text": "The wedding cake is as beautiful as everyone expects it to be.", "album_id": "599806", "photo_flickr_id": "26396120", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "50482", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wedding cake is as beautiful as everyone expects it to be .", "storylet_id": "252413"}], [{"original_text": "A beautiful scenery in the sky concluded the wonderful day. ", "album_id": "599806", "photo_flickr_id": "26396240", "setting": "last-3-pick-old-and-tell", "worker_id": "FVCCD810UTN7MCK", "story_id": "50482", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a beautiful scenery in the sky concluded the wonderful day .", "storylet_id": "252414"}], [{"original_text": "This was the wedding chapel for today's wedding.", "album_id": "599806", "photo_flickr_id": "26394293", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "50483", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the wedding chapel for today 's wedding .", "storylet_id": "252415"}], [{"original_text": "First, we all went out on a house boat.", "album_id": "599806", "photo_flickr_id": "26394810", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "50483", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first , we all went out on a house boat .", "storylet_id": "252416"}], [{"original_text": "We mingled with all the other guests.", "album_id": "599806", "photo_flickr_id": "26395671", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "50483", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we mingled with all the other guests .", "storylet_id": "252417"}], [{"original_text": "I helped pick out the cake for the day, and it was really exciting to see it.", "album_id": "599806", "photo_flickr_id": "26396214", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "50483", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i helped pick out the cake for the day , and it was really exciting to see it .", "storylet_id": "252418"}], [{"original_text": "Here I am with the bride during the reception. Today was great.", "album_id": "599806", "photo_flickr_id": "26396284", "setting": "last-3-pick-old-and-tell", "worker_id": "XNXDXOYUAYC8MCF", "story_id": "50483", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here i am with the bride during the reception . today was great .", "storylet_id": "252419"}], [{"original_text": "The family is celebrating the wedding with a reception.", "album_id": "599806", "photo_flickr_id": "26394293", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "50484", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family is celebrating the wedding with a reception .", "storylet_id": "252420"}], [{"original_text": "The reception was held next to the marina.", "album_id": "599806", "photo_flickr_id": "26394810", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "50484", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the reception was held next to the marina .", "storylet_id": "252421"}], [{"original_text": "Lots of relatives came from far away.", "album_id": "599806", "photo_flickr_id": "26395671", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "50484", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lots of relatives came from far away .", "storylet_id": "252422"}], [{"original_text": "The cake was huge and beautiful.", "album_id": "599806", "photo_flickr_id": "26396214", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "50484", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cake was huge and beautiful .", "storylet_id": "252423"}], [{"original_text": "The new couple was very happy.", "album_id": "599806", "photo_flickr_id": "26396284", "setting": "last-3-pick-old-and-tell", "worker_id": "28RAKLA00CQ76UJ", "story_id": "50484", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the new couple was very happy .", "storylet_id": "252424"}], [{"original_text": "Jessica and Adam's wedding was so much fun.", "album_id": "72157623116067463", "photo_flickr_id": "4287664287", "setting": "first-2-pick-and-tell", "worker_id": "NBYBF6REIGKNZFK", "story_id": "50485", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [male] 's wedding was so much fun .", "storylet_id": "252425"}], [{"original_text": "The floral arrangements were so beautiful.", "album_id": "72157623116067463", "photo_flickr_id": "4288465792", "setting": "first-2-pick-and-tell", "worker_id": "NBYBF6REIGKNZFK", "story_id": "50485", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the floral arrangements were so beautiful .", "storylet_id": "252426"}], [{"original_text": "The best man gave a great speech.", "album_id": "72157623116067463", "photo_flickr_id": "4287724999", "setting": "first-2-pick-and-tell", "worker_id": "NBYBF6REIGKNZFK", "story_id": "50485", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the best man gave a great speech .", "storylet_id": "252427"}], [{"original_text": "Jessica's dad did a great job with the photography. ", "album_id": "72157623116067463", "photo_flickr_id": "4288466162", "setting": "first-2-pick-and-tell", "worker_id": "NBYBF6REIGKNZFK", "story_id": "50485", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] 's dad did a great job with the photography .", "storylet_id": "252428"}], [{"original_text": "The family had lots fun posing for pictures.", "album_id": "72157623116067463", "photo_flickr_id": "4287725245", "setting": "first-2-pick-and-tell", "worker_id": "NBYBF6REIGKNZFK", "story_id": "50485", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family had lots fun posing for pictures .", "storylet_id": "252429"}], [{"original_text": "The wedding reception was a lot of fun.", "album_id": "72157623116067463", "photo_flickr_id": "4288466320", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "50486", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding reception was a lot of fun .", "storylet_id": "252430"}], [{"original_text": "Silliness was around every corner", "album_id": "72157623116067463", "photo_flickr_id": "4288374296", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "50486", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "silliness was around every corner", "storylet_id": "252431"}], [{"original_text": "The kids danced the night away.", "album_id": "72157623116067463", "photo_flickr_id": "4287663679", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "50486", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids danced the night away .", "storylet_id": "252432"}], [{"original_text": "She wanted to wear the silly glasses.", "album_id": "72157623116067463", "photo_flickr_id": "4287664361", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "50486", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she wanted to wear the silly glasses .", "storylet_id": "252433"}], [{"original_text": "The bride and groom were a bit silly as well.", "album_id": "72157623116067463", "photo_flickr_id": "4288465710", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "50486", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride and groom were a bit silly as well .", "storylet_id": "252434"}], [{"original_text": "The wedding last week was beautiful.", "album_id": "72157623116067463", "photo_flickr_id": "4287664287", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50487", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding last week was beautiful .", "storylet_id": "252435"}], [{"original_text": "I brought a lot of flowers for the bride and groom.", "album_id": "72157623116067463", "photo_flickr_id": "4288465792", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50487", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i brought a lot of flowers for the bride and groom .", "storylet_id": "252436"}], [{"original_text": "All of the friends and family were there to show their support.", "album_id": "72157623116067463", "photo_flickr_id": "4287724999", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50487", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of the friends and family were there to show their support .", "storylet_id": "252437"}], [{"original_text": "I took a ton of pictures while I was there.", "album_id": "72157623116067463", "photo_flickr_id": "4288466162", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50487", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i took a ton of pictures while i was there .", "storylet_id": "252438"}], [{"original_text": "Everyone was dressed up very nicely.", "album_id": "72157623116067463", "photo_flickr_id": "4287725245", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50487", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was dressed up very nicely .", "storylet_id": "252439"}], [{"original_text": "This is Mike and Martha's beautiful wedding day.", "album_id": "72157623116067463", "photo_flickr_id": "4287664287", "setting": "last-3-pick-old-and-tell", "worker_id": "UOF6UK0XO0LFKLR", "story_id": "50488", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is [male] and [female] 's beautiful wedding day .", "storylet_id": "252440"}], [{"original_text": "This has to be the most beautiful flower arrangement for a wedding ever made.", "album_id": "72157623116067463", "photo_flickr_id": "4288465792", "setting": "last-3-pick-old-and-tell", "worker_id": "UOF6UK0XO0LFKLR", "story_id": "50488", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this has to be the most beautiful flower arrangement for a wedding ever made .", "storylet_id": "252441"}], [{"original_text": "Here is the grooms family having a good time at the reception.", "album_id": "72157623116067463", "photo_flickr_id": "4287724999", "setting": "last-3-pick-old-and-tell", "worker_id": "UOF6UK0XO0LFKLR", "story_id": "50488", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is the grooms family having a good time at the reception .", "storylet_id": "252442"}], [{"original_text": "Larry and Marv our trying to out do each other in getting that perfect picture.", "album_id": "72157623116067463", "photo_flickr_id": "4288466162", "setting": "last-3-pick-old-and-tell", "worker_id": "UOF6UK0XO0LFKLR", "story_id": "50488", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and marv our trying to out do each other in getting that perfect picture .", "storylet_id": "252443"}], [{"original_text": "Here is a great picture of the wedding party.", "album_id": "72157623116067463", "photo_flickr_id": "4287725245", "setting": "last-3-pick-old-and-tell", "worker_id": "UOF6UK0XO0LFKLR", "story_id": "50488", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is a great picture of the wedding party .", "storylet_id": "252444"}], [{"original_text": "this couple's marriage was a success. ", "album_id": "72157623116067463", "photo_flickr_id": "4287664287", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "50489", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this couple 's marriage was a success .", "storylet_id": "252445"}], [{"original_text": "there were beautiful flowers everywhere. ", "album_id": "72157623116067463", "photo_flickr_id": "4288465792", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "50489", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were beautiful flowers everywhere .", "storylet_id": "252446"}], [{"original_text": "guests gathered to drink. ", "album_id": "72157623116067463", "photo_flickr_id": "4287724999", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "50489", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "guests gathered to drink .", "storylet_id": "252447"}], [{"original_text": "some guests danced. ", "album_id": "72157623116067463", "photo_flickr_id": "4288466162", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "50489", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some guests danced .", "storylet_id": "252448"}], [{"original_text": "the women posed for pictures. ", "album_id": "72157623116067463", "photo_flickr_id": "4287725245", "setting": "last-3-pick-old-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "50489", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the women posed for pictures .", "storylet_id": "252449"}], [{"original_text": "A couple decided to pledge themselves to each other in the forests.", "album_id": "72157624915679935", "photo_flickr_id": "5027709592", "setting": "first-2-pick-and-tell", "worker_id": "8IGJUHOJIJS48U9", "story_id": "50490", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple decided to pledge themselves to each other in the forests .", "storylet_id": "252450"}], [{"original_text": "They took upon themselves ancient rituals of bonding", "album_id": "72157624915679935", "photo_flickr_id": "5027710012", "setting": "first-2-pick-and-tell", "worker_id": "8IGJUHOJIJS48U9", "story_id": "50490", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took upon themselves ancient rituals of bonding", "storylet_id": "252451"}], [{"original_text": "Like a marriage, they met the priestess who said pagan prayers over them", "album_id": "72157624915679935", "photo_flickr_id": "5027087547", "setting": "first-2-pick-and-tell", "worker_id": "8IGJUHOJIJS48U9", "story_id": "50490", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "like a marriage , they met the priestess who said pagan prayers over them", "storylet_id": "252452"}], [{"original_text": "They dipped their hands in the mud and wore chains that bonded them together the entire day", "album_id": "72157624915679935", "photo_flickr_id": "5027089865", "setting": "first-2-pick-and-tell", "worker_id": "8IGJUHOJIJS48U9", "story_id": "50490", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they dipped their hands in the mud and wore chains that bonded them together the entire day", "storylet_id": "252453"}], [{"original_text": "Together at last, bonded in the old ways.", "album_id": "72157624915679935", "photo_flickr_id": "5027703124", "setting": "first-2-pick-and-tell", "worker_id": "8IGJUHOJIJS48U9", "story_id": "50490", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "together at last , bonded in the old ways .", "storylet_id": "252454"}], [{"original_text": "Thomas had their ceremony in a nice forest.", "album_id": "72157624915679935", "photo_flickr_id": "5027095709", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50491", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] had their ceremony in a nice forest .", "storylet_id": "252455"}], [{"original_text": "They had a native american ceremony after the Christian one.", "album_id": "72157624915679935", "photo_flickr_id": "5027710012", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50491", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a native american ceremony after the [male] one .", "storylet_id": "252456"}], [{"original_text": "They washed their sins at the river and the ceremony ended.", "album_id": "72157624915679935", "photo_flickr_id": "5027709066", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50491", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they washed their sins at the river and the ceremony ended .", "storylet_id": "252457"}], [{"original_text": "The reception was a vegan creation.", "album_id": "72157624915679935", "photo_flickr_id": "5027086225", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50491", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the reception was a vegan creation .", "storylet_id": "252458"}], [{"original_text": "Everyone had stomach aches and were miserrable because of the food.", "album_id": "72157624915679935", "photo_flickr_id": "5027085539", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50491", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had stomach aches and were miserrable because of the food .", "storylet_id": "252459"}], [{"original_text": "It was a beautiful day for our wedding.", "album_id": "72157624915679935", "photo_flickr_id": "5027709592", "setting": "last-3-pick-old-and-tell", "worker_id": "XD6BFY2G6UL00G4", "story_id": "50492", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful day for our wedding .", "storylet_id": "252460"}], [{"original_text": "The ceremony was professional.", "album_id": "72157624915679935", "photo_flickr_id": "5027710012", "setting": "last-3-pick-old-and-tell", "worker_id": "XD6BFY2G6UL00G4", "story_id": "50492", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ceremony was professional .", "storylet_id": "252461"}], [{"original_text": "We even wrote our own vows.", "album_id": "72157624915679935", "photo_flickr_id": "5027087547", "setting": "last-3-pick-old-and-tell", "worker_id": "XD6BFY2G6UL00G4", "story_id": "50492", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even wrote our own vows .", "storylet_id": "252462"}], [{"original_text": "We held hands during the ceremony, symbolizing the relationship we both share with each other.", "album_id": "72157624915679935", "photo_flickr_id": "5027089865", "setting": "last-3-pick-old-and-tell", "worker_id": "XD6BFY2G6UL00G4", "story_id": "50492", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we held hands during the ceremony , symbolizing the relationship we both share with each other .", "storylet_id": "252463"}], [{"original_text": "We posed for pictures after the ceremony.", "album_id": "72157624915679935", "photo_flickr_id": "5027703124", "setting": "last-3-pick-old-and-tell", "worker_id": "XD6BFY2G6UL00G4", "story_id": "50492", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we posed for pictures after the ceremony .", "storylet_id": "252464"}], [{"original_text": "The couple were hiking up a trail in rather fancy clothing.", "album_id": "72157624915679935", "photo_flickr_id": "5027709592", "setting": "last-3-pick-old-and-tell", "worker_id": "7JZ97OVJ90FL7AL", "story_id": "50493", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple were hiking up a trail in rather fancy clothing .", "storylet_id": "252465"}], [{"original_text": "They found their friends and had a sifting ceremony.", "album_id": "72157624915679935", "photo_flickr_id": "5027710012", "setting": "last-3-pick-old-and-tell", "worker_id": "7JZ97OVJ90FL7AL", "story_id": "50493", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they found their friends and had a sifting ceremony .", "storylet_id": "252466"}], [{"original_text": "After the ceremony, they said their vows and became husband and wife.", "album_id": "72157624915679935", "photo_flickr_id": "5027087547", "setting": "last-3-pick-old-and-tell", "worker_id": "7JZ97OVJ90FL7AL", "story_id": "50493", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the ceremony , they said their vows and became husband and wife .", "storylet_id": "252467"}], [{"original_text": "They held each other close as friends and family cheered them on.", "album_id": "72157624915679935", "photo_flickr_id": "5027089865", "setting": "last-3-pick-old-and-tell", "worker_id": "7JZ97OVJ90FL7AL", "story_id": "50493", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they held each other close as friends and family cheered them on .", "storylet_id": "252468"}], [{"original_text": "The couple was very satisfied with their unique and enjoyable wedding.", "album_id": "72157624915679935", "photo_flickr_id": "5027703124", "setting": "last-3-pick-old-and-tell", "worker_id": "7JZ97OVJ90FL7AL", "story_id": "50493", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the couple was very satisfied with their unique and enjoyable wedding .", "storylet_id": "252469"}], [{"original_text": "Walking down the winding path, the couple stood hand in hand, eager to make their vows when they arrived at the bottom.", "album_id": "72157624915679935", "photo_flickr_id": "5027709592", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50494", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walking down the winding path , the couple stood hand in hand , eager to make their vows when they arrived at the bottom .", "storylet_id": "252470"}], [{"original_text": "The first order of business was to wash their hands inside a basin, which would show them purifying themselves for each other.", "album_id": "72157624915679935", "photo_flickr_id": "5027710012", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50494", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first order of business was to wash their hands inside a basin , which would show them purifying themselves for each other .", "storylet_id": "252471"}], [{"original_text": "Afterwards the couple then read their own self written vows to each other. ", "album_id": "72157624915679935", "photo_flickr_id": "5027087547", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50494", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards the couple then read their own self written vows to each other .", "storylet_id": "252472"}], [{"original_text": "Another part of the ceremony was to join hands with clay, showing that they would be bound together.", "album_id": "72157624915679935", "photo_flickr_id": "5027089865", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50494", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another part of the ceremony was to join hands with clay , showing that they would be bound together .", "storylet_id": "252473"}], [{"original_text": "After the ceremony began to walk back on the path, now husband and wife. ", "album_id": "72157624915679935", "photo_flickr_id": "5027703124", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50494", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the ceremony began to walk back on the path , now husband and wife .", "storylet_id": "252474"}], [{"original_text": "I found these old pictures in the closet. I think this is a school picture of my great-great-grandfather. ", "album_id": "72157594563077356", "photo_flickr_id": "406422728", "setting": "first-2-pick-and-tell", "worker_id": "45UB9OHSAA33VED", "story_id": "50495", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i found these old pictures in the closet . i think this is a school picture of my great-great-grandfather .", "storylet_id": "252475"}], [{"original_text": "He was the middle child. This is him with his two siblings.", "album_id": "72157594563077356", "photo_flickr_id": "406422739", "setting": "first-2-pick-and-tell", "worker_id": "45UB9OHSAA33VED", "story_id": "50495", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was the middle child . this is him with his two siblings .", "storylet_id": "252476"}], [{"original_text": "Family history says he was good-looking.", "album_id": "72157594563077356", "photo_flickr_id": "406434413", "setting": "first-2-pick-and-tell", "worker_id": "45UB9OHSAA33VED", "story_id": "50495", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "family history says he was good-looking .", "storylet_id": "252477"}], [{"original_text": "There sure seem to be more pictures of him than anyone else.", "album_id": "72157594563077356", "photo_flickr_id": "406434410", "setting": "first-2-pick-and-tell", "worker_id": "45UB9OHSAA33VED", "story_id": "50495", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there sure seem to be more pictures of him than anyone else .", "storylet_id": "252478"}], [{"original_text": "He certainly was popular with the ladies!", "album_id": "72157594563077356", "photo_flickr_id": "406434415", "setting": "first-2-pick-and-tell", "worker_id": "45UB9OHSAA33VED", "story_id": "50495", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he certainly was popular with the ladies !", "storylet_id": "252479"}], [{"original_text": "Miss Eliot was the first in town to have a camera and offered to take family portraits for my family.", "album_id": "72157594563077356", "photo_flickr_id": "406468771", "setting": "first-2-pick-and-tell", "worker_id": "JZXL27ZBSYS519A", "story_id": "50496", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "miss eliot was the first in town to have a camera and offered to take family portraits for my family .", "storylet_id": "252480"}], [{"original_text": "The kids had their pictures taken first because Billy couldn't hold his head up very long with his gigantic bow tie.", "album_id": "72157594563077356", "photo_flickr_id": "406422739", "setting": "first-2-pick-and-tell", "worker_id": "JZXL27ZBSYS519A", "story_id": "50496", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids had their pictures taken first because [male] could n't hold his head up very long with his gigantic bow tie .", "storylet_id": "252481"}], [{"original_text": "Next, Miss Eliot tried to capture a candid shot with dad and his little girls.", "album_id": "72157594563077356", "photo_flickr_id": "406468770", "setting": "first-2-pick-and-tell", "worker_id": "JZXL27ZBSYS519A", "story_id": "50496", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next , miss eliot tried to capture a candid shot with dad and his little girls .", "storylet_id": "252482"}], [{"original_text": "Ma and Pa were next to commemorate their fun life on the homestead.", "album_id": "72157594563077356", "photo_flickr_id": "406468768", "setting": "first-2-pick-and-tell", "worker_id": "JZXL27ZBSYS519A", "story_id": "50496", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "ma and pa were next to commemorate their fun life on the homestead .", "storylet_id": "252483"}], [{"original_text": "It was such a great occasion that the entire family turned out so we could archive our family tree.", "album_id": "72157594563077356", "photo_flickr_id": "406434406", "setting": "first-2-pick-and-tell", "worker_id": "JZXL27ZBSYS519A", "story_id": "50496", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was such a great occasion that the entire family turned out so we could archive our family tree .", "storylet_id": "252484"}], [{"original_text": "That's me in the upper left. Eight years old and full of it!", "album_id": "72157594563077356", "photo_flickr_id": "406422728", "setting": "last-3-pick-old-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "50497", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "that 's me in the upper left . eight years old and full of it !", "storylet_id": "252485"}], [{"original_text": "Here I am with my brothers. I'm in the middle. 12 years old. Still full of it.", "album_id": "72157594563077356", "photo_flickr_id": "406422739", "setting": "last-3-pick-old-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "50497", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here i am with my brothers . i 'm in the middle . 12 years old . still full of it .", "storylet_id": "252486"}], [{"original_text": "I am now 16! Now I'm full of myself.", "album_id": "72157594563077356", "photo_flickr_id": "406434413", "setting": "last-3-pick-old-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "50497", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i am now 16 ! now i 'm full of myself .", "storylet_id": "252487"}], [{"original_text": "And here I am at 20. What a dashing young man if I do say so myself.", "album_id": "72157594563077356", "photo_flickr_id": "406434410", "setting": "last-3-pick-old-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "50497", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and here i am at 20 . what a dashing young man if i do say so myself .", "storylet_id": "252488"}], [{"original_text": "25 years old and on my wedding day with my beautiful bride and my mother. Now she's full of it!", "album_id": "72157594563077356", "photo_flickr_id": "406434415", "setting": "last-3-pick-old-and-tell", "worker_id": "86KQJ3Z0E4MEF2T", "story_id": "50497", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "25 years old and on my wedding day with my beautiful bride and my mother . now she 's full of it !", "storylet_id": "252489"}], [{"original_text": "Marge was a matronly woman with a wonderful aptitude for calming family disputes. ", "album_id": "72157594563077356", "photo_flickr_id": "406468771", "setting": "last-3-pick-old-and-tell", "worker_id": "KWV7527UAFVO93I", "story_id": "50498", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "marge was a matronly woman with a wonderful aptitude for calming family disputes .", "storylet_id": "252490"}], [{"original_text": "This was a helpful trait because her three sons were always getting into trouble. ", "album_id": "72157594563077356", "photo_flickr_id": "406422739", "setting": "last-3-pick-old-and-tell", "worker_id": "KWV7527UAFVO93I", "story_id": "50498", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was a helpful trait because her three sons were always getting into trouble .", "storylet_id": "252491"}], [{"original_text": "She sometimes visited her father and her two nieces, but only on a monthly basis. ", "album_id": "72157594563077356", "photo_flickr_id": "406468770", "setting": "last-3-pick-old-and-tell", "worker_id": "KWV7527UAFVO93I", "story_id": "50498", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she sometimes visited her father and her two nieces , but only on a monthly basis .", "storylet_id": "252492"}], [{"original_text": "Her grandparents had originally migrated from England on an ocean liner in 1923. ", "album_id": "72157594563077356", "photo_flickr_id": "406468768", "setting": "last-3-pick-old-and-tell", "worker_id": "KWV7527UAFVO93I", "story_id": "50498", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her grandparents had originally migrated from location on an ocean liner in 1923 .", "storylet_id": "252493"}], [{"original_text": "Their favorite times were getting together for family reunions and reliving old times. ", "album_id": "72157594563077356", "photo_flickr_id": "406434406", "setting": "last-3-pick-old-and-tell", "worker_id": "KWV7527UAFVO93I", "story_id": "50498", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their favorite times were getting together for family reunions and reliving old times .", "storylet_id": "252494"}], [{"original_text": "A boy is singled out in the photo of his class.", "album_id": "72157594563077356", "photo_flickr_id": "406422728", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50499", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a boy is singled out in the photo of his class .", "storylet_id": "252495"}], [{"original_text": "He had two brothers that were younger than he was.", "album_id": "72157594563077356", "photo_flickr_id": "406422739", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50499", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he had two brothers that were younger than he was .", "storylet_id": "252496"}], [{"original_text": "As he grew he got more handsome.", "album_id": "72157594563077356", "photo_flickr_id": "406434413", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50499", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as he grew he got more handsome .", "storylet_id": "252497"}], [{"original_text": "He posed for a portrait on his wedding day.", "album_id": "72157594563077356", "photo_flickr_id": "406434410", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50499", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he posed for a portrait on his wedding day .", "storylet_id": "252498"}], [{"original_text": "Finally at his wedding he poses with his mom and aunt.", "album_id": "72157594563077356", "photo_flickr_id": "406434415", "setting": "last-3-pick-old-and-tell", "worker_id": "3VO7PGJXO6DMQ2E", "story_id": "50499", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally at his wedding he poses with his mom and aunt .", "storylet_id": "252499"}], [{"original_text": "The anniversary party was so amazing, look at this ice sculpture.", "album_id": "46136", "photo_flickr_id": "1819233", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "50500", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the anniversary party was so amazing , look at this ice sculpture .", "storylet_id": "252500"}], [{"original_text": "They had a 5 course meal with several different wines.", "album_id": "46136", "photo_flickr_id": "1819330", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "50500", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a 5 course meal with several different wines .", "storylet_id": "252501"}], [{"original_text": "This is Sarah, she is my 2nd cousin on mom's side.", "album_id": "46136", "photo_flickr_id": "1819334", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "50500", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is [female] , she is my 2nd cousin on mom 's side .", "storylet_id": "252502"}], [{"original_text": "Here is the happy couple along with their daughter Judy.", "album_id": "46136", "photo_flickr_id": "1819436", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "50500", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is the happy couple along with their daughter [female] .", "storylet_id": "252503"}], [{"original_text": "This picture is of all of the ladies at the party, it was so much fun.", "album_id": "46136", "photo_flickr_id": "1819433", "setting": "first-2-pick-and-tell", "worker_id": "QY0DOVI7QK3578Z", "story_id": "50500", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this picture is of all of the ladies at the party , it was so much fun .", "storylet_id": "252504"}], [{"original_text": "The venue was decorated well for the wedding reception.", "album_id": "46136", "photo_flickr_id": "1819233", "setting": "first-2-pick-and-tell", "worker_id": "ZV3XTRYH2O00WS7", "story_id": "50501", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the venue was decorated well for the wedding reception .", "storylet_id": "252505"}], [{"original_text": "The friends of the bride posed to a picture as they arrived.", "album_id": "46136", "photo_flickr_id": "1819433", "setting": "first-2-pick-and-tell", "worker_id": "ZV3XTRYH2O00WS7", "story_id": "50501", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the friends of the bride posed to a picture as they arrived .", "storylet_id": "252506"}], [{"original_text": "The groom's family arrived together.", "album_id": "46136", "photo_flickr_id": "1819528", "setting": "first-2-pick-and-tell", "worker_id": "ZV3XTRYH2O00WS7", "story_id": "50501", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the groom 's family arrived together .", "storylet_id": "252507"}], [{"original_text": "People became impatient as the caterer was behind in serving the food.", "album_id": "46136", "photo_flickr_id": "1819331", "setting": "first-2-pick-and-tell", "worker_id": "ZV3XTRYH2O00WS7", "story_id": "50501", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people became impatient as the caterer was behind in serving the food .", "storylet_id": "252508"}], [{"original_text": "Guests passed the time waiting by socializing.", "album_id": "46136", "photo_flickr_id": "1819334", "setting": "first-2-pick-and-tell", "worker_id": "ZV3XTRYH2O00WS7", "story_id": "50501", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "guests passed the time waiting by socializing .", "storylet_id": "252509"}], [{"original_text": "The wedding I went to last weekend was beautiful.", "album_id": "46136", "photo_flickr_id": "1819233", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50502", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding i went to last weekend was beautiful .", "storylet_id": "252510"}], [{"original_text": "There were many friends and family there.", "album_id": "46136", "photo_flickr_id": "1819433", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50502", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many friends and family there .", "storylet_id": "252511"}], [{"original_text": "We all took some group photos together.", "album_id": "46136", "photo_flickr_id": "1819528", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50502", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all took some group photos together .", "storylet_id": "252512"}], [{"original_text": "The place was decorated for the event.", "album_id": "46136", "photo_flickr_id": "1819331", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50502", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the place was decorated for the event .", "storylet_id": "252513"}], [{"original_text": "I had a great time there.", "album_id": "46136", "photo_flickr_id": "1819334", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50502", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time there .", "storylet_id": "252514"}], [{"original_text": "Ted picked out the best ice sculpture of the wedding.", "album_id": "46136", "photo_flickr_id": "1819233", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50503", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] picked out the best ice sculpture of the wedding .", "storylet_id": "252515"}], [{"original_text": "Even the friends of Ted showed up after nearly a decade.", "album_id": "46136", "photo_flickr_id": "1819433", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50503", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the friends of [male] showed up after nearly a decade .", "storylet_id": "252516"}], [{"original_text": "The boys ducked in front of the girls for a nice picture.", "album_id": "46136", "photo_flickr_id": "1819528", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50503", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boys ducked in front of the girls for a nice picture .", "storylet_id": "252517"}], [{"original_text": "Thankfully no glasses got broken that night.", "album_id": "46136", "photo_flickr_id": "1819331", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50503", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "thankfully no glasses got broken that night .", "storylet_id": "252518"}], [{"original_text": "The guests looked very happy before they left the wedding.", "album_id": "46136", "photo_flickr_id": "1819334", "setting": "last-3-pick-old-and-tell", "worker_id": "HZWZX8JYO2PL1SJ", "story_id": "50503", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the guests looked very happy before they left the wedding .", "storylet_id": "252519"}], [{"original_text": "Today I went to a family get together.", "album_id": "46136", "photo_flickr_id": "1819233", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "50504", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i went to a family get together .", "storylet_id": "252520"}], [{"original_text": "I got to see my silly cousin.", "album_id": "46136", "photo_flickr_id": "1819330", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "50504", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got to see my silly cousin .", "storylet_id": "252521"}], [{"original_text": "As well as her best friend I haven't seen in years!", "album_id": "46136", "photo_flickr_id": "1819334", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "50504", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as well as her best friend i have n't seen in years !", "storylet_id": "252522"}], [{"original_text": "On top of that some of my parents friends were there.", "album_id": "46136", "photo_flickr_id": "1819436", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "50504", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on top of that some of my parents friends were there .", "storylet_id": "252523"}], [{"original_text": "As was the rest of my extended family!", "album_id": "46136", "photo_flickr_id": "1819433", "setting": "last-3-pick-old-and-tell", "worker_id": "4ICMEDU8LPAQGR6", "story_id": "50504", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as was the rest of my extended family !", "storylet_id": "252524"}], [{"original_text": "Li and her father walking down the isle.I wish she would have looked up,couldn't get a good shot.", "album_id": "849816", "photo_flickr_id": "38477103", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50505", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "li and her father walking down the isle.i wish she would have looked up , could n't get a good shot .", "storylet_id": "252525"}], [{"original_text": "The whole wedding party on the stairs getting photos taken together.I can't wait to see the album after we come back from the honeymoon.", "album_id": "849816", "photo_flickr_id": "38478072", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50505", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the whole wedding party on the stairs getting photos taken together.i ca n't wait to see the album after we come back from the honeymoon .", "storylet_id": "252526"}], [{"original_text": "Mr. an Mrs. Lee Chang walking into the reception.they look so happy together.", "album_id": "849816", "photo_flickr_id": "38478315", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50505", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mr. an mrs. [male] chang walking into the reception.they look so happy together .", "storylet_id": "252527"}], [{"original_text": "Beautiful table settings during the reception. real fancy and very classy.", "album_id": "849816", "photo_flickr_id": "38478348", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50505", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "beautiful table settings during the reception . real fancy and very classy .", "storylet_id": "252528"}], [{"original_text": "Li's brothers,her new husband, and Her husband Lee's brothers to the right.", "album_id": "849816", "photo_flickr_id": "38478433", "setting": "first-2-pick-and-tell", "worker_id": "SHH4J1VGV2NYF55", "story_id": "50505", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "li 's brothers , her new husband , and her husband [male] 's brothers to the right .", "storylet_id": "252529"}], [{"original_text": "I sold my car to this family.", "album_id": "849816", "photo_flickr_id": "38476782", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50506", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i sold my car to this family .", "storylet_id": "252530"}], [{"original_text": "They had a great time buying it.", "album_id": "849816", "photo_flickr_id": "38476828", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50506", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a great time buying it .", "storylet_id": "252531"}], [{"original_text": "They invited me to go with them to church.", "album_id": "849816", "photo_flickr_id": "38477005", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50506", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they invited me to go with them to church .", "storylet_id": "252532"}], [{"original_text": "I accepted their offer.", "album_id": "849816", "photo_flickr_id": "38477036", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50506", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i accepted their offer .", "storylet_id": "252533"}], [{"original_text": "We had a great time there.", "album_id": "849816", "photo_flickr_id": "38477069", "setting": "first-2-pick-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50506", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time there .", "storylet_id": "252534"}], [{"original_text": "We took the red car so that we could get around quickly.", "album_id": "849816", "photo_flickr_id": "38476782", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50507", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took the red car so that we could get around quickly .", "storylet_id": "252535"}], [{"original_text": "Mom mom wanted to get a picture of the group before the event.", "album_id": "849816", "photo_flickr_id": "38476828", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50507", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom mom wanted to get a picture of the group before the event .", "storylet_id": "252536"}], [{"original_text": "I also decided to snap a picture with best friend before the event.", "album_id": "849816", "photo_flickr_id": "38477005", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50507", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also decided to snap a picture with best friend before the event .", "storylet_id": "252537"}], [{"original_text": "The men were dressed very nicely.", "album_id": "849816", "photo_flickr_id": "38477036", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50507", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the men were dressed very nicely .", "storylet_id": "252538"}], [{"original_text": "The venue was open and the event started on schedule.", "album_id": "849816", "photo_flickr_id": "38477069", "setting": "last-3-pick-old-and-tell", "worker_id": "36QT9GFL4KNN22Q", "story_id": "50507", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the venue was open and the event started on schedule .", "storylet_id": "252539"}], [{"original_text": "Yan's dad brought his daughter to the pulpit as traditional in most weddings. ", "album_id": "849816", "photo_flickr_id": "38477103", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50508", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yan 's dad brought his daughter to the pulpit as traditional in most weddings .", "storylet_id": "252540"}], [{"original_text": "The groomsmen and bridesmaids were at the corner excited for the big moment. ", "album_id": "849816", "photo_flickr_id": "38478072", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50508", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the groomsmen and bridesmaids were at the corner excited for the big moment .", "storylet_id": "252541"}], [{"original_text": "Eli and Yan said their vows and thus were officially married. ", "album_id": "849816", "photo_flickr_id": "38478315", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50508", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and yan said their vows and thus were officially married .", "storylet_id": "252542"}], [{"original_text": "The after wedding dinner had some beautiful decor. ", "album_id": "849816", "photo_flickr_id": "38478348", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50508", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the after wedding dinner had some beautiful decor .", "storylet_id": "252543"}], [{"original_text": "We met up with the lovebirds and wished them a lifetime of happiness. ", "album_id": "849816", "photo_flickr_id": "38478433", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50508", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we met up with the lovebirds and wished them a lifetime of happiness .", "storylet_id": "252544"}], [{"original_text": "It was the wedding day that the couple had been dreaming of for years.", "album_id": "849816", "photo_flickr_id": "38477103", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "50509", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the wedding day that the couple had been dreaming of for years .", "storylet_id": "252545"}], [{"original_text": "As dad walked the bride down the isle, the bridesmaids and groomsmen lined up to participate.", "album_id": "849816", "photo_flickr_id": "38478072", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "50509", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as dad walked the bride down the isle , the bridesmaids and groomsmen lined up to participate .", "storylet_id": "252546"}], [{"original_text": "The couple finally said \"I do\". And than, the party was on!", "album_id": "849816", "photo_flickr_id": "38478315", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "50509", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the couple finally said `` i do '' . and than , the party was on !", "storylet_id": "252547"}], [{"original_text": "The reception was gorgeous with many beautiful real flowers and candles on the tables.", "album_id": "849816", "photo_flickr_id": "38478348", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "50509", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the reception was gorgeous with many beautiful real flowers and candles on the tables .", "storylet_id": "252548"}], [{"original_text": "Everyone had a blast dancing and drinking. It was a night the couple will never forget.", "album_id": "849816", "photo_flickr_id": "38478433", "setting": "last-3-pick-old-and-tell", "worker_id": "CB68XZ3HVQH3XIT", "story_id": "50509", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a blast dancing and drinking . it was a night the couple will never forget .", "storylet_id": "252549"}], [{"original_text": "Bob and Melanie Finston were married at St. John's Church last Saturday.", "album_id": "791186", "photo_flickr_id": "35765021", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50510", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] finston were married at organization organization organization organization last saturday .", "storylet_id": "252550"}], [{"original_text": "The inside of the church was lit in candles.", "album_id": "791186", "photo_flickr_id": "35765953", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50510", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the inside of the church was lit in candles .", "storylet_id": "252551"}], [{"original_text": "There was a guest book for family and friends to sign.", "album_id": "791186", "photo_flickr_id": "35765801", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50510", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a guest book for family and friends to sign .", "storylet_id": "252552"}], [{"original_text": "After the ceremony, guests waited for the happy couple to exit the church.", "album_id": "791186", "photo_flickr_id": "35765095", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50510", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the ceremony , guests waited for the happy couple to exit the church .", "storylet_id": "252553"}], [{"original_text": "Bob and Melanie were all smiles when they came outside and drove off to enjoy their reception.", "album_id": "791186", "photo_flickr_id": "35765224", "setting": "first-2-pick-and-tell", "worker_id": "COYLJE30ZKDYU8N", "story_id": "50510", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] and [female] were all smiles when they came outside and drove off to enjoy their reception .", "storylet_id": "252554"}], [{"original_text": "This Church holds a dance off every year. It's fun for the community. ", "album_id": "791186", "photo_flickr_id": "35765021", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50511", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this church holds a dance off every year . it 's fun for the community .", "storylet_id": "252555"}], [{"original_text": "These are the judges of the dance, they are professionals themselves.", "album_id": "791186", "photo_flickr_id": "35765666", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50511", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these are the judges of the dance , they are professionals themselves .", "storylet_id": "252556"}], [{"original_text": "The judges inform the contestants that the winner will receive this cake to enjoy.", "album_id": "791186", "photo_flickr_id": "35766183", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50511", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the judges inform the contestants that the winner will receive this cake to enjoy .", "storylet_id": "252557"}], [{"original_text": "The dance off begins and everyone begins to dance.", "album_id": "791186", "photo_flickr_id": "35764874", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50511", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dance off begins and everyone begins to dance .", "storylet_id": "252558"}], [{"original_text": "There is a tie and the two girls win the dance contest, they have to share the cake.", "album_id": "791186", "photo_flickr_id": "35766230", "setting": "first-2-pick-and-tell", "worker_id": "DS8D34ODFCV6A8U", "story_id": "50511", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is a tie and the two girls win the dance contest , they have to share the cake .", "storylet_id": "252559"}], [{"original_text": "My best friend finally got married and the wedding ceremony was held at a beautiful church.", "album_id": "791186", "photo_flickr_id": "35765021", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "50512", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my best friend finally got married and the wedding ceremony was held at a beautiful church .", "storylet_id": "252560"}], [{"original_text": "The decor inside was wonderful, with lit candles adorning the church.", "album_id": "791186", "photo_flickr_id": "35765953", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "50512", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the decor inside was wonderful , with lit candles adorning the church .", "storylet_id": "252561"}], [{"original_text": "There were also flower petals which added a very romantic touch.", "album_id": "791186", "photo_flickr_id": "35765801", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "50512", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were also flower petals which added a very romantic touch .", "storylet_id": "252562"}], [{"original_text": "After the ceremony was over, everybody gathered outside since it was a lovely day.", "album_id": "791186", "photo_flickr_id": "35765095", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "50512", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the ceremony was over , everybody gathered outside since it was a lovely day .", "storylet_id": "252563"}], [{"original_text": "At the reception, the bride and groom danced until the very late evening.", "album_id": "791186", "photo_flickr_id": "35765224", "setting": "last-3-pick-old-and-tell", "worker_id": "CY1HQLP1414QRJ8", "story_id": "50512", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the reception , the bride and groom danced until the very late evening .", "storylet_id": "252564"}], [{"original_text": "The chapel was where my parents got married. ", "album_id": "791186", "photo_flickr_id": "35765021", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "50513", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the chapel was where my parents got married .", "storylet_id": "252565"}], [{"original_text": "I love the candles lined up this way, ", "album_id": "791186", "photo_flickr_id": "35765953", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "50513", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love the candles lined up this way ,", "storylet_id": "252566"}], [{"original_text": "The flowers and journal are a nice touch.", "album_id": "791186", "photo_flickr_id": "35765801", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "50513", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the flowers and journal are a nice touch .", "storylet_id": "252567"}], [{"original_text": "Our family and friends gathered to attend. ", "album_id": "791186", "photo_flickr_id": "35765095", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "50513", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our family and friends gathered to attend .", "storylet_id": "252568"}], [{"original_text": "Then we walked to our new beginnings.", "album_id": "791186", "photo_flickr_id": "35765224", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "50513", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we walked to our new beginnings .", "storylet_id": "252569"}], [{"original_text": "The steeple on the little country church had been repaired especially for her. ", "album_id": "791186", "photo_flickr_id": "35765021", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50514", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the steeple on the little country church had been repaired especially for her .", "storylet_id": "252570"}], [{"original_text": "Candles were everywhere. ", "album_id": "791186", "photo_flickr_id": "35765953", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50514", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "candles were everywhere .", "storylet_id": "252571"}], [{"original_text": "Rose petals had been tossed on the furniture and the floor. ", "album_id": "791186", "photo_flickr_id": "35765801", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50514", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] petals had been tossed on the furniture and the floor .", "storylet_id": "252572"}], [{"original_text": "It was a special day for everyone in the town. ", "album_id": "791186", "photo_flickr_id": "35765095", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50514", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a special day for everyone in the town .", "storylet_id": "252573"}], [{"original_text": "It's not everyday a country music singer got married in their hometown. ", "album_id": "791186", "photo_flickr_id": "35765224", "setting": "last-3-pick-old-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50514", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's not everyday a country music singer got married in their hometown .", "storylet_id": "252574"}], [{"original_text": "The groomsmen are gather for the wedding.", "album_id": "1044910", "photo_flickr_id": "46773154", "setting": "first-2-pick-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "50515", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the groomsmen are gather for the wedding .", "storylet_id": "252575"}], [{"original_text": "The bride and groom are now cutting the cake.", "album_id": "1044910", "photo_flickr_id": "46773457", "setting": "first-2-pick-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "50515", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom are now cutting the cake .", "storylet_id": "252576"}], [{"original_text": "The bride and groom stand posed happily for wedding pictures.", "album_id": "1044910", "photo_flickr_id": "46773483", "setting": "first-2-pick-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "50515", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and groom stand posed happily for wedding pictures .", "storylet_id": "252577"}], [{"original_text": "One of the groomsmen want a photo for his memory book.", "album_id": "1044910", "photo_flickr_id": "46773539", "setting": "first-2-pick-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "50515", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the groomsmen want a photo for his memory book .", "storylet_id": "252578"}], [{"original_text": "The groomsmen all stand for their memory photo.", "album_id": "1044910", "photo_flickr_id": "46773570", "setting": "first-2-pick-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "50515", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the groomsmen all stand for their memory photo .", "storylet_id": "252579"}], [{"original_text": "The ceremony was held in a vintage church.", "album_id": "1044910", "photo_flickr_id": "46773076", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "50516", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ceremony was held in a vintage church .", "storylet_id": "252580"}], [{"original_text": "They even had classic cars to take them to the reception.", "album_id": "1044910", "photo_flickr_id": "46773254", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "50516", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they even had classic cars to take them to the reception .", "storylet_id": "252581"}], [{"original_text": "The reception was held in a nice tent in the country side.", "album_id": "1044910", "photo_flickr_id": "46773424", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "50516", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the reception was held in a nice tent in the country side .", "storylet_id": "252582"}], [{"original_text": "It was a great time for people to hang out and catch up.", "album_id": "1044910", "photo_flickr_id": "46773570", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "50516", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a great time for people to hang out and catch up .", "storylet_id": "252583"}], [{"original_text": "It also gave the couple an opportunity to have photos taken of their special day.", "album_id": "1044910", "photo_flickr_id": "46773613", "setting": "first-2-pick-and-tell", "worker_id": "DZT9Z41TM81H9PY", "story_id": "50516", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it also gave the couple an opportunity to have photos taken of their special day .", "storylet_id": "252584"}], [{"original_text": "The groom's party at the wedding. I'm glad I was a part of it.", "album_id": "1044910", "photo_flickr_id": "46773154", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50517", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the groom 's party at the wedding . i 'm glad i was a part of it .", "storylet_id": "252585"}], [{"original_text": "The cake wasn't a giant affair but it was still delicious.", "album_id": "1044910", "photo_flickr_id": "46773457", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50517", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cake was n't a giant affair but it was still delicious .", "storylet_id": "252586"}], [{"original_text": "The bride and groom then spent some time outside taking pictures with family and friends.", "album_id": "1044910", "photo_flickr_id": "46773483", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50517", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and groom then spent some time outside taking pictures with family and friends .", "storylet_id": "252587"}], [{"original_text": "My brother was drunk and decided to take photos with a disposable camera.", "album_id": "1044910", "photo_flickr_id": "46773539", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50517", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my brother was drunk and decided to take photos with a disposable camera .", "storylet_id": "252588"}], [{"original_text": "Later in the night, we found the groom again and got in one last photo.", "album_id": "1044910", "photo_flickr_id": "46773570", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50517", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later in the night , we found the groom again and got in one last photo .", "storylet_id": "252589"}], [{"original_text": "The church where this weeding was held was an amazing old building.", "album_id": "1044910", "photo_flickr_id": "46773076", "setting": "last-3-pick-old-and-tell", "worker_id": "9S8D0HCRWZXFGR2", "story_id": "50518", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the church where this weeding was held was an amazing old building .", "storylet_id": "252590"}], [{"original_text": "The wedding cars were old too-they look like Morris minors.", "album_id": "1044910", "photo_flickr_id": "46773254", "setting": "last-3-pick-old-and-tell", "worker_id": "9S8D0HCRWZXFGR2", "story_id": "50518", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wedding cars were old too-they look like [male] minors .", "storylet_id": "252591"}], [{"original_text": "The reception was held on a big tent in the field. ", "album_id": "1044910", "photo_flickr_id": "46773424", "setting": "last-3-pick-old-and-tell", "worker_id": "9S8D0HCRWZXFGR2", "story_id": "50518", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the reception was held on a big tent in the field .", "storylet_id": "252592"}], [{"original_text": "The groomsmen started off the evening smart with matching ties and gerberas in their buttonholes, but after a few drinks the ties started to get a bit wonky.", "album_id": "1044910", "photo_flickr_id": "46773570", "setting": "last-3-pick-old-and-tell", "worker_id": "9S8D0HCRWZXFGR2", "story_id": "50518", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the groomsmen started off the evening smart with matching ties and gerberas in their buttonholes , but after a few drinks the ties started to get a bit wonky .", "storylet_id": "252593"}], [{"original_text": "But the bride and groom stayed very classy and elegant. She had a very stylish dress and his tie stayed straight!", "album_id": "1044910", "photo_flickr_id": "46773613", "setting": "last-3-pick-old-and-tell", "worker_id": "9S8D0HCRWZXFGR2", "story_id": "50518", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the bride and groom stayed very classy and elegant . she had a very stylish dress and his tie stayed straight !", "storylet_id": "252594"}], [{"original_text": "The big day has finally come! Here's the gorgeous church we picked out.", "album_id": "1044910", "photo_flickr_id": "46773076", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "50519", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the big day has finally come ! here 's the gorgeous church we picked out .", "storylet_id": "252595"}], [{"original_text": "Also the gorgeous cars we got for the special day.", "album_id": "1044910", "photo_flickr_id": "46773254", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "50519", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "also the gorgeous cars we got for the special day .", "storylet_id": "252596"}], [{"original_text": "Even the tent was gorgeous. We're a stylish couple.", "album_id": "1044910", "photo_flickr_id": "46773424", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "50519", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the tent was gorgeous . we 're a stylish couple .", "storylet_id": "252597"}], [{"original_text": "The boys and I had a great time.", "album_id": "1044910", "photo_flickr_id": "46773570", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "50519", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boys and i had a great time .", "storylet_id": "252598"}], [{"original_text": "Husband and wife, finally. Here's to many great years!", "album_id": "1044910", "photo_flickr_id": "46773613", "setting": "last-3-pick-old-and-tell", "worker_id": "WMBL2O243H4XSBD", "story_id": "50519", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "husband and wife , finally . here 's to many great years !", "storylet_id": "252599"}], [{"original_text": "the bride and groom had a wonderful wedding", "album_id": "975503", "photo_flickr_id": "44430548", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50520", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride and groom had a wonderful wedding", "storylet_id": "252600"}], [{"original_text": "everyone enjoyed watching them dance", "album_id": "975503", "photo_flickr_id": "44434766", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50520", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone enjoyed watching them dance", "storylet_id": "252601"}], [{"original_text": "then everyone joined in", "album_id": "975503", "photo_flickr_id": "44438855", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50520", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then everyone joined in", "storylet_id": "252602"}], [{"original_text": "the girls got crazy", "album_id": "975503", "photo_flickr_id": "44439277", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50520", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the girls got crazy", "storylet_id": "252603"}], [{"original_text": "the grooms cousin got really drunk", "album_id": "975503", "photo_flickr_id": "44440730", "setting": "first-2-pick-and-tell", "worker_id": "8SM2RHMYWIH73JQ", "story_id": "50520", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the grooms cousin got really drunk", "storylet_id": "252604"}], [{"original_text": "The orchestra started playing the wedding march. ", "album_id": "975503", "photo_flickr_id": "44450643", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "50521", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the orchestra started playing the wedding march .", "storylet_id": "252605"}], [{"original_text": "Jill's parents took their seat at the front of the church. ", "album_id": "975503", "photo_flickr_id": "44449867", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "50521", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] 's parents took their seat at the front of the church .", "storylet_id": "252606"}], [{"original_text": "Jill and Mark were so happy during the ceremony. ", "album_id": "975503", "photo_flickr_id": "44448252", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "50521", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] and [male] were so happy during the ceremony .", "storylet_id": "252607"}], [{"original_text": "After the ceremony they partied at the reception. ", "album_id": "975503", "photo_flickr_id": "44430224", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "50521", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the ceremony they partied at the reception .", "storylet_id": "252608"}], [{"original_text": "Towards the end of the evening, Jill couldn't wait to go to the hotel room. ", "album_id": "975503", "photo_flickr_id": "44443619", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "50521", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "towards the end of the evening , [female] could n't wait to go to the hotel room .", "storylet_id": "252609"}], [{"original_text": "Dancing was nice to see at the end of the night.", "album_id": "975503", "photo_flickr_id": "44430548", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "50522", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dancing was nice to see at the end of the night .", "storylet_id": "252610"}], [{"original_text": "The lovers came together and enjoyed being near.", "album_id": "975503", "photo_flickr_id": "44434766", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "50522", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lovers came together and enjoyed being near .", "storylet_id": "252611"}], [{"original_text": "The brides maids started to get on the dance floor, ", "album_id": "975503", "photo_flickr_id": "44438855", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "50522", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the brides maids started to get on the dance floor ,", "storylet_id": "252612"}], [{"original_text": "and showed everyone how to move.", "album_id": "975503", "photo_flickr_id": "44439277", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "50522", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and showed everyone how to move .", "storylet_id": "252613"}], [{"original_text": "The camera man saved memories all night.", "album_id": "975503", "photo_flickr_id": "44440730", "setting": "last-3-pick-old-and-tell", "worker_id": "CSDEXIK95I5LGM4", "story_id": "50522", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the camera man saved memories all night .", "storylet_id": "252614"}], [{"original_text": "Today I married my husband.The reception started off with our first dance.", "album_id": "975503", "photo_flickr_id": "44430548", "setting": "last-3-pick-old-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "50523", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i married my husband.the reception started off with our first dance .", "storylet_id": "252615"}], [{"original_text": "During the dance my husband made me laugh and everyone thought that was funny.", "album_id": "975503", "photo_flickr_id": "44434766", "setting": "last-3-pick-old-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "50523", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "during the dance my husband made me laugh and everyone thought that was funny .", "storylet_id": "252616"}], [{"original_text": "A few of my friends started the party off right by getting down and dancing.", "album_id": "975503", "photo_flickr_id": "44438855", "setting": "last-3-pick-old-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "50523", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few of my friends started the party off right by getting down and dancing .", "storylet_id": "252617"}], [{"original_text": "After the other goers seen the few start dancing, everyone joined in.", "album_id": "975503", "photo_flickr_id": "44439277", "setting": "last-3-pick-old-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "50523", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the other goers seen the few start dancing , everyone joined in .", "storylet_id": "252618"}], [{"original_text": "At the end of the night, even the camera man seemed to be having a lot of fun.", "album_id": "975503", "photo_flickr_id": "44440730", "setting": "last-3-pick-old-and-tell", "worker_id": "4FPSUMSSN3YAHLW", "story_id": "50523", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , even the camera man seemed to be having a lot of fun .", "storylet_id": "252619"}], [{"original_text": "My sister had to make sure that she got a dance in with all of our brothers.", "album_id": "975503", "photo_flickr_id": "44430548", "setting": "last-3-pick-old-and-tell", "worker_id": "25M1QTIWOFX1K5X", "story_id": "50524", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister had to make sure that she got a dance in with all of our brothers .", "storylet_id": "252620"}], [{"original_text": "She laughed so hard dancing with our funny brother Dan.", "album_id": "975503", "photo_flickr_id": "44434766", "setting": "last-3-pick-old-and-tell", "worker_id": "25M1QTIWOFX1K5X", "story_id": "50524", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she laughed so hard dancing with our funny brother [male] .", "storylet_id": "252621"}], [{"original_text": "That's when the bass dropped!", "album_id": "975503", "photo_flickr_id": "44438855", "setting": "last-3-pick-old-and-tell", "worker_id": "25M1QTIWOFX1K5X", "story_id": "50524", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that 's when the bass dropped !", "storylet_id": "252622"}], [{"original_text": "Everyone started getting down with the get down!", "album_id": "975503", "photo_flickr_id": "44439277", "setting": "last-3-pick-old-and-tell", "worker_id": "25M1QTIWOFX1K5X", "story_id": "50524", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone started getting down with the get down !", "storylet_id": "252623"}], [{"original_text": "That's when family friend of ours decided that he needed to make a toast..", "album_id": "975503", "photo_flickr_id": "44440730", "setting": "last-3-pick-old-and-tell", "worker_id": "25M1QTIWOFX1K5X", "story_id": "50524", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that 's when family friend of ours decided that he needed to make a toast..", "storylet_id": "252624"}], [{"original_text": "My husband is the bread winner of the family.", "album_id": "1242513", "photo_flickr_id": "57376548", "setting": "first-2-pick-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "50525", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband is the bread winner of the family .", "storylet_id": "252625"}], [{"original_text": "Hi, I have been his wife for 35 years.", "album_id": "1242513", "photo_flickr_id": "57376624", "setting": "first-2-pick-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "50525", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "hi , i have been his wife for 35 years .", "storylet_id": "252626"}], [{"original_text": "This is our daughter, we are pride of her.", "album_id": "1242513", "photo_flickr_id": "57376734", "setting": "first-2-pick-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "50525", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is our daughter , we are pride of her .", "storylet_id": "252627"}], [{"original_text": "My husband is speaking with the men and women about his job. ", "album_id": "1242513", "photo_flickr_id": "57376784", "setting": "first-2-pick-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "50525", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my husband is speaking with the men and women about his job .", "storylet_id": "252628"}], [{"original_text": "Everyone is having a big dinner while talking with each other.", "album_id": "1242513", "photo_flickr_id": "57376951", "setting": "first-2-pick-and-tell", "worker_id": "O6DBWX4GI09V0K4", "story_id": "50525", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone is having a big dinner while talking with each other .", "storylet_id": "252629"}], [{"original_text": "It was good to spend time with friends before the poetry reading.", "album_id": "1242513", "photo_flickr_id": "57376587", "setting": "first-2-pick-and-tell", "worker_id": "W8QJCBFXLNXT8ZV", "story_id": "50526", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was good to spend time with friends before the poetry reading .", "storylet_id": "252630"}], [{"original_text": "I am getting ready to recite my poem.", "album_id": "1242513", "photo_flickr_id": "57376624", "setting": "first-2-pick-and-tell", "worker_id": "W8QJCBFXLNXT8ZV", "story_id": "50526", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i am getting ready to recite my poem .", "storylet_id": "252631"}], [{"original_text": "My best friend showed up to support me.", "album_id": "1242513", "photo_flickr_id": "57376734", "setting": "first-2-pick-and-tell", "worker_id": "W8QJCBFXLNXT8ZV", "story_id": "50526", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my best friend showed up to support me .", "storylet_id": "252632"}], [{"original_text": "People are waiting for the program to begin.", "album_id": "1242513", "photo_flickr_id": "57376908", "setting": "first-2-pick-and-tell", "worker_id": "W8QJCBFXLNXT8ZV", "story_id": "50526", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people are waiting for the program to begin .", "storylet_id": "252633"}], [{"original_text": "The poetry reading went great!", "album_id": "1242513", "photo_flickr_id": "57376951", "setting": "first-2-pick-and-tell", "worker_id": "W8QJCBFXLNXT8ZV", "story_id": "50526", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the poetry reading went great !", "storylet_id": "252634"}], [{"original_text": "Some of the artwork that were being auctioned were put on display on the wells.", "album_id": "1242513", "photo_flickr_id": "57376587", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50527", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some of the artwork that were being auctioned were put on display on the wells .", "storylet_id": "252635"}], [{"original_text": "My friend really liked the portrait of a lady.", "album_id": "1242513", "photo_flickr_id": "57376624", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50527", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend really liked the portrait of a lady .", "storylet_id": "252636"}], [{"original_text": "We were given free wine and got to mingle with some of the other people at the auction.", "album_id": "1242513", "photo_flickr_id": "57376734", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50527", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were given free wine and got to mingle with some of the other people at the auction .", "storylet_id": "252637"}], [{"original_text": "It started soon after and everyone sat down.", "album_id": "1242513", "photo_flickr_id": "57376908", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50527", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it started soon after and everyone sat down .", "storylet_id": "252638"}], [{"original_text": "The bidding for pieces were very friendly and everyone had a good time.", "album_id": "1242513", "photo_flickr_id": "57376951", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50527", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bidding for pieces were very friendly and everyone had a good time .", "storylet_id": "252639"}], [{"original_text": "This beautiful Victorian house with it's great chandeliers", "album_id": "1242513", "photo_flickr_id": "57376587", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50528", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this beautiful victorian house with it 's great chandeliers", "storylet_id": "252640"}], [{"original_text": "and it's awesome paintings ", "album_id": "1242513", "photo_flickr_id": "57376624", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50528", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and it 's awesome paintings", "storylet_id": "252641"}], [{"original_text": "was the perfect place to have a party.", "album_id": "1242513", "photo_flickr_id": "57376734", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50528", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "was the perfect place to have a party .", "storylet_id": "252642"}], [{"original_text": "They set up chairs and hired a band,", "album_id": "1242513", "photo_flickr_id": "57376908", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50528", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they set up chairs and hired a band ,", "storylet_id": "252643"}], [{"original_text": "and everyone had a great time. ", "album_id": "1242513", "photo_flickr_id": "57376951", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50528", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and everyone had a great time .", "storylet_id": "252644"}], [{"original_text": "The guests arrived to the mansion for the party.", "album_id": "1242513", "photo_flickr_id": "57376548", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50529", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guests arrived to the mansion for the party .", "storylet_id": "252645"}], [{"original_text": "They found wonderful artwork everywhere.", "album_id": "1242513", "photo_flickr_id": "57376624", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50529", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they found wonderful artwork everywhere .", "storylet_id": "252646"}], [{"original_text": "Then they mingled with everyone else that had arrived.", "album_id": "1242513", "photo_flickr_id": "57376734", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50529", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they mingled with everyone else that had arrived .", "storylet_id": "252647"}], [{"original_text": "It was time for everyone to head to the ballroom.", "album_id": "1242513", "photo_flickr_id": "57376784", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50529", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was time for everyone to head to the ballroom .", "storylet_id": "252648"}], [{"original_text": "After that everyone sat down for dinner.", "album_id": "1242513", "photo_flickr_id": "57376951", "setting": "last-3-pick-old-and-tell", "worker_id": "6A81NTK97MF4SH9", "story_id": "50529", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that everyone sat down for dinner .", "storylet_id": "252649"}], [{"original_text": "it was a breath taking vacation home", "album_id": "1260584", "photo_flickr_id": "58247963", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50530", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a breath taking vacation home", "storylet_id": "252650"}], [{"original_text": "the inside was just as nice", "album_id": "1260584", "photo_flickr_id": "58248016", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50530", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the inside was just as nice", "storylet_id": "252651"}], [{"original_text": "and the outside offered breath taking views", "album_id": "1260584", "photo_flickr_id": "58248069", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50530", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the outside offered breath taking views", "storylet_id": "252652"}], [{"original_text": "and the nature surrounded the house", "album_id": "1260584", "photo_flickr_id": "58248094", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50530", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the nature surrounded the house", "storylet_id": "252653"}], [{"original_text": "it was a wonderful time for them", "album_id": "1260584", "photo_flickr_id": "58248257", "setting": "first-2-pick-and-tell", "worker_id": "4BZ4IBV6WJ7CQRV", "story_id": "50530", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a wonderful time for them", "storylet_id": "252654"}], [{"original_text": "They arrived early at the lodge.", "album_id": "1260584", "photo_flickr_id": "58247963", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "50531", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they arrived early at the lodge .", "storylet_id": "252655"}], [{"original_text": "The lodge was right by the water", "album_id": "1260584", "photo_flickr_id": "58248266", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "50531", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lodge was right by the water", "storylet_id": "252656"}], [{"original_text": "There were walking trails on the property.", "album_id": "1260584", "photo_flickr_id": "58248052", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "50531", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were walking trails on the property .", "storylet_id": "252657"}], [{"original_text": "The view of the city was breath taking. ", "album_id": "1260584", "photo_flickr_id": "58248257", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "50531", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view of the city was breath taking .", "storylet_id": "252658"}], [{"original_text": "There were lots of cozy spaces inside. ", "album_id": "1260584", "photo_flickr_id": "58248016", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "50531", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were lots of cozy spaces inside .", "storylet_id": "252659"}], [{"original_text": "The cabin was very luxurious", "album_id": "1260584", "photo_flickr_id": "58247963", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50532", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cabin was very luxurious", "storylet_id": "252660"}], [{"original_text": "Inside, all the rooms were very cozy and intimate.", "album_id": "1260584", "photo_flickr_id": "58248016", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50532", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside , all the rooms were very cozy and intimate .", "storylet_id": "252661"}], [{"original_text": "Outside, there were tons of benches to sit on.", "album_id": "1260584", "photo_flickr_id": "58248069", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50532", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "outside , there were tons of benches to sit on .", "storylet_id": "252662"}], [{"original_text": "The leaves were falling and changing colors outside next to the cabin.", "album_id": "1260584", "photo_flickr_id": "58248094", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50532", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the leaves were falling and changing colors outside next to the cabin .", "storylet_id": "252663"}], [{"original_text": "We then went to a local restaurant that had a great view of the river and marina.", "album_id": "1260584", "photo_flickr_id": "58248257", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50532", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we then went to a local restaurant that had a great view of the river and marina .", "storylet_id": "252664"}], [{"original_text": "The family walked up to the lake house together.", "album_id": "1260584", "photo_flickr_id": "58247963", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50533", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family walked up to the lake house together .", "storylet_id": "252665"}], [{"original_text": "They entered its doors and immediately saw the cute little fireplace.", "album_id": "1260584", "photo_flickr_id": "58248016", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50533", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they entered its doors and immediately saw the cute little fireplace .", "storylet_id": "252666"}], [{"original_text": "They then walked out to the deck to inspect", "album_id": "1260584", "photo_flickr_id": "58248069", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50533", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they then walked out to the deck to inspect", "storylet_id": "252667"}], [{"original_text": "and found that it was a really nice deck.", "album_id": "1260584", "photo_flickr_id": "58248094", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50533", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and found that it was a really nice deck .", "storylet_id": "252668"}], [{"original_text": "They were surprised to find that it also had a great view of the city. They were even more excited now for this vacation at the little stone house. ", "album_id": "1260584", "photo_flickr_id": "58248257", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50533", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were surprised to find that it also had a great view of the city . they were even more excited now for this vacation at the little stone house .", "storylet_id": "252669"}], [{"original_text": "We arrived at the lodge for vacation.", "album_id": "1260584", "photo_flickr_id": "58247963", "setting": "last-3-pick-old-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "50534", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at the lodge for vacation .", "storylet_id": "252670"}], [{"original_text": "Indoor was very quaint, with a fireplace that looked cozy.", "album_id": "1260584", "photo_flickr_id": "58248016", "setting": "last-3-pick-old-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "50534", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "indoor was very quaint , with a fireplace that looked cozy .", "storylet_id": "252671"}], [{"original_text": "The deck was beautiful, wrapped around a large tree.", "album_id": "1260584", "photo_flickr_id": "58248069", "setting": "last-3-pick-old-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "50534", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the deck was beautiful , wrapped around a large tree .", "storylet_id": "252672"}], [{"original_text": "The view was so peaceful.", "album_id": "1260584", "photo_flickr_id": "58248094", "setting": "last-3-pick-old-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "50534", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view was so peaceful .", "storylet_id": "252673"}], [{"original_text": "It was hard to believe that we were just across the water from the city.", "album_id": "1260584", "photo_flickr_id": "58248257", "setting": "last-3-pick-old-and-tell", "worker_id": "X0FXEAEVOCEMTV5", "story_id": "50534", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was hard to believe that we were just across the water from the city .", "storylet_id": "252674"}], [{"original_text": "She wore flowers in her hair. ", "album_id": "1767427", "photo_flickr_id": "82713049", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50535", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she wore flowers in her hair .", "storylet_id": "252675"}], [{"original_text": "Her two nieces served as flower girls. ", "album_id": "1767427", "photo_flickr_id": "82713055", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50535", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her two nieces served as flower girls .", "storylet_id": "252676"}], [{"original_text": "She was very happy to have gotten married. ", "album_id": "1767427", "photo_flickr_id": "82714080", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50535", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was very happy to have gotten married .", "storylet_id": "252677"}], [{"original_text": "Her family was too poor to afford much of a wedding. ", "album_id": "1767427", "photo_flickr_id": "82714772", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50535", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her family was too poor to afford much of a wedding .", "storylet_id": "252678"}], [{"original_text": "But the couple didn't care because they were in love. ", "album_id": "1767427", "photo_flickr_id": "82715890", "setting": "first-2-pick-and-tell", "worker_id": "AVBXEZFG7YG1PFP", "story_id": "50535", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the couple did n't care because they were in love .", "storylet_id": "252679"}], [{"original_text": "Here we are gathering to go into the reception. Smiling for a quick photo before we go in.", "album_id": "1767427", "photo_flickr_id": "82713053", "setting": "first-2-pick-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "50536", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are gathering to go into the reception . smiling for a quick photo before we go in .", "storylet_id": "252680"}], [{"original_text": "Nothing like great food and conversation to make the reception go by faster.", "album_id": "1767427", "photo_flickr_id": "82714083", "setting": "first-2-pick-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "50536", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "nothing like great food and conversation to make the reception go by faster .", "storylet_id": "252681"}], [{"original_text": "Bride and groom taking their twirl on the dance floor. Making everlasting memories.", "album_id": "1767427", "photo_flickr_id": "82714777", "setting": "first-2-pick-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "50536", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "bride and groom taking their twirl on the dance floor . making everlasting memories .", "storylet_id": "252682"}], [{"original_text": "Hey, getting bored around here. Time to living things up by blowing up a few balloons.", "album_id": "1767427", "photo_flickr_id": "82715887", "setting": "first-2-pick-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "50536", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "hey , getting bored around here . time to living things up by blowing up a few balloons .", "storylet_id": "252683"}], [{"original_text": "Just need to be goofy sometimes. People are taking things a little too seriously.", "album_id": "1767427", "photo_flickr_id": "82715891", "setting": "first-2-pick-and-tell", "worker_id": "WQBX4UN82WSN5A7", "story_id": "50536", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "just need to be goofy sometimes . people are taking things a little too seriously .", "storylet_id": "252684"}], [{"original_text": "My sister was a beautiful bride in her dress.", "album_id": "1767427", "photo_flickr_id": "82713049", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50537", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister was a beautiful bride in her dress .", "storylet_id": "252685"}], [{"original_text": "Before the wedding, they showed pictures of when she was young. It showed our mother, grandmother, my sister, and I.", "album_id": "1767427", "photo_flickr_id": "82713055", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50537", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before the wedding , they showed pictures of when she was young . it showed our mother , grandmother , my sister , and i .", "storylet_id": "252686"}], [{"original_text": "She was incredibly happy with her husband.", "album_id": "1767427", "photo_flickr_id": "82714080", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50537", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was incredibly happy with her husband .", "storylet_id": "252687"}], [{"original_text": "After their vows, we were all one big family.", "album_id": "1767427", "photo_flickr_id": "82714772", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50537", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after their vows , we were all one big family .", "storylet_id": "252688"}], [{"original_text": "They had their first dance as a couple after taking pictures with people outside.", "album_id": "1767427", "photo_flickr_id": "82715890", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50537", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had their first dance as a couple after taking pictures with people outside .", "storylet_id": "252689"}], [{"original_text": "My sister's wedding was such a great event. She really looked beautiful!", "album_id": "1767427", "photo_flickr_id": "82713049", "setting": "last-3-pick-old-and-tell", "worker_id": "L8M6ZZU2QHTVX6B", "story_id": "50538", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister 's wedding was such a great event . she really looked beautiful !", "storylet_id": "252690"}], [{"original_text": "My aunt came and brought my two adorable nieces. ", "album_id": "1767427", "photo_flickr_id": "82713055", "setting": "last-3-pick-old-and-tell", "worker_id": "L8M6ZZU2QHTVX6B", "story_id": "50538", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my aunt came and brought my two adorable nieces .", "storylet_id": "252691"}], [{"original_text": "My sister and her husband looked so happy together.", "album_id": "1767427", "photo_flickr_id": "82714080", "setting": "last-3-pick-old-and-tell", "worker_id": "L8M6ZZU2QHTVX6B", "story_id": "50538", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my sister and her husband looked so happy together .", "storylet_id": "252692"}], [{"original_text": "The whole family posed together and it was really hard getting everyone to stand still! ", "album_id": "1767427", "photo_flickr_id": "82714772", "setting": "last-3-pick-old-and-tell", "worker_id": "L8M6ZZU2QHTVX6B", "story_id": "50538", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole family posed together and it was really hard getting everyone to stand still !", "storylet_id": "252693"}], [{"original_text": "At the end of the night, the happy couple danced together and then took off on their honeymoon.", "album_id": "1767427", "photo_flickr_id": "82715890", "setting": "last-3-pick-old-and-tell", "worker_id": "L8M6ZZU2QHTVX6B", "story_id": "50538", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , the happy couple danced together and then took off on their honeymoon .", "storylet_id": "252694"}], [{"original_text": "The bride poses for a photo before her wedding.", "album_id": "1767427", "photo_flickr_id": "82713049", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "50539", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride poses for a photo before her wedding .", "storylet_id": "252695"}], [{"original_text": "The flower girls wait to walk down the aisle.", "album_id": "1767427", "photo_flickr_id": "82713055", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "50539", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flower girls wait to walk down the aisle .", "storylet_id": "252696"}], [{"original_text": "The newly weds take a picture after the ceremony.", "album_id": "1767427", "photo_flickr_id": "82714080", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "50539", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the newly weds take a picture after the ceremony .", "storylet_id": "252697"}], [{"original_text": "They also take a picture with the whole family.", "album_id": "1767427", "photo_flickr_id": "82714772", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "50539", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also take a picture with the whole family .", "storylet_id": "252698"}], [{"original_text": "They celebrate their marriage with their first dance together as husband and wife", "album_id": "1767427", "photo_flickr_id": "82715890", "setting": "last-3-pick-old-and-tell", "worker_id": "WQ85X1C813L66CH", "story_id": "50539", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they celebrate their marriage with their first dance together as husband and wife", "storylet_id": "252699"}], [{"original_text": "Paula wanted to thank everyone for coming to her engagement party. ", "album_id": "72057594068837512", "photo_flickr_id": "88996811", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "50540", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] wanted to thank everyone for coming to her engagement party .", "storylet_id": "252700"}], [{"original_text": "Her mom and grandma are so happy that Paula was able to find someone. ", "album_id": "72057594068837512", "photo_flickr_id": "88997290", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "50540", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her mom and grandma are so happy that [female] was able to find someone .", "storylet_id": "252701"}], [{"original_text": "Her sister Susie made her cake for the party. ", "album_id": "72057594068837512", "photo_flickr_id": "88996277", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "50540", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her sister [female] made her cake for the party .", "storylet_id": "252702"}], [{"original_text": "At the wedding, Susie suggested the chocolate fountain. ", "album_id": "72057594068837512", "photo_flickr_id": "88995895", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "50540", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the wedding , [female] suggested the chocolate fountain .", "storylet_id": "252703"}], [{"original_text": "Her niece Sarah was very happy about that. ", "album_id": "72057594068837512", "photo_flickr_id": "88995897", "setting": "first-2-pick-and-tell", "worker_id": "QD6GN1IDCAP39M1", "story_id": "50540", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her niece [female] was very happy about that .", "storylet_id": "252704"}], [{"original_text": "Everyone gathered for the special event. ", "album_id": "72057594068837512", "photo_flickr_id": "88995894", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "50541", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone gathered for the special event .", "storylet_id": "252705"}], [{"original_text": "They were excited to she her. ", "album_id": "72057594068837512", "photo_flickr_id": "88996275", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "50541", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were excited to she her .", "storylet_id": "252706"}], [{"original_text": "A giant cake was made. ", "album_id": "72057594068837512", "photo_flickr_id": "88996277", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "50541", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a giant cake was made .", "storylet_id": "252707"}], [{"original_text": "She was very happy that everyone came. ", "album_id": "72057594068837512", "photo_flickr_id": "88996811", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "50541", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was very happy that everyone came .", "storylet_id": "252708"}], [{"original_text": "They cleaned up after the party. ", "album_id": "72057594068837512", "photo_flickr_id": "88997290", "setting": "first-2-pick-and-tell", "worker_id": "S5VUMLR6QFOWIX2", "story_id": "50541", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they cleaned up after the party .", "storylet_id": "252709"}], [{"original_text": "We were watching my wedding video from the 90's.", "album_id": "72057594068837512", "photo_flickr_id": "88995894", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50542", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were watching my wedding video from the 90 's .", "storylet_id": "252710"}], [{"original_text": "I saw some faces that I haven't seen since.", "album_id": "72057594068837512", "photo_flickr_id": "88996275", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50542", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw some faces that i have n't seen since .", "storylet_id": "252711"}], [{"original_text": "My little sister stood by the wedding cake the entire time.", "album_id": "72057594068837512", "photo_flickr_id": "88996277", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50542", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my little sister stood by the wedding cake the entire time .", "storylet_id": "252712"}], [{"original_text": "My other sister gave a great speech at my wedding reception.", "album_id": "72057594068837512", "photo_flickr_id": "88996811", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50542", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my other sister gave a great speech at my wedding reception .", "storylet_id": "252713"}], [{"original_text": "My grandmother looked so happy that day. It was nice to see her again since she passed away.", "album_id": "72057594068837512", "photo_flickr_id": "88997290", "setting": "last-3-pick-old-and-tell", "worker_id": "OL41HXTCT11XLVK", "story_id": "50542", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my grandmother looked so happy that day . it was nice to see her again since she passed away .", "storylet_id": "252714"}], [{"original_text": "The guests were gathered around looking for the women of honor.", "album_id": "72057594068837512", "photo_flickr_id": "88995894", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50543", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guests were gathered around looking for the women of honor .", "storylet_id": "252715"}], [{"original_text": "Some of them weren't dressed as nice and others, and wore a small smile of definace.", "album_id": "72057594068837512", "photo_flickr_id": "88996275", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50543", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of them were n't dressed as nice and others , and wore a small smile of definace .", "storylet_id": "252716"}], [{"original_text": "They finally found the woman of honor sulking behind her big cake.", "album_id": "72057594068837512", "photo_flickr_id": "88996277", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50543", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they finally found the woman of honor sulking behind her big cake .", "storylet_id": "252717"}], [{"original_text": "Her mom made a quick speech about her and then everyone dug into the cake.", "album_id": "72057594068837512", "photo_flickr_id": "88996811", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50543", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her mom made a quick speech about her and then everyone dug into the cake .", "storylet_id": "252718"}], [{"original_text": "Later on, grandma and aunt Laurie had to do all the dishes from the cake eating. Poor women. ", "album_id": "72057594068837512", "photo_flickr_id": "88997290", "setting": "last-3-pick-old-and-tell", "worker_id": "9UR8FMX4SISW99P", "story_id": "50543", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later on , grandma and aunt [female] had to do all the dishes from the cake eating . poor women .", "storylet_id": "252719"}], [{"original_text": "Cynthia making her speach at grandma's birthday.", "album_id": "72057594068837512", "photo_flickr_id": "88996811", "setting": "last-3-pick-old-and-tell", "worker_id": "SV0BV69WZBW017J", "story_id": "50544", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] making her speach at grandma 's birthday .", "storylet_id": "252720"}], [{"original_text": "Grandma thinks it's funny that we're trying to keep her out of the kitchen.", "album_id": "72057594068837512", "photo_flickr_id": "88997290", "setting": "last-3-pick-old-and-tell", "worker_id": "SV0BV69WZBW017J", "story_id": "50544", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma thinks it 's funny that we 're trying to keep her out of the kitchen .", "storylet_id": "252721"}], [{"original_text": "I have no idea what this thing is, but it's hideous.", "album_id": "72057594068837512", "photo_flickr_id": "88996277", "setting": "last-3-pick-old-and-tell", "worker_id": "SV0BV69WZBW017J", "story_id": "50544", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i have no idea what this thing is , but it 's hideous .", "storylet_id": "252722"}], [{"original_text": "yummmmm chocolate.", "album_id": "72057594068837512", "photo_flickr_id": "88995895", "setting": "last-3-pick-old-and-tell", "worker_id": "SV0BV69WZBW017J", "story_id": "50544", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "yummmmm chocolate .", "storylet_id": "252723"}], [{"original_text": "Say cheese cousin angel", "album_id": "72057594068837512", "photo_flickr_id": "88995897", "setting": "last-3-pick-old-and-tell", "worker_id": "SV0BV69WZBW017J", "story_id": "50544", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "say cheese cousin angel", "storylet_id": "252724"}], [{"original_text": "John was getting married. He was worried he was making the worst mistake of his like.", "album_id": "72157625619725645", "photo_flickr_id": "5323042125", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "50545", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was getting married . he was worried he was making the worst mistake of his like .", "storylet_id": "252725"}], [{"original_text": "His friends tried to talk him out of the wedding.", "album_id": "72157625619725645", "photo_flickr_id": "5323043071", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "50545", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his friends tried to talk him out of the wedding .", "storylet_id": "252726"}], [{"original_text": "His parents agreed with his friends.", "album_id": "72157625619725645", "photo_flickr_id": "5323031069", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "50545", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his parents agreed with his friends .", "storylet_id": "252727"}], [{"original_text": "John got drunk in an attempt to drown out his nervousness.", "album_id": "72157625619725645", "photo_flickr_id": "5323062051", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "50545", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] got drunk in an attempt to drown out his nervousness .", "storylet_id": "252728"}], [{"original_text": "John had made a commitment and despite his foolishness, he married the girl of his nightmares.", "album_id": "72157625619725645", "photo_flickr_id": "5323656698", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "50545", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] had made a commitment and despite his foolishness , he married the girl of his nightmares .", "storylet_id": "252729"}], [{"original_text": "Josh was getting married after 10 year of having the same girlfriend.", "album_id": "72157625619725645", "photo_flickr_id": "5323042125", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50546", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "josh was getting married after 10 year of having the same girlfriend .", "storylet_id": "252730"}], [{"original_text": "His friends were happy he was finally tying the knot", "album_id": "72157625619725645", "photo_flickr_id": "5323026075", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50546", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his friends were happy he was finally tying the knot", "storylet_id": "252731"}], [{"original_text": "They all helped him on his big day.", "album_id": "72157625619725645", "photo_flickr_id": "5323632852", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50546", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all helped him on his big day .", "storylet_id": "252732"}], [{"original_text": "The ceremony went on flawlessly.", "album_id": "72157625619725645", "photo_flickr_id": "5323653482", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50546", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ceremony went on flawlessly .", "storylet_id": "252733"}], [{"original_text": "They danced the night away at the reception hall.", "album_id": "72157625619725645", "photo_flickr_id": "5323654602", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50546", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they danced the night away at the reception hall .", "storylet_id": "252734"}], [{"original_text": "I had a great time at the dinner last night.", "album_id": "72157625619725645", "photo_flickr_id": "5323042125", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50547", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the dinner last night .", "storylet_id": "252735"}], [{"original_text": "We had a lot of fun with our friends.", "album_id": "72157625619725645", "photo_flickr_id": "5323043071", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50547", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a lot of fun with our friends .", "storylet_id": "252736"}], [{"original_text": "There were some other people there as well.", "album_id": "72157625619725645", "photo_flickr_id": "5323031069", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50547", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some other people there as well .", "storylet_id": "252737"}], [{"original_text": "We learned how to cook everything while we were there.", "album_id": "72157625619725645", "photo_flickr_id": "5323062051", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50547", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we learned how to cook everything while we were there .", "storylet_id": "252738"}], [{"original_text": "We are really happy.", "album_id": "72157625619725645", "photo_flickr_id": "5323656698", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50547", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we are really happy .", "storylet_id": "252739"}], [{"original_text": "The groom getting a little nervous. ", "album_id": "72157625619725645", "photo_flickr_id": "5323042125", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50548", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the groom getting a little nervous .", "storylet_id": "252740"}], [{"original_text": "The groomsmen getting ready. ", "album_id": "72157625619725645", "photo_flickr_id": "5323043071", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50548", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the groomsmen getting ready .", "storylet_id": "252741"}], [{"original_text": "The brides parents waiting for the bride . ", "album_id": "72157625619725645", "photo_flickr_id": "5323031069", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50548", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the brides parents waiting for the bride .", "storylet_id": "252742"}], [{"original_text": "The groomsmen having fun. ", "album_id": "72157625619725645", "photo_flickr_id": "5323062051", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50548", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the groomsmen having fun .", "storylet_id": "252743"}], [{"original_text": "Siblings congratulating one another. ", "album_id": "72157625619725645", "photo_flickr_id": "5323656698", "setting": "last-3-pick-old-and-tell", "worker_id": "5N9TBKJAH66CJ1Q", "story_id": "50548", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "siblings congratulating one another .", "storylet_id": "252744"}], [{"original_text": "At the beginning of the event there was a great deal to get done, which caused some frustration for the host.", "album_id": "72157625619725645", "photo_flickr_id": "5323042125", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50549", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the beginning of the event there was a great deal to get done , which caused some frustration for the host .", "storylet_id": "252745"}], [{"original_text": "Even though time was limited, the gathered men still decided on a plan of action. ", "album_id": "72157625619725645", "photo_flickr_id": "5323043071", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50549", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even though time was limited , the gathered men still decided on a plan of action .", "storylet_id": "252746"}], [{"original_text": "When the attendees began to arrive they were told that the weight would not be much longer and the festivities would soon begin.", "album_id": "72157625619725645", "photo_flickr_id": "5323031069", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50549", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when the attendees began to arrive they were told that the weight would not be much longer and the festivities would soon begin .", "storylet_id": "252747"}], [{"original_text": "When everything was in place the big event came to life and went off without a hitch.", "album_id": "72157625619725645", "photo_flickr_id": "5323062051", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50549", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when everything was in place the big event came to life and went off without a hitch .", "storylet_id": "252748"}], [{"original_text": "Everyone, including the host, was extremely happy and knew they just had a very unforgettable experience. ", "album_id": "72157625619725645", "photo_flickr_id": "5323656698", "setting": "last-3-pick-old-and-tell", "worker_id": "XLPKXCIKFUVYTTR", "story_id": "50549", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone , including the host , was extremely happy and knew they just had a very unforgettable experience .", "storylet_id": "252749"}], [{"original_text": "Everything was in order for the ceremony.", "album_id": "72157625671844609", "photo_flickr_id": "5345583296", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "50550", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everything was in order for the ceremony .", "storylet_id": "252750"}], [{"original_text": "The groomsmen talked and laughed while waiting for the event to begin.", "album_id": "72157625671844609", "photo_flickr_id": "5344790579", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "50550", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the groomsmen talked and laughed while waiting for the event to begin .", "storylet_id": "252751"}], [{"original_text": "The ring was beautiful and ornate.", "album_id": "72157625671844609", "photo_flickr_id": "5345591252", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "50550", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ring was beautiful and ornate .", "storylet_id": "252752"}], [{"original_text": "The bride and her bridesmaids were ecstatic.", "album_id": "72157625671844609", "photo_flickr_id": "5345605188", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "50550", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride and her bridesmaids were ecstatic .", "storylet_id": "252753"}], [{"original_text": "The reception was joyous and celebratory.", "album_id": "72157625671844609", "photo_flickr_id": "5345611580", "setting": "first-2-pick-and-tell", "worker_id": "41EDFKLZK41KXTC", "story_id": "50550", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the reception was joyous and celebratory .", "storylet_id": "252754"}], [{"original_text": "The day they had been waiting months for had finally arrived for the high school sweetheart. ", "album_id": "72157625671844609", "photo_flickr_id": "5345591252", "setting": "first-2-pick-and-tell", "worker_id": "Y5JHDKGNVLHOUUV", "story_id": "50551", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day they had been waiting months for had finally arrived for the high school sweetheart .", "storylet_id": "252755"}], [{"original_text": "The groom and his best man share a word before the ceremony. ", "album_id": "72157625671844609", "photo_flickr_id": "5344790579", "setting": "first-2-pick-and-tell", "worker_id": "Y5JHDKGNVLHOUUV", "story_id": "50551", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the groom and his best man share a word before the ceremony .", "storylet_id": "252756"}], [{"original_text": "The couple had a beautiful cake at the reception. ", "album_id": "72157625671844609", "photo_flickr_id": "5344990225", "setting": "first-2-pick-and-tell", "worker_id": "Y5JHDKGNVLHOUUV", "story_id": "50551", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the couple had a beautiful cake at the reception .", "storylet_id": "252757"}], [{"original_text": "Per tradition, they fed each other cake. ", "album_id": "72157625671844609", "photo_flickr_id": "5345412964", "setting": "first-2-pick-and-tell", "worker_id": "Y5JHDKGNVLHOUUV", "story_id": "50551", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "per tradition , they fed each other cake .", "storylet_id": "252758"}], [{"original_text": "The newlyweds danced the night away. ", "album_id": "72157625671844609", "photo_flickr_id": "5344995855", "setting": "first-2-pick-and-tell", "worker_id": "Y5JHDKGNVLHOUUV", "story_id": "50551", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the newlyweds danced the night away .", "storylet_id": "252759"}], [{"original_text": "To have a little something special for our memory books we decided to take photos in the Sepia filter. Here is where the reception was held.", "album_id": "72157625671844609", "photo_flickr_id": "5345583296", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "50552", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "to have a little something special for our memory books we decided to take photos in the location filter . here is where the reception was held .", "storylet_id": "252760"}], [{"original_text": "My best friend Bob was so nervous too.", "album_id": "72157625671844609", "photo_flickr_id": "5344790579", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "50552", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my best friend [male] was so nervous too .", "storylet_id": "252761"}], [{"original_text": "The ring for my Bride. We took a long time to think about how we wanted it to look.", "album_id": "72157625671844609", "photo_flickr_id": "5345591252", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "50552", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ring for my bride . we took a long time to think about how we wanted it to look .", "storylet_id": "252762"}], [{"original_text": "We even had a crown made for her, for she truly is a Princess!", "album_id": "72157625671844609", "photo_flickr_id": "5345605188", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "50552", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even had a crown made for her , for she truly is a [female] !", "storylet_id": "252763"}], [{"original_text": "Celebrating with family was so awesome. Everybody was in such a celebratory mood. A day to never, ever forget!", "album_id": "72157625671844609", "photo_flickr_id": "5345611580", "setting": "last-3-pick-old-and-tell", "worker_id": "V5N6EUV5XCMS8S0", "story_id": "50552", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "celebrating with family was so awesome . everybody was in such a celebratory mood . a day to never , ever forget !", "storylet_id": "252764"}], [{"original_text": "The sepia tone used in the photos gave them a timely look. ", "album_id": "72157625671844609", "photo_flickr_id": "5345583296", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50553", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sepia tone used in the photos gave them a timely look .", "storylet_id": "252765"}], [{"original_text": "Carl gave Stu some words of advice for the wedding. ", "album_id": "72157625671844609", "photo_flickr_id": "5344790579", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50553", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] gave stu some words of advice for the wedding .", "storylet_id": "252766"}], [{"original_text": "I never thought I'd see our grandma's wedding ring on someone else' hand but this seemed right. ", "album_id": "72157625671844609", "photo_flickr_id": "5345591252", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50553", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i never thought i 'd see our grandma 's wedding ring on someone else ' hand but this seemed right .", "storylet_id": "252767"}], [{"original_text": "Sally and Martha shared a moment right before the ceremony. ", "album_id": "72157625671844609", "photo_flickr_id": "5345605188", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50553", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and [female] shared a moment right before the ceremony .", "storylet_id": "252768"}], [{"original_text": "Felicia took a bit too much to drink and started blabbering at the other guests. ", "album_id": "72157625671844609", "photo_flickr_id": "5345611580", "setting": "last-3-pick-old-and-tell", "worker_id": "B1E7UVLIJJSN3TQ", "story_id": "50553", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] took a bit too much to drink and started blabbering at the other guests .", "storylet_id": "252769"}], [{"original_text": "The room is ready for the wedding reception.", "album_id": "72157625671844609", "photo_flickr_id": "5345583296", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50554", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the room is ready for the wedding reception .", "storylet_id": "252770"}], [{"original_text": "The best man gives the groom to be some advice.", "album_id": "72157625671844609", "photo_flickr_id": "5344790579", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50554", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the best man gives the groom to be some advice .", "storylet_id": "252771"}], [{"original_text": "An engagement ring nestled in the box.", "album_id": "72157625671844609", "photo_flickr_id": "5345591252", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50554", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "an engagement ring nestled in the box .", "storylet_id": "252772"}], [{"original_text": "The bride and maid of honor pose for a picture.", "album_id": "72157625671844609", "photo_flickr_id": "5345605188", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50554", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride and maid of honor pose for a picture .", "storylet_id": "252773"}], [{"original_text": "Everyone is enjoying the reception.", "album_id": "72157625671844609", "photo_flickr_id": "5345611580", "setting": "last-3-pick-old-and-tell", "worker_id": "O8JRYCNJNBISRH6", "story_id": "50554", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone is enjoying the reception .", "storylet_id": "252774"}], [{"original_text": "John was anxiously awaiting the wedding.", "album_id": "72157625787545021", "photo_flickr_id": "5387729589", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "50555", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was anxiously awaiting the wedding .", "storylet_id": "252775"}], [{"original_text": "Finally the day arrived and he married his beautiful bride.", "album_id": "72157625787545021", "photo_flickr_id": "5387460841", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "50555", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "finally the day arrived and he married his beautiful bride .", "storylet_id": "252776"}], [{"original_text": "They cut the cake.", "album_id": "72157625787545021", "photo_flickr_id": "5388354830", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "50555", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they cut the cake .", "storylet_id": "252777"}], [{"original_text": "They posed for photos with their friends.", "album_id": "72157625787545021", "photo_flickr_id": "5387490221", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "50555", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they posed for photos with their friends .", "storylet_id": "252778"}], [{"original_text": "Finally it was time for the honeymoon. They were very excited.", "album_id": "72157625787545021", "photo_flickr_id": "5387513175", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "50555", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally it was time for the honeymoon . they were very excited .", "storylet_id": "252779"}], [{"original_text": "Sherry knew she wanted to get married since she was a little girl.", "album_id": "72157625787545021", "photo_flickr_id": "5387781587", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50556", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] knew she wanted to get married since she was a little girl .", "storylet_id": "252780"}], [{"original_text": "She made a big deal of having the perfect photographer.", "album_id": "72157625787545021", "photo_flickr_id": "5390695905", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50556", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she made a big deal of having the perfect photographer .", "storylet_id": "252781"}], [{"original_text": "He took pictures of every perfect moment.", "album_id": "72157625787545021", "photo_flickr_id": "5387456929", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50556", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he took pictures of every perfect moment .", "storylet_id": "252782"}], [{"original_text": "Afterward, he took artistic renditions of the whole bridal party.", "album_id": "72157625787545021", "photo_flickr_id": "5387490221", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50556", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward , he took artistic renditions of the whole bridal party .", "storylet_id": "252783"}], [{"original_text": "Finally, the pictures were finished off with reception shots.", "album_id": "72157625787545021", "photo_flickr_id": "5388146154", "setting": "first-2-pick-and-tell", "worker_id": "ELYF05WD0D1OY2Z", "story_id": "50556", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , the pictures were finished off with reception shots .", "storylet_id": "252784"}], [{"original_text": "I waited in the semi darkness for my bride.", "album_id": "72157625787545021", "photo_flickr_id": "5387729589", "setting": "last-3-pick-old-and-tell", "worker_id": "GZYLTLU2163MCD2", "story_id": "50557", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i waited in the semi darkness for my bride .", "storylet_id": "252785"}], [{"original_text": "When we were pronounced man and wife, our smile made the room glow.", "album_id": "72157625787545021", "photo_flickr_id": "5387460841", "setting": "last-3-pick-old-and-tell", "worker_id": "GZYLTLU2163MCD2", "story_id": "50557", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we were pronounced man and wife , our smile made the room glow .", "storylet_id": "252786"}], [{"original_text": "The perfect wedding cake awaited us,it was pure white.", "album_id": "72157625787545021", "photo_flickr_id": "5388354830", "setting": "last-3-pick-old-and-tell", "worker_id": "GZYLTLU2163MCD2", "story_id": "50557", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the perfect wedding cake awaited us , it was pure white .", "storylet_id": "252787"}], [{"original_text": "But our lives were full of color as we stood as man and wife with our friends.", "album_id": "72157625787545021", "photo_flickr_id": "5387490221", "setting": "last-3-pick-old-and-tell", "worker_id": "GZYLTLU2163MCD2", "story_id": "50557", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but our lives were full of color as we stood as man and wife with our friends .", "storylet_id": "252788"}], [{"original_text": "My wedding day was wonderful, full the of laughter and smiles of my bride.", "album_id": "72157625787545021", "photo_flickr_id": "5387513175", "setting": "last-3-pick-old-and-tell", "worker_id": "GZYLTLU2163MCD2", "story_id": "50557", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my wedding day was wonderful , full the of laughter and smiles of my bride .", "storylet_id": "252789"}], [{"original_text": "Soon to be husband waiting on his bride.", "album_id": "72157625787545021", "photo_flickr_id": "5387729589", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "50558", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "soon to be husband waiting on his bride .", "storylet_id": "252790"}], [{"original_text": "Here comes the newlyweds. ", "album_id": "72157625787545021", "photo_flickr_id": "5387460841", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "50558", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here comes the newlyweds .", "storylet_id": "252791"}], [{"original_text": "Very plain birthday cake, looks delicious. ", "album_id": "72157625787545021", "photo_flickr_id": "5388354830", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "50558", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "very plain birthday cake , looks delicious .", "storylet_id": "252792"}], [{"original_text": "Great photo of the wedding people.", "album_id": "72157625787545021", "photo_flickr_id": "5387490221", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "50558", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "great photo of the wedding people .", "storylet_id": "252793"}], [{"original_text": "They bride is having a blast.", "album_id": "72157625787545021", "photo_flickr_id": "5387513175", "setting": "last-3-pick-old-and-tell", "worker_id": "KEF4LGJFBBBGVYT", "story_id": "50558", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they bride is having a blast .", "storylet_id": "252794"}], [{"original_text": "On his wedding day, the groom was nervous.", "album_id": "72157625787545021", "photo_flickr_id": "5387729589", "setting": "last-3-pick-old-and-tell", "worker_id": "LFH8A0P59V5BTXD", "story_id": "50559", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on his wedding day , the groom was nervous .", "storylet_id": "252795"}], [{"original_text": "He made it through the ceremony with his beautiful bride by his side. ", "album_id": "72157625787545021", "photo_flickr_id": "5387460841", "setting": "last-3-pick-old-and-tell", "worker_id": "LFH8A0P59V5BTXD", "story_id": "50559", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he made it through the ceremony with his beautiful bride by his side .", "storylet_id": "252796"}], [{"original_text": "A traditional cake was ready to be served, but would have to wait until after photos. ", "album_id": "72157625787545021", "photo_flickr_id": "5388354830", "setting": "last-3-pick-old-and-tell", "worker_id": "LFH8A0P59V5BTXD", "story_id": "50559", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a traditional cake was ready to be served , but would have to wait until after photos .", "storylet_id": "252797"}], [{"original_text": "After the ceremony, they took photos to share their joy with the wedding party. ", "album_id": "72157625787545021", "photo_flickr_id": "5387490221", "setting": "last-3-pick-old-and-tell", "worker_id": "LFH8A0P59V5BTXD", "story_id": "50559", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the ceremony , they took photos to share their joy with the wedding party .", "storylet_id": "252798"}], [{"original_text": "The happy bride and groom couldn't help but include some joyous silly photos as well!", "album_id": "72157625787545021", "photo_flickr_id": "5387513175", "setting": "last-3-pick-old-and-tell", "worker_id": "LFH8A0P59V5BTXD", "story_id": "50559", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the happy bride and groom could n't help but include some joyous silly photos as well !", "storylet_id": "252799"}], [{"original_text": "Weddings are one of the most special occasions in life. ", "album_id": "72157626260567448", "photo_flickr_id": "5524487081", "setting": "first-2-pick-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "50560", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "weddings are one of the most special occasions in life .", "storylet_id": "252800"}], [{"original_text": "Loving friends and family surround the bride and groom on their special day. ", "album_id": "72157626260567448", "photo_flickr_id": "5525044298", "setting": "first-2-pick-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "50560", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "loving friends and family surround the bride and groom on their special day .", "storylet_id": "252801"}], [{"original_text": "Fathers dance with the daughters they just gave away in marriage and moms dance with sons who have started on their own path to creating their family. ", "album_id": "72157626260567448", "photo_flickr_id": "5524380665", "setting": "first-2-pick-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "50560", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "fathers dance with the daughters they just gave away in marriage and moms dance with sons who have started on their own path to creating their family .", "storylet_id": "252802"}], [{"original_text": "Everyone joins in the celebration during the reception after the wedding. ", "album_id": "72157626260567448", "photo_flickr_id": "5524911804", "setting": "first-2-pick-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "50560", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone joins in the celebration during the reception after the wedding .", "storylet_id": "252803"}], [{"original_text": "All are there to wish the bride and groom the best future possible. ", "album_id": "72157626260567448", "photo_flickr_id": "5524878018", "setting": "first-2-pick-and-tell", "worker_id": "337EUXCP4HGW1D1", "story_id": "50560", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all are there to wish the bride and groom the best future possible .", "storylet_id": "252804"}], [{"original_text": "The flowers at my wedding were beautiful.", "album_id": "72157626260567448", "photo_flickr_id": "5524487081", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "50561", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the flowers at my wedding were beautiful .", "storylet_id": "252805"}], [{"original_text": " All the flowers matched the bridesmaids dresses and groomsmen attire perfectly.", "album_id": "72157626260567448", "photo_flickr_id": "5525044298", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "50561", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the flowers matched the bridesmaids dresses and groomsmen attire perfectly .", "storylet_id": "252806"}], [{"original_text": "The pictures with my bridesmaids came out stunning.", "album_id": "72157626260567448", "photo_flickr_id": "5525028290", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "50561", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the pictures with my bridesmaids came out stunning .", "storylet_id": "252807"}], [{"original_text": "My husband and I quickly ran outside to take a picture with the sunset.", "album_id": "72157626260567448", "photo_flickr_id": "5524995022", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "50561", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my husband and i quickly ran outside to take a picture with the sunset .", "storylet_id": "252808"}], [{"original_text": "We continued the party with our family and guests.", "album_id": "72157626260567448", "photo_flickr_id": "5524920306", "setting": "first-2-pick-and-tell", "worker_id": "SJNRHMCUQBCUPAI", "story_id": "50561", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we continued the party with our family and guests .", "storylet_id": "252809"}], [{"original_text": "The bride and groom share a kiss after the wedding.", "album_id": "72157626260567448", "photo_flickr_id": "5524487081", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "50562", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride and groom share a kiss after the wedding .", "storylet_id": "252810"}], [{"original_text": "The groomsmen and bridesmaids pose together for a wedding picture.", "album_id": "72157626260567448", "photo_flickr_id": "5525044298", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "50562", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the groomsmen and bridesmaids pose together for a wedding picture .", "storylet_id": "252811"}], [{"original_text": "The bride and the bridesmaids then take their own photo.", "album_id": "72157626260567448", "photo_flickr_id": "5525028290", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "50562", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bride and the bridesmaids then take their own photo .", "storylet_id": "252812"}], [{"original_text": "The happy couple takes pictures at sunset to show their love.", "album_id": "72157626260567448", "photo_flickr_id": "5524995022", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "50562", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the happy couple takes pictures at sunset to show their love .", "storylet_id": "252813"}], [{"original_text": "There is a collage made of the wedding photos.", "album_id": "72157626260567448", "photo_flickr_id": "5524920306", "setting": "last-3-pick-old-and-tell", "worker_id": "FM8TYA9XZ742PXO", "story_id": "50562", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is a collage made of the wedding photos .", "storylet_id": "252814"}], [{"original_text": "Ginny and Tom's wedding was the best day of their life.", "album_id": "72157626260567448", "photo_flickr_id": "5524487081", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "50563", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "ginny and [male] 's wedding was the best day of their life .", "storylet_id": "252815"}], [{"original_text": "Looking back at pictures now they laughed.", "album_id": "72157626260567448", "photo_flickr_id": "5525044298", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "50563", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "looking back at pictures now they laughed .", "storylet_id": "252816"}], [{"original_text": "They loved having these amazing memories together.", "album_id": "72157626260567448", "photo_flickr_id": "5524380665", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "50563", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they loved having these amazing memories together .", "storylet_id": "252817"}], [{"original_text": "Even 5 years later they were so happy to be together.", "album_id": "72157626260567448", "photo_flickr_id": "5524911804", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "50563", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even 5 years later they were so happy to be together .", "storylet_id": "252818"}], [{"original_text": "They were happier than ever now.", "album_id": "72157626260567448", "photo_flickr_id": "5524878018", "setting": "last-3-pick-old-and-tell", "worker_id": "65CI4MPJGVD9MR8", "story_id": "50563", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were happier than ever now .", "storylet_id": "252819"}], [{"original_text": "Here are the pictures from my wedding. It was a perfect day.", "album_id": "72157626260567448", "photo_flickr_id": "5524487081", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "50564", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here are the pictures from my wedding . it was a perfect day .", "storylet_id": "252820"}], [{"original_text": "This is my wedding party. I love them al. ", "album_id": "72157626260567448", "photo_flickr_id": "5525044298", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "50564", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is my wedding party . i love them al .", "storylet_id": "252821"}], [{"original_text": "Here are pictures of our first dance, and Groom mother dance. ", "album_id": "72157626260567448", "photo_flickr_id": "5524380665", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "50564", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here are pictures of our first dance , and groom mother dance .", "storylet_id": "252822"}], [{"original_text": "Here's is our reception. Is was so much fun. ", "album_id": "72157626260567448", "photo_flickr_id": "5524911804", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "50564", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's is our reception . is was so much fun .", "storylet_id": "252823"}], [{"original_text": "I will treasure this day forever. I love my new husband. ", "album_id": "72157626260567448", "photo_flickr_id": "5524878018", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "50564", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i will treasure this day forever . i love my new husband .", "storylet_id": "252824"}], [{"original_text": "This couple are going to get married. ", "album_id": "72157626554955140", "photo_flickr_id": "5644627194", "setting": "first-2-pick-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "50565", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this couple are going to get married .", "storylet_id": "252825"}], [{"original_text": "They took pictures of this event. ", "album_id": "72157626554955140", "photo_flickr_id": "5644060823", "setting": "first-2-pick-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "50565", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took pictures of this event .", "storylet_id": "252826"}], [{"original_text": "They got their license. ", "album_id": "72157626554955140", "photo_flickr_id": "5644627378", "setting": "first-2-pick-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "50565", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they got their license .", "storylet_id": "252827"}], [{"original_text": "Their friend cooked them steaks. ", "album_id": "72157626554955140", "photo_flickr_id": "5645261354", "setting": "first-2-pick-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "50565", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their friend cooked them steaks .", "storylet_id": "252828"}], [{"original_text": "They all had a big dinner afterwards. ", "album_id": "72157626554955140", "photo_flickr_id": "5645261762", "setting": "first-2-pick-and-tell", "worker_id": "J4VBY2EW38WLJJW", "story_id": "50565", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all had a big dinner afterwards .", "storylet_id": "252829"}], [{"original_text": "The family was gathering for dinner.", "album_id": "72157626554955140", "photo_flickr_id": "5645261762", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "50566", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was gathering for dinner .", "storylet_id": "252830"}], [{"original_text": "John had made his famous raw steaks.", "album_id": "72157626554955140", "photo_flickr_id": "5645261354", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "50566", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] had made his famous raw steaks .", "storylet_id": "252831"}], [{"original_text": "Mom and dad were very excited to not have to cook.", "album_id": "72157626554955140", "photo_flickr_id": "5644696583", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "50566", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom and dad were very excited to not have to cook .", "storylet_id": "252832"}], [{"original_text": "The food was so bad they fed it to the dogs.", "album_id": "72157626554955140", "photo_flickr_id": "5645261924", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "50566", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food was so bad they fed it to the dogs .", "storylet_id": "252833"}], [{"original_text": "After dinner was a cake which the girls promptly ate.", "album_id": "72157626554955140", "photo_flickr_id": "5645261892", "setting": "first-2-pick-and-tell", "worker_id": "ETGRYLZJMOIF7ES", "story_id": "50566", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after dinner was a cake which the girls promptly ate .", "storylet_id": "252834"}], [{"original_text": "My beautiful sister and her fiancee were finally able to be married thanks to the US Supreme Court.", "album_id": "72157626554955140", "photo_flickr_id": "5644627194", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "50567", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my beautiful sister and her fiancee were finally able to be married thanks to the organization organization organization .", "storylet_id": "252835"}], [{"original_text": "It was such a beautiful day.", "album_id": "72157626554955140", "photo_flickr_id": "5644060823", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "50567", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was such a beautiful day .", "storylet_id": "252836"}], [{"original_text": "They've been waiting for this moment for years.", "album_id": "72157626554955140", "photo_flickr_id": "5644627378", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "50567", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they 've been waiting for this moment for years .", "storylet_id": "252837"}], [{"original_text": "We all gathered at my aunt's house in support of their union.", "album_id": "72157626554955140", "photo_flickr_id": "5645261354", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "50567", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all gathered at my aunt 's house in support of their union .", "storylet_id": "252838"}], [{"original_text": "It was a beautiful night and a beautiful dinner. ", "album_id": "72157626554955140", "photo_flickr_id": "5645261762", "setting": "last-3-pick-old-and-tell", "worker_id": "JKDJSFEXXU9RULM", "story_id": "50567", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a beautiful night and a beautiful dinner .", "storylet_id": "252839"}], [{"original_text": "I went to the party last night.", "album_id": "72157626554955140", "photo_flickr_id": "5645261762", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50568", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the party last night .", "storylet_id": "252840"}], [{"original_text": "We made a lot of delicious food.", "album_id": "72157626554955140", "photo_flickr_id": "5645261354", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50568", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made a lot of delicious food .", "storylet_id": "252841"}], [{"original_text": "The neighbors were invited as well.", "album_id": "72157626554955140", "photo_flickr_id": "5644696583", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50568", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the neighbors were invited as well .", "storylet_id": "252842"}], [{"original_text": "The dogs were very hungry.", "album_id": "72157626554955140", "photo_flickr_id": "5645261924", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50568", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dogs were very hungry .", "storylet_id": "252843"}], [{"original_text": "We cut the cake at the end.", "album_id": "72157626554955140", "photo_flickr_id": "5645261892", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50568", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we cut the cake at the end .", "storylet_id": "252844"}], [{"original_text": "Today we have a family dinner. I was so happy to see everyone. ", "album_id": "72157626554955140", "photo_flickr_id": "5645261762", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "50569", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we have a family dinner . i was so happy to see everyone .", "storylet_id": "252845"}], [{"original_text": "My brother was going to grill the meat. Hopefully he won't burn it. ", "album_id": "72157626554955140", "photo_flickr_id": "5645261354", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "50569", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my brother was going to grill the meat . hopefully he wo n't burn it .", "storylet_id": "252846"}], [{"original_text": "Here are my loving parents. They set such a good example for me. ", "album_id": "72157626554955140", "photo_flickr_id": "5644696583", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "50569", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here are my loving parents . they set such a good example for me .", "storylet_id": "252847"}], [{"original_text": "My little sisters enjoyed feeding my dogs. ", "album_id": "72157626554955140", "photo_flickr_id": "5645261924", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "50569", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my little sisters enjoyed feeding my dogs .", "storylet_id": "252848"}], [{"original_text": "Cake was for dessert, our family favorite kind, chocolate! ", "album_id": "72157626554955140", "photo_flickr_id": "5645261892", "setting": "last-3-pick-old-and-tell", "worker_id": "VZPQT00BWC2XK6A", "story_id": "50569", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "cake was for dessert , our family favorite kind , chocolate !", "storylet_id": "252849"}], [{"original_text": "The grandchildren finally arrived at our house for the weekend.", "album_id": "72157622352867975", "photo_flickr_id": "3964134873", "setting": "first-2-pick-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "50570", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the grandchildren finally arrived at our house for the weekend .", "storylet_id": "252850"}], [{"original_text": "Randle noticed that we got a new foosball table.", "album_id": "72157622352867975", "photo_flickr_id": "3964895608", "setting": "first-2-pick-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "50570", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "randle noticed that we got a new foosball table .", "storylet_id": "252851"}], [{"original_text": "Marcie heard all the noise that Randle was making and was wondering what was all the commotion.", "album_id": "72157622352867975", "photo_flickr_id": "3964130459", "setting": "first-2-pick-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "50570", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] heard all the noise that randle was making and was wondering what was all the commotion .", "storylet_id": "252852"}], [{"original_text": "Randle put the ball in place for his and Marcie's game.", "album_id": "72157622352867975", "photo_flickr_id": "3964894964", "setting": "first-2-pick-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "50570", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "randle put the ball in place for his and [female] 's game .", "storylet_id": "252853"}], [{"original_text": "After they got done playing we have a nice dinner. With a delicious cherry pie.", "album_id": "72157622352867975", "photo_flickr_id": "3964914240", "setting": "first-2-pick-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "50570", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after they got done playing we have a nice dinner . with a delicious cherry pie .", "storylet_id": "252854"}], [{"original_text": "Our kids have many different interests. One likes to play foosball.", "album_id": "72157622352867975", "photo_flickr_id": "3964894964", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "50571", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our kids have many different interests . one likes to play foosball .", "storylet_id": "252855"}], [{"original_text": "Another loves matching games.", "album_id": "72157622352867975", "photo_flickr_id": "3964122323", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "50571", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "another loves matching games .", "storylet_id": "252856"}], [{"original_text": "One likes to play on the computer.", "album_id": "72157622352867975", "photo_flickr_id": "3964138123", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "50571", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one likes to play on the computer .", "storylet_id": "252857"}], [{"original_text": "The little one loves to cuddle.", "album_id": "72157622352867975", "photo_flickr_id": "3964913080", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "50571", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the little one loves to cuddle .", "storylet_id": "252858"}], [{"original_text": "But all of them love to eat fresh berry pie.", "album_id": "72157622352867975", "photo_flickr_id": "3964914240", "setting": "first-2-pick-and-tell", "worker_id": "FQA7C8DHTBHFWCB", "story_id": "50571", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but all of them love to eat fresh berry pie .", "storylet_id": "252859"}], [{"original_text": "He enjoyed playing the game to pass time. ", "album_id": "72157622352867975", "photo_flickr_id": "3964894964", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50572", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he enjoyed playing the game to pass time .", "storylet_id": "252860"}], [{"original_text": "He preferred puzzle pieces. ", "album_id": "72157622352867975", "photo_flickr_id": "3964122323", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50572", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he preferred puzzle pieces .", "storylet_id": "252861"}], [{"original_text": "Dad teaches her how to work the computer. ", "album_id": "72157622352867975", "photo_flickr_id": "3964138123", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50572", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad teaches her how to work the computer .", "storylet_id": "252862"}], [{"original_text": "The baby is interested in the game in his hand. ", "album_id": "72157622352867975", "photo_flickr_id": "3964913080", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50572", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the baby is interested in the game in his hand .", "storylet_id": "252863"}], [{"original_text": "Dessert was almost gone. ", "album_id": "72157622352867975", "photo_flickr_id": "3964914240", "setting": "last-3-pick-old-and-tell", "worker_id": "31V0BIA7H0UAKHG", "story_id": "50572", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dessert was almost gone .", "storylet_id": "252864"}], [{"original_text": "Babysitting the niece and nephew for the night. ", "album_id": "72157622352867975", "photo_flickr_id": "3964134873", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "50573", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "babysitting the niece and nephew for the night .", "storylet_id": "252865"}], [{"original_text": "He decided this game looked fun, insisted on playing. ", "album_id": "72157622352867975", "photo_flickr_id": "3964895608", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "50573", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he decided this game looked fun , insisted on playing .", "storylet_id": "252866"}], [{"original_text": "She was more interested in my photo taking than the cartoons.", "album_id": "72157622352867975", "photo_flickr_id": "3964130459", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "50573", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was more interested in my photo taking than the cartoons .", "storylet_id": "252867"}], [{"original_text": "He decided to help himself out just a little.", "album_id": "72157622352867975", "photo_flickr_id": "3964894964", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "50573", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he decided to help himself out just a little .", "storylet_id": "252868"}], [{"original_text": "Dessert was devoured in minutes, now bath time..", "album_id": "72157622352867975", "photo_flickr_id": "3964914240", "setting": "last-3-pick-old-and-tell", "worker_id": "IVHKGM3L3OFMMQC", "story_id": "50573", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dessert was devoured in minutes , now bath time..", "storylet_id": "252869"}], [{"original_text": "I helped my brother who had his four kids for the weekend while his wife was out of town.", "album_id": "72157622352867975", "photo_flickr_id": "3964894964", "setting": "last-3-pick-old-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "50574", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i helped my brother who had his four kids for the weekend while his wife was out of town .", "storylet_id": "252870"}], [{"original_text": "They were so cute!", "album_id": "72157622352867975", "photo_flickr_id": "3964122323", "setting": "last-3-pick-old-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "50574", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were so cute !", "storylet_id": "252871"}], [{"original_text": "It kept him busy keeping them busy.", "album_id": "72157622352867975", "photo_flickr_id": "3964138123", "setting": "last-3-pick-old-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "50574", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it kept him busy keeping them busy .", "storylet_id": "252872"}], [{"original_text": "The baby was a doll!", "album_id": "72157622352867975", "photo_flickr_id": "3964913080", "setting": "last-3-pick-old-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "50574", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the baby was a doll !", "storylet_id": "252873"}], [{"original_text": "His wife had mad a delicious cherry pie for us.", "album_id": "72157622352867975", "photo_flickr_id": "3964914240", "setting": "last-3-pick-old-and-tell", "worker_id": "73A4X7WZYCL1XGQ", "story_id": "50574", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his wife had mad a delicious cherry pie for us .", "storylet_id": "252874"}], [{"original_text": "There was a great turn out today at the protest.", "album_id": "72157627860505746", "photo_flickr_id": "6230428074", "setting": "first-2-pick-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "50575", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a great turn out today at the protest .", "storylet_id": "252875"}], [{"original_text": "The group spend thier time showing posters of what they felt deeply about.", "album_id": "72157627860505746", "photo_flickr_id": "6230428362", "setting": "first-2-pick-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "50575", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the group spend thier time showing posters of what they felt deeply about .", "storylet_id": "252876"}], [{"original_text": "It was nice to see white,black,asian men and women coming together for one known cause.", "album_id": "72157627860505746", "photo_flickr_id": "6230428878", "setting": "first-2-pick-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "50575", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was nice to see white , black , asian men and women coming together for one known cause .", "storylet_id": "252877"}], [{"original_text": " When the day came to end we know they spend so much time with each other it makes the community stronger.", "album_id": "72157627860505746", "photo_flickr_id": "6229911981", "setting": "first-2-pick-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "50575", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the day came to end we know they spend so much time with each other it makes the community stronger .", "storylet_id": "252878"}], [{"original_text": " We must know a cause and know a way to fix it they said.", "album_id": "72157627860505746", "photo_flickr_id": "6229912911", "setting": "first-2-pick-and-tell", "worker_id": "M0XJV8EHAZ93UFT", "story_id": "50575", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we must know a cause and know a way to fix it they said .", "storylet_id": "252879"}], [{"original_text": "A big crowd showed up for the rally. ", "album_id": "72157627860505746", "photo_flickr_id": "6230428362", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "50576", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a big crowd showed up for the rally .", "storylet_id": "252880"}], [{"original_text": "Many people were angry.", "album_id": "72157627860505746", "photo_flickr_id": "6230429172", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "50576", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people were angry .", "storylet_id": "252881"}], [{"original_text": "There were issues that needed resolution.", "album_id": "72157627860505746", "photo_flickr_id": "6229911981", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "50576", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were issues that needed resolution .", "storylet_id": "252882"}], [{"original_text": "Everyone is tired of being misrepresented.", "album_id": "72157627860505746", "photo_flickr_id": "6230430734", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "50576", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone is tired of being misrepresented .", "storylet_id": "252883"}], [{"original_text": "There were some very compelling speakers.", "album_id": "72157627860505746", "photo_flickr_id": "6230431408", "setting": "first-2-pick-and-tell", "worker_id": "3980KRWX6UPMX8M", "story_id": "50576", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were some very compelling speakers .", "storylet_id": "252884"}], [{"original_text": "The rally was a lot of fun.", "album_id": "72157627860505746", "photo_flickr_id": "6230428074", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50577", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the rally was a lot of fun .", "storylet_id": "252885"}], [{"original_text": "There were tons of people there.", "album_id": "72157627860505746", "photo_flickr_id": "6230428362", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50577", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were tons of people there .", "storylet_id": "252886"}], [{"original_text": "I had a lot of energy that day.", "album_id": "72157627860505746", "photo_flickr_id": "6230428878", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50577", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a lot of energy that day .", "storylet_id": "252887"}], [{"original_text": "I showed my sign to everyone.", "album_id": "72157627860505746", "photo_flickr_id": "6229911981", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50577", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i showed my sign to everyone .", "storylet_id": "252888"}], [{"original_text": "We began to head north.", "album_id": "72157627860505746", "photo_flickr_id": "6229912911", "setting": "last-3-pick-old-and-tell", "worker_id": "P194BR0K3RB7FIT", "story_id": "50577", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we began to head north .", "storylet_id": "252889"}], [{"original_text": "this was quite a scene today as a group of men were rallying in the park", "album_id": "72157627860505746", "photo_flickr_id": "6230428074", "setting": "last-3-pick-old-and-tell", "worker_id": "D9GB1MTMOIUH117", "story_id": "50578", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was quite a scene today as a group of men were rallying in the park", "storylet_id": "252890"}], [{"original_text": "This group was fighting for their cause and for freedom", "album_id": "72157627860505746", "photo_flickr_id": "6230428362", "setting": "last-3-pick-old-and-tell", "worker_id": "D9GB1MTMOIUH117", "story_id": "50578", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this group was fighting for their cause and for freedom", "storylet_id": "252891"}], [{"original_text": "Many of them were speaking out about terrorism and war ", "album_id": "72157627860505746", "photo_flickr_id": "6230428878", "setting": "last-3-pick-old-and-tell", "worker_id": "D9GB1MTMOIUH117", "story_id": "50578", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many of them were speaking out about terrorism and war", "storylet_id": "252892"}], [{"original_text": "The group consisted of all age groups and people from all walks of life", "album_id": "72157627860505746", "photo_flickr_id": "6229911981", "setting": "last-3-pick-old-and-tell", "worker_id": "D9GB1MTMOIUH117", "story_id": "50578", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the group consisted of all age groups and people from all walks of life", "storylet_id": "252893"}], [{"original_text": "This young man was speaking out for a good cause ", "album_id": "72157627860505746", "photo_flickr_id": "6229912911", "setting": "last-3-pick-old-and-tell", "worker_id": "D9GB1MTMOIUH117", "story_id": "50578", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this young man was speaking out for a good cause", "storylet_id": "252894"}], [{"original_text": "Many people gathered around the reporters as they video taped the protest.", "album_id": "72157627860505746", "photo_flickr_id": "6230428074", "setting": "last-3-pick-old-and-tell", "worker_id": "4Y9V1846F9LULWA", "story_id": "50579", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people gathered around the reporters as they video taped the protest .", "storylet_id": "252895"}], [{"original_text": "As they stood there listening, tension could be felt in the air.", "album_id": "72157627860505746", "photo_flickr_id": "6230428362", "setting": "last-3-pick-old-and-tell", "worker_id": "4Y9V1846F9LULWA", "story_id": "50579", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as they stood there listening , tension could be felt in the air .", "storylet_id": "252896"}], [{"original_text": "Everyone was putting their voice in.", "album_id": "72157627860505746", "photo_flickr_id": "6230428878", "setting": "last-3-pick-old-and-tell", "worker_id": "4Y9V1846F9LULWA", "story_id": "50579", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was putting their voice in .", "storylet_id": "252897"}], [{"original_text": "Some held signs supporting the campaign finance reform.", "album_id": "72157627860505746", "photo_flickr_id": "6229911981", "setting": "last-3-pick-old-and-tell", "worker_id": "4Y9V1846F9LULWA", "story_id": "50579", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some held signs supporting the campaign finance reform .", "storylet_id": "252898"}], [{"original_text": "While others shouted in protest.", "album_id": "72157627860505746", "photo_flickr_id": "6229912911", "setting": "last-3-pick-old-and-tell", "worker_id": "4Y9V1846F9LULWA", "story_id": "50579", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while others shouted in protest .", "storylet_id": "252899"}], [{"original_text": "There was a parade going on in town.", "album_id": "72157627860827386", "photo_flickr_id": "6230553630", "setting": "first-2-pick-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "50580", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a parade going on in town .", "storylet_id": "252900"}], [{"original_text": "The first event was a choir. They could sing beautifully.", "album_id": "72157627860827386", "photo_flickr_id": "6230555210", "setting": "first-2-pick-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "50580", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first event was a choir . they could sing beautifully .", "storylet_id": "252901"}], [{"original_text": "Afterwards there was a few street talents. My favorite was the guy who acted like a dinosaur.", "album_id": "72157627860827386", "photo_flickr_id": "6230036845", "setting": "first-2-pick-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "50580", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards there was a few street talents . my favorite was the guy who acted like a dinosaur .", "storylet_id": "252902"}], [{"original_text": "After wards the church gave a speech.", "album_id": "72157627860827386", "photo_flickr_id": "6230558398", "setting": "first-2-pick-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "50580", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after wards the church gave a speech .", "storylet_id": "252903"}], [{"original_text": "By the time the singing ended it was dark. We all had a good time.", "album_id": "72157627860827386", "photo_flickr_id": "6230558644", "setting": "first-2-pick-and-tell", "worker_id": "W0W02GEQAPGMHHG", "story_id": "50580", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the time the singing ended it was dark . we all had a good time .", "storylet_id": "252904"}], [{"original_text": "They camped outside in the tents in the city", "album_id": "72157627860827386", "photo_flickr_id": "6230553392", "setting": "first-2-pick-and-tell", "worker_id": "GR75LBVQTW2STGX", "story_id": "50581", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they camped outside in the tents in the city", "storylet_id": "252905"}], [{"original_text": "Many different families came to visit the great city of chicago", "album_id": "72157627860827386", "photo_flickr_id": "6230035041", "setting": "first-2-pick-and-tell", "worker_id": "GR75LBVQTW2STGX", "story_id": "50581", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many different families came to visit the great city of chicago", "storylet_id": "252906"}], [{"original_text": "They sang prayers at night rejoicing the people", "album_id": "72157627860827386", "photo_flickr_id": "6230558902", "setting": "first-2-pick-and-tell", "worker_id": "GR75LBVQTW2STGX", "story_id": "50581", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they sang prayers at night rejoicing the people", "storylet_id": "252907"}], [{"original_text": "They sang these songs for hours and hours", "album_id": "72157627860827386", "photo_flickr_id": "6230559424", "setting": "first-2-pick-and-tell", "worker_id": "GR75LBVQTW2STGX", "story_id": "50581", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they sang these songs for hours and hours", "storylet_id": "252908"}], [{"original_text": "At the end everyone was happy and went to sleep in their tents", "album_id": "72157627860827386", "photo_flickr_id": "6230559860", "setting": "first-2-pick-and-tell", "worker_id": "GR75LBVQTW2STGX", "story_id": "50581", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end everyone was happy and went to sleep in their tents", "storylet_id": "252909"}], [{"original_text": "Everyone is out camping in there tent.", "album_id": "72157627860827386", "photo_flickr_id": "6230553392", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50582", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone is out camping in there tent .", "storylet_id": "252910"}], [{"original_text": "Then when they wake up , people began selling things.", "album_id": "72157627860827386", "photo_flickr_id": "6230035041", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50582", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then when they wake up , people began selling things .", "storylet_id": "252911"}], [{"original_text": "At night time people come out and read.", "album_id": "72157627860827386", "photo_flickr_id": "6230558902", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50582", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at night time people come out and read .", "storylet_id": "252912"}], [{"original_text": "More people come read and gather among each other.", "album_id": "72157627860827386", "photo_flickr_id": "6230559424", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50582", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more people come read and gather among each other .", "storylet_id": "252913"}], [{"original_text": "People began to read to the crowd while they all follow along.", "album_id": "72157627860827386", "photo_flickr_id": "6230559860", "setting": "last-3-pick-old-and-tell", "worker_id": "NSBND5TXAXV9YIP", "story_id": "50582", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people began to read to the crowd while they all follow along .", "storylet_id": "252914"}], [{"original_text": "Crowds gathered to protest the war.", "album_id": "72157627860827386", "photo_flickr_id": "6230553630", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3LY2J5LLLDCA0", "story_id": "50583", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "crowds gathered to protest the war .", "storylet_id": "252915"}], [{"original_text": "Local religious groups spoke to the crowd.", "album_id": "72157627860827386", "photo_flickr_id": "6230555210", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3LY2J5LLLDCA0", "story_id": "50583", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "local religious groups spoke to the crowd .", "storylet_id": "252916"}], [{"original_text": "The audience was enthusiastic to hear the speakers.", "album_id": "72157627860827386", "photo_flickr_id": "6230036845", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3LY2J5LLLDCA0", "story_id": "50583", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the audience was enthusiastic to hear the speakers .", "storylet_id": "252917"}], [{"original_text": "Protesters argued that the war was too costly.", "album_id": "72157627860827386", "photo_flickr_id": "6230558398", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3LY2J5LLLDCA0", "story_id": "50583", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "protesters argued that the war was too costly .", "storylet_id": "252918"}], [{"original_text": "Religious leaders later held a vigil for the fallen soldiers.", "album_id": "72157627860827386", "photo_flickr_id": "6230558644", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3LY2J5LLLDCA0", "story_id": "50583", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "religious leaders later held a vigil for the fallen soldiers .", "storylet_id": "252919"}], [{"original_text": "The crowd growing despite the weather.", "album_id": "72157627860827386", "photo_flickr_id": "6230553630", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "50584", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowd growing despite the weather .", "storylet_id": "252920"}], [{"original_text": "A few of us tried informing the public.", "album_id": "72157627860827386", "photo_flickr_id": "6230555210", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "50584", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a few of us tried informing the public .", "storylet_id": "252921"}], [{"original_text": "Most reporters were to busy with other matters.", "album_id": "72157627860827386", "photo_flickr_id": "6230036845", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "50584", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most reporters were to busy with other matters .", "storylet_id": "252922"}], [{"original_text": "The rally went on strong, as members gave rewarding speeches.", "album_id": "72157627860827386", "photo_flickr_id": "6230558398", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "50584", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rally went on strong , as members gave rewarding speeches .", "storylet_id": "252923"}], [{"original_text": "Later braking out in song to end the night.", "album_id": "72157627860827386", "photo_flickr_id": "6230558644", "setting": "last-3-pick-old-and-tell", "worker_id": "ATFEI1R03JLL715", "story_id": "50584", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later braking out in song to end the night .", "storylet_id": "252924"}]]} \ No newline at end of file diff --git a/AREL-data-process/train.story-in-sequence.json.zip b/AREL-data-process/train.story-in-sequence.json.zip new file mode 100644 index 0000000..b916ad1 Binary files /dev/null and b/AREL-data-process/train.story-in-sequence.json.zip differ diff --git a/AREL-data-process/val.story-in-sequence.json b/AREL-data-process/val.story-in-sequence.json new file mode 100644 index 0000000..2bcdeaf --- /dev/null +++ b/AREL-data-process/val.story-in-sequence.json @@ -0,0 +1 @@ +{"images": [{"datetaken": "2007-07-02 03:54:30", "license": "5", "title": "Fourth of July prerequisite", "text": "", "album_id": "72157600601428727", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1125/694227468_f6c433d7d8_o.jpg", "secret": "0745b37a62", "media": "photo", "latitude": "0", "id": "694227468", "tags": "family fun fireworks bbq fourthofjuly"}, {"datetaken": "2007-07-02 03:54:30", "license": "5", "title": "Spectacular fireworks", "text": "", "album_id": "72157600601428727", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1330/694227344_58d54d3732_o.jpg", "secret": "36612e5017", "media": "photo", "latitude": "0", "id": "694227344", "tags": "family fun fireworks bbq fourthofjuly"}, {"datetaken": "2007-07-02 03:54:30", "license": "5", "title": "Bubba Burgers", "text": "", "album_id": "72157600601428727", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1008/694227412_001b568f92_o.jpg", "secret": "5702b2469d", "media": "photo", "latitude": "0", "id": "694227412", "tags": "family fun fireworks bbq fourthofjuly bubbaburgers"}, {"datetaken": "2007-07-02 03:54:31", "license": "5", "title": "\"On guard!\"", "text": "", "album_id": "72157600601428727", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1302/694227488_bb07200c72_o.jpg", "secret": "98179a7b24", "media": "photo", "latitude": "0", "id": "694227488", "tags": "family fun fireworks bbq fourthofjuly"}, {"datetaken": "2007-07-02 03:54:31", "license": "5", "title": "BBQin'", "text": "", "album_id": "72157600601428727", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1307/694227508_df12d3b4fb_o.jpg", "secret": "30aad715bf", "media": "photo", "latitude": "0", "id": "694227508", "tags": "family fun fireworks bbq fourthofjuly"}, {"datetaken": "2007-07-02 03:59:10", "license": "5", "title": "Branded \"LB\"", "text": "", "album_id": "72157600601428727", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1432/693397865_3099b05260_o.jpg", "secret": "b0ee2e882e", "media": "photo", "latitude": "0", "id": "693397865", "tags": "family fun fireworks bbq fourthofjuly"}, {"datetaken": "2007-07-02 03:59:10", "license": "5", "title": "Mean girls love their Mustangs", "text": "", "album_id": "72157600601428727", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1114/693397887_7a3eee6eeb_o.jpg", "secret": "b01775d41c", "media": "photo", "latitude": "0", "id": "693397887", "tags": "family fun fireworks bbq fourthofjuly"}, {"datetaken": "2007-07-02 03:59:10", "license": "5", "title": "Mustang", "text": "", "album_id": "72157600601428727", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1254/693397911_b88032b0f3_o.jpg", "secret": "8811aafdde", "media": "photo", "latitude": "0", "id": "693397911", "tags": "family fun fireworks bbq fourthofjuly mustang fordmustang"}, {"datetaken": "2007-07-02 03:59:11", "license": "5", "title": "Chevy SSR and Lexus RX330", "text": "", "album_id": "72157600601428727", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1159/693397975_397f7e793a_o.jpg", "secret": "c9e9009493", "media": "photo", "latitude": "0", "id": "693397975", "tags": "family fun fireworks bbq chevy fourthofjuly ssr lexus rx330"}, {"datetaken": "2007-07-02 03:59:11", "license": "5", "title": "Lawn is very green this year", "text": "", "album_id": "72157600601428727", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1125/693397995_fcf1234730_o.jpg", "secret": "c0239fb611", "media": "photo", "latitude": "0", "id": "693397995", "tags": "family fun fireworks bbq fourthofjuly"}, {"datetaken": "2007-07-02 03:59:11", "license": "5", "title": "Big sky country 1", "text": "", "album_id": "72157600601428727", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1247/693398013_43207cea5f_o.jpg", "secret": "f06db56839", "media": "photo", "latitude": "0", "id": "693398013", "tags": "family fun fireworks bbq fourthofjuly"}, {"datetaken": "2007-07-02 04:01:12", "license": "5", "title": "Big sky country 2", "text": "", "album_id": "72157600601428727", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1289/693413671_82752f157a_o.jpg", "secret": "83d81799cc", "media": "photo", "latitude": "0", "id": "693413671", "tags": "family fun fireworks bbq fourthofjuly"}, {"datetaken": "2007-07-02 04:01:12", "license": "5", "title": "Big sky country 3", "text": "", "album_id": "72157600601428727", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1174/693413687_0aae035d3a_o.jpg", "secret": "decaa11351", "media": "photo", "latitude": "0", "id": "693413687", "tags": "family fun fireworks bbq fourthofjuly"}, {"datetaken": "2007-07-02 04:01:12", "license": "5", "title": "Big sky country 4", "text": "", "album_id": "72157600601428727", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1084/693413703_888d6ea37d_o.jpg", "secret": "96763db58e", "media": "photo", "latitude": "0", "id": "693413703", "tags": "family fun fireworks bbq fourthofjuly"}, {"datetaken": "2007-07-02 07:50:09", "license": "5", "title": "At the BBQ", "text": "", "album_id": "72157600601428727", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1107/695160730_9e0df42155_o.jpg", "secret": "216427a19f", "media": "photo", "latitude": "0", "id": "695160730", "tags": "family fun fireworks bbq fourthofjuly"}, {"datetaken": "2007-07-04 12:49:34", "license": "4", "title": "01.WMATA.LenfantPlaza.SW.WDC.04jul07", "text": "", "album_id": "72157601202851033", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1074/727540815_072963c87b_o.jpg", "secret": "9751c17b40", "media": "photo", "latitude": "0", "id": "727540815", "tags": "washingtondc wdc independenceday swwdc 2007 7thstreet wmata marylandavenue july2007 wmata2007 wmatalenfantplazastation marylandavenueswwdc wmatalenfantplaza2007 independenceday2007 7thstreetswwdc 04july2007 independencedaywdc2007 southwestwashingtondc wmatalenfantplaza"}, {"datetaken": "2007-07-04 12:49:40", "license": "4", "title": "02.WMATA.LenfantPlaza.SW.WDC.04jul07", "text": "", "album_id": "72157601202851033", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1437/727540891_5cfeeeb2f8_o.jpg", "secret": "64303acf4e", "media": "photo", "latitude": "0", "id": "727540891", "tags": "washingtondc wdc independenceday swwdc 2007 7thstreet wmata marylandavenue july2007 wmata2007 wmatalenfantplazastation marylandavenueswwdc wmatalenfantplaza2007 independenceday2007 7thstreetswwdc 04july2007 independencedaywdc2007 southwestwashingtondc wmatalenfantplaza"}, {"datetaken": "2007-07-04 12:49:52", "license": "4", "title": "03.WMATA.LenfantPlaza.SW.WDC.04jul07", "text": "", "album_id": "72157601202851033", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1193/727541051_df8e07765c_o.jpg", "secret": "7bb7478dd9", "media": "photo", "latitude": "0", "id": "727541051", "tags": "washingtondc wdc independenceday swwdc 2007 7thstreet wmata marylandavenue july2007 wmata2007 wmatalenfantplazastation marylandavenueswwdc wmatalenfantplaza2007 independenceday2007 7thstreetswwdc 04july2007 independencedaywdc2007 southwestwashingtondc wmatalenfantplaza"}, {"datetaken": "2007-07-04 12:49:56", "license": "4", "title": "04.WMATA.LenfantPlaza.SW.WDC.04jul07", "text": "", "album_id": "72157601202851033", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1029/727541139_78a8eae1f1_o.jpg", "secret": "6da3faff83", "media": "photo", "latitude": "0", "id": "727541139", "tags": "washingtondc cops police wdc independenceday swwdc 2007 7thstreet wmata marylandavenue copduty july2007 wmata2007 copduty2007 wmatalenfantplazastation marylandavenueswwdc wmatalenfantplaza2007 cops2007 police2007 independenceday2007 7thstreetswwdc 04july2007 independencedaywdc2007 southwestwashingtondc wmatalenfantplaza wmatapolice wmatapolice2007"}, {"datetaken": "2007-07-04 12:49:56", "license": "4", "title": "04A.WMATA.LenfantPlaza.SW.WDC.04jul07", "text": "", "album_id": "72157601202851033", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1075/727541385_b83816b242_o.jpg", "secret": "aa5a4bd80b", "media": "photo", "latitude": "0", "id": "727541385", "tags": "washingtondc cops police wdc independenceday swwdc 2007 7thstreet wmata marylandavenue copduty july2007 wmata2007 copduty2007 wmatalenfantplazastation marylandavenueswwdc wmatalenfantplaza2007 cops2007 police2007 independenceday2007 7thstreetswwdc 04july2007 independencedaywdc2007 southwestwashingtondc wmatalenfantplaza wmatapolice wmatapolice2007"}, {"datetaken": "2007-07-04 16:56:48", "license": "4", "title": "02.WestVirginia.WMATA.WDC.04jul07", "text": "", "album_id": "72157601202851033", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1178/1003892138_c9206cb052_o.jpg", "secret": "a4f6af3421", "media": "photo", "latitude": "0", "id": "1003892138", "tags": "signsofourtimes westvirginia independenceday 2007 wmata billboarddisplays writingonthewalls wmatabillboarddisplays wmataredline july2007 westvirginiaiscalling wmata2007 billboarddisplays2007 writingsonthewall2007 wmatabillboarddisplays2007 wmatametrocenterstation independenceday2007 04july2007 independencedaywdc2007 signsofourtimes2007 wmataredline2007 wmatametrocenter2007 wmatawestvirginiaiscalling"}, {"datetaken": "2007-07-04 16:57:04", "license": "4", "title": "03.WestVirginia.WMATA.WDC.04jul07", "text": "", "album_id": "72157601202851033", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1139/1003892224_7f99c60633_o.jpg", "secret": "81878da11b", "media": "photo", "latitude": "0", "id": "1003892224", "tags": "signsofourtimes westvirginia independenceday 2007 wmata billboarddisplays writingonthewalls wmatabillboarddisplays wmataredline july2007 westvirginiaiscalling wmata2007 billboarddisplays2007 writingsonthewall2007 wmatabillboarddisplays2007 wmatametrocenterstation independenceday2007 04july2007 independencedaywdc2007 signsofourtimes2007 wmataredline2007 wmatametrocenter2007 wmatawestvirginiaiscalling"}, {"datetaken": "2007-07-04 16:57:17", "license": "4", "title": "04.WestVirginia.WMATA.WDC.04jul07", "text": "", "album_id": "72157601202851033", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1237/1003892334_54ee2086b0_o.jpg", "secret": "8abcb22268", "media": "photo", "latitude": "0", "id": "1003892334", "tags": "signsofourtimes westvirginia independenceday 2007 wmata billboarddisplays writingonthewalls wmatabillboarddisplays wmataredline july2007 westvirginiaiscalling wmata2007 billboarddisplays2007 writingsonthewall2007 wmatabillboarddisplays2007 wmatametrocenterstation independenceday2007 04july2007 independencedaywdc2007 signsofourtimes2007 wmataredline2007 wmatametrocenter2007 wmatawestvirginiaiscalling"}, {"datetaken": "2007-07-04 16:57:35", "license": "4", "title": "05.WestVirginia.WMATA.WDC.04jul07", "text": "", "album_id": "72157601202851033", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1250/1003892390_9072deea5c_o.jpg", "secret": "7d74796792", "media": "photo", "latitude": "0", "id": "1003892390", "tags": "signsofourtimes westvirginia independenceday 2007 wmata billboarddisplays writingonthewalls wmatabillboarddisplays wmataredline july2007 westvirginiaiscalling wmata2007 billboarddisplays2007 writingsonthewall2007 wmatabillboarddisplays2007 wmatametrocenterstation independenceday2007 04july2007 independencedaywdc2007 signsofourtimes2007 wmataredline2007 wmatametrocenter2007 wmatawestvirginiaiscalling"}, {"datetaken": "2007-07-04 16:57:43", "license": "4", "title": "06.WestVirginia.WMATA.WDC.04jul07", "text": "", "album_id": "72157601202851033", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1294/1003892528_b497ef5d4e_o.jpg", "secret": "878dbbbe83", "media": "photo", "latitude": "0", "id": "1003892528", "tags": "signsofourtimes westvirginia independenceday 2007 wmata billboarddisplays writingonthewalls wmatabillboarddisplays wmataredline july2007 westvirginiaiscalling wmata2007 billboarddisplays2007 writingsonthewall2007 wmatabillboarddisplays2007 wmatametrocenterstation independenceday2007 04july2007 independencedaywdc2007 signsofourtimes2007 wmataredline2007 wmatametrocenter2007 wmatawestvirginiaiscalling"}, {"datetaken": "2007-07-04 16:58:06", "license": "4", "title": "07.WestVirginia.WMATA.WDC.04jul07", "text": "", "album_id": "72157601202851033", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1439/1003969840_448be7a252_o.jpg", "secret": "6a7c219cbd", "media": "photo", "latitude": "0", "id": "1003969840", "tags": "signsofourtimes westvirginia independenceday 2007 wmata billboarddisplays writingonthewalls wmatabillboarddisplays wmataredline july2007 westvirginiaiscalling wmata2007 billboarddisplays2007 writingsonthewall2007 wmatabillboarddisplays2007 wmatametrocenterstation independenceday2007 04july2007 independencedaywdc2007 signsofourtimes2007 wmataredline2007 wmatametrocenter2007 wmatawestvirginiaiscalling"}, {"datetaken": "2007-07-04 16:58:08", "license": "4", "title": "08.WestVirginia.WMATA.WDC.04jul07", "text": "", "album_id": "72157601202851033", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1201/1003969918_4f6f9fa0ca_o.jpg", "secret": "f9e07ed194", "media": "photo", "latitude": "0", "id": "1003969918", "tags": "signsofourtimes westvirginia independenceday 2007 wmata billboarddisplays writingonthewalls wmatabillboarddisplays wmataredline july2007 westvirginiaiscalling wmata2007 billboarddisplays2007 writingsonthewall2007 wmatabillboarddisplays2007 wmatametrocenterstation independenceday2007 04july2007 independencedaywdc2007 signsofourtimes2007 wmataredline2007 wmatametrocenter2007 wmatawestvirginiaiscalling"}, {"datetaken": "2007-07-04 16:58:30", "license": "4", "title": "09.WestVirginia.WMATA.WDC.04jul07", "text": "", "album_id": "72157601202851033", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1433/1003969962_a14b3b971c_o.jpg", "secret": "02db8d1f53", "media": "photo", "latitude": "0", "id": "1003969962", "tags": "signsofourtimes westvirginia independenceday 2007 wmata billboarddisplays writingonthewalls wmatabillboarddisplays wmataredline july2007 westvirginiaiscalling wmata2007 billboarddisplays2007 writingsonthewall2007 wmatabillboarddisplays2007 wmatametrocenterstation independenceday2007 04july2007 independencedaywdc2007 signsofourtimes2007 wmataredline2007 wmatametrocenter2007 wmatawestvirginiaiscalling"}, {"datetaken": "2007-07-04 17:07:43", "license": "4", "title": "4thOfJuly.WMATA.WDC.04jul07", "text": "", "album_id": "72157601202851033", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1232/1001024065_048b2dc4bf_o.jpg", "secret": "a94d3a3421", "media": "photo", "latitude": "0", "id": "1001024065", "tags": "independenceday 2007 wmata wmatagreenline july2007 wmata2007 wmatagreenline2007 independenceday2007 04july2007 independencedaywdc2007 wmatagalleryplace2007 wmatagalleryplacechinatownstation"}, {"datetaken": "2006-07-04 14:11:09", "license": "3", "title": "BHS-Army-ROTC", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/181866882_2cacbbd862_o.jpg", "secret": "2cacbbd862", "media": "photo", "latitude": "0", "id": "181866882", "tags": "florida brandon parade 4thofjuly"}, {"datetaken": "2006-07-04 14:11:11", "license": "3", "title": "BSHS-Air-Force-ROTC", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/181866901_7a9b35e2d4_o.jpg", "secret": "7a9b35e2d4", "media": "photo", "latitude": "0", "id": "181866901", "tags": "florida brandon parade 4thofjuly"}, {"datetaken": "2006-07-04 14:11:13", "license": "3", "title": "Shriner-Clown-1", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/181866941_c89e0c74a8_o.jpg", "secret": "c89e0c74a8", "media": "photo", "latitude": "0", "id": "181866941", "tags": "florida brandon parade 4thofjuly"}, {"datetaken": "2006-07-04 14:11:15", "license": "3", "title": "Buffalo-Soldiers", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/181866969_5d5a8ac2ca_o.jpg", "secret": "5d5a8ac2ca", "media": "photo", "latitude": "0", "id": "181866969", "tags": "florida brandon parade 4thofjuly"}, {"datetaken": "2006-07-04 14:11:18", "license": "3", "title": "Color-Guard", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/181867013_843117260a_o.jpg", "secret": "843117260a", "media": "photo", "latitude": "0", "id": "181867013", "tags": "florida brandon parade 4thofjuly"}, {"datetaken": "2006-07-04 14:11:20", "license": "3", "title": "Shriner-Clown-2", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/181867039_4e7a5c64d6_o.jpg", "secret": "4e7a5c64d6", "media": "photo", "latitude": "0", "id": "181867039", "tags": "florida brandon parade 4thofjuly"}, {"datetaken": "2006-07-04 14:11:23", "license": "3", "title": "Rough-Riders-2", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/181867072_0eff7944c5_o.jpg", "secret": "0eff7944c5", "media": "photo", "latitude": "0", "id": "181867072", "tags": "florida brandon parade 4thofjuly"}, {"datetaken": "2006-07-04 14:11:25", "license": "3", "title": "Lions-Club-Fire-Engine", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/181867104_12e987d899_o.jpg", "secret": "12e987d899", "media": "photo", "latitude": "0", "id": "181867104", "tags": "florida brandon parade 4thofjuly"}, {"datetaken": "2006-07-04 14:11:28", "license": "3", "title": "Uncle-Sams-Crazy-Car", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/181867131_81bcdc9e09_o.jpg", "secret": "81bcdc9e09", "media": "photo", "latitude": "0", "id": "181867131", "tags": "florida brandon parade 4thofjuly"}, {"datetaken": "2006-07-04 14:11:30", "license": "3", "title": "Rough-Riders", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/181867170_78c114c183_o.jpg", "secret": "78c114c183", "media": "photo", "latitude": "0", "id": "181867170", "tags": "florida brandon parade 4thofjuly"}, {"datetaken": "2006-07-04 14:11:32", "license": "3", "title": "CSA-Color-Guard", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/181867187_58e4ce51de_o.jpg", "secret": "58e4ce51de", "media": "photo", "latitude": "0", "id": "181867187", "tags": "florida brandon parade 4thofjuly"}, {"datetaken": "2006-07-04 14:11:34", "license": "3", "title": "Beads-for-Votes", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/181867214_caf9c1bea6_o.jpg", "secret": "caf9c1bea6", "media": "photo", "latitude": "0", "id": "181867214", "tags": "d50 florida brandon sigma parade 4thofjuly 1020mm"}, {"datetaken": "2006-07-04 19:56:59", "license": "3", "title": "Fireworks_0584", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/182098929_1d133270c6_o.jpg", "secret": "1d133270c6", "media": "photo", "latitude": "0", "id": "182098929", "tags": "d50 fireworks july4th nikon1855mmdx"}, {"datetaken": "2006-07-04 19:57:00", "license": "3", "title": "Fireworks_0582", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/182098940_f20681267c_o.jpg", "secret": "f20681267c", "media": "photo", "latitude": "0", "id": "182098940", "tags": "d50 fireworks july4th nikon1855mmdx"}, {"datetaken": "2006-07-04 19:57:02", "license": "3", "title": "Fireworks_0598", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/182098960_f34853deab_o.jpg", "secret": "f34853deab", "media": "photo", "latitude": "0", "id": "182098960", "tags": "d50 fireworks july4th nikon1855mmdx"}, {"datetaken": "2006-07-04 19:57:03", "license": "3", "title": "Fireworks_0600", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/182098975_78084c3707_o.jpg", "secret": "78084c3707", "media": "photo", "latitude": "0", "id": "182098975", "tags": "d50 fireworks july4th nikon1855mmdx"}, {"datetaken": "2006-07-04 20:10:28", "license": "3", "title": "Evening Sky_0552", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/183652867_ea21af843e_o.jpg", "secret": "ea21af843e", "media": "photo", "latitude": "0", "id": "183652867", "tags": "sky d50 florida fireworks brandon nikon1855mmdx"}, {"datetaken": "2006-07-04 20:19:17", "license": "3", "title": "Fireworks_0626", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/182114298_13c39fcfef_o.jpg", "secret": "13c39fcfef", "media": "photo", "latitude": "0", "id": "182114298", "tags": "d50 fireworks july4th nikon1855mmdx"}, {"datetaken": "2006-07-04 20:19:18", "license": "3", "title": "Fireworks_0634", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/182114310_9c5f211c8f_o.jpg", "secret": "9c5f211c8f", "media": "photo", "latitude": "0", "id": "182114310", "tags": "d50 fireworks july4th nikon1855mmdx"}, {"datetaken": "2006-07-04 20:19:19", "license": "3", "title": "Fireworks_0649", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/182114328_a4dac942cf_o.jpg", "secret": "a4dac942cf", "media": "photo", "latitude": "0", "id": "182114328", "tags": "d50 fireworks july4th nikon1855mmdx"}, {"datetaken": "2006-07-04 20:19:20", "license": "3", "title": "Fireworks_0654", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/182114337_728c8697e3_o.jpg", "secret": "728c8697e3", "media": "photo", "latitude": "0", "id": "182114337", "tags": "d50 fireworks july4th nikon1855mmdx"}, {"datetaken": "2006-07-04 20:19:21", "license": "3", "title": "Fireworks_0660", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/182114358_4c41cfbe06_o.jpg", "secret": "4c41cfbe06", "media": "photo", "latitude": "0", "id": "182114358", "tags": "d50 fireworks july4th nikon1855mmdx"}, {"datetaken": "2006-07-04 21:04:45", "license": "3", "title": "Fireworks_0581_1", "text": "", "album_id": "72157594187408667", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/183652825_d8b86388ff_o.jpg", "secret": "d8b86388ff", "media": "photo", "latitude": "0", "id": "183652825", "tags": "d50 fireworks brandon nikon1855mmdx"}, {"datetaken": "2006-07-02 20:45:47", "license": "1", "title": "Fireworks", "text": "", "album_id": "72157594234060064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/213243079_86c62a0e4a_o.jpg", "secret": "86c62a0e4a", "media": "photo", "latitude": "0", "id": "213243079", "tags": "fireworks july4"}, {"datetaken": "2006-07-02 20:46:11", "license": "1", "title": "Austin", "text": "", "album_id": "72157594234060064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/213243117_01f0572f72_o.jpg", "secret": "01f0572f72", "media": "photo", "latitude": "0", "id": "213243117", "tags": "fireworks july4"}, {"datetaken": "2006-07-02 20:47:11", "license": "1", "title": "Brent is a pyro", "text": "", "album_id": "72157594234060064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/213243132_d4b5567e51_o.jpg", "secret": "d4b5567e51", "media": "photo", "latitude": "0", "id": "213243132", "tags": "fireworks july4"}, {"datetaken": "2006-07-02 20:47:27", "license": "1", "title": "Light it and run", "text": "", "album_id": "72157594234060064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/213243141_e7e74fe88e_o.jpg", "secret": "e7e74fe88e", "media": "photo", "latitude": "0", "id": "213243141", "tags": "fireworks july4"}, {"datetaken": "2006-07-02 20:48:23", "license": "1", "title": "box is full", "text": "", "album_id": "72157594234060064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/213243195_8bc2ad5fe0_o.jpg", "secret": "8bc2ad5fe0", "media": "photo", "latitude": "0", "id": "213243195", "tags": "fireworks july4"}, {"datetaken": "2006-07-02 20:48:37", "license": "1", "title": "Monitoring fireworks", "text": "", "album_id": "72157594234060064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/213243240_8baa5acdfc_o.jpg", "secret": "8baa5acdfc", "media": "photo", "latitude": "0", "id": "213243240", "tags": "fireworks july4"}, {"datetaken": "2006-07-02 20:48:50", "license": "1", "title": "Fireworks", "text": "", "album_id": "72157594234060064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/213243282_c67eb69047_o.jpg", "secret": "c67eb69047", "media": "photo", "latitude": "0", "id": "213243282", "tags": "fireworks july4"}, {"datetaken": "2006-07-02 20:49:02", "license": "1", "title": "Fireworks", "text": "", "album_id": "72157594234060064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/213243295_a211d8c26f_o.jpg", "secret": "a211d8c26f", "media": "photo", "latitude": "0", "id": "213243295", "tags": "fireworks july4"}, {"datetaken": "2006-07-02 20:49:14", "license": "1", "title": "4th of July", "text": "", "album_id": "72157594234060064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/213243314_3cbe91ad37_o.jpg", "secret": "3cbe91ad37", "media": "photo", "latitude": "0", "id": "213243314", "tags": "fireworks july4"}, {"datetaken": "2006-07-04 15:44:46", "license": "1", "title": "Dick is a scream!", "text": "", "album_id": "72157594234060064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/181935204_1299f74f12_o.jpg", "secret": "1299f74f12", "media": "photo", "latitude": "0", "id": "181935204", "tags": "friends home barbecue char july4"}, {"datetaken": "2006-07-04 15:47:25", "license": "1", "title": "4th of July Cookout + our crazy neighbor!", "text": "", "album_id": "72157594234060064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/181936924_83ce6b3c44_o.jpg", "secret": "83ce6b3c44", "media": "photo", "latitude": "0", "id": "181936924", "tags": "friends home barbecue char july4"}, {"datetaken": "2006-07-04 18:43:50", "license": "1", "title": "4th of July Barbeque", "text": "", "album_id": "72157594234060064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/182048582_8bd7c7e357_o.jpg", "secret": "8bd7c7e357", "media": "photo", "latitude": "0", "id": "182048582", "tags": "friends home fireworks barbecue july4"}, {"datetaken": "2006-07-04 20:01:34", "license": "1", "title": "Fireworks while the kids swam after a day of friends and fun!", "text": "", "album_id": "72157594234060064", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/182101957_84694dd637_o.jpg", "secret": "84694dd637", "media": "photo", "latitude": "0", "id": "182101957", "tags": "friends home fireworks barbecue july4"}, {"datetaken": "2007-07-03 22:25:53", "license": "3", "title": "smoke out[take]", "text": "", "album_id": "72157600650275265", "longitude": "-121.560534", "url_o": "https://farm2.staticflickr.com/1436/758130375_7f868e9807_o.jpg", "secret": "76b5442e17", "media": "photo", "latitude": "45.693144", "id": "758130375", "tags": "usa selfportrait night oregon nightshot fireworks smoke hamilton sparklers 4thofjuly morningglory sparkler christa hoodriver 2007 morningglories july3 amancay maahs nagreen july2007 july32007"}, {"datetaken": "2007-07-03 22:29:28", "license": "3", "title": "wheeeeee....", "text": "", "album_id": "72157600650275265", "longitude": "-121.560534", "url_o": "https://farm2.staticflickr.com/1264/758131841_7587db721a_o.jpg", "secret": "e2b2d24e73", "media": "photo", "latitude": "45.693144", "id": "758131841", "tags": "longexposure usa selfportrait night oregon nightshot fireworks hamilton sparklers 4thofjuly morningglory sparkler christa hoodriver 2007 morningglories july3 amancay maahs nagreen 4secondexposure july2007 july32007"}, {"datetaken": "2007-07-03 22:29:42", "license": "3", "title": "double-trouble...", "text": "", "album_id": "72157600650275265", "longitude": "-121.560534", "url_o": "https://farm2.staticflickr.com/1406/758988826_5ad6cc04c7_o.jpg", "secret": "e248a7db09", "media": "photo", "latitude": "45.693144", "id": "758988826", "tags": "longexposure usa selfportrait night oregon nightshot fireworks hamilton sparklers 4thofjuly morningglory sparkler christa hoodriver 2007 morningglories july3 amancay maahs nagreen 4secondexposure july2007 july32007"}, {"datetaken": "2007-07-03 22:30:56", "license": "3", "title": "circles...", "text": "", "album_id": "72157600650275265", "longitude": "-121.560534", "url_o": "https://farm2.staticflickr.com/1315/758990096_238dea105a_o.jpg", "secret": "7215bbcaba", "media": "photo", "latitude": "45.693144", "id": "758990096", "tags": "longexposure usa selfportrait night oregon cool nightshot fireworks hamilton sparklers 4thofjuly morningglory sparkler christa hoodriver 2007 morningglories july3 amancay maahs nagreen 4secondexposure july2007 4thofjuly2007 july32007"}, {"datetaken": "2007-07-03 22:31:24", "license": "3", "title": "let it shine", "text": "", "album_id": "72157600650275265", "longitude": "-121.560534", "url_o": "https://farm2.staticflickr.com/1298/758135847_0c10f2a6dc_o.jpg", "secret": "d5d678ed9e", "media": "photo", "latitude": "45.693144", "id": "758135847", "tags": "longexposure usa selfportrait night oregon nightshot fireworks hamilton sparklers 4thofjuly morningglory sparkler christa hoodriver 2007 morningglories july3 amancay maahs nagreen 4secondexposure july2007 july32007"}, {"datetaken": "2007-07-04 02:19:58", "license": "3", "title": "Matt's iPhone", "text": "", "album_id": "72157600650275265", "longitude": "-121.517575", "url_o": "https://farm2.staticflickr.com/1296/714524564_7a70bb0f77_o.jpg", "secret": "00acf6daac", "media": "photo", "latitude": "45.706359", "id": "714524564", "tags": "usa selfportrait oregon atarmslength 4thofjuly july4 griffin notmycamera outtake hoodriver reject 2007 iphone amancay maahs july2007 july42007 365daysreject 365daysouttake 365outtake 365reject 4thofjuly2007 365daysday185outtake 365daysday185reject day185outtake day185reject mathysiphone"}, {"datetaken": "2007-07-04 02:21:39", "license": "3", "title": "Day 185: Miss Independent", "text": "", "album_id": "72157600650275265", "longitude": "-121.517575", "url_o": "https://farm2.staticflickr.com/1435/714548710_8eb1c1ffdb_o.jpg", "secret": "202f577585", "media": "photo", "latitude": "45.706359", "id": "714548710", "tags": "usa selfportrait cute oregon atarmslength blogged 4thofjuly july4 griffin notmycamera hoodriver 2007 iphone day185 week27 amancay maahs 365days july2007 july42007 365days2007 365dayswednesday 365d\u00edas 365daysday185 4thofjuly2007 mathysiphone 365daysjuly42007 365daysjuly4 365daysweek27 365daysjuly2007 365daysjuly"}, {"datetaken": "2007-07-04 10:43:34", "license": "3", "title": "The Kilt Underground", "text": "", "album_id": "72157600650275265", "longitude": "-121.523691", "url_o": "https://farm2.staticflickr.com/1163/721154856_5bfba79dd5_o.jpg", "secret": "f2462d9e4d", "media": "photo", "latitude": "45.698626", "id": "721154856", "tags": "usa men oregon kilt hometown flag banner hans parade bagpipes johannes 4thofjuly july4 hoodriver kaleb 2007 bagpipe decker kristoff 12thst 4thofjulyparade july2007 july42007 hoodriver4thofjulyparade apland thekiltunderground 4thofjuly2007"}, {"datetaken": "2007-07-04 10:43:41", "license": "3", "title": "Bagpipe Kilt", "text": "", "album_id": "72157600650275265", "longitude": "-121.523691", "url_o": "https://farm2.staticflickr.com/1339/721157208_2866e24593_o.jpg", "secret": "6c143b3858", "media": "photo", "latitude": "45.698626", "id": "721157208", "tags": "shadow usa men oregon kilt hometown parade bagpipes armory spectators 4thofjuly july4 spectator hoodriver 2007 bagpipe decker kristoff 12thst 4thofjulyparade july2007 july42007 hoodriver4thofjulyparade thekiltunderground 4thofjuly2007 hoodriverarmory"}, {"datetaken": "2007-07-04 10:43:46", "license": "3", "title": "Skater Kilt", "text": "", "album_id": "72157600650275265", "longitude": "-121.523691", "url_o": "https://farm2.staticflickr.com/1001/720282065_d1fd9e3404_o.jpg", "secret": "32bac3758b", "media": "photo", "latitude": "45.698626", "id": "720282065", "tags": "usa men oregon tyson kilt hometown flag hans parade skateboard skater 4thofjuly july4 hoodriver 2007 decker 12thst 4thofjulyparade kingrey july2007 july42007 hoodriver4thofjulyparade thekiltunderground 4thofjuly2007"}, {"datetaken": "2007-07-04 10:43:51", "license": "3", "title": "Patriotic Kilt", "text": "", "album_id": "72157600650275265", "longitude": "-121.523691", "url_o": "https://farm2.staticflickr.com/1099/720284567_a8a3d6394d_o.jpg", "secret": "473a1402eb", "media": "photo", "latitude": "45.698626", "id": "720284567", "tags": "usa men oregon kilt hometown flag hans parade 4thofjuly july4 hoodriver 2007 decker 12thst 4thofjulyparade july2007 july42007 hoodriver4thofjulyparade thekiltunderground 4thofjuly2007"}, {"datetaken": "2007-07-04 13:50:31", "license": "3", "title": "\"relationship\" in a bag", "text": "", "album_id": "72157600650275265", "longitude": "-121.496658", "url_o": "https://farm2.staticflickr.com/1374/720147971_65ccbc913a_o.jpg", "secret": "4d9d8a5457", "media": "photo", "latitude": "45.704795", "id": "720147971", "tags": "usa oregon book dvd cd theend relationship stuff letter blogged blender cds goodbye stoop 4thofjuly july4 doorstep hoodriver 2007 paperbag brownpaperbag grocerybag brownbag july2007 july42007 dearjaneletter dearjohnletter 4thofjuly2007 rosauersbag relationshipbag relationshipbox maahshighline"}, {"datetaken": "2007-07-04 09:21:56", "license": "1", "title": "Future Firefighters daughters!", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1210/720358365_35ecc01c0a_o.jpg", "secret": "0d1a6f3574", "media": "photo", "latitude": "0", "id": "720358365", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 09:31:12", "license": "1", "title": "Dude, I need to convince a beer company to start sponsoring MY parties!", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1299/721239002_954f378c61_o.jpg", "secret": "ac431ed83c", "media": "photo", "latitude": "0", "id": "721239002", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 09:35:58", "license": "1", "title": "", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1230/720355639_eeabac3a2d_o.jpg", "secret": "9c0d86988e", "media": "photo", "latitude": "0", "id": "720355639", "tags": "favorites parade firetruck faves fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 09:37:11", "license": "1", "title": "Junior Member", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1098/721230020_d31c4f823e_o.jpg", "secret": "f102baa9fe", "media": "photo", "latitude": "0", "id": "721230020", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 09:46:32", "license": "1", "title": "All decked out!", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1153/721227292_dbd8669454_o.jpg", "secret": "2c84bd05c3", "media": "photo", "latitude": "0", "id": "721227292", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 09:51:01", "license": "1", "title": "Admiring the ladder", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1046/720346341_7660681fd5_o.jpg", "secret": "8c3bd9c525", "media": "photo", "latitude": "0", "id": "720346341", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 09:59:17", "license": "1", "title": "I Pledge Allegiance...", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1429/721220422_022b8c23ba_o.jpg", "secret": "16848459dd", "media": "photo", "latitude": "0", "id": "721220422", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 10:16:12", "license": "1", "title": "Patriotic", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1424/720337707_6f7b34a6d0_o.jpg", "secret": "d3ee5ff9fd", "media": "photo", "latitude": "0", "id": "720337707", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 10:21:45", "license": "1", "title": "Ride along", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1176/720333951_e15155a11d_o.jpg", "secret": "d918593e93", "media": "photo", "latitude": "0", "id": "720333951", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 10:26:03", "license": "1", "title": "Load 'em up!", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1235/721206744_3bd81339f9_o.jpg", "secret": "ee78d38042", "media": "photo", "latitude": "0", "id": "721206744", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 10:36:11", "license": "1", "title": "Ready to hit the road", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1025/720325613_ea45e169c7_o.jpg", "secret": "4706e95db2", "media": "photo", "latitude": "0", "id": "720325613", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 10:36:19", "license": "1", "title": "Dad grabs the rail", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1418/721198686_ab2df516ce_o.jpg", "secret": "0ce39222dc", "media": "photo", "latitude": "0", "id": "721198686", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 10:56:40", "license": "1", "title": "Pinwheel", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1038/720317437_3fef4d43a0_o.jpg", "secret": "ba3e98b790", "media": "photo", "latitude": "0", "id": "720317437", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 11:08:10", "license": "1", "title": "This is what happens when you put the ladder on the sidewalk... ouch!", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1324/720312971_238432fc34_o.jpg", "secret": "f29f97da2f", "media": "photo", "latitude": "0", "id": "720312971", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 11:16:36", "license": "1", "title": "Crepe Paper and Streamers", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1093/721185154_fe143cc8e8_o.jpg", "secret": "8b7bb2b6c3", "media": "photo", "latitude": "0", "id": "721185154", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 11:22:32", "license": "1", "title": "Not everyone loves fire trucks!", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1258/721181764_b6f6755850_o.jpg", "secret": "dcefa4b47f", "media": "photo", "latitude": "0", "id": "721181764", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 11:23:21", "license": "1", "title": "Even dolls get to ride...", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1392/721177400_f6b589b999_o.jpg", "secret": "d319106395", "media": "photo", "latitude": "0", "id": "721177400", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 11:24:55", "license": "1", "title": "Bye Dad!", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1220/720295649_36fb60864e_o.jpg", "secret": "1acaaee373", "media": "photo", "latitude": "0", "id": "720295649", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 11:30:21", "license": "1", "title": "Kenny driving", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1413/721169002_feb3888af9_o.jpg", "secret": "528131f07d", "media": "photo", "latitude": "0", "id": "721169002", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 11:42:04", "license": "1", "title": "31", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1364/720287863_e62e7d1373_o.jpg", "secret": "c88e973968", "media": "photo", "latitude": "0", "id": "720287863", "tags": "favorites parade firetruck faves fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 11:45:07", "license": "1", "title": "Mike", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1305/721162444_3b0b01a303_o.jpg", "secret": "c82d788dfe", "media": "photo", "latitude": "0", "id": "721162444", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 11:49:00", "license": "1", "title": "Father and Son", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1079/721159626_9e0a58b7b3_o.jpg", "secret": "742eb90daf", "media": "photo", "latitude": "0", "id": "721159626", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 12:16:18", "license": "1", "title": "Chattering afterwards", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1071/720279415_6aef0ae40c_o.jpg", "secret": "cea19d6b10", "media": "photo", "latitude": "0", "id": "720279415", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-04 12:28:28", "license": "1", "title": "Such loving boys", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1273/720275789_d6b5b00684_o.jpg", "secret": "d108f33533", "media": "photo", "latitude": "0", "id": "720275789", "tags": "favorites parade firetruck faves fireengine 4thofjuly independenceday brookline bfc 2007 bestof2007"}, {"datetaken": "2007-07-04 12:28:31", "license": "1", "title": "Group Shot", "text": "", "album_id": "72157600650711694", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1154/720272837_2b95317d8c_o.jpg", "secret": "2406de390a", "media": "photo", "latitude": "0", "id": "720272837", "tags": "parade firetruck fireengine 4thofjuly independenceday brookline bfc"}, {"datetaken": "2007-07-03 20:57:57", "license": "1", "title": "All Hail the Boat Drink Queen", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1262/722466596_33287ef560_o.jpg", "secret": "21353cd25e", "media": "photo", "latitude": "0", "id": "722466596", "tags": ""}, {"datetaken": "2007-07-03 21:24:32", "license": "1", "title": "The Ladies", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1033/721591745_8cfd223bbd_o.jpg", "secret": "34ce3f75e1", "media": "photo", "latitude": "0", "id": "721591745", "tags": ""}, {"datetaken": "2007-07-03 21:26:39", "license": "1", "title": "The Gentlemens", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1147/721592733_ed32206cdf_o.jpg", "secret": "4b3d7a5583", "media": "photo", "latitude": "0", "id": "721592733", "tags": ""}, {"datetaken": "2007-07-03 21:59:13", "license": "1", "title": "Captain Darby", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1230/721593423_4cd992302c_o.jpg", "secret": "941d93106a", "media": "photo", "latitude": "0", "id": "721593423", "tags": ""}, {"datetaken": "2007-07-03 22:01:46", "license": "1", "title": "Yacht Rock Margaritas", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1403/721593897_dd8bd98d69_o.jpg", "secret": "303f94dc2f", "media": "photo", "latitude": "0", "id": "721593897", "tags": ""}, {"datetaken": "2007-07-03 22:04:01", "license": "1", "title": "Tortilla Warming", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1175/721594867_0f8a430380_o.jpg", "secret": "2175d381f7", "media": "photo", "latitude": "0", "id": "721594867", "tags": ""}, {"datetaken": "2007-07-03 22:06:38", "license": "1", "title": "Dance Time...", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1350/721595469_9bcea5fc35_o.jpg", "secret": "d9b1434ee0", "media": "photo", "latitude": "0", "id": "721595469", "tags": ""}, {"datetaken": "2007-07-03 22:11:46", "license": "1", "title": "Bobby & Melissa", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1003/721595953_eb4ba76157_o.jpg", "secret": "3940fdc5ec", "media": "photo", "latitude": "0", "id": "721595953", "tags": ""}, {"datetaken": "2007-07-03 22:19:35", "license": "1", "title": "Bobby P, Buffet Commentator", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1089/722472510_79d00fddd3_o.jpg", "secret": "3367f3b4d6", "media": "photo", "latitude": "0", "id": "722472510", "tags": ""}, {"datetaken": "2007-07-03 22:41:28", "license": "1", "title": "Dinner Time", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1223/721597791_dbe1758fc6_o.jpg", "secret": "44f9676952", "media": "photo", "latitude": "0", "id": "721597791", "tags": ""}, {"datetaken": "2007-07-03 22:58:51", "license": "1", "title": "Dance Time", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1214/721598385_7c6e4a8756_o.jpg", "secret": "06a026a6d1", "media": "photo", "latitude": "0", "id": "721598385", "tags": ""}, {"datetaken": "2007-07-03 23:14:35", "license": "1", "title": "Tristan", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1384/722474596_fe8eb486fc_o.jpg", "secret": "1f45340bb6", "media": "photo", "latitude": "0", "id": "722474596", "tags": ""}, {"datetaken": "2007-07-03 23:16:18", "license": "1", "title": "Broken Toe Blues", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1377/721599567_704ffa9677_o.jpg", "secret": "93d311d0a3", "media": "photo", "latitude": "0", "id": "721599567", "tags": ""}, {"datetaken": "2007-07-03 23:18:54", "license": "1", "title": "", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1062/722475884_8d8fee0db1_o.jpg", "secret": "0a2a633358", "media": "photo", "latitude": "0", "id": "722475884", "tags": ""}, {"datetaken": "2007-07-03 23:19:01", "license": "1", "title": "", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1174/721600769_1ff73a32e2_o.jpg", "secret": "faae6629f9", "media": "photo", "latitude": "0", "id": "721600769", "tags": ""}, {"datetaken": "2007-07-03 23:21:03", "license": "1", "title": "Baseball Bat Guitar Solo", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1174/721601877_fbeee29e67_o.jpg", "secret": "bc7eaa8a11", "media": "photo", "latitude": "0", "id": "721601877", "tags": ""}, {"datetaken": "2007-07-03 23:24:25", "license": "1", "title": "Tristan...", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1248/721602577_8e13ef6aec_o.jpg", "secret": "6ad8b2005a", "media": "photo", "latitude": "0", "id": "721602577", "tags": ""}, {"datetaken": "2007-07-03 23:43:47", "license": "1", "title": "", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1105/721604567_f1e1a31a5f_o.jpg", "secret": "db684980e4", "media": "photo", "latitude": "0", "id": "721604567", "tags": ""}, {"datetaken": "2007-07-03 23:51:07", "license": "1", "title": "Keren...", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1176/722480706_e522683ee6_o.jpg", "secret": "8727267fd1", "media": "photo", "latitude": "0", "id": "722480706", "tags": ""}, {"datetaken": "2007-07-04 00:00:35", "license": "1", "title": "That Swarthy Englishman...", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1143/721605769_b9a8076d8e_o.jpg", "secret": "ac9311b1bb", "media": "photo", "latitude": "0", "id": "721605769", "tags": ""}, {"datetaken": "2007-07-04 00:00:40", "license": "1", "title": "Clarke...", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1315/722481872_f6ceb53336_o.jpg", "secret": "3fe16cff09", "media": "photo", "latitude": "0", "id": "722481872", "tags": ""}, {"datetaken": "2007-07-04 00:13:17", "license": "1", "title": "The Infamous English Ho-Down", "text": "", "album_id": "72157600652875158", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1027/722482102_8782bda826_o.jpg", "secret": "07916a2a2b", "media": "photo", "latitude": "0", "id": "722482102", "tags": ""}, {"datetaken": "2007-07-04 18:38:19", "license": "3", "title": "Come here Grandma - just a little closer.", "text": "", "album_id": "72157600654732083", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1201/722889351_ba5047ad7d_o.jpg", "secret": "00e330bd57", "media": "photo", "latitude": "0", "id": "722889351", "tags": "water hose lane 4thofjuly"}, {"datetaken": "2007-07-04 18:38:26", "license": "3", "title": "I want a drink", "text": "", "album_id": "72157600654732083", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1383/723761948_cb5d5f617e_o.jpg", "secret": "a4ead7ff7f", "media": "photo", "latitude": "0", "id": "723761948", "tags": "water hose lane 4thofjuly"}, {"datetaken": "2007-07-04 18:39:12", "license": "3", "title": "Trying to get Daddy wet", "text": "", "album_id": "72157600654732083", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1063/722890243_1e44cbc117_o.jpg", "secret": "4e0abd3a08", "media": "photo", "latitude": "0", "id": "722890243", "tags": "water tom hose lane 4thofjuly"}, {"datetaken": "2007-07-04 18:39:44", "license": "3", "title": "Come here. You need to get wet!", "text": "", "album_id": "72157600654732083", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1389/723762726_b3d52d8854_o.jpg", "secret": "f701c80908", "media": "photo", "latitude": "0", "id": "723762726", "tags": "water hose lane 4thofjuly"}, {"datetaken": "2007-07-04 18:42:25", "license": "3", "title": "Lane trying to get Daddy wet", "text": "", "album_id": "72157600654732083", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1147/723762938_99436183df_o.jpg", "secret": "9e4812fd75", "media": "photo", "latitude": "0", "id": "723762938", "tags": "water tom hose lane 4thofjuly"}, {"datetaken": "2007-07-04 18:43:18", "license": "3", "title": "I need more water", "text": "", "album_id": "72157600654732083", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1131/722891257_3f6288752a_o.jpg", "secret": "f92ab01e3f", "media": "photo", "latitude": "0", "id": "722891257", "tags": "water hose lane 4thofjuly"}, {"datetaken": "2007-07-04 18:44:56", "license": "3", "title": "Shelly - beautiful even in the heat", "text": "", "album_id": "72157600654732083", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1224/722891599_f02b83aaba_o.jpg", "secret": "4ce979b7e8", "media": "photo", "latitude": "0", "id": "722891599", "tags": "shelly 4thofjuly"}, {"datetaken": "2007-07-04 18:48:00", "license": "3", "title": "Lane trying to get everyone wet", "text": "", "album_id": "72157600654732083", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1397/723764094_8d450a29a4_o.jpg", "secret": "62dbf4b4ef", "media": "photo", "latitude": "0", "id": "723764094", "tags": "water hose lane 4thofjuly"}, {"datetaken": "2007-07-04 18:49:24", "license": "3", "title": "Daddy supervising Lane with the hose", "text": "", "album_id": "72157600654732083", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1108/722892137_d03c613fd1_o.jpg", "secret": "9bd300379a", "media": "photo", "latitude": "0", "id": "722892137", "tags": "tom lane 4thofjuly"}, {"datetaken": "2007-07-04 18:56:26", "license": "3", "title": "Grandma Doot Doot and Lane", "text": "", "album_id": "72157600654732083", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1287/722892459_0efffcace0_o.jpg", "secret": "7be5fa8236", "media": "photo", "latitude": "0", "id": "722892459", "tags": "grandma lane 4thofjuly"}, {"datetaken": "2007-07-04 18:56:40", "license": "3", "title": "Grandma Doot Doot and Lane - Say Cheese!", "text": "", "album_id": "72157600654732083", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1376/723764922_305f31e16b_o.jpg", "secret": "4a4f0ea6d6", "media": "photo", "latitude": "0", "id": "723764922", "tags": "grandma lane 4thofjuly"}, {"datetaken": "2007-07-04 20:01:45", "license": "3", "title": "Mom - more - harder - faster", "text": "", "album_id": "72157600654732083", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1352/722892963_ce1d8c6e2b_o.jpg", "secret": "0d49d00c89", "media": "photo", "latitude": "0", "id": "722892963", "tags": "lane shelly 4thofjuly"}, {"datetaken": "2007-07-04 20:01:56", "license": "3", "title": "Push me harder", "text": "", "album_id": "72157600654732083", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1254/722893291_509da4b1de_o.jpg", "secret": "801f839b89", "media": "photo", "latitude": "0", "id": "722893291", "tags": "lane 4thofjuly"}, {"datetaken": "2007-07-04 20:02:18", "license": "3", "title": "Look at me", "text": "", "album_id": "72157600654732083", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1257/723765882_9e8caff422_o.jpg", "secret": "e65010be47", "media": "photo", "latitude": "0", "id": "723765882", "tags": "swing lane 4thofjuly"}, {"datetaken": "2007-07-04 20:02:31", "license": "3", "title": "Higher Faster", "text": "", "album_id": "72157600654732083", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1277/723766206_97a3d53848_o.jpg", "secret": "abce9870c6", "media": "photo", "latitude": "0", "id": "723766206", "tags": "swing lane 4thofjuly"}, {"datetaken": "2007-07-04 20:08:25", "license": "3", "title": "Daddy pointing out fireworks to Lane", "text": "", "album_id": "72157600654732083", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1113/723766498_a3e195823a_o.jpg", "secret": "705b71d849", "media": "photo", "latitude": "0", "id": "723766498", "tags": "tom lane 4thofjuly"}, {"datetaken": "2007-07-04 20:15:29", "license": "3", "title": "Shelly, Lane, and Grandma Donna watching the fireworks", "text": "", "album_id": "72157600654732083", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1433/722894605_89283b55bd_o.jpg", "secret": "3a554ac5f2", "media": "photo", "latitude": "0", "id": "722894605", "tags": "donna lane shelly 4thofjuly"}, {"datetaken": "2007-07-04 21:07:14", "license": "3", "title": "4th of July on Hubbard Ave., San Leandro", "text": "", "album_id": "72157600654732083", "longitude": "-122.158012", "url_o": "https://farm2.staticflickr.com/1262/723766974_89828a453a_o.jpg", "secret": "cb014fcefd", "media": "photo", "latitude": "37.692786", "id": "723766974", "tags": "4thofjuly"}, {"datetaken": "2006-07-02 21:21:20", "license": "3", "title": "Road to the Hot Springs on the Rio Grande", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/234380696_52d0a82baa_o.jpg", "secret": "52d0a82baa", "media": "photo", "latitude": "0", "id": "234380696", "tags": ""}, {"datetaken": "2006-07-02 21:22:51", "license": "3", "title": "Hot Springs on the Rio Grande", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/234380883_824f23e563_o.jpg", "secret": "824f23e563", "media": "photo", "latitude": "0", "id": "234380883", "tags": ""}, {"datetaken": "2006-07-02 22:32:48", "license": "3", "title": "Hot Springs on the Rio Grande", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/234380987_ee42b75a00_o.jpg", "secret": "ee42b75a00", "media": "photo", "latitude": "0", "id": "234380987", "tags": ""}, {"datetaken": "2006-07-03 23:27:58", "license": "3", "title": "4th of July Parade - Arroyo Seco, NM", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/234381129_bc93b015b0_o.jpg", "secret": "bc93b015b0", "media": "photo", "latitude": "0", "id": "234381129", "tags": ""}, {"datetaken": "2006-07-03 23:31:15", "license": "3", "title": "4th of July Parade - Arroyo Seco, NM", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/234381232_58b21a001d_o.jpg", "secret": "58b21a001d", "media": "photo", "latitude": "0", "id": "234381232", "tags": ""}, {"datetaken": "2006-07-03 23:33:41", "license": "3", "title": "4th of July Parade - Arroyo Seco, NM", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/234381359_0b65973930_o.jpg", "secret": "0b65973930", "media": "photo", "latitude": "0", "id": "234381359", "tags": ""}, {"datetaken": "2006-07-03 23:39:04", "license": "3", "title": "4th of July Parade - Arroyo Seco, NM", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/234381520_fb414b3bdb_o.jpg", "secret": "fb414b3bdb", "media": "photo", "latitude": "0", "id": "234381520", "tags": ""}, {"datetaken": "2006-07-03 23:44:38", "license": "3", "title": "4th of July Parade - Arroyo Seco, NM", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/234381671_f4d5345d52_o.jpg", "secret": "f4d5345d52", "media": "photo", "latitude": "0", "id": "234381671", "tags": ""}, {"datetaken": "2006-07-03 23:58:30", "license": "3", "title": "Sanjay and Marah", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/234381816_e48654744e_o.jpg", "secret": "e48654744e", "media": "photo", "latitude": "0", "id": "234381816", "tags": ""}, {"datetaken": "2006-07-04 00:49:48", "license": "3", "title": "Sanjay and Marah's Place", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/234381959_96dee7f562_o.jpg", "secret": "96dee7f562", "media": "photo", "latitude": "0", "id": "234381959", "tags": ""}, {"datetaken": "2006-07-04 00:50:46", "license": "3", "title": "Sanjay and Marah's Place", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/93/234382072_c51effa198_o.jpg", "secret": "c51effa198", "media": "photo", "latitude": "0", "id": "234382072", "tags": ""}, {"datetaken": "2006-07-04 00:53:38", "license": "3", "title": "Sanjay and Marah's Place", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/234382235_da506d7519_o.jpg", "secret": "da506d7519", "media": "photo", "latitude": "0", "id": "234382235", "tags": ""}, {"datetaken": "2006-07-04 07:31:35", "license": "3", "title": "4th of July Party", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/234382398_acd9786c80_o.jpg", "secret": "acd9786c80", "media": "photo", "latitude": "0", "id": "234382398", "tags": ""}, {"datetaken": "2006-07-04 07:32:16", "license": "3", "title": "4th of July Party", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/234382312_d01b700792_o.jpg", "secret": "d01b700792", "media": "photo", "latitude": "0", "id": "234382312", "tags": ""}, {"datetaken": "2006-07-04 07:43:39", "license": "3", "title": "Photo fun", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/234382439_12510ace75_o.jpg", "secret": "12510ace75", "media": "photo", "latitude": "0", "id": "234382439", "tags": ""}, {"datetaken": "2006-07-04 07:44:01", "license": "3", "title": "Photo fun", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/234382518_0e179efbba_o.jpg", "secret": "0e179efbba", "media": "photo", "latitude": "0", "id": "234382518", "tags": ""}, {"datetaken": "2006-07-04 08:07:09", "license": "3", "title": "4th of July", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/234382583_8fbf94d9b3_o.jpg", "secret": "8fbf94d9b3", "media": "photo", "latitude": "0", "id": "234382583", "tags": ""}, {"datetaken": "2006-07-04 08:07:27", "license": "3", "title": "4th of July", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/234382628_03659e68d8_o.jpg", "secret": "03659e68d8", "media": "photo", "latitude": "0", "id": "234382628", "tags": ""}, {"datetaken": "2006-07-04 18:28:08", "license": "3", "title": "Taos, NM", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/234382703_3fa5d361df_o.jpg", "secret": "3fa5d361df", "media": "photo", "latitude": "0", "id": "234382703", "tags": ""}, {"datetaken": "2006-07-04 18:43:06", "license": "3", "title": "Earth Ship Taos, NM", "text": "", "album_id": "72157594269296716", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/234382769_cd221ed820_o.jpg", "secret": "cd221ed820", "media": "photo", "latitude": "0", "id": "234382769", "tags": ""}, {"datetaken": "2008-07-04 22:12:42", "license": "3", "title": "IMG_2406", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3078/2638462487_03b4b6a7c6_o.jpg", "secret": "96affea142", "media": "photo", "latitude": "0", "id": "2638462487", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:21:38", "license": "3", "title": "IMG_2435", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3061/2638459839_dd8d230c64_o.jpg", "secret": "fbf8667163", "media": "photo", "latitude": "0", "id": "2638459839", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:22:04", "license": "3", "title": "IMG_2442", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3019/2638462417_76f2b63f53_o.jpg", "secret": "806e201454", "media": "photo", "latitude": "0", "id": "2638462417", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:22:09", "license": "3", "title": "IMG_2444", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3020/2638459931_2de723d54f_o.jpg", "secret": "98452d3e5d", "media": "photo", "latitude": "0", "id": "2638459931", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:22:11", "license": "3", "title": "IMG_2445", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3108/2639289828_d174d1596f_o.jpg", "secret": "2dd7bbb976", "media": "photo", "latitude": "0", "id": "2639289828", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:22:12", "license": "3", "title": "IMG_2446", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3011/2639289882_1601527a60_o.jpg", "secret": "db50b1f596", "media": "photo", "latitude": "0", "id": "2639289882", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:23:48", "license": "3", "title": "IMG_2470", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3051/2639292262_4b858eca11_o.jpg", "secret": "e1ce03d476", "media": "photo", "latitude": "0", "id": "2639292262", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:23:53", "license": "3", "title": "IMG_2471", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3022/2638460125_0bb81c3a8f_o.jpg", "secret": "6dc93f6257", "media": "photo", "latitude": "0", "id": "2638460125", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:24:56", "license": "3", "title": "IMG_2482", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3182/2639292130_1568d55d12_o.jpg", "secret": "f3318498a8", "media": "photo", "latitude": "0", "id": "2639292130", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:25:42", "license": "3", "title": "IMG_2487", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3169/2639290060_20a926eb6c_o.jpg", "secret": "a0dd019a68", "media": "photo", "latitude": "0", "id": "2639290060", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:25:51", "license": "3", "title": "IMG_2488", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3145/2639292028_aaedfc390f_o.jpg", "secret": "47eb151d9a", "media": "photo", "latitude": "0", "id": "2639292028", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:26:10", "license": "3", "title": "IMG_2493", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3019/2638460297_f560278b83_o.jpg", "secret": "ccaeefcca7", "media": "photo", "latitude": "0", "id": "2638460297", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:26:34", "license": "3", "title": "IMG_2499", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3076/2639291948_c69442dda5_o.jpg", "secret": "df68177c02", "media": "photo", "latitude": "0", "id": "2639291948", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:27:30", "license": "3", "title": "IMG_2519", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3056/2638460359_5eb1124055_o.jpg", "secret": "cd2c6ffae1", "media": "photo", "latitude": "0", "id": "2638460359", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:27:43", "license": "3", "title": "IMG_2524", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3113/2638460477_d42ec5afb4_o.jpg", "secret": "f6c3816d98", "media": "photo", "latitude": "0", "id": "2638460477", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:28:09", "license": "3", "title": "IMG_2535", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3001/2638461737_bd1c657a3d_o.jpg", "secret": "55fdcec88d", "media": "photo", "latitude": "0", "id": "2638461737", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:29:11", "license": "3", "title": "IMG_2544", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3091/2639291446_96e97d58ed_o.jpg", "secret": "fdc91507e3", "media": "photo", "latitude": "0", "id": "2639291446", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:34:27", "license": "3", "title": "IMG_2559", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3016/2639290368_780b700a53_o.jpg", "secret": "d1087a3bb1", "media": "photo", "latitude": "0", "id": "2639290368", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:35:27", "license": "3", "title": "IMG_2564", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3133/2638460585_c7a211f997_o.jpg", "secret": "6efafe7455", "media": "photo", "latitude": "0", "id": "2638460585", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:37:25", "license": "3", "title": "IMG_2569", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3140/2638460683_743d5c7a3f_o.jpg", "secret": "bc037b60e0", "media": "photo", "latitude": "0", "id": "2638460683", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:39:51", "license": "3", "title": "IMG_2574", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3190/2639290600_9f8d8091ee_o.jpg", "secret": "dfaea7dafa", "media": "photo", "latitude": "0", "id": "2639290600", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:44:44", "license": "3", "title": "IMG_2582", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3041/2639291376_22c1dff2b5_o.jpg", "secret": "d37a974a37", "media": "photo", "latitude": "0", "id": "2639291376", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:47:46", "license": "3", "title": "IMG_2587", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3064/2639291174_766c33d168_o.jpg", "secret": "3a0f1dbb82", "media": "photo", "latitude": "0", "id": "2639291174", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:47:49", "license": "3", "title": "IMG_2589", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3184/2639290698_d28748ac4f_o.jpg", "secret": "5cb09f5a7e", "media": "photo", "latitude": "0", "id": "2639290698", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:48:38", "license": "3", "title": "IMG_2591", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3125/2638460957_5ee799e48e_o.jpg", "secret": "214e93927e", "media": "photo", "latitude": "0", "id": "2638460957", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:48:40", "license": "3", "title": "IMG_2592", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3178/2639291000_5e56c954c6_o.jpg", "secret": "9ebf3e3e32", "media": "photo", "latitude": "0", "id": "2639291000", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2008-07-04 22:48:46", "license": "3", "title": "IMG_2593", "text": "", "album_id": "72157605992804699", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3149/2639291094_0f1b56805d_o.jpg", "secret": "9a88740c5b", "media": "photo", "latitude": "0", "id": "2639291094", "tags": "fireworks july4th 4thofjuly"}, {"datetaken": "2007-07-03 23:17:31", "license": "1", "title": "Brandie mugs for the iPhone", "text": "", "album_id": "72157600691710127", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1389/742567947_b2e2186451_o.jpg", "secret": "82aa1c3a6e", "media": "photo", "latitude": "0", "id": "742567947", "tags": "4thofjuly independanceday"}, {"datetaken": "2007-07-03 23:44:52", "license": "1", "title": "Hold em", "text": "", "album_id": "72157600691710127", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1252/743433008_5601d0b6c9_o.jpg", "secret": "edf24e624b", "media": "photo", "latitude": "0", "id": "743433008", "tags": "4thofjuly independanceday"}, {"datetaken": "2007-07-04 17:46:06", "license": "1", "title": "Ward, Anne, and Chelsea", "text": "", "album_id": "72157600691710127", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1119/742574323_4236753316_o.jpg", "secret": "118ba23a3b", "media": "photo", "latitude": "0", "id": "742574323", "tags": "4thofjuly independanceday"}, {"datetaken": "2007-07-04 17:46:32", "license": "1", "title": "Andrew with the fade away", "text": "", "album_id": "72157600691710127", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1375/742579345_40789bfb87_o.jpg", "secret": "6a54b4b82d", "media": "photo", "latitude": "0", "id": "742579345", "tags": "4thofjuly independanceday"}, {"datetaken": "2007-07-04 17:47:14", "license": "1", "title": "Manly men", "text": "", "album_id": "72157600691710127", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1372/742584521_68c5f05fbd_o.jpg", "secret": "1aaebdc87a", "media": "photo", "latitude": "0", "id": "742584521", "tags": "4thofjuly independanceday"}, {"datetaken": "2007-07-04 17:48:26", "license": "1", "title": "Curtis gets kissy", "text": "", "album_id": "72157600691710127", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1006/742589253_d4f67480db_o.jpg", "secret": "baf6aac842", "media": "photo", "latitude": "0", "id": "742589253", "tags": "4thofjuly independanceday"}, {"datetaken": "2007-07-04 17:49:10", "license": "1", "title": "Alyse and Justin mug", "text": "", "album_id": "72157600691710127", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1260/743457202_1172649b1b_o.jpg", "secret": "b5b3564a48", "media": "photo", "latitude": "0", "id": "743457202", "tags": "4thofjuly independanceday"}, {"datetaken": "2007-07-04 17:51:19", "license": "1", "title": "Justin, Me, Alyse", "text": "", "album_id": "72157600691710127", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1130/743462166_b40718f816_o.jpg", "secret": "0420a52910", "media": "photo", "latitude": "0", "id": "743462166", "tags": "cameron 4thofjuly independanceday"}, {"datetaken": "2007-07-04 17:51:57", "license": "1", "title": "Height contest: Alyse wins", "text": "", "album_id": "72157600691710127", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1398/743467308_bea6fa159b_o.jpg", "secret": "c23d85ed8f", "media": "photo", "latitude": "0", "id": "743467308", "tags": "4thofjuly independanceday"}, {"datetaken": "2007-07-04 17:52:38", "license": "1", "title": "Height contest: I win", "text": "", "album_id": "72157600691710127", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1284/743472452_902859a0d1_o.jpg", "secret": "b71455d626", "media": "photo", "latitude": "0", "id": "743472452", "tags": "4thofjuly independanceday"}, {"datetaken": "2007-07-04 17:53:23", "license": "1", "title": "Nothin but net", "text": "", "album_id": "72157600691710127", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1227/742613483_7a0cd0b216_o.jpg", "secret": "5354776651", "media": "photo", "latitude": "0", "id": "742613483", "tags": "4thofjuly independanceday"}, {"datetaken": "2007-07-04 17:53:48", "license": "1", "title": "Water polo", "text": "", "album_id": "72157600691710127", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1342/742618535_0af06f2260_o.jpg", "secret": "0170e899e6", "media": "photo", "latitude": "0", "id": "742618535", "tags": "4thofjuly independanceday"}, {"datetaken": "2007-07-04 17:59:27", "license": "1", "title": "Brandie, Alyse, Susie", "text": "", "album_id": "72157600691710127", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1088/742623691_dd8b51d8b1_o.jpg", "secret": "2f6fbe4ee0", "media": "photo", "latitude": "0", "id": "742623691", "tags": "4thofjuly independanceday"}, {"datetaken": "2007-07-04 17:59:46", "license": "1", "title": "Girly girls", "text": "", "album_id": "72157600691710127", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1002/742628413_c70e442dca_o.jpg", "secret": "d16c825069", "media": "photo", "latitude": "0", "id": "742628413", "tags": "4thofjuly independanceday"}, {"datetaken": "2006-07-04 20:53:06", "license": "1", "title": "Diet Coke and Mentos 1", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/184952541_4f89509d1a_o.jpg", "secret": "4f89509d1a", "media": "photo", "latitude": "0", "id": "184952541", "tags": "night colorado dietcoke mentos coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 20:53:08", "license": "1", "title": "Look out! Diet Coke and Mentos!", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/184952855_309b1168a4_o.jpg", "secret": "309b1168a4", "media": "photo", "latitude": "0", "id": "184952855", "tags": "night colorado dietcoke mentos coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 21:12:35", "license": "1", "title": "Diet Coke and Mentos 2", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/184954004_1783b570f9_o.jpg", "secret": "1783b570f9", "media": "photo", "latitude": "0", "id": "184954004", "tags": "night colorado dietcoke mentos coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 21:32:37", "license": "1", "title": "IMG_5284.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/184954090_57a2d94071_o.jpg", "secret": "57a2d94071", "media": "photo", "latitude": "0", "id": "184954090", "tags": "night colorado fireworks coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 21:38:32", "license": "1", "title": "IMG_5316.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/184955159_089bde3f25_o.jpg", "secret": "089bde3f25", "media": "photo", "latitude": "0", "id": "184955159", "tags": "night colorado fireworks coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 21:38:57", "license": "1", "title": "IMG_5319.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/184956152_80b99e4874_o.jpg", "secret": "80b99e4874", "media": "photo", "latitude": "0", "id": "184956152", "tags": "night colorado fireworks coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 21:40:03", "license": "1", "title": "IMG_5328.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/184956350_861f5091b3_o.jpg", "secret": "861f5091b3", "media": "photo", "latitude": "0", "id": "184956350", "tags": "night colorado fireworks coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 21:42:44", "license": "1", "title": "IMG_5351.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/184957188_3511a288e5_o.jpg", "secret": "3511a288e5", "media": "photo", "latitude": "0", "id": "184957188", "tags": "night colorado fireworks coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 21:43:10", "license": "1", "title": "IMG_5356.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/184958181_709ef328cb_o.jpg", "secret": "709ef328cb", "media": "photo", "latitude": "0", "id": "184958181", "tags": "night colorado fireworks coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 21:45:11", "license": "1", "title": "IMG_5374.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/184958292_be04ce59eb_o.jpg", "secret": "be04ce59eb", "media": "photo", "latitude": "0", "id": "184958292", "tags": "night colorado fireworks coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 21:48:17", "license": "1", "title": "IMG_5399.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/184958561_5d78404cf6_o.jpg", "secret": "5d78404cf6", "media": "photo", "latitude": "0", "id": "184958561", "tags": "night colorado fireworks coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 21:49:46", "license": "1", "title": "IMG_5409.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/184959436_18db900654_o.jpg", "secret": "18db900654", "media": "photo", "latitude": "0", "id": "184959436", "tags": "night colorado fireworks coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 21:55:39", "license": "1", "title": "IMG_5438.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/184960295_10bf89f468_o.jpg", "secret": "10bf89f468", "media": "photo", "latitude": "0", "id": "184960295", "tags": "night colorado fireworks coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 21:56:42", "license": "1", "title": "IMG_5445.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/184961055_3b96a1acf2_o.jpg", "secret": "3b96a1acf2", "media": "photo", "latitude": "0", "id": "184961055", "tags": "night colorado fireworks coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 22:05:01", "license": "1", "title": "Spinin' Sparklers", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/184961974_476bbd367e_o.jpg", "secret": "476bbd367e", "media": "photo", "latitude": "0", "id": "184961974", "tags": "longexposure night colorado sparklers coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 22:05:51", "license": "1", "title": "Lights Running Around the Yard", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/184962930_58474c5505_o.jpg", "secret": "58474c5505", "media": "photo", "latitude": "0", "id": "184962930", "tags": "longexposure night colorado sparklers coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 22:07:23", "license": "1", "title": "IMG_5473.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/184963791_cbabfab030_o.jpg", "secret": "cbabfab030", "media": "photo", "latitude": "0", "id": "184963791", "tags": "longexposure night colorado sparklers coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 22:08:38", "license": "1", "title": "IMG_5478.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/184964524_ca0dde54ec_o.jpg", "secret": "ca0dde54ec", "media": "photo", "latitude": "0", "id": "184964524", "tags": "longexposure night colorado sparklers coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 22:09:05", "license": "1", "title": "IMG_5480.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/184965152_9001053426_o.jpg", "secret": "9001053426", "media": "photo", "latitude": "0", "id": "184965152", "tags": "longexposure night colorado sparklers coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 22:09:11", "license": "1", "title": "IMG_5481.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/184965932_7957b52ea6_o.jpg", "secret": "7957b52ea6", "media": "photo", "latitude": "0", "id": "184965932", "tags": "longexposure night colorado sparklers coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 22:23:52", "license": "1", "title": "IMG_5488.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/184966739_3fd7d04af5_o.jpg", "secret": "3fd7d04af5", "media": "photo", "latitude": "0", "id": "184966739", "tags": "night colorado dietcoke mentos coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 22:23:59", "license": "1", "title": "IMG_5489.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/184967631_00ea881f4c_o.jpg", "secret": "00ea881f4c", "media": "photo", "latitude": "0", "id": "184967631", "tags": "night colorado dietcoke mentos coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 22:28:27", "license": "1", "title": "IMG_5493.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/184967958_69a8a2903f_o.jpg", "secret": "69a8a2903f", "media": "photo", "latitude": "0", "id": "184967958", "tags": "night colorado dietcoke mentos coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 22:28:59", "license": "1", "title": "IMG_5495.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/184968319_3883a787fa_o.jpg", "secret": "3883a787fa", "media": "photo", "latitude": "0", "id": "184968319", "tags": "night colorado dietcoke mentos coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 22:32:49", "license": "1", "title": "IMG_5496.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/184969230_8cb7b09f7b_o.jpg", "secret": "8cb7b09f7b", "media": "photo", "latitude": "0", "id": "184969230", "tags": "night colorado dietcoke mentos coloradosprings 4thofjuly"}, {"datetaken": "2006-07-04 22:32:59", "license": "1", "title": "IMG_5497.JPG", "text": "", "album_id": "72157594192023605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/184969707_c1adb2f529_o.jpg", "secret": "c1adb2f529", "media": "photo", "latitude": "0", "id": "184969707", "tags": "night colorado dietcoke mentos coloradosprings 4thofjuly"}, {"datetaken": "2007-07-01 01:23:46", "license": "4", "title": "Dad, Lily, and Oscar Prepping for Parade", "text": "", "album_id": "72157600715772999", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1258/754908604_85ff9a6619_o.jpg", "secret": "dee483fa8d", "media": "photo", "latitude": "0", "id": "754908604", "tags": "holiday oscar lily phil parade july4th provo 2007 freedomfestival"}, {"datetaken": "2007-07-01 01:23:55", "license": "4", "title": "Black's - Our partners at the Parade", "text": "", "album_id": "72157600715772999", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1052/754910676_cc3d6534f8_o.jpg", "secret": "9cc2186b46", "media": "photo", "latitude": "0", "id": "754910676", "tags": "holiday parade blacks july4th provo 2007 freedomfestival"}, {"datetaken": "2007-07-01 01:24:02", "license": "4", "title": "Boys Preparing for the Parade", "text": "", "album_id": "72157600715772999", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1150/754059687_71bd999451_o.jpg", "secret": "d25543ae43", "media": "photo", "latitude": "0", "id": "754059687", "tags": "holiday oscar parade bradley nathaniel july4th provo 2007 freedomfestival"}, {"datetaken": "2007-07-01 01:24:13", "license": "4", "title": "Just Chillin'", "text": "", "album_id": "72157600715772999", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1437/754913460_6967d7009a_o.jpg", "secret": "1d0e5367db", "media": "photo", "latitude": "0", "id": "754913460", "tags": "holiday parade lindsey july4th provo 2007 freedomfestival"}, {"datetaken": "2007-07-01 01:24:25", "license": "4", "title": "Relaxin'", "text": "", "album_id": "72157600715772999", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1118/754914834_0e4b35370e_o.jpg", "secret": "47850882a0", "media": "photo", "latitude": "0", "id": "754914834", "tags": "holiday lily parade july4th provo 2007 freedomfestival"}, {"datetaken": "2007-07-01 01:24:41", "license": "4", "title": "Oscar", "text": "", "album_id": "72157600715772999", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1155/754916620_7b27733bd0_o.jpg", "secret": "d18c7bff30", "media": "photo", "latitude": "0", "id": "754916620", "tags": "holiday oscar parade july4th provo 2007 freedomfestival"}, {"datetaken": "2007-07-01 01:24:51", "license": "4", "title": "Get out of my way!", "text": "", "album_id": "72157600715772999", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1181/754917990_b8b2ea37ec_o.jpg", "secret": "218eeb269e", "media": "photo", "latitude": "0", "id": "754917990", "tags": "holiday oscar parade july4th provo 2007 freedomfestival"}, {"datetaken": "2007-07-01 01:25:47", "license": "4", "title": "Sittin', Waitin', Let's Go", "text": "", "album_id": "72157600715772999", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1370/754067151_57c95a3ec7_o.jpg", "secret": "a02b2d035b", "media": "photo", "latitude": "0", "id": "754067151", "tags": "holiday oscar parade july4th provo 2007 freedomfestival"}, {"datetaken": "2007-07-01 01:38:49", "license": "4", "title": "Freedom Festival Kid's Parade Float Winner", "text": "", "album_id": "72157600715772999", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1382/754068619_ecfc7d0d0f_o.jpg", "secret": "e47f6b70d2", "media": "photo", "latitude": "0", "id": "754068619", "tags": "holiday parade july4th provo 2007 freedomfestival floatwinner"}, {"datetaken": "2007-07-01 01:39:11", "license": "4", "title": "He's off!", "text": "", "album_id": "72157600715772999", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1288/754922338_f0e7eec0ab_o.jpg", "secret": "a02ea28c15", "media": "photo", "latitude": "0", "id": "754922338", "tags": "holiday oscar parade july4th provo 2007 freedomfestival"}, {"datetaken": "2007-07-01 01:39:52", "license": "4", "title": "We're losing him.", "text": "", "album_id": "72157600715772999", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1029/754071137_8c0bbe83e5_o.jpg", "secret": "4e32b95c92", "media": "photo", "latitude": "0", "id": "754071137", "tags": "holiday oscar parade july4th provo 2007 freedomfestival"}, {"datetaken": "2007-07-01 01:42:59", "license": "4", "title": "Little Red Wagon Float", "text": "", "album_id": "72157600715772999", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1411/754073523_b9327019f0_o.jpg", "secret": "03f3fcfe4d", "media": "photo", "latitude": "0", "id": "754073523", "tags": "holiday parade july4th provo 2007 freedomfestival littleredwagonsfloat"}, {"datetaken": "2007-07-01 01:43:11", "license": "4", "title": "Little Uncle Sam", "text": "", "album_id": "72157600715772999", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1118/754075515_60d7dfe150_o.jpg", "secret": "7f28b92354", "media": "photo", "latitude": "0", "id": "754075515", "tags": "holiday parade july4th provo 2007 freedomfestival cutelittleboy"}, {"datetaken": "2007-07-01 01:51:05", "license": "4", "title": "Oscar - front view distant", "text": "", "album_id": "72157600715772999", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1214/754929576_3ded47f3f3_o.jpg", "secret": "c3b382b950", "media": "photo", "latitude": "0", "id": "754929576", "tags": "holiday oscar parade july4th provo 2007 freedomfestival"}, {"datetaken": "2007-07-01 01:51:08", "license": "4", "title": "Oscar - Front View Closer", "text": "", "album_id": "72157600715772999", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1060/754931006_67b219fa14_o.jpg", "secret": "b0110da8ea", "media": "photo", "latitude": "0", "id": "754931006", "tags": "holiday oscar parade july4th provo 2007 freedomfestival"}, {"datetaken": "2007-07-06 15:04:01", "license": "3", "title": "6181", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1244/757365215_32ab4a0485_o.jpg", "secret": "d5c9ec2530", "media": "photo", "latitude": "0", "id": "757365215", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-06 16:26:54", "license": "3", "title": "6200", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1398/757366931_c2fda35816_o.jpg", "secret": "22dc39191c", "media": "photo", "latitude": "0", "id": "757366931", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-06 16:27:30", "license": "3", "title": "6202", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1388/758221292_8ced291dc8_o.jpg", "secret": "c0b53cd578", "media": "photo", "latitude": "0", "id": "758221292", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-06 17:05:19", "license": "3", "title": "6207", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1090/757368103_227e0be667_o.jpg", "secret": "7ecddc8f0f", "media": "photo", "latitude": "0", "id": "757368103", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-06 17:06:37", "license": "3", "title": "6208", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1229/758222438_9fa0f9449a_o.jpg", "secret": "0f6be49e77", "media": "photo", "latitude": "0", "id": "758222438", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-06 17:50:21", "license": "3", "title": "6215", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1218/758223198_11209eb9bf_o.jpg", "secret": "c2194f778a", "media": "photo", "latitude": "0", "id": "758223198", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-06 17:51:20", "license": "3", "title": "6216", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1089/757369235_09b93b9724_o.jpg", "secret": "51898a9cf5", "media": "photo", "latitude": "0", "id": "757369235", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-06 17:54:14", "license": "3", "title": "6224", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1309/758223790_8fb694587d_o.jpg", "secret": "2e9baf3274", "media": "photo", "latitude": "0", "id": "758223790", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-06 17:55:15", "license": "3", "title": "6225", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1103/757369729_914b8b5c73_o.jpg", "secret": "65f1e1229d", "media": "photo", "latitude": "0", "id": "757369729", "tags": "washington calendar hiking backpacking mttownsend"}, {"datetaken": "2007-07-06 17:56:18", "license": "3", "title": "6229", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1385/757369989_ed1d759f40_o.jpg", "secret": "6d178367c6", "media": "photo", "latitude": "0", "id": "757369989", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 10:12:08", "license": "3", "title": "6248", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1331/757463065_29fe9270ea_o.jpg", "secret": "06a323ba3d", "media": "photo", "latitude": "0", "id": "757463065", "tags": "washington calendar hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 11:09:12", "license": "3", "title": "6260", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1319/757464227_971003548f_o.jpg", "secret": "dda7f3013f", "media": "photo", "latitude": "0", "id": "757464227", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 11:10:56", "license": "3", "title": "Silver Lake", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1305/758319428_862ab247e5_o.jpg", "secret": "e43b4f40d9", "media": "photo", "latitude": "0", "id": "758319428", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 11:35:33", "license": "3", "title": "6271", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1077/758320282_b4c2342ebf_o.jpg", "secret": "dd6b32f60c", "media": "photo", "latitude": "0", "id": "758320282", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 11:36:07", "license": "3", "title": "6273", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1354/758320622_974e9598d1_o.jpg", "secret": "189b8a408e", "media": "photo", "latitude": "0", "id": "758320622", "tags": "washington calendar hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 15:23:05", "license": "3", "title": "6279", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1025/757466653_19055211a0_o.jpg", "secret": "a917ee83e8", "media": "photo", "latitude": "0", "id": "757466653", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 15:37:00", "license": "3", "title": "6284", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1288/758322002_48e888bbe2_o.jpg", "secret": "e2be592fcb", "media": "photo", "latitude": "0", "id": "758322002", "tags": "washington calendar hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 15:38:37", "license": "3", "title": "6285", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1085/757467689_eefd3bff42_o.jpg", "secret": "906b1b13c0", "media": "photo", "latitude": "0", "id": "757467689", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 15:44:36", "license": "3", "title": "6287", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1279/757467987_f24e417881_o.jpg", "secret": "c5caa7a724", "media": "photo", "latitude": "0", "id": "757467987", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 15:55:50", "license": "3", "title": "6302", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1040/757469763_e93030f306_o.jpg", "secret": "1ec00ea88e", "media": "photo", "latitude": "0", "id": "757469763", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 15:56:10", "license": "3", "title": "6303", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1110/757470019_d6a1c2e725_o.jpg", "secret": "0752e1b689", "media": "photo", "latitude": "0", "id": "757470019", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 15:58:51", "license": "3", "title": "6307", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1186/757470449_a8357d781c_o.jpg", "secret": "3fdee3a2f7", "media": "photo", "latitude": "0", "id": "757470449", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 15:59:43", "license": "3", "title": "6308", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1039/758325586_4dc463f1bb_o.jpg", "secret": "4897bb4584", "media": "photo", "latitude": "0", "id": "758325586", "tags": "washington calendar hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 16:02:23", "license": "3", "title": "6311", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1356/757471419_9a477dca70_o.jpg", "secret": "e543d6ee9a", "media": "photo", "latitude": "0", "id": "757471419", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 16:05:49", "license": "3", "title": "6315", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1259/758326402_1e2788d767_o.jpg", "secret": "f0f265869c", "media": "photo", "latitude": "0", "id": "758326402", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 19:23:28", "license": "3", "title": "6326", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1393/758328156_7286032ea9_o.jpg", "secret": "40338ba4d6", "media": "photo", "latitude": "0", "id": "758328156", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 20:46:06", "license": "3", "title": "6335", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1123/757474739_8fcc9225e7_o.jpg", "secret": "ccac94761a", "media": "photo", "latitude": "0", "id": "757474739", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-07 20:51:05", "license": "3", "title": "6336", "text": "", "album_id": "72157600723120795", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1130/757475081_297acc035f_o.jpg", "secret": "d570319e78", "media": "photo", "latitude": "0", "id": "757475081", "tags": "washington hiking backpacking mttownsend"}, {"datetaken": "2007-07-04 13:39:46", "license": "1", "title": "07-July4th-2167", "text": "", "album_id": "72157600725398448", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1204/758733395_bedab52c54_o.jpg", "secret": "426b192ec6", "media": "photo", "latitude": "0", "id": "758733395", "tags": "pool 4thofjuly bucks navesink"}, {"datetaken": "2007-07-04 13:39:58", "license": "1", "title": "07-July4th-2168", "text": "", "album_id": "72157600725398448", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1020/758733977_6862d2c520_o.jpg", "secret": "31e3c05bc8", "media": "photo", "latitude": "0", "id": "758733977", "tags": "pool 4thofjuly bucks navesink"}, {"datetaken": "2007-07-04 13:52:39", "license": "1", "title": "07-July4th-2173", "text": "", "album_id": "72157600725398448", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1410/759587760_fbea191c66_o.jpg", "secret": "e4351d8b60", "media": "photo", "latitude": "0", "id": "759587760", "tags": "pool 4thofjuly bucks navesink"}, {"datetaken": "2007-07-04 13:52:41", "license": "1", "title": "07-July4th-2174", "text": "", "album_id": "72157600725398448", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1094/759588592_69108e4661_o.jpg", "secret": "156752ca87", "media": "photo", "latitude": "0", "id": "759588592", "tags": "pool 4thofjuly bucks navesink"}, {"datetaken": "2007-07-04 13:53:01", "license": "1", "title": "07-July4th-2176", "text": "", "album_id": "72157600725398448", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1410/758736591_e05962122c_o.jpg", "secret": "63893c0bc2", "media": "photo", "latitude": "0", "id": "758736591", "tags": "pool 4thofjuly bucks navesink"}, {"datetaken": "2007-07-04 13:53:13", "license": "1", "title": "07-July4th-2178", "text": "", "album_id": "72157600725398448", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1243/758737493_356a22d97c_o.jpg", "secret": "46efbe9901", "media": "photo", "latitude": "0", "id": "758737493", "tags": "pool 4thofjuly bucks navesink"}, {"datetaken": "2007-07-04 14:16:21", "license": "1", "title": "07-July4th-2181", "text": "", "album_id": "72157600725398448", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1359/759591222_f5bece6ae3_o.jpg", "secret": "3aadb74d13", "media": "photo", "latitude": "0", "id": "759591222", "tags": "pool 4thofjuly bucks navesink"}, {"datetaken": "2007-07-04 14:25:59", "license": "1", "title": "07-July4th-2198", "text": "", "album_id": "72157600725398448", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1237/758739125_618e6dd7c6_o.jpg", "secret": "3b242f790e", "media": "photo", "latitude": "0", "id": "758739125", "tags": "pool 4thofjuly bucks navesink"}, {"datetaken": "2007-07-04 14:26:10", "license": "1", "title": "07-July4th-2199", "text": "", "album_id": "72157600725398448", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1198/758739863_3320e8f250_o.jpg", "secret": "8ea3134b48", "media": "photo", "latitude": "0", "id": "758739863", "tags": "pool 4thofjuly bucks navesink"}, {"datetaken": "2007-07-04 15:52:50", "license": "1", "title": "07-July4th-2201", "text": "", "album_id": "72157600725398448", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1091/758740533_d98dfd2281_o.jpg", "secret": "45037f28cb", "media": "photo", "latitude": "0", "id": "758740533", "tags": "pool 4thofjuly bucks navesink"}, {"datetaken": "2007-07-04 15:52:57", "license": "1", "title": "07-July4th-2202", "text": "", "album_id": "72157600725398448", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1437/759594376_a23421a155_o.jpg", "secret": "b214c13773", "media": "photo", "latitude": "0", "id": "759594376", "tags": "bucks pool navesink 4thofjuly"}, {"datetaken": "2007-07-04 18:31:34", "license": "1", "title": "07-July4th-2232", "text": "", "album_id": "72157600725398448", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1146/759595154_ebac5ee78b_o.jpg", "secret": "274095e4a8", "media": "photo", "latitude": "0", "id": "759595154", "tags": "pool 4thofjuly bucks navesink"}, {"datetaken": "2007-07-04 18:31:39", "license": "1", "title": "07-July4th-2234", "text": "", "album_id": "72157600725398448", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1008/759595806_15c7847c52_o.jpg", "secret": "007fb9b851", "media": "photo", "latitude": "0", "id": "759595806", "tags": "pool 4thofjuly bucks navesink"}, {"datetaken": "2007-06-29 16:22:02", "license": "2", "title": "DSC_0150", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1253/812188259_63ca27e4c4_o.jpg", "secret": "403deda6b9", "media": "photo", "latitude": "0", "id": "812188259", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-29 16:22:14", "license": "2", "title": "DSC_0161", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1331/813072196_4ea6e6bb7c_o.jpg", "secret": "de440c3b55", "media": "photo", "latitude": "0", "id": "813072196", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-29 16:27:07", "license": "2", "title": "DSC_0189", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1137/812187301_19422c25ba_o.jpg", "secret": "5823653c3b", "media": "photo", "latitude": "0", "id": "812187301", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-29 16:27:27", "license": "2", "title": "DSC_0193", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1218/812186111_c0080a0927_o.jpg", "secret": "2832fc52d6", "media": "photo", "latitude": "0", "id": "812186111", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-29 16:27:47", "license": "2", "title": "DSC_0195", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1060/813068282_157ced4b8e_o.jpg", "secret": "7727ec92be", "media": "photo", "latitude": "0", "id": "813068282", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-29 16:28:14", "license": "2", "title": "DSC_0202", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1385/813067522_d6795b7024_o.jpg", "secret": "0e3577b98f", "media": "photo", "latitude": "0", "id": "813067522", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-29 16:29:16", "license": "2", "title": "DSC_0211", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1062/813066680_65ad5f7632_o.jpg", "secret": "066bad4d48", "media": "photo", "latitude": "0", "id": "813066680", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-29 16:32:28", "license": "2", "title": "biggrin", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1126/812171089_787f905078_o.jpg", "secret": "c3725f3a9d", "media": "photo", "latitude": "0", "id": "812171089", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-29 16:32:55", "license": "2", "title": "DSC_0245", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1254/812182169_7d8bf6df68_o.jpg", "secret": "6fbb1f777b", "media": "photo", "latitude": "0", "id": "812182169", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-29 16:32:56", "license": "2", "title": "DSC_0247", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1081/812181679_a5510abe76_o.jpg", "secret": "986f84e44a", "media": "photo", "latitude": "0", "id": "812181679", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-29 16:35:40", "license": "2", "title": "DSC_0266", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1215/813064128_cdd7c3ebc7_o.jpg", "secret": "a2a9ab2bb3", "media": "photo", "latitude": "0", "id": "813064128", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-30 10:52:06", "license": "2", "title": "DSC_0132 (2)", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1215/813063258_88114d2560_o.jpg", "secret": "6b9fd5eae7", "media": "photo", "latitude": "0", "id": "813063258", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-30 10:52:35", "license": "2", "title": "DSC_0135", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1199/812179707_4e3e77e9da_o.jpg", "secret": "1bf6bc03bd", "media": "photo", "latitude": "0", "id": "812179707", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-30 10:52:38", "license": "2", "title": "DSC_0136", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1162/812179063_9b29221325_o.jpg", "secret": "550e4df94b", "media": "photo", "latitude": "0", "id": "812179063", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-30 10:52:43", "license": "2", "title": "DSC_0137 (2)", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1077/812178519_067f4b2a4c_o.jpg", "secret": "5c661d054e", "media": "photo", "latitude": "0", "id": "812178519", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-30 11:07:04", "license": "2", "title": "DSC_0151 (2)", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1081/813061012_0017d1045d_o.jpg", "secret": "664d64bfc9", "media": "photo", "latitude": "0", "id": "813061012", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-30 12:12:28", "license": "2", "title": "DSC_0178", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1416/812176577_007f6051ec_o.jpg", "secret": "46de01ecec", "media": "photo", "latitude": "0", "id": "812176577", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-30 12:13:49", "license": "2", "title": "DSC_0179", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1121/813060528_73b394604b_o.jpg", "secret": "0f7284499f", "media": "photo", "latitude": "0", "id": "813060528", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-30 14:36:29", "license": "2", "title": "DSC_0186 (2)", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1268/812175929_9bfc3ab514_o.jpg", "secret": "c015414dcd", "media": "photo", "latitude": "0", "id": "812175929", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-30 14:36:42", "license": "2", "title": "DSC_0187 (2)", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1069/813058418_9d362d5c0a_o.jpg", "secret": "d729ab0260", "media": "photo", "latitude": "0", "id": "813058418", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-30 18:21:21", "license": "2", "title": "DSC_0246 (2)", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1415/812174833_ce8fe36488_o.jpg", "secret": "c57e9e60c0", "media": "photo", "latitude": "0", "id": "812174833", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-30 18:21:21", "license": "2", "title": "DSC_0245 (2)", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1380/812173931_36888db970_o.jpg", "secret": "2d38b4225e", "media": "photo", "latitude": "0", "id": "812173931", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-30 18:21:22", "license": "2", "title": "DSC_0247 (2)", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1130/812173291_e5f7681389_o.jpg", "secret": "2ef175606e", "media": "photo", "latitude": "0", "id": "812173291", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-30 18:23:44", "license": "2", "title": "DSC_0275 (2)", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1171/813055542_0d4feb8fdf_o.jpg", "secret": "491744408b", "media": "photo", "latitude": "0", "id": "813055542", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-06-30 18:23:45", "license": "2", "title": "DSC_0276 (2)", "text": "", "album_id": "72157600824581776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1352/813054942_fdd4faea2b_o.jpg", "secret": "a70aa6cec6", "media": "photo", "latitude": "0", "id": "813054942", "tags": "family max fireworks 4thofjuly childrensmuseum grampy"}, {"datetaken": "2007-07-04 20:35:34", "license": "3", "title": "01 - 4th of July - Becky, Brandon, Brent, Matt", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1282/812625073_9f1db94f7f_o.jpg", "secret": "7ff031912c", "media": "photo", "latitude": "0", "id": "812625073", "tags": "party matt brandon july becky brent independenceday 2007 independenceday2007"}, {"datetaken": "2007-07-04 20:35:49", "license": "3", "title": "02 - 4th of July - Becky, Jacinda, Bob", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1404/813506212_809279c1cc_o.jpg", "secret": "223f6ce3d2", "media": "photo", "latitude": "0", "id": "813506212", "tags": "2007 july independenceday independenceday2007 party becky jacinda bob"}, {"datetaken": "2007-07-04 20:36:11", "license": "3", "title": "03 - 4th of July - Jacinda, Bob", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1217/812622637_5bd799b44c_o.jpg", "secret": "0955513a89", "media": "photo", "latitude": "0", "id": "812622637", "tags": "party july bob independenceday jacinda 2007 independenceday2007"}, {"datetaken": "2007-07-04 21:12:14", "license": "3", "title": "04 - 4th of July - Ghost Shannon", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1276/812621917_92bb47121c_o.jpg", "secret": "410e1a3d3f", "media": "photo", "latitude": "0", "id": "812621917", "tags": "party fireworks ghost july independenceday 2007 independenceday2007"}, {"datetaken": "2007-07-04 21:12:20", "license": "3", "title": "05 - 4th of July - Fireworks", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1222/812621159_206887feb5_o.jpg", "secret": "a24c2c12e1", "media": "photo", "latitude": "0", "id": "812621159", "tags": "party fireworks july independenceday 2007 independenceday2007"}, {"datetaken": "2007-07-04 21:17:36", "license": "3", "title": "06 - 4th of July - Fireworks", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1386/812619945_e7df4d57f0_o.jpg", "secret": "fb86ddb833", "media": "photo", "latitude": "0", "id": "812619945", "tags": "party fireworks july independenceday 2007 independenceday2007"}, {"datetaken": "2007-07-04 21:18:42", "license": "3", "title": "07 - 4th of July - Fireworks", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1152/813501164_309d46e0da_o.jpg", "secret": "720a417a81", "media": "photo", "latitude": "0", "id": "813501164", "tags": "party fireworks july independenceday 2007 independenceday2007"}, {"datetaken": "2007-07-04 21:20:53", "license": "3", "title": "08 - 4th of July - Fireworks", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1418/812617861_921d5424aa_o.jpg", "secret": "a3deaa8d63", "media": "photo", "latitude": "0", "id": "812617861", "tags": "party fireworks july independenceday 2007 independenceday2007"}, {"datetaken": "2007-07-04 21:24:41", "license": "3", "title": "09 - 4th of July - Fireworks", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1327/813499350_04a4865369_o.jpg", "secret": "78ef69e897", "media": "photo", "latitude": "0", "id": "813499350", "tags": "party fireworks july independenceday 2007 independenceday2007"}, {"datetaken": "2007-07-04 21:29:14", "license": "3", "title": "10 - 4th of July - Fireworks", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1077/813498256_aa2eba0ab7_o.jpg", "secret": "0ecbb29b31", "media": "photo", "latitude": "0", "id": "813498256", "tags": "party fireworks july independenceday 2007 independenceday2007"}, {"datetaken": "2007-07-04 21:31:46", "license": "3", "title": "11 - 4th of July - Fireworks", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1225/813497656_d380cd71f4_o.jpg", "secret": "8f1b29473e", "media": "photo", "latitude": "0", "id": "813497656", "tags": "party fireworks july independenceday 2007 independenceday2007"}, {"datetaken": "2007-07-04 21:33:31", "license": "3", "title": "12 - 4th of July - Fireworks", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1320/812613911_3e1ee6593f_o.jpg", "secret": "aba629503f", "media": "photo", "latitude": "0", "id": "812613911", "tags": "party fireworks july independenceday 2007 independenceday2007"}, {"datetaken": "2007-07-04 21:36:59", "license": "3", "title": "13 - 4th of July - Fireworks", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1179/813495550_e8ed285c9c_o.jpg", "secret": "bdcabb2abe", "media": "photo", "latitude": "0", "id": "813495550", "tags": "party fireworks july independenceday 2007 independenceday2007"}, {"datetaken": "2007-07-04 21:37:46", "license": "3", "title": "14 - 4th of July - Fireworks", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1103/812612097_369de4928a_o.jpg", "secret": "7c964e2cbf", "media": "photo", "latitude": "0", "id": "812612097", "tags": "party fireworks july independenceday 2007 independenceday2007"}, {"datetaken": "2007-07-04 21:39:35", "license": "3", "title": "15 - 4th of July - Fireworks", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1214/813493268_6f7f574caf_o.jpg", "secret": "b1d6f2c4b8", "media": "photo", "latitude": "0", "id": "813493268", "tags": "party fireworks july independenceday 2007 independenceday2007"}, {"datetaken": "2007-07-04 21:40:15", "license": "3", "title": "16 - 4th of July - Fireworks", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1289/813492470_54aa111df8_o.jpg", "secret": "f684143d81", "media": "photo", "latitude": "0", "id": "813492470", "tags": "party fireworks july independenceday 2007 independenceday2007"}, {"datetaken": "2007-07-05 00:25:12", "license": "3", "title": "17 - Dinner is served", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1205/813491040_7bbfe8f23d_o.jpg", "secret": "7c2f128b1b", "media": "photo", "latitude": "0", "id": "813491040", "tags": "party cats animal july shannon kitties independenceday 2007 toonces independenceday2007"}, {"datetaken": "2007-07-05 00:26:02", "license": "3", "title": "18 - Toonces", "text": "", "album_id": "72157600826173639", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1246/813489878_04b9205764_o.jpg", "secret": "b7490c843b", "media": "photo", "latitude": "0", "id": "813489878", "tags": "party cats animal july kitties independenceday 2007 toonces independenceday2007"}, {"datetaken": "2007-08-21 05:45:30", "license": "6", "title": "Amos P. Madison", "text": "", "album_id": "72157601588947079", "longitude": "-95.802669", "url_o": "https://farm2.staticflickr.com/1139/1193013559_b34620ec02_o.jpg", "secret": "89a9af4d0f", "media": "photo", "latitude": "37.067094", "id": "1193013559", "tags": "hobby civilwarveteran tombstonephoto"}, {"datetaken": "2007-08-21 05:45:43", "license": "6", "title": "Augustus K. Brent", "text": "", "album_id": "72157601588947079", "longitude": "-95.802669", "url_o": "https://farm2.staticflickr.com/1225/1193015283_85cc6eb070_o.jpg", "secret": "8686a25ee6", "media": "photo", "latitude": "37.067094", "id": "1193015283", "tags": "hobby civilwarveteran tombstonephoto"}, {"datetaken": "2007-08-21 05:45:52", "license": "6", "title": "Augustus K. Brent1", "text": "", "album_id": "72157601588947079", "longitude": "-95.802669", "url_o": "https://farm2.staticflickr.com/1364/1193881414_1b4f0efc23_o.jpg", "secret": "7c1a6d74f8", "media": "photo", "latitude": "37.067094", "id": "1193881414", "tags": "hobby civilwarveteran tombstonephoto"}, {"datetaken": "2007-08-21 05:46:04", "license": "6", "title": "Benjamin Deuel", "text": "", "album_id": "72157601588947079", "longitude": "-95.802669", "url_o": "https://farm2.staticflickr.com/1223/1193017967_b2af87668d_o.jpg", "secret": "39aa68f3ab", "media": "photo", "latitude": "37.067094", "id": "1193017967", "tags": "pennsylvania union hobby civilwarveteran tombstonephoto benjamindeuel companyd50thpennsylvaniainfantry"}, {"datetaken": "2007-08-21 05:46:15", "license": "6", "title": "Benjamin H. Griggs", "text": "", "album_id": "72157601588947079", "longitude": "-95.802669", "url_o": "https://farm2.staticflickr.com/1297/1193019395_166183e7b2_o.jpg", "secret": "13c75a2f61", "media": "photo", "latitude": "37.067094", "id": "1193019395", "tags": "hobby civilwarveteran tombstonephoto"}, {"datetaken": "2007-08-21 05:46:27", "license": "6", "title": "Benjamin H. Griggs1", "text": "", "album_id": "72157601588947079", "longitude": "-95.802669", "url_o": "https://farm2.staticflickr.com/1302/1193885716_85414a7588_o.jpg", "secret": "6e4618b3c6", "media": "photo", "latitude": "37.067094", "id": "1193885716", "tags": "hobby civilwarveteran tombstonephoto"}, {"datetaken": "2007-08-21 05:46:37", "license": "6", "title": "Colonel P. Burns", "text": "", "album_id": "72157601588947079", "longitude": "-95.802669", "url_o": "https://farm2.staticflickr.com/1081/1193887056_03dca7b99f_o.jpg", "secret": "a2c16e088e", "media": "photo", "latitude": "37.067094", "id": "1193887056", "tags": "hobby civilwarveteran tombstonephoto"}, {"datetaken": "2007-08-21 05:46:46", "license": "6", "title": "Daniel B. Snell", "text": "", "album_id": "72157601588947079", "longitude": "-95.802669", "url_o": "https://farm2.staticflickr.com/1366/1193023335_5d22c88f9b_o.jpg", "secret": "f8ff0c2391", "media": "photo", "latitude": "37.067094", "id": "1193023335", "tags": "hobby civilwarveteran tombstonephoto danielbsnell"}, {"datetaken": "2007-08-21 05:46:54", "license": "6", "title": "Fawn Creek Cemetery", "text": "", "album_id": "72157601588947079", "longitude": "-95.802669", "url_o": "https://farm2.staticflickr.com/1097/1193024201_16a5edb6bf_o.jpg", "secret": "d2624d8e51", "media": "photo", "latitude": "37.067094", "id": "1193024201", "tags": "hobby civilwarveteran tombstonephoto"}, {"datetaken": "2007-08-21 05:47:07", "license": "6", "title": "George A. Park", "text": "", "album_id": "72157601588947079", "longitude": "-95.802669", "url_o": "https://farm2.staticflickr.com/1254/1193025777_acbf75ef53_o.jpg", "secret": "de7fcc19bd", "media": "photo", "latitude": "37.067094", "id": "1193025777", "tags": "hobby civilwarveteran tombstonephoto georgeapark"}, {"datetaken": "2007-08-21 05:47:17", "license": "6", "title": "John Jordan", "text": "", "album_id": "72157601588947079", "longitude": "-95.802669", "url_o": "https://farm2.staticflickr.com/1032/1193027155_b9e2ef9457_o.jpg", "secret": "0bb79e4486", "media": "photo", "latitude": "37.067094", "id": "1193027155", "tags": "illinois union hobby civilwarveteran johnjordan tombstonephoto 25thillinfantry"}, {"datetaken": "2007-08-21 05:47:29", "license": "6", "title": "John Newby", "text": "", "album_id": "72157601588947079", "longitude": "-95.802669", "url_o": "https://farm2.staticflickr.com/1425/1193893644_753efc60c6_o.jpg", "secret": "844ea59340", "media": "photo", "latitude": "37.067094", "id": "1193893644", "tags": "union indiana hobby civilwarveteran tombstonephoto johnnewby companyb33rdindianainfantry"}, {"datetaken": "2007-08-21 05:47:40", "license": "6", "title": "Joseph Knotts", "text": "", "album_id": "72157601588947079", "longitude": "-95.802669", "url_o": "https://farm2.staticflickr.com/1431/1193895058_3523e4ce71_o.jpg", "secret": "f0edd92acb", "media": "photo", "latitude": "37.067094", "id": "1193895058", "tags": "hobby civilwarveteran tombstonephoto josephknotts bornfebruary121845"}, {"datetaken": "2007-08-21 05:47:51", "license": "6", "title": "Joseph Lenhart", "text": "", "album_id": "72157601588947079", "longitude": "-95.802669", "url_o": "https://farm2.staticflickr.com/1295/1193896526_437744adfa_o.jpg", "secret": "288053d7f4", "media": "photo", "latitude": "37.067094", "id": "1193896526", "tags": "union indiana hobby civilwarveteran tombstonephoto born1835 josephlenhart died1923 companyc47thindianainfantry"}, {"datetaken": "2007-08-21 05:48:01", "license": "6", "title": "Lisle F. McCully", "text": "", "album_id": "72157601588947079", "longitude": "-95.802669", "url_o": "https://farm2.staticflickr.com/1429/1193032581_e0b3e4cfe9_o.jpg", "secret": "402df22efe", "media": "photo", "latitude": "37.067094", "id": "1193032581", "tags": "pennsylvania union hobby civilwarveteran tombstonephoto lislefmccully companya110thpennsylvaniainfantry"}, {"datetaken": "2007-08-21 05:48:14", "license": "6", "title": "William T. Brittin", "text": "", "album_id": "72157601588947079", "longitude": "-95.802669", "url_o": "https://farm2.staticflickr.com/1114/1193034237_c726d9992c_o.jpg", "secret": "94eec8b62d", "media": "photo", "latitude": "37.067094", "id": "1193034237", "tags": "illinois union hobby civilwarveteran tombstonephoto williamtbrittin companyc114thillinoisinfantry"}, {"datetaken": "2006-07-01 18:52:57", "license": "3", "title": "Picture 796", "text": "", "album_id": "72157594249154972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/223349531_064cf4feca_o.jpg", "secret": "064cf4feca", "media": "photo", "latitude": "0", "id": "223349531", "tags": "friends fireworks bubbles 4thofjuly"}, {"datetaken": "2006-07-01 18:55:02", "license": "3", "title": "Picture 824", "text": "", "album_id": "72157594249154972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/223349549_203a308375_o.jpg", "secret": "203a308375", "media": "photo", "latitude": "0", "id": "223349549", "tags": "friends fireworks bubbles 4thofjuly"}, {"datetaken": "2006-07-01 18:55:22", "license": "3", "title": "Picture 828", "text": "", "album_id": "72157594249154972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/223349566_931ea11dae_o.jpg", "secret": "931ea11dae", "media": "photo", "latitude": "0", "id": "223349566", "tags": "friends fireworks bubbles 4thofjuly"}, {"datetaken": "2006-07-01 18:56:38", "license": "3", "title": "Picture 841", "text": "", "album_id": "72157594249154972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/223349586_4af890438a_o.jpg", "secret": "4af890438a", "media": "photo", "latitude": "0", "id": "223349586", "tags": "friends fireworks bubbles 4thofjuly"}, {"datetaken": "2006-07-01 18:57:33", "license": "3", "title": "Picture 846", "text": "", "album_id": "72157594249154972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/223349596_d7d826ef93_o.jpg", "secret": "d7d826ef93", "media": "photo", "latitude": "0", "id": "223349596", "tags": "friends fireworks bubbles 4thofjuly"}, {"datetaken": "2006-07-01 18:57:43", "license": "3", "title": "Picture 849", "text": "", "album_id": "72157594249154972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/223349611_4f1d98af08_o.jpg", "secret": "4f1d98af08", "media": "photo", "latitude": "0", "id": "223349611", "tags": "friends fireworks bubbles 4thofjuly"}, {"datetaken": "2006-07-01 18:58:27", "license": "3", "title": "Picture 855", "text": "", "album_id": "72157594249154972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/223349625_371381a05d_o.jpg", "secret": "371381a05d", "media": "photo", "latitude": "0", "id": "223349625", "tags": "friends fireworks bubbles 4thofjuly"}, {"datetaken": "2006-07-01 18:59:40", "license": "3", "title": "Picture 861", "text": "", "album_id": "72157594249154972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/223349665_4584c6475c_o.jpg", "secret": "4584c6475c", "media": "photo", "latitude": "0", "id": "223349665", "tags": "friends fireworks bubbles 4thofjuly"}, {"datetaken": "2006-07-01 18:59:47", "license": "3", "title": "Picture 863", "text": "", "album_id": "72157594249154972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/223349689_b969752df5_o.jpg", "secret": "b969752df5", "media": "photo", "latitude": "0", "id": "223349689", "tags": "friends fireworks bubbles 4thofjuly"}, {"datetaken": "2006-07-01 18:59:51", "license": "3", "title": "Picture 864", "text": "", "album_id": "72157594249154972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/223349718_ad4d440646_o.jpg", "secret": "ad4d440646", "media": "photo", "latitude": "0", "id": "223349718", "tags": "friends fireworks bubbles 4thofjuly"}, {"datetaken": "2006-07-01 18:59:54", "license": "3", "title": "Picture 865", "text": "", "album_id": "72157594249154972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/223349762_12aeec5021_o.jpg", "secret": "12aeec5021", "media": "photo", "latitude": "0", "id": "223349762", "tags": "friends fireworks bubbles 4thofjuly"}, {"datetaken": "2006-07-01 19:03:16", "license": "3", "title": "Picture 878", "text": "", "album_id": "72157594249154972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/223349781_73ee325a3f_o.jpg", "secret": "73ee325a3f", "media": "photo", "latitude": "0", "id": "223349781", "tags": "friends fireworks bubbles 4thofjuly"}, {"datetaken": "2006-07-01 19:03:26", "license": "3", "title": "Picture 882", "text": "", "album_id": "72157594249154972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/223349804_12734d4f52_o.jpg", "secret": "12734d4f52", "media": "photo", "latitude": "0", "id": "223349804", "tags": "friends fireworks bubbles 4thofjuly"}, {"datetaken": "2006-07-01 19:03:35", "license": "3", "title": "Picture 885", "text": "", "album_id": "72157594249154972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/223349818_ee78c5dadf_o.jpg", "secret": "ee78c5dadf", "media": "photo", "latitude": "0", "id": "223349818", "tags": "friends fireworks bubbles 4thofjuly"}, {"datetaken": "2006-07-01 19:07:34", "license": "3", "title": "Picture 894", "text": "", "album_id": "72157594249154972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/223349842_6854d0749a_o.jpg", "secret": "6854d0749a", "media": "photo", "latitude": "0", "id": "223349842", "tags": "friends fireworks bubbles 4thofjuly"}, {"datetaken": "2006-07-01 20:02:37", "license": "3", "title": "Picture 913", "text": "", "album_id": "72157594249154972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/223349860_fb752f85a4_o.jpg", "secret": "fb752f85a4", "media": "photo", "latitude": "0", "id": "223349860", "tags": "friends fireworks bubbles 4thofjuly"}, {"datetaken": "2006-07-01 20:04:45", "license": "3", "title": "Picture 915", "text": "", "album_id": "72157594249154972", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/223349517_ce14d20e25_o.jpg", "secret": "ce14d20e25", "media": "photo", "latitude": "0", "id": "223349517", "tags": "friends fireworks bubbles 4thofjuly"}, {"datetaken": "2006-07-26 21:53:34", "license": "4", "title": "03.DanMcGeorge.CCRH.WDC.26jul06", "text": "", "album_id": "72157594213492353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/199339680_662df0ec8b_o.jpg", "secret": "662df0ec8b", "media": "photo", "latitude": "0", "id": "199339680", "tags": "washingtondc cappercarrollsburg sewdc menatwork wdc southeast underconstruction 3rdstreet outwiththeoldinwiththenew july2006 menatwork2006 26july2006 danmcgeorge nsedcroldnewexhibition nsedcroldnewoctober2006 outwiththeoldinwiththenew2006"}, {"datetaken": "2006-07-26 21:53:34", "license": "4", "title": "02.DanMcGeorge.CCRH.SE.WDC.26jul06", "text": "", "album_id": "72157594213492353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/199339679_ff04fa9fb9_o.jpg", "secret": "ff04fa9fb9", "media": "photo", "latitude": "0", "id": "199339679", "tags": "washingtondc cappercarrollsburg sewdc menatwork wdc southeast underconstruction 3rdstreet july2006 menatwork2006 26july2006 danmcgeorge"}, {"datetaken": "2006-07-26 21:53:34", "license": "4", "title": "01.DanMcGeorge.CCRH.SE.WDC.26jul06", "text": "", "album_id": "72157594213492353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/199339678_431d4dfaa0_o.jpg", "secret": "431d4dfaa0", "media": "photo", "latitude": "0", "id": "199339678", "tags": "washingtondc cappercarrollsburg sewdc menatwork wdc southeast underconstruction 3rdstreet july2006 menatwork2006 26july2006 danmcgeorge"}, {"datetaken": "2006-07-26 22:42:27", "license": "4", "title": "06.DanMcGeorge.CCRH.SE.WDC.26jul06", "text": "", "album_id": "72157594213492353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/199361519_e8ae552ce6_o.jpg", "secret": "e8ae552ce6", "media": "photo", "latitude": "0", "id": "199361519", "tags": "washingtondc hands tools cappercarrollsburg sewdc menatwork wdc southeast underconstruction 3rdstreet july2006 menatwork2006 26july2006 danmcgeorge"}, {"datetaken": "2006-07-26 22:42:27", "license": "4", "title": "05.DanMcGeorge.CCRH.SE.WDC.26jul06", "text": "", "album_id": "72157594213492353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/199361518_65eb15b8ba_o.jpg", "secret": "65eb15b8ba", "media": "photo", "latitude": "0", "id": "199361518", "tags": "washingtondc hands tools cappercarrollsburg sewdc menatwork wdc southeast underconstruction 3rdstreet july2006 menatwork2006 26july2006 danmcgeorge"}, {"datetaken": "2006-07-26 22:42:27", "license": "4", "title": "04.DanMcGeorge.CCRH.SE.WDC.26jul06", "text": "", "album_id": "72157594213492353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/199361517_26064a1dcc_o.jpg", "secret": "26064a1dcc", "media": "photo", "latitude": "0", "id": "199361517", "tags": "washingtondc cappercarrollsburg sewdc menatwork wdc southeast underconstruction 3rdstreet july2006 menatwork2006 26july2006 danmcgeorge"}, {"datetaken": "2006-07-26 22:49:24", "license": "4", "title": "09.DanMcGeorge.CCRH.SE.WDC.26jul06", "text": "", "album_id": "72157594213492353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/199364496_b981d2584b_o.jpg", "secret": "b981d2584b", "media": "photo", "latitude": "0", "id": "199364496", "tags": "washingtondc hands tools cappercarrollsburg sewdc menatwork wdc southeast underconstruction 3rdstreet july2006 menatwork2006 26july2006 danmcgeorge"}, {"datetaken": "2006-07-26 22:49:24", "license": "4", "title": "08.DanMcGeorge.CCRH.WDC.26jul06", "text": "", "album_id": "72157594213492353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/199364495_30025d4192_o.jpg", "secret": "30025d4192", "media": "photo", "latitude": "0", "id": "199364495", "tags": "washingtondc hands tools cappercarrollsburg sewdc menatwork wdc southeast underconstruction 3rdstreet july2006 menatwork2006 26july2006 danmcgeorge"}, {"datetaken": "2006-07-26 22:49:24", "license": "4", "title": "07.DanMcGeorge.CCRH.SE.WDC.26jul06", "text": "", "album_id": "72157594213492353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/199364494_0f393470c3_o.jpg", "secret": "0f393470c3", "media": "photo", "latitude": "0", "id": "199364494", "tags": "washingtondc hands tools cappercarrollsburg sewdc menatwork wdc southeast underconstruction 3rdstreet july2006 menatwork2006 26july2006 danmcgeorge"}, {"datetaken": "2006-07-26 22:56:17", "license": "4", "title": "12.DanMcGeorge.CCRH.SE.WDC.26jul06", "text": "", "album_id": "72157594213492353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/199367651_41f12ae263_o.jpg", "secret": "41f12ae263", "media": "photo", "latitude": "0", "id": "199367651", "tags": "washingtondc hands tools cappercarrollsburg sewdc menatwork wdc southeast underconstruction 3rdstreet july2006 menatwork2006 26july2006 danmcgeorge"}, {"datetaken": "2006-07-26 22:56:17", "license": "4", "title": "11.DanMcGeorge.CCRH.SE.WDC.26jul06", "text": "", "album_id": "72157594213492353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/199367650_27a976243c_o.jpg", "secret": "27a976243c", "media": "photo", "latitude": "0", "id": "199367650", "tags": "washingtondc cappercarrollsburg sewdc menatwork wdc southeast underconstruction 3rdstreet july2006 menatwork2006 26july2006 danmcgeorge"}, {"datetaken": "2006-07-26 22:56:17", "license": "4", "title": "10.DanMcGeorge.CCRH.SE.WDC.26jul06", "text": "", "album_id": "72157594213492353", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/199367649_e16ba65706_o.jpg", "secret": "e16ba65706", "media": "photo", "latitude": "0", "id": "199367649", "tags": "washingtondc cappercarrollsburg sewdc menatwork wdc southeast underconstruction 3rdstreet july2006 menatwork2006 26july2006 danmcgeorge"}, {"datetaken": "2007-07-04 20:10:41", "license": "3", "title": "Imperialism Party 2007-07-04 001", "text": "", "album_id": "72157601060548201", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1079/929853720_342907b9d3_o.jpg", "secret": "11166a966b", "media": "photo", "latitude": "0", "id": "929853720", "tags": "4thofjuly imperialism avery 2007"}, {"datetaken": "2007-07-04 20:11:06", "license": "3", "title": "Imperialism Party 2007-07-04 002", "text": "", "album_id": "72157601060548201", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1142/929008965_88887e7e1e_o.jpg", "secret": "2d02f895f1", "media": "photo", "latitude": "0", "id": "929008965", "tags": "4thofjuly imperialism avery 2007"}, {"datetaken": "2007-07-04 20:13:53", "license": "3", "title": "Imperialism Party 2007-07-04 005", "text": "", "album_id": "72157601060548201", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1293/929854352_dcbb8692f0_o.jpg", "secret": "d3ff35f341", "media": "photo", "latitude": "0", "id": "929854352", "tags": "4thofjuly imperialism avery 2007"}, {"datetaken": "2007-07-04 20:20:12", "license": "3", "title": "Imperialism Party 2007-07-04 009", "text": "", "album_id": "72157601060548201", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1008/929009479_de4b44ef64_o.jpg", "secret": "60ae4ae24c", "media": "photo", "latitude": "0", "id": "929009479", "tags": "4thofjuly imperialism avery 2007"}, {"datetaken": "2007-07-04 20:22:51", "license": "3", "title": "Imperialism Party 2007-07-04 012", "text": "", "album_id": "72157601060548201", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1176/929854832_b2bbb43a37_o.jpg", "secret": "9c1a5b2c25", "media": "photo", "latitude": "0", "id": "929854832", "tags": "4thofjuly imperialism avery 2007"}, {"datetaken": "2007-07-04 20:56:41", "license": "3", "title": "Imperialism Party 2007-07-04 016", "text": "", "album_id": "72157601060548201", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1098/929855078_7720ef01d0_o.jpg", "secret": "e9bdbd3d96", "media": "photo", "latitude": "0", "id": "929855078", "tags": "4thofjuly imperialism avery 2007"}, {"datetaken": "2007-07-04 21:19:22", "license": "3", "title": "Imperialism Party 2007-07-04 020", "text": "", "album_id": "72157601060548201", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1403/929010235_13b7c919c8_o.jpg", "secret": "d115d72c4f", "media": "photo", "latitude": "0", "id": "929010235", "tags": "4thofjuly imperialism avery 2007"}, {"datetaken": "2007-07-04 21:21:07", "license": "3", "title": "Imperialism Party 2007-07-04 028", "text": "", "album_id": "72157601060548201", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1207/929855466_06f0a62ce3_o.jpg", "secret": "5cc8cc598d", "media": "photo", "latitude": "0", "id": "929855466", "tags": "4thofjuly imperialism avery 2007"}, {"datetaken": "2007-07-04 21:22:15", "license": "3", "title": "Imperialism Party 2007-07-04 033", "text": "", "album_id": "72157601060548201", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1297/929010643_38eec02344_o.jpg", "secret": "7e08b930aa", "media": "photo", "latitude": "0", "id": "929010643", "tags": "4thofjuly imperialism avery 2007"}, {"datetaken": "2007-07-04 21:23:45", "license": "3", "title": "Imperialism Party 2007-07-04 045", "text": "", "album_id": "72157601060548201", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1060/929010865_2ec056eab1_o.jpg", "secret": "68da73dbd0", "media": "photo", "latitude": "0", "id": "929010865", "tags": "4thofjuly imperialism avery 2007"}, {"datetaken": "2007-07-04 21:26:29", "license": "3", "title": "Imperialism Party 2007-07-04 072", "text": "", "album_id": "72157601060548201", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1342/929011071_307e2c48c9_o.jpg", "secret": "4f0db3bc62", "media": "photo", "latitude": "0", "id": "929011071", "tags": "4thofjuly imperialism avery 2007"}, {"datetaken": "2005-07-04 00:00:09", "license": "2", "title": "Deep Impact Baby", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23608259_a4f64adcb3_o.jpg", "secret": "a4f64adcb3", "media": "photo", "latitude": "0", "id": "23608259", "tags": "deepimpact comet tempel1 spaceexploration comets nasa universityofmaryland"}, {"datetaken": "2005-07-04 00:00:18", "license": "2", "title": "Micheal Hearn on Polycom", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23608226_00e39daeed_o.jpg", "secret": "00e39daeed", "media": "photo", "latitude": "0", "id": "23608226", "tags": "deepimpact comet tempel1 spaceexploration comets nasa universityofmaryland michaelhearn jpl"}, {"datetaken": "2005-07-04 00:00:42", "license": "2", "title": "Tempel-1, Prior to Impact", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23608111_5ca67a2bc6_o.jpg", "secret": "5ca67a2bc6", "media": "photo", "latitude": "0", "id": "23608111", "tags": "deepimpact comet comets tempel1 spaceexploration nasa universityofmaryland public"}, {"datetaken": "2005-07-04 00:00:44", "license": "2", "title": "DSCF0571", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23608018_8330de181a_o.jpg", "secret": "8330de181a", "media": "photo", "latitude": "0", "id": "23608018", "tags": "deepimpact comet comets tempel1 spaceexploration nasa universityofmaryland public cometnucleus crater craters nucleus cometnucleussurface nucleussurface flyby flybyimage flybyimages impact collision jpl jetpropulsionlaboratory"}, {"datetaken": "2005-07-04 00:01:34", "license": "2", "title": "Micheal Hearn on Polycom From JPL", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23608239_8b25f99be0_o.jpg", "secret": "8b25f99be0", "media": "photo", "latitude": "0", "id": "23608239", "tags": "deepimpact comet tempel1 spaceexploration comets nasa michaelhearn jpl universityofmaryland"}, {"datetaken": "2005-07-04 00:01:35", "license": "2", "title": "DSCF0584", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23608120_53035bfbd3_o.jpg", "secret": "53035bfbd3", "media": "photo", "latitude": "0", "id": "23608120", "tags": "deepimpact comet comets tempel1 spaceexploration nasa universityofmaryland"}, {"datetaken": "2005-07-04 00:05:04", "license": "2", "title": "", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23608138_945a5113fb_o.jpg", "secret": "945a5113fb", "media": "photo", "latitude": "0", "id": "23608138", "tags": "deepimpact comet comets tempel1 spaceexploration nasa universityofmaryland"}, {"datetaken": "2005-07-04 00:06:05", "license": "2", "title": "JPL Celebrates", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23608031_3221e2fe46_o.jpg", "secret": "3221e2fe46", "media": "photo", "latitude": "0", "id": "23608031", "tags": "deepimpact comet comets tempel1 spaceexploration nasa universityofmaryland public cometnucleus crater craters nucleus cometnucleussurface nucleussurface flyby flybyimage flybyimages impact collision jpl jetpropulsionlaboratory celebration"}, {"datetaken": "2005-07-04 00:07:28", "license": "2", "title": "Impact! 3", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23608037_540f36896a_o.jpg", "secret": "540f36896a", "media": "photo", "latitude": "0", "id": "23608037", "tags": "deepimpact comet comets tempel1 spaceexploration nasa universityofmaryland public cometnucleus crater craters nucleus cometnucleussurface nucleussurface flyby flybyimage flybyimages impact collision"}, {"datetaken": "2005-07-04 00:08:05", "license": "2", "title": "Deep Impact Press Coverage", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23608168_5b8e341e80_o.jpg", "secret": "5b8e341e80", "media": "photo", "latitude": "0", "id": "23608168", "tags": "deepimpact comet comets tempel1 spaceexploration nasa universityofmaryland"}, {"datetaken": "2005-07-04 00:08:24", "license": "2", "title": "Deep Impact Press Coverage", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23608183_30691d6340_o.jpg", "secret": "30691d6340", "media": "photo", "latitude": "0", "id": "23608183", "tags": "deepimpact comet comets tempel1 spaceexploration nasa universityofmaryland"}, {"datetaken": "2005-07-04 00:09:24", "license": "2", "title": "JPL Preps for Impact", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23608192_87cc2bec8f_o.jpg", "secret": "87cc2bec8f", "media": "photo", "latitude": "0", "id": "23608192", "tags": "deepimpact comet tempel1 spaceexploration comets nasa universityofmaryland public"}, {"datetaken": "2005-07-04 00:09:36", "license": "2", "title": "Impact! 1", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23608047_8b6b417208_o.jpg", "secret": "8b6b417208", "media": "photo", "latitude": "0", "id": "23608047", "tags": "deepimpact comet comets tempel1 spaceexploration nasa universityofmaryland public cometnucleus crater craters nucleus cometnucleussurface nucleussurface flyby flybyimage flybyimages impact collision"}, {"datetaken": "2005-07-04 00:09:42", "license": "2", "title": "", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23608217_1419fc263d_o.jpg", "secret": "1419fc263d", "media": "photo", "latitude": "0", "id": "23608217", "tags": "deepimpact comet tempel1 spaceexploration comets nasa universityofmaryland public"}, {"datetaken": "2005-07-04 00:11:35", "license": "2", "title": "Impact! 2", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23608072_725a06c79b_o.jpg", "secret": "725a06c79b", "media": "photo", "latitude": "0", "id": "23608072", "tags": "deepimpact comet comets tempel1 spaceexploration nasa universityofmaryland public cometnucleus crater craters nucleus cometnucleussurface nucleussurface flyby flybyimage flybyimages impact collision"}, {"datetaken": "2005-07-04 00:14:27", "license": "2", "title": "Tempel-1", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23608081_47ff0518f6_o.jpg", "secret": "47ff0518f6", "media": "photo", "latitude": "0", "id": "23608081", "tags": "deepimpact comet comets tempel1 spaceexploration nasa universityofmaryland public cometnucleus crater craters nucleus cometnucleussurface nucleussurface flyby flybyimage flybyimages"}, {"datetaken": "2005-07-04 00:18:29", "license": "2", "title": "Tempel-1, Prior to impact", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23608095_9734c26800_o.jpg", "secret": "9734c26800", "media": "photo", "latitude": "0", "id": "23608095", "tags": "deepimpact comet comets tempel1 spaceexploration nasa universityofmaryland public cometnucleus crater craters nucleus cometnucleussurface nucleussurface flyby flybyimage flybyimages"}, {"datetaken": "2005-07-04 02:00:00", "license": "2", "title": "Impact!", "text": "", "album_id": "611801", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23608153_b3df2a33db_o.jpg", "secret": "b3df2a33db", "media": "photo", "latitude": "0", "id": "23608153", "tags": "deepimpact comet comets tempel1 spaceexploration nasa universityofmaryland impact"}, {"datetaken": "2005-07-04 09:00:25", "license": "2", "title": "Fireworks, Turner Field, July 4th 2005", "text": "", "album_id": "545050", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23765037_13ff28e3b3_o.jpg", "secret": "13ff28e3b3", "media": "photo", "latitude": "0", "id": "23765037", "tags": "atlanta 4th july fireworks turner field 2005 braves cubs independence day"}, {"datetaken": "2005-07-04 09:00:48", "license": "2", "title": "Fireworks, Turner Field, July 4th 2005", "text": "", "album_id": "545050", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23765095_8846e2cbcd_o.jpg", "secret": "8846e2cbcd", "media": "photo", "latitude": "0", "id": "23765095", "tags": "atlanta 4th july fireworks turner field 2005"}, {"datetaken": "2005-07-04 09:01:41", "license": "2", "title": "Fireworks, Turner Field, July 4th 2005", "text": "", "album_id": "545050", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23765415_fbd323d9f0_o.jpg", "secret": "fbd323d9f0", "media": "photo", "latitude": "0", "id": "23765415", "tags": "atlanta 4th july fireworks turner field 2005"}, {"datetaken": "2005-07-04 09:08:15", "license": "2", "title": "Fireworks, Turner Field, July 4th 2005", "text": "", "album_id": "545050", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23765474_1da7ad835c_o.jpg", "secret": "1da7ad835c", "media": "photo", "latitude": "0", "id": "23765474", "tags": "atlanta 4th july fireworks turner field 2005"}, {"datetaken": "2005-07-04 09:08:21", "license": "2", "title": "Fireworks, Turner Field, July 4th 2005", "text": "", "album_id": "545050", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23765514_d611d09219_o.jpg", "secret": "d611d09219", "media": "photo", "latitude": "0", "id": "23765514", "tags": "atlanta 4th july fireworks turner field 2005"}, {"datetaken": "2005-07-04 09:11:21", "license": "2", "title": "Fireworks, Turner Field, July 4th 2005", "text": "", "album_id": "545050", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23764538_53559a3ee0_o.jpg", "secret": "53559a3ee0", "media": "photo", "latitude": "0", "id": "23764538", "tags": "atlanta 4th july fireworks turner field 2005"}, {"datetaken": "2005-07-04 09:11:22", "license": "2", "title": "Fireworks, Turner Field, July 4th 2005", "text": "", "album_id": "545050", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23764574_b93085259a_o.jpg", "secret": "b93085259a", "media": "photo", "latitude": "0", "id": "23764574", "tags": "atlanta 4th july fireworks turner field 2005"}, {"datetaken": "2005-07-04 09:13:35", "license": "2", "title": "Fireworks, Turner Field, July 4th 2005", "text": "", "album_id": "545050", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/23764667_d340a3928d_o.jpg", "secret": "d340a3928d", "media": "photo", "latitude": "0", "id": "23764667", "tags": "atlanta 4th july fireworks turner field 2005 seasons"}, {"datetaken": "2005-07-04 09:13:36", "license": "2", "title": "Fireworks, Turner Field, July 4th 2005", "text": "", "album_id": "545050", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/23764695_ed46434a1b_o.jpg", "secret": "ed46434a1b", "media": "photo", "latitude": "0", "id": "23764695", "tags": "atlanta 4th july fireworks turner field 2005"}, {"datetaken": "2005-07-04 09:13:38", "license": "2", "title": "Fireworks, Turner Field, July 4th 2005", "text": "", "album_id": "545050", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23764755_fd78a63f9a_o.jpg", "secret": "fd78a63f9a", "media": "photo", "latitude": "0", "id": "23764755", "tags": "atlanta 4th july fireworks turner field 2005"}, {"datetaken": "2005-07-04 09:13:58", "license": "2", "title": "Fireworks, Turner Field, July 4th 2005", "text": "", "album_id": "545050", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23764846_c5a118d322_o.jpg", "secret": "c5a118d322", "media": "photo", "latitude": "0", "id": "23764846", "tags": "atlanta 4th july fireworks turner field 2005"}, {"datetaken": "2005-07-04 09:14:03", "license": "2", "title": "Fireworks, Turner Field, July 4th 2005", "text": "", "album_id": "545050", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23764888_bc841f9f5e_o.jpg", "secret": "bc841f9f5e", "media": "photo", "latitude": "0", "id": "23764888", "tags": "atlanta 4th july fireworks turner field 2005"}, {"datetaken": "2005-07-04 09:14:10", "license": "2", "title": "Fireworks, Turner Field, July 4th 2005", "text": "", "album_id": "545050", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23764979_c5d11ac17e_o.jpg", "secret": "c5d11ac17e", "media": "photo", "latitude": "0", "id": "23764979", "tags": "atlanta 4th july fireworks turner field 2005"}, {"datetaken": "2005-07-04 16:39:51", "license": "1", "title": "", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23935077_66f8ebe35e_o.jpg", "secret": "66f8ebe35e", "media": "photo", "latitude": "0", "id": "23935077", "tags": "cambridge geotagged bbq july4 henrystreet geolat42355847 geolon71109746"}, {"datetaken": "2005-07-04 16:41:37", "license": "1", "title": "Tbone", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23935430_545d4757bd_o.jpg", "secret": "545d4757bd", "media": "photo", "latitude": "0", "id": "23935430", "tags": "cambridge geotagged bbq grill july4 henrystreet geolat42355847 geolon71109746"}, {"datetaken": "2005-07-04 18:07:43", "license": "1", "title": "park", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23935805_67dda126c3_o.jpg", "secret": "67dda126c3", "media": "photo", "latitude": "0", "id": "23935805", "tags": "park cambridge geotagged bbq july4 henrystreet geolat42356375 geolon71109781"}, {"datetaken": "2005-07-04 19:08:51", "license": "1", "title": "Charles", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23936154_2bef91619e_o.jpg", "secret": "2bef91619e", "media": "photo", "latitude": "0", "id": "23936154", "tags": "bridge cambridge boston geotagged charlesriver july4 geolat42352629 geolon71110564"}, {"datetaken": "2005-07-04 19:09:19", "license": "1", "title": "bridge", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23936540_2a30253afd_o.jpg", "secret": "2a30253afd", "media": "photo", "latitude": "0", "id": "23936540", "tags": "bridge cambridge me boston john geotagged charlesriver july4 ned geo:lat=42352677 geo:lon=71110586"}, {"datetaken": "2005-07-04 20:08:40", "license": "1", "title": "sunset", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23936842_3989a67a6b_o.jpg", "secret": "3989a67a6b", "media": "photo", "latitude": "0", "id": "23936842", "tags": "july4 party boston stef sunset exeter beacon charlesriver backbay geotagged geolat42352989 geolon71081013 liox"}, {"datetaken": "2005-07-04 20:16:57", "license": "1", "title": "bottle", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23937088_e4c423a287_o.jpg", "secret": "e4c423a287", "media": "photo", "latitude": "0", "id": "23937088", "tags": "july4 boston stef party nobuko exeter beacon charlesriver backbay geotagged geolat42352989 geolon71081013 liox"}, {"datetaken": "2005-07-04 20:17:30", "license": "1", "title": "Anette, Patric", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23937386_ef7ab4392f_o.jpg", "secret": "ef7ab4392f", "media": "photo", "latitude": "0", "id": "23937386", "tags": "july4 anette boston stef party patric exeter beacon charlesriver backbay geotagged geolat42352989 geolon71081013 liox"}, {"datetaken": "2005-07-04 20:43:58", "license": "1", "title": "Fireworks1", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23937532_bb925cd4eb_o.jpg", "secret": "bb925cd4eb", "media": "photo", "latitude": "0", "id": "23937532", "tags": "july4 boston stef party fireworks exeter beacon charlesriver backbay geotagged geolat42352989 geolon71081013 liox"}, {"datetaken": "2005-07-04 21:38:41", "license": "1", "title": "Anette", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23937742_2ffcc604cc_o.jpg", "secret": "2ffcc604cc", "media": "photo", "latitude": "0", "id": "23937742", "tags": "july4 boston stef party anette exeter beacon charlesriver backbay geotagged geolat42352989 geolon71081013 liox"}, {"datetaken": "2005-07-04 21:45:32", "license": "1", "title": "fireworks2", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23937960_fafaba67e8_o.jpg", "secret": "fafaba67e8", "media": "photo", "latitude": "0", "id": "23937960", "tags": "july4 boston stef party fireworks exeter beacon charlesriver backbay geotagged geolat42352989 geolon71081013 liox"}, {"datetaken": "2005-07-04 21:45:42", "license": "1", "title": "fireworks3", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23938448_b5d40e54f9_o.jpg", "secret": "b5d40e54f9", "media": "photo", "latitude": "0", "id": "23938448", "tags": "july4 boston stef party fireworks exeter beacon charlesriver backbay geotagged geolat42352989 geolon71081013 liox"}, {"datetaken": "2005-07-04 21:46:42", "license": "1", "title": "awe", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23938229_10122c051f_o.jpg", "secret": "10122c051f", "media": "photo", "latitude": "0", "id": "23938229", "tags": "july4 boston stef party nobuko annete exeter beacon charlesriver backbay geotagged geolat42352989 geolon71081013 liox"}, {"datetaken": "2005-07-04 21:52:44", "license": "1", "title": "fireworks4", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23938662_6ffa8b34e2_o.jpg", "secret": "6ffa8b34e2", "media": "photo", "latitude": "0", "id": "23938662", "tags": "july4 boston stef party fireworks exeter beacon charlesriver backbay geotagged geolat42352989 geolon71081013 liox"}, {"datetaken": "2005-07-04 21:52:57", "license": "1", "title": "show", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23938938_c18a3cf383_o.jpg", "secret": "c18a3cf383", "media": "photo", "latitude": "0", "id": "23938938", "tags": "party me boston john geotagged charlesriver exeter july4 ned beacon backbay stef nobuko liox geo:lat=42352989 geo:lon=71081013"}, {"datetaken": "2005-07-04 21:53:32", "license": "1", "title": "Nobuko, Geoff", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23939289_c669855fab_o.jpg", "secret": "c669855fab", "media": "photo", "latitude": "0", "id": "23939289", "tags": "july4 boston stef party nobuko geoff exeter beacon charlesriver backbay geotagged geolat42352989 geolon71081013 liox"}, {"datetaken": "2005-07-04 21:59:12", "license": "1", "title": "group", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23939582_87f3e02e39_o.jpg", "secret": "87f3e02e39", "media": "photo", "latitude": "0", "id": "23939582", "tags": "party me boston john geotagged geoff charlesriver anette lisa exeter july4 presley ned beacon backbay stef nobuko patric liox geo:lat=42352989 geo:lon=71081013"}, {"datetaken": "2005-07-04 22:14:12", "license": "1", "title": "Beacon", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23939966_0b4a6da3c1_o.jpg", "secret": "0b4a6da3c1", "media": "photo", "latitude": "0", "id": "23939966", "tags": "july4 boston stef party exeter beacon charlesriver geotagged geolat42352989 geolon71081013 liox"}, {"datetaken": "2005-07-04 22:14:53", "license": "1", "title": "Beacon2", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23940376_04e072b2f1_o.jpg", "secret": "04e072b2f1", "media": "photo", "latitude": "0", "id": "23940376", "tags": "july4 boston stef party exeter beacon charlesriver backbay geotagged geolat42352989 geolon71081013 liox"}, {"datetaken": "2005-07-04 22:17:37", "license": "1", "title": "Tobester", "text": "", "album_id": "548541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23940683_95495a5d50_o.jpg", "secret": "95495a5d50", "media": "photo", "latitude": "0", "id": "23940683", "tags": "party boston cat geotagged charlesriver exeter july4 tobey beacon backbay stef liox geo:lat=42352989 geo:lon=71081013"}, {"datetaken": "2005-07-04 12:46:21", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.981515", "url_o": "https://farm1.staticflickr.com/18/23942338_eaeb56a352_o.jpg", "secret": "eaeb56a352", "media": "photo", "latitude": "40.575308", "id": "23942338", "tags": "nathanshotdogeatingcontest coneyisland nyc newyorkcity brooklyn walk nouturn"}, {"datetaken": "2005-07-04 12:46:27", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.981515", "url_o": "https://farm1.staticflickr.com/18/23942765_123e1c0031_o.jpg", "secret": "123e1c0031", "media": "photo", "latitude": "40.575308", "id": "23942765", "tags": "coneyisland nyc newyorkcity brooklyn nathanshotdogeatingcontest"}, {"datetaken": "2005-07-04 12:46:36", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.981515", "url_o": "https://farm1.staticflickr.com/18/23943122_8d3500b3b3_o.jpg", "secret": "8d3500b3b3", "media": "photo", "latitude": "40.575308", "id": "23943122", "tags": "coneyisland nyc newyorkcity brooklyn nathanshotdogeatingcontest nathans"}, {"datetaken": "2005-07-04 12:46:48", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.981515", "url_o": "https://farm1.staticflickr.com/18/23943559_7747a372ae_o.jpg", "secret": "7747a372ae", "media": "photo", "latitude": "40.575308", "id": "23943559", "tags": "coneyisland nyc newyorkcity brooklyn nathanshotdogeatingcontest"}, {"datetaken": "2005-07-04 12:46:59", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.981515", "url_o": "https://farm1.staticflickr.com/18/23943743_14f114aab3_o.jpg", "secret": "14f114aab3", "media": "photo", "latitude": "40.575308", "id": "23943743", "tags": "coneyisland nyc newyorkcity brooklyn nathanshotdogeatingcontest yellow thundersticks nathans"}, {"datetaken": "2005-07-04 12:47:48", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.981515", "url_o": "https://farm1.staticflickr.com/18/23943820_6d4fc71a9c_o.jpg", "secret": "6d4fc71a9c", "media": "photo", "latitude": "40.575308", "id": "23943820", "tags": "coneyisland nyc newyorkcity brooklyn nathanshotdogeatingcontest hotdog nathans"}, {"datetaken": "2005-07-04 12:49:27", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.981515", "url_o": "https://farm1.staticflickr.com/18/23946534_2d0218e3de_o.jpg", "secret": "2d0218e3de", "media": "photo", "latitude": "40.575308", "id": "23946534", "tags": "nathanshotdogeatingcontest coneyisland newyorkcity nyc brooklyn"}, {"datetaken": "2005-07-04 12:52:28", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.981515", "url_o": "https://farm1.staticflickr.com/18/23947023_b40851051c_o.jpg", "secret": "b40851051c", "media": "photo", "latitude": "40.575308", "id": "23947023", "tags": "nathanshotdogeatingcontest nathans balloons coneyisland newyorkcity nyc brooklyn"}, {"datetaken": "2005-07-04 12:53:50", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.981515", "url_o": "https://farm1.staticflickr.com/18/23947894_28bde426ab_o.jpg", "secret": "28bde426ab", "media": "photo", "latitude": "40.575308", "id": "23947894", "tags": "coneyisland nyc newyorkcity brooklyn nathanshotdogeatingcontest nathans baby"}, {"datetaken": "2005-07-04 12:54:57", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.981515", "url_o": "https://farm1.staticflickr.com/18/23948177_5f75a4fb92_o.jpg", "secret": "5f75a4fb92", "media": "photo", "latitude": "40.575308", "id": "23948177", "tags": "coneyisland nyc newyorkcity brooklyn nathanshotdogeatingcontest"}, {"datetaken": "2005-07-04 12:55:07", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.981772", "url_o": "https://farm1.staticflickr.com/18/23948442_30ff48745a_o.jpg", "secret": "30ff48745a", "media": "photo", "latitude": "40.575198", "id": "23948442", "tags": "coneyisland nyc newyorkcity brooklyn nathanshotdogeatingcontest red balloon theredballoon"}, {"datetaken": "2005-07-04 13:26:23", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.981772", "url_o": "https://farm1.staticflickr.com/18/23948897_8be3feeb58_o.jpg", "secret": "8be3feeb58", "media": "photo", "latitude": "40.575198", "id": "23948897", "tags": "coneyisland nyc newyorkcity brooklyn nathans"}, {"datetaken": "2005-07-04 13:26:55", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.981772", "url_o": "https://farm1.staticflickr.com/18/23949355_895003df7a_o.jpg", "secret": "895003df7a", "media": "photo", "latitude": "40.575198", "id": "23949355", "tags": "coneyisland nyc newyorkcity brooklyn nathans"}, {"datetaken": "2005-07-04 13:27:10", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.981772", "url_o": "https://farm1.staticflickr.com/18/23949853_e600ddbd80_o.jpg", "secret": "e600ddbd80", "media": "photo", "latitude": "40.575198", "id": "23949853", "tags": "coneyisland nyc newyorkcity brooklyn nathans hotdog fries billboard"}, {"datetaken": "2005-07-04 13:41:13", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.984401", "url_o": "https://farm1.staticflickr.com/18/23950181_8bba239ee4_o.jpg", "secret": "8bba239ee4", "media": "photo", "latitude": "40.572916", "id": "23950181", "tags": "coneyisland nyc newyorkcity brooklyn parachutedrop ride"}, {"datetaken": "2005-07-04 13:41:25", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.984401", "url_o": "https://farm1.staticflickr.com/18/23950557_5b85792c4a_o.jpg", "secret": "5b85792c4a", "media": "photo", "latitude": "40.572916", "id": "23950557", "tags": "coneyisland nyc newyorkcity brooklyn parachutedrop ride"}, {"datetaken": "2005-07-04 13:58:36", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.973264", "url_o": "https://farm1.staticflickr.com/18/23951056_664ddabc6e_o.jpg", "secret": "664ddabc6e", "media": "photo", "latitude": "40.573927", "id": "23951056", "tags": "coneyisland nyc newyorkcity brooklyn"}, {"datetaken": "2005-07-04 14:00:56", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.973264", "url_o": "https://farm1.staticflickr.com/18/23951556_f74b465128_o.jpg", "secret": "f74b465128", "media": "photo", "latitude": "40.573927", "id": "23951556", "tags": "coneyisland nyc newyorkcity brooklyn"}, {"datetaken": "2005-07-04 14:02:11", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.972706", "url_o": "https://farm1.staticflickr.com/18/23952336_4ebb81a51a_o.jpg", "secret": "4ebb81a51a", "media": "photo", "latitude": "40.574375", "id": "23952336", "tags": "coneyisland nyc newyorkcity brooklyn handball"}, {"datetaken": "2005-07-04 14:29:52", "license": "1", "title": "Coney Island on 4th of July", "text": "", "album_id": "548676", "longitude": "-73.980163", "url_o": "https://farm1.staticflickr.com/16/23952799_c5c9b49695_o.jpg", "secret": "c5c9b49695", "media": "photo", "latitude": "40.575455", "id": "23952799", "tags": "coneyisland nyc newyorkcity brooklyn kristin lips whistle pink"}, {"datetaken": "2005-07-04 18:23:00", "license": "1", "title": "SOMEHOW I TURNED THIS PHOTO PURPLE IN iPHOTO", "text": "", "album_id": "549537", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23992620_db569c686d_o.jpg", "secret": "db569c686d", "media": "photo", "latitude": "0", "id": "23992620", "tags": "july4 departmentofsafety anacortes music scoutniblett mounteerie"}, {"datetaken": "2005-07-04 18:23:11", "license": "1", "title": "Flint", "text": "", "album_id": "549537", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23991274_066ecb7a5c_o.jpg", "secret": "066ecb7a5c", "media": "photo", "latitude": "0", "id": "23991274", "tags": "july4 departmentofsafety anacortes music scoutniblett mounteerie"}, {"datetaken": "2005-07-04 18:23:21", "license": "1", "title": "Phil", "text": "", "album_id": "549537", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23992842_2eb1b36637_o.jpg", "secret": "2eb1b36637", "media": "photo", "latitude": "0", "id": "23992842", "tags": "july4 departmentofsafety anacortes music scoutniblett mounteerie"}, {"datetaken": "2005-07-04 19:11:17", "license": "1", "title": "Phil and Flint", "text": "", "album_id": "549537", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23992686_8ec55c568d_o.jpg", "secret": "8ec55c568d", "media": "photo", "latitude": "0", "id": "23992686", "tags": "july4 departmentofsafety anacortes music scoutniblett mounteerie"}, {"datetaken": "2005-07-04 19:59:26", "license": "1", "title": "Afri Rampo", "text": "", "album_id": "549537", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23992111_81df65d388_o.jpg", "secret": "81df65d388", "media": "photo", "latitude": "0", "id": "23992111", "tags": "july4 departmentofsafety anacortes music scoutniblett mounteerie"}, {"datetaken": "2005-07-04 20:18:09", "license": "1", "title": "Afri Rampo", "text": "", "album_id": "549537", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23992302_a1d1aa8cb6_o.jpg", "secret": "a1d1aa8cb6", "media": "photo", "latitude": "0", "id": "23992302", "tags": "july4 departmentofsafety anacortes music scoutniblett mounteerie"}, {"datetaken": "2005-07-04 20:59:03", "license": "1", "title": "Mount Eerie", "text": "", "album_id": "549537", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23991910_774f440eca_o.jpg", "secret": "774f440eca", "media": "photo", "latitude": "0", "id": "23991910", "tags": "july4 departmentofsafety anacortes music scoutniblett mounteerie"}, {"datetaken": "2005-07-04 20:59:14", "license": "1", "title": "Mount Eerie", "text": "", "album_id": "549537", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23991762_bc1f30f893_o.jpg", "secret": "bc1f30f893", "media": "photo", "latitude": "0", "id": "23991762", "tags": "july4 departmentofsafety anacortes music scoutniblett mounteerie"}, {"datetaken": "2005-07-04 21:44:53", "license": "1", "title": "Scout Niblett", "text": "", "album_id": "549537", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23991627_15877eea40_o.jpg", "secret": "15877eea40", "media": "photo", "latitude": "0", "id": "23991627", "tags": "july4 departmentofsafety anacortes music scoutniblett mounteerie"}, {"datetaken": "2005-07-04 21:52:48", "license": "1", "title": "Scout Niblett", "text": "", "album_id": "549537", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/23991482_b82ed671f4_o.jpg", "secret": "b82ed671f4", "media": "photo", "latitude": "0", "id": "23991482", "tags": "july4 departmentofsafety anacortes music scoutniblett mounteerie"}, {"datetaken": "2005-07-04 22:23:55", "license": "1", "title": "Scout Niblett", "text": "", "album_id": "549537", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23991359_9ed50bf52a_o.jpg", "secret": "9ed50bf52a", "media": "photo", "latitude": "0", "id": "23991359", "tags": "july4 departmentofsafety anacortes music scoutniblett mounteerie"}, {"datetaken": "2005-07-04 22:36:43", "license": "1", "title": "EXPLODING FIRE IS THE AMERICAN DREAM", "text": "", "album_id": "549537", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23993093_5c491a9d08_o.jpg", "secret": "5c491a9d08", "media": "photo", "latitude": "0", "id": "23993093", "tags": "july4 departmentofsafety anacortes music scoutniblett mounteerie"}, {"datetaken": "2005-07-04 22:37:27", "license": "1", "title": "DoS audience watches fireworks", "text": "", "album_id": "549537", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23993038_290e31533b_o.jpg", "secret": "290e31533b", "media": "photo", "latitude": "0", "id": "23993038", "tags": "july4 departmentofsafety anacortes music scoutniblett mounteerie"}, {"datetaken": "2005-07-04 22:39:08", "license": "1", "title": "Megan, Pete, Rachel, a dude on the right, blurry light", "text": "", "album_id": "549537", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23992941_0153cb19f7_o.jpg", "secret": "0153cb19f7", "media": "photo", "latitude": "0", "id": "23992941", "tags": "july4 departmentofsafety anacortes music scoutniblett mounteerie"}, {"datetaken": "2005-07-04 22:39:19", "license": "1", "title": "Rachel, Pete, Megan", "text": "", "album_id": "549537", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23992990_693e3a8db3_o.jpg", "secret": "693e3a8db3", "media": "photo", "latitude": "0", "id": "23992990", "tags": "july4 departmentofsafety anacortes music scoutniblett mounteerie"}, {"datetaken": "2005-07-04 22:39:51", "license": "1", "title": "THE AMERICAN DREAM", "text": "", "album_id": "549537", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23993203_6364e5fcae_o.jpg", "secret": "6364e5fcae", "media": "photo", "latitude": "0", "id": "23993203", "tags": "july4 departmentofsafety anacortes music scoutniblett mounteerie"}, {"datetaken": "2005-07-04 21:37:48", "license": "1", "title": "4th of July fireworks, Tulsa, OK", "text": "", "album_id": "1005013", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/45997713_564c8f1ed3_o.jpg", "secret": "564c8f1ed3", "media": "photo", "latitude": "0", "id": "45997713", "tags": ""}, {"datetaken": "2005-07-04 21:44:35", "license": "1", "title": "4th of July fireworks, Tulsa, OK", "text": "", "album_id": "1005013", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/45997729_bcc48face7_o.jpg", "secret": "bcc48face7", "media": "photo", "latitude": "0", "id": "45997729", "tags": ""}, {"datetaken": "2005-07-04 21:45:03", "license": "1", "title": "4th of July fireworks, Tulsa, OK", "text": "", "album_id": "1005013", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/45997738_eb63295aef_o.jpg", "secret": "eb63295aef", "media": "photo", "latitude": "0", "id": "45997738", "tags": ""}, {"datetaken": "2005-07-04 21:45:58", "license": "1", "title": "4th of July fireworks, Tulsa, OK", "text": "", "album_id": "1005013", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/45997749_401b8690f9_o.jpg", "secret": "401b8690f9", "media": "photo", "latitude": "0", "id": "45997749", "tags": ""}, {"datetaken": "2005-07-04 21:47:24", "license": "1", "title": "4th of July fireworks, Tulsa, OK", "text": "", "album_id": "1005013", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/45997757_9ea473577c_o.jpg", "secret": "9ea473577c", "media": "photo", "latitude": "0", "id": "45997757", "tags": ""}, {"datetaken": "2005-07-04 21:48:07", "license": "1", "title": "4th of July fireworks, Tulsa, OK", "text": "", "album_id": "1005013", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/45997777_f92849b154_o.jpg", "secret": "f92849b154", "media": "photo", "latitude": "0", "id": "45997777", "tags": ""}, {"datetaken": "2005-07-04 21:50:27", "license": "1", "title": "4th of July fireworks, Tulsa, OK", "text": "", "album_id": "1005013", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/45997791_78ae153f93_o.jpg", "secret": "78ae153f93", "media": "photo", "latitude": "0", "id": "45997791", "tags": ""}, {"datetaken": "2005-07-04 21:50:36", "license": "1", "title": "4th of July fireworks, Tulsa, OK", "text": "", "album_id": "1005013", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/45997803_71cf725c9a_o.jpg", "secret": "71cf725c9a", "media": "photo", "latitude": "0", "id": "45997803", "tags": ""}, {"datetaken": "2005-07-04 21:51:12", "license": "1", "title": "4th of July fireworks, Tulsa, OK", "text": "", "album_id": "1005013", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/45997808_6dbca7f346_o.jpg", "secret": "6dbca7f346", "media": "photo", "latitude": "0", "id": "45997808", "tags": ""}, {"datetaken": "2005-07-04 21:51:42", "license": "1", "title": "4th of July fireworks, Tulsa, OK", "text": "", "album_id": "1005013", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/45997814_374f15f327_o.jpg", "secret": "374f15f327", "media": "photo", "latitude": "0", "id": "45997814", "tags": ""}, {"datetaken": "2005-07-04 21:53:10", "license": "1", "title": "4th of July fireworks, Tulsa, OK", "text": "", "album_id": "1005013", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/45997826_31ecc431a3_o.jpg", "secret": "31ecc431a3", "media": "photo", "latitude": "0", "id": "45997826", "tags": ""}, {"datetaken": "2005-07-04 21:56:26", "license": "1", "title": "4th of July fireworks, Tulsa, OK", "text": "", "album_id": "1005013", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/45997844_e2382dfcac_o.jpg", "secret": "e2382dfcac", "media": "photo", "latitude": "0", "id": "45997844", "tags": ""}, {"datetaken": "2005-07-04 22:01:04", "license": "1", "title": "4th of July fireworks, Tulsa, OK", "text": "", "album_id": "1005013", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/45997848_a815997f80_o.jpg", "secret": "a815997f80", "media": "photo", "latitude": "0", "id": "45997848", "tags": ""}, {"datetaken": "2005-07-04 22:02:26", "license": "1", "title": "4th of July fireworks, Tulsa, OK", "text": "", "album_id": "1005013", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/45997859_b7171cc75a_o.jpg", "secret": "b7171cc75a", "media": "photo", "latitude": "0", "id": "45997859", "tags": ""}, {"datetaken": "2005-07-04 12:02:58", "license": "2", "title": "Golden Gate Bridge (DSCN2826)", "text": "", "album_id": "1190991", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/54918484_91987ff1b6_o.jpg", "secret": "91987ff1b6", "media": "photo", "latitude": "0", "id": "54918484", "tags": ""}, {"datetaken": "2005-07-04 12:09:16", "license": "2", "title": "Houseboats, Sausalito (DSCN2837)", "text": "", "album_id": "1190991", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/54918505_737d2d8c8a_o.jpg", "secret": "737d2d8c8a", "media": "photo", "latitude": "0", "id": "54918505", "tags": ""}, {"datetaken": "2005-07-04 13:59:14", "license": "2", "title": "Phil M (DSCN2854)", "text": "", "album_id": "1190991", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/54918533_f82429ec12_o.jpg", "secret": "f82429ec12", "media": "photo", "latitude": "0", "id": "54918533", "tags": ""}, {"datetaken": "2005-07-04 14:09:09", "license": "2", "title": "Triangulation point (DSCN2855)", "text": "", "album_id": "1190991", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/54918568_c7d0d3b87c_o.jpg", "secret": "c7d0d3b87c", "media": "photo", "latitude": "0", "id": "54918568", "tags": ""}, {"datetaken": "2005-07-04 16:23:28", "license": "2", "title": "Plank (DSCN2861)", "text": "", "album_id": "1190991", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/54918612_1d6cdbb9a3_o.jpg", "secret": "1d6cdbb9a3", "media": "photo", "latitude": "0", "id": "54918612", "tags": ""}, {"datetaken": "2005-07-04 17:13:52", "license": "2", "title": "Sunset from Mt Tamalpais (DSCN2867)", "text": "", "album_id": "1190991", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/54918635_9b39fddd75_o.jpg", "secret": "9b39fddd75", "media": "photo", "latitude": "0", "id": "54918635", "tags": ""}, {"datetaken": "2005-07-04 17:26:06", "license": "2", "title": "Shadow of Mt Tamalpais (DSCN2878)", "text": "", "album_id": "1190991", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/54918659_9a8135fc5b_o.jpg", "secret": "9a8135fc5b", "media": "photo", "latitude": "0", "id": "54918659", "tags": ""}, {"datetaken": "2005-07-04 17:44:07", "license": "2", "title": "Sunset from Mt Tamalpais (DSCN2887)", "text": "", "album_id": "1190991", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/54918677_8054cd6531_o.jpg", "secret": "8054cd6531", "media": "photo", "latitude": "0", "id": "54918677", "tags": ""}, {"datetaken": "2005-07-04 17:48:41", "license": "2", "title": "Sunset from Mt Tamalpais (DSCN2895)", "text": "", "album_id": "1190991", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/54918694_440e02b5a7_o.jpg", "secret": "440e02b5a7", "media": "photo", "latitude": "0", "id": "54918694", "tags": ""}, {"datetaken": "2005-07-04 18:11:02", "license": "2", "title": "San Francisco Bay (DSCN2900)", "text": "", "album_id": "1190991", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/54918705_a106322754_o.jpg", "secret": "a106322754", "media": "photo", "latitude": "0", "id": "54918705", "tags": ""}, {"datetaken": "2005-07-04 19:49:52", "license": "2", "title": "Approaching the Golden Gate Bridge (DSCN2952)", "text": "", "album_id": "1190991", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/54918719_efffef3246_o.jpg", "secret": "efffef3246", "media": "photo", "latitude": "0", "id": "54918719", "tags": ""}, {"datetaken": "2005-07-04 13:41:17", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/38959592_a55520de68_o.jpg", "secret": "a55520de68", "media": "photo", "latitude": "0", "id": "38959592", "tags": "niagarafalls"}, {"datetaken": "2005-07-04 13:43:15", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/38959590_cc8ff76bb3_o.jpg", "secret": "cc8ff76bb3", "media": "photo", "latitude": "0", "id": "38959590", "tags": "niagarafalls"}, {"datetaken": "2005-07-04 13:45:37", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/38959589_7c42c9db8c_o.jpg", "secret": "7c42c9db8c", "media": "photo", "latitude": "0", "id": "38959589", "tags": "niagarafalls"}, {"datetaken": "2005-07-04 13:47:41", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/38959588_a99f06f8b0_o.jpg", "secret": "a99f06f8b0", "media": "photo", "latitude": "0", "id": "38959588", "tags": "niagarafalls"}, {"datetaken": "2005-07-04 13:47:54", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/38959587_bbf98c8db6_o.jpg", "secret": "bbf98c8db6", "media": "photo", "latitude": "0", "id": "38959587", "tags": "niagarafalls"}, {"datetaken": "2005-07-04 13:48:36", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/38957183_0918a527ff_o.jpg", "secret": "0918a527ff", "media": "photo", "latitude": "0", "id": "38957183", "tags": "niagarafalls"}, {"datetaken": "2005-07-04 13:49:53", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/38957182_cadea427ae_o.jpg", "secret": "cadea427ae", "media": "photo", "latitude": "0", "id": "38957182", "tags": "niagarafalls"}, {"datetaken": "2005-07-04 13:53:28", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/38957181_964011e7b8_o.jpg", "secret": "964011e7b8", "media": "photo", "latitude": "0", "id": "38957181", "tags": "niagarafalls"}, {"datetaken": "2005-07-04 13:53:46", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/38957180_2c55eaa514_o.jpg", "secret": "2c55eaa514", "media": "photo", "latitude": "0", "id": "38957180", "tags": "niagarafalls"}, {"datetaken": "2005-07-04 13:55:02", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/38957179_ada9c6190b_o.jpg", "secret": "ada9c6190b", "media": "photo", "latitude": "0", "id": "38957179", "tags": "niagarafalls"}, {"datetaken": "2005-07-04 13:59:12", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/38957178_e955523a90_o.jpg", "secret": "e955523a90", "media": "photo", "latitude": "0", "id": "38957178", "tags": "niagarafalls"}, {"datetaken": "2005-07-04 14:00:36", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/38953450_449b94d4be_o.jpg", "secret": "449b94d4be", "media": "photo", "latitude": "0", "id": "38953450", "tags": "niagarafalls"}, {"datetaken": "2005-07-04 14:57:43", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/38924577_3883d9d339_o.jpg", "secret": "3883d9d339", "media": "photo", "latitude": "0", "id": "38924577", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:02:47", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/38924576_45b8437e02_o.jpg", "secret": "45b8437e02", "media": "photo", "latitude": "0", "id": "38924576", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:09:41", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/38959591_c383c4a7b3_o.jpg", "secret": "c383c4a7b3", "media": "photo", "latitude": "0", "id": "38959591", "tags": "niagarafalls"}, {"datetaken": "2005-07-04 15:17:22", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/38960681_3ea1cae897_o.jpg", "secret": "3ea1cae897", "media": "photo", "latitude": "0", "id": "38960681", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:19:34", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/38946646_ae747c4984_o.jpg", "secret": "ae747c4984", "media": "photo", "latitude": "0", "id": "38946646", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:21:27", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/38946645_d176692313_o.jpg", "secret": "d176692313", "media": "photo", "latitude": "0", "id": "38946645", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:25:52", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/38946644_d7abd2ea8f_o.jpg", "secret": "d7abd2ea8f", "media": "photo", "latitude": "0", "id": "38946644", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:26:05", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/38946643_39852d0dae_o.jpg", "secret": "39852d0dae", "media": "photo", "latitude": "0", "id": "38946643", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:26:34", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/38946642_0edf2739f9_o.jpg", "secret": "0edf2739f9", "media": "photo", "latitude": "0", "id": "38946642", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:26:53", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/38946641_f49ecbd7f6_o.jpg", "secret": "f49ecbd7f6", "media": "photo", "latitude": "0", "id": "38946641", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:27:57", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/38941597_96d4cbd6cc_o.jpg", "secret": "96d4cbd6cc", "media": "photo", "latitude": "0", "id": "38941597", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:28:37", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/38941596_411e473ac0_o.jpg", "secret": "411e473ac0", "media": "photo", "latitude": "0", "id": "38941596", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:29:15", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/38941595_1f910841bc_o.jpg", "secret": "1f910841bc", "media": "photo", "latitude": "0", "id": "38941595", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:30:19", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/38941594_2022c63048_o.jpg", "secret": "2022c63048", "media": "photo", "latitude": "0", "id": "38941594", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:32:57", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/38941593_d3adc77f68_o.jpg", "secret": "d3adc77f68", "media": "photo", "latitude": "0", "id": "38941593", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:33:48", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/38941591_cd864b6092_o.jpg", "secret": "cd864b6092", "media": "photo", "latitude": "0", "id": "38941591", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:34:52", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/38924581_bd8a6bfbc0_o.jpg", "secret": "bd8a6bfbc0", "media": "photo", "latitude": "0", "id": "38924581", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:35:16", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/38924580_c539430d1d_o.jpg", "secret": "c539430d1d", "media": "photo", "latitude": "0", "id": "38924580", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:35:33", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/38924579_0df52f197d_o.jpg", "secret": "0df52f197d", "media": "photo", "latitude": "0", "id": "38924579", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2005-07-04 15:36:11", "license": "2", "title": "Niagara Falls: 4th of July, 2005", "text": "", "album_id": "852521", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/38924578_34ea5d01a3_o.jpg", "secret": "34ea5d01a3", "media": "photo", "latitude": "0", "id": "38924578", "tags": "niagarafalls maidofthemist"}, {"datetaken": "2006-07-01 07:04:03", "license": "6", "title": "Ready, Aim", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/180756036_0d728f581a_o.jpg", "secret": "0d728f581a", "media": "photo", "latitude": "0", "id": "180756036", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 07:04:40", "license": "6", "title": "", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/180756710_79d5349516_o.jpg", "secret": "79d5349516", "media": "photo", "latitude": "0", "id": "180756710", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 07:06:47", "license": "6", "title": "", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/180757809_d36c795a73_o.jpg", "secret": "d36c795a73", "media": "photo", "latitude": "0", "id": "180757809", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 07:12:08", "license": "6", "title": "I Mean It", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/180758574_0ac8835612_o.jpg", "secret": "0ac8835612", "media": "photo", "latitude": "0", "id": "180758574", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 07:23:03", "license": "6", "title": "Caution", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/180759388_f3543a2d92_o.jpg", "secret": "f3543a2d92", "media": "photo", "latitude": "0", "id": "180759388", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 07:23:42", "license": "6", "title": "Final Touches", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/180760188_cf126b3be0_o.jpg", "secret": "cf126b3be0", "media": "photo", "latitude": "0", "id": "180760188", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 07:39:52", "license": "6", "title": "", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/180762188_3bc03b0c48_o.jpg", "secret": "3bc03b0c48", "media": "photo", "latitude": "0", "id": "180762188", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 07:47:53", "license": "6", "title": "", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/180761371_7d7e3a89f8_o.jpg", "secret": "7d7e3a89f8", "media": "photo", "latitude": "0", "id": "180761371", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 07:57:01", "license": "6", "title": "", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/180762768_8fa2c8df4d_o.jpg", "secret": "8fa2c8df4d", "media": "photo", "latitude": "0", "id": "180762768", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 07:57:24", "license": "6", "title": "Shooting Range", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/180764308_321eb44d7e_o.jpg", "secret": "321eb44d7e", "media": "photo", "latitude": "0", "id": "180764308", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 07:57:33", "license": "6", "title": "Liz Shoots", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/180763486_906a858179_o.jpg", "secret": "906a858179", "media": "photo", "latitude": "0", "id": "180763486", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 07:58:46", "license": "6", "title": "F the Police!", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/180764722_a8fd48e2e5_o.jpg", "secret": "a8fd48e2e5", "media": "photo", "latitude": "0", "id": "180764722", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 08:01:50", "license": "6", "title": "Meet Matt", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/180765456_d0f9728b6c_o.jpg", "secret": "d0f9728b6c", "media": "photo", "latitude": "0", "id": "180765456", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 08:06:40", "license": "6", "title": "", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/180766342_451ae44874_o.jpg", "secret": "451ae44874", "media": "photo", "latitude": "0", "id": "180766342", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 08:06:49", "license": "6", "title": "Barb Shoots", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/180767188_8d86232389_o.jpg", "secret": "8d86232389", "media": "photo", "latitude": "0", "id": "180767188", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 08:08:44", "license": "6", "title": "", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/180767968_aad57032be_o.jpg", "secret": "aad57032be", "media": "photo", "latitude": "0", "id": "180767968", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 08:11:35", "license": "6", "title": "Baby's First Shot", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/180768750_c9f2e31b71_o.jpg", "secret": "c9f2e31b71", "media": "photo", "latitude": "0", "id": "180768750", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 08:15:51", "license": "6", "title": "Dan", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/180769373_bb33f2e946_o.jpg", "secret": "bb33f2e946", "media": "photo", "latitude": "0", "id": "180769373", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 08:18:12", "license": "6", "title": "Fire! Fire!", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/180770151_988042c217_o.jpg", "secret": "988042c217", "media": "photo", "latitude": "0", "id": "180770151", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 08:18:17", "license": "6", "title": "", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/180770855_1691536dcf_o.jpg", "secret": "1691536dcf", "media": "photo", "latitude": "0", "id": "180770855", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 10:44:58", "license": "6", "title": "", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/180771642_beb4b5a7ed_o.jpg", "secret": "beb4b5a7ed", "media": "photo", "latitude": "0", "id": "180771642", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 11:03:22", "license": "6", "title": "", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/180772051_cdd23b20f7_o.jpg", "secret": "cdd23b20f7", "media": "photo", "latitude": "0", "id": "180772051", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 11:05:59", "license": "6", "title": "Grand Finale", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/180772835_ecb550a725_o.jpg", "secret": "ecb550a725", "media": "photo", "latitude": "0", "id": "180772835", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-01 11:06:22", "license": "6", "title": "", "text": "", "album_id": "72157594185853788", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/180773380_b83e061a9e_o.jpg", "secret": "b83e061a9e", "media": "photo", "latitude": "0", "id": "180773380", "tags": "nashville 4thofjuly"}, {"datetaken": "2006-07-02 18:05:06", "license": "2", "title": "studioprogress 1", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/180884943_d9494e9367_o.jpg", "secret": "d9494e9367", "media": "photo", "latitude": "0", "id": "180884943", "tags": ""}, {"datetaken": "2006-07-02 18:05:31", "license": "2", "title": "studioprogress 2", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/180884945_bcc383ad1e_o.jpg", "secret": "bcc383ad1e", "media": "photo", "latitude": "0", "id": "180884945", "tags": ""}, {"datetaken": "2006-07-02 18:06:07", "license": "2", "title": "garden", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/180885560_45ff7b2458_o.jpg", "secret": "45ff7b2458", "media": "photo", "latitude": "0", "id": "180885560", "tags": ""}, {"datetaken": "2006-07-02 18:06:27", "license": "2", "title": "studioprogress 3", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/180884946_0611d012d3_o.jpg", "secret": "0611d012d3", "media": "photo", "latitude": "0", "id": "180884946", "tags": ""}, {"datetaken": "2006-07-02 18:07:39", "license": "2", "title": "farm 4", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/181084265_eacbbe953a_o.jpg", "secret": "eacbbe953a", "media": "photo", "latitude": "0", "id": "181084265", "tags": ""}, {"datetaken": "2006-07-02 18:08:00", "license": "2", "title": "farm 3", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/181084359_dd81c6609b_o.jpg", "secret": "dd81c6609b", "media": "photo", "latitude": "0", "id": "181084359", "tags": ""}, {"datetaken": "2006-07-02 18:08:44", "license": "2", "title": "Dragonfly", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/181084409_3c6c6a7e23_o.jpg", "secret": "3c6c6a7e23", "media": "photo", "latitude": "0", "id": "181084409", "tags": ""}, {"datetaken": "2006-07-02 18:09:11", "license": "2", "title": "farm 1", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/181084523_557391fdf5_o.jpg", "secret": "557391fdf5", "media": "photo", "latitude": "0", "id": "181084523", "tags": ""}, {"datetaken": "2006-07-02 18:09:59", "license": "2", "title": "farm 5", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/181084184_6fa56ca979_o.jpg", "secret": "6fa56ca979", "media": "photo", "latitude": "0", "id": "181084184", "tags": ""}, {"datetaken": "2006-07-02 18:10:22", "license": "2", "title": "farm 6", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/181084126_11baa2b773_o.jpg", "secret": "11baa2b773", "media": "photo", "latitude": "0", "id": "181084126", "tags": ""}, {"datetaken": "2006-07-02 18:10:38", "license": "2", "title": "farm 7", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/181084091_0b6a81d7cc_o.jpg", "secret": "0b6a81d7cc", "media": "photo", "latitude": "0", "id": "181084091", "tags": ""}, {"datetaken": "2006-07-02 18:11:32", "license": "2", "title": "elvis 1", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/181084624_db74ddadae_o.jpg", "secret": "db74ddadae", "media": "photo", "latitude": "0", "id": "181084624", "tags": ""}, {"datetaken": "2006-07-02 18:11:53", "license": "2", "title": "elvis 2", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/181084581_4dad6ae74b_o.jpg", "secret": "4dad6ae74b", "media": "photo", "latitude": "0", "id": "181084581", "tags": ""}, {"datetaken": "2006-07-02 18:12:49", "license": "2", "title": "fire 1", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/181084048_547974bb47_o.jpg", "secret": "547974bb47", "media": "photo", "latitude": "0", "id": "181084048", "tags": ""}, {"datetaken": "2006-07-02 18:13:00", "license": "2", "title": "fire 2", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/181083979_dcc3e88930_o.jpg", "secret": "dcc3e88930", "media": "photo", "latitude": "0", "id": "181083979", "tags": ""}, {"datetaken": "2006-07-02 18:13:20", "license": "2", "title": "tree", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/181083921_806ccfc332_o.jpg", "secret": "806ccfc332", "media": "photo", "latitude": "0", "id": "181083921", "tags": ""}, {"datetaken": "2006-07-02 20:31:02", "license": "2", "title": "farm 1 1", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/181084563_bf933bdd37_o.jpg", "secret": "bf933bdd37", "media": "photo", "latitude": "0", "id": "181084563", "tags": ""}, {"datetaken": "2006-07-02 20:31:11", "license": "2", "title": "farm 2 1", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/181084475_e7ff629f82_o.jpg", "secret": "e7ff629f82", "media": "photo", "latitude": "0", "id": "181084475", "tags": ""}, {"datetaken": "2006-07-02 20:31:18", "license": "2", "title": "farm 3 1", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/181084376_791b01ab35_o.jpg", "secret": "791b01ab35", "media": "photo", "latitude": "0", "id": "181084376", "tags": ""}, {"datetaken": "2006-07-02 20:32:06", "license": "2", "title": "farm 6 1", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/181084148_7592f649ea_o.jpg", "secret": "7592f649ea", "media": "photo", "latitude": "0", "id": "181084148", "tags": ""}, {"datetaken": "2006-07-02 20:32:33", "license": "2", "title": "farm 1 2", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/181084544_872082c4c5_o.jpg", "secret": "872082c4c5", "media": "photo", "latitude": "0", "id": "181084544", "tags": ""}, {"datetaken": "2006-07-02 22:57:23", "license": "2", "title": "tomatillo", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/180533884_422d832f2f_o.jpg", "secret": "422d832f2f", "media": "photo", "latitude": "0", "id": "180533884", "tags": "green tamatillo"}, {"datetaken": "2006-07-03 13:44:41", "license": "2", "title": "Farm Panorama", "text": "", "album_id": "72157594186295029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/181078167_05d5c73ed1_o.jpg", "secret": "05d5c73ed1", "media": "photo", "latitude": "0", "id": "181078167", "tags": ""}, {"datetaken": "2006-07-03 20:01:50", "license": "2", "title": "IMG_0144", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/181273625_1cd3ed46bd_o.jpg", "secret": "1cd3ed46bd", "media": "photo", "latitude": "0", "id": "181273625", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 20:09:04", "license": "2", "title": "IMG_0145", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/181274566_7a0b00b61e_o.jpg", "secret": "7a0b00b61e", "media": "photo", "latitude": "0", "id": "181274566", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 20:11:17", "license": "2", "title": "IMG_0146", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/181275260_7ebe911d3a_o.jpg", "secret": "7ebe911d3a", "media": "photo", "latitude": "0", "id": "181275260", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 20:13:19", "license": "2", "title": "IMG_0148", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/181276331_9a1c352394_o.jpg", "secret": "9a1c352394", "media": "photo", "latitude": "0", "id": "181276331", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 20:19:27", "license": "2", "title": "IMG_0151", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/181277250_0a3422f8f1_o.jpg", "secret": "0a3422f8f1", "media": "photo", "latitude": "0", "id": "181277250", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 20:38:45", "license": "2", "title": "IMG_0153", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/181277868_db7f5f3a8a_o.jpg", "secret": "db7f5f3a8a", "media": "photo", "latitude": "0", "id": "181277868", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 20:54:20", "license": "2", "title": "IMG_0156", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/181278578_3b6de736d0_o.jpg", "secret": "3b6de736d0", "media": "photo", "latitude": "0", "id": "181278578", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:18:15", "license": "2", "title": "IMG_0159", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/181279394_0862a2dc43_o.jpg", "secret": "0862a2dc43", "media": "photo", "latitude": "0", "id": "181279394", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:18:47", "license": "2", "title": "IMG_0161", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/181280070_961299117b_o.jpg", "secret": "961299117b", "media": "photo", "latitude": "0", "id": "181280070", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:21:03", "license": "2", "title": "IMG_0166", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/181280821_f2ab70b573_o.jpg", "secret": "f2ab70b573", "media": "photo", "latitude": "0", "id": "181280821", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:26:39", "license": "2", "title": "IMG_0175", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/181281663_928a01b676_o.jpg", "secret": "928a01b676", "media": "photo", "latitude": "0", "id": "181281663", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:27:47", "license": "2", "title": "IMG_0181", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/181282424_ffe34b827e_o.jpg", "secret": "ffe34b827e", "media": "photo", "latitude": "0", "id": "181282424", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:29:07", "license": "2", "title": "IMG_0183", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/181283550_c7e8cf214e_o.jpg", "secret": "c7e8cf214e", "media": "photo", "latitude": "0", "id": "181283550", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:30:45", "license": "2", "title": "IMG_0186", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/181284751_cda217ce6e_o.jpg", "secret": "cda217ce6e", "media": "photo", "latitude": "0", "id": "181284751", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:32:01", "license": "2", "title": "IMG_0187", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/181285477_75caa94d63_o.jpg", "secret": "75caa94d63", "media": "photo", "latitude": "0", "id": "181285477", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:32:21", "license": "2", "title": "IMG_0188", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/181286205_13c4644cd2_o.jpg", "secret": "13c4644cd2", "media": "photo", "latitude": "0", "id": "181286205", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:35:21", "license": "2", "title": "IMG_0192", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/181286936_cf48cb3559_o.jpg", "secret": "cf48cb3559", "media": "photo", "latitude": "0", "id": "181286936", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:39:09", "license": "2", "title": "IMG_0197", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/181288374_a45aa26afd_o.jpg", "secret": "a45aa26afd", "media": "photo", "latitude": "0", "id": "181288374", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:39:12", "license": "2", "title": "IMG_0198", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/181287886_25f5119162_o.jpg", "secret": "25f5119162", "media": "photo", "latitude": "0", "id": "181287886", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:39:15", "license": "2", "title": "IMG_0199", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/181287453_70b1d78b5c_o.jpg", "secret": "70b1d78b5c", "media": "photo", "latitude": "0", "id": "181287453", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:41:24", "license": "2", "title": "IMG_0200", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/181289216_b27ffea8d7_o.jpg", "secret": "b27ffea8d7", "media": "photo", "latitude": "0", "id": "181289216", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:41:52", "license": "2", "title": "IMG_0203", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/181290106_0f5cb872ae_o.jpg", "secret": "0f5cb872ae", "media": "photo", "latitude": "0", "id": "181290106", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:45:39", "license": "2", "title": "IMG_0214", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/181291062_3ac7f25736_o.jpg", "secret": "3ac7f25736", "media": "photo", "latitude": "0", "id": "181291062", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:54:29", "license": "2", "title": "IMG_0221", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/181291836_e7840a42f2_o.jpg", "secret": "e7840a42f2", "media": "photo", "latitude": "0", "id": "181291836", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 21:56:54", "license": "2", "title": "IMG_0223", "text": "", "album_id": "72157594186590538", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/181292717_f9bfb5cc43_o.jpg", "secret": "f9bfb5cc43", "media": "photo", "latitude": "0", "id": "181292717", "tags": "fireworks 4thofjuly cookout lewisfamily"}, {"datetaken": "2006-07-03 22:11:50", "license": "1", "title": "", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/182749214_a673e6a653_o.jpg", "secret": "a673e6a653", "media": "photo", "latitude": "0", "id": "182749214", "tags": "summer ashleyc gyans"}, {"datetaken": "2006-07-03 23:13:16", "license": "1", "title": "Santee Court", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/182749218_a1b4284b01_o.jpg", "secret": "a1b4284b01", "media": "photo", "latitude": "0", "id": "182749218", "tags": "city losangeles downtown santeecourt"}, {"datetaken": "2006-07-04 01:26:29", "license": "1", "title": "", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/182749224_fc37c4f091_o.jpg", "secret": "fc37c4f091", "media": "photo", "latitude": "0", "id": "182749224", "tags": "dancing drinking chrissym gyans illboogie"}, {"datetaken": "2006-07-04 15:47:31", "license": "1", "title": "", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/182749227_550a80aa11_o.jpg", "secret": "550a80aa11", "media": "photo", "latitude": "0", "id": "182749227", "tags": "summer backyard kiddiepool mikef ashleyc chrissym"}, {"datetaken": "2006-07-04 16:40:58", "license": "1", "title": "", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/182751056_1579b9cf9d_o.jpg", "secret": "1579b9cf9d", "media": "photo", "latitude": "0", "id": "182751056", "tags": "alissa cupcake"}, {"datetaken": "2006-07-04 17:19:11", "license": "1", "title": "", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/182751059_7ef70d7720_o.jpg", "secret": "7ef70d7720", "media": "photo", "latitude": "0", "id": "182751059", "tags": "summer water kiddiepool roxanne"}, {"datetaken": "2006-07-04 18:19:43", "license": "1", "title": "Close-up #1", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/182751060_9eaa78babe_o.jpg", "secret": "9eaa78babe", "media": "photo", "latitude": "0", "id": "182751060", "tags": "gay funny mikef"}, {"datetaken": "2006-07-04 18:20:00", "license": "1", "title": "Close-up #2", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/182751062_b10ebd19bc_o.jpg", "secret": "b10ebd19bc", "media": "photo", "latitude": "0", "id": "182751062", "tags": "lisam"}, {"datetaken": "2006-07-04 18:22:09", "license": "1", "title": "Close-up #3", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/182751065_0e023636f9_o.jpg", "secret": "0e023636f9", "media": "photo", "latitude": "0", "id": "182751065", "tags": "brianr candicer"}, {"datetaken": "2006-07-04 18:22:26", "license": "1", "title": "Close-up #4", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/182751067_ea96c96608_o.jpg", "secret": "ea96c96608", "media": "photo", "latitude": "0", "id": "182751067", "tags": "roxanne"}, {"datetaken": "2006-07-04 18:29:56", "license": "1", "title": "", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/182752654_c972adae21_o.jpg", "secret": "c972adae21", "media": "photo", "latitude": "0", "id": "182752654", "tags": "fish green shoe metallic"}, {"datetaken": "2006-07-04 18:30:23", "license": "1", "title": "", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/182752656_89058816c4_o.jpg", "secret": "89058816c4", "media": "photo", "latitude": "0", "id": "182752656", "tags": "feet shoe roxanne"}, {"datetaken": "2006-07-04 19:32:45", "license": "1", "title": "", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/182752660_809dc6828a_o.jpg", "secret": "809dc6828a", "media": "photo", "latitude": "0", "id": "182752660", "tags": "light reflection disco pinapples lisal"}, {"datetaken": "2006-07-04 19:34:57", "license": "1", "title": "summer lis", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/182752662_73b23c9b28_o.jpg", "secret": "73b23c9b28", "media": "photo", "latitude": "0", "id": "182752662", "tags": "summer losangeles backyard bbq lisam"}, {"datetaken": "2006-07-04 20:00:02", "license": "1", "title": "", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/182752666_8bfa018bda_o.jpg", "secret": "8bfa018bda", "media": "photo", "latitude": "0", "id": "182752666", "tags": "summer fireworks kiddiepool mikef"}, {"datetaken": "2006-07-04 20:00:05", "license": "1", "title": "", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/182752668_18b0f7b612_o.jpg", "secret": "18b0f7b612", "media": "photo", "latitude": "0", "id": "182752668", "tags": "summer fun fireworks kiddiepool mikef richiem"}, {"datetaken": "2006-07-04 20:34:57", "license": "1", "title": "", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/182754456_24812b69cd_o.jpg", "secret": "24812b69cd", "media": "photo", "latitude": "0", "id": "182754456", "tags": "summer face funny watermelon richiem"}, {"datetaken": "2006-07-04 20:35:04", "license": "1", "title": "yum yum yum yum yum", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/182754458_9898659177_o.jpg", "secret": "9898659177", "media": "photo", "latitude": "0", "id": "182754458", "tags": "summer funny eating watermelon mikef richiem"}, {"datetaken": "2006-07-04 21:22:06", "license": "1", "title": "fire mole", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/182754460_86bc16ba77_o.jpg", "secret": "86bc16ba77", "media": "photo", "latitude": "0", "id": "182754460", "tags": "fireworks richiem"}, {"datetaken": "2006-07-04 21:23:40", "license": "1", "title": "", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/182754462_5c48c1898e_o.jpg", "secret": "5c48c1898e", "media": "photo", "latitude": "0", "id": "182754462", "tags": "smiles angela"}, {"datetaken": "2006-07-04 21:38:57", "license": "1", "title": "bzzzz #2", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/182754463_87be088b7b_o.jpg", "secret": "87be088b7b", "media": "photo", "latitude": "0", "id": "182754463", "tags": "light star fireworks sparks"}, {"datetaken": "2006-07-04 21:39:15", "license": "1", "title": "bzzzz #1", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/182754464_119d0b6439_o.jpg", "secret": "119d0b6439", "media": "photo", "latitude": "0", "id": "182754464", "tags": "light green star fireworks sparks"}, {"datetaken": "2006-07-04 21:42:59", "license": "1", "title": "", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/182755829_f2f226e7e2_o.jpg", "secret": "f2f226e7e2", "media": "photo", "latitude": "0", "id": "182755829", "tags": "summer fireworks ryanc"}, {"datetaken": "2006-07-04 21:45:04", "license": "1", "title": "los amigotes", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/182755830_6ff496cbd0_o.jpg", "secret": "6ff496cbd0", "media": "photo", "latitude": "0", "id": "182755830", "tags": "girls friends summer boys"}, {"datetaken": "2006-07-04 21:47:11", "license": "1", "title": "", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/182755831_e292e0f2b1_o.jpg", "secret": "e292e0f2b1", "media": "photo", "latitude": "0", "id": "182755831", "tags": "light fireworks sparks"}, {"datetaken": "2006-07-04 22:09:08", "license": "1", "title": "", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/182755833_2f4b67b509_o.jpg", "secret": "2f4b67b509", "media": "photo", "latitude": "0", "id": "182755833", "tags": "funny fireworks suitcase erickc"}, {"datetaken": "2006-07-04 22:19:52", "license": "1", "title": "demon richie", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/182755835_2832fcc567_o.jpg", "secret": "2832fcc567", "media": "photo", "latitude": "0", "id": "182755835", "tags": "fireworks demon richiem"}, {"datetaken": "2006-07-04 22:22:36", "license": "1", "title": "", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/182755838_e2d1c925a3_o.jpg", "secret": "e2d1c925a3", "media": "photo", "latitude": "0", "id": "182755838", "tags": "light summer fireworks"}, {"datetaken": "2006-07-04 22:22:53", "license": "1", "title": "", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/182756436_4f454db40c_o.jpg", "secret": "4f454db40c", "media": "photo", "latitude": "0", "id": "182756436", "tags": "light summer fireworks lisam richiem"}, {"datetaken": "2006-07-04 23:02:10", "license": "1", "title": "the purple connection", "text": "", "album_id": "72157594188721965", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/182756442_d682de3b10_o.jpg", "secret": "d682de3b10", "media": "photo", "latitude": "0", "id": "182756442", "tags": "purple snake boa angela mikef"}, {"datetaken": "2006-07-04 19:38:01", "license": "2", "title": "Smokestacks", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/75/183059451_4fbc046fff_o.jpg", "secret": "4fbc046fff", "media": "photo", "latitude": "44.980896", "id": "183059451", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 19:49:08", "license": "2", "title": "IMG_1240", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/58/183057848_df7cd16459_o.jpg", "secret": "df7cd16459", "media": "photo", "latitude": "44.980896", "id": "183057848", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 19:49:47", "license": "2", "title": "IMG_1241", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/66/183058478_218c6a6da6_o.jpg", "secret": "218c6a6da6", "media": "photo", "latitude": "44.980896", "id": "183058478", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 19:50:16", "license": "2", "title": "The crowd wants fireworks", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/69/183048839_41de78f33e_o.jpg", "secret": "41de78f33e", "media": "photo", "latitude": "44.980896", "id": "183048839", "tags": "waiting fireworks crowd july4 742006"}, {"datetaken": "2006-07-04 20:04:23", "license": "2", "title": "IMG_1282", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/60/183060096_adcae309f6_o.jpg", "secret": "adcae309f6", "media": "photo", "latitude": "44.980896", "id": "183060096", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:04:28", "license": "2", "title": "IMG_1283", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/46/183060822_df22a8a764_o.jpg", "secret": "df22a8a764", "media": "photo", "latitude": "44.980896", "id": "183060822", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:05:06", "license": "2", "title": "IMG_1288", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/65/183061591_c6bba297e1_o.jpg", "secret": "c6bba297e1", "media": "photo", "latitude": "44.980896", "id": "183061591", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:05:21", "license": "2", "title": "IMG_1291", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/54/183062256_910a3f5862_o.jpg", "secret": "910a3f5862", "media": "photo", "latitude": "44.980896", "id": "183062256", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:06:19", "license": "2", "title": "IMG_1302", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/61/183063193_ef7a9f1a6a_o.jpg", "secret": "ef7a9f1a6a", "media": "photo", "latitude": "44.980896", "id": "183063193", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:06:41", "license": "2", "title": "IMG_1306", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/72/183063741_cabc385abe_o.jpg", "secret": "cabc385abe", "media": "photo", "latitude": "44.980896", "id": "183063741", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:06:47", "license": "2", "title": "IMG_1307", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/76/183064463_54405bfafb_o.jpg", "secret": "54405bfafb", "media": "photo", "latitude": "44.980896", "id": "183064463", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:07:54", "license": "2", "title": "IMG_1315", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/76/183064983_f7d1a2251e_o.jpg", "secret": "f7d1a2251e", "media": "photo", "latitude": "44.980896", "id": "183064983", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:08:05", "license": "2", "title": "IMG_1316", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/44/183065458_edaf16d1a9_o.jpg", "secret": "edaf16d1a9", "media": "photo", "latitude": "44.980896", "id": "183065458", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:08:26", "license": "2", "title": "IMG_1319", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/45/183066036_adee2c56f5_o.jpg", "secret": "adee2c56f5", "media": "photo", "latitude": "44.980896", "id": "183066036", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:09:12", "license": "2", "title": "IMG_1330", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/69/183066719_0c8519a6ba_o.jpg", "secret": "0c8519a6ba", "media": "photo", "latitude": "44.980896", "id": "183066719", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:09:28", "license": "2", "title": "IMG_1333", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/77/183067402_9914c3360c_o.jpg", "secret": "9914c3360c", "media": "photo", "latitude": "44.980896", "id": "183067402", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:09:40", "license": "2", "title": "IMG_1334", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/73/183068114_494e705444_o.jpg", "secret": "494e705444", "media": "photo", "latitude": "44.980896", "id": "183068114", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:10:49", "license": "2", "title": "IMG_1341", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/6/183068671_7481718c04_o.jpg", "secret": "7481718c04", "media": "photo", "latitude": "44.980896", "id": "183068671", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:11:54", "license": "2", "title": "IMG_1348", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/67/183069487_1c355a14c6_o.jpg", "secret": "1c355a14c6", "media": "photo", "latitude": "44.980896", "id": "183069487", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:12:03", "license": "2", "title": "IMG_1349", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/23/183070209_4f3038f376_o.jpg", "secret": "4f3038f376", "media": "photo", "latitude": "44.980896", "id": "183070209", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:12:50", "license": "2", "title": "IMG_1354", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/23/183070811_56a3d57ac6_o.jpg", "secret": "56a3d57ac6", "media": "photo", "latitude": "44.980896", "id": "183070811", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:13:34", "license": "2", "title": "IMG_1364", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/11/183071467_c54b755b1a_o.jpg", "secret": "c54b755b1a", "media": "photo", "latitude": "44.980896", "id": "183071467", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:14:21", "license": "2", "title": "IMG_1380", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/61/183072296_c82ccac791_o.jpg", "secret": "c82ccac791", "media": "photo", "latitude": "44.980896", "id": "183072296", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:15:35", "license": "2", "title": "IMG_1396", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/1/183072988_86b112685a_o.jpg", "secret": "86b112685a", "media": "photo", "latitude": "44.980896", "id": "183072988", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:17:34", "license": "2", "title": "IMG_1409", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/77/183073596_75245d4365_o.jpg", "secret": "75245d4365", "media": "photo", "latitude": "44.980896", "id": "183073596", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:17:37", "license": "2", "title": "IMG_1410", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/65/183074082_3ee23b3155_o.jpg", "secret": "3ee23b3155", "media": "photo", "latitude": "44.980896", "id": "183074082", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "2006-07-04 20:17:44", "license": "2", "title": "IMG_1414", "text": "", "album_id": "72157594189076963", "longitude": "-93.253371", "url_o": "https://farm1.staticflickr.com/72/183074868_81b0b7f9af_o.jpg", "secret": "81b0b7f9af", "media": "photo", "latitude": "44.980896", "id": "183074868", "tags": "fireworks minneapolis mississippiriver rebelxt july4 nicolletisland 742006"}, {"datetaken": "1999-07-03 21:39:47", "license": "5", "title": "P7030871.JPG", "text": "", "album_id": "72157594564504027", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/407244019_a0f7ad9056_o.jpg", "secret": "2cbc4c82f4", "media": "photo", "latitude": "0", "id": "407244019", "tags": "4thofjuly 5wadsworth"}, {"datetaken": "1999-07-03 21:39:59", "license": "5", "title": "P7030872.JPG", "text": "", "album_id": "72157594564504027", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/407244133_25e9b3528c_o.jpg", "secret": "a87c6404d3", "media": "photo", "latitude": "0", "id": "407244133", "tags": "4thofjuly 5wadsworth"}, {"datetaken": "1999-07-04 10:46:56", "license": "5", "title": "P7040875.JPG", "text": "", "album_id": "72157594564504027", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/407244272_336492042b_o.jpg", "secret": "4889d31bc9", "media": "photo", "latitude": "0", "id": "407244272", "tags": "parade 4thofjuly 5wadsworth"}, {"datetaken": "1999-07-04 11:41:48", "license": "5", "title": "P7040888.JPG", "text": "", "album_id": "72157594564504027", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/407244498_23ec3e4e5f_o.jpg", "secret": "bce3665a0d", "media": "photo", "latitude": "0", "id": "407244498", "tags": "bush parade 4thofjuly 5wadsworth"}, {"datetaken": "1999-07-04 11:45:01", "license": "5", "title": "P7040891.JPG", "text": "", "album_id": "72157594564504027", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/407244623_7a208d532f_o.jpg", "secret": "6899fb1329", "media": "photo", "latitude": "0", "id": "407244623", "tags": "parade 4thofjuly 5wadsworth"}, {"datetaken": "1999-07-04 11:46:21", "license": "5", "title": "P7040892.JPG", "text": "", "album_id": "72157594564504027", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/407244768_e55a9cdc73_o.jpg", "secret": "28d3341ce2", "media": "photo", "latitude": "0", "id": "407244768", "tags": "parade 4thofjuly 5wadsworth"}, {"datetaken": "1999-07-04 11:50:22", "license": "5", "title": "P7040894.JPG", "text": "", "album_id": "72157594564504027", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/407244914_ee5a4d29c4_o.jpg", "secret": "d5a37e55b6", "media": "photo", "latitude": "0", "id": "407244914", "tags": "parade 4thofjuly 5wadsworth"}, {"datetaken": "1999-07-04 11:55:55", "license": "5", "title": "P7040896.JPG", "text": "", "album_id": "72157594564504027", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/407245053_01b6d220d0_o.jpg", "secret": "f362f645de", "media": "photo", "latitude": "0", "id": "407245053", "tags": "parade 4thofjuly 5wadsworth"}, {"datetaken": "1999-07-04 12:43:47", "license": "5", "title": "P7040900.JPG", "text": "", "album_id": "72157594564504027", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/407245190_ae2cd71f2c_o.jpg", "secret": "a1ce62476a", "media": "photo", "latitude": "0", "id": "407245190", "tags": "jeremy parade josh 4thofjuly 5wadsworth"}, {"datetaken": "1999-07-04 20:52:39", "license": "5", "title": "P7040910.JPG", "text": "", "album_id": "72157594564504027", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/407245327_447447b50e_o.jpg", "secret": "11a78c5b05", "media": "photo", "latitude": "0", "id": "407245327", "tags": "jeremy josh 4thofjuly 5wadsworth"}, {"datetaken": "1999-07-04 20:54:25", "license": "5", "title": "P7040913.JPG", "text": "", "album_id": "72157594564504027", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/407245447_15b3bb0ed2_o.jpg", "secret": "ae04d5ecf6", "media": "photo", "latitude": "0", "id": "407245447", "tags": "jeremy josh 4thofjuly 5wadsworth"}, {"datetaken": "1999-07-04 21:07:55", "license": "5", "title": "P7040917.JPG", "text": "", "album_id": "72157594564504027", "longitude": "0", "url_o": "https://farm1.staticflickr.com/169/407245519_90314da9a8_o.jpg", "secret": "4921f3d810", "media": "photo", "latitude": "0", "id": "407245519", "tags": "jeremy josh 4thofjuly 5wadsworth"}, {"datetaken": "1999-07-04 21:26:40", "license": "5", "title": "P7040923.JPG", "text": "", "album_id": "72157594564504027", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/407245649_fde0ca3cf2_o.jpg", "secret": "cbb38b15aa", "media": "photo", "latitude": "0", "id": "407245649", "tags": "fireworks 4thofjuly 5wadsworth"}, {"datetaken": "1999-07-04 21:50:17", "license": "5", "title": "P7040953.JPG", "text": "", "album_id": "72157594564504027", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/407245721_ee7a479a51_o.jpg", "secret": "faf6e35464", "media": "photo", "latitude": "0", "id": "407245721", "tags": "fireworks 4thofjuly 5wadsworth"}, {"datetaken": "2008-02-19 14:59:37", "license": "2", "title": "Weidner's Burial Lot, Oley Twp, Berks Co. PA", "text": "", "album_id": "72157604364629870", "longitude": "-75.749026", "url_o": "https://farm3.staticflickr.com/2180/2385111632_1193ef929e_o.jpg", "secret": "ed8e0d2d36", "media": "photo", "latitude": "40.395730", "id": "2385111632", "tags": "cemeteries graves pa berkscounty johnbweidner18251892 weidnersburiallot oleytwp"}, {"datetaken": "2008-02-19 14:59:50", "license": "2", "title": "Weidner's Burial Lot, Oley Twp, Berks Co. PA", "text": "", "album_id": "72157604364629870", "longitude": "-75.749026", "url_o": "https://farm3.staticflickr.com/2193/2384281403_02e976ec51_o.jpg", "secret": "961c85a5c3", "media": "photo", "latitude": "40.395730", "id": "2384281403", "tags": "cemeteries graves pa berkscounty weidnersburiallot oleytwp"}, {"datetaken": "2008-02-19 15:00:10", "license": "2", "title": "Weidner's Burial Lot, Oley Twp, Berks Co. PA", "text": "", "album_id": "72157604364629870", "longitude": "-75.749026", "url_o": "https://farm3.staticflickr.com/2183/2384280481_67058e81e7_o.jpg", "secret": "d5e1b06e6c", "media": "photo", "latitude": "40.395730", "id": "2384280481", "tags": "cemeteries graves pa berkscounty weidnersburiallot oleytwp hannaweidner17641829 susannaweidner18041825 catharinaweidner17531826"}, {"datetaken": "2008-02-19 15:00:10", "license": "2", "title": "Weidner's Burial Lot, Oley Twp, Berks Co. PA", "text": "", "album_id": "72157604364629870", "longitude": "-75.749026", "url_o": "https://farm3.staticflickr.com/2395/2385111220_5b0a316aff_o.jpg", "secret": "9a16bf6cb6", "media": "photo", "latitude": "40.395730", "id": "2385111220", "tags": "cemeteries graves pa berkscounty weidnersburiallot oleytwp"}, {"datetaken": "2008-02-19 15:00:10", "license": "2", "title": "Weidner's Burial Lot, Oley Twp, Berks Co. PA", "text": "", "album_id": "72157604364629870", "longitude": "-75.749026", "url_o": "https://farm3.staticflickr.com/2186/2384280665_a7a491033e_o.jpg", "secret": "0859b2d55d", "media": "photo", "latitude": "40.395730", "id": "2384280665", "tags": "cemeteries graves pa berkscounty williamalbertweidner18611871 weidnersburiallot oleytwp"}, {"datetaken": "2008-02-19 15:04:38", "license": "2", "title": "Weidner's Burial Lot, Oley Twp, Berks Co. PA", "text": "", "album_id": "72157604364629870", "longitude": "-75.749026", "url_o": "https://farm4.staticflickr.com/3027/2384235925_f5c1814a0e_o.jpg", "secret": "7a270ff112", "media": "photo", "latitude": "40.395730", "id": "2384235925", "tags": "cemeteries graves pa berkscounty weidnersburiallot oleytwp"}, {"datetaken": "2008-02-19 15:04:56", "license": "2", "title": "Weidner's Burial Lot, Oley Twp, Berks Co. PA", "text": "", "album_id": "72157604364629870", "longitude": "-75.749026", "url_o": "https://farm4.staticflickr.com/3107/2385068616_2ea154ddb3_o.jpg", "secret": "724610681f", "media": "photo", "latitude": "40.395730", "id": "2385068616", "tags": "cemeteries graves pa berkscounty weidnersburiallot oleytwp"}, {"datetaken": "2008-02-19 15:05:39", "license": "2", "title": "Weidner's Burial Lot, Oley Twp, Berks Co. PA", "text": "", "album_id": "72157604364629870", "longitude": "-75.749026", "url_o": "https://farm3.staticflickr.com/2323/2385067106_a2fe1d30dc_o.jpg", "secret": "90e847d1fd", "media": "photo", "latitude": "40.395730", "id": "2385067106", "tags": "cemeteries graves pa berkscounty patriotgrave revolutionarywarveteran weidnersburiallot oleytwp johannesweidner17561793 catherinaweidner17531826 tichicusweidner17211799"}, {"datetaken": "2008-02-19 15:05:52", "license": "2", "title": "Weidner's Burial Lot, Oley Twp, Berks Co. PA", "text": "", "album_id": "72157604364629870", "longitude": "-75.749026", "url_o": "https://farm4.staticflickr.com/3093/2385067534_60fedce2b4_o.jpg", "secret": "8307fd8608", "media": "photo", "latitude": "40.395730", "id": "2385067534", "tags": "cemeteries graves pa berkscounty jacobweidner17931860 veronicabartoweidner sarahweidner18331891 johnweidner18251892 weidnersburiallot oleytwp"}, {"datetaken": "2008-02-19 15:06:11", "license": "2", "title": "Weidner's Burial Lot, Oley Twp, Berks Co. PA", "text": "", "album_id": "72157604364629870", "longitude": "-75.749026", "url_o": "https://farm3.staticflickr.com/2070/2385068042_7ab38ca4eb_o.jpg", "secret": "00641a6e2a", "media": "photo", "latitude": "40.395730", "id": "2385068042", "tags": "cemeteries pa berkscounty annamariaweidner17321791 18thcenturygraves weidnersburiallot oleytwp"}, {"datetaken": "2008-06-19 18:54:44", "license": "3", "title": "Musician", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3001/2591986854_d5b4b31a53_o.jpg", "secret": "2f81c7b9c3", "media": "photo", "latitude": "38.975394", "id": "2591986854", "tags": "musician music photo guitar live performance band maryland annapolis bandportfolio dclow"}, {"datetaken": "2008-06-19 18:56:14", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3233/2591083027_f3443a229f_o.jpg", "secret": "4538ea1671", "media": "photo", "latitude": "38.975394", "id": "2591083027", "tags": "music rock photo ska band roots blues annapolis reggae zydeco crawdaddies harborcenter dclow"}, {"datetaken": "2008-06-19 20:32:11", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (1)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3280/2591083495_78e34582e7_o.jpg", "secret": "0ebc887593", "media": "photo", "latitude": "38.975394", "id": "2591083495", "tags": "music rock photo ska band roots blues annapolis reggae zydeco crawdaddies harborcenter dclow"}, {"datetaken": "2008-06-19 20:32:19", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (2)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3045/2591921356_755094120a_o.jpg", "secret": "24eee5b46f", "media": "photo", "latitude": "38.975394", "id": "2591921356", "tags": "music rock photo ska band roots blues annapolis reggae zydeco crawdaddies harborcenter dclow"}, {"datetaken": "2008-06-19 20:32:49", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (3)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3013/2591922040_a22e4109df_o.jpg", "secret": "e12f327c14", "media": "photo", "latitude": "38.975394", "id": "2591922040", "tags": "music rock photo live ska performance band roots blues annapolis reggae zydeco crawdaddies harborcenter bandportfolio dclow"}, {"datetaken": "2008-06-19 20:33:13", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (4)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3270/2591923716_e594aeec05_o.jpg", "secret": "4489ed996a", "media": "photo", "latitude": "38.975394", "id": "2591923716", "tags": "music rock photo live ska performance band roots blues annapolis reggae zydeco crawdaddies harborcenter bandportfolio dclow"}, {"datetaken": "2008-06-19 20:33:44", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (5)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3065/2591923280_32e405d807_o.jpg", "secret": "c22dedef67", "media": "photo", "latitude": "38.975394", "id": "2591923280", "tags": "music rock photo ska band roots blues annapolis reggae zydeco crawdaddies harborcenter dclow"}, {"datetaken": "2008-06-19 20:33:57", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (6)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3011/2591924354_2b8d935f2e_o.jpg", "secret": "c33dbf2635", "media": "photo", "latitude": "38.975394", "id": "2591924354", "tags": "music rock photo live ska performance band roots blues annapolis reggae zydeco crawdaddies harborcenter bandportfolio dclow"}, {"datetaken": "2008-06-19 20:34:22", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (7)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3218/2591925788_71a4be1f40_o.jpg", "secret": "ae1e749f49", "media": "photo", "latitude": "38.975394", "id": "2591925788", "tags": "music rock photo ska band roots blues annapolis reggae zydeco crawdaddies harborcenter dclow"}, {"datetaken": "2008-06-19 20:35:24", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (8)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3230/2591925022_3b2f866ac3_o.jpg", "secret": "89388e05d9", "media": "photo", "latitude": "38.975394", "id": "2591925022", "tags": "music rock photo ska band roots blues annapolis reggae zydeco crawdaddies harborcenter dclow"}, {"datetaken": "2008-06-19 20:35:49", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (9)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3106/2591927234_b519799e5c_o.jpg", "secret": "ccecc4315b", "media": "photo", "latitude": "38.975394", "id": "2591927234", "tags": "music rock photo live ska performance band roots blues annapolis reggae zydeco crawdaddies harborcenter bandportfolio dclow"}, {"datetaken": "2008-06-19 20:36:02", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (10)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3083/2591089389_08040384d3_o.jpg", "secret": "179134acba", "media": "photo", "latitude": "38.975394", "id": "2591089389", "tags": "music rock photo live ska performance band roots blues annapolis reggae zydeco crawdaddies harborcenter bandportfolio dclow"}, {"datetaken": "2008-06-19 20:39:01", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (11)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3258/2591091077_34f708fe76_o.jpg", "secret": "b32d86e01d", "media": "photo", "latitude": "38.975394", "id": "2591091077", "tags": "music rock photo ska band roots blues annapolis reggae zydeco crawdaddies harborcenter dclow"}, {"datetaken": "2008-06-19 20:39:23", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (12)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3124/2591929088_60bdac53f0_o.jpg", "secret": "e2105be8a3", "media": "photo", "latitude": "38.975394", "id": "2591929088", "tags": "music rock photo live ska performance band roots blues annapolis reggae zydeco crawdaddies harborcenter bandportfolio dclow"}, {"datetaken": "2008-06-19 20:39:34", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (13)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3050/2591092757_675aec88da_o.jpg", "secret": "bcdfeb2b95", "media": "photo", "latitude": "38.975394", "id": "2591092757", "tags": "music rock photo ska band roots blues annapolis reggae zydeco crawdaddies harborcenter dclow"}, {"datetaken": "2008-06-19 20:40:03", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (14)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3271/2591093549_06829e740f_o.jpg", "secret": "0e04fe9bae", "media": "photo", "latitude": "38.975394", "id": "2591093549", "tags": "music rock photo ska band roots blues annapolis reggae zydeco crawdaddies harborcenter dclow"}, {"datetaken": "2008-06-19 20:40:03", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (15)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3084/2591098065_9c1b886873_o.jpg", "secret": "ca15af34f7", "media": "photo", "latitude": "38.975394", "id": "2591098065", "tags": "blackandwhite bw music white black blancoynegro blanco rock photo blackwhite live negro ska performance band roots blues annapolis reggae zydeco crawdaddies harborcenter bandportfolio dclow"}, {"datetaken": "2008-06-19 20:41:43", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (16)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3062/2591931238_3109487c45_o.jpg", "secret": "d4555c59b6", "media": "photo", "latitude": "38.975394", "id": "2591931238", "tags": "music rock photo live ska performance band roots blues annapolis reggae zydeco crawdaddies harborcenter bandportfolio dclow"}, {"datetaken": "2008-06-19 20:44:30", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (17)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3272/2591094915_eb8958502e_o.jpg", "secret": "b963c4e688", "media": "photo", "latitude": "38.975394", "id": "2591094915", "tags": "music rock photo ska band roots blues annapolis reggae zydeco crawdaddies harborcenter dclow"}, {"datetaken": "2008-06-19 20:44:38", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (18)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3169/2591095525_21180a1748_o.jpg", "secret": "8a9ba8b484", "media": "photo", "latitude": "38.975394", "id": "2591095525", "tags": "music rock photo ska band roots blues annapolis reggae zydeco crawdaddies harborcenter dclow"}, {"datetaken": "2008-06-19 20:46:24", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (19)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3253/2591096189_0fab8d2d97_o.jpg", "secret": "f0d3f6dd51", "media": "photo", "latitude": "38.975394", "id": "2591096189", "tags": "music rock photo live ska performance band roots blues annapolis reggae zydeco crawdaddies harborcenter bandportfolio dclow"}, {"datetaken": "2008-06-19 20:51:38", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (20)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3282/2591096965_97f2dc26fc_o.jpg", "secret": "5bf9103955", "media": "photo", "latitude": "38.975394", "id": "2591096965", "tags": "music rock photo ska band roots blues annapolis reggae zydeco crawdaddies harborcenter dclow"}, {"datetaken": "2008-06-19 20:51:51", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (21)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3053/2591934412_8f9698a32b_o.jpg", "secret": "ef1a5792ec", "media": "photo", "latitude": "38.975394", "id": "2591934412", "tags": "blackandwhite bw music white black blancoynegro blanco rock photo blackwhite negro ska band roots blues annapolis reggae zydeco crawdaddies harborcenter dclow"}, {"datetaken": "2008-06-19 20:54:17", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (22)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3184/2591081855_057a64c628_o.jpg", "secret": "d128dd1993", "media": "photo", "latitude": "38.975394", "id": "2591081855", "tags": "music rock photo live ska performance band roots blues annapolis reggae zydeco crawdaddies harborcenter bandportfolio dclow"}, {"datetaken": "2008-06-19 20:54:53", "license": "3", "title": "Blues Fans", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3203/2591149523_0e1fc44a32_o.jpg", "secret": "d321dea67e", "media": "photo", "latitude": "38.975394", "id": "2591149523", "tags": "photo maryland annapolis dclow"}, {"datetaken": "2008-06-19 20:55:31", "license": "3", "title": "Rainy Day Blues - Crawdaddies Play Harbor Center Annapolis under threatening skies (23)", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3054/2591919314_e0bb7d9ff7_o.jpg", "secret": "2e203ff999", "media": "photo", "latitude": "38.975394", "id": "2591919314", "tags": "music rock photo ska band roots blues annapolis reggae zydeco crawdaddies harborcenter dclow"}, {"datetaken": "2008-06-19 20:57:22", "license": "3", "title": "DSC_0637", "text": "", "album_id": "72157605694985211", "longitude": "-76.543357", "url_o": "https://farm4.staticflickr.com/3157/2591082569_742be254c6_o.jpg", "secret": "0af5362e3f", "media": "photo", "latitude": "38.975394", "id": "2591082569", "tags": "music rock photo ska band roots blues annapolis reggae zydeco crawdaddies harborcenter dclow"}, {"datetaken": "2008-07-04 03:22:33", "license": "2", "title": "Charleston, Church Street", "text": "", "album_id": "72157606896569656", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3031/2635247119_537c850a1b_o.jpg", "secret": "b8b8536030", "media": "photo", "latitude": "0", "id": "2635247119", "tags": "interiors charleston renovations churchstreet 2008 mantels adamstyle residentialinteriors 2008june historicinteriors 2008july adamesque charlestonstyle hdescopeland renovationworkinprogress"}, {"datetaken": "2008-07-04 03:22:46", "license": "2", "title": "Charleston, Church Street", "text": "", "album_id": "72157606896569656", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3136/2636072814_bf06c4bb7b_o.jpg", "secret": "974bfd8f18", "media": "photo", "latitude": "0", "id": "2636072814", "tags": "interiors charleston renovations churchstreet 2008 mantels adamstyle residentialinteriors 2008june historicinteriors 2008july adamesque charlestonstyle hdescopeland renovationworkinprogress"}, {"datetaken": "2008-07-04 03:22:59", "license": "2", "title": "Charleston, Church Street", "text": "", "album_id": "72157606896569656", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3170/2636073084_31dbca0ecf_o.jpg", "secret": "e93f446c4b", "media": "photo", "latitude": "0", "id": "2636073084", "tags": "interiors charleston churchstreet 2008 adamstyle residentialinteriors 2008june historicinteriors 2008july adamesque charlestonstyle hdescopeland renovationworkinprogress"}, {"datetaken": "2008-07-04 03:23:10", "license": "2", "title": "Charleston, Church Street", "text": "", "album_id": "72157606896569656", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3108/2635247905_a373bdbeb8_o.jpg", "secret": "5f87c1bd19", "media": "photo", "latitude": "0", "id": "2635247905", "tags": "interiors charleston churchstreet 2008 adamstyle residentialinteriors 2008june historicinteriors adamesque charlestonstyle hdescopeland renovationworkinprogress"}, {"datetaken": "2008-07-04 03:23:22", "license": "2", "title": "Charleston, Church Street", "text": "", "album_id": "72157606896569656", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3117/2636073652_b144a317e2_o.jpg", "secret": "e6e82fecc4", "media": "photo", "latitude": "0", "id": "2636073652", "tags": "interiors charleston churchstreet 2008 adamstyle residentialinteriors 2008june historicinteriors 2008july adamesque charlestonstyle hdescopeland renovationworkinprogress"}, {"datetaken": "2008-07-04 03:23:46", "license": "2", "title": "Charleston, Church Street", "text": "", "album_id": "72157606896569656", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3035/2636074214_16cf459131_o.jpg", "secret": "d2a94544a6", "media": "photo", "latitude": "0", "id": "2636074214", "tags": "stairs interiors charleston churchstreet 2008 adamstyle residentialinteriors 2008june historicinteriors 2008july adamesque charlestonstyle hdescopeland renovationworkinprogress"}, {"datetaken": "2008-07-04 03:24:00", "license": "2", "title": "Charleston, Church Street", "text": "", "album_id": "72157606896569656", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3110/2635249069_46f0c7c50f_o.jpg", "secret": "d4379b76d2", "media": "photo", "latitude": "0", "id": "2635249069", "tags": "stairs interiors charleston churchstreet 2008 adamstyle residentialinteriors 2008june historicinteriors adamesque charlestonstyle hdescopeland renovationworkinprogress"}, {"datetaken": "2008-07-04 03:24:12", "license": "2", "title": "Charleston, Church Street", "text": "", "album_id": "72157606896569656", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3010/2636074816_617431883f_o.jpg", "secret": "02c94f3e45", "media": "photo", "latitude": "0", "id": "2636074816", "tags": "stairs interiors charleston churchstreet 2008 adamstyle residentialinteriors 2008june historicinteriors 2008july adamesque charlestonstyle hdescopeland renovationworkinprogress"}, {"datetaken": "2008-07-04 03:24:37", "license": "2", "title": "Charleston, Church Street", "text": "", "album_id": "72157606896569656", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3092/2635249849_f73c6126c8_o.jpg", "secret": "0372993f3c", "media": "photo", "latitude": "0", "id": "2635249849", "tags": "interiors charleston renovations churchstreet 2008 mantels adamstyle residentialinteriors 2008june historicinteriors 2008july adamesque charlestonstyle hdescopeland renovationworkinprogress"}, {"datetaken": "2008-07-04 03:24:50", "license": "2", "title": "Charleston, Church Street", "text": "", "album_id": "72157606896569656", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3120/2636075634_d7b4fa0116_o.jpg", "secret": "9efcde9e55", "media": "photo", "latitude": "0", "id": "2636075634", "tags": "interiors charleston renovations churchstreet mantels adamstyle residentialinteriors 2008june historicinteriors charlestonstyle"}, {"datetaken": "2008-07-04 03:25:03", "license": "2", "title": "Charleston, Church Street", "text": "", "album_id": "72157606896569656", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3019/2636075934_7303c8b4d1_o.jpg", "secret": "52a3cfbf59", "media": "photo", "latitude": "0", "id": "2636075934", "tags": "interiors charleston renovations churchstreet mantels adamstyle residentialinteriors 2008june historicinteriors charlestonstyle"}, {"datetaken": "2008-07-04 03:25:16", "license": "2", "title": "Charleston, Church Street", "text": "", "album_id": "72157606896569656", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3032/2636076234_dc45bc1d3a_o.jpg", "secret": "7308e77128", "media": "photo", "latitude": "0", "id": "2636076234", "tags": "interiors charleston renovations churchstreet mantels adamstyle residentialinteriors 2008june historicinteriors charlestonstyle"}, {"datetaken": "2008-07-04 03:25:29", "license": "2", "title": "Charleston, Church Street", "text": "", "album_id": "72157606896569656", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3192/2635251087_a63532b24e_o.jpg", "secret": "24e6b015ce", "media": "photo", "latitude": "0", "id": "2635251087", "tags": "interiors charleston renovations churchstreet 2008 mantels adamstyle residentialinteriors 2008june historicinteriors 2008july adamesque charlestonstyle hdescopeland renovationworkinprogress"}, {"datetaken": "2008-07-02 16:56:42", "license": "1", "title": "Muggsy's", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3179/2635639365_cb5f44f457_o.jpg", "secret": "26abc733d6", "media": "photo", "latitude": "0", "id": "2635639365", "tags": "beer baltimore clippercity"}, {"datetaken": "2008-07-02 16:57:06", "license": "1", "title": "Heavy Seas at Muggsy's", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3109/2635638367_31b0d0bb8b_o.jpg", "secret": "d3534ee19c", "media": "photo", "latitude": "0", "id": "2635638367", "tags": "beer baltimore clippercity"}, {"datetaken": "2008-07-02 19:05:45", "license": "1", "title": "Hugh throws out 1st pitch", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3088/2633870718_a2de863885_o.jpg", "secret": "5bfb34d2f9", "media": "photo", "latitude": "0", "id": "2633870718", "tags": "beer baseball baltimore orioles camdenyards clippercity sisson"}, {"datetaken": "2008-07-02 19:11:14", "license": "1", "title": "beautiful day for a game", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3025/2635544758_c4ced2e466_o.jpg", "secret": "a6ec2a66b0", "media": "photo", "latitude": "0", "id": "2635544758", "tags": "beer baseball baltimore orioles clippercity"}, {"datetaken": "2008-07-02 19:22:14", "license": "1", "title": "Pat Helsel", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3125/2635637669_61ff98c62f_o.jpg", "secret": "d76142c312", "media": "photo", "latitude": "0", "id": "2635637669", "tags": "beer baseball baltimore orioles clippercity"}, {"datetaken": "2008-07-02 19:40:38", "license": "1", "title": "Clipper City Gold Ale on tap", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3094/2633892294_f13d96be7c_o.jpg", "secret": "215cf91bd3", "media": "photo", "latitude": "0", "id": "2633892294", "tags": "beer baseball baltimore orioles clippercity"}, {"datetaken": "2008-07-02 20:14:20", "license": "1", "title": "Hugh Sisson", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3049/2633050077_082906f051_o.jpg", "secret": "bfb8e75d57", "media": "photo", "latitude": "0", "id": "2633050077", "tags": "beer baseball baltimore orioles clippercity sisson"}, {"datetaken": "2008-07-02 20:16:51", "license": "1", "title": "Clipper City at Camden Yards", "text": "", "album_id": "72157605952704278", "longitude": "-76.621613", "url_o": "https://farm4.staticflickr.com/3136/2633048429_51f28252b5_o.jpg", "secret": "54899a3277", "media": "photo", "latitude": "39.283509", "id": "2633048429", "tags": "beer baseball baltimore orioles camdenyards clippercity"}, {"datetaken": "2008-07-02 20:21:03", "license": "1", "title": "Bird1 cheers", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3165/2635645813_ffd3a9e91d_o.jpg", "secret": "5f25de575f", "media": "photo", "latitude": "0", "id": "2635645813", "tags": "beer baseball baltimore orioles camdenyards clippercity"}, {"datetaken": "2008-07-02 20:21:31", "license": "1", "title": "Bird2", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3083/2636472338_cf22b72eb6_o.jpg", "secret": "832e16972e", "media": "photo", "latitude": "0", "id": "2636472338", "tags": "beer baseball baltimore orioles camdenyards clippercity"}, {"datetaken": "2008-07-02 20:21:41", "license": "1", "title": "Shake-yer-tailfeather", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3072/2635648431_6f3606ba6f_o.jpg", "secret": "cbaccc5aac", "media": "photo", "latitude": "0", "id": "2635648431", "tags": "beer baseball maryland baltimore orioles camdenyards clippercity"}, {"datetaken": "2008-07-02 20:21:52", "license": "1", "title": "Bird 4 hug", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3187/2635649487_ea5cefd0f0_o.jpg", "secret": "ea0b868b44", "media": "photo", "latitude": "0", "id": "2635649487", "tags": "beer baseball baltimore orioles camdenyards clippercity"}, {"datetaken": "2008-07-02 20:23:56", "license": "1", "title": "warehouse and lights", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3041/2635542242_4dea49d9b0_o.jpg", "secret": "a544d2ac05", "media": "photo", "latitude": "0", "id": "2635542242", "tags": "beer baseball baltimore orioles camdenyards clippercity"}, {"datetaken": "2008-07-02 20:30:52", "license": "1", "title": "Pam, John, & Hugh of Clipper City Brewing", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3028/2635644801_45c0339deb_o.jpg", "secret": "1233e7cfa2", "media": "photo", "latitude": "0", "id": "2635644801", "tags": "beer baseball maryland baltimore orioles camdenyards clippercity sisson"}, {"datetaken": "2008-07-02 20:32:52", "license": "1", "title": "Alec and Hugh", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2305/2635641453_a5aa2b7a99_o.jpg", "secret": "f1c9420456", "media": "photo", "latitude": "0", "id": "2635641453", "tags": "beer baseball baltimore orioles clippercity sisson"}, {"datetaken": "2008-07-02 20:33:16", "license": "1", "title": "ticket", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3155/2635543976_674cd80447_o.jpg", "secret": "49d7de7602", "media": "photo", "latitude": "0", "id": "2635543976", "tags": "beer baseball baltimore orioles clippercity"}, {"datetaken": "2008-07-02 20:49:36", "license": "1", "title": "Hai karate?", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3279/2635426696_327bb3f329_o.jpg", "secret": "264a88f998", "media": "photo", "latitude": "0", "id": "2635426696", "tags": "beer baseball baltimore orioles camdenyards clippercity cizauskas"}, {"datetaken": "2008-07-02 20:58:44", "license": "1", "title": "Clipper City Golds", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3012/2634716279_95499ae9b5_o.jpg", "secret": "9738b78589", "media": "photo", "latitude": "0", "id": "2634716279", "tags": "beer baseball baltimore orioles camdenyards clippercity"}, {"datetaken": "2008-07-02 21:02:07", "license": "1", "title": "Lynne and the usher", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3009/2634714459_d424ab83b9_o.jpg", "secret": "3c5434a9e1", "media": "photo", "latitude": "0", "id": "2634714459", "tags": "beer baseball baltimore orioles clippercity"}, {"datetaken": "2008-07-02 21:07:08", "license": "1", "title": "Jim is serious", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3160/2636467754_de8ccd9de9_o.jpg", "secret": "0486bdfbce", "media": "photo", "latitude": "0", "id": "2636467754", "tags": "beer baseball baltimore orioles camdenyards clippercity"}, {"datetaken": "2008-07-02 21:10:53", "license": "1", "title": "Erin & J.R.", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3149/2636469228_f9f8eefdbb_o.jpg", "secret": "44da9a3d35", "media": "photo", "latitude": "0", "id": "2636469228", "tags": "beer baseball maryland baltimore orioles camdenyards clippercity"}, {"datetaken": "2008-07-03 15:23:19", "license": "1", "title": "Clipper City visits Fredericksburg", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3058/2635506418_01841c1025_o.jpg", "secret": "82a3ce6c3d", "media": "photo", "latitude": "0", "id": "2635506418", "tags": "beer fredericksburg beertasting clippercity"}, {"datetaken": "2008-07-03 21:18:50", "license": "1", "title": "microbrew stand @Camden Yards", "text": "", "album_id": "72157605952704278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3031/2634648491_678c823fc1_o.jpg", "secret": "5ea1b855a6", "media": "photo", "latitude": "0", "id": "2634648491", "tags": "beer baseball maryland baltimore brewery orioles clippercity"}, {"datetaken": "2008-07-03 20:47:20", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3076/2637138394_436b9cfd1d_o.jpg", "secret": "4146e7df0d", "media": "photo", "latitude": "41.678136", "id": "2637138394", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-03 20:47:23", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3185/2636313141_a71e95aea2_o.jpg", "secret": "c37df5a46c", "media": "photo", "latitude": "41.678136", "id": "2636313141", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-03 20:47:52", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3055/2637138670_b8dc1da0b6_o.jpg", "secret": "85cb7bf094", "media": "photo", "latitude": "41.678136", "id": "2637138670", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-03 20:48:51", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3107/2636313395_1047d06a29_o.jpg", "secret": "f7f6f3cd31", "media": "photo", "latitude": "41.678136", "id": "2636313395", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-03 20:49:41", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3096/2637138898_475bffd03e_o.jpg", "secret": "c6b63e973c", "media": "photo", "latitude": "41.678136", "id": "2637138898", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-03 20:50:09", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3087/2636313627_e7b838f0c9_o.jpg", "secret": "7e3a7bf89c", "media": "photo", "latitude": "41.678136", "id": "2636313627", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-03 20:50:46", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3269/2637139100_b592fd1e0b_o.jpg", "secret": "07e2db46c0", "media": "photo", "latitude": "41.678136", "id": "2637139100", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-03 20:51:00", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3026/2637139190_3e33b35490_o.jpg", "secret": "25605a4e0e", "media": "photo", "latitude": "41.678136", "id": "2637139190", "tags": "july 4th independence day 3rd fireworks display show palos heights chicago suburb southwest araceli arroyo celikins araceliarroyo 2008 nikon d50 nikond50"}, {"datetaken": "2008-07-03 20:52:56", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3169/2636313995_6a0ce3469d_o.jpg", "secret": "8068fa4b78", "media": "photo", "latitude": "41.678136", "id": "2636313995", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-03 20:53:20", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3004/2636314109_dc45ddb69e_o.jpg", "secret": "859f9471c0", "media": "photo", "latitude": "41.678136", "id": "2636314109", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-03 20:53:24", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3086/2636314229_fd574fb8fa_o.jpg", "secret": "d5f358c0d2", "media": "photo", "latitude": "41.678136", "id": "2636314229", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-03 20:53:25", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3068/2636314369_d749c6fc04_o.jpg", "secret": "c51fbeb3ed", "media": "photo", "latitude": "41.678136", "id": "2636314369", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-03 20:53:32", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3268/2637139796_4d9b010b79_o.jpg", "secret": "580e866a2c", "media": "photo", "latitude": "41.678136", "id": "2637139796", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-03 20:53:37", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3024/2636314629_d4f0283637_o.jpg", "secret": "f84131a3f3", "media": "photo", "latitude": "41.678136", "id": "2636314629", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-03 20:53:47", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3158/2636314733_820072cbec_o.jpg", "secret": "42b65a2edf", "media": "photo", "latitude": "41.678136", "id": "2636314733", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-03 20:54:22", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3142/2636314897_80a29ee11d_o.jpg", "secret": "301ab1d383", "media": "photo", "latitude": "41.678136", "id": "2636314897", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-03 20:54:27", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3266/2636315069_1f06a567f7_o.jpg", "secret": "1792dd1c04", "media": "photo", "latitude": "41.678136", "id": "2636315069", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-03 20:54:30", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3167/2636315313_aa9b329c65_o.jpg", "secret": "03aa40be75", "media": "photo", "latitude": "41.678136", "id": "2636315313", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-03 20:54:53", "license": "3", "title": "4th of July Fireworks", "text": "", "album_id": "72157605978703055", "longitude": "-87.797584", "url_o": "https://farm4.staticflickr.com/3157/2636315469_9e424ee8d7_o.jpg", "secret": "8624c47a44", "media": "photo", "latitude": "41.678136", "id": "2636315469", "tags": "show chicago southwest d50 nikon day display fireworks 4th july nikond50 suburb independence heights 2008 3rd palos arroyo araceli araceliarroyo celikins"}, {"datetaken": "2008-07-04 10:03:35", "license": "3", "title": "Third place non-profit float", "text": "", "album_id": "72157605976016098", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3048/2637493846_e146a4dc6a_o.jpg", "secret": "c61bb59a0f", "media": "photo", "latitude": "0", "id": "2637493846", "tags": "july parade avondale 2008 umc pattillo"}, {"datetaken": "2008-07-04 10:03:35", "license": "3", "title": "With the float", "text": "", "album_id": "72157605976016098", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3129/2637493958_f2c1e6b067_o.jpg", "secret": "cb5f66b101", "media": "photo", "latitude": "0", "id": "2637493958", "tags": "july parade avondale 2008 umc pattillo"}, {"datetaken": "2008-07-04 10:04:13", "license": "3", "title": "3rd Place Float", "text": "", "album_id": "72157605976016098", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3066/2636669501_5fdbaf497d_o.jpg", "secret": "2f35e1d682", "media": "photo", "latitude": "0", "id": "2636669501", "tags": "july parade avondale 2008 umc pattillo"}, {"datetaken": "2008-07-04 10:04:37", "license": "3", "title": "Water for the thirsty!", "text": "", "album_id": "72157605976016098", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3194/2637494260_273867c65d_o.jpg", "secret": "beab51b030", "media": "photo", "latitude": "0", "id": "2637494260", "tags": "july parade avondale 2008 umc pattillo"}, {"datetaken": "2008-07-04 10:05:03", "license": "3", "title": "Everywhere: Red, white, and blue", "text": "", "album_id": "72157605976016098", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3156/2636669693_0034dee9e6_o.jpg", "secret": "96cc536770", "media": "photo", "latitude": "0", "id": "2636669693", "tags": "july parade avondale 2008 umc pattillo"}, {"datetaken": "2008-07-04 10:06:33", "license": "3", "title": "Sunscreen", "text": "", "album_id": "72157605976016098", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3083/2637494456_17ea57123a_o.jpg", "secret": "0cc50db340", "media": "photo", "latitude": "0", "id": "2637494456", "tags": "july parade avondale 2008 umc pattillo"}, {"datetaken": "2008-07-04 10:08:10", "license": "3", "title": "Balloons galore", "text": "", "album_id": "72157605976016098", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3168/2636669889_5ecb89f185_o.jpg", "secret": "cc2e76abe7", "media": "photo", "latitude": "0", "id": "2636669889", "tags": "july parade avondale 2008 umc pattillo"}, {"datetaken": "2008-07-04 10:08:35", "license": "3", "title": "Patriotic hat", "text": "", "album_id": "72157605976016098", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3262/2636670007_4bba20f932_o.jpg", "secret": "c847b35985", "media": "photo", "latitude": "0", "id": "2636670007", "tags": "july parade avondale 2008 umc pattillo"}, {"datetaken": "2008-07-04 10:10:41", "license": "3", "title": "Cheer-ful Donna", "text": "", "album_id": "72157605976016098", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3103/2636670113_9ef5c8b7ce_o.jpg", "secret": "7c8e8d17ce", "media": "photo", "latitude": "0", "id": "2636670113", "tags": "july parade avondale 2008 umc pattillo"}, {"datetaken": "2008-07-04 10:12:15", "license": "3", "title": "Getting in position", "text": "", "album_id": "72157605976016098", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3265/2636670275_ca66f844c6_o.jpg", "secret": "6d5940c8a8", "media": "photo", "latitude": "0", "id": "2636670275", "tags": "july parade avondale 2008 umc pattillo"}, {"datetaken": "2008-07-04 10:13:16", "license": "3", "title": "Heading out", "text": "", "album_id": "72157605976016098", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3179/2636670467_5f07943940_o.jpg", "secret": "bfe01459bd", "media": "photo", "latitude": "0", "id": "2636670467", "tags": "july parade avondale 2008 umc pattillo"}, {"datetaken": "2008-07-04 10:16:48", "license": "3", "title": "Truckin", "text": "", "album_id": "72157605976016098", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3063/2637495282_f685424cba_o.jpg", "secret": "29294d1ee6", "media": "photo", "latitude": "0", "id": "2637495282", "tags": "july parade avondale 2008 umc pattillo"}, {"datetaken": "2008-07-04 10:18:58", "license": "3", "title": "Shades of Madi Gras", "text": "", "album_id": "72157605976016098", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3192/2636670785_3458d49cce_o.jpg", "secret": "ff2cee2eb3", "media": "photo", "latitude": "0", "id": "2636670785", "tags": "july parade avondale 2008 umc pattillo"}, {"datetaken": "2008-07-04 11:41:43", "license": "3", "title": "Bottled water and patriotic hat", "text": "", "album_id": "72157605976016098", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3105/2636670937_44fb898cbd_o.jpg", "secret": "88d750bcb2", "media": "photo", "latitude": "0", "id": "2636670937", "tags": "july parade avondale 2008 umc pattillo"}, {"datetaken": "2008-07-04 20:16:57", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3072/2638275192_d506e29dab_o.jpg", "secret": "eb529e4cf8", "media": "photo", "latitude": "0", "id": "2638275192", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 20:37:19", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3078/2638279414_acd9abafba_o.jpg", "secret": "29c58565fd", "media": "photo", "latitude": "0", "id": "2638279414", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 20:38:19", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3010/2638280986_6eb6886501_o.jpg", "secret": "b4fbd197b8", "media": "photo", "latitude": "0", "id": "2638280986", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 20:39:00", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3148/2637452219_27f7b4d2ee_o.jpg", "secret": "09db46a19f", "media": "photo", "latitude": "0", "id": "2637452219", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 20:39:14", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3255/2638283522_9a72fa8486_o.jpg", "secret": "35d3829f68", "media": "photo", "latitude": "0", "id": "2638283522", "tags": "bolingbrook illinois golf club firework display all american celebration 4th july salute fireworks show family picnic village 2008"}, {"datetaken": "2008-07-04 20:40:10", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3264/2638284852_8e1556479c_o.jpg", "secret": "a23fe022a7", "media": "photo", "latitude": "0", "id": "2638284852", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 20:42:14", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3053/2638286174_1ee16e28af_o.jpg", "secret": "3a958538be", "media": "photo", "latitude": "0", "id": "2638286174", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 20:44:31", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3108/2638287578_0aff5b43a5_o.jpg", "secret": "776e1951bc", "media": "photo", "latitude": "0", "id": "2638287578", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 20:45:44", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3142/2638288732_a83703ce99_o.jpg", "secret": "c74f3e7df6", "media": "photo", "latitude": "0", "id": "2638288732", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 20:46:28", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3261/2637459827_604b551653_o.jpg", "secret": "af15e29a06", "media": "photo", "latitude": "0", "id": "2637459827", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 20:47:36", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3191/2637461183_8956a8f75c_o.jpg", "secret": "ee79ebd0b3", "media": "photo", "latitude": "0", "id": "2637461183", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 20:48:58", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3045/2637462733_42ea4ca32a_o.jpg", "secret": "da21f5c50d", "media": "photo", "latitude": "0", "id": "2637462733", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 20:49:50", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3267/2637464603_2768eea204_o.jpg", "secret": "245f4e4348", "media": "photo", "latitude": "0", "id": "2637464603", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 20:52:53", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3083/2638296548_8fe94fe64a_o.jpg", "secret": "6717f7bfdb", "media": "photo", "latitude": "0", "id": "2638296548", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 20:54:37", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3003/2637468415_54c60426aa_o.jpg", "secret": "97997ef5ee", "media": "photo", "latitude": "0", "id": "2637468415", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 20:58:09", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3124/2637470761_79d2330dc5_o.jpg", "secret": "dc195cbf2e", "media": "photo", "latitude": "0", "id": "2637470761", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 21:00:18", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3120/2638302642_97d0ab2d39_o.jpg", "secret": "a01cde3c52", "media": "photo", "latitude": "0", "id": "2638302642", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 21:01:23", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3057/2637474323_6a27493156_o.jpg", "secret": "b4de9a99ac", "media": "photo", "latitude": "0", "id": "2637474323", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 21:02:19", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3001/2637476375_0a827c98ac_o.jpg", "secret": "b208028885", "media": "photo", "latitude": "0", "id": "2637476375", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 21:05:00", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3279/2638308670_fcd19c4685_o.jpg", "secret": "9d95a49746", "media": "photo", "latitude": "0", "id": "2638308670", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 21:07:53", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3274/2638311392_108e0de6f0_o.jpg", "secret": "16da330592", "media": "photo", "latitude": "0", "id": "2638311392", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 21:09:06", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3281/2638313978_6a5240a3fb_o.jpg", "secret": "da1f5136ff", "media": "photo", "latitude": "0", "id": "2638313978", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 21:10:20", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3143/2637486045_4effb199db_o.jpg", "secret": "899d1f31bb", "media": "photo", "latitude": "0", "id": "2637486045", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 21:12:34", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3087/2637488213_2a453f4ebe_o.jpg", "secret": "e6e477d90e", "media": "photo", "latitude": "0", "id": "2637488213", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 21:12:49", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3117/2637490301_a2327c7083_o.jpg", "secret": "0fdd689042", "media": "photo", "latitude": "0", "id": "2637490301", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 21:13:04", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157605985973667", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3163/2637492695_e64ef67211_o.jpg", "secret": "414f748d32", "media": "photo", "latitude": "0", "id": "2637492695", "tags": "show family club golf illinois picnic all village display fireworks salute 4th july firework celebration american 2008 bolingbrook"}, {"datetaken": "2008-07-04 19:53:11", "license": "2", "title": "20080704-IMG_2603", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3266/2638510562_eab3b3572e_o.jpg", "secret": "6cd3764c54", "media": "photo", "latitude": "0", "id": "2638510562", "tags": "chicago fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 20:00:47", "license": "2", "title": "20080704-IMG_2613", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3054/2637682067_17b6a111c5_o.jpg", "secret": "1e40afdd37", "media": "photo", "latitude": "0", "id": "2637682067", "tags": "chicago fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 20:40:17", "license": "2", "title": "20080704-IMG_2618", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3162/2638513958_bc89be57f7_o.jpg", "secret": "b7e0741b68", "media": "photo", "latitude": "0", "id": "2638513958", "tags": "chicago skyline architecture fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:19:36", "license": "2", "title": "20080704-IMG_2658", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3013/2637718715_7e6bb3d0fa_o.jpg", "secret": "13fe04a881", "media": "photo", "latitude": "0", "id": "2637718715", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:19:36", "license": "2", "title": "20080704-IMG_2656", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3129/2638544718_c6982bfa2d_o.jpg", "secret": "a2cbc64541", "media": "photo", "latitude": "0", "id": "2638544718", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:19:49", "license": "2", "title": "20080704-IMG_2661", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3103/2637721811_841f94a2e2_o.jpg", "secret": "38d95475aa", "media": "photo", "latitude": "0", "id": "2637721811", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:22:04", "license": "2", "title": "20080704-IMG_2666", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3109/2638552972_4da9bffb45_o.jpg", "secret": "deea6183c6", "media": "photo", "latitude": "0", "id": "2638552972", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:23:22", "license": "2", "title": "20080704-IMG_2687", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3003/2638555840_d31c7ea915_o.jpg", "secret": "2600a5ee84", "media": "photo", "latitude": "0", "id": "2638555840", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:23:26", "license": "2", "title": "20080704-IMG_2689", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3046/2637729347_8267691b41_o.jpg", "secret": "f640ab5d7a", "media": "photo", "latitude": "0", "id": "2637729347", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:23:32", "license": "2", "title": "20080704-IMG_2690", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3118/2638560880_2c70d40226_o.jpg", "secret": "5e0db7a148", "media": "photo", "latitude": "0", "id": "2638560880", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:24:38", "license": "2", "title": "20080704-IMG_2699", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3173/2637734663_492d59b497_o.jpg", "secret": "fbaffa7725", "media": "photo", "latitude": "0", "id": "2637734663", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:25:03", "license": "2", "title": "20080704-IMG_2705", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3115/2637737249_164f055e4a_o.jpg", "secret": "585b3931c3", "media": "photo", "latitude": "0", "id": "2637737249", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:25:03", "license": "2", "title": "20080704-IMG_2704", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3038/2638569086_d11031cd25_o.jpg", "secret": "a5544f5c36", "media": "photo", "latitude": "0", "id": "2638569086", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:25:22", "license": "2", "title": "20080704-IMG_2710", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3107/2637742543_c6c5663ccb_o.jpg", "secret": "7c96c32890", "media": "photo", "latitude": "0", "id": "2637742543", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:25:26", "license": "2", "title": "20080704-IMG_2717", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3101/2638574108_000cfd5a51_o.jpg", "secret": "5b3b9c7313", "media": "photo", "latitude": "0", "id": "2638574108", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:26:30", "license": "2", "title": "20080704-IMG_2738", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3147/2638576612_fb14b58079_o.jpg", "secret": "8318bb42e5", "media": "photo", "latitude": "0", "id": "2638576612", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:26:31", "license": "2", "title": "20080704-IMG_2741", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3013/2637750027_f63f18e683_o.jpg", "secret": "e59c1aa68c", "media": "photo", "latitude": "0", "id": "2637750027", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:26:41", "license": "2", "title": "20080704-IMG_2751", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3081/2637752365_eb01c8cf63_o.jpg", "secret": "2685151312", "media": "photo", "latitude": "0", "id": "2637752365", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:26:42", "license": "2", "title": "20080704-IMG_2752", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3179/2637755063_f5edb03d51_o.jpg", "secret": "0dd6b71170", "media": "photo", "latitude": "0", "id": "2637755063", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:26:48", "license": "2", "title": "20080704-IMG_2760", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3067/2638586520_4b90a10c27_o.jpg", "secret": "8483089b0f", "media": "photo", "latitude": "0", "id": "2638586520", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 21:26:51", "license": "2", "title": "20080704-IMG_2761", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3276/2638589344_e85c8d9f05_o.jpg", "secret": "487e229ce3", "media": "photo", "latitude": "0", "id": "2638589344", "tags": "chicago fireworks fourthofjuly 4thofjuly"}, {"datetaken": "2008-07-04 22:36:24", "license": "2", "title": "20080704-IMG_2771", "text": "", "album_id": "72157605987288353", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3015/2637762777_999ea363ab_o.jpg", "secret": "6a1a10284a", "media": "photo", "latitude": "0", "id": "2637762777", "tags": "chicago skyline architecture"}, {"datetaken": "2008-07-04 13:18:31", "license": "1", "title": "black sheep", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3182/2637688503_365ea59756_o.jpg", "secret": "3e692e926b", "media": "photo", "latitude": "0", "id": "2637688503", "tags": "california 4thofjuly delmar independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 13:18:46", "license": "1", "title": "Lonely looking lamb", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3005/2638519208_a44ddda7b0_o.jpg", "secret": "7c480a62cc", "media": "photo", "latitude": "0", "id": "2638519208", "tags": "california sheep lamb 4thofjuly delmar independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 13:27:08", "license": "1", "title": "cattle?", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3186/2638520292_6c7b37eb9f_o.jpg", "secret": "522e21d092", "media": "photo", "latitude": "0", "id": "2638520292", "tags": "california pettingzoo 4thofjuly delmar independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 13:27:33", "license": "1", "title": "Animals spinning on the fair ceiling", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3270/2637691643_7b50719c80_o.jpg", "secret": "d0a155743e", "media": "photo", "latitude": "0", "id": "2637691643", "tags": "california 4thofjuly delmar independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 13:27:42", "license": "1", "title": "Ashleah and the animals", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3116/2637692469_376a389549_o.jpg", "secret": "5562e00465", "media": "photo", "latitude": "0", "id": "2637692469", "tags": "california 4thofjuly delmar independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 13:28:23", "license": "1", "title": "Goats", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3033/2638523196_4aab50aef0_o.jpg", "secret": "f7cfd1e26b", "media": "photo", "latitude": "0", "id": "2638523196", "tags": "california goats 4thofjuly delmar independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 14:42:00", "license": "1", "title": "My buddies", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3176/2638524194_b6da518d5f_o.jpg", "secret": "3617cc61a1", "media": "photo", "latitude": "0", "id": "2638524194", "tags": "california 4thofjuly delmar independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 16:54:07", "license": "1", "title": "Century Plant", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3113/2637695699_ebbc47a3e8_o.jpg", "secret": "020d6950b4", "media": "photo", "latitude": "0", "id": "2637695699", "tags": "california 4thofjuly delmar independanceday centuryplant marginata agaveamericana sandiegocountyfair americanaloe delmarfairgrounds"}, {"datetaken": "2008-07-04 16:54:30", "license": "1", "title": "Succulents at the Fair", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3017/2638526334_92afe775d2_o.jpg", "secret": "8d71470b25", "media": "photo", "latitude": "0", "id": "2638526334", "tags": "california 4thofjuly succulents delmar independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 16:55:03", "license": "1", "title": "I love this succulent", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3193/2637697871_501612318d_o.jpg", "secret": "eefddca66a", "media": "photo", "latitude": "0", "id": "2637697871", "tags": "california succulent 4thofjuly delmar independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 16:56:48", "license": "1", "title": "Succulents", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3275/2638528634_950bfba0e4_o.jpg", "secret": "13610e4526", "media": "photo", "latitude": "0", "id": "2638528634", "tags": "california 4thofjuly delmar independanceday sandiegocountyfair succulentplant delmarfairgrounds"}, {"datetaken": "2008-07-04 17:06:08", "license": "1", "title": "bubbles", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3071/2638529738_a861e8f063_o.jpg", "secret": "6d8b808633", "media": "photo", "latitude": "0", "id": "2638529738", "tags": "california ball glowing 4thofjuly delmar independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 17:06:47", "license": "1", "title": "Lantern", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3164/2638530726_aa4ca988e9_o.jpg", "secret": "57f3ac4bf4", "media": "photo", "latitude": "0", "id": "2638530726", "tags": "california light shadow branches 4thofjuly delmar independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 17:17:15", "license": "1", "title": "pink dahlia", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3266/2637702527_0dcf5596ab_o.jpg", "secret": "c069e2d651", "media": "photo", "latitude": "0", "id": "2637702527", "tags": "california pink dahlia flower 4thofjuly delmar independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 17:17:26", "license": "1", "title": "Dahlia Aurora's Kiss", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3025/2637703471_f25655be52_o.jpg", "secret": "5fcac036cc", "media": "photo", "latitude": "0", "id": "2637703471", "tags": "california dahlia 4thofjuly delmar independanceday sandiegocountyfair delmarfairgrounds auroraskiss"}, {"datetaken": "2008-07-04 17:17:37", "license": "1", "title": "sweet dahlia", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3018/2638533792_671479bdd3_o.jpg", "secret": "4e55d1bec8", "media": "photo", "latitude": "0", "id": "2638533792", "tags": "california dahlia flowers 4thofjuly delmar independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 17:17:47", "license": "1", "title": "mini dahlias", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3036/2638534764_1860c671bc_o.jpg", "secret": "1c7148760f", "media": "photo", "latitude": "0", "id": "2638534764", "tags": "california 4thofjuly delmar dahlias independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 17:32:51", "license": "1", "title": "DEEP FRIED Fair", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3017/2637706847_5622790dce_o.jpg", "secret": "bc26b7920a", "media": "photo", "latitude": "0", "id": "2637706847", "tags": "california spam 4thofjuly froglegs delmar twinkies independanceday sandiegocountyfair deepfriedfood delmarfairgrounds"}, {"datetaken": "2008-07-04 17:33:30", "license": "1", "title": "deep fried galore", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3026/2638536986_f9c9070793_o.jpg", "secret": "ebc14ac3eb", "media": "photo", "latitude": "0", "id": "2638536986", "tags": "california krispykreme 4thofjuly delmar independanceday avocados sandiegocountyfair delmarfairgrounds deepfriedfoods"}, {"datetaken": "2008-07-04 17:58:07", "license": "1", "title": "my buddies V+A", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3089/2637709751_6a17c31a30_o.jpg", "secret": "82e8a78224", "media": "photo", "latitude": "0", "id": "2637709751", "tags": "california viktor hay 4thofjuly delmar independanceday sandiegocountyfair ashleah delmarfairgrounds"}, {"datetaken": "2008-07-04 18:20:47", "license": "1", "title": "Scary rabbit", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3113/2638539972_121a585f53_o.jpg", "secret": "2e9a04dbdb", "media": "photo", "latitude": "0", "id": "2638539972", "tags": "california rabbit 4thofjuly delmar independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 18:25:45", "license": "1", "title": "Sunflowers", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3005/2638542190_abaabbf1da_o.jpg", "secret": "9ee70ae4d1", "media": "photo", "latitude": "0", "id": "2638542190", "tags": "california sunflowers 4thofjuly delmar independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 18:42:01", "license": "1", "title": "sd county fair 039", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3260/2638543464_136fc6f256_o.jpg", "secret": "fd1aacbcd0", "media": "photo", "latitude": "0", "id": "2638543464", "tags": "california pond 4thofjuly delmar marinelayer independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 18:42:12", "license": "1", "title": "marine layer at the Fair", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3178/2638544702_82a50715e6_o.jpg", "secret": "125067cb0f", "media": "photo", "latitude": "0", "id": "2638544702", "tags": "california pond 4thofjuly delmar marinelayer independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 18:42:22", "license": "1", "title": "misty water", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3086/2638545822_a4af0c8a62_o.jpg", "secret": "8da793f0aa", "media": "photo", "latitude": "0", "id": "2638545822", "tags": "california mist pond 4thofjuly delmar marinelayer independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 18:42:34", "license": "1", "title": "Race track pond", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3165/2638547038_24412e86a9_o.jpg", "secret": "994876028e", "media": "photo", "latitude": "0", "id": "2638547038", "tags": "california pond palmtrees 4thofjuly delmar independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2008-07-04 18:43:46", "license": "1", "title": "ducks in the race track pond", "text": "", "album_id": "72157605987531003", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3266/2637721533_871903982b_o.jpg", "secret": "a3dcf8c60a", "media": "photo", "latitude": "0", "id": "2637721533", "tags": "california pond ducks 4thofjuly delmar independanceday sandiegocountyfair delmarfairgrounds"}, {"datetaken": "2005-10-02 03:10:04", "license": "0", "title": "The Mountains are Rising", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/26/49262291_2624d0ce26_o.jpg", "secret": "2624d0ce26", "media": "photo", "latitude": "40.481295", "id": "49262291", "tags": "roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 03:10:28", "license": "0", "title": "Rocky and Jagged", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/28/49262309_89cd826755_o.jpg", "secret": "89cd826755", "media": "photo", "latitude": "40.481295", "id": "49262309", "tags": "roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 03:10:38", "license": "0", "title": "Blue Bird - Taken in Flight", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/27/49262328_8fc33bd009_o.jpg", "secret": "8fc33bd009", "media": "photo", "latitude": "40.481295", "id": "49262328", "tags": "blue bird roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 03:12:35", "license": "0", "title": "Turn left or go over cliff", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/24/49262339_ee25bbf0b9_o.jpg", "secret": "ee25bbf0b9", "media": "photo", "latitude": "40.481295", "id": "49262339", "tags": "roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 03:12:59", "license": "0", "title": "Welcome to Estes Park", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/27/49262351_bcad3bc74a_o.jpg", "secret": "bcad3bc74a", "media": "photo", "latitude": "40.481295", "id": "49262351", "tags": "estes park roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 18:45:10", "license": "0", "title": "DSCF0014.JPG", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/30/49262360_98fa9a8045_o.jpg", "secret": "98fa9a8045", "media": "photo", "latitude": "40.481295", "id": "49262360", "tags": "roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 18:45:55", "license": "0", "title": "Tent and Rock Table", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/25/49262380_ac5b8649e1_o.jpg", "secret": "ac5b8649e1", "media": "photo", "latitude": "40.481295", "id": "49262380", "tags": "roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 18:46:32", "license": "0", "title": "After a dark night, the sun rose again", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/26/49262386_085fd0f698_o.jpg", "secret": "085fd0f698", "media": "photo", "latitude": "40.481295", "id": "49262386", "tags": "sunrise roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 18:46:46", "license": "0", "title": "View from my tent", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/31/49262409_37cb36692a_o.jpg", "secret": "37cb36692a", "media": "photo", "latitude": "40.481295", "id": "49262409", "tags": "roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 19:51:47", "license": "0", "title": "Brightness Surrounding", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/27/49262423_a5df8f2cf0_o.jpg", "secret": "a5df8f2cf0", "media": "photo", "latitude": "40.481295", "id": "49262423", "tags": "roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 20:00:47", "license": "0", "title": "Rocky Mountain Stream", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/33/49262447_dea2f75b62_o.jpg", "secret": "dea2f75b62", "media": "photo", "latitude": "40.481295", "id": "49262447", "tags": "roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 20:43:24", "license": "0", "title": "Rocks overlooking", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/27/49262473_74b3694ae9_o.jpg", "secret": "74b3694ae9", "media": "photo", "latitude": "40.481295", "id": "49262473", "tags": "roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 20:43:36", "license": "0", "title": "The View Behind", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/27/49262482_7e480c4fb8_o.jpg", "secret": "7e480c4fb8", "media": "photo", "latitude": "40.481295", "id": "49262482", "tags": "roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 20:43:48", "license": "0", "title": "Looking down the trail", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/30/49262496_c796a1d91b_o.jpg", "secret": "c796a1d91b", "media": "photo", "latitude": "40.481295", "id": "49262496", "tags": "roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 20:45:04", "license": "0", "title": "Entering Comanche Peaks Wilderness", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/29/49262511_2ce39a89e7_o.jpg", "secret": "2ce39a89e7", "media": "photo", "latitude": "40.481295", "id": "49262511", "tags": "roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 20:56:13", "license": "0", "title": "So I don't get lost", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/30/49262533_d9ea202493_o.jpg", "secret": "d9ea202493", "media": "photo", "latitude": "40.481295", "id": "49262533", "tags": "north fork trail roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 21:52:08", "license": "0", "title": "Switchbacks", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/31/49262546_697ff43e15_o.jpg", "secret": "697ff43e15", "media": "photo", "latitude": "40.481295", "id": "49262546", "tags": "switchbacks roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 21:54:17", "license": "0", "title": "Road to the Mountains", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/32/49262559_bde22235f7_o.jpg", "secret": "bde22235f7", "media": "photo", "latitude": "40.481295", "id": "49262559", "tags": "roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 22:00:28", "license": "0", "title": "Private Property - still pretty", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/25/49262568_624283e737_o.jpg", "secret": "624283e737", "media": "photo", "latitude": "40.481295", "id": "49262568", "tags": "roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-10-02 22:00:39", "license": "0", "title": "More Rock", "text": "", "album_id": "1069648", "longitude": "-105.472526", "url_o": "https://farm1.staticflickr.com/25/49262588_48c3fc5671_o.jpg", "secret": "48c3fc5671", "media": "photo", "latitude": "40.481295", "id": "49262588", "tags": "roosevelt national forest comanche peak wilderness"}, {"datetaken": "2005-12-09 21:30:48", "license": "4", "title": "Wanadoo Christmas party 2005", "text": "", "album_id": "72057594053238890", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/90603310_48be4be28e_o.jpg", "secret": "48be4be28e", "media": "photo", "latitude": "0", "id": "90603310", "tags": "christmas wanadoo titanicbar"}, {"datetaken": "2005-12-09 21:37:16", "license": "4", "title": "Wanadoo Christmas party 2005", "text": "", "album_id": "72057594053238890", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/90603395_fb5441431c_o.jpg", "secret": "fb5441431c", "media": "photo", "latitude": "0", "id": "90603395", "tags": "christmas wanadoo titanicbar"}, {"datetaken": "2005-12-09 21:38:24", "license": "4", "title": "Wanadoo Christmas party 2005", "text": "", "album_id": "72057594053238890", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/90603409_d76e1082cf_o.jpg", "secret": "d76e1082cf", "media": "photo", "latitude": "0", "id": "90603409", "tags": "christmas wanadoo titanicbar"}, {"datetaken": "2005-12-09 21:40:02", "license": "4", "title": "Wanadoo Christmas party 2005", "text": "", "album_id": "72057594053238890", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/90603419_24d3d35bb9_o.jpg", "secret": "24d3d35bb9", "media": "photo", "latitude": "0", "id": "90603419", "tags": "christmas wanadoo titanicbar"}, {"datetaken": "2005-12-09 21:40:41", "license": "4", "title": "Wanadoo Christmas party 2005", "text": "", "album_id": "72057594053238890", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/90603423_82383e5346_o.jpg", "secret": "82383e5346", "media": "photo", "latitude": "0", "id": "90603423", "tags": "christmas wanadoo titanicbar"}, {"datetaken": "2005-12-09 21:41:11", "license": "4", "title": "Wanadoo Christmas party 2005", "text": "", "album_id": "72057594053238890", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/90603428_8ecdc15f4b_o.jpg", "secret": "8ecdc15f4b", "media": "photo", "latitude": "0", "id": "90603428", "tags": "christmas wanadoo titanicbar"}, {"datetaken": "2005-12-09 22:10:34", "license": "4", "title": "Wanadoo Christmas party 2005", "text": "", "album_id": "72057594053238890", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/90603463_8034b00fb4_o.jpg", "secret": "8034b00fb4", "media": "photo", "latitude": "0", "id": "90603463", "tags": "christmas wanadoo titanicbar"}, {"datetaken": "2005-12-09 22:12:01", "license": "4", "title": "Wanadoo Christmas party 2005", "text": "", "album_id": "72057594053238890", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/90603471_fa71364437_o.jpg", "secret": "fa71364437", "media": "photo", "latitude": "0", "id": "90603471", "tags": "christmas wanadoo titanicbar"}, {"datetaken": "2005-12-09 22:14:28", "license": "4", "title": "Wanadoo Christmas party 2005", "text": "", "album_id": "72057594053238890", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/90603477_157383b4b7_o.jpg", "secret": "157383b4b7", "media": "photo", "latitude": "0", "id": "90603477", "tags": "christmas wanadoo titanicbar"}, {"datetaken": "2005-12-09 22:14:59", "license": "4", "title": "Wanadoo Christmas party 2005", "text": "", "album_id": "72057594053238890", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/90603483_46cbd6608b_o.jpg", "secret": "46cbd6608b", "media": "photo", "latitude": "0", "id": "90603483", "tags": "christmas wanadoo titanicbar"}, {"datetaken": "2006-03-12 14:32:07", "license": "3", "title": "The Trophie", "text": "", "album_id": "72057594080562623", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/111477495_dc5e355409_o.jpg", "secret": "dc5e355409", "media": "photo", "latitude": "0", "id": "111477495", "tags": ""}, {"datetaken": "2006-03-12 14:32:07", "license": "3", "title": "HE CAN READ!!!!!", "text": "", "album_id": "72057594080562623", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/111477493_b36a330a13_o.jpg", "secret": "b36a330a13", "media": "photo", "latitude": "0", "id": "111477493", "tags": ""}, {"datetaken": "2006-03-12 14:32:07", "license": "3", "title": "Memorial Day Palooza", "text": "", "album_id": "72057594080562623", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/111477492_668f4b75a2_o.jpg", "secret": "668f4b75a2", "media": "photo", "latitude": "0", "id": "111477492", "tags": ""}, {"datetaken": "2006-03-12 14:32:07", "license": "3", "title": "Carter...he's such a stud.", "text": "", "album_id": "72057594080562623", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/111477490_302e957491_o.jpg", "secret": "302e957491", "media": "photo", "latitude": "0", "id": "111477490", "tags": ""}, {"datetaken": "2006-03-12 14:32:07", "license": "3", "title": "Lesson...", "text": "", "album_id": "72057594080562623", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/111477489_2eeda00c30_o.jpg", "secret": "2eeda00c30", "media": "photo", "latitude": "0", "id": "111477489", "tags": "school beach church break middle"}, {"datetaken": "2006-03-12 14:32:07", "license": "3", "title": "Office Space", "text": "", "album_id": "72057594080562623", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/111477488_4a383c5299_o.jpg", "secret": "4a383c5299", "media": "photo", "latitude": "0", "id": "111477488", "tags": "church office workspace"}, {"datetaken": "2006-03-12 14:43:14", "license": "3", "title": "Ping Pong", "text": "", "album_id": "72057594080562623", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/111483162_ce72b04948_o.jpg", "secret": "ce72b04948", "media": "photo", "latitude": "0", "id": "111483162", "tags": ""}, {"datetaken": "2006-03-12 14:43:14", "license": "3", "title": "Great Seats!", "text": "", "album_id": "72057594080562623", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/111483161_c14c55c32b_o.jpg", "secret": "c14c55c32b", "media": "photo", "latitude": "0", "id": "111483161", "tags": ""}, {"datetaken": "2006-03-12 14:43:14", "license": "3", "title": "Baltimore Inner Harbor", "text": "", "album_id": "72057594080562623", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/111483160_a6bb05984d_o.jpg", "secret": "a6bb05984d", "media": "photo", "latitude": "0", "id": "111483160", "tags": ""}, {"datetaken": "2006-03-12 14:43:14", "license": "3", "title": "Granby St.", "text": "", "album_id": "72057594080562623", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/111483159_1a616797f2_o.jpg", "secret": "1a616797f2", "media": "photo", "latitude": "0", "id": "111483159", "tags": ""}, {"datetaken": "2006-03-12 14:43:14", "license": "3", "title": "E.T.", "text": "", "album_id": "72057594080562623", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/111483158_a62406ce94_o.jpg", "secret": "a62406ce94", "media": "photo", "latitude": "0", "id": "111483158", "tags": ""}, {"datetaken": "2005-09-05 09:54:54", "license": "0", "title": "joe_julie_nick", "text": "", "album_id": "72057594101742181", "longitude": "-87.625064", "url_o": "https://farm1.staticflickr.com/27/40503169_4c5cb471ae_o.jpg", "secret": "4c5cb471ae", "media": "photo", "latitude": "41.896219", "id": "40503169", "tags": "theologyontap05"}, {"datetaken": "2005-09-05 09:54:54", "license": "0", "title": "frdan_kevin", "text": "", "album_id": "72057594101742181", "longitude": "-87.625064", "url_o": "https://farm1.staticflickr.com/22/40503168_43cf704067_o.jpg", "secret": "43cf704067", "media": "photo", "latitude": "41.896219", "id": "40503168", "tags": "theologyontap05"}, {"datetaken": "2005-09-05 09:54:54", "license": "0", "title": "kelly_steve", "text": "", "album_id": "72057594101742181", "longitude": "-87.625064", "url_o": "https://farm1.staticflickr.com/24/40503170_3a064a6357_o.jpg", "secret": "3a064a6357", "media": "photo", "latitude": "41.896219", "id": "40503170", "tags": "theologyontap05"}, {"datetaken": "2005-09-05 09:54:54", "license": "0", "title": "alexis_jennifer", "text": "", "album_id": "72057594101742181", "longitude": "-87.625064", "url_o": "https://farm1.staticflickr.com/30/40503166_39e5777f9f_o.jpg", "secret": "39e5777f9f", "media": "photo", "latitude": "41.896219", "id": "40503166", "tags": "theologyontap05"}, {"datetaken": "2005-09-05 09:54:54", "license": "0", "title": "cardinal_budweiser", "text": "", "album_id": "72057594101742181", "longitude": "-87.625064", "url_o": "https://farm1.staticflickr.com/31/40503167_c719075ff4_o.jpg", "secret": "c719075ff4", "media": "photo", "latitude": "41.896219", "id": "40503167", "tags": "theologyontap05"}, {"datetaken": "2005-09-05 10:03:09", "license": "0", "title": "lisa_leigh_imelda_mary_lisa_joe_me_kate", "text": "", "album_id": "72057594101742181", "longitude": "-87.625064", "url_o": "https://farm1.staticflickr.com/27/40505644_75176ddf8f_o.jpg", "secret": "75176ddf8f", "media": "photo", "latitude": "41.896219", "id": "40505644", "tags": "theologyontap05 justinwalters"}, {"datetaken": "2005-09-05 10:03:09", "license": "0", "title": "mary_rob_etc", "text": "", "album_id": "72057594101742181", "longitude": "-87.625064", "url_o": "https://farm1.staticflickr.com/24/40505645_93cb2267c7_o.jpg", "secret": "93cb2267c7", "media": "photo", "latitude": "41.896219", "id": "40505645", "tags": "theologyontap05 justinwalters"}, {"datetaken": "2005-09-05 10:03:09", "license": "0", "title": "lisa_boldi", "text": "", "album_id": "72057594101742181", "longitude": "-87.625064", "url_o": "https://farm1.staticflickr.com/25/40505643_e197344644_o.jpg", "secret": "e197344644", "media": "photo", "latitude": "41.896219", "id": "40505643", "tags": "theologyontap05"}, {"datetaken": "2005-09-05 10:03:09", "license": "0", "title": "nick_elizabeth_steve", "text": "", "album_id": "72057594101742181", "longitude": "-87.625064", "url_o": "https://farm1.staticflickr.com/22/40505649_271f024b25_o.jpg", "secret": "271f024b25", "media": "photo", "latitude": "41.896219", "id": "40505649", "tags": "theologyontap05"}, {"datetaken": "2005-09-05 10:03:09", "license": "0", "title": "mike_raul", "text": "", "album_id": "72057594101742181", "longitude": "-87.625064", "url_o": "https://farm1.staticflickr.com/23/40505647_d261532e99_o.jpg", "secret": "d261532e99", "media": "photo", "latitude": "41.896219", "id": "40505647", "tags": "theologyontap05"}, {"datetaken": "2005-09-05 10:15:55", "license": "0", "title": "me_unicycle", "text": "", "album_id": "72057594101742181", "longitude": "-87.625064", "url_o": "https://farm1.staticflickr.com/22/40509482_27919799a5_o.jpg", "secret": "27919799a5", "media": "photo", "latitude": "41.896219", "id": "40509482", "tags": "me theologyontap05 justinwalters"}, {"datetaken": "2005-09-05 10:15:55", "license": "0", "title": "kristin_frdan", "text": "", "album_id": "72057594101742181", "longitude": "-87.625064", "url_o": "https://farm1.staticflickr.com/31/40509481_dff0e53fab_o.jpg", "secret": "dff0e53fab", "media": "photo", "latitude": "41.896219", "id": "40509481", "tags": "theologyontap05"}, {"datetaken": "2005-09-05 10:15:55", "license": "0", "title": "rachel_etc", "text": "", "album_id": "72057594101742181", "longitude": "-87.625064", "url_o": "https://farm1.staticflickr.com/25/40509483_4f90a61230_o.jpg", "secret": "4f90a61230", "media": "photo", "latitude": "41.896219", "id": "40509483", "tags": "theologyontap05"}, {"datetaken": "2006-05-05 20:42:25", "license": "0", "title": "Hey! A Party?", "text": "", "album_id": "72057594126576216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/141082366_091639f227_o.jpg", "secret": "091639f227", "media": "photo", "latitude": "0", "id": "141082366", "tags": ""}, {"datetaken": "2006-05-05 20:42:48", "license": "0", "title": "Cinco de Macmo!", "text": "", "album_id": "72057594126576216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/141082367_1aec109ce7_o.jpg", "secret": "1aec109ce7", "media": "photo", "latitude": "0", "id": "141082367", "tags": ""}, {"datetaken": "2006-05-05 20:44:13", "license": "0", "title": "Macmo!", "text": "", "album_id": "72057594126576216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/141082368_0dce0f4a95_o.jpg", "secret": "0dce0f4a95", "media": "photo", "latitude": "0", "id": "141082368", "tags": ""}, {"datetaken": "2006-05-05 20:45:03", "license": "0", "title": "Nachos!", "text": "", "album_id": "72057594126576216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/141082369_79e90621cb_o.jpg", "secret": "79e90621cb", "media": "photo", "latitude": "0", "id": "141082369", "tags": ""}, {"datetaken": "2006-05-05 20:46:33", "license": "0", "title": "Group 1", "text": "", "album_id": "72057594126576216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/141082370_bbb1003616_o.jpg", "secret": "bbb1003616", "media": "photo", "latitude": "0", "id": "141082370", "tags": ""}, {"datetaken": "2006-05-05 20:46:40", "license": "0", "title": "Group 2", "text": "", "album_id": "72057594126576216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/141082372_2ee9c04291_o.jpg", "secret": "2ee9c04291", "media": "photo", "latitude": "0", "id": "141082372", "tags": ""}, {"datetaken": "2006-05-05 20:53:01", "license": "0", "title": "The Mastermind", "text": "", "album_id": "72057594126576216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/141083253_c25661aff9_o.jpg", "secret": "c25661aff9", "media": "photo", "latitude": "0", "id": "141083253", "tags": ""}, {"datetaken": "2006-05-05 20:53:16", "license": "0", "title": "Macmo Fights The Pinata", "text": "", "album_id": "72057594126576216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/141083254_ffed344fc7_o.jpg", "secret": "ffed344fc7", "media": "photo", "latitude": "0", "id": "141083254", "tags": ""}, {"datetaken": "2006-05-05 20:53:30", "license": "0", "title": "Jesse Takes A Whack At It", "text": "", "album_id": "72057594126576216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/141083255_a502ac4d71_o.jpg", "secret": "a502ac4d71", "media": "photo", "latitude": "0", "id": "141083255", "tags": ""}, {"datetaken": "2006-05-05 20:54:11", "license": "0", "title": "Maxwell v. Pinata", "text": "", "album_id": "72057594126576216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/141083256_89e2ea47a8_o.jpg", "secret": "89e2ea47a8", "media": "photo", "latitude": "0", "id": "141083256", "tags": ""}, {"datetaken": "2006-05-05 20:57:09", "license": "0", "title": "Ms. Allen Gets Her Some Nachos", "text": "", "album_id": "72057594126576216", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/141083258_dd209a9851_o.jpg", "secret": "dd209a9851", "media": "photo", "latitude": "0", "id": "141083258", "tags": ""}, {"datetaken": "2006-05-28 12:08:55", "license": "0", "title": "Wet fish and frog.", "text": "", "album_id": "72157594152362026", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/157957582_d9881cbeaa_o.jpg", "secret": "d9881cbeaa", "media": "photo", "latitude": "0", "id": "157957582", "tags": "park lake canobie"}, {"datetaken": "2006-05-28 13:00:07", "license": "0", "title": "Swings!", "text": "", "album_id": "72157594152362026", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/157957577_b8b7aa6304_o.jpg", "secret": "b8b7aa6304", "media": "photo", "latitude": "0", "id": "157957577", "tags": "park lake canobie"}, {"datetaken": "2006-05-28 14:25:19", "license": "0", "title": "Skater!", "text": "", "album_id": "72157594152362026", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/157957578_cad8b2578c_o.jpg", "secret": "cad8b2578c", "media": "photo", "latitude": "0", "id": "157957578", "tags": "park lake canobie"}, {"datetaken": "2006-05-28 15:33:29", "license": "0", "title": "Random shot at Canobie Lake Park", "text": "", "album_id": "72157594152362026", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/158138497_967039de34_o.jpg", "secret": "967039de34", "media": "photo", "latitude": "0", "id": "158138497", "tags": "park lake canobie"}, {"datetaken": "2006-05-28 17:36:08", "license": "0", "title": "Corkscrew!", "text": "", "album_id": "72157594152362026", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/157957581_c6a416d18a_o.jpg", "secret": "c6a416d18a", "media": "photo", "latitude": "0", "id": "157957581", "tags": "park lake canobie"}, {"datetaken": "2006-05-28 17:44:17", "license": "0", "title": "Happy Frog", "text": "", "album_id": "72157594152362026", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/158100258_3135e05a8f_o.jpg", "secret": "3135e05a8f", "media": "photo", "latitude": "0", "id": "158100258", "tags": "park lake canobie"}, {"datetaken": "2006-05-28 19:38:15", "license": "0", "title": "Butterfly light", "text": "", "album_id": "72157594152362026", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/158100260_e0eb824ab4_o.jpg", "secret": "e0eb824ab4", "media": "photo", "latitude": "0", "id": "158100260", "tags": "park lake canobie"}, {"datetaken": "2006-05-28 19:43:13", "license": "0", "title": "Underside of the Wipeout", "text": "", "album_id": "72157594152362026", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/158100261_f08be85833_o.jpg", "secret": "f08be85833", "media": "photo", "latitude": "0", "id": "158100261", "tags": "park lake canobie"}, {"datetaken": "2006-05-28 19:43:22", "license": "0", "title": "Wipeout!", "text": "", "album_id": "72157594152362026", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/157957579_876c839478_o.jpg", "secret": "876c839478", "media": "photo", "latitude": "0", "id": "157957579", "tags": "park lake canobie"}, {"datetaken": "2006-05-28 19:44:06", "license": "0", "title": "Hoohoohooo Wipeout!", "text": "", "album_id": "72157594152362026", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/158100262_91893818f0_o.jpg", "secret": "91893818f0", "media": "photo", "latitude": "0", "id": "158100262", "tags": "park lake canobie"}, {"datetaken": "2006-05-28 19:51:22", "license": "0", "title": "Skater at night", "text": "", "album_id": "72157594152362026", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/158109609_109f2acc08_o.jpg", "secret": "109f2acc08", "media": "photo", "latitude": "0", "id": "158109609", "tags": "park lake canobie"}, {"datetaken": "2006-05-28 19:56:21", "license": "0", "title": "Neon reflection", "text": "", "album_id": "72157594152362026", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/158100263_9a08171061_o.jpg", "secret": "9a08171061", "media": "photo", "latitude": "0", "id": "158100263", "tags": "park lake canobie"}, {"datetaken": "2006-05-28 19:57:43", "license": "0", "title": "Bang! Zoom!", "text": "", "album_id": "72157594152362026", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/158100264_9eaf443e7c_o.jpg", "secret": "9eaf443e7c", "media": "photo", "latitude": "0", "id": "158100264", "tags": "park lake canobie"}, {"datetaken": "2006-05-28 20:27:57", "license": "0", "title": "Carousel", "text": "", "album_id": "72157594152362026", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/158109608_fdd213d720_o.jpg", "secret": "fdd213d720", "media": "photo", "latitude": "0", "id": "158109608", "tags": "park lake canobie"}, {"datetaken": "2006-05-28 20:49:59", "license": "0", "title": "Carousel!", "text": "", "album_id": "72157594152362026", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/157957580_cc284bfb01_o.jpg", "secret": "cc284bfb01", "media": "photo", "latitude": "0", "id": "157957580", "tags": "park lake canobie"}, {"datetaken": "2006-09-02 13:22:27", "license": "0", "title": "Bob", "text": "", "album_id": "72157594269423279", "longitude": "-86.207206", "url_o": "https://farm1.staticflickr.com/84/234512591_5ebcdc9c73_o.jpg", "secret": "5ebcdc9c73", "media": "photo", "latitude": "41.653232", "id": "234512591", "tags": "pet animal cat plymouth bob blueberryfestival"}, {"datetaken": "2006-09-02 13:23:00", "license": "0", "title": "Bob", "text": "", "album_id": "72157594269423279", "longitude": "-86.207206", "url_o": "https://farm1.staticflickr.com/83/234512947_d1263e98a2_o.jpg", "secret": "d1263e98a2", "media": "photo", "latitude": "41.653232", "id": "234512947", "tags": "pet animal cat plymouth bob blueberryfestival"}, {"datetaken": "2006-09-02 14:45:10", "license": "0", "title": "Jackson Getting Prepped for First Blueberry Festival", "text": "", "album_id": "72157594269423279", "longitude": "-86.310455", "url_o": "https://farm1.staticflickr.com/93/234513320_882d4f6f5f_o.jpg", "secret": "882d4f6f5f", "media": "photo", "latitude": "41.341106", "id": "234513320", "tags": "plymouth blueberryfestival"}, {"datetaken": "2006-09-02 15:29:51", "license": "0", "title": "Steak, Potatoes, Mushrooms and Lemonaide", "text": "", "album_id": "72157594269423279", "longitude": "-86.310455", "url_o": "https://farm1.staticflickr.com/88/234513711_c9adb9c97a_o.jpg", "secret": "c9adb9c97a", "media": "photo", "latitude": "41.341106", "id": "234513711", "tags": "food mushrooms potatoes plymouth steak lemonaide blueberryfestival"}, {"datetaken": "2006-09-02 15:37:07", "license": "0", "title": "All Gone", "text": "", "album_id": "72157594269423279", "longitude": "-86.310455", "url_o": "https://farm1.staticflickr.com/82/234514358_2f16421497_o.jpg", "secret": "2f16421497", "media": "photo", "latitude": "41.341106", "id": "234514358", "tags": "plymouth grease blueberryfestival"}, {"datetaken": "2006-09-02 15:42:59", "license": "0", "title": "Tony and Jill Enjoying the Food", "text": "", "album_id": "72157594269423279", "longitude": "-86.310455", "url_o": "https://farm1.staticflickr.com/89/234514985_1b4628464e_o.jpg", "secret": "1b4628464e", "media": "photo", "latitude": "41.341106", "id": "234514985", "tags": "jill plymouth tony blueberryfestival"}, {"datetaken": "2006-09-02 15:54:13", "license": "0", "title": "Deep Fried Candy Bars", "text": "", "album_id": "72157594269423279", "longitude": "-86.310455", "url_o": "https://farm1.staticflickr.com/98/234515480_203cab34f5_o.jpg", "secret": "203cab34f5", "media": "photo", "latitude": "41.341106", "id": "234515480", "tags": "plymouth oreo candybar deepfried blueberryfestival"}, {"datetaken": "2006-09-02 15:56:48", "license": "0", "title": "More Deep Fried", "text": "", "album_id": "72157594269423279", "longitude": "-86.310455", "url_o": "https://farm1.staticflickr.com/85/234515886_8ff871364f_o.jpg", "secret": "8ff871364f", "media": "photo", "latitude": "41.341106", "id": "234515886", "tags": "plymouth blueberryfestival"}, {"datetaken": "2006-09-02 15:58:12", "license": "0", "title": "Jill Eating A Deep Fried Oreo", "text": "", "album_id": "72157594269423279", "longitude": "-86.310455", "url_o": "https://farm1.staticflickr.com/90/234516339_f93a6f7615_o.jpg", "secret": "f93a6f7615", "media": "photo", "latitude": "41.341106", "id": "234516339", "tags": "jill plymouth oreo deepfried blueberryfestival"}, {"datetaken": "2006-09-02 15:58:37", "license": "0", "title": "Carrie With A Deep Fried Mars Bar", "text": "", "album_id": "72157594269423279", "longitude": "-86.310455", "url_o": "https://farm1.staticflickr.com/82/234516851_a5644ed780_o.jpg", "secret": "a5644ed780", "media": "photo", "latitude": "41.341106", "id": "234516851", "tags": "plymouth carrie candybar deepfried blueberryfestival"}, {"datetaken": "2006-09-02 16:00:57", "license": "0", "title": "Me Eating A Deep Fried Oreo", "text": "", "album_id": "72157594269423279", "longitude": "-86.310455", "url_o": "https://farm1.staticflickr.com/72/234517271_610f903daf_o.jpg", "secret": "610f903daf", "media": "photo", "latitude": "41.341106", "id": "234517271", "tags": "me plymouth oreo deepfried blueberryfestival"}, {"datetaken": "2006-09-02 16:01:01", "license": "0", "title": "Me Eating A Deep Fried Oreo", "text": "", "album_id": "72157594269423279", "longitude": "-86.310455", "url_o": "https://farm1.staticflickr.com/91/234517659_c9b61c19e5_o.jpg", "secret": "c9b61c19e5", "media": "photo", "latitude": "41.341106", "id": "234517659", "tags": "me plymouth oreo deepfried blueberryfestival"}, {"datetaken": "2006-09-02 16:12:26", "license": "0", "title": "Tom's Tasty Taters", "text": "", "album_id": "72157594269423279", "longitude": "-86.310455", "url_o": "https://farm1.staticflickr.com/89/234517981_67d06846e4_o.jpg", "secret": "67d06846e4", "media": "photo", "latitude": "41.341106", "id": "234517981", "tags": "plymouth blueberryfestival"}, {"datetaken": "2007-01-13 17:06:34", "license": "0", "title": "Katie's 5th Birthday Party", "text": "", "album_id": "72157594499779961", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/369214081_d66e590a53_o.jpg", "secret": "d66e590a53", "media": "photo", "latitude": "0", "id": "369214081", "tags": "birthday party katies 5th"}, {"datetaken": "2007-01-13 17:07:53", "license": "0", "title": "Katie's 5th Birthday Party", "text": "", "album_id": "72157594499779961", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/369214083_2e79bf1b94_o.jpg", "secret": "2e79bf1b94", "media": "photo", "latitude": "0", "id": "369214083", "tags": "birthday party katies 5th"}, {"datetaken": "2007-01-13 17:08:26", "license": "0", "title": "Katie's 5th Birthday Party", "text": "", "album_id": "72157594499779961", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/369214088_811ceeb8fb_o.jpg", "secret": "811ceeb8fb", "media": "photo", "latitude": "0", "id": "369214088", "tags": "birthday party katies 5th"}, {"datetaken": "2007-01-13 17:08:32", "license": "0", "title": "Katie's 5th Birthday Party", "text": "", "album_id": "72157594499779961", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/369214091_3ed2c20050_o.jpg", "secret": "3ed2c20050", "media": "photo", "latitude": "0", "id": "369214091", "tags": "birthday party katies 5th"}, {"datetaken": "2007-01-13 17:09:02", "license": "0", "title": "Katie's 5th Birthday Party", "text": "", "album_id": "72157594499779961", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/369214095_6911871e92_o.jpg", "secret": "6911871e92", "media": "photo", "latitude": "0", "id": "369214095", "tags": "birthday party katies 5th"}, {"datetaken": "2007-01-13 17:12:41", "license": "0", "title": "Katie's 5th Birthday Party", "text": "", "album_id": "72157594499779961", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/369214097_aa51465356_o.jpg", "secret": "aa51465356", "media": "photo", "latitude": "0", "id": "369214097", "tags": "birthday flowers party smile cake cheese table chair chocolate plate fork katies icing bangs 5th"}, {"datetaken": "2007-01-13 17:13:08", "license": "0", "title": "Katie's 5th Birthday Party", "text": "", "album_id": "72157594499779961", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/369221015_5796974ff1_o.jpg", "secret": "5796974ff1", "media": "photo", "latitude": "0", "id": "369221015", "tags": ""}, {"datetaken": "2007-01-13 17:13:13", "license": "0", "title": "Katie's 5th Birthday Party", "text": "", "album_id": "72157594499779961", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/369221017_71b942a8b6_o.jpg", "secret": "71b942a8b6", "media": "photo", "latitude": "0", "id": "369221017", "tags": ""}, {"datetaken": "2007-01-13 17:15:15", "license": "0", "title": "Katie's 5th Birthday Party", "text": "", "album_id": "72157594499779961", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/369221023_9ed4bb642f_o.jpg", "secret": "9ed4bb642f", "media": "photo", "latitude": "0", "id": "369221023", "tags": ""}, {"datetaken": "2007-01-13 17:15:33", "license": "0", "title": "Katie's 5th Birthday Party", "text": "", "album_id": "72157594499779961", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/369221024_f15b7d81cd_o.jpg", "secret": "f15b7d81cd", "media": "photo", "latitude": "0", "id": "369221024", "tags": ""}, {"datetaken": "2007-01-13 17:15:45", "license": "0", "title": "Katie's 5th Birthday Party", "text": "", "album_id": "72157594499779961", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/369221025_8dc84adb72_o.jpg", "secret": "8dc84adb72", "media": "photo", "latitude": "0", "id": "369221025", "tags": ""}, {"datetaken": "2007-01-13 17:16:15", "license": "0", "title": "Katie's 5th Birthday Party", "text": "", "album_id": "72157594499779961", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/369221031_a37bd6bf56_o.jpg", "secret": "a37bd6bf56", "media": "photo", "latitude": "0", "id": "369221031", "tags": ""}, {"datetaken": "2007-01-13 17:28:06", "license": "0", "title": "Katie's 5th Birthday Party", "text": "", "album_id": "72157594499779961", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/369224907_629a93e533_o.jpg", "secret": "629a93e533", "media": "photo", "latitude": "0", "id": "369224907", "tags": ""}, {"datetaken": "2007-01-13 17:28:09", "license": "0", "title": "Katie's 5th Birthday Party", "text": "", "album_id": "72157594499779961", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/369224911_47ab2306d6_o.jpg", "secret": "47ab2306d6", "media": "photo", "latitude": "0", "id": "369224911", "tags": ""}, {"datetaken": "2007-01-13 17:28:19", "license": "0", "title": "Katie's 5th Birthday Party", "text": "", "album_id": "72157594499779961", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/369224913_4409850a75_o.jpg", "secret": "4409850a75", "media": "photo", "latitude": "0", "id": "369224913", "tags": ""}, {"datetaken": "2007-01-13 17:44:31", "license": "0", "title": "Katie's 5th Birthday Party", "text": "", "album_id": "72157594499779961", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/369224919_67f04aab84_o.jpg", "secret": "67f04aab84", "media": "photo", "latitude": "0", "id": "369224919", "tags": ""}, {"datetaken": "2006-06-11 12:59:55", "license": "5", "title": "Jacob Appelbaum", "text": "", "album_id": "72157600068118513", "longitude": "-73.580476", "url_o": "https://farm1.staticflickr.com/59/165686585_2e9a7eb16f_o.jpg", "secret": "2e9a7eb16f", "media": "photo", "latitude": "45.515572", "id": "165686585", "tags": "people canada montr\u00e9al jakeappelbaum jacobappelbaum ioerror caf\u00e9santropol"}, {"datetaken": "2006-06-11 13:00:13", "license": "5", "title": "Meryem", "text": "", "album_id": "72157600068118513", "longitude": "-73.580476", "url_o": "https://farm1.staticflickr.com/54/165686846_b9ea92f1c5_o.jpg", "secret": "b9ea92f1c5", "media": "photo", "latitude": "45.515572", "id": "165686846", "tags": "people canada montr\u00e9al caf\u00e9santropol"}, {"datetaken": "2006-06-11 14:37:26", "license": "5", "title": "Orange table", "text": "", "album_id": "72157600068118513", "longitude": "-73.580476", "url_o": "https://farm1.staticflickr.com/58/165687044_a47711e82a_o.jpg", "secret": "a47711e82a", "media": "photo", "latitude": "45.515572", "id": "165687044", "tags": "canada table montr\u00e9al caf\u00e9santropol"}, {"datetaken": "2006-06-11 14:49:25", "license": "5", "title": "Hugging", "text": "", "album_id": "72157600068118513", "longitude": "-73.584601", "url_o": "https://farm1.staticflickr.com/68/165687123_1784e1ae48_o.jpg", "secret": "1784e1ae48", "media": "photo", "latitude": "45.515060", "id": "165687123", "tags": "people canada dance hug capoeira montr\u00e9al"}, {"datetaken": "2006-06-11 14:49:50", "license": "5", "title": "Capoeira", "text": "", "album_id": "72157600068118513", "longitude": "-73.584601", "url_o": "https://farm1.staticflickr.com/50/165687323_9481d4f4f7_o.jpg", "secret": "9481d4f4f7", "media": "photo", "latitude": "45.515060", "id": "165687323", "tags": "people canada dance capoeira montr\u00e9al"}, {"datetaken": "2006-06-11 14:50:24", "license": "5", "title": "Capoeira", "text": "", "album_id": "72157600068118513", "longitude": "-73.584601", "url_o": "https://farm1.staticflickr.com/64/165687593_c20a742013_o.jpg", "secret": "c20a742013", "media": "photo", "latitude": "45.515060", "id": "165687593", "tags": "people canada dance capoeira montr\u00e9al"}, {"datetaken": "2006-06-11 14:50:30", "license": "5", "title": "Capoeira", "text": "", "album_id": "72157600068118513", "longitude": "-73.584601", "url_o": "https://farm1.staticflickr.com/67/165687741_492f987dab_o.jpg", "secret": "492f987dab", "media": "photo", "latitude": "45.515060", "id": "165687741", "tags": "people canada dance capoeira montr\u00e9al"}, {"datetaken": "2006-06-11 14:51:43", "license": "5", "title": "Capoeira", "text": "", "album_id": "72157600068118513", "longitude": "-73.584601", "url_o": "https://farm1.staticflickr.com/74/165687943_673db68b4f_o.jpg", "secret": "673db68b4f", "media": "photo", "latitude": "45.515060", "id": "165687943", "tags": "people canada dance capoeira montr\u00e9al"}, {"datetaken": "2006-06-11 15:00:24", "license": "5", "title": "Emma spinning poi", "text": "", "album_id": "72157600068118513", "longitude": "-73.585116", "url_o": "https://farm1.staticflickr.com/64/165688299_d1d42f1793_o.jpg", "secret": "d1d42f1793", "media": "photo", "latitude": "45.514466", "id": "165688299", "tags": "people canada montr\u00e9al tamtamjam"}, {"datetaken": "2006-06-11 15:06:29", "license": "5", "title": "Meryem", "text": "", "album_id": "72157600068118513", "longitude": "-73.585116", "url_o": "https://farm1.staticflickr.com/47/165688717_3faf089693_o.jpg", "secret": "3faf089693", "media": "photo", "latitude": "45.514466", "id": "165688717", "tags": "people canada montr\u00e9al tamtamjam"}, {"datetaken": "2006-06-11 15:14:28", "license": "5", "title": "Jacob spinning poi", "text": "", "album_id": "72157600068118513", "longitude": "-73.585116", "url_o": "https://farm1.staticflickr.com/68/165688846_7172273520_o.jpg", "secret": "7172273520", "media": "photo", "latitude": "45.514466", "id": "165688846", "tags": "people canada montr\u00e9al jakeappelbaum jacobappelbaum ioerror tamtamjam"}, {"datetaken": "2006-06-11 15:48:50", "license": "5", "title": "Meryem", "text": "", "album_id": "72157600068118513", "longitude": "-73.585116", "url_o": "https://farm1.staticflickr.com/73/165689101_31a8a38f39_o.jpg", "secret": "31a8a38f39", "media": "photo", "latitude": "45.514466", "id": "165689101", "tags": "people canada montr\u00e9al tamtamjam"}, {"datetaken": "2006-06-11 15:51:13", "license": "5", "title": "Angel in the clouds", "text": "", "album_id": "72157600068118513", "longitude": "-73.585116", "url_o": "https://farm1.staticflickr.com/54/165689273_181f5a4133_o.jpg", "secret": "181f5a4133", "media": "photo", "latitude": "45.514466", "id": "165689273", "tags": "sky canada weather statue montr\u00e9al tamtamjam"}, {"datetaken": "2006-06-11 15:52:28", "license": "5", "title": "Under the umbrella", "text": "", "album_id": "72157600068118513", "longitude": "-73.585116", "url_o": "https://farm1.staticflickr.com/64/165689533_a834491958_o.jpg", "secret": "a834491958", "media": "photo", "latitude": "45.514466", "id": "165689533", "tags": "camera people canada montr\u00e9al jakeappelbaum jacobappelbaum ioerror tamtamjam"}, {"datetaken": "2006-06-11 15:52:31", "license": "5", "title": "Under the umbrella", "text": "", "album_id": "72157600068118513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/165689813_8e3c2d3d18_o.jpg", "secret": "8e3c2d3d18", "media": "photo", "latitude": "0", "id": "165689813", "tags": "camera people canada montr\u00e9al jakeappelbaum jacobappelbaum ioerror tamtamjam"}, {"datetaken": "2006-06-11 15:54:23", "license": "5", "title": "Jes Dolan", "text": "", "album_id": "72157600068118513", "longitude": "-73.585116", "url_o": "https://farm1.staticflickr.com/54/165689991_0030b49d3b_o.jpg", "secret": "0030b49d3b", "media": "photo", "latitude": "45.514466", "id": "165689991", "tags": "people canada montr\u00e9al jakeappelbaum jacobappelbaum ioerror tamtamjam"}, {"datetaken": "2006-06-11 15:56:45", "license": "5", "title": "Jes Dolan", "text": "", "album_id": "72157600068118513", "longitude": "-73.585116", "url_o": "https://farm1.staticflickr.com/69/165690289_d027ee9315_o.jpg", "secret": "d027ee9315", "media": "photo", "latitude": "45.514466", "id": "165690289", "tags": "people canada montr\u00e9al tamtamjam"}, {"datetaken": "2006-06-11 16:16:20", "license": "5", "title": "Funny face", "text": "", "album_id": "72157600068118513", "longitude": "-73.585116", "url_o": "https://farm1.staticflickr.com/75/165690572_f1924bf966_o.jpg", "secret": "f1924bf966", "media": "photo", "latitude": "45.514466", "id": "165690572", "tags": "camera people canada montr\u00e9al jakeappelbaum jacobappelbaum ioerror tamtamjam"}, {"datetaken": "2007-04-28 17:59:58", "license": "0", "title": "Sushi Night April 2007", "text": "", "album_id": "72157600156777650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/232/477188422_f5096e08bc_o.jpg", "secret": "3b021620ed", "media": "photo", "latitude": "0", "id": "477188422", "tags": "california canon sushi powershot orangecounty a630 huntingdonbeach"}, {"datetaken": "2007-04-28 18:04:33", "license": "0", "title": "Sushi Night April 2007", "text": "", "album_id": "72157600156777650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/477188562_b47727c6d9_o.jpg", "secret": "fd9dd548b3", "media": "photo", "latitude": "0", "id": "477188562", "tags": "california canon sushi powershot orangecounty a630 huntingdonbeach"}, {"datetaken": "2007-04-28 18:07:14", "license": "0", "title": "Sushi Night April 2007", "text": "", "album_id": "72157600156777650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/220/477206369_52648cb161_o.jpg", "secret": "65da347916", "media": "photo", "latitude": "0", "id": "477206369", "tags": "california canon sushi powershot orangecounty a630 huntingdonbeach"}, {"datetaken": "2007-04-28 18:08:03", "license": "0", "title": "Sushi Night April 2007", "text": "", "album_id": "72157600156777650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/477188628_c9e00839a1_o.jpg", "secret": "b65edf05b1", "media": "photo", "latitude": "0", "id": "477188628", "tags": "california canon sushi powershot orangecounty a630 huntingdonbeach"}, {"datetaken": "2007-04-28 18:25:33", "license": "0", "title": "Sushi Night April 2007", "text": "", "album_id": "72157600156777650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/209/477206637_7db78b5b4d_o.jpg", "secret": "da42aadee4", "media": "photo", "latitude": "0", "id": "477206637", "tags": "california canon sushi powershot orangecounty a630 huntingdonbeach"}, {"datetaken": "2007-04-28 18:26:11", "license": "0", "title": "Sushi Night April 2007", "text": "", "album_id": "72157600156777650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/477188796_4cf1b21804_o.jpg", "secret": "cca32ec548", "media": "photo", "latitude": "0", "id": "477188796", "tags": "california canon sushi powershot orangecounty a630 huntingdonbeach"}, {"datetaken": "2007-04-28 18:27:30", "license": "0", "title": "Sushi Night April 2007", "text": "", "album_id": "72157600156777650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/221/477188844_0ae32068ee_o.jpg", "secret": "ce884ef9c3", "media": "photo", "latitude": "0", "id": "477188844", "tags": "california canon sushi powershot orangecounty a630 huntingdonbeach"}, {"datetaken": "2007-04-28 18:28:38", "license": "0", "title": "Sushi Night April 2007", "text": "", "album_id": "72157600156777650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/477206789_7994942c81_o.jpg", "secret": "4d72ae0c9a", "media": "photo", "latitude": "0", "id": "477206789", "tags": "california canon sushi powershot orangecounty a630 huntingdonbeach"}, {"datetaken": "2007-04-28 18:29:35", "license": "0", "title": "Sushi Night April 2007", "text": "", "album_id": "72157600156777650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/226/477206819_0f69475ae8_o.jpg", "secret": "60469f0a1b", "media": "photo", "latitude": "0", "id": "477206819", "tags": "california canon sushi powershot orangecounty a630 huntingdonbeach"}, {"datetaken": "2007-04-28 18:44:25", "license": "0", "title": "Sushi Night April 2007", "text": "", "album_id": "72157600156777650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/209/477188380_82035fb34c_o.jpg", "secret": "216f803519", "media": "photo", "latitude": "0", "id": "477188380", "tags": "california canon sushi powershot orangecounty a630 huntingdonbeach"}, {"datetaken": "2007-04-28 19:15:20", "license": "0", "title": "Sushi Night April 2007", "text": "", "album_id": "72157600156777650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/208/477188700_5021d48dcd_o.jpg", "secret": "9bcdff8fb5", "media": "photo", "latitude": "0", "id": "477188700", "tags": "california canon sushi powershot orangecounty a630 huntingdonbeach"}, {"datetaken": "2007-04-28 20:35:54", "license": "0", "title": "Sushi Night April 2007", "text": "", "album_id": "72157600156777650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/195/477188664_2f09d7d3d4_o.jpg", "secret": "0f017a4094", "media": "photo", "latitude": "0", "id": "477188664", "tags": "california canon sushi powershot orangecounty a630 huntingdonbeach"}, {"datetaken": "2007-04-30 17:35:20", "license": "0", "title": "0balcony", "text": "", "album_id": "72157600162822909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/479151792_f13515bf56_o.jpg", "secret": "9d8b021040", "media": "photo", "latitude": "0", "id": "479151792", "tags": ""}, {"datetaken": "2007-04-30 17:35:20", "license": "0", "title": "0sun1", "text": "", "album_id": "72157600162822909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/218/479151794_33a87ce645_o.jpg", "secret": "fdf7935d0b", "media": "photo", "latitude": "0", "id": "479151794", "tags": ""}, {"datetaken": "2007-04-30 17:35:20", "license": "0", "title": "0wai", "text": "", "album_id": "72157600162822909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/229/479151798_1391b7c173_o.jpg", "secret": "bac5225308", "media": "photo", "latitude": "0", "id": "479151798", "tags": ""}, {"datetaken": "2007-04-30 17:35:20", "license": "0", "title": "0spout", "text": "", "album_id": "72157600162822909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/479151802_605d80fd60_o.jpg", "secret": "2b376a467f", "media": "photo", "latitude": "0", "id": "479151802", "tags": ""}, {"datetaken": "2007-04-30 17:35:20", "license": "0", "title": "0chick1", "text": "", "album_id": "72157600162822909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/201/479151804_83d13f7aef_o.jpg", "secret": "ba776b00e5", "media": "photo", "latitude": "0", "id": "479151804", "tags": ""}, {"datetaken": "2007-04-30 17:35:20", "license": "0", "title": "0chick2", "text": "", "album_id": "72157600162822909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/227/479151806_7fbfd452a7_o.jpg", "secret": "605d80fd60", "media": "photo", "latitude": "0", "id": "479151806", "tags": ""}, {"datetaken": "2007-04-30 17:56:49", "license": "0", "title": "0gecko", "text": "", "album_id": "72157600162822909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/191/479191197_3f6483a0ab_o.jpg", "secret": "2ec18ccad0", "media": "photo", "latitude": "0", "id": "479191197", "tags": ""}, {"datetaken": "2007-04-30 17:56:49", "license": "0", "title": "0keoki", "text": "", "album_id": "72157600162822909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/207/479191199_77e4f7c5c8_o.jpg", "secret": "e0a80f3992", "media": "photo", "latitude": "0", "id": "479191199", "tags": ""}, {"datetaken": "2007-04-30 18:14:49", "license": "0", "title": "0hula1", "text": "", "album_id": "72157600162822909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/220/479209865_d04dddef70_o.jpg", "secret": "43cc910644", "media": "photo", "latitude": "0", "id": "479209865", "tags": ""}, {"datetaken": "2007-04-30 19:02:07", "license": "0", "title": "0band", "text": "", "album_id": "72157600162822909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/198/479263751_66f548d949_o.jpg", "secret": "f404576fdd", "media": "photo", "latitude": "0", "id": "479263751", "tags": ""}, {"datetaken": "2007-04-30 19:26:17", "license": "0", "title": "0luau1", "text": "", "album_id": "72157600162822909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/191/479274696_44cd10c7bf_o.jpg", "secret": "fa0fc4352a", "media": "photo", "latitude": "0", "id": "479274696", "tags": ""}, {"datetaken": "2007-04-30 19:31:58", "license": "0", "title": "0luau2", "text": "", "album_id": "72157600162822909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/218/479299811_73c567f24d_o.jpg", "secret": "274b72b5a5", "media": "photo", "latitude": "0", "id": "479299811", "tags": ""}, {"datetaken": "2007-04-30 19:44:22", "license": "0", "title": "0luau3", "text": "", "album_id": "72157600162822909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/479296814_6b5e1ecd27_o.jpg", "secret": "6070c5b2a1", "media": "photo", "latitude": "0", "id": "479296814", "tags": ""}, {"datetaken": "2007-04-30 19:54:32", "license": "0", "title": "0fire1", "text": "", "album_id": "72157600162822909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/201/479308916_39dc8d9dc4_o.jpg", "secret": "1946af54c9", "media": "photo", "latitude": "0", "id": "479308916", "tags": ""}, {"datetaken": "2007-04-30 20:00:07", "license": "0", "title": "0fire2", "text": "", "album_id": "72157600162822909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/222/479334347_fa581728bb_o.jpg", "secret": "47bf632281", "media": "photo", "latitude": "0", "id": "479334347", "tags": ""}, {"datetaken": "2007-04-30 21:01:37", "license": "0", "title": "0beachhouse", "text": "", "album_id": "72157600162822909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/202/479388014_3fd36ff2ae_o.jpg", "secret": "bc7b06f97d", "media": "photo", "latitude": "0", "id": "479388014", "tags": ""}, {"datetaken": "2007-05-25 17:35:48", "license": "0", "title": "2007-05-25_17-35-48.jpg", "text": "", "album_id": "72157600268882910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/514807241_5814ac1e37_o.jpg", "secret": "7807de2ce4", "media": "photo", "latitude": "0", "id": "514807241", "tags": "christina mauritius anya kyan"}, {"datetaken": "2007-05-25 17:38:48", "license": "0", "title": "2007-05-25_17-38-48.jpg", "text": "", "album_id": "72157600268882910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/212/514807379_69b339ff73_o.jpg", "secret": "415688b1c5", "media": "photo", "latitude": "0", "id": "514807379", "tags": "mauritius anya"}, {"datetaken": "2007-05-25 17:40:32", "license": "0", "title": "2007-05-25_17-40-32.jpg", "text": "", "album_id": "72157600268882910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/213/514780186_a1f8c370cb_o.jpg", "secret": "004ea284a9", "media": "photo", "latitude": "0", "id": "514780186", "tags": "mauritius"}, {"datetaken": "2007-05-25 17:47:48", "license": "0", "title": "2007-05-25_17-47-48.jpg", "text": "", "album_id": "72157600268882910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/238/514807625_c1025e04ef_o.jpg", "secret": "8cb19710da", "media": "photo", "latitude": "0", "id": "514807625", "tags": "mauritius"}, {"datetaken": "2007-05-25 17:54:29", "license": "0", "title": "2007-05-25_17-54-29.jpg", "text": "", "album_id": "72157600268882910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/203/514807741_04e25129d6_o.jpg", "secret": "68b13b20ea", "media": "photo", "latitude": "0", "id": "514807741", "tags": "mauritius"}, {"datetaken": "2007-05-25 17:55:22", "license": "0", "title": "2007-05-25_17-55-22.jpg", "text": "", "album_id": "72157600268882910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/197/514780498_3814fcd282_o.jpg", "secret": "1c04f43831", "media": "photo", "latitude": "0", "id": "514780498", "tags": "christina mauritius anya kyan"}, {"datetaken": "2007-05-25 17:55:41", "license": "0", "title": "2007-05-25_17-55-41.jpg", "text": "", "album_id": "72157600268882910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/251/514808017_3c3842ff0a_o.jpg", "secret": "c1e1ecf8b7", "media": "photo", "latitude": "0", "id": "514808017", "tags": "mauritius avinash"}, {"datetaken": "2007-05-25 18:09:40", "license": "0", "title": "2007-05-25_18-09-40.jpg", "text": "", "album_id": "72157600268882910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/243/514808191_b16a477e93_o.jpg", "secret": "96665b331c", "media": "photo", "latitude": "0", "id": "514808191", "tags": "mauritius"}, {"datetaken": "2007-05-25 18:11:30", "license": "0", "title": "2007-05-25_18-11-30.jpg", "text": "", "album_id": "72157600268882910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/200/514780830_591d669bd6_o.jpg", "secret": "78d3032be0", "media": "photo", "latitude": "0", "id": "514780830", "tags": "mauritius"}, {"datetaken": "2007-05-25 18:14:16", "license": "0", "title": "2007-05-25_18-14-16.jpg", "text": "", "album_id": "72157600268882910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/220/514808431_b0ed654569_o.jpg", "secret": "6142f15371", "media": "photo", "latitude": "0", "id": "514808431", "tags": "mauritius anya"}, {"datetaken": "2007-05-25 18:16:47", "license": "0", "title": "2007-05-25_18-16-47.jpg", "text": "", "album_id": "72157600268882910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/237/514808537_5ad50f03d3_o.jpg", "secret": "6de2144cc2", "media": "photo", "latitude": "0", "id": "514808537", "tags": "mauritius anya kyan"}, {"datetaken": "2007-05-25 20:34:57", "license": "0", "title": "2007-05-25_20-34-57.jpg", "text": "", "album_id": "72157600268882910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/246/514808627_c19d56d4bb_o.jpg", "secret": "579851c74d", "media": "photo", "latitude": "0", "id": "514808627", "tags": "mauritius anya kyan"}, {"datetaken": "2007-05-25 20:35:34", "license": "0", "title": "2007-05-25_20-35-34.jpg", "text": "", "album_id": "72157600268882910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/230/514781230_c605b30541_o.jpg", "secret": "cc3055c266", "media": "photo", "latitude": "0", "id": "514781230", "tags": "christina mauritius avinash anya"}, {"datetaken": "2007-05-25 20:36:24", "license": "0", "title": "2007-05-25_20-36-24.jpg", "text": "", "album_id": "72157600268882910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/216/514781312_d3337331e3_o.jpg", "secret": "1c701e454a", "media": "photo", "latitude": "0", "id": "514781312", "tags": "christina mauritius"}, {"datetaken": "2007-05-25 20:37:52", "license": "0", "title": "2007-05-25_20-37-52.jpg", "text": "", "album_id": "72157600268882910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/200/514781432_bbd7a115a5_o.jpg", "secret": "5f73e27881", "media": "photo", "latitude": "0", "id": "514781432", "tags": "christina mauritius avinash"}, {"datetaken": "2007-05-25 20:38:35", "license": "0", "title": "2007-05-25_20-38-35.jpg", "text": "", "album_id": "72157600268882910", "longitude": "0", "url_o": "https://farm1.staticflickr.com/213/514809043_d338e74fc2_o.jpg", "secret": "c923b2b262", "media": "photo", "latitude": "0", "id": "514809043", "tags": "mauritius"}, {"datetaken": "2007-06-18 22:02:28", "license": "0", "title": "mc048", "text": "", "album_id": "72157600393566786", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1304/566308791_563e9989c0_o.jpg", "secret": "5f9e57b9ce", "media": "photo", "latitude": "0", "id": "566308791", "tags": "club cork hillwalking bishopstown"}, {"datetaken": "2007-06-18 22:02:28", "license": "0", "title": "mc049", "text": "", "album_id": "72157600393566786", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1169/566308797_92dfb94b3e_o.jpg", "secret": "49ca8727bd", "media": "photo", "latitude": "0", "id": "566308797", "tags": "club cork hillwalking bishopstown"}, {"datetaken": "2007-06-18 22:02:28", "license": "0", "title": "mc050", "text": "", "album_id": "72157600393566786", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1324/566308803_843aa8e7db_o.jpg", "secret": "420c91fb57", "media": "photo", "latitude": "0", "id": "566308803", "tags": "club cork hillwalking bishopstown"}, {"datetaken": "2007-06-18 22:02:28", "license": "0", "title": "mc051", "text": "", "album_id": "72157600393566786", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1209/566308811_18c8f41af3_o.jpg", "secret": "37fa9a6620", "media": "photo", "latitude": "0", "id": "566308811", "tags": "club cork hillwalking bishopstown"}, {"datetaken": "2007-06-18 22:02:31", "license": "0", "title": "mc052", "text": "", "album_id": "72157600393566786", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1338/566308923_f657f7d83f_o.jpg", "secret": "199258bd68", "media": "photo", "latitude": "0", "id": "566308923", "tags": "club cork hillwalking bishopstown"}, {"datetaken": "2007-06-18 22:02:31", "license": "0", "title": "mc053", "text": "", "album_id": "72157600393566786", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1246/566308929_83d8736961_o.jpg", "secret": "a6edba20e6", "media": "photo", "latitude": "0", "id": "566308929", "tags": "club cork hillwalking bishopstown"}, {"datetaken": "2007-06-18 22:11:09", "license": "0", "title": "mc054", "text": "", "album_id": "72157600393566786", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1136/565949524_f5716e8fa4_o.jpg", "secret": "3371621651", "media": "photo", "latitude": "0", "id": "565949524", "tags": "club cork hillwalking bishopstown"}, {"datetaken": "2007-06-18 22:11:09", "license": "0", "title": "mc055", "text": "", "album_id": "72157600393566786", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1008/565949528_2462547be8_o.jpg", "secret": "c49c2e155a", "media": "photo", "latitude": "0", "id": "565949528", "tags": "club cork hillwalking bishopstown"}, {"datetaken": "2007-06-18 22:11:09", "license": "0", "title": "mc056", "text": "", "album_id": "72157600393566786", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1269/565949534_7387fde341_o.jpg", "secret": "a0a97168a2", "media": "photo", "latitude": "0", "id": "565949534", "tags": "club cork hillwalking bishopstown"}, {"datetaken": "2007-06-18 22:11:12", "license": "0", "title": "mc057", "text": "", "album_id": "72157600393566786", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1425/565949612_f2b5d0467b_o.jpg", "secret": "cc2c5124e5", "media": "photo", "latitude": "0", "id": "565949612", "tags": "club cork hillwalking bishopstown"}, {"datetaken": "2007-06-18 22:11:12", "license": "0", "title": "mc058", "text": "", "album_id": "72157600393566786", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1232/565949620_95867eb580_o.jpg", "secret": "7f55000348", "media": "photo", "latitude": "0", "id": "565949620", "tags": "club cork hillwalking bishopstown"}, {"datetaken": "2007-06-18 22:11:12", "license": "0", "title": "mc059", "text": "", "album_id": "72157600393566786", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1098/565949626_e0b918695a_o.jpg", "secret": "cd5d8137f4", "media": "photo", "latitude": "0", "id": "565949626", "tags": "club cork hillwalking bishopstown"}, {"datetaken": "2007-06-18 22:20:18", "license": "0", "title": "mc060", "text": "", "album_id": "72157600393566786", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1058/565970736_fedb03036d_o.jpg", "secret": "4f9d4c7ba4", "media": "photo", "latitude": "0", "id": "565970736", "tags": "club cork hillwalking bishopstown"}, {"datetaken": "2007-06-18 22:20:20", "license": "0", "title": "mc061", "text": "", "album_id": "72157600393566786", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1430/565970784_06007ca187_o.jpg", "secret": "ebe38f2ce9", "media": "photo", "latitude": "0", "id": "565970784", "tags": "club cork hillwalking bishopstown"}, {"datetaken": "2007-06-18 22:20:20", "license": "0", "title": "mc062", "text": "", "album_id": "72157600393566786", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1388/565970790_f376eb51c7_o.jpg", "secret": "aad7b37ff4", "media": "photo", "latitude": "0", "id": "565970790", "tags": "club cork hillwalking bishopstown"}, {"datetaken": "2007-06-18 22:20:20", "license": "0", "title": "mc063", "text": "", "album_id": "72157600393566786", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1113/565970794_40bb1a251b_o.jpg", "secret": "1c43bceb0c", "media": "photo", "latitude": "0", "id": "565970794", "tags": "club cork hillwalking bishopstown"}, {"datetaken": "2007-06-18 22:20:20", "license": "0", "title": "mc064", "text": "", "album_id": "72157600393566786", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1391/565970800_6140faf5b9_o.jpg", "secret": "abc8a0a838", "media": "photo", "latitude": "0", "id": "565970800", "tags": "club cork hillwalking bishopstown"}, {"datetaken": "2007-06-19 16:18:27", "license": "1", "title": "IMG_3508", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1205/1394569329_31a7523f2c_o.jpg", "secret": "1ecbcdb730", "media": "photo", "latitude": "0", "id": "1394569329", "tags": "washingtondc lenstagged parties reason canon50f18 digitalrebel 2007"}, {"datetaken": "2007-06-19 16:31:49", "license": "1", "title": "laura", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1010/1395462624_5274438033_o.jpg", "secret": "740939908f", "media": "photo", "latitude": "0", "id": "1395462624", "tags": "washingtondc lenstagged parties reason canon50f18 digitalrebel 2007 laurag"}, {"datetaken": "2007-06-19 16:33:47", "license": "1", "title": "tyler", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1410/1395463252_72083e7991_o.jpg", "secret": "4456ef9f91", "media": "photo", "latitude": "0", "id": "1395463252", "tags": "washingtondc parties reason digitalrebel 2007 tylerg"}, {"datetaken": "2007-06-19 16:33:59", "license": "1", "title": "ellie", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1272/1395464058_30d3d30f18_o.jpg", "secret": "cb45255f8c", "media": "photo", "latitude": "0", "id": "1395464058", "tags": "washingtondc lenstagged parties ellie reason canon50f18 digitalrebel justus 2007"}, {"datetaken": "2007-06-19 16:34:55", "license": "1", "title": "our gracious host", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1181/1394571885_f530dd7e94_o.jpg", "secret": "80124e55f1", "media": "photo", "latitude": "0", "id": "1394571885", "tags": "washingtondc lenstagged parties reason canon50f18 digitalrebel 2007 johnvaughtlabeaume"}, {"datetaken": "2007-06-19 16:36:49", "license": "1", "title": "IMG_3518", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1176/1394573341_413050d194_o.jpg", "secret": "fcf53e2197", "media": "photo", "latitude": "0", "id": "1394573341", "tags": "washingtondc lenstagged parties reason canon50f18 digitalrebel 2007"}, {"datetaken": "2007-06-19 16:37:23", "license": "1", "title": "IMG_3519", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1068/1395468558_775fbd051f_o.jpg", "secret": "60b54b6057", "media": "photo", "latitude": "0", "id": "1395468558", "tags": "washingtondc lenstagged parties reason canon50f18 digitalrebel 2007"}, {"datetaken": "2007-06-19 16:43:02", "license": "1", "title": "Reason happy hour at 18th Lounge", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1235/573142717_d92e31075a_o.jpg", "secret": "204e988ef2", "media": "photo", "latitude": "0", "id": "573142717", "tags": "washingtondc parties reason digitalrebel"}, {"datetaken": "2007-06-19 16:43:02", "license": "1", "title": "parTAY", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1146/1395469782_391d54cbd5_o.jpg", "secret": "6e4013ca9f", "media": "photo", "latitude": "0", "id": "1395469782", "tags": "washingtondc lenstagged parties reason canon50f18 digitalrebel 2007 abheek charlief"}, {"datetaken": "2007-06-19 16:43:10", "license": "1", "title": "the bartender notices me", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1151/1395471464_b221cbefc5_o.jpg", "secret": "91fe66b746", "media": "photo", "latitude": "0", "id": "1395471464", "tags": "washingtondc lenstagged parties reason canon50f18 digitalrebel 2007"}, {"datetaken": "2007-06-19 16:43:54", "license": "1", "title": "Reason magazine happy hour", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1285/573141437_c39238950c_o.jpg", "secret": "ddad45ba57", "media": "photo", "latitude": "0", "id": "573141437", "tags": "washingtondc parties reason digitalrebel"}, {"datetaken": "2007-06-19 16:44:25", "license": "1", "title": "IMG_3526", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1081/1394581875_2ccf3320ea_o.jpg", "secret": "7dd49a9ece", "media": "photo", "latitude": "0", "id": "1394581875", "tags": "washingtondc lenstagged parties reason digitalrebel 2007 canon2470f28l"}, {"datetaken": "2007-06-19 16:44:36", "license": "1", "title": "IMG_3527", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1207/1395476644_2d7ffc6d7d_o.jpg", "secret": "7d1cfaf150", "media": "photo", "latitude": "0", "id": "1395476644", "tags": "washingtondc lenstagged parties reason digitalrebel 2007 allisons canon2470f28l"}, {"datetaken": "2007-06-19 17:22:15", "license": "1", "title": "Brink Lindsey", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1302/573137843_e5b8cb2001_o.jpg", "secret": "566e38436e", "media": "photo", "latitude": "0", "id": "573137843", "tags": "washingtondc parties reason digitalrebel"}, {"datetaken": "2007-06-19 17:23:44", "license": "1", "title": "IMG_3536", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1187/1394585675_0aaa5606ee_o.jpg", "secret": "84e9f7cfe7", "media": "photo", "latitude": "0", "id": "1394585675", "tags": "washingtondc lenstagged parties reason canon50f18 digitalrebel 2007"}, {"datetaken": "2007-06-19 17:24:33", "license": "1", "title": "snezhi", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1433/1395480460_8298df796b_o.jpg", "secret": "0b10e13d93", "media": "photo", "latitude": "0", "id": "1395480460", "tags": "washingtondc lenstagged parties reason canon50f18 digitalrebel 2007 snezhi"}, {"datetaken": "2007-06-19 18:02:09", "license": "1", "title": "an appropriately happy Will Wilkinson", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1252/573135413_bb94ff2b65_o.jpg", "secret": "051c4923ba", "media": "photo", "latitude": "0", "id": "573135413", "tags": "50mm washingtondc lenstagged parties reason faves canon50f18 digitalrebel 2007 18thstreetlounge willwilkinson"}, {"datetaken": "2007-06-19 18:03:11", "license": "1", "title": "brink lindsey", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1256/1395482158_569facde2c_o.jpg", "secret": "8be7f4f50a", "media": "photo", "latitude": "0", "id": "1395482158", "tags": "washingtondc lenstagged parties reason canon50f18 digitalrebel 2007 brinklindsey"}, {"datetaken": "2007-06-19 18:03:21", "license": "1", "title": "another photographer", "text": "", "album_id": "72157600405640069", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1094/1395483768_ef82ca1f61_o.jpg", "secret": "5b3c739ee5", "media": "photo", "latitude": "0", "id": "1395483768", "tags": "washingtondc lenstagged julia parties reason canon50f18 digitalrebel 2007"}, {"datetaken": "2007-07-24 19:04:10", "license": "0", "title": "Checking out the view", "text": "", "album_id": "72157601037036892", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1002/891079176_6ea1072bc3_o.jpg", "secret": "95c3a4228b", "media": "photo", "latitude": "0", "id": "891079176", "tags": "swimming mississippi sofia gulfport beaurivage"}, {"datetaken": "2007-07-24 19:04:10", "license": "0", "title": "Bathing cutie", "text": "", "album_id": "72157601037036892", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1145/891079188_3c070fe4f5_o.jpg", "secret": "0226e380bd", "media": "photo", "latitude": "0", "id": "891079188", "tags": "swimming mississippi sofia gulfport beaurivage"}, {"datetaken": "2007-07-24 19:04:11", "license": "0", "title": "Ms. Serious is ready to swim", "text": "", "album_id": "72157601037036892", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1181/891079196_e19f9e5f3b_o.jpg", "secret": "bf77095f3f", "media": "photo", "latitude": "0", "id": "891079196", "tags": "swimming mississippi sofia gulfport beaurivage"}, {"datetaken": "2007-07-24 19:04:13", "license": "0", "title": "Where's that cute cabana boy?", "text": "", "album_id": "72157601037036892", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1280/891079464_bdd547f89e_o.jpg", "secret": "0bb53f859c", "media": "photo", "latitude": "0", "id": "891079464", "tags": "swimming mississippi sofia gulfport beaurivage"}, {"datetaken": "2007-07-24 19:04:13", "license": "0", "title": "Insert \"Jaws\" theme song", "text": "", "album_id": "72157601037036892", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1276/891079482_62b296923b_o.jpg", "secret": "f34d360756", "media": "photo", "latitude": "0", "id": "891079482", "tags": "swimming mississippi sofia gulfport beaurivage"}, {"datetaken": "2007-07-24 19:12:22", "license": "0", "title": "Reading time", "text": "", "album_id": "72157601037036892", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1301/891139224_8e543aa8f0_o.jpg", "secret": "4a0eae26df", "media": "photo", "latitude": "0", "id": "891139224", "tags": "mississippi gulfport lynnmeadowsdiscoverycenter mississippigulfcoast"}, {"datetaken": "2007-07-24 19:12:22", "license": "0", "title": "Peek-a-boo", "text": "", "album_id": "72157601037036892", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1406/891139244_31196396de_o.jpg", "secret": "5f42c9f504", "media": "photo", "latitude": "0", "id": "891139244", "tags": "mississippi gulfport lynnmeadowsdiscoverycenter mississippigulfcoast"}, {"datetaken": "2007-07-24 19:12:22", "license": "0", "title": "Puzzle time", "text": "", "album_id": "72157601037036892", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1031/891139316_6dcdec5c53_o.jpg", "secret": "6509f306d9", "media": "photo", "latitude": "0", "id": "891139316", "tags": "mississippi gulfport lynnmeadowsdiscoverycenter mississippigulfcoast"}, {"datetaken": "2007-07-24 19:12:23", "license": "0", "title": "Puzzle time", "text": "", "album_id": "72157601037036892", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1017/891139324_8637ff9dde_o.jpg", "secret": "b16521f2b4", "media": "photo", "latitude": "0", "id": "891139324", "tags": "mississippi gulfport lynnmeadowsdiscoverycenter mississippigulfcoast"}, {"datetaken": "2007-07-24 19:16:51", "license": "0", "title": "Foam blocks", "text": "", "album_id": "72157601037036892", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1433/891169364_6f07e29786_o.jpg", "secret": "901b327caf", "media": "photo", "latitude": "0", "id": "891169364", "tags": "mississippi gulfport lynnmeadowsdiscoverycenter mississippigulfcoast"}, {"datetaken": "2007-07-24 19:16:51", "license": "0", "title": "Playhouse", "text": "", "album_id": "72157601037036892", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1293/891169388_21616bc6d6_o.jpg", "secret": "90f1ff4854", "media": "photo", "latitude": "0", "id": "891169388", "tags": "mississippi gulfport lynnmeadowsdiscoverycenter mississippigulfcoast"}, {"datetaken": "2007-07-24 19:16:51", "license": "0", "title": "Mom and me", "text": "", "album_id": "72157601037036892", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1232/891169396_2eb3e8a03a_o.jpg", "secret": "b615204838", "media": "photo", "latitude": "0", "id": "891169396", "tags": "mississippi gulfport lynnmeadowsdiscoverycenter mississippigulfcoast"}, {"datetaken": "2007-07-24 19:16:51", "license": "0", "title": "Incognita senorita Sofia", "text": "", "album_id": "72157601037036892", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1042/891169406_97e5d8c6db_o.jpg", "secret": "1efe4879db", "media": "photo", "latitude": "0", "id": "891169406", "tags": "mississippi gulfport lynnmeadowsdiscoverycenter mississippigulfcoast"}, {"datetaken": "2005-12-25 13:36:06", "license": "0", "title": "Marshall and I got a billiards table for Christmas. We played many games of pool all day.", "text": "", "album_id": "72157601239865861", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1099/1019579419_d62f446708_o.jpg", "secret": "70f62fd0a5", "media": "photo", "latitude": "0", "id": "1019579419", "tags": "christmas london pool marshall billiards bully littlestuffedbull"}, {"datetaken": "2005-12-25 13:49:01", "license": "0", "title": "Olivia and Aunt Camilla play with Crazy the Dog", "text": "", "album_id": "72157601239865861", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1211/1020441176_1361e94db7_o.jpg", "secret": "e7ec1983df", "media": "photo", "latitude": "0", "id": "1020441176", "tags": "christmas london olivia camilla crazythedog"}, {"datetaken": "2005-12-25 13:49:12", "license": "0", "title": "Christine is making us Christmas snacks! I hope.", "text": "", "album_id": "72157601239865861", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1268/1019580857_fc3921ebae_o.jpg", "secret": "6c43221d3e", "media": "photo", "latitude": "0", "id": "1019580857", "tags": "christmas london christine jonas"}, {"datetaken": "2005-12-25 13:56:55", "license": "0", "title": "I don't know what Camilla and Olivia are looking at, but it must be fun!", "text": "", "album_id": "72157601239865861", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1365/1019581647_d986f8cd50_o.jpg", "secret": "8677ba8fff", "media": "photo", "latitude": "0", "id": "1019581647", "tags": "christmas london olivia camilla"}, {"datetaken": "2005-12-25 13:59:59", "license": "0", "title": "Hooray for Marble Madness!", "text": "", "album_id": "72157601239865861", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1403/1020443646_9054a44f29_o.jpg", "secret": "3a5ec4006f", "media": "photo", "latitude": "0", "id": "1020443646", "tags": "christmas london olivia christine jonas marblemadness"}, {"datetaken": "2005-12-25 14:01:47", "license": "0", "title": "Looking for more gifts", "text": "", "album_id": "72157601239865861", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1142/1020444296_6eb6c486b2_o.jpg", "secret": "3665e81c5a", "media": "photo", "latitude": "0", "id": "1020444296", "tags": "christmas london olivia christine jonas"}, {"datetaken": "2005-12-25 14:13:58", "license": "0", "title": "The best hat EVER!", "text": "", "album_id": "72157601239865861", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1437/1020445120_90563c653b_o.jpg", "secret": "315b34ee7f", "media": "photo", "latitude": "0", "id": "1020445120", "tags": "christmas london hat olivia unionjack"}, {"datetaken": "2005-12-25 14:14:24", "license": "0", "title": "Camilla is happy it's Christmas!", "text": "", "album_id": "72157601239865861", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1238/1020445772_c518254cc7_o.jpg", "secret": "fb0f97b0d6", "media": "photo", "latitude": "0", "id": "1020445772", "tags": "christmas london camilla"}, {"datetaken": "2005-12-25 14:15:38", "license": "0", "title": "What is in this bag?", "text": "", "album_id": "72157601239865861", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1373/1019585643_dacbebc46d_o.jpg", "secret": "1241d75a4e", "media": "photo", "latitude": "0", "id": "1019585643", "tags": "christmas london olivia"}, {"datetaken": "2005-12-25 14:15:45", "license": "0", "title": "It's a book! Thank you.", "text": "", "album_id": "72157601239865861", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1347/1020447322_d7e53ba0fc_o.jpg", "secret": "a36ed20478", "media": "photo", "latitude": "0", "id": "1020447322", "tags": "christmas london olivia"}, {"datetaken": "2005-12-25 14:20:04", "license": "0", "title": "Now Aunt Camilla must read it to Olivia!", "text": "", "album_id": "72157601239865861", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1344/1020448260_631d4c6bea_o.jpg", "secret": "f9f85ea07f", "media": "photo", "latitude": "0", "id": "1020448260", "tags": "christmas london olivia camilla"}, {"datetaken": "2005-12-25 14:27:52", "license": "0", "title": "Playing with Kensington the Cat", "text": "", "album_id": "72157601239865861", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1048/1019588145_b63032c8de_o.jpg", "secret": "e79c322119", "media": "photo", "latitude": "0", "id": "1019588145", "tags": "christmas london olivia kensingtonthecat"}, {"datetaken": "2005-12-25 14:35:16", "license": "0", "title": "Silly Olivia! There is not enough room to swing a cat in here.", "text": "", "album_id": "72157601239865861", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1043/1019588833_8b8630e088_o.jpg", "secret": "21f33e457c", "media": "photo", "latitude": "0", "id": "1019588833", "tags": "christmas london olivia kensingtonthecat"}, {"datetaken": "2005-12-25 14:35:23", "license": "0", "title": "Oh wait. Maybe there is.", "text": "", "album_id": "72157601239865861", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1219/1019589679_eda1372bd4_o.jpg", "secret": "93de0941d2", "media": "photo", "latitude": "0", "id": "1019589679", "tags": "christmas london olivia kensingtonthecat"}, {"datetaken": "2005-12-25 14:37:34", "license": "0", "title": "Happy Christmas, says Olivia and Kensington!", "text": "", "album_id": "72157601239865861", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1241/1020451160_88ed3479ce_o.jpg", "secret": "d085ce65d8", "media": "photo", "latitude": "0", "id": "1020451160", "tags": "christmas london olivia kensingtonthecat"}, {"datetaken": "2007-09-01 00:34:44", "license": "1", "title": "Alumni Band Day at Heinz Field", "text": "", "album_id": "72157602020431905", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1086/1383149101_6aafba1918_o.jpg", "secret": "f2a026915d", "media": "photo", "latitude": "0", "id": "1383149101", "tags": "football pittsburgh pennsylvania pitt heinzfield paulnichols carolnichols abd2007 pittband"}, {"datetaken": "2007-09-01 00:38:27", "license": "1", "title": "Up", "text": "", "album_id": "72157602020431905", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1133/1384045292_29a0ff65f5_o.jpg", "secret": "6b4f354fce", "media": "photo", "latitude": "0", "id": "1384045292", "tags": "football pittsburgh pennsylvania perspective pitt heinzfield abd2007 pittband"}, {"datetaken": "2007-09-01 05:57:54", "license": "1", "title": "Hooooooooooooo", "text": "", "album_id": "72157602020431905", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1190/1383152497_3a55744cd4_o.jpg", "secret": "6018046441", "media": "photo", "latitude": "0", "id": "1383152497", "tags": "football pittsburgh pennsylvania marchingband pitt heinzfield abd2007 pittband"}, {"datetaken": "2007-09-01 05:57:59", "license": "1", "title": "Hooooooooooootherside", "text": "", "album_id": "72157602020431905", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1122/1384052524_52b8a23541_o.jpg", "secret": "a23173b2e8", "media": "photo", "latitude": "0", "id": "1384052524", "tags": "football pittsburgh pennsylvania marchingband pitt heinzfield abd2007 pittband"}, {"datetaken": "2007-09-01 06:02:10", "license": "1", "title": "Let's go Pitt!", "text": "", "album_id": "72157602020431905", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1290/1384047116_8400cff715_o.jpg", "secret": "aaf4762123", "media": "photo", "latitude": "0", "id": "1384047116", "tags": "football pittsburgh pennsylvania marchingband pitt heinzfield abd2007 pittband"}, {"datetaken": "2007-09-01 06:37:02", "license": "1", "title": "Testing 1...", "text": "", "album_id": "72157602020431905", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1220/1384054962_dcb1c1fb0e_o.jpg", "secret": "5686792da8", "media": "photo", "latitude": "0", "id": "1384054962", "tags": "children football pittsburgh pennsylvania seats pitt heinzfield abd2007"}, {"datetaken": "2007-09-01 06:37:05", "license": "1", "title": "Testing 2...", "text": "", "album_id": "72157602020431905", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1264/1383160097_c341634083_o.jpg", "secret": "dea5917185", "media": "photo", "latitude": "0", "id": "1383160097", "tags": "children football pittsburgh pennsylvania seats pitt heinzfield abd2007"}, {"datetaken": "2007-09-01 06:37:08", "license": "1", "title": "Testing 3...", "text": "", "album_id": "72157602020431905", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1411/1383162243_7fe364f558_o.jpg", "secret": "cab846510e", "media": "photo", "latitude": "0", "id": "1383162243", "tags": "children football pittsburgh pennsylvania seats pitt heinzfield abd2007"}, {"datetaken": "2007-09-01 06:41:30", "license": "1", "title": "Let's go Jack!", "text": "", "album_id": "72157602020431905", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1183/1384074398_a460c8410b_o.jpg", "secret": "44c035e174", "media": "photo", "latitude": "0", "id": "1384074398", "tags": "football pittsburgh pennsylvania jumbotron pitt heinzfield abd2007 pittband jackranderson"}, {"datetaken": "2007-09-01 06:41:44", "license": "1", "title": "Jack wins!", "text": "", "album_id": "72157602020431905", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1050/1384061774_c698e1215d_o.jpg", "secret": "3b2d00fdbd", "media": "photo", "latitude": "0", "id": "1384061774", "tags": "football pittsburgh pennsylvania medal jumbotron pitt heinzfield abd2007 pittband tonyroscoe"}, {"datetaken": "2007-09-01 06:41:48", "license": "1", "title": "Yaay Jack!", "text": "", "album_id": "72157602020431905", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1069/1383166723_b01bb283d5_o.jpg", "secret": "35fd8cfc8e", "media": "photo", "latitude": "0", "id": "1383166723", "tags": "football pittsburgh pennsylvania medal jumbotron pitt heinzfield abd2007 pittband tonyroscoe jackranderson marknordenberg"}, {"datetaken": "2007-09-01 06:41:55", "license": "1", "title": "Nordenberg loves Jack!", "text": "", "album_id": "72157602020431905", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1062/1384066474_4e9f98b353_o.jpg", "secret": "72041e7f9b", "media": "photo", "latitude": "0", "id": "1384066474", "tags": "football pittsburgh pennsylvania jumbotron pitt applause heinzfield abd2007 pittband jackranderson marknordenberg"}, {"datetaken": "2007-09-01 08:29:36", "license": "1", "title": "KETCHUP!", "text": "", "album_id": "72157602020431905", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1066/1384069050_0b677e2842_o.jpg", "secret": "9ede51aa39", "media": "photo", "latitude": "0", "id": "1384069050", "tags": "football pittsburgh ketchup pennsylvania jumbotron pitt heinzfield abd2007 pittband"}, {"datetaken": "2007-09-01 08:58:41", "license": "1", "title": "V-I-C-T-O-R-Y", "text": "", "album_id": "72157602020431905", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1077/1384071768_1a3715e866_o.jpg", "secret": "20cd457249", "media": "photo", "latitude": "0", "id": "1384071768", "tags": "football pittsburgh fireworks pennsylvania pitt heinzfield abd2007"}, {"datetaken": "2007-12-26 13:32:12", "license": "0", "title": "01_MichelleFHSGrad", "text": "", "album_id": "72157603549502790", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2190/2139318294_b12711b875_o.png", "secret": "a6c703eb78", "media": "photo", "latitude": "0", "id": "2139318294", "tags": "michelle graduation"}, {"datetaken": "2007-12-26 13:32:14", "license": "0", "title": "02_AtMichelleGraduation", "text": "", "album_id": "72157603549502790", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2384/2138538945_09b7dd9f2f_o.png", "secret": "0c0502a2e4", "media": "photo", "latitude": "0", "id": "2138538945", "tags": "michelle graduation"}, {"datetaken": "2007-12-26 13:32:17", "license": "0", "title": "03_TamAndMikAtMichelleGraduation", "text": "", "album_id": "72157603549502790", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2035/2138539023_9b806bdfbe_o.png", "secret": "540f9d3e3f", "media": "photo", "latitude": "0", "id": "2138539023", "tags": "michelle graduation"}, {"datetaken": "2007-12-26 13:32:20", "license": "0", "title": "05_MichelleAndFreddy", "text": "", "album_id": "72157603549502790", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2128/2138539181_c2efe0cb36_o.png", "secret": "b32826b043", "media": "photo", "latitude": "0", "id": "2138539181", "tags": "michelle freddy"}, {"datetaken": "2007-12-26 13:32:23", "license": "0", "title": "06_MothersDay", "text": "", "album_id": "72157603549502790", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2264/2139318786_afcf41b1a2_o.png", "secret": "3b36c2962b", "media": "photo", "latitude": "0", "id": "2139318786", "tags": "home"}, {"datetaken": "2007-12-26 13:32:24", "license": "0", "title": "07_TamaraJamaica", "text": "", "album_id": "72157603549502790", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2027/2138539351_d49e168122_o.png", "secret": "aa4e8cacbf", "media": "photo", "latitude": "0", "id": "2138539351", "tags": "tamara jamaica"}, {"datetaken": "2007-12-26 13:32:27", "license": "0", "title": "08_LakeErie", "text": "", "album_id": "72157603549502790", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2153/2139318950_d1de5e085c_o.png", "secret": "37697c483a", "media": "photo", "latitude": "0", "id": "2139318950", "tags": "lakeerie"}, {"datetaken": "2007-12-26 13:32:28", "license": "0", "title": "09_TamaraSpainBeach", "text": "", "album_id": "72157603549502790", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2171/2138539521_49d37defd1_o.png", "secret": "1279c0cf01", "media": "photo", "latitude": "0", "id": "2138539521", "tags": "spain tamara"}, {"datetaken": "2007-12-26 13:32:30", "license": "0", "title": "10_AngelaTamaraCristina", "text": "", "album_id": "72157603549502790", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2111/2138539581_8f3057edbb_o.png", "secret": "9f87178093", "media": "photo", "latitude": "0", "id": "2138539581", "tags": "spain tamara"}, {"datetaken": "2007-12-26 13:32:32", "license": "0", "title": "11_TamaraMariJuanCarlosAngela", "text": "", "album_id": "72157603549502790", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2041/2139319176_1315e7987b_o.png", "secret": "8af8e2234a", "media": "photo", "latitude": "0", "id": "2139319176", "tags": "spain tamara"}, {"datetaken": "2007-12-26 13:32:33", "license": "0", "title": "12_Alamo", "text": "", "album_id": "72157603549502790", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2040/2138539727_68dc163348_o.png", "secret": "01007d8911", "media": "photo", "latitude": "0", "id": "2138539727", "tags": "michelle trinity"}, {"datetaken": "2007-12-26 13:32:34", "license": "0", "title": "13_MichelleDorm", "text": "", "album_id": "72157603549502790", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2116/2138539785_2206f9a066_o.png", "secret": "2f6739f134", "media": "photo", "latitude": "0", "id": "2138539785", "tags": "michelle trinity"}, {"datetaken": "2007-12-26 13:32:36", "license": "0", "title": "15_TrinityU", "text": "", "album_id": "72157603549502790", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2092/2139319372_9322eef9d9_o.png", "secret": "f08a12f1c5", "media": "photo", "latitude": "0", "id": "2139319372", "tags": "michelle trinity"}, {"datetaken": "2007-12-25 06:57:01", "license": "0", "title": "Stalking the Stocking", "text": "", "album_id": "72157603974201983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3224/2286839825_bc59f7ab99_o.jpg", "secret": "54a3c479ed", "media": "photo", "latitude": "0", "id": "2286839825", "tags": "christmas stockings eden"}, {"datetaken": "2007-12-25 06:57:54", "license": "0", "title": "The Presents (and Tree)", "text": "", "album_id": "72157603974201983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3008/2287626484_6311602ae8_o.jpg", "secret": "d616196270", "media": "photo", "latitude": "0", "id": "2287626484", "tags": "christmas tree presents"}, {"datetaken": "2007-12-25 07:05:42", "license": "0", "title": "Puzzling it Out", "text": "", "album_id": "72157603974201983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3210/2287626114_5634818fed_o.jpg", "secret": "2b486ff7cd", "media": "photo", "latitude": "0", "id": "2287626114", "tags": "christmas rain presents"}, {"datetaken": "2007-12-25 07:15:19", "license": "0", "title": "Loot", "text": "", "album_id": "72157603974201983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3187/2287625880_044a6496de_o.jpg", "secret": "cf58b90f02", "media": "photo", "latitude": "0", "id": "2287625880", "tags": "christmas stockings"}, {"datetaken": "2007-12-25 07:20:03", "license": "0", "title": "Ready, Set, Unwrap!", "text": "", "album_id": "72157603974201983", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2142/2286838605_02ceeeb16b_o.jpg", "secret": "bbcb94db4f", "media": "photo", "latitude": "0", "id": "2286838605", "tags": "christmas presents eden"}, {"datetaken": "2007-12-25 07:27:43", "license": "0", "title": "Bilibo", "text": "", "album_id": "72157603974201983", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2020/2287625374_1127de4f80_o.jpg", "secret": "715bbf4b8e", "media": "photo", "latitude": "0", "id": "2287625374", "tags": "christmas rain presents bilibo"}, {"datetaken": "2007-12-25 07:27:55", "license": "0", "title": "Bilibo Too", "text": "", "album_id": "72157603974201983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3092/2287625112_74ca05637a_o.jpg", "secret": "49189e5cc5", "media": "photo", "latitude": "0", "id": "2287625112", "tags": "christmas presents eden bilibo"}, {"datetaken": "2007-12-25 07:33:20", "license": "0", "title": "Ice!", "text": "", "album_id": "72157603974201983", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2296/2286837935_3b7d032e9b_o.jpg", "secret": "9d79d736c4", "media": "photo", "latitude": "0", "id": "2286837935", "tags": "christmas rain polarexpress presents eden"}, {"datetaken": "2007-12-25 07:44:11", "license": "0", "title": "Getting Into It", "text": "", "album_id": "72157603974201983", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2096/2287624720_b0b8e27cd7_o.jpg", "secret": "e6439928c9", "media": "photo", "latitude": "0", "id": "2287624720", "tags": "christmas rain presents eden"}, {"datetaken": "2007-12-25 07:48:04", "license": "0", "title": "Coupling Them Up", "text": "", "album_id": "72157603974201983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3004/2287624466_1ed0fb5d99_o.jpg", "secret": "41b390f930", "media": "photo", "latitude": "0", "id": "2287624466", "tags": "christmas"}, {"datetaken": "2007-12-25 07:51:16", "license": "0", "title": "Wedgits", "text": "", "album_id": "72157603974201983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3167/2286837173_0311661f55_o.jpg", "secret": "9d024ebc4f", "media": "photo", "latitude": "0", "id": "2286837173", "tags": "christmas presents eden wedgits"}, {"datetaken": "2007-12-25 08:04:43", "license": "0", "title": "GeoTrax Expansion Set", "text": "", "album_id": "72157603974201983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3176/2287623946_b71563406a_o.jpg", "secret": "e0c53b23e0", "media": "photo", "latitude": "0", "id": "2287623946", "tags": "christmas rain presents eden geotrax"}, {"datetaken": "2008-03-12 23:15:12", "license": "0", "title": "IMGP6122", "text": "", "album_id": "72157604389344705", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3007/2388571814_617dc924df_o.jpg", "secret": "1dd83a0948", "media": "photo", "latitude": "0", "id": "2388571814", "tags": "032008"}, {"datetaken": "2008-03-12 23:15:20", "license": "0", "title": "IMGP6123", "text": "", "album_id": "72157604389344705", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2055/2388572010_19c5084125_o.jpg", "secret": "59dfafc2cf", "media": "photo", "latitude": "0", "id": "2388572010", "tags": "032008"}, {"datetaken": "2008-03-12 23:15:27", "license": "0", "title": "IMGP6124", "text": "", "album_id": "72157604389344705", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2324/2388572190_becbb5b60c_o.jpg", "secret": "005dd112de", "media": "photo", "latitude": "0", "id": "2388572190", "tags": "032008"}, {"datetaken": "2008-03-12 23:15:34", "license": "0", "title": "IMGP6125", "text": "", "album_id": "72157604389344705", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3106/2388572434_de2bf15fc2_o.jpg", "secret": "a2102efc56", "media": "photo", "latitude": "0", "id": "2388572434", "tags": "032008"}, {"datetaken": "2008-03-12 23:15:41", "license": "0", "title": "IMGP6126", "text": "", "album_id": "72157604389344705", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2146/2387743669_8e6fa3c7f3_o.jpg", "secret": "6b3cb1054b", "media": "photo", "latitude": "0", "id": "2387743669", "tags": "032008"}, {"datetaken": "2008-03-12 23:15:47", "license": "0", "title": "IMGP6127", "text": "", "album_id": "72157604389344705", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2110/2387743877_94c418a1dc_o.jpg", "secret": "f705bf75d2", "media": "photo", "latitude": "0", "id": "2387743877", "tags": "032008"}, {"datetaken": "2008-03-12 23:15:54", "license": "0", "title": "IMGP6128", "text": "", "album_id": "72157604389344705", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3118/2388573058_aedb201bf5_o.jpg", "secret": "0e7f753bf5", "media": "photo", "latitude": "0", "id": "2388573058", "tags": "032008"}, {"datetaken": "2008-03-12 23:16:02", "license": "0", "title": "IMGP6129", "text": "", "album_id": "72157604389344705", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2074/2387744255_3063aabf38_o.jpg", "secret": "9aab2fc22b", "media": "photo", "latitude": "0", "id": "2387744255", "tags": "032008"}, {"datetaken": "2008-03-12 23:16:10", "license": "0", "title": "IMGP6130", "text": "", "album_id": "72157604389344705", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2405/2387744413_844f7b1ba3_o.jpg", "secret": "323d787919", "media": "photo", "latitude": "0", "id": "2387744413", "tags": "032008"}, {"datetaken": "2008-03-12 23:16:18", "license": "0", "title": "IMGP6131", "text": "", "album_id": "72157604389344705", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3131/2388573536_de08d124b5_o.jpg", "secret": "f976d5baef", "media": "photo", "latitude": "0", "id": "2388573536", "tags": "032008"}, {"datetaken": "2008-03-12 23:18:25", "license": "0", "title": "IMGP6133", "text": "", "album_id": "72157604389344705", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3257/2388573710_4766c050f2_o.jpg", "secret": "d1079dc29a", "media": "photo", "latitude": "0", "id": "2388573710", "tags": "032008"}, {"datetaken": "2008-03-14 02:39:26", "license": "0", "title": "IMGP6142", "text": "", "album_id": "72157604389344705", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2267/2388573882_d83424d36b_o.jpg", "secret": "a145ee27eb", "media": "photo", "latitude": "0", "id": "2388573882", "tags": "032008"}, {"datetaken": "2008-03-14 02:56:06", "license": "0", "title": "IMGP6154", "text": "", "album_id": "72157604389344705", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2175/2387745199_e79fd0ffe6_o.jpg", "secret": "99a4f7717e", "media": "photo", "latitude": "0", "id": "2387745199", "tags": "032008"}, {"datetaken": "2008-03-14 03:26:24", "license": "0", "title": "IMGP6157", "text": "", "album_id": "72157604389344705", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3187/2387745433_823ff0cf65_o.jpg", "secret": "522c4148d8", "media": "photo", "latitude": "0", "id": "2387745433", "tags": "032008"}, {"datetaken": "2008-03-14 03:28:15", "license": "0", "title": "IMGP6158", "text": "", "album_id": "72157604389344705", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3042/2387745649_3d9f8e1bb0_o.jpg", "secret": "9caeae648b", "media": "photo", "latitude": "0", "id": "2387745649", "tags": "032008"}, {"datetaken": "2008-06-24 10:36:23", "license": "0", "title": "IMG_2591", "text": "", "album_id": "72157605819211940", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3175/2612631014_893407c0ef_o.jpg", "secret": "c65c56f535", "media": "photo", "latitude": "0", "id": "2612631014", "tags": ""}, {"datetaken": "2008-06-24 11:13:36", "license": "0", "title": "IMG_2596", "text": "", "album_id": "72157605819211940", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3146/2611798011_79aebca75f_o.jpg", "secret": "a19fd8d67f", "media": "photo", "latitude": "0", "id": "2611798011", "tags": ""}, {"datetaken": "2008-06-24 11:14:11", "license": "0", "title": "IMG_2599", "text": "", "album_id": "72157605819211940", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3170/2612634722_d2a3b1234a_o.jpg", "secret": "08d017ffb6", "media": "photo", "latitude": "0", "id": "2612634722", "tags": ""}, {"datetaken": "2008-06-24 11:19:03", "license": "0", "title": "IMG_2602", "text": "", "album_id": "72157605819211940", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3177/2612637462_0176656b9d_o.jpg", "secret": "e07ac4bc5a", "media": "photo", "latitude": "0", "id": "2612637462", "tags": ""}, {"datetaken": "2008-06-24 11:22:42", "license": "0", "title": "IMG_2604", "text": "", "album_id": "72157605819211940", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3103/2611805573_71380f10df_o.jpg", "secret": "2a89cd5f2c", "media": "photo", "latitude": "0", "id": "2611805573", "tags": ""}, {"datetaken": "2008-06-24 12:16:20", "license": "0", "title": "IMG_2606", "text": "", "album_id": "72157605819211940", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3003/2611807539_ca37b2bfbb_o.jpg", "secret": "188c7ce255", "media": "photo", "latitude": "0", "id": "2611807539", "tags": ""}, {"datetaken": "2008-06-24 12:20:02", "license": "0", "title": "IMG_2613", "text": "", "album_id": "72157605819211940", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3169/2611811297_1c4b952a12_o.jpg", "secret": "2c71d75c29", "media": "photo", "latitude": "0", "id": "2611811297", "tags": ""}, {"datetaken": "2008-06-24 12:21:36", "license": "0", "title": "IMG_2618", "text": "", "album_id": "72157605819211940", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3041/2612648202_8f7ebdd70d_o.jpg", "secret": "2016464ac8", "media": "photo", "latitude": "0", "id": "2612648202", "tags": ""}, {"datetaken": "2008-06-24 13:08:51", "license": "0", "title": "IMG_2629", "text": "", "album_id": "72157605819211940", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3068/2611815361_025cff9d10_o.jpg", "secret": "c333236e1e", "media": "photo", "latitude": "0", "id": "2611815361", "tags": ""}, {"datetaken": "2008-06-24 13:09:38", "license": "0", "title": "IMG_2630", "text": "", "album_id": "72157605819211940", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3069/2611816965_38fcd6237a_o.jpg", "secret": "ac56a75782", "media": "photo", "latitude": "0", "id": "2611816965", "tags": ""}, {"datetaken": "2008-06-24 15:22:41", "license": "0", "title": "IMG_2636", "text": "", "album_id": "72157605819211940", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3024/2612655190_53e4730ca3_o.jpg", "secret": "bfa980a67d", "media": "photo", "latitude": "0", "id": "2612655190", "tags": ""}, {"datetaken": "2008-06-24 15:25:01", "license": "0", "title": "IMG_2637", "text": "", "album_id": "72157605819211940", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3069/2612655876_9569cd13a9_o.jpg", "secret": "67274e6492", "media": "photo", "latitude": "0", "id": "2612655876", "tags": ""}, {"datetaken": "2008-06-24 16:14:01", "license": "0", "title": "IMG_2640", "text": "", "album_id": "72157605819211940", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3234/2611821625_500d14b875_o.jpg", "secret": "4804584731", "media": "photo", "latitude": "0", "id": "2611821625", "tags": ""}, {"datetaken": "2008-06-24 18:05:36", "license": "0", "title": "IMG_2662", "text": "", "album_id": "72157605819211940", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3215/2612658058_d600c56b16_o.jpg", "secret": "a8aef66965", "media": "photo", "latitude": "0", "id": "2612658058", "tags": ""}, {"datetaken": "2008-06-24 18:06:53", "license": "0", "title": "IMG_2663", "text": "", "album_id": "72157605819211940", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3164/2612658628_08651522d8_o.jpg", "secret": "2f9b63935d", "media": "photo", "latitude": "0", "id": "2612658628", "tags": ""}, {"datetaken": "2006-07-28 13:28:33", "license": "0", "title": "beach04", "text": "", "album_id": "72157606406078666", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/201868813_b1c96a9dbd_o.jpg", "secret": "b1c96a9dbd", "media": "photo", "latitude": "0", "id": "201868813", "tags": ""}, {"datetaken": "2006-07-28 13:35:26", "license": "0", "title": "beach05", "text": "", "album_id": "72157606406078666", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/201868815_0208c88833_o.jpg", "secret": "0208c88833", "media": "photo", "latitude": "0", "id": "201868815", "tags": ""}, {"datetaken": "2006-07-28 13:36:02", "license": "0", "title": "beach06", "text": "", "album_id": "72157606406078666", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/201868816_bf16de8421_o.jpg", "secret": "bf16de8421", "media": "photo", "latitude": "0", "id": "201868816", "tags": ""}, {"datetaken": "2006-07-28 13:41:17", "license": "0", "title": "beach07", "text": "", "album_id": "72157606406078666", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/201868817_15d1879317_o.jpg", "secret": "15d1879317", "media": "photo", "latitude": "0", "id": "201868817", "tags": ""}, {"datetaken": "2006-07-28 13:42:25", "license": "0", "title": "beach08", "text": "", "album_id": "72157606406078666", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/201868818_a63e1a0817_o.jpg", "secret": "a63e1a0817", "media": "photo", "latitude": "0", "id": "201868818", "tags": ""}, {"datetaken": "2006-07-28 13:48:39", "license": "0", "title": "beach09", "text": "", "album_id": "72157606406078666", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/201868819_683e21cb77_o.jpg", "secret": "683e21cb77", "media": "photo", "latitude": "0", "id": "201868819", "tags": ""}, {"datetaken": "2006-07-28 14:15:35", "license": "0", "title": "beach10", "text": "", "album_id": "72157606406078666", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/201879101_d0dbaf4e02_o.jpg", "secret": "d0dbaf4e02", "media": "photo", "latitude": "0", "id": "201879101", "tags": ""}, {"datetaken": "2006-07-28 14:16:13", "license": "0", "title": "beach12", "text": "", "album_id": "72157606406078666", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/201879103_331c100f58_o.jpg", "secret": "331c100f58", "media": "photo", "latitude": "0", "id": "201879103", "tags": ""}, {"datetaken": "2006-07-28 14:38:06", "license": "0", "title": "beach13", "text": "", "album_id": "72157606406078666", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/201879104_2ce680956f_o.jpg", "secret": "2ce680956f", "media": "photo", "latitude": "0", "id": "201879104", "tags": ""}, {"datetaken": "2006-07-28 16:34:56", "license": "0", "title": "beach16", "text": "", "album_id": "72157606406078666", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/201879105_f8635dbac0_o.jpg", "secret": "f8635dbac0", "media": "photo", "latitude": "0", "id": "201879105", "tags": ""}, {"datetaken": "2006-07-28 16:38:55", "license": "0", "title": "beach17", "text": "", "album_id": "72157606406078666", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/201879107_8589a9e49a_o.jpg", "secret": "8589a9e49a", "media": "photo", "latitude": "0", "id": "201879107", "tags": ""}, {"datetaken": "2006-07-28 17:20:06", "license": "0", "title": "beach18", "text": "", "album_id": "72157606406078666", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/201879109_31904842a4_o.jpg", "secret": "31904842a4", "media": "photo", "latitude": "0", "id": "201879109", "tags": ""}, {"datetaken": "2006-07-28 17:31:22", "license": "0", "title": "beach20", "text": "", "album_id": "72157606406078666", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/201884286_400fd0498c_o.jpg", "secret": "400fd0498c", "media": "photo", "latitude": "0", "id": "201884286", "tags": ""}, {"datetaken": "2006-07-28 18:08:21", "license": "0", "title": "beach23", "text": "", "album_id": "72157606406078666", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/201884287_d904686f3b_o.jpg", "secret": "d904686f3b", "media": "photo", "latitude": "0", "id": "201884287", "tags": ""}, {"datetaken": "2008-09-01 07:21:00", "license": "2", "title": "Sailing near sunset", "text": "", "album_id": "72157607096603441", "longitude": "-86.288010", "url_o": "https://farm4.staticflickr.com/3113/2826051088_b1e1e66434_o.jpg", "secret": "23762b6789", "media": "photo", "latitude": "42.401348", "id": "2826051088", "tags": "haven pier michigan south pei"}, {"datetaken": "2008-09-01 07:22:16", "license": "2", "title": "Nearly dusk in South Haven", "text": "", "album_id": "72157607096603441", "longitude": "-86.288010", "url_o": "https://farm4.staticflickr.com/3127/2826052864_bc7cc70c6b_o.jpg", "secret": "6cf9af4478", "media": "photo", "latitude": "42.401348", "id": "2826052864", "tags": "haven pier michigan south pei"}, {"datetaken": "2008-09-01 07:27:43", "license": "2", "title": "2008-09-01_South_Haven_04", "text": "", "album_id": "72157607096603441", "longitude": "-86.288010", "url_o": "https://farm4.staticflickr.com/3062/2826056456_88864ba532_o.jpg", "secret": "668569440f", "media": "photo", "latitude": "42.401348", "id": "2826056456", "tags": "haven sailboat pier boat sailing michigan south pei"}, {"datetaken": "2008-09-01 07:32:43", "license": "2", "title": "Emily in South Haven", "text": "", "album_id": "72157607096603441", "longitude": "-86.288010", "url_o": "https://farm4.staticflickr.com/3234/2825219371_abfd79abd4_o.jpg", "secret": "a34f6b96cb", "media": "photo", "latitude": "42.401348", "id": "2825219371", "tags": "haven pier michigan south pei"}, {"datetaken": "2008-09-01 07:49:00", "license": "2", "title": "Emily chasing the sea gulls", "text": "", "album_id": "72157607096603441", "longitude": "-86.285108", "url_o": "https://farm4.staticflickr.com/3095/2825220673_1e0de9306e_o.jpg", "secret": "7f061089c7", "media": "photo", "latitude": "42.401491", "id": "2825220673", "tags": "haven pier emily michigan south pei"}, {"datetaken": "2008-09-01 07:50:09", "license": "2", "title": "Emily", "text": "", "album_id": "72157607096603441", "longitude": "-86.285108", "url_o": "https://farm4.staticflickr.com/3057/2826059704_0417480627_o.jpg", "secret": "4d288dc2af", "media": "photo", "latitude": "42.401491", "id": "2826059704", "tags": "haven pier emily michigan south pei"}, {"datetaken": "2008-09-01 07:51:00", "license": "2", "title": "Saint Basil Church", "text": "", "album_id": "72157607096603441", "longitude": "-86.285108", "url_o": "https://farm4.staticflickr.com/3249/2826061278_c808ac5bd6_o.jpg", "secret": "5547f88572", "media": "photo", "latitude": "42.401491", "id": "2826061278", "tags": "haven pier michigan south pei"}, {"datetaken": "2008-09-01 07:58:54", "license": "2", "title": "Sunset at South Haven Pier", "text": "", "album_id": "72157607096603441", "longitude": "-86.285108", "url_o": "https://farm4.staticflickr.com/3026/2826063024_b68445a59c_o.jpg", "secret": "efc279a650", "media": "photo", "latitude": "42.401491", "id": "2826063024", "tags": "sunset sky lighthouse lake haven water pier michigan south pei"}, {"datetaken": "2008-09-01 08:00:40", "license": "2", "title": "The whole gang", "text": "", "album_id": "72157607096603441", "longitude": "-86.285108", "url_o": "https://farm4.staticflickr.com/3220/2826064354_3c6eb49c9b_o.jpg", "secret": "e0a57dbfa3", "media": "photo", "latitude": "42.401491", "id": "2826064354", "tags": "haven pier emily michigan brian south kristin pei"}, {"datetaken": "2008-09-01 08:02:07", "license": "2", "title": "Emily frolics", "text": "", "album_id": "72157607096603441", "longitude": "-86.285108", "url_o": "https://farm4.staticflickr.com/3133/2825227771_a3df0c3c44_o.jpg", "secret": "330e964ef9", "media": "photo", "latitude": "42.401491", "id": "2825227771", "tags": "haven pier emily michigan south pei"}, {"datetaken": "2008-09-01 08:05:44", "license": "2", "title": "A sunset flight", "text": "", "album_id": "72157607096603441", "longitude": "-86.285108", "url_o": "https://farm3.staticflickr.com/2385/2825228813_d6faf16a20_o.jpg", "secret": "7772575ac1", "media": "photo", "latitude": "42.401491", "id": "2825228813", "tags": "haven pier michigan south pei"}, {"datetaken": "2008-09-01 08:09:10", "license": "2", "title": "Sunset at South Haven Pier", "text": "", "album_id": "72157607096603441", "longitude": "-86.285108", "url_o": "https://farm4.staticflickr.com/3167/2826067900_067912db13_o.jpg", "secret": "edfb18afde", "media": "photo", "latitude": "42.401491", "id": "2826067900", "tags": "lighthouse haven pier michigan south pei"}, {"datetaken": "2008-09-01 08:10:44", "license": "2", "title": "Sunset at South Haven Pier", "text": "", "album_id": "72157607096603441", "longitude": "-86.285108", "url_o": "https://farm4.staticflickr.com/3114/2825231721_0f3b6fba03_o.jpg", "secret": "6b17d4279f", "media": "photo", "latitude": "42.401491", "id": "2825231721", "tags": "sunset sky lighthouse lake haven water pier michigan south pei"}, {"datetaken": "2008-09-01 08:13:31", "license": "2", "title": "Emily", "text": "", "album_id": "72157607096603441", "longitude": "-86.285108", "url_o": "https://farm4.staticflickr.com/3135/2825232979_e7400f86a5_o.jpg", "secret": "a7426287d1", "media": "photo", "latitude": "42.401491", "id": "2825232979", "tags": "sunset sky lighthouse lake haven water pier emily michigan south pei"}, {"datetaken": "2008-09-01 08:14:24", "license": "2", "title": "Emily and I", "text": "", "album_id": "72157607096603441", "longitude": "-86.285108", "url_o": "https://farm4.staticflickr.com/3143/2825233845_241e2395fc_o.jpg", "secret": "21cc9ba6f2", "media": "photo", "latitude": "42.401491", "id": "2825233845", "tags": "haven pier emily michigan south pei"}, {"datetaken": "2008-09-01 08:14:31", "license": "2", "title": "Emily and I steal a kiss at sunset", "text": "", "album_id": "72157607096603441", "longitude": "-86.285108", "url_o": "https://farm4.staticflickr.com/3286/2825234881_24e4ee7431_o.jpg", "secret": "4d49c68047", "media": "photo", "latitude": "42.401491", "id": "2825234881", "tags": "haven pier emily michigan south pei"}, {"datetaken": "2008-09-01 08:15:00", "license": "2", "title": "Final moments of the day", "text": "", "album_id": "72157607096603441", "longitude": "-86.285108", "url_o": "https://farm4.staticflickr.com/3054/2826073996_dea45b44bb_o.jpg", "secret": "ec05a2214a", "media": "photo", "latitude": "42.401491", "id": "2826073996", "tags": "sunset sky lake haven water pier michigan south pei"}, {"datetaken": "2008-09-01 08:19:00", "license": "2", "title": "A catamaran slips past", "text": "", "album_id": "72157607096603441", "longitude": "-86.285108", "url_o": "https://farm4.staticflickr.com/3274/2826075136_a2c76c5658_o.jpg", "secret": "35b85b60e2", "media": "photo", "latitude": "42.401491", "id": "2826075136", "tags": "haven sailboat pier boat sailing michigan south pei"}, {"datetaken": "2008-09-01 08:28:13", "license": "2", "title": "Fiery clouds as dusk approaches", "text": "", "album_id": "72157607096603441", "longitude": "-86.281267", "url_o": "https://farm3.staticflickr.com/2179/2825239035_85ed2562d7_o.jpg", "secret": "f804cf6a60", "media": "photo", "latitude": "42.402219", "id": "2825239035", "tags": "haven pier michigan south pei"}, {"datetaken": "2009-01-20 10:13:02", "license": "1", "title": "HELLO my fellow American,", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3096/3213825438_dc3070bbfb_o.jpg", "secret": "28ec36f3f8", "media": "photo", "latitude": "0", "id": "3213825438", "tags": "hello washingtondc nationalmall obama inauguration hellomynameis barackobama barack presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 10:14:57", "license": "1", "title": "So many people", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3123/3212979575_0d0ea7f183_o.jpg", "secret": "3efaa4c692", "media": "photo", "latitude": "0", "id": "3212979575", "tags": "washingtondc crowd nationalmall obama crowds inauguration barackobama barack 18thstnw presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 10:16:10", "license": "1", "title": "Some stupid people standing on a frozen lake", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3360/3212978113_00a1e46e2c_o.jpg", "secret": "59ff921f56", "media": "photo", "latitude": "0", "id": "3212978113", "tags": "lake fall water washingtondc frozen nationalmall obama inauguration barackobama barack presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 10:17:12", "license": "1", "title": "Portajohns", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3521/3213822340_fbe7f5028f_o.jpg", "secret": "5b43db853e", "media": "photo", "latitude": "0", "id": "3213822340", "tags": "washingtondc bathrooms nationalmall obama inauguration barackobama barack portajohns portapotties presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 10:20:34", "license": "1", "title": "Lincoln Memorial and people", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3081/3213820980_00cbc4e058_o.jpg", "secret": "5c4c95859d", "media": "photo", "latitude": "0", "id": "3213820980", "tags": "people washingtondc crowd nationalmall lincolnmemorial obama inauguration barackobama barack presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 10:24:09", "license": "1", "title": "Flat Stanley and the Lincoln Memorial at Inauguration", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3400/3213819870_fb0d099c18_o.jpg", "secret": "20d9e5cde2", "media": "photo", "latitude": "0", "id": "3213819870", "tags": "washingtondc nationalmall lincolnmemorial reflectingpool obama inauguration flatstanley barackobama barack presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 10:25:04", "license": "1", "title": "Through the stones", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3340/3213818724_7ae58dbe94_o.jpg", "secret": "13efbe7372", "media": "photo", "latitude": "0", "id": "3213818724", "tags": "washingtondc crowd nationalmall obama wwiimemorial inauguration worldwariimemorial barackobama barack presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 10:30:14", "license": "1", "title": "Flat Stanley at President Obama's Inauguration", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3423/3213817674_96e8e93ee5_o.jpg", "secret": "b40e460e2f", "media": "photo", "latitude": "0", "id": "3213817674", "tags": "washingtondc crowd screen jumbotron nationalmall washingtonmonument obama inauguration flatstanley barackobama barack presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 10:54:33", "license": "1", "title": "Things filled up", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3420/3213816598_232045b845_o.jpg", "secret": "984e3d8ec3", "media": "photo", "latitude": "0", "id": "3213816598", "tags": "washingtondc crowd nationalmall lincolnmemorial reflectingpool obama crowds wwiimemorial inauguration worldwariimemorial barackobama barack presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 10:57:22", "license": "1", "title": "Canada and America!", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3467/3213815716_d4976fa742_o.jpg", "secret": "6e2fe0ac15", "media": "photo", "latitude": "0", "id": "3213815716", "tags": "canada washingtondc flags nationalmall canadianflag obama inauguration barackobama barack presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 10:58:45", "license": "1", "title": "Sky Blue Sky", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3390/3212969391_b3371d1ef5_o.jpg", "secret": "15c66738ce", "media": "photo", "latitude": "0", "id": "3212969391", "tags": "sky bird washingtondc bluesky screen jumbotron nationalmall obama inauguration newtgingrich barackobama barack gingrich presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 11:38:37", "license": "1", "title": "This was how I watched the Inauguration", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3304/3212968431_edf0303124_o.jpg", "secret": "7b6ebfe291", "media": "photo", "latitude": "0", "id": "3212968431", "tags": "washingtondc crowd screen jumbotron nationalmall obama inauguration barackobama barack presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 11:39:44", "license": "1", "title": "You may say I'm a dreamer...", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3353/3212967595_a6db6c8f61_o.jpg", "secret": "7e0162646e", "media": "photo", "latitude": "0", "id": "3212967595", "tags": "sign poster washingtondc lyrics nationalmall imagine johnlennon obama inauguration barackobama barack presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 11:45:34", "license": "1", "title": "Obama is introduced", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3474/3212966573_0194cd8f12_o.jpg", "secret": "9582147375", "media": "photo", "latitude": "0", "id": "3212966573", "tags": "washingtondc flag screen jumbotron nationalmall obama inauguration introduction barackobama barack presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 11:46:38", "license": "1", "title": "O-Bomb-Ah!", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3500/3213810942_4325f0cd69_o.jpg", "secret": "bd44aaefb2", "media": "photo", "latitude": "0", "id": "3213810942", "tags": "washingtondc flag dude nationalmall cheers cheer obama inauguration barackobama barack presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 12:29:41", "license": "1", "title": "Dawn of a Presidency", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3131/3213810350_75542fe180_o.jpg", "secret": "92a065dff1", "media": "photo", "latitude": "0", "id": "3213810350", "tags": "grass dawn washingtondc newspaper ground headline nationalmall dcist obama inauguration washingtonpost barackobama barack presidentbarackobama presidentobama dawnofapresidency"}, {"datetaken": "2009-01-20 12:44:01", "license": "1", "title": "Oh dear", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3529/3212963807_69ce67a527_o.jpg", "secret": "cc8815d462", "media": "photo", "latitude": "0", "id": "3212963807", "tags": "people washingtondc slow crowd nationalmall obama crowds inauguration barackobama barack presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 12:46:28", "license": "1", "title": "Sports Nuts?", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3518/3212962463_1df119faf6_o.jpg", "secret": "442d4e080c", "media": "photo", "latitude": "0", "id": "3212962463", "tags": "washingtondc jesus nationalmall dcist obama inauguration judgment conservatives mormons religiousright homos barackobama barack jesusfreaks sportsnuts pornofreaks presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 12:57:11", "license": "1", "title": "More crowds", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3079/3213806928_a7f7fc1e89_o.jpg", "secret": "bb06d480e2", "media": "photo", "latitude": "0", "id": "3213806928", "tags": "washingtondc crowd nationalmall obama crowds inauguration barackobama barack 18thstnw presidentbarackobama presidentobama"}, {"datetaken": "2009-01-20 13:08:21", "license": "1", "title": "The buses", "text": "", "album_id": "72157612752002335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3362/3213805430_cfa4e1298f_o.jpg", "secret": "279ca656e2", "media": "photo", "latitude": "0", "id": "3213805430", "tags": "buses washingtondc nationalmall obama inauguration barackobama barack presidentbarackobama presidentobama charteredbuses"}, {"datetaken": "2009-02-15 06:32:12", "license": "0", "title": "cu_DSC_0013a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3615/3283708938_b2fc13bab4_o.jpg", "secret": "7f25a0631a", "media": "photo", "latitude": "0", "id": "3283708938", "tags": ""}, {"datetaken": "2009-02-15 06:32:36", "license": "0", "title": "cu_DSC_0015a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3290/3282890025_4ccc70e4f1_o.jpg", "secret": "0345826674", "media": "photo", "latitude": "0", "id": "3282890025", "tags": ""}, {"datetaken": "2009-02-15 06:50:33", "license": "0", "title": "cu_DSC_0020a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3016/3283722668_952844e231_o.jpg", "secret": "8a4d031fd1", "media": "photo", "latitude": "0", "id": "3283722668", "tags": ""}, {"datetaken": "2009-02-15 06:52:09", "license": "0", "title": "cu_DSC_0021a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3610/3283723418_b2fe09645d_o.jpg", "secret": "6ba804fd40", "media": "photo", "latitude": "0", "id": "3283723418", "tags": ""}, {"datetaken": "2009-02-15 07:32:39", "license": "0", "title": "cu_DSC_0028a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3275/3282904201_0ab489a65b_o.jpg", "secret": "d752c8d9c9", "media": "photo", "latitude": "0", "id": "3282904201", "tags": ""}, {"datetaken": "2009-02-15 07:32:51", "license": "0", "title": "cu_DSC_0033a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3226/3282904849_4027833184_o.jpg", "secret": "a377a18540", "media": "photo", "latitude": "0", "id": "3282904849", "tags": ""}, {"datetaken": "2009-02-15 07:34:18", "license": "0", "title": "cu_DSC_0041a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3194/3282905667_db10d7581c_o.jpg", "secret": "ef931e872f", "media": "photo", "latitude": "0", "id": "3282905667", "tags": ""}, {"datetaken": "2009-02-15 08:25:38", "license": "0", "title": "cu_DSC_0061a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3357/3283726512_c756f437e3_o.jpg", "secret": "e1e73c0c35", "media": "photo", "latitude": "0", "id": "3283726512", "tags": ""}, {"datetaken": "2009-02-15 08:26:37", "license": "0", "title": "cu_DSC_0063a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3145/3282907467_33bfbcbee6_o.jpg", "secret": "be8186250d", "media": "photo", "latitude": "0", "id": "3282907467", "tags": ""}, {"datetaken": "2009-02-15 08:36:35", "license": "0", "title": "cu_DSC_0069a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3208/3283728416_26c7dbe78c_o.jpg", "secret": "e35cd768f6", "media": "photo", "latitude": "0", "id": "3283728416", "tags": ""}, {"datetaken": "2009-02-15 09:32:21", "license": "0", "title": "cu_DSC_0157a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3357/3282909281_9f495231a0_o.jpg", "secret": "b9b6c686d8", "media": "photo", "latitude": "0", "id": "3282909281", "tags": ""}, {"datetaken": "2009-02-15 09:55:21", "license": "0", "title": "cu_DSC_0159a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3604/3283730186_efd865acd5_o.jpg", "secret": "300b562c02", "media": "photo", "latitude": "0", "id": "3283730186", "tags": ""}, {"datetaken": "2009-02-15 09:55:22", "license": "0", "title": "cu_DSC_0160a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3459/3282910845_6345749ff5_o.jpg", "secret": "8a62840a90", "media": "photo", "latitude": "0", "id": "3282910845", "tags": ""}, {"datetaken": "2009-02-15 09:57:42", "license": "0", "title": "cu_DSC_0175a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3222/3283731990_a4c92fcac7_o.jpg", "secret": "eb49313869", "media": "photo", "latitude": "0", "id": "3283731990", "tags": ""}, {"datetaken": "2009-02-15 09:58:19", "license": "0", "title": "cu_DSC_0178a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3429/3282912943_43e2c7883e_o.jpg", "secret": "05a63fb5ac", "media": "photo", "latitude": "0", "id": "3282912943", "tags": ""}, {"datetaken": "2009-02-15 10:01:25", "license": "0", "title": "cu_DSC_0194a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3177/3282913815_a755facc09_o.jpg", "secret": "9ca7e07183", "media": "photo", "latitude": "0", "id": "3282913815", "tags": ""}, {"datetaken": "2009-02-15 10:08:56", "license": "0", "title": "cu_DSC_0200a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3321/3283735048_61609710f1_o.jpg", "secret": "7ed7dd8bde", "media": "photo", "latitude": "0", "id": "3283735048", "tags": ""}, {"datetaken": "2009-02-15 10:09:13", "license": "0", "title": "cu_DSC_0204a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3101/3282915495_5542107bb1_o.jpg", "secret": "a096a5d605", "media": "photo", "latitude": "0", "id": "3282915495", "tags": ""}, {"datetaken": "2009-02-15 10:09:36", "license": "0", "title": "cu_DSC_0205a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3453/3283737280_f75fa5b485_o.jpg", "secret": "6862fd88a4", "media": "photo", "latitude": "0", "id": "3283737280", "tags": ""}, {"datetaken": "2009-02-15 10:52:28", "license": "0", "title": "cu_DSC_0216a1", "text": "", "album_id": "72157613872112100", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3401/3282918745_ecf3b64c80_o.jpg", "secret": "5958b1b46b", "media": "photo", "latitude": "0", "id": "3282918745", "tags": ""}, {"datetaken": "2009-02-16 14:26:38", "license": "0", "title": "Snow Day", "text": "", "album_id": "72157613984385744", "longitude": "-75.821081", "url_o": "https://farm4.staticflickr.com/3349/3286105569_3c2273bc68_o.jpg", "secret": "e458fc03ac", "media": "photo", "latitude": "45.299886", "id": "3286105569", "tags": ""}, {"datetaken": "2009-02-16 14:29:45", "license": "0", "title": "Snow Day", "text": "", "album_id": "72157613984385744", "longitude": "-75.821081", "url_o": "https://farm4.staticflickr.com/3186/3286107515_481085eba5_o.jpg", "secret": "30c74aeed3", "media": "photo", "latitude": "45.299886", "id": "3286107515", "tags": ""}, {"datetaken": "2009-02-16 14:29:55", "license": "0", "title": "Snow Day", "text": "", "album_id": "72157613984385744", "longitude": "-75.821081", "url_o": "https://farm4.staticflickr.com/3594/3286927328_7dd1579517_o.jpg", "secret": "7a45a18ae7", "media": "photo", "latitude": "45.299886", "id": "3286927328", "tags": ""}, {"datetaken": "2009-02-16 14:50:30", "license": "0", "title": "Snow Day", "text": "", "album_id": "72157613984385744", "longitude": "-75.821081", "url_o": "https://farm4.staticflickr.com/3421/3286929466_ff4f5c29cd_o.jpg", "secret": "775dd9eeb3", "media": "photo", "latitude": "45.299886", "id": "3286929466", "tags": ""}, {"datetaken": "2009-02-16 14:52:12", "license": "0", "title": "Snow Day", "text": "", "album_id": "72157613984385744", "longitude": "-75.821081", "url_o": "https://farm4.staticflickr.com/3379/3286115393_ddb8e392da_o.jpg", "secret": "13f1e1b7f0", "media": "photo", "latitude": "45.299886", "id": "3286115393", "tags": ""}, {"datetaken": "2009-02-16 15:00:27", "license": "0", "title": "Snow Day", "text": "", "album_id": "72157613984385744", "longitude": "-75.821081", "url_o": "https://farm4.staticflickr.com/3424/3286935432_16571ac3d9_o.jpg", "secret": "beca974c4f", "media": "photo", "latitude": "45.299886", "id": "3286935432", "tags": ""}, {"datetaken": "2009-02-16 15:06:02", "license": "0", "title": "Snow Day", "text": "", "album_id": "72157613984385744", "longitude": "-75.821081", "url_o": "https://farm4.staticflickr.com/3310/3286122109_f951eb32fb_o.jpg", "secret": "6529662cdf", "media": "photo", "latitude": "45.299886", "id": "3286122109", "tags": ""}, {"datetaken": "2009-02-16 15:07:18", "license": "0", "title": "Snow Day", "text": "", "album_id": "72157613984385744", "longitude": "-75.821081", "url_o": "https://farm4.staticflickr.com/3140/3286941350_31cbab801c_o.jpg", "secret": "cca639c490", "media": "photo", "latitude": "45.299886", "id": "3286941350", "tags": ""}, {"datetaken": "2009-02-16 15:07:32", "license": "0", "title": "Snow Day", "text": "", "album_id": "72157613984385744", "longitude": "-75.821081", "url_o": "https://farm4.staticflickr.com/3489/3286125905_366f9ffb94_o.jpg", "secret": "c232497e51", "media": "photo", "latitude": "45.299886", "id": "3286125905", "tags": ""}, {"datetaken": "2009-02-16 15:07:39", "license": "0", "title": "Snow Day", "text": "", "album_id": "72157613984385744", "longitude": "-75.821081", "url_o": "https://farm4.staticflickr.com/3215/3286127817_8fc21a49f7_o.jpg", "secret": "323e46242e", "media": "photo", "latitude": "45.299886", "id": "3286127817", "tags": ""}, {"datetaken": "2009-02-16 15:36:39", "license": "0", "title": "Snow Day", "text": "", "album_id": "72157613984385744", "longitude": "-75.821081", "url_o": "https://farm4.staticflickr.com/3575/3286948446_7761c35633_o.jpg", "secret": "bb188de747", "media": "photo", "latitude": "45.299886", "id": "3286948446", "tags": ""}, {"datetaken": "2009-02-16 15:36:46", "license": "0", "title": "Snow Day", "text": "", "album_id": "72157613984385744", "longitude": "-75.821081", "url_o": "https://farm4.staticflickr.com/3501/3286951888_c6574ae9aa_o.jpg", "secret": "b657d4176b", "media": "photo", "latitude": "45.299886", "id": "3286951888", "tags": ""}, {"datetaken": "2009-02-16 15:52:00", "license": "0", "title": "Snow Day", "text": "", "album_id": "72157613984385744", "longitude": "-75.821081", "url_o": "https://farm4.staticflickr.com/3627/3286954912_e0586b8b39_o.jpg", "secret": "f8c8446f18", "media": "photo", "latitude": "45.299886", "id": "3286954912", "tags": ""}, {"datetaken": "2009-02-16 15:54:34", "license": "0", "title": "Snow Day", "text": "", "album_id": "72157613984385744", "longitude": "-75.821081", "url_o": "https://farm4.staticflickr.com/3452/3286140021_aff816a788_o.jpg", "secret": "c9b9e93728", "media": "photo", "latitude": "45.299886", "id": "3286140021", "tags": ""}, {"datetaken": "2009-02-16 15:56:09", "license": "0", "title": "Snow Day", "text": "", "album_id": "72157613984385744", "longitude": "-75.821081", "url_o": "https://farm4.staticflickr.com/3522/3286144309_d92c21f346_o.jpg", "secret": "7729fc9be2", "media": "photo", "latitude": "45.299886", "id": "3286144309", "tags": ""}, {"datetaken": "2009-02-16 16:05:45", "license": "0", "title": "Snow Day", "text": "", "album_id": "72157613984385744", "longitude": "-75.821081", "url_o": "https://farm4.staticflickr.com/3487/3286148811_de8faf4b6d_o.jpg", "secret": "270e32145f", "media": "photo", "latitude": "45.299886", "id": "3286148811", "tags": ""}, {"datetaken": "2009-04-18 09:41:13", "license": "0", "title": "Brother and Sister to be ^_^", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3594/3454589494_2f50803484_o.jpg", "secret": "f5d5e0fcf6", "media": "photo", "latitude": "0", "id": "3454589494", "tags": ""}, {"datetaken": "2009-04-18 11:16:34", "license": "0", "title": "V.I.P. Seating", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3322/3454589660_18970098c4_o.jpg", "secret": "4c5b9673d1", "media": "photo", "latitude": "0", "id": "3454589660", "tags": ""}, {"datetaken": "2009-04-18 11:17:33", "license": "0", "title": "ME!", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3657/3453775547_3e0a95a5c0_o.jpg", "secret": "eabc5f6f34", "media": "photo", "latitude": "0", "id": "3453775547", "tags": ""}, {"datetaken": "2009-04-18 11:18:07", "license": "0", "title": "DSCN1294", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3377/3453775835_157a1d23eb_o.jpg", "secret": "19625b81e0", "media": "photo", "latitude": "0", "id": "3453775835", "tags": ""}, {"datetaken": "2009-04-18 11:18:51", "license": "0", "title": "I like to \"illustrate\" my notes...", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3553/3454590514_8d437fbb0e_o.jpg", "secret": "3d3a384fe7", "media": "photo", "latitude": "0", "id": "3454590514", "tags": ""}, {"datetaken": "2009-04-18 11:42:41", "license": "0", "title": "Opo!", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3549/3453776379_0307f2f02d_o.jpg", "secret": "9c2f0bc913", "media": "photo", "latitude": "0", "id": "3453776379", "tags": ""}, {"datetaken": "2009-04-18 11:42:59", "license": "0", "title": "Opo!", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3622/3453776691_125005d3c2_o.jpg", "secret": "af9ea958e6", "media": "photo", "latitude": "0", "id": "3453776691", "tags": ""}, {"datetaken": "2009-04-18 12:05:02", "license": "0", "title": "Where's Christian?", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3655/3454591532_40fe6f6126_o.jpg", "secret": "ab746719b3", "media": "photo", "latitude": "0", "id": "3454591532", "tags": ""}, {"datetaken": "2009-04-18 12:05:38", "license": "0", "title": "DC and Easy", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3642/3453777279_609603932b_o.jpg", "secret": "e6b9ea01c6", "media": "photo", "latitude": "0", "id": "3453777279", "tags": ""}, {"datetaken": "2009-04-18 12:09:06", "license": "0", "title": "Waiting for Christian", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3306/3454592048_2da8b26ee9_o.jpg", "secret": "86f374f13b", "media": "photo", "latitude": "0", "id": "3454592048", "tags": ""}, {"datetaken": "2009-04-18 12:26:12", "license": "0", "title": "The De Chavez Clan", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3605/3454592378_4e6829e787_o.jpg", "secret": "ab0cc626cb", "media": "photo", "latitude": "0", "id": "3454592378", "tags": ""}, {"datetaken": "2009-04-18 12:33:32", "license": "0", "title": "DSCN1304", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3556/3454592660_69a124f066_o.jpg", "secret": "dbb47dea20", "media": "photo", "latitude": "0", "id": "3454592660", "tags": ""}, {"datetaken": "2009-04-18 12:34:27", "license": "0", "title": "DSCN1305", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3562/3454592972_d2857111c0_o.jpg", "secret": "9341efd371", "media": "photo", "latitude": "0", "id": "3454592972", "tags": ""}, {"datetaken": "2009-04-18 12:34:51", "license": "0", "title": "Kuya Boy, Sis Bangit, Bro Bangit", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3382/3453778677_5113fa76aa_o.jpg", "secret": "f1746ce734", "media": "photo", "latitude": "0", "id": "3453778677", "tags": ""}, {"datetaken": "2009-04-18 12:35:13", "license": "0", "title": "This was lunch...", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3384/3454593538_853847551c_o.jpg", "secret": "202d52c850", "media": "photo", "latitude": "0", "id": "3454593538", "tags": ""}, {"datetaken": "2009-04-18 12:35:30", "license": "0", "title": "Lola Ilog", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3416/3453779175_93005956db_o.jpg", "secret": "7a1cff3b38", "media": "photo", "latitude": "0", "id": "3453779175", "tags": ""}, {"datetaken": "2009-04-18 13:07:51", "license": "0", "title": "El Groupo Photographio", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3324/3454594002_67838c493f_o.jpg", "secret": "d72c14a8cd", "media": "photo", "latitude": "0", "id": "3454594002", "tags": ""}, {"datetaken": "2009-04-18 14:36:43", "license": "0", "title": "DSCN1310", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3541/3453779757_5c89e66516_o.jpg", "secret": "00373a4548", "media": "photo", "latitude": "0", "id": "3453779757", "tags": ""}, {"datetaken": "2009-04-18 14:37:25", "license": "0", "title": "Thea", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3566/3454594500_f6def785e7_o.jpg", "secret": "eed614455b", "media": "photo", "latitude": "0", "id": "3454594500", "tags": ""}, {"datetaken": "2009-04-18 14:37:46", "license": "0", "title": "Thea", "text": "", "album_id": "72157616930463907", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3571/3454594754_935fa79c9f_o.jpg", "secret": "38fa5b0924", "media": "photo", "latitude": "0", "id": "3454594754", "tags": ""}, {"datetaken": "2009-04-25 11:22:18", "license": "0", "title": "Zac, Denise and Sam in the wind", "text": "", "album_id": "72157617295647509", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3553/3475714727_e6a6470de7_o.jpg", "secret": "9b5de7f043", "media": "photo", "latitude": "0", "id": "3475714727", "tags": ""}, {"datetaken": "2009-04-25 11:24:10", "license": "0", "title": "View from Tunnel View Lookout", "text": "", "album_id": "72157617295647509", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3572/3475717827_75a89793a6_o.jpg", "secret": "92ef4c51c7", "media": "photo", "latitude": "0", "id": "3475717827", "tags": ""}, {"datetaken": "2009-04-25 11:24:39", "license": "0", "title": "View from Tunnel View Lookout", "text": "", "album_id": "72157617295647509", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3323/3476529624_ed525fcc3d_o.jpg", "secret": "2fcd78a114", "media": "photo", "latitude": "0", "id": "3476529624", "tags": ""}, {"datetaken": "2009-04-25 11:26:55", "license": "0", "title": "Zac on the clifftop @ Tunnel View Lookout", "text": "", "album_id": "72157617295647509", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3651/3476531780_a22328fc2f_o.jpg", "secret": "7f178173c2", "media": "photo", "latitude": "0", "id": "3476531780", "tags": ""}, {"datetaken": "2009-04-25 11:28:39", "license": "0", "title": "Narrow gorge @ Tunnel View Lookout", "text": "", "album_id": "72157617295647509", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3406/3475725245_264a7f6718_o.jpg", "secret": "5da64d0bb4", "media": "photo", "latitude": "0", "id": "3475725245", "tags": ""}, {"datetaken": "2009-04-25 11:28:46", "license": "0", "title": "Narrow gorge @ Tunnel View Lookout", "text": "", "album_id": "72157617295647509", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3369/3475727519_6abccec17e_o.jpg", "secret": "42ca71cf46", "media": "photo", "latitude": "0", "id": "3475727519", "tags": ""}, {"datetaken": "2009-04-25 11:45:57", "license": "0", "title": "Sam, Zac and Denise @ Mount Portal Lookout", "text": "", "album_id": "72157617295647509", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3624/3476479750_cd3c247c85_o.jpg", "secret": "4708004f4a", "media": "photo", "latitude": "0", "id": "3476479750", "tags": ""}, {"datetaken": "2009-04-25 12:12:54", "license": "0", "title": "Zac charging @ Euroka", "text": "", "album_id": "72157617295647509", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3622/3475673209_3069533d5c_o.jpg", "secret": "4c4bb62f28", "media": "photo", "latitude": "0", "id": "3475673209", "tags": ""}, {"datetaken": "2009-04-25 12:13:11", "license": "0", "title": "Sam kicking a ball @ Euroka", "text": "", "album_id": "72157617295647509", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3629/3475676241_6f3b9d6cc7_o.jpg", "secret": "2238d87843", "media": "photo", "latitude": "0", "id": "3475676241", "tags": ""}, {"datetaken": "2009-04-25 14:29:53", "license": "0", "title": "Sam, Me and Zac walking in Blue Mountains National Park", "text": "", "album_id": "72157617295647509", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3581/3475679813_4d1de3bc88_o.jpg", "secret": "4a0266e9e0", "media": "photo", "latitude": "0", "id": "3475679813", "tags": ""}, {"datetaken": "2009-04-25 14:31:39", "license": "0", "title": "View from Pisgah Rock", "text": "", "album_id": "72157617295647509", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3614/3476492458_9e3ae53bee_o.jpg", "secret": "b2ee126c94", "media": "photo", "latitude": "0", "id": "3476492458", "tags": ""}, {"datetaken": "2009-04-25 14:31:47", "license": "0", "title": "Denise and Sam on a rock", "text": "", "album_id": "72157617295647509", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3590/3475685259_ff3fa88356_o.jpg", "secret": "1e40d86536", "media": "photo", "latitude": "0", "id": "3475685259", "tags": ""}, {"datetaken": "2009-04-25 14:32:33", "license": "0", "title": "View from Pisgah Rock", "text": "", "album_id": "72157617295647509", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3602/3475687247_4e872b60c3_o.jpg", "secret": "c449363421", "media": "photo", "latitude": "0", "id": "3475687247", "tags": ""}, {"datetaken": "2009-04-25 14:33:00", "license": "0", "title": "View from Pisgah Rock", "text": "", "album_id": "72157617295647509", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3413/3475689991_35c2aa219a_o.jpg", "secret": "05b3f948a1", "media": "photo", "latitude": "0", "id": "3475689991", "tags": ""}, {"datetaken": "2009-04-25 15:25:27", "license": "0", "title": "Denise and Sam @ Pisgah Rock", "text": "", "album_id": "72157617295647509", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3576/3475692103_61f6452f8d_o.jpg", "secret": "0e691ea6c8", "media": "photo", "latitude": "0", "id": "3475692103", "tags": ""}, {"datetaken": "2009-04-25 15:26:17", "license": "0", "title": "View from Pisgah Rock", "text": "", "album_id": "72157617295647509", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3362/3475694839_1f7f9050da_o.jpg", "secret": "8194acb3b9", "media": "photo", "latitude": "0", "id": "3475694839", "tags": ""}, {"datetaken": "2009-05-23 22:21:20", "license": "0", "title": "FDR memorial", "text": "", "album_id": "72157618713479185", "longitude": "-77.043288", "url_o": "https://farm4.staticflickr.com/3310/3564199631_a2fb7591d6_o.jpg", "secret": "44bf6503c2", "media": "photo", "latitude": "38.883387", "id": "3564199631", "tags": "dc fdrmemorial"}, {"datetaken": "2009-05-23 22:59:43", "license": "0", "title": "lincoln memorial columns", "text": "", "album_id": "72157618713479185", "longitude": "-77.050037", "url_o": "https://farm4.staticflickr.com/3209/3565019084_4befc426dc_o.jpg", "secret": "2e7521d22b", "media": "photo", "latitude": "38.889300", "id": "3565019084", "tags": "dc lincolnmemorial"}, {"datetaken": "2009-05-23 23:06:29", "license": "0", "title": "long exposure experiments", "text": "", "album_id": "72157618713479185", "longitude": "-77.050037", "url_o": "https://farm4.staticflickr.com/3595/3565019692_77bc715c65_o.jpg", "secret": "0ce4bdbb3d", "media": "photo", "latitude": "38.889300", "id": "3565019692", "tags": "dc lincolnmemorial"}, {"datetaken": "2009-05-23 23:24:35", "license": "0", "title": "vietnam memorial", "text": "", "album_id": "72157618713479185", "longitude": "-77.047816", "url_o": "https://farm4.staticflickr.com/3656/3564205907_59bfedb58c_o.jpg", "secret": "a62f641185", "media": "photo", "latitude": "38.891158", "id": "3564205907", "tags": "dc vietnammemorial"}, {"datetaken": "2009-05-23 23:26:49", "license": "0", "title": "another long exposure attempt", "text": "", "album_id": "72157618713479185", "longitude": "-77.047816", "url_o": "https://farm3.staticflickr.com/2436/3564215563_b9d8ac69c7_o.jpg", "secret": "984a5ec5d0", "media": "photo", "latitude": "38.891158", "id": "3564215563", "tags": "dc vietnammemorial"}, {"datetaken": "2009-05-24 11:56:52", "license": "0", "title": "motorcycles in town for rolling thunder", "text": "", "album_id": "72157618713479185", "longitude": "-77.053610", "url_o": "https://farm3.staticflickr.com/2458/3565037324_22fbb8b261_o.jpg", "secret": "19f35e0fdb", "media": "photo", "latitude": "38.891408", "id": "3565037324", "tags": "dc"}, {"datetaken": "2009-05-24 11:57:20", "license": "0", "title": "on their way to the parade route", "text": "", "album_id": "72157618713479185", "longitude": "-77.053610", "url_o": "https://farm4.staticflickr.com/3384/3565038150_e9f867e0d5_o.jpg", "secret": "7961961d18", "media": "photo", "latitude": "38.891408", "id": "3565038150", "tags": "dc"}, {"datetaken": "2009-05-24 12:00:28", "license": "0", "title": "all lined up", "text": "", "album_id": "72157618713479185", "longitude": "-77.053610", "url_o": "https://farm3.staticflickr.com/2449/3564221547_ca76661ae3_o.jpg", "secret": "1e2e02019d", "media": "photo", "latitude": "38.891408", "id": "3564221547", "tags": "dc"}, {"datetaken": "2009-05-24 17:36:35", "license": "0", "title": "these people came prepared", "text": "", "album_id": "72157618713479185", "longitude": "-77.011048", "url_o": "https://farm4.staticflickr.com/3342/3564291827_3f49d2c513_o.jpg", "secret": "662a5d3136", "media": "photo", "latitude": "38.889688", "id": "3564291827", "tags": "dc capitol pbs nationalmemorialdayconcert"}, {"datetaken": "2009-05-24 17:36:52", "license": "0", "title": "we came pretty prepared too", "text": "", "album_id": "72157618713479185", "longitude": "-77.011048", "url_o": "https://farm4.staticflickr.com/3356/3564292193_2092173f5c_o.jpg", "secret": "85e5c39df0", "media": "photo", "latitude": "38.889688", "id": "3564292193", "tags": "dc capitol pbs nationalmemorialdayconcert"}, {"datetaken": "2009-05-24 17:37:41", "license": "0", "title": "the lawn, filling up", "text": "", "album_id": "72157618713479185", "longitude": "-77.011048", "url_o": "https://farm4.staticflickr.com/3580/3564292529_de66dca955_o.jpg", "secret": "30ecb3f5be", "media": "photo", "latitude": "38.889688", "id": "3564292529", "tags": "dc capitol pbs nationalmemorialdayconcert"}, {"datetaken": "2009-05-24 18:34:46", "license": "0", "title": "the sun's coming out!", "text": "", "album_id": "72157618713479185", "longitude": "-77.011048", "url_o": "https://farm4.staticflickr.com/3310/3565110762_92e3734037_o.jpg", "secret": "b454460f1d", "media": "photo", "latitude": "38.889688", "id": "3565110762", "tags": "dc capitol pbs nationalmemorialdayconcert"}, {"datetaken": "2009-05-24 18:35:50", "license": "0", "title": "kyle", "text": "", "album_id": "72157618713479185", "longitude": "-77.011048", "url_o": "https://farm4.staticflickr.com/3609/3564293091_57f0831aa2_o.jpg", "secret": "6a1f506fac", "media": "photo", "latitude": "38.889688", "id": "3564293091", "tags": "dc capitol pbs nationalmemorialdayconcert"}, {"datetaken": "2009-05-24 19:27:32", "license": "0", "title": "stars", "text": "", "album_id": "72157618713479185", "longitude": "-77.011048", "url_o": "https://farm4.staticflickr.com/3633/3564293481_12a43fc189_o.jpg", "secret": "b0802840ab", "media": "photo", "latitude": "38.889688", "id": "3564293481", "tags": "dc capitol pbs nationalmemorialdayconcert"}, {"datetaken": "2009-05-24 19:34:20", "license": "0", "title": "flags", "text": "", "album_id": "72157618713479185", "longitude": "-77.011048", "url_o": "https://farm3.staticflickr.com/2128/3565111998_785bf9fcb2_o.jpg", "secret": "238df88306", "media": "photo", "latitude": "38.889688", "id": "3565111998", "tags": "dc capitol pbs nationalmemorialdayconcert"}, {"datetaken": "2009-05-24 19:37:29", "license": "0", "title": "capitol lights coming on", "text": "", "album_id": "72157618713479185", "longitude": "-77.011048", "url_o": "https://farm4.staticflickr.com/3414/3565112714_3f9ed0a7db_o.jpg", "secret": "280d241d87", "media": "photo", "latitude": "38.889688", "id": "3565112714", "tags": "dc capitol pbs nationalmemorialdayconcert"}, {"datetaken": "2009-06-15 21:03:27", "license": "0", "title": "my eye view.", "text": "", "album_id": "72157619898337387", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3409/3642656916_bf43ca9121_o.jpg", "secret": "de6573fd40", "media": "photo", "latitude": "0", "id": "3642656916", "tags": "hannover mahjongg benbutlermousepad germanytour2009"}, {"datetaken": "2009-06-15 21:03:44", "license": "0", "title": "my setup", "text": "", "album_id": "72157619898337387", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2438/3641851527_0fc598d21e_o.jpg", "secret": "7d7d0cb2be", "media": "photo", "latitude": "0", "id": "3641851527", "tags": "hannover synths mahjongg korgpoly800 fenderrhodes yamahacs01 benbutlermousepad germanytour2009"}, {"datetaken": "2009-06-15 22:44:51", "license": "0", "title": "buddies", "text": "", "album_id": "72157619898337387", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3623/3641852701_40016fbf22_o.jpg", "secret": "07e9345ed1", "media": "photo", "latitude": "0", "id": "3641852701", "tags": "hannover mahjongg benbutlermousepad germanytour2009"}, {"datetaken": "2009-06-15 22:44:57", "license": "0", "title": "josh", "text": "", "album_id": "72157619898337387", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3651/3642660342_afbac64abb_o.jpg", "secret": "58051d2d4c", "media": "photo", "latitude": "0", "id": "3642660342", "tags": "hannover mahjongg benbutlermousepad germanytour2009"}, {"datetaken": "2009-06-15 22:45:02", "license": "0", "title": "my eye view / michael", "text": "", "album_id": "72157619898337387", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3376/3642661514_b8c283d81d_o.jpg", "secret": "48d443f782", "media": "photo", "latitude": "0", "id": "3642661514", "tags": "hannover mahjongg benbutlermousepad germanytour2009"}, {"datetaken": "2009-06-15 22:46:03", "license": "0", "title": "the 'puters", "text": "", "album_id": "72157619898337387", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3662/3642662800_5f960c7de3_o.jpg", "secret": "978627cbc0", "media": "photo", "latitude": "0", "id": "3642662800", "tags": "hannover mahjongg benbutlermousepad germanytour2009"}, {"datetaken": "2009-06-15 22:46:20", "license": "0", "title": "minimoog", "text": "", "album_id": "72157619898337387", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3620/3641857371_74080caee1_o.jpg", "secret": "f5e7f581d9", "media": "photo", "latitude": "0", "id": "3641857371", "tags": "hannover mahjongg minimoog benbutlermousepad germanytour2009"}, {"datetaken": "2009-06-15 22:50:45", "license": "0", "title": "minimoog", "text": "", "album_id": "72157619898337387", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3583/3642665208_f58fbb2b32_o.jpg", "secret": "e98e3b329e", "media": "photo", "latitude": "0", "id": "3642665208", "tags": "hannover mahjongg minimoog benbutlermousepad germanytour2009"}, {"datetaken": "2009-06-15 22:50:55", "license": "0", "title": "minimoog", "text": "", "album_id": "72157619898337387", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3605/3641859925_f7cfe3510a_o.jpg", "secret": "a8058f3c45", "media": "photo", "latitude": "0", "id": "3641859925", "tags": "hannover mahjongg minimoog benbutlermousepad germanytour2009"}, {"datetaken": "2009-06-16 11:24:19", "license": "0", "title": "shapes", "text": "", "album_id": "72157619898337387", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3403/3642668848_30691ef294_o.jpg", "secret": "6ef0e8b33a", "media": "photo", "latitude": "0", "id": "3642668848", "tags": "hannover mahjongg benbutlermousepad germanytour2009"}, {"datetaken": "2009-06-16 11:27:21", "license": "0", "title": "the dutch building", "text": "", "album_id": "72157619898337387", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3312/3642670856_934446fb8a_o.jpg", "secret": "6c3eba044d", "media": "photo", "latitude": "0", "id": "3642670856", "tags": "hannover mahjongg benbutlermousepad germanytour2009"}, {"datetaken": "2009-07-13 19:37:51", "license": "0", "title": "Cardinal", "text": "", "album_id": "72157621420245574", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3519/3718775593_c6f7f4527c_o.jpg", "secret": "d8f28070db", "media": "photo", "latitude": "0", "id": "3718775593", "tags": "building architecture brighton bc mansion seminary bostoncollege archdiocese"}, {"datetaken": "2009-07-13 19:38:53", "license": "0", "title": "C'mon!", "text": "", "album_id": "72157621420245574", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3452/3718775635_c88e6a87fb_o.jpg", "secret": "905f5d5a05", "media": "photo", "latitude": "0", "id": "3718775635", "tags": "boys brighton bc seminary layla bostoncollege archdiocese"}, {"datetaken": "2009-07-13 19:41:16", "license": "0", "title": "Just another tree", "text": "", "album_id": "72157621420245574", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2535/3719589550_4912d7f7e1_o.jpg", "secret": "59d1de4430", "media": "photo", "latitude": "0", "id": "3719589550", "tags": "trees brighton bc seminary conifers bostoncollege archdiocese"}, {"datetaken": "2009-07-13 19:42:02", "license": "0", "title": "Peeking", "text": "", "album_id": "72157621420245574", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3436/3718775883_f300e7e8d6_o.jpg", "secret": "1b4dec5215", "media": "photo", "latitude": "0", "id": "3718775883", "tags": "building architecture brighton bc mansion seminary bostoncollege archdiocese"}, {"datetaken": "2009-07-13 19:42:15", "license": "0", "title": "Framed Wing", "text": "", "album_id": "72157621420245574", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2563/3719589770_1b09a7bcf6_o.jpg", "secret": "4428317ae7", "media": "photo", "latitude": "0", "id": "3719589770", "tags": "building architecture brighton bc mansion seminary bostoncollege archdiocese"}, {"datetaken": "2009-07-13 19:42:27", "license": "0", "title": "Cardinal's Mansion, East Wing", "text": "", "album_id": "72157621420245574", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2670/3718776073_585fc878c7_o.jpg", "secret": "487f06d614", "media": "photo", "latitude": "0", "id": "3718776073", "tags": "building architecture brighton bc mansion seminary bostoncollege archdiocese"}, {"datetaken": "2009-07-13 19:43:04", "license": "0", "title": "Chapel", "text": "", "album_id": "72157621420245574", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2668/3719590072_41460c566f_o.jpg", "secret": "d918d807df", "media": "photo", "latitude": "0", "id": "3719590072", "tags": "building brighton bc gothic chapel seminary bostoncollege archdiocese"}, {"datetaken": "2009-07-13 19:45:47", "license": "0", "title": "Retrieval", "text": "", "album_id": "72157621420245574", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2538/3719590166_612ac44ae4_o.jpg", "secret": "89e28bd078", "media": "photo", "latitude": "0", "id": "3719590166", "tags": "dogs boys animals brighton bc seminary layla fetch bostoncollege archdiocese"}, {"datetaken": "2009-07-13 19:46:51", "license": "0", "title": "Sonar", "text": "", "album_id": "72157621420245574", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2573/3718776367_1db12a32e7_o.jpg", "secret": "03ea2280b1", "media": "photo", "latitude": "0", "id": "3718776367", "tags": "sunset boys brighton bc action seminary layla bostoncollege archdiocese"}, {"datetaken": "2009-07-13 19:47:12", "license": "0", "title": "Guarding the Stick", "text": "", "album_id": "72157621420245574", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2674/3719590428_4e4379482e_o.jpg", "secret": "572940e89e", "media": "photo", "latitude": "0", "id": "3719590428", "tags": "brighton bc seminary layla bostoncollege archdiocese"}, {"datetaken": "2009-07-13 19:49:21", "license": "0", "title": "Thumper", "text": "", "album_id": "72157621420245574", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3444/3719590506_aa2f992dbc_o.jpg", "secret": "d73b650cd7", "media": "photo", "latitude": "0", "id": "3719590506", "tags": "rabbit bunny animals eyes brighton bc ears seminary bostoncollege archdiocese"}, {"datetaken": "2009-08-01 11:10:10", "license": "5", "title": "Surprising", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3466/3786903990_a2f65f57d3_o.jpg", "secret": "37311b7477", "media": "photo", "latitude": "0", "id": "3786903990", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:10:45", "license": "5", "title": "Having a permanent rest", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2486/3786916330_eeeecba414_o.jpg", "secret": "e9baa49ddf", "media": "photo", "latitude": "0", "id": "3786916330", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:10:47", "license": "5", "title": "Gunfight at the East Park Corral", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2654/3786113285_3d68fc13c4_o.jpg", "secret": "c1522dbbf8", "media": "photo", "latitude": "0", "id": "3786113285", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:11:06", "license": "5", "title": "Re-enactment", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2450/3786933954_92c8127108_o.jpg", "secret": "dd1d40db0b", "media": "photo", "latitude": "0", "id": "3786933954", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:11:27", "license": "5", "title": "Let the bodies hit the floor", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2438/3786943688_9464efeef4_o.jpg", "secret": "a0911646ac", "media": "photo", "latitude": "0", "id": "3786943688", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:11:36", "license": "5", "title": "More bodies", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3452/3786171615_150242ca01_o.jpg", "secret": "28cf17b5b9", "media": "photo", "latitude": "0", "id": "3786171615", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:15:56", "license": "5", "title": "Transportation", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2474/3786989368_c9ca549f74_o.jpg", "secret": "9853fd9d0c", "media": "photo", "latitude": "0", "id": "3786989368", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:16:07", "license": "5", "title": "Ride", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2661/3786185755_a17083f244_o.jpg", "secret": "fc88751c25", "media": "photo", "latitude": "0", "id": "3786185755", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:27:40", "license": "5", "title": "Not sure exactly what this is", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3484/3786193179_1fd1a7c8a3_o.jpg", "secret": "9a7e98cf5c", "media": "photo", "latitude": "0", "id": "3786193179", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:31:36", "license": "5", "title": "Woodwork", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3444/3786197577_3ed4f84fbb_o.jpg", "secret": "0bb8813960", "media": "photo", "latitude": "0", "id": "3786197577", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:35:46", "license": "5", "title": "All the fun of the fair", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3442/3787036762_991f01efd4_o.jpg", "secret": "44f5785b13", "media": "photo", "latitude": "0", "id": "3787036762", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:37:35", "license": "5", "title": "Fairground", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2565/3786233301_b5e3a1886d_o.jpg", "secret": "3b806756fe", "media": "photo", "latitude": "0", "id": "3786233301", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:37:46", "license": "5", "title": "The wheel", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3428/3786240187_a6e422c8b5_o.jpg", "secret": "43c0591e51", "media": "photo", "latitude": "0", "id": "3786240187", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:38:00", "license": "5", "title": "Rides", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2455/3787058740_683011f0b9_o.jpg", "secret": "d6b9759df3", "media": "photo", "latitude": "0", "id": "3787058740", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:45:25", "license": "5", "title": "Vintage vehicles", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2500/3786251435_a5990e3d41_o.jpg", "secret": "a97a68643e", "media": "photo", "latitude": "0", "id": "3786251435", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:47:10", "license": "5", "title": "Horses on parade", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2621/3787081068_38f4ffb920_o.jpg", "secret": "573831aaca", "media": "photo", "latitude": "0", "id": "3787081068", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:49:01", "license": "5", "title": "Security", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3460/3786275645_e78c3d54a4_o.jpg", "secret": "d44dd8c466", "media": "photo", "latitude": "0", "id": "3786275645", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:50:05", "license": "5", "title": "Who do you think you are kidding Mr. Hitler?", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3525/3786281097_e55b2d19ae_o.jpg", "secret": "07b2bb84c8", "media": "photo", "latitude": "0", "id": "3786281097", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-08-01 11:50:16", "license": "5", "title": "Demos", "text": "", "album_id": "72157621937352502", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2561/3786283855_02c37ccfc8_o.jpg", "secret": "622d25f1ee", "media": "photo", "latitude": "0", "id": "3786283855", "tags": "war hull veterans armedforces eastpark"}, {"datetaken": "2009-05-25 13:00:00", "license": "0", "title": "First view of the park.", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2633/3896370489_624f7c3bf7_o.jpg", "secret": "284746956c", "media": "photo", "latitude": "0", "id": "3896370489", "tags": ""}, {"datetaken": "2009-05-25 13:00:01", "license": "0", "title": "Protesters.", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2584/3897151258_4828c3ea29_o.jpg", "secret": "638744ef80", "media": "photo", "latitude": "0", "id": "3897151258", "tags": ""}, {"datetaken": "2009-05-25 13:00:02", "license": "0", "title": "1 pm.", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2602/3896371501_421cf8277f_o.jpg", "secret": "9475ebf6b3", "media": "photo", "latitude": "0", "id": "3896371501", "tags": ""}, {"datetaken": "2009-05-25 13:00:03", "license": "0", "title": "Home of the San Francisco Giants", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2603/3897152606_aedc93b8c8_o.jpg", "secret": "d019e32b21", "media": "photo", "latitude": "0", "id": "3897152606", "tags": ""}, {"datetaken": "2009-05-25 13:00:04", "license": "0", "title": "AT&T Park.", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2479/3896373971_bab02688c7_o.jpg", "secret": "4df371b96c", "media": "photo", "latitude": "0", "id": "3896373971", "tags": ""}, {"datetaken": "2009-05-25 13:00:05", "license": "0", "title": "Partial view of the bay.", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2506/3897155234_5883c43deb_o.jpg", "secret": "6733994ea2", "media": "photo", "latitude": "0", "id": "3897155234", "tags": ""}, {"datetaken": "2009-05-25 13:00:06", "license": "0", "title": "We were up high...", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3433/3897155600_a326dbdac8_o.jpg", "secret": "61d26629c1", "media": "photo", "latitude": "0", "id": "3897155600", "tags": ""}, {"datetaken": "2009-05-25 13:00:07", "license": "0", "title": "Giants game.", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2442/3896376995_bc15f60796_o.jpg", "secret": "bd4ac17498", "media": "photo", "latitude": "0", "id": "3896376995", "tags": ""}, {"datetaken": "2009-05-25 13:00:08", "license": "0", "title": "The field.", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3486/3896378375_9832a1ba6d_o.jpg", "secret": "f5e4893060", "media": "photo", "latitude": "0", "id": "3896378375", "tags": ""}, {"datetaken": "2009-05-25 13:00:09", "license": "0", "title": "John.", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2668/3896378907_830a5c36bd_o.jpg", "secret": "4bb02b99e0", "media": "photo", "latitude": "0", "id": "3896378907", "tags": ""}, {"datetaken": "2009-05-25 13:00:10", "license": "0", "title": "That scoreboard is blocking the view.", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2622/3896379605_4e6e75bea7_o.jpg", "secret": "d90bc81500", "media": "photo", "latitude": "0", "id": "3896379605", "tags": ""}, {"datetaken": "2009-05-25 13:00:11", "license": "0", "title": "Decadent ice cream sundaes.", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2473/3897160212_de2a7ccae9_o.jpg", "secret": "31fda7ef13", "media": "photo", "latitude": "0", "id": "3897160212", "tags": ""}, {"datetaken": "2009-05-25 13:00:12", "license": "0", "title": "Beer!", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2429/3897160548_8532408672_o.jpg", "secret": "532736c57f", "media": "photo", "latitude": "0", "id": "3897160548", "tags": ""}, {"datetaken": "2009-05-25 13:00:13", "license": "0", "title": "View of the field.", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2434/3896381107_a940a134f8_o.jpg", "secret": "703c4348d8", "media": "photo", "latitude": "0", "id": "3896381107", "tags": ""}, {"datetaken": "2009-05-25 13:00:14", "license": "0", "title": "The pitch.", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3488/3896381541_404b9dd32f_o.jpg", "secret": "b9691f3ee3", "media": "photo", "latitude": "0", "id": "3896381541", "tags": ""}, {"datetaken": "2009-05-25 13:00:15", "license": "0", "title": "It's a hit.", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3453/3897162156_698420dcab_o.jpg", "secret": "75aeebcb56", "media": "photo", "latitude": "0", "id": "3897162156", "tags": ""}, {"datetaken": "2009-05-25 13:00:16", "license": "0", "title": "Sunburned. Exhausted.", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2421/3896383395_1c8b058eb3_o.jpg", "secret": "84717fe0c4", "media": "photo", "latitude": "0", "id": "3896383395", "tags": ""}, {"datetaken": "2009-05-25 13:00:17", "license": "0", "title": "Giants win!", "text": "", "album_id": "72157622163497425", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3512/3897165568_7f7bcd70a7_o.jpg", "secret": "0db210a8c9", "media": "photo", "latitude": "0", "id": "3897165568", "tags": ""}, {"datetaken": "2009-09-28 13:44:15", "license": "0", "title": "Canada Geese Are On the Move", "text": "", "album_id": "72157622498721594", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2610/3973108465_f2d4958d98_o.jpg", "secret": "3fcfccf7af", "media": "photo", "latitude": "0", "id": "3973108465", "tags": ""}, {"datetaken": "2009-09-28 14:28:27", "license": "0", "title": "Willamette Falls", "text": "", "album_id": "72157622498721594", "longitude": "-122.613902", "url_o": "https://farm4.staticflickr.com/3455/3973874884_2a266ccbc6_o.jpg", "secret": "26ed82749c", "media": "photo", "latitude": "45.352567", "id": "3973874884", "tags": ""}, {"datetaken": "2009-09-28 14:28:33", "license": "0", "title": "Willamette Falls", "text": "", "album_id": "72157622498721594", "longitude": "-122.613902", "url_o": "https://farm3.staticflickr.com/2632/3973874974_00b09b2cfd_o.jpg", "secret": "94a0268317", "media": "photo", "latitude": "45.352567", "id": "3973874974", "tags": ""}, {"datetaken": "2009-09-28 14:28:41", "license": "0", "title": "Willamette Falls", "text": "", "album_id": "72157622498721594", "longitude": "-122.613902", "url_o": "https://farm3.staticflickr.com/2471/3973108833_e9e4661ffc_o.jpg", "secret": "982db03af2", "media": "photo", "latitude": "45.352567", "id": "3973108833", "tags": ""}, {"datetaken": "2009-09-28 17:19:34", "license": "0", "title": "Home Sweet Home", "text": "", "album_id": "72157622498721594", "longitude": "-122.880041", "url_o": "https://farm3.staticflickr.com/2627/3973109129_44359172b3_o.jpg", "secret": "362dfe1bb2", "media": "photo", "latitude": "45.247941", "id": "3973109129", "tags": ""}, {"datetaken": "2009-09-28 17:28:16", "license": "0", "title": "Fall is Here", "text": "", "album_id": "72157622498721594", "longitude": "-122.880041", "url_o": "https://farm3.staticflickr.com/2582/3973109423_9a3eae5d88_o.jpg", "secret": "86fd13da79", "media": "photo", "latitude": "45.247941", "id": "3973109423", "tags": ""}, {"datetaken": "2009-09-28 17:57:33", "license": "0", "title": "Dinner", "text": "", "album_id": "72157622498721594", "longitude": "-122.880041", "url_o": "https://farm4.staticflickr.com/3440/3973875988_7e5408d1f6_o.jpg", "secret": "1f4ec87dcb", "media": "photo", "latitude": "45.247941", "id": "3973875988", "tags": ""}, {"datetaken": "2009-09-29 08:58:07", "license": "0", "title": "Loaded Up in the AM", "text": "", "album_id": "72157622498721594", "longitude": "-122.880041", "url_o": "https://farm4.staticflickr.com/3455/3973876318_192351e181_o.jpg", "secret": "ed7951f2fe", "media": "photo", "latitude": "45.247941", "id": "3973876318", "tags": ""}, {"datetaken": "2009-09-29 09:06:25", "license": "0", "title": "Champoeg Trail", "text": "", "album_id": "72157622498721594", "longitude": "-122.872070", "url_o": "https://farm3.staticflickr.com/2600/3973876646_f39175ec27_o.jpg", "secret": "83709880ea", "media": "photo", "latitude": "45.252647", "id": "3973876646", "tags": ""}, {"datetaken": "2009-09-29 09:20:58", "license": "0", "title": "Pie Stop", "text": "", "album_id": "72157622498721594", "longitude": "-122.844893", "url_o": "https://farm4.staticflickr.com/3422/3973110515_593bcf1e49_o.jpg", "secret": "32153c4cb4", "media": "photo", "latitude": "45.259036", "id": "3973110515", "tags": "pie"}, {"datetaken": "2009-09-29 10:24:31", "license": "0", "title": "Cows", "text": "", "album_id": "72157622498721594", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2647/3973110851_7dc41aeef6_o.jpg", "secret": "709dbec1a4", "media": "photo", "latitude": "0", "id": "3973110851", "tags": ""}, {"datetaken": "2009-12-01 14:07:33", "license": "0", "title": "Patrick Butler and Becky at there wedding Birmingham", "text": "", "album_id": "72157622911625354", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4149740192_c210c4a962_o.jpg", "secret": "729526f0ff", "media": "photo", "latitude": "0", "id": "4149740192", "tags": ""}, {"datetaken": "2009-12-01 15:19:18", "license": "0", "title": "4th day of the walk", "text": "", "album_id": "72157622911625354", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2423/4149081835_40ef5dc145_o.jpg", "secret": "82d83f45c2", "media": "photo", "latitude": "0", "id": "4149081835", "tags": ""}, {"datetaken": "2009-12-01 15:19:21", "license": "0", "title": "Near Lamai Koh Samui", "text": "", "album_id": "72157622911625354", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2590/4149081915_41aa088e91_o.jpg", "secret": "4a8ef6c1e5", "media": "photo", "latitude": "0", "id": "4149081915", "tags": ""}, {"datetaken": "2009-12-01 15:19:25", "license": "0", "title": "Koh Samui", "text": "", "album_id": "72157622911625354", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4149841020_21bf943dbd_o.jpg", "secret": "0094a95e46", "media": "photo", "latitude": "0", "id": "4149841020", "tags": ""}, {"datetaken": "2009-12-01 15:19:28", "license": "0", "title": "Pagoda", "text": "", "album_id": "72157622911625354", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2515/4149841130_25722f044b_o.jpg", "secret": "2c32a2fc73", "media": "photo", "latitude": "0", "id": "4149841130", "tags": ""}, {"datetaken": "2009-12-01 15:19:33", "license": "0", "title": "11-28-2009_027", "text": "", "album_id": "72157622911625354", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2636/4149841234_4c2d686b61_o.jpg", "secret": "4a2fba90cb", "media": "photo", "latitude": "0", "id": "4149841234", "tags": ""}, {"datetaken": "2009-12-01 15:19:37", "license": "0", "title": "11-28-2009_029", "text": "", "album_id": "72157622911625354", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4149082311_3ff848aba4_o.jpg", "secret": "e6b979df0c", "media": "photo", "latitude": "0", "id": "4149082311", "tags": ""}, {"datetaken": "2009-12-01 15:19:41", "license": "0", "title": "near Bophut", "text": "", "album_id": "72157622911625354", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4149082403_ca8121262c_o.jpg", "secret": "f7fac64d69", "media": "photo", "latitude": "0", "id": "4149082403", "tags": ""}, {"datetaken": "2009-12-01 15:19:44", "license": "0", "title": "Big Buddha", "text": "", "album_id": "72157622911625354", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4149841544_213765d83e_o.jpg", "secret": "2ac8a28207", "media": "photo", "latitude": "0", "id": "4149841544", "tags": ""}, {"datetaken": "2009-12-01 15:19:48", "license": "0", "title": "11-28-2009_035", "text": "", "album_id": "72157622911625354", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2648/4149082613_0cefb34c89_o.jpg", "secret": "e1455e4e51", "media": "photo", "latitude": "0", "id": "4149082613", "tags": ""}, {"datetaken": "2009-12-01 15:19:51", "license": "0", "title": "Bell and I", "text": "", "album_id": "72157622911625354", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4149841750_377abdaf58_o.jpg", "secret": "071ab116b1", "media": "photo", "latitude": "0", "id": "4149841750", "tags": ""}, {"datetaken": "2009-12-01 15:19:54", "license": "0", "title": "bell", "text": "", "album_id": "72157622911625354", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2541/4149082779_3cfd324f30_o.jpg", "secret": "2539d7d425", "media": "photo", "latitude": "0", "id": "4149082779", "tags": ""}, {"datetaken": "2009-12-01 15:19:58", "license": "0", "title": "Peneng", "text": "", "album_id": "72157622911625354", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2644/4149841930_bf55ef7333_o.jpg", "secret": "d377f55e92", "media": "photo", "latitude": "0", "id": "4149841930", "tags": ""}, {"datetaken": "2009-12-01 15:20:01", "license": "0", "title": "Koh Samui", "text": "", "album_id": "72157622911625354", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2745/4149841998_510af4c435_o.jpg", "secret": "02dda66eb6", "media": "photo", "latitude": "0", "id": "4149841998", "tags": ""}, {"datetaken": "2009-12-01 15:20:05", "license": "0", "title": "Bell", "text": "", "album_id": "72157622911625354", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2534/4149083083_81588df028_o.jpg", "secret": "d231399658", "media": "photo", "latitude": "0", "id": "4149083083", "tags": ""}, {"datetaken": "2009-12-01 15:20:08", "license": "0", "title": "Bell", "text": "", "album_id": "72157622911625354", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4149083193_d65f2b998d_o.jpg", "secret": "2dc36283c7", "media": "photo", "latitude": "0", "id": "4149083193", "tags": ""}, {"datetaken": "2009-12-27 17:08:26", "license": "0", "title": "P1000743", "text": "", "album_id": "72157623082288698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4220398412_7d1c747b4f_o.jpg", "secret": "7bc7e0de87", "media": "photo", "latitude": "0", "id": "4220398412", "tags": ""}, {"datetaken": "2009-12-27 17:08:37", "license": "0", "title": "P1000744", "text": "", "album_id": "72157623082288698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4220398684_fda55aecb6_o.jpg", "secret": "42fc4b0399", "media": "photo", "latitude": "0", "id": "4220398684", "tags": ""}, {"datetaken": "2009-12-27 17:08:49", "license": "0", "title": "P1000745", "text": "", "album_id": "72157623082288698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2635/4219634543_1e366bb99a_o.jpg", "secret": "7de326c340", "media": "photo", "latitude": "0", "id": "4219634543", "tags": ""}, {"datetaken": "2009-12-27 17:09:00", "license": "0", "title": "P1000746", "text": "", "album_id": "72157623082288698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4220399150_4da14f749c_o.jpg", "secret": "d0b03e8346", "media": "photo", "latitude": "0", "id": "4220399150", "tags": ""}, {"datetaken": "2009-12-27 17:09:15", "license": "0", "title": "P1000747", "text": "", "album_id": "72157623082288698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4220399408_7f51f89843_o.jpg", "secret": "b412230d24", "media": "photo", "latitude": "0", "id": "4220399408", "tags": ""}, {"datetaken": "2009-12-27 17:09:34", "license": "0", "title": "P1000748", "text": "", "album_id": "72157623082288698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2674/4219635831_8a1250bfd0_o.jpg", "secret": "dffdd740dd", "media": "photo", "latitude": "0", "id": "4219635831", "tags": ""}, {"datetaken": "2009-12-27 17:09:45", "license": "0", "title": "P1000749", "text": "", "album_id": "72157623082288698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2620/4220400890_5a86b9d5d1_o.jpg", "secret": "26295bba26", "media": "photo", "latitude": "0", "id": "4220400890", "tags": ""}, {"datetaken": "2009-12-27 17:09:57", "license": "0", "title": "P1000750", "text": "", "album_id": "72157623082288698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2489/4220401724_c8bb711cd1_o.jpg", "secret": "77d0b34d0d", "media": "photo", "latitude": "0", "id": "4220401724", "tags": ""}, {"datetaken": "2009-12-27 17:10:23", "license": "0", "title": "P1000751", "text": "", "album_id": "72157623082288698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2493/4220402618_a0fbe357b8_o.jpg", "secret": "8a2df50a85", "media": "photo", "latitude": "0", "id": "4220402618", "tags": ""}, {"datetaken": "2009-12-27 17:17:25", "license": "0", "title": "P1000752", "text": "", "album_id": "72157623082288698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4219638991_002f5f9481_o.jpg", "secret": "79402f7cff", "media": "photo", "latitude": "0", "id": "4219638991", "tags": ""}, {"datetaken": "2009-12-27 17:17:53", "license": "0", "title": "P1000753", "text": "", "album_id": "72157623082288698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2528/4220404132_9a3d311144_o.jpg", "secret": "69657e9ece", "media": "photo", "latitude": "0", "id": "4220404132", "tags": ""}, {"datetaken": "2009-12-27 17:18:09", "license": "0", "title": "P1000754", "text": "", "album_id": "72157623082288698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4220404972_fae7063a34_o.jpg", "secret": "6fa8ea6fb1", "media": "photo", "latitude": "0", "id": "4220404972", "tags": ""}, {"datetaken": "2009-12-27 17:18:27", "license": "0", "title": "P1000755", "text": "", "album_id": "72157623082288698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2623/4219641423_4dbbb8a3be_o.jpg", "secret": "a45bcba555", "media": "photo", "latitude": "0", "id": "4219641423", "tags": ""}, {"datetaken": "2009-12-27 17:18:41", "license": "0", "title": "P1000756", "text": "", "album_id": "72157623082288698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2546/4219642351_295e30702d_o.jpg", "secret": "3bfdf6ced8", "media": "photo", "latitude": "0", "id": "4219642351", "tags": ""}, {"datetaken": "2009-12-27 17:19:03", "license": "0", "title": "P1000757", "text": "", "album_id": "72157623082288698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4220407518_942e38d33e_o.jpg", "secret": "8c6bff3b71", "media": "photo", "latitude": "0", "id": "4220407518", "tags": ""}, {"datetaken": "2009-12-27 17:19:20", "license": "0", "title": "P1000758", "text": "", "album_id": "72157623082288698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4219644053_679bcf125b_o.jpg", "secret": "992076f2dc", "media": "photo", "latitude": "0", "id": "4219644053", "tags": ""}, {"datetaken": "2009-12-27 17:19:34", "license": "0", "title": "P1000759", "text": "", "album_id": "72157623082288698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4219644907_2a8bf7efb8_o.jpg", "secret": "6f4be4ea20", "media": "photo", "latitude": "0", "id": "4219644907", "tags": ""}, {"datetaken": "2010-01-29 20:16:33", "license": "0", "title": "R1-14A", "text": "", "album_id": "72157623186393217", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2692/4315382338_c5cd8caf17_o.jpg", "secret": "456d868283", "media": "photo", "latitude": "0", "id": "4315382338", "tags": ""}, {"datetaken": "2010-01-29 20:16:38", "license": "0", "title": "R1-15A", "text": "", "album_id": "72157623186393217", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4314646241_ee728288d1_o.jpg", "secret": "31cdaf5b4e", "media": "photo", "latitude": "0", "id": "4314646241", "tags": ""}, {"datetaken": "2010-01-29 20:16:44", "license": "0", "title": "R1-16A", "text": "", "album_id": "72157623186393217", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4314646439_1bbdb255c0_o.jpg", "secret": "b03b0bea13", "media": "photo", "latitude": "0", "id": "4314646439", "tags": ""}, {"datetaken": "2010-01-29 20:16:50", "license": "0", "title": "R1-18A", "text": "", "album_id": "72157623186393217", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4315382778_740a227c1d_o.jpg", "secret": "6cbdd01f1b", "media": "photo", "latitude": "0", "id": "4315382778", "tags": ""}, {"datetaken": "2010-01-29 20:16:55", "license": "0", "title": "R1-19A", "text": "", "album_id": "72157623186393217", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4314646717_2bb5d55160_o.jpg", "secret": "f719b3b98b", "media": "photo", "latitude": "0", "id": "4314646717", "tags": ""}, {"datetaken": "2010-01-29 20:16:58", "license": "0", "title": "R1-20A", "text": "", "album_id": "72157623186393217", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4314646825_7c9b4150b8_o.jpg", "secret": "9cb0932a72", "media": "photo", "latitude": "0", "id": "4314646825", "tags": ""}, {"datetaken": "2010-01-29 20:17:04", "license": "0", "title": "R1-22A", "text": "", "album_id": "72157623186393217", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4315383190_cd889d23e9_o.jpg", "secret": "2ac3720372", "media": "photo", "latitude": "0", "id": "4315383190", "tags": ""}, {"datetaken": "2010-01-29 20:17:08", "license": "0", "title": "R1-24A", "text": "", "album_id": "72157623186393217", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4315383316_ae463d84dd_o.jpg", "secret": "5fe4d8f528", "media": "photo", "latitude": "0", "id": "4315383316", "tags": ""}, {"datetaken": "2010-01-29 20:17:13", "license": "0", "title": "R1- 1A", "text": "", "album_id": "72157623186393217", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4315383458_1df5655cf2_o.jpg", "secret": "30c49aea7a", "media": "photo", "latitude": "0", "id": "4315383458", "tags": ""}, {"datetaken": "2010-01-29 20:17:18", "license": "0", "title": "R1- 2A", "text": "", "album_id": "72157623186393217", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4315383576_1b997b7184_o.jpg", "secret": "98759e14b7", "media": "photo", "latitude": "0", "id": "4315383576", "tags": ""}, {"datetaken": "2010-01-29 20:17:24", "license": "0", "title": "R1- 3A", "text": "", "album_id": "72157623186393217", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4314647527_fc6d9f4ed6_o.jpg", "secret": "b868c88e5b", "media": "photo", "latitude": "0", "id": "4314647527", "tags": ""}, {"datetaken": "2010-01-29 20:17:27", "license": "0", "title": "R1- 4A", "text": "", "album_id": "72157623186393217", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4314647617_541f305c34_o.jpg", "secret": "820a774e6d", "media": "photo", "latitude": "0", "id": "4314647617", "tags": ""}, {"datetaken": "2010-01-29 20:17:32", "license": "0", "title": "R1- 5A", "text": "", "album_id": "72157623186393217", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4315383940_9d65835b00_o.jpg", "secret": "f8e5eacca7", "media": "photo", "latitude": "0", "id": "4315383940", "tags": ""}, {"datetaken": "2010-01-29 20:17:35", "license": "0", "title": "R1- 7A", "text": "", "album_id": "72157623186393217", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2719/4314647837_2bfd18a8d1_o.jpg", "secret": "a7b1b206a5", "media": "photo", "latitude": "0", "id": "4314647837", "tags": ""}, {"datetaken": "2010-01-29 20:17:39", "license": "0", "title": "R1- 8A", "text": "", "album_id": "72157623186393217", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4314647941_1a4e608863_o.jpg", "secret": "5b1bba6446", "media": "photo", "latitude": "0", "id": "4314647941", "tags": ""}, {"datetaken": "2010-01-29 20:17:44", "license": "0", "title": "R1- 9A", "text": "", "album_id": "72157623186393217", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2715/4315384260_cf5022435c_o.jpg", "secret": "d1057f6130", "media": "photo", "latitude": "0", "id": "4315384260", "tags": ""}, {"datetaken": "2010-02-19 13:15:36", "license": "3", "title": "MBHS_BRYAN_02-19-10_131536_01_039_4X6_web", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4377792275_b52d1ddb8c_o.jpg", "secret": "014d42c261", "media": "photo", "latitude": "0", "id": "4377792275", "tags": "school sports high hit nikon texas action slide catch pitch softball athlete broncos fastpitch throw bunt d300 compete strive mckinneyboyd"}, {"datetaken": "2010-02-19 13:19:43", "license": "3", "title": "MBHS_BRYAN_02-19-10_131943_051_4X6_web", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4378693162_36b222eacd_o.jpg", "secret": "51e9415cb2", "media": "photo", "latitude": "0", "id": "4378693162", "tags": "sports hit nikon texas action run highschool catch softball athlete fastpitch bunt steal mckinney d300 nikon70300mmf4556gedifafsvr boydemily"}, {"datetaken": "2010-02-19 13:19:52", "license": "3", "title": "MBHS_BRYAN_02-19-10_131952_052_4X6_web", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4378693384_fa64d57746_o.jpg", "secret": "f316df41de", "media": "photo", "latitude": "0", "id": "4378693384", "tags": "sports hit nikon texas action run highschool catch softball athlete fastpitch bunt steal mckinney d300 nikon70300mmf4556gedifafsvr"}, {"datetaken": "2010-02-19 13:23:33", "license": "3", "title": "MBHS_BRYAN_02-19-10_132333_02_058_4X6_web", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4378693662_3ccc82811a_o.jpg", "secret": "10cd09081b", "media": "photo", "latitude": "0", "id": "4378693662", "tags": "boydraven nikon d300 nikon70300mmf4556gedifafsvr fastpitch softball athlete hit run catch bunt steal highschool sports action mckinney texas"}, {"datetaken": "2010-02-19 14:12:08", "license": "3", "title": "MBHS_BRYAN_02-19-10_141208_01_252_5X7_web", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4377946031_59929c8200_o.jpg", "secret": "36941df426", "media": "photo", "latitude": "0", "id": "4377946031", "tags": "nikon d300 nikon70300mmf4556gedifafsvr fastpitch softball athlete hit run catch bunt steal highschool sports action mckinney texas"}, {"datetaken": "2010-02-19 16:22:40", "license": "3", "title": "Home Run Drive to CF", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4377948499_677a583798_o.jpg", "secret": "de297e4a9f", "media": "photo", "latitude": "0", "id": "4377948499", "tags": "sports hit nikon texas action run highschool catch softball capture athlete fastpitch bunt steal mckinney d300 nx2 nikon70300mmf4556gedifafsvr"}, {"datetaken": "2010-02-19 16:27:27", "license": "3", "title": "MBHS_BRYAN_02-19-10_162727_03_127_4X6_web", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4377950475_81ddcdecae_o.jpg", "secret": "a9bb6d7723", "media": "photo", "latitude": "0", "id": "4377950475", "tags": "sports hit nikon texas action run highschool catch softball athlete fastpitch bunt steal mckinney d300 nikon70300mmf4556gedifafsvr"}, {"datetaken": "2010-02-19 16:46:28", "license": "3", "title": "MBHS_BRYAN_02-19-10_164628_01_133_4X6_web", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4377951469_59158998c5_o.jpg", "secret": "d867fd6d11", "media": "photo", "latitude": "0", "id": "4377951469", "tags": "sports hit nikon texas action run highschool catch softball athlete fastpitch bunt steal mckinney d300 nikon70300mmf4556gedifafsvr boydraven"}, {"datetaken": "2010-02-19 16:56:07", "license": "3", "title": "MBHS_BRYAN_02-19-10_165607_02_138_4X6_web", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4378703560_508f23d6fb_o.jpg", "secret": "e82b5bdaf5", "media": "photo", "latitude": "0", "id": "4378703560", "tags": "sports field hit nikon texas action plate run highschool catch softball catcher athlete fastpitch throw bunt steal mckinney heave d300 nikon70300mmf4556gedifafsvr boydestrada"}, {"datetaken": "2010-02-20 08:19:48", "license": "3", "title": "MBHS_BRYAN_02-20-10_081950_01_299_8X10_web", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4377953241_e8fbd635de_o.jpg", "secret": "94c81646ca", "media": "photo", "latitude": "0", "id": "4377953241", "tags": "sports hit nikon texas action run highschool catch softball athlete fastpitch bunt steal mckinney d300 nikon70300mmf4556gedifafsvr mckinneyboydsoftball"}, {"datetaken": "2010-02-20 08:21:34", "license": "3", "title": "MBHS_BRYAN_02-20-10_082134_01_158_4X6_web", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/4378705184_71d5b237de_o.jpg", "secret": "533134f265", "media": "photo", "latitude": "0", "id": "4378705184", "tags": "sports hit nikon texas action run highschool catch softball athlete fastpitch bunt steal mckinney d300 nikon70300mmf4556gedifafsvr mckinneyboydsoftball"}, {"datetaken": "2010-02-20 08:26:42", "license": "3", "title": "MBHS_BRYAN_02-20-10_082642_01_168_4X6_web", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4377954159_68e99b3b10_o.jpg", "secret": "a9c25f4629", "media": "photo", "latitude": "0", "id": "4377954159", "tags": "sports hit nikon texas action run highschool catch softball athlete fastpitch bunt steal mckinney d300 nikon70300mmf4556gedifafsvr mckinneyboydsoftball"}, {"datetaken": "2010-02-20 09:03:51", "license": "3", "title": "MBHS_BRYAN_02-20-10_090352_198_4X6_web", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2703/4378709852_0e42c20f8a_o.jpg", "secret": "85e329f527", "media": "photo", "latitude": "0", "id": "4378709852", "tags": "mckinneyboydsoftball boydannie nikon d300 nikon70300mmf4556gedifafsvr fastpitch softball athlete hit run catch bunt steal highschool sports action mckinney texas"}, {"datetaken": "2010-02-20 09:03:57", "license": "3", "title": "MBHS_BRYAN_02-20-10_090400_201_4X6_web", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4378710298_2c05130d47_o.jpg", "secret": "24563cb9fe", "media": "photo", "latitude": "0", "id": "4378710298", "tags": "sports hit nikon texas action run highschool catch softball athlete fastpitch bunt steal mckinney d300 nikon70300mmf4556gedifafsvr mckinneyboydsoftball boydmaranda"}, {"datetaken": "2010-02-20 09:05:39", "license": "3", "title": "MBHS_BRYAN_02-20-10_090542_204_4X6_web", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4378710542_5712809eb2_o.jpg", "secret": "856a45a20b", "media": "photo", "latitude": "0", "id": "4378710542", "tags": "sports hit nikon texas action run highschool catch softball athlete fastpitch bunt steal mckinney d300 nikon70300mmf4556gedifafsvr mckinneyboydsoftball"}, {"datetaken": "2010-02-20 09:21:51", "license": "3", "title": "MBHS_BRYAN_02-20-10_092156_212_4X6_web", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4378712126_41bf503f1d_o.jpg", "secret": "c9fe6b0f87", "media": "photo", "latitude": "0", "id": "4378712126", "tags": "sports hit nikon texas action run highschool catch softball athlete fastpitch bunt steal mckinney d300 boydjenna nikon70300mmf4556gedifafsvr mckinneyboydsoftball"}, {"datetaken": "2010-02-20 09:24:41", "license": "3", "title": "MBHS_BRYAN_02-20-10_092440_215_4X6_web", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4378712342_0d8d937f1f_o.jpg", "secret": "c9027338ac", "media": "photo", "latitude": "0", "id": "4378712342", "tags": "sports hit nikon texas action run highschool catch softball athlete fastpitch bunt steal mckinney d300 nikon70300mmf4556gedifafsvr mckinneyboydsoftball"}, {"datetaken": "2010-02-20 09:30:43", "license": "3", "title": "MBHS_BRYAN_02-20-10_093044_284_5X7_web", "text": "", "album_id": "72157623359162097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4377960993_408c579bc6_o.jpg", "secret": "4d9457a1a1", "media": "photo", "latitude": "0", "id": "4377960993", "tags": "sports hit nikon texas action run highschool catch softball athlete fastpitch bunt steal mckinney d300 nikon70300mmf4556gedifafsvr mckinneyboydsoftball"}, {"datetaken": "2010-03-28 20:58:37", "license": "0", "title": "four and a half times around the fenceline is one mile", "text": "", "album_id": "72157623599428613", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4472103024_eb2abbce6c_o.jpg", "secret": "1b6be81494", "media": "photo", "latitude": "0", "id": "4472103024", "tags": "camping tractor classic ford yellow truck spring cabin picnic texas farm f100 crop rig 1968 trailer bobtail 68 f750 6772"}, {"datetaken": "2010-03-28 20:58:38", "license": "0", "title": "driving around the property with my nephew", "text": "", "album_id": "72157623599428613", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4472103094_f0fb82a570_o.jpg", "secret": "562d08b105", "media": "photo", "latitude": "0", "id": "4472103094", "tags": "camping tractor classic ford yellow truck spring cabin picnic texas farm f100 crop rig 1968 trailer bobtail 68 f750 6772"}, {"datetaken": "2010-03-28 20:58:39", "license": "0", "title": "yours truly grabbing the parking brake", "text": "", "album_id": "72157623599428613", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4472103164_be0170b691_o.jpg", "secret": "86646afd88", "media": "photo", "latitude": "0", "id": "4472103164", "tags": "camping tractor classic ford yellow truck spring cabin picnic texas farm f100 crop rig 1968 trailer bobtail 68 f750 6772"}, {"datetaken": "2010-03-28 20:58:41", "license": "0", "title": "sarah", "text": "", "album_id": "72157623599428613", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4472103244_441db3648e_o.jpg", "secret": "c10247633b", "media": "photo", "latitude": "0", "id": "4472103244", "tags": "camping tractor classic ford yellow truck spring cabin picnic texas farm f100 crop rig 1968 trailer bobtail 68 f750 6772"}, {"datetaken": "2010-03-28 20:58:43", "license": "0", "title": "this is me behind the wheel", "text": "", "album_id": "72157623599428613", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2682/4472103312_192293cf99_o.jpg", "secret": "e7a072108b", "media": "photo", "latitude": "0", "id": "4472103312", "tags": "camping tractor classic ford yellow truck spring cabin picnic texas farm f100 crop rig 1968 trailer bobtail 68 f750 6772"}, {"datetaken": "2010-03-28 20:58:45", "license": "0", "title": "f750 through the looking glass", "text": "", "album_id": "72157623599428613", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4471325311_2dccf5fb4d_o.jpg", "secret": "c8857078df", "media": "photo", "latitude": "0", "id": "4471325311", "tags": "camping tractor classic ford yellow truck spring cabin picnic texas farm f100 crop rig 1968 trailer bobtail 68 f750 6772"}, {"datetaken": "2010-03-28 20:58:46", "license": "0", "title": "jeff", "text": "", "album_id": "72157623599428613", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4472103498_a0448f868e_o.jpg", "secret": "43ae00db86", "media": "photo", "latitude": "0", "id": "4472103498", "tags": "camping tractor classic ford yellow truck spring cabin picnic texas farm f100 crop rig 1968 trailer bobtail 68 f750 6772"}, {"datetaken": "2010-03-28 20:58:48", "license": "0", "title": "dirtpile from gas pipeline work", "text": "", "album_id": "72157623599428613", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4472103614_c7d44d522f_o.jpg", "secret": "d5cd7b0045", "media": "photo", "latitude": "0", "id": "4472103614", "tags": "camping tractor classic ford yellow truck spring cabin picnic texas farm f100 crop rig 1968 trailer bobtail 68 f750 6772"}, {"datetaken": "2010-03-28 20:58:50", "license": "0", "title": "three amigos", "text": "", "album_id": "72157623599428613", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4472103696_bc2cdc5140_o.jpg", "secret": "3de2948e47", "media": "photo", "latitude": "0", "id": "4472103696", "tags": "camping tractor classic ford yellow truck spring cabin picnic texas farm f100 crop rig 1968 trailer bobtail 68 f750 6772"}, {"datetaken": "2010-03-28 20:58:51", "license": "0", "title": "truckin'", "text": "", "album_id": "72157623599428613", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4471325639_1a2c465646_o.jpg", "secret": "c493a25858", "media": "photo", "latitude": "0", "id": "4471325639", "tags": "camping tractor classic ford yellow truck spring cabin picnic texas farm f100 crop rig 1968 trailer bobtail 68 f750 6772"}, {"datetaken": "2010-03-28 20:58:53", "license": "0", "title": "looks good behind the wheel", "text": "", "album_id": "72157623599428613", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4472103866_c9caaae341_o.jpg", "secret": "a00ba0c1ab", "media": "photo", "latitude": "0", "id": "4472103866", "tags": "camping tractor classic ford yellow truck spring cabin picnic texas farm f100 crop rig 1968 trailer bobtail 68 f750 6772"}, {"datetaken": "2010-03-28 20:58:55", "license": "0", "title": "Larry and his .22", "text": "", "album_id": "72157623599428613", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4472103950_925da5afa1_o.jpg", "secret": "bcf26a2b78", "media": "photo", "latitude": "0", "id": "4472103950", "tags": "camping tractor classic ford yellow truck spring cabin picnic texas farm f100 crop rig 1968 trailer bobtail 68 f750 6772"}, {"datetaken": "2010-03-28 20:58:57", "license": "0", "title": "Jeff and I", "text": "", "album_id": "72157623599428613", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2701/4472104080_b0d153c2d5_o.jpg", "secret": "17fca85d36", "media": "photo", "latitude": "0", "id": "4472104080", "tags": "camping tractor classic ford yellow truck spring cabin picnic texas farm f100 crop rig 1968 trailer bobtail 68 f750 6772"}, {"datetaken": "2010-03-28 20:58:58", "license": "0", "title": "The sunset, the water tank and the f750.", "text": "", "album_id": "72157623599428613", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2768/4471325987_9ab278770b_o.jpg", "secret": "d8363b5c3c", "media": "photo", "latitude": "0", "id": "4471325987", "tags": "camping tractor classic ford yellow truck spring cabin picnic texas farm f100 crop rig 1968 trailer bobtail 68 f750 6772"}, {"datetaken": "2010-03-28 20:58:59", "license": "0", "title": "i shot this from at least 12 feet away ha!", "text": "", "album_id": "72157623599428613", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4471326043_d33937e387_o.jpg", "secret": "783c4af30c", "media": "photo", "latitude": "0", "id": "4471326043", "tags": "camping tractor classic ford yellow truck spring cabin picnic texas farm f100 crop rig 1968 trailer bobtail 68 f750 6772"}, {"datetaken": "2010-03-28 20:59:01", "license": "0", "title": "sean and the f750", "text": "", "album_id": "72157623599428613", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2720/4472104274_44042b1a56_o.jpg", "secret": "17240a23a3", "media": "photo", "latitude": "0", "id": "4472104274", "tags": "camping tractor classic ford yellow truck spring cabin picnic texas farm f100 crop rig 1968 trailer bobtail 68 f750 6772"}, {"datetaken": "2010-03-28 20:59:03", "license": "0", "title": "my cabin built from \"scraps\"", "text": "", "album_id": "72157623599428613", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4471326253_37092fb454_o.jpg", "secret": "5588519a6f", "media": "photo", "latitude": "0", "id": "4471326253", "tags": "camping tractor classic ford yellow truck spring cabin picnic texas farm f100 crop rig 1968 trailer bobtail 68 thecabin f750 6772"}, {"datetaken": "2010-08-14 08:58:09", "license": "0", "title": "8-15-10 big tree park 001", "text": "", "album_id": "72157624605142767", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4118/4893643895_343b471ecc_o.jpg", "secret": "4da1e3e04f", "media": "photo", "latitude": "0", "id": "4893643895", "tags": "81510bigtreepark"}, {"datetaken": "2010-08-14 09:14:14", "license": "0", "title": "8-15-10 big tree park 002", "text": "", "album_id": "72157624605142767", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4894238262_b0444e7184_o.jpg", "secret": "cc3dc0f209", "media": "photo", "latitude": "0", "id": "4894238262", "tags": "81510bigtreepark"}, {"datetaken": "2010-08-14 09:14:24", "license": "0", "title": "8-15-10 big tree park 003", "text": "", "album_id": "72157624605142767", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4894239594_65ef97a6b2_o.jpg", "secret": "53165089f3", "media": "photo", "latitude": "0", "id": "4894239594", "tags": "81510bigtreepark"}, {"datetaken": "2010-08-14 09:14:28", "license": "0", "title": "8-15-10 big tree park 004", "text": "", "album_id": "72157624605142767", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4894240946_9150c9c7c2_o.jpg", "secret": "c174974a85", "media": "photo", "latitude": "0", "id": "4894240946", "tags": "81510bigtreepark"}, {"datetaken": "2010-08-14 09:16:51", "license": "0", "title": "8-15-10 big tree park 005", "text": "", "album_id": "72157624605142767", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4893649125_ed30070e24_o.jpg", "secret": "093e1b795f", "media": "photo", "latitude": "0", "id": "4893649125", "tags": "81510bigtreepark"}, {"datetaken": "2010-08-14 09:47:42", "license": "0", "title": "8-15-10 big tree park 006", "text": "", "album_id": "72157624605142767", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4893650029_70d81fdd16_o.jpg", "secret": "ab31a1142f", "media": "photo", "latitude": "0", "id": "4893650029", "tags": "81510bigtreepark"}, {"datetaken": "2010-08-14 09:47:51", "license": "0", "title": "8-15-10 big tree park 007", "text": "", "album_id": "72157624605142767", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4893651671_c638d19cb3_o.jpg", "secret": "579f40746d", "media": "photo", "latitude": "0", "id": "4893651671", "tags": "81510bigtreepark"}, {"datetaken": "2010-08-14 09:48:00", "license": "0", "title": "8-15-10 big tree park 008", "text": "", "album_id": "72157624605142767", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4893653375_5f469cae56_o.jpg", "secret": "2cd989d7c8", "media": "photo", "latitude": "0", "id": "4893653375", "tags": "81510bigtreepark"}, {"datetaken": "2010-08-14 10:11:30", "license": "0", "title": "8-15-10 big tree park 009", "text": "", "album_id": "72157624605142767", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4894247086_20e5faf46c_o.jpg", "secret": "e934041165", "media": "photo", "latitude": "0", "id": "4894247086", "tags": "81510bigtreepark"}, {"datetaken": "2010-08-14 10:12:12", "license": "0", "title": "8-15-10 big tree park 010", "text": "", "album_id": "72157624605142767", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4893654513_1a2bd066f5_o.jpg", "secret": "368ed8278d", "media": "photo", "latitude": "0", "id": "4893654513", "tags": "81510bigtreepark"}, {"datetaken": "2010-08-14 10:12:24", "license": "0", "title": "8-15-10 big tree park 011", "text": "", "album_id": "72157624605142767", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4893654961_1829976e21_o.jpg", "secret": "4a5b65df8c", "media": "photo", "latitude": "0", "id": "4893654961", "tags": "81510bigtreepark"}, {"datetaken": "2010-08-14 10:21:49", "license": "0", "title": "8-15-10 big tree park 012", "text": "", "album_id": "72157624605142767", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4894249346_a8cda39a4c_o.jpg", "secret": "601118ceaf", "media": "photo", "latitude": "0", "id": "4894249346", "tags": "81510bigtreepark"}, {"datetaken": "2010-08-14 10:28:08", "license": "0", "title": "8-15-10 big tree park 013", "text": "", "album_id": "72157624605142767", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4894250114_ab38051457_o.jpg", "secret": "89aa9cba8f", "media": "photo", "latitude": "0", "id": "4894250114", "tags": "81510bigtreepark"}, {"datetaken": "2010-08-14 10:32:20", "license": "0", "title": "8-15-10 big tree park 014", "text": "", "album_id": "72157624605142767", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4893658691_78a1630382_o.jpg", "secret": "d7e6b6e153", "media": "photo", "latitude": "0", "id": "4893658691", "tags": "81510bigtreepark"}, {"datetaken": "2010-08-14 10:45:22", "license": "0", "title": "8-15-10 big tree park 015", "text": "", "album_id": "72157624605142767", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4893659495_7165892f96_o.jpg", "secret": "828c5b44df", "media": "photo", "latitude": "0", "id": "4893659495", "tags": "81510bigtreepark"}, {"datetaken": "2010-07-28 19:44:50", "license": "0", "title": "Toms \u00b2 little brother.|\u2022 lil Tom \u2022", "text": "", "album_id": "72157624622215754", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/4846585236_4bddd256b2_o.jpg", "secret": "9fb22a5bfe", "media": "photo", "latitude": "0", "id": "4846585236", "tags": "twins doll rare balljointeddoll tokiohotel tomkaulitz tomkaulitzdoll"}, {"datetaken": "2010-07-28 19:49:40", "license": "0", "title": "Toms \u00b2 little brother.|\u2022 lil Tom \u2022", "text": "", "album_id": "72157624622215754", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/4845967233_685a5a768b_o.jpg", "secret": "6730b3ea2d", "media": "photo", "latitude": "0", "id": "4845967233", "tags": "twins doll rare balljointeddoll tokiohotel tomkaulitz tomkaulitzdoll"}, {"datetaken": "2010-07-28 19:54:14", "license": "0", "title": "Toms \u00b2 little brother.|\u2022 lil Tom \u2022", "text": "", "album_id": "72157624622215754", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/4845968169_1261af13a1_o.jpg", "secret": "a3cd6612f4", "media": "photo", "latitude": "0", "id": "4845968169", "tags": "twins doll rare balljointeddoll tokiohotel tomkaulitz tomkaulitzdoll"}, {"datetaken": "2010-07-28 20:06:02", "license": "0", "title": "Toms \u00b2 little brother.|\u2022 lil Tom \u2022", "text": "", "album_id": "72157624622215754", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/4845969115_486d12bd59_o.jpg", "secret": "36e64fae69", "media": "photo", "latitude": "0", "id": "4845969115", "tags": "twins doll rare balljointeddoll tokiohotel tomkaulitz tomkaulitzdoll"}, {"datetaken": "2010-07-28 20:22:52", "license": "0", "title": "Toms \u00b2 little brother.|\u2022 lil Tom \u2022", "text": "", "album_id": "72157624622215754", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/4845970097_0602bfae4c_o.jpg", "secret": "4b4e0efa89", "media": "photo", "latitude": "0", "id": "4845970097", "tags": "twins doll rare balljointeddoll tokiohotel tomkaulitz tomkaulitzdoll"}, {"datetaken": "2010-07-28 20:27:23", "license": "0", "title": "Toms \u00b2 little brother.|\u2022 lil Tom \u2022", "text": "", "album_id": "72157624622215754", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/4845970993_e79fe73df5_o.jpg", "secret": "7c8334d4d5", "media": "photo", "latitude": "0", "id": "4845970993", "tags": "twins doll rare balljointeddoll tokiohotel tomkaulitz tomkaulitzdoll"}, {"datetaken": "2010-07-28 20:28:00", "license": "0", "title": "Toms \u00b2 little brother.|\u2022 lil Tom \u2022", "text": "", "album_id": "72157624622215754", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4133/4845971809_13b4ac4841_o.jpg", "secret": "ec92a0466e", "media": "photo", "latitude": "0", "id": "4845971809", "tags": "twins doll rare balljointeddoll tokiohotel tomkaulitz tomkaulitzdoll"}, {"datetaken": "2010-07-28 20:36:39", "license": "0", "title": "Toms \u00b2 little brother.|\u2022 lil Tom \u2022", "text": "", "album_id": "72157624622215754", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4845972765_b2753bd0cc_o.jpg", "secret": "6a54976df3", "media": "photo", "latitude": "0", "id": "4845972765", "tags": "twins doll rare balljointeddoll tokiohotel tomkaulitz tomkaulitzdoll"}, {"datetaken": "2010-07-28 20:39:38", "license": "0", "title": "Toms \u00b2 little brother.|\u2022 lil Tom \u2022", "text": "", "album_id": "72157624622215754", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/4846592912_85ee582cd5_o.jpg", "secret": "abeb458b26", "media": "photo", "latitude": "0", "id": "4846592912", "tags": "twins doll rare balljointeddoll tokiohotel tomkaulitz tomkaulitzdoll"}, {"datetaken": "2010-07-28 20:49:33", "license": "0", "title": "Toms \u00b2 little brother.|\u2022 lil Tom \u2022", "text": "", "album_id": "72157624622215754", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/4845974771_8f6aa1bb54_o.jpg", "secret": "001f80acc7", "media": "photo", "latitude": "0", "id": "4845974771", "tags": "twins doll rare balljointeddoll tokiohotel tomkaulitz tomkaulitzdoll"}, {"datetaken": "2010-07-28 20:49:57", "license": "0", "title": "Toms \u00b2 little brother.|\u2022 lil Tom \u2022", "text": "", "album_id": "72157624622215754", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/4845975377_533cb1ccc3_o.jpg", "secret": "a77385d351", "media": "photo", "latitude": "0", "id": "4845975377", "tags": "twins doll rare balljointeddoll tokiohotel tomkaulitz tomkaulitzdoll"}, {"datetaken": "2010-08-05 20:39:09", "license": "0", "title": "Students and Teachers", "text": "", "album_id": "72157624897656365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4149/5019660074_0c25dc51ba_o.jpg", "secret": "cb632e7ce3", "media": "photo", "latitude": "0", "id": "5019660074", "tags": ""}, {"datetaken": "2010-08-05 21:01:31", "license": "0", "title": "Tah-Lay = Sea", "text": "", "album_id": "72157624897656365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/5019670044_606fdb5235_o.jpg", "secret": "71d63c585e", "media": "photo", "latitude": "0", "id": "5019670044", "tags": ""}, {"datetaken": "2010-08-06 01:33:26", "license": "0", "title": "Mangrove Madness", "text": "", "album_id": "72157624897656365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4149/5019672366_1ea8d6a2f4_o.jpg", "secret": "0db4148c51", "media": "photo", "latitude": "0", "id": "5019672366", "tags": ""}, {"datetaken": "2010-08-06 01:39:23", "license": "0", "title": "Sunglasses Rescue", "text": "", "album_id": "72157624897656365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/5019069875_b7129a9c26_o.jpg", "secret": "02fc2f3b0b", "media": "photo", "latitude": "0", "id": "5019069875", "tags": ""}, {"datetaken": "2010-08-06 02:27:31", "license": "0", "title": "Party Bus!", "text": "", "album_id": "72157624897656365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4154/5019070933_9e587c1157_o.jpg", "secret": "0ff5fe19b2", "media": "photo", "latitude": "0", "id": "5019070933", "tags": ""}, {"datetaken": "2010-08-06 04:20:50", "license": "0", "title": "Thai Boats", "text": "", "album_id": "72157624897656365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4088/5019677164_473756d2b4_o.jpg", "secret": "9b732802d3", "media": "photo", "latitude": "0", "id": "5019677164", "tags": ""}, {"datetaken": "2010-08-06 04:32:07", "license": "0", "title": "Ordeen", "text": "", "album_id": "72157624897656365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4126/5019074247_7fc4a2c63f_o.jpg", "secret": "cc68a59c3a", "media": "photo", "latitude": "0", "id": "5019074247", "tags": ""}, {"datetaken": "2010-08-06 19:00:59", "license": "0", "title": "Dawn on the Sea", "text": "", "album_id": "72157624897656365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4130/5019680104_7e1358e755_o.jpg", "secret": "995e8c9d93", "media": "photo", "latitude": "0", "id": "5019680104", "tags": ""}, {"datetaken": "2010-08-06 20:19:14", "license": "0", "title": "The Resort", "text": "", "album_id": "72157624897656365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/5019077097_9061f09882_o.jpg", "secret": "b7ef50594e", "media": "photo", "latitude": "0", "id": "5019077097", "tags": ""}, {"datetaken": "2010-08-06 20:24:16", "license": "0", "title": "What is allowed on the Party Bus:", "text": "", "album_id": "72157624897656365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4107/5019683122_65d1ac45e7_o.jpg", "secret": "faa65f0508", "media": "photo", "latitude": "0", "id": "5019683122", "tags": ""}, {"datetaken": "2010-08-06 20:46:43", "license": "0", "title": "The Resort Sign", "text": "", "album_id": "72157624897656365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/5019685594_9dd5ace9f6_o.jpg", "secret": "999860a3d0", "media": "photo", "latitude": "0", "id": "5019685594", "tags": ""}, {"datetaken": "2010-08-06 23:24:29", "license": "0", "title": "Plearnwan", "text": "", "album_id": "72157624897656365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/5019687468_b48093b882_o.jpg", "secret": "0e28b5c264", "media": "photo", "latitude": "0", "id": "5019687468", "tags": ""}, {"datetaken": "2010-08-06 23:41:33", "license": "0", "title": "Of all the things to make me think of home...", "text": "", "album_id": "72157624897656365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/5019689420_3f78abdcaa_o.jpg", "secret": "300b7d2a22", "media": "photo", "latitude": "0", "id": "5019689420", "tags": ""}, {"datetaken": "2010-08-07 00:31:48", "license": "0", "title": "I am the next fountain model!", "text": "", "album_id": "72157624897656365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4083/5019086713_7b0aa1decc_o.jpg", "secret": "2c97544f6f", "media": "photo", "latitude": "0", "id": "5019086713", "tags": ""}, {"datetaken": "2010-08-07 00:47:12", "license": "0", "title": "Chillin' in the shrubbery", "text": "", "album_id": "72157624897656365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4085/5019693676_b38b945e77_o.jpg", "secret": "f833c2f662", "media": "photo", "latitude": "0", "id": "5019693676", "tags": ""}, {"datetaken": "2010-08-07 00:55:50", "license": "0", "title": "Talk about a beach palace", "text": "", "album_id": "72157624897656365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/5019104201_3b34f48cc6_o.jpg", "secret": "49fd3692ec", "media": "photo", "latitude": "0", "id": "5019104201", "tags": ""}, {"datetaken": "2010-08-07 04:28:43", "license": "0", "title": "Floating Market", "text": "", "album_id": "72157624897656365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4133/5019105693_7c1ee4a178_o.jpg", "secret": "fd4db76ff2", "media": "photo", "latitude": "0", "id": "5019105693", "tags": ""}, {"datetaken": "2010-09-19 12:01:37", "license": "0", "title": "Beads", "text": "", "album_id": "72157625014375302", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/5012962957_521dd3f213_o.jpg", "secret": "aace9e8f6d", "media": "photo", "latitude": "0", "id": "5012962957", "tags": "nationalzoo hispanicheritagemonth fiestamusical"}, {"datetaken": "2010-09-19 12:01:45", "license": "0", "title": "festival 873", "text": "", "album_id": "72157625014375302", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4088/5012963003_33eb565f48_o.jpg", "secret": "a9123a222c", "media": "photo", "latitude": "0", "id": "5012963003", "tags": "nationalzoo hispanicheritagemonth fiestamusical"}, {"datetaken": "2010-09-19 12:03:26", "license": "0", "title": "festival 874", "text": "", "album_id": "72157625014375302", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4085/5012963069_e12533008f_o.jpg", "secret": "4df7c86816", "media": "photo", "latitude": "0", "id": "5012963069", "tags": "nationalzoo hispanicheritagemonth fiestamusical"}, {"datetaken": "2010-09-19 12:03:35", "license": "0", "title": "festival 875", "text": "", "album_id": "72157625014375302", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/5013568792_c58ba9c65d_o.jpg", "secret": "4a830a96aa", "media": "photo", "latitude": "0", "id": "5013568792", "tags": "nationalzoo hispanicheritagemonth fiestamusical"}, {"datetaken": "2010-09-19 12:04:33", "license": "0", "title": "festival 876", "text": "", "album_id": "72157625014375302", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/5012963199_9093ef2602_o.jpg", "secret": "d6d600216a", "media": "photo", "latitude": "0", "id": "5012963199", "tags": "nationalzoo hispanicheritagemonth fiestamusical"}, {"datetaken": "2010-09-19 12:05:02", "license": "0", "title": "festival 877", "text": "", "album_id": "72157625014375302", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4106/5013568922_0a1f7639d9_o.jpg", "secret": "ac433acec5", "media": "photo", "latitude": "0", "id": "5013568922", "tags": "nationalzoo hispanicheritagemonth fiestamusical"}, {"datetaken": "2010-09-19 12:17:01", "license": "0", "title": "festival 878", "text": "", "album_id": "72157625014375302", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/5012963315_18174cc0e3_o.jpg", "secret": "7c4febcefa", "media": "photo", "latitude": "0", "id": "5012963315", "tags": "nationalzoo hispanicheritagemonth fiestamusical"}, {"datetaken": "2010-09-19 12:17:04", "license": "0", "title": "festival 879", "text": "", "album_id": "72157625014375302", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/5013569044_3af7235bcc_o.jpg", "secret": "6c8b09fbc1", "media": "photo", "latitude": "0", "id": "5013569044", "tags": "nationalzoo hispanicheritagemonth fiestamusical"}, {"datetaken": "2010-09-19 12:17:31", "license": "0", "title": "festival 880", "text": "", "album_id": "72157625014375302", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4113/5013569112_dac1bbcf8d_o.jpg", "secret": "9e3f1538d6", "media": "photo", "latitude": "0", "id": "5013569112", "tags": "nationalzoo hispanicheritagemonth fiestamusical"}, {"datetaken": "2010-09-19 12:22:55", "license": "0", "title": "festival 881", "text": "", "album_id": "72157625014375302", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/5012963499_cc4b397de1_o.jpg", "secret": "978d496087", "media": "photo", "latitude": "0", "id": "5012963499", "tags": "nationalzoo hispanicheritagemonth fiestamusical"}, {"datetaken": "2010-09-19 12:23:03", "license": "0", "title": "festival 882", "text": "", "album_id": "72157625014375302", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/5012963549_c330cf805c_o.jpg", "secret": "985837d0be", "media": "photo", "latitude": "0", "id": "5012963549", "tags": "nationalzoo hispanicheritagemonth fiestamusical"}, {"datetaken": "2010-09-19 12:30:48", "license": "0", "title": "Batala Pride", "text": "", "album_id": "72157625014375302", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/5013569312_985b5e7759_o.jpg", "secret": "a8a192a962", "media": "photo", "latitude": "0", "id": "5013569312", "tags": "nationalzoo hispanicheritagemonth fiestamusical"}, {"datetaken": "2010-09-19 12:31:22", "license": "0", "title": "festival 884", "text": "", "album_id": "72157625014375302", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4149/5012963669_05386e5c6b_o.jpg", "secret": "04d615f056", "media": "photo", "latitude": "0", "id": "5012963669", "tags": "nationalzoo hispanicheritagemonth fiestamusical"}, {"datetaken": "2010-09-19 12:40:32", "license": "0", "title": "festival 885", "text": "", "album_id": "72157625014375302", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/5012963719_1e6e29a64f_o.jpg", "secret": "2b09e84b60", "media": "photo", "latitude": "0", "id": "5012963719", "tags": "nationalzoo hispanicheritagemonth fiestamusical"}, {"datetaken": "2010-07-30 16:08:38", "license": "0", "title": "Our campsite", "text": "", "album_id": "72157625054604693", "longitude": "-74.410014", "url_o": "https://farm5.staticflickr.com/4084/5088464530_af44ea388f_o.jpg", "secret": "7375810f84", "media": "photo", "latitude": "45.562681", "id": "5088464530", "tags": "camping puppy rion voyageur voyageurprovincialpark"}, {"datetaken": "2010-07-30 16:08:46", "license": "0", "title": "O HAI", "text": "", "album_id": "72157625054604693", "longitude": "-74.410014", "url_o": "https://farm5.staticflickr.com/4087/5088463758_5dc6843bda_o.jpg", "secret": "68ccb3d11f", "media": "photo", "latitude": "45.562681", "id": "5088463758", "tags": "camping puppy rion voyageur voyageurprovincialpark"}, {"datetaken": "2010-07-30 16:09:31", "license": "0", "title": "Our campsite", "text": "", "album_id": "72157625054604693", "longitude": "-74.410014", "url_o": "https://farm5.staticflickr.com/4131/5087864947_33b91a38c7_o.jpg", "secret": "ef288f8a24", "media": "photo", "latitude": "45.562681", "id": "5087864947", "tags": "camping voyageur voyageurprovincialpark"}, {"datetaken": "2010-07-30 16:09:39", "license": "0", "title": "Our campsite", "text": "", "album_id": "72157625054604693", "longitude": "-74.410014", "url_o": "https://farm5.staticflickr.com/4149/5088462292_407677c3c5_o.jpg", "secret": "71e123b3c7", "media": "photo", "latitude": "45.562681", "id": "5088462292", "tags": "camping voyageur voyageurprovincialpark"}, {"datetaken": "2010-07-30 16:10:12", "license": "0", "title": "Our campsite", "text": "", "album_id": "72157625054604693", "longitude": "-74.410014", "url_o": "https://farm5.staticflickr.com/4152/5088461488_4a48746933_o.jpg", "secret": "d0969c5b7e", "media": "photo", "latitude": "45.562681", "id": "5088461488", "tags": "camping me puppy julie rion voyageur voyageurprovincialpark"}, {"datetaken": "2010-07-30 17:13:49", "license": "0", "title": "Rion", "text": "", "album_id": "72157625054604693", "longitude": "-74.410014", "url_o": "https://farm5.staticflickr.com/4129/5087862673_b6e8ffa845_o.jpg", "secret": "fd2c3d40da", "media": "photo", "latitude": "45.562681", "id": "5087862673", "tags": "camping puppy rion voyageur voyageurprovincialpark"}, {"datetaken": "2010-07-30 19:17:10", "license": "0", "title": "Relaxing by the fire", "text": "", "album_id": "72157625054604693", "longitude": "-74.410014", "url_o": "https://farm5.staticflickr.com/4129/5088460150_02a0a79fdd_o.jpg", "secret": "351fa4e38b", "media": "photo", "latitude": "45.562681", "id": "5088460150", "tags": "camping puppy randal rion voyageur voyageurprovincialpark"}, {"datetaken": "2010-07-31 10:02:10", "license": "0", "title": "Breakfast", "text": "", "album_id": "72157625054604693", "longitude": "-74.410014", "url_o": "https://farm5.staticflickr.com/4111/5087861639_4afa3e25a5_o.jpg", "secret": "cabfe6308b", "media": "photo", "latitude": "45.562681", "id": "5087861639", "tags": "camping food voyageur voyageurprovincialpark"}, {"datetaken": "2010-07-31 12:23:21", "license": "0", "title": "Scary forest", "text": "", "album_id": "72157625054604693", "longitude": "-74.410014", "url_o": "https://farm5.staticflickr.com/4149/5087861111_144d8666b0_o.jpg", "secret": "aa996dc39d", "media": "photo", "latitude": "45.562681", "id": "5087861111", "tags": "camping voyageur voyageurprovincialpark"}, {"datetaken": "2010-07-31 12:23:33", "license": "0", "title": "Scary forest", "text": "", "album_id": "72157625054604693", "longitude": "-74.410014", "url_o": "https://farm5.staticflickr.com/4149/5087860463_1815a539e1_o.jpg", "secret": "85a736a577", "media": "photo", "latitude": "45.562681", "id": "5087860463", "tags": "camping voyageur voyageurprovincialpark"}, {"datetaken": "2010-07-31 12:23:40", "license": "0", "title": "Scary forest", "text": "", "album_id": "72157625054604693", "longitude": "-74.410014", "url_o": "https://farm5.staticflickr.com/4133/5087859761_4822f43331_o.jpg", "secret": "fde4658121", "media": "photo", "latitude": "45.562681", "id": "5087859761", "tags": "camping voyageur voyageurprovincialpark"}, {"datetaken": "2010-07-31 12:23:57", "license": "0", "title": "Scary forest", "text": "", "album_id": "72157625054604693", "longitude": "-74.410014", "url_o": "https://farm5.staticflickr.com/4084/5088457208_ef7cd01142_o.jpg", "secret": "022d13746e", "media": "photo", "latitude": "45.562681", "id": "5088457208", "tags": "camping voyageur voyageurprovincialpark"}, {"datetaken": "2010-07-31 12:24:13", "license": "0", "title": "Scary forest", "text": "", "album_id": "72157625054604693", "longitude": "-74.410014", "url_o": "https://farm5.staticflickr.com/4112/5088456508_ee0e42bfa4_o.jpg", "secret": "7b9e4ece63", "media": "photo", "latitude": "45.562681", "id": "5088456508", "tags": "camping voyageur voyageurprovincialpark"}, {"datetaken": "2010-07-31 12:24:34", "license": "0", "title": "Scary forest", "text": "", "album_id": "72157625054604693", "longitude": "-74.410014", "url_o": "https://farm5.staticflickr.com/4144/5088455850_50c79676ae_o.jpg", "secret": "f0c49e6e60", "media": "photo", "latitude": "45.562681", "id": "5088455850", "tags": "camping voyageur voyageurprovincialpark"}, {"datetaken": "2010-07-31 12:24:50", "license": "0", "title": "Scary forest", "text": "", "album_id": "72157625054604693", "longitude": "-74.410014", "url_o": "https://farm5.staticflickr.com/4144/5088455100_d0e165a306_o.jpg", "secret": "1f25b78ae8", "media": "photo", "latitude": "45.562681", "id": "5088455100", "tags": "camping voyageur voyageurprovincialpark"}, {"datetaken": "2010-07-31 14:33:46", "license": "0", "title": "Odd sign", "text": "", "album_id": "72157625054604693", "longitude": "-74.606566", "url_o": "https://farm5.staticflickr.com/4151/5087856507_ed2c6793b5_o.jpg", "secret": "3ffd2391f0", "media": "photo", "latitude": "45.607763", "id": "5087856507", "tags": "camping signs sign voyageur voyageurprovincialpark"}, {"datetaken": "2010-07-31 19:19:06", "license": "0", "title": "Rion", "text": "", "album_id": "72157625054604693", "longitude": "-74.410014", "url_o": "https://farm5.staticflickr.com/4153/5087855955_20015572ff_o.jpg", "secret": "6a1da43aee", "media": "photo", "latitude": "45.562681", "id": "5087855955", "tags": "camping puppy rion voyageur voyageurprovincialpark"}, {"datetaken": "2010-07-31 19:19:32", "license": "0", "title": "Camping", "text": "", "album_id": "72157625054604693", "longitude": "-74.410014", "url_o": "https://farm5.staticflickr.com/4110/5088453626_e41af1b2ed_o.jpg", "secret": "19c6f32c9f", "media": "photo", "latitude": "45.562681", "id": "5088453626", "tags": "camping me julie voyageur voyageurprovincialpark"}, {"datetaken": "2010-10-15 04:35:31", "license": "0", "title": "", "text": "", "album_id": "72157625217544357", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1227/5159494260_a658c790d5_o.jpg", "secret": "5f436dd2da", "media": "photo", "latitude": "0", "id": "5159494260", "tags": ""}, {"datetaken": "2010-10-16 04:36:15", "license": "0", "title": "", "text": "", "album_id": "72157625217544357", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/5159494604_c555ee1508_o.jpg", "secret": "a42e8fa788", "media": "photo", "latitude": "0", "id": "5159494604", "tags": ""}, {"datetaken": "2010-10-16 04:36:18", "license": "0", "title": "", "text": "", "album_id": "72157625217544357", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/5158887881_d356160cf2_o.jpg", "secret": "3b9c95c21d", "media": "photo", "latitude": "0", "id": "5158887881", "tags": ""}, {"datetaken": "2010-10-16 04:36:47", "license": "0", "title": "", "text": "", "album_id": "72157625217544357", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/5158888921_1e18a292ea_o.jpg", "secret": "e8f078ab11", "media": "photo", "latitude": "0", "id": "5158888921", "tags": ""}, {"datetaken": "2010-10-16 05:15:51", "license": "0", "title": "", "text": "", "album_id": "72157625217544357", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/5158890041_1f93196065_o.jpg", "secret": "13bbe76501", "media": "photo", "latitude": "0", "id": "5158890041", "tags": ""}, {"datetaken": "2010-10-16 05:36:19", "license": "0", "title": "", "text": "", "album_id": "72157625217544357", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/5159498616_ceeaac4140_o.jpg", "secret": "9da6b696a5", "media": "photo", "latitude": "0", "id": "5159498616", "tags": ""}, {"datetaken": "2010-10-16 05:36:29", "license": "0", "title": "", "text": "", "album_id": "72157625217544357", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/5158891829_6aafce1ca4_o.jpg", "secret": "ec27b70aa4", "media": "photo", "latitude": "0", "id": "5158891829", "tags": ""}, {"datetaken": "2010-10-16 05:40:32", "license": "0", "title": "", "text": "", "album_id": "72157625217544357", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1260/5158892731_727bd25afc_o.jpg", "secret": "8e2d06d6a5", "media": "photo", "latitude": "0", "id": "5158892731", "tags": ""}, {"datetaken": "2010-10-16 05:42:58", "license": "0", "title": "", "text": "", "album_id": "72157625217544357", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/5158893953_b4f82da11b_o.jpg", "secret": "4f73af9c43", "media": "photo", "latitude": "0", "id": "5158893953", "tags": ""}, {"datetaken": "2010-10-16 06:08:11", "license": "0", "title": "", "text": "", "album_id": "72157625217544357", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/5158895469_881be9d93a_o.jpg", "secret": "303c52c229", "media": "photo", "latitude": "0", "id": "5158895469", "tags": ""}, {"datetaken": "2010-10-16 06:08:30", "license": "0", "title": "", "text": "", "album_id": "72157625217544357", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1412/5159504012_7f95760d7c_o.jpg", "secret": "3558edcf06", "media": "photo", "latitude": "0", "id": "5159504012", "tags": ""}, {"datetaken": "2010-10-16 06:16:16", "license": "0", "title": "", "text": "", "album_id": "72157625217544357", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/5158896753_66cfee368f_o.jpg", "secret": "a51dd707e7", "media": "photo", "latitude": "0", "id": "5158896753", "tags": ""}, {"datetaken": "2010-10-16 06:21:37", "license": "0", "title": "", "text": "", "album_id": "72157625217544357", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1255/5159505944_e11d5954cc_o.jpg", "secret": "6db4d5d182", "media": "photo", "latitude": "0", "id": "5159505944", "tags": ""}, {"datetaken": "2010-10-16 06:25:18", "license": "0", "title": "", "text": "", "album_id": "72157625217544357", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1111/5159507092_c0b72ba01b_o.jpg", "secret": "3c1ca0da4a", "media": "photo", "latitude": "0", "id": "5159507092", "tags": ""}, {"datetaken": "2010-10-16 06:51:06", "license": "0", "title": "", "text": "", "album_id": "72157625217544357", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/5158900373_d10a618823_o.jpg", "secret": "2f05e650cd", "media": "photo", "latitude": "0", "id": "5158900373", "tags": ""}, {"datetaken": "2011-03-08 15:24:50", "license": "0", "title": "Greasbrough, Wentworth Park and Greasbrough Dam", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5255/5510507478_0ea5d21439_o.jpg", "secret": "8a2e1d5c52", "media": "photo", "latitude": "0", "id": "5510507478", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-03-08 15:31:16", "license": "0", "title": "Greasbrough, Wentworth Park and Greasbrough Dam", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5211/5510506784_fb487fb1d0_o.jpg", "secret": "ab0bc9c842", "media": "photo", "latitude": "0", "id": "5510506784", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-03-08 15:31:33", "license": "0", "title": "Greasbrough, Wentworth Park and Greasbrough Dam", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5293/5510506134_253a93032a_o.jpg", "secret": "88932a7894", "media": "photo", "latitude": "0", "id": "5510506134", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-03-08 15:37:16", "license": "0", "title": "Greasbrough, Wentworth Park and Greasbrough Dam", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5251/5510505738_90eff8d700_o.jpg", "secret": "ac751c3907", "media": "photo", "latitude": "0", "id": "5510505738", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-03-08 15:39:06", "license": "0", "title": "Greasbrough, Wentworth Park and Greasbrough Dam", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5133/5509904003_975e34114f_o.jpg", "secret": "20f9d71137", "media": "photo", "latitude": "0", "id": "5509904003", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-03-08 15:44:49", "license": "0", "title": "Greasbrough, Wentworth Park and Greasbrough Dam", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5100/5509903517_4af6578d66_o.jpg", "secret": "a286eca758", "media": "photo", "latitude": "0", "id": "5509903517", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-03-08 15:51:00", "license": "0", "title": "Greasbrough, Wentworth Park and Greasbrough Dam", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5058/5509902853_d674f33004_o.jpg", "secret": "2875df38d4", "media": "photo", "latitude": "0", "id": "5509902853", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-03-08 15:57:22", "license": "0", "title": "Greasbrough, Wentworth Park and Greasbrough Dam", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5013/5509902283_af4cb1d0cf_o.jpg", "secret": "dc53f63150", "media": "photo", "latitude": "0", "id": "5509902283", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-03-08 15:58:39", "license": "0", "title": "Greasbrough, Wentworth Park and Greasbrough Dam", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5171/5509901829_c35295c265_o.jpg", "secret": "59ac4b16dc", "media": "photo", "latitude": "0", "id": "5509901829", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-03-08 16:02:24", "license": "0", "title": "Greasbrough, Wentworth Park and Greasbrough Dam", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5014/5510502666_a2cb7169e2_o.jpg", "secret": "101dae56cb", "media": "photo", "latitude": "0", "id": "5510502666", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-03-08 16:07:30", "license": "0", "title": "Greasbrough, Wentworth Park and Greasbrough Dam", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5510501764_a49a6997cb_o.jpg", "secret": "e94c2fffc8", "media": "photo", "latitude": "0", "id": "5510501764", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-03-08 16:15:54", "license": "0", "title": "Greasbrough, Wentworth Park and Greasbrough Dam", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5174/5509899687_d9cb06b4f1_o.jpg", "secret": "576affc1c3", "media": "photo", "latitude": "0", "id": "5509899687", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-03-08 16:16:00", "license": "0", "title": "Greasbrough, Wentworth Park and Greasbrough Dam", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5257/5510500884_43230e3cc7_o.jpg", "secret": "eb2858d84e", "media": "photo", "latitude": "0", "id": "5510500884", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-03-08 16:16:39", "license": "0", "title": "Greasbrough, Wentworth Park and Greasbrough Dam", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5255/5510500510_3955482a44_o.jpg", "secret": "5387d6d7e5", "media": "photo", "latitude": "0", "id": "5510500510", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-03-08 16:16:49", "license": "0", "title": "Greasbrough, Wentworth Park and Greasbrough Dam", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5138/5509898523_19ecf0bc10_o.jpg", "secret": "58c0231ec0", "media": "photo", "latitude": "0", "id": "5509898523", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-03-08 16:21:19", "license": "0", "title": "Greasbrough", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5175/5510499054_e2998af33f_o.jpg", "secret": "3d14d5f721", "media": "photo", "latitude": "0", "id": "5510499054", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-03-08 16:25:37", "license": "0", "title": "Yellow Lion, Greasbrough", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5055/5509897289_43575c5b29_o.jpg", "secret": "3061729382", "media": "photo", "latitude": "0", "id": "5509897289", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-03-08 16:29:53", "license": "0", "title": "Yellow Lion, Greasbrough", "text": "", "album_id": "72157626225931816", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5260/5509896733_e1f1bda675_o.jpg", "secret": "66e17f19b9", "media": "photo", "latitude": "0", "id": "5509896733", "tags": "rotherham wentworthpark greasbrough greasbroughdam"}, {"datetaken": "2011-04-16 18:03:11", "license": "3", "title": "Bunny", "text": "", "album_id": "72157626395315207", "longitude": "-122.411711", "url_o": "https://farm6.staticflickr.com/5107/5629428764_8ffca79736_o.jpg", "secret": "7d6e2108e5", "media": "photo", "latitude": "37.778489", "id": "5629428764", "tags": "stella dinner menu table wine cosentino foragesf"}, {"datetaken": "2011-04-16 18:05:59", "license": "3", "title": "ForageSF Spring Dinner", "text": "", "album_id": "72157626395315207", "longitude": "-122.411711", "url_o": "https://farm6.staticflickr.com/5070/5628850613_8bac6edaeb_o.jpg", "secret": "7765eb6be0", "media": "photo", "latitude": "37.778489", "id": "5628850613", "tags": "dinner menu foragesf"}, {"datetaken": "2011-04-16 18:11:55", "license": "3", "title": "Dinner + Bath Tub", "text": "", "album_id": "72157626395315207", "longitude": "-122.411711", "url_o": "https://farm6.staticflickr.com/5069/5629432566_0505fe8bff_o.jpg", "secret": "6c184d4000", "media": "photo", "latitude": "37.778489", "id": "5629432566", "tags": "stella dinner mirror phil bathtub foragesf"}, {"datetaken": "2011-04-16 18:26:26", "license": "3", "title": "The Table", "text": "", "album_id": "72157626395315207", "longitude": "-122.411711", "url_o": "https://farm6.staticflickr.com/5221/5629434440_65e3f7c3a8_o.jpg", "secret": "ae3d50bb2a", "media": "photo", "latitude": "37.778489", "id": "5629434440", "tags": "dinner foragesf"}, {"datetaken": "2011-04-16 18:33:00", "license": "3", "title": "Herring Caviar Blini", "text": "", "album_id": "72157626395315207", "longitude": "-122.411711", "url_o": "https://farm6.staticflickr.com/5227/5628856551_dec3e24bf7_o.jpg", "secret": "ae8ac390d7", "media": "photo", "latitude": "37.778489", "id": "5628856551", "tags": "food dinner caviar blini foragesf"}, {"datetaken": "2011-04-16 18:39:29", "license": "3", "title": "Wild Boar Pistou", "text": "", "album_id": "72157626395315207", "longitude": "-122.411711", "url_o": "https://farm6.staticflickr.com/5304/5628858343_506919fbec_o.jpg", "secret": "8e7bddb712", "media": "photo", "latitude": "37.778489", "id": "5628858343", "tags": "food dinner pork boar pistou foragesf"}, {"datetaken": "2011-04-16 19:09:05", "license": "3", "title": "Wild Nettle Soup", "text": "", "album_id": "72157626395315207", "longitude": "-122.411711", "url_o": "https://farm6.staticflickr.com/5270/5629440578_2d898ca4b4_o.jpg", "secret": "54811bab08", "media": "photo", "latitude": "37.778489", "id": "5629440578", "tags": "food dinner soup bowl foragesf"}, {"datetaken": "2011-04-16 19:37:34", "license": "3", "title": "Fried Night Smelt", "text": "", "album_id": "72157626395315207", "longitude": "-122.411711", "url_o": "https://farm6.staticflickr.com/5268/5628862683_7120f945d0_o.jpg", "secret": "bdd8636fee", "media": "photo", "latitude": "37.778489", "id": "5628862683", "tags": "food fish dinner fried smelt foragesf"}, {"datetaken": "2011-04-16 19:55:44", "license": "3", "title": "Bunny with Rabbit", "text": "", "album_id": "72157626395315207", "longitude": "-122.411711", "url_o": "https://farm6.staticflickr.com/5189/5629444792_bb47db3845_o.jpg", "secret": "637a80b034", "media": "photo", "latitude": "37.778489", "id": "5629444792", "tags": "stella food rabbit dinner foragesf"}, {"datetaken": "2011-04-16 20:03:10", "license": "3", "title": "Mushroom Braised Rabbit", "text": "", "album_id": "72157626395315207", "longitude": "-122.411711", "url_o": "https://farm6.staticflickr.com/5104/5629447160_b3fa3557f8_o.jpg", "secret": "9518b0922b", "media": "photo", "latitude": "37.778489", "id": "5629447160", "tags": "food rabbit dinner potatoes foragesf"}, {"datetaken": "2011-04-16 20:25:29", "license": "3", "title": "Halibut, Fiddleheads, Polenta", "text": "", "album_id": "72157626395315207", "longitude": "-122.411711", "url_o": "https://farm6.staticflickr.com/5101/5629449410_3dc32e6b44_o.jpg", "secret": "3cd4fb6084", "media": "photo", "latitude": "37.778489", "id": "5629449410", "tags": "food fish fern dinner fiddlehead polenta halibut foragesf"}, {"datetaken": "2011-04-16 21:06:56", "license": "3", "title": "Miners Lettuce Salad", "text": "", "album_id": "72157626395315207", "longitude": "-122.411711", "url_o": "https://farm6.staticflickr.com/5028/5629451824_c146e0a73b_o.jpg", "secret": "260ca34c7a", "media": "photo", "latitude": "37.778489", "id": "5629451824", "tags": "flowers food dinner salad lettuce beets miners raddish foragesf"}, {"datetaken": "2011-04-16 21:39:29", "license": "3", "title": "Goat Cheese Trifle", "text": "", "album_id": "72157626395315207", "longitude": "-122.411711", "url_o": "https://farm6.staticflickr.com/5025/5628874095_9dc600306d_o.jpg", "secret": "483d029149", "media": "photo", "latitude": "37.778489", "id": "5628874095", "tags": "food cheese dinner dessert trifle huckleberry foragesf"}, {"datetaken": "2011-04-05 00:07:03", "license": "0", "title": "Snow White And The 7 Dwarfs. Or My Mum With The Mayor Of Bath (Seated Central, 'The Good Fairy') Receiving Dad's 'Gong' For 50 Years Service.", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5110/5590008911_99930d8023_o.jpg", "secret": "548d779319", "media": "photo", "latitude": "0", "id": "5590008911", "tags": "cross manufacturing"}, {"datetaken": "2011-04-05 16:59:59", "license": "0", "title": "This was a party celebrating 50 years of service to engineering", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5097/5592067083_313b2c6cc5_o.jpg", "secret": "9b404d6060", "media": "photo", "latitude": "0", "id": "5592067083", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-04-05 17:00:50", "license": "0", "title": "Celebrating 50 years of service to engineering we we all kindly invited to the Guild Hall by the Mayor", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5091/5592661662_40f6d40f12_o.jpg", "secret": "6be1838806", "media": "photo", "latitude": "0", "id": "5592661662", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-04-05 17:01:51", "license": "0", "title": "Mum, The Mayor & Michael Cross", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5592071461_7266e30186_o.jpg", "secret": "d84ac6c7ba", "media": "photo", "latitude": "0", "id": "5592071461", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-04-05 17:02:51", "license": "0", "title": "The Cross Gang All Assembled In The Guild Hall With The Mayor", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5177/5592666404_ae1d956298_o.jpg", "secret": "0bbd2efcc7", "media": "photo", "latitude": "0", "id": "5592666404", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-04-05 17:04:05", "license": "0", "title": "The Cross Gang All Assembled In The Guild Hall With The Mayor", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5095/5592076765_5195a56df2_o.jpg", "secret": "b90969c3ed", "media": "photo", "latitude": "0", "id": "5592076765", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-04-05 17:05:17", "license": "0", "title": "The Cross Gang All Assembled In The Guild Hall With The Mayor", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5092/5592079725_91669c9a18_o.jpg", "secret": "d23401c735", "media": "photo", "latitude": "0", "id": "5592079725", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-04-05 17:06:31", "license": "0", "title": "This was a party celebrating 50 years of service to engineering", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5309/5592082593_2b3fab30bd_o.jpg", "secret": "722f8e3ed8", "media": "photo", "latitude": "0", "id": "5592082593", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-04-05 17:07:32", "license": "0", "title": "Michael Cross, the CEO ofThe Cross Gang All Assembled In The Guild Hall With The Mayor", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5183/5592677602_43e2433d87_o.jpg", "secret": "37e97b2d44", "media": "photo", "latitude": "0", "id": "5592677602", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-04-05 17:10:08", "license": "0", "title": "My Brother And Mum And A Bath Chronicle Journalist", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5178/5592091399_536e4c92db_o.jpg", "secret": "f218617ccf", "media": "photo", "latitude": "0", "id": "5592091399", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-04-05 17:10:52", "license": "0", "title": "The Cross Gang All Assembled In The Guild Hall With The Mayor", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5171/5592685704_37be653b07_o.jpg", "secret": "9e9a5d4320", "media": "photo", "latitude": "0", "id": "5592685704", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-04-05 17:11:30", "license": "0", "title": "My Mum Revieving A Long Service Medal On Dad's Behalf", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5230/5592687094_b602e8d810_o.jpg", "secret": "348ec00b0e", "media": "photo", "latitude": "0", "id": "5592687094", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-04-05 17:12:23", "license": "0", "title": "Michael Cross, The MD of Cross Manufacturing and The Mayor", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5177/5592689160_412fc2261c_o.jpg", "secret": "c88a57ccd9", "media": "photo", "latitude": "0", "id": "5592689160", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-04-05 17:13:24", "license": "0", "title": "Michael Cross, the CEO of Cross Manufacturing and The Mayor", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5266/5592691520_c05351f24e_o.jpg", "secret": "e141530c8c", "media": "photo", "latitude": "0", "id": "5592691520", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-04-05 17:14:20", "license": "0", "title": "Michael Cross, the CEO of Cross Manufacturing and The Mayor", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5093/5592693638_1b1d474afb_o.jpg", "secret": "a26d1df987", "media": "photo", "latitude": "0", "id": "5592693638", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-04-05 17:14:55", "license": "0", "title": "This was a party celebrating 50 years of service to engineering", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5144/5592102721_c2a175277b_o.jpg", "secret": "1e3d34ab56", "media": "photo", "latitude": "0", "id": "5592102721", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-04-05 17:15:28", "license": "0", "title": "This was a party celebrating 50 years of service to engineering", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5188/5592696490_f2b560804d_o.jpg", "secret": "2352699491", "media": "photo", "latitude": "0", "id": "5592696490", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-04-05 17:16:13", "license": "0", "title": "This was a party for Cross Manufacuring celebrating 50 years of service to engineering", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5268/5592698196_9d70f47e2b_o.jpg", "secret": "75ba196d91", "media": "photo", "latitude": "0", "id": "5592698196", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-04-05 17:19:59", "license": "0", "title": "This was a party celebrating 50 years of service to engineering", "text": "", "album_id": "72157626435910098", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5226/5592115801_8425c0746c_o.jpg", "secret": "987c7b4e9d", "media": "photo", "latitude": "0", "id": "5592115801", "tags": "hall bath cross mayor engineering guild manufacturing"}, {"datetaken": "2011-07-17 00:23:10", "license": "0", "title": "Right Behind Home Plate!", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6006/5949358788_5d95f0c46e_o.jpg", "secret": "31a8569c96", "media": "photo", "latitude": "0", "id": "5949358788", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-07-17 00:50:24", "license": "0", "title": "Mass of Mascots", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6012/5949359032_3b96df4b71_o.jpg", "secret": "883bc250e0", "media": "photo", "latitude": "0", "id": "5949359032", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-07-17 00:51:54", "license": "0", "title": "Saying Hello", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6133/5949360006_fd3990a6dc_o.jpg", "secret": "153e9c7d13", "media": "photo", "latitude": "0", "id": "5949360006", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-07-17 00:58:12", "license": "0", "title": "Mojo - From the Sacramento Mountain Lions and Me!", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6135/5949360376_3e1627d00c_o.jpg", "secret": "fc9dca9391", "media": "photo", "latitude": "0", "id": "5949360376", "tags": "ca baseball sacramento mojo minorleague rivercats sacramentorivercats raleysfield sacramentomountainlions"}, {"datetaken": "2011-07-17 01:59:31", "license": "0", "title": "Scooter the Spare the Air Dog and US!", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6024/5948805493_e0e02dd6d9_o.jpg", "secret": "eb3e771b33", "media": "photo", "latitude": "0", "id": "5948805493", "tags": "ca dog baseball air scooter sacramento spare minorleague rivercats sparetheair sacramentorivercats raleysfield sccoterthesparetheairdog"}, {"datetaken": "2011-07-17 03:13:59", "license": "0", "title": "IMG_3621.jpg", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6020/5949361476_207c49ed24_o.jpg", "secret": "0da4affcec", "media": "photo", "latitude": "0", "id": "5949361476", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-07-17 03:14:43", "license": "0", "title": "Field", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6136/5949362258_fc586aa395_o.jpg", "secret": "1c3d83cc06", "media": "photo", "latitude": "0", "id": "5949362258", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-07-17 03:15:05", "license": "0", "title": "Batter Up", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6125/5948807017_032f90dab8_o.jpg", "secret": "c79c9b7696", "media": "photo", "latitude": "0", "id": "5948807017", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-07-17 03:16:32", "license": "0", "title": "Ready.", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6150/5948807959_f5de149366_o.jpg", "secret": "45a3cdfb4b", "media": "photo", "latitude": "0", "id": "5948807959", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-07-17 03:17:25", "license": "0", "title": "SWING!", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6139/5949364224_96710c452b_o.jpg", "secret": "1a1a95d030", "media": "photo", "latitude": "0", "id": "5949364224", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-07-17 03:19:11", "license": "0", "title": "Fourth Row!", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6147/5949364930_1df3749af8_o.jpg", "secret": "2533ab23f9", "media": "photo", "latitude": "0", "id": "5949364930", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-07-17 03:19:30", "license": "0", "title": "Chris", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6007/5949365278_23aab4dde5_o.jpg", "secret": "3af1e36cab", "media": "photo", "latitude": "0", "id": "5949365278", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-07-17 03:21:32", "license": "0", "title": "Pitch", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6141/5949365902_6bdd6ab6d7_o.jpg", "secret": "2897ace6a2", "media": "photo", "latitude": "0", "id": "5949365902", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-07-17 03:45:10", "license": "0", "title": "Dinger and Me!", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6135/5949366312_79f4f00d65_o.jpg", "secret": "6da363eb77", "media": "photo", "latitude": "0", "id": "5949366312", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-07-17 04:00:41", "license": "0", "title": "Dinger", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6144/5948811089_53f0f0fb42_o.jpg", "secret": "9609f2cdaf", "media": "photo", "latitude": "0", "id": "5948811089", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-07-17 04:00:57", "license": "0", "title": "Dinger", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6130/5949366860_2c6d400182_o.jpg", "secret": "c7fef01622", "media": "photo", "latitude": "0", "id": "5949366860", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-07-17 04:03:07", "license": "0", "title": "Tied!", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6133/5949367158_5da4f00350_o.jpg", "secret": "6009181b96", "media": "photo", "latitude": "0", "id": "5949367158", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-07-17 04:14:09", "license": "0", "title": "Home Run! And WE WIN!", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6150/5948812035_4ff01eaa14_o.jpg", "secret": "93d5273658", "media": "photo", "latitude": "0", "id": "5948812035", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-07-17 04:14:13", "license": "0", "title": "YAY!", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6017/5948812375_9b2ac27bf0_o.jpg", "secret": "caf0d930d8", "media": "photo", "latitude": "0", "id": "5948812375", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-07-17 04:14:18", "license": "0", "title": "Good Job Boys", "text": "", "album_id": "72157627095995795", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6136/5948812711_2ac2cc2174_o.jpg", "secret": "d66a6080c3", "media": "photo", "latitude": "0", "id": "5948812711", "tags": "ca baseball sacramento minorleague rivercats sacramentorivercats raleysfield"}, {"datetaken": "2011-06-30 21:12:02", "license": "0", "title": "Chi5Star", "text": "", "album_id": "72157627315889932", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6141/5990557061_e6ddba660e_o.jpg", "secret": "89dd05e0b3", "media": "photo", "latitude": "0", "id": "5990557061", "tags": "chicago navypier sculpturesstatues"}, {"datetaken": "2011-06-30 21:20:12", "license": "0", "title": "Ferris Wheel", "text": "", "album_id": "72157627315889932", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6144/5991114764_3d5292afec_o.jpg", "secret": "eacda3a058", "media": "photo", "latitude": "0", "id": "5991114764", "tags": "chicago navypier"}, {"datetaken": "2011-06-30 21:27:58", "license": "0", "title": "skyline", "text": "", "album_id": "72157627315889932", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6128/5991115064_98e36b726b_o.jpg", "secret": "cbed0ac26a", "media": "photo", "latitude": "0", "id": "5991115064", "tags": "chicago"}, {"datetaken": "2011-07-01 16:15:21", "license": "0", "title": "Chi5Star-4", "text": "", "album_id": "72157627315889932", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6134/5991115304_1e62952d81_o.jpg", "secret": "aa8d724f50", "media": "photo", "latitude": "0", "id": "5991115304", "tags": "chicago"}, {"datetaken": "2011-07-01 16:20:52", "license": "0", "title": "The World is in the Palm of Her Hands; She Will Crush You!", "text": "", "album_id": "72157627315889932", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6020/5991115588_0185f7f832_o.jpg", "secret": "5f3bd1f904", "media": "photo", "latitude": "0", "id": "5991115588", "tags": "chicago"}, {"datetaken": "2011-07-01 16:26:49", "license": "0", "title": "fisheye2", "text": "", "album_id": "72157627315889932", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6024/5991115884_d93ecf27fa_o.jpg", "secret": "800d268e3f", "media": "photo", "latitude": "0", "id": "5991115884", "tags": "chicago"}, {"datetaken": "2011-07-01 16:28:14", "license": "0", "title": "fisheye", "text": "", "album_id": "72157627315889932", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6028/5990558851_dc232d2f35_o.jpg", "secret": "8b7b179df0", "media": "photo", "latitude": "0", "id": "5990558851", "tags": "chicago"}, {"datetaken": "2011-07-01 16:31:14", "license": "0", "title": "Sky Flowers", "text": "", "album_id": "72157627315889932", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6022/5991116414_b26fabf138_o.jpg", "secret": "e8667f7d71", "media": "photo", "latitude": "0", "id": "5991116414", "tags": "chicago"}, {"datetaken": "2011-07-01 16:32:10", "license": "0", "title": "In-A-Gadda-Da-Chicago", "text": "", "album_id": "72157627315889932", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6020/5990559615_3772d407a1_o.jpg", "secret": "58b01f0bb4", "media": "photo", "latitude": "0", "id": "5990559615", "tags": "chicago"}, {"datetaken": "2011-07-01 17:09:09", "license": "0", "title": "Sisters of the Great Lakes", "text": "", "album_id": "72157627315889932", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6144/5990559889_586098b6e0_o.jpg", "secret": "7a4a41dc50", "media": "photo", "latitude": "0", "id": "5990559889", "tags": "chicago"}, {"datetaken": "2011-07-01 17:35:35", "license": "0", "title": "Love&Marriage", "text": "", "album_id": "72157627315889932", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6146/5991117344_0d392af15f_o.jpg", "secret": "4ba79bc993", "media": "photo", "latitude": "0", "id": "5991117344", "tags": "chicago"}, {"datetaken": "2011-08-23 21:22:05", "license": "0", "title": "Monday's walk", "text": "", "album_id": "72157627505772422", "longitude": "-122.502622", "url_o": "https://farm7.staticflickr.com/6068/6075631914_d8eb2fd5d1_o.png", "secret": "547ceb14d2", "media": "photo", "latitude": "37.789302", "id": "6075631914", "tags": ""}, {"datetaken": "2011-08-23 21:33:36", "license": "0", "title": "14:40:29", "text": "", "album_id": "72157627505772422", "longitude": "-122.477720", "url_o": "https://farm7.staticflickr.com/6183/6075116773_4c2b878ac8_o.jpg", "secret": "993c649728", "media": "photo", "latitude": "37.812996", "id": "6075116773", "tags": ""}, {"datetaken": "2011-08-23 21:35:39", "license": "0", "title": "14:50:14", "text": "", "album_id": "72157627505772422", "longitude": "-122.477114", "url_o": "https://farm7.staticflickr.com/6184/6075120937_0299214ab4_o.jpg", "secret": "0563ac79a5", "media": "photo", "latitude": "37.804596", "id": "6075120937", "tags": ""}, {"datetaken": "2011-08-23 21:35:41", "license": "0", "title": "15:04:52", "text": "", "album_id": "72157627505772422", "longitude": "-122.477393", "url_o": "https://farm7.staticflickr.com/6182/6075659168_32a0d186b2_o.jpg", "secret": "a6e33dd1c1", "media": "photo", "latitude": "37.801569", "id": "6075659168", "tags": ""}, {"datetaken": "2011-08-23 21:39:40", "license": "0", "title": "15:06:54", "text": "", "album_id": "72157627505772422", "longitude": "-122.481717", "url_o": "https://farm7.staticflickr.com/6070/6075666938_611cb0eb0f_o.jpg", "secret": "287a7a9d0f", "media": "photo", "latitude": "37.794622", "id": "6075666938", "tags": ""}, {"datetaken": "2011-08-23 21:39:42", "license": "0", "title": "15:07:20", "text": "", "album_id": "72157627505772422", "longitude": "-122.480966", "url_o": "https://farm7.staticflickr.com/6065/6075667016_3e72435f24_o.jpg", "secret": "27ddf0a9c5", "media": "photo", "latitude": "37.794397", "id": "6075667016", "tags": ""}, {"datetaken": "2011-08-23 21:42:47", "license": "2", "title": "15:44:26", "text": "", "album_id": "72157627505772422", "longitude": "-122.482565", "url_o": "https://farm7.staticflickr.com/6086/6075673104_f04582e4ea_o.jpg", "secret": "8ee17d3bb9", "media": "photo", "latitude": "37.788806", "id": "6075673104", "tags": ""}, {"datetaken": "2011-08-23 21:42:48", "license": "0", "title": "16:02:48", "text": "", "album_id": "72157627505772422", "longitude": "-122.494044", "url_o": "https://farm7.staticflickr.com/6072/6075134865_2be3b1269e_o.jpg", "secret": "bc216c94f6", "media": "photo", "latitude": "37.786385", "id": "6075134865", "tags": ""}, {"datetaken": "2011-08-23 21:43:55", "license": "0", "title": "16:05:02", "text": "", "album_id": "72157627505772422", "longitude": "-122.505610", "url_o": "https://farm7.staticflickr.com/6189/6075675310_f8a963540d_o.jpg", "secret": "e1a76f2b13", "media": "photo", "latitude": "37.787873", "id": "6075675310", "tags": ""}, {"datetaken": "2011-08-23 21:43:56", "license": "0", "title": "16:42:32", "text": "", "album_id": "72157627505772422", "longitude": "-122.513903", "url_o": "https://farm7.staticflickr.com/6185/6075137207_298e79e828_o.jpg", "secret": "07b0554359", "media": "photo", "latitude": "37.780034", "id": "6075137207", "tags": ""}, {"datetaken": "2011-08-23 21:45:52", "license": "0", "title": "16:43:48", "text": "", "album_id": "72157627505772422", "longitude": "-122.513657", "url_o": "https://farm7.staticflickr.com/6207/6075679046_492db799b1_o.jpg", "secret": "17329d8615", "media": "photo", "latitude": "37.779055", "id": "6075679046", "tags": ""}, {"datetaken": "2011-08-23 21:45:53", "license": "0", "title": "16:49:43", "text": "", "album_id": "72157627505772422", "longitude": "-122.514011", "url_o": "https://farm7.staticflickr.com/6201/6075679068_d24389ac4b_o.jpg", "secret": "53d413496c", "media": "photo", "latitude": "37.778559", "id": "6075679068", "tags": ""}, {"datetaken": "2011-08-23 21:52:07", "license": "0", "title": "16:50:35", "text": "", "album_id": "72157627505772422", "longitude": "-122.513775", "url_o": "https://farm7.staticflickr.com/6079/6075691416_c568e50012_o.jpg", "secret": "30e582c802", "media": "photo", "latitude": "37.778308", "id": "6075691416", "tags": ""}, {"datetaken": "2011-08-23 21:52:07", "license": "0", "title": "16:58:08", "text": "", "album_id": "72157627505772422", "longitude": "-122.511908", "url_o": "https://farm7.staticflickr.com/6190/6075153499_3acb45b469_o.jpg", "secret": "279e3f539c", "media": "photo", "latitude": "37.776015", "id": "6075153499", "tags": ""}, {"datetaken": "2011-08-23 21:55:11", "license": "0", "title": "17:04:26", "text": "", "album_id": "72157627505772422", "longitude": "-122.509344", "url_o": "https://farm7.staticflickr.com/6181/6075159471_20aa0492b2_o.jpg", "secret": "c2ee83fe69", "media": "photo", "latitude": "37.770426", "id": "6075159471", "tags": ""}, {"datetaken": "2011-08-23 21:55:13", "license": "0", "title": "20.01.13", "text": "", "album_id": "72157627505772422", "longitude": "-122.386075", "url_o": "https://farm7.staticflickr.com/6061/6075159511_8b001eea37_o.jpg", "secret": "98e3e12859", "media": "photo", "latitude": "37.790497", "id": "6075159511", "tags": ""}, {"datetaken": "2011-08-23 21:57:46", "license": "0", "title": "20:01:22", "text": "", "album_id": "72157627505772422", "longitude": "-122.389985", "url_o": "https://farm7.staticflickr.com/6071/6075164585_f6610a2f11_o.jpg", "secret": "0dfd6c393b", "media": "photo", "latitude": "37.791591", "id": "6075164585", "tags": ""}, {"datetaken": "2011-08-23 21:57:49", "license": "0", "title": "After hiking.", "text": "", "album_id": "72157627505772422", "longitude": "-122.423105", "url_o": "https://farm7.staticflickr.com/6075/6075164717_b293536128_o.jpg", "secret": "e2b24b0900", "media": "photo", "latitude": "37.772427", "id": "6075164717", "tags": ""}, {"datetaken": "2010-07-17 09:28:58", "license": "0", "title": "Christina, Lasse & Frede", "text": "", "album_id": "72157628097425285", "longitude": "12.522494", "url_o": "https://farm7.staticflickr.com/6219/6383524351_033b1ab837_o.jpg", "secret": "3bfa3679ba", "media": "photo", "latitude": "55.671730", "id": "6383524351", "tags": "copenhagen zoo christina familie have lasse k\u00f8benhavn frede zoologisk zoologiskhave zoologi"}, {"datetaken": "2010-07-17 10:02:28", "license": "0", "title": "I zoologisk have med Christina, Lasse & Frede", "text": "", "album_id": "72157628097425285", "longitude": "12.522494", "url_o": "https://farm7.staticflickr.com/6237/6383539361_5ec76ba8fb_o.jpg", "secret": "1f571b78f4", "media": "photo", "latitude": "55.671730", "id": "6383539361", "tags": "bus copenhagen zoo familie have k\u00f8benhavn stof zoologisk zoologiskhave s\u00e6de zoologi"}, {"datetaken": "2010-07-17 10:15:50", "license": "0", "title": "I zoologisk have med Christina, Lasse & Frede", "text": "", "album_id": "72157628097425285", "longitude": "12.522494", "url_o": "https://farm7.staticflickr.com/6232/6383542995_d6abfcfa6f_o.jpg", "secret": "846f765f58", "media": "photo", "latitude": "55.671730", "id": "6383542995", "tags": "copenhagen zoo familie have k\u00f8benhavn t\u00e5rn zoologisk zoologiskhave zoologi"}, {"datetaken": "2010-07-17 10:36:22", "license": "0", "title": "I zoologisk have med Christina, Lasse & Frede", "text": "", "album_id": "72157628097425285", "longitude": "12.522494", "url_o": "https://farm7.staticflickr.com/6050/6383544847_93e24e2d9a_o.jpg", "secret": "5884d0d4ce", "media": "photo", "latitude": "55.671730", "id": "6383544847", "tags": "copenhagen zoo familie have k\u00f8benhavn pingvin zoologisk zoologiskhave zoologi"}, {"datetaken": "2010-07-17 10:37:26", "license": "0", "title": "I zoologisk have med Christina, Lasse & Frede", "text": "", "album_id": "72157628097425285", "longitude": "12.522494", "url_o": "https://farm7.staticflickr.com/6104/6383547491_b6c29aba12_o.jpg", "secret": "0987239696", "media": "photo", "latitude": "55.671730", "id": "6383547491", "tags": "copenhagen zoo familie have k\u00f8benhavn pingvin zoologisk zoologiskhave zoologi"}, {"datetaken": "2010-07-17 10:55:00", "license": "0", "title": "Christina", "text": "", "album_id": "72157628097425285", "longitude": "12.522494", "url_o": "https://farm7.staticflickr.com/6053/6383550041_090b4f15a8_o.jpg", "secret": "f1421843c3", "media": "photo", "latitude": "55.671730", "id": "6383550041", "tags": "copenhagen zoo christina familie have k\u00f8benhavn zoologisk zoologiskhave zoologi"}, {"datetaken": "2010-07-17 10:59:57", "license": "0", "title": "I zoologisk have med Christina, Lasse & Frede", "text": "", "album_id": "72157628097425285", "longitude": "12.522494", "url_o": "https://farm7.staticflickr.com/6119/6383552119_c3dde05edf_o.jpg", "secret": "a2db7f0657", "media": "photo", "latitude": "55.671730", "id": "6383552119", "tags": "copenhagen zoo christina familie have k\u00f8benhavn zoologisk zoologiskhave zoologi"}, {"datetaken": "2010-07-17 11:28:48", "license": "0", "title": "I zoologisk have med Christina, Lasse & Frede", "text": "", "album_id": "72157628097425285", "longitude": "12.522494", "url_o": "https://farm7.staticflickr.com/6099/6383554577_3c2a2d97c2_o.jpg", "secret": "293170fac5", "media": "photo", "latitude": "55.671730", "id": "6383554577", "tags": "copenhagen zoo familie have k\u00f8benhavn isbj\u00f8rn zoologisk zoologiskhave zoologi"}, {"datetaken": "2010-07-17 11:32:35", "license": "0", "title": "I zoologisk have med Christina, Lasse & Frede", "text": "", "album_id": "72157628097425285", "longitude": "12.522494", "url_o": "https://farm7.staticflickr.com/6224/6383557149_396c089028_o.jpg", "secret": "4f4fedb556", "media": "photo", "latitude": "55.671730", "id": "6383557149", "tags": "copenhagen zoo familie have lasse k\u00f8benhavn isbj\u00f8rn zoologisk zoologiskhave zoologi"}, {"datetaken": "2010-07-17 11:33:09", "license": "0", "title": "I zoologisk have med Christina, Lasse & Frede", "text": "", "album_id": "72157628097425285", "longitude": "12.522494", "url_o": "https://farm7.staticflickr.com/6037/6383557947_f9f1eaa877_o.jpg", "secret": "caf8c606ba", "media": "photo", "latitude": "55.671730", "id": "6383557947", "tags": "copenhagen zoo familie have k\u00f8benhavn isbj\u00f8rn zoologisk zoologiskhave zoologi"}, {"datetaken": "2010-07-17 12:03:37", "license": "0", "title": "God lillebror", "text": "", "album_id": "72157628097425285", "longitude": "12.522494", "url_o": "https://farm7.staticflickr.com/6031/6383559753_2ba0db3f56_o.jpg", "secret": "ec4a3d37c9", "media": "photo", "latitude": "55.671730", "id": "6383559753", "tags": "copenhagen zoo christina familie have lasse k\u00f8benhavn frede zoologisk zoologiskhave zoologi"}, {"datetaken": "2010-07-17 12:28:29", "license": "0", "title": "Hullet sommerfugl", "text": "", "album_id": "72157628097425285", "longitude": "12.522494", "url_o": "https://farm7.staticflickr.com/6049/6383561793_927ab783af_o.jpg", "secret": "fccd222beb", "media": "photo", "latitude": "55.671730", "id": "6383561793", "tags": "copenhagen zoo familie have k\u00f8benhavn sommerfugl zoologisk zoologiskhave zoologi"}, {"datetaken": "2010-07-17 12:33:00", "license": "0", "title": "Hullet sommerfugl", "text": "", "album_id": "72157628097425285", "longitude": "12.522494", "url_o": "https://farm7.staticflickr.com/6214/6383565497_fd58c9fac5_o.jpg", "secret": "dd9b987ce5", "media": "photo", "latitude": "55.671730", "id": "6383565497", "tags": "copenhagen zoo familie have k\u00f8benhavn sommerfugl zoologisk zoologiskhave zoologi"}, {"datetaken": "2010-07-17 12:56:19", "license": "0", "title": "Mig, Christina & Frede", "text": "", "album_id": "72157628097425285", "longitude": "12.522494", "url_o": "https://farm7.staticflickr.com/6214/6383568673_715951395c_o.jpg", "secret": "4774596430", "media": "photo", "latitude": "55.671730", "id": "6383568673", "tags": "copenhagen zoo christina familie have k\u00f8benhavn frede zoologisk zoologiskhave zoologi"}, {"datetaken": "2010-07-17 13:02:07", "license": "0", "title": "Day 362/365 [17.07.10]", "text": "", "album_id": "72157628097425285", "longitude": "12.522494", "url_o": "https://farm7.staticflickr.com/6220/6383570567_8c702dccf9_o.jpg", "secret": "a778b0e9b3", "media": "photo", "latitude": "55.671730", "id": "6383570567", "tags": "family face copenhagen zoo hole familie deer have 365 k\u00f8benhavn ansigt faceinhole hul hjort zoologisk zoologiskhave 365days zoologi"}, {"datetaken": "2011-12-31 10:09:19", "license": "4", "title": "Church St", "text": "", "album_id": "72157628661122851", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7034/6611594571_f2519754cc_o.jpg", "secret": "9d188a6479", "media": "photo", "latitude": "0", "id": "6611594571", "tags": "road trees"}, {"datetaken": "2011-12-31 10:12:19", "license": "4", "title": "The Big House", "text": "", "album_id": "72157628661122851", "longitude": "0.911688", "url_o": "https://farm8.staticflickr.com/7013/6611600505_bd21055cd4_o.jpg", "secret": "dffb15f0fa", "media": "photo", "latitude": "51.963271", "id": "6611600505", "tags": "trees house clives"}, {"datetaken": "2011-12-31 10:12:50", "license": "4", "title": "Old Gate", "text": "", "album_id": "72157628661122851", "longitude": "0.911923", "url_o": "https://farm8.staticflickr.com/7173/6611611509_549f783ac2_o.jpg", "secret": "fccec5b97d", "media": "photo", "latitude": "51.963311", "id": "6611611509", "tags": "trees grass gate"}, {"datetaken": "2011-12-31 14:29:35", "license": "4", "title": "Album Cover", "text": "", "album_id": "72157628661122851", "longitude": "0.910066", "url_o": "https://farm8.staticflickr.com/7142/6611619631_43c6c733d6_o.jpg", "secret": "b21eda7107", "media": "photo", "latitude": "51.962856", "id": "6611619631", "tags": "butch davidhunt williamalexander markr bentrethowan kevinmurrell"}, {"datetaken": "2011-12-31 14:37:21", "license": "4", "title": "Boxted", "text": "", "album_id": "72157628661122851", "longitude": "0.915166", "url_o": "https://farm8.staticflickr.com/7003/6611629527_a4f6a229f9_o.jpg", "secret": "0b0b70eb8f", "media": "photo", "latitude": "51.964201", "id": "6611629527", "tags": ""}, {"datetaken": "2011-12-31 14:40:04", "license": "4", "title": "David", "text": "", "album_id": "72157628661122851", "longitude": "0.915881", "url_o": "https://farm8.staticflickr.com/7005/6611632987_d93533aef4_o.jpg", "secret": "77abf392d0", "media": "photo", "latitude": "51.965201", "id": "6611632987", "tags": "davidhunt"}, {"datetaken": "2011-12-31 14:52:32", "license": "4", "title": "Very old gate", "text": "", "album_id": "72157628661122851", "longitude": "0.913223", "url_o": "https://farm8.staticflickr.com/7142/6611639839_f99d48836f_o.jpg", "secret": "cde8f8a160", "media": "photo", "latitude": "51.963548", "id": "6611639839", "tags": "grass gate"}, {"datetaken": "2011-12-31 14:59:08", "license": "4", "title": "Mark and Me", "text": "", "album_id": "72157628661122851", "longitude": "0.910404", "url_o": "https://farm8.staticflickr.com/7155/6611655419_d48f97056f_o.jpg", "secret": "a4f4c28816", "media": "photo", "latitude": "51.962844", "id": "6611655419", "tags": "trees markr steveparker"}, {"datetaken": "2012-01-01 14:09:04", "license": "4", "title": "Lovely House", "text": "", "album_id": "72157628661122851", "longitude": "0.894329", "url_o": "https://farm8.staticflickr.com/7028/6614915933_04ee0cc8ed_o.jpg", "secret": "26d373726b", "media": "photo", "latitude": "51.989791", "id": "6614915933", "tags": "house stokebynayland"}, {"datetaken": "2012-01-01 14:09:45", "license": "4", "title": "Cottages", "text": "", "album_id": "72157628661122851", "longitude": "0.894536", "url_o": "https://farm8.staticflickr.com/7152/6614920397_8a02d482f2_o.jpg", "secret": "7e36e553de", "media": "photo", "latitude": "51.989699", "id": "6614920397", "tags": "cottages stokebynayland"}, {"datetaken": "2012-01-01 14:09:55", "license": "4", "title": "The Angel", "text": "", "album_id": "72157628661122851", "longitude": "0.894596", "url_o": "https://farm8.staticflickr.com/7023/6614929871_7edf869b23_o.jpg", "secret": "91a9e9805e", "media": "photo", "latitude": "51.989631", "id": "6614929871", "tags": "pub stokebynayland theangelinn"}, {"datetaken": "2012-01-01 14:15:21", "license": "4", "title": "Mark and Kevin", "text": "", "album_id": "72157628661122851", "longitude": "0.892933", "url_o": "https://farm8.staticflickr.com/7016/6614936767_41e1ac1c1d_o.jpg", "secret": "56bfa19132", "media": "photo", "latitude": "51.989871", "id": "6614936767", "tags": "pub markr stokebynayland theangelinn kevinmurrell"}, {"datetaken": "2012-01-01 14:16:41", "license": "4", "title": "William and David", "text": "", "album_id": "72157628661122851", "longitude": "0.892933", "url_o": "https://farm8.staticflickr.com/7009/6614943649_d22457e178_o.jpg", "secret": "02d2f96464", "media": "photo", "latitude": "51.989871", "id": "6614943649", "tags": "pub davidhunt williamalexander stokebynayland theangelinn"}, {"datetaken": "2012-01-01 14:16:46", "license": "4", "title": "Ben", "text": "", "album_id": "72157628661122851", "longitude": "0.892933", "url_o": "https://farm8.staticflickr.com/7009/6614950801_2109cda7d9_o.jpg", "secret": "a93983b338", "media": "photo", "latitude": "51.989871", "id": "6614950801", "tags": "pub stokebynayland theangelinn bentrethowan"}, {"datetaken": "2012-01-01 14:21:29", "license": "4", "title": "Kevin", "text": "", "album_id": "72157628661122851", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7025/6614957605_f053947508_o.jpg", "secret": "2f1e7ab226", "media": "photo", "latitude": "0", "id": "6614957605", "tags": "pub stokebynayland theangelinn kevinmurrell"}, {"datetaken": "2012-01-01 14:22:07", "license": "4", "title": "Here's me in the corner", "text": "", "album_id": "72157628661122851", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7024/6614966031_da10879f50_o.jpg", "secret": "3ed11335e2", "media": "photo", "latitude": "0", "id": "6614966031", "tags": "pub markr stokebynayland theangelinn"}, {"datetaken": "2012-01-01 15:29:43", "license": "4", "title": "Peacocks on the Roof", "text": "", "album_id": "72157628661122851", "longitude": "0.909121", "url_o": "https://farm8.staticflickr.com/7032/6614976239_f1746a07e8_o.jpg", "secret": "49f019c5b4", "media": "photo", "latitude": "51.963154", "id": "6614976239", "tags": "roof house peacock peacocks"}, {"datetaken": "2012-05-09 12:54:38", "license": "0", "title": "El Castillo in sand", "text": "", "album_id": "72157629655017828", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7087/7165669812_0720278295_o.jpg", "secret": "9fd7d84164", "media": "photo", "latitude": "0", "id": "7165669812", "tags": ""}, {"datetaken": "2012-05-09 12:54:40", "license": "0", "title": "Playa del Carmen at sunset", "text": "", "album_id": "72157629655017828", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7241/7165669984_276692fe51_o.jpg", "secret": "157cafc634", "media": "photo", "latitude": "0", "id": "7165669984", "tags": ""}, {"datetaken": "2012-05-09 12:54:41", "license": "0", "title": "Pampered at the beach", "text": "", "album_id": "72157629655017828", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7233/7165670106_5c5bea3833_o.jpg", "secret": "ba99233a0a", "media": "photo", "latitude": "0", "id": "7165670106", "tags": ""}, {"datetaken": "2012-05-09 12:54:42", "license": "0", "title": "Sailing near Playa del Carmen", "text": "", "album_id": "72157629655017828", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5441/7165670216_1b592e82f5_o.jpg", "secret": "41b10db947", "media": "photo", "latitude": "0", "id": "7165670216", "tags": ""}, {"datetaken": "2012-05-09 12:54:44", "license": "0", "title": "Beach silhouette", "text": "", "album_id": "72157629655017828", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8164/7165670316_5eff413591_o.jpg", "secret": "20a7994dec", "media": "photo", "latitude": "0", "id": "7165670316", "tags": ""}, {"datetaken": "2012-05-09 12:54:45", "license": "0", "title": "God beams", "text": "", "album_id": "72157629655017828", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7216/7165670444_e5213c0450_o.jpg", "secret": "81ca85a477", "media": "photo", "latitude": "0", "id": "7165670444", "tags": ""}, {"datetaken": "2012-05-09 12:54:47", "license": "0", "title": "Watch the birdie", "text": "", "album_id": "72157629655017828", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7229/7165670600_65a7f21c94_o.jpg", "secret": "d6aacb7b2d", "media": "photo", "latitude": "0", "id": "7165670600", "tags": ""}, {"datetaken": "2012-05-09 12:54:49", "license": "0", "title": "Beach house in Playa del Carmen", "text": "", "album_id": "72157629655017828", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7082/7165670764_b1ecba7f40_o.jpg", "secret": "5084c542d2", "media": "photo", "latitude": "0", "id": "7165670764", "tags": ""}, {"datetaken": "2012-05-09 12:54:51", "license": "0", "title": "Beach at Playa del Carmen", "text": "", "album_id": "72157629655017828", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7076/7165671004_cccf95d380_o.jpg", "secret": "76f7eaec4d", "media": "photo", "latitude": "0", "id": "7165671004", "tags": ""}, {"datetaken": "2012-05-09 12:54:55", "license": "0", "title": "Orange beach cottage", "text": "", "album_id": "72157629655017828", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5345/7165671294_58816edda0_o.jpg", "secret": "e8ebba541e", "media": "photo", "latitude": "0", "id": "7165671294", "tags": ""}, {"datetaken": "2012-05-09 12:54:56", "license": "0", "title": "Beach huts at Playa del Carmen", "text": "", "album_id": "72157629655017828", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7081/7165671400_e36e43f9ec_o.jpg", "secret": "9e6585f6c0", "media": "photo", "latitude": "0", "id": "7165671400", "tags": ""}, {"datetaken": "2012-05-09 12:54:57", "license": "0", "title": "Resort buildings", "text": "", "album_id": "72157629655017828", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7105/7165671522_dd27ef1bcd_o.jpg", "secret": "bafb052c9a", "media": "photo", "latitude": "0", "id": "7165671522", "tags": ""}, {"datetaken": "2012-05-09 12:54:59", "license": "0", "title": "Ocean wave", "text": "", "album_id": "72157629655017828", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7074/7165671722_505c96f95a_o.jpg", "secret": "3184aed263", "media": "photo", "latitude": "0", "id": "7165671722", "tags": ""}, {"datetaken": "2012-05-09 12:55:01", "license": "0", "title": "Wave in action", "text": "", "album_id": "72157629655017828", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7228/7165671880_d2b51da435_o.jpg", "secret": "58d0317299", "media": "photo", "latitude": "0", "id": "7165671880", "tags": ""}, {"datetaken": "2012-05-09 12:55:02", "license": "0", "title": "Sailing the high seas", "text": "", "album_id": "72157629655017828", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7098/7165671968_534f711371_o.jpg", "secret": "4755d2602b", "media": "photo", "latitude": "0", "id": "7165671968", "tags": ""}, {"datetaken": "2012-05-09 12:55:04", "license": "0", "title": "Boats on the beach", "text": "", "album_id": "72157629655017828", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5312/7165672094_31316a73bd_o.jpg", "secret": "be3ae755f2", "media": "photo", "latitude": "0", "id": "7165672094", "tags": ""}, {"datetaken": "2012-07-14 22:50:04", "license": "0", "title": "Tabitha", "text": "", "album_id": "72157630580346866", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8009/7572199252_c5ec9ef306_o.jpg", "secret": "7cc24281d3", "media": "photo", "latitude": "0", "id": "7572199252", "tags": "aqhashow region3championship"}, {"datetaken": "2012-07-14 22:50:05", "license": "0", "title": "Partners", "text": "", "album_id": "72157630580346866", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7263/7572199352_61ef530fce_o.jpg", "secret": "b4c6f7bca5", "media": "photo", "latitude": "0", "id": "7572199352", "tags": "aqhashow region3championship"}, {"datetaken": "2012-07-14 22:50:07", "license": "0", "title": "Pretty in Pink", "text": "", "album_id": "72157630580346866", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7269/7572199448_99cc70efde_o.jpg", "secret": "00f1549aaa", "media": "photo", "latitude": "0", "id": "7572199448", "tags": "aqhashow region3championship"}, {"datetaken": "2012-07-14 22:50:09", "license": "0", "title": "Multitasking", "text": "", "album_id": "72157630580346866", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7247/7572199580_a09a8d8efe_o.jpg", "secret": "2b9f5dc437", "media": "photo", "latitude": "0", "id": "7572199580", "tags": "aqhashow region3championship"}, {"datetaken": "2012-07-14 22:50:10", "license": "0", "title": "Cheeeeeese!", "text": "", "album_id": "72157630580346866", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7273/7572199698_29615b93f3_o.jpg", "secret": "6f0f99d0d2", "media": "photo", "latitude": "0", "id": "7572199698", "tags": "aqhashow region3championship"}, {"datetaken": "2012-07-14 22:50:12", "license": "0", "title": "Tack and Prizes", "text": "", "album_id": "72157630580346866", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8010/7572199818_405db7a659_o.jpg", "secret": "5af01b078b", "media": "photo", "latitude": "0", "id": "7572199818", "tags": "aqhashow region3championship"}, {"datetaken": "2012-07-14 22:50:14", "license": "0", "title": "Turn the Corner", "text": "", "album_id": "72157630580346866", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8285/7572199936_246f891154_o.jpg", "secret": "b8dd5e9650", "media": "photo", "latitude": "0", "id": "7572199936", "tags": "aqhashow region3championship"}, {"datetaken": "2012-07-14 22:50:15", "license": "0", "title": "Strategy", "text": "", "album_id": "72157630580346866", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8020/7572200040_f12ee8e0d5_o.jpg", "secret": "630e123327", "media": "photo", "latitude": "0", "id": "7572200040", "tags": "aqhashow region3championship"}, {"datetaken": "2012-07-14 22:50:16", "license": "0", "title": "Trot Out", "text": "", "album_id": "72157630580346866", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8155/7572200134_d29718a59c_o.jpg", "secret": "2119697b3c", "media": "photo", "latitude": "0", "id": "7572200134", "tags": "aqhashow region3championship"}, {"datetaken": "2012-07-14 22:50:17", "license": "0", "title": "Saying Hello", "text": "", "album_id": "72157630580346866", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7118/7572200190_ea1b431523_o.jpg", "secret": "eda1ff90fc", "media": "photo", "latitude": "0", "id": "7572200190", "tags": "aqhashow region3championship"}, {"datetaken": "2012-07-14 22:50:19", "license": "0", "title": "Prizes", "text": "", "album_id": "72157630580346866", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7280/7572200290_66be5a8442_o.jpg", "secret": "0d97f80cc6", "media": "photo", "latitude": "0", "id": "7572200290", "tags": "aqhashow region3championship"}, {"datetaken": "2012-07-14 22:50:20", "license": "0", "title": "Lineup", "text": "", "album_id": "72157630580346866", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7278/7572200374_42fc1a2d62_o.jpg", "secret": "87302393b9", "media": "photo", "latitude": "0", "id": "7572200374", "tags": "aqhashow region3championship"}, {"datetaken": "2012-07-14 22:50:22", "license": "0", "title": "Golden", "text": "", "album_id": "72157630580346866", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7135/7572200478_249294fe9d_o.jpg", "secret": "dcdbd7641c", "media": "photo", "latitude": "0", "id": "7572200478", "tags": "aqhashow region3championship"}, {"datetaken": "2012-07-14 22:50:23", "license": "0", "title": "Showmanship", "text": "", "album_id": "72157630580346866", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7133/7572200558_958185c930_o.jpg", "secret": "025118ba95", "media": "photo", "latitude": "0", "id": "7572200558", "tags": "aqhashow region3championship"}, {"datetaken": "2012-07-14 22:50:25", "license": "0", "title": "Horsemanship", "text": "", "album_id": "72157630580346866", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8023/7572200640_e132f4da2d_o.jpg", "secret": "a9162c1ca7", "media": "photo", "latitude": "0", "id": "7572200640", "tags": "aqhashow region3championship"}, {"datetaken": "2012-07-14 22:50:26", "license": "0", "title": "Chew Toy", "text": "", "album_id": "72157630580346866", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7270/7572200766_b39f3fbfa9_o.jpg", "secret": "6b3e41eca1", "media": "photo", "latitude": "0", "id": "7572200766", "tags": "aqhashow region3championship"}, {"datetaken": "2012-07-14 22:50:27", "license": "0", "title": "Let Me See!", "text": "", "album_id": "72157630580346866", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7137/7572200832_0aa5e14d41_o.jpg", "secret": "ec8f2ae66d", "media": "photo", "latitude": "0", "id": "7572200832", "tags": "aqhashow region3championship"}, {"datetaken": "2006-12-15 08:49:24", "license": "0", "title": "ireland boat", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/323138703_a61670b4c2_o.jpg", "secret": "a61670b4c2", "media": "photo", "latitude": "0", "id": "323138703", "tags": "ireland writing boat"}, {"datetaken": "2006-12-15 08:54:20", "license": "0", "title": "door", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/323142173_0ca95158f3_o.jpg", "secret": "0ca95158f3", "media": "photo", "latitude": "0", "id": "323142173", "tags": "ireland vacation horse"}, {"datetaken": "2006-12-15 08:54:21", "license": "0", "title": "bwhorse", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/323142175_62abd62b41_o.jpg", "secret": "62abd62b41", "media": "photo", "latitude": "0", "id": "323142175", "tags": "ireland vacation horse"}, {"datetaken": "2006-12-15 08:54:21", "license": "0", "title": "chris flishing", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/323142178_796c29eae4_o.jpg", "secret": "796c29eae4", "media": "photo", "latitude": "0", "id": "323142178", "tags": "ireland vacation horse"}, {"datetaken": "2006-12-15 08:54:21", "license": "0", "title": "florida birdhouse at sunset", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/323142180_1557bf6add_o.jpg", "secret": "1557bf6add", "media": "photo", "latitude": "0", "id": "323142180", "tags": "ireland vacation horse"}, {"datetaken": "2006-12-15 08:54:21", "license": "0", "title": "ireland blue door", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/323142182_4851864750_o.jpg", "secret": "4851864750", "media": "photo", "latitude": "0", "id": "323142182", "tags": "ireland vacation horse"}, {"datetaken": "2006-12-15 08:54:21", "license": "0", "title": "rainbow ireland", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/323142183_4463d9f378_o.jpg", "secret": "4463d9f378", "media": "photo", "latitude": "0", "id": "323142183", "tags": "ireland vacation horse"}, {"datetaken": "2006-12-15 08:59:02", "license": "0", "title": "england bakery", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/323145923_0c8e1af409_o.jpg", "secret": "0c8e1af409", "media": "photo", "latitude": "0", "id": "323145923", "tags": "ireland wedding england travels"}, {"datetaken": "2006-12-15 08:59:02", "license": "0", "title": "england streetscape3", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/323145938_3e9502e3ae_o.jpg", "secret": "3e9502e3ae", "media": "photo", "latitude": "0", "id": "323145938", "tags": "ireland wedding england travels"}, {"datetaken": "2006-12-15 08:59:02", "license": "0", "title": "irish dancer", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/323145930_5a8f020b75_o.jpg", "secret": "5a8f020b75", "media": "photo", "latitude": "0", "id": "323145930", "tags": "ireland wedding england travels"}, {"datetaken": "2006-12-15 08:59:02", "license": "0", "title": "sheep shearing", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/323145931_017cec7bc4_o.jpg", "secret": "017cec7bc4", "media": "photo", "latitude": "0", "id": "323145931", "tags": "ireland wedding england travels"}, {"datetaken": "2006-12-15 08:59:02", "license": "0", "title": "two young irish girls", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/323145933_720c6e02da_o.jpg", "secret": "720c6e02da", "media": "photo", "latitude": "0", "id": "323145933", "tags": "ireland wedding england travels"}, {"datetaken": "2006-12-15 08:59:02", "license": "0", "title": "wedding ireland", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/323145935_a5bf23744b_o.jpg", "secret": "a5bf23744b", "media": "photo", "latitude": "0", "id": "323145935", "tags": "ireland wedding england travels"}, {"datetaken": "2006-12-15 09:04:08", "license": "0", "title": "england red phone", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/323150297_e6960ca88e_o.jpg", "secret": "e6960ca88e", "media": "photo", "latitude": "0", "id": "323150297", "tags": "ireland england travels montana"}, {"datetaken": "2006-12-15 09:04:08", "license": "0", "title": "jerry cow", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/323150293_aae35196b6_o.jpg", "secret": "aae35196b6", "media": "photo", "latitude": "0", "id": "323150293", "tags": "ireland england travels montana"}, {"datetaken": "2006-12-15 09:04:08", "license": "0", "title": "lifeguards jones beach", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/323150283_28214af121_o.jpg", "secret": "28214af121", "media": "photo", "latitude": "0", "id": "323150283", "tags": "ireland england travels montana"}, {"datetaken": "2006-12-15 09:04:08", "license": "0", "title": "montana school bus", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/323150295_f4a7c66d98_o.jpg", "secret": "f4a7c66d98", "media": "photo", "latitude": "0", "id": "323150295", "tags": "ireland england travels montana"}, {"datetaken": "2006-12-15 09:04:08", "license": "0", "title": "rain covered road", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/323150305_a4972459d3_o.jpg", "secret": "a4972459d3", "media": "photo", "latitude": "0", "id": "323150305", "tags": "ireland england travels montana"}, {"datetaken": "2006-12-15 09:04:08", "license": "0", "title": "stone archway", "text": "", "album_id": "72157631712541139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/323150309_e0cc1a07ff_o.jpg", "secret": "e0cc1a07ff", "media": "photo", "latitude": "0", "id": "323150309", "tags": "ireland england travels montana"}, {"datetaken": "2012-12-25 06:29:18", "license": "0", "title": "View of Seine from Pont Neuf on Christmas Day", "text": "", "album_id": "72157632550793835", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8476/8365300691_ec9a36d7ea_o.jpg", "secret": "420b018b60", "media": "photo", "latitude": "0", "id": "8365300691", "tags": ""}, {"datetaken": "2012-12-25 06:52:13", "license": "0", "title": "Bridge with locks representing lasting love", "text": "", "album_id": "72157632550793835", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8054/8365301167_42ebaae655_o.jpg", "secret": "b1aa654fef", "media": "photo", "latitude": "0", "id": "8365301167", "tags": ""}, {"datetaken": "2012-12-25 06:52:45", "license": "0", "title": "Some of the locks left on the bridge by lovers from around world", "text": "", "album_id": "72157632550793835", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8471/8366371986_83e754b1b6_o.jpg", "secret": "d081443382", "media": "photo", "latitude": "0", "id": "8366371986", "tags": ""}, {"datetaken": "2012-12-25 06:56:32", "license": "0", "title": "The bridge was completely covered in locks", "text": "", "album_id": "72157632550793835", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8496/8366372476_8428993b0e_o.jpg", "secret": "4f94fa2ac8", "media": "photo", "latitude": "0", "id": "8366372476", "tags": ""}, {"datetaken": "2012-12-25 07:19:12", "license": "0", "title": "Decorated road sign on way to Tuileries", "text": "", "album_id": "72157632550793835", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8056/8365302643_b8eb2f930f_o.jpg", "secret": "e116d52725", "media": "photo", "latitude": "0", "id": "8365302643", "tags": ""}, {"datetaken": "2012-12-25 07:23:35", "license": "0", "title": "Two dogs play outside the Louvre on Christmas Day", "text": "", "album_id": "72157632550793835", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8357/8366373388_b3bf86427c_o.jpg", "secret": "653866a82b", "media": "photo", "latitude": "0", "id": "8366373388", "tags": ""}, {"datetaken": "2012-12-25 07:24:34", "license": "0", "title": "Amanda and Kristen outside the Louvre/Tuileries on Christmas", "text": "", "album_id": "72157632550793835", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8503/8366373944_cdee7d8e75_o.jpg", "secret": "da00e7c844", "media": "photo", "latitude": "0", "id": "8366373944", "tags": ""}, {"datetaken": "2012-12-25 07:42:48", "license": "0", "title": "Tuileries marble", "text": "", "album_id": "72157632550793835", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8325/8366374512_1a21673865_o.jpg", "secret": "a80059af09", "media": "photo", "latitude": "0", "id": "8366374512", "tags": ""}, {"datetaken": "2012-12-25 08:12:27", "license": "0", "title": "Christmas market open on Christmas, Champs Elysees", "text": "", "album_id": "72157632550793835", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8236/8365304681_d3c523db91_o.jpg", "secret": "3ae9e330e1", "media": "photo", "latitude": "0", "id": "8365304681", "tags": ""}, {"datetaken": "2012-12-25 08:12:35", "license": "0", "title": "Christmas market", "text": "", "album_id": "72157632550793835", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8221/8365305167_42320438ff_o.jpg", "secret": "228d45ed16", "media": "photo", "latitude": "0", "id": "8365305167", "tags": ""}, {"datetaken": "2012-12-25 08:52:31", "license": "0", "title": "Ice skating at the Christmas market", "text": "", "album_id": "72157632550793835", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8331/8365305737_d6a3341ce4_o.jpg", "secret": "3113f1612f", "media": "photo", "latitude": "0", "id": "8365305737", "tags": ""}, {"datetaken": "2012-08-05 11:19:09", "license": "0", "title": "Less Rare Sighting of North American Texting Hippie", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm9.staticflickr.com/8286/7729276182_e2cdca4ffa_o.jpg", "secret": "ac474cf89d", "media": "photo", "latitude": "37.720610", "id": "7729276182", "tags": "sanfrancisco mclarenpark jerryday jerrygarciaamphitheater pentaxkr"}, {"datetaken": "2012-08-05 11:22:34", "license": "0", "title": "Mildred, Gertrude and Harriett Hippie", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm8.staticflickr.com/7274/7758932900_f98bc533dc_o.jpg", "secret": "d95c8ff6b8", "media": "photo", "latitude": "37.720610", "id": "7758932900", "tags": "sanfrancisco mclarenpark jerryday pentaxkr"}, {"datetaken": "2012-08-05 11:24:44", "license": "0", "title": "I'm Uncle Sam - That's Who I am", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm8.staticflickr.com/7262/7720956560_886ace9992_o.jpg", "secret": "0624979aae", "media": "photo", "latitude": "37.720610", "id": "7720956560", "tags": "sanfrancisco hippie mclarenpark jerryday jerrygarciaamphitheater pentaxkr"}, {"datetaken": "2012-08-05 11:28:27", "license": "0", "title": "Blower and Bubble 1 of 5", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm9.staticflickr.com/8304/7750438184_5bc7116a14_o.jpg", "secret": "994691cd92", "media": "photo", "latitude": "37.720610", "id": "7750438184", "tags": "sanfrancisco bubble hippie mclarenpark jerryday pentaxkr"}, {"datetaken": "2012-08-05 11:28:33", "license": "0", "title": "Blower and Bubble 2 of 5", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm9.staticflickr.com/8432/7750438524_bb5253a922_o.jpg", "secret": "eb95869776", "media": "photo", "latitude": "37.720610", "id": "7750438524", "tags": "sanfrancisco bubble hippie mclarenpark jerryday pentaxkr"}, {"datetaken": "2012-08-05 11:28:36", "license": "0", "title": "Blower and Bubble 3 of 5", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm9.staticflickr.com/8288/7750438726_42f4308a25_o.jpg", "secret": "1b6c90c974", "media": "photo", "latitude": "37.720610", "id": "7750438726", "tags": "sanfrancisco bubble hippie mclarenpark jerryday pentaxkr"}, {"datetaken": "2012-08-05 11:28:37", "license": "0", "title": "Blower and Bubble 4 of 5", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm9.staticflickr.com/8308/7750438914_61f1558e96_o.jpg", "secret": "c11ff3152d", "media": "photo", "latitude": "37.720610", "id": "7750438914", "tags": "sanfrancisco bubble hippie mclarenpark jerryday pentaxkr"}, {"datetaken": "2012-08-05 11:28:39", "license": "0", "title": "Blower and Bubble 5 of 5", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm9.staticflickr.com/8300/7750439036_607c8fc010_o.jpg", "secret": "b5c1565eba", "media": "photo", "latitude": "37.720610", "id": "7750439036", "tags": "sanfrancisco bubble hippie mclarenpark jerryday pentaxkr"}, {"datetaken": "2012-08-05 11:40:14", "license": "0", "title": "Pete Townshend's son on lead vocals", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm8.staticflickr.com/7117/7798473528_8ca4396443_o.jpg", "secret": "e4cd8ece49", "media": "photo", "latitude": "37.720610", "id": "7798473528", "tags": "sanfrancisco mclarenpark jerryday bluebearschoolofmusic pentaxkr"}, {"datetaken": "2012-08-05 11:40:52", "license": "0", "title": "Blue Bear Keyboard Girl", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm9.staticflickr.com/8290/7798473374_a923a2deed_o.jpg", "secret": "29efbb7d7d", "media": "photo", "latitude": "37.720610", "id": "7798473374", "tags": "sanfrancisco mclarenpark jerryday bluebearschoolofmusic pentaxkr"}, {"datetaken": "2012-08-05 11:42:49", "license": "0", "title": "Almost Cut My Hair", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm8.staticflickr.com/7270/7729277636_6cd2481298_o.jpg", "secret": "e040332056", "media": "photo", "latitude": "37.720610", "id": "7729277636", "tags": "sanfrancisco hair mclarenpark jerryday jerrygarciaamphitheater pentaxkr"}, {"datetaken": "2012-08-05 11:48:29", "license": "0", "title": "Jessica Fierro", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm9.staticflickr.com/8285/7758931186_aca084f350_o.jpg", "secret": "bd6f016d62", "media": "photo", "latitude": "37.720610", "id": "7758931186", "tags": "sanfrancisco mclarenpark jerryday pentaxkr"}, {"datetaken": "2012-08-05 11:56:22", "license": "0", "title": "Never too old to be a hippie", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm9.staticflickr.com/8428/7720956256_ae024c5f4a_o.jpg", "secret": "57c6f6c35a", "media": "photo", "latitude": "37.720610", "id": "7720956256", "tags": "sanfrancisco hippies mclarenpark jerryday jerrygarciaamphitheater pentaxkr"}, {"datetaken": "2012-08-05 11:59:08", "license": "0", "title": "Peter Rowan", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm9.staticflickr.com/8293/7720955930_9d2296b7d7_o.jpg", "secret": "c4df6d5b73", "media": "photo", "latitude": "37.720610", "id": "7720955930", "tags": "sanfrancisco mclarenpark jerryday jerrygarciaamphitheater pentaxkr smcpentaxdal55300mm1458"}, {"datetaken": "2012-08-05 12:06:44", "license": "0", "title": "Yet Another Shot of Peter Rowan", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm9.staticflickr.com/8307/7798471376_23af67fb43_o.jpg", "secret": "a904452019", "media": "photo", "latitude": "37.720610", "id": "7798471376", "tags": "sanfrancisco mclarenpark jerryday pentaxkr smcpentaxdal55300mm1458"}, {"datetaken": "2012-08-05 12:14:31", "license": "0", "title": "When a Deadhead gets Tattoos", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm9.staticflickr.com/8292/7758929968_f4faf1b9f0_o.jpg", "secret": "73c1329fa7", "media": "photo", "latitude": "37.720610", "id": "7758929968", "tags": "sanfrancisco mclarenpark jerryday pentaxkr smcpentaxdal55300mm1458"}, {"datetaken": "2012-08-05 12:18:23", "license": "0", "title": "Bubble-blowing Technical Tour de Force", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm8.staticflickr.com/7139/7758929276_67c4cd6c80_o.jpg", "secret": "edf4d98d55", "media": "photo", "latitude": "37.720610", "id": "7758929276", "tags": "sanfrancisco mclarenpark jerryday pentaxkr smcpentaxdal55300mm1458"}, {"datetaken": "2012-08-05 12:22:24", "license": "0", "title": "Peter and his guitar", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm9.staticflickr.com/8440/7798468608_980317d648_o.jpg", "secret": "b0191cf9e6", "media": "photo", "latitude": "37.720610", "id": "7798468608", "tags": "sanfrancisco fender stratocaster peterrowan mclarenpark jerryday pentaxkr smcpentaxdal55300mm1458"}, {"datetaken": "2012-08-05 12:33:56", "license": "0", "title": "Peter Rowan", "text": "", "album_id": "72157634147267999", "longitude": "-122.417446", "url_o": "https://farm8.staticflickr.com/7250/7729279842_a9e7e664a9_o.jpg", "secret": "1479c26f43", "media": "photo", "latitude": "37.720610", "id": "7729279842", "tags": "sanfrancisco mclarenpark jerryday jerrygarciaamphitheater pentaxkr smcpentaxdal55300mm1458"}, {"datetaken": "2013-11-12 02:45:30", "license": "0", "title": "Our Broom Mill Country Kitchen and Restaurant", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7450/10817183294_310222210c_o.jpg", "secret": "7b7d1b7646", "media": "photo", "latitude": "0", "id": "10817183294", "tags": ""}, {"datetaken": "2013-11-12 02:45:43", "license": "0", "title": "The interior of our Tea Room has a country appeal", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3824/10817186004_685022d3df_o.jpg", "secret": "708f1f962d", "media": "photo", "latitude": "0", "id": "10817186004", "tags": ""}, {"datetaken": "2013-11-12 02:45:58", "license": "0", "title": "Our friendly staff will always try to please", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5511/10817188514_3997696a77_o.jpg", "secret": "3073b7dc61", "media": "photo", "latitude": "0", "id": "10817188514", "tags": ""}, {"datetaken": "2013-11-12 02:46:16", "license": "0", "title": "There is lots of room - even for small parties", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7361/10817061935_538fac56d7_o.jpg", "secret": "28e47ffc63", "media": "photo", "latitude": "0", "id": "10817061935", "tags": ""}, {"datetaken": "2013-11-12 02:46:34", "license": "0", "title": "It is easy to access the Jetty and Mill Pond outside", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2858/10817075146_7a2520b60a_o.jpg", "secret": "e369285495", "media": "photo", "latitude": "0", "id": "10817075146", "tags": ""}, {"datetaken": "2013-11-12 02:46:50", "license": "0", "title": "We have a tasty range of home-cooked cakes and biscuits", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3667/10817078636_ed16f010ec_o.jpg", "secret": "45d45bec7d", "media": "photo", "latitude": "0", "id": "10817078636", "tags": ""}, {"datetaken": "2013-11-12 02:47:04", "license": "0", "title": "Farmhouse baking at its best", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3815/10817081626_81eb5d150f_o.jpg", "secret": "b7e586c3e3", "media": "photo", "latitude": "0", "id": "10817081626", "tags": ""}, {"datetaken": "2013-11-12 02:47:25", "license": "0", "title": "Our breakfasts use our own produce", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7344/10817205774_eb74c7ae17_o.jpg", "secret": "8debe7af9b", "media": "photo", "latitude": "0", "id": "10817205774", "tags": ""}, {"datetaken": "2013-11-12 02:47:52", "license": "0", "title": "We have a wide range of coffees to enjoy", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7357/10817090566_63647728a1_o.jpg", "secret": "a156ccc610", "media": "photo", "latitude": "0", "id": "10817090566", "tags": ""}, {"datetaken": "2013-11-12 02:48:07", "license": "0", "title": "Come and enjoy a cup of tea in peaceful surroundings", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7457/10817093166_aaef6efb01_o.jpg", "secret": "6068230c48", "media": "photo", "latitude": "0", "id": "10817093166", "tags": ""}, {"datetaken": "2013-11-12 02:48:31", "license": "0", "title": "Come and pay us a visit - we are so easy to find", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2824/10817219234_8ecb4ec093_o.jpg", "secret": "c74cbe21b1", "media": "photo", "latitude": "0", "id": "10817219234", "tags": ""}, {"datetaken": "2013-11-12 02:48:56", "license": "0", "title": "We are open 7 days a week for snacks and meals", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7367/10817103346_8742f030d0_o.jpg", "secret": "93b8da85bb", "media": "photo", "latitude": "0", "id": "10817103346", "tags": ""}, {"datetaken": "2013-11-12 02:49:15", "license": "0", "title": "Our Tearoom is part of our new Visitor Attraction", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2843/10817097105_ae57a6a687_o.jpg", "secret": "7bda9f819b", "media": "photo", "latitude": "0", "id": "10817097105", "tags": ""}, {"datetaken": "2013-11-12 02:49:29", "license": "0", "title": "We have extensive grassed areas outside the Tea Room", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2852/10817109576_06a9f5c148_o.jpg", "secret": "f7fe2b1c4c", "media": "photo", "latitude": "0", "id": "10817109576", "tags": ""}, {"datetaken": "2013-11-12 02:49:50", "license": "0", "title": "Come and visit us - you will be very impressed", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2846/10817373933_7f2c95c708_o.jpg", "secret": "28ac183c1d", "media": "photo", "latitude": "0", "id": "10817373933", "tags": ""}, {"datetaken": "2013-11-12 02:50:08", "license": "0", "title": "We have a covered terrace outside next to the play area", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5511/10817377843_a02f246aa7_o.jpg", "secret": "a78632e3f8", "media": "photo", "latitude": "0", "id": "10817377843", "tags": ""}, {"datetaken": "2013-11-12 02:50:27", "license": "0", "title": "Looking towards the Mill Pond and large car park", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3833/10817241134_9e9e756ba3_o.jpg", "secret": "c822f470a2", "media": "photo", "latitude": "0", "id": "10817241134", "tags": ""}, {"datetaken": "2013-11-12 02:51:34", "license": "0", "title": "Our catering facilities are clean and modern", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7397/10817394973_0b2ee7a2cc_o.jpg", "secret": "d698d02288", "media": "photo", "latitude": "0", "id": "10817394973", "tags": ""}, {"datetaken": "2013-11-12 02:51:50", "license": "0", "title": "Our team have much experience in the catering and hospitality", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5511/10817127325_79a6928b52_o.jpg", "secret": "ee56345bc0", "media": "photo", "latitude": "0", "id": "10817127325", "tags": ""}, {"datetaken": "2013-11-12 02:52:33", "license": "0", "title": "Our Coffee Shop has a lovely environment", "text": "", "album_id": "72157637589780155", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7374/10817264474_d89b24404a_o.jpg", "secret": "cd9a16dc79", "media": "photo", "latitude": "0", "id": "10817264474", "tags": ""}, {"datetaken": "2013-11-24 11:59:58", "license": "0", "title": "Construction cake!", "text": "", "album_id": "72157638030736484", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5521/11042083575_37e760111d_o.jpg", "secret": "0c44502f0e", "media": "photo", "latitude": "0", "id": "11042083575", "tags": ""}, {"datetaken": "2013-11-24 12:00:38", "license": "0", "title": "An appropriate cake", "text": "", "album_id": "72157638030736484", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2850/11042086335_2bcbcd8fcb_o.jpg", "secret": "209d02604d", "media": "photo", "latitude": "0", "id": "11042086335", "tags": ""}, {"datetaken": "2013-11-24 12:00:45", "license": "0", "title": "The amazing construction cake!", "text": "", "album_id": "72157638030736484", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5505/11042089265_9aba86da5b_o.jpg", "secret": "c17c1f5b2d", "media": "photo", "latitude": "0", "id": "11042089265", "tags": ""}, {"datetaken": "2013-11-24 12:18:44", "license": "0", "title": "Max's crown", "text": "", "album_id": "72157638030736484", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7449/11042188066_938cf29ef2_o.jpg", "secret": "33031c0cf3", "media": "photo", "latitude": "0", "id": "11042188066", "tags": ""}, {"datetaken": "2013-11-24 13:07:43", "license": "0", "title": "Tavi4thbirthday-8.jpg", "text": "", "album_id": "72157638030736484", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7355/11042092705_215dd0759c_o.jpg", "secret": "6918930af1", "media": "photo", "latitude": "0", "id": "11042092705", "tags": ""}, {"datetaken": "2013-11-24 13:09:20", "license": "0", "title": "Tavi4thbirthday-12.jpg", "text": "", "album_id": "72157638030736484", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3789/11042284783_079383e8cd_o.jpg", "secret": "d4585739a2", "media": "photo", "latitude": "0", "id": "11042284783", "tags": ""}, {"datetaken": "2013-11-24 13:10:34", "license": "0", "title": "Liam & Gigi controlling the Ballard locks", "text": "", "album_id": "72157638030736484", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3775/11042232854_ca3bed0570_o.jpg", "secret": "2a52dbb237", "media": "photo", "latitude": "0", "id": "11042232854", "tags": ""}, {"datetaken": "2013-11-24 13:38:13", "license": "0", "title": "Chatting with Jane & Bob", "text": "", "album_id": "72157638030736484", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5516/11042288353_fd836c9848_o.jpg", "secret": "34d7b65a1c", "media": "photo", "latitude": "0", "id": "11042288353", "tags": ""}, {"datetaken": "2013-11-24 13:39:28", "license": "0", "title": "Working on the Idea Lab with the twins and Sarah", "text": "", "album_id": "72157638030736484", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3767/11042289903_b5ce7dfc43_o.jpg", "secret": "71e0dd2d8e", "media": "photo", "latitude": "0", "id": "11042289903", "tags": ""}, {"datetaken": "2013-11-24 13:39:36", "license": "0", "title": "Birthday boy from above", "text": "", "album_id": "72157638030736484", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3832/11042291563_e014aa8d18_o.jpg", "secret": "d46e4770ab", "media": "photo", "latitude": "0", "id": "11042291563", "tags": ""}, {"datetaken": "2013-11-24 13:44:44", "license": "0", "title": "Nic & Brett", "text": "", "album_id": "72157638030736484", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7429/11042239614_6de4993940_o.jpg", "secret": "34db15bfc0", "media": "photo", "latitude": "0", "id": "11042239614", "tags": ""}, {"datetaken": "2013-11-24 13:48:34", "license": "0", "title": "Tavi's special sign at MOHAI!", "text": "", "album_id": "72157638030736484", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3808/11042203806_aaaa2e7875_o.jpg", "secret": "7870ffc56d", "media": "photo", "latitude": "0", "id": "11042203806", "tags": ""}, {"datetaken": "2013-11-24 13:49:57", "license": "0", "title": "Dre & Tavi", "text": "", "album_id": "72157638030736484", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3753/11042108265_d7fe2e7e7f_o.jpg", "secret": "df977ef437", "media": "photo", "latitude": "0", "id": "11042108265", "tags": ""}, {"datetaken": "2013-11-24 15:03:34", "license": "0", "title": "FOUR years old... FOUR!", "text": "", "album_id": "72157638030736484", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5537/11042109595_0af75030c5_o.jpg", "secret": "60c1ac7be3", "media": "photo", "latitude": "0", "id": "11042109595", "tags": ""}, {"datetaken": "2013-11-24 15:07:14", "license": "0", "title": "FUCK YEAH, MOHAI", "text": "", "album_id": "72157638030736484", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2834/11042248234_d56514f1b7_o.jpg", "secret": "3b4896756f", "media": "photo", "latitude": "0", "id": "11042248234", "tags": ""}, {"datetaken": "2013-11-24 15:07:22", "license": "0", "title": "4th Birthday: SUCCESS", "text": "", "album_id": "72157638030736484", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3828/11042303493_448982f5e0_o.jpg", "secret": "ca6bf44cb5", "media": "photo", "latitude": "0", "id": "11042303493", "tags": ""}, {"datetaken": "2007-01-01 00:04:15", "license": "1", "title": "img_0944", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/341256086_68a85f5bc4_o.jpg", "secret": "68a85f5bc4", "media": "photo", "latitude": "0", "id": "341256086", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:04:45", "license": "1", "title": "img_0945", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/341256792_19db687a8a_o.jpg", "secret": "19db687a8a", "media": "photo", "latitude": "0", "id": "341256792", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:04:58", "license": "1", "title": "img_0946", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/341257543_c48e8fe133_o.jpg", "secret": "c48e8fe133", "media": "photo", "latitude": "0", "id": "341257543", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:05:10", "license": "1", "title": "img_0947", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/341258034_26a0add174_o.jpg", "secret": "26a0add174", "media": "photo", "latitude": "0", "id": "341258034", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:06:29", "license": "1", "title": "img_0948", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/341258392_2178256655_o.jpg", "secret": "2178256655", "media": "photo", "latitude": "0", "id": "341258392", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:07:00", "license": "1", "title": "img_0949", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/341258765_cf20b87f02_o.jpg", "secret": "cf20b87f02", "media": "photo", "latitude": "0", "id": "341258765", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:07:15", "license": "1", "title": "img_0950", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/341259760_f33556111e_o.jpg", "secret": "f33556111e", "media": "photo", "latitude": "0", "id": "341259760", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:07:30", "license": "1", "title": "img_0951", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/341260306_0b4dd6ddca_o.jpg", "secret": "0b4dd6ddca", "media": "photo", "latitude": "0", "id": "341260306", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:07:59", "license": "1", "title": "img_0952", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/341260903_8362718e27_o.jpg", "secret": "8362718e27", "media": "photo", "latitude": "0", "id": "341260903", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:09:05", "license": "1", "title": "img_0953", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/341261863_197e17bf5b_o.jpg", "secret": "197e17bf5b", "media": "photo", "latitude": "0", "id": "341261863", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:09:24", "license": "1", "title": "img_0954", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/341268664_95fe6a92ac_o.jpg", "secret": "95fe6a92ac", "media": "photo", "latitude": "0", "id": "341268664", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:09:47", "license": "1", "title": "img_0955", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/341269182_a0dd64dc8f_o.jpg", "secret": "a0dd64dc8f", "media": "photo", "latitude": "0", "id": "341269182", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:11:12", "license": "1", "title": "img_0956", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/341269575_8075474643_o.jpg", "secret": "8075474643", "media": "photo", "latitude": "0", "id": "341269575", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:11:25", "license": "1", "title": "img_0957", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/341270031_2fd463876a_o.jpg", "secret": "2fd463876a", "media": "photo", "latitude": "0", "id": "341270031", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:12:19", "license": "1", "title": "img_0958", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/341274025_6cd8b8a5f8_o.jpg", "secret": "6cd8b8a5f8", "media": "photo", "latitude": "0", "id": "341274025", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:15:29", "license": "1", "title": "img_0959", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/341274629_730bb39263_o.jpg", "secret": "730bb39263", "media": "photo", "latitude": "0", "id": "341274629", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:17:40", "license": "1", "title": "img_0960", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/341279191_f270f5a48c_o.jpg", "secret": "f270f5a48c", "media": "photo", "latitude": "0", "id": "341279191", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:26:10", "license": "1", "title": "img_0964", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/341279687_e93b51ee3e_o.jpg", "secret": "e93b51ee3e", "media": "photo", "latitude": "0", "id": "341279687", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:26:22", "license": "1", "title": "img_0965", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/341280119_e65431e886_o.jpg", "secret": "e65431e886", "media": "photo", "latitude": "0", "id": "341280119", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:28:19", "license": "1", "title": "img_0967", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/341280574_5f93442b31_o.jpg", "secret": "5f93442b31", "media": "photo", "latitude": "0", "id": "341280574", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:28:29", "license": "1", "title": "img_0968", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/341281360_841ed44784_o.jpg", "secret": "841ed44784", "media": "photo", "latitude": "0", "id": "341281360", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:28:40", "license": "1", "title": "img_0969", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/341285718_7507cac728_o.jpg", "secret": "7507cac728", "media": "photo", "latitude": "0", "id": "341285718", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:28:49", "license": "1", "title": "img_0970", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/341286218_bc2f049969_o.jpg", "secret": "bc2f049969", "media": "photo", "latitude": "0", "id": "341286218", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:29:20", "license": "1", "title": "img_0972", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/341286899_c671e2a04a_o.jpg", "secret": "c671e2a04a", "media": "photo", "latitude": "0", "id": "341286899", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:31:19", "license": "1", "title": "img_0974", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/341287249_13b167e2be_o.jpg", "secret": "13b167e2be", "media": "photo", "latitude": "0", "id": "341287249", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:32:34", "license": "1", "title": "img_0975", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/341293045_5bed09a4a3_o.jpg", "secret": "5bed09a4a3", "media": "photo", "latitude": "0", "id": "341293045", "tags": "fireworks"}, {"datetaken": "2007-01-01 00:37:00", "license": "1", "title": "img_0977", "text": "", "album_id": "72157594452428108", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/341299278_19bd88a350_o.jpg", "secret": "19bd88a350", "media": "photo", "latitude": "0", "id": "341299278", "tags": "fireworks"}, {"datetaken": "2007-01-01 01:08:17", "license": "1", "title": "323 Mathilda, Sunnyvale, CA #1", "text": "", "album_id": "72157594452834832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/341570983_fa79ad1a61_o.jpg", "secret": "fa79ad1a61", "media": "photo", "latitude": "0", "id": "341570983", "tags": "architecture sunnyvale siliconvalley uglybuildings tiltups"}, {"datetaken": "2007-01-01 01:09:27", "license": "1", "title": "323 Mathilda, Sunnyvale, CA #2", "text": "", "album_id": "72157594452834832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/341571419_90a820602f_o.jpg", "secret": "90a820602f", "media": "photo", "latitude": "0", "id": "341571419", "tags": "architecture sunnyvale siliconvalley uglybuildings tiltups"}, {"datetaken": "2007-01-01 01:09:38", "license": "1", "title": "323 Mathilda, Sunnyvale, CA #3", "text": "", "album_id": "72157594452834832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/341571668_6b6df839c2_o.jpg", "secret": "6b6df839c2", "media": "photo", "latitude": "0", "id": "341571668", "tags": "architecture sunnyvale siliconvalley uglybuildings tiltups"}, {"datetaken": "2007-01-01 01:10:53", "license": "1", "title": "323 Mathilda, Sunnyvale, CA #4", "text": "", "album_id": "72157594452834832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/341571821_2ded716db0_o.jpg", "secret": "2ded716db0", "media": "photo", "latitude": "0", "id": "341571821", "tags": "architecture sunnyvale siliconvalley uglybuildings tiltups"}, {"datetaken": "2007-01-01 01:12:24", "license": "1", "title": "323 Mathilda, Sunnyvale, CA #5", "text": "", "album_id": "72157594452834832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/341572155_adb142ccca_o.jpg", "secret": "adb142ccca", "media": "photo", "latitude": "0", "id": "341572155", "tags": "architecture sunnyvale siliconvalley uglybuildings tiltups"}, {"datetaken": "2007-01-01 01:12:38", "license": "1", "title": "323 Mathilda, Sunnyvale, CA #6", "text": "", "album_id": "72157594452834832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/341572415_46c1f20249_o.jpg", "secret": "46c1f20249", "media": "photo", "latitude": "0", "id": "341572415", "tags": "architecture sunnyvale siliconvalley uglybuildings tiltups"}, {"datetaken": "2007-01-01 01:13:05", "license": "1", "title": "323 Mathilda, Sunnyvale, CA #7", "text": "", "album_id": "72157594452834832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/341572718_bf0d4378b4_o.jpg", "secret": "bf0d4378b4", "media": "photo", "latitude": "0", "id": "341572718", "tags": "architecture sunnyvale siliconvalley uglybuildings tiltups"}, {"datetaken": "2007-01-01 01:16:04", "license": "1", "title": "320 Soquel, Sunnyvale, CA #1", "text": "", "album_id": "72157594452834832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/341570004_84e0609228_o.jpg", "secret": "84e0609228", "media": "photo", "latitude": "0", "id": "341570004", "tags": "architecture sunnyvale siliconvalley uglybuildings tiltups"}, {"datetaken": "2007-01-01 01:17:39", "license": "1", "title": "320 Soquel, Sunnyvale, CA #2", "text": "", "album_id": "72157594452834832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/341570209_b1b621f163_o.jpg", "secret": "b1b621f163", "media": "photo", "latitude": "0", "id": "341570209", "tags": "architecture sunnyvale siliconvalley uglybuildings tiltups"}, {"datetaken": "2007-01-01 01:18:24", "license": "1", "title": "320 Soquel, Sunnyvale, CA #3", "text": "", "album_id": "72157594452834832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/341570342_fb65b3c740_o.jpg", "secret": "fb65b3c740", "media": "photo", "latitude": "0", "id": "341570342", "tags": "architecture sunnyvale siliconvalley uglybuildings tiltups"}, {"datetaken": "2007-01-01 01:21:08", "license": "1", "title": "320 Soquel, Sunnyvale, CA #4", "text": "", "album_id": "72157594452834832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/341570549_2fa89c0042_o.jpg", "secret": "2fa89c0042", "media": "photo", "latitude": "0", "id": "341570549", "tags": "architecture sunnyvale siliconvalley uglybuildings tiltups"}, {"datetaken": "2007-01-01 01:21:14", "license": "1", "title": "320 Soquel, Sunnyvale, CA #5", "text": "", "album_id": "72157594452834832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/341570736_4884ff78c8_o.jpg", "secret": "4884ff78c8", "media": "photo", "latitude": "0", "id": "341570736", "tags": "architecture sunnyvale siliconvalley uglybuildings tiltups"}, {"datetaken": "2007-01-01 01:23:18", "license": "1", "title": "323 Mathilda, Sunnyvale, CA #8", "text": "", "album_id": "72157594452834832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/341572877_0385319354_o.jpg", "secret": "0385319354", "media": "photo", "latitude": "0", "id": "341572877", "tags": "architecture sunnyvale siliconvalley uglybuildings tiltups"}, {"datetaken": "2007-01-01 01:23:50", "license": "1", "title": "323 Mathilda, Sunnyvale, CA #9", "text": "", "album_id": "72157594452834832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/341573101_6084941d6e_o.jpg", "secret": "6084941d6e", "media": "photo", "latitude": "0", "id": "341573101", "tags": "architecture sunnyvale siliconvalley uglybuildings tiltups"}, {"datetaken": "2007-01-01 01:24:36", "license": "1", "title": "323 Mathilda, Sunnyvale, CA #10", "text": "", "album_id": "72157594452834832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/341571192_605df8f7b8_o.jpg", "secret": "605df8f7b8", "media": "photo", "latitude": "0", "id": "341571192", "tags": "architecture sunnyvale siliconvalley uglybuildings tiltups"}, {"datetaken": "2010-01-01 00:59:11", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4232882823_9c024a3e28_o.jpg", "secret": "d6afa056cb", "media": "photo", "latitude": "0", "id": "4232882823", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 01:04:51", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4232882015_94d1848cdf_o.jpg", "secret": "4b38f17bb4", "media": "photo", "latitude": "0", "id": "4232882015", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 01:05:56", "license": "4", "title": "no!", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2777/4232881471_3570cb9423_o.jpg", "secret": "9b0e6a2d18", "media": "photo", "latitude": "0", "id": "4232881471", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 01:06:02", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4232880681_8ec9386083_o.jpg", "secret": "4dd79aa0ab", "media": "photo", "latitude": "0", "id": "4232880681", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 01:08:58", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4233651310_2e5f6dc892_o.jpg", "secret": "7a193d14c2", "media": "photo", "latitude": "0", "id": "4233651310", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 01:10:07", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2545/4233650992_5910126a06_o.jpg", "secret": "d5aba76284", "media": "photo", "latitude": "0", "id": "4233650992", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 01:10:36", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2495/4233650044_99bee73654_o.jpg", "secret": "7b5a8de910", "media": "photo", "latitude": "0", "id": "4233650044", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 01:11:58", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4233649356_53c6333b85_o.jpg", "secret": "6c4113752b", "media": "photo", "latitude": "0", "id": "4233649356", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 01:15:18", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4232877005_67030589bf_o.jpg", "secret": "4dbec1fe70", "media": "photo", "latitude": "0", "id": "4232877005", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 01:16:34", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4233648040_10b066e91d_o.jpg", "secret": "69fec472f2", "media": "photo", "latitude": "0", "id": "4233648040", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 01:16:41", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2486/4233647002_d585cb0965_o.jpg", "secret": "295bb1eee7", "media": "photo", "latitude": "0", "id": "4233647002", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 01:16:44", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2627/4233645890_47010acf50_o.jpg", "secret": "fea7396654", "media": "photo", "latitude": "0", "id": "4233645890", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 01:16:50", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2568/4232872679_4c32703fa4_o.jpg", "secret": "59c277a521", "media": "photo", "latitude": "0", "id": "4232872679", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 01:17:15", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4232871625_8c9e4def63_o.jpg", "secret": "c3228d67c7", "media": "photo", "latitude": "0", "id": "4232871625", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 01:17:29", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4232871111_e238109621_o.jpg", "secret": "7bb26f403b", "media": "photo", "latitude": "0", "id": "4232871111", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 01:21:21", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4232870405_c822c7b884_o.jpg", "secret": "89d8b41693", "media": "photo", "latitude": "0", "id": "4232870405", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 01:29:04", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4232869543_4f4e67657b_o.jpg", "secret": "f4fa8b3e70", "media": "photo", "latitude": "0", "id": "4232869543", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 05:14:01", "license": "4", "title": "Fire on Zandhoek, just around the corner from us", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4232868489_0afc503966_o.jpg", "secret": "c869321fc3", "media": "photo", "latitude": "0", "id": "4232868489", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 05:14:48", "license": "4", "title": "Fire on Zandhoek, just around the corner from us 2", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4232867481_479a326f17_o.jpg", "secret": "d953134856", "media": "photo", "latitude": "0", "id": "4232867481", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 10:32:29", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2522/4233635204_30a7c90453_o.jpg", "secret": "2f26f2101e", "media": "photo", "latitude": "0", "id": "4233635204", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 10:33:07", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2654/4232866959_1187bdd34b_o.jpg", "secret": "3d5ce43687", "media": "photo", "latitude": "0", "id": "4232866959", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 10:33:59", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2684/4233638362_771c226a69_o.jpg", "secret": "52e674a073", "media": "photo", "latitude": "0", "id": "4233638362", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 10:34:28", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4232865175_e20f3f22b7_o.jpg", "secret": "0ca14c5703", "media": "photo", "latitude": "0", "id": "4232865175", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 10:37:20", "license": "4", "title": "", "text": "", "album_id": "72157622988158689", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4232864145_b93cd90f4a_o.jpg", "secret": "0cb4c8d632", "media": "photo", "latitude": "0", "id": "4232864145", "tags": "amsterdam fireworks 2010 oudennieuw oudennieuw2010"}, {"datetaken": "2010-01-01 18:00:55", "license": "3", "title": "", "text": "", "album_id": "72157622989404053", "longitude": "21.048817", "url_o": "https://farm5.staticflickr.com/4067/4234201814_b7b04b315d_o.jpg", "secret": "0a1c9b476d", "media": "photo", "latitude": "52.141205", "id": "4234201814", "tags": "new party night fun year impreza sylwester warszawa rok 2010 nowy ursynow ogien sztuczne ognie karolajnat warszafk"}, {"datetaken": "2010-01-01 18:01:00", "license": "3", "title": "", "text": "", "album_id": "72157622989404053", "longitude": "21.048817", "url_o": "https://farm5.staticflickr.com/4054/4234202030_e0ec8f0255_o.jpg", "secret": "3b31d60455", "media": "photo", "latitude": "52.141205", "id": "4234202030", "tags": "new party night fun year impreza sylwester warszawa rok 2010 nowy ursynow ogien sztuczne ognie karolajnat warszafk"}, {"datetaken": "2010-01-01 18:01:07", "license": "3", "title": "", "text": "", "album_id": "72157622989404053", "longitude": "21.048817", "url_o": "https://farm3.staticflickr.com/2659/4234202394_92e54f3bf2_o.jpg", "secret": "3952b43717", "media": "photo", "latitude": "52.141205", "id": "4234202394", "tags": "new party night fun year impreza sylwester warszawa rok 2010 nowy ursynow ogien sztuczne ognie karolajnat warszafk"}, {"datetaken": "2010-01-01 18:01:18", "license": "3", "title": "", "text": "", "album_id": "72157622989404053", "longitude": "21.048817", "url_o": "https://farm3.staticflickr.com/2504/4233430695_da2d0dbf73_o.jpg", "secret": "5ee77916fd", "media": "photo", "latitude": "52.141205", "id": "4233430695", "tags": "new party night fun year impreza sylwester warszawa rok 2010 nowy ursynow ogien sztuczne ognie karolajnat warszafk"}, {"datetaken": "2010-01-01 18:01:25", "license": "3", "title": "", "text": "", "album_id": "72157622989404053", "longitude": "21.048817", "url_o": "https://farm3.staticflickr.com/2550/4234203274_9c2af72a06_o.jpg", "secret": "6fe69e1338", "media": "photo", "latitude": "52.141205", "id": "4234203274", "tags": "new party night fun year impreza sylwester warszawa rok 2010 nowy ursynow ogien sztuczne ognie karolajnat warszafk"}, {"datetaken": "2010-01-01 18:01:32", "license": "3", "title": "", "text": "", "album_id": "72157622989404053", "longitude": "21.048817", "url_o": "https://farm3.staticflickr.com/2201/4234203662_fc8cba34a3_o.jpg", "secret": "210b4f3bd8", "media": "photo", "latitude": "52.141205", "id": "4234203662", "tags": "new party night fun year impreza sylwester warszawa rok 2010 nowy ursynow ogien sztuczne ognie karolajnat warszafk"}, {"datetaken": "2010-01-01 18:01:37", "license": "3", "title": "", "text": "", "album_id": "72157622989404053", "longitude": "21.048817", "url_o": "https://farm5.staticflickr.com/4015/4233431583_70c0b8f1f5_o.jpg", "secret": "47c0c8703b", "media": "photo", "latitude": "52.141205", "id": "4233431583", "tags": "new party night fun year impreza sylwester warszawa rok 2010 nowy ursynow ogien sztuczne ognie karolajnat warszafk"}, {"datetaken": "2010-01-01 18:01:41", "license": "3", "title": "", "text": "", "album_id": "72157622989404053", "longitude": "21.048817", "url_o": "https://farm5.staticflickr.com/4016/4234204068_3ca8b3cac1_o.jpg", "secret": "d3005b2cbb", "media": "photo", "latitude": "52.141205", "id": "4234204068", "tags": "new party night fun year impreza sylwester warszawa rok 2010 nowy ursynow ogien sztuczne ognie karolajnat warszafk"}, {"datetaken": "2010-01-01 18:01:49", "license": "3", "title": "", "text": "", "album_id": "72157622989404053", "longitude": "21.048817", "url_o": "https://farm3.staticflickr.com/2605/4233432093_90085ba6f7_o.jpg", "secret": "ba264bd59e", "media": "photo", "latitude": "52.141205", "id": "4233432093", "tags": "new party night fun year impreza sylwester warszawa rok 2010 nowy ursynow ogien sztuczne ognie karolajnat warszafk"}, {"datetaken": "2010-01-01 18:01:54", "license": "3", "title": "", "text": "", "album_id": "72157622989404053", "longitude": "21.048817", "url_o": "https://farm3.staticflickr.com/2600/4233432313_655ca0a88b_o.jpg", "secret": "7b1a9f9b1d", "media": "photo", "latitude": "52.141205", "id": "4233432313", "tags": "new party night fun year impreza sylwester warszawa rok 2010 nowy ursynow ogien sztuczne ognie karolajnat warszafk"}, {"datetaken": "2010-01-01 18:02:03", "license": "3", "title": "", "text": "", "album_id": "72157622989404053", "longitude": "21.048817", "url_o": "https://farm3.staticflickr.com/2500/4234205100_7a171383d9_o.jpg", "secret": "88fa8fb4fb", "media": "photo", "latitude": "52.141205", "id": "4234205100", "tags": "new party night fun year impreza sylwester warszawa rok 2010 nowy ursynow ogien sztuczne ognie karolajnat warszafk"}, {"datetaken": "2010-01-01 18:02:08", "license": "3", "title": "", "text": "", "album_id": "72157622989404053", "longitude": "21.048817", "url_o": "https://farm3.staticflickr.com/2488/4234205370_a5386e7d37_o.jpg", "secret": "cdeaeb6aa5", "media": "photo", "latitude": "52.141205", "id": "4234205370", "tags": "new party night fun year impreza sylwester warszawa rok 2010 nowy ursynow ogien sztuczne ognie karolajnat warszafk"}, {"datetaken": "2010-01-01 18:02:13", "license": "3", "title": "", "text": "", "album_id": "72157622989404053", "longitude": "21.048817", "url_o": "https://farm5.staticflickr.com/4062/4233433243_187f206bd1_o.jpg", "secret": "f176e1f363", "media": "photo", "latitude": "52.141205", "id": "4233433243", "tags": "new party night fun year impreza sylwester warszawa rok 2010 nowy ursynow ogien sztuczne ognie karolajnat warszafk"}, {"datetaken": "2010-01-01 18:02:18", "license": "3", "title": "", "text": "", "album_id": "72157622989404053", "longitude": "21.048817", "url_o": "https://farm5.staticflickr.com/4061/4233433479_91eec32328_o.jpg", "secret": "cf0a69f54b", "media": "photo", "latitude": "52.141205", "id": "4233433479", "tags": "new party night fun year impreza sylwester warszawa rok 2010 nowy ursynow ogien sztuczne ognie karolajnat warszafk"}, {"datetaken": "2010-01-01 18:02:23", "license": "3", "title": "", "text": "", "album_id": "72157622989404053", "longitude": "21.048817", "url_o": "https://farm3.staticflickr.com/2756/4234206076_3156c521ee_o.jpg", "secret": "0e09f0bb4c", "media": "photo", "latitude": "52.141205", "id": "4234206076", "tags": "new party night fun year impreza sylwester warszawa rok 2010 nowy ursynow ogien sztuczne ognie karolajnat warszafk"}, {"datetaken": "2010-01-01 18:02:28", "license": "3", "title": "", "text": "", "album_id": "72157622989404053", "longitude": "21.048817", "url_o": "https://farm3.staticflickr.com/2686/4233433967_3d72570ebf_o.jpg", "secret": "802e191527", "media": "photo", "latitude": "52.141205", "id": "4233433967", "tags": "new party night fun year impreza sylwester warszawa rok 2010 nowy ursynow ogien sztuczne ognie karolajnat warszafk"}, {"datetaken": "2010-01-01 18:02:33", "license": "3", "title": "", "text": "", "album_id": "72157622989404053", "longitude": "21.048817", "url_o": "https://farm5.staticflickr.com/4062/4234206528_efa1849466_o.jpg", "secret": "345660732d", "media": "photo", "latitude": "52.141205", "id": "4234206528", "tags": "new party night fun year impreza sylwester warszawa rok 2010 nowy ursynow ogien sztuczne ognie karolajnat warszafk"}, {"datetaken": "2010-01-01 13:13:06", "license": "1", "title": "2010 Polar Bear Swim - 01", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm5.staticflickr.com/4043/4234940699_d2a17aa0e7_o.jpg", "secret": "6e110227bb", "media": "photo", "latitude": "40.572859", "id": "4234940699", "tags": "bear brooklyn swim coneyisland polar 2010"}, {"datetaken": "2010-01-01 13:13:12", "license": "1", "title": "2010 Polar Bear Swim - 02", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm3.staticflickr.com/2670/4235716474_32643060ee_o.jpg", "secret": "e24a78bec9", "media": "photo", "latitude": "40.572859", "id": "4235716474", "tags": "bear brooklyn swim coneyisland nina polar 2010"}, {"datetaken": "2010-01-01 13:14:40", "license": "1", "title": "2010 Polar Bear Swim", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm3.staticflickr.com/2780/4235148961_fbb060d906_o.jpg", "secret": "49fd8e1f3d", "media": "video", "latitude": "40.572859", "id": "4235148961", "tags": "bear brooklyn swim coneyisland nina polar 2010"}, {"datetaken": "2010-01-01 13:15:38", "license": "1", "title": "2010 Polar Bear Swim", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm5.staticflickr.com/4061/4235165795_b36b973617_o.jpg", "secret": "4dd0bac4fe", "media": "video", "latitude": "40.572859", "id": "4235165795", "tags": "bear brooklyn swim coneyisland joel polar 2010"}, {"datetaken": "2010-01-01 13:18:02", "license": "1", "title": "2010 Polar Bear Swim - 06", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm5.staticflickr.com/4047/4234941487_d595635a47_o.jpg", "secret": "fbb1fc6e96", "media": "photo", "latitude": "40.572859", "id": "4234941487", "tags": "bear brooklyn swim coneyisland joel nina polar 2010"}, {"datetaken": "2010-01-01 13:20:10", "license": "1", "title": "2010 Polar Bear Swim - 08", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm3.staticflickr.com/2551/4235717208_df6a656c3d_o.jpg", "secret": "17923303b7", "media": "photo", "latitude": "40.572859", "id": "4235717208", "tags": "bear brooklyn swim coneyisland joel nina polar 2010"}, {"datetaken": "2010-01-01 13:20:22", "license": "1", "title": "2010 New Year's Day Polar Bear Swim - 09", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm3.staticflickr.com/2674/4235717626_b0cbcfd922_o.jpg", "secret": "67a0988afd", "media": "photo", "latitude": "40.572859", "id": "4235717626", "tags": "bear brooklyn swim coneyisland joel nina polar 2010"}, {"datetaken": "2010-01-01 13:20:37", "license": "1", "title": "2010 Polar Bear Swim - 10", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm3.staticflickr.com/2687/4234942525_c87f4e56d3_o.jpg", "secret": "904fb3c097", "media": "photo", "latitude": "40.572859", "id": "4234942525", "tags": "bear brooklyn swim coneyisland nina polar 2010"}, {"datetaken": "2010-01-01 13:21:57", "license": "1", "title": "2010 Polar Bear Swim - 12", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm5.staticflickr.com/4048/4234942901_6c589eab66_o.jpg", "secret": "04935d3041", "media": "photo", "latitude": "40.572859", "id": "4234942901", "tags": "bear brooklyn swim coneyisland joel polar coby 2010"}, {"datetaken": "2010-01-01 13:22:14", "license": "1", "title": "2010 Polar Bear Swim - 13", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm5.staticflickr.com/4035/4234943259_9b2e83da3f_o.jpg", "secret": "9b9e6a00e3", "media": "photo", "latitude": "40.572859", "id": "4234943259", "tags": "bear brooklyn swim coneyisland joel nina polar 2010"}, {"datetaken": "2010-01-01 13:23:04", "license": "1", "title": "2010 Polar Bear Swim", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm5.staticflickr.com/4052/4236011684_7b3365a91e_o.jpg", "secret": "e2b77e969a", "media": "video", "latitude": "40.572859", "id": "4236011684", "tags": "bear brooklyn swim coneyisland joel nina polar 2010"}, {"datetaken": "2010-01-01 13:25:14", "license": "1", "title": "2010 Polar Bear Swim - 14", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm5.staticflickr.com/4070/4235719188_59cb7fd544_o.jpg", "secret": "1b88da7899", "media": "photo", "latitude": "40.572859", "id": "4235719188", "tags": "bear wheel brooklyn swim wonder coneyisland polar 2010"}, {"datetaken": "2010-01-01 13:25:18", "license": "1", "title": "2010 Polar Bear Swim - 15", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm3.staticflickr.com/2534/4235719484_c8fa8130b6_o.jpg", "secret": "ae9738cfb5", "media": "photo", "latitude": "40.572859", "id": "4235719484", "tags": "bear wheel brooklyn swim wonder coneyisland polar 2010"}, {"datetaken": "2010-01-01 13:25:31", "license": "1", "title": "2010 Polar Bear Swim - 16", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm5.staticflickr.com/4038/4235719844_94d2cb7b4b_o.jpg", "secret": "8bf3d3cc9c", "media": "photo", "latitude": "40.572859", "id": "4235719844", "tags": "bear brooklyn swim coneyisland joel nina polar 2010"}, {"datetaken": "2010-01-01 13:26:24", "license": "1", "title": "2010 Polar Bear Swim - 17", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm5.staticflickr.com/4053/4235720224_8c809d9353_o.jpg", "secret": "88198cbe90", "media": "photo", "latitude": "40.572859", "id": "4235720224", "tags": "bear brooklyn swim coneyisland polar 2010"}, {"datetaken": "2010-01-01 13:26:27", "license": "1", "title": "2010 Polar Bear Swim - 18", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm5.staticflickr.com/4042/4234945175_6a46b33baa_o.jpg", "secret": "697dbd65c2", "media": "photo", "latitude": "40.572859", "id": "4234945175", "tags": "bear brooklyn swim coneyisland polar 2010"}, {"datetaken": "2010-01-01 13:26:40", "license": "1", "title": "2010 Polar Bear Swim - 19", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm3.staticflickr.com/2579/4234945599_c4c51c8ea5_o.jpg", "secret": "65184417bc", "media": "photo", "latitude": "40.572859", "id": "4234945599", "tags": "bear brooklyn swim coneyisland nina polar coby 2010"}, {"datetaken": "2010-01-01 13:28:01", "license": "1", "title": "2010 Polar Bear Swim - 20", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm3.staticflickr.com/2770/4235721414_1744c485ec_o.jpg", "secret": "254592cc13", "media": "photo", "latitude": "40.572859", "id": "4235721414", "tags": "bear wheel brooklyn swim wonder coneyisland pam polar 2010"}, {"datetaken": "2010-01-01 13:29:03", "license": "1", "title": "Wonder wheel - too cold for the cars?", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm5.staticflickr.com/4052/4234946483_1b3a4e2061_o.jpg", "secret": "1bd249466e", "media": "photo", "latitude": "40.572859", "id": "4234946483", "tags": "bear wheel brooklyn swim wonder coneyisland polar 2010"}, {"datetaken": "2010-01-01 13:56:25", "license": "1", "title": "2010 Polar Bear Swim - 22", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm5.staticflickr.com/4021/4234946941_d47ff68e04_o.jpg", "secret": "abec53818e", "media": "photo", "latitude": "40.572859", "id": "4234946941", "tags": "bear brooklyn swim coneyisland joel nina polar 2010"}, {"datetaken": "2010-01-01 13:56:31", "license": "1", "title": "2010 Polar Bear Swim - 23", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm5.staticflickr.com/4060/4234947355_e43beeb30a_o.jpg", "secret": "f53ef81d3b", "media": "photo", "latitude": "40.572859", "id": "4234947355", "tags": "bear brooklyn swim coneyisland joel nina polar 2010"}, {"datetaken": "2010-01-01 13:56:39", "license": "1", "title": "2010 Polar Bear Swim - 24", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm5.staticflickr.com/4021/4235723114_4c24866b40_o.jpg", "secret": "176e00037c", "media": "photo", "latitude": "40.572859", "id": "4235723114", "tags": "bear brooklyn swim coneyisland joel nina polar 2010"}, {"datetaken": "2010-01-01 13:57:12", "license": "1", "title": "2010 Polar Bear Swim - 25", "text": "", "album_id": "72157622992647403", "longitude": "-73.980817", "url_o": "https://farm5.staticflickr.com/4008/4235723440_0ae7f8ca52_o.jpg", "secret": "ed3fde5dc8", "media": "photo", "latitude": "40.572859", "id": "4235723440", "tags": "bear brooklyn swim coneyisland army boardwalk polar 2010"}, {"datetaken": "2010-01-01 15:29:14", "license": "1", "title": "Kashkar Cafe", "text": "", "album_id": "72157622992647403", "longitude": "-73.955519", "url_o": "https://farm3.staticflickr.com/2491/4234948619_41492b4712_o.jpg", "secret": "5d1ffd62d6", "media": "photo", "latitude": "40.577634", "id": "4234948619", "tags": "bear food brooklyn swim restaurant uighur polar brightonbeach 2010 uygur"}, {"datetaken": "2011-10-29 09:47:56", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7148/6613013833_edc53ee308_o.jpg", "secret": "2cfd2f2382", "media": "photo", "latitude": "0", "id": "6613013833", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 09:55:02", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7164/6613014977_bbcc0497a0_o.jpg", "secret": "3ebc382da0", "media": "photo", "latitude": "0", "id": "6613014977", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 09:57:08", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7161/6613016405_dc7da62b07_o.jpg", "secret": "fbff16c8cd", "media": "photo", "latitude": "0", "id": "6613016405", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:00:06", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7175/6613017259_f5cdf58e19_o.jpg", "secret": "e51fbba1ec", "media": "photo", "latitude": "0", "id": "6613017259", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:01:32", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7035/6613018299_f6bdcb51c0_o.jpg", "secret": "e5c28942c2", "media": "photo", "latitude": "0", "id": "6613018299", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:03:46", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7025/6613059487_0837a51d37_o.jpg", "secret": "f830226fdc", "media": "photo", "latitude": "0", "id": "6613059487", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:04:58", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7001/6613060639_890e3247fa_o.jpg", "secret": "1e24fe1f71", "media": "photo", "latitude": "0", "id": "6613060639", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:11:56", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7175/6613062201_aa1b2e0580_o.jpg", "secret": "8323d4c1e4", "media": "photo", "latitude": "0", "id": "6613062201", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:12:10", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7158/6613063521_21bc370c9c_o.jpg", "secret": "2b9873a80f", "media": "photo", "latitude": "0", "id": "6613063521", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:13:36", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7175/6613064839_1e44222490_o.jpg", "secret": "157f312d62", "media": "photo", "latitude": "0", "id": "6613064839", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:15:48", "license": "4", "title": "Doodle Butcher", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7012/6613066021_2a1c89b164_o.jpg", "secret": "5a28f4cfc9", "media": "photo", "latitude": "0", "id": "6613066021", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:16:16", "license": "4", "title": "Doodle Butcher", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7153/6613067253_70215efa8f_o.jpg", "secret": "0164af1a91", "media": "photo", "latitude": "0", "id": "6613067253", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:16:58", "license": "4", "title": "Chongqing Street Food", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6613073537_d2b64b158a_o.jpg", "secret": "cfbb8f06cd", "media": "photo", "latitude": "0", "id": "6613073537", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:18:30", "license": "4", "title": "Chongqing Street Food", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6613074667_c2bcbc516f_o.jpg", "secret": "f74f9a8555", "media": "photo", "latitude": "0", "id": "6613074667", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:20:04", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7160/6613075797_7ee7c49b9e_o.jpg", "secret": "2cd6724e56", "media": "photo", "latitude": "0", "id": "6613075797", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:20:48", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7034/6613076845_5d886fb8bd_o.jpg", "secret": "8640e502bf", "media": "photo", "latitude": "0", "id": "6613076845", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:21:26", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7154/6613078105_9f4259a19b_o.jpg", "secret": "8e41098d09", "media": "photo", "latitude": "0", "id": "6613078105", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:27:36", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7160/6613079731_19f0a83dba_o.jpg", "secret": "a8d8d713c9", "media": "photo", "latitude": "0", "id": "6613079731", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:31:04", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7022/6613080791_3d6891fd28_o.jpg", "secret": "cd7caf00d2", "media": "photo", "latitude": "0", "id": "6613080791", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:31:24", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7153/6613082213_fb2075efac_o.jpg", "secret": "8eeb0e7575", "media": "photo", "latitude": "0", "id": "6613082213", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:36:20", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6613083557_fcd26e284c_o.jpg", "secret": "97d940fc22", "media": "photo", "latitude": "0", "id": "6613083557", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:36:24", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7163/6613085141_bd281352fb_o.jpg", "secret": "0e202b9aba", "media": "photo", "latitude": "0", "id": "6613085141", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:38:46", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7002/6613086681_18a42a9ed9_o.jpg", "secret": "d723dbd897", "media": "photo", "latitude": "0", "id": "6613086681", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:39:20", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7148/6613087841_2bef3dec7e_o.jpg", "secret": "a05cebd78c", "media": "photo", "latitude": "0", "id": "6613087841", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:42:34", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6613088915_a05ce707db_o.jpg", "secret": "3560bca1a0", "media": "photo", "latitude": "0", "id": "6613088915", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 10:45:58", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7007/6613090045_f228e641e5_o.jpg", "secret": "6350f1d1af", "media": "photo", "latitude": "0", "id": "6613090045", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-10-29 11:08:32", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7144/6613091143_6569bc5709_o.jpg", "secret": "54bf58a018", "media": "photo", "latitude": "0", "id": "6613091143", "tags": "china chongqing doodle doodlestreet graffiti huangjueping"}, {"datetaken": "2011-10-29 11:15:04", "license": "4", "title": "Chongqing Doodle Street", "text": "", "album_id": "72157628664816691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7152/6613092685_3b8a2d08d6_o.jpg", "secret": "3fc68b2297", "media": "photo", "latitude": "0", "id": "6613092685", "tags": "china graffiti doodle chongqing huangjueping doodlestreet"}, {"datetaken": "2011-12-31 18:49:15", "license": "3", "title": "Tree", "text": "", "album_id": "72157628666284151", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7015/6613765525_3e83b7e5a6_o.jpg", "secret": "85c8f3ed8e", "media": "photo", "latitude": "0", "id": "6613765525", "tags": "tree highcontrast 2011 newyear201112"}, {"datetaken": "2011-12-31 18:58:22", "license": "3", "title": "Tree", "text": "", "album_id": "72157628666284151", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7032/6613797907_d22630a0c9_o.jpg", "secret": "dee97434a3", "media": "photo", "latitude": "0", "id": "6613797907", "tags": "bw tree silhouette 2011 newyear201112"}, {"datetaken": "2011-12-31 18:58:50", "license": "3", "title": "XMAS TREE", "text": "", "album_id": "72157628666284151", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7147/6613800681_8bbca3152a_o.jpg", "secret": "9d72b4ef65", "media": "photo", "latitude": "0", "id": "6613800681", "tags": "xmastree 2011 newyear201112"}, {"datetaken": "2011-12-31 19:00:35", "license": "3", "title": "XMAS TREE", "text": "", "album_id": "72157628666284151", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7155/6613807693_e33f6c8c28_o.jpg", "secret": "b93849266c", "media": "photo", "latitude": "0", "id": "6613807693", "tags": "xmastree bwcolor 2011 newyear201112"}, {"datetaken": "2011-12-31 19:02:27", "license": "3", "title": "Lights", "text": "", "album_id": "72157628666284151", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7007/6613811263_bbc9c9a477_o.jpg", "secret": "da6311fa9b", "media": "photo", "latitude": "0", "id": "6613811263", "tags": "xmastree 2011 newyear201112"}, {"datetaken": "2011-12-31 19:03:23", "license": "3", "title": "Booths", "text": "", "album_id": "72157628666284151", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7016/6613814091_10875f4ce2_o.jpg", "secret": "d43894abc8", "media": "photo", "latitude": "0", "id": "6613814091", "tags": "xmastree 2011 newyear201112"}, {"datetaken": "2011-12-31 19:04:23", "license": "3", "title": "XMAS TREE", "text": "", "album_id": "72157628666284151", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7028/6613821929_c363356d85_o.jpg", "secret": "02c5d1d2e9", "media": "photo", "latitude": "0", "id": "6613821929", "tags": "xmastree 2011 newyear201112"}, {"datetaken": "2011-12-31 20:08:17", "license": "3", "title": "Chuy's lights", "text": "", "album_id": "72157628666284151", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7021/6613824213_f360e8916a_o.jpg", "secret": "5089b00ced", "media": "photo", "latitude": "0", "id": "6613824213", "tags": "chuys 2011 newyear201112"}, {"datetaken": "2011-12-31 20:52:59", "license": "3", "title": "Profile", "text": "", "album_id": "72157628666284151", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7145/6613838251_d55526b88b_o.jpg", "secret": "e1e5573366", "media": "photo", "latitude": "0", "id": "6613838251", "tags": "bw profile 2011 newyear201112"}, {"datetaken": "2012-01-01 11:44:40", "license": "3", "title": "Web of lights", "text": "", "album_id": "72157628666284151", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7160/6613882739_1309369e52_o.jpg", "secret": "0007c0088e", "media": "photo", "latitude": "0", "id": "6613882739", "tags": "fakepolaroid 2011 poladroid newyear201112"}, {"datetaken": "2012-01-01 11:45:02", "license": "3", "title": "Star", "text": "", "album_id": "72157628666284151", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7016/6613883193_b3805bfecf_o.jpg", "secret": "525d802cb1", "media": "photo", "latitude": "0", "id": "6613883193", "tags": "fakepolaroid 2011 poladroid newyear201112"}, {"datetaken": "2012-01-01 11:45:49", "license": "3", "title": "Lights", "text": "", "album_id": "72157628666284151", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7021/6613884055_c7835ac410_o.jpg", "secret": "32e876b6d6", "media": "photo", "latitude": "0", "id": "6613884055", "tags": "fakepolaroid 2011 poladroid newyear201112"}, {"datetaken": "2012-01-01 18:30:10", "license": "3", "title": "Web of lights", "text": "", "album_id": "72157628666284151", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7143/6613879341_95890bfcd7_o.jpg", "secret": "a42519a232", "media": "photo", "latitude": "0", "id": "6613879341", "tags": "fakepolaroid 2011 poladroid newyear201112"}, {"datetaken": "2012-01-01 18:30:19", "license": "3", "title": "Lights", "text": "", "album_id": "72157628666284151", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7172/6613880217_9673a161e8_o.jpg", "secret": "620b7184e9", "media": "photo", "latitude": "0", "id": "6613880217", "tags": "fakepolaroid 2011 poladroid newyear201112"}, {"datetaken": "2012-01-01 18:30:27", "license": "3", "title": "Star", "text": "", "album_id": "72157628666284151", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7007/6613881085_5c2ef8dbc4_o.jpg", "secret": "f7e9bd0f10", "media": "photo", "latitude": "0", "id": "6613881085", "tags": "fakepolaroid 2011 poladroid newyear201112"}, {"datetaken": "2010-10-29 16:27:00", "license": "5", "title": "\u9ad8\u96c4\u8eca\u7ad9-\u8de8\u7ad9\u6a4b", "text": "", "album_id": "72157625167335671", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/5137208587_3dabae6cd3_o.jpg", "secret": "ed803d2168", "media": "photo", "latitude": "0", "id": "5137208587", "tags": "\u9ad8\u96c4 \u9ad8\u96c4\u8eca\u7ad9"}, {"datetaken": "2010-10-29 16:27:47", "license": "5", "title": "\u9ad8\u96c4\u8eca\u7ad9-\u8de8\u7ad9\u6a4b2", "text": "", "album_id": "72157625167335671", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1136/5137209219_2007d18f95_o.jpg", "secret": "3dece72a2f", "media": "photo", "latitude": "0", "id": "5137209219", "tags": "\u9ad8\u96c4 \u9ad8\u96c4\u8eca\u7ad9"}, {"datetaken": "2010-10-29 16:28:21", "license": "5", "title": "\u9ad8\u96c4\u8eca\u7ad9-\u8de8\u7ad9\u6a4b3", "text": "", "album_id": "72157625167335671", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/5137815878_3fc8c45789_o.jpg", "secret": "ca7cae27b8", "media": "photo", "latitude": "0", "id": "5137815878", "tags": "\u9ad8\u96c4 \u9ad8\u96c4\u8eca\u7ad9"}, {"datetaken": "2010-10-29 16:28:28", "license": "5", "title": "\u9ad8\u96c4\u8eca\u7ad9-\u8de8\u7ad9\u6a4b4", "text": "", "album_id": "72157625167335671", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1169/5137210373_be39d4637d_o.jpg", "secret": "cb694179ba", "media": "photo", "latitude": "0", "id": "5137210373", "tags": "\u9ad8\u96c4 \u9ad8\u96c4\u8eca\u7ad9"}, {"datetaken": "2010-10-29 17:16:32", "license": "5", "title": "\u9ad8\u96c4\u5922\u6642\u4ee3", "text": "", "album_id": "72157625167335671", "longitude": "120.311752", "url_o": "https://farm2.staticflickr.com/1210/5137211155_9ce289fd36_o.jpg", "secret": "78faf83260", "media": "photo", "latitude": "22.593830", "id": "5137211155", "tags": "\u9ad8\u96c4 \u5922\u6642\u4ee3"}, {"datetaken": "2010-10-29 17:16:55", "license": "5", "title": "\u9ad8\u96c4\u5922\u6642\u4ee32", "text": "", "album_id": "72157625167335671", "longitude": "120.340633", "url_o": "https://farm5.staticflickr.com/4013/5137211827_2b216ab105_o.jpg", "secret": "bc9b80e40b", "media": "photo", "latitude": "22.600540", "id": "5137211827", "tags": "\u9ad8\u96c4 \u5922\u6642\u4ee3"}, {"datetaken": "2010-10-29 17:18:42", "license": "5", "title": "\u9ad8\u96c4\u5922\u6642\u4ee33", "text": "", "album_id": "72157625167335671", "longitude": "120.340633", "url_o": "https://farm2.staticflickr.com/1157/5137818414_55530ec6da_o.jpg", "secret": "330b05c911", "media": "photo", "latitude": "22.600540", "id": "5137818414", "tags": "\u9ad8\u96c4 \u5922\u6642\u4ee3"}, {"datetaken": "2010-10-29 17:18:55", "license": "5", "title": "\u9ad8\u96c4\u5922\u6642\u4ee34", "text": "", "album_id": "72157625167335671", "longitude": "120.340633", "url_o": "https://farm2.staticflickr.com/1320/5137818936_3e8b9ef5b6_o.jpg", "secret": "e67d4f1574", "media": "photo", "latitude": "22.600540", "id": "5137818936", "tags": "\u9ad8\u96c4 \u5922\u6642\u4ee3"}, {"datetaken": "2010-10-29 17:42:00", "license": "5", "title": "\u9ad8\u96c4\u5922\u6642\u4ee3-\u6469\u5929\u8f2a", "text": "", "album_id": "72157625167335671", "longitude": "120.340633", "url_o": "https://farm5.staticflickr.com/4071/5137213595_8ba536be90_o.jpg", "secret": "b67520b6dd", "media": "photo", "latitude": "22.600540", "id": "5137213595", "tags": "\u9ad8\u96c4 \u5922\u6642\u4ee3"}, {"datetaken": "2010-10-29 17:42:28", "license": "5", "title": "\u9ad8\u96c4\u5922\u6642\u4ee3-\u6469\u5929\u8f2a2", "text": "", "album_id": "72157625167335671", "longitude": "120.340633", "url_o": "https://farm5.staticflickr.com/4104/5137820350_bcefb1afce_o.jpg", "secret": "1270e800b1", "media": "photo", "latitude": "22.600540", "id": "5137820350", "tags": "\u9ad8\u96c4 \u5922\u6642\u4ee3"}, {"datetaken": "2010-10-29 17:46:00", "license": "5", "title": "\u9ad8\u96c4\u5922\u6642\u4ee3-\u89c0\u666f\u53f0", "text": "", "album_id": "72157625167335671", "longitude": "120.340633", "url_o": "https://farm2.staticflickr.com/1063/5137214701_5a51842155_o.jpg", "secret": "0411144939", "media": "photo", "latitude": "22.600540", "id": "5137214701", "tags": "\u9ad8\u96c4 \u5922\u6642\u4ee3"}, {"datetaken": "2010-10-29 17:46:16", "license": "5", "title": "\u9ad8\u96c4\u5922\u6642\u4ee3-\u89c0\u666f\u53f02", "text": "", "album_id": "72157625167335671", "longitude": "120.340633", "url_o": "https://farm5.staticflickr.com/4014/5137821344_ea3a2d9905_o.jpg", "secret": "1211178ec9", "media": "photo", "latitude": "22.600540", "id": "5137821344", "tags": "\u9ad8\u96c4 \u5922\u6642\u4ee3"}, {"datetaken": "2010-10-29 18:44:00", "license": "5", "title": "\u9ad8\u96c4\u5922\u6642\u4ee35", "text": "", "album_id": "72157625167335671", "longitude": "120.340633", "url_o": "https://farm5.staticflickr.com/4052/5137821928_f6f99fcb85_o.jpg", "secret": "33aa6a37e4", "media": "photo", "latitude": "22.600540", "id": "5137821928", "tags": "\u9ad8\u96c4 \u5922\u6642\u4ee3"}, {"datetaken": "2010-10-29 18:44:00", "license": "5", "title": "\u9ad8\u96c4\u5922\u6642\u4ee36", "text": "", "album_id": "72157625167335671", "longitude": "120.340633", "url_o": "https://farm5.staticflickr.com/4086/5137216553_6b20c59dca_o.jpg", "secret": "bf5f1ff7e4", "media": "photo", "latitude": "22.600540", "id": "5137216553", "tags": "\u9ad8\u96c4 \u5922\u6642\u4ee3"}, {"datetaken": "2010-10-29 19:00:00", "license": "5", "title": "\u9ad8\u96c4\u7684\u591c\u665a", "text": "", "album_id": "72157625167335671", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/5137217021_8a62986c30_o.jpg", "secret": "73b64c8f51", "media": "photo", "latitude": "0", "id": "5137217021", "tags": "\u9ad8\u96c4"}, {"datetaken": "2010-10-29 19:00:00", "license": "5", "title": "\u9ad8\u96c4\u7684\u591c\u665a2", "text": "", "album_id": "72157625167335671", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1218/5137823560_c9c200e4d8_o.jpg", "secret": "bd7ebc63db", "media": "photo", "latitude": "0", "id": "5137823560", "tags": "\u9ad8\u96c4"}, {"datetaken": "2010-10-29 19:00:00", "license": "5", "title": "\u9ad8\u96c4\u7684\u591c\u665a3", "text": "", "album_id": "72157625167335671", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1387/5137218157_21d8f54394_o.jpg", "secret": "4397db858c", "media": "photo", "latitude": "0", "id": "5137218157", "tags": "\u9ad8\u96c4"}, {"datetaken": "2010-10-29 19:00:00", "license": "5", "title": "\u9ad8\u96c4\u7684\u591c\u665a4", "text": "", "album_id": "72157625167335671", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/5137824704_105e6862f8_o.jpg", "secret": "876a6d15f6", "media": "photo", "latitude": "0", "id": "5137824704", "tags": "\u9ad8\u96c4"}, {"datetaken": "2010-10-29 19:14:21", "license": "5", "title": "\u9ad8\u96c4\u6377\u904b\u51f1\u65cb\u7ad9\u5165\u53e3", "text": "", "album_id": "72157625167335671", "longitude": "120.316944", "url_o": "https://farm5.staticflickr.com/4046/5137219251_c238bac449_o.jpg", "secret": "1682b76205", "media": "photo", "latitude": "22.594538", "id": "5137219251", "tags": "\u9ad8\u96c4 \u9ad8\u96c4\u6377\u904b"}, {"datetaken": "2010-10-29 19:15:15", "license": "5", "title": "\u9ad8\u96c4\u6377\u904b\u51f1\u65cb\u7ad9\u5165\u53e32", "text": "", "album_id": "72157625167335671", "longitude": "120.316944", "url_o": "https://farm2.staticflickr.com/1394/5137219717_238f80752b_o.jpg", "secret": "c003fbdc4a", "media": "photo", "latitude": "22.594538", "id": "5137219717", "tags": "\u9ad8\u96c4 \u9ad8\u96c4\u6377\u904b"}, {"datetaken": "2010-10-29 19:20:34", "license": "5", "title": "\u9ad8\u96c4\u6377\u904b\u55ae\u7a0b\u7968", "text": "", "album_id": "72157625167335671", "longitude": "120.316944", "url_o": "https://farm5.staticflickr.com/4026/5137220331_57d962dbce_o.jpg", "secret": "c02ebca691", "media": "photo", "latitude": "22.594538", "id": "5137220331", "tags": "\u9ad8\u96c4 \u9ad8\u96c4\u6377\u904b"}, {"datetaken": "2010-10-29 19:21:00", "license": "5", "title": "\u9ad8\u96c4\u6377\u904b\u51f1\u65cb\u7ad93", "text": "", "album_id": "72157625167335671", "longitude": "120.316944", "url_o": "https://farm2.staticflickr.com/1254/5137826860_3b1e5ea85e_o.jpg", "secret": "73ee825c47", "media": "photo", "latitude": "22.594538", "id": "5137826860", "tags": "\u9ad8\u96c4 \u9ad8\u96c4\u6377\u904b"}, {"datetaken": "2010-10-29 19:21:16", "license": "5", "title": "\u9ad8\u96c4\u6377\u904b\u51f1\u65cb\u7ad9", "text": "", "album_id": "72157625167335671", "longitude": "120.293228", "url_o": "https://farm2.staticflickr.com/1358/5137827586_7bb9dc3d14_o.jpg", "secret": "ecf2366940", "media": "photo", "latitude": "22.672569", "id": "5137827586", "tags": "\u9ad8\u96c4 \u9ad8\u96c4\u6377\u904b"}, {"datetaken": "2010-10-29 19:21:24", "license": "5", "title": "\u9ad8\u96c4\u6377\u904b\u51f1\u65cb\u7ad92", "text": "", "album_id": "72157625167335671", "longitude": "120.316944", "url_o": "https://farm2.staticflickr.com/1135/5137222237_d104cedaa1_o.jpg", "secret": "7e8554ebbb", "media": "photo", "latitude": "22.594538", "id": "5137222237", "tags": "\u9ad8\u96c4 \u9ad8\u96c4\u6377\u904b"}, {"datetaken": "2010-10-29 19:47:55", "license": "5", "title": "\u9ad8\u96c4\u7684\u6a21\u64ec\u5716", "text": "", "album_id": "72157625167335671", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1066/5137828588_aed843fcf3_o.jpg", "secret": "9eca5a9128", "media": "photo", "latitude": "0", "id": "5137828588", "tags": "\u9ad8\u96c4"}, {"datetaken": "2010-10-29 19:48:00", "license": "5", "title": "\u9ad8\u96c4\u7684\u6a21\u64ec\u57162", "text": "", "album_id": "72157625167335671", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/5137223103_5dd011ecbe_o.jpg", "secret": "2a920fbf63", "media": "photo", "latitude": "0", "id": "5137223103", "tags": "\u9ad8\u96c4"}, {"datetaken": "2010-10-24 09:46:41", "license": "1", "title": "Soupkitchen - where am I?", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4126/5122797216_7c5a31a69d_o.jpg", "secret": "bac42e5a31", "media": "photo", "latitude": "0", "id": "5122797216", "tags": "travel amsterdam swift sibos 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 09:49:08", "license": "1", "title": "Looking up - UGG", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1199/5122194593_6da873a993_o.jpg", "secret": "3f23141484", "media": "photo", "latitude": "0", "id": "5122194593", "tags": "travel amsterdam swift sibos 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 09:49:50", "license": "1", "title": "No juju!", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1364/5122194149_84804a993f_o.jpg", "secret": "6004bafb76", "media": "photo", "latitude": "0", "id": "5122194149", "tags": "travel amsterdam swift sibos 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 09:52:07", "license": "1", "title": "XXX love bicycle - why, it's Amsterdam, of course!", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4130/5122194361_8c83937986_o.jpg", "secret": "1bd77a2ac0", "media": "photo", "latitude": "0", "id": "5122194361", "tags": "travel amsterdam swift sibos 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 09:53:09", "license": "1", "title": "Rondvaart - take a boat tour of the canals...maybe later", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1381/5122194865_3527b2efef_o.jpg", "secret": "8f3b3b70b2", "media": "photo", "latitude": "0", "id": "5122194865", "tags": "travel amsterdam swift sibos 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 10:09:28", "license": "1", "title": "Hier zijn wij nu - Here we are now....in case you were wondering...", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/5124822811_2952f31b1d_o.jpg", "secret": "b27c80dd19", "media": "photo", "latitude": "0", "id": "5124822811", "tags": "travel amsterdam fair swift damplein sibos foor 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 10:11:48", "license": "1", "title": "Looking up at the Whirlymagig", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/5124823109_24a47456b2_o.jpg", "secret": "df0d19e404", "media": "photo", "latitude": "0", "id": "5124823109", "tags": "travel amsterdam fair swift damplein sibos foor 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 10:12:02", "license": "1", "title": "A typical local girl (apparently) basking in the spotlight", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1221/5124823405_0b06189d91_o.jpg", "secret": "d61287abc1", "media": "photo", "latitude": "0", "id": "5124823405", "tags": "travel amsterdam fair swift damplein sibos foor 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 10:15:05", "license": "1", "title": "Power Dancer and the Big Wheel", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1155/5125429400_8e8a351c00_o.jpg", "secret": "053851ef24", "media": "photo", "latitude": "0", "id": "5125429400", "tags": "travel amsterdam fair swift damplein sibos foor 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 10:16:25", "license": "1", "title": "Closed - it is still too early", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1143/5124824037_cccff6316c_o.jpg", "secret": "463c36e11e", "media": "photo", "latitude": "0", "id": "5124824037", "tags": "travel amsterdam fair swift damplein sibos foor 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 10:22:13", "license": "1", "title": "Early morning walk past the bicycles over the canal", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/5128182202_b0ffdc8e74_o.jpg", "secret": "6d24647ff3", "media": "photo", "latitude": "0", "id": "5128182202", "tags": "travel amsterdam swift sibos 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 10:23:04", "license": "1", "title": "Sexy Amsterdam - obviously...and already open!", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/5128182520_9e8f1b93b5_o.jpg", "secret": "8bcf04c0cc", "media": "photo", "latitude": "0", "id": "5128182520", "tags": "travel amsterdam swift sibos 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 10:26:22", "license": "1", "title": "The Bulldog - the first Coffeeshop", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/5127590425_2de4aefc4e_o.jpg", "secret": "76b05b7ee8", "media": "photo", "latitude": "0", "id": "5127590425", "tags": "travel amsterdam coffeeshop swift sibos 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 10:26:56", "license": "1", "title": "Bulldog - Amsterdam", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/5127590803_fbd966b067_o.jpg", "secret": "9665eb00bd", "media": "photo", "latitude": "0", "id": "5127590803", "tags": "travel amsterdam coffeeshop swift sibos 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 10:32:45", "license": "1", "title": "W is for Wallen - I think", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4087/5135360798_40ebe74859_o.jpg", "secret": "9012f1b20a", "media": "photo", "latitude": "0", "id": "5135360798", "tags": "amsterdam district swift walls redlight sibos wallen afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 10:34:54", "license": "1", "title": "Green Light District - Amsterdam", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/5131721538_14056e23b2_o.jpg", "secret": "fbdfe1cacb", "media": "photo", "latitude": "0", "id": "5131721538", "tags": "travel amsterdam swift sibos 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 10:45:39", "license": "1", "title": "Everything seems normal till you look a bit closer!", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1214/5131120595_5a5eb05839_o.jpg", "secret": "738303d1d1", "media": "photo", "latitude": "0", "id": "5131120595", "tags": "travel amsterdam swift sibos 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 10:50:05", "license": "1", "title": "Red Light Fashion - Amsterdam", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1236/5131121387_49af5b3142_o.jpg", "secret": "cd0387df1c", "media": "photo", "latitude": "0", "id": "5131121387", "tags": "travel amsterdam swift sibos 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 10:58:21", "license": "1", "title": "Behind the Wallen - Something of a Gaudi-feel", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1154/5131722638_366ed8e2e1_o.jpg", "secret": "0824d3fa3e", "media": "photo", "latitude": "0", "id": "5131722638", "tags": "travel amsterdam swift sibos 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 11:10:05", "license": "1", "title": "Perdu Theater - Amsterdam", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1219/5131122031_5d8971b319_o.jpg", "secret": "c4012c0496", "media": "photo", "latitude": "0", "id": "5131122031", "tags": "travel amsterdam swift sibos 5photosaday afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 11:14:51", "license": "1", "title": "These are a bit odd - they do not seem to be lights....", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1360/5135359936_c7f0401bd5_o.jpg", "secret": "81e3ecbf4a", "media": "photo", "latitude": "0", "id": "5135359936", "tags": "amsterdam swift sibos afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 11:24:30", "license": "1", "title": "Cabin 15 - back at the big wheel", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1049/5134761455_55235f8663_o.jpg", "secret": "c155cdfbfb", "media": "photo", "latitude": "0", "id": "5134761455", "tags": "amsterdam wheel ferris swift bigwheel sibos afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-10-24 11:25:11", "license": "1", "title": "...and a witch on her broomstick for Halloween!", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/5135361154_4eac0eeae8_o.jpg", "secret": "de7a63d2c9", "media": "photo", "latitude": "0", "id": "5135361154", "tags": "halloween amsterdam wheel witch ferris swift bigwheel sibos afsdxvrzoomnikkor18200mmf3556gifed sibos2010 broomkstick"}, {"datetaken": "2010-10-24 11:25:43", "license": "1", "title": "Looking up at the big wheel", "text": "", "album_id": "72157625257917460", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/5134761729_b1276557e9_o.jpg", "secret": "326bc72fa1", "media": "photo", "latitude": "0", "id": "5134761729", "tags": "amsterdam wheel ferris swift bigwheel sibos afsdxvrzoomnikkor18200mmf3556gifed sibos2010"}, {"datetaken": "2010-07-02 21:35:46", "license": "3", "title": "DSC_0350_01", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4121/4756853130_f839d7a16d_o.jpg", "secret": "e488b547b6", "media": "photo", "latitude": "33.751747", "id": "4756853130", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-07-02 21:37:36", "license": "3", "title": "DSC_0404_01", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4097/4756853412_354fcceeaf_o.jpg", "secret": "0b832e1503", "media": "photo", "latitude": "33.751747", "id": "4756853412", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-07-02 21:39:43", "license": "3", "title": "DSC_0423_01", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4102/4756216069_c36141cc2e_o.jpg", "secret": "1c0401c715", "media": "photo", "latitude": "33.751747", "id": "4756216069", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-07-02 21:39:54", "license": "3", "title": "DSC_0424_01", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4120/4756854206_07de796dff_o.jpg", "secret": "ef40a645cb", "media": "photo", "latitude": "33.751747", "id": "4756854206", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-07-02 21:40:22", "license": "3", "title": "DSC_0426_01", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4116/4756216661_4dd1403107_o.jpg", "secret": "6534c8c50a", "media": "photo", "latitude": "33.751747", "id": "4756216661", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-07-02 21:40:37", "license": "3", "title": "DSC_0427_01", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4093/4756854660_acb8e15fd7_o.jpg", "secret": "2455f940ef", "media": "photo", "latitude": "33.751747", "id": "4756854660", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-07-02 21:44:21", "license": "3", "title": "DSC_0469_01", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4141/4756217155_241e83166a_o.jpg", "secret": "c9c0d04d5b", "media": "photo", "latitude": "33.751747", "id": "4756217155", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-07-02 21:44:54", "license": "3", "title": "DSC_0474_01", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4119/4756855488_e21e2f1a6d_o.jpg", "secret": "951921fb65", "media": "photo", "latitude": "33.751747", "id": "4756855488", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-07-02 21:45:11", "license": "3", "title": "DSC_0475_01", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4139/4756855768_fc4640bc6e_o.jpg", "secret": "701ff9ab28", "media": "photo", "latitude": "33.751747", "id": "4756855768", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-07-02 21:45:19", "license": "3", "title": "DSC_0477_01", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4136/4756856030_ae74ddc25c_o.jpg", "secret": "229fe6151b", "media": "photo", "latitude": "33.751747", "id": "4756856030", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-07-02 21:49:37", "license": "3", "title": "DSC_0518", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4093/4756218907_766e0b87a6_o.jpg", "secret": "3cbbcd18b8", "media": "photo", "latitude": "33.751747", "id": "4756218907", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-07-02 21:49:46", "license": "3", "title": "DSC_0519", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4099/4756856978_1643b76794_o.jpg", "secret": "8442381542", "media": "photo", "latitude": "33.751747", "id": "4756856978", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-07-02 21:49:52", "license": "3", "title": "DSC_0523", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4142/4756219861_eb069d6eca_o.jpg", "secret": "74dfd4c630", "media": "photo", "latitude": "33.751747", "id": "4756219861", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-07-02 21:50:18", "license": "3", "title": "DSC_0527", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4138/4756858004_f88d515006_o.jpg", "secret": "9743e2770b", "media": "photo", "latitude": "33.751747", "id": "4756858004", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-07-02 21:50:36", "license": "3", "title": "DSC_0530", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4076/4756220399_204d6eb65a_o.jpg", "secret": "17a098d5c0", "media": "photo", "latitude": "33.751747", "id": "4756220399", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-07-02 21:50:40", "license": "3", "title": "DSC_0531", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4136/4756220561_2eb7feb8c2_o.jpg", "secret": "0f7ddd710e", "media": "photo", "latitude": "33.751747", "id": "4756220561", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-07-02 21:50:56", "license": "3", "title": "DSC_0538", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4101/4756858618_e2fccd82d0_o.jpg", "secret": "f2b5da213f", "media": "photo", "latitude": "33.751747", "id": "4756858618", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-07-02 21:51:06", "license": "3", "title": "DSC_0544", "text": "", "album_id": "72157624285494115", "longitude": "-84.412078", "url_o": "https://farm5.staticflickr.com/4093/4756859290_4935e443f3_o.jpg", "secret": "72c23c2d0b", "media": "photo", "latitude": "33.751747", "id": "4756859290", "tags": "pink blue red summer orange holiday green colors yellow night lights bright fireworks flash explosion 4th july celebrate"}, {"datetaken": "2010-09-02 17:35:10", "license": "5", "title": "Brighton Beach", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4952768189_1bc82b7c93_o.jpg", "secret": "15611be3f4", "media": "photo", "latitude": "0", "id": "4952768189", "tags": ""}, {"datetaken": "2010-09-02 17:35:30", "license": "5", "title": "Brighton Beach II", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4085/4953362122_74ebc103a5_o.jpg", "secret": "4a1333778a", "media": "photo", "latitude": "0", "id": "4953362122", "tags": ""}, {"datetaken": "2010-09-02 17:35:48", "license": "5", "title": "Brighton Beach: Looking South", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4125/4952770221_05cb3e78fc_o.jpg", "secret": "9654a41721", "media": "photo", "latitude": "0", "id": "4952770221", "tags": ""}, {"datetaken": "2010-09-02 17:36:22", "license": "5", "title": "Brighton Beach Metro", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/4953363946_01047c3d85_o.jpg", "secret": "9a384c9031", "media": "photo", "latitude": "0", "id": "4953363946", "tags": ""}, {"datetaken": "2010-09-02 17:47:35", "license": "5", "title": "Brighton Beach Telephone", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4953364854_fe01f8586a_o.jpg", "secret": "58d2397a94", "media": "photo", "latitude": "0", "id": "4953364854", "tags": ""}, {"datetaken": "2010-09-02 17:58:53", "license": "5", "title": "Laura on the boardwalk", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4092/4952772771_0f5d3eda36_o.jpg", "secret": "cc0cf62d46", "media": "photo", "latitude": "0", "id": "4952772771", "tags": ""}, {"datetaken": "2010-09-02 17:59:06", "license": "5", "title": "Laura on the boardwalk II", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4953366420_32f92f9234_o.jpg", "secret": "0c0dcdf2c8", "media": "photo", "latitude": "0", "id": "4953366420", "tags": ""}, {"datetaken": "2010-09-02 17:59:29", "license": "5", "title": "Laura on the boardwalk III", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4952774323_300760ff9e_o.jpg", "secret": "de3ec9634a", "media": "photo", "latitude": "0", "id": "4952774323", "tags": ""}, {"datetaken": "2010-09-02 18:05:32", "license": "5", "title": "Laura on the boardwalk IV", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4952775175_0c1e05dcd4_o.jpg", "secret": "c2b958c26e", "media": "photo", "latitude": "0", "id": "4952775175", "tags": ""}, {"datetaken": "2010-09-02 18:09:08", "license": "5", "title": "Moscow in Coney Island", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4113/4952776181_a2f308070a_o.jpg", "secret": "ca64cc5b4f", "media": "photo", "latitude": "0", "id": "4952776181", "tags": ""}, {"datetaken": "2010-09-02 18:13:17", "license": "5", "title": "Pair in Coney Island", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/4953369990_1aa2505e37_o.jpg", "secret": "fc873edd90", "media": "photo", "latitude": "0", "id": "4953369990", "tags": ""}, {"datetaken": "2010-09-02 18:25:34", "license": "5", "title": "Coney Island Fish", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/4953370912_5b97379838_o.jpg", "secret": "9a6a6701e7", "media": "photo", "latitude": "0", "id": "4953370912", "tags": ""}, {"datetaken": "2010-09-02 18:38:42", "license": "5", "title": "Wonder Wheel: Laura & Traci", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4107/4952779021_fa0c36b03d_o.jpg", "secret": "67f9f3fa35", "media": "photo", "latitude": "0", "id": "4952779021", "tags": ""}, {"datetaken": "2010-09-02 18:40:37", "license": "5", "title": "Coney Island Coaster", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4088/4952779901_683ff5e629_o.jpg", "secret": "ecf65bda40", "media": "photo", "latitude": "0", "id": "4952779901", "tags": ""}, {"datetaken": "2010-09-02 18:42:25", "license": "5", "title": "Coney Island Coaster II", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4087/4953374142_7dec22ff94_o.jpg", "secret": "3d94c1c713", "media": "photo", "latitude": "0", "id": "4953374142", "tags": ""}, {"datetaken": "2010-09-02 18:43:35", "license": "5", "title": "Coney Island Ride", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/4952781953_2681e98010_o.jpg", "secret": "ff1e481f38", "media": "photo", "latitude": "0", "id": "4952781953", "tags": ""}, {"datetaken": "2010-09-02 18:43:36", "license": "5", "title": "Coney Island Ride II", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4952782625_ce0fb39338_o.jpg", "secret": "333ac9c67b", "media": "photo", "latitude": "0", "id": "4952782625", "tags": ""}, {"datetaken": "2010-09-02 18:43:38", "license": "5", "title": "Coney Island Ride III", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/4952783431_30c51d7253_o.jpg", "secret": "1a9964113a", "media": "photo", "latitude": "0", "id": "4952783431", "tags": ""}, {"datetaken": "2010-09-02 19:21:55", "license": "5", "title": "Dry Ice", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4952784259_3596abca23_o.jpg", "secret": "8505f5a59a", "media": "photo", "latitude": "0", "id": "4952784259", "tags": ""}, {"datetaken": "2010-09-02 19:22:06", "license": "5", "title": "Dry Ice II", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4953378364_23dfcf8027_o.jpg", "secret": "2629100442", "media": "photo", "latitude": "0", "id": "4953378364", "tags": ""}, {"datetaken": "2010-09-02 19:22:21", "license": "5", "title": "Dry Ice III", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/4952785753_c0d93cfdd2_o.jpg", "secret": "ea96eaee16", "media": "photo", "latitude": "0", "id": "4952785753", "tags": ""}, {"datetaken": "2010-09-02 19:22:29", "license": "5", "title": "Dry Ice IV", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/4953380076_43293dbdbb_o.jpg", "secret": "753ef51cbe", "media": "photo", "latitude": "0", "id": "4953380076", "tags": ""}, {"datetaken": "2010-09-02 19:25:33", "license": "5", "title": "Coney Island Art Exchange", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/4952787615_4def5e9c7b_o.jpg", "secret": "3d2d34b6da", "media": "photo", "latitude": "0", "id": "4952787615", "tags": ""}, {"datetaken": "2010-09-02 19:32:26", "license": "5", "title": "Coney Island Station", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/4953382028_e6521a0e4e_o.jpg", "secret": "b47c17e642", "media": "photo", "latitude": "0", "id": "4953382028", "tags": ""}, {"datetaken": "2010-09-02 19:34:58", "license": "5", "title": "Coney Island Station II", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4952789573_ddb07c58c2_o.jpg", "secret": "e2b70c328c", "media": "photo", "latitude": "0", "id": "4952789573", "tags": ""}, {"datetaken": "2010-09-03 01:01:36", "license": "5", "title": "NY Life Building", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4113/4953383904_2113900371_o.jpg", "secret": "bc48d691ee", "media": "photo", "latitude": "0", "id": "4953383904", "tags": ""}, {"datetaken": "2010-09-03 01:03:06", "license": "5", "title": "6th Avenue", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/4952790991_30cf4d9673_o.jpg", "secret": "16aede0b99", "media": "photo", "latitude": "0", "id": "4952790991", "tags": ""}, {"datetaken": "2010-09-03 01:09:44", "license": "5", "title": "The Empire State & Laura", "text": "", "album_id": "72157624867779066", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/4953385086_2ffe8336db_o.jpg", "secret": "90da4e7d13", "media": "photo", "latitude": "0", "id": "4953385086", "tags": ""}, {"datetaken": "2009-08-30 03:18:42", "license": "3", "title": "DSC_0698", "text": "", "album_id": "72157623009486621", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2536/4243500696_6b2f8c289b_o.jpg", "secret": "b949e3d9d3", "media": "photo", "latitude": "0", "id": "4243500696", "tags": ""}, {"datetaken": "2009-08-30 03:20:14", "license": "3", "title": "DSC_0704", "text": "", "album_id": "72157623009486621", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2659/4242730895_dc4a86ce34_o.jpg", "secret": "9d3c0f3f8d", "media": "photo", "latitude": "0", "id": "4242730895", "tags": ""}, {"datetaken": "2009-08-30 03:21:47", "license": "3", "title": "DSC_0723", "text": "", "album_id": "72157623009486621", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4242733923_aa28d1e41c_o.jpg", "secret": "3ebb834251", "media": "photo", "latitude": "0", "id": "4242733923", "tags": ""}, {"datetaken": "2009-08-30 03:21:55", "license": "3", "title": "DSC_0725", "text": "", "album_id": "72157623009486621", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4242736553_1368f987ce_o.jpg", "secret": "5b2d88fca7", "media": "photo", "latitude": "0", "id": "4242736553", "tags": ""}, {"datetaken": "2009-08-30 04:30:55", "license": "3", "title": "Fun House", "text": "", "album_id": "72157623009486621", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4243511292_80e847579e_o.jpg", "secret": "703bb34a95", "media": "photo", "latitude": "0", "id": "4243511292", "tags": ""}, {"datetaken": "2009-08-30 04:32:57", "license": "3", "title": "Isabella", "text": "", "album_id": "72157623009486621", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4243514188_bf812ee7da_o.jpg", "secret": "4672582a0a", "media": "photo", "latitude": "0", "id": "4243514188", "tags": ""}, {"datetaken": "2009-08-30 04:37:56", "license": "3", "title": "Isabella and a Boy We Met in the Fun House", "text": "", "album_id": "72157623009486621", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4242743443_4a5ec625a0_o.jpg", "secret": "4d7e5479f3", "media": "photo", "latitude": "0", "id": "4242743443", "tags": ""}, {"datetaken": "2009-08-30 04:38:15", "license": "3", "title": "Fun House", "text": "", "album_id": "72157623009486621", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4242745735_927bc1d246_o.jpg", "secret": "186bfc3384", "media": "photo", "latitude": "0", "id": "4242745735", "tags": ""}, {"datetaken": "2009-08-30 04:40:34", "license": "3", "title": "JoLynne in a Fun House Mirror", "text": "", "album_id": "72157623009486621", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4242748029_6b665569e7_o.jpg", "secret": "9eb51e9492", "media": "photo", "latitude": "0", "id": "4242748029", "tags": ""}, {"datetaken": "2009-08-30 04:58:02", "license": "3", "title": "DSC_0773", "text": "", "album_id": "72157623009486621", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2543/4243522816_a7dc42c2c1_o.jpg", "secret": "a24b0b2445", "media": "photo", "latitude": "0", "id": "4243522816", "tags": ""}, {"datetaken": "2009-08-30 05:04:31", "license": "3", "title": "Isabella", "text": "", "album_id": "72157623009486621", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2792/4242752221_6ac908f56b_o.jpg", "secret": "2ee9f30c79", "media": "photo", "latitude": "0", "id": "4242752221", "tags": ""}, {"datetaken": "2010-01-01 10:58:22", "license": "3", "title": "Princes Street", "text": "", "album_id": "72157623131846364", "longitude": "-3.196865", "url_o": "https://farm5.staticflickr.com/4008/4241748533_011bcb044c_o.jpg", "secret": "e75a05725e", "media": "photo", "latitude": "55.951975", "id": "4241748533", "tags": "edinburgh princesstreet"}, {"datetaken": "2010-01-01 13:58:23", "license": "3", "title": "The Balmoral Hotel", "text": "", "album_id": "72157623131846364", "longitude": "-3.189570", "url_o": "https://farm5.staticflickr.com/4021/4242499638_60c7f77867_o.jpg", "secret": "d560a98406", "media": "photo", "latitude": "55.952939", "id": "4242499638", "tags": "edinburgh"}, {"datetaken": "2010-01-01 14:19:26", "license": "3", "title": "View from Calton Hill", "text": "", "album_id": "72157623131846364", "longitude": "-3.182832", "url_o": "https://farm5.staticflickr.com/4023/4241751885_79452603aa_o.jpg", "secret": "7710ab5a9b", "media": "photo", "latitude": "55.955254", "id": "4241751885", "tags": "edinburgh"}, {"datetaken": "2010-01-01 14:44:30", "license": "3", "title": "George Street", "text": "", "album_id": "72157623131846364", "longitude": "-3.197305", "url_o": "https://farm3.staticflickr.com/2705/4242522410_2478f290ef_o.jpg", "secret": "e586b041a0", "media": "photo", "latitude": "55.953551", "id": "4242522410", "tags": "edinburgh"}, {"datetaken": "2010-01-01 16:31:41", "license": "3", "title": "Princes Street funfair", "text": "", "album_id": "72157623131846364", "longitude": "-3.193314", "url_o": "https://farm3.staticflickr.com/2713/4241747545_a13d8d36a8_o.jpg", "secret": "f2d3306ea3", "media": "photo", "latitude": "55.952509", "id": "4241747545", "tags": "edinburgh"}, {"datetaken": "2010-01-01 16:49:38", "license": "3", "title": "Firelight", "text": "", "album_id": "72157623131846364", "longitude": "-3.191801", "url_o": "https://farm3.staticflickr.com/2666/4241827643_aaa8b57761_o.jpg", "secret": "84d8522d3d", "media": "photo", "latitude": "55.949620", "id": "4241827643", "tags": "edinburgh 2010favourites"}, {"datetaken": "2010-01-02 09:03:05", "license": "3", "title": "Arthur's Seat", "text": "", "album_id": "72157623131846364", "longitude": "-3.177081", "url_o": "https://farm5.staticflickr.com/4071/4241785693_9b67a5a1c2_o.jpg", "secret": "7197c86748", "media": "photo", "latitude": "55.953678", "id": "4241785693", "tags": "edinburgh arthursseat"}, {"datetaken": "2010-01-02 11:22:04", "license": "3", "title": "Arthur's Seat from the Castle", "text": "", "album_id": "72157623131846364", "longitude": "-3.196951", "url_o": "https://farm5.staticflickr.com/4045/4241826715_538433665c_o.jpg", "secret": "1de9f49475", "media": "photo", "latitude": "55.948557", "id": "4241826715", "tags": "edinburgh arthursseat"}, {"datetaken": "2010-01-02 12:06:23", "license": "3", "title": "Scottish Parliament", "text": "", "album_id": "72157623131846364", "longitude": "-3.174174", "url_o": "https://farm5.staticflickr.com/4010/4242557374_f1bee8441b_o.jpg", "secret": "8c2448f997", "media": "photo", "latitude": "55.952383", "id": "4242557374", "tags": "edinburgh"}, {"datetaken": "2010-01-02 12:22:13", "license": "3", "title": "Scottish Parliament", "text": "", "album_id": "72157623131846364", "longitude": "-3.172178", "url_o": "https://farm5.staticflickr.com/4034/4242556366_a4da2d3dfc_o.jpg", "secret": "57f945c33b", "media": "photo", "latitude": "55.950812", "id": "4242556366", "tags": "edinburgh"}, {"datetaken": "2010-01-02 14:44:08", "license": "3", "title": "Waverley station", "text": "", "album_id": "72157623131846364", "longitude": "-3.192928", "url_o": "https://farm3.staticflickr.com/2704/4241727789_a487887f4a_o.jpg", "secret": "548aee33b6", "media": "photo", "latitude": "55.951428", "id": "4241727789", "tags": "edinburgh waverleystation"}, {"datetaken": "2010-01-02 19:19:55", "license": "3", "title": "Grassmarket", "text": "", "album_id": "72157623131846364", "longitude": "-3.194462", "url_o": "https://farm5.staticflickr.com/4066/4242523416_033d0d3731_o.jpg", "secret": "dcef7985a1", "media": "photo", "latitude": "55.947890", "id": "4242523416", "tags": "edinburgh grassmarket"}, {"datetaken": "2010-01-03 09:00:29", "license": "3", "title": "Edinburgh Castle", "text": "", "album_id": "72157623131846364", "longitude": "-3.204365", "url_o": "https://farm3.staticflickr.com/2780/4242498632_b665be6290_o.jpg", "secret": "92f82e09d9", "media": "photo", "latitude": "55.950668", "id": "4242498632", "tags": "edinburgh edinburghcastle"}, {"datetaken": "2010-01-03 09:03:44", "license": "3", "title": "Edinburgh Castle", "text": "", "album_id": "72157623131846364", "longitude": "-3.204365", "url_o": "https://farm5.staticflickr.com/4054/4242601082_e5354e0fe2_o.jpg", "secret": "2d4dd1f11c", "media": "photo", "latitude": "55.950668", "id": "4242601082", "tags": "edinburgh edinburghcastle"}, {"datetaken": "2010-01-03 10:13:40", "license": "3", "title": "View from Calton Hill", "text": "", "album_id": "72157623131846364", "longitude": "-3.183873", "url_o": "https://farm3.staticflickr.com/2699/4242602020_fe8300b1ed_o.jpg", "secret": "de1f8d46a0", "media": "photo", "latitude": "55.954624", "id": "4242602020", "tags": "edinburgh caltonhill"}, {"datetaken": "2010-01-03 10:18:02", "license": "3", "title": "Sunshine On Leith", "text": "", "album_id": "72157623131846364", "longitude": "-3.182832", "url_o": "https://farm3.staticflickr.com/2619/4241782561_7dee239678_o.jpg", "secret": "77718dae2e", "media": "photo", "latitude": "55.955254", "id": "4241782561", "tags": "edinburgh leith proclaimers"}, {"datetaken": "2011-12-31 18:08:43", "license": "3", "title": "DSC_0001", "text": "", "album_id": "72157628702947021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6629729019_e23cc77472_o.jpg", "secret": "248ac93034", "media": "photo", "latitude": "0", "id": "6629729019", "tags": "landscape"}, {"datetaken": "2011-12-31 18:09:58", "license": "3", "title": "DSC_0005", "text": "", "album_id": "72157628702947021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7001/6629730789_cf2e737de3_o.jpg", "secret": "091984e9b1", "media": "photo", "latitude": "0", "id": "6629730789", "tags": "landscape"}, {"datetaken": "2011-12-31 23:10:40", "license": "3", "title": "DSC_0066", "text": "", "album_id": "72157628702947021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7143/6629734055_f99c54e3a3_o.jpg", "secret": "ee30b3a312", "media": "photo", "latitude": "0", "id": "6629734055", "tags": "night landscape"}, {"datetaken": "2011-12-31 23:46:51", "license": "3", "title": "DSC_0090", "text": "", "album_id": "72157628702947021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6629735811_4ecf0e738f_o.jpg", "secret": "e28d376b18", "media": "photo", "latitude": "0", "id": "6629735811", "tags": "reflection night landscape"}, {"datetaken": "2011-12-31 23:58:59", "license": "3", "title": "DSC_0094", "text": "", "album_id": "72157628702947021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7149/6629738449_a34de493df_o.jpg", "secret": "a1ff8c0a63", "media": "photo", "latitude": "0", "id": "6629738449", "tags": "fireworks firework"}, {"datetaken": "2011-12-31 23:59:41", "license": "3", "title": "DSC_0102", "text": "", "album_id": "72157628702947021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7160/6629740901_d2abe442c2_o.jpg", "secret": "d81a7e6705", "media": "photo", "latitude": "0", "id": "6629740901", "tags": "fireworks firework"}, {"datetaken": "2012-01-01 00:04:03", "license": "3", "title": "DSC_0166", "text": "", "album_id": "72157628702947021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7149/6629744141_077136ab73_o.jpg", "secret": "a5a60cb63b", "media": "photo", "latitude": "0", "id": "6629744141", "tags": "fireworks firework"}, {"datetaken": "2012-01-01 00:04:09", "license": "3", "title": "DSC_0167", "text": "", "album_id": "72157628702947021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7028/6629747135_ea776a1014_o.jpg", "secret": "9bfba00d20", "media": "photo", "latitude": "0", "id": "6629747135", "tags": "fireworks firework"}, {"datetaken": "2012-01-01 00:04:16", "license": "3", "title": "DSC_0169", "text": "", "album_id": "72157628702947021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7018/6629750111_400b2246c5_o.jpg", "secret": "e303fefa3a", "media": "photo", "latitude": "0", "id": "6629750111", "tags": "fireworks firework"}, {"datetaken": "2012-01-01 00:04:20", "license": "3", "title": "DSC_0170", "text": "", "album_id": "72157628702947021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7158/6629751713_1f1df30992_o.jpg", "secret": "534525bb97", "media": "photo", "latitude": "0", "id": "6629751713", "tags": "fireworks firework"}, {"datetaken": "2012-01-01 00:04:27", "license": "3", "title": "DSC_0171", "text": "", "album_id": "72157628702947021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7028/6629753359_7cb31b7374_o.jpg", "secret": "14210825a3", "media": "photo", "latitude": "0", "id": "6629753359", "tags": "fireworks firework"}, {"datetaken": "2012-01-01 00:04:58", "license": "3", "title": "DSC_0179", "text": "", "album_id": "72157628702947021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7170/6629756237_42ae3544b4_o.jpg", "secret": "dca0ce10d3", "media": "photo", "latitude": "0", "id": "6629756237", "tags": "fireworks firework"}, {"datetaken": "2012-01-01 00:05:47", "license": "3", "title": "DSC_0190", "text": "", "album_id": "72157628702947021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7148/6629757881_d090539cf3_o.jpg", "secret": "8075ce8f74", "media": "photo", "latitude": "0", "id": "6629757881", "tags": "fireworks firework"}, {"datetaken": "2012-01-01 00:06:01", "license": "3", "title": "DSC_0195", "text": "", "album_id": "72157628702947021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6629760339_cc5ab9693c_o.jpg", "secret": "3ae64f98ef", "media": "photo", "latitude": "0", "id": "6629760339", "tags": "fireworks firework"}, {"datetaken": "2012-01-01 00:06:19", "license": "3", "title": "DSC_0202", "text": "", "album_id": "72157628702947021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7015/6629762643_33f0356757_o.jpg", "secret": "cf2e6a1070", "media": "photo", "latitude": "0", "id": "6629762643", "tags": "fireworks firework"}, {"datetaken": "2012-01-01 00:06:32", "license": "3", "title": "DSC_0207", "text": "", "album_id": "72157628702947021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6629764713_286f16856a_o.jpg", "secret": "a4058c1fe7", "media": "photo", "latitude": "0", "id": "6629764713", "tags": "fireworks firework"}, {"datetaken": "2012-01-01 00:11:35", "license": "3", "title": "DSC_0231", "text": "", "album_id": "72157628702947021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6629732525_92e836b109_o.jpg", "secret": "be987c16fe", "media": "photo", "latitude": "0", "id": "6629732525", "tags": "night landscape"}, {"datetaken": "2010-01-24 13:21:01", "license": "4", "title": "The Time", "text": "", "album_id": "72157623635972701", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4486072701_f3552326bc_o.jpg", "secret": "6fa6d66da0", "media": "photo", "latitude": "0", "id": "4486072701", "tags": "london clock thames housesofparliament bigben southbank theriverthames riverthames thethames londonsouthbank"}, {"datetaken": "2010-01-24 13:21:11", "license": "4", "title": "Face", "text": "", "album_id": "72157623635972701", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4486725422_03a0d159c6_o.jpg", "secret": "70a4d1d036", "media": "photo", "latitude": "0", "id": "4486725422", "tags": "london clock thames housesofparliament bigben southbank theriverthames riverthames thethames londonsouthbank"}, {"datetaken": "2010-01-24 13:21:19", "license": "4", "title": "Big", "text": "", "album_id": "72157623635972701", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4486726786_70bf1ca268_o.jpg", "secret": "88ba7f5ee6", "media": "photo", "latitude": "0", "id": "4486726786", "tags": "london clock thames housesofparliament bigben southbank theriverthames riverthames thethames londonsouthbank"}, {"datetaken": "2010-01-24 13:23:58", "license": "4", "title": "Sparce", "text": "", "album_id": "72157623635972701", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4486728394_deb7cf19f8_o.jpg", "secret": "58632f715a", "media": "photo", "latitude": "0", "id": "4486728394", "tags": "millenniumwheel thames londoneye southbank theriverthames riverthames thelondoneye thethames londonsouthbank"}, {"datetaken": "2010-01-24 13:30:07", "license": "4", "title": "Dali", "text": "", "album_id": "72157623635972701", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4486077779_668168729c_o.jpg", "secret": "bae249d178", "media": "photo", "latitude": "0", "id": "4486077779", "tags": "london thames southbank theriverthames salvadordali riverthames dail thethames londonsouthbank dailsculpture"}, {"datetaken": "2010-01-24 13:30:10", "license": "4", "title": "Dali & The Wheel", "text": "", "album_id": "72157623635972701", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4486078775_fa132d6d1f_o.jpg", "secret": "8d863eea15", "media": "photo", "latitude": "0", "id": "4486078775", "tags": "london thames southbank theriverthames salvadordali riverthames dail thethames londonsouthbank dailsculpture"}, {"datetaken": "2010-01-24 13:30:30", "license": "4", "title": "Seagull", "text": "", "album_id": "72157623635972701", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4486730928_33f4106eea_o.jpg", "secret": "7bb8c8ae6d", "media": "photo", "latitude": "0", "id": "4486730928", "tags": "london thames river seagull southbank theriverthames riverthames thethames londonsouthbank"}, {"datetaken": "2010-01-24 13:30:52", "license": "4", "title": "Fish", "text": "", "album_id": "72157623635972701", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4486731982_1f22fb7986_o.jpg", "secret": "b9a836123e", "media": "photo", "latitude": "0", "id": "4486731982", "tags": "london thames southbank theriverthames riverthames thethames londonsouthbank"}, {"datetaken": "2010-01-24 13:32:06", "license": "4", "title": "Dali", "text": "", "album_id": "72157623635972701", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4486733022_8d0cf60f18_o.jpg", "secret": "48b54549a1", "media": "photo", "latitude": "0", "id": "4486733022", "tags": "london thames southbank theriverthames salvadordali riverthames dail thethames londonsouthbank dailsculpture"}, {"datetaken": "2010-01-24 13:32:16", "license": "4", "title": "The Wheel", "text": "", "album_id": "72157623635972701", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4486082769_7dc6b04e9a_o.jpg", "secret": "b817c185ab", "media": "photo", "latitude": "0", "id": "4486082769", "tags": "millenniumwheel thames londoneye southbank theriverthames riverthames thelondoneye thethames londonsouthbank"}, {"datetaken": "2010-01-24 13:32:26", "license": "4", "title": "The Wheel", "text": "", "album_id": "72157623635972701", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4486083553_dd8ca8e2c5_o.jpg", "secret": "5d65ac2d9e", "media": "photo", "latitude": "0", "id": "4486083553", "tags": "millenniumwheel thames londoneye southbank theriverthames riverthames thelondoneye thethames londonsouthbank"}, {"datetaken": "2010-01-24 13:32:49", "license": "4", "title": "The Mechanics", "text": "", "album_id": "72157623635972701", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4486084417_54565696aa_o.jpg", "secret": "9a2b9a4d05", "media": "photo", "latitude": "0", "id": "4486084417", "tags": "millenniumwheel thames londoneye southbank theriverthames riverthames thelondoneye thethames londonsouthbank"}, {"datetaken": "2010-01-24 13:32:55", "license": "4", "title": "The London Eye", "text": "", "album_id": "72157623635972701", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4486085647_61e45d5c16_o.jpg", "secret": "b6375f2353", "media": "photo", "latitude": "0", "id": "4486085647", "tags": "millenniumwheel thames londoneye southbank theriverthames riverthames thelondoneye thethames londonsouthbank"}, {"datetaken": "2010-01-24 14:01:52", "license": "4", "title": "Sand Sculpture", "text": "", "album_id": "72157623635972701", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2770/4486740774_e5f38ee11d_o.jpg", "secret": "1714e20314", "media": "photo", "latitude": "0", "id": "4486740774", "tags": "sculpture london thames sand southbank theriverthames riverthames sandsculpture thethames londonsouthbank"}, {"datetaken": "2010-01-24 14:04:13", "license": "4", "title": "Tables & Chairs", "text": "", "album_id": "72157623635972701", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4486744028_bc7da43dcc_o.jpg", "secret": "c8022f3052", "media": "photo", "latitude": "0", "id": "4486744028", "tags": "london thames table chair chairs southbank tables theriverthames riverthames thethames londonsouthbank"}, {"datetaken": "2010-01-24 14:04:44", "license": "4", "title": "Tower", "text": "", "album_id": "72157623635972701", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4486092681_01b50cd180_o.jpg", "secret": "be530e68bf", "media": "photo", "latitude": "0", "id": "4486092681", "tags": "london tower thames concrete southbank theriverthames riverthames thethames londonsouthbank bricktower"}, {"datetaken": "2010-12-03 20:03:15", "license": "2", "title": "IMG_0347", "text": "", "album_id": "72157625399309581", "longitude": "-83.352167", "url_o": "https://farm6.staticflickr.com/5247/5230912714_017cc3ea82_o.jpg", "secret": "1e688e8afa", "media": "photo", "latitude": "42.342000", "id": "5230912714", "tags": ""}, {"datetaken": "2010-12-03 20:03:15", "license": "2", "title": "IMG_0348", "text": "", "album_id": "72157625399309581", "longitude": "-83.352167", "url_o": "https://farm6.staticflickr.com/5082/5230319503_37f5d0d0dd_o.jpg", "secret": "67a92a3f18", "media": "photo", "latitude": "42.342000", "id": "5230319503", "tags": ""}, {"datetaken": "2010-12-03 20:03:31", "license": "2", "title": "IMG_0349", "text": "", "album_id": "72157625399309581", "longitude": "-83.352000", "url_o": "https://farm6.staticflickr.com/5006/5230319663_d4846a00d0_o.jpg", "secret": "e361254875", "media": "photo", "latitude": "42.342166", "id": "5230319663", "tags": ""}, {"datetaken": "2010-12-03 20:03:31", "license": "2", "title": "IMG_0350", "text": "", "album_id": "72157625399309581", "longitude": "-83.352000", "url_o": "https://farm6.staticflickr.com/5043/5230319939_1e2a12edcb_o.jpg", "secret": "f1485a81d4", "media": "photo", "latitude": "42.342166", "id": "5230319939", "tags": ""}, {"datetaken": "2010-12-03 20:03:42", "license": "2", "title": "IMG_0351", "text": "", "album_id": "72157625399309581", "longitude": "-83.352167", "url_o": "https://farm6.staticflickr.com/5207/5230913562_9452536d4e_o.jpg", "secret": "5100febb72", "media": "photo", "latitude": "42.342000", "id": "5230913562", "tags": ""}, {"datetaken": "2010-12-03 20:03:43", "license": "2", "title": "IMG_0352", "text": "", "album_id": "72157625399309581", "longitude": "-83.352167", "url_o": "https://farm6.staticflickr.com/5044/5230913732_88a6bffaea_o.jpg", "secret": "25e04037a9", "media": "photo", "latitude": "42.342000", "id": "5230913732", "tags": ""}, {"datetaken": "2010-12-03 20:04:43", "license": "2", "title": "IMG_0353", "text": "", "album_id": "72157625399309581", "longitude": "-83.351167", "url_o": "https://farm6.staticflickr.com/5289/5230913908_cfd91da3c0_o.jpg", "secret": "78e4d8de7e", "media": "photo", "latitude": "42.340666", "id": "5230913908", "tags": ""}, {"datetaken": "2010-12-03 20:04:44", "license": "2", "title": "IMG_0354", "text": "", "album_id": "72157625399309581", "longitude": "-83.351167", "url_o": "https://farm6.staticflickr.com/5085/5230914094_80df0ce907_o.jpg", "secret": "329bbb29cd", "media": "photo", "latitude": "42.340666", "id": "5230914094", "tags": ""}, {"datetaken": "2010-12-03 20:06:10", "license": "2", "title": "IMG_0355", "text": "", "album_id": "72157625399309581", "longitude": "-83.350334", "url_o": "https://farm6.staticflickr.com/5282/5230914266_476b4ca177_o.jpg", "secret": "620863e9f4", "media": "photo", "latitude": "42.340166", "id": "5230914266", "tags": ""}, {"datetaken": "2010-12-03 20:06:10", "license": "2", "title": "IMG_0356", "text": "", "album_id": "72157625399309581", "longitude": "-83.350334", "url_o": "https://farm6.staticflickr.com/5163/5230914480_75e928b1a8_o.jpg", "secret": "fc4f95738e", "media": "photo", "latitude": "42.340166", "id": "5230914480", "tags": ""}, {"datetaken": "2010-12-03 20:06:17", "license": "2", "title": "IMG_0357", "text": "", "album_id": "72157625399309581", "longitude": "-83.350334", "url_o": "https://farm6.staticflickr.com/5086/5230321229_160061fc7b_o.jpg", "secret": "e2fdb78155", "media": "photo", "latitude": "42.340166", "id": "5230321229", "tags": ""}, {"datetaken": "2010-12-03 20:06:17", "license": "2", "title": "IMG_0358", "text": "", "album_id": "72157625399309581", "longitude": "-83.350334", "url_o": "https://farm6.staticflickr.com/5127/5230914856_a5345e1a57_o.jpg", "secret": "0cd263f637", "media": "photo", "latitude": "42.340166", "id": "5230914856", "tags": ""}, {"datetaken": "2010-12-03 20:06:27", "license": "2", "title": "IMG_0359", "text": "", "album_id": "72157625399309581", "longitude": "-83.350334", "url_o": "https://farm6.staticflickr.com/5164/5230915060_fd33fa0ecc_o.jpg", "secret": "44d55e705b", "media": "photo", "latitude": "42.340166", "id": "5230915060", "tags": ""}, {"datetaken": "2010-12-03 20:06:27", "license": "2", "title": "IMG_0360", "text": "", "album_id": "72157625399309581", "longitude": "-83.350334", "url_o": "https://farm2.staticflickr.com/1426/5230915234_355c68f580_o.jpg", "secret": "2baa036023", "media": "photo", "latitude": "42.340166", "id": "5230915234", "tags": ""}, {"datetaken": "2010-12-03 20:06:34", "license": "2", "title": "IMG_0361", "text": "", "album_id": "72157625399309581", "longitude": "-83.350334", "url_o": "https://farm6.staticflickr.com/5041/5230321979_afd732e713_o.jpg", "secret": "57fba32e4c", "media": "photo", "latitude": "42.340166", "id": "5230321979", "tags": ""}, {"datetaken": "2010-12-03 20:06:35", "license": "2", "title": "IMG_0362", "text": "", "album_id": "72157625399309581", "longitude": "-83.350334", "url_o": "https://farm6.staticflickr.com/5046/5230322171_20d769f2d2_o.jpg", "secret": "92f8a991ed", "media": "photo", "latitude": "42.340166", "id": "5230322171", "tags": ""}, {"datetaken": "2010-12-03 20:09:17", "license": "2", "title": "IMG_0363", "text": "", "album_id": "72157625399309581", "longitude": "-83.349500", "url_o": "https://farm6.staticflickr.com/5090/5230915804_ea3cf8af09_o.jpg", "secret": "b8435fcdf7", "media": "photo", "latitude": "42.339500", "id": "5230915804", "tags": ""}, {"datetaken": "2010-12-03 20:09:17", "license": "2", "title": "IMG_0364", "text": "", "album_id": "72157625399309581", "longitude": "-83.349500", "url_o": "https://farm6.staticflickr.com/5125/5230915956_1908cb5d0d_o.jpg", "secret": "b34897c6c0", "media": "photo", "latitude": "42.339500", "id": "5230915956", "tags": ""}, {"datetaken": "2010-12-03 20:16:17", "license": "2", "title": "IMG_0365", "text": "", "album_id": "72157625399309581", "longitude": "-83.345334", "url_o": "https://farm6.staticflickr.com/5249/5230322685_a761f3b5e3_o.jpg", "secret": "66632a6d9c", "media": "photo", "latitude": "42.338333", "id": "5230322685", "tags": ""}, {"datetaken": "2010-12-03 20:16:18", "license": "2", "title": "IMG_0366", "text": "", "album_id": "72157625399309581", "longitude": "-83.345334", "url_o": "https://farm6.staticflickr.com/5286/5230322859_1f9b6c1f1e_o.jpg", "secret": "45802b4d7b", "media": "photo", "latitude": "42.338333", "id": "5230322859", "tags": ""}, {"datetaken": "2010-12-03 20:16:27", "license": "2", "title": "IMG_0367", "text": "", "album_id": "72157625399309581", "longitude": "-83.345334", "url_o": "https://farm6.staticflickr.com/5008/5230322997_f546bfb70c_o.jpg", "secret": "450cd4b1c8", "media": "photo", "latitude": "42.338333", "id": "5230322997", "tags": ""}, {"datetaken": "2010-12-03 20:16:27", "license": "2", "title": "IMG_0368", "text": "", "album_id": "72157625399309581", "longitude": "-83.345334", "url_o": "https://farm6.staticflickr.com/5289/5230323155_d7c12c44c0_o.jpg", "secret": "40a061fefc", "media": "photo", "latitude": "42.338333", "id": "5230323155", "tags": ""}, {"datetaken": "2010-09-25 12:28:10", "license": "4", "title": "Los Angeles!", "text": "", "album_id": "72157625097215656", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4130/5052899208_15988ca6c4_o.jpg", "secret": "28257ee299", "media": "photo", "latitude": "0", "id": "5052899208", "tags": ""}, {"datetaken": "2010-09-25 12:34:36", "license": "4", "title": "Los Angeles!", "text": "", "album_id": "72157625097215656", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/5052899822_9a317c1a1a_o.jpg", "secret": "db8f789bbb", "media": "photo", "latitude": "0", "id": "5052899822", "tags": ""}, {"datetaken": "2010-09-25 13:27:16", "license": "4", "title": "Los Angeles!", "text": "", "album_id": "72157625097215656", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/5052900232_5e39de478e_o.jpg", "secret": "8352ea4345", "media": "photo", "latitude": "0", "id": "5052900232", "tags": ""}, {"datetaken": "2010-09-25 13:33:54", "license": "4", "title": "Los Angeles!", "text": "", "album_id": "72157625097215656", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/5052282239_ea1fb54807_o.jpg", "secret": "9b5fb6c2d5", "media": "photo", "latitude": "0", "id": "5052282239", "tags": ""}, {"datetaken": "2010-09-25 13:35:43", "license": "4", "title": "Los Angeles!", "text": "", "album_id": "72157625097215656", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/5052282729_bba6975e39_o.jpg", "secret": "1f8bc80869", "media": "photo", "latitude": "0", "id": "5052282729", "tags": ""}, {"datetaken": "2010-09-25 14:40:41", "license": "4", "title": "Los Angeles!", "text": "", "album_id": "72157625097215656", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/5052283187_1d51422d38_o.jpg", "secret": "b4a0b0a1dd", "media": "photo", "latitude": "0", "id": "5052283187", "tags": ""}, {"datetaken": "2010-09-25 15:42:43", "license": "4", "title": "Los Angeles!", "text": "", "album_id": "72157625097215656", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/5052902318_f1e65caf47_o.jpg", "secret": "62cb90927a", "media": "photo", "latitude": "0", "id": "5052902318", "tags": ""}, {"datetaken": "2010-09-25 16:08:27", "license": "4", "title": "Los Angeles!", "text": "", "album_id": "72157625097215656", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/5052284291_12561b49de_o.jpg", "secret": "3ef4b64b40", "media": "photo", "latitude": "0", "id": "5052284291", "tags": ""}, {"datetaken": "2010-09-25 22:27:40", "license": "4", "title": "Los Angeles!", "text": "", "album_id": "72157625097215656", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/5052903198_6c0dcc5b52_o.jpg", "secret": "243307a59e", "media": "photo", "latitude": "0", "id": "5052903198", "tags": ""}, {"datetaken": "2010-09-25 22:57:36", "license": "4", "title": "Los Angeles!", "text": "", "album_id": "72157625097215656", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/5052284897_e753f64437_o.jpg", "secret": "bdd5e340e5", "media": "photo", "latitude": "0", "id": "5052284897", "tags": ""}, {"datetaken": "2010-09-26 10:23:44", "license": "4", "title": "Los Angeles!", "text": "", "album_id": "72157625097215656", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/5052903858_939747ed4e_o.jpg", "secret": "c9a593c173", "media": "photo", "latitude": "0", "id": "5052903858", "tags": ""}, {"datetaken": "2010-04-05 00:57:24", "license": "1", "title": "Singapour07", "text": "", "album_id": "72157623775938136", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2732/4494210706_8c89c4b823_o.jpg", "secret": "aa12cedaae", "media": "photo", "latitude": "0", "id": "4494210706", "tags": ""}, {"datetaken": "2010-04-05 10:20:35", "license": "1", "title": "Singapour01", "text": "", "album_id": "72157623775938136", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4494207418_ffcd77cba0_o.jpg", "secret": "0f879290b5", "media": "photo", "latitude": "0", "id": "4494207418", "tags": ""}, {"datetaken": "2010-04-05 10:20:42", "license": "1", "title": "Singapour02", "text": "", "album_id": "72157623775938136", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4494207850_9c6aafe1a1_o.jpg", "secret": "0d843f57b2", "media": "photo", "latitude": "0", "id": "4494207850", "tags": ""}, {"datetaken": "2010-04-05 10:20:52", "license": "1", "title": "Singapour03", "text": "", "album_id": "72157623775938136", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2715/4494208442_afbd3fee45_o.jpg", "secret": "41cd2ae848", "media": "photo", "latitude": "0", "id": "4494208442", "tags": ""}, {"datetaken": "2010-04-05 10:21:07", "license": "1", "title": "Singapour04", "text": "", "album_id": "72157623775938136", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4493570335_2b74d08822_o.jpg", "secret": "226e061b1b", "media": "photo", "latitude": "0", "id": "4493570335", "tags": ""}, {"datetaken": "2010-04-05 10:21:16", "license": "1", "title": "Singapour05", "text": "", "album_id": "72157623775938136", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2676/4494209690_7efbc4f984_o.jpg", "secret": "0d9155d2c3", "media": "photo", "latitude": "0", "id": "4494209690", "tags": ""}, {"datetaken": "2010-04-05 10:21:23", "license": "1", "title": "Singapour06", "text": "", "album_id": "72157623775938136", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4493571277_95efece471_o.jpg", "secret": "132a8a3b91", "media": "photo", "latitude": "0", "id": "4493571277", "tags": ""}, {"datetaken": "2010-04-05 10:21:43", "license": "1", "title": "Singapour08", "text": "", "album_id": "72157623775938136", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2729/4494211256_64cc026924_o.jpg", "secret": "1e471af741", "media": "photo", "latitude": "0", "id": "4494211256", "tags": ""}, {"datetaken": "2010-04-05 10:21:54", "license": "1", "title": "Singapour09", "text": "", "album_id": "72157623775938136", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4494211936_14ab1ef10b_o.jpg", "secret": "577eceb72c", "media": "photo", "latitude": "0", "id": "4494211936", "tags": ""}, {"datetaken": "2010-04-05 10:22:13", "license": "1", "title": "Singapour10", "text": "", "album_id": "72157623775938136", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4494212906_48f084051b_o.jpg", "secret": "5b3ef35767", "media": "photo", "latitude": "0", "id": "4494212906", "tags": ""}, {"datetaken": "2010-04-05 10:22:54", "license": "1", "title": "Singapour11", "text": "", "album_id": "72157623775938136", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4494215074_940948dfe5_o.jpg", "secret": "b2e5427200", "media": "photo", "latitude": "0", "id": "4494215074", "tags": ""}, {"datetaken": "2010-04-05 10:23:27", "license": "1", "title": "Singapour12", "text": "", "album_id": "72157623775938136", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4494216734_ee8d64273f_o.jpg", "secret": "278ab2bca6", "media": "photo", "latitude": "0", "id": "4494216734", "tags": ""}, {"datetaken": "2010-04-05 10:24:06", "license": "1", "title": "Singapour13", "text": "", "album_id": "72157623775938136", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2677/4493580169_de376d7b02_o.jpg", "secret": "957e764e62", "media": "photo", "latitude": "0", "id": "4493580169", "tags": ""}, {"datetaken": "2010-04-05 10:24:48", "license": "1", "title": "Singapour14", "text": "", "album_id": "72157623775938136", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4494221180_4436c1f8cf_o.jpg", "secret": "55074e1f84", "media": "photo", "latitude": "0", "id": "4494221180", "tags": ""}, {"datetaken": "2010-04-05 10:25:27", "license": "1", "title": "Singapour15", "text": "", "album_id": "72157623775938136", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2709/4493584737_107809ddf8_o.jpg", "secret": "d7ed908eb0", "media": "photo", "latitude": "0", "id": "4493584737", "tags": ""}, {"datetaken": "2010-08-05 02:24:57", "license": "3", "title": "IMG_0750", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4863313172_200b4abc0b_o.jpg", "secret": "c38018fe1a", "media": "photo", "latitude": "0", "id": "4863313172", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:27:22", "license": "3", "title": "IMG_0751", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4862690653_88567dd2f7_o.jpg", "secret": "4ae62ff613", "media": "photo", "latitude": "0", "id": "4862690653", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:29:11", "license": "3", "title": "IMG_0753", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4862690785_771571323f_o.jpg", "secret": "5789303ec8", "media": "photo", "latitude": "0", "id": "4862690785", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:30:09", "license": "3", "title": "IMG_0756", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4862690867_4d2d4f4798_o.jpg", "secret": "a41142dee6", "media": "photo", "latitude": "0", "id": "4862690867", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:30:43", "license": "3", "title": "IMG_0757", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4863313070_18dd63e1fb_o.jpg", "secret": "805b0e835b", "media": "photo", "latitude": "0", "id": "4863313070", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:30:46", "license": "3", "title": "IMG_0758", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4863312986_db9055cbfb_o.jpg", "secret": "eaf279056a", "media": "photo", "latitude": "0", "id": "4863312986", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:31:04", "license": "3", "title": "IMG_0759", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4863312876_b9115be720_o.jpg", "secret": "7ce5593633", "media": "photo", "latitude": "0", "id": "4863312876", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:31:05", "license": "3", "title": "IMG_0760", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4863312778_133667dccd_o.jpg", "secret": "83e82a38fa", "media": "photo", "latitude": "0", "id": "4863312778", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:31:06", "license": "3", "title": "IMG_0761", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4863311862_d6396781a5_o.jpg", "secret": "7fb992a61e", "media": "photo", "latitude": "0", "id": "4863311862", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:31:14", "license": "3", "title": "IMG_0762", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4862690185_a8153e0243_o.jpg", "secret": "0ed9954286", "media": "photo", "latitude": "0", "id": "4862690185", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:31:15", "license": "3", "title": "IMG_0763", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4862690261_52ceb0f54e_o.jpg", "secret": "66e614682a", "media": "photo", "latitude": "0", "id": "4862690261", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:32:38", "license": "3", "title": "IMG_0764", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4862690379_7001f1cf77_o.jpg", "secret": "ca539fd70a", "media": "photo", "latitude": "0", "id": "4862690379", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:32:57", "license": "3", "title": "IMG_0765", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4863312326_4992fe92df_o.jpg", "secret": "b020453e94", "media": "photo", "latitude": "0", "id": "4863312326", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:33:48", "license": "3", "title": "IMG_0767", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4863312400_38b029ecb5_o.jpg", "secret": "a512397c22", "media": "photo", "latitude": "0", "id": "4863312400", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:34:30", "license": "3", "title": "IMG_0771", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4862689623_a81763b9b6_o.jpg", "secret": "3bcc8301ce", "media": "photo", "latitude": "0", "id": "4862689623", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:34:36", "license": "3", "title": "IMG_0773", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4862689699_d6d5911ef2_o.jpg", "secret": "87a04b5c87", "media": "photo", "latitude": "0", "id": "4862689699", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:35:38", "license": "3", "title": "IMG_0775", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4863311566_12ec8cf85b_o.jpg", "secret": "93c1b57acd", "media": "photo", "latitude": "0", "id": "4863311566", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:35:55", "license": "3", "title": "IMG_0776", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4862689921_ae3bf6ac05_o.jpg", "secret": "40d05ec935", "media": "photo", "latitude": "0", "id": "4862689921", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-08-05 02:36:43", "license": "3", "title": "IMG_0779", "text": "", "album_id": "72157624659225102", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4862690009_9c1c44d47b_o.jpg", "secret": "cbdc42ba72", "media": "photo", "latitude": "0", "id": "4862690009", "tags": "nyc brooklyn coneyisland seaside bklyn coney amusements bk"}, {"datetaken": "2010-06-05 13:58:58", "license": "3", "title": "Traffic", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4676911985_ffe1e35c79_o.jpg", "secret": "214fb3fa09", "media": "photo", "latitude": "0", "id": "4676911985", "tags": ""}, {"datetaken": "2010-06-05 17:34:21", "license": "3", "title": "Brandon & Kat", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4676912691_e8c7a25952_o.jpg", "secret": "c2da84cabe", "media": "photo", "latitude": "0", "id": "4676912691", "tags": ""}, {"datetaken": "2010-06-05 17:34:39", "license": "3", "title": "Kyle & Jen", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4676913413_0e0a71cd67_o.jpg", "secret": "0a2ed2fe6c", "media": "photo", "latitude": "0", "id": "4676913413", "tags": ""}, {"datetaken": "2010-06-05 17:35:20", "license": "3", "title": "Nicholas & Erin", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1293/4677544274_967eebcba0_o.jpg", "secret": "4301dce552", "media": "photo", "latitude": "0", "id": "4677544274", "tags": ""}, {"datetaken": "2010-06-05 17:52:01", "license": "3", "title": "Welcome", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4676912321_f67a3ec510_o.jpg", "secret": "bd98c39452", "media": "photo", "latitude": "0", "id": "4676912321", "tags": ""}, {"datetaken": "2010-06-05 17:54:00", "license": "3", "title": "Pimp", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4677549744_a0572cf57d_o.jpg", "secret": "8e54cf6291", "media": "photo", "latitude": "0", "id": "4677549744", "tags": ""}, {"datetaken": "2010-06-05 17:57:22", "license": "3", "title": "Flohre", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4676919791_50fc037454_o.jpg", "secret": "4b8cf7fa6a", "media": "photo", "latitude": "0", "id": "4676919791", "tags": ""}, {"datetaken": "2010-06-05 17:57:34", "license": "3", "title": "Kat", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4676920155_b05c2ce175_o.jpg", "secret": "f814a85779", "media": "photo", "latitude": "0", "id": "4676920155", "tags": ""}, {"datetaken": "2010-06-05 18:04:37", "license": "3", "title": "Sox Fans", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4677551434_ca9924a393_o.jpg", "secret": "2ae12f5cc9", "media": "photo", "latitude": "0", "id": "4677551434", "tags": ""}, {"datetaken": "2010-06-05 18:05:20", "license": "3", "title": "Brandon & Kat 2", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4677552192_7669bd0f4c_o.jpg", "secret": "5d0ce190a2", "media": "photo", "latitude": "0", "id": "4677552192", "tags": ""}, {"datetaken": "2010-06-05 18:17:09", "license": "3", "title": "Kyle", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4677552480_f3920f2a82_o.jpg", "secret": "614553dd4b", "media": "photo", "latitude": "0", "id": "4677552480", "tags": ""}, {"datetaken": "2010-06-05 18:23:52", "license": "3", "title": "Tek", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4677552824_c17aa436e2_o.jpg", "secret": "28051ec7df", "media": "photo", "latitude": "0", "id": "4677552824", "tags": ""}, {"datetaken": "2010-06-05 18:27:55", "license": "3", "title": "Camden Yards", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4677551122_d791c5c5ac_o.jpg", "secret": "4c347c4fba", "media": "photo", "latitude": "0", "id": "4677551122", "tags": ""}, {"datetaken": "2010-06-05 18:30:47", "license": "3", "title": "Tek 2", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4677553140_3d08cf13d7_o.jpg", "secret": "fa3d654b5d", "media": "photo", "latitude": "0", "id": "4677553140", "tags": ""}, {"datetaken": "2010-06-05 18:49:09", "license": "3", "title": "Papi, Youk, & Reddick", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4676923009_9e2c87a82e_o.jpg", "secret": "2b14f12686", "media": "photo", "latitude": "0", "id": "4676923009", "tags": ""}, {"datetaken": "2010-06-05 19:05:25", "license": "3", "title": "First Pitch", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4677554104_8a3d232bb8_o.jpg", "secret": "e62bbb0449", "media": "photo", "latitude": "0", "id": "4677554104", "tags": ""}, {"datetaken": "2010-06-05 22:05:12", "license": "3", "title": "Kyle 2", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4676924017_9ee8be37f5_o.jpg", "secret": "50e37f2f20", "media": "photo", "latitude": "0", "id": "4676924017", "tags": ""}, {"datetaken": "2010-06-06 11:04:40", "license": "3", "title": "Kat & Erin", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4676924743_c094836635_o.jpg", "secret": "3885ef2cfc", "media": "photo", "latitude": "0", "id": "4676924743", "tags": ""}, {"datetaken": "2010-06-06 11:08:32", "license": "3", "title": "Constellation", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4677555816_816eb67c27_o.jpg", "secret": "26b60326ff", "media": "photo", "latitude": "0", "id": "4677555816", "tags": ""}, {"datetaken": "2010-06-06 11:14:50", "license": "3", "title": "Submarine", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4677555456_b36bf9e7ae_o.jpg", "secret": "6d6a7c0336", "media": "photo", "latitude": "0", "id": "4677555456", "tags": ""}, {"datetaken": "2010-06-06 12:47:54", "license": "3", "title": "Constellation 2", "text": "", "album_id": "72157624220238674", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1297/4676926121_94a5674bbf_o.jpg", "secret": "ba54519a33", "media": "photo", "latitude": "0", "id": "4676926121", "tags": ""}, {"datetaken": "2010-07-03 19:28:49", "license": "4", "title": "Aloha_Tower_Sunset-1", "text": "", "album_id": "72157624433258760", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4767284630_29facfe1c2_o.jpg", "secret": "fa3f8599ae", "media": "photo", "latitude": "0", "id": "4767284630", "tags": "sunset panorama hawaii nikon honolulu d90 kylenishiokacom"}, {"datetaken": "2010-07-03 20:46:24", "license": "4", "title": "Aloha_Tower_Fireworks-2010-1", "text": "", "album_id": "72157624433258760", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4766645723_5f1d9181ff_o.jpg", "secret": "d301c0deda", "media": "photo", "latitude": "0", "id": "4766645723", "tags": "hawaii nikon fireworks honolulu 4thofjuly alohatower d90 kylenishiokacom"}, {"datetaken": "2010-07-03 20:46:30", "license": "4", "title": "Aloha_Tower_Fireworks-2010-2", "text": "", "album_id": "72157624433258760", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4766646061_284c7a0847_o.jpg", "secret": "44eefb56d3", "media": "photo", "latitude": "0", "id": "4766646061", "tags": "hawaii nikon fireworks honolulu 4thofjuly alohatower d90 kylenishiokacom"}, {"datetaken": "2010-07-03 20:46:37", "license": "4", "title": "Aloha_Tower_Fireworks-2010-3", "text": "", "album_id": "72157624433258760", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4766646409_4fda784b3d_o.jpg", "secret": "53cf2c3bc0", "media": "photo", "latitude": "0", "id": "4766646409", "tags": "hawaii nikon fireworks honolulu 4thofjuly alohatower d90 kylenishiokacom"}, {"datetaken": "2010-07-03 20:46:50", "license": "4", "title": "Aloha_Tower_Fireworks-2010-4", "text": "", "album_id": "72157624433258760", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4766646679_e33e7a47d7_o.jpg", "secret": "967d7e6f9d", "media": "photo", "latitude": "0", "id": "4766646679", "tags": "hawaii nikon fireworks honolulu 4thofjuly alohatower d90 kylenishiokacom"}, {"datetaken": "2010-07-03 20:47:16", "license": "4", "title": "Aloha_Tower_Fireworks-2010-5", "text": "", "album_id": "72157624433258760", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4766647003_633be58d31_o.jpg", "secret": "27dd0fce2a", "media": "photo", "latitude": "0", "id": "4766647003", "tags": "hawaii nikon fireworks honolulu 4thofjuly alohatower d90 kylenishiokacom"}, {"datetaken": "2010-07-03 20:47:50", "license": "4", "title": "Aloha_Tower_Fireworks-2010-6", "text": "", "album_id": "72157624433258760", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4766647227_faebe28fd7_o.jpg", "secret": "4731957de0", "media": "photo", "latitude": "0", "id": "4766647227", "tags": "hawaii nikon fireworks honolulu 4thofjuly alohatower d90 kylenishiokacom"}, {"datetaken": "2010-07-03 20:47:56", "license": "4", "title": "Aloha_Tower_Fireworks-2010-7", "text": "", "album_id": "72157624433258760", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4767287012_295f2cd0de_o.jpg", "secret": "e1e4c8e4d3", "media": "photo", "latitude": "0", "id": "4767287012", "tags": "hawaii nikon fireworks honolulu 4thofjuly alohatower d90 kylenishiokacom"}, {"datetaken": "2010-07-03 20:48:03", "license": "4", "title": "Aloha_Tower_Fireworks-2010-8", "text": "", "album_id": "72157624433258760", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4767287344_5cb2e4b743_o.jpg", "secret": "80a7bd473c", "media": "photo", "latitude": "0", "id": "4767287344", "tags": "hawaii nikon fireworks honolulu 4thofjuly alohatower d90 kylenishiokacom"}, {"datetaken": "2010-07-03 20:48:23", "license": "4", "title": "Aloha_Tower_Fireworks-2010-9", "text": "", "album_id": "72157624433258760", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4767287616_1edffd91bc_o.jpg", "secret": "73fc01c3e5", "media": "photo", "latitude": "0", "id": "4767287616", "tags": "hawaii nikon fireworks honolulu 4thofjuly alohatower d90 kylenishiokacom"}, {"datetaken": "2010-07-03 20:48:29", "license": "4", "title": "Aloha_Tower_Fireworks-2010-10", "text": "", "album_id": "72157624433258760", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4118/4766648757_d6c61fd6ac_o.jpg", "secret": "75bf42a136", "media": "photo", "latitude": "0", "id": "4766648757", "tags": "hawaii nikon fireworks honolulu 4thofjuly alohatower d90 kylenishiokacom"}, {"datetaken": "2010-07-03 20:49:09", "license": "4", "title": "Aloha_Tower_Fireworks-2010-11", "text": "", "album_id": "72157624433258760", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4766649229_a9ab3cdbe0_o.jpg", "secret": "963b7f52d8", "media": "photo", "latitude": "0", "id": "4766649229", "tags": "hawaii nikon fireworks honolulu 4thofjuly alohatower d90 kylenishiokacom"}, {"datetaken": "2010-07-03 20:51:03", "license": "4", "title": "Aloha_Tower_Fireworks-2010-12", "text": "", "album_id": "72157624433258760", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4766649695_7ef49f012c_o.jpg", "secret": "ff0d9ae3d5", "media": "photo", "latitude": "0", "id": "4766649695", "tags": "hawaii nikon fireworks honolulu 4thofjuly alohatower d90 kylenishiokacom"}, {"datetaken": "2010-07-03 20:51:39", "license": "4", "title": "Aloha_Tower_Fireworks-2010-13", "text": "", "album_id": "72157624433258760", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4767289778_7f6dcb42e1_o.jpg", "secret": "c3dcbb6d52", "media": "photo", "latitude": "0", "id": "4767289778", "tags": "hawaii nikon fireworks honolulu 4thofjuly alohatower d90 kylenishiokacom"}, {"datetaken": "2010-07-03 20:52:34", "license": "4", "title": "Aloha_Tower_Fireworks-2010-14", "text": "", "album_id": "72157624433258760", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4767290660_f06180dfe0_o.jpg", "secret": "c7565f1979", "media": "photo", "latitude": "0", "id": "4767290660", "tags": "hawaii nikon fireworks honolulu 4thofjuly alohatower d90 kylenishiokacom"}, {"datetaken": "2010-10-02 23:56:51", "license": "3", "title": "Beehive on the Royal York Hotel", "text": "", "album_id": "72157624959568461", "longitude": "-79.382786", "url_o": "https://farm5.staticflickr.com/4152/5059064926_4cd71f832a_o.jpg", "secret": "56c9a50a09", "media": "photo", "latitude": "43.645640", "id": "5059064926", "tags": "toronto underground subway map transit nuitblanche 2010 ilonastaples tokina1116mmf28 tgamphotodesklight"}, {"datetaken": "2010-10-03 00:08:35", "license": "3", "title": "Platform", "text": "", "album_id": "72157624959568461", "longitude": "-79.377937", "url_o": "https://farm5.staticflickr.com/4130/5059065326_53faa72e13_o.jpg", "secret": "081bd0223f", "media": "photo", "latitude": "43.647162", "id": "5059065326", "tags": "toronto nuitblanche 2010 tokina1116mmf28 tgamphotodesklight"}, {"datetaken": "2010-10-03 00:19:49", "license": "3", "title": "Erik Satie\u2019s Vexations", "text": "", "album_id": "72157624959568461", "longitude": "-79.377036", "url_o": "https://farm5.staticflickr.com/4144/5058453441_d521db88f3_o.jpg", "secret": "1b0f102cbd", "media": "photo", "latitude": "43.647938", "id": "5058453441", "tags": "toronto floor piano nuitblanche glassblock 2010 brookfieldplace tokina1116mmf28 tgamphotodesklight"}, {"datetaken": "2010-10-03 00:21:22", "license": "3", "title": "Vexations paper sculptures", "text": "", "album_id": "72157624959568461", "longitude": "-79.377036", "url_o": "https://farm5.staticflickr.com/4105/5059066864_28794ef83c_o.jpg", "secret": "3283e9e70d", "media": "photo", "latitude": "43.647938", "id": "5059066864", "tags": "toronto nuitblanche 2010 eriksatie brookfieldplace tokina1116mmf28 tgamphotodesklight"}, {"datetaken": "2010-10-03 00:24:48", "license": "3", "title": "1850", "text": "", "album_id": "72157624959568461", "longitude": "-79.377079", "url_o": "https://farm5.staticflickr.com/4144/5058454607_05f1ea62f4_o.jpg", "secret": "4ebb99ee1b", "media": "photo", "latitude": "43.647333", "id": "5058454607", "tags": "toronto ob nuitblanche 2010 oliverbonacinicafegrill tokina1116mmf28 tgamphotodesklight"}, {"datetaken": "2010-10-03 00:31:10", "license": "3", "title": "Endgame", "text": "", "album_id": "72157624959568461", "longitude": "-79.378023", "url_o": "https://farm5.staticflickr.com/4106/5059068016_ca788d272d_o.jpg", "secret": "6ab04f422f", "media": "photo", "latitude": "43.649677", "id": "5059068016", "tags": "toronto face alley clown clowns nuitblanche 2010 coulrophobia tokina1116mmf28 tgamphotodesklight"}, {"datetaken": "2010-10-03 00:41:24", "license": "3", "title": "a moment stilled Voyageur", "text": "", "album_id": "72157624959568461", "longitude": "-79.378452", "url_o": "https://farm5.staticflickr.com/4149/5059068650_85a8343c22_o.jpg", "secret": "fb3d5cb5f1", "media": "photo", "latitude": "43.651664", "id": "5059068650", "tags": "toronto landscape projection minivan windscreen nuitblanche 2010 tokina1116mmf28 tgamphotodesklight"}, {"datetaken": "2010-10-03 00:46:28", "license": "3", "title": "Big O", "text": "", "album_id": "72157624959568461", "longitude": "-79.381027", "url_o": "https://farm5.staticflickr.com/4112/5059069608_787e7ec913_o.jpg", "secret": "da1d2c885e", "media": "photo", "latitude": "43.649677", "id": "5059069608", "tags": "toronto circle loop fans nuitblanche 2010 videotape bayadelaidecentre tokina1116mmf28 tgamphotodesklight"}, {"datetaken": "2010-10-03 00:55:32", "license": "3", "title": "In _scape with 6 and 7", "text": "", "album_id": "72157624959568461", "longitude": "-79.380083", "url_o": "https://farm5.staticflickr.com/4130/5059070520_2b1bb9c6c0_o.jpg", "secret": "27e3ebc31b", "media": "photo", "latitude": "43.650624", "id": "5059070520", "tags": "toronto video performance projection annie nuitblanche 2010 cheung cloudgardens onyi tokina1116mmf28 tgamphotodesklight"}, {"datetaken": "2010-10-03 01:00:19", "license": "3", "title": "Box", "text": "", "album_id": "72157624959568461", "longitude": "-79.378881", "url_o": "https://farm5.staticflickr.com/4103/5059071344_879cd31116_o.jpg", "secret": "848b00564b", "media": "photo", "latitude": "43.652472", "id": "5059071344", "tags": "horse toronto olivia stall nuitblanche 2010 boudreau tokina1116mmf28 tgamphotodesklight"}, {"datetaken": "2010-10-03 01:03:16", "license": "3", "title": "Auto Lamp", "text": "", "album_id": "72157624959568461", "longitude": "-79.378881", "url_o": "https://farm5.staticflickr.com/4085/5058459355_e1a77ef546_o.jpg", "secret": "9d4138e4da", "media": "photo", "latitude": "43.652472", "id": "5058459355", "tags": "light toronto van rotating nuitblanche 2010 kimadams tokina1116mmf28 tgamphotodesklight"}, {"datetaken": "2010-10-03 01:03:43", "license": "3", "title": "Auto Lamp detail", "text": "", "album_id": "72157624959568461", "longitude": "-79.378881", "url_o": "https://farm5.staticflickr.com/4109/5058459803_797aa2f058_o.jpg", "secret": "bdf8f12a19", "media": "photo", "latitude": "43.652472", "id": "5058459803", "tags": "light toronto van rotating nuitblanche 2010 kimadams tokina1116mmf28 tgamphotodesklight"}, {"datetaken": "2010-10-03 01:20:15", "license": "3", "title": "Busy Yonge/Dundas Square at 1:30 am", "text": "", "album_id": "72157624959568461", "longitude": "-79.381027", "url_o": "https://farm5.staticflickr.com/4144/5059074280_b1ec11bf9c_o.jpg", "secret": "04b7f8628f", "media": "photo", "latitude": "43.656415", "id": "5059074280", "tags": "toronto nuitblanche 2010 tokina1116mmf28 tgamphotodesklight"}, {"datetaken": "2010-10-03 01:38:39", "license": "3", "title": "LIGHT UP THE NIGHT: The Swans' Lake", "text": "", "album_id": "72157624959568461", "longitude": "-79.377636", "url_o": "https://farm5.staticflickr.com/4089/5058463383_07402daa7a_o.jpg", "secret": "87de3bbb5b", "media": "photo", "latitude": "43.658200", "id": "5058463383", "tags": "toronto ryerson nuitblanche 2010 tchaikovsky tokina1116mmf28 tgamphotodesklight"}, {"datetaken": "2010-10-03 02:21:12", "license": "3", "title": "Dances with Strangers", "text": "", "album_id": "72157624959568461", "longitude": "-79.383730", "url_o": "https://farm5.staticflickr.com/4130/5059077740_62b337bc35_o.jpg", "secret": "233e75d298", "media": "photo", "latitude": "43.656089", "id": "5059077740", "tags": "toronto nuitblanche 2010 atriumonbay kiangaford tokina1116mmf28 djcozmiccat tgamphotodesklight"}, {"datetaken": "2010-10-03 02:38:11", "license": "3", "title": "FALSE KRAFTWERK", "text": "", "album_id": "72157624959568461", "longitude": "-79.383730", "url_o": "https://farm5.staticflickr.com/4132/5059078682_282faee4bd_o.jpg", "secret": "63f47f5f06", "media": "photo", "latitude": "43.656089", "id": "5059078682", "tags": "toronto nuitblanche 2010 atriumonbay marklaliberte tokina1116mmf28"}, {"datetaken": "2010-10-03 03:06:02", "license": "3", "title": "Later That Night at the Drive-In", "text": "", "album_id": "72157624959568461", "longitude": "-79.383018", "url_o": "https://farm5.staticflickr.com/4111/5046315483_8c07b1f5fc_o.jpg", "secret": "c0d55abb9e", "media": "photo", "latitude": "43.652253", "id": "5046315483", "tags": "toronto nuitblanche daniellanois 2010 nathanphillipssquare tokina1116mmf28 tgamphotodesklight"}, {"datetaken": "2010-09-26 09:38:24", "license": "3", "title": "Somewhere Above the Clouds...", "text": "", "album_id": "72157625093480132", "longitude": "2.228027", "url_o": "https://farm5.staticflickr.com/4131/5051249118_87a1a6079f_o.jpg", "secret": "8e73fe8bec", "media": "photo", "latitude": "41.894099", "id": "5051249118", "tags": "barcelona film spain lomolca kodakportra160vc 2010"}, {"datetaken": "2010-09-26 09:43:25", "license": "3", "title": "Welcome to Barcelona", "text": "", "album_id": "72157625093480132", "longitude": "2.171080", "url_o": "https://farm5.staticflickr.com/4131/5051250998_0a0b0a19f4_o.jpg", "secret": "8c9c6d1496", "media": "photo", "latitude": "41.380644", "id": "5051250998", "tags": "barcelona film spain lomolca kodakportra160vc 2010"}, {"datetaken": "2010-09-26 09:56:37", "license": "3", "title": "Monument a Colom", "text": "", "album_id": "72157625093480132", "longitude": "2.177786", "url_o": "https://farm5.staticflickr.com/4092/5053241585_c55c3e24c0_o.jpg", "secret": "b72087a6a0", "media": "photo", "latitude": "41.375826", "id": "5053241585", "tags": "barcelona film spain doubleexposure lomolca lasramblas kodakportra160vc 2010"}, {"datetaken": "2010-09-26 10:20:11", "license": "3", "title": "Echos in the Marina", "text": "", "album_id": "72157625093480132", "longitude": "2.182833", "url_o": "https://farm5.staticflickr.com/4108/5053875368_d8aa51a6f2_o.jpg", "secret": "b550fb552e", "media": "photo", "latitude": "41.379304", "id": "5053875368", "tags": "barcelona film spain doubleexposure lomolca kodakportra160vc 2010"}, {"datetaken": "2010-09-26 10:25:26", "license": "3", "title": "Studying Hard", "text": "", "album_id": "72157625093480132", "longitude": "2.174771", "url_o": "https://farm5.staticflickr.com/4132/5056819748_7fbfe11a67_o.jpg", "secret": "1aacabdfb0", "media": "photo", "latitude": "41.375681", "id": "5056819748", "tags": "barcelona film spain lomolca kodakportra160vc 2010"}, {"datetaken": "2010-09-26 10:49:02", "license": "3", "title": "Tibidabo", "text": "", "album_id": "72157625093480132", "longitude": "2.119850", "url_o": "https://farm5.staticflickr.com/4144/5056820154_541c653570_o.jpg", "secret": "6f40172a52", "media": "photo", "latitude": "41.421434", "id": "5056820154", "tags": "barcelona film spain lomolca kodakportra160vc tibidabo 2010"}, {"datetaken": "2010-09-26 10:54:06", "license": "3", "title": "Arc de Triomf, Barcelona", "text": "", "album_id": "72157625093480132", "longitude": "2.180220", "url_o": "https://farm5.staticflickr.com/4086/5059511048_533f0d57f9_o.jpg", "secret": "d41b488dc0", "media": "photo", "latitude": "41.391410", "id": "5059511048", "tags": "barcelona film spain lomolca kodakportra160vc 2010 parcdelaciutadella arcdetriomf"}, {"datetaken": "2010-09-26 11:03:49", "license": "3", "title": "This is Not Steampunk", "text": "", "album_id": "72157625093480132", "longitude": "2.184416", "url_o": "https://farm5.staticflickr.com/4103/5058898179_d990b1ef46_o.jpg", "secret": "25cd6357db", "media": "photo", "latitude": "41.389233", "id": "5058898179", "tags": "barcelona film spain lomolca kodakportra160vc 2010 parcdelaciutadella"}, {"datetaken": "2010-09-26 11:19:13", "license": "3", "title": "Caged Mannequins", "text": "", "album_id": "72157625093480132", "longitude": "2.185210", "url_o": "https://farm5.staticflickr.com/4125/5059512042_dd4557e0d2_o.jpg", "secret": "6c0def2c81", "media": "photo", "latitude": "41.386681", "id": "5059512042", "tags": "barcelona film spain doubleexposure lomolca kodakportra160vc 2010 parcdelaciutadella"}, {"datetaken": "2010-09-26 11:39:58", "license": "3", "title": "Light a Little Candle for Me", "text": "", "album_id": "72157625093480132", "longitude": "2.176380", "url_o": "https://farm5.staticflickr.com/4092/5061461435_b62afea3c6_o.jpg", "secret": "d3108bb644", "media": "photo", "latitude": "41.384037", "id": "5061461435", "tags": "barcelona film spain doubleexposure lomolca 2010 fujisuperia100 barcelonacathedral"}, {"datetaken": "2010-09-26 11:50:08", "license": "3", "title": "Barcelona Cathedral", "text": "", "album_id": "72157625093480132", "longitude": "2.176005", "url_o": "https://farm5.staticflickr.com/4132/5062072642_89b54077f4_o.jpg", "secret": "86f5a0bd0b", "media": "photo", "latitude": "41.384878", "id": "5062072642", "tags": "barcelona film spain lomolca 2010 fujisuperia100"}, {"datetaken": "2010-09-26 12:08:06", "license": "3", "title": "Ease Your Feet in the Sea", "text": "", "album_id": "72157625093480132", "longitude": "2.195177", "url_o": "https://farm5.staticflickr.com/4132/5062073112_a239ecbe3e_o.jpg", "secret": "c8b0ba959b", "media": "photo", "latitude": "41.382089", "id": "5062073112", "tags": "barcelona film spain lomolca 2010 fujisuperia100"}, {"datetaken": "2010-09-26 12:23:03", "license": "3", "title": "No...Just No", "text": "", "album_id": "72157625093480132", "longitude": "2.195231", "url_o": "https://farm5.staticflickr.com/4149/5064530198_a80f3e720a_o.jpg", "secret": "136ce20e3a", "media": "photo", "latitude": "41.381280", "id": "5064530198", "tags": "barcelona film spain lomolca 2010 fujisuperia100"}, {"datetaken": "2010-09-26 12:28:22", "license": "3", "title": "No Littering", "text": "", "album_id": "72157625093480132", "longitude": "2.192999", "url_o": "https://farm5.staticflickr.com/4154/5063916885_c7c8b00060_o.jpg", "secret": "f67a85e2a0", "media": "photo", "latitude": "41.379751", "id": "5063916885", "tags": "barcelona film spain lomolca 2010 fujisuperia100"}, {"datetaken": "2010-09-26 12:38:44", "license": "3", "title": "Inside Segrada Familia", "text": "", "album_id": "72157625093480132", "longitude": "2.174342", "url_o": "https://farm5.staticflickr.com/4089/5067394170_6d6f5d8438_o.jpg", "secret": "790a9e9cde", "media": "photo", "latitude": "41.403487", "id": "5067394170", "tags": "barcelona film spain lomolca sagradafamilia 2010 fujisuperia100"}, {"datetaken": "2010-09-26 12:48:42", "license": "3", "title": "Gaudi", "text": "", "album_id": "72157625093480132", "longitude": "2.174417", "url_o": "https://farm5.staticflickr.com/4146/5066784133_9c631fa0c8_o.jpg", "secret": "cf571904e6", "media": "photo", "latitude": "41.403503", "id": "5066784133", "tags": "barcelona film spain doubleexposure lomolca sagradafamilia 2010 fujisuperia100"}, {"datetaken": "2010-09-26 12:51:15", "license": "3", "title": "Sagrada Familia", "text": "", "album_id": "72157625093480132", "longitude": "2.175576", "url_o": "https://farm5.staticflickr.com/4125/5064530710_22b5720fde_o.jpg", "secret": "9fe5fedbf5", "media": "photo", "latitude": "41.404698", "id": "5064530710", "tags": "barcelona film spain lomolca sagradafamilia 2010 fujisuperia100"}, {"datetaken": "2010-09-26 12:58:57", "license": "3", "title": "Casa Batll\u00f3", "text": "", "album_id": "72157625093480132", "longitude": "2.165319", "url_o": "https://farm5.staticflickr.com/4109/5067394768_69aab9a6b3_o.jpg", "secret": "7ffa61a54c", "media": "photo", "latitude": "41.391583", "id": "5067394768", "tags": "barcelona film spain lomolca casabatll\u00f3 2010 fujisuperia100"}, {"datetaken": "2010-09-26 13:01:31", "license": "3", "title": "Book Stall", "text": "", "album_id": "72157625093480132", "longitude": "2.168012", "url_o": "https://farm5.staticflickr.com/4149/5071271818_399b674690_o.jpg", "secret": "4c399864ba", "media": "photo", "latitude": "41.389978", "id": "5071271818", "tags": "barcelona film spain lomolca 2010 fujisuperia100"}, {"datetaken": "2010-09-26 13:10:47", "license": "3", "title": "Plac\u0327a De Catalunya", "text": "", "album_id": "72157625093480132", "longitude": "2.170147", "url_o": "https://farm5.staticflickr.com/4144/5071272300_9ce5ddcd82_o.jpg", "secret": "067638c728", "media": "photo", "latitude": "41.386822", "id": "5071272300", "tags": "barcelona film spain doubleexposure lomolca 2010 fujisuperia100 plac\u0327adecatalunya"}, {"datetaken": "2010-09-26 13:16:01", "license": "3", "title": "Monument", "text": "", "album_id": "72157625093480132", "longitude": "2.151826", "url_o": "https://farm5.staticflickr.com/4053/5074768312_8bbf8af234_o.jpg", "secret": "29ea8eab99", "media": "photo", "latitude": "41.364707", "id": "5074768312", "tags": "barcelona film spain doubleexposure lomolca olympicvillage 2010 fujisuperia100"}, {"datetaken": "2010-09-26 13:26:50", "license": "3", "title": "John the Baptist", "text": "", "album_id": "72157625093480132", "longitude": "2.153474", "url_o": "https://farm5.staticflickr.com/4011/5074768618_86c5942e14_o.jpg", "secret": "e3d5b509ed", "media": "photo", "latitude": "41.367960", "id": "5074768618", "tags": "barcelona film spain lomolca 2010 fujisuperia100 museunacionaldartdecatalunya"}, {"datetaken": "2010-09-26 13:29:37", "license": "3", "title": "The Gallery", "text": "", "album_id": "72157625093480132", "longitude": "2.153399", "url_o": "https://farm5.staticflickr.com/4066/5074171593_988b20e96f_o.jpg", "secret": "f31e697f5f", "media": "photo", "latitude": "41.368125", "id": "5074171593", "tags": "barcelona film spain lomolca 2010 fujisuperia100 museunacionaldartdecatalunya"}, {"datetaken": "2010-09-26 13:39:26", "license": "3", "title": "Echos of the Museum", "text": "", "album_id": "72157625093480132", "longitude": "2.153828", "url_o": "https://farm5.staticflickr.com/4124/5077301979_840971e26b_o.jpg", "secret": "0b502b347f", "media": "photo", "latitude": "41.368153", "id": "5077301979", "tags": "barcelona film spain doubleexposure lomolca 2010 museunacionaldartdecatalunya klickmax200"}, {"datetaken": "2010-09-26 13:41:52", "license": "3", "title": "El Hombre Invisible", "text": "", "album_id": "72157625093480132", "longitude": "2.154182", "url_o": "https://farm5.staticflickr.com/4014/5077302607_3ff1ba6705_o.jpg", "secret": "826f4ba3e2", "media": "photo", "latitude": "41.368386", "id": "5077302607", "tags": "barcelona film spain lomolca 2010 museunacionaldartdecatalunya klickmax200"}, {"datetaken": "2010-09-26 13:49:37", "license": "3", "title": "Ship Yards", "text": "", "album_id": "72157625093480132", "longitude": "2.166596", "url_o": "https://farm5.staticflickr.com/4059/5077900042_f687498110_o.jpg", "secret": "080bc3aa16", "media": "photo", "latitude": "41.363161", "id": "5077900042", "tags": "barcelona film spain lomolca 2010 klickmax200 castelldemontjui\u0308c"}, {"datetaken": "2010-09-26 13:55:41", "license": "3", "title": "Family", "text": "", "album_id": "72157625093480132", "longitude": "2.166306", "url_o": "https://farm5.staticflickr.com/4085/5080172491_d71d339a92_o.jpg", "secret": "74ba766e62", "media": "photo", "latitude": "41.363455", "id": "5080172491", "tags": "barcelona film spain doubleexposure lomolca 2010 klickmax200 castelldemontjui\u0308c"}, {"datetaken": "2010-09-26 14:03:28", "license": "3", "title": "She Dreams of Toucans", "text": "", "album_id": "72157625093480132", "longitude": "2.187849", "url_o": "https://farm5.staticflickr.com/4129/5080765984_fc777a008c_o.jpg", "secret": "72d8d8cd2b", "media": "photo", "latitude": "41.385349", "id": "5080765984", "tags": "barcelona film spain doubleexposure lomolca 2010 klickmax200 parquezoolo\u0301gicodebarcelona"}, {"datetaken": "2010-09-26 14:35:39", "license": "3", "title": "Duty Free", "text": "", "album_id": "72157625093480132", "longitude": "2.078364", "url_o": "https://farm5.staticflickr.com/4089/5083088517_97fa1de6ca_o.jpg", "secret": "9ac395efc5", "media": "photo", "latitude": "41.303006", "id": "5083088517", "tags": "barcelona film spain lomolca 2010 barcelonaairport klickmax200"}, {"datetaken": "2010-09-26 14:44:16", "license": "3", "title": "Travel Woes", "text": "", "album_id": "72157625093480132", "longitude": "2.081025", "url_o": "https://farm5.staticflickr.com/4084/5083685510_05feac780f_o.jpg", "secret": "60d800fd24", "media": "photo", "latitude": "41.303054", "id": "5083685510", "tags": "barcelona film spain lomolca 2010 barcelonaairport klickmax200"}, {"datetaken": "2011-12-31 20:25:08", "license": "5", "title": "DSC06876", "text": "", "album_id": "72157628771568153", "longitude": "120.394119", "url_o": "https://farm8.staticflickr.com/7027/6657742157_d7200fe9f3_o.jpg", "secret": "eb30dae56f", "media": "photo", "latitude": "22.736266", "id": "6657742157", "tags": ""}, {"datetaken": "2011-12-31 20:31:38", "license": "5", "title": "DSC06877", "text": "", "album_id": "72157628771568153", "longitude": "120.397527", "url_o": "https://farm8.staticflickr.com/7022/6657742891_20135c3da5_o.jpg", "secret": "91f812d1e8", "media": "photo", "latitude": "22.732019", "id": "6657742891", "tags": ""}, {"datetaken": "2011-12-31 20:36:09", "license": "5", "title": "DSC06888", "text": "", "album_id": "72157628771568153", "longitude": "120.399152", "url_o": "https://farm8.staticflickr.com/7171/6657743667_6996bc3699_o.jpg", "secret": "77c30a3694", "media": "photo", "latitude": "22.731347", "id": "6657743667", "tags": ""}, {"datetaken": "2011-12-31 20:38:49", "license": "5", "title": "DSC06893", "text": "", "album_id": "72157628771568153", "longitude": "120.400038", "url_o": "https://farm8.staticflickr.com/7019/6657744409_0773aa3eed_o.jpg", "secret": "668b3cb434", "media": "photo", "latitude": "22.730736", "id": "6657744409", "tags": ""}, {"datetaken": "2011-12-31 20:40:14", "license": "5", "title": "DSC06897", "text": "", "album_id": "72157628771568153", "longitude": "120.400666", "url_o": "https://farm8.staticflickr.com/7157/6657745207_c394b87f65_o.jpg", "secret": "6eeb2d8b55", "media": "photo", "latitude": "22.730477", "id": "6657745207", "tags": ""}, {"datetaken": "2011-12-31 20:40:26", "license": "5", "title": "DSC06898", "text": "", "album_id": "72157628771568153", "longitude": "120.400666", "url_o": "https://farm8.staticflickr.com/7164/6657745889_b1e72f6d72_o.jpg", "secret": "573b85f773", "media": "photo", "latitude": "22.730477", "id": "6657745889", "tags": ""}, {"datetaken": "2011-12-31 20:41:59", "license": "5", "title": "DSC06900", "text": "", "album_id": "72157628771568153", "longitude": "120.401469", "url_o": "https://farm8.staticflickr.com/7152/6657746553_c07e9abc0c_o.jpg", "secret": "e51d370229", "media": "photo", "latitude": "22.730505", "id": "6657746553", "tags": ""}, {"datetaken": "2011-12-31 20:42:11", "license": "5", "title": "DSC06901", "text": "", "album_id": "72157628771568153", "longitude": "120.401469", "url_o": "https://farm8.staticflickr.com/7034/6657747203_7704f82f4b_o.jpg", "secret": "c448142399", "media": "photo", "latitude": "22.730505", "id": "6657747203", "tags": ""}, {"datetaken": "2011-12-31 20:44:05", "license": "5", "title": "DSC06904", "text": "", "album_id": "72157628771568153", "longitude": "120.401733", "url_o": "https://farm8.staticflickr.com/7005/6657748029_aea4bf803b_o.jpg", "secret": "fd2af514ee", "media": "photo", "latitude": "22.729830", "id": "6657748029", "tags": ""}, {"datetaken": "2011-12-31 22:32:37", "license": "5", "title": "DSC06909", "text": "", "album_id": "72157628771568153", "longitude": "120.401661", "url_o": "https://farm8.staticflickr.com/7145/6657748791_3fc967e52f_o.jpg", "secret": "9b1e6818d2", "media": "photo", "latitude": "22.729763", "id": "6657748791", "tags": ""}, {"datetaken": "2011-12-31 22:33:00", "license": "5", "title": "DSC06910", "text": "", "album_id": "72157628771568153", "longitude": "120.401819", "url_o": "https://farm8.staticflickr.com/7141/6657749547_563398e795_o.jpg", "secret": "e8645ff962", "media": "photo", "latitude": "22.731161", "id": "6657749547", "tags": ""}, {"datetaken": "2011-12-31 22:33:17", "license": "5", "title": "DSC06911", "text": "", "album_id": "72157628771568153", "longitude": "120.401900", "url_o": "https://farm8.staticflickr.com/7009/6657750181_fccc67f462_o.jpg", "secret": "3b20d247d6", "media": "photo", "latitude": "22.731202", "id": "6657750181", "tags": ""}, {"datetaken": "2011-12-31 22:33:31", "license": "5", "title": "DSC06912", "text": "", "album_id": "72157628771568153", "longitude": "120.401930", "url_o": "https://farm8.staticflickr.com/7149/6657750879_948e127f6b_o.jpg", "secret": "35813e652b", "media": "photo", "latitude": "22.731202", "id": "6657750879", "tags": ""}, {"datetaken": "2011-12-31 22:34:19", "license": "5", "title": "DSC06914", "text": "", "album_id": "72157628771568153", "longitude": "120.402027", "url_o": "https://farm8.staticflickr.com/7020/6657751467_72aca7aedc_o.jpg", "secret": "06a00bdd9c", "media": "photo", "latitude": "22.731194", "id": "6657751467", "tags": ""}, {"datetaken": "2011-12-31 22:34:30", "license": "5", "title": "DSC06915", "text": "", "album_id": "72157628771568153", "longitude": "120.402041", "url_o": "https://farm8.staticflickr.com/7148/6657752121_f52245b5cb_o.jpg", "secret": "4c3bf08b85", "media": "photo", "latitude": "22.731194", "id": "6657752121", "tags": ""}, {"datetaken": "2011-12-31 22:36:02", "license": "5", "title": "DSC06917", "text": "", "album_id": "72157628771568153", "longitude": "120.402488", "url_o": "https://farm8.staticflickr.com/7015/6657752743_523fd02bda_o.jpg", "secret": "d318e86dc9", "media": "photo", "latitude": "22.731038", "id": "6657752743", "tags": ""}, {"datetaken": "2011-12-31 22:38:55", "license": "5", "title": "DSC06922", "text": "", "album_id": "72157628771568153", "longitude": "120.402786", "url_o": "https://farm8.staticflickr.com/7157/6657753501_8c2849691e_o.jpg", "secret": "cd85e7b516", "media": "photo", "latitude": "22.731322", "id": "6657753501", "tags": ""}, {"datetaken": "2011-12-31 22:39:14", "license": "5", "title": "DSC06923", "text": "", "album_id": "72157628771568153", "longitude": "120.402811", "url_o": "https://farm8.staticflickr.com/7146/6657754225_75a372b1a6_o.jpg", "secret": "03f40fdeeb", "media": "photo", "latitude": "22.731327", "id": "6657754225", "tags": ""}, {"datetaken": "2011-12-31 22:40:59", "license": "5", "title": "DSC06926", "text": "", "album_id": "72157628771568153", "longitude": "120.402772", "url_o": "https://farm8.staticflickr.com/7015/6657754871_329fecccf5_o.jpg", "secret": "75e59d56d8", "media": "photo", "latitude": "22.731297", "id": "6657754871", "tags": ""}, {"datetaken": "2011-12-31 22:43:20", "license": "5", "title": "DSC06930", "text": "", "album_id": "72157628771568153", "longitude": "120.402666", "url_o": "https://farm8.staticflickr.com/7171/6657755311_99a15b3f46_o.jpg", "secret": "213bf22080", "media": "photo", "latitude": "22.731294", "id": "6657755311", "tags": ""}, {"datetaken": "2011-12-31 22:43:33", "license": "5", "title": "DSC06931", "text": "", "album_id": "72157628771568153", "longitude": "120.402755", "url_o": "https://farm8.staticflickr.com/7023/6657755893_4f0330595b_o.jpg", "secret": "55384bf6a5", "media": "photo", "latitude": "22.731316", "id": "6657755893", "tags": ""}, {"datetaken": "2011-12-31 23:04:10", "license": "5", "title": "DSC06953", "text": "", "album_id": "72157628771568153", "longitude": "120.402816", "url_o": "https://farm8.staticflickr.com/7150/6657756287_dac559eb73_o.jpg", "secret": "1b4637ce62", "media": "photo", "latitude": "22.731297", "id": "6657756287", "tags": ""}, {"datetaken": "2011-12-31 23:06:37", "license": "5", "title": "DSC06954", "text": "", "album_id": "72157628771568153", "longitude": "120.402777", "url_o": "https://farm8.staticflickr.com/7025/6657756743_37f6390fce_o.jpg", "secret": "c4046b80a5", "media": "photo", "latitude": "22.731277", "id": "6657756743", "tags": ""}, {"datetaken": "2012-01-01 00:32:58", "license": "5", "title": "DSC06964", "text": "", "album_id": "72157628771568153", "longitude": "120.403150", "url_o": "https://farm8.staticflickr.com/7022/6657757295_6af9d80f42_o.jpg", "secret": "ec8139e3d0", "media": "photo", "latitude": "22.731172", "id": "6657757295", "tags": ""}, {"datetaken": "2012-01-01 01:15:19", "license": "5", "title": "DSC06969", "text": "", "album_id": "72157628771568153", "longitude": "120.403238", "url_o": "https://farm8.staticflickr.com/7017/6657757785_e2c460aeae_o.jpg", "secret": "d0e1861ffc", "media": "photo", "latitude": "22.731019", "id": "6657757785", "tags": ""}, {"datetaken": "2012-01-01 01:15:29", "license": "5", "title": "DSC06970", "text": "", "album_id": "72157628771568153", "longitude": "120.403177", "url_o": "https://farm8.staticflickr.com/7165/6657758215_242c1bce29_o.jpg", "secret": "cba508b528", "media": "photo", "latitude": "22.731136", "id": "6657758215", "tags": ""}, {"datetaken": "2009-06-06 11:49:28", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.377375", "url_o": "https://farm5.staticflickr.com/4001/4499174733_d45f6fbcd6_o.jpg", "secret": "9f1bc8d39e", "media": "photo", "latitude": "61.608469", "id": "4499174733", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 099kmtoruolahtiinwesternfinlandfinland geo:lat=61608470 geo:lon=25377375"}, {"datetaken": "2009-06-06 11:52:18", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.379133", "url_o": "https://farm5.staticflickr.com/4003/4499175501_e33a23e50e_o.jpg", "secret": "5e5af527f8", "media": "photo", "latitude": "61.608575", "id": "4499175501", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 098kmtoruolahtiinwesternfinlandfinland geo:lat=61608575 geo:lon=25379132"}, {"datetaken": "2009-06-06 11:59:50", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.378730", "url_o": "https://farm3.staticflickr.com/2696/4499811154_da0d087f36_o.jpg", "secret": "4641c4c628", "media": "photo", "latitude": "61.607041", "id": "4499811154", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 082kmtoruolahtiinwesternfinlandfinland geo:lat=61607043 geo:lon=25378730"}, {"datetaken": "2009-06-06 12:00:13", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.378680", "url_o": "https://farm5.staticflickr.com/4066/4499811646_2cfc521a4c_o.jpg", "secret": "810c24d268", "media": "photo", "latitude": "61.606972", "id": "4499811646", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 081kmtoruolahtiinwesternfinlandfinland geo:lat=61606972 geo:lon=25378680"}, {"datetaken": "2009-06-06 12:12:06", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.381552", "url_o": "https://farm3.staticflickr.com/2724/4499813772_cce89d171d_o.jpg", "secret": "aea4e1e512", "media": "photo", "latitude": "61.607097", "id": "4499813772", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 079kmtoruolahtiinwesternfinlandfinland geo:lat=61607097 geo:lon=25381553"}, {"datetaken": "2009-06-06 12:18:38", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.385819", "url_o": "https://farm5.staticflickr.com/4032/4499179147_8c5d78d4d4_o.jpg", "secret": "7e13f818fd", "media": "photo", "latitude": "61.609488", "id": "4499179147", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 106kmtoruolahtiinwesternfinlandfinland geo:lat=61609488 geo:lon=25385820"}, {"datetaken": "2009-06-06 12:18:45", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.385819", "url_o": "https://farm3.staticflickr.com/2691/4499179613_8db83cc344_o.jpg", "secret": "1fdbe891c7", "media": "photo", "latitude": "61.609488", "id": "4499179613", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 106kmtoruolahtiinwesternfinlandfinland geo:lat=61609488 geo:lon=25385820"}, {"datetaken": "2009-06-06 12:21:52", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.386997", "url_o": "https://farm3.staticflickr.com/2742/4499815678_7bc6ef17f3_o.jpg", "secret": "171ff92ea9", "media": "photo", "latitude": "61.610116", "id": "4499815678", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 114kmtoruolahtiinwesternfinlandfinland geo:lat=61610117 geo:lon=25386998"}, {"datetaken": "2009-06-06 12:21:58", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.386997", "url_o": "https://farm5.staticflickr.com/4060/4499816160_7456df61cb_o.jpg", "secret": "dd2f835cf8", "media": "photo", "latitude": "61.610116", "id": "4499816160", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 114kmtoruolahtiinwesternfinlandfinland geo:lat=61610117 geo:lon=25386998"}, {"datetaken": "2009-06-06 12:23:21", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.387191", "url_o": "https://farm3.staticflickr.com/2772/4499817070_7d5f314a0a_o.jpg", "secret": "eef5d3410b", "media": "photo", "latitude": "61.610458", "id": "4499817070", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 118kmtoruolahtiinwesternfinlandfinland geo:lat=61610457 geo:lon=25387192"}, {"datetaken": "2009-06-06 12:39:00", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.376297", "url_o": "https://farm5.staticflickr.com/4049/4499817636_28fb082ae1_o.jpg", "secret": "776d51b723", "media": "photo", "latitude": "61.612388", "id": "4499817636", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 143kmtoruolahtiinwesternfinlandfinland geo:lat=61612388 geo:lon=25376297"}, {"datetaken": "2009-06-06 12:40:54", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.377091", "url_o": "https://farm5.staticflickr.com/4028/4499818210_6ecfefc8f2_o.jpg", "secret": "fccdd9efa7", "media": "photo", "latitude": "61.612427", "id": "4499818210", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 142kmtoruolahtiinwesternfinlandfinland geo:lat=61612427 geo:lon=25377092"}, {"datetaken": "2009-06-06 12:44:34", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.376861", "url_o": "https://farm5.staticflickr.com/4038/4499184731_de793c5c59_o.jpg", "secret": "13b3126f4a", "media": "photo", "latitude": "61.612194", "id": "4499184731", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 140kmtoruolahtiinwesternfinlandfinland geo:lat=61612195 geo:lon=25376862"}, {"datetaken": "2009-06-07 12:30:36", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.390986", "url_o": "https://farm5.staticflickr.com/4040/4499188797_ef38c66d56_o.jpg", "secret": "770be80f86", "media": "photo", "latitude": "61.611186", "id": "4499188797", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 131kmtoruolahtiinwesternfinlandfinland geo:lat=61611185 geo:lon=25390985"}, {"datetaken": "2009-06-07 12:30:46", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.390933", "url_o": "https://farm3.staticflickr.com/2690/4499824298_ab144d69ca_o.jpg", "secret": "5eee122c7e", "media": "photo", "latitude": "61.611205", "id": "4499824298", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 131kmtoruolahtiinwesternfinlandfinland geo:lat=61611205 geo:lon=25390932"}, {"datetaken": "2009-06-07 12:34:32", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.392558", "url_o": "https://farm5.staticflickr.com/4062/4499824748_667d9b0843_o.jpg", "secret": "60eee6c3e4", "media": "photo", "latitude": "61.611363", "id": "4499824748", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 135kmtoruolahtiinwesternfinlandfinland geo:lat=61611363 geo:lon=25392557"}, {"datetaken": "2009-06-07 12:35:36", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.392613", "url_o": "https://farm3.staticflickr.com/2744/4499825230_2ed16d18af_o.jpg", "secret": "fa971a588b", "media": "photo", "latitude": "61.611319", "id": "4499825230", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 135kmtoruolahtiinwesternfinlandfinland geo:lat=61611320 geo:lon=25392613"}, {"datetaken": "2009-06-07 12:36:12", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.392588", "url_o": "https://farm3.staticflickr.com/2722/4499825724_f4d26e4fe7_o.jpg", "secret": "a7acd6d94e", "media": "photo", "latitude": "61.611213", "id": "4499825724", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 134kmtoruolahtiinwesternfinlandfinland geo:lat=61611215 geo:lon=25392588"}, {"datetaken": "2009-06-07 12:57:53", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.398816", "url_o": "https://farm5.staticflickr.com/4065/4499826732_67f4e0938d_o.jpg", "secret": "fac55dfe81", "media": "photo", "latitude": "61.618338", "id": "4499826732", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 220kmtoruolahtiinwesternfinlandfinland geo:lat=61618340 geo:lon=25398818"}, {"datetaken": "2009-06-07 12:59:35", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.400299", "url_o": "https://farm3.staticflickr.com/2739/4499827810_702ca96fa4_o.jpg", "secret": "0743f0c7be", "media": "photo", "latitude": "61.618711", "id": "4499827810", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 227kmtoruolahtiinwesternfinlandfinland geo:lat=61618710 geo:lon=25400300"}, {"datetaken": "2009-06-07 13:02:49", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.402922", "url_o": "https://farm5.staticflickr.com/4035/4499828410_a751337342_o.jpg", "secret": "6be0d958bf", "media": "photo", "latitude": "61.619475", "id": "4499828410", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 240kmtoruolahtiinwesternfinlandfinland geo:lat=61619475 geo:lon=25402923"}, {"datetaken": "2009-06-07 13:04:31", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.403111", "url_o": "https://farm5.staticflickr.com/4067/4499193875_d7c45a3e59_o.jpg", "secret": "5fe1d593e4", "media": "photo", "latitude": "61.619933", "id": "4499193875", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 245kmtoruolahtiinwesternfinlandfinland geo:lat=61619932 geo:lon=25403112"}, {"datetaken": "2009-06-07 13:04:43", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.403111", "url_o": "https://farm5.staticflickr.com/4053/4499194161_a6a42c5614_o.jpg", "secret": "98c6f4aebb", "media": "photo", "latitude": "61.619933", "id": "4499194161", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 245kmtoruolahtiinwesternfinlandfinland geo:lat=61619932 geo:lon=25403112"}, {"datetaken": "2009-06-07 13:05:32", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.402672", "url_o": "https://farm3.staticflickr.com/2788/4499829482_06862b5dd4_o.jpg", "secret": "becd18b519", "media": "photo", "latitude": "61.620197", "id": "4499829482", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 247kmtoruolahtiinwesternfinlandfinland geo:lat=61620197 geo:lon=25402672"}, {"datetaken": "2009-06-07 13:06:37", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.401677", "url_o": "https://farm5.staticflickr.com/4043/4499829760_e75b68798f_o.jpg", "secret": "2849b405b4", "media": "photo", "latitude": "61.620158", "id": "4499829760", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 244kmtoruolahtiinwesternfinlandfinland geo:lat=61620157 geo:lon=25401677"}, {"datetaken": "2009-06-07 13:10:11", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.401563", "url_o": "https://farm5.staticflickr.com/4035/4499830016_6f1c8933e6_o.jpg", "secret": "fd59a2f3c0", "media": "photo", "latitude": "61.620122", "id": "4499830016", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 244kmtoruolahtiinwesternfinlandfinland geo:lat=61620122 geo:lon=25401565"}, {"datetaken": "2009-06-07 13:17:12", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.401619", "url_o": "https://farm3.staticflickr.com/2727/4499195467_73251548d3_o.jpg", "secret": "e6081c041a", "media": "photo", "latitude": "61.620055", "id": "4499195467", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 243kmtoruolahtiinwesternfinlandfinland geo:lat=61620055 geo:lon=25401620"}, {"datetaken": "2009-06-07 13:34:19", "license": "4", "title": "Kuhmoinen", "text": "", "album_id": "72157623669724045", "longitude": "25.397455", "url_o": "https://farm5.staticflickr.com/4029/4499195997_951e494bce_o.jpg", "secret": "d774e7af8b", "media": "photo", "latitude": "61.614616", "id": "4499195997", "tags": "finland geotagged kuhmoinen ruolahti westernfinland 179kmtoruolahtiinwesternfinlandfinland geo:lat=61614618 geo:lon=25397455"}, {"datetaken": "2010-08-06 20:01:02", "license": "6", "title": "Gull", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4868947089_8225b46fd5_o.jpg", "secret": "a7016e458d", "media": "photo", "latitude": "0", "id": "4868947089", "tags": "toronto peace nuclear lantern bomb atom nathanphillipssquare hiroshimaday august62010"}, {"datetaken": "2010-08-06 20:01:35", "license": "6", "title": "Lantern Arrives", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4868947391_e389c214ac_o.jpg", "secret": "1567d199ee", "media": "photo", "latitude": "0", "id": "4868947391", "tags": "toronto peace nuclear lantern bomb atom nathanphillipssquare hiroshimaday august62010"}, {"datetaken": "2010-08-06 20:01:45", "license": "6", "title": "Lantern Carried", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4869561582_08a4922fb5_o.jpg", "secret": "ae75e7d2e8", "media": "photo", "latitude": "0", "id": "4869561582", "tags": "toronto peace nuclear lantern bomb atom nathanphillipssquare hiroshimaday august62010"}, {"datetaken": "2010-08-06 20:02:17", "license": "6", "title": "Lantern Gifts", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4869562000_185fa0244a_o.jpg", "secret": "b0393a1204", "media": "photo", "latitude": "0", "id": "4869562000", "tags": "toronto peace nuclear lantern bomb atom nathanphillipssquare hiroshimaday august62010"}, {"datetaken": "2010-08-06 20:02:36", "license": "6", "title": "Lantern Luck", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4869562344_aa79052a38_o.jpg", "secret": "289287a1fa", "media": "photo", "latitude": "0", "id": "4869562344", "tags": "toronto peace nuclear lantern bomb atom nathanphillipssquare hiroshimaday august62010"}, {"datetaken": "2010-08-06 20:02:38", "license": "6", "title": "Lantern Launch", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4869562716_0bebe019b4_o.jpg", "secret": "7a541d6778", "media": "photo", "latitude": "0", "id": "4869562716", "tags": "toronto peace nuclear lantern bomb atom nathanphillipssquare hiroshimaday august62010"}, {"datetaken": "2010-08-06 20:02:49", "license": "6", "title": "Lantern Float", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4869563100_d7f42c8a57_o.jpg", "secret": "5a1a61c050", "media": "photo", "latitude": "0", "id": "4869563100", "tags": "toronto peace nuclear lantern bomb atom nathanphillipssquare hiroshimaday august62010"}, {"datetaken": "2010-08-06 20:03:10", "license": "6", "title": "Lantern Watch", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4868949519_f2152ce8ed_o.jpg", "secret": "8606afd8e9", "media": "photo", "latitude": "0", "id": "4868949519", "tags": "toronto peace nuclear lantern bomb atom nathanphillipssquare hiroshimaday august62010"}, {"datetaken": "2010-08-06 20:03:10", "license": "6", "title": "Lantern Watchers", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4868949769_5aa86f2a82_o.jpg", "secret": "883e6a0488", "media": "photo", "latitude": "0", "id": "4868949769", "tags": "toronto peace nuclear lantern bomb atom nathanphillipssquare hiroshimaday august62010"}, {"datetaken": "2010-08-06 20:03:24", "license": "6", "title": "Lantern Regatta", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4868949961_a2547df203_o.jpg", "secret": "2ab2b9417e", "media": "photo", "latitude": "0", "id": "4868949961", "tags": "toronto peace nuclear lantern bomb atom nathanphillipssquare hiroshimaday august62010"}, {"datetaken": "2010-08-06 20:05:08", "license": "6", "title": "Lantern City", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4869564172_21faeb3fe3_o.jpg", "secret": "abf932d613", "media": "photo", "latitude": "0", "id": "4869564172", "tags": "toronto peace nuclear lantern bomb atom nathanphillipssquare hiroshimaday august62010"}, {"datetaken": "2010-08-06 20:05:35", "license": "6", "title": "Lantern City Hall", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4868950773_f3e2800eb9_o.jpg", "secret": "ef30c09ce6", "media": "photo", "latitude": "0", "id": "4868950773", "tags": "toronto peace nuclear lantern bomb atom nathanphillipssquare hiroshimaday august62010"}, {"datetaken": "2010-08-06 20:05:49", "license": "6", "title": "Lantern Cityscape", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4868951119_990b45d319_o.jpg", "secret": "e917bd9433", "media": "photo", "latitude": "0", "id": "4868951119", "tags": "toronto peace nuclear lantern bomb atom nathanphillipssquare hiroshimaday august62010"}, {"datetaken": "2010-08-06 20:06:09", "license": "6", "title": "Lantern Architecture", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4869565338_3fa2f5a608_o.jpg", "secret": "fbf5d4d9c3", "media": "photo", "latitude": "0", "id": "4869565338", "tags": "toronto peace nuclear lantern bomb atom nathanphillipssquare hiroshimaday august62010"}, {"datetaken": "2010-08-06 20:08:47", "license": "6", "title": "Lantern Pass", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4869565704_2e73864806_o.jpg", "secret": "a2e9191b9f", "media": "photo", "latitude": "0", "id": "4869565704", "tags": "toronto peace nuclear lantern bomb atom nathanphillipssquare hiroshimaday august62010"}, {"datetaken": "2010-08-06 20:09:13", "license": "6", "title": "Lantern Lake", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4868952223_4cd8a3fd8d_o.jpg", "secret": "176735b8a4", "media": "photo", "latitude": "0", "id": "4868952223", "tags": "toronto peace nuclear lantern bomb atom nathanphillipssquare hiroshimaday august62010"}, {"datetaken": "2010-08-06 20:10:11", "license": "6", "title": "Lantern Kind", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4868952571_0378f890bd_o.jpg", "secret": "92a992b264", "media": "photo", "latitude": "0", "id": "4868952571", "tags": "6 toronto night peace nuclear august hiroshima lantern bomb atom"}, {"datetaken": "2010-08-06 20:10:42", "license": "6", "title": "Thomson", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4869566618_bcf724b9d1_o.jpg", "secret": "6d8365ea25", "media": "photo", "latitude": "0", "id": "4869566618", "tags": "toronto peace hiroshima thomson bomb murray peacegarden ploughshares"}, {"datetaken": "2010-08-06 20:13:59", "license": "6", "title": "Time", "text": "", "album_id": "72157624548986959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4869566922_4f962e4533_o.jpg", "secret": "aa4f5e1535", "media": "photo", "latitude": "0", "id": "4869566922", "tags": "toronto clock square evening day nathan phillips hiroshima"}, {"datetaken": "2012-02-04 14:23:22", "license": "1", "title": "Brooklyn Botanic Garden 2-2012-1", "text": "", "album_id": "72157629238847537", "longitude": "-73.966001", "url_o": "https://farm8.staticflickr.com/7207/6844394329_3b264cbe17_o.jpg", "secret": "66eed01428", "media": "photo", "latitude": "40.670694", "id": "6844394329", "tags": "nyc newyorkcity winter brooklyn garden nikon february brooklynbotanicgarden 2012 d90 bbgwinter"}, {"datetaken": "2012-02-04 15:11:19", "license": "1", "title": "Brooklyn Botanic Garden 2-2012-3", "text": "", "album_id": "72157629238847537", "longitude": "-73.966001", "url_o": "https://farm8.staticflickr.com/7149/6844400279_1bed9b391c_o.jpg", "secret": "75a341079c", "media": "photo", "latitude": "40.670694", "id": "6844400279", "tags": "nyc newyorkcity winter brooklyn garden nikon february brooklynbotanicgarden 2012 d90"}, {"datetaken": "2012-02-04 15:12:57", "license": "1", "title": "Brooklyn Botanic Garden 2-2012-4", "text": "", "album_id": "72157629238847537", "longitude": "-73.966001", "url_o": "https://farm8.staticflickr.com/7054/6844401755_371b89a417_o.jpg", "secret": "6d0b4e8f4e", "media": "photo", "latitude": "40.670694", "id": "6844401755", "tags": "nyc newyorkcity winter brooklyn garden japanesegarden pond nikon february brooklynbotanicgarden 2012 d90 bbgwinter"}, {"datetaken": "2012-02-04 15:14:43", "license": "1", "title": "Brooklyn Botanic Garden 2-2012-6", "text": "", "album_id": "72157629238847537", "longitude": "-73.966001", "url_o": "https://farm8.staticflickr.com/7195/6844405595_0e55d793f9_o.jpg", "secret": "ee1efe9c45", "media": "photo", "latitude": "40.670694", "id": "6844405595", "tags": "nyc newyorkcity winter brooklyn garden japanesegarden pond nikon february brooklynbotanicgarden 2012 d90 bbgwinter"}, {"datetaken": "2012-02-04 15:54:06", "license": "1", "title": "Brooklyn Botanic Garden 2-2012-7", "text": "", "album_id": "72157629238847537", "longitude": "-73.966001", "url_o": "https://farm8.staticflickr.com/7163/6844407391_d873647f3e_o.jpg", "secret": "5091c5c2d5", "media": "photo", "latitude": "40.670694", "id": "6844407391", "tags": "nyc newyorkcity winter brooklyn garden nikon february brooklynbotanicgarden rosegarden 2012 d90 bbgwinter"}, {"datetaken": "2012-02-05 13:00:38", "license": "1", "title": "Brooklyn Botanic Garden 2-2012-8", "text": "", "album_id": "72157629238847537", "longitude": "-73.966001", "url_o": "https://farm8.staticflickr.com/7018/6844409785_e257fe69cf_o.jpg", "secret": "f33f5a32c1", "media": "photo", "latitude": "40.670694", "id": "6844409785", "tags": "nyc newyorkcity winter brooklyn garden nikon february brooklynbotanicgarden 2012 d90"}, {"datetaken": "2012-02-05 13:24:05", "license": "1", "title": "Brooklyn Botanic Garden 2-2012-10", "text": "", "album_id": "72157629238847537", "longitude": "-73.966001", "url_o": "https://farm8.staticflickr.com/7057/6844414515_f2192d8c57_o.jpg", "secret": "04b75a220b", "media": "photo", "latitude": "40.670694", "id": "6844414515", "tags": "nyc newyorkcity trees winter shadow brooklyn garden nikon february brooklynbotanicgarden 2012 d90 bbgwinter"}, {"datetaken": "2012-02-05 13:46:31", "license": "1", "title": "Brooklyn Botanic Garden 2-2012-11", "text": "", "album_id": "72157629238847537", "longitude": "-73.966001", "url_o": "https://farm8.staticflickr.com/7176/6844416941_8cc743893c_o.jpg", "secret": "d34839fbff", "media": "photo", "latitude": "40.670694", "id": "6844416941", "tags": "nyc newyorkcity winter statue brooklyn garden japanesegarden nikon february brooklynbotanicgarden 2012 d90"}, {"datetaken": "2012-02-05 13:49:49", "license": "1", "title": "Brooklyn Botanic Garden 2-2012-12", "text": "", "album_id": "72157629238847537", "longitude": "-73.966001", "url_o": "https://farm8.staticflickr.com/7054/6844418765_bdae29ac19_o.jpg", "secret": "27ee836002", "media": "photo", "latitude": "40.670694", "id": "6844418765", "tags": "nyc newyorkcity winter bird brooklyn garden duck nikon february brooklynbotanicgarden 2012 d90"}, {"datetaken": "2012-02-05 13:50:05", "license": "1", "title": "Brooklyn Botanic Garden 2-2012-13", "text": "", "album_id": "72157629238847537", "longitude": "-73.966001", "url_o": "https://farm8.staticflickr.com/7164/6844420507_fc9025c081_o.jpg", "secret": "087991812d", "media": "photo", "latitude": "40.670694", "id": "6844420507", "tags": "nyc newyorkcity winter bird brooklyn garden duck nikon february brooklynbotanicgarden 2012 d90"}, {"datetaken": "2012-02-05 13:58:45", "license": "1", "title": "Brooklyn Botanic Garden 2-2012-14", "text": "", "album_id": "72157629238847537", "longitude": "-73.966001", "url_o": "https://farm8.staticflickr.com/7163/6844423035_bb606e67ac_o.jpg", "secret": "b0e35c8788", "media": "photo", "latitude": "40.670694", "id": "6844423035", "tags": "nyc newyorkcity winter brooklyn garden japanesegarden nikon february brooklynbotanicgarden 2012 d90"}, {"datetaken": "2012-02-05 13:59:26", "license": "1", "title": "Brooklyn Botanic Garden 2-2012-15", "text": "", "album_id": "72157629238847537", "longitude": "-73.966001", "url_o": "https://farm8.staticflickr.com/7057/6844424599_3cf1bc2cb5_o.jpg", "secret": "51c86b452b", "media": "photo", "latitude": "40.670694", "id": "6844424599", "tags": "nyc newyorkcity winter brooklyn garden nikon february brooklynbotanicgarden 2012 d90 bbgwinter"}, {"datetaken": "2012-02-05 13:59:48", "license": "1", "title": "Brooklyn Botanic Garden 2-2012-16", "text": "", "album_id": "72157629238847537", "longitude": "-73.966001", "url_o": "https://farm8.staticflickr.com/7013/6844427615_6b14f3dc5f_o.jpg", "secret": "8ebe170f86", "media": "photo", "latitude": "40.670694", "id": "6844427615", "tags": "nyc newyorkcity winter brooklyn garden japanesegarden pond nikon february brooklynbotanicgarden 2012 d90"}, {"datetaken": "2012-02-05 14:13:28", "license": "1", "title": "Brooklyn Botanic Garden 2-2012-17", "text": "", "album_id": "72157629238847537", "longitude": "-73.966001", "url_o": "https://farm8.staticflickr.com/7023/6844429505_20657a3fc6_o.jpg", "secret": "2d1ef8433e", "media": "photo", "latitude": "40.670694", "id": "6844429505", "tags": "nyc newyorkcity winter brooklyn garden nikon february brooklynbotanicgarden 2012 d90 cherryesplanade"}, {"datetaken": "2012-02-05 14:15:46", "license": "1", "title": "Brooklyn Botanic Garden 2-2012-18", "text": "", "album_id": "72157629238847537", "longitude": "-73.966001", "url_o": "https://farm8.staticflickr.com/7055/6844432121_a47d331b3c_o.jpg", "secret": "8e7cc8c58f", "media": "photo", "latitude": "40.670694", "id": "6844432121", "tags": "nyc newyorkcity winter brooklyn garden nikon february brooklynbotanicgarden 2012 d90"}, {"datetaken": "2010-06-06 11:58:51", "license": "3", "title": "DSC_1150", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4681933088_688ee4c6d6_o.jpg", "secret": "26d82f92be", "media": "photo", "latitude": "0", "id": "4681933088", "tags": ""}, {"datetaken": "2010-06-06 12:00:04", "license": "3", "title": "DSC_1152", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1283/4681304689_1c3ae1e8c5_o.jpg", "secret": "3f05c84de2", "media": "photo", "latitude": "0", "id": "4681304689", "tags": ""}, {"datetaken": "2010-06-06 12:30:54", "license": "3", "title": "DSC_1157", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4681938292_55b730e1fa_o.jpg", "secret": "49f15d24d4", "media": "photo", "latitude": "0", "id": "4681938292", "tags": ""}, {"datetaken": "2010-06-06 12:31:03", "license": "3", "title": "DSC_1159", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4681309233_acf24fa115_o.jpg", "secret": "d8423432a0", "media": "photo", "latitude": "0", "id": "4681309233", "tags": ""}, {"datetaken": "2010-06-06 12:31:27", "license": "3", "title": "DSC_1166", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4681311935_f288312dc7_o.jpg", "secret": "82c0155b8f", "media": "photo", "latitude": "0", "id": "4681311935", "tags": ""}, {"datetaken": "2010-06-06 12:32:25", "license": "3", "title": "DSC_1168", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4681945138_5e80bb0a71_o.jpg", "secret": "acdc3658b1", "media": "photo", "latitude": "0", "id": "4681945138", "tags": ""}, {"datetaken": "2010-06-06 12:34:05", "license": "3", "title": "DSC_1170", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4681947588_f359123245_o.jpg", "secret": "d8da2c9da9", "media": "photo", "latitude": "0", "id": "4681947588", "tags": ""}, {"datetaken": "2010-06-06 12:34:59", "license": "3", "title": "DSC_1171", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4681948040_165764de73_o.jpg", "secret": "7238a926a7", "media": "photo", "latitude": "0", "id": "4681948040", "tags": ""}, {"datetaken": "2010-06-06 12:49:13", "license": "3", "title": "DSC_1175", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4681949854_fd2f467cc1_o.jpg", "secret": "e96f1e3cf5", "media": "photo", "latitude": "0", "id": "4681949854", "tags": ""}, {"datetaken": "2010-06-06 12:59:31", "license": "3", "title": "DSC_1183", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1269/4681951388_dfb3f83d32_o.jpg", "secret": "41ee188949", "media": "photo", "latitude": "0", "id": "4681951388", "tags": ""}, {"datetaken": "2010-06-06 13:07:00", "license": "3", "title": "DSC_1192", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4681322095_027bf1b0f5_o.jpg", "secret": "7e7808edea", "media": "photo", "latitude": "0", "id": "4681322095", "tags": ""}, {"datetaken": "2010-06-06 13:07:15", "license": "3", "title": "DSC_1197", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4681323445_a3baae4468_o.jpg", "secret": "f5f63a8ff8", "media": "photo", "latitude": "0", "id": "4681323445", "tags": ""}, {"datetaken": "2010-06-06 13:07:44", "license": "3", "title": "DSC_1199", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4681326575_ec79c06944_o.jpg", "secret": "0af57388aa", "media": "photo", "latitude": "0", "id": "4681326575", "tags": ""}, {"datetaken": "2010-06-06 13:09:37", "license": "3", "title": "DSC_1213", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4681328405_db76b337be_o.jpg", "secret": "dafc0ba5b1", "media": "photo", "latitude": "0", "id": "4681328405", "tags": ""}, {"datetaken": "2010-06-06 14:44:56", "license": "3", "title": "DSC_1217", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4681962196_bf998ca1db_o.jpg", "secret": "4ee78f734a", "media": "photo", "latitude": "0", "id": "4681962196", "tags": ""}, {"datetaken": "2010-06-06 14:45:16", "license": "3", "title": "DSC_1220", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4681332517_f67a27ba42_o.jpg", "secret": "48be048f7e", "media": "photo", "latitude": "0", "id": "4681332517", "tags": ""}, {"datetaken": "2010-06-06 14:45:46", "license": "3", "title": "DSC_1231", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4681333727_261f056123_o.jpg", "secret": "41c8de116a", "media": "photo", "latitude": "0", "id": "4681333727", "tags": ""}, {"datetaken": "2010-06-06 15:11:04", "license": "3", "title": "DSC_1235", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4681966076_4212f0357a_o.jpg", "secret": "47028bcb2a", "media": "photo", "latitude": "0", "id": "4681966076", "tags": ""}, {"datetaken": "2010-06-06 15:12:23", "license": "3", "title": "DSC_1247", "text": "", "album_id": "72157624105513515", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4681967970_8dc6e4257f_o.jpg", "secret": "6e544a8a27", "media": "photo", "latitude": "0", "id": "4681967970", "tags": ""}, {"datetaken": "2010-09-08 05:59:20", "license": "4", "title": "MVI_1857", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/4971028220_f9bbdddcaa_o.jpg", "secret": "d2d3942a7a", "media": "video", "latitude": "0", "id": "4971028220", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 06:08:42", "license": "4", "title": "MVI_1858", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4146/4971046266_9d72d98dee_o.jpg", "secret": "1d938c1e8f", "media": "video", "latitude": "0", "id": "4971046266", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 06:19:53", "license": "4", "title": "MVI_1859", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4971069282_fc83de706c_o.jpg", "secret": "5a973c375b", "media": "video", "latitude": "0", "id": "4971069282", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 07:40:33", "license": "4", "title": "Break Dance ride at Royal Adelaide Show, 2010", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4151/4970649285_175c22ffa3_o.jpg", "secret": "3f70973bb3", "media": "video", "latitude": "0", "id": "4970649285", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 17:38:59", "license": "4", "title": "Illalangi stand", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4130/4970965424_037406d624_o.jpg", "secret": "300f95b34f", "media": "photo", "latitude": "0", "id": "4970965424", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 17:43:20", "license": "4", "title": "IMG_1850", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/4970359257_2f86706a2d_o.jpg", "secret": "b5f4c83a07", "media": "photo", "latitude": "0", "id": "4970359257", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 17:43:34", "license": "4", "title": "IMG_1851", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4088/4970976280_f6db42d2e0_o.jpg", "secret": "1a01d8cbe6", "media": "photo", "latitude": "0", "id": "4970976280", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 17:43:52", "license": "4", "title": "IMG_1852", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4126/4970981776_39df23fabb_o.jpg", "secret": "70f88f8b87", "media": "photo", "latitude": "0", "id": "4970981776", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 17:51:41", "license": "4", "title": "IMG_1853", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/4970986830_b073c459fd_o.jpg", "secret": "7184556f88", "media": "photo", "latitude": "0", "id": "4970986830", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 17:51:49", "license": "4", "title": "IMG_1854", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4146/4970380067_1938b78b69_o.jpg", "secret": "2100ffdbd7", "media": "photo", "latitude": "0", "id": "4970380067", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 19:00:29", "license": "4", "title": "IMG_1855", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4154/4970996804_1db6dccb9c_o.jpg", "secret": "b64d27b64e", "media": "photo", "latitude": "0", "id": "4970996804", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 19:00:42", "license": "4", "title": "IMG_1856", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/4971269532_c190aa6228_o.jpg", "secret": "634330453b", "media": "photo", "latitude": "0", "id": "4971269532", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 19:06:09", "license": "4", "title": "IMG_1860", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/4971074414_6072da7426_o.jpg", "secret": "48ee490e90", "media": "photo", "latitude": "0", "id": "4971074414", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 19:06:36", "license": "4", "title": "IMG_1861", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4091/4971080456_5f2c5212ee_o.jpg", "secret": "119e3981c2", "media": "photo", "latitude": "0", "id": "4971080456", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 19:06:59", "license": "4", "title": "IMG_1862", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/4971087846_82a6207874_o.jpg", "secret": "17a5a34286", "media": "photo", "latitude": "0", "id": "4971087846", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 19:07:18", "license": "4", "title": "IMG_1863", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4971093252_2104133f11_o.jpg", "secret": "7f19d337d5", "media": "photo", "latitude": "0", "id": "4971093252", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 19:07:25", "license": "4", "title": "IMG_1864", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/4971099092_c1e88e05d4_o.jpg", "secret": "3f7d0baf89", "media": "photo", "latitude": "0", "id": "4971099092", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 19:07:40", "license": "4", "title": "IMG_1865", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/4970492177_17c1fda565_o.jpg", "secret": "98f961f37c", "media": "photo", "latitude": "0", "id": "4970492177", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 19:07:45", "license": "4", "title": "IMG_1866", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/4970497445_c3d576140c_o.jpg", "secret": "c47dfa8592", "media": "photo", "latitude": "0", "id": "4970497445", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 19:08:48", "license": "4", "title": "IMG_1868", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/4971123878_b1fc3f3533_o.jpg", "secret": "0ff866ae0f", "media": "photo", "latitude": "0", "id": "4971123878", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 19:08:56", "license": "4", "title": "IMG_1869", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4124/4970517931_217acc97f3_o.jpg", "secret": "a326f1e7aa", "media": "photo", "latitude": "0", "id": "4970517931", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 19:10:45", "license": "4", "title": "IMG_1870", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/4971136698_e7f1ba24ea_o.jpg", "secret": "3d33c9ef9c", "media": "photo", "latitude": "0", "id": "4971136698", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 19:10:52", "license": "4", "title": "IMG_1871", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/4970531265_a8e52d18dd_o.jpg", "secret": "ae1a65f50c", "media": "photo", "latitude": "0", "id": "4970531265", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 19:11:02", "license": "4", "title": "IMG_1872", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4970660841_94e7dd1e9f_o.jpg", "secret": "b68367bf79", "media": "photo", "latitude": "0", "id": "4970660841", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-09-08 19:11:34", "license": "4", "title": "IMG_1873", "text": "", "album_id": "72157624786772363", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/4970665845_7168cea33e_o.jpg", "secret": "5ef571079f", "media": "photo", "latitude": "0", "id": "4970665845", "tags": "2010 royaladeladeshow"}, {"datetaken": "2010-08-04 17:25:00", "license": "1", "title": "telaviv 134", "text": "", "album_id": "72157624561489565", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4874908663_77f297ee4f_o.jpg", "secret": "fff4310131", "media": "photo", "latitude": "0", "id": "4874908663", "tags": ""}, {"datetaken": "2010-08-04 17:27:19", "license": "1", "title": "telaviv 135", "text": "", "album_id": "72157624561489565", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4875515936_a4c9efbe90_o.jpg", "secret": "bd3216bf18", "media": "photo", "latitude": "0", "id": "4875515936", "tags": ""}, {"datetaken": "2010-08-05 01:34:52", "license": "1", "title": "telaviv 191", "text": "", "album_id": "72157624561489565", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4874720535_16ea479986_o.jpg", "secret": "e1b09d6384", "media": "photo", "latitude": "0", "id": "4874720535", "tags": ""}, {"datetaken": "2010-08-05 02:14:29", "license": "1", "title": "telaviv 193", "text": "", "album_id": "72157624561489565", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4875328420_76936a7ac8_o.jpg", "secret": "8feb2b031c", "media": "photo", "latitude": "0", "id": "4875328420", "tags": ""}, {"datetaken": "2010-08-05 02:15:36", "license": "1", "title": "telaviv 194", "text": "", "album_id": "72157624561489565", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4874721689_72bf3320ee_o.jpg", "secret": "d4ed947412", "media": "photo", "latitude": "0", "id": "4874721689", "tags": ""}, {"datetaken": "2010-08-05 02:27:05", "license": "1", "title": "telaviv 195", "text": "", "album_id": "72157624561489565", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4875329484_2c20b55788_o.jpg", "secret": "6c893c29bf", "media": "photo", "latitude": "0", "id": "4875329484", "tags": ""}, {"datetaken": "2010-08-05 20:20:54", "license": "1", "title": "telaviv 225", "text": "", "album_id": "72157624561489565", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4874647961_2b91d02e85_o.jpg", "secret": "8e050a6294", "media": "photo", "latitude": "0", "id": "4874647961", "tags": ""}, {"datetaken": "2010-08-05 20:47:55", "license": "1", "title": "telaviv 226", "text": "", "album_id": "72157624561489565", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4875255982_a868d490f2_o.jpg", "secret": "6d0368b683", "media": "photo", "latitude": "0", "id": "4875255982", "tags": ""}, {"datetaken": "2010-08-05 21:05:45", "license": "1", "title": "telaviv 227", "text": "", "album_id": "72157624561489565", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4875256572_7ce73d17ea_o.jpg", "secret": "b8efc66cda", "media": "photo", "latitude": "0", "id": "4875256572", "tags": ""}, {"datetaken": "2010-08-05 21:07:59", "license": "1", "title": "telaviv 228", "text": "", "album_id": "72157624561489565", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4874649785_ae19c3f804_o.jpg", "secret": "9fd04619de", "media": "photo", "latitude": "0", "id": "4874649785", "tags": ""}, {"datetaken": "2004-07-08 10:50:07", "license": "4", "title": "DSCN0330", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/417241649_91428a2f95_o.jpg", "secret": "dd83b26786", "media": "photo", "latitude": "0", "id": "417241649", "tags": ""}, {"datetaken": "2004-07-08 10:52:35", "license": "4", "title": "DSCN0331", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/417241930_96f487142a_o.jpg", "secret": "36f9bfc399", "media": "photo", "latitude": "0", "id": "417241930", "tags": ""}, {"datetaken": "2004-07-08 10:52:47", "license": "4", "title": "DSCN0332", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/417242247_c9c711d1ab_o.jpg", "secret": "5cffa857c0", "media": "photo", "latitude": "0", "id": "417242247", "tags": ""}, {"datetaken": "2004-07-08 11:09:19", "license": "4", "title": "DSCN0333", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/417242558_a88c540399_o.jpg", "secret": "da8234ea98", "media": "photo", "latitude": "0", "id": "417242558", "tags": ""}, {"datetaken": "2004-07-08 11:09:33", "license": "4", "title": "DSCN0334", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/417242866_4c5985898e_o.jpg", "secret": "9d2437cfed", "media": "photo", "latitude": "0", "id": "417242866", "tags": ""}, {"datetaken": "2004-07-08 11:11:39", "license": "4", "title": "DSCN0336", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/417243375_6f73e5ba44_o.jpg", "secret": "4b71fc472a", "media": "photo", "latitude": "0", "id": "417243375", "tags": ""}, {"datetaken": "2004-07-08 11:18:07", "license": "4", "title": "DSCN0337", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/417243699_6d612f464e_o.jpg", "secret": "0596371002", "media": "photo", "latitude": "0", "id": "417243699", "tags": ""}, {"datetaken": "2004-07-08 11:20:10", "license": "4", "title": "DSCN0338", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/417243985_f43dd9ee6d_o.jpg", "secret": "916effe4e3", "media": "photo", "latitude": "0", "id": "417243985", "tags": ""}, {"datetaken": "2004-07-08 11:20:41", "license": "4", "title": "DSCN0339", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/417244261_d0899ce85e_o.jpg", "secret": "a47636f4bd", "media": "photo", "latitude": "0", "id": "417244261", "tags": ""}, {"datetaken": "2004-07-08 11:26:08", "license": "4", "title": "DSCN0340", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/417244628_cfaa3f399d_o.jpg", "secret": "b106f5f03f", "media": "photo", "latitude": "0", "id": "417244628", "tags": ""}, {"datetaken": "2004-07-08 11:26:46", "license": "4", "title": "DSCN0341", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/417245007_67cdea9177_o.jpg", "secret": "b11bb0acef", "media": "photo", "latitude": "0", "id": "417245007", "tags": ""}, {"datetaken": "2004-07-08 11:26:59", "license": "4", "title": "DSCN0342", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/417245400_75e46e0f86_o.jpg", "secret": "c136c55b7a", "media": "photo", "latitude": "0", "id": "417245400", "tags": ""}, {"datetaken": "2004-07-08 11:27:13", "license": "4", "title": "DSCN0343", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/417245771_b318fba834_o.jpg", "secret": "ef7c9a44ec", "media": "photo", "latitude": "0", "id": "417245771", "tags": ""}, {"datetaken": "2004-07-08 11:31:09", "license": "4", "title": "DSCN0344", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/417246090_2b0b212add_o.jpg", "secret": "16c17d5751", "media": "photo", "latitude": "0", "id": "417246090", "tags": ""}, {"datetaken": "2004-07-08 11:32:35", "license": "4", "title": "DSCN0345", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/417246287_28ac716200_o.jpg", "secret": "0039a15aa0", "media": "photo", "latitude": "0", "id": "417246287", "tags": ""}, {"datetaken": "2004-07-08 11:43:09", "license": "4", "title": "DSCN0346", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/417246512_7bf4c7f1e4_o.jpg", "secret": "277d40ac37", "media": "photo", "latitude": "0", "id": "417246512", "tags": ""}, {"datetaken": "2004-07-08 11:48:12", "license": "4", "title": "DSCN0347", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/417246755_3813a933ab_o.jpg", "secret": "e4c8aad5fa", "media": "photo", "latitude": "0", "id": "417246755", "tags": ""}, {"datetaken": "2004-07-08 11:48:37", "license": "4", "title": "DSCN0348", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/417247085_9248e5f8f1_o.jpg", "secret": "79ecc05b0c", "media": "photo", "latitude": "0", "id": "417247085", "tags": ""}, {"datetaken": "2004-07-08 11:48:49", "license": "4", "title": "DSCN0349", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/417247360_7a387d3011_o.jpg", "secret": "d7d3d6569f", "media": "photo", "latitude": "0", "id": "417247360", "tags": ""}, {"datetaken": "2004-07-08 11:49:03", "license": "4", "title": "DSCN0350", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/417247617_df8962b05a_o.jpg", "secret": "661653b728", "media": "photo", "latitude": "0", "id": "417247617", "tags": ""}, {"datetaken": "2004-07-08 13:10:59", "license": "4", "title": "DSCN0351", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/417247934_cd9340713f_o.jpg", "secret": "9f9cd31ed1", "media": "photo", "latitude": "0", "id": "417247934", "tags": ""}, {"datetaken": "2004-07-08 13:18:41", "license": "4", "title": "DSCN0352", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/417248279_5f4fe22cd8_o.jpg", "secret": "0309edc66a", "media": "photo", "latitude": "0", "id": "417248279", "tags": ""}, {"datetaken": "2004-07-08 13:18:55", "license": "4", "title": "DSCN0353", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/417248580_cb3144b119_o.jpg", "secret": "3f22055d4f", "media": "photo", "latitude": "0", "id": "417248580", "tags": ""}, {"datetaken": "2004-07-08 13:24:05", "license": "4", "title": "DSCN0354", "text": "", "album_id": "72157594581684061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/417248924_92b8024c3a_o.jpg", "secret": "246d4cb494", "media": "photo", "latitude": "0", "id": "417248924", "tags": ""}, {"datetaken": "2005-06-09 19:46:40", "license": "3", "title": "building in the mist", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18541541_9fc0c0c8f8_o.jpg", "secret": "9fc0c0c8f8", "media": "photo", "latitude": "0", "id": "18541541", "tags": "coneyisland brooklyn boardwalk"}, {"datetaken": "2005-06-09 19:47:13", "license": "3", "title": "wall ball and vanishing building", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18541694_c0d2229ba6_o.jpg", "secret": "c0d2229ba6", "media": "photo", "latitude": "0", "id": "18541694", "tags": "coneyisland brooklyn boardwalk"}, {"datetaken": "2005-06-09 19:47:27", "license": "3", "title": "wall ball", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18541215_0471dfeb2c_o.jpg", "secret": "0471dfeb2c", "media": "photo", "latitude": "0", "id": "18541215", "tags": "coneyisland brooklyn boardwalk"}, {"datetaken": "2005-06-09 19:49:00", "license": "3", "title": "weather vane and building in the mist", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18541342_feb72f5798_o.jpg", "secret": "feb72f5798", "media": "photo", "latitude": "0", "id": "18541342", "tags": "coneyisland brooklyn boardwalk mist fog sunset weathervane"}, {"datetaken": "2005-06-09 19:51:58", "license": "3", "title": "dissappearing skyline", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18541752_57fc0731ae_o.jpg", "secret": "57fc0731ae", "media": "photo", "latitude": "0", "id": "18541752", "tags": "coneyisland brooklyn boardwalk"}, {"datetaken": "2005-06-09 19:52:34", "license": "3", "title": "birds in mist #2", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18541370_9821eb8f61_o.jpg", "secret": "9821eb8f61", "media": "photo", "latitude": "0", "id": "18541370", "tags": "coneyisland brooklyn boardwalk"}, {"datetaken": "2005-06-09 19:52:37", "license": "3", "title": "birds in mist", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18541724_0f61131137_o.jpg", "secret": "0f61131137", "media": "photo", "latitude": "0", "id": "18541724", "tags": "coneyisland brooklyn boardwalk"}, {"datetaken": "2005-06-09 19:52:48", "license": "3", "title": "birds in the mist #1", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18540843_6102db6765_o.jpg", "secret": "6102db6765", "media": "photo", "latitude": "0", "id": "18540843", "tags": "coneyisland brooklyn boardwalk"}, {"datetaken": "2005-06-09 19:54:17", "license": "3", "title": "143_4392", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18541609_fff77c16bb_o.jpg", "secret": "fff77c16bb", "media": "photo", "latitude": "0", "id": "18541609", "tags": "coneyisland brooklyn boardwalk"}, {"datetaken": "2005-06-09 19:54:26", "license": "3", "title": "coney aquarium", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18541579_e383b2fc19_o.jpg", "secret": "e383b2fc19", "media": "photo", "latitude": "0", "id": "18541579", "tags": "coneyisland brooklyn boardwalk"}, {"datetaken": "2005-06-09 19:58:45", "license": "3", "title": "coney island adventurers", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18540720_a173d0e373_o.jpg", "secret": "a173d0e373", "media": "photo", "latitude": "0", "id": "18540720", "tags": "coneyisland brooklyn boardwalk sunset"}, {"datetaken": "2005-06-09 19:58:56", "license": "3", "title": "coney island adventurers", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18541050_c9387904f9_o.jpg", "secret": "c9387904f9", "media": "photo", "latitude": "0", "id": "18541050", "tags": "coneyisland brooklyn boardwalk"}, {"datetaken": "2005-06-09 19:59:24", "license": "3", "title": "down at the boardwalk...where we can have some fun...", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18541381_04dad12496_o.jpg", "secret": "04dad12496", "media": "photo", "latitude": "0", "id": "18541381", "tags": "coneyisland brooklyn boardwalk"}, {"datetaken": "2005-06-09 20:00:20", "license": "3", "title": "wonder wheel #4567 with red dye #5", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18540879_af532c2514_o.jpg", "secret": "af532c2514", "media": "photo", "latitude": "0", "id": "18540879", "tags": "coneyisland brooklyn boardwalk"}, {"datetaken": "2005-06-09 20:00:42", "license": "3", "title": "wonder why there is so much trash", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18541150_d031042ee8_o.jpg", "secret": "d031042ee8", "media": "photo", "latitude": "0", "id": "18541150", "tags": "coneyisland brooklyn boardwalk"}, {"datetaken": "2005-06-09 20:00:52", "license": "3", "title": "wonder wheel in trash #2", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18541638_68a64779a3_o.jpg", "secret": "68a64779a3", "media": "photo", "latitude": "0", "id": "18541638", "tags": "coneyisland brooklyn boardwalk sunset trash"}, {"datetaken": "2005-06-09 20:01:06", "license": "3", "title": "wonder wheel in trash", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18540775_a343c4ea9b_o.jpg", "secret": "a343c4ea9b", "media": "photo", "latitude": "0", "id": "18540775", "tags": "coneyisland brooklyn boardwalk nycpb"}, {"datetaken": "2005-06-09 20:01:24", "license": "3", "title": "hasidic kids at astroland", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18541185_5259eb1796_o.jpg", "secret": "5259eb1796", "media": "photo", "latitude": "0", "id": "18541185", "tags": "coneyisland brooklyn boardwalk"}, {"datetaken": "2005-06-09 20:02:17", "license": "3", "title": "wonder wheel and early sunset", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18541677_88e3c5cbc3_o.jpg", "secret": "88e3c5cbc3", "media": "photo", "latitude": "0", "id": "18541677", "tags": "coneyisland brooklyn boardwalk sunset"}, {"datetaken": "2005-06-09 20:02:26", "license": "3", "title": "wonder wheel", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18540808_c73d798652_o.jpg", "secret": "c73d798652", "media": "photo", "latitude": "0", "id": "18540808", "tags": "coneyisland brooklyn boardwalk sunset"}, {"datetaken": "2005-06-09 20:02:35", "license": "3", "title": "wish i had painted this", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18541120_16738113ed_o.jpg", "secret": "16738113ed", "media": "photo", "latitude": "0", "id": "18541120", "tags": "coneyisland brooklyn boardwalk"}, {"datetaken": "2005-06-09 20:03:24", "license": "3", "title": "coney alley", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18541412_51960d7d1c_o.jpg", "secret": "51960d7d1c", "media": "photo", "latitude": "0", "id": "18541412", "tags": "coneyisland brooklyn boardwalk"}, {"datetaken": "2005-06-09 20:05:13", "license": "3", "title": "grill and thrills", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18541901_36d98982f9_o.jpg", "secret": "36d98982f9", "media": "photo", "latitude": "0", "id": "18541901", "tags": "coneyisland brooklyn boardwalk grill sunset"}, {"datetaken": "2005-06-09 20:08:40", "license": "3", "title": "144_4408", "text": "", "album_id": "437931", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18541015_959261019c_o.jpg", "secret": "959261019c", "media": "photo", "latitude": "0", "id": "18541015", "tags": "coneyisland brooklyn boardwalk"}, {"datetaken": "2010-05-21 06:24:26", "license": "1", "title": "Harbourside-1", "text": "", "album_id": "72157624123266255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4688728771_9cff8286f7_o.jpg", "secret": "01c144a8c3", "media": "photo", "latitude": "0", "id": "4688728771", "tags": "city longexposure bridge water night photo cityscape nightshot harbour sydney circularquay lighttrails"}, {"datetaken": "2010-05-21 06:34:36", "license": "1", "title": "Harbourside-2", "text": "", "album_id": "72157624123266255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4688729601_8aaf126088_o.jpg", "secret": "8e7f1c43af", "media": "photo", "latitude": "0", "id": "4688729601", "tags": "city longexposure bridge water night photo cityscape nightshot harbour sydney circularquay lighttrails"}, {"datetaken": "2010-05-21 06:45:49", "license": "1", "title": "Harbourside-3", "text": "", "album_id": "72157624123266255", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1288/4689362954_789b5af075_o.jpg", "secret": "c9ae3c9ac8", "media": "photo", "latitude": "0", "id": "4689362954", "tags": "city longexposure bridge water night photo cityscape nightshot harbour sydney circularquay lighttrails"}, {"datetaken": "2010-05-21 06:56:45", "license": "1", "title": "Harbourside-4", "text": "", "album_id": "72157624123266255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4688730871_c38c992b9f_o.jpg", "secret": "b53ec34c38", "media": "photo", "latitude": "0", "id": "4688730871", "tags": "city longexposure bridge water night photo cityscape nightshot harbour sydney circularquay lighttrails"}, {"datetaken": "2010-05-21 07:02:02", "license": "1", "title": "Harbourside-5", "text": "", "album_id": "72157624123266255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4689363990_a94211cd04_o.jpg", "secret": "5a4bf797c0", "media": "photo", "latitude": "0", "id": "4689363990", "tags": "city longexposure bridge water night photo cityscape nightshot harbour sydney circularquay lighttrails"}, {"datetaken": "2010-05-21 07:05:24", "license": "1", "title": "Luna Park-1", "text": "", "album_id": "72157624123266255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4689364590_f3bd6ed2cd_o.jpg", "secret": "58b9e7ff9f", "media": "photo", "latitude": "0", "id": "4689364590", "tags": "bridge water face photo nightshot harbour sydney circularquay amusementpark lunapark olympuse520"}, {"datetaken": "2010-05-21 07:06:49", "license": "1", "title": "Luna Park-2", "text": "", "album_id": "72157624123266255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4688732371_a6c6408116_o.jpg", "secret": "4472de814c", "media": "photo", "latitude": "0", "id": "4688732371", "tags": "bridge water face photo nightshot harbour sydney circularquay amusementpark lunapark olympuse520"}, {"datetaken": "2010-05-21 07:11:17", "license": "1", "title": "Harbourside-6", "text": "", "album_id": "72157624123266255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4689365576_4575a047cb_o.jpg", "secret": "91170c6bc2", "media": "photo", "latitude": "0", "id": "4689365576", "tags": "city longexposure bridge water night photo cityscape nightshot harbour sydney circularquay lighttrails"}, {"datetaken": "2010-05-21 07:13:57", "license": "1", "title": "Luna Park-3", "text": "", "album_id": "72157624123266255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4689366436_a8fc6619ea_o.jpg", "secret": "e5aaf0c733", "media": "photo", "latitude": "0", "id": "4689366436", "tags": "bridge water face photo nightshot harbour sydney circularquay amusementpark lunapark olympuse520"}, {"datetaken": "2010-05-21 07:16:27", "license": "1", "title": "Luna Park-4", "text": "", "album_id": "72157624123266255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4688734343_ca5f5ebdf0_o.jpg", "secret": "0e0c616d74", "media": "photo", "latitude": "0", "id": "4688734343", "tags": "bridge water face photo nightshot harbour sydney circularquay amusementpark lunapark olympuse520"}, {"datetaken": "2010-05-21 07:21:59", "license": "1", "title": "Harbourside-7", "text": "", "album_id": "72157624123266255", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4688735041_62f1cf9d46_o.jpg", "secret": "57fda11651", "media": "photo", "latitude": "0", "id": "4688735041", "tags": "city longexposure bridge water night photo cityscape nightshot harbour sydney circularquay lighttrails"}, {"datetaken": "2010-09-09 19:54:16", "license": "3", "title": "setlist&pedales", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/4979037041_9e3fd4cb45_o.jpg", "secret": "e1869f6677", "media": "photo", "latitude": "0", "id": "4979037041", "tags": ""}, {"datetaken": "2010-09-09 20:32:24", "license": "3", "title": "setlist", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/4979017203_c4572958fa_o.jpg", "secret": "697f8d4367", "media": "photo", "latitude": "0", "id": "4979017203", "tags": ""}, {"datetaken": "2010-09-09 20:34:43", "license": "3", "title": "samu&chris'", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/4979646846_2986a454a4_o.jpg", "secret": "bbf341e49f", "media": "photo", "latitude": "0", "id": "4979646846", "tags": ""}, {"datetaken": "2010-09-09 20:35:36", "license": "3", "title": "estrellas", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4083/4978363933_7f0d225782_o.jpg", "secret": "0090be276d", "media": "photo", "latitude": "0", "id": "4978363933", "tags": ""}, {"datetaken": "2010-09-09 21:43:39", "license": "3", "title": "todos", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/4979631436_7dcb5fd9e8_o.jpg", "secret": "8deb5efa3d", "media": "photo", "latitude": "0", "id": "4979631436", "tags": ""}, {"datetaken": "2010-09-09 22:03:59", "license": "3", "title": "tr\u00edo", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/4979031959_413568f398_o.jpg", "secret": "bda508565c", "media": "photo", "latitude": "0", "id": "4979031959", "tags": ""}, {"datetaken": "2010-09-11 00:00:00", "license": "3", "title": "colajet", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/4977163271_728475f06b_o.jpg", "secret": "813f362071", "media": "photo", "latitude": "0", "id": "4977163271", "tags": ""}, {"datetaken": "2010-09-11 00:00:01", "license": "3", "title": "albert2", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4085/4977765182_bb46df29d3_o.jpg", "secret": "c7627fbec7", "media": "photo", "latitude": "0", "id": "4977765182", "tags": ""}, {"datetaken": "2010-09-11 00:00:02", "license": "3", "title": "samu''", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/4977794262_aec346a564_o.jpg", "secret": "fbe1a2e97e", "media": "photo", "latitude": "0", "id": "4977794262", "tags": ""}, {"datetaken": "2010-09-11 00:00:04", "license": "3", "title": "chris", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4149/4977158835_1bbe539a3e_o.jpg", "secret": "6a651d2c7d", "media": "photo", "latitude": "0", "id": "4977158835", "tags": ""}, {"datetaken": "2010-09-11 00:00:05", "license": "3", "title": "nach&jane", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/4977170097_03d32c2d17_o.jpg", "secret": "d442906ca3", "media": "photo", "latitude": "0", "id": "4977170097", "tags": ""}, {"datetaken": "2010-09-11 00:00:06", "license": "3", "title": "chris3", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4091/4977772154_e4dde6d77c_o.jpg", "secret": "e3265bea2d", "media": "photo", "latitude": "0", "id": "4977772154", "tags": ""}, {"datetaken": "2010-09-11 00:00:07", "license": "3", "title": "david,nachin,albert", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/4977778194_5757fe2422_o.jpg", "secret": "1b3fb2d1fc", "media": "photo", "latitude": "0", "id": "4977778194", "tags": ""}, {"datetaken": "2010-09-11 00:00:08", "license": "3", "title": "samu", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/4977177451_851264fc5c_o.jpg", "secret": "7628dd28d0", "media": "photo", "latitude": "0", "id": "4977177451", "tags": ""}, {"datetaken": "2010-09-11 00:00:09", "license": "3", "title": "nach2", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/4977788472_68f1c9b855_o.jpg", "secret": "3c9c9f0f82", "media": "photo", "latitude": "0", "id": "4977788472", "tags": ""}, {"datetaken": "2010-09-11 00:00:10", "license": "3", "title": "chris4", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/4977160507_a57e983c82_o.jpg", "secret": "9a22dc06c7", "media": "photo", "latitude": "0", "id": "4977160507", "tags": ""}, {"datetaken": "2010-09-11 00:00:11", "license": "3", "title": "albert3", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/4977152927_8e83416188_o.jpg", "secret": "6b593dfdb2", "media": "photo", "latitude": "0", "id": "4977152927", "tags": ""}, {"datetaken": "2010-09-11 00:00:12", "license": "3", "title": "david", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/4977165603_238742902e_o.jpg", "secret": "b13906ba98", "media": "photo", "latitude": "0", "id": "4977165603", "tags": ""}, {"datetaken": "2010-09-11 00:00:13", "license": "3", "title": "samu'", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4107/4977791906_137e369a93_o.jpg", "secret": "6f47bbfeeb", "media": "photo", "latitude": "0", "id": "4977791906", "tags": ""}, {"datetaken": "2010-09-11 00:00:14", "license": "3", "title": "nach3", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/4977782394_8bef10aa76_o.jpg", "secret": "69459412bd", "media": "photo", "latitude": "0", "id": "4977782394", "tags": ""}, {"datetaken": "2010-09-11 00:00:15", "license": "3", "title": "chris2", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4107/4977767172_71bae709d5_o.jpg", "secret": "f580638834", "media": "photo", "latitude": "0", "id": "4977767172", "tags": ""}, {"datetaken": "2010-09-11 00:00:16", "license": "3", "title": "albert", "text": "", "album_id": "72157624801640073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/4977187565_63e02ff226_o.jpg", "secret": "9b9791a2a9", "media": "photo", "latitude": "0", "id": "4977187565", "tags": ""}, {"datetaken": "2010-08-07 19:27:37", "license": "2", "title": "_DSC5269", "text": "", "album_id": "72157624702740430", "longitude": "140.393514", "url_o": "https://farm5.staticflickr.com/4082/4881961179_f34725b4da_o.jpg", "secret": "4f9d74fcae", "media": "photo", "latitude": "35.373444", "id": "4881961179", "tags": ""}, {"datetaken": "2010-08-07 19:28:48", "license": "2", "title": "_DSC5273", "text": "", "album_id": "72157624702740430", "longitude": "140.393514", "url_o": "https://farm5.staticflickr.com/4080/4881961279_47e17e4ed8_o.jpg", "secret": "4c5d98e9a9", "media": "photo", "latitude": "35.373444", "id": "4881961279", "tags": ""}, {"datetaken": "2010-08-07 19:29:43", "license": "2", "title": "Fireworks shot over the sea", "text": "", "album_id": "72157624702740430", "longitude": "140.393514", "url_o": "https://farm5.staticflickr.com/4075/4881961407_0a7371010c_o.jpg", "secret": "03acc26a5b", "media": "photo", "latitude": "35.373444", "id": "4881961407", "tags": ""}, {"datetaken": "2010-08-07 19:31:23", "license": "2", "title": "_DSC5277", "text": "", "album_id": "72157624702740430", "longitude": "140.393514", "url_o": "https://farm5.staticflickr.com/4136/4881961501_5df69de092_o.jpg", "secret": "4f159b8644", "media": "photo", "latitude": "35.373444", "id": "4881961501", "tags": ""}, {"datetaken": "2010-08-07 19:33:22", "license": "2", "title": "_DSC5281", "text": "", "album_id": "72157624702740430", "longitude": "140.393514", "url_o": "https://farm5.staticflickr.com/4082/4882568218_e07cc5241b_o.jpg", "secret": "d3877a6cf1", "media": "photo", "latitude": "35.373444", "id": "4882568218", "tags": ""}, {"datetaken": "2010-08-07 19:35:09", "license": "2", "title": "_DSC5285", "text": "", "album_id": "72157624702740430", "longitude": "140.393514", "url_o": "https://farm5.staticflickr.com/4123/4881961787_0d1956b190_o.jpg", "secret": "145f1e34d5", "media": "photo", "latitude": "35.373444", "id": "4881961787", "tags": ""}, {"datetaken": "2010-08-07 19:40:10", "license": "2", "title": "_DSC5290", "text": "", "album_id": "72157624702740430", "longitude": "140.393514", "url_o": "https://farm5.staticflickr.com/4141/4881961893_085d944bf5_o.jpg", "secret": "5d8df36da5", "media": "photo", "latitude": "35.373444", "id": "4881961893", "tags": ""}, {"datetaken": "2010-08-07 19:41:01", "license": "2", "title": "_DSC5293", "text": "", "album_id": "72157624702740430", "longitude": "140.393514", "url_o": "https://farm5.staticflickr.com/4143/4881962021_76235dab33_o.jpg", "secret": "8a910ddb9f", "media": "photo", "latitude": "35.373444", "id": "4881962021", "tags": ""}, {"datetaken": "2010-08-07 19:42:12", "license": "2", "title": "_DSC5295", "text": "", "album_id": "72157624702740430", "longitude": "140.393514", "url_o": "https://farm5.staticflickr.com/4101/4881962141_21fc777353_o.jpg", "secret": "1f80258fb6", "media": "photo", "latitude": "35.373444", "id": "4881962141", "tags": ""}, {"datetaken": "2010-08-07 19:50:05", "license": "2", "title": "_DSC5302", "text": "", "album_id": "72157624702740430", "longitude": "140.393514", "url_o": "https://farm5.staticflickr.com/4115/4881962257_4a02b99909_o.jpg", "secret": "05089103f7", "media": "photo", "latitude": "35.373444", "id": "4881962257", "tags": ""}, {"datetaken": "2010-08-07 19:51:41", "license": "2", "title": "_DSC5307", "text": "", "album_id": "72157624702740430", "longitude": "140.393514", "url_o": "https://farm5.staticflickr.com/4123/4882568952_c3f35f015f_o.jpg", "secret": "1aeb749149", "media": "photo", "latitude": "35.373444", "id": "4882568952", "tags": ""}, {"datetaken": "2010-08-07 19:55:09", "license": "2", "title": "_DSC5317", "text": "", "album_id": "72157624702740430", "longitude": "140.393514", "url_o": "https://farm5.staticflickr.com/4121/4882569076_c9540b89fb_o.jpg", "secret": "2a589933dc", "media": "photo", "latitude": "35.373444", "id": "4882569076", "tags": ""}, {"datetaken": "2010-08-07 19:55:36", "license": "2", "title": "_DSC5320", "text": "", "album_id": "72157624702740430", "longitude": "140.393514", "url_o": "https://farm5.staticflickr.com/4099/4881962769_8943166b95_o.jpg", "secret": "f117db2c27", "media": "photo", "latitude": "35.373444", "id": "4881962769", "tags": ""}, {"datetaken": "2010-08-07 20:44:15", "license": "2", "title": "_DSC5351", "text": "", "album_id": "72157624702740430", "longitude": "140.393514", "url_o": "https://farm5.staticflickr.com/4140/4881963009_4dd631f5c4_o.jpg", "secret": "61e408c9d3", "media": "photo", "latitude": "35.373444", "id": "4881963009", "tags": ""}, {"datetaken": "2010-08-07 20:52:37", "license": "2", "title": "_DSC5365", "text": "", "album_id": "72157624702740430", "longitude": "140.393514", "url_o": "https://farm5.staticflickr.com/4115/4881963183_a22a3f743e_o.jpg", "secret": "8da53f72a7", "media": "photo", "latitude": "35.373444", "id": "4881963183", "tags": ""}, {"datetaken": "2010-08-07 20:56:22", "license": "2", "title": "_DSC5373", "text": "", "album_id": "72157624702740430", "longitude": "140.393514", "url_o": "https://farm5.staticflickr.com/4138/4881963363_b9acab907d_o.jpg", "secret": "585a3c751f", "media": "photo", "latitude": "35.373444", "id": "4881963363", "tags": ""}, {"datetaken": "2010-08-07 20:57:38", "license": "2", "title": "_DSC5383", "text": "", "album_id": "72157624702740430", "longitude": "140.393514", "url_o": "https://farm5.staticflickr.com/4081/4882569950_d2ca12a3f9_o.jpg", "secret": "72cc802871", "media": "photo", "latitude": "35.373444", "id": "4882569950", "tags": ""}, {"datetaken": "2010-12-08 13:51:28", "license": "3", "title": "St. James's Park Lake", "text": "", "album_id": "72157625449982651", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5121/5251078179_90946461b0_o.jpg", "secret": "f9680e6e9f", "media": "photo", "latitude": "0", "id": "5251078179", "tags": "london stjamessparklake"}, {"datetaken": "2010-12-08 14:02:48", "license": "3", "title": "Pelican", "text": "", "album_id": "72157625449982651", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5290/5251078569_14b0b12cb8_o.jpg", "secret": "58d159c304", "media": "photo", "latitude": "0", "id": "5251078569", "tags": "london pelican"}, {"datetaken": "2010-12-08 14:03:28", "license": "3", "title": "Pelicans", "text": "", "album_id": "72157625449982651", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5201/5251683426_f5f6d5773b_o.jpg", "secret": "4649bc274f", "media": "photo", "latitude": "0", "id": "5251683426", "tags": "london pelican"}, {"datetaken": "2010-12-08 14:03:54", "license": "3", "title": "Pelican", "text": "", "album_id": "72157625449982651", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5089/5251079453_d3cf47a0be_o.jpg", "secret": "5b0e4d15fe", "media": "photo", "latitude": "0", "id": "5251079453", "tags": "london pelican"}, {"datetaken": "2010-12-08 14:04:42", "license": "3", "title": "Pelican", "text": "", "album_id": "72157625449982651", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5130/5251684240_2b1bdcd939_o.jpg", "secret": "860dab6b86", "media": "photo", "latitude": "0", "id": "5251684240", "tags": ""}, {"datetaken": "2010-12-08 14:06:50", "license": "3", "title": "Duck with leaves", "text": "", "album_id": "72157625449982651", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5247/5251684590_9fa1378e38_o.jpg", "secret": "d8572995b5", "media": "photo", "latitude": "0", "id": "5251684590", "tags": ""}, {"datetaken": "2010-12-08 14:19:42", "license": "3", "title": "Palace of Westminster", "text": "", "album_id": "72157625449982651", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5243/5251080649_57a53ba296_o.jpg", "secret": "e96d4d1a67", "media": "photo", "latitude": "0", "id": "5251080649", "tags": "london housesofparliament palaceofwestminster"}, {"datetaken": "2010-12-08 14:21:50", "license": "3", "title": "St Stephen's Tower", "text": "", "album_id": "72157625449982651", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5044/5251685370_c7fc09f0c5_o.jpg", "secret": "680a47d495", "media": "photo", "latitude": "0", "id": "5251685370", "tags": "london bigben ststephenstower"}, {"datetaken": "2010-12-08 14:26:18", "license": "3", "title": "St Stephen's Tower (Big Ben)", "text": "", "album_id": "72157625449982651", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5207/5251081389_e9d71d0955_o.jpg", "secret": "cd170d88d8", "media": "photo", "latitude": "0", "id": "5251081389", "tags": "london bigben ststephenstower"}, {"datetaken": "2010-12-08 14:28:02", "license": "3", "title": "St Stephen's Tower", "text": "", "album_id": "72157625449982651", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5010/5251081675_8c9e13902b_o.jpg", "secret": "3445e10ec0", "media": "photo", "latitude": "0", "id": "5251081675", "tags": "london bigben ststephenstower"}, {"datetaken": "2010-12-08 14:28:28", "license": "3", "title": "St Stephen's Tower", "text": "", "album_id": "72157625449982651", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5244/5251082149_e96097a683_o.jpg", "secret": "092cf93630", "media": "photo", "latitude": "0", "id": "5251082149", "tags": "london bigben ststephenstower"}, {"datetaken": "2010-12-08 14:32:08", "license": "3", "title": "London Eye", "text": "", "album_id": "72157625449982651", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5007/5251686832_36e5d562b0_o.jpg", "secret": "6dafa42517", "media": "photo", "latitude": "0", "id": "5251686832", "tags": "london londoneye theeye"}, {"datetaken": "2010-12-08 14:32:54", "license": "3", "title": "London Eye", "text": "", "album_id": "72157625449982651", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5089/5251687166_6040c82cd4_o.jpg", "secret": "659fea83e0", "media": "photo", "latitude": "0", "id": "5251687166", "tags": "london londoneye theeye"}, {"datetaken": "2010-12-08 14:34:32", "license": "3", "title": "London Eye", "text": "", "album_id": "72157625449982651", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5010/5251083185_b70ae46f52_o.jpg", "secret": "ce984c00f4", "media": "photo", "latitude": "0", "id": "5251083185", "tags": "london londoneye theeye"}, {"datetaken": "2005-06-12 15:55:32", "license": "3", "title": "Wonder Wheel", "text": "", "album_id": "446814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18982792_3df46d99c3_o.jpg", "secret": "3df46d99c3", "media": "photo", "latitude": "0", "id": "18982792", "tags": "nyc brooklyn coneyisland ferriswheel"}, {"datetaken": "2005-06-12 15:56:38", "license": "3", "title": "Tilt-a-Whirl", "text": "", "album_id": "446814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18982793_3a3b8ebacd_o.jpg", "secret": "3a3b8ebacd", "media": "photo", "latitude": "0", "id": "18982793", "tags": "nyc brooklyn coneyisland"}, {"datetaken": "2005-06-12 15:59:13", "license": "3", "title": "Palm Trees", "text": "", "album_id": "446814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18982794_ee63baeafd_o.jpg", "secret": "ee63baeafd", "media": "photo", "latitude": "0", "id": "18982794", "tags": "nyc brooklyn coneyisland"}, {"datetaken": "2005-06-12 16:01:59", "license": "3", "title": "Astroland Rocket BW", "text": "", "album_id": "446814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18982796_dd56f86389_o.jpg", "secret": "dd56f86389", "media": "photo", "latitude": "0", "id": "18982796", "tags": "nyc brooklyn coneyisland"}, {"datetaken": "2005-06-12 16:01:59", "license": "3", "title": "Astroland Rocket", "text": "", "album_id": "446814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18982795_7484f7dede_o.jpg", "secret": "7484f7dede", "media": "photo", "latitude": "0", "id": "18982795", "tags": "nyc brooklyn coneyisland"}, {"datetaken": "2005-06-12 16:10:36", "license": "3", "title": "Cyclone", "text": "", "album_id": "446814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18982797_4a8ff85001_o.jpg", "secret": "4a8ff85001", "media": "photo", "latitude": "0", "id": "18982797", "tags": "nyc brooklyn coneyisland"}, {"datetaken": "2005-06-12 16:15:07", "license": "3", "title": "Large People (Cyclone sign)", "text": "", "album_id": "446814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18983789_41df466909_o.jpg", "secret": "41df466909", "media": "photo", "latitude": "0", "id": "18983789", "tags": "nyc brooklyn coneyisland"}, {"datetaken": "2005-06-12 16:16:30", "license": "3", "title": "LAST WARNING", "text": "", "album_id": "446814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18983790_5a458fd358_o.jpg", "secret": "5a458fd358", "media": "photo", "latitude": "0", "id": "18983790", "tags": "nyc brooklyn coneyisland"}, {"datetaken": "2005-06-12 16:19:50", "license": "3", "title": "Secure your wigs", "text": "", "album_id": "446814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18983791_ae60ee5473_o.jpg", "secret": "ae60ee5473", "media": "photo", "latitude": "0", "id": "18983791", "tags": "nyc brooklyn coneyisland"}, {"datetaken": "2005-06-12 16:47:14", "license": "3", "title": "Little Guy", "text": "", "album_id": "446814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18983792_5e07b89bdb_o.jpg", "secret": "5e07b89bdb", "media": "photo", "latitude": "0", "id": "18983792", "tags": "nyc brooklyn coneyisland"}, {"datetaken": "2005-06-12 16:49:17", "license": "3", "title": "Frog Hopper", "text": "", "album_id": "446814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18983793_a8403c9aaf_o.jpg", "secret": "a8403c9aaf", "media": "photo", "latitude": "0", "id": "18983793", "tags": "nyc brooklyn coneyisland"}, {"datetaken": "2005-06-12 16:54:36", "license": "3", "title": "Shoot the Freak", "text": "", "album_id": "446814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18983794_280ecb7e60_o.jpg", "secret": "280ecb7e60", "media": "photo", "latitude": "0", "id": "18983794", "tags": "nyc brooklyn coneyisland"}, {"datetaken": "2005-06-12 16:58:12", "license": "3", "title": "Sharpshooter", "text": "", "album_id": "446814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18984673_155c9344c6_o.jpg", "secret": "155c9344c6", "media": "photo", "latitude": "0", "id": "18984673", "tags": "nyc brooklyn coneyisland"}, {"datetaken": "2005-06-12 16:59:39", "license": "3", "title": "No Bathrooms", "text": "", "album_id": "446814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18984674_b2b947b9d9_o.jpg", "secret": "b2b947b9d9", "media": "photo", "latitude": "0", "id": "18984674", "tags": "nyc brooklyn coneyisland"}, {"datetaken": "2005-06-12 17:06:45", "license": "3", "title": "Coney Island Parachute Jump", "text": "", "album_id": "446814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18984675_936a65d92e_o.jpg", "secret": "936a65d92e", "media": "photo", "latitude": "0", "id": "18984675", "tags": "nyc brooklyn coneyisland"}, {"datetaken": "2005-06-12 17:11:11", "license": "3", "title": "Tiny Crack", "text": "", "album_id": "446814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18984676_d220fa90cc_o.jpg", "secret": "d220fa90cc", "media": "photo", "latitude": "0", "id": "18984676", "tags": "nyc brooklyn coneyisland"}, {"datetaken": "2005-06-12 17:17:35", "license": "3", "title": "Beachscape", "text": "", "album_id": "446814", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18984677_0d704b1b04_o.jpg", "secret": "0d704b1b04", "media": "photo", "latitude": "0", "id": "18984677", "tags": "nyc brooklyn coneyisland"}, {"datetaken": "2010-09-10 16:08:06", "license": "3", "title": "Pick Your Poison", "text": "", "album_id": "72157625028749543", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4125/5077457904_fe3c1fb14a_o.jpg", "secret": "bf79304fd6", "media": "photo", "latitude": "0", "id": "5077457904", "tags": "california ca usa santamonica socal vegemite marmite 2010 anchovypaste yosefsilver"}, {"datetaken": "2010-09-10 16:15:10", "license": "3", "title": "Santa Monica - October 2010", "text": "", "album_id": "72157625028749543", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/5077458796_f855181987_o.jpg", "secret": "54385dbb24", "media": "photo", "latitude": "0", "id": "5077458796", "tags": "california ca usa santamonica socal promenade 2010 yosefsilver"}, {"datetaken": "2010-09-10 16:42:43", "license": "3", "title": "Santa Monica - October 2010", "text": "", "album_id": "72157625028749543", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/5076865883_d4dfea786c_o.jpg", "secret": "0415ffdf87", "media": "photo", "latitude": "0", "id": "5076865883", "tags": "war coffin santamonicacacaliforniausasocal2010yosefsilvermilitary"}, {"datetaken": "2010-09-10 16:44:24", "license": "3", "title": "Santa Monica - October 2010", "text": "", "album_id": "72157625028749543", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/5077459650_cfe74aeeb0_o.jpg", "secret": "d026e99016", "media": "photo", "latitude": "0", "id": "5077459650", "tags": "war coffin santamonicacacaliforniausasocal2010yosefsilvermilitary"}, {"datetaken": "2010-09-10 16:46:46", "license": "3", "title": "Santa Monica - October 2010", "text": "", "album_id": "72157625028749543", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/5076866495_ce561bf889_o.jpg", "secret": "3ac827e3e7", "media": "photo", "latitude": "0", "id": "5076866495", "tags": "california ca usa santamonica socal 2010 yosefsilver"}, {"datetaken": "2010-09-10 16:57:54", "license": "3", "title": "Santa Monica - October 2010", "text": "", "album_id": "72157625028749543", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/5077460768_8866f0cebe_o.jpg", "secret": "98e9c098ef", "media": "photo", "latitude": "0", "id": "5077460768", "tags": "california ca usa santamonica socal smurfs 2010 yosefsilver"}, {"datetaken": "2010-09-10 17:03:56", "license": "3", "title": "Santa Monica - October 2010", "text": "", "album_id": "72157625028749543", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/5077461574_b2afa88a33_o.jpg", "secret": "dd5fa83bfa", "media": "photo", "latitude": "0", "id": "5077461574", "tags": "california ca usa santamonica socal 2010 yosefsilver"}, {"datetaken": "2010-09-10 18:50:06", "license": "3", "title": "Santa Monica - October 2010", "text": "", "album_id": "72157625028749543", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/5077515500_823d891b9c_o.jpg", "secret": "357c7462af", "media": "photo", "latitude": "0", "id": "5077515500", "tags": "california ca sunset usa santamonica socal 2010 yosefsilver"}, {"datetaken": "2010-09-10 18:53:02", "license": "3", "title": "Santa Monica - October 2010", "text": "", "album_id": "72157625028749543", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/5076922917_3cfda1d0c5_o.jpg", "secret": "94565ec3b7", "media": "photo", "latitude": "0", "id": "5076922917", "tags": "california above ca usa bus santamonica socal 2010 santamonicaplace yosefsilver"}, {"datetaken": "2010-09-10 18:54:41", "license": "3", "title": "Santa Monica - October 2010", "text": "", "album_id": "72157625028749543", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/5077517338_8fbdaf83b2_o.jpg", "secret": "0ebca9ca2d", "media": "photo", "latitude": "0", "id": "5077517338", "tags": "california ca usa santamonica socal 2010 santamonicaplace yosefsilver"}, {"datetaken": "2010-09-10 19:00:50", "license": "3", "title": "Santa Monica - October 2010", "text": "", "album_id": "72157625028749543", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4126/5076924955_2fe9564cc9_o.jpg", "secret": "a8d74204e2", "media": "photo", "latitude": "0", "id": "5076924955", "tags": "california ca usa santamonica socal nordstrom 2010 santamonicaplace yosefsilver"}, {"datetaken": "2010-09-10 19:09:45", "license": "3", "title": "Santa Monica - October 2010", "text": "", "album_id": "72157625028749543", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/5077519552_e3b62fe456_o.jpg", "secret": "fc6459cc0d", "media": "photo", "latitude": "0", "id": "5077519552", "tags": "california ca usa santamonica socal lush 2010 yosefsilver"}, {"datetaken": "2010-09-10 19:25:11", "license": "3", "title": "Santa Monica - October 2010", "text": "", "album_id": "72157625028749543", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/5076927247_1a17fb2403_o.jpg", "secret": "f0fd32a818", "media": "photo", "latitude": "0", "id": "5076927247", "tags": "california ca usa baby santamonica socal eitan 2010 yosefsilver"}, {"datetaken": "2010-09-10 19:27:30", "license": "3", "title": "Santa Monica - October 2010", "text": "", "album_id": "72157625028749543", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/5077521512_02dc8133b3_o.jpg", "secret": "7554d9534d", "media": "photo", "latitude": "0", "id": "5077521512", "tags": "california ca usa santamonica socal 2010 yosefsilver"}, {"datetaken": "2010-05-13 14:49:53", "license": "3", "title": "Driverless Metro", "text": "", "album_id": "72157624053396502", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4603685099_d45052d8c8_o.jpg", "secret": "30fc3e9de9", "media": "photo", "latitude": "0", "id": "4603685099", "tags": "travel copenhagen denmark"}, {"datetaken": "2010-05-13 15:07:09", "license": "3", "title": "\"Experience the World\"", "text": "", "album_id": "72157624053396502", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4604299420_d609cf7144_o.jpg", "secret": "828d76c1b9", "media": "photo", "latitude": "0", "id": "4604299420", "tags": "travel copenhagen denmark"}, {"datetaken": "2010-05-13 15:24:24", "license": "3", "title": "Angels", "text": "", "album_id": "72157624053396502", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1083/4603684261_54c49d6f60_o.jpg", "secret": "c5d5946dca", "media": "photo", "latitude": "0", "id": "4603684261", "tags": "travel copenhagen denmark"}, {"datetaken": "2010-05-13 15:39:15", "license": "3", "title": "Copenhagen", "text": "", "album_id": "72157624053396502", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1306/4603683205_149691f971_o.jpg", "secret": "9c3e144e8c", "media": "photo", "latitude": "0", "id": "4603683205", "tags": "travel copenhagen denmark"}, {"datetaken": "2010-05-13 16:11:25", "license": "3", "title": "City Hall - CopenHagen", "text": "", "album_id": "72157624053396502", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4604294828_2eb5ee7c6b_o.jpg", "secret": "5f5aa6cf04", "media": "photo", "latitude": "0", "id": "4604294828", "tags": "travel copenhagen denmark"}, {"datetaken": "2010-05-13 16:14:06", "license": "3", "title": "Strange Creature", "text": "", "album_id": "72157624053396502", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3546/4603679959_55f55379ed_o.jpg", "secret": "d99035ee45", "media": "photo", "latitude": "0", "id": "4603679959", "tags": "travel copenhagen denmark"}, {"datetaken": "2010-05-13 16:14:56", "license": "3", "title": "copenhagen", "text": "", "album_id": "72157624053396502", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3253/4603686361_a7261cb302_o.jpg", "secret": "ba5595ca76", "media": "photo", "latitude": "0", "id": "4603686361", "tags": "travel copenhagen denmark"}, {"datetaken": "2010-05-13 16:15:44", "license": "3", "title": "8 Degrees", "text": "", "album_id": "72157624053396502", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1205/4603678797_dc1eab842e_o.jpg", "secret": "abef357dcc", "media": "photo", "latitude": "0", "id": "4603678797", "tags": "travel copenhagen denmark"}, {"datetaken": "2010-05-13 16:26:04", "license": "3", "title": "Tivoli Amusement Park", "text": "", "album_id": "72157624053396502", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1408/4603682119_343a260fb9_o.jpg", "secret": "44dcc72d78", "media": "photo", "latitude": "0", "id": "4603682119", "tags": "travel copenhagen denmark"}, {"datetaken": "2010-05-14 14:05:31", "license": "3", "title": "Angel", "text": "", "album_id": "72157624053396502", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1008/4606901935_a4d52e45c3_o.jpg", "secret": "cb20a09d4d", "media": "photo", "latitude": "0", "id": "4606901935", "tags": "travel canon copenhagen denmark canon400d"}, {"datetaken": "2010-05-14 14:22:36", "license": "3", "title": "Flower", "text": "", "album_id": "72157624053396502", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4606538283_ff811000e6_o.jpg", "secret": "0ce62bab07", "media": "photo", "latitude": "0", "id": "4606538283", "tags": "travel flower macro canon copenhagen denmark canon400d"}, {"datetaken": "2010-05-14 14:52:59", "license": "3", "title": "M\u0153rsk Building", "text": "", "album_id": "72157624053396502", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1054/4607092222_5284a6bb1c_o.jpg", "secret": "d49f5fa64a", "media": "photo", "latitude": "0", "id": "4607092222", "tags": "copenhagen travel denmark canon canon450"}, {"datetaken": "2010-09-11 10:32:54", "license": "1", "title": "Phantasialand_2010-09-11_01", "text": "", "album_id": "72157624832147385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4991010040_b53e19bb4f_o.jpg", "secret": "15f2e29efd", "media": "photo", "latitude": "0", "id": "4991010040", "tags": "deutschland deu nordrheinwestfalen phantasialand br\u00fchl coloradoadventure"}, {"datetaken": "2010-09-11 10:34:09", "license": "1", "title": "Phantasialand_2010-09-11_02", "text": "", "album_id": "72157624832147385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/4991012886_fe67664451_o.jpg", "secret": "691132ca14", "media": "photo", "latitude": "0", "id": "4991012886", "tags": "deutschland deu nordrheinwestfalen phantasialand br\u00fchl coloradoadventure"}, {"datetaken": "2010-09-11 12:18:24", "license": "1", "title": "Phantasialand_2010-09-11_04", "text": "", "album_id": "72157624832147385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4091/4991015678_1a0220acfa_o.jpg", "secret": "9837b32288", "media": "photo", "latitude": "0", "id": "4991015678", "tags": "deutschland deu nordrheinwestfalen phantasialand br\u00fchl kaiserplatz"}, {"datetaken": "2010-09-11 12:22:59", "license": "1", "title": "Phantasialand_2010-09-11_07", "text": "", "album_id": "72157624832147385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4146/4991033424_68e310a0ee_o.jpg", "secret": "64669bbd95", "media": "photo", "latitude": "0", "id": "4991033424", "tags": "deutschland nordrheinwestfalen phantasialand br\u00fchl"}, {"datetaken": "2010-09-11 12:27:17", "license": "1", "title": "Phantasialand_2010-09-11_06", "text": "", "album_id": "72157624832147385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/4990430723_32d98a075a_o.jpg", "secret": "a0577964d7", "media": "photo", "latitude": "0", "id": "4990430723", "tags": "deutschland deu nordrheinwestfalen phantasialand br\u00fchl kaiserplatz"}, {"datetaken": "2010-09-11 12:28:11", "license": "1", "title": "Phantasialand_2010-09-11_05", "text": "", "album_id": "72157624832147385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/4990434177_ecfdc7b028_o.jpg", "secret": "80c5e76538", "media": "photo", "latitude": "0", "id": "4990434177", "tags": "deutschland deu nordrheinwestfalen phantasialand br\u00fchl kaiserplatz"}, {"datetaken": "2010-09-11 13:41:13", "license": "1", "title": "Phantasialand_2010-09-11_08", "text": "", "album_id": "72157624832147385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4133/4991049124_04686af3b9_o.jpg", "secret": "df8fef6766", "media": "photo", "latitude": "0", "id": "4991049124", "tags": "deutschland deu nordrheinwestfalen phantasialand br\u00fchl wuzetal"}, {"datetaken": "2010-09-11 13:41:29", "license": "1", "title": "Phantasialand_2010-09-11_09", "text": "", "album_id": "72157624832147385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/4990446741_d13543b15a_o.jpg", "secret": "5283a0a69e", "media": "photo", "latitude": "0", "id": "4990446741", "tags": "deutschland deu nordrheinwestfalen phantasialand br\u00fchl wuzetal w\u00fcrmlingexpress"}, {"datetaken": "2010-09-11 13:41:33", "license": "1", "title": "Phantasialand_2010-09-11_10", "text": "", "album_id": "72157624832147385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/4990449903_3d130e5a18_o.jpg", "secret": "48db515a4a", "media": "photo", "latitude": "0", "id": "4990449903", "tags": "deutschland deu nordrheinwestfalen phantasialand br\u00fchl wuzetal w\u00fcrmlingexpress"}, {"datetaken": "2010-09-11 13:41:57", "license": "1", "title": "Phantasialand_2010-09-11_11", "text": "", "album_id": "72157624832147385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/4991057862_b0389dbbdd_o.jpg", "secret": "0ef3117af8", "media": "photo", "latitude": "0", "id": "4991057862", "tags": "deutschland deu nordrheinwestfalen phantasialand br\u00fchl wuzetal w\u00fcrmlingexpress"}, {"datetaken": "2010-09-11 14:30:59", "license": "1", "title": "Phantasialand_2010-09-11_03", "text": "", "album_id": "72157624832147385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4990455173_b0dca5b959_o.jpg", "secret": "163a6cf99a", "media": "photo", "latitude": "0", "id": "4990455173", "tags": "deutschland deu nordrheinwestfalen phantasialand br\u00fchl coloradoadventure"}, {"datetaken": "2010-09-11 15:48:30", "license": "1", "title": "Phantasialand_2010-09-11_13", "text": "", "album_id": "72157624832147385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/4990458047_a446775086_o.jpg", "secret": "37c3e18cae", "media": "photo", "latitude": "0", "id": "4990458047", "tags": "deutschland deu nordrheinwestfalen phantasialand br\u00fchl stonewashcreek"}, {"datetaken": "2010-09-11 15:48:43", "license": "1", "title": "Phantasialand_2010-09-11_14", "text": "", "album_id": "72157624832147385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4106/4990461695_5bb297e631_o.jpg", "secret": "9629ce0f42", "media": "photo", "latitude": "0", "id": "4990461695", "tags": "deutschland deu nordrheinwestfalen phantasialand br\u00fchl stonewashcreek"}, {"datetaken": "2010-09-11 16:39:20", "license": "1", "title": "Phantasialand_2010-09-11_15", "text": "", "album_id": "72157624832147385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4133/4991078820_3772af8f78_o.jpg", "secret": "1a1908a187", "media": "photo", "latitude": "0", "id": "4991078820", "tags": "deutschland deu nordrheinwestfalen phantasialand br\u00fchl blackmamba deepinafrica"}, {"datetaken": "2010-09-11 18:31:21", "license": "1", "title": "Phantasialand_2010-09-11_12", "text": "", "album_id": "72157624832147385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/4991085072_790cfdea2c_o.jpg", "secret": "f3dba34355", "media": "photo", "latitude": "0", "id": "4991085072", "tags": "deutschland deu nordrheinwestfalen phantasialand br\u00fchl wuzetal"}, {"datetaken": "2012-01-15 16:12:55", "license": "2", "title": "JSU Observatory, Chimney Peak Summit, Jacksonville, AL", "text": "", "album_id": "72157628888719557", "longitude": "-85.732755", "url_o": "https://farm8.staticflickr.com/7170/6705141567_a4c7ae16b5_o.jpg", "secret": "acb783baf3", "media": "photo", "latitude": "33.838019", "id": "6705141567", "tags": "mountain alabama peak summit jacksonville calhouncounty chimneypeak jacksonvilleal choccoloccomountain"}, {"datetaken": "2012-01-15 16:13:07", "license": "2", "title": "Fire Tower, Chimney Peak Summit, Jacksonville, AL", "text": "", "album_id": "72157628888719557", "longitude": "-85.732755", "url_o": "https://farm8.staticflickr.com/7157/6705144047_3a28189f51_o.jpg", "secret": "8eb1991e33", "media": "photo", "latitude": "33.838019", "id": "6705144047", "tags": "mountain alabama peak summit jacksonville calhouncounty chimneypeak jacksonvilleal choccoloccomountain"}, {"datetaken": "2012-01-15 16:13:48", "license": "2", "title": "Fire Tower, Chimney Peak Summit, Jacksonville, AL", "text": "", "album_id": "72157628888719557", "longitude": "-85.732755", "url_o": "https://farm8.staticflickr.com/7029/6705143447_1070a964c0_o.jpg", "secret": "14948c9ca1", "media": "photo", "latitude": "33.838019", "id": "6705143447", "tags": "mountain alabama peak summit jacksonville calhouncounty chimneypeak jacksonvilleal choccoloccomountain"}, {"datetaken": "2012-01-15 16:31:19", "license": "2", "title": "Fire Tower, Chimney Peak Summit, Jacksonville, AL", "text": "", "album_id": "72157628888719557", "longitude": "-85.732755", "url_o": "https://farm8.staticflickr.com/7149/6705142435_cf24823256_o.jpg", "secret": "7b5b94d9ce", "media": "photo", "latitude": "33.838019", "id": "6705142435", "tags": "mountain alabama peak summit jacksonville calhouncounty chimneypeak jacksonvilleal choccoloccomountain"}, {"datetaken": "2012-01-15 16:32:10", "license": "2", "title": "Fire Tower, Chimney Peak Summit, Jacksonville, AL", "text": "", "album_id": "72157628888719557", "longitude": "-85.732755", "url_o": "https://farm8.staticflickr.com/7160/6705141957_0858c83d56_o.jpg", "secret": "98778cdd3f", "media": "photo", "latitude": "33.838019", "id": "6705141957", "tags": "mountain alabama peak summit jacksonville calhouncounty chimneypeak jacksonvilleal choccoloccomountain"}, {"datetaken": "2012-01-15 16:39:22", "license": "2", "title": "Fire Tower, Chimney Peak Summit, Jacksonville, AL", "text": "", "album_id": "72157628888719557", "longitude": "-85.732755", "url_o": "https://farm8.staticflickr.com/7168/6705143003_7184e1a27b_o.jpg", "secret": "01470382f7", "media": "photo", "latitude": "33.838019", "id": "6705143003", "tags": "mountain alabama peak summit jacksonville calhouncounty chimneypeak jacksonvilleal choccoloccomountain"}, {"datetaken": "2012-01-15 16:43:07", "license": "2", "title": "JSU Observatory, Chimney Peak Summit, Jacksonville, AL", "text": "", "album_id": "72157628888719557", "longitude": "-85.732755", "url_o": "https://farm8.staticflickr.com/7001/6705140953_6cf0acc167_o.jpg", "secret": "493169c6f9", "media": "photo", "latitude": "33.838019", "id": "6705140953", "tags": "mountain alabama peak summit jacksonville calhouncounty chimneypeak jacksonvilleal choccoloccomountain"}, {"datetaken": "2012-01-15 16:45:04", "license": "2", "title": "Sunset @ Chimney Peak Summit, Jacksonville, AL", "text": "", "album_id": "72157628888719557", "longitude": "-85.732755", "url_o": "https://farm8.staticflickr.com/7020/6705140493_e81447fb1b_o.jpg", "secret": "05d97b488b", "media": "photo", "latitude": "33.838019", "id": "6705140493", "tags": "mountain alabama peak summit jacksonville calhouncounty chimneypeak jacksonvilleal choccoloccomountain"}, {"datetaken": "2012-01-15 16:45:15", "license": "2", "title": "Sunset @ Chimney Peak Summit, Jacksonville, AL", "text": "", "album_id": "72157628888719557", "longitude": "-85.732755", "url_o": "https://farm8.staticflickr.com/7151/6705139959_907f5d4e10_o.jpg", "secret": "91bf72e889", "media": "photo", "latitude": "33.838019", "id": "6705139959", "tags": "mountain alabama peak summit jacksonville calhouncounty chimneypeak jacksonvilleal choccoloccomountain"}, {"datetaken": "2012-01-15 17:16:12", "license": "2", "title": "Sunset @ Chimney Peak Summit, Jacksonville, AL", "text": "", "album_id": "72157628888719557", "longitude": "-85.732755", "url_o": "https://farm8.staticflickr.com/7029/6705139551_bd4806b0f7_o.jpg", "secret": "3d3b7da26b", "media": "photo", "latitude": "33.838019", "id": "6705139551", "tags": "mountain alabama peak summit jacksonville calhouncounty chimneypeak jacksonvilleal choccoloccomountain"}, {"datetaken": "2012-01-15 17:16:31", "license": "2", "title": "Sunset @ Chimney Peak Summit, Jacksonville, AL", "text": "", "album_id": "72157628888719557", "longitude": "-85.732755", "url_o": "https://farm8.staticflickr.com/7165/6705139327_1b9a4b997a_o.jpg", "secret": "093fa96e76", "media": "photo", "latitude": "33.838019", "id": "6705139327", "tags": "mountain alabama peak summit jacksonville calhouncounty chimneypeak jacksonvilleal choccoloccomountain"}, {"datetaken": "2012-01-15 17:16:39", "license": "2", "title": "Sunset @ Chimney Peak Summit, Jacksonville, AL", "text": "", "album_id": "72157628888719557", "longitude": "-85.732755", "url_o": "https://farm8.staticflickr.com/7020/6705139029_f7cf5d3aa5_o.jpg", "secret": "a2838657b8", "media": "photo", "latitude": "33.838019", "id": "6705139029", "tags": "mountain alabama peak summit jacksonville calhouncounty chimneypeak jacksonvilleal choccoloccomountain"}, {"datetaken": "2007-02-26 11:49:14", "license": "5", "title": "College Creek", "text": "", "album_id": "72157600081021746", "longitude": "-76.805505", "url_o": "https://farm1.staticflickr.com/181/460843189_6109aceb47_o.jpg", "secret": "a1d077cbe0", "media": "photo", "latitude": "37.240510", "id": "460843189", "tags": "virginia"}, {"datetaken": "2007-02-26 11:49:58", "license": "5", "title": "College Creek", "text": "", "album_id": "72157600081021746", "longitude": "-76.805505", "url_o": "https://farm1.staticflickr.com/183/460842255_eca2d76d5d_o.jpg", "secret": "595064f530", "media": "photo", "latitude": "37.240510", "id": "460842255", "tags": "virginia"}, {"datetaken": "2007-02-26 13:17:13", "license": "5", "title": "Archeology", "text": "", "album_id": "72157600081021746", "longitude": "-76.750059", "url_o": "https://farm1.staticflickr.com/180/460844321_e26007edc2_o.jpg", "secret": "427ae5b33a", "media": "photo", "latitude": "37.204218", "id": "460844321", "tags": "virginia"}, {"datetaken": "2007-02-26 13:18:39", "license": "5", "title": "Jamestown settlement", "text": "", "album_id": "72157600081021746", "longitude": "-76.750059", "url_o": "https://farm1.staticflickr.com/251/460845411_93d8d3fc22_o.jpg", "secret": "736d585dec", "media": "photo", "latitude": "37.204218", "id": "460845411", "tags": "virginia"}, {"datetaken": "2007-02-26 17:25:55", "license": "5", "title": "Bruce and the reenactor on the Susan Constant.", "text": "", "album_id": "72157600081021746", "longitude": "-76.805505", "url_o": "https://farm1.staticflickr.com/213/460846469_98d9185452_o.jpg", "secret": "df698f17fe", "media": "photo", "latitude": "37.240510", "id": "460846469", "tags": "virginia"}, {"datetaken": "2007-02-26 17:26:04", "license": "5", "title": "Ropes on the Susan Constant", "text": "", "album_id": "72157600081021746", "longitude": "-76.805505", "url_o": "https://farm1.staticflickr.com/197/460847285_aa3c8324bf_o.jpg", "secret": "b5993cbe4e", "media": "photo", "latitude": "37.240510", "id": "460847285", "tags": "virginia"}, {"datetaken": "2007-02-26 17:26:28", "license": "5", "title": "The Susan Constant", "text": "", "album_id": "72157600081021746", "longitude": "-76.805505", "url_o": "https://farm1.staticflickr.com/170/460842512_c3d6175e3a_o.jpg", "secret": "63cfe447e2", "media": "photo", "latitude": "37.240510", "id": "460842512", "tags": "virginia"}, {"datetaken": "2007-02-26 17:28:25", "license": "5", "title": "Sea worthy", "text": "", "album_id": "72157600081021746", "longitude": "-76.805505", "url_o": "https://farm1.staticflickr.com/250/460850244_4e2e2bbb44_o.jpg", "secret": "bcc6407499", "media": "photo", "latitude": "37.240510", "id": "460850244", "tags": "virginia"}, {"datetaken": "2007-02-26 17:28:49", "license": "5", "title": "The Susan Constant", "text": "", "album_id": "72157600081021746", "longitude": "-76.805505", "url_o": "https://farm1.staticflickr.com/179/460849280_6f05d07c97_o.jpg", "secret": "aa5d0772ab", "media": "photo", "latitude": "37.240510", "id": "460849280", "tags": "virginia"}, {"datetaken": "2007-02-26 17:30:52", "license": "5", "title": "The God Speed", "text": "", "album_id": "72157600081021746", "longitude": "-76.805505", "url_o": "https://farm1.staticflickr.com/171/460848006_82e5e27432_o.jpg", "secret": "b1a7a99aaa", "media": "photo", "latitude": "37.240510", "id": "460848006", "tags": "virginia"}, {"datetaken": "2007-02-26 17:35:21", "license": "5", "title": "Jamestown Museum", "text": "", "album_id": "72157600081021746", "longitude": "-76.805505", "url_o": "https://farm1.staticflickr.com/232/460852521_c8f633a0a4_o.jpg", "secret": "bface9810c", "media": "photo", "latitude": "37.240510", "id": "460852521", "tags": "virginia"}, {"datetaken": "2007-02-26 17:47:28", "license": "5", "title": "Jamestown reenactment village", "text": "", "album_id": "72157600081021746", "longitude": "-76.805505", "url_o": "https://farm1.staticflickr.com/187/460845182_f053a9da92_o.jpg", "secret": "0c2a3a97c8", "media": "photo", "latitude": "37.240510", "id": "460845182", "tags": "virginia"}, {"datetaken": "2007-02-26 17:50:28", "license": "5", "title": "Jamestown reenactment village", "text": "", "album_id": "72157600081021746", "longitude": "-76.805505", "url_o": "https://farm1.staticflickr.com/231/460843852_3090d22a65_o.jpg", "secret": "57ebd1ae7b", "media": "photo", "latitude": "37.240510", "id": "460843852", "tags": "virginia"}, {"datetaken": "2007-02-27 12:41:16", "license": "5", "title": "Residence", "text": "", "album_id": "72157600081021746", "longitude": "-76.731262", "url_o": "https://farm1.staticflickr.com/167/460856889_3e0290448e_o.jpg", "secret": "6d1349f40c", "media": "photo", "latitude": "37.284979", "id": "460856889", "tags": "virginia"}, {"datetaken": "2007-02-27 12:41:16", "license": "5", "title": "Williamsburg", "text": "", "album_id": "72157600081021746", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2357/2123419438_20fce94345_o.jpg", "secret": "fbd5377108", "media": "photo", "latitude": "0", "id": "2123419438", "tags": ""}, {"datetaken": "2007-02-27 12:41:45", "license": "5", "title": "That's the way to travel", "text": "", "album_id": "72157600081021746", "longitude": "-76.731262", "url_o": "https://farm1.staticflickr.com/226/460857935_088ef653d4_o.jpg", "secret": "aeae9dedb8", "media": "photo", "latitude": "37.284979", "id": "460857935", "tags": "virginia"}, {"datetaken": "2007-02-27 12:44:44", "license": "5", "title": "bee hive", "text": "", "album_id": "72157600081021746", "longitude": "-76.731262", "url_o": "https://farm1.staticflickr.com/214/460858713_16b7cfd586_o.jpg", "secret": "ce95a2ae7e", "media": "photo", "latitude": "37.284979", "id": "460858713", "tags": "virginia"}, {"datetaken": "2007-02-27 12:45:36", "license": "5", "title": "Thats not another lamp post?", "text": "", "album_id": "72157600081021746", "longitude": "-76.731262", "url_o": "https://farm1.staticflickr.com/167/460854096_13030e3928_o.jpg", "secret": "a6f004fb6e", "media": "photo", "latitude": "37.284979", "id": "460854096", "tags": "virginia"}, {"datetaken": "2007-02-27 13:11:30", "license": "5", "title": "Don't cross swords with me, mate", "text": "", "album_id": "72157600081021746", "longitude": "-76.731262", "url_o": "https://farm1.staticflickr.com/253/460860785_a3d60c3fdd_o.jpg", "secret": "2019a2fcb8", "media": "photo", "latitude": "37.284979", "id": "460860785", "tags": "virginia"}, {"datetaken": "2007-02-27 13:11:55", "license": "5", "title": "Ready for action", "text": "", "album_id": "72157600081021746", "longitude": "-76.731262", "url_o": "https://farm1.staticflickr.com/192/460855708_a0b893dd12_o.jpg", "secret": "4dcab022d9", "media": "photo", "latitude": "37.284979", "id": "460855708", "tags": "virginia"}, {"datetaken": "2007-02-27 13:12:44", "license": "5", "title": "Armed to the teeth", "text": "", "album_id": "72157600081021746", "longitude": "-76.731262", "url_o": "https://farm1.staticflickr.com/184/460862745_58bcf5247b_o.jpg", "secret": "46fbbd095a", "media": "photo", "latitude": "37.284979", "id": "460862745", "tags": "virginia"}, {"datetaken": "2007-02-27 13:36:22", "license": "5", "title": "Nightmare to dust", "text": "", "album_id": "72157600081021746", "longitude": "-76.731262", "url_o": "https://farm1.staticflickr.com/212/460863669_06a07e8311_o.jpg", "secret": "261a16709a", "media": "photo", "latitude": "37.284979", "id": "460863669", "tags": "virginia"}, {"datetaken": "2007-02-27 13:55:52", "license": "5", "title": "Garden", "text": "", "album_id": "72157600081021746", "longitude": "-76.731262", "url_o": "https://farm1.staticflickr.com/252/460864749_373b2d82f3_o.jpg", "secret": "05d2d95e2b", "media": "photo", "latitude": "37.284979", "id": "460864749", "tags": "virginia"}, {"datetaken": "2007-02-27 13:57:02", "license": "5", "title": "Cool on a hot day", "text": "", "album_id": "72157600081021746", "longitude": "-76.731262", "url_o": "https://farm1.staticflickr.com/231/460866235_f9e9a0686e_o.jpg", "secret": "e745a3a2ae", "media": "photo", "latitude": "37.284979", "id": "460866235", "tags": "virginia"}, {"datetaken": "2007-02-27 13:57:20", "license": "5", "title": "IMG_6104.JPG", "text": "", "album_id": "72157600081021746", "longitude": "-76.731262", "url_o": "https://farm1.staticflickr.com/227/460866969_4ab0ee61a9_o.jpg", "secret": "8553233214", "media": "photo", "latitude": "37.284979", "id": "460866969", "tags": "virginia"}, {"datetaken": "2007-02-27 14:10:12", "license": "5", "title": "House along the main drag", "text": "", "album_id": "72157600081021746", "longitude": "-76.731262", "url_o": "https://farm1.staticflickr.com/200/460867939_4b54fa2617_o.jpg", "secret": "fa7ea3389a", "media": "photo", "latitude": "37.284979", "id": "460867939", "tags": "virginia"}, {"datetaken": "2007-02-27 14:10:44", "license": "5", "title": "House", "text": "", "album_id": "72157600081021746", "longitude": "-76.731262", "url_o": "https://farm1.staticflickr.com/236/460869339_fc3c007d66_o.jpg", "secret": "8cc72fe224", "media": "photo", "latitude": "37.284979", "id": "460869339", "tags": "virginia"}, {"datetaken": "2007-02-27 14:12:35", "license": "5", "title": "IMG_6109.JPG", "text": "", "album_id": "72157600081021746", "longitude": "-76.731262", "url_o": "https://farm1.staticflickr.com/221/460862462_2846bf2b9a_o.jpg", "secret": "25acffc076", "media": "photo", "latitude": "37.284979", "id": "460862462", "tags": "virginia"}, {"datetaken": "2010-08-15 19:21:22", "license": "3", "title": "10081501.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4896706988_575aeae655_o.jpg", "secret": "e8eeee697c", "media": "photo", "latitude": "0", "id": "4896706988", "tags": ""}, {"datetaken": "2010-08-15 19:24:03", "license": "3", "title": "10081503.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4896707230_b910348317_o.jpg", "secret": "94ed49466a", "media": "photo", "latitude": "0", "id": "4896707230", "tags": ""}, {"datetaken": "2010-08-15 19:24:22", "license": "3", "title": "10081504.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4896707494_dc9f6f9857_o.jpg", "secret": "76825c6887", "media": "photo", "latitude": "0", "id": "4896707494", "tags": ""}, {"datetaken": "2010-08-15 19:30:15", "license": "3", "title": "10081506.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4896112641_3b629215d4_o.jpg", "secret": "2c47e46333", "media": "photo", "latitude": "0", "id": "4896112641", "tags": ""}, {"datetaken": "2010-08-15 19:30:30", "license": "3", "title": "10081507.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4896708092_2a8ca17bb2_o.jpg", "secret": "3806841588", "media": "photo", "latitude": "0", "id": "4896708092", "tags": ""}, {"datetaken": "2010-08-15 19:43:17", "license": "3", "title": "10081515.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4896708378_d1ccbe966d_o.jpg", "secret": "562c861132", "media": "photo", "latitude": "0", "id": "4896708378", "tags": ""}, {"datetaken": "2010-08-15 19:43:44", "license": "3", "title": "10081516.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4896113521_31bee9e25c_o.jpg", "secret": "719106048d", "media": "photo", "latitude": "0", "id": "4896113521", "tags": ""}, {"datetaken": "2010-08-15 19:45:42", "license": "3", "title": "10081518.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4896113799_562154b1e2_o.jpg", "secret": "2a39ca97ab", "media": "photo", "latitude": "0", "id": "4896113799", "tags": ""}, {"datetaken": "2010-08-15 19:47:42", "license": "3", "title": "10081519.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4896114073_03f6bd1706_o.jpg", "secret": "8427a8af8e", "media": "photo", "latitude": "0", "id": "4896114073", "tags": ""}, {"datetaken": "2010-08-15 19:48:51", "license": "3", "title": "10081520.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4896709490_2392897915_o.jpg", "secret": "1d9e35f53d", "media": "photo", "latitude": "0", "id": "4896709490", "tags": ""}, {"datetaken": "2010-08-15 19:53:45", "license": "3", "title": "10081523.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4896709720_eca7b54a22_o.jpg", "secret": "7ebe3d4b52", "media": "photo", "latitude": "0", "id": "4896709720", "tags": ""}, {"datetaken": "2010-08-15 20:00:44", "license": "3", "title": "10081526.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4896114977_55f406dc96_o.jpg", "secret": "a96179570a", "media": "photo", "latitude": "0", "id": "4896114977", "tags": ""}, {"datetaken": "2010-08-15 20:03:15", "license": "3", "title": "10081527.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4896710404_16fa47aa92_o.jpg", "secret": "76d91eaa63", "media": "photo", "latitude": "0", "id": "4896710404", "tags": ""}, {"datetaken": "2010-08-15 20:03:34", "license": "3", "title": "10081528.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4896115489_619b2dfec2_o.jpg", "secret": "6927affefe", "media": "photo", "latitude": "0", "id": "4896115489", "tags": ""}, {"datetaken": "2010-08-15 20:03:52", "license": "3", "title": "10081529.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4114/4896115759_9aa99667f6_o.jpg", "secret": "3ed7253fc8", "media": "photo", "latitude": "0", "id": "4896115759", "tags": ""}, {"datetaken": "2010-08-15 20:04:16", "license": "3", "title": "10081530.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4896116015_e59a31093c_o.jpg", "secret": "683a4db5ed", "media": "photo", "latitude": "0", "id": "4896116015", "tags": ""}, {"datetaken": "2010-08-15 20:05:20", "license": "3", "title": "10081531.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4896116337_8261156822_o.jpg", "secret": "f0cb8182c3", "media": "photo", "latitude": "0", "id": "4896116337", "tags": ""}, {"datetaken": "2010-08-15 20:06:12", "license": "3", "title": "10081532.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4896116901_ac8a77a218_o.jpg", "secret": "3fb7764ac9", "media": "photo", "latitude": "0", "id": "4896116901", "tags": ""}, {"datetaken": "2010-08-15 20:21:40", "license": "3", "title": "10081537.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4896712358_2a27ff95b9_o.jpg", "secret": "572ef3ef07", "media": "photo", "latitude": "0", "id": "4896712358", "tags": ""}, {"datetaken": "2010-08-15 20:22:15", "license": "3", "title": "10081538.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4896712662_0949f4841b_o.jpg", "secret": "60b888581d", "media": "photo", "latitude": "0", "id": "4896712662", "tags": ""}, {"datetaken": "2010-08-15 20:24:05", "license": "3", "title": "10081539.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4896118021_2732563804_o.jpg", "secret": "d0ff222b92", "media": "photo", "latitude": "0", "id": "4896118021", "tags": ""}, {"datetaken": "2010-08-15 20:44:01", "license": "3", "title": "10081540.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4896118307_afd567cc63_o.jpg", "secret": "2c7e1e28fd", "media": "photo", "latitude": "0", "id": "4896118307", "tags": ""}, {"datetaken": "2010-08-15 20:57:31", "license": "3", "title": "10081542.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4896118541_c6f11415ef_o.jpg", "secret": "8d53046ba8", "media": "photo", "latitude": "0", "id": "4896118541", "tags": ""}, {"datetaken": "2010-08-15 20:58:21", "license": "3", "title": "10081543.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4896118755_28d169b1c1_o.jpg", "secret": "64f18a58c4", "media": "photo", "latitude": "0", "id": "4896118755", "tags": ""}, {"datetaken": "2010-08-15 20:59:41", "license": "3", "title": "10081544.jpg", "text": "", "album_id": "72157624609963959", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4896714218_849d4bd983_o.jpg", "secret": "4660a7114b", "media": "photo", "latitude": "0", "id": "4896714218", "tags": ""}, {"datetaken": "2010-08-14 13:15:31", "license": "3", "title": "Chymes Cathedral", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4893519619_8135d7d672_o.jpg", "secret": "a9c50098d8", "media": "photo", "latitude": "0", "id": "4893519619", "tags": ""}, {"datetaken": "2010-08-14 13:20:24", "license": "3", "title": "Chymes Restaurant", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4894120618_1d53d42c64_o.jpg", "secret": "fae8cd6710", "media": "photo", "latitude": "0", "id": "4894120618", "tags": ""}, {"datetaken": "2010-08-14 13:27:22", "license": "3", "title": "Chymes Cathedral", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4894128904_beb91d5a6f_o.jpg", "secret": "0f21990b28", "media": "photo", "latitude": "0", "id": "4894128904", "tags": ""}, {"datetaken": "2010-08-14 13:36:23", "license": "3", "title": "NDP 2010", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4893548699_c3b95f0408_o.jpg", "secret": "0f09f4d896", "media": "photo", "latitude": "0", "id": "4893548699", "tags": ""}, {"datetaken": "2010-08-14 13:39:30", "license": "3", "title": "Raffles City", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4893557055_4beeb57e8c_o.jpg", "secret": "a1aacf21c0", "media": "photo", "latitude": "0", "id": "4893557055", "tags": ""}, {"datetaken": "2010-08-14 13:43:29", "license": "3", "title": "Patience", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4894157970_653e0af072_o.jpg", "secret": "3c500a94f7", "media": "photo", "latitude": "0", "id": "4894157970", "tags": ""}, {"datetaken": "2010-08-14 13:44:33", "license": "3", "title": "Reflection", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4894165460_6be30d7051_o.jpg", "secret": "aa9beabd45", "media": "photo", "latitude": "0", "id": "4894165460", "tags": ""}, {"datetaken": "2010-08-14 13:49:53", "license": "3", "title": "Tribute to the WWII Patriots", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4893577551_f7eacc83f6_o.jpg", "secret": "4ceacc4b36", "media": "photo", "latitude": "0", "id": "4893577551", "tags": ""}, {"datetaken": "2010-08-14 13:58:53", "license": "3", "title": "Tripod", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4118/4894178142_2944a1bf31_o.jpg", "secret": "6c03ec0822", "media": "photo", "latitude": "0", "id": "4894178142", "tags": ""}, {"datetaken": "2010-08-14 14:27:39", "license": "3", "title": "The Ring", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4894190182_b8208ae06b_o.jpg", "secret": "d7c9692390", "media": "photo", "latitude": "0", "id": "4894190182", "tags": ""}, {"datetaken": "2010-08-14 14:28:24", "license": "3", "title": "Patriotism", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4893602971_219a67e4c3_o.jpg", "secret": "576a8f3074", "media": "photo", "latitude": "0", "id": "4893602971", "tags": ""}, {"datetaken": "2010-08-14 18:29:40", "license": "3", "title": "Shenton Way @ Golden Hour", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4114/4901451508_8dda918721_o.jpg", "secret": "883027be96", "media": "photo", "latitude": "0", "id": "4901451508", "tags": ""}, {"datetaken": "2010-08-14 18:45:46", "license": "3", "title": "MBS", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4894202588_b81bbfa92c_o.jpg", "secret": "a43bea78c9", "media": "photo", "latitude": "0", "id": "4894202588", "tags": ""}, {"datetaken": "2010-08-14 18:49:38", "license": "3", "title": "The Boat and the city", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4894209744_72b5cbb623_o.jpg", "secret": "da1763aa31", "media": "photo", "latitude": "0", "id": "4894209744", "tags": ""}, {"datetaken": "2010-08-14 18:56:30", "license": "3", "title": "The boat", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4893623769_68872f928b_o.jpg", "secret": "a3d985d591", "media": "photo", "latitude": "0", "id": "4893623769", "tags": ""}, {"datetaken": "2010-08-14 19:21:41", "license": "3", "title": "True Blue MBS", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4893633717_3fd9a2bb1e_o.jpg", "secret": "69c0791cde", "media": "photo", "latitude": "0", "id": "4893633717", "tags": ""}, {"datetaken": "2010-08-14 19:32:40", "license": "3", "title": "True Blue Shenton", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4894241630_eeb1bd4e20_o.jpg", "secret": "4cc090b659", "media": "photo", "latitude": "0", "id": "4894241630", "tags": ""}, {"datetaken": "2010-08-14 20:12:03", "license": "3", "title": "Aliens Have arrived", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4893657359_e181b061fa_o.jpg", "secret": "2e61054e90", "media": "photo", "latitude": "0", "id": "4893657359", "tags": ""}, {"datetaken": "2010-08-14 20:19:55", "license": "3", "title": "Myriad Fireworks", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4894262962_d16a6bc727_o.jpg", "secret": "7a9e888333", "media": "photo", "latitude": "0", "id": "4894262962", "tags": ""}, {"datetaken": "2010-08-14 21:08:00", "license": "3", "title": "Red Fireworks", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4894268906_82bc5fce53_o.jpg", "secret": "443b6de49e", "media": "photo", "latitude": "0", "id": "4894268906", "tags": ""}, {"datetaken": "2010-08-14 21:08:19", "license": "3", "title": "Green Fireworks", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4893687601_3d235ee0d3_o.jpg", "secret": "995b311cc0", "media": "photo", "latitude": "0", "id": "4893687601", "tags": ""}, {"datetaken": "2010-08-14 21:09:22", "license": "3", "title": "Purple Fireworks", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4893698641_d72ba1d7fd_o.jpg", "secret": "7c503e7f35", "media": "photo", "latitude": "0", "id": "4893698641", "tags": ""}, {"datetaken": "2010-08-14 22:08:02", "license": "3", "title": "Smoky Aftermath", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4893715703_95e83e236e_o.jpg", "secret": "84a9fe35ff", "media": "photo", "latitude": "0", "id": "4893715703", "tags": ""}, {"datetaken": "2010-08-14 22:17:20", "license": "3", "title": "The YOG Phoenix", "text": "", "album_id": "72157624729268764", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4893724687_3fbdb5196f_o.jpg", "secret": "4bf077dbf3", "media": "photo", "latitude": "0", "id": "4893724687", "tags": ""}, {"datetaken": "2010-08-15 11:52:45", "license": "1", "title": "Balsa Man 2010 Photoshoot - 11", "text": "", "album_id": "72157624733113830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4896031980_22e76ef437_o.jpg", "secret": "a9d5cb8969", "media": "photo", "latitude": "0", "id": "4896031980", "tags": "balsaman balsaman2010"}, {"datetaken": "2010-08-15 11:54:20", "license": "1", "title": "Balsa Man 2010 Photoshoot - 10", "text": "", "album_id": "72157624733113830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4896032398_955402ebf3_o.jpg", "secret": "495f5cb967", "media": "photo", "latitude": "0", "id": "4896032398", "tags": "balsaman balsaman2010"}, {"datetaken": "2010-08-15 12:01:13", "license": "1", "title": "Balsa Man 2010 Photoshoot - 9", "text": "", "album_id": "72157624733113830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4895437583_b6300cfbea_o.jpg", "secret": "f9e9db30e1", "media": "photo", "latitude": "0", "id": "4895437583", "tags": "balsaman balsaman2010"}, {"datetaken": "2010-08-15 12:02:40", "license": "1", "title": "Balsa Man 2010 Photoshoot - 8", "text": "", "album_id": "72157624733113830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4895437873_b6d894f8bb_o.jpg", "secret": "618976259e", "media": "photo", "latitude": "0", "id": "4895437873", "tags": "balsaman balsaman2010"}, {"datetaken": "2010-08-15 12:05:47", "license": "1", "title": "Balsa Man 2010 Photoshoot - 7", "text": "", "album_id": "72157624733113830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4896033326_73ae75a3ed_o.jpg", "secret": "96913bba33", "media": "photo", "latitude": "0", "id": "4896033326", "tags": "balsaman balsaman2010"}, {"datetaken": "2010-08-15 12:21:29", "license": "1", "title": "Balsa Man 2010 Photoshoot - 6", "text": "", "album_id": "72157624733113830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4114/4896033626_fefb7205d9_o.jpg", "secret": "18f07d7d00", "media": "photo", "latitude": "0", "id": "4896033626", "tags": "balsaman balsaman2010"}, {"datetaken": "2010-08-15 12:22:45", "license": "1", "title": "Balsa Man 2010 Photoshoot - 5", "text": "", "album_id": "72157624733113830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4895438735_88e0407a6f_o.jpg", "secret": "1ed9477914", "media": "photo", "latitude": "0", "id": "4895438735", "tags": "balsaman balsaman2010"}, {"datetaken": "2010-08-15 12:24:39", "license": "1", "title": "Balsa Man 2010 Photoshoot - 4", "text": "", "album_id": "72157624733113830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4896034214_728261dfff_o.jpg", "secret": "edc65acefe", "media": "photo", "latitude": "0", "id": "4896034214", "tags": "balsaman balsaman2010"}, {"datetaken": "2010-08-15 12:25:49", "license": "1", "title": "Balsa Man 2010 Photoshoot - 3", "text": "", "album_id": "72157624733113830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4895439303_632ed31e9b_o.jpg", "secret": "97e61a1e56", "media": "photo", "latitude": "0", "id": "4895439303", "tags": "balsaman balsaman2010"}, {"datetaken": "2010-08-15 12:28:06", "license": "1", "title": "Balsa Man 2010 Photoshoot - 2", "text": "", "album_id": "72157624733113830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4896034872_c6bb4ff000_o.jpg", "secret": "e3acc8ef15", "media": "photo", "latitude": "0", "id": "4896034872", "tags": "balsaman balsaman2010"}, {"datetaken": "2010-08-15 12:31:14", "license": "1", "title": "Balsa Man 2010 Photoshoot - 1", "text": "", "album_id": "72157624733113830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4895439927_8604980cbd_o.jpg", "secret": "46db41b6d9", "media": "photo", "latitude": "0", "id": "4895439927", "tags": "balsaman balsaman2010"}, {"datetaken": "2010-10-16 18:55:20", "license": "4", "title": "DSC_0005", "text": "", "album_id": "72157625049799293", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/5086282222_617d9f8bee_o.jpg", "secret": "0865c1fa7f", "media": "photo", "latitude": "0", "id": "5086282222", "tags": "wingbay"}, {"datetaken": "2010-10-16 19:01:05", "license": "4", "title": "DSC_0013", "text": "", "album_id": "72157625049799293", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4085/5085685001_616203451f_o.jpg", "secret": "00cba0faa4", "media": "photo", "latitude": "0", "id": "5085685001", "tags": "wingbay"}, {"datetaken": "2010-10-16 19:01:44", "license": "4", "title": "DSC_0015", "text": "", "album_id": "72157625049799293", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/5085685251_04f2355986_o.jpg", "secret": "b43267a73a", "media": "photo", "latitude": "0", "id": "5085685251", "tags": "wingbay"}, {"datetaken": "2010-10-16 19:01:48", "license": "4", "title": "DSC_0016", "text": "", "album_id": "72157625049799293", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4130/5085685467_d1db79062e_o.jpg", "secret": "81d42b9534", "media": "photo", "latitude": "0", "id": "5085685467", "tags": "wingbay"}, {"datetaken": "2010-10-16 19:02:06", "license": "4", "title": "DSC_0017", "text": "", "album_id": "72157625049799293", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/5086283104_f0211a96cc_o.jpg", "secret": "e689e435dd", "media": "photo", "latitude": "0", "id": "5086283104", "tags": "wingbay"}, {"datetaken": "2010-10-16 19:04:03", "license": "4", "title": "DSC_0018", "text": "", "album_id": "72157625049799293", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/5086283392_9dca5bda4f_o.jpg", "secret": "582be12805", "media": "photo", "latitude": "0", "id": "5086283392", "tags": "wingbay"}, {"datetaken": "2010-10-16 19:04:43", "license": "4", "title": "DSC_0021", "text": "", "album_id": "72157625049799293", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4107/5085686097_5054419e21_o.jpg", "secret": "4b4cd5b677", "media": "photo", "latitude": "0", "id": "5085686097", "tags": "wingbay"}, {"datetaken": "2010-10-16 19:07:32", "license": "4", "title": "\u30a6\u30a4\u30f3\u30b0\u30d9\u30a4\u5c0f\u6a3d\u306e\u89b3\u89a7\u8eca_0024", "text": "", "album_id": "72157625049799293", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/5085686429_22ffce2eff_o.jpg", "secret": "da6f7952b0", "media": "photo", "latitude": "0", "id": "5085686429", "tags": "wingbay"}, {"datetaken": "2010-10-16 19:07:33", "license": "4", "title": "\u30a6\u30a4\u30f3\u30b0\u30d9\u30a4\u5c0f\u6a3d\u306e\u89b3\u89a7\u8eca_0025", "text": "", "album_id": "72157625049799293", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4107/5085686631_c1f7e87352_o.jpg", "secret": "ff9a50f877", "media": "photo", "latitude": "0", "id": "5085686631", "tags": "wingbay"}, {"datetaken": "2010-10-16 19:10:01", "license": "4", "title": "\u30a6\u30a4\u30f3\u30b0\u30d9\u30a4\u5c0f\u6a3d_0026", "text": "", "album_id": "72157625049799293", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/5085686851_861d73843f_o.jpg", "secret": "781e36a738", "media": "photo", "latitude": "0", "id": "5085686851", "tags": "wingbay"}, {"datetaken": "2010-10-16 19:12:56", "license": "4", "title": "\u30a6\u30a4\u30f3\u30b0\u30d9\u30a4\u5c0f\u6a3d_0028", "text": "", "album_id": "72157625049799293", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4087/5086284636_bf3741c60a_o.jpg", "secret": "d9c113a92a", "media": "photo", "latitude": "0", "id": "5086284636", "tags": "wingbay"}, {"datetaken": "2010-10-16 19:15:08", "license": "4", "title": "DSC_0033", "text": "", "album_id": "72157625049799293", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4151/5086284790_f077378405_o.jpg", "secret": "debc8b32b1", "media": "photo", "latitude": "0", "id": "5086284790", "tags": ""}, {"datetaken": "2010-01-17 14:10:25", "license": "2", "title": "Pedro's T-Shirt Shop 2", "text": "", "album_id": "72157623230626204", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4283150716_aebdb13074_o.jpg", "secret": "26894846d5", "media": "photo", "latitude": "0", "id": "4283150716", "tags": "southcarolina pedro southoftheborder benbernakeinterchange"}, {"datetaken": "2010-01-17 14:10:45", "license": "2", "title": "South of the Border - A Scene", "text": "", "album_id": "72157623230626204", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4283151728_de9a9431d2_o.jpg", "secret": "8894ebd82f", "media": "photo", "latitude": "0", "id": "4283151728", "tags": "southcarolina pedro southoftheborder benbernakeinterchange"}, {"datetaken": "2010-01-17 14:11:05", "license": "2", "title": "Blue on Bluer", "text": "", "album_id": "72157623230626204", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4282408349_7542ff0cd4_o.jpg", "secret": "6ef97daa03", "media": "photo", "latitude": "0", "id": "4282408349", "tags": "southcarolina pedro southoftheborder benbernakeinterchange"}, {"datetaken": "2010-01-17 14:11:31", "license": "2", "title": "Fort Pedro", "text": "", "album_id": "72157623230626204", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4282409651_f1497f16a5_o.jpg", "secret": "628bb5f815", "media": "photo", "latitude": "0", "id": "4282409651", "tags": "southcarolina pedro southoftheborder benbernakeinterchange"}, {"datetaken": "2010-01-17 14:11:51", "license": "2", "title": "Works*", "text": "", "album_id": "72157623230626204", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2686/4283155024_15bdedbeb8_o.jpg", "secret": "0e520a24ed", "media": "photo", "latitude": "0", "id": "4283155024", "tags": "southcarolina pedro southoftheborder benbernakeinterchange"}, {"datetaken": "2010-01-17 14:12:13", "license": "2", "title": "Ice Cream and Flying Sombrero", "text": "", "album_id": "72157623230626204", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4282411931_49baae582d_o.jpg", "secret": "7d6ce8c0c3", "media": "photo", "latitude": "0", "id": "4282411931", "tags": "southcarolina pedro southoftheborder benbernakeinterchange"}, {"datetaken": "2010-01-17 14:12:35", "license": "2", "title": "Mint Chocolate Chip", "text": "", "album_id": "72157623230626204", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4283157226_c61173ed19_o.jpg", "secret": "e29241b6fd", "media": "photo", "latitude": "0", "id": "4283157226", "tags": "southcarolina pedro southoftheborder benbernakeinterchange"}, {"datetaken": "2010-01-17 14:12:59", "license": "2", "title": "South of the Border - HOT TOMALE", "text": "", "album_id": "72157623230626204", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4282414007_e1e38a6de5_o.jpg", "secret": "fecf7e8cc5", "media": "photo", "latitude": "0", "id": "4282414007", "tags": "southcarolina pedro southoftheborder benbernakeinterchange"}, {"datetaken": "2010-01-17 14:13:18", "license": "2", "title": "Public Restroom Gaurded By Red Sombrero'd Man", "text": "", "album_id": "72157623230626204", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4282414943_3b74ec66fa_o.jpg", "secret": "15e50fbafe", "media": "photo", "latitude": "0", "id": "4282414943", "tags": "southcarolina pedro southoftheborder benbernakeinterchange"}, {"datetaken": "2010-01-17 14:13:38", "license": "2", "title": "Sombrero Tower", "text": "", "album_id": "72157623230626204", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2728/4282415917_5b00ed186f_o.jpg", "secret": "31a2852e76", "media": "photo", "latitude": "0", "id": "4282415917", "tags": "southcarolina pedro southoftheborder benbernakeinterchange"}, {"datetaken": "2010-01-17 14:14:03", "license": "2", "title": "Pedro's HOTDOGS", "text": "", "album_id": "72157623230626204", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4282417107_9666a949b6_o.jpg", "secret": "a502055f50", "media": "photo", "latitude": "0", "id": "4282417107", "tags": "southcarolina pedro southoftheborder benbernakeinterchange"}, {"datetaken": "2010-01-17 14:14:25", "license": "2", "title": "Pedros Coffee Shop", "text": "", "album_id": "72157623230626204", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4283162438_0537da1b22_o.jpg", "secret": "6ce1f28983", "media": "photo", "latitude": "0", "id": "4283162438", "tags": "southcarolina pedro southoftheborder benbernakeinterchange"}, {"datetaken": "2010-01-17 14:14:48", "license": "2", "title": "Pedro - Mosaic Style", "text": "", "album_id": "72157623230626204", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4283163604_f2a523ee6a_o.jpg", "secret": "d8c8a50e26", "media": "photo", "latitude": "0", "id": "4283163604", "tags": "southcarolina pedro southoftheborder benbernakeinterchange"}, {"datetaken": "2010-01-17 14:15:10", "license": "2", "title": "Pedros Shop", "text": "", "album_id": "72157623230626204", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4282420359_42179b15d1_o.jpg", "secret": "65e91f457d", "media": "photo", "latitude": "0", "id": "4282420359", "tags": "southcarolina pedro southoftheborder benbernakeinterchange"}, {"datetaken": "2003-08-04 11:29:28", "license": "2", "title": "Bike", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9706640_a621ba3841_o.jpg", "secret": "a621ba3841", "media": "photo", "latitude": "0", "id": "9706640", "tags": "ontario unclericksfleamarket"}, {"datetaken": "2003-08-04 11:29:52", "license": "2", "title": "Uncle Rick's Flea Market", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9706650_cef295b602_o.jpg", "secret": "cef295b602", "media": "photo", "latitude": "0", "id": "9706650", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:30:08", "license": "2", "title": "Uncle Rick's Flea Market", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9706668_f1c74a1860_o.jpg", "secret": "f1c74a1860", "media": "photo", "latitude": "0", "id": "9706668", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:30:21", "license": "2", "title": "Uncle Rick's Flea Market", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9706685_58e1fe07b0_o.jpg", "secret": "58e1fe07b0", "media": "photo", "latitude": "0", "id": "9706685", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:30:30", "license": "2", "title": "Uncle Rick's Flea Market", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9706691_d4492ea388_o.jpg", "secret": "d4492ea388", "media": "photo", "latitude": "0", "id": "9706691", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:30:41", "license": "2", "title": "Uncle Rick's Flea Market", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9706700_4c2be551de_o.jpg", "secret": "4c2be551de", "media": "photo", "latitude": "0", "id": "9706700", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:31:00", "license": "2", "title": "Uncle Rick's Flea Market", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9706709_468ddc9974_o.jpg", "secret": "468ddc9974", "media": "photo", "latitude": "0", "id": "9706709", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:31:15", "license": "2", "title": "Too fast wheelchair", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9706724_0700883419_o.jpg", "secret": "0700883419", "media": "photo", "latitude": "0", "id": "9706724", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:31:24", "license": "2", "title": "Uncle Rick's Flea Market", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9706726_d95cabf143_o.jpg", "secret": "d95cabf143", "media": "photo", "latitude": "0", "id": "9706726", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:31:39", "license": "2", "title": "Old shovels", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9706738_dd93b30894_o.jpg", "secret": "dd93b30894", "media": "photo", "latitude": "0", "id": "9706738", "tags": "unclericksfleamarket ontario rusty"}, {"datetaken": "2003-08-04 11:32:19", "license": "2", "title": "Trunks", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9706755_ab5cbae890_o.jpg", "secret": "ab5cbae890", "media": "photo", "latitude": "0", "id": "9706755", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:32:33", "license": "2", "title": "Trunk Stack", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9706769_eb0f1c967a_o.jpg", "secret": "eb0f1c967a", "media": "photo", "latitude": "0", "id": "9706769", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:32:58", "license": "2", "title": "Rabbits", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9706790_6fa2b9bba0_o.jpg", "secret": "6fa2b9bba0", "media": "photo", "latitude": "0", "id": "9706790", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:35:14", "license": "2", "title": "Uncle Rick's Flea Market", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9706798_836a7b8f16_o.jpg", "secret": "836a7b8f16", "media": "photo", "latitude": "0", "id": "9706798", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:35:36", "license": "2", "title": "Uncle Rick's Flea Market", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9706818_6f3629ac87_o.jpg", "secret": "6f3629ac87", "media": "photo", "latitude": "0", "id": "9706818", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:36:25", "license": "2", "title": "Uncle Rick's Flea Market", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9706843_c0bfc58c16_o.jpg", "secret": "c0bfc58c16", "media": "photo", "latitude": "0", "id": "9706843", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:36:48", "license": "2", "title": "Uncle Rick's Flea Market", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9706863_52148826a5_o.jpg", "secret": "52148826a5", "media": "photo", "latitude": "0", "id": "9706863", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:37:50", "license": "2", "title": "Old Pram", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9706877_d596eaac9d_o.jpg", "secret": "d596eaac9d", "media": "photo", "latitude": "0", "id": "9706877", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:38:09", "license": "2", "title": "Sweet Painting", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9706899_6ddd797d3b_o.jpg", "secret": "6ddd797d3b", "media": "photo", "latitude": "0", "id": "9706899", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:41:45", "license": "2", "title": "Dwarf Lamp", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9706906_bfee33a450_o.jpg", "secret": "bfee33a450", "media": "photo", "latitude": "0", "id": "9706906", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:42:55", "license": "2", "title": "Parrot Diapers", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9706913_c54b4e966c_o.jpg", "secret": "c54b4e966c", "media": "photo", "latitude": "0", "id": "9706913", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2003-08-04 11:43:59", "license": "2", "title": "Uncle Rick's Flea Market", "text": "", "album_id": "240060", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9706921_3ae07fd056_o.jpg", "secret": "3ae07fd056", "media": "photo", "latitude": "0", "id": "9706921", "tags": "unclericksfleamarket ontario"}, {"datetaken": "2010-04-25 11:31:59", "license": "5", "title": "\u5929\u6d25", "text": "", "album_id": "72157624083813322", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4617020203_ed2fdb81de_o.jpg", "secret": "5d3103465e", "media": "photo", "latitude": "0", "id": "4617020203", "tags": "travel photo pix \u98ce\u666f \u5929\u6d25 \u6d77\u68e0"}, {"datetaken": "2010-04-25 11:32:24", "license": "5", "title": "\u5929\u6d25", "text": "", "album_id": "72157624083813322", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4617634816_e9d763a857_o.jpg", "secret": "a8dca425e6", "media": "photo", "latitude": "0", "id": "4617634816", "tags": "travel photo pix \u98ce\u666f \u5929\u6d25 \u6d77\u68e0"}, {"datetaken": "2010-04-25 11:36:21", "license": "5", "title": "\u5929\u6d25", "text": "", "album_id": "72157624083813322", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4617020385_a4a8d6caef_o.jpg", "secret": "d74f608fd6", "media": "photo", "latitude": "0", "id": "4617020385", "tags": "travel photo pix \u98ce\u666f \u5929\u6d25 \u6d77\u68e0"}, {"datetaken": "2010-04-25 13:00:17", "license": "5", "title": "\u5929\u6d25", "text": "", "album_id": "72157624083813322", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4617020781_b2281e627a_o.jpg", "secret": "c703ec7889", "media": "photo", "latitude": "0", "id": "4617020781", "tags": "travel photo pix \u98ce\u666f \u5929\u6d25 \u6d77\u68e0"}, {"datetaken": "2010-04-25 13:07:33", "license": "5", "title": "\u5929\u6d25", "text": "", "album_id": "72157624083813322", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3549/4617020979_11d23d6cbf_o.jpg", "secret": "4fdfb93655", "media": "photo", "latitude": "0", "id": "4617020979", "tags": "travel photo pix \u98ce\u666f \u5929\u6d25 \u6d77\u68e0"}, {"datetaken": "2010-04-25 17:23:07", "license": "5", "title": "\u5929\u6d25", "text": "", "album_id": "72157624083813322", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4617021181_f12315abd3_o.jpg", "secret": "86d278d53b", "media": "photo", "latitude": "0", "id": "4617021181", "tags": "travel photo pix \u98ce\u666f \u5929\u6d25 \u6d77\u68e0"}, {"datetaken": "2010-04-25 17:53:04", "license": "5", "title": "\u5929\u6d25", "text": "", "album_id": "72157624083813322", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4617021297_f13df12e7f_o.jpg", "secret": "f1b94feb9a", "media": "photo", "latitude": "0", "id": "4617021297", "tags": "travel photo pix \u98ce\u666f \u5929\u6d25 \u6d77\u68e0"}, {"datetaken": "2010-04-26 14:42:28", "license": "5", "title": "\u5929\u6d25", "text": "", "album_id": "72157624083813322", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4617635692_3e9357a930_o.jpg", "secret": "5464c03f77", "media": "photo", "latitude": "0", "id": "4617635692", "tags": "travel photo pix \u98ce\u666f \u5929\u6d25 \u6d77\u68e0"}, {"datetaken": "2010-04-26 15:24:26", "license": "5", "title": "\u5929\u6d25", "text": "", "album_id": "72157624083813322", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4617635908_f8d319d147_o.jpg", "secret": "2f2a77442c", "media": "photo", "latitude": "0", "id": "4617635908", "tags": "travel photo pix \u98ce\u666f \u5929\u6d25 \u6d77\u68e0"}, {"datetaken": "2010-04-26 16:49:16", "license": "5", "title": "\u5929\u6d25", "text": "", "album_id": "72157624083813322", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3408/4617021895_c84f04b3ca_o.jpg", "secret": "0e3c2bfd54", "media": "photo", "latitude": "0", "id": "4617021895", "tags": "travel photo pix \u98ce\u666f \u5929\u6d25 \u6d77\u68e0"}, {"datetaken": "2010-04-26 17:00:51", "license": "5", "title": "\u5929\u6d25", "text": "", "album_id": "72157624083813322", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4617636400_08cb238234_o.jpg", "secret": "ccf43f38da", "media": "photo", "latitude": "0", "id": "4617636400", "tags": "travel photo pix \u98ce\u666f \u5929\u6d25 \u6d77\u68e0"}, {"datetaken": "2010-12-17 18:32:43", "license": "3", "title": "20102174", "text": "", "album_id": "72157625491301953", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5286/5268189657_5c406be646_o.jpg", "secret": "f4e7f5794c", "media": "photo", "latitude": "0", "id": "5268189657", "tags": ""}, {"datetaken": "2010-12-17 18:33:52", "license": "3", "title": "20102175", "text": "", "album_id": "72157625491301953", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5003/5268196759_3efa8cb886_o.jpg", "secret": "e84e2107fe", "media": "photo", "latitude": "0", "id": "5268196759", "tags": ""}, {"datetaken": "2010-12-17 18:44:58", "license": "3", "title": "20102194", "text": "", "album_id": "72157625491301953", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5129/5268814744_689f513cd4_o.jpg", "secret": "8c08443bc5", "media": "photo", "latitude": "0", "id": "5268814744", "tags": ""}, {"datetaken": "2010-12-17 18:45:19", "license": "3", "title": "20102196", "text": "", "album_id": "72157625491301953", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5163/5268214145_275bc0231c_o.jpg", "secret": "d7e07b2f3c", "media": "photo", "latitude": "0", "id": "5268214145", "tags": ""}, {"datetaken": "2010-12-17 18:46:18", "license": "3", "title": "20102198", "text": "", "album_id": "72157625491301953", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5125/5268835130_89dfb340be_o.jpg", "secret": "f298547f53", "media": "photo", "latitude": "0", "id": "5268835130", "tags": ""}, {"datetaken": "2010-12-17 18:46:52", "license": "3", "title": "20102208", "text": "", "album_id": "72157625491301953", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5282/5268844042_d3b33e6c6d_o.jpg", "secret": "3c9ac7a773", "media": "photo", "latitude": "0", "id": "5268844042", "tags": ""}, {"datetaken": "2010-12-17 19:00:16", "license": "3", "title": "20102213", "text": "", "album_id": "72157625491301953", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5049/5268244091_b8a7d44461_o.jpg", "secret": "f914c920b0", "media": "photo", "latitude": "0", "id": "5268244091", "tags": ""}, {"datetaken": "2010-12-17 19:00:30", "license": "3", "title": "20102216", "text": "", "album_id": "72157625491301953", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5087/5268251141_29f595f9f9_o.jpg", "secret": "25e7d4270e", "media": "photo", "latitude": "0", "id": "5268251141", "tags": ""}, {"datetaken": "2010-12-17 19:08:39", "license": "3", "title": "20102220", "text": "", "album_id": "72157625491301953", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5087/5268866052_28a92cf1dd_o.jpg", "secret": "56309bef4f", "media": "photo", "latitude": "0", "id": "5268866052", "tags": ""}, {"datetaken": "2010-12-17 19:10:45", "license": "3", "title": "20102221", "text": "", "album_id": "72157625491301953", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5121/5268868928_6cf380627b_o.jpg", "secret": "385317f2d9", "media": "photo", "latitude": "0", "id": "5268868928", "tags": ""}, {"datetaken": "2010-12-07 14:59:39", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5282/5267768843_406792796a_o.jpg", "secret": "b4340d163a", "media": "photo", "latitude": "0", "id": "5267768843", "tags": "disneyland disneylandchristmastree"}, {"datetaken": "2010-12-07 15:19:35", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5202/5268379262_ff40cd9d50_o.jpg", "secret": "1ab774c8de", "media": "photo", "latitude": "0", "id": "5268379262", "tags": "disneyland itsasmallworldholiday smallworldholiday smallworldchristmas itsasmallworldchristmas"}, {"datetaken": "2010-12-07 15:26:32", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5122/5268380352_c925aa6b70_o.jpg", "secret": "7e12cfa61a", "media": "photo", "latitude": "0", "id": "5268380352", "tags": "disneyland itsasmallworldholiday smallworldholiday smallworldchristmas itsasmallworldchristmas"}, {"datetaken": "2010-12-07 15:27:15", "license": "1", "title": "To The North Pole", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5087/5267771989_4d77602e73_o.jpg", "secret": "c64cb2ae57", "media": "photo", "latitude": "0", "id": "5267771989", "tags": "disneyland northpole itsasmallworldholiday smallworldholiday smallworldchristmas itsasmallworldchristmas northpolesign"}, {"datetaken": "2010-12-07 15:35:36", "license": "1", "title": "Lilo and Stitch Surfing", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5008/5267773007_95290dab30_o.jpg", "secret": "eb01a15af9", "media": "photo", "latitude": "0", "id": "5267773007", "tags": "disneyland liloandstitch itsasmallworldholiday smallworldholiday smallworldchristmas itsasmallworldchristmas smallworldliloandstitch"}, {"datetaken": "2010-12-07 15:35:37", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5288/5267774089_6b99a9d4da_o.jpg", "secret": "e8855514c1", "media": "photo", "latitude": "0", "id": "5267774089", "tags": "disneyland liloandstitch itsasmallworldholiday smallworldholiday smallworldchristmas itsasmallworldchristmas smallworldliloandstitch"}, {"datetaken": "2010-12-07 15:35:42", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5088/5267775219_6f79819c44_o.jpg", "secret": "2a4b8a2189", "media": "photo", "latitude": "0", "id": "5267775219", "tags": "disneyland itsasmallworldholiday smallworldholiday smallworldchristmas itsasmallworldchristmas findingnemosmallworld"}, {"datetaken": "2010-12-07 15:36:18", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5122/5268386394_8acf96483d_o.jpg", "secret": "35249f348a", "media": "photo", "latitude": "0", "id": "5268386394", "tags": "disneyland itsasmallworldholiday smallworldholiday smallworldchristmas itsasmallworldchristmas"}, {"datetaken": "2010-12-07 15:38:06", "license": "1", "title": "Peace on Earth", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5283/5268387328_e581474afc_o.jpg", "secret": "616a57bbaa", "media": "photo", "latitude": "0", "id": "5268387328", "tags": "disneyland itsasmallworldholiday smallworldholiday smallworldchristmas itsasmallworldchristmas"}, {"datetaken": "2010-12-07 15:54:12", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5050/5267778825_680866fe4f_o.jpg", "secret": "b29e57d9dd", "media": "photo", "latitude": "0", "id": "5267778825", "tags": "disneyland disneylandchristmas"}, {"datetaken": "2010-12-07 16:57:43", "license": "1", "title": "Woody Drawing", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5045/5267781413_6e84575f7d_o.jpg", "secret": "6b168613d5", "media": "photo", "latitude": "0", "id": "5267781413", "tags": "disneyland woody toystorywoody toystorymaniawoody"}, {"datetaken": "2010-12-07 17:11:45", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5164/5267783555_5ac49385fc_o.jpg", "secret": "5e6ed59e7b", "media": "photo", "latitude": "0", "id": "5267783555", "tags": "disneyland grandcalifornianchristmastree grandcaliforniachristmastree"}, {"datetaken": "2010-12-07 17:12:45", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5085/5268394104_42ee87257d_o.jpg", "secret": "599df7b0ae", "media": "photo", "latitude": "0", "id": "5268394104", "tags": "disneyland grandcalifornianchristmastree grandcaliforniachristmastree"}, {"datetaken": "2010-12-07 17:14:38", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5247/5268395166_16314a5945_o.jpg", "secret": "832f4bb7d6", "media": "photo", "latitude": "0", "id": "5268395166", "tags": "disneyland grandcalifornianchristmastree grandcaliforniachristmastree"}, {"datetaken": "2010-12-07 17:33:44", "license": "1", "title": "Disney Seasons Greetings", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5244/5268436954_c0268cc868_o.jpg", "secret": "5913323b92", "media": "photo", "latitude": "0", "id": "5268436954", "tags": "disneyland christmasornament seasonsgreetings disneyornament"}, {"datetaken": "2010-12-07 18:31:50", "license": "1", "title": "Pixie Hollow", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5086/5268398202_8294c1f3bd_o.jpg", "secret": "9ae0ab95c6", "media": "photo", "latitude": "0", "id": "5268398202", "tags": "disneyland pixiehollow"}, {"datetaken": "2010-12-07 18:56:28", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5285/5268399264_a25d5385a0_o.jpg", "secret": "df8decc5be", "media": "photo", "latitude": "0", "id": "5268399264", "tags": "disneyland disneylandchristmas"}, {"datetaken": "2010-12-07 20:05:13", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5202/5267790763_84983fe43f_o.jpg", "secret": "21d3f484ed", "media": "photo", "latitude": "0", "id": "5267790763", "tags": "disneyland sleepingbeautycastle disneylandcastle sleepingbeautycastlechristmas"}, {"datetaken": "2010-12-07 20:08:01", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5122/5267791575_18de7ffef6_o.jpg", "secret": "27aa7091d9", "media": "photo", "latitude": "0", "id": "5267791575", "tags": "disneyland sleepingbeautycastle disneylandcastle sleepingbeautycastlechristmas"}, {"datetaken": "2010-12-07 20:10:22", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5283/5268402096_8b5d506531_o.jpg", "secret": "37c599a9e2", "media": "photo", "latitude": "0", "id": "5268402096", "tags": "disneyland sleepingbeautycastle disneylandcastle sleepingbeautycastlechristmas"}, {"datetaken": "2010-12-07 20:12:40", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5283/5267793633_95dd02951a_o.jpg", "secret": "ac424fbd91", "media": "photo", "latitude": "0", "id": "5267793633", "tags": "disneyland sleepingbeautycastle disneylandcastle sleepingbeautycastlechristmas"}, {"datetaken": "2010-12-07 20:34:49", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5161/5268403938_a04eb28c35_o.jpg", "secret": "b3d3f2b7a2", "media": "photo", "latitude": "0", "id": "5268403938", "tags": "fireworks disneyland sleepingbeautycastle disneylandcastle disneylandfireworks sleepingbeautycastlechristmas sleepingbeautycastlefireworks disneylandcastlefireworks disneylandchristmasfireworks"}, {"datetaken": "2010-12-07 20:38:10", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5208/5267795463_497994d562_o.jpg", "secret": "b3b511ae04", "media": "photo", "latitude": "0", "id": "5267795463", "tags": "fireworks disneyland sleepingbeautycastle disneylandcastle disneylandfireworks sleepingbeautycastlechristmas sleepingbeautycastlefireworks disneylandcastlefireworks disneylandchristmasfireworks"}, {"datetaken": "2010-12-07 20:38:12", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5162/5267796287_3302475281_o.jpg", "secret": "9d7dc916d2", "media": "photo", "latitude": "0", "id": "5267796287", "tags": "fireworks disneyland sleepingbeautycastle disneylandcastle disneylandfireworks sleepingbeautycastlechristmas sleepingbeautycastlefireworks disneylandcastlefireworks disneylandchristmasfireworks"}, {"datetaken": "2010-12-07 20:38:18", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5081/5268406864_96a70d7a6f_o.jpg", "secret": "16a182ee5b", "media": "photo", "latitude": "0", "id": "5268406864", "tags": "fireworks disneyland sleepingbeautycastle disneylandcastle disneylandfireworks sleepingbeautycastlechristmas sleepingbeautycastlefireworks disneylandcastlefireworks disneylandchristmasfireworks"}, {"datetaken": "2010-12-07 20:38:33", "license": "1", "title": "", "text": "", "album_id": "72157625615827438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5046/5267798077_8fdfc129ee_o.jpg", "secret": "a2a2b8c05e", "media": "photo", "latitude": "0", "id": "5267798077", "tags": "fireworks disneyland sleepingbeautycastle disneylandcastle disneylandfireworks sleepingbeautycastlechristmas sleepingbeautycastlefireworks disneylandcastlefireworks disneylandchristmasfireworks"}, {"datetaken": "2010-02-18 20:56:39", "license": "4", "title": "Bagh-e Eram", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4369488922_e4f0113404_o.jpg", "secret": "81b7739ecd", "media": "photo", "latitude": "0", "id": "4369488922", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:56:39", "license": "4", "title": "Bagh-e Eram", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4368740313_9d72a02c5d_o.jpg", "secret": "2efd219ce7", "media": "photo", "latitude": "0", "id": "4368740313", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:56:40", "license": "4", "title": "Bagh-e Eram", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4368740365_9e9976cfd1_o.jpg", "secret": "4e76e50677", "media": "photo", "latitude": "0", "id": "4368740365", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:56:40", "license": "4", "title": "Bagh-e Eram", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4369489098_db3dd978c6_o.jpg", "secret": "d37350356d", "media": "photo", "latitude": "0", "id": "4369489098", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:56:41", "license": "4", "title": "Tomb of Saadi", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4368740485_9d698bb175_o.jpg", "secret": "e9966028dd", "media": "photo", "latitude": "0", "id": "4368740485", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:56:42", "license": "4", "title": "Tomb of Saadi", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4368740553_47fe9ef725_o.jpg", "secret": "8587d93db4", "media": "photo", "latitude": "0", "id": "4368740553", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:56:44", "license": "4", "title": "Tomb of Saadi", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4369489274_6831b77635_o.jpg", "secret": "16d1eff528", "media": "photo", "latitude": "0", "id": "4369489274", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:56:46", "license": "4", "title": "Tomb of Hafez", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2791/4369489342_1db7482a95_o.jpg", "secret": "f6f9a24817", "media": "photo", "latitude": "0", "id": "4369489342", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:56:51", "license": "4", "title": "The Qur'an Gate", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4369489410_a01442e07a_o.jpg", "secret": "52fbb33d45", "media": "photo", "latitude": "0", "id": "4369489410", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:56:54", "license": "4", "title": "The Qur'an Gate", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4368740771_9d5cdb42d6_o.jpg", "secret": "4f93370c1e", "media": "photo", "latitude": "0", "id": "4368740771", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:56:56", "license": "4", "title": "Vakil Bazaar", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4368740843_843705162e_o.jpg", "secret": "1b88e339a9", "media": "photo", "latitude": "0", "id": "4368740843", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:56:58", "license": "4", "title": "Arg-e Karim Khan", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2702/4369489630_09501c7097_o.jpg", "secret": "e5fbe861ba", "media": "photo", "latitude": "0", "id": "4369489630", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:57:00", "license": "4", "title": "Arg-e Karim Khan", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4369489704_cc85f67de0_o.jpg", "secret": "001ddc9f31", "media": "photo", "latitude": "0", "id": "4369489704", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:57:01", "license": "4", "title": "Arg-e Karim Khan", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4369489748_e4b297c2c2_o.jpg", "secret": "f9a3237e2f", "media": "photo", "latitude": "0", "id": "4369489748", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:57:02", "license": "4", "title": "Vakil Mosque", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4369489854_19076bb62e_o.jpg", "secret": "09ab7d3afc", "media": "photo", "latitude": "0", "id": "4369489854", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:57:03", "license": "4", "title": "Vakil Mosque", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4369489910_82d5316cb1_o.jpg", "secret": "83345c7337", "media": "photo", "latitude": "0", "id": "4369489910", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:57:09", "license": "4", "title": "Narenjestan-e Ghavam", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4369489956_1efd978dcd_o.jpg", "secret": "097511fff9", "media": "photo", "latitude": "0", "id": "4369489956", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:57:09", "license": "4", "title": "Naqsh-e Rustam", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2694/4368741399_82894fe123_o.jpg", "secret": "cd70da3fae", "media": "photo", "latitude": "0", "id": "4368741399", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:57:10", "license": "4", "title": "Naqsh-e Rustam", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4368741463_bd5aec5ca6_o.jpg", "secret": "e1422364bb", "media": "photo", "latitude": "0", "id": "4368741463", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:57:12", "license": "4", "title": "Persepolis", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4369490142_aa267f095f_o.jpg", "secret": "5165a87f58", "media": "photo", "latitude": "0", "id": "4369490142", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:57:13", "license": "4", "title": "Persepolis", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4369490190_87fcbaeaee_o.jpg", "secret": "bcabc1468a", "media": "photo", "latitude": "0", "id": "4369490190", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:57:14", "license": "4", "title": "Persepolis", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4368741661_0567ca4860_o.jpg", "secret": "1496aff540", "media": "photo", "latitude": "0", "id": "4368741661", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:57:14", "license": "4", "title": "Persepolis", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4369490346_b32f0b1098_o.jpg", "secret": "301c7b3c4b", "media": "photo", "latitude": "0", "id": "4369490346", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:57:17", "license": "4", "title": "Persepolis", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4369490430_208c2d1201_o.jpg", "secret": "9fb3ec9cb0", "media": "photo", "latitude": "0", "id": "4369490430", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:57:18", "license": "4", "title": "Persepolis", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4368741893_fc7d0d6c18_o.jpg", "secret": "37657c39ec", "media": "photo", "latitude": "0", "id": "4368741893", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:57:20", "license": "4", "title": "Persepolis", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4368741973_d99e0b658b_o.jpg", "secret": "c80db72bd6", "media": "photo", "latitude": "0", "id": "4368741973", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:57:23", "license": "4", "title": "Persepolis", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4368742073_20ebfa7568_o.jpg", "secret": "2ae95cfa5a", "media": "photo", "latitude": "0", "id": "4368742073", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-02-18 20:57:24", "license": "4", "title": "Persepolis", "text": "", "album_id": "72157623463687412", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4368742159_c10b7c7d84_o.jpg", "secret": "9617a3dd70", "media": "photo", "latitude": "0", "id": "4368742159", "tags": "iran shiraz \u0634\u06cc\u0631\u0627\u0632"}, {"datetaken": "2010-09-17 18:14:41", "license": "2", "title": "DSC04722", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/5001916365_51709318d3_o.jpg", "secret": "5f1f398c95", "media": "photo", "latitude": "0", "id": "5001916365", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-17 18:14:59", "license": "2", "title": "DSC04723", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/5001919233_0e3e2bbed8_o.jpg", "secret": "57833de160", "media": "photo", "latitude": "0", "id": "5001919233", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-17 18:15:29", "license": "2", "title": "DSC04724", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/5001920537_777762916e_o.jpg", "secret": "e759e98618", "media": "photo", "latitude": "0", "id": "5001920537", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-17 18:16:51", "license": "2", "title": "DSC04725", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/5002527254_6dc25fe35b_o.jpg", "secret": "c2d1b8eb8e", "media": "photo", "latitude": "0", "id": "5002527254", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-17 18:17:31", "license": "2", "title": "DSC04726", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/5002529708_fb531ff1aa_o.jpg", "secret": "b1ee0dbc5f", "media": "photo", "latitude": "0", "id": "5002529708", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-17 18:17:48", "license": "2", "title": "DSC04727", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4130/5001927373_0ba5a991e9_o.jpg", "secret": "8c8591f8fd", "media": "photo", "latitude": "0", "id": "5001927373", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-17 18:25:45", "license": "2", "title": "DSC04728", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/5001928513_9205fdd46b_o.jpg", "secret": "2ed120fb04", "media": "photo", "latitude": "0", "id": "5001928513", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-17 18:28:04", "license": "2", "title": "DSC04729", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4083/5002534494_4c4281eeae_o.jpg", "secret": "21940fb0a4", "media": "photo", "latitude": "0", "id": "5002534494", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-17 18:37:08", "license": "2", "title": "DSC04730", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/5001932195_4a4f9df252_o.jpg", "secret": "2c066cf516", "media": "photo", "latitude": "0", "id": "5001932195", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-17 19:09:44", "license": "2", "title": "DSC04732", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4087/5001933867_f1f68857ab_o.jpg", "secret": "b8009dcc10", "media": "photo", "latitude": "0", "id": "5001933867", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-17 19:11:05", "license": "2", "title": "DSC04733", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/5001936045_ef957e163b_o.jpg", "secret": "c4f0e9f781", "media": "photo", "latitude": "0", "id": "5001936045", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-17 19:19:55", "license": "2", "title": "DSC04734", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4149/5002542872_20dbb2f3f0_o.jpg", "secret": "f3487554e2", "media": "photo", "latitude": "0", "id": "5002542872", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-17 19:20:09", "license": "2", "title": "DSC04735", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/5001939887_b17cce3484_o.jpg", "secret": "41b50f4fa2", "media": "photo", "latitude": "0", "id": "5001939887", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-17 19:30:55", "license": "2", "title": "DSC04737", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/5001942289_9138dcc610_o.jpg", "secret": "caa24bc03a", "media": "photo", "latitude": "0", "id": "5001942289", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-17 19:31:11", "license": "2", "title": "DSC04738", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/5002549174_82969e3301_o.jpg", "secret": "e0f03d2813", "media": "photo", "latitude": "0", "id": "5002549174", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-17 19:42:58", "license": "2", "title": "DSC04740", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/5002551550_0436e2d85e_o.jpg", "secret": "86180dc22c", "media": "photo", "latitude": "0", "id": "5002551550", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-17 21:03:46", "license": "2", "title": "DSC04742", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/5001949029_9db0ac849e_o.jpg", "secret": "07d0f3dce4", "media": "photo", "latitude": "0", "id": "5001949029", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-17 21:13:37", "license": "2", "title": "DSC04744", "text": "", "album_id": "72157624983879722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4130/5002554500_f30db6e53d_o.jpg", "secret": "8224f690da", "media": "photo", "latitude": "0", "id": "5002554500", "tags": "santacruz countyfair santacruzcountyfair"}, {"datetaken": "2010-09-04 16:35:11", "license": "2", "title": "091", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/5003381000_9ae14de73d_o.jpg", "secret": "988fb692f5", "media": "photo", "latitude": "0", "id": "5003381000", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 16:48:07", "license": "2", "title": "092", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/5003384448_874f6207f7_o.jpg", "secret": "f6bbfb00a8", "media": "photo", "latitude": "0", "id": "5003384448", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 16:48:14", "license": "2", "title": "093", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4087/5002779691_4d4b9568fc_o.jpg", "secret": "c14723cee0", "media": "photo", "latitude": "0", "id": "5002779691", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 16:48:31", "license": "2", "title": "094", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4154/5002781107_b39ec0caa8_o.jpg", "secret": "9a28391fd1", "media": "photo", "latitude": "0", "id": "5002781107", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 16:49:59", "license": "2", "title": "095", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/5003390380_73ea07895f_o.jpg", "secret": "95d8288c21", "media": "photo", "latitude": "0", "id": "5003390380", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 16:50:20", "license": "2", "title": "096", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/5003395680_f6a72d67e6_o.jpg", "secret": "cc58dc3cae", "media": "photo", "latitude": "0", "id": "5003395680", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 16:52:33", "license": "2", "title": "097", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/5003399606_9ae1c92bc4_o.jpg", "secret": "8185765995", "media": "photo", "latitude": "0", "id": "5003399606", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 16:52:49", "license": "2", "title": "098", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/5003401638_3969b7c975_o.jpg", "secret": "71b5e84712", "media": "photo", "latitude": "0", "id": "5003401638", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 16:56:42", "license": "2", "title": "099", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/5003402916_e0614a8981_o.jpg", "secret": "f3c2b5afe6", "media": "photo", "latitude": "0", "id": "5003402916", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 17:22:23", "license": "2", "title": "100", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/5003404730_15a7770fae_o.jpg", "secret": "548445f18b", "media": "photo", "latitude": "0", "id": "5003404730", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 17:22:28", "license": "2", "title": "101", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/5002799343_eff0691fa4_o.jpg", "secret": "75b9a73edf", "media": "photo", "latitude": "0", "id": "5002799343", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 17:23:53", "license": "2", "title": "102", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/5003408940_d374465717_o.jpg", "secret": "e27a3685cd", "media": "photo", "latitude": "0", "id": "5003408940", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 17:29:12", "license": "2", "title": "103", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4083/5002802211_ba913fd5be_o.jpg", "secret": "bf37858a16", "media": "photo", "latitude": "0", "id": "5002802211", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 17:29:19", "license": "2", "title": "104", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/5002803601_458fc91879_o.jpg", "secret": "cc6dd26db7", "media": "photo", "latitude": "0", "id": "5002803601", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 17:29:25", "license": "2", "title": "105", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/5003412638_46b061055c_o.jpg", "secret": "e262e8c63b", "media": "photo", "latitude": "0", "id": "5003412638", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 17:44:33", "license": "2", "title": "106", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/5002806363_aa06cf67ab_o.jpg", "secret": "5757658b46", "media": "photo", "latitude": "0", "id": "5002806363", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 17:45:02", "license": "2", "title": "107", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/5003415288_664f85cbb9_o.jpg", "secret": "bfdf007c61", "media": "photo", "latitude": "0", "id": "5003415288", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 17:46:10", "license": "2", "title": "108", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/5003416744_d2d0050297_o.jpg", "secret": "ab9550240a", "media": "photo", "latitude": "0", "id": "5003416744", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 17:46:13", "license": "2", "title": "109", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/5002810507_32a140a9fb_o.jpg", "secret": "5128924d80", "media": "photo", "latitude": "0", "id": "5002810507", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 19:28:11", "license": "2", "title": "110", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/5003419804_94a90298fb_o.jpg", "secret": "16fe5430b4", "media": "photo", "latitude": "0", "id": "5003419804", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 19:28:18", "license": "2", "title": "111", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/5003421624_a7acb0a40e_o.jpg", "secret": "d1d3f8a4b9", "media": "photo", "latitude": "0", "id": "5003421624", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 21:29:55", "license": "2", "title": "112", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4091/5002816047_0ee2615753_o.jpg", "secret": "4ca40cc258", "media": "photo", "latitude": "0", "id": "5002816047", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 21:53:57", "license": "2", "title": "113", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4144/5002817133_b1798de811_o.jpg", "secret": "17732c4f5d", "media": "photo", "latitude": "0", "id": "5002817133", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 21:54:05", "license": "2", "title": "114", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/5003425634_fd924e127a_o.jpg", "secret": "679c35d225", "media": "photo", "latitude": "0", "id": "5003425634", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-09-04 21:56:01", "license": "2", "title": "115", "text": "", "album_id": "72157624986160830", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/5003426920_4d912aba8e_o.jpg", "secret": "78a2230ae4", "media": "photo", "latitude": "0", "id": "5003426920", "tags": "ny newyork brooklyn coneyisland"}, {"datetaken": "2010-08-09 18:45:05", "license": "4", "title": "IMG_0120", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4906491205_e37852cc34_o.jpg", "secret": "8f51c8a3e6", "media": "photo", "latitude": "0", "id": "4906491205", "tags": "london"}, {"datetaken": "2010-08-09 18:58:22", "license": "4", "title": "IMG_0123", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4906491375_6af1acd6b8_o.jpg", "secret": "3de3052bcf", "media": "photo", "latitude": "0", "id": "4906491375", "tags": "london"}, {"datetaken": "2010-08-09 18:59:19", "license": "4", "title": "IMG_0125", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4907079736_0029f61af1_o.jpg", "secret": "aac9a5611c", "media": "photo", "latitude": "0", "id": "4907079736", "tags": "london"}, {"datetaken": "2010-08-09 19:04:07", "license": "4", "title": "IMG_0128", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4907079860_c1e047cc01_o.jpg", "secret": "3fbfc552dc", "media": "photo", "latitude": "0", "id": "4907079860", "tags": "london"}, {"datetaken": "2010-08-09 19:21:09", "license": "4", "title": "IMG_0141", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4907080060_f101664662_o.jpg", "secret": "50aa4cbdaa", "media": "photo", "latitude": "0", "id": "4907080060", "tags": "london"}, {"datetaken": "2010-08-09 19:22:13", "license": "4", "title": "IMG_0144", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4907080278_2fdaf27c19_o.jpg", "secret": "bff514415c", "media": "photo", "latitude": "0", "id": "4907080278", "tags": "london"}, {"datetaken": "2010-08-09 19:22:38", "license": "4", "title": "IMG_0145", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4906492249_f9beff1943_o.jpg", "secret": "54a867e939", "media": "photo", "latitude": "0", "id": "4906492249", "tags": "london"}, {"datetaken": "2010-08-09 20:49:15", "license": "4", "title": "IMG_0160", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4906492389_ea4e72484e_o.jpg", "secret": "a7562385e6", "media": "photo", "latitude": "0", "id": "4906492389", "tags": "london"}, {"datetaken": "2010-08-09 20:51:53", "license": "4", "title": "IMG_0163", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4906492657_165d228aab_o.jpg", "secret": "9edc096574", "media": "photo", "latitude": "0", "id": "4906492657", "tags": "london"}, {"datetaken": "2010-08-09 20:52:45", "license": "4", "title": "IMG_0165", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4906492903_5d31e70f72_o.jpg", "secret": "f73bfd8d12", "media": "photo", "latitude": "0", "id": "4906492903", "tags": "london"}, {"datetaken": "2010-08-09 20:53:20", "license": "4", "title": "IMG_0167", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4907081174_7fd7857ca4_o.jpg", "secret": "a2884bea1b", "media": "photo", "latitude": "0", "id": "4907081174", "tags": "london"}, {"datetaken": "2010-08-09 20:58:23", "license": "4", "title": "IMG_0176", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4907081296_ae88f2a9fe_o.jpg", "secret": "135de9b39c", "media": "photo", "latitude": "0", "id": "4907081296", "tags": "london"}, {"datetaken": "2010-08-09 21:08:56", "license": "4", "title": "IMG_0186", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4906493371_c010361014_o.jpg", "secret": "3ab1c913b5", "media": "photo", "latitude": "0", "id": "4906493371", "tags": "london dragon cannon"}, {"datetaken": "2010-08-09 21:17:10", "license": "4", "title": "IMG_0192", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4906493559_0895ffe600_o.jpg", "secret": "ab8bab1467", "media": "photo", "latitude": "0", "id": "4906493559", "tags": "london"}, {"datetaken": "2010-08-09 21:24:42", "license": "4", "title": "IMG_0200", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4906493751_57697f5dba_o.jpg", "secret": "1c57e6d6b8", "media": "photo", "latitude": "0", "id": "4906493751", "tags": "london"}, {"datetaken": "2010-08-09 21:37:00", "license": "4", "title": "IMG_0203", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4906493873_6f20d2b8fc_o.jpg", "secret": "d23c530a69", "media": "photo", "latitude": "0", "id": "4906493873", "tags": "london"}, {"datetaken": "2010-08-09 21:57:35", "license": "4", "title": "IMG_0210", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4907082044_7241581bba_o.jpg", "secret": "53a0f58b77", "media": "photo", "latitude": "0", "id": "4907082044", "tags": "london"}, {"datetaken": "2010-08-09 22:29:00", "license": "4", "title": "IMG_0214", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4906494139_01a0a679a7_o.jpg", "secret": "4e7cd77a15", "media": "photo", "latitude": "0", "id": "4906494139", "tags": "london"}, {"datetaken": "2010-08-09 22:43:59", "license": "4", "title": "IMG_0218", "text": "", "album_id": "72157624758314534", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4906494325_208179d83f_o.jpg", "secret": "d9d668f69d", "media": "photo", "latitude": "0", "id": "4906494325", "tags": "london"}, {"datetaken": "2010-02-15 10:31:37", "license": "1", "title": "Baby I'm a fool for you", "text": "", "album_id": "72157623346252133", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4371599587_419ca3068d_o.jpg", "secret": "c0214176ab", "media": "photo", "latitude": "0", "id": "4371599587", "tags": "canada vancouver neon granville olympics robsonstreet robsonsquare vancouver2010"}, {"datetaken": "2010-02-15 10:34:50", "license": "1", "title": "Tonight, tonight, tonight", "text": "", "album_id": "72157623346252133", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4372353070_77b2866a37_o.jpg", "secret": "f5d5c6f6f0", "media": "photo", "latitude": "0", "id": "4372353070", "tags": "canada vancouver granville olympics robsonstreet robsonsquare vancouver2010"}, {"datetaken": "2010-02-15 10:36:52", "license": "1", "title": "Nothing yet", "text": "", "album_id": "72157623346252133", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4371604001_3505d9902d_o.jpg", "secret": "342e21ba19", "media": "photo", "latitude": "0", "id": "4371604001", "tags": "canada vancouver granville olympics robsonstreet robsonsquare vancouver2010"}, {"datetaken": "2010-02-15 10:45:14", "license": "1", "title": "The mansion is warm, at the top of the hill", "text": "", "album_id": "72157623346252133", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4371605033_9886bd31f7_o.jpg", "secret": "9ef665596a", "media": "photo", "latitude": "0", "id": "4371605033", "tags": "canada vancouver granville olympics robsonstreet robsonsquare vancouver2010"}, {"datetaken": "2010-02-15 10:47:17", "license": "1", "title": "Yes it is", "text": "", "album_id": "72157623346252133", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4372356542_6ab147ea33_o.jpg", "secret": "1b4c1b02fd", "media": "photo", "latitude": "0", "id": "4372356542", "tags": "canada vancouver granville olympics robsonstreet robsonsquare vancouver2010"}, {"datetaken": "2010-02-15 10:51:23", "license": "1", "title": "Are you going to?!", "text": "", "album_id": "72157623346252133", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4374623418_2e1d7e4818_o.jpg", "secret": "2cca5522d8", "media": "photo", "latitude": "0", "id": "4374623418", "tags": "canada vancouver granville olympics robsonstreet robsonsquare vancouver2010"}, {"datetaken": "2010-02-15 11:02:43", "license": "1", "title": "Dechire", "text": "", "album_id": "72157623346252133", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4373860945_b257a3440e_o.jpg", "secret": "6078391384", "media": "photo", "latitude": "0", "id": "4373860945", "tags": "canada vancouver granville olympics robsonstreet robsonsquare vancouver2010"}, {"datetaken": "2010-02-15 11:05:43", "license": "1", "title": "At the zoo", "text": "", "album_id": "72157623346252133", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4373866355_8469325b80_o.jpg", "secret": "8baf725611", "media": "photo", "latitude": "0", "id": "4373866355", "tags": "canada vancouver granville olympics robsonstreet robsonsquare vancouver2010"}, {"datetaken": "2010-02-15 11:06:17", "license": "1", "title": "You ain't seen nothing yet", "text": "", "album_id": "72157623346252133", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4373867949_9b707ced73_o.jpg", "secret": "8552c109ba", "media": "photo", "latitude": "0", "id": "4373867949", "tags": "canada vancouver granville olympics robsonstreet robsonsquare vancouver2010"}, {"datetaken": "2010-02-15 11:13:51", "license": "0", "title": "Georgia on my mind", "text": "", "album_id": "72157623346252133", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4373864857_641b971e3d_o.jpg", "secret": "5436c7dc27", "media": "photo", "latitude": "0", "id": "4373864857", "tags": "canada vancouver granville olympics robsonstreet robsonsquare vancouver2010"}, {"datetaken": "2010-02-15 11:19:47", "license": "1", "title": "This is Howe do it", "text": "", "album_id": "72157623346252133", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4374615378_c88b2c6639_o.jpg", "secret": "3bfb75de2a", "media": "photo", "latitude": "0", "id": "4374615378", "tags": "canada vancouver granville olympics robsonstreet robsonsquare vancouver2010"}, {"datetaken": "2010-02-15 11:27:06", "license": "1", "title": "Can You Please Crawl Out Your Window?", "text": "", "album_id": "72157623346252133", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4374612406_76b619f21f_o.jpg", "secret": "a132fcd310", "media": "photo", "latitude": "0", "id": "4374612406", "tags": "canada vancouver olympics vancouver2010"}, {"datetaken": "2010-03-12 19:18:02", "license": "1", "title": "P1060427", "text": "", "album_id": "72157623531002447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2765/4447625218_2e50acf77e_o.jpg", "secret": "5d76ffaa25", "media": "photo", "latitude": "0", "id": "4447625218", "tags": ""}, {"datetaken": "2010-03-12 19:20:02", "license": "1", "title": "P1060429", "text": "", "album_id": "72157623531002447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4447625494_d75b3427a1_o.jpg", "secret": "76e04cbd04", "media": "photo", "latitude": "0", "id": "4447625494", "tags": ""}, {"datetaken": "2010-03-12 19:21:45", "license": "1", "title": "P1060430", "text": "", "album_id": "72157623531002447", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4446849615_1d405fa6c7_o.jpg", "secret": "284773ede8", "media": "photo", "latitude": "0", "id": "4446849615", "tags": ""}, {"datetaken": "2010-03-12 19:21:53", "license": "1", "title": "P1060431", "text": "", "album_id": "72157623531002447", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4447625838_6cde6af7f8_o.jpg", "secret": "48217c1236", "media": "photo", "latitude": "0", "id": "4447625838", "tags": ""}, {"datetaken": "2010-03-12 19:22:41", "license": "1", "title": "P1060435", "text": "", "album_id": "72157623531002447", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4446850157_e4b8e009fb_o.jpg", "secret": "6b9b21d2a4", "media": "photo", "latitude": "0", "id": "4446850157", "tags": ""}, {"datetaken": "2010-03-12 19:23:14", "license": "1", "title": "P1060438", "text": "", "album_id": "72157623531002447", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4447626310_2a3629cd1d_o.jpg", "secret": "ee462ebcd6", "media": "photo", "latitude": "0", "id": "4447626310", "tags": ""}, {"datetaken": "2010-03-12 19:23:25", "license": "1", "title": "P1060439", "text": "", "album_id": "72157623531002447", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4446850459_3b40c29569_o.jpg", "secret": "eb17eb4384", "media": "photo", "latitude": "0", "id": "4446850459", "tags": ""}, {"datetaken": "2010-03-12 19:23:57", "license": "1", "title": "P1060442", "text": "", "album_id": "72157623531002447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2758/4446850801_79f12cb6fc_o.jpg", "secret": "ded975d24c", "media": "photo", "latitude": "0", "id": "4446850801", "tags": ""}, {"datetaken": "2010-03-12 19:28:40", "license": "1", "title": "P1060446", "text": "", "album_id": "72157623531002447", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4446851165_edf26524d6_o.jpg", "secret": "5923d885c3", "media": "photo", "latitude": "0", "id": "4446851165", "tags": ""}, {"datetaken": "2010-03-12 19:46:55", "license": "1", "title": "P1060452", "text": "", "album_id": "72157623531002447", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4447627356_08531251e9_o.jpg", "secret": "da6b669058", "media": "photo", "latitude": "0", "id": "4447627356", "tags": ""}, {"datetaken": "2010-03-12 19:47:30", "license": "1", "title": "P1060456", "text": "", "album_id": "72157623531002447", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4446851553_bd57fdd253_o.jpg", "secret": "99ebe3fc2c", "media": "photo", "latitude": "0", "id": "4446851553", "tags": ""}, {"datetaken": "2010-03-12 19:58:52", "license": "1", "title": "P1060466", "text": "", "album_id": "72157623531002447", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4447649692_f7d1ff86c8_o.jpg", "secret": "2b9b71bf09", "media": "photo", "latitude": "0", "id": "4447649692", "tags": ""}, {"datetaken": "2010-03-12 20:44:23", "license": "1", "title": "P1060499", "text": "", "album_id": "72157623531002447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2680/4446871885_af512bbf7e_o.jpg", "secret": "977898dd64", "media": "photo", "latitude": "0", "id": "4446871885", "tags": ""}, {"datetaken": "2010-03-12 20:47:27", "license": "1", "title": "P1060500", "text": "", "album_id": "72157623531002447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4447648180_172138cbbf_o.jpg", "secret": "a574fe4d79", "media": "photo", "latitude": "0", "id": "4447648180", "tags": ""}, {"datetaken": "2009-09-10 05:02:25", "license": "3", "title": "Dinting Station", "text": "", "album_id": "72157623660497540", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4449006041_52f6713b9e_o.jpg", "secret": "1697355e91", "media": "photo", "latitude": "0", "id": "4449006041", "tags": "uk wheel manchester"}, {"datetaken": "2009-09-10 06:38:05", "license": "3", "title": "The Wheel of Manchester", "text": "", "album_id": "72157623660497540", "longitude": "-2.243807", "url_o": "https://farm5.staticflickr.com/4022/4448994659_bd4e70333d_o.jpg", "secret": "1cec6b7a6f", "media": "photo", "latitude": "53.483512", "id": "4448994659", "tags": "uk eye wheel manchester ferris"}, {"datetaken": "2009-09-10 06:38:36", "license": "3", "title": "The Wheel of Manchester", "text": "", "album_id": "72157623660497540", "longitude": "-2.244000", "url_o": "https://farm3.staticflickr.com/2746/4449782954_fdfb011a9e_o.jpg", "secret": "33871f0ac8", "media": "photo", "latitude": "53.483385", "id": "4449782954", "tags": "uk wheel manchester"}, {"datetaken": "2009-09-10 06:39:12", "license": "3", "title": "Reflections in the Arndale Center", "text": "", "album_id": "72157623660497540", "longitude": "-2.242627", "url_o": "https://farm5.staticflickr.com/4045/4449784178_0990488c7b_o.jpg", "secret": "534504fe66", "media": "photo", "latitude": "53.483372", "id": "4449784178", "tags": "uk wheel manchester"}, {"datetaken": "2009-09-10 06:40:58", "license": "3", "title": "Manchester Dome", "text": "", "album_id": "72157623660497540", "longitude": "-2.244000", "url_o": "https://farm5.staticflickr.com/4029/4449009633_1a68a83fed_o.jpg", "secret": "66d762d769", "media": "photo", "latitude": "53.483564", "id": "4449009633", "tags": "uk wheel manchester"}, {"datetaken": "2009-09-10 06:44:55", "license": "3", "title": "View of Manchester", "text": "", "album_id": "72157623660497540", "longitude": "-2.244601", "url_o": "https://farm5.staticflickr.com/4019/4449011071_86bc47e37d_o.jpg", "secret": "700d574eec", "media": "photo", "latitude": "53.483295", "id": "4449011071", "tags": "uk wheel manchester"}, {"datetaken": "2009-09-10 06:45:06", "license": "3", "title": "Printworks from the Wheel", "text": "", "album_id": "72157623660497540", "longitude": "-2.243914", "url_o": "https://farm3.staticflickr.com/2761/4449012337_b5d798c705_o.jpg", "secret": "3c0411cbe3", "media": "photo", "latitude": "53.484330", "id": "4449012337", "tags": "uk wheel manchester"}, {"datetaken": "2009-09-10 06:45:17", "license": "3", "title": "Manchester from the Wheel", "text": "", "album_id": "72157623660497540", "longitude": "-2.243614", "url_o": "https://farm5.staticflickr.com/4054/4449789154_80baa43fca_o.jpg", "secret": "df432eb58d", "media": "photo", "latitude": "53.484521", "id": "4449789154", "tags": "uk wheel manchester"}, {"datetaken": "2009-09-10 06:45:30", "license": "3", "title": "Manchester Cathedral", "text": "", "album_id": "72157623660497540", "longitude": "-2.245137", "url_o": "https://farm5.staticflickr.com/4051/4449014927_6416e0e7aa_o.jpg", "secret": "ffa4ecfccf", "media": "photo", "latitude": "53.483678", "id": "4449014927", "tags": "uk wheel manchester"}, {"datetaken": "2009-09-10 06:45:38", "license": "3", "title": "The Square", "text": "", "album_id": "72157623660497540", "longitude": "-2.244172", "url_o": "https://farm3.staticflickr.com/2720/4449791878_fd6f53dbc7_o.jpg", "secret": "82d8c36599", "media": "photo", "latitude": "53.483500", "id": "4449791878", "tags": "uk wheel manchester"}, {"datetaken": "2009-09-10 06:46:42", "license": "3", "title": "Shambles Square from the Wheel", "text": "", "album_id": "72157623660497540", "longitude": "-2.243978", "url_o": "https://farm5.staticflickr.com/4059/4449793144_a797b78498_o.jpg", "secret": "eceea96fa1", "media": "photo", "latitude": "53.483436", "id": "4449793144", "tags": "uk wheel manchester"}, {"datetaken": "2009-09-10 06:47:38", "license": "3", "title": "Printworks, Manchester", "text": "", "album_id": "72157623660497540", "longitude": "-2.244107", "url_o": "https://farm5.staticflickr.com/4013/4449794252_a9df26b5c0_o.jpg", "secret": "e839020f52", "media": "photo", "latitude": "53.484598", "id": "4449794252", "tags": "uk wheel manchester"}, {"datetaken": "2009-09-10 06:48:18", "license": "3", "title": "Glass Building from the Wheel", "text": "", "album_id": "72157623660497540", "longitude": "-2.243807", "url_o": "https://farm3.staticflickr.com/2763/4449020331_d744cf7a3e_o.jpg", "secret": "e9b62e9d88", "media": "photo", "latitude": "53.483385", "id": "4449020331", "tags": "uk wheel manchester"}, {"datetaken": "2009-09-10 06:50:10", "license": "3", "title": "Manchester View", "text": "", "album_id": "72157623660497540", "longitude": "-2.244107", "url_o": "https://farm5.staticflickr.com/4047/4449797112_fe977c628c_o.jpg", "secret": "781e178201", "media": "photo", "latitude": "53.483615", "id": "4449797112", "tags": "uk wheel manchester"}, {"datetaken": "2009-09-10 06:54:20", "license": "3", "title": "Shambles Square", "text": "", "album_id": "72157623660497540", "longitude": "-2.243721", "url_o": "https://farm5.staticflickr.com/4041/4449022747_55a3cc3372_o.jpg", "secret": "08f5e431cc", "media": "photo", "latitude": "53.483474", "id": "4449022747", "tags": "uk wheel manchester"}, {"datetaken": "2009-09-10 06:54:44", "license": "3", "title": "Wheel Angles", "text": "", "album_id": "72157623660497540", "longitude": "-2.244021", "url_o": "https://farm5.staticflickr.com/4035/4449799456_ea943fddba_o.jpg", "secret": "be789f5654", "media": "photo", "latitude": "53.483589", "id": "4449799456", "tags": "uk wheel manchester"}, {"datetaken": "2009-09-10 06:56:41", "license": "3", "title": "The Wheel In Its Glory", "text": "", "album_id": "72157623660497540", "longitude": "-2.243850", "url_o": "https://farm3.staticflickr.com/2753/4449025103_e8a6a8b59b_o.jpg", "secret": "f308b22b23", "media": "photo", "latitude": "53.483449", "id": "4449025103", "tags": "uk wheel manchester"}, {"datetaken": "2008-07-18 06:41:30", "license": "2", "title": "IMG_3719-2", "text": "", "album_id": "72157624193885719", "longitude": "-78.868510", "url_o": "https://farm5.staticflickr.com/4059/4717888045_149c078983_o.jpg", "secret": "9d3365518a", "media": "photo", "latitude": "33.701100", "id": "4717888045", "tags": ""}, {"datetaken": "2008-07-18 06:41:30", "license": "2", "title": "IMG_3719", "text": "", "album_id": "72157624193885719", "longitude": "-78.868510", "url_o": "https://farm5.staticflickr.com/4036/4717888313_86db027d71_o.jpg", "secret": "f7a20e2e38", "media": "photo", "latitude": "33.701100", "id": "4717888313", "tags": ""}, {"datetaken": "2008-07-18 21:12:34", "license": "2", "title": "IMG_3740", "text": "", "album_id": "72157624193885719", "longitude": "-78.880741", "url_o": "https://farm5.staticflickr.com/4065/4717888719_bba0e7c452_o.jpg", "secret": "c60d069a52", "media": "photo", "latitude": "33.692111", "id": "4717888719", "tags": ""}, {"datetaken": "2008-07-18 22:05:14", "license": "2", "title": "IMG_3752", "text": "", "album_id": "72157624193885719", "longitude": "-78.880741", "url_o": "https://farm5.staticflickr.com/4061/4717888947_502fc1f446_o.jpg", "secret": "943eeda9d8", "media": "photo", "latitude": "33.692111", "id": "4717888947", "tags": ""}, {"datetaken": "2008-07-18 22:05:27", "license": "2", "title": "IMG_3753", "text": "", "album_id": "72157624193885719", "longitude": "-78.880741", "url_o": "https://farm5.staticflickr.com/4029/4717889199_976b3aee84_o.jpg", "secret": "7823cf2a76", "media": "photo", "latitude": "33.692111", "id": "4717889199", "tags": ""}, {"datetaken": "2008-07-18 22:09:00", "license": "2", "title": "IMG_3762", "text": "", "album_id": "72157624193885719", "longitude": "-78.880741", "url_o": "https://farm5.staticflickr.com/4054/4718533368_93f7393279_o.jpg", "secret": "0920edbc53", "media": "photo", "latitude": "33.692111", "id": "4718533368", "tags": ""}, {"datetaken": "2008-07-19 08:34:57", "license": "2", "title": "IMG_3781", "text": "", "album_id": "72157624193885719", "longitude": "-78.868510", "url_o": "https://farm5.staticflickr.com/4022/4718529816_fed617fef6_o.jpg", "secret": "559a760013", "media": "photo", "latitude": "33.701100", "id": "4718529816", "tags": ""}, {"datetaken": "2008-07-19 18:38:52", "license": "2", "title": "IMG_3832", "text": "", "album_id": "72157624193885719", "longitude": "-78.744978", "url_o": "https://farm5.staticflickr.com/4034/4717886713_5d5c4cf30c_o.jpg", "secret": "00594cfc0e", "media": "photo", "latitude": "33.800787", "id": "4717886713", "tags": ""}, {"datetaken": "2008-07-19 18:48:57", "license": "2", "title": "IMG_3843", "text": "", "album_id": "72157624193885719", "longitude": "-78.744978", "url_o": "https://farm5.staticflickr.com/4024/4718530746_243dde188a_o.jpg", "secret": "a3bfe21ca1", "media": "photo", "latitude": "33.800787", "id": "4718530746", "tags": ""}, {"datetaken": "2008-07-19 18:49:18", "license": "2", "title": "IMG_3844", "text": "", "album_id": "72157624193885719", "longitude": "-78.744978", "url_o": "https://farm5.staticflickr.com/4062/4717887439_555b438f04_o.jpg", "secret": "132ce8f6a4", "media": "photo", "latitude": "33.800787", "id": "4717887439", "tags": ""}, {"datetaken": "2008-07-19 20:32:20", "license": "2", "title": "IMG_3853", "text": "", "album_id": "72157624193885719", "longitude": "-78.746019", "url_o": "https://farm5.staticflickr.com/4059/4718531412_59f83a5efb_o.jpg", "secret": "8d6bffcf61", "media": "photo", "latitude": "33.800217", "id": "4718531412", "tags": ""}, {"datetaken": "2008-07-19 20:34:37", "license": "2", "title": "IMG_3854", "text": "", "album_id": "72157624193885719", "longitude": "-78.746019", "url_o": "https://farm5.staticflickr.com/4068/4717887941_4f28228385_o.jpg", "secret": "d4885ae749", "media": "photo", "latitude": "33.800217", "id": "4717887941", "tags": ""}, {"datetaken": "2010-06-19 14:58:16", "license": "3", "title": "Bergen Zoo 6-19-10 007 (2)", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4061/4719615718_eff9293f8c_o.jpg", "secret": "ef657d0c16", "media": "photo", "latitude": "40.934686", "id": "4719615718", "tags": ""}, {"datetaken": "2010-06-19 14:59:22", "license": "3", "title": "Bergen County Zoo", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4060/4719616158_9d02ddbdf4_o.jpg", "secret": "5a7954477a", "media": "photo", "latitude": "40.934686", "id": "4719616158", "tags": ""}, {"datetaken": "2010-06-19 15:00:44", "license": "3", "title": "Bergen County Zoo", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4035/4718968637_e1a06595dc_o.jpg", "secret": "a7fe15c2fe", "media": "photo", "latitude": "40.934686", "id": "4718968637", "tags": ""}, {"datetaken": "2010-06-19 15:00:57", "license": "3", "title": "Bergen County Zoo", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4060/4718969003_71f069b46d_o.jpg", "secret": "b5e1fb17f2", "media": "photo", "latitude": "40.934686", "id": "4718969003", "tags": ""}, {"datetaken": "2010-06-19 15:10:22", "license": "3", "title": "Bergen County Zoo", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4054/4719617106_f62f2bee77_o.jpg", "secret": "8b245445f5", "media": "photo", "latitude": "40.934686", "id": "4719617106", "tags": ""}, {"datetaken": "2010-06-19 15:10:47", "license": "3", "title": "Bergen County Zoo", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4066/4719617374_72a154cffb_o.jpg", "secret": "92351fa897", "media": "photo", "latitude": "40.934686", "id": "4719617374", "tags": ""}, {"datetaken": "2010-06-19 15:20:04", "license": "3", "title": "Bergen County Zoo", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4054/4719617640_468e0d3771_o.jpg", "secret": "a9ca60ba39", "media": "photo", "latitude": "40.934686", "id": "4719617640", "tags": ""}, {"datetaken": "2010-06-19 15:49:07", "license": "3", "title": "Bergen County Zoo", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4031/4719617894_e9c9a145e9_o.jpg", "secret": "cc4b3f6a3c", "media": "photo", "latitude": "40.934686", "id": "4719617894", "tags": ""}, {"datetaken": "2010-06-19 15:52:29", "license": "3", "title": "Bergen County Zoo", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4028/4718970405_5d576f4692_o.jpg", "secret": "d61a8e6f25", "media": "photo", "latitude": "40.934686", "id": "4718970405", "tags": ""}, {"datetaken": "2010-06-19 15:57:47", "license": "3", "title": "Bergen County Zoo", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4051/4718971591_0aea7688e4_o.jpg", "secret": "3927b20c31", "media": "photo", "latitude": "40.934686", "id": "4718971591", "tags": ""}, {"datetaken": "2010-06-19 15:59:48", "license": "3", "title": "Bergen County Zoo", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4036/4718971725_4fe5bb6262_o.jpg", "secret": "b101bef848", "media": "photo", "latitude": "40.934686", "id": "4718971725", "tags": ""}, {"datetaken": "2010-06-19 16:00:02", "license": "3", "title": "Bergen County Zoo", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4056/4718972459_e758acc669_o.jpg", "secret": "b173f57bd4", "media": "photo", "latitude": "40.934686", "id": "4718972459", "tags": ""}, {"datetaken": "2010-06-19 16:04:24", "license": "3", "title": "Bergen County Zoo", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4071/4718972931_558b1ae728_o.jpg", "secret": "9f4eb0249a", "media": "photo", "latitude": "40.934686", "id": "4718972931", "tags": ""}, {"datetaken": "2010-06-19 16:11:54", "license": "3", "title": "Bergen County Zoo", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4056/4719621118_ba88b50c00_o.jpg", "secret": "60e3cc2320", "media": "photo", "latitude": "40.934686", "id": "4719621118", "tags": ""}, {"datetaken": "2010-06-19 16:12:02", "license": "3", "title": "Bergen County Zoo", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4029/4719623020_8b74fc156f_o.jpg", "secret": "e39299d5c1", "media": "photo", "latitude": "40.934686", "id": "4719623020", "tags": ""}, {"datetaken": "2010-06-19 16:12:07", "license": "3", "title": "Bergen County Zoo", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4033/4718975641_74bd137a54_o.jpg", "secret": "948dcca636", "media": "photo", "latitude": "40.934686", "id": "4718975641", "tags": ""}, {"datetaken": "2010-06-19 16:12:34", "license": "3", "title": "Bergen County Zoo", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4035/4719624738_71072df2ed_o.jpg", "secret": "d735d18d37", "media": "photo", "latitude": "40.934686", "id": "4719624738", "tags": ""}, {"datetaken": "2010-06-19 16:12:51", "license": "3", "title": "Bergen County Zoo", "text": "", "album_id": "72157624320734786", "longitude": "-74.047765", "url_o": "https://farm5.staticflickr.com/4051/4719625032_8105a777f8_o.jpg", "secret": "081fc92ce0", "media": "photo", "latitude": "40.934686", "id": "4719625032", "tags": ""}, {"datetaken": "2010-07-17 21:42:20", "license": "6", "title": "IMG_0020", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4812798162_3f6deaec05_o.jpg", "secret": "36cdef2801", "media": "photo", "latitude": "0", "id": "4812798162", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 21:43:10", "license": "6", "title": "IMG_0022", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4812803102_b80a88a776_o.jpg", "secret": "3f6ca77bf3", "media": "photo", "latitude": "0", "id": "4812803102", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 21:44:11", "license": "6", "title": "IMG_0024", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4812182775_706b1f977d_o.jpg", "secret": "6943ea5322", "media": "photo", "latitude": "0", "id": "4812182775", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 21:47:51", "license": "6", "title": "IMG_0025", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4812186979_e937e2acf5_o.jpg", "secret": "a5ab7a48f3", "media": "photo", "latitude": "0", "id": "4812186979", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 21:48:22", "license": "6", "title": "IMG_0026", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4812815300_5bb976cbb3_o.jpg", "secret": "9a72495162", "media": "photo", "latitude": "0", "id": "4812815300", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 21:48:59", "license": "6", "title": "IMG_0027", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4812194549_b19db5f866_o.jpg", "secret": "b09c74878e", "media": "photo", "latitude": "0", "id": "4812194549", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 21:49:19", "license": "6", "title": "IMG_0028", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4812824310_84db29ef02_o.jpg", "secret": "3ddfa29474", "media": "photo", "latitude": "0", "id": "4812824310", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 21:49:26", "license": "6", "title": "IMG_0029", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4812202705_1f0a73860e_o.jpg", "secret": "f504866c4e", "media": "photo", "latitude": "0", "id": "4812202705", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 21:49:35", "license": "6", "title": "IMG_0030", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4812831590_bd4dff7496_o.jpg", "secret": "46cede9906", "media": "photo", "latitude": "0", "id": "4812831590", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 21:49:41", "license": "6", "title": "IMG_0031", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4812835798_efb1cf677a_o.jpg", "secret": "8f6d11592a", "media": "photo", "latitude": "0", "id": "4812835798", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 21:52:00", "license": "6", "title": "IMG_0032", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4812839380_bece3c287b_o.jpg", "secret": "b709046d70", "media": "photo", "latitude": "0", "id": "4812839380", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 21:52:40", "license": "6", "title": "IMG_0033", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4812218645_aa54a59a30_o.jpg", "secret": "0e75b801ba", "media": "photo", "latitude": "0", "id": "4812218645", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 21:59:43", "license": "6", "title": "IMG_0035", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4812847490_95d2d39de4_o.jpg", "secret": "a9d1640f77", "media": "photo", "latitude": "0", "id": "4812847490", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 22:00:42", "license": "6", "title": "IMG_0036", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4812225467_84a76653a9_o.jpg", "secret": "b65b78df59", "media": "photo", "latitude": "0", "id": "4812225467", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 22:02:17", "license": "6", "title": "IMG_0037", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4812228297_f421649939_o.jpg", "secret": "66bd8a5a85", "media": "photo", "latitude": "0", "id": "4812228297", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 22:16:37", "license": "6", "title": "IMG_0038", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4812231363_51a88da2b6_o.jpg", "secret": "2b3ca357d3", "media": "photo", "latitude": "0", "id": "4812231363", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 22:17:08", "license": "6", "title": "IMG_0039", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4812861748_858caf7dfd_o.jpg", "secret": "e440b57be5", "media": "photo", "latitude": "0", "id": "4812861748", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 22:17:11", "license": "6", "title": "IMG_0040", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4812240077_180b745f47_o.jpg", "secret": "5157af586c", "media": "photo", "latitude": "0", "id": "4812240077", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 22:25:16", "license": "6", "title": "IMG_0042", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4812243495_fec6ee9364_o.jpg", "secret": "6e60e7f1f9", "media": "photo", "latitude": "0", "id": "4812243495", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 22:26:59", "license": "6", "title": "IMG_0043", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4812870912_cba833cf81_o.jpg", "secret": "b26401c6e7", "media": "photo", "latitude": "0", "id": "4812870912", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 22:27:33", "license": "6", "title": "IMG_0045", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4812251641_d16849da2b_o.jpg", "secret": "b2dff4e1fb", "media": "photo", "latitude": "0", "id": "4812251641", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 22:28:34", "license": "6", "title": "IMG_0046", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4812256227_f94f42d7d3_o.jpg", "secret": "4c2a20066b", "media": "photo", "latitude": "0", "id": "4812256227", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 22:29:19", "license": "6", "title": "IMG_0048", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4812884670_51d3aed447_o.jpg", "secret": "c57e86994b", "media": "photo", "latitude": "0", "id": "4812884670", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 22:30:38", "license": "6", "title": "IMG_0049", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4812263637_dd43b589aa_o.jpg", "secret": "c5d86ae7ec", "media": "photo", "latitude": "0", "id": "4812263637", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-07-17 22:32:26", "license": "6", "title": "IMG_0050", "text": "", "album_id": "72157624420153669", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4812891652_ec84cc8d0a_o.jpg", "secret": "8b7cdb8038", "media": "photo", "latitude": "0", "id": "4812891652", "tags": "canon eos is mark ii l 5d usm ef f4 24105mm"}, {"datetaken": "2010-09-20 00:32:10", "license": "5", "title": "IMG_0520", "text": "", "album_id": "72157624994501472", "longitude": "-0.103715", "url_o": "https://farm5.staticflickr.com/4104/5007062861_b1ce4691b6_o.jpg", "secret": "71d3d06e47", "media": "photo", "latitude": "51.517429", "id": "5007062861", "tags": ""}, {"datetaken": "2010-09-20 00:32:25", "license": "5", "title": "IMG_0507", "text": "", "album_id": "72157624994501472", "longitude": "-0.125516", "url_o": "https://farm5.staticflickr.com/4151/5007063737_cf5fd000c1_o.jpg", "secret": "21f651d61c", "media": "photo", "latitude": "51.530723", "id": "5007063737", "tags": ""}, {"datetaken": "2010-09-20 08:17:20", "license": "5", "title": "IMG_0521", "text": "", "album_id": "72157624994501472", "longitude": "-0.103039", "url_o": "https://farm5.staticflickr.com/4149/5007673754_010aa532fc_o.jpg", "secret": "5ede8aa27f", "media": "photo", "latitude": "51.517128", "id": "5007673754", "tags": ""}, {"datetaken": "2010-09-20 08:17:46", "license": "5", "title": "IMG_0527", "text": "", "album_id": "72157624994501472", "longitude": "-0.127887", "url_o": "https://farm5.staticflickr.com/4128/5007065229_b35aa2917a_o.jpg", "secret": "02ed2d621c", "media": "photo", "latitude": "51.508425", "id": "5007065229", "tags": ""}, {"datetaken": "2010-09-20 08:18:08", "license": "5", "title": "IMG_0528", "text": "", "album_id": "72157624994501472", "longitude": "-0.127887", "url_o": "https://farm5.staticflickr.com/4089/5007065863_fab3c91b72_o.jpg", "secret": "4d4be02fb7", "media": "photo", "latitude": "51.508425", "id": "5007065863", "tags": ""}, {"datetaken": "2010-09-20 08:18:36", "license": "5", "title": "IMG_0513", "text": "", "album_id": "72157624994501472", "longitude": "-0.105357", "url_o": "https://farm5.staticflickr.com/4108/5007676124_762f97daa7_o.jpg", "secret": "905fbe76cc", "media": "photo", "latitude": "51.518290", "id": "5007676124", "tags": ""}, {"datetaken": "2010-09-20 08:19:06", "license": "5", "title": "IMG_0509", "text": "", "album_id": "72157624994501472", "longitude": "-0.125516", "url_o": "https://farm5.staticflickr.com/4110/5007067509_5bbb9d89ce_o.jpg", "secret": "ccc43b97e7", "media": "photo", "latitude": "51.530723", "id": "5007067509", "tags": ""}, {"datetaken": "2010-09-20 08:19:31", "license": "5", "title": "IMG_0508", "text": "", "album_id": "72157624994501472", "longitude": "-0.125516", "url_o": "https://farm5.staticflickr.com/4111/5007068279_141334daac_o.jpg", "secret": "902e1fd542", "media": "photo", "latitude": "51.530723", "id": "5007068279", "tags": ""}, {"datetaken": "2010-09-20 08:19:56", "license": "5", "title": "IMG_0510", "text": "", "album_id": "72157624994501472", "longitude": "-0.125516", "url_o": "https://farm5.staticflickr.com/4132/5007069063_d9df201b2e_o.jpg", "secret": "26a220b136", "media": "photo", "latitude": "51.530723", "id": "5007069063", "tags": ""}, {"datetaken": "2010-09-21 09:13:34", "license": "5", "title": "Jamie's Italian, Westfield", "text": "", "album_id": "72157624994501472", "longitude": "-0.224200", "url_o": "https://farm5.staticflickr.com/4090/5010696593_c66de3d8b5_o.jpg", "secret": "6eb2f39e82", "media": "photo", "latitude": "51.505891", "id": "5010696593", "tags": "westfield"}, {"datetaken": "2010-09-21 21:15:48", "license": "5", "title": "Southern Terrace, Westfield", "text": "", "album_id": "72157624994501472", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4124/5012244241_6c9b5b9b80_o.jpg", "secret": "3edd3b83e0", "media": "photo", "latitude": "0", "id": "5012244241", "tags": "westfield"}, {"datetaken": "2010-09-21 21:19:13", "license": "5", "title": "Westway", "text": "", "album_id": "72157624994501472", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4126/5012855692_7d181f639f_o.jpg", "secret": "ffb62c96e3", "media": "photo", "latitude": "0", "id": "5012855692", "tags": ""}, {"datetaken": "2010-04-19 17:09:05", "license": "5", "title": "After the Parade", "text": "", "album_id": "72157623781391871", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2714/4541316669_0da74a219b_o.jpg", "secret": "55d45becdf", "media": "photo", "latitude": "0", "id": "4541316669", "tags": "schweiz z\u00fcrich sechsel\u00e4uten s\u00e4chsil\u00fc\u00fcte afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2010-04-19 17:36:33", "license": "5", "title": "Too Cool For The B\u00f6\u00f6gg", "text": "", "album_id": "72157623781391871", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4541317015_3479eb163d_o.jpg", "secret": "04c6dd3d9d", "media": "photo", "latitude": "0", "id": "4541317015", "tags": "schweiz z\u00fcrich sechsel\u00e4uten s\u00e4chsil\u00fc\u00fcte afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2010-04-19 17:41:12", "license": "5", "title": "Watching The Show", "text": "", "album_id": "72157623781391871", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4541316341_672c70cb16_o.jpg", "secret": "23afe66beb", "media": "photo", "latitude": "0", "id": "4541316341", "tags": "schweiz z\u00fcrich sechsel\u00e4uten s\u00e4chsil\u00fc\u00fcte afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2010-04-19 17:43:46", "license": "5", "title": "Still Watching The Show", "text": "", "album_id": "72157623781391871", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4541316043_d91c350ea3_o.jpg", "secret": "85829109a5", "media": "photo", "latitude": "0", "id": "4541316043", "tags": "schweiz z\u00fcrich sechsel\u00e4uten s\u00e4chsil\u00fc\u00fcte afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2010-04-19 17:51:12", "license": "5", "title": "Sousaphone", "text": "", "album_id": "72157623781391871", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2762/4541948966_b9ff9a4b8e_o.jpg", "secret": "9595cc5ed1", "media": "photo", "latitude": "0", "id": "4541948966", "tags": "schweiz z\u00fcrich sechsel\u00e4uten s\u00e4chsil\u00fc\u00fcte afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2010-04-19 17:52:00", "license": "5", "title": "The 80s really are back", "text": "", "album_id": "72157623781391871", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4541315443_46498c95b2_o.jpg", "secret": "10bf8e8267", "media": "photo", "latitude": "0", "id": "4541315443", "tags": "schweiz z\u00fcrich sechsel\u00e4uten s\u00e4chsil\u00fc\u00fcte afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2010-04-19 17:59:32", "license": "5", "title": "On the river", "text": "", "album_id": "72157623781391871", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4541948308_d258aacc1f_o.jpg", "secret": "85a470ed2c", "media": "photo", "latitude": "0", "id": "4541948308", "tags": "schweiz z\u00fcrich sechsel\u00e4uten s\u00e4chsil\u00fc\u00fcte afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2010-04-19 17:59:54", "license": "5", "title": "Got Flowers?", "text": "", "album_id": "72157623781391871", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4541314763_e39026631a_o.jpg", "secret": "3f66f608dc", "media": "photo", "latitude": "0", "id": "4541314763", "tags": "schweiz z\u00fcrich sechsel\u00e4uten s\u00e4chsil\u00fc\u00fcte afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2010-04-19 18:00:35", "license": "5", "title": "Hard-Earned Flowers", "text": "", "album_id": "72157623781391871", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4541314407_fc79ccb1d3_o.jpg", "secret": "21ecf79bc5", "media": "photo", "latitude": "0", "id": "4541314407", "tags": "schweiz z\u00fcrich sechsel\u00e4uten s\u00e4chsil\u00fc\u00fcte afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2010-04-19 18:01:34", "license": "5", "title": "Watching The Action", "text": "", "album_id": "72157623781391871", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4541314119_7354985410_o.jpg", "secret": "31f97eeb80", "media": "photo", "latitude": "0", "id": "4541314119", "tags": "schweiz z\u00fcrich sechsel\u00e4uten s\u00e4chsil\u00fc\u00fcte afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2010-04-19 18:04:58", "license": "5", "title": "More Flowers", "text": "", "album_id": "72157623781391871", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4541313585_f02fb9c3e1_o.jpg", "secret": "0e8afa7af5", "media": "photo", "latitude": "0", "id": "4541313585", "tags": "schweiz z\u00fcrich sechsel\u00e4uten s\u00e4chsil\u00fc\u00fcte afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2010-04-19 18:23:50", "license": "5", "title": "All The Fun Of The Fair", "text": "", "album_id": "72157623781391871", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4541946480_b3513ee952_o.jpg", "secret": "ac05ba11d3", "media": "photo", "latitude": "0", "id": "4541946480", "tags": "schweiz z\u00fcrich sechsel\u00e4uten s\u00e4chsil\u00fc\u00fcte afsnikkor50mmf14g"}, {"datetaken": "2010-04-19 18:47:48", "license": "5", "title": "HB", "text": "", "album_id": "72157623781391871", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4541946036_77784927f6_o.jpg", "secret": "d2cca98e7b", "media": "photo", "latitude": "0", "id": "4541946036", "tags": "rail sbb hauptbahnhof z\u00fcrich bahn ffs cff afsnikkor50mmf14g"}, {"datetaken": "2010-04-19 18:49:21", "license": "5", "title": "Tram, Statue, Station", "text": "", "album_id": "72157623781391871", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/4541945370_6fab21db18_o.jpg", "secret": "abebeca90c", "media": "photo", "latitude": "0", "id": "4541945370", "tags": "rail sbb hauptbahnhof z\u00fcrich bahn ffs cff afsnikkor50mmf14g"}, {"datetaken": "2010-08-21 08:44:18", "license": "4", "title": "20100820-IMG_0217.jpg", "text": "", "album_id": "72157624771807666", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4912592194_3ecd22b2d8_o.jpg", "secret": "fa243d1609", "media": "photo", "latitude": "0", "id": "4912592194", "tags": "mar stainedglass lodge stninians"}, {"datetaken": "2010-08-21 08:45:52", "license": "4", "title": "20100820-IMG_0220.jpg", "text": "", "album_id": "72157624771807666", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4911989399_ed34df27bd_o.jpg", "secret": "8a1185a5a0", "media": "photo", "latitude": "0", "id": "4911989399", "tags": "mar stainedglass lodge stninians"}, {"datetaken": "2010-08-21 08:46:25", "license": "4", "title": "20100820-IMG_0224.jpg", "text": "", "album_id": "72157624771807666", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4911990115_83166aa7bb_o.jpg", "secret": "8ee175118c", "media": "photo", "latitude": "0", "id": "4911990115", "tags": "mar stainedglass lodge stninians"}, {"datetaken": "2010-08-21 08:47:00", "license": "4", "title": "20100820-IMG_0227.jpg", "text": "", "album_id": "72157624771807666", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4911990991_eba07dd390_o.jpg", "secret": "327b53a06f", "media": "photo", "latitude": "0", "id": "4911990991", "tags": "mar stainedglass lodge stninians"}, {"datetaken": "2010-08-21 08:47:26", "license": "4", "title": "20100820-IMG_0232.jpg", "text": "", "album_id": "72157624771807666", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4911991591_b15efa55ca_o.jpg", "secret": "83e0ff06dc", "media": "photo", "latitude": "0", "id": "4911991591", "tags": "mar stainedglass lodge stninians"}, {"datetaken": "2010-08-21 08:47:50", "license": "4", "title": "20100820-IMG_0233.jpg", "text": "", "album_id": "72157624771807666", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4911992181_0cbe19b345_o.jpg", "secret": "1750964161", "media": "photo", "latitude": "0", "id": "4911992181", "tags": "mar stainedglass lodge stninians"}, {"datetaken": "2010-08-21 08:48:13", "license": "4", "title": "20100820-IMG_0234.jpg", "text": "", "album_id": "72157624771807666", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4912597592_89bc249b97_o.jpg", "secret": "86c1138bfd", "media": "photo", "latitude": "0", "id": "4912597592", "tags": "mar stainedglass lodge stninians"}, {"datetaken": "2010-08-21 08:49:42", "license": "4", "title": "20100820-IMG_0238.jpg", "text": "", "album_id": "72157624771807666", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4912599602_24f3703003_o.jpg", "secret": "631b0764b8", "media": "photo", "latitude": "0", "id": "4912599602", "tags": "mar stainedglass lodge stninians"}, {"datetaken": "2010-08-21 08:50:08", "license": "4", "title": "20100820-IMG_0240.jpg", "text": "", "album_id": "72157624771807666", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4911995175_9842a201c7_o.jpg", "secret": "0f1830dc8e", "media": "photo", "latitude": "0", "id": "4911995175", "tags": "mar stainedglass lodge stninians"}, {"datetaken": "2010-08-21 08:50:27", "license": "4", "title": "20100820-IMG_0244.jpg", "text": "", "album_id": "72157624771807666", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4911995533_673fb0e4b5_o.jpg", "secret": "5666d17495", "media": "photo", "latitude": "0", "id": "4911995533", "tags": "mar stainedglass lodge stninians"}, {"datetaken": "2010-08-21 08:50:44", "license": "4", "title": "20100820-IMG_0249.jpg", "text": "", "album_id": "72157624771807666", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4912600990_540e41fc46_o.jpg", "secret": "956a3aa9b2", "media": "photo", "latitude": "0", "id": "4912600990", "tags": "mar stainedglass lodge stninians"}, {"datetaken": "2010-08-21 08:51:33", "license": "4", "title": "20100820-IMG_0254.jpg", "text": "", "album_id": "72157624771807666", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4912602032_15452783b2_o.jpg", "secret": "30c7a2ef7c", "media": "photo", "latitude": "0", "id": "4912602032", "tags": "mar stainedglass lodge stninians"}, {"datetaken": "2010-08-21 08:52:05", "license": "4", "title": "20100820-IMG_0257.jpg", "text": "", "album_id": "72157624771807666", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4911997711_4c117df6c3_o.jpg", "secret": "a644d5c49f", "media": "photo", "latitude": "0", "id": "4911997711", "tags": "stninians"}, {"datetaken": "2010-08-21 08:52:43", "license": "4", "title": "20100820-IMG_0260.jpg", "text": "", "album_id": "72157624771807666", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4911998579_7efce45587_o.jpg", "secret": "3caa86054b", "media": "photo", "latitude": "0", "id": "4911998579", "tags": "stninians"}, {"datetaken": "2010-08-21 08:53:07", "license": "4", "title": "20100820-IMG_0271.jpg", "text": "", "album_id": "72157624771807666", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4912604114_6e98fd4768_o.jpg", "secret": "c914035e44", "media": "photo", "latitude": "0", "id": "4912604114", "tags": "stninians"}, {"datetaken": "2010-08-21 08:53:30", "license": "4", "title": "20100820-IMG_0274.jpg", "text": "", "album_id": "72157624771807666", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4912604642_8bc84ec601_o.jpg", "secret": "36af575652", "media": "photo", "latitude": "0", "id": "4912604642", "tags": "stninians"}, {"datetaken": "2010-08-21 08:54:11", "license": "4", "title": "20100820-IMG_0278.jpg", "text": "", "album_id": "72157624771807666", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4912000441_c7dc813eb2_o.jpg", "secret": "92f7633fd1", "media": "photo", "latitude": "0", "id": "4912000441", "tags": "stninians"}, {"datetaken": "2010-12-13 20:48:43", "license": "5", "title": "IMG_2041", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5082/5279922716_50930bc7af_o.jpg", "secret": "6161037450", "media": "photo", "latitude": "0", "id": "5279922716", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-12-13 20:49:05", "license": "5", "title": "IMG_2043", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5245/5279318313_1082dc9fa1_o.jpg", "secret": "585ef11564", "media": "photo", "latitude": "0", "id": "5279318313", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-12-13 20:50:20", "license": "5", "title": "IMG_2045", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5129/5279925812_dab10281dc_o.jpg", "secret": "cdd9f5e5ed", "media": "photo", "latitude": "0", "id": "5279925812", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-12-13 20:50:48", "license": "5", "title": "IMG_2046", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5004/5279927438_bb610f5530_o.jpg", "secret": "85be04e675", "media": "photo", "latitude": "0", "id": "5279927438", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-12-13 20:51:07", "license": "5", "title": "IMG_2047", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5241/5279322105_2cf619589a_o.jpg", "secret": "b02a325131", "media": "photo", "latitude": "0", "id": "5279322105", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-12-13 20:51:19", "license": "5", "title": "IMG_2048", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5210/5279323583_63f5bed7d7_o.jpg", "secret": "4fccdcc4dd", "media": "photo", "latitude": "0", "id": "5279323583", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-12-13 21:11:20", "license": "5", "title": "IMG_2059", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5162/5279930692_7796b12c06_o.jpg", "secret": "619548e513", "media": "photo", "latitude": "0", "id": "5279930692", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-12-13 21:15:53", "license": "5", "title": "IMG_2063", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5207/5279932374_c3db82eccf_o.jpg", "secret": "31a5ab6c82", "media": "photo", "latitude": "0", "id": "5279932374", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-12-13 21:16:48", "license": "5", "title": "IMG_2065", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5162/5279327951_4f314e0914_o.jpg", "secret": "be61cb0521", "media": "photo", "latitude": "0", "id": "5279327951", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-12-13 21:17:55", "license": "5", "title": "IMG_2068", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5043/5279934568_a1a49dc556_o.jpg", "secret": "7ddd6b82e4", "media": "photo", "latitude": "0", "id": "5279934568", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-12-13 21:18:05", "license": "5", "title": "IMG_2069", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5244/5279936298_7010ef3881_o.jpg", "secret": "a1b56d8df0", "media": "photo", "latitude": "0", "id": "5279936298", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-12-13 21:19:23", "license": "5", "title": "IMG_2070", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5286/5279937582_a949801683_o.jpg", "secret": "4c5f3ca4dd", "media": "photo", "latitude": "0", "id": "5279937582", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-12-13 21:19:56", "license": "5", "title": "IMG_2071", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5121/5279333037_9f52390d91_o.jpg", "secret": "1f4521fe9a", "media": "photo", "latitude": "0", "id": "5279333037", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-12-13 21:21:51", "license": "5", "title": "IMG_2074", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5288/5279939836_ae587e465f_o.jpg", "secret": "765d0e9c55", "media": "photo", "latitude": "0", "id": "5279939836", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-12-13 22:19:03", "license": "5", "title": "IMG_2077", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5245/5279336963_719ec5b8b1_o.jpg", "secret": "4536a27858", "media": "photo", "latitude": "0", "id": "5279336963", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-12-13 22:19:57", "license": "5", "title": "IMG_2080", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5043/5279943290_34475c4be3_o.jpg", "secret": "cb03e2589f", "media": "photo", "latitude": "0", "id": "5279943290", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-12-13 22:20:11", "license": "5", "title": "IMG_2081", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5122/5279339095_e9555bb162_o.jpg", "secret": "9d24cf01f1", "media": "photo", "latitude": "0", "id": "5279339095", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-12-13 22:30:27", "license": "5", "title": "IMG_2090", "text": "", "album_id": "72157625518410203", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5286/5279339897_1f7b3a13d7_o.jpg", "secret": "d080441d5b", "media": "photo", "latitude": "0", "id": "5279339897", "tags": "christmas vancouver stanleypark trainride"}, {"datetaken": "2010-07-14 17:08:26", "license": "3", "title": "", "text": "", "album_id": "72157624375756953", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4796069011_3353d9ee46_o.jpg", "secret": "fb2e8eefeb", "media": "photo", "latitude": "0", "id": "4796069011", "tags": "music band recycledpercussion"}, {"datetaken": "2010-07-14 17:08:33", "license": "3", "title": "", "text": "", "album_id": "72157624375756953", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4796069073_7c8050efbf_o.jpg", "secret": "250238ea86", "media": "photo", "latitude": "0", "id": "4796069073", "tags": "music band recycledpercussion"}, {"datetaken": "2010-07-14 17:08:41", "license": "3", "title": "", "text": "", "album_id": "72157624375756953", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4796069147_2525c0fbc4_o.jpg", "secret": "1e008af5ef", "media": "photo", "latitude": "0", "id": "4796069147", "tags": "music band recycledpercussion"}, {"datetaken": "2010-07-15 15:18:03", "license": "3", "title": "", "text": "", "album_id": "72157624375756953", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4819679671_76aef7d4ac_o.jpg", "secret": "9a40c44b4a", "media": "photo", "latitude": "0", "id": "4819679671", "tags": "people calgary couple fromabove calgarystampede"}, {"datetaken": "2010-07-15 15:19:41", "license": "3", "title": "", "text": "", "album_id": "72157624375756953", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4820301062_8ee99236ed_o.jpg", "secret": "6e24fde6ca", "media": "photo", "latitude": "0", "id": "4820301062", "tags": "people calgary shadows fromabove prize calgarystampede"}, {"datetaken": "2010-07-15 19:27:56", "license": "3", "title": "", "text": "", "album_id": "72157624375756953", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4820301100_d899a49f30_o.jpg", "secret": "3d3492cfb0", "media": "photo", "latitude": "0", "id": "4820301100", "tags": "people calgary walking crowd fair ferriswheel calgarystampede"}, {"datetaken": "2010-07-15 20:10:35", "license": "3", "title": "", "text": "", "album_id": "72157624375756953", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4820301172_82d23d0947_o.jpg", "secret": "a74edee4b5", "media": "photo", "latitude": "0", "id": "4820301172", "tags": "people calgary crowd calgarystampede"}, {"datetaken": "2010-07-15 20:23:33", "license": "3", "title": "Good Times", "text": "", "album_id": "72157624375756953", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4820301204_f203321760_o.jpg", "secret": "f8b4a77aca", "media": "photo", "latitude": "0", "id": "4820301204", "tags": "calgary stairs crowd stands calgarystampede chuckwagonraces"}, {"datetaken": "2010-07-15 20:38:10", "license": "3", "title": "", "text": "", "album_id": "72157624375756953", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4820301238_ac22323234_o.jpg", "secret": "2bc135c43c", "media": "photo", "latitude": "0", "id": "4820301238", "tags": "calgary focus cowboyhat calgarystampede"}, {"datetaken": "2010-07-15 21:14:14", "license": "3", "title": "", "text": "", "album_id": "72157624375756953", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4819679953_569b67f441_o.jpg", "secret": "665df172bf", "media": "photo", "latitude": "0", "id": "4819679953", "tags": "man calgary cowboyhat calgarystampede chuckwagonraces"}, {"datetaken": "2010-07-15 22:27:08", "license": "3", "title": "", "text": "", "album_id": "72157624375756953", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4114/4820301380_611647ce4e_o.jpg", "secret": "bc8174b0f8", "media": "photo", "latitude": "0", "id": "4820301380", "tags": "calgary night ramp motorbike calgarystampede"}, {"datetaken": "2010-07-15 23:34:31", "license": "3", "title": "", "text": "", "album_id": "72157624375756953", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4820301436_7b20d49e89_o.jpg", "secret": "cf7448c216", "media": "photo", "latitude": "0", "id": "4820301436", "tags": "calgary night centre ferriswheel calgarystampede"}, {"datetaken": "2010-07-15 23:37:38", "license": "3", "title": "", "text": "", "album_id": "72157624375756953", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4819680157_ac53920e20_o.jpg", "secret": "5718cfa0c8", "media": "photo", "latitude": "0", "id": "4819680157", "tags": "calgary night prizes teddybears calgarystampede"}, {"datetaken": "2010-07-15 23:39:06", "license": "3", "title": "", "text": "", "album_id": "72157624375756953", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4820301538_60b843b043_o.jpg", "secret": "ef38ff49fd", "media": "photo", "latitude": "0", "id": "4820301538", "tags": "calgary night ferriswheel calgarystampede"}, {"datetaken": "2010-07-15 23:39:16", "license": "3", "title": "", "text": "", "album_id": "72157624375756953", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4819680297_b608be96c4_o.jpg", "secret": "edf32728da", "media": "photo", "latitude": "0", "id": "4819680297", "tags": "girls friends calgary boys night candid group cowboyhat calgarystampede"}, {"datetaken": "2012-01-21 14:05:21", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.613333", "url_o": "https://farm8.staticflickr.com/7007/6748871811_1856bc0f3f_o.jpg", "secret": "19b76974ed", "media": "photo", "latitude": "54.974000", "id": "6748871811", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-21 15:05:54", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.613333", "url_o": "https://farm8.staticflickr.com/7161/6748870305_db8c368302_o.jpg", "secret": "463f5d61e7", "media": "photo", "latitude": "54.973000", "id": "6748870305", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-21 15:35:35", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.615166", "url_o": "https://farm8.staticflickr.com/7144/6748868655_3a1650f2f3_o.jpg", "secret": "d8f2691f03", "media": "photo", "latitude": "54.977833", "id": "6748868655", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-21 15:36:46", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.614333", "url_o": "https://farm8.staticflickr.com/7013/6748867351_f94340849e_o.jpg", "secret": "7a81261772", "media": "photo", "latitude": "54.978333", "id": "6748867351", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-21 17:08:10", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.598833", "url_o": "https://farm8.staticflickr.com/7030/6748865841_b1cd375a07_o.jpg", "secret": "6d6ab3f0b9", "media": "photo", "latitude": "54.970500", "id": "6748865841", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-21 17:09:56", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.599666", "url_o": "https://farm8.staticflickr.com/7152/6748863959_91131220f2_o.jpg", "secret": "4de7b7a5e7", "media": "photo", "latitude": "54.970333", "id": "6748863959", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-21 17:12:48", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.599500", "url_o": "https://farm8.staticflickr.com/7164/6748862159_8774b594c4_o.jpg", "secret": "0340b65a74", "media": "photo", "latitude": "54.970000", "id": "6748862159", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-21 17:13:21", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.599500", "url_o": "https://farm8.staticflickr.com/7145/6748860365_fc12135371_o.jpg", "secret": "73064201a0", "media": "photo", "latitude": "54.970000", "id": "6748860365", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-21 17:17:15", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.598000", "url_o": "https://farm8.staticflickr.com/7005/6748858569_bdc04fd396_o.jpg", "secret": "3ec72f0d7d", "media": "photo", "latitude": "54.970666", "id": "6748858569", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 10:20:37", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.597500", "url_o": "https://farm8.staticflickr.com/7030/6748902155_60c1e870d6_o.jpg", "secret": "9a7f0e2a03", "media": "photo", "latitude": "54.971000", "id": "6748902155", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 10:21:55", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.597833", "url_o": "https://farm8.staticflickr.com/7172/6748900515_9f72b0ee0f_o.jpg", "secret": "7724bdcee0", "media": "photo", "latitude": "54.971000", "id": "6748900515", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 10:24:03", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.598666", "url_o": "https://farm8.staticflickr.com/7153/6748899229_6a4419a0bc_o.jpg", "secret": "43aacb6322", "media": "photo", "latitude": "54.970666", "id": "6748899229", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 10:24:36", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.599000", "url_o": "https://farm8.staticflickr.com/7010/6748897771_72a0da52dc_o.jpg", "secret": "e7c9f96d56", "media": "photo", "latitude": "54.970500", "id": "6748897771", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 10:28:55", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.599333", "url_o": "https://farm8.staticflickr.com/7031/6748896245_33fede95ee_o.jpg", "secret": "7e5b99c378", "media": "photo", "latitude": "54.969833", "id": "6748896245", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 10:29:14", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.599333", "url_o": "https://farm8.staticflickr.com/7013/6748894507_56abc2321b_o.jpg", "secret": "08d9e05d05", "media": "photo", "latitude": "54.969833", "id": "6748894507", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 10:31:05", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.600833", "url_o": "https://farm8.staticflickr.com/7156/6748892961_6ee7f3670b_o.jpg", "secret": "949fb943fe", "media": "photo", "latitude": "54.970166", "id": "6748892961", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 10:35:49", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.604166", "url_o": "https://farm8.staticflickr.com/7031/6748891671_f909c30fe9_o.jpg", "secret": "583edf85f8", "media": "photo", "latitude": "54.969000", "id": "6748891671", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 10:39:13", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.606166", "url_o": "https://farm8.staticflickr.com/7022/6748890289_48b21e9674_o.jpg", "secret": "66a1bb7309", "media": "photo", "latitude": "54.968500", "id": "6748890289", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 10:40:32", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.606833", "url_o": "https://farm8.staticflickr.com/7001/6748889123_c3de49ec06_o.jpg", "secret": "c3ed0a534a", "media": "photo", "latitude": "54.968833", "id": "6748889123", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 10:43:14", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.607833", "url_o": "https://farm8.staticflickr.com/7020/6748887509_b82f2563fc_o.jpg", "secret": "44c3379b0c", "media": "photo", "latitude": "54.969333", "id": "6748887509", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 10:49:42", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.609833", "url_o": "https://farm8.staticflickr.com/7142/6748886053_71ed78ce3e_o.jpg", "secret": "b20e251ea5", "media": "photo", "latitude": "54.969166", "id": "6748886053", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 12:01:35", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.619833", "url_o": "https://farm8.staticflickr.com/7002/6748884141_4da250b23d_o.jpg", "secret": "023cbb3f58", "media": "photo", "latitude": "54.973500", "id": "6748884141", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 12:02:41", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.620000", "url_o": "https://farm8.staticflickr.com/7023/6748882575_fc45fee07c_o.jpg", "secret": "64f16c514f", "media": "photo", "latitude": "54.973166", "id": "6748882575", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 12:06:48", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.621166", "url_o": "https://farm8.staticflickr.com/7022/6748880569_0e28aa5840_o.jpg", "secret": "73aa7d2342", "media": "photo", "latitude": "54.971666", "id": "6748880569", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 12:09:04", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.620333", "url_o": "https://farm8.staticflickr.com/7035/6748878853_1108be75b2_o.jpg", "secret": "2d49f3aff1", "media": "photo", "latitude": "54.970666", "id": "6748878853", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 12:09:27", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.620666", "url_o": "https://farm8.staticflickr.com/7144/6748876809_0bd6feaa1c_o.jpg", "secret": "5b37406965", "media": "photo", "latitude": "54.970500", "id": "6748876809", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-22 13:06:02", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "-1.616666", "url_o": "https://farm8.staticflickr.com/7145/6748875211_e151bb7b45_o.jpg", "secret": "a9d4084eb8", "media": "photo", "latitude": "54.968666", "id": "6748875211", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2012-01-23 13:57:35", "license": "5", "title": "Newcastle-upon-Tyne 2012", "text": "", "album_id": "72157628996836227", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7143/6748873259_c9b398faf7_o.jpg", "secret": "67f302d9d4", "media": "photo", "latitude": "0", "id": "6748873259", "tags": "2012 newcastleupontyne neilthompson"}, {"datetaken": "2010-08-22 20:19:08", "license": "6", "title": "John Mayer", "text": "", "album_id": "72157624787675250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4918889103_bfa458a6fd_o.jpg", "secret": "f6e9e5ff5a", "media": "photo", "latitude": "0", "id": "4918889103", "tags": ""}, {"datetaken": "2010-08-22 20:30:04", "license": "6", "title": "John Mayer", "text": "", "album_id": "72157624787675250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4919489820_73a9ec98cd_o.jpg", "secret": "8647cc8035", "media": "photo", "latitude": "0", "id": "4919489820", "tags": ""}, {"datetaken": "2010-08-22 20:31:13", "license": "6", "title": "John Mayer", "text": "", "album_id": "72157624787675250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4918894951_f67f756eee_o.jpg", "secret": "9eacba7bea", "media": "photo", "latitude": "0", "id": "4918894951", "tags": ""}, {"datetaken": "2010-08-22 20:36:30", "license": "6", "title": "John Mayer", "text": "", "album_id": "72157624787675250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4919494178_354d6e3343_o.jpg", "secret": "9cf552e752", "media": "photo", "latitude": "0", "id": "4919494178", "tags": ""}, {"datetaken": "2010-08-22 20:38:52", "license": "6", "title": "John Mayer", "text": "", "album_id": "72157624787675250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4919496348_3b31f59f80_o.jpg", "secret": "4892841b67", "media": "photo", "latitude": "0", "id": "4919496348", "tags": ""}, {"datetaken": "2010-08-22 20:39:16", "license": "6", "title": "John Mayer", "text": "", "album_id": "72157624787675250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4918901015_fa7417857c_o.jpg", "secret": "0f2c069470", "media": "photo", "latitude": "0", "id": "4918901015", "tags": ""}, {"datetaken": "2010-08-22 20:39:20", "license": "6", "title": "John Mayer", "text": "", "album_id": "72157624787675250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4919501066_7b07a6f7dd_o.jpg", "secret": "e72bb077d6", "media": "photo", "latitude": "0", "id": "4919501066", "tags": ""}, {"datetaken": "2010-08-22 20:48:56", "license": "6", "title": "John Mayer", "text": "", "album_id": "72157624787675250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4919502552_f9863b5e38_o.jpg", "secret": "56384cb96f", "media": "photo", "latitude": "0", "id": "4919502552", "tags": ""}, {"datetaken": "2010-08-22 20:50:49", "license": "6", "title": "John Mayer", "text": "", "album_id": "72157624787675250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4919522896_5dcedde2d5_o.jpg", "secret": "f496ed7edf", "media": "photo", "latitude": "0", "id": "4919522896", "tags": ""}, {"datetaken": "2010-08-22 21:10:13", "license": "6", "title": "John Mayer", "text": "", "album_id": "72157624787675250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4918926421_3a5868a0e3_o.jpg", "secret": "8cb9dc8774", "media": "photo", "latitude": "0", "id": "4918926421", "tags": ""}, {"datetaken": "2010-08-22 21:20:30", "license": "6", "title": "John Mayer", "text": "", "album_id": "72157624787675250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4918928451_b001ed5184_o.jpg", "secret": "3c8043446d", "media": "photo", "latitude": "0", "id": "4918928451", "tags": ""}, {"datetaken": "2010-08-22 21:46:39", "license": "6", "title": "John Mayer", "text": "", "album_id": "72157624787675250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4918930493_498b069d6e_o.jpg", "secret": "7673533a77", "media": "photo", "latitude": "0", "id": "4918930493", "tags": ""}, {"datetaken": "2010-12-23 22:58:52", "license": "4", "title": "1000 Santas", "text": "", "album_id": "72157625537196801", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5127/5286861765_8aed6be476_o.jpg", "secret": "bb2eed4ca5", "media": "photo", "latitude": "0", "id": "5286861765", "tags": "park santa lumix santas childrens 1000 cheyenne 2010 lx5"}, {"datetaken": "2010-12-23 22:58:56", "license": "4", "title": "1000 Santas", "text": "", "album_id": "72157625537196801", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5210/5286861869_32ce47e576_o.jpg", "secret": "e759b9c5d3", "media": "photo", "latitude": "0", "id": "5286861869", "tags": "park santa lumix santas childrens 1000 cheyenne 2010 lx5"}, {"datetaken": "2010-12-23 22:58:57", "license": "4", "title": "1000 Santas", "text": "", "album_id": "72157625537196801", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5129/5287464062_cba70d6676_o.jpg", "secret": "083b70ed64", "media": "photo", "latitude": "0", "id": "5287464062", "tags": "park santa lumix santas childrens 1000 cheyenne 2010 lx5"}, {"datetaken": "2010-12-23 22:59:00", "license": "4", "title": "1000 Santas", "text": "", "album_id": "72157625537196801", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5049/5286861995_9bccf4f5db_o.jpg", "secret": "846abbb425", "media": "photo", "latitude": "0", "id": "5286861995", "tags": "park santa lumix santas childrens 1000 cheyenne 2010 lx5"}, {"datetaken": "2010-12-23 22:59:01", "license": "4", "title": "1000 Santas", "text": "", "album_id": "72157625537196801", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5282/5287464184_c594b841e2_o.jpg", "secret": "1b806cf2ff", "media": "photo", "latitude": "0", "id": "5287464184", "tags": "park santa lumix santas childrens 1000 cheyenne 2010 lx5"}, {"datetaken": "2010-12-23 22:59:02", "license": "4", "title": "1000 Santas", "text": "", "album_id": "72157625537196801", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5010/5286862095_957b24cab8_o.jpg", "secret": "46c5c5bf32", "media": "photo", "latitude": "0", "id": "5286862095", "tags": "park santa lumix santas childrens 1000 cheyenne 2010 lx5"}, {"datetaken": "2010-12-23 22:59:04", "license": "4", "title": "1000 Santas", "text": "", "album_id": "72157625537196801", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5170/5287464262_a52a22ceb5_o.jpg", "secret": "9fd41863a8", "media": "photo", "latitude": "0", "id": "5287464262", "tags": "park santa lumix santas childrens 1000 cheyenne 2010 lx5"}, {"datetaken": "2010-12-23 22:59:07", "license": "4", "title": "1000 Santas", "text": "", "album_id": "72157625537196801", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5287/5287464340_4fbe73f0cf_o.jpg", "secret": "db39d1da72", "media": "photo", "latitude": "0", "id": "5287464340", "tags": "park santa lumix santas childrens 1000 cheyenne 2010 lx5"}, {"datetaken": "2010-12-23 22:59:08", "license": "4", "title": "1000 Santas", "text": "", "album_id": "72157625537196801", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5087/5286862265_e66ddd6bd5_o.jpg", "secret": "bcdce5f8f5", "media": "photo", "latitude": "0", "id": "5286862265", "tags": "park santa lumix santas childrens 1000 cheyenne 2010 lx5"}, {"datetaken": "2010-12-23 22:59:09", "license": "4", "title": "1000 Santas", "text": "", "album_id": "72157625537196801", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5010/5286862311_e677b901cb_o.jpg", "secret": "b7b4036408", "media": "photo", "latitude": "0", "id": "5286862311", "tags": "park santa lumix santas childrens 1000 cheyenne 2010 lx5"}, {"datetaken": "2010-12-23 22:59:12", "license": "4", "title": "1000 Santas", "text": "", "album_id": "72157625537196801", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5128/5286862367_448784eecc_o.jpg", "secret": "27bdda9715", "media": "photo", "latitude": "0", "id": "5286862367", "tags": "park santa lumix santas childrens 1000 cheyenne 2010 lx5"}, {"datetaken": "2010-12-23 22:59:13", "license": "4", "title": "1000 Santas", "text": "", "album_id": "72157625537196801", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5128/5287464518_0d91e20aa4_o.jpg", "secret": "fe8ae1cd05", "media": "photo", "latitude": "0", "id": "5287464518", "tags": "park santa lumix santas childrens 1000 cheyenne 2010 lx5"}, {"datetaken": "2010-12-23 22:59:14", "license": "4", "title": "Evidently - Santa is ''In''\u2026", "text": "", "album_id": "72157625537196801", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5247/5286862435_647a9bece1_o.jpg", "secret": "9fdb924ec7", "media": "photo", "latitude": "0", "id": "5286862435", "tags": "park santa lumix santas childrens 1000 cheyenne 2010 lx5"}, {"datetaken": "2010-12-18 18:05:39", "license": "3", "title": "DSC_0288", "text": "", "album_id": "72157625658238134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5083/5285629288_b60bc739f6_o.jpg", "secret": "cb7c8fecd5", "media": "photo", "latitude": "0", "id": "5285629288", "tags": "christmas hongkong illumination \u9999\u6e2f \u8056\u8a95 \u71c8\u98fe 1881heritage"}, {"datetaken": "2010-12-18 18:10:20", "license": "3", "title": "DSC_0291", "text": "", "album_id": "72157625658238134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5165/5285628798_55e0b66440_o.jpg", "secret": "cfbfc92f3f", "media": "photo", "latitude": "0", "id": "5285628798", "tags": "christmas hongkong illumination \u9999\u6e2f \u8056\u8a95 \u71c8\u98fe 1881heritage"}, {"datetaken": "2010-12-18 18:17:21", "license": "3", "title": "DSC_0297", "text": "", "album_id": "72157625658238134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5247/5285030903_e7d18088b0_o.jpg", "secret": "229269feab", "media": "photo", "latitude": "0", "id": "5285030903", "tags": "christmas hongkong illumination \u9999\u6e2f \u8056\u8a95 \u71c8\u98fe 1881heritage"}, {"datetaken": "2010-12-18 18:20:14", "license": "3", "title": "DSC_0299", "text": "", "album_id": "72157625658238134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5166/5285627660_176bd3f39b_o.jpg", "secret": "39709e154e", "media": "photo", "latitude": "0", "id": "5285627660", "tags": "christmas hongkong illumination \u9999\u6e2f \u8056\u8a95 \u71c8\u98fe 1881heritage"}, {"datetaken": "2010-12-18 18:21:14", "license": "3", "title": "DSC_0300", "text": "", "album_id": "72157625658238134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5287/5285029821_0061490caf_o.jpg", "secret": "3c019f67b5", "media": "photo", "latitude": "0", "id": "5285029821", "tags": "christmas hongkong illumination \u9999\u6e2f \u8056\u8a95 \u71c8\u98fe 1881heritage"}, {"datetaken": "2010-12-18 18:35:20", "license": "3", "title": "DSC_0307", "text": "", "album_id": "72157625658238134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5247/5285626842_1cdc614bd6_o.jpg", "secret": "88da2cdd50", "media": "photo", "latitude": "0", "id": "5285626842", "tags": "1881heritage christmas \u71c8\u98fe \u8056\u8a95 illumination \u9999\u6e2f hongkong"}, {"datetaken": "2010-12-18 18:39:57", "license": "3", "title": "DSC_0310", "text": "", "album_id": "72157625658238134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5008/5285029119_33aca4ed52_o.jpg", "secret": "da8a0caa57", "media": "photo", "latitude": "0", "id": "5285029119", "tags": "christmas hongkong illumination \u9999\u6e2f \u8056\u8a95 \u71c8\u98fe 1881heritage"}, {"datetaken": "2010-12-18 18:43:47", "license": "3", "title": "DSC_0314", "text": "", "album_id": "72157625658238134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5286/5285625964_4e073f8312_o.jpg", "secret": "57a7f574b0", "media": "photo", "latitude": "0", "id": "5285625964", "tags": "christmas hongkong illumination \u9999\u6e2f \u8056\u8a95 \u71c8\u98fe 1881heritage"}, {"datetaken": "2010-12-18 19:01:11", "license": "3", "title": "DSC_0322", "text": "", "album_id": "72157625658238134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5205/5285028369_0ca9705b94_o.jpg", "secret": "cac89b1f3c", "media": "photo", "latitude": "0", "id": "5285028369", "tags": "christmas hongkong illumination \u9999\u6e2f \u8056\u8a95 \u71c8\u98fe 1881heritage"}, {"datetaken": "2010-12-18 19:14:16", "license": "3", "title": "DSC_0328", "text": "", "album_id": "72157625658238134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5087/5285027807_1bb9bc407f_o.jpg", "secret": "b215c907ed", "media": "photo", "latitude": "0", "id": "5285027807", "tags": "christmas hongkong illumination \u9999\u6e2f \u8056\u8a95 \u71c8\u98fe 1881heritage"}, {"datetaken": "2010-12-18 19:19:14", "license": "3", "title": "DSC_0330", "text": "", "album_id": "72157625658238134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5045/5285100181_efa5a2331a_o.jpg", "secret": "bd6a0ae50e", "media": "photo", "latitude": "0", "id": "5285100181", "tags": "christmas hongkong illumination \u9999\u6e2f \u8056\u8a95 \u71c8\u98fe 1881heritage"}, {"datetaken": "2010-12-18 19:31:16", "license": "3", "title": "DSC_0335", "text": "", "album_id": "72157625658238134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5125/5285624722_2abea8bcec_o.jpg", "secret": "c0e2372695", "media": "photo", "latitude": "0", "id": "5285624722", "tags": "christmas hongkong illumination \u9999\u6e2f \u8056\u8a95 \u71c8\u98fe 1881heritage"}, {"datetaken": "2010-12-18 19:36:21", "license": "3", "title": "DSC_0338", "text": "", "album_id": "72157625658238134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5044/5285027117_b882005190_o.jpg", "secret": "48004c1ca2", "media": "photo", "latitude": "0", "id": "5285027117", "tags": "christmas hongkong illumination \u9999\u6e2f \u8056\u8a95 \u71c8\u98fe 1881heritage"}, {"datetaken": "2010-12-18 19:37:58", "license": "3", "title": "DSC_0341", "text": "", "album_id": "72157625658238134", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5050/5285026771_89b0b1ca04_o.jpg", "secret": "cae62bcc61", "media": "photo", "latitude": "0", "id": "5285026771", "tags": "christmas hongkong illumination \u9999\u6e2f \u8056\u8a95 \u71c8\u98fe 1881heritage"}, {"datetaken": "2010-02-19 13:17:46", "license": "4", "title": "", "text": "", "album_id": "72157623537919024", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2716/4382350968_fcdae567da_o.jpg", "secret": "6a3bc14d1e", "media": "photo", "latitude": "0", "id": "4382350968", "tags": "flowers yellow celebration asianfestival"}, {"datetaken": "2010-02-19 13:18:13", "license": "4", "title": "", "text": "", "album_id": "72157623537919024", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2711/4386002987_dba79c84dc_o.jpg", "secret": "89a3ae2d0d", "media": "photo", "latitude": "0", "id": "4386002987", "tags": "lantern asianfestival"}, {"datetaken": "2010-02-19 13:18:28", "license": "4", "title": "Dragon Master", "text": "", "album_id": "72157623537919024", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4396632173_1e7845cbab_o.jpg", "secret": "817d79d539", "media": "photo", "latitude": "0", "id": "4396632173", "tags": "dragon asianfestival"}, {"datetaken": "2010-02-19 13:19:10", "license": "4", "title": "", "text": "", "album_id": "72157623537919024", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4396632583_d229049ce4_o.jpg", "secret": "7b061e3c40", "media": "photo", "latitude": "0", "id": "4396632583", "tags": "macro table design celebration fabric asianfestival"}, {"datetaken": "2010-02-19 13:19:31", "license": "4", "title": "Behold", "text": "", "album_id": "72157623537919024", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2712/4397399546_5134b32be1_o.jpg", "secret": "5c46cfc588", "media": "photo", "latitude": "0", "id": "4397399546", "tags": "macro celebration teapot asianfestival"}, {"datetaken": "2010-02-19 13:20:33", "license": "4", "title": "Intricate", "text": "", "album_id": "72157623537919024", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4386003291_536bef1e62_o.jpg", "secret": "429a216a03", "media": "photo", "latitude": "0", "id": "4386003291", "tags": "macro umbrella asianfest"}, {"datetaken": "2010-02-19 13:21:40", "license": "4", "title": "", "text": "", "album_id": "72157623537919024", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4396633393_f1e8f64b84_o.jpg", "secret": "566dab2e65", "media": "photo", "latitude": "0", "id": "4396633393", "tags": "happy celebration asianfestival"}, {"datetaken": "2010-02-19 13:22:30", "license": "4", "title": "Cherry Blossoms", "text": "", "album_id": "72157623537919024", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2791/4381604055_bd71c7eeef_o.jpg", "secret": "371c43c7c5", "media": "photo", "latitude": "0", "id": "4381604055", "tags": "pink flower macro cherryblossoms asianfestival"}, {"datetaken": "2010-02-19 13:22:46", "license": "4", "title": "Happy", "text": "", "album_id": "72157623537919024", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2725/4397400722_ed4542c9ac_o.jpg", "secret": "7656d80d0c", "media": "photo", "latitude": "0", "id": "4397400722", "tags": "happy celebration asianfestival"}, {"datetaken": "2010-02-19 13:23:07", "license": "4", "title": "Bottle It Up", "text": "", "album_id": "72157623537919024", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4381604475_80483440ce_o.jpg", "secret": "95759c567c", "media": "photo", "latitude": "0", "id": "4381604475", "tags": "flowers macro yellow celebration asianfestival sarahbareilles bottleitup"}, {"datetaken": "2010-02-19 15:05:29", "license": "4", "title": "", "text": "", "album_id": "72157623537919024", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4396635765_205db633dd_o.jpg", "secret": "72cdc212b6", "media": "photo", "latitude": "0", "id": "4396635765", "tags": "red hat hair head celebration asianfestival"}, {"datetaken": "2007-03-24 10:36:23", "license": "5", "title": "P1010214", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/432330481_30c0c736af_o.jpg", "secret": "3c73d4ffe2", "media": "photo", "latitude": "0", "id": "432330481", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 10:40:20", "license": "5", "title": "P1010229", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/432332236_b08be1ba3d_o.jpg", "secret": "3f3f00f159", "media": "photo", "latitude": "0", "id": "432332236", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 10:42:53", "license": "5", "title": "P1010240", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/432334895_c13533188f_o.jpg", "secret": "e9812d10cb", "media": "photo", "latitude": "0", "id": "432334895", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 10:44:43", "license": "5", "title": "P1010244", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/432335610_8730fb2d38_o.jpg", "secret": "bce2b3f72e", "media": "photo", "latitude": "0", "id": "432335610", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 10:46:10", "license": "5", "title": "P1010250", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/432337536_15b39b24dc_o.jpg", "secret": "3da3ab7415", "media": "photo", "latitude": "0", "id": "432337536", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 10:49:12", "license": "5", "title": "P1010259", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/432340856_44acd04342_o.jpg", "secret": "cb37d7ed94", "media": "photo", "latitude": "0", "id": "432340856", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 10:53:06", "license": "5", "title": "P1010271", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/432344097_36c2a26a72_o.jpg", "secret": "633dc90f10", "media": "photo", "latitude": "0", "id": "432344097", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 10:54:42", "license": "5", "title": "P1010275", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/432343796_ff99bfc299_o.jpg", "secret": "584be190ae", "media": "photo", "latitude": "0", "id": "432343796", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:04:10", "license": "5", "title": "P1010295", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/432347143_a6c4c02e99_o.jpg", "secret": "90ebeceee8", "media": "photo", "latitude": "0", "id": "432347143", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:04:28", "license": "5", "title": "P1010296", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/432348188_3f1173e08b_o.jpg", "secret": "88170b9deb", "media": "photo", "latitude": "0", "id": "432348188", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:05:12", "license": "5", "title": "P1010299", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/432350256_9128383d7b_o.jpg", "secret": "796639ccc7", "media": "photo", "latitude": "0", "id": "432350256", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:06:52", "license": "5", "title": "P1010301", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/432351528_00e1dc3a55_o.jpg", "secret": "a3d7a1829c", "media": "photo", "latitude": "0", "id": "432351528", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:08:50", "license": "5", "title": "P1010303", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/432353424_df04d6b21f_o.jpg", "secret": "30f6079c88", "media": "photo", "latitude": "0", "id": "432353424", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:14:20", "license": "5", "title": "P1010307", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/432358100_eda5eb2ed8_o.jpg", "secret": "f1f8d3cf45", "media": "photo", "latitude": "0", "id": "432358100", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:21:28", "license": "5", "title": "P1010311", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/432364615_c73ef68426_o.jpg", "secret": "4df3d2b6d6", "media": "photo", "latitude": "0", "id": "432364615", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:29:08", "license": "5", "title": "P1010317", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/432369409_11072284b3_o.jpg", "secret": "7d71aa5aae", "media": "photo", "latitude": "0", "id": "432369409", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:32:02", "license": "5", "title": "P1010326", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/432368976_09b04f39d2_o.jpg", "secret": "1177c06a15", "media": "photo", "latitude": "0", "id": "432368976", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:34:02", "license": "5", "title": "P1010333", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/432373337_52bd47bbb5_o.jpg", "secret": "78fffd3606", "media": "photo", "latitude": "0", "id": "432373337", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:35:02", "license": "5", "title": "P1010336", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/432374596_b7c8e7544f_o.jpg", "secret": "0640254c23", "media": "photo", "latitude": "0", "id": "432374596", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:35:32", "license": "5", "title": "P1010338", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/432376406_1217b0634b_o.jpg", "secret": "ec33232082", "media": "photo", "latitude": "0", "id": "432376406", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:35:56", "license": "5", "title": "P1010339", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/432378440_835f0966de_o.jpg", "secret": "a531d9f710", "media": "photo", "latitude": "0", "id": "432378440", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:38:00", "license": "5", "title": "P1010347", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/432382703_ce761114ff_o.jpg", "secret": "d3f5af4e0b", "media": "photo", "latitude": "0", "id": "432382703", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:39:14", "license": "5", "title": "P1010350", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/432382438_72a8be12aa_o.jpg", "secret": "36e2dd0d78", "media": "photo", "latitude": "0", "id": "432382438", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:40:55", "license": "5", "title": "P1010353", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/432385573_2c4d925323_o.jpg", "secret": "1ece2011a0", "media": "photo", "latitude": "0", "id": "432385573", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:45:28", "license": "5", "title": "P1010361", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/432385840_ac4de04eaf_o.jpg", "secret": "749eb49b44", "media": "photo", "latitude": "0", "id": "432385840", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:50:15", "license": "5", "title": "P1010363", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/432386846_42abd7fb96_o.jpg", "secret": "e7e3706a6f", "media": "photo", "latitude": "0", "id": "432386846", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2007-03-24 11:52:05", "license": "5", "title": "P1010369", "text": "", "album_id": "72157600029750956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/432392301_f85ed1fa43_o.jpg", "secret": "ed0dd0b6ff", "media": "photo", "latitude": "0", "id": "432392301", "tags": "park abandoned amusement playland dongmaideng"}, {"datetaken": "2010-08-15 21:17:17", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4913813179_6bebcf1f03_o.jpg", "secret": "cc295c75fd", "media": "photo", "latitude": "0", "id": "4913813179", "tags": "pink canada love quebec merci montreal donation parkingmeter"}, {"datetaken": "2010-08-16 16:02:50", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4919305094_0ec5b65e56_o.jpg", "secret": "1dbe66200e", "media": "photo", "latitude": "0", "id": "4919305094", "tags": "city canada skyscrapers quebec montreal"}, {"datetaken": "2010-08-16 16:53:40", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4913806861_815d1feac4_o.jpg", "secret": "ba766a9787", "media": "photo", "latitude": "0", "id": "4913806861", "tags": "canada feet quebec pavement montreal sandals footprints sidewalk trail footsteps"}, {"datetaken": "2010-08-16 18:01:33", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4915248145_988d5c00b7_o.jpg", "secret": "1db3253b4f", "media": "photo", "latitude": "0", "id": "4915248145", "tags": "woman canada stairs sitting quebec expression montreal resting"}, {"datetaken": "2010-08-16 18:19:29", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4915855092_0a3884dcca_o.jpg", "secret": "ecfb233722", "media": "photo", "latitude": "0", "id": "4915855092", "tags": "canada art graffiti message quebec montreal"}, {"datetaken": "2010-08-16 18:22:48", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4915256703_74deda91da_o.jpg", "secret": "301fc70fdc", "media": "photo", "latitude": "0", "id": "4915256703", "tags": "woman canada art graffiti quebec montreal anger shouting purplehair"}, {"datetaken": "2010-08-16 18:25:30", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4915263669_889a2b5ed3_o.jpg", "secret": "da285e7ae7", "media": "photo", "latitude": "0", "id": "4915263669", "tags": "canada color art graffiti intense quebec montreal creative horror"}, {"datetaken": "2010-08-16 18:26:21", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4915269021_7d30df0092_o.jpg", "secret": "c26598cdae", "media": "photo", "latitude": "0", "id": "4915269021", "tags": "door woman canada color art graffiti quebec montreal creative"}, {"datetaken": "2010-08-16 18:26:56", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4915273721_3855e7d66e_o.jpg", "secret": "fa5d579e94", "media": "photo", "latitude": "0", "id": "4915273721", "tags": "blackandwhite canada abstract art graffiti faces quebec montreal expressions"}, {"datetaken": "2010-08-16 18:29:08", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4915280421_4e77f0b63b_o.jpg", "secret": "a81aabbdd0", "media": "photo", "latitude": "0", "id": "4915280421", "tags": "door canada abstract man art graffiti message quebec montreal prisoner"}, {"datetaken": "2010-08-16 18:40:23", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4918714595_f01190fc44_o.jpg", "secret": "72b4eceda4", "media": "photo", "latitude": "0", "id": "4918714595", "tags": "canada church quebec montreal christian"}, {"datetaken": "2010-08-16 19:22:45", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4922299141_b38c4ea26d_o.jpg", "secret": "2c24196851", "media": "photo", "latitude": "0", "id": "4922299141", "tags": "red canada building architecture pub quebec montreal bricks oscarwildepub"}, {"datetaken": "2010-08-16 19:33:13", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4918722077_56f45d2f94_o.jpg", "secret": "1bb2d4c128", "media": "photo", "latitude": "0", "id": "4918722077", "tags": "street people canada quebec montreal gayvillage pedestrianzone"}, {"datetaken": "2010-08-16 19:51:30", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4922306347_fed3aace06_o.jpg", "secret": "60cbf39e82", "media": "photo", "latitude": "0", "id": "4922306347", "tags": "street people canada bars quebec pavement montreal restaurants sidewalk busy shops leisure lively"}, {"datetaken": "2010-08-16 20:27:52", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4913796937_b35c53991f_o.jpg", "secret": "587ba075af", "media": "photo", "latitude": "0", "id": "4913796937", "tags": "woman canada public architecture square women chinatown quebec montreal chinese tranquility meditation taichi"}, {"datetaken": "2010-08-16 20:29:47", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4918727713_cdf89dc862_o.jpg", "secret": "12dc4a3816", "media": "photo", "latitude": "0", "id": "4918727713", "tags": "street people canada fruits chinatown market quebec montreal sidewalk lively chinesecharacters"}, {"datetaken": "2010-08-16 20:33:44", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4922310793_3fb58fe445_o.jpg", "secret": "710f6df155", "media": "photo", "latitude": "0", "id": "4922310793", "tags": "canada statue stone chinatown symbol quebec montreal pillar lion"}, {"datetaken": "2010-08-16 21:33:08", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4919331572_13d9dfdb4f_o.jpg", "secret": "a70457908c", "media": "photo", "latitude": "0", "id": "4919331572", "tags": "park people lake canada quebec montreal relaxation"}, {"datetaken": "2010-08-16 21:36:13", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4912512253_c018649ccc_o.jpg", "secret": "4b7a631066", "media": "photo", "latitude": "0", "id": "4912512253", "tags": "canada sign ship quebec montreal name"}, {"datetaken": "2010-08-16 21:42:44", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4922315931_65f4af9c14_o.jpg", "secret": "b500b40bcc", "media": "photo", "latitude": "0", "id": "4922315931", "tags": "canada abstract architecture quebec montreal blocks quays rectangular quadratic"}, {"datetaken": "2010-08-16 21:50:51", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4919338038_012eec82cc_o.jpg", "secret": "1e6db73c0a", "media": "photo", "latitude": "0", "id": "4919338038", "tags": "canada ship quebec montreal quay"}, {"datetaken": "2010-08-16 22:01:18", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4922912252_7edbb07097_o.jpg", "secret": "41c808e5b0", "media": "photo", "latitude": "0", "id": "4922912252", "tags": "canada gate quebec montreal security locks"}, {"datetaken": "2010-08-16 22:03:03", "license": "3", "title": "", "text": "", "album_id": "72157624773266840", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4913122970_3ccb7889e2_o.jpg", "secret": "8e58577259", "media": "photo", "latitude": "0", "id": "4913122970", "tags": "canada emblem logo graffiti penguin quebec montreal linux"}, {"datetaken": "2009-07-10 04:24:27", "license": "3", "title": "DSC_1858", "text": "", "album_id": "72157623157578979", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4302095137_f5dc749ded_o.jpg", "secret": "f2d092efdb", "media": "photo", "latitude": "0", "id": "4302095137", "tags": ""}, {"datetaken": "2009-07-10 04:46:43", "license": "3", "title": "DSC_1868", "text": "", "album_id": "72157623157578979", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4303548215_8bd52ce241_o.jpg", "secret": "1cd3d05650", "media": "photo", "latitude": "0", "id": "4303548215", "tags": "birthday nyc friends brooklyn subway empirestatebuilding wonderwheel"}, {"datetaken": "2009-07-10 04:53:39", "license": "3", "title": "DSC_1874", "text": "", "album_id": "72157623157578979", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2764/4303551519_5a2dcc3112_o.jpg", "secret": "f899596054", "media": "photo", "latitude": "0", "id": "4303551519", "tags": "birthday nyc friends brooklyn subway empirestatebuilding wonderwheel"}, {"datetaken": "2009-07-10 05:47:20", "license": "3", "title": "DSC_1888", "text": "", "album_id": "72157623157578979", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4302843860_b95133f261_o.jpg", "secret": "a39a6b984b", "media": "photo", "latitude": "0", "id": "4302843860", "tags": ""}, {"datetaken": "2009-07-10 05:52:12", "license": "3", "title": "DSC_1889", "text": "", "album_id": "72157623157578979", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4304295806_2b4333bf63_o.jpg", "secret": "ffeefc0239", "media": "photo", "latitude": "0", "id": "4304295806", "tags": "birthday nyc friends brooklyn subway empirestatebuilding wonderwheel"}, {"datetaken": "2009-07-10 06:49:27", "license": "3", "title": "DSC_1908", "text": "", "album_id": "72157623157578979", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4303548503_3ac389eff0_o.jpg", "secret": "fdf8c805ff", "media": "photo", "latitude": "0", "id": "4303548503", "tags": "birthday nyc friends brooklyn subway empirestatebuilding wonderwheel"}, {"datetaken": "2009-07-10 23:16:18", "license": "3", "title": "DSC_1930", "text": "", "album_id": "72157623157578979", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2677/4304292998_578d39ecf7_o.jpg", "secret": "fb66d86d92", "media": "photo", "latitude": "0", "id": "4304292998", "tags": "birthday nyc friends brooklyn subway empirestatebuilding wonderwheel"}, {"datetaken": "2009-07-11 02:05:53", "license": "3", "title": "DSC_1934", "text": "", "album_id": "72157623157578979", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4302844158_4ec65dbfe0_o.jpg", "secret": "1c4f5b3c3c", "media": "photo", "latitude": "0", "id": "4302844158", "tags": ""}, {"datetaken": "2009-07-11 02:52:48", "license": "3", "title": "DSC_1935", "text": "", "album_id": "72157623157578979", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4302094475_7dc2e50808_o.jpg", "secret": "c7d9e53eb6", "media": "photo", "latitude": "0", "id": "4302094475", "tags": ""}, {"datetaken": "2009-07-11 07:36:45", "license": "3", "title": "DSC_1954", "text": "", "album_id": "72157623157578979", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4303549453_fd837d0877_o.jpg", "secret": "20f67fe053", "media": "photo", "latitude": "0", "id": "4303549453", "tags": "birthday nyc friends brooklyn subway empirestatebuilding wonderwheel"}, {"datetaken": "2009-07-11 07:41:04", "license": "3", "title": "DSC_1967", "text": "", "album_id": "72157623157578979", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4303550811_95c5316219_o.jpg", "secret": "b3003b72a3", "media": "photo", "latitude": "0", "id": "4303550811", "tags": "birthday nyc friends brooklyn subway empirestatebuilding wonderwheel"}, {"datetaken": "2010-03-18 18:15:28", "license": "3", "title": "Priscilla. Cambridge Circus.", "text": "", "album_id": "72157623706412802", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4464577012_d91e029ee1_o.jpg", "secret": "e39190e01c", "media": "photo", "latitude": "0", "id": "4464577012", "tags": ""}, {"datetaken": "2010-03-18 21:07:16", "license": "3", "title": "Les Miserables in miserable weather. Soho.", "text": "", "album_id": "72157623706412802", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4463800037_aa5e0b1d34_o.jpg", "secret": "00aa44988c", "media": "photo", "latitude": "0", "id": "4463800037", "tags": ""}, {"datetaken": "2010-03-18 21:11:33", "license": "3", "title": "Busty Model and Discs. Soho.", "text": "", "album_id": "72157623706412802", "longitude": "-0.134196", "url_o": "https://farm3.staticflickr.com/2679/4464577278_19e03e800c_o.jpg", "secret": "18a06fa7a5", "media": "photo", "latitude": "51.512735", "id": "4464577278", "tags": "green window rose model cd soho fake sexshop lingerie plastic brunette cheap busty"}, {"datetaken": "2010-03-18 21:19:35", "license": "3", "title": "The Crown and Two Chairmen Pub. Soho.", "text": "", "album_id": "72157623706412802", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4463800265_2fe50b6168_o.jpg", "secret": "0f77d928a7", "media": "photo", "latitude": "0", "id": "4463800265", "tags": ""}, {"datetaken": "2010-03-18 21:24:01", "license": "3", "title": "'Knocking shop' of 'Models'. Greek Street & Bateman StreetSoho", "text": "", "album_id": "72157623706412802", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4464577532_e4c08c36a5_o.jpg", "secret": "ba81d4d50a", "media": "photo", "latitude": "0", "id": "4464577532", "tags": "soho zegermanlusky"}, {"datetaken": "2010-03-18 21:25:33", "license": "3", "title": "The Pillars of Hercules. Greek Street. Soho", "text": "", "album_id": "72157623706412802", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4463800529_8c2f503825_o.jpg", "secret": "97be2c7b2b", "media": "photo", "latitude": "0", "id": "4463800529", "tags": ""}, {"datetaken": "2010-03-18 21:26:21", "license": "3", "title": "Gay Hussar. Greek Street. Soho", "text": "", "album_id": "72157623706412802", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2701/4463800657_39b05c3cb1_o.jpg", "secret": "2d0323838d", "media": "photo", "latitude": "0", "id": "4463800657", "tags": ""}, {"datetaken": "2010-03-18 21:29:54", "license": "3", "title": "The Edge Bar. Soho Square", "text": "", "album_id": "72157623706412802", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4464577888_b40513bb58_o.jpg", "secret": "863693b7fc", "media": "photo", "latitude": "0", "id": "4464577888", "tags": ""}, {"datetaken": "2010-03-18 21:31:32", "license": "3", "title": "Soho Square at night", "text": "", "album_id": "72157623706412802", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4463800935_4821fa803d_o.jpg", "secret": "fdb25198ce", "media": "photo", "latitude": "0", "id": "4463800935", "tags": ""}, {"datetaken": "2010-03-18 21:34:33", "license": "3", "title": "Centre Point from Soho Square", "text": "", "album_id": "72157623706412802", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4464578136_a89248b6db_o.jpg", "secret": "14fb227ab1", "media": "photo", "latitude": "0", "id": "4464578136", "tags": ""}, {"datetaken": "2010-03-18 21:39:03", "license": "3", "title": "Black Chinese Duck. Oxford Sreet.", "text": "", "album_id": "72157623706412802", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2747/4463801165_1acb1116bc_o.jpg", "secret": "a0d0a519d3", "media": "photo", "latitude": "0", "id": "4463801165", "tags": ""}, {"datetaken": "2010-03-18 21:39:47", "license": "3", "title": "Entrance to Tottenham Court Road Tube station", "text": "", "album_id": "72157623706412802", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4464578416_0565c7ab80_o.jpg", "secret": "e41d3a8ce5", "media": "photo", "latitude": "0", "id": "4464578416", "tags": ""}, {"datetaken": "2010-03-18 21:41:27", "license": "3", "title": "Escalators at Tottenham Court Road Tube station.", "text": "", "album_id": "72157623706412802", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4463801427_53cbe3e4fa_o.jpg", "secret": "8dacd9777f", "media": "photo", "latitude": "0", "id": "4463801427", "tags": ""}, {"datetaken": "2010-03-18 21:42:26", "license": "3", "title": "Tottenham Court Road Tube station", "text": "", "album_id": "72157623706412802", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4463801559_ecfee2df42_o.jpg", "secret": "fff96af4ce", "media": "photo", "latitude": "0", "id": "4463801559", "tags": ""}, {"datetaken": "2005-06-25 14:30:32", "license": "4", "title": "Geek squad car", "text": "", "album_id": "506155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21796552_6633654980_o.jpg", "secret": "6633654980", "media": "photo", "latitude": "0", "id": "21796552", "tags": "ny nyc coneyisland mermaidparade mermaidparade2005 newyork festivals parades carnivals carnival parade geeksquad"}, {"datetaken": "2005-06-25 14:30:46", "license": "4", "title": "Mobile Phone Mermaids", "text": "", "album_id": "506155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21796535_ab37c67265_o.jpg", "secret": "ab37c67265", "media": "photo", "latitude": "0", "id": "21796535", "tags": "ny nyc coneyisland mermaidparade mermaidparade2005 newyork festivals parades carnivals carnival parade mobilephones"}, {"datetaken": "2005-06-25 14:33:21", "license": "4", "title": "Sea Whalephant", "text": "", "album_id": "506155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21794972_9ec3d880d4_o.jpg", "secret": "9ec3d880d4", "media": "photo", "latitude": "0", "id": "21794972", "tags": "ny nyc coneyisland mermaidparade mermaidparade2005 newyork festivals parades carnivals carnival parade"}, {"datetaken": "2005-06-25 14:38:26", "license": "4", "title": "Citizen Octopus", "text": "", "album_id": "506155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21794914_5335983697_o.jpg", "secret": "5335983697", "media": "photo", "latitude": "0", "id": "21794914", "tags": "ny nyc coneyisland mermaidparade mermaidparade2005 newyork festivals parades carnivals carnival parade"}, {"datetaken": "2005-06-25 15:42:52", "license": "4", "title": "Deno's Wonder Wheel", "text": "", "album_id": "506155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21797299_1e8f85ec15_o.jpg", "secret": "1e8f85ec15", "media": "photo", "latitude": "0", "id": "21797299", "tags": "ny nyc coneyisland newyork ferriswheel"}, {"datetaken": "2005-06-25 15:57:06", "license": "4", "title": "The Cyclone", "text": "", "album_id": "506155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21797337_0ca26f01dc_o.jpg", "secret": "0ca26f01dc", "media": "photo", "latitude": "0", "id": "21797337", "tags": "nyc ny newyork coneyisland 4blog rollercoaster cyclone astroland"}, {"datetaken": "2005-06-25 16:04:46", "license": "4", "title": "Orange Memaid", "text": "", "album_id": "506155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21794933_621774cabe_o.jpg", "secret": "621774cabe", "media": "photo", "latitude": "0", "id": "21794933", "tags": "ny nyc coneyisland mermaidparade mermaidparade2005 newyork festivals parades carnivals carnival parade"}, {"datetaken": "2005-06-25 16:05:38", "license": "4", "title": "Old Lady Mermaid", "text": "", "album_id": "506155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21794986_172fd7b3b3_o.jpg", "secret": "172fd7b3b3", "media": "photo", "latitude": "0", "id": "21794986", "tags": "ny nyc coneyisland mermaidparade mermaidparade2005 newyork festivals parades carnivals carnival parade"}, {"datetaken": "2005-06-25 16:06:20", "license": "4", "title": "Goth Mermaids", "text": "", "album_id": "506155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21795014_e28fe6f3af_o.jpg", "secret": "e28fe6f3af", "media": "photo", "latitude": "0", "id": "21795014", "tags": "ny nyc coneyisland mermaidparade mermaidparade2005 newyork festivals parades carnivals carnival parade"}, {"datetaken": "2005-06-25 16:07:41", "license": "4", "title": "Parasol Mermaid", "text": "", "album_id": "506155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21795062_1dae8f6213_o.jpg", "secret": "1dae8f6213", "media": "photo", "latitude": "0", "id": "21795062", "tags": "ny nyc coneyisland mermaidparade mermaidparade2005 newyork festivals parades carnivals carnival parade"}, {"datetaken": "2005-06-25 16:08:23", "license": "4", "title": "Mr. Cancer & Friends", "text": "", "album_id": "506155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21795049_aa43f75da5_o.jpg", "secret": "aa43f75da5", "media": "photo", "latitude": "0", "id": "21795049", "tags": "ny nyc coneyisland mermaidparade mermaidparade2005 newyork festivals parades carnivals carnival parade"}, {"datetaken": "2005-06-25 16:09:07", "license": "4", "title": "Merman", "text": "", "album_id": "506155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21794897_7b86e0e709_o.jpg", "secret": "7b86e0e709", "media": "photo", "latitude": "0", "id": "21794897", "tags": "ny nyc coneyisland mermaidparade mermaidparade2005 newyork festivals parades carnivals carnival parade"}, {"datetaken": "2005-06-25 16:43:47", "license": "4", "title": "Shoot the freak", "text": "", "album_id": "506155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21797268_ecfb54e81e_o.jpg", "secret": "ecfb54e81e", "media": "photo", "latitude": "0", "id": "21797268", "tags": "ny nyc coneyisland newyork fair carnival violence boardwalk"}, {"datetaken": "2005-06-25 16:57:10", "license": "4", "title": "Glam Mermaids", "text": "", "album_id": "506155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21794949_2721b790bd_o.jpg", "secret": "2721b790bd", "media": "photo", "latitude": "0", "id": "21794949", "tags": "ny nyc coneyisland mermaidparade mermaidparade2005 newyork festivals parades carnivals carnival parade"}, {"datetaken": "2005-06-25 19:12:13", "license": "4", "title": "Deno's Wonder Wheel Amusement Park", "text": "", "album_id": "506155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21797284_a66744dd68_o.jpg", "secret": "a66744dd68", "media": "photo", "latitude": "0", "id": "21797284", "tags": "ny nyc coneyisland newyork ferriswheel"}, {"datetaken": "2010-09-26 09:33:57", "license": "1", "title": "Sucking on a Pink Thing at Six Flags", "text": "", "album_id": "72157625037470792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/5025709477_35c88210fe_o.jpg", "secret": "4325d2764f", "media": "photo", "latitude": "0", "id": "5025709477", "tags": ""}, {"datetaken": "2010-09-26 09:34:21", "license": "1", "title": "In the words of Jon Lovitz, \"Jealous?\"", "text": "", "album_id": "72157625037470792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/5025710599_978d4d9cf1_o.jpg", "secret": "dcdc64773b", "media": "photo", "latitude": "0", "id": "5025710599", "tags": ""}, {"datetaken": "2010-09-26 09:34:53", "license": "1", "title": "Tony Hawk ride at Six Flags", "text": "", "album_id": "72157625037470792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/5025712125_938ff1c5fc_o.jpg", "secret": "12e89b5c27", "media": "photo", "latitude": "0", "id": "5025712125", "tags": ""}, {"datetaken": "2010-09-26 09:35:21", "license": "1", "title": "Carole and Greg at Six Flags", "text": "", "album_id": "72157625037470792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/5025713321_a783c12d4e_o.jpg", "secret": "6d764f0e37", "media": "photo", "latitude": "0", "id": "5025713321", "tags": ""}, {"datetaken": "2010-09-26 09:36:22", "license": "1", "title": "Play rope sculpture thingy", "text": "", "album_id": "72157625037470792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/5025716421_4a991bac4d_o.jpg", "secret": "6c891af6a7", "media": "photo", "latitude": "0", "id": "5025716421", "tags": ""}, {"datetaken": "2010-09-26 09:36:48", "license": "1", "title": "Joolie", "text": "", "album_id": "72157625037470792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/5025717729_7d66f01794_o.jpg", "secret": "206c2d026d", "media": "photo", "latitude": "0", "id": "5025717729", "tags": ""}, {"datetaken": "2010-09-26 09:37:11", "license": "1", "title": "Carole", "text": "", "album_id": "72157625037470792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/5025718937_620ef98f23_o.jpg", "secret": "89c77ace4e", "media": "photo", "latitude": "0", "id": "5025718937", "tags": ""}, {"datetaken": "2010-09-26 09:37:37", "license": "1", "title": "Modern Art Museum of Fort Worth", "text": "", "album_id": "72157625037470792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/5025720169_424e539590_o.jpg", "secret": "b96eb943e8", "media": "photo", "latitude": "0", "id": "5025720169", "tags": ""}, {"datetaken": "2010-09-26 09:37:54", "license": "1", "title": "Vortex by Richard Serra", "text": "", "album_id": "72157625037470792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4124/5025720965_7f78e7334b_o.jpg", "secret": "876ca44f66", "media": "photo", "latitude": "0", "id": "5025720965", "tags": ""}, {"datetaken": "2010-09-26 09:40:26", "license": "1", "title": "Modern Art Museum of Fort Worth", "text": "", "album_id": "72157625037470792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4124/5026343048_79672a1575_o.jpg", "secret": "45198ec86e", "media": "photo", "latitude": "0", "id": "5026343048", "tags": ""}, {"datetaken": "2010-09-26 09:40:35", "license": "1", "title": "Vortex by Richard Serra", "text": "", "album_id": "72157625037470792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4092/5025728721_3da3004707_o.jpg", "secret": "ef49574633", "media": "photo", "latitude": "0", "id": "5025728721", "tags": ""}, {"datetaken": "2010-09-26 09:41:01", "license": "1", "title": "Vortex by Richard Serra", "text": "", "album_id": "72157625037470792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/5025729915_acabe4ca9d_o.jpg", "secret": "f07700e993", "media": "photo", "latitude": "0", "id": "5025729915", "tags": ""}, {"datetaken": "2010-05-27 17:00:26", "license": "2", "title": "2010\u5e7405\u670827\u65e5", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3084/4645229727_f34f7717b6_o.jpg", "secret": "93356fa5ca", "media": "photo", "latitude": "0", "id": "4645229727", "tags": ""}, {"datetaken": "2010-05-27 17:01:40", "license": "2", "title": "2010\u5e7405\u670827\u65e5-2", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4645845260_06337cf834_o.jpg", "secret": "af37611446", "media": "photo", "latitude": "0", "id": "4645845260", "tags": ""}, {"datetaken": "2010-05-27 17:02:40", "license": "2", "title": "2010\u5e7405\u670827\u65e5-3", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4645846836_e9268be568_o.jpg", "secret": "df6634eef4", "media": "photo", "latitude": "0", "id": "4645846836", "tags": ""}, {"datetaken": "2010-05-27 17:03:53", "license": "2", "title": "2010\u5e7405\u670827\u65e5-4", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4645234855_e7140e745f_o.jpg", "secret": "e0665b464a", "media": "photo", "latitude": "0", "id": "4645234855", "tags": ""}, {"datetaken": "2010-05-27 17:04:49", "license": "2", "title": "2010\u5e7405\u670827\u65e5-5", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4645236961_c10af06705_o.jpg", "secret": "89312818e1", "media": "photo", "latitude": "0", "id": "4645236961", "tags": ""}, {"datetaken": "2010-05-27 17:13:48", "license": "2", "title": "2010\u5e7405\u670827\u65e5-6", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4645853030_24eb3ac8f2_o.jpg", "secret": "3b2d13fd27", "media": "photo", "latitude": "0", "id": "4645853030", "tags": ""}, {"datetaken": "2010-05-27 18:16:33", "license": "2", "title": "2010\u5e7405\u670827\u65e5-7", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3563/4645245153_1064d57f6b_o.jpg", "secret": "15f8d59fc3", "media": "photo", "latitude": "0", "id": "4645245153", "tags": ""}, {"datetaken": "2010-05-27 19:51:37", "license": "2", "title": "2010\u5e7405\u670827\u65e5-8", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3219/4645861378_1ac77bdebe_o.jpg", "secret": "160a9c5c1a", "media": "photo", "latitude": "0", "id": "4645861378", "tags": ""}, {"datetaken": "2010-05-27 19:51:45", "license": "2", "title": "2010\u5e7405\u670827\u65e5-9", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4645248379_75abfd0518_o.jpg", "secret": "0dfcd55abc", "media": "photo", "latitude": "0", "id": "4645248379", "tags": ""}, {"datetaken": "2010-05-27 20:50:02", "license": "2", "title": "2010\u5e7405\u670827\u65e5-10", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4645250893_7b8098e01f_o.jpg", "secret": "84fb0b71f6", "media": "photo", "latitude": "0", "id": "4645250893", "tags": ""}, {"datetaken": "2010-05-27 20:50:07", "license": "2", "title": "2010\u5e7405\u670827\u65e5-11", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4645867314_3e13e3433b_o.jpg", "secret": "44f5beb1d2", "media": "photo", "latitude": "0", "id": "4645867314", "tags": ""}, {"datetaken": "2010-05-27 20:51:29", "license": "2", "title": "2010\u5e7405\u670827\u65e5-12", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3416/4645869014_3aa287d667_o.jpg", "secret": "63728cc180", "media": "photo", "latitude": "0", "id": "4645869014", "tags": ""}, {"datetaken": "2010-05-27 20:58:49", "license": "2", "title": "2010\u5e7405\u670827\u65e5-13", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3376/4645870656_da886294cd_o.jpg", "secret": "f555c065b6", "media": "photo", "latitude": "0", "id": "4645870656", "tags": ""}, {"datetaken": "2010-05-27 23:01:25", "license": "2", "title": "2010\u5e7405\u670827\u65e5-14", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4645872412_5026f97173_o.jpg", "secret": "36e617b231", "media": "photo", "latitude": "0", "id": "4645872412", "tags": "club shanghai jz"}, {"datetaken": "2010-05-27 23:04:02", "license": "2", "title": "2010\u5e7405\u670827\u65e5-15", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4645874110_63cde79b8b_o.jpg", "secret": "ae4d99f744", "media": "photo", "latitude": "0", "id": "4645874110", "tags": "club shanghai jz"}, {"datetaken": "2010-05-27 23:04:12", "license": "2", "title": "2010\u5e7405\u670827\u65e5-16", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3375/4645875854_1b36a0bb98_o.jpg", "secret": "2b18680546", "media": "photo", "latitude": "0", "id": "4645875854", "tags": "club shanghai jz"}, {"datetaken": "2010-05-27 23:04:25", "license": "2", "title": "2010\u5e7405\u670827\u65e5-17", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3396/4645877828_ff4eb872bf_o.jpg", "secret": "34315b3a76", "media": "photo", "latitude": "0", "id": "4645877828", "tags": "club shanghai jz"}, {"datetaken": "2010-05-27 23:13:28", "license": "2", "title": "2010\u5e7405\u670827\u65e5", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4645321359_452c62fcf8_o.jpg", "secret": "7899ce3829", "media": "photo", "latitude": "0", "id": "4645321359", "tags": "club shanghai jz"}, {"datetaken": "2010-05-27 23:20:54", "license": "2", "title": "2010\u5e7405\u670827\u65e5-2", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4645937876_ccdbda6993_o.jpg", "secret": "cfa38bac2e", "media": "photo", "latitude": "0", "id": "4645937876", "tags": "club shanghai jz"}, {"datetaken": "2010-05-27 23:21:08", "license": "2", "title": "2010\u5e7405\u670827\u65e5-3", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4645325103_9102eb8e3b_o.jpg", "secret": "e155c9cec9", "media": "photo", "latitude": "0", "id": "4645325103", "tags": "club shanghai jz"}, {"datetaken": "2010-05-27 23:21:23", "license": "2", "title": "2010\u5e7405\u670827\u65e5-4", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4645326929_1f23d3b5ce_o.jpg", "secret": "f9aa3c1994", "media": "photo", "latitude": "0", "id": "4645326929", "tags": "club shanghai jz"}, {"datetaken": "2010-05-28 00:16:39", "license": "2", "title": "2010\u5e7405\u670828\u65e5", "text": "", "album_id": "72157624025208221", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3405/4645328501_8c9a299529_o.jpg", "secret": "dffcc838dd", "media": "photo", "latitude": "0", "id": "4645328501", "tags": "club shanghai jz"}, {"datetaken": "2010-05-22 11:46:49", "license": "2", "title": "Paisagem Urbana", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3347/4644547797_c69647c6c9_o.jpg", "secret": "044bfe1860", "media": "photo", "latitude": "0", "id": "4644547797", "tags": ""}, {"datetaken": "2010-05-22 12:03:37", "license": "2", "title": "Templo Maia", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4645164472_3ce13c7e5d_o.jpg", "secret": "6cdba733ac", "media": "photo", "latitude": "0", "id": "4645164472", "tags": ""}, {"datetaken": "2010-05-22 13:23:47", "license": "2", "title": "Journey to Center Of the Earth", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4645164582_0b2c9de689_o.jpg", "secret": "fc1c42b0fe", "media": "photo", "latitude": "0", "id": "4645164582", "tags": ""}, {"datetaken": "2010-05-22 14:12:14", "license": "2", "title": "Fogo e \u00c1gua", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3344/4645164728_44b504e2a4_o.jpg", "secret": "efb657d218", "media": "photo", "latitude": "0", "id": "4645164728", "tags": ""}, {"datetaken": "2010-05-22 14:19:19", "license": "2", "title": "????", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4645164796_cfc6640b4d_o.jpg", "secret": "67b7bbceb0", "media": "photo", "latitude": "0", "id": "4645164796", "tags": ""}, {"datetaken": "2010-05-22 15:20:30", "license": "2", "title": "Paisagem Turca", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4645164864_f5d795cfa0_o.jpg", "secret": "d73422b710", "media": "photo", "latitude": "0", "id": "4645164864", "tags": ""}, {"datetaken": "2010-05-22 15:35:17", "license": "2", "title": "Paisagem Arabe", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4644547169_b269d81228_o.jpg", "secret": "cb0850c7b5", "media": "photo", "latitude": "0", "id": "4644547169", "tags": ""}, {"datetaken": "2010-05-22 15:46:46", "license": "2", "title": "Verde Jade", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3364/4645163590_9b16f91aac_o.jpg", "secret": "8f9c7672ee", "media": "photo", "latitude": "0", "id": "4645163590", "tags": ""}, {"datetaken": "2010-05-22 15:48:19", "license": "2", "title": "Paisagem Arabe", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4645164944_19b8193bd6_o.jpg", "secret": "6620f140d1", "media": "photo", "latitude": "0", "id": "4645164944", "tags": ""}, {"datetaken": "2010-05-22 15:49:09", "license": "2", "title": "Paisagem Turca", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3413/4645165038_b72dce8a65_o.jpg", "secret": "e44115fb25", "media": "photo", "latitude": "0", "id": "4645165038", "tags": ""}, {"datetaken": "2010-05-22 15:51:28", "license": "2", "title": "Vende-se", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4644546933_a5b55c5450_o.jpg", "secret": "4e75c15afc", "media": "photo", "latitude": "0", "id": "4644546933", "tags": ""}, {"datetaken": "2010-05-22 15:58:38", "license": "2", "title": "Azul Turquesa", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4645165120_f30d18ea73_o.jpg", "secret": "3cb17dd6e4", "media": "photo", "latitude": "0", "id": "4645165120", "tags": ""}, {"datetaken": "2010-05-22 16:07:39", "license": "2", "title": "Banana", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4645165226_8d08a4f6af_o.jpg", "secret": "64fc4231a5", "media": "photo", "latitude": "0", "id": "4645165226", "tags": ""}, {"datetaken": "2010-05-22 16:42:56", "license": "2", "title": "The Grand Hotel!!", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4645165332_084625aba7_o.jpg", "secret": "02011cbdfb", "media": "photo", "latitude": "0", "id": "4645165332", "tags": ""}, {"datetaken": "2010-05-22 16:44:29", "license": "2", "title": "Ponte de M\u00e1rmore", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3354/4644547307_6014efa7c3_o.jpg", "secret": "96f7e66c79", "media": "photo", "latitude": "0", "id": "4644547307", "tags": ""}, {"datetaken": "2010-05-22 16:56:58", "license": "2", "title": "Am\u00e9rica anos 70", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4644548973_5d60512182_o.jpg", "secret": "f20a36f1e9", "media": "photo", "latitude": "0", "id": "4644548973", "tags": ""}, {"datetaken": "2010-05-22 17:24:03", "license": "2", "title": "Vila Italiana", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3370/4644546819_e756f58247_o.jpg", "secret": "255d66ba58", "media": "photo", "latitude": "0", "id": "4644546819", "tags": ""}, {"datetaken": "2010-05-22 17:24:43", "license": "2", "title": "Vila Italiana", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4644547421_f98fd956b2_o.jpg", "secret": "1ee7dd5853", "media": "photo", "latitude": "0", "id": "4644547421", "tags": ""}, {"datetaken": "2010-05-22 17:25:45", "license": "2", "title": "Aconchego", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4645164114_874f039995_o.jpg", "secret": "e2ac5e8f8b", "media": "photo", "latitude": "0", "id": "4645164114", "tags": ""}, {"datetaken": "2010-05-22 18:54:49", "license": "2", "title": "Night", "text": "", "album_id": "72157624451319642", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4644547655_ca6b0d3b1a_o.jpg", "secret": "5029a38f82", "media": "photo", "latitude": "0", "id": "4644547655", "tags": ""}, {"datetaken": "2010-07-26 18:32:01", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4107/4833744160_6575715da6_o.jpg", "secret": "21d932d24d", "media": "photo", "latitude": "57.710701", "id": "4833744160", "tags": ""}, {"datetaken": "2010-07-26 18:35:01", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4085/4833744238_61c4040ca2_o.jpg", "secret": "70bf2ac182", "media": "photo", "latitude": "57.710701", "id": "4833744238", "tags": ""}, {"datetaken": "2010-07-26 18:44:46", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4149/4833103265_f7866a283d_o.jpg", "secret": "78c0b98c36", "media": "photo", "latitude": "57.710701", "id": "4833103265", "tags": ""}, {"datetaken": "2010-07-26 18:44:46", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4111/4833743586_41b8735254_o.jpg", "secret": "803ef1fe8d", "media": "photo", "latitude": "57.710701", "id": "4833743586", "tags": ""}, {"datetaken": "2010-07-26 18:44:59", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4104/4833743664_6c0ab1a100_o.jpg", "secret": "daea4b1897", "media": "photo", "latitude": "57.710701", "id": "4833743664", "tags": ""}, {"datetaken": "2010-07-26 18:44:59", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4106/4833715150_d30103dc83_o.jpg", "secret": "35f2f0086d", "media": "photo", "latitude": "57.710701", "id": "4833715150", "tags": ""}, {"datetaken": "2010-07-26 18:45:25", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4108/4833743770_69635071df_o.jpg", "secret": "31dc73bf47", "media": "photo", "latitude": "57.710701", "id": "4833743770", "tags": ""}, {"datetaken": "2010-07-26 18:45:25", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4083/4833715976_3a77702da6_o.jpg", "secret": "2af5a0f3ae", "media": "photo", "latitude": "57.710701", "id": "4833715976", "tags": ""}, {"datetaken": "2010-07-26 18:45:39", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4146/4833743878_5624dacb4e_o.jpg", "secret": "2debc2bef8", "media": "photo", "latitude": "57.710701", "id": "4833743878", "tags": ""}, {"datetaken": "2010-07-26 18:46:19", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4092/4833133357_1f741823a0_o.jpg", "secret": "5870eaf2b2", "media": "photo", "latitude": "57.710701", "id": "4833133357", "tags": ""}, {"datetaken": "2010-07-26 18:46:38", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4084/4833133275_b6e3cba29c_o.jpg", "secret": "a9009768b5", "media": "photo", "latitude": "57.710701", "id": "4833133275", "tags": ""}, {"datetaken": "2010-07-26 18:47:06", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4124/4833133441_76070154da_o.jpg", "secret": "cda470c71c", "media": "photo", "latitude": "57.710701", "id": "4833133441", "tags": ""}, {"datetaken": "2010-07-26 18:47:49", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4127/4833744670_4ec1719f08_o.jpg", "secret": "ffb2ef945e", "media": "photo", "latitude": "57.710701", "id": "4833744670", "tags": ""}, {"datetaken": "2010-07-26 18:47:56", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4108/4833133709_2cd5b05577_o.jpg", "secret": "ff430413e8", "media": "photo", "latitude": "57.710701", "id": "4833133709", "tags": ""}, {"datetaken": "2010-07-26 18:48:13", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4151/4833132857_d83460ebbd_o.jpg", "secret": "ac16693751", "media": "photo", "latitude": "57.710701", "id": "4833132857", "tags": ""}, {"datetaken": "2010-07-26 18:49:13", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4104/4833133619_3b41b1d2a7_o.jpg", "secret": "f49066f7b9", "media": "photo", "latitude": "57.710701", "id": "4833133619", "tags": ""}, {"datetaken": "2010-07-26 18:50:43", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4148/4833133937_b46d65cb1b_o.jpg", "secret": "8bd85a2339", "media": "photo", "latitude": "57.710701", "id": "4833133937", "tags": ""}, {"datetaken": "2010-07-26 18:51:18", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4146/4833132943_dfa6c1963a_o.jpg", "secret": "56e5289dea", "media": "photo", "latitude": "57.710701", "id": "4833132943", "tags": ""}, {"datetaken": "2010-07-26 18:51:48", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4103/4833745010_c0ffd7fce0_o.jpg", "secret": "fa8fde718d", "media": "photo", "latitude": "57.710701", "id": "4833745010", "tags": ""}, {"datetaken": "2010-07-27 08:39:39", "license": "2", "title": "", "text": "", "album_id": "72157624467440699", "longitude": "11.966106", "url_o": "https://farm5.staticflickr.com/4151/4833134023_ec2866aa97_o.jpg", "secret": "32f1569b83", "media": "photo", "latitude": "57.710701", "id": "4833134023", "tags": ""}, {"datetaken": "2010-07-31 11:12:38", "license": "3", "title": "Nathan's", "text": "", "album_id": "72157624857633031", "longitude": "-73.983263", "url_o": "https://farm5.staticflickr.com/4102/4905730470_fc6eb3aaa6_o.jpg", "secret": "f6de84abd7", "media": "photo", "latitude": "40.572174", "id": "4905730470", "tags": "street nyc summer food ny newyork brooklyn coneyisland hotdog nikon eating competition august chestnut 1855mm nikkor nathans 2010 kobayashi stillwell d40"}, {"datetaken": "2010-07-31 11:20:21", "license": "3", "title": "Riegelmann Boardwalk", "text": "", "album_id": "72157624857633031", "longitude": "-73.984057", "url_o": "https://farm5.staticflickr.com/4123/4933197254_ea2020f1cf_o.jpg", "secret": "b98e88828b", "media": "photo", "latitude": "40.571963", "id": "4933197254", "tags": "ocean city nyc summer sky food ny newyork beach water wheel brooklyn coneyisland nikon july ferris games atlantic boardwalk rides 1855mm nikkor wonderwheel 2010 nyaquarium d40 riegelmann"}, {"datetaken": "2010-07-31 11:20:41", "license": "3", "title": "Lamp Post", "text": "", "album_id": "72157624857633031", "longitude": "-73.983156", "url_o": "https://farm5.staticflickr.com/4138/4932604229_b2bf43d64d_o.jpg", "secret": "469f9f2a0f", "media": "photo", "latitude": "40.572044", "id": "4932604229", "tags": "ocean city nyc blue summer sky ny newyork beach water lamp sign brooklyn coneyisland nikon post flag july boardwalk 1855mm nikkor 2010 d40"}, {"datetaken": "2010-07-31 11:23:47", "license": "3", "title": "Shoot the Freak", "text": "", "album_id": "72157624857633031", "longitude": "-73.984529", "url_o": "https://farm5.staticflickr.com/4119/4933197530_4a2e4e2caf_o.jpg", "secret": "eb37924ce9", "media": "photo", "latitude": "40.571914", "id": "4933197530", "tags": "ocean city nyc summer ny newyork beach water brooklyn coneyisland nikon july boardwalk 1855mm nikkor 2010 d40"}, {"datetaken": "2010-07-31 11:34:58", "license": "3", "title": "Cyclone", "text": "", "album_id": "72157624857633031", "longitude": "-73.983886", "url_o": "https://farm5.staticflickr.com/4095/4930573882_b851d4ec9b_o.jpg", "secret": "86652d8e54", "media": "photo", "latitude": "40.574636", "id": "4930573882", "tags": "park nyc summer usa ny newyork beach brooklyn america coneyisland amusement nikon boardwalk theme rides rollercoaster 1855mm nikkor cyclone 2010 astroland d40"}, {"datetaken": "2010-07-31 11:40:14", "license": "3", "title": "Coney Island Beach", "text": "", "album_id": "72157624857633031", "longitude": "-73.985302", "url_o": "https://farm5.staticflickr.com/4080/4932604515_57a5a4c81a_o.jpg", "secret": "6dc3e8797f", "media": "photo", "latitude": "40.571669", "id": "4932604515", "tags": "ocean city nyc summer ny newyork beach water brooklyn coneyisland nikon july boardwalk 1855mm nikkor 2010 d40"}, {"datetaken": "2010-07-31 11:43:19", "license": "3", "title": "Surfs Up", "text": "", "album_id": "72157624857633031", "longitude": "-73.986117", "url_o": "https://farm5.staticflickr.com/4120/4933197786_43245811ae_o.jpg", "secret": "29fc9edc29", "media": "photo", "latitude": "40.571881", "id": "4933197786", "tags": "ocean city nyc summer ny newyork beach water brooklyn coneyisland nikon july boardwalk 1855mm nikkor 2010 d40"}, {"datetaken": "2010-07-31 13:12:58", "license": "3", "title": "No Swimming", "text": "", "album_id": "72157624857633031", "longitude": "-73.985044", "url_o": "https://farm5.staticflickr.com/4081/4929984201_9022e4dcaf_o.jpg", "secret": "a17d6aaabb", "media": "photo", "latitude": "40.572533", "id": "4929984201", "tags": "nyc summer people usa ny newyork beach wheel sign brooklyn america coneyisland pier sand nikon july ferris boardwalk 1855mm nikkor 2010 noswimming d40"}, {"datetaken": "2010-07-31 13:15:15", "license": "3", "title": "Coney Island", "text": "", "album_id": "72157624857633031", "longitude": "-73.984529", "url_o": "https://farm5.staticflickr.com/4118/4933197942_f3dee6245a_o.jpg", "secret": "f5a7bcaa54", "media": "photo", "latitude": "40.572093", "id": "4933197942", "tags": "ocean city nyc summer ny newyork beach water brooklyn coneyisland nikon july boardwalk cyclones 1855mm nikkor wonderwheel 2010 nyaquarium d40 riegelmann"}, {"datetaken": "2010-07-31 13:21:50", "license": "3", "title": "The Eiffel Tower of Brooklyn", "text": "", "album_id": "72157624857633031", "longitude": "-73.987576", "url_o": "https://farm5.staticflickr.com/4112/4946000811_0a3ea134b3_o.jpg", "secret": "7c36b60e0f", "media": "photo", "latitude": "40.571718", "id": "4946000811", "tags": "city nyc red summer sky ny newyork tower beach brooklyn clouds island jump nikon eiffeltower 1855mm coney nikkor parachute 2010 steeplechase d40"}, {"datetaken": "2010-08-28 11:06:41", "license": "2", "title": "IMG_0179.JPG", "text": "", "album_id": "72157625954089295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4933624127_5c603fd7d3_o.jpg", "secret": "c8a08ee97d", "media": "photo", "latitude": "0", "id": "4933624127", "tags": "eyefi"}, {"datetaken": "2010-08-28 11:09:31", "license": "2", "title": "IMG_0183.JPG", "text": "", "album_id": "72157625954089295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4934219324_da382aea11_o.jpg", "secret": "5765f6c6a8", "media": "photo", "latitude": "0", "id": "4934219324", "tags": "eyefi"}, {"datetaken": "2010-08-28 11:09:41", "license": "2", "title": "IMG_0185.JPG", "text": "", "album_id": "72157625954089295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4933625589_ab4d3a9814_o.jpg", "secret": "09a83f49b3", "media": "photo", "latitude": "0", "id": "4933625589", "tags": "eyefi"}, {"datetaken": "2010-08-28 11:09:42", "license": "2", "title": "IMG_0186.JPG", "text": "", "album_id": "72157625954089295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4933625915_1023aef6ca_o.jpg", "secret": "31fed0c7f2", "media": "photo", "latitude": "0", "id": "4933625915", "tags": "eyefi"}, {"datetaken": "2010-08-28 11:33:50", "license": "2", "title": "IMG_0198.JPG", "text": "", "album_id": "72157625954089295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4933628967_862113fc33_o.jpg", "secret": "8e7d87323a", "media": "photo", "latitude": "0", "id": "4933628967", "tags": "eyefi"}, {"datetaken": "2010-08-28 11:33:55", "license": "2", "title": "IMG_0199.JPG", "text": "", "album_id": "72157625954089295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4934223554_8254fa03e4_o.jpg", "secret": "43949fec25", "media": "photo", "latitude": "0", "id": "4934223554", "tags": "eyefi"}, {"datetaken": "2010-08-28 11:34:25", "license": "2", "title": "IMG_0200.JPG", "text": "", "album_id": "72157625954089295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4934223920_99899de62d_o.jpg", "secret": "87e4b52825", "media": "photo", "latitude": "0", "id": "4934223920", "tags": "eyefi"}, {"datetaken": "2010-08-28 11:47:11", "license": "2", "title": "IMG_0208.JPG", "text": "", "album_id": "72157625954089295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4933631785_bd16256dcd_o.jpg", "secret": "df1c0d55fa", "media": "photo", "latitude": "0", "id": "4933631785", "tags": "eyefi"}, {"datetaken": "2010-08-28 11:47:59", "license": "2", "title": "IMG_0209.JPG", "text": "", "album_id": "72157625954089295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4934226294_34fed84678_o.jpg", "secret": "7aafaf0cb3", "media": "photo", "latitude": "0", "id": "4934226294", "tags": "eyefi"}, {"datetaken": "2010-08-28 11:49:00", "license": "2", "title": "IMG_0212.JPG", "text": "", "album_id": "72157625954089295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4933632579_37a542d6a2_o.jpg", "secret": "b5e4a947a6", "media": "photo", "latitude": "0", "id": "4933632579", "tags": "eyefi"}, {"datetaken": "2010-08-28 11:49:32", "license": "2", "title": "IMG_0213.JPG", "text": "", "album_id": "72157625954089295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4933632791_ab3d89e5c4_o.jpg", "secret": "0ca1726162", "media": "photo", "latitude": "0", "id": "4933632791", "tags": "eyefi"}, {"datetaken": "2010-08-28 11:54:22", "license": "2", "title": "IMG_0214.JPG", "text": "", "album_id": "72157625954089295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4933632965_b9668d71d4_o.jpg", "secret": "a25052fff0", "media": "photo", "latitude": "0", "id": "4933632965", "tags": "eyefi"}, {"datetaken": "2010-08-28 12:14:24", "license": "2", "title": "IMG_0215.JPG", "text": "", "album_id": "72157625954089295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4933633189_c4394721c1_o.jpg", "secret": "bbb8929dc6", "media": "photo", "latitude": "0", "id": "4933633189", "tags": "eyefi"}, {"datetaken": "2010-08-28 12:54:39", "license": "2", "title": "IMG_0220.JPG", "text": "", "album_id": "72157625954089295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4933633979_67560d7f7e_o.jpg", "secret": "53960e6ee5", "media": "photo", "latitude": "0", "id": "4933633979", "tags": "eyefi"}, {"datetaken": "2010-08-28 12:54:55", "license": "2", "title": "IMG_0221.JPG", "text": "", "album_id": "72157625954089295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4934228434_2db7afe14a_o.jpg", "secret": "13c2d8301e", "media": "photo", "latitude": "0", "id": "4934228434", "tags": "eyefi"}, {"datetaken": "2010-02-28 18:54:35", "license": "1", "title": "\u5143\u5bb5\u70ae - 01", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4394813916_cf7ef7c43c_o.jpg", "secret": "a97555cc68", "media": "photo", "latitude": "0", "id": "4394813916", "tags": ""}, {"datetaken": "2010-02-28 18:55:16", "license": "1", "title": "\u5143\u5bb5\u70ae - 02", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2709/4394047471_f4023ba6e1_o.jpg", "secret": "6fd99e51f1", "media": "photo", "latitude": "0", "id": "4394047471", "tags": ""}, {"datetaken": "2010-02-28 18:55:43", "license": "1", "title": "\u5143\u5bb5\u70ae - 03", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4394814578_208e43e3d7_o.jpg", "secret": "04a4e57431", "media": "photo", "latitude": "0", "id": "4394814578", "tags": ""}, {"datetaken": "2010-02-28 18:58:17", "license": "1", "title": "\u5143\u5bb5\u70ae - 04", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4394048287_56e128401a_o.jpg", "secret": "7c23104df1", "media": "photo", "latitude": "0", "id": "4394048287", "tags": ""}, {"datetaken": "2010-02-28 18:58:50", "license": "1", "title": "\u5143\u5bb5\u70ae - 05", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2538/4394048781_4a136cf1a3_o.jpg", "secret": "2d4b26cf3f", "media": "photo", "latitude": "0", "id": "4394048781", "tags": ""}, {"datetaken": "2010-02-28 18:59:37", "license": "1", "title": "\u5143\u5bb5\u70ae - 06", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4394049277_60b668814d_o.jpg", "secret": "0e29626883", "media": "photo", "latitude": "0", "id": "4394049277", "tags": ""}, {"datetaken": "2010-02-28 19:06:26", "license": "1", "title": "\u5143\u5bb5\u70ae - 09", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4394816402_4bc7343602_o.jpg", "secret": "cb36990ec0", "media": "photo", "latitude": "0", "id": "4394816402", "tags": ""}, {"datetaken": "2010-02-28 19:06:33", "license": "1", "title": "\u5143\u5bb5\u70ae - 10", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4394816790_3d41f67a63_o.jpg", "secret": "d42b244e6a", "media": "photo", "latitude": "0", "id": "4394816790", "tags": ""}, {"datetaken": "2010-02-28 19:07:29", "license": "1", "title": "\u5143\u5bb5\u70ae - 11", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4394817108_5d032979ea_o.jpg", "secret": "3cf1064786", "media": "photo", "latitude": "0", "id": "4394817108", "tags": ""}, {"datetaken": "2010-02-28 19:07:34", "license": "1", "title": "\u5143\u5bb5\u70ae - 12", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2768/4394050625_343072d370_o.jpg", "secret": "9df9d11cfe", "media": "photo", "latitude": "0", "id": "4394050625", "tags": ""}, {"datetaken": "2010-02-28 19:07:37", "license": "1", "title": "\u5143\u5bb5\u70ae - 13", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4394817850_16fd3ab3a6_o.jpg", "secret": "60c47cf00e", "media": "photo", "latitude": "0", "id": "4394817850", "tags": ""}, {"datetaken": "2010-02-28 19:07:45", "license": "1", "title": "\u5143\u5bb5\u70ae - 14", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2754/4394051445_75896fd2e8_o.jpg", "secret": "4a2c45d23b", "media": "photo", "latitude": "0", "id": "4394051445", "tags": ""}, {"datetaken": "2010-02-28 19:07:49", "license": "1", "title": "\u5143\u5bb5\u70ae - 15", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4394051883_5dfaeaacb0_o.jpg", "secret": "7d8dd5c95b", "media": "photo", "latitude": "0", "id": "4394051883", "tags": ""}, {"datetaken": "2010-02-28 19:10:31", "license": "1", "title": "\u5143\u5bb5\u70ae - 16", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4394819070_342aa5ee67_o.jpg", "secret": "270242ca0e", "media": "photo", "latitude": "0", "id": "4394819070", "tags": ""}, {"datetaken": "2010-02-28 19:10:34", "license": "1", "title": "\u5143\u5bb5\u70ae - 17", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4394819498_fa2720b8ff_o.jpg", "secret": "c1f4f3f534", "media": "photo", "latitude": "0", "id": "4394819498", "tags": ""}, {"datetaken": "2010-02-28 19:10:36", "license": "1", "title": "\u5143\u5bb5\u70ae - 18", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4394819778_b4142329b7_o.jpg", "secret": "d2c453a694", "media": "photo", "latitude": "0", "id": "4394819778", "tags": ""}, {"datetaken": "2010-02-28 19:10:52", "license": "1", "title": "\u5143\u5bb5\u70ae - 19", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2749/4394053141_9574733cf5_o.jpg", "secret": "cc45bba353", "media": "photo", "latitude": "0", "id": "4394053141", "tags": ""}, {"datetaken": "2010-02-28 19:10:54", "license": "1", "title": "\u5143\u5bb5\u70ae - 20", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4394820410_bbb9f5ffbe_o.jpg", "secret": "9c7da72d62", "media": "photo", "latitude": "0", "id": "4394820410", "tags": ""}, {"datetaken": "2010-02-28 19:11:14", "license": "1", "title": "\u5143\u5bb5\u70ae - 21", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4394053945_40b9dcc793_o.jpg", "secret": "9c3b2cda67", "media": "photo", "latitude": "0", "id": "4394053945", "tags": ""}, {"datetaken": "2010-02-28 19:11:53", "license": "1", "title": "\u5143\u5bb5\u70ae - 22", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4394821026_5e20565f00_o.jpg", "secret": "fe3c1406ea", "media": "photo", "latitude": "0", "id": "4394821026", "tags": ""}, {"datetaken": "2010-02-28 19:14:15", "license": "1", "title": "\u5143\u5bb5\u70ae - 23", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2741/4394054577_e8587b75ba_o.jpg", "secret": "7c7367b6bd", "media": "photo", "latitude": "0", "id": "4394054577", "tags": ""}, {"datetaken": "2010-02-28 19:14:30", "license": "1", "title": "\u5143\u5bb5\u70ae - 24", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4394821594_bab5ed6fd7_o.jpg", "secret": "898a33c352", "media": "photo", "latitude": "0", "id": "4394821594", "tags": ""}, {"datetaken": "2010-02-28 19:15:39", "license": "1", "title": "\u5143\u5bb5\u70ae - 25", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4394055171_74a028baf2_o.jpg", "secret": "02fa0def5b", "media": "photo", "latitude": "0", "id": "4394055171", "tags": ""}, {"datetaken": "2010-02-28 19:15:47", "license": "1", "title": "\u5143\u5bb5\u70ae - 26", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2782/4394822212_db81f1a0fd_o.jpg", "secret": "f1680b4a97", "media": "photo", "latitude": "0", "id": "4394822212", "tags": ""}, {"datetaken": "2010-02-28 19:21:30", "license": "1", "title": "\u5143\u5bb5\u70ae - 27", "text": "", "album_id": "72157623400467385", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4394055833_8747f7cf5a_o.jpg", "secret": "0ef451e7fc", "media": "photo", "latitude": "0", "id": "4394055833", "tags": ""}, {"datetaken": "2010-09-28 10:51:27", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/5032710209_0e80666f9d_o.jpg", "secret": "2ee218c6c4", "media": "photo", "latitude": "0", "id": "5032710209", "tags": ""}, {"datetaken": "2010-09-28 10:51:34", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/5032710483_0df37c853f_o.jpg", "secret": "29546ecbd0", "media": "photo", "latitude": "0", "id": "5032710483", "tags": ""}, {"datetaken": "2010-09-28 10:51:44", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4151/5032710857_f77846f777_o.jpg", "secret": "46e01b5ac3", "media": "photo", "latitude": "0", "id": "5032710857", "tags": ""}, {"datetaken": "2010-09-28 10:51:58", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/5033331104_87623d2d27_o.jpg", "secret": "d80bb1733e", "media": "photo", "latitude": "0", "id": "5033331104", "tags": ""}, {"datetaken": "2010-09-28 10:52:19", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/5032712107_3b683eaf55_o.jpg", "secret": "88d7f5d70f", "media": "photo", "latitude": "0", "id": "5032712107", "tags": ""}, {"datetaken": "2010-09-28 10:52:49", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4103/5032713245_a715a02698_o.jpg", "secret": "21615056f3", "media": "photo", "latitude": "0", "id": "5032713245", "tags": ""}, {"datetaken": "2010-09-28 10:53:32", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4106/5032714799_261529d25a_o.jpg", "secret": "450ee17cfb", "media": "photo", "latitude": "0", "id": "5032714799", "tags": ""}, {"datetaken": "2010-09-28 10:54:10", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4149/5032716239_65727c0b69_o.jpg", "secret": "6eb8300177", "media": "photo", "latitude": "0", "id": "5032716239", "tags": ""}, {"datetaken": "2010-09-28 10:54:53", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/5033337736_016e410bcb_o.jpg", "secret": "ecf1f451af", "media": "photo", "latitude": "0", "id": "5033337736", "tags": ""}, {"datetaken": "2010-09-28 10:55:22", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4146/5032719163_73f9bb8953_o.jpg", "secret": "e14e92171d", "media": "photo", "latitude": "0", "id": "5032719163", "tags": ""}, {"datetaken": "2010-09-28 10:56:04", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/5033340782_a0ca789fbc_o.jpg", "secret": "874bf4d652", "media": "photo", "latitude": "0", "id": "5033340782", "tags": ""}, {"datetaken": "2010-09-28 10:56:47", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/5033342536_1c00213308_o.jpg", "secret": "d2471088e6", "media": "photo", "latitude": "0", "id": "5033342536", "tags": ""}, {"datetaken": "2010-09-28 10:57:30", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4106/5032724309_84ca7dd64a_o.jpg", "secret": "bd4c929c95", "media": "photo", "latitude": "0", "id": "5032724309", "tags": ""}, {"datetaken": "2010-09-28 10:58:12", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/5032726111_85e39bca80_o.jpg", "secret": "119c15f4ff", "media": "photo", "latitude": "0", "id": "5032726111", "tags": ""}, {"datetaken": "2010-09-28 10:58:54", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4151/5033347846_e1d53e3c61_o.jpg", "secret": "824c86a4a5", "media": "photo", "latitude": "0", "id": "5033347846", "tags": ""}, {"datetaken": "2010-09-28 10:59:25", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4106/5033349224_8418c8c39b_o.jpg", "secret": "f538f3b346", "media": "photo", "latitude": "0", "id": "5033349224", "tags": ""}, {"datetaken": "2010-09-28 10:59:49", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/5033350192_4f75d28473_o.jpg", "secret": "757b93bdcf", "media": "photo", "latitude": "0", "id": "5033350192", "tags": ""}, {"datetaken": "2010-09-28 11:00:16", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/5032731287_806b6b4ab1_o.jpg", "secret": "e883b0a879", "media": "photo", "latitude": "0", "id": "5032731287", "tags": ""}, {"datetaken": "2010-09-28 11:00:40", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4113/5033352466_50191eef04_o.jpg", "secret": "c8d77566f3", "media": "photo", "latitude": "0", "id": "5033352466", "tags": ""}, {"datetaken": "2010-09-28 11:01:27", "license": "4", "title": "Voo do Bacurau em Carna\u00faba dos Dantas", "text": "", "album_id": "72157625052672144", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/5032734205_1c55667f65_o.jpg", "secret": "2671bc2607", "media": "photo", "latitude": "0", "id": "5032734205", "tags": ""}, {"datetaken": "2012-01-25 20:04:59", "license": "1", "title": "Fisherman's Wharf", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7143/6787598773_1c59409bd6_o.jpg", "secret": "87ec11772b", "media": "photo", "latitude": "37.808632", "id": "6787598773", "tags": ""}, {"datetaken": "2012-01-25 20:05:29", "license": "1", "title": "Fisherman's Wharf", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7001/6787602615_1de86815f0_o.jpg", "secret": "141e676571", "media": "photo", "latitude": "37.808632", "id": "6787602615", "tags": ""}, {"datetaken": "2012-01-25 20:06:28", "license": "1", "title": "Fisherman's Wharf", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7009/6787604921_d934d22a1d_o.jpg", "secret": "7d8840bea8", "media": "photo", "latitude": "37.808632", "id": "6787604921", "tags": ""}, {"datetaken": "2012-01-25 20:06:42", "license": "1", "title": "Fisherman's Wharf", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7145/6787607269_8e19c36be1_o.jpg", "secret": "b2ec0fa016", "media": "photo", "latitude": "37.808632", "id": "6787607269", "tags": ""}, {"datetaken": "2012-01-25 20:08:57", "license": "1", "title": "Fisherman's Wharf", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7013/6787608961_46259cb4d5_o.jpg", "secret": "e9f3ec8722", "media": "photo", "latitude": "37.808632", "id": "6787608961", "tags": ""}, {"datetaken": "2012-01-25 20:09:20", "license": "1", "title": "Fisherman's Wharf", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7004/6787610759_4debc962b8_o.jpg", "secret": "dc05b2521d", "media": "photo", "latitude": "37.808632", "id": "6787610759", "tags": ""}, {"datetaken": "2012-01-25 20:11:43", "license": "1", "title": "Boudin Sourdough Bakery", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7150/6787614239_0258cbc8f2_o.jpg", "secret": "824de87925", "media": "photo", "latitude": "37.808632", "id": "6787614239", "tags": ""}, {"datetaken": "2012-01-25 20:13:32", "license": "1", "title": "Boudin Sourdough Bakery", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7170/6787617039_313432b131_o.jpg", "secret": "5479719179", "media": "photo", "latitude": "37.808632", "id": "6787617039", "tags": ""}, {"datetaken": "2012-01-25 20:13:46", "license": "1", "title": "Boudin Sourdough Bakery", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7007/6787621091_19b304da8d_o.jpg", "secret": "c8a26d5622", "media": "photo", "latitude": "37.808632", "id": "6787621091", "tags": ""}, {"datetaken": "2012-01-25 20:14:22", "license": "1", "title": "Boudin Sourdough Bakery", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7030/6787624645_3e06bf9036_o.jpg", "secret": "c412cd82f1", "media": "photo", "latitude": "37.808632", "id": "6787624645", "tags": ""}, {"datetaken": "2012-01-25 20:15:00", "license": "1", "title": "Boudin Sourdough Bakery", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7174/6787627035_6faf866e5c_o.jpg", "secret": "59809027a8", "media": "photo", "latitude": "37.808632", "id": "6787627035", "tags": ""}, {"datetaken": "2012-01-25 20:16:23", "license": "1", "title": "Boudin Sourdough Bakery", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7020/6787629355_d31c126461_o.jpg", "secret": "69de6fcab9", "media": "photo", "latitude": "37.808632", "id": "6787629355", "tags": ""}, {"datetaken": "2012-01-25 20:16:41", "license": "1", "title": "Boudin Sourdough Bakery", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7019/6787632733_f8722cd57a_o.jpg", "secret": "b2f4f8232f", "media": "photo", "latitude": "37.808632", "id": "6787632733", "tags": ""}, {"datetaken": "2012-01-25 20:23:14", "license": "1", "title": "Boudin Sourdough Bakery", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7002/6787635135_10aab7a4c4_o.jpg", "secret": "a0edaa0616", "media": "photo", "latitude": "37.808632", "id": "6787635135", "tags": ""}, {"datetaken": "2012-01-25 20:26:27", "license": "1", "title": "Crab Restaurant", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7014/6787637691_b7df97076d_o.jpg", "secret": "b73d31163a", "media": "photo", "latitude": "37.808632", "id": "6787637691", "tags": ""}, {"datetaken": "2012-01-25 20:27:12", "license": "1", "title": "Crab Restaurant", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7167/6787640209_18f1e64ac5_o.jpg", "secret": "d7349e7d73", "media": "photo", "latitude": "37.808632", "id": "6787640209", "tags": ""}, {"datetaken": "2012-01-25 20:27:32", "license": "1", "title": "Crab Restaurant", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7006/6787643137_a6a0f30759_o.jpg", "secret": "dd47365d3a", "media": "photo", "latitude": "37.808632", "id": "6787643137", "tags": ""}, {"datetaken": "2012-01-25 20:27:41", "license": "1", "title": "Crab Restaurant", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7015/6787645383_7e3c11baf4_o.jpg", "secret": "7a388351eb", "media": "photo", "latitude": "37.808632", "id": "6787645383", "tags": ""}, {"datetaken": "2012-01-25 20:29:01", "license": "1", "title": "Boudin Sourdough Bakery", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7021/6787647639_d58fa20d4b_o.jpg", "secret": "b5bd9bdcc7", "media": "photo", "latitude": "37.808632", "id": "6787647639", "tags": ""}, {"datetaken": "2012-01-25 20:32:24", "license": "1", "title": "Fisherman's Wharf", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7032/6787650475_e6a8965c62_o.jpg", "secret": "e7969a03d2", "media": "photo", "latitude": "37.808632", "id": "6787650475", "tags": ""}, {"datetaken": "2012-01-25 20:32:28", "license": "1", "title": "Eat At Joe's", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7167/6787652783_88bf9acd91_o.jpg", "secret": "8315427546", "media": "photo", "latitude": "37.808632", "id": "6787652783", "tags": ""}, {"datetaken": "2012-01-25 20:32:55", "license": "1", "title": "Fisherman's Wharf", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7027/6787655211_408aa542aa_o.jpg", "secret": "7172e1c371", "media": "photo", "latitude": "37.808632", "id": "6787655211", "tags": ""}, {"datetaken": "2012-01-25 20:33:42", "license": "1", "title": "Fisherman's Wharf", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7162/6787658251_c5587a10ac_o.jpg", "secret": "a4662a34f5", "media": "photo", "latitude": "37.808632", "id": "6787658251", "tags": ""}, {"datetaken": "2012-01-25 20:35:11", "license": "1", "title": "Fisherman's Wharf", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7166/6787661491_368f068fe2_o.jpg", "secret": "09fe15f413", "media": "photo", "latitude": "37.808632", "id": "6787661491", "tags": ""}, {"datetaken": "2012-01-25 20:36:09", "license": "1", "title": "Fisherman's Wharf", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7028/6787664925_00942bcb83_o.jpg", "secret": "008e9bb559", "media": "photo", "latitude": "37.808632", "id": "6787664925", "tags": ""}, {"datetaken": "2012-01-25 20:37:46", "license": "1", "title": "Fisherman's Wharf", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7031/6787667237_48c66ef00f_o.jpg", "secret": "6f785c5b2a", "media": "photo", "latitude": "37.808632", "id": "6787667237", "tags": ""}, {"datetaken": "2012-01-25 20:39:35", "license": "1", "title": "Eat At Joe's", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7160/6787669253_a3147c0333_o.jpg", "secret": "6f56811664", "media": "photo", "latitude": "37.808632", "id": "6787669253", "tags": ""}, {"datetaken": "2012-01-25 20:39:48", "license": "1", "title": "Eat At Joe's", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7162/6787671817_b6f90cdeb2_o.jpg", "secret": "d81578272a", "media": "photo", "latitude": "37.808632", "id": "6787671817", "tags": ""}, {"datetaken": "2012-01-25 20:40:03", "license": "1", "title": "Fisherman's Wharf", "text": "", "album_id": "72157629094219953", "longitude": "-122.415589", "url_o": "https://farm8.staticflickr.com/7141/6787673527_14a8f2ce4b_o.jpg", "secret": "16e525ff10", "media": "photo", "latitude": "37.808632", "id": "6787673527", "tags": ""}, {"datetaken": "2010-05-28 21:15:05", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4650688714_e0e9a2bede_o.jpg", "secret": "2e4c6ff1f1", "media": "photo", "latitude": "0", "id": "4650688714", "tags": "pink bath raw bathabbey"}, {"datetaken": "2010-05-28 21:29:54", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4650071803_c9441107de_o.jpg", "secret": "394ce0c0f6", "media": "photo", "latitude": "0", "id": "4650071803", "tags": "bath raw pulteneybridge"}, {"datetaken": "2010-05-28 21:37:20", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4650689718_ef93f2461e_o.jpg", "secret": "82974c5e38", "media": "photo", "latitude": "0", "id": "4650689718", "tags": "bath raw pulteneybridge"}, {"datetaken": "2010-05-28 21:40:52", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4650072581_eb86b3e904_o.jpg", "secret": "66ddfc60a9", "media": "photo", "latitude": "0", "id": "4650072581", "tags": "bath raw pulteneybridge"}, {"datetaken": "2010-05-28 21:46:38", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4650690478_927feeca01_o.jpg", "secret": "e759c669ba", "media": "photo", "latitude": "0", "id": "4650690478", "tags": "pink bath raw bathabbey"}, {"datetaken": "2010-05-28 21:48:01", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4650073273_716c136bd2_o.jpg", "secret": "e2e84903e2", "media": "photo", "latitude": "0", "id": "4650073273", "tags": "bath raw"}, {"datetaken": "2010-05-28 21:50:03", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4650073587_a6245f3710_o.jpg", "secret": "8685173a5d", "media": "photo", "latitude": "0", "id": "4650073587", "tags": "pink bath raw bathabbey"}, {"datetaken": "2010-05-28 21:51:12", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4650073945_0bba5bcd67_o.jpg", "secret": "6b1d4eb995", "media": "photo", "latitude": "0", "id": "4650073945", "tags": "pink bath raw bathabbey"}, {"datetaken": "2010-05-28 21:58:20", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4650074347_e31b3670bf_o.jpg", "secret": "e8599e4eae", "media": "photo", "latitude": "0", "id": "4650074347", "tags": "pink bath raw bathabbey"}, {"datetaken": "2010-05-28 21:59:04", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4650074755_1c953b6845_o.jpg", "secret": "770d81b024", "media": "photo", "latitude": "0", "id": "4650074755", "tags": "pink bath raw bathabbey"}, {"datetaken": "2010-05-28 22:01:44", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4650692724_eabbebd0ab_o.jpg", "secret": "8d7a261085", "media": "photo", "latitude": "0", "id": "4650692724", "tags": "pink bath raw bathabbey"}, {"datetaken": "2010-05-28 22:06:20", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4650075423_ab3ca927e5_o.jpg", "secret": "87db6aca89", "media": "photo", "latitude": "0", "id": "4650075423", "tags": "pink bath raw bathabbey"}, {"datetaken": "2010-05-28 22:08:31", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4650693382_260c85b998_o.jpg", "secret": "85eced50d2", "media": "photo", "latitude": "0", "id": "4650693382", "tags": "pink bath raw bathabbey"}, {"datetaken": "2010-05-28 22:11:38", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4650076075_d439154299_o.jpg", "secret": "8b8c2b76ff", "media": "photo", "latitude": "0", "id": "4650076075", "tags": "bath raw fireworks"}, {"datetaken": "2010-05-28 22:11:55", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4650076481_9f6135e18a_o.jpg", "secret": "2932887564", "media": "photo", "latitude": "0", "id": "4650076481", "tags": "bath raw fireworks"}, {"datetaken": "2010-05-28 22:12:20", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4650076851_d7cc7821f4_o.jpg", "secret": "33f1131272", "media": "photo", "latitude": "0", "id": "4650076851", "tags": "bath raw fireworks"}, {"datetaken": "2010-05-28 22:13:38", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4650694854_e0d09b587f_o.jpg", "secret": "6ba036dc4b", "media": "photo", "latitude": "0", "id": "4650694854", "tags": "bath raw fireworks"}, {"datetaken": "2010-05-28 22:14:01", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4650695168_ff76e85e7a_o.jpg", "secret": "3ca1d05499", "media": "photo", "latitude": "0", "id": "4650695168", "tags": "bath raw fireworks"}, {"datetaken": "2010-05-28 22:14:19", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4650695610_7cc8f5a75b_o.jpg", "secret": "b664e51f66", "media": "photo", "latitude": "0", "id": "4650695610", "tags": "bath raw fireworks"}, {"datetaken": "2010-05-28 22:14:33", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4650078401_8b2cd387bf_o.jpg", "secret": "548c4043cb", "media": "photo", "latitude": "0", "id": "4650078401", "tags": "bath raw fireworks"}, {"datetaken": "2010-05-28 22:16:27", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4650078795_9af675f316_o.jpg", "secret": "53650c6582", "media": "photo", "latitude": "0", "id": "4650078795", "tags": "bath raw fireworks"}, {"datetaken": "2010-05-28 22:16:33", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4650696812_832a41981b_o.jpg", "secret": "9120b182f0", "media": "photo", "latitude": "0", "id": "4650696812", "tags": "bath raw fireworks"}, {"datetaken": "2010-05-28 22:17:27", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4650697148_45b67c8509_o.jpg", "secret": "e8d104f01b", "media": "photo", "latitude": "0", "id": "4650697148", "tags": "bath raw fireworks"}, {"datetaken": "2010-05-28 22:45:10", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4650697518_70dda061b0_o.jpg", "secret": "4e76627b8d", "media": "photo", "latitude": "0", "id": "4650697518", "tags": "bath raw"}, {"datetaken": "2010-05-28 22:59:05", "license": "3", "title": "", "text": "", "album_id": "72157624161118434", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4650080225_0175e2e547_o.jpg", "secret": "1eb7bf0d12", "media": "photo", "latitude": "0", "id": "4650080225", "tags": "pink bath raw bathabbey"}, {"datetaken": "2010-08-28 17:10:57", "license": "2", "title": "Flag", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4939777832_eb39a535e5_o.jpg", "secret": "c41015cefc", "media": "photo", "latitude": "0", "id": "4939777832", "tags": "flag navypier"}, {"datetaken": "2010-08-28 17:13:23", "license": "2", "title": "Navy Pier Ferris Wheel", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4939778404_cd344f280c_o.jpg", "secret": "c5d3d360dd", "media": "photo", "latitude": "0", "id": "4939778404", "tags": "ferriswheel chicagonavypier"}, {"datetaken": "2010-08-28 17:14:22", "license": "2", "title": "S/V Denis Sullivan", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4939779698_8b7f37053d_o.jpg", "secret": "a6cae70cc9", "media": "photo", "latitude": "0", "id": "4939779698", "tags": "sailing navypier tallship"}, {"datetaken": "2010-08-28 17:18:34", "license": "2", "title": "S/V Denis Sullivan", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4939195133_bf55f35424_o.jpg", "secret": "966d229311", "media": "photo", "latitude": "0", "id": "4939195133", "tags": "sailing navypier tallship"}, {"datetaken": "2010-08-28 17:19:39", "license": "2", "title": "S/V Denis Sullivan", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4939196151_20c2559be0_o.jpg", "secret": "5e8feeca35", "media": "photo", "latitude": "0", "id": "4939196151", "tags": "sailing navypier tallship"}, {"datetaken": "2010-08-28 17:21:18", "license": "2", "title": "S/V Denis Sullivan", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4939782122_7829a0d16a_o.jpg", "secret": "c3effd219c", "media": "photo", "latitude": "0", "id": "4939782122", "tags": "sailing navypier tallship"}, {"datetaken": "2010-08-28 18:36:05", "license": "2", "title": "Navy Pier Ferris Wheel", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4939197927_84d43561ef_o.jpg", "secret": "fca7507c8d", "media": "photo", "latitude": "0", "id": "4939197927", "tags": "ferriswheel chicagonavypier"}, {"datetaken": "2010-08-28 18:54:46", "license": "2", "title": "Flag", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4939198709_3b2003b9d8_o.jpg", "secret": "6c2ee3ff0b", "media": "photo", "latitude": "0", "id": "4939198709", "tags": "flag navypier"}, {"datetaken": "2010-08-28 18:54:54", "license": "2", "title": "Flag", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4939199549_d4e8143440_o.jpg", "secret": "9b979989f1", "media": "photo", "latitude": "0", "id": "4939199549", "tags": "flag navypier"}, {"datetaken": "2010-08-28 19:01:35", "license": "2", "title": "Windy", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4939200405_dd0f1086cd_o.jpg", "secret": "5cb2c6911e", "media": "photo", "latitude": "0", "id": "4939200405", "tags": "sailing navypier tallship"}, {"datetaken": "2010-08-28 19:01:48", "license": "2", "title": "Flags", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4939786142_c4b90b4164_o.jpg", "secret": "43d4fc2486", "media": "photo", "latitude": "0", "id": "4939786142", "tags": "flag navypier"}, {"datetaken": "2010-08-28 19:03:20", "license": "2", "title": "Windy", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4939786952_02fac448bc_o.jpg", "secret": "65c432d8b2", "media": "photo", "latitude": "0", "id": "4939786952", "tags": "sailing ship navypier tall"}, {"datetaken": "2010-08-28 19:04:09", "license": "2", "title": "Lighthouse", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4939787806_71f1618cf4_o.jpg", "secret": "165f7a7f0b", "media": "photo", "latitude": "0", "id": "4939787806", "tags": "navy pierlighthouse"}, {"datetaken": "2010-08-28 19:09:20", "license": "2", "title": "John Hancock Building", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4939203307_2536500948_o.jpg", "secret": "d0b3d296fc", "media": "photo", "latitude": "0", "id": "4939203307", "tags": "navypierchicagojohnhancockbuilding"}, {"datetaken": "2010-08-28 19:16:06", "license": "2", "title": "Flag Reflected in the windows on Navy Pier", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4939204365_5f7c217862_o.jpg", "secret": "8d95c00d7e", "media": "photo", "latitude": "0", "id": "4939204365", "tags": "navypierflagreflection"}, {"datetaken": "2010-08-28 19:49:56", "license": "2", "title": "HMS Bounty", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4939205603_a9404b3445_o.jpg", "secret": "a3bebfb498", "media": "photo", "latitude": "0", "id": "4939205603", "tags": "sailing navypier tallship"}, {"datetaken": "2010-08-28 20:13:43", "license": "2", "title": "HMS Bounty", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4939792080_8293bd0a23_o.jpg", "secret": "b5e8fe8e7a", "media": "photo", "latitude": "0", "id": "4939792080", "tags": "sailing navypier tallship"}, {"datetaken": "2010-08-28 20:20:41", "license": "2", "title": "HMS Bounty", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4939792990_3963d11b0a_o.jpg", "secret": "6fe3fd8659", "media": "photo", "latitude": "0", "id": "4939792990", "tags": "sailing navypier tallship"}, {"datetaken": "2010-08-28 20:22:07", "license": "2", "title": "HMS Bounty", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4939208527_e86be64ab9_o.jpg", "secret": "f800dd4b8c", "media": "photo", "latitude": "0", "id": "4939208527", "tags": "sailing navypier tallship"}, {"datetaken": "2010-08-28 20:56:10", "license": "2", "title": "HMS Bounty", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4939794824_02a11d4917_o.jpg", "secret": "6ec6e0c646", "media": "photo", "latitude": "0", "id": "4939794824", "tags": "sailing ship navypier tall"}, {"datetaken": "2010-08-28 21:16:24", "license": "2", "title": "Flagship Niagra", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4939796252_7b8df94a3f_o.jpg", "secret": "b5c3daf9aa", "media": "photo", "latitude": "0", "id": "4939796252", "tags": "sailing navypier tallship"}, {"datetaken": "2010-08-28 21:36:20", "license": "2", "title": "Tickets", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4939211961_87617d61c1_o.jpg", "secret": "0d36d1b002", "media": "photo", "latitude": "0", "id": "4939211961", "tags": "arcade navypiertickets"}, {"datetaken": "2010-08-28 21:52:08", "license": "2", "title": "Navy Pier Ferris Wheel", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4939798312_92c348dd9b_o.jpg", "secret": "34236f6e20", "media": "photo", "latitude": "0", "id": "4939798312", "tags": "chicago ferriswheel navypier"}, {"datetaken": "2010-08-28 21:53:40", "license": "2", "title": "Navy Pier Ferris Wheel", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4939799592_6393783876_o.jpg", "secret": "3cfb8cb454", "media": "photo", "latitude": "0", "id": "4939799592", "tags": "chicago ferriswheel navypier"}, {"datetaken": "2010-08-28 22:08:50", "license": "2", "title": "Navy Pier Ferris Wheel", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4939800854_c096132b05_o.jpg", "secret": "c00d3e0140", "media": "photo", "latitude": "0", "id": "4939800854", "tags": "chicago ferriswheel navypier"}, {"datetaken": "2010-08-28 22:26:42", "license": "2", "title": "Fireworks over the Tall Ships", "text": "", "album_id": "72157624711578491", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4939216581_45182088db_o.jpg", "secret": "77904d6650", "media": "photo", "latitude": "0", "id": "4939216581", "tags": "navypiertallshipfireworks"}, {"datetaken": "2010-07-30 18:28:16", "license": "1", "title": "", "text": "", "album_id": "72157624490271763", "longitude": "151.206840", "url_o": "https://farm5.staticflickr.com/4128/4843541976_8653b769f9_o.jpg", "secret": "26edddf0e9", "media": "photo", "latitude": "-33.872482", "id": "4843541976", "tags": "signs"}, {"datetaken": "2010-07-30 18:30:40", "license": "1", "title": "Death Skull Is Coming...", "text": "", "album_id": "72157624490271763", "longitude": "151.205724", "url_o": "https://farm5.staticflickr.com/4110/4842988551_ba31e87b72_o.jpg", "secret": "9b3f132c08", "media": "photo", "latitude": "-33.869952", "id": "4842988551", "tags": "metal skull shopwindow"}, {"datetaken": "2010-07-30 18:53:12", "license": "1", "title": "", "text": "", "album_id": "72157624490271763", "longitude": "151.206089", "url_o": "https://farm5.staticflickr.com/4084/4843629292_bb2704e1a2_o.jpg", "secret": "134d9ca326", "media": "photo", "latitude": "-33.870696", "id": "4843629292", "tags": "building tree night"}, {"datetaken": "2010-07-30 19:11:50", "license": "1", "title": "", "text": "", "album_id": "72157624490271763", "longitude": "151.200574", "url_o": "https://farm5.staticflickr.com/4112/4844522185_cdf9aa5e95_o.jpg", "secret": "6d7d0623f1", "media": "photo", "latitude": "-33.870945", "id": "4844522185", "tags": "night boats cityscape"}, {"datetaken": "2010-07-30 19:15:23", "license": "1", "title": "", "text": "", "album_id": "72157624490271763", "longitude": "151.199233", "url_o": "https://farm5.staticflickr.com/4132/4843059479_70530cb0c2_o.jpg", "secret": "0cd61f3ba7", "media": "photo", "latitude": "-33.870157", "id": "4843059479", "tags": "building night lamps"}, {"datetaken": "2010-07-30 19:18:00", "license": "1", "title": "", "text": "", "album_id": "72157624490271763", "longitude": "151.199480", "url_o": "https://farm5.staticflickr.com/4092/4843710078_03ebb14f6a_o.jpg", "secret": "10c4c8c2d5", "media": "photo", "latitude": "-33.870517", "id": "4843710078", "tags": "water night boat"}, {"datetaken": "2010-07-30 19:34:24", "license": "1", "title": "", "text": "", "album_id": "72157624490271763", "longitude": "151.199458", "url_o": "https://farm5.staticflickr.com/4112/4843757962_d319f8ed37_o.jpg", "secret": "43b2e44265", "media": "photo", "latitude": "-33.870758", "id": "4843757962", "tags": "reflection water boat"}, {"datetaken": "2010-07-30 19:40:47", "license": "1", "title": "", "text": "", "album_id": "72157624490271763", "longitude": "151.199383", "url_o": "https://farm5.staticflickr.com/4109/4843964926_e2c20c5830_o.jpg", "secret": "7b0705cdcc", "media": "photo", "latitude": "-33.870273", "id": "4843964926", "tags": "water night boats"}, {"datetaken": "2010-07-30 20:03:21", "license": "1", "title": "Ferris Wheel", "text": "", "album_id": "72157624490271763", "longitude": "151.201615", "url_o": "https://farm5.staticflickr.com/4091/4843386421_1c1d1b802e_o.jpg", "secret": "35031c476b", "media": "photo", "latitude": "-33.875822", "id": "4843386421", "tags": "night ferriswheel"}, {"datetaken": "2010-07-30 20:06:56", "license": "1", "title": "Neon Path", "text": "", "album_id": "72157624490271763", "longitude": "151.201765", "url_o": "https://farm5.staticflickr.com/4147/4843401057_cd1cf977c2_o.jpg", "secret": "dc10af0b03", "media": "photo", "latitude": "-33.877403", "id": "4843401057", "tags": "night neon"}, {"datetaken": "2010-07-30 20:09:20", "license": "1", "title": "No Obstacle", "text": "", "album_id": "72157624490271763", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4091/4844034034_a81e15e6e0_o.jpg", "secret": "8706028a74", "media": "photo", "latitude": "0", "id": "4844034034", "tags": "night walkway"}, {"datetaken": "2010-07-30 20:12:02", "license": "1", "title": "", "text": "", "album_id": "72157624490271763", "longitude": "151.202666", "url_o": "https://farm5.staticflickr.com/4127/4843435127_12d9b27c8b_o.jpg", "secret": "8f3e3bbd17", "media": "photo", "latitude": "-33.879029", "id": "4843435127", "tags": "night marketcity"}, {"datetaken": "2010-07-30 20:24:37", "license": "1", "title": "", "text": "", "album_id": "72157624490271763", "longitude": "151.202334", "url_o": "https://farm5.staticflickr.com/4107/4843454899_0371c01636_o.jpg", "secret": "df89c07223", "media": "photo", "latitude": "-33.883901", "id": "4843454899", "tags": "night spotlight"}, {"datetaken": "2010-07-30 20:32:41", "license": "1", "title": "", "text": "", "album_id": "72157624490271763", "longitude": "151.197581", "url_o": "https://farm5.staticflickr.com/4092/4844089468_5e09245e95_o.jpg", "secret": "668846747f", "media": "photo", "latitude": "-33.884297", "id": "4844089468", "tags": "night restaurant"}, {"datetaken": "2010-07-30 21:57:13", "license": "1", "title": "Houston, there is a problem", "text": "", "album_id": "72157624490271763", "longitude": "151.206636", "url_o": "https://farm5.staticflickr.com/4112/4843577126_0b3d6a8da8_o.jpg", "secret": "26e82a9f50", "media": "photo", "latitude": "-33.870375", "id": "4843577126", "tags": "abstract escalators"}, {"datetaken": "2010-01-23 11:29:46", "license": "2", "title": "IMG_1233", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2696/4321465234_de7a5432bd_o.jpg", "secret": "90a082bac5", "media": "photo", "latitude": "0", "id": "4321465234", "tags": ""}, {"datetaken": "2010-01-23 11:34:17", "license": "2", "title": "IMG_1236", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/4321466450_b3af9d8c2c_o.jpg", "secret": "aaae00177a", "media": "photo", "latitude": "0", "id": "4321466450", "tags": ""}, {"datetaken": "2010-01-23 11:40:42", "license": "2", "title": "IMG_1242", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2783/4321469250_fa1855cfd5_o.jpg", "secret": "9b50857158", "media": "photo", "latitude": "0", "id": "4321469250", "tags": ""}, {"datetaken": "2010-01-23 11:41:08", "license": "2", "title": "IMG_1243", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4320733871_20e35a186e_o.jpg", "secret": "96603843d6", "media": "photo", "latitude": "0", "id": "4320733871", "tags": ""}, {"datetaken": "2010-01-23 11:42:37", "license": "2", "title": "IMG_1245", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2751/4320734497_f6597c6d72_o.jpg", "secret": "395a3d88bd", "media": "photo", "latitude": "0", "id": "4320734497", "tags": ""}, {"datetaken": "2010-01-23 11:43:07", "license": "2", "title": "IMG_1247", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4320736499_5ed3444b8d_o.jpg", "secret": "0e68e87ddf", "media": "photo", "latitude": "0", "id": "4320736499", "tags": ""}, {"datetaken": "2010-01-23 11:43:48", "license": "2", "title": "IMG_1248", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4320737147_89dd889548_o.jpg", "secret": "fbbd8d07b5", "media": "photo", "latitude": "0", "id": "4320737147", "tags": ""}, {"datetaken": "2010-01-23 11:45:09", "license": "2", "title": "IMG_1251 copy", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2686/4320737785_ea0cda12b7_o.jpg", "secret": "2c959456b8", "media": "photo", "latitude": "0", "id": "4320737785", "tags": ""}, {"datetaken": "2010-01-23 11:46:39", "license": "2", "title": "IMG_1252", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4321472140_e9dcb71d4a_o.jpg", "secret": "91bea9f5b0", "media": "photo", "latitude": "0", "id": "4321472140", "tags": ""}, {"datetaken": "2010-01-23 11:56:59", "license": "2", "title": "IMG_1262", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4320739559_8f0a5c2848_o.jpg", "secret": "9d0d0117df", "media": "photo", "latitude": "0", "id": "4320739559", "tags": ""}, {"datetaken": "2010-01-23 12:03:58", "license": "2", "title": "IMG_1266", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4321473408_39940b683c_o.jpg", "secret": "e8f8d05863", "media": "photo", "latitude": "0", "id": "4321473408", "tags": ""}, {"datetaken": "2010-01-23 12:05:19", "license": "2", "title": "IMG_1267", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4336511277_6e5e2df198_o.jpg", "secret": "d4dc8fb667", "media": "photo", "latitude": "0", "id": "4336511277", "tags": ""}, {"datetaken": "2010-01-23 12:06:22", "license": "2", "title": "IMG_1268", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4336560271_26e93c9a50_o.jpg", "secret": "2215f93bfc", "media": "photo", "latitude": "0", "id": "4336560271", "tags": ""}, {"datetaken": "2010-01-23 12:13:36", "license": "2", "title": "IMG_1273", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4337305504_337df4ede5_o.jpg", "secret": "6084b63b41", "media": "photo", "latitude": "0", "id": "4337305504", "tags": ""}, {"datetaken": "2010-01-23 12:14:32", "license": "2", "title": "IMG_1276", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4337306302_12c32ab690_o.jpg", "secret": "6e37bdca49", "media": "photo", "latitude": "0", "id": "4337306302", "tags": ""}, {"datetaken": "2010-01-23 12:17:16", "license": "2", "title": "IMG_1283", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4337307166_ea96b56074_o.jpg", "secret": "357a57af80", "media": "photo", "latitude": "0", "id": "4337307166", "tags": ""}, {"datetaken": "2010-01-23 12:20:00", "license": "2", "title": "IMG_1288", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4337308260_88bced41e1_o.jpg", "secret": "9cc956b58c", "media": "photo", "latitude": "0", "id": "4337308260", "tags": ""}, {"datetaken": "2010-01-23 12:21:00", "license": "2", "title": "IMG_1289", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2689/4336566769_d7f578b54c_o.jpg", "secret": "f6ebf76bc9", "media": "photo", "latitude": "0", "id": "4336566769", "tags": ""}, {"datetaken": "2010-01-23 12:22:09", "license": "2", "title": "IMG_1292", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4337312420_a3980187df_o.jpg", "secret": "8818334684", "media": "photo", "latitude": "0", "id": "4337312420", "tags": ""}, {"datetaken": "2010-01-23 12:24:06", "license": "2", "title": "IMG_1294 copy", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4336569927_f9ae08878c_o.jpg", "secret": "6903a213ba", "media": "photo", "latitude": "0", "id": "4336569927", "tags": ""}, {"datetaken": "2010-01-23 12:24:06", "license": "2", "title": "IMG_1294", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4336569621_19c346228b_o.jpg", "secret": "1e5dcbcb01", "media": "photo", "latitude": "0", "id": "4336569621", "tags": ""}, {"datetaken": "2010-01-23 12:30:38", "license": "2", "title": "IMG_1302", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4336570467_4a9fac3847_o.jpg", "secret": "659925d6a4", "media": "photo", "latitude": "0", "id": "4336570467", "tags": ""}, {"datetaken": "2010-01-23 12:38:40", "license": "2", "title": "IMG_1309", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4336572169_34dea36f6c_o.jpg", "secret": "be5531e913", "media": "photo", "latitude": "0", "id": "4336572169", "tags": ""}, {"datetaken": "2010-01-23 12:41:03", "license": "2", "title": "IMG_1314", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4337317244_48e03052bb_o.jpg", "secret": "2147d013bb", "media": "photo", "latitude": "0", "id": "4337317244", "tags": ""}, {"datetaken": "2010-01-23 12:45:49", "license": "2", "title": "IMG_1322", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4336574905_8f8da06587_o.jpg", "secret": "113612388d", "media": "photo", "latitude": "0", "id": "4336574905", "tags": ""}, {"datetaken": "2010-01-23 12:52:12", "license": "2", "title": "IMG_1333", "text": "", "album_id": "72157623200307257", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4337320634_3963722c1e_o.jpg", "secret": "cc338cb824", "media": "photo", "latitude": "0", "id": "4337320634", "tags": ""}, {"datetaken": "2010-05-24 21:48:52", "license": "1", "title": "Vampiria - Horror house", "text": "", "album_id": "72157624015502957", "longitude": "10.886678", "url_o": "https://farm5.staticflickr.com/4055/4650370280_541b4e7aaf_o.jpg", "secret": "b111dc3833", "media": "photo", "latitude": "44.781750", "id": "4650370280", "tags": "travel party italy house castle apple night canon flickr italia imac fear emilia horror lunapark castello vampires notte carpi fiera divertimento paura buoi vampiri digitalcameraclub pepe50"}, {"datetaken": "2010-05-24 21:49:14", "license": "1", "title": "Skull - Teschio", "text": "", "album_id": "72157624015502957", "longitude": "10.867109", "url_o": "https://farm5.staticflickr.com/4097/4937365270_14117b8d2c_o.jpg", "secret": "302e6535de", "media": "photo", "latitude": "44.785649", "id": "4937365270", "tags": "park travel party italy castle apple window night canon skull italia nightly imac luna emilia finestra morte fantasia leisure lunapark luci modena castello notturna fantasma notte carpi piscine teschio emiliaromagna buio sogni eos450d pepe50"}, {"datetaken": "2010-05-24 21:51:27", "license": "1", "title": "Omaggio a George Washington Ferris - Tribute to G. W. Ferris", "text": "", "album_id": "72157624015502957", "longitude": "10.867109", "url_o": "https://farm5.staticflickr.com/4033/4650871359_c234774e27_o.jpg", "secret": "d4c85cde4e", "media": "photo", "latitude": "44.785649", "id": "4650871359", "tags": "travel light party parco canon flickr emilia leisure lunapark luci modena carpi piscine 2010 fiera happyness divertimento eos450d pepe50"}, {"datetaken": "2010-05-24 21:56:52", "license": "1", "title": "Looping", "text": "", "album_id": "72157624015502957", "longitude": "10.867109", "url_o": "https://farm5.staticflickr.com/4011/4650606321_a76d73a06f_o.jpg", "secret": "6638f052ed", "media": "photo", "latitude": "44.785649", "id": "4650606321", "tags": "show travel light party italy apple colors night canon flickr italia imac loop carousel emilia lunapark luci colori notte giro carpi fiera happyness eos450d 450d forzag pepe50 acellerazione"}, {"datetaken": "2010-05-24 22:04:12", "license": "1", "title": "Barcollo ma non mollo! - We shall never surrender!", "text": "", "album_id": "72157624015502957", "longitude": "10.867109", "url_o": "https://farm5.staticflickr.com/4061/4651495942_45a5354912_o.jpg", "secret": "ed3ea73be0", "media": "photo", "latitude": "44.785649", "id": "4651495942", "tags": "travel light party parco canon flickr emilia leisure lunapark luci modena carpi piscine 2010 fiera happyness divertimento eos450d barcollo tagad\u00e0 barcollomanonmollo pepe50"}, {"datetaken": "2010-05-24 22:06:27", "license": "1", "title": "Carousel of happyness", "text": "", "album_id": "72157624015502957", "longitude": "10.867109", "url_o": "https://farm5.staticflickr.com/4059/4650885873_7dd51372f2_o.jpg", "secret": "aa26e39d5e", "media": "photo", "latitude": "44.785649", "id": "4650885873", "tags": "travel light party parco canon flickr emilia leisure lunapark luci modena carpi piscine 2010 fiera happyness divertimento eos450d tagad\u00e0 pepe50"}, {"datetaken": "2010-05-24 22:22:07", "license": "1", "title": "Ufo", "text": "", "album_id": "72157624015502957", "longitude": "10.886678", "url_o": "https://farm5.staticflickr.com/4066/4648418237_bea1d6cb33_o.jpg", "secret": "63f919a3ca", "media": "photo", "latitude": "44.781750", "id": "4648418237", "tags": "travel party italy castle night canon flying objects ufo otto leisure lunapark rollercoaster coaster castello notte carpi volante unidentified fiera happyness achterbahn ottovolante unidentifiedflyingobjects eos450d pepe50 oggettivolantinonidentificati jumpandsmile"}, {"datetaken": "2010-05-24 22:24:57", "license": "1", "title": "Tropicana yes", "text": "", "album_id": "72157624015502957", "longitude": "10.867109", "url_o": "https://farm5.staticflickr.com/4037/4651511552_68e1b318c3_o.jpg", "secret": "11b504183e", "media": "photo", "latitude": "44.785649", "id": "4651511552", "tags": "travel light party parco canon flickr emilia leisure lunapark luci modena carpi piscine 2010 fiera happyness divertimento eos450d pepe50"}, {"datetaken": "2010-05-24 23:04:34", "license": "1", "title": "Rosso di sera... - Red night", "text": "", "album_id": "72157624015502957", "longitude": "10.886678", "url_o": "https://farm5.staticflickr.com/4025/4641101703_f83f53bc63_o.jpg", "secret": "3e2719f871", "media": "photo", "latitude": "44.781750", "id": "4641101703", "tags": "park longexposure travel party apple canon flickr imac luna panoramica ferriswheel luci ruota ruotapanoramica pepe50"}, {"datetaken": "2010-05-24 23:10:45", "license": "1", "title": "Autoscontro - Dodgem", "text": "", "album_id": "72157624015502957", "longitude": "10.867109", "url_o": "https://farm5.staticflickr.com/4014/4652394346_f637028892_o.jpg", "secret": "d26ea6f64c", "media": "photo", "latitude": "44.785649", "id": "4652394346", "tags": "light italy apple night canon flickr imac loop carousel emilia lunapark luci notte giro carpi fiera happyness dodgem eos450d autoscontro pepe50"}, {"datetaken": "2010-05-26 10:54:25", "license": "1", "title": "Fiera di Carpi - Luna park in Carpi", "text": "", "album_id": "72157624015502957", "longitude": "10.886678", "url_o": "https://farm5.staticflickr.com/4040/4640974601_a877e2f79f_o.jpg", "secret": "aa1e7d0c91", "media": "photo", "latitude": "44.781750", "id": "4640974601", "tags": "park travel light party apple canon flickr imac luna ferriswheel leisure lunapark luci modena giostra carpi ruota fiera ruotapanoramica eos450d pepe50"}, {"datetaken": "2010-05-26 11:52:54", "license": "1", "title": "Gira la ruota - Spin the wheel", "text": "", "album_id": "72157624015502957", "longitude": "10.886678", "url_o": "https://farm5.staticflickr.com/4070/4641661552_d3b8777bb1_o.jpg", "secret": "1a887a2e02", "media": "photo", "latitude": "44.781750", "id": "4641661552", "tags": "travel party italy apple canon flickr italia imac ferriswheel lunapark carpi emiliaromagna ruota ruotapanoramica eos450d mywinners abigfave pepe50"}, {"datetaken": "2010-05-26 12:26:22", "license": "1", "title": "Ruota Panoramica - Ferris Wheel", "text": "", "album_id": "72157624015502957", "longitude": "10.886678", "url_o": "https://farm5.staticflickr.com/4065/4641100667_1dbbdab632_o.jpg", "secret": "d48958354a", "media": "photo", "latitude": "44.781750", "id": "4641100667", "tags": "park travel party apple canon flickr imac luna panoramica ferriswheel luci ruota ruotapanoramica pepe50"}, {"datetaken": "2010-05-26 12:26:44", "license": "1", "title": "Tutti alla Fiera - On all rides", "text": "", "album_id": "72157624015502957", "longitude": "10.886678", "url_o": "https://farm5.staticflickr.com/4021/4641101149_07ca47cb93_o.jpg", "secret": "73bfc6eb6f", "media": "photo", "latitude": "44.781750", "id": "4641101149", "tags": "park travel party apple canon flickr imac luna panoramica ferriswheel luci ruota ruotapanoramica pepe50"}, {"datetaken": "2009-05-11 10:16:08", "license": "2", "title": "01_Road_Scholars_2009_Day_1", "text": "", "album_id": "72157625207409772", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4946500811_5571494f78_o.jpg", "secret": "3ec03fcecf", "media": "photo", "latitude": "0", "id": "4946500811", "tags": "history university tour staff pennstate archives visitors faculty outreach archivist universityparkcampus roadscholars jackieesposito pennstaterconferencecenterhotel creditjillshockey"}, {"datetaken": "2009-05-11 10:55:23", "license": "2", "title": "02_Road_Scholars_2009_Day_1", "text": "", "album_id": "72157625207409772", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/4946501169_069ea5de08_o.jpg", "secret": "946739750d", "media": "photo", "latitude": "0", "id": "4946501169", "tags": "bus tour staff pennstate visitors faculty outreach grahamspanier universityparkcampus roadscholars presidentgrahamspanier creditjillshockey"}, {"datetaken": "2009-05-11 12:31:40", "license": "2", "title": "03_Road_Scholars_2009_Day_1", "text": "", "album_id": "72157625207409772", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/4946501631_64633f9c74_o.jpg", "secret": "566f1ba668", "media": "photo", "latitude": "0", "id": "4946501631", "tags": "tour staff pennstate chancellor visitors speakers commonwealth faculty outreach altoona campuses roadscholars creditjillshockey loribechtelwherry"}, {"datetaken": "2009-05-11 13:12:27", "license": "2", "title": "Altoona Ducks 04_Road_Scholars_2009_Day_1", "text": "", "album_id": "72157625207409772", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/4947090896_6bc9f05aef_o.jpg", "secret": "d21899378a", "media": "photo", "latitude": "0", "id": "4947090896", "tags": "animals buildings pond tour wildlife ducks staff pennstate visitors commonwealth faculty outreach altoona pennstatealtoona campuses roadscholars edithdavisevechapel creditjillshockey"}, {"datetaken": "2009-05-11 13:31:18", "license": "2", "title": "Altoona Campus 05_Road_Scholars_2009_Day_1", "text": "", "album_id": "72157625207409772", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/4946502269_52a330fafa_o.jpg", "secret": "30f83d4ea9", "media": "photo", "latitude": "0", "id": "4946502269", "tags": "students tour staff pennstate visitors commonwealth faculty outreach altoona pennstatealtoona lionambassadors campuses roadscholars creditjillshockey"}, {"datetaken": "2009-05-11 14:35:17", "license": "2", "title": "06_Road_Scholars_2009_Day_1", "text": "", "album_id": "72157625207409772", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/4946502769_44803c3e0d_o.jpg", "secret": "d4f7de06d2", "media": "photo", "latitude": "0", "id": "4946502769", "tags": "site nationalpark tour staff pennstate visitors museums faculty outreach johnstown altoona johnstownflood ungerhouse southforkdam roadscholars creditjillshockey nationalflood"}, {"datetaken": "2009-05-11 14:49:27", "license": "2", "title": "07_Road_Scholars_2009_Day_1", "text": "", "album_id": "72157625207409772", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4126/4947092078_d1701cdc80_o.jpg", "secret": "3c862e8e51", "media": "photo", "latitude": "0", "id": "4947092078", "tags": "history students site nationalpark tour staff pennstate visitors museums faculty outreach johnstown altoona pennstatealtoona johnstownflood marcharris ungerhouse southforkdam roadscholars jaredfrederick presidentgrahamspanier creditjillshockey nationalflood"}, {"datetaken": "2009-05-11 15:18:18", "license": "2", "title": "08_Road_Scholars_2009_Day_1", "text": "", "album_id": "72157625207409772", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/4946503433_bcb2830957_o.jpg", "secret": "56d454565b", "media": "photo", "latitude": "0", "id": "4946503433", "tags": "film blackfriday tour staff pennstate visitors commonwealth screening faculty outreach campuses johnstownflood roadscholars presidentgrahamspanier creditjillshockey"}, {"datetaken": "2009-05-11 18:57:48", "license": "2", "title": "Greater Allegheny -09_Road_Scholars_2009_Day_1", "text": "", "album_id": "72157625207409772", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/4947092672_4f3f3a31b2_o.jpg", "secret": "edf7f5d61f", "media": "photo", "latitude": "0", "id": "4947092672", "tags": "sculpture buildings tour staff pennstate visitors commonwealth faculty outreach nittanylionshrine campuses studentcommunitycenter pennstategreaterallegheny greaterallegheny roadscholars creditjillshockey"}, {"datetaken": "2009-05-11 19:07:06", "license": "2", "title": "10_Road_Scholars_2009_Day_1", "text": "", "album_id": "72157625207409772", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4946504047_77e57471c7_o.jpg", "secret": "34f458924a", "media": "photo", "latitude": "0", "id": "4946504047", "tags": "students tour classroom staff pennstate visitors commonwealth faculty outreach desks mainbuilding lionambassadors campuses pennstategreaterallegheny greaterallegheny roadscholars creditjillshockey"}, {"datetaken": "2009-05-11 19:26:47", "license": "2", "title": "11_Road_Scholars_2009_Day_1", "text": "", "album_id": "72157625207409772", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/4947093188_40331f12a2_o.jpg", "secret": "ceb1549126", "media": "photo", "latitude": "0", "id": "4947093188", "tags": "tour staff pennstate chancellor visitors speakers commonwealth faculty outreach campuses studentcommunitycenter pennstategreaterallegheny greaterallegheny roadscholars curtissporter creditjillshockey"}, {"datetaken": "2009-05-11 20:03:13", "license": "2", "title": "12_Road_Scholars_2009_Day_1", "text": "", "album_id": "72157625207409772", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/4946504545_ddf745ed39_o.jpg", "secret": "3bf4a1dabb", "media": "photo", "latitude": "0", "id": "4946504545", "tags": "food tour staff pennstate visitors commonwealth faculty outreach campuses pennstategreaterallegheny greaterallegheny housingandfoodservices roadscholars creditjillshockey"}, {"datetaken": "2004-08-27 09:38:32", "license": "5", "title": "hershey0804_01", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931787_28facd9422_o.jpg", "secret": "28facd9422", "media": "photo", "latitude": "0", "id": "1931787", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:32", "license": "5", "title": "hershey0804_02", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931789_cc91a81f22_o.jpg", "secret": "cc91a81f22", "media": "photo", "latitude": "0", "id": "1931789", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:32", "license": "5", "title": "hershey0804_03", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931792_7252760a1d_o.jpg", "secret": "7252760a1d", "media": "photo", "latitude": "0", "id": "1931792", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:32", "license": "5", "title": "hershey0804_04", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931795_04cb682553_o.jpg", "secret": "04cb682553", "media": "photo", "latitude": "0", "id": "1931795", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:32", "license": "5", "title": "hershey0804_05", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931798_c575fabd52_o.jpg", "secret": "c575fabd52", "media": "photo", "latitude": "0", "id": "1931798", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:32", "license": "5", "title": "hershey0804_06", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931802_924ac3f035_o.jpg", "secret": "924ac3f035", "media": "photo", "latitude": "0", "id": "1931802", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:33", "license": "5", "title": "hershey0804_07", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931806_6cbf74e28f_o.jpg", "secret": "6cbf74e28f", "media": "photo", "latitude": "0", "id": "1931806", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:33", "license": "5", "title": "hershey0804_08", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931809_cd2a97285d_o.jpg", "secret": "cd2a97285d", "media": "photo", "latitude": "0", "id": "1931809", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:33", "license": "5", "title": "hershey0804_09", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931812_b4c9453d6d_o.jpg", "secret": "b4c9453d6d", "media": "photo", "latitude": "0", "id": "1931812", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:33", "license": "5", "title": "hershey0804_10", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931814_500fd0f734_o.jpg", "secret": "500fd0f734", "media": "photo", "latitude": "0", "id": "1931814", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:33", "license": "5", "title": "hershey0804_11", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931817_e0febfb952_o.jpg", "secret": "e0febfb952", "media": "photo", "latitude": "0", "id": "1931817", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:33", "license": "5", "title": "hershey0804_12", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931819_4aa59f2f75_o.jpg", "secret": "4aa59f2f75", "media": "photo", "latitude": "0", "id": "1931819", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:33", "license": "5", "title": "hershey0804_13", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931822_a63ad0c1b8_o.jpg", "secret": "a63ad0c1b8", "media": "photo", "latitude": "0", "id": "1931822", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:33", "license": "5", "title": "hershey0804_14", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931826_1fa0adc1ff_o.jpg", "secret": "1fa0adc1ff", "media": "photo", "latitude": "0", "id": "1931826", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:33", "license": "5", "title": "hershey0804_15", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931830_3616c45f36_o.jpg", "secret": "3616c45f36", "media": "photo", "latitude": "0", "id": "1931830", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:33", "license": "5", "title": "hershey0804_16", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931832_5211bd24d5_o.jpg", "secret": "5211bd24d5", "media": "photo", "latitude": "0", "id": "1931832", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:33", "license": "5", "title": "hershey0804_17", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931834_8b799c396b_o.jpg", "secret": "8b799c396b", "media": "photo", "latitude": "0", "id": "1931834", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:33", "license": "5", "title": "hershey0804_18", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931842_177c2d4514_o.jpg", "secret": "177c2d4514", "media": "photo", "latitude": "0", "id": "1931842", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:34", "license": "5", "title": "hershey0804_19", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931852_3c63fef64c_o.jpg", "secret": "3c63fef64c", "media": "photo", "latitude": "0", "id": "1931852", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:34", "license": "5", "title": "hershey0804_20", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931859_8b434aab89_o.jpg", "secret": "8b434aab89", "media": "photo", "latitude": "0", "id": "1931859", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:34", "license": "5", "title": "hershey0804_21", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931866_7b9d19f48e_o.jpg", "secret": "7b9d19f48e", "media": "photo", "latitude": "0", "id": "1931866", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:34", "license": "5", "title": "hershey0804_22", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931877_be527e349d_o.jpg", "secret": "be527e349d", "media": "photo", "latitude": "0", "id": "1931877", "tags": "trip hershey 2004"}, {"datetaken": "2004-08-27 09:38:34", "license": "5", "title": "hershey0804_23", "text": "", "album_id": "48904", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931881_05a13f2dd4_o.jpg", "secret": "05a13f2dd4", "media": "photo", "latitude": "0", "id": "1931881", "tags": "trip hershey 2004"}, {"datetaken": "2005-06-23 21:33:38", "license": "2", "title": "Yellow Wall", "text": "", "album_id": "492675", "longitude": "-2.223574", "url_o": "https://farm1.staticflickr.com/17/21155629_f984e8cfa4_o.png", "secret": "f984e8cfa4", "media": "photo", "latitude": "53.471972", "id": "21155629", "tags": "sky yellow wall catchycolors geotagged manchester goldenrectangle barbedwire mostinteresting mostfavorited zoomzoom ardwick geo:lat=53471972 geo:lon=2223574 utatafeature werkswall"}, {"datetaken": "2005-06-23 21:35:43", "license": "2", "title": "Vents", "text": "", "album_id": "492675", "longitude": "-2.223574", "url_o": "https://farm1.staticflickr.com/16/21155918_f3351b1061_o.png", "secret": "f3351b1061", "media": "photo", "latitude": "53.471972", "id": "21155918", "tags": "vent horixontal lines goldenrectangle zoomzoom"}, {"datetaken": "2005-06-23 21:38:24", "license": "2", "title": "Yellow Wall", "text": "", "album_id": "492675", "longitude": "-2.223574", "url_o": "https://farm1.staticflickr.com/16/21156285_a6781dfff2_o.png", "secret": "a6781dfff2", "media": "photo", "latitude": "53.471972", "id": "21156285", "tags": "yellow wall ardwick manchester barbedwire sky goldenrectangle"}, {"datetaken": "2005-06-23 21:39:43", "license": "2", "title": "Golden Rectangle", "text": "", "album_id": "492675", "longitude": "-2.223574", "url_o": "https://farm1.staticflickr.com/16/21156509_92d1fcc39f_o.png", "secret": "92d1fcc39f", "media": "photo", "latitude": "53.471972", "id": "21156509", "tags": "sky yellow wall manchester goldenrectangle barbedwire ardwick"}, {"datetaken": "2005-06-23 21:42:43", "license": "2", "title": "Circles", "text": "", "album_id": "492675", "longitude": "-2.223574", "url_o": "https://farm1.staticflickr.com/15/21156860_170f79239a_o.png", "secret": "170f79239a", "media": "photo", "latitude": "53.471972", "id": "21156860", "tags": "yellow wall ardwick manchester barbedwire sky goldenrectangle"}, {"datetaken": "2005-06-23 21:45:40", "license": "2", "title": "Yellow Vent", "text": "", "album_id": "492675", "longitude": "-2.223574", "url_o": "https://farm1.staticflickr.com/16/21157312_6f23699283_o.jpg", "secret": "6f23699283", "media": "photo", "latitude": "53.471972", "id": "21157312", "tags": "yellow wall ardwick manchester vent goldenrectangle zoomzoom"}, {"datetaken": "2005-06-23 21:45:54", "license": "2", "title": "Yellow Black", "text": "", "album_id": "492675", "longitude": "-2.223574", "url_o": "https://farm1.staticflickr.com/10/21157371_1f56115553_o.jpg", "secret": "1f56115553", "media": "photo", "latitude": "53.471972", "id": "21157371", "tags": "yellow wall ardwick manchester barbedwire sky goldenrectangle"}, {"datetaken": "2005-06-23 22:20:51", "license": "2", "title": "Walls Behind Walls", "text": "", "album_id": "492675", "longitude": "-2.223574", "url_o": "https://farm1.staticflickr.com/15/21162824_5fe914afa4_o.png", "secret": "5fe914afa4", "media": "photo", "latitude": "53.471972", "id": "21162824", "tags": "yellow wall ardwick manchester goldenrectangle"}, {"datetaken": "2005-06-24 01:49:23", "license": "2", "title": "Circlesquare", "text": "", "album_id": "492675", "longitude": "-2.223574", "url_o": "https://farm1.staticflickr.com/15/21191842_1b1eea90a1_o.png", "secret": "1b1eea90a1", "media": "photo", "latitude": "53.471972", "id": "21191842", "tags": "squaredcircle barbedwire circle sky manchester"}, {"datetaken": "2005-06-24 02:24:29", "license": "2", "title": "Barbed", "text": "", "album_id": "492675", "longitude": "-2.223574", "url_o": "https://farm1.staticflickr.com/15/21196728_783a92f245_o.png", "secret": "783a92f245", "media": "photo", "latitude": "53.471972", "id": "21196728", "tags": "barbedwire sky razor sharp goldenrectangle"}, {"datetaken": "2003-07-13 16:01:11", "license": "5", "title": "Boardwalk and Wonder Wheel", "text": "", "album_id": "634575", "longitude": "-73.979240", "url_o": "https://farm1.staticflickr.com/21/28085615_948027129e_o.jpg", "secret": "948027129e", "media": "photo", "latitude": "40.573181", "id": "28085615", "tags": "coneyisland wonderwheel boardwalk nyc brooklyn"}, {"datetaken": "2003-07-13 16:14:24", "license": "5", "title": "Cyclone", "text": "", "album_id": "634575", "longitude": "-73.978071", "url_o": "https://farm1.staticflickr.com/22/28085651_e2be1bb86f_o.jpg", "secret": "e2be1bb86f", "media": "photo", "latitude": "40.574672", "id": "28085651", "tags": "coneyisland cyclone nyc brooklyn"}, {"datetaken": "2003-07-13 16:20:36", "license": "5", "title": "Amusements", "text": "", "album_id": "634575", "longitude": "-73.978790", "url_o": "https://farm1.staticflickr.com/23/28085683_a6798fc6f5_o.jpg", "secret": "a6798fc6f5", "media": "photo", "latitude": "40.575239", "id": "28085683", "tags": "coneyisland wonderwheel nyc brooklyn"}, {"datetaken": "2003-07-13 16:23:03", "license": "5", "title": "Ride", "text": "", "album_id": "634575", "longitude": "-73.979476", "url_o": "https://farm1.staticflickr.com/22/28085712_ad4c451526_o.jpg", "secret": "ad4c451526", "media": "photo", "latitude": "40.574827", "id": "28085712", "tags": "coneyisland wonderwheel nyc brooklyn"}, {"datetaken": "2003-07-13 16:24:31", "license": "5", "title": "Wonder Wheel Sign", "text": "", "album_id": "634575", "longitude": "-73.979058", "url_o": "https://farm1.staticflickr.com/21/28085751_91f74ba830_o.jpg", "secret": "91f74ba830", "media": "photo", "latitude": "40.574750", "id": "28085751", "tags": "coneyisland wonderwheel sign nyc brooklyn"}, {"datetaken": "2003-07-13 16:25:52", "license": "5", "title": "Wonder Wheel", "text": "", "album_id": "634575", "longitude": "-73.978950", "url_o": "https://farm1.staticflickr.com/21/28085792_29fd18ab59_o.jpg", "secret": "29fd18ab59", "media": "photo", "latitude": "40.574358", "id": "28085792", "tags": "coneyisland wonderwheel nyc brooklyn"}, {"datetaken": "2003-07-13 16:27:21", "license": "5", "title": "Wonder Wheel", "text": "", "album_id": "634575", "longitude": "-73.979229", "url_o": "https://farm1.staticflickr.com/22/28085933_b29c5a69d4_o.jpg", "secret": "b29c5a69d4", "media": "photo", "latitude": "40.574236", "id": "28085933", "tags": "coneyisland wonderwheel nyc brooklyn"}, {"datetaken": "2003-07-13 16:27:32", "license": "5", "title": "Wonder Wheel", "text": "", "album_id": "634575", "longitude": "-73.979229", "url_o": "https://farm1.staticflickr.com/21/28085975_4af606c7a7_o.jpg", "secret": "4af606c7a7", "media": "photo", "latitude": "40.574236", "id": "28085975", "tags": "coneyisland wonderwheel nyc brooklyn"}, {"datetaken": "2003-07-13 16:28:39", "license": "5", "title": "Wonder Wheel", "text": "", "album_id": "634575", "longitude": "-73.979723", "url_o": "https://farm1.staticflickr.com/21/29975781_36f138fcd3_o.jpg", "secret": "36f138fcd3", "media": "photo", "latitude": "40.574016", "id": "29975781", "tags": "coneyisland wonderwheel nyc brooklyn"}, {"datetaken": "2003-07-13 16:44:33", "license": "5", "title": "\"No Swimming\"", "text": "", "album_id": "634575", "longitude": "-73.983682", "url_o": "https://farm1.staticflickr.com/21/28086053_28d7b3ea17_o.jpg", "secret": "28d7b3ea17", "media": "photo", "latitude": "40.571172", "id": "28086053", "tags": "coneyisland pier beach sign nyc brooklyn"}, {"datetaken": "2003-07-13 16:45:48", "license": "5", "title": "Beach", "text": "", "album_id": "634575", "longitude": "-73.983210", "url_o": "https://farm1.staticflickr.com/21/28086100_eade0cdaac_o.jpg", "secret": "eade0cdaac", "media": "photo", "latitude": "40.570161", "id": "28086100", "tags": "coneyisland beach wonderwheel nyc brooklyn"}, {"datetaken": "2003-07-13 16:47:20", "license": "5", "title": "Pier", "text": "", "album_id": "634575", "longitude": "-73.983575", "url_o": "https://farm1.staticflickr.com/22/28086125_645f50f5c6_o.jpg", "secret": "645f50f5c6", "media": "photo", "latitude": "40.570659", "id": "28086125", "tags": "coneyisland pier fishing nyc brooklyn"}, {"datetaken": "2003-07-13 16:47:45", "license": "5", "title": "Poles", "text": "", "album_id": "634575", "longitude": "-73.983575", "url_o": "https://farm1.staticflickr.com/23/28086145_614a5b54df_o.jpg", "secret": "614a5b54df", "media": "photo", "latitude": "40.570659", "id": "28086145", "tags": "coneyisland pier fishing nyc brooklyn"}, {"datetaken": "2003-07-13 16:49:50", "license": "5", "title": "Pier", "text": "", "album_id": "634575", "longitude": "-73.983306", "url_o": "https://farm1.staticflickr.com/22/28086193_5c37f6803e_o.jpg", "secret": "5c37f6803e", "media": "photo", "latitude": "40.569746", "id": "28086193", "tags": "coneyisland pier beach nyc brooklyn"}, {"datetaken": "2003-07-13 16:52:01", "license": "5", "title": "Pier", "text": "", "album_id": "634575", "longitude": "-73.983478", "url_o": "https://farm1.staticflickr.com/23/28086212_b53da2a66d_o.jpg", "secret": "b53da2a66d", "media": "photo", "latitude": "40.570300", "id": "28086212", "tags": "coneyisland pier parachutedrop nyc brooklyn"}, {"datetaken": "2003-07-13 17:07:05", "license": "5", "title": "Boardwalk", "text": "", "album_id": "634575", "longitude": "-73.987491", "url_o": "https://farm1.staticflickr.com/21/28086251_2884fba61e_o.jpg", "secret": "2884fba61e", "media": "photo", "latitude": "40.572370", "id": "28086251", "tags": "nyc brooklyn coneyisland boardwalk estimatedlocation childsbuilding"}, {"datetaken": "2003-07-13 17:12:42", "license": "5", "title": "Boardwalk", "text": "", "album_id": "634575", "longitude": "-73.986922", "url_o": "https://farm1.staticflickr.com/23/28086292_ae049a6509_o.jpg", "secret": "ae049a6509", "media": "photo", "latitude": "40.572557", "id": "28086292", "tags": "nyc brooklyn coneyisland surfer boardwalk estimatedlocation"}, {"datetaken": "2003-07-13 17:24:59", "license": "5", "title": "Playland", "text": "", "album_id": "634575", "longitude": "-73.982126", "url_o": "https://farm1.staticflickr.com/23/28086316_4157801663_o.jpg", "secret": "4157801663", "media": "photo", "latitude": "40.574473", "id": "28086316", "tags": "coneyisland sign nyc brooklyn"}, {"datetaken": "2005-08-01 20:00:09", "license": "2", "title": "The Crowds Build", "text": "", "album_id": "688603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30614545_c3f1a35d93_o.jpg", "secret": "c3f1a35d93", "media": "photo", "latitude": "0", "id": "30614545", "tags": "japan toyama hanabi fireworks night"}, {"datetaken": "2005-08-01 20:02:51", "license": "2", "title": "The Show Begins", "text": "", "album_id": "688603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30614674_675f04e878_o.jpg", "secret": "675f04e878", "media": "photo", "latitude": "0", "id": "30614674", "tags": "japan toyama hanabi fireworks night"}, {"datetaken": "2005-08-01 20:07:16", "license": "2", "title": "Dandy", "text": "", "album_id": "688603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30614732_9ecfa018a0_o.jpg", "secret": "9ecfa018a0", "media": "photo", "latitude": "0", "id": "30614732", "tags": "japan toyama hanabi fireworks night"}, {"datetaken": "2005-08-01 20:14:49", "license": "2", "title": "Pine", "text": "", "album_id": "688603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30614796_815e4c0fee_o.jpg", "secret": "815e4c0fee", "media": "photo", "latitude": "0", "id": "30614796", "tags": "japan toyama hanabi fireworks night"}, {"datetaken": "2005-08-01 20:14:56", "license": "2", "title": "Hairball", "text": "", "album_id": "688603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30614901_a18cb75de7_o.jpg", "secret": "a18cb75de7", "media": "photo", "latitude": "0", "id": "30614901", "tags": "japan toyama hanabi fireworks night"}, {"datetaken": "2005-08-01 20:15:04", "license": "2", "title": "Rain", "text": "", "album_id": "688603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30614992_a4e59fe16c_o.jpg", "secret": "a4e59fe16c", "media": "photo", "latitude": "0", "id": "30614992", "tags": "japan toyama hanabi fireworks night"}, {"datetaken": "2005-08-01 20:16:42", "license": "2", "title": "Spectacular", "text": "", "album_id": "688603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30615043_71e0454d45_o.jpg", "secret": "71e0454d45", "media": "photo", "latitude": "0", "id": "30615043", "tags": "japan toyama hanabi fireworks night"}, {"datetaken": "2005-08-01 20:18:31", "license": "2", "title": "Hot", "text": "", "album_id": "688603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30615139_6e7f85f12c_o.jpg", "secret": "6e7f85f12c", "media": "photo", "latitude": "0", "id": "30615139", "tags": "japan toyama hanabi fireworks night"}, {"datetaken": "2005-08-01 20:22:56", "license": "2", "title": "Minty", "text": "", "album_id": "688603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30615244_3dfa4074c2_o.jpg", "secret": "3dfa4074c2", "media": "photo", "latitude": "0", "id": "30615244", "tags": "japan toyama hanabi fireworks night"}, {"datetaken": "2005-08-01 20:24:17", "license": "2", "title": "Glimpse", "text": "", "album_id": "688603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30615354_02a5266239_o.jpg", "secret": "02a5266239", "media": "photo", "latitude": "0", "id": "30615354", "tags": "japan toyama hanabi fireworks night"}, {"datetaken": "2005-08-01 20:25:02", "license": "2", "title": "Sprites", "text": "", "album_id": "688603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30615423_87668d8406_o.jpg", "secret": "87668d8406", "media": "photo", "latitude": "0", "id": "30615423", "tags": "japan toyama hanabi fireworks night"}, {"datetaken": "2005-08-01 20:25:22", "license": "2", "title": "Corona", "text": "", "album_id": "688603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30615523_00b0653b35_o.jpg", "secret": "00b0653b35", "media": "photo", "latitude": "0", "id": "30615523", "tags": "japan toyama hanabi fireworks night"}, {"datetaken": "2005-08-01 20:25:41", "license": "2", "title": "Bomb", "text": "", "album_id": "688603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30615625_529a8ae893_o.jpg", "secret": "529a8ae893", "media": "photo", "latitude": "0", "id": "30615625", "tags": "japan toyama hanabi fireworks night"}, {"datetaken": "2005-08-01 20:26:02", "license": "2", "title": "Bowtie", "text": "", "album_id": "688603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30615705_1a132df643_o.jpg", "secret": "1a132df643", "media": "photo", "latitude": "0", "id": "30615705", "tags": "japan toyama hanabi fireworks night"}, {"datetaken": "2005-08-01 20:33:15", "license": "2", "title": "Overlay", "text": "", "album_id": "688603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30615803_e08b2df292_o.jpg", "secret": "e08b2df292", "media": "photo", "latitude": "0", "id": "30615803", "tags": "japan toyama hanabi fireworks night"}, {"datetaken": "2005-08-01 20:41:32", "license": "2", "title": "Debris", "text": "", "album_id": "688603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30615948_df424c8fec_o.jpg", "secret": "df424c8fec", "media": "photo", "latitude": "0", "id": "30615948", "tags": "japan toyama hanabi fireworks night"}, {"datetaken": "2011-01-02 16:40:10", "license": "1", "title": "Red", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5004/5318407038_9c182fd03d_o.jpg", "secret": "abdfbe2f1f", "media": "photo", "latitude": "0", "id": "5318407038", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 16:40:48", "license": "1", "title": "Sold", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5208/5318410730_2a68ee6dcd_o.jpg", "secret": "0f45de9479", "media": "photo", "latitude": "0", "id": "5318410730", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 16:40:56", "license": "1", "title": "Frosty", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5201/5317818733_97966c7821_o.jpg", "secret": "ff58c81a49", "media": "photo", "latitude": "0", "id": "5317818733", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 16:43:25", "license": "1", "title": "Blue sky", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5247/5318418934_6fc2f190f5_o.jpg", "secret": "2e2c07b72a", "media": "photo", "latitude": "0", "id": "5318418934", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 16:43:46", "license": "1", "title": "Tree", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5124/5318422454_bafaf4ffc6_o.jpg", "secret": "a5c4d93581", "media": "photo", "latitude": "0", "id": "5318422454", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 16:47:22", "license": "1", "title": "Graffiti", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5284/5318425716_3f8e8611a5_o.jpg", "secret": "91eb581cff", "media": "photo", "latitude": "0", "id": "5318425716", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 16:47:58", "license": "1", "title": "Frosty", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5047/5318428950_6e1340fd8a_o.jpg", "secret": "116371ac8c", "media": "photo", "latitude": "0", "id": "5318428950", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 16:48:16", "license": "1", "title": "Frosty", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5128/5317836793_3ceae91b14_o.jpg", "secret": "e77e8c4a1b", "media": "photo", "latitude": "0", "id": "5317836793", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 16:50:19", "license": "1", "title": "Bright", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5050/5318435932_5a5fd7c977_o.jpg", "secret": "5df0ecdabf", "media": "photo", "latitude": "0", "id": "5318435932", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 16:51:58", "license": "1", "title": "Post", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5167/5317843079_2f88d40b7b_o.jpg", "secret": "816163f28a", "media": "photo", "latitude": "0", "id": "5317843079", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 16:53:21", "license": "1", "title": "Mail", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5008/5317846773_3972c83597_o.jpg", "secret": "6e44da0f09", "media": "photo", "latitude": "0", "id": "5317846773", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 17:07:29", "license": "1", "title": "Sun", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5002/5317850107_7ce97aae3e_o.jpg", "secret": "9f7199b44c", "media": "photo", "latitude": "0", "id": "5317850107", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 17:09:28", "license": "1", "title": "Sun", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5086/5317853417_bda1ffb67d_o.jpg", "secret": "eb12cc4765", "media": "photo", "latitude": "0", "id": "5317853417", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 17:10:38", "license": "1", "title": "Slow", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5048/5317857111_b90eaede4a_o.jpg", "secret": "e882c9911a", "media": "photo", "latitude": "0", "id": "5317857111", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 17:13:48", "license": "1", "title": "Sun", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5130/5318456694_2150c34874_o.jpg", "secret": "7e5a34c478", "media": "photo", "latitude": "0", "id": "5318456694", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 17:15:46", "license": "1", "title": "Sun", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5246/5317865849_992e6d6438_o.jpg", "secret": "78f1709aae", "media": "photo", "latitude": "0", "id": "5317865849", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 17:19:43", "license": "1", "title": "Sun", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5045/5318465566_74554bb508_o.jpg", "secret": "f75afc4812", "media": "photo", "latitude": "0", "id": "5318465566", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 17:20:51", "license": "1", "title": "Sun", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5122/5317874027_f8b8eaf4cb_o.jpg", "secret": "1001aabd85", "media": "photo", "latitude": "0", "id": "5317874027", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 17:29:26", "license": "1", "title": "Graffiti", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5282/5318473510_338327b2fa_o.jpg", "secret": "4bf6a4e028", "media": "photo", "latitude": "0", "id": "5318473510", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 17:31:28", "license": "1", "title": "Graffiti", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5170/5318477100_87939e14b4_o.jpg", "secret": "56fe267af7", "media": "photo", "latitude": "0", "id": "5318477100", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 17:31:40", "license": "1", "title": "Graffiti", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5001/5318481210_5d7427db71_o.jpg", "secret": "ea0ac6c8a4", "media": "photo", "latitude": "0", "id": "5318481210", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 17:36:19", "license": "1", "title": "Sun", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5082/5317889331_62e31f7922_o.jpg", "secret": "18e1dbc634", "media": "photo", "latitude": "0", "id": "5317889331", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 17:40:46", "license": "1", "title": "Grafitti", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5043/5317893187_f69a283c67_o.jpg", "secret": "c078f4631a", "media": "photo", "latitude": "0", "id": "5317893187", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 17:58:34", "license": "1", "title": "Christmas house", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5169/5318493048_a1bc807d79_o.jpg", "secret": "ac798287ba", "media": "photo", "latitude": "0", "id": "5318493048", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 17:59:11", "license": "1", "title": "Christmas house", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5281/5317900729_24ac918337_o.jpg", "secret": "39cc6c463e", "media": "photo", "latitude": "0", "id": "5317900729", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 17:59:30", "license": "1", "title": "Christmas house", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5209/5317904267_794a83ab96_o.jpg", "secret": "06a44e7cee", "media": "photo", "latitude": "0", "id": "5317904267", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 17:59:43", "license": "1", "title": "Christmas house", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5202/5318503754_bff5bef9b6_o.jpg", "secret": "449be91d65", "media": "photo", "latitude": "0", "id": "5318503754", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 18:00:23", "license": "1", "title": "Christmas house", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5168/5318507136_16263e7694_o.jpg", "secret": "1876983428", "media": "photo", "latitude": "0", "id": "5318507136", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2011-01-02 18:00:36", "license": "1", "title": "Christmas house", "text": "", "album_id": "72157625732993716", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5004/5318511670_5b1a9ed7bc_o.jpg", "secret": "1417ae1bc7", "media": "photo", "latitude": "0", "id": "5318511670", "tags": "january photowalk portcoquitlam 2011"}, {"datetaken": "2010-11-06 20:31:07", "license": "3", "title": "wildfire-7.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.171275", "url_o": "https://farm6.staticflickr.com/5130/5353688020_05a1f4a2bb_o.jpg", "secret": "ef3725b05b", "media": "photo", "latitude": "51.482465", "id": "5353688020", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:31:44", "license": "3", "title": "wildfire-1.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.171017", "url_o": "https://farm6.staticflickr.com/5288/5353071713_0a51ac058a_o.jpg", "secret": "beb1e48251", "media": "photo", "latitude": "51.482705", "id": "5353071713", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:32:21", "license": "3", "title": "wildfire-2.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.171189", "url_o": "https://farm6.staticflickr.com/5241/5353686056_b4a20d0b01_o.jpg", "secret": "461b47d1eb", "media": "photo", "latitude": "51.482585", "id": "5353686056", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:33:52", "license": "3", "title": "wildfire-5.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.170974", "url_o": "https://farm6.staticflickr.com/5043/5353073301_4fc3b781a3_o.jpg", "secret": "c934c3e738", "media": "photo", "latitude": "51.482518", "id": "5353073301", "tags": "light water fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:33:56", "license": "3", "title": "wildfire-6.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.170845", "url_o": "https://farm6.staticflickr.com/5210/5353073693_7e2b8f9383_o.jpg", "secret": "59544493a0", "media": "photo", "latitude": "51.482612", "id": "5353073693", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:34:24", "license": "3", "title": "wildfire-13.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.170845", "url_o": "https://farm6.staticflickr.com/5004/5353690492_9df6f23a8a_o.jpg", "secret": "c9c6972919", "media": "photo", "latitude": "51.482572", "id": "5353690492", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:34:31", "license": "3", "title": "wildfire-19.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.170974", "url_o": "https://farm6.staticflickr.com/5008/5353079039_029a990bf7_o.jpg", "secret": "639921f0d3", "media": "photo", "latitude": "51.482532", "id": "5353079039", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:34:43", "license": "3", "title": "wildfire-22.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.171318", "url_o": "https://farm6.staticflickr.com/5166/5353694354_4b0a1ddde5_o.jpg", "secret": "51aaa78abd", "media": "photo", "latitude": "51.482492", "id": "5353694354", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:35:13", "license": "3", "title": "wildfire-14.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.171060", "url_o": "https://farm6.staticflickr.com/5285/5353076923_2eac1f358a_o.jpg", "secret": "86fe0c172e", "media": "photo", "latitude": "51.482612", "id": "5353076923", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:35:17", "license": "3", "title": "wildfire-15.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.170760", "url_o": "https://farm6.staticflickr.com/5243/5353077327_a6c5aab65d_o.jpg", "secret": "4d957d0eaa", "media": "photo", "latitude": "51.482612", "id": "5353077327", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:35:19", "license": "3", "title": "wildfire-20.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.171232", "url_o": "https://farm6.staticflickr.com/5164/5353693474_7d67d064c9_o.jpg", "secret": "52ddaef26d", "media": "photo", "latitude": "51.482545", "id": "5353693474", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:35:42", "license": "3", "title": "wildfire-23.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.171189", "url_o": "https://farm6.staticflickr.com/5166/5353694748_b9bc9ab48b_o.jpg", "secret": "a0f4f418c0", "media": "photo", "latitude": "51.482639", "id": "5353694748", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:35:59", "license": "3", "title": "wildfire-10.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.170931", "url_o": "https://farm6.staticflickr.com/5084/5353075357_349d00cfe4_o.jpg", "secret": "333712b0d5", "media": "photo", "latitude": "51.482625", "id": "5353075357", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:36:26", "license": "3", "title": "wildfire-21.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.171189", "url_o": "https://farm6.staticflickr.com/5043/5353079903_322b51d77d_o.jpg", "secret": "0e8492f719", "media": "photo", "latitude": "51.482558", "id": "5353079903", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:37:26", "license": "3", "title": "wildfire-8.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.170760", "url_o": "https://farm6.staticflickr.com/5290/5353074485_a80ef2339e_o.jpg", "secret": "a0154f0f2e", "media": "photo", "latitude": "51.482558", "id": "5353074485", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:37:32", "license": "3", "title": "wildfire-24.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.170845", "url_o": "https://farm6.staticflickr.com/5123/5353081109_2df93cdec4_o.jpg", "secret": "36908ff0b8", "media": "photo", "latitude": "51.482598", "id": "5353081109", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:37:44", "license": "3", "title": "wildfire-16.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.170931", "url_o": "https://farm6.staticflickr.com/5043/5353691752_8688b8cd67_o.jpg", "secret": "23c87e60ca", "media": "photo", "latitude": "51.482598", "id": "5353691752", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:40:33", "license": "3", "title": "wildfire-3.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.170974", "url_o": "https://farm6.staticflickr.com/5004/5353686492_aa559725ee_o.jpg", "secret": "8d4cc3df62", "media": "photo", "latitude": "51.482625", "id": "5353686492", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:40:40", "license": "3", "title": "wildfire-17.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.170974", "url_o": "https://farm6.staticflickr.com/5087/5353692436_2be4552947_o.jpg", "secret": "aaacf6ecb1", "media": "photo", "latitude": "51.482532", "id": "5353692436", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:40:45", "license": "3", "title": "wildfire-18.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.171189", "url_o": "https://farm6.staticflickr.com/5167/5353692708_dcbe797735_o.jpg", "secret": "0af8e129df", "media": "photo", "latitude": "51.482518", "id": "5353692708", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:40:51", "license": "3", "title": "wildfire-12.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.170931", "url_o": "https://farm6.staticflickr.com/5281/5353690088_018135f459_o.jpg", "secret": "1941c467a1", "media": "photo", "latitude": "51.482585", "id": "5353690088", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-06 20:41:14", "license": "3", "title": "wildfire-4.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.171017", "url_o": "https://farm6.staticflickr.com/5090/5353072875_b1f318ab82_o.jpg", "secret": "8c67c4c337", "media": "photo", "latitude": "51.482505", "id": "5353072875", "tags": "light fire fireworks battersea wildfire pyrotechnic"}, {"datetaken": "2010-11-07 20:02:46", "license": "3", "title": "wildfire-9.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.039567", "url_o": "https://farm6.staticflickr.com/5045/5353688906_7523a10b99_o.jpg", "secret": "e837e9b35f", "media": "photo", "latitude": "51.535915", "id": "5353688906", "tags": "light fire fireworks wildfire pyrotechnic fireworksvictoriapark"}, {"datetaken": "2010-11-07 20:08:49", "license": "3", "title": "wildfire-11.jpg", "text": "", "album_id": "72157625818675128", "longitude": "-0.038280", "url_o": "https://farm6.staticflickr.com/5081/5353689692_de8f7143a9_o.jpg", "secret": "ca73f719de", "media": "photo", "latitude": "51.536619", "id": "5353689692", "tags": "light blur fire fireworks wildfire pyrotechnic fireworksvictoriapark"}, {"datetaken": "2009-07-17 15:17:02", "license": "2", "title": "02", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5043/5353795597_419eb32713_o.jpg", "secret": "eb687ffd39", "media": "photo", "latitude": "0", "id": "5353795597", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-17 15:36:06", "license": "2", "title": "03", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5049/5353795539_47c8560ddc_o.jpg", "secret": "d556204e5f", "media": "photo", "latitude": "0", "id": "5353795539", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-17 15:43:01", "license": "2", "title": "01", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5121/5354410450_5a9f48f37f_o.jpg", "secret": "78f8a91493", "media": "photo", "latitude": "0", "id": "5354410450", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-17 21:16:34", "license": "2", "title": "04", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5209/5354410342_def66972f6_o.jpg", "secret": "65b6a95031", "media": "photo", "latitude": "0", "id": "5354410342", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-17 21:40:48", "license": "2", "title": "05", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5246/5353795457_5b61fbe2e3_o.jpg", "secret": "40af7169b5", "media": "photo", "latitude": "0", "id": "5353795457", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-17 21:41:50", "license": "2", "title": "06", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5165/5353795423_f0ca341858_o.jpg", "secret": "5265e13401", "media": "photo", "latitude": "0", "id": "5353795423", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-17 21:58:23", "license": "2", "title": "07", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5044/5353795391_b67cd7d5e2_o.jpg", "secret": "5390d7044c", "media": "photo", "latitude": "0", "id": "5353795391", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-17 22:24:53", "license": "2", "title": "08", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5125/5353795351_355b649053_o.jpg", "secret": "1f1cf856e8", "media": "photo", "latitude": "0", "id": "5353795351", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-17 22:25:05", "license": "2", "title": "09", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5282/5353795325_a921b30afd_o.jpg", "secret": "2697a49cb0", "media": "photo", "latitude": "0", "id": "5353795325", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-17 22:25:31", "license": "2", "title": "10", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5243/5353795265_e0e9a37bec_o.jpg", "secret": "8a0702f39a", "media": "photo", "latitude": "0", "id": "5353795265", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-17 22:25:38", "license": "2", "title": "11", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5124/5353795225_0f0a65b2fb_o.jpg", "secret": "a54ab56259", "media": "photo", "latitude": "0", "id": "5353795225", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-17 22:38:47", "license": "2", "title": "12", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5204/5354410098_4b1d490db7_o.jpg", "secret": "e72f875dff", "media": "photo", "latitude": "0", "id": "5354410098", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-17 22:39:36", "license": "2", "title": "13", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5248/5353795175_7cf156c2a5_o.jpg", "secret": "181d9c28bd", "media": "photo", "latitude": "0", "id": "5353795175", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-17 22:40:23", "license": "2", "title": "14", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5042/5353795143_167ab8179c_o.jpg", "secret": "b28d327e25", "media": "photo", "latitude": "0", "id": "5353795143", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-17 22:43:51", "license": "2", "title": "15", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5010/5353795105_35ca21fc8b_o.jpg", "secret": "da2431a49f", "media": "photo", "latitude": "0", "id": "5353795105", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-18 11:55:13", "license": "2", "title": "16", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5128/5353795053_24dd064463_o.jpg", "secret": "4ae344872c", "media": "photo", "latitude": "0", "id": "5353795053", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-18 11:59:21", "license": "2", "title": "18", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5128/5353795015_0bd981fc45_o.jpg", "secret": "6bd9cffe10", "media": "photo", "latitude": "0", "id": "5353795015", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-18 17:26:10", "license": "2", "title": "20", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5129/5353794979_c859609225_o.jpg", "secret": "a169e5431b", "media": "photo", "latitude": "0", "id": "5353794979", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-18 17:42:48", "license": "2", "title": "21", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5046/5354409850_f38dfd675c_o.jpg", "secret": "f1f4f620a2", "media": "photo", "latitude": "0", "id": "5354409850", "tags": "csi sanpatrignano"}, {"datetaken": "2009-07-18 21:19:30", "license": "2", "title": "22", "text": "", "album_id": "72157625820834578", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5005/5354409816_0158921563_o.jpg", "secret": "2f27389f04", "media": "photo", "latitude": "0", "id": "5354409816", "tags": "csi sanpatrignano"}, {"datetaken": "2011-01-13 21:32:46", "license": "3", "title": "Beat Junkies - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5164/5354501082_e4e3b6d91e_o.jpg", "secret": "367c28f99f", "media": "photo", "latitude": "0", "id": "5354501082", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 21:36:26", "license": "3", "title": "Beat Junkies - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5043/5354501134_6217b50a5e_o.jpg", "secret": "4469509a60", "media": "photo", "latitude": "0", "id": "5354501134", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 21:38:39", "license": "3", "title": "Beat Junkies - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5008/5354501188_70033b6644_o.jpg", "secret": "fde76fc14d", "media": "photo", "latitude": "0", "id": "5354501188", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 21:40:14", "license": "3", "title": "Beat Junkies - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5001/5353886581_1b7304e1a0_o.jpg", "secret": "8f127c76b5", "media": "photo", "latitude": "0", "id": "5353886581", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 21:41:04", "license": "3", "title": "Beat Junkies - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5004/5353886631_541245f581_o.jpg", "secret": "8d01ecda74", "media": "photo", "latitude": "0", "id": "5353886631", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 21:41:18", "license": "3", "title": "Beat Junkies - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5086/5354501360_076b60a1cf_o.jpg", "secret": "11fea12a10", "media": "photo", "latitude": "0", "id": "5354501360", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 21:43:07", "license": "3", "title": "Beat Junkies - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5007/5353886733_bff2f8783f_o.jpg", "secret": "1ddcd62ac2", "media": "photo", "latitude": "0", "id": "5353886733", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 21:46:14", "license": "3", "title": "Beat Junkies - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5082/5353886785_cd3df03d8a_o.jpg", "secret": "3abb207b2d", "media": "photo", "latitude": "0", "id": "5353886785", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 21:47:41", "license": "3", "title": "Beat Junkies feat. Rakaa - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5122/5354501490_0627ff6c9a_o.jpg", "secret": "96d4fd4fea", "media": "photo", "latitude": "0", "id": "5354501490", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 22:34:00", "license": "3", "title": "Beat Junkies feat. Rakaa - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5164/5354501610_4e5e71753d_o.jpg", "secret": "b2231ae029", "media": "photo", "latitude": "0", "id": "5354501610", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 23:10:12", "license": "3", "title": "Grandmaster Flash - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5169/5354501670_9d3b27f1fc_o.jpg", "secret": "a3afdb88d0", "media": "photo", "latitude": "0", "id": "5354501670", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 23:11:03", "license": "3", "title": "Grandmaster Flash - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5046/5354501722_a6e2b45977_o.jpg", "secret": "aa146eee3f", "media": "photo", "latitude": "0", "id": "5354501722", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 23:11:40", "license": "3", "title": "Grandmaster Flash - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5046/5354501792_f48cdeab37_o.jpg", "secret": "86c78827f6", "media": "photo", "latitude": "0", "id": "5354501792", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 23:19:16", "license": "3", "title": "Grandmaster Flash - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5167/5354501850_45fed72f69_o.jpg", "secret": "dafd3c3c62", "media": "photo", "latitude": "0", "id": "5354501850", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 23:35:49", "license": "3", "title": "Grandmaster Flash - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5241/5353887233_15350b8284_o.jpg", "secret": "0c2a723671", "media": "photo", "latitude": "0", "id": "5353887233", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 23:36:57", "license": "3", "title": "Grandmaster Flash - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5205/5354501958_70bbfcf63c_o.jpg", "secret": "c97240691f", "media": "photo", "latitude": "0", "id": "5354501958", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 23:39:09", "license": "3", "title": "Grandmaster Flash - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5003/5354502038_d70f8a23ea_o.jpg", "secret": "82c9111080", "media": "photo", "latitude": "0", "id": "5354502038", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 23:39:21", "license": "3", "title": "Grandmaster Flash - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5204/5354502106_823588ba72_o.jpg", "secret": "d5dbe762be", "media": "photo", "latitude": "0", "id": "5354502106", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 23:39:35", "license": "3", "title": "Grandmaster Flash - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5130/5354502164_6ee3a291da_o.jpg", "secret": "aa64e98841", "media": "photo", "latitude": "0", "id": "5354502164", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 23:42:34", "license": "3", "title": "Grandmaster Flash - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5166/5353887557_d5fd021f44_o.jpg", "secret": "cd9dff5914", "media": "photo", "latitude": "0", "id": "5353887557", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-13 23:44:34", "license": "3", "title": "Grandmaster Flash - Sala Heineken (Madrid) el 13/01/2011", "text": "", "album_id": "72157625821127582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5201/5354502314_576636c335_o.jpg", "secret": "90f955bca5", "media": "photo", "latitude": "0", "id": "5354502314", "tags": "madrid nyc live concierto radiation oldschool hiphop rap soundsystem dilatedpeoples djshortkut turntablism feiticeira grandmasterflash 2011 rakaa beatjunkies djbabu feiticeiraorg djrhettmatic lastfm:event=1774177"}, {"datetaken": "2011-01-15 08:17:18", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5128/5363215505_893bd4c56b_o.jpg", "secret": "3bca64d1ca", "media": "photo", "latitude": "0", "id": "5363215505", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 08:27:49", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5084/5363215827_3e31797842_o.jpg", "secret": "5393ff0093", "media": "photo", "latitude": "0", "id": "5363215827", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 11:01:46", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5129/5363216317_7d1c2dd4a8_o.jpg", "secret": "72ef395234", "media": "photo", "latitude": "0", "id": "5363216317", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 11:32:35", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5247/5363216663_11865298bc_o.jpg", "secret": "a1c3d4ce7f", "media": "photo", "latitude": "0", "id": "5363216663", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 11:35:26", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5250/5363829128_17a6d3a00f_o.jpg", "secret": "af0fcdb82c", "media": "photo", "latitude": "0", "id": "5363829128", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 11:48:48", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5250/5363217521_a0fa754440_o.jpg", "secret": "df50a3f9f0", "media": "photo", "latitude": "0", "id": "5363217521", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 11:56:12", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5126/5363829894_667b92ff22_o.jpg", "secret": "91eb08632d", "media": "photo", "latitude": "0", "id": "5363829894", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 12:01:56", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5206/5363830540_e3fd25695e_o.jpg", "secret": "703e1c6447", "media": "photo", "latitude": "0", "id": "5363830540", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 12:15:17", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5242/5363831008_66cb9665c0_o.jpg", "secret": "a02b3ef730", "media": "photo", "latitude": "0", "id": "5363831008", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 12:17:04", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5169/5363831396_d64aa9f2ab_o.jpg", "secret": "e07a7d2e3a", "media": "photo", "latitude": "0", "id": "5363831396", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 12:19:03", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5248/5363831820_7b4b97e999_o.jpg", "secret": "8359c36af9", "media": "photo", "latitude": "0", "id": "5363831820", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 12:21:30", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5166/5363220181_6ca717187a_o.jpg", "secret": "b9ed9a9398", "media": "photo", "latitude": "0", "id": "5363220181", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 12:24:16", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5046/5363220623_b1f26da07f_o.jpg", "secret": "2b59b34433", "media": "photo", "latitude": "0", "id": "5363220623", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 12:26:22", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5005/5363833116_65834bdbfa_o.jpg", "secret": "2b6d934510", "media": "photo", "latitude": "0", "id": "5363833116", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 12:35:48", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5007/5363833494_9d726bc8c1_o.jpg", "secret": "43d99eefc6", "media": "photo", "latitude": "0", "id": "5363833494", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 12:54:34", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5048/5363221945_1fb4e981b1_o.jpg", "secret": "d5039a8f40", "media": "photo", "latitude": "0", "id": "5363221945", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 12:54:40", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5005/5363834422_b85b613728_o.jpg", "secret": "a50094dfdb", "media": "photo", "latitude": "0", "id": "5363834422", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 12:55:50", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5001/5363834930_9489e4a533_o.jpg", "secret": "66eb0a94c2", "media": "photo", "latitude": "0", "id": "5363834930", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 14:01:09", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5010/5363223459_7a88fbc660_o.jpg", "secret": "917d6f759f", "media": "photo", "latitude": "0", "id": "5363223459", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-15 14:04:36", "license": "5", "title": "Respaldo al presidente Correa en la ciudad de Machala", "text": "", "album_id": "72157625843862492", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5001/5363836656_d0f98437e0_o.jpg", "secret": "a59b95bffe", "media": "photo", "latitude": "0", "id": "5363836656", "tags": "presidente ecuador pinas correa machala eloro pi\u00f1as rafaelcorrea 4rc municipiopinas ciudadorqu\u00eddeadelosandes josephcuevagonz\u00e1lez"}, {"datetaken": "2011-01-17 11:23:37", "license": "3", "title": "I sold this sign to them!", "text": "", "album_id": "72157625849089400", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5124/5365137567_51c32c5432_o.jpg", "secret": "12bf64dc52", "media": "photo", "latitude": "0", "id": "5365137567", "tags": "zapprops"}, {"datetaken": "2011-01-17 11:25:51", "license": "3", "title": "For rent upstairs", "text": "", "album_id": "72157625849089400", "longitude": "-87.663195", "url_o": "https://farm6.staticflickr.com/5047/5365751090_8fd2be03b1_o.jpg", "secret": "1fb1331e8e", "media": "photo", "latitude": "41.830488", "id": "5365751090", "tags": "zapprops"}, {"datetaken": "2011-01-17 11:29:08", "license": "3", "title": "taxidermy", "text": "", "album_id": "72157625849089400", "longitude": "-87.663195", "url_o": "https://farm6.staticflickr.com/5082/5365137877_acbba9676c_o.jpg", "secret": "b065d2a3b4", "media": "photo", "latitude": "41.830488", "id": "5365137877", "tags": ""}, {"datetaken": "2011-01-17 11:32:07", "license": "3", "title": "Random Neon Lights", "text": "", "album_id": "72157625849089400", "longitude": "-87.660767", "url_o": "https://farm6.staticflickr.com/5125/5365751612_fb93fdb15c_o.jpg", "secret": "96418785fc", "media": "photo", "latitude": "41.827994", "id": "5365751612", "tags": "zapprops"}, {"datetaken": "2011-01-17 11:33:19", "license": "3", "title": "mmmmm...beer", "text": "", "album_id": "72157625849089400", "longitude": "-87.663195", "url_o": "https://farm6.staticflickr.com/5127/5365751702_a73884a67a_o.jpg", "secret": "606ac6e7be", "media": "photo", "latitude": "41.830488", "id": "5365751702", "tags": ""}, {"datetaken": "2011-01-17 11:38:11", "license": "3", "title": "IMG_20110117_113812", "text": "", "album_id": "72157625849089400", "longitude": "-87.663195", "url_o": "https://farm6.staticflickr.com/5044/5365138521_544d00c37e_o.jpg", "secret": "a16be80da9", "media": "photo", "latitude": "41.830488", "id": "5365138521", "tags": "zapprops"}, {"datetaken": "2011-01-17 11:38:54", "license": "3", "title": "gambling", "text": "", "album_id": "72157625849089400", "longitude": "-87.659884", "url_o": "https://farm6.staticflickr.com/5249/5365138641_d9b50c9841_o.jpg", "secret": "fb17baf493", "media": "photo", "latitude": "41.840452", "id": "5365138641", "tags": "zapprops"}, {"datetaken": "2011-01-17 11:40:57", "license": "3", "title": "oil cans", "text": "", "album_id": "72157625849089400", "longitude": "-87.659884", "url_o": "https://farm6.staticflickr.com/5006/5365138745_1e624bd2ca_o.jpg", "secret": "b18c088c59", "media": "photo", "latitude": "41.840452", "id": "5365138745", "tags": "zapprops"}, {"datetaken": "2011-01-17 11:49:27", "license": "3", "title": "the basement", "text": "", "album_id": "72157625849089400", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5124/5365752232_79aaf350b9_o.jpg", "secret": "87c6f7f5ac", "media": "photo", "latitude": "0", "id": "5365752232", "tags": "zapprops"}, {"datetaken": "2011-01-17 11:53:06", "license": "3", "title": "vintage newspaper boxes", "text": "", "album_id": "72157625849089400", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5001/5365752360_e090809d0f_o.jpg", "secret": "4c9b2df0fe", "media": "photo", "latitude": "0", "id": "5365752360", "tags": "zapprops"}, {"datetaken": "2011-01-17 11:56:00", "license": "3", "title": "bikes", "text": "", "album_id": "72157625849089400", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5008/5365752536_35594b4aec_o.jpg", "secret": "79970f8bb8", "media": "photo", "latitude": "0", "id": "5365752536", "tags": "zapprops"}, {"datetaken": "2011-01-17 11:56:35", "license": "3", "title": "IMG_20110117_115636", "text": "", "album_id": "72157625849089400", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5169/5365752938_b94b27ae97_o.jpg", "secret": "6747dcc9d8", "media": "photo", "latitude": "0", "id": "5365752938", "tags": ""}, {"datetaken": "2011-01-17 11:56:45", "license": "3", "title": "signs", "text": "", "album_id": "72157625849089400", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5210/5365753116_b4a7e8d13a_o.jpg", "secret": "72307c6d0d", "media": "photo", "latitude": "0", "id": "5365753116", "tags": "zapprops"}, {"datetaken": "2011-01-17 11:57:58", "license": "3", "title": "IMG_20110117_115758", "text": "", "album_id": "72157625849089400", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5049/5365139847_3328da0e69_o.jpg", "secret": "f9655d6bd4", "media": "photo", "latitude": "0", "id": "5365139847", "tags": ""}, {"datetaken": "2011-01-17 11:58:07", "license": "3", "title": "more signs", "text": "", "album_id": "72157625849089400", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5248/5365140033_e80a534058_o.jpg", "secret": "562b6a8914", "media": "photo", "latitude": "0", "id": "5365140033", "tags": "zapprops"}, {"datetaken": "2011-01-17 11:59:15", "license": "3", "title": "IMG_20110117_115916", "text": "", "album_id": "72157625849089400", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5250/5365753640_6cde9a40f3_o.jpg", "secret": "2cf4a8137f", "media": "photo", "latitude": "0", "id": "5365753640", "tags": "zapprops"}, {"datetaken": "2011-01-17 12:00:18", "license": "3", "title": "random", "text": "", "album_id": "72157625849089400", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5048/5365753788_f963160d47_o.jpg", "secret": "38a2af6981", "media": "photo", "latitude": "0", "id": "5365753788", "tags": "zapprops"}, {"datetaken": "2011-01-17 12:14:18", "license": "3", "title": "IMG_20110117_121418", "text": "", "album_id": "72157625849089400", "longitude": "-87.663195", "url_o": "https://farm6.staticflickr.com/5123/5365140653_a91485b927_o.jpg", "secret": "52e8b718de", "media": "photo", "latitude": "41.830488", "id": "5365140653", "tags": "zapprops"}, {"datetaken": "2011-01-17 12:15:14", "license": "3", "title": "IMG_20110117_121515", "text": "", "album_id": "72157625849089400", "longitude": "-87.660956", "url_o": "https://farm6.staticflickr.com/5169/5365754580_f8b4c63b34_o.jpg", "secret": "b5e40bedd5", "media": "photo", "latitude": "41.828258", "id": "5365754580", "tags": ""}, {"datetaken": "2011-01-17 12:15:32", "license": "3", "title": "IMG_20110117_121533", "text": "", "album_id": "72157625849089400", "longitude": "-87.660967", "url_o": "https://farm6.staticflickr.com/5042/5365141361_cfc8fd23fe_o.jpg", "secret": "7680cefef8", "media": "photo", "latitude": "41.828250", "id": "5365141361", "tags": ""}, {"datetaken": "2011-01-17 12:15:45", "license": "3", "title": "IMG_20110117_121546", "text": "", "album_id": "72157625849089400", "longitude": "-87.660967", "url_o": "https://farm6.staticflickr.com/5281/5365141529_57329c9ab0_o.jpg", "secret": "a3fbccb2dd", "media": "photo", "latitude": "41.828250", "id": "5365141529", "tags": ""}, {"datetaken": "2011-01-17 12:17:41", "license": "3", "title": "typewriters", "text": "", "album_id": "72157625849089400", "longitude": "-87.660967", "url_o": "https://farm6.staticflickr.com/5121/5365141783_7ae1c91526_o.jpg", "secret": "cc0f449499", "media": "photo", "latitude": "41.828250", "id": "5365141783", "tags": "zapprops"}, {"datetaken": "2011-01-17 12:17:47", "license": "3", "title": "IMG_20110117_121748", "text": "", "album_id": "72157625849089400", "longitude": "-87.660967", "url_o": "https://farm6.staticflickr.com/5244/5365755238_f5bae4e441_o.jpg", "secret": "19ec3f8cf2", "media": "photo", "latitude": "41.828250", "id": "5365755238", "tags": "zapprops"}, {"datetaken": "2011-01-17 12:18:47", "license": "3", "title": "taxedermy", "text": "", "album_id": "72157625849089400", "longitude": "-87.660967", "url_o": "https://farm6.staticflickr.com/5166/5365142083_a48c64d3c1_o.jpg", "secret": "7ded776808", "media": "photo", "latitude": "41.828250", "id": "5365142083", "tags": "zapprops"}, {"datetaken": "2011-01-17 12:20:31", "license": "3", "title": "IMG_20110117_122032", "text": "", "album_id": "72157625849089400", "longitude": "-87.660973", "url_o": "https://farm6.staticflickr.com/5130/5365142245_513be4553a_o.jpg", "secret": "ef323537e1", "media": "photo", "latitude": "41.828238", "id": "5365142245", "tags": ""}, {"datetaken": "2011-01-17 12:24:38", "license": "3", "title": "phones", "text": "", "album_id": "72157625849089400", "longitude": "-87.663195", "url_o": "https://farm6.staticflickr.com/5090/5365142537_63dfea26d1_o.jpg", "secret": "8d17b7b539", "media": "photo", "latitude": "41.830488", "id": "5365142537", "tags": "zapprops"}, {"datetaken": "2011-01-17 12:31:13", "license": "3", "title": "awesome banner", "text": "", "album_id": "72157625849089400", "longitude": "-87.663195", "url_o": "https://farm6.staticflickr.com/5124/5365755956_84063dff30_o.jpg", "secret": "9f00c08fd8", "media": "photo", "latitude": "41.830488", "id": "5365755956", "tags": "zapprops"}, {"datetaken": "2011-01-17 12:33:24", "license": "3", "title": "IMG_20110117_123324", "text": "", "album_id": "72157625849089400", "longitude": "-87.663195", "url_o": "https://farm6.staticflickr.com/5129/5365142975_c5368ec493_o.jpg", "secret": "22467f31d3", "media": "photo", "latitude": "41.830488", "id": "5365142975", "tags": ""}, {"datetaken": "2011-01-17 12:33:30", "license": "3", "title": "entrance", "text": "", "album_id": "72157625849089400", "longitude": "-87.663195", "url_o": "https://farm6.staticflickr.com/5248/5365143123_3de522c65e_o.jpg", "secret": "e53853fcbd", "media": "photo", "latitude": "41.830488", "id": "5365143123", "tags": "zapprops"}, {"datetaken": "2011-01-17 16:29:26", "license": "2", "title": "Fortaleza do Monte", "text": "", "album_id": "72157625778278283", "longitude": "113.542038", "url_o": "https://farm6.staticflickr.com/5215/5387122003_7a29d63f77_o.jpg", "secret": "e36f405658", "media": "photo", "latitude": "22.197478", "id": "5387122003", "tags": "macau fortress 2011 fortalezadomonte"}, {"datetaken": "2011-01-17 16:29:32", "license": "2", "title": "Fortress entrance", "text": "", "album_id": "72157625778278283", "longitude": "113.542038", "url_o": "https://farm6.staticflickr.com/5215/5387726188_70cdec3099_o.jpg", "secret": "26a45435d2", "media": "photo", "latitude": "22.197478", "id": "5387726188", "tags": "macau fortress 2011 fortalezadomonte"}, {"datetaken": "2011-01-17 16:30:03", "license": "2", "title": "Grand Lisboa from the fortress", "text": "", "album_id": "72157625778278283", "longitude": "113.542038", "url_o": "https://farm6.staticflickr.com/5218/5387122687_b8d0e108bc_o.jpg", "secret": "152b1e3f4a", "media": "photo", "latitude": "22.197478", "id": "5387122687", "tags": "macau fortress 2011 fortalezadomonte"}, {"datetaken": "2011-01-17 16:30:57", "license": "2", "title": "Statue of Mary", "text": "", "album_id": "72157625778278283", "longitude": "113.542038", "url_o": "https://farm6.staticflickr.com/5211/5387726636_b0b308d6f5_o.jpg", "secret": "3d8e3fbcc2", "media": "photo", "latitude": "22.197478", "id": "5387726636", "tags": "macau fortress 2011 fortalezadomonte"}, {"datetaken": "2011-01-17 16:33:27", "license": "2", "title": "On top of the fortress", "text": "", "album_id": "72157625778278283", "longitude": "113.542038", "url_o": "https://farm6.staticflickr.com/5211/5387123209_c7f36db9bd_o.jpg", "secret": "5f28b5b60d", "media": "photo", "latitude": "22.197478", "id": "5387123209", "tags": "macau fortress 2011 fortalezadomonte"}, {"datetaken": "2011-01-17 16:37:55", "license": "2", "title": "The ruins of St. Paul", "text": "", "album_id": "72157625778278283", "longitude": "113.542038", "url_o": "https://farm6.staticflickr.com/5212/5387123991_5a23d5e4e0_o.jpg", "secret": "1751d088cb", "media": "photo", "latitude": "22.197478", "id": "5387123991", "tags": "macau fortress 2011 fortalezadomonte"}, {"datetaken": "2011-01-17 17:11:00", "license": "2", "title": "Store facades", "text": "", "album_id": "72157625778278283", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5218/5387728526_e6bd4d00a6_o.jpg", "secret": "8eedd9a4b5", "media": "photo", "latitude": "0", "id": "5387728526", "tags": "macau 2011"}, {"datetaken": "2011-01-17 17:44:37", "license": "2", "title": "View from outside Starbucks", "text": "", "album_id": "72157625778278283", "longitude": "113.540477", "url_o": "https://farm6.staticflickr.com/5211/5387125343_8224f12b63_o.jpg", "secret": "6e212c6a68", "media": "photo", "latitude": "22.190410", "id": "5387125343", "tags": "macau 2011"}, {"datetaken": "2011-01-17 18:37:03", "license": "2", "title": "Grand Emperor", "text": "", "album_id": "72157625778278283", "longitude": "113.540477", "url_o": "https://farm6.staticflickr.com/5212/5390416998_5f23debd2a_o.jpg", "secret": "1e83bc1e2a", "media": "photo", "latitude": "22.190410", "id": "5390416998", "tags": "casino macau 2011"}, {"datetaken": "2011-01-17 18:39:39", "license": "2", "title": "Grand Lisboa, side view", "text": "", "album_id": "72157625778278283", "longitude": "113.544355", "url_o": "https://farm6.staticflickr.com/5175/5390417276_12d6471b18_o.jpg", "secret": "1655e4407c", "media": "photo", "latitude": "22.190047", "id": "5390417276", "tags": "casino macau 2011"}, {"datetaken": "2011-01-17 19:17:05", "license": "2", "title": "Grand Lisboa Entrance", "text": "", "album_id": "72157625778278283", "longitude": "113.544355", "url_o": "https://farm6.staticflickr.com/5220/5390417696_0f972e4faa_o.jpg", "secret": "1683198f18", "media": "photo", "latitude": "22.190047", "id": "5390417696", "tags": "casino macau 2011"}, {"datetaken": "2011-01-17 19:17:18", "license": "2", "title": "Casino Lisboa", "text": "", "album_id": "72157625778278283", "longitude": "113.544355", "url_o": "https://farm6.staticflickr.com/5212/5389811553_7ae9509019_o.jpg", "secret": "c58ce9d135", "media": "photo", "latitude": "22.190047", "id": "5389811553", "tags": "casino macau 2011"}, {"datetaken": "2011-01-17 19:17:33", "license": "2", "title": "Grand Lisboa", "text": "", "album_id": "72157625778278283", "longitude": "113.544355", "url_o": "https://farm6.staticflickr.com/5260/5390418596_c98754a326_o.jpg", "secret": "11d7a308ea", "media": "photo", "latitude": "22.190047", "id": "5390418596", "tags": "casino macau 2011"}, {"datetaken": "2011-01-17 19:20:35", "license": "2", "title": "Wynn Macau", "text": "", "album_id": "72157625778278283", "longitude": "113.546522", "url_o": "https://farm6.staticflickr.com/5178/5390418934_d648a33503_o.jpg", "secret": "211ed9d6b2", "media": "photo", "latitude": "22.188219", "id": "5390418934", "tags": "casino macau 2011"}, {"datetaken": "2011-01-17 19:28:15", "license": "2", "title": "Wynn Macau water feature", "text": "", "album_id": "72157625778278283", "longitude": "113.546522", "url_o": "https://farm6.staticflickr.com/5180/5389812795_2e53659ed7_o.jpg", "secret": "fb2deb2323", "media": "photo", "latitude": "22.188219", "id": "5389812795", "tags": "casino macau 2011"}, {"datetaken": "2011-01-17 19:30:51", "license": "2", "title": "Old and new Lisboa", "text": "", "album_id": "72157625778278283", "longitude": "113.544355", "url_o": "https://farm6.staticflickr.com/5019/5389813127_25e8d84932_o.jpg", "secret": "43a6bcbf6e", "media": "photo", "latitude": "22.190047", "id": "5389813127", "tags": "casino macau 2011"}, {"datetaken": "2011-01-17 19:46:40", "license": "2", "title": "The bottom", "text": "", "album_id": "72157625778278283", "longitude": "113.546522", "url_o": "https://farm6.staticflickr.com/5215/5390419952_1d40f5e404_o.jpg", "secret": "16d9ef8d96", "media": "photo", "latitude": "22.188219", "id": "5390419952", "tags": "casino macau 2011"}, {"datetaken": "2011-01-17 19:47:06", "license": "2", "title": "The Money Tree show, Wynn Macau", "text": "", "album_id": "72157625778278283", "longitude": "113.546522", "url_o": "https://farm6.staticflickr.com/5216/5390483242_8a1dc97809_o.jpg", "secret": "c16591f450", "media": "photo", "latitude": "22.188219", "id": "5390483242", "tags": "casino macau 2011"}, {"datetaken": "2011-01-17 19:50:24", "license": "2", "title": "Wynn casino", "text": "", "album_id": "72157625778278283", "longitude": "113.546522", "url_o": "https://farm6.staticflickr.com/5216/5389813609_5ed66369f4_o.jpg", "secret": "6fcd435f22", "media": "photo", "latitude": "22.188219", "id": "5389813609", "tags": "casino macau 2011"}, {"datetaken": "2011-01-17 20:16:05", "license": "2", "title": "Red Rabbit", "text": "", "album_id": "72157625778278283", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5100/5390420608_af1347fba7_o.jpg", "secret": "fd48144b32", "media": "photo", "latitude": "0", "id": "5390420608", "tags": "casino macau 2011"}, {"datetaken": "2011-01-17 22:13:28", "license": "2", "title": "Rue de Sao Paulo", "text": "", "album_id": "72157625778278283", "longitude": "113.540820", "url_o": "https://farm6.staticflickr.com/5218/5390421052_e05f839442_o.jpg", "secret": "d7f6ab8091", "media": "photo", "latitude": "22.197507", "id": "5390421052", "tags": "macau 2011"}, {"datetaken": "2011-01-17 22:19:54", "license": "2", "title": "The ruin of St. Paul", "text": "", "album_id": "72157625778278283", "longitude": "113.540820", "url_o": "https://farm6.staticflickr.com/5057/5389814813_5bcc692b6a_o.jpg", "secret": "0454dddef4", "media": "photo", "latitude": "22.197507", "id": "5389814813", "tags": "macau 2011 ru\u00ednasdes\u00e3opaulo ruinofstpaul"}, {"datetaken": "2011-01-17 22:26:56", "license": "2", "title": "What is a man? A miserable little pile of secrets!", "text": "", "album_id": "72157625778278283", "longitude": "113.540820", "url_o": "https://farm6.staticflickr.com/5211/5389815447_d6c536064d_o.jpg", "secret": "fa6dd5a553", "media": "photo", "latitude": "22.197507", "id": "5389815447", "tags": "macau 2011 ru\u00ednasdes\u00e3opaulo ruinofstpaul"}, {"datetaken": "2011-01-18 00:22:50", "license": "2", "title": "Best cheese cake EVAR!", "text": "", "album_id": "72157625778278283", "longitude": "113.547322", "url_o": "https://farm6.staticflickr.com/5011/5390422194_c0610ed09b_o.jpg", "secret": "ba21bd7054", "media": "photo", "latitude": "22.196335", "id": "5390422194", "tags": "food cheesecake macau 2011"}, {"datetaken": "2011-01-18 00:23:27", "license": "2", "title": "Inside the box", "text": "", "album_id": "72157625778278283", "longitude": "113.547322", "url_o": "https://farm6.staticflickr.com/5217/5389815921_5159363673_o.jpg", "secret": "a199e800a3", "media": "photo", "latitude": "22.196335", "id": "5389815921", "tags": "food cheesecake macau 2011"}, {"datetaken": "2011-01-18 08:50:22", "license": "2", "title": "View from the dining room 1", "text": "", "album_id": "72157625778278283", "longitude": "113.547322", "url_o": "https://farm6.staticflickr.com/5096/5389816257_f8db75d840_o.jpg", "secret": "e5b346319d", "media": "photo", "latitude": "22.196335", "id": "5389816257", "tags": "macau 2011"}, {"datetaken": "2011-01-18 08:50:39", "license": "2", "title": "View from the dining room 2", "text": "", "album_id": "72157625778278283", "longitude": "113.547322", "url_o": "https://farm6.staticflickr.com/5293/5389816787_8c638d305f_o.jpg", "secret": "7d53be6e1b", "media": "photo", "latitude": "22.196335", "id": "5389816787", "tags": "macau 2011"}, {"datetaken": "2011-01-18 08:51:08", "license": "2", "title": "View from the dining room 3", "text": "", "album_id": "72157625778278283", "longitude": "113.547322", "url_o": "https://farm6.staticflickr.com/5016/5389817079_6f96581b70_o.jpg", "secret": "edd7994b91", "media": "photo", "latitude": "22.196335", "id": "5389817079", "tags": "macau 2011"}, {"datetaken": "2011-01-03 06:40:17", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5011/5390091900_6ca69f5480_o.jpg", "secret": "771ae7e905", "media": "photo", "latitude": "0", "id": "5390091900", "tags": "japan shrine \u65e5\u672c yokohama kanagawa \u795e\u793e torii \u9ce5\u5c45 kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 06:44:45", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5214/5389486897_a882e2c769_o.jpg", "secret": "5640fc7156", "media": "photo", "latitude": "0", "id": "5389486897", "tags": "colors japan market \u65e5\u672c yokohama kanagawa kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 06:49:23", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5100/5389486955_b81d5ee631_o.jpg", "secret": "569ce8f01b", "media": "photo", "latitude": "0", "id": "5389486955", "tags": "japan restaurant \u65e5\u672c yokohama kanagawa kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 06:49:53", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5217/5389487009_540d7a044e_o.jpg", "secret": "c78dbbd3db", "media": "photo", "latitude": "0", "id": "5389487009", "tags": "colors japan market \u65e5\u672c yokohama kanagawa kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 06:58:26", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5057/5389487079_10a3820833_o.jpg", "secret": "0c2b9c6722", "media": "photo", "latitude": "0", "id": "5389487079", "tags": "colors japan market \u65e5\u672c yokohama kanagawa kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 06:59:55", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5297/5390092214_45ed49ed29_o.jpg", "secret": "62ca23bff2", "media": "photo", "latitude": "0", "id": "5390092214", "tags": "japan temple \u65e5\u672c yokohama kanagawa \u5bfa kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 07:06:56", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5055/5390092272_c150b8bd8f_o.jpg", "secret": "e8cb50f597", "media": "photo", "latitude": "0", "id": "5390092272", "tags": "colors japan market \u65e5\u672c yokohama kanagawa kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 07:11:33", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5219/5389487239_8ac79d972d_o.jpg", "secret": "93891c2fd3", "media": "photo", "latitude": "0", "id": "5389487239", "tags": "japan temple \u65e5\u672c yokohama kanagawa \u5bfa kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 07:11:42", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5293/5389487289_5e9fe0105c_o.jpg", "secret": "7a329f2483", "media": "photo", "latitude": "0", "id": "5389487289", "tags": "japan temple retro \u65e5\u672c yokohama mode kanagawa \u5bfa kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 07:12:51", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5171/5390092436_f697437627_o.jpg", "secret": "b2263d823e", "media": "photo", "latitude": "0", "id": "5390092436", "tags": "japan temple \u65e5\u672c yokohama kanagawa \u5bfa kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 07:14:37", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5097/5389487421_39b60ceaa2_o.jpg", "secret": "b05792f5eb", "media": "photo", "latitude": "0", "id": "5389487421", "tags": "japan temple \u65e5\u672c yokohama kanagawa \u5bfa kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 07:14:59", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5097/5390092550_809f784f2b_o.jpg", "secret": "7ff9e58e6e", "media": "photo", "latitude": "0", "id": "5390092550", "tags": "japan temple \u65e5\u672c yokohama kanagawa \u5bfa kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 07:26:33", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5098/5389487517_8b201714f1_o.jpg", "secret": "349d34ff6b", "media": "photo", "latitude": "0", "id": "5389487517", "tags": "japan lights restaurant \u65e5\u672c yokohama kanagawa kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 10:15:06", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857 Illuminations 2010", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5389487577_109c802a76_o.jpg", "secret": "736b63bef2", "media": "photo", "latitude": "0", "id": "5389487577", "tags": "japan temple lights \u65e5\u672c yokohama kanagawa \u5bfa kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 10:19:08", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857 Illuminations 2010", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5180/5389487623_4657dc898b_o.jpg", "secret": "660c8856ef", "media": "photo", "latitude": "0", "id": "5389487623", "tags": "japan lights restaurant \u65e5\u672c yokohama kanagawa kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 10:28:54", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857 Illuminations 2010", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5175/5389487733_d95ed2d7b4_o.jpg", "secret": "d6dc8263d5", "media": "photo", "latitude": "0", "id": "5389487733", "tags": "japan lights restaurant \u65e5\u672c yokohama kanagawa kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 10:30:38", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857 Illuminations 2010", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5219/5390092854_840096b83a_o.jpg", "secret": "9ae4860632", "media": "photo", "latitude": "0", "id": "5390092854", "tags": "japan lights restaurant \u65e5\u672c yokohama kanagawa kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 10:36:58", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857 Illuminations 2010", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5054/5389487985_c38e22e398_o.jpg", "secret": "29421f7b5a", "media": "photo", "latitude": "0", "id": "5389487985", "tags": "japan lights \u65e5\u672c yokohama kanagawa kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2011-01-03 10:43:36", "license": "1", "title": "\u5143\u753a\u4e2d\u83ef\u8857 Illuminations 2010", "text": "", "album_id": "72157625909589808", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5055/5389488095_6cf3727445_o.jpg", "secret": "f5e2d0a9b5", "media": "photo", "latitude": "0", "id": "5389488095", "tags": "japan lights shrine \u65e5\u672c yokohama kanagawa \u795e\u793e torii \u9ce5\u5c45 kanto honshu \u95a2\u6771 \u672c\u5dde motomachichuukagai"}, {"datetaken": "2012-01-12 16:00:02", "license": "2", "title": "BRIT Awards 2012 nominations", "text": "", "album_id": "72157628848654209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7157/6688731477_a4a0476174_o.jpg", "secret": "3014bc0d1f", "media": "photo", "latitude": "0", "id": "6688731477", "tags": "london unitedkingdom gbr"}, {"datetaken": "2012-01-12 16:09:01", "license": "2", "title": "BRIT Awards 2012 nominations", "text": "", "album_id": "72157628848654209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7001/6688731753_0b0c1c192f_o.jpg", "secret": "40aee3a872", "media": "photo", "latitude": "0", "id": "6688731753", "tags": "london unitedkingdom gbr"}, {"datetaken": "2012-01-12 16:14:21", "license": "2", "title": "BRIT Awards 2012 nominations", "text": "", "album_id": "72157628848654209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7159/6688731665_a66350fdc1_o.jpg", "secret": "54e101ecc5", "media": "photo", "latitude": "0", "id": "6688731665", "tags": "london unitedkingdom gbr topics|topix|bestof|toppics|toppix|topics|topix|bestof|toppics|t"}, {"datetaken": "2012-01-12 16:18:15", "license": "2", "title": "BRIT Awards 2012 nominations", "text": "", "album_id": "72157628848654209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7152/6688732151_858d465cb1_o.jpg", "secret": "6f81aa288a", "media": "photo", "latitude": "0", "id": "6688732151", "tags": "london unitedkingdom topics|topix|bestof|toppics|toppix|topics|topix|bestof|toppics|t"}, {"datetaken": "2012-01-12 16:33:49", "license": "2", "title": "BRIT Awards 2012 nominations", "text": "", "album_id": "72157628848654209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7175/6688731893_014c9e0632_o.jpg", "secret": "9dbae671be", "media": "photo", "latitude": "0", "id": "6688731893", "tags": "london unitedkingdom gbr"}, {"datetaken": "2012-01-12 16:35:17", "license": "2", "title": "BRIT Awards 2012 nominations", "text": "", "album_id": "72157628848654209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7171/6688732049_d5c9103d9e_o.jpg", "secret": "b6e4731c28", "media": "photo", "latitude": "0", "id": "6688732049", "tags": "london unitedkingdom gbr"}, {"datetaken": "2012-01-12 16:36:18", "license": "2", "title": "BRIT Awards 2012 nominations", "text": "", "album_id": "72157628848654209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7152/6688731823_f9b535c3c5_o.jpg", "secret": "64448196ee", "media": "photo", "latitude": "0", "id": "6688731823", "tags": "london unitedkingdom gbr topics|topix|bestof|toppics|toppix|topics|topix|bestof|toppics|t"}, {"datetaken": "2012-01-12 16:58:01", "license": "2", "title": "BRIT Awards 2012 nominations", "text": "", "album_id": "72157628848654209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7148/6688731971_e762c57a22_o.jpg", "secret": "c627c24c36", "media": "photo", "latitude": "0", "id": "6688731971", "tags": "london unitedkingdom gbr"}, {"datetaken": "2012-01-12 17:02:31", "license": "2", "title": "BRIT Awards 2012 nominations", "text": "", "album_id": "72157628848654209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7014/6688731219_f2a458c5ea_o.jpg", "secret": "542ffbb2c6", "media": "photo", "latitude": "0", "id": "6688731219", "tags": "london unitedkingdom gbr"}, {"datetaken": "2012-01-12 17:15:43", "license": "2", "title": "BRIT Awards 2012 nominations", "text": "", "album_id": "72157628848654209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7009/6688731289_5ca7452fda_o.jpg", "secret": "ff9444b0ff", "media": "photo", "latitude": "0", "id": "6688731289", "tags": "england music london unitedkingdom celebrities gbr celebrities|music|topics|topix|bestof|toppics|toppix|topics|topi"}, {"datetaken": "2012-01-12 17:15:45", "license": "2", "title": "BRIT Awards 2012 nominations", "text": "", "album_id": "72157628848654209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7015/6688731391_951dce69a8_o.jpg", "secret": "9ffb719057", "media": "photo", "latitude": "0", "id": "6688731391", "tags": "england music london unitedkingdom celebrities gbr celebrities|music"}, {"datetaken": "2012-01-12 18:06:55", "license": "2", "title": "BRIT Awards 2012 nominations", "text": "", "album_id": "72157628848654209", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7144/6688731563_3434e71292_o.jpg", "secret": "e0054e5fd5", "media": "photo", "latitude": "0", "id": "6688731563", "tags": "england music london unitedkingdom celebrities gbr celebrities|music"}, {"datetaken": "2010-02-14 17:22:54", "license": "3", "title": "Living Labs Global Showcase Award", "text": "", "album_id": "72157628126323778", "longitude": "2.091398", "url_o": "https://farm5.staticflickr.com/4031/4359573357_08b0ebb366_o.jpg", "secret": "f0d5e55574", "media": "photo", "latitude": "41.469365", "id": "4359573357", "tags": "barcelona chicago stockholm eindhoven oeiras taipei mobility laselva santcugat caceres livinglabs livinglabsglobal serviceinnovation"}, {"datetaken": "2010-02-14 18:14:16", "license": "3", "title": "Living Labs Global Showcase Award Ceremony", "text": "", "album_id": "72157628126323778", "longitude": "2.091398", "url_o": "https://farm3.staticflickr.com/2694/4356914191_ba89d7d597_o.jpg", "secret": "bf1fc4d6b9", "media": "photo", "latitude": "41.469365", "id": "4356914191", "tags": "barcelona chicago stockholm cities eindhoven oeiras taipei taxi2 laselva santcugat caceres livinglabs wikiloc sustainablefood opengreenmap manodo livinglabsglobal serviceinnovation urbiotica"}, {"datetaken": "2010-02-14 18:19:41", "license": "3", "title": "Living Labs Global Showcase Award Ceremony", "text": "", "album_id": "72157628126323778", "longitude": "2.091398", "url_o": "https://farm5.staticflickr.com/4034/4356914851_fa5b19fe88_o.jpg", "secret": "ae78454e0e", "media": "photo", "latitude": "41.469365", "id": "4356914851", "tags": "barcelona chicago stockholm cities eindhoven oeiras taipei taxi2 laselva santcugat caceres livinglabs wikiloc sustainablefood opengreenmap manodo livinglabsglobal serviceinnovation urbiotica"}, {"datetaken": "2010-02-14 18:42:21", "license": "3", "title": "Pilar Conesa, Barcelona City Council, Awarding Urbiotica at Living Labs Global Showcase Award", "text": "", "album_id": "72157628126323778", "longitude": "2.091398", "url_o": "https://farm3.staticflickr.com/2694/4356918567_bd88ae43a7_o.jpg", "secret": "f546fde515", "media": "photo", "latitude": "41.469365", "id": "4356918567", "tags": "barcelona chicago stockholm cities eindhoven oeiras taipei taxi2 laselva santcugat caceres livinglabs wikiloc sustainablefood opengreenmap manodo livinglabsglobal serviceinnovation urbiotica"}, {"datetaken": "2010-02-14 18:45:36", "license": "3", "title": "Victor Santiago, City Councillor Caceres, and Sascha Haselmayer Living Labs Global Showcase Award", "text": "", "album_id": "72157628126323778", "longitude": "2.091398", "url_o": "https://farm3.staticflickr.com/2796/4357666870_56032d7c83_o.jpg", "secret": "50f967b4cb", "media": "photo", "latitude": "41.469365", "id": "4357666870", "tags": "barcelona chicago stockholm cities eindhoven oeiras taipei taxi2 laselva santcugat caceres livinglabs wikiloc sustainablefood opengreenmap manodo livinglabsglobal serviceinnovation urbiotica"}, {"datetaken": "2010-02-14 18:51:16", "license": "3", "title": "3sat neues camera team at Living Labs Global Showcase Award", "text": "", "album_id": "72157628126323778", "longitude": "2.091398", "url_o": "https://farm5.staticflickr.com/4042/4357667606_9941f70dd2_o.jpg", "secret": "4bb2016ae5", "media": "photo", "latitude": "41.469365", "id": "4357667606", "tags": "barcelona chicago stockholm cities eindhoven oeiras taipei taxi2 laselva santcugat caceres livinglabs wikiloc sustainablefood opengreenmap manodo livinglabsglobal serviceinnovation urbiotica"}, {"datetaken": "2010-02-14 18:53:02", "license": "3", "title": "Hardic Bhatt, IT Commissioner Chicao, Living Labs Global Showcase Award", "text": "", "album_id": "72157628126323778", "longitude": "2.091398", "url_o": "https://farm5.staticflickr.com/4051/4356920143_b8e9ab69fb_o.jpg", "secret": "c0bc5c71e4", "media": "photo", "latitude": "41.469365", "id": "4356920143", "tags": "barcelona chicago stockholm cities eindhoven oeiras taipei taxi2 laselva santcugat caceres livinglabs wikiloc sustainablefood opengreenmap manodo livinglabsglobal serviceinnovation urbiotica"}, {"datetaken": "2010-02-14 19:05:42", "license": "3", "title": "Living Labs Global Showcase Award Ceremony", "text": "", "album_id": "72157628126323778", "longitude": "2.091398", "url_o": "https://farm3.staticflickr.com/2774/4357669744_eed80d6d73_o.jpg", "secret": "7d82fb7832", "media": "photo", "latitude": "41.469365", "id": "4357669744", "tags": "barcelona chicago stockholm cities eindhoven oeiras taipei taxi2 laselva santcugat caceres livinglabs wikiloc sustainablefood opengreenmap manodo livinglabsglobal serviceinnovation urbiotica"}, {"datetaken": "2010-02-14 19:22:12", "license": "3", "title": "Living Labs Global Showcase Award Ceremony", "text": "", "album_id": "72157628126323778", "longitude": "2.091398", "url_o": "https://farm5.staticflickr.com/4054/4356924169_6775481802_o.jpg", "secret": "b370a42303", "media": "photo", "latitude": "41.469365", "id": "4356924169", "tags": "barcelona chicago stockholm cities eindhoven oeiras taipei taxi2 laselva santcugat caceres livinglabs wikiloc sustainablefood opengreenmap manodo livinglabsglobal serviceinnovation urbiotica"}, {"datetaken": "2010-02-14 19:29:09", "license": "3", "title": "Living Labs Global Showcase Award Ceremony", "text": "", "album_id": "72157628126323778", "longitude": "2.091398", "url_o": "https://farm3.staticflickr.com/2723/4356926331_262dc9a6c9_o.jpg", "secret": "41ac71b976", "media": "photo", "latitude": "41.469365", "id": "4356926331", "tags": "barcelona chicago stockholm cities eindhoven oeiras taipei taxi2 laselva santcugat caceres livinglabs wikiloc sustainablefood opengreenmap manodo livinglabsglobal serviceinnovation urbiotica"}, {"datetaken": "2010-02-14 19:40:53", "license": "3", "title": "Sascha Haselmayer, Living Labs Global Showcase Award", "text": "", "album_id": "72157628126323778", "longitude": "2.091398", "url_o": "https://farm3.staticflickr.com/2739/4360380664_003393b390_o.jpg", "secret": "bce62c0e59", "media": "photo", "latitude": "41.469365", "id": "4360380664", "tags": "barcelona chicago stockholm eindhoven oeiras taipei mobility laselva santcugat caceres livinglabs livinglabsglobal serviceinnovation"}, {"datetaken": "2010-02-14 19:50:46", "license": "3", "title": "Living Labs Global Showcase Award", "text": "", "album_id": "72157628126323778", "longitude": "2.091398", "url_o": "https://farm5.staticflickr.com/4059/4360387164_2e7531fd40_o.jpg", "secret": "fb6dff56ab", "media": "photo", "latitude": "41.469365", "id": "4360387164", "tags": "barcelona chicago stockholm eindhoven oeiras taipei mobility laselva santcugat caceres livinglabs livinglabsglobal serviceinnovation"}, {"datetaken": "2010-02-14 20:01:06", "license": "3", "title": "Living Labs Global Showcase Award Ceremony", "text": "", "album_id": "72157628126323778", "longitude": "2.091398", "url_o": "https://farm5.staticflickr.com/4024/4356936605_0ed9b6a448_o.jpg", "secret": "5f9fd932be", "media": "photo", "latitude": "41.469365", "id": "4356936605", "tags": "barcelona chicago stockholm cities eindhoven oeiras taipei taxi2 laselva santcugat caceres livinglabs wikiloc sustainablefood opengreenmap manodo livinglabsglobal serviceinnovation urbiotica"}, {"datetaken": "2010-02-14 20:09:43", "license": "3", "title": "Lluis Reocder, Mayor of Sant Cugat, Living Labs Global Showcase Award", "text": "", "album_id": "72157628126323778", "longitude": "2.091398", "url_o": "https://farm3.staticflickr.com/2745/4360397720_d966a18225_o.jpg", "secret": "74607b38b4", "media": "photo", "latitude": "41.469365", "id": "4360397720", "tags": "barcelona chicago stockholm eindhoven oeiras taipei mobility laselva santcugat caceres livinglabs livinglabsglobal serviceinnovation"}, {"datetaken": "2010-02-14 20:24:04", "license": "3", "title": "Living Labs Global Showcase Award", "text": "", "album_id": "72157628126323778", "longitude": "2.091398", "url_o": "https://farm5.staticflickr.com/4043/4360399226_a9e15b9144_o.jpg", "secret": "fc73c8c16d", "media": "photo", "latitude": "41.469365", "id": "4360399226", "tags": "barcelona chicago stockholm eindhoven oeiras taipei mobility laselva santcugat caceres livinglabs livinglabsglobal serviceinnovation"}, {"datetaken": "2010-03-13 11:08:33", "license": "3", "title": "Jakob's Award Ceremony", "text": "", "album_id": "72157623494873967", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4433044884_72b4312e78_o.jpg", "secret": "dff4bc2051", "media": "photo", "latitude": "0", "id": "4433044884", "tags": "hockey devils awards jakob danbury mite"}, {"datetaken": "2010-03-13 11:09:56", "license": "3", "title": "Coaches Gene and Mike", "text": "", "album_id": "72157623494873967", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4432271397_16774ac1bb_o.jpg", "secret": "716d88ee1d", "media": "photo", "latitude": "0", "id": "4432271397", "tags": "hockey devils awards jakob danbury mite"}, {"datetaken": "2010-03-13 11:13:06", "license": "3", "title": "Jake gets his medal", "text": "", "album_id": "72157623494873967", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2788/4433046922_6260958712_o.jpg", "secret": "76d81c09fe", "media": "photo", "latitude": "0", "id": "4433046922", "tags": "hockey devils awards jakob danbury mite"}, {"datetaken": "2010-03-13 11:13:12", "license": "3", "title": "Posing with his medal", "text": "", "album_id": "72157623494873967", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2432/4432273061_f874104c09_o.jpg", "secret": "d24412f4b1", "media": "photo", "latitude": "0", "id": "4432273061", "tags": "hockey devils awards jakob danbury mite"}, {"datetaken": "2010-03-13 11:18:10", "license": "3", "title": "Devils whole team was there", "text": "", "album_id": "72157623494873967", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4433048316_6f4581edb4_o.jpg", "secret": "fdb053332e", "media": "photo", "latitude": "0", "id": "4433048316", "tags": "hockey devils awards jakob danbury mite"}, {"datetaken": "2010-03-13 11:18:41", "license": "3", "title": "Danbury X-Ice Mite Hockey", "text": "", "album_id": "72157623494873967", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4433219892_053d628c5b_o.jpg", "secret": "a486ea41ba", "media": "photo", "latitude": "0", "id": "4433219892", "tags": "hockey awards jakob danbury mite"}, {"datetaken": "2010-03-13 14:51:48", "license": "3", "title": "Coach Dibble talks about Christian", "text": "", "album_id": "72157623494873967", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4432445497_58f7a0961d_o.jpg", "secret": "5e7fcb84df", "media": "photo", "latitude": "0", "id": "4432445497", "tags": "hockey christian western trophy awards mite colonials"}, {"datetaken": "2010-03-13 14:51:59", "license": "3", "title": "Coach Dibble", "text": "", "album_id": "72157623494873967", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2783/4433222092_b8cc24cd45_o.jpg", "secret": "2ab1ba686b", "media": "photo", "latitude": "0", "id": "4433222092", "tags": "hockey christian western trophy awards mite colonials"}, {"datetaken": "2010-03-13 14:52:50", "license": "3", "title": "Coach Radatovich talks about Christian", "text": "", "album_id": "72157623494873967", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2737/4432447621_4f084b2510_o.jpg", "secret": "226de2c3dc", "media": "photo", "latitude": "0", "id": "4432447621", "tags": "hockey christian western trophy awards mite colonials"}, {"datetaken": "2010-03-13 14:53:02", "license": "3", "title": "Coach Ralston talks about Christian", "text": "", "album_id": "72157623494873967", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4432448513_52bde4c258_o.jpg", "secret": "8b558cd050", "media": "photo", "latitude": "0", "id": "4432448513", "tags": "hockey christian western trophy awards mite colonials"}, {"datetaken": "2010-03-13 14:53:20", "license": "3", "title": "Coach Whitehead talks about Christian", "text": "", "album_id": "72157623494873967", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4432466851_8c028b4a65_o.jpg", "secret": "9e5cbe6bee", "media": "photo", "latitude": "0", "id": "4432466851", "tags": "hockey christian western awards mite colonials"}, {"datetaken": "2010-03-13 14:53:42", "license": "3", "title": "Coach Oldham talks about Christian", "text": "", "album_id": "72157623494873967", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4433243020_7852979f85_o.jpg", "secret": "bc5e6943c3", "media": "photo", "latitude": "0", "id": "4433243020", "tags": "hockey christian western awards mite colonials"}, {"datetaken": "2007-01-06 15:13:10", "license": "1", "title": "IMG_0242", "text": "", "album_id": "72157594489449430", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/363122281_66db718531_o.jpg", "secret": "66db718531", "media": "photo", "latitude": "0", "id": "363122281", "tags": "capitolsteps synchronizedskating"}, {"datetaken": "2007-01-06 15:13:20", "license": "1", "title": "IMG_0243", "text": "", "album_id": "72157594489449430", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/363122316_8aa26c1d80_o.jpg", "secret": "8aa26c1d80", "media": "photo", "latitude": "0", "id": "363122316", "tags": "capitolsteps synchronizedskating"}, {"datetaken": "2007-01-06 15:13:48", "license": "1", "title": "IMG_0244", "text": "", "album_id": "72157594489449430", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/363122363_3825577f29_o.jpg", "secret": "3825577f29", "media": "photo", "latitude": "0", "id": "363122363", "tags": "capitolsteps synchronizedskating"}, {"datetaken": "2007-01-06 15:14:19", "license": "1", "title": "IMG_0246", "text": "", "album_id": "72157594489449430", "longitude": "0", "url_o": "https://farm1.staticflickr.com/119/363122420_b9278695ef_o.jpg", "secret": "b9278695ef", "media": "photo", "latitude": "0", "id": "363122420", "tags": "capitolsteps synchronizedskating"}, {"datetaken": "2007-01-06 15:14:45", "license": "1", "title": "IMG_0247", "text": "", "album_id": "72157594489449430", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/363122498_42fc8d8010_o.jpg", "secret": "42fc8d8010", "media": "photo", "latitude": "0", "id": "363122498", "tags": "capitolsteps synchronizedskating"}, {"datetaken": "2007-01-06 15:15:26", "license": "1", "title": "IMG_0248", "text": "", "album_id": "72157594489449430", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/363122542_b1132497cf_o.jpg", "secret": "b1132497cf", "media": "photo", "latitude": "0", "id": "363122542", "tags": "capitolsteps synchronizedskating"}, {"datetaken": "2007-01-06 17:03:18", "license": "1", "title": "IMG_0250", "text": "", "album_id": "72157594489449430", "longitude": "0", "url_o": "https://farm1.staticflickr.com/112/363122602_ff922bbb01_o.jpg", "secret": "ff922bbb01", "media": "photo", "latitude": "0", "id": "363122602", "tags": "capitolsteps synchronizedskating"}, {"datetaken": "2007-01-06 17:03:25", "license": "1", "title": "IMG_0251", "text": "", "album_id": "72157594489449430", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/363122651_4e1b84b685_o.jpg", "secret": "4e1b84b685", "media": "photo", "latitude": "0", "id": "363122651", "tags": "capitolsteps synchronizedskating"}, {"datetaken": "2007-01-06 17:17:10", "license": "1", "title": "IMG_0254", "text": "", "album_id": "72157594489449430", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/363122737_d1d315bbbe_o.jpg", "secret": "d1d315bbbe", "media": "photo", "latitude": "0", "id": "363122737", "tags": "capitolsteps synchronizedskating"}, {"datetaken": "2007-01-06 17:23:01", "license": "1", "title": "IMG_0255", "text": "", "album_id": "72157594489449430", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/363122783_d39f9519e3_o.jpg", "secret": "d39f9519e3", "media": "photo", "latitude": "0", "id": "363122783", "tags": "capitolsteps synchronizedskating"}, {"datetaken": "2007-01-06 17:23:53", "license": "1", "title": "IMG_0259", "text": "", "album_id": "72157594489449430", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/363122842_69d25dddc2_o.jpg", "secret": "69d25dddc2", "media": "photo", "latitude": "0", "id": "363122842", "tags": "capitolsteps synchronizedskating"}, {"datetaken": "2007-01-06 17:25:30", "license": "1", "title": "IMG_0260", "text": "", "album_id": "72157594489449430", "longitude": "0", "url_o": "https://farm1.staticflickr.com/113/363122894_8d76ba8afa_o.jpg", "secret": "8d76ba8afa", "media": "photo", "latitude": "0", "id": "363122894", "tags": "capitolsteps synchronizedskating"}, {"datetaken": "2007-01-06 17:25:58", "license": "1", "title": "IMG_0262", "text": "", "album_id": "72157594489449430", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/363122957_f22496d7f8_o.jpg", "secret": "f22496d7f8", "media": "photo", "latitude": "0", "id": "363122957", "tags": "capitolsteps synchronizedskating"}, {"datetaken": "2007-01-06 17:26:05", "license": "1", "title": "IMG_0263", "text": "", "album_id": "72157594489449430", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/363123043_525dc493c1_o.jpg", "secret": "525dc493c1", "media": "photo", "latitude": "0", "id": "363123043", "tags": "capitolsteps synchronizedskating"}, {"datetaken": "2007-01-06 17:29:19", "license": "1", "title": "IMG_0264", "text": "", "album_id": "72157594489449430", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/363123111_f66f329240_o.jpg", "secret": "f66f329240", "media": "photo", "latitude": "0", "id": "363123111", "tags": "capitolsteps synchronizedskating"}, {"datetaken": "2007-01-06 17:29:26", "license": "1", "title": "IMG_0265", "text": "", "album_id": "72157594489449430", "longitude": "0", "url_o": "https://farm1.staticflickr.com/109/363123183_7c4d9c892b_o.jpg", "secret": "7c4d9c892b", "media": "photo", "latitude": "0", "id": "363123183", "tags": "capitolsteps synchronizedskating"}, {"datetaken": "2007-01-06 17:29:37", "license": "1", "title": "IMG_0266", "text": "", "album_id": "72157594489449430", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/363123264_67c1c945e0_o.jpg", "secret": "67c1c945e0", "media": "photo", "latitude": "0", "id": "363123264", "tags": "capitolsteps synchronizedskating"}, {"datetaken": "2010-06-22 09:52:03", "license": "6", "title": "Ambassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1230/4729796202_fe6021c2d8_o.jpg", "secret": "2dfd9678c8", "media": "photo", "latitude": "0", "id": "4729796202", "tags": "eikenberry ambassador kabul afghanistan national military academy sword presentation award nmaa speech honorary degree brian neely bh"}, {"datetaken": "2010-06-22 09:56:01", "license": "6", "title": "Ambassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1394/4729796204_4cc64456f9_o.jpg", "secret": "af389ebf33", "media": "photo", "latitude": "0", "id": "4729796204", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 09:58:50", "license": "6", "title": "Ambassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1429/4729796206_7f43da0f98_o.jpg", "secret": "73c6004d9d", "media": "photo", "latitude": "0", "id": "4729796206", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 09:59:09", "license": "6", "title": "Ambassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1330/4729796210_a656faaa59_o.jpg", "secret": "cb9ca7ccc1", "media": "photo", "latitude": "0", "id": "4729796210", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 09:59:13", "license": "6", "title": "Amdassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1205/4729803538_dcde1a7302_o.jpg", "secret": "337cda1147", "media": "photo", "latitude": "0", "id": "4729803538", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 09:59:30", "license": "6", "title": "Amdassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1359/4729803544_cd566a10b9_o.jpg", "secret": "de5a9df7ba", "media": "photo", "latitude": "0", "id": "4729803544", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 10:37:21", "license": "6", "title": "Amdassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1222/4729803546_69d68b4e36_o.jpg", "secret": "1008eb299b", "media": "photo", "latitude": "0", "id": "4729803546", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 10:41:11", "license": "6", "title": "Amdassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1124/4729803550_7c535a3a91_o.jpg", "secret": "67320cdb09", "media": "photo", "latitude": "0", "id": "4729803550", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 10:48:16", "license": "6", "title": "Amdassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1236/4729784870_842121f252_o.jpg", "secret": "5168b0a96d", "media": "photo", "latitude": "0", "id": "4729784870", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 10:49:27", "license": "6", "title": "Amdassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1059/4729803556_d5bfed7b98_o.jpg", "secret": "381f180b53", "media": "photo", "latitude": "0", "id": "4729803556", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 10:49:31", "license": "6", "title": "Amdassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1168/4729803558_95f1c6ebd6_o.jpg", "secret": "fa26bfeb05", "media": "photo", "latitude": "0", "id": "4729803558", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 10:50:02", "license": "6", "title": "Amdassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1310/4729166167_860eed8e69_o.jpg", "secret": "2bd5d7b722", "media": "photo", "latitude": "0", "id": "4729166167", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 10:51:55", "license": "6", "title": "Amdassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1334/4729784872_205a0b1a0b_o.jpg", "secret": "6b192588de", "media": "photo", "latitude": "0", "id": "4729784872", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 10:52:33", "license": "6", "title": "Amdassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1138/4729166175_67e8eaa66f_o.jpg", "secret": "87e2463cdc", "media": "photo", "latitude": "0", "id": "4729166175", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 10:52:34", "license": "6", "title": "Amdassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1094/4729166179_aa534194a3_o.jpg", "secret": "47451d0640", "media": "photo", "latitude": "0", "id": "4729166179", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 10:55:14", "license": "6", "title": "Amdassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1379/4729166185_c299dc16f2_o.jpg", "secret": "8c4b6a0f6f", "media": "photo", "latitude": "0", "id": "4729166185", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 10:55:43", "license": "6", "title": "Amdassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1235/4729166189_329c9e82cb_o.jpg", "secret": "857202f8ef", "media": "photo", "latitude": "0", "id": "4729166189", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 10:58:12", "license": "6", "title": "Amdassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1358/4729784874_5b2cf1b8d9_o.jpg", "secret": "dabb7a9aab", "media": "photo", "latitude": "0", "id": "4729784874", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 10:59:45", "license": "6", "title": "Amdassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1331/4729784876_3c967d4b75_o.jpg", "secret": "ff188148f6", "media": "photo", "latitude": "0", "id": "4729784876", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 11:00:15", "license": "6", "title": "Amdassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1438/4729784882_e69a054bde_o.jpg", "secret": "25cdea3976", "media": "photo", "latitude": "0", "id": "4729784882", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 11:08:27", "license": "6", "title": "Amdassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1375/4729784886_56320d6205_o.jpg", "secret": "9925d83e39", "media": "photo", "latitude": "0", "id": "4729784886", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-06-22 11:08:30", "license": "6", "title": "Ambassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1125/4729796194_60b6d41867_o.jpg", "secret": "721d00a7e2", "media": "photo", "latitude": "0", "id": "4729796194", "tags": "eikenberry ambassador kabul afghanistan national military academy sword presentation award nmaa speech honorary degree brian neely bh"}, {"datetaken": "2010-06-22 11:11:08", "license": "6", "title": "Ambassador Eikenberry Receives Honorary Degree at NMAA", "text": "", "album_id": "72157624220760067", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1397/4729796196_76db06f4ea_o.jpg", "secret": "63e02cce9f", "media": "photo", "latitude": "0", "id": "4729796196", "tags": "afghanistan military brian award national sword presentation ambassador academy speech kabul degree bh neely honorary eikenberry nmaa"}, {"datetaken": "2010-03-26 11:57:09", "license": "3", "title": "iCrossing - OMMA Agency of the Year Awards Ceremony", "text": "", "album_id": "72157623708804154", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4465493082_f827d01e75_o.jpg", "secret": "5ecf466f8c", "media": "photo", "latitude": "0", "id": "4465493082", "tags": "nyc newyork search ceremony awards omma icrossing agencyoftheyear"}, {"datetaken": "2010-03-26 11:57:10", "license": "3", "title": "iCrossing - OMMA Agency of the Year Awards Ceremony", "text": "", "album_id": "72157623708804154", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4464716297_6585f08858_o.jpg", "secret": "8a7658ec02", "media": "photo", "latitude": "0", "id": "4464716297", "tags": "nyc newyork search ceremony awards omma icrossing agencyoftheyear"}, {"datetaken": "2010-03-26 11:57:11", "license": "3", "title": "iCrossing - OMMA Agency of the Year Awards Ceremony", "text": "", "album_id": "72157623708804154", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4464716315_373fdcbf69_o.jpg", "secret": "1cb18a1183", "media": "photo", "latitude": "0", "id": "4464716315", "tags": "nyc newyork search ceremony awards omma icrossing agencyoftheyear"}, {"datetaken": "2010-03-26 11:57:11", "license": "3", "title": "iCrossing - OMMA Agency of the Year Awards Ceremony", "text": "", "album_id": "72157623708804154", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4464716335_9c04bc5503_o.jpg", "secret": "601a7eff4e", "media": "photo", "latitude": "0", "id": "4464716335", "tags": "nyc newyork search ceremony awards omma icrossing agencyoftheyear"}, {"datetaken": "2010-03-26 11:57:12", "license": "3", "title": "iCrossing - OMMA Agency of the Year Awards Ceremony", "text": "", "album_id": "72157623708804154", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4464716355_af36fd0802_o.jpg", "secret": "fb8cbe8475", "media": "photo", "latitude": "0", "id": "4464716355", "tags": "nyc newyork search ceremony awards omma icrossing agencyoftheyear"}, {"datetaken": "2010-03-26 11:57:12", "license": "3", "title": "iCrossing - OMMA Agency of the Year Awards Ceremony", "text": "", "album_id": "72157623708804154", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4465493196_b757975721_o.jpg", "secret": "87749c5754", "media": "photo", "latitude": "0", "id": "4465493196", "tags": "nyc newyork search ceremony awards omma icrossing agencyoftheyear"}, {"datetaken": "2010-03-26 11:57:13", "license": "3", "title": "iCrossing - OMMA Agency of the Year Awards Ceremony", "text": "", "album_id": "72157623708804154", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2767/4464716407_2fab51287f_o.jpg", "secret": "b3c084c8b7", "media": "photo", "latitude": "0", "id": "4464716407", "tags": "nyc newyork search ceremony awards omma icrossing agencyoftheyear"}, {"datetaken": "2010-03-26 11:57:14", "license": "3", "title": "iCrossing - OMMA Agency of the Year Awards Ceremony", "text": "", "album_id": "72157623708804154", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2190/4464716419_90820bde96_o.jpg", "secret": "e4ce0d3555", "media": "photo", "latitude": "0", "id": "4464716419", "tags": "nyc newyork search ceremony awards omma icrossing agencyoftheyear"}, {"datetaken": "2010-03-26 11:57:14", "license": "3", "title": "iCrossing - OMMA Agency of the Year Awards Ceremony", "text": "", "album_id": "72157623708804154", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4464716437_2c7dc81da6_o.jpg", "secret": "4af5bd4d58", "media": "photo", "latitude": "0", "id": "4464716437", "tags": "nyc newyork search ceremony awards omma icrossing agencyoftheyear"}, {"datetaken": "2010-03-26 11:57:15", "license": "3", "title": "iCrossing - OMMA Agency of the Year Awards Ceremony - Don Scales", "text": "", "album_id": "72157623708804154", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4465493288_a70ec5b94c_o.jpg", "secret": "4076603986", "media": "photo", "latitude": "0", "id": "4465493288", "tags": "nyc search president ceremony ceo awards omma agencyoftheyear toyotaiq donscales"}, {"datetaken": "2011-12-13 09:17:06", "license": "3", "title": "Library Volunteers Christmas Morning Tea - Dec 2011", "text": "", "album_id": "72157629092555811", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7004/6786558199_a9077fe57f_o.jpg", "secret": "0303b5d962", "media": "photo", "latitude": "0", "id": "6786558199", "tags": "newzealand library otago dunedin dunedinpubliclibraries gigatowndun"}, {"datetaken": "2011-12-13 09:17:37", "license": "3", "title": "Library Volunteers Christmas Morning Tea - Dec 2011", "text": "", "album_id": "72157629092555811", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7154/6786558655_680b2659a0_o.jpg", "secret": "9ae640e7af", "media": "photo", "latitude": "0", "id": "6786558655", "tags": "newzealand library otago dunedin dunedinpubliclibraries gigatowndun"}, {"datetaken": "2011-12-13 09:17:56", "license": "3", "title": "Library Volunteers Christmas Morning Tea - Dec 2011", "text": "", "album_id": "72157629092555811", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7010/6786559115_60c9cea809_o.jpg", "secret": "07bbb1be47", "media": "photo", "latitude": "0", "id": "6786559115", "tags": "newzealand library otago dunedin dunedinpubliclibraries gigatowndun"}, {"datetaken": "2011-12-13 09:18:35", "license": "3", "title": "Library Volunteers Christmas Morning Tea - Dec 2011", "text": "", "album_id": "72157629092555811", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7166/6786559581_92d35e037f_o.jpg", "secret": "74f014df0f", "media": "photo", "latitude": "0", "id": "6786559581", "tags": "newzealand library otago dunedin dunedinpubliclibraries gigatowndun"}, {"datetaken": "2011-12-13 09:19:04", "license": "3", "title": "Library Volunteers Christmas Morning Tea - Dec 2011", "text": "", "album_id": "72157629092555811", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7026/6786560359_ece0d90480_o.jpg", "secret": "f4f6e42b77", "media": "photo", "latitude": "0", "id": "6786560359", "tags": "newzealand library otago dunedin dunedinpubliclibraries gigatowndun"}, {"datetaken": "2011-12-13 09:19:36", "license": "3", "title": "Library Volunteers Christmas Morning Tea - Dec 2011", "text": "", "album_id": "72157629092555811", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7010/6786560807_b5b356623e_o.jpg", "secret": "6ca6ffe254", "media": "photo", "latitude": "0", "id": "6786560807", "tags": "newzealand library otago dunedin dunedinpubliclibraries gigatowndun"}, {"datetaken": "2011-12-13 09:23:11", "license": "3", "title": "Library Volunteers Christmas Morning Tea - Dec 2011", "text": "", "album_id": "72157629092555811", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7021/6786561105_ce1e2ce653_o.jpg", "secret": "e8ec23cb83", "media": "photo", "latitude": "0", "id": "6786561105", "tags": "newzealand library otago dunedin dunedinpubliclibraries gigatowndun"}, {"datetaken": "2011-12-13 09:30:54", "license": "3", "title": "Library Volunteers Christmas Morning Tea - Dec 2011", "text": "", "album_id": "72157629092555811", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7146/6786561563_c1e43eafcd_o.jpg", "secret": "493c81d69f", "media": "photo", "latitude": "0", "id": "6786561563", "tags": "newzealand library otago dunedin dunedinpubliclibraries gigatowndun"}, {"datetaken": "2011-12-13 09:32:42", "license": "3", "title": "Library Volunteers Christmas Morning Tea - Dec 2011", "text": "", "album_id": "72157629092555811", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7155/6786561863_3e6cbbdf91_o.jpg", "secret": "38e69f2d88", "media": "photo", "latitude": "0", "id": "6786561863", "tags": "newzealand library otago dunedin dunedinpubliclibraries gigatowndun"}, {"datetaken": "2011-12-13 09:38:18", "license": "3", "title": "Library Volunteers Christmas Morning Tea - Dec 2011", "text": "", "album_id": "72157629092555811", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7151/6786562387_d6ef65c702_o.jpg", "secret": "1a875335b9", "media": "photo", "latitude": "0", "id": "6786562387", "tags": "newzealand library otago dunedin dunedinpubliclibraries gigatowndun"}, {"datetaken": "2011-12-13 09:39:05", "license": "3", "title": "Library Volunteers Christmas Morning Tea - Dec 2011", "text": "", "album_id": "72157629092555811", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7030/6786562839_3cb4d380c0_o.jpg", "secret": "9188712ac4", "media": "photo", "latitude": "0", "id": "6786562839", "tags": "newzealand library otago dunedin dunedinpubliclibraries gigatowndun"}, {"datetaken": "2011-12-13 09:40:47", "license": "3", "title": "Library Volunteers Christmas Morning Tea - Dec 2011", "text": "", "album_id": "72157629092555811", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7002/6786563317_bc26fb28f9_o.jpg", "secret": "641f760bb1", "media": "photo", "latitude": "0", "id": "6786563317", "tags": "newzealand library otago dunedin dunedinpubliclibraries gigatowndun"}, {"datetaken": "2011-12-13 09:47:20", "license": "3", "title": "Library Volunteers Christmas Morning Tea - Dec 2011", "text": "", "album_id": "72157629092555811", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7147/6786563713_eeafb071de_o.jpg", "secret": "0d79041e7e", "media": "photo", "latitude": "0", "id": "6786563713", "tags": "newzealand library otago dunedin dunedinpubliclibraries gigatowndun"}, {"datetaken": "2011-12-13 09:48:24", "license": "3", "title": "Library Volunteers Christmas Morning Tea - Dec 2011", "text": "", "album_id": "72157629092555811", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6786563999_954e96f98e_o.jpg", "secret": "32c8c959f8", "media": "photo", "latitude": "0", "id": "6786563999", "tags": "newzealand library otago dunedin dunedinpubliclibraries gigatowndun"}, {"datetaken": "2011-12-13 09:53:54", "license": "3", "title": "Library Volunteers Christmas Morning Tea - Dec 2011", "text": "", "album_id": "72157629092555811", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7166/6786564465_05168052ec_o.jpg", "secret": "eb26569622", "media": "photo", "latitude": "0", "id": "6786564465", "tags": "newzealand library otago dunedin dunedinpubliclibraries gigatowndun"}, {"datetaken": "2011-12-13 09:59:53", "license": "3", "title": "Library Volunteers Christmas Morning Tea - Dec 2011", "text": "", "album_id": "72157629092555811", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7164/6786564701_b34c96dba3_o.jpg", "secret": "0291af7775", "media": "photo", "latitude": "0", "id": "6786564701", "tags": "newzealand library otago dunedin dunedinpubliclibraries gigatowndun"}, {"datetaken": "2011-12-13 10:15:44", "license": "3", "title": "Library Volunteers Christmas Morning Tea - Dec 2011", "text": "", "album_id": "72157629092555811", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7012/6786557703_5667851414_o.jpg", "secret": "a6a8a08550", "media": "photo", "latitude": "0", "id": "6786557703", "tags": "newzealand library otago dunedin dunedinpubliclibraries gigatowndun"}, {"datetaken": "2006-02-04 07:05:02", "license": "1", "title": "Obligitory pre-race shot", "text": "", "album_id": "72157594145019718", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/153155127_d6cfa48139_o.jpg", "secret": "d6cfa48139", "media": "photo", "latitude": "0", "id": "153155127", "tags": "rocky ultramarathon ultrarunning ncultra"}, {"datetaken": "2006-02-04 07:07:48", "license": "1", "title": "RD's view of the start", "text": "", "album_id": "72157594145019718", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/153155316_eca1bba7d4_o.jpg", "secret": "eca1bba7d4", "media": "photo", "latitude": "0", "id": "153155316", "tags": "rocky ultramarathon ultrarunning ncultra"}, {"datetaken": "2006-02-04 08:49:01", "license": "1", "title": "We didn't see any", "text": "", "album_id": "72157594145019718", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/153155563_aebac9ca66_o.jpg", "secret": "aebac9ca66", "media": "photo", "latitude": "0", "id": "153155563", "tags": "rocky ultramarathon ultrarunning ncultra"}, {"datetaken": "2006-02-04 08:59:31", "license": "1", "title": "Start/Finish/Main aid station", "text": "", "album_id": "72157594145019718", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/153155739_89e10cd756_o.jpg", "secret": "89e10cd756", "media": "photo", "latitude": "0", "id": "153155739", "tags": "rocky ultramarathon ultrarunning ncultra"}, {"datetaken": "2006-02-04 09:01:04", "license": "1", "title": "Sunrise", "text": "", "album_id": "72157594145019718", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/153155847_0a79b937c9_o.jpg", "secret": "0a79b937c9", "media": "photo", "latitude": "0", "id": "153155847", "tags": "rocky ultramarathon ultrarunning ncultra"}, {"datetaken": "2006-02-04 10:54:37", "license": "1", "title": "20 down, 80 to go", "text": "", "album_id": "72157594145019718", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/153156083_920eead4de_o.jpg", "secret": "920eead4de", "media": "photo", "latitude": "0", "id": "153156083", "tags": "rocky ultramarathon ultrarunning ncultra"}, {"datetaken": "2006-02-05 06:34:36", "license": "1", "title": "Finished", "text": "", "album_id": "72157594145019718", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/153156187_177ff9e78a_o.jpg", "secret": "177ff9e78a", "media": "photo", "latitude": "0", "id": "153156187", "tags": "rocky ultramarathon ultrarunning ncultra"}, {"datetaken": "2006-02-05 06:34:46", "license": "1", "title": "Time", "text": "", "album_id": "72157594145019718", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/153156321_1a4f84cf62_o.jpg", "secret": "1a4f84cf62", "media": "photo", "latitude": "0", "id": "153156321", "tags": "rocky ultramarathon ultrarunning ncultra"}, {"datetaken": "2006-02-05 06:35:43", "license": "1", "title": "Dan Brendan", "text": "", "album_id": "72157594145019718", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/153156457_cf795fed6c_o.jpg", "secret": "cf795fed6c", "media": "photo", "latitude": "0", "id": "153156457", "tags": "rocky ultramarathon ultrarunning ncultra"}, {"datetaken": "2006-02-05 07:12:26", "license": "1", "title": "100 miles on these feet", "text": "", "album_id": "72157594145019718", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/153156598_a5e79bbfc9_o.jpg", "secret": "a5e79bbfc9", "media": "photo", "latitude": "0", "id": "153156598", "tags": "rocky ultramarathon ultrarunning ncultra"}, {"datetaken": "2006-02-05 12:31:40", "license": "1", "title": "Relaxing with Crew Chief", "text": "", "album_id": "72157594145019718", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/153156970_82d9615fbb_o.jpg", "secret": "82d9615fbb", "media": "photo", "latitude": "0", "id": "153156970", "tags": "rocky ultramarathon ultrarunning ncultra"}, {"datetaken": "2006-02-05 13:16:42", "license": "1", "title": "Buckle", "text": "", "album_id": "72157594145019718", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/153156819_ab71b2c177_o.jpg", "secret": "ab71b2c177", "media": "photo", "latitude": "0", "id": "153156819", "tags": "rocky ultramarathon ultrarunning ncultra"}, {"datetaken": "2008-01-18 09:50:29", "license": "1", "title": "", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2339/2203485578_fa298f7700_o.jpg", "secret": "09d20b8b3e", "media": "photo", "latitude": "0", "id": "2203485578", "tags": "school sports students soccer ceremony award indoor tournament kas wenden"}, {"datetaken": "2008-01-18 09:52:04", "license": "1", "title": "", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2032/2202692857_7d66d129d7_o.jpg", "secret": "389c51c1d1", "media": "photo", "latitude": "0", "id": "2202692857", "tags": "school sports students soccer ceremony award indoor tournament kas wenden"}, {"datetaken": "2008-01-18 09:52:20", "license": "1", "title": "", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2020/2203485858_6b91afa759_o.jpg", "secret": "f9b60d2b42", "media": "photo", "latitude": "0", "id": "2203485858", "tags": "school sports students soccer ceremony award indoor tournament kas wenden"}, {"datetaken": "2008-01-18 09:53:39", "license": "1", "title": "", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2261/2202693147_92e6a8e4a9_o.jpg", "secret": "977f8d168d", "media": "photo", "latitude": "0", "id": "2202693147", "tags": "school sports students soccer ceremony award indoor tournament kas wenden"}, {"datetaken": "2008-01-18 09:53:55", "license": "1", "title": "", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2245/2203486162_26da01336f_o.jpg", "secret": "a863481061", "media": "photo", "latitude": "0", "id": "2203486162", "tags": "school sports students soccer ceremony award indoor tournament kas wenden"}, {"datetaken": "2008-01-18 09:55:34", "license": "1", "title": "", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2362/2203486336_ac0cf330af_o.jpg", "secret": "4aa7616527", "media": "photo", "latitude": "0", "id": "2203486336", "tags": "school sports students soccer ceremony award indoor tournament kas wenden"}, {"datetaken": "2008-01-18 09:58:37", "license": "1", "title": "", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2181/2203486476_f68d82c528_o.jpg", "secret": "54ea074796", "media": "photo", "latitude": "0", "id": "2203486476", "tags": "school sports students soccer ceremony award indoor tournament kas wenden"}, {"datetaken": "2008-01-18 10:00:28", "license": "1", "title": "", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2169/2202693673_d23017884a_o.jpg", "secret": "fde4a88358", "media": "photo", "latitude": "0", "id": "2202693673", "tags": "school sports students soccer ceremony award indoor tournament kas wenden"}, {"datetaken": "2008-01-18 10:02:08", "license": "1", "title": "", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2054/2202693823_b46de30a12_o.jpg", "secret": "67444f88cf", "media": "photo", "latitude": "0", "id": "2202693823", "tags": "school sports students soccer ceremony award indoor tournament kas wenden"}, {"datetaken": "2008-01-18 11:41:07", "license": "1", "title": "DSC_1072.JPG", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2233/2201979270_e7837b0179_o.jpg", "secret": "0c3fac1603", "media": "photo", "latitude": "0", "id": "2201979270", "tags": "school sports students football soccer indoor awards kas wenden"}, {"datetaken": "2008-01-18 11:41:55", "license": "1", "title": "DSC_1073.JPG", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2382/2201980302_b35c05faa5_o.jpg", "secret": "7e5576cf08", "media": "photo", "latitude": "0", "id": "2201980302", "tags": "school sports students football soccer indoor awards kas wenden"}, {"datetaken": "2008-01-18 11:42:15", "license": "1", "title": "DSC_1074.JPG", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2225/2201189429_71cac2393d_o.jpg", "secret": "e00c49ac17", "media": "photo", "latitude": "0", "id": "2201189429", "tags": "school sports students football soccer indoor awards kas wenden"}, {"datetaken": "2008-01-18 11:44:53", "license": "1", "title": "DSC_1082.JPG", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2133/2201189589_2e857df22d_o.jpg", "secret": "3dafe2a8bc", "media": "photo", "latitude": "0", "id": "2201189589", "tags": "school sports students football soccer indoor awards kas wenden"}, {"datetaken": "2008-01-18 11:45:14", "license": "1", "title": "DSC_1083.JPG", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2391/2201980794_56537efe17_o.jpg", "secret": "d2978961d3", "media": "photo", "latitude": "0", "id": "2201980794", "tags": "school sports students football soccer indoor awards kas wenden"}, {"datetaken": "2008-01-18 11:45:40", "license": "1", "title": "DSC_1084.JPG", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2071/2201980974_6827261d67_o.jpg", "secret": "b78697dedd", "media": "photo", "latitude": "0", "id": "2201980974", "tags": "school sports students football soccer indoor awards kas wenden"}, {"datetaken": "2008-01-18 11:46:50", "license": "1", "title": "DSC_1085.JPG", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2367/2201981140_3c35f8af1a_o.jpg", "secret": "54ba7e5a3a", "media": "photo", "latitude": "0", "id": "2201981140", "tags": "school sports students football soccer indoor awards kas wenden"}, {"datetaken": "2008-01-18 11:50:04", "license": "1", "title": "DSC_1089.JPG", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2114/2201190357_62126a162b_o.jpg", "secret": "1b1f3ce6ff", "media": "photo", "latitude": "0", "id": "2201190357", "tags": "school sports students football soccer indoor awards kas wenden"}, {"datetaken": "2008-01-18 11:50:13", "license": "1", "title": "DSC_1090.JPG", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2271/2201981474_32c19825fb_o.jpg", "secret": "e8f8d9b0e0", "media": "photo", "latitude": "0", "id": "2201981474", "tags": "school sports students football soccer indoor awards kas wenden"}, {"datetaken": "2008-01-18 11:50:40", "license": "1", "title": "DSC_1091.JPG", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2312/2201981644_d45d9a670a_o.jpg", "secret": "37f606a097", "media": "photo", "latitude": "0", "id": "2201981644", "tags": "school sports students football soccer indoor awards kas wenden"}, {"datetaken": "2008-01-18 11:51:13", "license": "1", "title": "DSC_1092.JPG", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2185/2201190875_4cbb4f9f57_o.jpg", "secret": "b3038f0a89", "media": "photo", "latitude": "0", "id": "2201190875", "tags": "school sports students football soccer indoor awards kas wenden"}, {"datetaken": "2008-01-18 11:51:57", "license": "1", "title": "DSC_1093.JPG", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2162/2201191033_c991cdd424_o.jpg", "secret": "7e9d9d3f75", "media": "photo", "latitude": "0", "id": "2201191033", "tags": "school sports students football soccer indoor awards kas wenden"}, {"datetaken": "2008-01-18 11:55:15", "license": "1", "title": "DSC_1095.JPG", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2367/2201979480_b6c4c1abda_o.jpg", "secret": "8302a943f1", "media": "photo", "latitude": "0", "id": "2201979480", "tags": "school sports students football soccer indoor awards kas wenden"}, {"datetaken": "2008-01-18 11:56:38", "license": "1", "title": "DSC_1097.JPG", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2103/2201188677_5e601dd4f1_o.jpg", "secret": "a882c81665", "media": "photo", "latitude": "0", "id": "2201188677", "tags": "school sports students football soccer indoor awards kas wenden"}, {"datetaken": "2008-01-18 11:57:03", "license": "1", "title": "DSC_1098.JPG", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2022/2201188903_a05075c8a0_o.jpg", "secret": "5305dc3de3", "media": "photo", "latitude": "0", "id": "2201188903", "tags": "school sports students football soccer indoor awards kas wenden"}, {"datetaken": "2008-01-18 11:58:13", "license": "1", "title": "DSC_1100.JPG", "text": "", "album_id": "72157603745341181", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2392/2201189131_0b729c7b62_o.jpg", "secret": "f62590885d", "media": "photo", "latitude": "0", "id": "2201189131", "tags": "school sports students football soccer indoor awards kas wenden"}, {"datetaken": "2008-05-10 17:09:50", "license": "3", "title": "Award Ceremony", "text": "", "album_id": "72157605038747377", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2013/2489831316_ef8c128ba9_o.jpg", "secret": "5ba14a5efb", "media": "photo", "latitude": "0", "id": "2489831316", "tags": "artcars"}, {"datetaken": "2008-05-10 17:24:09", "license": "3", "title": "Award Ceremony", "text": "", "album_id": "72157605038747377", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2370/2489832076_4e069516aa_o.jpg", "secret": "717a08990e", "media": "photo", "latitude": "0", "id": "2489832076", "tags": "artcars"}, {"datetaken": "2008-05-10 17:25:12", "license": "3", "title": "Award Ceremony", "text": "", "album_id": "72157605038747377", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2152/2489832786_f506b709b9_o.jpg", "secret": "a63a4ea3da", "media": "photo", "latitude": "0", "id": "2489832786", "tags": "artcars"}, {"datetaken": "2008-05-10 17:25:55", "license": "3", "title": "Award Ceremony", "text": "", "album_id": "72157605038747377", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2201/2489833534_36ef908235_o.jpg", "secret": "595f60d0be", "media": "photo", "latitude": "0", "id": "2489833534", "tags": "artcars"}, {"datetaken": "2008-05-10 17:28:00", "license": "3", "title": "Award Ceremony", "text": "", "album_id": "72157605038747377", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2381/2489834320_cc014a7df4_o.jpg", "secret": "d6585dcf37", "media": "photo", "latitude": "0", "id": "2489834320", "tags": "artcars"}, {"datetaken": "2008-05-10 17:31:51", "license": "3", "title": "Award Ceremony", "text": "", "album_id": "72157605038747377", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2130/2489834976_a0b7b520c2_o.jpg", "secret": "22a5e5b984", "media": "photo", "latitude": "0", "id": "2489834976", "tags": "artcars"}, {"datetaken": "2008-05-10 17:43:15", "license": "3", "title": "Award Ceremony", "text": "", "album_id": "72157605038747377", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2106/2489835634_00047fa9d3_o.jpg", "secret": "689dec5d47", "media": "photo", "latitude": "0", "id": "2489835634", "tags": "artcars"}, {"datetaken": "2008-05-10 17:45:51", "license": "3", "title": "Award Ceremony", "text": "", "album_id": "72157605038747377", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2247/2489019903_c155cda5f1_o.jpg", "secret": "deefd06f5a", "media": "photo", "latitude": "0", "id": "2489019903", "tags": "artcars"}, {"datetaken": "2008-05-10 18:04:00", "license": "3", "title": "Award Ceremony", "text": "", "album_id": "72157605038747377", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2390/2489837098_e7e8b78b0c_o.jpg", "secret": "956a5af088", "media": "photo", "latitude": "0", "id": "2489837098", "tags": "tom dick artcars kennedy missle"}, {"datetaken": "2008-05-10 18:05:00", "license": "3", "title": "Award Ceremony", "text": "", "album_id": "72157605038747377", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2293/2489837770_4503e15a6e_o.jpg", "secret": "1fc50ec2d5", "media": "photo", "latitude": "0", "id": "2489837770", "tags": "artcars"}, {"datetaken": "2008-05-10 18:08:33", "license": "3", "title": "Award Ceremony", "text": "", "album_id": "72157605038747377", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3166/2489021889_5be830ea93_o.jpg", "secret": "bf31e76ec8", "media": "photo", "latitude": "0", "id": "2489021889", "tags": "artcars"}, {"datetaken": "2008-05-10 18:10:12", "license": "3", "title": "Award Ceremony", "text": "", "album_id": "72157605038747377", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2297/2489839180_4b6da0d7db_o.jpg", "secret": "e9ac96d839", "media": "photo", "latitude": "0", "id": "2489839180", "tags": "artcars"}, {"datetaken": "2008-05-10 18:10:29", "license": "3", "title": "Award Ceremony", "text": "", "album_id": "72157605038747377", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3086/2489023447_e76f0efd32_o.jpg", "secret": "4294c2242c", "media": "photo", "latitude": "0", "id": "2489023447", "tags": "artcars"}, {"datetaken": "2008-05-21 16:18:04", "license": "2", "title": "drimmelen", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2309/2514063333_0375db5a04_o.jpg", "secret": "90a53a3790", "media": "photo", "latitude": "0", "id": "2514063333", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 16:18:53", "license": "2", "title": "drimmelen", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2285/2514889006_5e6b21acfd_o.jpg", "secret": "88d3033f52", "media": "photo", "latitude": "0", "id": "2514889006", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 16:20:51", "license": "2", "title": "drimmelen", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2019/2514063511_f32150bc7c_o.jpg", "secret": "b4f87bb8ac", "media": "photo", "latitude": "0", "id": "2514063511", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 16:21:13", "license": "2", "title": "drimmelen", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2047/2514889354_5c95dda896_o.jpg", "secret": "fcdc6b00fd", "media": "photo", "latitude": "0", "id": "2514889354", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 16:24:56", "license": "2", "title": "bootje varen", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3213/2514063851_209ea90a8f_o.jpg", "secret": "0748264b50", "media": "photo", "latitude": "0", "id": "2514063851", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 16:47:30", "license": "2", "title": "dier gespot \u221a", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2350/2514063941_67da4f9696_o.jpg", "secret": "52b56e2461", "media": "photo", "latitude": "0", "id": "2514063941", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 16:47:45", "license": "2", "title": "bootje varen", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2082/2514889596_04124941e0_o.jpg", "secret": "6d89e673d0", "media": "photo", "latitude": "0", "id": "2514889596", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 16:47:53", "license": "2", "title": "bootje varen", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3159/2514064079_f0b6f71045_o.jpg", "secret": "9eae274c44", "media": "photo", "latitude": "0", "id": "2514064079", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 17:23:44", "license": "2", "title": "biesbosch", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2072/2514889764_6e9f30e358_o.jpg", "secret": "65ed3f4cd5", "media": "photo", "latitude": "0", "id": "2514889764", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 17:23:55", "license": "2", "title": "shirley", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3295/2514995180_9846e1ea10_o.jpg", "secret": "3f1fc60af6", "media": "photo", "latitude": "0", "id": "2514995180", "tags": "biesbosch"}, {"datetaken": "2008-05-21 17:24:14", "license": "2", "title": "bootje varen", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2153/2514064259_918c8fc888_o.jpg", "secret": "349cacc0ef", "media": "photo", "latitude": "0", "id": "2514064259", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 17:26:36", "license": "2", "title": "bootje varen", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2018/2514889922_5b46ef4dd8_o.jpg", "secret": "8291e5cc45", "media": "photo", "latitude": "0", "id": "2514889922", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 17:26:50", "license": "2", "title": "bootje varen", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2148/2514064433_3b330ac23c_o.jpg", "secret": "d0f688ec69", "media": "photo", "latitude": "0", "id": "2514064433", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 17:29:32", "license": "2", "title": "bootje varen", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3064/2514064523_f1d57b84c8_o.jpg", "secret": "84db141dfa", "media": "photo", "latitude": "0", "id": "2514064523", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 18:29:54", "license": "2", "title": "award ceremony", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2187/2514890186_0945cee98a_o.jpg", "secret": "34a053f98d", "media": "photo", "latitude": "0", "id": "2514890186", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 18:30:04", "license": "2", "title": "award ceremony", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3289/2514064771_bd4031f348_o.jpg", "secret": "838e06de57", "media": "photo", "latitude": "0", "id": "2514064771", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 18:30:14", "license": "2", "title": "award ceremony", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2244/2514064859_9e9e0928bb_o.jpg", "secret": "5b042b6d1c", "media": "photo", "latitude": "0", "id": "2514064859", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 18:30:27", "license": "2", "title": "award ceremony", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2048/2514890482_3205e26ba3_o.jpg", "secret": "487de45bf1", "media": "photo", "latitude": "0", "id": "2514890482", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 18:35:38", "license": "2", "title": "zo vlijtig de bever...", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2146/2514065063_54ccbbc8d1_o.jpg", "secret": "ea8acd9b7d", "media": "photo", "latitude": "0", "id": "2514065063", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 18:38:25", "license": "2", "title": "de wisselbever", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2276/2514065157_accc885b60_o.jpg", "secret": "e8c9761a8c", "media": "photo", "latitude": "0", "id": "2514065157", "tags": "boat biesbosch"}, {"datetaken": "2008-05-21 18:39:34", "license": "2", "title": "award ceremony", "text": "", "album_id": "72157605198166226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2367/2514890794_883a486ef7_o.jpg", "secret": "38fd296a40", "media": "photo", "latitude": "0", "id": "2514890794", "tags": "boat biesbosch"}, {"datetaken": "2008-06-16 10:52:08", "license": "3", "title": "IMG_3119", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3115/2588242942_2e0d727f76_o.jpg", "secret": "99da73fd5c", "media": "photo", "latitude": "0", "id": "2588242942", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 10:52:14", "license": "3", "title": "Peabody!", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3265/2587261141_8064219f96_o.jpg", "secret": "ce6ed5d4d4", "media": "photo", "latitude": "0", "id": "2587261141", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 10:52:44", "license": "3", "title": "IMG_3121_2", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3150/2588096430_ea373577e6_o.jpg", "secret": "316eaa16b4", "media": "photo", "latitude": "0", "id": "2588096430", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 10:58:59", "license": "3", "title": "IMG_3123", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3148/2588094418_bc195d1bcc_o.jpg", "secret": "b35fdf7e79", "media": "photo", "latitude": "0", "id": "2588094418", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 11:08:25", "license": "3", "title": "IMG_3127_2", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3017/2587261233_5d53bef1b5_o.jpg", "secret": "0a34641bfb", "media": "photo", "latitude": "0", "id": "2587261233", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 11:18:16", "license": "3", "title": "IMG_3128_2", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3124/2588096626_d30b6d1224_o.jpg", "secret": "1edcf00ab1", "media": "photo", "latitude": "0", "id": "2588096626", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards charliegibson lornawhite wwdtm"}, {"datetaken": "2008-06-16 11:18:27", "license": "3", "title": "IMG_3129_2", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3003/2588096658_8da981ba82_o.jpg", "secret": "dc994a0b4c", "media": "photo", "latitude": "0", "id": "2588096658", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 11:22:10", "license": "3", "title": "IMG_3130_2", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3280/2588096712_7f253ec3a6_o.jpg", "secret": "316ec4a722", "media": "photo", "latitude": "0", "id": "2588096712", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 11:35:42", "license": "3", "title": "IMG_3131", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3145/2588094688_29a41ee1cc_o.jpg", "secret": "4bdf23b31d", "media": "photo", "latitude": "0", "id": "2588094688", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 12:01:37", "license": "3", "title": "IMG_3133", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3012/2588096776_fd4965dc6e_o.jpg", "secret": "c062c24952", "media": "photo", "latitude": "0", "id": "2588096776", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 12:05:59", "license": "3", "title": "IMG_3134", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3114/2588096828_6076e7897a_o.jpg", "secret": "1b7e242952", "media": "photo", "latitude": "0", "id": "2588096828", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 12:10:54", "license": "3", "title": "IMG_3135", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3187/2587261587_dc09300724_o.jpg", "secret": "26033fbe91", "media": "photo", "latitude": "0", "id": "2587261587", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm lesliestahl"}, {"datetaken": "2008-06-16 12:45:23", "license": "3", "title": "IMG_3138", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3123/2587259493_c0cc5f7daa_o.jpg", "secret": "90e050fcb9", "media": "photo", "latitude": "0", "id": "2587259493", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 13:07:12", "license": "3", "title": "Peabodies!!", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3020/2588095238_67f9556e76_o.jpg", "secret": "e05ee31524", "media": "photo", "latitude": "0", "id": "2588095238", "tags": "newyorkcity npr 2008 waitwaitdonttellme stephencolbert peabodyawards thecolbertreport lornawhite wwdtm"}, {"datetaken": "2008-06-16 13:12:51", "license": "3", "title": "IMG_3141", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3270/2587259937_7d59ca7119_o.jpg", "secret": "661d2f9493", "media": "photo", "latitude": "0", "id": "2587259937", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 13:13:01", "license": "3", "title": "IMG_3142", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3042/2588095362_5e8d7ee2ee_o.jpg", "secret": "a5246a322e", "media": "photo", "latitude": "0", "id": "2588095362", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 13:13:37", "license": "3", "title": "IMG_3143", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3085/2587260143_d6532aa1d4_o.jpg", "secret": "96a91d7e64", "media": "photo", "latitude": "0", "id": "2587260143", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 13:13:47", "license": "3", "title": "IMG_3144", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3125/2588095654_68b3c0ebab_o.jpg", "secret": "fb3618c009", "media": "photo", "latitude": "0", "id": "2588095654", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 13:14:22", "license": "3", "title": "peabody awards", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2294/2588097062_4ea036a03c_o.jpg", "secret": "94d992e811", "media": "photo", "latitude": "0", "id": "2588097062", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 13:14:32", "license": "3", "title": "IMG_3149", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3069/2587408951_75f3e077a6_o.jpg", "secret": "089c056ddb", "media": "photo", "latitude": "0", "id": "2587408951", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 13:18:22", "license": "3", "title": "Peabodies!!!", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3089/2588243136_6dfe5f1bb4_o.jpg", "secret": "335c21f541", "media": "photo", "latitude": "0", "id": "2588243136", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 13:49:22", "license": "3", "title": "IMG_3160", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2321/2587408831_32d8e8e951_o.jpg", "secret": "26045f6f73", "media": "photo", "latitude": "0", "id": "2587408831", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 14:05:08", "license": "3", "title": "IMG_3166", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3008/2588243698_18156dbece_o.jpg", "secret": "d211311673", "media": "photo", "latitude": "0", "id": "2588243698", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2008-06-16 16:04:17", "license": "3", "title": "IMG_3189", "text": "", "album_id": "72157605669695765", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3089/2587261065_8262893ebb_o.jpg", "secret": "de19efc993", "media": "photo", "latitude": "0", "id": "2587261065", "tags": "newyorkcity npr 2008 waitwaitdonttellme peabodyawards lornawhite wwdtm"}, {"datetaken": "2007-06-16 11:44:26", "license": "1", "title": "Manitoba Marathon", "text": "", "album_id": "72157606699672205", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3261/2758835622_c3264893e7_o.jpg", "secret": "3b9692e4c1", "media": "photo", "latitude": "0", "id": "2758835622", "tags": "marathon manitoba"}, {"datetaken": "2007-06-16 12:04:58", "license": "1", "title": "elm walk", "text": "", "album_id": "72157606699672205", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3015/2757885073_a22854ee4b_o.jpg", "secret": "37bb8c4c0e", "media": "photo", "latitude": "0", "id": "2757885073", "tags": "trees university winnipeg manitoba elm"}, {"datetaken": "2007-06-16 12:06:35", "license": "1", "title": "art around campus", "text": "", "album_id": "72157606699672205", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3054/2757963187_6c02809b9f_o.jpg", "secret": "1001228242", "media": "photo", "latitude": "0", "id": "2757963187", "tags": "art university winnipeg manitoba"}, {"datetaken": "2007-06-16 13:32:38", "license": "1", "title": "paper handouts", "text": "", "album_id": "72157606699672205", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3246/2757963159_cf4c34f625_o.jpg", "secret": "79c1b05d9c", "media": "photo", "latitude": "0", "id": "2757963159", "tags": "paper university winnipeg library manitoba handouts"}, {"datetaken": "2007-06-16 13:33:19", "license": "1", "title": "Elizabeth Dafoe Library", "text": "", "album_id": "72157606699672205", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3102/2757963137_a628e2753a_o.jpg", "secret": "6248b86ea8", "media": "photo", "latitude": "0", "id": "2757963137", "tags": "university winnipeg library manitoba"}, {"datetaken": "2007-06-16 13:34:06", "license": "1", "title": "what's a library without a starbucks", "text": "", "album_id": "72157606699672205", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3258/2758754716_b2d4273657_o.jpg", "secret": "be1b725142", "media": "photo", "latitude": "0", "id": "2758754716", "tags": "coffee university winnipeg library manitoba starbucks"}, {"datetaken": "2007-06-16 13:37:11", "license": "1", "title": "University of Manitoba", "text": "", "album_id": "72157606699672205", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3093/2757885067_dd6a4c634a_o.jpg", "secret": "41639fbbe2", "media": "photo", "latitude": "0", "id": "2757885067", "tags": "university winnipeg manitoba"}, {"datetaken": "2007-06-16 13:49:58", "license": "1", "title": "residence life", "text": "", "album_id": "72157606699672205", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3249/2758754706_f3840a2a9d_o.jpg", "secret": "164520a336", "media": "photo", "latitude": "0", "id": "2758754706", "tags": "university winnipeg manitoba residence"}, {"datetaken": "2007-06-16 13:53:22", "license": "1", "title": "The Red River", "text": "", "album_id": "72157606699672205", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3192/2758754674_187441cec6_o.jpg", "secret": "880d225cd6", "media": "photo", "latitude": "0", "id": "2758754674", "tags": "river winnipeg manitoba"}, {"datetaken": "2007-06-16 14:00:04", "license": "1", "title": "grey earth", "text": "", "album_id": "72157606699672205", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3108/2758754682_6d0cd97821_o.jpg", "secret": "34707cd10e", "media": "photo", "latitude": "0", "id": "2758754682", "tags": "grass university winnipeg manitoba seeds elm"}, {"datetaken": "2007-06-16 14:00:12", "license": "1", "title": "ground and seeds up close", "text": "", "album_id": "72157606699672205", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3023/2758754692_abc616b326_o.jpg", "secret": "cbc70e4ec7", "media": "photo", "latitude": "0", "id": "2758754692", "tags": "winnipeg manitoba seeds elm"}, {"datetaken": "2007-06-16 17:04:24", "license": "1", "title": "Stephen Lewis", "text": "", "album_id": "72157606699672205", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3231/2757963241_74a34d771f_o.jpg", "secret": "77ea0f3778", "media": "photo", "latitude": "0", "id": "2757963241", "tags": "university winnipeg manitoba stephenlewis caubo"}, {"datetaken": "2007-06-16 18:35:04", "license": "1", "title": "CAUBO award ceremony", "text": "", "album_id": "72157606699672205", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3034/2757963261_311ebf7a97_o.jpg", "secret": "cf67bd876c", "media": "photo", "latitude": "0", "id": "2757963261", "tags": "university winnipeg award manitoba caubo"}, {"datetaken": "2007-06-16 20:27:02", "license": "1", "title": "historical wall plaque", "text": "", "album_id": "72157606699672205", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3120/2758754708_15b171737b_o.jpg", "secret": "2f9afb0d23", "media": "photo", "latitude": "0", "id": "2758754708", "tags": "history university winnipeg manitoba arthurmauro"}, {"datetaken": "2007-06-17 11:04:06", "license": "1", "title": "the tunnel", "text": "", "album_id": "72157606699672205", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3007/2757963221_68cb184a78_o.jpg", "secret": "f3d3e0abfa", "media": "photo", "latitude": "0", "id": "2757963221", "tags": "university winnipeg tunnel manitoba"}, {"datetaken": "2008-09-09 10:59:32", "license": "3", "title": "First climb of the day", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3035/2842857625_95f17017f6_o.jpg", "secret": "2f21efea7e", "media": "photo", "latitude": "0", "id": "2842857625", "tags": ""}, {"datetaken": "2008-09-09 10:59:38", "license": "3", "title": "First climb of the day", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3288/2843696522_2d5c58eba8_o.jpg", "secret": "c667fce413", "media": "photo", "latitude": "0", "id": "2843696522", "tags": ""}, {"datetaken": "2008-09-09 10:59:45", "license": "3", "title": "First climb of the day", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3269/2843698812_1c661a94c8_o.jpg", "secret": "4e0493d55e", "media": "photo", "latitude": "0", "id": "2843698812", "tags": ""}, {"datetaken": "2008-09-09 11:00:10", "license": "3", "title": "First climb of the day", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3003/2842865213_be94f3578d_o.jpg", "secret": "fb315ec6fb", "media": "photo", "latitude": "0", "id": "2842865213", "tags": ""}, {"datetaken": "2008-09-09 12:59:05", "license": "3", "title": "Il Pirata's bike", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3237/2842867405_cedfd636a2_o.jpg", "secret": "030071b82f", "media": "photo", "latitude": "0", "id": "2842867405", "tags": ""}, {"datetaken": "2008-09-09 13:00:26", "license": "3", "title": "Il Pirata's bike", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3211/2843706584_f35b682efe_o.jpg", "secret": "b520714cdb", "media": "photo", "latitude": "0", "id": "2843706584", "tags": ""}, {"datetaken": "2008-09-09 13:02:38", "license": "3", "title": "Il Pirata's bike", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3127/2843708826_f2a43eded1_o.jpg", "secret": "832b7868fd", "media": "photo", "latitude": "0", "id": "2843708826", "tags": ""}, {"datetaken": "2008-09-09 13:03:12", "license": "3", "title": "Il Pirata's bike", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3128/2843710882_7c3d1d023c_o.jpg", "secret": "1c191a85f7", "media": "photo", "latitude": "0", "id": "2843710882", "tags": ""}, {"datetaken": "2008-09-09 14:58:32", "license": "3", "title": "Cleaning the finish line", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3239/2843713108_e3b1c96b95_o.jpg", "secret": "c5f1a39399", "media": "photo", "latitude": "0", "id": "2843713108", "tags": ""}, {"datetaken": "2008-09-09 15:30:27", "license": "3", "title": "", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3269/2842878789_4f99c88a04_o.jpg", "secret": "fc6d0f2fb0", "media": "photo", "latitude": "0", "id": "2842878789", "tags": ""}, {"datetaken": "2008-09-09 15:30:27", "license": "3", "title": "", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3110/2843717014_4f1c835285_o.jpg", "secret": "1c9fc62299", "media": "photo", "latitude": "0", "id": "2843717014", "tags": ""}, {"datetaken": "2008-09-09 15:30:29", "license": "3", "title": "", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3207/2843718776_5cc3575c2d_o.jpg", "secret": "3c3f7820f4", "media": "photo", "latitude": "0", "id": "2843718776", "tags": ""}, {"datetaken": "2008-09-09 15:30:57", "license": "3", "title": "", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3083/2842884583_7bb60f2ca3_o.jpg", "secret": "da16703d41", "media": "photo", "latitude": "0", "id": "2842884583", "tags": ""}, {"datetaken": "2008-09-09 15:32:13", "license": "3", "title": "", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3167/2843722964_2eecac90a4_o.jpg", "secret": "b8a37ffa0b", "media": "photo", "latitude": "0", "id": "2843722964", "tags": ""}, {"datetaken": "2008-09-09 15:43:29", "license": "3", "title": "", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3168/2843724966_e342ded4f1_o.jpg", "secret": "db30cc04a7", "media": "photo", "latitude": "0", "id": "2843724966", "tags": ""}, {"datetaken": "2008-09-09 15:43:31", "license": "3", "title": "", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3202/2842891119_8a231124e5_o.jpg", "secret": "1973afac4c", "media": "photo", "latitude": "0", "id": "2842891119", "tags": ""}, {"datetaken": "2008-09-09 15:43:34", "license": "3", "title": "", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3188/2842893047_2fbb41a265_o.jpg", "secret": "b6b6622b0a", "media": "photo", "latitude": "0", "id": "2842893047", "tags": ""}, {"datetaken": "2008-09-09 15:43:35", "license": "3", "title": "", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3273/2843731824_381e9c1c8b_o.jpg", "secret": "ccb171b14f", "media": "photo", "latitude": "0", "id": "2843731824", "tags": ""}, {"datetaken": "2008-09-09 15:43:36", "license": "3", "title": "", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3014/2842897543_5c3174169d_o.jpg", "secret": "f54ec430d7", "media": "photo", "latitude": "0", "id": "2842897543", "tags": ""}, {"datetaken": "2008-09-09 15:55:37", "license": "3", "title": "Award ceremony", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3126/2843735724_ece17993ae_o.jpg", "secret": "054703fd15", "media": "photo", "latitude": "0", "id": "2843735724", "tags": ""}, {"datetaken": "2008-09-09 16:00:41", "license": "3", "title": "Award ceremony", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3013/2843737378_fa914c2d75_o.jpg", "secret": "9fb5b1f21a", "media": "photo", "latitude": "0", "id": "2843737378", "tags": ""}, {"datetaken": "2008-09-09 16:06:52", "license": "3", "title": "Team car", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3213/2843738478_c602ef646e_o.jpg", "secret": "215ee4e814", "media": "photo", "latitude": "0", "id": "2843738478", "tags": ""}, {"datetaken": "2008-09-09 16:11:16", "license": "3", "title": "Team cars", "text": "", "album_id": "72157607202685229", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3026/2842903955_394d664185_o.jpg", "secret": "6c8cc742b8", "media": "photo", "latitude": "0", "id": "2842903955", "tags": ""}, {"datetaken": "2007-06-03 15:00:00", "license": "1", "title": "Colonel Mike Dudding lays a wreath", "text": "", "album_id": "72157607377451810", "longitude": "0.037165", "url_o": "https://farm4.staticflickr.com/3156/2870397437_19f83bb486_o.jpg", "secret": "458c04cff8", "media": "photo", "latitude": "51.552136", "id": "2870397437", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2007-06-03 15:00:01", "license": "1", "title": "The bow of respect", "text": "", "album_id": "72157607377451810", "longitude": "0.037165", "url_o": "https://farm4.staticflickr.com/3030/2871225648_8509984ebc_o.jpg", "secret": "5c428a6944", "media": "photo", "latitude": "51.552136", "id": "2871225648", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2007-06-03 15:00:02", "license": "1", "title": "The British Legion wreath is laid", "text": "", "album_id": "72157607377451810", "longitude": "0.037165", "url_o": "https://farm4.staticflickr.com/3009/2870397157_045fabcf50_o.jpg", "secret": "86f276736a", "media": "photo", "latitude": "51.552136", "id": "2870397157", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2007-06-03 15:00:03", "license": "1", "title": "Flags lowered", "text": "", "album_id": "72157607377451810", "longitude": "0.037165", "url_o": "https://farm4.staticflickr.com/3157/2871228302_960d1be3bb_o.jpg", "secret": "eb0a64f9e5", "media": "photo", "latitude": "51.552136", "id": "2871228302", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2007-06-03 15:00:04", "license": "1", "title": "Flag party ready", "text": "", "album_id": "72157607377451810", "longitude": "0.037165", "url_o": "https://farm4.staticflickr.com/3129/2871228032_d12ab04ea2_o.jpg", "secret": "d359ba9e88", "media": "photo", "latitude": "51.552136", "id": "2871228032", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2007-06-03 15:00:05", "license": "1", "title": "Erected by the scholars of East Ham", "text": "", "album_id": "72157607377451810", "longitude": "0.037165", "url_o": "https://farm4.staticflickr.com/3030/2870393791_1cbde4b8b2_o.jpg", "secret": "8c112e45c2", "media": "photo", "latitude": "51.552136", "id": "2870393791", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2007-06-03 15:00:06", "license": "1", "title": "The memorial in Manor Park cemetery", "text": "", "album_id": "72157607377451810", "longitude": "0.037165", "url_o": "https://farm4.staticflickr.com/3006/2871224874_fff6d5a948_o.jpg", "secret": "99a494ec61", "media": "photo", "latitude": "51.552136", "id": "2871224874", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2007-06-03 15:00:07", "license": "1", "title": "The memorial to John Travers Cornwell VC", "text": "", "album_id": "72157607377451810", "longitude": "0.037165", "url_o": "https://farm4.staticflickr.com/3181/2871224522_f029d4dfb0_o.jpg", "secret": "45d498c094", "media": "photo", "latitude": "51.552136", "id": "2871224522", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2007-06-03 15:00:08", "license": "1", "title": "Banners proudly raised", "text": "", "album_id": "72157607377451810", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3119/2871227748_e13e512954_o.jpg", "secret": "2204d02a2d", "media": "photo", "latitude": "0", "id": "2871227748", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2007-06-03 15:00:09", "license": "1", "title": "On the way back to the Royal Legion club", "text": "", "album_id": "72157607377451810", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3159/2870397913_f49554d353_o.jpg", "secret": "82a359a7ef", "media": "photo", "latitude": "0", "id": "2870397913", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2007-06-03 15:00:10", "license": "1", "title": "Through the residential streets", "text": "", "album_id": "72157607377451810", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3213/2870396083_d603629762_o.jpg", "secret": "2727071e10", "media": "photo", "latitude": "0", "id": "2870396083", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2007-06-03 15:00:11", "license": "1", "title": "The band in Romford Road", "text": "", "album_id": "72157607377451810", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3129/2870395821_bf410e712f_o.jpg", "secret": "b90454064f", "media": "photo", "latitude": "0", "id": "2870395821", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2007-06-03 15:00:12", "license": "1", "title": "The Band leads the way", "text": "", "album_id": "72157607377451810", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3065/2871226974_eac64939ab_o.jpg", "secret": "8a50710988", "media": "photo", "latitude": "0", "id": "2871226974", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2007-06-03 15:00:13", "license": "1", "title": "Parading down Romford Road", "text": "", "album_id": "72157607377451810", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3023/2870395291_55225b54d3_o.jpg", "secret": "b8fffdb086", "media": "photo", "latitude": "0", "id": "2870395291", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2007-06-03 15:00:14", "license": "1", "title": "Standing to attention", "text": "", "album_id": "72157607377451810", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3090/2870392771_eb6c5e28b2_o.jpg", "secret": "70f4fc6600", "media": "photo", "latitude": "0", "id": "2870392771", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2007-06-03 15:00:15", "license": "1", "title": "Ready to march off", "text": "", "album_id": "72157607377451810", "longitude": "0.055929", "url_o": "https://farm4.staticflickr.com/3230/2870392421_8d1b89546c_o.jpg", "secret": "6f5ec169ff", "media": "photo", "latitude": "51.553873", "id": "2870392421", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2007-06-03 15:00:16", "license": "1", "title": "Jack Cornwell Sea Cadets", "text": "", "album_id": "72157607377451810", "longitude": "0.055929", "url_o": "https://farm4.staticflickr.com/3113/2870395023_93bc746d88_o.jpg", "secret": "5cfce8ce23", "media": "photo", "latitude": "51.553873", "id": "2870395023", "tags": "forest gate vc gunner jutland newham victoriacross hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegionforestforest royalbritishlegionforest"}, {"datetaken": "2007-06-03 15:00:17", "license": "1", "title": "British Legion Parade", "text": "", "album_id": "72157607377451810", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3101/2871226216_e33269a819_o.jpg", "secret": "738f6c5d3b", "media": "photo", "latitude": "0", "id": "2871226216", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2007-06-03 15:00:18", "license": "1", "title": "Parade for Jack Cornwell VC", "text": "", "album_id": "72157607377451810", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3242/2871225924_5b44808804_o.jpg", "secret": "014e198e15", "media": "photo", "latitude": "0", "id": "2871225924", "tags": "forest gate vc gunner jutland newham hmschester jackcornwell sightsetter manorparkforest navyroyalnavy royalbritishlegioforest royalbritishlegionforestforest victoriacrossforestforestforest"}, {"datetaken": "2006-11-04 18:53:00", "license": "1", "title": "Tagamis", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/121/289683495_9442ed9688_o.jpg", "secret": "9442ed9688", "media": "photo", "latitude": "0", "id": "289683495", "tags": "sanfrancisco video 2006 blogging awards digitalrebelxt videoblog videoblogging tedtagami bentagami kenjitagami vloggies awardsshow vloggies2006 weekendweathertv"}, {"datetaken": "2006-11-04 18:56:30", "license": "1", "title": "Vloggies", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/100/289683548_8506e1015f_o.jpg", "secret": "8506e1015f", "media": "photo", "latitude": "0", "id": "289683548", "tags": "sanfrancisco video 2006 blogging awards digitalrebelxt videoblog videoblogging vloggies awardsshow vloggies2006"}, {"datetaken": "2006-11-04 18:57:20", "license": "1", "title": "Bill Streeter", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/107/289682614_6cc6d44c38_o.jpg", "secret": "6cc6d44c38", "media": "photo", "latitude": "0", "id": "289682614", "tags": "sanfrancisco video 2006 blogging awards digitalrebelxt videoblog videoblogging billstreeter vloggies awardsshow vloggies2006"}, {"datetaken": "2006-11-04 18:57:33", "license": "1", "title": "Chris & Uta", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/100/289682738_d50fc420e4_o.jpg", "secret": "d50fc420e4", "media": "photo", "latitude": "0", "id": "289682738", "tags": "sanfrancisco video 2006 blogging awards digitalrebelxt videoblog videoblogging chrisritke vloggies awardsshow vloggies2006"}, {"datetaken": "2006-11-04 18:58:46", "license": "1", "title": "Dan, Zadi, Steve", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/115/289682859_bf6115558d_o.jpg", "secret": "bf6115558d", "media": "photo", "latitude": "0", "id": "289682859", "tags": "sanfrancisco video 2006 blogging awards digitalrebelxt videoblog videoblogging stevewolf danfarber stevewoolf vloggies awardsshow vloggies2006 zadisiaz"}, {"datetaken": "2006-11-04 19:01:03", "license": "1", "title": "Robert Scoble", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/103/289683208_0c1d42bce6_o.jpg", "secret": "0c1d42bce6", "media": "photo", "latitude": "0", "id": "289683208", "tags": "sanfrancisco video 2006 blogging scoble awards robertscoble digitalrebelxt videoblog videoblogging vloggies awardsshow vloggies2006"}, {"datetaken": "2006-11-04 19:01:33", "license": "1", "title": "Staci & Heather", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/108/289683363_96c7ed8cdc_o.jpg", "secret": "96c7ed8cdc", "media": "photo", "latitude": "0", "id": "289683363", "tags": "sanfrancisco video 2006 blogging awards digitalrebelxt videoblog videoblogging heathergold vloggies awardsshow vloggies2006"}, {"datetaken": "2006-11-04 19:03:45", "license": "1", "title": "Outside the Vloggies", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/119/289683093_3aa3349aca_o.jpg", "secret": "3aa3349aca", "media": "photo", "latitude": "0", "id": "289683093", "tags": "sanfrancisco video 2006 blogging awards digitalrebelxt videoblog videoblogging vloggies awardsshow vloggies2006"}, {"datetaken": "2006-11-04 19:04:07", "license": "1", "title": "Meta", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/113/289682975_7f1d88f53f_o.jpg", "secret": "7f1d88f53f", "media": "photo", "latitude": "0", "id": "289682975", "tags": "sanfrancisco video 2006 blogging awards digitalrebelxt videoblog videoblogging thomashawk paulknight vloggies awardsshow vloggies2006"}, {"datetaken": "2006-11-04 19:04:56", "license": "1", "title": "Jonny, Lori, Chuck", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/116/289697198_7240ec1e0a_o.jpg", "secret": "7240ec1e0a", "media": "photo", "latitude": "0", "id": "289697198", "tags": "sanfrancisco video 2006 blogging awards digitalrebelxt videoblog videoblogging jonnygoldstein chuckolsen lorierickson vloggies awardsshow vloggies2006"}, {"datetaken": "2006-11-04 19:08:28", "license": "1", "title": "Jerry Zucker", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/101/290141713_53d70150b2_o.jpg", "secret": "53d70150b2", "media": "photo", "latitude": "0", "id": "290141713", "tags": "sanfrancisco video 2006 blogging awards videoblog videoblogging jerryzucker vloggies awardsshow vloggies2006"}, {"datetaken": "2006-11-04 19:08:44", "license": "1", "title": "Irina Slutsky", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/108/289697052_a08ff1f22d_o.jpg", "secret": "a08ff1f22d", "media": "photo", "latitude": "0", "id": "289697052", "tags": "sanfrancisco video 2006 blogging awards irinaslutsky digitalrebelxt videoblog videoblogging vloggies awardsshow vloggies2006"}, {"datetaken": "2006-11-04 19:11:11", "license": "1", "title": "Dina Kaplan", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/109/289707446_a339bc4eeb_o.jpg", "secret": "a339bc4eeb", "media": "photo", "latitude": "0", "id": "289707446", "tags": "sanfrancisco video 2006 blogging awards digitalrebelxt videoblog videoblogging dinakaplan vloggies awardsshow vloggies2006"}, {"datetaken": "2006-11-04 19:11:30", "license": "1", "title": "Bunny bloggers", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/116/289704895_bd84a0610e_o.jpg", "secret": "bd84a0610e", "media": "photo", "latitude": "0", "id": "289704895", "tags": "sanfrancisco bunnies video 2006 buns blogging rabbits awards digitalrebelxt chouchou videoblog videoblogging vloggies rabbitbites awardsshow vloggies2006"}, {"datetaken": "2006-11-04 19:11:37", "license": "1", "title": "Bunnies", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/120/289705029_b07a54ee44_o.jpg", "secret": "b07a54ee44", "media": "photo", "latitude": "0", "id": "289705029", "tags": "sanfrancisco bunnies video 2006 blogging rabbits awards digitalrebelxt videoblog videoblogging vloggies awardsshow vloggies2006"}, {"datetaken": "2006-11-04 19:18:14", "license": "1", "title": "Valerie Cunningham", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/119/289707366_d15c52e7fc_o.jpg", "secret": "d15c52e7fc", "media": "photo", "latitude": "0", "id": "289707366", "tags": "sanfrancisco video 2006 blogging awards digitalrebelxt videoblog videoblogging valeriecunningham vloggies awardsshow vloggies2006"}, {"datetaken": "2006-11-04 19:20:02", "license": "1", "title": "Andrew Michael Baron", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/106/289704748_6c4c2b0068_o.jpg", "secret": "6c4c2b0068", "media": "photo", "latitude": "0", "id": "289704748", "tags": "sanfrancisco video 2006 blogging awards digitalrebelxt videoblog videoblogging andrewmichaelbaron vloggies awardsshow nerdfight vloggies2006"}, {"datetaken": "2006-11-04 21:45:11", "license": "1", "title": "Vloggies", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/106/289665856_20d0945505_o.jpg", "secret": "20d0945505", "media": "photo", "latitude": "0", "id": "289665856", "tags": "sanfrancisco video 2006 intel blogging awards digitalrebelxt videoblogging c2d aliveinbaghdad vloggies awardsshow vloggies2006"}, {"datetaken": "2006-11-04 22:28:44", "license": "1", "title": "John Furrier & Dina Kaplan", "text": "", "album_id": "72157594362014751", "longitude": "0", "url_o": "https://farm1.staticflickr.com/108/289665908_4f3bee2f25_o.jpg", "secret": "4f3bee2f25", "media": "photo", "latitude": "0", "id": "289665908", "tags": "sanfrancisco video 2006 blogging awards digitalrebelxt videoblogging johnfurrier podtech bliptv dinakaplan vloggies awardsshow vloggies2006"}, {"datetaken": "2007-02-24 14:51:08", "license": "3", "title": "DVDs are fun to play with 1", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/414831593_ad538132c1_o.jpg", "secret": "6cb0f86ede", "media": "photo", "latitude": "0", "id": "414831593", "tags": "baby shower kris kristi"}, {"datetaken": "2007-02-24 14:51:18", "license": "3", "title": "DVDs are fun to play with 2", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/414831143_541261c3c3_o.jpg", "secret": "8ff6eb74da", "media": "photo", "latitude": "0", "id": "414831143", "tags": "baby shower kris kristi"}, {"datetaken": "2007-02-24 14:51:39", "license": "3", "title": "Tired hungry girl", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/414830787_1976dc4202_o.jpg", "secret": "809b2325cb", "media": "photo", "latitude": "0", "id": "414830787", "tags": "baby shower 10monthsold 10months kris kristi eleanor"}, {"datetaken": "2007-02-24 15:20:14", "license": "3", "title": "The expectant mommy", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/414830410_c23a81390e_o.jpg", "secret": "2ca263acfd", "media": "photo", "latitude": "0", "id": "414830410", "tags": "baby shower kris kristi"}, {"datetaken": "2007-02-24 15:20:45", "license": "3", "title": "Cow bag!!", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/414830063_4720010f3f_o.jpg", "secret": "1afc6d9525", "media": "photo", "latitude": "0", "id": "414830063", "tags": "baby shower kris kristi"}, {"datetaken": "2007-02-24 15:22:38", "license": "3", "title": "Shower guests", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/414829658_f8f359912e_o.jpg", "secret": "03421a0d24", "media": "photo", "latitude": "0", "id": "414829658", "tags": "baby shower kris kristi"}, {"datetaken": "2007-02-24 15:22:44", "license": "3", "title": "Showing off her standing skills", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/414829221_bd4534dddd_o.jpg", "secret": "3e86d92ab4", "media": "photo", "latitude": "0", "id": "414829221", "tags": "baby shower 10monthsold 10months kris kristi eleanor"}, {"datetaken": "2007-02-24 15:23:22", "license": "3", "title": "Pats for Daddy", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/414828909_4d16e21905_o.jpg", "secret": "7d4156f282", "media": "photo", "latitude": "0", "id": "414828909", "tags": "baby shower 10monthsold 10months kris kristi eleanor"}, {"datetaken": "2007-02-24 15:26:41", "license": "3", "title": "Presents!", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/414828530_d7f8caffc4_o.jpg", "secret": "b09958bb48", "media": "photo", "latitude": "0", "id": "414828530", "tags": "baby shower kris kristi"}, {"datetaken": "2007-02-24 15:28:37", "license": "3", "title": "Presents!", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/414828140_9f3edd31e3_o.jpg", "secret": "8f6c82982e", "media": "photo", "latitude": "0", "id": "414828140", "tags": "baby shower kris kristi"}, {"datetaken": "2007-02-24 15:29:52", "license": "3", "title": "Presents!", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/414827731_005da1d185_o.jpg", "secret": "cece466914", "media": "photo", "latitude": "0", "id": "414827731", "tags": "baby shower kris kristi"}, {"datetaken": "2007-02-24 15:30:28", "license": "3", "title": "Wrapped with love", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/169/414827218_7a0b440b9a_o.jpg", "secret": "40b647320a", "media": "photo", "latitude": "0", "id": "414827218", "tags": "baby shower kris kristi"}, {"datetaken": "2007-02-24 15:32:05", "license": "3", "title": "Presents!", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/414826833_ef98116f05_o.jpg", "secret": "8f27457c2e", "media": "photo", "latitude": "0", "id": "414826833", "tags": "baby shower kris kristi"}, {"datetaken": "2007-02-24 15:32:27", "license": "3", "title": "Presents!", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/414826511_2a4d071630_o.jpg", "secret": "8dd1a076ca", "media": "photo", "latitude": "0", "id": "414826511", "tags": "baby shower kris kristi"}, {"datetaken": "2007-02-24 15:33:55", "license": "3", "title": "Presents!", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/414826155_0ff56a5b99_o.jpg", "secret": "d53e0b6ba4", "media": "photo", "latitude": "0", "id": "414826155", "tags": "baby shower kris kristi"}, {"datetaken": "2007-02-24 15:35:36", "license": "3", "title": "Christening dress and sweet little booties", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/414825804_06c845ca9e_o.jpg", "secret": "2a9dcd33b8", "media": "photo", "latitude": "0", "id": "414825804", "tags": "baby shower kris kristi"}, {"datetaken": "2007-02-24 15:37:08", "license": "3", "title": "Kris's turn", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/414825454_aabb5c3a27_o.jpg", "secret": "bc38430ed9", "media": "photo", "latitude": "0", "id": "414825454", "tags": "baby shower kris kristi"}, {"datetaken": "2007-02-24 15:37:32", "license": "3", "title": "Does it fit?", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/414825107_74a9ad77da_o.jpg", "secret": "b3b8a05eef", "media": "photo", "latitude": "0", "id": "414825107", "tags": "baby shower kris kristi"}, {"datetaken": "2007-02-24 15:38:36", "license": "3", "title": "Presents!", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/414824770_bf3be70dc3_o.jpg", "secret": "e7a3cadb9a", "media": "photo", "latitude": "0", "id": "414824770", "tags": "baby shower kris kristi"}, {"datetaken": "2007-02-24 15:39:30", "license": "3", "title": "Ellie helps out", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/414824321_3635009a06_o.jpg", "secret": "a236f1830b", "media": "photo", "latitude": "0", "id": "414824321", "tags": "baby shower 10monthsold 10months kris kristi eleanor"}, {"datetaken": "2007-02-24 15:40:01", "license": "3", "title": "I'll open this one!", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/414823929_87127a0fb3_o.jpg", "secret": "8dc20d55d4", "media": "photo", "latitude": "0", "id": "414823929", "tags": "baby shower 10monthsold 10months kris kristi eleanor"}, {"datetaken": "2007-02-24 16:41:21", "license": "3", "title": "Ellie doesn't look too sure about this arrangement", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/414823538_883a713a95_o.jpg", "secret": "26986ca9b2", "media": "photo", "latitude": "0", "id": "414823538", "tags": "baby shower 10monthsold 10months kris kristi elliot eleanor"}, {"datetaken": "2007-02-24 16:43:26", "license": "3", "title": "Socializing", "text": "", "album_id": "72157594577527947", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/414823220_236d0fbe94_o.jpg", "secret": "cd5e3e7d69", "media": "photo", "latitude": "0", "id": "414823220", "tags": "baby shower kris kristi"}, {"datetaken": "2007-05-12 16:50:35", "license": "5", "title": "IMG_1248", "text": "", "album_id": "72157600219203602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/193/500045136_74167a05ec_o.jpg", "secret": "ec349f8c59", "media": "photo", "latitude": "0", "id": "500045136", "tags": "people baby shower blurry gente gens \u4eba"}, {"datetaken": "2007-05-13 10:50:42", "license": "5", "title": "the spread", "text": "", "album_id": "72157600219203602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/210/500044762_38051d32c0_o.jpg", "secret": "b411fd243e", "media": "photo", "latitude": "0", "id": "500044762", "tags": "baby shower blurry"}, {"datetaken": "2007-05-13 10:50:49", "license": "5", "title": "trout", "text": "", "album_id": "72157600219203602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/218/500091931_a3a6c7c2e9_o.jpg", "secret": "99374a205b", "media": "photo", "latitude": "0", "id": "500091931", "tags": "baby shower blurry"}, {"datetaken": "2007-05-13 10:50:57", "license": "5", "title": "IMG_1268", "text": "", "album_id": "72157600219203602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/208/500092009_8a44e422db_o.jpg", "secret": "ddc8fa0998", "media": "photo", "latitude": "0", "id": "500092009", "tags": "baby shower blurry"}, {"datetaken": "2007-05-13 10:51:43", "license": "5", "title": "tart", "text": "", "album_id": "72157600219203602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/230/500044988_a2a7f9f586_o.jpg", "secret": "49d14b9cd5", "media": "photo", "latitude": "0", "id": "500044988", "tags": "baby shower blurry"}, {"datetaken": "2007-05-13 10:51:58", "license": "5", "title": "IMG_1271", "text": "", "album_id": "72157600219203602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/231/500045048_ec9fbe571a_o.jpg", "secret": "5daef8a55c", "media": "photo", "latitude": "0", "id": "500045048", "tags": "baby shower blurry"}, {"datetaken": "2007-05-13 10:52:04", "license": "5", "title": "IMG_1272", "text": "", "album_id": "72157600219203602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/225/500045114_242e2d7415_o.jpg", "secret": "4580647112", "media": "photo", "latitude": "0", "id": "500045114", "tags": "baby shower blurry"}, {"datetaken": "2007-05-13 10:52:48", "license": "5", "title": "IMG_1274", "text": "", "album_id": "72157600219203602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/219/500092239_86d770c020_o.jpg", "secret": "ea42f71d37", "media": "photo", "latitude": "0", "id": "500092239", "tags": "people baby shower blurry gente gens \u4eba"}, {"datetaken": "2007-05-13 10:53:20", "license": "5", "title": "IMG_1277", "text": "", "album_id": "72157600219203602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/220/500092277_db19605c90_o.jpg", "secret": "15310b8b9e", "media": "photo", "latitude": "0", "id": "500092277", "tags": "baby shower blurry"}, {"datetaken": "2007-05-13 10:54:39", "license": "5", "title": "IMG_1280", "text": "", "album_id": "72157600219203602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/500045226_a890d85989_o.jpg", "secret": "57ad95ede1", "media": "photo", "latitude": "0", "id": "500045226", "tags": "people baby shower blurry gente gens \u4eba"}, {"datetaken": "2007-05-13 10:56:28", "license": "5", "title": "champagne toast", "text": "", "album_id": "72157600219203602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/212/500045250_3c19a18ecf_o.jpg", "secret": "ce85dd0ca2", "media": "photo", "latitude": "0", "id": "500045250", "tags": "people baby shower blurry gente gens \u4eba"}, {"datetaken": "2007-05-13 10:57:05", "license": "5", "title": "IMG_1287", "text": "", "album_id": "72157600219203602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/202/500045288_f432ec62fe_o.jpg", "secret": "58caf2f395", "media": "photo", "latitude": "0", "id": "500045288", "tags": "people baby shower blurry gente gens \u4eba"}, {"datetaken": "2007-05-13 11:00:06", "license": "5", "title": "IMG_1297", "text": "", "album_id": "72157600219203602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/208/500092483_3c594954ce_o.jpg", "secret": "380381dc20", "media": "photo", "latitude": "0", "id": "500092483", "tags": "people baby shower blurry gente gens \u4eba"}, {"datetaken": "2007-05-13 11:21:28", "license": "5", "title": "IMG_1300", "text": "", "album_id": "72157600219203602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/199/500045384_d5bea9daea_o.jpg", "secret": "def027261e", "media": "photo", "latitude": "0", "id": "500045384", "tags": "people baby shower blurry gente gens \u4eba"}, {"datetaken": "2007-05-12 15:20:52", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/190/500176969_b78feb4fba_o.jpg", "secret": "5e493480c7", "media": "photo", "latitude": "0", "id": "500176969", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 15:21:02", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/203/500177137_ea280db0eb_o.jpg", "secret": "8a5be3aba1", "media": "photo", "latitude": "0", "id": "500177137", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 15:22:43", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/214/500131996_3720e24424_o.jpg", "secret": "e97cc50c16", "media": "photo", "latitude": "0", "id": "500131996", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 15:23:52", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/206/500132456_f00b77b370_o.jpg", "secret": "171f2e555e", "media": "photo", "latitude": "0", "id": "500132456", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 15:25:33", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/500133000_b268f3887b_o.jpg", "secret": "4c706d1018", "media": "photo", "latitude": "0", "id": "500133000", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 15:30:39", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/500133558_cf149dbd72_o.jpg", "secret": "3b5db78916", "media": "photo", "latitude": "0", "id": "500133558", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 15:32:56", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/210/500179523_6fd987bdcb_o.jpg", "secret": "abff65266c", "media": "photo", "latitude": "0", "id": "500179523", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 15:54:37", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/231/500180139_1dbb87c906_o.jpg", "secret": "6aa73bd14e", "media": "photo", "latitude": "0", "id": "500180139", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 16:14:21", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/191/500135480_79721793f9_o.jpg", "secret": "94e6885fed", "media": "photo", "latitude": "0", "id": "500135480", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 16:16:19", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/500181195_87a5be4ebe_o.jpg", "secret": "1eab49914b", "media": "photo", "latitude": "0", "id": "500181195", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 16:24:47", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/500181903_08b97cbc9f_o.jpg", "secret": "94c72a3983", "media": "photo", "latitude": "0", "id": "500181903", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 16:26:04", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/211/500137506_4b52c985e3_o.jpg", "secret": "f14bd558dd", "media": "photo", "latitude": "0", "id": "500137506", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 16:26:20", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/226/500138178_d157c98f84_o.jpg", "secret": "7259af69b3", "media": "photo", "latitude": "0", "id": "500138178", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 16:26:28", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/230/500138738_3f04134d7e_o.jpg", "secret": "3f63bcb6fe", "media": "photo", "latitude": "0", "id": "500138738", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 16:26:47", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/227/500139362_13abaa2721_o.jpg", "secret": "0cc0cc5c95", "media": "photo", "latitude": "0", "id": "500139362", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 16:27:24", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/201/500185049_f739d2fa39_o.jpg", "secret": "faeaadcbd3", "media": "photo", "latitude": "0", "id": "500185049", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 16:28:16", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/220/500185775_fb4f3db975_o.jpg", "secret": "ed69275379", "media": "photo", "latitude": "0", "id": "500185775", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 16:28:54", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/189/500141418_bcc613124c_o.jpg", "secret": "318cf549a1", "media": "photo", "latitude": "0", "id": "500141418", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 16:56:24", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/500187021_5c2d800366_o.jpg", "secret": "24d4f98b39", "media": "photo", "latitude": "0", "id": "500187021", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 16:57:40", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/226/500187649_31f783c675_o.jpg", "secret": "6b260a7eb3", "media": "photo", "latitude": "0", "id": "500187649", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-05-12 17:29:06", "license": "1", "title": "The Grape Baby Shower", "text": "", "album_id": "72157600219430352", "longitude": "0", "url_o": "https://farm1.staticflickr.com/229/500188241_13dcd8896d_o.jpg", "secret": "bbc0407e10", "media": "photo", "latitude": "0", "id": "500188241", "tags": "friends baby shower grape 2007"}, {"datetaken": "2007-08-11 12:02:34", "license": "3", "title": "on the fly", "text": "", "album_id": "72157601477183170", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1112/1084144368_e52d5711ee_o.jpg", "secret": "5c362caba7", "media": "photo", "latitude": "0", "id": "1084144368", "tags": "chicago beach skyline moblog skulls glasses rachel sand skyscrapers bikini volleyball bandana prada cyclone northavebeach evp"}, {"datetaken": "2007-08-11 12:03:37", "license": "3", "title": "skinhead", "text": "", "album_id": "72157601477183170", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1368/1131502491_5f2c196436_o.jpg", "secret": "7d98936097", "media": "photo", "latitude": "0", "id": "1131502491", "tags": "summer chicago adam skulls glasses rachel sand husband bikini wife volleyball bandana prada northavebeach evp"}, {"datetaken": "2007-08-11 12:19:35", "license": "3", "title": "\"don't take that!\"", "text": "", "album_id": "72157601477183170", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1399/1132334306_5ed831fb3f_o.jpg", "secret": "28e4950006", "media": "photo", "latitude": "0", "id": "1132334306", "tags": "chicago adam beach sunglasses subway husband sandwich volleyball northavebeach evp"}, {"datetaken": "2007-08-11 12:19:41", "license": "3", "title": "what's over there?", "text": "", "album_id": "72157601477183170", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1174/1131497811_a1cb6deaa0_o.jpg", "secret": "d6c168df28", "media": "photo", "latitude": "0", "id": "1131497811", "tags": "chicago beach kara sand chairs hannah rob bikini volleyball northavebeach evp"}, {"datetaken": "2007-08-11 16:10:03", "license": "3", "title": "so happy togeather!", "text": "", "album_id": "72157601477183170", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1198/1085361349_b544c95618_o.jpg", "secret": "06892f0dbb", "media": "photo", "latitude": "0", "id": "1085361349", "tags": "sign bar moblog typo misspelled togeather"}, {"datetaken": "2007-08-11 16:28:30", "license": "3", "title": "pool shark", "text": "", "album_id": "72157601477183170", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1407/1132356776_fdbd3d9c50_o.jpg", "secret": "f1d783b696", "media": "photo", "latitude": "0", "id": "1132356776", "tags": "adam sunglasses bar husband polo babyshower poolcue"}, {"datetaken": "2007-08-11 16:29:47", "license": "3", "title": "pool shark again", "text": "", "album_id": "72157601477183170", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1415/1132346396_0818a16ed9_o.jpg", "secret": "6edb5b9a89", "media": "photo", "latitude": "0", "id": "1132346396", "tags": "adam sunglasses bar husband polo babyshower poolcue"}, {"datetaken": "2007-08-11 16:30:03", "license": "3", "title": "pool shark again again", "text": "", "album_id": "72157601477183170", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1392/1132350284_8162acb5c3_o.jpg", "secret": "6eda344978", "media": "photo", "latitude": "0", "id": "1132350284", "tags": "adam sunglasses bar husband polo babyshower poolcue"}, {"datetaken": "2007-08-11 16:31:10", "license": "3", "title": "223_Reject", "text": "", "album_id": "72157601477183170", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1205/1132353718_cb25b6cb76_o.jpg", "secret": "174f43ab55", "media": "photo", "latitude": "0", "id": "1132353718", "tags": "adam sunglasses bar rachel husband wife polo cyclone babyshower poolcue"}, {"datetaken": "2007-08-11 17:46:20", "license": "3", "title": "weird!", "text": "", "album_id": "72157601477183170", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1252/1086055653_c3d51d4eec_o.jpg", "secret": "6e5b9f5ad3", "media": "photo", "latitude": "0", "id": "1086055653", "tags": "moblog book hand nail nailpolish opi jodipicoult imnotreallyawaitress nineteenminutes"}, {"datetaken": "2007-08-11 22:00:35", "license": "3", "title": "Generation Hex", "text": "", "album_id": "72157601477183170", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1288/1088831264_b0a58f6ec8_o.jpg", "secret": "566b9bf921", "media": "photo", "latitude": "0", "id": "1088831264", "tags": "bar moblog band generationhex"}, {"datetaken": "2007-08-11 22:59:09", "license": "3", "title": "token mirror shot", "text": "", "album_id": "72157601477183170", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1188/1089251066_a44633d6f7_o.jpg", "secret": "2d4f26ef27", "media": "photo", "latitude": "0", "id": "1089251066", "tags": "reflection moblog glasses mirror rachel boobs cellphone curls brunette cleavage prada cyclone journeypendant"}, {"datetaken": "2007-08-11 23:22:19", "license": "3", "title": "223", "text": "", "album_id": "72157601477183170", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1101/1088608953_cadd985b68_o.jpg", "secret": "ca4e81e9d6", "media": "photo", "latitude": "0", "id": "1088608953", "tags": "silly cute drunk moblog bathroom rachel curls stall ridiculous brunette prada shameless cyclone 2007 365days"}, {"datetaken": "2007-08-11 23:46:15", "license": "3", "title": "anybody in there?", "text": "", "album_id": "72157601477183170", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1310/1132354702_8b1f6daefd_o.jpg", "secret": "1bd4d0f202", "media": "photo", "latitude": "0", "id": "1132354702", "tags": "ass rachel butt khaki heels calf cyclone trespassing 2007 wideopen emptystore"}, {"datetaken": "2012-04-04 09:47:28", "license": "1", "title": "Snip Snip", "text": "", "album_id": "72157629834766341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7255/6939785684_b164a1849b_o.jpg", "secret": "eeff63f799", "media": "photo", "latitude": "0", "id": "6939785684", "tags": "baby babyshower yachtclub daviddangeralexanderwannan"}, {"datetaken": "2012-04-04 09:48:53", "license": "1", "title": "David's Baby Shower", "text": "", "album_id": "72157629834766341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7273/6939790028_da32055490_o.jpg", "secret": "8b072c090d", "media": "photo", "latitude": "0", "id": "6939790028", "tags": "baby babyshower yachtclub daviddangeralexanderwannan"}, {"datetaken": "2012-04-04 13:08:23", "license": "1", "title": "David's Baby Shower", "text": "", "album_id": "72157629834766341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7066/7085866137_7d75e2ccdd_o.jpg", "secret": "4889276aec", "media": "photo", "latitude": "0", "id": "7085866137", "tags": "baby babyshower yachtclub daviddangeralexanderwannan"}, {"datetaken": "2012-04-04 13:18:21", "license": "1", "title": "David's Baby Shower", "text": "", "album_id": "72157629834766341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7190/6939795074_8ce33e4c6f_o.jpg", "secret": "a651bb123d", "media": "photo", "latitude": "0", "id": "6939795074", "tags": "baby babyshower yachtclub daviddangeralexanderwannan"}, {"datetaken": "2012-04-04 13:19:13", "license": "1", "title": "David's Baby Shower", "text": "", "album_id": "72157629834766341", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5441/6939796990_6143299933_o.jpg", "secret": "7e0c7e190c", "media": "photo", "latitude": "0", "id": "6939796990", "tags": "baby babyshower yachtclub daviddangeralexanderwannan"}, {"datetaken": "2012-04-04 13:25:52", "license": "1", "title": "David's Baby Shower", "text": "", "album_id": "72157629834766341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7046/7085893661_cdc99e2868_o.jpg", "secret": "358b684950", "media": "photo", "latitude": "0", "id": "7085893661", "tags": "baby babyshower yachtclub daviddangeralexanderwannan"}, {"datetaken": "2012-04-04 13:26:07", "license": "1", "title": "David's Baby Shower", "text": "", "album_id": "72157629834766341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7072/6939801966_94fa15dd2b_o.jpg", "secret": "752a5a70c7", "media": "photo", "latitude": "0", "id": "6939801966", "tags": "baby babyshower yachtclub daviddangeralexanderwannan"}, {"datetaken": "2012-04-04 13:26:20", "license": "1", "title": "David's Baby Shower", "text": "", "album_id": "72157629834766341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7128/7085877355_79d63274e4_o.jpg", "secret": "b2324070ef", "media": "photo", "latitude": "0", "id": "7085877355", "tags": "baby babyshower yachtclub daviddangeralexanderwannan"}, {"datetaken": "2012-04-04 13:29:48", "license": "1", "title": "David's Baby Shower", "text": "", "album_id": "72157629834766341", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5192/7085880269_68113a5339_o.jpg", "secret": "778fb8e237", "media": "photo", "latitude": "0", "id": "7085880269", "tags": "baby babyshower yachtclub daviddangeralexanderwannan"}, {"datetaken": "2012-04-04 13:32:41", "license": "1", "title": "David's Baby Shower", "text": "", "album_id": "72157629834766341", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7272/6939809904_81ecf31939_o.jpg", "secret": "06de583b28", "media": "photo", "latitude": "0", "id": "6939809904", "tags": "baby babyshower yachtclub daviddangeralexanderwannan"}, {"datetaken": "2014-01-10 16:58:49", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5536/11964674534_940f9a6274_o.jpg", "secret": "b51704427b", "media": "photo", "latitude": "0", "id": "11964674534", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:00:36", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5490/11964239745_c8f46f91ae_o.jpg", "secret": "63bd497893", "media": "photo", "latitude": "0", "id": "11964239745", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:00:42", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3688/11964533133_9c5b59d71f_o.jpg", "secret": "b9ffed1fd2", "media": "photo", "latitude": "0", "id": "11964533133", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:01:08", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3747/11965076356_da123e785d_o.jpg", "secret": "4b42beef6a", "media": "photo", "latitude": "0", "id": "11965076356", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:01:19", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2816/11964673874_9a4ecda470_o.jpg", "secret": "766358dd80", "media": "photo", "latitude": "0", "id": "11964673874", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:01:52", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3678/11965076246_5961e30a48_o.jpg", "secret": "65e92a24eb", "media": "photo", "latitude": "0", "id": "11965076246", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:02:09", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7326/11964532963_be3c0977e9_o.jpg", "secret": "55d1af35a0", "media": "photo", "latitude": "0", "id": "11964532963", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:02:16", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5546/11964673704_3312ae24db_o.jpg", "secret": "bfbd0c546c", "media": "photo", "latitude": "0", "id": "11964673704", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:02:27", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5515/11964673134_26f5350379_o.jpg", "secret": "546207132f", "media": "photo", "latitude": "0", "id": "11964673134", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:02:47", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3778/11964238775_ed1b40c984_o.jpg", "secret": "4a09b1c798", "media": "photo", "latitude": "0", "id": "11964238775", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:03:05", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7291/11965074956_eb6084ee92_o.jpg", "secret": "3874f518f2", "media": "photo", "latitude": "0", "id": "11965074956", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:03:10", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3690/11964531833_66a4329a0b_o.jpg", "secret": "f0842e649c", "media": "photo", "latitude": "0", "id": "11964531833", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:05:51", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2877/11965074856_a5a094162d_o.jpg", "secret": "1d31cd0f6d", "media": "photo", "latitude": "0", "id": "11965074856", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:06:22", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3735/11964531313_2a49a31154_o.jpg", "secret": "8c8129b392", "media": "photo", "latitude": "0", "id": "11964531313", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:06:51", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7423/11964237275_01f931cbc0_o.jpg", "secret": "e35309c583", "media": "photo", "latitude": "0", "id": "11964237275", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:07:54", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5530/11964671514_f60e3df5b0_o.jpg", "secret": "1fe0b70c32", "media": "photo", "latitude": "0", "id": "11964671514", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:07:58", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3818/11964236625_0fc6d3d4f4_o.jpg", "secret": "c5a1544a94", "media": "photo", "latitude": "0", "id": "11964236625", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:08:41", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7339/11965072836_f0a763645b_o.jpg", "secret": "87c811aa45", "media": "photo", "latitude": "0", "id": "11965072836", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:09:34", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5507/11964529503_3a0fb47ca0_o.jpg", "secret": "05d228dac8", "media": "photo", "latitude": "0", "id": "11964529503", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:10:25", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3707/11964236015_5e2426717e_o.jpg", "secret": "4a6dbd893c", "media": "photo", "latitude": "0", "id": "11964236015", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:10:48", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2887/11964669934_0f7f4c521d_o.jpg", "secret": "0a1af67f8f", "media": "photo", "latitude": "0", "id": "11964669934", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:10:57", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3830/11964529193_ddb4767eaf_o.jpg", "secret": "2dcee996f3", "media": "photo", "latitude": "0", "id": "11964529193", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:11:06", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2854/11965071696_f37aec9a04_o.jpg", "secret": "9555a758c8", "media": "photo", "latitude": "0", "id": "11965071696", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:11:19", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7450/11965071286_e613cb1f6c_o.jpg", "secret": "91848db993", "media": "photo", "latitude": "0", "id": "11965071286", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:12:04", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3673/11964528183_9464b84f83_o.jpg", "secret": "0ff1d2245d", "media": "photo", "latitude": "0", "id": "11964528183", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:12:22", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3823/11964234645_6db3958b48_o.jpg", "secret": "88b7d5520a", "media": "photo", "latitude": "0", "id": "11964234645", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:13:08", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2836/11965070706_fc56c1d819_o.jpg", "secret": "422ce125d9", "media": "photo", "latitude": "0", "id": "11965070706", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:13:29", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3750/11964668154_d1aa3873cf_o.jpg", "secret": "0fca02801e", "media": "photo", "latitude": "0", "id": "11964668154", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:13:57", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5520/11965069936_048d15ace6_o.jpg", "secret": "12a15a1c49", "media": "photo", "latitude": "0", "id": "11965069936", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:14:42", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2843/11964527123_817ac0a124_o.jpg", "secret": "9d5e45b11e", "media": "photo", "latitude": "0", "id": "11964527123", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:15:17", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2855/11964667854_3a4221ab9d_o.jpg", "secret": "0064841c38", "media": "photo", "latitude": "0", "id": "11964667854", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:15:26", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3745/11965069526_177b9ff414_o.jpg", "secret": "c00d1db9f7", "media": "photo", "latitude": "0", "id": "11965069526", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:15:31", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3772/11964526363_722a2c35a7_o.jpg", "secret": "d0bae60aca", "media": "photo", "latitude": "0", "id": "11964526363", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:15:56", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7362/11964526333_07cb940571_o.jpg", "secret": "ebf2875e6f", "media": "photo", "latitude": "0", "id": "11964526333", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:16:07", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2884/11964525943_5b47463913_o.jpg", "secret": "0fd7e49c0d", "media": "photo", "latitude": "0", "id": "11964525943", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:16:26", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7360/11964666484_5f76c9ac0f_o.jpg", "secret": "836dc35690", "media": "photo", "latitude": "0", "id": "11964666484", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:16:51", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2871/11964525213_be7e5276fa_o.jpg", "secret": "d0228bae35", "media": "photo", "latitude": "0", "id": "11964525213", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:17:16", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3687/11964666004_fcf758612e_o.jpg", "secret": "1d8611e6ec", "media": "photo", "latitude": "0", "id": "11964666004", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:17:45", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5515/11964524733_37d849b640_o.jpg", "secret": "afd4ac7f7a", "media": "photo", "latitude": "0", "id": "11964524733", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:18:08", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7320/11964231055_c53ba3303f_o.jpg", "secret": "80e4d73443", "media": "photo", "latitude": "0", "id": "11964231055", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:18:33", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2859/11964524263_9bb62e2310_o.jpg", "secret": "4819341364", "media": "photo", "latitude": "0", "id": "11964524263", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:18:57", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3767/11964230405_1c8de56c19_o.jpg", "secret": "e5c169b26c", "media": "photo", "latitude": "0", "id": "11964230405", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:19:06", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2873/11964523253_2a93e1da34_o.jpg", "secret": "9d7b7f6914", "media": "photo", "latitude": "0", "id": "11964523253", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:19:18", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3767/11965066016_6c038944fe_o.jpg", "secret": "f0e6b82715", "media": "photo", "latitude": "0", "id": "11965066016", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:19:29", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2805/11964663614_b42d3f3a3e_o.jpg", "secret": "c2d792f219", "media": "photo", "latitude": "0", "id": "11964663614", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:21:28", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2806/11964228895_77a18878f6_o.jpg", "secret": "35a7bf75ed", "media": "photo", "latitude": "0", "id": "11964228895", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:21:36", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3668/11964663144_c523002a9e_o.jpg", "secret": "2c982ffd2e", "media": "photo", "latitude": "0", "id": "11964663144", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:23:08", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3759/11964521703_3eac4f4c11_o.jpg", "secret": "2c12981cba", "media": "photo", "latitude": "0", "id": "11964521703", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:24:17", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3732/11965064096_9b43b764b5_o.jpg", "secret": "15a1f77c4f", "media": "photo", "latitude": "0", "id": "11965064096", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2014-01-10 17:24:56", "license": "3", "title": "Wedding Open House, January 2014", "text": "", "album_id": "72157639797726335", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3676/11965063696_e752d20ecd_o.jpg", "secret": "1bc259c3f7", "media": "photo", "latitude": "0", "id": "11965063696", "tags": "photography commerical weddingphotographer weddingphotography advertisingphotography eventsphotographer philadelphiaphotographer barmitzvahphotography mainlinephotographer annmariecasey"}, {"datetaken": "2008-01-11 09:25:46", "license": "4", "title": "Cleveland Museum of Art", "text": "", "album_id": "72157603692536161", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2384/2185557320_67b1e65b4c_o.jpg", "secret": "9f23256fa5", "media": "photo", "latitude": "0", "id": "2185557320", "tags": "ohio sky art museum cleveland gray january 2008 bleah revjim5000"}, {"datetaken": "2008-01-11 09:25:53", "license": "4", "title": "Happy happy joy joy", "text": "", "album_id": "72157603692536161", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2069/2184771379_81f98132ed_o.jpg", "secret": "037099ee00", "media": "photo", "latitude": "0", "id": "2184771379", "tags": "santa ohio italy restaurant little cleveland january mama pizza pizzeria 2008 mayfield revjim5000"}, {"datetaken": "2008-01-11 09:25:59", "license": "4", "title": "Mama Santa's in Little Italy", "text": "", "album_id": "72157603692536161", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2115/2184771559_876711795e_o.jpg", "secret": "3413a524bd", "media": "photo", "latitude": "0", "id": "2184771559", "tags": "santa ohio italy restaurant little cleveland january mama pizza pizzeria 2008 mayfield revjim5000"}, {"datetaken": "2008-01-11 09:26:07", "license": "4", "title": "50 Year Old Party Scene", "text": "", "album_id": "72157603692536161", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2159/2184771737_ec9c3ab32f_o.jpg", "secret": "a1d238202c", "media": "photo", "latitude": "0", "id": "2184771737", "tags": "birthday ohio party january aunt surprise 2008 reggie reynolds berea revjim5000"}, {"datetaken": "2008-01-11 09:26:13", "license": "4", "title": "Connor and Jeff", "text": "", "album_id": "72157603692536161", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2186/2185557956_1d6cea4edb_o.jpg", "secret": "85d2179b4c", "media": "photo", "latitude": "0", "id": "2185557956", "tags": "birthday ohio party jeff january connor aunt surprise 2008 reggie reynolds berea revjim5000"}, {"datetaken": "2008-01-11 09:26:20", "license": "4", "title": "The crowd, early on", "text": "", "album_id": "72157603692536161", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2013/2184772091_ea6530f2c3_o.jpg", "secret": "869dd1880d", "media": "photo", "latitude": "0", "id": "2184772091", "tags": "birthday ohio party january aunt surprise 2008 reggie reynolds berea revjim5000"}, {"datetaken": "2008-01-11 09:26:28", "license": "4", "title": "The crowd, later on", "text": "", "album_id": "72157603692536161", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2301/2184772253_a249debc38_o.jpg", "secret": "47ba0cd8e2", "media": "photo", "latitude": "0", "id": "2184772253", "tags": "birthday ohio party january aunt surprise 2008 reggie reynolds berea revjim5000"}, {"datetaken": "2008-01-11 09:26:36", "license": "4", "title": "The Dad and Judy", "text": "", "album_id": "72157603692536161", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2311/2184772413_b6897f2d1d_o.jpg", "secret": "fd4426dc32", "media": "photo", "latitude": "0", "id": "2184772413", "tags": "birthday ohio party january aunt surprise 2008 reggie reynolds berea revjim5000"}, {"datetaken": "2008-01-11 09:26:43", "license": "4", "title": "toddler(soda+ice cream cake)=AWESOME", "text": "", "album_id": "72157603692536161", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2250/2185558698_430f80e3ea_o.jpg", "secret": "4e6d753d7e", "media": "photo", "latitude": "0", "id": "2185558698", "tags": "birthday ohio party january connor aunt surprise 2008 reggie reynolds berea revjim5000"}, {"datetaken": "2008-01-11 09:26:50", "license": "4", "title": "Me, Caryn, and Jason", "text": "", "album_id": "72157603692536161", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2083/2185558860_96ec942e6d_o.jpg", "secret": "e9a1fcae33", "media": "photo", "latitude": "0", "id": "2185558860", "tags": "birthday ohio party jason january aunt surprise 2008 reggie reynolds caryn week5 berea revjim5000 kozey 30sundays"}, {"datetaken": "2008-01-11 09:26:55", "license": "4", "title": "Kelly and Isabelle", "text": "", "album_id": "72157603692536161", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2269/2185558994_44fa572d81_o.jpg", "secret": "7b9ba6852c", "media": "photo", "latitude": "0", "id": "2185558994", "tags": "birthday ohio party january aunt surprise isabelle kelli 2008 reggie reynolds berea revjim5000"}, {"datetaken": "2008-01-11 09:27:02", "license": "4", "title": "Q. Is soda pop healthy for a 3 year old?", "text": "", "album_id": "72157603692536161", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2383/2185559142_5d220811b3_o.jpg", "secret": "24a9294909", "media": "photo", "latitude": "0", "id": "2185559142", "tags": "birthday ohio party january connor aunt surprise soda 2008 reggie straws reynolds berea revjim5000"}, {"datetaken": "2008-01-11 09:27:08", "license": "4", "title": "Ice cream cake volcano", "text": "", "album_id": "72157603692536161", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2231/2184773131_59c96eaebc_o.jpg", "secret": "ff2762914a", "media": "photo", "latitude": "0", "id": "2184773131", "tags": "birthday ohio party ice jeff cake january cream connor aunt surprise 2008 reggie reynolds berea revjim5000"}, {"datetaken": "2008-01-11 09:27:14", "license": "4", "title": "Connor \"sharing\" Jeff's ice cream cake", "text": "", "album_id": "72157603692536161", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2260/2185559408_b0a482b382_o.jpg", "secret": "591f18e2d6", "media": "photo", "latitude": "0", "id": "2185559408", "tags": "birthday ohio party ice jeff cake january cream connor aunt surprise 2008 reggie reynolds berea revjim5000"}, {"datetaken": "2008-01-11 09:32:24", "license": "4", "title": "SURPRISE!!!", "text": "", "album_id": "72157603692536161", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2319/2185567002_755cd8d0bd_o.jpg", "secret": "2352204cbb", "media": "photo", "latitude": "0", "id": "2185567002", "tags": "birthday ohio party january aunt surprise 2008 reggie reynolds berea revjim5000"}, {"datetaken": "2008-01-11 09:32:32", "license": "4", "title": "The Loot", "text": "", "album_id": "72157603692536161", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2050/2184781037_a305938453_o.jpg", "secret": "280780f823", "media": "photo", "latitude": "0", "id": "2184781037", "tags": "birthday ohio party january aunt surprise 2008 reggie reynolds berea revjim5000"}, {"datetaken": "2008-01-11 09:32:38", "license": "4", "title": "Bonnie Erickson", "text": "", "album_id": "72157603692536161", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2077/2185567392_9c0632f6eb_o.jpg", "secret": "703a6bb91f", "media": "photo", "latitude": "0", "id": "2185567392", "tags": "ohio art museum cleveland muppets january jim bonnie lecture 2008 erickson henson revjim5000"}, {"datetaken": "2008-04-12 16:57:39", "license": "1", "title": "MOV04919", "text": "", "album_id": "72157604508466643", "longitude": "-121.097359", "url_o": "https://farm4.staticflickr.com/3278/2409037596_507c1e8701_o.png", "secret": "5f2f430081", "media": "video", "latitude": "47.738140", "id": "2409037596", "tags": "wa"}, {"datetaken": "2008-04-12 17:29:29", "license": "1", "title": "extreme hula-hoop skiing", "text": "", "album_id": "72157604508466643", "longitude": "-121.097359", "url_o": "https://farm4.staticflickr.com/3054/2409095176_66a25cf5b4_o.png", "secret": "9a1f2e8cab", "media": "video", "latitude": "47.738140", "id": "2409095176", "tags": "ski video skiing hulahoops wa hulahooping stevenspass"}, {"datetaken": "2008-04-13 09:16:17", "license": "1", "title": "DSC04906", "text": "", "album_id": "72157604508466643", "longitude": "-121.097359", "url_o": "https://farm3.staticflickr.com/2249/2408189765_28d4ce75fe_o.jpg", "secret": "a85b3caed9", "media": "photo", "latitude": "47.738140", "id": "2408189765", "tags": "wa"}, {"datetaken": "2008-04-13 09:39:47", "license": "1", "title": "DSC04907", "text": "", "album_id": "72157604508466643", "longitude": "-121.097359", "url_o": "https://farm3.staticflickr.com/2268/2408189997_64dfcc3368_o.jpg", "secret": "04192dc9be", "media": "photo", "latitude": "47.738140", "id": "2408189997", "tags": "wa"}, {"datetaken": "2008-04-13 09:40:03", "license": "1", "title": "DSC04908", "text": "", "album_id": "72157604508466643", "longitude": "-121.097359", "url_o": "https://farm4.staticflickr.com/3156/2409022122_f2a5379687_o.jpg", "secret": "6fd566970e", "media": "photo", "latitude": "47.738140", "id": "2409022122", "tags": "wa"}, {"datetaken": "2008-04-13 09:40:08", "license": "1", "title": "DSC04909", "text": "", "album_id": "72157604508466643", "longitude": "-121.097359", "url_o": "https://farm3.staticflickr.com/2032/2408190605_67fb90f239_o.jpg", "secret": "4c6f2e655e", "media": "photo", "latitude": "47.738140", "id": "2408190605", "tags": "wa"}, {"datetaken": "2008-04-13 09:49:50", "license": "1", "title": "DSC04910", "text": "", "album_id": "72157604508466643", "longitude": "-121.097359", "url_o": "https://farm4.staticflickr.com/3278/2409022866_273fcdefec_o.jpg", "secret": "d505816553", "media": "photo", "latitude": "47.738140", "id": "2409022866", "tags": "wa"}, {"datetaken": "2008-04-13 10:19:29", "license": "1", "title": "DSC04911", "text": "", "album_id": "72157604508466643", "longitude": "-121.097359", "url_o": "https://farm3.staticflickr.com/2149/2409023744_5dc3c93a1b_o.jpg", "secret": "f3a9dd7458", "media": "photo", "latitude": "47.738140", "id": "2409023744", "tags": "wa"}, {"datetaken": "2008-04-13 10:19:39", "license": "1", "title": "DSC04912", "text": "", "album_id": "72157604508466643", "longitude": "-121.097359", "url_o": "https://farm4.staticflickr.com/3086/2408192853_600fb59c43_o.jpg", "secret": "043c273c5e", "media": "photo", "latitude": "47.738140", "id": "2408192853", "tags": "wa"}, {"datetaken": "2008-04-13 10:20:34", "license": "1", "title": "DSC04914", "text": "", "album_id": "72157604508466643", "longitude": "-121.097359", "url_o": "https://farm4.staticflickr.com/3148/2409026818_64afffb800_o.jpg", "secret": "384b70ba53", "media": "photo", "latitude": "47.738140", "id": "2409026818", "tags": "wa"}, {"datetaken": "2008-04-13 10:31:24", "license": "1", "title": "DSC04915", "text": "", "album_id": "72157604508466643", "longitude": "-121.097359", "url_o": "https://farm4.staticflickr.com/3230/2408195893_1243c1681d_o.jpg", "secret": "570eb58f28", "media": "photo", "latitude": "47.738140", "id": "2408195893", "tags": "wa"}, {"datetaken": "2008-04-13 10:42:39", "license": "1", "title": "DSC04916", "text": "", "album_id": "72157604508466643", "longitude": "-121.097359", "url_o": "https://farm4.staticflickr.com/3102/2409028778_314d2d779f_o.jpg", "secret": "04181d2161", "media": "photo", "latitude": "47.738140", "id": "2409028778", "tags": "wa"}, {"datetaken": "2008-04-13 10:42:52", "license": "1", "title": "DSC04917", "text": "", "album_id": "72157604508466643", "longitude": "-121.097359", "url_o": "https://farm3.staticflickr.com/2317/2409029600_413043f74f_o.jpg", "secret": "0e80a3e311", "media": "photo", "latitude": "47.738140", "id": "2409029600", "tags": "wa"}, {"datetaken": "2008-04-13 11:49:41", "license": "1", "title": "DSC04921", "text": "", "album_id": "72157604508466643", "longitude": "-121.097359", "url_o": "https://farm3.staticflickr.com/2180/2408214539_d2bbc0eb32_o.jpg", "secret": "b41ba9e458", "media": "photo", "latitude": "47.738140", "id": "2408214539", "tags": "wa"}, {"datetaken": "2008-04-13 11:50:07", "license": "1", "title": "DSC04922", "text": "", "album_id": "72157604508466643", "longitude": "-121.097359", "url_o": "https://farm4.staticflickr.com/3013/2409046980_9b6542fcbc_o.jpg", "secret": "e764277fbd", "media": "photo", "latitude": "47.738140", "id": "2409046980", "tags": "wa"}, {"datetaken": "2008-04-13 13:29:49", "license": "1", "title": "Sky River Mead", "text": "", "album_id": "72157604508466643", "longitude": "-121.796218", "url_o": "https://farm4.staticflickr.com/3287/2408216337_836179febb_o.jpg", "secret": "2300e71a77", "media": "photo", "latitude": "47.864074", "id": "2408216337", "tags": "wa mead skyrivermeadery"}, {"datetaken": "2008-04-13 13:34:34", "license": "1", "title": "nead for mead", "text": "", "album_id": "72157604508466643", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2251/2409049050_92443703b2_o.jpg", "secret": "360954da89", "media": "photo", "latitude": "0", "id": "2409049050", "tags": "wa mead skyrivermeadery"}, {"datetaken": "2008-04-13 13:36:04", "license": "1", "title": "honey products", "text": "", "album_id": "72157604508466643", "longitude": "-121.796218", "url_o": "https://farm3.staticflickr.com/2245/2409050134_f6cb09a3dc_o.jpg", "secret": "8f903d3986", "media": "photo", "latitude": "47.864074", "id": "2409050134", "tags": "wa skyrivermeadery"}, {"datetaken": "2008-04-13 13:38:26", "license": "1", "title": "sweet nectar", "text": "", "album_id": "72157604508466643", "longitude": "-121.796218", "url_o": "https://farm4.staticflickr.com/3277/2409051104_66137f6a86_o.jpg", "secret": "e70c8e6107", "media": "photo", "latitude": "47.864074", "id": "2409051104", "tags": "wa mead skyrivermeadery"}, {"datetaken": "2008-04-13 13:42:31", "license": "1", "title": "Ancient drink of Kings and Poets", "text": "", "album_id": "72157604508466643", "longitude": "-121.796218", "url_o": "https://farm3.staticflickr.com/2198/2408220977_51b846e63e_o.jpg", "secret": "0cb601c0c2", "media": "photo", "latitude": "47.864074", "id": "2408220977", "tags": "wa mead skyrivermeadery"}, {"datetaken": "2008-04-13 14:01:47", "license": "1", "title": "old school", "text": "", "album_id": "72157604508466643", "longitude": "-121.927047", "url_o": "https://farm3.staticflickr.com/2038/2409054690_93f667cf46_o.jpg", "secret": "ecb2880c7d", "media": "photo", "latitude": "47.855827", "id": "2409054690", "tags": "bbq wa oldschoolbbq"}, {"datetaken": "2008-04-13 14:01:56", "license": "1", "title": "the exchange", "text": "", "album_id": "72157604508466643", "longitude": "-121.927047", "url_o": "https://farm3.staticflickr.com/2242/2408223659_800084ac36_o.jpg", "secret": "47c870bf0c", "media": "photo", "latitude": "47.855827", "id": "2408223659", "tags": "bbq wa oldschoolbbq"}, {"datetaken": "2008-04-13 14:02:12", "license": "1", "title": "ride the BBQ Bus", "text": "", "album_id": "72157604508466643", "longitude": "-121.927047", "url_o": "https://farm3.staticflickr.com/2305/2409056658_be480e9601_o.jpg", "secret": "69fee0b229", "media": "photo", "latitude": "47.855827", "id": "2409056658", "tags": "bbq wa oldschoolbbq"}, {"datetaken": "2008-04-13 14:02:30", "license": "1", "title": "Old School Bus", "text": "", "album_id": "72157604508466643", "longitude": "-121.927047", "url_o": "https://farm3.staticflickr.com/2299/2408225565_22cab57ce7_o.jpg", "secret": "62ddf9c2db", "media": "photo", "latitude": "47.855827", "id": "2408225565", "tags": "bbq wa oldschoolbbq"}, {"datetaken": "2008-04-13 14:05:08", "license": "1", "title": "the BBQ Sampler!", "text": "", "album_id": "72157604508466643", "longitude": "-121.927047", "url_o": "https://farm4.staticflickr.com/3057/2408226307_9086e09af2_o.jpg", "secret": "449bd05b5a", "media": "photo", "latitude": "47.855827", "id": "2408226307", "tags": "bbq wa oldschoolbbq"}, {"datetaken": "2008-04-13 14:29:45", "license": "1", "title": "dining bus", "text": "", "album_id": "72157604508466643", "longitude": "-121.927047", "url_o": "https://farm4.staticflickr.com/3283/2408227277_7aafde3d9d_o.jpg", "secret": "ef639f262a", "media": "photo", "latitude": "47.855827", "id": "2408227277", "tags": "bbq wa oldschoolbbq"}, {"datetaken": "2008-04-13 14:30:04", "license": "1", "title": "Texas BBQ", "text": "", "album_id": "72157604508466643", "longitude": "-121.927047", "url_o": "https://farm3.staticflickr.com/2198/2408228187_28fa581df1_o.jpg", "secret": "72f3713c09", "media": "photo", "latitude": "47.855827", "id": "2408228187", "tags": "bbq wa oldschoolbbq"}, {"datetaken": "2008-04-13 14:33:50", "license": "1", "title": "Reptile Zoo", "text": "", "album_id": "72157604508466643", "longitude": "-121.927047", "url_o": "https://farm4.staticflickr.com/3064/2409062032_b0f7ffdf39_o.jpg", "secret": "71c0fbc850", "media": "photo", "latitude": "47.855827", "id": "2409062032", "tags": "wa reptilezoo"}, {"datetaken": "2008-04-13 14:34:11", "license": "1", "title": "Birthdays and bar-mitzvah's", "text": "", "album_id": "72157604508466643", "longitude": "-121.927047", "url_o": "https://farm3.staticflickr.com/2298/2409062886_9646cd569c_o.jpg", "secret": "4f14ceac57", "media": "photo", "latitude": "47.855827", "id": "2409062886", "tags": "wa reptilezoo"}, {"datetaken": "2010-04-14 18:08:15", "license": "1", "title": "Harvey Pekar 1", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4058/4526354014_da0ff391cc_o.jpg", "secret": "0308c53354", "media": "photo", "latitude": "37.876245", "id": "4526354014", "tags": "berkeley harveypekar"}, {"datetaken": "2010-04-14 18:32:01", "license": "1", "title": "Mantra and Dan Plonsey 1", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4013/4526354188_02b2887669_o.jpg", "secret": "05c6a462a8", "media": "photo", "latitude": "37.876245", "id": "4526354188", "tags": "berkeley danplonsey"}, {"datetaken": "2010-04-14 18:32:15", "license": "1", "title": "Josh Smith", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4040/4526354326_b03ebbbee1_o.jpg", "secret": "5cb7bfa08d", "media": "photo", "latitude": "37.876245", "id": "4526354326", "tags": "berkeley joshsmith"}, {"datetaken": "2010-04-14 18:32:52", "license": "1", "title": "Mantra and Dan Plonsey 2", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4054/4526354480_4c03fb5d32_o.jpg", "secret": "ce7f05aa69", "media": "photo", "latitude": "37.876245", "id": "4526354480", "tags": "berkeley livemusic danplonsey mantraplonsey"}, {"datetaken": "2010-04-14 19:29:17", "license": "1", "title": "Josh Smith and Harvey Pekar", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4030/4525723973_a16f5cd800_o.jpg", "secret": "1d56e23460", "media": "photo", "latitude": "37.876245", "id": "4525723973", "tags": "berkeley livemusic harveypekar joshsmith"}, {"datetaken": "2010-04-14 19:29:37", "license": "1", "title": "Harvey Pekar 2", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4051/4525724253_bd790858f4_o.jpg", "secret": "7e0005ddf6", "media": "photo", "latitude": "37.876245", "id": "4525724253", "tags": "berkeley livemusic harveypekar"}, {"datetaken": "2010-04-14 19:39:44", "license": "1", "title": "Mantra and Dan Plonsey 3", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4046/4526355226_2f19f013c3_o.jpg", "secret": "facfe05688", "media": "photo", "latitude": "37.876245", "id": "4526355226", "tags": "berkeley livemusic danplonsey mantraplonsey"}, {"datetaken": "2010-04-14 20:06:27", "license": "1", "title": "Harvey Pekar and Dan Schifrin 1", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4050/4525724853_e81b64ef87_o.jpg", "secret": "d2eeb1d365", "media": "photo", "latitude": "37.876245", "id": "4525724853", "tags": "berkeley harveypekar"}, {"datetaken": "2010-04-14 20:13:14", "license": "1", "title": "Sarah Willner, Dan Plonsey, and Randy Porter", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4057/4526355628_d15566c34c_o.jpg", "secret": "31bda76152", "media": "photo", "latitude": "37.876245", "id": "4526355628", "tags": "berkeley danplonsey"}, {"datetaken": "2010-04-14 20:16:00", "license": "1", "title": "Suki O'Kane, Ben Goldberg, and Randy Porter", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4014/4526355836_751ef567bd_o.jpg", "secret": "988707c6d9", "media": "photo", "latitude": "37.876245", "id": "4526355836", "tags": "berkeley bengoldberg sukiokane randyporter"}, {"datetaken": "2010-04-14 20:19:51", "license": "1", "title": "Harvey Pekar and Dan Schifrin 2", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4072/4525725317_5f3e2c2d63_o.jpg", "secret": "6e0a75c883", "media": "photo", "latitude": "37.876245", "id": "4525725317", "tags": "berkeley harveypekar"}, {"datetaken": "2010-04-14 20:25:37", "license": "1", "title": "Harvey Pekar and Dan Schifrin 3", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4050/4526356046_eb417f852d_o.jpg", "secret": "c2c0620b25", "media": "photo", "latitude": "37.876245", "id": "4526356046", "tags": "berkeley harveypekar"}, {"datetaken": "2010-04-14 20:38:41", "license": "1", "title": "Eric Kupers", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4037/4525725495_f5337ba9a4_o.jpg", "secret": "6f1b787386", "media": "photo", "latitude": "37.876245", "id": "4525725495", "tags": "berkeley erickupers dandeliondancetheater danplonseysbarmitzvah"}, {"datetaken": "2010-04-14 20:42:09", "license": "1", "title": "Dandelion dancers 1", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4047/4526356256_cc42afffe0_o.jpg", "secret": "8d94c6a4c6", "media": "photo", "latitude": "37.876245", "id": "4526356256", "tags": "berkeley dandeliondancetheater danplonseysbarmitzvah"}, {"datetaken": "2010-04-14 20:42:19", "license": "1", "title": "Dandelion dancers 2", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4039/4526356382_48b2c10cd3_o.jpg", "secret": "1c5180ec60", "media": "photo", "latitude": "37.876245", "id": "4526356382", "tags": "berkeley dandeliondancetheater mantraplonsey danplonseysbarmitzvah"}, {"datetaken": "2010-04-14 20:43:42", "license": "1", "title": "Eric Kupers, Cleveland Plonsey, and Dan Plonsey", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4058/4526356602_d5c815570b_o.jpg", "secret": "c3f0e70941", "media": "photo", "latitude": "37.876245", "id": "4526356602", "tags": "berkeley livemusic danplonsey erickupers dandeliondancetheater clevelandplonsey danplonseysbarmitzvah"}, {"datetaken": "2010-04-14 20:44:01", "license": "1", "title": "Dan Plonsey and Eric Kupers", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4026/4525726013_9caf8858e6_o.jpg", "secret": "41c341f3a9", "media": "photo", "latitude": "37.876245", "id": "4525726013", "tags": "berkeley livemusic danplonsey erickupers dandeliondancetheater danplonseysbarmitzvah"}, {"datetaken": "2010-04-14 20:45:06", "license": "1", "title": "Mischa Plonsey and Mantra Plonsey", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4066/4525726285_23b1e2ff75_o.jpg", "secret": "03d7346a10", "media": "photo", "latitude": "37.876245", "id": "4525726285", "tags": "berkeley livemusic dandeliondancetheater mantraplonsey mischaplonsey danplonseysbarmitzvah"}, {"datetaken": "2010-04-14 20:45:21", "license": "1", "title": "Cleveland Plonsey and Eric Kupers", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4019/4526357036_e558c1a055_o.jpg", "secret": "f4802fd5b5", "media": "photo", "latitude": "37.876245", "id": "4526357036", "tags": "berkeley livemusic erickupers dandeliondancetheater clevelandplonsey danplonseysbarmitzvah"}, {"datetaken": "2010-04-14 21:09:21", "license": "1", "title": "John Schott on shofar", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4054/4525726573_e6f0ec0ec6_o.jpg", "secret": "ec83db8575", "media": "photo", "latitude": "37.876245", "id": "4525726573", "tags": "berkeley livemusic johnschott danplonseysbarmitzvah"}, {"datetaken": "2010-04-14 21:09:46", "license": "1", "title": "Dan Plonsey 1", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4041/4525726739_c61a0d29ba_o.jpg", "secret": "eb226112d1", "media": "photo", "latitude": "37.876245", "id": "4525726739", "tags": "berkeley livemusic danplonsey danplonseysbarmitzvah"}, {"datetaken": "2010-04-14 21:10:35", "license": "1", "title": "Dan Plonsey 2", "text": "", "album_id": "72157623869982062", "longitude": "-122.261465", "url_o": "https://farm5.staticflickr.com/4063/4525727029_a6d1d7ebf3_o.jpg", "secret": "5b55445254", "media": "photo", "latitude": "37.876245", "id": "4525727029", "tags": "berkeley livemusic danplonsey danplonseysbarmitzvah"}, {"datetaken": "2009-11-20 22:51:25", "license": "1", "title": "Cake", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4122127033_86fb346533_o.jpg", "secret": "22e20fdb5e", "media": "photo", "latitude": "0", "id": "4122127033", "tags": "katie sid jeremy sherah jeremysbarmitzvah"}, {"datetaken": "2009-11-20 22:51:49", "license": "1", "title": "Cake", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4122903146_58c0d03647_o.jpg", "secret": "29f4168f62", "media": "photo", "latitude": "0", "id": "4122903146", "tags": "katie jeremy jeremysbarmitzvah"}, {"datetaken": "2009-11-20 22:53:14", "license": "1", "title": "Jeremy", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/4122907370_9719dea171_o.jpg", "secret": "ffc6a63eff", "media": "photo", "latitude": "0", "id": "4122907370", "tags": "jeremy jeremysbarmitzvah"}, {"datetaken": "2009-11-20 22:58:47", "license": "1", "title": "Fritz", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2575/4122142669_95f2351e8d_o.jpg", "secret": "6e125d136a", "media": "photo", "latitude": "0", "id": "4122142669", "tags": "randy fritz jeremysbarmitzvah"}, {"datetaken": "2009-11-20 22:58:53", "license": "1", "title": "Ryan, Mariaugh, and Derrick", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2463/4122918784_abe6bd8588_o.jpg", "secret": "b7b2801c49", "media": "photo", "latitude": "0", "id": "4122918784", "tags": "ryan derrick mariaugh jeremysbarmitzvah"}, {"datetaken": "2009-11-20 23:32:22", "license": "1", "title": "Jeremy", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2706/4122921762_487dd02039_o.jpg", "secret": "bc2e96093e", "media": "photo", "latitude": "0", "id": "4122921762", "tags": "jeremy jeremysbarmitzvah"}, {"datetaken": "2009-11-20 23:32:40", "license": "1", "title": "Jeremy", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2440/4122152271_b318365779_o.jpg", "secret": "dc3d5c62d3", "media": "photo", "latitude": "0", "id": "4122152271", "tags": "jeremy jeremysbarmitzvah"}, {"datetaken": "2009-11-20 23:52:09", "license": "1", "title": "Delicious Wine", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2789/4122156177_09cb29b6b5_o.jpg", "secret": "7d051546bf", "media": "photo", "latitude": "0", "id": "4122156177", "tags": "manischewitz jeremysbarmitzvah"}, {"datetaken": "2009-11-21 00:27:57", "license": "1", "title": "Sherah", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4122159799_ff172a35b2_o.jpg", "secret": "e78e536731", "media": "photo", "latitude": "0", "id": "4122159799", "tags": "sherah jeremysbarmitzvah"}, {"datetaken": "2009-11-21 00:41:14", "license": "1", "title": "Chris and Sarah", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4122164017_b7a9e199aa_o.jpg", "secret": "5b09ba6794", "media": "photo", "latitude": "0", "id": "4122164017", "tags": "chris sarah jeremysbarmitzvah"}, {"datetaken": "2009-11-21 00:42:06", "license": "1", "title": "Ang & Green Man", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4122168679_76e99a15fe_o.jpg", "secret": "8b5280e040", "media": "photo", "latitude": "0", "id": "4122168679", "tags": "clay ang jeremysbarmitzvah"}, {"datetaken": "2009-11-21 00:42:14", "license": "1", "title": "Green Man", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4122172185_87cf4f9f65_o.jpg", "secret": "2de4733846", "media": "photo", "latitude": "0", "id": "4122172185", "tags": "clay jeremysbarmitzvah"}, {"datetaken": "2009-11-21 00:42:22", "license": "1", "title": "Tatiana and Sid", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2573/4122177197_60176d43aa_o.jpg", "secret": "2213b801e3", "media": "photo", "latitude": "0", "id": "4122177197", "tags": "sid tatiana jeremysbarmitzvah"}, {"datetaken": "2009-11-21 00:42:47", "license": "1", "title": "Simon", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2516/4122953086_43abae316d_o.jpg", "secret": "89a6ca11de", "media": "photo", "latitude": "0", "id": "4122953086", "tags": "clay jeremysbarmitzvah"}, {"datetaken": "2009-11-21 00:45:59", "license": "1", "title": "Quent", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2709/4122184865_222f1f3ca5_o.jpg", "secret": "da4914b91a", "media": "photo", "latitude": "0", "id": "4122184865", "tags": "quent jeremysbarmitzvah"}, {"datetaken": "2009-11-21 00:46:08", "license": "1", "title": "Quent", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2780/4122959932_d120cb4567_o.jpg", "secret": "0fcdc5aab7", "media": "photo", "latitude": "0", "id": "4122959932", "tags": "quent jeremysbarmitzvah"}, {"datetaken": "2009-11-21 00:46:14", "license": "1", "title": "Quent & Ang", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2633/4122963604_7afe759906_o.jpg", "secret": "642cd9449f", "media": "photo", "latitude": "0", "id": "4122963604", "tags": "quent jeremysbarmitzvah"}, {"datetaken": "2009-11-21 00:48:02", "license": "1", "title": "Rug Snuggle", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2538/4122195987_8590d3afa1_o.jpg", "secret": "fdb78e0331", "media": "photo", "latitude": "0", "id": "4122195987", "tags": "kim quent jeremysbarmitzvah"}, {"datetaken": "2009-11-21 00:48:19", "license": "1", "title": "The Blue ROom", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4122972534_fabb0bcbb4_o.jpg", "secret": "fc4d77ba3d", "media": "photo", "latitude": "0", "id": "4122972534", "tags": "jeremy jeremysbarmitzvah"}, {"datetaken": "2009-11-21 00:48:32", "license": "1", "title": "Rug Snugggle", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2538/4122976804_ffb33267de_o.jpg", "secret": "8d03aea979", "media": "photo", "latitude": "0", "id": "4122976804", "tags": "kim quent jeremysbarmitzvah"}, {"datetaken": "2009-11-21 00:52:10", "license": "1", "title": "Fritz", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4122209595_42a2f75974_o.jpg", "secret": "e0e5503bfc", "media": "photo", "latitude": "0", "id": "4122209595", "tags": "fritz jeremysbarmitzvah"}, {"datetaken": "2009-11-21 00:53:59", "license": "1", "title": "Sid", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2736/4122213621_205cf9a86b_o.jpg", "secret": "921dcc85fc", "media": "photo", "latitude": "0", "id": "4122213621", "tags": "sid jeremysbarmitzvah"}, {"datetaken": "2009-11-21 00:54:02", "license": "1", "title": "Sid", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2727/4122217589_5f70804c5a_o.jpg", "secret": "5e48bdbb7e", "media": "photo", "latitude": "0", "id": "4122217589", "tags": "sid jeremysbarmitzvah"}, {"datetaken": "2009-11-21 00:54:05", "license": "1", "title": "Sid", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2701/4122993678_2ac0ded695_o.jpg", "secret": "3e19b495e6", "media": "photo", "latitude": "0", "id": "4122993678", "tags": "sid quent jeremysbarmitzvah"}, {"datetaken": "2009-11-21 01:15:58", "license": "1", "title": "Tatiana", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2636/4122997938_50fdb1f413_o.jpg", "secret": "3b615e9b90", "media": "photo", "latitude": "0", "id": "4122997938", "tags": "tatiana jeremysbarmitzvah"}, {"datetaken": "2009-11-21 01:18:19", "license": "1", "title": "Dapper Creepy Green Man", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2571/4123001668_c879384735_o.jpg", "secret": "64243abd59", "media": "photo", "latitude": "0", "id": "4123001668", "tags": "clay jeremysbarmitzvah"}, {"datetaken": "2009-11-21 01:19:52", "license": "1", "title": "Lucy the dog", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2485/4123005366_6a720ac1e4_o.jpg", "secret": "7df3668b59", "media": "photo", "latitude": "0", "id": "4123005366", "tags": "lucythedog jeremysbarmitzvah"}, {"datetaken": "2009-11-21 01:21:39", "license": "1", "title": "Creepy Green Man", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2765/4123009158_0bdcef48fd_o.jpg", "secret": "dec04ec81a", "media": "photo", "latitude": "0", "id": "4123009158", "tags": "clay jeremysbarmitzvah"}, {"datetaken": "2009-11-21 01:22:10", "license": "1", "title": "Squidney", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2586/4123013458_1d888c0115_o.jpg", "secret": "89eb58ac1a", "media": "photo", "latitude": "0", "id": "4123013458", "tags": "sid jeremysbarmitzvah"}, {"datetaken": "2009-11-21 02:25:04", "license": "1", "title": "Kim", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2784/4122244783_4da28e951a_o.jpg", "secret": "5b14e09761", "media": "photo", "latitude": "0", "id": "4122244783", "tags": "kim jeremysbarmitzvah"}, {"datetaken": "2009-11-21 02:25:19", "license": "1", "title": "Kim & Ang", "text": "", "album_id": "72157622848916576", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2638/4123021226_fbcfd9fcbd_o.jpg", "secret": "c4016713a8", "media": "photo", "latitude": "0", "id": "4123021226", "tags": "kim ang jeremysbarmitzvah"}, {"datetaken": "2009-12-21 23:14:26", "license": "2", "title": "1b Cartoon", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2674/4205432686_b60313b63f_o.jpg", "secret": "752fc3a64e", "media": "photo", "latitude": "0", "id": "4205432686", "tags": ""}, {"datetaken": "2009-12-21 23:14:29", "license": "2", "title": "1d Invitation to Alex and Zach Bar Mitzvah and thank yous.2_Page_2", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2613/4204674411_6022994a52_o.jpg", "secret": "5c1e31753b", "media": "photo", "latitude": "0", "id": "4204674411", "tags": ""}, {"datetaken": "2009-12-21 23:14:32", "license": "2", "title": "1d Invitation to Alex and Zach Bar Mitzvah and thank yous.2_Page_3", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2655/4204674529_117a5f1b45_o.jpg", "secret": "e7473a6d3c", "media": "photo", "latitude": "0", "id": "4204674529", "tags": ""}, {"datetaken": "2009-12-21 23:15:08", "license": "2", "title": "1i 2002 Seder Hartford Courant - Page 1", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2518/4204675627_02a20556fa_o.jpg", "secret": "c740d61438", "media": "photo", "latitude": "0", "id": "4204675627", "tags": ""}, {"datetaken": "2009-12-21 23:15:28", "license": "2", "title": "1j 2002 Seder Hartford Courant - Page 2", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2606/4205434580_e3bc84ef8f_o.jpg", "secret": "c187fb2ddf", "media": "photo", "latitude": "0", "id": "4205434580", "tags": ""}, {"datetaken": "2009-12-21 23:15:39", "license": "2", "title": "1r New Haven Register - Page 1", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2675/4204676621_e3324cb870_o.jpg", "secret": "ae8b219657", "media": "photo", "latitude": "0", "id": "4204676621", "tags": ""}, {"datetaken": "2009-12-21 23:15:45", "license": "2", "title": "1s New Haven Register - Page 2", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2716/4204676835_c44c44b291_o.jpg", "secret": "7aed44930c", "media": "photo", "latitude": "0", "id": "4204676835", "tags": ""}, {"datetaken": "2009-12-21 23:16:20", "license": "2", "title": "1t 2002 Seder Hartford Courant - Page 1", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2591/4205436406_48a8cdcd3f_o.jpg", "secret": "871a87685b", "media": "photo", "latitude": "0", "id": "4205436406", "tags": ""}, {"datetaken": "2009-12-21 23:16:40", "license": "2", "title": "1u 2002 Seder Hartford Courant - Page 2_Page_1", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2687/4204678693_29f845784e_o.jpg", "secret": "194c132e54", "media": "photo", "latitude": "0", "id": "4204678693", "tags": ""}, {"datetaken": "2009-12-21 23:16:46", "license": "2", "title": "1v 1917 Arch Street New Haven", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/4204678873_537fbc3c8e_o.jpg", "secret": "bb247d4a30", "media": "photo", "latitude": "0", "id": "4204678873", "tags": ""}, {"datetaken": "2009-12-21 23:16:49", "license": "2", "title": "1w 1917 Seder Identification", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4204678963_735e528ea3_o.jpg", "secret": "80c4a89763", "media": "photo", "latitude": "0", "id": "4204678963", "tags": ""}, {"datetaken": "2009-12-21 23:16:54", "license": "2", "title": "1x 1917 Arch Street New Haven with numbers", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2758/4205437510_a5c3480081_o.jpg", "secret": "cf7b9354a3", "media": "photo", "latitude": "0", "id": "4205437510", "tags": ""}, {"datetaken": "2009-12-21 23:16:57", "license": "2", "title": "1y 1917 Seder Identification Numbers with Names", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2767/4204679219_18a46ffe32_o.jpg", "secret": "cfe315a209", "media": "photo", "latitude": "0", "id": "4204679219", "tags": ""}, {"datetaken": "2009-12-21 23:17:03", "license": "2", "title": "1z 1925 Seder Ward Street", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2773/4204679411_2b13e816fc_o.jpg", "secret": "5c52474c93", "media": "photo", "latitude": "0", "id": "4204679411", "tags": ""}, {"datetaken": "2009-12-21 23:17:08", "license": "2", "title": "2 1925 Seder Identification", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2782/4205437924_86c78b306f_o.jpg", "secret": "5b1b8d5006", "media": "photo", "latitude": "0", "id": "4205437924", "tags": ""}, {"datetaken": "2009-12-21 23:17:42", "license": "2", "title": "1c Invitation", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2650/4205439006_4a7d7fa02b_o.jpg", "secret": "58869813d9", "media": "photo", "latitude": "0", "id": "4205439006", "tags": ""}, {"datetaken": "2009-12-21 23:17:50", "license": "2", "title": "2a 1925 Seder Ward Street numbered_Page_1", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2702/4204680851_35c3d722e0_o.jpg", "secret": "77663dd799", "media": "photo", "latitude": "0", "id": "4204680851", "tags": ""}, {"datetaken": "2009-12-21 23:17:53", "license": "2", "title": "2b 1925 Seder Identification Numbers with Names", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2793/4205439346_05e73b6dea_o.jpg", "secret": "8e9f6cabd5", "media": "photo", "latitude": "0", "id": "4205439346", "tags": ""}, {"datetaken": "2009-12-21 23:17:59", "license": "2", "title": "2c Berman Family Women 1949", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4205439534_60a9b38f3e_o.jpg", "secret": "ea6ed1fef2", "media": "photo", "latitude": "0", "id": "4205439534", "tags": ""}, {"datetaken": "2009-12-21 23:18:05", "license": "2", "title": "2d Berman Family Women 1949 Numbered_Page_1", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2625/4205439714_ca02c71b3d_o.jpg", "secret": "833ec6b7f5", "media": "photo", "latitude": "0", "id": "4205439714", "tags": ""}, {"datetaken": "2009-12-21 23:18:08", "license": "2", "title": "2e Berman Family Women 1949 Identification", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4205439814_7ed5134e1a_o.jpg", "secret": "d497f4e966", "media": "photo", "latitude": "0", "id": "4205439814", "tags": ""}, {"datetaken": "2009-12-21 23:18:13", "license": "2", "title": "2f 1950 Seder, Eugene, Judith, Arthur, Martha, Milton, etc", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2657/4205440014_47d4d1d3ba_o.jpg", "secret": "33ff8699bc", "media": "photo", "latitude": "0", "id": "4205440014", "tags": ""}, {"datetaken": "2009-12-21 23:18:18", "license": "2", "title": "2g 1950 Seder, Gus Harry & Ben", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2487/4205440160_338aecddde_o.jpg", "secret": "071e4fed8d", "media": "photo", "latitude": "0", "id": "4205440160", "tags": ""}, {"datetaken": "2009-12-21 23:18:23", "license": "2", "title": "2h 1951 Seder, New Haven, CT", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2666/4205440360_97f05707fa_o.jpg", "secret": "987b038b7c", "media": "photo", "latitude": "0", "id": "4205440360", "tags": ""}, {"datetaken": "2009-12-21 23:18:29", "license": "2", "title": "2i 1951 Seder, New Haven, Numbered", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2549/4205440532_f3e53e8aef_o.jpg", "secret": "aba82410d1", "media": "photo", "latitude": "0", "id": "4205440532", "tags": ""}, {"datetaken": "2009-12-21 23:18:35", "license": "2", "title": "2l 1952 or 1953 Seder New Haven", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4205440706_05445d90c3_o.jpg", "secret": "ca2f4c643c", "media": "photo", "latitude": "0", "id": "4205440706", "tags": ""}, {"datetaken": "2009-12-21 23:18:40", "license": "2", "title": "2m 1952 or 1953 Seder New Haven Numbered", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2579/4205440872_fa184ff5e3_o.jpg", "secret": "7b626bb2ff", "media": "photo", "latitude": "0", "id": "4205440872", "tags": ""}, {"datetaken": "2009-12-21 23:18:45", "license": "2", "title": "2p 1955 Berman Announcer_Page_1", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2527/4205441044_df3b8554b2_o.jpg", "secret": "dcbe102491", "media": "photo", "latitude": "0", "id": "4205441044", "tags": ""}, {"datetaken": "2009-12-21 23:18:50", "license": "2", "title": "2p 1955 Berman Announcer_Page_2", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4204682717_d76fc57d17_o.jpg", "secret": "95a7fe275b", "media": "photo", "latitude": "0", "id": "4204682717", "tags": ""}, {"datetaken": "2009-12-21 23:18:55", "license": "2", "title": "2p 1955 Berman Announcer_Page_3", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2566/4204682889_5d84146e7d_o.jpg", "secret": "f70e47bd67", "media": "photo", "latitude": "0", "id": "4204682889", "tags": ""}, {"datetaken": "2009-12-21 23:19:00", "license": "2", "title": "2q Seder, 1954 or 1955.doc_Page_1", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2617/4204683035_a22dc20abf_o.jpg", "secret": "1b69ec6575", "media": "photo", "latitude": "0", "id": "4204683035", "tags": ""}, {"datetaken": "2009-12-21 23:19:05", "license": "2", "title": "2r 1955 Seder April 6 Hotel Taft New Haven", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2674/4204683211_389e5476de_o.jpg", "secret": "153baaa61b", "media": "photo", "latitude": "0", "id": "4204683211", "tags": ""}, {"datetaken": "2009-12-21 23:19:11", "license": "2", "title": "2s 1955 Seder April 6 - Numbered", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4204683385_4f8888f8d5_o.jpg", "secret": "b6d2bb7cd4", "media": "photo", "latitude": "0", "id": "4204683385", "tags": ""}, {"datetaken": "2009-12-21 23:19:14", "license": "2", "title": "2t 1955 - Seder Identification with Names", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4204683559_7c191405dd_o.jpg", "secret": "9fc760a3f2", "media": "photo", "latitude": "0", "id": "4204683559", "tags": ""}, {"datetaken": "2009-12-21 23:19:20", "license": "2", "title": "2tt The 4 Questions", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2784/4205442146_dfd65c6a94_o.jpg", "secret": "1179055e2e", "media": "photo", "latitude": "0", "id": "4205442146", "tags": ""}, {"datetaken": "2009-12-21 23:19:26", "license": "2", "title": "2u 1980 Seder Song & Invite_Page_1", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2646/4204683927_0a27aa1aa7_o.jpg", "secret": "bbc80b30f3", "media": "photo", "latitude": "0", "id": "4204683927", "tags": ""}, {"datetaken": "2009-12-21 23:19:30", "license": "2", "title": "2u 1980 Seder Song & Invite_Page_2", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2764/4204684105_13769e196d_o.jpg", "secret": "b71f9c5e10", "media": "photo", "latitude": "0", "id": "4204684105", "tags": ""}, {"datetaken": "2009-12-21 23:19:34", "license": "2", "title": "2u 1980 Seder Song & Invite_Page_3", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2606/4205442596_65e0e284b8_o.jpg", "secret": "a4598f9599", "media": "photo", "latitude": "0", "id": "4205442596", "tags": ""}, {"datetaken": "2009-12-21 23:19:39", "license": "2", "title": "2v 1980 Seder Brunch Laurel View", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4205442748_34a0489873_o.jpg", "secret": "3b997090c1", "media": "photo", "latitude": "0", "id": "4205442748", "tags": ""}, {"datetaken": "2009-12-21 23:19:44", "license": "2", "title": "2w 1980 Seder Brunch Laurel View Numbered", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2608/4205442898_a6a680b70d_o.jpg", "secret": "251c58c6c6", "media": "photo", "latitude": "0", "id": "4205442898", "tags": ""}, {"datetaken": "2009-12-21 23:19:48", "license": "2", "title": "2y 2001 Seder Grand Hyatt NY", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2689/4204684721_51934543eb_o.jpg", "secret": "bcb1ce121b", "media": "photo", "latitude": "0", "id": "4204684721", "tags": ""}, {"datetaken": "2009-12-21 23:19:52", "license": "2", "title": "2z 2001 Seder Grand Hyatt NY - numbered", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2489/4204684847_f7995dc053_o.jpg", "secret": "a50ce81caa", "media": "photo", "latitude": "0", "id": "4204684847", "tags": ""}, {"datetaken": "2009-12-21 23:19:54", "license": "2", "title": "3a 2001 Seder Nemtzows with others named", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4204684953_8a908560c9_o.jpg", "secret": "8a3e66029c", "media": "photo", "latitude": "0", "id": "4204684953", "tags": ""}, {"datetaken": "2009-12-21 23:19:58", "license": "2", "title": "3b 2001 Seder Nemtzows with added names", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2764/4204685107_079b2500ed_o.jpg", "secret": "df4a3ba2f6", "media": "photo", "latitude": "0", "id": "4204685107", "tags": ""}, {"datetaken": "2009-12-21 23:20:03", "license": "2", "title": "3c 2001 Seder Andy, Gene, Bruce, Harvey named", "text": "", "album_id": "72157623047950842", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4204685279_c9e4524c1d_o.jpg", "secret": "2719c7f30a", "media": "photo", "latitude": "0", "id": "4204685279", "tags": ""}, {"datetaken": "2013-03-04 09:30:21", "license": "3", "title": "Lion Fountain, Jerusalem", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8242/8549959711_26216b35cd_o.jpg", "secret": "408aa04d38", "media": "photo", "latitude": "0", "id": "8549959711", "tags": "linetiyul"}, {"datetaken": "2013-03-04 09:30:36", "license": "3", "title": "Lion Fountain, Jerusalem", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8250/8549960253_dbe974952e_o.jpg", "secret": "f57d709145", "media": "photo", "latitude": "0", "id": "8549960253", "tags": "linetiyul"}, {"datetaken": "2013-03-04 09:33:24", "license": "3", "title": "Lion Fountain, Jerusalem", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8532/8549960859_90836cf7b7_o.jpg", "secret": "f3e16c7ea6", "media": "photo", "latitude": "0", "id": "8549960859", "tags": "linetiyul"}, {"datetaken": "2013-03-04 09:35:40", "license": "3", "title": "Lion Fountain, Jerusalem", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8386/8551060598_c7763f88b9_o.jpg", "secret": "7f61369f81", "media": "photo", "latitude": "0", "id": "8551060598", "tags": "linetiyul"}, {"datetaken": "2013-03-04 09:38:22", "license": "3", "title": "Mishkenot Sha'ananim, Jerusalem", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8087/8549962497_9eac7f65ba_o.jpg", "secret": "f763ca6012", "media": "photo", "latitude": "0", "id": "8549962497", "tags": "linetiyul"}, {"datetaken": "2013-03-04 12:02:15", "license": "3", "title": "Jewish Quarter, Old City, Jerusalem", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8239/8549963357_f6bf8d7c0c_o.jpg", "secret": "0302701a8c", "media": "photo", "latitude": "0", "id": "8549963357", "tags": "jerusalem linetiyul"}, {"datetaken": "2013-03-04 12:16:56", "license": "3", "title": "Bar Mitzvah, Old City, Jerusalem", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8513/8551062728_cdd749136a_o.jpg", "secret": "9299f9af43", "media": "photo", "latitude": "0", "id": "8551062728", "tags": "linetiyul"}, {"datetaken": "2013-03-04 12:28:42", "license": "3", "title": "Gate of Armenian Church", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8531/8551063330_671af7a848_o.jpg", "secret": "1293bbbd84", "media": "photo", "latitude": "0", "id": "8551063330", "tags": "linetiyul"}, {"datetaken": "2013-03-04 12:31:09", "license": "3", "title": "Boys, Zion Gate, Jerusalem", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8515/8551063816_555e40213c_o.jpg", "secret": "345ee4e76c", "media": "photo", "latitude": "0", "id": "8551063816", "tags": "linetiyul"}, {"datetaken": "2013-03-04 12:47:04", "license": "3", "title": "Dormition Abbey, Jerusalem", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8391/8551064534_007bda13d9_o.jpg", "secret": "9ff7eb4e7e", "media": "photo", "latitude": "0", "id": "8551064534", "tags": "jerusalem oldcity dormitionabbey linetiyul"}, {"datetaken": "2013-03-04 13:11:56", "license": "3", "title": "Kinor David Restaurant, Jerusalem", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8372/8551065086_bbecb89cda_o.jpg", "secret": "a28159ea4b", "media": "photo", "latitude": "0", "id": "8551065086", "tags": "linetiyul"}, {"datetaken": "2013-03-04 15:45:01", "license": "3", "title": "Camel", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8091/8549966757_467ee9a5c7_o.jpg", "secret": "86ded97fb1", "media": "photo", "latitude": "0", "id": "8549966757", "tags": "linetiyul"}, {"datetaken": "2013-03-04 15:52:41", "license": "3", "title": "Irises", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8091/8552876568_42156c5161_o.jpg", "secret": "40e03fd434", "media": "photo", "latitude": "0", "id": "8552876568", "tags": "linetiyul"}, {"datetaken": "2013-03-04 15:52:53", "license": "3", "title": "Astragalus callichrous", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8244/8551774353_3a54361be9_o.jpg", "secret": "1295c26c9f", "media": "photo", "latitude": "0", "id": "8551774353", "tags": "linetiyul"}, {"datetaken": "2013-03-04 15:54:10", "license": "3", "title": "Wildflowers", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8086/8549967769_7eac1d58a0_o.jpg", "secret": "a3d6304670", "media": "photo", "latitude": "0", "id": "8549967769", "tags": "linetiyul"}, {"datetaken": "2013-03-04 15:55:38", "license": "3", "title": "Eretz Bereishit, neqr Kfar Adumim", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8100/8551068064_2a70415e39_o.jpg", "secret": "88a05341d5", "media": "photo", "latitude": "0", "id": "8551068064", "tags": "linetiyul"}, {"datetaken": "2013-03-04 16:15:39", "license": "3", "title": "Kid", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8382/8551068596_ba6fe0905b_o.jpg", "secret": "83d01f92ff", "media": "photo", "latitude": "0", "id": "8551068596", "tags": "linetiyul"}, {"datetaken": "2013-03-04 19:32:07", "license": "3", "title": "Flamenco guitarist Baldi Olier and dancer Yael Tuchfeld", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8246/8552877982_3736cf6e88_o.jpg", "secret": "3e61e04891", "media": "photo", "latitude": "0", "id": "8552877982", "tags": "linetiyul"}, {"datetaken": "2013-03-04 19:47:20", "license": "3", "title": "Flamenco dancer Yael Tuchfeld", "text": "", "album_id": "72157632973805375", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8508/8551775849_6827689eed_o.jpg", "secret": "3c9269dd2e", "media": "photo", "latitude": "0", "id": "8551775849", "tags": "linetiyul"}, {"datetaken": "2013-09-25 14:43:33", "license": "4", "title": "Ark", "text": "", "album_id": "72157635893140555", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7366/9940552406_9e6d0f3f04_o.jpg", "secret": "caba83ef48", "media": "photo", "latitude": "0", "id": "9940552406", "tags": "synagogue restored jewish artdeco reform wilshireboulevardtemple"}, {"datetaken": "2013-09-25 14:43:34", "license": "4", "title": "Hebrew prayer", "text": "", "album_id": "72157635893140555", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7364/9940552686_af349187fb_o.jpg", "secret": "29d34e8994", "media": "photo", "latitude": "0", "id": "9940552686", "tags": "synagogue restored jewish artdeco reform wilshireboulevardtemple"}, {"datetaken": "2013-09-25 14:43:35", "license": "4", "title": "Domed ceiling", "text": "", "album_id": "72157635893140555", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5456/9940552896_731fa1b371_o.jpg", "secret": "64d6ecb495", "media": "photo", "latitude": "0", "id": "9940552896", "tags": "synagogue restored jewish artdeco reform wilshireboulevardtemple"}, {"datetaken": "2013-09-25 14:43:37", "license": "4", "title": "Sanctuary", "text": "", "album_id": "72157635893140555", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5459/9940553326_a6fbb838b7_o.jpg", "secret": "30711bcb1e", "media": "photo", "latitude": "0", "id": "9940553326", "tags": "synagogue restored jewish artdeco reform wilshireboulevardtemple"}, {"datetaken": "2013-09-25 14:43:39", "license": "4", "title": "Female personages from the bible", "text": "", "album_id": "72157635893140555", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7409/9940553726_2b4e0f8eac_o.jpg", "secret": "e5335198b7", "media": "photo", "latitude": "0", "id": "9940553726", "tags": "synagogue restored jewish artdeco reform wilshireboulevardtemple"}, {"datetaken": "2013-09-25 14:43:39", "license": "4", "title": "Woman lighting Sabbath candles and a Bar Mitzvah", "text": "", "album_id": "72157635893140555", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3709/9940553736_a7cf7e8663_o.jpg", "secret": "b06e2590b3", "media": "photo", "latitude": "0", "id": "9940553736", "tags": "synagogue restored jewish artdeco reform wilshireboulevardtemple"}, {"datetaken": "2013-09-25 14:46:32", "license": "4", "title": "Rashi & Maimonides", "text": "", "album_id": "72157635893140555", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7406/9940710103_e4321fe88d_o.jpg", "secret": "9c6a873e85", "media": "photo", "latitude": "0", "id": "9940710103", "tags": "mural synagogue restored jewish artdeco reform wilshireboulevardtemple"}, {"datetaken": "2013-09-25 17:30:39", "license": "4", "title": "Guy who gave us a tour", "text": "", "album_id": "72157635893140555", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2843/9942442084_d7430ecc9d_o.jpg", "secret": "6a54d7885f", "media": "photo", "latitude": "0", "id": "9942442084", "tags": "synagogue restored jewish artdeco reform wilshireboulevardtemple"}, {"datetaken": "2013-09-25 17:30:39", "license": "4", "title": "Ark", "text": "", "album_id": "72157635893140555", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5547/9942442104_02d772e3bf_o.jpg", "secret": "266a122995", "media": "photo", "latitude": "0", "id": "9942442104", "tags": "synagogue restored jewish artdeco reform wilshireboulevardtemple"}, {"datetaken": "2013-09-25 17:30:39", "license": "4", "title": "Menorah", "text": "", "album_id": "72157635893140555", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5444/9942442114_8e6e7760c6_o.jpg", "secret": "26603b8151", "media": "photo", "latitude": "0", "id": "9942442114", "tags": "synagogue restored jewish artdeco reform wilshireboulevardtemple"}, {"datetaken": "2013-09-25 17:30:41", "license": "4", "title": "Rose window", "text": "", "album_id": "72157635893140555", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3695/9942442514_a9c092d188_o.jpg", "secret": "9e89fee51b", "media": "photo", "latitude": "0", "id": "9942442514", "tags": "synagogue restored jewish artdeco reform wilshireboulevardtemple"}, {"datetaken": "2013-09-25 17:33:06", "license": "4", "title": "Arch", "text": "", "album_id": "72157635893140555", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7381/9942555193_c682e7b709_o.jpg", "secret": "5dde49fc44", "media": "photo", "latitude": "0", "id": "9942555193", "tags": "synagogue restored jewish artdeco reform wilshireboulevardtemple"}, {"datetaken": "2011-05-01 09:31:41", "license": "3", "title": "*", "text": "", "album_id": "72157626743522490", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5188/5731039744_358a7a18f8_o.jpg", "secret": "09ab63e5cd", "media": "photo", "latitude": "0", "id": "5731039744", "tags": "201105 avitalsbatmitzvah"}, {"datetaken": "2011-05-01 10:04:39", "license": "3", "title": "*", "text": "", "album_id": "72157626743522490", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3334/5731039818_050ddca258_o.jpg", "secret": "cc0cf4e334", "media": "photo", "latitude": "0", "id": "5731039818", "tags": "201105 avitalsbatmitzvah"}, {"datetaken": "2011-05-01 10:04:51", "license": "3", "title": "*", "text": "", "album_id": "72157626743522490", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3416/5731039950_5375dbf687_o.jpg", "secret": "6bb29538be", "media": "photo", "latitude": "0", "id": "5731039950", "tags": "201105 stuartschweitzer avitalsbatmitzvah"}, {"datetaken": "2011-05-01 10:06:56", "license": "3", "title": "*", "text": "", "album_id": "72157626743522490", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3401/5730488853_ce6f81c76c_o.jpg", "secret": "a48fe4ea32", "media": "photo", "latitude": "0", "id": "5730488853", "tags": "201105 avitalsbatmitzvah"}, {"datetaken": "2011-05-01 10:07:49", "license": "3", "title": "*", "text": "", "album_id": "72157626743522490", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5306/5730488959_a511a0f065_o.jpg", "secret": "03bf7c2774", "media": "photo", "latitude": "0", "id": "5730488959", "tags": "201105 avitalsbatmitzvah"}, {"datetaken": "2011-05-01 10:07:56", "license": "3", "title": "*", "text": "", "album_id": "72157626743522490", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2057/5731040418_6c3461e60b_o.jpg", "secret": "c19939f33c", "media": "photo", "latitude": "0", "id": "5731040418", "tags": "201105 avitalsbatmitzvah"}, {"datetaken": "2011-05-01 10:08:23", "license": "3", "title": "*", "text": "", "album_id": "72157626743522490", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3565/5731040568_4d9e76533b_o.jpg", "secret": "75c1d44348", "media": "photo", "latitude": "0", "id": "5731040568", "tags": "201105 avitalsbatmitzvah"}, {"datetaken": "2011-05-01 10:11:22", "license": "3", "title": "*", "text": "", "album_id": "72157626743522490", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2385/5731040642_3403570f3e_o.jpg", "secret": "89a8ab5ceb", "media": "photo", "latitude": "0", "id": "5731040642", "tags": "201105 avitalsbatmitzvah"}, {"datetaken": "2011-05-01 10:12:29", "license": "3", "title": "*", "text": "", "album_id": "72157626743522490", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3180/5730489645_9c85cc578f_o.jpg", "secret": "cb6a3a7d48", "media": "photo", "latitude": "0", "id": "5730489645", "tags": "201105 avitalsbatmitzvah"}, {"datetaken": "2011-05-01 10:15:00", "license": "3", "title": "*", "text": "", "album_id": "72157626743522490", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5141/5731040750_d9561c1a81_o.jpg", "secret": "78b4451171", "media": "photo", "latitude": "0", "id": "5731040750", "tags": "201105 avitalsbatmitzvah"}, {"datetaken": "2011-05-01 10:15:21", "license": "3", "title": "*", "text": "", "album_id": "72157626743522490", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2698/5731040844_b666c24946_o.jpg", "secret": "4f9ecb2758", "media": "photo", "latitude": "0", "id": "5731040844", "tags": "201105 avitalsbatmitzvah"}, {"datetaken": "2011-05-01 10:39:02", "license": "3", "title": "*", "text": "", "album_id": "72157626743522490", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2562/5730489955_f377a9969c_o.jpg", "secret": "f61bde23fe", "media": "photo", "latitude": "0", "id": "5730489955", "tags": "201105 avitalsbatmitzvah"}, {"datetaken": "2011-05-01 10:39:05", "license": "3", "title": "*", "text": "", "album_id": "72157626743522490", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5062/5731041144_5d5a8fec2c_o.jpg", "secret": "821ce630ef", "media": "photo", "latitude": "0", "id": "5731041144", "tags": "201105 avitalsbatmitzvah"}, {"datetaken": "2011-05-01 10:39:06", "license": "3", "title": "*", "text": "", "album_id": "72157626743522490", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5168/5731041724_b85ef01f2c_o.jpg", "secret": "acf83201af", "media": "photo", "latitude": "0", "id": "5731041724", "tags": "201105 avitalsbatmitzvah"}, {"datetaken": "2006-04-01 09:22:08", "license": "2", "title": "Maia, Bessie and Ariella", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/131505440_c23da275f7_o.jpg", "secret": "c23da275f7", "media": "photo", "latitude": "0", "id": "131505440", "tags": "family cleveland maia ariella bessie"}, {"datetaken": "2006-04-01 09:23:49", "license": "2", "title": "Bessie and Ariella", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/131505468_bda344849c_o.jpg", "secret": "bda344849c", "media": "photo", "latitude": "0", "id": "131505468", "tags": "family cleveland ariella bessie"}, {"datetaken": "2006-04-01 09:24:11", "license": "2", "title": "Maia", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/131505591_646b586497_o.jpg", "secret": "646b586497", "media": "photo", "latitude": "0", "id": "131505591", "tags": "family cleveland maia"}, {"datetaken": "2006-04-01 09:25:26", "license": "2", "title": "Mom", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/131505710_63ead8cfbb_o.jpg", "secret": "63ead8cfbb", "media": "photo", "latitude": "0", "id": "131505710", "tags": "family mom cleveland"}, {"datetaken": "2006-04-01 09:58:41", "license": "2", "title": "Ariella and Mom", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/131505888_994c5e1e4a_o.jpg", "secret": "994c5e1e4a", "media": "photo", "latitude": "0", "id": "131505888", "tags": "family mom cleveland ariella"}, {"datetaken": "2006-04-01 10:13:45", "license": "2", "title": "Elisabeth", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/131505947_6c5371872d_o.jpg", "secret": "6c5371872d", "media": "photo", "latitude": "0", "id": "131505947", "tags": "family cleveland elisabeth batmitzvah"}, {"datetaken": "2006-04-01 10:15:10", "license": "2", "title": "Me and Maia", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/131506085_df76ae8a5d_o.jpg", "secret": "df76ae8a5d", "media": "photo", "latitude": "0", "id": "131506085", "tags": "family cleveland maia eliya"}, {"datetaken": "2006-04-01 10:17:04", "license": "2", "title": "Emily", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/131506162_797acc5bd4_o.jpg", "secret": "797acc5bd4", "media": "photo", "latitude": "0", "id": "131506162", "tags": "family emily cleveland batmitzvah"}, {"datetaken": "2006-04-01 11:49:38", "license": "2", "title": "Ethan", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/131506287_d094fc943b_o.jpg", "secret": "d094fc943b", "media": "photo", "latitude": "0", "id": "131506287", "tags": "family cleveland ethan"}, {"datetaken": "2006-04-01 11:50:06", "license": "2", "title": "Me and Ethan", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/131506441_3693281d39_o.jpg", "secret": "3693281d39", "media": "photo", "latitude": "0", "id": "131506441", "tags": "family cleveland ethan eliya"}, {"datetaken": "2006-04-01 11:50:29", "license": "2", "title": "Rachel", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/131506583_6bedf25e6c_o.jpg", "secret": "6bedf25e6c", "media": "photo", "latitude": "0", "id": "131506583", "tags": "family rachel cleveland"}, {"datetaken": "2006-04-01 11:51:21", "license": "2", "title": "Emily, Elisabeth and Bessie", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/131506731_6435e0db49_o.jpg", "secret": "6435e0db49", "media": "photo", "latitude": "0", "id": "131506731", "tags": "family emily cleveland elisabeth bessie"}, {"datetaken": "2006-04-01 11:51:55", "license": "2", "title": "Evelyn", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/131506915_fb90827e25_o.jpg", "secret": "fb90827e25", "media": "photo", "latitude": "0", "id": "131506915", "tags": "family evelyn cleveland"}, {"datetaken": "2006-04-01 11:53:13", "license": "2", "title": "Maia", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/131507069_8376b52920_o.jpg", "secret": "8376b52920", "media": "photo", "latitude": "0", "id": "131507069", "tags": "family cleveland maia"}, {"datetaken": "2006-04-01 11:53:19", "license": "2", "title": "Maia Spins", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/131507217_669dd1302e_o.jpg", "secret": "669dd1302e", "media": "photo", "latitude": "0", "id": "131507217", "tags": "family cleveland maia"}, {"datetaken": "2006-04-01 11:55:17", "license": "2", "title": "Carmie and Bobby", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/131507352_c89fa95dd3_o.jpg", "secret": "c89fa95dd3", "media": "photo", "latitude": "0", "id": "131507352", "tags": "family cleveland bobby morton carmie"}, {"datetaken": "2006-04-01 11:55:31", "license": "2", "title": "Me and Maia", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/131507470_6cc16c5160_o.jpg", "secret": "6cc16c5160", "media": "photo", "latitude": "0", "id": "131507470", "tags": "family cleveland maia eliya"}, {"datetaken": "2006-04-01 11:55:39", "license": "2", "title": "Rachel and Uri", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/131507560_b3c8ef5bcd_o.jpg", "secret": "b3c8ef5bcd", "media": "photo", "latitude": "0", "id": "131507560", "tags": "family rachel cleveland uri"}, {"datetaken": "2006-04-01 12:06:26", "license": "2", "title": "Maia", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/131507669_7b459ba5d5_o.jpg", "secret": "7b459ba5d5", "media": "photo", "latitude": "0", "id": "131507669", "tags": "cleveland maia famliy"}, {"datetaken": "2006-04-01 13:53:40", "license": "2", "title": "Renan and Ethan", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/131507787_c0ec650b8b_o.jpg", "secret": "c0ec650b8b", "media": "photo", "latitude": "0", "id": "131507787", "tags": "family cleveland ethan renan"}, {"datetaken": "2006-04-01 13:53:58", "license": "2", "title": "Ethan", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/131507920_5ae6d7ba5a_o.jpg", "secret": "5ae6d7ba5a", "media": "photo", "latitude": "0", "id": "131507920", "tags": "family cleveland ethan"}, {"datetaken": "2006-04-01 13:54:11", "license": "2", "title": "Ariella", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/131508104_bf889bf461_o.jpg", "secret": "bf889bf461", "media": "photo", "latitude": "0", "id": "131508104", "tags": "cleveland famliy ariella"}, {"datetaken": "2006-04-01 13:54:22", "license": "2", "title": "Bob and Maia", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/131508276_37b7e3d0de_o.jpg", "secret": "37b7e3d0de", "media": "photo", "latitude": "0", "id": "131508276", "tags": "cleveland bobby maia morton"}, {"datetaken": "2006-04-01 13:54:53", "license": "2", "title": "Neil", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/131508456_f38f74209b_o.jpg", "secret": "f38f74209b", "media": "photo", "latitude": "0", "id": "131508456", "tags": "family cleveland neil"}, {"datetaken": "2006-04-01 14:29:39", "license": "2", "title": "Grant", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/131508654_ad6e40a9d7_o.jpg", "secret": "ad6e40a9d7", "media": "photo", "latitude": "0", "id": "131508654", "tags": "family twins grant cleveland"}, {"datetaken": "2006-04-01 14:29:47", "license": "2", "title": "Jill", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/131508942_5c170c423a_o.jpg", "secret": "5c170c423a", "media": "photo", "latitude": "0", "id": "131508942", "tags": "family jill cleveland"}, {"datetaken": "2006-04-01 17:54:45", "license": "2", "title": "IMG_5786", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/131509122_8548fe7f3c_o.jpg", "secret": "8548fe7f3c", "media": "photo", "latitude": "0", "id": "131509122", "tags": "cleveland"}, {"datetaken": "2006-04-01 18:00:49", "license": "2", "title": "IMG_5788", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/131509262_330646bc06_o.jpg", "secret": "330646bc06", "media": "photo", "latitude": "0", "id": "131509262", "tags": "cleveland"}, {"datetaken": "2006-04-01 19:14:21", "license": "2", "title": "Fambly", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/131509421_736166826b_o.jpg", "secret": "736166826b", "media": "photo", "latitude": "0", "id": "131509421", "tags": "family emily rachel cleveland bobby isabel maia ariella eliya morton uri bessie carmie"}, {"datetaken": "2006-04-01 19:40:16", "license": "2", "title": "Emily and Maia", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/131509586_a5d0d12a96_o.jpg", "secret": "a5d0d12a96", "media": "photo", "latitude": "0", "id": "131509586", "tags": "family emily cleveland maia"}, {"datetaken": "2006-04-01 19:48:00", "license": "2", "title": "Dancin", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/131509672_f412269a85_o.jpg", "secret": "f412269a85", "media": "photo", "latitude": "0", "id": "131509672", "tags": "dance dancing cleveland batmiztvah"}, {"datetaken": "2006-04-01 19:48:16", "license": "2", "title": "Slider", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/131509708_d9c4526918_o.jpg", "secret": "d9c4526918", "media": "photo", "latitude": "0", "id": "131509708", "tags": "cleveland mascot slider"}, {"datetaken": "2006-04-01 19:48:46", "license": "2", "title": "Slider", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/131509875_07a9c0ac6a_o.jpg", "secret": "07a9c0ac6a", "media": "photo", "latitude": "0", "id": "131509875", "tags": "cleveland mascot slider"}, {"datetaken": "2006-04-01 19:49:52", "license": "2", "title": "Me and Maia", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/131510128_1805333573_o.jpg", "secret": "1805333573", "media": "photo", "latitude": "0", "id": "131510128", "tags": "family cleveland maia eliya"}, {"datetaken": "2006-04-01 20:03:34", "license": "2", "title": "Me and Ariella", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/131510318_3b18c3886d_o.jpg", "secret": "3b18c3886d", "media": "photo", "latitude": "0", "id": "131510318", "tags": "family cleveland ariella eliya"}, {"datetaken": "2006-04-01 20:24:46", "license": "2", "title": "Ethan", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/131510431_8d36cc461b_o.jpg", "secret": "8d36cc461b", "media": "photo", "latitude": "0", "id": "131510431", "tags": "family cleveland ethan"}, {"datetaken": "2006-04-01 20:25:06", "license": "2", "title": "Ethan and Levines", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/131510570_99a9f52928_o.jpg", "secret": "99a9f52928", "media": "photo", "latitude": "0", "id": "131510570", "tags": "family cleveland ethan bobby ariella renan morton carmie"}, {"datetaken": "2006-04-01 20:36:34", "license": "2", "title": "Elisabeth, Emily and Bessie", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/131510628_e7c03081f1_o.jpg", "secret": "e7c03081f1", "media": "photo", "latitude": "0", "id": "131510628", "tags": "family emily cleveland elisabeth"}, {"datetaken": "2006-04-01 20:48:24", "license": "2", "title": "Me with Silly Stuff On", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/131510843_07193b357f_o.jpg", "secret": "07193b357f", "media": "photo", "latitude": "0", "id": "131510843", "tags": "cleveland eliya"}, {"datetaken": "2006-04-01 20:52:30", "license": "2", "title": "Ethan and Friend Sing", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/131510880_e499ecb6b0_o.jpg", "secret": "e499ecb6b0", "media": "photo", "latitude": "0", "id": "131510880", "tags": "cleveland ethan famliy"}, {"datetaken": "2006-04-01 20:53:50", "license": "2", "title": "Ethan and Friend Sing", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/131511023_d1cb14f5b7_o.jpg", "secret": "d1cb14f5b7", "media": "photo", "latitude": "0", "id": "131511023", "tags": "family cleveland ethan"}, {"datetaken": "2006-04-01 20:55:46", "license": "2", "title": "Ethan Sings", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/131511090_d540eea2c2_o.jpg", "secret": "d540eea2c2", "media": "photo", "latitude": "0", "id": "131511090", "tags": "family cleveland ethan"}, {"datetaken": "2006-04-02 15:05:37", "license": "2", "title": "Doggie", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/131511355_cb7ee2de55_o.jpg", "secret": "cb7ee2de55", "media": "photo", "latitude": "0", "id": "131511355", "tags": "dog cleveland"}, {"datetaken": "2006-04-02 15:15:00", "license": "2", "title": "Raising the Basketball Net", "text": "", "album_id": "72057594111606077", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/131511593_6f36c830a9_o.jpg", "secret": "6f36c830a9", "media": "photo", "latitude": "0", "id": "131511593", "tags": "family emily cleveland"}, {"datetaken": "2006-06-12 10:20:04", "license": "5", "title": "pale feet on singing beach", "text": "", "album_id": "72157607016012045", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3271/2809737562_ab8c3c3a16_o.jpg", "secret": "3585288341", "media": "photo", "latitude": "0", "id": "2809737562", "tags": ""}, {"datetaken": "2006-06-12 10:20:34", "license": "5", "title": "Liza reminiscing on singing beach", "text": "", "album_id": "72157607016012045", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3225/2809737774_8e346b5b68_o.jpg", "secret": "4f49705c32", "media": "photo", "latitude": "0", "id": "2809737774", "tags": "liza"}, {"datetaken": "2006-06-12 10:20:38", "license": "5", "title": "Liza looking back at Andrew", "text": "", "album_id": "72157607016012045", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3272/2808890133_5e6349a7e7_o.jpg", "secret": "1e5f7f114e", "media": "photo", "latitude": "0", "id": "2808890133", "tags": "liza"}, {"datetaken": "2006-06-12 10:23:09", "license": "5", "title": "Singing Beach", "text": "", "album_id": "72157607016012045", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3282/2808890305_e5487ca36b_o.jpg", "secret": "bfdb6ebc70", "media": "photo", "latitude": "0", "id": "2808890305", "tags": ""}, {"datetaken": "2006-06-12 10:23:16", "license": "5", "title": "Beautiful ocean, rock and beach", "text": "", "album_id": "72157607016012045", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3160/2809738278_394fa0fc46_o.jpg", "secret": "47828c1cd8", "media": "photo", "latitude": "0", "id": "2809738278", "tags": ""}, {"datetaken": "2006-06-12 10:25:52", "license": "5", "title": "Andrew testing out the Atlantic Ocean", "text": "", "album_id": "72157607016012045", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3195/2809738386_a423a9bda1_o.jpg", "secret": "0400d871cd", "media": "photo", "latitude": "0", "id": "2809738386", "tags": "andrew"}, {"datetaken": "2006-06-12 10:26:09", "license": "5", "title": "Finding out just how cold it is all over again...brrrr", "text": "", "album_id": "72157607016012045", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3039/2809738468_3e28cc6ed5_o.jpg", "secret": "3f9da84f77", "media": "photo", "latitude": "0", "id": "2809738468", "tags": "andrew"}, {"datetaken": "2006-06-12 10:26:38", "license": "5", "title": "Liza and Andrew in love", "text": "", "album_id": "72157607016012045", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3145/2808890903_3ba3231b07_o.jpg", "secret": "b0e048f0b1", "media": "photo", "latitude": "0", "id": "2808890903", "tags": "liza andrew"}, {"datetaken": "2006-06-12 10:39:45", "license": "5", "title": "Enjoying some Italian Ice on a warm day", "text": "", "album_id": "72157607016012045", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3136/2808891067_c4a2039edb_o.jpg", "secret": "162c2e846b", "media": "photo", "latitude": "0", "id": "2808891067", "tags": ""}, {"datetaken": "2006-06-12 11:16:29", "license": "5", "title": "Liza points to her freshman dorm room in Wood Hall", "text": "", "album_id": "72157607016012045", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3294/2809739032_c80c90c848_o.jpg", "secret": "ca95b323f4", "media": "photo", "latitude": "0", "id": "2809739032", "tags": ""}, {"datetaken": "2006-06-12 11:17:58", "license": "5", "title": "Liza lived where the tiny window is for 2 years. Wood Hall will be taken down soon.", "text": "", "album_id": "72157607016012045", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3042/2808891393_3524acdbcf_o.jpg", "secret": "84b8f9ca18", "media": "photo", "latitude": "0", "id": "2808891393", "tags": ""}, {"datetaken": "2006-06-12 11:18:14", "license": "5", "title": "New Chase Hall on Gordon College campus", "text": "", "album_id": "72157607016012045", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3074/2809739418_5aa2012c2f_o.jpg", "secret": "46ba183c88", "media": "photo", "latitude": "0", "id": "2809739418", "tags": ""}, {"datetaken": "2007-05-28 14:45:56", "license": "5", "title": "Walking on the Tybee Beach", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3248/2810319910_997b9c5598_o.jpg", "secret": "4d64986f4c", "media": "photo", "latitude": "0", "id": "2810319910", "tags": "liza andrew"}, {"datetaken": "2007-05-28 14:49:49", "license": "5", "title": "A stop on the boardwalk", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3125/2810320110_aaae729bc5_o.jpg", "secret": "8d64604686", "media": "photo", "latitude": "0", "id": "2810320110", "tags": "liza andrew sharpteam"}, {"datetaken": "2007-05-28 16:43:21", "license": "5", "title": "Heading down to the board walk in Savannah", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3126/2809472317_b46207eb65_o.jpg", "secret": "35c7e798b8", "media": "photo", "latitude": "0", "id": "2809472317", "tags": "andrew"}, {"datetaken": "2007-05-28 16:45:31", "license": "5", "title": "Andrew and Liza in love along the pier", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3226/2809472465_f9ef3cabf9_o.jpg", "secret": "7f4ccb5ab5", "media": "photo", "latitude": "0", "id": "2809472465", "tags": "liza andrew"}, {"datetaken": "2007-05-28 16:50:27", "license": "5", "title": "Great restaraunts", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3122/2809472623_50720f64fd_o.jpg", "secret": "d4b528ee4e", "media": "photo", "latitude": "0", "id": "2809472623", "tags": ""}, {"datetaken": "2007-05-28 16:50:33", "license": "5", "title": "Sweet cobblestone streets", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3002/2810320624_1f8a4c0235_o.jpg", "secret": "81524c61f0", "media": "photo", "latitude": "0", "id": "2810320624", "tags": ""}, {"datetaken": "2007-05-28 17:11:35", "license": "5", "title": "Paddle wheel boat", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3242/2809472909_caeb8e54a8_o.jpg", "secret": "867469e180", "media": "photo", "latitude": "0", "id": "2809472909", "tags": ""}, {"datetaken": "2007-05-28 17:11:58", "license": "5", "title": "Chart House", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3296/2809473059_2d74edd776_o.jpg", "secret": "4825a91fb9", "media": "photo", "latitude": "0", "id": "2809473059", "tags": ""}, {"datetaken": "2007-05-28 17:12:30", "license": "5", "title": "Andrew", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3077/2809473209_ab6e4726fe_o.jpg", "secret": "43d8df594a", "media": "photo", "latitude": "0", "id": "2809473209", "tags": "andrew"}, {"datetaken": "2007-05-28 17:48:23", "license": "5", "title": "molten chocolate lava cake", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3246/2809473345_e81deefec9_o.jpg", "secret": "91bbc97cde", "media": "photo", "latitude": "0", "id": "2809473345", "tags": ""}, {"datetaken": "2007-05-28 17:59:23", "license": "5", "title": "Savannah Street", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3023/2810321314_93569665f3_o.jpg", "secret": "22c28aafa2", "media": "photo", "latitude": "0", "id": "2810321314", "tags": ""}, {"datetaken": "2007-05-28 17:59:27", "license": "5", "title": "great old buildings", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3068/2810321452_508f12ed05_o.jpg", "secret": "00e461173b", "media": "photo", "latitude": "0", "id": "2810321452", "tags": ""}, {"datetaken": "2007-05-28 17:59:38", "license": "5", "title": "", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3192/2810321568_850653e2eb_o.jpg", "secret": "5c32312e45", "media": "photo", "latitude": "0", "id": "2810321568", "tags": ""}, {"datetaken": "2007-05-28 18:10:44", "license": "5", "title": "beautiful churches", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3175/2809474015_30eeaf2c59_o.jpg", "secret": "c89406512b", "media": "photo", "latitude": "0", "id": "2809474015", "tags": ""}, {"datetaken": "2007-05-29 07:25:47", "license": "5", "title": "The Lighthouse Inn Bed and Breakfast on Tybee Island", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3269/2809471089_d566b3ed6e_o.jpg", "secret": "08479a7c03", "media": "photo", "latitude": "0", "id": "2809471089", "tags": ""}, {"datetaken": "2007-05-29 07:26:00", "license": "5", "title": "Sweet porch, wonderful place to stay", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3223/2810319194_6d7a69a31f_o.jpg", "secret": "820e4b4bdb", "media": "photo", "latitude": "0", "id": "2810319194", "tags": ""}, {"datetaken": "2007-05-29 07:26:17", "license": "5", "title": "This was military housing for Fort Screven", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3139/2810319376_a7800dc59c_o.jpg", "secret": "dd8617348f", "media": "photo", "latitude": "0", "id": "2810319376", "tags": ""}, {"datetaken": "2007-05-29 07:26:53", "license": "5", "title": "Andrew with the Element", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3272/2809471637_0029f0c7b6_o.jpg", "secret": "44e6cc1fcb", "media": "photo", "latitude": "0", "id": "2809471637", "tags": ""}, {"datetaken": "2007-05-29 07:35:06", "license": "5", "title": "Tybee Island Light House", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3192/2809474201_ec54444f4e_o.jpg", "secret": "f5376c0cf2", "media": "photo", "latitude": "0", "id": "2809474201", "tags": ""}, {"datetaken": "2007-05-29 07:35:19", "license": "5", "title": "", "text": "", "album_id": "72157607019124715", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3072/2809474327_95d20b605c_o.jpg", "secret": "84f6ec2fdd", "media": "photo", "latitude": "0", "id": "2809474327", "tags": ""}, {"datetaken": "2006-11-17 19:14:15", "license": "5", "title": "Thanksgiving dinner a week early, woohoo!", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3045/2809526575_751d51b5e2_o.jpg", "secret": "7074ea3e94", "media": "photo", "latitude": "0", "id": "2809526575", "tags": ""}, {"datetaken": "2006-11-17 19:42:49", "license": "5", "title": "Andrew and his mom", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3206/2810373830_dfd3247b17_o.jpg", "secret": "f9d2a752e7", "media": "photo", "latitude": "0", "id": "2810373830", "tags": ""}, {"datetaken": "2006-11-17 19:43:51", "license": "5", "title": "Birthday celebrations for both Jean and Bill", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3116/2810373934_a21a8e331d_o.jpg", "secret": "953d04d1ea", "media": "photo", "latitude": "0", "id": "2810373934", "tags": ""}, {"datetaken": "2006-11-17 19:45:50", "license": "5", "title": "Happy Birthday Dad", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3291/2809526995_52416ebdec_o.jpg", "secret": "a92ab1b57f", "media": "photo", "latitude": "0", "id": "2809526995", "tags": ""}, {"datetaken": "2006-11-18 12:06:05", "license": "5", "title": "Off to the Bayou Bend Nature Center. Andrew taunting a fake falcon", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3024/2809527169_5f10d80ef4_o.jpg", "secret": "7d7bdab5be", "media": "photo", "latitude": "0", "id": "2809527169", "tags": ""}, {"datetaken": "2006-11-18 12:06:20", "license": "5", "title": "The real falcon behind bars", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3185/2810374390_6bba71d046_o.jpg", "secret": "d3f4df3eb1", "media": "photo", "latitude": "0", "id": "2810374390", "tags": ""}, {"datetaken": "2006-11-18 12:08:22", "license": "5", "title": "Bill and Jean checking out nature", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3070/2809527509_bb905d1a82_o.jpg", "secret": "6662ba9161", "media": "photo", "latitude": "0", "id": "2809527509", "tags": ""}, {"datetaken": "2006-11-18 12:10:38", "license": "5", "title": "2 turtles in a serious algae bloom", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3084/2809527717_7771e111d0_o.jpg", "secret": "50c804a3be", "media": "photo", "latitude": "0", "id": "2809527717", "tags": ""}, {"datetaken": "2006-11-18 12:15:10", "license": "5", "title": "Jean overlooking the pond", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3211/2810374986_d22d4db03b_o.jpg", "secret": "ac2a64b395", "media": "photo", "latitude": "0", "id": "2810374986", "tags": ""}, {"datetaken": "2006-11-18 12:22:59", "license": "5", "title": "A soft shell turtle", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3259/2810375202_f7e4f55e80_o.jpg", "secret": "3e3c45389e", "media": "photo", "latitude": "0", "id": "2810375202", "tags": ""}, {"datetaken": "2006-11-18 12:35:44", "license": "5", "title": "Bill & Jean along the prairie trail", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3123/2809528223_23a96930d8_o.jpg", "secret": "8cfcf58285", "media": "photo", "latitude": "0", "id": "2809528223", "tags": ""}, {"datetaken": "2006-11-18 12:43:55", "license": "5", "title": "Jean able to see some prairie grass", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3018/2809528357_15147bcd05_o.jpg", "secret": "b0b7ee72c0", "media": "photo", "latitude": "0", "id": "2809528357", "tags": ""}, {"datetaken": "2006-11-18 12:53:55", "license": "5", "title": "Checking out the hay barn", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3106/2809528505_8131a35094_o.jpg", "secret": "979ca77150", "media": "photo", "latitude": "0", "id": "2809528505", "tags": ""}, {"datetaken": "2006-11-18 12:55:31", "license": "5", "title": "Liza sad that the windmill lost it's mill", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3273/2810375792_f1e6fde6a3_o.jpg", "secret": "5a1f164163", "media": "photo", "latitude": "0", "id": "2810375792", "tags": ""}, {"datetaken": "2006-11-18 12:55:38", "license": "5", "title": "The impact of Rita still being felt", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3288/2810375982_0aa3094455_o.jpg", "secret": "07558d0068", "media": "photo", "latitude": "0", "id": "2810375982", "tags": ""}, {"datetaken": "2006-11-18 13:00:41", "license": "5", "title": "Pretty pond at the Nature Center", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3213/2809529119_c235af389c_o.jpg", "secret": "7dccb9a837", "media": "photo", "latitude": "0", "id": "2809529119", "tags": ""}, {"datetaken": "2006-11-18 13:00:50", "license": "5", "title": "another good shot of the pond", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3043/2810376456_66fe73a894_o.jpg", "secret": "ff18381738", "media": "photo", "latitude": "0", "id": "2810376456", "tags": ""}, {"datetaken": "2006-11-18 13:01:44", "license": "5", "title": "Bill, Jean, Liza and Andrew in a self-timer shot", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3277/2809529599_159ef4ca27_o.jpg", "secret": "14e65a7d18", "media": "photo", "latitude": "0", "id": "2809529599", "tags": ""}, {"datetaken": "2006-11-18 14:37:13", "license": "5", "title": "Bill on the Kemah boardwalk", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3080/2809529899_f8a19952df_o.jpg", "secret": "882108ba44", "media": "photo", "latitude": "0", "id": "2809529899", "tags": ""}, {"datetaken": "2006-11-18 14:43:31", "license": "5", "title": "Posing on the boardwalk", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3054/2809530027_c45823f4a2_o.jpg", "secret": "3c71f24c80", "media": "photo", "latitude": "0", "id": "2809530027", "tags": ""}, {"datetaken": "2006-11-18 14:52:25", "license": "5", "title": "Riding the Kemah Observation tower", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3154/2809530207_c945c2f470_o.jpg", "secret": "cbffc3b195", "media": "photo", "latitude": "0", "id": "2809530207", "tags": ""}, {"datetaken": "2006-11-18 14:52:34", "license": "5", "title": "The tpos of the Landry's restaraunts", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3111/2810377548_3a831fe7fc_o.jpg", "secret": "445cb6e22a", "media": "photo", "latitude": "0", "id": "2810377548", "tags": ""}, {"datetaken": "2006-11-18 14:52:44", "license": "5", "title": "The rides at Kemah", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3091/2809530571_29fa4cf951_o.jpg", "secret": "799afcf6d5", "media": "photo", "latitude": "0", "id": "2809530571", "tags": ""}, {"datetaken": "2006-11-18 14:52:53", "license": "5", "title": "Galveston coastline", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3231/2809530755_959f1c653f_o.jpg", "secret": "86ac9dd1ec", "media": "photo", "latitude": "0", "id": "2809530755", "tags": ""}, {"datetaken": "2006-11-18 14:54:14", "license": "5", "title": "Boats in Galveston Bay", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3127/2809530915_73b1851c53_o.jpg", "secret": "a315f2a4e5", "media": "photo", "latitude": "0", "id": "2809530915", "tags": ""}, {"datetaken": "2006-11-18 14:54:19", "license": "5", "title": "Liza having fun", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3003/2809531093_a8beeeece2_o.jpg", "secret": "50517d0d0e", "media": "photo", "latitude": "0", "id": "2809531093", "tags": ""}, {"datetaken": "2006-11-18 14:54:29", "license": "5", "title": "Boats going in and out of the 3rd most populated ship harbour", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2099/2809531239_682f658500_o.jpg", "secret": "2e9e3695cf", "media": "photo", "latitude": "0", "id": "2809531239", "tags": ""}, {"datetaken": "2006-11-18 14:54:33", "license": "5", "title": "One of Landry's many restaraunts", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2152/2810378662_e808be22b9_o.jpg", "secret": "9bd31053c9", "media": "photo", "latitude": "0", "id": "2810378662", "tags": ""}, {"datetaken": "2006-11-18 14:54:41", "license": "5", "title": "The parking lot", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3052/2810379022_140ee4e3cc_o.jpg", "secret": "b264e3c33b", "media": "photo", "latitude": "0", "id": "2810379022", "tags": ""}, {"datetaken": "2006-11-18 14:54:49", "license": "5", "title": "Bill & Jean having fun", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3164/2810379186_97a83dc6e6_o.jpg", "secret": "e97255f92b", "media": "photo", "latitude": "0", "id": "2810379186", "tags": ""}, {"datetaken": "2006-11-18 16:46:52", "license": "5", "title": "On the Ferry Ride Liza spotted a sign of Vermont", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3107/2810379328_f4b76559fd_o.jpg", "secret": "a5eca2638f", "media": "photo", "latitude": "0", "id": "2810379328", "tags": ""}, {"datetaken": "2006-11-18 17:00:10", "license": "5", "title": "The Element on the beach", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3111/2810379558_35e11d0fcf_o.jpg", "secret": "5c7fa95d1d", "media": "photo", "latitude": "0", "id": "2810379558", "tags": ""}, {"datetaken": "2006-11-18 17:01:38", "license": "5", "title": "Andrew loves Liza", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3026/2810379732_d732fc4d2e_o.jpg", "secret": "279d56d8ec", "media": "photo", "latitude": "0", "id": "2810379732", "tags": ""}, {"datetaken": "2006-11-18 17:01:46", "license": "5", "title": "And Liza loves Andrew", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3174/2809532693_547e09dc98_o.jpg", "secret": "f4662cdbe2", "media": "photo", "latitude": "0", "id": "2809532693", "tags": ""}, {"datetaken": "2006-11-18 17:02:05", "license": "5", "title": "Jean and Bill love each other", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3243/2809532859_a8a560bb8c_o.jpg", "secret": "660e97e42b", "media": "photo", "latitude": "0", "id": "2809532859", "tags": ""}, {"datetaken": "2006-11-18 17:02:25", "license": "5", "title": "And you gotta love the Element", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3165/2810380286_8f9e772bce_o.jpg", "secret": "b7f0ff48c7", "media": "photo", "latitude": "0", "id": "2810380286", "tags": ""}, {"datetaken": "2006-11-18 17:02:39", "license": "5", "title": "Cool homes going up all along the coast", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3039/2810380428_fa1cae2d71_o.jpg", "secret": "99e5fb8679", "media": "photo", "latitude": "0", "id": "2810380428", "tags": ""}, {"datetaken": "2006-11-18 17:02:44", "license": "5", "title": "Great porches and balconies", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3076/2809533433_08d04437f6_o.jpg", "secret": "f56aa3f9a6", "media": "photo", "latitude": "0", "id": "2809533433", "tags": ""}, {"datetaken": "2006-11-18 17:03:19", "license": "5", "title": "Andrew & Liza's shadows say \"Hi\"", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3253/2810380728_083ab902db_o.jpg", "secret": "c58a009567", "media": "photo", "latitude": "0", "id": "2810380728", "tags": ""}, {"datetaken": "2006-11-18 17:03:52", "license": "5", "title": "And even their shadows love each other", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3200/2809533751_be8878d7be_o.jpg", "secret": "7600baa8c5", "media": "photo", "latitude": "0", "id": "2809533751", "tags": ""}, {"datetaken": "2006-11-18 17:09:26", "license": "5", "title": "It's Texas... need we say more", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3004/2810381080_cf77097423_o.jpg", "secret": "af3349a2db", "media": "photo", "latitude": "0", "id": "2810381080", "tags": ""}, {"datetaken": "2006-11-18 17:47:37", "license": "5", "title": "Coming back on the ferry", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3066/2809534041_80b7d315fd_o.jpg", "secret": "59e8d85cd4", "media": "photo", "latitude": "0", "id": "2809534041", "tags": ""}, {"datetaken": "2006-11-18 17:47:54", "license": "5", "title": "Beautiful sun over the water", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3051/2810381388_e2abfea43f_o.jpg", "secret": "da91a46fa8", "media": "photo", "latitude": "0", "id": "2810381388", "tags": ""}, {"datetaken": "2006-11-18 17:49:40", "license": "5", "title": "We saw dolphins on our way back", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2104/2810381538_ef2afcf734_o.jpg", "secret": "f284683bf4", "media": "photo", "latitude": "0", "id": "2810381538", "tags": ""}, {"datetaken": "2006-11-18 17:49:45", "license": "5", "title": "They were playing in the water", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3275/2809534497_c52491c5ca_o.jpg", "secret": "9e183fdf1b", "media": "photo", "latitude": "0", "id": "2809534497", "tags": ""}, {"datetaken": "2006-11-18 17:50:10", "license": "5", "title": "We had fun", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3225/2810381858_a1fab6d57a_o.jpg", "secret": "3e4a680b2c", "media": "photo", "latitude": "0", "id": "2810381858", "tags": ""}, {"datetaken": "2006-11-19 10:53:59", "license": "5", "title": "Breakfast at Julie Victoria's near Rice University", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3168/2809534817_2c26e596f6_o.jpg", "secret": "88e01c3169", "media": "photo", "latitude": "0", "id": "2809534817", "tags": ""}, {"datetaken": "2006-11-19 13:26:31", "license": "5", "title": "And then a walk in the Arboretum", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3156/2809534975_6618a009c5_o.jpg", "secret": "4c6d902cf1", "media": "photo", "latitude": "0", "id": "2809534975", "tags": ""}, {"datetaken": "2006-11-19 13:35:38", "license": "5", "title": "Bill & Jean at the arboretum. Thanks for coming to visit!", "text": "", "album_id": "72157607019353399", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3084/2810382350_662acff90e_o.jpg", "secret": "dfa9398ab2", "media": "photo", "latitude": "0", "id": "2810382350", "tags": ""}, {"datetaken": "2002-10-23 12:20:59", "license": "3", "title": "CNV00013", "text": "", "album_id": "72157594452196120", "longitude": "-4.745750", "url_o": "https://farm1.staticflickr.com/137/341143886_cebda534f4_o.jpg", "secret": "cebda534f4", "media": "photo", "latitude": "48.039528", "id": "341143886", "tags": "brittany quimper"}, {"datetaken": "2002-10-23 12:21:01", "license": "3", "title": "CNV00014", "text": "", "album_id": "72157594452196120", "longitude": "-4.745750", "url_o": "https://farm1.staticflickr.com/149/341144017_313af97dda_o.jpg", "secret": "313af97dda", "media": "photo", "latitude": "48.039528", "id": "341144017", "tags": "brittany quimper"}, {"datetaken": "2002-10-23 12:21:03", "license": "3", "title": "CNV00015", "text": "", "album_id": "72157594452196120", "longitude": "-4.745750", "url_o": "https://farm1.staticflickr.com/154/341144146_32aa27314d_o.jpg", "secret": "32aa27314d", "media": "photo", "latitude": "48.039528", "id": "341144146", "tags": "brittany quimper"}, {"datetaken": "2002-10-23 12:21:07", "license": "3", "title": "CNV00016", "text": "", "album_id": "72157594452196120", "longitude": "-4.745750", "url_o": "https://farm1.staticflickr.com/157/341144279_2aca14c582_o.jpg", "secret": "2aca14c582", "media": "photo", "latitude": "48.039528", "id": "341144279", "tags": "brittany quimper"}, {"datetaken": "2002-10-23 12:21:10", "license": "3", "title": "CNV00017", "text": "", "album_id": "72157594452196120", "longitude": "-4.745750", "url_o": "https://farm1.staticflickr.com/138/341144394_5e2d08b46a_o.jpg", "secret": "5e2d08b46a", "media": "photo", "latitude": "48.039528", "id": "341144394", "tags": "brittany quimper"}, {"datetaken": "2002-10-23 12:21:12", "license": "3", "title": "CNV00018", "text": "", "album_id": "72157594452196120", "longitude": "-4.745750", "url_o": "https://farm1.staticflickr.com/138/341144531_ae703bc5f2_o.jpg", "secret": "ae703bc5f2", "media": "photo", "latitude": "48.039528", "id": "341144531", "tags": "brittany quimper"}, {"datetaken": "2002-10-23 12:21:15", "license": "3", "title": "CNV00019", "text": "", "album_id": "72157594452196120", "longitude": "-4.745750", "url_o": "https://farm1.staticflickr.com/125/341144691_5bf5d254e7_o.jpg", "secret": "5bf5d254e7", "media": "photo", "latitude": "48.039528", "id": "341144691", "tags": "brittany quimper"}, {"datetaken": "2002-10-23 12:21:16", "license": "3", "title": "CNV00020", "text": "", "album_id": "72157594452196120", "longitude": "-4.745750", "url_o": "https://farm1.staticflickr.com/152/341144851_c4131f5fd1_o.jpg", "secret": "c4131f5fd1", "media": "photo", "latitude": "48.039528", "id": "341144851", "tags": "brittany quimper"}, {"datetaken": "2002-10-23 12:21:17", "license": "3", "title": "CNV00021", "text": "", "album_id": "72157594452196120", "longitude": "-4.745750", "url_o": "https://farm1.staticflickr.com/150/341144965_a64f78015c_o.jpg", "secret": "a64f78015c", "media": "photo", "latitude": "48.039528", "id": "341144965", "tags": "brittany quimper"}, {"datetaken": "2002-10-23 12:21:18", "license": "3", "title": "CNV00022", "text": "", "album_id": "72157594452196120", "longitude": "-4.745750", "url_o": "https://farm1.staticflickr.com/135/341145185_5378d0bbae_o.jpg", "secret": "5378d0bbae", "media": "photo", "latitude": "48.039528", "id": "341145185", "tags": "brittany quimper"}, {"datetaken": "2002-10-23 12:21:19", "license": "3", "title": "CNV00023", "text": "", "album_id": "72157594452196120", "longitude": "-4.128112", "url_o": "https://farm1.staticflickr.com/84/341145346_be02d76750_o.jpg", "secret": "be02d76750", "media": "photo", "latitude": "48.008300", "id": "341145346", "tags": "brittany quimper"}, {"datetaken": "2002-10-23 12:21:20", "license": "3", "title": "CNV00024", "text": "", "album_id": "72157594452196120", "longitude": "-4.128112", "url_o": "https://farm1.staticflickr.com/165/341145492_7ac4b1307a_o.jpg", "secret": "7ac4b1307a", "media": "photo", "latitude": "48.008300", "id": "341145492", "tags": "brittany quimper"}, {"datetaken": "2002-10-23 12:21:21", "license": "3", "title": "CNV00025", "text": "", "album_id": "72157594452196120", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/341145618_7f4321663e_o.jpg", "secret": "7f4321663e", "media": "photo", "latitude": "0", "id": "341145618", "tags": "brittany quimper"}, {"datetaken": "2002-10-23 12:21:22", "license": "3", "title": "CNV00026", "text": "", "album_id": "72157594452196120", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/341145747_ba73148dec_o.jpg", "secret": "ba73148dec", "media": "photo", "latitude": "0", "id": "341145747", "tags": "brittany quimper"}, {"datetaken": "2002-10-23 12:21:23", "license": "3", "title": "CNV00027", "text": "", "album_id": "72157594452196120", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/341143730_17f049c67f_o.jpg", "secret": "17f049c67f", "media": "photo", "latitude": "0", "id": "341143730", "tags": "brittany quimper"}, {"datetaken": "2007-01-01 08:55:53", "license": "1", "title": "paseo 1 enero", "text": "", "album_id": "72157594452943974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/341641078_3313104d0a_o.jpg", "secret": "3313104d0a", "media": "photo", "latitude": "0", "id": "341641078", "tags": "playas iquique paseos chanavayita"}, {"datetaken": "2007-01-01 08:56:10", "license": "1", "title": "paseo 1 enero", "text": "", "album_id": "72157594452943974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/341640090_aacd4a2d9d_o.jpg", "secret": "aacd4a2d9d", "media": "photo", "latitude": "0", "id": "341640090", "tags": "playas iquique paseos chanavayita"}, {"datetaken": "2007-01-01 10:13:32", "license": "1", "title": "pabell\u00f3n de pica", "text": "", "album_id": "72157594452943974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/341639669_5f98fb239a_o.jpg", "secret": "5f98fb239a", "media": "photo", "latitude": "0", "id": "341639669", "tags": "playas iquique paseos pabell\u00f3ndepica"}, {"datetaken": "2007-01-01 12:25:11", "license": "1", "title": "pabell\u00f3n de pica", "text": "", "album_id": "72157594452943974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/341639081_c15d3864b6_o.jpg", "secret": "c15d3864b6", "media": "photo", "latitude": "0", "id": "341639081", "tags": "playas iquique paseos pabell\u00f3ndepica"}, {"datetaken": "2007-01-01 12:25:43", "license": "1", "title": "pabell\u00f3n de pica", "text": "", "album_id": "72157594452943974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/341638287_53b70fcee1_o.jpg", "secret": "53b70fcee1", "media": "photo", "latitude": "0", "id": "341638287", "tags": "playas iquique paseos pabell\u00f3ndepica"}, {"datetaken": "2007-01-01 12:26:01", "license": "1", "title": "pabell\u00f3n de pica", "text": "", "album_id": "72157594452943974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/341637716_90bc097759_o.jpg", "secret": "90bc097759", "media": "photo", "latitude": "0", "id": "341637716", "tags": "playas iquique paseos pabell\u00f3ndepica"}, {"datetaken": "2007-01-01 12:29:02", "license": "1", "title": "no es cavancha", "text": "", "album_id": "72157594452943974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/341637263_ce9d83f868_o.jpg", "secret": "ce9d83f868", "media": "photo", "latitude": "0", "id": "341637263", "tags": "playas iquique paseos pabell\u00f3ndepica"}, {"datetaken": "2007-01-01 12:29:15", "license": "1", "title": "no es cavancha", "text": "", "album_id": "72157594452943974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/341636769_09ecaa97d2_o.jpg", "secret": "09ecaa97d2", "media": "photo", "latitude": "0", "id": "341636769", "tags": "playas iquique paseos pabell\u00f3ndepica"}, {"datetaken": "2007-01-01 12:30:33", "license": "1", "title": "no es cavancha", "text": "", "album_id": "72157594452943974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/341635886_71554557dc_o.jpg", "secret": "71554557dc", "media": "photo", "latitude": "0", "id": "341635886", "tags": "playas iquique paseos pabell\u00f3ndepica"}, {"datetaken": "2007-01-01 12:30:59", "license": "1", "title": "no es cavancha", "text": "", "album_id": "72157594452943974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/341635442_a45c47111c_o.jpg", "secret": "a45c47111c", "media": "photo", "latitude": "0", "id": "341635442", "tags": "playas iquique paseos pabell\u00f3ndepica"}, {"datetaken": "2007-01-01 12:31:50", "license": "1", "title": "no es cavancha", "text": "", "album_id": "72157594452943974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/341635035_be8f9d3bca_o.jpg", "secret": "be8f9d3bca", "media": "photo", "latitude": "0", "id": "341635035", "tags": "playas iquique paseos pabell\u00f3ndepica"}, {"datetaken": "2007-01-01 19:20:52", "license": "1", "title": "el duro retorno", "text": "", "album_id": "72157594452943974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/341634660_18599ad1cd_o.jpg", "secret": "18599ad1cd", "media": "photo", "latitude": "0", "id": "341634660", "tags": "ni\u00f1os mauro sobrinos maxi paseos"}, {"datetaken": "2007-01-01 19:21:03", "license": "1", "title": "el duro retorno", "text": "", "album_id": "72157594452943974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/341634306_a8b33c30bf_o.jpg", "secret": "a8b33c30bf", "media": "photo", "latitude": "0", "id": "341634306", "tags": "ni\u00f1os mauro sobrinos maxi paseos danha"}, {"datetaken": "2007-01-01 19:35:15", "license": "1", "title": "el duro retorno", "text": "", "album_id": "72157594452943974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/341633914_00ea235051_o.jpg", "secret": "00ea235051", "media": "photo", "latitude": "0", "id": "341633914", "tags": "ni\u00f1os mauro sobrinos maxi paseos"}, {"datetaken": "2007-01-01 20:00:25", "license": "1", "title": "el duro retorno", "text": "", "album_id": "72157594452943974", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/341633620_972d7bb4cb_o.jpg", "secret": "972d7bb4cb", "media": "photo", "latitude": "0", "id": "341633620", "tags": "ni\u00f1os mauro sobrinos maxi paseos"}, {"datetaken": "2009-11-29 08:39:50", "license": "1", "title": "Eagle Island", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4233721412_e94b82ae37_o.jpg", "secret": "5f00308698", "media": "photo", "latitude": "0", "id": "4233721412", "tags": ""}, {"datetaken": "2009-11-29 08:51:29", "license": "1", "title": "Eagle Island", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4233722232_91b5ce14e4_o.jpg", "secret": "084fba5fe1", "media": "photo", "latitude": "0", "id": "4233722232", "tags": ""}, {"datetaken": "2009-11-29 08:54:42", "license": "1", "title": "Eagle Island", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4232951035_420954a724_o.jpg", "secret": "ec1dc393d8", "media": "photo", "latitude": "0", "id": "4232951035", "tags": ""}, {"datetaken": "2009-11-29 08:58:05", "license": "1", "title": "Eagle Island", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4233723494_e73159dc3d_o.jpg", "secret": "e716b4a9e0", "media": "photo", "latitude": "0", "id": "4233723494", "tags": ""}, {"datetaken": "2009-11-29 15:42:32", "license": "1", "title": "Eagle Island", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4232952433_1f0bcb9162_o.jpg", "secret": "2c2c661d08", "media": "photo", "latitude": "0", "id": "4232952433", "tags": ""}, {"datetaken": "2009-11-29 15:43:36", "license": "1", "title": "Eagle Island", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2614/4232953243_c986902681_o.jpg", "secret": "29c1ff8ba5", "media": "photo", "latitude": "0", "id": "4232953243", "tags": ""}, {"datetaken": "2009-11-29 15:46:59", "license": "1", "title": "Eagle Island", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2635/4233725548_97a98bbf6a_o.jpg", "secret": "9f84724e4d", "media": "photo", "latitude": "0", "id": "4233725548", "tags": ""}, {"datetaken": "2009-11-30 08:12:37", "license": "1", "title": "Eagle Island", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4232954441_817f636124_o.jpg", "secret": "9c7098f0d1", "media": "photo", "latitude": "0", "id": "4232954441", "tags": ""}, {"datetaken": "2009-11-30 08:13:19", "license": "1", "title": "Eagle Island", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2749/4232955307_e6c2e44e44_o.jpg", "secret": "e8a930ec9e", "media": "photo", "latitude": "0", "id": "4232955307", "tags": ""}, {"datetaken": "2009-11-30 08:40:20", "license": "1", "title": "Fisherman Port", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2758/4233095027_64ec6a5b02_o.jpg", "secret": "ff4af4647c", "media": "photo", "latitude": "0", "id": "4233095027", "tags": ""}, {"datetaken": "2009-11-30 08:45:21", "license": "1", "title": "Fisherman Port", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2683/4233099131_c2f21bc6da_o.jpg", "secret": "572655eff0", "media": "photo", "latitude": "0", "id": "4233099131", "tags": ""}, {"datetaken": "2009-11-30 16:36:13", "license": "1", "title": "kok beach", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2601/4232956401_09ee52f6b5_o.jpg", "secret": "84c94458e4", "media": "photo", "latitude": "0", "id": "4232956401", "tags": ""}, {"datetaken": "2009-11-30 16:37:44", "license": "1", "title": "Pantai Kok Yatch Club", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2703/4267578779_71271ec704_o.jpg", "secret": "13d07155d3", "media": "photo", "latitude": "0", "id": "4267578779", "tags": ""}, {"datetaken": "2009-11-30 18:02:03", "license": "1", "title": "Pantai Cenang", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4233229457_05f54dcc60_o.jpg", "secret": "2098b250c6", "media": "photo", "latitude": "0", "id": "4233229457", "tags": ""}, {"datetaken": "2009-11-30 18:06:45", "license": "1", "title": "Pantai Cenang", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4233244977_345c93b6cc_o.jpg", "secret": "66ce331cb9", "media": "photo", "latitude": "0", "id": "4233244977", "tags": ""}, {"datetaken": "2009-11-30 18:13:08", "license": "1", "title": "Pantai Cenang", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2802/4234035434_7b952ae3bb_o.jpg", "secret": "dfa112448c", "media": "photo", "latitude": "0", "id": "4234035434", "tags": ""}, {"datetaken": "2009-12-01 08:13:29", "license": "1", "title": "Kuah jetty", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2666/4232993873_ecac8cce3c_o.jpg", "secret": "a616d56b8d", "media": "photo", "latitude": "0", "id": "4232993873", "tags": ""}, {"datetaken": "2009-12-01 08:17:47", "license": "1", "title": "Kuah jetty", "text": "", "album_id": "72157622988313891", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2485/4233768686_ea2cd360ff_o.jpg", "secret": "c53521ee93", "media": "photo", "latitude": "0", "id": "4233768686", "tags": ""}, {"datetaken": "2009-12-27 11:15:15", "license": "5", "title": "Boonooroo", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2734/4234367635_8b73d42511_o.jpg", "secret": "6351e568c7", "media": "photo", "latitude": "0", "id": "4234367635", "tags": "queensland frasercoast boonaroo"}, {"datetaken": "2009-12-27 11:16:09", "license": "5", "title": "Boonooroo", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2503/4235150760_39a7a18e19_o.jpg", "secret": "8e2f7a0541", "media": "photo", "latitude": "0", "id": "4235150760", "tags": "queensland frasercoast boonaroo"}, {"datetaken": "2009-12-27 11:16:30", "license": "5", "title": "Boonooroo", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4235158054_cbc1234e56_o.jpg", "secret": "1ba8620f74", "media": "photo", "latitude": "0", "id": "4235158054", "tags": "queensland frasercoast boonaroo"}, {"datetaken": "2009-12-27 11:53:14", "license": "5", "title": "Poona", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4234390743_1303febf9c_o.jpg", "secret": "da0da94b2f", "media": "photo", "latitude": "0", "id": "4234390743", "tags": "beach boat sand cloudy overcast queensland poona frasercoast"}, {"datetaken": "2009-12-27 11:55:14", "license": "5", "title": "Poona", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2666/4234399713_6de78c108c_o.jpg", "secret": "e2446bf0e0", "media": "photo", "latitude": "0", "id": "4234399713", "tags": "queensland poona frasercoast"}, {"datetaken": "2009-12-27 11:56:06", "license": "5", "title": "Poona", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2647/4235184368_0a6d494425_o.jpg", "secret": "d322d3158e", "media": "photo", "latitude": "0", "id": "4235184368", "tags": "queensland poona frasercoast"}, {"datetaken": "2009-12-27 11:56:46", "license": "5", "title": "Poona", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2547/4235197206_4eec7aa15d_o.jpg", "secret": "c3fab200e0", "media": "photo", "latitude": "0", "id": "4235197206", "tags": "queensland poona frasercoast"}, {"datetaken": "2009-12-27 15:07:43", "license": "5", "title": "Rainbow Beach", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2533/4235207144_6aaf003290_o.jpg", "secret": "762ff37e53", "media": "photo", "latitude": "0", "id": "4235207144", "tags": "queensland rainbowbeach"}, {"datetaken": "2009-12-27 15:08:02", "license": "5", "title": "Rainbow Beach", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2638/4235214208_3e5109275b_o.jpg", "secret": "965784128f", "media": "photo", "latitude": "0", "id": "4235214208", "tags": "queensland rainbowbeach"}, {"datetaken": "2009-12-27 15:10:04", "license": "5", "title": "Rainbow Beach", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2539/4235220886_ea57561599_o.jpg", "secret": "7f1dfda048", "media": "photo", "latitude": "0", "id": "4235220886", "tags": "queensland rainbowbeach"}, {"datetaken": "2009-12-27 15:37:03", "license": "5", "title": "Inskip Point", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4235230898_c237182fbd_o.jpg", "secret": "1260350bfd", "media": "photo", "latitude": "0", "id": "4235230898", "tags": "fraserisland rainbowbeach inskip"}, {"datetaken": "2009-12-27 15:37:37", "license": "5", "title": "Inskip Point", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4234465359_ebedeb21c6_o.jpg", "secret": "b74e1f4e01", "media": "photo", "latitude": "0", "id": "4234465359", "tags": "fraserisland rainbowbeach inskip"}, {"datetaken": "2009-12-27 16:00:55", "license": "5", "title": "Rainbow Beach", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4235291912_6d3464d649_o.jpg", "secret": "718fb34581", "media": "photo", "latitude": "0", "id": "4235291912", "tags": "queensland rainbowbeach"}, {"datetaken": "2009-12-27 16:02:09", "license": "5", "title": "Rainbow Beach", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2778/4234530669_4fc6bbc8c5_o.jpg", "secret": "42410dc6c9", "media": "photo", "latitude": "0", "id": "4234530669", "tags": "queensland rainbowbeach"}, {"datetaken": "2009-12-27 16:17:19", "license": "5", "title": "Carlo Sandblow", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2632/4235314182_299ee81982_o.jpg", "secret": "34f43a7f30", "media": "photo", "latitude": "0", "id": "4235314182", "tags": "sand dune queensland rainbowbeach carlosandblow"}, {"datetaken": "2009-12-27 16:19:43", "license": "5", "title": "Carlo Sandblow", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4235321476_9281cb69ee_o.jpg", "secret": "616b778e39", "media": "photo", "latitude": "0", "id": "4235321476", "tags": "sand dune queensland rainbowbeach carlosandblow"}, {"datetaken": "2009-12-27 16:23:30", "license": "5", "title": "Carlo Sandblow", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4234555215_68f92db60b_o.jpg", "secret": "a095c524cd", "media": "photo", "latitude": "0", "id": "4234555215", "tags": "sand dune queensland rainbowbeach carlosandblow"}, {"datetaken": "2009-12-27 16:32:23", "license": "5", "title": "Carlo Sandblow", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4235338134_c701dc2398_o.jpg", "secret": "d7a4c28ba1", "media": "photo", "latitude": "0", "id": "4235338134", "tags": "sand dune queensland rainbowbeach carlosandblow"}, {"datetaken": "2009-12-27 16:33:47", "license": "5", "title": "Carlo Sandblow", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2742/4235345240_8e032ca004_o.jpg", "secret": "2aebf1c3b4", "media": "photo", "latitude": "0", "id": "4235345240", "tags": "blue cliff beach yellow landscape sand dune queensland rainbowbeach carlosandblow"}, {"datetaken": "2009-12-27 17:00:30", "license": "5", "title": "Rainbow Beach", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2502/4235375498_18049db3f8_o.jpg", "secret": "728c3d3f5d", "media": "photo", "latitude": "0", "id": "4235375498", "tags": ""}, {"datetaken": "2009-12-27 17:02:38", "license": "5", "title": "Rainbow Beach", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2498/4235381842_f88740e969_o.jpg", "secret": "133bbaaecd", "media": "photo", "latitude": "0", "id": "4235381842", "tags": ""}, {"datetaken": "2009-12-27 18:13:09", "license": "5", "title": "Maryborough", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4234613049_d716546255_o.jpg", "secret": "50c95f5dd5", "media": "photo", "latitude": "0", "id": "4234613049", "tags": "city maryborough frasercoast"}, {"datetaken": "2009-12-27 18:14:22", "license": "5", "title": "Maryborough", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2548/4234619797_f0c1c46e84_o.jpg", "secret": "37172d712d", "media": "photo", "latitude": "0", "id": "4234619797", "tags": "train river boat tracks maryborough maryriver frasercoast"}, {"datetaken": "2009-12-27 18:15:29", "license": "5", "title": "Maryborough", "text": "", "album_id": "72157623116016116", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2507/4234626981_6500795ae5_o.jpg", "secret": "6b50d0ccd8", "media": "photo", "latitude": "0", "id": "4234626981", "tags": ""}, {"datetaken": "2009-12-31 18:28:19", "license": "4", "title": "J\u00e4ger Submarine", "text": "", "album_id": "72157622992588937", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4235673252_0b57387c56_o.jpg", "secret": "f42fb25f86", "media": "photo", "latitude": "0", "id": "4235673252", "tags": "submarine ny\u00e5r enk\u00f6ping j\u00e4ger"}, {"datetaken": "2009-12-31 18:34:41", "license": "4", "title": "The Girl With The Giant Beach Ball", "text": "", "album_id": "72157622992588937", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4235674158_d6a92e1328_o.jpg", "secret": "b9bf4eeb3b", "media": "photo", "latitude": "0", "id": "4235674158", "tags": "girl drink petra beachball ny\u00e5r enk\u00f6ping petrarenstr\u00f6m"}, {"datetaken": "2009-12-31 19:35:11", "license": "4", "title": "Making snow yellow", "text": "", "album_id": "72157622992588937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4234899479_7c44aed7c7_o.jpg", "secret": "4bf4b88e6d", "media": "photo", "latitude": "0", "id": "4234899479", "tags": "reindeers ny\u00e5r enk\u00f6ping"}, {"datetaken": "2009-12-31 21:10:53", "license": "4", "title": "Sofa mews", "text": "", "album_id": "72157622992588937", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4235675768_14bb9bc34a_o.jpg", "secret": "570acb4e1e", "media": "photo", "latitude": "0", "id": "4235675768", "tags": "selfportrait me anton ny\u00e5r enk\u00f6ping jon\u00e5slund"}, {"datetaken": "2009-12-31 21:52:50", "license": "4", "title": "Summer Party", "text": "", "album_id": "72157622992588937", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4235676298_e2defaba2f_o.jpg", "secret": "fa5418abae", "media": "photo", "latitude": "0", "id": "4235676298", "tags": "daniel petra nora brita karolina kalle emil johan ny\u00e5r tull enk\u00f6ping"}, {"datetaken": "2009-12-31 22:14:50", "license": "4", "title": "Jesse ser dig", "text": "", "album_id": "72157622992588937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4234901571_124ee7615f_o.jpg", "secret": "b7fdf46ab1", "media": "photo", "latitude": "0", "id": "4234901571", "tags": "sign ny\u00e5r enk\u00f6ping"}, {"datetaken": "2009-12-31 23:23:01", "license": "4", "title": "Erika Countdown", "text": "", "album_id": "72157622992588937", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4235677212_ec043f0c2c_o.jpg", "secret": "b0c239c596", "media": "photo", "latitude": "0", "id": "4235677212", "tags": "erika ny\u00e5r enk\u00f6ping iphoneapp"}, {"datetaken": "2010-01-01 00:02:03", "license": "4", "title": "Rocket", "text": "", "album_id": "72157622992588937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4235677620_b5d4e25ae9_o.jpg", "secret": "c25f9b95e5", "media": "photo", "latitude": "0", "id": "4235677620", "tags": "rocket ny\u00e5r enk\u00f6ping"}, {"datetaken": "2010-01-01 00:08:02", "license": "4", "title": "Dear Comrades", "text": "", "album_id": "72157622992588937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2629/4235677936_0a99c6f47b_o.jpg", "secret": "156c23ef95", "media": "photo", "latitude": "0", "id": "4235677936", "tags": "daniel kiwi ny\u00e5r enk\u00f6ping"}, {"datetaken": "2010-01-01 00:09:25", "license": "4", "title": "Sk\u00e5l", "text": "", "album_id": "72157622992588937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2715/4234903169_9dd9c6baf9_o.jpg", "secret": "69fbebaff3", "media": "photo", "latitude": "0", "id": "4234903169", "tags": "hanna sanna ny\u00e5r enk\u00f6ping"}, {"datetaken": "2010-01-01 00:10:08", "license": "4", "title": "Gabbe takes a sip", "text": "", "album_id": "72157622992588937", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4235678762_dbcc66ee20_o.jpg", "secret": "5bc7f2eb1c", "media": "photo", "latitude": "0", "id": "4235678762", "tags": "ny\u00e5r enk\u00f6ping gabbe"}, {"datetaken": "2010-01-01 00:10:16", "license": "4", "title": "Ullis made me do it", "text": "", "album_id": "72157622992588937", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4235679246_a9aa972dfa_o.jpg", "secret": "c89e05beb7", "media": "photo", "latitude": "0", "id": "4235679246", "tags": "ny\u00e5r enk\u00f6ping ullis"}, {"datetaken": "2010-01-01 03:46:44", "license": "4", "title": "The fuzziness is taking over", "text": "", "album_id": "72157622992588937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4235679732_b8e05b35c5_o.jpg", "secret": "99a26194ef", "media": "photo", "latitude": "0", "id": "4235679732", "tags": "sara ny\u00e5r enk\u00f6ping hampe"}, {"datetaken": "2010-01-01 04:14:40", "license": "4", "title": "Power outage", "text": "", "album_id": "72157622992588937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4235680222_b80880ec56_o.jpg", "secret": "9b8ef41726", "media": "photo", "latitude": "0", "id": "4235680222", "tags": "dark ny\u00e5r enk\u00f6ping hampe"}, {"datetaken": "2010-01-01 12:36:32", "license": "4", "title": "Ninja Gnomes", "text": "", "album_id": "72157622992588937", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2584/4234905551_4d39621dcf_o.jpg", "secret": "b2e5bf9248", "media": "photo", "latitude": "0", "id": "4234905551", "tags": "gnome ny\u00e5r enk\u00f6ping"}, {"datetaken": "2010-01-01 05:55:02", "license": "4", "title": "2010 Snurise / K-7 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4236485308_01f9792f7b_o.jpg", "secret": "87016f5f94", "media": "photo", "latitude": "0", "id": "4236485308", "tags": "sunrise pentax \u521d\u65e5\u306e\u51fa k7 \u30da\u30f3\u30bf\u30c3\u30af\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c da50135mmf28ed da\u260550135mmf28edifsdm"}, {"datetaken": "2010-01-01 06:05:10", "license": "4", "title": "2010 Snurise / K-7 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4235709475_c0fa2b127e_o.jpg", "secret": "7b956e2c38", "media": "photo", "latitude": "0", "id": "4235709475", "tags": "sunrise pentax \u521d\u65e5\u306e\u51fa k7 \u30da\u30f3\u30bf\u30c3\u30af\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c da50135mmf28ed da\u260550135mmf28edifsdm"}, {"datetaken": "2010-01-01 06:27:50", "license": "4", "title": "2010 Snurise / K-7 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2515/4236486060_dca6ca5a5b_o.jpg", "secret": "0baacc50de", "media": "photo", "latitude": "0", "id": "4236486060", "tags": "sunrise pentax \u521d\u65e5\u306e\u51fa k7 \u30da\u30f3\u30bf\u30c3\u30af\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c da50135mmf28ed da\u260550135mmf28edifsdm"}, {"datetaken": "2010-01-01 06:28:15", "license": "4", "title": "2010 Snurise / K-7 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2502/4235710825_358f6392a1_o.jpg", "secret": "e2bc6162fb", "media": "photo", "latitude": "0", "id": "4235710825", "tags": "sunrise pentax \u521d\u65e5\u306e\u51fa k7 \u30da\u30f3\u30bf\u30c3\u30af\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c da50135mmf28ed da\u260550135mmf28edifsdm"}, {"datetaken": "2010-01-01 06:34:01", "license": "4", "title": "2010 Snurise / K-7 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2650/4235711341_0971dae3e0_o.jpg", "secret": "924e0c18c5", "media": "photo", "latitude": "0", "id": "4235711341", "tags": "sunrise pentax \u521d\u65e5\u306e\u51fa k7 \u30da\u30f3\u30bf\u30c3\u30af\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c da50135mmf28ed da\u260550135mmf28edifsdm"}, {"datetaken": "2010-01-01 06:36:08", "license": "4", "title": "2010 Snurise / K-7 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2519/4236487894_b2afe291e8_o.jpg", "secret": "af5d64c7cc", "media": "photo", "latitude": "0", "id": "4236487894", "tags": "sunrise pentax \u521d\u65e5\u306e\u51fa k7 \u30da\u30f3\u30bf\u30c3\u30af\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c da50135mmf28ed da\u260550135mmf28edifsdm"}, {"datetaken": "2010-01-01 06:36:15", "license": "4", "title": "2010 Snurise / K-7 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4235712045_8db955d9f2_o.jpg", "secret": "301d9a4a18", "media": "photo", "latitude": "0", "id": "4235712045", "tags": "sunrise pentax \u521d\u65e5\u306e\u51fa k7 \u30da\u30f3\u30bf\u30c3\u30af\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c da50135mmf28ed da\u260550135mmf28edifsdm"}, {"datetaken": "2010-01-01 06:38:05", "license": "4", "title": "2010 Snurise / K-7 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4236488870_dd3fc0e42f_o.jpg", "secret": "a9d95c4d67", "media": "photo", "latitude": "0", "id": "4236488870", "tags": "sunrise pentax \u521d\u65e5\u306e\u51fa k7 \u30da\u30f3\u30bf\u30c3\u30af\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c da50135mmf28ed da\u260550135mmf28edifsdm"}, {"datetaken": "2010-01-01 06:38:57", "license": "4", "title": "2010 Snurise / K-7 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2717/4236489274_1f48e495eb_o.jpg", "secret": "f57a74319f", "media": "photo", "latitude": "0", "id": "4236489274", "tags": "sunrise pentax \u521d\u65e5\u306e\u51fa k7 \u30da\u30f3\u30bf\u30c3\u30af\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c da50135mmf28ed da\u260550135mmf28edifsdm"}, {"datetaken": "2010-01-01 07:01:09", "license": "4", "title": "2010 Snurise / K-7 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2629/4236490968_bdae244596_o.jpg", "secret": "7c5945122e", "media": "photo", "latitude": "0", "id": "4236490968", "tags": "sunrise pentax \u521d\u65e5\u306e\u51fa k7 \u30da\u30f3\u30bf\u30c3\u30af\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c da50135mmf28ed da\u260550135mmf28edifsdm"}, {"datetaken": "2010-01-01 07:01:29", "license": "4", "title": "2010 Snurise / K-7 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2655/4236491268_c5b26177bb_o.jpg", "secret": "99ed79d4d7", "media": "photo", "latitude": "0", "id": "4236491268", "tags": "sunrise pentax \u521d\u65e5\u306e\u51fa k7 \u30da\u30f3\u30bf\u30c3\u30af\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c da50135mmf28ed da\u260550135mmf28edifsdm"}, {"datetaken": "2010-01-01 07:01:31", "license": "4", "title": "2010 Snurise / E-300 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2739/4235800567_92c9923ccf_o.jpg", "secret": "2f83c39059", "media": "photo", "latitude": "0", "id": "4235800567", "tags": "sunrise olympus contax e300 \u521d\u65e5\u306e\u51fa \u30aa\u30ea\u30f3\u30d1\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c carlzeisstessart45mmf28 \u30ab\u30fc\u30eb\u30c4\u30a1\u30a4\u30b9"}, {"datetaken": "2010-01-01 07:02:44", "license": "4", "title": "2010 Snurise / GRD2 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2654/4235759609_33e356ec01_o.jpg", "secret": "1a383d4476", "media": "photo", "latitude": "0", "id": "4235759609", "tags": "ricoh \u521d\u65e5\u306e\u51fa \u30ea\u30b3\u30fc \u9786\u306e\u6d66 \u5e83\u5cf6\u770c grdigitalii"}, {"datetaken": "2010-01-01 07:02:56", "license": "4", "title": "2010 Snurise / K-7 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2765/4236491868_6926d30fdf_o.jpg", "secret": "0061cfc5c4", "media": "photo", "latitude": "0", "id": "4236491868", "tags": "sunrise pentax \u521d\u65e5\u306e\u51fa k7 \u30da\u30f3\u30bf\u30c3\u30af\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c da50135mmf28ed da\u260550135mmf28edifsdm"}, {"datetaken": "2010-01-01 07:09:41", "license": "4", "title": "2010 Snurise / E-300 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2500/4235800859_ab1282fdde_o.jpg", "secret": "ab751a63e7", "media": "photo", "latitude": "0", "id": "4235800859", "tags": "sunrise olympus contax e300 \u521d\u65e5\u306e\u51fa \u30aa\u30ea\u30f3\u30d1\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c carlzeisstessart45mmf28 \u30ab\u30fc\u30eb\u30c4\u30a1\u30a4\u30b9"}, {"datetaken": "2010-01-01 07:24:19", "license": "4", "title": "Happy new year!", "text": "", "album_id": "72157622994356223", "longitude": "133.384259", "url_o": "https://farm5.staticflickr.com/4002/4232375388_ac525a3eeb_o.jpg", "secret": "502444666b", "media": "photo", "latitude": "34.414905", "id": "4232375388", "tags": "iphone3gs"}, {"datetaken": "2010-01-01 07:31:11", "license": "4", "title": "2010 Snurise / E-300 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2625/4236577656_033e2687af_o.jpg", "secret": "e26007a32c", "media": "photo", "latitude": "0", "id": "4236577656", "tags": "sunrise olympus contax e300 \u521d\u65e5\u306e\u51fa \u30aa\u30ea\u30f3\u30d1\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c carlzeisstessart45mmf28 \u30ab\u30fc\u30eb\u30c4\u30a1\u30a4\u30b9"}, {"datetaken": "2010-01-01 07:31:58", "license": "4", "title": "2010 Snurise / GRD2 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4236535934_71fd239f03_o.jpg", "secret": "e52599b940", "media": "photo", "latitude": "0", "id": "4236535934", "tags": "ricoh \u521d\u65e5\u306e\u51fa \u30ea\u30b3\u30fc \u9786\u306e\u6d66 \u5e83\u5cf6\u770c grdigitalii"}, {"datetaken": "2010-01-01 07:35:48", "license": "4", "title": "2010 Snurise / E-300 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4236578040_45a9ea3a67_o.jpg", "secret": "bea2b7afa3", "media": "photo", "latitude": "0", "id": "4236578040", "tags": "sunrise olympus contax e300 \u521d\u65e5\u306e\u51fa \u30aa\u30ea\u30f3\u30d1\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c carlzeisstessart45mmf28 \u30ab\u30fc\u30eb\u30c4\u30a1\u30a4\u30b9"}, {"datetaken": "2010-01-01 07:36:59", "license": "4", "title": "2010 Snurise / GRD2 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4235759877_c59e7b6b7a_o.jpg", "secret": "34497e6a9f", "media": "photo", "latitude": "0", "id": "4235759877", "tags": "ricoh \u521d\u65e5\u306e\u51fa \u30ea\u30b3\u30fc \u9786\u306e\u6d66 \u5e83\u5cf6\u770c grdigitalii"}, {"datetaken": "2010-01-01 07:37:33", "license": "4", "title": "2010 Snurise / E-300 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4236578410_93beac8c98_o.jpg", "secret": "e024f0006c", "media": "photo", "latitude": "0", "id": "4236578410", "tags": "sunrise olympus contax e300 \u521d\u65e5\u306e\u51fa \u30aa\u30ea\u30f3\u30d1\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c carlzeisstessart45mmf28 \u30ab\u30fc\u30eb\u30c4\u30a1\u30a4\u30b9"}, {"datetaken": "2010-01-01 07:39:30", "license": "4", "title": "2010 Snurise / E-300 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2492/4236578932_3acb2305e7_o.jpg", "secret": "1e51ee66f3", "media": "photo", "latitude": "0", "id": "4236578932", "tags": "sunrise olympus contax e300 \u521d\u65e5\u306e\u51fa \u30aa\u30ea\u30f3\u30d1\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c carlzeisstessart45mmf28 \u30ab\u30fc\u30eb\u30c4\u30a1\u30a4\u30b9"}, {"datetaken": "2010-01-01 07:59:28", "license": "4", "title": "2010 Snurise / E-300 /", "text": "", "album_id": "72157622994356223", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2488/4235803235_bd360e73da_o.jpg", "secret": "af9ac34ed6", "media": "photo", "latitude": "0", "id": "4235803235", "tags": "sunrise olympus contax e300 \u521d\u65e5\u306e\u51fa \u30aa\u30ea\u30f3\u30d1\u30b9 \u9786\u306e\u6d66 \u5e83\u5cf6\u770c carlzeisstessart45mmf28 \u30ab\u30fc\u30eb\u30c4\u30a1\u30a4\u30b9"}, {"datetaken": "2010-01-01 09:18:11", "license": "4", "title": "Happy new year!", "text": "", "album_id": "72157622994356223", "longitude": "139.558433", "url_o": "https://farm3.staticflickr.com/2651/4232574716_dbc2022502_o.jpg", "secret": "a4255599de", "media": "photo", "latitude": "35.577688", "id": "4232574716", "tags": "iphone3gs"}, {"datetaken": "2011-06-22 16:09:36", "license": "0", "title": "Wimbledon 2011 action", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6112/6304589448_f812126931_o.jpg", "secret": "4a505abc40", "media": "photo", "latitude": "0", "id": "6304589448", "tags": "england london tennis wimbledon"}, {"datetaken": "2011-06-22 16:10:37", "license": "4", "title": "Tsvetana Pironkova at Wimbledon", "text": "", "album_id": "72157628032378538", "longitude": "-0.207019", "url_o": "https://farm9.staticflickr.com/8155/7446761554_ea4a795c38_o.jpg", "secret": "e656e7c061", "media": "photo", "latitude": "51.420989", "id": "7446761554", "tags": "england london tennis wimbledon grandslam tsvetanapironkova"}, {"datetaken": "2011-06-22 16:13:11", "license": "4", "title": "Wimbledon 2011 - Tsvetana Pironkova (2)", "text": "", "album_id": "72157628032378538", "longitude": "-0.209739", "url_o": "https://farm8.staticflickr.com/7153/6613192649_3006352191_o.jpg", "secret": "4377d32913", "media": "photo", "latitude": "51.426940", "id": "6613192649", "tags": "england london tennis wimbledon grandslam tsvetanapironkova court17"}, {"datetaken": "2011-06-22 16:18:37", "license": "0", "title": "Wimbledon 2011 - Tsvetana Pironkova", "text": "", "album_id": "72157628032378538", "longitude": "-0.207019", "url_o": "https://farm4.staticflickr.com/3020/5870033556_11f39b01c2_o.jpg", "secret": "bd8629f716", "media": "photo", "latitude": "51.420989", "id": "5870033556", "tags": "england london tennis wimbledon tsvetanapironkova"}, {"datetaken": "2011-06-22 16:25:16", "license": "4", "title": "Wimbledon 2011", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6560966589_06b7f02365_o.jpg", "secret": "beee8082a7", "media": "photo", "latitude": "0", "id": "6560966589", "tags": "england london sport tennis wimbledon"}, {"datetaken": "2011-06-22 16:41:59", "license": "0", "title": "WImbledon 2011", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3003/5869884504_7a4b7a8761_o.jpg", "secret": "ff46ed794a", "media": "photo", "latitude": "0", "id": "5869884504", "tags": "england london tennis wimbledon"}, {"datetaken": "2011-06-22 16:44:16", "license": "4", "title": "Wimbledon Action (2)", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7157/6560969943_2f31f21438_o.jpg", "secret": "a97392ef9e", "media": "photo", "latitude": "0", "id": "6560969943", "tags": "england london sport tennis wimbledon"}, {"datetaken": "2011-06-22 17:01:30", "license": "4", "title": "Wimbledon Action (1)", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7032/6560973303_98e3d5406d_o.jpg", "secret": "38556487a2", "media": "photo", "latitude": "0", "id": "6560973303", "tags": "england london sport tennis wimbledon"}, {"datetaken": "2011-06-22 17:07:36", "license": "4", "title": "Rainer Sch\u00fcttler (Germany)", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7220/7321765872_a9aa7c7b74_o.jpg", "secret": "d1ed26ac2c", "media": "photo", "latitude": "0", "id": "7321765872", "tags": "tennis wimbledon grandslam"}, {"datetaken": "2011-06-22 17:13:22", "license": "0", "title": "Player About to Serve at Wimbledon", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3278/5870399759_5ea477896c_o.jpg", "secret": "fe78c267b2", "media": "photo", "latitude": "0", "id": "5870399759", "tags": "england london tennis wimbledon serve"}, {"datetaken": "2011-06-22 17:21:51", "license": "4", "title": "Bethanie Mattek-Sands (USA)", "text": "", "album_id": "72157628032378538", "longitude": "-0.207019", "url_o": "https://farm8.staticflickr.com/7088/7321798918_25c00d062d_o.jpg", "secret": "03bf7e2702", "media": "photo", "latitude": "51.420989", "id": "7321798918", "tags": "tennis wimbledon grandslam matteksands"}, {"datetaken": "2011-06-22 17:53:57", "license": "4", "title": "Doubles at Wimbledon (2)", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8019/7508901394_0850f8fd26_o.jpg", "secret": "e7a2c74c2e", "media": "photo", "latitude": "0", "id": "7508901394", "tags": "england london tennis wimbledon doubles"}, {"datetaken": "2011-06-22 17:55:47", "license": "0", "title": "Wimbledon 2011 - Doubles", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6037/6304065869_60dc832381_o.jpg", "secret": "651cca3495", "media": "photo", "latitude": "0", "id": "6304065869", "tags": "england london tennis wimbledon"}, {"datetaken": "2011-06-22 17:58:57", "license": "0", "title": "Wimbledon 2011 Action", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5303/5869484439_814880a746_o.jpg", "secret": "4f9b2d9788", "media": "photo", "latitude": "0", "id": "5869484439", "tags": "england london tennis wimbledon"}, {"datetaken": "2011-06-22 17:59:44", "license": "4", "title": "Female Tennis Player About to Serve", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7019/6736686675_ea24977872_o.jpg", "secret": "26aee67854", "media": "photo", "latitude": "0", "id": "6736686675", "tags": "england london tennis wimbledon"}, {"datetaken": "2011-06-22 18:01:07", "license": "4", "title": "Juan Ignacio Chela (1)", "text": "", "album_id": "72157628032378538", "longitude": "-0.207019", "url_o": "https://farm8.staticflickr.com/7083/7321790692_7cf7bec4f9_o.jpg", "secret": "6f58781264", "media": "photo", "latitude": "51.420989", "id": "7321790692", "tags": "tennis wimbledon chela grandslam"}, {"datetaken": "2011-06-22 18:02:36", "license": "4", "title": "Injury time out at Wimbledon", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7157/6560976601_c0ab4179c5_o.jpg", "secret": "4190909ef7", "media": "photo", "latitude": "0", "id": "6560976601", "tags": "england london sport tennis wimbledon"}, {"datetaken": "2011-06-22 18:06:20", "license": "4", "title": "Emily Webley-Smith (UK)", "text": "", "album_id": "72157628032378538", "longitude": "-0.207019", "url_o": "https://farm8.staticflickr.com/7231/7321782256_c9b42e3330_o.jpg", "secret": "64f358bb52", "media": "photo", "latitude": "51.420989", "id": "7321782256", "tags": "tennis wimbledon grandslam"}, {"datetaken": "2011-06-22 18:06:34", "license": "4", "title": "Doubles at Wimbledon (3)", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8157/7508860832_f09bf8dd01_o.jpg", "secret": "936f0f5029", "media": "photo", "latitude": "0", "id": "7508860832", "tags": "england london tennis wimbledon doubles"}, {"datetaken": "2011-06-22 18:10:15", "license": "0", "title": "Wimbledon 2011", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6113/6304088595_a62573d9ff_o.jpg", "secret": "52c174698f", "media": "photo", "latitude": "0", "id": "6304088595", "tags": "england london tennis wimbledon"}, {"datetaken": "2011-06-22 18:40:22", "license": "4", "title": "Angelique Kerber (1)", "text": "", "album_id": "72157628032378538", "longitude": "-0.207019", "url_o": "https://farm9.staticflickr.com/8018/7321774200_0d816b4003_o.jpg", "secret": "165c1cbf87", "media": "photo", "latitude": "51.420989", "id": "7321774200", "tags": "tennis wimbledon grandslam angeliquekerber"}, {"datetaken": "2011-06-22 18:40:27", "license": "4", "title": "Angelique Kerber (2)", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7125/7508785972_1b65188170_o.jpg", "secret": "eb15178bbd", "media": "photo", "latitude": "0", "id": "7508785972", "tags": "england london slam grand tennis wimbledon kerber"}, {"datetaken": "2011-06-22 18:41:21", "license": "4", "title": "Laura Robson about to serve", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7274/7456085818_f5b4be97af_o.jpg", "secret": "ec7977484c", "media": "photo", "latitude": "0", "id": "7456085818", "tags": "england london tennis wimbledon serve laurarobson"}, {"datetaken": "2011-06-22 18:46:12", "license": "4", "title": "Wimbledon 2011 - Laura Robson (2)", "text": "", "album_id": "72157628032378538", "longitude": "-0.209739", "url_o": "https://farm8.staticflickr.com/7028/6613213637_03d141d54a_o.jpg", "secret": "683757bc03", "media": "photo", "latitude": "51.426940", "id": "6613213637", "tags": "england london tennis wimbledon singles grandslam laurarobson"}, {"datetaken": "2011-06-22 18:52:23", "license": "4", "title": "Angelique Kerber (3)", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7118/7508873978_e486a01ec0_o.jpg", "secret": "d5f5b4b841", "media": "photo", "latitude": "0", "id": "7508873978", "tags": "england london tennis wimbledon angelique kerber"}, {"datetaken": "2011-06-22 18:55:13", "license": "0", "title": "Wimbledon 2011 - Laura Robson", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3221/5870024420_51efb7bdee_o.jpg", "secret": "08c6053437", "media": "photo", "latitude": "0", "id": "5870024420", "tags": "england london tennis wimbledon laurarobson"}, {"datetaken": "2011-06-23 16:15:44", "license": "4", "title": "Hawk-Eye at Wimbledon", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8021/7508887344_ca97f416f8_o.jpg", "secret": "ab480c9e7d", "media": "photo", "latitude": "0", "id": "7508887344", "tags": "london tennis hawkeye wimbledon"}, {"datetaken": "2011-06-23 16:19:18", "license": "0", "title": "Marcos Baghdatis on Wimbledon Court Three", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3233/5869950004_ed8fe75a38_o.jpg", "secret": "f81b377122", "media": "photo", "latitude": "0", "id": "5869950004", "tags": "england london tennis wimbledon marcosbaghdatis court3"}, {"datetaken": "2011-06-23 16:30:09", "license": "4", "title": "Wimbledon Court Three", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7173/6736699811_87bee2aaaf_o.jpg", "secret": "4ed8f5d174", "media": "photo", "latitude": "0", "id": "6736699811", "tags": "england london court stadium tennis wimbledon"}, {"datetaken": "2011-06-23 17:09:10", "license": "0", "title": "Raining at Wimbledon", "text": "", "album_id": "72157628032378538", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3056/5870812158_7a407dc28e_o.jpg", "secret": "c0e9012e99", "media": "photo", "latitude": "0", "id": "5870812158", "tags": "london wimbledon"}, {"datetaken": "2011-10-07 21:39:49", "license": "3", "title": "Second floor lodge; Redfish Lake, Idaho", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7157/6613718025_ab5360eacf_o.jpg", "secret": "cd66aea58b", "media": "photo", "latitude": "0", "id": "6613718025", "tags": ""}, {"datetaken": "2011-10-07 21:40:21", "license": "3", "title": "Second floor lodge; Redfish Lake, Idaho", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7161/6613720817_9cf93b0c7e_o.jpg", "secret": "5d5d15699f", "media": "photo", "latitude": "0", "id": "6613720817", "tags": ""}, {"datetaken": "2011-10-07 21:42:36", "license": "3", "title": "Redrum, redrum", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7017/6613723765_78c94129de_o.jpg", "secret": "ed9c0e13ca", "media": "photo", "latitude": "0", "id": "6613723765", "tags": ""}, {"datetaken": "2011-10-07 21:45:23", "license": "3", "title": "Dining room; Redfish Lake Lodge, Idaho", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7011/6613726677_b62c56c3fa_o.jpg", "secret": "abbe0b225e", "media": "photo", "latitude": "0", "id": "6613726677", "tags": ""}, {"datetaken": "2011-10-07 21:46:01", "license": "3", "title": "Dining room; Redfish Lake Lodge, Idaho", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7142/6613730031_0b443e71fd_o.jpg", "secret": "dbdf804261", "media": "photo", "latitude": "0", "id": "6613730031", "tags": ""}, {"datetaken": "2011-10-07 21:46:37", "license": "3", "title": "Dining room; Redfish Lake Lodge, Idaho", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7153/6613733721_fd256fa440_o.jpg", "secret": "2af84442d9", "media": "photo", "latitude": "0", "id": "6613733721", "tags": ""}, {"datetaken": "2011-10-07 22:01:13", "license": "3", "title": "Dock and lodge; Redfish Lake, Idaho", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7029/6613737369_860c683652_o.jpg", "secret": "9f3da8ac9b", "media": "photo", "latitude": "0", "id": "6613737369", "tags": ""}, {"datetaken": "2011-10-07 22:03:00", "license": "3", "title": "Redfish Lake Lodge, Idaho", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7028/6613741675_dd38af69a3_o.jpg", "secret": "9b5a0f3953", "media": "photo", "latitude": "0", "id": "6613741675", "tags": ""}, {"datetaken": "2011-10-07 22:06:03", "license": "3", "title": "Redfish Lake Lodge, Idaho", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6613745201_788bdd4e6f_o.jpg", "secret": "7923c36701", "media": "photo", "latitude": "0", "id": "6613745201", "tags": ""}, {"datetaken": "2011-10-08 08:42:38", "license": "3", "title": "Morning; Redfish Lake, Idaho", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7170/6613747487_66215b865f_o.jpg", "secret": "a572a731cf", "media": "photo", "latitude": "0", "id": "6613747487", "tags": ""}, {"datetaken": "2011-10-08 17:57:15", "license": "3", "title": "Redfish Lake, Idaho October, 2011", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7162/6613782181_4f40b7f5a0_o.jpg", "secret": "80bbd28265", "media": "photo", "latitude": "0", "id": "6613782181", "tags": ""}, {"datetaken": "2011-10-09 11:57:07", "license": "3", "title": "Rustic Lounge, Redfish Lake Lodge, Idaho", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7022/6613755401_5851b1b963_o.jpg", "secret": "0352b31864", "media": "photo", "latitude": "0", "id": "6613755401", "tags": ""}, {"datetaken": "2011-10-09 11:57:40", "license": "3", "title": "Rustic Lounge, Redfish Lake Lodge, Idaho", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7169/6613759341_b5938855da_o.jpg", "secret": "64cd2a9b0f", "media": "photo", "latitude": "0", "id": "6613759341", "tags": ""}, {"datetaken": "2011-10-09 11:59:33", "license": "3", "title": "Rustic Lounge; Redfish Lake Lodge, Idaho", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7174/6613761483_3484560466_o.jpg", "secret": "93b651b680", "media": "photo", "latitude": "0", "id": "6613761483", "tags": ""}, {"datetaken": "2011-10-09 12:00:19", "license": "3", "title": "Table and fireplace; Rustic Lounge; Redfish Lake Lodge, Idaho", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7013/6613764799_eb2153046a_o.jpg", "secret": "fdf1a056f3", "media": "photo", "latitude": "0", "id": "6613764799", "tags": ""}, {"datetaken": "2011-10-09 12:15:41", "license": "3", "title": "RFLL", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7165/6613768077_99d7c89396_o.jpg", "secret": "c3d46cc493", "media": "photo", "latitude": "0", "id": "6613768077", "tags": ""}, {"datetaken": "2011-10-09 12:15:55", "license": "3", "title": "RFLL", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6613772331_6041da1a16_o.jpg", "secret": "dc188fcd21", "media": "photo", "latitude": "0", "id": "6613772331", "tags": ""}, {"datetaken": "2011-10-09 12:16:55", "license": "3", "title": "Read the sign", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7161/6613775269_3f2a592422_o.jpg", "secret": "90699aa32f", "media": "photo", "latitude": "0", "id": "6613775269", "tags": ""}, {"datetaken": "2011-10-09 12:19:36", "license": "3", "title": "Dock, Redfish Lake Lodge October, 2011", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7009/6613777113_0c96bd05c0_o.jpg", "secret": "46404df3e5", "media": "photo", "latitude": "0", "id": "6613777113", "tags": ""}, {"datetaken": "2011-10-09 12:20:23", "license": "3", "title": "Redfish Lake Lodge; Idaho", "text": "", "album_id": "72157628666487199", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6613712189_4cc0ea5051_o.jpg", "secret": "3490b58251", "media": "photo", "latitude": "0", "id": "6613712189", "tags": ""}, {"datetaken": "2007-10-18 18:48:58", "license": "2", "title": "Andere Seite von eben", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2219/1618130015_87ff20634c_o.jpg", "secret": "10da2eb2b6", "media": "photo", "latitude": "0", "id": "1618130015", "tags": ""}, {"datetaken": "2007-10-18 18:49:00", "license": "2", "title": "Aus einem Hotelfahrstuhl...", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2064/1618130315_789f528f98_o.jpg", "secret": "0a9d467a09", "media": "photo", "latitude": "0", "id": "1618130315", "tags": ""}, {"datetaken": "2007-10-18 18:49:01", "license": "2", "title": "Aussicht...", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2410/1618130595_d99c01cee4_o.jpg", "secret": "1e7e843f39", "media": "photo", "latitude": "0", "id": "1618130595", "tags": ""}, {"datetaken": "2007-10-18 18:49:03", "license": "2", "title": "Blick auf die Wharf und...", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2259/1619018518_042546f5d1_o.jpg", "secret": "94a1d0144f", "media": "photo", "latitude": "0", "id": "1619018518", "tags": ""}, {"datetaken": "2007-10-18 18:49:06", "license": "2", "title": "Blick von der GGB auf San Fran", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2375/1618131731_e90c732bd5_o.jpg", "secret": "7ad6c601e7", "media": "photo", "latitude": "0", "id": "1618131731", "tags": ""}, {"datetaken": "2007-10-18 18:49:07", "license": "2", "title": "Blick \u00fcber die Bay", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2373/1618131975_a1a5752b2d_o.jpg", "secret": "8002af546f", "media": "photo", "latitude": "0", "id": "1618131975", "tags": ""}, {"datetaken": "2007-10-18 18:49:09", "license": "2", "title": "China Beach", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2276/1618132411_ba66583e82_o.jpg", "secret": "a8b949328e", "media": "photo", "latitude": "0", "id": "1618132411", "tags": ""}, {"datetaken": "2007-10-18 18:49:10", "license": "2", "title": "Die Skyline von Downtown SF", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2323/1618132653_e89219ddc7_o.jpg", "secret": "af420664e5", "media": "photo", "latitude": "0", "id": "1618132653", "tags": ""}, {"datetaken": "2007-10-18 18:49:11", "license": "2", "title": "Downtown San Fran...", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2256/1618132871_a002e8ef2a_o.jpg", "secret": "eeffd69d47", "media": "photo", "latitude": "0", "id": "1618132871", "tags": ""}, {"datetaken": "2007-10-18 18:49:13", "license": "2", "title": "Eins der vielen Piers...", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2309/1618133271_9212084484_o.jpg", "secret": "83b92bd403", "media": "photo", "latitude": "0", "id": "1618133271", "tags": ""}, {"datetaken": "2007-10-18 18:49:14", "license": "2", "title": "Hochzeit an China Beach", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2225/1619021068_a4c4fd50c2_o.jpg", "secret": "a0dbb44b08", "media": "photo", "latitude": "0", "id": "1619021068", "tags": ""}, {"datetaken": "2007-10-18 18:49:15", "license": "2", "title": "Ich vor der City Hall", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2078/1619021290_8d1a8c7ec3_o.jpg", "secret": "085a4e55b6", "media": "photo", "latitude": "0", "id": "1619021290", "tags": ""}, {"datetaken": "2007-10-18 18:49:17", "license": "2", "title": "Lomard Street von oben", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2061/1619021696_b8461f0ee9_o.jpg", "secret": "380d347dba", "media": "photo", "latitude": "0", "id": "1619021696", "tags": ""}, {"datetaken": "2007-10-18 18:49:18", "license": "2", "title": "Lombard Street von unten", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2293/1618134549_9148732cfb_o.jpg", "secret": "4016ea5b17", "media": "photo", "latitude": "0", "id": "1618134549", "tags": ""}, {"datetaken": "2007-10-18 18:49:19", "license": "2", "title": "Raoul und Tobi mitten in...", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2035/1618134749_5a0d97be14_o.jpg", "secret": "116969d8a8", "media": "photo", "latitude": "0", "id": "1618134749", "tags": ""}, {"datetaken": "2007-10-18 18:49:20", "license": "2", "title": "San Francsico Golden Gate Park", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2317/1618134899_bfd455d5b4_o.jpg", "secret": "3dfb1705dd", "media": "photo", "latitude": "0", "id": "1618134899", "tags": ""}, {"datetaken": "2007-10-18 18:49:21", "license": "2", "title": "Sehr wichtig! Man muss mal...", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2202/1619022466_ae935dcb1b_o.jpg", "secret": "c8ccaebdc3", "media": "photo", "latitude": "0", "id": "1619022466", "tags": ""}, {"datetaken": "2007-10-18 18:49:21", "license": "2", "title": "Sonnenuntergang an China Beach", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2406/1618135341_0025c2f066_o.jpg", "secret": "4e31906970", "media": "photo", "latitude": "0", "id": "1618135341", "tags": ""}, {"datetaken": "2007-10-18 18:49:23", "license": "2", "title": "Sven auf der Golden Gate", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2187/1618135595_ba87a1cf19_o.jpg", "secret": "7cb67611fa", "media": "photo", "latitude": "0", "id": "1618135595", "tags": ""}, {"datetaken": "2007-10-18 18:49:24", "license": "2", "title": "Tobi und Sven auf der...", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2117/1618136017_d74a555fe3_o.jpg", "secret": "249f88a159", "media": "photo", "latitude": "0", "id": "1618136017", "tags": ""}, {"datetaken": "2007-10-18 18:49:25", "license": "2", "title": "Tobi...", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2180/1619023536_0a9f8ce533_o.jpg", "secret": "ed540c60f6", "media": "photo", "latitude": "0", "id": "1619023536", "tags": ""}, {"datetaken": "2007-10-18 18:49:26", "license": "2", "title": "Und nochmal ohne Leute", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2229/1618136471_7103c3caec_o.jpg", "secret": "ef4d6e2f29", "media": "photo", "latitude": "0", "id": "1618136471", "tags": ""}, {"datetaken": "2007-10-18 18:49:28", "license": "2", "title": "Union Square", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2388/1619024122_6d33173ad7_o.jpg", "secret": "2aedd7433b", "media": "photo", "latitude": "0", "id": "1619024122", "tags": ""}, {"datetaken": "2007-10-18 18:49:29", "license": "2", "title": "Abflugschalter der Lufthansa..", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2097/1618136959_29488c8de8_o.jpg", "secret": "f2cf978695", "media": "photo", "latitude": "0", "id": "1618136959", "tags": ""}, {"datetaken": "2007-10-18 18:50:14", "license": "2", "title": "Golden Gate Menschenauflauf", "text": "", "album_id": "72157602497828530", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2397/1619020852_a5812615fa_o.jpg", "secret": "f23fca123a", "media": "photo", "latitude": "0", "id": "1619020852", "tags": ""}, {"datetaken": "2003-08-03 12:26:56", "license": "1", "title": "Out the Window", "text": "", "album_id": "72157600001651295", "longitude": "-81.144847", "url_o": "https://farm1.staticflickr.com/3/4174277_c9261315fe_o.jpg", "secret": "c9261315fe", "media": "photo", "latitude": "43.032760", "id": "4174277", "tags": "window car alberta ontario"}, {"datetaken": "2003-08-03 12:27:06", "license": "1", "title": "On the Way", "text": "", "album_id": "72157600001651295", "longitude": "-81.144847", "url_o": "https://farm1.staticflickr.com/4/4174285_285c591741_o.jpg", "secret": "285c591741", "media": "photo", "latitude": "43.032760", "id": "4174285", "tags": "alberta ontario river"}, {"datetaken": "2003-08-03 16:11:54", "license": "1", "title": "The Plane", "text": "", "album_id": "72157600001651295", "longitude": "-81.144847", "url_o": "https://farm1.staticflickr.com/4/4174288_14519c117e_o.jpg", "secret": "14519c117e", "media": "photo", "latitude": "43.032760", "id": "4174288", "tags": "westget plane airport"}, {"datetaken": "2003-08-03 16:33:46", "license": "1", "title": "The Journey Begins", "text": "", "album_id": "72157600001651295", "longitude": "-81.144847", "url_o": "https://farm1.staticflickr.com/4/4174294_1080df0cca_o.jpg", "secret": "1080df0cca", "media": "photo", "latitude": "43.032760", "id": "4174294", "tags": "mom dad airplane alberta london"}, {"datetaken": "2003-08-03 17:27:52", "license": "1", "title": "More Clouds", "text": "", "album_id": "72157600001651295", "longitude": "-93.537597", "url_o": "https://farm1.staticflickr.com/4/4174300_e671903858_o.jpg", "secret": "e671903858", "media": "photo", "latitude": "50.018328", "id": "4174300", "tags": "wing fly alberta white clouds"}, {"datetaken": "2003-08-03 17:28:42", "license": "1", "title": "More Fun Across the Aisle", "text": "", "album_id": "72157600001651295", "longitude": "-93.537597", "url_o": "https://farm1.staticflickr.com/4/4174318_3cbd384044_o.jpg", "secret": "3cbd384044", "media": "photo", "latitude": "50.018328", "id": "4174318", "tags": "mom dad airplane alberta"}, {"datetaken": "2003-08-03 17:28:50", "license": "1", "title": "Fun Across the Aisle", "text": "", "album_id": "72157600001651295", "longitude": "-93.537597", "url_o": "https://farm1.staticflickr.com/4/4174332_4abd2afaea_o.jpg", "secret": "4abd2afaea", "media": "photo", "latitude": "50.018328", "id": "4174332", "tags": "airplane alberta mom dad"}, {"datetaken": "2003-08-03 17:51:08", "license": "1", "title": "Sea of Clouds", "text": "", "album_id": "72157600001651295", "longitude": "-93.537597", "url_o": "https://farm1.staticflickr.com/4/4174339_1e9451d3a7_o.jpg", "secret": "1e9451d3a7", "media": "photo", "latitude": "50.018328", "id": "4174339", "tags": "airplane alberta fly clouds wing"}, {"datetaken": "2003-08-03 18:02:25", "license": "1", "title": "102_0275", "text": "", "album_id": "72157600001651295", "longitude": "-93.537597", "url_o": "https://farm1.staticflickr.com/3/4174348_1f99c3465e_o.jpg", "secret": "1f99c3465e", "media": "photo", "latitude": "50.018328", "id": "4174348", "tags": "airplane alberta"}, {"datetaken": "2003-08-03 18:26:27", "license": "1", "title": "Sparse Clouds", "text": "", "album_id": "72157600001651295", "longitude": "-93.537597", "url_o": "https://farm1.staticflickr.com/4/4174364_c371ecea7e_o.jpg", "secret": "c371ecea7e", "media": "photo", "latitude": "50.018328", "id": "4174364", "tags": "airplane alberta clouds fly"}, {"datetaken": "2003-08-03 18:41:06", "license": "1", "title": "Cool Circle", "text": "", "album_id": "72157600001651295", "longitude": "-93.537597", "url_o": "https://farm1.staticflickr.com/3/4174376_164a86c9c4_o.jpg", "secret": "164a86c9c4", "media": "photo", "latitude": "50.018328", "id": "4174376", "tags": "airplane alberta window wing"}, {"datetaken": "2003-08-03 18:43:30", "license": "1", "title": "Flying In the Sky", "text": "", "album_id": "72157600001651295", "longitude": "-93.537597", "url_o": "https://farm1.staticflickr.com/4/4174380_3e54eb4869_o.jpg", "secret": "3e54eb4869", "media": "photo", "latitude": "50.018328", "id": "4174380", "tags": "airplane alberta flying wing fields clouds"}, {"datetaken": "2003-08-03 18:44:00", "license": "1", "title": "Many Fields", "text": "", "album_id": "72157600001651295", "longitude": "-93.537597", "url_o": "https://farm1.staticflickr.com/3/4174382_2dd3816612_o.jpg", "secret": "2dd3816612", "media": "photo", "latitude": "50.018328", "id": "4174382", "tags": "airplane alberta fields roads"}, {"datetaken": "2003-08-03 18:44:53", "license": "1", "title": "Shadows of Clouds", "text": "", "album_id": "72157600001651295", "longitude": "-93.537597", "url_o": "https://farm1.staticflickr.com/3/4174383_ca0b8a7619_o.jpg", "secret": "ca0b8a7619", "media": "photo", "latitude": "50.018328", "id": "4174383", "tags": "airplane alberta fly shadow cloud"}, {"datetaken": "2003-08-03 18:45:03", "license": "1", "title": "Puffy Clouds", "text": "", "album_id": "72157600001651295", "longitude": "-93.537597", "url_o": "https://farm1.staticflickr.com/1/4174385_38af4c945d_o.jpg", "secret": "38af4c945d", "media": "photo", "latitude": "50.018328", "id": "4174385", "tags": "airplane alberta clouds fly"}, {"datetaken": "2003-08-03 18:45:39", "license": "1", "title": "Subdivision", "text": "", "album_id": "72157600001651295", "longitude": "-93.537597", "url_o": "https://farm1.staticflickr.com/4/4174388_732e024ab1_o.jpg", "secret": "732e024ab1", "media": "photo", "latitude": "50.018328", "id": "4174388", "tags": "airplane alberta fly"}, {"datetaken": "2003-08-03 18:47:06", "license": "1", "title": "Two Roads", "text": "", "album_id": "72157600001651295", "longitude": "-93.537597", "url_o": "https://farm1.staticflickr.com/3/4174391_eebfaebb60_o.jpg", "secret": "eebfaebb60", "media": "photo", "latitude": "50.018328", "id": "4174391", "tags": "airplane alberta sky roads"}, {"datetaken": "2003-08-03 18:47:41", "license": "1", "title": "Turning", "text": "", "album_id": "72157600001651295", "longitude": "-93.537597", "url_o": "https://farm1.staticflickr.com/4/4174393_75c76ee741_o.jpg", "secret": "75c76ee741", "media": "photo", "latitude": "50.018328", "id": "4174393", "tags": "airplane alberta wing fly flaps turn"}, {"datetaken": "2003-08-03 18:55:56", "license": "1", "title": "Waiting By the Wing", "text": "", "album_id": "72157600001651295", "longitude": "-97.220549", "url_o": "https://farm1.staticflickr.com/3/4174395_3b22f8e90f_o.jpg", "secret": "3b22f8e90f", "media": "photo", "latitude": "49.912877", "id": "4174395", "tags": "airplane alberta winnipeg airport manitoba"}, {"datetaken": "2003-08-03 19:37:31", "license": "1", "title": "Four Points", "text": "", "album_id": "72157600001651295", "longitude": "-97.220549", "url_o": "https://farm1.staticflickr.com/3/4174399_9f6ea70ed4_o.jpg", "secret": "9f6ea70ed4", "media": "photo", "latitude": "49.912877", "id": "4174399", "tags": "airplane alberta winnipeg airport manitoba manitoba"}, {"datetaken": "2003-08-03 19:55:41", "license": "1", "title": "Taxi", "text": "", "album_id": "72157600001651295", "longitude": "-97.220549", "url_o": "https://farm1.staticflickr.com/4/4174402_4b5aa219ad_o.jpg", "secret": "4b5aa219ad", "media": "photo", "latitude": "49.912877", "id": "4174402", "tags": "airplane alberta winnipeg airport manitoba"}, {"datetaken": "2003-08-03 19:55:59", "license": "1", "title": "Pulling In", "text": "", "album_id": "72157600001651295", "longitude": "-97.220549", "url_o": "https://farm1.staticflickr.com/4/4174405_243c93858e_o.jpg", "secret": "243c93858e", "media": "photo", "latitude": "49.912877", "id": "4174405", "tags": "airplane alberta winnipeg airport manitoba"}, {"datetaken": "2003-08-03 19:56:32", "license": "1", "title": "Winnipeg Airport", "text": "", "album_id": "72157600001651295", "longitude": "-97.220549", "url_o": "https://farm1.staticflickr.com/3/4174407_15412c0fb9_o.jpg", "secret": "15412c0fb9", "media": "photo", "latitude": "49.912877", "id": "4174407", "tags": "airplane alberta winnepeg airport"}, {"datetaken": "2003-08-03 20:02:39", "license": "1", "title": "Airplane Skin", "text": "", "album_id": "72157600001651295", "longitude": "-114.052536", "url_o": "https://farm1.staticflickr.com/3/4174409_231f2c0b07_o.jpg", "secret": "231f2c0b07", "media": "photo", "latitude": "51.046195", "id": "4174409", "tags": "airplane alberta skin wing"}, {"datetaken": "2003-08-03 20:04:54", "license": "1", "title": "Alberta from Above", "text": "", "album_id": "72157600001651295", "longitude": "-114.052536", "url_o": "https://farm1.staticflickr.com/4/4174410_ef9b6befe3_o.jpg", "secret": "ef9b6befe3", "media": "photo", "latitude": "51.046195", "id": "4174410", "tags": "airplane alberta flying"}, {"datetaken": "2003-08-03 21:46:31", "license": "1", "title": "Calgary Airport", "text": "", "album_id": "72157600001651295", "longitude": "-114.052536", "url_o": "https://farm1.staticflickr.com/1/4174411_486607cf61_o.jpg", "secret": "486607cf61", "media": "photo", "latitude": "51.046195", "id": "4174411", "tags": "airplane alberta airport runway calgary"}, {"datetaken": "2003-08-03 21:52:04", "license": "1", "title": "The Trainer", "text": "", "album_id": "72157600001651295", "longitude": "-114.052536", "url_o": "https://farm1.staticflickr.com/3/4174412_11a2bba97d_o.jpg", "secret": "11a2bba97d", "media": "photo", "latitude": "51.046195", "id": "4174412", "tags": "airplane alberta airport runway calgary"}, {"datetaken": "2003-08-03 21:52:30", "license": "1", "title": "Conducting", "text": "", "album_id": "72157600001651295", "longitude": "-114.052536", "url_o": "https://farm1.staticflickr.com/4/4174417_48516b85ab_o.jpg", "secret": "48516b85ab", "media": "photo", "latitude": "51.046195", "id": "4174417", "tags": "alberta airport runway calgary"}, {"datetaken": "2003-08-03 22:02:58", "license": "1", "title": "Flying Beasts", "text": "", "album_id": "72157600001651295", "longitude": "-114.052536", "url_o": "https://farm1.staticflickr.com/4/4174418_33f543c348_o.jpg", "secret": "33f543c348", "media": "photo", "latitude": "51.046195", "id": "4174418", "tags": "airplane alberta dinosaur airport calgary"}, {"datetaken": "2003-08-03 22:03:07", "license": "1", "title": "More Flying Beasts", "text": "", "album_id": "72157600001651295", "longitude": "-114.052536", "url_o": "https://farm1.staticflickr.com/4/4174425_e67134ef6d_o.jpg", "secret": "e67134ef6d", "media": "photo", "latitude": "51.046195", "id": "4174425", "tags": "airplane alberta dinosaur airport calgary"}, {"datetaken": "2005-02-01 07:01:07", "license": "4", "title": "Sarvodaya UNHCR", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4103350_389e6485ba_o.jpg", "secret": "389e6485ba", "media": "photo", "latitude": "0", "id": "4103350", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 07:44:31", "license": "4", "title": "Holcim", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4103362_54302df5d2_o.jpg", "secret": "54302df5d2", "media": "photo", "latitude": "0", "id": "4103362", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 07:55:45", "license": "4", "title": "Back to School", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4103414_f9e84ab1b3_o.jpg", "secret": "f9e84ab1b3", "media": "photo", "latitude": "0", "id": "4103414", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 08:13:48", "license": "4", "title": "Sarvodaya Tent", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4103483_231053eedc_o.jpg", "secret": "231053eedc", "media": "photo", "latitude": "0", "id": "4103483", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 08:14:14", "license": "4", "title": "Sarvodaya Tent", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4103525_c46b533a73_o.jpg", "secret": "c46b533a73", "media": "photo", "latitude": "0", "id": "4103525", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 10:22:28", "license": "4", "title": "Sarvodaya Preschool", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4102424_fa22371fab_o.jpg", "secret": "fa22371fab", "media": "photo", "latitude": "0", "id": "4102424", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 10:23:34", "license": "4", "title": "Sarvodaya Preschool", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4102442_978f91eb25_o.jpg", "secret": "978f91eb25", "media": "photo", "latitude": "0", "id": "4102442", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 11:00:33", "license": "4", "title": "Sarvodaya Village", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4102490_45ac167fb8_o.jpg", "secret": "45ac167fb8", "media": "photo", "latitude": "0", "id": "4102490", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 11:20:51", "license": "4", "title": "Jeevan and Monk", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4102513_1fb305b27c_o.jpg", "secret": "1fb305b27c", "media": "photo", "latitude": "0", "id": "4102513", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 11:31:47", "license": "4", "title": "Matara Goods Collection Ticket", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7713128_c84b015cab_o.jpg", "secret": "c84b015cab", "media": "photo", "latitude": "0", "id": "7713128", "tags": "matara lanka srilanka"}, {"datetaken": "2005-02-01 11:35:36", "license": "4", "title": "In Line For Goods", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4102599_e4e4a4db6d_o.jpg", "secret": "e4e4a4db6d", "media": "photo", "latitude": "0", "id": "4102599", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 11:41:37", "license": "4", "title": "Sarvodaya Village Near the Beach", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4102655_92aa4817ef_o.jpg", "secret": "92aa4817ef", "media": "photo", "latitude": "0", "id": "4102655", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 12:03:58", "license": "4", "title": "Heading Home", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4102674_93cb194955_o.jpg", "secret": "93cb194955", "media": "photo", "latitude": "0", "id": "4102674", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 12:05:01", "license": "4", "title": "Taking Goods Home", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4102697_801fd9ca3b_o.jpg", "secret": "801fd9ca3b", "media": "photo", "latitude": "0", "id": "4102697", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 12:05:35", "license": "4", "title": "A Broken House", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4102713_ed0f6e8a53_o.jpg", "secret": "ed0f6e8a53", "media": "photo", "latitude": "0", "id": "4102713", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 12:25:32", "license": "4", "title": "Rebuilding By The Beach", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4102775_41e99d9353_o.jpg", "secret": "41e99d9353", "media": "photo", "latitude": "0", "id": "4102775", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 12:26:57", "license": "4", "title": "Matara Beach", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4102801_2e6b71c1dd_o.jpg", "secret": "2e6b71c1dd", "media": "photo", "latitude": "0", "id": "4102801", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 12:45:50", "license": "4", "title": "Sarvodaya Tent", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4102814_e563b14cf7_o.jpg", "secret": "e563b14cf7", "media": "photo", "latitude": "0", "id": "4102814", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 12:46:22", "license": "4", "title": "Kandy Volunteer", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4102827_95dc445937_o.jpg", "secret": "95dc445937", "media": "photo", "latitude": "0", "id": "4102827", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 12:46:28", "license": "4", "title": "Cooking Food", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4102844_71697c9868_o.jpg", "secret": "71697c9868", "media": "photo", "latitude": "0", "id": "4102844", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 12:47:54", "license": "4", "title": "Coming Back From School", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4102860_a7d21c87bf_o.jpg", "secret": "a7d21c87bf", "media": "photo", "latitude": "0", "id": "4102860", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 13:01:23", "license": "4", "title": "Volunteer From Kandy", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4102884_cd5b02794c_o.jpg", "secret": "cd5b02794c", "media": "photo", "latitude": "0", "id": "4102884", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 13:10:23", "license": "4", "title": "Kandy Volunteers", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4102908_aa2de77033_o.jpg", "secret": "aa2de77033", "media": "photo", "latitude": "0", "id": "4102908", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 13:13:31", "license": "4", "title": "A Broken House", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4102947_38e43f77c8_o.jpg", "secret": "38e43f77c8", "media": "photo", "latitude": "0", "id": "4102947", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 13:13:41", "license": "4", "title": "A Broken House", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4102963_38a78dc2b5_o.jpg", "secret": "38a78dc2b5", "media": "photo", "latitude": "0", "id": "4102963", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 15:47:22", "license": "4", "title": "Sarvodaya Village", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4102999_f5fd62e9a8_o.jpg", "secret": "f5fd62e9a8", "media": "photo", "latitude": "0", "id": "4102999", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 16:00:22", "license": "4", "title": "Matara Shattered Glass", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7713151_0c45fe03f1_o.jpg", "secret": "0c45fe03f1", "media": "photo", "latitude": "0", "id": "7713151", "tags": "matara lanka srilanka"}, {"datetaken": "2005-02-01 16:06:07", "license": "4", "title": "Stepping Into The Sea", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7713217_02573fdf8d_o.jpg", "secret": "02573fdf8d", "media": "photo", "latitude": "0", "id": "7713217", "tags": "matara lanka srilanka"}, {"datetaken": "2005-02-01 16:07:57", "license": "4", "title": "Beach at Matara", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4103034_2fb85bd521_o.jpg", "secret": "2fb85bd521", "media": "photo", "latitude": "0", "id": "4103034", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 16:08:47", "license": "4", "title": "Coral in Hand", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4103051_e481c0bff9_o.jpg", "secret": "e481c0bff9", "media": "photo", "latitude": "0", "id": "4103051", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 16:39:18", "license": "4", "title": "A House", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4103061_9d91dba2c7_o.jpg", "secret": "9d91dba2c7", "media": "photo", "latitude": "0", "id": "4103061", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 17:32:10", "license": "4", "title": "Woman and Tent", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4103078_9582c0491f_o.jpg", "secret": "9582c0491f", "media": "photo", "latitude": "0", "id": "4103078", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 17:33:48", "license": "4", "title": "Kids at Camp", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4103104_be7fbca50a_o.jpg", "secret": "be7fbca50a", "media": "photo", "latitude": "0", "id": "4103104", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 17:40:24", "license": "4", "title": "Boat and Tree", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4103128_040bd7b319_o.jpg", "secret": "040bd7b319", "media": "photo", "latitude": "0", "id": "4103128", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 17:40:37", "license": "4", "title": "Tree and Boat, Matara", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4103137_d685c5e465_o.jpg", "secret": "d685c5e465", "media": "photo", "latitude": "0", "id": "4103137", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 17:41:05", "license": "4", "title": "Matara Beached Boat", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4103159_c73211bd32_o.jpg", "secret": "c73211bd32", "media": "photo", "latitude": "0", "id": "4103159", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 17:42:32", "license": "4", "title": "The Matara Coast", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4103174_4cc4a1be75_o.jpg", "secret": "4cc4a1be75", "media": "photo", "latitude": "0", "id": "4103174", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 17:43:27", "license": "4", "title": "Sarvodaya Village", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4103201_32d17dc8f4_o.jpg", "secret": "32d17dc8f4", "media": "photo", "latitude": "0", "id": "4103201", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-01 17:43:46", "license": "4", "title": "Sarvodaya Village", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4103237_9760be710c_o.jpg", "secret": "9760be710c", "media": "photo", "latitude": "0", "id": "4103237", "tags": "sarvodaya matara tsunami relief lanka ariyaratne"}, {"datetaken": "2005-02-02 09:12:39", "license": "4", "title": "President of Sarvodaya Society in Madiyebattahura, Matara", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4143298_c05658a983_o.jpg", "secret": "c05658a983", "media": "photo", "latitude": "0", "id": "4143298", "tags": "matara sri lanka tsunami sarvodaya"}, {"datetaken": "2005-02-02 09:14:09", "license": "4", "title": "The calm after the storm", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4143330_d779bf0334_o.jpg", "secret": "d779bf0334", "media": "photo", "latitude": "0", "id": "4143330", "tags": "matara sri lanka tsunami sarvodaya"}, {"datetaken": "2005-02-02 09:16:26", "license": "4", "title": "Sarvodaya volunteers", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4143369_7b73dae710_o.jpg", "secret": "7b73dae710", "media": "photo", "latitude": "0", "id": "4143369", "tags": "matara sri lanka tsunami sarvodaya"}, {"datetaken": "2005-02-02 09:18:33", "license": "4", "title": "Sarvodaya employee gives kitchen utensils", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4143425_0dbf0549d9_o.jpg", "secret": "0dbf0549d9", "media": "photo", "latitude": "0", "id": "4143425", "tags": "matara sri lanka tsunami sarvodaya"}, {"datetaken": "2005-02-02 09:20:17", "license": "4", "title": "Cooking at a camp", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4143446_5a69782180_o.jpg", "secret": "5a69782180", "media": "photo", "latitude": "0", "id": "4143446", "tags": "matara sri lanka tsunami sarvodaya"}, {"datetaken": "2005-02-02 09:21:52", "license": "4", "title": "The temple survived", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4143480_840f60da0d_o.jpg", "secret": "840f60da0d", "media": "photo", "latitude": "0", "id": "4143480", "tags": "matara sri lanka tsunami sarvodaya"}, {"datetaken": "2005-02-02 09:23:07", "license": "4", "title": "Children's group meeting", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4143500_cb4f4477fe_o.jpg", "secret": "cb4f4477fe", "media": "photo", "latitude": "0", "id": "4143500", "tags": "matara sri lanka tsunami sarvodaya"}, {"datetaken": "2005-02-02 09:24:16", "license": "4", "title": "Children at a camp", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4143521_6cc75c3246_o.jpg", "secret": "6cc75c3246", "media": "photo", "latitude": "0", "id": "4143521", "tags": "matara sri lanka tsunami sarvodaya"}, {"datetaken": "2005-02-02 09:25:43", "license": "4", "title": "Children dancing", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4143546_40108e44cc_o.jpg", "secret": "40108e44cc", "media": "photo", "latitude": "0", "id": "4143546", "tags": "matara sri lanka tsunami sarvodaya"}, {"datetaken": "2005-02-02 09:27:38", "license": "4", "title": "More devastation...", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4143564_7485228475_o.jpg", "secret": "7485228475", "media": "photo", "latitude": "0", "id": "4143564", "tags": "matara sri lanka tsunami sarvodaya"}, {"datetaken": "2005-02-02 09:31:06", "license": "4", "title": "Loss of life and home", "text": "", "album_id": "103529", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4143607_6f4ee38a1f_o.jpg", "secret": "6f4ee38a1f", "media": "photo", "latitude": "0", "id": "4143607", "tags": "matara sri lanka tsunami sarvodaya"}, {"datetaken": "2005-01-01 10:31:47", "license": "3", "title": "200501 art gallery", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17045328_c6a27de00e_o.jpg", "secret": "c6a27de00e", "media": "photo", "latitude": "0", "id": "17045328", "tags": "travel tourist art brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 10:34:33", "license": "3", "title": "200501 beach", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17045484_4350237f5b_o.jpg", "secret": "4350237f5b", "media": "photo", "latitude": "0", "id": "17045484", "tags": "travel tourist beach brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 10:45:34", "license": "3", "title": "200501 citycat", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/17046315_f28fd0cddf_o.jpg", "secret": "f28fd0cddf", "media": "photo", "latitude": "0", "id": "17046315", "tags": "travel tourist citycat ferry publictransport brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 10:53:17", "license": "3", "title": "200501 customs house", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17046716_1abeab9ef7_o.jpg", "secret": "1abeab9ef7", "media": "photo", "latitude": "0", "id": "17046716", "tags": "travel tourist customshouse universityofqueensland uq brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 11:47:41", "license": "3", "title": "200501 conrad", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17046444_b4737bf518_o.jpg", "secret": "b4737bf518", "media": "photo", "latitude": "0", "id": "17046444", "tags": "travel tourist conradtreasury casino conrad brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 11:50:12", "license": "3", "title": "200501 conrad treasury", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17046576_b70b268d15_o.jpg", "secret": "b70b268d15", "media": "photo", "latitude": "0", "id": "17046576", "tags": "travel au australia brisbane tourist casino qld queensland conrad conradtreasury 3914"}, {"datetaken": "2005-01-01 12:29:51", "license": "3", "title": "200501 decorations", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17045197_45a54a9946_o.jpg", "secret": "45a54a9946", "media": "photo", "latitude": "0", "id": "17045197", "tags": "travel tourist christmas decorations brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 12:36:36", "license": "3", "title": "200501 victoria bridge", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17045629_7e6bed4110_o.jpg", "secret": "7e6bed4110", "media": "photo", "latitude": "0", "id": "17045629", "tags": "travel tourist victoriabridge brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 12:41:13", "license": "3", "title": "200501 busway", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17045998_7a9540fb7e_o.jpg", "secret": "7a9540fb7e", "media": "photo", "latitude": "0", "id": "17045998", "tags": "travel tourist bus publictransport brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 12:43:33", "license": "3", "title": "200501 central station", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17046162_f2cfc007a1_o.jpg", "secret": "f2cfc007a1", "media": "photo", "latitude": "0", "id": "17046162", "tags": "travel tourist centralstation brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 13:11:02", "license": "3", "title": "200501 lifeguard", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17048014_4fbaacbb83_o.jpg", "secret": "4fbaacbb83", "media": "photo", "latitude": "0", "id": "17048014", "tags": "travel tourist lifeguard beach brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 13:13:16", "license": "3", "title": "200501 national trust", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17048155_5bfb8f617f_o.jpg", "secret": "5bfb8f617f", "media": "photo", "latitude": "0", "id": "17048155", "tags": "travel tourist nationaltrust brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 13:26:16", "license": "3", "title": "200501 nepalese shrine", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17049109_43540089c5_o.jpg", "secret": "43540089c5", "media": "photo", "latitude": "0", "id": "17049109", "tags": "travel tourist nepalese shrine brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 13:28:12", "license": "3", "title": "200501 performing arts", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17049274_c91cd45533_o.jpg", "secret": "c91cd45533", "media": "photo", "latitude": "0", "id": "17049274", "tags": "travel tourist queenslandperformingartscentre qpac brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 13:30:36", "license": "3", "title": "200501 polo club", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17049414_89a79b9ba3_o.jpg", "secret": "89a79b9ba3", "media": "photo", "latitude": "0", "id": "17049414", "tags": "travel tourist naldhamhouse poloclub brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 13:32:49", "license": "3", "title": "200501 print", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17049595_bdec3d68aa_o.jpg", "secret": "bdec3d68aa", "media": "photo", "latitude": "0", "id": "17049595", "tags": "travel tourist brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 13:34:58", "license": "3", "title": "200501 shrine", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17049727_b2f263c445_o.jpg", "secret": "b2f263c445", "media": "photo", "latitude": "0", "id": "17049727", "tags": "travel tourist warmemorial brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 13:37:32", "license": "3", "title": "200501 snakes", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17049927_52a10ec87e_o.jpg", "secret": "52a10ec87e", "media": "photo", "latitude": "0", "id": "17049927", "tags": "travel tourist snakes queenslandmuseum brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 13:38:35", "license": "3", "title": "200501 bus", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17045796_a427856694_o.jpg", "secret": "a427856694", "media": "photo", "latitude": "0", "id": "17045796", "tags": "travel tourist bus publictransport brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 14:00:29", "license": "3", "title": "200501 entrance", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17047203_aeadb18122_o.jpg", "secret": "aeadb18122", "media": "photo", "latitude": "0", "id": "17047203", "tags": "travel tourist queenslandmuseum dinosaur brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 14:03:10", "license": "3", "title": "200501 flowers", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17047448_720c6d16a3_o.jpg", "secret": "720c6d16a3", "media": "photo", "latitude": "0", "id": "17047448", "tags": "travel tourist flower brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 14:05:26", "license": "3", "title": "200501 images", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17047616_a12cd72d40_o.jpg", "secret": "a12cd72d40", "media": "photo", "latitude": "0", "id": "17047616", "tags": "travel tourist queenslandmuseum brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 14:08:07", "license": "3", "title": "200501 in train", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17047815_46509b233e_o.jpg", "secret": "46509b233e", "media": "photo", "latitude": "0", "id": "17047815", "tags": "travel tourist qrail train publictransport brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 14:55:38", "license": "3", "title": "200501 dinosaur", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17046854_c5130308d8_o.jpg", "secret": "c5130308d8", "media": "photo", "latitude": "0", "id": "17046854", "tags": "travel tourist queenslandmuseum dinosaur brisbane queensland qld australia au"}, {"datetaken": "2005-01-01 14:57:38", "license": "3", "title": "200501 dizzy", "text": "", "album_id": "406244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17046959_902b7343d9_o.jpg", "secret": "902b7343d9", "media": "photo", "latitude": "0", "id": "17046959", "tags": "travel tourist sciencentre brisbane queensland qld australia au"}, {"datetaken": "2005-05-29 23:09:29", "license": "2", "title": "IMG_0799", "text": "", "album_id": "409687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17138641_7ccd9c95c1_o.jpg", "secret": "7ccd9c95c1", "media": "photo", "latitude": "0", "id": "17138641", "tags": ""}, {"datetaken": "2005-05-29 23:29:23", "license": "2", "title": "IMG_0899", "text": "", "album_id": "409687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17138654_9c8785344a_o.jpg", "secret": "9c8785344a", "media": "photo", "latitude": "0", "id": "17138654", "tags": ""}, {"datetaken": "2005-05-29 23:32:49", "license": "2", "title": "IMG_0938", "text": "", "album_id": "409687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17138666_d4dc331294_o.jpg", "secret": "d4dc331294", "media": "photo", "latitude": "0", "id": "17138666", "tags": ""}, {"datetaken": "2005-05-29 23:43:52", "license": "2", "title": "IMG_0985", "text": "", "album_id": "409687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17138678_a9b285437f_o.jpg", "secret": "a9b285437f", "media": "photo", "latitude": "0", "id": "17138678", "tags": ""}, {"datetaken": "2005-05-29 23:45:51", "license": "2", "title": "IMG_1003", "text": "", "album_id": "409687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17138688_feec82b924_o.jpg", "secret": "feec82b924", "media": "photo", "latitude": "0", "id": "17138688", "tags": ""}, {"datetaken": "2005-05-29 23:48:17", "license": "2", "title": "IMG_1027", "text": "", "album_id": "409687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17138695_5da7bda839_o.jpg", "secret": "5da7bda839", "media": "photo", "latitude": "0", "id": "17138695", "tags": ""}, {"datetaken": "2005-05-29 23:48:40", "license": "2", "title": "IMG_1030", "text": "", "album_id": "409687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17138708_7756b32eee_o.jpg", "secret": "7756b32eee", "media": "photo", "latitude": "0", "id": "17138708", "tags": ""}, {"datetaken": "2005-05-29 23:53:41", "license": "2", "title": "IMG_1050", "text": "", "album_id": "409687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17138735_18d099841b_o.jpg", "secret": "18d099841b", "media": "photo", "latitude": "0", "id": "17138735", "tags": ""}, {"datetaken": "2005-05-29 23:54:15", "license": "2", "title": "IMG_1054", "text": "", "album_id": "409687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17138761_c5b42ab745_o.jpg", "secret": "c5b42ab745", "media": "photo", "latitude": "0", "id": "17138761", "tags": ""}, {"datetaken": "2005-05-29 23:54:15", "license": "2", "title": "IMG_1053", "text": "", "album_id": "409687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17138754_f0326e696d_o.jpg", "secret": "f0326e696d", "media": "photo", "latitude": "0", "id": "17138754", "tags": ""}, {"datetaken": "2005-05-29 23:56:10", "license": "2", "title": "IMG_1070", "text": "", "album_id": "409687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17138769_9262aaadf0_o.jpg", "secret": "9262aaadf0", "media": "photo", "latitude": "0", "id": "17138769", "tags": ""}, {"datetaken": "2005-05-29 23:56:46", "license": "2", "title": "IMG_1079", "text": "", "album_id": "409687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17138790_c6939bbc4f_o.jpg", "secret": "c6939bbc4f", "media": "photo", "latitude": "0", "id": "17138790", "tags": ""}, {"datetaken": "2005-05-29 23:59:58", "license": "2", "title": "IMG_1093", "text": "", "album_id": "409687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17138807_1896531445_o.jpg", "secret": "1896531445", "media": "photo", "latitude": "0", "id": "17138807", "tags": ""}, {"datetaken": "2005-05-30 00:00:07", "license": "2", "title": "IMG_1094", "text": "", "album_id": "409687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17138819_fe6cdee1eb_o.jpg", "secret": "fe6cdee1eb", "media": "photo", "latitude": "0", "id": "17138819", "tags": ""}, {"datetaken": "2005-05-31 13:05:03", "license": "3", "title": "Lawrence on the train", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17126726_7afbb05b00_o.jpg", "secret": "7afbb05b00", "media": "photo", "latitude": "0", "id": "17126726", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 14:10:54", "license": "3", "title": "Clock Tower", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17126250_77d41c2b11_o.jpg", "secret": "77d41c2b11", "media": "photo", "latitude": "0", "id": "17126250", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 14:23:41", "license": "3", "title": "Brighton Streets", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17126284_d3e42c5a0c_o.jpg", "secret": "d3e42c5a0c", "media": "photo", "latitude": "0", "id": "17126284", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:29:26", "license": "3", "title": "Beach side", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17126318_76f42bcec8_o.jpg", "secret": "76f42bcec8", "media": "photo", "latitude": "0", "id": "17126318", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:29:38", "license": "3", "title": "Brighton Pier (the remaining one!)", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17126366_ccbe8a67d4_o.jpg", "secret": "ccbe8a67d4", "media": "photo", "latitude": "0", "id": "17126366", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:30:44", "license": "3", "title": "Pier side, broken pier in the background", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17126399_8afa5d5f62_o.jpg", "secret": "8afa5d5f62", "media": "photo", "latitude": "0", "id": "17126399", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:31:15", "license": "3", "title": "Lawrence", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17126421_f3166f17ef_o.jpg", "secret": "f3166f17ef", "media": "photo", "latitude": "0", "id": "17126421", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:32:11", "license": "3", "title": "Looi", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17126437_f15ad9c3ae_o.jpg", "secret": "f15ad9c3ae", "media": "photo", "latitude": "0", "id": "17126437", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:33:44", "license": "3", "title": "Round and round, the carousel", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17126462_4116cb6dc2_o.jpg", "secret": "4116cb6dc2", "media": "photo", "latitude": "0", "id": "17126462", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:35:33", "license": "3", "title": "Lonely", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17126500_7ce7a7530a_o.jpg", "secret": "7ce7a7530a", "media": "photo", "latitude": "0", "id": "17126500", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:35:55", "license": "3", "title": "Family time", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17126536_77c52a90c2_o.jpg", "secret": "77c52a90c2", "media": "photo", "latitude": "0", "id": "17126536", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:36:24", "license": "3", "title": "Snooze on the beach", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17126550_28bf4e4676_o.jpg", "secret": "28bf4e4676", "media": "photo", "latitude": "0", "id": "17126550", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:36:41", "license": "3", "title": "Strangely appropriate for Brighton", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17126579_e234b35eb0_o.jpg", "secret": "e234b35eb0", "media": "photo", "latitude": "0", "id": "17126579", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:37:49", "license": "3", "title": "No idea what this is", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17126595_2f71604385_o.jpg", "secret": "2f71604385", "media": "photo", "latitude": "0", "id": "17126595", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:38:01", "license": "3", "title": "Nope, still no clearer", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17126613_90190e0cd7_o.jpg", "secret": "90190e0cd7", "media": "photo", "latitude": "0", "id": "17126613", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:40:07", "license": "3", "title": "V clever..... and sweet!", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17126628_752bbf2a55_o.jpg", "secret": "752bbf2a55", "media": "photo", "latitude": "0", "id": "17126628", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:42:17", "license": "3", "title": "Self-explanatory", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17126647_e49f92cab3_o.jpg", "secret": "e49f92cab3", "media": "photo", "latitude": "0", "id": "17126647", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:43:12", "license": "3", "title": "Brighton Pier", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17126672_d0a7aa90a3_o.jpg", "secret": "d0a7aa90a3", "media": "photo", "latitude": "0", "id": "17126672", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:44:24", "license": "3", "title": "You scream, we scream....", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17126695_e7b6132276_o.jpg", "secret": "e7b6132276", "media": "photo", "latitude": "0", "id": "17126695", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:44:39", "license": "3", "title": "????", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17126706_fa6ee8ee45_o.jpg", "secret": "fa6ee8ee45", "media": "photo", "latitude": "0", "id": "17126706", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:52:32", "license": "3", "title": "Brighton Pier", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17127165_f96ab7ea8d_o.jpg", "secret": "f96ab7ea8d", "media": "photo", "latitude": "0", "id": "17127165", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:52:54", "license": "3", "title": "Couple", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17127205_77e255cca8_o.jpg", "secret": "77e255cca8", "media": "photo", "latitude": "0", "id": "17127205", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:53:21", "license": "3", "title": "Fun on the pier", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17127235_6a5a29d695_o.jpg", "secret": "6a5a29d695", "media": "photo", "latitude": "0", "id": "17127235", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:54:24", "license": "3", "title": "Remember these?", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17127273_3bd7db3dcb_o.jpg", "secret": "3bd7db3dcb", "media": "photo", "latitude": "0", "id": "17127273", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 15:57:18", "license": "3", "title": "Helter Skelter", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17127307_7fa1ac8cc0_o.jpg", "secret": "7fa1ac8cc0", "media": "photo", "latitude": "0", "id": "17127307", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 16:01:46", "license": "3", "title": "Beach", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17127334_1b7071bd60_o.jpg", "secret": "1b7071bd60", "media": "photo", "latitude": "0", "id": "17127334", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 16:03:14", "license": "3", "title": "Pierre Bear", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17127370_69771a668f_o.jpg", "secret": "69771a668f", "media": "photo", "latitude": "0", "id": "17127370", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 16:10:43", "license": "3", "title": "Town hall", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17126740_7ba39e15ae_o.jpg", "secret": "7ba39e15ae", "media": "photo", "latitude": "0", "id": "17126740", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 16:18:22", "license": "3", "title": "Pavillion", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17126756_80f44666f5_o.jpg", "secret": "80f44666f5", "media": "photo", "latitude": "0", "id": "17126756", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 16:18:37", "license": "3", "title": "Pavillion 2", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17126801_2685aaf937_o.jpg", "secret": "2685aaf937", "media": "photo", "latitude": "0", "id": "17126801", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 16:18:58", "license": "3", "title": "Pavillion gardens", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17126853_9814c7379b_o.jpg", "secret": "9814c7379b", "media": "photo", "latitude": "0", "id": "17126853", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 16:19:26", "license": "3", "title": "Pavillion 3", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17126897_18fb4eb5da_o.jpg", "secret": "18fb4eb5da", "media": "photo", "latitude": "0", "id": "17126897", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 16:21:17", "license": "3", "title": "Pavillion 4", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17126943_fa0fd4845a_o.jpg", "secret": "fa0fd4845a", "media": "photo", "latitude": "0", "id": "17126943", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 16:22:13", "license": "3", "title": "Pavillion 5....you get the idea", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17126992_ec99a9ceba_o.jpg", "secret": "ec99a9ceba", "media": "photo", "latitude": "0", "id": "17126992", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 16:36:02", "license": "3", "title": "The South Lanes", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17127015_f75a7c9602_o.jpg", "secret": "f75a7c9602", "media": "photo", "latitude": "0", "id": "17127015", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 16:59:09", "license": "3", "title": "The thinker on the egg-half", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/17127031_8033201cee_o.jpg", "secret": "8033201cee", "media": "photo", "latitude": "0", "id": "17127031", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 17:02:03", "license": "3", "title": "Angel", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/17127039_de34bc11a1_o.jpg", "secret": "de34bc11a1", "media": "photo", "latitude": "0", "id": "17127039", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 17:50:37", "license": "3", "title": "Exactly what it says", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17127064_2dc171481d_o.jpg", "secret": "2dc171481d", "media": "photo", "latitude": "0", "id": "17127064", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 17:53:39", "license": "3", "title": "One of the coolest T-shirt shops ever!", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17127095_558e98d671_o.jpg", "secret": "558e98d671", "media": "photo", "latitude": "0", "id": "17127095", "tags": "brighton may 05"}, {"datetaken": "2005-05-31 18:31:14", "license": "3", "title": "North Lanes", "text": "", "album_id": "72157594556564196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17127135_d6d70a70c6_o.jpg", "secret": "d6d70a70c6", "media": "photo", "latitude": "0", "id": "17127135", "tags": "brighton may 05"}, {"datetaken": "2005-06-24 18:39:41", "license": "1", "title": "early start", "text": "", "album_id": "72157600001637343", "longitude": "106.822128", "url_o": "https://farm1.staticflickr.com/17/23019331_b4d80bd0b1_o.jpg", "secret": "b4d80bd0b1", "media": "photo", "latitude": "-6.174944", "id": "23019331", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-24 21:02:01", "license": "1", "title": "warning", "text": "", "album_id": "72157600001637343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23019342_73aa16695a_o.jpg", "secret": "73aa16695a", "media": "photo", "latitude": "0", "id": "23019342", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-24 21:29:21", "license": "1", "title": "those talons must hurt", "text": "", "album_id": "72157600001637343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23019346_fe242c2d17_o.jpg", "secret": "fe242c2d17", "media": "photo", "latitude": "0", "id": "23019346", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-24 21:32:33", "license": "1", "title": "with his pet", "text": "", "album_id": "72157600001637343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23019351_4a23a555cf_o.jpg", "secret": "4a23a555cf", "media": "photo", "latitude": "0", "id": "23019351", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-24 21:37:47", "license": "1", "title": "hawk", "text": "", "album_id": "72157600001637343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23019356_703f9355e8_o.jpg", "secret": "703f9355e8", "media": "photo", "latitude": "0", "id": "23019356", "tags": "indonesia jakarta pelabuhanratu oceanqueenhotel bestofsummer2005"}, {"datetaken": "2005-06-24 22:47:30", "license": "1", "title": "breaking the fantasy", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/19/23019371_d0ac73ac2c_o.jpg", "secret": "d0ac73ac2c", "media": "photo", "latitude": "-6.970049", "id": "23019371", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-24 22:48:01", "license": "1", "title": "celebrating the end of the school year", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/16/23019384_df4b20a8a1_o.jpg", "secret": "df4b20a8a1", "media": "photo", "latitude": "-6.970049", "id": "23019384", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel people"}, {"datetaken": "2005-06-24 23:15:46", "license": "1", "title": "farming by the beach", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/17/23019497_4fd2f9791d_o.jpg", "secret": "4fd2f9791d", "media": "photo", "latitude": "-6.970049", "id": "23019497", "tags": "indonesia jakarta pelabuhanratu oceanqueenhotel bestofsummer2005"}, {"datetaken": "2005-06-24 23:15:47", "license": "1", "title": "pelabuhan ratu", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/18/23019502_1709f99ac3_o.jpg", "secret": "1709f99ac3", "media": "photo", "latitude": "-6.970049", "id": "23019502", "tags": "favorite indonesia jakarta favourites pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-24 23:29:37", "license": "1", "title": "approaching the hotel", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/17/23019505_016de64e0f_o.jpg", "secret": "016de64e0f", "media": "photo", "latitude": "-6.970049", "id": "23019505", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-24 23:34:53", "license": "1", "title": "taking in the view", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/18/23019509_d53f0ec4d0_o.jpg", "secret": "d53f0ec4d0", "media": "photo", "latitude": "-6.970049", "id": "23019509", "tags": "indonesia jakarta pelabuhanratu oceanqueenhotel bestofsummer2005"}, {"datetaken": "2005-06-24 23:40:35", "license": "1", "title": "me and my father", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/19/23019519_e15769cb1b_o.jpg", "secret": "e15769cb1b", "media": "photo", "latitude": "-6.970049", "id": "23019519", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-24 23:43:39", "license": "1", "title": "father", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/17/23019525_aff83a71ac_o.jpg", "secret": "aff83a71ac", "media": "photo", "latitude": "-6.970049", "id": "23019525", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-24 23:47:03", "license": "1", "title": "me", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/17/23019533_8be78c1aaf_o.jpg", "secret": "8be78c1aaf", "media": "photo", "latitude": "-6.970049", "id": "23019533", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-24 23:47:43", "license": "1", "title": "mother", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/16/23019541_d2045edea4_o.jpg", "secret": "d2045edea4", "media": "photo", "latitude": "-6.970049", "id": "23019541", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-24 23:56:42", "license": "1", "title": "pelabuhan ratu", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/18/23019546_d137cf6543_o.jpg", "secret": "d137cf6543", "media": "photo", "latitude": "-6.970049", "id": "23019546", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-24 23:58:09", "license": "1", "title": "pelabuhan ratu", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/16/23019661_fbef253efe_o.jpg", "secret": "fbef253efe", "media": "photo", "latitude": "-6.970049", "id": "23019661", "tags": "indonesia jakarta pelabuhanratu oceanqueenhotel bestofsummer2005"}, {"datetaken": "2005-06-24 23:58:46", "license": "1", "title": "collecting hermit crabs", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/18/23019704_c4a3b77666_o.jpg", "secret": "c4a3b77666", "media": "photo", "latitude": "-6.970049", "id": "23019704", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-25 00:00:45", "license": "1", "title": "maintaing his balance", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/16/23019724_3872847df8_o.jpg", "secret": "3872847df8", "media": "photo", "latitude": "-6.970049", "id": "23019724", "tags": "bw white black monochrome indonesia jakarta pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-25 00:17:20", "license": "1", "title": "parents", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/19/23019734_3e17bdd0f4_o.jpg", "secret": "3e17bdd0f4", "media": "photo", "latitude": "-6.970049", "id": "23019734", "tags": "indonesia parents mother jakarta manju basant pelabuhanratu bhansali oceanqueenhotel bestofsummer2005"}, {"datetaken": "2005-06-25 00:17:40", "license": "1", "title": "beach hut", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/19/23019758_2e32fdce66_o.jpg", "secret": "2e32fdce66", "media": "photo", "latitude": "-6.970049", "id": "23019758", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-25 00:21:37", "license": "1", "title": "face off w/ a fishing boat", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/18/23019771_63cfac117b_o.jpg", "secret": "63cfac117b", "media": "photo", "latitude": "-6.970049", "id": "23019771", "tags": "favorite indonesia jakarta favourites pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-25 01:58:18", "license": "1", "title": "view from the living room", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/16/23019775_11b7517abf_o.jpg", "secret": "11b7517abf", "media": "photo", "latitude": "-6.970049", "id": "23019775", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-25 01:58:32", "license": "1", "title": "enjoying a peaceful morning", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/19/23019781_5cce142770_o.jpg", "secret": "5cce142770", "media": "photo", "latitude": "-6.970049", "id": "23019781", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-25 02:05:57", "license": "1", "title": "our little bungalow", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/18/23019831_59ab8f71c8_o.jpg", "secret": "59ab8f71c8", "media": "photo", "latitude": "-6.970049", "id": "23019831", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-25 02:18:13", "license": "1", "title": "mother, sleeping", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/19/23019833_57f2c8f2c9_o.jpg", "secret": "57f2c8f2c9", "media": "photo", "latitude": "-6.970049", "id": "23019833", "tags": "indonesia jakarta pelabuhanratu oceanqueenhotel bestofsummer2005"}, {"datetaken": "2005-06-25 05:14:39", "license": "1", "title": "ocean queen hotel", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/16/23019838_3d23de2d88_o.jpg", "secret": "3d23de2d88", "media": "photo", "latitude": "-6.970049", "id": "23019838", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-25 05:34:10", "license": "1", "title": "crab collection", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/19/23019845_d8f884d474_o.jpg", "secret": "d8f884d474", "media": "photo", "latitude": "-6.970049", "id": "23019845", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-25 05:42:51", "license": "1", "title": "pelabuhan ratu", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/19/23019857_6b0357cfac_o.jpg", "secret": "6b0357cfac", "media": "photo", "latitude": "-6.970049", "id": "23019857", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-25 08:00:13", "license": "1", "title": "fireworks on the beach", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/17/23019867_1332063ea3_o.jpg", "secret": "1332063ea3", "media": "photo", "latitude": "-6.970049", "id": "23019867", "tags": "indonesia jakarta pelabuhanratu oceanqueenhotel bestofsummer2005"}, {"datetaken": "2005-06-25 08:09:09", "license": "1", "title": "fireworks on the beach", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/18/23019877_3a2372853d_o.jpg", "secret": "3a2372853d", "media": "photo", "latitude": "-6.970049", "id": "23019877", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-25 08:11:01", "license": "1", "title": "fireworks on the beach", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/17/23019881_adec3c5b22_o.jpg", "secret": "adec3c5b22", "media": "photo", "latitude": "-6.970049", "id": "23019881", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-25 09:26:00", "license": "1", "title": "fat lizard", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/18/23019993_30a19b890a_o.jpg", "secret": "30a19b890a", "media": "photo", "latitude": "-6.970049", "id": "23019993", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-25 19:58:34", "license": "1", "title": "pelabuhan ratu", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/7/23019998_577dac7f2c_o.jpg", "secret": "577dac7f2c", "media": "photo", "latitude": "-6.970049", "id": "23019998", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-25 19:58:46", "license": "1", "title": "pelabuhan ratu", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/19/23020004_76ba908e75_o.jpg", "secret": "76ba908e75", "media": "photo", "latitude": "-6.970049", "id": "23020004", "tags": "indonesia jakarta pelabuhanratu oceanqueenhotel bestofsummer2005"}, {"datetaken": "2005-06-25 20:00:31", "license": "1", "title": "pelabuhan ratu early morning", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/7/23020011_9761fdf30d_o.jpg", "secret": "9761fdf30d", "media": "photo", "latitude": "-6.970049", "id": "23020011", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-25 20:01:48", "license": "1", "title": "pelabuhan ratu sunrise", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/19/23020014_13b1198f0c_o.jpg", "secret": "13b1198f0c", "media": "photo", "latitude": "-6.970049", "id": "23020014", "tags": "indonesia jakarta pelabuhanratu oceanqueenhotel bestofsummer2005"}, {"datetaken": "2005-06-25 20:05:10", "license": "1", "title": "waves crashing", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/3/23020020_76110dce7d_o.jpg", "secret": "76110dce7d", "media": "photo", "latitude": "-6.970049", "id": "23020020", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-26 01:34:55", "license": "1", "title": "driving back", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/17/23020026_06a6a8fdbb_o.jpg", "secret": "06a6a8fdbb", "media": "photo", "latitude": "-6.970049", "id": "23020026", "tags": "indonesia jakarta pelabuhanratu oceanqueenhotel bestofsummer2005"}, {"datetaken": "2005-06-26 02:12:24", "license": "1", "title": "$3 bribe", "text": "", "album_id": "72157600001637343", "longitude": "106.317443", "url_o": "https://farm1.staticflickr.com/5/23020029_d40f01d9ff_o.jpg", "secret": "d40f01d9ff", "media": "photo", "latitude": "-6.970049", "id": "23020029", "tags": "jakarta indonesia pelabuhanratu oceanqueenhotel"}, {"datetaken": "2005-06-26 04:29:26", "license": "1", "title": "floating restaurant", "text": "", "album_id": "72157600001637343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23020095_181f081860_o.jpg", "secret": "181f081860", "media": "photo", "latitude": "0", "id": "23020095", "tags": "jakarta indonesia floatingrestaurant lakelido southwestjava"}, {"datetaken": "2005-06-26 04:33:28", "license": "1", "title": "floating restaurant", "text": "", "album_id": "72157600001637343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/23020100_415ba14dd2_o.jpg", "secret": "415ba14dd2", "media": "photo", "latitude": "0", "id": "23020100", "tags": "jakarta indonesia floatingrestaurant lakelido southwestjava"}, {"datetaken": "2005-06-26 04:39:40", "license": "1", "title": "parents", "text": "", "album_id": "72157600001637343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/23020119_db5dae9b1f_o.jpg", "secret": "db5dae9b1f", "media": "photo", "latitude": "0", "id": "23020119", "tags": "jakarta indonesia floatingrestaurant lakelido southwestjava"}, {"datetaken": "2005-06-26 04:40:48", "license": "1", "title": "floating restaurant", "text": "", "album_id": "72157600001637343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23020123_a51f60f7e9_o.jpg", "secret": "a51f60f7e9", "media": "photo", "latitude": "0", "id": "23020123", "tags": "jakarta indonesia floatingrestaurant lakelido southwestjava"}, {"datetaken": "2005-06-26 04:42:07", "license": "1", "title": "floating restaurant", "text": "", "album_id": "72157600001637343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/23020136_6c7410ad53_o.jpg", "secret": "6c7410ad53", "media": "photo", "latitude": "0", "id": "23020136", "tags": "jakarta indonesia floatingrestaurant lakelido southwestjava"}, {"datetaken": "2005-06-26 04:46:04", "license": "1", "title": "floating restaurant", "text": "", "album_id": "72157600001637343", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23020145_509094a684_o.jpg", "secret": "509094a684", "media": "photo", "latitude": "0", "id": "23020145", "tags": "jakarta indonesia floatingrestaurant lakelido southwestjava"}, {"datetaken": "2003-08-18 11:18:55", "license": "5", "title": "windmillnite2", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1873034_3c8aa446be_o.jpg", "secret": "3c8aa446be", "media": "photo", "latitude": "0", "id": "1873034", "tags": "mykonos greece 1997"}, {"datetaken": "2003-08-18 11:18:56", "license": "5", "title": "northcoast2", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1873027_9aa0d564de_o.jpg", "secret": "9aa0d564de", "media": "photo", "latitude": "0", "id": "1873027", "tags": "mykonos greece 1997"}, {"datetaken": "2003-08-18 11:18:59", "license": "5", "title": "northbeach", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1873013_1efd80f9e4_o.jpg", "secret": "1efd80f9e4", "media": "photo", "latitude": "0", "id": "1873013", "tags": "mykonos greece 1997"}, {"datetaken": "2003-08-18 11:18:59", "license": "5", "title": "northcoast3", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1873031_7a5ea29ea8_o.jpg", "secret": "7a5ea29ea8", "media": "photo", "latitude": "0", "id": "1873031", "tags": "mykonos greece 1997"}, {"datetaken": "2003-08-18 11:19:00", "license": "5", "title": "northbeach3", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1873006_d35c54f035_o.jpg", "secret": "d35c54f035", "media": "photo", "latitude": "0", "id": "1873006", "tags": "mykonos greece 1997"}, {"datetaken": "2003-08-18 11:19:01", "license": "5", "title": "northbeach2", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1873005_1853b29d57_o.jpg", "secret": "1853b29d57", "media": "photo", "latitude": "0", "id": "1873005", "tags": "mykonos greece 1997"}, {"datetaken": "2003-08-18 11:19:03", "license": "5", "title": "northbeach4", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1873011_fbc285aef7_o.jpg", "secret": "fbc285aef7", "media": "photo", "latitude": "0", "id": "1873011", "tags": "mykonos greece 1997"}, {"datetaken": "2003-08-18 11:19:05", "license": "5", "title": "mykonostown", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1873000_98e967e053_o.jpg", "secret": "98e967e053", "media": "photo", "latitude": "0", "id": "1873000", "tags": "mykonos greece 1997"}, {"datetaken": "2003-08-18 11:19:05", "license": "5", "title": "ken", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1872989_ec537d835b_o.jpg", "secret": "ec537d835b", "media": "photo", "latitude": "0", "id": "1872989", "tags": "mykonos greece 1997"}, {"datetaken": "2003-08-18 11:19:06", "license": "5", "title": "mykonosbeach", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1872995_0721a4e1a3_o.jpg", "secret": "0721a4e1a3", "media": "photo", "latitude": "0", "id": "1872995", "tags": "mykonos greece 1997"}, {"datetaken": "2003-08-18 11:19:08", "license": "5", "title": "sailship", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1873032_3a29c51e31_o.jpg", "secret": "3a29c51e31", "media": "photo", "latitude": "0", "id": "1873032", "tags": "mykonos greece 1997"}, {"datetaken": "2003-08-18 11:19:09", "license": "5", "title": "northcoast1", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1873024_024f8d4339_o.jpg", "secret": "024f8d4339", "media": "photo", "latitude": "0", "id": "1873024", "tags": "mykonos greece 1997"}, {"datetaken": "2003-08-18 11:19:10", "license": "5", "title": "agiosiaohhios", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1872982_574fb151e4_o.jpg", "secret": "574fb151e4", "media": "photo", "latitude": "0", "id": "1872982", "tags": "mykonos greece 1997"}, {"datetaken": "2003-08-18 11:19:11", "license": "5", "title": "wreck", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1873037_7f5fc1105f_o.jpg", "secret": "7f5fc1105f", "media": "photo", "latitude": "0", "id": "1873037", "tags": "mykonos greece 1997"}, {"datetaken": "2003-08-18 11:19:11", "license": "5", "title": "windmillnite", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1873036_13cf54a315_o.jpg", "secret": "13cf54a315", "media": "photo", "latitude": "0", "id": "1873036", "tags": "mykonos greece 1997"}, {"datetaken": "2003-08-18 11:19:13", "license": "5", "title": "hardrocknite", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1872986_39b642d605_o.jpg", "secret": "39b642d605", "media": "photo", "latitude": "0", "id": "1872986", "tags": "mykonos greece 1997"}, {"datetaken": "2003-08-18 11:19:13", "license": "5", "title": "littlevenice", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1872993_a6df708e68_o.jpg", "secret": "a6df708e68", "media": "photo", "latitude": "0", "id": "1872993", "tags": "mykonos greece 1997"}, {"datetaken": "2003-08-18 11:19:14", "license": "5", "title": "hardrockday", "text": "", "album_id": "47498", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1872984_5cfbc7dc00_o.jpg", "secret": "5cfbc7dc00", "media": "photo", "latitude": "0", "id": "1872984", "tags": "mykonos greece 1997"}, {"datetaken": "2006-12-30 15:21:54", "license": "6", "title": "Three Tables, North Shore", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/344886610_62b16fcca8_o.jpg", "secret": "62b16fcca8", "media": "photo", "latitude": "0", "id": "344886610", "tags": ""}, {"datetaken": "2006-12-30 15:24:27", "license": "6", "title": "Three Tables, North Shore", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/344886615_b6e3bbffbe_o.jpg", "secret": "b6e3bbffbe", "media": "photo", "latitude": "0", "id": "344886615", "tags": ""}, {"datetaken": "2006-12-30 15:26:51", "license": "6", "title": "Three Tables, North Shore", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/344886633_3f9dca4b24_o.jpg", "secret": "3f9dca4b24", "media": "photo", "latitude": "0", "id": "344886633", "tags": ""}, {"datetaken": "2006-12-30 15:27:59", "license": "6", "title": "Three Tables, North Shore", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/344886635_0d12e3d455_o.jpg", "secret": "0d12e3d455", "media": "photo", "latitude": "0", "id": "344886635", "tags": ""}, {"datetaken": "2006-12-30 16:48:54", "license": "6", "title": "Three Tables, North Shore", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/344886639_a2b132dc2e_o.jpg", "secret": "a2b132dc2e", "media": "photo", "latitude": "0", "id": "344886639", "tags": ""}, {"datetaken": "2006-12-30 16:49:27", "license": "6", "title": "Three Tables, North Shore", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/344886648_f59810741a_o.jpg", "secret": "f59810741a", "media": "photo", "latitude": "0", "id": "344886648", "tags": ""}, {"datetaken": "2006-12-30 16:49:53", "license": "6", "title": "Three Tables, North Shore", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/344894574_ac99ea54f4_o.jpg", "secret": "ac99ea54f4", "media": "photo", "latitude": "0", "id": "344894574", "tags": ""}, {"datetaken": "2006-12-30 16:50:45", "license": "6", "title": "Three Tables, North Shore", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/344894580_89f27a028d_o.jpg", "secret": "89f27a028d", "media": "photo", "latitude": "0", "id": "344894580", "tags": ""}, {"datetaken": "2007-01-01 07:11:44", "license": "6", "title": "Sunrise on New Year's Day 2007, Malaekahana Beach", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/344894590_7c7ad61938_o.jpg", "secret": "7c7ad61938", "media": "photo", "latitude": "0", "id": "344894590", "tags": ""}, {"datetaken": "2007-01-01 07:11:59", "license": "6", "title": "Sunrise on New Year's Day 2007, Malaekahana Beach", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/344894597_ab3ab4779a_o.jpg", "secret": "ab3ab4779a", "media": "photo", "latitude": "0", "id": "344894597", "tags": ""}, {"datetaken": "2007-01-01 07:12:08", "license": "6", "title": "Sunrise on New Year's Day 2007, Malaekahana Beach", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/344894602_be04e984bb_o.jpg", "secret": "be04e984bb", "media": "photo", "latitude": "0", "id": "344894602", "tags": ""}, {"datetaken": "2007-01-01 07:12:14", "license": "6", "title": "Sunrise on New Year's Day 2007, Malaekahana Beach", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/344894609_158c724bd7_o.jpg", "secret": "158c724bd7", "media": "photo", "latitude": "0", "id": "344894609", "tags": ""}, {"datetaken": "2007-01-01 07:12:42", "license": "6", "title": "Sunrise on New Year's Day 2007, Malaekahana Beach", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/344903944_6f0ecd0aac_o.jpg", "secret": "6f0ecd0aac", "media": "photo", "latitude": "0", "id": "344903944", "tags": ""}, {"datetaken": "2007-01-01 07:13:29", "license": "6", "title": "Sunrise on New Year's Day 2007, Malaekahana Beach", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/344903949_4072db6f60_o.jpg", "secret": "4072db6f60", "media": "photo", "latitude": "0", "id": "344903949", "tags": ""}, {"datetaken": "2007-01-01 07:14:39", "license": "6", "title": "Sunrise on New Year's Day 2007, Malaekahana Beach", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/344903953_622c156e4f_o.jpg", "secret": "622c156e4f", "media": "photo", "latitude": "0", "id": "344903953", "tags": ""}, {"datetaken": "2007-01-01 07:15:07", "license": "6", "title": "Sunrise on New Year's Day 2007, Malaekahana Beach", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/344903958_874ae06b95_o.jpg", "secret": "874ae06b95", "media": "photo", "latitude": "0", "id": "344903958", "tags": ""}, {"datetaken": "2007-01-01 07:16:35", "license": "6", "title": "Sunrise on New Year's Day 2007, Malaekahana Beach", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/344903967_c22c039376_o.jpg", "secret": "c22c039376", "media": "photo", "latitude": "0", "id": "344903967", "tags": ""}, {"datetaken": "2007-01-01 07:16:45", "license": "6", "title": "Sunrise on New Year's Day 2007, Malaekahana Beach", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/344903970_1965806dd6_o.jpg", "secret": "1965806dd6", "media": "photo", "latitude": "0", "id": "344903970", "tags": ""}, {"datetaken": "2007-01-01 07:17:09", "license": "6", "title": "Sunrise New Year's Day 2007, Malaekahana Beach", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/344911024_fd819f7998_o.jpg", "secret": "fd819f7998", "media": "photo", "latitude": "0", "id": "344911024", "tags": ""}, {"datetaken": "2007-01-01 07:17:25", "license": "6", "title": "Sunrise New Year's Day 2007, Malaekahana Beach", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/344911035_5ac297f17d_o.jpg", "secret": "5ac297f17d", "media": "photo", "latitude": "0", "id": "344911035", "tags": ""}, {"datetaken": "2007-01-01 09:34:57", "license": "6", "title": "Sunrise New Year's Day 2007, Malaekahana Beach", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/344911041_2ad8f96ab0_o.jpg", "secret": "2ad8f96ab0", "media": "photo", "latitude": "0", "id": "344911041", "tags": ""}, {"datetaken": "2007-01-01 09:35:29", "license": "6", "title": "Sunrise New Year's Day 2007, Malaekahana Beach", "text": "", "album_id": "72157594458084619", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/344911047_bdf4cb2266_o.jpg", "secret": "bdf4cb2266", "media": "photo", "latitude": "0", "id": "344911047", "tags": ""}, {"datetaken": "2010-01-01 23:54:30", "license": "3", "title": "Arrowtown pharmacy", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2655/4240299068_a9026dbdd0_o.jpg", "secret": "c84d046b4d", "media": "photo", "latitude": "0", "id": "4240299068", "tags": "newzealand"}, {"datetaken": "2010-01-02 01:29:35", "license": "3", "title": "The Lindis pass", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4239525267_71db4bc859_o.jpg", "secret": "35ece20302", "media": "photo", "latitude": "0", "id": "4239525267", "tags": "newzealand"}, {"datetaken": "2010-01-02 01:47:50", "license": "3", "title": "The clay cliffs", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4240298352_cf674c343a_o.jpg", "secret": "63008b6647", "media": "photo", "latitude": "0", "id": "4240298352", "tags": "newzealand"}, {"datetaken": "2010-01-02 02:10:13", "license": "3", "title": "En route to Oamaru", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4240298128_168659234a_o.jpg", "secret": "3838944f79", "media": "photo", "latitude": "0", "id": "4240298128", "tags": "newzealand"}, {"datetaken": "2010-01-02 02:24:03", "license": "3", "title": "En route to Oamaru", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4239524621_23f0db9ab6_o.jpg", "secret": "5efedc3e57", "media": "photo", "latitude": "0", "id": "4239524621", "tags": "newzealand"}, {"datetaken": "2010-01-02 02:26:29", "license": "3", "title": "En route to Oamaru", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2543/4240297740_4b8d8cc08e_o.jpg", "secret": "747ed36f8f", "media": "photo", "latitude": "0", "id": "4240297740", "tags": "newzealand"}, {"datetaken": "2010-01-02 02:26:47", "license": "3", "title": "En route to Oamaru", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4240297522_918f914372_o.jpg", "secret": "34b52bc44f", "media": "photo", "latitude": "0", "id": "4240297522", "tags": "newzealand"}, {"datetaken": "2010-01-02 02:30:17", "license": "3", "title": "En route to Oamaru", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2717/4239523957_11f5de16c2_o.jpg", "secret": "2f5ca6f44a", "media": "photo", "latitude": "0", "id": "4239523957", "tags": "newzealand"}, {"datetaken": "2010-01-02 02:33:57", "license": "3", "title": "En route to Oamaru", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4239523635_95e2851611_o.jpg", "secret": "e5c432dfc5", "media": "photo", "latitude": "0", "id": "4239523635", "tags": "newzealand"}, {"datetaken": "2010-01-02 04:53:47", "license": "3", "title": "The Moeraki Boulders", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4240296860_a982d2b757_o.jpg", "secret": "954e7de431", "media": "photo", "latitude": "0", "id": "4240296860", "tags": "newzealand boulders moeraki"}, {"datetaken": "2010-01-02 04:54:35", "license": "3", "title": "The Moeraki Boulders", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2637/4239523151_cf9ed1ddf0_o.jpg", "secret": "0468dd3f96", "media": "photo", "latitude": "0", "id": "4239523151", "tags": "newzealand boulders moeraki"}, {"datetaken": "2010-01-02 04:55:27", "license": "3", "title": "The Moeraki Boulders", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2791/4240296450_378d171f89_o.jpg", "secret": "c0967901f1", "media": "photo", "latitude": "0", "id": "4240296450", "tags": "newzealand boulders moeraki"}, {"datetaken": "2010-01-02 04:55:40", "license": "3", "title": "The Moeraki Boulders", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4239522517_2bc2ef7800_o.jpg", "secret": "2457e2859f", "media": "photo", "latitude": "0", "id": "4239522517", "tags": "newzealand boulders moeraki"}, {"datetaken": "2010-01-02 04:57:15", "license": "3", "title": "The Moeraki Boulders", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4239522313_d18069dc95_o.jpg", "secret": "4d139aed2e", "media": "photo", "latitude": "0", "id": "4239522313", "tags": "newzealand boulders moeraki"}, {"datetaken": "2010-01-02 04:57:30", "license": "3", "title": "The Moeraki Boulders", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4239522141_30a72e4cee_o.jpg", "secret": "0929f32a33", "media": "photo", "latitude": "0", "id": "4239522141", "tags": "newzealand boulders moeraki"}, {"datetaken": "2010-01-02 05:00:15", "license": "3", "title": "The Moeraki Boulders", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2484/4240295534_849f0dc194_o.jpg", "secret": "0675fb8088", "media": "photo", "latitude": "0", "id": "4240295534", "tags": "newzealand boulders moeraki"}, {"datetaken": "2010-01-02 09:00:50", "license": "3", "title": "Yellow eyed penguins at Oamaru", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2685/4239521801_274e77425b_o.jpg", "secret": "6a0dbf7aee", "media": "photo", "latitude": "0", "id": "4239521801", "tags": "newzealand penguin oamaru"}, {"datetaken": "2010-01-02 09:00:53", "license": "3", "title": "Yellow eyed penguins at Oamaru", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4239521551_4a48bafbf3_o.jpg", "secret": "80e31ee1b6", "media": "photo", "latitude": "0", "id": "4239521551", "tags": "newzealand penguin oamaru"}, {"datetaken": "2010-01-02 09:05:58", "license": "3", "title": "Yellow eyed penguins at OamaruYellow eyed penguins at Oamaru", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2754/4240294864_83163bf7c4_o.jpg", "secret": "1a222ff390", "media": "photo", "latitude": "0", "id": "4240294864", "tags": "newzealand penguin oamaru"}, {"datetaken": "2010-01-02 09:07:27", "license": "3", "title": "Yellow eyed penguins at Oamaru", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2533/4240294650_7eb8d919bc_o.jpg", "secret": "a13d7f43bc", "media": "photo", "latitude": "0", "id": "4240294650", "tags": "newzealand penguin oamaru"}, {"datetaken": "2010-01-02 09:08:50", "license": "3", "title": "Yellow eyed penguins at Oamaru", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4240294418_b88235f082_o.jpg", "secret": "773fa6e1cd", "media": "photo", "latitude": "0", "id": "4240294418", "tags": "newzealand penguin oamaru"}, {"datetaken": "2010-01-02 09:12:56", "license": "3", "title": "A lazy seal at Oamaru", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4240293818_38deb0a882_o.jpg", "secret": "94dec9527a", "media": "photo", "latitude": "0", "id": "4240293818", "tags": "newzealand penguin oamaru"}, {"datetaken": "2010-01-02 09:16:35", "license": "3", "title": "Yellow eyed penguins at Oamaru", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2709/4239520097_4009ceff98_o.jpg", "secret": "e0454ae1a8", "media": "photo", "latitude": "0", "id": "4239520097", "tags": "newzealand penguin oamaru"}, {"datetaken": "2010-01-02 09:16:45", "license": "3", "title": "Yellow eyed penguins at Oamaru", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4240293364_2eee7a0cab_o.jpg", "secret": "4f184ba2f8", "media": "photo", "latitude": "0", "id": "4240293364", "tags": "newzealand penguin oamaru"}, {"datetaken": "2010-01-02 09:18:21", "license": "3", "title": "Yellow eyed penguins at Oamaru", "text": "", "album_id": "72157623002404999", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2715/4240293210_b64c941408_o.jpg", "secret": "a2557f58ae", "media": "photo", "latitude": "0", "id": "4240293210", "tags": "newzealand penguin oamaru"}, {"datetaken": "2010-01-03 14:19:11", "license": "1", "title": "Hest Bank 002", "text": "", "album_id": "72157623004900719", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2729/4241432634_33a9a9a0f2_o.jpg", "secret": "47777b14eb", "media": "photo", "latitude": "0", "id": "4241432634", "tags": ""}, {"datetaken": "2010-01-03 14:22:54", "license": "1", "title": "Hest Bank 003", "text": "", "album_id": "72157623004900719", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4240663369_41dc041350_o.jpg", "secret": "ce308cc5c7", "media": "photo", "latitude": "0", "id": "4240663369", "tags": ""}, {"datetaken": "2010-01-03 14:26:19", "license": "1", "title": "Hest Bank 004", "text": "", "album_id": "72157623004900719", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2646/4241437326_4b504e5076_o.jpg", "secret": "c7f1def1d3", "media": "photo", "latitude": "0", "id": "4241437326", "tags": ""}, {"datetaken": "2010-01-03 14:26:29", "license": "1", "title": "Hest Bank 005", "text": "", "album_id": "72157623004900719", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4240668927_30a546647a_o.jpg", "secret": "3d80238d26", "media": "photo", "latitude": "0", "id": "4240668927", "tags": ""}, {"datetaken": "2010-01-03 14:28:19", "license": "1", "title": "Hest Bank 006", "text": "", "album_id": "72157623004900719", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2529/4241443018_7e463ba8fc_o.jpg", "secret": "d69fcc858f", "media": "photo", "latitude": "0", "id": "4241443018", "tags": ""}, {"datetaken": "2010-01-03 15:15:54", "license": "1", "title": "Hest Bank 008", "text": "", "album_id": "72157623004900719", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4241445400_1478235da2_o.jpg", "secret": "b02374870b", "media": "photo", "latitude": "0", "id": "4241445400", "tags": ""}, {"datetaken": "2010-01-03 15:17:31", "license": "1", "title": "Hest Bank 009", "text": "", "album_id": "72157623004900719", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4241448370_19b3b93d26_o.jpg", "secret": "ba76e03f16", "media": "photo", "latitude": "0", "id": "4241448370", "tags": ""}, {"datetaken": "2010-01-03 15:45:20", "license": "1", "title": "Hest Bank 010", "text": "", "album_id": "72157623004900719", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2517/4241451090_503f01af7c_o.jpg", "secret": "568ce363b7", "media": "photo", "latitude": "0", "id": "4241451090", "tags": ""}, {"datetaken": "2010-01-03 15:45:49", "license": "1", "title": "Hest Bank 011", "text": "", "album_id": "72157623004900719", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4240682611_2887b16353_o.jpg", "secret": "df5a241997", "media": "photo", "latitude": "0", "id": "4240682611", "tags": ""}, {"datetaken": "2010-01-03 15:46:04", "license": "1", "title": "Hest Bank 012", "text": "", "album_id": "72157623004900719", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2796/4240684465_256234ac25_o.jpg", "secret": "0006434787", "media": "photo", "latitude": "0", "id": "4240684465", "tags": ""}, {"datetaken": "2010-01-03 15:46:20", "license": "1", "title": "Hest Bank 013", "text": "", "album_id": "72157623004900719", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4241458470_e41ed24352_o.jpg", "secret": "d12f401125", "media": "photo", "latitude": "0", "id": "4241458470", "tags": ""}, {"datetaken": "2009-12-24 11:30:51", "license": "1", "title": "_JAC2531.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4241217369_2fe71881ee_o.jpg", "secret": "000677b1b6", "media": "photo", "latitude": "0", "id": "4241217369", "tags": "sanjuan"}, {"datetaken": "2009-12-24 11:36:15", "license": "1", "title": "_JAC2550.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2773/4241992026_a01c6a26a1_o.jpg", "secret": "5a2a238904", "media": "photo", "latitude": "0", "id": "4241992026", "tags": "sanjuan"}, {"datetaken": "2009-12-24 11:36:24", "license": "1", "title": "_JAC2552.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4241218021_7699946881_o.jpg", "secret": "4e27cdb9fa", "media": "photo", "latitude": "0", "id": "4241218021", "tags": "sanjuan"}, {"datetaken": "2009-12-24 11:36:29", "license": "1", "title": "_JAC2553.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4241992742_c2f02b0cfa_o.jpg", "secret": "fa5d502a3d", "media": "photo", "latitude": "0", "id": "4241992742", "tags": "sanjuan"}, {"datetaken": "2009-12-24 11:39:02", "license": "1", "title": "_JAC2567.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4241218841_ba357f27f6_o.jpg", "secret": "d95e8ea324", "media": "photo", "latitude": "0", "id": "4241218841", "tags": "sanjuan"}, {"datetaken": "2009-12-24 11:41:15", "license": "1", "title": "_JAC2572.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4241219255_0de41a3f9b_o.jpg", "secret": "673b576daa", "media": "photo", "latitude": "0", "id": "4241219255", "tags": "sanjuan"}, {"datetaken": "2009-12-24 11:47:23", "license": "1", "title": "_JAC2580.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2760/4241994048_19035de30c_o.jpg", "secret": "f97416bf2a", "media": "photo", "latitude": "0", "id": "4241994048", "tags": "sanjuan"}, {"datetaken": "2009-12-24 11:48:01", "license": "1", "title": "_JAC2585.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4241220173_3216e5c9f5_o.jpg", "secret": "0d71120e15", "media": "photo", "latitude": "0", "id": "4241220173", "tags": "sanjuan"}, {"datetaken": "2009-12-24 11:49:27", "license": "1", "title": "_JAC2588.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4241994964_b154552576_o.jpg", "secret": "fd02accc69", "media": "photo", "latitude": "0", "id": "4241994964", "tags": "sanjuan"}, {"datetaken": "2009-12-24 11:58:08", "license": "1", "title": "_JAC2596.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2614/4241221123_0a57f8930b_o.jpg", "secret": "afbb570793", "media": "photo", "latitude": "0", "id": "4241221123", "tags": "sanjuan"}, {"datetaken": "2009-12-24 12:00:44", "license": "1", "title": "_JAC2600.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2627/4241221657_2d5a9b8a38_o.jpg", "secret": "b6693d836c", "media": "photo", "latitude": "0", "id": "4241221657", "tags": "sanjuan"}, {"datetaken": "2009-12-24 12:01:12", "license": "1", "title": "_JAC2602.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2737/4241996620_54642a236c_o.jpg", "secret": "8446d127e0", "media": "photo", "latitude": "0", "id": "4241996620", "tags": "sanjuan"}, {"datetaken": "2009-12-24 12:17:16", "license": "1", "title": "_JAC2607.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2654/4241222571_6d89b89d2d_o.jpg", "secret": "de5b2086ab", "media": "photo", "latitude": "0", "id": "4241222571", "tags": "sanjuan"}, {"datetaken": "2009-12-24 12:20:18", "license": "1", "title": "_JAC2614.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2485/4241223357_dc871d5616_o.jpg", "secret": "477169925d", "media": "photo", "latitude": "0", "id": "4241223357", "tags": "sanjuan"}, {"datetaken": "2009-12-24 12:20:45", "license": "1", "title": "_JAC2616.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4241998316_459d54f94e_o.jpg", "secret": "2ccda259ea", "media": "photo", "latitude": "0", "id": "4241998316", "tags": "sanjuan"}, {"datetaken": "2009-12-24 12:22:47", "license": "1", "title": "_JAC2626.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2651/4241998702_4989d01b1a_o.jpg", "secret": "93847fca7b", "media": "photo", "latitude": "0", "id": "4241998702", "tags": "sanjuan"}, {"datetaken": "2009-12-24 12:23:22", "license": "1", "title": "_JAC2628.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4241999216_6e49e508d6_o.jpg", "secret": "d367dfa0aa", "media": "photo", "latitude": "0", "id": "4241999216", "tags": "sanjuan"}, {"datetaken": "2009-12-24 13:10:05", "license": "1", "title": "_JAC2677.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4241999612_063a8aa42c_o.jpg", "secret": "e8782af788", "media": "photo", "latitude": "0", "id": "4241999612", "tags": "sanjuan"}, {"datetaken": "2009-12-24 13:14:35", "license": "1", "title": "_JAC2684.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2723/4242000002_ae1f8a0be3_o.jpg", "secret": "4e6108224d", "media": "photo", "latitude": "0", "id": "4242000002", "tags": "sanjuan"}, {"datetaken": "2009-12-24 13:26:20", "license": "1", "title": "_JAC2689.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4241226115_e28ba62a5e_o.jpg", "secret": "2e217466bd", "media": "photo", "latitude": "0", "id": "4241226115", "tags": "sanjuan"}, {"datetaken": "2009-12-24 14:45:30", "license": "1", "title": "_JAC2699.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2728/4241226553_2df04a61cc_o.jpg", "secret": "36aff90dd5", "media": "photo", "latitude": "0", "id": "4241226553", "tags": "sanjuan"}, {"datetaken": "2009-12-24 17:04:36", "license": "1", "title": "_JAC2745.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4242001368_1d6ef29ce7_o.jpg", "secret": "5e34250c56", "media": "photo", "latitude": "0", "id": "4242001368", "tags": "sanjuan"}, {"datetaken": "2009-12-24 17:06:11", "license": "1", "title": "_JAC2750.NEF", "text": "", "album_id": "72157623130756986", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4241227481_ca9e43bbde_o.jpg", "secret": "b0d11eb7fa", "media": "photo", "latitude": "0", "id": "4241227481", "tags": "sanjuan"}, {"datetaken": "2010-01-01 02:54:17", "license": "1", "title": "Snow road", "text": "", "album_id": "72157623131625252", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4242401564_599e21e150_o.jpg", "secret": "03a419856c", "media": "photo", "latitude": "0", "id": "4242401564", "tags": ""}, {"datetaken": "2010-01-01 18:47:21", "license": "1", "title": "Lights ...", "text": "", "album_id": "72157623131625252", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2683/4242407956_561846cd4b_o.jpg", "secret": "6853c9ec1e", "media": "photo", "latitude": "0", "id": "4242407956", "tags": ""}, {"datetaken": "2010-01-01 18:49:51", "license": "1", "title": "Lights ...", "text": "", "album_id": "72157623131625252", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4242415424_83a220115b_o.jpg", "secret": "6015fbc6eb", "media": "photo", "latitude": "0", "id": "4242415424", "tags": ""}, {"datetaken": "2010-01-01 18:51:48", "license": "1", "title": "Eh Girls !", "text": "", "album_id": "72157623131625252", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2539/4242422936_e9a7ef0fde_o.jpg", "secret": "76ffff63ae", "media": "photo", "latitude": "0", "id": "4242422936", "tags": ""}, {"datetaken": "2010-01-02 09:30:19", "license": "1", "title": "Good morning 2010", "text": "", "album_id": "72157623131625252", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2478/4241657079_487f6f9761_o.jpg", "secret": "969610dc8d", "media": "photo", "latitude": "0", "id": "4241657079", "tags": ""}, {"datetaken": "2010-01-02 09:31:06", "license": "1", "title": "Good morning 2010", "text": "", "album_id": "72157623131625252", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4242435960_b7c17cf81e_o.jpg", "secret": "8f20d7bd9c", "media": "photo", "latitude": "0", "id": "4242435960", "tags": ""}, {"datetaken": "2010-01-02 09:31:48", "license": "1", "title": "Good morning 2010", "text": "", "album_id": "72157623131625252", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2755/4241669371_a9b496ccc4_o.jpg", "secret": "94cc41330b", "media": "photo", "latitude": "0", "id": "4241669371", "tags": ""}, {"datetaken": "2010-01-02 09:32:13", "license": "1", "title": "Good morning 2010", "text": "", "album_id": "72157623131625252", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2717/4241674515_020240ac73_o.jpg", "secret": "4c5cbd9dee", "media": "photo", "latitude": "0", "id": "4241674515", "tags": ""}, {"datetaken": "2010-01-02 09:37:12", "license": "1", "title": "Good morning 2010", "text": "", "album_id": "72157623131625252", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2776/4242453076_3104fcc67a_o.jpg", "secret": "71fffd6183", "media": "photo", "latitude": "0", "id": "4242453076", "tags": ""}, {"datetaken": "2010-01-02 15:51:49", "license": "1", "title": "Canon boss !", "text": "", "album_id": "72157623131625252", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4242458834_b9c416a82b_o.jpg", "secret": "ccfd565d59", "media": "photo", "latitude": "0", "id": "4242458834", "tags": ""}, {"datetaken": "2010-01-02 15:57:43", "license": "1", "title": "so cold !!", "text": "", "album_id": "72157623131625252", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4242465934_22e8c79c49_o.jpg", "secret": "4ca94624fe", "media": "photo", "latitude": "0", "id": "4242465934", "tags": ""}, {"datetaken": "2010-01-02 16:21:38", "license": "1", "title": "Stephan - Canada Goose", "text": "", "album_id": "72157623131625252", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2484/4242471018_c06e0b3754_o.jpg", "secret": "988fdb247f", "media": "photo", "latitude": "0", "id": "4242471018", "tags": ""}, {"datetaken": "2010-01-02 21:16:13", "license": "1", "title": "Full moon", "text": "", "album_id": "72157623131625252", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4242476794_c167b75225_o.jpg", "secret": "745d028308", "media": "photo", "latitude": "0", "id": "4242476794", "tags": ""}, {"datetaken": "2010-01-04 11:45:53", "license": "1", "title": "2010-01-04 11.45.54", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4243326338_bff6d84b31_o.jpg", "secret": "e5f19e93c3", "media": "photo", "latitude": "0", "id": "4243326338", "tags": ""}, {"datetaken": "2010-01-04 11:46:04", "license": "1", "title": "2010-01-04 11.46.04", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4242555967_403e47878d_o.jpg", "secret": "e8d73c183b", "media": "photo", "latitude": "0", "id": "4242555967", "tags": ""}, {"datetaken": "2010-01-04 11:46:12", "license": "1", "title": "2010-01-04 11.46.12", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2729/4242557865_02feb096cd_o.jpg", "secret": "c203a22ba8", "media": "photo", "latitude": "0", "id": "4242557865", "tags": ""}, {"datetaken": "2010-01-04 11:46:16", "license": "1", "title": "2010-01-04 11.46.17", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2486/4242559877_08a47a8c54_o.jpg", "secret": "3bd293d730", "media": "photo", "latitude": "0", "id": "4242559877", "tags": ""}, {"datetaken": "2010-01-04 11:48:24", "license": "1", "title": "2010-01-04 11.48.25", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4242562085_f310b20d7a_o.jpg", "secret": "ed02aeb462", "media": "photo", "latitude": "0", "id": "4242562085", "tags": ""}, {"datetaken": "2010-01-04 11:48:29", "license": "1", "title": "2010-01-04 11.48.30", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4243335560_23df7d0861_o.jpg", "secret": "917c747ab2", "media": "photo", "latitude": "0", "id": "4243335560", "tags": ""}, {"datetaken": "2010-01-04 11:48:40", "license": "1", "title": "2010-01-04 11.48.40", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2770/4243337480_6f32cebced_o.jpg", "secret": "7036d7e7c5", "media": "photo", "latitude": "0", "id": "4243337480", "tags": ""}, {"datetaken": "2010-01-04 11:48:48", "license": "1", "title": "2010-01-04 11.48.48", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4243339628_2652d33b1a_o.jpg", "secret": "bc78a12375", "media": "photo", "latitude": "0", "id": "4243339628", "tags": ""}, {"datetaken": "2010-01-04 11:48:57", "license": "1", "title": "2010-01-04 11.48.57", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4242568989_74b54c971b_o.jpg", "secret": "ccb3743081", "media": "photo", "latitude": "0", "id": "4242568989", "tags": ""}, {"datetaken": "2010-01-04 11:49:22", "license": "1", "title": "2010-01-04 11.49.22", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4243342962_06bbff4f03_o.jpg", "secret": "7d2627dbc8", "media": "photo", "latitude": "0", "id": "4243342962", "tags": ""}, {"datetaken": "2010-01-04 11:49:41", "license": "1", "title": "2010-01-04 11.49.41", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2763/4243344680_06d37318fd_o.jpg", "secret": "5780b4ce93", "media": "photo", "latitude": "0", "id": "4243344680", "tags": ""}, {"datetaken": "2010-01-04 11:50:29", "license": "1", "title": "2010-01-04 11.50.30", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4243347448_7fbff79c2e_o.jpg", "secret": "ac2ab15ec1", "media": "photo", "latitude": "0", "id": "4243347448", "tags": ""}, {"datetaken": "2010-01-04 11:53:13", "license": "1", "title": "2010-01-04 11.53.13", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2639/4242577397_5bd3cbb5e9_o.jpg", "secret": "759784b6c4", "media": "photo", "latitude": "0", "id": "4242577397", "tags": ""}, {"datetaken": "2010-01-04 11:53:42", "license": "1", "title": "2010-01-04 11.53.42", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4242579511_ff9bc6401c_o.jpg", "secret": "1313115aab", "media": "photo", "latitude": "0", "id": "4242579511", "tags": ""}, {"datetaken": "2010-01-04 11:54:39", "license": "1", "title": "2010-01-04 11.54.40", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2749/4242581071_754c81a02a_o.jpg", "secret": "e313e04466", "media": "photo", "latitude": "0", "id": "4242581071", "tags": ""}, {"datetaken": "2010-01-04 11:55:24", "license": "1", "title": "2010-01-04 11.55.24", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2493/4243355452_8411ea2e4e_o.jpg", "secret": "950e58de4c", "media": "photo", "latitude": "0", "id": "4243355452", "tags": ""}, {"datetaken": "2010-01-04 11:57:42", "license": "1", "title": "2010-01-04 11.57.43", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4243358964_f7f39c9204_o.jpg", "secret": "950a2698cc", "media": "photo", "latitude": "0", "id": "4243358964", "tags": ""}, {"datetaken": "2010-01-04 11:59:27", "license": "1", "title": "2010-01-04 11.59.28", "text": "", "album_id": "72157623133577892", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4242588669_1734376ca1_o.jpg", "secret": "aebdb94ea6", "media": "photo", "latitude": "0", "id": "4242588669", "tags": ""}, {"datetaken": "2004-02-08 13:27:51", "license": "3", "title": "P2080018", "text": "", "album_id": "72157623714990818", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8344834_ae7629769b_o.jpg", "secret": "ae7629769b", "media": "photo", "latitude": "0", "id": "8344834", "tags": "portobello edinburgh beach freezing sunnyday bicycle"}, {"datetaken": "2004-02-08 13:28:10", "license": "3", "title": "P2080019", "text": "", "album_id": "72157623714990818", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8344851_8b210d4cb4_o.jpg", "secret": "8b210d4cb4", "media": "photo", "latitude": "0", "id": "8344851", "tags": "portobello edinburgh beach freezing sunnyday bicycle"}, {"datetaken": "2004-02-08 13:35:58", "license": "3", "title": "Portobello Beach", "text": "", "album_id": "72157623714990818", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8344868_7d2ec3cc72_o.jpg", "secret": "7d2ec3cc72", "media": "photo", "latitude": "0", "id": "8344868", "tags": "portobello edinburgh beach freezing sunnyday bicycle"}, {"datetaken": "2004-02-08 14:00:57", "license": "3", "title": "P2080021", "text": "", "album_id": "72157623714990818", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8344900_845bd2c793_o.jpg", "secret": "845bd2c793", "media": "photo", "latitude": "0", "id": "8344900", "tags": "portobello edinburgh beach freezing sunnyday bicycle"}, {"datetaken": "2004-02-08 14:01:12", "license": "3", "title": "P2080022", "text": "", "album_id": "72157623714990818", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8344923_565405cc26_o.jpg", "secret": "565405cc26", "media": "photo", "latitude": "0", "id": "8344923", "tags": "portobello edinburgh beach freezing sunnyday bicycle"}, {"datetaken": "2004-02-08 14:01:18", "license": "3", "title": "P2080023", "text": "", "album_id": "72157623714990818", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8344951_9f62c77969_o.jpg", "secret": "9f62c77969", "media": "photo", "latitude": "0", "id": "8344951", "tags": "portobello edinburgh beach freezing sunnyday bicycle"}, {"datetaken": "2004-02-08 14:01:29", "license": "3", "title": "P2080024", "text": "", "album_id": "72157623714990818", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8344964_3ebbccc831_o.jpg", "secret": "3ebbccc831", "media": "photo", "latitude": "0", "id": "8344964", "tags": "portobello edinburgh beach freezing sunnyday bicycle"}, {"datetaken": "2004-02-08 14:03:02", "license": "3", "title": "P2080025", "text": "", "album_id": "72157623714990818", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8344979_693fd147eb_o.jpg", "secret": "693fd147eb", "media": "photo", "latitude": "0", "id": "8344979", "tags": "portobello edinburgh beach freezing sunnyday bicycle"}, {"datetaken": "2004-02-08 14:03:07", "license": "3", "title": "P2080026", "text": "", "album_id": "72157623714990818", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8344988_2af629590c_o.jpg", "secret": "2af629590c", "media": "photo", "latitude": "0", "id": "8344988", "tags": "portobello edinburgh beach freezing sunnyday bicycle"}, {"datetaken": "2004-02-08 14:03:14", "license": "3", "title": "P2080027", "text": "", "album_id": "72157623714990818", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8345009_d7ce77f1cb_o.jpg", "secret": "d7ce77f1cb", "media": "photo", "latitude": "0", "id": "8345009", "tags": "portobello edinburgh beach freezing sunnyday bicycle"}, {"datetaken": "2004-02-08 14:03:22", "license": "3", "title": "P2080028", "text": "", "album_id": "72157623714990818", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8345026_d9111e19d7_o.jpg", "secret": "d9111e19d7", "media": "photo", "latitude": "0", "id": "8345026", "tags": "portobello edinburgh beach freezing sunnyday bicycle"}, {"datetaken": "2004-02-08 14:08:35", "license": "3", "title": "P2080029", "text": "", "album_id": "72157623714990818", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8345049_aac87bd915_o.jpg", "secret": "aac87bd915", "media": "photo", "latitude": "0", "id": "8345049", "tags": "portobello edinburgh beach freezing sunnyday bicycle"}, {"datetaken": "2004-02-08 14:08:45", "license": "3", "title": "P2080030", "text": "", "album_id": "72157623714990818", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8344813_2ad818787a_o.jpg", "secret": "2ad818787a", "media": "photo", "latitude": "0", "id": "8344813", "tags": "portobello edinburgh beach freezing sunnyday bicycle"}, {"datetaken": "2005-02-02 21:50:54", "license": "3", "title": "Loch Ard 1", "text": "", "album_id": "104243", "longitude": "142.726135", "url_o": "https://farm1.staticflickr.com/1/4142954_fb487f9767_o.jpg", "secret": "fb487f9767", "media": "photo", "latitude": "-38.505191", "id": "4142954", "tags": "2004 australia greatoceanroad"}, {"datetaken": "2005-02-02 21:54:07", "license": "3", "title": "Loch Ard 2", "text": "", "album_id": "104243", "longitude": "142.726135", "url_o": "https://farm1.staticflickr.com/3/4143031_e8ae2ae9cf_o.jpg", "secret": "e8ae2ae9cf", "media": "photo", "latitude": "-38.505191", "id": "4143031", "tags": "2004 australia greatoceanroad"}, {"datetaken": "2005-02-02 21:57:06", "license": "3", "title": "Loch Ard 3", "text": "", "album_id": "104243", "longitude": "142.726135", "url_o": "https://farm1.staticflickr.com/4/4143067_3fc7f3c17e_o.jpg", "secret": "3fc7f3c17e", "media": "photo", "latitude": "-38.505191", "id": "4143067", "tags": "2004 australia greatoceanroad"}, {"datetaken": "2005-02-02 21:59:55", "license": "3", "title": "The Grotto/ London Bridge", "text": "", "album_id": "104243", "longitude": "142.726135", "url_o": "https://farm1.staticflickr.com/1/4143115_58d7c05082_o.jpg", "secret": "58d7c05082", "media": "photo", "latitude": "-38.505191", "id": "4143115", "tags": "2004 australia greatoceanroad"}, {"datetaken": "2005-02-02 22:02:30", "license": "3", "title": "Bay of Islands 1", "text": "", "album_id": "104243", "longitude": "142.726135", "url_o": "https://farm1.staticflickr.com/3/4143144_774c31a126_o.jpg", "secret": "774c31a126", "media": "photo", "latitude": "-38.505191", "id": "4143144", "tags": "2004 australia greatoceanroad"}, {"datetaken": "2005-02-02 22:15:10", "license": "3", "title": "Bay of Islands 3", "text": "", "album_id": "104243", "longitude": "142.726135", "url_o": "https://farm1.staticflickr.com/3/4143371_c6810cc13d_o.jpg", "secret": "c6810cc13d", "media": "photo", "latitude": "-38.505191", "id": "4143371", "tags": "2004 australia greatoceanroad"}, {"datetaken": "2005-02-02 22:27:38", "license": "3", "title": "Bay of Islands 2", "text": "", "album_id": "104243", "longitude": "142.726135", "url_o": "https://farm1.staticflickr.com/4/4143582_853b95bb76_o.jpg", "secret": "853b95bb76", "media": "photo", "latitude": "-38.505191", "id": "4143582", "tags": "2004 australia greatoceanroad"}, {"datetaken": "2005-02-03 20:49:40", "license": "3", "title": "Koala 1", "text": "", "album_id": "104243", "longitude": "142.357406", "url_o": "https://farm1.staticflickr.com/3/4192161_35e0e7b36a_o.jpg", "secret": "35e0e7b36a", "media": "photo", "latitude": "-38.315801", "id": "4192161", "tags": "2004 towerhillgamereserve australia"}, {"datetaken": "2005-02-03 20:52:00", "license": "3", "title": "Koala 2", "text": "", "album_id": "104243", "longitude": "142.357406", "url_o": "https://farm1.staticflickr.com/4/4192213_962ee6ccee_o.jpg", "secret": "962ee6ccee", "media": "photo", "latitude": "-38.315801", "id": "4192213", "tags": "2004 towerhillgamereserve australia"}, {"datetaken": "2005-02-03 20:54:33", "license": "3", "title": "Koala 3", "text": "", "album_id": "104243", "longitude": "142.357406", "url_o": "https://farm1.staticflickr.com/3/4192273_0fb011b3e0_o.jpg", "secret": "0fb011b3e0", "media": "photo", "latitude": "-38.315801", "id": "4192273", "tags": "2004 towerhillgamereserve australia"}, {"datetaken": "2005-02-03 20:56:37", "license": "3", "title": "Tower Hill", "text": "", "album_id": "104243", "longitude": "142.357406", "url_o": "https://farm1.staticflickr.com/4/4192302_b06bd70cb0_o.jpg", "secret": "b06bd70cb0", "media": "photo", "latitude": "-38.315801", "id": "4192302", "tags": "2004 towerhillgamereserve australia"}, {"datetaken": "2005-02-03 20:57:49", "license": "3", "title": "Tower Hill Emu", "text": "", "album_id": "104243", "longitude": "142.357406", "url_o": "https://farm1.staticflickr.com/1/4192329_7d1bd69b23_o.jpg", "secret": "7d1bd69b23", "media": "photo", "latitude": "-38.315801", "id": "4192329", "tags": "2004 towerhillgamereserve australia"}, {"datetaken": "2005-02-03 20:59:22", "license": "3", "title": "Tower Hill Emu 2", "text": "", "album_id": "104243", "longitude": "142.357406", "url_o": "https://farm1.staticflickr.com/4/4192400_71e3a91a19_o.jpg", "secret": "71e3a91a19", "media": "photo", "latitude": "-38.315801", "id": "4192400", "tags": "2004 towerhillgamereserve australia"}, {"datetaken": "2005-02-03 21:26:26", "license": "3", "title": "Vuurtoren", "text": "", "album_id": "104243", "longitude": "142.216644", "url_o": "https://farm1.staticflickr.com/4/4193228_beb45e4dce_o.jpg", "secret": "beb45e4dce", "media": "photo", "latitude": "-38.378268", "id": "4193228", "tags": "2004 griffithisland australia"}, {"datetaken": "2005-02-03 21:27:33", "license": "3", "title": "Vuurtoren 2", "text": "", "album_id": "104243", "longitude": "142.216644", "url_o": "https://farm1.staticflickr.com/4/4193314_7fe801af1f_o.jpg", "secret": "7fe801af1f", "media": "photo", "latitude": "-38.378268", "id": "4193314", "tags": "2004 australia"}, {"datetaken": "2005-02-03 21:28:57", "license": "3", "title": "Princess Margaret Rose Cave 1", "text": "", "album_id": "104243", "longitude": "141.893920", "url_o": "https://farm1.staticflickr.com/1/4193352_244f80141e_o.jpg", "secret": "244f80141e", "media": "photo", "latitude": "-38.233326", "id": "4193352", "tags": "2004 australia"}, {"datetaken": "2005-02-03 21:30:14", "license": "3", "title": "Princess Margaret Rose Cave 2", "text": "", "album_id": "104243", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4193383_c810f6862d_o.jpg", "secret": "c810f6862d", "media": "photo", "latitude": "0", "id": "4193383", "tags": "2004 australia"}, {"datetaken": "2005-02-03 21:31:20", "license": "3", "title": "Princess Margaret Rose Cave 3", "text": "", "album_id": "104243", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4193433_e312efa6e7_o.jpg", "secret": "e312efa6e7", "media": "photo", "latitude": "0", "id": "4193433", "tags": "2004 australia"}, {"datetaken": "2005-02-04 21:36:50", "license": "3", "title": "Pink Lake 3", "text": "", "album_id": "104243", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4243561_07db2bda43_o.jpg", "secret": "07db2bda43", "media": "photo", "latitude": "0", "id": "4243561", "tags": "2004 australia pinklake"}, {"datetaken": "2005-02-04 21:37:59", "license": "3", "title": "Pink Lake 2", "text": "", "album_id": "104243", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4243605_5e78acf681_o.jpg", "secret": "5e78acf681", "media": "photo", "latitude": "0", "id": "4243605", "tags": "2004 australia pinklake"}, {"datetaken": "2005-02-04 21:40:25", "license": "3", "title": "South Australian Road", "text": "", "album_id": "104243", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4243657_f1bf6d9e20_o.jpg", "secret": "f1bf6d9e20", "media": "photo", "latitude": "0", "id": "4243657", "tags": "2004 australia"}, {"datetaken": "2005-02-04 21:41:27", "license": "3", "title": "The Murray Mouth", "text": "", "album_id": "104243", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4243696_889176e2cd_o.jpg", "secret": "889176e2cd", "media": "photo", "latitude": "0", "id": "4243696", "tags": "2004 australia murrayriver"}, {"datetaken": "2005-02-04 21:42:45", "license": "3", "title": "Clayton Bay", "text": "", "album_id": "104243", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4243758_123eb0419d_o.jpg", "secret": "123eb0419d", "media": "photo", "latitude": "0", "id": "4243758", "tags": "2004 australia claytonbay"}, {"datetaken": "2001-06-19 02:47:29", "license": "2", "title": "Wadi Rum Desert - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4273405_d4d6762b40_o.jpg", "secret": "d4d6762b40", "media": "photo", "latitude": "0", "id": "4273405", "tags": "desert kodak wadirum sophie jordan dc240"}, {"datetaken": "2001-06-19 02:47:56", "license": "2", "title": "Wadi Rum Desert - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4273407_5f3dbfe325_o.jpg", "secret": "5f3dbfe325", "media": "photo", "latitude": "0", "id": "4273407", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 02:48:07", "license": "2", "title": "Wadi Rum Desert - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4273409_34f969fcef_o.jpg", "secret": "34f969fcef", "media": "photo", "latitude": "0", "id": "4273409", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 02:54:33", "license": "2", "title": "Wadi Rum Desert - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4273413_9a7b7b9d19_o.jpg", "secret": "9a7b7b9d19", "media": "photo", "latitude": "0", "id": "4273413", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 03:09:20", "license": "2", "title": "Wadi Rum Deset - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4273422_f1ae939ddb_o.jpg", "secret": "f1ae939ddb", "media": "photo", "latitude": "0", "id": "4273422", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 03:14:06", "license": "2", "title": "Wadi Rum Deset - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4273428_1de2efd1c5_o.jpg", "secret": "1de2efd1c5", "media": "photo", "latitude": "0", "id": "4273428", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 03:14:30", "license": "2", "title": "Wadi Rum Deset - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4273439_f2c44c7fb4_o.jpg", "secret": "f2c44c7fb4", "media": "photo", "latitude": "0", "id": "4273439", "tags": "jordan desert wadirum sand"}, {"datetaken": "2001-06-19 03:26:43", "license": "2", "title": "Wadi Rum Deset - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4273449_37a21568d8_o.jpg", "secret": "37a21568d8", "media": "photo", "latitude": "0", "id": "4273449", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 03:35:36", "license": "2", "title": "Wadi Rum Desert - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4273457_d0e1e9376d_o.jpg", "secret": "d0e1e9376d", "media": "photo", "latitude": "0", "id": "4273457", "tags": "jordan desert wadirum camel"}, {"datetaken": "2001-06-19 03:44:07", "license": "2", "title": "Wadi Rum Deset - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4273466_96332a9020_o.jpg", "secret": "96332a9020", "media": "photo", "latitude": "0", "id": "4273466", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 03:44:11", "license": "2", "title": "Wadi Rum Deset - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4273472_eb09d6ce9d_o.jpg", "secret": "eb09d6ce9d", "media": "photo", "latitude": "0", "id": "4273472", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 03:50:16", "license": "2", "title": "Wadi Rum Deset - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4273480_33a27fc7e0_o.jpg", "secret": "33a27fc7e0", "media": "photo", "latitude": "0", "id": "4273480", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 03:51:38", "license": "2", "title": "Wadi Rum Desert - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4273488_d8fabadfb6_o.jpg", "secret": "d8fabadfb6", "media": "photo", "latitude": "0", "id": "4273488", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 03:53:00", "license": "2", "title": "Wadi Rum Deset - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4273493_c74cb5f862_o.jpg", "secret": "c74cb5f862", "media": "photo", "latitude": "0", "id": "4273493", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 03:53:05", "license": "2", "title": "Wadi Rum Desert - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4273500_cca3efa24f_o.jpg", "secret": "cca3efa24f", "media": "photo", "latitude": "0", "id": "4273500", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 03:54:59", "license": "2", "title": "Wadi Rum Deset - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4273508_c6676af944_o.jpg", "secret": "c6676af944", "media": "photo", "latitude": "0", "id": "4273508", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 03:57:40", "license": "2", "title": "Wadi Rum Deset - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4273515_bd65d97fdb_o.jpg", "secret": "bd65d97fdb", "media": "photo", "latitude": "0", "id": "4273515", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 04:57:22", "license": "2", "title": "Wadi Rum Deset - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4273522_2c86c19752_o.jpg", "secret": "2c86c19752", "media": "photo", "latitude": "0", "id": "4273522", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 05:18:07", "license": "2", "title": "Wadi Rum Deset - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4273531_b9154c66c5_o.jpg", "secret": "b9154c66c5", "media": "photo", "latitude": "0", "id": "4273531", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 05:18:31", "license": "2", "title": "Wadi Rum Deset - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4273536_093112e04d_o.jpg", "secret": "093112e04d", "media": "photo", "latitude": "0", "id": "4273536", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 05:22:04", "license": "2", "title": "Wadi Rum Deset - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4273539_1380c4c95e_o.jpg", "secret": "1380c4c95e", "media": "photo", "latitude": "0", "id": "4273539", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 05:22:19", "license": "2", "title": "Wadi Rum Deset - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4273548_727daf6d52_o.jpg", "secret": "727daf6d52", "media": "photo", "latitude": "0", "id": "4273548", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 05:22:27", "license": "2", "title": "Wadi Rum Deset - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4273553_8fe1ca7f9d_o.jpg", "secret": "8fe1ca7f9d", "media": "photo", "latitude": "0", "id": "4273553", "tags": "jordan desert wadirum"}, {"datetaken": "2001-06-19 08:02:38", "license": "2", "title": "Wadi Rum Deset - Jordan", "text": "", "album_id": "107977", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4273555_250dc05819_o.jpg", "secret": "250dc05819", "media": "photo", "latitude": "0", "id": "4273555", "tags": "jordan desert wadirum"}, {"datetaken": "2005-07-02 16:59:31", "license": "2", "title": "idyllic beach scene", "text": "", "album_id": "1773586", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/145054144_18851371a2_o.jpg", "secret": "18851371a2", "media": "photo", "latitude": "0", "id": "145054144", "tags": ""}, {"datetaken": "2005-07-02 17:04:01", "license": "2", "title": "fun in the water", "text": "", "album_id": "1773586", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/145054145_a70a6740fe_o.jpg", "secret": "a70a6740fe", "media": "photo", "latitude": "0", "id": "145054145", "tags": ""}, {"datetaken": "2005-07-02 18:58:08", "license": "2", "title": "the much photographed coconut tree", "text": "", "album_id": "1773586", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/145054147_33549f52b9_o.jpg", "secret": "33549f52b9", "media": "photo", "latitude": "0", "id": "145054147", "tags": "sunset scenery malaysia tioman pulautioman"}, {"datetaken": "2005-07-02 18:58:41", "license": "2", "title": "", "text": "", "album_id": "1773586", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/145054148_0125c75f54_o.jpg", "secret": "0125c75f54", "media": "photo", "latitude": "0", "id": "145054148", "tags": "sunset scenery malaysia tioman pulautioman"}, {"datetaken": "2005-07-02 19:15:44", "license": "2", "title": "view from our chalet", "text": "", "album_id": "1773586", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/189310363_0d0e3224bb_o.jpg", "secret": "0d0e3224bb", "media": "photo", "latitude": "0", "id": "189310363", "tags": ""}, {"datetaken": "2005-07-03 10:01:09", "license": "2", "title": "blue waters and washed out sky", "text": "", "album_id": "1773586", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/145054149_e944c087e6_o.jpg", "secret": "e944c087e6", "media": "photo", "latitude": "0", "id": "145054149", "tags": "scenery tioman pulautioman"}, {"datetaken": "2005-07-03 10:02:43", "license": "2", "title": "away!", "text": "", "album_id": "1773586", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23469160_8c4f6be52f_o.jpg", "secret": "8c4f6be52f", "media": "photo", "latitude": "0", "id": "23469160", "tags": "pulautioman malaysia"}, {"datetaken": "2005-07-03 10:03:31", "license": "2", "title": "making waves (i)", "text": "", "album_id": "1773586", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23469161_ffe6d09f31_o.jpg", "secret": "ffe6d09f31", "media": "photo", "latitude": "0", "id": "23469161", "tags": "pulautioman malaysia sea water waves sky island"}, {"datetaken": "2005-07-03 10:03:46", "license": "2", "title": "making waves (ii)", "text": "", "album_id": "1773586", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23469162_bf62c08efa_o.jpg", "secret": "bf62c08efa", "media": "photo", "latitude": "0", "id": "23469162", "tags": "pulautioman malaysia"}, {"datetaken": "2005-07-03 12:06:12", "license": "2", "title": "fun in the sun", "text": "", "album_id": "1773586", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23462123_adc2c295ce_o.jpg", "secret": "adc2c295ce", "media": "photo", "latitude": "0", "id": "23462123", "tags": "pulautioman malaysia sea people boat"}, {"datetaken": "2005-07-03 12:57:50", "license": "2", "title": "eye on renggis island", "text": "", "album_id": "1773586", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23462122_860f93e328_o.jpg", "secret": "860f93e328", "media": "photo", "latitude": "0", "id": "23462122", "tags": "pulautioman malaysia sea people boat"}, {"datetaken": "2005-07-03 18:07:34", "license": "2", "title": "dancing on the beach?", "text": "", "album_id": "1773586", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23469163_3efd156225_o.jpg", "secret": "3efd156225", "media": "photo", "latitude": "0", "id": "23469163", "tags": "pulautioman malaysia blackandwhite girl beach sunset"}, {"datetaken": "2005-07-03 18:40:34", "license": "2", "title": "island paradise", "text": "", "album_id": "1773586", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/24031967_1866089bdc_o.jpg", "secret": "1866089bdc", "media": "photo", "latitude": "0", "id": "24031967", "tags": "tioman malaysia sea sunset coconut palms silhouette"}, {"datetaken": "2005-07-03 18:41:16", "license": "2", "title": "leafy umbrella", "text": "", "album_id": "1773586", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23461366_a10fdbabbd_o.jpg", "secret": "a10fdbabbd", "media": "photo", "latitude": "0", "id": "23461366", "tags": "pulautioman malaysia beach sunset sky sea"}, {"datetaken": "2005-07-03 18:51:48", "license": "2", "title": "coconut silhouette", "text": "", "album_id": "1773586", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23469164_773be51d9a_o.jpg", "secret": "773be51d9a", "media": "photo", "latitude": "0", "id": "23469164", "tags": "pulautioman malaysia sunset coconut island sea"}, {"datetaken": "2005-07-03 18:54:53", "license": "2", "title": "IMG_4033", "text": "", "album_id": "1773586", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/189309459_cf85724b2f_o.jpg", "secret": "cf85724b2f", "media": "photo", "latitude": "0", "id": "189309459", "tags": ""}, {"datetaken": "2005-07-03 18:59:17", "license": "2", "title": "sunset on tioman", "text": "", "album_id": "1773586", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23461367_2a2250a2d9_o.jpg", "secret": "2a2250a2d9", "media": "photo", "latitude": "0", "id": "23461367", "tags": "pulautioman malaysia beach sunset sky sea"}, {"datetaken": "2005-07-04 02:34:28", "license": "2", "title": "Mannequin", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23661945_91616bdfc4_o.jpg", "secret": "91616bdfc4", "media": "photo", "latitude": "0", "id": "23661945", "tags": "2005 july independence 4thofjuly sarasota fl siesta key mannequin"}, {"datetaken": "2005-07-04 02:37:54", "license": "2", "title": "Red Mannequin", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23661961_c818da9b94_o.jpg", "secret": "c818da9b94", "media": "photo", "latitude": "0", "id": "23661961", "tags": "2005 july independence 4thofjuly sarasota fl siesta key mannequin catchycolors red redandblue blueandred blue"}, {"datetaken": "2005-07-04 02:57:06", "license": "2", "title": "Novelty Fan", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/23662101_ecd760483b_o.jpg", "secret": "ecd760483b", "media": "photo", "latitude": "0", "id": "23662101", "tags": "2005 july independence 4thofjuly sarasota fl siesta key fan"}, {"datetaken": "2005-07-04 03:04:42", "license": "2", "title": "Squircle BarsNStars", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23662082_dc2ead6d96_o.jpg", "secret": "dc2ead6d96", "media": "photo", "latitude": "0", "id": "23662082", "tags": "2005 july independence 4thofjuly sarasota fl siesta key lantern flag squaredcircle"}, {"datetaken": "2005-07-04 03:50:20", "license": "2", "title": "Out to the Beach", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23607649_6b8787b342_o.jpg", "secret": "6b8787b342", "media": "photo", "latitude": "0", "id": "23607649", "tags": "july 2005 beach sarasota fl siesta key me"}, {"datetaken": "2005-07-04 03:51:17", "license": "2", "title": "Red Tide Victim", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23607640_b3aa175e7a_o.jpg", "secret": "b3aa175e7a", "media": "photo", "latitude": "0", "id": "23607640", "tags": "july 2005 beach sarasota fl siesta key"}, {"datetaken": "2005-07-04 03:53:00", "license": "2", "title": "Beach Stroll", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23607599_738d90c827_o.jpg", "secret": "738d90c827", "media": "photo", "latitude": "0", "id": "23607599", "tags": "july 2005 beach sarasota fl siesta key"}, {"datetaken": "2005-07-04 03:54:43", "license": "2", "title": "Snorkeling", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23607569_3d84b8eaac_o.jpg", "secret": "3d84b8eaac", "media": "photo", "latitude": "0", "id": "23607569", "tags": "july 2005 beach sarasota fl siesta key"}, {"datetaken": "2005-07-04 03:57:58", "license": "2", "title": "Surf Dash", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23607669_112c01cba6_o.jpg", "secret": "112c01cba6", "media": "photo", "latitude": "0", "id": "23607669", "tags": "july 2005 beach sarasota fl siesta key"}, {"datetaken": "2005-07-04 03:58:01", "license": "2", "title": "Skimboarder", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23607696_ac5ece181f_o.jpg", "secret": "ac5ece181f", "media": "photo", "latitude": "0", "id": "23607696", "tags": "july 2005 beach sarasota fl siesta key"}, {"datetaken": "2005-07-04 04:01:21", "license": "2", "title": "Watching", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/23607655_14125256f1_o.jpg", "secret": "14125256f1", "media": "photo", "latitude": "0", "id": "23607655", "tags": "july 2005 beach sarasota fl siesta key"}, {"datetaken": "2005-07-04 04:06:04", "license": "2", "title": "Beach Dudes", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23607613_1e15958692_o.jpg", "secret": "1e15958692", "media": "photo", "latitude": "0", "id": "23607613", "tags": "july 2005 beach sarasota fl siesta key"}, {"datetaken": "2005-07-04 08:52:47", "license": "2", "title": "Beach Ghosts", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23664320_1268bef1fc_o.jpg", "secret": "1268bef1fc", "media": "photo", "latitude": "0", "id": "23664320", "tags": "2005 key july siesta sarasota fl independence 4thofjuly"}, {"datetaken": "2005-07-04 09:10:39", "license": "2", "title": "Finale", "text": "", "album_id": "543257", "longitude": "-82.549926", "url_o": "https://farm1.staticflickr.com/17/23664244_f2dd9e6cbe_o.jpg", "secret": "f2dd9e6cbe", "media": "photo", "latitude": "27.267190", "id": "23664244", "tags": "2005 july independence 4thofjuly sarasota fl siesta key fireworks"}, {"datetaken": "2005-07-04 09:11:36", "license": "2", "title": "Preshow Finale", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23664125_647baae2a0_o.jpg", "secret": "647baae2a0", "media": "photo", "latitude": "0", "id": "23664125", "tags": "2005 july independence 4thofjuly sarasota fl siesta key fireworks"}, {"datetaken": "2005-07-04 09:12:20", "license": "2", "title": "Fiery Sunset", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23664304_3484e7e9b9_o.jpg", "secret": "3484e7e9b9", "media": "photo", "latitude": "0", "id": "23664304", "tags": "2005 july independence 4thofjuly sarasota fl siesta key fireworks"}, {"datetaken": "2005-07-04 09:18:40", "license": "2", "title": "Lingering", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/23664168_a0b8ecae57_o.jpg", "secret": "a0b8ecae57", "media": "photo", "latitude": "0", "id": "23664168", "tags": "2005 july independence 4thofjuly sarasota fl siesta key fireworks"}, {"datetaken": "2005-07-04 09:30:34", "license": "2", "title": "Multiburst", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/23664144_d30aea30d0_o.jpg", "secret": "d30aea30d0", "media": "photo", "latitude": "0", "id": "23664144", "tags": "2005 july independence 4thofjuly sarasota fl siesta key fireworks"}, {"datetaken": "2005-07-04 09:30:57", "license": "2", "title": "Triple Burst", "text": "", "album_id": "543257", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/23664100_5ce5d79035_o.jpg", "secret": "5ce5d79035", "media": "photo", "latitude": "0", "id": "23664100", "tags": "2005 july independence 4thofjuly sarasota fl siesta key fireworks"}, {"datetaken": "2004-03-11 16:56:43", "license": "1", "title": "20040311_0001", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263411_5e03e8e160_o.jpg", "secret": "5e03e8e160", "media": "photo", "latitude": "0", "id": "1263411", "tags": "trip travel reflection me self mirror airport march2004"}, {"datetaken": "2004-03-11 17:30:31", "license": "1", "title": "20040311_0002", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263415_ac18f777ee_o.jpg", "secret": "ac18f777ee", "media": "photo", "latitude": "0", "id": "1263415", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-11 17:31:48", "license": "1", "title": "20040311_0003", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263418_c9b3b5aa7b_o.jpg", "secret": "c9b3b5aa7b", "media": "photo", "latitude": "0", "id": "1263418", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-11 17:31:59", "license": "1", "title": "20040311_0004", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263421_76c0558c27_o.jpg", "secret": "76c0558c27", "media": "photo", "latitude": "0", "id": "1263421", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-11 17:33:00", "license": "1", "title": "20040311_0005", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263431_933e302925_o.jpg", "secret": "933e302925", "media": "photo", "latitude": "0", "id": "1263431", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 01:09:34", "license": "1", "title": "20040311_0009", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263445_06b09f8062_o.jpg", "secret": "06b09f8062", "media": "photo", "latitude": "0", "id": "1263445", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 01:10:31", "license": "1", "title": "20040311_0010", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263449_9919dd4e0b_o.jpg", "secret": "9919dd4e0b", "media": "photo", "latitude": "0", "id": "1263449", "tags": "trip travel moon window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 01:11:53", "license": "1", "title": "20040311_0008", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263443_8a65c88dc2_o.jpg", "secret": "8a65c88dc2", "media": "photo", "latitude": "0", "id": "1263443", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 01:14:01", "license": "1", "title": "20040311_0011", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263458_f321f92605_o.jpg", "secret": "f321f92605", "media": "photo", "latitude": "0", "id": "1263458", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 01:14:06", "license": "1", "title": "20040311_0012", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263462_fbe4ea8607_o.jpg", "secret": "fbe4ea8607", "media": "photo", "latitude": "0", "id": "1263462", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 01:14:51", "license": "1", "title": "20040311_0013", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263466_23ce6cf48d_o.jpg", "secret": "23ce6cf48d", "media": "photo", "latitude": "0", "id": "1263466", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 01:20:17", "license": "1", "title": "20040311_0014", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263471_47e7f62807_o.jpg", "secret": "47e7f62807", "media": "photo", "latitude": "0", "id": "1263471", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 01:24:28", "license": "1", "title": "20040311_0015", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263473_bda858ca77_o.jpg", "secret": "bda858ca77", "media": "photo", "latitude": "0", "id": "1263473", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 01:24:35", "license": "1", "title": "20040311_0016", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263478_6552dc0cac_o.jpg", "secret": "6552dc0cac", "media": "photo", "latitude": "0", "id": "1263478", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 01:25:37", "license": "1", "title": "20040311_0017", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263485_b8e4e01f55_o.jpg", "secret": "b8e4e01f55", "media": "photo", "latitude": "0", "id": "1263485", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 01:25:52", "license": "1", "title": "20040311_0018", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263488_e95fdafa6e_o.jpg", "secret": "e95fdafa6e", "media": "photo", "latitude": "0", "id": "1263488", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 01:27:43", "license": "1", "title": "20040311_0019", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263496_876cca89dd_o.jpg", "secret": "876cca89dd", "media": "photo", "latitude": "0", "id": "1263496", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 01:30:16", "license": "1", "title": "20040311_0020", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263504_0d736d24d4_o.jpg", "secret": "0d736d24d4", "media": "photo", "latitude": "0", "id": "1263504", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 01:30:32", "license": "1", "title": "20040311_0021", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263506_bb8b26df66_o.jpg", "secret": "bb8b26df66", "media": "photo", "latitude": "0", "id": "1263506", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 01:31:24", "license": "1", "title": "20040311_0022", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263507_f523663c49_o.jpg", "secret": "f523663c49", "media": "photo", "latitude": "0", "id": "1263507", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 01:31:36", "license": "1", "title": "20040311_0023", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263510_d7078db8a5_o.jpg", "secret": "d7078db8a5", "media": "photo", "latitude": "0", "id": "1263510", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 03:38:59", "license": "1", "title": "20040312_0011", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263518_91c6aa67f2_o.jpg", "secret": "91c6aa67f2", "media": "photo", "latitude": "0", "id": "1263518", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 04:08:49", "license": "1", "title": "20040312_0013", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263531_51ee4df656_o.jpg", "secret": "51ee4df656", "media": "photo", "latitude": "0", "id": "1263531", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 04:44:45", "license": "1", "title": "20040312_0015", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263537_a02b6b1714_o.jpg", "secret": "a02b6b1714", "media": "photo", "latitude": "0", "id": "1263537", "tags": "trip travel window airplane flying inflight wing aeroplane march2004"}, {"datetaken": "2004-03-12 05:57:34", "license": "1", "title": "20040312_0017", "text": "", "album_id": "32331", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/1263541_855ca143a4_o.jpg", "secret": "855ca143a4", "media": "photo", "latitude": "0", "id": "1263541", "tags": "trip travel berlin germany tour band equipment van march2004 intruments"}, {"datetaken": "2009-12-26 15:18:39", "license": "5", "title": "365-117", "text": "", "album_id": "72157623149307698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2686/4249299143_1f7825bab5_o.jpg", "secret": "ea824f09b2", "media": "photo", "latitude": "0", "id": "4249299143", "tags": ""}, {"datetaken": "2009-12-26 15:18:50", "license": "5", "title": "", "text": "", "album_id": "72157623149307698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2762/4250073822_de84e9c087_o.jpg", "secret": "85ba1afcca", "media": "photo", "latitude": "0", "id": "4250073822", "tags": ""}, {"datetaken": "2009-12-26 15:19:10", "license": "5", "title": "", "text": "", "album_id": "72157623149307698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4249299505_0233af8404_o.jpg", "secret": "d16de3d2a5", "media": "photo", "latitude": "0", "id": "4249299505", "tags": ""}, {"datetaken": "2009-12-26 15:19:15", "license": "5", "title": "", "text": "", "album_id": "72157623149307698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4249300851_01771aa049_o.jpg", "secret": "8602bf35ef", "media": "photo", "latitude": "0", "id": "4249300851", "tags": ""}, {"datetaken": "2009-12-26 15:23:12", "license": "5", "title": "", "text": "", "album_id": "72157623149307698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2703/4249301113_cae4fb08ff_o.jpg", "secret": "0e0f5e81fa", "media": "photo", "latitude": "0", "id": "4249301113", "tags": ""}, {"datetaken": "2009-12-26 15:23:44", "license": "5", "title": "", "text": "", "album_id": "72157623149307698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2741/4249301303_33e32c7663_o.jpg", "secret": "8736b081ea", "media": "photo", "latitude": "0", "id": "4249301303", "tags": ""}, {"datetaken": "2009-12-26 15:23:50", "license": "5", "title": "", "text": "", "album_id": "72157623149307698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4249301677_62df3d9125_o.jpg", "secret": "bb2598583b", "media": "photo", "latitude": "0", "id": "4249301677", "tags": ""}, {"datetaken": "2009-12-26 15:24:08", "license": "5", "title": "", "text": "", "album_id": "72157623149307698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2711/4249302061_b5e996c482_o.jpg", "secret": "011030639f", "media": "photo", "latitude": "0", "id": "4249302061", "tags": ""}, {"datetaken": "2009-12-26 15:26:25", "license": "5", "title": "Popeye?", "text": "", "album_id": "72157623149307698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4250076868_54a6177960_o.jpg", "secret": "127cfd5043", "media": "photo", "latitude": "0", "id": "4250076868", "tags": ""}, {"datetaken": "2009-12-26 15:26:28", "license": "5", "title": "crawling up the dune with Ally", "text": "", "album_id": "72157623149307698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4249302651_01c32a0b7a_o.jpg", "secret": "87ceee7e30", "media": "photo", "latitude": "0", "id": "4249302651", "tags": ""}, {"datetaken": "2009-12-26 15:26:39", "license": "5", "title": "The sand feels good!", "text": "", "album_id": "72157623149307698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4250077308_fb76cb67e1_o.jpg", "secret": "ce208f220d", "media": "photo", "latitude": "0", "id": "4250077308", "tags": ""}, {"datetaken": "2009-12-26 15:26:45", "license": "5", "title": "Giving up on walking", "text": "", "album_id": "72157623149307698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2529/4249303113_10986153ea_o.jpg", "secret": "6d201b48eb", "media": "photo", "latitude": "0", "id": "4249303113", "tags": ""}, {"datetaken": "2009-12-26 15:33:23", "license": "5", "title": "Baby footsteps", "text": "", "album_id": "72157623149307698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4249303295_9a138ede56_o.jpg", "secret": "ebf688f176", "media": "photo", "latitude": "0", "id": "4249303295", "tags": ""}, {"datetaken": "2005-04-05 17:25:30", "license": "1", "title": "granite_rise_pano", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8501176_25da39eacf_o.jpg", "secret": "25da39eacf", "media": "photo", "latitude": "0", "id": "8501176", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:25:54", "license": "1", "title": "granite_spikystuff_01", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8501206_c3c2858bd2_o.jpg", "secret": "c3c2858bd2", "media": "photo", "latitude": "0", "id": "8501206", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:26:18", "license": "1", "title": "granite_spikystuff_02", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8501219_00d873482d_o.jpg", "secret": "00d873482d", "media": "photo", "latitude": "0", "id": "8501219", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:27:02", "license": "1", "title": "iaska_craftbarn_outfront", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8501243_2d3621363a_o.jpg", "secret": "2d3621363a", "media": "photo", "latitude": "0", "id": "8501243", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:27:14", "license": "1", "title": "iaska_craftbarn_rear", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8501254_461e0b4d88_o.jpg", "secret": "461e0b4d88", "media": "photo", "latitude": "0", "id": "8501254", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:27:33", "license": "1", "title": "iaska_fern", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8501269_16dfb3abe8_o.jpg", "secret": "16dfb3abe8", "media": "photo", "latitude": "0", "id": "8501269", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:27:49", "license": "1", "title": "muckenbudin_laneway", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8501288_b65b772964_o.jpg", "secret": "b65b772964", "media": "photo", "latitude": "0", "id": "8501288", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:28:07", "license": "1", "title": "mukinbudin_PO", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8501297_eb3c5f1457_o.jpg", "secret": "eb3c5f1457", "media": "photo", "latitude": "0", "id": "8501297", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:28:16", "license": "1", "title": "mukinbudin_storm", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8501307_f06fa4b99f_o.jpg", "secret": "f06fa4b99f", "media": "photo", "latitude": "0", "id": "8501307", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:31:01", "license": "1", "title": "badjaling_classmates_1930s", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8501434_b57e340ea7_o.jpg", "secret": "b57e340ea7", "media": "photo", "latitude": "0", "id": "8501434", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:31:19", "license": "1", "title": "badjaling_mission_01", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8501447_a9144fbf9b_o.jpg", "secret": "a9144fbf9b", "media": "photo", "latitude": "0", "id": "8501447", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:31:35", "license": "1", "title": "badjaling_mission_02", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8501453_1bf8af999b_o.jpg", "secret": "1bf8af999b", "media": "photo", "latitude": "0", "id": "8501453", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:31:45", "license": "1", "title": "holey_stones", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8501461_352810da20_o.jpg", "secret": "352810da20", "media": "photo", "latitude": "0", "id": "8501461", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:31:54", "license": "1", "title": "jellytree_seedpods", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8501469_7fc2eb2c09_o.jpg", "secret": "7fc2eb2c09", "media": "photo", "latitude": "0", "id": "8501469", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:32:13", "license": "1", "title": "road_to_yoting", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8501502_cca296965c_o.jpg", "secret": "cca296965c", "media": "photo", "latitude": "0", "id": "8501502", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:32:27", "license": "1", "title": "yoting_saltlake_01", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8501523_3281d16833_o.jpg", "secret": "3281d16833", "media": "photo", "latitude": "0", "id": "8501523", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:32:43", "license": "1", "title": "yoting_saltlake_02", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8501541_980fe7f7df_o.jpg", "secret": "980fe7f7df", "media": "photo", "latitude": "0", "id": "8501541", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:32:54", "license": "1", "title": "yoting_saltlake_03", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8501552_4ac0d3bbe2_o.jpg", "secret": "4ac0d3bbe2", "media": "photo", "latitude": "0", "id": "8501552", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:33:08", "license": "1", "title": "yoting_saltlake_04", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8501573_d9a8379d10_o.jpg", "secret": "d9a8379d10", "media": "photo", "latitude": "0", "id": "8501573", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:33:23", "license": "1", "title": "yoting_saltlake_05", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8501601_00ef4571e5_o.jpg", "secret": "00ef4571e5", "media": "photo", "latitude": "0", "id": "8501601", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:33:34", "license": "1", "title": "yoting_saltlake_06", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8501614_30da443cc3_o.jpg", "secret": "30da443cc3", "media": "photo", "latitude": "0", "id": "8501614", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2005-04-05 17:34:03", "license": "1", "title": "yoting_saltlake_pano", "text": "", "album_id": "211102", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8501632_86faf89c19_o.jpg", "secret": "86faf89c19", "media": "photo", "latitude": "0", "id": "8501632", "tags": "iaska kellerberrin wa westernaustralia artspace cicada"}, {"datetaken": "2004-02-15 16:08:26", "license": "6", "title": "med_19", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/10/12443425_956edfa142_o.jpg", "secret": "956edfa142", "media": "photo", "latitude": "36.992930", "id": "12443425", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 16:16:13", "license": "6", "title": "med_18", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/10/12443424_e79e90d9c2_o.jpg", "secret": "e79e90d9c2", "media": "photo", "latitude": "36.992930", "id": "12443424", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 16:17:42", "license": "6", "title": "med_17", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/9/12443421_72bcddc23b_o.jpg", "secret": "72bcddc23b", "media": "photo", "latitude": "36.992930", "id": "12443421", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 16:47:11", "license": "6", "title": "med_16", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/10/12443420_a518c3dbc6_o.jpg", "secret": "a518c3dbc6", "media": "photo", "latitude": "36.992930", "id": "12443420", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 16:50:34", "license": "6", "title": "med_15", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/8/12443417_0ea566fd1a_o.jpg", "secret": "0ea566fd1a", "media": "photo", "latitude": "36.992930", "id": "12443417", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 16:51:17", "license": "6", "title": "med_14", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/11/12443412_677adb7c86_o.jpg", "secret": "677adb7c86", "media": "photo", "latitude": "36.992930", "id": "12443412", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 16:52:24", "license": "6", "title": "med_13", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/8/12443411_4f6ded475d_o.jpg", "secret": "4f6ded475d", "media": "photo", "latitude": "36.992930", "id": "12443411", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 16:52:40", "license": "6", "title": "med_12", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/11/12443409_c9ae3d5655_o.jpg", "secret": "c9ae3d5655", "media": "photo", "latitude": "36.992930", "id": "12443409", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 16:52:58", "license": "6", "title": "med_11", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/8/12443408_0defdebd2a_o.jpg", "secret": "0defdebd2a", "media": "photo", "latitude": "36.992930", "id": "12443408", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 16:57:25", "license": "6", "title": "med_10", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/10/12443407_4f1e782497_o.jpg", "secret": "4f1e782497", "media": "photo", "latitude": "36.992930", "id": "12443407", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 17:00:00", "license": "6", "title": "med_9", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/8/12443405_86dbc4df61_o.jpg", "secret": "86dbc4df61", "media": "photo", "latitude": "36.992930", "id": "12443405", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 17:01:07", "license": "6", "title": "med_8", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/10/12443404_ff0b18d050_o.jpg", "secret": "ff0b18d050", "media": "photo", "latitude": "36.992930", "id": "12443404", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 17:07:03", "license": "6", "title": "med_7", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/8/12443403_d02520103b_o.jpg", "secret": "d02520103b", "media": "photo", "latitude": "36.992930", "id": "12443403", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 17:08:47", "license": "6", "title": "med_6", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/8/12443371_1d9115b4ae_o.jpg", "secret": "1d9115b4ae", "media": "photo", "latitude": "36.992930", "id": "12443371", "tags": "pantherbeach beach santacruz tehnorcalawesome"}, {"datetaken": "2004-02-15 17:08:47", "license": "6", "title": "med_6", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/8/12443402_796a926bb0_o.jpg", "secret": "796a926bb0", "media": "photo", "latitude": "36.992930", "id": "12443402", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 17:13:10", "license": "6", "title": "med_5", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/8/12443370_acbac554c9_o.jpg", "secret": "acbac554c9", "media": "photo", "latitude": "36.992930", "id": "12443370", "tags": "pantherbeach beach santacruz tehnorcalawesome"}, {"datetaken": "2004-02-15 17:13:10", "license": "6", "title": "med_5", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/11/12443399_24b644d149_o.jpg", "secret": "24b644d149", "media": "photo", "latitude": "36.992930", "id": "12443399", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 17:14:16", "license": "6", "title": "med_4", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/11/12443364_d585ead371_o.jpg", "secret": "d585ead371", "media": "photo", "latitude": "36.992930", "id": "12443364", "tags": "pantherbeach beach santacruz tehnorcalawesome"}, {"datetaken": "2004-02-15 17:14:16", "license": "6", "title": "med_4", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/10/12443398_8f9db3508c_o.jpg", "secret": "8f9db3508c", "media": "photo", "latitude": "36.992930", "id": "12443398", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 17:14:57", "license": "6", "title": "med_3", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/8/12443363_e329268804_o.jpg", "secret": "e329268804", "media": "photo", "latitude": "36.992930", "id": "12443363", "tags": "pantherbeach beach santacruz tehnorcalawesome"}, {"datetaken": "2004-02-15 17:14:57", "license": "6", "title": "med_3", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/11/12443397_a6a4196910_o.jpg", "secret": "a6a4196910", "media": "photo", "latitude": "36.992930", "id": "12443397", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 17:50:58", "license": "6", "title": "med_2", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/8/12443362_ee61558ca7_o.jpg", "secret": "ee61558ca7", "media": "photo", "latitude": "36.992930", "id": "12443362", "tags": "pantherbeach beach santacruz tehnorcalawesome"}, {"datetaken": "2004-02-15 17:50:58", "license": "6", "title": "med_2", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/9/12443396_16f253b24a_o.jpg", "secret": "16f253b24a", "media": "photo", "latitude": "36.992930", "id": "12443396", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-02-15 17:51:14", "license": "6", "title": "med_1", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/10/12443361_902b2281d9_o.jpg", "secret": "902b2281d9", "media": "photo", "latitude": "36.992930", "id": "12443361", "tags": "pantherbeach beach santacruz tehnorcalawesome"}, {"datetaken": "2004-02-15 17:51:14", "license": "6", "title": "med_1", "text": "", "album_id": "303758", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/9/12443395_d077b04216_o.jpg", "secret": "d077b04216", "media": "photo", "latitude": "36.992930", "id": "12443395", "tags": "santacruz pantherbeach beach tehnorcalawesome"}, {"datetaken": "2004-06-13 13:28:54", "license": "3", "title": "IMG_0001", "text": "", "album_id": "307435", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12539573_9f42785948_o.jpg", "secret": "9f42785948", "media": "photo", "latitude": "0", "id": "12539573", "tags": "daysout audleyend family best"}, {"datetaken": "2004-06-13 13:29:13", "license": "3", "title": "IMG_0002", "text": "", "album_id": "307435", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12539210_333e6f00b3_o.jpg", "secret": "333e6f00b3", "media": "photo", "latitude": "0", "id": "12539210", "tags": "daysout audleyend family"}, {"datetaken": "2004-06-13 13:29:33", "license": "3", "title": "IMG_0003", "text": "", "album_id": "307435", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12539228_93564cad55_o.jpg", "secret": "93564cad55", "media": "photo", "latitude": "0", "id": "12539228", "tags": "daysout audleyend family"}, {"datetaken": "2004-06-13 13:30:26", "license": "3", "title": "IMG_0005", "text": "", "album_id": "307435", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/12539246_011e12b531_o.jpg", "secret": "011e12b531", "media": "photo", "latitude": "0", "id": "12539246", "tags": "daysout audleyend family"}, {"datetaken": "2004-06-13 13:30:54", "license": "3", "title": "IMG_0007", "text": "", "album_id": "307435", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12539258_40155dd4ac_o.jpg", "secret": "40155dd4ac", "media": "photo", "latitude": "0", "id": "12539258", "tags": "daysout audleyend family best"}, {"datetaken": "2004-06-13 13:31:17", "license": "3", "title": "IMG_0009", "text": "", "album_id": "307435", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12539278_cbdf32021a_o.jpg", "secret": "cbdf32021a", "media": "photo", "latitude": "0", "id": "12539278", "tags": "daysout audleyend family"}, {"datetaken": "2004-06-13 13:31:56", "license": "3", "title": "IMG_0010", "text": "", "album_id": "307435", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/12539294_0c63d29baf_o.jpg", "secret": "0c63d29baf", "media": "photo", "latitude": "0", "id": "12539294", "tags": "daysout audleyend family"}, {"datetaken": "2004-06-13 13:32:50", "license": "3", "title": "IMG_0011", "text": "", "album_id": "307435", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/12539317_f8bef8ac11_o.jpg", "secret": "f8bef8ac11", "media": "photo", "latitude": "0", "id": "12539317", "tags": "daysout audleyend family"}, {"datetaken": "2004-06-13 13:33:21", "license": "3", "title": "IMG_0013", "text": "", "album_id": "307435", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12539337_21eef1a972_o.jpg", "secret": "21eef1a972", "media": "photo", "latitude": "0", "id": "12539337", "tags": "daysout audleyend family"}, {"datetaken": "2004-06-13 13:43:20", "license": "3", "title": "IMG_0014", "text": "", "album_id": "307435", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12539361_7abce3a6c6_o.jpg", "secret": "7abce3a6c6", "media": "photo", "latitude": "0", "id": "12539361", "tags": "daysout audleyend family"}, {"datetaken": "2004-06-13 13:44:22", "license": "3", "title": "IMG_0015", "text": "", "album_id": "307435", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/12539379_ac3cf34ee1_o.jpg", "secret": "ac3cf34ee1", "media": "photo", "latitude": "0", "id": "12539379", "tags": "daysout audleyend family"}, {"datetaken": "2004-06-13 14:42:37", "license": "3", "title": "IMG_0018", "text": "", "album_id": "307435", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12539399_b8864901d6_o.jpg", "secret": "b8864901d6", "media": "photo", "latitude": "0", "id": "12539399", "tags": "daysout audleyend family"}, {"datetaken": "2004-06-13 14:44:49", "license": "3", "title": "IMG_0020", "text": "", "album_id": "307435", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/12539448_c52f25614c_o.jpg", "secret": "c52f25614c", "media": "photo", "latitude": "0", "id": "12539448", "tags": "daysout audleyend family"}, {"datetaken": "2004-06-13 14:45:45", "license": "3", "title": "IMG_0021", "text": "", "album_id": "307435", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12539479_07e4031c08_o.jpg", "secret": "07e4031c08", "media": "photo", "latitude": "0", "id": "12539479", "tags": "daysout audleyend family"}, {"datetaken": "2004-06-13 14:46:09", "license": "3", "title": "IMG_0024", "text": "", "album_id": "307435", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/12539510_d05c0c7938_o.jpg", "secret": "d05c0c7938", "media": "photo", "latitude": "0", "id": "12539510", "tags": "daysout audleyend family"}, {"datetaken": "2004-06-13 14:46:42", "license": "3", "title": "IMG_0026", "text": "", "album_id": "307435", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/12539541_bbc7105eaa_o.jpg", "secret": "bbc7105eaa", "media": "photo", "latitude": "0", "id": "12539541", "tags": "daysout audleyend family"}, {"datetaken": "2004-06-13 14:59:08", "license": "3", "title": "IMG_0027", "text": "", "album_id": "307435", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12539554_47fabea58b_o.jpg", "secret": "47fabea58b", "media": "photo", "latitude": "0", "id": "12539554", "tags": "daysout audleyend family"}, {"datetaken": "2009-12-23 21:47:36", "license": "3", "title": "IMG_0624", "text": "", "album_id": "72157623025884131", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4249802907_df840f8273_o.jpg", "secret": "e13a73b8d5", "media": "photo", "latitude": "0", "id": "4249802907", "tags": ""}, {"datetaken": "2009-12-23 21:47:42", "license": "3", "title": "IMG_0625", "text": "", "album_id": "72157623025884131", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4250579438_6fbf8f29d2_o.jpg", "secret": "54fac4ea0c", "media": "photo", "latitude": "0", "id": "4250579438", "tags": ""}, {"datetaken": "2009-12-23 21:48:16", "license": "3", "title": "IMG_0626", "text": "", "album_id": "72157623025884131", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4250582896_f64971426d_o.jpg", "secret": "1de1133520", "media": "photo", "latitude": "0", "id": "4250582896", "tags": ""}, {"datetaken": "2009-12-23 22:27:12", "license": "3", "title": "IMG_0627", "text": "", "album_id": "72157623025884131", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2681/4249813577_9a95b92305_o.jpg", "secret": "1abd4f80d0", "media": "photo", "latitude": "0", "id": "4249813577", "tags": ""}, {"datetaken": "2009-12-23 22:27:20", "license": "3", "title": "IMG_0628", "text": "", "album_id": "72157623025884131", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4249816913_48191c4e42_o.jpg", "secret": "97e5986448", "media": "photo", "latitude": "0", "id": "4249816913", "tags": ""}, {"datetaken": "2009-12-23 22:52:28", "license": "3", "title": "IMG_0629", "text": "", "album_id": "72157623025884131", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4250593300_b6a544ebd7_o.jpg", "secret": "6efeac5d10", "media": "photo", "latitude": "0", "id": "4250593300", "tags": ""}, {"datetaken": "2009-12-23 22:52:52", "license": "3", "title": "IMG_0630", "text": "", "album_id": "72157623025884131", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2655/4250596306_07650b1fb8_o.jpg", "secret": "15d9a47cd8", "media": "photo", "latitude": "0", "id": "4250596306", "tags": ""}, {"datetaken": "2009-12-23 22:54:17", "license": "3", "title": "IMG_0631", "text": "", "album_id": "72157623025884131", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4249827599_b53444ca99_o.jpg", "secret": "8184c7869a", "media": "photo", "latitude": "0", "id": "4249827599", "tags": ""}, {"datetaken": "2009-12-23 22:54:24", "license": "3", "title": "IMG_0632", "text": "", "album_id": "72157623025884131", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4249830479_aa89deaeb0_o.jpg", "secret": "bc6e8bbc2f", "media": "photo", "latitude": "0", "id": "4249830479", "tags": ""}, {"datetaken": "2009-12-24 00:14:29", "license": "3", "title": "IMG_0633", "text": "", "album_id": "72157623025884131", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2743/4249832967_62762ea4cf_o.jpg", "secret": "18928083f4", "media": "photo", "latitude": "0", "id": "4249832967", "tags": ""}, {"datetaken": "2009-12-24 00:14:37", "license": "3", "title": "IMG_0634", "text": "", "album_id": "72157623025884131", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2723/4250608300_305d7dc2c0_o.jpg", "secret": "a51b3a36f0", "media": "photo", "latitude": "0", "id": "4250608300", "tags": ""}, {"datetaken": "2009-12-24 00:15:18", "license": "3", "title": "IMG_0635", "text": "", "album_id": "72157623025884131", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4250611166_1dd47a92bb_o.jpg", "secret": "80e0f335e4", "media": "photo", "latitude": "0", "id": "4250611166", "tags": ""}, {"datetaken": "2009-12-24 00:15:51", "license": "3", "title": "IMG_0636", "text": "", "album_id": "72157623025884131", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2686/4250613458_e540b1ea2c_o.jpg", "secret": "762db4726b", "media": "photo", "latitude": "0", "id": "4250613458", "tags": ""}, {"datetaken": "2009-12-24 00:16:22", "license": "3", "title": "IMG_0637", "text": "", "album_id": "72157623025884131", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4250616494_44e789763a_o.jpg", "secret": "2f64435980", "media": "photo", "latitude": "0", "id": "4250616494", "tags": ""}, {"datetaken": "2009-12-24 01:30:03", "license": "3", "title": "IMG_0638", "text": "", "album_id": "72157623025884131", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4249847023_fc8ce1065c_o.jpg", "secret": "211cfdf2e9", "media": "photo", "latitude": "0", "id": "4249847023", "tags": ""}, {"datetaken": "2010-01-06 10:35:43", "license": "3", "title": "06012010903", "text": "", "album_id": "72157623033403863", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2725/4253582724_a34702d467_o.jpg", "secret": "0640427bb3", "media": "photo", "latitude": "0", "id": "4253582724", "tags": ""}, {"datetaken": "2010-01-06 10:47:48", "license": "3", "title": "06012010906", "text": "", "album_id": "72157623033403863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4253585118_bd0651b44b_o.jpg", "secret": "a47b469d6a", "media": "photo", "latitude": "0", "id": "4253585118", "tags": ""}, {"datetaken": "2010-01-06 18:01:30", "license": "3", "title": "06012010907", "text": "", "album_id": "72157623033403863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4253587602_0df5d2fc57_o.jpg", "secret": "a59c2c583c", "media": "photo", "latitude": "0", "id": "4253587602", "tags": ""}, {"datetaken": "2010-01-06 18:03:13", "license": "3", "title": "06012010908", "text": "", "album_id": "72157623033403863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4253602144_89457710c8_o.jpg", "secret": "3443aa6ed1", "media": "photo", "latitude": "0", "id": "4253602144", "tags": ""}, {"datetaken": "2010-01-06 18:06:15", "license": "3", "title": "06012010909", "text": "", "album_id": "72157623033403863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4252823111_350ee1ae2d_o.jpg", "secret": "8280a7fee5", "media": "photo", "latitude": "0", "id": "4252823111", "tags": ""}, {"datetaken": "2010-01-06 18:07:58", "license": "3", "title": "06012010910", "text": "", "album_id": "72157623033403863", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4252825965_d54ff66424_o.jpg", "secret": "81700df050", "media": "photo", "latitude": "0", "id": "4252825965", "tags": ""}, {"datetaken": "2010-01-06 18:09:23", "license": "3", "title": "06012010911", "text": "", "album_id": "72157623033403863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4252826719_98bfbb55f5_o.jpg", "secret": "2c289da593", "media": "photo", "latitude": "0", "id": "4252826719", "tags": ""}, {"datetaken": "2010-01-06 18:09:46", "license": "3", "title": "06012010912", "text": "", "album_id": "72157623033403863", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2745/4252827515_65ae58b490_o.jpg", "secret": "42e1fdee99", "media": "photo", "latitude": "0", "id": "4252827515", "tags": ""}, {"datetaken": "2010-01-06 18:10:10", "license": "3", "title": "06012010913", "text": "", "album_id": "72157623033403863", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4252828369_9224a6a85d_o.jpg", "secret": "44017f6dbd", "media": "photo", "latitude": "0", "id": "4252828369", "tags": ""}, {"datetaken": "2010-01-06 18:10:35", "license": "3", "title": "06012010914", "text": "", "album_id": "72157623033403863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4253598302_6655e5cf57_o.jpg", "secret": "9a2b557274", "media": "photo", "latitude": "0", "id": "4253598302", "tags": ""}, {"datetaken": "2010-01-06 18:25:45", "license": "3", "title": "There's a Dog in my Rearview Mirror !", "text": "", "album_id": "72157623033403863", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2719/4253598578_3cc188fdbe_o.jpg", "secret": "b192424ae5", "media": "photo", "latitude": "0", "id": "4253598578", "tags": ""}, {"datetaken": "2010-01-06 18:27:01", "license": "3", "title": "06012010917", "text": "", "album_id": "72157623033403863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4252829923_b94b8a2bda_o.jpg", "secret": "a028e22b21", "media": "photo", "latitude": "0", "id": "4252829923", "tags": ""}, {"datetaken": "2010-01-06 19:13:38", "license": "3", "title": "06012010918", "text": "", "album_id": "72157623033403863", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4252830273_4a5aeb0265_o.jpg", "secret": "4b3f9ef37e", "media": "photo", "latitude": "0", "id": "4252830273", "tags": ""}, {"datetaken": "2010-01-06 19:20:03", "license": "3", "title": "06012010921", "text": "", "album_id": "72157623033403863", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2780/4253600152_011608dbc6_o.jpg", "secret": "ee182ce764", "media": "photo", "latitude": "0", "id": "4253600152", "tags": ""}, {"datetaken": "2010-01-06 19:56:15", "license": "3", "title": "06012010922", "text": "", "album_id": "72157623033403863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4253600484_28793d4453_o.jpg", "secret": "9c3824dcb6", "media": "photo", "latitude": "0", "id": "4253600484", "tags": ""}, {"datetaken": "2010-01-06 20:22:07", "license": "3", "title": "06012010923", "text": "", "album_id": "72157623033403863", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4252832015_33785f814b_o.jpg", "secret": "1b38d26a16", "media": "photo", "latitude": "0", "id": "4252832015", "tags": ""}, {"datetaken": "2005-01-22 18:56:42", "license": "1", "title": "DSC08101", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4488070_2f8bd8184b_o.jpg", "secret": "2f8bd8184b", "media": "photo", "latitude": "0", "id": "4488070", "tags": "holiday thailand samui 2005 wedding john jenn"}, {"datetaken": "2005-01-22 19:04:37", "license": "1", "title": "DSC08102", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4488404_1d1415e4c1_o.jpg", "secret": "1d1415e4c1", "media": "photo", "latitude": "0", "id": "4488404", "tags": "holiday thailand samui 2005 wedding john jenn kohsamui"}, {"datetaken": "2005-01-22 19:05:29", "license": "1", "title": "DSC08105", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4765365_a17f114fb9_o.jpg", "secret": "a17f114fb9", "media": "photo", "latitude": "0", "id": "4765365", "tags": "holiday 2005 samui thailand wedding john jenn"}, {"datetaken": "2005-01-22 19:21:31", "license": "1", "title": "DSC08109", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4766206_44cee8e726_o.jpg", "secret": "44cee8e726", "media": "photo", "latitude": "0", "id": "4766206", "tags": "holiday 2005 samui thailand wedding john jenn"}, {"datetaken": "2005-01-22 19:22:55", "license": "1", "title": "DSC08112", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4766585_dba516bd87_o.jpg", "secret": "dba516bd87", "media": "photo", "latitude": "0", "id": "4766585", "tags": "holiday 2005 samui thailand wedding john jenn"}, {"datetaken": "2005-01-22 20:06:42", "license": "1", "title": "DSC08114", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4488894_02c3fd8221_o.jpg", "secret": "02c3fd8221", "media": "photo", "latitude": "0", "id": "4488894", "tags": "thailand samui holiday 2005 wedding john jenn"}, {"datetaken": "2005-01-22 20:32:49", "license": "1", "title": "DSC08117", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4765041_2ba5f381b7_o.jpg", "secret": "2ba5f381b7", "media": "photo", "latitude": "0", "id": "4765041", "tags": "holiday 2005 samui thailand wedding john jenn"}, {"datetaken": "2005-01-22 20:32:53", "license": "1", "title": "DSC08118", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4766771_b70e513aa3_o.jpg", "secret": "b70e513aa3", "media": "photo", "latitude": "0", "id": "4766771", "tags": "holiday 2005 samui thailand wedding john jenn"}, {"datetaken": "2005-01-22 20:46:35", "license": "1", "title": "DSC08121", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4488669_b5fae2be0e_o.jpg", "secret": "b5fae2be0e", "media": "photo", "latitude": "0", "id": "4488669", "tags": "holiday thailand samui 2005 wedding john jenn"}, {"datetaken": "2005-01-22 20:55:23", "license": "1", "title": "DSC08122", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4765463_327c97f0d8_o.jpg", "secret": "327c97f0d8", "media": "photo", "latitude": "0", "id": "4765463", "tags": "holiday 2005 samui thailand wedding john jenn"}, {"datetaken": "2005-01-22 20:55:30", "license": "1", "title": "DSC08123", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4763531_dc4027de90_o.jpg", "secret": "dc4027de90", "media": "photo", "latitude": "0", "id": "4763531", "tags": "holiday 2005 samui thailand wedding john jenn"}, {"datetaken": "2005-01-22 20:55:39", "license": "1", "title": "DSC08124", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4764134_5e38412879_o.jpg", "secret": "5e38412879", "media": "photo", "latitude": "0", "id": "4764134", "tags": "wedding john jenn"}, {"datetaken": "2005-01-22 20:59:12", "license": "1", "title": "DSC08127", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4764347_6635ad49a1_o.jpg", "secret": "6635ad49a1", "media": "photo", "latitude": "0", "id": "4764347", "tags": "holiday 2005 samui thailand wedding john jenn"}, {"datetaken": "2005-01-22 20:59:22", "license": "1", "title": "DSC08128", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4764680_18d8ac7f9b_o.jpg", "secret": "18d8ac7f9b", "media": "photo", "latitude": "0", "id": "4764680", "tags": "holiday 2005 samui thailand wedding john jenn"}, {"datetaken": "2005-01-22 20:59:22", "license": "1", "title": "DSC08128", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4489104_28a788b02e_o.jpg", "secret": "28a788b02e", "media": "photo", "latitude": "0", "id": "4489104", "tags": "holiday thailand samui 2005 wedding john jenn"}, {"datetaken": "2005-01-22 20:59:29", "license": "1", "title": "DSC08129", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4488998_913d31a0c4_o.jpg", "secret": "913d31a0c4", "media": "photo", "latitude": "0", "id": "4488998", "tags": "holiday thailand samui 2005 wedding john jenn"}, {"datetaken": "2005-01-22 20:59:55", "license": "1", "title": "DSC08130", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4763918_53b9e0ee03_o.jpg", "secret": "53b9e0ee03", "media": "photo", "latitude": "0", "id": "4763918", "tags": "holiday 2005 samui thailand wedding john jenn"}, {"datetaken": "2005-01-22 21:11:28", "license": "1", "title": "DSC08132", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4490858_248b0678a1_o.jpg", "secret": "248b0678a1", "media": "photo", "latitude": "0", "id": "4490858", "tags": "holiday thailand samui 2005 wedding john jenn"}, {"datetaken": "2005-01-22 21:12:12", "license": "1", "title": "DSC08133", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4490749_67a6c2ae3b_o.jpg", "secret": "67a6c2ae3b", "media": "photo", "latitude": "0", "id": "4490749", "tags": "thailand holiday samui 2005 wedding john jenn"}, {"datetaken": "2005-01-22 21:49:20", "license": "1", "title": "DSC08140", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4766404_2b619af79f_o.jpg", "secret": "2b619af79f", "media": "photo", "latitude": "0", "id": "4766404", "tags": "holiday 2005 samui thailand wedding john jenn"}, {"datetaken": "2005-01-22 21:53:50", "license": "1", "title": "DSC08143", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4764515_3518bc9695_o.jpg", "secret": "3518bc9695", "media": "photo", "latitude": "0", "id": "4764515", "tags": "holiday 2005 samui thailand wedding john jenn"}, {"datetaken": "2005-01-22 21:53:50", "license": "1", "title": "DSC08143", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4489573_a6b6a6dfb1_o.jpg", "secret": "a6b6a6dfb1", "media": "photo", "latitude": "0", "id": "4489573", "tags": "holiday thailand samui 2005 wedding john jenn"}, {"datetaken": "2005-01-22 21:54:07", "license": "1", "title": "DSC08145", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4488218_27b8328fc9_o.jpg", "secret": "27b8328fc9", "media": "photo", "latitude": "0", "id": "4488218", "tags": "holiday thailand samui 2005 wedding john jenn"}, {"datetaken": "2005-01-22 21:55:28", "license": "1", "title": "DSC08147", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4490156_51789306dc_o.jpg", "secret": "51789306dc", "media": "photo", "latitude": "0", "id": "4490156", "tags": "holiday thailand samui 2005 wedding john jenn"}, {"datetaken": "2005-01-22 21:57:57", "license": "1", "title": "DSC08148", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4487934_c8439d5f36_o.jpg", "secret": "c8439d5f36", "media": "photo", "latitude": "0", "id": "4487934", "tags": "holiday thailand samui 2005 boats wedding john jenn"}, {"datetaken": "2005-01-22 22:03:56", "license": "1", "title": "DSC08152", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4488535_fdf5445852_o.jpg", "secret": "fdf5445852", "media": "photo", "latitude": "0", "id": "4488535", "tags": "holiday thailand samui 2005 wedding john jenn"}, {"datetaken": "2005-01-22 22:05:08", "license": "1", "title": "DSC08153", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4764885_742c39547e_o.jpg", "secret": "742c39547e", "media": "photo", "latitude": "0", "id": "4764885", "tags": "holiday 2005 samui thailand wedding john jenn"}, {"datetaken": "2005-01-22 22:05:55", "license": "1", "title": "DSC08154", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4765124_3246093e44_o.jpg", "secret": "3246093e44", "media": "photo", "latitude": "0", "id": "4765124", "tags": "wedding john jenn"}, {"datetaken": "2005-01-22 22:15:00", "license": "1", "title": "DSC08155", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4490332_46429eb2bf_o.jpg", "secret": "46429eb2bf", "media": "photo", "latitude": "0", "id": "4490332", "tags": "holiday thailand samui 2005 wedding john jenn"}, {"datetaken": "2005-01-22 22:17:07", "license": "1", "title": "DSC08158", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4489181_44cff62480_o.jpg", "secret": "44cff62480", "media": "photo", "latitude": "0", "id": "4489181", "tags": "holiday thailand samui 2005 wedding john jenn"}, {"datetaken": "2005-01-22 23:31:09", "license": "1", "title": "DSC08164", "text": "", "album_id": "122372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4489840_e5b6dfa39b_o.jpg", "secret": "e5b6dfa39b", "media": "photo", "latitude": "0", "id": "4489840", "tags": "holiday thailand samui 2005 wedding john jenn"}, {"datetaken": "2005-03-04 14:37:49", "license": "5", "title": "IMG_0867.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6172255_01b5900147_o.jpg", "secret": "01b5900147", "media": "photo", "latitude": "0", "id": "6172255", "tags": "vacation lakesuperior ski 2005"}, {"datetaken": "2005-03-04 14:37:55", "license": "5", "title": "IMG_0868.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6172243_8013214a1c_o.jpg", "secret": "8013214a1c", "media": "photo", "latitude": "0", "id": "6172243", "tags": "vacation lakesuperior ski 2005"}, {"datetaken": "2005-03-05 13:32:54", "license": "5", "title": "IMG_0872.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6172209_c557d431be_o.jpg", "secret": "c557d431be", "media": "photo", "latitude": "0", "id": "6172209", "tags": "vacation lakesuperior ski 2005"}, {"datetaken": "2005-03-05 14:29:04", "license": "5", "title": "IMG_0878.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6172183_0cc5c6da3c_o.jpg", "secret": "0cc5c6da3c", "media": "photo", "latitude": "0", "id": "6172183", "tags": "vacation lakesuperior ski 2005"}, {"datetaken": "2005-03-05 14:53:22", "license": "5", "title": "IMG_0887.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6171869_90d13cd486_o.jpg", "secret": "90d13cd486", "media": "photo", "latitude": "0", "id": "6171869", "tags": "vacation lakesuperior ski 2005"}, {"datetaken": "2005-03-06 06:44:04", "license": "5", "title": "IMG_0928.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6170614_246a26b108_o.jpg", "secret": "246a26b108", "media": "photo", "latitude": "0", "id": "6170614", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 06:44:27", "license": "5", "title": "IMG_0931.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6170463_fb12a376e5_o.jpg", "secret": "fb12a376e5", "media": "photo", "latitude": "0", "id": "6170463", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 06:45:51", "license": "5", "title": "IMG_0934.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6170317_9d1fc43b2c_o.jpg", "secret": "9d1fc43b2c", "media": "photo", "latitude": "0", "id": "6170317", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 06:47:24", "license": "5", "title": "IMG_0940.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6169898_97c3450921_o.jpg", "secret": "97c3450921", "media": "photo", "latitude": "0", "id": "6169898", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 06:47:30", "license": "5", "title": "IMG_0941.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6169821_27ea561e6c_o.jpg", "secret": "27ea561e6c", "media": "photo", "latitude": "0", "id": "6169821", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 06:47:35", "license": "5", "title": "IMG_0942.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6169757_8f6bd85065_o.jpg", "secret": "8f6bd85065", "media": "photo", "latitude": "0", "id": "6169757", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 06:47:41", "license": "5", "title": "IMG_0943.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6169700_cf2be6d468_o.jpg", "secret": "cf2be6d468", "media": "photo", "latitude": "0", "id": "6169700", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 06:47:47", "license": "5", "title": "IMG_0944.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6169631_12936f4ab3_o.jpg", "secret": "12936f4ab3", "media": "photo", "latitude": "0", "id": "6169631", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 06:47:53", "license": "5", "title": "IMG_0945.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6169577_d3e307be56_o.jpg", "secret": "d3e307be56", "media": "photo", "latitude": "0", "id": "6169577", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 06:47:59", "license": "5", "title": "IMG_0946.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6169524_aefd4dc55b_o.jpg", "secret": "aefd4dc55b", "media": "photo", "latitude": "0", "id": "6169524", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 06:48:07", "license": "5", "title": "IMG_0947.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6169459_4f1ca05e7e_o.jpg", "secret": "4f1ca05e7e", "media": "photo", "latitude": "0", "id": "6169459", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 06:49:34", "license": "5", "title": "IMG_0949.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6169325_6acac85e90_o.jpg", "secret": "6acac85e90", "media": "photo", "latitude": "0", "id": "6169325", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 06:49:44", "license": "5", "title": "IMG_0950.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6169264_9e6430a2f0_o.jpg", "secret": "9e6430a2f0", "media": "photo", "latitude": "0", "id": "6169264", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 06:50:43", "license": "5", "title": "IMG_0951.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6169187_7cdb29ee60_o.jpg", "secret": "7cdb29ee60", "media": "photo", "latitude": "0", "id": "6169187", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 06:51:27", "license": "5", "title": "IMG_0952.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6169077_139dfbb078_o.jpg", "secret": "139dfbb078", "media": "photo", "latitude": "0", "id": "6169077", "tags": "sunrise lakesuperior vacation 2005"}, {"datetaken": "2005-03-06 06:51:59", "license": "5", "title": "IMG_0953.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6169006_dd25b5e374_o.jpg", "secret": "dd25b5e374", "media": "photo", "latitude": "0", "id": "6169006", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 06:52:39", "license": "5", "title": "IMG_0955.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6168868_7ab3245c6f_o.jpg", "secret": "7ab3245c6f", "media": "photo", "latitude": "0", "id": "6168868", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 06:53:22", "license": "5", "title": "IMG_0956.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6168830_ef852a3040_o.jpg", "secret": "ef852a3040", "media": "photo", "latitude": "0", "id": "6168830", "tags": "sunrise lakesuperior vacation 2005"}, {"datetaken": "2005-03-06 06:53:46", "license": "5", "title": "IMG_0957.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6168789_fcd1061e0e_o.jpg", "secret": "fcd1061e0e", "media": "photo", "latitude": "0", "id": "6168789", "tags": "sunrise lakesuperior vacation 2005"}, {"datetaken": "2005-03-06 06:55:11", "license": "5", "title": "IMG_0959.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6168690_2e1a94e429_o.jpg", "secret": "2e1a94e429", "media": "photo", "latitude": "0", "id": "6168690", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 06:56:27", "license": "5", "title": "IMG_0962.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6168469_16ec5ebeaa_o.jpg", "secret": "16ec5ebeaa", "media": "photo", "latitude": "0", "id": "6168469", "tags": "sunrise lakesuperior vacation 2005"}, {"datetaken": "2005-03-06 06:57:28", "license": "5", "title": "IMG_0963.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6168420_c935d0788f_o.jpg", "secret": "c935d0788f", "media": "photo", "latitude": "0", "id": "6168420", "tags": "sunrise lakesuperior vacation 2005"}, {"datetaken": "2005-03-06 06:57:48", "license": "5", "title": "IMG_0965.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6168335_100882f0ac_o.jpg", "secret": "100882f0ac", "media": "photo", "latitude": "0", "id": "6168335", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 07:07:39", "license": "5", "title": "IMG_0986.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6167868_81414fae93_o.jpg", "secret": "81414fae93", "media": "photo", "latitude": "0", "id": "6167868", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 07:11:28", "license": "5", "title": "Frozen lawn chairs", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6167495_8cff8f9eef_o.jpg", "secret": "8cff8f9eef", "media": "photo", "latitude": "0", "id": "6167495", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-03-06 07:11:35", "license": "5", "title": "IMG_0994.JPG", "text": "", "album_id": "154229", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6167449_8f7bbc4428_o.jpg", "secret": "8f7bbc4428", "media": "photo", "latitude": "0", "id": "6167449", "tags": "vacation lakesuperior 2005"}, {"datetaken": "2005-05-31 12:21:51", "license": "1", "title": "Castle onna rock", "text": "", "album_id": "430423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18198346_a06142d8e4_o.jpg", "secret": "a06142d8e4", "media": "photo", "latitude": "0", "id": "18198346", "tags": "holyisland northumberland 2005 lindisfarne lindisfarnecastle"}, {"datetaken": "2005-05-31 12:24:59", "license": "1", "title": "Castle still onna rock", "text": "", "album_id": "430423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18198347_01f121e9b8_o.jpg", "secret": "01f121e9b8", "media": "photo", "latitude": "0", "id": "18198347", "tags": "holyisland northumberland 2005 lindisfarne lindisfarnecastle"}, {"datetaken": "2005-05-31 12:34:23", "license": "1", "title": "Head on grass", "text": "", "album_id": "430423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18198348_12f5853b20_o.jpg", "secret": "12f5853b20", "media": "photo", "latitude": "0", "id": "18198348", "tags": "darthvaderhelmet portrait holyisland northumberland 2005 lindisfarne"}, {"datetaken": "2005-05-31 12:34:48", "license": "1", "title": "Capsized", "text": "", "album_id": "430423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18198349_f7114cf443_o.jpg", "secret": "f7114cf443", "media": "photo", "latitude": "0", "id": "18198349", "tags": "fishingboats holyisland northumberland 2005 lindisfarne lindisfarnecastle"}, {"datetaken": "2005-05-31 12:40:15", "license": "1", "title": "Poseur", "text": "", "album_id": "430423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18198350_e804b5f581_o.jpg", "secret": "e804b5f581", "media": "photo", "latitude": "0", "id": "18198350", "tags": "darthvaderhelmet portrait holyisland northumberland 2005 lindisfarne"}, {"datetaken": "2005-05-31 12:40:51", "license": "1", "title": "Scruffy man in catalogue pose", "text": "", "album_id": "430423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18198351_108971b22e_o.jpg", "secret": "108971b22e", "media": "photo", "latitude": "0", "id": "18198351", "tags": "scruffyman portrait holyisland northumberland 2005 lindisfarne lindisfarnecastle"}, {"datetaken": "2005-05-31 12:49:48", "license": "1", "title": "Ships", "text": "", "album_id": "430423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18201693_8169661a20_o.jpg", "secret": "8169661a20", "media": "photo", "latitude": "0", "id": "18201693", "tags": "lamb sheep holyisland northumberland 2005 lindisfarne"}, {"datetaken": "2005-05-31 13:23:02", "license": "1", "title": "Pirri-pirri", "text": "", "album_id": "430423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18283715_7a20020a59_o.jpg", "secret": "7a20020a59", "media": "photo", "latitude": "0", "id": "18283715", "tags": "pirripirri lindisfarneholy island northumberland 2005"}, {"datetaken": "2005-05-31 13:23:21", "license": "1", "title": "Pretty pirri pirri", "text": "", "album_id": "430423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18201694_d57c13eb94_o.jpg", "secret": "d57c13eb94", "media": "photo", "latitude": "0", "id": "18201694", "tags": "holyisland northumberland 2005 lindisfarne"}, {"datetaken": "2005-05-31 13:23:59", "license": "1", "title": "White wigwam", "text": "", "album_id": "430423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18201695_6f475931c6_o.jpg", "secret": "6f475931c6", "media": "photo", "latitude": "0", "id": "18201695", "tags": "holyisland northumberland 2005 lindisfarne"}, {"datetaken": "2005-05-31 13:26:31", "license": "1", "title": "I see you", "text": "", "album_id": "430423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18201696_49e08d6b79_o.jpg", "secret": "49e08d6b79", "media": "photo", "latitude": "0", "id": "18201696", "tags": "holyisland northumberland 2005 lindisfarne"}, {"datetaken": "2005-05-31 13:35:12", "license": "1", "title": "Dunlins?", "text": "", "album_id": "430423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18284587_aa15637b6a_o.jpg", "secret": "aa15637b6a", "media": "photo", "latitude": "0", "id": "18284587", "tags": "dunlin lindisfarne holyisland northumberland 2005"}, {"datetaken": "2005-05-31 13:47:58", "license": "1", "title": "Marsh orchid", "text": "", "album_id": "430423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18283717_3367758ac6_o.jpg", "secret": "3367758ac6", "media": "photo", "latitude": "0", "id": "18283717", "tags": "marshorchid lindisfarneholy island northumberland 2005"}, {"datetaken": "2005-05-31 15:21:58", "license": "1", "title": "Aerobie", "text": "", "album_id": "430423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/18201697_50523ed075_o.jpg", "secret": "50523ed075", "media": "photo", "latitude": "0", "id": "18201697", "tags": "holyisland northumberland 2005 lindisfarne"}, {"datetaken": "2005-05-31 16:03:27", "license": "1", "title": "Ten fingers intact", "text": "", "album_id": "430423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/18201698_43f68c61a1_o.jpg", "secret": "43f68c61a1", "media": "photo", "latitude": "0", "id": "18201698", "tags": "portrait holyisland northumberland 2005 lindisfarne"}, {"datetaken": "2005-05-31 16:08:42", "license": "1", "title": "Tide markers?", "text": "", "album_id": "430423", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18205011_d4b349a83d_o.jpg", "secret": "d4b349a83d", "media": "photo", "latitude": "0", "id": "18205011", "tags": "holyisland northumberland 2005 lindisfarne"}, {"datetaken": "2005-04-29 10:42:14", "license": "3", "title": "Cefalu apse mosaics", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1372/636485610_02a3c217ee_o.jpg", "secret": "b3f46ed960", "media": "photo", "latitude": "0", "id": "636485610", "tags": "mosaic cefalu christianart"}, {"datetaken": "2005-04-29 10:42:34", "license": "3", "title": "Christ the teacher", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1148/636482030_1cce06c7b0_o.jpg", "secret": "eb66670377", "media": "photo", "latitude": "0", "id": "636482030", "tags": "mosaic cefalu christianart"}, {"datetaken": "2005-04-29 10:46:46", "license": "3", "title": "congregation", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1352/636485528_4cba6f042a_o.jpg", "secret": "a8f1691c8c", "media": "photo", "latitude": "0", "id": "636485528", "tags": "mosaic cefalu christianart"}, {"datetaken": "2005-04-29 11:01:16", "license": "3", "title": "cattedrale", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1081/636485310_ae898cac82_o.jpg", "secret": "431f8d893b", "media": "photo", "latitude": "0", "id": "636485310", "tags": "sicily sicilia cefalu"}, {"datetaken": "2005-04-29 11:01:37", "license": "3", "title": "cattedrale2", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1293/636485436_3047a0d5d8_o.jpg", "secret": "90a77b9fb5", "media": "photo", "latitude": "0", "id": "636485436", "tags": "sicily sicilia cefalu"}, {"datetaken": "2005-04-29 11:18:23", "license": "3", "title": "cefalu", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1276/636481308_668024c16d_o.jpg", "secret": "352d96bf8a", "media": "photo", "latitude": "0", "id": "636481308", "tags": "sea cefalu"}, {"datetaken": "2005-04-29 11:19:27", "license": "3", "title": "cefalu2.jpg", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1112/636486198_271cfb8460_o.jpg", "secret": "ce46b6294b", "media": "photo", "latitude": "0", "id": "636486198", "tags": "sicily sicilia cefalu"}, {"datetaken": "2005-04-29 11:27:54", "license": "3", "title": "cefalu3", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1368/636487238_835a3a8bbc_o.jpg", "secret": "81fe9381ed", "media": "photo", "latitude": "0", "id": "636487238", "tags": "sea cefalu"}, {"datetaken": "2005-04-29 11:28:27", "license": "3", "title": "cefalu4.jpg", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1050/636486380_b2331f7bec_o.jpg", "secret": "5302fd2ce8", "media": "photo", "latitude": "0", "id": "636486380", "tags": "sea cefalu"}, {"datetaken": "2005-04-29 11:30:26", "license": "3", "title": "nets.jpg", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1237/636482702_55c2605b73_o.jpg", "secret": "7793b5fcc1", "media": "photo", "latitude": "0", "id": "636482702", "tags": "sea cefalu"}, {"datetaken": "2005-04-29 11:30:53", "license": "3", "title": "My new flat", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1303/635627901_d2f001e47d_o.jpg", "secret": "c154d90e8f", "media": "photo", "latitude": "0", "id": "635627901", "tags": "sea cefalu"}, {"datetaken": "2005-04-29 11:32:19", "license": "3", "title": "pesce", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1311/635627827_256bcaa856_o.jpg", "secret": "9d781183c7", "media": "photo", "latitude": "0", "id": "635627827", "tags": "sea cefalu"}, {"datetaken": "2005-04-29 11:38:31", "license": "3", "title": "cefalu5.jpg", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1210/635626343_efb3b57c39_o.jpg", "secret": "d849ab961d", "media": "photo", "latitude": "0", "id": "635626343", "tags": "sicily sicilia cefalu"}, {"datetaken": "2005-04-29 12:56:41", "license": "3", "title": "cefalu6.jpg", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1270/636486278_fdb65d4583_o.jpg", "secret": "d772808a6c", "media": "photo", "latitude": "0", "id": "636486278", "tags": "sicily sicilia cefalu"}, {"datetaken": "2005-04-29 13:03:17", "license": "3", "title": "Gobbi Bastardi", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1131/635628567_2406cd3ff1_o.jpg", "secret": "826affc18d", "media": "photo", "latitude": "0", "id": "635628567", "tags": "sicily sicilia cefalu"}, {"datetaken": "2005-04-29 13:05:57", "license": "3", "title": "cefalu7", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1368/636485962_572c407928_o.jpg", "secret": "892c222dde", "media": "photo", "latitude": "0", "id": "636485962", "tags": "sicily sicilia cefalu"}, {"datetaken": "2005-04-29 13:28:07", "license": "3", "title": "La Rocca", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1198/636486064_207f85c7b2_o.jpg", "secret": "e8bd3157c6", "media": "photo", "latitude": "0", "id": "636486064", "tags": "sea cefalu"}, {"datetaken": "2005-04-29 14:09:27", "license": "3", "title": "spiaggia", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1090/635628259_0023909362_o.jpg", "secret": "1bf4eb8a67", "media": "photo", "latitude": "0", "id": "635628259", "tags": "sea cefalu"}, {"datetaken": "2005-04-29 14:14:27", "license": "3", "title": "spiaggia2.jpg", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1173/635628327_4f82eb49e9_o.jpg", "secret": "a2cae79a71", "media": "photo", "latitude": "0", "id": "635628327", "tags": "sea cefalu"}, {"datetaken": "2005-04-29 14:27:48", "license": "3", "title": "boat", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1439/636487172_708975ad21_o.jpg", "secret": "85f007878e", "media": "photo", "latitude": "0", "id": "636487172", "tags": "sea cefalu"}, {"datetaken": "2005-04-29 14:40:22", "license": "3", "title": "lavand", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1074/636482920_072e3262c5_o.jpg", "secret": "b5ff0340ef", "media": "photo", "latitude": "0", "id": "636482920", "tags": "sicily sicilia cefalu"}, {"datetaken": "2005-04-29 14:41:21", "license": "3", "title": "lavand2", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1218/636483010_aa062d17f0_o.jpg", "secret": "9da5231049", "media": "photo", "latitude": "0", "id": "636483010", "tags": "sicily sicilia cefalu"}, {"datetaken": "2005-04-29 14:51:06", "license": "3", "title": "cefalu8.jpg", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1382/635626417_61fdd359df_o.jpg", "secret": "1450d0b4c1", "media": "photo", "latitude": "0", "id": "635626417", "tags": "sicily sicilia cefalu"}, {"datetaken": "2005-04-29 15:07:30", "license": "3", "title": "cefalu9", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1136/636485850_0cc6f5326d_o.jpg", "secret": "e5d9626674", "media": "photo", "latitude": "0", "id": "636485850", "tags": "sicily sicilia cefalu"}, {"datetaken": "2005-04-29 15:13:15", "license": "3", "title": "Cefalu mosaics", "text": "", "album_id": "72157600510977980", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1187/635626963_4db3e41390_o.jpg", "secret": "0355e9ca8c", "media": "photo", "latitude": "0", "id": "635626963", "tags": "mosaic cefalu christianart"}, {"datetaken": "2004-09-03 13:22:11", "license": "2", "title": "", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/143605457_181eccef2b_o.jpg", "secret": "181eccef2b", "media": "photo", "latitude": "0", "id": "143605457", "tags": "wood usa green water oregon astoria"}, {"datetaken": "2004-09-03 13:22:11", "license": "2", "title": "yes, please!", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/143605459_75d3feba6c_o.jpg", "secret": "75d3feba6c", "media": "photo", "latitude": "0", "id": "143605459", "tags": "usa oregon bush sticker protest astoria"}, {"datetaken": "2004-09-03 13:22:11", "license": "2", "title": "the best omelet in the world", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/143605460_5644e39f12_o.jpg", "secret": "5644e39f12", "media": "photo", "latitude": "0", "id": "143605460", "tags": "usa oregon restaurant astoria"}, {"datetaken": "2004-09-03 13:22:11", "license": "2", "title": "", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/143605461_cae39739b7_o.jpg", "secret": "cae39739b7", "media": "photo", "latitude": "0", "id": "143605461", "tags": "bridge usa water oregon river astoria"}, {"datetaken": "2004-09-03 13:22:11", "license": "2", "title": "", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/143605462_8a6088b49e_o.jpg", "secret": "8a6088b49e", "media": "photo", "latitude": "0", "id": "143605462", "tags": "bridge usa water oregon river astoria"}, {"datetaken": "2004-09-03 13:22:11", "license": "2", "title": "", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/143605465_1ab7e71f60_o.jpg", "secret": "1ab7e71f60", "media": "photo", "latitude": "0", "id": "143605465", "tags": "sky usa cloud green grass oregon seaside"}, {"datetaken": "2004-09-03 13:38:09", "license": "2", "title": "", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/143614188_a137a64636_o.jpg", "secret": "a137a64636", "media": "photo", "latitude": "0", "id": "143614188", "tags": "usa beach oregon cannonbeach haystackrock monolith"}, {"datetaken": "2004-09-03 13:38:09", "license": "2", "title": "", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/143614189_a85e38b522_o.jpg", "secret": "a85e38b522", "media": "photo", "latitude": "0", "id": "143614189", "tags": "ocean sea usa beach oregon cannonbeach haystackrock monolith"}, {"datetaken": "2004-09-03 13:38:09", "license": "2", "title": "hazy coast", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/143614190_84d676a073_o.jpg", "secret": "84d676a073", "media": "photo", "latitude": "0", "id": "143614190", "tags": "ocean usa beach water oregon coast cannonbeach"}, {"datetaken": "2004-09-03 13:38:09", "license": "2", "title": "", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/143614192_e6166b5140_o.jpg", "secret": "e6166b5140", "media": "photo", "latitude": "0", "id": "143614192", "tags": "trees usa green oregon forest skeletons cannonbeach"}, {"datetaken": "2004-09-03 13:38:09", "license": "2", "title": "david, at the edge of the world", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/143614194_141edaf522_o.jpg", "secret": "141edaf522", "media": "photo", "latitude": "0", "id": "143614194", "tags": "ocean usa water oregon coast cannonbeach"}, {"datetaken": "2004-09-03 13:38:09", "license": "2", "title": "", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/143614195_a2658e0799_o.jpg", "secret": "a2658e0799", "media": "photo", "latitude": "0", "id": "143614195", "tags": "ocean usa water oregon coast cannonbeach"}, {"datetaken": "2004-09-03 13:56:18", "license": "2", "title": "i, with the cliff", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/143622980_c2983c4c49_o.jpg", "secret": "c2983c4c49", "media": "photo", "latitude": "0", "id": "143622980", "tags": "ocean sea usa oregon coast cannonbeach"}, {"datetaken": "2004-09-03 13:56:18", "license": "2", "title": "sand flat", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/143622981_62c4c49e02_o.jpg", "secret": "62c4c49e02", "media": "photo", "latitude": "0", "id": "143622981", "tags": "usa oregon sand"}, {"datetaken": "2004-09-03 13:56:18", "license": "2", "title": "", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/143622982_cab61ca6c7_o.jpg", "secret": "cab61ca6c7", "media": "photo", "latitude": "0", "id": "143622982", "tags": "ocean sea usa oregon coast"}, {"datetaken": "2004-09-03 13:56:18", "license": "2", "title": "", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/143622983_6b66d17610_o.jpg", "secret": "6b66d17610", "media": "photo", "latitude": "0", "id": "143622983", "tags": "ocean sea usa lighthouse oregon coast"}, {"datetaken": "2004-09-04 13:56:18", "license": "2", "title": "beach kill", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/143622984_628b823d2f_o.jpg", "secret": "628b823d2f", "media": "photo", "latitude": "0", "id": "143622984", "tags": "usa beach sign oregon dead death coast lincoln roadkill racoon"}, {"datetaken": "2004-09-04 13:56:18", "license": "2", "title": "david and i", "text": "", "album_id": "72057594130383918", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/143622985_74ed5ad554_o.jpg", "secret": "74ed5ad554", "media": "photo", "latitude": "0", "id": "143622985", "tags": "ocean sea usa beach oregon coast lincoln"}, {"datetaken": "2004-09-09 06:05:05", "license": "1", "title": "Boom - Sunrise", "text": "", "album_id": "8956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384703_29b1410032_o.jpg", "secret": "29b1410032", "media": "photo", "latitude": "0", "id": "384703", "tags": "party festival psytrance portugal idanha goodmood boom sunrise"}, {"datetaken": "2004-09-09 06:05:09", "license": "1", "title": "Boom - Sunrise with cars", "text": "", "album_id": "8956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384704_44e2b6ec08_o.jpg", "secret": "44e2b6ec08", "media": "photo", "latitude": "0", "id": "384704", "tags": "party festival psytrance portugal idanha goodmood boom sunrise cars"}, {"datetaken": "2004-09-09 06:05:13", "license": "1", "title": "Boom - Main stage, under construction", "text": "", "album_id": "8956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384706_205e0386cd_o.jpg", "secret": "205e0386cd", "media": "photo", "latitude": "0", "id": "384706", "tags": "party festival psytrance portugal idanha goodmood boom stage"}, {"datetaken": "2004-09-09 06:05:16", "license": "1", "title": "Boom - Dragons", "text": "", "album_id": "8956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384707_f6923ac4c7_o.jpg", "secret": "f6923ac4c7", "media": "photo", "latitude": "0", "id": "384707", "tags": "party festival psytrance portugal idanha goodmood boom stage dragons"}, {"datetaken": "2004-09-09 06:05:21", "license": "1", "title": "Boom - Water", "text": "", "album_id": "8956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384708_71c96d07bd_o.jpg", "secret": "71c96d07bd", "media": "photo", "latitude": "0", "id": "384708", "tags": "party festival psytrance portugal idanha goodmood boom water"}, {"datetaken": "2004-09-09 06:05:25", "license": "1", "title": "Boom - Wide view", "text": "", "album_id": "8956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384709_6154489776_o.jpg", "secret": "6154489776", "media": "photo", "latitude": "0", "id": "384709", "tags": "party festival psytrance portugal idanha goodmood boom"}, {"datetaken": "2004-09-09 06:13:37", "license": "1", "title": "Boom - On the beach", "text": "", "album_id": "8956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384740_2330900a0d_o.jpg", "secret": "2330900a0d", "media": "photo", "latitude": "0", "id": "384740", "tags": "party festival psytrance portugal idanha goodmood boom water beach"}, {"datetaken": "2004-09-09 06:13:41", "license": "1", "title": "Boom - Big pig on the beach", "text": "", "album_id": "8956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384741_3d9b50c8ed_o.jpg", "secret": "3d9b50c8ed", "media": "photo", "latitude": "0", "id": "384741", "tags": "party festival psytrance portugal idanha goodmood boom pig"}, {"datetaken": "2004-09-09 06:13:46", "license": "1", "title": "Boom - Main stage with people", "text": "", "album_id": "8956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384742_c210d70891_o.jpg", "secret": "c210d70891", "media": "photo", "latitude": "0", "id": "384742", "tags": "party festival psytrance portugal idanha goodmood boom stage people"}, {"datetaken": "2004-09-09 06:13:50", "license": "1", "title": "Boom - Crowded festival", "text": "", "album_id": "8956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384743_5ed737f46c_o.jpg", "secret": "5ed737f46c", "media": "photo", "latitude": "0", "id": "384743", "tags": "party festival psytrance portugal idanha goodmood boom stage people"}, {"datetaken": "2004-09-09 06:13:55", "license": "1", "title": "Boom - Camping area", "text": "", "album_id": "8956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384744_c8d1571874_o.jpg", "secret": "c8d1571874", "media": "photo", "latitude": "0", "id": "384744", "tags": "party festival psytrance portugal idanha goodmood boom camping"}, {"datetaken": "2004-09-09 06:14:00", "license": "1", "title": "Boom - Main stage", "text": "", "album_id": "8956", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/384746_0d54d24246_o.jpg", "secret": "0d54d24246", "media": "photo", "latitude": "0", "id": "384746", "tags": "party festival psytrance portugal idanha goodmood boom stage people"}, {"datetaken": "2005-02-11 00:18:48", "license": "3", "title": "P6170075", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590173_a647b678cb_o.jpg", "secret": "a647b678cb", "media": "photo", "latitude": "0", "id": "4590173", "tags": "italy sardinia holiday mum will 2003 house villa sardegna"}, {"datetaken": "2005-02-11 00:19:10", "license": "3", "title": "P6170070", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4590180_90ebd3fc8f_o.jpg", "secret": "90ebd3fc8f", "media": "photo", "latitude": "0", "id": "4590180", "tags": "italy sardinia holiday mum will 2003 alghero harbour sea boats sardegna"}, {"datetaken": "2005-02-11 00:19:37", "license": "3", "title": "P6170076", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590198_3f1281ad45_o.jpg", "secret": "3f1281ad45", "media": "photo", "latitude": "0", "id": "4590198", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:20:10", "license": "3", "title": "P6170077", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4590216_49d6baa953_o.jpg", "secret": "49d6baa953", "media": "photo", "latitude": "0", "id": "4590216", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:20:45", "license": "3", "title": "P6180102", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4590235_fe97050def_o.jpg", "secret": "fe97050def", "media": "photo", "latitude": "0", "id": "4590235", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:21:21", "license": "3", "title": "P6180103", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4590251_597cd9f65f_o.jpg", "secret": "597cd9f65f", "media": "photo", "latitude": "0", "id": "4590251", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:21:44", "license": "3", "title": "P6190104", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4590273_4eb74dd494_o.jpg", "secret": "4eb74dd494", "media": "photo", "latitude": "0", "id": "4590273", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:22:01", "license": "3", "title": "P6190105", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4590287_07c11c01a0_o.jpg", "secret": "07c11c01a0", "media": "photo", "latitude": "0", "id": "4590287", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:22:14", "license": "3", "title": "P6190106", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4590297_13ca47316f_o.jpg", "secret": "13ca47316f", "media": "photo", "latitude": "0", "id": "4590297", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:22:30", "license": "3", "title": "P6190107", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4590307_518d7f23d7_o.jpg", "secret": "518d7f23d7", "media": "photo", "latitude": "0", "id": "4590307", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:23:06", "license": "3", "title": "P6190108", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590337_bea75d00e7_o.jpg", "secret": "bea75d00e7", "media": "photo", "latitude": "0", "id": "4590337", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:23:14", "license": "3", "title": "P6190110", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590342_f686154a4a_o.jpg", "secret": "f686154a4a", "media": "photo", "latitude": "0", "id": "4590342", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:23:41", "license": "3", "title": "P6190112", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4590352_9ef09e2625_o.jpg", "secret": "9ef09e2625", "media": "photo", "latitude": "0", "id": "4590352", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:24:16", "license": "3", "title": "P6190114", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4590383_fce6135aa6_o.jpg", "secret": "fce6135aa6", "media": "photo", "latitude": "0", "id": "4590383", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:24:31", "license": "3", "title": "P6190116", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4590395_34ba50e128_o.jpg", "secret": "34ba50e128", "media": "photo", "latitude": "0", "id": "4590395", "tags": "italy sardinia holiday mum will 2003 sea view sardegna"}, {"datetaken": "2005-02-11 00:24:46", "license": "3", "title": "P6190117", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590406_543de271a2_o.jpg", "secret": "543de271a2", "media": "photo", "latitude": "0", "id": "4590406", "tags": "italy sardinia holiday mum will 2003 sea view sardegna"}, {"datetaken": "2005-02-11 00:25:11", "license": "3", "title": "P6190121", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590430_3aa58dd789_o.jpg", "secret": "3aa58dd789", "media": "photo", "latitude": "0", "id": "4590430", "tags": "italy sardinia holiday mum will 2003 sea view sunset sardegna"}, {"datetaken": "2005-02-11 00:25:38", "license": "3", "title": "P6190122", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4590448_9d7b1950f7_o.jpg", "secret": "9d7b1950f7", "media": "photo", "latitude": "0", "id": "4590448", "tags": "italy sardinia holiday mum will 2003 sea view sunset sardegna"}, {"datetaken": "2005-02-11 00:25:48", "license": "3", "title": "P6190124", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590451_9ffa3b6f3b_o.jpg", "secret": "9ffa3b6f3b", "media": "photo", "latitude": "0", "id": "4590451", "tags": "italy sardinia holiday mum will 2003 sea view sardegna"}, {"datetaken": "2005-02-11 00:26:03", "license": "3", "title": "P6190126", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590467_7ce36ca986_o.jpg", "secret": "7ce36ca986", "media": "photo", "latitude": "0", "id": "4590467", "tags": "italy sardinia holiday mum will 2003 sea view sardegna"}, {"datetaken": "2005-02-11 00:26:22", "license": "3", "title": "P6190127", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4590475_7761e7c463_o.jpg", "secret": "7761e7c463", "media": "photo", "latitude": "0", "id": "4590475", "tags": "italy sardinia holiday mum will 2003 sea view sardegna"}, {"datetaken": "2005-02-11 00:26:36", "license": "3", "title": "P6190128", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4590481_efbd5d9b2e_o.jpg", "secret": "efbd5d9b2e", "media": "photo", "latitude": "0", "id": "4590481", "tags": "italy sardinia holiday mum will 2003 sea view sardegna"}, {"datetaken": "2005-02-11 00:27:04", "license": "3", "title": "P6190129", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4590500_727094f899_o.jpg", "secret": "727094f899", "media": "photo", "latitude": "0", "id": "4590500", "tags": "italy sardinia holiday mum will 2003 sea view sardegna"}, {"datetaken": "2005-02-11 00:27:33", "license": "3", "title": "P6190130", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4590518_661caeb013_o.jpg", "secret": "661caeb013", "media": "photo", "latitude": "0", "id": "4590518", "tags": "italy sardinia holiday mum will 2003 steps walls sardegna"}, {"datetaken": "2005-02-11 00:27:47", "license": "3", "title": "P6190131", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590526_b340d11086_o.jpg", "secret": "b340d11086", "media": "photo", "latitude": "0", "id": "4590526", "tags": "italy sardinia holiday mum will 2003 signs sardegna"}, {"datetaken": "2005-02-11 00:28:14", "license": "3", "title": "P6190135", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590545_850a116d8f_o.jpg", "secret": "850a116d8f", "media": "photo", "latitude": "0", "id": "4590545", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:28:26", "license": "3", "title": "P6190137", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590566_c1eee2c9ad_o.jpg", "secret": "c1eee2c9ad", "media": "photo", "latitude": "0", "id": "4590566", "tags": "italy sardinia holiday mum will 2003 window sardegna"}, {"datetaken": "2005-02-11 00:28:50", "license": "3", "title": "P6190138", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4590587_3be0352812_o.jpg", "secret": "3be0352812", "media": "photo", "latitude": "0", "id": "4590587", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:29:11", "license": "3", "title": "P6200141", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4590604_64d6623a7d_o.jpg", "secret": "64d6623a7d", "media": "photo", "latitude": "0", "id": "4590604", "tags": "italy sardinia holiday mum will 2003 alghero sardegna"}, {"datetaken": "2005-02-11 00:29:27", "license": "3", "title": "P6200142", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4590611_6de9838f71_o.jpg", "secret": "6de9838f71", "media": "photo", "latitude": "0", "id": "4590611", "tags": "italy sardinia holiday mum will 2003 alghero palm sea sardegna"}, {"datetaken": "2005-02-11 00:29:40", "license": "3", "title": "P6200144", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4590621_3c83c4869e_o.jpg", "secret": "3c83c4869e", "media": "photo", "latitude": "0", "id": "4590621", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:29:52", "license": "3", "title": "P6200146", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590631_2c338f0ccb_o.jpg", "secret": "2c338f0ccb", "media": "photo", "latitude": "0", "id": "4590631", "tags": "italy sardinia holiday mum will 2003 alghero sardegna"}, {"datetaken": "2005-02-11 00:30:01", "license": "3", "title": "P6200152", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4590633_e56d592187_o.jpg", "secret": "e56d592187", "media": "photo", "latitude": "0", "id": "4590633", "tags": "italy sardinia holiday mum will 2003 sea view sunset sardegna"}, {"datetaken": "2005-02-11 00:30:10", "license": "3", "title": "P6200157", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590636_58daf53934_o.jpg", "secret": "58daf53934", "media": "photo", "latitude": "0", "id": "4590636", "tags": "italy sardinia holiday mum will 2003 sea view sunset sardegna"}, {"datetaken": "2005-02-11 00:30:26", "license": "3", "title": "P6200158", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4590642_b4ea641834_o.jpg", "secret": "b4ea641834", "media": "photo", "latitude": "0", "id": "4590642", "tags": "italy sardinia holiday mum will 2003 sea view alghero sunset sardegna"}, {"datetaken": "2005-02-11 00:30:42", "license": "3", "title": "P6200159", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4590663_183b1eb0f5_o.jpg", "secret": "183b1eb0f5", "media": "photo", "latitude": "0", "id": "4590663", "tags": "italy sardinia holiday mum will 2003 sea view alghero sunset sardegna"}, {"datetaken": "2005-02-11 00:30:52", "license": "3", "title": "P6200160", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590668_b55576c721_o.jpg", "secret": "b55576c721", "media": "photo", "latitude": "0", "id": "4590668", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:31:08", "license": "3", "title": "P6200169", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4590679_7082f32d90_o.jpg", "secret": "7082f32d90", "media": "photo", "latitude": "0", "id": "4590679", "tags": "italy sardinia holiday mum will 2003 night alghero harbour boats sardegna"}, {"datetaken": "2005-02-11 00:31:32", "license": "3", "title": "P6200170", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4590698_2413b69ec8_o.jpg", "secret": "2413b69ec8", "media": "photo", "latitude": "0", "id": "4590698", "tags": "italy sardinia holiday mum will 2003 night alghero boats sardegna"}, {"datetaken": "2005-02-11 00:31:49", "license": "3", "title": "P6210184", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4590706_983ba9ca78_o.jpg", "secret": "983ba9ca78", "media": "photo", "latitude": "0", "id": "4590706", "tags": "italy sardinia holiday mum will 2003 sea view sardegna"}, {"datetaken": "2005-02-11 00:32:07", "license": "3", "title": "P6210185", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590712_3589ea76cb_o.jpg", "secret": "3589ea76cb", "media": "photo", "latitude": "0", "id": "4590712", "tags": "italy sardinia holiday mum will 2003 sea view road sardegna"}, {"datetaken": "2005-02-11 00:32:40", "license": "3", "title": "P6210186", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4590724_7078c19ef0_o.jpg", "secret": "7078c19ef0", "media": "photo", "latitude": "0", "id": "4590724", "tags": "italy sardinia holiday mum will 2003 car fiat sardegna"}, {"datetaken": "2005-02-11 00:33:02", "license": "3", "title": "P6210187", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590734_764e2a49fe_o.jpg", "secret": "764e2a49fe", "media": "photo", "latitude": "0", "id": "4590734", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:33:06", "license": "3", "title": "Resize_of_FlowerMacro_copy", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590733_9e96dc79e7_o.jpg", "secret": "9e96dc79e7", "media": "photo", "latitude": "0", "id": "4590733", "tags": "italy sardinia holiday mum will 2003 pink flower macro sardegna"}, {"datetaken": "2005-02-11 00:33:20", "license": "3", "title": "P6150002", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4590739_def8019a47_o.jpg", "secret": "def8019a47", "media": "photo", "latitude": "0", "id": "4590739", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:33:33", "license": "3", "title": "P6150004", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4590747_51240de1d5_o.jpg", "secret": "51240de1d5", "media": "photo", "latitude": "0", "id": "4590747", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:33:59", "license": "3", "title": "P6150042", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4590764_976664aa6c_o.jpg", "secret": "976664aa6c", "media": "photo", "latitude": "0", "id": "4590764", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:34:06", "license": "3", "title": "P6170067", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590767_a2b7e49c13_o.jpg", "secret": "a2b7e49c13", "media": "photo", "latitude": "0", "id": "4590767", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2005-02-11 00:34:28", "license": "3", "title": "P6170069", "text": "", "album_id": "115611", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4590783_e99e0543a2_o.jpg", "secret": "e99e0543a2", "media": "photo", "latitude": "0", "id": "4590783", "tags": "italy sardinia holiday mum will 2003 sardegna"}, {"datetaken": "2004-10-06 23:24:25", "license": "1", "title": "Singing Indians-1", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6243409_606bec701e_o.jpg", "secret": "606bec701e", "media": "photo", "latitude": "0", "id": "6243409", "tags": "paracas peru national reserve indians"}, {"datetaken": "2004-10-06 23:24:40", "license": "1", "title": "Singing indians-2", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6243417_a545b6113d_o.jpg", "secret": "a545b6113d", "media": "photo", "latitude": "0", "id": "6243417", "tags": "paracas peru national reserve indians"}, {"datetaken": "2004-10-06 23:24:47", "license": "1", "title": "singing Indians-3", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6243424_b6fec90289_o.jpg", "secret": "b6fec90289", "media": "photo", "latitude": "0", "id": "6243424", "tags": "paracas peru national reserve indians"}, {"datetaken": "2004-10-06 23:25:05", "license": "1", "title": "Singing Indians-4", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6243449_517b0368c6_o.jpg", "secret": "517b0368c6", "media": "photo", "latitude": "0", "id": "6243449", "tags": "paracas peru national reserve indians"}, {"datetaken": "2004-10-06 23:26:07", "license": "1", "title": "Beach of Paracas", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6243481_c232558067_o.jpg", "secret": "c232558067", "media": "photo", "latitude": "0", "id": "6243481", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-06 23:26:52", "license": "1", "title": "paracas-1", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6243513_abb5d76fd1_o.jpg", "secret": "abb5d76fd1", "media": "photo", "latitude": "0", "id": "6243513", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-06 23:28:15", "license": "1", "title": "Beach of Paracas-sand", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6243533_44881ca5e8_o.jpg", "secret": "44881ca5e8", "media": "photo", "latitude": "0", "id": "6243533", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-06 23:28:49", "license": "1", "title": "bird-1", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6243555_4a7ed80e6a_o.jpg", "secret": "4a7ed80e6a", "media": "photo", "latitude": "0", "id": "6243555", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-06 23:29:11", "license": "1", "title": "beach of Paracas-2-with sea weeds", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6243574_01ec9a8c3d_o.jpg", "secret": "01ec9a8c3d", "media": "photo", "latitude": "0", "id": "6243574", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-06 23:30:10", "license": "1", "title": "Beach of Paracas-3 with boats", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6243588_8456fa5317_o.jpg", "secret": "8456fa5317", "media": "photo", "latitude": "0", "id": "6243588", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-06 23:31:08", "license": "1", "title": "bird on the boat", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6243607_131a79823a_o.jpg", "secret": "131a79823a", "media": "photo", "latitude": "0", "id": "6243607", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-06 23:32:38", "license": "1", "title": "Flying birds", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6243624_fc6f479b9a_o.jpg", "secret": "fc6f479b9a", "media": "photo", "latitude": "0", "id": "6243624", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-06 23:33:30", "license": "1", "title": "Swimming bird", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6243636_356d84a4ec_o.jpg", "secret": "356d84a4ec", "media": "photo", "latitude": "0", "id": "6243636", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-06 23:57:11", "license": "1", "title": "Singing Indians-5", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6243650_474e0e9eb4_o.jpg", "secret": "474e0e9eb4", "media": "photo", "latitude": "0", "id": "6243650", "tags": "paracas peru national reserve indians"}, {"datetaken": "2004-10-07 00:28:49", "license": "1", "title": "Sand of Paracas", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6243681_f62983e601_o.jpg", "secret": "f62983e601", "media": "photo", "latitude": "0", "id": "6243681", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 00:29:20", "license": "1", "title": "Bushes in Paracas", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6243702_3865d18c09_o.jpg", "secret": "3865d18c09", "media": "photo", "latitude": "0", "id": "6243702", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 00:53:28", "license": "1", "title": "Walking to the watchtower", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6243711_a7d8ac6120_o.jpg", "secret": "a7d8ac6120", "media": "photo", "latitude": "0", "id": "6243711", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 01:02:55", "license": "1", "title": "Wild flamingos", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6243728_fb42f1baf5_o.jpg", "secret": "fb42f1baf5", "media": "photo", "latitude": "0", "id": "6243728", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 01:05:31", "license": "1", "title": "Watchtower", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6243749_ef8c14475f_o.jpg", "secret": "ef8c14475f", "media": "photo", "latitude": "0", "id": "6243749", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 01:06:24", "license": "1", "title": "such a long walk to watchtower", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6243774_8d2bd6bd5e_o.jpg", "secret": "8d2bd6bd5e", "media": "photo", "latitude": "0", "id": "6243774", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 01:50:53", "license": "1", "title": "Rock by the sea", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6243802_72840917c4_o.jpg", "secret": "72840917c4", "media": "photo", "latitude": "0", "id": "6243802", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 01:51:06", "license": "1", "title": "red sand", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6243820_05d2392b28_o.jpg", "secret": "05d2392b28", "media": "photo", "latitude": "0", "id": "6243820", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 01:51:14", "license": "1", "title": "beach in Paracas-4", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6243852_b627b45b2f_o.jpg", "secret": "b627b45b2f", "media": "photo", "latitude": "0", "id": "6243852", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 01:51:33", "license": "1", "title": "beach in paracas-5-red sand", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6243872_923d05c26b_o.jpg", "secret": "923d05c26b", "media": "photo", "latitude": "0", "id": "6243872", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 01:53:30", "license": "1", "title": "roaring ocean", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6243914_aeb1de4d6d_o.jpg", "secret": "aeb1de4d6d", "media": "photo", "latitude": "0", "id": "6243914", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 02:02:18", "license": "1", "title": "Gulf", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6243937_9ac2a8dbf4_o.jpg", "secret": "9ac2a8dbf4", "media": "photo", "latitude": "0", "id": "6243937", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 02:02:40", "license": "1", "title": "two birds resting by the beach", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6243940_6caf06be47_o.jpg", "secret": "6caf06be47", "media": "photo", "latitude": "0", "id": "6243940", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 02:02:50", "license": "1", "title": "rock and sea", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6243950_646d8db0d7_o.jpg", "secret": "646d8db0d7", "media": "photo", "latitude": "0", "id": "6243950", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 02:03:10", "license": "1", "title": "Two birds by the beach, Paracas", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6243962_e13ac06959_o.jpg", "secret": "e13ac06959", "media": "photo", "latitude": "0", "id": "6243962", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 02:35:07", "license": "1", "title": "Singer in restaurant on the coast of Pacific", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6243976_d432eea83f_o.jpg", "secret": "d432eea83f", "media": "photo", "latitude": "0", "id": "6243976", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 04:03:10", "license": "1", "title": "Cliff-1", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6243994_e5e1689981_o.jpg", "secret": "e5e1689981", "media": "photo", "latitude": "0", "id": "6243994", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 04:04:10", "license": "1", "title": "Cliff-2", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6244003_b6614bd877_o.jpg", "secret": "b6614bd877", "media": "photo", "latitude": "0", "id": "6244003", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 04:04:27", "license": "1", "title": "Walking on the cliff", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6244005_57fce91069_o.jpg", "secret": "57fce91069", "media": "photo", "latitude": "0", "id": "6244005", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 04:06:38", "license": "1", "title": "cliff-3", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6244016_a238f99780_o.jpg", "secret": "a238f99780", "media": "photo", "latitude": "0", "id": "6244016", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 04:07:31", "license": "1", "title": "cliff-4", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6244019_a2b79fbfb0_o.jpg", "secret": "a2b79fbfb0", "media": "photo", "latitude": "0", "id": "6244019", "tags": "paracas peru national reserve"}, {"datetaken": "2004-10-07 04:08:11", "license": "1", "title": "Me, standing in the strong wind of Paracas", "text": "", "album_id": "155832", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6244025_a2fe21b492_o.jpg", "secret": "a2fe21b492", "media": "photo", "latitude": "0", "id": "6244025", "tags": "paracas peru national reserve"}, {"datetaken": "2005-06-10 18:05:43", "license": "2", "title": "Ambleside", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18627975_b0a727ccec_o.jpg", "secret": "b0a727ccec", "media": "photo", "latitude": "0", "id": "18627975", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 18:07:12", "license": "2", "title": "Buildings", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18628090_df5bd77ae0_o.jpg", "secret": "df5bd77ae0", "media": "photo", "latitude": "0", "id": "18628090", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 18:08:49", "license": "2", "title": "It's log!", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18628199_6ee12c7857_o.jpg", "secret": "6ee12c7857", "media": "photo", "latitude": "0", "id": "18628199", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 18:11:53", "license": "2", "title": "Canada geese", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18628291_cdf176d980_o.jpg", "secret": "cdf176d980", "media": "photo", "latitude": "0", "id": "18628291", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 18:15:40", "license": "2", "title": "Dock", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18628335_f38b5a7f59_o.jpg", "secret": "f38b5a7f59", "media": "photo", "latitude": "0", "id": "18628335", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 18:25:03", "license": "2", "title": "What's it good for?", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18628385_ef7a2b9cf3_o.jpg", "secret": "ef7a2b9cf3", "media": "photo", "latitude": "0", "id": "18628385", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 18:28:43", "license": "2", "title": "Vane", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18628433_1710902bef_o.jpg", "secret": "1710902bef", "media": "photo", "latitude": "0", "id": "18628433", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 18:32:45", "license": "2", "title": "Flowers plus a bee", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18628508_272c676c39_o.jpg", "secret": "272c676c39", "media": "photo", "latitude": "0", "id": "18628508", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 18:33:06", "license": "2", "title": "Memorial", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18628572_02d99d23fd_o.jpg", "secret": "02d99d23fd", "media": "photo", "latitude": "0", "id": "18628572", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 18:38:35", "license": "2", "title": "Flowers", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18628640_753c4dc719_o.jpg", "secret": "753c4dc719", "media": "photo", "latitude": "0", "id": "18628640", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 18:43:27", "license": "2", "title": "Gator", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18628696_c13a2bd86e_o.jpg", "secret": "c13a2bd86e", "media": "photo", "latitude": "0", "id": "18628696", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 18:50:18", "license": "2", "title": "Fish", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18628791_8bce31424e_o.jpg", "secret": "8bce31424e", "media": "photo", "latitude": "0", "id": "18628791", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 18:53:05", "license": "2", "title": "Flower bed", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18628889_73e3567458_o.jpg", "secret": "73e3567458", "media": "photo", "latitude": "0", "id": "18628889", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 18:55:28", "license": "2", "title": "Beware!", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18629003_db02f9e5ee_o.jpg", "secret": "db02f9e5ee", "media": "photo", "latitude": "0", "id": "18629003", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 18:57:15", "license": "2", "title": "Sunny beach", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18629100_61031eea83_o.jpg", "secret": "61031eea83", "media": "photo", "latitude": "0", "id": "18629100", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 18:58:51", "license": "2", "title": "Obscured view", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18629159_d344e4f913_o.jpg", "secret": "d344e4f913", "media": "photo", "latitude": "0", "id": "18629159", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 18:59:33", "license": "2", "title": "More beach", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18629253_4ad85533dc_o.jpg", "secret": "4ad85533dc", "media": "photo", "latitude": "0", "id": "18629253", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 19:02:03", "license": "2", "title": "Even more beach", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18629301_0282248a6c_o.jpg", "secret": "0282248a6c", "media": "photo", "latitude": "0", "id": "18629301", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 19:04:03", "license": "2", "title": "Warning signs", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18629363_2fbf9723cd_o.jpg", "secret": "2fbf9723cd", "media": "photo", "latitude": "0", "id": "18629363", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-06-10 19:04:21", "license": "2", "title": "Making tracks", "text": "", "album_id": "439641", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18629456_142141b6e3_o.jpg", "secret": "142141b6e3", "media": "photo", "latitude": "0", "id": "18629456", "tags": "2005 vancouver ambleside"}, {"datetaken": "2005-07-03 18:53:45", "license": "1", "title": "3rd of July margarita fixins", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24940255_9b8f1a94de_o.jpg", "secret": "9b8f1a94de", "media": "photo", "latitude": "0", "id": "24940255", "tags": "summer beach margaritas friends losangeles"}, {"datetaken": "2005-07-03 18:59:06", "license": "1", "title": "glenn & kristine", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24940444_1aae4ef198_o.jpg", "secret": "1aae4ef198", "media": "photo", "latitude": "0", "id": "24940444", "tags": "summer beach margaritas friends losangeles"}, {"datetaken": "2005-07-03 20:00:07", "license": "1", "title": "matt & catherine", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24940605_b88728803f_o.jpg", "secret": "b88728803f", "media": "photo", "latitude": "0", "id": "24940605", "tags": "summer beach friends losangeles mexicanfood"}, {"datetaken": "2005-07-03 20:03:44", "license": "1", "title": "cat & chria", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24940813_7ab7c908d4_o.jpg", "secret": "7ab7c908d4", "media": "photo", "latitude": "0", "id": "24940813", "tags": "summer beach friends losangeles mexicanfood"}, {"datetaken": "2005-07-03 20:10:07", "license": "1", "title": "michelada doctor", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24940969_f83fb2ca26_o.jpg", "secret": "f83fb2ca26", "media": "photo", "latitude": "0", "id": "24940969", "tags": "summer beach friends losangeles mexicanfood beer lime"}, {"datetaken": "2005-07-03 20:10:51", "license": "1", "title": "wish I could remember what she's reacting to!", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24941112_e997e4b954_o.jpg", "secret": "e997e4b954", "media": "photo", "latitude": "0", "id": "24941112", "tags": "summer beach friends losangeles mexicanfood"}, {"datetaken": "2005-07-03 20:11:03", "license": "1", "title": "matt & brooke", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24941342_48aeb564db_o.jpg", "secret": "48aeb564db", "media": "photo", "latitude": "0", "id": "24941342", "tags": "summer beach friends losangeles mexicanfood"}, {"datetaken": "2005-07-03 20:11:24", "license": "1", "title": "patriotic andy", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24941484_19ffa59eab_o.jpg", "secret": "19ffa59eab", "media": "photo", "latitude": "0", "id": "24941484", "tags": "summer beach friends losangeles mexicanfood flag brit"}, {"datetaken": "2005-07-03 21:05:05", "license": "1", "title": "matt & catherine with our very patient waiter", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24941725_8421228f03_o.jpg", "secret": "8421228f03", "media": "photo", "latitude": "0", "id": "24941725", "tags": "summer beach friends losangeles mexicanfood"}, {"datetaken": "2005-07-03 22:22:07", "license": "1", "title": "jamie & cat", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24941957_46e2108e16_o.jpg", "secret": "46e2108e16", "media": "photo", "latitude": "0", "id": "24941957", "tags": "summer beach friends losangeles sparklers fireworks"}, {"datetaken": "2005-07-03 22:22:37", "license": "1", "title": "brooke, leslie, catherine & jamie", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24942221_8c81bb20f9_o.jpg", "secret": "8c81bb20f9", "media": "photo", "latitude": "0", "id": "24942221", "tags": "summer beach friends losangeles girls sparklers fireworks"}, {"datetaken": "2005-07-03 22:26:21", "license": "1", "title": "chria", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24942414_7b4e8598c0_o.jpg", "secret": "7b4e8598c0", "media": "photo", "latitude": "0", "id": "24942414", "tags": "summer beach friends losangeles sparklers fireworks romping night"}, {"datetaken": "2005-07-03 22:26:26", "license": "1", "title": "brooke", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24942584_4871784c7e_o.jpg", "secret": "4871784c7e", "media": "photo", "latitude": "0", "id": "24942584", "tags": "summer beach friends losangeles sparklers fireworks romping night"}, {"datetaken": "2005-07-03 22:27:03", "license": "1", "title": "jamie & cat", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24942694_3b48505ec1_o.jpg", "secret": "3b48505ec1", "media": "photo", "latitude": "0", "id": "24942694", "tags": "summer beach friends losangeles sparklers fireworks romping night selfportrait"}, {"datetaken": "2005-07-03 22:27:21", "license": "1", "title": "cat & leslie", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24942799_6d29c2ae48_o.jpg", "secret": "6d29c2ae48", "media": "photo", "latitude": "0", "id": "24942799", "tags": "summer beach friends losangeles sparklers fireworks romping night"}, {"datetaken": "2005-07-03 22:28:48", "license": "1", "title": "sparkle", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24942914_c14c4aa7a0_o.jpg", "secret": "c14c4aa7a0", "media": "photo", "latitude": "0", "id": "24942914", "tags": "summer beach friends losangeles sparklers fireworks romping night"}, {"datetaken": "2005-07-03 22:28:52", "license": "1", "title": "andy & blazing chria", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24943035_480f1898e7_o.jpg", "secret": "480f1898e7", "media": "photo", "latitude": "0", "id": "24943035", "tags": "summer beach friends losangeles sparklers fireworks romping night"}, {"datetaken": "2005-07-03 22:29:31", "license": "1", "title": "sparkly", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24943165_06a59f5324_o.jpg", "secret": "06a59f5324", "media": "photo", "latitude": "0", "id": "24943165", "tags": "summer beach friends losangeles sparklers fireworks romping night"}, {"datetaken": "2005-07-03 22:31:06", "license": "1", "title": "cat & leslie", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24943276_06ed396862_o.jpg", "secret": "06ed396862", "media": "photo", "latitude": "0", "id": "24943276", "tags": "summer beach friends losangeles sparklers fireworks romping night"}, {"datetaken": "2005-07-03 22:31:47", "license": "1", "title": "karate kick...", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24943508_47db0c4f41_o.jpg", "secret": "47db0c4f41", "media": "photo", "latitude": "0", "id": "24943508", "tags": ""}, {"datetaken": "2005-07-03 22:31:55", "license": "1", "title": "pffffffft", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24943644_44a1101a07_o.jpg", "secret": "44a1101a07", "media": "photo", "latitude": "0", "id": "24943644", "tags": "summer beach friends losangeles sparklers fireworks romping night"}, {"datetaken": "2005-07-03 22:32:20", "license": "1", "title": "kicking sand", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24943758_f56aa6e842_o.jpg", "secret": "f56aa6e842", "media": "photo", "latitude": "0", "id": "24943758", "tags": "summer beach friends losangeles sparklers fireworks romping night"}, {"datetaken": "2005-07-03 22:32:31", "license": "1", "title": "the mcleans", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24943867_3189a39cd9_o.jpg", "secret": "3189a39cd9", "media": "photo", "latitude": "0", "id": "24943867", "tags": "summer beach friends losangeles sparklers fireworks romping night"}, {"datetaken": "2005-07-03 22:33:07", "license": "1", "title": "c+j", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24943998_f1e391ee65_o.jpg", "secret": "f1e391ee65", "media": "photo", "latitude": "0", "id": "24943998", "tags": "summer beach friends losangeles sparklers fireworks romping night selfportrait"}, {"datetaken": "2005-07-03 22:34:09", "license": "1", "title": "clockwise, from lower left", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24944128_b32c636595_o.jpg", "secret": "b32c636595", "media": "photo", "latitude": "0", "id": "24944128", "tags": "summer beach friends losangeles sparklers fireworks romping night"}, {"datetaken": "2005-07-03 22:34:45", "license": "1", "title": "girls laying in sand", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24944326_1b7fc75db2_o.jpg", "secret": "1b7fc75db2", "media": "photo", "latitude": "0", "id": "24944326", "tags": ""}, {"datetaken": "2005-07-03 22:35:15", "license": "1", "title": "the takedown", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24944484_dcd7a1cdae_o.jpg", "secret": "dcd7a1cdae", "media": "photo", "latitude": "0", "id": "24944484", "tags": "summer beach friends losangeles sparklers fireworks romping night tackle"}, {"datetaken": "2005-07-03 22:35:22", "license": "1", "title": "the pin", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24944684_9e498c501d_o.jpg", "secret": "9e498c501d", "media": "photo", "latitude": "0", "id": "24944684", "tags": "summer beach friends losangeles sparklers fireworks romping night"}, {"datetaken": "2005-07-03 22:35:27", "license": "1", "title": "brooke & andy", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24944805_44f4f2b1cb_o.jpg", "secret": "44f4f2b1cb", "media": "photo", "latitude": "0", "id": "24944805", "tags": "summer beach friends losangeles sparklers fireworks romping night"}, {"datetaken": "2005-07-03 22:35:39", "license": "1", "title": "the flintstone way of showing affection", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24944956_947a01d20a_o.jpg", "secret": "947a01d20a", "media": "photo", "latitude": "0", "id": "24944956", "tags": "summer beach friends losangeles sparklers fireworks romping night"}, {"datetaken": "2005-07-03 22:36:59", "license": "1", "title": "a brooke casualty", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24945085_b57d659bbe_o.jpg", "secret": "b57d659bbe", "media": "photo", "latitude": "0", "id": "24945085", "tags": "summer beach friends losangeles sparklers fireworks romping night"}, {"datetaken": "2005-07-04 20:54:56", "license": "1", "title": "on the way to watch fogworks", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24945465_c778bb2a00_o.jpg", "secret": "c778bb2a00", "media": "photo", "latitude": "0", "id": "24945465", "tags": "july4 marina fireworks bostonterrier losangeles"}, {"datetaken": "2005-07-04 21:03:23", "license": "1", "title": "walking", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24945666_75f457f093_o.jpg", "secret": "75f457f093", "media": "photo", "latitude": "0", "id": "24945666", "tags": "july4 marina fireworks losangeles"}, {"datetaken": "2005-07-04 21:03:56", "license": "1", "title": "louise & robert", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24945752_19800ed39a_o.jpg", "secret": "19800ed39a", "media": "photo", "latitude": "0", "id": "24945752", "tags": ""}, {"datetaken": "2005-07-04 21:05:03", "license": "1", "title": "rocket isn't such a fan of the fogworks", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24945838_1a3df86b8d_o.jpg", "secret": "1a3df86b8d", "media": "photo", "latitude": "0", "id": "24945838", "tags": "july4 marina fireworks bostonterrier losangeles"}, {"datetaken": "2005-07-04 21:07:23", "license": "1", "title": "cap, sarah & andie", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24945993_cb209d014f_o.jpg", "secret": "cb209d014f", "media": "photo", "latitude": "0", "id": "24945993", "tags": ""}, {"datetaken": "2005-07-04 21:08:20", "license": "1", "title": "there are fireworks back there... somewhere", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24946126_a8358d9f2c_o.jpg", "secret": "a8358d9f2c", "media": "photo", "latitude": "0", "id": "24946126", "tags": "july4 marina fireworks losangeles"}, {"datetaken": "2005-07-04 21:09:28", "license": "1", "title": "mike (hiding), amanda, louise, robert & andie", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24946265_8b63f05338_o.jpg", "secret": "8b63f05338", "media": "photo", "latitude": "0", "id": "24946265", "tags": "july4 marina fireworks losangeles"}, {"datetaken": "2005-07-04 21:10:17", "license": "1", "title": "rocket with auntie amy", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24946521_f7b3e42962_o.jpg", "secret": "f7b3e42962", "media": "photo", "latitude": "0", "id": "24946521", "tags": "july4 marina fireworks bostonterrier losangeles"}, {"datetaken": "2005-07-04 21:18:57", "license": "1", "title": "family pic", "text": "", "album_id": "569682", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24946718_a9a4ac3e6f_o.jpg", "secret": "a9a4ac3e6f", "media": "photo", "latitude": "0", "id": "24946718", "tags": "july4 marina fireworks bostonterrier losangeles"}, {"datetaken": "2005-07-09 14:12:07", "license": "3", "title": "DSC00399", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24937106_d5f3dcbc12_o.jpg", "secret": "d5f3dcbc12", "media": "photo", "latitude": "0", "id": "24937106", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 14:12:36", "license": "3", "title": "DSC00400", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24935331_4d5507c75d_o.jpg", "secret": "4d5507c75d", "media": "photo", "latitude": "0", "id": "24935331", "tags": "walberswick beach crabbing"}, {"datetaken": "2005-07-09 14:13:54", "license": "3", "title": "DSC00401", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24937996_1e63aa2b73_o.jpg", "secret": "1e63aa2b73", "media": "photo", "latitude": "0", "id": "24937996", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 14:46:33", "license": "3", "title": "DSC00402", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24936153_11a74d4ae5_o.jpg", "secret": "11a74d4ae5", "media": "photo", "latitude": "0", "id": "24936153", "tags": "walberswick beach crabbing"}, {"datetaken": "2005-07-09 14:46:40", "license": "3", "title": "DSC00403", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24938668_13699ba23d_o.jpg", "secret": "13699ba23d", "media": "photo", "latitude": "0", "id": "24938668", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 14:46:48", "license": "3", "title": "DSC00404", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24939131_16cadc5a04_o.jpg", "secret": "16cadc5a04", "media": "photo", "latitude": "0", "id": "24939131", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 14:47:20", "license": "3", "title": "DSC00405", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24939620_3aae40dffe_o.jpg", "secret": "3aae40dffe", "media": "photo", "latitude": "0", "id": "24939620", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 14:49:18", "license": "3", "title": "DSC00406", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24939902_7889a99679_o.jpg", "secret": "7889a99679", "media": "photo", "latitude": "0", "id": "24939902", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 14:50:38", "license": "3", "title": "DSC00407", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24940183_52fa0129ac_o.jpg", "secret": "52fa0129ac", "media": "photo", "latitude": "0", "id": "24940183", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 14:51:20", "license": "3", "title": "DSC00408", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24940579_b2dd627f9e_o.jpg", "secret": "b2dd627f9e", "media": "photo", "latitude": "0", "id": "24940579", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 15:16:52", "license": "3", "title": "DSC00409", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24940973_629e8bb40b_o.jpg", "secret": "629e8bb40b", "media": "photo", "latitude": "0", "id": "24940973", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 15:17:07", "license": "3", "title": "DSC00410", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24941297_a19e479593_o.jpg", "secret": "a19e479593", "media": "photo", "latitude": "0", "id": "24941297", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 15:19:35", "license": "3", "title": "DSC00411", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24941666_597a4cb7c5_o.jpg", "secret": "597a4cb7c5", "media": "photo", "latitude": "0", "id": "24941666", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 15:24:55", "license": "3", "title": "DSC00412", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24942110_a6c94dbe11_o.jpg", "secret": "a6c94dbe11", "media": "photo", "latitude": "0", "id": "24942110", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 15:40:24", "license": "3", "title": "DSC00413", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24942485_b01e424de8_o.jpg", "secret": "b01e424de8", "media": "photo", "latitude": "0", "id": "24942485", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 15:40:31", "license": "3", "title": "DSC00414", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24942772_342e53079f_o.jpg", "secret": "342e53079f", "media": "photo", "latitude": "0", "id": "24942772", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 15:46:19", "license": "3", "title": "DSC00415", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24943156_a60238bb76_o.jpg", "secret": "a60238bb76", "media": "photo", "latitude": "0", "id": "24943156", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 15:48:22", "license": "3", "title": "DSC00416", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24943450_6703dd76d3_o.jpg", "secret": "6703dd76d3", "media": "photo", "latitude": "0", "id": "24943450", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 15:50:16", "license": "3", "title": "DSC00417", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24943848_eb06145c20_o.jpg", "secret": "eb06145c20", "media": "photo", "latitude": "0", "id": "24943848", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 16:10:03", "license": "3", "title": "DSC00418", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24944215_9a120ad26e_o.jpg", "secret": "9a120ad26e", "media": "photo", "latitude": "0", "id": "24944215", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 16:13:08", "license": "3", "title": "DSC00419", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24944578_0906184926_o.jpg", "secret": "0906184926", "media": "photo", "latitude": "0", "id": "24944578", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 16:28:13", "license": "3", "title": "DSC00425", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24945015_c0b63afca8_o.jpg", "secret": "c0b63afca8", "media": "photo", "latitude": "0", "id": "24945015", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 17:24:02", "license": "3", "title": "DSC00426", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24945126_52fed53bdc_o.jpg", "secret": "52fed53bdc", "media": "photo", "latitude": "0", "id": "24945126", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 17:24:50", "license": "3", "title": "DSC00427", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24945540_559c436f06_o.jpg", "secret": "559c436f06", "media": "photo", "latitude": "0", "id": "24945540", "tags": "walberswick crabbing beach kiting"}, {"datetaken": "2005-07-09 17:25:22", "license": "3", "title": "DSC00428", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24945981_0db862c09e_o.jpg", "secret": "0db862c09e", "media": "photo", "latitude": "0", "id": "24945981", "tags": "walberswick crabbing beach kiting"}, {"datetaken": "2005-07-09 17:31:40", "license": "3", "title": "DSC00429", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24946443_5b7610e857_o.jpg", "secret": "5b7610e857", "media": "photo", "latitude": "0", "id": "24946443", "tags": "walberswick crabbing beach kiting"}, {"datetaken": "2005-07-09 17:31:50", "license": "3", "title": "DSC00430", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24946854_b34efeda15_o.jpg", "secret": "b34efeda15", "media": "photo", "latitude": "0", "id": "24946854", "tags": "walberswick crabbing beach kiting"}, {"datetaken": "2005-07-09 17:32:11", "license": "3", "title": "DSC00431", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24947244_9c47d6e3f5_o.jpg", "secret": "9c47d6e3f5", "media": "photo", "latitude": "0", "id": "24947244", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 17:32:20", "license": "3", "title": "DSC00432", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24947632_af2b26a556_o.jpg", "secret": "af2b26a556", "media": "photo", "latitude": "0", "id": "24947632", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 18:00:29", "license": "3", "title": "DSC00433", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24948138_b746837e9c_o.jpg", "secret": "b746837e9c", "media": "photo", "latitude": "0", "id": "24948138", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 19:05:42", "license": "3", "title": "DSC00434", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24948488_7347c7c8c6_o.jpg", "secret": "7347c7c8c6", "media": "photo", "latitude": "0", "id": "24948488", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 19:05:49", "license": "3", "title": "DSC00435", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24948929_9a866b14aa_o.jpg", "secret": "9a866b14aa", "media": "photo", "latitude": "0", "id": "24948929", "tags": "walberswick crabbing beach"}, {"datetaken": "2005-07-09 19:08:03", "license": "3", "title": "DSC00436-1", "text": "", "album_id": "569733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24949478_d6848a6eb9_o.jpg", "secret": "d6848a6eb9", "media": "photo", "latitude": "0", "id": "24949478", "tags": "walberswick crabbing beach"}, {"datetaken": "2004-03-19 14:30:30", "license": "3", "title": "PICT5326.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14032702_8e542c2015_o.jpg", "secret": "8e542c2015", "media": "photo", "latitude": "0", "id": "14032702", "tags": "nz newzealand southisland kaikoura"}, {"datetaken": "2004-03-19 14:30:41", "license": "3", "title": "PICT5327.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24972049_9f60dc71a7_o.jpg", "secret": "9f60dc71a7", "media": "photo", "latitude": "0", "id": "24972049", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 14:31:22", "license": "3", "title": "PICT5329.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14032736_90f4e41b4f_o.jpg", "secret": "90f4e41b4f", "media": "photo", "latitude": "0", "id": "14032736", "tags": "nz newzealand southisland kaikoura"}, {"datetaken": "2004-03-19 14:33:38", "license": "3", "title": "PICT5332.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14032773_1b8dd2d149_o.jpg", "secret": "1b8dd2d149", "media": "photo", "latitude": "0", "id": "14032773", "tags": "nz newzealand southisland kaikoura"}, {"datetaken": "2004-03-19 14:33:49", "license": "3", "title": "PICT5333.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24972190_4ae2616313_o.jpg", "secret": "4ae2616313", "media": "photo", "latitude": "0", "id": "24972190", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 14:34:04", "license": "3", "title": "PICT5335.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24972242_2506efc63e_o.jpg", "secret": "2506efc63e", "media": "photo", "latitude": "0", "id": "24972242", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 14:35:49", "license": "3", "title": "PICT5336.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14032817_1f455727e9_o.jpg", "secret": "1f455727e9", "media": "photo", "latitude": "0", "id": "14032817", "tags": "nz newzealand southisland kaikoura"}, {"datetaken": "2004-03-19 14:36:14", "license": "3", "title": "PICT5337.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24972384_e45f39da59_o.jpg", "secret": "e45f39da59", "media": "photo", "latitude": "0", "id": "24972384", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 14:38:42", "license": "3", "title": "PICT5338.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24972470_4b43ff95b5_o.jpg", "secret": "4b43ff95b5", "media": "photo", "latitude": "0", "id": "24972470", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 15:00:26", "license": "3", "title": "PICT5339.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24972514_0e88fab4b0_o.jpg", "secret": "0e88fab4b0", "media": "photo", "latitude": "0", "id": "24972514", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 15:00:37", "license": "3", "title": "PICT5340.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24972570_fc2e120e12_o.jpg", "secret": "fc2e120e12", "media": "photo", "latitude": "0", "id": "24972570", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 15:03:05", "license": "3", "title": "PICT5341.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14032859_4dc96e736c_o.jpg", "secret": "4dc96e736c", "media": "photo", "latitude": "0", "id": "14032859", "tags": "nz newzealand southisland kaikoura"}, {"datetaken": "2004-03-19 15:03:20", "license": "3", "title": "PICT5342.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24975827_86b1530536_o.jpg", "secret": "86b1530536", "media": "photo", "latitude": "0", "id": "24975827", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 15:03:44", "license": "3", "title": "Seaweed", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24975953_39f13faf82_o.jpg", "secret": "39f13faf82", "media": "photo", "latitude": "0", "id": "24975953", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 15:11:50", "license": "3", "title": "PICT5344.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24976079_9922c40517_o.jpg", "secret": "9922c40517", "media": "photo", "latitude": "0", "id": "24976079", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 15:13:11", "license": "3", "title": "PICT5345.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24976177_31211c3338_o.jpg", "secret": "31211c3338", "media": "photo", "latitude": "0", "id": "24976177", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 15:13:35", "license": "3", "title": "PICT5348.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14032900_205b191c4c_o.jpg", "secret": "205b191c4c", "media": "photo", "latitude": "0", "id": "14032900", "tags": "nz newzealand southisland kaikoura"}, {"datetaken": "2004-03-19 15:13:44", "license": "3", "title": "PICT5349.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24976256_2db7a29948_o.jpg", "secret": "2db7a29948", "media": "photo", "latitude": "0", "id": "24976256", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 15:15:01", "license": "3", "title": "PICT5350.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24976398_a7f229548c_o.jpg", "secret": "a7f229548c", "media": "photo", "latitude": "0", "id": "24976398", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 15:25:33", "license": "3", "title": "PICT5353.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14032944_56753553ed_o.jpg", "secret": "56753553ed", "media": "photo", "latitude": "0", "id": "14032944", "tags": "nz newzealand southisland kaikoura"}, {"datetaken": "2004-03-19 15:26:10", "license": "3", "title": "Kaikoura", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14032993_9b043206a5_o.jpg", "secret": "9b043206a5", "media": "photo", "latitude": "0", "id": "14032993", "tags": "nz newzealand southisland kaikoura"}, {"datetaken": "2004-03-19 15:27:59", "license": "3", "title": "PICT5355.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24976549_fab6441f3b_o.jpg", "secret": "fab6441f3b", "media": "photo", "latitude": "0", "id": "24976549", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 15:32:40", "license": "3", "title": "PICT5357.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24977553_287e137fb3_o.jpg", "secret": "287e137fb3", "media": "photo", "latitude": "0", "id": "24977553", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 15:32:54", "license": "3", "title": "PICT5358.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24977656_d0d0883763_o.jpg", "secret": "d0d0883763", "media": "photo", "latitude": "0", "id": "24977656", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 15:34:13", "license": "3", "title": "PICT5359.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24977762_d9e09891d9_o.jpg", "secret": "d9e09891d9", "media": "photo", "latitude": "0", "id": "24977762", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 15:35:22", "license": "3", "title": "Kaikoura Kow", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14033040_db976aede4_o.jpg", "secret": "db976aede4", "media": "photo", "latitude": "0", "id": "14033040", "tags": "nz newzealand southisland kaikoura"}, {"datetaken": "2004-03-19 15:36:22", "license": "3", "title": "Kaikoura and cows", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14033085_39391d3dfa_o.jpg", "secret": "39391d3dfa", "media": "photo", "latitude": "0", "id": "14033085", "tags": "nz newzealand southisland kaikoura"}, {"datetaken": "2004-03-19 16:12:04", "license": "3", "title": "PICT5363.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24977875_c38b977d50_o.jpg", "secret": "c38b977d50", "media": "photo", "latitude": "0", "id": "24977875", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 16:12:31", "license": "3", "title": "PICT5364.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24977975_aef85c65fe_o.jpg", "secret": "aef85c65fe", "media": "photo", "latitude": "0", "id": "24977975", "tags": "southisland newzealand nz"}, {"datetaken": "2004-03-19 16:19:38", "license": "3", "title": "PICT5367.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14033148_bd1b8f4777_o.jpg", "secret": "bd1b8f4777", "media": "photo", "latitude": "0", "id": "14033148", "tags": "newzealand friend nz southisland kaikoura"}, {"datetaken": "2004-03-19 16:19:49", "license": "3", "title": "Oh, help me, Guru of Kaikoura", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14033241_151c914ed4_o.jpg", "secret": "151c914ed4", "media": "photo", "latitude": "0", "id": "14033241", "tags": "newzealand friend nz southisland kaikoura"}, {"datetaken": "2004-03-19 16:19:56", "license": "3", "title": "PICT5370.JPG", "text": "", "album_id": "72157600179222297", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14033287_ff850a85e0_o.jpg", "secret": "ff850a85e0", "media": "photo", "latitude": "0", "id": "14033287", "tags": "newzealand friend nz southisland kaikoura"}, {"datetaken": "2007-07-05 20:07:55", "license": "4", "title": "birdsIlikebirds", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1038/730283550_3abc0a67b3_o.jpg", "secret": "c5938e30d4", "media": "photo", "latitude": "0", "id": "730283550", "tags": ""}, {"datetaken": "2007-07-05 20:07:57", "license": "4", "title": "boaz", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1259/729422565_09448493fc_o.jpg", "secret": "89b313274e", "media": "photo", "latitude": "0", "id": "729422565", "tags": ""}, {"datetaken": "2007-07-05 20:07:59", "license": "4", "title": "camp", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1421/729422809_0425e68b54_o.jpg", "secret": "cdeace4a63", "media": "photo", "latitude": "0", "id": "729422809", "tags": ""}, {"datetaken": "2007-07-05 20:08:00", "license": "4", "title": "capebuffalo", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1330/730284186_92e7e4b576_o.jpg", "secret": "049a7137d2", "media": "photo", "latitude": "0", "id": "730284186", "tags": ""}, {"datetaken": "2007-07-05 20:08:01", "license": "4", "title": "chris", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1433/729423225_171dd943af_o.jpg", "secret": "ead5540e8b", "media": "photo", "latitude": "0", "id": "729423225", "tags": ""}, {"datetaken": "2007-07-05 20:08:03", "license": "4", "title": "dambosky", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1324/730284542_9c80d51b8e_o.jpg", "secret": "5ad996ac53", "media": "photo", "latitude": "0", "id": "730284542", "tags": ""}, {"datetaken": "2007-07-05 20:08:04", "license": "4", "title": "downtownlusaka", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1229/729423561_58b3ebddbc_o.jpg", "secret": "e173dd1887", "media": "photo", "latitude": "0", "id": "729423561", "tags": ""}, {"datetaken": "2007-07-05 20:08:06", "license": "4", "title": "elephanthiding", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1224/730285034_67367cdf12_o.jpg", "secret": "ab03096013", "media": "photo", "latitude": "0", "id": "730285034", "tags": ""}, {"datetaken": "2007-07-05 20:08:07", "license": "4", "title": "elephants2", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1055/730285228_aae56cbc8a_o.jpg", "secret": "3be4e40430", "media": "photo", "latitude": "0", "id": "730285228", "tags": ""}, {"datetaken": "2007-07-05 20:08:09", "license": "4", "title": "elephantwater", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1414/729424263_f54e78d6ca_o.jpg", "secret": "d69a006184", "media": "photo", "latitude": "0", "id": "729424263", "tags": ""}, {"datetaken": "2007-07-05 20:08:10", "license": "4", "title": "elephantwater2", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1170/730285650_cc527250fe_o.jpg", "secret": "36838d65ec", "media": "photo", "latitude": "0", "id": "730285650", "tags": ""}, {"datetaken": "2007-07-05 20:08:11", "license": "4", "title": "fish1", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1080/730285852_b80bb29289_o.jpg", "secret": "9cfbe72af5", "media": "photo", "latitude": "0", "id": "730285852", "tags": ""}, {"datetaken": "2007-07-05 20:08:12", "license": "4", "title": "fish2", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1210/730286024_f4e7fd05ec_o.jpg", "secret": "16dc0b41a0", "media": "photo", "latitude": "0", "id": "730286024", "tags": ""}, {"datetaken": "2007-07-05 20:08:14", "license": "4", "title": "fromthebank", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1348/729425015_af303148f2_o.jpg", "secret": "d8a0f51f00", "media": "photo", "latitude": "0", "id": "729425015", "tags": ""}, {"datetaken": "2007-07-05 20:08:15", "license": "4", "title": "grantandlynsey", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1340/730286462_94d72cafe1_o.jpg", "secret": "898aa7e553", "media": "photo", "latitude": "0", "id": "730286462", "tags": ""}, {"datetaken": "2007-07-05 20:08:17", "license": "4", "title": "grantandlynsey2", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1381/729425417_6ed073f9be_o.jpg", "secret": "686f918c88", "media": "photo", "latitude": "0", "id": "729425417", "tags": ""}, {"datetaken": "2007-07-05 20:08:18", "license": "4", "title": "grantandmomba", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1434/730286906_ae197107c7_o.jpg", "secret": "906723a55b", "media": "photo", "latitude": "0", "id": "730286906", "tags": ""}, {"datetaken": "2007-07-05 20:08:20", "license": "4", "title": "gwabilodgedock", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1398/729425783_23c08b9911_o.jpg", "secret": "3fd4fc5943", "media": "photo", "latitude": "0", "id": "729425783", "tags": ""}, {"datetaken": "2007-07-05 20:08:21", "license": "4", "title": "gwabilodgefromkafueriver", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1139/730287294_cbcc966554_o.jpg", "secret": "097316caee", "media": "photo", "latitude": "0", "id": "730287294", "tags": ""}, {"datetaken": "2007-07-05 20:08:23", "license": "4", "title": "honeymoon1", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1418/729426255_9c4cbe4663_o.jpg", "secret": "9908fe3c3a", "media": "photo", "latitude": "0", "id": "729426255", "tags": ""}, {"datetaken": "2007-07-05 20:08:25", "license": "4", "title": "honeymoonbest", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1123/729426491_7e59075648_o.jpg", "secret": "cdbe71c500", "media": "photo", "latitude": "0", "id": "729426491", "tags": ""}, {"datetaken": "2007-07-05 20:08:27", "license": "4", "title": "Image23", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1061/730288016_9cab213f9f_o.jpg", "secret": "2ed2a91497", "media": "photo", "latitude": "0", "id": "730288016", "tags": ""}, {"datetaken": "2007-07-05 20:08:31", "license": "4", "title": "Image26", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1268/729427273_e47c3fe6a7_o.jpg", "secret": "f205197933", "media": "photo", "latitude": "0", "id": "729427273", "tags": ""}, {"datetaken": "2007-07-05 20:08:32", "license": "4", "title": "Image27", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1348/729427443_80d258e44b_o.jpg", "secret": "a86ac054b4", "media": "photo", "latitude": "0", "id": "729427443", "tags": ""}, {"datetaken": "2007-07-05 20:08:34", "license": "4", "title": "Image29", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1400/730289066_6f916a95c7_o.jpg", "secret": "c54ce11c3d", "media": "photo", "latitude": "0", "id": "730289066", "tags": ""}, {"datetaken": "2007-07-05 20:08:36", "license": "4", "title": "Image30", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1141/730289216_0ebd450d71_o.jpg", "secret": "cf67ba860b", "media": "photo", "latitude": "0", "id": "730289216", "tags": ""}, {"datetaken": "2007-07-05 20:08:38", "license": "4", "title": "Image31", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1353/730289506_ec1665a7f5_o.jpg", "secret": "92a914d8a2", "media": "photo", "latitude": "0", "id": "730289506", "tags": ""}, {"datetaken": "2007-07-05 20:08:39", "license": "4", "title": "Image32", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1258/729428395_7f03f09e64_o.jpg", "secret": "7ee0aaf9e2", "media": "photo", "latitude": "0", "id": "729428395", "tags": ""}, {"datetaken": "2007-07-05 20:08:40", "license": "4", "title": "Image33", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1378/730289824_43870db72c_o.jpg", "secret": "3e0fa2b671", "media": "photo", "latitude": "0", "id": "730289824", "tags": ""}, {"datetaken": "2007-07-05 20:08:41", "license": "4", "title": "Image34", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1164/730290000_d4c2453c46_o.jpg", "secret": "b098809df2", "media": "photo", "latitude": "0", "id": "730290000", "tags": ""}, {"datetaken": "2007-07-05 20:08:42", "license": "4", "title": "Image35", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1228/730290162_978b306d04_o.jpg", "secret": "300f542e1a", "media": "photo", "latitude": "0", "id": "730290162", "tags": ""}, {"datetaken": "2007-07-05 20:08:43", "license": "4", "title": "Image36", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1433/730290324_b33bb3314e_o.jpg", "secret": "10aadc356e", "media": "photo", "latitude": "0", "id": "730290324", "tags": ""}, {"datetaken": "2007-07-05 20:08:45", "license": "4", "title": "Image37", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1252/730290504_6587b237d8_o.jpg", "secret": "4487d8734c", "media": "photo", "latitude": "0", "id": "730290504", "tags": ""}, {"datetaken": "2007-07-05 20:08:46", "license": "4", "title": "Image38", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1189/730290662_944584298a_o.jpg", "secret": "9dfc681a63", "media": "photo", "latitude": "0", "id": "730290662", "tags": ""}, {"datetaken": "2007-07-05 20:08:50", "license": "4", "title": "Image41", "text": "", "album_id": "72157600667854365", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1154/730291192_b1c57e2c10_o.jpg", "secret": "d802ca2cdb", "media": "photo", "latitude": "0", "id": "730291192", "tags": ""}, {"datetaken": "2010-01-08 18:10:24", "license": "1", "title": "S\u00e9", "text": "", "album_id": "72157623187187220", "longitude": "-7.934854", "url_o": "https://farm5.staticflickr.com/4016/4265837922_120afee37f_o.jpg", "secret": "413021afa6", "media": "photo", "latitude": "37.013399", "id": "4265837922", "tags": "trip travel portugal lomo gimp algarve riaformosa"}, {"datetaken": "2010-01-09 13:03:34", "license": "4", "title": "WTF?", "text": "", "album_id": "72157623187187220", "longitude": "-7.851319", "url_o": "https://farm3.staticflickr.com/2717/4265838500_cfb80fa63d_o.jpg", "secret": "f41f159de3", "media": "photo", "latitude": "37.030394", "id": "4265838500", "tags": "trip travel portugal lomo gimp algarve riaformosa lidl"}, {"datetaken": "2010-01-09 13:04:09", "license": "1", "title": "Bikin'", "text": "", "album_id": "72157623187187220", "longitude": "-7.851319", "url_o": "https://farm3.staticflickr.com/2711/4265091131_a577dc0a65_o.jpg", "secret": "44fca31c99", "media": "photo", "latitude": "37.030394", "id": "4265091131", "tags": "trip travel portugal bike lomo gimp supermarket algarve riaformosa lidl"}, {"datetaken": "2010-01-09 13:56:16", "license": "1", "title": "The Old Fisher", "text": "", "album_id": "72157623187187220", "longitude": "-7.840976", "url_o": "https://farm3.staticflickr.com/2703/4265839826_ff65a10d03_o.jpg", "secret": "5da71da965", "media": "photo", "latitude": "37.024552", "id": "4265839826", "tags": "trip travel portugal boat lomo dock gimp algarve riaformosa"}, {"datetaken": "2010-01-09 16:17:42", "license": "1", "title": "Armona from a Secret Spot", "text": "", "album_id": "72157623187187220", "longitude": "-7.823638", "url_o": "https://farm3.staticflickr.com/2732/4265840524_55df4a5017_o.jpg", "secret": "16ffb2fa0f", "media": "photo", "latitude": "37.029006", "id": "4265840524", "tags": "trip travel portugal lomo dock gimp algarve riaformosa"}, {"datetaken": "2010-01-09 16:18:12", "license": "1", "title": "Secret Spot", "text": "", "album_id": "72157623187187220", "longitude": "-7.823638", "url_o": "https://farm5.staticflickr.com/4031/4265841774_62d115fb1d_o.jpg", "secret": "06d1029bd8", "media": "photo", "latitude": "37.029006", "id": "4265841774", "tags": "trip travel portugal lomo dock gimp algarve riaformosa"}, {"datetaken": "2010-01-09 17:46:19", "license": "1", "title": "Touchin' the sea in January", "text": "", "album_id": "72157623187187220", "longitude": "-7.803382", "url_o": "https://farm5.staticflickr.com/4008/4265094193_f5d0dbe77e_o.jpg", "secret": "3dcf3f0b0f", "media": "photo", "latitude": "37.013861", "id": "4265094193", "tags": "ocean trip travel beach portugal lomo gimp algarve riaformosa"}, {"datetaken": "2010-01-09 17:47:54", "license": "1", "title": "Armona", "text": "", "album_id": "72157623187187220", "longitude": "-7.803382", "url_o": "https://farm5.staticflickr.com/4060/4265843182_73a22954ea_o.jpg", "secret": "12b3d6c347", "media": "photo", "latitude": "37.013861", "id": "4265843182", "tags": "trip travel sun beach portugal lomo gimp algarve riaformosa"}, {"datetaken": "2010-01-09 17:49:21", "license": "1", "title": "Armona", "text": "", "album_id": "72157623187187220", "longitude": "-7.803382", "url_o": "https://farm5.staticflickr.com/4044/4265095743_b471707a46_o.jpg", "secret": "bc0905c4df", "media": "photo", "latitude": "37.013861", "id": "4265095743", "tags": "trip travel beach portugal clouds lomo gimp algarve riaformosa"}, {"datetaken": "2010-01-09 17:50:30", "license": "1", "title": "Armona", "text": "", "album_id": "72157623187187220", "longitude": "-7.803382", "url_o": "https://farm5.staticflickr.com/4036/4265844654_98a53b54c3_o.jpg", "secret": "e20bc0a961", "media": "photo", "latitude": "37.013861", "id": "4265844654", "tags": "trip travel sun beach portugal lomo gimp algarve riaformosa"}, {"datetaken": "2010-01-09 19:11:35", "license": "4", "title": "Super Bock", "text": "", "album_id": "72157623187187220", "longitude": "-7.806644", "url_o": "https://farm5.staticflickr.com/4015/4265845196_4a63482f8c_o.jpg", "secret": "b9b463a2ea", "media": "photo", "latitude": "37.022976", "id": "4265845196", "tags": "trip travel macro portugal beer lomo gimp algarve riaformosa"}, {"datetaken": "2010-01-09 19:18:09", "license": "1", "title": "Armona Sunset", "text": "", "album_id": "72157623187187220", "longitude": "-7.806644", "url_o": "https://farm3.staticflickr.com/2698/4265845514_8fcf068888_o.jpg", "secret": "ea898fd1b4", "media": "photo", "latitude": "37.022976", "id": "4265845514", "tags": "trip travel sunset beach portugal lomo gimp algarve riaformosa"}, {"datetaken": "2010-01-09 19:18:30", "license": "1", "title": "Faro - Olh\u00e3o", "text": "", "album_id": "72157623187187220", "longitude": "-7.806644", "url_o": "https://farm3.staticflickr.com/2695/4265097605_2c193ab1c7_o.jpg", "secret": "ef699376ab", "media": "photo", "latitude": "37.022976", "id": "4265097605", "tags": "trip travel sky portugal clouds lomo gimp algarve riaformosa"}, {"datetaken": "2010-01-09 19:19:16", "license": "1", "title": "Armona Sunset", "text": "", "album_id": "72157623187187220", "longitude": "-7.806644", "url_o": "https://farm3.staticflickr.com/2680/4265097987_8352ea3009_o.jpg", "secret": "cc6cf73549", "media": "photo", "latitude": "37.022976", "id": "4265097987", "tags": "trip travel sunset beach portugal lomo gimp algarve riaformosa"}, {"datetaken": "2010-01-09 19:24:12", "license": "1", "title": "Armona Sunset across the dock", "text": "", "album_id": "72157623187187220", "longitude": "-7.806644", "url_o": "https://farm5.staticflickr.com/4057/4265098257_b491552648_o.jpg", "secret": "5322bf7a32", "media": "photo", "latitude": "37.022976", "id": "4265098257", "tags": "trip travel sunset portugal lomo dock gimp algarve riaformosa"}, {"datetaken": "2010-01-11 13:49:51", "license": "5", "title": "20100111_006.jpg", "text": "", "album_id": "72157623185538744", "longitude": "175.724258", "url_o": "https://farm3.staticflickr.com/2750/4265117180_8773586cce_o.jpg", "secret": "6ed0298495", "media": "photo", "latitude": "-36.720723", "id": "4265117180", "tags": "neuseeland kiwitahi"}, {"datetaken": "2010-01-11 15:44:38", "license": "5", "title": "20100111_009.jpg", "text": "", "album_id": "72157623185538744", "longitude": "175.720138", "url_o": "https://farm5.staticflickr.com/4021/4265120942_ee2a582335_o.jpg", "secret": "b0fdbd4f95", "media": "photo", "latitude": "-36.723612", "id": "4265120942", "tags": "neuseeland kiwitahi"}, {"datetaken": "2010-01-11 15:44:52", "license": "5", "title": "20100111_010.jpg", "text": "", "album_id": "72157623185538744", "longitude": "175.720138", "url_o": "https://farm3.staticflickr.com/2789/4264373471_03b9819b12_o.jpg", "secret": "18c1e2dd43", "media": "photo", "latitude": "-36.723612", "id": "4264373471", "tags": "neuseeland kiwitahi"}, {"datetaken": "2010-01-11 15:45:08", "license": "5", "title": "20100111_011.jpg", "text": "", "album_id": "72157623185538744", "longitude": "175.715277", "url_o": "https://farm3.staticflickr.com/2778/4265126544_e31ebbb4b4_o.jpg", "secret": "c7d25cd5ae", "media": "photo", "latitude": "-36.724723", "id": "4265126544", "tags": "neuseeland kiwitahi"}, {"datetaken": "2010-01-11 15:45:33", "license": "5", "title": "20100111_012.jpg", "text": "", "album_id": "72157623185538744", "longitude": "175.699444", "url_o": "https://farm3.staticflickr.com/2693/4264378913_50685a94a2_o.jpg", "secret": "3782f9836c", "media": "photo", "latitude": "-36.727223", "id": "4264378913", "tags": "neuseeland kiwitahi"}, {"datetaken": "2010-01-11 15:46:49", "license": "5", "title": "20100111_013.jpg", "text": "", "album_id": "72157623185538744", "longitude": "175.708888", "url_o": "https://farm5.staticflickr.com/4041/4265132608_f5e06325f2_o.jpg", "secret": "cdeb4b599c", "media": "photo", "latitude": "-36.727223", "id": "4265132608", "tags": "neuseeland kiwitahi"}, {"datetaken": "2010-01-11 15:47:09", "license": "5", "title": "20100111_014.jpg", "text": "", "album_id": "72157623185538744", "longitude": "175.712499", "url_o": "https://farm3.staticflickr.com/2702/4264384707_57dcafcc71_o.jpg", "secret": "d1d733a21a", "media": "photo", "latitude": "-36.725834", "id": "4264384707", "tags": "neuseeland kiwitahi"}, {"datetaken": "2010-01-11 15:47:25", "license": "5", "title": "20100111_015.jpg", "text": "", "album_id": "72157623185538744", "longitude": "175.715277", "url_o": "https://farm5.staticflickr.com/4036/4264386679_2718f4ca0e_o.jpg", "secret": "5f036505be", "media": "photo", "latitude": "-36.724723", "id": "4264386679", "tags": "neuseeland kiwitahi"}, {"datetaken": "2010-01-11 15:47:37", "license": "5", "title": "20100111_016.jpg", "text": "", "album_id": "72157623185538744", "longitude": "175.729444", "url_o": "https://farm3.staticflickr.com/2729/4265139332_67bdef827f_o.jpg", "secret": "1502a99349", "media": "photo", "latitude": "-36.724723", "id": "4265139332", "tags": "neuseeland kiwitahi"}, {"datetaken": "2010-01-11 15:48:52", "license": "5", "title": "20100111_017.jpg", "text": "", "album_id": "72157623185538744", "longitude": "175.729444", "url_o": "https://farm3.staticflickr.com/2722/4265142184_a8c73aca0f_o.jpg", "secret": "b80d59b69a", "media": "photo", "latitude": "-36.724723", "id": "4265142184", "tags": "neuseeland kiwitahi"}, {"datetaken": "2010-01-11 19:03:57", "license": "5", "title": "First Day at the beach", "text": "", "album_id": "72157623185538744", "longitude": "175.724258", "url_o": "https://farm3.staticflickr.com/2721/4268017374_710f17806d_o.jpg", "secret": "dc7f2ee5b6", "media": "video", "latitude": "-36.720723", "id": "4268017374", "tags": ""}, {"datetaken": "2002-10-01 02:47:10", "license": "2", "title": "IMG_3112", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/8/9169879_301973a1dd_o.jpg", "secret": "301973a1dd", "media": "photo", "latitude": "55.642796", "id": "9169879", "tags": "denmark roskilde domkirke"}, {"datetaken": "2002-10-01 02:47:27", "license": "2", "title": "IMG_3113", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/4/9169888_f2399fefad_o.jpg", "secret": "f2399fefad", "media": "photo", "latitude": "55.642796", "id": "9169888", "tags": "denmark roskilde domkirke"}, {"datetaken": "2002-10-01 02:48:29", "license": "2", "title": "IMG_3114", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/8/9169904_341a8ac231_o.jpg", "secret": "341a8ac231", "media": "photo", "latitude": "55.642796", "id": "9169904", "tags": "denmark roskilde domkirke"}, {"datetaken": "2002-10-01 02:48:36", "license": "2", "title": "IMG_3115", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/8/9169913_3241a8faa8_o.jpg", "secret": "3241a8faa8", "media": "photo", "latitude": "55.642796", "id": "9169913", "tags": "denmark roskilde domkirke"}, {"datetaken": "2002-10-01 02:52:41", "license": "2", "title": "IMG_3116", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/4/9169919_7a809c7411_o.jpg", "secret": "7a809c7411", "media": "photo", "latitude": "55.642796", "id": "9169919", "tags": "denmark roskilde domkirke"}, {"datetaken": "2002-10-01 02:53:30", "license": "2", "title": "IMG_3117", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/7/9169934_274830e690_o.jpg", "secret": "274830e690", "media": "photo", "latitude": "55.642796", "id": "9169934", "tags": "denmark roskilde domkirke"}, {"datetaken": "2002-10-01 02:54:35", "license": "2", "title": "IMG_3118", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/4/9169940_5f039bcc4a_o.jpg", "secret": "5f039bcc4a", "media": "photo", "latitude": "55.642796", "id": "9169940", "tags": "denmark roskilde domkirke mom"}, {"datetaken": "2002-10-01 02:56:25", "license": "2", "title": "IMG_3119", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/6/9169957_8cac91a169_o.jpg", "secret": "8cac91a169", "media": "photo", "latitude": "55.642796", "id": "9169957", "tags": "denmark roskilde domkirke"}, {"datetaken": "2002-10-01 02:56:31", "license": "2", "title": "IMG_3120", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/5/9169965_1f82fd721a_o.jpg", "secret": "1f82fd721a", "media": "photo", "latitude": "55.642796", "id": "9169965", "tags": "denmark roskilde domkirke"}, {"datetaken": "2002-10-01 02:58:22", "license": "2", "title": "IMG_3121", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/6/9169970_aff7763ae1_o.jpg", "secret": "aff7763ae1", "media": "photo", "latitude": "55.642796", "id": "9169970", "tags": "denmark roskilde domkirke"}, {"datetaken": "2002-10-01 02:58:36", "license": "2", "title": "IMG_3122", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/6/9169975_f139eb6e3f_o.jpg", "secret": "f139eb6e3f", "media": "photo", "latitude": "55.642796", "id": "9169975", "tags": "denmark roskilde domkirke"}, {"datetaken": "2002-10-01 02:58:56", "license": "2", "title": "IMG_3123", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/8/9169981_a705d96435_o.jpg", "secret": "a705d96435", "media": "photo", "latitude": "55.642796", "id": "9169981", "tags": "denmark roskilde domkirke"}, {"datetaken": "2002-10-01 02:59:09", "license": "2", "title": "IMG_3124", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/8/9169987_d4ac4ec2b4_o.jpg", "secret": "d4ac4ec2b4", "media": "photo", "latitude": "55.642796", "id": "9169987", "tags": "denmark roskilde domkirke"}, {"datetaken": "2002-10-01 03:00:25", "license": "2", "title": "IMG_3125", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/8/9169997_6e044fbeb5_o.jpg", "secret": "6e044fbeb5", "media": "photo", "latitude": "55.642796", "id": "9169997", "tags": "denmark roskilde domkirke cathedral"}, {"datetaken": "2002-10-01 03:00:34", "license": "2", "title": "IMG_3126", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/4/9170008_f8bbf3e8c8_o.jpg", "secret": "f8bbf3e8c8", "media": "photo", "latitude": "55.642796", "id": "9170008", "tags": "denmark roskilde domkirke cathedral"}, {"datetaken": "2002-10-01 03:01:04", "license": "2", "title": "IMG_3127", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/7/9170019_747e193860_o.jpg", "secret": "747e193860", "media": "photo", "latitude": "55.642796", "id": "9170019", "tags": "denmark roskilde domkirke cathedral"}, {"datetaken": "2002-10-01 03:24:00", "license": "2", "title": "IMG_3128", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/4/9170041_647c46b5e1_o.jpg", "secret": "647c46b5e1", "media": "photo", "latitude": "55.642796", "id": "9170041", "tags": "denmark roskilde domkirke cathedral sky blue"}, {"datetaken": "2002-10-01 03:24:05", "license": "2", "title": "IMG_3129", "text": "", "album_id": "72157600347386579", "longitude": "12.080175", "url_o": "https://farm1.staticflickr.com/4/9170046_8c977caa70_o.jpg", "secret": "8c977caa70", "media": "photo", "latitude": "55.642796", "id": "9170046", "tags": "denmark roskilde domkirke cathedral sky blue"}, {"datetaken": "2002-10-01 03:55:30", "license": "2", "title": "IMG_3130", "text": "", "album_id": "72157600347386579", "longitude": "12.079312", "url_o": "https://farm1.staticflickr.com/4/9170390_689105a06b_o.jpg", "secret": "689105a06b", "media": "photo", "latitude": "55.649886", "id": "9170390", "tags": "denmark roskilde vikingshipmuseum sky sun"}, {"datetaken": "2002-10-01 04:06:43", "license": "2", "title": "The Viking longship - a thoroughbread of the sea", "text": "", "album_id": "72157600347386579", "longitude": "12.080331", "url_o": "https://farm1.staticflickr.com/4/9170404_5d7a7f921d_o.jpg", "secret": "5d7a7f921d", "media": "photo", "latitude": "55.650664", "id": "9170404", "tags": "denmark roskilde vikingshipmuseum"}, {"datetaken": "2002-10-01 04:07:17", "license": "2", "title": "IMG_3132", "text": "", "album_id": "72157600347386579", "longitude": "12.080331", "url_o": "https://farm1.staticflickr.com/5/9170409_fb2c640715_o.jpg", "secret": "fb2c640715", "media": "photo", "latitude": "55.650664", "id": "9170409", "tags": "denmark roskilde vikingshipmuseum"}, {"datetaken": "2002-10-01 04:07:40", "license": "2", "title": "IMG_3133", "text": "", "album_id": "72157600347386579", "longitude": "12.080331", "url_o": "https://farm1.staticflickr.com/7/9170422_02dcb48355_o.jpg", "secret": "02dcb48355", "media": "photo", "latitude": "55.650664", "id": "9170422", "tags": "denmark roskilde vikingshipmuseum"}, {"datetaken": "2002-10-01 04:20:27", "license": "2", "title": "IMG_3134", "text": "", "album_id": "72157600347386579", "longitude": "12.079687", "url_o": "https://farm1.staticflickr.com/5/9170426_467dd160c5_o.jpg", "secret": "467dd160c5", "media": "photo", "latitude": "55.650261", "id": "9170426", "tags": "denmark roskilde vikingshipmuseum boats"}, {"datetaken": "2002-10-01 04:20:48", "license": "2", "title": "IMG_3135", "text": "", "album_id": "72157600347386579", "longitude": "12.079687", "url_o": "https://farm1.staticflickr.com/8/9170438_a7d462b13e_o.jpg", "secret": "a7d462b13e", "media": "photo", "latitude": "55.650261", "id": "9170438", "tags": "denmark roskilde vikingshipmuseum swan"}, {"datetaken": "2002-10-01 04:20:53", "license": "2", "title": "IMG_3136", "text": "", "album_id": "72157600347386579", "longitude": "12.079687", "url_o": "https://farm1.staticflickr.com/4/9170453_3bfbcf1218_o.jpg", "secret": "3bfbcf1218", "media": "photo", "latitude": "55.650261", "id": "9170453", "tags": "denmark roskilde vikingshipmuseum swans"}, {"datetaken": "2002-10-01 04:20:57", "license": "2", "title": "IMG_3137", "text": "", "album_id": "72157600347386579", "longitude": "12.079687", "url_o": "https://farm1.staticflickr.com/5/9170462_6c6d1f952c_o.jpg", "secret": "6c6d1f952c", "media": "photo", "latitude": "55.650261", "id": "9170462", "tags": "denmark roskilde vikingshipmuseum swans"}, {"datetaken": "2002-10-01 04:21:00", "license": "2", "title": "IMG_3138", "text": "", "album_id": "72157600347386579", "longitude": "12.079687", "url_o": "https://farm1.staticflickr.com/8/9170473_1c5877b296_o.jpg", "secret": "1c5877b296", "media": "photo", "latitude": "55.650261", "id": "9170473", "tags": "denmark roskilde vikingshipmuseum swans"}, {"datetaken": "2002-10-01 04:21:09", "license": "2", "title": "IMG_3139", "text": "", "album_id": "72157600347386579", "longitude": "12.079687", "url_o": "https://farm1.staticflickr.com/6/9170479_6bad3ca0b3_o.jpg", "secret": "6bad3ca0b3", "media": "photo", "latitude": "55.650261", "id": "9170479", "tags": "denmark roskilde vikingshipmuseum swans"}, {"datetaken": "2002-10-01 04:22:42", "license": "2", "title": "IMG_3140", "text": "", "album_id": "72157600347386579", "longitude": "12.079923", "url_o": "https://farm1.staticflickr.com/8/9170492_4a9db7da50_o.jpg", "secret": "4a9db7da50", "media": "photo", "latitude": "55.651030", "id": "9170492", "tags": "denmark roskilde vikingshipmuseum boat"}, {"datetaken": "2002-10-01 04:22:56", "license": "2", "title": "IMG_3141", "text": "", "album_id": "72157600347386579", "longitude": "12.079923", "url_o": "https://farm1.staticflickr.com/8/9170501_f4dcdcae99_o.jpg", "secret": "f4dcdcae99", "media": "photo", "latitude": "55.651030", "id": "9170501", "tags": "denmark roskilde vikingshipmuseum boats"}, {"datetaken": "2002-10-01 04:24:45", "license": "2", "title": "IMG_3142", "text": "", "album_id": "72157600347386579", "longitude": "12.079923", "url_o": "https://farm1.staticflickr.com/4/9170525_2d9fa0f3dc_o.jpg", "secret": "2d9fa0f3dc", "media": "photo", "latitude": "55.651030", "id": "9170525", "tags": "denmark roskilde vikingshipmuseum boats"}, {"datetaken": "2002-10-01 04:25:10", "license": "2", "title": "IMG_3143", "text": "", "album_id": "72157600347386579", "longitude": "12.079923", "url_o": "https://farm1.staticflickr.com/4/9170545_c7d162a7c1_o.jpg", "secret": "c7d162a7c1", "media": "photo", "latitude": "55.651030", "id": "9170545", "tags": "denmark roskilde vikingshipmuseum boats"}, {"datetaken": "2002-10-01 05:00:49", "license": "2", "title": "IMG_3144", "text": "", "album_id": "72157600347386579", "longitude": "12.081436", "url_o": "https://farm1.staticflickr.com/7/9170555_45e1f638ec_o.jpg", "secret": "45e1f638ec", "media": "photo", "latitude": "55.650906", "id": "9170555", "tags": "denmark roskilde vikingshipmuseum"}, {"datetaken": "2002-10-01 05:33:57", "license": "2", "title": "IMG_3145", "text": "", "album_id": "72157600347386579", "longitude": "12.081436", "url_o": "https://farm1.staticflickr.com/6/9170566_3b780043b5_o.jpg", "secret": "3b780043b5", "media": "photo", "latitude": "55.650906", "id": "9170566", "tags": "denmark roskilde vikingshipmuseum"}, {"datetaken": "2002-10-01 05:43:25", "license": "4", "title": "IMG_3146", "text": "", "album_id": "72157600347386579", "longitude": "12.081436", "url_o": "https://farm1.staticflickr.com/5/9170571_0bdc59ff65_o.jpg", "secret": "0bdc59ff65", "media": "photo", "latitude": "55.650906", "id": "9170571", "tags": "denmark roskilde vikingshipmuseum"}, {"datetaken": "2002-10-01 05:44:36", "license": "2", "title": "IMG_3148", "text": "", "album_id": "72157600347386579", "longitude": "12.081436", "url_o": "https://farm1.staticflickr.com/8/9170582_bd3ec47ab7_o.jpg", "secret": "bd3ec47ab7", "media": "photo", "latitude": "55.650906", "id": "9170582", "tags": "denmark roskilde vikingshipmuseum"}, {"datetaken": "2002-10-01 06:02:57", "license": "2", "title": "IMG_3149", "text": "", "album_id": "72157600347386579", "longitude": "12.080706", "url_o": "https://farm1.staticflickr.com/8/9170596_611f66c56e_o.jpg", "secret": "611f66c56e", "media": "photo", "latitude": "55.650679", "id": "9170596", "tags": "denmark roskilde vikingshipmuseum grandma"}, {"datetaken": "2002-10-01 06:06:29", "license": "2", "title": "IMG_3150", "text": "", "album_id": "72157600347386579", "longitude": "12.080449", "url_o": "https://farm1.staticflickr.com/7/9170617_6550a14f44_o.jpg", "secret": "6550a14f44", "media": "photo", "latitude": "55.650842", "id": "9170617", "tags": "denmark roskilde vikingshipmuseum"}, {"datetaken": "2002-10-01 06:11:04", "license": "2", "title": "IMG_3152", "text": "", "album_id": "72157600347386579", "longitude": "12.080031", "url_o": "https://farm1.staticflickr.com/4/9170628_527764701f_o.jpg", "secret": "527764701f", "media": "photo", "latitude": "55.650991", "id": "9170628", "tags": "denmark roskilde vikingshipmuseum swans"}, {"datetaken": "2002-10-01 06:11:48", "license": "2", "title": "IMG_3153", "text": "", "album_id": "72157600347386579", "longitude": "12.080031", "url_o": "https://farm1.staticflickr.com/6/9170639_c2db59a4c7_o.jpg", "secret": "c2db59a4c7", "media": "photo", "latitude": "55.650991", "id": "9170639", "tags": "denmark roskilde vikingshipmuseum"}, {"datetaken": "2002-10-01 06:12:55", "license": "2", "title": "IMG_3154", "text": "", "album_id": "72157600347386579", "longitude": "12.080031", "url_o": "https://farm1.staticflickr.com/4/9170646_be4a3cbcbb_o.jpg", "secret": "be4a3cbcbb", "media": "photo", "latitude": "55.650991", "id": "9170646", "tags": "denmark roskilde vikingshipmuseum"}, {"datetaken": "2002-10-01 06:13:20", "license": "2", "title": "IMG_3155", "text": "", "album_id": "72157600347386579", "longitude": "12.080031", "url_o": "https://farm1.staticflickr.com/7/9170652_89ba7cd2b8_o.jpg", "secret": "89ba7cd2b8", "media": "photo", "latitude": "55.650991", "id": "9170652", "tags": "denmark roskilde vikingshipmuseum"}, {"datetaken": "2002-10-01 06:14:53", "license": "2", "title": "IMG_3156", "text": "", "album_id": "72157600347386579", "longitude": "12.080245", "url_o": "https://farm1.staticflickr.com/8/9170659_beacc1e440_o.jpg", "secret": "beacc1e440", "media": "photo", "latitude": "55.650473", "id": "9170659", "tags": "denmark roskilde vikingshipmuseum"}, {"datetaken": "2002-10-01 06:18:09", "license": "2", "title": "IMG_3157", "text": "", "album_id": "72157600347386579", "longitude": "12.079183", "url_o": "https://farm1.staticflickr.com/6/9170664_ce30b6615c_o.jpg", "secret": "ce30b6615c", "media": "photo", "latitude": "55.650034", "id": "9170664", "tags": "denmark roskilde vikingshipmuseum boat"}, {"datetaken": "2002-10-01 06:18:59", "license": "2", "title": "IMG_3158", "text": "", "album_id": "72157600347386579", "longitude": "12.079183", "url_o": "https://farm1.staticflickr.com/5/9170682_0d79bb098c_o.jpg", "secret": "0d79bb098c", "media": "photo", "latitude": "55.650034", "id": "9170682", "tags": "denmark roskilde vikingshipmuseum boat cute"}, {"datetaken": "2005-01-06 02:52:00", "license": "1", "title": "penguins hiding out next to my hotel room", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13498353_9e0d2627cd_o.jpg", "secret": "9e0d2627cd", "media": "photo", "latitude": "0", "id": "13498353", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 04:01:22", "license": "1", "title": "penguins hanging in the shade", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13498462_045ce605ad_o.jpg", "secret": "045ce605ad", "media": "photo", "latitude": "0", "id": "13498462", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:30:13", "license": "1", "title": "people swimming with penguins", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13498281_489ecca2dd_o.jpg", "secret": "489ecca2dd", "media": "photo", "latitude": "0", "id": "13498281", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:30:21", "license": "1", "title": "124_2440", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/13498519_27c73c743e_o.jpg", "secret": "27c73c743e", "media": "photo", "latitude": "0", "id": "13498519", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:30:30", "license": "1", "title": "people swimming with penguins - Boulders Beach", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13498313_6678893f6d_o.jpg", "secret": "6678893f6d", "media": "photo", "latitude": "0", "id": "13498313", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:34:33", "license": "1", "title": "up close and personal", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13498295_ea6f6cbbc2_o.jpg", "secret": "ea6f6cbbc2", "media": "photo", "latitude": "0", "id": "13498295", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:34:46", "license": "1", "title": "penguins", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/13498333_8c829bc4be_o.jpg", "secret": "8c829bc4be", "media": "photo", "latitude": "0", "id": "13498333", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:42:28", "license": "1", "title": "view from road above the beach", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/13498537_7d34f68b56_o.jpg", "secret": "7d34f68b56", "media": "photo", "latitude": "0", "id": "13498537", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:42:39", "license": "1", "title": "view from road above the beach", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13498390_4ba7adec07_o.jpg", "secret": "4ba7adec07", "media": "photo", "latitude": "0", "id": "13498390", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:44:04", "license": "1", "title": "view from road above the beach", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/13498442_8451ff9436_o.jpg", "secret": "8451ff9436", "media": "photo", "latitude": "0", "id": "13498442", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:44:15", "license": "1", "title": "view from road above the beach", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/13498489_cba3ac5114_o.jpg", "secret": "cba3ac5114", "media": "photo", "latitude": "0", "id": "13498489", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:46:07", "license": "1", "title": "lone penguin", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/13497980_c0f005d71e_o.jpg", "secret": "c0f005d71e", "media": "photo", "latitude": "0", "id": "13497980", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:46:55", "license": "1", "title": "penguin colony", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13498023_539a9c32af_o.jpg", "secret": "539a9c32af", "media": "photo", "latitude": "0", "id": "13498023", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:47:16", "license": "1", "title": "more penguins", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/13498188_8922aa378f_o.jpg", "secret": "8922aa378f", "media": "photo", "latitude": "0", "id": "13498188", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:47:23", "license": "1", "title": "penguins down at the water", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/13498213_e96e43d69b_o.jpg", "secret": "e96e43d69b", "media": "photo", "latitude": "0", "id": "13498213", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:47:32", "license": "1", "title": "penguins hanging on the beach", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13498074_14449fc444_o.jpg", "secret": "14449fc444", "media": "photo", "latitude": "0", "id": "13498074", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:48:40", "license": "1", "title": "mama penguin?", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/13498241_5299eb4e20_o.jpg", "secret": "5299eb4e20", "media": "photo", "latitude": "0", "id": "13498241", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:48:50", "license": "1", "title": "waddling/incubating penguins", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/13498165_53f1eb6ea5_o.jpg", "secret": "53f1eb6ea5", "media": "photo", "latitude": "0", "id": "13498165", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:48:59", "license": "1", "title": "penguin colony", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/13498045_5da98ea095_o.jpg", "secret": "5da98ea095", "media": "photo", "latitude": "0", "id": "13498045", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:51:50", "license": "1", "title": "fletcher enjoying the view of the penguins", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/13498117_824c1049fa_o.jpg", "secret": "824c1049fa", "media": "photo", "latitude": "0", "id": "13498117", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-01-06 06:52:30", "license": "1", "title": "tracie at boulders beach with the penguins", "text": "", "album_id": "327855", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/13497994_2893a60d86_o.jpg", "secret": "2893a60d86", "media": "photo", "latitude": "0", "id": "13497994", "tags": "southafrica bouldersbeach penguins beach ocean"}, {"datetaken": "2005-06-12 11:34:11", "license": "1", "title": "IMG_3598.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18825468_4579617e3d_o.jpg", "secret": "4579617e3d", "media": "photo", "latitude": "0", "id": "18825468", "tags": "stkilda melbourne pc3182 sign typography princeofwales hotel"}, {"datetaken": "2005-06-12 11:38:39", "license": "1", "title": "IMG_3602.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18825479_c211a59c37_o.jpg", "secret": "c211a59c37", "media": "photo", "latitude": "0", "id": "18825479", "tags": "stkilda melbourne pc3182 sign orange"}, {"datetaken": "2005-06-12 11:45:11", "license": "1", "title": "IMG_3603.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18825491_3e8692a7a7_o.jpg", "secret": "3e8692a7a7", "media": "photo", "latitude": "0", "id": "18825491", "tags": "stkilda melbourne pc3182 wires sign cutoff"}, {"datetaken": "2005-06-12 11:48:48", "license": "1", "title": "IMG_3606.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18825494_805325ee61_o.jpg", "secret": "805325ee61", "media": "photo", "latitude": "0", "id": "18825494", "tags": "stkilda melbourne pc3182 wires"}, {"datetaken": "2005-06-12 11:51:58", "license": "1", "title": "IMG_3607.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18825517_d99d6bca06_o.jpg", "secret": "d99d6bca06", "media": "photo", "latitude": "0", "id": "18825517", "tags": "stkilda melbourne pc3182 esplanadehotel espy crane"}, {"datetaken": "2005-06-12 11:53:34", "license": "1", "title": "IMG_3609.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18825589_f493cf3c4d_o.jpg", "secret": "f493cf3c4d", "media": "photo", "latitude": "0", "id": "18825589", "tags": "stkilda melbourne pc3182 shadow"}, {"datetaken": "2005-06-12 11:56:09", "license": "1", "title": "IMG_3612.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18825695_b27f20ca97_o.jpg", "secret": "b27f20ca97", "media": "photo", "latitude": "0", "id": "18825695", "tags": "stkilda melbourne pc3182 stencilart"}, {"datetaken": "2005-06-12 11:56:15", "license": "1", "title": "IMG_3613.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18825714_abc836133a_o.jpg", "secret": "abc836133a", "media": "photo", "latitude": "0", "id": "18825714", "tags": "stkilda melbourne pc3182 sign"}, {"datetaken": "2005-06-12 11:56:47", "license": "1", "title": "IMG_3614.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18825720_0f9cf86bd7_o.jpg", "secret": "0f9cf86bd7", "media": "photo", "latitude": "0", "id": "18825720", "tags": "stkilda melbourne pc3182 stencilart"}, {"datetaken": "2005-06-12 11:56:55", "license": "1", "title": "IMG_3615.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18825724_39f6a617ae_o.jpg", "secret": "39f6a617ae", "media": "photo", "latitude": "0", "id": "18825724", "tags": "stkilda melbourne pc3182 stencilart"}, {"datetaken": "2005-06-12 11:57:46", "license": "1", "title": "IMG_3616.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18825848_951f797211_o.jpg", "secret": "951f797211", "media": "photo", "latitude": "0", "id": "18825848", "tags": "stkilda melbourne pc3182 stencilart"}, {"license": "0", "title": "IMG_3617.JPG", "farm": "1", "text": "", "album_id": "447066", "secret": "67fb867069", "longitude": "0", "server": "12", "datetaken": "2005-06-12 11:57:57", "url_m": "https://farm1.staticflickr.com/12/18825858_67fb867069.jpg", "media": "photo", "latitude": "0", "id": "18825858", "tags": "stkilda melbourne pc3182 lian"}, {"datetaken": "2005-06-12 11:58:39", "license": "1", "title": "IMG_3618.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18825963_4989df0e35_o.jpg", "secret": "4989df0e35", "media": "photo", "latitude": "0", "id": "18825963", "tags": "stkilda melbourne pc3182 statue palms light sun"}, {"datetaken": "2005-06-12 12:01:33", "license": "1", "title": "IMG_3620.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18826113_04148141a6_o.jpg", "secret": "04148141a6", "media": "photo", "latitude": "0", "id": "18826113", "tags": "stkildabeach melbourne pc3182"}, {"datetaken": "2005-06-12 12:02:06", "license": "1", "title": "IMG_3621.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18826122_7bfda6a06e_o.jpg", "secret": "7bfda6a06e", "media": "photo", "latitude": "0", "id": "18826122", "tags": "stkildabeach melbourne pc3182 stkildapier vanishingpoint"}, {"datetaken": "2005-06-12 12:02:52", "license": "1", "title": "IMG_3622.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18826129_daa5d637b6_o.jpg", "secret": "daa5d637b6", "media": "photo", "latitude": "0", "id": "18826129", "tags": "stkildabeach melbourne pc3182 sign starfish"}, {"datetaken": "2005-06-12 12:03:59", "license": "1", "title": "IMG_3624.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18826258_5585a09033_o.jpg", "secret": "5585a09033", "media": "photo", "latitude": "0", "id": "18826258", "tags": "stkildapier melbourne pc3182 sign ee"}, {"datetaken": "2005-06-12 12:05:23", "license": "1", "title": "IMG_3627.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18826280_fd4bb13db1_o.jpg", "secret": "fd4bb13db1", "media": "photo", "latitude": "0", "id": "18826280", "tags": "stkildapier melbourne pc3182 sign"}, {"datetaken": "2005-06-12 12:06:04", "license": "1", "title": "IMG_3630.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18826296_26a3d393f3_o.jpg", "secret": "26a3d393f3", "media": "photo", "latitude": "0", "id": "18826296", "tags": "stkildapier melbourne pc3182 sign z"}, {"datetaken": "2005-06-12 12:13:40", "license": "1", "title": "IMG_3636.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18826385_90665d6cc5_o.jpg", "secret": "90665d6cc5", "media": "photo", "latitude": "0", "id": "18826385", "tags": "stkildapier melbourne pc3182 sky cloud water"}, {"datetaken": "2005-06-12 12:14:42", "license": "1", "title": "IMG_3637.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18826548_578dc9745d_o.jpg", "secret": "578dc9745d", "media": "photo", "latitude": "0", "id": "18826548", "tags": "stkildapier melbourne pc3182 boat"}, {"datetaken": "2005-06-12 12:16:09", "license": "1", "title": "IMG_3640.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18826608_1817e7491b_o.jpg", "secret": "1817e7491b", "media": "photo", "latitude": "0", "id": "18826608", "tags": "stkildapier melbourne pc3182 graffiti"}, {"datetaken": "2005-06-12 12:18:28", "license": "1", "title": "IMG_3643.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18826720_78619399de_o.jpg", "secret": "78619399de", "media": "photo", "latitude": "0", "id": "18826720", "tags": "stkildapier melbourne pc3182 seagull"}, {"datetaken": "2005-06-12 12:18:40", "license": "1", "title": "IMG_3645.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18826728_eb57f98fcc_o.jpg", "secret": "eb57f98fcc", "media": "photo", "latitude": "0", "id": "18826728", "tags": "stkildapier melbourne pc3182 seagull"}, {"datetaken": "2005-06-12 12:18:46", "license": "1", "title": "IMG_3646.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18826733_b118ebe423_o.jpg", "secret": "b118ebe423", "media": "photo", "latitude": "0", "id": "18826733", "tags": "stkildapier melbourne pc3182 seagull"}, {"datetaken": "2005-06-12 12:18:48", "license": "1", "title": "IMG_3647.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18826743_542f9ffc51_o.jpg", "secret": "542f9ffc51", "media": "photo", "latitude": "0", "id": "18826743", "tags": "stkildapier melbourne pc3182 seagull"}, {"datetaken": "2005-06-12 12:41:41", "license": "1", "title": "IMG_3650.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18826870_2f6bb65d00_o.jpg", "secret": "2f6bb65d00", "media": "photo", "latitude": "0", "id": "18826870", "tags": "stkilda melbourne pc3182 lunapark"}, {"datetaken": "2005-06-12 12:42:07", "license": "1", "title": "IMG_3651.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18826886_a0fcb85127_o.jpg", "secret": "a0fcb85127", "media": "photo", "latitude": "0", "id": "18826886", "tags": "stkilda melbourne pc3182 lunapark"}, {"datetaken": "2005-06-12 12:43:35", "license": "1", "title": "IMG_3653.JPG", "text": "", "album_id": "447066", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18826899_bebc2f67a4_o.jpg", "secret": "bebc2f67a4", "media": "photo", "latitude": "0", "id": "18826899", "tags": "stkilda melbourne pc3182 palaistheatre"}, {"datetaken": "2005-07-09 08:41:53", "license": "3", "title": "setting out", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25497520_dbfb2fd4f8_o.jpg", "secret": "dbfb2fd4f8", "media": "photo", "latitude": "0", "id": "25497520", "tags": "california marinheadlands steepravine redwood forest ravine hiking"}, {"datetaken": "2005-07-09 09:01:25", "license": "3", "title": "fence", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25497639_d607092271_o.jpg", "secret": "d607092271", "media": "photo", "latitude": "0", "id": "25497639", "tags": "california marinheadlands steepravine redwood forest ravine hiking"}, {"datetaken": "2005-07-09 09:07:51", "license": "3", "title": "they never give up", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25497724_0b6d0bea4a_o.jpg", "secret": "0b6d0bea4a", "media": "photo", "latitude": "0", "id": "25497724", "tags": "california marinheadlands steepravine redwood forest ravine hiking"}, {"datetaken": "2005-07-09 09:17:06", "license": "3", "title": "they might be giants", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25497780_506e218c0c_o.jpg", "secret": "506e218c0c", "media": "photo", "latitude": "0", "id": "25497780", "tags": "california marinheadlands steepravine redwood forest ravine hiking kai"}, {"datetaken": "2005-07-09 09:18:28", "license": "3", "title": "they are", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25497836_f4756bbbea_o.jpg", "secret": "f4756bbbea", "media": "photo", "latitude": "0", "id": "25497836", "tags": "california marinheadlands steepravine redwood forest ravine hiking"}, {"datetaken": "2005-07-09 09:25:32", "license": "3", "title": "bark", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25498135_de34cea86d_o.jpg", "secret": "de34cea86d", "media": "photo", "latitude": "0", "id": "25498135", "tags": "california marinheadlands steepravine redwood forest ravine hiking themetexture texture tree bark"}, {"datetaken": "2005-07-09 09:27:18", "license": "3", "title": "three", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25497934_d35b495aa7_o.jpg", "secret": "d35b495aa7", "media": "photo", "latitude": "0", "id": "25497934", "tags": "california marinheadlands steepravine redwood forest ravine hiking"}, {"datetaken": "2005-07-09 09:41:39", "license": "3", "title": "new growth", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25498052_f31d7d63e1_o.jpg", "secret": "f31d7d63e1", "media": "photo", "latitude": "0", "id": "25498052", "tags": "california marinheadlands steepravine redwood forest ravine hiking"}, {"datetaken": "2005-07-09 10:22:13", "license": "3", "title": "diagonals", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25615410_9cdc17d62b_o.jpg", "secret": "9cdc17d62b", "media": "photo", "latitude": "0", "id": "25615410", "tags": "california steepravine ravine redwood forest hiking"}, {"datetaken": "2005-07-09 10:30:27", "license": "3", "title": "stars", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25615499_ae1baab9e6_o.jpg", "secret": "ae1baab9e6", "media": "photo", "latitude": "0", "id": "25615499", "tags": "california steepravine ravine redwood forest hiking"}, {"datetaken": "2005-07-09 10:35:19", "license": "3", "title": "gate", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25615598_7bb21c4c7b_o.jpg", "secret": "7bb21c4c7b", "media": "photo", "latitude": "0", "id": "25615598", "tags": "california steepravine ravine redwood forest hiking kai"}, {"datetaken": "2005-07-09 10:37:42", "license": "3", "title": "creek", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25615827_103d4c84a5_o.jpg", "secret": "103d4c84a5", "media": "photo", "latitude": "0", "id": "25615827", "tags": "california steepravine ravine redwood forest hiking"}, {"datetaken": "2005-07-09 11:21:13", "license": "3", "title": "fog", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25615956_82597c06fe_o.jpg", "secret": "82597c06fe", "media": "photo", "latitude": "0", "id": "25615956", "tags": "california steepravine cliff pacific ocean coast sea waves beach"}, {"datetaken": "2005-07-09 11:24:42", "license": "3", "title": "garden", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25616170_344160e83c_o.jpg", "secret": "344160e83c", "media": "photo", "latitude": "0", "id": "25616170", "tags": "california steepravine rocks flowers"}, {"datetaken": "2005-07-09 11:30:08", "license": "3", "title": "blue", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25616343_49062263ca_o.jpg", "secret": "49062263ca", "media": "photo", "latitude": "0", "id": "25616343", "tags": "california steepravinecampground pacific ocean coast sea"}, {"datetaken": "2005-07-09 14:30:45", "license": "3", "title": "hottentot fig", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25616424_1589ced620_o.jpg", "secret": "1589ced620", "media": "photo", "latitude": "0", "id": "25616424", "tags": "california steepravinecampground hottentotfig plant succulent macro"}, {"datetaken": "2005-07-09 14:39:51", "license": "3", "title": "cabin crew", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25616649_acc2299e9e_o.jpg", "secret": "acc2299e9e", "media": "photo", "latitude": "0", "id": "25616649", "tags": "california steepravinecampground cabin"}, {"datetaken": "2005-07-09 14:48:33", "license": "3", "title": "slant", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25616781_43125961cd_o.jpg", "secret": "43125961cd", "media": "photo", "latitude": "0", "id": "25616781", "tags": "california steepravinecampground beach pacific ocean coast sea waves pebbles kai"}, {"datetaken": "2005-07-09 14:49:55", "license": "3", "title": "pebbles", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25713863_bd709a1560_o.jpg", "secret": "bd709a1560", "media": "photo", "latitude": "0", "id": "25713863", "tags": "california steepravinecampground pacific ocean sea seaside beach pebbles texture themetexture"}, {"datetaken": "2005-07-09 14:50:44", "license": "3", "title": "driftwood", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25713980_73b38b7fb8_o.jpg", "secret": "73b38b7fb8", "media": "photo", "latitude": "0", "id": "25713980", "tags": "california steepravinecampground pacific ocean sea seaside beach driftwood wood texture themetexture"}, {"datetaken": "2005-07-09 14:52:56", "license": "3", "title": "rocks", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25714056_06e9b91266_o.jpg", "secret": "06e9b91266", "media": "photo", "latitude": "0", "id": "25714056", "tags": "california steepravinecampground pacific ocean sea seaside beach pebbles waves"}, {"datetaken": "2005-07-09 14:53:27", "license": "3", "title": "the rock", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25714173_6ae078c4a8_o.jpg", "secret": "6ae078c4a8", "media": "photo", "latitude": "0", "id": "25714173", "tags": "california steepravinecampground pacific ocean sea seaside beach rock waves"}, {"datetaken": "2005-07-09 14:53:32", "license": "3", "title": "breaking", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25714277_ecc6b2a621_o.jpg", "secret": "ecc6b2a621", "media": "photo", "latitude": "0", "id": "25714277", "tags": "california steepravinecampground pacific ocean sea seaside beach rock waves"}, {"datetaken": "2005-07-09 14:57:37", "license": "3", "title": "creek", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25714481_2149b9848d_o.jpg", "secret": "2149b9848d", "media": "photo", "latitude": "0", "id": "25714481", "tags": "california steepravinecampground pacific ocean sea seaside beach steepravine creek"}, {"datetaken": "2005-07-09 14:59:27", "license": "3", "title": "cove", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25714567_0f642949ce_o.jpg", "secret": "0f642949ce", "media": "photo", "latitude": "0", "id": "25714567", "tags": "california steepravinecampground pacific ocean sea seaside beach"}, {"datetaken": "2005-07-09 15:17:31", "license": "3", "title": "face", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25714649_77c76a0c66_o.jpg", "secret": "77c76a0c66", "media": "photo", "latitude": "0", "id": "25714649", "tags": "california steepravinecampground pacific ocean sea seaside beach"}, {"datetaken": "2005-07-09 15:18:29", "license": "3", "title": "suspended", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25714741_d75b7745d4_o.jpg", "secret": "d75b7745d4", "media": "photo", "latitude": "0", "id": "25714741", "tags": "california steepravinecampground pacific ocean sea seaside beach"}, {"datetaken": "2005-07-09 15:19:17", "license": "3", "title": "resting", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25714709_ba47f1bb3f_o.jpg", "secret": "ba47f1bb3f", "media": "photo", "latitude": "0", "id": "25714709", "tags": "california steepravinecampground pacific ocean sea seaside beach"}, {"datetaken": "2005-07-09 15:20:56", "license": "3", "title": "face II", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27440800_c8bc954155_o.jpg", "secret": "c8bc954155", "media": "photo", "latitude": "0", "id": "27440800", "tags": "california steepravinecampground pacific ocean sea seaside beach pebble stone face"}, {"datetaken": "2005-07-09 15:35:07", "license": "3", "title": "man at work", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27440873_9d4539fba8_o.jpg", "secret": "9d4539fba8", "media": "photo", "latitude": "0", "id": "27440873", "tags": "california steepravinecampground pacific ocean sea seaside beach pebbles kai photodomino"}, {"datetaken": "2005-07-09 15:36:14", "license": "3", "title": "three", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27440945_3430315cde_o.jpg", "secret": "3430315cde", "media": "photo", "latitude": "0", "id": "27440945", "tags": "california steepravinecampground pacific ocean sea seaside beach pebbles"}, {"datetaken": "2005-07-09 15:37:34", "license": "3", "title": "shack", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27441046_e281c3f329_o.jpg", "secret": "e281c3f329", "media": "photo", "latitude": "0", "id": "27441046", "tags": "california steepravinecampground pacific ocean sea seaside beach"}, {"datetaken": "2005-07-09 15:38:49", "license": "1", "title": "driftwood", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27441092_e27eacfc1e_o.jpg", "secret": "e27eacfc1e", "media": "photo", "latitude": "0", "id": "27441092", "tags": "california steepravinecampground pacific ocean sea seaside beach driftwood turquoise pebbles longline ll24"}, {"datetaken": "2005-07-09 15:49:30", "license": "3", "title": "pile", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27441174_c4ce0168a1_o.jpg", "secret": "c4ce0168a1", "media": "photo", "latitude": "0", "id": "27441174", "tags": "california steepravinecampground pacific ocean sea seaside beach pebbles kai"}, {"datetaken": "2005-07-09 15:50:51", "license": "3", "title": "ex-pile", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27441257_e6573fdf21_o.jpg", "secret": "e6573fdf21", "media": "photo", "latitude": "0", "id": "27441257", "tags": "california steepravinecampground pacific ocean sea seaside beach pebbles wave kai"}, {"datetaken": "2005-07-09 16:16:03", "license": "3", "title": "beach", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27440708_c3fbf357cd_o.jpg", "secret": "c3fbf357cd", "media": "photo", "latitude": "0", "id": "27440708", "tags": "california steepravinecampground pacific ocean sea seaside beach"}, {"datetaken": "2005-07-09 16:55:18", "license": "3", "title": "yum", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27441369_5f10ac9429_o.jpg", "secret": "5f10ac9429", "media": "photo", "latitude": "0", "id": "27441369", "tags": "california steepravinecampground pacific ocean sea seaside beach driftwood shack tsunami sushi"}, {"datetaken": "2005-07-10 06:48:01", "license": "3", "title": "time for breakfast", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27589376_91575cf419_o.jpg", "secret": "91575cf419", "media": "photo", "latitude": "0", "id": "27589376", "tags": "california steepravinecampground pacific ocean sea seaside camping breakfast morning fog kai"}, {"datetaken": "2005-07-10 07:26:23", "license": "3", "title": "cannibals", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27589518_0298c70111_o.jpg", "secret": "0298c70111", "media": "photo", "latitude": "0", "id": "27589518", "tags": "california steepravinecampground pacific ocean sea seaside starfish rocks"}, {"datetaken": "2005-07-10 07:27:43", "license": "3", "title": "realm of the starfish", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27590982_1860db0b1c_o.jpg", "secret": "1860db0b1c", "media": "photo", "latitude": "0", "id": "27590982", "tags": "california steepravinecampground pacific ocean sea seaside starfish rocks"}, {"datetaken": "2005-07-10 07:29:31", "license": "3", "title": "one velvet morning", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27591024_e0685abdaa_o.jpg", "secret": "e0685abdaa", "media": "photo", "latitude": "0", "id": "27591024", "tags": "ocean california morning sea fog seaside pacific steepravinecampground 0x6a6a6a"}, {"datetaken": "2005-07-10 11:42:28", "license": "3", "title": "lunch spot", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27591507_1321711223_o.jpg", "secret": "1321711223", "media": "photo", "latitude": "0", "id": "27591507", "tags": "california steepravinecampground pacific ocean sea seaside pine lunch shade"}, {"datetaken": "2005-07-10 12:36:44", "license": "3", "title": "heading home", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27591669_a4a123fa57_o.jpg", "secret": "a4a123fa57", "media": "photo", "latitude": "0", "id": "27591669", "tags": "california steepravinecampground pacific ocean sea seaside hiking backpacking kai"}, {"datetaken": "2005-07-10 12:49:00", "license": "3", "title": "steep ravine campground", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27591824_922c9179fa_o.jpg", "secret": "922c9179fa", "media": "photo", "latitude": "0", "id": "27591824", "tags": "california steepravinecampground pacific ocean sea seaside"}, {"datetaken": "2005-07-10 12:52:54", "license": "3", "title": "the cloud", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27591906_7356a6118a_o.jpg", "secret": "7356a6118a", "media": "photo", "latitude": "0", "id": "27591906", "tags": "california steepravinecampground pacific ocean sea seaside fog cloud reflection water"}, {"datetaken": "2005-07-10 13:02:17", "license": "3", "title": "flora", "text": "", "album_id": "580901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27591966_9e23321d26_o.jpg", "secret": "9e23321d26", "media": "photo", "latitude": "0", "id": "27591966", "tags": "california steepravinecampground pacific ocean sea seaside wildflowers"}, {"datetaken": "2010-01-13 09:12:10", "license": "1", "title": "Panoramica a la fuerza", "text": "", "album_id": "72157623077581621", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4270999615_aabe404df2_o.jpg", "secret": "7245100365", "media": "photo", "latitude": "0", "id": "4270999615", "tags": "viaje peru playa verano vacaciones mancora"}, {"datetaken": "2010-01-13 09:12:51", "license": "1", "title": "Faro de Mancora", "text": "", "album_id": "72157623077581621", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4271000863_5c1b92d269_o.jpg", "secret": "d3d7e27197", "media": "photo", "latitude": "0", "id": "4271000863", "tags": "viaje peru playa verano vacaciones mancora"}, {"datetaken": "2010-01-13 09:13:59", "license": "1", "title": "Atardecer II", "text": "", "album_id": "72157623077581621", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4271002965_72646a0a63_o.jpg", "secret": "fc8170dd03", "media": "photo", "latitude": "0", "id": "4271002965", "tags": "viaje peru playa verano vacaciones mancora"}, {"datetaken": "2010-01-13 09:14:48", "license": "1", "title": "Atardecer I", "text": "", "album_id": "72157623077581621", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4271004509_48c8f5ce55_o.jpg", "secret": "763d01c15d", "media": "photo", "latitude": "0", "id": "4271004509", "tags": "viaje peru playa verano vacaciones mancora"}, {"datetaken": "2010-01-13 09:15:23", "license": "1", "title": "Mirada", "text": "", "album_id": "72157623077581621", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2789/4271005667_608ff92096_o.jpg", "secret": "da2a348dc4", "media": "photo", "latitude": "0", "id": "4271005667", "tags": "viaje peru playa verano vacaciones mancora"}, {"datetaken": "2010-01-13 09:16:04", "license": "1", "title": "Contraluz", "text": "", "album_id": "72157623077581621", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4271752642_682023450c_o.jpg", "secret": "d5efafbfa5", "media": "photo", "latitude": "0", "id": "4271752642", "tags": "viaje peru playa verano vacaciones mancora"}, {"datetaken": "2010-01-13 09:16:37", "license": "1", "title": "33/8", "text": "", "album_id": "72157623077581621", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4271753692_2464f47e78_o.jpg", "secret": "7db97ea0d4", "media": "photo", "latitude": "0", "id": "4271753692", "tags": "viaje peru playa verano vacaciones mancora"}, {"datetaken": "2010-01-13 09:17:10", "license": "1", "title": "Woooooh!", "text": "", "album_id": "72157623077581621", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4271008795_01a9a61011_o.jpg", "secret": "8336523695", "media": "photo", "latitude": "0", "id": "4271008795", "tags": "viaje peru playa verano vacaciones mancora"}, {"datetaken": "2010-01-13 09:17:47", "license": "1", "title": "\u00bfPa' donde vas?", "text": "", "album_id": "72157623077581621", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4271755814_abaf4bfdd5_o.jpg", "secret": "8a394d3b5d", "media": "photo", "latitude": "0", "id": "4271755814", "tags": "viaje peru playa verano vacaciones mancora"}, {"datetaken": "2010-01-13 09:18:37", "license": "1", "title": "De una hizo amigos", "text": "", "album_id": "72157623077581621", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4271011621_aa842f0e60_o.jpg", "secret": "838268fed2", "media": "photo", "latitude": "0", "id": "4271011621", "tags": "viaje peru playa verano vacaciones mancora"}, {"datetaken": "2010-01-13 09:19:31", "license": "1", "title": "Su primera vez en bodyboard", "text": "", "album_id": "72157623077581621", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2684/4271013447_d630e81fb5_o.jpg", "secret": "bdb598795d", "media": "photo", "latitude": "0", "id": "4271013447", "tags": "viaje peru playa verano vacaciones mancora"}, {"datetaken": "2010-01-08 13:17:07", "license": "3", "title": "Kinda why we went to Florida", "text": "", "album_id": "72157623078574347", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2537/4272118200_62917ebaa6_o.jpg", "secret": "d15388019f", "media": "photo", "latitude": "0", "id": "4272118200", "tags": ""}, {"datetaken": "2010-01-08 14:50:24", "license": "3", "title": "Miami Beach beach", "text": "", "album_id": "72157623078574347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4272118584_3b7655e616_o.jpg", "secret": "454b80fac7", "media": "photo", "latitude": "0", "id": "4272118584", "tags": ""}, {"datetaken": "2010-01-08 14:50:51", "license": "3", "title": "what I do at the beach", "text": "", "album_id": "72157623078574347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4271376273_8dbc65823a_o.jpg", "secret": "45d4879da5", "media": "photo", "latitude": "0", "id": "4271376273", "tags": ""}, {"datetaken": "2010-01-08 15:35:57", "license": "3", "title": "Still life", "text": "", "album_id": "72157623078574347", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4271376563_f767b1b5d7_o.jpg", "secret": "d2b181c046", "media": "photo", "latitude": "0", "id": "4271376563", "tags": ""}, {"datetaken": "2010-01-08 15:36:26", "license": "3", "title": "Miami color", "text": "", "album_id": "72157623078574347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4271376965_5f0fe97e4c_o.jpg", "secret": "31ccbf0d03", "media": "photo", "latitude": "0", "id": "4271376965", "tags": ""}, {"datetaken": "2010-01-08 15:47:51", "license": "3", "title": "Wheee!", "text": "", "album_id": "72157623078574347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4272119968_7b26e19f4a_o.jpg", "secret": "39dd4180e0", "media": "photo", "latitude": "0", "id": "4272119968", "tags": ""}, {"datetaken": "2010-01-08 15:50:32", "license": "3", "title": "beach bunnies and dirty old man", "text": "", "album_id": "72157623078574347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4272120280_cfc3c39036_o.jpg", "secret": "a2b9e7cf68", "media": "photo", "latitude": "0", "id": "4272120280", "tags": ""}, {"datetaken": "2010-01-08 15:50:43", "license": "3", "title": "HA", "text": "", "album_id": "72157623078574347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4272120598_bda96247e2_o.jpg", "secret": "5df39238d0", "media": "photo", "latitude": "0", "id": "4272120598", "tags": ""}, {"datetaken": "2010-01-08 16:30:46", "license": "3", "title": "Another pretty building", "text": "", "album_id": "72157623078574347", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2793/4272121026_fc415c596f_o.jpg", "secret": "de78737863", "media": "photo", "latitude": "0", "id": "4272121026", "tags": ""}, {"datetaken": "2010-01-08 17:01:21", "license": "3", "title": "Pretty building", "text": "", "album_id": "72157623078574347", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4271378835_bc4398b772_o.jpg", "secret": "8de47ee7b1", "media": "photo", "latitude": "0", "id": "4271378835", "tags": ""}, {"datetaken": "2010-01-02 07:28:21", "license": "1", "title": "table mountain", "text": "", "album_id": "72157623079379785", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4272416936_56cc0a768f_o.jpg", "secret": "78222e65da", "media": "photo", "latitude": "0", "id": "4272416936", "tags": ""}, {"datetaken": "2010-01-02 11:37:07", "license": "1", "title": "lions head", "text": "", "album_id": "72157623079379785", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4271674115_16d86e0036_o.jpg", "secret": "71c14411ed", "media": "photo", "latitude": "0", "id": "4271674115", "tags": ""}, {"datetaken": "2010-01-02 11:47:44", "license": "1", "title": "@la med", "text": "", "album_id": "72157623079379785", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4272417946_6def68e111_o.jpg", "secret": "065d17fefd", "media": "photo", "latitude": "0", "id": "4272417946", "tags": ""}, {"datetaken": "2010-01-02 12:48:12", "license": "1", "title": "sundowners @la med", "text": "", "album_id": "72157623079379785", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2710/4272419044_2d3dbd9394_o.jpg", "secret": "46a95b475a", "media": "photo", "latitude": "0", "id": "4272419044", "tags": ""}, {"datetaken": "2010-01-02 12:52:27", "license": "1", "title": "@clifton", "text": "", "album_id": "72157623079379785", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2682/4271676069_8d42419656_o.jpg", "secret": "0973e65e44", "media": "photo", "latitude": "0", "id": "4271676069", "tags": ""}, {"datetaken": "2010-01-02 12:54:49", "license": "1", "title": "i'm so tall", "text": "", "album_id": "72157623079379785", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4271676931_9cb377acc0_o.jpg", "secret": "b817d98973", "media": "photo", "latitude": "0", "id": "4271676931", "tags": ""}, {"datetaken": "2010-01-02 12:55:11", "license": "1", "title": "G kicks my shadow", "text": "", "album_id": "72157623079379785", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4272421118_1da581ce85_o.jpg", "secret": "ee1a657663", "media": "photo", "latitude": "0", "id": "4272421118", "tags": ""}, {"datetaken": "2010-01-02 12:58:00", "license": "1", "title": "@clifton", "text": "", "album_id": "72157623079379785", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4272421596_60d986deda_o.jpg", "secret": "f98fdbe6f5", "media": "photo", "latitude": "0", "id": "4272421596", "tags": ""}, {"datetaken": "2010-01-02 12:59:49", "license": "1", "title": "@clifton", "text": "", "album_id": "72157623079379785", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2703/4271678893_b2e4fd3e84_o.jpg", "secret": "76a8fc65e1", "media": "photo", "latitude": "0", "id": "4271678893", "tags": ""}, {"datetaken": "2010-01-02 13:06:25", "license": "1", "title": "clifton 4th", "text": "", "album_id": "72157623079379785", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2716/4271680667_e2a06999fd_o.jpg", "secret": "300512019a", "media": "photo", "latitude": "0", "id": "4271680667", "tags": ""}, {"datetaken": "2010-01-02 13:09:53", "license": "1", "title": "@clifton", "text": "", "album_id": "72157623079379785", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4271680859_7335a602e8_o.jpg", "secret": "ecf962afa5", "media": "photo", "latitude": "0", "id": "4271680859", "tags": ""}, {"datetaken": "2010-01-02 13:10:02", "license": "1", "title": "@clifton", "text": "", "album_id": "72157623079379785", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4272424516_23e3f8de84_o.jpg", "secret": "184bdc436b", "media": "photo", "latitude": "0", "id": "4272424516", "tags": ""}, {"datetaken": "2010-01-02 13:10:05", "license": "1", "title": "@clifton", "text": "", "album_id": "72157623079379785", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4271681683_11807cabe9_o.jpg", "secret": "822e99f24e", "media": "photo", "latitude": "0", "id": "4271681683", "tags": ""}, {"datetaken": "2010-01-02 13:10:11", "license": "1", "title": "clifton 3rd i think", "text": "", "album_id": "72157623079379785", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4272425508_0d133ebf55_o.jpg", "secret": "c5b0c20516", "media": "photo", "latitude": "0", "id": "4272425508", "tags": ""}, {"datetaken": "2010-01-02 13:16:16", "license": "1", "title": "couple seen along clifton beaches", "text": "", "album_id": "72157623079379785", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4271682571_aaa8fdb95a_o.jpg", "secret": "ed0d3a4ba8", "media": "photo", "latitude": "0", "id": "4271682571", "tags": ""}, {"datetaken": "2010-01-02 13:16:21", "license": "1", "title": "past clifton 1st", "text": "", "album_id": "72157623079379785", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4272426186_3e4a10c748_o.jpg", "secret": "9ce6097a2d", "media": "photo", "latitude": "0", "id": "4272426186", "tags": ""}, {"datetaken": "2010-01-02 14:20:32", "license": "1", "title": "pool = good times", "text": "", "album_id": "72157623079379785", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2702/4272426994_2d85736ecb_o.jpg", "secret": "8feb6e6469", "media": "photo", "latitude": "0", "id": "4272426994", "tags": ""}, {"datetaken": "2010-01-09 11:33:46", "license": "1", "title": "Abominable snowgirl 007", "text": "", "album_id": "72157623080334209", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4272734342_febf20878e_o.jpg", "secret": "b88df9e0d6", "media": "photo", "latitude": "0", "id": "4272734342", "tags": "snow fizzy bygrave"}, {"datetaken": "2010-01-09 11:38:38", "license": "1", "title": "mush 010", "text": "", "album_id": "72157623080334209", "longitude": "-0.164108", "url_o": "https://farm5.staticflickr.com/4014/4271992929_b8392d2e35_o.jpg", "secret": "fba3d21c69", "media": "photo", "latitude": "52.014340", "id": "4271992929", "tags": "snow fizzy bygrave"}, {"datetaken": "2010-01-09 11:41:34", "license": "1", "title": "snow angel 016", "text": "", "album_id": "72157623080334209", "longitude": "-0.163335", "url_o": "https://farm3.staticflickr.com/2774/4271996095_6bc0546edd_o.jpg", "secret": "178d901ee6", "media": "photo", "latitude": "52.022580", "id": "4271996095", "tags": "snow fizzy bygrave"}, {"datetaken": "2010-01-09 11:42:00", "license": "1", "title": "snow angel 017", "text": "", "album_id": "72157623080334209", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4272738786_6126bd0a9c_o.jpg", "secret": "56d638678c", "media": "photo", "latitude": "0", "id": "4272738786", "tags": "snow fizzy bygrave"}, {"datetaken": "2010-01-09 11:42:25", "license": "1", "title": "snow 018", "text": "", "album_id": "72157623080334209", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4271997031_e57f3c348c_o.jpg", "secret": "c504b74cf0", "media": "photo", "latitude": "0", "id": "4271997031", "tags": "snow fizzy bygrave"}, {"datetaken": "2010-01-09 11:54:48", "license": "1", "title": "snow 019", "text": "", "album_id": "72157623080334209", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4271997469_b65dfc8106_o.jpg", "secret": "f67bfefcd2", "media": "photo", "latitude": "0", "id": "4271997469", "tags": "snow fizzy bygrave"}, {"datetaken": "2010-01-09 11:57:13", "license": "1", "title": "Footsteps in the snow 020", "text": "", "album_id": "72157623080334209", "longitude": "-0.161275", "url_o": "https://farm3.staticflickr.com/2761/4272740182_7012778607_o.jpg", "secret": "300520c549", "media": "photo", "latitude": "52.025009", "id": "4272740182", "tags": "snow fizzy bygrave"}, {"datetaken": "2010-01-09 13:10:13", "license": "1", "title": "Ashwell 021", "text": "", "album_id": "72157623080334209", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2732/4272735452_ca4cd42c4b_o.jpg", "secret": "78fbb87a92", "media": "photo", "latitude": "0", "id": "4272735452", "tags": "snow ashwell"}, {"datetaken": "2010-01-09 13:10:28", "license": "1", "title": "Ashwell Museum 022", "text": "", "album_id": "72157623080334209", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2710/4271993903_cd9aa3dd7e_o.jpg", "secret": "761eb29797", "media": "photo", "latitude": "0", "id": "4271993903", "tags": "snow ashwell"}, {"datetaken": "2010-01-09 13:13:42", "license": "1", "title": "Ashwell 026", "text": "", "album_id": "72157623080334209", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2792/4271994317_5d2b6a988f_o.jpg", "secret": "5b8999a6bf", "media": "photo", "latitude": "0", "id": "4271994317", "tags": "snow ashwell"}, {"datetaken": "2010-01-09 13:15:24", "license": "1", "title": "Ashwell Church 027", "text": "", "album_id": "72157623080334209", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2717/4272736950_87b788e06a_o.jpg", "secret": "42082d0cd8", "media": "photo", "latitude": "0", "id": "4272736950", "tags": "snow ashwell"}, {"datetaken": "2010-01-09 13:21:11", "license": "1", "title": "Ashwell Springs 028", "text": "", "album_id": "72157623080334209", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4271995181_d79990ff29_o.jpg", "secret": "a949e37e10", "media": "photo", "latitude": "0", "id": "4271995181", "tags": "snow ashwell ashwellsprings"}, {"datetaken": "2010-01-09 13:22:38", "license": "1", "title": "Ashwell Springs 029", "text": "", "album_id": "72157623080334209", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4272737852_58dcbaf8ac_o.jpg", "secret": "d8b1496483", "media": "photo", "latitude": "0", "id": "4272737852", "tags": "snow ashwell ashwellsprings"}, {"datetaken": "2010-01-09 15:11:29", "license": "1", "title": "snow 031", "text": "", "album_id": "72157623080334209", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4272740608_51da9da19b_o.jpg", "secret": "6af589a8f9", "media": "photo", "latitude": "0", "id": "4272740608", "tags": "snow bygrave"}, {"datetaken": "2000-01-08 17:59:46", "license": "4", "title": "DSCF0004", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9359440_05bf1529f6_o.jpg", "secret": "05bf1529f6", "media": "photo", "latitude": "0", "id": "9359440", "tags": "australia trip"}, {"datetaken": "2000-01-08 18:03:57", "license": "4", "title": "DSCF0007", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9359443_92a588f4a7_o.jpg", "secret": "92a588f4a7", "media": "photo", "latitude": "0", "id": "9359443", "tags": "australia trip"}, {"datetaken": "2000-01-08 18:35:34", "license": "4", "title": "DSCF0011", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9359445_58c07b9a03_o.jpg", "secret": "58c07b9a03", "media": "photo", "latitude": "0", "id": "9359445", "tags": "australia trip"}, {"datetaken": "2000-01-08 18:36:01", "license": "4", "title": "DSCF0012", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9359451_96089f7210_o.jpg", "secret": "96089f7210", "media": "photo", "latitude": "0", "id": "9359451", "tags": "australia trip"}, {"datetaken": "2000-01-08 18:38:36", "license": "4", "title": "DSCF0013", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9359457_c04f82476a_o.jpg", "secret": "c04f82476a", "media": "photo", "latitude": "0", "id": "9359457", "tags": "australia trip"}, {"datetaken": "2000-01-08 18:38:55", "license": "4", "title": "DSCF0015", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9359463_d97432cec8_o.jpg", "secret": "d97432cec8", "media": "photo", "latitude": "0", "id": "9359463", "tags": "australia trip"}, {"datetaken": "2000-01-08 18:40:56", "license": "4", "title": "DSCF0016", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9359475_ddb939b33c_o.jpg", "secret": "ddb939b33c", "media": "photo", "latitude": "0", "id": "9359475", "tags": "australia trip"}, {"datetaken": "2000-01-09 06:16:14", "license": "4", "title": "DSCF0017", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9359478_2c0d4c0d7e_o.jpg", "secret": "2c0d4c0d7e", "media": "photo", "latitude": "0", "id": "9359478", "tags": "australia trip"}, {"datetaken": "2000-01-09 06:16:57", "license": "4", "title": "DSCF0018", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9359485_280185c5af_o.jpg", "secret": "280185c5af", "media": "photo", "latitude": "0", "id": "9359485", "tags": "australia trip"}, {"datetaken": "2000-01-09 06:17:55", "license": "4", "title": "DSCF0019", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9359492_1cd255a41e_o.jpg", "secret": "1cd255a41e", "media": "photo", "latitude": "0", "id": "9359492", "tags": "australia trip"}, {"datetaken": "2000-01-09 06:51:27", "license": "4", "title": "DSCF0020", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9359377_6397aa7913_o.jpg", "secret": "6397aa7913", "media": "photo", "latitude": "0", "id": "9359377", "tags": "australia trip"}, {"datetaken": "2000-01-09 06:53:52", "license": "4", "title": "DSCF0022", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9359383_cbb1752984_o.jpg", "secret": "cbb1752984", "media": "photo", "latitude": "0", "id": "9359383", "tags": "australia trip"}, {"datetaken": "2000-01-09 08:29:01", "license": "4", "title": "DSCF0024", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9359386_932827e4fc_o.jpg", "secret": "932827e4fc", "media": "photo", "latitude": "0", "id": "9359386", "tags": "australia trip"}, {"datetaken": "2000-01-09 08:38:16", "license": "4", "title": "DSCF0025", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9359397_4bf277911c_o.jpg", "secret": "4bf277911c", "media": "photo", "latitude": "0", "id": "9359397", "tags": "australia trip"}, {"datetaken": "2000-01-09 09:00:24", "license": "4", "title": "DSCF0026", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9359401_509f77255c_o.jpg", "secret": "509f77255c", "media": "photo", "latitude": "0", "id": "9359401", "tags": "australia trip"}, {"datetaken": "2000-01-09 09:04:30", "license": "4", "title": "DSCF0027", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9359404_22a939e91b_o.jpg", "secret": "22a939e91b", "media": "photo", "latitude": "0", "id": "9359404", "tags": "australia trip"}, {"datetaken": "2000-01-09 09:09:21", "license": "4", "title": "DSCF0028", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9359407_8dabdc0232_o.jpg", "secret": "8dabdc0232", "media": "photo", "latitude": "0", "id": "9359407", "tags": "australia trip"}, {"datetaken": "2000-01-09 09:09:31", "license": "4", "title": "DSCF0029", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9359408_81762aa7a0_o.jpg", "secret": "81762aa7a0", "media": "photo", "latitude": "0", "id": "9359408", "tags": "australia trip"}, {"datetaken": "2000-01-09 09:09:59", "license": "4", "title": "DSCF0031", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9359410_51c0ab90d6_o.jpg", "secret": "51c0ab90d6", "media": "photo", "latitude": "0", "id": "9359410", "tags": "australia trip"}, {"datetaken": "2000-01-09 09:10:11", "license": "4", "title": "DSCF0032", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9359415_77f1fd749c_o.jpg", "secret": "77f1fd749c", "media": "photo", "latitude": "0", "id": "9359415", "tags": "australia trip"}, {"datetaken": "2000-01-09 09:10:25", "license": "4", "title": "DSCF0033", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9359417_34888ce1ca_o.jpg", "secret": "34888ce1ca", "media": "photo", "latitude": "0", "id": "9359417", "tags": "australia trip"}, {"datetaken": "2000-01-09 09:17:30", "license": "4", "title": "DSCF0034", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9359421_513a709d15_o.jpg", "secret": "513a709d15", "media": "photo", "latitude": "0", "id": "9359421", "tags": "australia trip"}, {"datetaken": "2000-01-09 09:17:54", "license": "4", "title": "DSCF0035", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9359425_33bdf5151d_o.jpg", "secret": "33bdf5151d", "media": "photo", "latitude": "0", "id": "9359425", "tags": "australia trip"}, {"datetaken": "2000-01-09 09:24:55", "license": "4", "title": "DSCF0036", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9359435_adce5038ef_o.jpg", "secret": "adce5038ef", "media": "photo", "latitude": "0", "id": "9359435", "tags": "australia trip"}, {"datetaken": "2000-01-09 09:25:16", "license": "4", "title": "DSCF0037", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9359000_bda79289cf_o.jpg", "secret": "bda79289cf", "media": "photo", "latitude": "0", "id": "9359000", "tags": "austraila trip"}, {"datetaken": "2000-01-09 09:25:34", "license": "4", "title": "DSCF0038", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9359002_de7abeb8d0_o.jpg", "secret": "de7abeb8d0", "media": "photo", "latitude": "0", "id": "9359002", "tags": "austraila trip"}, {"datetaken": "2000-01-09 09:35:43", "license": "4", "title": "DSCF0039", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9358916_31676d92b5_o.jpg", "secret": "31676d92b5", "media": "photo", "latitude": "0", "id": "9358916", "tags": "austraila trip"}, {"datetaken": "2000-01-09 09:36:08", "license": "4", "title": "DSCF0040", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9358918_620f626874_o.jpg", "secret": "620f626874", "media": "photo", "latitude": "0", "id": "9358918", "tags": "austraila trip"}, {"datetaken": "2000-01-09 09:36:09", "license": "4", "title": "DSCF0041", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9358920_71898a500f_o.jpg", "secret": "71898a500f", "media": "photo", "latitude": "0", "id": "9358920", "tags": "austraila trip"}, {"datetaken": "2000-01-09 09:37:19", "license": "4", "title": "DSCF0042", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9358923_4b3e10921e_o.jpg", "secret": "4b3e10921e", "media": "photo", "latitude": "0", "id": "9358923", "tags": "austraila trip"}, {"datetaken": "2000-01-09 09:42:49", "license": "4", "title": "DSCF0043", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9358929_d3d6c89f85_o.jpg", "secret": "d3d6c89f85", "media": "photo", "latitude": "0", "id": "9358929", "tags": "austraila trip"}, {"datetaken": "2000-01-09 09:43:58", "license": "4", "title": "DSCF0044", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9358931_b9e5a4157b_o.jpg", "secret": "b9e5a4157b", "media": "photo", "latitude": "0", "id": "9358931", "tags": "austraila trip"}, {"datetaken": "2000-01-09 09:45:10", "license": "4", "title": "DSCF0045", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9358934_69b28910f0_o.jpg", "secret": "69b28910f0", "media": "photo", "latitude": "0", "id": "9358934", "tags": "austraila trip"}, {"datetaken": "2000-01-09 10:57:44", "license": "4", "title": "DSCF0046", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9358942_59655b3ea9_o.jpg", "secret": "59655b3ea9", "media": "photo", "latitude": "0", "id": "9358942", "tags": "austraila trip"}, {"datetaken": "2000-01-09 11:32:55", "license": "4", "title": "DSCF0047", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9358950_d3ee001325_o.jpg", "secret": "d3ee001325", "media": "photo", "latitude": "0", "id": "9358950", "tags": "austraila trip"}, {"datetaken": "2000-01-09 11:33:06", "license": "4", "title": "DSCF0048", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9358953_7d02de1b6c_o.jpg", "secret": "7d02de1b6c", "media": "photo", "latitude": "0", "id": "9358953", "tags": "austraila trip"}, {"datetaken": "2000-01-09 11:45:48", "license": "4", "title": "DSCF0050", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9358956_e5a40c9b42_o.jpg", "secret": "e5a40c9b42", "media": "photo", "latitude": "0", "id": "9358956", "tags": "austraila trip"}, {"datetaken": "2000-01-09 12:34:22", "license": "4", "title": "DSCF0054", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9358957_7343f8e297_o.jpg", "secret": "7343f8e297", "media": "photo", "latitude": "0", "id": "9358957", "tags": "austraila trip"}, {"datetaken": "2000-01-09 12:35:11", "license": "4", "title": "DSCF0055", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9358961_accb45120d_o.jpg", "secret": "accb45120d", "media": "photo", "latitude": "0", "id": "9358961", "tags": "austraila trip"}, {"datetaken": "2000-01-09 12:37:14", "license": "4", "title": "DSCF0056", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9358964_2e8c34c860_o.jpg", "secret": "2e8c34c860", "media": "photo", "latitude": "0", "id": "9358964", "tags": "austraila trip"}, {"datetaken": "2000-01-09 13:34:46", "license": "4", "title": "DSCF0057", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9358973_4416704bf3_o.jpg", "secret": "4416704bf3", "media": "photo", "latitude": "0", "id": "9358973", "tags": "austraila trip"}, {"datetaken": "2000-01-09 13:53:55", "license": "4", "title": "DSCF0058", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9358977_fe650b994a_o.jpg", "secret": "fe650b994a", "media": "photo", "latitude": "0", "id": "9358977", "tags": "austraila trip"}, {"datetaken": "2000-01-09 13:55:56", "license": "4", "title": "DSCF0059", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9358983_f37d947e17_o.jpg", "secret": "f37d947e17", "media": "photo", "latitude": "0", "id": "9358983", "tags": "austraila trip"}, {"datetaken": "2000-01-09 13:57:48", "license": "4", "title": "DSCF0060", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9358986_c1f28a6b20_o.jpg", "secret": "c1f28a6b20", "media": "photo", "latitude": "0", "id": "9358986", "tags": "austraila trip"}, {"datetaken": "2000-01-09 14:02:10", "license": "4", "title": "DSCF0062", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9358988_6b7f098d86_o.jpg", "secret": "6b7f098d86", "media": "photo", "latitude": "0", "id": "9358988", "tags": "austraila trip"}, {"datetaken": "2000-01-09 16:15:50", "license": "4", "title": "DSCF0064", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9358993_d9610bd934_o.jpg", "secret": "d9610bd934", "media": "photo", "latitude": "0", "id": "9358993", "tags": "austraila trip"}, {"datetaken": "2000-01-09 16:16:43", "license": "4", "title": "DSCF0066", "text": "", "album_id": "765227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9358999_f2a705ec89_o.jpg", "secret": "f2a705ec89", "media": "photo", "latitude": "0", "id": "9358999", "tags": "austraila trip"}, {"datetaken": "2005-01-22 11:53:06", "license": "5", "title": "Wendy bringing out the cookies", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4780292_c30e70fcc9_o.jpg", "secret": "c30e70fcc9", "media": "photo", "latitude": "0", "id": "4780292", "tags": "2005 family wendy"}, {"datetaken": "2005-01-22 11:58:29", "license": "5", "title": "calla lilies", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4780300_1092ca3c4e_o.jpg", "secret": "1092ca3c4e", "media": "photo", "latitude": "0", "id": "4780300", "tags": "2005 family flowers callalilies"}, {"datetaken": "2005-01-22 12:20:05", "license": "5", "title": "Mokele", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4780011_dd50ff9f5a_o.jpg", "secret": "dd50ff9f5a", "media": "photo", "latitude": "0", "id": "4780011", "tags": "2005 family"}, {"datetaken": "2005-01-22 12:20:23", "license": "5", "title": "Mokele and Kelly", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4780024_827f5d1e94_o.jpg", "secret": "827f5d1e94", "media": "photo", "latitude": "0", "id": "4780024", "tags": "2005 family"}, {"datetaken": "2005-01-22 12:22:02", "license": "5", "title": "wendy", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4780039_81bbf87e4a_o.jpg", "secret": "81bbf87e4a", "media": "photo", "latitude": "0", "id": "4780039", "tags": "2005 family wendy"}, {"datetaken": "2005-01-22 12:28:04", "license": "5", "title": "hungry hippo", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4780054_8043e0880d_o.jpg", "secret": "8043e0880d", "media": "photo", "latitude": "0", "id": "4780054", "tags": "2005 family mokele"}, {"datetaken": "2005-01-22 13:17:16", "license": "5", "title": "where does the car go?", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4780067_33beaedf97_o.jpg", "secret": "33beaedf97", "media": "photo", "latitude": "0", "id": "4780067", "tags": "2005 family"}, {"datetaken": "2005-01-22 13:18:03", "license": "5", "title": "the garage", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4780081_647bcdaf9f_o.jpg", "secret": "647bcdaf9f", "media": "photo", "latitude": "0", "id": "4780081", "tags": "2005 family"}, {"datetaken": "2005-01-22 13:50:34", "license": "5", "title": "my family", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4780095_b7c7bd165c_o.jpg", "secret": "b7c7bd165c", "media": "photo", "latitude": "0", "id": "4780095", "tags": "2005 family"}, {"datetaken": "2005-01-22 13:50:51", "license": "5", "title": "it's squishy", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4780119_d3713497ae_o.jpg", "secret": "d3713497ae", "media": "photo", "latitude": "0", "id": "4780119", "tags": "2005 family mokele"}, {"datetaken": "2005-01-22 13:51:08", "license": "5", "title": "the beach is fun.", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4780129_0dff1f930b_o.jpg", "secret": "0dff1f930b", "media": "photo", "latitude": "0", "id": "4780129", "tags": "2005 family"}, {"datetaken": "2005-01-22 13:51:21", "license": "5", "title": "ooooh! ahhh!", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4780147_bc7569b885_o.jpg", "secret": "bc7569b885", "media": "photo", "latitude": "0", "id": "4780147", "tags": "2005 family"}, {"datetaken": "2005-01-22 13:51:43", "license": "5", "title": "look what I found", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4780167_afacbf4f57_o.jpg", "secret": "afacbf4f57", "media": "photo", "latitude": "0", "id": "4780167", "tags": "2005 family"}, {"datetaken": "2005-01-22 13:54:35", "license": "5", "title": "more exploring", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4780199_28eb88ae1d_o.jpg", "secret": "28eb88ae1d", "media": "photo", "latitude": "0", "id": "4780199", "tags": "2005 family"}, {"datetaken": "2005-01-22 13:54:47", "license": "5", "title": "exploring the tide pools", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4780215_920f3cc1c3_o.jpg", "secret": "920f3cc1c3", "media": "photo", "latitude": "0", "id": "4780215", "tags": "2005 family"}, {"datetaken": "2005-01-22 15:26:12", "license": "5", "title": "more seals", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4780236_92d523ef11_o.jpg", "secret": "92d523ef11", "media": "photo", "latitude": "0", "id": "4780236", "tags": "2005 family wildlife"}, {"datetaken": "2005-01-22 15:26:51", "license": "5", "title": "seals basking in the sun", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4780242_18ca24ccc5_o.jpg", "secret": "18ca24ccc5", "media": "photo", "latitude": "0", "id": "4780242", "tags": "2005 family wildlife"}, {"datetaken": "2005-01-22 15:27:28", "license": "5", "title": "mom and paul", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4780257_c8e6df8c3e_o.jpg", "secret": "c8e6df8c3e", "media": "photo", "latitude": "0", "id": "4780257", "tags": "2005 family mom paul"}, {"datetaken": "2005-01-22 15:28:01", "license": "5", "title": "Paul and Kelly", "text": "", "album_id": "122401", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4780277_029e56f8d2_o.jpg", "secret": "029e56f8d2", "media": "photo", "latitude": "0", "id": "4780277", "tags": "2005 family paul kelly"}, {"datetaken": "2005-06-14 14:26:46", "license": "3", "title": "DSC04708", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19271921_31d886653c_o.jpg", "secret": "31d886653c", "media": "photo", "latitude": "0", "id": "19271921", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene"}, {"datetaken": "2005-06-14 14:26:46", "license": "3", "title": "DSC04725", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19271922_60a39b597d_o.jpg", "secret": "60a39b597d", "media": "photo", "latitude": "0", "id": "19271922", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene"}, {"datetaken": "2005-06-14 14:26:46", "license": "3", "title": "DSC04729", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19271923_631e735771_o.jpg", "secret": "631e735771", "media": "photo", "latitude": "0", "id": "19271923", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene"}, {"datetaken": "2005-06-14 14:26:46", "license": "3", "title": "DSC04754", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19271924_f406f51f0d_o.jpg", "secret": "f406f51f0d", "media": "photo", "latitude": "0", "id": "19271924", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene"}, {"datetaken": "2005-06-14 14:26:46", "license": "3", "title": "DSC04764", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19271925_6a33bab825_o.jpg", "secret": "6a33bab825", "media": "photo", "latitude": "0", "id": "19271925", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene tree"}, {"datetaken": "2005-06-14 14:26:46", "license": "3", "title": "DSC04769", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19271926_228a4416b0_o.jpg", "secret": "228a4416b0", "media": "photo", "latitude": "0", "id": "19271926", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene dragon"}, {"datetaken": "2005-06-14 14:42:02", "license": "3", "title": "DSC04765", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19273988_f91fd6060b_o.jpg", "secret": "f91fd6060b", "media": "photo", "latitude": "0", "id": "19273988", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene tree"}, {"datetaken": "2005-06-14 14:42:02", "license": "3", "title": "DSC04792", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19273989_7b5cfb3857_o.jpg", "secret": "7b5cfb3857", "media": "photo", "latitude": "0", "id": "19273989", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247"}, {"datetaken": "2005-06-14 14:42:02", "license": "3", "title": "DSC04802", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19273990_7c2461ff2a_o.jpg", "secret": "7c2461ff2a", "media": "photo", "latitude": "0", "id": "19273990", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene"}, {"datetaken": "2005-06-14 14:42:02", "license": "3", "title": "DSC04816", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19273991_a237fd303d_o.jpg", "secret": "a237fd303d", "media": "photo", "latitude": "0", "id": "19273991", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene"}, {"datetaken": "2005-06-14 14:42:02", "license": "3", "title": "DSC04818", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19273992_5ddf586bfb_o.jpg", "secret": "5ddf586bfb", "media": "photo", "latitude": "0", "id": "19273992", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene"}, {"datetaken": "2005-06-14 14:42:02", "license": "3", "title": "DSC04819", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19273993_d27936e944_o.jpg", "secret": "d27936e944", "media": "photo", "latitude": "0", "id": "19273993", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene"}, {"datetaken": "2005-06-14 15:08:10", "license": "3", "title": "DSC04833", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19277223_69e99da39d_o.jpg", "secret": "69e99da39d", "media": "photo", "latitude": "0", "id": "19277223", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene"}, {"datetaken": "2005-06-14 15:08:10", "license": "3", "title": "DSC04845", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19277224_6648ad08cd_o.jpg", "secret": "6648ad08cd", "media": "photo", "latitude": "0", "id": "19277224", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene"}, {"datetaken": "2005-06-14 15:08:10", "license": "3", "title": "DSC04847", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19277225_13a6c31888_o.jpg", "secret": "13a6c31888", "media": "photo", "latitude": "0", "id": "19277225", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene beach boat"}, {"datetaken": "2005-06-14 15:08:10", "license": "3", "title": "DSC04851", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19277226_6e47a23395_o.jpg", "secret": "6e47a23395", "media": "photo", "latitude": "0", "id": "19277226", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene beach"}, {"datetaken": "2005-06-14 15:08:10", "license": "3", "title": "DSC04875", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19277227_c93a102063_o.jpg", "secret": "c93a102063", "media": "photo", "latitude": "0", "id": "19277227", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene crab"}, {"datetaken": "2005-06-14 15:08:10", "license": "3", "title": "DSC04905", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19277228_f272062d2b_o.jpg", "secret": "f272062d2b", "media": "photo", "latitude": "0", "id": "19277228", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene elephant"}, {"datetaken": "2005-06-14 15:34:48", "license": "3", "title": "DSC04943", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19279652_fb3a6e1013_o.jpg", "secret": "fb3a6e1013", "media": "photo", "latitude": "0", "id": "19279652", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene"}, {"datetaken": "2005-06-14 15:34:48", "license": "3", "title": "DSC04946", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19279653_b01b0a66fb_o.jpg", "secret": "b01b0a66fb", "media": "photo", "latitude": "0", "id": "19279653", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 scene"}, {"datetaken": "2005-06-14 15:34:49", "license": "3", "title": "DSC04951", "text": "", "album_id": "452960", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19279654_f4b59bb0ae_o.jpg", "secret": "f4b59bb0ae", "media": "photo", "latitude": "0", "id": "19279654", "tags": "\u516d\u6708\u51fa\u6e38\u7167\u7247 pig"}, {"datetaken": "2005-06-09 23:51:05", "license": "1", "title": "View from parents house in Canada", "text": "", "album_id": "454993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19375544_389e11fcc3_o.jpg", "secret": "389e11fcc3", "media": "photo", "latitude": "0", "id": "19375544", "tags": "sunshinecoast gibsons"}, {"datetaken": "2005-06-09 23:54:10", "license": "1", "title": "mom's new dog Nina", "text": "", "album_id": "454993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19376497_d5fda9b0ba_o.jpg", "secret": "d5fda9b0ba", "media": "photo", "latitude": "0", "id": "19376497", "tags": "dog"}, {"datetaken": "2005-06-10 00:17:23", "license": "1", "title": "Sunshine Coast", "text": "", "album_id": "454993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19377262_f5aaeba92c_o.jpg", "secret": "f5aaeba92c", "media": "photo", "latitude": "0", "id": "19377262", "tags": "sunshinecoast canada beach"}, {"datetaken": "2005-06-10 00:17:30", "license": "1", "title": "sand bar", "text": "", "album_id": "454993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19377603_e3ed897202_o.jpg", "secret": "e3ed897202", "media": "photo", "latitude": "0", "id": "19377603", "tags": "sunshinecoast beach canada"}, {"datetaken": "2005-06-10 00:41:13", "license": "1", "title": "Sunshine Coast beach", "text": "", "album_id": "454993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19377903_e61220a712_o.jpg", "secret": "e61220a712", "media": "photo", "latitude": "0", "id": "19377903", "tags": "sunshinecoast canada beach"}, {"datetaken": "2005-06-10 00:43:06", "license": "1", "title": "Sunshine Coast beach", "text": "", "album_id": "454993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19377927_a1d8c87451_o.jpg", "secret": "a1d8c87451", "media": "photo", "latitude": "0", "id": "19377927", "tags": "sunshinecoast canada beach"}, {"datetaken": "2005-06-10 00:46:03", "license": "1", "title": "Mom and Nina", "text": "", "album_id": "454993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19377980_a984f3af4b_o.jpg", "secret": "a984f3af4b", "media": "photo", "latitude": "0", "id": "19377980", "tags": "sunshinecoast canada dog"}, {"datetaken": "2005-06-10 00:55:10", "license": "1", "title": "Canada June 2005 043", "text": "", "album_id": "454993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19378703_c423988c36_o.jpg", "secret": "c423988c36", "media": "photo", "latitude": "0", "id": "19378703", "tags": "sunshinecoast canada"}, {"datetaken": "2005-06-10 00:59:05", "license": "1", "title": "sad tree", "text": "", "album_id": "454993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/19380632_c46203fc4f_o.jpg", "secret": "c46203fc4f", "media": "photo", "latitude": "0", "id": "19380632", "tags": "sunshinecoast tree canada"}, {"datetaken": "2005-06-11 02:16:30", "license": "1", "title": "Roberts Creek", "text": "", "album_id": "454993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19379050_cdac0b92cd_o.jpg", "secret": "cdac0b92cd", "media": "photo", "latitude": "0", "id": "19379050", "tags": "sunshinecoast canada beach robertscreek"}, {"datetaken": "2005-06-11 02:16:34", "license": "1", "title": "Roberts Creek", "text": "", "album_id": "454993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19379223_7c17ebadcb_o.jpg", "secret": "7c17ebadcb", "media": "photo", "latitude": "0", "id": "19379223", "tags": "sunshinecoast canada robertscreek"}, {"datetaken": "2005-02-22 10:00:00", "license": "1", "title": "T_IMG_1233", "text": "", "album_id": "594941", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26046315_554beee012_o.jpg", "secret": "554beee012", "media": "photo", "latitude": "0", "id": "26046315", "tags": "newzealand northisland kiwi"}, {"datetaken": "2005-02-22 10:00:01", "license": "1", "title": "T_IMG_1232", "text": "", "album_id": "594941", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26046303_337e334139_o.jpg", "secret": "337e334139", "media": "photo", "latitude": "0", "id": "26046303", "tags": "newzealand northisland kaori"}, {"datetaken": "2005-02-22 10:00:02", "license": "1", "title": "T_IMG_1231", "text": "", "album_id": "594941", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26046272_801f28a564_o.jpg", "secret": "801f28a564", "media": "photo", "latitude": "0", "id": "26046272", "tags": "newzealand northisland kaori"}, {"datetaken": "2005-02-22 10:00:03", "license": "1", "title": "T_IMG_1230", "text": "", "album_id": "594941", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26046249_e220eb0823_o.jpg", "secret": "e220eb0823", "media": "photo", "latitude": "0", "id": "26046249", "tags": "newzealand northisland kaori"}, {"datetaken": "2005-02-22 10:00:04", "license": "1", "title": "T_IMG_1229", "text": "", "album_id": "594941", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26046216_467baf713d_o.jpg", "secret": "467baf713d", "media": "photo", "latitude": "0", "id": "26046216", "tags": "newzealand northisland kaori"}, {"datetaken": "2005-02-22 10:00:05", "license": "1", "title": "T_IMG_1228", "text": "", "album_id": "594941", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26046179_ccb064dec0_o.jpg", "secret": "ccb064dec0", "media": "photo", "latitude": "0", "id": "26046179", "tags": "newzealand northisland"}, {"datetaken": "2005-02-22 10:00:06", "license": "1", "title": "T_IMG_1227", "text": "", "album_id": "594941", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26046171_d6908c3438_o.jpg", "secret": "d6908c3438", "media": "photo", "latitude": "0", "id": "26046171", "tags": "newzealand northisland beach"}, {"datetaken": "2005-02-22 10:00:07", "license": "1", "title": "T_IMG_1226", "text": "", "album_id": "594941", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26046151_ada5559909_o.jpg", "secret": "ada5559909", "media": "photo", "latitude": "0", "id": "26046151", "tags": "newzealand northisland"}, {"datetaken": "2005-02-22 10:00:08", "license": "1", "title": "T_IMG_1225", "text": "", "album_id": "594941", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26046147_0eb1f98a38_o.jpg", "secret": "0eb1f98a38", "media": "photo", "latitude": "0", "id": "26046147", "tags": "newzealand northisland"}, {"datetaken": "2005-02-22 10:00:09", "license": "1", "title": "T_IMG_1224", "text": "", "album_id": "594941", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26046140_9465bbc958_o.jpg", "secret": "9465bbc958", "media": "photo", "latitude": "0", "id": "26046140", "tags": "newzealand northisland"}, {"datetaken": "2005-02-22 10:00:10", "license": "1", "title": "T_IMG_1223", "text": "", "album_id": "594941", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26046135_8cdd8fde4b_o.jpg", "secret": "8cdd8fde4b", "media": "photo", "latitude": "0", "id": "26046135", "tags": "newzealand northisland"}, {"datetaken": "2005-02-22 10:00:11", "license": "1", "title": "T_IMG_1222", "text": "", "album_id": "594941", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26046132_6a1f7b43d2_o.jpg", "secret": "6a1f7b43d2", "media": "photo", "latitude": "0", "id": "26046132", "tags": "newzealand northisland"}, {"datetaken": "2005-02-22 10:00:12", "license": "1", "title": "T_IMG_1199", "text": "", "album_id": "594941", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26046126_e3fbde091a_o.jpg", "secret": "e3fbde091a", "media": "photo", "latitude": "0", "id": "26046126", "tags": "newzealand northisland"}, {"datetaken": "2005-02-22 10:00:13", "license": "1", "title": "T_IMG_1198", "text": "", "album_id": "594941", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26046114_e048f01b33_o.jpg", "secret": "e048f01b33", "media": "photo", "latitude": "0", "id": "26046114", "tags": "newzealand northisland"}, {"datetaken": "2005-02-22 10:00:14", "license": "1", "title": "T_IMG_1197", "text": "", "album_id": "594941", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26046100_0f88bb78e0_o.jpg", "secret": "0f88bb78e0", "media": "photo", "latitude": "0", "id": "26046100", "tags": "newzealand northisland"}, {"datetaken": "2005-02-22 10:00:15", "license": "1", "title": "T_IMG_1196", "text": "", "album_id": "594941", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26046089_42b27a6448_o.jpg", "secret": "42b27a6448", "media": "photo", "latitude": "0", "id": "26046089", "tags": "newzealand northisland"}, {"datetaken": "2004-11-12 16:38:47", "license": "2", "title": "Bayonne", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1470949_fb32d3c376_o.jpg", "secret": "fb32d3c376", "media": "photo", "latitude": "0", "id": "1470949", "tags": "lepaysbasque"}, {"datetaken": "2004-11-12 17:00:35", "license": "2", "title": "Basque sign on top of a shop in Bayonne", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1470955_8d2e2f0fed_o.jpg", "secret": "8d2e2f0fed", "media": "photo", "latitude": "0", "id": "1470955", "tags": "lepaysbasque"}, {"datetaken": "2004-11-12 17:13:29", "license": "2", "title": "Bayonne", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1470963_32cc18e7ae_o.jpg", "secret": "32cc18e7ae", "media": "photo", "latitude": "0", "id": "1470963", "tags": "lepaysbasque"}, {"datetaken": "2004-11-12 17:36:28", "license": "2", "title": "Bayonne", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1470972_ed487b5139_o.jpg", "secret": "ed487b5139", "media": "photo", "latitude": "0", "id": "1470972", "tags": "lepaysbasque"}, {"datetaken": "2004-11-12 17:36:38", "license": "2", "title": "Bayonne", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1470977_bd71ac10fc_o.jpg", "secret": "bd71ac10fc", "media": "photo", "latitude": "0", "id": "1470977", "tags": "lepaysbasque"}, {"datetaken": "2004-11-12 17:38:02", "license": "2", "title": "Bayonne", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1470980_9add8eb7db_o.jpg", "secret": "9add8eb7db", "media": "photo", "latitude": "0", "id": "1470980", "tags": "lepaysbasque"}, {"datetaken": "2004-11-12 17:42:12", "license": "2", "title": "Bayonne", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1470984_642581061c_o.jpg", "secret": "642581061c", "media": "photo", "latitude": "0", "id": "1470984", "tags": "lepaysbasque"}, {"datetaken": "2004-11-12 18:10:21", "license": "2", "title": "Biarritz", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1470986_ced123478e_o.jpg", "secret": "ced123478e", "media": "photo", "latitude": "0", "id": "1470986", "tags": "lepaysbasque"}, {"datetaken": "2004-11-12 18:12:55", "license": "2", "title": "The beach in Biarritz", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1470987_88a99e6d32_o.jpg", "secret": "88a99e6d32", "media": "photo", "latitude": "0", "id": "1470987", "tags": "lepaysbasque"}, {"datetaken": "2004-11-12 18:14:31", "license": "2", "title": "Winter surfers in Biarritz", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1470999_ed210f5c72_o.jpg", "secret": "ed210f5c72", "media": "photo", "latitude": "0", "id": "1470999", "tags": "lepaysbasque"}, {"datetaken": "2004-11-12 18:17:20", "license": "2", "title": "Biarritz", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471002_b06dd7ab16_o.jpg", "secret": "b06dd7ab16", "media": "photo", "latitude": "0", "id": "1471002", "tags": "lepaysbasque"}, {"datetaken": "2004-11-12 18:19:31", "license": "2", "title": "Biarritz", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471005_cd2901f6d5_o.jpg", "secret": "cd2901f6d5", "media": "photo", "latitude": "0", "id": "1471005", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 13:05:25", "license": "2", "title": "The beach in San Sebastian", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471009_78c10da0ba_o.jpg", "secret": "78c10da0ba", "media": "photo", "latitude": "0", "id": "1471009", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 13:05:43", "license": "2", "title": "The beach in San Sebastian", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471013_95acda2f26_o.jpg", "secret": "95acda2f26", "media": "photo", "latitude": "0", "id": "1471013", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 13:12:07", "license": "2", "title": "Town hall in San Sebastian", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471021_7490f29e85_o.jpg", "secret": "7490f29e85", "media": "photo", "latitude": "0", "id": "1471021", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 13:13:17", "license": "2", "title": "The beach in San Sebastian", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471025_4faf43bd19_o.jpg", "secret": "4faf43bd19", "media": "photo", "latitude": "0", "id": "1471025", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 13:26:39", "license": "2", "title": "Winter swimming in San Sebastian", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471029_ff5c541459_o.jpg", "secret": "ff5c541459", "media": "photo", "latitude": "0", "id": "1471029", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 14:07:44", "license": "2", "title": "San Sebastian", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471032_58bce84fec_o.jpg", "secret": "58bce84fec", "media": "photo", "latitude": "0", "id": "1471032", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 14:37:50", "license": "2", "title": "Basque bar in San Sebastian", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471039_27d234fbf0_o.jpg", "secret": "27d234fbf0", "media": "photo", "latitude": "0", "id": "1471039", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 14:51:28", "license": "2", "title": "Spanish food", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471043_dbbd2f8650_o.jpg", "secret": "dbbd2f8650", "media": "photo", "latitude": "0", "id": "1471043", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 15:06:37", "license": "2", "title": "Taberna in San Sebastian", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471047_3a2ac3703d_o.jpg", "secret": "3a2ac3703d", "media": "photo", "latitude": "0", "id": "1471047", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 15:12:26", "license": "2", "title": "Taberna in San Sebastian", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471052_7875ac7465_o.jpg", "secret": "7875ac7465", "media": "photo", "latitude": "0", "id": "1471052", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 15:14:28", "license": "2", "title": "DSC03802", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471057_5282962cc5_o.jpg", "secret": "5282962cc5", "media": "photo", "latitude": "0", "id": "1471057", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 15:18:46", "license": "2", "title": "Church in San Sebastian", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471063_654d3e7482_o.jpg", "secret": "654d3e7482", "media": "photo", "latitude": "0", "id": "1471063", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 15:22:42", "license": "2", "title": "Paint thrown on a government building in San Sebastian", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471067_3211c424c4_o.jpg", "secret": "3211c424c4", "media": "photo", "latitude": "0", "id": "1471067", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 16:55:26", "license": "2", "title": "Saint-Jean-De-Luz", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471072_a0592f6780_o.jpg", "secret": "a0592f6780", "media": "photo", "latitude": "0", "id": "1471072", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 17:07:08", "license": "2", "title": "Habour in Saint-Jean-de-Luz", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471079_ed83e56770_o.jpg", "secret": "ed83e56770", "media": "photo", "latitude": "0", "id": "1471079", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 18:11:47", "license": "2", "title": "DSC03813", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471086_d1aeb36e42_o.jpg", "secret": "d1aeb36e42", "media": "photo", "latitude": "0", "id": "1471086", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 18:13:21", "license": "2", "title": "Basque houses in Bidart", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471100_4e4a99c316_o.jpg", "secret": "4e4a99c316", "media": "photo", "latitude": "0", "id": "1471100", "tags": "lepaysbasque"}, {"datetaken": "2004-11-13 18:20:54", "license": "2", "title": "DSC03822", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471103_04717366b2_o.jpg", "secret": "04717366b2", "media": "photo", "latitude": "0", "id": "1471103", "tags": "lepaysbasque"}, {"datetaken": "2004-11-14 12:03:08", "license": "2", "title": "Fronton in St-P\u00e9e-sur-Nivelle", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471107_3d9b352f71_o.jpg", "secret": "3d9b352f71", "media": "photo", "latitude": "0", "id": "1471107", "tags": "lepaysbasque"}, {"datetaken": "2004-11-14 12:47:48", "license": "2", "title": "Piments in A\u00efnhoa", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471120_52565766a6_o.jpg", "secret": "52565766a6", "media": "photo", "latitude": "0", "id": "1471120", "tags": "lepaysbasque"}, {"datetaken": "2004-11-14 12:59:07", "license": "2", "title": "Houses in A\u00efnhoa", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471123_d150ceafd4_o.jpg", "secret": "d150ceafd4", "media": "photo", "latitude": "0", "id": "1471123", "tags": "lepaysbasque"}, {"datetaken": "2004-11-14 15:20:04", "license": "2", "title": "The Basque countryside", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471125_bec52cdb01_o.jpg", "secret": "bec52cdb01", "media": "photo", "latitude": "0", "id": "1471125", "tags": "lepaysbasque"}, {"datetaken": "2004-11-14 15:34:05", "license": "2", "title": "View from Itxassou", "text": "", "album_id": "37463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1471127_5c85d29d3e_o.jpg", "secret": "5c85d29d3e", "media": "photo", "latitude": "0", "id": "1471127", "tags": "lepaysbasque"}, {"datetaken": "2004-06-26 14:43:56", "license": "1", "title": "Pretty Girl in front of my House", "text": "", "album_id": "72157600001577480", "longitude": "-81.393563", "url_o": "https://farm1.staticflickr.com/3/3386971_bd3bd301f7_o.jpg", "secret": "bd3bd301f7", "media": "photo", "latitude": "44.445254", "id": "3386971", "tags": "portelgin home grass skirt lauralee"}, {"datetaken": "2004-06-26 15:06:18", "license": "1", "title": "Looking Down on my Sweetie", "text": "", "album_id": "72157600001577480", "longitude": "-81.393563", "url_o": "https://farm1.staticflickr.com/1/3386983_d99cd9d526_o.jpg", "secret": "d99cd9d526", "media": "photo", "latitude": "44.445254", "id": "3386983", "tags": "breakwall beach lake lakehuron portelgin lauralee"}, {"datetaken": "2004-06-26 15:07:59", "license": "1", "title": "Family on the Breakwall", "text": "", "album_id": "72157600001577480", "longitude": "-81.393563", "url_o": "https://farm1.staticflickr.com/2/3386997_14b77496af_o.jpg", "secret": "14b77496af", "media": "photo", "latitude": "44.445254", "id": "3386997", "tags": "mom auntnancy dan val portelgin me redune"}, {"datetaken": "2004-06-26 15:08:56", "license": "1", "title": "Love on the Breakwall", "text": "", "album_id": "72157600001577480", "longitude": "-81.393563", "url_o": "https://farm1.staticflickr.com/3/3387020_221746619d_o.jpg", "secret": "221746619d", "media": "photo", "latitude": "44.445254", "id": "3387020", "tags": "beach me sweeties portelgin breakwall redune lauralee thankyoucards"}, {"datetaken": "2004-06-26 15:13:28", "license": "1", "title": "In the Water Together", "text": "", "album_id": "72157600001577480", "longitude": "-81.393563", "url_o": "https://farm1.staticflickr.com/3/3398959_c5bd037954_o.jpg", "secret": "c5bd037954", "media": "photo", "latitude": "44.445254", "id": "3398959", "tags": "beach sweeties portelgin lauralee me redune"}, {"datetaken": "2004-06-26 17:33:20", "license": "1", "title": "Jimbo Bday0024", "text": "", "album_id": "72157600001577480", "longitude": "-81.393577", "url_o": "https://farm1.staticflickr.com/2/3387050_c1ed18cc4a_o.jpg", "secret": "c1ed18cc4a", "media": "photo", "latitude": "44.445137", "id": "3387050", "tags": "basement"}, {"datetaken": "2004-06-26 18:26:38", "license": "1", "title": "Even more love", "text": "", "album_id": "72157600001577480", "longitude": "-81.393577", "url_o": "https://farm1.staticflickr.com/1/3387094_26d97e4540_o.jpg", "secret": "26d97e4540", "media": "photo", "latitude": "44.445137", "id": "3387094", "tags": "jimbo attack basement me redune"}, {"datetaken": "2004-06-26 18:26:46", "license": "1", "title": "What Love", "text": "", "album_id": "72157600001577480", "longitude": "-81.393577", "url_o": "https://farm1.staticflickr.com/3/3387100_cf5d00c910_o.jpg", "secret": "cf5d00c910", "media": "photo", "latitude": "44.445137", "id": "3387100", "tags": "jimbo basement me redune"}, {"datetaken": "2004-06-26 20:00:29", "license": "1", "title": "Driving Home", "text": "", "album_id": "72157600001577480", "longitude": "-80.521030", "url_o": "https://farm1.staticflickr.com/1/3387108_6a3023d5f3_o.jpg", "secret": "6a3023d5f3", "media": "photo", "latitude": "43.471857", "id": "3387108", "tags": "van driving me redune"}, {"datetaken": "2004-06-26 20:03:39", "license": "1", "title": "Cutie up Close", "text": "", "album_id": "72157600001577480", "longitude": "-80.717926", "url_o": "https://farm1.staticflickr.com/3/3387120_4e72a78056_o.jpg", "secret": "4e72a78056", "media": "photo", "latitude": "43.628123", "id": "3387120", "tags": "face close lauralee"}, {"datetaken": "2010-01-15 20:27:45", "license": "3", "title": "Sophia Antipolis France", "text": "", "album_id": "72157623097130441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4276669073_bf8dc5e003_o.jpg", "secret": "79c5cc943c", "media": "photo", "latitude": "0", "id": "4276669073", "tags": "france cotedazur sophiaantipolis"}, {"datetaken": "2010-01-15 20:31:15", "license": "3", "title": "Antibes", "text": "", "album_id": "72157623097130441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4277421516_842d4135c3_o.jpg", "secret": "a7822b3242", "media": "photo", "latitude": "0", "id": "4277421516", "tags": "france cotedazur antibes"}, {"datetaken": "2010-01-15 20:32:49", "license": "3", "title": "Clouds over Antibes", "text": "", "album_id": "72157623097130441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4277424720_a0aed0d408_o.jpg", "secret": "3a6160026e", "media": "photo", "latitude": "0", "id": "4277424720", "tags": "france cotedazur antibes"}, {"datetaken": "2010-01-15 20:35:20", "license": "3", "title": "Monaco", "text": "", "album_id": "72157623097130441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4277429656_01af0db4c7_o.jpg", "secret": "f4fc989039", "media": "photo", "latitude": "0", "id": "4277429656", "tags": "france cotedazur monaco"}, {"datetaken": "2010-01-15 20:38:00", "license": "3", "title": "Mougins sunset", "text": "", "album_id": "72157623097130441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4277434542_b482f737f1_o.jpg", "secret": "cdb372814f", "media": "photo", "latitude": "0", "id": "4277434542", "tags": "france cotedazur mougins"}, {"datetaken": "2010-01-15 20:46:00", "license": "3", "title": "Esterel sunset", "text": "", "album_id": "72157623097130441", "longitude": "0.000000", "url_o": "https://farm5.staticflickr.com/4045/4276704183_07ea28ed84_o.jpg", "secret": "14b88047bc", "media": "photo", "latitude": "0.000000", "id": "4276704183", "tags": "france cotedazur cannes esterel"}, {"datetaken": "2010-01-15 20:48:36", "license": "3", "title": "Esterel sunset", "text": "", "album_id": "72157623097130441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4276709101_ebc7c950c8_o.jpg", "secret": "cb982a2ccd", "media": "photo", "latitude": "0", "id": "4276709101", "tags": "france cotedazur cannes esterel"}, {"datetaken": "2010-01-15 20:49:54", "license": "3", "title": "Esterel sunset", "text": "", "album_id": "72157623097130441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4276711581_58b430ee7a_o.jpg", "secret": "d67f844a1b", "media": "photo", "latitude": "0", "id": "4276711581", "tags": "france cotedazur cannes esterel"}, {"datetaken": "2010-01-15 20:52:20", "license": "3", "title": "The Alps from Mougins", "text": "", "album_id": "72157623097130441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4277462392_14fa57876f_o.jpg", "secret": "3d72ea009a", "media": "photo", "latitude": "0", "id": "4277462392", "tags": "winter france cotedazur mougins"}, {"datetaken": "2010-01-15 20:54:15", "license": "3", "title": "Antibes in the winter", "text": "", "album_id": "72157623097130441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4276720185_3459890673_o.jpg", "secret": "bf9bfab3df", "media": "photo", "latitude": "0", "id": "4276720185", "tags": "winter france antibes"}, {"datetaken": "2010-01-15 20:56:56", "license": "3", "title": "The Esterel from cap d'Antibes", "text": "", "album_id": "72157623097130441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2706/4277471842_6ea92c1d99_o.jpg", "secret": "98ffa9fd8c", "media": "photo", "latitude": "0", "id": "4277471842", "tags": "france antibes esterel"}, {"datetaken": "2010-01-15 20:58:58", "license": "3", "title": "Nice", "text": "", "album_id": "72157623097130441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4276729911_e48a229204_o.jpg", "secret": "381e15b6de", "media": "photo", "latitude": "0", "id": "4276729911", "tags": "france nice"}, {"datetaken": "2010-01-15 21:00:25", "license": "3", "title": "Antibes old town", "text": "", "album_id": "72157623097130441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4276732727_513be08055_o.jpg", "secret": "b49b922afd", "media": "photo", "latitude": "0", "id": "4276732727", "tags": "france antibes"}, {"datetaken": "2010-01-15 21:01:42", "license": "3", "title": "Monaco", "text": "", "album_id": "72157623097130441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4276735245_70092397bf_o.jpg", "secret": "ef69bbcdac", "media": "photo", "latitude": "0", "id": "4276735245", "tags": "france monaco"}, {"datetaken": "2010-01-15 21:05:14", "license": "3", "title": "Nice", "text": "", "album_id": "72157623097130441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4276742351_321c2a028f_o.jpg", "secret": "572595e7e5", "media": "photo", "latitude": "0", "id": "4276742351", "tags": "france nice"}, {"datetaken": "2010-01-15 21:06:41", "license": "3", "title": "Sunset over north Antibes", "text": "", "album_id": "72157623097130441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2639/4277491702_f1b597fb51_o.jpg", "secret": "14c43f185b", "media": "photo", "latitude": "0", "id": "4277491702", "tags": "france antibes"}, {"datetaken": "2010-01-15 21:08:21", "license": "3", "title": "Cannes night", "text": "", "album_id": "72157623097130441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4277494938_cf59ac3d96_o.jpg", "secret": "de87c7382d", "media": "photo", "latitude": "0", "id": "4277494938", "tags": "france cannes"}, {"datetaken": "2010-01-15 21:10:14", "license": "3", "title": "Antibes old town", "text": "", "album_id": "72157623097130441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4276752359_ef90395440_o.jpg", "secret": "2a016c803b", "media": "photo", "latitude": "0", "id": "4276752359", "tags": "france antibes"}, {"datetaken": "2010-01-16 11:29:45", "license": "3", "title": "Cote d'Azur from the grand corniche", "text": "", "album_id": "72157623097130441", "longitude": "0.000000", "url_o": "https://farm5.staticflickr.com/4042/4278053419_ea112f3518_o.jpg", "secret": "a9b6b1d262", "media": "photo", "latitude": "0.000000", "id": "4278053419", "tags": "france nice cannes antibes esterel"}, {"datetaken": "2009-12-28 15:05:07", "license": "1", "title": "Wade (lentil fritters)", "text": "", "album_id": "72157623216453276", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4277282446_829d95ca22_o.jpg", "secret": "a2791bdae1", "media": "photo", "latitude": "0", "id": "4277282446", "tags": "food restaurant statenisland srilankan sanrasa"}, {"datetaken": "2009-12-28 15:18:54", "license": "1", "title": "Vegetable lamprie", "text": "", "album_id": "72157623216453276", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4277283176_7c7b1f0fa4_o.jpg", "secret": "4f633c9889", "media": "photo", "latitude": "0", "id": "4277283176", "tags": "food restaurant statenisland srilankan sanrasa"}, {"datetaken": "2009-12-28 15:19:14", "license": "1", "title": "Lamprie, are you ready for your close-up", "text": "", "album_id": "72157623216453276", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2737/4277284758_00f1d5c16b_o.jpg", "secret": "9f0c9f11e8", "media": "photo", "latitude": "0", "id": "4277284758", "tags": "food restaurant statenisland srilankan sanrasa"}, {"datetaken": "2009-12-28 15:19:22", "license": "1", "title": "Vegetable lamprie. Hello.", "text": "", "album_id": "72157623216453276", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4276540863_bb9b8b16c1_o.jpg", "secret": "25994c9c16", "media": "photo", "latitude": "0", "id": "4276540863", "tags": "food restaurant statenisland srilankan sanrasa"}, {"datetaken": "2009-12-28 16:29:33", "license": "1", "title": "Interior of San Rasa", "text": "", "album_id": "72157623216453276", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4277286182_54150502ff_o.jpg", "secret": "6fe66f2d98", "media": "photo", "latitude": "0", "id": "4277286182", "tags": "food restaurant statenisland srilankan sanrasa"}, {"datetaken": "2009-12-28 16:30:18", "license": "1", "title": "San Rasa Restaurant", "text": "", "album_id": "72157623216453276", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4277288132_24880fcd11_o.jpg", "secret": "64246ac56c", "media": "photo", "latitude": "0", "id": "4277288132", "tags": "food restaurant statenisland srilankan sanrasa"}, {"datetaken": "2009-12-28 17:12:21", "license": "1", "title": "Hey, Lady", "text": "", "album_id": "72157623216453276", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2755/4277288838_5bce8eb3e0_o.jpg", "secret": "5a6d74a769", "media": "photo", "latitude": "0", "id": "4277288838", "tags": "sunset water ferry view statueofliberty statenisland statenislandferry"}, {"datetaken": "2009-12-28 17:12:34", "license": "1", "title": "From the SI ferry", "text": "", "album_id": "72157623216453276", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4277289556_cc13cedb80_o.jpg", "secret": "d0afe33914", "media": "photo", "latitude": "0", "id": "4277289556", "tags": "sunset water ferry view statueofliberty statenisland statenislandferry"}, {"datetaken": "2009-12-28 17:12:46", "license": "1", "title": "Sunset from the Staten Island ferry", "text": "", "album_id": "72157623216453276", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4277290526_30aeca88b7_o.jpg", "secret": "b32f668a14", "media": "photo", "latitude": "0", "id": "4277290526", "tags": "sunset water ferry view statenisland statenislandferry"}, {"datetaken": "2009-12-28 17:12:59", "license": "1", "title": "From the inside of the ferry", "text": "", "album_id": "72157623216453276", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4276546797_1b54d73362_o.jpg", "secret": "20153486b4", "media": "photo", "latitude": "0", "id": "4276546797", "tags": "sunset water ferry view statenisland statenislandferry"}, {"datetaken": "2010-01-15 18:17:54", "license": "3", "title": "Claire with Ice Cream Bar", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4278060654_552e0eb364_o.jpg", "secret": "311f3a334b", "media": "photo", "latitude": "0", "id": "4278060654", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:17:54", "license": "3", "title": "Summer Breakfast", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4278060704_47be59dbaa_o.jpg", "secret": "87d08dd47e", "media": "photo", "latitude": "0", "id": "4278060704", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:17:55", "license": "3", "title": "Liam on the Phone", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4277314245_b06d5a1f95_o.jpg", "secret": "aac1bd9e99", "media": "photo", "latitude": "0", "id": "4277314245", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:17:55", "license": "3", "title": "Dog Shirt Buddies", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4278060818_6dd5b7d17a_o.jpg", "secret": "1677227e46", "media": "photo", "latitude": "0", "id": "4278060818", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:17:55", "license": "3", "title": "Open Road", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4277314345_ece0751c7a_o.jpg", "secret": "2148d0c2ea", "media": "photo", "latitude": "0", "id": "4277314345", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:17:56", "license": "3", "title": "Home", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4277314565_5fa2dcec6a_o.jpg", "secret": "44dd85be7d", "media": "photo", "latitude": "0", "id": "4277314565", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:17:56", "license": "3", "title": "Room", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4278060952_9be9c13fe0_o.jpg", "secret": "c61a79030e", "media": "photo", "latitude": "0", "id": "4278060952", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:17:56", "license": "3", "title": "Gas Stop", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4278061106_39299464dd_o.jpg", "secret": "74720648b6", "media": "photo", "latitude": "0", "id": "4278061106", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:17:57", "license": "3", "title": "Hotel", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4277314745_5eb34ab0a8_o.jpg", "secret": "9c44837bcd", "media": "photo", "latitude": "0", "id": "4277314745", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:17:57", "license": "3", "title": "Subway Break", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2739/4278061226_1c6f5f187e_o.jpg", "secret": "1e1c5c0902", "media": "photo", "latitude": "0", "id": "4278061226", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:17:57", "license": "3", "title": "Shaun", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4278061270_95ce431eba_o.jpg", "secret": "6cf275b320", "media": "photo", "latitude": "0", "id": "4278061270", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:17:58", "license": "3", "title": "Coast", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4277314913_d02b715f62_o.jpg", "secret": "afbf6336f5", "media": "photo", "latitude": "0", "id": "4277314913", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:17:58", "license": "3", "title": "Beach Stairs", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4278061454_465833a972_o.jpg", "secret": "4b305b0677", "media": "photo", "latitude": "0", "id": "4278061454", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:17:58", "license": "3", "title": "Liam at the Beach", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4277315041_8ab63c168a_o.jpg", "secret": "53eb8c74b6", "media": "photo", "latitude": "0", "id": "4277315041", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:17:59", "license": "3", "title": "Gas Up", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4278061584_4db1fc5ac9_o.jpg", "secret": "45a814efd8", "media": "photo", "latitude": "0", "id": "4278061584", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:17:59", "license": "3", "title": "HWY 1", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2742/4278061640_3ddd748953_o.jpg", "secret": "701220da6d", "media": "photo", "latitude": "0", "id": "4278061640", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:17:59", "license": "3", "title": "Behind Claire", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2692/4278061710_88cabf12c6_o.jpg", "secret": "3f0576edff", "media": "photo", "latitude": "0", "id": "4278061710", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:17:59", "license": "3", "title": "Candy Bar", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4277315257_212b433a51_o.jpg", "secret": "3e3c05ed38", "media": "photo", "latitude": "0", "id": "4277315257", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:18:00", "license": "3", "title": "Bottom of the Hill", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4277315321_218330a501_o.jpg", "secret": "2d3c97218e", "media": "photo", "latitude": "0", "id": "4277315321", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:18:00", "license": "3", "title": "Hotel Morning", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4277315405_3932de5eca_o.jpg", "secret": "ddae48c67f", "media": "photo", "latitude": "0", "id": "4277315405", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:18:00", "license": "3", "title": "Sandwich Stop", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4277315487_9c2f959a26_o.jpg", "secret": "210dc3f29a", "media": "photo", "latitude": "0", "id": "4277315487", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:18:01", "license": "3", "title": "Liam in the Van", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2719/4277315529_4cee3f7430_o.jpg", "secret": "f97d95cbdf", "media": "photo", "latitude": "0", "id": "4277315529", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:18:01", "license": "3", "title": "Stage", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4277315595_4526959c37_o.jpg", "secret": "8835787aa1", "media": "photo", "latitude": "0", "id": "4277315595", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:18:01", "license": "3", "title": "SF", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4278062104_2196c15c8d_o.jpg", "secret": "eb8830e03d", "media": "photo", "latitude": "0", "id": "4278062104", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:18:01", "license": "3", "title": "Coke Stop", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4278062232_3eec525a71_o.jpg", "secret": "fc1df21037", "media": "photo", "latitude": "0", "id": "4278062232", "tags": "diana brite futures"}, {"datetaken": "2010-01-15 18:39:12", "license": "3", "title": "Sandwich Stop", "text": "", "album_id": "72157623218395020", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2706/4277314395_c2cd80a83f_o.jpg", "secret": "e522a8886c", "media": "photo", "latitude": "0", "id": "4277314395", "tags": "diana brite futures"}, {"datetaken": "2000-07-15 22:11:20", "license": "1", "title": "Rock on Rock", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1087/614440187_0207091abd_o.jpg", "secret": "9c19e6f805", "media": "photo", "latitude": "0", "id": "614440187", "tags": "maui"}, {"datetaken": "2000-07-15 22:11:58", "license": "1", "title": "Pledge Allegiance", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1425/614440303_b53ffa96cb_o.jpg", "secret": "02e67cf95b", "media": "photo", "latitude": "0", "id": "614440303", "tags": "maui"}, {"datetaken": "2000-07-15 22:31:00", "license": "1", "title": "The Future Mrs. James", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1255/614440467_39a99296c9_o.jpg", "secret": "50853e0dcd", "media": "photo", "latitude": "0", "id": "614440467", "tags": "maui"}, {"datetaken": "2000-07-15 22:32:22", "license": "1", "title": "Engaged!!", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1327/614440631_e37578aad6_o.jpg", "secret": "cd7663c30e", "media": "photo", "latitude": "0", "id": "614440631", "tags": "maui"}, {"datetaken": "2000-07-15 22:38:02", "license": "1", "title": "Pig at Luau", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1256/614440665_ecd8e4f0a5_o.jpg", "secret": "0be61e44ab", "media": "photo", "latitude": "0", "id": "614440665", "tags": "maui"}, {"datetaken": "2000-07-15 22:38:40", "license": "1", "title": "Sunset at Wailea", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1045/614440827_0ca1f047c8_o.jpg", "secret": "e719b506de", "media": "photo", "latitude": "0", "id": "614440827", "tags": "maui"}, {"datetaken": "2000-07-15 22:39:20", "license": "1", "title": "Hula at Luau", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1081/614440909_5cfe658b4e_o.jpg", "secret": "ae6c825aea", "media": "photo", "latitude": "0", "id": "614440909", "tags": "maui"}, {"datetaken": "2000-07-15 22:41:17", "license": "1", "title": "Through the Bamboo", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1085/614441179_171734ae01_o.jpg", "secret": "1b6a1196b2", "media": "photo", "latitude": "0", "id": "614441179", "tags": "maui"}, {"datetaken": "2000-07-15 22:42:31", "license": "1", "title": "Bamboo", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1423/614441313_e8c5210ad0_o.jpg", "secret": "cbc4d4d9ef", "media": "photo", "latitude": "0", "id": "614441313", "tags": "maui"}, {"datetaken": "2000-07-15 22:48:32", "license": "1", "title": "Flash the Ring", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1012/614441345_dbb5705eca_o.jpg", "secret": "d410491e0d", "media": "photo", "latitude": "0", "id": "614441345", "tags": "maui"}, {"datetaken": "2000-07-15 22:49:25", "license": "1", "title": "Show Me the Money", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1167/614441507_346b95d854_o.jpg", "secret": "61d7feb2f1", "media": "photo", "latitude": "0", "id": "614441507", "tags": "maui"}, {"datetaken": "2000-07-15 22:50:51", "license": "1", "title": "In the Backyard", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1406/614441557_a6182fd717_o.jpg", "secret": "c946d8f3f3", "media": "photo", "latitude": "0", "id": "614441557", "tags": "maui"}, {"datetaken": "2000-07-15 22:51:44", "license": "1", "title": "In the Backyard 2", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1434/614441597_c9087bd544_o.jpg", "secret": "1e7305b19f", "media": "photo", "latitude": "0", "id": "614441597", "tags": "maui"}, {"datetaken": "2000-07-15 22:52:13", "license": "1", "title": "Before Sunrise on the Crater", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1063/614441693_677235f846_o.jpg", "secret": "d0a0474d58", "media": "photo", "latitude": "0", "id": "614441693", "tags": "maui"}, {"datetaken": "2000-07-15 22:52:46", "license": "1", "title": "Sunrise!!", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1159/614441797_f4d9b3b404_o.jpg", "secret": "7451fbe9ec", "media": "photo", "latitude": "0", "id": "614441797", "tags": "maui"}, {"datetaken": "2000-07-15 22:53:35", "license": "1", "title": "Morning Glory", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1262/614441835_3ad2a41afc_o.jpg", "secret": "58f99de1b7", "media": "photo", "latitude": "0", "id": "614441835", "tags": "maui"}, {"datetaken": "2000-07-15 22:54:32", "license": "1", "title": "Wake up Sleepyhead", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1061/614441969_cf3bd38ecb_o.jpg", "secret": "d2a9e2b694", "media": "photo", "latitude": "0", "id": "614441969", "tags": "maui"}, {"datetaken": "2000-07-15 22:55:07", "license": "1", "title": "Cold up Here", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1120/614442007_5eb4407fae_o.jpg", "secret": "bf5f1bdae2", "media": "photo", "latitude": "0", "id": "614442007", "tags": "maui"}, {"datetaken": "2000-07-15 22:56:04", "license": "1", "title": "Hi Everybody!", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1427/614442051_d266d5c87f_o.jpg", "secret": "a723281fa0", "media": "photo", "latitude": "0", "id": "614442051", "tags": "maui"}, {"datetaken": "2000-07-15 22:56:45", "license": "1", "title": "Di on Beach", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1109/614442091_de66a7d31f_o.jpg", "secret": "1bbd179974", "media": "photo", "latitude": "0", "id": "614442091", "tags": "maui"}, {"datetaken": "2000-07-15 22:57:34", "license": "1", "title": "Big Stud", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1033/614442133_492925891a_o.jpg", "secret": "78cb19e7aa", "media": "photo", "latitude": "0", "id": "614442133", "tags": "maui"}, {"datetaken": "2000-07-16 04:29:37", "license": "1", "title": "In The Jungle", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1159/614442155_885503ad1a_o.jpg", "secret": "9f06346a42", "media": "photo", "latitude": "0", "id": "614442155", "tags": "maui"}, {"datetaken": "2000-07-16 04:30:15", "license": "1", "title": "Waterfall 1", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1337/614442321_9fecef2da9_o.jpg", "secret": "4f3457b7cc", "media": "photo", "latitude": "0", "id": "614442321", "tags": "maui"}, {"datetaken": "2000-07-16 04:30:46", "license": "1", "title": "Waterfall 2", "text": "", "album_id": "72157600469787138", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1034/614442339_1cab783d5e_o.jpg", "secret": "3da25aa8f4", "media": "photo", "latitude": "0", "id": "614442339", "tags": "maui"}, {"datetaken": "2004-10-09 11:09:36", "license": "1", "title": "ducks on the pond", "text": "", "album_id": "22863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/888179_9ceb4b3e28_o.jpg", "secret": "9ceb4b3e28", "media": "photo", "latitude": "0", "id": "888179", "tags": "vermont fall autumn leaf leaves"}, {"datetaken": "2004-10-09 11:25:44", "license": "1", "title": "trees by the pond", "text": "", "album_id": "22863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/888180_2cd589c636_o.jpg", "secret": "2cd589c636", "media": "photo", "latitude": "0", "id": "888180", "tags": "vermont fall autumn leaf leaves"}, {"datetaken": "2004-10-10 15:36:58", "license": "1", "title": "leaves!", "text": "", "album_id": "22863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/888200_069c117429_o.jpg", "secret": "069c117429", "media": "photo", "latitude": "0", "id": "888200", "tags": "vermont fall autumn leaf leaves"}, {"datetaken": "2004-10-10 15:44:03", "license": "1", "title": "Killington? Mt. Sunapee?", "text": "", "album_id": "22863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/888201_64745f776a_o.jpg", "secret": "64745f776a", "media": "photo", "latitude": "0", "id": "888201", "tags": "vermont fall autumn leaf leaves"}, {"datetaken": "2004-10-10 16:47:55", "license": "1", "title": "pretty leafage", "text": "", "album_id": "22863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/888207_38ac127c92_o.jpg", "secret": "38ac127c92", "media": "photo", "latitude": "0", "id": "888207", "tags": "vermont fall autumn leaf leaves"}, {"datetaken": "2004-10-10 16:55:00", "license": "1", "title": "Mt. Sunapee for sure", "text": "", "album_id": "22863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/888211_3d137f7901_o.jpg", "secret": "3d137f7901", "media": "photo", "latitude": "0", "id": "888211", "tags": "vermont fall autumn leaf leaves"}, {"datetaken": "2004-10-10 17:17:06", "license": "1", "title": "Beach entrance at Mt. Sunapee", "text": "", "album_id": "22863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/888213_70afc5d39b_o.jpg", "secret": "70afc5d39b", "media": "photo", "latitude": "0", "id": "888213", "tags": "vermont fall autumn leaf leaves sunapee"}, {"datetaken": "2004-10-10 17:18:09", "license": "1", "title": "Mt. Sunapee beach trees in the parking lot", "text": "", "album_id": "22863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/888215_a8e65ffcbf_o.jpg", "secret": "a8e65ffcbf", "media": "photo", "latitude": "0", "id": "888215", "tags": "vermont fall autumn leaf leaves sunapee"}, {"datetaken": "2004-10-10 17:18:46", "license": "1", "title": "more trees in the parking lot", "text": "", "album_id": "22863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/888216_5301cb0a0d_o.jpg", "secret": "5301cb0a0d", "media": "photo", "latitude": "0", "id": "888216", "tags": "vermont fall autumn leaf leaves sunapee"}, {"datetaken": "2004-10-10 17:22:54", "license": "1", "title": "pretty leaves", "text": "", "album_id": "22863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/888217_70ebf1552c_o.jpg", "secret": "70ebf1552c", "media": "photo", "latitude": "0", "id": "888217", "tags": "vermont fall autumn leaf leaves sunapee"}, {"datetaken": "2004-10-10 17:23:07", "license": "1", "title": "freakin' awesome", "text": "", "album_id": "22863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/888220_66b3698643_o.jpg", "secret": "66b3698643", "media": "photo", "latitude": "0", "id": "888220", "tags": "vermont fall autumn leaf leaves sunapee"}, {"datetaken": "2004-10-10 17:27:50", "license": "1", "title": "Autumn sand castle", "text": "", "album_id": "22863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/888221_68a68e737e_o.jpg", "secret": "68a68e737e", "media": "photo", "latitude": "0", "id": "888221", "tags": "vermont fall autumn leaf leaves sunapee"}, {"datetaken": "2004-10-10 17:29:08", "license": "1", "title": "Houses near the Mt. Sunapee beach shore", "text": "", "album_id": "22863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/888222_8937af9e91_o.jpg", "secret": "8937af9e91", "media": "photo", "latitude": "0", "id": "888222", "tags": "vermont fall autumn leaf leaves sunapee"}, {"datetaken": "2004-10-10 17:29:45", "license": "1", "title": "More gorgeous folliage", "text": "", "album_id": "22863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/888224_4ca3cd06d3_o.jpg", "secret": "4ca3cd06d3", "media": "photo", "latitude": "0", "id": "888224", "tags": "vermont fall autumn leaf leaves sunapee"}, {"datetaken": "2004-10-10 17:30:28", "license": "1", "title": "Castle closeup", "text": "", "album_id": "22863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/888226_90aecda550_o.jpg", "secret": "90aecda550", "media": "photo", "latitude": "0", "id": "888226", "tags": "vermont fall autumn leaf leaves sunapee"}, {"datetaken": "2004-10-10 17:30:45", "license": "1", "title": "Eeek! Elmo!", "text": "", "album_id": "22863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/888228_aec4f13ca5_o.jpg", "secret": "aec4f13ca5", "media": "photo", "latitude": "0", "id": "888228", "tags": "vermont fall autumn leaf leaves sunapee"}, {"datetaken": "2004-10-10 17:31:15", "license": "1", "title": "Juxtaposition of 2 seasons", "text": "", "album_id": "22863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/888230_a50ccd9f2d_o.jpg", "secret": "a50ccd9f2d", "media": "photo", "latitude": "0", "id": "888230", "tags": "vermont fall autumn leaf leaves sunapee"}, {"datetaken": "2005-07-16 15:13:32", "license": "1", "title": "Railroad tracks", "text": "", "album_id": "601575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26478306_2d0dc6ccfd_o.jpg", "secret": "2d0dc6ccfd", "media": "photo", "latitude": "0", "id": "26478306", "tags": "santacruz railroadtracks tracks railroad"}, {"datetaken": "2005-07-16 15:15:55", "license": "1", "title": "Railroad over the lagoon", "text": "", "album_id": "601575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26478323_8d392c7760_o.jpg", "secret": "8d392c7760", "media": "photo", "latitude": "0", "id": "26478323", "tags": "santacruz railroad tracks lagoon"}, {"datetaken": "2005-07-16 15:17:17", "license": "1", "title": "Track switch", "text": "", "album_id": "601575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26478331_63bb0a4d99_o.jpg", "secret": "63bb0a4d99", "media": "photo", "latitude": "0", "id": "26478331", "tags": "santacruz railroad tracks switch"}, {"datetaken": "2005-07-16 15:18:05", "license": "1", "title": "Railroad track sign", "text": "", "album_id": "601575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26478357_6750b7f3be_o.jpg", "secret": "6750b7f3be", "media": "photo", "latitude": "0", "id": "26478357", "tags": "santacruz railroad tracks sign"}, {"datetaken": "2005-07-16 15:23:19", "license": "1", "title": "Wastewater treatment plant", "text": "", "album_id": "601575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26478377_fefe15af49_o.jpg", "secret": "fefe15af49", "media": "photo", "latitude": "0", "id": "26478377", "tags": "santacruz plant wastewater treatment"}, {"datetaken": "2005-07-16 15:24:33", "license": "1", "title": "Cut tie", "text": "", "album_id": "601575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26478398_bd9bafb88b_o.jpg", "secret": "bd9bafb88b", "media": "photo", "latitude": "0", "id": "26478398", "tags": "santacruz railroad tie"}, {"datetaken": "2005-07-16 15:50:51", "license": "1", "title": "Santa Cruz Beach", "text": "", "album_id": "601575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26478413_3c95d5fd7f_o.jpg", "secret": "3c95d5fd7f", "media": "photo", "latitude": "0", "id": "26478413", "tags": "santacruz beach volleyball"}, {"datetaken": "2005-07-16 15:54:34", "license": "1", "title": "Santa Cruz Beach", "text": "", "album_id": "601575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26478426_917e31487e_o.jpg", "secret": "917e31487e", "media": "photo", "latitude": "0", "id": "26478426", "tags": "santacruz beach boat"}, {"datetaken": "2005-07-16 15:54:44", "license": "1", "title": "Santa Cruz Beach", "text": "", "album_id": "601575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26478444_9f2590e665_o.jpg", "secret": "9f2590e665", "media": "photo", "latitude": "0", "id": "26478444", "tags": "santacruz beach sand pacific ocean"}, {"datetaken": "2005-07-16 15:58:33", "license": "1", "title": "Rollercoaster on the boardwalk", "text": "", "album_id": "601575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26478465_c55556b133_o.jpg", "secret": "c55556b133", "media": "photo", "latitude": "0", "id": "26478465", "tags": "santacruz roller coaster boardwalk"}, {"datetaken": "2005-07-16 18:04:42", "license": "1", "title": "Inlet", "text": "", "album_id": "601575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26478477_a75d083da6_o.jpg", "secret": "a75d083da6", "media": "photo", "latitude": "0", "id": "26478477", "tags": "santacruz inlet riverst"}, {"datetaken": "2005-07-16 18:18:00", "license": "1", "title": "The carousel", "text": "", "album_id": "601575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26478487_0b49919df8_o.jpg", "secret": "0b49919df8", "media": "photo", "latitude": "0", "id": "26478487", "tags": "santacruz boardwalk carousel"}, {"datetaken": "2005-07-16 18:38:12", "license": "1", "title": "Santa Cruz Boardwalk", "text": "", "album_id": "601575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26478495_5f2b4d3364_o.jpg", "secret": "5f2b4d3364", "media": "photo", "latitude": "0", "id": "26478495", "tags": "santacruz boardwalk"}, {"datetaken": "2005-07-16 18:47:30", "license": "1", "title": "Santa Cruz Beach", "text": "", "album_id": "601575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26478519_0fcdf854ff_o.jpg", "secret": "0fcdf854ff", "media": "photo", "latitude": "0", "id": "26478519", "tags": "santacruz wharf beach"}, {"datetaken": "2005-07-16 19:00:24", "license": "1", "title": "1950s Victoria", "text": "", "album_id": "601575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26478545_7ecea748a2_o.jpg", "secret": "7ecea748a2", "media": "photo", "latitude": "0", "id": "26478545", "tags": "santacruz ford crown victoria 1956"}, {"datetaken": "2005-07-16 19:15:26", "license": "1", "title": "Tricycles", "text": "", "album_id": "601575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26478559_0f7182300d_o.jpg", "secret": "0f7182300d", "media": "photo", "latitude": "0", "id": "26478559", "tags": "santacruz tricycles"}, {"datetaken": "2005-07-09 19:49:00", "license": "6", "title": "Panther Beach", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/21/26455683_baee009a6e_o.jpg", "secret": "baee009a6e", "media": "photo", "latitude": "36.992930", "id": "26455683", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 19:50:00", "license": "6", "title": "Me and Chris' Winnie-the-Pooh Kite.", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/22/26455694_9145aadc45_o.jpg", "secret": "9145aadc45", "media": "photo", "latitude": "36.992930", "id": "26455694", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 19:50:12", "license": "6", "title": "This picture should be on the cover of National Geographic Magazine.", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/23/26455720_d9a9b381be_o.jpg", "secret": "d9a9b381be", "media": "photo", "latitude": "36.992930", "id": "26455720", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 19:52:21", "license": "6", "title": "Heavy Fog on the Moore's, Nah", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/21/26455778_4c3730f2cc_o.jpg", "secret": "4c3730f2cc", "media": "photo", "latitude": "36.992930", "id": "26455778", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 19:52:41", "license": "6", "title": "It's a metaphor", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/22/26455790_f3313a9423_o.jpg", "secret": "f3313a9423", "media": "photo", "latitude": "36.992930", "id": "26455790", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach"}, {"datetaken": "2005-07-09 19:52:55", "license": "6", "title": "Such a pretty beach", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/23/26455875_8ae4deca9a_o.jpg", "secret": "8ae4deca9a", "media": "photo", "latitude": "36.992930", "id": "26455875", "tags": "pantherbeach santacruz thenorcalawesome summer beach sunset"}, {"datetaken": "2005-07-09 19:53:01", "license": "6", "title": "Birds are so smart", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/22/26455911_feb8e9164d_o.jpg", "secret": "feb8e9164d", "media": "photo", "latitude": "36.992930", "id": "26455911", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 19:53:36", "license": "6", "title": "more of Panther", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/22/26455973_32ef0ea0a4_o.jpg", "secret": "32ef0ea0a4", "media": "photo", "latitude": "36.992930", "id": "26455973", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 19:53:46", "license": "6", "title": "Ahh childhood", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/23/26455993_c1898ace84_o.jpg", "secret": "c1898ace84", "media": "photo", "latitude": "36.992930", "id": "26455993", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 19:53:54", "license": "6", "title": "Holy Crap! Who's free-basing those rocks!", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/22/26456005_12a2717bdb_o.jpg", "secret": "12a2717bdb", "media": "photo", "latitude": "36.992930", "id": "26456005", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 19:54:02", "license": "6", "title": "Brian Is!", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/21/26456029_dbf451cc26_o.jpg", "secret": "dbf451cc26", "media": "photo", "latitude": "36.992930", "id": "26456029", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 19:54:21", "license": "6", "title": "Sweeeet", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/23/26456062_f5d36254fd_o.jpg", "secret": "f5d36254fd", "media": "photo", "latitude": "36.992930", "id": "26456062", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 19:55:47", "license": "6", "title": "Sunset is getting closer", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/23/26456109_304165956d_o.jpg", "secret": "304165956d", "media": "photo", "latitude": "36.992930", "id": "26456109", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 19:56:58", "license": "6", "title": "It was windy", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/22/26456117_406aff91e0_o.jpg", "secret": "406aff91e0", "media": "photo", "latitude": "36.992930", "id": "26456117", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 19:57:41", "license": "6", "title": "Furious sun", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/21/26456213_90a3c73f2e_o.jpg", "secret": "90a3c73f2e", "media": "photo", "latitude": "36.992930", "id": "26456213", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 20:00:15", "license": "6", "title": "Wave tag", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/22/26456310_4d42b250a2_o.jpg", "secret": "4d42b250a2", "media": "photo", "latitude": "36.992930", "id": "26456310", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 20:05:34", "license": "6", "title": "cool", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/22/26456418_230d50aa86_o.jpg", "secret": "230d50aa86", "media": "photo", "latitude": "36.992930", "id": "26456418", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 20:05:53", "license": "6", "title": "cool", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/23/26456432_bb500c67b6_o.jpg", "secret": "bb500c67b6", "media": "photo", "latitude": "36.992930", "id": "26456432", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 20:08:43", "license": "6", "title": "Evan and Brian w/ furious sun in bg", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/22/26456510_b569eafe51_o.jpg", "secret": "b569eafe51", "media": "photo", "latitude": "36.992930", "id": "26456510", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 20:15:05", "license": "6", "title": "Muddled sunset", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/21/26456564_f0ccb42c75_o.jpg", "secret": "f0ccb42c75", "media": "photo", "latitude": "36.992930", "id": "26456564", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 20:15:28", "license": "6", "title": "Cool kids being cool", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/21/26456660_3fe94d1176_o.jpg", "secret": "3fe94d1176", "media": "photo", "latitude": "36.992930", "id": "26456660", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 20:15:44", "license": "6", "title": "WE ARE DRINKING ON THE BEACH WOAAHH", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/21/26456736_642ed00ef9_o.jpg", "secret": "642ed00ef9", "media": "photo", "latitude": "36.992930", "id": "26456736", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-09 20:16:13", "license": "6", "title": "i guess evan attracts birds", "text": "", "album_id": "604048", "longitude": "-122.170039", "url_o": "https://farm1.staticflickr.com/23/26456742_5be22e55fa_o.jpg", "secret": "5be22e55fa", "media": "photo", "latitude": "36.992930", "id": "26456742", "tags": "pantherbeach santacruz thenorcalawesome summer fun beach sunset"}, {"datetaken": "2005-07-16 09:38:02", "license": "1", "title": "CIMG0001", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26370917_1c0cb3c9ed_o.jpg", "secret": "1c0cb3c9ed", "media": "photo", "latitude": "0", "id": "26370917", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 10:47:48", "license": "1", "title": "CIMG0002", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26370750_437ba31d01_o.jpg", "secret": "437ba31d01", "media": "photo", "latitude": "0", "id": "26370750", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 10:57:07", "license": "1", "title": "CIMG0003", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26370993_7d3cfe73e6_o.jpg", "secret": "7d3cfe73e6", "media": "photo", "latitude": "0", "id": "26370993", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 11:10:52", "license": "1", "title": "CIMG0005", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26370818_faca7d8098_o.jpg", "secret": "faca7d8098", "media": "photo", "latitude": "0", "id": "26370818", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 11:11:00", "license": "1", "title": "CIMG0007", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26370689_990bf11728_o.jpg", "secret": "990bf11728", "media": "photo", "latitude": "0", "id": "26370689", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 11:11:05", "license": "1", "title": "CIMG0008", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26371067_94e9409b54_o.jpg", "secret": "94e9409b54", "media": "photo", "latitude": "0", "id": "26371067", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 11:16:09", "license": "1", "title": "CIMG0009", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26371167_4bdb919117_o.jpg", "secret": "4bdb919117", "media": "photo", "latitude": "0", "id": "26371167", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 11:21:03", "license": "1", "title": "CIMG0011", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26371244_c825968230_o.jpg", "secret": "c825968230", "media": "photo", "latitude": "0", "id": "26371244", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 11:21:06", "license": "1", "title": "CIMG0012", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26371331_321ccbd63b_o.jpg", "secret": "321ccbd63b", "media": "photo", "latitude": "0", "id": "26371331", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 11:24:41", "license": "1", "title": "CIMG0016", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26371401_0b8e1b61b2_o.jpg", "secret": "0b8e1b61b2", "media": "photo", "latitude": "0", "id": "26371401", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 11:24:45", "license": "1", "title": "CIMG0017", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26375858_612cf33121_o.jpg", "secret": "612cf33121", "media": "photo", "latitude": "0", "id": "26375858", "tags": "ballade weekend saintmalo stmalo dinard france"}, {"datetaken": "2005-07-16 11:31:23", "license": "1", "title": "CIMG0018", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26371644_9295c99ea4_o.jpg", "secret": "9295c99ea4", "media": "photo", "latitude": "0", "id": "26371644", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 11:31:43", "license": "1", "title": "CIMG0019", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26371700_adffe2941c_o.jpg", "secret": "adffe2941c", "media": "photo", "latitude": "0", "id": "26371700", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 11:33:02", "license": "1", "title": "CIMG0021", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26371739_e5efe1e07a_o.jpg", "secret": "e5efe1e07a", "media": "photo", "latitude": "0", "id": "26371739", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 11:38:01", "license": "1", "title": "CIMG0022", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26371911_d2a333c649_o.jpg", "secret": "d2a333c649", "media": "photo", "latitude": "0", "id": "26371911", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 11:56:14", "license": "1", "title": "CIMG0025", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26372065_09f1ffc387_o.jpg", "secret": "09f1ffc387", "media": "photo", "latitude": "0", "id": "26372065", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 11:57:18", "license": "1", "title": "CIMG0028", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26372163_ca80cb6fab_o.jpg", "secret": "ca80cb6fab", "media": "photo", "latitude": "0", "id": "26372163", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 12:03:54", "license": "1", "title": "CIMG0029", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26372279_bd1665b0fa_o.jpg", "secret": "bd1665b0fa", "media": "photo", "latitude": "0", "id": "26372279", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 12:14:02", "license": "1", "title": "CIMG0039", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26372378_7fce36efc1_o.jpg", "secret": "7fce36efc1", "media": "photo", "latitude": "0", "id": "26372378", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 12:14:21", "license": "1", "title": "CIMG0040", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26372420_90b7debf8e_o.jpg", "secret": "90b7debf8e", "media": "photo", "latitude": "0", "id": "26372420", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 12:18:27", "license": "1", "title": "CIMG0044", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26372471_68c19b3f5c_o.jpg", "secret": "68c19b3f5c", "media": "photo", "latitude": "0", "id": "26372471", "tags": "france dinard stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 13:10:47", "license": "1", "title": "CIMG0048", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26376486_d0f40f4695_o.jpg", "secret": "d0f40f4695", "media": "photo", "latitude": "0", "id": "26376486", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 13:12:20", "license": "1", "title": "CIMG0050", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26377180_d013591c8a_o.jpg", "secret": "d013591c8a", "media": "photo", "latitude": "0", "id": "26377180", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 13:16:14", "license": "1", "title": "CIMG0051", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26377129_d5ed0d014e_o.jpg", "secret": "d5ed0d014e", "media": "photo", "latitude": "0", "id": "26377129", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 13:16:52", "license": "1", "title": "CIMG0053", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26377317_1452693dc2_o.jpg", "secret": "1452693dc2", "media": "photo", "latitude": "0", "id": "26377317", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 13:17:00", "license": "1", "title": "CIMG0054", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26377498_2693c0c1e4_o.jpg", "secret": "2693c0c1e4", "media": "photo", "latitude": "0", "id": "26377498", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 13:17:05", "license": "1", "title": "CIMG0055", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26377609_b44e58fa9d_o.jpg", "secret": "b44e58fa9d", "media": "photo", "latitude": "0", "id": "26377609", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 13:17:12", "license": "1", "title": "CIMG0056", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26377427_08e6508f0d_o.jpg", "secret": "08e6508f0d", "media": "photo", "latitude": "0", "id": "26377427", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 13:42:08", "license": "1", "title": "CIMG0068", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26376623_07434aa424_o.jpg", "secret": "07434aa424", "media": "photo", "latitude": "0", "id": "26376623", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 13:48:57", "license": "1", "title": "CIMG0074", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26376758_4cd8cf9bfb_o.jpg", "secret": "4cd8cf9bfb", "media": "photo", "latitude": "0", "id": "26376758", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 14:01:09", "license": "1", "title": "CIMG0078", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26376583_92e5196ce8_o.jpg", "secret": "92e5196ce8", "media": "photo", "latitude": "0", "id": "26376583", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 14:39:01", "license": "1", "title": "CIMG0083", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26376817_050d4351cd_o.jpg", "secret": "050d4351cd", "media": "photo", "latitude": "0", "id": "26376817", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 15:08:57", "license": "1", "title": "CIMG0085", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26376922_25d9ced8c6_o.jpg", "secret": "25d9ced8c6", "media": "photo", "latitude": "0", "id": "26376922", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 15:09:07", "license": "1", "title": "CIMG0086", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26376965_8f65a5819c_o.jpg", "secret": "8f65a5819c", "media": "photo", "latitude": "0", "id": "26376965", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 16:27:14", "license": "1", "title": "CIMG0087", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26377044_bfbb6e397d_o.jpg", "secret": "bfbb6e397d", "media": "photo", "latitude": "0", "id": "26377044", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 16:50:33", "license": "1", "title": "CIMG0090", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26377712_1eb0091fc1_o.jpg", "secret": "1eb0091fc1", "media": "photo", "latitude": "0", "id": "26377712", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 16:53:40", "license": "1", "title": "CIMG0098", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26377781_5e6931ce70_o.jpg", "secret": "5e6931ce70", "media": "photo", "latitude": "0", "id": "26377781", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 16:58:39", "license": "1", "title": "CIMG0103", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26377855_a6fcb0587b_o.jpg", "secret": "a6fcb0587b", "media": "photo", "latitude": "0", "id": "26377855", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 17:00:24", "license": "1", "title": "CIMG0107", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26377914_5de67845fd_o.jpg", "secret": "5de67845fd", "media": "photo", "latitude": "0", "id": "26377914", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 17:01:24", "license": "1", "title": "CIMG0108", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26378010_39c292dc21_o.jpg", "secret": "39c292dc21", "media": "photo", "latitude": "0", "id": "26378010", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 17:01:28", "license": "1", "title": "CIMG0109", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26378117_b7d78a576e_o.jpg", "secret": "b7d78a576e", "media": "photo", "latitude": "0", "id": "26378117", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 17:04:52", "license": "1", "title": "CIMG0122", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26378192_0aadd3be41_o.jpg", "secret": "0aadd3be41", "media": "photo", "latitude": "0", "id": "26378192", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 17:07:47", "license": "1", "title": "CIMG0128", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26378233_2371ff0947_o.jpg", "secret": "2371ff0947", "media": "photo", "latitude": "0", "id": "26378233", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 17:09:54", "license": "1", "title": "CIMG0129", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26378268_f400bc1f6d_o.jpg", "secret": "f400bc1f6d", "media": "photo", "latitude": "0", "id": "26378268", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2005-07-16 18:01:43", "license": "1", "title": "CIMG0130", "text": "", "album_id": "599274", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26377362_aaa819d412_o.jpg", "secret": "aaa819d412", "media": "photo", "latitude": "0", "id": "26377362", "tags": "dinard france stmalo saintmalo weekend ballade"}, {"datetaken": "2009-12-31 12:03:14", "license": "3", "title": "Grill'd - My favorite burger chain", "text": "", "album_id": "72157623227106842", "longitude": "153.382370", "url_o": "https://farm5.staticflickr.com/4045/4280982815_5e0a7bed21_o.jpg", "secret": "313a064f85", "media": "photo", "latitude": "-28.076132", "id": "4280982815", "tags": ""}, {"datetaken": "2009-12-31 15:04:19", "license": "3", "title": "The City of Gold Coast", "text": "", "album_id": "72157623227106842", "longitude": "153.431046", "url_o": "https://farm3.staticflickr.com/2714/4281726506_7f2e97a006_o.jpg", "secret": "08c5924f18", "media": "photo", "latitude": "-28.002279", "id": "4281726506", "tags": ""}, {"datetaken": "2009-12-31 15:07:21", "license": "3", "title": "The City of Gold Coast", "text": "", "album_id": "72157623227106842", "longitude": "153.431046", "url_o": "https://farm5.staticflickr.com/4072/4280983495_4268dfd738_o.jpg", "secret": "eea820e1f6", "media": "photo", "latitude": "-28.002279", "id": "4280983495", "tags": ""}, {"datetaken": "2009-12-31 15:54:23", "license": "3", "title": "We're at Surfers Paradise!", "text": "", "album_id": "72157623227106842", "longitude": "153.431046", "url_o": "https://farm5.staticflickr.com/4048/4281727202_6c1fbecd6d_o.jpg", "secret": "faf01819c3", "media": "photo", "latitude": "-28.002279", "id": "4281727202", "tags": ""}, {"datetaken": "2009-12-31 15:59:07", "license": "3", "title": "", "text": "", "album_id": "72157623227106842", "longitude": "153.431046", "url_o": "https://farm3.staticflickr.com/2671/4281727584_2f8273499e_o.jpg", "secret": "03b79a473d", "media": "photo", "latitude": "-28.002279", "id": "4281727584", "tags": ""}, {"datetaken": "2009-12-31 16:00:05", "license": "3", "title": "", "text": "", "album_id": "72157623227106842", "longitude": "153.431046", "url_o": "https://farm3.staticflickr.com/2667/4281727982_20dbc26163_o.jpg", "secret": "20dbc26163", "media": "photo", "latitude": "-28.002279", "id": "4281727982", "tags": ""}, {"datetaken": "2009-12-31 16:01:17", "license": "3", "title": "Sand sculpture on Surfers Paradise", "text": "", "album_id": "72157623227106842", "longitude": "153.431046", "url_o": "https://farm5.staticflickr.com/4008/4280984943_a3b37e1199_o.jpg", "secret": "1a8c4d8510", "media": "photo", "latitude": "-28.002279", "id": "4280984943", "tags": ""}, {"datetaken": "2009-12-31 16:01:29", "license": "3", "title": "Surfers Paradise", "text": "", "album_id": "72157623227106842", "longitude": "153.431046", "url_o": "https://farm5.staticflickr.com/4056/4280985325_c0768b9ba8_o.jpg", "secret": "c797eb873d", "media": "photo", "latitude": "-28.002279", "id": "4280985325", "tags": ""}, {"datetaken": "2009-12-31 16:02:46", "license": "3", "title": "Surfers Paradise", "text": "", "album_id": "72157623227106842", "longitude": "153.431046", "url_o": "https://farm3.staticflickr.com/2733/4280985613_d7584f4ca3_o.jpg", "secret": "37dc96d191", "media": "photo", "latitude": "-28.002279", "id": "4280985613", "tags": ""}, {"datetaken": "2009-12-31 16:08:55", "license": "3", "title": "", "text": "", "album_id": "72157623227106842", "longitude": "153.431046", "url_o": "https://farm5.staticflickr.com/4050/4280985935_2a1342d66c_o.jpg", "secret": "1c70d77f02", "media": "photo", "latitude": "-28.002279", "id": "4280985935", "tags": ""}, {"datetaken": "2009-12-31 16:09:49", "license": "3", "title": "Surfers Paradise", "text": "", "album_id": "72157623227106842", "longitude": "153.431046", "url_o": "https://farm3.staticflickr.com/2786/4281729614_bf6253a452_o.jpg", "secret": "16d1c0acdd", "media": "photo", "latitude": "-28.002279", "id": "4281729614", "tags": ""}, {"datetaken": "2009-12-31 20:18:43", "license": "3", "title": "Jess & I in a Tibetan restaurant", "text": "", "album_id": "72157623227106842", "longitude": "153.037354", "url_o": "https://farm5.staticflickr.com/4031/4281729916_5545e8d704_o.jpg", "secret": "65b7bbbe09", "media": "photo", "latitude": "-27.460173", "id": "4281729916", "tags": ""}, {"datetaken": "2009-12-31 20:19:31", "license": "3", "title": "Josh & I in a Tibetan restaurant", "text": "", "album_id": "72157623227106842", "longitude": "153.037354", "url_o": "https://farm5.staticflickr.com/4010/4281730264_135c90eb72_o.jpg", "secret": "e5f6a663b8", "media": "photo", "latitude": "-27.460173", "id": "4281730264", "tags": ""}, {"datetaken": "2009-12-31 20:21:22", "license": "3", "title": "Our favorite daahl soup", "text": "", "album_id": "72157623227106842", "longitude": "153.037354", "url_o": "https://farm3.staticflickr.com/2787/4280987261_838c32b196_o.jpg", "secret": "fe22289eed", "media": "photo", "latitude": "-27.460173", "id": "4280987261", "tags": ""}, {"datetaken": "2010-01-17 16:09:32", "license": "1", "title": "HLM", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2774/4281834275_f083d35c89_o.jpg", "secret": "ddb74cff17", "media": "photo", "latitude": "0", "id": "4281834275", "tags": ""}, {"datetaken": "2010-01-17 16:09:47", "license": "1", "title": "Crane", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4281834651_281fc45808_o.jpg", "secret": "570e4e0651", "media": "photo", "latitude": "0", "id": "4281834651", "tags": ""}, {"datetaken": "2010-01-17 16:15:45", "license": "1", "title": "Station", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4282579024_afe6e1a802_o.jpg", "secret": "412f17e4bc", "media": "photo", "latitude": "0", "id": "4282579024", "tags": ""}, {"datetaken": "2010-01-17 16:17:57", "license": "1", "title": "<", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4281835519_274165d0c1_o.jpg", "secret": "47524314d6", "media": "photo", "latitude": "0", "id": "4281835519", "tags": ""}, {"datetaken": "2010-01-17 16:23:17", "license": "1", "title": "ilil", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2719/4282579910_382b9ff0bc_o.jpg", "secret": "b720d2326e", "media": "photo", "latitude": "0", "id": "4282579910", "tags": ""}, {"datetaken": "2010-01-17 16:55:37", "license": "1", "title": "Greenland", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4282580332_98f3d66c07_o.jpg", "secret": "43886c12c6", "media": "photo", "latitude": "0", "id": "4282580332", "tags": ""}, {"datetaken": "2010-01-17 16:57:25", "license": "1", "title": "Beach", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4281836801_7ba1aa989d_o.jpg", "secret": "cbbc833daa", "media": "photo", "latitude": "0", "id": "4281836801", "tags": ""}, {"datetaken": "2010-01-17 17:01:11", "license": "1", "title": "Isle", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2577/4282581254_e4cb5c8825_o.jpg", "secret": "ec8d447306", "media": "photo", "latitude": "0", "id": "4282581254", "tags": ""}, {"datetaken": "2010-01-17 17:02:09", "license": "1", "title": "Storms over the ocean", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4281837583_18fb001d7b_o.jpg", "secret": "af7c6c3329", "media": "photo", "latitude": "0", "id": "4281837583", "tags": ""}, {"datetaken": "2010-01-17 17:10:20", "license": "1", "title": "Indian", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2737/4281837967_268621a978_o.jpg", "secret": "556f223f18", "media": "photo", "latitude": "0", "id": "4281837967", "tags": ""}, {"datetaken": "2010-01-17 17:27:19", "license": "1", "title": "Port", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4281838357_ec1af98204_o.jpg", "secret": "928dd0e2fe", "media": "photo", "latitude": "0", "id": "4281838357", "tags": ""}, {"datetaken": "2010-01-17 17:30:02", "license": "1", "title": "Samaritaine", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2802/4281838689_365eeebabf_o.jpg", "secret": "f9fe28ac19", "media": "photo", "latitude": "0", "id": "4281838689", "tags": ""}, {"datetaken": "2010-01-17 17:31:35", "license": "1", "title": "Old", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2687/4281838969_e1e4683b80_o.jpg", "secret": "e7e180ec31", "media": "photo", "latitude": "0", "id": "4281838969", "tags": ""}, {"datetaken": "2010-01-17 17:31:44", "license": "1", "title": "U", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4282583368_5edd3a495f_o.jpg", "secret": "404deebecb", "media": "photo", "latitude": "0", "id": "4282583368", "tags": ""}, {"datetaken": "2010-01-17 17:33:31", "license": "1", "title": "People", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2767/4282583846_0180712396_o.jpg", "secret": "9ed1c9ea60", "media": "photo", "latitude": "0", "id": "4282583846", "tags": ""}, {"datetaken": "2010-01-17 17:34:38", "license": "1", "title": "Arc", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2727/4281840079_f158620620_o.jpg", "secret": "7879cf015f", "media": "photo", "latitude": "0", "id": "4281840079", "tags": ""}, {"datetaken": "2010-01-17 17:35:02", "license": "1", "title": "Ruined", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2760/4281840493_6a0c9c6760_o.jpg", "secret": "3d13cd2187", "media": "photo", "latitude": "0", "id": "4281840493", "tags": ""}, {"datetaken": "2010-01-17 17:35:18", "license": "1", "title": "Laundry", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4281840987_5e6ed55bc0_o.jpg", "secret": "e6258921ef", "media": "photo", "latitude": "0", "id": "4281840987", "tags": ""}, {"datetaken": "2010-01-17 17:36:00", "license": "1", "title": "Beneath the Highway", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2713/4282585502_0fdc55d306_o.jpg", "secret": "a2ee77f2fc", "media": "photo", "latitude": "0", "id": "4282585502", "tags": ""}, {"datetaken": "2010-01-17 17:39:18", "license": "1", "title": "Marseille", "text": "", "album_id": "72157623229175918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2780/4281841805_86f44e565c_o.jpg", "secret": "8a8c72c4eb", "media": "photo", "latitude": "0", "id": "4281841805", "tags": ""}, {"datetaken": "2009-12-31 00:14:14", "license": "3", "title": "Xl-2", "text": "", "album_id": "72157623229527416", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4282705304_ec5d4bc2db_o.jpg", "secret": "91723feeb8", "media": "photo", "latitude": "0", "id": "4282705304", "tags": "party de fiesta leon fotografia alejandro whiteparty xl blessure fiestadeblanco fiestaenguatemala puertobeachparty fiestaenelpuerto"}, {"datetaken": "2009-12-31 00:15:08", "license": "3", "title": "Xl-3", "text": "", "album_id": "72157623229527416", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2729/4281955745_b4592f32d0_o.jpg", "secret": "0bb24e1234", "media": "photo", "latitude": "0", "id": "4281955745", "tags": "party de fiesta leon fotografia alejandro whiteparty xl blessure fiestadeblanco fiestaenguatemala puertobeachparty fiestaenelpuerto"}, {"datetaken": "2009-12-31 00:15:36", "license": "3", "title": "Xl-4", "text": "", "album_id": "72157623229527416", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4282698960_50eb499d76_o.jpg", "secret": "852663ee4a", "media": "photo", "latitude": "0", "id": "4282698960", "tags": "party de fiesta leon fotografia alejandro whiteparty xl blessure fiestadeblanco fiestaenguatemala puertobeachparty fiestaenelpuerto"}, {"datetaken": "2009-12-31 00:16:30", "license": "3", "title": "Xl-11", "text": "", "album_id": "72157623229527416", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4281949001_cc6b2d7ba5_o.jpg", "secret": "ea51b6e3c2", "media": "photo", "latitude": "0", "id": "4281949001", "tags": "party de fiesta leon fotografia alejandro whiteparty xl blessure fiestadeblanco fiestaenguatemala puertobeachparty fiestaenelpuerto"}, {"datetaken": "2009-12-31 00:16:37", "license": "3", "title": "Xl-2-2", "text": "", "album_id": "72157623229527416", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4281958507_0d628fe39e_o.jpg", "secret": "8860a486c7", "media": "photo", "latitude": "0", "id": "4281958507", "tags": "party de fiesta leon fotografia alejandro whiteparty xl blessure fiestadeblanco fiestaenguatemala puertobeachparty fiestaenelpuerto"}, {"datetaken": "2009-12-31 00:28:36", "license": "3", "title": "Xl-5", "text": "", "album_id": "72157623229527416", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4282697906_5488bcf70a_o.jpg", "secret": "3d5a8db8ee", "media": "photo", "latitude": "0", "id": "4282697906", "tags": "party de fiesta leon fotografia alejandro whiteparty xl blessure fiestadeblanco fiestaenguatemala puertobeachparty fiestaenelpuerto"}, {"datetaken": "2009-12-31 00:28:42", "license": "3", "title": "Xl-6", "text": "", "album_id": "72157623229527416", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4282697154_9d598de913_o.jpg", "secret": "01200f3f3a", "media": "photo", "latitude": "0", "id": "4282697154", "tags": "party de fiesta leon fotografia alejandro whiteparty xl blessure fiestadeblanco fiestaenguatemala puertobeachparty fiestaenelpuerto"}, {"datetaken": "2009-12-31 00:29:00", "license": "3", "title": "Xl-7", "text": "", "album_id": "72157623229527416", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2791/4282696496_7c691bb9d5_o.jpg", "secret": "cf41d8128d", "media": "photo", "latitude": "0", "id": "4282696496", "tags": "party de fiesta leon fotografia alejandro whiteparty xl blessure fiestadeblanco fiestaenguatemala puertobeachparty fiestaenelpuerto"}, {"datetaken": "2009-12-31 00:48:32", "license": "3", "title": "Xl-8", "text": "", "album_id": "72157623229527416", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2734/4282695314_b285633c44_o.jpg", "secret": "6f00ebbea9", "media": "photo", "latitude": "0", "id": "4282695314", "tags": "party de fiesta leon fotografia alejandro whiteparty xl blessure fiestadeblanco fiestaenguatemala puertobeachparty fiestaenelpuerto"}, {"datetaken": "2009-12-31 00:50:12", "license": "3", "title": "Xl-9", "text": "", "album_id": "72157623229527416", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4282694612_a61d17a184_o.jpg", "secret": "ebc3291895", "media": "photo", "latitude": "0", "id": "4282694612", "tags": "party de fiesta leon fotografia alejandro whiteparty xl blessure fiestadeblanco fiestaenguatemala puertobeachparty fiestaenelpuerto"}, {"datetaken": "2009-12-31 00:54:14", "license": "3", "title": "Xl-10", "text": "", "album_id": "72157623229527416", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2709/4281949683_d466eedae6_o.jpg", "secret": "f867a4017a", "media": "photo", "latitude": "0", "id": "4281949683", "tags": "party de fiesta leon fotografia alejandro whiteparty xl blessure fiestadeblanco fiestaenguatemala puertobeachparty fiestaenelpuerto"}, {"datetaken": "2009-11-26 19:16:17", "license": "4", "title": "Tobago 09", "text": "", "album_id": "72157623230196572", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2698/4282287061_3a2680f738_o.jpg", "secret": "0737afa180", "media": "photo", "latitude": "0", "id": "4282287061", "tags": ""}, {"datetaken": "2009-11-26 19:16:39", "license": "4", "title": "Tobago 09", "text": "", "album_id": "72157623230196572", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4283033722_440c4a87b6_o.jpg", "secret": "a622656244", "media": "photo", "latitude": "0", "id": "4283033722", "tags": ""}, {"datetaken": "2009-11-26 19:16:54", "license": "4", "title": "Tobago 09", "text": "", "album_id": "72157623230196572", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/4282290575_fef357232a_o.jpg", "secret": "82d34d2f41", "media": "photo", "latitude": "0", "id": "4282290575", "tags": ""}, {"datetaken": "2009-11-26 19:17:36", "license": "4", "title": "Tobago 09", "text": "", "album_id": "72157623230196572", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2685/4283036984_d2e311cf58_o.jpg", "secret": "1c0fd5cbd3", "media": "photo", "latitude": "0", "id": "4283036984", "tags": ""}, {"datetaken": "2009-11-26 21:02:36", "license": "4", "title": "Tobago 09", "text": "", "album_id": "72157623230196572", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2698/4283038574_ba8c26af47_o.jpg", "secret": "903643e0dc", "media": "photo", "latitude": "0", "id": "4283038574", "tags": ""}, {"datetaken": "2009-11-26 21:02:41", "license": "4", "title": "Tobago 09", "text": "", "album_id": "72157623230196572", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4282295407_3a85079cfd_o.jpg", "secret": "e9d2ac11a2", "media": "photo", "latitude": "0", "id": "4282295407", "tags": ""}, {"datetaken": "2009-11-26 21:02:57", "license": "4", "title": "Tobago 09", "text": "", "album_id": "72157623230196572", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4282297069_7b61cddb62_o.jpg", "secret": "12aac281b4", "media": "photo", "latitude": "0", "id": "4282297069", "tags": ""}, {"datetaken": "2009-11-26 21:03:40", "license": "4", "title": "Tobago 09", "text": "", "album_id": "72157623230196572", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4282298385_595b289015_o.jpg", "secret": "ac778d623e", "media": "photo", "latitude": "0", "id": "4282298385", "tags": ""}, {"datetaken": "2009-11-26 21:03:58", "license": "4", "title": "Tobago 09", "text": "", "album_id": "72157623230196572", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4283045398_e951410fdd_o.jpg", "secret": "64cc234fba", "media": "photo", "latitude": "0", "id": "4283045398", "tags": ""}, {"datetaken": "2009-11-26 21:04:10", "license": "4", "title": "Tobago 09", "text": "", "album_id": "72157623230196572", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4283047618_d0e9a6598f_o.jpg", "secret": "57814f123e", "media": "photo", "latitude": "0", "id": "4283047618", "tags": ""}, {"datetaken": "2009-11-26 21:04:19", "license": "4", "title": "Tobago 09", "text": "", "album_id": "72157623230196572", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4283049132_e694863405_o.jpg", "secret": "5aee23abf5", "media": "photo", "latitude": "0", "id": "4283049132", "tags": ""}, {"datetaken": "2009-12-21 13:16:39", "license": "2", "title": "DSCF1769", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm5.staticflickr.com/4045/4283662716_aabaa93b81_o.jpg", "secret": "bf526f53ce", "media": "photo", "latitude": "-42.420098", "id": "4283662716", "tags": "sea newzealand town kaikoura"}, {"datetaken": "2009-12-21 13:16:57", "license": "2", "title": "DSCF1770", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm5.staticflickr.com/4057/4283661054_a83f1ef83e_o.jpg", "secret": "a1a079110f", "media": "photo", "latitude": "-42.420098", "id": "4283661054", "tags": "newzealand me kaikoura"}, {"datetaken": "2009-12-21 13:18:13", "license": "2", "title": "Watch the birdy!", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm5.staticflickr.com/4041/4282925551_80ba036cb7_o.jpg", "secret": "de53d3e10f", "media": "photo", "latitude": "-42.420098", "id": "4282925551", "tags": "newzealand bird me funny kaikoura"}, {"datetaken": "2009-12-21 13:37:30", "license": "2", "title": "DSCF1772", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm3.staticflickr.com/2732/4283664368_5e8312c7a9_o.jpg", "secret": "8951b63907", "media": "photo", "latitude": "-42.420098", "id": "4283664368", "tags": "newzealand kaikoura"}, {"datetaken": "2009-12-21 13:38:18", "license": "2", "title": "DSCF1773", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm5.staticflickr.com/4055/4282923097_f16b84e9a8_o.jpg", "secret": "cd8c88da3a", "media": "photo", "latitude": "-42.420098", "id": "4282923097", "tags": "newzealand rocks shore plain kaikoura"}, {"datetaken": "2009-12-21 13:38:26", "license": "2", "title": "DSCF1774", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm3.staticflickr.com/2750/4283671888_54f522ef36_o.jpg", "secret": "e72f5ed441", "media": "photo", "latitude": "-42.420098", "id": "4283671888", "tags": "newzealand rock plain kaikoura"}, {"datetaken": "2009-12-21 13:39:03", "license": "2", "title": "DSCF1775", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm5.staticflickr.com/4027/4282919883_3dcfbc31f1_o.jpg", "secret": "448a317a4f", "media": "photo", "latitude": "-42.420098", "id": "4282919883", "tags": "newzealand seaweed rocks kaikoura"}, {"datetaken": "2009-12-21 13:39:12", "license": "2", "title": "DSCF1776", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm5.staticflickr.com/4015/4283667730_b79eb64ece_o.jpg", "secret": "efbc753fc5", "media": "photo", "latitude": "-42.420098", "id": "4283667730", "tags": "sea newzealand rocks kaikoura"}, {"datetaken": "2009-12-21 13:39:26", "license": "2", "title": "DSCF1777", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm3.staticflickr.com/2799/4283666240_95408e0d48_o.jpg", "secret": "f31faaed48", "media": "photo", "latitude": "-42.420098", "id": "4283666240", "tags": "newzealand seaweed rocks kaikoura"}, {"datetaken": "2009-12-21 13:39:51", "license": "2", "title": "DSCF1778", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm5.staticflickr.com/4055/4282923989_d151a4f5cb_o.jpg", "secret": "d75cc34d53", "media": "photo", "latitude": "-42.420098", "id": "4282923989", "tags": "sea newzealand rocks shore kaikoura"}, {"datetaken": "2009-12-21 13:39:58", "license": "2", "title": "DSCF1779", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm5.staticflickr.com/4040/4282927113_a5ff4fb15c_o.jpg", "secret": "0f861fe836", "media": "photo", "latitude": "-42.420098", "id": "4282927113", "tags": "newzealand rocks waves kaikoura crashing"}, {"datetaken": "2009-12-21 13:46:54", "license": "2", "title": "DSCF1780", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm5.staticflickr.com/4028/4282921549_6629a3c251_o.jpg", "secret": "5a2f499c2f", "media": "photo", "latitude": "-42.420098", "id": "4282921549", "tags": "sea newzealand kaikoura"}, {"datetaken": "2009-12-21 13:47:55", "license": "2", "title": "DSCF1781", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm3.staticflickr.com/2771/4283670198_dcc250740e_o.jpg", "secret": "ac51b802f1", "media": "photo", "latitude": "-42.420098", "id": "4283670198", "tags": "newzealand kaikoura"}, {"datetaken": "2009-12-21 13:48:20", "license": "2", "title": "DSCF1782", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm3.staticflickr.com/2703/4283675786_d660d19e12_o.jpg", "secret": "657a4ef1ed", "media": "photo", "latitude": "-42.420098", "id": "4283675786", "tags": "sea newzealand coast rocks kaikoura"}, {"datetaken": "2009-12-21 14:03:11", "license": "2", "title": "DSCF1783", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm5.staticflickr.com/4063/4283674108_e219ea9228_o.jpg", "secret": "5ab55bd224", "media": "photo", "latitude": "-42.420098", "id": "4283674108", "tags": "newzealand coast kaikoura"}, {"datetaken": "2009-12-21 14:08:23", "license": "2", "title": "DSCF1784", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm3.staticflickr.com/2720/4282927939_ba137fc21d_o.jpg", "secret": "2e15944376", "media": "photo", "latitude": "-42.420098", "id": "4282927939", "tags": "newzealand field farming hay bale kaikoura"}, {"datetaken": "2009-12-21 14:18:23", "license": "2", "title": "DSCF1785", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm3.staticflickr.com/2739/4282929505_8867d029d5_o.jpg", "secret": "9a4fffff4a", "media": "photo", "latitude": "-42.420098", "id": "4282929505", "tags": "newzealand field wind kaikoura"}, {"datetaken": "2009-12-21 14:45:30", "license": "2", "title": "Shore window", "text": "", "album_id": "72157623472187146", "longitude": "173.705520", "url_o": "https://farm5.staticflickr.com/4071/4283128169_b9c8290f40_o.jpg", "secret": "a87ddde6e9", "media": "photo", "latitude": "-42.420098", "id": "4283128169", "tags": "newzealand"}, {"datetaken": "2009-12-21 18:04:40", "license": "2", "title": "DSCF1790", "text": "", "album_id": "72157623472187146", "longitude": "173.683204", "url_o": "https://farm5.staticflickr.com/4002/4283128981_f753510511_o.jpg", "secret": "de2f035d53", "media": "photo", "latitude": "-42.404826", "id": "4283128981", "tags": "newzealand"}, {"datetaken": "2009-12-21 18:05:37", "license": "2", "title": "DSCF1792", "text": "", "album_id": "72157623472187146", "longitude": "173.683204", "url_o": "https://farm3.staticflickr.com/2799/4283130115_d727f26756_o.jpg", "secret": "bf4202a70a", "media": "photo", "latitude": "-42.404826", "id": "4283130115", "tags": "newzealand"}, {"datetaken": "2009-12-22 09:21:37", "license": "2", "title": "DSCF1793", "text": "", "album_id": "72157623472187146", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2792/4282934259_4cb283352f_o.jpg", "secret": "88f3fa0246", "media": "photo", "latitude": "0", "id": "4282934259", "tags": "newzealand"}, {"datetaken": "2009-12-22 09:21:57", "license": "2", "title": "DSCF1794", "text": "", "album_id": "72157623472187146", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4282931183_e554de95f8_o.jpg", "secret": "a22eb49ae0", "media": "photo", "latitude": "0", "id": "4282931183", "tags": "newzealand rocks seals kaikoura"}, {"datetaken": "2009-12-22 09:22:51", "license": "2", "title": "DSCF1795", "text": "", "album_id": "72157623472187146", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4283131795_74096f5f2b_o.jpg", "secret": "f6ac46e312", "media": "photo", "latitude": "0", "id": "4283131795", "tags": "newzealand"}, {"datetaken": "2009-12-22 09:25:34", "license": "2", "title": "DSCF1796", "text": "", "album_id": "72157623472187146", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4283876322_0f6a551e59_o.jpg", "secret": "5d51b2c72b", "media": "photo", "latitude": "0", "id": "4283876322", "tags": "newzealand"}, {"datetaken": "2009-12-22 09:33:00", "license": "2", "title": "DSCF1797", "text": "", "album_id": "72157623472187146", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4283678720_c79a14c896_o.jpg", "secret": "2c1ac8296c", "media": "photo", "latitude": "0", "id": "4283678720", "tags": "newzealand waterfall kaikoura"}, {"datetaken": "2009-12-22 09:34:56", "license": "2", "title": "DSCF1799", "text": "", "album_id": "72157623472187146", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2692/4282932647_e9db0ff53c_o.jpg", "secret": "638d6f11b9", "media": "photo", "latitude": "0", "id": "4282932647", "tags": "newzealand waterfall kaikoura"}, {"datetaken": "2009-11-29 20:53:42", "license": "3", "title": "silhouette", "text": "", "album_id": "72157623108347441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4284306988_52cfbcd2f1_o.jpg", "secret": "8238986975", "media": "photo", "latitude": "0", "id": "4284306988", "tags": ""}, {"datetaken": "2009-11-29 20:55:20", "license": "3", "title": "on the run", "text": "", "album_id": "72157623108347441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2749/4284307156_bd592d038c_o.jpg", "secret": "8bd7d7fbec", "media": "photo", "latitude": "0", "id": "4284307156", "tags": ""}, {"datetaken": "2009-11-29 20:57:56", "license": "3", "title": "sausage kingdom", "text": "", "album_id": "72157623108347441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4283563711_07da7ae495_o.jpg", "secret": "b8943c5ce4", "media": "photo", "latitude": "0", "id": "4283563711", "tags": ""}, {"datetaken": "2009-11-29 21:00:32", "license": "3", "title": "evaluate yourself", "text": "", "album_id": "72157623108347441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2793/4283564201_a95aa77f4f_o.jpg", "secret": "daf00eaae9", "media": "photo", "latitude": "0", "id": "4283564201", "tags": ""}, {"datetaken": "2009-11-29 21:03:40", "license": "3", "title": "dumbbells, cell phones and patriotic underpants", "text": "", "album_id": "72157623108347441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4284308232_972345c86c_o.jpg", "secret": "2284186b47", "media": "photo", "latitude": "0", "id": "4284308232", "tags": ""}, {"datetaken": "2009-11-29 21:05:24", "license": "3", "title": "palms in venice", "text": "", "album_id": "72157623108347441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4284308464_50c675b43c_o.jpg", "secret": "db72181b47", "media": "photo", "latitude": "0", "id": "4284308464", "tags": ""}, {"datetaken": "2009-11-29 21:19:12", "license": "3", "title": "hooping", "text": "", "album_id": "72157623108347441", "longitude": "-118.461853", "url_o": "https://farm3.staticflickr.com/2688/4283559903_ba194acb6d_o.jpg", "secret": "866c6f5e81", "media": "photo", "latitude": "33.991508", "id": "4283559903", "tags": "ocean california venice girls sky people woman beach girl silhouette circle sand nikon women waves purple boots dusk hula boardwalk backlit hooping d40x"}, {"datetaken": "2009-11-29 21:20:26", "license": "3", "title": "hula love", "text": "", "album_id": "72157623108347441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4284303978_0719d59219_o.jpg", "secret": "91e002f826", "media": "photo", "latitude": "0", "id": "4284303978", "tags": "ocean california venice girls sea sky woman color beach colors girl silhouette evening nikon women purple dusk hula backlit hooping hue d40x"}, {"datetaken": "2009-11-29 21:41:55", "license": "3", "title": "snapshot", "text": "", "album_id": "72157623108347441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2776/4284305336_c7d62752a2_o.jpg", "secret": "45bb0377f5", "media": "photo", "latitude": "0", "id": "4284305336", "tags": "california camera blue venice sky man tree beach cali photography evening photo hoodie nikon dusk snapshot stock picture palm boardwalk d40x"}, {"datetaken": "2009-11-29 21:43:56", "license": "3", "title": "debating", "text": "", "album_id": "72157623108347441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4284305642_e61119b408_o.jpg", "secret": "1b7a246bcd", "media": "photo", "latitude": "0", "id": "4284305642", "tags": "california venice man art beach shop tattoo evening nikon dusk body boardwalk henna d40x"}, {"datetaken": "2009-11-29 21:45:00", "license": "3", "title": "seedy underbelly", "text": "", "album_id": "72157623108347441", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4283562079_6ba02d3ec7_o.jpg", "secret": "f541e48d37", "media": "photo", "latitude": "0", "id": "4283562079", "tags": ""}, {"datetaken": "2009-11-29 21:47:47", "license": "3", "title": "body shop", "text": "", "album_id": "72157623108347441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2690/4284306252_1c2f91ba4a_o.jpg", "secret": "e1c495ce95", "media": "photo", "latitude": "0", "id": "4284306252", "tags": ""}, {"datetaken": "2009-11-29 21:49:28", "license": "3", "title": "speedway", "text": "", "album_id": "72157623108347441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4284306500_96b5c7b8c8_o.jpg", "secret": "dc19bdce6c", "media": "photo", "latitude": "0", "id": "4284306500", "tags": ""}, {"datetaken": "2009-11-29 21:49:32", "license": "3", "title": "one way", "text": "", "album_id": "72157623108347441", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4283562989_00bc8f4250_o.jpg", "secret": "28aa0acfc0", "media": "photo", "latitude": "0", "id": "4283562989", "tags": ""}, {"datetaken": "2010-01-16 07:50:57", "license": "3", "title": "Harbor lights", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4284015934_704cd5b32a_o.jpg", "secret": "e5cd5b667d", "media": "photo", "latitude": "0", "id": "4284015934", "tags": "wilmette dawnpatrol gilsonpark wilmetteharbor"}, {"datetaken": "2010-01-16 07:53:39", "license": "3", "title": "Water and ice", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4284016026_936c0fe865_o.jpg", "secret": "549d1c3a24", "media": "photo", "latitude": "0", "id": "4284016026", "tags": "wilmette dawnpatrol gilsonpark wilmetteharbor"}, {"datetaken": "2010-01-16 07:54:08", "license": "3", "title": "Wilmette Harbor pier walk", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4284016162_f45d86e526_o.jpg", "secret": "8e05a713fa", "media": "photo", "latitude": "0", "id": "4284016162", "tags": "wilmette dawnpatrol gilsonpark wilmetteharbor"}, {"datetaken": "2010-01-16 07:55:06", "license": "3", "title": "Bahi Temple from the Harbor", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2773/4284016218_7cff2d7d15_o.jpg", "secret": "2ea872fdc4", "media": "photo", "latitude": "0", "id": "4284016218", "tags": "wilmette dawnpatrol gilsonpark wilmetteharbor"}, {"datetaken": "2010-01-16 07:56:19", "license": "3", "title": "Reflections and geese", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4283272763_3f36c88d1c_o.jpg", "secret": "6db70df0f1", "media": "photo", "latitude": "0", "id": "4283272763", "tags": "wilmette dawnpatrol gilsonpark wilmetteharbor"}, {"datetaken": "2010-01-16 07:59:26", "license": "3", "title": "Pre Dawn Blues", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4284016432_ee83f1c7f2_o.jpg", "secret": "abca750026", "media": "photo", "latitude": "0", "id": "4284016432", "tags": "wilmette dawnpatrol gilsonpark wilmetteharbor"}, {"datetaken": "2010-01-16 08:05:45", "license": "3", "title": "Foggy Dawn Patrol", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4283274263_863413c8d7_o.jpg", "secret": "d652864f6b", "media": "photo", "latitude": "0", "id": "4283274263", "tags": "wilmette dawnpatrol gilsonpark wilmetteharbor"}, {"datetaken": "2010-01-16 08:22:05", "license": "3", "title": "South view of the Harbor Entrance", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4283272959_4007707052_o.jpg", "secret": "43ddcb2919", "media": "photo", "latitude": "0", "id": "4283272959", "tags": "wilmette dawnpatrol gilsonpark wilmetteharbor"}, {"datetaken": "2010-01-16 08:30:52", "license": "3", "title": "Break wall", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4283273047_22fe7d2c29_o.jpg", "secret": "e385db0a28", "media": "photo", "latitude": "0", "id": "4283273047", "tags": "wilmette dawnpatrol gilsonpark wilmetteharbor"}, {"datetaken": "2010-01-16 08:31:26", "license": "3", "title": "Sam contemplates our location", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4283274143_236d049eee_o.jpg", "secret": "9e56d659a3", "media": "photo", "latitude": "0", "id": "4283274143", "tags": "wilmette dawnpatrol gilsonpark wilmetteharbor"}, {"datetaken": "2010-01-16 08:32:33", "license": "3", "title": "Looking North from Wilmette Harbor", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4284016672_3a54ac56b4_o.jpg", "secret": "abed94a3b9", "media": "photo", "latitude": "0", "id": "4284016672", "tags": "wilmette dawnpatrol gilsonpark wilmetteharbor"}, {"datetaken": "2010-01-16 08:34:10", "license": "3", "title": "Mouth of the Harbor - Looking South", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4284016772_509e4e6cf8_o.jpg", "secret": "4840a76aed", "media": "photo", "latitude": "0", "id": "4284016772", "tags": "wilmette dawnpatrol gilsonpark wilmetteharbor"}, {"datetaken": "2010-01-16 08:37:36", "license": "3", "title": "Swans in the harbor", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4283273899_6ce8667853_o.jpg", "secret": "eb5e943ea5", "media": "photo", "latitude": "0", "id": "4283273899", "tags": "swan wilmette dawnpatrol gilsonpark wilmetteharbor wilmettewilmetteharborgilsonparkdawnpatrol"}, {"datetaken": "2010-01-16 08:37:45", "license": "3", "title": "\"Low tide\" geese reflections", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4283273973_7347c0f3c9_o.jpg", "secret": "a11debf1fb", "media": "photo", "latitude": "0", "id": "4283273973", "tags": "water reflections geese tide wilmette dawnpatrol gilsonpark wilmetteharbor wilmettewilmetteharborgilsonparkdawnpatrol"}, {"datetaken": "2010-01-16 08:39:09", "license": "3", "title": "Swan", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2696/4283273757_f5cb8532c1_o.jpg", "secret": "928a8b2466", "media": "photo", "latitude": "0", "id": "4283273757", "tags": "swan wilmette dawnpatrol gilsonpark wilmetteharbor wilmettewilmetteharborgilsonparkdawnpatrol"}, {"datetaken": "2010-01-16 08:40:30", "license": "3", "title": "Geese trespassing", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4283274029_edd339f796_o.jpg", "secret": "99e197470b", "media": "photo", "latitude": "0", "id": "4283274029", "tags": "water geese notrespassing wilmettewilmetteharborgilsonparkdawnpatrol"}, {"datetaken": "2010-01-16 08:47:50", "license": "3", "title": "Foot prints in the sand", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4284016892_4760ae6f40_o.jpg", "secret": "318828c249", "media": "photo", "latitude": "0", "id": "4284016892", "tags": "footprint wilmette dawnpatrol gilsonpark wilmetteharbor wilmettewilmetteharborgilsonparkdawnpatrol"}, {"datetaken": "2010-01-16 09:04:45", "license": "3", "title": "Wilmette Brick", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2780/4284017040_dfdcf41d6b_o.jpg", "secret": "e88e3ce379", "media": "photo", "latitude": "0", "id": "4284017040", "tags": "street brick wilmettewilmetteharborgilsonparkdawnpatrol"}, {"datetaken": "2010-01-16 11:56:30", "license": "3", "title": "Winnetka Ice", "text": "", "album_id": "72157623232423090", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4284017180_a4453a05ee_o.jpg", "secret": "be7c06af91", "media": "photo", "latitude": "0", "id": "4284017180", "tags": "ice beach winnetka dawnpatrol icebluff"}, {"datetaken": "2004-08-28 12:58:40", "license": "1", "title": "Kokkola 1.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913092_7133059c73_o.jpg", "secret": "7133059c73", "media": "photo", "latitude": "0", "id": "913092", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:00:15", "license": "1", "title": "Kokkola 2.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913191_5c48969a6b_o.jpg", "secret": "5c48969a6b", "media": "photo", "latitude": "0", "id": "913191", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:00:42", "license": "1", "title": "Kokkola 3.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913285_c48ce70df0_o.jpg", "secret": "c48ce70df0", "media": "photo", "latitude": "0", "id": "913285", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:01:22", "license": "1", "title": "Kokkola 4.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913300_d1bff00ed0_o.jpg", "secret": "d1bff00ed0", "media": "photo", "latitude": "0", "id": "913300", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:01:38", "license": "1", "title": "Kokkola 5.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913323_2a3a3f34f6_o.jpg", "secret": "2a3a3f34f6", "media": "photo", "latitude": "0", "id": "913323", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:02:33", "license": "1", "title": "Kokkola 6.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913350_3e786f45bc_o.jpg", "secret": "3e786f45bc", "media": "photo", "latitude": "0", "id": "913350", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:02:54", "license": "1", "title": "Kokkola 7.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913361_f977a13c6e_o.jpg", "secret": "f977a13c6e", "media": "photo", "latitude": "0", "id": "913361", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:05:00", "license": "1", "title": "Kokkola 8.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913371_b08ad353a0_o.jpg", "secret": "b08ad353a0", "media": "photo", "latitude": "0", "id": "913371", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:06:01", "license": "1", "title": "Kokkola 9.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913388_bf31812c1a_o.jpg", "secret": "bf31812c1a", "media": "photo", "latitude": "0", "id": "913388", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:06:28", "license": "1", "title": "Kokkola 10.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913105_16f7c8769f_o.jpg", "secret": "16f7c8769f", "media": "photo", "latitude": "0", "id": "913105", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:07:20", "license": "1", "title": "Kokkola 11.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913111_ebf1eadcd5_o.jpg", "secret": "ebf1eadcd5", "media": "photo", "latitude": "0", "id": "913111", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:10:16", "license": "1", "title": "Kokkola 12.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913115_392e01d98f_o.jpg", "secret": "392e01d98f", "media": "photo", "latitude": "0", "id": "913115", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:10:46", "license": "1", "title": "Kokkola 13.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913127_b88393cfc0_o.jpg", "secret": "b88393cfc0", "media": "photo", "latitude": "0", "id": "913127", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:12:12", "license": "1", "title": "Kokkola 14.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913134_624cf0058d_o.jpg", "secret": "624cf0058d", "media": "photo", "latitude": "0", "id": "913134", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:14:28", "license": "1", "title": "Kokkola 15.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913137_30a7ef50d0_o.jpg", "secret": "30a7ef50d0", "media": "photo", "latitude": "0", "id": "913137", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:15:04", "license": "1", "title": "Kokkola 16.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913148_12e7c29788_o.jpg", "secret": "12e7c29788", "media": "photo", "latitude": "0", "id": "913148", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:17:07", "license": "1", "title": "Kokkola 17.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913150_822ef0f55b_o.jpg", "secret": "822ef0f55b", "media": "photo", "latitude": "0", "id": "913150", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:19:06", "license": "1", "title": "Kokkola 18.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913161_b4f1cfcaa8_o.jpg", "secret": "b4f1cfcaa8", "media": "photo", "latitude": "0", "id": "913161", "tags": "kokkola venetsialaiset finland bricks wet rain bicycle street"}, {"datetaken": "2004-08-28 13:19:20", "license": "1", "title": "Kokkola 19.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913169_400a72b207_o.jpg", "secret": "400a72b207", "media": "photo", "latitude": "0", "id": "913169", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:19:29", "license": "1", "title": "Kokkola 20.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913197_5f3a8a8c6d_o.jpg", "secret": "5f3a8a8c6d", "media": "photo", "latitude": "0", "id": "913197", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:20:19", "license": "1", "title": "Kokkola 21.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913211_8ecb6dca20_o.jpg", "secret": "8ecb6dca20", "media": "photo", "latitude": "0", "id": "913211", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:23:40", "license": "1", "title": "Kokkola 22.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913220_d157015758_o.jpg", "secret": "d157015758", "media": "photo", "latitude": "0", "id": "913220", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:25:24", "license": "1", "title": "Kokkola 23.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913231_d113250bb0_o.jpg", "secret": "d113250bb0", "media": "photo", "latitude": "0", "id": "913231", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 13:29:37", "license": "1", "title": "Kokkola 24", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913238_162a913ba3_o.jpg", "secret": "162a913ba3", "media": "photo", "latitude": "0", "id": "913238", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 16:27:16", "license": "1", "title": "Kokkola 25", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913241_df802ef478_o.jpg", "secret": "df802ef478", "media": "photo", "latitude": "0", "id": "913241", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 17:31:19", "license": "1", "title": "Kokkola 26", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913250_e5a74abe3b_o.jpg", "secret": "e5a74abe3b", "media": "photo", "latitude": "0", "id": "913250", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 17:31:30", "license": "1", "title": "Kokkola 27", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913257_237bfd51fe_o.jpg", "secret": "237bfd51fe", "media": "photo", "latitude": "0", "id": "913257", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 17:31:43", "license": "1", "title": "Kokkola 28", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913261_d1f812c58d_o.jpg", "secret": "d1f812c58d", "media": "photo", "latitude": "0", "id": "913261", "tags": "kokkola venetsialaiset finland"}, {"datetaken": "2004-08-28 18:44:50", "license": "1", "title": "Kokkola 29.JPG", "text": "", "album_id": "23536", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/913264_6379d0a7c7_o.jpg", "secret": "6379d0a7c7", "media": "photo", "latitude": "0", "id": "913264", "tags": "beach finland bench postcard kokkola venetsialaiset"}, {"datetaken": "2004-11-13 16:25:26", "license": "1", "title": "Sailboat in Sandiego", "text": "", "album_id": "471463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20159765_99186e9089_o.jpg", "secret": "99186e9089", "media": "photo", "latitude": "0", "id": "20159765", "tags": "sandiego"}, {"datetaken": "2004-11-13 17:40:25", "license": "1", "title": "on the deck of the midway", "text": "", "album_id": "471463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20159860_3570d42344_o.jpg", "secret": "3570d42344", "media": "photo", "latitude": "0", "id": "20159860", "tags": "sandiego midway"}, {"datetaken": "2004-11-13 17:44:46", "license": "1", "title": "on the deck of the midway", "text": "", "album_id": "471463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20159914_3177373caf_o.jpg", "secret": "3177373caf", "media": "photo", "latitude": "0", "id": "20159914", "tags": "sandiego midway"}, {"datetaken": "2004-11-13 17:48:59", "license": "1", "title": "View of the bridge from the midway", "text": "", "album_id": "471463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20159992_a2fcc0b5c5_o.jpg", "secret": "a2fcc0b5c5", "media": "photo", "latitude": "0", "id": "20159992", "tags": "sandiego midway"}, {"datetaken": "2004-11-13 18:04:25", "license": "1", "title": "Battle Flag", "text": "", "album_id": "471463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20160075_dfe3a0f8ad_o.jpg", "secret": "dfe3a0f8ad", "media": "photo", "latitude": "0", "id": "20160075", "tags": "sandiego midway battleflag"}, {"datetaken": "2004-11-13 18:04:33", "license": "1", "title": "Battle Flag", "text": "", "album_id": "471463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20160139_9b4d926b34_o.jpg", "secret": "9b4d926b34", "media": "photo", "latitude": "0", "id": "20160139", "tags": "sandiego midway battleflag"}, {"datetaken": "2004-11-13 18:08:35", "license": "1", "title": "open", "text": "", "album_id": "471463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20160419_f0f8c6b75d_o.jpg", "secret": "f0f8c6b75d", "media": "photo", "latitude": "0", "id": "20160419", "tags": "sandiego midway"}, {"datetaken": "2004-11-13 18:08:43", "license": "1", "title": "closed", "text": "", "album_id": "471463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/20160335_187ba2acec_o.jpg", "secret": "187ba2acec", "media": "photo", "latitude": "0", "id": "20160335", "tags": "sandiego midway"}, {"datetaken": "2004-11-13 18:17:11", "license": "1", "title": "uss midway", "text": "", "album_id": "471463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/20160230_b2587ef67d_o.jpg", "secret": "b2587ef67d", "media": "photo", "latitude": "0", "id": "20160230", "tags": "sandiego midway"}, {"datetaken": "2004-11-14 17:12:33", "license": "1", "title": "DSCN0443.JPG", "text": "", "album_id": "471463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20160697_bdb751d47c_o.jpg", "secret": "bdb751d47c", "media": "photo", "latitude": "0", "id": "20160697", "tags": "sandiego lajolla"}, {"datetaken": "2004-11-14 17:17:10", "license": "1", "title": "mixed birds perched in the la jolla beach", "text": "", "album_id": "471463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20160633_7a2e48dc90_o.jpg", "secret": "7a2e48dc90", "media": "photo", "latitude": "0", "id": "20160633", "tags": "sandiego lajolla"}, {"datetaken": "2004-11-14 17:19:36", "license": "1", "title": "la jolla beach with seals", "text": "", "album_id": "471463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/20160534_8d3a323c00_o.jpg", "secret": "8d3a323c00", "media": "photo", "latitude": "0", "id": "20160534", "tags": "sandiego lajolla"}, {"datetaken": "2004-11-14 17:21:31", "license": "1", "title": "not my kids playing in the tides at la jolla beach", "text": "", "album_id": "471463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20160476_c8574b426a_o.jpg", "secret": "c8574b426a", "media": "photo", "latitude": "0", "id": "20160476", "tags": "sandiego lajolla"}, {"datetaken": "2004-11-14 17:29:04", "license": "1", "title": "DSCN0469.JPG", "text": "", "album_id": "471463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20160771_a77bef0d5c_o.jpg", "secret": "a77bef0d5c", "media": "photo", "latitude": "0", "id": "20160771", "tags": "sandiego lajolla"}, {"datetaken": "2004-11-14 17:29:23", "license": "1", "title": "the seaside near la jolla", "text": "", "album_id": "471463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20160863_473e40658a_o.jpg", "secret": "473e40658a", "media": "photo", "latitude": "0", "id": "20160863", "tags": "sandiego lajolla"}, {"datetaken": "2004-11-14 17:41:09", "license": "1", "title": "Church in down town la jolla", "text": "", "album_id": "471463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20161003_48d053fe5e_o.jpg", "secret": "48d053fe5e", "media": "photo", "latitude": "0", "id": "20161003", "tags": "sandiego lajolla"}, {"datetaken": "2004-11-14 17:42:14", "license": "1", "title": "Fountain in Downtown la Jolla", "text": "", "album_id": "471463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20161100_c6b81db55f_o.jpg", "secret": "c6b81db55f", "media": "photo", "latitude": "0", "id": "20161100", "tags": "sandiego lajolla"}, {"datetaken": "2005-04-23 10:44:11", "license": "3", "title": "WK1_1000M_HEAT_1_1ST_01__LE", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20160174_110229dfc4_o.jpg", "secret": "110229dfc4", "media": "photo", "latitude": "0", "id": "20160174", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-23 10:44:16", "license": "3", "title": "WK1_1000M_HEAT_1_1ST_02__LE", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20160236_c8317fd1cc_o.jpg", "secret": "c8317fd1cc", "media": "photo", "latitude": "0", "id": "20160236", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-23 10:44:41", "license": "3", "title": "WK1_1000M_HEAT_1_1ST_03__LE", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/20160318_d724f7547b_o.jpg", "secret": "d724f7547b", "media": "photo", "latitude": "0", "id": "20160318", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 10:35:06", "license": "3", "title": "WK1_1000M_FINAL_1ST_01__LEE", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20160017_035436291d_o.jpg", "secret": "035436291d", "media": "photo", "latitude": "0", "id": "20160017", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 10:35:29", "license": "3", "title": "WK1_1000M_FINAL_1ST_02__LEE", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20160080_469e8d86d7_o.jpg", "secret": "469e8d86d7", "media": "photo", "latitude": "0", "id": "20160080", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 10:35:36", "license": "3", "title": "WK1_1000M_FINAL_1ST_03__LEE", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20160129_19aa1ed586_o.jpg", "secret": "19aa1ed586", "media": "photo", "latitude": "0", "id": "20160129", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 10:45:14", "license": "3", "title": "MK2_1000M_FINAL_1ST_01__NAD", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20159771_76b754e8f6_o.jpg", "secret": "76b754e8f6", "media": "photo", "latitude": "0", "id": "20159771", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 10:45:22", "license": "3", "title": "MK2_1000M_FINAL_1ST_02__NAD", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20159814_7870ef6970_o.jpg", "secret": "7870ef6970", "media": "photo", "latitude": "0", "id": "20159814", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 11:43:11", "license": "3", "title": "WK2_1000M_FINAL_2ND_DQ_01__", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/20160567_40983d8371_o.jpg", "secret": "40983d8371", "media": "photo", "latitude": "0", "id": "20160567", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 11:43:15", "license": "3", "title": "WK2_1000M_FINAL_2ND_DQ_02__", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20160616_e6060451d7_o.jpg", "secret": "e6060451d7", "media": "photo", "latitude": "0", "id": "20160616", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 11:43:29", "license": "3", "title": "WK2_1000M_FINAL_2ND_DQ_03__", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20160654_103d20b06f_o.jpg", "secret": "103d20b06f", "media": "photo", "latitude": "0", "id": "20160654", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 11:44:22", "license": "3", "title": "WK2_1000M_FINAL_2ND_DQ_04__", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20160694_a5012270fd_o.jpg", "secret": "a5012270fd", "media": "photo", "latitude": "0", "id": "20160694", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 12:20:58", "license": "3", "title": "MK2_500M_6TH_01__CHONG___YI", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20159658_034f4eb54e_o.jpg", "secret": "034f4eb54e", "media": "photo", "latitude": "0", "id": "20159658", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 12:21:51", "license": "3", "title": "MK2_500M_6TH_02__CHONG___YI", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20159727_8d65bdebb1_o.jpg", "secret": "8d65bdebb1", "media": "photo", "latitude": "0", "id": "20159727", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 12:29:57", "license": "3", "title": "WK2_500M_SF_3RD_01__SHIJIA_", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20160409_4a3c72befa_o.jpg", "secret": "4a3c72befa", "media": "photo", "latitude": "0", "id": "20160409", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 12:30:02", "license": "3", "title": "WK2_500M_SF_3RD_02__SHIJIA_", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20160460_0c5483422c_o.jpg", "secret": "0c5483422c", "media": "photo", "latitude": "0", "id": "20160460", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 12:30:53", "license": "3", "title": "WK2_500M_SF_3RD_03__SHIJIA_", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20160511_0d6f513e7d_o.jpg", "secret": "0d6f513e7d", "media": "photo", "latitude": "0", "id": "20160511", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 12:34:24", "license": "3", "title": "MK1_500M_SF_1ST_01__TI_YAN_", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20159436_390266b352_o.jpg", "secret": "390266b352", "media": "photo", "latitude": "0", "id": "20159436", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 12:34:37", "license": "3", "title": "MK1_500M_SF_1ST_02__TI_YAN_", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20159511_57647ca954_o.jpg", "secret": "57647ca954", "media": "photo", "latitude": "0", "id": "20159511", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 12:35:17", "license": "3", "title": "MK1_500M_SF_1ST_03__TI_YAN_", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20159559_509a6ce0b1_o.jpg", "secret": "509a6ce0b1", "media": "photo", "latitude": "0", "id": "20159559", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 12:35:24", "license": "3", "title": "MK1_500M_SF_1ST_04__TI_YAN_", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20159599_36f5a97c93_o.jpg", "secret": "36f5a97c93", "media": "photo", "latitude": "0", "id": "20159599", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 14:08:46", "license": "3", "title": "WK1_500M_FINAL_2ND_01__MARJ", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20159856_502e9091d3_o.jpg", "secret": "502e9091d3", "media": "photo", "latitude": "0", "id": "20159856", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 14:09:07", "license": "3", "title": "WK1_500M_FINAL_2ND_02__MARJ", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20159911_afa0feb973_o.jpg", "secret": "afa0feb973", "media": "photo", "latitude": "0", "id": "20159911", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 14:09:21", "license": "3", "title": "WK1_500M_FINAL_2ND_03__MARJ", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20159968_5ef243b7e0_o.jpg", "secret": "5ef243b7e0", "media": "photo", "latitude": "0", "id": "20159968", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 14:41:35", "license": "3", "title": "WK4_500M_FINAL_1ST_01__WEIL", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20160756_63051da13e_o.jpg", "secret": "63051da13e", "media": "photo", "latitude": "0", "id": "20160756", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 14:41:45", "license": "3", "title": "WK4_500M_FINAL_1ST_02__WEIL", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20160817_e5293bbb1f_o.jpg", "secret": "e5293bbb1f", "media": "photo", "latitude": "0", "id": "20160817", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 14:43:00", "license": "3", "title": "WK4_500M_FINAL_1ST_03__WEIL", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20160856_48f3bd3fdb_o.jpg", "secret": "48f3bd3fdb", "media": "photo", "latitude": "0", "id": "20160856", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 14:48:04", "license": "3", "title": "MK1_500M_FINAL_4TH_01__TI_Y", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20160899_217466594c_o.jpg", "secret": "217466594c", "media": "photo", "latitude": "0", "id": "20160899", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 14:48:16", "license": "3", "title": "MK1_500M_FINAL_4TH_02__TI_Y", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20160955_e75bb9422e_o.jpg", "secret": "e75bb9422e", "media": "photo", "latitude": "0", "id": "20160955", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 14:48:22", "license": "3", "title": "MK1_500M_FINAL_4TH_03__TI_Y", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20161020_10883fad58_o.jpg", "secret": "10883fad58", "media": "photo", "latitude": "0", "id": "20161020", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 14:48:44", "license": "3", "title": "MK1_500M_FINAL_4TH_05__TI_Y", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20159123_865ddf8bc4_o.jpg", "secret": "865ddf8bc4", "media": "photo", "latitude": "0", "id": "20159123", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 14:48:51", "license": "3", "title": "MK1_500M_FINAL_4TH_06__TI_Y", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20159182_cc63278380_o.jpg", "secret": "cc63278380", "media": "photo", "latitude": "0", "id": "20159182", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 14:48:56", "license": "3", "title": "MK1_500M_FINAL_4TH_07__TI_Y", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20159244_d1ce574073_o.jpg", "secret": "d1ce574073", "media": "photo", "latitude": "0", "id": "20159244", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 14:49:34", "license": "3", "title": "MK1_500M_FINAL_4TH_08__TI_Y", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20159306_8b8af23f14_o.jpg", "secret": "8b8af23f14", "media": "photo", "latitude": "0", "id": "20159306", "tags": "team2005 njcc2005"}, {"datetaken": "2005-04-24 14:49:46", "license": "3", "title": "MK1_500M_FINAL_4TH_09__TI_Y", "text": "", "album_id": "471474", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20159365_64bdd032da_o.jpg", "secret": "64bdd032da", "media": "photo", "latitude": "0", "id": "20159365", "tags": "team2005 njcc2005"}, {"datetaken": "2005-07-18 18:18:51", "license": "3", "title": "Cleendra long walk 002", "text": "", "album_id": "609127", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26871599_074f6d43c8_o.jpg", "secret": "074f6d43c8", "media": "photo", "latitude": "0", "id": "26871599", "tags": "cleendra"}, {"datetaken": "2005-07-18 18:18:56", "license": "3", "title": "Cleendra long walk 003", "text": "", "album_id": "609127", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26871616_67f11a6820_o.jpg", "secret": "67f11a6820", "media": "photo", "latitude": "0", "id": "26871616", "tags": "cleendra"}, {"datetaken": "2005-07-18 18:19:03", "license": "3", "title": "Cleendra long walk 004", "text": "", "album_id": "609127", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26871635_46a1ac28b2_o.jpg", "secret": "46a1ac28b2", "media": "photo", "latitude": "0", "id": "26871635", "tags": "cleendra"}, {"datetaken": "2005-07-18 18:19:09", "license": "3", "title": "Cleendra long walk 005", "text": "", "album_id": "609127", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26871655_ff99b3a755_o.jpg", "secret": "ff99b3a755", "media": "photo", "latitude": "0", "id": "26871655", "tags": "cleendra"}, {"datetaken": "2005-07-18 18:19:14", "license": "3", "title": "Cleendra long walk 006", "text": "", "album_id": "609127", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26871689_27ed2b1edf_o.jpg", "secret": "27ed2b1edf", "media": "photo", "latitude": "0", "id": "26871689", "tags": "cleendra"}, {"datetaken": "2005-07-18 18:19:20", "license": "3", "title": "Cleendra long walk 007", "text": "", "album_id": "609127", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26871717_524317cef7_o.jpg", "secret": "524317cef7", "media": "photo", "latitude": "0", "id": "26871717", "tags": "cleendra"}, {"datetaken": "2005-07-18 18:19:26", "license": "3", "title": "Cleendra long walk 008", "text": "", "album_id": "609127", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26871737_3fdb17ff0e_o.jpg", "secret": "3fdb17ff0e", "media": "photo", "latitude": "0", "id": "26871737", "tags": "cleendra"}, {"datetaken": "2005-07-18 18:19:28", "license": "3", "title": "Cleendra long walk 009", "text": "", "album_id": "609127", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26871749_b4ea0077c4_o.jpg", "secret": "b4ea0077c4", "media": "photo", "latitude": "0", "id": "26871749", "tags": "cleendra"}, {"datetaken": "2005-07-18 18:19:34", "license": "3", "title": "Cleendra long walk 010", "text": "", "album_id": "609127", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26871775_538321839c_o.jpg", "secret": "538321839c", "media": "photo", "latitude": "0", "id": "26871775", "tags": "cleendra"}, {"datetaken": "2005-07-18 18:19:40", "license": "3", "title": "Cleendra long walk 011", "text": "", "album_id": "609127", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26871802_7e8603005b_o.jpg", "secret": "7e8603005b", "media": "photo", "latitude": "0", "id": "26871802", "tags": "cleendra"}, {"datetaken": "2005-07-18 18:19:45", "license": "3", "title": "Cleendra long walk 012", "text": "", "album_id": "609127", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26871816_49ed9fb72e_o.jpg", "secret": "49ed9fb72e", "media": "photo", "latitude": "0", "id": "26871816", "tags": "cleendra"}, {"datetaken": "2005-07-18 18:19:48", "license": "3", "title": "Cleendra long walk 013", "text": "", "album_id": "609127", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26871824_0ea2cfc6f2_o.jpg", "secret": "0ea2cfc6f2", "media": "photo", "latitude": "0", "id": "26871824", "tags": "cleendra"}, {"datetaken": "2005-07-18 18:19:53", "license": "3", "title": "Cleendra long walk 014", "text": "", "album_id": "609127", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26871854_8caa40321b_o.jpg", "secret": "8caa40321b", "media": "photo", "latitude": "0", "id": "26871854", "tags": "cleendra"}, {"datetaken": "2005-07-18 18:19:57", "license": "3", "title": "Cleendra long walk 015", "text": "", "album_id": "609127", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26871874_ced8c4b8e6_o.jpg", "secret": "ced8c4b8e6", "media": "photo", "latitude": "0", "id": "26871874", "tags": "cleendra"}, {"datetaken": "2005-07-17 10:40:21", "license": "3", "title": "Corfe Castle Ruins", "text": "", "album_id": "612755", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26902527_262a01af2a_o.jpg", "secret": "262a01af2a", "media": "photo", "latitude": "0", "id": "26902527", "tags": "swanage dorset steam railway 80078 corfecastle"}, {"datetaken": "2005-07-17 10:40:33", "license": "3", "title": "The view from the Guard's Van", "text": "", "album_id": "612755", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26902418_ce321ab4d4_o.jpg", "secret": "ce321ab4d4", "media": "photo", "latitude": "0", "id": "26902418", "tags": "swanage dorset steam railway 80078 corfecastle"}, {"datetaken": "2005-07-17 10:43:42", "license": "3", "title": "View along the train", "text": "", "album_id": "612755", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26902628_019503d987_o.jpg", "secret": "019503d987", "media": "photo", "latitude": "0", "id": "26902628", "tags": "swanage dorset steam railway 80078"}, {"datetaken": "2005-07-17 10:46:58", "license": "3", "title": "Another shot down the train", "text": "", "album_id": "612755", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26902700_37ea3806bb_o.jpg", "secret": "37ea3806bb", "media": "photo", "latitude": "0", "id": "26902700", "tags": "swanage dorset steam railway 80078"}, {"datetaken": "2005-07-17 11:36:38", "license": "3", "title": "80078 topping off", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/23/26902770_7fae35dbc6_o.jpg", "secret": "7fae35dbc6", "media": "photo", "latitude": "50.610069", "id": "26902770", "tags": "swanage dorset steam railway 80078"}, {"datetaken": "2005-07-17 11:36:42", "license": "3", "title": "80078 topping off...", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/23/26902836_0359f4edb8_o.jpg", "secret": "0359f4edb8", "media": "photo", "latitude": "50.610069", "id": "26902836", "tags": "swanage dorset steam railway 80078"}, {"datetaken": "2005-07-17 11:38:56", "license": "3", "title": "Preparing to go", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/22/26902901_5bfb0b7e6f_o.jpg", "secret": "5bfb0b7e6f", "media": "photo", "latitude": "50.610069", "id": "26902901", "tags": "swanage dorset steam railway 80078"}, {"datetaken": "2005-07-17 11:39:11", "license": "3", "title": "80078 in Swanage Station", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/22/26902971_bf2192c3e4_o.jpg", "secret": "bf2192c3e4", "media": "photo", "latitude": "50.610069", "id": "26902971", "tags": "swanage dorset steam railway 80078"}, {"datetaken": "2005-07-17 11:40:02", "license": "3", "title": "Getting acclimatised", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/22/26903018_2c285e403b_o.jpg", "secret": "2c285e403b", "media": "photo", "latitude": "50.610069", "id": "26903018", "tags": "swanage dorset steam railway 80078"}, {"datetaken": "2005-07-17 11:40:41", "license": "3", "title": "Shunting", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/23/26903110_b52171975e_o.jpg", "secret": "b52171975e", "media": "photo", "latitude": "50.610069", "id": "26903110", "tags": "swanage dorset steam railway 80078"}, {"datetaken": "2005-07-17 11:42:08", "license": "3", "title": "Bowing to public pressure...", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/23/26903189_93088eed0d_o.jpg", "secret": "93088eed0d", "media": "photo", "latitude": "50.610069", "id": "26903189", "tags": "swanage dorset steam railway 80078"}, {"datetaken": "2005-07-17 11:48:30", "license": "3", "title": "Learning the ropes", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/22/26903258_6120a5fe3a_o.jpg", "secret": "6120a5fe3a", "media": "photo", "latitude": "50.610069", "id": "26903258", "tags": "swanage dorset steam railway 80078"}, {"datetaken": "2005-07-17 12:54:20", "license": "3", "title": "Home again", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/23/26903319_64bd792820_o.jpg", "secret": "64bd792820", "media": "photo", "latitude": "50.610069", "id": "26903319", "tags": "swanage dorset steam railway 80078"}, {"datetaken": "2005-07-17 12:54:26", "license": "3", "title": "Time to go", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/21/26903379_fed05783f9_o.jpg", "secret": "fed05783f9", "media": "photo", "latitude": "50.610069", "id": "26903379", "tags": "swanage dorset steam railway 80078"}, {"datetaken": "2005-07-17 12:54:58", "license": "3", "title": "Footplate, nearly", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/21/26903451_da897d4155_o.jpg", "secret": "da897d4155", "media": "photo", "latitude": "50.610069", "id": "26903451", "tags": "swanage dorset steam railway 80078"}, {"datetaken": "2005-07-17 12:55:00", "license": "3", "title": "Steam Heat", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/21/26903565_302091b7e3_o.jpg", "secret": "302091b7e3", "media": "photo", "latitude": "50.610069", "id": "26903565", "tags": "swanage dorset steam railway 80078"}, {"datetaken": "2005-07-17 13:42:24", "license": "3", "title": "No Fish Today", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/23/26903630_659920bc30_o.jpg", "secret": "659920bc30", "media": "photo", "latitude": "50.610069", "id": "26903630", "tags": "swanage dorset beach sea pier mooring yachts boats boy fishing"}, {"datetaken": "2005-07-17 13:42:45", "license": "3", "title": "Idyllic...", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/22/26903719_a87e7cea80_o.jpg", "secret": "a87e7cea80", "media": "photo", "latitude": "50.610069", "id": "26903719", "tags": "swanage dorset beach pier sea mooring yachts boats"}, {"datetaken": "2005-07-17 13:43:01", "license": "3", "title": "Looking for hats...", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/22/26903844_d244ec840f_o.jpg", "secret": "d244ec840f", "media": "photo", "latitude": "50.610069", "id": "26903844", "tags": "swanage dorset beach family nan mum maria"}, {"datetaken": "2005-07-17 15:51:11", "license": "3", "title": "Swanage Beach (1)", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/21/26903926_ff168016e7_o.jpg", "secret": "ff168016e7", "media": "photo", "latitude": "50.610069", "id": "26903926", "tags": "swanage dorset beach family sea sun sand bathing"}, {"datetaken": "2005-07-17 15:51:33", "license": "3", "title": "Swanage Beach (2)", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/23/26904004_5ed28b5c4f_o.jpg", "secret": "5ed28b5c4f", "media": "photo", "latitude": "50.610069", "id": "26904004", "tags": "swanage dorset beach family sun sea sand boats yachts"}, {"datetaken": "2005-07-17 15:51:48", "license": "3", "title": "Lookouts", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/21/26904095_57082243bf_o.jpg", "secret": "57082243bf", "media": "photo", "latitude": "50.610069", "id": "26904095", "tags": "swanage dorset beach family mum nan maria shirl sun sand sea deckchairs"}, {"datetaken": "2005-07-17 16:33:11", "license": "3", "title": "Waiting for a train", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/23/26904176_8d76d1410a_o.jpg", "secret": "8d76d1410a", "media": "photo", "latitude": "50.610069", "id": "26904176", "tags": "swanage dorset steam railway station"}, {"datetaken": "2005-07-17 16:34:10", "license": "3", "title": "Arriving at the platform", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/21/26904384_5577e946dc_o.jpg", "secret": "5577e946dc", "media": "photo", "latitude": "50.610069", "id": "26904384", "tags": "swanage dorset steam railway station"}, {"datetaken": "2005-07-17 16:34:22", "license": "3", "title": "Waiting at the platform", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/21/26904467_24a4286cd0_o.jpg", "secret": "24a4286cd0", "media": "photo", "latitude": "50.610069", "id": "26904467", "tags": "swanage dorset steam railway"}, {"datetaken": "2005-07-17 16:48:16", "license": "3", "title": "Station shadows", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/23/26904580_ff7a962cef_o.jpg", "secret": "ff7a962cef", "media": "photo", "latitude": "50.610069", "id": "26904580", "tags": "swanage dorset steam railway platform"}, {"datetaken": "2005-07-17 16:48:39", "license": "3", "title": "Swanage platform (1)", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/23/26904647_fbc524ec20_o.jpg", "secret": "fbc524ec20", "media": "photo", "latitude": "50.610069", "id": "26904647", "tags": "swanage dorset steam railway platform"}, {"datetaken": "2005-07-17 16:51:41", "license": "3", "title": "Swanage platform (2)", "text": "", "album_id": "612755", "longitude": "-1.960630", "url_o": "https://farm1.staticflickr.com/21/26904704_aa363ccd62_o.jpg", "secret": "aa363ccd62", "media": "photo", "latitude": "50.610069", "id": "26904704", "tags": "swanage dorset steam railway platform"}, {"datetaken": "2005-07-17 17:07:48", "license": "3", "title": "170705_28", "text": "", "album_id": "612755", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26904783_0fc353b6d3_o.jpg", "secret": "0fc353b6d3", "media": "photo", "latitude": "0", "id": "26904783", "tags": "swanage dorset steam railway 80078 stuart ruffell"}, {"datetaken": "2005-07-17 17:08:04", "license": "3", "title": "170705_29", "text": "", "album_id": "612755", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26904840_502e1cf97d_o.jpg", "secret": "502e1cf97d", "media": "photo", "latitude": "0", "id": "26904840", "tags": "swanage dorset steam railway 80078 stuart ruffell"}, {"datetaken": "2005-07-17 17:11:11", "license": "3", "title": "Dorset countryside", "text": "", "album_id": "612755", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26904902_a4b688a579_o.jpg", "secret": "a4b688a579", "media": "photo", "latitude": "0", "id": "26904902", "tags": "swanage dorset steam railway countryside"}, {"datetaken": "2005-07-17 17:13:12", "license": "3", "title": "Steaming through Dorset", "text": "", "album_id": "612755", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26905003_7a8f7012ef_o.jpg", "secret": "7a8f7012ef", "media": "photo", "latitude": "0", "id": "26905003", "tags": "swanage dorset steam railway"}, {"datetaken": "2005-07-17 17:13:25", "license": "3", "title": "Way distant Corfe", "text": "", "album_id": "612755", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26905070_a1a645d133_o.jpg", "secret": "a1a645d133", "media": "photo", "latitude": "0", "id": "26905070", "tags": "swanage dorset steam railway corfecastle"}, {"datetaken": "2005-07-17 17:13:56", "license": "3", "title": "Good to Go", "text": "", "album_id": "612755", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26905162_45408f6c9e_o.jpg", "secret": "45408f6c9e", "media": "photo", "latitude": "0", "id": "26905162", "tags": "swanage dorset steam railway corfecastle"}, {"datetaken": "2005-07-17 17:14:16", "license": "3", "title": "Corfe Sidings", "text": "", "album_id": "612755", "longitude": "-2.056760", "url_o": "https://farm1.staticflickr.com/21/26922606_a63e3d7714_o.jpg", "secret": "a63e3d7714", "media": "photo", "latitude": "50.641514", "id": "26922606", "tags": "swanage dorset steam railway corfecastle sidings"}, {"datetaken": "2005-07-17 17:16:09", "license": "3", "title": "Corfe Platform", "text": "", "album_id": "612755", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26905303_02d67933a7_o.jpg", "secret": "02d67933a7", "media": "photo", "latitude": "0", "id": "26905303", "tags": "swanage dorset steam railway corfecastle station"}, {"datetaken": "2005-07-17 17:16:32", "license": "3", "title": "Clear to proceed.", "text": "", "album_id": "612755", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26905365_4021d0d2da_o.jpg", "secret": "4021d0d2da", "media": "photo", "latitude": "0", "id": "26905365", "tags": "swanage dorset steam railway corfecastle station"}, {"datetaken": "2005-07-17 17:16:45", "license": "3", "title": "Corfe Village", "text": "", "album_id": "612755", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26905420_0bbdc3aa8f_o.jpg", "secret": "0bbdc3aa8f", "media": "photo", "latitude": "0", "id": "26905420", "tags": "swanage dorset steam railway corfe village"}, {"datetaken": "2005-07-17 17:17:33", "license": "3", "title": "Castle ruins...", "text": "", "album_id": "612755", "longitude": "-2.056760", "url_o": "https://farm1.staticflickr.com/21/26905502_3be416a65d_o.jpg", "secret": "3be416a65d", "media": "photo", "latitude": "50.641514", "id": "26905502", "tags": "swanage dorset steam railway corfecastle"}, {"datetaken": "2005-07-17 17:21:17", "license": "3", "title": "Steam, up close", "text": "", "album_id": "612755", "longitude": "-2.056760", "url_o": "https://farm1.staticflickr.com/22/26905565_2254f0e8bb_o.jpg", "secret": "2254f0e8bb", "media": "photo", "latitude": "50.641514", "id": "26905565", "tags": "swanage dorset steam railway norden station"}, {"datetaken": "2005-07-17 17:22:28", "license": "3", "title": "The Engine", "text": "", "album_id": "612755", "longitude": "-2.063455", "url_o": "https://farm1.staticflickr.com/23/26905635_f8177a0aa0_o.jpg", "secret": "f8177a0aa0", "media": "photo", "latitude": "50.645650", "id": "26905635", "tags": "swanage dorset steam railway norden station"}, {"datetaken": "2007-07-05 20:11:52", "license": "4", "title": "Image7", "text": "", "album_id": "72157600667942012", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1422/729453937_5e2e9e1d2f_o.jpg", "secret": "845a2fd8bf", "media": "photo", "latitude": "0", "id": "729453937", "tags": ""}, {"datetaken": "2007-07-05 20:11:53", "license": "4", "title": "Image10", "text": "", "album_id": "72157600667942012", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1099/730316226_822a782e43_o.jpg", "secret": "6469a0b84e", "media": "photo", "latitude": "0", "id": "730316226", "tags": ""}, {"datetaken": "2007-07-05 20:11:55", "license": "4", "title": "Image13", "text": "", "album_id": "72157600667942012", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1059/730316440_52798a3233_o.jpg", "secret": "b1252e2c5e", "media": "photo", "latitude": "0", "id": "730316440", "tags": ""}, {"datetaken": "2007-07-05 20:11:56", "license": "4", "title": "Image14", "text": "", "album_id": "72157600667942012", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1007/729454557_ae4a3eda26_o.jpg", "secret": "cb24f46f42", "media": "photo", "latitude": "0", "id": "729454557", "tags": ""}, {"datetaken": "2007-07-05 20:11:58", "license": "4", "title": "Image15", "text": "", "album_id": "72157600667942012", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1433/730316872_2e1ead1164_o.jpg", "secret": "d943ed01bc", "media": "photo", "latitude": "0", "id": "730316872", "tags": ""}, {"datetaken": "2007-07-05 20:11:59", "license": "4", "title": "Image17", "text": "", "album_id": "72157600667942012", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1379/730317084_c418478c13_o.jpg", "secret": "9468b46b84", "media": "photo", "latitude": "0", "id": "730317084", "tags": ""}, {"datetaken": "2007-07-05 20:12:00", "license": "4", "title": "Image19", "text": "", "album_id": "72157600667942012", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1063/729455123_55425fdfb8_o.jpg", "secret": "cb7aa879cd", "media": "photo", "latitude": "0", "id": "729455123", "tags": ""}, {"datetaken": "2007-07-05 20:12:02", "license": "4", "title": "Image20", "text": "", "album_id": "72157600667942012", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1113/729455329_2acd2030f7_o.jpg", "secret": "18aee65124", "media": "photo", "latitude": "0", "id": "729455329", "tags": ""}, {"datetaken": "2007-07-05 20:12:03", "license": "4", "title": "Image21", "text": "", "album_id": "72157600667942012", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1089/729455477_dc9d02edbb_o.jpg", "secret": "7d4b62c5b3", "media": "photo", "latitude": "0", "id": "729455477", "tags": ""}, {"datetaken": "2007-07-05 20:12:04", "license": "4", "title": "Image22", "text": "", "album_id": "72157600667942012", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1252/729455667_e4e1812a0f_o.jpg", "secret": "3963134f55", "media": "photo", "latitude": "0", "id": "729455667", "tags": ""}, {"datetaken": "2007-07-05 20:12:05", "license": "4", "title": "Image23", "text": "", "album_id": "72157600667942012", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1186/730318008_e89ea10ce6_o.jpg", "secret": "962519d07d", "media": "photo", "latitude": "0", "id": "730318008", "tags": ""}, {"datetaken": "2007-07-05 20:12:07", "license": "4", "title": "Image28", "text": "", "album_id": "72157600667942012", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1029/729455955_9e68a84eb5_o.jpg", "secret": "6b3baa9276", "media": "photo", "latitude": "0", "id": "729455955", "tags": ""}, {"datetaken": "2007-07-05 20:12:08", "license": "4", "title": "Image31", "text": "", "album_id": "72157600667942012", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1210/730318408_8b312d1bdc_o.jpg", "secret": "24562516f4", "media": "photo", "latitude": "0", "id": "730318408", "tags": ""}, {"datetaken": "2005-06-06 13:53:25", "license": "4", "title": "Beachfront, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm5.staticflickr.com/4021/4287132723_6f97878edf_o.jpg", "secret": "9743bf720f", "media": "photo", "latitude": "20.611576", "id": "4287132723", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 13:53:33", "license": "4", "title": "Fishing Boat at Anchor, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm3.staticflickr.com/2551/4287875138_081cc2973b_o.jpg", "secret": "9db2c343fd", "media": "photo", "latitude": "20.611576", "id": "4287875138", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 13:55:18", "license": "4", "title": "The Sea Walk, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm5.staticflickr.com/4046/4287132785_0a1101ee3c_o.jpg", "secret": "7b7ed63d65", "media": "photo", "latitude": "20.611576", "id": "4287132785", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 13:55:44", "license": "4", "title": "Stunning Beach Art, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm3.staticflickr.com/2532/4287132833_41d3ccdd89_o.jpg", "secret": "19293ede95", "media": "photo", "latitude": "20.611576", "id": "4287132833", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 13:56:56", "license": "4", "title": "Beach Art, Flipper, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm3.staticflickr.com/2569/4287132899_805b2b0801_o.jpg", "secret": "17a8eb1263", "media": "photo", "latitude": "20.611576", "id": "4287132899", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 13:59:22", "license": "4", "title": "Vaguely Henge-like Beach Art, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm3.staticflickr.com/2724/4287132935_211eba4198_o.jpg", "secret": "ac1c33a8a6", "media": "photo", "latitude": "20.611576", "id": "4287132935", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 14:01:09", "license": "4", "title": "Dolphins, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm5.staticflickr.com/4072/4287875348_2d5aeb5484_o.jpg", "secret": "1b6a9a16da", "media": "photo", "latitude": "20.611576", "id": "4287875348", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 14:01:49", "license": "4", "title": "Downtown Square, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm5.staticflickr.com/4046/4287875424_5bec8aa756_o.jpg", "secret": "6656700d4a", "media": "photo", "latitude": "20.611576", "id": "4287875424", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 14:02:51", "license": "4", "title": "The City Square, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm5.staticflickr.com/4030/4287875504_0d302f2e62_o.jpg", "secret": "45320a75f2", "media": "photo", "latitude": "20.611576", "id": "4287875504", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 14:03:12", "license": "4", "title": "Beachfront Vendors, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm5.staticflickr.com/4019/4287133151_53e6000b32_o.jpg", "secret": "d25423e0f6", "media": "photo", "latitude": "20.611576", "id": "4287133151", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 14:05:16", "license": "4", "title": "River Inlet, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm5.staticflickr.com/4023/4287133209_5e68e65f1c_o.jpg", "secret": "50dddee5f4", "media": "photo", "latitude": "20.611576", "id": "4287133209", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 14:05:32", "license": "4", "title": "Entering Old Town, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm5.staticflickr.com/4016/4287133255_4d388fa8d1_o.jpg", "secret": "542d4c41c0", "media": "photo", "latitude": "20.611576", "id": "4287133255", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 14:24:15", "license": "4", "title": "Rock Island, South Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm5.staticflickr.com/4040/4287875694_8a2e3d2561_o.jpg", "secret": "3510b1a9fe", "media": "photo", "latitude": "20.611576", "id": "4287875694", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 14:24:46", "license": "4", "title": "Three Rock Islands, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm5.staticflickr.com/4003/4287133341_9304537bed_o.jpg", "secret": "6f73ec64af", "media": "photo", "latitude": "20.611576", "id": "4287133341", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 14:36:04", "license": "4", "title": "South Vallarta Coastline, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm3.staticflickr.com/2694/4287133403_82ec095825_o.jpg", "secret": "7081fb9f3d", "media": "photo", "latitude": "20.611576", "id": "4287133403", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 14:36:58", "license": "4", "title": "Oceanfront Stairs, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm5.staticflickr.com/4055/4287133465_0f142a64a8_o.jpg", "secret": "d5b8c0c7bd", "media": "photo", "latitude": "20.611576", "id": "4287133465", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 14:40:28", "license": "4", "title": "South Vallarta overlooking the Ocean", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm3.staticflickr.com/2744/4287133525_f08d36d458_o.jpg", "secret": "4d1eb7472d", "media": "photo", "latitude": "20.611576", "id": "4287133525", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 14:45:38", "license": "4", "title": "Beautiful Things, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm5.staticflickr.com/4026/4287133581_b1b43c3b14_o.jpg", "secret": "eaab647b8d", "media": "photo", "latitude": "20.611576", "id": "4287133581", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 14:56:17", "license": "4", "title": "Pepe's Tacos, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm5.staticflickr.com/4001/4287133641_1e61bc3e05_o.jpg", "secret": "a7bef2f05f", "media": "photo", "latitude": "20.611576", "id": "4287133641", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2005-06-06 15:45:00", "license": "4", "title": "Minivans, Mexico-style, Puerto Vallarta", "text": "", "album_id": "72157623116815517", "longitude": "-105.234432", "url_o": "https://farm5.staticflickr.com/4037/4287876094_a0b9be4041_o.jpg", "secret": "187206b7c7", "media": "photo", "latitude": "20.611576", "id": "4287876094", "tags": "mexico puerto jalisco vallarta puertovallarta pv"}, {"datetaken": "2010-01-17 15:35:32", "license": "3", "title": "Mill Pond", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4288055371_1ea3458c62_o.jpg", "secret": "4c2cfab172", "media": "photo", "latitude": "0", "id": "4288055371", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 15:36:13", "license": "3", "title": "Through the gate to the mill pond", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4288798980_5e77c800d2_o.jpg", "secret": "cd824bf326", "media": "photo", "latitude": "0", "id": "4288798980", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 15:39:43", "license": "3", "title": "Boat and oars", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4288059629_c1e8c1833a_o.jpg", "secret": "83c4103614", "media": "photo", "latitude": "0", "id": "4288059629", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 15:41:18", "license": "3", "title": "Wall and chains", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4288062173_61b4569bc8_o.jpg", "secret": "3472632f1c", "media": "photo", "latitude": "0", "id": "4288062173", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 15:41:47", "license": "3", "title": "Lovely Strata", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2639/4288806346_da18a29d4a_o.jpg", "secret": "a66e7e6e6f", "media": "photo", "latitude": "0", "id": "4288806346", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 15:46:10", "license": "3", "title": "Sea and Cliffs", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2737/4288067303_059e01358a_o.jpg", "secret": "83b832367b", "media": "photo", "latitude": "0", "id": "4288067303", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 15:50:10", "license": "3", "title": "What a lovely rock", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2793/4288811604_864cca4750_o.jpg", "secret": "73fff9807f", "media": "photo", "latitude": "0", "id": "4288811604", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 15:57:04", "license": "3", "title": "Beautiful Beach", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4288814180_fda0365464_o.jpg", "secret": "1b821d3bc7", "media": "photo", "latitude": "0", "id": "4288814180", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 15:59:27", "license": "3", "title": "Winter sun 4", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4288074809_ed78f35f54_o.jpg", "secret": "d68bc6ffee", "media": "photo", "latitude": "0", "id": "4288074809", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 16:00:21", "license": "3", "title": "Winter sun3", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4288818988_c81f444282_o.jpg", "secret": "2699d5c6c3", "media": "photo", "latitude": "0", "id": "4288818988", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 16:00:47", "license": "3", "title": "Lonely tree", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4288079545_9ed8ce51e1_o.jpg", "secret": "5340843c30", "media": "photo", "latitude": "0", "id": "4288079545", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 16:03:00", "license": "3", "title": "Rock and sun", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4288082437_0abc41c23b_o.jpg", "secret": "30a2a46488", "media": "photo", "latitude": "0", "id": "4288082437", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 16:04:02", "license": "3", "title": "Rock", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4288827166_f2fc6ed972_o.jpg", "secret": "7aab017ec8", "media": "photo", "latitude": "0", "id": "4288827166", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 16:06:23", "license": "3", "title": "Winter sun 2", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4288830286_1c5a0bc52a_o.jpg", "secret": "83c741f575", "media": "photo", "latitude": "0", "id": "4288830286", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 16:09:27", "license": "3", "title": "Winter sun1", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4288090759_d97219d8f7_o.jpg", "secret": "6bceca9a74", "media": "photo", "latitude": "0", "id": "4288090759", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 16:10:55", "license": "3", "title": "Lovely Strata", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4288835720_1d7583988f_o.jpg", "secret": "a777ae7606", "media": "photo", "latitude": "0", "id": "4288835720", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 16:12:13", "license": "3", "title": "Cliff and bouy", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2802/4288838146_f422f2edfa_o.jpg", "secret": "76696c342e", "media": "photo", "latitude": "0", "id": "4288838146", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 16:14:40", "license": "3", "title": "Old tin shed", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4288098609_68a215722f_o.jpg", "secret": "777dfd1457", "media": "photo", "latitude": "0", "id": "4288098609", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-17 16:22:06", "license": "3", "title": "A unique tree", "text": "", "album_id": "72157623119427437", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4288101125_8ff7ab4169_o.jpg", "secret": "dc0f462d63", "media": "photo", "latitude": "0", "id": "4288101125", "tags": "cliff beach january wave dorset 2010 lulworthcove"}, {"datetaken": "2010-01-19 13:52:49", "license": "1", "title": "007 \u98df\u821e\u975a\u934b", "text": "", "album_id": "72157623241725680", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2749/4287230839_805ea5313d_o.jpg", "secret": "9a8fc3ca26", "media": "photo", "latitude": "0", "id": "4287230839", "tags": "\u751f\u65e5"}, {"datetaken": "2010-01-19 13:52:58", "license": "1", "title": "008", "text": "", "album_id": "72157623241725680", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2789/4287972830_f0a6e7f503_o.jpg", "secret": "f9d3816caa", "media": "photo", "latitude": "0", "id": "4287972830", "tags": "\u751f\u65e5"}, {"datetaken": "2010-01-19 14:47:17", "license": "1", "title": "009", "text": "", "album_id": "72157623241725680", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4287972974_e67c8420b6_o.jpg", "secret": "99c821a02b", "media": "photo", "latitude": "0", "id": "4287972974", "tags": "\u751f\u65e5"}, {"datetaken": "2010-01-19 14:47:25", "license": "1", "title": "010", "text": "", "album_id": "72157623241725680", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4287231283_ac87fe3764_o.jpg", "secret": "b40312699c", "media": "photo", "latitude": "0", "id": "4287231283", "tags": "\u751f\u65e5"}, {"datetaken": "2010-01-19 14:48:15", "license": "1", "title": "011", "text": "", "album_id": "72157623241725680", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4287973242_4a4cae297d_o.jpg", "secret": "219ce9c965", "media": "photo", "latitude": "0", "id": "4287973242", "tags": "\u751f\u65e5"}, {"datetaken": "2010-01-19 14:48:45", "license": "1", "title": "012", "text": "", "album_id": "72157623241725680", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4287973358_489e2e0049_o.jpg", "secret": "2de5717716", "media": "photo", "latitude": "0", "id": "4287973358", "tags": "\u751f\u65e5"}, {"datetaken": "2010-01-19 14:50:17", "license": "1", "title": "013", "text": "", "album_id": "72157623241725680", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2792/4287231707_fc616c20c3_o.jpg", "secret": "378879ee53", "media": "photo", "latitude": "0", "id": "4287231707", "tags": "\u751f\u65e5"}, {"datetaken": "2010-01-19 15:00:07", "license": "1", "title": "014", "text": "", "album_id": "72157623241725680", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4287973622_140e77e086_o.jpg", "secret": "d3be34e1ba", "media": "photo", "latitude": "0", "id": "4287973622", "tags": "\u751f\u65e5"}, {"datetaken": "2010-01-19 15:06:41", "license": "1", "title": "015", "text": "", "album_id": "72157623241725680", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4287973724_a19ce2ea52_o.jpg", "secret": "399aa51d25", "media": "photo", "latitude": "0", "id": "4287973724", "tags": "\u751f\u65e5"}, {"datetaken": "2010-01-19 15:07:00", "license": "1", "title": "016", "text": "", "album_id": "72157623241725680", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4287232059_c217ebe28d_o.jpg", "secret": "5c01462bb1", "media": "photo", "latitude": "0", "id": "4287232059", "tags": "\u751f\u65e5"}, {"datetaken": "2010-01-19 11:29:37", "license": "2", "title": "Whaler's Cove", "text": "", "album_id": "72157623246073176", "longitude": "-121.940437", "url_o": "https://farm3.staticflickr.com/2793/4291116922_82a50bbfe8_o.jpg", "secret": "c9f30831dd", "media": "photo", "latitude": "36.520587", "id": "4291116922", "tags": "california pointlobos bigwaves"}, {"datetaken": "2010-01-19 11:34:34", "license": "2", "title": "Crab for lunch", "text": "", "album_id": "72157623246073176", "longitude": "-121.940246", "url_o": "https://farm5.staticflickr.com/4069/4290376875_d14d7e242e_o.jpg", "secret": "41ff3ea739", "media": "photo", "latitude": "36.520816", "id": "4290376875", "tags": "california pointlobos bigwaves carmelcaunitedstatesofamerica"}, {"datetaken": "2010-01-19 11:42:01", "license": "2", "title": "Foam", "text": "", "album_id": "72157623246073176", "longitude": "-121.940256", "url_o": "https://farm3.staticflickr.com/2772/4290377041_e0c5059eda_o.jpg", "secret": "8ac6f666fa", "media": "photo", "latitude": "36.520803", "id": "4290377041", "tags": "california pointlobos bigwaves"}, {"datetaken": "2010-01-19 11:57:14", "license": "2", "title": "Kelp on the trail - revisited", "text": "", "album_id": "72157623246073176", "longitude": "-121.943367", "url_o": "https://farm5.staticflickr.com/4019/4291151390_34e7c78db6_o.jpg", "secret": "937928c356", "media": "photo", "latitude": "36.513004", "id": "4291151390", "tags": "california pointlobos bigwaves carmelcaunitedstatesofamerica"}, {"datetaken": "2010-01-19 12:00:38", "license": "2", "title": "Weston Beach", "text": "", "album_id": "72157623246073176", "longitude": "-121.944755", "url_o": "https://farm5.staticflickr.com/4005/4289693850_ee16128a21_o.jpg", "secret": "ae2ba15006", "media": "photo", "latitude": "36.513469", "id": "4289693850", "tags": "california pointlobos bigwaves carmelcaunitedstatesofamerica"}, {"datetaken": "2010-01-19 12:01:08", "license": "2", "title": "Weston Beach", "text": "", "album_id": "72157623246073176", "longitude": "-121.944755", "url_o": "https://farm3.staticflickr.com/2743/4288951131_23a2536097_o.jpg", "secret": "cc5b2d86fc", "media": "photo", "latitude": "36.513469", "id": "4288951131", "tags": "california pointlobos bigwaves carmelcaunitedstatesofamerica"}, {"datetaken": "2010-01-19 12:02:13", "license": "2", "title": "Weston Beach", "text": "", "album_id": "72157623246073176", "longitude": "-121.944709", "url_o": "https://farm3.staticflickr.com/2690/4289694138_9da2021420_o.jpg", "secret": "9b0d03e158", "media": "photo", "latitude": "36.513477", "id": "4289694138", "tags": "california pointlobos bigwaves carmelcaunitedstatesofamerica"}, {"datetaken": "2010-01-19 12:02:55", "license": "2", "title": "Weston Beach", "text": "", "album_id": "72157623246073176", "longitude": "-121.944740", "url_o": "https://farm5.staticflickr.com/4042/4289731556_b3ecee335e_o.jpg", "secret": "411a4dcac3", "media": "photo", "latitude": "36.513473", "id": "4289731556", "tags": "california pointlobos bigwaves carmelcaunitedstatesofamerica"}, {"datetaken": "2010-01-19 12:14:45", "license": "2", "title": "Weston Beach", "text": "", "album_id": "72157623246073176", "longitude": "-121.943725", "url_o": "https://farm3.staticflickr.com/2782/4289681500_c9e35d808f_o.jpg", "secret": "a7a19058f4", "media": "photo", "latitude": "36.513305", "id": "4289681500", "tags": "california pointlobos bigwaves carmelcaunitedstatesofamerica"}, {"datetaken": "2010-01-19 12:27:41", "license": "2", "title": "Say's Phoebe", "text": "", "album_id": "72157623246073176", "longitude": "-121.942665", "url_o": "https://farm5.staticflickr.com/4031/4291262635_c4f61dddc9_o.jpg", "secret": "c568d803ae", "media": "photo", "latitude": "36.512718", "id": "4291262635", "tags": "california pointlobos birdingcarmelcaunitedstatesofamerica"}, {"datetaken": "2010-01-19 12:43:13", "license": "2", "title": "Spike buck", "text": "", "album_id": "72157623246073176", "longitude": "-121.940902", "url_o": "https://farm5.staticflickr.com/4066/4292003178_c2ecbd8586_o.jpg", "secret": "eaa948682a", "media": "photo", "latitude": "36.510875", "id": "4292003178", "tags": "california birding pointlobos"}, {"datetaken": "2010-01-19 12:55:12", "license": "2", "title": "Red-shouldered Hawk", "text": "", "album_id": "72157623246073176", "longitude": "-121.947090", "url_o": "https://farm3.staticflickr.com/2780/4291251743_4200499b29_o.jpg", "secret": "ccd3d737fd", "media": "photo", "latitude": "36.515506", "id": "4291251743", "tags": "california birding pointlobos carmelcaunitedstatesofamerica"}, {"datetaken": "2010-01-19 13:13:19", "license": "2", "title": "Sea Lion Point", "text": "", "album_id": "72157623246073176", "longitude": "-121.951919", "url_o": "https://farm5.staticflickr.com/4064/4291430043_b922968359_o.jpg", "secret": "0dc582507f", "media": "photo", "latitude": "36.517501", "id": "4291430043", "tags": "california pointlobos bigwaves carmelcaunitedstatesofamerica"}, {"datetaken": "2010-01-19 13:37:14", "license": "2", "title": "Big crash", "text": "", "album_id": "72157623246073176", "longitude": "-121.947883", "url_o": "https://farm5.staticflickr.com/4060/4291443873_e948d65035_o.jpg", "secret": "ce3450b00a", "media": "photo", "latitude": "36.515296", "id": "4291443873", "tags": "california pointlobos bigwaves carmelcaunitedstatesofamerica"}, {"datetaken": "2010-01-19 13:39:18", "license": "2", "title": "The Slot awash", "text": "", "album_id": "72157623246073176", "longitude": "-121.947883", "url_o": "https://farm3.staticflickr.com/2797/4292184922_97a29dd795_o.jpg", "secret": "1d3da57826", "media": "photo", "latitude": "36.515296", "id": "4292184922", "tags": "california pointlobos bigwaves carmelcaunitedstatesofamerica"}, {"datetaken": "2010-01-19 13:39:59", "license": "2", "title": "Waterfall", "text": "", "album_id": "72157623246073176", "longitude": "-121.947883", "url_o": "https://farm5.staticflickr.com/4035/4292185230_6dd8e468de_o.jpg", "secret": "5c6b9e0095", "media": "photo", "latitude": "36.515296", "id": "4292185230", "tags": "california pointlobos bigwaves carmelcaunitedstatesofamerica"}, {"datetaken": "2010-01-19 14:08:55", "license": "2", "title": "Sea otter and pup", "text": "", "album_id": "72157623246073176", "longitude": "-121.940795", "url_o": "https://farm5.staticflickr.com/4014/4293492497_4ed52c0b71_o.jpg", "secret": "192a9fbaeb", "media": "photo", "latitude": "36.520191", "id": "4293492497", "tags": "california pointlobos carmelcaunitedstatesofamerica"}, {"datetaken": "2010-01-19 14:09:32", "license": "2", "title": "Sea otter and pup", "text": "", "album_id": "72157623246073176", "longitude": "-121.940795", "url_o": "https://farm5.staticflickr.com/4036/4294226090_717e3697a5_o.jpg", "secret": "a4021a7b5e", "media": "photo", "latitude": "36.520191", "id": "4294226090", "tags": "california pointlobos"}, {"datetaken": "2010-01-19 14:10:17", "license": "2", "title": "Pelagic Cormorant", "text": "", "album_id": "72157623246073176", "longitude": "-121.940795", "url_o": "https://farm5.staticflickr.com/4045/4293484615_d94e3ccd67_o.jpg", "secret": "cc39d0c4bf", "media": "photo", "latitude": "36.520191", "id": "4293484615", "tags": "california birding pointlobos carmelcaunitedstatesofamerica"}, {"datetaken": "2010-01-18 18:14:39", "license": "4", "title": "Mom looks oddly placid,", "text": "", "album_id": "72157623246970818", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4290021202_64ea67ccd2_o.jpg", "secret": "9742496d54", "media": "photo", "latitude": "0", "id": "4290021202", "tags": "northerncalifornia birth elephantseals pupping californiastateparks anonuevostatereserve"}, {"datetaken": "2010-01-18 18:14:43", "license": "4", "title": "The pup emerges tail first", "text": "", "album_id": "72157623246970818", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4290021444_a46279b891_o.jpg", "secret": "a048dd468a", "media": "photo", "latitude": "0", "id": "4290021444", "tags": "northerncalifornia birth elephantseals pupping californiastateparks anonuevostatereserve"}, {"datetaken": "2010-01-18 18:14:44", "license": "4", "title": "", "text": "", "album_id": "72157623246970818", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4289278495_58776cb01e_o.jpg", "secret": "15e0250461", "media": "photo", "latitude": "0", "id": "4289278495", "tags": "northerncalifornia birth elephantseals pupping californiastateparks anonuevostatereserve"}, {"datetaken": "2010-01-18 18:14:46", "license": "4", "title": "First greeting", "text": "", "album_id": "72157623246970818", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4290021846_fb363ac2e3_o.jpg", "secret": "de14e064da", "media": "photo", "latitude": "0", "id": "4290021846", "tags": "northerncalifornia birth elephantseals pupping californiastateparks anonuevostatereserve"}, {"datetaken": "2010-01-18 18:15:00", "license": "4", "title": "Slick little newborn", "text": "", "album_id": "72157623246970818", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4289278859_80045f8c0e_o.jpg", "secret": "f296da2e4c", "media": "photo", "latitude": "0", "id": "4289278859", "tags": "northerncalifornia birth elephantseals pupping californiastateparks anonuevostatereserve"}, {"datetaken": "2010-01-18 18:15:05", "license": "4", "title": "Moms bickering over space", "text": "", "album_id": "72157623246970818", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4289279073_ef7ea4c0f1_o.jpg", "secret": "f50eefb537", "media": "photo", "latitude": "0", "id": "4289279073", "tags": "northerncalifornia birth elephantseals pupping californiastateparks anonuevostatereserve"}, {"datetaken": "2010-01-18 18:15:28", "license": "4", "title": "Grooming?", "text": "", "album_id": "72157623246970818", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2783/4290022520_a1e4ba6afc_o.jpg", "secret": "03368bc988", "media": "photo", "latitude": "0", "id": "4290022520", "tags": "northerncalifornia birth elephantseals pupping californiastateparks anonuevostatereserve"}, {"datetaken": "2010-01-18 18:16:05", "license": "4", "title": "Hello again!", "text": "", "album_id": "72157623246970818", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4289279615_d97c3f63a8_o.jpg", "secret": "41b2322d95", "media": "photo", "latitude": "0", "id": "4289279615", "tags": "northerncalifornia birth elephantseals pupping californiastateparks anonuevostatereserve"}, {"datetaken": "2010-01-18 18:16:05", "license": "4", "title": "", "text": "", "album_id": "72157623246970818", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2680/4290023042_69665e9877_o.jpg", "secret": "91a08ecb38", "media": "photo", "latitude": "0", "id": "4290023042", "tags": "northerncalifornia birth elephantseals pupping californiastateparks anonuevostatereserve"}, {"datetaken": "2010-01-18 18:17:07", "license": "4", "title": "Hey...you gonna finish that?", "text": "", "album_id": "72157623246970818", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4290023414_d9a0f9cdda_o.jpg", "secret": "a350c3d02f", "media": "photo", "latitude": "0", "id": "4290023414", "tags": "northerncalifornia seagull birth elephantseals pupping californiastateparks anonuevostatereserve"}, {"datetaken": "2010-01-18 18:17:22", "license": "4", "title": "The birth announcement", "text": "", "album_id": "72157623246970818", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4290023654_1c1d662c81_o.jpg", "secret": "f2e91a86c2", "media": "photo", "latitude": "0", "id": "4290023654", "tags": "northerncalifornia seagull birth elephantseals pupping californiastateparks anonuevostatereserve"}, {"datetaken": "2005-04-20 00:48:04", "license": "1", "title": "Wind chill factor", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10035622_d9919e1cdf_o.jpg", "secret": "d9919e1cdf", "media": "photo", "latitude": "0", "id": "10035622", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 00:48:19", "license": "1", "title": "Milod\u00f3n Cave", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10035662_96e69a701a_o.jpg", "secret": "96e69a701a", "media": "photo", "latitude": "0", "id": "10035662", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 00:48:44", "license": "1", "title": "Milod\u00f3n Cave", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10035729_b65e4a399b_o.jpg", "secret": "b65e4a399b", "media": "photo", "latitude": "0", "id": "10035729", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 00:49:07", "license": "1", "title": "Torres del Paine at a distance", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10035761_d88d7986bc_o.jpg", "secret": "d88d7986bc", "media": "photo", "latitude": "0", "id": "10035761", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 00:49:45", "license": "1", "title": "DSC07962", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10035844_5ff37bc017_o.jpg", "secret": "5ff37bc017", "media": "photo", "latitude": "0", "id": "10035844", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 00:50:41", "license": "1", "title": "DSC07976", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10035992_4fab1ad10b_o.jpg", "secret": "4fab1ad10b", "media": "photo", "latitude": "0", "id": "10035992", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 00:51:48", "license": "1", "title": "Yes, those are guanacos!", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10036157_a3c928cea0_o.jpg", "secret": "a3c928cea0", "media": "photo", "latitude": "0", "id": "10036157", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 00:52:28", "license": "1", "title": "Dark lake and green lake", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10036261_b0d7687425_o.jpg", "secret": "b0d7687425", "media": "photo", "latitude": "0", "id": "10036261", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 00:53:27", "license": "1", "title": "DSC07986", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10036399_922f15ff0c_o.jpg", "secret": "922f15ff0c", "media": "photo", "latitude": "0", "id": "10036399", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 00:54:29", "license": "1", "title": "Waterfall", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10036573_ced1d6a1de_o.jpg", "secret": "ced1d6a1de", "media": "photo", "latitude": "0", "id": "10036573", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 00:55:42", "license": "1", "title": "DSC08006", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10036752_9c9b0cd432_o.jpg", "secret": "9c9b0cd432", "media": "photo", "latitude": "0", "id": "10036752", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 00:56:22", "license": "1", "title": "Glaciar waves", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10036853_89eafaa42c_o.jpg", "secret": "89eafaa42c", "media": "photo", "latitude": "0", "id": "10036853", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 00:57:13", "license": "1", "title": "Corrugated Iron", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10036978_9185347760_o.jpg", "secret": "9185347760", "media": "photo", "latitude": "0", "id": "10036978", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 00:57:48", "license": "1", "title": "Beached Icebergs", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10037048_ceb1a6336c_o.jpg", "secret": "ceb1a6336c", "media": "photo", "latitude": "0", "id": "10037048", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 00:58:15", "license": "1", "title": "Beach", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10037108_15b7199975_o.jpg", "secret": "15b7199975", "media": "photo", "latitude": "0", "id": "10037108", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 00:59:24", "license": "1", "title": "Melting Icebergs", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10037270_dba55a5c92_o.jpg", "secret": "dba55a5c92", "media": "photo", "latitude": "0", "id": "10037270", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 00:59:56", "license": "1", "title": "Melting Icebergs", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10037351_7f28a2692d_o.jpg", "secret": "7f28a2692d", "media": "photo", "latitude": "0", "id": "10037351", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 01:00:50", "license": "1", "title": "Melting Icebergs", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10037466_e1bbe3841f_o.jpg", "secret": "e1bbe3841f", "media": "photo", "latitude": "0", "id": "10037466", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 01:01:33", "license": "1", "title": "Melting Icebergs", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10037580_6b6f28908a_o.jpg", "secret": "6b6f28908a", "media": "photo", "latitude": "0", "id": "10037580", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 01:02:12", "license": "1", "title": "Chunk", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10037689_3a100321c1_o.jpg", "secret": "3a100321c1", "media": "photo", "latitude": "0", "id": "10037689", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 01:02:44", "license": "1", "title": "Cintia", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10037777_fa2cdc5f39_o.jpg", "secret": "fa2cdc5f39", "media": "photo", "latitude": "0", "id": "10037777", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 01:03:36", "license": "1", "title": "Guanacos", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10037875_3cbb6a0bc7_o.jpg", "secret": "3cbb6a0bc7", "media": "photo", "latitude": "0", "id": "10037875", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 01:04:19", "license": "1", "title": "Rainbow", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10037958_8edd267007_o.jpg", "secret": "8edd267007", "media": "photo", "latitude": "0", "id": "10037958", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 01:05:06", "license": "1", "title": "DSC08082", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10038045_22ca0d0096_o.jpg", "secret": "22ca0d0096", "media": "photo", "latitude": "0", "id": "10038045", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-04-20 01:06:52", "license": "1", "title": "Cuernos del Paine", "text": "", "album_id": "248083", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10038225_9c5ddbef58_o.jpg", "secret": "9c5ddbef58", "media": "photo", "latitude": "0", "id": "10038225", "tags": "chile torresdelpaine andes patagonia"}, {"datetaken": "2005-05-18 12:50:44", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14520501_69a1ae1733_o.jpg", "secret": "69a1ae1733", "media": "photo", "latitude": "0", "id": "14520501", "tags": "motorcycles beach bike harley myrtle myrtlebeach"}, {"datetaken": "2005-05-18 12:51:08", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14520558_1dae77fab5_o.jpg", "secret": "1dae77fab5", "media": "photo", "latitude": "0", "id": "14520558", "tags": "motorcycles beach bike harley myrtle myrtlebeach"}, {"datetaken": "2005-05-18 12:53:59", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14520610_043171205f_o.jpg", "secret": "043171205f", "media": "photo", "latitude": "0", "id": "14520610", "tags": "motorcycles beach bike harley myrtle myrtlebeach"}, {"datetaken": "2005-05-18 12:55:41", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14520675_3cba325139_o.jpg", "secret": "3cba325139", "media": "photo", "latitude": "0", "id": "14520675", "tags": "motorcycles beach bike harley myrtle myrtlebeach"}, {"datetaken": "2005-05-18 12:57:25", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14520726_ea53ac0bc3_o.jpg", "secret": "ea53ac0bc3", "media": "photo", "latitude": "0", "id": "14520726", "tags": "motorcycles beach bike harley myrtle myrtlebeach"}, {"datetaken": "2005-05-18 12:57:57", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14520760_8159a977b4_o.jpg", "secret": "8159a977b4", "media": "photo", "latitude": "0", "id": "14520760", "tags": "motorcycles beach bike harley myrtle myrtlebeach"}, {"datetaken": "2005-05-18 12:58:52", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14520795_64e21297c8_o.jpg", "secret": "64e21297c8", "media": "photo", "latitude": "0", "id": "14520795", "tags": "motorcycles beach bike harley myrtle myrtlebeach"}, {"datetaken": "2005-05-18 13:07:09", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14520827_ab6a4af304_o.jpg", "secret": "ab6a4af304", "media": "photo", "latitude": "0", "id": "14520827", "tags": "motorcycles beach bike harley myrtle myrtlebeach"}, {"datetaken": "2005-05-18 13:07:32", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14520863_30f554b826_o.jpg", "secret": "30f554b826", "media": "photo", "latitude": "0", "id": "14520863", "tags": "motorcycles beach bike harley myrtle myrtlebeach"}, {"datetaken": "2005-05-18 13:08:15", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14520891_5d69dd951c_o.jpg", "secret": "5d69dd951c", "media": "photo", "latitude": "0", "id": "14520891", "tags": "motorcycles beach bike harley myrtle myrtlebeach"}, {"datetaken": "2005-05-18 13:08:32", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14520916_82ca9b2e7d_o.jpg", "secret": "82ca9b2e7d", "media": "photo", "latitude": "0", "id": "14520916", "tags": "motorcycles beach bike harley myrtle myrtlebeach"}, {"datetaken": "2005-05-18 13:08:47", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/14520944_d49654213a_o.jpg", "secret": "d49654213a", "media": "photo", "latitude": "0", "id": "14520944", "tags": "motorcycles beach bike harley myrtle myrtlebeach"}, {"datetaken": "2005-05-18 13:09:15", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14520975_764afeefaf_o.jpg", "secret": "764afeefaf", "media": "photo", "latitude": "0", "id": "14520975", "tags": "motorcycles beach bike harley myrtle myrtlebeach"}, {"datetaken": "2005-05-18 13:09:30", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14520438_6197130ba2_o.jpg", "secret": "6197130ba2", "media": "photo", "latitude": "0", "id": "14520438", "tags": "motorcycles beach bike harley myrtle myrtlebeach"}, {"datetaken": "2005-05-19 11:09:47", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14672799_2a592a2eaa_o.jpg", "secret": "2a592a2eaa", "media": "photo", "latitude": "0", "id": "14672799", "tags": "myrtle motorcycles bike beach harley myrtlebeach"}, {"datetaken": "2005-05-19 11:10:25", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14672832_78dcf92170_o.jpg", "secret": "78dcf92170", "media": "photo", "latitude": "0", "id": "14672832", "tags": "myrtle motorcycles bike beach harley myrtlebeach"}, {"datetaken": "2005-05-19 11:10:48", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14672866_6126929286_o.jpg", "secret": "6126929286", "media": "photo", "latitude": "0", "id": "14672866", "tags": "myrtle motorcycles bike beach harley myrtlebeach"}, {"datetaken": "2005-05-19 11:11:01", "license": "3", "title": "Harley Davidson Bike Week 2005", "text": "", "album_id": "351482", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14672764_1eadbe74a1_o.jpg", "secret": "1eadbe74a1", "media": "photo", "latitude": "0", "id": "14672764", "tags": "myrtle motorcycles bike beach harley myrtlebeach"}, {"datetaken": "2005-05-18 15:55:32", "license": "3", "title": "Jackie And Hannah", "text": "", "album_id": "354054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14638936_ea5abf7bc2_o.jpg", "secret": "ea5abf7bc2", "media": "photo", "latitude": "0", "id": "14638936", "tags": "lomo coldinghamsands jackie hannah friends fun"}, {"datetaken": "2005-05-18 15:56:55", "license": "3", "title": "Gerard In A Hat, On The Last Day Of His 20s", "text": "", "album_id": "354054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14636731_98ec787520_o.jpg", "secret": "98ec787520", "media": "photo", "latitude": "0", "id": "14636731", "tags": "lomo coldinghamsands friends gerard hats"}, {"datetaken": "2005-05-18 15:58:01", "license": "3", "title": "Hannah Double Exposure", "text": "", "album_id": "354054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14638935_2fb3c559df_o.jpg", "secret": "2fb3c559df", "media": "photo", "latitude": "0", "id": "14638935", "tags": "lomo coldinghamsands friends hannah"}, {"datetaken": "2005-05-18 15:59:55", "license": "3", "title": "Conundrum", "text": "", "album_id": "354054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14636730_48f8610b3b_o.jpg", "secret": "48f8610b3b", "media": "photo", "latitude": "0", "id": "14636730", "tags": "lomo coldinghamsands landscape roads signage roadsigns"}, {"datetaken": "2005-05-18 16:01:26", "license": "3", "title": "Sea And Green At Coldingham Sands", "text": "", "album_id": "354054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14638939_0accd62de5_o.jpg", "secret": "0accd62de5", "media": "photo", "latitude": "0", "id": "14638939", "tags": "lomo coldinghamsands sea sky foliage green"}, {"datetaken": "2005-05-18 16:02:26", "license": "3", "title": "Green Fields Between Berwick And Coldingham", "text": "", "album_id": "354054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14636732_0aa59b1dd6_o.jpg", "secret": "0aa59b1dd6", "media": "photo", "latitude": "0", "id": "14636732", "tags": "lomo coldinghamsands fields rape landscape"}, {"datetaken": "2005-05-18 16:07:21", "license": "3", "title": "Windswept Ginger", "text": "", "album_id": "354054", "longitude": "-2.135924", "url_o": "https://farm1.staticflickr.com/14/14640496_7b397c8893_o.jpg", "secret": "7b397c8893", "media": "photo", "latitude": "55.892492", "id": "14640496", "tags": "lomo coldinghamsands friends people jackie gerard leon geotagged geolat55892492 geolon2135924"}, {"datetaken": "2005-05-18 16:08:51", "license": "3", "title": "Coldingham Sands Inlet", "text": "", "album_id": "354054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14636729_68f61cdfcf_o.jpg", "secret": "68f61cdfcf", "media": "photo", "latitude": "0", "id": "14636729", "tags": "lomo coldinghamsands beach sea sand landscape"}, {"datetaken": "2005-05-18 16:10:40", "license": "3", "title": "Coldingham Sands, Bay View", "text": "", "album_id": "354054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14636727_cbd6788801_o.jpg", "secret": "cbd6788801", "media": "photo", "latitude": "0", "id": "14636727", "tags": "lomo coldinghamsands beach sea sky landscape"}, {"datetaken": "2005-05-18 16:16:52", "license": "3", "title": "Coldinham Sands", "text": "", "album_id": "354054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14636728_a40e09ef97_o.jpg", "secret": "a40e09ef97", "media": "photo", "latitude": "0", "id": "14636728", "tags": "lomo coldinghamsands beach sea sand landscape"}, {"datetaken": "2005-05-18 16:17:05", "license": "3", "title": "Slime Pool", "text": "", "album_id": "354054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14640494_c93db93714_o.jpg", "secret": "c93db93714", "media": "photo", "latitude": "0", "id": "14640494", "tags": "lomo coldinghamsands slime rockpools beaches"}, {"datetaken": "2005-05-18 16:17:29", "license": "3", "title": "Slime Up Close", "text": "", "album_id": "354054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14640493_b7bb6f5baf_o.jpg", "secret": "b7bb6f5baf", "media": "photo", "latitude": "0", "id": "14640493", "tags": "lomo coldinghamsands slime seaweed rockpools beaches"}, {"datetaken": "2005-05-18 16:23:12", "license": "3", "title": "My Top Shop Bag Unconsciousness Shame", "text": "", "album_id": "354054", "longitude": "-2.135924", "url_o": "https://farm1.staticflickr.com/11/14638938_d0095f111b_o.jpg", "secret": "d0095f111b", "media": "photo", "latitude": "55.892492", "id": "14638938", "tags": "lomo coldinghamsands shame booze unconscious me geotagged geolat55892492 geolon2135924"}, {"datetaken": "2005-05-18 16:23:28", "license": "3", "title": "The Tiny Hill People Of Coldingham Sands", "text": "", "album_id": "354054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14640495_1c29707bee_o.jpg", "secret": "1c29707bee", "media": "photo", "latitude": "0", "id": "14640495", "tags": "lomo coldinghamsands people landscape hills"}, {"datetaken": "2005-05-18 16:23:55", "license": "3", "title": "Jackie Explains", "text": "", "album_id": "354054", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14638937_0a23134e52_o.jpg", "secret": "0a23134e52", "media": "photo", "latitude": "0", "id": "14638937", "tags": "lomo coldinghamsands friends leon guy jackie handgestures"}, {"datetaken": "2005-02-20 01:12:07", "license": "1", "title": "scattered", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5162755_4dee598c46_o.jpg", "secret": "4dee598c46", "media": "photo", "latitude": "0", "id": "5162755", "tags": "forks olympicpeninsula hotel friends"}, {"datetaken": "2005-02-20 01:14:10", "license": "1", "title": "betsy", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5162757_91f6b8b283_o.jpg", "secret": "91f6b8b283", "media": "photo", "latitude": "0", "id": "5162757", "tags": "forks olympicpeninsula hotel friends tequila"}, {"datetaken": "2005-02-20 01:14:19", "license": "1", "title": "jeff -- one shot too many", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5162758_2abff15f91_o.jpg", "secret": "2abff15f91", "media": "photo", "latitude": "0", "id": "5162758", "tags": "forks olympicpeninsula hotel friends tequila"}, {"datetaken": "2005-02-20 01:37:12", "license": "1", "title": "stina and brandon", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5162759_9178f071ed_o.jpg", "secret": "9178f071ed", "media": "photo", "latitude": "0", "id": "5162759", "tags": "friends forks hotel games olympicpeninsula"}, {"datetaken": "2005-02-20 01:39:47", "license": "1", "title": "cards", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5162922_4b58d03a38_o.jpg", "secret": "4b58d03a38", "media": "photo", "latitude": "0", "id": "5162922", "tags": "friends forks hotel games olympicpeninsula"}, {"datetaken": "2005-02-20 01:40:28", "license": "1", "title": "olympic peninsula", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5204595_a58326ac97_o.jpg", "secret": "a58326ac97", "media": "photo", "latitude": "0", "id": "5204595", "tags": "olympicpeninsula map"}, {"datetaken": "2005-02-20 01:41:02", "license": "1", "title": "stina", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5162921_f479de3592_o.jpg", "secret": "f479de3592", "media": "photo", "latitude": "0", "id": "5162921", "tags": "friends forks hotel games olympicpeninsula"}, {"datetaken": "2005-02-20 14:26:53", "license": "1", "title": "viewpoint", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5162920_0c00e3918f_o.jpg", "secret": "0c00e3918f", "media": "photo", "latitude": "0", "id": "5162920", "tags": "friends capeflattery me olympicpeninsula"}, {"datetaken": "2005-02-20 14:28:10", "license": "1", "title": "cliffside", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5204593_1078467f50_o.jpg", "secret": "1078467f50", "media": "photo", "latitude": "0", "id": "5204593", "tags": "olympicpeninsula friends"}, {"datetaken": "2005-02-20 14:28:46", "license": "1", "title": "jeff on the edge", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5162925_7219e953b9_o.jpg", "secret": "7219e953b9", "media": "photo", "latitude": "0", "id": "5162925", "tags": "capeflattery friends ocean olympicpeninsula"}, {"datetaken": "2005-02-20 14:29:09", "license": "1", "title": "betsy", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5162923_19f5cce02f_o.jpg", "secret": "19f5cce02f", "media": "photo", "latitude": "0", "id": "5162923", "tags": "capeflattery friends olympicpeninsula"}, {"datetaken": "2005-02-20 14:32:53", "license": "1", "title": "cape flattery", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5162926_67f722c681_o.jpg", "secret": "67f722c681", "media": "photo", "latitude": "0", "id": "5162926", "tags": "capeflattery pacific trees ocean olympicpeninsula"}, {"datetaken": "2005-02-20 14:35:42", "license": "1", "title": "survivor", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5163041_88ae5a941d_o.jpg", "secret": "88ae5a941d", "media": "photo", "latitude": "0", "id": "5163041", "tags": "olympicpeninsula capeflattery trees cliff"}, {"datetaken": "2005-02-20 14:47:31", "license": "1", "title": "seal!", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5163043_8a365a179d_o.jpg", "secret": "8a365a179d", "media": "photo", "latitude": "0", "id": "5163043", "tags": "capeflattery seal animals ocean kelp olympicpeninsula"}, {"datetaken": "2005-02-20 14:47:58", "license": "1", "title": "almost", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5163042_0ecb85094f_o.jpg", "secret": "0ecb85094f", "media": "photo", "latitude": "0", "id": "5163042", "tags": "capeflattery trees ocean olympicpeninsula"}, {"datetaken": "2005-02-20 14:48:14", "license": "1", "title": "betsy", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5163044_e3f525789c_o.jpg", "secret": "e3f525789c", "media": "photo", "latitude": "0", "id": "5163044", "tags": "friends capeflattery olympicpeninsula"}, {"datetaken": "2005-02-20 14:49:11", "license": "1", "title": "extreme", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5163048_2bd9dc9457_o.jpg", "secret": "2bd9dc9457", "media": "photo", "latitude": "0", "id": "5163048", "tags": "capeflattery friends olympicpeninsula"}, {"datetaken": "2005-02-20 15:54:36", "license": "1", "title": "exploring", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5163327_38f270d3d5_o.jpg", "secret": "38f270d3d5", "media": "photo", "latitude": "0", "id": "5163327", "tags": "olympicpeninsula beach ocean blue rocks friends"}, {"datetaken": "2005-02-20 15:58:04", "license": "1", "title": "the beach", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5204597_dfdc24a56f_o.jpg", "secret": "dfdc24a56f", "media": "photo", "latitude": "0", "id": "5204597", "tags": "olympicpeninsula friends beach"}, {"datetaken": "2005-02-20 16:02:53", "license": "1", "title": "the beach", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5163326_a49cb15d09_o.jpg", "secret": "a49cb15d09", "media": "photo", "latitude": "0", "id": "5163326", "tags": "beach olympicpeninsula internalfavorite"}, {"datetaken": "2005-02-20 16:03:40", "license": "1", "title": "o pen", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5163047_a2a50a1447_o.jpg", "secret": "a2a50a1447", "media": "photo", "latitude": "0", "id": "5163047", "tags": "beach olympicpeninsula"}, {"datetaken": "2005-02-20 16:04:13", "license": "1", "title": "kelp", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5163324_1526897464_o.jpg", "secret": "1526897464", "media": "photo", "latitude": "0", "id": "5163324", "tags": "olympicpeninsula kelp beach"}, {"datetaken": "2005-02-20 17:16:56", "license": "1", "title": "juan de fuca", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5163325_92212f1005_o.jpg", "secret": "92212f1005", "media": "photo", "latitude": "0", "id": "5163325", "tags": "olympicpeninsula beach moon"}, {"datetaken": "2005-02-20 18:04:49", "license": "1", "title": "wine country", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5162754_050ba33d9f_o.jpg", "secret": "050ba33d9f", "media": "photo", "latitude": "0", "id": "5162754", "tags": "olympicpeninsula winery"}, {"datetaken": "2005-02-20 23:17:40", "license": "1", "title": "cliffs", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5163446_51bcea1506_o.jpg", "secret": "51bcea1506", "media": "photo", "latitude": "0", "id": "5163446", "tags": "olympicpeninsula capeflattery ocean cliffs panorama"}, {"datetaken": "2005-02-20 23:17:55", "license": "1", "title": "sunset -- pretty lake state park", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5163329_59cf56bc75_o.jpg", "secret": "59cf56bc75", "media": "photo", "latitude": "0", "id": "5163329", "tags": "olympicpeninsula cascades sunset panorama"}, {"datetaken": "2005-02-20 23:46:50", "license": "1", "title": "pacific", "text": "", "album_id": "129924", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5163442_8807b63700_o.jpg", "secret": "8807b63700", "media": "photo", "latitude": "0", "id": "5163442", "tags": "olympicpeninsula capeflattery ocean cliffs panorama"}, {"datetaken": "2005-01-31 09:08:07", "license": "1", "title": "Random Beach", "text": "", "album_id": "134248", "longitude": "144.302330", "url_o": "https://farm1.staticflickr.com/5/5148325_03407e022f_o.jpg", "secret": "03407e022f", "media": "photo", "latitude": "-38.349464", "id": "5148325", "tags": "roundtheworld melbourne australia greatoceanroad landscape"}, {"datetaken": "2005-01-31 09:57:20", "license": "1", "title": "Bells Beach", "text": "", "album_id": "134248", "longitude": "144.302330", "url_o": "https://farm1.staticflickr.com/3/5148330_b6e1b5ed19_o.jpg", "secret": "b6e1b5ed19", "media": "photo", "latitude": "-38.349464", "id": "5148330", "tags": "roundtheworld australia melbourne bellsbeach greatoceanroad"}, {"datetaken": "2005-01-31 10:52:31", "license": "1", "title": "Lorne Bay", "text": "", "album_id": "134248", "longitude": "143.971881", "url_o": "https://farm1.staticflickr.com/3/5148343_8586d3dfcf_o.jpg", "secret": "8586d3dfcf", "media": "photo", "latitude": "-38.539706", "id": "5148343", "tags": "roundtheworld australia lorne landscape greatoceanroad"}, {"datetaken": "2005-01-31 10:54:37", "license": "1", "title": "Injured Gum Tree", "text": "", "album_id": "134248", "longitude": "143.971881", "url_o": "https://farm1.staticflickr.com/5/5148353_01da1c4212_o.jpg", "secret": "01da1c4212", "media": "photo", "latitude": "-38.539706", "id": "5148353", "tags": "roundtheworld australia greatoceanroad lorne plantlife"}, {"datetaken": "2005-01-31 11:33:16", "license": "1", "title": "Time To Move Soon", "text": "", "album_id": "134248", "longitude": "143.868541", "url_o": "https://farm1.staticflickr.com/4/5148361_17bf22dfa7_o.jpg", "secret": "17bf22dfa7", "media": "photo", "latitude": "-38.653745", "id": "5148361", "tags": "roundtheworld australia greatoceanroad kennettriver wildlife"}, {"datetaken": "2005-01-31 11:33:44", "license": "1", "title": "Wild Koala Mother and Child", "text": "", "album_id": "134248", "longitude": "143.868541", "url_o": "https://farm1.staticflickr.com/4/5148379_16d561b974_o.jpg", "secret": "16d561b974", "media": "photo", "latitude": "-38.653745", "id": "5148379", "tags": "roundtheworld australia greatoceanroad kennettriver wildlife"}, {"datetaken": "2005-01-31 11:36:08", "license": "1", "title": "Wild Koala", "text": "", "album_id": "134248", "longitude": "143.868541", "url_o": "https://farm1.staticflickr.com/5/5148387_c36e4590b8_o.jpg", "secret": "c36e4590b8", "media": "photo", "latitude": "-38.653745", "id": "5148387", "tags": "roundtheworld australia greatoceanroad kennettriver wildlife"}, {"datetaken": "2005-01-31 11:59:11", "license": "1", "title": "Cape Patton Looking West", "text": "", "album_id": "134248", "longitude": "143.915061", "url_o": "https://farm1.staticflickr.com/3/5148396_405038027e_o.jpg", "secret": "405038027e", "media": "photo", "latitude": "-38.608956", "id": "5148396", "tags": "roundtheworld greatoceanroad landscape australia"}, {"datetaken": "2005-01-31 12:00:42", "license": "1", "title": "Cape Patton Looking East", "text": "", "album_id": "134248", "longitude": "143.915061", "url_o": "https://farm1.staticflickr.com/4/5148405_cf95e43be4_o.jpg", "secret": "cf95e43be4", "media": "photo", "latitude": "-38.608956", "id": "5148405", "tags": "roundtheworld greatoceanroad landscape australia"}, {"datetaken": "2005-01-31 14:37:42", "license": "1", "title": "Treetop Walk", "text": "", "album_id": "134248", "longitude": "143.496723", "url_o": "https://farm1.staticflickr.com/5/5148415_22879758e1_o.jpg", "secret": "22879758e1", "media": "photo", "latitude": "-38.651131", "id": "5148415", "tags": "roundtheworld australia greatoceanroad melbourne otwayflytreetopwalk plantlife landscape"}, {"datetaken": "2005-01-31 14:38:14", "license": "1", "title": "A Long Way Down", "text": "", "album_id": "134248", "longitude": "143.496723", "url_o": "https://farm1.staticflickr.com/3/5148424_3e61e8cc09_o.jpg", "secret": "3e61e8cc09", "media": "photo", "latitude": "-38.651131", "id": "5148424", "tags": "roundtheworld australia melbourne greatoceanroad plantlife otwayflytreetopwalk"}, {"datetaken": "2005-01-31 14:42:19", "license": "1", "title": "Otway Fly Treetop Walk", "text": "", "album_id": "134248", "longitude": "143.496723", "url_o": "https://farm1.staticflickr.com/3/5148432_424d7a4860_o.jpg", "secret": "424d7a4860", "media": "photo", "latitude": "-38.651131", "id": "5148432", "tags": "roundtheworld australia melbourne greatoceanroad plantlife otwayflytreetopwalk"}, {"datetaken": "2005-01-31 14:45:20", "license": "1", "title": "Cantilever", "text": "", "album_id": "134248", "longitude": "143.496723", "url_o": "https://farm1.staticflickr.com/5/5148450_720dfc777a_o.jpg", "secret": "720dfc777a", "media": "photo", "latitude": "-38.651131", "id": "5148450", "tags": "roundtheworld australia melbourne greatoceanroad plantlife otwayflytreetopwalk"}, {"datetaken": "2005-01-31 14:47:56", "license": "1", "title": "Beech Myrtle and Mountain Ash", "text": "", "album_id": "134248", "longitude": "143.496723", "url_o": "https://farm1.staticflickr.com/3/5148454_36110f1778_o.jpg", "secret": "36110f1778", "media": "photo", "latitude": "-38.651131", "id": "5148454", "tags": "roundtheworld australia melbourne greatoceanroad plantlife otwayflytreetopwalk"}, {"datetaken": "2005-01-31 14:58:16", "license": "1", "title": "Big Boy, Little Boy", "text": "", "album_id": "134248", "longitude": "143.496723", "url_o": "https://farm1.staticflickr.com/5/5148467_04ab512124_o.jpg", "secret": "04ab512124", "media": "photo", "latitude": "-38.651131", "id": "5148467", "tags": "roundtheworld australia melbourne greatoceanroad plantlife yourstruly otwayflytreetopwalk"}, {"datetaken": "2005-01-31 16:12:57", "license": "1", "title": "The Twelve Apostles", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/4/5148475_47ecc2deda_o.jpg", "secret": "47ecc2deda", "media": "photo", "latitude": "-38.740962", "id": "5148475", "tags": "roundtheworld australia melbourne greatoceanroad landscape"}, {"datetaken": "2005-01-31 16:13:48", "license": "1", "title": "Me and the Main Group", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/4/5148486_100b9d8c0d_o.jpg", "secret": "100b9d8c0d", "media": "photo", "latitude": "-38.740962", "id": "5148486", "tags": "roundtheworld australia melbourne greatoceanroad landscape yourstruly"}, {"datetaken": "2005-01-31 16:15:11", "license": "1", "title": "Stand-alone Apostle", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/5/5148499_959770e491_o.jpg", "secret": "959770e491", "media": "photo", "latitude": "-38.740962", "id": "5148499", "tags": "roundtheworld australia melbourne greatoceanroad landscape"}, {"datetaken": "2005-01-31 16:15:22", "license": "1", "title": "Apostle In Ovo", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/3/5148506_a13c43b24b_o.jpg", "secret": "a13c43b24b", "media": "photo", "latitude": "-38.740962", "id": "5148506", "tags": "roundtheworld australia melbourne greatoceanroad landscape"}, {"datetaken": "2005-01-31 16:19:17", "license": "1", "title": "Two Apostles", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/5/5148518_b3c3749ccc_o.jpg", "secret": "b3c3749ccc", "media": "photo", "latitude": "-38.740962", "id": "5148518", "tags": "roundtheworld australia melbourne greatoceanroad landscape"}, {"datetaken": "2005-01-31 16:19:54", "license": "1", "title": "Me and a Pair of Apostles", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/3/5148532_d4f653750b_o.jpg", "secret": "d4f653750b", "media": "photo", "latitude": "-38.740962", "id": "5148532", "tags": "roundtheworld greatoceanroad melbourne australia landscape yourstruly"}, {"datetaken": "2005-01-31 16:22:32", "license": "1", "title": "Forbidden Zone", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/5/5148548_7c868d7b9e_o.jpg", "secret": "7c868d7b9e", "media": "photo", "latitude": "-38.740962", "id": "5148548", "tags": "roundtheworld greatoceanroad melbourne australia landscape"}, {"datetaken": "2005-01-31 16:23:15", "license": "1", "title": "Perspective", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/4/5148554_a670bdda62_o.jpg", "secret": "a670bdda62", "media": "photo", "latitude": "-38.740962", "id": "5148554", "tags": "roundtheworld greatoceanroad melbourne australia landscape experimental"}, {"datetaken": "2005-01-31 16:25:42", "license": "1", "title": "String of Pearls", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/4/5148570_cc01bdb68a_o.jpg", "secret": "cc01bdb68a", "media": "photo", "latitude": "-38.740962", "id": "5148570", "tags": "roundtheworld greatoceanroad melbourne australia landscape experimental"}, {"datetaken": "2005-01-31 16:26:36", "license": "1", "title": "Apostles in the Frame", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/3/5148584_f90bd3bb45_o.jpg", "secret": "f90bd3bb45", "media": "photo", "latitude": "-38.740962", "id": "5148584", "tags": "roundtheworld greatoceanroad melbourne australia landscape experimental"}, {"datetaken": "2005-01-31 16:27:06", "license": "1", "title": "Apostles in the Frame", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/3/5148596_20b94154e6_o.jpg", "secret": "20b94154e6", "media": "photo", "latitude": "-38.740962", "id": "5148596", "tags": "roundtheworld greatoceanroad melbourne australia landscape experimental"}, {"datetaken": "2005-01-31 16:29:46", "license": "1", "title": "Twelve Apostles", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/5/5148606_666939d8d2_o.jpg", "secret": "666939d8d2", "media": "photo", "latitude": "-38.740962", "id": "5148606", "tags": "roundtheworld greatoceanroad melbourne australia landscape"}, {"datetaken": "2005-01-31 16:33:41", "license": "1", "title": "Twelve Apostles", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/3/5148614_8a1f55b2da_o.jpg", "secret": "8a1f55b2da", "media": "photo", "latitude": "-38.740962", "id": "5148614", "tags": "roundtheworld greatoceanroad melbourne australia landscape experimental"}, {"datetaken": "2005-01-31 16:49:37", "license": "1", "title": "Looking Down Into Loch Ard Gorge", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/5/5148627_0eb92c9dde_o.jpg", "secret": "0eb92c9dde", "media": "photo", "latitude": "-38.740962", "id": "5148627", "tags": "roundtheworld greatoceanroad melbourne australia landscape"}, {"datetaken": "2005-01-31 16:51:46", "license": "1", "title": "Stalactites in Loch Ard Gorge", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/5/5148651_8e7c97540a_o.jpg", "secret": "8e7c97540a", "media": "photo", "latitude": "-38.740962", "id": "5148651", "tags": "roundtheworld greatoceanroad melbourne australia landscape"}, {"datetaken": "2005-01-31 16:52:03", "license": "1", "title": "Stalactites in Loch Ard Gorge", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/3/5148677_b0c83e54a1_o.jpg", "secret": "b0c83e54a1", "media": "photo", "latitude": "-38.740962", "id": "5148677", "tags": "roundtheworld greatoceanroad melbourne australia landscape"}, {"datetaken": "2005-01-31 16:53:48", "license": "1", "title": "Loch Ard Gorge", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/4/5148693_58f3b11d2c_o.jpg", "secret": "58f3b11d2c", "media": "photo", "latitude": "-38.740962", "id": "5148693", "tags": "roundtheworld greatoceanroad melbourne australia landscape"}, {"datetaken": "2005-01-31 16:55:20", "license": "1", "title": "Loch Ard Gorge Cave", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/4/5148708_df8c0da6df_o.jpg", "secret": "df8c0da6df", "media": "photo", "latitude": "-38.740962", "id": "5148708", "tags": "roundtheworld greatoceanroad melbourne australia landscape"}, {"datetaken": "2005-01-31 16:57:23", "license": "1", "title": "Loch Ard Gorge", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/4/5148714_6d039c3319_o.jpg", "secret": "6d039c3319", "media": "photo", "latitude": "-38.740962", "id": "5148714", "tags": "roundtheworld greatoceanroad melbourne australia landscape experimental"}, {"datetaken": "2005-01-31 17:06:18", "license": "1", "title": "The Arch", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/4/5148725_3ba3da406e_o.jpg", "secret": "3ba3da406e", "media": "photo", "latitude": "-38.740962", "id": "5148725", "tags": "roundtheworld greatoceanroad melbourne australia landscape"}, {"datetaken": "2005-01-31 17:13:23", "license": "1", "title": "The Razorback", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/3/5148734_bea8ad90e8_o.jpg", "secret": "bea8ad90e8", "media": "photo", "latitude": "-38.740962", "id": "5148734", "tags": "roundtheworld greatoceanroad melbourne australia landscape"}, {"datetaken": "2005-01-31 17:13:43", "license": "1", "title": "The Razorback", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/4/5148741_21de7d1763_o.jpg", "secret": "21de7d1763", "media": "photo", "latitude": "-38.740962", "id": "5148741", "tags": "roundtheworld greatoceanroad melbourne australia landscape"}, {"datetaken": "2005-01-31 17:17:30", "license": "1", "title": "The Cruel Sea", "text": "", "album_id": "134248", "longitude": "143.185844", "url_o": "https://farm1.staticflickr.com/5/5148748_d9318ce818_o.jpg", "secret": "d9318ce818", "media": "photo", "latitude": "-38.740962", "id": "5148748", "tags": "roundtheworld greatoceanroad melbourne australia landscape experimental"}, {"datetaken": "2005-01-31 17:46:27", "license": "1", "title": "London Bridge", "text": "", "album_id": "134248", "longitude": "143.022766", "url_o": "https://farm1.staticflickr.com/3/5148755_d22de10ae7_o.jpg", "secret": "d22de10ae7", "media": "photo", "latitude": "-38.628940", "id": "5148755", "tags": "roundtheworld greatoceanroad melbourne australia landscape"}, {"datetaken": "2005-03-19 08:42:23", "license": "1", "title": "Dead Sexy", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6932789_a94dbfbe0b_o.jpg", "secret": "a94dbfbe0b", "media": "photo", "latitude": "0", "id": "6932789", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 08:45:53", "license": "1", "title": "Floats", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6934281_63c0d1be38_o.jpg", "secret": "63c0d1be38", "media": "photo", "latitude": "0", "id": "6934281", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 08:48:54", "license": "1", "title": "Best Float In The Parade", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6933321_5011278e08_o.jpg", "secret": "5011278e08", "media": "photo", "latitude": "0", "id": "6933321", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 08:54:50", "license": "1", "title": "Parade", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6933065_299bd86874_o.jpg", "secret": "299bd86874", "media": "photo", "latitude": "0", "id": "6933065", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 08:57:26", "license": "1", "title": "Drummer-Boy", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6933906_0627a1afc2_o.jpg", "secret": "0627a1afc2", "media": "photo", "latitude": "0", "id": "6933906", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 09:05:26", "license": "1", "title": "Confetti Over Carnivale", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6933688_d99b81fd19_o.jpg", "secret": "d99b81fd19", "media": "photo", "latitude": "0", "id": "6933688", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 09:23:01", "license": "1", "title": "There Be Dragons", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6939603_104c3ad1a9_o.jpg", "secret": "104c3ad1a9", "media": "photo", "latitude": "0", "id": "6939603", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 09:23:22", "license": "1", "title": "Meet Dragon-Face", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6940034_8276a564d3_o.jpg", "secret": "8276a564d3", "media": "photo", "latitude": "0", "id": "6940034", "tags": "marseille carnivale parade dragon"}, {"datetaken": "2005-03-19 09:32:01", "license": "1", "title": "Burning Man", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6936153_d041f73b42_o.jpg", "secret": "d041f73b42", "media": "photo", "latitude": "0", "id": "6936153", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 09:34:28", "license": "1", "title": "In France, They Get Beat Up Too", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6935817_a2d5000d61_o.jpg", "secret": "a2d5000d61", "media": "photo", "latitude": "0", "id": "6935817", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 09:36:24", "license": "1", "title": "That's A Man, Man", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6938721_7f9118459c_o.jpg", "secret": "7f9118459c", "media": "photo", "latitude": "0", "id": "6938721", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 09:44:52", "license": "1", "title": "In Brazil, She'd Be Naked", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6936965_a7d72962f2_o.jpg", "secret": "a7d72962f2", "media": "photo", "latitude": "0", "id": "6936965", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 09:49:41", "license": "1", "title": "Do You Dye?", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6936468_f6574931ea_o.jpg", "secret": "f6574931ea", "media": "photo", "latitude": "0", "id": "6936468", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 09:53:17", "license": "1", "title": "French Paramedics", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6936707_68626e3faa_o.jpg", "secret": "68626e3faa", "media": "photo", "latitude": "0", "id": "6936707", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 09:55:18", "license": "1", "title": "Shaving-Cream Fight", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6938920_dbf9cec0e6_o.jpg", "secret": "dbf9cec0e6", "media": "photo", "latitude": "0", "id": "6938920", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 10:07:14", "license": "1", "title": "French People On Strike", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6934527_ef957600da_o.jpg", "secret": "ef957600da", "media": "photo", "latitude": "0", "id": "6934527", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 10:10:00", "license": "1", "title": "Hello, Dragon-Face", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6939810_b90fa2fa71_o.jpg", "secret": "b90fa2fa71", "media": "photo", "latitude": "0", "id": "6939810", "tags": "marseille carnivale parade dragon"}, {"datetaken": "2005-03-19 10:18:44", "license": "1", "title": "Sketch-y", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6938539_66d54fe908_o.jpg", "secret": "66d54fe908", "media": "photo", "latitude": "0", "id": "6938539", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 10:21:07", "license": "1", "title": "The Justice League of Marseille", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6938238_d8e40069c8_o.jpg", "secret": "d8e40069c8", "media": "photo", "latitude": "0", "id": "6938238", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 10:58:09", "license": "1", "title": "Tex-Mex Restaurant", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6939230_04663c1208_o.jpg", "secret": "04663c1208", "media": "photo", "latitude": "0", "id": "6939230", "tags": "marseille carnivale parade"}, {"datetaken": "2005-03-19 11:56:22", "license": "1", "title": "The Beach", "text": "", "album_id": "173123", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6940293_165f31cd4f_o.jpg", "secret": "165f31cd4f", "media": "photo", "latitude": "0", "id": "6940293", "tags": "marseille carnivale parade"}, {"datetaken": "2005-06-18 14:28:08", "license": "2", "title": "K\u00f6ln Impressionen", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/17/20427686_adb059f727_o.jpg", "secret": "adb059f727", "media": "photo", "latitude": "50.936796", "id": "20427686", "tags": "germany cologne k\u00f6ln macexpo mac"}, {"datetaken": "2005-06-18 14:28:40", "license": "2", "title": "Kirche in K\u00f6ln", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/15/20427768_3618d2244a_o.jpg", "secret": "3618d2244a", "media": "photo", "latitude": "50.936796", "id": "20427768", "tags": "germany cologne k\u00f6ln macexpo mac"}, {"datetaken": "2005-06-18 14:30:20", "license": "2", "title": "Hauptbahnhof", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/16/20427786_0274052d2a_o.jpg", "secret": "0274052d2a", "media": "photo", "latitude": "50.936796", "id": "20427786", "tags": "germany cologne k\u00f6ln macexpo mac"}, {"datetaken": "2005-06-18 14:30:31", "license": "2", "title": "Der Rhein", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/17/20427802_d44f28f1a9_o.jpg", "secret": "d44f28f1a9", "media": "photo", "latitude": "50.936796", "id": "20427802", "tags": "germany cologne k\u00f6ln macexpo mac"}, {"datetaken": "2005-06-18 14:35:35", "license": "2", "title": "Kunst auf der Br\u00fccke", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/16/20427810_4473ac4ae5_o.jpg", "secret": "4473ac4ae5", "media": "photo", "latitude": "50.936796", "id": "20427810", "tags": "germany cologne k\u00f6ln macexpo mac"}, {"datetaken": "2005-06-18 14:37:38", "license": "2", "title": "K\u00f6lner Dom", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/17/20427842_df38e645be_o.jpg", "secret": "df38e645be", "media": "photo", "latitude": "50.936796", "id": "20427842", "tags": "germany cologne k\u00f6ln macexpo mac dom"}, {"datetaken": "2005-06-18 14:37:54", "license": "2", "title": "Hauptbahnhof II", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/16/20427846_e1bbb37164_o.jpg", "secret": "e1bbb37164", "media": "photo", "latitude": "50.936796", "id": "20427846", "tags": "germany cologne k\u00f6ln macexpo mac haptbahnhof bahnhof"}, {"datetaken": "2005-06-18 15:41:00", "license": "2", "title": "K\u00f6lner Dom", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/16/20428063_25024209bb_o.jpg", "secret": "25024209bb", "media": "photo", "latitude": "50.936796", "id": "20428063", "tags": "germany cologne k\u00f6ln macexpo mac dom"}, {"datetaken": "2005-06-18 15:41:07", "license": "2", "title": "K\u00f6lner Dom II", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/17/20428080_6e2b34f164_o.jpg", "secret": "6e2b34f164", "media": "photo", "latitude": "50.936796", "id": "20428080", "tags": "germany cologne k\u00f6ln macexpo mac dom"}, {"datetaken": "2005-06-18 15:46:18", "license": "2", "title": "Eisenbahnbr\u00fccke", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/15/20428108_e7495c158d_o.jpg", "secret": "e7495c158d", "media": "photo", "latitude": "50.936796", "id": "20428108", "tags": "germany cologne k\u00f6ln macexpo mac"}, {"datetaken": "2005-06-18 15:46:36", "license": "2", "title": "Geb\u00e4ude am Rhein", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/17/20428129_2c600979a3_o.jpg", "secret": "2c600979a3", "media": "photo", "latitude": "50.936796", "id": "20428129", "tags": "germany cologne k\u00f6ln macexpo mac rhein hyatt lvr"}, {"datetaken": "2005-06-18 15:46:50", "license": "2", "title": "Nochmal Eisenbahnbr\u00fccke", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/16/20428159_92ea335e49_o.jpg", "secret": "92ea335e49", "media": "photo", "latitude": "50.936796", "id": "20428159", "tags": "germany cologne k\u00f6ln macexpo mac"}, {"datetaken": "2005-06-18 17:19:19", "license": "2", "title": "Fotoarchiv - 3972", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/16/20428391_2e63384588_o.jpg", "secret": "2e63384588", "media": "photo", "latitude": "50.936796", "id": "20428391", "tags": "germany mac cologne k\u00f6ln macexpo beachclub"}, {"datetaken": "2005-06-18 17:19:33", "license": "2", "title": "Fotoarchiv - 3973", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/15/20428402_22624b0c96_o.jpg", "secret": "22624b0c96", "media": "photo", "latitude": "50.936796", "id": "20428402", "tags": "germany mac cologne k\u00f6ln macexpo beachclub"}, {"datetaken": "2005-06-18 18:34:32", "license": "2", "title": "Fotoarchiv - 3979", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/16/20428493_e40c755cc5_o.jpg", "secret": "e40c755cc5", "media": "photo", "latitude": "50.936796", "id": "20428493", "tags": "germany cologne k\u00f6ln macexpo mac"}, {"datetaken": "2005-06-18 18:36:37", "license": "2", "title": "Fotoarchiv - 3984", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/17/20428637_e81a9facdf_o.jpg", "secret": "e81a9facdf", "media": "photo", "latitude": "50.936796", "id": "20428637", "tags": "germany mac cologne k\u00f6ln andreas macexpo andreaswilking"}, {"datetaken": "2005-06-18 19:23:35", "license": "2", "title": "Fotoarchiv - 3998", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/15/20428834_9e81de1100_o.jpg", "secret": "9e81de1100", "media": "photo", "latitude": "50.936796", "id": "20428834", "tags": "germany cologne k\u00f6ln macexpo mac"}, {"datetaken": "2005-06-18 19:23:42", "license": "2", "title": "Der Weg nach Hause", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/17/20428857_4db15a5d1c_o.jpg", "secret": "4db15a5d1c", "media": "photo", "latitude": "50.936796", "id": "20428857", "tags": "germany cologne k\u00f6ln macexpo mac"}, {"datetaken": "2005-06-19 11:20:42", "license": "2", "title": "K\u00f6ln Panorama", "text": "", "album_id": "476835", "longitude": "6.961898", "url_o": "https://farm1.staticflickr.com/17/20203333_a598910a13_o.jpg", "secret": "a598910a13", "media": "photo", "latitude": "50.936796", "id": "20203333", "tags": "germany cologne k\u00f6ln panorama"}, {"datetaken": "2005-06-18 09:18:06", "license": "3", "title": "Eastbourne Tennis, June 18, 2005", "text": "", "album_id": "480134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20577327_89953dc715_o.jpg", "secret": "89953dc715", "media": "photo", "latitude": "0", "id": "20577327", "tags": "eastbourne"}, {"datetaken": "2005-06-18 10:01:22", "license": "3", "title": "Eastbourne Tennis, June 18, 2005", "text": "", "album_id": "480134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20577413_46c3e1d32b_o.jpg", "secret": "46c3e1d32b", "media": "photo", "latitude": "0", "id": "20577413", "tags": "eastbourne tennisracketjuggling juggling tennis"}, {"datetaken": "2005-06-18 10:18:58", "license": "3", "title": "Eastbourne Tennis, June 18, 2005", "text": "", "album_id": "480134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20577492_a99d0c4bfc_o.jpg", "secret": "a99d0c4bfc", "media": "photo", "latitude": "0", "id": "20577492", "tags": "eastbourne"}, {"datetaken": "2005-06-18 10:20:00", "license": "3", "title": "Eastbourne Tennis, June 18, 2005", "text": "", "album_id": "480134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20577562_fee430218d_o.jpg", "secret": "fee430218d", "media": "photo", "latitude": "0", "id": "20577562", "tags": "eastbourne"}, {"datetaken": "2005-06-18 13:17:11", "license": "3", "title": "Eastbourne Weekend, June 18, 2005", "text": "", "album_id": "480134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20582748_2b5d518ac3_o.jpg", "secret": "2b5d518ac3", "media": "photo", "latitude": "0", "id": "20582748", "tags": "eastbourne"}, {"datetaken": "2005-06-18 14:56:30", "license": "3", "title": "Eastbourne Tennis, June 18, 2005", "text": "", "album_id": "480134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20577716_86dc9b31e7_o.jpg", "secret": "86dc9b31e7", "media": "photo", "latitude": "0", "id": "20577716", "tags": "eastbourne pimms"}, {"datetaken": "2005-06-18 14:57:42", "license": "3", "title": "Eastbourne Tennis, June 18, 2005", "text": "", "album_id": "480134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20577764_c848b53b1b_o.jpg", "secret": "c848b53b1b", "media": "photo", "latitude": "0", "id": "20577764", "tags": "eastbourne pimms"}, {"datetaken": "2005-06-18 15:06:04", "license": "3", "title": "Eastbourne Tennis, June 18, 2005", "text": "", "album_id": "480134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20577816_a44efa5324_o.jpg", "secret": "a44efa5324", "media": "photo", "latitude": "0", "id": "20577816", "tags": "eastbourne pimms"}, {"datetaken": "2005-06-18 15:54:12", "license": "3", "title": "Eastbourne Tennis, June 18, 2005", "text": "", "album_id": "480134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20577899_8397d8e58b_o.jpg", "secret": "8397d8e58b", "media": "photo", "latitude": "0", "id": "20577899", "tags": "eastbourne"}, {"datetaken": "2005-06-19 09:07:06", "license": "3", "title": "Eastbourne Weekend, June 19, 2005", "text": "", "album_id": "480134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20577950_412f1c0029_o.jpg", "secret": "412f1c0029", "media": "photo", "latitude": "0", "id": "20577950", "tags": "eastbourne"}, {"datetaken": "2005-06-19 09:14:38", "license": "3", "title": "Eastbourne Weekend, June 19, 2005", "text": "", "album_id": "480134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20578022_18de5e8c4c_o.jpg", "secret": "18de5e8c4c", "media": "photo", "latitude": "0", "id": "20578022", "tags": "eastbourne"}, {"datetaken": "2005-06-19 09:15:26", "license": "3", "title": "Eastbourne Weekend, June 19, 2005", "text": "", "album_id": "480134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20578092_28a13c4195_o.jpg", "secret": "28a13c4195", "media": "photo", "latitude": "0", "id": "20578092", "tags": "eastbourne coastguards eastbournepier"}, {"datetaken": "2005-06-19 09:19:04", "license": "3", "title": "Eastbourne Weekend, June 19, 2005", "text": "", "album_id": "480134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20578149_045b263867_o.jpg", "secret": "045b263867", "media": "photo", "latitude": "0", "id": "20578149", "tags": "eastbourne"}, {"datetaken": "2005-06-19 09:23:06", "license": "3", "title": "Eastbourne Weekend, June 19, 2005", "text": "", "album_id": "480134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20578194_fd2c975750_o.jpg", "secret": "fd2c975750", "media": "photo", "latitude": "0", "id": "20578194", "tags": "eastbourne"}, {"datetaken": "2005-06-19 09:29:48", "license": "3", "title": "Eastbourne Weekend, June 19, 2005", "text": "", "album_id": "480134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20578271_6195c4ee69_o.jpg", "secret": "6195c4ee69", "media": "photo", "latitude": "0", "id": "20578271", "tags": "eastbourne"}, {"datetaken": "2005-06-19 09:41:14", "license": "3", "title": "Eastbourne Weekend, June 19, 2005", "text": "", "album_id": "480134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20578390_f07832ffd1_o.jpg", "secret": "f07832ffd1", "media": "photo", "latitude": "0", "id": "20578390", "tags": "eastbourne beachyhead"}, {"datetaken": "2005-06-19 10:36:06", "license": "3", "title": "Eastbourne Weekend, June 19, 2005", "text": "", "album_id": "480134", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20578351_71e6148237_o.jpg", "secret": "71e6148237", "media": "photo", "latitude": "0", "id": "20578351", "tags": "eastbourne"}, {"datetaken": "2005-06-17 09:36:33", "license": "1", "title": "The View from my Office Window", "text": "", "album_id": "481194", "longitude": "-84.383196", "url_o": "https://farm1.staticflickr.com/17/20623527_58ffdca9b9_o.jpg", "secret": "58ffdca9b9", "media": "photo", "latitude": "33.784800", "id": "20623527", "tags": "building city fourseasons glggrand hotel midtown office oneatlanticcenter skyscraper atlanta georgia"}, {"datetaken": "2005-06-17 09:36:33", "license": "1", "title": "One Atlantic Center and the GLG Grand", "text": "", "album_id": "481194", "longitude": "-84.383196", "url_o": "https://farm1.staticflickr.com/16/20623375_f900cf9ff2_o.jpg", "secret": "f900cf9ff2", "media": "photo", "latitude": "33.784800", "id": "20623375", "tags": "building city fourseasons glggrand hotel midtown office oneatlanticcenter skyscraper atlanta georgia"}, {"datetaken": "2005-06-17 09:36:33", "license": "1", "title": "Midtown", "text": "", "album_id": "481194", "longitude": "-84.383196", "url_o": "https://farm1.staticflickr.com/15/20623176_81ce3e6a2c_o.jpg", "secret": "81ce3e6a2c", "media": "photo", "latitude": "33.784800", "id": "20623176", "tags": "building city fourseasons glggrand hotel midtown office oneatlanticcenter skyscraper atlanta georgia"}, {"datetaken": "2005-06-17 12:27:03", "license": "1", "title": "Sky", "text": "", "album_id": "481194", "longitude": "-80.037374", "url_o": "https://farm1.staticflickr.com/17/20614898_e802456c74_o.jpg", "secret": "e802456c74", "media": "photo", "latitude": "26.618591", "id": "20614898", "tags": "summer retreat sky cloud pelican bird blue white palmbeach florida"}, {"datetaken": "2005-06-17 17:41:36", "license": "1", "title": "Northeast", "text": "", "album_id": "481194", "longitude": "-80.037374", "url_o": "https://farm1.staticflickr.com/17/20622462_0a01d9a653_o.jpg", "secret": "0a01d9a653", "media": "photo", "latitude": "26.618591", "id": "20622462", "tags": "beach ocean atlantic sea palmbeach florida"}, {"datetaken": "2005-06-18 01:53:45", "license": "1", "title": "Poolside, 01:53:37 A.M. to 01:53:45 A.M.", "text": "", "album_id": "481194", "longitude": "-80.037374", "url_o": "https://farm1.staticflickr.com/17/20620700_ad3e0c5839_o.jpg", "secret": "ad3e0c5839", "media": "photo", "latitude": "26.618591", "id": "20620700", "tags": "balcony fourseasons green hotel ks night palm purple resort retreat summer palmbeach florida"}, {"datetaken": "2005-06-18 02:05:27", "license": "1", "title": "Palms Poolside", "text": "", "album_id": "481194", "longitude": "-80.037374", "url_o": "https://farm1.staticflickr.com/17/20620436_974fa1d5f8_o.jpg", "secret": "974fa1d5f8", "media": "photo", "latitude": "26.618591", "id": "20620436", "tags": "blue fourseasons green hotel ks palm resort retreat summer tree palmbeach florida"}, {"datetaken": "2005-06-18 02:07:14", "license": "1", "title": "Bottom of the Pool", "text": "", "album_id": "481194", "longitude": "-80.037374", "url_o": "https://farm1.staticflickr.com/17/20620110_2cadb74c39_o.jpg", "secret": "2cadb74c39", "media": "photo", "latitude": "26.618591", "id": "20620110", "tags": "blue fourseasons hotel ks resort retreat summer palmbeach florida"}, {"datetaken": "2005-06-18 02:07:58", "license": "1", "title": "Palm Texture", "text": "", "album_id": "481194", "longitude": "-80.037374", "url_o": "https://farm1.staticflickr.com/17/20619942_b8c2513bfb_o.jpg", "secret": "b8c2513bfb", "media": "photo", "latitude": "26.618591", "id": "20619942", "tags": "fourseasons hotel ks palm resort retreat summer tree palmbeach florida"}, {"datetaken": "2005-06-18 02:21:52", "license": "1", "title": "Feet and Shoes at Night", "text": "", "album_id": "481194", "longitude": "-80.037374", "url_o": "https://farm1.staticflickr.com/16/20619385_f9eb1dd8f6_o.jpg", "secret": "f9eb1dd8f6", "media": "photo", "latitude": "26.618591", "id": "20619385", "tags": "deck feet foot fourseasons hotel ks plank resort retreat shoe shoes summer palmbeach florida"}, {"datetaken": "2005-06-18 02:47:13", "license": "1", "title": "Purple, Green, and Yellow", "text": "", "album_id": "481194", "longitude": "-80.037374", "url_o": "https://farm1.staticflickr.com/16/20619132_3fc26b4c99_o.jpg", "secret": "3fc26b4c99", "media": "photo", "latitude": "26.618591", "id": "20619132", "tags": "beach fourseasons green hotel ks palm purple resort retreat summer yellow palmbeach florida"}, {"datetaken": "2005-06-18 02:48:47", "license": "1", "title": "Down the Beach", "text": "", "album_id": "481194", "longitude": "-80.037374", "url_o": "https://farm1.staticflickr.com/17/20618958_f6bcfc40e5_o.jpg", "secret": "f6bcfc40e5", "media": "photo", "latitude": "26.618591", "id": "20618958", "tags": "beach fourseasons hotel ks orange palm purple resort retreat summer yellow palmbeach florida"}, {"datetaken": "2005-06-18 02:49:20", "license": "1", "title": "Down the Beach", "text": "", "album_id": "481194", "longitude": "-80.037374", "url_o": "https://farm1.staticflickr.com/15/20618719_e12dbde222_o.jpg", "secret": "e12dbde222", "media": "photo", "latitude": "26.618591", "id": "20618719", "tags": "beach fourseasons hotel ks purple resort retreat summer palmbeach florida"}, {"datetaken": "2005-06-18 02:50:28", "license": "1", "title": "On the Beach", "text": "", "album_id": "481194", "longitude": "-80.037374", "url_o": "https://farm1.staticflickr.com/15/20618501_b831ad8660_o.jpg", "secret": "b831ad8660", "media": "photo", "latitude": "26.618591", "id": "20618501", "tags": "beach fourseasons hotel ks resort retreat summer palmbeach florida"}, {"datetaken": "2005-06-18 02:53:07", "license": "1", "title": "Turtle's Nest, 02:53:07 A.M.", "text": "", "album_id": "481194", "longitude": "-80.037374", "url_o": "https://farm1.staticflickr.com/15/20618364_8b83eb6709_o.jpg", "secret": "8b83eb6709", "media": "photo", "latitude": "26.618591", "id": "20618364", "tags": "beach fourseasons hotel ks nest resort retreat seaturtle summer turtle palmbeach florida"}, {"datetaken": "2005-06-18 12:26:51", "license": "1", "title": "Sky", "text": "", "album_id": "481194", "longitude": "-80.037374", "url_o": "https://farm1.staticflickr.com/17/20615043_81f5669fd3_o.jpg", "secret": "81f5669fd3", "media": "photo", "latitude": "26.618591", "id": "20615043", "tags": "summer retreat sky cloud blue white palm tree palmbeach florida"}, {"datetaken": "2005-06-19 13:32:57", "license": "5", "title": "HobokenRamp", "text": "", "album_id": "483252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20722951_0f0df218af_o.jpg", "secret": "0f0df218af", "media": "photo", "latitude": "0", "id": "20722951", "tags": "06192005hoboken kayaking hoboken"}, {"datetaken": "2005-06-19 13:33:09", "license": "5", "title": "BrownieLady", "text": "", "album_id": "483252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20723987_8a1773e4ab_o.jpg", "secret": "8a1773e4ab", "media": "photo", "latitude": "0", "id": "20723987", "tags": "06192005hoboken kayaking hoboken"}, {"datetaken": "2005-06-20 11:53:16", "license": "5", "title": "Wonderful Pea Gravel", "text": "", "album_id": "483252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20511184_0dc787efd0_o.jpg", "secret": "0dc787efd0", "media": "photo", "latitude": "0", "id": "20511184", "tags": "06192005hoboken kayaking hoboken"}, {"datetaken": "2005-06-20 12:03:23", "license": "5", "title": "Kayaking!", "text": "", "album_id": "483252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20509825_c97521c9d7_o.jpg", "secret": "c97521c9d7", "media": "photo", "latitude": "0", "id": "20509825", "tags": "06192005hoboken kayaking hoboken"}, {"datetaken": "2005-06-20 12:32:23", "license": "5", "title": "Keeping a Watchful Eye", "text": "", "album_id": "483252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20511183_0170365d97_o.jpg", "secret": "0170365d97", "media": "photo", "latitude": "0", "id": "20511183", "tags": "06192005hoboken kayaking hoboken"}, {"datetaken": "2005-06-20 13:49:28", "license": "5", "title": "DoubleTrouble", "text": "", "album_id": "483252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20511182_554fdc8c2b_o.jpg", "secret": "554fdc8c2b", "media": "photo", "latitude": "0", "id": "20511182", "tags": "06192005hoboken kayaking hoboken"}, {"datetaken": "2005-06-20 13:49:41", "license": "5", "title": "HappyLinePeople", "text": "", "album_id": "483252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20509830_179b8cc55c_o.jpg", "secret": "179b8cc55c", "media": "photo", "latitude": "0", "id": "20509830", "tags": "06192005hoboken kayaking hoboken"}, {"datetaken": "2005-06-20 13:49:57", "license": "5", "title": "Sandy", "text": "", "album_id": "483252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20511181_285f7417b1_o.jpg", "secret": "285f7417b1", "media": "photo", "latitude": "0", "id": "20511181", "tags": "06192005hoboken kayaking hoboken"}, {"datetaken": "2005-06-20 13:50:14", "license": "5", "title": "Jeremy", "text": "", "album_id": "483252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20511180_17db4154fd_o.jpg", "secret": "17db4154fd", "media": "photo", "latitude": "0", "id": "20511180", "tags": "06192005hoboken kayaking hoboken"}, {"datetaken": "2005-06-20 13:50:29", "license": "5", "title": "CatherineMartaGeoff", "text": "", "album_id": "483252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20509829_6028776697_o.jpg", "secret": "6028776697", "media": "photo", "latitude": "0", "id": "20509829", "tags": "06192005hoboken kayaking hoboken"}, {"datetaken": "2005-06-20 14:19:34", "license": "5", "title": "HappyPaddlers", "text": "", "album_id": "483252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20509828_bc0dede7a6_o.jpg", "secret": "bc0dede7a6", "media": "photo", "latitude": "0", "id": "20509828", "tags": "06192005hoboken kayaking hoboken"}, {"datetaken": "2005-06-20 14:19:49", "license": "5", "title": "Kayaking2", "text": "", "album_id": "483252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20509827_630a9fc08c_o.jpg", "secret": "630a9fc08c", "media": "photo", "latitude": "0", "id": "20509827", "tags": "06192005hoboken kayaking hoboken"}, {"datetaken": "2005-06-20 14:40:06", "license": "5", "title": "HomeSweetHome", "text": "", "album_id": "483252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20509826_c80c2ad3e2_o.jpg", "secret": "c80c2ad3e2", "media": "photo", "latitude": "0", "id": "20509826", "tags": "06192005hoboken kayaking hoboken"}, {"datetaken": "2005-06-20 14:42:19", "license": "5", "title": "Tania", "text": "", "album_id": "483252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20511179_720fa4db86_o.jpg", "secret": "720fa4db86", "media": "photo", "latitude": "0", "id": "20511179", "tags": "06192005hoboken kayaking hoboken"}, {"datetaken": "2005-06-21 12:19:22", "license": "5", "title": "06192005HoboBeachMP", "text": "", "album_id": "483252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20722946_f899828723_o.jpg", "secret": "f899828723", "media": "photo", "latitude": "0", "id": "20722946", "tags": "06192005hoboken kayaking hoboken"}, {"datetaken": "2005-06-21 12:19:22", "license": "5", "title": "06192005HoboSkylineMP", "text": "", "album_id": "483252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20722947_20673cb33e_o.jpg", "secret": "20673cb33e", "media": "photo", "latitude": "0", "id": "20722947", "tags": "06192005hoboken kayaking hoboken"}, {"datetaken": "2005-06-21 12:25:16", "license": "5", "title": "GeoffHoboken1", "text": "", "album_id": "483252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20723986_d63831efd4_o.jpg", "secret": "d63831efd4", "media": "photo", "latitude": "0", "id": "20723986", "tags": "06192005hoboken kayaking hoboken"}, {"datetaken": "2009-12-18 16:42:07", "license": "1", "title": "Pre-Courtney Honeymoon", "text": "", "album_id": "72157625201285824", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4294573894_f5bcbc61cd_o.jpg", "secret": "0ba6de1178", "media": "photo", "latitude": "0", "id": "4294573894", "tags": "florida christina bocaraton 2009 bocaratonresortandclub"}, {"datetaken": "2009-12-18 16:42:37", "license": "1", "title": "balcony", "text": "", "album_id": "72157625201285824", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2712/4293832329_624c1abd4f_o.jpg", "secret": "333da0a393", "media": "photo", "latitude": "0", "id": "4293832329", "tags": "ocean florida balcony bocaraton 2009 bocaratonresortandclub"}, {"datetaken": "2009-12-18 16:45:11", "license": "1", "title": "balcony", "text": "", "album_id": "72157625201285824", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4293833081_74c5ffcfa1_o.jpg", "secret": "9175f645bb", "media": "photo", "latitude": "0", "id": "4293833081", "tags": "ocean john florida balcony bocaraton 2009 bocaratonresortandclub"}, {"datetaken": "2009-12-18 16:45:29", "license": "1", "title": "balcony", "text": "", "album_id": "72157625201285824", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4294575674_2806d48b02_o.jpg", "secret": "6b72eed0ee", "media": "photo", "latitude": "0", "id": "4294575674", "tags": "ocean john florida balcony bocaraton 2009 bocaratonresortandclub"}, {"datetaken": "2009-12-18 16:47:58", "license": "1", "title": "tub", "text": "", "album_id": "72157625201285824", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2788/4293834105_7e0ee6c750_o.jpg", "secret": "2ed56f9e77", "media": "photo", "latitude": "0", "id": "4293834105", "tags": "florida christina bathtub bocaraton 2009 bocaratonresortandclub"}, {"datetaken": "2009-12-19 08:33:37", "license": "1", "title": "breakfast", "text": "", "album_id": "72157625201285824", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4294577746_4a5b3d9943_o.jpg", "secret": "56f38e3192", "media": "photo", "latitude": "0", "id": "4294577746", "tags": "breakfast john florida bocaraton 2009 bocaratonresortandclub"}, {"datetaken": "2009-12-19 08:33:59", "license": "1", "title": "breakfast", "text": "", "album_id": "72157625201285824", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4294578392_35e8f9da4e_o.jpg", "secret": "d8a3f7c3c6", "media": "photo", "latitude": "0", "id": "4294578392", "tags": "breakfast florida christina bocaraton 2009 bocaratonresortandclub"}, {"datetaken": "2009-12-20 09:49:04", "license": "1", "title": "coffee", "text": "", "album_id": "72157625201285824", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4293837507_f251624929_o.jpg", "secret": "114169a4cd", "media": "photo", "latitude": "0", "id": "4293837507", "tags": "coffee john florida bocaraton 2009 bocaratonresortandclub"}, {"datetaken": "2009-12-20 09:49:10", "license": "1", "title": "coffee", "text": "", "album_id": "72157625201285824", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4294580346_9be1a031b5_o.jpg", "secret": "cd71d1f064", "media": "photo", "latitude": "0", "id": "4294580346", "tags": "coffee john florida bocaraton 2009 bocaratonresortandclub"}, {"datetaken": "2009-12-20 09:49:25", "license": "1", "title": "view", "text": "", "album_id": "72157625201285824", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2565/4293839089_c19569203a_o.jpg", "secret": "91b4cb089f", "media": "photo", "latitude": "0", "id": "4293839089", "tags": "ocean florida bocaraton 2009 bocaratonresortandclub"}, {"datetaken": "2009-12-20 09:49:43", "license": "1", "title": "view", "text": "", "album_id": "72157625201285824", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2677/4293839941_530a69f273_o.jpg", "secret": "8544bc5af8", "media": "photo", "latitude": "0", "id": "4293839941", "tags": "beach pool florida bocaraton 2009 bocaratonresortandclub"}, {"datetaken": "2009-12-20 10:39:14", "license": "1", "title": "birds", "text": "", "album_id": "72157625201285824", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2764/4293840793_55e033930a_o.jpg", "secret": "5c9bb6505f", "media": "photo", "latitude": "0", "id": "4293840793", "tags": "birds florida bocaraton 2009 bocaratonresortandclub"}, {"datetaken": "2005-03-21 04:40:44", "license": "1", "title": "4:40 - My camera and clock disagree", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7129377_4c94e681d1_o.jpg", "secret": "4c94e681d1", "media": "photo", "latitude": "0", "id": "7129377", "tags": "dilomar05 murrieta california"}, {"datetaken": "2005-03-21 04:42:56", "license": "1", "title": "4:42 - Groggy me", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7129443_9b41912674_o.jpg", "secret": "9b41912674", "media": "photo", "latitude": "0", "id": "7129443", "tags": "dilomar05 murrieta california poster"}, {"datetaken": "2005-03-21 04:44:42", "license": "1", "title": "4:44 - Daughter crams for school", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7129466_f5ea3bfd26_o.jpg", "secret": "f5ea3bfd26", "media": "photo", "latitude": "0", "id": "7129466", "tags": "dilomar05 murrieta california bethany"}, {"datetaken": "2005-03-21 04:55:06", "license": "1", "title": "4:55 - Breakfast of Champions", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7129532_3f5679ea17_o.jpg", "secret": "3f5679ea17", "media": "photo", "latitude": "0", "id": "7129532", "tags": "dilomar05 murrieta california breakfast oatmeal"}, {"datetaken": "2005-03-21 05:40:26", "license": "1", "title": "5:40 - His & Hers coffee", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7129666_6c7c7f01b0_o.jpg", "secret": "6c7c7f01b0", "media": "photo", "latitude": "0", "id": "7129666", "tags": "dilomar05 murrieta california coffee"}, {"datetaken": "2005-03-21 06:03:39", "license": "1", "title": "6:03 - Ignition", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7129753_bd3e72daf1_o.jpg", "secret": "bd3e72daf1", "media": "photo", "latitude": "0", "id": "7129753", "tags": "dilomar05 murrieta california commute mustang poster"}, {"datetaken": "2005-03-21 06:28:31", "license": "1", "title": "6:28 - The driver's view of Ortega Highway", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7130002_6ff397d755_o.jpg", "secret": "6ff397d755", "media": "photo", "latitude": "0", "id": "7130002", "tags": "dilomar05 california ortegahighway commute"}, {"datetaken": "2005-03-21 06:32:40", "license": "1", "title": "6:32 - Sunrise over Lake Elsinore", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7130081_b49d862a75_o.jpg", "secret": "b49d862a75", "media": "photo", "latitude": "0", "id": "7130081", "tags": "dilomar05 california ortegahighway commute lakeelsinore"}, {"datetaken": "2005-03-21 06:37:48", "license": "1", "title": "6:37 - Ortega Highway", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7130167_d4782c1fb6_o.jpg", "secret": "d4782c1fb6", "media": "photo", "latitude": "0", "id": "7130167", "tags": "dilomar05 california ortegahighway commute"}, {"datetaken": "2005-03-21 06:37:58", "license": "1", "title": "6:37 - The Obligatory Mustang Shot", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7130180_f4e3229583_o.jpg", "secret": "f4e3229583", "media": "photo", "latitude": "0", "id": "7130180", "tags": "dilomar05 california ortegahighway commute"}, {"datetaken": "2005-03-21 07:05:23", "license": "1", "title": "7:05 - Looking back over the mountains", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7130209_5a16ddfbb6_o.jpg", "secret": "5a16ddfbb6", "media": "photo", "latitude": "0", "id": "7130209", "tags": "dilomar05 california ortegahighway commute"}, {"datetaken": "2005-03-21 07:44:43", "license": "1", "title": "7:44 - My stall in the cubicle farm", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7130336_3e00438daf_o.jpg", "secret": "3e00438daf", "media": "photo", "latitude": "0", "id": "7130336", "tags": "dilomar05 california alisoviejo work cubicle"}, {"datetaken": "2005-03-21 08:18:11", "license": "1", "title": "8:18 - Our favorite barrista, Hans", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7130380_0017ed05b0_o.jpg", "secret": "0017ed05b0", "media": "photo", "latitude": "0", "id": "7130380", "tags": "dilomar05 california alisoviejo coffee"}, {"datetaken": "2005-03-21 10:53:28", "license": "1", "title": "10:53 - iPod Shuffle disguised as interoffice mail", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7130412_72c5690269_o.jpg", "secret": "72c5690269", "media": "photo", "latitude": "0", "id": "7130412", "tags": "dilomar05 california alisoviejo work"}, {"datetaken": "2005-03-21 11:33:45", "license": "1", "title": "11:33 - New Shoes", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7130441_14493a75f3_o.jpg", "secret": "14493a75f3", "media": "photo", "latitude": "0", "id": "7130441", "tags": "dilomar05 california alisoviejo shoes poster"}, {"datetaken": "2005-03-21 17:20:34", "license": "1", "title": "17:20 - Lone sea gull", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7138657_72b9a15263_o.jpg", "secret": "72b9a15263", "media": "photo", "latitude": "0", "id": "7138657", "tags": "dilomar05 california commute camppendelton sandiego ocean sunset gulls birds pacific"}, {"datetaken": "2005-03-21 17:26:46", "license": "1", "title": "17:26 - Sunset", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7138766_36bf33a229_o.jpg", "secret": "36bf33a229", "media": "photo", "latitude": "0", "id": "7138766", "tags": "dilomar05 california commute camppendelton sandiego ocean sunset gulls birds pacific poster"}, {"datetaken": "2005-03-21 17:30:15", "license": "1", "title": "17:30 - Sunset", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7138789_3d07b87f7e_o.jpg", "secret": "3d07b87f7e", "media": "photo", "latitude": "0", "id": "7138789", "tags": "dilomar05 california commute camppendelton sandiego ocean sunset pacific"}, {"datetaken": "2005-03-21 18:33:59", "license": "1", "title": "18:33 - Room Five", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7138864_efa3983bc5_o.jpg", "secret": "efa3983bc5", "media": "photo", "latitude": "0", "id": "7138864", "tags": "dilomar05 murrieta california room5 computer home"}, {"datetaken": "2005-03-21 21:21:04", "license": "1", "title": "17:21 - 24", "text": "", "album_id": "177863", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7138936_875bb9be9c_o.jpg", "secret": "875bb9be9c", "media": "photo", "latitude": "0", "id": "7138936", "tags": "dilomar05 murrieta california home 24 tv poster"}, {"datetaken": "2005-03-22 11:24:34", "license": "3", "title": "canyonhike_02", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7142078_b0940bc6a9_o.jpg", "secret": "b0940bc6a9", "media": "photo", "latitude": "0", "id": "7142078", "tags": "hawaii kauai canyon megan"}, {"datetaken": "2005-03-22 11:24:34", "license": "3", "title": "canyonhike_05", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7142080_3f787503a7_o.jpg", "secret": "3f787503a7", "media": "photo", "latitude": "0", "id": "7142080", "tags": "hawaii kauai canyon"}, {"datetaken": "2005-03-22 11:24:34", "license": "3", "title": "canyonhike_09", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7142082_5df6fe5796_o.jpg", "secret": "5df6fe5796", "media": "photo", "latitude": "0", "id": "7142082", "tags": "hawaii kauai canyon"}, {"datetaken": "2005-03-22 11:24:34", "license": "3", "title": "canyonhike_11", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7142083_ea60a92ddf_o.jpg", "secret": "ea60a92ddf", "media": "photo", "latitude": "0", "id": "7142083", "tags": "hawaii kauai canyon megan"}, {"datetaken": "2005-03-22 11:39:49", "license": "3", "title": "flowers_01_crop1", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7143232_66314ce535_o.jpg", "secret": "66314ce535", "media": "photo", "latitude": "0", "id": "7143232", "tags": "flowers hawaii kauai profilewallpaper1"}, {"datetaken": "2005-03-22 11:39:49", "license": "3", "title": "flowers_02", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7143233_da5a23f910_o.jpg", "secret": "da5a23f910", "media": "photo", "latitude": "0", "id": "7143233", "tags": "hawaii kauai flowers macro"}, {"datetaken": "2005-03-22 11:39:49", "license": "3", "title": "flowers_03_crop1", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7143234_511ec8d7c3_o.jpg", "secret": "511ec8d7c3", "media": "photo", "latitude": "0", "id": "7143234", "tags": "flowers hawaii kauai"}, {"datetaken": "2005-03-22 11:39:49", "license": "3", "title": "flowers_04_crop1", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7143235_07a5b2a951_o.jpg", "secret": "07a5b2a951", "media": "photo", "latitude": "0", "id": "7143235", "tags": "hawaii kauai flowers"}, {"datetaken": "2005-03-22 11:39:49", "license": "3", "title": "spoutinghorn_05_crop1", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7143236_1d478cb259_o.jpg", "secret": "1d478cb259", "media": "photo", "latitude": "0", "id": "7143236", "tags": "hawaii kauai"}, {"datetaken": "2005-03-22 11:39:49", "license": "3", "title": "surfing_04_lawaii_1", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7143237_d4081c6631_o.jpg", "secret": "d4081c6631", "media": "photo", "latitude": "0", "id": "7143237", "tags": "hawaii kauai surfing megan narisa"}, {"datetaken": "2005-03-22 11:47:40", "license": "3", "title": "cremebrulee_ginger", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7143784_b9eca00097_o.jpg", "secret": "b9eca00097", "media": "photo", "latitude": "0", "id": "7143784", "tags": "hawaii kauai food"}, {"datetaken": "2005-03-22 11:47:40", "license": "3", "title": "hanaleicoast_view1", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7143785_542f481dfc_o.jpg", "secret": "542f481dfc", "media": "photo", "latitude": "0", "id": "7143785", "tags": "hawaii kauai views"}, {"datetaken": "2005-03-22 11:47:40", "license": "3", "title": "carview_03_1600", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7143789_a04d594aeb_o.jpg", "secret": "a04d594aeb", "media": "photo", "latitude": "0", "id": "7143789", "tags": "wallpaper hawaii views kauai profilewallpaper2"}, {"datetaken": "2005-03-22 11:56:56", "license": "3", "title": "mtwaieleale_1", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7144425_e31a0e2c03_o.jpg", "secret": "e31a0e2c03", "media": "photo", "latitude": "0", "id": "7144425", "tags": "hawaii kauai"}, {"datetaken": "2005-03-22 11:56:56", "license": "3", "title": "mtwaieleale_5", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7144426_9ddefad441_o.jpg", "secret": "9ddefad441", "media": "photo", "latitude": "0", "id": "7144426", "tags": "hawaii kauai views"}, {"datetaken": "2005-03-22 11:56:56", "license": "3", "title": "mtwaieleale_3", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7144427_b680ad3db7_o.jpg", "secret": "b680ad3db7", "media": "photo", "latitude": "0", "id": "7144427", "tags": "hawaii kauai views"}, {"datetaken": "2005-03-22 11:56:56", "license": "3", "title": "napali_sunrise_01", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7144428_9f20828580_o.jpg", "secret": "9f20828580", "media": "photo", "latitude": "0", "id": "7144428", "tags": "hawaii kauai sunrise"}, {"datetaken": "2005-03-22 11:56:56", "license": "3", "title": "napali_sunrise_02", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7144429_48286fac4f_o.jpg", "secret": "48286fac4f", "media": "photo", "latitude": "0", "id": "7144429", "tags": "wallpaper sunrise hawaii kauai profilewallpaper1"}, {"datetaken": "2005-03-22 11:56:56", "license": "3", "title": "napalicoast_01", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7144430_5be03b814c_o.jpg", "secret": "5be03b814c", "media": "photo", "latitude": "0", "id": "7144430", "tags": "hawaii kauai views"}, {"datetaken": "2005-03-22 12:14:44", "license": "3", "title": "canyonhike_B1", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7145396_13f83e1ef7_o.jpg", "secret": "13f83e1ef7", "media": "photo", "latitude": "0", "id": "7145396", "tags": "panorama hawaii views kauai panoramamaker arcsoft"}, {"datetaken": "2005-03-22 12:14:44", "license": "3", "title": "canyonhike_C1", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7145397_a8ae89ab84_o.jpg", "secret": "a8ae89ab84", "media": "photo", "latitude": "0", "id": "7145397", "tags": "panorama hawaii views kauai panoramamaker arcsoft"}, {"datetaken": "2005-03-22 12:14:44", "license": "3", "title": "cows_01_sm", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7145398_eeccd480d9_o.jpg", "secret": "eeccd480d9", "media": "photo", "latitude": "0", "id": "7145398", "tags": "panorama hawaii views kauai panoramamaker arcsoft"}, {"datetaken": "2005-03-22 12:14:44", "license": "3", "title": "lighthouseview2", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7145399_d46a54347b_o.jpg", "secret": "d46a54347b", "media": "photo", "latitude": "0", "id": "7145399", "tags": "panorama hawaii views kauai panoramamaker arcsoft"}, {"datetaken": "2005-03-22 12:14:44", "license": "3", "title": "napalicoast_A_sm", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7145400_39e6ca9e6e_o.jpg", "secret": "39e6ca9e6e", "media": "photo", "latitude": "0", "id": "7145400", "tags": "panorama hawaii views kauai panoramamaker arcsoft"}, {"datetaken": "2005-03-22 12:14:44", "license": "3", "title": "niihau_sm", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7145401_38684f8aca_o.jpg", "secret": "38684f8aca", "media": "photo", "latitude": "0", "id": "7145401", "tags": "panorama hawaii views kauai"}, {"datetaken": "2005-03-22 12:25:30", "license": "3", "title": "horseride_03", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7145964_e4503d8835_o.jpg", "secret": "e4503d8835", "media": "photo", "latitude": "0", "id": "7145964", "tags": "hawaii kauai views"}, {"datetaken": "2005-03-22 12:25:30", "license": "3", "title": "horseride_07", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7145965_5e713d6ea8_o.jpg", "secret": "5e713d6ea8", "media": "photo", "latitude": "0", "id": "7145965", "tags": "friends horse hawaii megan views kauai"}, {"datetaken": "2005-03-22 12:25:30", "license": "3", "title": "horseride_09", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7145966_a0769d0216_o.jpg", "secret": "a0769d0216", "media": "photo", "latitude": "0", "id": "7145966", "tags": "hawaii kauai views horse"}, {"datetaken": "2005-03-22 12:25:30", "license": "3", "title": "horseride_10_crop", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7145967_21269e6854_o.jpg", "secret": "21269e6854", "media": "photo", "latitude": "0", "id": "7145967", "tags": "hawaii kauai horse humor"}, {"datetaken": "2005-03-22 12:25:30", "license": "3", "title": "waimeacanyon_B1", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7145968_bf91f03168_o.jpg", "secret": "bf91f03168", "media": "photo", "latitude": "0", "id": "7145968", "tags": "panorama hawaii views kauai panoramamaker arcsoft"}, {"datetaken": "2005-03-22 12:44:23", "license": "3", "title": "sunrise_01_onpool", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7147384_1a128fa9eb_o.jpg", "secret": "1a128fa9eb", "media": "photo", "latitude": "0", "id": "7147384", "tags": "sunrise hawaii kauai profilewallpaper1"}, {"datetaken": "2005-03-22 12:44:23", "license": "3", "title": "sunrise_03_balcony2", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7147385_cc61b17c79_o.jpg", "secret": "cc61b17c79", "media": "photo", "latitude": "0", "id": "7147385", "tags": "hawaii kauai sunrise"}, {"datetaken": "2005-03-22 12:44:23", "license": "3", "title": "sunrise_04_balcony3", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7147386_448653bcab_o.jpg", "secret": "448653bcab", "media": "photo", "latitude": "0", "id": "7147386", "tags": "sunrise hawaii kauai profilewallpaper2"}, {"datetaken": "2005-03-22 12:44:23", "license": "3", "title": "sunset_kauai_14+13", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7147387_c28f106c64_o.jpg", "secret": "c28f106c64", "media": "photo", "latitude": "0", "id": "7147387", "tags": "hawaii kauai views sunset"}, {"datetaken": "2005-03-22 12:44:23", "license": "3", "title": "sunset_kauai_10+11", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7147388_31ff57b856_o.jpg", "secret": "31ff57b856", "media": "photo", "latitude": "0", "id": "7147388", "tags": "hawaii kauai views sunset"}, {"datetaken": "2005-03-22 12:44:23", "license": "3", "title": "sunset_kauai_06", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7147389_ca98ee0ac7_o.jpg", "secret": "ca98ee0ac7", "media": "photo", "latitude": "0", "id": "7147389", "tags": "sunset hawaii views kauai profilewallpaper1"}, {"datetaken": "2005-03-22 12:53:59", "license": "3", "title": "sunset_kauai_15", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7148331_f7e04b4d21_o.jpg", "secret": "f7e04b4d21", "media": "photo", "latitude": "0", "id": "7148331", "tags": "hawaii kauai views sunset"}, {"datetaken": "2005-03-22 12:53:59", "license": "3", "title": "sunset_kauai_09", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7148332_7700312dab_o.jpg", "secret": "7700312dab", "media": "photo", "latitude": "0", "id": "7148332", "tags": "sunset hawaii views kauai profilewallpaper1"}, {"datetaken": "2005-03-22 12:53:59", "license": "3", "title": "waimeacanyon_01", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7148333_f5424c19dd_o.jpg", "secret": "f5424c19dd", "media": "photo", "latitude": "0", "id": "7148333", "tags": "hawaii canyon views kauai profilewallpaper2"}, {"datetaken": "2005-03-22 12:53:59", "license": "3", "title": "waimeacanyon_03", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7148335_4d975c9117_o.jpg", "secret": "4d975c9117", "media": "photo", "latitude": "0", "id": "7148335", "tags": "hawaii kauai views canyon"}, {"datetaken": "2005-03-22 12:53:59", "license": "3", "title": "waimeacanyon_06", "text": "", "album_id": "177893", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7148336_362bffcf37_o.jpg", "secret": "362bffcf37", "media": "photo", "latitude": "0", "id": "7148336", "tags": "hawaii kauai views canyon"}, {"datetaken": "2005-06-21 00:00:00", "license": "1", "title": "Carnewas_5286L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20939304_1e719b455a_o.jpg", "secret": "1e719b455a", "media": "photo", "latitude": "0", "id": "20939304", "tags": "dilojun05 carnewas june 2005 cornwall bedruthan"}, {"datetaken": "2005-06-21 00:00:01", "license": "1", "title": "Carnewas_5268L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20939305_67b750cc26_o.jpg", "secret": "67b750cc26", "media": "photo", "latitude": "0", "id": "20939305", "tags": "2005 15fav field june stone wall cornwall hay coastpath kernow bedruthan northcornwall dilojun05 carnewas"}, {"datetaken": "2005-06-21 00:00:02", "license": "1", "title": "Carnewas_5266L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20939306_fb59358640_o.jpg", "secret": "fb59358640", "media": "photo", "latitude": "0", "id": "20939306", "tags": "2005 field june cornwall hay coastpath kernow bedruthan northcornwall dilojun05 dilojune05 carnewas"}, {"datetaken": "2005-06-21 00:00:03", "license": "1", "title": "Carnewas_5266-7PAN", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20939307_3ab033b5b1_o.jpg", "secret": "3ab033b5b1", "media": "photo", "latitude": "0", "id": "20939307", "tags": "kernow northcornwall dilojun05 carnewas coastpath hay field wall june 2005 cornwall bedruthan"}, {"datetaken": "2005-06-21 00:00:04", "license": "1", "title": "Carnewas_5262L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20916161_bc98d1fd29_o.jpg", "secret": "bc98d1fd29", "media": "photo", "latitude": "0", "id": "20916161", "tags": "2005 flowers june catchycolors cornwall bedruthan dilojun05 dilojune05 carnewas"}, {"datetaken": "2005-06-21 00:00:05", "license": "1", "title": "Carnewas_5261L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20916151_85efcf2c04_o.jpg", "secret": "85efcf2c04", "media": "photo", "latitude": "0", "id": "20916151", "tags": "dilojun05 carnewas flowers june 2005 cornwall bedruthan"}, {"datetaken": "2005-06-21 00:00:06", "license": "1", "title": "Carnewas_5259L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20916133_003784d64e_o.jpg", "secret": "003784d64e", "media": "photo", "latitude": "0", "id": "20916133", "tags": "dilojun05 carnewas flowers june 2005 catchycolors cornwall bedruthan"}, {"datetaken": "2005-06-21 00:00:07", "license": "1", "title": "Carnewas_5258L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20916114_2337830116_o.jpg", "secret": "2337830116", "media": "photo", "latitude": "0", "id": "20916114", "tags": "dilojun05 carnewas flowers june 2005 cornwall bedruthan"}, {"datetaken": "2005-06-21 00:00:08", "license": "1", "title": "Carnewas_5257L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20916100_09f98c45c9_o.jpg", "secret": "09f98c45c9", "media": "photo", "latitude": "0", "id": "20916100", "tags": "dilojun05 carnewas flowers june 2005 cornwall bedruthan"}, {"datetaken": "2005-06-21 00:00:09", "license": "1", "title": "Carnewas_5252L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20916094_cc0edd6234_o.jpg", "secret": "cc0edd6234", "media": "photo", "latitude": "0", "id": "20916094", "tags": "dilojun05 carnewas flowers june 2005 cornwall bedruthan"}, {"datetaken": "2005-06-21 00:00:10", "license": "1", "title": "Bedruthan_5297L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20908202_3c5290e68c_o.jpg", "secret": "3c5290e68c", "media": "photo", "latitude": "0", "id": "20908202", "tags": "dilojun05 carnewas trevoselighthouse june 2005 cornwall bedruthan"}, {"datetaken": "2005-06-21 00:00:11", "license": "1", "title": "Carnewas_5242L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20908186_70362db7ee_o.jpg", "secret": "70362db7ee", "media": "photo", "latitude": "0", "id": "20908186", "tags": "dilojun05 carnewas flowers june 2005 cornwall bedruthan"}, {"datetaken": "2005-06-21 00:00:12", "license": "1", "title": "Carnewas_5239L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20908155_e9beff144f_o.jpg", "secret": "e9beff144f", "media": "photo", "latitude": "0", "id": "20908155", "tags": "dilojun05 carnewas june 2005 cornwall bedruthan"}, {"datetaken": "2005-06-21 00:00:13", "license": "1", "title": "Carnewas_5227L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20908139_4b6648cf2b_o.jpg", "secret": "4b6648cf2b", "media": "photo", "latitude": "0", "id": "20908139", "tags": "dilojun05 carnewas june 2005 cornwall bedruthan"}, {"datetaken": "2005-06-21 00:00:14", "license": "1", "title": "Carnewas_5241L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20908127_9af5b80cc4_o.jpg", "secret": "9af5b80cc4", "media": "photo", "latitude": "0", "id": "20908127", "tags": "dilojun05 carnewas flowers june 2005 cornwall bedruthan"}, {"datetaken": "2005-06-21 00:00:15", "license": "1", "title": "Carnewas_5232L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20908099_3f9b2dda7c_o.jpg", "secret": "3f9b2dda7c", "media": "photo", "latitude": "0", "id": "20908099", "tags": "dilojun05 carnewas flowers june 2005 cornwall bedruthan"}, {"datetaken": "2005-06-21 00:00:16", "license": "1", "title": "Carnewas_5231L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20908069_cb52a309cc_o.jpg", "secret": "cb52a309cc", "media": "photo", "latitude": "0", "id": "20908069", "tags": "dilojun05 carnewas flowers squaredcircle june 2005 cornwall bedruthan"}, {"datetaken": "2005-06-21 00:00:17", "license": "1", "title": "Carnewas_5230L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20908036_b1e8005a20_o.jpg", "secret": "b1e8005a20", "media": "photo", "latitude": "0", "id": "20908036", "tags": "dilojun05 carnewas flowers june 2005 cornwall bedruthan"}, {"datetaken": "2005-06-21 00:00:18", "license": "1", "title": "Carnewas_5228L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20896746_1ab7f32386_o.jpg", "secret": "1ab7f32386", "media": "photo", "latitude": "0", "id": "20896746", "tags": "2005 june cornwall bedruthan dilojun05 dilojune05 carnewas"}, {"datetaken": "2005-06-21 00:00:19", "license": "1", "title": "Summer Solstice sunset 2005", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20896745_495b18f9d7_o.jpg", "secret": "495b18f9d7", "media": "photo", "latitude": "0", "id": "20896745", "tags": "2005 uk sunset sun sol water june cornwall solstice summersolstice kernow bedruthan dilojun05 carnewas z5238"}, {"datetaken": "2005-06-21 00:00:20", "license": "1", "title": "Carnewas_5248L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20896744_6d2071c7d5_o.jpg", "secret": "6d2071c7d5", "media": "photo", "latitude": "0", "id": "20896744", "tags": "dilojun05 carnewas june 2005 cornwall bedruthan"}, {"datetaken": "2005-06-21 00:00:21", "license": "1", "title": "Carnewas_5249L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20896743_13b9e92b06_o.jpg", "secret": "13b9e92b06", "media": "photo", "latitude": "0", "id": "20896743", "tags": "dilojun05 carnewas june 2005 cornwall bedruthan"}, {"datetaken": "2005-06-21 00:00:22", "license": "1", "title": "Bedroom_5214L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20893736_50980668f2_o.jpg", "secret": "50980668f2", "media": "photo", "latitude": "0", "id": "20893736", "tags": "2005 june cornwall dilojun05 dilojune05 twtmesh170725"}, {"datetaken": "2005-06-21 00:00:23", "license": "1", "title": "Bedroom_5212L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20893737_ca3862aa91_o.jpg", "secret": "ca3862aa91", "media": "photo", "latitude": "0", "id": "20893737", "tags": "dilojun05 june 2005 cornwall"}, {"datetaken": "2005-06-21 00:00:24", "license": "1", "title": "Bedroom_5211L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20893738_7516c989be_o.jpg", "secret": "7516c989be", "media": "photo", "latitude": "0", "id": "20893738", "tags": "dilojun05 june 2005 cornwall"}, {"datetaken": "2005-06-21 00:00:25", "license": "1", "title": "Bedroom_5207L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20893739_5146ec66b5_o.jpg", "secret": "5146ec66b5", "media": "photo", "latitude": "0", "id": "20893739", "tags": "dilojun05 june 2005 cornwall"}, {"datetaken": "2005-06-21 00:00:26", "license": "1", "title": "Bedroom_5205L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20893740_3fa9740d34_o.jpg", "secret": "3fa9740d34", "media": "photo", "latitude": "0", "id": "20893740", "tags": "dilojun05 june 2005 cornwall"}, {"datetaken": "2005-06-21 00:00:27", "license": "1", "title": "Bedroom_5210L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20893741_8986731235_o.jpg", "secret": "8986731235", "media": "photo", "latitude": "0", "id": "20893741", "tags": "2005 june cornwall dilojun05 twtmesh410710"}, {"datetaken": "2005-06-21 00:00:28", "license": "1", "title": "NeighboursGarden_5220L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20888422_2f3dc69219_o.jpg", "secret": "2f3dc69219", "media": "photo", "latitude": "0", "id": "20888422", "tags": "dilojun05 june 2005 cornwall"}, {"datetaken": "2005-06-21 00:00:29", "license": "1", "title": "Garden_5218L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20888412_53d1fbc077_o.jpg", "secret": "53d1fbc077", "media": "photo", "latitude": "0", "id": "20888412", "tags": "dilojun05 june 2005 cornwall"}, {"datetaken": "2005-06-21 00:00:30", "license": "1", "title": "Garden_5217L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20888401_ffd8b2303d_o.jpg", "secret": "ffd8b2303d", "media": "photo", "latitude": "0", "id": "20888401", "tags": "2005 june catchycolors cornwall dilojun05 dilojune05"}, {"datetaken": "2005-06-21 00:00:31", "license": "1", "title": "Garden_5201L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20888398_d7b22f5e4a_o.jpg", "secret": "d7b22f5e4a", "media": "photo", "latitude": "0", "id": "20888398", "tags": "dilojun05 june 2005 cornwall"}, {"datetaken": "2005-06-21 00:00:32", "license": "1", "title": "Garden Waste_5197L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20888389_fc7d98873d_o.jpg", "secret": "fc7d98873d", "media": "photo", "latitude": "0", "id": "20888389", "tags": "dilojun05 june 2005 cornwall"}, {"datetaken": "2005-06-21 00:00:33", "license": "1", "title": "Frozen Meal_5196L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20888374_06e87bdf0c_o.jpg", "secret": "06e87bdf0c", "media": "photo", "latitude": "0", "id": "20888374", "tags": "dilojun05 june 2005 cornwall"}, {"datetaken": "2005-06-21 00:00:34", "license": "1", "title": "Frozen Meal_5195L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20888364_185d30d411_o.jpg", "secret": "185d30d411", "media": "photo", "latitude": "0", "id": "20888364", "tags": "dilojun05 june 2005 cornwall"}, {"datetaken": "2005-06-21 00:00:35", "license": "1", "title": "Freezer_5193L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20888356_ea3c3a7abc_o.jpg", "secret": "ea3c3a7abc", "media": "photo", "latitude": "0", "id": "20888356", "tags": "dilojun05 june 2005 cornwall"}, {"datetaken": "2005-06-21 00:00:36", "license": "1", "title": "Freezer_5192L", "text": "", "album_id": "486823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20888350_63105e3fa8_o.jpg", "secret": "63105e3fa8", "media": "photo", "latitude": "0", "id": "20888350", "tags": "dilojun05 june 2005 cornwall"}, {"datetaken": "2010-01-23 17:19:12", "license": "3", "title": "et son mari", "text": "", "album_id": "72157623144364569", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4298460794_69594a6750_o.jpg", "secret": "896d6c6def", "media": "photo", "latitude": "0", "id": "4298460794", "tags": "rolle lacdegen\u00e8ve chateauderolle"}, {"datetaken": "2010-01-23 17:19:14", "license": "3", "title": "Chateau de Rolle 1", "text": "", "album_id": "72157623144364569", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4298460914_a651c13b9f_o.jpg", "secret": "16369e5a33", "media": "photo", "latitude": "0", "id": "4298460914", "tags": "rolle chateauderolle"}, {"datetaken": "2010-01-23 17:19:16", "license": "3", "title": "Chateau de Rolle 2", "text": "", "album_id": "72157623144364569", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2470/4297715931_b6fb42552f_o.jpg", "secret": "996a7c98fd", "media": "photo", "latitude": "0", "id": "4297715931", "tags": "rolle chateauderolle"}, {"datetaken": "2010-01-23 17:19:19", "license": "3", "title": "Bleu espion", "text": "", "album_id": "72157623144364569", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2677/4298461118_d3c50fa36e_o.jpg", "secret": "c308b31fec", "media": "photo", "latitude": "0", "id": "4298461118", "tags": "oeil"}, {"datetaken": "2010-01-23 17:19:22", "license": "3", "title": "Bateau", "text": "", "album_id": "72157623144364569", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2804/4297716181_447a65f2bf_o.jpg", "secret": "2a0f8b1a0d", "media": "photo", "latitude": "0", "id": "4297716181", "tags": "bateau lacdegen\u00e8ve"}, {"datetaken": "2010-01-23 17:19:27", "license": "3", "title": "Mouettes", "text": "", "album_id": "72157623144364569", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4297716381_398bd65ffc_o.jpg", "secret": "58da1e3d49", "media": "photo", "latitude": "0", "id": "4297716381", "tags": "mouettes lacdegen\u00e8ve"}, {"datetaken": "2010-01-23 17:19:29", "license": "3", "title": "Marchant sur l'eau 2", "text": "", "album_id": "72157623144364569", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4298461502_7040bc0982_o.jpg", "secret": "f776f4ef6f", "media": "photo", "latitude": "0", "id": "4298461502", "tags": "eau bateau lacdegen\u00e8ve"}, {"datetaken": "2010-01-23 17:19:32", "license": "3", "title": "Marchant sur l'eau 1", "text": "", "album_id": "72157623144364569", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2738/4298461616_d6982f9e13_o.jpg", "secret": "e536187988", "media": "photo", "latitude": "0", "id": "4298461616", "tags": "eau bateau lacdegen\u00e8ve"}, {"datetaken": "2010-01-23 17:19:35", "license": "3", "title": "Lever du soleil", "text": "", "album_id": "72157623144364569", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4297716677_c1ea862ea1_o.jpg", "secret": "31552d9bf9", "media": "photo", "latitude": "0", "id": "4297716677", "tags": "soleil lac lacdegen\u00e8ve"}, {"datetaken": "2010-01-23 17:19:39", "license": "3", "title": "Les saules de Nyon", "text": "", "album_id": "72157623144364569", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4297716825_60e1bb7c19_o.jpg", "secret": "79a2b24c5f", "media": "photo", "latitude": "0", "id": "4297716825", "tags": "lac nyon lacdegen\u00e8ve saules"}, {"datetaken": "2010-01-23 17:19:42", "license": "3", "title": "Lumi\u00e8res de Nyon", "text": "", "album_id": "72157623144364569", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4298462022_f8031c56b5_o.jpg", "secret": "8670d9687c", "media": "photo", "latitude": "0", "id": "4298462022", "tags": "lumi\u00e8res nyon"}, {"datetaken": "2010-01-23 17:19:45", "license": "3", "title": "Oiseaux dans le Lac de Gen\u00e8ve 1", "text": "", "album_id": "72157623144364569", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4298462162_43dd54c97d_o.jpg", "secret": "3ae568eefc", "media": "photo", "latitude": "0", "id": "4298462162", "tags": "lac oiseaux lacdegen\u00e8ve"}, {"datetaken": "2010-01-23 17:19:48", "license": "3", "title": "Oiseaux dans le Lac de Gen\u00e8ve 2", "text": "", "album_id": "72157623144364569", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4298462286_8831ba4501_o.jpg", "secret": "72dc2fffdb", "media": "photo", "latitude": "0", "id": "4298462286", "tags": "lac oiseaux lacdegen\u00e8ve"}, {"datetaken": "2010-01-23 17:19:51", "license": "3", "title": "Oiseaux dans le Lac de Gen\u00e8ve 3", "text": "", "album_id": "72157623144364569", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2735/4298462382_312ffa7f00_o.jpg", "secret": "e6f372f06c", "media": "photo", "latitude": "0", "id": "4298462382", "tags": "swan lac oiseaux lacdegen\u00e8ve"}, {"datetaken": "2010-01-23 17:19:54", "license": "3", "title": "Oiseaux dans le Lac de Gen\u00e8ve 4", "text": "", "album_id": "72157623144364569", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4297717401_e39a3c0515_o.jpg", "secret": "052b8e5528", "media": "photo", "latitude": "0", "id": "4297717401", "tags": "swan lac oiseaux lacdegen\u00e8ve"}, {"datetaken": "2010-01-23 17:19:57", "license": "3", "title": "Plus mouettes", "text": "", "album_id": "72157623144364569", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4297717519_90d8067e6d_o.jpg", "secret": "09df21afbd", "media": "photo", "latitude": "0", "id": "4297717519", "tags": "mouettes lacdegen\u00e8ve chateauderolle"}, {"datetaken": "2010-01-23 17:20:00", "license": "3", "title": "Lady nourrir les oiseaux", "text": "", "album_id": "72157623144364569", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4298462736_06dea21139_o.jpg", "secret": "0890a44bed", "media": "photo", "latitude": "0", "id": "4298462736", "tags": "lac oiseaux rolle lacdegen\u00e8ve"}, {"datetaken": "2010-01-15 05:49:13", "license": "5", "title": "", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2717/4299414996_1e1c0b6982_o.jpg", "secret": "c31fe6b5b8", "media": "photo", "latitude": "0", "id": "4299414996", "tags": "california ca sandiegocalifornia"}, {"datetaken": "2010-01-15 05:54:11", "license": "5", "title": "", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2802/4299415096_06fe487232_o.jpg", "secret": "00c5d624c9", "media": "photo", "latitude": "0", "id": "4299415096", "tags": "california ca sandiegocalifornia"}, {"datetaken": "2010-01-15 05:55:32", "license": "5", "title": "", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4298669021_617aacef3f_o.jpg", "secret": "4a45772d99", "media": "photo", "latitude": "0", "id": "4298669021", "tags": "california ca sandiegocalifornia"}, {"datetaken": "2010-01-15 08:11:18", "license": "5", "title": "Swami Beach", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4298669633_1093fae877_o.jpg", "secret": "aa5d670a36", "media": "photo", "latitude": "0", "id": "4298669633", "tags": "ocean california ca beach sandiegocalifornia"}, {"datetaken": "2010-01-15 08:14:55", "license": "5", "title": "", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4298669071_2ea03e0de7_o.jpg", "secret": "4e2dc986df", "media": "photo", "latitude": "0", "id": "4298669071", "tags": "california ca sandiegocalifornia"}, {"datetaken": "2010-01-15 08:15:48", "license": "5", "title": "At Swami Beach", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2727/4299415876_4d39efc27a_o.jpg", "secret": "e178463486", "media": "photo", "latitude": "0", "id": "4299415876", "tags": "california ca sandiegocalifornia"}, {"datetaken": "2010-01-16 04:14:23", "license": "5", "title": "", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4299416464_4bc41358fe_o.jpg", "secret": "0909ffcc4d", "media": "photo", "latitude": "0", "id": "4299416464", "tags": "california ca sandiegocalifornia"}, {"datetaken": "2010-01-16 04:18:25", "license": "5", "title": "", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2788/4298670715_376b88387b_o.jpg", "secret": "f57c28c404", "media": "photo", "latitude": "0", "id": "4298670715", "tags": "california ca sandiegocalifornia"}, {"datetaken": "2010-01-16 04:21:13", "license": "5", "title": "", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4299417754_48fd227274_o.jpg", "secret": "52536f33e7", "media": "photo", "latitude": "0", "id": "4299417754", "tags": "california ca sandiegocalifornia"}, {"datetaken": "2010-01-16 04:37:34", "license": "5", "title": "", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2734/4298671107_abb8402085_o.jpg", "secret": "d1ffa195d9", "media": "photo", "latitude": "0", "id": "4298671107", "tags": "california ca sandiegocalifornia"}, {"datetaken": "2010-01-16 06:56:44", "license": "5", "title": "", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4299418208_de63e1e391_o.jpg", "secret": "2122d04aef", "media": "photo", "latitude": "0", "id": "4299418208", "tags": "california ca sandiegocalifornia"}, {"datetaken": "2010-01-16 09:34:51", "license": "5", "title": "", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2741/4298672623_a4cda4553f_o.jpg", "secret": "64dfaef82d", "media": "photo", "latitude": "0", "id": "4298672623", "tags": "california ca sandiegocalifornia"}, {"datetaken": "2010-01-16 09:35:51", "license": "5", "title": "", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4299419212_eafd64126a_o.jpg", "secret": "1b623ff4ff", "media": "photo", "latitude": "0", "id": "4299419212", "tags": "ocean california ca pacific sandiegocalifornia"}, {"datetaken": "2010-01-16 09:36:12", "license": "5", "title": "Tracy", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4299419832_c845a93ff6_o.jpg", "secret": "1c2c7facf7", "media": "photo", "latitude": "0", "id": "4299419832", "tags": "ca sandiegocalifornia"}, {"datetaken": "2010-01-16 09:37:39", "license": "5", "title": "", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2681/4298674333_ed57542b74_o.jpg", "secret": "0da06370a5", "media": "photo", "latitude": "0", "id": "4298674333", "tags": "ocean california beach sandiego kelp"}, {"datetaken": "2010-01-16 09:39:23", "license": "5", "title": "", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4298674797_261ca1ee6f_o.jpg", "secret": "3efa01484c", "media": "photo", "latitude": "0", "id": "4298674797", "tags": "jlwhiteframe"}, {"datetaken": "2010-01-16 09:53:51", "license": "5", "title": "", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4299421998_595d079bbe_o.jpg", "secret": "9f0d6a50cf", "media": "photo", "latitude": "0", "id": "4299421998", "tags": "sandiego californiacaliforniasandiegoca"}, {"datetaken": "2010-01-16 09:55:38", "license": "5", "title": "", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4299421456_19d6a7a1c8_o.jpg", "secret": "3dfdc21e80", "media": "photo", "latitude": "0", "id": "4299421456", "tags": "california ca sandiegocalifornia"}, {"datetaken": "2010-01-17 05:28:13", "license": "5", "title": "Seals", "text": "", "album_id": "72157623146402789", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4299422422_c004ea4fe1_o.jpg", "secret": "0a90b18c02", "media": "photo", "latitude": "0", "id": "4299422422", "tags": "california lajollaca"}, {"datetaken": "2005-05-21 01:21:20", "license": "2", "title": "Flinging Sand", "text": "", "album_id": "369229", "longitude": "-121.204090", "url_o": "https://farm1.staticflickr.com/14/15417020_746ffbbd3a_o.jpg", "secret": "746ffbbd3a", "media": "photo", "latitude": "35.646276", "id": "15417020", "tags": "sansimeon california seals elephantseals wildlife nature beach ocean geotagged geolon1212040901184082 geolat35646276726164935"}, {"datetaken": "2005-05-21 01:22:01", "license": "2", "title": "Seals at San Simeon", "text": "", "album_id": "369229", "longitude": "-121.204090", "url_o": "https://farm1.staticflickr.com/10/15417019_b77423c5de_o.jpg", "secret": "b77423c5de", "media": "photo", "latitude": "35.646276", "id": "15417019", "tags": "sansimeon california seals elephantseals wildlife nature beach ocean geotagged geolon1212040901184082 geolat35646276726164935"}, {"datetaken": "2005-05-21 01:23:25", "license": "2", "title": "Mates?", "text": "", "album_id": "369229", "longitude": "-121.204090", "url_o": "https://farm1.staticflickr.com/12/15417021_1505fbec1c_o.jpg", "secret": "1505fbec1c", "media": "photo", "latitude": "35.646276", "id": "15417021", "tags": "sansimeon california seals elephantseals wildlife nature beach ocean geotagged geolon1212040901184082 geolat35646276726164935"}, {"datetaken": "2005-05-21 01:32:01", "license": "2", "title": "Beach Trail at San Simeon", "text": "", "album_id": "369229", "longitude": "-121.204090", "url_o": "https://farm1.staticflickr.com/11/15417022_7aac964206_o.jpg", "secret": "7aac964206", "media": "photo", "latitude": "35.646276", "id": "15417022", "tags": "sansimeon california seals wildlife nature beach ocean flowers geotagged geolon1212040901184082 geolat35646276726164935"}, {"datetaken": "2005-05-21 02:23:57", "license": "2", "title": "Hearst Castle Pool", "text": "", "album_id": "369229", "longitude": "-121.169414", "url_o": "https://farm1.staticflickr.com/9/15366881_e5fc32d380_o.jpg", "secret": "e5fc32d380", "media": "photo", "latitude": "35.684908", "id": "15366881", "tags": "pool water hearstcastle sansimeon california columns geotagged geolon12116941452026367 geolat3568490811606957"}, {"datetaken": "2005-05-21 02:24:23", "license": "2", "title": "The Castle Grounds", "text": "", "album_id": "369229", "longitude": "-121.169414", "url_o": "https://farm1.staticflickr.com/10/15364386_da72854627_o.jpg", "secret": "da72854627", "media": "photo", "latitude": "35.684908", "id": "15364386", "tags": "oranges trees hearstcastle sansimeon california centralcoast spanishcolonial geotagged geolon12116941452026367 geolat3568490811606957"}, {"datetaken": "2005-05-21 02:46:07", "license": "2", "title": "Hearst Castle", "text": "", "album_id": "369229", "longitude": "-121.169414", "url_o": "https://farm1.staticflickr.com/10/15363137_0b5acf47fb_o.jpg", "secret": "0b5acf47fb", "media": "photo", "latitude": "35.684908", "id": "15363137", "tags": "hearstcastle spanishcolonial palms trees california sansimeon centralcoast geotagged geolon12116941452026367 geolat3568490811606957"}, {"datetaken": "2005-05-21 02:46:43", "license": "2", "title": "The View", "text": "", "album_id": "369229", "longitude": "-121.169414", "url_o": "https://farm1.staticflickr.com/9/15365474_2512f16154_o.jpg", "secret": "2512f16154", "media": "photo", "latitude": "35.684908", "id": "15365474", "tags": "california centralcoast sansimeon hearstcastle trees mountains geotagged geolon12116941452026367 geolat3568490811606957"}, {"datetaken": "2005-05-21 02:47:45", "license": "2", "title": "Hearst Castle Statue", "text": "", "album_id": "369229", "longitude": "-121.169414", "url_o": "https://farm1.staticflickr.com/14/15366226_7a3c7caff2_o.jpg", "secret": "7a3c7caff2", "media": "photo", "latitude": "35.684908", "id": "15366226", "tags": "statue hearstcastle sansimeon california centralcoast geotagged geolon12116941452026367 geolat3568490811606957"}, {"datetaken": "2005-05-21 05:19:06", "license": "2", "title": "Thompson Avenue, Nipomo", "text": "", "album_id": "369229", "longitude": "-120.476245", "url_o": "https://farm1.staticflickr.com/10/15206657_d9ede34720_o.jpg", "secret": "d9ede34720", "media": "photo", "latitude": "35.043348", "id": "15206657", "tags": "jockos nipomo california centralcoast truck geotagged geolon12047624588012695 geolat3504334897220174"}, {"datetaken": "2005-05-21 05:25:22", "license": "2", "title": "Jocko's", "text": "", "album_id": "369229", "longitude": "-120.477147", "url_o": "https://farm1.staticflickr.com/12/15206655_61358d3394_o.jpg", "secret": "61358d3394", "media": "photo", "latitude": "35.043278", "id": "15206655", "tags": "jockos nipomo california centralcoast truck wine barrels geotagged geolon12047714710235596 geolat350432787010546"}, {"datetaken": "2005-05-21 05:30:38", "license": "2", "title": "Like Father, Like Son", "text": "", "album_id": "369229", "longitude": "-120.476546", "url_o": "https://farm1.staticflickr.com/13/15206656_eb44d5aeca_o.jpg", "secret": "eb44d5aeca", "media": "photo", "latitude": "35.043243", "id": "15206656", "tags": "jockos nipomo california centralcoast biker motorcycle child boy geotagged geolon12047654628753662 geolat3504324356545838"}, {"datetaken": "2005-05-21 05:43:20", "license": "2", "title": "The Pit at Jocko's", "text": "", "album_id": "369229", "longitude": "-120.476760", "url_o": "https://farm1.staticflickr.com/11/15206658_aa925c1c0e_o.jpg", "secret": "aa925c1c0e", "media": "photo", "latitude": "35.042611", "id": "15206658", "tags": "jockos nipomo california centralcoast barbecue cooking food steak smoke fire meat geotagged geolon12047676086425781 geolat35042611122142155"}, {"datetaken": "2005-05-21 05:44:51", "license": "2", "title": "Wooster Photographing the Pit", "text": "", "album_id": "369229", "longitude": "-120.476760", "url_o": "https://farm1.staticflickr.com/11/15206659_208dd23d03_o.jpg", "secret": "208dd23d03", "media": "photo", "latitude": "35.042821", "id": "15206659", "tags": "jockos nipomo california centralcoast barbecue smoke andrewwooster geotagged geolon12047676086425781 geolat35042821937124884"}, {"datetaken": "2005-02-23 19:06:27", "license": "2", "title": "100_0098", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5560161_74b7f9b78d_o.jpg", "secret": "74b7f9b78d", "media": "photo", "latitude": "0", "id": "5560161", "tags": "otagopeninsula hills newzealand"}, {"datetaken": "2005-02-23 19:07:56", "license": "2", "title": "100_0100", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5560248_88e8260792_o.jpg", "secret": "88e8260792", "media": "photo", "latitude": "0", "id": "5560248", "tags": "otagopeninsula sandymountain newzealand"}, {"datetaken": "2005-02-23 19:12:40", "license": "2", "title": "100_0104", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5559824_3c80ed02a2_o.jpg", "secret": "3c80ed02a2", "media": "photo", "latitude": "0", "id": "5559824", "tags": "otagopeninsula lake newzealand"}, {"datetaken": "2005-02-23 19:17:34", "license": "2", "title": "100_0113", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5559841_0ed1872a3f_o.jpg", "secret": "0ed1872a3f", "media": "photo", "latitude": "0", "id": "5559841", "tags": "otagopeninsula lake newzealand"}, {"datetaken": "2005-02-23 19:39:57", "license": "2", "title": "100_0122", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5372172_e878978bb5_o.jpg", "secret": "e878978bb5", "media": "photo", "latitude": "0", "id": "5372172", "tags": "otagopeninsula penguin cliff newzealand"}, {"datetaken": "2005-02-23 19:42:43", "license": "2", "title": "100_0123", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5559871_106dad8076_o.jpg", "secret": "106dad8076", "media": "photo", "latitude": "0", "id": "5559871", "tags": "otagopeninsula beach newzealand"}, {"datetaken": "2005-02-23 19:46:53", "license": "2", "title": "100_0126", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5372170_0d631a845e_o.jpg", "secret": "0d631a845e", "media": "photo", "latitude": "0", "id": "5372170", "tags": "otagopeninsula me beach frisbee newzealand"}, {"datetaken": "2005-02-23 19:49:03", "license": "2", "title": "100_0127", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5372171_d7a2f36bdc_o.jpg", "secret": "d7a2f36bdc", "media": "photo", "latitude": "0", "id": "5372171", "tags": "otagopeninsula me cliff beach newzealand"}, {"datetaken": "2005-02-23 19:50:31", "license": "2", "title": "100_0128.JPG", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8368070_7ef4c40382_o.jpg", "secret": "7ef4c40382", "media": "photo", "latitude": "0", "id": "8368070", "tags": "newzealand"}, {"datetaken": "2005-02-23 20:04:34", "license": "2", "title": "100_0131", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5559923_8a4bd50d33_o.jpg", "secret": "8a4bd50d33", "media": "photo", "latitude": "0", "id": "5559923", "tags": "otagopeninsula sheep newzealand"}, {"datetaken": "2005-02-23 20:41:06", "license": "2", "title": "100_0133", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5559946_1390c94f0b_o.jpg", "secret": "1390c94f0b", "media": "photo", "latitude": "0", "id": "5559946", "tags": "otagopeninsula sandymountain newzealand"}, {"datetaken": "2005-02-23 20:41:16", "license": "2", "title": "100_0134", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5559960_7266fa5f76_o.jpg", "secret": "7266fa5f76", "media": "photo", "latitude": "0", "id": "5559960", "tags": "otagopeninsula hills newzealand"}, {"datetaken": "2005-02-23 20:42:31", "license": "2", "title": "100_0136", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5560183_9b76d8d453_o.jpg", "secret": "9b76d8d453", "media": "photo", "latitude": "0", "id": "5560183", "tags": "otagopeninsula sandymountain newzealand"}, {"datetaken": "2005-02-23 20:51:05", "license": "2", "title": "100_0140", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5560286_0a729d5ff9_o.jpg", "secret": "0a729d5ff9", "media": "photo", "latitude": "0", "id": "5560286", "tags": "otagopeninsula woods newzealand"}, {"datetaken": "2005-02-23 21:06:06", "license": "2", "title": "100_0146", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5559702_7292a296b4_o.jpg", "secret": "7292a296b4", "media": "photo", "latitude": "0", "id": "5559702", "tags": "otagopeninsula gorge sandymountain newzealand"}, {"datetaken": "2005-02-23 21:06:38", "license": "2", "title": "100_0148", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5372169_117c7b780e_o.jpg", "secret": "117c7b780e", "media": "photo", "latitude": "0", "id": "5372169", "tags": "otagopeninsula me cliff sandymountain newzealand"}, {"datetaken": "2005-02-23 21:13:09", "license": "2", "title": "100_0150", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5559715_9155086627_o.jpg", "secret": "9155086627", "media": "photo", "latitude": "0", "id": "5559715", "tags": "otagopeninsula sandymountain sheep newzealand"}, {"datetaken": "2005-02-23 21:27:27", "license": "2", "title": "100_0154", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5559740_091f4efd93_o.jpg", "secret": "091f4efd93", "media": "photo", "latitude": "0", "id": "5559740", "tags": "otagopeninsula me newzealand"}, {"datetaken": "2005-02-23 21:30:58", "license": "2", "title": "100_0155", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5559783_c880400791_o.jpg", "secret": "c880400791", "media": "photo", "latitude": "0", "id": "5559783", "tags": "otagopeninsula newzealand"}, {"datetaken": "2005-02-23 22:26:04", "license": "2", "title": "100_0156", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5559804_6eed6dc903_o.jpg", "secret": "6eed6dc903", "media": "photo", "latitude": "0", "id": "5559804", "tags": "otagopeninsula cliffs newzealand"}, {"datetaken": "2005-02-23 22:28:01", "license": "2", "title": "100_0161", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5372178_c0361c8fc2_o.jpg", "secret": "c0361c8fc2", "media": "photo", "latitude": "0", "id": "5372178", "tags": "otagopeninsula cliff newzealand"}, {"datetaken": "2005-02-23 22:29:15", "license": "2", "title": "100_0163.JPG", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5559493_7b8ad42a7b_o.jpg", "secret": "7b8ad42a7b", "media": "photo", "latitude": "0", "id": "5559493", "tags": "otagopeninsula danger ocean cliff newzealand"}, {"datetaken": "2005-02-23 22:33:03", "license": "2", "title": "100_0167", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5560005_52ac5d0457_o.jpg", "secret": "52ac5d0457", "media": "photo", "latitude": "0", "id": "5560005", "tags": "otagopeninsula newzealand"}, {"datetaken": "2005-02-23 22:33:46", "license": "2", "title": "100_0168.JPG", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8368165_ef538cd6c5_o.jpg", "secret": "ef538cd6c5", "media": "photo", "latitude": "0", "id": "8368165", "tags": "newzealand"}, {"datetaken": "2005-02-23 22:57:23", "license": "2", "title": "100_0174", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5560203_d886ff2c3f_o.jpg", "secret": "d886ff2c3f", "media": "photo", "latitude": "0", "id": "5560203", "tags": "otagopeninsula newzealand"}, {"datetaken": "2005-02-23 23:55:30", "license": "2", "title": "100_0180.JPG", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8368019_6b079b3794_o.jpg", "secret": "6b079b3794", "media": "photo", "latitude": "0", "id": "8368019", "tags": "newzealand"}, {"datetaken": "2005-02-23 23:55:39", "license": "2", "title": "100_0181.JPG", "text": "", "album_id": "140057", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8367978_d9356ca5ae_o.jpg", "secret": "d9356ca5ae", "media": "photo", "latitude": "0", "id": "8367978", "tags": "newzealand"}, {"datetaken": "2005-07-02 15:03:10", "license": "1", "title": "Giant Chess", "text": "", "album_id": "634359", "longitude": "-74.405068", "url_o": "https://farm1.staticflickr.com/23/28068255_a88f01dd2d_o.jpg", "secret": "a88f01dd2d", "media": "photo", "latitude": "41.603529", "id": "28068255", "tags": "campecho giant chess ross jordan laura"}, {"datetaken": "2005-07-02 15:04:42", "license": "1", "title": "Chess Piece", "text": "", "album_id": "634359", "longitude": "-74.405068", "url_o": "https://farm1.staticflickr.com/21/28068358_516ad1cc55_o.jpg", "secret": "516ad1cc55", "media": "photo", "latitude": "41.603529", "id": "28068358", "tags": "campecho giant chess ross"}, {"datetaken": "2005-07-02 15:16:16", "license": "1", "title": "Chess Set and Gazebo", "text": "", "album_id": "634359", "longitude": "-74.405068", "url_o": "https://farm1.staticflickr.com/22/28068415_3be941a2c0_o.jpg", "secret": "3be941a2c0", "media": "photo", "latitude": "41.603529", "id": "28068415", "tags": "campecho giant chess gazebo laura"}, {"datetaken": "2005-07-02 15:19:10", "license": "1", "title": "Poolside Statue", "text": "", "album_id": "634359", "longitude": "-74.404628", "url_o": "https://farm1.staticflickr.com/22/28072969_1dde3798bb_o.jpg", "secret": "1dde3798bb", "media": "photo", "latitude": "41.603726", "id": "28072969", "tags": "campecho pool statue art"}, {"datetaken": "2005-07-02 15:20:06", "license": "1", "title": "Towels Drying", "text": "", "album_id": "634359", "longitude": "-74.405068", "url_o": "https://farm1.staticflickr.com/22/28068543_7ecc3b9a96_o.jpg", "secret": "7ecc3b9a96", "media": "photo", "latitude": "41.603529", "id": "28068543", "tags": "campecho towels"}, {"datetaken": "2005-07-02 16:16:20", "license": "1", "title": "Treelined", "text": "", "album_id": "634359", "longitude": "-74.401688", "url_o": "https://farm1.staticflickr.com/22/28068653_213515920a_o.jpg", "secret": "213515920a", "media": "photo", "latitude": "41.604227", "id": "28068653", "tags": "campecho trees"}, {"datetaken": "2005-07-02 16:27:19", "license": "1", "title": "Me", "text": "", "album_id": "634359", "longitude": "-74.401688", "url_o": "https://farm1.staticflickr.com/23/28068711_ecf5acbe69_o.jpg", "secret": "ecf5acbe69", "media": "photo", "latitude": "41.604227", "id": "28068711", "tags": "campecho wka"}, {"datetaken": "2005-07-02 16:30:33", "license": "1", "title": "Snack Time", "text": "", "album_id": "634359", "longitude": "-74.401688", "url_o": "https://farm1.staticflickr.com/22/28069124_c5c6542a8f_o.jpg", "secret": "c5c6542a8f", "media": "photo", "latitude": "41.604227", "id": "28069124", "tags": "campecho icecream ross laura"}, {"datetaken": "2005-07-02 16:45:28", "license": "1", "title": "Hoops", "text": "", "album_id": "634359", "longitude": "-74.401838", "url_o": "https://farm1.staticflickr.com/23/28069172_576df02633_o.jpg", "secret": "576df02633", "media": "photo", "latitude": "41.604027", "id": "28069172", "tags": "campecho beach basketball"}, {"datetaken": "2005-07-02 17:01:02", "license": "1", "title": "Seq 1, No 3", "text": "", "album_id": "634359", "longitude": "-74.402579", "url_o": "https://farm1.staticflickr.com/21/28069231_b6fbb05e2a_o.jpg", "secret": "b6fbb05e2a", "media": "photo", "latitude": "41.604191", "id": "28069231", "tags": "campecho swimming blobbing sequencemember"}, {"datetaken": "2005-07-02 17:10:26", "license": "1", "title": "At the Stables", "text": "", "album_id": "634359", "longitude": "-74.401538", "url_o": "https://farm1.staticflickr.com/21/28069327_1e7dbf46db_o.jpg", "secret": "1e7dbf46db", "media": "photo", "latitude": "41.607460", "id": "28069327", "tags": "campecho horse ross laura"}, {"datetaken": "2005-07-02 17:12:16", "license": "1", "title": "Admiring the Horses", "text": "", "album_id": "634359", "longitude": "-74.401538", "url_o": "https://farm1.staticflickr.com/22/28069367_81f1be5872_o.jpg", "secret": "81f1be5872", "media": "photo", "latitude": "41.607460", "id": "28069367", "tags": "campecho horse ross jessica laura"}, {"datetaken": "2005-07-02 17:12:30", "license": "1", "title": "At the Stables", "text": "", "album_id": "634359", "longitude": "-74.401538", "url_o": "https://farm1.staticflickr.com/22/28069444_006701d3ee_o.jpg", "secret": "006701d3ee", "media": "photo", "latitude": "41.607460", "id": "28069444", "tags": "campecho horse ross"}, {"datetaken": "2005-07-02 17:15:39", "license": "0", "title": "At the Stables", "text": "", "album_id": "634359", "longitude": "-74.401538", "url_o": "https://farm1.staticflickr.com/21/28069494_af8e007c25_o.jpg", "secret": "af8e007c25", "media": "photo", "latitude": "41.607460", "id": "28069494", "tags": "horse takenbyothers wka campecho"}, {"datetaken": "2005-07-03 09:20:38", "license": "1", "title": "Bridge", "text": "", "album_id": "634359", "longitude": "-74.403662", "url_o": "https://farm1.staticflickr.com/21/28069555_b3e9132181_o.jpg", "secret": "b3e9132181", "media": "photo", "latitude": "41.603473", "id": "28069555", "tags": "campecho water bridge"}, {"datetaken": "2005-07-03 11:03:04", "license": "1", "title": "Inflatible Hoop on Beach", "text": "", "album_id": "634359", "longitude": "-74.401838", "url_o": "https://farm1.staticflickr.com/21/28365220_506c6701af_o.jpg", "secret": "506c6701af", "media": "photo", "latitude": "41.604027", "id": "28365220", "tags": "campecho beach water"}, {"datetaken": "2005-07-03 11:54:41", "license": "1", "title": "Pitching", "text": "", "album_id": "634359", "longitude": "-74.401817", "url_o": "https://farm1.staticflickr.com/23/28069659_1cb1ab0fef_o.jpg", "secret": "1cb1ab0fef", "media": "photo", "latitude": "41.604572", "id": "28069659", "tags": "campecho options ross"}, {"datetaken": "2005-07-03 11:56:35", "license": "1", "title": "Jordan", "text": "", "album_id": "634359", "longitude": "-74.401817", "url_o": "https://farm1.staticflickr.com/21/28069741_94541fb360_o.jpg", "secret": "94541fb360", "media": "photo", "latitude": "41.604572", "id": "28069741", "tags": "campecho gemcar jordan"}, {"datetaken": "2005-07-03 12:55:36", "license": "1", "title": "Assembly", "text": "", "album_id": "634359", "longitude": "-74.400948", "url_o": "https://farm1.staticflickr.com/22/28069808_b3054e2d6a_o.jpg", "secret": "b3054e2d6a", "media": "photo", "latitude": "41.604428", "id": "28069808", "tags": "campecho giant chess ross checkers"}, {"datetaken": "2005-07-03 13:02:31", "license": "1", "title": "Checkers", "text": "", "album_id": "634359", "longitude": "-74.400948", "url_o": "https://farm1.staticflickr.com/21/28069879_6d30f11386_o.jpg", "secret": "6d30f11386", "media": "photo", "latitude": "41.604428", "id": "28069879", "tags": "campecho giant checkers ross jordan laura"}, {"datetaken": "2005-07-03 17:11:43", "license": "1", "title": "Gaga court", "text": "", "album_id": "634359", "longitude": "-74.401259", "url_o": "https://farm1.staticflickr.com/22/28069995_1cd6482708_o.jpg", "secret": "1cd6482708", "media": "photo", "latitude": "41.603714", "id": "28069995", "tags": "campecho gaga"}, {"datetaken": "2005-07-03 17:12:15", "license": "1", "title": "Trees, Beach, and Lake", "text": "", "album_id": "634359", "longitude": "-74.401355", "url_o": "https://farm1.staticflickr.com/23/28070297_9dbfd93a40_o.jpg", "secret": "9dbfd93a40", "media": "photo", "latitude": "41.603967", "id": "28070297", "tags": "campecho water beach"}, {"datetaken": "2005-07-03 17:23:15", "license": "1", "title": "Riding", "text": "", "album_id": "634359", "longitude": "-74.401538", "url_o": "https://farm1.staticflickr.com/22/28070355_fd1fd1aecc_o.jpg", "secret": "fd1fd1aecc", "media": "photo", "latitude": "41.607460", "id": "28070355", "tags": "campecho horse"}, {"datetaken": "2005-07-03 17:24:24", "license": "1", "title": "Jessica Riding", "text": "", "album_id": "634359", "longitude": "-74.401538", "url_o": "https://farm1.staticflickr.com/23/28070468_efd3f4cad3_o.jpg", "secret": "efd3f4cad3", "media": "photo", "latitude": "41.607460", "id": "28070468", "tags": "campecho horse jessica"}, {"datetaken": "2005-07-03 17:51:08", "license": "1", "title": "Staff meeting", "text": "", "album_id": "634359", "longitude": "-74.400948", "url_o": "https://farm1.staticflickr.com/23/28073009_f0040c9569_o.jpg", "secret": "f0040c9569", "media": "photo", "latitude": "41.604428", "id": "28073009", "tags": "campecho meeting jessica jordan"}, {"datetaken": "2005-07-03 17:53:00", "license": "1", "title": "Staff meeting", "text": "", "album_id": "634359", "longitude": "-74.400948", "url_o": "https://farm1.staticflickr.com/22/28073065_4ec9aa6705_o.jpg", "secret": "4ec9aa6705", "media": "photo", "latitude": "41.604428", "id": "28073065", "tags": "campecho meeting jordan"}, {"datetaken": "2005-07-03 18:37:22", "license": "1", "title": "Law & Order", "text": "", "album_id": "634359", "longitude": "-74.400755", "url_o": "https://farm1.staticflickr.com/23/28073129_4b5c09f6db_o.jpg", "secret": "4b5c09f6db", "media": "photo", "latitude": "41.604251", "id": "28073129", "tags": "campecho ross jessica jordan laura"}, {"datetaken": "2005-07-04 11:05:00", "license": "1", "title": "Beach Panorama", "text": "", "album_id": "634359", "longitude": "-74.401838", "url_o": "https://farm1.staticflickr.com/23/28080550_9c0d299a71_o.jpg", "secret": "9c0d299a71", "media": "photo", "latitude": "41.604027", "id": "28080550", "tags": "pano campecho laura ross beach"}, {"datetaken": "2005-07-24 07:03:37", "license": "1", "title": "P7240003.JPG", "text": "", "album_id": "72157600422228599", "longitude": "1.681337", "url_o": "https://farm2.staticflickr.com/1008/582919857_aa0aab3d95_o.jpg", "secret": "772acd1cfa", "media": "photo", "latitude": "52.325622", "id": "582919857", "tags": "uk southwold andyrice dc:audience=public iphoto:rating=4 andyricesbirthday ewanmellor iphoto:id=6887"}, {"datetaken": "2005-07-24 07:03:49", "license": "1", "title": "P7240004.JPG", "text": "", "album_id": "72157600422228599", "longitude": "1.681337", "url_o": "https://farm2.staticflickr.com/1203/583264236_1bd7280ee3_o.jpg", "secret": "67c1575cd2", "media": "photo", "latitude": "52.325622", "id": "583264236", "tags": "uk southwold dc:audience=public iphoto:rating=4 andyricesbirthday iphoto:id=6889"}, {"datetaken": "2005-07-24 07:03:57", "license": "1", "title": "P7240005.JPG", "text": "", "album_id": "72157600422228599", "longitude": "1.681337", "url_o": "https://farm2.staticflickr.com/1178/582918919_956945d390_o.jpg", "secret": "58cee1c4d6", "media": "photo", "latitude": "52.325622", "id": "582918919", "tags": "uk southwold andyrice dc:audience=public iphoto:rating=4 andyricesbirthday ewanmellor iphoto:id=6891"}, {"datetaken": "2005-07-24 07:04:42", "license": "1", "title": "P7240007.JPG", "text": "", "album_id": "72157600422228599", "longitude": "1.681337", "url_o": "https://farm2.staticflickr.com/1387/582922779_2737665e94_o.jpg", "secret": "ebf73b4269", "media": "photo", "latitude": "52.325622", "id": "582922779", "tags": "uk southwold andyrice dc:audience=public iphoto:rating=4 andyricesbirthday iphoto:id=6895"}, {"datetaken": "2005-07-24 21:17:02", "license": "1", "title": "P7240010.JPG", "text": "", "album_id": "72157600422228599", "longitude": "1.681079", "url_o": "https://farm2.staticflickr.com/1050/582915129_620fa86f58_o.jpg", "secret": "2769036d0d", "media": "photo", "latitude": "52.324389", "id": "582915129", "tags": "uk beach southwold dc:audience=public andyricesbirthday iphoto:rating=5 iphoto:id=6901"}, {"datetaken": "2005-07-24 21:22:08", "license": "1", "title": "P7240011.JPG", "text": "", "album_id": "72157600422228599", "longitude": "1.681079", "url_o": "https://farm2.staticflickr.com/1213/583261166_50c3b0900f_o.jpg", "secret": "29beead261", "media": "photo", "latitude": "52.324389", "id": "583261166", "tags": "uk beach sign southwold dc:audience=public andyricesbirthday iphoto:id=6903 iphoto:rating=5"}, {"datetaken": "2005-07-24 21:22:26", "license": "1", "title": "P7240012.JPG", "text": "", "album_id": "72157600422228599", "longitude": "1.681079", "url_o": "https://farm2.staticflickr.com/1154/582917965_847f5ae46b_o.jpg", "secret": "690fa2e980", "media": "photo", "latitude": "52.324389", "id": "582917965", "tags": "uk beach sign beachhut southwold dc:audience=public andyricesbirthday iphoto:id=6905 iphoto:rating=5"}, {"datetaken": "2005-07-24 21:23:27", "license": "1", "title": "P7240014.JPG", "text": "", "album_id": "72157600422228599", "longitude": "1.681079", "url_o": "https://farm2.staticflickr.com/1288/582929955_780ebec6cc_o.jpg", "secret": "a57adfc3ee", "media": "photo", "latitude": "52.324389", "id": "582929955", "tags": "uk beachhut southwold dc:audience=public andyricesbirthday iphoto:rating=5 iphoto:id=6909"}, {"datetaken": "2005-07-24 23:01:38", "license": "1", "title": "P7240016.JPG", "text": "", "album_id": "72157600422228599", "longitude": "1.664814", "url_o": "https://farm2.staticflickr.com/1107/583259310_6c91ee10b4_o.jpg", "secret": "60a33cd600", "media": "photo", "latitude": "52.314224", "id": "583259310", "tags": "uk food southwold alastairtse iancampbell dc:audience=public iphoto:rating=4 andyricesbirthday ewanmellor iphoto:id=6913"}, {"datetaken": "2005-07-24 23:30:07", "license": "1", "title": "P7240017.JPG", "text": "", "album_id": "72157600422228599", "longitude": "1.664814", "url_o": "https://farm2.staticflickr.com/1343/583248898_50d41252ab_o.jpg", "secret": "f87bc28ff1", "media": "photo", "latitude": "52.314224", "id": "583248898", "tags": "uk southwold andyrice iancampbell dc:audience=public iphoto:rating=4 andyricesbirthday iphoto:id=6915"}, {"datetaken": "2005-07-25 00:33:25", "license": "1", "title": "P7250019.JPG", "text": "", "album_id": "72157600422228599", "longitude": "1.675243", "url_o": "https://farm2.staticflickr.com/1247/582928911_73157e8d6d_o.jpg", "secret": "dcf2dbba72", "media": "photo", "latitude": "52.329307", "id": "582928911", "tags": "uk southwold andyrice iancampbell dc:audience=public iphoto:rating=4 andyricesbirthday ewanmellor iphoto:id=6919"}, {"datetaken": "2005-06-24 09:56:32", "license": "3", "title": "Mackinac Bridge", "text": "", "album_id": "638588", "longitude": "-84.726047", "url_o": "https://farm1.staticflickr.com/23/28278621_e8e6487612_o.jpg", "secret": "e8e6487612", "media": "photo", "latitude": "45.828918", "id": "28278621", "tags": "upperpeninsula mackinacbridge"}, {"datetaken": "2005-06-24 09:58:55", "license": "3", "title": "Upper Peninsula", "text": "", "album_id": "638588", "longitude": "-84.723815", "url_o": "https://farm1.staticflickr.com/23/28278739_c6bc84c2ae_o.jpg", "secret": "c6bc84c2ae", "media": "photo", "latitude": "45.846798", "id": "28278739", "tags": "upperpeninsula"}, {"datetaken": "2005-06-24 11:00:34", "license": "3", "title": "Upper Peninsula 008, \"soo locks\"", "text": "", "album_id": "638588", "longitude": "-84.349229", "url_o": "https://farm1.staticflickr.com/23/28278841_e22495e4c3_o.jpg", "secret": "e22495e4c3", "media": "photo", "latitude": "46.502779", "id": "28278841", "tags": "upperpeninsula"}, {"datetaken": "2005-06-24 11:21:19", "license": "3", "title": "Post Office", "text": "", "album_id": "638588", "longitude": "-84.349229", "url_o": "https://farm1.staticflickr.com/23/28278695_7812c621eb_o.jpg", "secret": "7812c621eb", "media": "photo", "latitude": "46.502779", "id": "28278695", "tags": "upperpeninsula soolocks"}, {"datetaken": "2005-06-24 11:29:49", "license": "3", "title": "Poe Locke", "text": "", "album_id": "638588", "longitude": "-84.349229", "url_o": "https://farm1.staticflickr.com/22/28278770_be0156ead5_o.jpg", "secret": "be0156ead5", "media": "photo", "latitude": "46.502779", "id": "28278770", "tags": "upperpeninsula soolocks"}, {"datetaken": "2005-06-24 16:01:00", "license": "3", "title": "Upper Peninsula 034", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28278936_355ffbb369_o.jpg", "secret": "355ffbb369", "media": "photo", "latitude": "0", "id": "28278936", "tags": "upperpeninsula waterfalls"}, {"datetaken": "2005-06-24 16:12:37", "license": "3", "title": "Upper Peninsula 043", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28279083_584c594f2b_o.jpg", "secret": "584c594f2b", "media": "photo", "latitude": "0", "id": "28279083", "tags": "upperpeninsula"}, {"datetaken": "2005-06-24 16:17:18", "license": "3", "title": "Upper Peninsula 048", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28279212_993cdf7963_o.jpg", "secret": "993cdf7963", "media": "photo", "latitude": "0", "id": "28279212", "tags": "upperpeninsula"}, {"datetaken": "2005-06-24 16:20:31", "license": "3", "title": "Sun Dial", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28279285_5dd21ed88d_o.jpg", "secret": "5dd21ed88d", "media": "photo", "latitude": "0", "id": "28279285", "tags": "upperpeninsula"}, {"datetaken": "2005-06-24 16:35:57", "license": "3", "title": "Wagner falls", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28279414_6538f49a24_o.jpg", "secret": "6538f49a24", "media": "photo", "latitude": "0", "id": "28279414", "tags": "upperpeninsula waterfalls"}, {"datetaken": "2005-06-24 16:42:17", "license": "3", "title": "Alger Falls", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28279514_3c9b316d6e_o.jpg", "secret": "3c9b316d6e", "media": "photo", "latitude": "0", "id": "28279514", "tags": "upperpeninsula waterfalls"}, {"datetaken": "2005-06-24 17:54:25", "license": "3", "title": "Mosquito Falls", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28279618_8a396715ca_o.jpg", "secret": "8a396715ca", "media": "photo", "latitude": "0", "id": "28279618", "tags": "upperpeninsula waterfalls"}, {"datetaken": "2005-06-24 17:56:32", "license": "3", "title": "Mosquito Falls", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28279697_9f05b4484b_o.jpg", "secret": "9f05b4484b", "media": "photo", "latitude": "0", "id": "28279697", "tags": "upperpeninsula waterfalls"}, {"datetaken": "2005-06-24 20:17:37", "license": "3", "title": "Campsite", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28279791_2c90046437_o.jpg", "secret": "2c90046437", "media": "photo", "latitude": "0", "id": "28279791", "tags": "upperpeninsula lakesuperior camping"}, {"datetaken": "2005-06-24 21:13:30", "license": "3", "title": "Campsite", "text": "", "album_id": "638588", "longitude": "-86.679843", "url_o": "https://farm1.staticflickr.com/22/28279829_27b3e855b9_o.jpg", "secret": "27b3e855b9", "media": "photo", "latitude": "46.440259", "id": "28279829", "tags": "upperpeninsula lakesuperior camping"}, {"datetaken": "2005-06-24 21:18:53", "license": "3", "title": "Lake Superior", "text": "", "album_id": "638588", "longitude": "-86.679843", "url_o": "https://farm1.staticflickr.com/22/28279921_4482fe2fcc_o.jpg", "secret": "4482fe2fcc", "media": "photo", "latitude": "46.440259", "id": "28279921", "tags": "upperpeninsula lakesuperior camping"}, {"datetaken": "2005-06-24 22:10:01", "license": "3", "title": "Lake Superior", "text": "", "album_id": "638588", "longitude": "-86.679843", "url_o": "https://farm1.staticflickr.com/23/28280016_3dad03d217_o.jpg", "secret": "3dad03d217", "media": "photo", "latitude": "46.440259", "id": "28280016", "tags": "upperpeninsula lakesuperior camping"}, {"datetaken": "2005-06-25 08:29:49", "license": "3", "title": "Munising Falls", "text": "", "album_id": "638588", "longitude": "-86.611919", "url_o": "https://farm1.staticflickr.com/21/28280219_82a1e2db6f_o.jpg", "secret": "82a1e2db6f", "media": "photo", "latitude": "46.423836", "id": "28280219", "tags": "upperpeninsula waterfalls"}, {"datetaken": "2005-06-25 08:33:49", "license": "3", "title": "Munising Falls", "text": "", "album_id": "638588", "longitude": "-86.611919", "url_o": "https://farm1.staticflickr.com/22/28280288_17668277c4_o.jpg", "secret": "17668277c4", "media": "photo", "latitude": "46.423836", "id": "28280288", "tags": "upperpeninsula waterfalls"}, {"datetaken": "2005-06-25 08:34:40", "license": "3", "title": "Munising Falls", "text": "", "album_id": "638588", "longitude": "-86.611919", "url_o": "https://farm1.staticflickr.com/22/28280328_fc0811055b_o.jpg", "secret": "fc0811055b", "media": "photo", "latitude": "46.423836", "id": "28280328", "tags": "upperpeninsula waterfalls"}, {"datetaken": "2005-06-25 08:36:36", "license": "3", "title": "Munising Falls", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28280401_9949e27088_o.jpg", "secret": "9949e27088", "media": "photo", "latitude": "0", "id": "28280401", "tags": "upperpeninsula waterfalls"}, {"datetaken": "2005-06-25 09:27:41", "license": "3", "title": "Miners Falls", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28280454_8cdcc17002_o.jpg", "secret": "8cdcc17002", "media": "photo", "latitude": "0", "id": "28280454", "tags": "upperpeninsula waterfalls"}, {"datetaken": "2005-06-25 09:54:04", "license": "3", "title": "Miners Castle", "text": "", "album_id": "638588", "longitude": "-86.611919", "url_o": "https://farm1.staticflickr.com/22/28280516_2bd71412ca_o.jpg", "secret": "2bd71412ca", "media": "photo", "latitude": "46.423836", "id": "28280516", "tags": "upperpeninsula"}, {"datetaken": "2005-06-25 10:58:13", "license": "3", "title": "Chapel Falls", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28280731_e277527496_o.jpg", "secret": "e277527496", "media": "photo", "latitude": "0", "id": "28280731", "tags": "upperpeninsula waterfalls"}, {"datetaken": "2005-06-25 15:37:16", "license": "3", "title": "Laughing Whitefish Falls", "text": "", "album_id": "638588", "longitude": "-87.063560", "url_o": "https://farm1.staticflickr.com/22/28280796_8b0be4dd66_o.jpg", "secret": "8b0be4dd66", "media": "photo", "latitude": "46.391404", "id": "28280796", "tags": "upperpeninsula waterfalls"}, {"datetaken": "2005-06-25 21:54:43", "license": "3", "title": "Lake Michigan", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28280833_373f3d5d48_o.jpg", "secret": "373f3d5d48", "media": "photo", "latitude": "0", "id": "28280833", "tags": "upperpeninsula lakemichigan"}, {"datetaken": "2005-06-25 22:00:14", "license": "3", "title": "Lake Michigan", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28280856_6262888758_o.jpg", "secret": "6262888758", "media": "photo", "latitude": "0", "id": "28280856", "tags": "upperpeninsula lakemichigan"}, {"datetaken": "2005-06-25 22:21:05", "license": "3", "title": "Campfire", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28280873_2413b36826_o.jpg", "secret": "2413b36826", "media": "photo", "latitude": "0", "id": "28280873", "tags": "upperpeninsula fire camping"}, {"datetaken": "2005-06-25 22:25:39", "license": "3", "title": "Campfire", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28280907_4018922088_o.jpg", "secret": "4018922088", "media": "photo", "latitude": "0", "id": "28280907", "tags": "upperpeninsula fire camping"}, {"datetaken": "2005-06-25 23:26:53", "license": "3", "title": "Upper Peninsula 221", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28281010_c2c09e9c06_o.jpg", "secret": "c2c09e9c06", "media": "photo", "latitude": "0", "id": "28281010", "tags": "upperpeninsula fire camping"}, {"datetaken": "2005-06-26 07:13:51", "license": "3", "title": "Campsite", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28280965_fac97acca8_o.jpg", "secret": "fac97acca8", "media": "photo", "latitude": "0", "id": "28280965", "tags": "upperpeninsula camping"}, {"datetaken": "2005-06-26 07:13:51", "license": "3", "title": "Upper Peninsula 222", "text": "", "album_id": "638588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28290892_ccae70e1b9_o.jpg", "secret": "ccae70e1b9", "media": "photo", "latitude": "0", "id": "28290892", "tags": "camping upperpeninsula"}, {"datetaken": "2004-08-23 16:55:42", "license": "1", "title": "recently collected shells", "text": "", "album_id": "4614", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/240183_1e03f2584d_o.jpg", "secret": "1e03f2584d", "media": "photo", "latitude": "0", "id": "240183", "tags": "ncbeachvacation2004 shells"}, {"datetaken": "2004-08-23 16:55:44", "license": "1", "title": "recently collected shells", "text": "", "album_id": "4614", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/240184_dfb39ee6e7_o.jpg", "secret": "dfb39ee6e7", "media": "photo", "latitude": "0", "id": "240184", "tags": "ncbeachvacation2004 shells"}, {"datetaken": "2004-08-23 16:55:46", "license": "1", "title": "hydrangea", "text": "", "album_id": "4614", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/240185_10fcd670b3_o.jpg", "secret": "10fcd670b3", "media": "photo", "latitude": "0", "id": "240185", "tags": "ncbeachvacation2004 flower hydrangea"}, {"datetaken": "2004-08-23 16:55:48", "license": "1", "title": "sunset", "text": "", "album_id": "4614", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/240186_96fca7b484_o.jpg", "secret": "96fca7b484", "media": "photo", "latitude": "0", "id": "240186", "tags": "ncbeachvacation2004 sunset"}, {"datetaken": "2004-08-23 16:55:49", "license": "1", "title": "mushroom", "text": "", "album_id": "4614", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/240187_af69bde996_o.jpg", "secret": "af69bde996", "media": "photo", "latitude": "0", "id": "240187", "tags": "ncbeachvacation2004"}, {"datetaken": "2004-08-23 16:55:51", "license": "1", "title": "sunset", "text": "", "album_id": "4614", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/240188_418be5b3d7_o.jpg", "secret": "418be5b3d7", "media": "photo", "latitude": "0", "id": "240188", "tags": "ncbeachvacation2004 sunset"}, {"datetaken": "2004-08-23 16:59:09", "license": "1", "title": "beach umbrella", "text": "", "album_id": "4614", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/240199_cce36cc2d4_o.jpg", "secret": "cce36cc2d4", "media": "photo", "latitude": "0", "id": "240199", "tags": "ncbeachvacation2004"}, {"datetaken": "2004-08-23 16:59:10", "license": "1", "title": "sea oats", "text": "", "album_id": "4614", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/240200_77d9f4a858_o.jpg", "secret": "77d9f4a858", "media": "photo", "latitude": "0", "id": "240200", "tags": "ncbeachvacation2004 shacklefordbanks"}, {"datetaken": "2004-08-23 16:59:12", "license": "1", "title": "Wild Horses", "text": "", "album_id": "4614", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/240201_64a07ef3a8_o.jpg", "secret": "64a07ef3a8", "media": "photo", "latitude": "0", "id": "240201", "tags": "ncbeachvacation2004"}, {"datetaken": "2004-08-23 16:59:14", "license": "1", "title": "tiny crab", "text": "", "album_id": "4614", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/240202_fd6d4b92d6_o.jpg", "secret": "fd6d4b92d6", "media": "photo", "latitude": "0", "id": "240202", "tags": "ncbeachvacation2004"}, {"datetaken": "2004-08-23 16:59:15", "license": "1", "title": "Dad, lighthouse, wild horses", "text": "", "album_id": "4614", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/240203_6e862d7af8_o.jpg", "secret": "6e862d7af8", "media": "photo", "latitude": "0", "id": "240203", "tags": "ncbeachvacation2004 dad wildhorses capelookout lighthouse"}, {"datetaken": "2004-08-24 12:21:56", "license": "1", "title": "Captain Bill's Waterfront Restaurant", "text": "", "album_id": "4614", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/247395_60e5ffe30f_o.jpg", "secret": "60e5ffe30f", "media": "photo", "latitude": "0", "id": "247395", "tags": "ncbeachvacation2004"}, {"datetaken": "2004-08-24 12:21:59", "license": "1", "title": "Lunch at Captain Bill's", "text": "", "album_id": "4614", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/247397_f8561bb174_o.jpg", "secret": "f8561bb174", "media": "photo", "latitude": "0", "id": "247397", "tags": "ncbeachvacation2004 food"}, {"datetaken": "2004-08-24 12:22:03", "license": "1", "title": "Cherry Cobbler", "text": "", "album_id": "4614", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/247400_8cc4ba7db7_o.jpg", "secret": "8cc4ba7db7", "media": "photo", "latitude": "0", "id": "247400", "tags": "ncbeachvacation2004 food"}, {"datetaken": "2004-08-24 12:22:05", "license": "1", "title": "wild horses on the beach", "text": "", "album_id": "4614", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/247401_7f30b3f0ff_o.jpg", "secret": "7f30b3f0ff", "media": "photo", "latitude": "0", "id": "247401", "tags": "ncbeachvacation2004"}, {"datetaken": "2004-08-24 12:26:25", "license": "1", "title": "seagull", "text": "", "album_id": "4614", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/247441_6a0a431dc1_o.jpg", "secret": "6a0a431dc1", "media": "photo", "latitude": "0", "id": "247441", "tags": "ncbeachvacation2004 seagull"}, {"datetaken": "2010-01-23 19:19:05", "license": "3", "title": "holocaust-1", "text": "", "album_id": "72157623282120964", "longitude": "-80.136192", "url_o": "https://farm3.staticflickr.com/2596/4304259490_6d4d0d4062_o.jpg", "secret": "565fb09fb0", "media": "photo", "latitude": "25.795544", "id": "4304259490", "tags": "lensbaby sadness holocaust pain nikon hand miami fear jewish miamibeach holocaustmemorial digitalgrace lensbabyoriginal dannyhammontree nikond700 jewishholocaust 20100123"}, {"datetaken": "2010-01-23 19:19:50", "license": "3", "title": "holocaust-2", "text": "", "album_id": "72157623282120964", "longitude": "-80.136192", "url_o": "https://farm5.staticflickr.com/4048/4303516393_7717b73836_o.jpg", "secret": "5dbc54760c", "media": "photo", "latitude": "25.795544", "id": "4303516393", "tags": "lensbaby sadness holocaust pain nikon miami fear jewish miamibeach holocaustmemorial digitalgrace lensbabyoriginal dannyhammontree nikond700 jewishholocaust 20100123"}, {"datetaken": "2010-01-23 19:24:44", "license": "3", "title": "holocaust-3", "text": "", "album_id": "72157623282120964", "longitude": "-80.136192", "url_o": "https://farm5.staticflickr.com/4020/4303516915_38e6db5178_o.jpg", "secret": "7bf7b1d78f", "media": "photo", "latitude": "25.795544", "id": "4303516915", "tags": "lensbaby sadness holocaust pain nikon miami fear jewish miamibeach holocaustmemorial digitalgrace lensbabyoriginal dannyhammontree nikond700 jewishholocaust 20100123"}, {"datetaken": "2010-01-23 19:25:10", "license": "3", "title": "holocaust-4", "text": "", "album_id": "72157623282120964", "longitude": "-80.136192", "url_o": "https://farm3.staticflickr.com/2706/4303517685_0e56b22a0c_o.jpg", "secret": "8f00c0e5f3", "media": "photo", "latitude": "25.795544", "id": "4303517685", "tags": "lensbaby sadness holocaust pain nikon miami fear jewish miamibeach holocaustmemorial digitalgrace lensbabyoriginal dannyhammontree nikond700 jewishholocaust 20100123"}, {"datetaken": "2010-01-23 19:25:37", "license": "3", "title": "holocaust-5", "text": "", "album_id": "72157623282120964", "longitude": "-80.136192", "url_o": "https://farm3.staticflickr.com/2433/4303518351_2ee3330f6d_o.jpg", "secret": "67204f05d4", "media": "photo", "latitude": "25.795544", "id": "4303518351", "tags": "lensbaby sadness holocaust pain nikon miami fear jewish miamibeach holocaustmemorial digitalgrace lensbabyoriginal dannyhammontree nikond700 jewishholocaust 20100123"}, {"datetaken": "2010-01-23 19:26:18", "license": "3", "title": "holocaust-6", "text": "", "album_id": "72157623282120964", "longitude": "-80.136192", "url_o": "https://farm3.staticflickr.com/2719/4304262806_ba0e15582c_o.jpg", "secret": "1447fa43e3", "media": "photo", "latitude": "25.795544", "id": "4304262806", "tags": "lensbaby sadness holocaust pain nikon miami fear jewish miamibeach holocaustmemorial digitalgrace lensbabyoriginal dannyhammontree nikond700 jewishholocaust 20100123"}, {"datetaken": "2010-01-23 19:26:51", "license": "3", "title": "holocaust-7", "text": "", "album_id": "72157623282120964", "longitude": "-80.136192", "url_o": "https://farm5.staticflickr.com/4049/4304263328_9844bca41a_o.jpg", "secret": "24dc8cf446", "media": "photo", "latitude": "25.795544", "id": "4304263328", "tags": "lensbaby sadness holocaust pain nikon miami fear jewish miamibeach holocaustmemorial digitalgrace lensbabyoriginal dannyhammontree nikond700 jewishholocaust 20100123"}, {"datetaken": "2010-01-23 19:27:11", "license": "3", "title": "holocaust-8", "text": "", "album_id": "72157623282120964", "longitude": "-80.136192", "url_o": "https://farm5.staticflickr.com/4055/4304263904_3bdc39447f_o.jpg", "secret": "d74037a77a", "media": "photo", "latitude": "25.795544", "id": "4304263904", "tags": "lensbaby sadness holocaust pain nikon miami fear jewish miamibeach holocaustmemorial digitalgrace lensbabyoriginal dannyhammontree nikond700 jewishholocaust 20100123"}, {"datetaken": "2010-01-23 19:28:34", "license": "3", "title": "holocaust-9", "text": "", "album_id": "72157623282120964", "longitude": "-80.136192", "url_o": "https://farm5.staticflickr.com/4052/4303520707_dbbc99dc0d_o.jpg", "secret": "0ab5f5e1eb", "media": "photo", "latitude": "25.795544", "id": "4303520707", "tags": "lensbaby sadness holocaust pain nikon miami fear jewish miamibeach holocaustmemorial digitalgrace lensbabyoriginal dannyhammontree nikond700 jewishholocaust 20100123"}, {"datetaken": "2010-01-23 19:31:09", "license": "3", "title": "holocaust-10", "text": "", "album_id": "72157623282120964", "longitude": "-80.136192", "url_o": "https://farm5.staticflickr.com/4046/4303521203_abdb9c71eb_o.jpg", "secret": "0a036305b2", "media": "photo", "latitude": "25.795544", "id": "4303521203", "tags": "lensbaby sadness holocaust pain nikon miami fear jewish miamibeach holocaustmemorial digitalgrace lensbabyoriginal dannyhammontree nikond700 jewishholocaust 20100123"}, {"datetaken": "2010-01-18 12:28:52", "license": "3", "title": "Blue Lagoon", "text": "", "album_id": "72157623160806783", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4304869395_de1df88156_o.jpg", "secret": "1ccb11586a", "media": "photo", "latitude": "0", "id": "4304869395", "tags": ""}, {"datetaken": "2010-01-18 12:34:42", "license": "3", "title": "Blue Lagoon", "text": "", "album_id": "72157623160806783", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/4305613494_a29889b050_o.jpg", "secret": "b455a684c0", "media": "photo", "latitude": "0", "id": "4305613494", "tags": ""}, {"datetaken": "2010-01-18 12:58:25", "license": "3", "title": "Blue Lagoon", "text": "", "album_id": "72157623160806783", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4304872811_dd481ae988_o.jpg", "secret": "3664121c8a", "media": "photo", "latitude": "0", "id": "4304872811", "tags": ""}, {"datetaken": "2010-01-18 12:59:49", "license": "3", "title": "Blue Lagoon", "text": "", "album_id": "72157623160806783", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4305616266_ae04175711_o.jpg", "secret": "d0b0f83307", "media": "photo", "latitude": "0", "id": "4305616266", "tags": ""}, {"datetaken": "2010-01-18 13:05:40", "license": "3", "title": "Blue Lagoon", "text": "", "album_id": "72157623160806783", "longitude": "-22.447342", "url_o": "https://farm3.staticflickr.com/2698/4305617544_14334edd32_o.jpg", "secret": "3a12189417", "media": "photo", "latitude": "63.880107", "id": "4305617544", "tags": ""}, {"datetaken": "2010-01-18 13:06:35", "license": "3", "title": "Blue Lagoon", "text": "", "album_id": "72157623160806783", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4304876851_e5696611f0_o.jpg", "secret": "9a1983c2bf", "media": "photo", "latitude": "0", "id": "4304876851", "tags": ""}, {"datetaken": "2010-01-18 13:07:23", "license": "3", "title": "Blue Lagoon", "text": "", "album_id": "72157623160806783", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4305620986_3b71558f98_o.jpg", "secret": "876d660cea", "media": "photo", "latitude": "0", "id": "4305620986", "tags": "iceland dopplr:explore=eqk1"}, {"datetaken": "2010-01-18 13:37:47", "license": "3", "title": "Blue Lagoon", "text": "", "album_id": "72157623160806783", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2804/4304880701_44545109b3_o.jpg", "secret": "1232c920c1", "media": "photo", "latitude": "0", "id": "4304880701", "tags": ""}, {"datetaken": "2010-01-18 13:39:41", "license": "3", "title": "Blue Lagoon", "text": "", "album_id": "72157623160806783", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4305623918_b7dbc7f771_o.jpg", "secret": "2514c2f586", "media": "photo", "latitude": "0", "id": "4305623918", "tags": "iceland dopplr:explore=eqk1"}, {"datetaken": "2010-01-18 13:57:47", "license": "3", "title": "Blue Lagoon", "text": "", "album_id": "72157623160806783", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4304883249_486c09fbc3_o.jpg", "secret": "63fb78178f", "media": "photo", "latitude": "0", "id": "4304883249", "tags": "iceland dopplr:explore=eqk1"}, {"datetaken": "2010-01-18 13:58:59", "license": "3", "title": "Blue Lagoon", "text": "", "album_id": "72157623160806783", "longitude": "-22.447342", "url_o": "https://farm5.staticflickr.com/4051/4304884787_d71d0f14c4_o.jpg", "secret": "90dff5ffd0", "media": "photo", "latitude": "63.880107", "id": "4304884787", "tags": ""}, {"datetaken": "2010-01-18 13:59:23", "license": "3", "title": "Blue Lagoon", "text": "", "album_id": "72157623160806783", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4304886169_03aa70c892_o.jpg", "secret": "820c4ce572", "media": "photo", "latitude": "0", "id": "4304886169", "tags": "iceland dopplr:explore=eqk1"}, {"datetaken": "2010-01-18 14:00:40", "license": "3", "title": "Blue Lagoon", "text": "", "album_id": "72157623160806783", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4305630444_5570f1bb20_o.jpg", "secret": "a0dd59960a", "media": "photo", "latitude": "0", "id": "4305630444", "tags": ""}, {"datetaken": "2010-01-18 14:02:07", "license": "3", "title": "Blue Lagoon", "text": "", "album_id": "72157623160806783", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2802/4305632322_ec92df7a66_o.jpg", "secret": "ec3150e6f1", "media": "photo", "latitude": "0", "id": "4305632322", "tags": ""}, {"datetaken": "2010-01-24 02:02:06", "license": "2", "title": "Earring on an aloe", "text": "", "album_id": "72157623282319186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4304343232_9df03db4cd_o.jpg", "secret": "708f5b0f00", "media": "photo", "latitude": "0", "id": "4304343232", "tags": "aloe earring alameda southshore"}, {"datetaken": "2010-01-24 02:03:55", "license": "2", "title": "Frog kids", "text": "", "album_id": "72157623282319186", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4304343630_6b9f0673da_o.jpg", "secret": "341d5376df", "media": "photo", "latitude": "0", "id": "4304343630", "tags": "alameda southshore"}, {"datetaken": "2010-01-24 02:05:30", "license": "2", "title": "Weird bronze sculpture in South Shore", "text": "", "album_id": "72157623282319186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4303600595_c44ce30f1d_o.jpg", "secret": "f283f23e35", "media": "photo", "latitude": "0", "id": "4303600595", "tags": "alameda southshore"}, {"datetaken": "2010-01-24 02:24:20", "license": "2", "title": "Path to the beach", "text": "", "album_id": "72157623282319186", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4303600933_346e7be898_o.jpg", "secret": "3876091929", "media": "photo", "latitude": "0", "id": "4303600933", "tags": "alameda southshore"}, {"datetaken": "2010-01-24 02:26:35", "license": "2", "title": "Seagulls have a problem with sharing", "text": "", "album_id": "72157623282319186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4303601219_5c421706cb_o.jpg", "secret": "3c1ebf0464", "media": "photo", "latitude": "0", "id": "4303601219", "tags": "alameda southshore"}, {"datetaken": "2010-01-24 02:26:51", "license": "2", "title": "San Francisco", "text": "", "album_id": "72157623282319186", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2793/4304344850_fb9631cfb0_o.jpg", "secret": "124e3bc418", "media": "photo", "latitude": "0", "id": "4304344850", "tags": "alameda southshore"}, {"datetaken": "2010-01-24 02:32:20", "license": "2", "title": "Pier", "text": "", "album_id": "72157623282319186", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2710/4303601489_63b71d0ee4_o.jpg", "secret": "c2fae20a29", "media": "photo", "latitude": "0", "id": "4303601489", "tags": "alameda southshore"}, {"datetaken": "2010-01-24 02:33:22", "license": "2", "title": "Young man on log fence", "text": "", "album_id": "72157623282319186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4304345146_6a41ae0bc5_o.jpg", "secret": "77a87d3d59", "media": "photo", "latitude": "0", "id": "4304345146", "tags": "alameda southshore"}, {"datetaken": "2010-01-24 02:36:15", "license": "2", "title": "Wood in bird sanctuary", "text": "", "album_id": "72157623282319186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4303601865_8bdcf128d9_o.jpg", "secret": "7e720d3ff9", "media": "photo", "latitude": "0", "id": "4303601865", "tags": "alameda southshore"}, {"datetaken": "2010-01-24 02:48:19", "license": "2", "title": "Weird bathing girl", "text": "", "album_id": "72157623282319186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4303602249_2ee810e3c4_o.jpg", "secret": "a52e710f3e", "media": "photo", "latitude": "0", "id": "4303602249", "tags": "alameda estatesale"}, {"datetaken": "2010-01-24 02:49:18", "license": "2", "title": "Mary & baby J", "text": "", "album_id": "72157623282319186", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2681/4304346128_45533c3cb5_o.jpg", "secret": "13fa4a8066", "media": "photo", "latitude": "0", "id": "4304346128", "tags": "alameda estatesale"}, {"datetaken": "2010-01-24 02:56:35", "license": "2", "title": "Golden Hands", "text": "", "album_id": "72157623282319186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4303602867_c3d60e6163_o.jpg", "secret": "23da6a340b", "media": "photo", "latitude": "0", "id": "4303602867", "tags": "alameda estatesale"}, {"datetaken": "2010-01-24 02:58:42", "license": "2", "title": "Broken chalk woman", "text": "", "album_id": "72157623282319186", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2538/4303603123_9b1c356cc2_o.jpg", "secret": "eee90e796d", "media": "photo", "latitude": "0", "id": "4303603123", "tags": "alameda estatesale"}, {"datetaken": "2011-01-17 14:05:30", "license": "4", "title": "Grazeland", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2681/4303807861_516d8e2f39_o.jpg", "secret": "7cfcfb5745", "media": "photo", "latitude": "0", "id": "4303807861", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 14:05:42", "license": "4", "title": "Prairies Can Hardly Be More Beautiful", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4304541568_1e81124679_o.jpg", "secret": "0a376c6c68", "media": "photo", "latitude": "0", "id": "4304541568", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 14:07:48", "license": "4", "title": "Island Once Devastated by the Tsunami", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4303796953_b7ee793204_o.jpg", "secret": "2d4cc89967", "media": "photo", "latitude": "0", "id": "4303796953", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 14:08:12", "license": "4", "title": "Lone Goat", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4304541070_858b509010_o.jpg", "secret": "509ee4d736", "media": "photo", "latitude": "0", "id": "4304541070", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 14:19:46", "license": "4", "title": "If You Don't Swim, Would You Venture Into a Roughish Lake In This With Two Children? We almost did.", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2695/4304542926_99bcb0d082_o.jpg", "secret": "c39236a49e", "media": "photo", "latitude": "0", "id": "4304542926", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 14:54:45", "license": "4", "title": "Mangrove Forest", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4303798243_05d2bbc260_o.jpg", "secret": "a3f0e0c26b", "media": "photo", "latitude": "0", "id": "4303798243", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 14:57:02", "license": "4", "title": "The Second Largest Mangove Forest in the World", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4304544232_8a9c192a0b_o.jpg", "secret": "8d84522608", "media": "photo", "latitude": "0", "id": "4304544232", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 15:01:56", "license": "4", "title": "Narrow Passage", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4303794777_c28196ffa8_o.jpg", "secret": "37c2698c4a", "media": "photo", "latitude": "0", "id": "4303794777", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 15:02:57", "license": "4", "title": "Thillaivanam - Apparently Lord Shiva Used to Dance Here", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4303800661_973ac6a11a_o.jpg", "secret": "77c233cb6d", "media": "photo", "latitude": "0", "id": "4303800661", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 15:09:49", "license": "4", "title": "View from the Boat", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4303799531_55110384c7_o.jpg", "secret": "28f05569d1", "media": "photo", "latitude": "0", "id": "4303799531", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 15:14:26", "license": "4", "title": "Thillai Forest", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4304545378_5ac74433f5_o.jpg", "secret": "48d498bc49", "media": "photo", "latitude": "0", "id": "4304545378", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 15:39:15", "license": "4", "title": "Lone Crane Against Thilai Trees", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2629/4304552846_341261c8c6_o.jpg", "secret": "0b83ffa709", "media": "photo", "latitude": "0", "id": "4304552846", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 15:46:10", "license": "4", "title": "Swaying Palms on a Beach - Cliche, But Still Beautiful", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4303803157_8abde15b50_o.jpg", "secret": "766df5bd00", "media": "photo", "latitude": "0", "id": "4303803157", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 15:48:37", "license": "4", "title": "Shacks", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2690/4303803727_b7907d04df_o.jpg", "secret": "9a80824cd7", "media": "photo", "latitude": "0", "id": "4303803727", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 15:57:02", "license": "4", "title": "Sex Appeal", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4303802463_56574acf93_o.jpg", "secret": "2aa4f80de3", "media": "photo", "latitude": "0", "id": "4303802463", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 16:21:56", "license": "4", "title": "Close-Up of the Thillai Trees", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4303801857_26c4a211eb_o.jpg", "secret": "46a8767da5", "media": "photo", "latitude": "0", "id": "4303801857", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 16:22:35", "license": "4", "title": "Cranes", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4303801007_6fe51573af_o.jpg", "secret": "7362a4a5d9", "media": "photo", "latitude": "0", "id": "4303801007", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 16:24:19", "license": "4", "title": "Giant Cupcake", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4303806597_4249b55d86_o.jpg", "secret": "9311f5296e", "media": "photo", "latitude": "0", "id": "4303806597", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 16:27:20", "license": "4", "title": "Thillai Forest by the Afternoon Sun", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2789/4304551426_8d763ec655_o.jpg", "secret": "6247efcb78", "media": "photo", "latitude": "0", "id": "4304551426", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 16:30:17", "license": "4", "title": "Fishing Nets", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4304550558_05dcfaf8e6_o.jpg", "secret": "651a64a142", "media": "photo", "latitude": "0", "id": "4304550558", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2011-01-17 16:35:53", "license": "4", "title": "Dockyard", "text": "", "album_id": "72157623282877426", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4304550038_92097ba32b_o.jpg", "secret": "881cb81740", "media": "photo", "latitude": "0", "id": "4304550038", "tags": "mangroves ecotourism pichavaram chidambaram thillaitrees"}, {"datetaken": "2010-01-24 17:37:24", "license": "1", "title": "SDIMa_17819", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4305121264_061517527a_o.jpg", "secret": "c55cc72340", "media": "photo", "latitude": "0", "id": "4305121264", "tags": ""}, {"datetaken": "2010-01-24 17:50:31", "license": "1", "title": "SDIMa_17821", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4304378243_bf093913cb_o.jpg", "secret": "8554d085fa", "media": "photo", "latitude": "0", "id": "4304378243", "tags": ""}, {"datetaken": "2010-01-24 17:51:28", "license": "1", "title": "SDIMa_17825", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2690/4310317892_0703f1b5fc_o.jpg", "secret": "7319d9b613", "media": "photo", "latitude": "0", "id": "4310317892", "tags": ""}, {"datetaken": "2010-01-24 17:51:36", "license": "1", "title": "SDIMa_17826", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4310319342_bcb8e43dee_o.jpg", "secret": "95b4774f2a", "media": "photo", "latitude": "0", "id": "4310319342", "tags": ""}, {"datetaken": "2010-01-24 17:51:38", "license": "1", "title": "SDIMa_17828", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4309583725_78cc759e4b_o.jpg", "secret": "c7a5c51666", "media": "photo", "latitude": "0", "id": "4309583725", "tags": ""}, {"datetaken": "2010-01-24 17:55:45", "license": "1", "title": "SDIMa_17829", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2677/4310322008_84e0a7cf9a_o.jpg", "secret": "9a2b620e68", "media": "photo", "latitude": "0", "id": "4310322008", "tags": ""}, {"datetaken": "2010-01-24 17:56:03", "license": "1", "title": "SDIMa_17830", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4309586811_23af18751a_o.jpg", "secret": "91985203d6", "media": "photo", "latitude": "0", "id": "4309586811", "tags": ""}, {"datetaken": "2010-01-24 17:58:22", "license": "1", "title": "SDIMa_17832", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4310325216_b2cf5d07d4_o.jpg", "secret": "b715e83d35", "media": "photo", "latitude": "0", "id": "4310325216", "tags": ""}, {"datetaken": "2010-01-24 17:58:59", "license": "1", "title": "SDIMa_17834", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4325899085_ffaabdb14f_o.jpg", "secret": "62c524bb0b", "media": "photo", "latitude": "0", "id": "4325899085", "tags": ""}, {"datetaken": "2010-01-24 18:00:45", "license": "1", "title": "SDIMa_17836", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4326637904_e03bae2db3_o.jpg", "secret": "31d8586fe8", "media": "photo", "latitude": "0", "id": "4326637904", "tags": ""}, {"datetaken": "2010-01-24 18:02:40", "license": "1", "title": "SDIMa_17838", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4325902693_4440c2bcdb_o.jpg", "secret": "066566bc22", "media": "photo", "latitude": "0", "id": "4325902693", "tags": ""}, {"datetaken": "2010-01-24 18:03:02", "license": "1", "title": "SDIMa_17839", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4326641590_1f2206ec16_o.jpg", "secret": "26012e74a5", "media": "photo", "latitude": "0", "id": "4326641590", "tags": ""}, {"datetaken": "2010-01-24 18:05:31", "license": "1", "title": "SDIMa_17846", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2680/4325905747_b0d5aaf845_o.jpg", "secret": "f8b9875378", "media": "photo", "latitude": "0", "id": "4325905747", "tags": ""}, {"datetaken": "2010-01-24 18:08:31", "license": "1", "title": "SDIMa_17849", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4325907097_b97842d1b3_o.jpg", "secret": "72f0c20901", "media": "photo", "latitude": "0", "id": "4325907097", "tags": ""}, {"datetaken": "2010-01-24 18:10:16", "license": "1", "title": "SDIMa_17850", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4326645620_318f8ac959_o.jpg", "secret": "5531779e44", "media": "photo", "latitude": "0", "id": "4326645620", "tags": ""}, {"datetaken": "2010-01-24 18:10:41", "license": "1", "title": "SDIMa_17851", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4326647216_98f199cb34_o.jpg", "secret": "501d6fc040", "media": "photo", "latitude": "0", "id": "4326647216", "tags": ""}, {"datetaken": "2010-01-24 18:10:55", "license": "1", "title": "SDIMa_17853", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4325911535_82eb25c2a3_o.jpg", "secret": "d19b9fb657", "media": "photo", "latitude": "0", "id": "4325911535", "tags": ""}, {"datetaken": "2010-01-24 18:14:31", "license": "1", "title": "SDIMa_17858", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4335742373_a8083974b2_o.jpg", "secret": "172cf092b4", "media": "photo", "latitude": "0", "id": "4335742373", "tags": ""}, {"datetaken": "2010-01-24 18:16:25", "license": "1", "title": "SDIMa_17860", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4335744015_4607312726_o.jpg", "secret": "ca8b1b2284", "media": "photo", "latitude": "0", "id": "4335744015", "tags": ""}, {"datetaken": "2010-01-24 18:17:13", "license": "1", "title": "SDIMa_17862", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4335746003_7fa86a3bb5_o.jpg", "secret": "316fb0429b", "media": "photo", "latitude": "0", "id": "4335746003", "tags": ""}, {"datetaken": "2010-01-24 18:18:20", "license": "1", "title": "SDIMa_17865", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4336493440_c2855678ed_o.jpg", "secret": "e79a38d864", "media": "photo", "latitude": "0", "id": "4336493440", "tags": ""}, {"datetaken": "2010-01-24 18:20:32", "license": "1", "title": "SDIMa_17868", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2682/4335749273_de6a3ecb15_o.jpg", "secret": "5bc95d38b6", "media": "photo", "latitude": "0", "id": "4335749273", "tags": ""}, {"datetaken": "2010-01-24 18:21:47", "license": "1", "title": "SDIMa_17869", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2713/4335750799_cf0249bb49_o.jpg", "secret": "51c5a5febc", "media": "photo", "latitude": "0", "id": "4335750799", "tags": ""}, {"datetaken": "2010-01-24 18:23:44", "license": "1", "title": "SDIMa_17870", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4336498636_f843dc26e7_o.jpg", "secret": "eb2a310731", "media": "photo", "latitude": "0", "id": "4336498636", "tags": ""}, {"datetaken": "2010-01-24 18:25:26", "license": "1", "title": "SDIMa_17871", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4335754803_3e05256a64_o.jpg", "secret": "80106aba5b", "media": "photo", "latitude": "0", "id": "4335754803", "tags": ""}, {"datetaken": "2010-01-24 18:27:44", "license": "1", "title": "SDIMa_17872", "text": "", "album_id": "72157623284292918", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2477/4336502238_669efd2360_o.jpg", "secret": "d082ae7be1", "media": "photo", "latitude": "0", "id": "4336502238", "tags": ""}, {"datetaken": "2010-01-24 10:56:06", "license": "4", "title": "IMG_0605", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4305395951_abcdb9574e_o.jpg", "secret": "5542c9c2f3", "media": "photo", "latitude": "0", "id": "4305395951", "tags": ""}, {"datetaken": "2010-01-24 14:04:35", "license": "4", "title": "IMG_0606", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2747/4305396153_b56da944aa_o.jpg", "secret": "d31e17115f", "media": "photo", "latitude": "0", "id": "4305396153", "tags": ""}, {"datetaken": "2010-01-24 16:50:38", "license": "4", "title": "IMG_0609", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4306140314_f880f9e756_o.jpg", "secret": "9dca8545d4", "media": "photo", "latitude": "0", "id": "4306140314", "tags": ""}, {"datetaken": "2010-01-24 16:51:01", "license": "4", "title": "IMG_0610", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4305396569_d29dd4783f_o.jpg", "secret": "e4b7f73c01", "media": "photo", "latitude": "0", "id": "4305396569", "tags": ""}, {"datetaken": "2010-01-24 16:53:35", "license": "4", "title": "IMG_0611", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4305396731_e7f9a7b0b1_o.jpg", "secret": "78008b2b80", "media": "photo", "latitude": "0", "id": "4305396731", "tags": ""}, {"datetaken": "2010-01-25 08:47:37", "license": "4", "title": "IMG_0615", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4305396909_653cbfdb80_o.jpg", "secret": "f3d8e4b09c", "media": "photo", "latitude": "0", "id": "4305396909", "tags": ""}, {"datetaken": "2010-01-25 12:37:21", "license": "4", "title": "IMG_0616", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4305397149_bbc017bb3d_o.jpg", "secret": "26ee3cc824", "media": "photo", "latitude": "0", "id": "4305397149", "tags": ""}, {"datetaken": "2010-01-25 12:38:23", "license": "4", "title": "IMG_0617", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4305397417_6543ebd269_o.jpg", "secret": "926d620864", "media": "photo", "latitude": "0", "id": "4305397417", "tags": ""}, {"datetaken": "2010-01-25 12:39:47", "license": "4", "title": "IMG_0618", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2755/4306141582_e03a16126d_o.jpg", "secret": "0903f429a3", "media": "photo", "latitude": "0", "id": "4306141582", "tags": ""}, {"datetaken": "2010-01-25 12:40:28", "license": "4", "title": "IMG_0619", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4305397821_c80f7f864d_o.jpg", "secret": "3f8f1c9902", "media": "photo", "latitude": "0", "id": "4305397821", "tags": ""}, {"datetaken": "2010-01-25 12:41:36", "license": "4", "title": "IMG_0620", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4305398075_767fa09007_o.jpg", "secret": "b7bbbe9122", "media": "photo", "latitude": "0", "id": "4305398075", "tags": ""}, {"datetaken": "2010-01-25 12:50:38", "license": "4", "title": "IMG_0621", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4305398309_c43fdddd0b_o.jpg", "secret": "a076b62cc6", "media": "photo", "latitude": "0", "id": "4305398309", "tags": ""}, {"datetaken": "2010-01-25 12:59:36", "license": "4", "title": "IMG_0622", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2734/4305398557_e272bdaa04_o.jpg", "secret": "549d75a052", "media": "photo", "latitude": "0", "id": "4305398557", "tags": ""}, {"datetaken": "2010-01-25 14:15:28", "license": "4", "title": "IMG_0623", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2683/4306142668_bf3baa1438_o.jpg", "secret": "5c4fec367b", "media": "photo", "latitude": "0", "id": "4306142668", "tags": ""}, {"datetaken": "2010-01-25 14:19:51", "license": "4", "title": "IMG_0624", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4305399009_737665eb1b_o.jpg", "secret": "9c28fd71b2", "media": "photo", "latitude": "0", "id": "4305399009", "tags": ""}, {"datetaken": "2010-01-25 14:20:39", "license": "4", "title": "IMG_0625", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4305399325_65de6a5ac2_o.jpg", "secret": "b8d5e8a381", "media": "photo", "latitude": "0", "id": "4305399325", "tags": ""}, {"datetaken": "2010-01-25 14:53:01", "license": "4", "title": "IMG_0628", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4306143420_f145f2fe93_o.jpg", "secret": "62f3acb0e7", "media": "photo", "latitude": "0", "id": "4306143420", "tags": ""}, {"datetaken": "2010-01-25 14:53:57", "license": "4", "title": "IMG_0630", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2741/4306143694_d7587599b6_o.jpg", "secret": "f799a915fc", "media": "photo", "latitude": "0", "id": "4306143694", "tags": ""}, {"datetaken": "2010-01-25 14:56:14", "license": "4", "title": "IMG_0631", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4305399999_5767de92ef_o.jpg", "secret": "0353185f72", "media": "photo", "latitude": "0", "id": "4305399999", "tags": ""}, {"datetaken": "2010-01-25 14:57:47", "license": "4", "title": "IMG_0632", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4306144086_c9d6605d10_o.jpg", "secret": "156913539c", "media": "photo", "latitude": "0", "id": "4306144086", "tags": ""}, {"datetaken": "2010-01-25 14:58:38", "license": "4", "title": "IMG_0633", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4306144330_6e67ebbe2d_o.jpg", "secret": "a9a8307f2b", "media": "photo", "latitude": "0", "id": "4306144330", "tags": ""}, {"datetaken": "2010-01-25 15:01:23", "license": "4", "title": "IMG_0634", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4306144594_695e37fcc6_o.jpg", "secret": "2494922c5f", "media": "photo", "latitude": "0", "id": "4306144594", "tags": ""}, {"datetaken": "2010-01-25 15:02:19", "license": "4", "title": "IMG_0635", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4306144706_4e0c94e35e_o.jpg", "secret": "cea969ec1b", "media": "photo", "latitude": "0", "id": "4306144706", "tags": ""}, {"datetaken": "2010-01-25 15:02:39", "license": "4", "title": "IMG_0636", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2714/4306144860_b327dd38ce_o.jpg", "secret": "571b4dc9eb", "media": "photo", "latitude": "0", "id": "4306144860", "tags": ""}, {"datetaken": "2010-01-25 15:03:27", "license": "4", "title": "IMG_0637", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2788/4306145122_c2cb88d0b1_o.jpg", "secret": "dfab986e6f", "media": "photo", "latitude": "0", "id": "4306145122", "tags": ""}, {"datetaken": "2010-01-25 15:06:09", "license": "4", "title": "IMG_0639", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4305401465_893d45d566_o.jpg", "secret": "c3bf56c976", "media": "photo", "latitude": "0", "id": "4305401465", "tags": ""}, {"datetaken": "2010-01-25 15:07:45", "license": "4", "title": "IMG_0640", "text": "", "album_id": "72157623286602552", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4305401781_b0c96ea099_o.jpg", "secret": "c265391b13", "media": "photo", "latitude": "0", "id": "4305401781", "tags": ""}, {"datetaken": "2005-04-22 08:17:21", "license": "4", "title": "Where Tim is", "text": "", "album_id": "264258", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10706255_a4ea852cad_o.jpg", "secret": "a4ea852cad", "media": "photo", "latitude": "0", "id": "10706255", "tags": "friends beach rollingbay manitoubeach morning breakfast depth joel tim picnic juxtaposition water pugetsound bainbridge art memory cotc topv111"}, {"datetaken": "2005-04-22 08:35:23", "license": "4", "title": "Sun over friends", "text": "", "album_id": "264258", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10706327_f0628e86b0_o.jpg", "secret": "f0628e86b0", "media": "photo", "latitude": "0", "id": "10706327", "tags": "friends beach rollingbay manitoubeach morning breakfast joel matt tim ariana lizzie cynthia picnic water pugetsound bainbridge art memory"}, {"datetaken": "2005-04-22 08:36:11", "license": "4", "title": "On his feet", "text": "", "album_id": "264258", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10706427_32b478718c_o.jpg", "secret": "32b478718c", "media": "photo", "latitude": "0", "id": "10706427", "tags": "friends rollingbay manitoubeach morning breakfast picnic leg foot shoe sock bainbridge art memory"}, {"datetaken": "2005-04-22 09:22:10", "license": "4", "title": "Product", "text": "", "album_id": "264258", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10706479_b37fbbfb6c_o.jpg", "secret": "b37fbbfb6c", "media": "photo", "latitude": "0", "id": "10706479", "tags": "waffle cooking food friends rollingbay manitoubeach morning breakfast picnic heart ariana bainbridge art memory"}, {"datetaken": "2005-04-22 09:22:12", "license": "4", "title": "Producer", "text": "", "album_id": "264258", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10706565_17d730e074_o.jpg", "secret": "17d730e074", "media": "photo", "latitude": "0", "id": "10706565", "tags": "friends rollingbay manitoubeach morning breakfast picnic ariana truck bainbridge memory"}, {"datetaken": "2005-04-22 09:22:27", "license": "4", "title": "Heart-shaped waffles", "text": "", "album_id": "264258", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10706644_6b2eb39db5_o.jpg", "secret": "6b2eb39db5", "media": "photo", "latitude": "0", "id": "10706644", "tags": "morning friends food art cooking topv111 breakfast picnic heart memory squaredcircle bainbridge waffle rollingbay manitoubeach"}, {"datetaken": "2005-04-22 09:29:36", "license": "4", "title": "Not trespassing", "text": "", "album_id": "264258", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10816108_481445d19b_o.jpg", "secret": "481445d19b", "media": "photo", "latitude": "0", "id": "10816108", "tags": "friends rollingbay manitoubeach morning breakfast picnic joel above bainbridge art memory"}, {"datetaken": "2005-04-22 09:33:02", "license": "4", "title": "Triangle", "text": "", "album_id": "264258", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10816180_6b9fd4b33a_o.jpg", "secret": "6b9fd4b33a", "media": "photo", "latitude": "0", "id": "10816180", "tags": "friends beach rollingbay manitoubeach morning breakfast picnic misto hand joel rosie lizzie cynthia triangle water pugetsound bainbridge art memory"}, {"datetaken": "2005-04-22 09:34:48", "license": "4", "title": "Joel + QC", "text": "", "album_id": "264258", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10816241_6b6e0c083d_o.jpg", "secret": "6b6e0c083d", "media": "photo", "latitude": "0", "id": "10816241", "tags": "quickcover friends beach rollingbay manitoubeach morning breakfast picnic joel creepy smile water pugetsound bainbridge memory teeth glasses"}, {"datetaken": "2005-04-22 09:43:01", "license": "4", "title": "Rosie + QC", "text": "", "album_id": "264258", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10816295_239fd04f19_o.jpg", "secret": "239fd04f19", "media": "photo", "latitude": "0", "id": "10816295", "tags": "food waffle applesauce quickcover friends beach rollingbay manitoubeach morning breakfast picnic rosie eating water pugetsound bainbridge memory"}, {"datetaken": "2005-04-22 09:45:50", "license": "4", "title": "Throw", "text": "", "album_id": "264258", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10816408_2390f23f06_o.jpg", "secret": "2390f23f06", "media": "photo", "latitude": "0", "id": "10816408", "tags": "friends beach rollingbay manitoubeach morning breakfast picnic joel throw rock water pugetsound bainbridge art memory"}, {"datetaken": "2005-04-22 09:48:17", "license": "4", "title": "Ariana + QC", "text": "", "album_id": "264258", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10816510_48710bc608_o.jpg", "secret": "48710bc608", "media": "photo", "latitude": "0", "id": "10816510", "tags": "quickcover friends rollingbay manitoubeach morning breakfast picnic ariana bainbridge art memory"}, {"datetaken": "2005-04-22 10:24:21", "license": "4", "title": "Out to sea", "text": "", "album_id": "264258", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10816574_e4f95f3528_o.jpg", "secret": "e4f95f3528", "media": "photo", "latitude": "0", "id": "10816574", "tags": "friends beach rollingbay manitoubeach morning breakfast picnic ariana rosie joel water pugetsound bainbridge art memory"}, {"datetaken": "2005-04-22 10:24:59", "license": "4", "title": "Out to sky", "text": "", "album_id": "264258", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10816644_8adbc93b20_o.jpg", "secret": "8adbc93b20", "media": "photo", "latitude": "0", "id": "10816644", "tags": "beach rollingbay manitoubeach morning breakfast picnic bird fly water pugetsound bainbridge art memory"}, {"datetaken": "2005-04-22 10:27:26", "license": "4", "title": "Finding themselves", "text": "", "album_id": "264258", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/11290443_a41299b6c6_o.jpg", "secret": "a41299b6c6", "media": "photo", "latitude": "0", "id": "11290443", "tags": "beach manitoubeach rollingbay water reflection sand rosie ariana joel breakfast morning bainbridge"}, {"datetaken": "2005-04-22 10:27:29", "license": "4", "title": "Examination", "text": "", "album_id": "264258", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/11290470_dea33f5184_o.jpg", "secret": "dea33f5184", "media": "photo", "latitude": "0", "id": "11290470", "tags": "beach manitoubeach rollingbay water reflection sand rosie ariana joel breakfast morning bainbridge"}, {"datetaken": "2004-09-25 16:36:39", "license": "1", "title": "leaf on the beach", "text": "", "album_id": "14100", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/569002_3958f87da7_o.jpg", "secret": "3958f87da7", "media": "photo", "latitude": "0", "id": "569002", "tags": "bethelwalk leaf sand"}, {"datetaken": "2004-09-25 16:36:47", "license": "1", "title": "leaf on the beach", "text": "", "album_id": "14100", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/569007_8612dc10d0_o.jpg", "secret": "8612dc10d0", "media": "photo", "latitude": "0", "id": "569007", "tags": "bethelwalk leaf sand red"}, {"datetaken": "2004-09-25 16:36:55", "license": "1", "title": "greg at the white river", "text": "", "album_id": "14100", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/569010_6f45837ef1_o.jpg", "secret": "6f45837ef1", "media": "photo", "latitude": "0", "id": "569010", "tags": "greg whiteriver bethelwalk exboyfriend"}, {"datetaken": "2004-09-25 16:37:03", "license": "1", "title": "bridge at sunset", "text": "", "album_id": "14100", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/569014_6387fa3f12_o.jpg", "secret": "6387fa3f12", "media": "photo", "latitude": "0", "id": "569014", "tags": "bethelwalk river whiteriver bridge"}, {"datetaken": "2004-09-25 16:37:11", "license": "1", "title": "toes in water", "text": "", "album_id": "14100", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/569016_503010af71_o.jpg", "secret": "503010af71", "media": "photo", "latitude": "0", "id": "569016", "tags": "bethelwalk toes rock river water feet"}, {"datetaken": "2004-09-25 16:37:18", "license": "1", "title": "plants on bridge", "text": "", "album_id": "14100", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/569020_c578201dee_o.jpg", "secret": "c578201dee", "media": "photo", "latitude": "0", "id": "569020", "tags": "bethelwalk plants"}, {"datetaken": "2004-09-25 16:37:24", "license": "1", "title": "crack in roadway river below", "text": "", "album_id": "14100", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/569021_e913c68954_o.jpg", "secret": "e913c68954", "media": "photo", "latitude": "0", "id": "569021", "tags": "bethelwalk water concrete crack"}, {"datetaken": "2004-09-25 16:37:31", "license": "1", "title": "white river", "text": "", "album_id": "14100", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/569025_3f41ac1a2c_o.jpg", "secret": "3f41ac1a2c", "media": "photo", "latitude": "0", "id": "569025", "tags": "bethelwalk fishermen sunset whiteriver"}, {"datetaken": "2004-09-25 16:37:38", "license": "1", "title": "leaf", "text": "", "album_id": "14100", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/569026_3f8e483d8d_o.jpg", "secret": "3f8e483d8d", "media": "photo", "latitude": "0", "id": "569026", "tags": "bethelwalk"}, {"datetaken": "2004-09-25 16:37:46", "license": "1", "title": "fountain", "text": "", "album_id": "14100", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/569028_22205a1150_o.jpg", "secret": "22205a1150", "media": "photo", "latitude": "0", "id": "569028", "tags": "bethelwalk water fountain green"}, {"datetaken": "2004-09-25 16:37:51", "license": "1", "title": "fountain", "text": "", "album_id": "14100", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/569030_b4ae28a860_o.jpg", "secret": "b4ae28a860", "media": "photo", "latitude": "0", "id": "569030", "tags": "bethelwalk green water fountain"}, {"datetaken": "2004-09-25 16:37:59", "license": "1", "title": "tracks", "text": "", "album_id": "14100", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/569031_d2af2632bc_o.jpg", "secret": "d2af2632bc", "media": "photo", "latitude": "0", "id": "569031", "tags": "railroad train tracks bethel bethelwalk bethelvt"}, {"datetaken": "2004-09-25 16:38:05", "license": "1", "title": "door handle", "text": "", "album_id": "14100", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/569032_7a668fb167_o.jpg", "secret": "7a668fb167", "media": "photo", "latitude": "0", "id": "569032", "tags": "bethelwalk nra doorknob"}, {"datetaken": "2004-09-25 16:38:11", "license": "1", "title": "store window", "text": "", "album_id": "14100", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/569034_aa974e80bc_o.jpg", "secret": "aa974e80bc", "media": "photo", "latitude": "0", "id": "569034", "tags": "bethelwalk"}, {"datetaken": "2006-06-25 16:34:09", "license": "5", "title": "pittwater-01", "text": "", "album_id": "502422", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21608177_cde159283e_o.jpg", "secret": "cde159283e", "media": "photo", "latitude": "0", "id": "21608177", "tags": "pittwater youth hostel sydney australia christmasinjune"}, {"datetaken": "2006-06-25 16:40:29", "license": "5", "title": "pittwater-02", "text": "", "album_id": "502422", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21608279_4050855058_o.jpg", "secret": "4050855058", "media": "photo", "latitude": "0", "id": "21608279", "tags": "pittwater youth hostel sydney australia christmasinjune"}, {"datetaken": "2006-06-25 18:37:31", "license": "5", "title": "pittwater-03", "text": "", "album_id": "502422", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21608375_08038b02b7_o.jpg", "secret": "08038b02b7", "media": "photo", "latitude": "0", "id": "21608375", "tags": "pittwater youth hostel sydney australia christmasinjune"}, {"datetaken": "2006-06-25 20:09:01", "license": "5", "title": "pittwater-04", "text": "", "album_id": "502422", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21608481_391c1aee65_o.jpg", "secret": "391c1aee65", "media": "photo", "latitude": "0", "id": "21608481", "tags": "pittwater youth hostel sydney australia christmasinjune"}, {"datetaken": "2006-06-25 21:12:21", "license": "5", "title": "pittwater-05", "text": "", "album_id": "502422", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21608533_d1987587d2_o.jpg", "secret": "d1987587d2", "media": "photo", "latitude": "0", "id": "21608533", "tags": "pittwater youth hostel sydney australia christmasinjune"}, {"datetaken": "2006-06-25 21:18:33", "license": "5", "title": "pittwater-06", "text": "", "album_id": "502422", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21608588_540eb59fdb_o.jpg", "secret": "540eb59fdb", "media": "photo", "latitude": "0", "id": "21608588", "tags": "pittwater youth hostel sydney australia christmasinjune"}, {"datetaken": "2006-06-25 21:48:01", "license": "5", "title": "pittwater-07", "text": "", "album_id": "502422", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21608643_c697198bc6_o.jpg", "secret": "c697198bc6", "media": "photo", "latitude": "0", "id": "21608643", "tags": "pittwater youth hostel sydney australia christmasinjune"}, {"datetaken": "2006-06-25 21:53:08", "license": "5", "title": "pittwater-08", "text": "", "album_id": "502422", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21608735_f37d658bfb_o.jpg", "secret": "f37d658bfb", "media": "photo", "latitude": "0", "id": "21608735", "tags": "pittwater youth hostel sydney australia christmasinjune"}, {"datetaken": "2006-06-26 00:07:41", "license": "5", "title": "pittwater-09", "text": "", "album_id": "502422", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21608837_f282c0cb48_o.jpg", "secret": "f282c0cb48", "media": "photo", "latitude": "0", "id": "21608837", "tags": "pittwater youth hostel sydney australia christmasinjune"}, {"datetaken": "2006-06-26 00:57:41", "license": "5", "title": "pittwater-10", "text": "", "album_id": "502422", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21608910_c29ce90b91_o.jpg", "secret": "c29ce90b91", "media": "photo", "latitude": "0", "id": "21608910", "tags": "pittwater youth hostel sydney australia christmasinjune"}, {"datetaken": "2006-06-26 01:05:53", "license": "5", "title": "pittwater-11", "text": "", "album_id": "502422", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21609004_d358af1c98_o.jpg", "secret": "d358af1c98", "media": "photo", "latitude": "0", "id": "21609004", "tags": "pittwater youth hostel sydney australia christmasinjune"}, {"datetaken": "2006-06-26 12:18:04", "license": "5", "title": "pittwater-12", "text": "", "album_id": "502422", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21609081_8bc89c2186_o.jpg", "secret": "8bc89c2186", "media": "photo", "latitude": "0", "id": "21609081", "tags": "pittwater youth hostel sydney australia christmasinjune"}, {"datetaken": "2006-06-26 13:33:38", "license": "5", "title": "pittwater-13", "text": "", "album_id": "502422", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21609169_441a7e4225_o.jpg", "secret": "441a7e4225", "media": "photo", "latitude": "0", "id": "21609169", "tags": "pittwater youth hostel sydney australia christmasinjune"}, {"datetaken": "2006-06-26 15:17:41", "license": "5", "title": "pittwater-14", "text": "", "album_id": "502422", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21609233_36a850f1bf_o.jpg", "secret": "36a850f1bf", "media": "photo", "latitude": "0", "id": "21609233", "tags": "pittwater youth hostel sydney australia christmasinjune"}, {"datetaken": "2006-06-26 16:32:42", "license": "5", "title": "pittwater-15", "text": "", "album_id": "502422", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21609304_2b143ab68c_o.jpg", "secret": "2b143ab68c", "media": "photo", "latitude": "0", "id": "21609304", "tags": "pittwater youth hostel sydney australia christmasinjune"}, {"datetaken": "2006-06-26 16:55:26", "license": "5", "title": "pittwater-16", "text": "", "album_id": "502422", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21609400_9ecbbb7239_o.jpg", "secret": "9ecbbb7239", "media": "photo", "latitude": "0", "id": "21609400", "tags": "pittwater youth hostel sydney australia christmasinjune"}, {"datetaken": "2006-06-26 17:07:11", "license": "5", "title": "pittwater-17", "text": "", "album_id": "502422", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21609460_c940181b03_o.jpg", "secret": "c940181b03", "media": "photo", "latitude": "0", "id": "21609460", "tags": "pittwater youth hostel sydney australia christmasinjune"}, {"datetaken": "2005-06-21 17:18:27", "license": "3", "title": "Cora tries the water", "text": "", "album_id": "504451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21709906_e033d82645_o.jpg", "secret": "e033d82645", "media": "photo", "latitude": "0", "id": "21709906", "tags": "summervacation2005 rehobothbeach tina cora"}, {"datetaken": "2005-06-21 17:19:01", "license": "3", "title": "Callie on the moon", "text": "", "album_id": "504451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21710045_72cb1c6170_o.jpg", "secret": "72cb1c6170", "media": "photo", "latitude": "0", "id": "21710045", "tags": "summervacation2005 rehobothbeach callie"}, {"datetaken": "2005-06-21 17:19:08", "license": "3", "title": "Callie in the sand", "text": "", "album_id": "504451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21710181_9a47938bdf_o.jpg", "secret": "9a47938bdf", "media": "photo", "latitude": "0", "id": "21710181", "tags": "summervacation2005 rehobothbeach callie"}, {"datetaken": "2005-06-21 17:19:11", "license": "3", "title": "Callie in the sand", "text": "", "album_id": "504451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21710324_7ba3f8653e_o.jpg", "secret": "7ba3f8653e", "media": "photo", "latitude": "0", "id": "21710324", "tags": "summervacation2005 rehobothbeach callie"}, {"datetaken": "2005-06-21 17:19:27", "license": "3", "title": "Beach Reclamation", "text": "", "album_id": "504451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21710390_6b67869777_o.jpg", "secret": "6b67869777", "media": "photo", "latitude": "0", "id": "21710390", "tags": "summervacation2005 rehobothbeach"}, {"datetaken": "2005-06-21 17:19:42", "license": "3", "title": "Beach Reclamation", "text": "", "album_id": "504451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21710456_47982b3fa0_o.jpg", "secret": "47982b3fa0", "media": "photo", "latitude": "0", "id": "21710456", "tags": "summervacation2005 rehobothbeach"}, {"datetaken": "2005-06-21 18:02:39", "license": "3", "title": "Elephant Ride", "text": "", "album_id": "504451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21710537_030ef8fe19_o.jpg", "secret": "030ef8fe19", "media": "photo", "latitude": "0", "id": "21710537", "tags": "summervacation2005 rehobothbeach tina callie"}, {"datetaken": "2005-06-21 18:03:12", "license": "3", "title": "Elephant Ride", "text": "", "album_id": "504451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21710612_1d54f7cbed_o.jpg", "secret": "1d54f7cbed", "media": "photo", "latitude": "0", "id": "21710612", "tags": "summervacation2005 rehobothbeach tina callie"}, {"datetaken": "2005-06-21 18:05:06", "license": "3", "title": "Elephant ride", "text": "", "album_id": "504451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21710706_66795e389b_o.jpg", "secret": "66795e389b", "media": "photo", "latitude": "0", "id": "21710706", "tags": "summervacation2005 rehobothbeach tina cora"}, {"datetaken": "2005-06-21 18:35:37", "license": "3", "title": "Carousel", "text": "", "album_id": "504451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21710774_9324b2a934_o.jpg", "secret": "9324b2a934", "media": "photo", "latitude": "0", "id": "21710774", "tags": "summervacation2005 rehobothbeach tina cora callie"}, {"datetaken": "2005-06-21 18:35:53", "license": "3", "title": "Carousel", "text": "", "album_id": "504451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21710839_d7a90b27a3_o.jpg", "secret": "d7a90b27a3", "media": "photo", "latitude": "0", "id": "21710839", "tags": "summervacation2005 rehobothbeach tina cora callie"}, {"datetaken": "2005-06-21 18:36:19", "license": "3", "title": "Carousel", "text": "", "album_id": "504451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21710916_6c78f3945f_o.jpg", "secret": "6c78f3945f", "media": "photo", "latitude": "0", "id": "21710916", "tags": "summervacation2005 rehobothbeach jason tina cora callie"}, {"datetaken": "2005-06-21 18:44:36", "license": "3", "title": "Funland at Rehoboth", "text": "", "album_id": "504451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21710978_dda76483a0_o.jpg", "secret": "dda76483a0", "media": "photo", "latitude": "0", "id": "21710978", "tags": "summervacation2005 rehobothbeach cora callie"}, {"datetaken": "2005-06-22 12:48:22", "license": "3", "title": "Enjoying the waves", "text": "", "album_id": "504451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21711782_1de4774b93_o.jpg", "secret": "1de4774b93", "media": "photo", "latitude": "0", "id": "21711782", "tags": "summervacation2005 rehobothbeach cora callie"}, {"datetaken": "2005-06-22 12:49:20", "license": "3", "title": "Waiting for the tide", "text": "", "album_id": "504451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21711803_dfa51c3508_o.jpg", "secret": "dfa51c3508", "media": "photo", "latitude": "0", "id": "21711803", "tags": "summervacation2005 rehobothbeach callie"}, {"datetaken": "2005-06-22 13:50:21", "license": "3", "title": "Callie on the beach", "text": "", "album_id": "504451", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21711926_9b5ee037b2_o.jpg", "secret": "9b5ee037b2", "media": "photo", "latitude": "0", "id": "21711926", "tags": "summervacation2005 rehobothbeach callie"}, {"datetaken": "2005-06-04 12:55:22", "license": "1", "title": "dungeness, kent", "text": "", "album_id": "72057594110710155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21739985_9b50d619c8_o.jpg", "secret": "9b50d619c8", "media": "photo", "latitude": "0", "id": "21739985", "tags": "dungeness"}, {"datetaken": "2005-06-04 12:58:20", "license": "1", "title": "dungeness, kent", "text": "", "album_id": "72057594110710155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21740026_8be8955660_o.jpg", "secret": "8be8955660", "media": "photo", "latitude": "0", "id": "21740026", "tags": "dungeness winch rust"}, {"datetaken": "2005-06-04 12:58:31", "license": "1", "title": "dungeness, kent", "text": "", "album_id": "72057594110710155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/21740050_f69dab33d8_o.jpg", "secret": "f69dab33d8", "media": "photo", "latitude": "0", "id": "21740050", "tags": "dungeness"}, {"datetaken": "2005-06-04 12:59:52", "license": "1", "title": "dungeness, kent", "text": "", "album_id": "72057594110710155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21740492_c40689fb6d_o.jpg", "secret": "c40689fb6d", "media": "photo", "latitude": "0", "id": "21740492", "tags": "dungeness powerstation beach britishseaside"}, {"datetaken": "2005-06-04 13:38:53", "license": "1", "title": "dungeness, kent", "text": "", "album_id": "72057594110710155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21740087_e0c8d400ae_o.jpg", "secret": "e0c8d400ae", "media": "photo", "latitude": "0", "id": "21740087", "tags": "dungeness"}, {"datetaken": "2005-06-04 13:43:30", "license": "1", "title": "dungeness, kent", "text": "", "album_id": "72057594110710155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21740106_12da12364f_o.jpg", "secret": "12da12364f", "media": "photo", "latitude": "0", "id": "21740106", "tags": "dungeness"}, {"datetaken": "2005-06-04 13:44:37", "license": "1", "title": "dungeness, kent", "text": "", "album_id": "72057594110710155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21740140_8ddfa9b299_o.jpg", "secret": "8ddfa9b299", "media": "photo", "latitude": "0", "id": "21740140", "tags": "dungeness"}, {"datetaken": "2005-06-04 13:44:50", "license": "1", "title": "dungeness, kent", "text": "", "album_id": "72057594110710155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21740162_b7f63aa396_o.jpg", "secret": "b7f63aa396", "media": "photo", "latitude": "0", "id": "21740162", "tags": "dungeness"}, {"datetaken": "2005-06-04 13:48:26", "license": "1", "title": "dungeness, kent", "text": "", "album_id": "72057594110710155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21740196_915f96911d_o.jpg", "secret": "915f96911d", "media": "photo", "latitude": "0", "id": "21740196", "tags": "dungeness"}, {"datetaken": "2005-06-04 13:52:57", "license": "1", "title": "dungeness, kent", "text": "", "album_id": "72057594110710155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/21740257_97d094599a_o.jpg", "secret": "97d094599a", "media": "photo", "latitude": "0", "id": "21740257", "tags": "dungeness caravan"}, {"datetaken": "2005-06-04 16:38:05", "license": "1", "title": "camber sands", "text": "", "album_id": "72057594110710155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21740294_52c12eafb9_o.jpg", "secret": "52c12eafb9", "media": "photo", "latitude": "0", "id": "21740294", "tags": "camber beach seaside windbreak sand optimism"}, {"datetaken": "2005-06-04 16:39:36", "license": "1", "title": "camber sands", "text": "", "album_id": "72057594110710155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21740325_5af7cd3131_o.jpg", "secret": "5af7cd3131", "media": "photo", "latitude": "0", "id": "21740325", "tags": "camber bikini britishseaside shorts mural"}, {"datetaken": "2005-06-04 16:42:43", "license": "1", "title": "camber sands amusement centre", "text": "", "album_id": "72057594110710155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21740359_abf5401d24_o.jpg", "secret": "abf5401d24", "media": "photo", "latitude": "0", "id": "21740359", "tags": "camber beach amusements britishseaside seaside"}, {"datetaken": "2005-06-04 16:43:26", "license": "1", "title": "camber sands amusement centre", "text": "", "album_id": "72057594110710155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21740398_da6162b85e_o.jpg", "secret": "da6162b85e", "media": "photo", "latitude": "0", "id": "21740398", "tags": "camber amusements beach seaside britishseaside"}, {"datetaken": "2005-06-04 16:49:47", "license": "1", "title": "camber sands", "text": "", "album_id": "72057594110710155", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21740430_97462ba2af_o.jpg", "secret": "97462ba2af", "media": "photo", "latitude": "0", "id": "21740430", "tags": "camber amusements blobby rainbow britishseaside"}, {"datetaken": "2005-05-29 06:32:04", "license": "3", "title": "2005_05_29_06_32_04", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21811433_eeb486c467_o.jpg", "secret": "eeb486c467", "media": "photo", "latitude": "0", "id": "21811433", "tags": "usa pennsylvania lancaster squareonecoffee"}, {"datetaken": "2005-05-29 06:32:24", "license": "3", "title": "2005_05_29_06_32_24", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21811354_ac6be37ea6_o.jpg", "secret": "ac6be37ea6", "media": "photo", "latitude": "0", "id": "21811354", "tags": "usa pennsylvania lancaster squareonecoffee"}, {"datetaken": "2005-05-29 06:32:30", "license": "3", "title": "2005_05_29_06_32_30", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21811307_0293a070f6_o.jpg", "secret": "0293a070f6", "media": "photo", "latitude": "0", "id": "21811307", "tags": "usa pennsylvania lancaster squareonecoffee"}, {"datetaken": "2005-05-29 06:34:33", "license": "3", "title": "2005_05_29_06_34_33", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21811221_774cb27de6_o.jpg", "secret": "9784bbf85d", "media": "photo", "latitude": "0", "id": "21811221", "tags": "usa pennsylvania lancaster squareonecoffee"}, {"datetaken": "2005-05-29 06:56:07", "license": "3", "title": "2005_05_29_06_56_07", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21811161_0b8e190446_o.jpg", "secret": "0b8e190446", "media": "photo", "latitude": "0", "id": "21811161", "tags": "usa pennsylvania lancaster"}, {"datetaken": "2005-05-29 07:08:26", "license": "3", "title": "2005_05_29_07_08_26", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21811041_8c1d08d223_o.jpg", "secret": "8c1d08d223", "media": "photo", "latitude": "0", "id": "21811041", "tags": "usa pennsylvania lancaster reservoirpark"}, {"datetaken": "2005-05-29 07:09:25", "license": "3", "title": "2005_05_29_07_09_25", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21815427_bfcf6f319d_o.jpg", "secret": "bfcf6f319d", "media": "photo", "latitude": "0", "id": "21815427", "tags": "usa geotagged pennsylvania lancaster reservoirpark"}, {"datetaken": "2005-05-29 07:10:07", "license": "3", "title": "2005_05_29_07_10_07", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21892033_9c89693871_o.jpg", "secret": "9c89693871", "media": "photo", "latitude": "0", "id": "21892033", "tags": "usa pennsylvania lancaster reservoirpark"}, {"datetaken": "2005-05-29 07:13:27", "license": "3", "title": "2005_05_29_07_13_27", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21815223_37a9ab99ed_o.jpg", "secret": "37a9ab99ed", "media": "photo", "latitude": "0", "id": "21815223", "tags": "lancaster pennsylvania usa reservoirpark"}, {"datetaken": "2005-05-29 07:37:50", "license": "3", "title": "2005_05_29_07_37_50", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21810929_ac5be94093_o.jpg", "secret": "ac5be94093", "media": "photo", "latitude": "0", "id": "21810929", "tags": "usa pennsylvania lancaster"}, {"datetaken": "2005-05-29 09:29:48", "license": "3", "title": "zderlan05050028", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21810719_9098e1c130_o.jpg", "secret": "7f90cca632", "media": "photo", "latitude": "0", "id": "21810719", "tags": "usa pennsylvania lititz"}, {"datetaken": "2005-05-29 09:31:34", "license": "3", "title": "zderlan05050030", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21893036_9dc5b66180_o.jpg", "secret": "60a1502813", "media": "photo", "latitude": "0", "id": "21893036", "tags": "usa pennsylvania lititz"}, {"datetaken": "2005-05-29 09:32:49", "license": "3", "title": "zderlan05050031", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21810649_28fbae4217_o.jpg", "secret": "f579c00f00", "media": "photo", "latitude": "0", "id": "21810649", "tags": "usa pennsylvania lititz"}, {"datetaken": "2005-05-29 09:34:52", "license": "3", "title": "2005_05_29_09_34_52", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21810617_6bb377d6d3_o.jpg", "secret": "6bb377d6d3", "media": "photo", "latitude": "0", "id": "21810617", "tags": "lititz pennsylvania usa mainstreet"}, {"datetaken": "2005-05-29 09:38:40", "license": "3", "title": "2005_05_29_09_38_40", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21810492_fe8baaa09b_o.jpg", "secret": "fe8baaa09b", "media": "photo", "latitude": "0", "id": "21810492", "tags": "lititz pennsylvania usa mainstreet"}, {"datetaken": "2005-05-29 09:43:47", "license": "3", "title": "2005_05_29_09_43_47", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21810430_35fd272fb7_o.jpg", "secret": "35fd272fb7", "media": "photo", "latitude": "0", "id": "21810430", "tags": "lititz pennsylvania usa mainstreet"}, {"datetaken": "2005-05-29 09:45:34", "license": "3", "title": "zderlan05050039", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21810366_7e27e7d606_o.jpg", "secret": "a3f2a1c04a", "media": "photo", "latitude": "0", "id": "21810366", "tags": "usa pennsylvania lititz"}, {"datetaken": "2005-05-29 09:53:15", "license": "3", "title": "zderlan05050042", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21810311_b808c9a730_o.jpg", "secret": "41ee89089d", "media": "photo", "latitude": "0", "id": "21810311", "tags": "usa pennsylvania lititz"}, {"datetaken": "2005-05-29 10:00:02", "license": "3", "title": "zderlan05050044", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21810272_e4de17137f_o.jpg", "secret": "70d8b16a6c", "media": "photo", "latitude": "0", "id": "21810272", "tags": "usa pennsylvania lititz"}, {"datetaken": "2005-05-29 10:01:35", "license": "3", "title": "2005_05_29_10_01_35", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21810244_5cf15d8ca7_o.jpg", "secret": "5cf15d8ca7", "media": "photo", "latitude": "0", "id": "21810244", "tags": "lititz pennsylvania usa mainstreet"}, {"datetaken": "2005-05-29 10:01:44", "license": "3", "title": "2005_05_29_10_01_44", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21810197_d2cfda5cdf_o.jpg", "secret": "d2cfda5cdf", "media": "photo", "latitude": "0", "id": "21810197", "tags": "lititz pennsylvania usa mainstreet"}, {"datetaken": "2005-05-29 10:04:57", "license": "3", "title": "zderlan05050049", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21810110_9bfbe10a0a_o.jpg", "secret": "66391d16a8", "media": "photo", "latitude": "0", "id": "21810110", "tags": "usa pennsylvania lititz"}, {"datetaken": "2005-05-29 10:08:25", "license": "3", "title": "2005_05_29_10_08_25", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21810039_51212ba57b_o.jpg", "secret": "51212ba57b", "media": "photo", "latitude": "0", "id": "21810039", "tags": "lititz pennsylvania usa mainstreet"}, {"datetaken": "2005-05-29 10:08:41", "license": "3", "title": "2005_05_29_10_08_41", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21809981_d28d244cc6_o.jpg", "secret": "d28d244cc6", "media": "photo", "latitude": "0", "id": "21809981", "tags": "lititz pennsylvania usa mainstreet"}, {"datetaken": "2005-05-29 10:21:06", "license": "3", "title": "2005_05_29_10_21_06", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21809922_bbc6d1a931_o.jpg", "secret": "bbc6d1a931", "media": "photo", "latitude": "0", "id": "21809922", "tags": "lititz pennsylvania usa mainstreet"}, {"datetaken": "2005-05-29 10:22:43", "license": "3", "title": "2005_05_29_10_22_43", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21809856_3b3666fcfc_o.jpg", "secret": "3b3666fcfc", "media": "photo", "latitude": "0", "id": "21809856", "tags": "lititz pennsylvania usa mainstreet"}, {"datetaken": "2005-05-29 15:44:49", "license": "3", "title": "2005_05_29_15_44_49", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21809800_5a6c3b20c6_o.jpg", "secret": "5a6c3b20c6", "media": "photo", "latitude": "0", "id": "21809800", "tags": "usa pennsylvania columbia"}, {"datetaken": "2005-05-29 15:55:05", "license": "3", "title": "2005_05_29_15_55_05", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21809744_db5d550091_o.jpg", "secret": "db5d550091", "media": "photo", "latitude": "0", "id": "21809744", "tags": "usa pennsylvania columbia susquehannariver"}, {"datetaken": "2005-05-29 15:56:40", "license": "3", "title": "2005_05_29_15_56_40", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21809667_b623f50801_o.jpg", "secret": "b623f50801", "media": "photo", "latitude": "0", "id": "21809667", "tags": "usa pennsylvania columbia susquehannariver"}, {"datetaken": "2005-05-29 15:56:49", "license": "3", "title": "2005_05_29_15_56_49", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21809622_29a04019af_o.jpg", "secret": "29a04019af", "media": "photo", "latitude": "0", "id": "21809622", "tags": "usa pennsylvania columbia susquehannariver"}, {"datetaken": "2005-05-29 15:56:55", "license": "3", "title": "2005_05_29_15_56_55", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21809589_ac61c8d54b_o.jpg", "secret": "ac61c8d54b", "media": "photo", "latitude": "0", "id": "21809589", "tags": "usa pennsylvania columbia susquehannariver"}, {"datetaken": "2005-05-29 15:57:06", "license": "3", "title": "2005_05_29_15_57_06", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21809566_3f88db4423_o.jpg", "secret": "3f88db4423", "media": "photo", "latitude": "0", "id": "21809566", "tags": "columbia pennsylvania usa susquehanariver"}, {"datetaken": "2005-05-29 15:57:56", "license": "3", "title": "2005_05_29_15_57_56", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21809544_444e65fb7f_o.jpg", "secret": "444e65fb7f", "media": "photo", "latitude": "0", "id": "21809544", "tags": "usa river pennsylvania columbia susquehanna"}, {"datetaken": "2005-05-29 16:00:26", "license": "3", "title": "2005_05_29_16_00_26", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21809464_839d40d54b_o.jpg", "secret": "839d40d54b", "media": "photo", "latitude": "0", "id": "21809464", "tags": "usa pennsylvania columbia susquehannariver"}, {"datetaken": "2005-05-29 16:02:39", "license": "3", "title": "zderlan05050077", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21809312_1d9c5d82f9_o.jpg", "secret": "29e734ff48", "media": "photo", "latitude": "0", "id": "21809312", "tags": "usa pennsylvania columbia"}, {"datetaken": "2005-05-29 16:05:23", "license": "3", "title": "2005_05_29_16_05_23", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21809266_2b53d54873_o.jpg", "secret": "2b53d54873", "media": "photo", "latitude": "0", "id": "21809266", "tags": "columbia pennsylvania usa"}, {"datetaken": "2005-05-29 16:06:08", "license": "3", "title": "Columbia Station", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21809230_35d8f04ccf_o.jpg", "secret": "35d8f04ccf", "media": "photo", "latitude": "0", "id": "21809230", "tags": "columbia pennsylvania usa oldcolumbiatrainstation"}, {"datetaken": "2005-05-29 16:16:28", "license": "3", "title": "2005_05_29_16_16_28", "text": "", "album_id": "506402", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21809203_881162c79d_o.jpg", "secret": "881162c79d", "media": "photo", "latitude": "0", "id": "21809203", "tags": "columbia pennsylvania usa firstnationalbank"}, {"datetaken": "2005-06-25 04:56:57", "license": "5", "title": "6am_skytrain_3472", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21695792_47f32f08b7_o.jpg", "secret": "47f32f08b7", "media": "photo", "latitude": "0", "id": "21695792", "tags": "burnaby bc canada"}, {"datetaken": "2005-06-25 04:57:13", "license": "5", "title": "distance_to_22nd_street_3473", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21695793_7df120f18f_o.jpg", "secret": "7df120f18f", "media": "photo", "latitude": "0", "id": "21695793", "tags": "burnaby bc canada cycling"}, {"datetaken": "2005-06-25 04:58:08", "license": "5", "title": "queensborough_bridge_3476", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21700015_63283d9613_o.jpg", "secret": "63283d9613", "media": "photo", "latitude": "0", "id": "21700015", "tags": "cycling burnaby bc canada jackborderride"}, {"datetaken": "2005-06-25 05:22:53", "license": "5", "title": "jack_is_ready_to_go_3479", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21700016_461f2f3d9a_o.jpg", "secret": "461f2f3d9a", "media": "photo", "latitude": "0", "id": "21700016", "tags": "canada jack cycling bc burnaby jackborderride"}, {"datetaken": "2005-06-25 05:48:24", "license": "5", "title": "alex_fraser_bridge_3486", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21704550_9bac38579a_o.jpg", "secret": "9bac38579a", "media": "photo", "latitude": "0", "id": "21704550", "tags": "canada jack bc surrey alexfraserbridge jackborderride"}, {"datetaken": "2005-06-25 05:48:37", "license": "5", "title": "alex_fraser_bridge_3487", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21704551_064554bc59_o.jpg", "secret": "064554bc59", "media": "photo", "latitude": "0", "id": "21704551", "tags": "canada jack bc surrey alexfraserbridge jackborderride"}, {"datetaken": "2005-06-25 05:49:00", "license": "5", "title": "alex_fraser_bridge_3489", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21704552_5b0fd06f7d_o.jpg", "secret": "5b0fd06f7d", "media": "photo", "latitude": "0", "id": "21704552", "tags": "surrey bc canada alexfraserbridge jackborderride"}, {"datetaken": "2005-06-25 05:50:39", "license": "5", "title": "alex_fraser_distance_3492", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21704553_afdadf494e_o.jpg", "secret": "afdadf494e", "media": "photo", "latitude": "0", "id": "21704553", "tags": "surrey bc canada alexfraserbridge jackborderride"}, {"datetaken": "2005-06-25 05:59:05", "license": "5", "title": "timmy_ho_3493", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21704554_c4dcd77521_o.jpg", "secret": "c4dcd77521", "media": "photo", "latitude": "0", "id": "21704554", "tags": "surrey bc canada alexfraserbridge jackborderride"}, {"datetaken": "2005-06-25 06:23:18", "license": "5", "title": "deas_island_3496", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/21707951_3c6116d3ad_o.jpg", "secret": "3c6116d3ad", "media": "photo", "latitude": "0", "id": "21707951", "tags": "deasisland delta bc canada jackborderride"}, {"datetaken": "2005-06-25 06:23:27", "license": "5", "title": "deas_island_3498", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21707952_9c252e1b6e_o.jpg", "secret": "9c252e1b6e", "media": "photo", "latitude": "0", "id": "21707952", "tags": "deasisland delta bc canada jackborderride"}, {"datetaken": "2005-06-25 06:25:52", "license": "5", "title": "deas_island_distance_3499", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21707953_3e05a55f95_o.jpg", "secret": "3e05a55f95", "media": "photo", "latitude": "0", "id": "21707953", "tags": "deasisland delta bc canada jackborderride"}, {"datetaken": "2005-06-25 06:26:07", "license": "5", "title": "deas_island_3501", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21707954_89ffbe21d0_o.jpg", "secret": "89ffbe21d0", "media": "photo", "latitude": "0", "id": "21707954", "tags": "deasisland delta bc canada jackborderride"}, {"datetaken": "2005-06-25 06:28:52", "license": "5", "title": "deas_island_3507", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/21707955_afb7598c08_o.jpg", "secret": "afb7598c08", "media": "photo", "latitude": "0", "id": "21707955", "tags": "deasisland delta bc canada jackborderride me"}, {"datetaken": "2005-06-25 06:37:40", "license": "5", "title": "deas_island_3508", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21707956_aae5e882e0_o.jpg", "secret": "aae5e882e0", "media": "photo", "latitude": "0", "id": "21707956", "tags": "deasisland delta bc canada jackborderride"}, {"datetaken": "2005-06-25 06:48:14", "license": "5", "title": "tunnel_3509", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21709325_0b51e5b16a_o.jpg", "secret": "0b51e5b16a", "media": "photo", "latitude": "0", "id": "21709325", "tags": "delta ladner bc canada tunnel jackborderride"}, {"datetaken": "2005-06-25 07:00:12", "license": "5", "title": "ladner_3511", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21712181_2c563b95b8_o.jpg", "secret": "2c563b95b8", "media": "photo", "latitude": "0", "id": "21712181", "tags": "ladner delta bc canada jackborderride me"}, {"datetaken": "2005-06-25 07:18:54", "license": "5", "title": "ladner_3517", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21712182_2e592ed7f1_o.jpg", "secret": "2e592ed7f1", "media": "photo", "latitude": "0", "id": "21712182", "tags": "canada jack pier bc delta ladner jackborderride"}, {"datetaken": "2005-06-25 07:19:31", "license": "5", "title": "ladner_3519", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21712184_2ddda049e4_o.jpg", "secret": "2ddda049e4", "media": "photo", "latitude": "0", "id": "21712184", "tags": "ladner delta bc canada jackborderride swan"}, {"datetaken": "2005-06-25 07:20:21", "license": "5", "title": "ladner_3522", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21712185_9f89a5d950_o.jpg", "secret": "9f89a5d950", "media": "photo", "latitude": "0", "id": "21712185", "tags": "ladner delta bc canada jackborderride"}, {"datetaken": "2005-06-25 07:20:46", "license": "5", "title": "ladner_3524", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21712186_a79c24ddcd_o.jpg", "secret": "a79c24ddcd", "media": "photo", "latitude": "0", "id": "21712186", "tags": "ladner delta bc canada jackborderride"}, {"datetaken": "2005-06-25 08:07:48", "license": "5", "title": "reifel_3528", "text": "", "album_id": "504084", "longitude": "-123.178281", "url_o": "https://farm1.staticflickr.com/17/21716603_977d5e7019_o.jpg", "secret": "977d5e7019", "media": "photo", "latitude": "49.098269", "id": "21716603", "tags": "canada jack bc delta ladner westhamisland jackborderride reifelwildfowlrefuge"}, {"datetaken": "2005-06-25 08:09:31", "license": "5", "title": "reifel_3531", "text": "", "album_id": "504084", "longitude": "-123.178281", "url_o": "https://farm1.staticflickr.com/16/21716604_6caf7b6d86_o.jpg", "secret": "6caf7b6d86", "media": "photo", "latitude": "49.098269", "id": "21716604", "tags": "reifelwildfowlrefuge delta ladner westhamisland bc canada jackborderride"}, {"datetaken": "2005-06-25 08:29:06", "license": "5", "title": "reifel_3532", "text": "", "album_id": "504084", "longitude": "-123.178281", "url_o": "https://farm1.staticflickr.com/17/21716605_924c6351f3_o.jpg", "secret": "924c6351f3", "media": "photo", "latitude": "49.098269", "id": "21716605", "tags": "reifelwildfowlrefuge delta ladner westhamisland bc canada jackborderride"}, {"datetaken": "2005-06-25 08:30:28", "license": "5", "title": "reifel_3538", "text": "", "album_id": "504084", "longitude": "-123.178281", "url_o": "https://farm1.staticflickr.com/17/21716606_155cc573d3_o.jpg", "secret": "155cc573d3", "media": "photo", "latitude": "49.098269", "id": "21716606", "tags": "reifelwildfowlrefuge delta ladner westhamisland bc canada jackborderride"}, {"datetaken": "2005-06-25 10:05:38", "license": "5", "title": "deltaport_3547", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21721391_4008f6a757_o.jpg", "secret": "4008f6a757", "media": "photo", "latitude": "0", "id": "21721391", "tags": "deltaport delta bc canada jackborderride"}, {"datetaken": "2005-06-25 10:08:05", "license": "5", "title": "deltaport_3555", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21721392_ecc7f5ec57_o.jpg", "secret": "ecc7f5ec57", "media": "photo", "latitude": "0", "id": "21721392", "tags": "deltaport delta bc canada jackborderride eagle nest"}, {"datetaken": "2005-06-25 10:11:00", "license": "5", "title": "deltaport_3558", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21721393_c7be2a784c_o.jpg", "secret": "c7be2a784c", "media": "photo", "latitude": "0", "id": "21721393", "tags": "deltaport delta bc canada jackborderride"}, {"datetaken": "2005-06-25 10:12:52", "license": "5", "title": "deltaport_3565", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21721394_08d7abc278_o.jpg", "secret": "08d7abc278", "media": "photo", "latitude": "0", "id": "21721394", "tags": "canada jack bc delta jackborderride deltaport"}, {"datetaken": "2005-06-25 10:19:59", "license": "5", "title": "deltaport_3569", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21721395_7907e19ab1_o.jpg", "secret": "7907e19ab1", "media": "photo", "latitude": "0", "id": "21721395", "tags": "deltaport delta bc canada jackborderride"}, {"datetaken": "2005-06-25 10:24:08", "license": "5", "title": "deltaport_3572", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21721396_36f3e348ec_o.jpg", "secret": "36f3e348ec", "media": "photo", "latitude": "0", "id": "21721396", "tags": "deltaport delta bc canada jackborderride"}, {"datetaken": "2005-06-25 10:29:24", "license": "5", "title": "deltaport_3583", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21723406_ddb50f412c_o.jpg", "secret": "ddb50f412c", "media": "photo", "latitude": "0", "id": "21723406", "tags": "deltaport delta bc canada jackborderride beach ocean"}, {"datetaken": "2005-06-25 10:33:21", "license": "5", "title": "deltaport_3586", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21723407_23dd35e9e0_o.jpg", "secret": "23dd35e9e0", "media": "photo", "latitude": "0", "id": "21723407", "tags": "deltaport delta bc canada jackborderride security"}, {"datetaken": "2005-06-25 10:42:37", "license": "5", "title": "deltaport_3587", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21723408_4086c45a14_o.jpg", "secret": "4086c45a14", "media": "photo", "latitude": "0", "id": "21723408", "tags": "deltaport delta bc canada jackborderride beach ocean heron"}, {"datetaken": "2005-06-25 11:15:52", "license": "5", "title": "us_border_3590", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21726221_d084fafc7d_o.jpg", "secret": "d084fafc7d", "media": "photo", "latitude": "0", "id": "21726221", "tags": "border usa pointroberts tsawwassen bc canada jackborderride"}, {"datetaken": "2005-06-25 11:22:39", "license": "5", "title": "us_border_3591", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21726222_766f49ff04_o.jpg", "secret": "766f49ff04", "media": "photo", "latitude": "0", "id": "21726222", "tags": "border usa pointroberts tsawwassen bc canada jackborderride"}, {"datetaken": "2005-06-25 11:23:00", "license": "5", "title": "us_border_3592", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21726223_f0e0c8ea8d_o.jpg", "secret": "f0e0c8ea8d", "media": "photo", "latitude": "0", "id": "21726223", "tags": "border usa pointroberts tsawwassen bc canada jackborderride"}, {"datetaken": "2005-06-25 11:46:17", "license": "5", "title": "us_border_3594", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21726224_3750f2b64e_o.jpg", "secret": "3750f2b64e", "media": "photo", "latitude": "0", "id": "21726224", "tags": "border usa pointroberts tsawwassen bc canada jackborderride"}, {"datetaken": "2005-06-25 11:52:06", "license": "5", "title": "us_border_3597", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21726225_2d01e4f20a_o.jpg", "secret": "2d01e4f20a", "media": "photo", "latitude": "0", "id": "21726225", "tags": "border usa pointroberts tsawwassen bc canada jackborderride"}, {"datetaken": "2005-06-25 12:19:16", "license": "5", "title": "ladner_again_3598", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21729932_df223d8732_o.jpg", "secret": "df223d8732", "media": "photo", "latitude": "0", "id": "21729932", "tags": "ladner delta bc canada jackborderride vanderzalm mansion"}, {"datetaken": "2005-06-25 12:19:21", "license": "5", "title": "ladner_again_3599", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21729933_a2b3a4115b_o.jpg", "secret": "a2b3a4115b", "media": "photo", "latitude": "0", "id": "21729933", "tags": "ladner delta bc canada jackborderride vanderzalm mansion"}, {"datetaken": "2005-06-25 12:20:23", "license": "5", "title": "vanderzalm_fence_3604", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21729934_ddda7e903d_o.jpg", "secret": "ddda7e903d", "media": "photo", "latitude": "0", "id": "21729934", "tags": "ladner delta bc canada jackborderride vanderzalm mansion"}, {"datetaken": "2005-06-25 12:58:22", "license": "5", "title": "bus_back_3609", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21729935_d2b7bfed61_o.jpg", "secret": "d2b7bfed61", "media": "photo", "latitude": "0", "id": "21729935", "tags": "ladner delta bc canada jackborderride"}, {"datetaken": "2005-06-25 12:58:36", "license": "5", "title": "bus_back_3610", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21729936_de8d46b1b2_o.jpg", "secret": "de8d46b1b2", "media": "photo", "latitude": "0", "id": "21729936", "tags": "canada bus jack bc delta ladner jackborderride"}, {"datetaken": "2005-06-25 14:16:12", "license": "5", "title": "downtown_3618", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21731243_11c23d04db_o.jpg", "secret": "11c23d04db", "media": "photo", "latitude": "0", "id": "21731243", "tags": "ocean canada beach vancouver bc englishbay jackborderride kinna"}, {"datetaken": "2005-06-25 14:17:57", "license": "5", "title": "downtown_3621", "text": "", "album_id": "504084", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21731244_a1c1b947f2_o.jpg", "secret": "a1c1b947f2", "media": "photo", "latitude": "0", "id": "21731244", "tags": "vancouver bc canada beach englishbay ocean jackborderride me kinna"}, {"datetaken": "2005-07-23 21:00:57", "license": "1", "title": "At the start", "text": "", "album_id": "641223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28429170_e919c35f06_o.jpg", "secret": "e919c35f06", "media": "photo", "latitude": "0", "id": "28429170", "tags": "dunwichdynamo 2005 dd13 biking"}, {"datetaken": "2005-07-23 22:08:47", "license": "1", "title": "Leaving the first stop", "text": "", "album_id": "641223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28429118_7ec9563e21_o.jpg", "secret": "7ec9563e21", "media": "photo", "latitude": "0", "id": "28429118", "tags": "dunwichdynamo 2005 dd13 biking"}, {"datetaken": "2005-07-23 22:22:37", "license": "1", "title": "Lights in the dark", "text": "", "album_id": "641223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28429106_0cb757f4ae_o.jpg", "secret": "0cb757f4ae", "media": "photo", "latitude": "0", "id": "28429106", "tags": "dunwichdynamo 2005 dd13 biking"}, {"datetaken": "2005-07-23 23:00:03", "license": "1", "title": "Cheers", "text": "", "album_id": "641223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28429097_2d395a7453_o.jpg", "secret": "2d395a7453", "media": "photo", "latitude": "0", "id": "28429097", "tags": "dunwichdynamo 2005 dd13 biking"}, {"datetaken": "2005-07-23 23:00:30", "license": "1", "title": "Hard as nails", "text": "", "album_id": "641223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28429149_f7d86b4a7e_o.jpg", "secret": "f7d86b4a7e", "media": "photo", "latitude": "0", "id": "28429149", "tags": "dunwichdynamo 2005 dd13 biking"}, {"datetaken": "2005-07-24 07:12:35", "license": "1", "title": "A quick rest", "text": "", "album_id": "641223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/28429082_242798435a_o.jpg", "secret": "242798435a", "media": "photo", "latitude": "0", "id": "28429082", "tags": "dunwichdynamo 2005 dd13 biking"}, {"datetaken": "2005-07-24 09:24:51", "license": "1", "title": "Nearly there", "text": "", "album_id": "641223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/28429128_ea3281bb20_o.jpg", "secret": "ea3281bb20", "media": "photo", "latitude": "0", "id": "28429128", "tags": "dunwichdynamo 2005 dd13 biking"}, {"datetaken": "2005-07-24 09:25:25", "license": "1", "title": "Morale improves..", "text": "", "album_id": "641223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28429056_e906c3b8be_o.jpg", "secret": "e906c3b8be", "media": "photo", "latitude": "0", "id": "28429056", "tags": "dunwichdynamo 2005 dd13 biking"}, {"datetaken": "2005-07-24 10:20:31", "license": "1", "title": "At the finish", "text": "", "album_id": "641223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/28429032_bacd70d585_o.jpg", "secret": "bacd70d585", "media": "photo", "latitude": "0", "id": "28429032", "tags": "dunwichdynamo 2005 dd13 biking bikes"}, {"datetaken": "2005-07-24 10:22:12", "license": "1", "title": "Taking it easy", "text": "", "album_id": "641223", "longitude": "1.631470", "url_o": "https://farm1.staticflickr.com/23/28803197_df4607e4fe_o.jpg", "secret": "df4607e4fe", "media": "photo", "latitude": "52.274880", "id": "28803197", "tags": "dunwichdynamo dd13 beach biking rest feet geotagged geolat52274880 geolon1631470"}, {"datetaken": "2005-07-24 10:32:09", "license": "1", "title": "Beach shelter", "text": "", "album_id": "641223", "longitude": "1.631985", "url_o": "https://farm1.staticflickr.com/23/28429252_54cda823a6_o.jpg", "secret": "54cda823a6", "media": "photo", "latitude": "52.276981", "id": "28429252", "tags": "dunwichdynamo 2005 dd13 biking asleep boat geotagged geolat52276981 geolon1631985"}, {"datetaken": "2005-07-24 17:26:41", "license": "1", "title": "Smithfield snacking", "text": "", "album_id": "641223", "longitude": "-0.105228", "url_o": "https://farm1.staticflickr.com/21/28429205_8aed63de09_o.jpg", "secret": "8aed63de09", "media": "photo", "latitude": "51.518197", "id": "28429205", "tags": "dunwichdynamo 2005 dd13 biking geotagged geolat51518197 geolon0105228"}, {"datetaken": "2005-05-27 00:06:50", "license": "4", "title": "City Island Dinner", "text": "", "album_id": "385029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16025973_3bce8365ce_o.jpg", "secret": "3bce8365ce", "media": "photo", "latitude": "0", "id": "16025973", "tags": "nyc bronx cityisland"}, {"datetaken": "2005-05-27 00:06:52", "license": "4", "title": "100-0056_IMG", "text": "", "album_id": "385029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16025977_63c8cce83d_o.jpg", "secret": "63c8cce83d", "media": "photo", "latitude": "0", "id": "16025977", "tags": "nyc bronx cityisland"}, {"datetaken": "2005-05-27 00:06:53", "license": "4", "title": "100-0057_IMG", "text": "", "album_id": "385029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16025980_e7ac4dfef2_o.jpg", "secret": "e7ac4dfef2", "media": "photo", "latitude": "0", "id": "16025980", "tags": "nyc bronx cityisland"}, {"datetaken": "2005-05-27 00:07:06", "license": "4", "title": "100-0061_IMG", "text": "", "album_id": "385029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16026012_4aca5da1be_o.jpg", "secret": "4aca5da1be", "media": "photo", "latitude": "0", "id": "16026012", "tags": "nyc bronx cityisland"}, {"datetaken": "2005-05-27 00:07:07", "license": "4", "title": "100-0062_IMG", "text": "", "album_id": "385029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16026018_5b46de9e7b_o.jpg", "secret": "5b46de9e7b", "media": "photo", "latitude": "0", "id": "16026018", "tags": "nyc bronx cityisland"}, {"datetaken": "2005-05-27 00:07:09", "license": "4", "title": "100-0063_IMG", "text": "", "album_id": "385029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16026023_e5b6c88a3d_o.jpg", "secret": "e5b6c88a3d", "media": "photo", "latitude": "0", "id": "16026023", "tags": "nyc bronx cityisland"}, {"datetaken": "2005-05-27 00:07:12", "license": "4", "title": "100-0064_IMG", "text": "", "album_id": "385029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16026027_c2065b93b1_o.jpg", "secret": "c2065b93b1", "media": "photo", "latitude": "0", "id": "16026027", "tags": "nyc bronx cityisland"}, {"datetaken": "2005-05-27 00:07:18", "license": "4", "title": "100-0050_IMG", "text": "", "album_id": "385029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16026040_4cd17141cf_o.jpg", "secret": "4cd17141cf", "media": "photo", "latitude": "0", "id": "16026040", "tags": "nyc bronx cityisland"}, {"datetaken": "2005-05-27 00:07:20", "license": "4", "title": "100-0052_IMG", "text": "", "album_id": "385029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16026051_bfa5959a5d_o.jpg", "secret": "bfa5959a5d", "media": "photo", "latitude": "0", "id": "16026051", "tags": "nyc bronx cityisland"}, {"datetaken": "2005-05-27 00:07:21", "license": "4", "title": "Leaving City Island...", "text": "", "album_id": "385029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16026056_0cec682443_o.jpg", "secret": "0cec682443", "media": "photo", "latitude": "0", "id": "16026056", "tags": "nyc favorite bronx cityisland"}, {"datetaken": "2005-05-27 00:07:23", "license": "4", "title": "100-0051_IMG", "text": "", "album_id": "385029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16026061_13578072c4_o.jpg", "secret": "13578072c4", "media": "photo", "latitude": "0", "id": "16026061", "tags": "nyc bronx cityisland"}, {"datetaken": "2005-05-27 18:18:40", "license": "4", "title": "100-0059_IMG", "text": "", "album_id": "385029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16025999_1f8148ab1a_o.jpg", "secret": "1f8148ab1a", "media": "photo", "latitude": "0", "id": "16025999", "tags": "nyc bronx cityisland"}, {"datetaken": "2005-05-27 18:18:47", "license": "4", "title": "100-0060_IMG", "text": "", "album_id": "385029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16026008_3820cfeee9_o.jpg", "secret": "3820cfeee9", "media": "photo", "latitude": "0", "id": "16026008", "tags": "nyc bronx cityisland"}, {"datetaken": "2005-05-27 18:22:25", "license": "4", "title": "100-0065_IMG", "text": "", "album_id": "385029", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16026036_60dd475de0_o.jpg", "secret": "60dd475de0", "media": "photo", "latitude": "0", "id": "16026036", "tags": "nyc bronx cityisland"}, {"datetaken": "2005-02-27 17:23:49", "license": "1", "title": "Walking On Water", "text": "", "album_id": "140462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5575914_26332ec0ea_o.jpg", "secret": "26332ec0ea", "media": "photo", "latitude": "0", "id": "5575914", "tags": "reflection beach me oregon mm"}, {"datetaken": "2005-02-27 17:23:55", "license": "1", "title": "Sunsit", "text": "", "album_id": "140462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5575924_890e3410ac_o.jpg", "secret": "890e3410ac", "media": "photo", "latitude": "0", "id": "5575924", "tags": "ocean sunset beach oregon waves fave mm"}, {"datetaken": "2005-02-27 17:24:01", "license": "1", "title": "Arrival", "text": "", "album_id": "140462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5575927_59a461292d_o.jpg", "secret": "59a461292d", "media": "photo", "latitude": "0", "id": "5575927", "tags": "reflection beach oregon helen"}, {"datetaken": "2005-02-27 17:24:06", "license": "1", "title": "Outlook", "text": "", "album_id": "140462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5575932_f4b40940d5_o.jpg", "secret": "f4b40940d5", "media": "photo", "latitude": "0", "id": "5575932", "tags": "sunset beach oregon island helen"}, {"datetaken": "2005-02-27 17:24:08", "license": "1", "title": "Pattern Integrity", "text": "", "album_id": "140462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5575937_a305c0cd34_o.jpg", "secret": "a305c0cd34", "media": "photo", "latitude": "0", "id": "5575937", "tags": "sunset beach oregon ripple mm"}, {"datetaken": "2005-02-27 17:24:11", "license": "1", "title": "Ripple", "text": "", "album_id": "140462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5575940_3f26b3cb38_o.jpg", "secret": "3f26b3cb38", "media": "photo", "latitude": "0", "id": "5575940", "tags": "sunset beach oregon ripple mm"}, {"datetaken": "2005-02-27 17:24:22", "license": "1", "title": "Inward Bound", "text": "", "album_id": "140462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5575950_1fca2a6ff9_o.jpg", "secret": "1fca2a6ff9", "media": "photo", "latitude": "0", "id": "5575950", "tags": "beach oregon running helen"}, {"datetaken": "2005-02-27 17:24:27", "license": "0", "title": "Island", "text": "", "album_id": "140462", "longitude": "-124.128930", "url_o": "https://farm1.staticflickr.com/5/5575953_9ee4fecdbd_o.jpg", "secret": "9ee4fecdbd", "media": "photo", "latitude": "44.074750", "id": "5575953", "tags": "beach oregon geotagged island fave mm geo:lat=4407475 geo:lon=12412893"}, {"datetaken": "2005-02-27 17:24:30", "license": "1", "title": "Returning", "text": "", "album_id": "140462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5575956_04cb017a3e_o.jpg", "secret": "04cb017a3e", "media": "photo", "latitude": "0", "id": "5575956", "tags": "beach oregon running helen"}, {"datetaken": "2005-02-27 17:24:35", "license": "1", "title": "Skipping Stones", "text": "", "album_id": "140462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5575959_45e9b4c330_o.jpg", "secret": "45e9b4c330", "media": "photo", "latitude": "0", "id": "5575959", "tags": "beach me oregon play mm"}, {"datetaken": "2005-02-25 21:40:35", "license": "1", "title": "whidbey 003", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5645625_f2b7cecd17_o.jpg", "secret": "f2b7cecd17", "media": "photo", "latitude": "0", "id": "5645625", "tags": "whidbey 2005 food"}, {"datetaken": "2005-02-27 11:38:49", "license": "1", "title": "whidbey 008", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5645632_8e11bc3deb_o.jpg", "secret": "8e11bc3deb", "media": "photo", "latitude": "0", "id": "5645632", "tags": "whidbey 2005 beach"}, {"datetaken": "2005-02-27 11:41:01", "license": "1", "title": "whidbey 016", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5645643_3c1cfa06fb_o.jpg", "secret": "3c1cfa06fb", "media": "photo", "latitude": "0", "id": "5645643", "tags": "whidbey 2005 beach"}, {"datetaken": "2005-02-27 11:41:42", "license": "1", "title": "whidbey 017", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5645527_800c54bd8a_o.jpg", "secret": "800c54bd8a", "media": "photo", "latitude": "0", "id": "5645527", "tags": "whidbey 2005 rocks"}, {"datetaken": "2005-02-27 11:44:35", "license": "1", "title": "whidbey 023", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5645519_be78213278_o.jpg", "secret": "be78213278", "media": "photo", "latitude": "0", "id": "5645519", "tags": "whidbey 2005 water"}, {"datetaken": "2005-02-27 11:44:48", "license": "1", "title": "whidbey 024", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5645533_d7a4b2f7f1_o.jpg", "secret": "d7a4b2f7f1", "media": "photo", "latitude": "0", "id": "5645533", "tags": "2005 water favs whidbey"}, {"datetaken": "2005-02-27 11:48:00", "license": "1", "title": "whidbey 027", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5645532_0d8a172a98_o.jpg", "secret": "0d8a172a98", "media": "photo", "latitude": "0", "id": "5645532", "tags": "whidbey 2005"}, {"datetaken": "2005-02-27 11:48:46", "license": "1", "title": "whidbey 029", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5645536_ef08c73f39_o.jpg", "secret": "ef08c73f39", "media": "photo", "latitude": "0", "id": "5645536", "tags": "whidbey 2005"}, {"datetaken": "2005-02-27 11:49:43", "license": "1", "title": "whidbey 032", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5645538_829146c0ec_o.jpg", "secret": "829146c0ec", "media": "photo", "latitude": "0", "id": "5645538", "tags": "2005 portfolio favs whidbey"}, {"datetaken": "2005-02-27 11:52:15", "license": "1", "title": "whidbey 038", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5645541_1360b021a1_o.jpg", "secret": "1360b021a1", "media": "photo", "latitude": "0", "id": "5645541", "tags": "whidbey 2005 water"}, {"datetaken": "2005-02-27 11:54:36", "license": "1", "title": "whidbey 039", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5645548_3f968e509b_o.jpg", "secret": "3f968e509b", "media": "photo", "latitude": "0", "id": "5645548", "tags": "whidbey 2005 rocks"}, {"datetaken": "2005-02-27 11:55:53", "license": "1", "title": "whidbey 043", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5645559_7ca7c64746_o.jpg", "secret": "7ca7c64746", "media": "photo", "latitude": "0", "id": "5645559", "tags": "whidbey 2005 sign"}, {"datetaken": "2005-02-27 11:56:30", "license": "1", "title": "whidbey 044", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5645560_c6077bde7f_o.jpg", "secret": "c6077bde7f", "media": "photo", "latitude": "0", "id": "5645560", "tags": "whidbey 2005 water"}, {"datetaken": "2005-02-27 12:00:09", "license": "1", "title": "whidbey 051", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5577121_f4758cb216_o.jpg", "secret": "f4758cb216", "media": "photo", "latitude": "0", "id": "5577121", "tags": "2005 selfportrait me favs whidbey ario"}, {"datetaken": "2005-02-27 12:08:37", "license": "1", "title": "whidbey 070", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5645565_441c991624_o.jpg", "secret": "441c991624", "media": "photo", "latitude": "0", "id": "5645565", "tags": "whidbey 2005 blue"}, {"datetaken": "2005-02-27 12:09:10", "license": "1", "title": "whidbey 074", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5645567_194993daf7_o.jpg", "secret": "194993daf7", "media": "photo", "latitude": "0", "id": "5645567", "tags": "whidbey 2005 blue"}, {"datetaken": "2005-02-27 12:09:28", "license": "1", "title": "whidbey 075", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5645570_408a4223cc_o.jpg", "secret": "408a4223cc", "media": "photo", "latitude": "0", "id": "5645570", "tags": "whidbey 2005 food"}, {"datetaken": "2005-02-27 12:10:34", "license": "1", "title": "whidbey 079", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5645574_d9642502c9_o.jpg", "secret": "d9642502c9", "media": "photo", "latitude": "0", "id": "5645574", "tags": "whidbey 2005 funny"}, {"datetaken": "2005-02-27 12:11:49", "license": "1", "title": "whidbey 083", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5645579_5f883bf950_o.jpg", "secret": "5f883bf950", "media": "photo", "latitude": "0", "id": "5645579", "tags": "whidbey 2005 bacon food"}, {"datetaken": "2005-02-27 12:14:43", "license": "1", "title": "whidbey 085", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5645581_b214a0c95f_o.jpg", "secret": "b214a0c95f", "media": "photo", "latitude": "0", "id": "5645581", "tags": "whidbey 2005 gadgets"}, {"datetaken": "2005-02-27 12:24:01", "license": "1", "title": "whidbey 090", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5645584_9f9c5d2f3f_o.jpg", "secret": "9f9c5d2f3f", "media": "photo", "latitude": "0", "id": "5645584", "tags": "whidbey 2005 friends bacon food"}, {"datetaken": "2005-02-27 12:35:25", "license": "1", "title": "whidbey 094", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5645590_745eda2c88_o.jpg", "secret": "745eda2c88", "media": "photo", "latitude": "0", "id": "5645590", "tags": "whidbey 2005 tequilla"}, {"datetaken": "2005-02-27 12:35:35", "license": "1", "title": "whidbey 096", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5645597_3f0c43b48d_o.jpg", "secret": "3f0c43b48d", "media": "photo", "latitude": "0", "id": "5645597", "tags": "whidbey 2005 emily portrait"}, {"datetaken": "2005-02-27 14:23:08", "license": "1", "title": "whidbey 098", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5645599_2d6328cc80_o.jpg", "secret": "2d6328cc80", "media": "photo", "latitude": "0", "id": "5645599", "tags": "whidbey 2005 vincent ferry"}, {"datetaken": "2005-02-27 14:23:14", "license": "1", "title": "whidbey 099", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5645604_1e083db14a_o.jpg", "secret": "1e083db14a", "media": "photo", "latitude": "0", "id": "5645604", "tags": "whidbey 2005 nicole portrait"}, {"datetaken": "2005-02-27 14:23:26", "license": "1", "title": "whidbey 100", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5645606_b874f9be08_o.jpg", "secret": "b874f9be08", "media": "photo", "latitude": "0", "id": "5645606", "tags": "whidbey 2005 water"}, {"datetaken": "2005-02-27 14:23:54", "license": "1", "title": "whidbey 102", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5645607_a5159c9b37_o.jpg", "secret": "a5159c9b37", "media": "photo", "latitude": "0", "id": "5645607", "tags": "whidbey 2005 vincent"}, {"datetaken": "2005-02-27 14:24:20", "license": "1", "title": "whidbey 103", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5645612_734944ee33_o.jpg", "secret": "734944ee33", "media": "photo", "latitude": "0", "id": "5645612", "tags": "whidbey 2005 cars"}, {"datetaken": "2005-02-27 14:24:29", "license": "1", "title": "whidbey 104", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5645615_032f417e17_o.jpg", "secret": "032f417e17", "media": "photo", "latitude": "0", "id": "5645615", "tags": "whidbey 2005 squaredcircle"}, {"datetaken": "2005-02-27 14:24:44", "license": "1", "title": "whidbey 105", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5645618_d973b9e248_o.jpg", "secret": "d973b9e248", "media": "photo", "latitude": "0", "id": "5645618", "tags": "whidbey 2005 dog"}, {"datetaken": "2005-02-27 14:25:18", "license": "1", "title": "whidbey 107-1", "text": "", "album_id": "141905", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5645656_e157f91510_o.jpg", "secret": "e157f91510", "media": "photo", "latitude": "0", "id": "5645656", "tags": "2005 friends me whidbey ario"}, {"datetaken": "2005-07-28 15:06:05", "license": "3", "title": "Opera House at night", "text": "", "album_id": "659687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29299697_92fe81e6f0_o.jpg", "secret": "92fe81e6f0", "media": "photo", "latitude": "0", "id": "29299697", "tags": "australia opera house"}, {"datetaken": "2005-07-28 15:06:08", "license": "3", "title": "Opera House at night 2", "text": "", "album_id": "659687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29299755_40721df167_o.jpg", "secret": "40721df167", "media": "photo", "latitude": "0", "id": "29299755", "tags": "australia opera house"}, {"datetaken": "2005-07-28 15:06:12", "license": "3", "title": "Koala", "text": "", "album_id": "659687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29299804_2375b7bbc2_o.jpg", "secret": "2375b7bbc2", "media": "photo", "latitude": "0", "id": "29299804", "tags": "australia koala"}, {"datetaken": "2005-07-28 15:06:20", "license": "3", "title": "Looking out at the Blue Mountains", "text": "", "album_id": "659687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29299914_f83db24556_o.jpg", "secret": "f83db24556", "media": "photo", "latitude": "0", "id": "29299914", "tags": "australia blue mountains"}, {"datetaken": "2005-07-28 15:06:41", "license": "3", "title": "Looking out at the Blue Mountains 2", "text": "", "album_id": "659687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29299966_b20769c03d_o.jpg", "secret": "b20769c03d", "media": "photo", "latitude": "0", "id": "29299966", "tags": "australia blue mountains"}, {"datetaken": "2005-07-28 15:06:50", "license": "3", "title": "Water cascade pose", "text": "", "album_id": "659687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29300019_3621984fc2_o.jpg", "secret": "3621984fc2", "media": "photo", "latitude": "0", "id": "29300019", "tags": "australia blue mountains cascade waterfall"}, {"datetaken": "2005-07-28 15:06:53", "license": "3", "title": "Castle of the Botanical", "text": "", "album_id": "659687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29302246_a823266449_o.jpg", "secret": "a823266449", "media": "photo", "latitude": "0", "id": "29302246", "tags": "australia botanical gardens"}, {"datetaken": "2005-07-28 15:06:55", "license": "3", "title": "What a View", "text": "", "album_id": "659687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29302291_e211b3570d_o.jpg", "secret": "e211b3570d", "media": "photo", "latitude": "0", "id": "29302291", "tags": "australia"}, {"datetaken": "2005-07-28 15:06:58", "license": "3", "title": "Having a Snack", "text": "", "album_id": "659687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29302336_894d084c95_o.jpg", "secret": "894d084c95", "media": "photo", "latitude": "0", "id": "29302336", "tags": "australia"}, {"datetaken": "2005-07-28 15:07:00", "license": "3", "title": "Opera Under the Bridge", "text": "", "album_id": "659687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29302375_8101ff2ec4_o.jpg", "secret": "8101ff2ec4", "media": "photo", "latitude": "0", "id": "29302375", "tags": "australia"}, {"datetaken": "2005-07-28 15:07:02", "license": "3", "title": "Early Mornign cliffs of Bondi", "text": "", "album_id": "659687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29302389_838c8659c1_o.jpg", "secret": "838c8659c1", "media": "photo", "latitude": "0", "id": "29302389", "tags": "australia bondi"}, {"datetaken": "2005-07-28 15:07:04", "license": "3", "title": "Wave Pool", "text": "", "album_id": "659687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29302409_8406c95037_o.jpg", "secret": "8406c95037", "media": "photo", "latitude": "0", "id": "29302409", "tags": "australia pool bondi"}, {"datetaken": "2005-07-28 15:07:06", "license": "3", "title": "Bondi Beach at 6AM", "text": "", "album_id": "659687", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29302451_09c0b0af10_o.jpg", "secret": "09c0b0af10", "media": "photo", "latitude": "0", "id": "29302451", "tags": "australia bondi beach"}, {"datetaken": "2009-05-16 22:51:51", "license": "1", "title": "2009-05-16-IMG_0032", "text": "", "album_id": "72157623186332497", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4315381908_db8fed106f_o.jpg", "secret": "b12d0a67dd", "media": "photo", "latitude": "0", "id": "4315381908", "tags": "cliff beach hawaii kauai canonef35mmf2 polihalestatepark"}, {"datetaken": "2009-05-16 22:58:15", "license": "1", "title": "2009-05-16-IMG_0060", "text": "", "album_id": "72157623186332497", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4314646527_a6383a9829_o.jpg", "secret": "1099823ba2", "media": "photo", "latitude": "0", "id": "4314646527", "tags": "ocean beach hawaii photographer kauai footsteps canonef35mmf2 polihalestatepark"}, {"datetaken": "2009-05-16 23:02:24", "license": "1", "title": "2009-05-16-IMG_0080", "text": "", "album_id": "72157623186332497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4315383330_4599314fa4_o.jpg", "secret": "ed6becfa13", "media": "photo", "latitude": "0", "id": "4315383330", "tags": "ocean flower beach hawaii rocks kauai canonef50mmf18ii polihalestatepark"}, {"datetaken": "2009-05-16 23:13:47", "license": "1", "title": "2009-05-16-IMG_0163", "text": "", "album_id": "72157623186332497", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4314647957_c1209a64bf_o.jpg", "secret": "24d4282efe", "media": "photo", "latitude": "0", "id": "4314647957", "tags": "beach hawaii rocks kauai polihalestatepark tokinaaf1224mmf4"}, {"datetaken": "2009-05-16 23:21:11", "license": "1", "title": "2009-05-16-IMG_0201", "text": "", "album_id": "72157623186332497", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4314648865_6920389be6_o.jpg", "secret": "d01e603801", "media": "photo", "latitude": "0", "id": "4314648865", "tags": "cliff beach grave hawaii cross kauai canonef35mmf2 polihalestatepark"}, {"datetaken": "2009-05-16 23:37:04", "license": "1", "title": "2009-05-16-IMG_0278", "text": "", "album_id": "72157623186332497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2460/4314649551_8dfa38bdeb_o.jpg", "secret": "169520003b", "media": "photo", "latitude": "0", "id": "4314649551", "tags": "plant beach hawaii bokeh kauai canonef35mmf2 hiding polihalestatepark"}, {"datetaken": "2009-05-16 23:37:36", "license": "1", "title": "2009-05-16-IMG_0279", "text": "", "album_id": "72157623186332497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2758/4315386166_5876eeefe6_o.jpg", "secret": "14f4813478", "media": "photo", "latitude": "0", "id": "4315386166", "tags": "beach hawaii rocks photographer kauai canonef35mmf2 polihalestatepark"}, {"datetaken": "2009-05-16 23:40:48", "license": "1", "title": "2009-05-16-IMG_0007-2", "text": "", "album_id": "72157623186332497", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4315386594_e6c9996bf3_o.jpg", "secret": "06c7e05ca9", "media": "photo", "latitude": "0", "id": "4315386594", "tags": "ocean plant beach hawaii rocks kauai canonef35mmf2 polihalestatepark"}, {"datetaken": "2009-05-17 00:09:48", "license": "1", "title": "2009-05-16-IMG_0181", "text": "", "album_id": "72157623186332497", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4315387220_5041bd9128_o.jpg", "secret": "7583ecf39a", "media": "photo", "latitude": "0", "id": "4315387220", "tags": "ocean beach hawaii sticks kauai polihalestatepark canonef200mmf28liiusm"}, {"datetaken": "2009-05-17 00:15:48", "license": "1", "title": "2009-05-16-IMG_0197", "text": "", "album_id": "72157623186332497", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4314652369_4d21108493_o.jpg", "secret": "f1cfcfc6b0", "media": "photo", "latitude": "0", "id": "4314652369", "tags": "tree beach hawaii kauai shack canonef35mmf2 polihalestatepark"}, {"datetaken": "2009-05-17 00:24:40", "license": "1", "title": "2009-05-16-IMG_0225", "text": "", "album_id": "72157623186332497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2732/4314653101_0f5c535d26_o.jpg", "secret": "b67f63a511", "media": "photo", "latitude": "0", "id": "4314653101", "tags": "ocean beach hawaii tent kauai canonef35mmf2 polihalestatepark"}, {"datetaken": "2009-05-17 00:37:02", "license": "1", "title": "2009-05-16-IMG_0294", "text": "", "album_id": "72157623186332497", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4315389478_237522f9a7_o.jpg", "secret": "80b350e937", "media": "photo", "latitude": "0", "id": "4315389478", "tags": "sunset 3 beach hawaii couple heart kauai canonef35mmf2 polihalestatepark"}, {"datetaken": "2009-05-17 00:39:38", "license": "1", "title": "2009-05-16-IMG_0007", "text": "", "album_id": "72157623186332497", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4314654263_b8d5eeace7_o.jpg", "secret": "7d6891c589", "media": "photo", "latitude": "0", "id": "4314654263", "tags": "ocean sunset beach hawaii photographer kauai canonef50mmf18ii polihalestatepark"}, {"datetaken": "2009-05-17 00:45:00", "license": "1", "title": "2009-05-16-IMG_0076", "text": "", "album_id": "72157623186332497", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4314656301_64e2252b63_o.jpg", "secret": "fb8df4bd58", "media": "photo", "latitude": "0", "id": "4314656301", "tags": "beach hawaii lowlight couple kauai canonef50mmf18ii polihalestatepark"}, {"datetaken": "2009-05-17 00:45:09", "license": "1", "title": "2009-05-16-IMG_0081", "text": "", "album_id": "72157623186332497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2692/4314658387_4b0359c251_o.jpg", "secret": "3568b69e7f", "media": "photo", "latitude": "0", "id": "4314658387", "tags": "beach hawaii lowlight couple kauai canonef50mmf18ii polihalestatepark"}, {"datetaken": "2009-05-17 01:05:47", "license": "1", "title": "2009-05-16-IMG_0136-2", "text": "", "album_id": "72157623186332497", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4315394806_f7d82d997b_o.jpg", "secret": "25b0293209", "media": "photo", "latitude": "0", "id": "4315394806", "tags": "ocean sunset beach clouds stars hawaii kauai polihalestatepark tokinaaf1224mmf4"}, {"datetaken": "2009-05-17 01:10:42", "license": "1", "title": "2009-05-16-IMG_0143-2", "text": "", "album_id": "72157623186332497", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4315395086_aff3be41f4_o.jpg", "secret": "a2e073a0d2", "media": "photo", "latitude": "0", "id": "4315395086", "tags": "ocean sunset beach clouds stars hawaii kauai polihalestatepark tokinaaf1224mmf4"}, {"datetaken": "2010-01-20 15:20:11", "license": "2", "title": "Bluff", "text": "", "album_id": "72157623308486442", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4314474134_db77fda261_o.jpg", "secret": "111ac37f8d", "media": "photo", "latitude": "0", "id": "4314474134", "tags": "sanfrancisco storm beach mavericks"}, {"datetaken": "2010-01-20 15:21:06", "license": "2", "title": "Boot", "text": "", "album_id": "72157623308486442", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4313739021_1dece16773_o.jpg", "secret": "28104b5724", "media": "photo", "latitude": "0", "id": "4313739021", "tags": "sanfrancisco storm beach mavericks"}, {"datetaken": "2010-01-20 15:21:58", "license": "2", "title": "Bluster", "text": "", "album_id": "72157623308486442", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4313739265_eedb63da36_o.jpg", "secret": "03d54bb494", "media": "photo", "latitude": "0", "id": "4313739265", "tags": "sanfrancisco storm beach mavericks"}, {"datetaken": "2010-01-20 15:23:31", "license": "2", "title": "Bubbles", "text": "", "album_id": "72157623308486442", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4314474726_7fde30b6f7_o.jpg", "secret": "99e243cb26", "media": "photo", "latitude": "0", "id": "4314474726", "tags": "sanfrancisco storm beach mavericks"}, {"datetaken": "2010-01-20 15:24:53", "license": "2", "title": "Breaking", "text": "", "album_id": "72157623308486442", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4314474878_cb91fe0b3d_o.jpg", "secret": "53918cb014", "media": "photo", "latitude": "0", "id": "4314474878", "tags": "sanfrancisco storm beach mavericks"}, {"datetaken": "2010-01-20 15:26:32", "license": "2", "title": "Bench", "text": "", "album_id": "72157623308486442", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2720/4314475182_31eb6e7b9d_o.jpg", "secret": "af8f34390d", "media": "photo", "latitude": "0", "id": "4314475182", "tags": "sanfrancisco storm beach mavericks"}, {"datetaken": "2010-01-20 15:35:21", "license": "2", "title": "Blurred", "text": "", "album_id": "72157623308486442", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4314475298_4639fb50ef_o.jpg", "secret": "03b1e629c5", "media": "photo", "latitude": "0", "id": "4314475298", "tags": "sanfrancisco storm beach mavericks"}, {"datetaken": "2010-01-20 15:50:06", "license": "2", "title": "Broken", "text": "", "album_id": "72157623308486442", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4313740217_c3696cb2dc_o.jpg", "secret": "75545992d6", "media": "photo", "latitude": "0", "id": "4313740217", "tags": "sanfrancisco storm beach mavericks"}, {"datetaken": "2010-01-20 15:50:44", "license": "2", "title": "Beloning", "text": "", "album_id": "72157623308486442", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4313740373_4077a0beb2_o.jpg", "secret": "dc70fa6398", "media": "photo", "latitude": "0", "id": "4313740373", "tags": "sanfrancisco storm beach mavericks"}, {"datetaken": "2010-01-20 15:51:42", "license": "2", "title": "Brilliant", "text": "", "album_id": "72157623308486442", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2683/4313740665_163338da85_o.jpg", "secret": "55665bc9de", "media": "photo", "latitude": "0", "id": "4313740665", "tags": "sanfrancisco storm beach mavericks"}, {"datetaken": "2010-01-20 15:52:46", "license": "2", "title": "Beauty", "text": "", "album_id": "72157623308486442", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2429/4314476384_49487f0eee_o.jpg", "secret": "7ebf4a1dbb", "media": "photo", "latitude": "0", "id": "4314476384", "tags": "sanfrancisco storm beach mavericks"}, {"datetaken": "2010-01-20 15:52:55", "license": "2", "title": "Beach", "text": "", "album_id": "72157623308486442", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4313741489_b4e0130c2e_o.jpg", "secret": "172fce4f1d", "media": "photo", "latitude": "0", "id": "4313741489", "tags": "sanfrancisco storm beach mavericks"}, {"datetaken": "2010-01-20 15:56:34", "license": "2", "title": "Beaten", "text": "", "album_id": "72157623308486442", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4314477178_221e9fd91a_o.jpg", "secret": "42a3181822", "media": "photo", "latitude": "0", "id": "4314477178", "tags": "sanfrancisco storm beach mavericks"}, {"datetaken": "2010-01-20 15:58:55", "license": "2", "title": "Backside", "text": "", "album_id": "72157623308486442", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4313742163_217c112473_o.jpg", "secret": "7cd87d19fc", "media": "photo", "latitude": "0", "id": "4313742163", "tags": "sanfrancisco storm beach mavericks"}, {"datetaken": "2004-09-29 14:36:16", "license": "1", "title": "Lindos City", "text": "", "album_id": "15812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/629398_4f38e69e84_o.jpg", "secret": "4f38e69e84", "media": "photo", "latitude": "0", "id": "629398", "tags": "holiday rhodes lindos ancient city"}, {"datetaken": "2004-09-29 14:36:24", "license": "1", "title": "Governors Palace", "text": "", "album_id": "15812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/629400_1e702151f7_o.jpg", "secret": "1e702151f7", "media": "photo", "latitude": "0", "id": "629400", "tags": "holiday rhodes palace lindos"}, {"datetaken": "2004-09-29 14:36:32", "license": "1", "title": "Lindos Acropolis", "text": "", "album_id": "15812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/629402_1f1661f9f5_o.jpg", "secret": "1f1661f9f5", "media": "photo", "latitude": "0", "id": "629402", "tags": "holiday rhodes acropolis"}, {"datetaken": "2004-09-29 14:36:49", "license": "1", "title": "Ancient City of Lindos", "text": "", "album_id": "15812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/629406_5595ce2726_o.jpg", "secret": "5595ce2726", "media": "photo", "latitude": "0", "id": "629406", "tags": "holiday rhodes lindos acropolis"}, {"datetaken": "2004-09-29 14:36:58", "license": "1", "title": "Donkeys", "text": "", "album_id": "15812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/629411_fae0f59c7a_o.jpg", "secret": "fae0f59c7a", "media": "photo", "latitude": "0", "id": "629411", "tags": "holiday rhodes donkeys acropolis"}, {"datetaken": "2004-09-29 14:37:08", "license": "1", "title": "Restaurants", "text": "", "album_id": "15812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/629416_8b6528552c_o.jpg", "secret": "8b6528552c", "media": "photo", "latitude": "0", "id": "629416", "tags": "holiday rhodes restaurant"}, {"datetaken": "2004-09-29 14:37:17", "license": "1", "title": "Rhodes City", "text": "", "album_id": "15812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/629418_5920859479_o.jpg", "secret": "5920859479", "media": "photo", "latitude": "0", "id": "629418", "tags": "holiday rhodes city shoppingcentre"}, {"datetaken": "2004-09-29 14:37:25", "license": "1", "title": "Stray dog", "text": "", "album_id": "15812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/629420_755fa50fe9_o.jpg", "secret": "755fa50fe9", "media": "photo", "latitude": "0", "id": "629420", "tags": "holiday rhodes city stray dog"}, {"datetaken": "2004-09-29 14:37:33", "license": "1", "title": "Daytrip boat", "text": "", "album_id": "15812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/629421_52950f2eef_o.jpg", "secret": "52950f2eef", "media": "photo", "latitude": "0", "id": "629421", "tags": "holiday rhodes boat daytrip cruise"}, {"datetaken": "2004-09-29 14:37:41", "license": "1", "title": "Mandraki Harbour", "text": "", "album_id": "15812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/629422_0f412b2c58_o.jpg", "secret": "0f412b2c58", "media": "photo", "latitude": "0", "id": "629422", "tags": "holiday rhodes mandraki harbour windmills"}, {"datetaken": "2004-09-29 14:37:48", "license": "1", "title": "Church", "text": "", "album_id": "15812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/629426_52ea6fd1b8_o.jpg", "secret": "52ea6fd1b8", "media": "photo", "latitude": "0", "id": "629426", "tags": "holiday rhodes church"}, {"datetaken": "2004-09-29 14:37:55", "license": "1", "title": "Mosk", "text": "", "album_id": "15812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/629430_24ef7f6547_o.jpg", "secret": "24ef7f6547", "media": "photo", "latitude": "0", "id": "629430", "tags": "holiday rhodes turkish mosk"}, {"datetaken": "2004-09-29 14:38:03", "license": "1", "title": "Mopeds", "text": "", "album_id": "15812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/629431_76bb5e8ad0_o.jpg", "secret": "76bb5e8ad0", "media": "photo", "latitude": "0", "id": "629431", "tags": "holiday rhodes mopeds mandraki harbour"}, {"datetaken": "2004-09-29 14:38:10", "license": "1", "title": "Fisher boat", "text": "", "album_id": "15812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/629434_721f604065_o.jpg", "secret": "721f604065", "media": "photo", "latitude": "0", "id": "629434", "tags": "holiday rhodes mandraki harbour fisher boat"}, {"datetaken": "2005-06-30 20:29:20", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22734823_ac645d3e9b_o.jpg", "secret": "ac645d3e9b", "media": "photo", "latitude": "0", "id": "22734823", "tags": "tijuana mexico tacos"}, {"datetaken": "2005-06-30 20:29:22", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22734832_9f8bfa6701_o.jpg", "secret": "9f8bfa6701", "media": "photo", "latitude": "0", "id": "22734832", "tags": "tijuana mexico tacosalpastor alpastor tacos"}, {"datetaken": "2005-06-30 20:29:24", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22734836_6db62c59df_o.jpg", "secret": "6db62c59df", "media": "photo", "latitude": "0", "id": "22734836", "tags": "tijuana mexico tacos alpastor"}, {"datetaken": "2005-06-30 20:29:27", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22734842_3b436ff1ea_o.jpg", "secret": "3b436ff1ea", "media": "photo", "latitude": "0", "id": "22734842", "tags": "tijuana mexico tacos"}, {"datetaken": "2005-06-30 20:29:29", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22734846_7b946d7d6f_o.jpg", "secret": "7b946d7d6f", "media": "photo", "latitude": "0", "id": "22734846", "tags": "tijuana mexico despuesdelostacos"}, {"datetaken": "2005-06-30 20:29:33", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/22734855_4d98c38227_o.jpg", "secret": "4d98c38227", "media": "photo", "latitude": "0", "id": "22734855", "tags": "tijuana mexico tacos"}, {"datetaken": "2005-06-30 20:29:36", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22734866_c99b5f5438_o.jpg", "secret": "c99b5f5438", "media": "photo", "latitude": "0", "id": "22734866", "tags": "tijuana mexico tacosalpastor alpastor"}, {"datetaken": "2005-06-30 20:29:39", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/22734870_e90e8e6739_o.jpg", "secret": "e90e8e6739", "media": "photo", "latitude": "0", "id": "22734870", "tags": "tijuana mexico taquero"}, {"datetaken": "2005-06-30 20:29:42", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22734882_1f948467d2_o.jpg", "secret": "1f948467d2", "media": "photo", "latitude": "0", "id": "22734882", "tags": "tijuana mexico"}, {"datetaken": "2005-06-30 20:29:45", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22734891_3032808745_o.jpg", "secret": "3032808745", "media": "photo", "latitude": "0", "id": "22734891", "tags": "tijuana mexico taquero"}, {"datetaken": "2005-06-30 20:29:49", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22734899_79ad689481_o.jpg", "secret": "79ad689481", "media": "photo", "latitude": "0", "id": "22734899", "tags": "tijuana mexico taqueroviendoelfutbol taquero tacos"}, {"datetaken": "2005-06-30 20:29:51", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22734903_320137dc9a_o.jpg", "secret": "320137dc9a", "media": "photo", "latitude": "0", "id": "22734903", "tags": "tijuana mexico tortillas tortillera"}, {"datetaken": "2005-06-30 20:29:53", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22734907_6df2695e2e_o.jpg", "secret": "6df2695e2e", "media": "photo", "latitude": "0", "id": "22734907", "tags": "tijuana mexico tortillas tortillera"}, {"datetaken": "2005-06-30 20:29:55", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22734911_d62539b35f_o.jpg", "secret": "d62539b35f", "media": "photo", "latitude": "0", "id": "22734911", "tags": "tijuana mexico botellas vino"}, {"datetaken": "2005-06-30 20:29:59", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22734917_dd1f619454_o.jpg", "secret": "dd1f619454", "media": "photo", "latitude": "0", "id": "22734917", "tags": "tijuana mexico botellas vino"}, {"datetaken": "2005-06-30 20:30:03", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22734932_7cf5f47aa2_o.jpg", "secret": "7cf5f47aa2", "media": "photo", "latitude": "0", "id": "22734932", "tags": "tijuana mexico licoreria vino escaparate"}, {"datetaken": "2005-06-30 20:30:06", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/22734942_f0972127a5_o.jpg", "secret": "f0972127a5", "media": "photo", "latitude": "0", "id": "22734942", "tags": "tijuana mexico salon"}, {"datetaken": "2005-06-30 20:30:12", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22734956_94ecbff354_o.jpg", "secret": "94ecbff354", "media": "photo", "latitude": "0", "id": "22734956", "tags": "tijuana mexico dulces dulceria candy candystore"}, {"datetaken": "2005-06-30 20:30:16", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22734960_6d4da752fc_o.jpg", "secret": "6d4da752fc", "media": "photo", "latitude": "0", "id": "22734960", "tags": "tijuana mexico pinatas"}, {"datetaken": "2005-06-30 20:30:18", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22734964_e61b3e5876_o.jpg", "secret": "e61b3e5876", "media": "photo", "latitude": "0", "id": "22734964", "tags": "mipapa papa dad"}, {"datetaken": "2005-06-30 20:30:22", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22734976_be709eaed5_o.jpg", "secret": "be709eaed5", "media": "photo", "latitude": "0", "id": "22734976", "tags": "tijuana mexico"}, {"datetaken": "2005-06-30 20:30:24", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22734979_04fd7c027a_o.jpg", "secret": "04fd7c027a", "media": "photo", "latitude": "0", "id": "22734979", "tags": "tijuana mexico banderademexico bandera patria casa"}, {"datetaken": "2005-06-30 20:30:26", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22734986_c2112e226a_o.jpg", "secret": "c2112e226a", "media": "photo", "latitude": "0", "id": "22734986", "tags": "tijuana mexico aeropuerto"}, {"datetaken": "2005-06-30 20:30:29", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22734989_198c7be7d2_o.jpg", "secret": "198c7be7d2", "media": "photo", "latitude": "0", "id": "22734989", "tags": "mexico tijuana bordedemexicoyestadosunidos mexicanborder"}, {"datetaken": "2005-06-30 20:30:30", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22734993_e5aca437d8_o.jpg", "secret": "e5aca437d8", "media": "photo", "latitude": "0", "id": "22734993", "tags": "tijuana mexico cuauhtemoc"}, {"datetaken": "2005-06-30 20:30:32", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22734997_4c60da50b8_o.jpg", "secret": "4c60da50b8", "media": "photo", "latitude": "0", "id": "22734997", "tags": "tijuana mexico bandera"}, {"datetaken": "2005-06-30 20:30:36", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22735013_c7829763ad_o.jpg", "secret": "c7829763ad", "media": "photo", "latitude": "0", "id": "22735013", "tags": "tijuana mexico taxi"}, {"datetaken": "2005-06-30 20:30:38", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/22735021_385eda3999_o.jpg", "secret": "385eda3999", "media": "photo", "latitude": "0", "id": "22735021", "tags": "tijuana mexico fruta mangos pina sandia melon"}, {"datetaken": "2005-06-30 20:30:43", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22735035_8603ec8eb4_o.jpg", "secret": "8603ec8eb4", "media": "photo", "latitude": "0", "id": "22735035", "tags": "tijuana mexico mango coco frutaconchileylimon chile fruta"}, {"datetaken": "2005-06-30 20:30:46", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/22735045_ed82a5166f_o.jpg", "secret": "ed82a5166f", "media": "photo", "latitude": "0", "id": "22735045", "tags": "tijuana mexico tunas"}, {"datetaken": "2005-06-30 20:30:50", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22735056_be48366779_o.jpg", "secret": "be48366779", "media": "photo", "latitude": "0", "id": "22735056", "tags": "tijuana mexico fruta"}, {"datetaken": "2005-06-30 20:30:53", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22735068_131346f000_o.jpg", "secret": "131346f000", "media": "photo", "latitude": "0", "id": "22735068", "tags": "tijuana mexico"}, {"datetaken": "2005-06-30 20:30:56", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22735074_4b4d72d914_o.jpg", "secret": "4b4d72d914", "media": "photo", "latitude": "0", "id": "22735074", "tags": "tijuana mexico envasesderefresco refrescos cocacola fanta"}, {"datetaken": "2005-06-30 20:31:00", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22735084_e95224ee53_o.jpg", "secret": "e95224ee53", "media": "photo", "latitude": "0", "id": "22735084", "tags": "tijuana mexico pulpo camaron"}, {"datetaken": "2005-06-30 20:31:03", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22735090_f2b6b0e312_o.jpg", "secret": "f2b6b0e312", "media": "photo", "latitude": "0", "id": "22735090", "tags": "tijuana mexico salsas picante"}, {"datetaken": "2005-06-30 20:31:05", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/22735098_5a231bee4b_o.jpg", "secret": "5a231bee4b", "media": "photo", "latitude": "0", "id": "22735098", "tags": "tijuana mexico cocteldecamaronypulpo camaron pulpo shrimp octopus food shrimpandoctopuscocktail cocktail"}, {"datetaken": "2005-06-30 20:41:47", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22737691_d94a4bd7ef_o.jpg", "secret": "d94a4bd7ef", "media": "photo", "latitude": "0", "id": "22737691", "tags": "vendedordeflan flan tijuana mexico retrato portrait streetvendor"}, {"datetaken": "2005-06-30 20:41:51", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22737706_b6d52f1cdb_o.jpg", "secret": "b6d52f1cdb", "media": "photo", "latitude": "0", "id": "22737706", "tags": "vendedordeflan flan tijuana mexico retrato portrait streetvendor"}, {"datetaken": "2005-06-30 20:41:57", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22737734_c693723334_o.jpg", "secret": "c693723334", "media": "photo", "latitude": "0", "id": "22737734", "tags": "vendedordeflan flan tijuana mexico retrato portrait streetvendor"}, {"datetaken": "2005-06-30 20:42:01", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22737764_dc08e2527b_o.jpg", "secret": "dc08e2527b", "media": "photo", "latitude": "0", "id": "22737764", "tags": "vendedordeflan flan tijuana mexico retrato portrait streetvendor"}, {"datetaken": "2005-06-30 20:42:04", "license": "3", "title": "", "text": "", "album_id": "681760", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/22737787_c71fa93968_o.jpg", "secret": "c71fa93968", "media": "photo", "latitude": "0", "id": "22737787", "tags": "vendedordeflan flan tijuana mexico retrato portrait streetvendor"}, {"datetaken": "2004-06-05 15:13:27", "license": "3", "title": "100_1440", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4058673_13ccca2efc_o.jpg", "secret": "13ccca2efc", "media": "photo", "latitude": "0", "id": "4058673", "tags": "summer dog beach swansea wales meg sunny gower faveplace rhossili"}, {"datetaken": "2004-06-05 15:14:58", "license": "3", "title": "the house", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4058672_16c16c298b_o.jpg", "secret": "16c16c298b", "media": "photo", "latitude": "0", "id": "4058672", "tags": "summer favorite cliff white house green beach beautiful swansea wales farmhouse landscape countryside farm gorgeous united cottage favorites kingdom sunny best valley favourites gower portfolio favourite rhossilli faveplace rhossili rhosili cotc0707"}, {"datetaken": "2004-06-05 15:24:02", "license": "3", "title": "100_1445", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4058669_193284838b_o.jpg", "secret": "193284838b", "media": "photo", "latitude": "0", "id": "4058669", "tags": "rhossili gower wales swansea meg sunny beach faveplace summer dog"}, {"datetaken": "2004-06-05 15:35:32", "license": "3", "title": "100_1447", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4058664_2577020e09_o.jpg", "secret": "2577020e09", "media": "photo", "latitude": "0", "id": "4058664", "tags": "rhossili gower wales swansea meg sunny beach faveplace summer dog"}, {"datetaken": "2004-06-05 16:02:18", "license": "3", "title": "100_1449", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4058661_55ee57a22e_o.jpg", "secret": "55ee57a22e", "media": "photo", "latitude": "0", "id": "4058661", "tags": "summer dog beach swansea wales meg sunny gower faveplace rhossili"}, {"datetaken": "2004-06-05 16:02:23", "license": "3", "title": "100_1450", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4058744_6acd815951_o.jpg", "secret": "6acd815951", "media": "photo", "latitude": "0", "id": "4058744", "tags": "summer dog beach swansea wales meg sunny gower faveplace rhossili"}, {"datetaken": "2004-06-05 16:06:47", "license": "3", "title": "100_1451", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4058741_f2bb352297_o.jpg", "secret": "f2bb352297", "media": "photo", "latitude": "0", "id": "4058741", "tags": "summer dog beach swansea wales meg sunny gower joana faveplace rhossili beastmeg"}, {"datetaken": "2004-06-05 16:07:02", "license": "3", "title": "rhossili", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4058735_e15d4d3ce6_o.jpg", "secret": "e15d4d3ce6", "media": "photo", "latitude": "0", "id": "4058735", "tags": "summer dog beach swansea wales meg sunny gower joana faveplace rhossili beastmeg"}, {"datetaken": "2004-06-05 16:07:49", "license": "3", "title": "fresh air", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4058726_d72bbd215e_o.jpg", "secret": "d72bbd215e", "media": "photo", "latitude": "0", "id": "4058726", "tags": "summer favorite woman dog beach swansea wales hair back women long meg favorites sunny best favourites gower shoulders portfolio favourite joana faveplace rhossili cotc0707"}, {"datetaken": "2004-06-05 16:08:22", "license": "3", "title": "100_1454", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4058724_3dc84e3fbe_o.jpg", "secret": "3dc84e3fbe", "media": "photo", "latitude": "0", "id": "4058724", "tags": "summer dog beach swansea wales meg sunny gower faveplace rhossili"}, {"datetaken": "2004-06-05 16:25:19", "license": "3", "title": "100_1458", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4058723_c8af8e8564_o.jpg", "secret": "c8af8e8564", "media": "photo", "latitude": "0", "id": "4058723", "tags": "summer dog beach swansea wales meg sunny gower faveplace rhossili"}, {"datetaken": "2004-06-05 16:25:46", "license": "3", "title": "100_1460", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4058719_3265b98ecc_o.jpg", "secret": "3265b98ecc", "media": "photo", "latitude": "0", "id": "4058719", "tags": "summer dog beach swansea wales meg sunny gower faveplace rhossili"}, {"datetaken": "2004-06-05 16:27:46", "license": "3", "title": "100_1462", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4058713_68eb2a41c4_o.jpg", "secret": "68eb2a41c4", "media": "photo", "latitude": "0", "id": "4058713", "tags": "summer dog beach swansea wales meg sunny gower faveplace rhossili"}, {"datetaken": "2004-06-05 16:46:27", "license": "3", "title": "100_1468", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4058706_9a376a9a2f_o.jpg", "secret": "9a376a9a2f", "media": "photo", "latitude": "0", "id": "4058706", "tags": "summer dog beach swansea wales meg sunny gower faveplace rhossili"}, {"datetaken": "2004-06-05 17:03:10", "license": "3", "title": "100_1472", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4058705_d1307d7e07_o.jpg", "secret": "d1307d7e07", "media": "photo", "latitude": "0", "id": "4058705", "tags": "summer dog beach swansea wales meg sunny gower faveplace rhossili"}, {"datetaken": "2004-06-05 17:06:13", "license": "3", "title": "100_1474", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4058702_b9f6efe852_o.jpg", "secret": "b9f6efe852", "media": "photo", "latitude": "0", "id": "4058702", "tags": "summer dog beach swansea wales meg sunny gower faveplace rhossili"}, {"datetaken": "2004-06-05 17:06:25", "license": "3", "title": "100_1475", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4058692_4d56e13f54_o.jpg", "secret": "4d56e13f54", "media": "photo", "latitude": "0", "id": "4058692", "tags": "summer dog beach swansea wales meg sunny gower faveplace rhossili"}, {"datetaken": "2004-06-05 17:06:50", "license": "3", "title": "100_1476", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4058689_294b0c0ee9_o.jpg", "secret": "294b0c0ee9", "media": "photo", "latitude": "0", "id": "4058689", "tags": "summer dog beach swansea wales meg sunny gower faveplace rhossili"}, {"datetaken": "2004-06-05 17:06:56", "license": "3", "title": "100_1477", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4058687_691ce94ff9_o.jpg", "secret": "691ce94ff9", "media": "photo", "latitude": "0", "id": "4058687", "tags": "summer dog beach swansea wales meg sunny gower joana faveplace rhossili beastmeg"}, {"datetaken": "2004-06-05 17:08:37", "license": "3", "title": "100_1481", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4058685_363a96f2e0_o.jpg", "secret": "363a96f2e0", "media": "photo", "latitude": "0", "id": "4058685", "tags": "summer dog beach swansea wales meg sunny gower faveplace rhossili beastmeg"}, {"datetaken": "2004-06-05 17:11:41", "license": "3", "title": "100_1483", "text": "", "album_id": "102283", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4058682_a8ebb5dc2f_o.jpg", "secret": "a8ebb5dc2f", "media": "photo", "latitude": "0", "id": "4058682", "tags": "summer dog beach swansea wales meg sunny gower faveplace rhossili"}, {"datetaken": "2005-01-29 00:02:08", "license": "1", "title": "Pinnacles 022", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4946383_59c49a7e7b_o.jpg", "secret": "59c49a7e7b", "media": "photo", "latitude": "0", "id": "4946383", "tags": "newzealand nz pinnacles james"}, {"datetaken": "2005-01-29 00:07:15", "license": "1", "title": "Pinnacles 023", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4036201_6a333e6d20_o.jpg", "secret": "6a333e6d20", "media": "photo", "latitude": "0", "id": "4036201", "tags": "newzealand nz pinnacles log"}, {"datetaken": "2005-01-29 00:09:41", "license": "1", "title": "Pinnacles 025", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4036205_d3acb0f982_o.jpg", "secret": "d3acb0f982", "media": "photo", "latitude": "0", "id": "4036205", "tags": "newzealand nz pinnacles mountain"}, {"datetaken": "2005-01-29 01:20:06", "license": "1", "title": "Pinnacles 029", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4036207_e65f139dd9_o.jpg", "secret": "e65f139dd9", "media": "photo", "latitude": "0", "id": "4036207", "tags": "newzealand nz pinnacles dam"}, {"datetaken": "2005-01-29 01:37:57", "license": "1", "title": "Pinnacles 035", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4946387_ec4fd0aa5f_o.jpg", "secret": "ec4fd0aa5f", "media": "photo", "latitude": "0", "id": "4946387", "tags": "newzealand nz pinnacles james"}, {"datetaken": "2005-01-29 01:38:18", "license": "1", "title": "Pinnacles 036", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4036212_7958794630_o.jpg", "secret": "7958794630", "media": "photo", "latitude": "0", "id": "4036212", "tags": "newzealand nz pinnacles hahei"}, {"datetaken": "2005-01-29 01:38:39", "license": "1", "title": "Pinnacles 038", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4036214_b9be6d90a9_o.jpg", "secret": "b9be6d90a9", "media": "photo", "latitude": "0", "id": "4036214", "tags": "newzealand nz pinnacles"}, {"datetaken": "2005-01-29 01:41:36", "license": "1", "title": "Pinnacles 040", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4036218_4e2512399b_o.jpg", "secret": "4e2512399b", "media": "photo", "latitude": "0", "id": "4036218", "tags": "newzealand nz pinnacles"}, {"datetaken": "2005-01-29 01:48:53", "license": "1", "title": "Pinnacles 041", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4036220_59253c68eb_o.jpg", "secret": "59253c68eb", "media": "photo", "latitude": "0", "id": "4036220", "tags": "newzealand nz pinnacles"}, {"datetaken": "2005-01-29 01:51:36", "license": "1", "title": "Pinnacles 045", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4036221_8ab4ac39f0_o.jpg", "secret": "8ab4ac39f0", "media": "photo", "latitude": "0", "id": "4036221", "tags": "newzealand nz pinnacles"}, {"datetaken": "2005-01-29 01:57:38", "license": "1", "title": "Pinnacles 048", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4946367_4bb960cf67_o.jpg", "secret": "4bb960cf67", "media": "photo", "latitude": "0", "id": "4946367", "tags": "newzealand nz pinnacles james"}, {"datetaken": "2005-01-29 02:02:55", "license": "1", "title": "Pinnacles 051", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4946405_59ebb6c9af_o.jpg", "secret": "59ebb6c9af", "media": "photo", "latitude": "0", "id": "4946405", "tags": "newzealand nz pinnacles clara"}, {"datetaken": "2005-01-29 02:03:08", "license": "1", "title": "Pinnacles 053", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4036224_a2f633c266_o.jpg", "secret": "a2f633c266", "media": "photo", "latitude": "0", "id": "4036224", "tags": "newzealand nz pinnacles"}, {"datetaken": "2005-01-29 02:11:14", "license": "1", "title": "Pinnacles 055", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4946358_828b5306b4_o.jpg", "secret": "828b5306b4", "media": "photo", "latitude": "0", "id": "4946358", "tags": "newzealand nz pinnacles james clara"}, {"datetaken": "2005-01-29 02:21:47", "license": "1", "title": "Pinnacles 060", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4036225_77dc65e82a_o.jpg", "secret": "77dc65e82a", "media": "photo", "latitude": "0", "id": "4036225", "tags": "newzealand nz pinnacles"}, {"datetaken": "2005-01-29 02:23:23", "license": "1", "title": "Pinnacles 064", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4036227_8af6e1c0b6_o.jpg", "secret": "8af6e1c0b6", "media": "photo", "latitude": "0", "id": "4036227", "tags": "newzealand nz pinnacles"}, {"datetaken": "2005-01-29 02:23:34", "license": "1", "title": "Pinnacles 065", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4036228_1ba332e750_o.jpg", "secret": "1ba332e750", "media": "photo", "latitude": "0", "id": "4036228", "tags": "newzealand nz pinnacles"}, {"datetaken": "2005-01-29 08:17:32", "license": "1", "title": "Pinnacles 070", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4036233_b21886a633_o.jpg", "secret": "b21886a633", "media": "photo", "latitude": "0", "id": "4036233", "tags": "newzealand nz pinnacles mist"}, {"datetaken": "2005-01-29 08:19:59", "license": "1", "title": "Pinnacles 073", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4036236_f6b44819de_o.jpg", "secret": "f6b44819de", "media": "photo", "latitude": "0", "id": "4036236", "tags": "newzealand nz pinnacles bed"}, {"datetaken": "2005-01-29 19:47:02", "license": "1", "title": "Pinnacles 074", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4036238_61b1e59d29_o.jpg", "secret": "61b1e59d29", "media": "photo", "latitude": "0", "id": "4036238", "tags": "newzealand nz pinnacles window"}, {"datetaken": "2005-01-29 19:59:16", "license": "1", "title": "Pinnacles 076", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4036239_d47a9be293_o.jpg", "secret": "d47a9be293", "media": "photo", "latitude": "0", "id": "4036239", "tags": "newzealand nz pinnacles"}, {"datetaken": "2005-01-29 19:59:53", "license": "1", "title": "Pinnacles 077", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4036242_c60759130f_o.jpg", "secret": "c60759130f", "media": "photo", "latitude": "0", "id": "4036242", "tags": "newzealand nz pinnacles"}, {"datetaken": "2005-01-29 20:00:04", "license": "1", "title": "Pinnacles 078", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4036246_5c7f71ee85_o.jpg", "secret": "5c7f71ee85", "media": "photo", "latitude": "0", "id": "4036246", "tags": "newzealand nz pinnacles"}, {"datetaken": "2005-01-30 00:17:17", "license": "1", "title": "Hahei Beach (no swimming)", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4036250_d9c48ea48c_o.jpg", "secret": "d9c48ea48c", "media": "photo", "latitude": "0", "id": "4036250", "tags": "newzealand nz hahei sea beach"}, {"datetaken": "2005-01-30 00:18:14", "license": "1", "title": "Hahei: Picture-perfect", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4036252_5afc30a95c_o.jpg", "secret": "5afc30a95c", "media": "photo", "latitude": "0", "id": "4036252", "tags": "newzealand nz hahei sea beach"}, {"datetaken": "2005-01-30 00:19:19", "license": "1", "title": "Hahei: Huge waves", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4036256_3d8caa5e88_o.jpg", "secret": "3d8caa5e88", "media": "photo", "latitude": "0", "id": "4036256", "tags": "newzealand nz hahei sea beach"}, {"datetaken": "2005-01-30 00:19:33", "license": "1", "title": "Hahei: Water got everywhere", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4036257_a2d7392fcc_o.jpg", "secret": "a2d7392fcc", "media": "photo", "latitude": "0", "id": "4036257", "tags": "newzealand nz hahei sea beach"}, {"datetaken": "2005-01-30 00:20:32", "license": "1", "title": "Hahei: Very very rough seas", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4036262_19d6cc7622_o.jpg", "secret": "19d6cc7622", "media": "photo", "latitude": "0", "id": "4036262", "tags": "newzealand nz hahei sea beach"}, {"datetaken": "2005-01-30 00:24:54", "license": "1", "title": "Hahei: Black & yellow sand (all at once)", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4036266_9ec83db371_o.jpg", "secret": "9ec83db371", "media": "photo", "latitude": "0", "id": "4036266", "tags": "newzealand nz hahei sea beach"}, {"datetaken": "2005-01-30 00:26:04", "license": "1", "title": "Hahei: The end of the beach", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4036270_5d228d94ae_o.jpg", "secret": "5d228d94ae", "media": "photo", "latitude": "0", "id": "4036270", "tags": "newzealand nz hahei sea beach"}, {"datetaken": "2005-01-30 00:27:59", "license": "1", "title": "Hahei: White frothy waves", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4036272_1f8e1aa282_o.jpg", "secret": "1f8e1aa282", "media": "photo", "latitude": "0", "id": "4036272", "tags": "newzealand nz hahei sea beach"}, {"datetaken": "2005-01-30 00:28:19", "license": "1", "title": "Hahei: Just the sea", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4036273_5adc9f27a2_o.jpg", "secret": "5adc9f27a2", "media": "photo", "latitude": "0", "id": "4036273", "tags": "newzealand nz hahei sea beach"}, {"datetaken": "2005-01-30 04:12:34", "license": "1", "title": "Cathedral Cove: Observation Deck", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4036274_5da58f0024_o.jpg", "secret": "5da58f0024", "media": "photo", "latitude": "0", "id": "4036274", "tags": "newzealand nz cathedralcove"}, {"datetaken": "2005-01-30 04:13:52", "license": "1", "title": "Cathedral Cove: Brilliant vista", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4036276_b73cf6b26d_o.jpg", "secret": "b73cf6b26d", "media": "photo", "latitude": "0", "id": "4036276", "tags": "newzealand nz cathedralcove"}, {"datetaken": "2005-01-30 04:19:50", "license": "1", "title": "Cathedral Cove: Looking out to sea", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4036278_2713e6e3f2_o.jpg", "secret": "2713e6e3f2", "media": "photo", "latitude": "0", "id": "4036278", "tags": "newzealand nz cathedralcove"}, {"datetaken": "2005-01-30 04:37:44", "license": "1", "title": "Stingray Bay", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4036283_b5fb53f31a_o.jpg", "secret": "b5fb53f31a", "media": "photo", "latitude": "0", "id": "4036283", "tags": "newzealand nz stingraybay waves"}, {"datetaken": "2005-01-30 04:40:27", "license": "1", "title": "Stingray Bay: Sea-spray against rocks", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4036292_1bfa2d0a10_o.jpg", "secret": "1bfa2d0a10", "media": "photo", "latitude": "0", "id": "4036292", "tags": "newzealand nz stingraybay waves"}, {"datetaken": "2005-01-30 05:05:50", "license": "1", "title": "Cathedral Cove: Cliff & Sky", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4036294_7d278b7b29_o.jpg", "secret": "7d278b7b29", "media": "photo", "latitude": "0", "id": "4036294", "tags": "newzealand nz cathedralcove"}, {"datetaken": "2005-01-30 05:15:22", "license": "1", "title": "Cathedral Cove: Rock", "text": "", "album_id": "262948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4036295_1e47fef8b4_o.jpg", "secret": "1e47fef8b4", "media": "photo", "latitude": "0", "id": "4036295", "tags": "newzealand nz cathedralcove"}, {"datetaken": "2005-05-08 08:41:44", "license": "3", "title": "Gewestdag 2005 (1)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16636052_1781e4aa25_o.jpg", "secret": "1781e4aa25", "media": "photo", "latitude": "0", "id": "16636052", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 08:42:02", "license": "3", "title": "Gewestdag 2005 (2)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16635835_c172bf187d_o.jpg", "secret": "c172bf187d", "media": "photo", "latitude": "0", "id": "16635835", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 11:24:17", "license": "3", "title": "Gewestdag 2005 (3)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/16635852_39761e270c_o.jpg", "secret": "39761e270c", "media": "photo", "latitude": "0", "id": "16635852", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 11:24:36", "license": "3", "title": "Gewestdag 2005 (4)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16635866_2e4487253b_o.jpg", "secret": "2e4487253b", "media": "photo", "latitude": "0", "id": "16635866", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 11:24:49", "license": "3", "title": "Gewestdag 2005 (5)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16635874_b79293c4a7_o.jpg", "secret": "b79293c4a7", "media": "photo", "latitude": "0", "id": "16635874", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 11:25:34", "license": "3", "title": "Gewestdag 2005 (6)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16635886_164735c19f_o.jpg", "secret": "164735c19f", "media": "photo", "latitude": "0", "id": "16635886", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 12:55:06", "license": "3", "title": "Gewestdag 2005 (10)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16635889_6cc533ea72_o.jpg", "secret": "6cc533ea72", "media": "photo", "latitude": "0", "id": "16635889", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 12:55:19", "license": "3", "title": "Gewestdag 2005 (11)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16635897_5696abb364_o.jpg", "secret": "5696abb364", "media": "photo", "latitude": "0", "id": "16635897", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 12:55:30", "license": "3", "title": "Gewestdag 2005 (12)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16635903_f04fbcade7_o.jpg", "secret": "f04fbcade7", "media": "photo", "latitude": "0", "id": "16635903", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 13:23:17", "license": "3", "title": "Gewestdag 2005 (13)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16635914_865010dbcd_o.jpg", "secret": "865010dbcd", "media": "photo", "latitude": "0", "id": "16635914", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 13:23:31", "license": "3", "title": "Gewestdag 2005 (14)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16635926_65a0e89dac_o.jpg", "secret": "65a0e89dac", "media": "photo", "latitude": "0", "id": "16635926", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 13:44:47", "license": "3", "title": "Gewestdag 2005 (15)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16635933_dc2cd225d2_o.jpg", "secret": "dc2cd225d2", "media": "photo", "latitude": "0", "id": "16635933", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 13:45:01", "license": "3", "title": "Gewestdag 2005 (16)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16635943_1835fb0914_o.jpg", "secret": "1835fb0914", "media": "photo", "latitude": "0", "id": "16635943", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 14:04:52", "license": "3", "title": "Gewestdag 2005 (17)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16635946_f62c5b003e_o.jpg", "secret": "f62c5b003e", "media": "photo", "latitude": "0", "id": "16635946", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 14:06:25", "license": "3", "title": "Gewestdag 2005 (18)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16635961_2b85020485_o.jpg", "secret": "2b85020485", "media": "photo", "latitude": "0", "id": "16635961", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 14:06:42", "license": "3", "title": "Gewestdag 2005 (19)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16635969_25ceb02308_o.jpg", "secret": "25ceb02308", "media": "photo", "latitude": "0", "id": "16635969", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 14:17:29", "license": "3", "title": "Gewestdag 2005 (20)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/16635976_51b838da2a_o.jpg", "secret": "51b838da2a", "media": "photo", "latitude": "0", "id": "16635976", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 14:19:10", "license": "3", "title": "Gewestdag 2005 (21)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16635996_c192000dee_o.jpg", "secret": "c192000dee", "media": "photo", "latitude": "0", "id": "16635996", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 14:50:17", "license": "3", "title": "Gewestdag 2005 (22)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16636003_3218b3d69c_o.jpg", "secret": "3218b3d69c", "media": "photo", "latitude": "0", "id": "16636003", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 15:15:37", "license": "3", "title": "Gewestdag 2005 (23)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16636010_ef8ae6a975_o.jpg", "secret": "ef8ae6a975", "media": "photo", "latitude": "0", "id": "16636010", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 15:20:07", "license": "3", "title": "Gewestdag 2005 (24)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/16636020_b4f67fcaba_o.jpg", "secret": "b4f67fcaba", "media": "photo", "latitude": "0", "id": "16636020", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 15:20:35", "license": "3", "title": "Gewestdag 2005 (25)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16636029_00e8e09dcb_o.jpg", "secret": "00e8e09dcb", "media": "photo", "latitude": "0", "id": "16636029", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 17:08:52", "license": "3", "title": "Gewestdag 2005 (26)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/16636035_80cceaa3bc_o.jpg", "secret": "80cceaa3bc", "media": "photo", "latitude": "0", "id": "16636035", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2005-05-08 17:09:04", "license": "3", "title": "Gewestdag 2005 (27)", "text": "", "album_id": "397604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16636040_ee2862b25a_o.jpg", "secret": "ee2862b25a", "media": "photo", "latitude": "0", "id": "16636040", "tags": "gewestdag 2005 zee gewest lach"}, {"datetaken": "2004-06-25 10:16:50", "license": "3", "title": "Firth of Clyde", "text": "", "album_id": "72157625822567905", "longitude": "-5.033884", "url_o": "https://farm1.staticflickr.com/12/16657841_78cc028a2c_o.jpg", "secret": "78cc028a2c", "media": "photo", "latitude": "55.848758", "id": "16657841", "tags": "2004 boats scotland clyde firth pict0094"}, {"datetaken": "2004-06-25 10:23:16", "license": "3", "title": "Rothesay, Isle of Bute", "text": "", "album_id": "72157625822567905", "longitude": "-5.054397", "url_o": "https://farm1.staticflickr.com/9/16657847_2ec41ab8a2_o.jpg", "secret": "2ec41ab8a2", "media": "photo", "latitude": "55.839181", "id": "16657847", "tags": "2004 scotland bute rothesay pict0098"}, {"datetaken": "2004-06-25 12:55:46", "license": "3", "title": "Mount Stuart, Isle of Bute", "text": "", "album_id": "72157625822567905", "longitude": "-5.019035", "url_o": "https://farm1.staticflickr.com/13/16657858_f2f5f69cbf_o.jpg", "secret": "f2f5f69cbf", "media": "photo", "latitude": "55.794972", "id": "16657858", "tags": "2004 scotland stuart mount bute portecoch\u00e8re pict0101"}, {"datetaken": "2004-06-25 14:51:26", "license": "3", "title": "Grounds of Mount Stuart Isle of Bute", "text": "", "album_id": "72157625822567905", "longitude": "-5.019035", "url_o": "https://farm1.staticflickr.com/13/16657873_b2cc317266_o.jpg", "secret": "b2cc317266", "media": "photo", "latitude": "55.794972", "id": "16657873", "tags": "2004 scotland bute isleofbute mountstuart pict0105"}, {"datetaken": "2004-06-25 14:53:51", "license": "3", "title": "Firth of Clyde", "text": "", "album_id": "72157625822567905", "longitude": "-5.019035", "url_o": "https://farm1.staticflickr.com/12/16657880_474486f55a_o.jpg", "secret": "474486f55a", "media": "photo", "latitude": "55.794972", "id": "16657880", "tags": "2004 scotland clyde bute pict0107"}, {"datetaken": "2004-06-25 14:56:16", "license": "3", "title": "View across Firth of Clyde from Mount Stuart, Isle of Bute", "text": "", "album_id": "72157625822567905", "longitude": "-5.019035", "url_o": "https://farm1.staticflickr.com/11/16657893_7dbf436296_o.jpg", "secret": "7dbf436296", "media": "photo", "latitude": "55.794972", "id": "16657893", "tags": "2004 scotland clyde bute firthofclyde mountstuart pict0108"}, {"datetaken": "2004-06-25 15:08:35", "license": "3", "title": "Firth of Clyde", "text": "", "album_id": "72157625822567905", "longitude": "-5.019035", "url_o": "https://farm1.staticflickr.com/10/16657899_073ad696ac_o.jpg", "secret": "073ad696ac", "media": "photo", "latitude": "55.794972", "id": "16657899", "tags": "2004 scotland clyde argyll firth bute pict0112"}, {"datetaken": "2004-06-25 15:12:24", "license": "3", "title": "Firth of Clyde", "text": "", "album_id": "72157625822567905", "longitude": "-5.019035", "url_o": "https://farm1.staticflickr.com/12/16657907_0eceb43997_o.jpg", "secret": "0eceb43997", "media": "photo", "latitude": "55.794972", "id": "16657907", "tags": "2004 scotland clyde firth bute pict0113"}, {"datetaken": "2004-06-25 15:15:26", "license": "3", "title": "Firth of Clyde", "text": "", "album_id": "72157625822567905", "longitude": "-5.019035", "url_o": "https://farm1.staticflickr.com/11/16657912_f115883c3c_o.jpg", "secret": "f115883c3c", "media": "photo", "latitude": "55.794972", "id": "16657912", "tags": "2004 scotland clyde bute pict0114"}, {"datetaken": "2004-06-25 16:09:25", "license": "3", "title": "Stravanan Bay, Isle of Bute", "text": "", "album_id": "72157625822567905", "longitude": "-5.062036", "url_o": "https://farm1.staticflickr.com/13/16657923_6833bf61f5_o.jpg", "secret": "6833bf61f5", "media": "photo", "latitude": "55.759939", "id": "16657923", "tags": "2004 scotland bute isleofbute pict0119 stravananbay"}, {"datetaken": "2004-06-25 16:17:59", "license": "3", "title": "Stravanan Bay, Isle of Bute", "text": "", "album_id": "72157625822567905", "longitude": "-5.062036", "url_o": "https://farm1.staticflickr.com/11/16657927_787f1bd10c_o.jpg", "secret": "787f1bd10c", "media": "photo", "latitude": "55.759939", "id": "16657927", "tags": "2004 scotland bute isleofbute pict0123 stravananbay"}, {"datetaken": "2004-06-25 16:20:22", "license": "3", "title": "Stravanan Bay, Isle of Bute", "text": "", "album_id": "72157625822567905", "longitude": "-5.062036", "url_o": "https://farm1.staticflickr.com/13/16657936_cbd4da5642_o.jpg", "secret": "cbd4da5642", "media": "photo", "latitude": "55.759939", "id": "16657936", "tags": "2004 scotland bute isleofbute pict0126 stravananbay"}, {"datetaken": "2004-06-25 16:46:22", "license": "3", "title": "Rothesay", "text": "", "album_id": "72157625822567905", "longitude": "-5.054397", "url_o": "https://farm1.staticflickr.com/14/16657949_239e48e32c_o.jpg", "secret": "239e48e32c", "media": "photo", "latitude": "55.839181", "id": "16657949", "tags": "2004 scotland bute rothesay pict0128"}, {"datetaken": "2007-07-07 04:36:59", "license": "3", "title": "FortKochi", "text": "", "album_id": "72157600690249881", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1026/742949984_a395beb6da_o.jpg", "secret": "425ea1dd0a", "media": "photo", "latitude": "0", "id": "742949984", "tags": ""}, {"datetaken": "2007-07-07 04:37:00", "license": "3", "title": "Palace", "text": "", "album_id": "72157600690249881", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1320/742085419_456845ca04_o.jpg", "secret": "652a06f774", "media": "photo", "latitude": "0", "id": "742085419", "tags": ""}, {"datetaken": "2007-07-07 04:37:01", "license": "3", "title": "Sinagogue", "text": "", "album_id": "72157600690249881", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1343/742950228_d3fc9f158c_o.jpg", "secret": "4fed50d9c8", "media": "photo", "latitude": "0", "id": "742950228", "tags": ""}, {"datetaken": "2007-07-07 04:37:03", "license": "3", "title": "Sinagogue2", "text": "", "album_id": "72157600690249881", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1244/742085703_76e00a2f05_o.jpg", "secret": "65720c39df", "media": "photo", "latitude": "0", "id": "742085703", "tags": ""}, {"datetaken": "2007-07-07 04:37:04", "license": "3", "title": "beach2", "text": "", "album_id": "72157600690249881", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1285/742085823_a48527cec1_o.jpg", "secret": "6a2a667c53", "media": "photo", "latitude": "0", "id": "742085823", "tags": ""}, {"datetaken": "2007-07-07 04:37:05", "license": "3", "title": "beach3", "text": "", "album_id": "72157600690249881", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1024/742950634_decafcf77e_o.jpg", "secret": "2aa68ac32b", "media": "photo", "latitude": "0", "id": "742950634", "tags": ""}, {"datetaken": "2007-07-07 04:37:06", "license": "3", "title": "beach4", "text": "", "album_id": "72157600690249881", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1315/742086095_4bca57e455_o.jpg", "secret": "a4ca854638", "media": "photo", "latitude": "0", "id": "742086095", "tags": ""}, {"datetaken": "2007-07-07 04:37:07", "license": "3", "title": "beach5", "text": "", "album_id": "72157600690249881", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1152/742950858_96819f10a7_o.jpg", "secret": "65799b03e1", "media": "photo", "latitude": "0", "id": "742950858", "tags": ""}, {"datetaken": "2007-07-07 04:37:08", "license": "3", "title": "boat", "text": "", "album_id": "72157600690249881", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1068/742950954_fe77e03620_o.jpg", "secret": "14a63bffbe", "media": "photo", "latitude": "0", "id": "742950954", "tags": ""}, {"datetaken": "2007-07-07 04:37:10", "license": "3", "title": "lightHouse", "text": "", "album_id": "72157600690249881", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1420/742951164_882f05aeda_o.jpg", "secret": "72c7adbaa1", "media": "photo", "latitude": "0", "id": "742951164", "tags": ""}, {"datetaken": "2007-07-07 04:37:11", "license": "3", "title": "ship", "text": "", "album_id": "72157600690249881", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1246/742951312_8d01921ad1_o.jpg", "secret": "d928ca3521", "media": "photo", "latitude": "0", "id": "742951312", "tags": ""}, {"datetaken": "2007-07-07 04:37:13", "license": "3", "title": "toMattancherry", "text": "", "album_id": "72157600690249881", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1352/742086823_52095ef893_o.jpg", "secret": "fcc3c1ad54", "media": "photo", "latitude": "0", "id": "742086823", "tags": ""}, {"datetaken": "2007-07-07 04:37:14", "license": "3", "title": "Beach-puthuvype", "text": "", "album_id": "72157600690249881", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1190/742951634_fd49f38402_o.jpg", "secret": "2a5aae103f", "media": "photo", "latitude": "0", "id": "742951634", "tags": ""}, {"datetaken": "2007-06-15 13:04:19", "license": "2", "title": "4x4 Camp!", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/221/550213852_7d5d13d281_o.jpg", "secret": "bdd2d90b21", "media": "photo", "latitude": "0", "id": "550213852", "tags": ""}, {"datetaken": "2007-06-15 13:04:20", "license": "2", "title": "A Creek", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/221/550213930_95df3c44ec_o.jpg", "secret": "b3e9d11693", "media": "photo", "latitude": "0", "id": "550213930", "tags": ""}, {"datetaken": "2007-06-15 13:04:22", "license": "2", "title": "Arty Farty", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/213/550214000_3e61e4a35f_o.jpg", "secret": "35d565fa06", "media": "photo", "latitude": "0", "id": "550214000", "tags": ""}, {"datetaken": "2007-06-15 13:04:22", "license": "2", "title": "Basin Lake", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/550214044_20c3f7c620_o.jpg", "secret": "4eaadcb3cf", "media": "photo", "latitude": "0", "id": "550214044", "tags": ""}, {"datetaken": "2007-06-15 13:04:23", "license": "2", "title": "And again", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/238/550214064_a18c444548_o.jpg", "secret": "f05b1b1330", "media": "photo", "latitude": "0", "id": "550214064", "tags": ""}, {"datetaken": "2007-06-15 13:04:23", "license": "2", "title": "Our Group", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/550214096_db02fbe969_o.jpg", "secret": "9ee90de442", "media": "photo", "latitude": "0", "id": "550214096", "tags": ""}, {"datetaken": "2007-06-15 13:04:24", "license": "2", "title": "Camping fun", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/190/550214122_a4f9e60020_o.jpg", "secret": "dfc2d3b4ca", "media": "photo", "latitude": "0", "id": "550214122", "tags": ""}, {"datetaken": "2007-06-15 13:04:24", "license": "2", "title": "Champagne pools", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/234/550214154_91fa13e04d_o.jpg", "secret": "ed99e8ad9b", "media": "photo", "latitude": "0", "id": "550214154", "tags": ""}, {"datetaken": "2007-06-15 13:04:25", "license": "2", "title": "Cooking", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/238/550214210_7db1a4767f_o.jpg", "secret": "9e7dda9079", "media": "photo", "latitude": "0", "id": "550214210", "tags": ""}, {"datetaken": "2007-06-15 13:04:26", "license": "2", "title": "Dingo sign", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/196/550214234_885653352f_o.jpg", "secret": "5e09f26db9", "media": "photo", "latitude": "0", "id": "550214234", "tags": ""}, {"datetaken": "2007-06-15 13:04:27", "license": "2", "title": "Indian Head", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/550214322_dfbe2c273c_o.jpg", "secret": "aaf4d79c44", "media": "photo", "latitude": "0", "id": "550214322", "tags": ""}, {"datetaken": "2007-06-15 13:04:28", "license": "2", "title": "Lake McKenzie", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/212/550214346_bc8f3a0695_o.jpg", "secret": "b301c592da", "media": "photo", "latitude": "0", "id": "550214346", "tags": ""}, {"datetaken": "2007-06-15 13:04:29", "license": "2", "title": "Mr Sandman", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/242/550214378_905512174b_o.jpg", "secret": "f261fa6ea7", "media": "photo", "latitude": "0", "id": "550214378", "tags": ""}, {"datetaken": "2007-06-15 13:04:29", "license": "2", "title": "Malcolm again", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/550214398_5543674659_o.jpg", "secret": "dd0e8af431", "media": "photo", "latitude": "0", "id": "550214398", "tags": ""}, {"datetaken": "2007-06-15 13:04:30", "license": "2", "title": "me in lake", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/221/550214432_79d9cce97b_o.jpg", "secret": "c62e12fdd7", "media": "photo", "latitude": "0", "id": "550214432", "tags": ""}, {"datetaken": "2007-06-15 13:04:30", "license": "2", "title": "Meheno ship wreck", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/214/550214456_fecd56dba6_o.jpg", "secret": "cf1e5d4f01", "media": "photo", "latitude": "0", "id": "550214456", "tags": ""}, {"datetaken": "2007-06-15 13:04:31", "license": "2", "title": "Close up", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/213/550214536_0ba0d35498_o.jpg", "secret": "f6fe01430c", "media": "photo", "latitude": "0", "id": "550214536", "tags": ""}, {"datetaken": "2007-06-15 13:04:32", "license": "2", "title": "Full view", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/197/550214598_6fefd595b0_o.jpg", "secret": "7baaa1b3d3", "media": "photo", "latitude": "0", "id": "550214598", "tags": ""}, {"datetaken": "2007-06-15 13:04:33", "license": "2", "title": "Naughty Malcolm", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/218/550214634_cd80472aa5_o.jpg", "secret": "2d7531b3e1", "media": "photo", "latitude": "0", "id": "550214634", "tags": ""}, {"datetaken": "2007-06-15 13:04:35", "license": "2", "title": "Noosa", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/550214768_b46baa038a_o.jpg", "secret": "25bd884e4e", "media": "photo", "latitude": "0", "id": "550214768", "tags": ""}, {"datetaken": "2007-06-15 13:04:35", "license": "2", "title": "Pelicans", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/234/550214812_5957349609_o.jpg", "secret": "cc40c2ae50", "media": "photo", "latitude": "0", "id": "550214812", "tags": ""}, {"datetaken": "2007-06-15 13:04:36", "license": "2", "title": "The Pinnacles", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/234/550214850_f0114927ee_o.jpg", "secret": "41fc3d7360", "media": "photo", "latitude": "0", "id": "550214850", "tags": ""}, {"datetaken": "2007-06-15 13:04:37", "license": "2", "title": "Plane on beach", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/218/550214874_040388a82a_o.jpg", "secret": "03f06da8ab", "media": "photo", "latitude": "0", "id": "550214874", "tags": ""}, {"datetaken": "2007-06-15 13:04:37", "license": "2", "title": "Shopping list", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/220/550214904_e3587f2bcc_o.jpg", "secret": "5e78cda4b7", "media": "photo", "latitude": "0", "id": "550214904", "tags": ""}, {"datetaken": "2007-06-15 13:04:38", "license": "2", "title": "Suspicious Afghan", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/189/550214934_fb0e2e8fa7_o.jpg", "secret": "330b7008ce", "media": "photo", "latitude": "0", "id": "550214934", "tags": ""}, {"datetaken": "2007-06-15 13:04:38", "license": "2", "title": "The Runway", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/225/550214992_a874839637_o.jpg", "secret": "b549ca36c3", "media": "photo", "latitude": "0", "id": "550214992", "tags": ""}, {"datetaken": "2007-06-15 13:04:39", "license": "2", "title": "Campfire", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/226/550215032_900d41a5e2_o.jpg", "secret": "95e8c9abda", "media": "photo", "latitude": "0", "id": "550215032", "tags": ""}, {"datetaken": "2007-06-15 13:04:40", "license": "2", "title": "The Dunes", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/214/550215074_60067ba333_o.jpg", "secret": "557f9a9f93", "media": "photo", "latitude": "0", "id": "550215074", "tags": ""}, {"datetaken": "2007-06-15 13:04:40", "license": "2", "title": "Ivar in control", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/254/550215116_519eba94ce_o.jpg", "secret": "6baa3b2b98", "media": "photo", "latitude": "0", "id": "550215116", "tags": ""}, {"datetaken": "2007-06-15 13:04:41", "license": "2", "title": "Ivar preparing for a scalping", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/550215172_b1b8abb7b4_o.jpg", "secret": "d6b1138add", "media": "photo", "latitude": "0", "id": "550215172", "tags": ""}, {"datetaken": "2007-06-15 13:04:41", "license": "2", "title": "The end result", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/199/550215198_3baf36ae2f_o.jpg", "secret": "8325d81699", "media": "photo", "latitude": "0", "id": "550215198", "tags": ""}, {"datetaken": "2007-06-15 13:04:44", "license": "2", "title": "Malcolm and Ivar", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/234/550215362_fbf5c2d224_o.jpg", "secret": "4f98cfcc03", "media": "photo", "latitude": "0", "id": "550215362", "tags": ""}, {"datetaken": "2007-06-15 13:04:45", "license": "2", "title": "Tim drinking", "text": "", "album_id": "72157600361089862", "longitude": "0", "url_o": "https://farm1.staticflickr.com/190/550215382_190bd4f62d_o.jpg", "secret": "4eb5a97a34", "media": "photo", "latitude": "0", "id": "550215382", "tags": ""}, {"datetaken": "2004-01-01 07:00:58", "license": "3", "title": "p331.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1226/740982963_f8d67a4cdc_o.jpg", "secret": "5610abdf2e", "media": "photo", "latitude": "0", "id": "740982963", "tags": ""}, {"datetaken": "2004-01-01 09:38:35", "license": "3", "title": "p332.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1380/741849760_47311e781c_o.jpg", "secret": "14e56871cb", "media": "photo", "latitude": "0", "id": "741849760", "tags": ""}, {"datetaken": "2004-01-01 11:47:41", "license": "3", "title": "p333.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1188/741847758_ce3a805a7e_o.jpg", "secret": "e18b5dcb6f", "media": "photo", "latitude": "0", "id": "741847758", "tags": ""}, {"datetaken": "2004-01-01 12:55:31", "license": "3", "title": "p334.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1227/740981999_0c59070f1f_o.jpg", "secret": "606ec092d2", "media": "photo", "latitude": "0", "id": "740981999", "tags": ""}, {"datetaken": "2004-01-01 13:06:41", "license": "3", "title": "p335.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1165/741850688_c1c225b1da_o.jpg", "secret": "480201f386", "media": "photo", "latitude": "0", "id": "741850688", "tags": ""}, {"datetaken": "2004-01-01 15:36:55", "license": "3", "title": "p336.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1200/740984311_42f7618d2a_o.jpg", "secret": "d33d9a0fbd", "media": "photo", "latitude": "0", "id": "740984311", "tags": ""}, {"datetaken": "2004-01-01 16:10:11", "license": "3", "title": "p337.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1298/741848418_f6a44f4f98_o.jpg", "secret": "bb5ff6b5f4", "media": "photo", "latitude": "0", "id": "741848418", "tags": ""}, {"datetaken": "2004-01-02 09:21:41", "license": "3", "title": "p343.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1340/741849064_2c95fee2d3_o.jpg", "secret": "0cf7d01577", "media": "photo", "latitude": "0", "id": "741849064", "tags": ""}, {"datetaken": "2004-01-02 10:09:08", "license": "3", "title": "p338.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1417/741847648_59435d788b_o.jpg", "secret": "6e185fd735", "media": "photo", "latitude": "0", "id": "741847648", "tags": ""}, {"datetaken": "2004-01-02 10:18:31", "license": "3", "title": "p344.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1013/740985133_e6aa648098_o.jpg", "secret": "3c982c8ad2", "media": "photo", "latitude": "0", "id": "740985133", "tags": ""}, {"datetaken": "2004-01-02 10:58:27", "license": "3", "title": "p345.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1102/740984985_1c6eb66979_o.jpg", "secret": "13a0e7d3a6", "media": "photo", "latitude": "0", "id": "740984985", "tags": ""}, {"datetaken": "2004-01-02 11:11:47", "license": "3", "title": "p339.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1103/741848230_ae2c026cf5_o.jpg", "secret": "557d670630", "media": "photo", "latitude": "0", "id": "741848230", "tags": ""}, {"datetaken": "2004-01-02 11:59:51", "license": "3", "title": "p349.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1107/741848932_18546c8f36_o.jpg", "secret": "cf4e57516a", "media": "photo", "latitude": "0", "id": "741848932", "tags": ""}, {"datetaken": "2004-01-02 12:00:20", "license": "3", "title": "p340.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1124/740983595_dd9fbda9b6_o.jpg", "secret": "5549e9e41a", "media": "photo", "latitude": "0", "id": "740983595", "tags": ""}, {"datetaken": "2004-01-02 12:01:48", "license": "3", "title": "p350.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1304/741848668_179e3b5901_o.jpg", "secret": "5f9ad638e9", "media": "photo", "latitude": "0", "id": "741848668", "tags": ""}, {"datetaken": "2004-01-02 12:03:08", "license": "3", "title": "p341.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1261/741849520_6b65902461_o.jpg", "secret": "d2163a70c9", "media": "photo", "latitude": "0", "id": "741849520", "tags": ""}, {"datetaken": "2004-01-02 12:10:31", "license": "3", "title": "p342.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1040/741847434_429cde47b4_o.jpg", "secret": "de5796da4e", "media": "photo", "latitude": "0", "id": "741847434", "tags": ""}, {"datetaken": "2004-01-02 12:12:18", "license": "3", "title": "p355.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1014/740986147_4616221801_o.jpg", "secret": "e583681809", "media": "photo", "latitude": "0", "id": "740986147", "tags": ""}, {"datetaken": "2004-01-02 12:51:22", "license": "3", "title": "p356.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1383/740983235_8bd9420c65_o.jpg", "secret": "79ebb140f9", "media": "photo", "latitude": "0", "id": "740983235", "tags": ""}, {"datetaken": "2004-01-02 13:00:35", "license": "3", "title": "p351.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1402/741849918_566e154f4b_o.jpg", "secret": "cba21c4062", "media": "photo", "latitude": "0", "id": "741849918", "tags": ""}, {"datetaken": "2004-01-02 13:00:42", "license": "3", "title": "p352.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1353/741850080_9316e1cfc7_o.jpg", "secret": "3f5f447d50", "media": "photo", "latitude": "0", "id": "741850080", "tags": ""}, {"datetaken": "2004-01-02 13:12:15", "license": "3", "title": "p353.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1077/740981901_5db8a99eef_o.jpg", "secret": "2a2924845a", "media": "photo", "latitude": "0", "id": "740981901", "tags": ""}, {"datetaken": "2004-01-02 13:23:56", "license": "3", "title": "p354.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1326/741848784_5845540fdf_o.jpg", "secret": "8ef2ba56e1", "media": "photo", "latitude": "0", "id": "741848784", "tags": ""}, {"datetaken": "2004-01-02 13:44:58", "license": "3", "title": "p357.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1320/740982585_a52e298ef8_o.jpg", "secret": "85f3d96c18", "media": "photo", "latitude": "0", "id": "740982585", "tags": ""}, {"datetaken": "2004-01-02 13:48:44", "license": "3", "title": "p358.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1322/740982677_ad51766736_o.jpg", "secret": "76c4fbf2b9", "media": "photo", "latitude": "0", "id": "740982677", "tags": ""}, {"datetaken": "2004-01-02 13:52:13", "license": "3", "title": "p359.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1047/740983723_b5fb42d253_o.jpg", "secret": "ac5079adfb", "media": "photo", "latitude": "0", "id": "740983723", "tags": ""}, {"datetaken": "2004-01-02 14:24:38", "license": "3", "title": "p360.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1007/741848120_45891637a2_o.jpg", "secret": "03ea984bcd", "media": "photo", "latitude": "0", "id": "741848120", "tags": ""}, {"datetaken": "2004-01-02 15:30:10", "license": "3", "title": "p361.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1219/741850238_8d4b5cd578_o.jpg", "secret": "4fbaad4c66", "media": "photo", "latitude": "0", "id": "741850238", "tags": ""}, {"datetaken": "2004-01-02 15:32:35", "license": "3", "title": "p362.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1054/741846986_d714ab8946_o.jpg", "secret": "2ad1c9ebf8", "media": "photo", "latitude": "0", "id": "741846986", "tags": ""}, {"datetaken": "2004-01-02 16:46:57", "license": "3", "title": "p363.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1166/740983833_70a0c1c128_o.jpg", "secret": "b435876bb5", "media": "photo", "latitude": "0", "id": "740983833", "tags": ""}, {"datetaken": "2004-01-02 16:51:19", "license": "3", "title": "p364.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1344/740985233_91ae7a22c1_o.jpg", "secret": "2f2fbe36a9", "media": "photo", "latitude": "0", "id": "740985233", "tags": ""}, {"datetaken": "2004-01-02 17:11:50", "license": "3", "title": "p365.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1295/740983065_fc042855ff_o.jpg", "secret": "c08e7ad998", "media": "photo", "latitude": "0", "id": "740983065", "tags": ""}, {"datetaken": "2004-01-03 06:34:18", "license": "3", "title": "p366.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1328/740982845_c34fffa000_o.jpg", "secret": "95c6078a4c", "media": "photo", "latitude": "0", "id": "740982845", "tags": ""}, {"datetaken": "2004-01-03 06:34:33", "license": "3", "title": "p367.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1416/741850486_4db462a3d8_o.jpg", "secret": "8ac584a601", "media": "photo", "latitude": "0", "id": "741850486", "tags": ""}, {"datetaken": "2004-01-03 06:35:22", "license": "3", "title": "p368.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1110/741849646_2cc0dd5b26_o.jpg", "secret": "f3171106b6", "media": "photo", "latitude": "0", "id": "741849646", "tags": ""}, {"datetaken": "2004-01-03 06:38:21", "license": "3", "title": "p369.jpg", "text": "", "album_id": "72157600688361277", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1251/740986333_dd16fabc05_o.jpg", "secret": "4d98528ee7", "media": "photo", "latitude": "0", "id": "740986333", "tags": ""}, {"datetaken": "2007-08-05 06:05:40", "license": "3", "title": "IMG_0968.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1143/1016834124_4558dc3bc9_o.jpg", "secret": "63ca4d120d", "media": "photo", "latitude": "0", "id": "1016834124", "tags": ""}, {"datetaken": "2007-08-05 06:05:40", "license": "3", "title": "Santa Cruz- 43.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1024/1015974221_c78c827130_o.jpg", "secret": "d51366f60b", "media": "photo", "latitude": "0", "id": "1015974221", "tags": ""}, {"datetaken": "2007-08-05 06:05:41", "license": "3", "title": "CA 1- Second Beach 3.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1422/1016834306_f80bbce953_o.jpg", "secret": "e539ce6aff", "media": "photo", "latitude": "0", "id": "1016834306", "tags": ""}, {"datetaken": "2007-08-05 06:05:42", "license": "3", "title": "Mimi ran- 6.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1055/1015974421_1b35e49f29_o.jpg", "secret": "2a1644a320", "media": "photo", "latitude": "0", "id": "1015974421", "tags": ""}, {"datetaken": "2007-08-05 06:05:43", "license": "3", "title": "Mimi ran- 6.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1105/1015974527_9517bd22b9_o.jpg", "secret": "3a5a23767d", "media": "photo", "latitude": "0", "id": "1015974527", "tags": ""}, {"datetaken": "2007-08-05 06:05:44", "license": "3", "title": "CA 1- First Beach 6.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1432/1016834586_15fcd2d660_o.jpg", "secret": "0694bb1967", "media": "photo", "latitude": "0", "id": "1016834586", "tags": ""}, {"datetaken": "2007-08-05 06:05:45", "license": "3", "title": "CA 1- First Beach 4.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1041/1015974711_21ee160ab4_o.jpg", "secret": "24bc0c5798", "media": "photo", "latitude": "0", "id": "1015974711", "tags": ""}, {"datetaken": "2007-08-05 06:05:45", "license": "3", "title": "San Fran 1.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1366/1015974795_a646c3f1ba_o.jpg", "secret": "d70023f635", "media": "photo", "latitude": "0", "id": "1015974795", "tags": ""}, {"datetaken": "2007-08-05 06:05:46", "license": "3", "title": "CA 1- Highway 84 2.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1204/1016834862_39ece2b7b7_o.jpg", "secret": "d79a6f5719", "media": "photo", "latitude": "0", "id": "1016834862", "tags": ""}, {"datetaken": "2007-08-05 06:05:47", "license": "3", "title": "CA 1- Second Beach crazy.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1006/1015974989_fa826cadde_o.jpg", "secret": "ff6f187b1c", "media": "photo", "latitude": "0", "id": "1015974989", "tags": ""}, {"datetaken": "2007-08-05 06:05:48", "license": "3", "title": "Santa Cruz- Cross Decision.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1402/1015975139_915f716208_o.jpg", "secret": "f345a2130f", "media": "photo", "latitude": "0", "id": "1015975139", "tags": ""}, {"datetaken": "2007-08-05 06:05:49", "license": "3", "title": "CA 1- Highway 84 Bikes.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1045/1016835232_faa630e4dd_o.jpg", "secret": "185dec1d4f", "media": "photo", "latitude": "0", "id": "1016835232", "tags": ""}, {"datetaken": "2007-08-05 06:05:50", "license": "3", "title": "CA 1- First Beach Wading.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1062/1016835326_1135eb5898_o.jpg", "secret": "4463ff240d", "media": "photo", "latitude": "0", "id": "1016835326", "tags": ""}, {"datetaken": "2007-08-05 06:05:51", "license": "3", "title": "CA 1- First Beach 7.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1237/1015975397_b046b0ec64_o.jpg", "secret": "a62c943897", "media": "photo", "latitude": "0", "id": "1015975397", "tags": ""}, {"datetaken": "2007-08-05 06:05:51", "license": "3", "title": "San Fran- 5.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1365/1016835486_fcb9bfec3a_o.jpg", "secret": "d4289f9371", "media": "photo", "latitude": "0", "id": "1016835486", "tags": ""}, {"datetaken": "2007-08-05 06:05:52", "license": "3", "title": "Santa Cruz- 38.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1218/1016835552_96629632b4_o.jpg", "secret": "7507dd6218", "media": "photo", "latitude": "0", "id": "1016835552", "tags": ""}, {"datetaken": "2007-08-05 06:05:53", "license": "3", "title": "Santa Cruz- 41.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1085/1015975613_6918bcff7a_o.jpg", "secret": "77f62c77d5", "media": "photo", "latitude": "0", "id": "1015975613", "tags": ""}, {"datetaken": "2007-08-05 06:05:53", "license": "3", "title": "UC Davis- Ashley.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1051/1015975703_beab23c8d5_o.jpg", "secret": "ad91b4d41f", "media": "photo", "latitude": "0", "id": "1015975703", "tags": ""}, {"datetaken": "2007-08-05 06:05:54", "license": "3", "title": "Santa Cruz- 35.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1197/1015975795_dd81261c90_o.jpg", "secret": "1068cfb137", "media": "photo", "latitude": "0", "id": "1015975795", "tags": ""}, {"datetaken": "2007-08-05 06:05:55", "license": "3", "title": "CA 1- Second Beach wet.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1066/1016835900_7b1526694a_o.jpg", "secret": "8f5e9fc460", "media": "photo", "latitude": "0", "id": "1016835900", "tags": ""}, {"datetaken": "2007-08-05 06:05:56", "license": "3", "title": "Salinas- Steinbecks house 2.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1188/1016835968_fa27bb4115_o.jpg", "secret": "e2dcfdd43d", "media": "photo", "latitude": "0", "id": "1016835968", "tags": ""}, {"datetaken": "2007-08-05 06:05:56", "license": "3", "title": "San Fran 2.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1245/1016836068_870f05f850_o.jpg", "secret": "a2771da771", "media": "photo", "latitude": "0", "id": "1016836068", "tags": ""}, {"datetaken": "2007-08-05 06:05:57", "license": "3", "title": "Santa Cruz- 31.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1291/1015976145_7987503475_o.jpg", "secret": "2cbed78fd5", "media": "photo", "latitude": "0", "id": "1015976145", "tags": ""}, {"datetaken": "2007-08-05 06:05:58", "license": "3", "title": "Santa Cruz- 24.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1011/1015976231_a4ea1eed42_o.jpg", "secret": "d6f6a1a5c5", "media": "photo", "latitude": "0", "id": "1015976231", "tags": ""}, {"datetaken": "2007-08-05 06:05:58", "license": "3", "title": "CA 1- Second Beach 4.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1211/1015976333_bb55cac92c_o.jpg", "secret": "a4ea1eed42", "media": "photo", "latitude": "0", "id": "1015976333", "tags": ""}, {"datetaken": "2007-08-05 06:05:59", "license": "3", "title": "San Fran- 4.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1041/1015976415_f9dfc4f8c7_o.jpg", "secret": "888e29b64c", "media": "photo", "latitude": "0", "id": "1015976415", "tags": ""}, {"datetaken": "2007-08-05 06:06:00", "license": "3", "title": "CA 1- Second Beach 2.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1159/1015976507_c9d1cd3458_o.jpg", "secret": "f847d75b12", "media": "photo", "latitude": "0", "id": "1015976507", "tags": ""}, {"datetaken": "2007-08-05 06:06:00", "license": "3", "title": "CA 1- Highway 84 5.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1044/1015976591_f9ecf26d06_o.jpg", "secret": "0b6404cf78", "media": "photo", "latitude": "0", "id": "1015976591", "tags": ""}, {"datetaken": "2007-08-05 06:06:01", "license": "3", "title": "UC Davis- so cute.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1271/1015976681_3c9a6ba621_o.jpg", "secret": "aaeacc84bd", "media": "photo", "latitude": "0", "id": "1015976681", "tags": ""}, {"datetaken": "2007-08-05 06:06:02", "license": "3", "title": "Santa Cruz- 33.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1379/1015976735_8b719b5e55_o.jpg", "secret": "1e6c838e3b", "media": "photo", "latitude": "0", "id": "1015976735", "tags": ""}, {"datetaken": "2007-08-05 06:06:03", "license": "3", "title": "Cross 2.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1355/1015976821_6d44db714b_o.jpg", "secret": "ebf901115f", "media": "photo", "latitude": "0", "id": "1015976821", "tags": ""}, {"datetaken": "2007-08-05 06:06:03", "license": "3", "title": "San Fran- 6.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1138/1015976889_233da7264d_o.jpg", "secret": "e0ae19e501", "media": "photo", "latitude": "0", "id": "1015976889", "tags": ""}, {"datetaken": "2007-08-05 06:06:04", "license": "3", "title": "CA 1- Highway 84 6.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1421/1015976945_70cb68e048_o.jpg", "secret": "a3d3d57805", "media": "photo", "latitude": "0", "id": "1015976945", "tags": ""}, {"datetaken": "2007-08-05 06:06:05", "license": "3", "title": "UC Davis- awwww.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1098/1015977059_62d10ca8f4_o.jpg", "secret": "d1c9ae4189", "media": "photo", "latitude": "0", "id": "1015977059", "tags": ""}, {"datetaken": "2007-08-05 06:06:06", "license": "3", "title": "Santa Cruz- 30.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1018/1016837088_fe3bf4e2ca_o.jpg", "secret": "9daf4009f3", "media": "photo", "latitude": "0", "id": "1016837088", "tags": ""}, {"datetaken": "2007-08-05 06:06:06", "license": "3", "title": "CA 1- Second Beach.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1287/1015977259_9f9f03a8b5_o.jpg", "secret": "8cd77af4b4", "media": "photo", "latitude": "0", "id": "1015977259", "tags": ""}, {"datetaken": "2007-08-05 06:06:07", "license": "3", "title": "CA 1- First Beach.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1200/1016837270_eb0398c36a_o.jpg", "secret": "e873c7c11d", "media": "photo", "latitude": "0", "id": "1016837270", "tags": ""}, {"datetaken": "2007-08-05 06:06:08", "license": "3", "title": "CA 1- First Beach Wading 2.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1094/1016837360_9e348f7e30_o.jpg", "secret": "5a25bdd50a", "media": "photo", "latitude": "0", "id": "1016837360", "tags": ""}, {"datetaken": "2007-08-05 06:06:09", "license": "3", "title": "UC Davis- Nice hat.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1312/1015977511_aaf0e9c1b0_o.jpg", "secret": "b2fafab406", "media": "photo", "latitude": "0", "id": "1015977511", "tags": ""}, {"datetaken": "2007-08-05 06:06:09", "license": "3", "title": "Santa Cruz- 22.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1216/1016837512_a7ad7333b5_o.jpg", "secret": "d48919046c", "media": "photo", "latitude": "0", "id": "1016837512", "tags": ""}, {"datetaken": "2007-08-05 06:06:10", "license": "3", "title": "Santa Cruz- Tattoo Shop.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1160/1016837602_2eabbd885a_o.jpg", "secret": "15fff206fc", "media": "photo", "latitude": "0", "id": "1016837602", "tags": ""}, {"datetaken": "2007-08-05 06:06:11", "license": "3", "title": "UC Davis- Who took that....jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1106/1015977761_4fca1a3f7b_o.jpg", "secret": "7196df7dcb", "media": "photo", "latitude": "0", "id": "1015977761", "tags": ""}, {"datetaken": "2007-08-05 06:06:12", "license": "3", "title": "UC Davis- Cho 1.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1362/1016837808_eb7dcb57fc_o.jpg", "secret": "9426757b01", "media": "photo", "latitude": "0", "id": "1016837808", "tags": ""}, {"datetaken": "2007-08-05 06:06:13", "license": "3", "title": "Santa Cruz- 40.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1296/1016837906_deca8c24d1_o.jpg", "secret": "05b691394a", "media": "photo", "latitude": "0", "id": "1016837906", "tags": ""}, {"datetaken": "2007-08-05 06:06:14", "license": "3", "title": "Salinas- Steinbecks house.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1236/1016838046_4d230bab4a_o.jpg", "secret": "cd21897ed1", "media": "photo", "latitude": "0", "id": "1016838046", "tags": ""}, {"datetaken": "2007-08-05 06:06:14", "license": "3", "title": "Santa Cruz- 28.jpg", "text": "", "album_id": "72157601233565483", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1360/1015978127_2b377b1f30_o.jpg", "secret": "747e8246d1", "media": "photo", "latitude": "0", "id": "1015978127", "tags": ""}, {"datetaken": "2004-08-22 22:49:38", "license": "4", "title": "8.22.04 004", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1032/844663236_02239e419e_o.jpg", "secret": "1a2b7677d5", "media": "photo", "latitude": "0", "id": "844663236", "tags": ""}, {"datetaken": "2004-08-22 22:50:26", "license": "4", "title": "8.22.04 005", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1030/843800977_5ebb33bf88_o.jpg", "secret": "f128de5220", "media": "photo", "latitude": "0", "id": "843800977", "tags": ""}, {"datetaken": "2004-08-22 22:51:18", "license": "4", "title": "8.22.04 006", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1024/844663858_79c68812e1_o.jpg", "secret": "c03ed4e2b9", "media": "photo", "latitude": "0", "id": "844663858", "tags": ""}, {"datetaken": "2004-08-22 22:52:29", "license": "4", "title": "8.22.04 007", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1314/844664154_e3dbc09e26_o.jpg", "secret": "40fde33c24", "media": "photo", "latitude": "0", "id": "844664154", "tags": ""}, {"datetaken": "2004-08-22 22:54:33", "license": "4", "title": "8.22.04 008", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1106/844664422_0c33c50bf8_o.jpg", "secret": "9c647e0126", "media": "photo", "latitude": "0", "id": "844664422", "tags": ""}, {"datetaken": "2004-08-22 22:54:38", "license": "4", "title": "8.22.04 009", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1077/843802111_b1d1634fcf_o.jpg", "secret": "43426845e0", "media": "photo", "latitude": "0", "id": "843802111", "tags": ""}, {"datetaken": "2004-08-22 22:56:32", "license": "4", "title": "8.22.04 010", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1293/843803805_16730ba670_o.jpg", "secret": "340aa69f27", "media": "photo", "latitude": "0", "id": "843803805", "tags": ""}, {"datetaken": "2004-08-22 22:56:38", "license": "4", "title": "8.22.04 011", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1413/844666852_30cfdd0713_o.jpg", "secret": "ce16b86326", "media": "photo", "latitude": "0", "id": "844666852", "tags": ""}, {"datetaken": "2004-08-22 22:58:18", "license": "4", "title": "8.22.04 012", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1148/844668322_41eef90ce6_o.jpg", "secret": "d08e84f6af", "media": "photo", "latitude": "0", "id": "844668322", "tags": ""}, {"datetaken": "2004-08-22 22:59:34", "license": "4", "title": "8.22.04 013", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1349/846148322_6cae20b416_o.jpg", "secret": "d005a8f665", "media": "photo", "latitude": "0", "id": "846148322", "tags": ""}, {"datetaken": "2004-08-22 22:59:38", "license": "4", "title": "8.22.04 014", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1161/843809771_e88c89c486_o.jpg", "secret": "5af76043ed", "media": "photo", "latitude": "0", "id": "843809771", "tags": ""}, {"datetaken": "2004-08-22 22:59:55", "license": "4", "title": "8.22.04 015", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1226/843809985_e99ee53d21_o.jpg", "secret": "7a75a3a963", "media": "photo", "latitude": "0", "id": "843809985", "tags": ""}, {"datetaken": "2004-08-22 22:59:58", "license": "4", "title": "8.22.04 016", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1123/844673108_48e1e6cd2b_o.jpg", "secret": "61eaeba738", "media": "photo", "latitude": "0", "id": "844673108", "tags": ""}, {"datetaken": "2004-08-22 23:24:25", "license": "4", "title": "8.22.04 017", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1249/843810529_80f1fe5bbe_o.jpg", "secret": "b9d13912c7", "media": "photo", "latitude": "0", "id": "843810529", "tags": ""}, {"datetaken": "2004-08-23 00:00:44", "license": "4", "title": "8.22.04 018", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1148/843810799_fe9611dda3_o.jpg", "secret": "7b62239b35", "media": "photo", "latitude": "0", "id": "843810799", "tags": ""}, {"datetaken": "2004-08-23 00:02:00", "license": "4", "title": "8.22.04 019", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1235/843814743_9243749d49_o.jpg", "secret": "0a8bc91aa9", "media": "photo", "latitude": "0", "id": "843814743", "tags": ""}, {"datetaken": "2004-08-23 00:08:28", "license": "4", "title": "8.22.04 020", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1069/844679248_1d4e997921_o.jpg", "secret": "ccfc4987bb", "media": "photo", "latitude": "0", "id": "844679248", "tags": ""}, {"datetaken": "2004-08-23 00:13:31", "license": "4", "title": "8.22.04 021", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1385/843816679_5cca9baf62_o.jpg", "secret": "4be99d15c3", "media": "photo", "latitude": "0", "id": "843816679", "tags": ""}, {"datetaken": "2004-08-23 00:31:19", "license": "4", "title": "8.22.04 022", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1123/844679738_09cbcae496_o.jpg", "secret": "13cddbd373", "media": "photo", "latitude": "0", "id": "844679738", "tags": ""}, {"datetaken": "2004-08-23 02:40:52", "license": "4", "title": "8.22.04 023", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1084/844679966_c3f794d5c4_o.jpg", "secret": "4bb3f4df0a", "media": "photo", "latitude": "0", "id": "844679966", "tags": ""}, {"datetaken": "2004-08-23 02:45:26", "license": "4", "title": "8.22.04 024", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1228/844680290_0f91c53ba3_o.jpg", "secret": "8fb5650ec1", "media": "photo", "latitude": "0", "id": "844680290", "tags": ""}, {"datetaken": "2004-08-23 02:51:25", "license": "4", "title": "8.22.04 025", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1403/844680526_1d813f9df3_o.jpg", "secret": "01bf321fb6", "media": "photo", "latitude": "0", "id": "844680526", "tags": ""}, {"datetaken": "2004-08-23 02:59:51", "license": "4", "title": "8.22.04 026", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1026/843817921_e516d0c8fd_o.jpg", "secret": "5b157c3f9f", "media": "photo", "latitude": "0", "id": "843817921", "tags": ""}, {"datetaken": "2004-08-23 03:00:00", "license": "4", "title": "8.22.04 027", "text": "", "album_id": "72157600883720089", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1158/844680934_bdeca90118_o.jpg", "secret": "9f4be04fcd", "media": "photo", "latitude": "0", "id": "844680934", "tags": ""}, {"datetaken": "2007-09-21 18:55:09", "license": "1", "title": "Museum", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1262/1417822317_3a4f44a928_o.jpg", "secret": "04fdb32c73", "media": "photo", "latitude": "0", "id": "1417822317", "tags": ""}, {"datetaken": "2007-09-21 18:55:10", "license": "1", "title": "beach", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1061/1417822387_7525f8df1b_o.jpg", "secret": "6372b109be", "media": "photo", "latitude": "0", "id": "1417822387", "tags": ""}, {"datetaken": "2007-09-21 18:55:11", "license": "1", "title": "beach2", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1395/1417822475_1b76e5111a_o.jpg", "secret": "fb995c9718", "media": "photo", "latitude": "0", "id": "1417822475", "tags": ""}, {"datetaken": "2007-09-21 18:55:12", "license": "1", "title": "bridge", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1067/1417822547_51b4528712_o.jpg", "secret": "a0503dac36", "media": "photo", "latitude": "0", "id": "1417822547", "tags": ""}, {"datetaken": "2007-09-21 18:55:16", "license": "1", "title": "cliffs", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1382/1417822751_76fb20fc6f_o.jpg", "secret": "8b429b94d4", "media": "photo", "latitude": "0", "id": "1417822751", "tags": ""}, {"datetaken": "2007-09-21 18:55:17", "license": "1", "title": "cliffs2", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1220/1418706480_97ea5fbb81_o.jpg", "secret": "11c148bc42", "media": "photo", "latitude": "0", "id": "1418706480", "tags": ""}, {"datetaken": "2007-09-21 18:55:18", "license": "1", "title": "dublin castle", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1360/1417822875_a01f2fd513_o.jpg", "secret": "1cf997ebd7", "media": "photo", "latitude": "0", "id": "1417822875", "tags": ""}, {"datetaken": "2007-09-21 18:55:19", "license": "1", "title": "dublin castle2", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1141/1417822937_5ff7fe1372_o.jpg", "secret": "d75a1199bf", "media": "photo", "latitude": "0", "id": "1417822937", "tags": ""}, {"datetaken": "2007-09-21 18:55:20", "license": "1", "title": "dublin cathedral", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1227/1417823011_5eb36b401f_o.jpg", "secret": "225361adb8", "media": "photo", "latitude": "0", "id": "1417823011", "tags": ""}, {"datetaken": "2007-09-21 18:55:21", "license": "1", "title": "gravity bar", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1383/1418706716_4bd6bf6a0a_o.jpg", "secret": "ec68a2ad51", "media": "photo", "latitude": "0", "id": "1418706716", "tags": ""}, {"datetaken": "2007-09-21 18:55:22", "license": "1", "title": "gravity view", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1391/1418706784_67d028fc2c_o.jpg", "secret": "aa932f6494", "media": "photo", "latitude": "0", "id": "1418706784", "tags": ""}, {"datetaken": "2007-09-21 18:55:22", "license": "1", "title": "guitar", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1133/1418706850_a4e487fdfb_o.jpg", "secret": "90d9fcf592", "media": "photo", "latitude": "0", "id": "1418706850", "tags": ""}, {"datetaken": "2007-09-21 18:55:23", "license": "1", "title": "island", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1130/1418706900_e5ad84c706_o.jpg", "secret": "6c2a51b475", "media": "photo", "latitude": "0", "id": "1418706900", "tags": ""}, {"datetaken": "2007-09-21 18:55:25", "license": "1", "title": "monastery1", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1213/1418706968_3560a1b126_o.jpg", "secret": "a7ee68492e", "media": "photo", "latitude": "0", "id": "1418706968", "tags": ""}, {"datetaken": "2007-09-21 18:55:25", "license": "1", "title": "monastery2", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1005/1417823397_aa745074bb_o.jpg", "secret": "1a1018ddcd", "media": "photo", "latitude": "0", "id": "1417823397", "tags": ""}, {"datetaken": "2007-09-21 18:55:26", "license": "1", "title": "sand sculpture", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1364/1418707094_e833f23b29_o.jpg", "secret": "882c83e789", "media": "photo", "latitude": "0", "id": "1418707094", "tags": ""}, {"datetaken": "2007-09-21 18:55:27", "license": "1", "title": "scattery island", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1136/1417823517_f3ce28a1e9_o.jpg", "secret": "e3184800bd", "media": "photo", "latitude": "0", "id": "1417823517", "tags": ""}, {"datetaken": "2007-09-21 18:55:28", "license": "1", "title": "spire", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1356/1417823555_c5ca54f11c_o.jpg", "secret": "7bd356a745", "media": "photo", "latitude": "0", "id": "1417823555", "tags": ""}, {"datetaken": "2007-09-21 18:55:29", "license": "1", "title": "temple bar", "text": "", "album_id": "72157602100596844", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1167/1417823631_2d7cea0844_o.jpg", "secret": "8862d73914", "media": "photo", "latitude": "0", "id": "1417823631", "tags": ""}, {"datetaken": "2004-11-27 23:15:13", "license": "2", "title": "a boat", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751477_ff283c37fe_o.jpg", "secret": "ff283c37fe", "media": "photo", "latitude": "-33.555987", "id": "1751477", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:15:16", "license": "2", "title": "brekkie", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751480_d2923f5c62_o.jpg", "secret": "d2923f5c62", "media": "photo", "latitude": "-33.555987", "id": "1751480", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:15:18", "license": "2", "title": "Sausage cooker", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751483_ffdeaff7c8_o.jpg", "secret": "ffdeaff7c8", "media": "photo", "latitude": "-33.555987", "id": "1751483", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:15:20", "license": "2", "title": "ooooh...", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751485_ab23a49414_o.jpg", "secret": "ab23a49414", "media": "photo", "latitude": "-33.555987", "id": "1751485", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:15:22", "license": "2", "title": "dusk", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751486_2454e0406d_o.jpg", "secret": "2454e0406d", "media": "photo", "latitude": "-33.555987", "id": "1751486", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:15:25", "license": "2", "title": "fisherman Steve", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751489_1e40b4e26d_o.jpg", "secret": "1e40b4e26d", "media": "photo", "latitude": "-33.555987", "id": "1751489", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:15:28", "license": "2", "title": "flying Collins", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751492_21063695c8_o.jpg", "secret": "21063695c8", "media": "photo", "latitude": "-33.555987", "id": "1751492", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:15:30", "license": "2", "title": "The girls at night", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751494_b2e822ed40_o.jpg", "secret": "b2e822ed40", "media": "photo", "latitude": "-33.555987", "id": "1751494", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:15:33", "license": "2", "title": "Diving Steve", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751497_50c63d0f27_o.jpg", "secret": "50c63d0f27", "media": "photo", "latitude": "-33.555987", "id": "1751497", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:15:35", "license": "2", "title": "happy?", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751500_3afae948ad_o.jpg", "secret": "3afae948ad", "media": "photo", "latitude": "-33.555987", "id": "1751500", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:15:38", "license": "2", "title": "hurrah!", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751503_96b120b470_o.jpg", "secret": "96b120b470", "media": "photo", "latitude": "-33.555987", "id": "1751503", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:15:40", "license": "2", "title": "map again", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751505_d12657ae82_o.jpg", "secret": "d12657ae82", "media": "photo", "latitude": "-33.555987", "id": "1751505", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:15:42", "license": "2", "title": "map", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751510_0f64a1aaac_o.jpg", "secret": "0f64a1aaac", "media": "photo", "latitude": "-33.555987", "id": "1751510", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:15:47", "license": "2", "title": "mickey's feet", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751513_3085febed4_o.jpg", "secret": "3085febed4", "media": "photo", "latitude": "-33.555987", "id": "1751513", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:15:49", "license": "2", "title": "Mickey late on friday night", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751516_0e6f3c5efa_o.jpg", "secret": "0e6f3c5efa", "media": "photo", "latitude": "-33.555987", "id": "1751516", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:15:52", "license": "2", "title": "Mickey and Skipper", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751518_9487df5eda_o.jpg", "secret": "9487df5eda", "media": "photo", "latitude": "-33.555987", "id": "1751518", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:15:57", "license": "2", "title": "my arse", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751522_9fd0ef47f0_o.jpg", "secret": "9fd0ef47f0", "media": "photo", "latitude": "-33.555987", "id": "1751522", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:00", "license": "2", "title": "my baby snapper", "text": "", "album_id": "44488", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1751524_321c0e3b99_o.jpg", "secret": "321c0e3b99", "media": "photo", "latitude": "0", "id": "1751524", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:01", "license": "2", "title": "night scene", "text": "", "album_id": "44488", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1751525_8933227217_o.jpg", "secret": "8933227217", "media": "photo", "latitude": "0", "id": "1751525", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:04", "license": "2", "title": "nose picker", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751528_1e5ecd0a9b_o.jpg", "secret": "1e5ecd0a9b", "media": "photo", "latitude": "-33.555987", "id": "1751528", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:06", "license": "2", "title": "over here kate!", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751529_08f9d1cda6_o.jpg", "secret": "08f9d1cda6", "media": "photo", "latitude": "-33.555987", "id": "1751529", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:08", "license": "2", "title": "raver", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751531_46642460fe_o.jpg", "secret": "46642460fe", "media": "photo", "latitude": "-33.555987", "id": "1751531", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:10", "license": "2", "title": "Crazy Mickey", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751534_75edb92e26_o.jpg", "secret": "75edb92e26", "media": "photo", "latitude": "-33.555987", "id": "1751534", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:12", "license": "2", "title": "sausages", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751535_7cdc0a475d_o.jpg", "secret": "7cdc0a475d", "media": "photo", "latitude": "-33.555987", "id": "1751535", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:14", "license": "2", "title": "Silly Steve", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751538_c85deb2968_o.jpg", "secret": "c85deb2968", "media": "photo", "latitude": "-33.555987", "id": "1751538", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:19", "license": "2", "title": "Steve & Hannah", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751544_710618b661_o.jpg", "secret": "710618b661", "media": "photo", "latitude": "-33.555987", "id": "1751544", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:21", "license": "2", "title": "steve & mickey", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751546_bf48d1dc2c_o.jpg", "secret": "bf48d1dc2c", "media": "photo", "latitude": "-33.555987", "id": "1751546", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:23", "license": "2", "title": "'sup G", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751549_41d11c3332_o.jpg", "secret": "41d11c3332", "media": "photo", "latitude": "-33.555987", "id": "1751549", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:25", "license": "2", "title": "arty farty", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751551_44e3456264_o.jpg", "secret": "44e3456264", "media": "photo", "latitude": "-33.555987", "id": "1751551", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:27", "license": "2", "title": "upstairs", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751554_e0a2789e1c_o.jpg", "secret": "e0a2789e1c", "media": "photo", "latitude": "-33.555987", "id": "1751554", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:30", "license": "2", "title": "Wallamba closer", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751556_00f830b625_o.jpg", "secret": "00f830b625", "media": "photo", "latitude": "-33.555987", "id": "1751556", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:32", "license": "2", "title": "Wallamba", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751559_3541f16c3f_o.jpg", "secret": "3541f16c3f", "media": "photo", "latitude": "-33.555987", "id": "1751559", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:35", "license": "2", "title": "we're off", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751562_e10522026c_o.jpg", "secret": "e10522026c", "media": "photo", "latitude": "-33.555987", "id": "1751562", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:36", "license": "2", "title": "Bug eyes", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751565_c330a4a7b8_o.jpg", "secret": "c330a4a7b8", "media": "photo", "latitude": "-33.555987", "id": "1751565", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-27 23:16:38", "license": "2", "title": "wicked man!", "text": "", "album_id": "44488", "longitude": "151.251869", "url_o": "https://farm1.staticflickr.com/2/1751567_941cf60e9d_o.jpg", "secret": "941cf60e9d", "media": "photo", "latitude": "-33.555987", "id": "1751567", "tags": "wallamba hawkesbury river weekend fun"}, {"datetaken": "2004-11-29 20:35:14", "license": "1", "title": "", "text": "", "album_id": "45594", "longitude": "-77.030961", "url_o": "https://farm1.staticflickr.com/2/1798327_2545001f4a_o.jpg", "secret": "2545001f4a", "media": "photo", "latitude": "34.661213", "id": "1798327", "tags": "2004 thanksgiving beach laurie"}, {"datetaken": "2004-11-29 20:35:14", "license": "1", "title": "half_img_0036", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798326_c42e4bf709_o.jpg", "secret": "c42e4bf709", "media": "photo", "latitude": "34.662705", "id": "1798326", "tags": "2004 thanksgiving beach"}, {"datetaken": "2004-11-29 20:35:14", "license": "1", "title": "BIG MOON", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798334_23f795f172_o.jpg", "secret": "23f795f172", "media": "photo", "latitude": "34.662705", "id": "1798334", "tags": "2004 thanksgiving beach moon"}, {"datetaken": "2004-11-29 20:35:14", "license": "1", "title": "Orion rises.", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798335_c56644dbdf_o.jpg", "secret": "c56644dbdf", "media": "photo", "latitude": "34.662705", "id": "1798335", "tags": "2004 thanksgiving beach orion night"}, {"datetaken": "2004-11-29 20:35:14", "license": "1", "title": "half_img_0042", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798325_97dfd66b6d_o.jpg", "secret": "97dfd66b6d", "media": "photo", "latitude": "34.662705", "id": "1798325", "tags": "2004 thanksgiving beach orion"}, {"datetaken": "2004-11-29 20:35:14", "license": "1", "title": "Slow it down more.", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798324_aeb5148243_o.jpg", "secret": "aeb5148243", "media": "photo", "latitude": "34.662705", "id": "1798324", "tags": "2004 thanksgiving beach"}, {"datetaken": "2004-11-29 20:37:35", "license": "1", "title": "Shark free fall.", "text": "", "album_id": "45594", "longitude": "-77.033386", "url_o": "https://farm1.staticflickr.com/2/1798395_f63687c970_o.jpg", "secret": "f63687c970", "media": "photo", "latitude": "34.658177", "id": "1798395", "tags": "2004 thanksgiving beach pier fishing shark"}, {"datetaken": "2004-11-29 20:37:35", "license": "1", "title": "half_img_0027", "text": "", "album_id": "45594", "longitude": "-77.033386", "url_o": "https://farm1.staticflickr.com/2/1798393_01b6f75949_o.jpg", "secret": "01b6f75949", "media": "photo", "latitude": "34.658177", "id": "1798393", "tags": "2004 thanksgiving beach"}, {"datetaken": "2004-11-29 20:37:35", "license": "1", "title": "", "text": "", "album_id": "45594", "longitude": "-77.030961", "url_o": "https://farm1.staticflickr.com/2/1798396_681904791d_o.jpg", "secret": "681904791d", "media": "photo", "latitude": "34.661213", "id": "1798396", "tags": "2004 thanksgiving beach laurie"}, {"datetaken": "2004-11-29 20:37:35", "license": "1", "title": "half_img_0033", "text": "", "album_id": "45594", "longitude": "-77.030961", "url_o": "https://farm1.staticflickr.com/2/1798394_a5a5be9904_o.jpg", "secret": "a5a5be9904", "media": "photo", "latitude": "34.661213", "id": "1798394", "tags": "2004 thanksgiving beach"}, {"datetaken": "2004-11-29 20:37:35", "license": "1", "title": "half_img_0031", "text": "", "album_id": "45594", "longitude": "-77.030961", "url_o": "https://farm1.staticflickr.com/2/1798403_4ffc9a341f_o.jpg", "secret": "4ffc9a341f", "media": "photo", "latitude": "34.661213", "id": "1798403", "tags": "2004 thanksgiving beach"}, {"datetaken": "2004-11-29 20:37:35", "license": "1", "title": "half_img_0028", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798402_cf216269c0_o.jpg", "secret": "cf216269c0", "media": "photo", "latitude": "34.662705", "id": "1798402", "tags": "2004 thanksgiving beach"}, {"datetaken": "2004-11-29 20:39:51", "license": "1", "title": "half_img_0013", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798486_db20de1a2f_o.jpg", "secret": "db20de1a2f", "media": "photo", "latitude": "34.662705", "id": "1798486", "tags": "2004 thanksgiving beach"}, {"datetaken": "2004-11-29 20:39:51", "license": "1", "title": "half_img_0016", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798478_eea167f3da_o.jpg", "secret": "eea167f3da", "media": "photo", "latitude": "34.662705", "id": "1798478", "tags": "2004 thanksgiving beach sunset pier"}, {"datetaken": "2004-11-29 20:39:51", "license": "1", "title": "half_img_0017", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798480_66191b5df6_o.jpg", "secret": "66191b5df6", "media": "photo", "latitude": "34.662705", "id": "1798480", "tags": "2004 thanksgiving beach moon"}, {"datetaken": "2004-11-29 20:39:51", "license": "1", "title": "half_img_0023", "text": "", "album_id": "45594", "longitude": "-77.032978", "url_o": "https://farm1.staticflickr.com/2/1798479_66795dfbe5_o.jpg", "secret": "66795dfbe5", "media": "photo", "latitude": "34.660604", "id": "1798479", "tags": "2004 thanksgiving beach pier surfing warning sign"}, {"datetaken": "2004-11-29 20:39:51", "license": "1", "title": "250 Feet.", "text": "", "album_id": "45594", "longitude": "-77.032957", "url_o": "https://farm1.staticflickr.com/2/1798481_64455b3df2_o.jpg", "secret": "64455b3df2", "media": "photo", "latitude": "34.660741", "id": "1798481", "tags": "2004 thanksgiving beach pier surfing warning sign"}, {"datetaken": "2004-11-29 20:39:51", "license": "1", "title": "half_img_0021", "text": "", "album_id": "45594", "longitude": "-77.032957", "url_o": "https://farm1.staticflickr.com/2/1798487_eaff125c24_o.jpg", "secret": "eaff125c24", "media": "photo", "latitude": "34.660741", "id": "1798487", "tags": "2004 thanksgiving beach windmill windpower electricity"}, {"datetaken": "2004-11-29 20:41:09", "license": "1", "title": "Rack 'em", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798519_eb7646d4e7_o.jpg", "secret": "eb7646d4e7", "media": "photo", "latitude": "34.662705", "id": "1798519", "tags": "2004 thanksgiving beach pool laurie"}, {"datetaken": "2004-11-29 20:41:09", "license": "1", "title": "More sharking.", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798532_87022b3d64_o.jpg", "secret": "87022b3d64", "media": "photo", "latitude": "34.662705", "id": "1798532", "tags": "2004 thanksgiving beach pool laurie"}, {"datetaken": "2004-11-29 20:41:09", "license": "1", "title": "half_img_0010", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798518_c2d9d11735_o.jpg", "secret": "c2d9d11735", "media": "photo", "latitude": "34.662705", "id": "1798518", "tags": "2004 thanksgiving beach ocean atlantic waves"}, {"datetaken": "2004-11-29 20:41:09", "license": "1", "title": "half_img_0012", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798521_7992ee9233_o.jpg", "secret": "7992ee9233", "media": "photo", "latitude": "34.662705", "id": "1798521", "tags": "2004 thanksgiving beach ocean atlantic waves"}, {"datetaken": "2004-11-29 20:41:09", "license": "1", "title": "half_img_0011", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798522_7181edf379_o.jpg", "secret": "7181edf379", "media": "photo", "latitude": "34.662705", "id": "1798522", "tags": "2004 thanksgiving beach ocean atlantic waves"}, {"datetaken": "2004-11-29 20:41:09", "license": "1", "title": "half_img_0009", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798533_03dab4e4a5_o.jpg", "secret": "03dab4e4a5", "media": "photo", "latitude": "34.662705", "id": "1798533", "tags": "2004 thanksgiving beach deck"}, {"datetaken": "2004-11-29 20:42:23", "license": "1", "title": "half_img_0002", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798546_576c8d3250_o.jpg", "secret": "576c8d3250", "media": "photo", "latitude": "34.662705", "id": "1798546", "tags": "2004 thanksgiving beach"}, {"datetaken": "2004-11-29 20:42:23", "license": "1", "title": "half_img_0003", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798548_770793a895_o.jpg", "secret": "770793a895", "media": "photo", "latitude": "34.662705", "id": "1798548", "tags": "2004 thanksgiving beach cooking parents kitchen"}, {"datetaken": "2004-11-29 20:42:23", "license": "1", "title": "half_img_0004", "text": "", "album_id": "45594", "longitude": "-77.028601", "url_o": "https://farm1.staticflickr.com/2/1798547_c2e0cdcdf2_o.jpg", "secret": "c2e0cdcdf2", "media": "photo", "latitude": "34.662705", "id": "1798547", "tags": "2004 thanksgiving beach drinking"}, {"datetaken": "2004-11-21 11:46:44", "license": "5", "title": "And some more camels...", "text": "", "album_id": "51698", "longitude": "74.545497", "url_o": "https://farm1.staticflickr.com/2/2058128_fccd5f8819_o.jpg", "secret": "fccd5f8819", "media": "photo", "latitude": "26.468729", "id": "2058128", "tags": "pushkar camel india 2004 mwt"}, {"datetaken": "2004-11-21 11:50:14", "license": "5", "title": "An Entry for the Camel Shaving Contest", "text": "", "album_id": "51698", "longitude": "74.545497", "url_o": "https://farm1.staticflickr.com/2/2057830_c08f6bfe7d_o.jpg", "secret": "c08f6bfe7d", "media": "photo", "latitude": "26.468729", "id": "2057830", "tags": "pushkar camel mela india 2004 mwt"}, {"datetaken": "2004-11-21 12:01:26", "license": "5", "title": "So Many Camels", "text": "", "album_id": "51698", "longitude": "74.545497", "url_o": "https://farm1.staticflickr.com/2/2057788_7752eca41d_o.jpg", "secret": "7752eca41d", "media": "photo", "latitude": "26.468729", "id": "2057788", "tags": "pushkar camel mela india 2004 mwt"}, {"datetaken": "2004-11-21 12:01:31", "license": "5", "title": "Still More Camels...", "text": "", "album_id": "51698", "longitude": "74.545497", "url_o": "https://farm1.staticflickr.com/2/2058100_f96aa8fd81_o.jpg", "secret": "f96aa8fd81", "media": "photo", "latitude": "26.468729", "id": "2058100", "tags": "pushkar camel mela india 2004 mwt"}, {"datetaken": "2004-11-21 12:01:35", "license": "5", "title": "So Many Camels, Part 4", "text": "", "album_id": "51698", "longitude": "74.545497", "url_o": "https://farm1.staticflickr.com/2/2058048_ff4bc8d800_o.jpg", "secret": "ff4bc8d800", "media": "photo", "latitude": "26.468729", "id": "2058048", "tags": "pushkar camel mela india 2004 mwt"}, {"datetaken": "2004-11-21 12:02:42", "license": "5", "title": "So Many Camels, Part 3", "text": "", "album_id": "51698", "longitude": "74.545497", "url_o": "https://farm1.staticflickr.com/2/2057884_29a3a52a6c_o.jpg", "secret": "29a3a52a6c", "media": "photo", "latitude": "26.468729", "id": "2057884", "tags": "pushkar camel mela india 2004 mwt"}, {"datetaken": "2004-11-21 15:32:47", "license": "5", "title": "Pushkar Mountains", "text": "", "album_id": "51698", "longitude": "74.557342", "url_o": "https://farm1.staticflickr.com/2/2058011_c9865f52e2_o.jpg", "secret": "c9865f52e2", "media": "photo", "latitude": "26.491162", "id": "2058011", "tags": "pushkar camel mountain india 2004 mwt"}, {"datetaken": "2004-11-21 15:32:59", "license": "5", "title": "Pushkar Rooftops", "text": "", "album_id": "51698", "longitude": "74.557342", "url_o": "https://farm1.staticflickr.com/2/2057968_7bd9f79db4_o.jpg", "secret": "7bd9f79db4", "media": "photo", "latitude": "26.491162", "id": "2057968", "tags": "pushkar camel roofs india 2004 mwt"}, {"datetaken": "2004-11-21 17:55:05", "license": "5", "title": "Selfie at Sunset", "text": "", "album_id": "51698", "longitude": "74.577426", "url_o": "https://farm1.staticflickr.com/2/2057926_96cdcf5078_o.jpg", "secret": "96cdcf5078", "media": "photo", "latitude": "26.494619", "id": "2057926", "tags": "pushkar camel selfie india 2004 mwt"}, {"datetaken": "2004-11-21 17:59:09", "license": "5", "title": "Crappy Star Shot", "text": "", "album_id": "51698", "longitude": "74.577426", "url_o": "https://farm1.staticflickr.com/2/2057589_803cf87a60_o.jpg", "secret": "803cf87a60", "media": "photo", "latitude": "26.494619", "id": "2057589", "tags": "pushkar camel stars india 2004 mwt"}, {"datetaken": "2004-11-21 18:07:41", "license": "5", "title": "Rob and Me on Horseback", "text": "", "album_id": "51698", "longitude": "74.577426", "url_o": "https://farm1.staticflickr.com/2/2057628_f9ccfd6d68_o.jpg", "secret": "f9ccfd6d68", "media": "photo", "latitude": "26.494619", "id": "2057628", "tags": "pushkar camel horse india rob 2004 mwt"}, {"datetaken": "2004-11-21 18:19:39", "license": "5", "title": "Me in Kaluram's Turban", "text": "", "album_id": "51698", "longitude": "74.577426", "url_o": "https://farm1.staticflickr.com/2/2057541_f3c4ee91d4_o.jpg", "secret": "f3c4ee91d4", "media": "photo", "latitude": "26.494619", "id": "2057541", "tags": "pushkar camel turban india 2004 mwt"}, {"datetaken": "2004-11-22 15:17:07", "license": "5", "title": "Babu", "text": "", "album_id": "51698", "longitude": "74.512710", "url_o": "https://farm1.staticflickr.com/2/2057426_837bea3849_o.jpg", "secret": "837bea3849", "media": "photo", "latitude": "26.439374", "id": "2057426", "tags": "pushkar camel babu india 2004 mwt"}, {"datetaken": "2004-11-22 15:17:16", "license": "5", "title": "Mike has camel problems", "text": "", "album_id": "51698", "longitude": "74.538116", "url_o": "https://farm1.staticflickr.com/2/2057469_04c5e64afe_o.jpg", "secret": "04c5e64afe", "media": "photo", "latitude": "26.452439", "id": "2057469", "tags": "pushkar camel mike india 2004 mwt"}, {"datetaken": "2004-11-22 15:20:49", "license": "5", "title": "Tons o' Camels", "text": "", "album_id": "51698", "longitude": "74.545497", "url_o": "https://farm1.staticflickr.com/2/2057684_cf604c2c4d_o.jpg", "secret": "cf604c2c4d", "media": "photo", "latitude": "26.468729", "id": "2057684", "tags": "pushkar camel india 2004 mwt"}, {"datetaken": "2004-11-22 15:22:50", "license": "5", "title": "So Many Camels, Part 2", "text": "", "album_id": "51698", "longitude": "74.545497", "url_o": "https://farm1.staticflickr.com/2/2057741_4c99dd9d33_o.jpg", "secret": "4c99dd9d33", "media": "photo", "latitude": "26.468729", "id": "2057741", "tags": "pushkar camel mela india 2004 mwt"}, {"datetaken": "2004-11-22 15:24:50", "license": "5", "title": "Marla on her Camel", "text": "", "album_id": "51698", "longitude": "74.545497", "url_o": "https://farm1.staticflickr.com/2/2057317_f05827e0d9_o.jpg", "secret": "f05827e0d9", "media": "photo", "latitude": "26.468729", "id": "2057317", "tags": "pushkar camel india 2004 mwt"}, {"datetaken": "2004-11-22 16:19:18", "license": "5", "title": "Me Temple Moon", "text": "", "album_id": "51698", "longitude": "74.512367", "url_o": "https://farm1.staticflickr.com/2/2057243_98d67be087_o.jpg", "secret": "98d67be087", "media": "photo", "latitude": "26.449749", "id": "2057243", "tags": "pushkar camel me temple moon india 2004 mwt"}, {"datetaken": "2004-11-22 16:20:07", "license": "5", "title": "Me, Turban, Temple, Moon", "text": "", "album_id": "51698", "longitude": "74.500007", "url_o": "https://farm1.staticflickr.com/2/2057107_c0725a8461_o.jpg", "secret": "c0725a8461", "media": "photo", "latitude": "26.444216", "id": "2057107", "tags": "pushkar camel me turban temple moon selfie india 2004 mwt"}, {"datetaken": "2004-11-22 16:56:09", "license": "5", "title": "The Camel Train", "text": "", "album_id": "51698", "longitude": "74.500007", "url_o": "https://farm1.staticflickr.com/2/2057164_58cd406f6b_o.jpg", "secret": "58cd406f6b", "media": "photo", "latitude": "26.444216", "id": "2057164", "tags": "pushkar camel babu india 2004 mwt"}, {"datetaken": "2004-11-22 16:56:45", "license": "5", "title": "My Shadow (while on Babu)", "text": "", "album_id": "51698", "longitude": "74.500007", "url_o": "https://farm1.staticflickr.com/2/2057066_b537e2ce80_o.jpg", "secret": "b537e2ce80", "media": "photo", "latitude": "26.444216", "id": "2057066", "tags": "pushkar camel me shadow india shadowportrait 2004 mwt"}, {"datetaken": "2004-11-22 17:05:16", "license": "5", "title": "Kids in a bombed-out looking village", "text": "", "album_id": "51698", "longitude": "74.485244", "url_o": "https://farm1.staticflickr.com/2/2056992_876a1eb404_o.jpg", "secret": "876a1eb404", "media": "photo", "latitude": "26.433072", "id": "2056992", "tags": "pushkar camel village kids india 2004 mwt"}, {"datetaken": "2004-11-22 17:09:23", "license": "5", "title": "Mira and I", "text": "", "album_id": "51698", "longitude": "74.485244", "url_o": "https://farm1.staticflickr.com/2/2057394_2fcdf119ff_o.jpg", "secret": "2fcdf119ff", "media": "photo", "latitude": "26.433072", "id": "2057394", "tags": "pushkar camel me mira india 2004 mwt"}, {"datetaken": "2004-11-22 17:18:27", "license": "5", "title": "Me and Mike with the kids", "text": "", "album_id": "51698", "longitude": "74.485244", "url_o": "https://farm1.staticflickr.com/2/2056901_3767e0d6cb_o.jpg", "secret": "3767e0d6cb", "media": "photo", "latitude": "26.433072", "id": "2056901", "tags": "pushkar camel me mike village kids india 2004 mwt"}, {"datetaken": "2012-01-25 12:18:27", "license": "3", "title": "Wellington Harbour HDR", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7012/6805850393_a7d9b076d0_o.jpg", "secret": "ef2f9146b2", "media": "photo", "latitude": "0", "id": "6805850393", "tags": "up high day view harbour hill sunny wellington hdr"}, {"datetaken": "2012-01-25 12:21:00", "license": "3", "title": "", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7146/6805851225_14371dc429_o.jpg", "secret": "9757651539", "media": "photo", "latitude": "0", "id": "6805851225", "tags": "saint bike rock race stem da biking brake bomb forks kona stinky mountian shox shimano delux boxxer"}, {"datetaken": "2012-01-25 12:22:10", "license": "3", "title": "", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7023/6805852147_8d7904f169_o.jpg", "secret": "52ff605b96", "media": "photo", "latitude": "0", "id": "6805852147", "tags": "tree windmill jump track stump"}, {"datetaken": "2012-01-25 12:27:51", "license": "3", "title": "", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7174/6805853961_6c1d3fb4cb_o.jpg", "secret": "518581db44", "media": "photo", "latitude": "0", "id": "6805853961", "tags": "blue sky tree view wellington"}, {"datetaken": "2012-01-25 12:28:23", "license": "3", "title": "Wellington Harbour", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7152/6805855373_345968d079_o.jpg", "secret": "e0f993d5e2", "media": "photo", "latitude": "0", "id": "6805855373", "tags": "up high day view harbour hill sunny wellington"}, {"datetaken": "2012-01-25 12:30:19", "license": "3", "title": "", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7153/6805856583_e7cf93b2a8_o.jpg", "secret": "aea453fb81", "media": "photo", "latitude": "0", "id": "6805856583", "tags": ""}, {"datetaken": "2012-01-25 12:33:12", "license": "3", "title": "", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7169/6805857927_95c8200d0c_o.jpg", "secret": "1c5322d669", "media": "photo", "latitude": "0", "id": "6805857927", "tags": ""}, {"datetaken": "2012-01-25 12:33:12", "license": "3", "title": "", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7141/6805859349_2ce036ce0c_o.jpg", "secret": "4bd02b9feb", "media": "photo", "latitude": "0", "id": "6805859349", "tags": ""}, {"datetaken": "2012-01-25 12:34:23", "license": "3", "title": "", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7144/6805860799_fa9ea1c8d4_o.jpg", "secret": "fc211047cb", "media": "photo", "latitude": "0", "id": "6805860799", "tags": ""}, {"datetaken": "2012-01-25 12:35:06", "license": "3", "title": "", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7009/6805861883_8b28d17255_o.jpg", "secret": "df46fd2f10", "media": "photo", "latitude": "0", "id": "6805861883", "tags": ""}, {"datetaken": "2012-01-25 12:36:09", "license": "3", "title": "", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7172/6805862753_46b7739206_o.jpg", "secret": "fb8bc466e4", "media": "photo", "latitude": "0", "id": "6805862753", "tags": ""}, {"datetaken": "2012-01-25 12:36:50", "license": "3", "title": "", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7035/6805864233_3557afbaa9_o.jpg", "secret": "8df9a5c838", "media": "photo", "latitude": "0", "id": "6805864233", "tags": ""}, {"datetaken": "2012-01-25 12:36:54", "license": "3", "title": "", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7157/6805865159_097a391b9e_o.jpg", "secret": "9308c0b7aa", "media": "photo", "latitude": "0", "id": "6805865159", "tags": ""}, {"datetaken": "2012-01-25 12:36:54", "license": "3", "title": "", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7151/6805866237_78de5f9fac_o.jpg", "secret": "8eb82d6a48", "media": "photo", "latitude": "0", "id": "6805866237", "tags": ""}, {"datetaken": "2012-01-25 12:39:07", "license": "3", "title": "", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7165/6805868479_06451e27ef_o.jpg", "secret": "84d430a475", "media": "photo", "latitude": "0", "id": "6805868479", "tags": ""}, {"datetaken": "2012-01-25 12:40:13", "license": "3", "title": "Feet Up Near the Wellington Windmill", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7168/6805871015_034c3eb858_o.jpg", "secret": "4729e77cf7", "media": "photo", "latitude": "0", "id": "6805871015", "tags": "new flowers plants mountain feet bike track wind zealand nz wellington turbine brookland"}, {"datetaken": "2012-01-25 12:40:31", "license": "3", "title": "", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7145/6805874673_7f6b0ac15f_o.jpg", "secret": "aec6e378e4", "media": "photo", "latitude": "0", "id": "6805874673", "tags": ""}, {"datetaken": "2012-01-25 12:40:32", "license": "3", "title": "", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7014/6805876049_1d07b0267e_o.jpg", "secret": "50858223c3", "media": "photo", "latitude": "0", "id": "6805876049", "tags": ""}, {"datetaken": "2012-01-25 12:41:52", "license": "3", "title": "", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7168/6805876817_b25bfb4c3e_o.jpg", "secret": "b5690303d1", "media": "photo", "latitude": "0", "id": "6805876817", "tags": ""}, {"datetaken": "2012-01-25 12:42:40", "license": "3", "title": "Pinecone!!!", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7027/6805883579_f93afeb474_o.jpg", "secret": "ef2cc26046", "media": "photo", "latitude": "0", "id": "6805883579", "tags": ""}, {"datetaken": "2012-01-25 13:41:10", "license": "3", "title": "Windmill Downhill Hip Jump Small", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7149/6805886403_37dda90abd_o.jpg", "secret": "082f230b4b", "media": "photo", "latitude": "0", "id": "6805886403", "tags": ""}, {"datetaken": "2012-01-25 13:44:58", "license": "3", "title": "Windmill Downhill Hip Jump", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7161/6805889923_7d93e97013_o.jpg", "secret": "74b430b0d8", "media": "photo", "latitude": "0", "id": "6805889923", "tags": ""}, {"datetaken": "2012-01-25 13:44:59", "license": "3", "title": "Windmill Downhill Hip Jump Panorama", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7010/6805896217_bfb493799d_o.jpg", "secret": "fa5d38f78f", "media": "photo", "latitude": "0", "id": "6805896217", "tags": ""}, {"datetaken": "2012-01-25 13:48:13", "license": "3", "title": "Windmill Downhill Hip Jump", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7162/6805892029_b7f8eea49b_o.jpg", "secret": "382c610725", "media": "photo", "latitude": "0", "id": "6805892029", "tags": ""}, {"datetaken": "2012-01-25 13:48:13", "license": "3", "title": "Windmill Downhill Hip Jump", "text": "", "album_id": "72157629147970635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7172/6805893049_ccd016aec5_o.jpg", "secret": "8897aeb991", "media": "photo", "latitude": "0", "id": "6805893049", "tags": ""}, {"datetaken": "2010-02-06 01:49:22", "license": "3", "title": "Stupor Bowl 13 Manifest Side 1", "text": "", "album_id": "72157623260159343", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2738/4342662574_ebbc5b1d1e_o.jpg", "secret": "92acb77469", "media": "photo", "latitude": "0", "id": "4342662574", "tags": "minnesota bike bicycle race minneapolis mpls mn alleycat stuporbowl manifest stuporbowl13 stuporbowlthirteen sbxiii"}, {"datetaken": "2010-02-06 01:49:37", "license": "3", "title": "Stupor Bowl 13 Manifest Side 2", "text": "", "album_id": "72157623260159343", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4341925863_6313081b4d_o.jpg", "secret": "a5af3c273e", "media": "photo", "latitude": "0", "id": "4341925863", "tags": "minnesota bike bicycle race minneapolis mpls mn alleycat stuporbowl manifest stuporbowl13 stuporbowlthirteen sbxiii"}, {"datetaken": "2010-02-06 14:31:35", "license": "3", "title": "Jana", "text": "", "album_id": "72157623260159343", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2789/4341927421_a875f4fd51_o.jpg", "secret": "e4779bab29", "media": "photo", "latitude": "0", "id": "4341927421", "tags": "minnesota bike bicycle race minneapolis mpls jana mn alleycat stuporbowl manifest stuporbowl13 stuporbowlthirteen sbxiii"}, {"datetaken": "2010-02-06 14:31:41", "license": "3", "title": "Josh and Phil", "text": "", "album_id": "72157623260159343", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2728/4342668352_8cc5030579_o.jpg", "secret": "41bae20ba4", "media": "photo", "latitude": "0", "id": "4342668352", "tags": "minnesota bike bicycle race minneapolis mpls mn alleycat stuporbowl manifest stuporbowl13 stuporbowlthirteen sbxiii"}, {"datetaken": "2010-02-06 14:31:53", "license": "3", "title": "Be Rad", "text": "", "album_id": "72157623260159343", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4342669536_0c775ff2b7_o.jpg", "secret": "cd3cd4d74c", "media": "photo", "latitude": "0", "id": "4342669536", "tags": "minnesota bike bicycle race minneapolis mpls mn alleycat stuporbowl manifest stuporbowl13 stuporbowlthirteen sbxiii"}, {"datetaken": "2010-02-06 14:44:36", "license": "3", "title": "Stupor Bowl 13 About To Start", "text": "", "album_id": "72157623260159343", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2773/4342673086_a7aab9fc92_o.jpg", "secret": "902a6205ca", "media": "photo", "latitude": "0", "id": "4342673086", "tags": "winter snow ice minnesota bike bicycle race cycling minneapolis mpls mn alleycat stuporbowl manifest winterbiking wintercycling goldmedalpark stuporbowl13 stuporbowlthirteen sbxiii"}, {"datetaken": "2010-02-06 14:44:44", "license": "3", "title": "Uphill Battle", "text": "", "album_id": "72157623260159343", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4341932305_4c50bbe1f0_o.jpg", "secret": "ac13a5fb76", "media": "photo", "latitude": "0", "id": "4341932305", "tags": "winter snow ice minnesota bike bicycle race cycling minneapolis mpls mn alleycat stuporbowl manifest winterbiking wintercycling goldmedalpark stuporbowl13 stuporbowlthirteen sbxiii"}, {"datetaken": "2010-02-06 14:45:40", "license": "3", "title": "Atop Mount Minneapolis", "text": "", "album_id": "72157623260159343", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2749/4342674498_2ca94615c2_o.jpg", "secret": "fcc15bc59b", "media": "photo", "latitude": "0", "id": "4342674498", "tags": "winter snow ice minnesota bike bicycle race cycling minneapolis mpls mn alleycat stuporbowl manifest winterbiking wintercycling goldmedalpark stuporbowl13 stuporbowlthirteen sbxiii"}, {"datetaken": "2010-02-06 18:57:31", "license": "3", "title": "Table", "text": "", "album_id": "72157623260159343", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4342676114_33e5be0490_o.jpg", "secret": "58210f4504", "media": "photo", "latitude": "0", "id": "4342676114", "tags": "winter snow ice minnesota bike bicycle race cycling minneapolis mpls mn alleycat stuporbowl manifest winterbiking wintercycling stuporbowl13 stuporbowlthirteen sbxiii"}, {"datetaken": "2010-02-06 19:02:18", "license": "3", "title": "Jeff From Philly About To Be Swirled", "text": "", "album_id": "72157623260159343", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4342678942_d09c995068_o.jpg", "secret": "2537ed6096", "media": "photo", "latitude": "0", "id": "4342678942", "tags": "winter snow ice minnesota bike bicycle race cycling minneapolis mpls mn alleycat stuporbowl manifest winterbiking wintercycling stuporbowl13 stuporbowlthirteen sbxiii"}, {"datetaken": "2010-02-06 20:09:49", "license": "3", "title": "DO and Kopish", "text": "", "album_id": "72157623260159343", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2632/4341941793_00bca699ac_o.jpg", "secret": "8f56cb85e8", "media": "photo", "latitude": "0", "id": "4341941793", "tags": "winter snow ice minnesota bike bicycle race cycling minneapolis mpls mn alleycat stuporbowl manifest winterbiking wintercycling stuporbowl13 stuporbowlthirteen sbxiii"}, {"datetaken": "2010-02-06 20:12:36", "license": "3", "title": "Tarantula Bonus", "text": "", "album_id": "72157623260159343", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4341943611_9c3fa0f166_o.jpg", "secret": "aafb0da2a8", "media": "photo", "latitude": "0", "id": "4341943611", "tags": "winter snow ice minnesota bike bicycle race cycling minneapolis mpls mn alleycat stuporbowl manifest winterbiking wintercycling stuporbowl13 stuporbowlthirteen sbxiii"}, {"datetaken": "2010-02-06 20:13:20", "license": "3", "title": "Race Organizers", "text": "", "album_id": "72157623260159343", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2728/4341967991_f3131f10c0_o.jpg", "secret": "6c42b44412", "media": "photo", "latitude": "0", "id": "4341967991", "tags": "winter snow ice minnesota bike bicycle race cycling minneapolis mpls mn alleycat stuporbowl manifest winterbiking wintercycling goldmedalpark stuporbowl13 stuporbowlthirteen sbxiii"}, {"datetaken": "2010-02-06 20:21:44", "license": "3", "title": "Martin's Acceptance Speech", "text": "", "album_id": "72157623260159343", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4342684348_4170e15d04_o.jpg", "secret": "33751ca9f0", "media": "photo", "latitude": "0", "id": "4342684348", "tags": "winter snow ice minnesota bike bicycle race cycling minneapolis mpls mn alleycat stuporbowl manifest winterbiking wintercycling stuporbowl13 stuporbowlthirteen sbxiii"}, {"datetaken": "2010-02-06 20:26:52", "license": "3", "title": "Jeff and Josh", "text": "", "album_id": "72157623260159343", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4342685516_bce3e9592c_o.jpg", "secret": "24e7cbb0d9", "media": "photo", "latitude": "0", "id": "4342685516", "tags": "winter snow ice minnesota bike bicycle race cycling minneapolis mpls mn alleycat stuporbowl manifest winterbiking wintercycling stuporbowl13 stuporbowlthirteen sbxiii"}, {"datetaken": "2010-02-06 20:29:33", "license": "3", "title": "Stupor Bowl 13 Winner Jeff Frane!", "text": "", "album_id": "72157623260159343", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2695/4341948433_2822655199_o.jpg", "secret": "7cf012b07e", "media": "photo", "latitude": "0", "id": "4341948433", "tags": "winter snow ice minnesota bike bicycle race cycling minneapolis mpls mn alleycat stuporbowl manifest winterbiking wintercycling stuporbowl13 stuporbowlthirteen sbxiii"}, {"datetaken": "2007-01-06 11:18:06", "license": "3", "title": "6/13", "text": "", "album_id": "72157594469687683", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/351826246_8b233a06b0_o.jpg", "secret": "8b233a06b0", "media": "photo", "latitude": "0", "id": "351826246", "tags": "britishracinggreen greencarfast thingstodoinjanuary oooohcanwekeepitpleaseplease instantbondgirl"}, {"datetaken": "2007-01-06 11:26:13", "license": "3", "title": "11/13", "text": "", "album_id": "72157594469687683", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/351823425_f43d3b32a5_o.jpg", "secret": "f43d3b32a5", "media": "photo", "latitude": "0", "id": "351823425", "tags": "greencarfast thingstodoinjanuary oooohcanwekeepitpleaseplease instantbondgirl"}, {"datetaken": "2007-01-06 11:28:32", "license": "3", "title": "7/13", "text": "", "album_id": "72157594469687683", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/351825593_85067f64cc_o.jpg", "secret": "85067f64cc", "media": "photo", "latitude": "0", "id": "351825593", "tags": "selbstportrait greencarfast thingstodoinjanuary oooohcanwekeepitpleaseplease instantbondgirl"}, {"datetaken": "2007-01-06 11:49:16", "license": "3", "title": "3/13", "text": "", "album_id": "72157594469687683", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/351827838_9d098d3018_o.jpg", "secret": "9d098d3018", "media": "photo", "latitude": "0", "id": "351827838", "tags": "greencarfast thingstodoinjanuary oooohcanwekeepitpleaseplease instantbondgirl whatisabonnet excusemebutthisisclearlya1969etype"}, {"datetaken": "2007-01-06 11:53:33", "license": "3", "title": "4/13", "text": "", "album_id": "72157594469687683", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/351827344_f550313085_o.jpg", "secret": "f550313085", "media": "photo", "latitude": "0", "id": "351827344", "tags": "greencarfast thingstodoinjanuary oooohcanwekeepitpleaseplease instantbondgirl"}, {"datetaken": "2007-01-06 12:02:28", "license": "3", "title": "10/13", "text": "", "album_id": "72157594469687683", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/351824160_a5963cb865_o.jpg", "secret": "a5963cb865", "media": "photo", "latitude": "0", "id": "351824160", "tags": "greencarfast thingstodoinjanuary oooohcanwekeepitpleaseplease instantbondgirl"}, {"datetaken": "2007-01-06 12:39:39", "license": "3", "title": "9/13", "text": "", "album_id": "72157594469687683", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/351824731_d4ecb0e2ff_o.jpg", "secret": "d4ecb0e2ff", "media": "photo", "latitude": "0", "id": "351824731", "tags": "greencarfast thingstodoinjanuary oooohcanwekeepitpleaseplease instantbondgirl"}, {"datetaken": "2007-01-06 14:50:04", "license": "3", "title": "12/13", "text": "", "album_id": "72157594469687683", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/351831172_7b3f8c5ea0_o.jpg", "secret": "7b3f8c5ea0", "media": "photo", "latitude": "0", "id": "351831172", "tags": "oooohcanwekeepitpleaseplease"}, {"datetaken": "2007-01-06 15:54:29", "license": "3", "title": "8/13", "text": "", "album_id": "72157594469687683", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/351825138_225710e40f_o.jpg", "secret": "225710e40f", "media": "photo", "latitude": "0", "id": "351825138", "tags": "greencarfast thingstodoinjanuary oooohcanwekeepitpleaseplease instantbondgirl"}, {"datetaken": "2007-01-06 16:56:16", "license": "3", "title": "1/13", "text": "", "album_id": "72157594469687683", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/351828543_248164c630_o.jpg", "secret": "248164c630", "media": "photo", "latitude": "0", "id": "351828543", "tags": "greencarfast thingstodoinjanuary oooohcanwekeepitpleaseplease instantbondgirl"}, {"datetaken": "2007-01-06 17:14:38", "license": "3", "title": "5/13", "text": "", "album_id": "72157594469687683", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/351826812_7cd8cd2080_o.jpg", "secret": "7cd8cd2080", "media": "photo", "latitude": "0", "id": "351826812", "tags": "greencarfast thingstodoinjanuary oooohcanwekeepitpleaseplease instantbondgirl"}, {"datetaken": "2007-01-06 17:18:42", "license": "3", "title": "2/13", "text": "", "album_id": "72157594469687683", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/351828273_34f459f880_o.jpg", "secret": "34f459f880", "media": "photo", "latitude": "0", "id": "351828273", "tags": "greencarfast thingstodoinjanuary oooohcanwekeepitpleaseplease instantbondgirl"}, {"datetaken": "2007-01-06 17:32:08", "license": "3", "title": "13/13", "text": "", "album_id": "72157594469687683", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/351830847_f807fac01b_o.jpg", "secret": "f807fac01b", "media": "photo", "latitude": "0", "id": "351830847", "tags": "britishracinggreen apicaday greencarfast thingstodoinjanuary oooohcanwekeepitpleaseplease instantbondgirl"}, {"datetaken": "2006-06-24 09:28:39", "license": "2", "title": "IMG_8938", "text": "", "album_id": "72157594480294603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/353916430_ab29b46f78_o.jpg", "secret": "ab29b46f78", "media": "photo", "latitude": "0", "id": "353916430", "tags": "canon cycling pescadero canon70200f4l 30d canon30d pescaderoroadrace haskinshill"}, {"datetaken": "2006-06-24 09:28:47", "license": "2", "title": "IMG_8943", "text": "", "album_id": "72157594480294603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/353919498_a76e271817_o.jpg", "secret": "a76e271817", "media": "photo", "latitude": "0", "id": "353919498", "tags": "canon cycling pescadero webcor canon70200f4l 30d canon30d altovelo pescaderoroadrace haskinshill"}, {"datetaken": "2006-06-24 09:37:31", "license": "2", "title": "IMG_9011", "text": "", "album_id": "72157594480294603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/353949921_6e365e230a_o.jpg", "secret": "6e365e230a", "media": "photo", "latitude": "0", "id": "353949921", "tags": "canon cycling pescadero canon70200f4l 30d canon30d pescaderoroadrace haskinshill"}, {"datetaken": "2006-06-24 09:42:36", "license": "2", "title": "IMG_9031", "text": "", "album_id": "72157594480294603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/353955998_fd6d0a8033_o.jpg", "secret": "fd6d0a8033", "media": "photo", "latitude": "0", "id": "353955998", "tags": "canon cycling pescadero canon70200f4l 30d canon30d pescaderoroadrace haskinshill"}, {"datetaken": "2006-06-24 09:42:37", "license": "2", "title": "IMG_9032", "text": "", "album_id": "72157594480294603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/353956801_0c578ed502_o.jpg", "secret": "0c578ed502", "media": "photo", "latitude": "0", "id": "353956801", "tags": "canon cycling pescadero canon70200f4l 30d canon30d pescaderoroadrace haskinshill"}, {"datetaken": "2006-06-24 09:50:36", "license": "2", "title": "IMG_9059", "text": "", "album_id": "72157594480294603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/354045499_3c4604d443_o.jpg", "secret": "3c4604d443", "media": "photo", "latitude": "0", "id": "354045499", "tags": "canon cycling pescadero canon70200f4l 30d canon30d pescaderoroadrace haskinshill"}, {"datetaken": "2006-06-24 09:58:09", "license": "2", "title": "IMG_9130", "text": "", "album_id": "72157594480294603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/354103833_3608c6e671_o.jpg", "secret": "3608c6e671", "media": "photo", "latitude": "0", "id": "354103833", "tags": "canon cycling pescadero webcor canon70200f4l 30d canon30d altovelo pescaderoroadrace haskinshill"}, {"datetaken": "2006-06-24 09:58:19", "license": "2", "title": "IMG_9145", "text": "", "album_id": "72157594480294603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/354111090_3ee50e03ed_o.jpg", "secret": "3ee50e03ed", "media": "photo", "latitude": "0", "id": "354111090", "tags": "canon cycling pescadero canon70200f4l 30d canon30d pescaderoroadrace haskinshill davisbikeclub"}, {"datetaken": "2006-06-24 09:58:52", "license": "2", "title": "IMG_9162", "text": "", "album_id": "72157594480294603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/354119936_08beba1230_o.jpg", "secret": "08beba1230", "media": "photo", "latitude": "0", "id": "354119936", "tags": "canon cycling pescadero canon70200f4l 30d canon30d lombardisports pescaderoroadrace haskinshill"}, {"datetaken": "2006-06-24 09:59:13", "license": "2", "title": "IMG_9169", "text": "", "album_id": "72157594480294603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/354159185_33a1071901_o.jpg", "secret": "33a1071901", "media": "photo", "latitude": "0", "id": "354159185", "tags": "canon cycling pescadero canon70200f4l 30d canon30d peninsulavelo pescaderoroadrace haskinshill"}, {"datetaken": "2006-06-24 10:01:56", "license": "2", "title": "IMG_9174", "text": "", "album_id": "72157594480294603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/354161967_e55d92b5a4_o.jpg", "secret": "e55d92b5a4", "media": "photo", "latitude": "0", "id": "354161967", "tags": "canon cycling pescadero canon70200f4l 30d canon30d lombardisports pescaderoroadrace haskinshill"}, {"datetaken": "2006-06-24 10:08:22", "license": "2", "title": "IMG_9206", "text": "", "album_id": "72157594480294603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/354298643_bae46b593a_o.jpg", "secret": "bae46b593a", "media": "photo", "latitude": "0", "id": "354298643", "tags": "canon cycling pescadero webcor canon70200f4l 30d canon30d altovelo pescaderoroadrace haskinshill"}, {"datetaken": "2006-06-24 10:14:06", "license": "2", "title": "IMG_9219", "text": "", "album_id": "72157594480294603", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/354305634_2370f64535_o.jpg", "secret": "2370f64535", "media": "photo", "latitude": "0", "id": "354305634", "tags": "canon cycling pescadero canon70200f4l 30d emc canon30d pescaderoroadrace haskinshill"}, {"datetaken": "2012-01-01 12:09:23", "license": "2", "title": "IMG_9372", "text": "", "album_id": "72157628828831189", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7166/6679138833_7e4a47a437_o.jpg", "secret": "880dd07acd", "media": "photo", "latitude": "0", "id": "6679138833", "tags": "race run laufen merseburg laufsport neujahrslauf"}, {"datetaken": "2012-01-01 12:13:39", "license": "2", "title": "IMG_9386", "text": "", "album_id": "72157628828831189", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7021/6679144201_40dd9968e6_o.jpg", "secret": "3fcb64ee7a", "media": "photo", "latitude": "0", "id": "6679144201", "tags": "race run laufen merseburg laufsport neujahrslauf"}, {"datetaken": "2012-01-01 12:15:24", "license": "2", "title": "IMG_9392", "text": "", "album_id": "72157628828831189", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7162/6679148865_14a6f8857f_o.jpg", "secret": "372a83f724", "media": "photo", "latitude": "0", "id": "6679148865", "tags": "race run laufen merseburg laufsport neujahrslauf"}, {"datetaken": "2012-01-01 12:15:30", "license": "2", "title": "IMG_9393", "text": "", "album_id": "72157628828831189", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7025/6679154445_9f51b45b41_o.jpg", "secret": "7522693a9d", "media": "photo", "latitude": "0", "id": "6679154445", "tags": "race run laufen merseburg laufsport neujahrslauf"}, {"datetaken": "2012-01-01 12:15:40", "license": "2", "title": "IMG_9394", "text": "", "album_id": "72157628828831189", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7162/6679159257_d9ede0ba25_o.jpg", "secret": "cc1fcbea35", "media": "photo", "latitude": "0", "id": "6679159257", "tags": "race run laufen merseburg laufsport neujahrslauf"}, {"datetaken": "2012-01-01 12:15:51", "license": "2", "title": "IMG_9395", "text": "", "album_id": "72157628828831189", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7148/6679164365_cdbea824cf_o.jpg", "secret": "56ceb55df5", "media": "photo", "latitude": "0", "id": "6679164365", "tags": "race run laufen merseburg laufsport neujahrslauf"}, {"datetaken": "2012-01-01 12:16:28", "license": "2", "title": "IMG_9399", "text": "", "album_id": "72157628828831189", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7145/6679166943_ece1c61e6d_o.jpg", "secret": "93ab50edd6", "media": "photo", "latitude": "0", "id": "6679166943", "tags": "race run laufen merseburg laufsport neujahrslauf"}, {"datetaken": "2012-01-01 12:19:26", "license": "2", "title": "IMG_9406", "text": "", "album_id": "72157628828831189", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7163/6679171745_a07e74c1a3_o.jpg", "secret": "125424fd8b", "media": "photo", "latitude": "0", "id": "6679171745", "tags": "race run laufen merseburg laufsport neujahrslauf"}, {"datetaken": "2012-01-01 12:19:44", "license": "2", "title": "IMG_9407", "text": "", "album_id": "72157628828831189", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7022/6679175877_f510ec3d2f_o.jpg", "secret": "8d44d46f57", "media": "photo", "latitude": "0", "id": "6679175877", "tags": "race run laufen merseburg laufsport neujahrslauf"}, {"datetaken": "2012-01-01 12:55:56", "license": "2", "title": "IMG_9424", "text": "", "album_id": "72157628828831189", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7027/6679178631_384ea21f00_o.jpg", "secret": "bc134a2d16", "media": "photo", "latitude": "0", "id": "6679178631", "tags": "race run laufen merseburg laufsport neujahrslauf"}, {"datetaken": "2012-01-01 12:58:00", "license": "2", "title": "IMG_9427", "text": "", "album_id": "72157628828831189", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7158/6679181549_9147b11df6_o.jpg", "secret": "a4345887ce", "media": "photo", "latitude": "0", "id": "6679181549", "tags": "race run laufen merseburg laufsport neujahrslauf"}, {"datetaken": "2012-01-01 12:59:46", "license": "2", "title": "IMG_9429", "text": "", "album_id": "72157628828831189", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7032/6679184879_d30edeb0ce_o.jpg", "secret": "05e2227aa5", "media": "photo", "latitude": "0", "id": "6679184879", "tags": "race run laufen merseburg laufsport neujahrslauf"}, {"datetaken": "2012-01-01 13:01:06", "license": "2", "title": "IMG_9430", "text": "", "album_id": "72157628828831189", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7175/6679188189_bc849d40e2_o.jpg", "secret": "82438581e7", "media": "photo", "latitude": "0", "id": "6679188189", "tags": "race run laufen merseburg laufsport neujahrslauf"}, {"datetaken": "2012-01-01 13:01:29", "license": "2", "title": "IMG_9431", "text": "", "album_id": "72157628828831189", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7147/6679189429_0fe5429777_o.jpg", "secret": "fdc129179e", "media": "photo", "latitude": "0", "id": "6679189429", "tags": "race run laufen merseburg laufsport neujahrslauf"}, {"datetaken": "2006-12-19 14:53:05", "license": "1", "title": "20061219-Norco_CCX_1-010.jpg", "text": "", "album_id": "72157594478267519", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/356623986_e66664e824_o.jpg", "secret": "e66664e824", "media": "photo", "latitude": "0", "id": "356623986", "tags": "norco momentum ccx"}, {"datetaken": "2006-12-19 14:53:57", "license": "1", "title": "20061219-Norco_CCX_1-012.jpg", "text": "", "album_id": "72157594478267519", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/356624143_f468ac70f5_o.jpg", "secret": "f468ac70f5", "media": "photo", "latitude": "0", "id": "356624143", "tags": "norco momentum ccx"}, {"datetaken": "2006-12-19 14:58:05", "license": "1", "title": "20061219-Norco_CCX_1-016.jpg", "text": "", "album_id": "72157594478267519", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/356619836_05d491fca3_o.jpg", "secret": "05d491fca3", "media": "photo", "latitude": "0", "id": "356619836", "tags": "norco momentum ccx"}, {"datetaken": "2006-12-19 14:59:52", "license": "1", "title": "20061219-Norco_CCX_1-018.jpg", "text": "", "album_id": "72157594478267519", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/356657618_f92ff6c286_o.jpg", "secret": "f92ff6c286", "media": "photo", "latitude": "0", "id": "356657618", "tags": ""}, {"datetaken": "2006-12-19 15:07:58", "license": "1", "title": "20061219-Norco_CCX_1-026.jpg", "text": "", "album_id": "72157594478267519", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/356624064_77b4dcc90f_o.jpg", "secret": "77b4dcc90f", "media": "photo", "latitude": "0", "id": "356624064", "tags": "norco momentum ccx"}, {"datetaken": "2006-12-19 15:50:57", "license": "1", "title": "20061219-Norco_CCX_1-069.jpg", "text": "", "album_id": "72157594478267519", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/356619886_a1d7a85265_o.jpg", "secret": "a1d7a85265", "media": "photo", "latitude": "0", "id": "356619886", "tags": "norco momentum ccx"}, {"datetaken": "2006-12-19 16:57:59", "license": "1", "title": "20061219-Norco_CCX_2-008.jpg", "text": "", "album_id": "72157594478267519", "longitude": "-123.104499", "url_o": "https://farm1.staticflickr.com/159/356643961_985920c4c8_o.jpg", "secret": "985920c4c8", "media": "photo", "latitude": "49.282822", "id": "356643961", "tags": "norco momentum ccx"}, {"datetaken": "2006-12-19 17:02:02", "license": "1", "title": "20061219-Norco_CCX_2-023.jpg", "text": "", "album_id": "72157594478267519", "longitude": "-123.104499", "url_o": "https://farm1.staticflickr.com/136/356641551_3dab775379_o.jpg", "secret": "3dab775379", "media": "photo", "latitude": "49.282822", "id": "356641551", "tags": "norco momentum ccx"}, {"datetaken": "2006-12-19 17:13:50", "license": "1", "title": "20061219-Norco_CCX_2-029.jpg", "text": "", "album_id": "72157594478267519", "longitude": "-123.104499", "url_o": "https://farm1.staticflickr.com/137/356641497_fe32f50972_o.jpg", "secret": "fe32f50972", "media": "photo", "latitude": "49.282822", "id": "356641497", "tags": "norco momentum ccx"}, {"datetaken": "2006-12-19 17:16:51", "license": "1", "title": "20061219-Norco_CCX_2-030.jpg", "text": "", "album_id": "72157594478267519", "longitude": "-123.104499", "url_o": "https://farm1.staticflickr.com/134/356644011_aa6c602425_o.jpg", "secret": "aa6c602425", "media": "photo", "latitude": "49.282822", "id": "356644011", "tags": "norco momentum ccx"}, {"datetaken": "2006-12-19 17:17:07", "license": "1", "title": "20061219-Norco_CCX_2-031.jpg", "text": "", "album_id": "72157594478267519", "longitude": "-123.104499", "url_o": "https://farm1.staticflickr.com/163/356645435_75cc0614bd_o.jpg", "secret": "75cc0614bd", "media": "photo", "latitude": "49.282822", "id": "356645435", "tags": "norco momentum ccx"}, {"datetaken": "2006-12-19 17:17:08", "license": "1", "title": "20061219-Norco_CCX_2-032.jpg", "text": "", "album_id": "72157594478267519", "longitude": "-123.104499", "url_o": "https://farm1.staticflickr.com/137/356645524_ab874f253f_o.jpg", "secret": "ab874f253f", "media": "photo", "latitude": "49.282822", "id": "356645524", "tags": "norco momentum ccx"}, {"datetaken": "2006-12-19 17:17:08", "license": "1", "title": "20061219-Norco_CCX_2-032.jpg", "text": "", "album_id": "72157594478267519", "longitude": "-123.104499", "url_o": "https://farm1.staticflickr.com/165/356649729_d6b8fb15ec_o.jpg", "secret": "d6b8fb15ec", "media": "photo", "latitude": "49.282822", "id": "356649729", "tags": "norco momentum ccx"}, {"datetaken": "2006-12-19 17:17:19", "license": "1", "title": "20061219-Norco_CCX_2-034.jpg", "text": "", "album_id": "72157594478267519", "longitude": "-123.104499", "url_o": "https://farm1.staticflickr.com/166/356647100_5251df7d09_o.jpg", "secret": "5251df7d09", "media": "photo", "latitude": "49.282822", "id": "356647100", "tags": "norco momentum ccx"}, {"datetaken": "2006-12-19 17:22:49", "license": "1", "title": "20061219-Norco_CCX_2-046.jpg", "text": "", "album_id": "72157594478267519", "longitude": "-123.104499", "url_o": "https://farm1.staticflickr.com/163/356647150_1ff8e15c6e_o.jpg", "secret": "1ff8e15c6e", "media": "photo", "latitude": "49.282822", "id": "356647150", "tags": "norco momentum ccx"}, {"datetaken": "2006-12-19 17:22:58", "license": "1", "title": "20061219-Norco_CCX_2-047.jpg", "text": "", "album_id": "72157594478267519", "longitude": "-123.104499", "url_o": "https://farm1.staticflickr.com/126/356649679_bd91e2562b_o.jpg", "secret": "bd91e2562b", "media": "photo", "latitude": "49.282822", "id": "356649679", "tags": "norco momentum ccx"}, {"datetaken": "2010-03-13 10:32:08", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4428928137_a914e3167b_o.jpg", "secret": "c960482b32", "media": "photo", "latitude": "0", "id": "4428928137", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 10:33:03", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4429693486_65da17113b_o.jpg", "secret": "1358ef5117", "media": "photo", "latitude": "0", "id": "4429693486", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 10:33:19", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4428928247_300295ef34_o.jpg", "secret": "ec408892c4", "media": "photo", "latitude": "0", "id": "4428928247", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 10:36:19", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4429693576_acfec3475e_o.jpg", "secret": "ed2d5f243e", "media": "photo", "latitude": "0", "id": "4429693576", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 10:46:33", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4428928605_cb88b575e8_o.jpg", "secret": "9729460d24", "media": "photo", "latitude": "0", "id": "4428928605", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 11:57:46", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4430213244_08c9f59f2e_o.jpg", "secret": "fb929f8573", "media": "video", "latitude": "0", "id": "4430213244", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 12:07:52", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4429468495_a7944a3639_o.jpg", "secret": "675f021d80", "media": "video", "latitude": "0", "id": "4429468495", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 15:14:56", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4429468947_a9b98d779c_o.jpg", "secret": "daa029ae83", "media": "photo", "latitude": "0", "id": "4429468947", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 15:15:28", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/4429469041_9f640d7cc7_o.jpg", "secret": "18fdbdf104", "media": "photo", "latitude": "0", "id": "4429469041", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 15:16:53", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4429469165_79b89d6927_o.jpg", "secret": "167736ecfb", "media": "photo", "latitude": "0", "id": "4429469165", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 15:18:47", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4429469277_e6f3d7cebb_o.jpg", "secret": "7ca7ec284d", "media": "photo", "latitude": "0", "id": "4429469277", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 15:19:08", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2747/4429469419_55e989d6c9_o.jpg", "secret": "d0664b9b99", "media": "photo", "latitude": "0", "id": "4429469419", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 15:20:01", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4430235726_b4b797a62b_o.jpg", "secret": "38b810a1ce", "media": "photo", "latitude": "0", "id": "4430235726", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 15:25:22", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4430235830_1b331d4154_o.jpg", "secret": "34ea2e1e08", "media": "photo", "latitude": "0", "id": "4430235830", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 15:25:40", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4429469765_4b4e902dc3_o.jpg", "secret": "d4e28b0b8c", "media": "photo", "latitude": "0", "id": "4429469765", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 15:28:07", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4430236054_a8a73849df_o.jpg", "secret": "154c1790a4", "media": "photo", "latitude": "0", "id": "4430236054", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 16:51:06", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2788/4431943164_e6a96a4811_o.jpg", "secret": "62234e5875", "media": "photo", "latitude": "0", "id": "4431943164", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 18:13:51", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4431173499_8280655541_o.jpg", "secret": "d64ffbfe3b", "media": "photo", "latitude": "0", "id": "4431173499", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 18:15:20", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2749/4431946332_3f6e01a033_o.jpg", "secret": "809f655c27", "media": "photo", "latitude": "0", "id": "4431946332", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 18:15:33", "license": "1", "title": "curva S do Samba", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4431947546_8fec4f09ff_o.jpg", "secret": "96f05d40fe", "media": "photo", "latitude": "0", "id": "4431947546", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 18:21:36", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4431951870_0a104389e7_o.jpg", "secret": "7aa03aa3b3", "media": "photo", "latitude": "0", "id": "4431951870", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 18:22:12", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4431182939_4e0d107bbd_o.jpg", "secret": "4bb6f6a604", "media": "photo", "latitude": "0", "id": "4431182939", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 18:24:08", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4431184735_d93e99a7bd_o.jpg", "secret": "5b40a8b741", "media": "photo", "latitude": "0", "id": "4431184735", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-13 18:25:08", "license": "1", "title": "obras na reta do samba", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4431187259_8aed6bdf1f_o.jpg", "secret": "bd9d4d10d0", "media": "photo", "latitude": "0", "id": "4431187259", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-14 07:21:12", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4431187809_b2a7f2de51_o.jpg", "secret": "640cb9e368", "media": "photo", "latitude": "0", "id": "4431187809", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-14 07:21:30", "license": "1", "title": "curva da marginal", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4431958874_9be116e5aa_o.jpg", "secret": "afc12fd226", "media": "photo", "latitude": "0", "id": "4431958874", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-14 07:21:46", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4431188101_8f885e1885_o.jpg", "secret": "b6b2573f3d", "media": "photo", "latitude": "0", "id": "4431188101", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-14 07:22:29", "license": "1", "title": "", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4431959150_f30c383344_o.jpg", "secret": "4af5250413", "media": "photo", "latitude": "0", "id": "4431959150", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-14 07:22:42", "license": "1", "title": "Samb\u00f3dromo do Anhembi", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4431959290_092200da6b_o.jpg", "secret": "2e40c6629c", "media": "photo", "latitude": "0", "id": "4431959290", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2010-03-14 07:27:49", "license": "1", "title": "Samb\u00f3dromo do Anhembi", "text": "", "album_id": "72157623488622261", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4431188505_14ff33e3cf_o.jpg", "secret": "520ff8ff07", "media": "photo", "latitude": "0", "id": "4431188505", "tags": "brazil southamerica brasil race track saopaulo indy racing sp pista corrida formulaindy anhembi cobertura sp300"}, {"datetaken": "2007-01-05 19:35:11", "license": "3", "title": "Group pose", "text": "", "album_id": "72157594481468253", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/358610181_c24ebde6a9_o.jpg", "secret": "c24ebde6a9", "media": "photo", "latitude": "0", "id": "358610181", "tags": "rally airstream topsail"}, {"datetaken": "2007-01-06 12:26:41", "license": "3", "title": "Wendimere, Cricket, and Airstream", "text": "", "album_id": "72157594481468253", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/358609806_125f3a841f_o.jpg", "secret": "125f3a841f", "media": "photo", "latitude": "0", "id": "358609806", "tags": "rally airstream topsail"}, {"datetaken": "2007-01-06 12:41:30", "license": "3", "title": "The Health Chic's trailer", "text": "", "album_id": "72157594481468253", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/358610295_f8172308f9_o.jpg", "secret": "f8172308f9", "media": "photo", "latitude": "0", "id": "358610295", "tags": "rally airstream topsail"}, {"datetaken": "2007-01-06 16:00:05", "license": "3", "title": "Sharing the Internet", "text": "", "album_id": "72157594481468253", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/358611208_9c0f54065e_o.jpg", "secret": "9c0f54065e", "media": "photo", "latitude": "0", "id": "358611208", "tags": "rally airstream topsail"}, {"datetaken": "2007-01-06 19:03:43", "license": "3", "title": "Wendimere at night", "text": "", "album_id": "72157594481468253", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/358610393_e984cc897d_o.jpg", "secret": "e984cc897d", "media": "photo", "latitude": "0", "id": "358610393", "tags": "rally airstream topsail"}, {"datetaken": "2007-01-06 21:16:52", "license": "3", "title": "Klattu's patriotic motorhome", "text": "", "album_id": "72157594481468253", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/358610481_cd1b428a0b_o.jpg", "secret": "cd1b428a0b", "media": "photo", "latitude": "0", "id": "358610481", "tags": "rally airstream topsail"}, {"datetaken": "2007-01-06 21:32:47", "license": "3", "title": "Steve, Misty, and Breanna", "text": "", "album_id": "72157594481468253", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/358610576_915a3dc178_o.jpg", "secret": "915a3dc178", "media": "photo", "latitude": "0", "id": "358610576", "tags": "rally airstream topsail"}, {"datetaken": "2007-01-07 09:36:50", "license": "3", "title": "Roy and Sarah", "text": "", "album_id": "72157594481468253", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/358610837_e509cb686a_o.jpg", "secret": "e509cb686a", "media": "photo", "latitude": "0", "id": "358610837", "tags": "rally airstream topsail"}, {"datetaken": "2007-01-07 09:40:18", "license": "3", "title": "Herb, Rich, and Joe", "text": "", "album_id": "72157594481468253", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/358611015_ac54f1c0e6_o.jpg", "secret": "ac54f1c0e6", "media": "photo", "latitude": "0", "id": "358611015", "tags": "rally airstream topsail"}, {"datetaken": "2007-01-07 10:24:24", "license": "3", "title": "Pink flamingos gather for breakfast", "text": "", "album_id": "72157594481468253", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/358611370_3621833ced_o.jpg", "secret": "3621833ced", "media": "photo", "latitude": "0", "id": "358611370", "tags": "rally airstream pajamas topsail"}, {"datetaken": "2007-01-07 14:23:54", "license": "3", "title": "Bike race", "text": "", "album_id": "72157594481468253", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/358609959_b9da6b66de_o.jpg", "secret": "b9da6b66de", "media": "photo", "latitude": "0", "id": "358609959", "tags": "rally airstream topsail"}, {"datetaken": "2007-01-07 14:35:18", "license": "3", "title": "Emma and Joe at the beach", "text": "", "album_id": "72157594481468253", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/358610639_63ca343954_o.jpg", "secret": "63ca343954", "media": "photo", "latitude": "0", "id": "358610639", "tags": "rally airstream topsail"}, {"datetaken": "2007-01-07 14:39:01", "license": "3", "title": "Emma on the beach", "text": "", "album_id": "72157594481468253", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/358610039_0615040551_o.jpg", "secret": "0615040551", "media": "photo", "latitude": "0", "id": "358610039", "tags": "rally airstream topsail"}, {"datetaken": "2005-05-14 16:59:00", "license": "3", "title": "Strap..On", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14046279_695134463c_o.jpg", "secret": "695134463c", "media": "photo", "latitude": "0", "id": "14046279", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 18:11:37", "license": "3", "title": "Thanks for driving Cruser", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14046287_5aa9b2c380_o.jpg", "secret": "5aa9b2c380", "media": "photo", "latitude": "0", "id": "14046287", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 18:30:52", "license": "3", "title": "Pre - Race", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14046303_4800fc342b_o.jpg", "secret": "4800fc342b", "media": "photo", "latitude": "0", "id": "14046303", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 19:22:43", "license": "3", "title": "Monica", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14046311_0163fff238_o.jpg", "secret": "0163fff238", "media": "photo", "latitude": "0", "id": "14046311", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 19:23:58", "license": "3", "title": "Magna, work on", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14046317_52ec7e4b11_o.jpg", "secret": "52ec7e4b11", "media": "photo", "latitude": "0", "id": "14046317", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 19:36:50", "license": "3", "title": "Blow your nose", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14046322_4c7b0c28c8_o.jpg", "secret": "4c7b0c28c8", "media": "photo", "latitude": "0", "id": "14046322", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 19:38:00", "license": "3", "title": "Watch out!", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14046337_2f74aec9fe_o.jpg", "secret": "2f74aec9fe", "media": "photo", "latitude": "0", "id": "14046337", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 19:39:01", "license": "3", "title": "Which way do we go?", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14046343_88226ac612_o.jpg", "secret": "88226ac612", "media": "photo", "latitude": "0", "id": "14046343", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 19:39:32", "license": "3", "title": "And they're off", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14046348_7191515ba4_o.jpg", "secret": "7191515ba4", "media": "photo", "latitude": "0", "id": "14046348", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 19:55:13", "license": "3", "title": "No drafters today", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14046353_e4ab6f7ecb_o.jpg", "secret": "e4ab6f7ecb", "media": "photo", "latitude": "0", "id": "14046353", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 19:55:16", "license": "3", "title": "Swim exit", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14046357_1758704e2c_o.jpg", "secret": "1758704e2c", "media": "photo", "latitude": "0", "id": "14046357", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 19:55:21", "license": "3", "title": "Come on wetsuit", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14046363_c39137c031_o.jpg", "secret": "c39137c031", "media": "photo", "latitude": "0", "id": "14046363", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 19:56:09", "license": "3", "title": "Todd Anderson", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14046369_0f2fac6b6d_o.jpg", "secret": "0f2fac6b6d", "media": "photo", "latitude": "0", "id": "14046369", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 20:04:19", "license": "3", "title": "Mini Chavez", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14046374_e08b4b18ea_o.jpg", "secret": "e08b4b18ea", "media": "photo", "latitude": "0", "id": "14046374", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 20:39:04", "license": "3", "title": "Where are my shoes?", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14046386_6dc08f09bc_o.jpg", "secret": "6dc08f09bc", "media": "photo", "latitude": "0", "id": "14046386", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 20:39:45", "license": "3", "title": "Let the 5 miles begin", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14046390_c37e3a9ca5_o.jpg", "secret": "c37e3a9ca5", "media": "photo", "latitude": "0", "id": "14046390", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 21:10:54", "license": "3", "title": "Home sweet Home", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14046397_ba2020c891_o.jpg", "secret": "ba2020c891", "media": "photo", "latitude": "0", "id": "14046397", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 21:13:25", "license": "3", "title": "Magna catching his breath", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14046402_3e199d438c_o.jpg", "secret": "3e199d438c", "media": "photo", "latitude": "0", "id": "14046402", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 21:13:46", "license": "3", "title": "Post Race cooling down", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14046406_c555c15f8a_o.jpg", "secret": "c555c15f8a", "media": "photo", "latitude": "0", "id": "14046406", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 23:17:03", "license": "3", "title": "Magna 2nd in 25 - 29 men", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14046420_97cfcef89b_o.jpg", "secret": "97cfcef89b", "media": "photo", "latitude": "0", "id": "14046420", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 23:17:08", "license": "3", "title": "Magna getting his new backpack", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/14046428_52fb010c0e_o.jpg", "secret": "52fb010c0e", "media": "photo", "latitude": "0", "id": "14046428", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 23:35:33", "license": "3", "title": "Cruser Victorious", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14046433_7752e216b0_o.jpg", "secret": "7752e216b0", "media": "photo", "latitude": "0", "id": "14046433", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2005-05-14 23:43:10", "license": "3", "title": "Tired Bike", "text": "", "album_id": "339963", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14046277_783843cca4_o.jpg", "secret": "783843cca4", "media": "photo", "latitude": "0", "id": "14046277", "tags": "swim bike run south uvas fmrc triathlon bay"}, {"datetaken": "2010-02-21 10:49:54", "license": "6", "title": "Cyclo Frost 2010", "text": "", "album_id": "72157623363773341", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4380137370_e9587437ec_o.jpg", "secret": "e367113569", "media": "photo", "latitude": "0", "id": "4380137370", "tags": "winter snow wisconsin race bikes capitol madison cyclocross 2010 madisonwinterfestival cyclofrost"}, {"datetaken": "2010-02-21 10:53:21", "license": "6", "title": "Cyclo Frost 2010", "text": "", "album_id": "72157623363773341", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4379381623_67f52f359d_o.jpg", "secret": "e3b7ef311f", "media": "photo", "latitude": "0", "id": "4379381623", "tags": "winter snow wisconsin race bikes capitol madison cyclocross 2010 madisonwinterfestival cyclofrost"}, {"datetaken": "2010-02-21 10:54:15", "license": "6", "title": "Cyclo Frost 2010", "text": "", "album_id": "72157623363773341", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4380138230_934d468ca7_o.jpg", "secret": "96c2d1dcb1", "media": "photo", "latitude": "0", "id": "4380138230", "tags": "winter snow wisconsin race bikes capitol madison cyclocross 2010 madisonwinterfestival cyclofrost"}, {"datetaken": "2010-02-21 10:55:12", "license": "6", "title": "Cyclo Frost 2010", "text": "", "album_id": "72157623363773341", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4380138628_391e0696bd_o.jpg", "secret": "b66b7af546", "media": "photo", "latitude": "0", "id": "4380138628", "tags": "winter snow wisconsin race bikes capitol madison cyclocross 2010 madisonwinterfestival cyclofrost"}, {"datetaken": "2010-02-21 10:59:06", "license": "6", "title": "Cyclo Frost 2010", "text": "", "album_id": "72157623363773341", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4379382667_23de63b26d_o.jpg", "secret": "6c536c2708", "media": "photo", "latitude": "0", "id": "4379382667", "tags": "winter snow wisconsin race bikes capitol madison cyclocross 2010 madisonwinterfestival cyclofrost"}, {"datetaken": "2010-02-21 11:02:51", "license": "6", "title": "Cyclo Frost 2010", "text": "", "album_id": "72157623363773341", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2727/4380139306_17d5dba832_o.jpg", "secret": "978db86d98", "media": "photo", "latitude": "0", "id": "4380139306", "tags": "winter snow wisconsin race bikes capitol madison cyclocross 2010 madisonwinterfestival cyclofrost"}, {"datetaken": "2010-02-21 11:14:24", "license": "6", "title": "A dog in winter", "text": "", "album_id": "72157623363773341", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4380139512_3d0ba0082f_o.jpg", "secret": "a900f0d8af", "media": "photo", "latitude": "0", "id": "4380139512", "tags": "winter blackandwhite bw dog snow wisconsin race bikes capitol madison cyclocross 2010 wetpavement madisonwinterfestival cyclofrost"}, {"datetaken": "2010-02-21 11:15:28", "license": "6", "title": "Toddler vs. snowshoes", "text": "", "album_id": "72157623363773341", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2804/4379383477_fa2da2c97e_o.jpg", "secret": "f44c894137", "media": "photo", "latitude": "0", "id": "4379383477", "tags": "winter blackandwhite bw snow wisconsin race toddler bikes capitol madison snowshoes cyclocross 2010 madisonwinterfestival cyclofrost"}, {"datetaken": "2010-02-21 11:48:10", "license": "6", "title": "Cyclo Frost 2010", "text": "", "album_id": "72157623363773341", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4380140120_2ae481cb3c_o.jpg", "secret": "8de3aa6792", "media": "photo", "latitude": "0", "id": "4380140120", "tags": "winter snow wisconsin race bikes capitol madison cyclocross 2010 madisonwinterfestival cyclofrost"}, {"datetaken": "2010-02-21 11:55:34", "license": "6", "title": "Cyclo Frost 2010", "text": "", "album_id": "72157623363773341", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4379384279_624ee9fb04_o.jpg", "secret": "e5059891ac", "media": "photo", "latitude": "0", "id": "4379384279", "tags": "winter snow wisconsin race bikes capitol madison cyclocross 2010 madisonwinterfestival cyclofrost"}, {"datetaken": "2010-02-21 11:56:20", "license": "6", "title": "Cyclo Frost 2010", "text": "", "album_id": "72157623363773341", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4379384595_271e8b75ed_o.jpg", "secret": "458da62802", "media": "photo", "latitude": "0", "id": "4379384595", "tags": "winter snow wisconsin race bikes capitol madison cyclocross 2010 madisonwinterfestival cyclofrost"}, {"datetaken": "2010-02-21 12:03:28", "license": "6", "title": "Cyclo Frost 2010", "text": "", "album_id": "72157623363773341", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4380141170_87922d0cac_o.jpg", "secret": "663a3974b1", "media": "photo", "latitude": "0", "id": "4380141170", "tags": "winter snow wisconsin race bikes capitol madison cyclocross 2010 madisonwinterfestival cyclofrost"}, {"datetaken": "2010-02-21 12:06:38", "license": "6", "title": "Cyclo Frost 2010", "text": "", "album_id": "72157623363773341", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4380141484_7a77381b6b_o.jpg", "secret": "975311f382", "media": "photo", "latitude": "0", "id": "4380141484", "tags": "winter snow wisconsin race bikes capitol madison cyclocross 2010 madisonwinterfestival cyclofrost"}, {"datetaken": "2010-02-21 12:14:37", "license": "6", "title": "Cyclo Frost 2010", "text": "", "album_id": "72157623363773341", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4380141850_dd066c316f_o.jpg", "secret": "6cc27985ec", "media": "photo", "latitude": "0", "id": "4380141850", "tags": "winter snow wisconsin race bikes capitol madison cyclocross 2010 madisonwinterfestival cyclofrost"}, {"datetaken": "2010-02-24 18:51:23", "license": "3", "title": "aod2010feb23-Stay_5001i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4384689685_be190bd587_o.jpg", "secret": "1c9b4be9b8", "media": "photo", "latitude": "0", "id": "4384689685", "tags": "sportpaleisalkmaar"}, {"datetaken": "2010-02-24 18:51:28", "license": "3", "title": "aod2010feb23-Stay_5021i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4385452738_24e0b95449_o.jpg", "secret": "89a57599bf", "media": "photo", "latitude": "0", "id": "4385452738", "tags": "sammooij bobst\u00f6pler"}, {"datetaken": "2010-02-24 18:51:32", "license": "3", "title": "aod2010feb23-Stay_5029i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2784/4384690059_9cccca9ae4_o.jpg", "secret": "9f090a6fe1", "media": "photo", "latitude": "0", "id": "4384690059", "tags": "sportpaleisalkmaar"}, {"datetaken": "2010-02-24 18:51:36", "license": "3", "title": "aod2010feb23-Stay_5040i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4385453032_0e13d64bfe_o.jpg", "secret": "ebafd7f722", "media": "photo", "latitude": "0", "id": "4385453032", "tags": "patrickbesteman"}, {"datetaken": "2010-02-24 18:51:39", "license": "3", "title": "aod2010feb23-Stay_5050i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4384690337_f9d79acd47_o.jpg", "secret": "8c90fb23f2", "media": "photo", "latitude": "0", "id": "4384690337", "tags": "sammooij bobst\u00f6pler"}, {"datetaken": "2010-02-24 18:51:43", "license": "3", "title": "M2Stay23feb2010aod_5260i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4384690463_57b7d3685d_o.jpg", "secret": "66ce358e03", "media": "photo", "latitude": "0", "id": "4384690463", "tags": "sportpaleisalkmaar"}, {"datetaken": "2010-02-24 18:51:46", "license": "3", "title": "M2Stay23feb2010aod_5290i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4384690583_08a7693b9b_o.jpg", "secret": "a2801d323d", "media": "photo", "latitude": "0", "id": "4384690583", "tags": "sammooij bobst\u00f6pler"}, {"datetaken": "2010-02-24 18:51:50", "license": "3", "title": "M2Stay23feb2010aod_5306i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4384690743_5d9c05c712_o.jpg", "secret": "54f4539f0f", "media": "photo", "latitude": "0", "id": "4384690743", "tags": "patrickkos willemfack"}, {"datetaken": "2010-02-24 18:51:53", "license": "3", "title": "M2Stay23feb2010aod_5309i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2784/4385453630_0ca61195b9_o.jpg", "secret": "34221631b8", "media": "photo", "latitude": "0", "id": "4385453630", "tags": "sammooij bobst\u00f6pler"}, {"datetaken": "2010-02-24 18:51:56", "license": "3", "title": "M2Stay23feb2010aod_5355i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4384690995_ef24eec7ff_o.jpg", "secret": "2fecaa5a3b", "media": "photo", "latitude": "0", "id": "4384690995", "tags": "patrickkos willemfack"}, {"datetaken": "2010-02-24 18:51:59", "license": "3", "title": "M2Stay23feb2010aod_5361i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4384691117_302ba25f34_o.jpg", "secret": "deb62f3233", "media": "photo", "latitude": "0", "id": "4384691117", "tags": "patrickbesteman ren\u00e9kos"}, {"datetaken": "2010-02-24 18:52:02", "license": "3", "title": "M2Stay23feb2010aod_5363i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4385454046_abe6d1faa7_o.jpg", "secret": "82dee8c322", "media": "photo", "latitude": "0", "id": "4385454046", "tags": "ceesstam timvdzanden"}, {"datetaken": "2010-02-24 18:52:06", "license": "3", "title": "M2Stay23feb2010aod_5372i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4384691375_5c6c350c6e_o.jpg", "secret": "eb76ec8673", "media": "photo", "latitude": "0", "id": "4384691375", "tags": "sammooij bobst\u00f6pler"}, {"datetaken": "2010-02-24 18:52:09", "license": "3", "title": "M2Stay23feb2010aod_5375i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2757/4384691505_17cc143354_o.jpg", "secret": "7af7e6f96b", "media": "photo", "latitude": "0", "id": "4384691505", "tags": "patrickkos willemfack"}, {"datetaken": "2010-02-24 18:52:13", "license": "3", "title": "M2Stay23feb2010aod_5380i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2732/4385454450_8122c67b08_o.jpg", "secret": "907d14680f", "media": "photo", "latitude": "0", "id": "4385454450", "tags": "patrickbesteman bobst\u00f6pler"}, {"datetaken": "2010-02-24 18:52:18", "license": "3", "title": "M2Stay23feb2010aod_5381i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2692/4385454606_1a4b23742e_o.jpg", "secret": "6a680b3ebb", "media": "photo", "latitude": "0", "id": "4385454606", "tags": "patrickbesteman bobst\u00f6pler"}, {"datetaken": "2010-02-24 18:52:21", "license": "3", "title": "M2Stay23feb2010aod_5386i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4385454736_362d5879d7_o.jpg", "secret": "fa5dab4650", "media": "photo", "latitude": "0", "id": "4385454736", "tags": "patrickbesteman bobst\u00f6pler"}, {"datetaken": "2010-02-24 18:52:25", "license": "3", "title": "M2Stay23feb2010aod_5411i", "text": "", "album_id": "72157623501489774", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/4384692091_878ac5a1df_o.jpg", "secret": "f497a7d440", "media": "photo", "latitude": "0", "id": "4384692091", "tags": "patrickbesteman ren\u00e9kos"}, {"datetaken": "2005-07-12 11:59:53", "license": "5", "title": "Le bin bag du libert\u00e9", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25995015_af757dc68b_o.jpg", "secret": "af757dc68b", "media": "photo", "latitude": "0", "id": "25995015", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 12:08:42", "license": "5", "title": "Stefano Garzelli Fan Club", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25995307_713d95b8d4_o.jpg", "secret": "713d95b8d4", "media": "photo", "latitude": "0", "id": "25995307", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 12:27:31", "license": "5", "title": "Extreme Pleasure", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25995484_e38f9b505a_o.jpg", "secret": "e38f9b505a", "media": "photo", "latitude": "0", "id": "25995484", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 13:10:05", "license": "5", "title": "Freebies 1", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25995847_5212eee0ce_o.jpg", "secret": "5212eee0ce", "media": "photo", "latitude": "0", "id": "25995847", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 13:12:09", "license": "5", "title": "Freebies 2", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25996218_637258de58_o.jpg", "secret": "637258de58", "media": "photo", "latitude": "0", "id": "25996218", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 13:46:47", "license": "5", "title": "Start'em young", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25996401_991968900a_o.jpg", "secret": "991968900a", "media": "photo", "latitude": "0", "id": "25996401", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 14:02:23", "license": "5", "title": "Gendarme", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25996629_199b411a44_o.jpg", "secret": "199b411a44", "media": "photo", "latitude": "0", "id": "25996629", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 14:10:26", "license": "5", "title": "Le caravane", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25996839_302bb5fcf9_o.jpg", "secret": "302bb5fcf9", "media": "photo", "latitude": "0", "id": "25996839", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 14:10:41", "license": "5", "title": "Homme grand et jaune", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25997109_2ac2f1c06a_o.jpg", "secret": "2ac2f1c06a", "media": "photo", "latitude": "0", "id": "25997109", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 14:12:07", "license": "5", "title": "Caravane", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25997487_aba0a5243f_o.jpg", "secret": "aba0a5243f", "media": "photo", "latitude": "0", "id": "25997487", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 14:12:14", "license": "5", "title": "Pretzelmobile", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25997782_7761f9a59d_o.jpg", "secret": "7761f9a59d", "media": "photo", "latitude": "0", "id": "25997782", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 14:14:15", "license": "5", "title": "Trois chevaux", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25998162_333cf28829_o.jpg", "secret": "333cf28829", "media": "photo", "latitude": "0", "id": "25998162", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 14:17:56", "license": "5", "title": "Not a standard model", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25998410_ba51deaec7_o.jpg", "secret": "ba51deaec7", "media": "photo", "latitude": "0", "id": "25998410", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 14:18:51", "license": "5", "title": "Only in France", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25998689_6c7b2e9b08_o.jpg", "secret": "6c7b2e9b08", "media": "photo", "latitude": "0", "id": "25998689", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 14:19:06", "license": "5", "title": "Le porc mobilisant", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25998986_2fff4c617c_o.jpg", "secret": "2fff4c617c", "media": "photo", "latitude": "0", "id": "25998986", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 14:25:27", "license": "5", "title": "Zut alors! Les pompiers!", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25999198_fcd2a154fb_o.jpg", "secret": "fcd2a154fb", "media": "photo", "latitude": "0", "id": "25999198", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 14:28:03", "license": "5", "title": "A mobile gas cylinder", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25999453_690ab61d4f_o.jpg", "secret": "690ab61d4f", "media": "photo", "latitude": "0", "id": "25999453", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:38:45", "license": "5", "title": "Jorg Jaksche", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25999658_10705f1abb_o.jpg", "secret": "10705f1abb", "media": "photo", "latitude": "0", "id": "25999658", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:38:55", "license": "5", "title": "Pereiro Sio", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25999866_04b2658c51_o.jpg", "secret": "04b2658c51", "media": "photo", "latitude": "0", "id": "25999866", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:39:42", "license": "5", "title": "Laurent Brochard", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26000009_579ed2f11d_o.jpg", "secret": "579ed2f11d", "media": "photo", "latitude": "0", "id": "26000009", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:40:22", "license": "5", "title": "Here they come..", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26000265_c58794c025_o.jpg", "secret": "c58794c025", "media": "photo", "latitude": "0", "id": "26000265", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:40:33", "license": "5", "title": "Look! It's Lance!", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26000547_9f2ecc8959_o.jpg", "secret": "9f2ecc8959", "media": "photo", "latitude": "0", "id": "26000547", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:41:45", "license": "5", "title": "Helicopters", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26000721_2ad0621c0d_o.jpg", "secret": "2ad0621c0d", "media": "photo", "latitude": "0", "id": "26000721", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:43:17", "license": "5", "title": "Another group", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26000980_16e53f3ca5_o.jpg", "secret": "16e53f3ca5", "media": "photo", "latitude": "0", "id": "26000980", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:43:40", "license": "5", "title": "Dario Frigo", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26001255_a5e6a7c6e2_o.jpg", "secret": "a5e6a7c6e2", "media": "photo", "latitude": "0", "id": "26001255", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:44:44", "license": "5", "title": "Groupe maillot jaune", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26001512_73177054b7_o.jpg", "secret": "73177054b7", "media": "photo", "latitude": "0", "id": "26001512", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:44:44", "license": "5", "title": "More peloton", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26001759_46a1d69d2c_o.jpg", "secret": "46a1d69d2c", "media": "photo", "latitude": "0", "id": "26001759", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:47:00", "license": "5", "title": "All in a day's work", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26001893_3a4f424c16_o.jpg", "secret": "3a4f424c16", "media": "photo", "latitude": "0", "id": "26001893", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:47:18", "license": "5", "title": "Juan Antonio Flecha", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26002015_3002803859_o.jpg", "secret": "3002803859", "media": "photo", "latitude": "0", "id": "26002015", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:47:20", "license": "5", "title": "Juan Antonio Flecha", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26002238_9e8c097507_o.jpg", "secret": "9e8c097507", "media": "photo", "latitude": "0", "id": "26002238", "tags": "cycling tourdefrance velo flecha"}, {"datetaken": "2005-07-12 15:47:41", "license": "5", "title": "Euskadi", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26002408_a831e51920_o.jpg", "secret": "a831e51920", "media": "photo", "latitude": "0", "id": "26002408", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:57:18", "license": "5", "title": "And still they come..", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/26002698_c3b7ca90e9_o.jpg", "secret": "c3b7ca90e9", "media": "photo", "latitude": "0", "id": "26002698", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:58:25", "license": "5", "title": "Dekker", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26002835_d0bc7db6fd_o.jpg", "secret": "d0bc7db6fd", "media": "photo", "latitude": "0", "id": "26002835", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:58:58", "license": "5", "title": "L'autobus", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26003092_efad5d970e_o.jpg", "secret": "efad5d970e", "media": "photo", "latitude": "0", "id": "26003092", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:59:06", "license": "5", "title": "More sprinters", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/26003320_a636db0bb6_o.jpg", "secret": "a636db0bb6", "media": "photo", "latitude": "0", "id": "26003320", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:59:12", "license": "5", "title": "More of the autobus", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26003656_109b85d108_o.jpg", "secret": "109b85d108", "media": "photo", "latitude": "0", "id": "26003656", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:59:27", "license": "5", "title": "Yet more of the autobus", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26003823_5c930735e1_o.jpg", "secret": "5c930735e1", "media": "photo", "latitude": "0", "id": "26003823", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-07-12 15:59:44", "license": "5", "title": "DFL", "text": "", "album_id": "591459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/26004014_6dd4ca74c0_o.jpg", "secret": "6dd4ca74c0", "media": "photo", "latitude": "0", "id": "26004014", "tags": "cycling velo tourdefrance"}, {"datetaken": "2005-09-25 01:55:32", "license": "3", "title": "TDG I", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/46337598_2abe215e62_o.jpg", "secret": "2abe215e62", "media": "photo", "latitude": "0", "id": "46337598", "tags": "bw vancouver race cycling day experiment contax rodinal gastown tonic tourdegastown ilford fp4 criterium abuse carbonated bathroomdarkroom standdevelopment reticulation rtsii hotwaterrinse"}, {"datetaken": "2005-09-25 01:55:41", "license": "3", "title": "TDG II", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46337609_b0daedd36a_o.jpg", "secret": "b0daedd36a", "media": "photo", "latitude": "0", "id": "46337609", "tags": "bw vancouver race cycling day experiment contax rodinal gastown tonic tourdegastown ilford fp4 criterium abuse carbonated bathroomdarkroom standdevelopment reticulation rtsii hotwaterrinse"}, {"datetaken": "2005-09-25 01:55:48", "license": "3", "title": "TDG III", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/46337614_921b2ab335_o.jpg", "secret": "921b2ab335", "media": "photo", "latitude": "0", "id": "46337614", "tags": "bw vancouver race cycling day experiment contax rodinal gastown tonic tourdegastown ilford fp4 criterium abuse carbonated bathroomdarkroom standdevelopment reticulation rtsii hotwaterrinse"}, {"datetaken": "2005-09-25 01:55:56", "license": "3", "title": "TDG IV", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46337620_3ec9ba1236_o.jpg", "secret": "3ec9ba1236", "media": "photo", "latitude": "0", "id": "46337620", "tags": "bw vancouver race cycling day experiment contax rodinal gastown tonic tourdegastown ilford fp4 criterium abuse carbonated bathroomdarkroom standdevelopment reticulation rtsii hotwaterrinse"}, {"datetaken": "2005-09-25 01:56:04", "license": "3", "title": "TDG V", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/46337633_a53808a04f_o.jpg", "secret": "a53808a04f", "media": "photo", "latitude": "0", "id": "46337633", "tags": "bw vancouver race cycling day experiment contax rodinal gastown tonic tourdegastown ilford fp4 criterium abuse carbonated bathroomdarkroom standdevelopment reticulation rtsii hotwaterrinse"}, {"datetaken": "2005-09-25 01:56:15", "license": "3", "title": "TDG VI", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/46337648_573045f715_o.jpg", "secret": "573045f715", "media": "photo", "latitude": "0", "id": "46337648", "tags": "bw vancouver race cycling day experiment contax rodinal gastown tonic tourdegastown ilford fp4 criterium abuse carbonated bathroomdarkroom standdevelopment reticulation rtsii hotwaterrinse"}, {"datetaken": "2005-09-25 01:56:22", "license": "3", "title": "TDG VII", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/46337658_80dfa95838_o.jpg", "secret": "80dfa95838", "media": "photo", "latitude": "0", "id": "46337658", "tags": "bw vancouver race cycling day experiment contax rodinal gastown tonic tourdegastown ilford fp4 criterium abuse carbonated bathroomdarkroom standdevelopment reticulation rtsii hotwaterrinse"}, {"datetaken": "2005-09-25 01:56:28", "license": "3", "title": "TDG VIII", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/46337661_55fc9399dc_o.jpg", "secret": "55fc9399dc", "media": "photo", "latitude": "0", "id": "46337661", "tags": "bw vancouver race cycling day experiment contax rodinal gastown tonic tourdegastown ilford fp4 criterium abuse carbonated bathroomdarkroom standdevelopment reticulation rtsii hotwaterrinse"}, {"datetaken": "2005-09-25 01:56:37", "license": "3", "title": "TDG IX", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/46337623_260189d34a_o.jpg", "secret": "260189d34a", "media": "photo", "latitude": "0", "id": "46337623", "tags": "bw vancouver race cycling day experiment contax rodinal gastown tonic tourdegastown ilford fp4 criterium abuse carbonated bathroomdarkroom standdevelopment reticulation rtsii hotwaterrinse"}, {"datetaken": "2005-09-25 01:56:47", "license": "3", "title": "TDG X", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/46337684_ccd95f71df_o.jpg", "secret": "ccd95f71df", "media": "photo", "latitude": "0", "id": "46337684", "tags": "bw vancouver race cycling day experiment contax rodinal gastown tonic tourdegastown ilford fp4 criterium abuse carbonated bathroomdarkroom standdevelopment reticulation rtsii hotwaterrinse"}, {"datetaken": "2005-09-25 01:56:57", "license": "3", "title": "TDG XI", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/46337692_1721e8a237_o.jpg", "secret": "1721e8a237", "media": "photo", "latitude": "0", "id": "46337692", "tags": "bw vancouver race cycling day experiment contax rodinal gastown tonic tourdegastown ilford fp4 criterium abuse carbonated bathroomdarkroom standdevelopment reticulation rtsii hotwaterrinse"}, {"datetaken": "2005-09-25 01:57:05", "license": "3", "title": "TDG XII", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/46337703_585e3ebc95_o.jpg", "secret": "585e3ebc95", "media": "photo", "latitude": "0", "id": "46337703", "tags": "bw vancouver race cycling day experiment contax rodinal gastown tonic tourdegastown ilford fp4 criterium abuse carbonated bathroomdarkroom standdevelopment reticulation rtsii hotwaterrinse"}, {"datetaken": "2005-09-25 20:39:44", "license": "3", "title": "Frozen", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/46662561_dcfb182d32_o.jpg", "secret": "dcfb182d32", "media": "photo", "latitude": "0", "id": "46662561", "tags": "bw film vancouver race cycling day grain contax hp5 rodinal gastown tourdegastown ilford criterium bathroomdarkroom rtsii"}, {"datetaken": "2005-09-25 20:40:53", "license": "3", "title": "Blur Rider I", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/46662505_0436561154_o.jpg", "secret": "0436561154", "media": "photo", "latitude": "0", "id": "46662505", "tags": "bw film vancouver race cycling day grain contax hp5 rodinal gastown tourdegastown ilford criterium bathroomdarkroom rtsii"}, {"datetaken": "2005-09-25 20:41:05", "license": "3", "title": "Blur Rider II", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46662541_ca4b234db2_o.jpg", "secret": "ca4b234db2", "media": "photo", "latitude": "0", "id": "46662541", "tags": "bw film vancouver race cycling day grain contax hp5 rodinal gastown tourdegastown ilford criterium bathroomdarkroom rtsii"}, {"datetaken": "2005-09-25 20:41:20", "license": "3", "title": "In Formation", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/46662582_4e9b846a21_o.jpg", "secret": "4e9b846a21", "media": "photo", "latitude": "0", "id": "46662582", "tags": "bw film vancouver race cycling day grain contax hp5 rodinal gastown tourdegastown ilford criterium bathroomdarkroom rtsii"}, {"datetaken": "2005-09-25 20:41:32", "license": "3", "title": "Peloton", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/46662605_1b2f787f08_o.jpg", "secret": "1b2f787f08", "media": "photo", "latitude": "0", "id": "46662605", "tags": "bw film vancouver race cycling day grain contax hp5 rodinal gastown tourdegastown ilford criterium bathroomdarkroom rtsii"}, {"datetaken": "2005-09-25 20:41:43", "license": "3", "title": "The Approach", "text": "", "album_id": "1011990", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/46662631_2cc8b1b9e8_o.jpg", "secret": "2cc8b1b9e8", "media": "photo", "latitude": "0", "id": "46662631", "tags": "bw film vancouver race cycling day grain contax hp5 rodinal gastown tourdegastown ilford criterium bathroomdarkroom rtsii"}, {"datetaken": "2005-09-27 09:24:07", "license": "5", "title": "Us Before the Race", "text": "", "album_id": "1027128", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/47111408_a77373b758_o.jpg", "secret": "a77373b758", "media": "photo", "latitude": "0", "id": "47111408", "tags": "squeezer2005 bike race wes me maygan squeezer"}, {"datetaken": "2005-09-27 09:24:07", "license": "5", "title": "Bike Crowd", "text": "", "album_id": "1027128", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/47111409_b717dae53f_o.jpg", "secret": "b717dae53f", "media": "photo", "latitude": "0", "id": "47111409", "tags": "squeezer2005 bike race crowd squeezer"}, {"datetaken": "2005-09-27 09:24:07", "license": "5", "title": "Our Wave Gets Ready To Go", "text": "", "album_id": "1027128", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/47111410_0a4a2c9d6a_o.jpg", "secret": "0a4a2c9d6a", "media": "photo", "latitude": "0", "id": "47111410", "tags": "squeezer2005 bike race me wes squeezer"}, {"datetaken": "2005-09-27 09:24:07", "license": "5", "title": "There I go", "text": "", "album_id": "1027128", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/47111411_a55f40e016_o.jpg", "secret": "a55f40e016", "media": "photo", "latitude": "0", "id": "47111411", "tags": "squeezer2005 bike race me squeezer"}, {"datetaken": "2005-09-27 09:24:07", "license": "5", "title": "Wes Finishing", "text": "", "album_id": "1027128", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/47111412_5e045aedba_o.jpg", "secret": "5e045aedba", "media": "photo", "latitude": "0", "id": "47111412", "tags": "squeezer2005 bike race wes squeezer"}, {"datetaken": "2005-09-27 09:24:07", "license": "5", "title": "Kinda Tired?", "text": "", "album_id": "1027128", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/47111413_ff4a64f674_o.jpg", "secret": "ff4a64f674", "media": "photo", "latitude": "0", "id": "47111413", "tags": "squeezer2005 bike race wes squeezer"}, {"datetaken": "2005-09-27 09:32:50", "license": "5", "title": "Me Finishing", "text": "", "album_id": "1027128", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/47113044_e6ff305294_o.jpg", "secret": "e6ff305294", "media": "photo", "latitude": "0", "id": "47113044", "tags": "squeezer2005 bike race me squeezer"}, {"datetaken": "2005-09-27 09:32:50", "license": "5", "title": "Action Shot", "text": "", "album_id": "1027128", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/47113045_7930435d1f_o.jpg", "secret": "7930435d1f", "media": "photo", "latitude": "0", "id": "47113045", "tags": "squeezer2005 bike race me squeezer"}, {"datetaken": "2005-09-27 09:32:50", "license": "5", "title": "Wes' Glamour Shot", "text": "", "album_id": "1027128", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/47113046_51ce0521ab_o.jpg", "secret": "51ce0521ab", "media": "photo", "latitude": "0", "id": "47113046", "tags": "squeezer2005 bike race wes squeezer"}, {"datetaken": "2005-09-27 09:32:50", "license": "5", "title": "Maygan Finishing", "text": "", "album_id": "1027128", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/47113047_05ddc48ea0_o.jpg", "secret": "05ddc48ea0", "media": "photo", "latitude": "0", "id": "47113047", "tags": "squeezer2005 bike race maygan squeezer"}, {"datetaken": "2005-09-27 09:32:50", "license": "5", "title": "Wooo!", "text": "", "album_id": "1027128", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/47113048_bba9bb48d3_o.jpg", "secret": "bba9bb48d3", "media": "photo", "latitude": "0", "id": "47113048", "tags": "squeezer2005 bike race maygan squeezer"}, {"datetaken": "2005-09-27 09:32:50", "license": "5", "title": "She had the worst fall", "text": "", "album_id": "1027128", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/47113049_a18d2d9d8f_o.jpg", "secret": "a18d2d9d8f", "media": "photo", "latitude": "0", "id": "47113049", "tags": "squeezer2005 bike race maygan squeezer"}, {"datetaken": "2005-09-27 09:38:10", "license": "5", "title": "ouch", "text": "", "album_id": "1027128", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/47114010_56895625f5_o.jpg", "secret": "56895625f5", "media": "photo", "latitude": "0", "id": "47114010", "tags": "squeezer2005 bike race maygan squeezer"}, {"datetaken": "2005-09-27 09:38:10", "license": "5", "title": "Gimping Back to Montebello Park", "text": "", "album_id": "1027128", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/47114011_1d5215e1ad_o.jpg", "secret": "1d5215e1ad", "media": "photo", "latitude": "0", "id": "47114011", "tags": "squeezer2005 bike race wes me squeezer"}, {"datetaken": "2005-09-27 09:38:10", "license": "5", "title": "We Were Tired", "text": "", "album_id": "1027128", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/47114013_3337d47091_o.jpg", "secret": "3337d47091", "media": "photo", "latitude": "0", "id": "47114013", "tags": "squeezer2005 bike race wes squeezer"}, {"datetaken": "2005-09-27 09:38:10", "license": "5", "title": "Nice Roof", "text": "", "album_id": "1027128", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/47114014_ac0920be40_o.jpg", "secret": "ac0920be40", "media": "photo", "latitude": "0", "id": "47114014", "tags": "squeezer2005 bike race roof squeezer"}, {"datetaken": "2004-01-01 00:02:01", "license": "5", "title": "Crowd from above", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/50669516_97c7e3cfbb_o.jpg", "secret": "97c7e3cfbb", "media": "photo", "latitude": "0", "id": "50669516", "tags": "oaklanddragraces bike crowd urban pittsburgh oakland"}, {"datetaken": "2004-01-01 00:10:24", "license": "5", "title": "Finishline montage", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/50669517_33ca9b7b8e_o.jpg", "secret": "33ca9b7b8e", "media": "photo", "latitude": "0", "id": "50669517", "tags": "oaklanddragraces bike races finishline"}, {"datetaken": "2004-01-01 00:31:41", "license": "5", "title": "Perched on the wall", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/50669515_0f7671fa71_o.jpg", "secret": "0f7671fa71", "media": "photo", "latitude": "0", "id": "50669515", "tags": "oaklanddragraces bike universityofpittsburgh crowd"}, {"datetaken": "2004-01-01 00:33:57", "license": "5", "title": "Crowd from the street", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/50667398_bd804f6215_o.jpg", "secret": "bd804f6215", "media": "photo", "latitude": "0", "id": "50667398", "tags": "oaklanddragraces bike race crowd urban"}, {"datetaken": "2004-01-01 00:35:11", "license": "5", "title": "Spoils", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/50669530_5985eacb5b_o.jpg", "secret": "5985eacb5b", "media": "photo", "latitude": "0", "id": "50669530", "tags": "oaklanddragraces jessie josh spoils zak"}, {"datetaken": "2004-01-01 00:43:02", "license": "5", "title": "Real life documentarian", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/50669525_e6af9db04d_o.jpg", "secret": "e6af9db04d", "media": "photo", "latitude": "0", "id": "50669525", "tags": "oaklanddragraces erin jessie photographer picture"}, {"datetaken": "2004-01-01 00:43:41", "license": "5", "title": "Hi Jessie", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/50669520_9e79f93318_o.jpg", "secret": "9e79f93318", "media": "photo", "latitude": "0", "id": "50669520", "tags": "oaklanddragraces photographer jessie bike"}, {"datetaken": "2004-01-01 00:47:49", "license": "5", "title": "The skidding planning session", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/50669529_fdf1d0b14b_o.jpg", "secret": "fdf1d0b14b", "media": "photo", "latitude": "0", "id": "50669529", "tags": "oaklanddragraces bike fixie"}, {"datetaken": "2004-01-01 00:54:37", "license": "5", "title": "Skidding Seth", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/50669527_c1e789f4a5_o.jpg", "secret": "c1e789f4a5", "media": "photo", "latitude": "0", "id": "50669527", "tags": "oaklanddragraces bike fixie skid seth"}, {"datetaken": "2004-01-01 00:55:56", "license": "5", "title": "Josh skidding #1", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/50669523_b7d512f765_o.jpg", "secret": "b7d512f765", "media": "photo", "latitude": "0", "id": "50669523", "tags": "oaklanddragraces bike skid josh fixie"}, {"datetaken": "2004-01-01 01:02:36", "license": "5", "title": "Zak attak bak", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/50670060_b69852b88a_o.jpg", "secret": "b69852b88a", "media": "photo", "latitude": "0", "id": "50670060", "tags": "pittsburgh bw photoshopped blurry night tattoo back zak"}, {"datetaken": "2004-01-01 01:03:40", "license": "5", "title": "Josh skidding #2", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/50669526_ff090f92ef_o.jpg", "secret": "ff090f92ef", "media": "photo", "latitude": "0", "id": "50669526", "tags": "oaklanddragraces bike skid josh"}, {"datetaken": "2004-01-01 01:10:20", "license": "5", "title": "Trackstand Competition: practice", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/50670054_7758323471_o.jpg", "secret": "7758323471", "media": "photo", "latitude": "0", "id": "50670054", "tags": "oaklanddragraces bike fixie trackstand"}, {"datetaken": "2004-01-01 01:10:24", "license": "5", "title": "Trackstand Competition: practice", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/50670055_c8f5dba01e_o.jpg", "secret": "c8f5dba01e", "media": "photo", "latitude": "0", "id": "50670055", "tags": "oaklanddragraces bike fixie trackstand"}, {"datetaken": "2004-01-01 01:11:16", "license": "5", "title": "Trackstand Competition: practice", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/50670052_581f1cc961_o.jpg", "secret": "581f1cc961", "media": "photo", "latitude": "0", "id": "50670052", "tags": "oaklanddragraces bike fixie trackstand"}, {"datetaken": "2004-01-01 01:11:56", "license": "5", "title": "Trackstand Competition: practice", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/50670053_99f158b149_o.jpg", "secret": "99f158b149", "media": "photo", "latitude": "0", "id": "50670053", "tags": "oaklanddragraces bike fixie trackstand"}, {"datetaken": "2004-01-01 01:15:07", "license": "5", "title": "Trackstand Competition: practice", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/50670056_72a6ba7143_o.jpg", "secret": "72a6ba7143", "media": "photo", "latitude": "0", "id": "50670056", "tags": "oaklanddragraces bike fixie trackstand seth"}, {"datetaken": "2004-01-01 01:18:25", "license": "5", "title": "Trackstands and onlookers", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/50669532_8a6b329801_o.jpg", "secret": "8a6b329801", "media": "photo", "latitude": "0", "id": "50669532", "tags": "oaklanddragraces bike fixie trackstand"}, {"datetaken": "2004-01-01 01:18:34", "license": "5", "title": "More trackstands, more girls", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/50669749_6155ab4514_o.jpg", "secret": "6155ab4514", "media": "photo", "latitude": "0", "id": "50669749", "tags": "oaklanddragraces bike fixie trackstand"}, {"datetaken": "2004-01-01 01:19:04", "license": "5", "title": "Trackstand Competition: two hands", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/50670057_4253b1b719_o.jpg", "secret": "4253b1b719", "media": "photo", "latitude": "0", "id": "50670057", "tags": "oaklanddragraces bike fixie trackstand competition"}, {"datetaken": "2004-01-01 01:20:15", "license": "5", "title": "Legs", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/50669522_13dd5e4527_o.jpg", "secret": "13dd5e4527", "media": "photo", "latitude": "0", "id": "50669522", "tags": "oaklanddragraces bikes legs"}, {"datetaken": "2004-01-01 01:20:26", "license": "5", "title": "Trackstand competition: in flight refueling", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/50670059_74449fad46_o.jpg", "secret": "74449fad46", "media": "photo", "latitude": "0", "id": "50670059", "tags": "ted rob bike fixie trackstand competition onehand beer drinking zak"}, {"datetaken": "2004-01-01 01:20:47", "license": "5", "title": "Trackstand Competition: one hand", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/50669754_0c23775dc7_o.jpg", "secret": "0c23775dc7", "media": "photo", "latitude": "0", "id": "50669754", "tags": "oaklanddragraces bike fixie trackstand onehand"}, {"datetaken": "2004-01-01 01:21:01", "license": "5", "title": "Trackstand Competition: no hands", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/50669752_6156600a24_o.jpg", "secret": "6156600a24", "media": "photo", "latitude": "0", "id": "50669752", "tags": "oaklanddragraces bike fixie trackstand no hands"}, {"datetaken": "2004-01-01 01:21:16", "license": "5", "title": "Trackstand Competition: no hands", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/50669751_45973e54ae_o.jpg", "secret": "45973e54ae", "media": "photo", "latitude": "0", "id": "50669751", "tags": "oaklanddragraces bike fixie trackstand nohands"}, {"datetaken": "2004-01-01 01:21:30", "license": "5", "title": "Trackstand Competition: no hands", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/50669750_3657e77243_o.jpg", "secret": "3657e77243", "media": "photo", "latitude": "0", "id": "50669750", "tags": "oaklanddragraces bike fixie trackstand"}, {"datetaken": "2004-01-01 01:21:52", "license": "5", "title": "Trackstand Competition: one foot", "text": "", "album_id": "1104109", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/50669753_c81cb2b409_o.jpg", "secret": "c81cb2b409", "media": "photo", "latitude": "0", "id": "50669753", "tags": "oaklanddragraces bike fixie trackstand onefoot"}, {"datetaken": "2006-01-21 10:27:01", "license": "3", "title": "Checking Tyres", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/89291266_29198ab5c8_o.jpg", "secret": "29198ab5c8", "media": "photo", "latitude": "0", "id": "89291266", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-01-21 10:40:53", "license": "3", "title": "Crossing a Stream", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/89290500_5cf521acdd_o.jpg", "secret": "5cf521acdd", "media": "photo", "latitude": "0", "id": "89290500", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-01-21 11:00:09", "license": "3", "title": "Our Friendly Swan", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/89290018_6dc918a6c9_o.jpg", "secret": "6dc918a6c9", "media": "photo", "latitude": "0", "id": "89290018", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal swan"}, {"datetaken": "2006-01-21 11:00:59", "license": "3", "title": "The Swan", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/89289721_f115efa4ec_o.jpg", "secret": "f115efa4ec", "media": "photo", "latitude": "0", "id": "89289721", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal swan"}, {"datetaken": "2006-01-21 11:02:30", "license": "3", "title": "Leeds Liverpool Canal", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/89289583_75ae92f91b_o.jpg", "secret": "75ae92f91b", "media": "photo", "latitude": "0", "id": "89289583", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-01-21 11:03:48", "license": "3", "title": "Some Fungi", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/89289365_ff24bda235_o.jpg", "secret": "ff24bda235", "media": "photo", "latitude": "0", "id": "89289365", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-01-21 11:32:30", "license": "3", "title": "Another Jolly Boatman", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/89289069_0e16396141_o.jpg", "secret": "0e16396141", "media": "photo", "latitude": "0", "id": "89289069", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-01-21 11:50:44", "license": "3", "title": "Winter Hill and Rivington Pike", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/89288939_cd9be9cccc_o.jpg", "secret": "cd9be9cccc", "media": "photo", "latitude": "0", "id": "89288939", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-01-21 11:52:45", "license": "3", "title": "Canal Side", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/89288691_2f9529acc0_o.jpg", "secret": "2f9529acc0", "media": "photo", "latitude": "0", "id": "89288691", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-01-21 11:58:09", "license": "3", "title": "Our Future House!!", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/89288375_d58b9fa09a_o.jpg", "secret": "d58b9fa09a", "media": "photo", "latitude": "0", "id": "89288375", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-01-21 11:59:36", "license": "3", "title": "Reflections", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/89288136_e54deaf177_o.jpg", "secret": "e54deaf177", "media": "photo", "latitude": "0", "id": "89288136", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-01-21 12:21:16", "license": "3", "title": "River Douglas From The Canal", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/89288031_4712d55af0_o.jpg", "secret": "4712d55af0", "media": "photo", "latitude": "0", "id": "89288031", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-01-21 12:23:34", "license": "3", "title": "Rivington Pike", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/89287802_5a11fcb1ba_o.jpg", "secret": "5a11fcb1ba", "media": "photo", "latitude": "0", "id": "89287802", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-01-21 12:52:42", "license": "3", "title": "Jayne's bike", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/89286916_77f87fa712_o.jpg", "secret": "77f87fa712", "media": "photo", "latitude": "0", "id": "89286916", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-01-21 12:54:46", "license": "3", "title": "Canal Boats", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/89286283_00510cf4f9_o.jpg", "secret": "00510cf4f9", "media": "photo", "latitude": "0", "id": "89286283", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-01-21 12:55:10", "license": "3", "title": "The Crawford Arms, Standish", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/89286025_47f861d2af_o.jpg", "secret": "47f861d2af", "media": "photo", "latitude": "0", "id": "89286025", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal pub"}, {"datetaken": "2006-01-21 12:57:06", "license": "3", "title": "Leeds Liverpool Canal", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/89285709_7309bb98a6_o.jpg", "secret": "7309bb98a6", "media": "photo", "latitude": "0", "id": "89285709", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-01-21 13:57:52", "license": "3", "title": "Mud!", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/89284815_e614410a8c_o.jpg", "secret": "e614410a8c", "media": "photo", "latitude": "0", "id": "89284815", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-01-21 13:59:04", "license": "3", "title": "Bethen's Bike", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/89284515_ec9c38b495_o.jpg", "secret": "ec9c38b495", "media": "photo", "latitude": "0", "id": "89284515", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-01-21 14:02:34", "license": "3", "title": "Lock Race Waterfall", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/89284239_2b2be33a20_o.jpg", "secret": "2b2be33a20", "media": "photo", "latitude": "0", "id": "89284239", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-01-21 14:03:57", "license": "3", "title": "Our Usual", "text": "", "album_id": "72057594051661797", "longitude": "-2.594393", "url_o": "https://farm1.staticflickr.com/27/89283868_dff1434169_o.jpg", "secret": "dff1434169", "media": "photo", "latitude": "53.555300", "id": "89283868", "tags": "liverpool geotagged canal mud leeds bikes jayne bikeride leedsliverpoolcanal bethen geotoolyuancc geolat535553 geolon2594393"}, {"datetaken": "2006-01-21 14:06:47", "license": "3", "title": "Lock Gate Detail", "text": "", "album_id": "72057594051661797", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/89283514_a5510aab9a_o.jpg", "secret": "a5510aab9a", "media": "photo", "latitude": "0", "id": "89283514", "tags": "bikeride canal bethen jayne bikes mud leeds liverpool leedsliverpoolcanal"}, {"datetaken": "2006-02-21 14:21:48", "license": "2", "title": "Zabriskie Pre-Race-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.739501", "url_o": "https://farm1.staticflickr.com/39/103259346_baf35c0961_o.jpg", "secret": "baf35c0961", "media": "photo", "latitude": "37.199125", "id": "103259346", "tags": "warmups csc stage3 prerace teamcsc tourofcalifornia amgentourofcalifornia"}, {"datetaken": "2006-02-21 14:21:55", "license": "2", "title": "Vande Velde and Zabriskie Pre-Race-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.739501", "url_o": "https://farm1.staticflickr.com/34/103259317_b69d3d112d_o.jpg", "secret": "b69d3d112d", "media": "photo", "latitude": "37.199125", "id": "103259317", "tags": "warmups csc stage3 prerace teamcsc tourofcalifornia amgentourofcalifornia"}, {"datetaken": "2006-02-21 22:08:49", "license": "2", "title": "CSC TT Bikes-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.739501", "url_o": "https://farm1.staticflickr.com/27/103259043_83b1d3058f_o.jpg", "secret": "83b1d3058f", "media": "photo", "latitude": "37.199125", "id": "103259043", "tags": "bikes warmups csc stage3 prerace teamcsc tourofcalifornia amgentourofcalifornia"}, {"datetaken": "2006-02-21 22:09:06", "license": "2", "title": "CSC TT Bikes-2", "text": "", "album_id": "72057594068779588", "longitude": "-121.739501", "url_o": "https://farm1.staticflickr.com/30/103259113_6419b5904f_o.jpg", "secret": "6419b5904f", "media": "photo", "latitude": "37.199125", "id": "103259113", "tags": "bikes warmups csc stage3 prerace teamcsc tourofcalifornia amgentourofcalifornia"}, {"datetaken": "2006-02-21 22:19:08", "license": "2", "title": "Stuart O'Grady heading out for a warmup-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.739501", "url_o": "https://farm1.staticflickr.com/26/103259276_024b9f9cd7_o.jpg", "secret": "024b9f9cd7", "media": "photo", "latitude": "37.199125", "id": "103259276", "tags": "warmups csc stage3 prerace stuartogrady teamcsc tourofcalifornia amgentourofcalifornia"}, {"datetaken": "2006-02-21 22:19:23", "license": "2", "title": "Jens Voigt heading out for warmup ride-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.739501", "url_o": "https://farm1.staticflickr.com/39/103259179_266883f350_o.jpg", "secret": "266883f350", "media": "photo", "latitude": "37.199125", "id": "103259179", "tags": "warmups csc stage3 prerace voigt jensvoigt teamcsc tourofcalifornia amgentourofcalifornia"}, {"datetaken": "2006-02-21 22:25:01", "license": "2", "title": "Julich heading out for warmup ride-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.739501", "url_o": "https://farm1.staticflickr.com/41/103259217_bdc4a63e22_o.jpg", "secret": "bdc4a63e22", "media": "photo", "latitude": "37.199125", "id": "103259217", "tags": "topv333 warmups csc stage3 bobbyjulich prerace julich teamcsc tourofcalifornia amgentourofcalifornia"}, {"datetaken": "2006-02-21 22:35:54", "license": "2", "title": "Kodak-Sierra Nevada Camp-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.739501", "url_o": "https://farm1.staticflickr.com/41/103268186_d346592260_o.jpg", "secret": "d346592260", "media": "photo", "latitude": "37.199125", "id": "103268186", "tags": "kodak sanjose sierranevada stage3 prerace tourofcalifornia amgentourofcalifornia"}, {"datetaken": "2006-02-21 22:42:49", "license": "2", "title": "Discovery Camp-1", "text": "", "album_id": "72057594068779588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/103258091_d213203795_o.jpg", "secret": "d213203795", "media": "photo", "latitude": "0", "id": "103258091", "tags": "bikes discovery warmups stage3 prerace teamdiscovery tourofcalifornia amgentourofcalifornia"}, {"datetaken": "2006-02-21 22:42:55", "license": "2", "title": "Discovery Camp-2", "text": "", "album_id": "72057594068779588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/103258188_0148634c26_o.jpg", "secret": "0148634c26", "media": "photo", "latitude": "0", "id": "103258188", "tags": "bikes discovery warmups stage3 prerace teamdiscovery tourofcalifornia amgentourofcalifornia"}, {"datetaken": "2006-02-21 22:49:23", "license": "2", "title": "Discovery Camp-3", "text": "", "album_id": "72057594068779588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/103258248_e7dc691b73_o.jpg", "secret": "e7dc691b73", "media": "photo", "latitude": "0", "id": "103258248", "tags": "discovery warmups stage3 prerace teamdiscovery tourofcalifornia amgentourofcalifornia"}, {"datetaken": "2006-02-22 10:51:19", "license": "2", "title": "Discovery TT Bikes-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.739501", "url_o": "https://farm1.staticflickr.com/29/103268551_976c56f0fa_o.jpg", "secret": "976c56f0fa", "media": "photo", "latitude": "37.199125", "id": "103268551", "tags": "sanjose bikes discovery stage3 timetrial prerace tourofcalifornia amgentourofcalifornia ttbikes"}, {"datetaken": "2006-02-22 10:51:43", "license": "2", "title": "Discovery TT Bikes-2", "text": "", "album_id": "72057594068779588", "longitude": "-121.739501", "url_o": "https://farm1.staticflickr.com/29/103268570_a07e8faec2_o.jpg", "secret": "a07e8faec2", "media": "photo", "latitude": "37.199125", "id": "103268570", "tags": "topv333 sanjose bikes discovery stage3 timetrial prerace tourofcalifornia amgentourofcalifornia ttbikes"}, {"datetaken": "2006-02-22 11:01:56", "license": "2", "title": "Fabian Wegmann Leaves the Start-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.743493", "url_o": "https://farm1.staticflickr.com/35/103228082_7cfce0d2c4_o.jpg", "secret": "7cfce0d2c4", "media": "photo", "latitude": "37.196381", "id": "103228082", "tags": "cycling lenstagged sanjose biking itt stage3 timetrial canon70200f4l gerolsteiner fabianwegmann tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 11:12:19", "license": "2", "title": "Stage 3-01", "text": "", "album_id": "72057594068779588", "longitude": "-121.745016", "url_o": "https://farm1.staticflickr.com/33/103228334_4e687d59d1_o.jpg", "secret": "4e687d59d1", "media": "photo", "latitude": "37.195228", "id": "103228334", "tags": "cycling lenstagged sanjose biking itt stage3 timetrial canon70200f4l tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 11:13:18", "license": "2", "title": "Stage 3-02", "text": "", "album_id": "72057594068779588", "longitude": "-121.745016", "url_o": "https://farm1.staticflickr.com/33/103228362_6f3c8456b3_o.jpg", "secret": "6f3c8456b3", "media": "photo", "latitude": "37.195228", "id": "103228362", "tags": "cycling lenstagged sanjose biking itt stage3 timetrial canon70200f4l tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 11:30:27", "license": "2", "title": "Stage 3-03", "text": "", "album_id": "72057594068779588", "longitude": "-121.758213", "url_o": "https://farm1.staticflickr.com/43/103228395_42bc3f5bc5_o.jpg", "secret": "42bc3f5bc5", "media": "photo", "latitude": "37.187330", "id": "103228395", "tags": "cycling lenstagged sanjose biking itt stage3 timetrial canon70200f4l tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 11:31:35", "license": "2", "title": "Stage 3-04", "text": "", "album_id": "72057594068779588", "longitude": "-121.758213", "url_o": "https://farm1.staticflickr.com/27/103228432_f97320e929_o.jpg", "secret": "f97320e929", "media": "photo", "latitude": "37.187330", "id": "103228432", "tags": "cycling lenstagged sanjose biking itt stage3 timetrial canon70200f4l tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 11:32:28", "license": "2", "title": "Stage 3-05", "text": "", "album_id": "72057594068779588", "longitude": "-121.758213", "url_o": "https://farm1.staticflickr.com/35/103228447_37ac91ae7c_o.jpg", "secret": "37ac91ae7c", "media": "photo", "latitude": "37.187330", "id": "103228447", "tags": "cycling lenstagged sanjose biking itt stage3 timetrial canon70200f4l tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 11:34:27", "license": "2", "title": "Stage 3-06", "text": "", "album_id": "72057594068779588", "longitude": "-121.758213", "url_o": "https://farm1.staticflickr.com/42/103228474_bf11a99934_o.jpg", "secret": "bf11a99934", "media": "photo", "latitude": "37.187330", "id": "103228474", "tags": "cycling lenstagged sanjose biking itt stage3 timetrial canon70200f4l tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 11:40:40", "license": "2", "title": "Stage 3-07", "text": "", "album_id": "72057594068779588", "longitude": "-121.754007", "url_o": "https://farm1.staticflickr.com/43/103228507_d49393443e_o.jpg", "secret": "d49393443e", "media": "photo", "latitude": "37.189211", "id": "103228507", "tags": "cycling lenstagged kodak sanjose biking sierranevada itt stage3 timetrial canon70200f4l sram tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 11:43:25", "license": "2", "title": "Stage 3-08", "text": "", "album_id": "72057594068779588", "longitude": "-121.754007", "url_o": "https://farm1.staticflickr.com/26/103228550_d31e6d91fb_o.jpg", "secret": "d31e6d91fb", "media": "photo", "latitude": "37.189211", "id": "103228550", "tags": "cycling lenstagged sanjose biking itt stage3 timetrial canon70200f4l tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 11:45:07", "license": "2", "title": "Stage 3-09", "text": "", "album_id": "72057594068779588", "longitude": "-121.754007", "url_o": "https://farm1.staticflickr.com/40/103228579_4bc68f26e8_o.jpg", "secret": "4bc68f26e8", "media": "photo", "latitude": "37.189211", "id": "103228579", "tags": "cycling lenstagged sanjose biking itt stage3 timetrial canon70200f4l tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 11:46:58", "license": "2", "title": "Jens Voigt Approaching the First Climb-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.754007", "url_o": "https://farm1.staticflickr.com/41/103228190_a012de30ab_o.jpg", "secret": "a012de30ab", "media": "photo", "latitude": "37.189211", "id": "103228190", "tags": "cycling lenstagged sanjose biking itt csc stage3 timetrial canon70200f4l voigt jensvoigt tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 11:48:51", "license": "2", "title": "Sebastian Lang", "text": "", "album_id": "72057594068779588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/103228638_5ef0759a49_o.jpg", "secret": "5ef0759a49", "media": "photo", "latitude": "0", "id": "103228638", "tags": "cycling lenstagged sanjose biking itt stage3 timetrial canon70200f4l sebastianlang tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 12:11:21", "license": "2", "title": "Zabriskie Warming Up-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.739501", "url_o": "https://farm1.staticflickr.com/40/103228736_856592a01b_o.jpg", "secret": "856592a01b", "media": "photo", "latitude": "37.199125", "id": "103228736", "tags": "topv111 cycling lenstagged sanjose biking zabriskie itt stage3 timetrial canon70200f4l davezabriskie davidzabriskie tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 12:12:41", "license": "2", "title": "Landis Warming Up-1-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.739501", "url_o": "https://farm1.staticflickr.com/27/103228250_220b126330_o.jpg", "secret": "220b126330", "media": "photo", "latitude": "37.199125", "id": "103228250", "tags": "cycling lenstagged sanjose biking thumb warmup itt oakley stage3 landis floydlandis timetrial canon70200f4l phonak tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 12:13:01", "license": "2", "title": "Landis Warming Up-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.739501", "url_o": "https://farm1.staticflickr.com/40/103190846_6cbe6149cc_o.jpg", "secret": "6cbe6149cc", "media": "photo", "latitude": "37.199125", "id": "103190846", "tags": "lenstagged sanjose stage3 landis floydlandis timetrial canon70200f4l phonak tourofcalifornia amgentourofcalifornia"}, {"datetaken": "2006-02-22 12:50:51", "license": "2", "title": "Andre Greipel-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.766152", "url_o": "https://farm1.staticflickr.com/25/103227998_2eeb64616b_o.jpg", "secret": "2eeb64616b", "media": "photo", "latitude": "37.223835", "id": "103227998", "tags": "cycling lenstagged sanjose biking itt stage3 timetrial canon70200f4l tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 12:51:38", "license": "2", "title": "Vladimir Gusev Near the Finish-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.766152", "url_o": "https://farm1.staticflickr.com/26/103228663_944d9be0ca_o.jpg", "secret": "944d9be0ca", "media": "photo", "latitude": "37.223835", "id": "103228663", "tags": "cycling lenstagged topv333 sanjose biking discovery itt stage3 timetrial canon70200f4l discoverychannel teamdiscovery tourofcalifornia amgentourofcalifornia individualtimetrial vladimirgusev"}, {"datetaken": "2006-02-22 13:07:20", "license": "2", "title": "Ekimov nears the finish-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.766152", "url_o": "https://farm1.staticflickr.com/41/103228061_92315015d7_o.jpg", "secret": "92315015d7", "media": "photo", "latitude": "37.223835", "id": "103228061", "tags": "cycling lenstagged sanjose biking discovery itt stage3 timetrial canon70200f4l discoverychannel ekimov teamdiscovery tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 13:24:31", "license": "2", "title": "Stage 3-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.766152", "url_o": "https://farm1.staticflickr.com/39/103228607_495ed99b88_o.jpg", "secret": "495ed99b88", "media": "photo", "latitude": "37.223835", "id": "103228607", "tags": "cycling lenstagged sanjose biking itt stage3 timetrial canon70200f4l tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 13:25:18", "license": "2", "title": "Jason McCartney nears the finish-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.766152", "url_o": "https://farm1.staticflickr.com/28/103228166_2a5993611f_o.jpg", "secret": "2a5993611f", "media": "photo", "latitude": "37.223835", "id": "103228166", "tags": "cycling lenstagged sanjose biking discovery itt jasonmccartney stage3 timetrial canon70200f4l discoverychannel teamdiscovery tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 13:27:57", "license": "2", "title": "Simoni nears the finish-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.766152", "url_o": "https://farm1.staticflickr.com/32/103228313_d8abac2945_o.jpg", "secret": "d8abac2945", "media": "photo", "latitude": "37.223835", "id": "103228313", "tags": "cycling lenstagged sanjose biking itt stage3 timetrial canon70200f4l prodir simoni saunierduval tourofcalifornia gilbertosimoni amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 13:32:40", "license": "2", "title": "Chris Horner nears the finish-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.766152", "url_o": "https://farm1.staticflickr.com/32/103228036_24b0c9dc66_o.jpg", "secret": "24b0c9dc66", "media": "photo", "latitude": "37.223835", "id": "103228036", "tags": "cycling lenstagged sanjose biking lotto itt horner stage3 timetrial canon70200f4l chrishorner davitamon tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 13:38:35", "license": "2", "title": "Landis Approaching the Finish Line-1", "text": "", "album_id": "72057594068779588", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/103190790_c677aa5b1c_o.jpg", "secret": "c677aa5b1c", "media": "photo", "latitude": "0", "id": "103190790", "tags": "topv111 lenstagged sanjose stage3 landis floydlandis timetrial canon70200f4l phonak tourofcalifornia amgentourofcalifornia"}, {"datetaken": "2006-02-22 13:45:29", "license": "2", "title": "Hincapie on final approach-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.766152", "url_o": "https://farm1.staticflickr.com/30/103228133_fb3e906d2d_o.jpg", "secret": "fb3e906d2d", "media": "photo", "latitude": "37.223835", "id": "103228133", "tags": "cycling lenstagged topv333 sanjose biking discovery itt hincapie stage3 timetrial canon70200f4l discoverychannel georgehincapie teamdiscovery tourofcalifornia amgentourofcalifornia individualtimetrial"}, {"datetaken": "2006-02-22 14:10:30", "license": "2", "title": "Julich and Zabriskie, Stage 3 ToC-1", "text": "", "album_id": "72057594068779588", "longitude": "-121.771473", "url_o": "https://farm1.staticflickr.com/41/115038669_94eb68d786_o.jpg", "secret": "94eb68d786", "media": "photo", "latitude": "37.224843", "id": "115038669", "tags": "sanjose zabriskie myphotos bobbyjulich canon70200f4l davezabriskie julich tourofcalifornia stage3tourofcalifornia"}, {"datetaken": "2006-02-22 14:12:22", "license": "2", "title": "Podium-1-4", "text": "", "album_id": "72057594068779588", "longitude": "-121.771473", "url_o": "https://farm1.staticflickr.com/25/103228289_880acdf248_o.jpg", "secret": "880acdf248", "media": "photo", "latitude": "37.224843", "id": "103228289", "tags": "topv111 cycling lenstagged sanjose podium biking zabriskie itt csc stage3 landis bobbyjulich floydlandis timetrial canon70200f4l phonak davezabriskie davidzabriskie julich tourofcalifornia amgentourofcalifornia individualtimetrial stagewinners"}, {"datetaken": "2006-05-24 19:25:04", "license": "3", "title": "DSC02504.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/152724698_229bb0f253_o.jpg", "secret": "229bb0f253", "media": "photo", "latitude": "0", "id": "152724698", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 19:25:12", "license": "3", "title": "DSC02506.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/152724958_ed24c8e6b8_o.jpg", "secret": "ed24c8e6b8", "media": "photo", "latitude": "0", "id": "152724958", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 19:33:13", "license": "3", "title": "DSC02517.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/152725187_e2177d73ff_o.jpg", "secret": "e2177d73ff", "media": "photo", "latitude": "0", "id": "152725187", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 19:39:39", "license": "3", "title": "DSC02521.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/152725506_67f45505af_o.jpg", "secret": "67f45505af", "media": "photo", "latitude": "0", "id": "152725506", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 19:40:47", "license": "3", "title": "DSC02526.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/152725699_920dc60518_o.jpg", "secret": "920dc60518", "media": "photo", "latitude": "0", "id": "152725699", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 19:42:11", "license": "3", "title": "DSC02529.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/152725945_8310ecda82_o.jpg", "secret": "8310ecda82", "media": "photo", "latitude": "0", "id": "152725945", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 19:42:34", "license": "3", "title": "DSC02530.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/152726139_1b71b1e248_o.jpg", "secret": "1b71b1e248", "media": "photo", "latitude": "0", "id": "152726139", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 19:42:35", "license": "3", "title": "DSC02531.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/152726366_45c01c5dea_o.jpg", "secret": "45c01c5dea", "media": "photo", "latitude": "0", "id": "152726366", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 19:44:03", "license": "3", "title": "DSC02534.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/152726618_e7dec90a94_o.jpg", "secret": "e7dec90a94", "media": "photo", "latitude": "0", "id": "152726618", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 19:44:06", "license": "3", "title": "DSC02535.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/152726863_c062b591f2_o.jpg", "secret": "c062b591f2", "media": "photo", "latitude": "0", "id": "152726863", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 19:44:15", "license": "3", "title": "DSC02536.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/152727062_418ea98c1c_o.jpg", "secret": "418ea98c1c", "media": "photo", "latitude": "0", "id": "152727062", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 19:44:43", "license": "3", "title": "DSC02537.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/152727247_7b9b21bf8b_o.jpg", "secret": "7b9b21bf8b", "media": "photo", "latitude": "0", "id": "152727247", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 19:49:51", "license": "3", "title": "DSC02542.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/152727498_5b8df4ca0b_o.jpg", "secret": "5b8df4ca0b", "media": "photo", "latitude": "0", "id": "152727498", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 19:51:38", "license": "3", "title": "DSC02543.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/152727922_e73db419f5_o.jpg", "secret": "e73db419f5", "media": "photo", "latitude": "0", "id": "152727922", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 19:52:07", "license": "3", "title": "DSC02547.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/152728194_a892c6b612_o.jpg", "secret": "a892c6b612", "media": "photo", "latitude": "0", "id": "152728194", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 19:52:44", "license": "3", "title": "DSC02548.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/152728454_b1214c3c95_o.jpg", "secret": "b1214c3c95", "media": "photo", "latitude": "0", "id": "152728454", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:08:14", "license": "3", "title": "DSC02553.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/152728774_30ff67a573_o.jpg", "secret": "30ff67a573", "media": "photo", "latitude": "0", "id": "152728774", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:10:41", "license": "3", "title": "DSC02556.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/152729020_3795051373_o.jpg", "secret": "3795051373", "media": "photo", "latitude": "0", "id": "152729020", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:15:53", "license": "3", "title": "DSC02558.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/152729240_ca9f7d244a_o.jpg", "secret": "ca9f7d244a", "media": "photo", "latitude": "0", "id": "152729240", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:16:20", "license": "3", "title": "DSC02560.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/152729383_9fd8a2136f_o.jpg", "secret": "9fd8a2136f", "media": "photo", "latitude": "0", "id": "152729383", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:16:22", "license": "3", "title": "DSC02561.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/152729657_f431bd9989_o.jpg", "secret": "f431bd9989", "media": "photo", "latitude": "0", "id": "152729657", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:20:29", "license": "3", "title": "DSC02563.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/152729931_ca32c17687_o.jpg", "secret": "ca32c17687", "media": "photo", "latitude": "0", "id": "152729931", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:28:39", "license": "3", "title": "DSC02570.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/152730143_2d2c3ba898_o.jpg", "secret": "2d2c3ba898", "media": "photo", "latitude": "0", "id": "152730143", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:32:24", "license": "3", "title": "DSC02576.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/152730425_7823a15eaa_o.jpg", "secret": "7823a15eaa", "media": "photo", "latitude": "0", "id": "152730425", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:33:22", "license": "3", "title": "DSC02579.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/152730671_6972a64c26_o.jpg", "secret": "6972a64c26", "media": "photo", "latitude": "0", "id": "152730671", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:35:31", "license": "3", "title": "DSC02582.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/152730895_9db9a5b24b_o.jpg", "secret": "9db9a5b24b", "media": "photo", "latitude": "0", "id": "152730895", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:48:25", "license": "3", "title": "DSC02604.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/152731369_5c6e049dbc_o.jpg", "secret": "5c6e049dbc", "media": "photo", "latitude": "0", "id": "152731369", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:48:27", "license": "3", "title": "DSC02605.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/152731604_fa204f53cc_o.jpg", "secret": "fa204f53cc", "media": "photo", "latitude": "0", "id": "152731604", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:48:28", "license": "3", "title": "DSC02606.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/152731888_9307de566f_o.jpg", "secret": "9307de566f", "media": "photo", "latitude": "0", "id": "152731888", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:48:30", "license": "3", "title": "DSC02607.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/152732154_894a28044f_o.jpg", "secret": "894a28044f", "media": "photo", "latitude": "0", "id": "152732154", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:48:59", "license": "3", "title": "DSC02613.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/152732387_9d8d132cd5_o.jpg", "secret": "9d8d132cd5", "media": "photo", "latitude": "0", "id": "152732387", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:49:04", "license": "3", "title": "DSC02615.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/152732657_b59e2ce7a4_o.jpg", "secret": "b59e2ce7a4", "media": "photo", "latitude": "0", "id": "152732657", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:49:05", "license": "3", "title": "DSC02616.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/152732927_8694d714f8_o.jpg", "secret": "8694d714f8", "media": "photo", "latitude": "0", "id": "152732927", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:49:07", "license": "3", "title": "DSC02617.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/152733298_9c9f579c05_o.jpg", "secret": "9c9f579c05", "media": "photo", "latitude": "0", "id": "152733298", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 20:51:56", "license": "3", "title": "DSC02626.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/152733552_615d24db8c_o.jpg", "secret": "615d24db8c", "media": "photo", "latitude": "0", "id": "152733552", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-05-24 21:48:26", "license": "3", "title": "DSC02635.JPG", "text": "", "album_id": "72157594144379059", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/152733988_bb461b187d_o.jpg", "secret": "bb461b187d", "media": "photo", "latitude": "0", "id": "152733988", "tags": "bikes fixed fixedgear sprint fixedse"}, {"datetaken": "2006-06-04 10:38:33", "license": "3", "title": "060604_1", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/160272882_00a717c2af_o.jpg", "secret": "00a717c2af", "media": "photo", "latitude": "0", "id": "160272882", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 10:39:17", "license": "3", "title": "060604_2", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/160273464_13ae2a799b_o.jpg", "secret": "13ae2a799b", "media": "photo", "latitude": "0", "id": "160273464", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 10:50:27", "license": "3", "title": "060604_3", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/160273814_7d5f13172b_o.jpg", "secret": "7d5f13172b", "media": "photo", "latitude": "0", "id": "160273814", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 10:52:44", "license": "3", "title": "060604_4", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/160274204_203d327b79_o.jpg", "secret": "203d327b79", "media": "photo", "latitude": "0", "id": "160274204", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 10:54:17", "license": "3", "title": "060604_5", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/160274898_35ebffff72_o.jpg", "secret": "35ebffff72", "media": "photo", "latitude": "0", "id": "160274898", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 10:56:26", "license": "3", "title": "060604_6", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/160275726_618fdc09b2_o.jpg", "secret": "618fdc09b2", "media": "photo", "latitude": "0", "id": "160275726", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 10:56:56", "license": "3", "title": "060604_7", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/160276239_c1b64e00a3_o.jpg", "secret": "c1b64e00a3", "media": "photo", "latitude": "0", "id": "160276239", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:01:29", "license": "3", "title": "060604_8", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/160276701_5d8c1e086d_o.jpg", "secret": "5d8c1e086d", "media": "photo", "latitude": "0", "id": "160276701", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:01:43", "license": "3", "title": "060604_9", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/160277500_7757c48597_o.jpg", "secret": "7757c48597", "media": "photo", "latitude": "0", "id": "160277500", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:06:01", "license": "3", "title": "060604_19", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/160278433_076028469e_o.jpg", "secret": "076028469e", "media": "photo", "latitude": "0", "id": "160278433", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:08:45", "license": "3", "title": "060604_20", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/160278949_87e3a427d9_o.jpg", "secret": "87e3a427d9", "media": "photo", "latitude": "0", "id": "160278949", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:10:42", "license": "3", "title": "060604_21", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/160279468_6767305cb4_o.jpg", "secret": "6767305cb4", "media": "photo", "latitude": "0", "id": "160279468", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:11:37", "license": "3", "title": "060604_22", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/160280016_c411d1489d_o.jpg", "secret": "c411d1489d", "media": "photo", "latitude": "0", "id": "160280016", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:11:46", "license": "3", "title": "060604_23", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/160280460_b8e5b394df_o.jpg", "secret": "b8e5b394df", "media": "photo", "latitude": "0", "id": "160280460", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:15:01", "license": "3", "title": "060604_48", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/160272246_7210622079_o.jpg", "secret": "7210622079", "media": "photo", "latitude": "0", "id": "160272246", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:18:36", "license": "3", "title": "060604_24", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/160281063_9e13768d05_o.jpg", "secret": "9e13768d05", "media": "photo", "latitude": "0", "id": "160281063", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:20:06", "license": "3", "title": "060604_25", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/160282201_d407982333_o.jpg", "secret": "d407982333", "media": "photo", "latitude": "0", "id": "160282201", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:30:45", "license": "3", "title": "060604_26", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/160283495_2f3ed3bd17_o.jpg", "secret": "2f3ed3bd17", "media": "photo", "latitude": "0", "id": "160283495", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:31:09", "license": "3", "title": "060604_27", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/160283909_1b9083581a_o.jpg", "secret": "1b9083581a", "media": "photo", "latitude": "0", "id": "160283909", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:31:41", "license": "3", "title": "060604_28", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/160259409_ee9cc4da87_o.jpg", "secret": "ee9cc4da87", "media": "photo", "latitude": "0", "id": "160259409", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:32:08", "license": "3", "title": "060604_29", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/160259060_8ebb27daf2_o.jpg", "secret": "8ebb27daf2", "media": "photo", "latitude": "0", "id": "160259060", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:33:05", "license": "3", "title": "060604_30", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/160261765_200c7f3542_o.jpg", "secret": "200c7f3542", "media": "photo", "latitude": "0", "id": "160261765", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:33:29", "license": "3", "title": "060604_31", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/160261332_a874ff1a02_o.jpg", "secret": "a874ff1a02", "media": "photo", "latitude": "0", "id": "160261332", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:34:25", "license": "3", "title": "060604_33", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/160260122_7ed4323b1e_o.jpg", "secret": "7ed4323b1e", "media": "photo", "latitude": "0", "id": "160260122", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:39:23", "license": "3", "title": "060604_34", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/160260814_eb8d1ea5b4_o.jpg", "secret": "eb8d1ea5b4", "media": "photo", "latitude": "0", "id": "160260814", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:42:00", "license": "3", "title": "060604_35", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/160262143_3270ad6a1b_o.jpg", "secret": "3270ad6a1b", "media": "photo", "latitude": "0", "id": "160262143", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 11:49:39", "license": "3", "title": "060604_36bw", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/160291840_3eade54a74_o.jpg", "secret": "3eade54a74", "media": "photo", "latitude": "0", "id": "160291840", "tags": ""}, {"datetaken": "2006-06-04 12:06:51", "license": "3", "title": "060604_37", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/160263936_0d93d75f65_o.jpg", "secret": "0d93d75f65", "media": "photo", "latitude": "0", "id": "160263936", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 12:11:56", "license": "3", "title": "060604_38", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/160265219_a95fca526a_o.jpg", "secret": "a95fca526a", "media": "photo", "latitude": "0", "id": "160265219", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 12:19:38", "license": "3", "title": "060604_39", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/160266200_65bb669763_o.jpg", "secret": "65bb669763", "media": "photo", "latitude": "0", "id": "160266200", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 12:19:52", "license": "3", "title": "060604_40", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/160267147_e342572d6f_o.jpg", "secret": "e342572d6f", "media": "photo", "latitude": "0", "id": "160267147", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 12:43:39", "license": "3", "title": "060604_41", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/160267609_576242d2b6_o.jpg", "secret": "576242d2b6", "media": "photo", "latitude": "0", "id": "160267609", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 12:45:57", "license": "3", "title": "060604_42", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/160267920_fa1700aa2e_o.jpg", "secret": "fa1700aa2e", "media": "photo", "latitude": "0", "id": "160267920", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 13:12:47", "license": "3", "title": "060604_43", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/160268642_a09de22992_o.jpg", "secret": "a09de22992", "media": "photo", "latitude": "0", "id": "160268642", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 13:13:06", "license": "3", "title": "060604_44", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/160269468_e077af0f9e_o.jpg", "secret": "e077af0f9e", "media": "photo", "latitude": "0", "id": "160269468", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 13:14:14", "license": "3", "title": "060604_45", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/160270272_52a599cf71_o.jpg", "secret": "52a599cf71", "media": "photo", "latitude": "0", "id": "160270272", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 13:14:27", "license": "3", "title": "060604_46", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/160270606_e0d6989963_o.jpg", "secret": "e0d6989963", "media": "photo", "latitude": "0", "id": "160270606", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 13:14:27", "license": "3", "title": "060604_46bw", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/160292581_b2542349a3_o.jpg", "secret": "b2542349a3", "media": "photo", "latitude": "0", "id": "160292581", "tags": "trees bike race jump ride bikes racing downhill biking mtb mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-04 13:16:45", "license": "3", "title": "060604_47", "text": "", "album_id": "72157594155491723", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/160271702_ca41698836_o.jpg", "secret": "ca41698836", "media": "photo", "latitude": "0", "id": "160271702", "tags": "bike race cycling jump racing downhill mountainbiking bigair jumps chicksands 4x bedsfattrax rowneywarren"}, {"datetaken": "2006-06-05 12:37:12", "license": "5", "title": "cph-iad-den-sba_002.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/162358442_b6d96bca02_o.jpg", "secret": "b6d96bca02", "media": "photo", "latitude": "0", "id": "162358442", "tags": "sky canon denmark flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 12:37:23", "license": "5", "title": "cph-iad-den-sba_003.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/162358556_2220f45ef0_o.jpg", "secret": "2220f45ef0", "media": "photo", "latitude": "0", "id": "162358556", "tags": "sky canon denmark flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 12:40:36", "license": "5", "title": "cph-iad-den-sba_004.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/162358619_5ab749e587_o.jpg", "secret": "5ab749e587", "media": "photo", "latitude": "0", "id": "162358619", "tags": "sky canon denmark flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 12:40:48", "license": "5", "title": "cph-iad-den-sba_005.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/162358709_ff28955019_o.jpg", "secret": "ff28955019", "media": "photo", "latitude": "0", "id": "162358709", "tags": "sky canon denmark flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 12:42:09", "license": "5", "title": "cph-iad-den-sba_006.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/162358801_03725e5fcf_o.jpg", "secret": "03725e5fcf", "media": "photo", "latitude": "0", "id": "162358801", "tags": "sky canon flying view flight aerial windowseat 30d kalundborg canon30d cphiaddensba kalundborgfjord anthropocene"}, {"datetaken": "2006-06-05 12:42:52", "license": "5", "title": "cph-iad-den-sba_007.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/162358857_90ee8a3e16_o.jpg", "secret": "90ee8a3e16", "media": "photo", "latitude": "0", "id": "162358857", "tags": "sky canon denmark flying view flight aerial windowseat 30d canon30d cphiaddensba anthropocene"}, {"datetaken": "2006-06-05 12:49:05", "license": "5", "title": "cph-iad-den-sba_008.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/162358921_3c9991599f_o.jpg", "secret": "3c9991599f", "media": "photo", "latitude": "0", "id": "162358921", "tags": "sky canon denmark flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 12:49:22", "license": "5", "title": "cph-iad-den-sba_009.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/162359034_27f8bfc04e_o.jpg", "secret": "27f8bfc04e", "media": "photo", "latitude": "0", "id": "162359034", "tags": "sky canon denmark flying view flight aerial windowseat 30d canon30d cphiaddensba anthropocene"}, {"datetaken": "2006-06-05 12:59:34", "license": "5", "title": "cph-iad-den-sba_010.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/162359158_1dfb34f66d_o.jpg", "secret": "1dfb34f66d", "media": "photo", "latitude": "0", "id": "162359158", "tags": "sky canon denmark flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 12:59:50", "license": "5", "title": "cph-iad-den-sba_011.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/162359277_a44630c2ab_o.jpg", "secret": "a44630c2ab", "media": "photo", "latitude": "0", "id": "162359277", "tags": "sky canon denmark flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 13:47:41", "license": "5", "title": "cph-iad-den-sba_012.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/162359414_9bd289d0a6_o.jpg", "secret": "9bd289d0a6", "media": "photo", "latitude": "0", "id": "162359414", "tags": "sky canon flying view flight aerial shetland windowseat 30d canon30d shetlandislands cphiaddensba wickofshaw"}, {"datetaken": "2006-06-05 13:50:53", "license": "5", "title": "cph-iad-den-sba_013.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/162359539_c7b716b1c0_o.jpg", "secret": "c7b716b1c0", "media": "photo", "latitude": "0", "id": "162359539", "tags": "sky canon flying view flight aerial shetland breiwick windowseat 30d unst canon30d shetlandislands cphiaddensba wickofshaw burrafirth"}, {"datetaken": "2006-06-05 18:29:31", "license": "5", "title": "cph-iad-den-sba_014.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/162359597_b9b67b2db7_o.jpg", "secret": "b9b67b2db7", "media": "photo", "latitude": "0", "id": "162359597", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 18:29:50", "license": "5", "title": "cph-iad-den-sba_015.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/162359734_205d27c5d7_o.jpg", "secret": "205d27c5d7", "media": "photo", "latitude": "0", "id": "162359734", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 18:30:10", "license": "5", "title": "cph-iad-den-sba_016.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/162359796_5fc3d8b8c3_o.jpg", "secret": "5fc3d8b8c3", "media": "photo", "latitude": "0", "id": "162359796", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 18:31:53", "license": "5", "title": "cph-iad-den-sba_017.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/162359898_b8094e9fd7_o.jpg", "secret": "b8094e9fd7", "media": "photo", "latitude": "0", "id": "162359898", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 19:34:30", "license": "5", "title": "cph-iad-den-sba_018.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/162360091_f4e3adb718_o.jpg", "secret": "f4e3adb718", "media": "photo", "latitude": "0", "id": "162360091", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 19:41:03", "license": "5", "title": "cph-iad-den-sba_019.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/162360220_4a27830ed2_o.jpg", "secret": "4a27830ed2", "media": "photo", "latitude": "0", "id": "162360220", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 19:41:16", "license": "5", "title": "cph-iad-den-sba_020.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/162360334_1ad0e1a039_o.jpg", "secret": "1ad0e1a039", "media": "photo", "latitude": "0", "id": "162360334", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 19:41:26", "license": "5", "title": "cph-iad-den-sba_021.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/162360472_9a3cee36f3_o.jpg", "secret": "9a3cee36f3", "media": "photo", "latitude": "0", "id": "162360472", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 19:41:35", "license": "5", "title": "cph-iad-den-sba_022.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/162360599_66dbe1f64d_o.jpg", "secret": "66dbe1f64d", "media": "photo", "latitude": "0", "id": "162360599", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 19:41:44", "license": "5", "title": "cph-iad-den-sba_023.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/162360733_c79b96f363_o.jpg", "secret": "c79b96f363", "media": "photo", "latitude": "0", "id": "162360733", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 19:41:54", "license": "5", "title": "cph-iad-den-sba_024.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/162360855_0a9ffc3436_o.jpg", "secret": "0a9ffc3436", "media": "photo", "latitude": "0", "id": "162360855", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 19:50:10", "license": "5", "title": "cph-iad-den-sba_025.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/162360932_bb49a81263_o.jpg", "secret": "bb49a81263", "media": "photo", "latitude": "0", "id": "162360932", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 19:52:40", "license": "5", "title": "cph-iad-den-sba_029.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/162361090_9a8b925a23_o.jpg", "secret": "9a8b925a23", "media": "photo", "latitude": "0", "id": "162361090", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 19:52:45", "license": "5", "title": "cph-iad-den-sba_030.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/162361234_4c211215db_o.jpg", "secret": "4c211215db", "media": "photo", "latitude": "0", "id": "162361234", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 20:20:29", "license": "5", "title": "cph-iad-den-sba_033.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/162361383_ace38a3cab_o.jpg", "secret": "ace38a3cab", "media": "photo", "latitude": "0", "id": "162361383", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 20:20:59", "license": "5", "title": "cph-iad-den-sba_034.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/162361455_a81d7e38f8_o.jpg", "secret": "a81d7e38f8", "media": "photo", "latitude": "0", "id": "162361455", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 20:21:35", "license": "5", "title": "cph-iad-den-sba_035.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/162361593_e5a9f0fd3a_o.jpg", "secret": "e5a9f0fd3a", "media": "photo", "latitude": "0", "id": "162361593", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 20:23:03", "license": "5", "title": "cph-iad-den-sba_036.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/162361681_f6e48ae216_o.jpg", "secret": "f6e48ae216", "media": "photo", "latitude": "0", "id": "162361681", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 20:23:08", "license": "5", "title": "cph-iad-den-sba_037.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/162361799_f99e0e3d0b_o.jpg", "secret": "f99e0e3d0b", "media": "photo", "latitude": "0", "id": "162361799", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 20:24:52", "license": "5", "title": "cph-iad-den-sba_038.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/162361923_35080b089d_o.jpg", "secret": "35080b089d", "media": "photo", "latitude": "0", "id": "162361923", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 20:37:01", "license": "5", "title": "cph-iad-den-sba_039.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/162361997_ab695c9ef7_o.jpg", "secret": "ab695c9ef7", "media": "photo", "latitude": "0", "id": "162361997", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 20:37:05", "license": "5", "title": "cph-iad-den-sba_040.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/162362131_77d1ad08ef_o.jpg", "secret": "77d1ad08ef", "media": "photo", "latitude": "0", "id": "162362131", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 20:37:13", "license": "5", "title": "cph-iad-den-sba_041.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/162362237_2b8d906d2b_o.jpg", "secret": "2b8d906d2b", "media": "photo", "latitude": "0", "id": "162362237", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 20:37:23", "license": "5", "title": "cph-iad-den-sba_042.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/162362356_2ba7c3d2f8_o.jpg", "secret": "2ba7c3d2f8", "media": "photo", "latitude": "0", "id": "162362356", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 20:42:48", "license": "5", "title": "cph-iad-den-sba_043.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/162362488_80380d18c3_o.jpg", "secret": "80380d18c3", "media": "photo", "latitude": "0", "id": "162362488", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 20:42:57", "license": "5", "title": "cph-iad-den-sba_044.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/162362595_7069bb5cd6_o.jpg", "secret": "7069bb5cd6", "media": "photo", "latitude": "0", "id": "162362595", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 20:44:40", "license": "5", "title": "cph-iad-den-sba_045.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/162362705_6decf7923a_o.jpg", "secret": "6decf7923a", "media": "photo", "latitude": "0", "id": "162362705", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 21:08:28", "license": "5", "title": "cph-iad-den-sba_046.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/162362791_3bb82bf264_o.jpg", "secret": "3bb82bf264", "media": "photo", "latitude": "0", "id": "162362791", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-05 21:10:18", "license": "5", "title": "cph-iad-den-sba_048.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/162362857_6ada69f868_o.jpg", "secret": "6ada69f868", "media": "photo", "latitude": "0", "id": "162362857", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-06 03:15:39", "license": "5", "title": "cph-iad-den-sba_049.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/162362936_2984088046_o.jpg", "secret": "2984088046", "media": "photo", "latitude": "0", "id": "162362936", "tags": "sky clouds canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-06 03:22:40", "license": "5", "title": "cph-iad-den-sba_050.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/162363026_69b888d8f6_o.jpg", "secret": "69b888d8f6", "media": "photo", "latitude": "0", "id": "162363026", "tags": "sky canon flying track view flight aerial dirtbike windowseat 30d canon30d cphiaddensba anthropocene"}, {"datetaken": "2006-06-06 03:52:43", "license": "5", "title": "cph-iad-den-sba_051.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/162363174_08084a1eb3_o.jpg", "secret": "08084a1eb3", "media": "photo", "latitude": "0", "id": "162363174", "tags": "sky canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-06 03:57:13", "license": "5", "title": "cph-iad-den-sba_052.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/162363244_e3f965f914_o.jpg", "secret": "e3f965f914", "media": "photo", "latitude": "0", "id": "162363244", "tags": "sky clouds canon flying view flight aerial windowseat 30d canon30d cphiaddensba anthropocene"}, {"datetaken": "2006-06-06 03:58:00", "license": "5", "title": "cph-iad-den-sba_053.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/162363334_a75ea2bb24_o.jpg", "secret": "a75ea2bb24", "media": "photo", "latitude": "0", "id": "162363334", "tags": "sky clouds canon flying view flight aerial windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-06 03:58:14", "license": "5", "title": "cph-iad-den-sba_055.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/162363410_9c29ea2db3_o.jpg", "secret": "9c29ea2db3", "media": "photo", "latitude": "0", "id": "162363410", "tags": "sky west clouds canon flying view den flight aerial windowseat thunderstorms 30d thewest denverinternational canon30d cphiaddensba"}, {"datetaken": "2006-06-06 06:41:06", "license": "5", "title": "cph-iad-den-sba_056.JPG", "text": "", "album_id": "72157594158582516", "longitude": "-118.483428", "url_o": "https://farm1.staticflickr.com/62/162363485_5cd8908aa6_o.jpg", "secret": "5cd8908aa6", "media": "photo", "latitude": "34.178577", "id": "162363485", "tags": "california city sky urban night canon lights flying losangeles view aviation flight cities aerial southern valley hollywood freeway highways sanfernando sanfernandovalley grapevine freeways verdugo windowseat 30d sepulvedapass thevalley thegrapevine canon30d goldenstatefreeway cphiaddensba anthropocene mountverdugo"}, {"datetaken": "2006-06-06 07:14:51", "license": "5", "title": "cph-iad-den-sba_057.JPG", "text": "", "album_id": "72157594158582516", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/162363634_df9589562e_o.jpg", "secret": "df9589562e", "media": "photo", "latitude": "0", "id": "162363634", "tags": "sky canon flying view flight aerial gps windowseat 30d canon30d cphiaddensba"}, {"datetaken": "2006-06-24 11:06:28", "license": "1", "title": "Expo", "text": "", "album_id": "72157594191594416", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/177112835_9fabb94bb2_o.jpg", "secret": "9fabb94bb2", "media": "photo", "latitude": "0", "id": "177112835", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 03:41:30", "license": "1", "title": "Getting ready", "text": "", "album_id": "72157594191594416", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/177112244_20e50a3f9f_o.jpg", "secret": "20e50a3f9f", "media": "photo", "latitude": "0", "id": "177112244", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 04:29:43", "license": "1", "title": "Pro Swim Start", "text": "", "album_id": "72157594191594416", "longitude": "-101.702874", "url_o": "https://farm1.staticflickr.com/68/177111798_3432787064_o.jpg", "secret": "3432787064", "media": "photo", "latitude": "33.533113", "id": "177111798", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 04:34:48", "license": "1", "title": "Swim Start", "text": "", "album_id": "72157594191594416", "longitude": "-101.702874", "url_o": "https://farm1.staticflickr.com/61/177111430_7842cbc9cc_o.jpg", "secret": "7842cbc9cc", "media": "photo", "latitude": "33.533113", "id": "177111430", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 04:35:51", "license": "1", "title": "Swim", "text": "", "album_id": "72157594191594416", "longitude": "-101.702874", "url_o": "https://farm1.staticflickr.com/76/177111020_820af5f07d_o.jpg", "secret": "820af5f07d", "media": "photo", "latitude": "33.533113", "id": "177111020", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 04:54:44", "license": "1", "title": "Swim Start", "text": "", "album_id": "72157594191594416", "longitude": "-101.702874", "url_o": "https://farm1.staticflickr.com/55/177110753_6100aae45b_o.jpg", "secret": "6100aae45b", "media": "photo", "latitude": "33.533113", "id": "177110753", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 05:07:42", "license": "1", "title": "Photographer", "text": "", "album_id": "72157594191594416", "longitude": "-101.704344", "url_o": "https://farm1.staticflickr.com/67/177108433_df0eb936ab_o.jpg", "secret": "df0eb936ab", "media": "photo", "latitude": "33.532541", "id": "177108433", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 05:16:44", "license": "1", "title": "Bike Start", "text": "", "album_id": "72157594191594416", "longitude": "-101.704344", "url_o": "https://farm1.staticflickr.com/57/177109019_985efeebd7_o.jpg", "secret": "985efeebd7", "media": "photo", "latitude": "33.532541", "id": "177109019", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 05:26:23", "license": "1", "title": "Bike Start", "text": "", "album_id": "72157594191594416", "longitude": "-101.704344", "url_o": "https://farm1.staticflickr.com/48/177109508_ac5a4f557a_o.jpg", "secret": "ac5a4f557a", "media": "photo", "latitude": "33.532541", "id": "177109508", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 05:27:23", "license": "1", "title": "Repairs", "text": "", "album_id": "72157594191594416", "longitude": "-101.704344", "url_o": "https://farm1.staticflickr.com/55/177107881_da83b6072b_o.jpg", "secret": "da83b6072b", "media": "photo", "latitude": "33.532541", "id": "177107881", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 05:27:34", "license": "1", "title": "Bike Start", "text": "", "album_id": "72157594191594416", "longitude": "-101.704344", "url_o": "https://farm1.staticflickr.com/72/177109960_d34d623a0e_o.jpg", "secret": "d34d623a0e", "media": "photo", "latitude": "33.532541", "id": "177109960", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 05:34:30", "license": "1", "title": "Speed", "text": "", "album_id": "72157594191594416", "longitude": "-101.704344", "url_o": "https://farm1.staticflickr.com/53/189491205_39ef731868_o.jpg", "secret": "39ef731868", "media": "photo", "latitude": "33.532541", "id": "189491205", "tags": "bike speed swim dof run ironman triathlon lubbock buffalosprings"}, {"datetaken": "2006-06-25 05:34:50", "license": "1", "title": "Bike Start", "text": "", "album_id": "72157594191594416", "longitude": "-101.704344", "url_o": "https://farm1.staticflickr.com/66/177107286_b14270e3ca_o.jpg", "secret": "b14270e3ca", "media": "photo", "latitude": "33.532541", "id": "177107286", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 05:34:55", "license": "1", "title": "Speed", "text": "", "album_id": "72157594191594416", "longitude": "-101.704344", "url_o": "https://farm1.staticflickr.com/62/189489947_2a677ee183_o.jpg", "secret": "2a677ee183", "media": "photo", "latitude": "33.532541", "id": "189489947", "tags": "bike speed swim dof run ironman triathlon lubbock buffalosprings"}, {"datetaken": "2006-06-25 05:35:33", "license": "1", "title": "Bike Start", "text": "", "album_id": "72157594191594416", "longitude": "-101.704344", "url_o": "https://farm1.staticflickr.com/77/177106649_7d01eec899_o.jpg", "secret": "7d01eec899", "media": "photo", "latitude": "33.532541", "id": "177106649", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 05:35:37", "license": "1", "title": "Speed", "text": "", "album_id": "72157594191594416", "longitude": "-101.704344", "url_o": "https://farm1.staticflickr.com/66/189490635_57713c66fe_o.jpg", "secret": "57713c66fe", "media": "photo", "latitude": "33.532541", "id": "189490635", "tags": "bike speed swim dof run ironman triathlon lubbock buffalosprings"}, {"datetaken": "2006-06-25 05:35:58", "license": "1", "title": "Speed", "text": "", "album_id": "72157594191594416", "longitude": "-101.704344", "url_o": "https://farm1.staticflickr.com/59/189492190_bb029183da_o.jpg", "secret": "bb029183da", "media": "photo", "latitude": "33.532541", "id": "189492190", "tags": "bike speed swim dof run ironman triathlon lubbock buffalosprings"}, {"datetaken": "2006-06-25 05:36:03", "license": "1", "title": "Speed", "text": "", "album_id": "72157594191594416", "longitude": "-101.704344", "url_o": "https://farm1.staticflickr.com/68/189492663_8daa17a3c6_o.jpg", "secret": "8daa17a3c6", "media": "photo", "latitude": "33.532541", "id": "189492663", "tags": "bike speed swim dof run ironman triathlon lubbock buffalosprings"}, {"datetaken": "2006-06-25 05:37:13", "license": "1", "title": "Speed", "text": "", "album_id": "72157594191594416", "longitude": "-101.704344", "url_o": "https://farm1.staticflickr.com/48/189491683_217e487722_o.jpg", "secret": "217e487722", "media": "photo", "latitude": "33.532541", "id": "189491683", "tags": "bike speed swim dof run ironman triathlon lubbock buffalosprings"}, {"datetaken": "2006-06-25 05:38:27", "license": "1", "title": "Speedy Banana", "text": "", "album_id": "72157594191594416", "longitude": "-101.704344", "url_o": "https://farm1.staticflickr.com/78/189493211_8d4b51999f_o.jpg", "secret": "8d4b51999f", "media": "photo", "latitude": "33.532541", "id": "189493211", "tags": "bike speed swim dof run ironman triathlon lubbock buffalosprings"}, {"datetaken": "2006-06-25 06:25:32", "license": "1", "title": "Transition Area", "text": "", "album_id": "72157594191594416", "longitude": "-101.703958", "url_o": "https://farm1.staticflickr.com/72/177106150_479b371e55_o.jpg", "secret": "479b371e55", "media": "photo", "latitude": "33.532961", "id": "177106150", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 07:55:06", "license": "1", "title": "Bike Finish", "text": "", "album_id": "72157594191594416", "longitude": "-101.702392", "url_o": "https://farm1.staticflickr.com/74/177105438_581587d57b_o.jpg", "secret": "581587d57b", "media": "photo", "latitude": "33.532362", "id": "177105438", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 08:05:08", "license": "1", "title": "Excitement", "text": "", "album_id": "72157594191594416", "longitude": "-101.702392", "url_o": "https://farm1.staticflickr.com/68/177105007_6447def07f_o.jpg", "secret": "6447def07f", "media": "photo", "latitude": "33.532362", "id": "177105007", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 08:14:17", "license": "1", "title": "Bike Finish", "text": "", "album_id": "72157594191594416", "longitude": "-101.702392", "url_o": "https://farm1.staticflickr.com/59/177103530_24c102ab5e_o.jpg", "secret": "24c102ab5e", "media": "photo", "latitude": "33.532362", "id": "177103530", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 08:36:33", "license": "1", "title": "Bike Finish", "text": "", "album_id": "72157594191594416", "longitude": "-101.702392", "url_o": "https://farm1.staticflickr.com/61/177103804_079973abf2_o.jpg", "secret": "079973abf2", "media": "photo", "latitude": "33.532362", "id": "177103804", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 08:46:11", "license": "1", "title": "Sprinter", "text": "", "album_id": "72157594191594416", "longitude": "-101.702392", "url_o": "https://farm1.staticflickr.com/77/177104079_14bace04ab_o.jpg", "secret": "14bace04ab", "media": "photo", "latitude": "33.532362", "id": "177104079", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 08:49:12", "license": "1", "title": "Bike Finish", "text": "", "album_id": "72157594191594416", "longitude": "-101.702392", "url_o": "https://farm1.staticflickr.com/74/177104413_6647b75421_o.jpg", "secret": "6647b75421", "media": "photo", "latitude": "33.532362", "id": "177104413", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 08:58:45", "license": "1", "title": "Finish Line", "text": "", "album_id": "72157594191594416", "longitude": "-101.704484", "url_o": "https://farm1.staticflickr.com/74/177103155_445563df8b_o.jpg", "secret": "445563df8b", "media": "photo", "latitude": "33.532255", "id": "177103155", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 09:03:07", "license": "1", "title": "Cold Towel?", "text": "", "album_id": "72157594191594416", "longitude": "-101.705310", "url_o": "https://farm1.staticflickr.com/77/177102651_40dad2ba84_o.jpg", "secret": "40dad2ba84", "media": "photo", "latitude": "33.531638", "id": "177102651", "tags": "bike swim towel run ironman bikini triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 09:07:00", "license": "1", "title": "Cold Towel?", "text": "", "album_id": "72157594191594416", "longitude": "-101.705310", "url_o": "https://farm1.staticflickr.com/30/177102405_66532c92a3_o.jpg", "secret": "66532c92a3", "media": "photo", "latitude": "33.531638", "id": "177102405", "tags": "cute girl bike swim boobs towel run ironman frog bikini tummy float triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 09:14:56", "license": "1", "title": "Runners", "text": "", "album_id": "72157594191594416", "longitude": "-101.706157", "url_o": "https://farm1.staticflickr.com/61/177102120_9d01e32335_o.jpg", "secret": "9d01e32335", "media": "photo", "latitude": "33.530479", "id": "177102120", "tags": "hot bike swim run ironman triathlon landis lubbock buffalosprings teamearthquake"}, {"datetaken": "2006-06-25 10:13:07", "license": "1", "title": "Runners", "text": "", "album_id": "72157594191594416", "longitude": "-101.706157", "url_o": "https://farm1.staticflickr.com/73/177101823_72dff60dc0_o.jpg", "secret": "72dff60dc0", "media": "photo", "latitude": "33.530479", "id": "177101823", "tags": "bike swim run ironman tiedye triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 10:17:29", "license": "1", "title": "Runners", "text": "", "album_id": "72157594191594416", "longitude": "-101.706157", "url_o": "https://farm1.staticflickr.com/61/177101441_82269e220c_o.jpg", "secret": "82269e220c", "media": "photo", "latitude": "33.530479", "id": "177101441", "tags": "usa bike america swim flag run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 10:23:31", "license": "1", "title": "Runners", "text": "", "album_id": "72157594191594416", "longitude": "-101.706157", "url_o": "https://farm1.staticflickr.com/64/177100956_c5ab581ea5_o.jpg", "secret": "c5ab581ea5", "media": "photo", "latitude": "33.530479", "id": "177100956", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 10:44:03", "license": "1", "title": "Runners", "text": "", "album_id": "72157594191594416", "longitude": "-101.706157", "url_o": "https://farm1.staticflickr.com/60/177100720_38757642c0_o.jpg", "secret": "38757642c0", "media": "photo", "latitude": "33.530479", "id": "177100720", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 11:30:15", "license": "1", "title": "Runners", "text": "", "album_id": "72157594191594416", "longitude": "-101.706157", "url_o": "https://farm1.staticflickr.com/64/177100326_e6f570170e_o.jpg", "secret": "e6f570170e", "media": "photo", "latitude": "33.530479", "id": "177100326", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 12:13:07", "license": "1", "title": "Spectator", "text": "", "album_id": "72157594191594416", "longitude": "-101.706157", "url_o": "https://farm1.staticflickr.com/56/177100428_4c4393754a_o.jpg", "secret": "4c4393754a", "media": "photo", "latitude": "33.530479", "id": "177100428", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2006-06-25 12:46:45", "license": "1", "title": "Runners", "text": "", "album_id": "72157594191594416", "longitude": "-101.706157", "url_o": "https://farm1.staticflickr.com/63/177100063_b7e89c6e6d_o.jpg", "secret": "b7e89c6e6d", "media": "photo", "latitude": "33.530479", "id": "177100063", "tags": "bike swim run ironman triathlon landis lubbock buffalosprings"}, {"datetaken": "2005-05-30 14:00:44", "license": "3", "title": "102_0235", "text": "", "album_id": "442373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18786117_fa23ad9316_o.jpg", "secret": "fa23ad9316", "media": "photo", "latitude": "0", "id": "18786117", "tags": "bikeraces memorialday2005"}, {"datetaken": "2005-05-30 14:00:45", "license": "3", "title": "102_0236", "text": "", "album_id": "442373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18786136_950ba3404b_o.jpg", "secret": "950ba3404b", "media": "photo", "latitude": "0", "id": "18786136", "tags": "bikeraces memorialday2005"}, {"datetaken": "2005-05-30 14:00:47", "license": "3", "title": "102_0237", "text": "", "album_id": "442373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18786846_bb41120b53_o.jpg", "secret": "bb41120b53", "media": "photo", "latitude": "0", "id": "18786846", "tags": "bikeraces memorialday2005"}, {"datetaken": "2005-05-30 14:00:55", "license": "3", "title": "102_0238", "text": "", "album_id": "442373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18786152_e840d7b4f6_o.jpg", "secret": "e840d7b4f6", "media": "photo", "latitude": "0", "id": "18786152", "tags": "bikeraces memorialday2005"}, {"datetaken": "2005-05-30 14:16:40", "license": "3", "title": "102_0239", "text": "", "album_id": "442373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18786998_592fa58310_o.jpg", "secret": "592fa58310", "media": "photo", "latitude": "0", "id": "18786998", "tags": "carnivalrides memorialday2005"}, {"datetaken": "2005-05-30 14:16:41", "license": "3", "title": "102_0240", "text": "", "album_id": "442373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18787009_bd3a8b6385_o.jpg", "secret": "bd3a8b6385", "media": "photo", "latitude": "0", "id": "18787009", "tags": "carnivalrides memorialday2005"}, {"datetaken": "2005-05-30 14:16:42", "license": "3", "title": "102_0242", "text": "", "album_id": "442373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18787032_f23631bc71_o.jpg", "secret": "f23631bc71", "media": "photo", "latitude": "0", "id": "18787032", "tags": "carnivalrides memorialday2005"}, {"datetaken": "2005-05-30 14:16:42", "license": "3", "title": "102_0241", "text": "", "album_id": "442373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18787015_c65543e685_o.jpg", "secret": "c65543e685", "media": "photo", "latitude": "0", "id": "18787015", "tags": "carnivalrides memorialday2005"}, {"datetaken": "2005-05-30 14:16:43", "license": "3", "title": "102_0244", "text": "", "album_id": "442373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18787047_125686fb4d_o.jpg", "secret": "125686fb4d", "media": "photo", "latitude": "0", "id": "18787047", "tags": "carnivalrides memorialday2005"}, {"datetaken": "2005-05-30 14:16:43", "license": "3", "title": "102_0243", "text": "", "album_id": "442373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18787039_d4382f29e6_o.jpg", "secret": "d4382f29e6", "media": "photo", "latitude": "0", "id": "18787039", "tags": "carnivalrides memorialday2005"}, {"datetaken": "2005-05-30 14:16:44", "license": "3", "title": "102_0245", "text": "", "album_id": "442373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18787065_0454b8e016_o.jpg", "secret": "0454b8e016", "media": "photo", "latitude": "0", "id": "18787065", "tags": "carnivalrides memorialday2005"}, {"datetaken": "2005-05-30 14:16:54", "license": "3", "title": "102_0246", "text": "", "album_id": "442373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18787070_494ba2f26a_o.jpg", "secret": "494ba2f26a", "media": "photo", "latitude": "0", "id": "18787070", "tags": "carnivalrides memorialday2005"}, {"datetaken": "2005-05-30 14:17:43", "license": "3", "title": "102_0247", "text": "", "album_id": "442373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18787084_d8d46398d5_o.jpg", "secret": "d8d46398d5", "media": "photo", "latitude": "0", "id": "18787084", "tags": "carnivalrides memorialday2005"}, {"datetaken": "2005-05-30 14:18:12", "license": "3", "title": "102_0248", "text": "", "album_id": "442373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/18787089_e5c6bef97d_o.jpg", "secret": "e5c6bef97d", "media": "photo", "latitude": "0", "id": "18787089", "tags": "carnivalrides memorialday2005"}, {"datetaken": "2005-05-30 14:18:13", "license": "3", "title": "102_0249", "text": "", "album_id": "442373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18787092_ac871ef2a5_o.jpg", "secret": "ac871ef2a5", "media": "photo", "latitude": "0", "id": "18787092", "tags": "carnivalrides memorialday2005"}, {"datetaken": "2005-05-30 14:18:42", "license": "3", "title": "102_0250", "text": "", "album_id": "442373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/18787100_6742fcbadc_o.jpg", "secret": "6742fcbadc", "media": "photo", "latitude": "0", "id": "18787100", "tags": "carnivalrides memorialday2005"}, {"datetaken": "2006-05-20 18:11:21", "license": "3", "title": "Cruser & Magna - pre race", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/150736153_7d01562492_o.jpg", "secret": "7d01562492", "media": "photo", "latitude": "0", "id": "150736153", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 18:15:28", "license": "3", "title": "Aegis", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/150736175_0c715800de_o.jpg", "secret": "0c715800de", "media": "photo", "latitude": "0", "id": "150736175", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 18:15:43", "license": "3", "title": "Zipp", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/150736194_40026ba8e6_o.jpg", "secret": "40026ba8e6", "media": "photo", "latitude": "0", "id": "150736194", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 18:31:44", "license": "3", "title": "hmm, so where's the start?", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/150736229_a98f4a8ba9_o.jpg", "secret": "a98f4a8ba9", "media": "photo", "latitude": "0", "id": "150736229", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 19:19:10", "license": "3", "title": "Tri Freaks", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/150736252_36d7c22a3b_o.jpg", "secret": "36d7c22a3b", "media": "photo", "latitude": "0", "id": "150736252", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 19:34:36", "license": "3", "title": "Zoot Suit", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/150736285_dcc3cdee05_o.jpg", "secret": "dcc3cdee05", "media": "photo", "latitude": "0", "id": "150736285", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 19:42:10", "license": "3", "title": "34 & Under Swim Start", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/150736315_f0cd0eab69_o.jpg", "secret": "f0cd0eab69", "media": "photo", "latitude": "0", "id": "150736315", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 19:42:43", "license": "3", "title": "Boom", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/150736345_c39dd5142c_o.jpg", "secret": "c39dd5142c", "media": "photo", "latitude": "0", "id": "150736345", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 19:59:03", "license": "3", "title": "Swim exit", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/150736362_0d1196281d_o.jpg", "secret": "0d1196281d", "media": "photo", "latitude": "0", "id": "150736362", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 19:59:28", "license": "3", "title": "Zoot Suit - 2", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/150736392_572624921b_o.jpg", "secret": "572624921b", "media": "photo", "latitude": "0", "id": "150736392", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 20:00:44", "license": "3", "title": "NATA?", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/150736420_4e20dc4cb4_o.jpg", "secret": "4e20dc4cb4", "media": "photo", "latitude": "0", "id": "150736420", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 20:00:52", "license": "3", "title": "headless cyclist", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/150736432_7726107850_o.jpg", "secret": "7726107850", "media": "photo", "latitude": "0", "id": "150736432", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 20:44:16", "license": "3", "title": "Done Riding...", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/150736463_739901b8a2_o.jpg", "secret": "739901b8a2", "media": "photo", "latitude": "0", "id": "150736463", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 20:45:03", "license": "3", "title": "5 Miles to go", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/150736502_0986460dac_o.jpg", "secret": "0986460dac", "media": "photo", "latitude": "0", "id": "150736502", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 21:16:00", "license": "3", "title": "1/4 mile to go", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/150736528_89e6e88972_o.jpg", "secret": "89e6e88972", "media": "photo", "latitude": "0", "id": "150736528", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 21:16:04", "license": "3", "title": "Get a tan", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/150736556_1756cc9e2c_o.jpg", "secret": "1756cc9e2c", "media": "photo", "latitude": "0", "id": "150736556", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 21:33:35", "license": "3", "title": "Done", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/150736581_08b1a23c45_o.jpg", "secret": "08b1a23c45", "media": "photo", "latitude": "0", "id": "150736581", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 21:34:02", "license": "3", "title": "Done zooming", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/150736606_bdd772e8f3_o.jpg", "secret": "bdd772e8f3", "media": "photo", "latitude": "0", "id": "150736606", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 21:35:00", "license": "3", "title": "Steve Chavez", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/150736629_ff94b7e55c_o.jpg", "secret": "ff94b7e55c", "media": "photo", "latitude": "0", "id": "150736629", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 21:35:13", "license": "3", "title": "Zoom & FMRC", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/150736650_e7cd3a92b6_o.jpg", "secret": "e7cd3a92b6", "media": "photo", "latitude": "0", "id": "150736650", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 23:08:44", "license": "3", "title": "Men 30 - 34 winners", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/150736679_e827c1f278_o.jpg", "secret": "e827c1f278", "media": "photo", "latitude": "0", "id": "150736679", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 23:08:48", "license": "3", "title": "IMG_0299", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/150736706_6f4622190e_o.jpg", "secret": "6f4622190e", "media": "photo", "latitude": "0", "id": "150736706", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 23:08:56", "license": "3", "title": "IMG_0300", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/150736741_74bc15254d_o.jpg", "secret": "74bc15254d", "media": "photo", "latitude": "0", "id": "150736741", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 23:14:39", "license": "3", "title": "Clydesdale Winner", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/150736772_8205cdc2bd_o.jpg", "secret": "8205cdc2bd", "media": "photo", "latitude": "0", "id": "150736772", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 23:16:22", "license": "3", "title": "45 - 49 Winner", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/150736800_bedb42ae66_o.jpg", "secret": "bedb42ae66", "media": "photo", "latitude": "0", "id": "150736800", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-20 23:27:07", "license": "3", "title": "Clydesdales", "text": "", "album_id": "72057594141428750", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/150736118_65deab8c04_o.jpg", "secret": "65deab8c04", "media": "photo", "latitude": "0", "id": "150736118", "tags": "bike swim run 2006 triathlon uvas jasoncruser stevechavez"}, {"datetaken": "2006-05-28 10:39:52", "license": "3", "title": "ben, freestylin'", "text": "", "album_id": "72157594150856962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/155406138_c79beb5183_o.jpg", "secret": "c79beb5183", "media": "photo", "latitude": "0", "id": "155406138", "tags": "bike jump ben bikes mountainbiking mabie"}, {"datetaken": "2006-05-28 10:52:49", "license": "3", "title": "IMGP1155", "text": "", "album_id": "72157594150856962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/157158029_0854d2632d_o.jpg", "secret": "0854d2632d", "media": "photo", "latitude": "0", "id": "157158029", "tags": "bike bikes mountainbiking"}, {"datetaken": "2006-05-28 10:53:18", "license": "3", "title": "IMGP1161", "text": "", "album_id": "72157594150856962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/157071354_59c79811ca_o.jpg", "secret": "59c79811ca", "media": "photo", "latitude": "0", "id": "157071354", "tags": "bike bikes mountainbiking"}, {"datetaken": "2006-05-28 11:00:52", "license": "3", "title": "double trouble", "text": "", "album_id": "72157594150856962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/155613941_f186b904f9_o.jpg", "secret": "f186b904f9", "media": "photo", "latitude": "0", "id": "155613941", "tags": "bike bikes mountainbiking monkeyonabike goodtoseesomeproperforks"}, {"datetaken": "2006-05-28 12:07:23", "license": "3", "title": "IMGP1185", "text": "", "album_id": "72157594150856962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/157154994_537a60663a_o.jpg", "secret": "537a60663a", "media": "photo", "latitude": "0", "id": "157154994", "tags": "bike bikes mountainbiking"}, {"datetaken": "2006-05-28 12:07:39", "license": "3", "title": "IMGP1188", "text": "", "album_id": "72157594150856962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/157155334_8ed8b2a494_o.jpg", "secret": "8ed8b2a494", "media": "photo", "latitude": "0", "id": "157155334", "tags": "bike bikes mountainbiking"}, {"datetaken": "2006-05-28 12:17:43", "license": "3", "title": "IMGP1196", "text": "", "album_id": "72157594150856962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/157144927_ad7d40bfa5_o.jpg", "secret": "ad7d40bfa5", "media": "photo", "latitude": "0", "id": "157144927", "tags": "bike bikes mountainbiking"}, {"datetaken": "2006-05-28 12:18:27", "license": "3", "title": "oooh ooh aah ahh aah!", "text": "", "album_id": "72157594150856962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/155809630_deb6caad01_o.jpg", "secret": "deb6caad01", "media": "photo", "latitude": "0", "id": "155809630", "tags": "bike bikes muppet mountainbiking"}, {"datetaken": "2006-05-28 12:32:55", "license": "3", "title": "IMGP1207", "text": "", "album_id": "72157594150856962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/157156583_32e6ee7fcf_o.jpg", "secret": "32e6ee7fcf", "media": "photo", "latitude": "0", "id": "157156583", "tags": "bike bikes mountainbiking"}, {"datetaken": "2006-05-28 16:15:55", "license": "3", "title": "IMGP1217", "text": "", "album_id": "72157594150856962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/157146983_a0289e9ade_o.jpg", "secret": "a0289e9ade", "media": "photo", "latitude": "0", "id": "157146983", "tags": "bike bikes mountainbiking"}, {"datetaken": "2006-05-28 18:54:06", "license": "3", "title": "racing", "text": "", "album_id": "72157594150856962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/157153347_419ad203cf_o.jpg", "secret": "419ad203cf", "media": "photo", "latitude": "0", "id": "157153347", "tags": "bike bikes mountainbiking"}, {"datetaken": "2006-06-04 12:37:03", "license": "2", "title": "Katharina, Natasha and Tash before the race", "text": "", "album_id": "72157594155344623", "longitude": "-1.257462", "url_o": "https://farm1.staticflickr.com/54/160178274_7b0912eb22_o.jpg", "secret": "7b0912eb22", "media": "photo", "latitude": "51.760721", "id": "160178274", "tags": "oxford raceforlife"}, {"datetaken": "2006-06-04 12:37:16", "license": "2", "title": "Who they were racing for", "text": "", "album_id": "72157594155344623", "longitude": "-1.257462", "url_o": "https://farm1.staticflickr.com/66/160178663_8521e7b8bb_o.jpg", "secret": "8521e7b8bb", "media": "photo", "latitude": "51.760721", "id": "160178663", "tags": "oxford raceforlife"}, {"datetaken": "2006-06-04 12:41:31", "license": "2", "title": "Before the race", "text": "", "album_id": "72157594155344623", "longitude": "-1.257462", "url_o": "https://farm1.staticflickr.com/48/160178950_b7df8ef124_o.jpg", "secret": "b7df8ef124", "media": "photo", "latitude": "51.760721", "id": "160178950", "tags": "oxford raceforlife"}, {"datetaken": "2006-06-04 12:55:45", "license": "2", "title": "Beti", "text": "", "album_id": "72157594155344623", "longitude": "-1.257462", "url_o": "https://farm1.staticflickr.com/53/160179223_1a15b6a62b_o.jpg", "secret": "1a15b6a62b", "media": "photo", "latitude": "51.760721", "id": "160179223", "tags": "oxford raceforlife"}, {"datetaken": "2006-06-04 12:59:52", "license": "2", "title": "Beti doing the crab", "text": "", "album_id": "72157594155344623", "longitude": "-1.257462", "url_o": "https://farm1.staticflickr.com/74/160179462_a6a249dee3_o.jpg", "secret": "a6a249dee3", "media": "photo", "latitude": "51.760721", "id": "160179462", "tags": "oxford raceforlife"}, {"datetaken": "2006-06-04 13:30:58", "license": "2", "title": "And they're off", "text": "", "album_id": "72157594155344623", "longitude": "-1.257462", "url_o": "https://farm1.staticflickr.com/58/160179764_8afb94d24b_o.jpg", "secret": "8afb94d24b", "media": "photo", "latitude": "51.760721", "id": "160179764", "tags": "oxford raceforlife"}, {"datetaken": "2006-06-04 13:31:12", "license": "2", "title": "Serious joggers", "text": "", "album_id": "72157594155344623", "longitude": "-1.257462", "url_o": "https://farm1.staticflickr.com/44/160179987_0332c2d4fc_o.jpg", "secret": "0332c2d4fc", "media": "photo", "latitude": "51.760721", "id": "160179987", "tags": "oxford raceforlife"}, {"datetaken": "2006-06-04 13:37:18", "license": "2", "title": "Bunny girls", "text": "", "album_id": "72157594155344623", "longitude": "-1.257462", "url_o": "https://farm1.staticflickr.com/59/160180252_d96d8854a7_o.jpg", "secret": "d96d8854a7", "media": "photo", "latitude": "51.760721", "id": "160180252", "tags": "oxford raceforlife"}, {"datetaken": "2006-06-04 13:52:47", "license": "2", "title": "1st place", "text": "", "album_id": "72157594155344623", "longitude": "-1.257462", "url_o": "https://farm1.staticflickr.com/72/160180514_eda2d060f4_o.jpg", "secret": "eda2d060f4", "media": "photo", "latitude": "51.760721", "id": "160180514", "tags": "oxford raceforlife"}, {"datetaken": "2006-06-04 13:53:12", "license": "2", "title": "2nd place", "text": "", "album_id": "72157594155344623", "longitude": "-1.257462", "url_o": "https://farm1.staticflickr.com/74/160180764_e935aba636_o.jpg", "secret": "e935aba636", "media": "photo", "latitude": "51.760721", "id": "160180764", "tags": "oxford raceforlife"}, {"datetaken": "2006-06-04 14:01:49", "license": "2", "title": "Fastest Fairy", "text": "", "album_id": "72157594155344623", "longitude": "-1.257462", "url_o": "https://farm1.staticflickr.com/76/160180965_494e8adb43_o.jpg", "secret": "494e8adb43", "media": "photo", "latitude": "51.760721", "id": "160180965", "tags": "oxford raceforlife"}, {"datetaken": "2006-06-04 14:04:26", "license": "2", "title": "Natasha on the home strait", "text": "", "album_id": "72157594155344623", "longitude": "-1.257462", "url_o": "https://farm1.staticflickr.com/72/160181259_7fd84d357d_o.jpg", "secret": "7fd84d357d", "media": "photo", "latitude": "51.760721", "id": "160181259", "tags": "oxford raceforlife"}, {"datetaken": "2006-06-04 14:13:16", "license": "2", "title": "Jogger on wheels", "text": "", "album_id": "72157594155344623", "longitude": "-1.257462", "url_o": "https://farm1.staticflickr.com/70/160181528_6991f6d5b1_o.jpg", "secret": "6991f6d5b1", "media": "photo", "latitude": "51.760721", "id": "160181528", "tags": "oxford raceforlife"}, {"datetaken": "2006-06-04 14:16:50", "license": "2", "title": "Tash romping home", "text": "", "album_id": "72157594155344623", "longitude": "-1.257462", "url_o": "https://farm1.staticflickr.com/19/160181787_22ba1d1cf5_o.jpg", "secret": "22ba1d1cf5", "media": "photo", "latitude": "51.760721", "id": "160181787", "tags": "oxford raceforlife"}, {"datetaken": "2006-06-04 14:48:11", "license": "2", "title": "Natasha, Katharina and Tash display their medals", "text": "", "album_id": "72157594155344623", "longitude": "-1.257462", "url_o": "https://farm1.staticflickr.com/70/160182078_23206f83a5_o.jpg", "secret": "23206f83a5", "media": "photo", "latitude": "51.760721", "id": "160182078", "tags": "oxford raceforlife"}, {"datetaken": "2006-06-09 11:01:16", "license": "4", "title": "21.LETR4.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/163727837_47f20600c9_o.jpg", "secret": "47f20600c9", "media": "photo", "latitude": "0", "id": "163727837", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 11:01:16", "license": "4", "title": "21.LETR3.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/163727832_befcbe4af3_o.jpg", "secret": "befcbe4af3", "media": "photo", "latitude": "0", "id": "163727832", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 11:01:16", "license": "4", "title": "21.LETR2.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/163727830_cad67e3c83_o.jpg", "secret": "cad67e3c83", "media": "photo", "latitude": "0", "id": "163727830", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 11:01:16", "license": "4", "title": "21.LETR1.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/163727828_db8dfdf153_o.jpg", "secret": "db8dfdf153", "media": "photo", "latitude": "0", "id": "163727828", "tags": "southwest sports race washingtondc running mstreet dcist runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 11:01:17", "license": "4", "title": "21.LETR6.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/163727840_cf0d180072_o.jpg", "secret": "cf0d180072", "media": "photo", "latitude": "0", "id": "163727840", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 11:01:17", "license": "4", "title": "21.LETR5.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/163727838_3317ddcad2_o.jpg", "secret": "3317ddcad2", "media": "photo", "latitude": "0", "id": "163727838", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 14:42:54", "license": "4", "title": "01.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/163827895_1291406042_o.jpg", "secret": "1291406042", "media": "photo", "latitude": "0", "id": "163827895", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 14:42:54", "license": "4", "title": "02.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/163827896_2034352a9c_o.jpg", "secret": "2034352a9c", "media": "photo", "latitude": "0", "id": "163827896", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 14:42:54", "license": "4", "title": "03.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/163827898_8fddb5cf6f_o.jpg", "secret": "8fddb5cf6f", "media": "photo", "latitude": "0", "id": "163827898", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 14:49:37", "license": "4", "title": "04.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/163831191_d2fad47ade_o.jpg", "secret": "d2fad47ade", "media": "photo", "latitude": "0", "id": "163831191", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 14:49:37", "license": "4", "title": "05.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/163831193_e5186e9c69_o.jpg", "secret": "e5186e9c69", "media": "photo", "latitude": "0", "id": "163831193", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 14:49:37", "license": "4", "title": "06.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/163831194_8a3fb01d1a_o.jpg", "secret": "8a3fb01d1a", "media": "photo", "latitude": "0", "id": "163831194", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 14:55:16", "license": "4", "title": "07.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/163833915_92357fb364_o.jpg", "secret": "92357fb364", "media": "photo", "latitude": "0", "id": "163833915", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 14:55:16", "license": "4", "title": "08.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/163833916_9353506c56_o.jpg", "secret": "9353506c56", "media": "photo", "latitude": "0", "id": "163833916", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 14:55:16", "license": "4", "title": "09.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/163833917_7fc2de009d_o.jpg", "secret": "7fc2de009d", "media": "photo", "latitude": "0", "id": "163833917", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 15:04:34", "license": "4", "title": "10.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/163838457_5ed610d110_o.jpg", "secret": "5ed610d110", "media": "photo", "latitude": "0", "id": "163838457", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 15:04:34", "license": "4", "title": "10a.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/163838459_a8861396d0_o.jpg", "secret": "a8861396d0", "media": "photo", "latitude": "0", "id": "163838459", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 15:04:34", "license": "4", "title": "11.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/163838460_23a0cfdc29_o.jpg", "secret": "23a0cfdc29", "media": "photo", "latitude": "0", "id": "163838460", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 15:09:22", "license": "4", "title": "13.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/163840953_6ba9abd571_o.jpg", "secret": "6ba9abd571", "media": "photo", "latitude": "0", "id": "163840953", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 15:09:22", "license": "4", "title": "15.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/163840955_cc496e2542_o.jpg", "secret": "cc496e2542", "media": "photo", "latitude": "0", "id": "163840955", "tags": "southwest sports race washingtondc running mstreet runners swwdc 4thstreet specialolympics fourthstreet sports2006 southwestwaterfront june2006 09june2006 21stannuallawenforcementtorchrun lawenforcementtorchrun specialolympicsdistrictofcolumbia 21lesotr 21lesotr9jun06"}, {"datetaken": "2006-06-09 15:16:46", "license": "4", "title": "17.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/163844693_6fcc7b06bf_o.jpg", "secret": "6fcc7b06bf", "media": "photo", "latitude": "0", "id": "163844693", "tags": ""}, {"datetaken": "2006-06-09 15:16:46", "license": "4", "title": "18.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/163844695_fd058a067c_o.jpg", "secret": "fd058a067c", "media": "photo", "latitude": "0", "id": "163844695", "tags": ""}, {"datetaken": "2006-06-09 15:16:46", "license": "4", "title": "19.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/163844697_4f493ce556_o.jpg", "secret": "4f493ce556", "media": "photo", "latitude": "0", "id": "163844697", "tags": ""}, {"datetaken": "2006-06-09 15:16:46", "license": "4", "title": "19a.LETR.SW.WDC.9jun06", "text": "", "album_id": "72157594160746917", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/163844698_b4ef1d925f_o.jpg", "secret": "b4ef1d925f", "media": "photo", "latitude": "0", "id": "163844698", "tags": ""}, {"datetaken": "2006-06-12 14:16:52", "license": "1", "title": "Preparing for Event 1", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/169099508_ed14426e09_o.jpg", "secret": "ed14426e09", "media": "photo", "latitude": "0", "id": "169099508", "tags": "friends bike uvic barbiebike bboii andrealuey robshirkey"}, {"datetaken": "2006-06-12 14:22:39", "license": "1", "title": "The Start", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/169099373_3d68671d65_o.jpg", "secret": "3d68671d65", "media": "photo", "latitude": "0", "id": "169099373", "tags": "friends bike uvic barbiebike bboii robshirkey"}, {"datetaken": "2006-06-12 14:23:26", "license": "1", "title": "Nearing the finish", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/169099200_efe08fb3b3_o.jpg", "secret": "efe08fb3b3", "media": "photo", "latitude": "0", "id": "169099200", "tags": "friends bike uvic barbiebike bboii robshirkey"}, {"datetaken": "2006-06-12 14:25:01", "license": "1", "title": "and she's off", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/169099090_460e0c3609_o.jpg", "secret": "460e0c3609", "media": "photo", "latitude": "0", "id": "169099090", "tags": "bike uvic barbiebike bboii"}, {"datetaken": "2006-06-12 14:28:57", "license": "1", "title": "Dre Prepares to race", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/169098937_79bb75ef82_o.jpg", "secret": "79bb75ef82", "media": "photo", "latitude": "0", "id": "169098937", "tags": "friends bike uvic barbiebike bboii andrealuey"}, {"datetaken": "2006-06-12 14:29:25", "license": "1", "title": "Ready", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/169098817_81169ae89c_o.jpg", "secret": "81169ae89c", "media": "photo", "latitude": "0", "id": "169098817", "tags": "friends bike uvic barbiebike bboii andrealuey"}, {"datetaken": "2006-06-12 14:29:49", "license": "1", "title": "Set", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/169098697_51c90198ae_o.jpg", "secret": "51c90198ae", "media": "photo", "latitude": "0", "id": "169098697", "tags": "friends bike uvic barbiebike bboii andrealuey"}, {"datetaken": "2006-06-12 14:30:36", "license": "1", "title": "Go!", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/169098596_a0247a00c5_o.jpg", "secret": "a0247a00c5", "media": "photo", "latitude": "0", "id": "169098596", "tags": "friends bike uvic barbiebike bboii andrealuey"}, {"datetaken": "2006-06-12 14:31:11", "license": "1", "title": "Dre gives up the title with grace", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/169098481_9831f9c864_o.jpg", "secret": "9831f9c864", "media": "photo", "latitude": "0", "id": "169098481", "tags": "friends bike uvic barbiebike bboii andrealuey robshirkey"}, {"datetaken": "2006-06-12 14:43:43", "license": "1", "title": "Event 2", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/169098222_48a422cd53_o.jpg", "secret": "48a422cd53", "media": "photo", "latitude": "0", "id": "169098222", "tags": "friends bike uvic barbiebike bboii andrealuey"}, {"datetaken": "2006-06-12 14:46:41", "license": "1", "title": "Time trials", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/169098364_616d7307dd_o.jpg", "secret": "616d7307dd", "media": "photo", "latitude": "0", "id": "169098364", "tags": "friends bike uvic barbiebike bboii"}, {"datetaken": "2006-06-12 14:50:28", "license": "1", "title": "over the hill and through the woods: event 2", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/169098097_7905bc7bd8_o.jpg", "secret": "7905bc7bd8", "media": "photo", "latitude": "0", "id": "169098097", "tags": "friends bike uvic barbiebike bboii"}, {"datetaken": "2006-06-12 14:57:12", "license": "1", "title": "Guest competitior: Jamie", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/169097963_caade2bb45_o.jpg", "secret": "caade2bb45", "media": "photo", "latitude": "0", "id": "169097963", "tags": "friends bike uvic barbiebike bboii jamiebiggar"}, {"datetaken": "2006-06-12 14:58:10", "license": "1", "title": "Barbie Bike and Barbie Bike Hat", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/169097847_aed2ac6468_o.jpg", "secret": "aed2ac6468", "media": "photo", "latitude": "0", "id": "169097847", "tags": "friends bike uvic barbiebike bboii"}, {"datetaken": "2006-06-12 14:58:52", "license": "1", "title": "Bunnies (taking refuge from the BBO)", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/169097700_5016a6c520_o.jpg", "secret": "5016a6c520", "media": "photo", "latitude": "0", "id": "169097700", "tags": "friends bike uvic barbiebike bboii"}, {"datetaken": "2006-06-12 15:01:04", "license": "1", "title": "Rob in the fountain", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/169097572_0764c35789_o.jpg", "secret": "0764c35789", "media": "photo", "latitude": "0", "id": "169097572", "tags": "friends bike uvic barbiebike bboii robshirkey"}, {"datetaken": "2006-06-12 15:01:08", "license": "1", "title": "Rob in the fountain 2", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/169097435_7c5337aa8f_o.jpg", "secret": "7c5337aa8f", "media": "photo", "latitude": "0", "id": "169097435", "tags": "friends bike uvic p24 barbiebike bboii robshirkey"}, {"datetaken": "2006-06-12 15:01:55", "license": "1", "title": "Dre in the fountain", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/169097284_cdd44a961f_o.jpg", "secret": "cdd44a961f", "media": "photo", "latitude": "0", "id": "169097284", "tags": "friends bike uvic barbiebike bboii andrealuey"}, {"datetaken": "2006-06-12 15:02:27", "license": "1", "title": "Dre in the fountain 2", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/169097167_3581a6d1e2_o.jpg", "secret": "3581a6d1e2", "media": "photo", "latitude": "0", "id": "169097167", "tags": "friends bike uvic barbiebike bboii andrealuey"}, {"datetaken": "2006-06-12 15:03:18", "license": "1", "title": "Dre & Rob in the fountain", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/169097005_7b5531baf7_o.jpg", "secret": "7b5531baf7", "media": "photo", "latitude": "0", "id": "169097005", "tags": "friends bike uvic barbiebike bboii andrealuey robshirkey"}, {"datetaken": "2006-06-12 15:03:29", "license": "1", "title": "Dre in the fountain 2", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/169096856_ecead4dc69_o.jpg", "secret": "ecead4dc69", "media": "photo", "latitude": "0", "id": "169096856", "tags": "friends bike uvic barbiebike bboii andrealuey"}, {"datetaken": "2006-06-12 15:03:36", "license": "1", "title": "Rob in the fountain", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/169096747_91fd2fb0a6_o.jpg", "secret": "91fd2fb0a6", "media": "photo", "latitude": "0", "id": "169096747", "tags": "friends bike uvic barbiebike bboii robshirkey"}, {"datetaken": "2006-06-12 15:07:28", "license": "1", "title": "Rob stands on the BB", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/169096615_d0a1dc3270_o.jpg", "secret": "d0a1dc3270", "media": "photo", "latitude": "0", "id": "169096615", "tags": "friends bike uvic barbiebike bboii"}, {"datetaken": "2006-06-12 15:07:30", "license": "1", "title": "Rob stands on the BB 2", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/169096540_fad6f1a7fd_o.jpg", "secret": "fad6f1a7fd", "media": "photo", "latitude": "0", "id": "169096540", "tags": "friends bike uvic barbiebike bboii"}, {"datetaken": "2006-06-12 15:07:32", "license": "1", "title": "Rob stands on the BB 3", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/169096456_1c049f00c4_o.jpg", "secret": "1c049f00c4", "media": "photo", "latitude": "0", "id": "169096456", "tags": "friends bike uvic barbiebike bboii"}, {"datetaken": "2006-06-12 15:07:35", "license": "1", "title": "Rob stands on the BB 4", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/169096287_ff90d29676_o.jpg", "secret": "ff90d29676", "media": "photo", "latitude": "0", "id": "169096287", "tags": "friends bike uvic barbiebike bboii"}, {"datetaken": "2006-06-12 15:14:51", "license": "1", "title": "Barbie Bike detail", "text": "", "album_id": "72157594168728431", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/169096129_cd6473caf7_o.jpg", "secret": "cd6473caf7", "media": "photo", "latitude": "0", "id": "169096129", "tags": "friends bike uvic barbiebike bboii"}, {"datetaken": "2006-06-26 12:48:27", "license": "4", "title": "DSC_0041", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/175672317_e1bd68b28f_o.jpg", "secret": "e1bd68b28f", "media": "photo", "latitude": "0", "id": "175672317", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:48:31", "license": "4", "title": "DSC_0043", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/175672370_dc371bfc68_o.jpg", "secret": "dc371bfc68", "media": "photo", "latitude": "0", "id": "175672370", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:48:42", "license": "4", "title": "DSC_0049", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/175672481_cd1b19f8c6_o.jpg", "secret": "cd1b19f8c6", "media": "photo", "latitude": "0", "id": "175672481", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:48:48", "license": "4", "title": "DSC_0058", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/175672527_f845cc58b3_o.jpg", "secret": "f845cc58b3", "media": "photo", "latitude": "0", "id": "175672527", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:49:07", "license": "4", "title": "DSC_0061", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/175672761_4ef29da6aa_o.jpg", "secret": "4ef29da6aa", "media": "photo", "latitude": "0", "id": "175672761", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:49:14", "license": "4", "title": "DSC_0067", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/175672826_b3c82bf3fb_o.jpg", "secret": "b3c82bf3fb", "media": "photo", "latitude": "0", "id": "175672826", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:49:17", "license": "4", "title": "DSC_0075", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/175672863_6cc9cb8e67_o.jpg", "secret": "6cc9cb8e67", "media": "photo", "latitude": "0", "id": "175672863", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:49:24", "license": "4", "title": "DSC_0093", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/175672977_16a902859e_o.jpg", "secret": "16a902859e", "media": "photo", "latitude": "0", "id": "175672977", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:49:28", "license": "4", "title": "DSC_0103", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/175673026_05d0e201af_o.jpg", "secret": "05d0e201af", "media": "photo", "latitude": "0", "id": "175673026", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:49:32", "license": "4", "title": "DSC_0108", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/175673087_19e8a32781_o.jpg", "secret": "19e8a32781", "media": "photo", "latitude": "0", "id": "175673087", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:49:43", "license": "4", "title": "DSC_0115", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/175673210_7358a2908c_o.jpg", "secret": "7358a2908c", "media": "photo", "latitude": "0", "id": "175673210", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:50:07", "license": "4", "title": "DSC_0121", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/175673451_4696767fd3_o.jpg", "secret": "4696767fd3", "media": "photo", "latitude": "0", "id": "175673451", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:50:17", "license": "4", "title": "DSC_0124", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/175673598_a903d27aa5_o.jpg", "secret": "a903d27aa5", "media": "photo", "latitude": "0", "id": "175673598", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:50:20", "license": "4", "title": "DSC_0127", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/175673635_4d21a300f6_o.jpg", "secret": "4d21a300f6", "media": "photo", "latitude": "0", "id": "175673635", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:50:22", "license": "4", "title": "DSC_0141", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/175673658_ef2625df9f_o.jpg", "secret": "ef2625df9f", "media": "photo", "latitude": "0", "id": "175673658", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:50:29", "license": "4", "title": "DSC_0144", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/175673733_abd3782718_o.jpg", "secret": "abd3782718", "media": "photo", "latitude": "0", "id": "175673733", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:50:36", "license": "4", "title": "DSC_0145", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/175673815_59708545a4_o.jpg", "secret": "59708545a4", "media": "photo", "latitude": "0", "id": "175673815", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:50:41", "license": "4", "title": "DSC_0146b", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/175673867_e976623a02_o.jpg", "secret": "e976623a02", "media": "photo", "latitude": "0", "id": "175673867", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:50:45", "license": "4", "title": "DSC_0147", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/175673908_db0a52c09d_o.jpg", "secret": "db0a52c09d", "media": "photo", "latitude": "0", "id": "175673908", "tags": "race keirin madisons"}, {"datetaken": "2006-06-26 12:50:58", "license": "4", "title": "DSC_0153", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/175674047_fd37535a32_o.jpg", "secret": "fd37535a32", "media": "photo", "latitude": "0", "id": "175674047", "tags": ""}, {"datetaken": "2006-06-26 12:51:02", "license": "4", "title": "DSC_0155", "text": "", "album_id": "72157594178770280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/175674093_03b9af1041_o.jpg", "secret": "03b9af1041", "media": "photo", "latitude": "0", "id": "175674093", "tags": "race keirin madisons"}, {"datetaken": "2006-07-03 13:32:16", "license": "3", "title": "two porsche at bruennchen", "text": "", "album_id": "72157594186275466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/181058161_52168c3fec_o.jpg", "secret": "52168c3fec", "media": "photo", "latitude": "0", "id": "181058161", "tags": "cars racing porsche racecars nordschleife n\u00fcrburgring"}, {"datetaken": "2006-07-03 13:39:25", "license": "3", "title": "phoenix", "text": "", "album_id": "72157594186275466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/181069792_5180105b0d_o.jpg", "secret": "5180105b0d", "media": "photo", "latitude": "0", "id": "181069792", "tags": "cars racing racecars nordschleife n\u00fcrburgring"}, {"datetaken": "2006-07-03 13:44:34", "license": "3", "title": "old vw golf at bruennchen", "text": "", "album_id": "72157594186275466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/181055504_580ce97b28_o.jpg", "secret": "580ce97b28", "media": "photo", "latitude": "0", "id": "181055504", "tags": "cars golf racing racecars nordschleife n\u00fcrburgring"}, {"datetaken": "2006-07-03 14:25:36", "license": "3", "title": "penske f1", "text": "", "album_id": "72157594186275466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/181067453_b6eac5a446_o.jpg", "secret": "b6eac5a446", "media": "photo", "latitude": "0", "id": "181067453", "tags": "cars f1 racing racecars nordschleife n\u00fcrburgring penske"}, {"datetaken": "2006-07-03 14:27:15", "license": "3", "title": "ATS f1", "text": "", "album_id": "72157594186275466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/181060114_1243eef262_o.jpg", "secret": "1243eef262", "media": "photo", "latitude": "0", "id": "181060114", "tags": "cars racing racecars nordschleife n\u00fcrburgring"}, {"datetaken": "2006-07-03 14:30:52", "license": "3", "title": "Zakspeed f1", "text": "", "album_id": "72157594186275466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/181063828_811e0fdba4_o.jpg", "secret": "811e0fdba4", "media": "photo", "latitude": "0", "id": "181063828", "tags": "cars f1 racing racecars nordschleife n\u00fcrburgring zakspeed"}, {"datetaken": "2006-07-03 14:34:02", "license": "3", "title": "old formula 2 car (1969)", "text": "", "album_id": "72157594186275466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/181065718_c500e84865_o.jpg", "secret": "c500e84865", "media": "photo", "latitude": "0", "id": "181065718", "tags": "cars racing racecars nordschleife n\u00fcrburgring"}, {"datetaken": "2006-07-03 14:51:23", "license": "3", "title": "BMW Sauber F1-06", "text": "", "album_id": "72157594186275466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/181062060_31364e398a_o.jpg", "secret": "31364e398a", "media": "photo", "latitude": "0", "id": "181062060", "tags": "cars f1 racing bmw racecars nordschleife n\u00fcrburgring"}, {"datetaken": "2006-07-03 15:40:01", "license": "3", "title": "mx5 at pflanzgarten", "text": "", "album_id": "72157594186275466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/181053494_79aa51216f_o.jpg", "secret": "79aa51216f", "media": "photo", "latitude": "0", "id": "181053494", "tags": "cars racing racecars nordschleife n\u00fcrburgring"}, {"datetaken": "2006-07-03 15:43:46", "license": "3", "title": "fiat at pflanzgarten", "text": "", "album_id": "72157594186275466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/181051311_728a6ab763_o.jpg", "secret": "728a6ab763", "media": "photo", "latitude": "0", "id": "181051311", "tags": "cars racing racecars nordschleife n\u00fcrburgring"}, {"datetaken": "2006-07-03 15:46:09", "license": "3", "title": "corvette at pflanzgarten", "text": "", "album_id": "72157594186275466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/181048927_dc6a5ee258_o.jpg", "secret": "dc6a5ee258", "media": "photo", "latitude": "0", "id": "181048927", "tags": "cars racing racecars nordschleife n\u00fcrburgring"}, {"datetaken": "2006-07-03 15:48:00", "license": "3", "title": "bike at pflanzgarten", "text": "", "album_id": "72157594186275466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/181046713_68c2fa4e86_o.jpg", "secret": "68c2fa4e86", "media": "photo", "latitude": "0", "id": "181046713", "tags": "cars racing racecars nordschleife n\u00fcrburgring"}, {"datetaken": "2004-07-23 21:28:18", "license": "5", "title": "San Jacinto Monument and Andrew", "text": "", "album_id": "72157607009196210", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3250/2809160018_6dbc0b656d_o.jpg", "secret": "c1c3c8ba0d", "media": "photo", "latitude": "0", "id": "2809160018", "tags": "andrew"}, {"datetaken": "2004-07-23 21:30:26", "license": "5", "title": "Liza at monument", "text": "", "album_id": "72157607009196210", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3253/2809160172_e2d5cca1b6_o.jpg", "secret": "969c278dab", "media": "photo", "latitude": "0", "id": "2809160172", "tags": "liza"}, {"datetaken": "2004-07-23 21:31:28", "license": "5", "title": "Liza heads into the Monument", "text": "", "album_id": "72157607009196210", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3151/2808310785_49246cf6f4_o.jpg", "secret": "a69e29bfd5", "media": "photo", "latitude": "0", "id": "2808310785", "tags": "liza"}, {"datetaken": "2004-07-23 21:36:03", "license": "5", "title": "Andrew waits", "text": "", "album_id": "72157607009196210", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3140/2808310949_9d8712ccde_o.jpg", "secret": "6c39c862e3", "media": "photo", "latitude": "0", "id": "2808310949", "tags": "andrew"}, {"datetaken": "2004-07-23 21:36:35", "license": "5", "title": "Liza", "text": "", "album_id": "72157607009196210", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3058/2808311159_07cc6d86e6_o.jpg", "secret": "efd02f9db7", "media": "photo", "latitude": "0", "id": "2808311159", "tags": "liza"}, {"datetaken": "2004-07-23 21:38:20", "license": "5", "title": "Two by the monument.", "text": "", "album_id": "72157607009196210", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3095/2809160808_cdb1eabacf_o.jpg", "secret": "237dcd1921", "media": "photo", "latitude": "0", "id": "2809160808", "tags": ""}, {"datetaken": "2004-07-23 21:38:34", "license": "5", "title": "San Jacinto Monument", "text": "", "album_id": "72157607009196210", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3151/2809160996_12d2af22a1_o.jpg", "secret": "a21fcb7ef4", "media": "photo", "latitude": "0", "id": "2809160996", "tags": ""}, {"datetaken": "2004-07-23 21:41:51", "license": "5", "title": "Which way should I go?", "text": "", "album_id": "72157607009196210", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3013/2808311613_0d33fa9d0e_o.jpg", "secret": "573686cf94", "media": "photo", "latitude": "0", "id": "2808311613", "tags": "liza"}, {"datetaken": "2004-07-23 21:42:40", "license": "5", "title": "Another view", "text": "", "album_id": "72157607009196210", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3268/2808311743_d4164f7f38_o.jpg", "secret": "20895b1508", "media": "photo", "latitude": "0", "id": "2808311743", "tags": "andrew"}, {"datetaken": "2004-07-23 21:43:55", "license": "5", "title": "", "text": "", "album_id": "72157607009196210", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3162/2809161506_5d20f447af_o.jpg", "secret": "1caa1c4342", "media": "photo", "latitude": "0", "id": "2809161506", "tags": ""}, {"datetaken": "2004-07-23 21:44:31", "license": "5", "title": "DCP_2292", "text": "", "album_id": "72157607009196210", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3163/2809161642_5210a7db82_o.jpg", "secret": "d35741db5e", "media": "photo", "latitude": "0", "id": "2809161642", "tags": "liza andrew"}, {"datetaken": "2004-07-23 21:45:47", "license": "5", "title": "Reflection in muck.", "text": "", "album_id": "72157607009196210", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3208/2809161786_a3c9b5bcab_o.jpg", "secret": "8d4b59fee6", "media": "photo", "latitude": "0", "id": "2809161786", "tags": ""}, {"datetaken": "2004-07-23 21:46:07", "license": "5", "title": "Pretty muck", "text": "", "album_id": "72157607009196210", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3239/2809161948_bcc7fb7593_o.jpg", "secret": "c45635d365", "media": "photo", "latitude": "0", "id": "2809161948", "tags": ""}, {"datetaken": "2004-07-23 21:51:20", "license": "5", "title": "Texas & Vermont (their soldiers fought side by side)", "text": "", "album_id": "72157607009196210", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3084/2809162106_40d3c2bcaf_o.jpg", "secret": "a93bd370ba", "media": "photo", "latitude": "0", "id": "2809162106", "tags": "liza"}, {"datetaken": "2004-07-23 21:58:44", "license": "5", "title": "Andrew and the Battleship", "text": "", "album_id": "72157607009196210", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3048/2808312617_e9d0c74eaa_o.jpg", "secret": "bbfb5e157c", "media": "photo", "latitude": "0", "id": "2808312617", "tags": ""}, {"datetaken": "2007-06-30 20:19:16", "license": "5", "title": "Birthday Cake", "text": "", "album_id": "72157607015477072", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3196/2809425215_04bf8a2a26_o.jpg", "secret": "8959757612", "media": "photo", "latitude": "0", "id": "2809425215", "tags": "jared"}, {"datetaken": "2007-06-30 20:24:21", "license": "5", "title": "Corin", "text": "", "album_id": "72157607015477072", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3134/2810273326_1092c956ee_o.jpg", "secret": "92793291db", "media": "photo", "latitude": "0", "id": "2810273326", "tags": "corin"}, {"datetaken": "2007-06-30 20:25:52", "license": "5", "title": "Corin", "text": "", "album_id": "72157607015477072", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3032/2810273486_585af2d942_o.jpg", "secret": "7710aa81ef", "media": "photo", "latitude": "0", "id": "2810273486", "tags": "corin"}, {"datetaken": "2007-06-30 20:26:10", "license": "5", "title": "Andrew brings tea", "text": "", "album_id": "72157607015477072", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3159/2809425707_47aa6498e2_o.jpg", "secret": "c34a4c76d2", "media": "photo", "latitude": "0", "id": "2809425707", "tags": "andrew"}, {"datetaken": "2007-06-30 20:27:10", "license": "5", "title": "Mimi brings cake", "text": "", "album_id": "72157607015477072", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3041/2809425885_ee95acc914_o.jpg", "secret": "50c60b743f", "media": "photo", "latitude": "0", "id": "2809425885", "tags": "mimi"}, {"datetaken": "2007-06-30 20:27:38", "license": "5", "title": "Jared & Cake", "text": "", "album_id": "72157607015477072", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3093/2809426067_df342e12ba_o.jpg", "secret": "28c62f686c", "media": "photo", "latitude": "0", "id": "2809426067", "tags": "jared"}, {"datetaken": "2007-06-30 20:28:24", "license": "5", "title": "Jared & Cake", "text": "", "album_id": "72157607015477072", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3143/2809426323_52c70255c6_o.jpg", "secret": "80f3bc8ec3", "media": "photo", "latitude": "0", "id": "2809426323", "tags": "jared"}, {"datetaken": "2007-07-01 07:05:15", "license": "5", "title": "Jared gets a new ping pong table!", "text": "", "album_id": "72157607015477072", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3120/2810274308_b72514e079_o.jpg", "secret": "608f38e40d", "media": "photo", "latitude": "0", "id": "2810274308", "tags": "jared"}, {"datetaken": "2007-07-01 07:08:51", "license": "5", "title": "Mimi is excited", "text": "", "album_id": "72157607015477072", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3271/2809426673_8b53e38551_o.jpg", "secret": "30a4cea18a", "media": "photo", "latitude": "0", "id": "2809426673", "tags": "mimi"}, {"datetaken": "2007-07-01 07:08:54", "license": "5", "title": "Jared", "text": "", "album_id": "72157607015477072", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3057/2809426829_173e8804ff_o.jpg", "secret": "e6a79325ff", "media": "photo", "latitude": "0", "id": "2809426829", "tags": "jared"}, {"datetaken": "2007-07-01 07:09:24", "license": "5", "title": "Jared", "text": "", "album_id": "72157607015477072", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3049/2810274804_aae7547796_o.jpg", "secret": "7a0f01a11a", "media": "photo", "latitude": "0", "id": "2810274804", "tags": "jared"}, {"datetaken": "2007-07-01 07:10:52", "license": "5", "title": "Jared is done with pictures", "text": "", "album_id": "72157607015477072", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3188/2810274900_c008106c27_o.jpg", "secret": "50efd3c03b", "media": "photo", "latitude": "0", "id": "2810274900", "tags": "jared"}, {"datetaken": "2007-07-01 07:19:58", "license": "5", "title": "Jared recieved ping pong paddles", "text": "", "album_id": "72157607015477072", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3290/2809427275_d8b6d8b287_o.jpg", "secret": "84206b87c2", "media": "photo", "latitude": "0", "id": "2809427275", "tags": "jared"}, {"datetaken": "2007-01-01 22:56:57", "license": "1", "title": "Happy Birthday Jeff and Gary", "text": "", "album_id": "72157594453346147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/341894602_8f80e2cab9_o.jpg", "secret": "8f80e2cab9", "media": "photo", "latitude": "0", "id": "341894602", "tags": "jeff"}, {"datetaken": "2007-01-01 22:57:02", "license": "1", "title": "Make a wish!", "text": "", "album_id": "72157594453346147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/341894729_35328f5824_o.jpg", "secret": "35328f5824", "media": "photo", "latitude": "0", "id": "341894729", "tags": "jeff"}, {"datetaken": "2007-01-01 22:57:06", "license": "1", "title": "Eating his very own cake", "text": "", "album_id": "72157594453346147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/341894800_c23e535c8a_o.jpg", "secret": "c23e535c8a", "media": "photo", "latitude": "0", "id": "341894800", "tags": ""}, {"datetaken": "2007-01-01 22:57:10", "license": "1", "title": "Yum!", "text": "", "album_id": "72157594453346147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/341894885_48efd4267f_o.jpg", "secret": "48efd4267f", "media": "photo", "latitude": "0", "id": "341894885", "tags": ""}, {"datetaken": "2007-01-01 22:57:18", "license": "1", "title": "Happy Birthday to Gary and Jeff", "text": "", "album_id": "72157594453346147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/341895033_62db6b2c9f_o.jpg", "secret": "62db6b2c9f", "media": "photo", "latitude": "0", "id": "341895033", "tags": ""}, {"datetaken": "2007-01-01 22:57:23", "license": "1", "title": "Gary's very own cake", "text": "", "album_id": "72157594453346147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/341895142_d0cc976c56_o.jpg", "secret": "d0cc976c56", "media": "photo", "latitude": "0", "id": "341895142", "tags": ""}, {"datetaken": "2007-01-01 22:57:28", "license": "1", "title": "Cake time!", "text": "", "album_id": "72157594453346147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/341895245_0cec1f2a5c_o.jpg", "secret": "0cec1f2a5c", "media": "photo", "latitude": "0", "id": "341895245", "tags": "jeff"}, {"datetaken": "2007-01-01 22:57:35", "license": "1", "title": "The Birthday Boys", "text": "", "album_id": "72157594453346147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/341895367_1f9b901714_o.jpg", "secret": "1f9b901714", "media": "photo", "latitude": "0", "id": "341895367", "tags": "jeff"}, {"datetaken": "2007-01-01 22:57:41", "license": "1", "title": "The Haight's", "text": "", "album_id": "72157594453346147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/341895510_ffb76b4298_o.jpg", "secret": "ffb76b4298", "media": "photo", "latitude": "0", "id": "341895510", "tags": ""}, {"datetaken": "2007-01-01 22:57:48", "license": "1", "title": "Jenny, Cory, Gary and Cory II", "text": "", "album_id": "72157594453346147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/341895630_62c3fcb06d_o.jpg", "secret": "62c3fcb06d", "media": "photo", "latitude": "0", "id": "341895630", "tags": ""}, {"datetaken": "2007-01-01 22:57:52", "license": "1", "title": "Baby Cory", "text": "", "album_id": "72157594453346147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/341895727_a23be50b17_o.jpg", "secret": "a23be50b17", "media": "photo", "latitude": "0", "id": "341895727", "tags": ""}, {"datetaken": "2011-11-25 12:46:29", "license": "5", "title": "25th November", "text": "", "album_id": "72157628668713213", "longitude": "2.338113", "url_o": "https://farm8.staticflickr.com/7018/6614847535_980622f06c_o.jpg", "secret": "fb56ca7780", "media": "photo", "latitude": "48.849340", "id": "6614847535", "tags": "birthday white wine vin sancerre blanc niall"}, {"datetaken": "2011-11-25 14:10:33", "license": "5", "title": "25th November", "text": "", "album_id": "72157628668713213", "longitude": "2.338446", "url_o": "https://farm8.staticflickr.com/7143/6614838197_f0ba14b902_o.jpg", "secret": "05729c0acd", "media": "photo", "latitude": "48.847790", "id": "6614838197", "tags": "birthday autumn tree leaves niall jardindeluxembourg"}, {"datetaken": "2011-11-25 14:11:42", "license": "5", "title": "25th November", "text": "", "album_id": "72157628668713213", "longitude": "2.338446", "url_o": "https://farm8.staticflickr.com/7007/6614841145_d0cff7b62a_o.jpg", "secret": "14a3ae625b", "media": "photo", "latitude": "48.847790", "id": "6614841145", "tags": "birthday niall jardindeluxembourg"}, {"datetaken": "2011-11-25 14:11:57", "license": "5", "title": "25th November", "text": "", "album_id": "72157628668713213", "longitude": "2.338446", "url_o": "https://farm8.staticflickr.com/7027/6614843703_4fcc2bfa98_o.jpg", "secret": "46c90613d9", "media": "photo", "latitude": "48.847790", "id": "6614843703", "tags": "birthday niall jardindeluxembourg"}, {"datetaken": "2011-11-25 14:13:12", "license": "5", "title": "25th November", "text": "", "album_id": "72157628668713213", "longitude": "2.338446", "url_o": "https://farm8.staticflickr.com/7021/6614845083_af849e1de1_o.jpg", "secret": "97d88a3b7f", "media": "photo", "latitude": "48.847790", "id": "6614845083", "tags": "birthday niall jardindeluxembourg"}, {"datetaken": "2011-11-25 14:14:18", "license": "5", "title": "25th November", "text": "", "album_id": "72157628668713213", "longitude": "2.338446", "url_o": "https://farm8.staticflickr.com/7002/6614845663_f080413cac_o.jpg", "secret": "f75680d4db", "media": "photo", "latitude": "48.847790", "id": "6614845663", "tags": "birthday niall jardindeluxembourg"}, {"datetaken": "2011-11-25 14:30:03", "license": "5", "title": "25th November", "text": "", "album_id": "72157628668713213", "longitude": "2.338113", "url_o": "https://farm8.staticflickr.com/7035/6614846113_077135e2c5_o.jpg", "secret": "1d475a99fd", "media": "photo", "latitude": "48.849340", "id": "6614846113", "tags": "birthday restaurent niall"}, {"datetaken": "2011-11-25 20:41:13", "license": "5", "title": "25th November", "text": "", "album_id": "72157628668713213", "longitude": "2.347619", "url_o": "https://farm8.staticflickr.com/7033/6614849423_1b1070c874_o.jpg", "secret": "e4c1c34ece", "media": "photo", "latitude": "48.827216", "id": "6614849423", "tags": "birthday champagne niall"}, {"datetaken": "2011-11-25 20:43:09", "license": "5", "title": "25th November", "text": "", "album_id": "72157628668713213", "longitude": "2.347619", "url_o": "https://farm8.staticflickr.com/7154/6614853745_6c7030f77c_o.jpg", "secret": "acfbf3d995", "media": "photo", "latitude": "48.827216", "id": "6614853745", "tags": "birthday scarf niall"}, {"datetaken": "2011-11-25 20:44:19", "license": "5", "title": "25th November", "text": "", "album_id": "72157628668713213", "longitude": "2.347619", "url_o": "https://farm8.staticflickr.com/7016/6614859247_e57479158e_o.jpg", "secret": "28b54e5d95", "media": "photo", "latitude": "48.827216", "id": "6614859247", "tags": "birthday niall"}, {"datetaken": "2011-11-25 20:44:52", "license": "5", "title": "25th November", "text": "", "album_id": "72157628668713213", "longitude": "2.347619", "url_o": "https://farm8.staticflickr.com/7028/6614863793_acfecc3452_o.jpg", "secret": "07c6d120ce", "media": "photo", "latitude": "48.827216", "id": "6614863793", "tags": "birthday niall"}, {"datetaken": "2011-11-25 20:48:49", "license": "5", "title": "25th November", "text": "", "album_id": "72157628668713213", "longitude": "2.347619", "url_o": "https://farm8.staticflickr.com/7013/6614870421_903dca2446_o.jpg", "secret": "b21505aa97", "media": "photo", "latitude": "48.827216", "id": "6614870421", "tags": "birthday niall"}, {"datetaken": "2011-11-25 21:03:23", "license": "5", "title": "25th November", "text": "", "album_id": "72157628668713213", "longitude": "2.347619", "url_o": "https://farm8.staticflickr.com/7160/6614877525_4d23bc8b2c_o.jpg", "secret": "a93d98bc83", "media": "photo", "latitude": "48.827216", "id": "6614877525", "tags": "birthday niall"}, {"datetaken": "2011-11-25 21:04:36", "license": "5", "title": "25th November", "text": "", "album_id": "72157628668713213", "longitude": "2.347619", "url_o": "https://farm8.staticflickr.com/7152/6614882375_ce8fdf9e09_o.jpg", "secret": "932fb1db4b", "media": "photo", "latitude": "48.827216", "id": "6614882375", "tags": "birthday niall"}, {"datetaken": "2011-11-25 21:04:49", "license": "5", "title": "25th November", "text": "", "album_id": "72157628668713213", "longitude": "2.347619", "url_o": "https://farm8.staticflickr.com/7171/6614887119_6d28d154f1_o.jpg", "secret": "906681dcc7", "media": "photo", "latitude": "48.827216", "id": "6614887119", "tags": "birthday niall"}, {"datetaken": "2011-11-25 21:04:55", "license": "5", "title": "25th November", "text": "", "album_id": "72157628668713213", "longitude": "2.347619", "url_o": "https://farm8.staticflickr.com/7160/6614888739_112d597f1f_o.jpg", "secret": "07728bd293", "media": "photo", "latitude": "48.827216", "id": "6614888739", "tags": "birthday niall"}, {"datetaken": "2004-12-04 22:44:31", "license": "1", "title": "Sarah and Mike through the glasses darkly", "text": "", "album_id": "201820", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8095879_2cecc753b5_o.jpg", "secret": "2cecc753b5", "media": "photo", "latitude": "0", "id": "8095879", "tags": "birthday sarah mikhail refracted england london uk unitedkingdom"}, {"datetaken": "2004-12-04 22:44:58", "license": "1", "title": "Sarah says \"Cheers\"", "text": "", "album_id": "201820", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8095922_9ca62a3235_o.jpg", "secret": "9ca62a3235", "media": "photo", "latitude": "0", "id": "8095922", "tags": "birthday sarah england london uk unitedkingdom"}, {"datetaken": "2004-12-04 22:49:47", "license": "1", "title": "Jeny, AM and Gil", "text": "", "album_id": "201820", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8095967_b3de61baae_o.jpg", "secret": "b3de61baae", "media": "photo", "latitude": "0", "id": "8095967", "tags": "birthday jeny annemarie gil england london uk unitedkingdom"}, {"datetaken": "2004-12-04 23:56:09", "license": "1", "title": "Gil feasts", "text": "", "album_id": "201820", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8095984_d543959a9a_o.jpg", "secret": "d543959a9a", "media": "photo", "latitude": "0", "id": "8095984", "tags": "birthday annemarie gil england london uk unitedkingdom"}, {"datetaken": "2004-12-05 00:06:35", "license": "1", "title": "Jerm, Adam and Anni", "text": "", "album_id": "201820", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8096018_3e8db3cc01_o.jpg", "secret": "3e8db3cc01", "media": "photo", "latitude": "0", "id": "8096018", "tags": "birthday jeremy adam annabel england london uk unitedkingdom"}, {"datetaken": "2004-12-05 00:06:55", "license": "1", "title": "Dave at dinner", "text": "", "album_id": "201820", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8096109_b6542c0c74_o.jpg", "secret": "b6542c0c74", "media": "photo", "latitude": "0", "id": "8096109", "tags": "birthday dave caroline jeny england london uk unitedkingdom"}, {"datetaken": "2004-12-05 00:40:46", "license": "1", "title": "Dinner gets strange", "text": "", "album_id": "201820", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8096183_3c92dfbb14_o.jpg", "secret": "3c92dfbb14", "media": "photo", "latitude": "0", "id": "8096183", "tags": "birthday annabel stretcharmstrong england london uk unitedkingdom"}, {"datetaken": "2004-12-05 00:44:12", "license": "1", "title": "Stretch....", "text": "", "album_id": "201820", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8096238_977e2d68c4_o.jpg", "secret": "977e2d68c4", "media": "photo", "latitude": "0", "id": "8096238", "tags": "birthday stretcharmstrong england london uk unitedkingdom"}, {"datetaken": "2004-12-05 00:44:59", "license": "1", "title": "Streched to the limit", "text": "", "album_id": "201820", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8096311_e3350a55f2_o.jpg", "secret": "e3350a55f2", "media": "photo", "latitude": "0", "id": "8096311", "tags": "birthday stretcharmstrong england london uk unitedkingdom"}, {"datetaken": "2004-12-05 01:11:59", "license": "1", "title": "Meret and Dave", "text": "", "album_id": "201820", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8096378_4a781f43d4_o.jpg", "secret": "4a781f43d4", "media": "photo", "latitude": "0", "id": "8096378", "tags": "birthday dave england meret london uk unitedkingdom"}, {"datetaken": "2004-12-05 01:12:37", "license": "1", "title": "Agneta", "text": "", "album_id": "201820", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8096430_326308acd5_o.jpg", "secret": "326308acd5", "media": "photo", "latitude": "0", "id": "8096430", "tags": "birthday agneta england london uk unitedkingdom"}, {"datetaken": "2004-12-05 01:13:02", "license": "1", "title": "Dave and Sarah", "text": "", "album_id": "201820", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8096481_4ec2dd2876_o.jpg", "secret": "4ec2dd2876", "media": "photo", "latitude": "0", "id": "8096481", "tags": "birthday dave sarah england london uk unitedkingdom"}, {"datetaken": "2004-12-05 03:17:20", "license": "1", "title": "AM and Gil", "text": "", "album_id": "201820", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8096600_dbb6a71f7f_o.jpg", "secret": "dbb6a71f7f", "media": "photo", "latitude": "0", "id": "8096600", "tags": "birthday annemarie gil england london uk unitedkingdom"}, {"datetaken": "2004-12-05 03:18:09", "license": "1", "title": "Meret", "text": "", "album_id": "201820", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8096656_e7dc954e4e_o.jpg", "secret": "e7dc954e4e", "media": "photo", "latitude": "0", "id": "8096656", "tags": "birthday england meret london uk unitedkingdom"}, {"datetaken": "2005-02-20 16:52:53", "license": "1", "title": "2000-Bandy's Goodbye Party-001", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1053/1479801213_f0ffd66ad2_o.jpg", "secret": "87a0ce054f", "media": "photo", "latitude": "0", "id": "1479801213", "tags": ""}, {"datetaken": "2005-02-20 16:52:53", "license": "1", "title": "2000-Bandy's Goodbye Party-002", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1318/1480659092_f3d93e6316_o.jpg", "secret": "0ceffec092", "media": "photo", "latitude": "0", "id": "1480659092", "tags": ""}, {"datetaken": "2005-02-20 16:52:55", "license": "1", "title": "2000-Bike Riding-001", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1066/1480660308_91e2f9838f_o.jpg", "secret": "5bb8b321a7", "media": "photo", "latitude": "0", "id": "1480660308", "tags": ""}, {"datetaken": "2005-02-20 16:52:55", "license": "1", "title": "2000-Bike Riding-002", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1359/1480660390_62c3589795_o.jpg", "secret": "073544dc36", "media": "photo", "latitude": "0", "id": "1480660390", "tags": ""}, {"datetaken": "2005-02-20 19:20:46", "license": "1", "title": "2000-Scott's 34th Birthday", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1314/1480660246_620f54d302_o.jpg", "secret": "5c350efe5d", "media": "photo", "latitude": "0", "id": "1480660246", "tags": ""}, {"datetaken": "2005-02-20 21:10:53", "license": "1", "title": "2000-home and family-001", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1372/1480659162_43385bfada_o.jpg", "secret": "4f81aacd7a", "media": "photo", "latitude": "0", "id": "1480659162", "tags": ""}, {"datetaken": "2005-02-20 21:10:55", "license": "1", "title": "2000-home and family-002", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1096/1479801393_04a95db158_o.jpg", "secret": "98667b7776", "media": "photo", "latitude": "0", "id": "1479801393", "tags": ""}, {"datetaken": "2005-02-20 21:10:55", "license": "1", "title": "2000-home and family-004", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1251/1479801507_66a3f4e72b_o.jpg", "secret": "c68ca2ba94", "media": "photo", "latitude": "0", "id": "1479801507", "tags": ""}, {"datetaken": "2005-02-20 21:10:58", "license": "1", "title": "2000-home and family-008", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1161/1479801709_8ddf5ae163_o.jpg", "secret": "7a6801d6c4", "media": "photo", "latitude": "0", "id": "1479801709", "tags": ""}, {"datetaken": "2005-02-20 21:16:00", "license": "1", "title": "2000-home and family-009", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1129/1480659632_1c5333f59c_o.jpg", "secret": "425b2a75ee", "media": "photo", "latitude": "0", "id": "1480659632", "tags": ""}, {"datetaken": "2005-02-20 21:16:00", "license": "1", "title": "2000-home and family-010", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1143/1480659672_abf50eef5f_o.jpg", "secret": "29148022ef", "media": "photo", "latitude": "0", "id": "1480659672", "tags": ""}, {"datetaken": "2005-02-20 21:16:01", "license": "1", "title": "2000-home and family-011", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1393/1479801853_2269644ed0_o.jpg", "secret": "e8131856ae", "media": "photo", "latitude": "0", "id": "1479801853", "tags": ""}, {"datetaken": "2005-02-20 21:16:01", "license": "1", "title": "2000-home and family-012", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1043/1479801933_a512d7e65a_o.jpg", "secret": "7a4ffedb3a", "media": "photo", "latitude": "0", "id": "1479801933", "tags": ""}, {"datetaken": "2005-02-20 21:16:01", "license": "1", "title": "2000-home and family-013", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1003/1479801993_e3bacd675e_o.jpg", "secret": "7fef002657", "media": "photo", "latitude": "0", "id": "1479801993", "tags": ""}, {"datetaken": "2005-02-20 21:16:01", "license": "1", "title": "2000-home and family-014", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1243/1480659910_811b55ebf8_o.jpg", "secret": "4709b9f398", "media": "photo", "latitude": "0", "id": "1480659910", "tags": ""}, {"datetaken": "2005-02-20 21:16:02", "license": "1", "title": "2000-home and family-015", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1015/1480659968_2a8a93b62e_o.jpg", "secret": "a3e5b57100", "media": "photo", "latitude": "0", "id": "1480659968", "tags": ""}, {"datetaken": "2005-02-20 21:16:02", "license": "1", "title": "2000-home and family-016", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1068/1479802169_8ebbc5ae21_o.jpg", "secret": "b2c04f3902", "media": "photo", "latitude": "0", "id": "1479802169", "tags": ""}, {"datetaken": "2005-02-20 21:16:02", "license": "1", "title": "2000-home and family-017", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1437/1480660072_db1632c049_o.jpg", "secret": "1789312a78", "media": "photo", "latitude": "0", "id": "1480660072", "tags": ""}, {"datetaken": "2005-02-20 21:16:04", "license": "1", "title": "2000-home and family-018", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1401/1480660096_c1bebe5b7e_o.jpg", "secret": "67aa60fc73", "media": "photo", "latitude": "0", "id": "1480660096", "tags": ""}, {"datetaken": "2005-02-20 21:16:05", "license": "1", "title": "2000-home and family-019", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1086/1479802325_c846c3c4bb_o.jpg", "secret": "650b93dd41", "media": "photo", "latitude": "0", "id": "1479802325", "tags": ""}, {"datetaken": "2005-02-20 21:16:05", "license": "1", "title": "2000-home and family-020", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1388/1479802381_1ced1eed8d_o.jpg", "secret": "2c12e4bf56", "media": "photo", "latitude": "0", "id": "1479802381", "tags": ""}, {"datetaken": "2005-02-21 09:15:13", "license": "1", "title": "2000-home and family-003", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1180/1480659288_71e909d77b_o.jpg", "secret": "e78de50f01", "media": "photo", "latitude": "0", "id": "1480659288", "tags": ""}, {"datetaken": "2005-02-21 09:15:13", "license": "1", "title": "2000-home and family-005", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1379/1479801559_94ad7e4eb0_o.jpg", "secret": "612ca0596e", "media": "photo", "latitude": "0", "id": "1479801559", "tags": ""}, {"datetaken": "2005-02-21 09:15:14", "license": "1", "title": "2000-home and family-006", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1390/1479801595_f2b1402c0e_o.jpg", "secret": "369b4c79ff", "media": "photo", "latitude": "0", "id": "1479801595", "tags": ""}, {"datetaken": "2005-02-21 09:15:14", "license": "1", "title": "2000-home and family-007", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1197/1479801635_20573a0b0a_o.jpg", "secret": "595ffbacc0", "media": "photo", "latitude": "0", "id": "1479801635", "tags": ""}, {"datetaken": "2005-02-21 09:15:15", "license": "1", "title": "2000-Balloons-001", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1332/1479800945_f6824d1b82_o.jpg", "secret": "d4ff3905e0", "media": "photo", "latitude": "0", "id": "1479800945", "tags": ""}, {"datetaken": "2005-02-21 09:15:16", "license": "1", "title": "2000-Balloons-002", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1033/1480658840_0929a23f17_o.jpg", "secret": "c3bb5e8dfe", "media": "photo", "latitude": "0", "id": "1480658840", "tags": ""}, {"datetaken": "2005-02-21 09:15:16", "license": "1", "title": "2000-Balloons-003", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1017/1479801033_a044d874c6_o.jpg", "secret": "0009e79142", "media": "photo", "latitude": "0", "id": "1479801033", "tags": ""}, {"datetaken": "2005-02-21 09:15:17", "license": "1", "title": "2000-Balloons-04", "text": "", "album_id": "72157602258046251", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1089/1480658980_0f7338238e_o.jpg", "secret": "ece5ca39d3", "media": "photo", "latitude": "0", "id": "1480658980", "tags": ""}, {"datetaken": "2010-03-02 12:32:23", "license": "3", "title": "IMG_2136", "text": "", "album_id": "72157623418136791", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4402372860_e43c3e9542_o.jpg", "secret": "3d19c2a519", "media": "photo", "latitude": "0", "id": "4402372860", "tags": "drseuss readacrossamerica ringquist"}, {"datetaken": "2010-03-02 12:33:03", "license": "3", "title": "IMG_2138", "text": "", "album_id": "72157623418136791", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4402373410_58219fba33_o.jpg", "secret": "7c2bf3a8a5", "media": "photo", "latitude": "0", "id": "4402373410", "tags": "drseuss readacrossamerica ringquist"}, {"datetaken": "2010-03-02 12:33:46", "license": "3", "title": "IMG_2140", "text": "", "album_id": "72157623418136791", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2685/4402373754_fdfc7f4f8b_o.jpg", "secret": "d2c7dd5081", "media": "photo", "latitude": "0", "id": "4402373754", "tags": "drseuss readacrossamerica ringquist"}, {"datetaken": "2010-03-02 12:34:33", "license": "3", "title": "IMG_2142", "text": "", "album_id": "72157623418136791", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4401608465_6c520eed2c_o.jpg", "secret": "45d58a65b5", "media": "photo", "latitude": "0", "id": "4401608465", "tags": "drseuss readacrossamerica ringquist"}, {"datetaken": "2010-03-02 12:34:53", "license": "3", "title": "IMG_2143", "text": "", "album_id": "72157623418136791", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2780/4402374662_2a0733c58f_o.jpg", "secret": "aa7861fca6", "media": "photo", "latitude": "0", "id": "4402374662", "tags": "drseuss readacrossamerica ringquist"}, {"datetaken": "2010-03-02 13:17:06", "license": "3", "title": "IMG_2144", "text": "", "album_id": "72157623418136791", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2510/4402375130_183c1f1125_o.jpg", "secret": "3af3551127", "media": "photo", "latitude": "0", "id": "4402375130", "tags": "drseuss readacrossamerica ringquist"}, {"datetaken": "2010-03-02 13:17:15", "license": "3", "title": "IMG_2145", "text": "", "album_id": "72157623418136791", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4401609847_7448050767_o.jpg", "secret": "40db4ec4c9", "media": "photo", "latitude": "0", "id": "4401609847", "tags": "drseuss readacrossamerica ringquist"}, {"datetaken": "2010-03-02 13:18:05", "license": "3", "title": "IMG_2148", "text": "", "album_id": "72157623418136791", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4401610573_e6539386d9_o.jpg", "secret": "6ebd02e28c", "media": "photo", "latitude": "0", "id": "4401610573", "tags": "drseuss readacrossamerica ringquist"}, {"datetaken": "2010-03-02 13:18:32", "license": "3", "title": "IMG_2149", "text": "", "album_id": "72157623418136791", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4402376842_70c384c459_o.jpg", "secret": "ef2123fbc9", "media": "photo", "latitude": "0", "id": "4402376842", "tags": "drseuss readacrossamerica ringquist"}, {"datetaken": "2010-03-02 13:18:38", "license": "3", "title": "IMG_2150", "text": "", "album_id": "72157623418136791", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4402377392_303b9edc2c_o.jpg", "secret": "4c866d291b", "media": "photo", "latitude": "0", "id": "4402377392", "tags": "drseuss readacrossamerica ringquist"}, {"datetaken": "2010-03-02 13:22:50", "license": "3", "title": "IMG_2154", "text": "", "album_id": "72157623418136791", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4401612201_8469dea03e_o.jpg", "secret": "38e0200571", "media": "photo", "latitude": "0", "id": "4401612201", "tags": "drseuss readacrossamerica ringquist"}, {"datetaken": "2010-03-02 13:23:34", "license": "3", "title": "IMG_2155", "text": "", "album_id": "72157623418136791", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4402378176_63f6abaf32_o.jpg", "secret": "784c3590fb", "media": "photo", "latitude": "0", "id": "4402378176", "tags": "drseuss readacrossamerica ringquist"}, {"datetaken": "2010-03-02 16:21:37", "license": "1", "title": "Dorothy Mae Coulter", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4401836023_61aafd4edc_o.jpg", "secret": "e2171e14bf", "media": "photo", "latitude": "0", "id": "4401836023", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:22:13", "license": "1", "title": "Dorothy Coulter at stand", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/4402599984_706e8c43a5_o.jpg", "secret": "2674971475", "media": "photo", "latitude": "0", "id": "4402599984", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:22:53", "license": "1", "title": "Dorothy Coulter", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4401836303_75d0554ab8_o.jpg", "secret": "41f2c390af", "media": "photo", "latitude": "0", "id": "4401836303", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:23:14", "license": "1", "title": "Dorothy Coulter with flowers", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4401836489_9f236898b5_o.jpg", "secret": "137d996886", "media": "photo", "latitude": "0", "id": "4401836489", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:23:28", "license": "1", "title": "Dorothy Coulter Standing", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4402601200_567b7996f6_o.jpg", "secret": "10fcbf07f8", "media": "photo", "latitude": "0", "id": "4402601200", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:24:02", "license": "1", "title": "Dorothy Coulter Music Recital 1921", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4401837825_5319a624b8_o.jpg", "secret": "2b854eb13c", "media": "photo", "latitude": "0", "id": "4401837825", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:26:11", "license": "1", "title": "Dorothy Coulter Larsen", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4402601900_e72351e3d4_o.jpg", "secret": "e304e21a1f", "media": "photo", "latitude": "0", "id": "4402601900", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:32:40", "license": "1", "title": "Ernest Libby Dorothy Coulter", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4401838305_53341efdfc_o.jpg", "secret": "b8f7a40cb8", "media": "photo", "latitude": "0", "id": "4401838305", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:33:07", "license": "1", "title": "Del Coulter Herman Laurson Lewis Larson families 1964 2", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4402602276_a37077a2c1_o.jpg", "secret": "dc97006425", "media": "photo", "latitude": "0", "id": "4402602276", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:33:26", "license": "1", "title": "Dorothy Doug Bruce Libby Muriel 1964", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4402602500_d4c9983cd8_o.jpg", "secret": "5dbde5a6aa", "media": "photo", "latitude": "0", "id": "4402602500", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:33:43", "license": "1", "title": "Dorothy Coulter and Doris 1945", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2714/4402602658_1ac53a38f9_o.jpg", "secret": "529382af02", "media": "photo", "latitude": "0", "id": "4402602658", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:43:46", "license": "1", "title": "Russell Larsen with Grandma Libby Coulter", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4402602858_cec281f798_o.jpg", "secret": "84bd9a2690", "media": "photo", "latitude": "0", "id": "4402602858", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:44:01", "license": "1", "title": "Ernest Skinny Coulter with pipe", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4401839319_9aa452fe92_o.jpg", "secret": "3f94f84dd9", "media": "photo", "latitude": "0", "id": "4401839319", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:44:23", "license": "1", "title": "Marjorie Delmar Libby Dorothy Bruce", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4402603442_b970913cd6_o.jpg", "secret": "537e9870e6", "media": "photo", "latitude": "0", "id": "4402603442", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:44:34", "license": "1", "title": "Libby Coulter Russell Larsen with Bruce Coulter 1963", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2703/4402603596_cea87c7bc2_o.jpg", "secret": "7fd78ae315", "media": "photo", "latitude": "0", "id": "4402603596", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:44:48", "license": "1", "title": "Libby Coulter in chair 1963", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4402603816_f6c779c8f8_o.jpg", "secret": "203964022d", "media": "photo", "latitude": "0", "id": "4402603816", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:45:05", "license": "1", "title": "Libby Coulter and grandson Russell Larsen 1953", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4401840037_4763e063d2_o.jpg", "secret": "a79ff14911", "media": "photo", "latitude": "0", "id": "4401840037", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:45:18", "license": "1", "title": "Libby Coulter 1962", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4402604182_ff17ce6d54_o.jpg", "secret": "72040df492", "media": "photo", "latitude": "0", "id": "4402604182", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:45:34", "license": "1", "title": "Libby Coulter 83rd birthday cake 1963", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4402604420_fcbe58f950_o.jpg", "secret": "b92952cb55", "media": "photo", "latitude": "0", "id": "4402604420", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2010-03-02 16:45:45", "license": "1", "title": "Lewis Larsen with parents and kids", "text": "", "album_id": "72157623418728631", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4402604660_65b45597d8_o.jpg", "secret": "8c276f353c", "media": "photo", "latitude": "0", "id": "4402604660", "tags": "ernestcoulterfamily dorothylaursen"}, {"datetaken": "2007-01-03 20:00:00", "license": "4", "title": "Napkin", "text": "", "album_id": "72157594457718293", "longitude": "153.041975", "url_o": "https://farm1.staticflickr.com/134/344673774_0aed3fa227_o.jpg", "secret": "0aed3fa227", "media": "photo", "latitude": "-27.430102", "id": "344673774", "tags": "food geotagged australia brisbane queensland geotag albion sandgaterd"}, {"datetaken": "2007-01-03 20:00:01", "license": "4", "title": "Detail of Windows at Reflect Mirrors, next door to Efes One", "text": "", "album_id": "72157594457718293", "longitude": "153.041763", "url_o": "https://farm1.staticflickr.com/124/344673445_dcc9d09c6d_o.jpg", "secret": "dcc9d09c6d", "media": "photo", "latitude": "-27.430191", "id": "344673445", "tags": "geotagged australia brisbane queensland geotag albion sandgaterd"}, {"datetaken": "2007-01-03 20:00:02", "license": "4", "title": "Reflect Mirrors, next door to Efes One", "text": "", "album_id": "72157594457718293", "longitude": "153.041763", "url_o": "https://farm1.staticflickr.com/140/344673857_9720a3c34c_o.jpg", "secret": "9720a3c34c", "media": "photo", "latitude": "-27.430191", "id": "344673857", "tags": "food geotagged australia brisbane queensland geotag albion sandgaterd"}, {"datetaken": "2007-01-03 20:00:03", "license": "4", "title": "Sludge from Turkish Coffee - if you want the real effect, you eat this too", "text": "", "album_id": "72157594457718293", "longitude": "153.041975", "url_o": "https://farm1.staticflickr.com/162/344673880_b9eba533a8_o.jpg", "secret": "b9eba533a8", "media": "photo", "latitude": "-27.430102", "id": "344673880", "tags": "food coffee geotagged australia brisbane queensland geotag albion sandgaterd"}, {"datetaken": "2007-01-03 20:00:04", "license": "4", "title": "Turkish coffee - REAL coffee to get you bouncing off the walls", "text": "", "album_id": "72157594457718293", "longitude": "153.041975", "url_o": "https://farm1.staticflickr.com/157/344673966_d4d43741ca_o.jpg", "secret": "d4d43741ca", "media": "photo", "latitude": "-27.430102", "id": "344673966", "tags": "food geotagged australia brisbane queensland geotag albion sandgaterd"}, {"datetaken": "2007-01-03 20:00:05", "license": "4", "title": "Kadayif, Baklava and Romance", "text": "", "album_id": "72157594457718293", "longitude": "153.041975", "url_o": "https://farm1.staticflickr.com/138/344673662_fcdd5fe4c4_o.jpg", "secret": "fcdd5fe4c4", "media": "photo", "latitude": "-27.430102", "id": "344673662", "tags": "food geotagged dessert australia brisbane queensland geotag albion sandgaterd"}, {"datetaken": "2007-01-03 20:00:06", "license": "4", "title": "Kadayif", "text": "", "album_id": "72157594457718293", "longitude": "153.041975", "url_o": "https://farm1.staticflickr.com/160/344673618_6c0398edfc_o.jpg", "secret": "6c0398edfc", "media": "photo", "latitude": "-27.430102", "id": "344673618", "tags": "food geotagged dessert australia brisbane queensland geotag albion sandgaterd"}, {"datetaken": "2007-01-03 20:00:07", "license": "4", "title": "Deluxe Pide - Vegetarian", "text": "", "album_id": "72157594457718293", "longitude": "153.041975", "url_o": "https://farm1.staticflickr.com/149/344673404_3d9bf7ceea_o.jpg", "secret": "3d9bf7ceea", "media": "photo", "latitude": "-27.430102", "id": "344673404", "tags": "food geotagged australia brisbane queensland geotag albion sandgaterd"}, {"datetaken": "2007-01-03 20:00:08", "license": "4", "title": "Fountain and Beer Advertisement", "text": "", "album_id": "72157594457718293", "longitude": "153.041975", "url_o": "https://farm1.staticflickr.com/141/344673546_fad5571a21_o.jpg", "secret": "fad5571a21", "media": "photo", "latitude": "-27.430102", "id": "344673546", "tags": "food geotagged australia brisbane queensland geotag albion sandgaterd"}, {"datetaken": "2007-01-03 20:00:09", "license": "4", "title": "Haloumi on Turkish bread", "text": "", "album_id": "72157594457718293", "longitude": "153.041975", "url_o": "https://farm1.staticflickr.com/166/344673585_1662bfe7e2_o.jpg", "secret": "1662bfe7e2", "media": "photo", "latitude": "-27.430102", "id": "344673585", "tags": "food geotagged australia brisbane queensland geotag albion sandgaterd"}, {"datetaken": "2007-01-03 20:00:10", "license": "4", "title": "Vegetarian Meze Platter and Turkish Bread", "text": "", "album_id": "72157594457718293", "longitude": "153.041975", "url_o": "https://farm1.staticflickr.com/130/344673737_d1464fc75a_o.jpg", "secret": "d1464fc75a", "media": "photo", "latitude": "-27.430102", "id": "344673737", "tags": "food geotagged australia brisbane queensland geotag albion sandgaterd"}, {"datetaken": "2007-01-03 20:00:11", "license": "4", "title": "Meze Platter", "text": "", "album_id": "72157594457718293", "longitude": "153.041975", "url_o": "https://farm1.staticflickr.com/126/344673696_6c83cf7e0e_o.jpg", "secret": "6c83cf7e0e", "media": "photo", "latitude": "-27.430102", "id": "344673696", "tags": "food geotagged australia brisbane queensland geotag albion sandgaterd"}, {"datetaken": "2007-01-03 20:00:12", "license": "4", "title": "Efes One Restaurant Sign", "text": "", "album_id": "72157594457718293", "longitude": "153.041797", "url_o": "https://farm1.staticflickr.com/166/344673491_9cec784cd3_o.jpg", "secret": "9cec784cd3", "media": "photo", "latitude": "-27.430088", "id": "344673491", "tags": "food geotagged australia brisbane queensland geotag albion sandgaterd"}, {"datetaken": "2007-01-03 20:00:13", "license": "4", "title": "Albion Hotel, across Sandgate Rd from Efes One", "text": "", "album_id": "72157594457718293", "longitude": "153.041694", "url_o": "https://farm1.staticflickr.com/144/344673359_bee256e444_o.jpg", "secret": "bee256e444", "media": "photo", "latitude": "-27.429880", "id": "344673359", "tags": "geotagged australia brisbane queensland geotag albion albionhotel sandgaterd"}, {"datetaken": "2007-01-03 20:00:14", "license": "4", "title": "Traffic Signal Box outside Albion Hotel, corner of Sandgate Rd and Albion Rd, Albion", "text": "", "album_id": "72157594457718293", "longitude": "153.041625", "url_o": "https://farm1.staticflickr.com/161/344673949_9bc185cc8c_o.jpg", "secret": "9bc185cc8c", "media": "photo", "latitude": "-27.429911", "id": "344673949", "tags": "geotagged tsb australia brisbane queensland geotag albion trafficsignalbox sandgaterd"}, {"datetaken": "2007-01-03 20:00:15", "license": "4", "title": "The Only Thing That Can Defeat Barbra Streisand", "text": "", "album_id": "72157594457718293", "longitude": "153.041177", "url_o": "https://farm1.staticflickr.com/143/344673909_3318755e00_o.jpg", "secret": "3318755e00", "media": "photo", "latitude": "-27.429172", "id": "344673909", "tags": "geotagged graffiti stencil australia brisbane queensland geotag albion robertsmith hudsonrd"}, {"datetaken": "2007-01-03 20:00:16", "license": "4", "title": "Northbound train at Albion Station platform 2", "text": "", "album_id": "72157594457718293", "longitude": "153.041013", "url_o": "https://farm1.staticflickr.com/130/344673815_3f13f53b42_o.jpg", "secret": "3f13f53b42", "media": "photo", "latitude": "-27.428552", "id": "344673815", "tags": "food geotagged australia brisbane queensland geotag albion sandgaterd"}, {"datetaken": "2007-01-05 11:02:35", "license": "4", "title": "Efes One Turkish Restaurant sign altered with the Flickr Toys Warholizer", "text": "", "album_id": "72157594457718293", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/346038418_883c9dd16f_o.jpg", "secret": "883c9dd16f", "media": "photo", "latitude": "0", "id": "346038418", "tags": "fdsflickrtoys australia brisbane queensland flickrtoys warholized"}, {"datetaken": "2009-11-07 13:53:17", "license": "6", "title": "2009 Dec 017", "text": "", "album_id": "72157623008608029", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4242257549_c938e9a3c9_o.jpg", "secret": "5910bc3b65", "media": "photo", "latitude": "0", "id": "4242257549", "tags": "birthday cat monty"}, {"datetaken": "2009-11-07 14:37:28", "license": "6", "title": "2009 Dec 019", "text": "", "album_id": "72157623008608029", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4243030874_f2daae03ee_o.jpg", "secret": "0ec9df0e03", "media": "photo", "latitude": "0", "id": "4243030874", "tags": "birthday"}, {"datetaken": "2009-11-07 14:37:58", "license": "6", "title": "2009 Dec 020", "text": "", "album_id": "72157623008608029", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4243031558_98ddce2a81_o.jpg", "secret": "a18c31f919", "media": "photo", "latitude": "0", "id": "4243031558", "tags": "cat monty"}, {"datetaken": "2009-11-07 15:47:58", "license": "6", "title": "2009 Dec 021", "text": "", "album_id": "72157623008608029", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4242259699_8b0e233847_o.jpg", "secret": "9a534720b6", "media": "photo", "latitude": "0", "id": "4242259699", "tags": "birthday christmas"}, {"datetaken": "2009-11-07 15:48:13", "license": "6", "title": "2009 Dec 022", "text": "", "album_id": "72157623008608029", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2682/4243033032_b7df05dbb4_o.jpg", "secret": "fdf6b9c9fc", "media": "photo", "latitude": "0", "id": "4243033032", "tags": "birthday christmas"}, {"datetaken": "2009-11-07 15:49:11", "license": "6", "title": "2009 Dec 023", "text": "", "album_id": "72157623008608029", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4242261171_befd22f1f8_o.jpg", "secret": "cd2205a510", "media": "photo", "latitude": "0", "id": "4242261171", "tags": "birthday christmas"}, {"datetaken": "2009-11-07 15:52:05", "license": "6", "title": "2009 Dec 024", "text": "", "album_id": "72157623008608029", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4243034458_524fdd35f2_o.jpg", "secret": "b63298039d", "media": "photo", "latitude": "0", "id": "4243034458", "tags": "birthday christmas"}, {"datetaken": "2009-11-07 15:52:11", "license": "6", "title": "2009 Dec 025", "text": "", "album_id": "72157623008608029", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4242262591_0bd13e3bc7_o.jpg", "secret": "bc0282498a", "media": "photo", "latitude": "0", "id": "4242262591", "tags": "birthday"}, {"datetaken": "2009-11-07 15:52:28", "license": "6", "title": "2009 Dec 026", "text": "", "album_id": "72157623008608029", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2745/4243035896_00a4cab5d2_o.jpg", "secret": "9bb444279a", "media": "photo", "latitude": "0", "id": "4243035896", "tags": "christmas"}, {"datetaken": "2009-11-07 15:54:39", "license": "6", "title": "2009 Dec 030", "text": "", "album_id": "72157623008608029", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4243036610_baab850e39_o.jpg", "secret": "21a32231b0", "media": "photo", "latitude": "0", "id": "4243036610", "tags": "birthday"}, {"datetaken": "2009-11-07 15:55:15", "license": "6", "title": "2009 Dec 031", "text": "", "album_id": "72157623008608029", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4242264813_254c3b15fb_o.jpg", "secret": "89b73be595", "media": "photo", "latitude": "0", "id": "4242264813", "tags": "birthday"}, {"datetaken": "2009-11-07 15:59:35", "license": "6", "title": "2009 Dec 032", "text": "", "album_id": "72157623008608029", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4242265521_a4ca2e7565_o.jpg", "secret": "03361a0620", "media": "photo", "latitude": "0", "id": "4242265521", "tags": "birthday"}, {"datetaken": "2009-11-07 15:59:42", "license": "6", "title": "2009 Dec 033", "text": "", "album_id": "72157623008608029", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4242266227_89eca943be_o.jpg", "secret": "3452a822b6", "media": "photo", "latitude": "0", "id": "4242266227", "tags": "birthday"}, {"datetaken": "2009-11-07 15:59:47", "license": "6", "title": "2009 Dec 034", "text": "", "album_id": "72157623008608029", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4242266897_5750773ab0_o.jpg", "secret": "5821c4773f", "media": "photo", "latitude": "0", "id": "4242266897", "tags": "birthday"}, {"datetaken": "2009-11-07 16:00:20", "license": "6", "title": "2009 Dec 035", "text": "", "album_id": "72157623008608029", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4242267691_8b207c2792_o.jpg", "secret": "225cf607a8", "media": "photo", "latitude": "0", "id": "4242267691", "tags": "birthday"}, {"datetaken": "2009-11-07 16:00:26", "license": "6", "title": "2009 Dec 036", "text": "", "album_id": "72157623008608029", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4243041176_a2d3b55997_o.jpg", "secret": "8003709fd3", "media": "photo", "latitude": "0", "id": "4243041176", "tags": "birthday"}, {"datetaken": "2009-11-07 16:00:36", "license": "6", "title": "2009 Dec 037", "text": "", "album_id": "72157623008608029", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4243041872_7081e0f4b0_o.jpg", "secret": "b39e00407d", "media": "photo", "latitude": "0", "id": "4243041872", "tags": "birthday"}, {"datetaken": "2010-01-03 15:08:34", "license": "4", "title": "cyndi's mom feeding aedyn", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4242663585_7b729ae63b_o.jpg", "secret": "9985b171d2", "media": "photo", "latitude": "0", "id": "4242663585", "tags": ""}, {"datetaken": "2010-01-03 15:10:13", "license": "4", "title": "get your own food, brandon!", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2757/4243437768_5445bdcf34_o.jpg", "secret": "e76eb6cedc", "media": "photo", "latitude": "0", "id": "4243437768", "tags": ""}, {"datetaken": "2010-01-03 15:16:31", "license": "4", "title": "watching roller hockey with daddy", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4242666177_f9eb84da3e_o.jpg", "secret": "d152d20692", "media": "photo", "latitude": "0", "id": "4242666177", "tags": ""}, {"datetaken": "2010-01-03 15:20:53", "license": "4", "title": "roller hockey @ silver creek sportsplex", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4243440518_0bc2ffa98c_o.jpg", "secret": "de2674505e", "media": "photo", "latitude": "0", "id": "4243440518", "tags": ""}, {"datetaken": "2010-01-03 15:47:29", "license": "4", "title": "IMG_3873", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4243442124_40c9f1044f_o.jpg", "secret": "560f24b217", "media": "photo", "latitude": "0", "id": "4243442124", "tags": ""}, {"datetaken": "2010-01-03 15:47:32", "license": "4", "title": "IMG_3874", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4242670817_e15e45515d_o.jpg", "secret": "44d9b176e1", "media": "photo", "latitude": "0", "id": "4242670817", "tags": ""}, {"datetaken": "2010-01-03 15:47:35", "license": "4", "title": "IMG_3875", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4243445068_79e9b36e30_o.jpg", "secret": "d9287d7223", "media": "photo", "latitude": "0", "id": "4243445068", "tags": ""}, {"datetaken": "2010-01-03 15:47:39", "license": "4", "title": "IMG_3876", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4242673541_4cd6fd8258_o.jpg", "secret": "149e784203", "media": "photo", "latitude": "0", "id": "4242673541", "tags": ""}, {"datetaken": "2010-01-03 15:52:27", "license": "4", "title": "cookie", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4243540958_58cff07a5e_o.jpg", "secret": "63b15a48bf", "media": "photo", "latitude": "0", "id": "4243540958", "tags": ""}, {"datetaken": "2010-01-03 15:53:27", "license": "4", "title": "aedyn's candyland candy bar", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4243542038_5b181f7220_o.jpg", "secret": "b921221b53", "media": "photo", "latitude": "0", "id": "4243542038", "tags": ""}, {"datetaken": "2010-01-03 15:55:50", "license": "4", "title": ":P", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4243543272_79762743f6_o.jpg", "secret": "8cc8b0c731", "media": "photo", "latitude": "0", "id": "4243543272", "tags": ""}, {"datetaken": "2010-01-03 16:12:03", "license": "4", "title": "goodie bags", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2701/4243544548_59046a06d2_o.jpg", "secret": "cdb00339d3", "media": "photo", "latitude": "0", "id": "4243544548", "tags": ""}, {"datetaken": "2010-01-03 16:12:10", "license": "4", "title": "cookie making station", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4243545744_532dd89e2c_o.jpg", "secret": "fdf1772b54", "media": "photo", "latitude": "0", "id": "4243545744", "tags": ""}, {"datetaken": "2010-01-03 16:17:05", "license": "4", "title": "brandon dance dance revolution", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4243547278_44cec8d6f9_o.jpg", "secret": "c246f8851b", "media": "photo", "latitude": "0", "id": "4243547278", "tags": ""}, {"datetaken": "2010-01-03 16:23:59", "license": "4", "title": "ddr with a 35 lb baby?", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4243645580_c5a63d5b50_o.jpg", "secret": "ac6775b081", "media": "photo", "latitude": "0", "id": "4243645580", "tags": ""}, {"datetaken": "2010-01-03 16:25:01", "license": "4", "title": "aedyn turns one", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4243646732_12b55485eb_o.jpg", "secret": "c3dd5d8da7", "media": "photo", "latitude": "0", "id": "4243646732", "tags": ""}, {"datetaken": "2010-01-03 16:34:15", "license": "4", "title": "watching kids play basketball arcade game", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4242933913_1d7c841c82_o.jpg", "secret": "3c7ffbe256", "media": "photo", "latitude": "0", "id": "4242933913", "tags": ""}, {"datetaken": "2010-01-03 16:41:17", "license": "4", "title": "watching lacrosse", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2788/4243709116_ab8c39d704_o.jpg", "secret": "6386b21258", "media": "photo", "latitude": "0", "id": "4243709116", "tags": ""}, {"datetaken": "2010-01-03 19:09:51", "license": "4", "title": "b found a cane", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4243434866_90d2ae9868_o.jpg", "secret": "c9fba03825", "media": "video", "latitude": "0", "id": "4243434866", "tags": ""}, {"datetaken": "2010-01-03 19:42:17", "license": "4", "title": "first time eating cotton candy", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2701/4242766867_8ff906f239_o.jpg", "secret": "3ec7b101c1", "media": "video", "latitude": "0", "id": "4242766867", "tags": ""}, {"datetaken": "2010-01-03 19:52:48", "license": "4", "title": "daddy doing ddr", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2642/4243572368_a69a690794_o.jpg", "secret": "4bd75f6b81", "media": "video", "latitude": "0", "id": "4243572368", "tags": ""}, {"datetaken": "2010-01-03 19:59:38", "license": "4", "title": "b doing ddr", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4243593800_de877b8a81_o.jpg", "secret": "43e58c5031", "media": "video", "latitude": "0", "id": "4243593800", "tags": ""}, {"datetaken": "2010-01-03 20:16:07", "license": "4", "title": "me doing ddr while holding a 35 lb baby", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2618/4243643852_689127533d_o.jpg", "secret": "0433f81e98", "media": "video", "latitude": "0", "id": "4243643852", "tags": ""}, {"datetaken": "2010-01-03 20:24:12", "license": "4", "title": "aedyn's birthday cupcake", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4243667034_0f399a070a_o.jpg", "secret": "8a139cde15", "media": "video", "latitude": "0", "id": "4243667034", "tags": ""}, {"datetaken": "2010-01-03 20:37:40", "license": "4", "title": "driving with daddy", "text": "", "album_id": "72157623009191443", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4242932477_099a9b9016_o.jpg", "secret": "549528c328", "media": "video", "latitude": "0", "id": "4242932477", "tags": ""}, {"datetaken": "2011-12-19 18:59:46", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7172/6626735987_263de5c369_o.jpg", "secret": "cb14b42a74", "media": "photo", "latitude": "0", "id": "6626735987", "tags": ""}, {"datetaken": "2011-12-19 19:00:14", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7002/6626746821_efabfa6b45_o.jpg", "secret": "d9b7bf3938", "media": "photo", "latitude": "0", "id": "6626746821", "tags": ""}, {"datetaken": "2011-12-19 19:00:41", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7145/6626755231_d0761389fc_o.jpg", "secret": "59a31a25b3", "media": "photo", "latitude": "0", "id": "6626755231", "tags": ""}, {"datetaken": "2011-12-19 19:01:53", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6626765045_85fb80040b_o.jpg", "secret": "02c5e67697", "media": "photo", "latitude": "0", "id": "6626765045", "tags": ""}, {"datetaken": "2011-12-19 19:06:19", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7155/6626773815_63485c9381_o.jpg", "secret": "01f1005cbb", "media": "photo", "latitude": "0", "id": "6626773815", "tags": ""}, {"datetaken": "2011-12-19 19:10:54", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7166/6626784221_cff47d95cc_o.jpg", "secret": "716b418639", "media": "photo", "latitude": "0", "id": "6626784221", "tags": ""}, {"datetaken": "2011-12-19 19:14:19", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7026/6626793067_d22951b47c_o.jpg", "secret": "0e2b626635", "media": "photo", "latitude": "0", "id": "6626793067", "tags": ""}, {"datetaken": "2011-12-19 19:15:23", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7030/6626802865_b6bd876bf6_o.jpg", "secret": "8c23c965c6", "media": "photo", "latitude": "0", "id": "6626802865", "tags": ""}, {"datetaken": "2011-12-19 20:18:23", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7015/6626813799_d826b88b77_o.jpg", "secret": "cfb787e797", "media": "photo", "latitude": "0", "id": "6626813799", "tags": ""}, {"datetaken": "2011-12-19 20:55:00", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7023/6626822293_ebb18775b4_o.jpg", "secret": "4aac60e76a", "media": "photo", "latitude": "0", "id": "6626822293", "tags": ""}, {"datetaken": "2011-12-19 20:55:12", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7002/6626830845_e5ce3197ef_o.jpg", "secret": "ef22e12def", "media": "photo", "latitude": "0", "id": "6626830845", "tags": ""}, {"datetaken": "2011-12-19 20:55:21", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7004/6626839771_6e6379f1da_o.jpg", "secret": "77ee4c5b34", "media": "photo", "latitude": "0", "id": "6626839771", "tags": ""}, {"datetaken": "2011-12-19 20:55:23", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7003/6626848447_df7d7d5f1f_o.jpg", "secret": "941835d968", "media": "photo", "latitude": "0", "id": "6626848447", "tags": ""}, {"datetaken": "2011-12-19 20:55:27", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7148/6626858795_f0d2a1c064_o.jpg", "secret": "b3caec3171", "media": "photo", "latitude": "0", "id": "6626858795", "tags": ""}, {"datetaken": "2011-12-19 20:55:37", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7021/6626866387_cfe7886870_o.jpg", "secret": "3748c4a08b", "media": "photo", "latitude": "0", "id": "6626866387", "tags": ""}, {"datetaken": "2011-12-19 20:55:40", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7003/6626874105_5fe7a31138_o.jpg", "secret": "6561801a12", "media": "photo", "latitude": "0", "id": "6626874105", "tags": ""}, {"datetaken": "2011-12-19 21:29:33", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7021/6626884005_9cbfab7f35_o.jpg", "secret": "02d5403412", "media": "photo", "latitude": "0", "id": "6626884005", "tags": ""}, {"datetaken": "2011-12-19 21:29:46", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7173/6626895223_93a8524aa6_o.jpg", "secret": "4c3c6a8aa8", "media": "photo", "latitude": "0", "id": "6626895223", "tags": ""}, {"datetaken": "2011-12-19 21:31:04", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6626904401_8b43cafc05_o.jpg", "secret": "f954c61034", "media": "photo", "latitude": "0", "id": "6626904401", "tags": ""}, {"datetaken": "2011-12-19 21:31:56", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7173/6626915717_922dd30523_o.jpg", "secret": "1179fcb0f3", "media": "photo", "latitude": "0", "id": "6626915717", "tags": ""}, {"datetaken": "2011-12-19 21:32:09", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7005/6626926299_f381444b9f_o.jpg", "secret": "9913e1af15", "media": "photo", "latitude": "0", "id": "6626926299", "tags": ""}, {"datetaken": "2011-12-19 21:33:39", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7034/6626935655_538f5ed691_o.jpg", "secret": "05d450f195", "media": "photo", "latitude": "0", "id": "6626935655", "tags": ""}, {"datetaken": "2011-12-19 21:33:42", "license": "5", "title": "Grandpa's Birthday", "text": "", "album_id": "72157628695299483", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7009/6626945373_977d32bc3b_o.jpg", "secret": "43a9a81058", "media": "photo", "latitude": "0", "id": "6626945373", "tags": ""}, {"datetaken": "2010-04-03 11:58:36", "license": "5", "title": "DSC03894", "text": "", "album_id": "72157623637962265", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4486978629_0f4a0a1c55_o.jpg", "secret": "41c284c066", "media": "photo", "latitude": "0", "id": "4486978629", "tags": ""}, {"datetaken": "2010-04-03 12:39:10", "license": "5", "title": "DSC03900", "text": "", "album_id": "72157623637962265", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4487630542_c62450661d_o.jpg", "secret": "70f79a96b4", "media": "photo", "latitude": "0", "id": "4487630542", "tags": ""}, {"datetaken": "2010-04-03 13:32:56", "license": "5", "title": "DSC03906", "text": "", "album_id": "72157623637962265", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4486979075_5b0d361409_o.jpg", "secret": "5460cbe7b3", "media": "photo", "latitude": "0", "id": "4486979075", "tags": ""}, {"datetaken": "2010-04-03 13:33:06", "license": "5", "title": "DSC03907", "text": "", "album_id": "72157623637962265", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4487630964_344a0b08d2_o.jpg", "secret": "d5264f7297", "media": "photo", "latitude": "0", "id": "4487630964", "tags": ""}, {"datetaken": "2010-04-03 13:33:42", "license": "5", "title": "DSC03910", "text": "", "album_id": "72157623637962265", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4487631212_04760f4b4d_o.jpg", "secret": "8d5e9b39bb", "media": "photo", "latitude": "0", "id": "4487631212", "tags": ""}, {"datetaken": "2010-04-03 13:33:59", "license": "5", "title": "DSC03912", "text": "", "album_id": "72157623637962265", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4487631404_9760bff6db_o.jpg", "secret": "b4ea79e10e", "media": "photo", "latitude": "0", "id": "4487631404", "tags": ""}, {"datetaken": "2010-04-03 13:34:03", "license": "5", "title": "DSC03913", "text": "", "album_id": "72157623637962265", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2701/4487631580_1a0995bf00_o.jpg", "secret": "3e647893d9", "media": "photo", "latitude": "0", "id": "4487631580", "tags": ""}, {"datetaken": "2010-04-03 13:35:58", "license": "5", "title": "DSC03917", "text": "", "album_id": "72157623637962265", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4486980133_93ba3bc7ec_o.jpg", "secret": "7b767e1541", "media": "photo", "latitude": "0", "id": "4486980133", "tags": ""}, {"datetaken": "2010-04-03 13:37:26", "license": "5", "title": "DSC03920", "text": "", "album_id": "72157623637962265", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4486980373_f209138fd6_o.jpg", "secret": "f346c11477", "media": "photo", "latitude": "0", "id": "4486980373", "tags": ""}, {"datetaken": "2010-04-03 13:37:37", "license": "5", "title": "DSC03921", "text": "", "album_id": "72157623637962265", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2755/4487632202_561234d2f5_o.jpg", "secret": "6dbb956b80", "media": "photo", "latitude": "0", "id": "4487632202", "tags": ""}, {"datetaken": "2010-04-03 13:37:58", "license": "5", "title": "DSC03924", "text": "", "album_id": "72157623637962265", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4487632408_343902125a_o.jpg", "secret": "42162bae5e", "media": "photo", "latitude": "0", "id": "4487632408", "tags": ""}, {"datetaken": "2010-04-03 13:38:27", "license": "5", "title": "DSC03926", "text": "", "album_id": "72157623637962265", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4487632596_05f5e88723_o.jpg", "secret": "255f3155b7", "media": "photo", "latitude": "0", "id": "4487632596", "tags": ""}, {"datetaken": "2010-04-03 13:38:49", "license": "5", "title": "DSC03929", "text": "", "album_id": "72157623637962265", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4486981087_fe747d8a14_o.jpg", "secret": "7e33e17f60", "media": "photo", "latitude": "0", "id": "4486981087", "tags": ""}, {"datetaken": "2010-04-03 13:40:06", "license": "5", "title": "DSC03934", "text": "", "album_id": "72157623637962265", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2701/4486981281_802fa4eded_o.jpg", "secret": "96eea07ae4", "media": "photo", "latitude": "0", "id": "4486981281", "tags": ""}, {"datetaken": "2010-04-03 13:50:13", "license": "5", "title": "DSC03936", "text": "", "album_id": "72157623637962265", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4486981549_b8e9d85b40_o.jpg", "secret": "d617e9fc1a", "media": "photo", "latitude": "0", "id": "4486981549", "tags": ""}, {"datetaken": "2005-02-05 04:33:05", "license": "1", "title": "Claire, Machine Gun", "text": "", "album_id": "108359", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4284000_5f28371f4b_o.jpg", "secret": "5f28371f4b", "media": "photo", "latitude": "0", "id": "4284000", "tags": "mobile cliare gun machinegun vancouver ubc fairview"}, {"datetaken": "2005-02-05 04:35:27", "license": "1", "title": "Will, Machine Gun", "text": "", "album_id": "108359", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4284052_7eff45de94_o.jpg", "secret": "7eff45de94", "media": "photo", "latitude": "0", "id": "4284052", "tags": "mobile will gun machinegun willpate ubc fairview vancouver"}, {"datetaken": "2005-02-05 07:01:59", "license": "1", "title": "Birthday Boys", "text": "", "album_id": "108359", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4287803_dea0b18d7c_o.jpg", "secret": "dea0b18d7c", "media": "photo", "latitude": "0", "id": "4287803", "tags": "mobile dani matrijn birthday ubc fairview"}, {"datetaken": "2005-02-05 07:03:30", "license": "1", "title": "Some Kind Of Party Shot", "text": "", "album_id": "108359", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4287839_2d07bcc8c2_o.jpg", "secret": "2d07bcc8c2", "media": "photo", "latitude": "0", "id": "4287839", "tags": "mobile ubc fairview party vancouver"}, {"datetaken": "2005-02-05 07:10:41", "license": "1", "title": "Claire, Carrie and Malcom", "text": "", "album_id": "108359", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4288038_66d397cc20_o.jpg", "secret": "66d397cc20", "media": "photo", "latitude": "0", "id": "4288038", "tags": "mobile malcom carrie claire party ubc fairview vancouver"}, {"datetaken": "2005-02-05 07:15:32", "license": "1", "title": "Girls At The Party", "text": "", "album_id": "108359", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4288164_b65ba75845_o.jpg", "secret": "b65ba75845", "media": "photo", "latitude": "0", "id": "4288164", "tags": "mobile party vancouver ubc fairview"}, {"datetaken": "2005-02-05 08:07:51", "license": "1", "title": "Will Is Drunk", "text": "", "album_id": "108359", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4289376_e31b31a06e_o.jpg", "secret": "e31b31a06e", "media": "photo", "latitude": "0", "id": "4289376", "tags": "mobile will willpate vancouver ubc fairview"}, {"datetaken": "2005-02-05 09:27:09", "license": "1", "title": "Will, Re-Machine Gun", "text": "", "album_id": "108359", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4290989_df31fd3f6f_o.jpg", "secret": "df31fd3f6f", "media": "photo", "latitude": "0", "id": "4290989", "tags": "mobile will gun machinegun willpate fairview ubc vancouver"}, {"datetaken": "2005-02-05 09:27:49", "license": "1", "title": "Kiwi Love", "text": "", "album_id": "108359", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4291001_958e3f93c8_o.jpg", "secret": "958e3f93c8", "media": "photo", "latitude": "0", "id": "4291001", "tags": "mobile claire carrie party fairview ubc vancouver"}, {"datetaken": "2005-02-05 09:29:16", "license": "1", "title": "Louise and I", "text": "", "album_id": "108359", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4291045_e7b9f24fa2_o.jpg", "secret": "e7b9f24fa2", "media": "photo", "latitude": "0", "id": "4291045", "tags": "party me andy mobile vancouver termie ubc smith louise andysmith fairview frnehc"}, {"datetaken": "2005-02-05 09:31:23", "license": "1", "title": "Martijn", "text": "", "album_id": "108359", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4291094_4408ac5bdb_o.jpg", "secret": "4408ac5bdb", "media": "photo", "latitude": "0", "id": "4291094", "tags": "mobile martijn vancouver ubc fairview"}, {"datetaken": "2005-02-05 09:42:41", "license": "1", "title": "Sarah", "text": "", "album_id": "108359", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4291340_9b6d3211d9_o.jpg", "secret": "9b6d3211d9", "media": "photo", "latitude": "0", "id": "4291340", "tags": "mobile sarah ubc vancouver fairview"}, {"datetaken": "2005-02-05 10:15:12", "license": "1", "title": "Will, Chomping Carton", "text": "", "album_id": "108359", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4291961_9129fe3e58_o.jpg", "secret": "9129fe3e58", "media": "photo", "latitude": "0", "id": "4291961", "tags": "mobile will claire macdonalds ubc vancouver willpate"}, {"datetaken": "2010-03-04 19:05:39", "license": "3", "title": "Bleeding Heart Bakery Sears Tower cake and cupcakes", "text": "", "album_id": "72157623557127596", "longitude": "-87.646490", "url_o": "https://farm5.staticflickr.com/4023/4408004040_a406988863_o.jpg", "secret": "11451b4fd1", "media": "photo", "latitude": "41.857263", "id": "4408004040", "tags": "chicago illinois pilsen il artshow aroundtown cad chicagoist featured chicagoartsdistrict chicagoartdepartment southhalsted chicagoartdistrict happybirthdaychicago presetpostprocessing chicagoistfeature"}, {"datetaken": "2010-03-04 19:13:17", "license": "3", "title": "admiring", "text": "", "album_id": "72157623557127596", "longitude": "-87.646490", "url_o": "https://farm3.staticflickr.com/2700/4407237339_d3e49d2735_o.jpg", "secret": "5cba64ed4c", "media": "photo", "latitude": "41.857263", "id": "4407237339", "tags": "chicago illinois pilsen il artshow cad chicagoartsdistrict chicagoartdepartment southhalsted chicagoartdistrict happybirthdaychicago"}, {"datetaken": "2010-03-04 19:13:23", "license": "3", "title": "watching the twitter tag stream", "text": "", "album_id": "72157623557127596", "longitude": "-87.646490", "url_o": "https://farm5.staticflickr.com/4011/4408004196_4b2ed97841_o.jpg", "secret": "396d5d7852", "media": "photo", "latitude": "41.857263", "id": "4408004196", "tags": "chicago illinois pilsen il artshow cad chicagoartsdistrict chicagoartdepartment southhalsted chicagoartdistrict happybirthdaychicago presetpostprocessing"}, {"datetaken": "2010-03-04 19:13:37", "license": "3", "title": "the bashful chef from Jack's Bar and Grill", "text": "", "album_id": "72157623557127596", "longitude": "-87.646490", "url_o": "https://farm3.staticflickr.com/2770/4407237513_4fa73e1748_o.jpg", "secret": "544b392729", "media": "photo", "latitude": "41.857263", "id": "4407237513", "tags": "chicago illinois pilsen il artshow cad chicagoartsdistrict chicagoartdepartment southhalsted chicagoartdistrict happybirthdaychicago presetpostprocessing imthereabirthdaycelebrationforthecityofchicago 1837southhalsted chi173"}, {"datetaken": "2010-03-04 19:33:13", "license": "3", "title": "concentration while making a balloon hat", "text": "", "album_id": "72157623557127596", "longitude": "-87.646490", "url_o": "https://farm5.staticflickr.com/4014/4407237619_1f90f4dd50_o.jpg", "secret": "689a561367", "media": "photo", "latitude": "41.857263", "id": "4407237619", "tags": "chicago illinois pilsen il artshow cad chicagoartsdistrict chicagoartdepartment southhalsted chicagoartdistrict happybirthdaychicago presetpostprocessing"}, {"datetaken": "2010-03-04 19:35:13", "license": "3", "title": "stretchy bits", "text": "", "album_id": "72157623557127596", "longitude": "-87.646490", "url_o": "https://farm5.staticflickr.com/4020/4407237715_45fc96a598_o.jpg", "secret": "9daf772a5e", "media": "photo", "latitude": "41.857263", "id": "4407237715", "tags": "chicago illinois pilsen il artshow cad chicagoartsdistrict chicagoartdepartment southhalsted chicagoartdistrict happybirthdaychicago presetpostprocessing"}, {"datetaken": "2010-03-04 19:57:54", "license": "3", "title": "with Chicago dog", "text": "", "album_id": "72157623557127596", "longitude": "-87.646490", "url_o": "https://farm5.staticflickr.com/4049/4407237843_0d777e0207_o.jpg", "secret": "9deb17cd9b", "media": "photo", "latitude": "41.857263", "id": "4407237843", "tags": "chicago illinois pilsen il artshow cad chicagoartsdistrict chicagoartdepartment southhalsted chicagoartdistrict happybirthdaychicago 1837southhalsted chi173"}, {"datetaken": "2010-03-04 19:57:58", "license": "3", "title": "conversation", "text": "", "album_id": "72157623557127596", "longitude": "-87.646490", "url_o": "https://farm5.staticflickr.com/4009/4407237931_d1d3781d98_o.jpg", "secret": "4f3ce5ef63", "media": "photo", "latitude": "41.857263", "id": "4407237931", "tags": "chicago illinois pilsen il artshow cad chicagoartsdistrict chicagoartdepartment southhalsted chicagoartdistrict happybirthdaychicago"}, {"datetaken": "2010-03-04 20:10:46", "license": "3", "title": "faces popping out of the crowd", "text": "", "album_id": "72157623557127596", "longitude": "-87.646490", "url_o": "https://farm5.staticflickr.com/4045/4408004764_c8d8da564c_o.jpg", "secret": "5a671e0b90", "media": "photo", "latitude": "41.857263", "id": "4408004764", "tags": "chicago illinois pilsen il artshow cad chicagoartsdistrict chicagoartdepartment southhalsted chicagoartdistrict happybirthdaychicago presetpostprocessing chi173"}, {"datetaken": "2010-03-04 20:11:54", "license": "3", "title": "sneak-shot", "text": "", "album_id": "72157623557127596", "longitude": "-87.646490", "url_o": "https://farm5.staticflickr.com/4011/4407238079_e1572ca712_o.jpg", "secret": "d1f279c264", "media": "photo", "latitude": "41.857263", "id": "4407238079", "tags": "chicago illinois pilsen il artshow cad chicagoartsdistrict chicagoartdepartment southhalsted chicagoartdistrict happybirthdaychicago presetpostprocessing"}, {"datetaken": "2010-03-04 20:12:56", "license": "3", "title": "girls on the balcony", "text": "", "album_id": "72157623557127596", "longitude": "-87.646490", "url_o": "https://farm5.staticflickr.com/4058/4407238205_eb9f1c5da7_o.jpg", "secret": "3c49b34444", "media": "photo", "latitude": "41.857263", "id": "4407238205", "tags": "chicago illinois pilsen il artshow cad chicagoartsdistrict chicagoartdepartment southhalsted chicagoartdistrict happybirthdaychicago presetpostprocessing imthereabirthdaycelebrationforthecityofchicago 1837southhalsted chi173 chicagofaves"}, {"datetaken": "2010-03-04 20:13:08", "license": "3", "title": "profile", "text": "", "album_id": "72157623557127596", "longitude": "-87.646490", "url_o": "https://farm5.staticflickr.com/4069/4408005024_53b37fa221_o.jpg", "secret": "2df1ec247c", "media": "photo", "latitude": "41.857263", "id": "4408005024", "tags": "chicago illinois pilsen il artshow cad chicagoartsdistrict chicagoartdepartment southhalsted chicagoartdistrict happybirthdaychicago imthereabirthdaycelebrationforthecityofchicago 1837southhalsted chi173"}, {"datetaken": "2004-12-04 16:23:03", "license": "3", "title": "Alyssa's Birthday", "text": "", "album_id": "55663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1923422_4451453cb3_o.jpg", "secret": "4451453cb3", "media": "photo", "latitude": "0", "id": "1923422", "tags": "hawaii moblog cameraphone treo treo650"}, {"datetaken": "2004-12-04 16:25:29", "license": "3", "title": "Alyssa's Birthday", "text": "", "album_id": "55663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1923522_0f0e71faff_o.jpg", "secret": "0f0e71faff", "media": "photo", "latitude": "0", "id": "1923522", "tags": "hawaii moblog cameraphone treo treo650"}, {"datetaken": "2004-12-04 16:34:27", "license": "3", "title": "Alyssa's Birthday", "text": "", "album_id": "55663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1923700_22f7b080c9_o.jpg", "secret": "22f7b080c9", "media": "photo", "latitude": "0", "id": "1923700", "tags": "hawaii moblog cameraphone treo treo650"}, {"datetaken": "2004-12-04 16:54:46", "license": "3", "title": "Alyssa's Birthday", "text": "", "album_id": "55663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1924205_7299a66385_o.jpg", "secret": "7299a66385", "media": "photo", "latitude": "0", "id": "1924205", "tags": "hawaii moblog cameraphone treo treo650"}, {"datetaken": "2004-12-04 18:40:46", "license": "3", "title": "Alyssa's Birthday", "text": "", "album_id": "55663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1926562_21bcdd95f6_o.jpg", "secret": "21bcdd95f6", "media": "photo", "latitude": "0", "id": "1926562", "tags": "hawaii moblog cameraphone treo treo650 zac son kid"}, {"datetaken": "2004-12-04 18:46:52", "license": "3", "title": "Alyssa's Birthday", "text": "", "album_id": "55663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1926705_62247f9241_o.jpg", "secret": "62247f9241", "media": "photo", "latitude": "0", "id": "1926705", "tags": "hawaii moblog cameraphone treo treo650 zac son kid"}, {"datetaken": "2004-12-04 18:49:14", "license": "3", "title": "Alyssa's Birthday", "text": "", "album_id": "55663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1926768_36e1de0d30_o.jpg", "secret": "36e1de0d30", "media": "photo", "latitude": "0", "id": "1926768", "tags": "hawaii moblog cameraphone treo treo650 zac son kid"}, {"datetaken": "2004-12-04 19:14:24", "license": "3", "title": "Alyssa's Birthday", "text": "", "album_id": "55663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1927434_6b4233c83e_o.jpg", "secret": "6b4233c83e", "media": "photo", "latitude": "0", "id": "1927434", "tags": "hawaii moblog cameraphone treo treo650 katie kid daughter"}, {"datetaken": "2004-12-04 21:54:57", "license": "3", "title": "Alyssa's Birthday", "text": "", "album_id": "55663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931120_ae48e2727a_o.jpg", "secret": "ae48e2727a", "media": "photo", "latitude": "0", "id": "1931120", "tags": "hawaii moblog cameraphone treo treo650 katie kid daughter"}, {"datetaken": "2004-12-04 21:56:16", "license": "3", "title": "Alyssa's Birthday", "text": "", "album_id": "55663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931141_8b058c3db6_o.jpg", "secret": "8b058c3db6", "media": "photo", "latitude": "0", "id": "1931141", "tags": "hawaii moblog cameraphone treo treo650 katie kid daughter"}, {"datetaken": "2004-12-04 21:57:36", "license": "3", "title": "Alyssa's Birthday", "text": "", "album_id": "55663", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1931159_7a791dd8fa_o.jpg", "secret": "7a791dd8fa", "media": "photo", "latitude": "0", "id": "1931159", "tags": "hawaii moblog cameraphone treo treo650 katie kid daughter"}, {"datetaken": "2010-02-06 22:21:35", "license": "1", "title": "P1030034", "text": "", "album_id": "72157623368307608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4335892907_df6bab5fa8_o.jpg", "secret": "20f6b4fe56", "media": "photo", "latitude": "0", "id": "4335892907", "tags": "birthday marina celebration bj 2010"}, {"datetaken": "2010-02-06 22:21:37", "license": "1", "title": "P1030035", "text": "", "album_id": "72157623368307608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4336639468_26f29834a5_o.jpg", "secret": "0b87fe5fdb", "media": "photo", "latitude": "0", "id": "4336639468", "tags": "birthday marina celebration bj 2010"}, {"datetaken": "2010-02-06 22:21:40", "license": "1", "title": "P1030036", "text": "", "album_id": "72157623368307608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4336639532_554761c16d_o.jpg", "secret": "0a7cd4b925", "media": "photo", "latitude": "0", "id": "4336639532", "tags": "birthday marina celebration bj 2010"}, {"datetaken": "2010-02-06 22:21:44", "license": "1", "title": "P1030037", "text": "", "album_id": "72157623368307608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4336639672_9f1db327dd_o.jpg", "secret": "21faf7287b", "media": "photo", "latitude": "0", "id": "4336639672", "tags": "birthday marina celebration bj 2010"}, {"datetaken": "2010-02-06 22:21:46", "license": "1", "title": "P1030038", "text": "", "album_id": "72157623368307608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4336639756_dac12e4da0_o.jpg", "secret": "9fc4c92861", "media": "photo", "latitude": "0", "id": "4336639756", "tags": "birthday marina celebration bj 2010"}, {"datetaken": "2010-02-06 22:21:49", "license": "1", "title": "P1030039", "text": "", "album_id": "72157623368307608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4335893401_0d4fe6fd30_o.jpg", "secret": "a7a113cd0a", "media": "photo", "latitude": "0", "id": "4335893401", "tags": "birthday marina celebration bj 2010"}, {"datetaken": "2010-02-06 22:21:53", "license": "1", "title": "P1030040", "text": "", "album_id": "72157623368307608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4335893509_46fd19e634_o.jpg", "secret": "cc2fd5d572", "media": "photo", "latitude": "0", "id": "4335893509", "tags": "birthday marina celebration bj 2010"}, {"datetaken": "2010-02-06 22:21:55", "license": "1", "title": "P1030041", "text": "", "album_id": "72157623368307608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4336640066_48d67b7e2a_o.jpg", "secret": "f92bf28cef", "media": "photo", "latitude": "0", "id": "4336640066", "tags": "birthday marina celebration bj 2010"}, {"datetaken": "2010-02-06 22:21:57", "license": "1", "title": "P1030042", "text": "", "album_id": "72157623368307608", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2777/4336640144_0466d16f67_o.jpg", "secret": "964b7522f5", "media": "photo", "latitude": "0", "id": "4336640144", "tags": "birthday marina celebration bj 2010"}, {"datetaken": "2010-02-06 22:22:00", "license": "1", "title": "P1030043", "text": "", "album_id": "72157623368307608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4336640240_cde99228ac_o.jpg", "secret": "429a1eca57", "media": "photo", "latitude": "0", "id": "4336640240", "tags": "birthday marina celebration bj 2010"}, {"datetaken": "2010-02-06 22:22:04", "license": "1", "title": "P1030044", "text": "", "album_id": "72157623368307608", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4335893863_b2df9bce5a_o.jpg", "secret": "018e7f847e", "media": "photo", "latitude": "0", "id": "4335893863", "tags": "birthday marina celebration bj 2010"}, {"datetaken": "2010-03-05 17:51:40", "license": "4", "title": "A Perfect Match", "text": "", "album_id": "72157623570949068", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4410413261_9c3b86de1a_o.jpg", "secret": "f814dea5b8", "media": "photo", "latitude": "0", "id": "4410413261", "tags": "dog puppy"}, {"datetaken": "2010-03-05 18:15:45", "license": "4", "title": "Reading", "text": "", "album_id": "72157623570949068", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2738/4410415989_a296f9fd74_o.jpg", "secret": "a6099c1c0c", "media": "photo", "latitude": "0", "id": "4410415989", "tags": "reading"}, {"datetaken": "2010-03-06 13:40:55", "license": "4", "title": "Birthday Girl", "text": "", "album_id": "72157623570949068", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4412728720_de9c15d81f_o.jpg", "secret": "97ac5d831d", "media": "photo", "latitude": "0", "id": "4412728720", "tags": "birthday birthdayparty"}, {"datetaken": "2010-03-06 13:42:21", "license": "4", "title": "Birthday Party", "text": "", "album_id": "72157623570949068", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4412718690_43a944f943_o.jpg", "secret": "bd859a5f59", "media": "photo", "latitude": "0", "id": "4412718690", "tags": "birthday birthdayparty"}, {"datetaken": "2010-03-06 13:58:17", "license": "4", "title": "Birthday Party", "text": "", "album_id": "72157623570949068", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4411955553_15551c0012_o.jpg", "secret": "61061c1996", "media": "photo", "latitude": "0", "id": "4411955553", "tags": "birthday birthdayparty"}, {"datetaken": "2010-03-06 14:00:30", "license": "4", "title": "Birthday Party", "text": "", "album_id": "72157623570949068", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4411946015_dcbb465e39_o.jpg", "secret": "8228445a82", "media": "photo", "latitude": "0", "id": "4411946015", "tags": "birthday birthdayparty"}, {"datetaken": "2010-03-06 14:07:04", "license": "4", "title": "Birthday Party", "text": "", "album_id": "72157623570949068", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4412708802_31936c42ba_o.jpg", "secret": "c4c37043ec", "media": "photo", "latitude": "0", "id": "4412708802", "tags": "birthday birthdayparty"}, {"datetaken": "2010-03-06 14:17:26", "license": "4", "title": "Birthday Party", "text": "", "album_id": "72157623570949068", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4412705940_377bd10ca0_o.jpg", "secret": "92b375e679", "media": "photo", "latitude": "0", "id": "4412705940", "tags": "birthday birthdayparty"}, {"datetaken": "2010-03-06 14:18:17", "license": "4", "title": "Birthday Party", "text": "", "album_id": "72157623570949068", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4411934793_26c6065076_o.jpg", "secret": "8d359ea869", "media": "photo", "latitude": "0", "id": "4411934793", "tags": "birthday birthdayparty"}, {"datetaken": "2010-03-06 14:44:30", "license": "4", "title": "Birthday Party", "text": "", "album_id": "72157623570949068", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2763/4411933117_b4e09fa461_o.jpg", "secret": "86d5958de1", "media": "photo", "latitude": "0", "id": "4411933117", "tags": "birthday birthdayparty"}, {"datetaken": "2010-03-06 14:51:37", "license": "4", "title": "Birthday Party", "text": "", "album_id": "72157623570949068", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2760/4411929333_5e3451e4e9_o.jpg", "secret": "c07d0cccec", "media": "photo", "latitude": "0", "id": "4411929333", "tags": "birthday birthdayparty"}, {"datetaken": "2010-03-07 12:41:07", "license": "4", "title": "UU Shirt", "text": "", "album_id": "72157623570949068", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4415338797_a23871d671_o.jpg", "secret": "363a1cdf75", "media": "photo", "latitude": "0", "id": "4415338797", "tags": "uu unitarianuniversalist thislittlelightofmine"}, {"datetaken": "2009-08-27 03:59:57", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm3.staticflickr.com/2707/4412172240_7d51ae5aa5_o.jpg", "secret": "477fec34b4", "media": "photo", "latitude": "53.339500", "id": "4412172240", "tags": "ireland 2009"}, {"datetaken": "2009-08-27 04:12:40", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm5.staticflickr.com/4034/4411404889_4e668d31f7_o.jpg", "secret": "c0f0fe0cd2", "media": "photo", "latitude": "53.339500", "id": "4411404889", "tags": "ireland 2009"}, {"datetaken": "2009-08-27 04:20:27", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm5.staticflickr.com/4068/4411404917_5c7f53af65_o.jpg", "secret": "c1a2091493", "media": "photo", "latitude": "53.339500", "id": "4411404917", "tags": "ireland 2009"}, {"datetaken": "2009-08-27 04:21:38", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm3.staticflickr.com/2691/4411404947_1aac6dfa33_o.jpg", "secret": "0218efdce9", "media": "photo", "latitude": "53.339500", "id": "4411404947", "tags": "ireland 2009"}, {"datetaken": "2009-08-27 04:22:16", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm3.staticflickr.com/2723/4411404975_10f3b7e973_o.jpg", "secret": "09b4ce0f14", "media": "photo", "latitude": "53.339500", "id": "4411404975", "tags": "ireland 2009"}, {"datetaken": "2009-08-27 04:39:00", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm5.staticflickr.com/4022/4411405009_ce3fbf6e9a_o.jpg", "secret": "dafabfa51c", "media": "photo", "latitude": "53.339500", "id": "4411405009", "tags": "ireland 2009"}, {"datetaken": "2009-08-27 04:39:39", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm3.staticflickr.com/2732/4412172556_d744fd8c2b_o.jpg", "secret": "89730dbaa5", "media": "photo", "latitude": "53.339500", "id": "4412172556", "tags": "ireland 2009"}, {"datetaken": "2009-08-27 04:43:49", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm5.staticflickr.com/4056/4411405155_fc6e210e97_o.jpg", "secret": "7ea2cb3e57", "media": "photo", "latitude": "53.339500", "id": "4411405155", "tags": "ireland 2009"}, {"datetaken": "2009-08-27 05:06:15", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm3.staticflickr.com/2732/4411405185_4d2f8bd6f1_o.jpg", "secret": "2e68b4eb74", "media": "photo", "latitude": "53.339500", "id": "4411405185", "tags": "ireland 2009"}, {"datetaken": "2009-08-27 05:19:14", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm3.staticflickr.com/2726/4411405253_c8f10633ed_o.jpg", "secret": "abac06a3e6", "media": "photo", "latitude": "53.339500", "id": "4411405253", "tags": "ireland 2009"}, {"datetaken": "2009-08-27 05:20:14", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm5.staticflickr.com/4068/4412172732_93948a48df_o.jpg", "secret": "b230dd4ca7", "media": "photo", "latitude": "53.339500", "id": "4412172732", "tags": "ireland 2009"}, {"datetaken": "2009-08-27 05:20:58", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm5.staticflickr.com/4069/4412172788_681bd2f21b_o.jpg", "secret": "b075d0a57b", "media": "photo", "latitude": "53.339500", "id": "4412172788", "tags": "ireland 2009"}, {"datetaken": "2009-08-27 05:23:33", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm3.staticflickr.com/2715/4411405361_fe36bc6cf2_o.jpg", "secret": "a1fbaa5159", "media": "photo", "latitude": "53.339500", "id": "4411405361", "tags": "ireland 2009"}, {"datetaken": "2009-08-27 05:23:40", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2435/4411405399_2360259828_o.jpg", "secret": "a79a560a0e", "media": "photo", "latitude": "0", "id": "4411405399", "tags": "ireland dublin guinness brewery 2009 storehouse"}, {"datetaken": "2009-08-27 05:51:41", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm5.staticflickr.com/4027/4411405437_4a48d1eb9f_o.jpg", "secret": "433ec7f9c2", "media": "photo", "latitude": "53.339500", "id": "4411405437", "tags": "ireland dublin guinness 2009 storehouse"}, {"datetaken": "2009-08-27 05:55:44", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm5.staticflickr.com/4028/4412659298_3cf5251e1c_o.jpg", "secret": "2cf62d9573", "media": "photo", "latitude": "53.339500", "id": "4412659298", "tags": "ireland dublin jon guinness 2009 storehouse"}, {"datetaken": "2009-08-27 06:19:40", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm5.staticflickr.com/4052/4411405481_917e791240_o.jpg", "secret": "80681f183c", "media": "photo", "latitude": "53.339500", "id": "4411405481", "tags": "ireland 2009"}, {"datetaken": "2009-08-27 06:19:46", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm3.staticflickr.com/2717/4412172942_273aa5cd4f_o.jpg", "secret": "9c82d6e9fe", "media": "photo", "latitude": "53.339500", "id": "4412172942", "tags": "ireland 2009"}, {"datetaken": "2009-08-27 06:19:46", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm3.staticflickr.com/2792/4411952401_dde1431a10_o.jpg", "secret": "1c7cf6af85", "media": "photo", "latitude": "53.339500", "id": "4411952401", "tags": "ireland dublin guinness 2009 storehouse"}, {"datetaken": "2009-08-27 06:22:25", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm5.staticflickr.com/4040/4412172972_ab81466aa0_o.jpg", "secret": "f9259cc35d", "media": "photo", "latitude": "53.339500", "id": "4412172972", "tags": "ireland 2009"}, {"datetaken": "2009-08-27 06:26:48", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm5.staticflickr.com/4067/4411405587_febd23526e_o.jpg", "secret": "7d6c5b56c1", "media": "photo", "latitude": "53.339500", "id": "4411405587", "tags": "ireland dublin guinness 2009 storehouse"}, {"datetaken": "2009-08-27 06:56:56", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm3.staticflickr.com/2688/4411405647_04df44fd92_o.jpg", "secret": "05cdcd347c", "media": "photo", "latitude": "53.339500", "id": "4411405647", "tags": "ireland dublin guinness 2009 storehouse"}, {"datetaken": "2009-08-27 06:57:09", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm5.staticflickr.com/4024/4412173116_3753bfb25b_o.jpg", "secret": "9553137620", "media": "photo", "latitude": "53.339500", "id": "4412173116", "tags": "ireland dublin guinness 2009 storehouse"}, {"datetaken": "2009-08-27 06:57:45", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm3.staticflickr.com/2800/4411405735_c4418cf217_o.jpg", "secret": "65cbea0d6d", "media": "photo", "latitude": "53.339500", "id": "4411405735", "tags": "ireland dublin guinness 2009 storehouse"}, {"datetaken": "2009-08-27 07:01:11", "license": "3", "title": "Guinness Storehouse Dublin, Ireland", "text": "", "album_id": "72157623443117787", "longitude": "-6.321748", "url_o": "https://farm5.staticflickr.com/4071/4411405771_40d248d2f6_o.jpg", "secret": "db422d5939", "media": "photo", "latitude": "53.339500", "id": "4411405771", "tags": "ireland guinness 2009 storehouse"}, {"datetaken": "2007-01-06 18:56:53", "license": "3", "title": "IMG_1917", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/349122557_fa4fbf89b8_o.jpg", "secret": "fa4fbf89b8", "media": "photo", "latitude": "0", "id": "349122557", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 19:00:41", "license": "3", "title": "IMG_1919", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/349122565_21d7e340a8_o.jpg", "secret": "21d7e340a8", "media": "photo", "latitude": "0", "id": "349122565", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 19:37:46", "license": "3", "title": "IMG_1921", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/349122569_edba45eb09_o.jpg", "secret": "edba45eb09", "media": "photo", "latitude": "0", "id": "349122569", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 19:53:29", "license": "3", "title": "IMG_1922", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/349122577_491b6a10ed_o.jpg", "secret": "491b6a10ed", "media": "photo", "latitude": "0", "id": "349122577", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:22:20", "license": "3", "title": "IMG_1923", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/349122586_226ae8353e_o.jpg", "secret": "226ae8353e", "media": "photo", "latitude": "0", "id": "349122586", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:22:46", "license": "3", "title": "IMG_1925", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/349122592_495bae3408_o.jpg", "secret": "495bae3408", "media": "photo", "latitude": "0", "id": "349122592", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:23:14", "license": "3", "title": "IMG_1926", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/349147630_54ceb77e5c_o.jpg", "secret": "54ceb77e5c", "media": "photo", "latitude": "0", "id": "349147630", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:34:07", "license": "3", "title": "IMG_1929", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/349147636_eda6f37e07_o.jpg", "secret": "eda6f37e07", "media": "photo", "latitude": "0", "id": "349147636", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:40:01", "license": "3", "title": "IMG_1930", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/349147639_3c8f86a252_o.jpg", "secret": "3c8f86a252", "media": "photo", "latitude": "0", "id": "349147639", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:40:40", "license": "3", "title": "IMG_1931", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/349147643_94e2179723_o.jpg", "secret": "94e2179723", "media": "photo", "latitude": "0", "id": "349147643", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:40:51", "license": "3", "title": "IMG_1932", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/349147649_c57a50b98d_o.jpg", "secret": "c57a50b98d", "media": "photo", "latitude": "0", "id": "349147649", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:41:01", "license": "3", "title": "IMG_1933", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/349303148_47fd50b3c1_o.jpg", "secret": "47fd50b3c1", "media": "photo", "latitude": "0", "id": "349303148", "tags": "birthday chris amelia"}, {"datetaken": "2007-01-06 20:41:29", "license": "3", "title": "IMG_1934", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/349303158_1a1cf81d7e_o.jpg", "secret": "1a1cf81d7e", "media": "photo", "latitude": "0", "id": "349303158", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:42:48", "license": "3", "title": "IMG_1935", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/349303167_42c35dd25e_o.jpg", "secret": "42c35dd25e", "media": "photo", "latitude": "0", "id": "349303167", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:44:06", "license": "3", "title": "IMG_1937", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/349303176_335059ca26_o.jpg", "secret": "335059ca26", "media": "photo", "latitude": "0", "id": "349303176", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:44:41", "license": "3", "title": "IMG_1938", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/349303181_acf217bd69_o.jpg", "secret": "acf217bd69", "media": "photo", "latitude": "0", "id": "349303181", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:44:53", "license": "3", "title": "IMG_1939", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/349303184_92a2aa8da7_o.jpg", "secret": "92a2aa8da7", "media": "photo", "latitude": "0", "id": "349303184", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:45:30", "license": "3", "title": "IMG_1940", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/349311052_9fb7b0be10_o.jpg", "secret": "9fb7b0be10", "media": "photo", "latitude": "0", "id": "349311052", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:45:47", "license": "3", "title": "IMG_1941", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/349311063_c56df51f71_o.jpg", "secret": "c56df51f71", "media": "photo", "latitude": "0", "id": "349311063", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:46:33", "license": "3", "title": "IMG_1943", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/349311059_ebe228de00_o.jpg", "secret": "ebe228de00", "media": "photo", "latitude": "0", "id": "349311059", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:47:28", "license": "3", "title": "IMG_1944", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/349311071_09b313d761_o.jpg", "secret": "09b313d761", "media": "photo", "latitude": "0", "id": "349311071", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:49:44", "license": "3", "title": "IMG_1945", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/349311079_39633adf80_o.jpg", "secret": "39633adf80", "media": "photo", "latitude": "0", "id": "349311079", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:50:58", "license": "3", "title": "IMG_1947", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/349311088_e32457774c_o.jpg", "secret": "e32457774c", "media": "photo", "latitude": "0", "id": "349311088", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:51:25", "license": "3", "title": "IMG_1948", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/349323757_c6ffe193b5_o.jpg", "secret": "c6ffe193b5", "media": "photo", "latitude": "0", "id": "349323757", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:53:51", "license": "3", "title": "IMG_1949", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/349323778_6483d49b3a_o.jpg", "secret": "6483d49b3a", "media": "photo", "latitude": "0", "id": "349323778", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 20:57:24", "license": "3", "title": "IMG_1951", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/349323787_564e43ffff_o.jpg", "secret": "564e43ffff", "media": "photo", "latitude": "0", "id": "349323787", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 21:01:36", "license": "3", "title": "IMG_1956", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/349323793_7717391bbb_o.jpg", "secret": "7717391bbb", "media": "photo", "latitude": "0", "id": "349323793", "tags": "birthday amelia"}, {"datetaken": "2007-01-06 21:10:53", "license": "3", "title": "IMG_1957", "text": "", "album_id": "72157594465502864", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/349323798_11639963ef_o.jpg", "secret": "11639963ef", "media": "photo", "latitude": "0", "id": "349323798", "tags": "birthday amelia"}, {"datetaken": "2010-03-07 13:59:41", "license": "1", "title": "Wex.Approves.of.Guns", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4418663762_edbee38b2e_o.jpg", "secret": "eebb626cae", "media": "photo", "latitude": "0", "id": "4418663762", "tags": "raw"}, {"datetaken": "2010-03-07 13:59:52", "license": "1", "title": "Grant.Knows.Sexy", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4417896719_a32fd0d2f8_o.jpg", "secret": "c3019981fa", "media": "photo", "latitude": "0", "id": "4417896719", "tags": "raw"}, {"datetaken": "2010-03-07 14:02:41", "license": "1", "title": "Just.ified", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2782/4418664698_f5c798f254_o.jpg", "secret": "d2a5ab2bf4", "media": "photo", "latitude": "0", "id": "4418664698", "tags": "raw"}, {"datetaken": "2010-03-07 14:20:43", "license": "1", "title": "Angel.Gets.Her.Birthday.Wish", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4417897821_bdf5b2f92e_o.jpg", "secret": "3f454d504b", "media": "photo", "latitude": "0", "id": "4417897821", "tags": "raw"}, {"datetaken": "2010-03-07 14:22:35", "license": "1", "title": "Gun.Safety.is.Serious.Business.1", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2783/4418666154_c36cf4b3d8_o.jpg", "secret": "5e1081e188", "media": "photo", "latitude": "0", "id": "4418666154", "tags": "raw"}, {"datetaken": "2010-03-07 14:31:14", "license": "1", "title": "Attentive.Students.2", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4418665968_1ca8db0387_o.jpg", "secret": "25e0218c0d", "media": "photo", "latitude": "0", "id": "4418665968", "tags": "raw"}, {"datetaken": "2010-03-07 14:46:22", "license": "1", "title": "Too.Many.Memories", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4417898101_6214569ea9_o.jpg", "secret": "93a7c42755", "media": "photo", "latitude": "0", "id": "4417898101", "tags": "raw"}, {"datetaken": "2010-03-07 14:46:34", "license": "1", "title": "Gun.Safety.is.Serious.Business.2", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4417898963_7897b2075f_o.jpg", "secret": "f83cc48643", "media": "photo", "latitude": "0", "id": "4417898963", "tags": "raw"}, {"datetaken": "2010-03-07 14:48:14", "license": "1", "title": "Grant.Wex.Aiming", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4417899273_7d19449767_o.jpg", "secret": "13df3a7dde", "media": "photo", "latitude": "0", "id": "4417899273", "tags": "raw"}, {"datetaken": "2010-03-07 14:50:46", "license": "1", "title": "The.Rest.Aiming", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/4418666982_1746e4f19a_o.jpg", "secret": "18172efed4", "media": "photo", "latitude": "0", "id": "4418666982", "tags": "raw"}, {"datetaken": "2010-03-07 14:52:04", "license": "1", "title": "Grant.and.The.Thug", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4418666524_b4e95d4d8f_o.jpg", "secret": "d4cd6f9d67", "media": "photo", "latitude": "0", "id": "4418666524", "tags": "raw"}, {"datetaken": "2010-03-07 14:52:57", "license": "1", "title": "Attentive.Students.1", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4417898325_3d8e056bf3_o.jpg", "secret": "5b0eba1829", "media": "photo", "latitude": "0", "id": "4417898325", "tags": "raw"}, {"datetaken": "2010-03-07 14:58:47", "license": "1", "title": "Semi.Automatic", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2768/4417900331_2c86e46894_o.jpg", "secret": "942219746b", "media": "photo", "latitude": "0", "id": "4417900331", "tags": "raw"}, {"datetaken": "2010-03-07 15:00:48", "license": "1", "title": "The.Babies", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4418667614_74e0a69e16_o.jpg", "secret": "ff1116400a", "media": "photo", "latitude": "0", "id": "4418667614", "tags": "raw"}, {"datetaken": "2010-03-07 15:04:19", "license": "1", "title": "Lock.and.or.Load", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4417899803_72a0bcf139_o.jpg", "secret": "50bda130ae", "media": "photo", "latitude": "0", "id": "4417899803", "tags": "raw"}, {"datetaken": "2010-03-07 15:04:47", "license": "1", "title": "The.Modern.Man", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4417900891_105c752db0_o.jpg", "secret": "bd436dd249", "media": "photo", "latitude": "0", "id": "4417900891", "tags": "raw"}, {"datetaken": "2010-03-07 15:05:18", "license": "1", "title": "The.Splay", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4417900597_5fc287e439_o.jpg", "secret": "7a7c9d4790", "media": "photo", "latitude": "0", "id": "4417900597", "tags": "raw"}, {"datetaken": "2010-03-07 15:18:26", "license": "1", "title": "Birthday.Headshot", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2710/4417901109_f88bcc6127_o.jpg", "secret": "9023a733d5", "media": "photo", "latitude": "0", "id": "4417901109", "tags": "raw"}, {"datetaken": "2010-03-07 15:19:22", "license": "1", "title": "Ready.for.Action", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4418668834_d7ffdb7887_o.jpg", "secret": "e66fd50f04", "media": "photo", "latitude": "0", "id": "4418668834", "tags": "raw"}, {"datetaken": "2010-03-07 15:23:40", "license": "1", "title": "Talbott.Fires", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2683/4418669126_5de4319e33_o.jpg", "secret": "17e8354440", "media": "photo", "latitude": "0", "id": "4418669126", "tags": "raw"}, {"datetaken": "2010-03-07 15:23:47", "license": "1", "title": "Noto.Fires", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2696/4417902391_bd888c8665_o.jpg", "secret": "33692fcf7d", "media": "photo", "latitude": "0", "id": "4417902391", "tags": "raw"}, {"datetaken": "2010-03-07 15:24:02", "license": "1", "title": "Wex.Fires", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4417901927_8c95637ba8_o.jpg", "secret": "4c4b9e5b3e", "media": "photo", "latitude": "0", "id": "4417901927", "tags": "raw"}, {"datetaken": "2010-03-07 15:24:39", "license": "1", "title": "Angel.Fires", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4417902149_082c61d5db_o.jpg", "secret": "fc2873acf3", "media": "photo", "latitude": "0", "id": "4417902149", "tags": "raw"}, {"datetaken": "2010-03-07 15:42:21", "license": "1", "title": "Good.God", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4417902661_ee3c2e22e6_o.jpg", "secret": "f2958fa46c", "media": "photo", "latitude": "0", "id": "4417902661", "tags": "raw"}, {"datetaken": "2010-03-07 15:44:38", "license": "1", "title": "Wex.and.his.Target", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4417902953_49f97a8828_o.jpg", "secret": "abb79c6109", "media": "photo", "latitude": "0", "id": "4417902953", "tags": "raw"}, {"datetaken": "2010-03-07 15:45:59", "license": "1", "title": "What.Is.He.Saying", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4418670944_2e8ce04970_o.jpg", "secret": "d4bb420e5c", "media": "photo", "latitude": "0", "id": "4418670944", "tags": "raw"}, {"datetaken": "2010-03-07 15:46:40", "license": "1", "title": "Justins.Targets", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4417903197_d7c86851c2_o.jpg", "secret": "9f2d9271cc", "media": "photo", "latitude": "0", "id": "4417903197", "tags": "raw"}, {"datetaken": "2010-03-07 15:48:31", "license": "1", "title": "Grants.Target", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4417903675_b25f7dc813_o.jpg", "secret": "7185f3cb51", "media": "photo", "latitude": "0", "id": "4417903675", "tags": "raw"}, {"datetaken": "2010-03-07 15:51:42", "license": "1", "title": "Who.Is.The.Thug", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4417903843_e633088673_o.jpg", "secret": "dcbbf3b652", "media": "photo", "latitude": "0", "id": "4417903843", "tags": "raw"}, {"datetaken": "2010-03-07 15:52:26", "license": "1", "title": "New.Friends", "text": "", "album_id": "72157623457889593", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4417904143_c6285dc1ea_o.jpg", "secret": "6855583202", "media": "photo", "latitude": "0", "id": "4417904143", "tags": "raw"}, {"datetaken": "2005-04-09 17:44:13", "license": "3", "title": "charlene, jessica, eileen, rebecca", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24602715_241c1f6280_o.jpg", "secret": "241c1f6280", "media": "photo", "latitude": "0", "id": "24602715", "tags": "birthday charlene jessica eileen rebecca dogwood piedmont"}, {"datetaken": "2005-04-09 17:44:45", "license": "3", "title": "@dogwood", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24602754_49f1b900d5_o.jpg", "secret": "49f1b900d5", "media": "photo", "latitude": "0", "id": "24602754", "tags": "birthday charlene lalaine jessica eileen rebecca audrey dogwood piedmont"}, {"datetaken": "2005-04-09 18:03:48", "license": "3", "title": "charlene, mr pig and caroline", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24602792_948251d891_o.jpg", "secret": "948251d891", "media": "photo", "latitude": "0", "id": "24602792", "tags": "birthday charlene pig caroline dogwood piedmont"}, {"datetaken": "2005-04-09 18:05:55", "license": "3", "title": "charlene, hsin, caroline, lillian", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24602872_398bd567fb_o.jpg", "secret": "398bd567fb", "media": "photo", "latitude": "0", "id": "24602872", "tags": "birthday charlene hsin caroline lillian dogwood piedmont"}, {"datetaken": "2005-04-09 18:06:42", "license": "3", "title": "charlene and audrey", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24602960_91124ae829_o.jpg", "secret": "91124ae829", "media": "photo", "latitude": "0", "id": "24602960", "tags": "birthday charlene audrey dogwood piedmont"}, {"datetaken": "2005-04-09 18:14:54", "license": "3", "title": "lalaine and mark", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24602932_fb7ebc1c6a_o.jpg", "secret": "fb7ebc1c6a", "media": "photo", "latitude": "0", "id": "24602932", "tags": "birthday mark lalaine dogwood piedmont"}, {"datetaken": "2005-04-09 18:18:45", "license": "3", "title": "waiting in line for funnel cakes", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24602988_f70994e0fe_o.jpg", "secret": "f70994e0fe", "media": "photo", "latitude": "0", "id": "24602988", "tags": "birthday funnel food hsin lillian caroline dogwood piedmont"}, {"datetaken": "2005-04-09 18:23:17", "license": "3", "title": "caroline sharing", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24603011_a738af374e_o.jpg", "secret": "a738af374e", "media": "photo", "latitude": "0", "id": "24603011", "tags": "birthday caroline funnel dogwood piedmont"}, {"datetaken": "2005-04-09 18:30:05", "license": "3", "title": "still eating", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24603046_bb5e45d149_o.jpg", "secret": "bb5e45d149", "media": "photo", "latitude": "0", "id": "24603046", "tags": "birthday audrey hsin caroline lillian food dogwood piedmont"}, {"datetaken": "2005-04-09 18:30:52", "license": "3", "title": "audrey and lalaine", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24603122_34063d0faf_o.jpg", "secret": "34063d0faf", "media": "photo", "latitude": "0", "id": "24603122", "tags": "birthday audrey lalaine dogwood piedmont"}, {"datetaken": "2005-04-09 18:31:29", "license": "3", "title": "finding the frisbee in the trees", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24603148_83210a7d0c_o.jpg", "secret": "83210a7d0c", "media": "photo", "latitude": "0", "id": "24603148", "tags": "birthday mark aiping dogwood piedmont"}, {"datetaken": "2005-04-09 18:37:04", "license": "3", "title": "the park", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24603169_2feaeb207f_o.jpg", "secret": "2feaeb207f", "media": "photo", "latitude": "0", "id": "24603169", "tags": "birthday piedmont dogwood"}, {"datetaken": "2005-04-09 18:38:48", "license": "3", "title": "the dogs", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24603202_259cd8bb0c_o.jpg", "secret": "259cd8bb0c", "media": "photo", "latitude": "0", "id": "24603202", "tags": "birthday dogwood piedmont"}, {"datetaken": "2005-04-09 18:38:56", "license": "3", "title": "more dogs", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24603222_f0ac76c180_o.jpg", "secret": "f0ac76c180", "media": "photo", "latitude": "0", "id": "24603222", "tags": "birthday dogwood piedmont"}, {"datetaken": "2005-04-09 18:39:15", "license": "3", "title": "the show was cool", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24603257_d7cbf68648_o.jpg", "secret": "d7cbf68648", "media": "photo", "latitude": "0", "id": "24603257", "tags": "birthday dogwood piedmont"}, {"datetaken": "2005-04-09 18:43:00", "license": "3", "title": "girl and her dog", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24603283_f935416952_o.jpg", "secret": "f935416952", "media": "photo", "latitude": "0", "id": "24603283", "tags": "birthday dogwood piedmont"}, {"datetaken": "2005-04-09 18:47:06", "license": "3", "title": "guy and his dog", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24603306_157725112a_o.jpg", "secret": "157725112a", "media": "photo", "latitude": "0", "id": "24603306", "tags": "birthday dogwood piedmont"}, {"datetaken": "2005-04-09 19:06:05", "license": "3", "title": "piedmont", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24603324_0c10e26704_o.jpg", "secret": "0c10e26704", "media": "photo", "latitude": "0", "id": "24603324", "tags": "birthday audrey caroline lillian hsin dogwood piedmont"}, {"datetaken": "2005-04-09 19:07:06", "license": "3", "title": "chris and charlene", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24603392_f9a0881afe_o.jpg", "secret": "f9a0881afe", "media": "photo", "latitude": "0", "id": "24603392", "tags": "birthday chris charlene dogwood piedmont"}, {"datetaken": "2005-04-09 20:28:29", "license": "3", "title": "caroline running from the paparazzi", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24603414_9e5140a34d_o.jpg", "secret": "9e5140a34d", "media": "photo", "latitude": "0", "id": "24603414", "tags": "birthday caroline"}, {"datetaken": "2005-04-09 21:18:06", "license": "3", "title": "waiting for harry's and son", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24603439_2e9b152dae_o.jpg", "secret": "2e9b152dae", "media": "photo", "latitude": "0", "id": "24603439", "tags": "birthday rebecca audrey charlene"}, {"datetaken": "2005-04-09 21:18:14", "license": "3", "title": "waiting for take-out", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24603463_a10d9c4e2a_o.jpg", "secret": "a10d9c4e2a", "media": "photo", "latitude": "0", "id": "24603463", "tags": "birthday rebecca audrey charlene"}, {"datetaken": "2005-04-09 23:01:27", "license": "3", "title": "charlene and her cake", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24603482_d12182d7d8_o.jpg", "secret": "d12182d7d8", "media": "photo", "latitude": "0", "id": "24603482", "tags": "birthday charlene cake"}, {"datetaken": "2005-04-09 23:01:36", "license": "3", "title": "charlene happy about the cake", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24603516_1d2a7c2823_o.jpg", "secret": "1d2a7c2823", "media": "photo", "latitude": "0", "id": "24603516", "tags": "birthday charlene cake"}, {"datetaken": "2005-04-09 23:01:42", "license": "3", "title": "charlene blowing out imaginary candles", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24603548_a1f0b731c6_o.jpg", "secret": "a1f0b731c6", "media": "photo", "latitude": "0", "id": "24603548", "tags": "birthday charlene cake"}, {"datetaken": "2005-04-09 23:02:13", "license": "3", "title": "the cake", "text": "", "album_id": "562456", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24603569_d58b8cf3d8_o.jpg", "secret": "d58b8cf3d8", "media": "photo", "latitude": "0", "id": "24603569", "tags": "birthday cake food"}, {"datetaken": "2005-05-14 00:54:34", "license": "1", "title": "So When is The Party Gonna Start Rockin?", "text": "", "album_id": "563409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24554542_9ffbc6f023_o.jpg", "secret": "9ffbc6f023", "media": "photo", "latitude": "0", "id": "24554542", "tags": "paula pooh sister tanya birthday 30th cake"}, {"datetaken": "2005-05-14 00:54:40", "license": "1", "title": "Your Gorgeous", "text": "", "album_id": "563409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24554550_b964987af9_o.jpg", "secret": "b964987af9", "media": "photo", "latitude": "0", "id": "24554550", "tags": "sister tanya birthday 30th cake"}, {"datetaken": "2005-05-14 00:55:28", "license": "1", "title": "Who Are These Bunch of Oiks?", "text": "", "album_id": "563409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24554557_d64d06cdf2_o.jpg", "secret": "d64d06cdf2", "media": "photo", "latitude": "0", "id": "24554557", "tags": "barney rew dave bounce steve butts mark nutty sarah sez tanya birthday 30th"}, {"datetaken": "2005-05-14 03:31:32", "license": "1", "title": "Who's Feeling Pleased with Themself Then!", "text": "", "album_id": "563409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24554575_ae46781f43_o.jpg", "secret": "ae46781f43", "media": "photo", "latitude": "0", "id": "24554575", "tags": "sister tanya birthday 30th cake"}, {"datetaken": "2005-05-14 03:31:42", "license": "1", "title": "Nice Barnet", "text": "", "album_id": "563409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24554585_debd0abd9f_o.jpg", "secret": "debd0abd9f", "media": "photo", "latitude": "0", "id": "24554585", "tags": "hair sister tanya birthday 30th"}, {"datetaken": "2005-05-14 03:32:47", "license": "1", "title": "Tanya's Birthday Cake", "text": "", "album_id": "563409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24554592_7806a6ce65_o.jpg", "secret": "7806a6ce65", "media": "photo", "latitude": "0", "id": "24554592", "tags": "sister tanya cake birthday 30th"}, {"datetaken": "2005-05-14 03:32:53", "license": "1", "title": "Knife Wielding Hussy in Mauve Threatens Cake", "text": "", "album_id": "563409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24553733_f598ad40d7_o.jpg", "secret": "f598ad40d7", "media": "photo", "latitude": "0", "id": "24553733", "tags": "cake sister family birthday"}, {"datetaken": "2005-05-14 03:33:12", "license": "1", "title": "Tanya Cuts Cake", "text": "", "album_id": "563409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24553740_048ade497d_o.jpg", "secret": "048ade497d", "media": "photo", "latitude": "0", "id": "24553740", "tags": "cake sister family birthday"}, {"datetaken": "2005-05-14 03:33:24", "license": "1", "title": "Tanya's Birthday Cake", "text": "", "album_id": "563409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24553754_bd21ff0def_o.jpg", "secret": "bd21ff0def", "media": "photo", "latitude": "0", "id": "24553754", "tags": "birthday cake"}, {"datetaken": "2005-05-14 03:33:31", "license": "1", "title": "Nice Dress", "text": "", "album_id": "563409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24553766_7ab5ac9ad6_o.jpg", "secret": "7ab5ac9ad6", "media": "photo", "latitude": "0", "id": "24553766", "tags": "sister family"}, {"datetaken": "2005-05-14 03:34:51", "license": "1", "title": "Steve Butler", "text": "", "album_id": "563409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24553770_5c85dd3b68_o.jpg", "secret": "5c85dd3b68", "media": "photo", "latitude": "0", "id": "24553770", "tags": "friends sister family birthday"}, {"datetaken": "2005-05-14 03:34:58", "license": "1", "title": "Friends at Sister's Birthday", "text": "", "album_id": "563409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24553782_ee758a2531_o.jpg", "secret": "ee758a2531", "media": "photo", "latitude": "0", "id": "24553782", "tags": "friends sister family birthday"}, {"datetaken": "2005-05-14 03:35:08", "license": "1", "title": "Sarah and Steve", "text": "", "album_id": "563409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24553794_902ce90042_o.jpg", "secret": "902ce90042", "media": "photo", "latitude": "0", "id": "24553794", "tags": "friends sister family birthday"}, {"datetaken": "2005-05-14 03:35:22", "license": "1", "title": "Barney and Mrs Dance", "text": "", "album_id": "563409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24553804_8b2aa08c03_o.jpg", "secret": "8b2aa08c03", "media": "photo", "latitude": "0", "id": "24553804", "tags": "friends sister family birthday 30th"}, {"datetaken": "2005-05-14 03:50:48", "license": "1", "title": "Boys Will be Boys", "text": "", "album_id": "563409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24553815_c2853ee7b9_o.jpg", "secret": "c2853ee7b9", "media": "photo", "latitude": "0", "id": "24553815", "tags": ""}, {"datetaken": "2005-05-14 04:01:01", "license": "1", "title": "DJ Tim goes Up In Smoke!", "text": "", "album_id": "563409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24553816_34905c52c5_o.jpg", "secret": "34905c52c5", "media": "photo", "latitude": "0", "id": "24553816", "tags": "birthday 30th tim"}, {"datetaken": "2005-05-14 04:28:23", "license": "1", "title": "Spex Trys his Charms on Tanya", "text": "", "album_id": "563409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24553840_671cc33f6c_o.jpg", "secret": "671cc33f6c", "media": "photo", "latitude": "0", "id": "24553840", "tags": "bar birthday 30th tanya spex darren"}, {"datetaken": "2010-03-10 15:03:32", "license": "2", "title": "Manu Gaga II", "text": "", "album_id": "72157623600718190", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4422856537_355f23665a_o.jpg", "secret": "6c7cc8dff8", "media": "photo", "latitude": "0", "id": "4422856537", "tags": "portrait pose hair rouge costume retrato makeup double ring jewellery rings wig crossprocessing disfraz blonde rubia lipstick posture blondie pelo anillos eyeliner doble anillo lookalike maquillaje peluca joyas rimmel delineador handas ladygaga"}, {"datetaken": "2010-03-10 15:06:04", "license": "2", "title": "Manu Gaga V", "text": "", "album_id": "72157623600718190", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4422851129_56c0203744_o.jpg", "secret": "721ccbe818", "media": "photo", "latitude": "0", "id": "4422851129", "tags": "portrait bw pose rouge costume retrato grain makeup double bn ring jewellery rings wig disfraz blonde rubia lipstick posture grainy blondie anillos eyeliner doble anillo lookalike grano maquillaje peluca joyas fauxfilm rimmel delineador handas ladygaga"}, {"datetaken": "2010-03-10 15:06:26", "license": "2", "title": "Manu Gaga VI", "text": "", "album_id": "72157623600718190", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4424621787_6ee9932690_o.jpg", "secret": "8f4e3d69f3", "media": "photo", "latitude": "0", "id": "4424621787", "tags": "portrait blackandwhite bw woman byn blancoynegro mujer erotic retrato bn sensual disfraz lipstick posture sensuality greys grises sensualidad erotico postprocessing postproducci\u00f3n ladygaga"}, {"datetaken": "2010-03-10 15:08:34", "license": "2", "title": "Manu Gaga", "text": "", "album_id": "72157623600718190", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4422858003_3241661b2a_o.jpg", "secret": "f4dda0a9c9", "media": "photo", "latitude": "0", "id": "4422858003", "tags": "portrait pose hair rouge costume retrato makeup double ring jewellery rings wig crossprocessing disfraz blonde rubia lipstick posture blondie pelo anillos eyeliner doble anillo lookalike maquillaje peluca joyas rimmel delineador handas ladygaga unlimitedphotos"}, {"datetaken": "2010-03-10 15:09:39", "license": "2", "title": "Manu Gaga VIII", "text": "", "album_id": "72157623600718190", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2716/4424624063_818c80d6ea_o.jpg", "secret": "e577116b31", "media": "photo", "latitude": "0", "id": "4424624063", "tags": "chile portrait woman verde green rouge mujer retrato profile wig crossprocessing microphone lipstick mic microfono divertido greenverde unlimitedphotos"}, {"datetaken": "2010-03-10 15:13:15", "license": "2", "title": "Manu Gaga III", "text": "", "album_id": "72157623600718190", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4423618832_c7c1393839_o.jpg", "secret": "7c6181bc6f", "media": "photo", "latitude": "0", "id": "4423618832", "tags": "portrait pose hair rouge costume retrato makeup double ring jewellery rings wig crossprocessing disfraz blonde rubia microphone lipstick posture mic blondie showerhead pelo anillos eyeliner doble anillo microfono lookalike maquillaje peluca joyas rimmel delineador handas 1on1photooftheweek ladygaga 1on1photooftheweekmarch2010"}, {"datetaken": "2010-03-10 15:17:44", "license": "2", "title": "Manu Gaga and Bowie", "text": "", "album_id": "72157623600718190", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4422859573_f4d69d052a_o.jpg", "secret": "924b59b2c7", "media": "photo", "latitude": "0", "id": "4422859573", "tags": "portrait dog pose hair rouge happy costume perfil retrato profile joy makeup double ring jewellery mascot perro rings wig crossprocessing disfraz blonde rubia lengua tounge lipstick posture feliz blondie mascota pelo anillos eyeliner doble anillo lookalike maquillaje peluca joyas contento rimmel delineador handas ladygaga"}, {"datetaken": "2010-03-10 15:23:11", "license": "2", "title": "Manu Gaga VII", "text": "", "album_id": "72157623600718190", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/4425389456_4de4a5ef70_o.jpg", "secret": "7b576d75b2", "media": "photo", "latitude": "0", "id": "4425389456", "tags": "chile portrait woman color colour glass mujer funny colorful retrato wig crossprocessing posture colourful colorida peluca postprocessing postproducci\u00f3n ladygaga unlimitedphotos"}, {"datetaken": "2010-03-10 15:23:17", "license": "2", "title": "Manu Gaga IV", "text": "", "album_id": "72157623600718190", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4423617530_c45b3d72e6_o.jpg", "secret": "b7a77837a4", "media": "photo", "latitude": "0", "id": "4423617530", "tags": "portrait glass pose hair rouge costume blurry retrato makeup double ring jewellery rings wig crossprocessing disfraz blonde rubia lipstick posture blondie 34 vidrio pelo anillos eyeliner doble anillo lookalike maquillaje peluca joyas borroso rimmel delineador handas ladygaga"}, {"datetaken": "2010-03-10 15:24:20", "license": "2", "title": "Manu Gaga IX", "text": "", "album_id": "72157623600718190", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4425391214_0e50e53c62_o.jpg", "secret": "8b28e13602", "media": "photo", "latitude": "0", "id": "4425391214", "tags": "chile portrait woman color colour glass mujer colorful retrato wig disfraz colourful 34 vidrio colorida peluca ladygaga unlimitedphotos"}, {"datetaken": "2006-05-30 21:06:09", "license": "3", "title": "Tom's 36th Birthday 2006", "text": "", "album_id": "72157623189816622", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4266867996_1f2e36f075_o.jpg", "secret": "a38053429d", "media": "photo", "latitude": "0", "id": "4266867996", "tags": "birthday"}, {"datetaken": "2006-05-30 21:08:02", "license": "3", "title": "Tom's 36th Birthday 2006", "text": "", "album_id": "72157623189816622", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4266869686_cd3bbc842e_o.jpg", "secret": "77bdf0b7bf", "media": "photo", "latitude": "0", "id": "4266869686", "tags": "birthday"}, {"datetaken": "2006-05-30 21:08:09", "license": "3", "title": "Tom's 36th Birthday 2006", "text": "", "album_id": "72157623189816622", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4266123953_92788d029e_o.jpg", "secret": "ca34776712", "media": "photo", "latitude": "0", "id": "4266123953", "tags": "birthday"}, {"datetaken": "2006-05-30 21:08:25", "license": "3", "title": "Tom's 36th Birthday 2006", "text": "", "album_id": "72157623189816622", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4266125647_905be1e140_o.jpg", "secret": "0bbf7c6622", "media": "photo", "latitude": "0", "id": "4266125647", "tags": "birthday"}, {"datetaken": "2006-05-30 21:08:33", "license": "3", "title": "Tom's 36th Birthday 2006", "text": "", "album_id": "72157623189816622", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4266874522_737c0f37d8_o.jpg", "secret": "1219df2f9a", "media": "photo", "latitude": "0", "id": "4266874522", "tags": "birthday"}, {"datetaken": "2006-05-30 21:08:49", "license": "3", "title": "Tom's 36th Birthday 2006", "text": "", "album_id": "72157623189816622", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4266129055_56f4b8fc33_o.jpg", "secret": "2628af3f51", "media": "photo", "latitude": "0", "id": "4266129055", "tags": "birthday"}, {"datetaken": "2006-05-30 21:09:52", "license": "3", "title": "Tom's 36th Birthday 2006", "text": "", "album_id": "72157623189816622", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4266878022_7849a97a27_o.jpg", "secret": "169199fe04", "media": "photo", "latitude": "0", "id": "4266878022", "tags": "birthday"}, {"datetaken": "2006-05-30 21:09:59", "license": "3", "title": "Tom's 36th Birthday 2006", "text": "", "album_id": "72157623189816622", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2773/4266879808_b1a2a19995_o.jpg", "secret": "5cc37760b3", "media": "photo", "latitude": "0", "id": "4266879808", "tags": "birthday"}, {"datetaken": "2006-05-30 21:13:04", "license": "3", "title": "Tom's 36th Birthday 2006", "text": "", "album_id": "72157623189816622", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4266134685_e2c65264af_o.jpg", "secret": "e233670b05", "media": "photo", "latitude": "0", "id": "4266134685", "tags": "birthday"}, {"datetaken": "2006-05-30 21:13:22", "license": "3", "title": "Tom's 36th Birthday 2006", "text": "", "album_id": "72157623189816622", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2743/4266884078_5bdcda41f9_o.jpg", "secret": "491bce6fcd", "media": "photo", "latitude": "0", "id": "4266884078", "tags": "birthday"}, {"datetaken": "2008-12-31 09:21:23", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4267573516_1db9bf1374_o.jpg", "secret": "b08fbd5a20", "media": "photo", "latitude": "0", "id": "4267573516", "tags": "birthday"}, {"datetaken": "2008-12-31 09:21:52", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4266829613_8ac165a052_o.jpg", "secret": "a995c5d203", "media": "photo", "latitude": "0", "id": "4266829613", "tags": "birthday"}, {"datetaken": "2008-12-31 09:22:39", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2454/4266831449_f248763023_o.jpg", "secret": "f7f1e1b4fb", "media": "photo", "latitude": "0", "id": "4266831449", "tags": "birthday"}, {"datetaken": "2008-12-31 09:23:34", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4266833903_20c1d56911_o.jpg", "secret": "08e30e4ef8", "media": "photo", "latitude": "0", "id": "4266833903", "tags": "birthday"}, {"datetaken": "2008-12-31 09:23:51", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4267579936_2e1c00442b_o.jpg", "secret": "d915643a20", "media": "photo", "latitude": "0", "id": "4267579936", "tags": "birthday"}, {"datetaken": "2008-12-31 09:23:51", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4266834715_9e5b46409e_o.jpg", "secret": "a6ce7b1f96", "media": "photo", "latitude": "0", "id": "4266834715", "tags": "birthday"}, {"datetaken": "2008-12-31 09:30:28", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4267571866_5ebf14a96e_o.jpg", "secret": "1d53b7de34", "media": "photo", "latitude": "0", "id": "4267571866", "tags": "birthday"}, {"datetaken": "2008-12-31 09:30:28", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4267580112_bff7844944_o.jpg", "secret": "1f6d723ee6", "media": "photo", "latitude": "0", "id": "4267580112", "tags": "birthday"}, {"datetaken": "2008-12-31 09:30:28", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4266834391_4b5c12916c_o.jpg", "secret": "4ca22db3a1", "media": "photo", "latitude": "0", "id": "4266834391", "tags": "birthday"}, {"datetaken": "2008-12-31 22:21:07", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4266835447_e4462ac500_o.jpg", "secret": "59cb59a1b7", "media": "photo", "latitude": "0", "id": "4266835447", "tags": "birthday"}, {"datetaken": "2008-12-31 22:23:00", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4266836701_1ed515a151_o.jpg", "secret": "73a6f6eae9", "media": "photo", "latitude": "0", "id": "4266836701", "tags": "birthday"}, {"datetaken": "2008-12-31 22:33:21", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4266837721_09db7c46dd_o.jpg", "secret": "930df06373", "media": "photo", "latitude": "0", "id": "4266837721", "tags": "birthday"}, {"datetaken": "2008-12-31 22:33:31", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4267584870_cba8ac4b57_o.jpg", "secret": "901b21f828", "media": "photo", "latitude": "0", "id": "4267584870", "tags": "birthday"}, {"datetaken": "2008-12-31 22:33:49", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2685/4267586278_fbcb0a680b_o.jpg", "secret": "0e018fb245", "media": "photo", "latitude": "0", "id": "4267586278", "tags": "birthday"}, {"datetaken": "2008-12-31 22:33:57", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4267587528_7f339cb336_o.jpg", "secret": "4700d926c7", "media": "photo", "latitude": "0", "id": "4267587528", "tags": "birthday"}, {"datetaken": "2008-12-31 22:34:22", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4266843237_3fb15e9e39_o.jpg", "secret": "1dca97ecd7", "media": "photo", "latitude": "0", "id": "4266843237", "tags": "birthday"}, {"datetaken": "2008-12-31 22:34:47", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4267590742_efd9a17e88_o.jpg", "secret": "7a4607e87b", "media": "photo", "latitude": "0", "id": "4267590742", "tags": "birthday"}, {"datetaken": "2008-12-31 22:35:02", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4267592306_1415c1e33a_o.jpg", "secret": "ed1f297ced", "media": "photo", "latitude": "0", "id": "4267592306", "tags": "birthday"}, {"datetaken": "2008-12-31 22:35:17", "license": "3", "title": "Richard's 18th Birthday 2008", "text": "", "album_id": "72157623191664192", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4267593850_bd93b957b1_o.jpg", "secret": "8b36a231ff", "media": "photo", "latitude": "0", "id": "4267593850", "tags": "birthday"}, {"datetaken": "2010-01-24 18:44:46", "license": "3", "title": "Herhik, Fini, Upi, Roy, Mei & Tanto", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4350435671_c5a2abaa66_o.jpg", "secret": "5d9f7d7b73", "media": "photo", "latitude": "0", "id": "4350435671", "tags": "friends best my"}, {"datetaken": "2010-01-24 18:44:56", "license": "3", "title": "Roy & Mei", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4350437719_5f4edce61d_o.jpg", "secret": "6a8bc16489", "media": "photo", "latitude": "0", "id": "4350437719", "tags": "friends best my"}, {"datetaken": "2010-01-24 18:45:45", "license": "3", "title": "Roy, Mei, Tanto, Yus, Ricky, Mas Tata, Herhik, Fini & Upi", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4350436695_474a346f67_o.jpg", "secret": "42815bd309", "media": "photo", "latitude": "0", "id": "4350436695", "tags": "friends best my"}, {"datetaken": "2010-01-24 18:46:03", "license": "3", "title": "Tanto, Yusrila & Ricky (again)", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4351184766_995bff06be_o.jpg", "secret": "bd2a71b6c1", "media": "photo", "latitude": "0", "id": "4351184766", "tags": "friends best my"}, {"datetaken": "2010-01-24 18:48:21", "license": "3", "title": "Fini", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4350439643_06519d0122_o.jpg", "secret": "bb7ef646ec", "media": "photo", "latitude": "0", "id": "4350439643", "tags": "friends best my"}, {"datetaken": "2010-01-24 19:13:36", "license": "3", "title": "Pizza for birthday boy", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4351186578_69fc3bfda2_o.jpg", "secret": "edafe57668", "media": "photo", "latitude": "0", "id": "4351186578", "tags": "friends best my"}, {"datetaken": "2010-01-24 19:21:54", "license": "3", "title": "Calamari... nyam nyam..", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4351186968_eb8d2e09cb_o.jpg", "secret": "cbf8a30c7e", "media": "photo", "latitude": "0", "id": "4351186968", "tags": "friends best my"}, {"datetaken": "2010-01-24 19:42:49", "license": "3", "title": "The light is yours..", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2677/4351187350_47267593b0_o.jpg", "secret": "b3a7a08885", "media": "photo", "latitude": "0", "id": "4351187350", "tags": "friends best my"}, {"datetaken": "2010-01-24 19:43:17", "license": "3", "title": "Blew the candles", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4351187772_b7714f0668_o.jpg", "secret": "61215240e5", "media": "photo", "latitude": "0", "id": "4351187772", "tags": "friends best my"}, {"datetaken": "2010-01-24 19:43:20", "license": "3", "title": "yeahhh...", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4351188088_8d7341c37a_o.jpg", "secret": "ce753ea5cd", "media": "photo", "latitude": "0", "id": "4351188088", "tags": "friends best my"}, {"datetaken": "2010-01-24 19:43:28", "license": "3", "title": "The tits is yours..", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4351188330_545998e74b_o.jpg", "secret": "f82f6e67df", "media": "photo", "latitude": "0", "id": "4351188330", "tags": "friends best my"}, {"datetaken": "2010-01-24 19:43:56", "license": "3", "title": "Yusrila, Ricky & Roy", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4350442335_eab8e98365_o.jpg", "secret": "17cb577d47", "media": "photo", "latitude": "0", "id": "4350442335", "tags": "friends best my"}, {"datetaken": "2010-01-24 19:44:23", "license": "3", "title": "Yusrila & Ricky", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4351189028_8bb023d3be_o.jpg", "secret": "deef26dabc", "media": "photo", "latitude": "0", "id": "4351189028", "tags": "friends best my"}, {"datetaken": "2010-01-24 19:56:26", "license": "3", "title": "Stawberry Ice Cream", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2742/4351189398_93a1bbf606_o.jpg", "secret": "a62dca6fbc", "media": "photo", "latitude": "0", "id": "4351189398", "tags": "friends best my"}, {"datetaken": "2010-01-24 19:57:08", "license": "3", "title": "Fini & Mei", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4351189734_7b9172d0c7_o.jpg", "secret": "b61ab646ff", "media": "photo", "latitude": "0", "id": "4351189734", "tags": "friends best my"}, {"datetaken": "2010-01-24 19:57:32", "license": "3", "title": "Tanto & Yusrila", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4350443801_6d1b98ae5e_o.jpg", "secret": "c47b7dfe17", "media": "photo", "latitude": "0", "id": "4350443801", "tags": "friends best my"}, {"datetaken": "2010-01-24 19:57:52", "license": "3", "title": "Mei & Tanto", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4350444207_7db56bc26c_o.jpg", "secret": "3d22eceeee", "media": "photo", "latitude": "0", "id": "4350444207", "tags": "friends best my"}, {"datetaken": "2010-01-24 19:57:56", "license": "3", "title": "Mei & Tanto", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4350444737_3850a07cfb_o.jpg", "secret": "d811357fdf", "media": "photo", "latitude": "0", "id": "4350444737", "tags": "friends best my"}, {"datetaken": "2010-01-24 20:19:22", "license": "3", "title": "He's 36 years old, now :D", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2683/4351191362_5b99460da0_o.jpg", "secret": "02d7b79b99", "media": "photo", "latitude": "0", "id": "4351191362", "tags": "friends best my"}, {"datetaken": "2010-01-24 21:12:28", "license": "3", "title": "Roy & Mei", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4350445689_f971cffc9f_o.jpg", "secret": "7e7855da06", "media": "photo", "latitude": "0", "id": "4350445689", "tags": "friends best my"}, {"datetaken": "2010-01-24 21:12:42", "license": "3", "title": "Roy Mei", "text": "", "album_id": "72157623417353008", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4350445417_9926250794_o.jpg", "secret": "f79cb59c8e", "media": "photo", "latitude": "0", "id": "4350445417", "tags": "friends best my"}, {"datetaken": "2010-03-03 18:41:31", "license": "2", "title": "good listener", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4427593237_972d0820de_o.jpg", "secret": "064947e5d7", "media": "photo", "latitude": "0", "id": "4427593237", "tags": "nyc podcast newyork live soho event slate oneup housingworks slatemagazine slatepoliticalgabfest"}, {"datetaken": "2010-03-03 18:44:26", "license": "2", "title": "advise and consent", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4427593419_fd7f9a7242_o.jpg", "secret": "24f667bf3d", "media": "photo", "latitude": "0", "id": "4427593419", "tags": "nyc podcast newyork other live soho event slate housingworks slatemagazine slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 18:47:14", "license": "2", "title": "bigwigs", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2788/4428359704_dfb86755eb_o.jpg", "secret": "fd72c21846", "media": "photo", "latitude": "0", "id": "4428359704", "tags": "nyc podcast newyork live soho event slate housingworks slatemagazine threeup slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 18:47:37", "license": "2", "title": "warm-up", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4427593611_9d9afd7b10_o.jpg", "secret": "0a415132c4", "media": "photo", "latitude": "0", "id": "4427593611", "tags": "nyc podcast newyork live soho event slate housingworks slatemagazine threeup slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 18:47:43", "license": "2", "title": "warm-up", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4427593699_323be3f86c_o.jpg", "secret": "7e54a7246b", "media": "photo", "latitude": "0", "id": "4427593699", "tags": "nyc podcast newyork live soho event slate housingworks slatemagazine threeup slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 18:51:58", "license": "2", "title": "the gathered crowd", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2755/4428359956_a9bdf82030_o.jpg", "secret": "d5d835d761", "media": "photo", "latitude": "0", "id": "4428359956", "tags": "nyc podcast newyork other live soho event slate housingworks slatemagazine slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 18:59:16", "license": "2", "title": "early arrivals", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4427593971_4128645189_o.jpg", "secret": "132837014c", "media": "photo", "latitude": "0", "id": "4427593971", "tags": "nyc podcast newyork other live soho event slate housingworks slatemagazine slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 19:13:13", "license": "2", "title": "the culturefest", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4428360306_7deb5cd3fa_o.jpg", "secret": "8705a5a723", "media": "photo", "latitude": "0", "id": "4428360306", "tags": "nyc podcast newyork live soho event slate housingworks slatemagazine juliaturner slatepoliticalgabfest politicalgabfest danastevens"}, {"datetaken": "2010-03-03 19:23:07", "license": "2", "title": "ahem", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4427596701_2c4d6dbcde_o.jpg", "secret": "73f22eda82", "media": "photo", "latitude": "0", "id": "4427596701", "tags": "nyc podcast newyork other live soho event slate housingworks slatemagazine slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 19:27:07", "license": "2", "title": "761mph", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4428360446_0972a511eb_o.jpg", "secret": "edcb0d3443", "media": "photo", "latitude": "0", "id": "4428360446", "tags": "nyc podcast newyork live soho event slate housingworks slatemagazine threeup slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 19:31:34", "license": "2", "title": "ms. turner", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4428360526_56c75d2b31_o.jpg", "secret": "829b5a55e1", "media": "photo", "latitude": "0", "id": "4428360526", "tags": "nyc podcast newyork live soho event slate housingworks slatemagazine juliaturner slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 19:34:07", "license": "2", "title": "introductions", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4428360756_42f380b759_o.jpg", "secret": "dbb389079b", "media": "photo", "latitude": "0", "id": "4428360756", "tags": "nyc podcast newyork live soho event slate housingworks slatemagazine threeup slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 19:34:19", "license": "2", "title": "wry", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4427594721_b90dd6732a_o.jpg", "secret": "20f13ba3c3", "media": "photo", "latitude": "0", "id": "4427594721", "tags": "nyc podcast newyork live soho event slate housingworks slatemagazine threeup slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 19:39:10", "license": "2", "title": "hushed", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4427596959_4e44f160ce_o.jpg", "secret": "63797ce120", "media": "photo", "latitude": "0", "id": "4427596959", "tags": "nyc podcast newyork live soho event slate housingworks slatemagazine threeup slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 19:42:01", "license": "2", "title": "in the rafters", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4428360990_22a756cd00_o.jpg", "secret": "a8a890872c", "media": "photo", "latitude": "0", "id": "4428360990", "tags": "nyc podcast newyork other live soho event slate housingworks slatemagazine slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 19:51:14", "license": "2", "title": "ganging up", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4428362902_83dec8da93_o.jpg", "secret": "db2dfe928e", "media": "photo", "latitude": "0", "id": "4428362902", "tags": "nyc podcast newyork live soho event slate housingworks slatemagazine threeup slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 20:01:38", "license": "2", "title": "yalie", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2778/4427595283_84b2ec8d3e_o.jpg", "secret": "cfbf5f9738", "media": "photo", "latitude": "0", "id": "4427595283", "tags": "nyc podcast newyork live soho event slate housingworks slatemagazine threeup slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 20:06:05", "license": "2", "title": "ms. bazelon", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4427596757_5fa539d742_o.jpg", "secret": "a8cb2f45ae", "media": "photo", "latitude": "0", "id": "4427596757", "tags": "nyc podcast newyork live soho event slate oneup housingworks slatemagazine slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 20:06:55", "license": "2", "title": "cheers", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2695/4427595441_fd127c3c61_o.jpg", "secret": "6c0007d4fc", "media": "photo", "latitude": "0", "id": "4427595441", "tags": "nyc podcast newyork live soho event slate housingworks slatemagazine threeup slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 20:08:27", "license": "2", "title": "the gabfest drinking game", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4427595533_74b9c6bcef_o.jpg", "secret": "9e9733f3cf", "media": "photo", "latitude": "0", "id": "4427595533", "tags": "nyc podcast newyork other live soho event slate housingworks slatemagazine slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 20:12:14", "license": "2", "title": "surreptitious", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4427595583_31986d5e39_o.jpg", "secret": "3ea10a8331", "media": "photo", "latitude": "0", "id": "4427595583", "tags": "nyc podcast newyork other live soho event slate housingworks slatemagazine slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 20:16:51", "license": "2", "title": "too much", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4428361640_39945e3fd2_o.jpg", "secret": "a8abc46c79", "media": "photo", "latitude": "0", "id": "4428361640", "tags": "nyc podcast newyork live soho event slate housingworks slatemagazine threeup slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 20:18:57", "license": "2", "title": "dana", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4428361858_c8d17c24d6_o.jpg", "secret": "1bfd17085b", "media": "photo", "latitude": "0", "id": "4428361858", "tags": "nyc podcast newyork live soho event slate housingworks slatemagazine slatepoliticalgabfest politicalgabfest danastevens"}, {"datetaken": "2010-03-03 20:19:33", "license": "2", "title": "cultured", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4428362842_289f7bab64_o.jpg", "secret": "2e8b88477b", "media": "photo", "latitude": "0", "id": "4428362842", "tags": "nyc podcast newyork live soho event slate housingworks slaters slatemagazine juliaturner slatepoliticalgabfest politicalgabfest danastevens"}, {"datetaken": "2010-03-03 20:21:27", "license": "2", "title": "listeners", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4428362118_d5a4a3105f_o.jpg", "secret": "1f77d7f361", "media": "photo", "latitude": "0", "id": "4428362118", "tags": "nyc podcast newyork other live soho event slate housingworks slatemagazine slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 20:29:56", "license": "2", "title": "expectant", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4427596329_f4ef49fdec_o.jpg", "secret": "ea3c30384e", "media": "photo", "latitude": "0", "id": "4427596329", "tags": "nyc podcast newyork live soho event slate oneup housingworks slatemagazine slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 20:42:38", "license": "2", "title": "mr. weisberg", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2712/4428362428_f12feece26_o.jpg", "secret": "e0a531f6fc", "media": "photo", "latitude": "0", "id": "4428362428", "tags": "nyc podcast newyork live soho event slate housingworks slaters slatemagazine slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-03-03 20:43:21", "license": "2", "title": "mr. weisberg", "text": "", "album_id": "72157623608444838", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2770/4428362524_37336d3f90_o.jpg", "secret": "01c0fc32ec", "media": "photo", "latitude": "0", "id": "4428362524", "tags": "nyc podcast newyork live soho event slate housingworks slaters slatemagazine slatepoliticalgabfest politicalgabfest"}, {"datetaken": "2010-01-09 20:35:18", "license": "2", "title": "Pamela and Paulette", "text": "", "album_id": "72157623077743059", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4271806690_0a76d24c2f_o.jpg", "secret": "9352400086", "media": "photo", "latitude": "0", "id": "4271806690", "tags": ""}, {"datetaken": "2010-01-09 20:36:39", "license": "2", "title": "Pamela, Gregg, and Paulette", "text": "", "album_id": "72157623077743059", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4271062105_3a05ae6346_o.jpg", "secret": "0f0a01411c", "media": "photo", "latitude": "0", "id": "4271062105", "tags": ""}, {"datetaken": "2010-01-09 20:36:55", "license": "2", "title": "Pamela and Gregg", "text": "", "album_id": "72157623077743059", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4271807538_b42669f706_o.jpg", "secret": "17aa0997de", "media": "photo", "latitude": "0", "id": "4271807538", "tags": ""}, {"datetaken": "2010-01-09 20:40:18", "license": "2", "title": "Dan and Jake", "text": "", "album_id": "72157623077743059", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4271807918_fef2e51d10_o.jpg", "secret": "cb8f916734", "media": "photo", "latitude": "0", "id": "4271807918", "tags": "selfportrait dan"}, {"datetaken": "2010-01-09 20:41:20", "license": "2", "title": "Paulette and Gregg", "text": "", "album_id": "72157623077743059", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4271808306_1382a92789_o.jpg", "secret": "dfb8e1d12a", "media": "photo", "latitude": "0", "id": "4271808306", "tags": ""}, {"datetaken": "2010-01-09 20:41:41", "license": "2", "title": "Gregg and David", "text": "", "album_id": "72157623077743059", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4271063753_6130420ddd_o.jpg", "secret": "b1efe6bb62", "media": "photo", "latitude": "0", "id": "4271063753", "tags": ""}, {"datetaken": "2010-01-09 20:43:17", "license": "2", "title": "Scott and Jenn", "text": "", "album_id": "72157623077743059", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4271064269_eb947e3aa9_o.jpg", "secret": "a5497619bc", "media": "photo", "latitude": "0", "id": "4271064269", "tags": ""}, {"datetaken": "2010-01-09 20:43:34", "license": "2", "title": "Scott and Jenn", "text": "", "album_id": "72157623077743059", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4271064693_9a0caf61ed_o.jpg", "secret": "10864cffac", "media": "photo", "latitude": "0", "id": "4271064693", "tags": ""}, {"datetaken": "2010-01-09 20:44:31", "license": "2", "title": "Lupita and Jon", "text": "", "album_id": "72157623077743059", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4271810024_2382d3f892_o.jpg", "secret": "98c06583c5", "media": "photo", "latitude": "0", "id": "4271810024", "tags": ""}, {"datetaken": "2010-01-09 20:44:54", "license": "2", "title": "Dan and Rose", "text": "", "album_id": "72157623077743059", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2804/4271810446_1d77d61505_o.jpg", "secret": "e04585f4e9", "media": "photo", "latitude": "0", "id": "4271810446", "tags": "dan"}, {"datetaken": "2010-01-09 20:49:02", "license": "2", "title": "Sara, Dan, Lyn, and Jenn", "text": "", "album_id": "72157623077743059", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4271066033_93411d19a6_o.jpg", "secret": "261b0e6e99", "media": "photo", "latitude": "0", "id": "4271066033", "tags": "dan"}, {"datetaken": "2010-01-09 20:49:33", "license": "2", "title": "Lyn and Jenn", "text": "", "album_id": "72157623077743059", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4271066285_0512a7f82c_o.jpg", "secret": "05548d121d", "media": "photo", "latitude": "0", "id": "4271066285", "tags": ""}, {"datetaken": "2010-01-09 21:00:32", "license": "2", "title": "Kristen, Allyson, and Lisa", "text": "", "album_id": "72157623077743059", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4271066657_d11dbb3669_o.jpg", "secret": "4c00a099e7", "media": "photo", "latitude": "0", "id": "4271066657", "tags": ""}, {"datetaken": "2010-01-12 15:55:27", "license": "3", "title": "Birthday drawing for Dad", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2695/4269252563_664e52cb14_o.jpg", "secret": "029bf14521", "media": "photo", "latitude": "0", "id": "4269252563", "tags": "birthday art ava for dad drawing mybirthday avaart 11210"}, {"datetaken": "2010-01-12 15:55:33", "license": "3", "title": "Red Velvet Birthday Cake Yum!", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4269255095_70a7a385cb_o.jpg", "secret": "1f38920eb2", "media": "photo", "latitude": "0", "id": "4269255095", "tags": "birthday cake candle mybirthday redvelvet 11210"}, {"datetaken": "2010-01-12 17:42:43", "license": "3", "title": "Fred Gates", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4270782992_cd35104fdf_o.jpg", "secret": "cedc2be846", "media": "photo", "latitude": "0", "id": "4270782992", "tags": "birthday nyc newyork brooklyn dumbo manhattanbridge mybirthday lectures aiga theonethatgotaway lectureseries galapagosartspace aigany 11210 aiganewyork"}, {"datetaken": "2010-01-12 17:43:13", "license": "3", "title": "Fred Gates in DUMBO", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2701/4270038093_3c38485bdc_o.jpg", "secret": "74e12d90b9", "media": "photo", "latitude": "0", "id": "4270038093", "tags": "birthday nyc newyork brooklyn dumbo manhattanbridge mybirthday lectures aiga theonethatgotaway lectureseries galapagosartspace aigany 11210 aiganewyork"}, {"datetaken": "2010-01-12 17:44:55", "license": "3", "title": "Fred Gates", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2773/4270039305_710ffe1427_o.jpg", "secret": "cff9fb5898", "media": "photo", "latitude": "0", "id": "4270039305", "tags": "birthday nyc newyork brooklyn dumbo manhattanbridge mybirthday lectures aiga theonethatgotaway lectureseries galapagosartspace aigany 11210 aiganewyork"}, {"datetaken": "2010-01-12 18:05:50", "license": "3", "title": "Fred Gates", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4270039497_06a9a2ea65_o.jpg", "secret": "c65b33d66d", "media": "photo", "latitude": "0", "id": "4270039497", "tags": "birthday nyc newyork brooklyn dumbo manhattanbridge mybirthday lectures aiga theonethatgotaway lectureseries galapagosartspace aigany 11210 aiganewyork"}, {"datetaken": "2010-01-12 18:06:06", "license": "3", "title": "Carin Goldberg", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4270785668_bd18561777_o.jpg", "secret": "df92978537", "media": "photo", "latitude": "0", "id": "4270785668", "tags": "birthday nyc newyork brooklyn dumbo manhattanbridge mybirthday lectures aiga theonethatgotaway lectureseries galapagosartspace aigany 11210 aiganewyork"}, {"datetaken": "2010-01-12 18:06:34", "license": "2", "title": "Fred and Jeffrey", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4270785890_16d68684a7_o.jpg", "secret": "688b99dc9c", "media": "photo", "latitude": "0", "id": "4270785890", "tags": "life birthday nyc newyork history brooklyn dumbo bio manhattanbridge past mybirthday biography mylife lectures aiga zeldman jeffreyzeldman theonethatgotaway outofthepast lifestory lectureseries galapagosartspace aigany mylifeinpictures 11210 aiganewyork"}, {"datetaken": "2010-01-12 18:07:29", "license": "3", "title": "Jason and Mike", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4270044037_0847e50c25_o.jpg", "secret": "f256e188ee", "media": "photo", "latitude": "0", "id": "4270044037", "tags": "birthday nyc newyork brooklyn dumbo manhattanbridge mybirthday lectures aiga theonethatgotaway ipitythefool lectureseries galapagosartspace aigany 11210 aiganewyork"}, {"datetaken": "2010-01-12 18:08:56", "license": "3", "title": "Mia Eaton", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4270788204_20bfc0e0c6_o.jpg", "secret": "317bb6c3ff", "media": "photo", "latitude": "0", "id": "4270788204", "tags": "birthday nyc newyork brooklyn dumbo manhattanbridge mybirthday lectures aiga theonethatgotaway lectureseries galapagosartspace aigany 11210 aiganewyork"}, {"datetaken": "2010-01-12 18:09:19", "license": "3", "title": "Jason Santa Maria, Mike Essl, Mia Eaton", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4270045107_7954c73a4d_o.jpg", "secret": "9c63588043", "media": "photo", "latitude": "0", "id": "4270045107", "tags": "birthday nyc newyork brooklyn dumbo manhattanbridge mybirthday lectures aiga theonethatgotaway ipitythefool lectureseries galapagosartspace aigany 11210 aiganewyork"}, {"datetaken": "2010-01-12 18:10:12", "license": "3", "title": "Jason Santa Maria, Mike Essl, Mia Eaton", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4270047597_68e9d5b51c_o.jpg", "secret": "cb3b40db14", "media": "photo", "latitude": "0", "id": "4270047597", "tags": "birthday nyc newyork brooklyn dumbo manhattanbridge mybirthday lectures aiga theonethatgotaway ipitythefool lectureseries galapagosartspace aigany 11210 aiganewyork"}, {"datetaken": "2010-01-12 18:11:26", "license": "3", "title": "Jason Santa Maria and Mike Essl", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4270047779_ca28f61040_o.jpg", "secret": "d62ffde429", "media": "photo", "latitude": "0", "id": "4270047779", "tags": "birthday nyc newyork brooklyn dumbo manhattanbridge mybirthday lectures aiga theonethatgotaway ipitythefool lectureseries galapagosartspace aigany 11210 aiganewyork"}, {"datetaken": "2010-01-12 18:11:33", "license": "3", "title": "Galapagos Art Space", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4270048057_f32ca28b4c_o.jpg", "secret": "38d2c4a07e", "media": "photo", "latitude": "0", "id": "4270048057", "tags": "birthday nyc newyork brooklyn dumbo manhattanbridge mybirthday lectures aiga theonethatgotaway lectureseries galapagosartspace aigany 11210 aiganewyork"}, {"datetaken": "2010-01-12 19:39:44", "license": "3", "title": "Crowd at Galapagos Art Space sings happy birthday to me", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4269782429_2fd84d74d2_o.jpg", "secret": "aa8661a85b", "media": "photo", "latitude": "0", "id": "4269782429", "tags": "birthday nyc newyork brooklyn dumbo manhattanbridge mybirthday lectures aiga theonethatgotaway lectureseries galapagosartspace aigany 11210 aiganewyork"}, {"datetaken": "2010-01-12 19:58:04", "license": "3", "title": "Carin Goldberg at Galapagos Space", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4270501384_29eac594a2_o.jpg", "secret": "73f95cb22b", "media": "photo", "latitude": "0", "id": "4270501384", "tags": "birthday nyc newyork brooklyn dumbo manhattanbridge mybirthday lectures aiga theonethatgotaway lectureseries galapagosartspace aigany 11210 aiganewyork"}, {"datetaken": "2010-01-12 21:00:04", "license": "3", "title": "David Sleight", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4270788426_88482065c3_o.jpg", "secret": "4e0996f6dd", "media": "photo", "latitude": "0", "id": "4270788426", "tags": "birthday nyc newyork brooklyn dumbo manhattanbridge mybirthday lectures aiga theonethatgotaway lectureseries galapagosartspace aigany 11210 aiganewyork"}, {"datetaken": "2010-01-12 21:31:11", "license": "3", "title": "Chris Casciano in the subway", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4270741008_fb20baecc0_o.jpg", "secret": "4f73496a46", "media": "photo", "latitude": "0", "id": "4270741008", "tags": "brooklyn subway manhattan 34thstreet broadway dumbo developer f webstandards ftrain 7thavenue 8thavenue coder webstandardsorg chriscasciano yourcssboresme"}, {"datetaken": "2010-01-13 14:22:05", "license": "3", "title": "Onstage by Onno de Jong", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4272383378_ea30cb13dd_o.jpg", "secret": "a5f2efe385", "media": "photo", "latitude": "0", "id": "4272383378", "tags": "birthday nyc newyork brooklyn digital studio design code events dumbo content webdesign agency ia developers online interactive talks lecture strategic speech publishing html ux partners aiga interaction designers webdevelopment userexperience zeldman jeffreyzeldman webcontent coders webdevelopers aigany 11210 webpublishing contentstrategy publshers webevents onnodejong"}, {"datetaken": "2010-01-13 14:23:23", "license": "3", "title": "DUMBO river view by Onno de Jong", "text": "", "album_id": "72157623199658422", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4271642343_e67212a67b_o.jpg", "secret": "38f665f62b", "media": "photo", "latitude": "0", "id": "4271642343", "tags": "nyc newyork brooklyn dumbo aiga aigany onnodejong"}, {"datetaken": "2005-01-15 19:00:01", "license": "1", "title": "Chris!", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9355101_054cc76d58_o.jpg", "secret": "054cc76d58", "media": "photo", "latitude": "0", "id": "9355101", "tags": ""}, {"datetaken": "2005-01-15 19:00:31", "license": "1", "title": "Berli", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9355102_c6c8bb7acf_o.jpg", "secret": "c6c8bb7acf", "media": "photo", "latitude": "0", "id": "9355102", "tags": ""}, {"datetaken": "2005-01-15 19:00:36", "license": "1", "title": "Bonnie", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9355107_eb7f452f7c_o.jpg", "secret": "eb7f452f7c", "media": "photo", "latitude": "0", "id": "9355107", "tags": ""}, {"datetaken": "2005-01-15 19:00:59", "license": "1", "title": "Oriole Tracy Kymberlie", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9355116_8b5bd47f35_o.jpg", "secret": "8b5bd47f35", "media": "photo", "latitude": "0", "id": "9355116", "tags": ""}, {"datetaken": "2005-01-15 19:10:23", "license": "1", "title": "Nelly, Sean, Michelle", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9355124_5f28794e62_o.jpg", "secret": "5f28794e62", "media": "photo", "latitude": "0", "id": "9355124", "tags": ""}, {"datetaken": "2005-01-15 19:10:42", "license": "1", "title": "Kevin, Kimberly and Michelle", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9355127_1c8c65c63a_o.jpg", "secret": "1c8c65c63a", "media": "photo", "latitude": "0", "id": "9355127", "tags": ""}, {"datetaken": "2005-01-15 19:11:03", "license": "1", "title": "Oriole, Tracy, Heidi, Kymberlie", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9355130_080e887914_o.jpg", "secret": "080e887914", "media": "photo", "latitude": "0", "id": "9355130", "tags": ""}, {"datetaken": "2005-01-15 19:11:12", "license": "1", "title": "the rijkens!", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9355132_34c2d630a1_o.jpg", "secret": "34c2d630a1", "media": "photo", "latitude": "0", "id": "9355132", "tags": ""}, {"datetaken": "2005-01-15 19:18:22", "license": "1", "title": "are you drunk yet?", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9355135_f05e93db6c_o.jpg", "secret": "f05e93db6c", "media": "photo", "latitude": "0", "id": "9355135", "tags": ""}, {"datetaken": "2005-01-15 19:18:46", "license": "1", "title": "lean in", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9355137_e57a0554b3_o.jpg", "secret": "e57a0554b3", "media": "photo", "latitude": "0", "id": "9355137", "tags": ""}, {"datetaken": "2005-01-15 19:19:39", "license": "1", "title": "more pictures?", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9355143_e046870bcd_o.jpg", "secret": "e046870bcd", "media": "photo", "latitude": "0", "id": "9355143", "tags": ""}, {"datetaken": "2005-01-15 19:20:37", "license": "1", "title": "Michelle, fred, oriole, tracy", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9355151_475a835df6_o.jpg", "secret": "475a835df6", "media": "photo", "latitude": "0", "id": "9355151", "tags": ""}, {"datetaken": "2005-01-15 19:54:40", "license": "1", "title": "pink is in", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9355158_e5d5521b29_o.jpg", "secret": "e5d5521b29", "media": "photo", "latitude": "0", "id": "9355158", "tags": ""}, {"datetaken": "2005-01-15 20:14:03", "license": "1", "title": "IMG_0114", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9355163_3cc50612d8_o.jpg", "secret": "3cc50612d8", "media": "photo", "latitude": "0", "id": "9355163", "tags": ""}, {"datetaken": "2005-01-15 20:14:10", "license": "1", "title": "IMG_0115", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9355173_d173d2f491_o.jpg", "secret": "d173d2f491", "media": "photo", "latitude": "0", "id": "9355173", "tags": ""}, {"datetaken": "2005-01-15 20:14:18", "license": "1", "title": "Birthday boy", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9355184_04f142d3d3_o.jpg", "secret": "04f142d3d3", "media": "photo", "latitude": "0", "id": "9355184", "tags": ""}, {"datetaken": "2005-01-15 20:32:23", "license": "1", "title": "yum", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9355187_0da10a30cd_o.jpg", "secret": "0da10a30cd", "media": "photo", "latitude": "0", "id": "9355187", "tags": ""}, {"datetaken": "2005-01-15 20:33:03", "license": "1", "title": "Kevin whispers sweet nothings", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9355191_d72c92f040_o.jpg", "secret": "d72c92f040", "media": "photo", "latitude": "0", "id": "9355191", "tags": ""}, {"datetaken": "2005-01-15 20:33:10", "license": "1", "title": "Kevin really likes shrimp", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9355195_47b78ed9bf_o.jpg", "secret": "47b78ed9bf", "media": "photo", "latitude": "0", "id": "9355195", "tags": ""}, {"datetaken": "2005-01-15 21:15:04", "license": "1", "title": "birthday fun", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9355200_816ab16a43_o.jpg", "secret": "816ab16a43", "media": "photo", "latitude": "0", "id": "9355200", "tags": ""}, {"datetaken": "2005-01-15 21:23:40", "license": "1", "title": "dino-dessert", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9355221_034d8bbb88_o.jpg", "secret": "034d8bbb88", "media": "photo", "latitude": "0", "id": "9355221", "tags": ""}, {"datetaken": "2005-01-15 21:30:54", "license": "1", "title": "Drunk Dinosaur", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9355241_68bfe1ad83_o.jpg", "secret": "68bfe1ad83", "media": "photo", "latitude": "0", "id": "9355241", "tags": ""}, {"datetaken": "2005-01-15 21:32:32", "license": "1", "title": "Nelly and Sean", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9355250_ab8001ba3b_o.jpg", "secret": "ab8001ba3b", "media": "photo", "latitude": "0", "id": "9355250", "tags": ""}, {"datetaken": "2005-01-15 21:32:45", "license": "1", "title": "Kymberlie and Katie up close", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9355254_d2414ce5c6_o.jpg", "secret": "d2414ce5c6", "media": "photo", "latitude": "0", "id": "9355254", "tags": "beingkatie neuroticfishbowl katie katiesunstrom kymberlie"}, {"datetaken": "2005-01-15 22:50:38", "license": "1", "title": "wine.", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9355092_5e0a08bed4_o.jpg", "secret": "5e0a08bed4", "media": "photo", "latitude": "0", "id": "9355092", "tags": ""}, {"datetaken": "2005-01-15 22:50:50", "license": "1", "title": "I mean, would he wear that sober? Oh, yeah, he would.", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9355094_db023cc82c_o.jpg", "secret": "db023cc82c", "media": "photo", "latitude": "0", "id": "9355094", "tags": ""}, {"datetaken": "2005-01-15 22:51:04", "license": "1", "title": "This is when everyone goes back to Berli's and gets hammered", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9355095_977377c302_o.jpg", "secret": "977377c302", "media": "photo", "latitude": "0", "id": "9355095", "tags": ""}, {"datetaken": "2005-01-15 22:51:22", "license": "1", "title": "Me at Kevin and Berlis", "text": "", "album_id": "234980", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9355100_be4d35878f_o.jpg", "secret": "be4d35878f", "media": "photo", "latitude": "0", "id": "9355100", "tags": ""}, {"datetaken": "2010-03-14 21:14:07", "license": "1", "title": "Delmar and Muriel Coulter 1992", "text": "", "album_id": "72157623622591484", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/4434267712_7dbf4b945c_o.jpg", "secret": "b438f35655", "media": "photo", "latitude": "0", "id": "4434267712", "tags": "1990s"}, {"datetaken": "2010-03-14 21:23:27", "license": "1", "title": "Del 1994", "text": "", "album_id": "72157623622591484", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4433494255_6ec0a350d3_o.jpg", "secret": "f38c57a598", "media": "photo", "latitude": "0", "id": "4433494255", "tags": "1990s"}, {"datetaken": "2010-03-14 21:23:27", "license": "1", "title": "Del and Murm at FHTV Dinner Theater 1997", "text": "", "album_id": "72157623622591484", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2685/4433494547_323acc84cd_o.jpg", "secret": "6cae79b7f5", "media": "photo", "latitude": "0", "id": "4433494547", "tags": "1990s"}, {"datetaken": "2010-03-14 21:23:27", "license": "1", "title": "Del and Murm at Jumers 1993", "text": "", "album_id": "72157623622591484", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4434268532_5fd6bc75c0_o.jpg", "secret": "24a1edbb68", "media": "photo", "latitude": "0", "id": "4434268532", "tags": "1990s"}, {"datetaken": "2010-03-14 21:23:27", "license": "1", "title": "Del and Murm at Mount Lemmon 1990", "text": "", "album_id": "72157623622591484", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4434269054_78b1d7e060_o.jpg", "secret": "10e2c529f2", "media": "photo", "latitude": "0", "id": "4434269054", "tags": "1990s"}, {"datetaken": "2010-03-14 21:23:27", "license": "1", "title": "Del and Murm with Connor 1999", "text": "", "album_id": "72157623622591484", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2687/4434269400_b59dff2bae_o.jpg", "secret": "0d33050324", "media": "photo", "latitude": "0", "id": "4434269400", "tags": "1990s"}, {"datetaken": "2010-03-14 21:23:28", "license": "1", "title": "Murm at home in Elmwood 1995", "text": "", "album_id": "72157623622591484", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2681/4433496133_596ed8d10b_o.jpg", "secret": "e7fc6650a4", "media": "photo", "latitude": "0", "id": "4433496133", "tags": "1990s"}, {"datetaken": "2010-03-14 21:23:28", "license": "1", "title": "Pat and Bill Noble with Murm at New Salem 1994", "text": "", "album_id": "72157623622591484", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2738/4434269938_de3151fcbc_o.jpg", "secret": "e4ce32dd53", "media": "photo", "latitude": "0", "id": "4434269938", "tags": "1990s"}, {"datetaken": "2010-03-14 21:23:28", "license": "1", "title": "Del Coulter 80th Birthday announcement 1997", "text": "", "album_id": "72157623622591484", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4433496541_9b2ff0940f_o.jpg", "secret": "a1474c80d3", "media": "photo", "latitude": "0", "id": "4433496541", "tags": "1990s"}, {"datetaken": "2010-03-14 21:23:28", "license": "1", "title": "Del with glass 1993", "text": "", "album_id": "72157623622591484", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4433496803_bfb3394cce_o.jpg", "secret": "7319f88068", "media": "photo", "latitude": "0", "id": "4433496803", "tags": "1990s"}, {"datetaken": "2010-03-14 21:23:28", "license": "1", "title": "Delmar and Muriel 40th Anniversary Invitation 1990", "text": "", "album_id": "72157623622591484", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4433496921_f3ac046cd3_o.jpg", "secret": "3779cd5e43", "media": "photo", "latitude": "0", "id": "4433496921", "tags": "1990s"}, {"datetaken": "2010-03-14 21:23:28", "license": "1", "title": "Murm at home in Elmwood 1991", "text": "", "album_id": "72157623622591484", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4434270758_7a2f95ff7f_o.jpg", "secret": "8e76153f9f", "media": "photo", "latitude": "0", "id": "4434270758", "tags": "1990s"}, {"datetaken": "2010-03-14 21:23:29", "license": "1", "title": "Pat and Bill Noble with Murm at Prairie Park 1991", "text": "", "album_id": "72157623622591484", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4434271098_035411de52_o.jpg", "secret": "e9855530bf", "media": "photo", "latitude": "0", "id": "4434271098", "tags": "1990s"}, {"datetaken": "2010-03-14 21:23:29", "license": "1", "title": "Tree down from storm damage 1990", "text": "", "album_id": "72157623622591484", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4434271426_44509b5839_o.jpg", "secret": "31ea21c1ed", "media": "photo", "latitude": "0", "id": "4434271426", "tags": "1990s"}, {"datetaken": "2010-03-15 09:47:16", "license": "1", "title": "1995 Dale and Phyl and Murm in Elmwood 2", "text": "", "album_id": "72157623622591484", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4434818989_dcdff25135_o.jpg", "secret": "83fc2ea3b3", "media": "photo", "latitude": "0", "id": "4434818989", "tags": "1990s daleandphyl"}, {"datetaken": "2010-03-15 09:47:26", "license": "1", "title": "1995 Dale and Phyl and Murm in Elmwood", "text": "", "album_id": "72157623622591484", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4435594330_55827a3026_o.jpg", "secret": "0b2ed5fbff", "media": "photo", "latitude": "0", "id": "4435594330", "tags": "1990s daleandphyl"}, {"datetaken": "2005-01-14 19:07:42", "license": "1", "title": "Dinner at Panta Rei 1", "text": "", "album_id": "85112", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3393833_77621aee6d_o.jpg", "secret": "77621aee6d", "media": "photo", "latitude": "0", "id": "3393833", "tags": "photomatt 21st birthday photomatt21 pantarei"}, {"datetaken": "2005-01-14 19:07:51", "license": "1", "title": "Dinner at Panta Rei 2", "text": "", "album_id": "85112", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3393933_9c7fb93046_o.jpg", "secret": "9c7fb93046", "media": "photo", "latitude": "0", "id": "3393933", "tags": "photomatt 21st birthday photomatt21 pantarei"}, {"datetaken": "2005-01-14 19:08:33", "license": "1", "title": "Dinner at Panta Rei 3", "text": "", "album_id": "85112", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3394079_b47b6fa3c0_o.jpg", "secret": "b47b6fa3c0", "media": "photo", "latitude": "0", "id": "3394079", "tags": "photomatt 21st birthday photomatt21 pantarei"}, {"datetaken": "2005-01-14 19:32:04", "license": "1", "title": "Risotto di Giorno", "text": "", "album_id": "85112", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3394211_c2e301be38_o.jpg", "secret": "c2e301be38", "media": "photo", "latitude": "0", "id": "3394211", "tags": "photomatt 21st birthday photomatt21"}, {"datetaken": "2005-01-14 20:05:10", "license": "1", "title": "Matt's birthday \"cake\"", "text": "", "album_id": "85112", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3394396_a2145f79a8_o.jpg", "secret": "a2145f79a8", "media": "photo", "latitude": "0", "id": "3394396", "tags": "photomatt 21st birthday photomatt21"}, {"datetaken": "2005-01-14 20:36:21", "license": "1", "title": "Tosca Cafe Bar 1", "text": "", "album_id": "85112", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3394593_b2b31fdb70_o.jpg", "secret": "b2b31fdb70", "media": "photo", "latitude": "0", "id": "3394593", "tags": "photomatt 21st birthday photomatt21"}, {"datetaken": "2005-01-14 22:37:59", "license": "1", "title": "Tosca Cafe Bar 2", "text": "", "album_id": "85112", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3394754_727d8b2010_o.jpg", "secret": "727d8b2010", "media": "photo", "latitude": "0", "id": "3394754", "tags": "photomatt 21st birthday photomatt21"}, {"datetaken": "2005-01-14 22:38:13", "license": "1", "title": "Tosca Cafe Bar 3", "text": "", "album_id": "85112", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3394917_4841730d84_o.jpg", "secret": "4841730d84", "media": "photo", "latitude": "0", "id": "3394917", "tags": "photomatt 21st birthday photomatt21"}, {"datetaken": "2005-01-14 22:38:44", "license": "1", "title": "Tosca Cafe Bar 4", "text": "", "album_id": "85112", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3395020_23b9c75309_o.jpg", "secret": "23b9c75309", "media": "photo", "latitude": "0", "id": "3395020", "tags": "photomatt 21st birthday photomatt21"}, {"datetaken": "2005-01-14 23:49:22", "license": "1", "title": "Malaysian flag in Specs", "text": "", "album_id": "85112", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3395188_c405a62932_o.jpg", "secret": "c405a62932", "media": "photo", "latitude": "0", "id": "3395188", "tags": "photomatt 21st birthday photomatt21"}, {"datetaken": "2005-01-14 23:51:56", "license": "1", "title": "Drunken Matt 1", "text": "", "album_id": "85112", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3395355_a565cc3578_o.jpg", "secret": "a565cc3578", "media": "photo", "latitude": "0", "id": "3395355", "tags": "photomatt 21st birthday photomatt21"}, {"datetaken": "2005-01-14 23:52:18", "license": "1", "title": "Drunken Matt 2", "text": "", "album_id": "85112", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3395520_69d6042ded_o.jpg", "secret": "69d6042ded", "media": "photo", "latitude": "0", "id": "3395520", "tags": "photomatt 21st birthday photomatt21"}, {"datetaken": "2005-01-14 23:59:20", "license": "1", "title": "Irish Car Bomb aftermath", "text": "", "album_id": "85112", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3395685_662e27e734_o.jpg", "secret": "662e27e734", "media": "photo", "latitude": "0", "id": "3395685", "tags": "photomatt 21st birthday photomatt21"}, {"datetaken": "2005-01-15 00:02:25", "license": "1", "title": "Jason D shows his div tag", "text": "", "album_id": "85112", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3395876_1ae9ca1bd8_o.jpg", "secret": "1ae9ca1bd8", "media": "photo", "latitude": "0", "id": "3395876", "tags": "photomatt 21st birthday photomatt21"}, {"datetaken": "2005-01-15 03:30:15", "license": "1", "title": "My div tag", "text": "", "album_id": "85112", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3396085_4038236c99_o.jpg", "secret": "4038236c99", "media": "photo", "latitude": "0", "id": "3396085", "tags": "photomatt 21st birthday photomatt21"}, {"datetaken": "2010-01-14 20:07:13", "license": "2", "title": "OTC Funk in concert 09", "text": "", "album_id": "72157623091374699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4277085500_2e581aef91_o.jpg", "secret": "8293c5e6be", "media": "photo", "latitude": "0", "id": "4277085500", "tags": "music club concert live band funk venue bangkokblues andrewclark liamvoth otcfunk stephenstrickler alexbenabdullah sarahrossphotography"}, {"datetaken": "2010-01-14 20:13:58", "license": "2", "title": "OTC Funk in concert 07", "text": "", "album_id": "72157623091374699", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2682/4277081974_b2b7518667_o.jpg", "secret": "ac3e6ab691", "media": "photo", "latitude": "0", "id": "4277081974", "tags": "music club concert live band funk venue bangkokblues andrewclark liamvoth otcfunk stephenstrickler alexbenabdullah sarahrossphotography"}, {"datetaken": "2010-01-14 20:18:19", "license": "2", "title": "OTC Funk in concert 02", "text": "", "album_id": "72157623091374699", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2765/4277082128_e911176aeb_o.jpg", "secret": "645960c057", "media": "photo", "latitude": "0", "id": "4277082128", "tags": "music club concert live band funk venue bangkokblues andrewclark liamvoth otcfunk stephenstrickler alexbenabdullah sarahrossphotography"}, {"datetaken": "2010-01-14 20:24:03", "license": "2", "title": "OTC Funk in concert 15", "text": "", "album_id": "72157623091374699", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2711/4276340405_0ed4d9e1a5_o.jpg", "secret": "520ec5d3f5", "media": "photo", "latitude": "0", "id": "4276340405", "tags": "music club concert live band funk venue bangkokblues andrewclark liamvoth otcfunk stephenstrickler alexbenabdullah sarahrossphotography"}, {"datetaken": "2010-01-14 20:28:15", "license": "2", "title": "OTC Funk in concert 11", "text": "", "album_id": "72157623091374699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4276339677_ff61df2740_o.jpg", "secret": "80d0d94fd8", "media": "photo", "latitude": "0", "id": "4276339677", "tags": "music club concert live band funk venue bangkokblues andrewclark liamvoth otcfunk stephenstrickler alexbenabdullah sarahrossphotography"}, {"datetaken": "2010-01-14 20:31:58", "license": "2", "title": "OTC Funk in concert 03", "text": "", "album_id": "72157623091374699", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4276337073_83c9c20f85_o.jpg", "secret": "7e70154112", "media": "photo", "latitude": "0", "id": "4276337073", "tags": "music club concert live band funk venue bangkokblues andrewclark liamvoth otcfunk stephenstrickler alexbenabdullah sarahrossphotography"}, {"datetaken": "2010-01-14 20:37:46", "license": "2", "title": "OTC Funk in concert 05", "text": "", "album_id": "72157623091374699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4277082614_b7cf611c61_o.jpg", "secret": "c1e2dc1eb8", "media": "photo", "latitude": "0", "id": "4277082614", "tags": "portrait music face club portraits person concert live band human funk venue bangkokblues andrewclark liamvoth otcfunk stephenstrickler alexbenabdullah sarahrossphotography"}, {"datetaken": "2010-01-14 20:51:16", "license": "2", "title": "OTC Funk in concert 06", "text": "", "album_id": "72157623091374699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4276337511_1493443789_o.jpg", "secret": "c3ed507e2a", "media": "photo", "latitude": "0", "id": "4276337511", "tags": "music club concert live band funk venue bangkokblues andrewclark liamvoth otcfunk stephenstrickler alexbenabdullah sarahrossphotography"}, {"datetaken": "2010-01-14 20:55:33", "license": "2", "title": "OTC Funk in concert 08", "text": "", "album_id": "72157623091374699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4276337775_f5386fb157_o.jpg", "secret": "44c22ea92c", "media": "photo", "latitude": "0", "id": "4276337775", "tags": "music club concert live band funk venue bangkokblues andrewclark liamvoth otcfunk stephenstrickler alexbenabdullah sarahrossphotography"}, {"datetaken": "2010-01-14 20:57:12", "license": "2", "title": "OTC Funk [14/365]", "text": "", "album_id": "72157623091374699", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2502/4276298067_ef62064901_o.jpg", "secret": "8e12da020a", "media": "photo", "latitude": "0", "id": "4276298067", "tags": "lighting light shadow red portrait music silly face goofy yellow night contrast portraits mouth dark nose person lights concert singing bright live great band indoors human sing singer funk microphone 365 mic wrinkle 2010 project365 wrinklednose liamvoth sarahr89 otcfunk sarahrossphotography"}, {"datetaken": "2010-01-14 20:57:36", "license": "2", "title": "OTC Funk in concert 10", "text": "", "album_id": "72157623091374699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4277083364_b71ee239e5_o.jpg", "secret": "0462ac12a2", "media": "photo", "latitude": "0", "id": "4277083364", "tags": "music club concert live band funk venue bangkokblues andrewclark liamvoth otcfunk stephenstrickler alexbenabdullah sarahrossphotography"}, {"datetaken": "2010-01-14 22:11:12", "license": "2", "title": "OTC Funk in concert 04", "text": "", "album_id": "72157623091374699", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2778/4277083704_5bac396c27_o.jpg", "secret": "78496726c1", "media": "photo", "latitude": "0", "id": "4277083704", "tags": "music color colour colors club concert hands colorful colours hand skin finger live main touch fingers band funk kodachrome colourful venue mains knuckles coloful bangkokblues andrewclark liamvoth otcfunk stephenstrickler alexbenabdullah sarahrossphotography colornecessary"}, {"datetaken": "2010-01-14 22:36:31", "license": "2", "title": "OTC Funk in concert 01", "text": "", "album_id": "72157623091374699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4276338569_64c5aba7bd_o.jpg", "secret": "2d2445dd50", "media": "photo", "latitude": "0", "id": "4276338569", "tags": "music club concert live band funk venue bangkokblues andrewclark liamvoth otcfunk stephenstrickler alexbenabdullah sarahrossphotography"}, {"datetaken": "2010-01-14 22:39:48", "license": "2", "title": "OTC Funk in concert 14", "text": "", "album_id": "72157623091374699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4276338811_0410ecb9b7_o.jpg", "secret": "5e262d1005", "media": "photo", "latitude": "0", "id": "4276338811", "tags": "music club concert live band funk venue bangkokblues andrewclark liamvoth otcfunk stephenstrickler alexbenabdullah sarahrossphotography"}, {"datetaken": "2010-01-14 22:40:19", "license": "2", "title": "OTC Funk in concert 12", "text": "", "album_id": "72157623091374699", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4277084512_e728c8f935_o.jpg", "secret": "287413d379", "media": "photo", "latitude": "0", "id": "4277084512", "tags": "music club concert live band funk venue bangkokblues andrewclark liamvoth otcfunk stephenstrickler alexbenabdullah sarahrossphotography"}, {"datetaken": "2010-01-14 22:47:19", "license": "2", "title": "OTC Funk in concert 13", "text": "", "album_id": "72157623091374699", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2683/4276339373_de4fab5cf3_o.jpg", "secret": "c8497b2237", "media": "photo", "latitude": "0", "id": "4276339373", "tags": "music club concert live band funk venue bangkokblues andrewclark liamvoth otcfunk stephenstrickler alexbenabdullah sarahrossphotography"}, {"datetaken": "2010-02-13 14:03:54", "license": "2", "title": "wifes on seashore", "text": "", "album_id": "72157623323161887", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2762/4363036100_f68f769978_o.jpg", "secret": "be2c16d080", "media": "photo", "latitude": "0", "id": "4363036100", "tags": "birthday family sea israel south saturday wifes shore russians ashdod sooc satscene"}, {"datetaken": "2010-02-13 14:04:41", "license": "2", "title": "parents in law!", "text": "", "album_id": "72157623323161887", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4363043408_f14fb4d99c_o.jpg", "secret": "2d83939dfe", "media": "photo", "latitude": "0", "id": "4363043408", "tags": "birthday family sea israel south saturday wifes shore russians ashdod satscene"}, {"datetaken": "2010-02-13 14:05:16", "license": "2", "title": "colors", "text": "", "album_id": "72157623323161887", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4362307673_611a55baea_o.jpg", "secret": "e527cd6e9f", "media": "photo", "latitude": "0", "id": "4362307673", "tags": "birthday family sea israel south saturday wifes shore russians ashdod satscene"}, {"datetaken": "2010-02-13 14:07:48", "license": "2", "title": "me with parents in law", "text": "", "album_id": "72157623323161887", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4363057518_e486814fa9_o.jpg", "secret": "8cf15f9b3e", "media": "photo", "latitude": "0", "id": "4363057518", "tags": "birthday family sea israel south saturday wifes shore russians ashdod satscene"}, {"datetaken": "2010-02-13 14:18:21", "license": "2", "title": "fish entertainer", "text": "", "album_id": "72157623323161887", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2770/4362321461_32c4f65634_o.jpg", "secret": "fd02375a6b", "media": "photo", "latitude": "0", "id": "4362321461", "tags": "birthday family sea blur macro israel dof south saturday indoors wifes shore russians ashdod badlighting satscene"}, {"datetaken": "2010-02-13 16:06:41", "license": "2", "title": "the fam 1", "text": "", "album_id": "72157623323161887", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4362328483_744aecaf85_o.jpg", "secret": "89f274483d", "media": "photo", "latitude": "0", "id": "4362328483", "tags": "birthday family sea blur israel dof south saturday indoors wifes shore russians ashdod badlighting satscene"}, {"datetaken": "2010-02-13 16:07:03", "license": "2", "title": "the fam 2", "text": "", "album_id": "72157623323161887", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4362335953_1aff75e164_o.jpg", "secret": "244506e556", "media": "photo", "latitude": "0", "id": "4362335953", "tags": "birthday family sea blur israel dof south saturday indoors wifes shore russians ashdod badlighting satscene"}, {"datetaken": "2010-02-13 16:07:26", "license": "2", "title": "the fam 3", "text": "", "album_id": "72157623323161887", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4362343943_bef5503d14_o.jpg", "secret": "c6c3a6d982", "media": "photo", "latitude": "0", "id": "4362343943", "tags": "birthday family sea blur israel dof south saturday indoors wifes shore russians ashdod badlighting satscene"}, {"datetaken": "2010-02-13 16:07:47", "license": "2", "title": "the fam 4", "text": "", "album_id": "72157623323161887", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4363094544_01b0c9214e_o.jpg", "secret": "4737a20cbc", "media": "photo", "latitude": "0", "id": "4363094544", "tags": "birthday family sea blur israel dof south saturday indoors wifes shore russians ashdod badlighting satscene"}, {"datetaken": "2010-02-13 16:19:26", "license": "2", "title": "the fam 5", "text": "", "album_id": "72157623323161887", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2687/4362359255_93e5fe1da9_o.jpg", "secret": "0aaa12512d", "media": "photo", "latitude": "0", "id": "4362359255", "tags": "birthday family sea blur israel dof south saturday indoors wifes shore russians ashdod badlighting satscene"}, {"datetaken": "2010-02-13 16:19:52", "license": "2", "title": "the fam 6", "text": "", "album_id": "72157623323161887", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4363108240_074948da98_o.jpg", "secret": "157b83765d", "media": "photo", "latitude": "0", "id": "4363108240", "tags": "birthday family sea blur israel dof south saturday indoors wifes shore russians ashdod badlighting satscene"}, {"datetaken": "2010-02-13 18:17:21", "license": "2", "title": "happy birthday!", "text": "", "album_id": "72157623323161887", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2550/4363114300_1b7d3f89d8_o.jpg", "secret": "0cdecfb8ef", "media": "photo", "latitude": "0", "id": "4363114300", "tags": "birthday family sea blur israel dof south saturday indoors wifes shore russians ashdod badlighting satscene"}, {"datetaken": "2010-02-13 21:41:00", "license": "1", "title": "Martinis!", "text": "", "album_id": "72157623325553883", "longitude": "-87.669029", "url_o": "https://farm3.staticflickr.com/2717/4363991158_4a47753d91_o.jpg", "secret": "6cc44935a7", "media": "photo", "latitude": "41.983501", "id": "4363991158", "tags": "birthday friends 30th iphone thecall 30rocks"}, {"datetaken": "2010-02-13 21:42:00", "license": "1", "title": "Ed & Chris", "text": "", "album_id": "72157623325553883", "longitude": "-87.669029", "url_o": "https://farm5.staticflickr.com/4006/4363991240_b9bc884693_o.jpg", "secret": "080ded7379", "media": "photo", "latitude": "41.983501", "id": "4363991240", "tags": "birthday friends 30th iphone thecall 30rocks"}, {"datetaken": "2010-02-13 21:43:00", "license": "1", "title": "Window Models", "text": "", "album_id": "72157623325553883", "longitude": "-87.669029", "url_o": "https://farm5.staticflickr.com/4003/4363247373_9f2e487c28_o.jpg", "secret": "08474d9636", "media": "photo", "latitude": "41.983501", "id": "4363247373", "tags": "birthday friends 30th iphone thecall 30rocks"}, {"datetaken": "2010-02-13 21:44:00", "license": "1", "title": "Operation", "text": "", "album_id": "72157623325553883", "longitude": "-87.669029", "url_o": "https://farm5.staticflickr.com/4028/4363247451_b4b1d0f227_o.jpg", "secret": "eefa2574c0", "media": "photo", "latitude": "41.983501", "id": "4363247451", "tags": "birthday 30th boardgame operation iphone thecall 30rocks"}, {"datetaken": "2010-02-13 21:45:00", "license": "1", "title": "Letters & Numbers", "text": "", "album_id": "72157623325553883", "longitude": "-87.669029", "url_o": "https://farm3.staticflickr.com/2707/4363991460_7ba3a243d6_o.jpg", "secret": "9657867b3f", "media": "photo", "latitude": "41.983501", "id": "4363991460", "tags": "birthday scrabble 30th boardgame bingo iphone thecall 30rocks"}, {"datetaken": "2010-02-13 21:46:00", "license": "1", "title": "Devin", "text": "", "album_id": "72157623325553883", "longitude": "-87.669029", "url_o": "https://farm5.staticflickr.com/4057/4363991518_8bf577f38c_o.jpg", "secret": "f8b290aa84", "media": "photo", "latitude": "41.983501", "id": "4363991518", "tags": "birthday friends 30th iphone thecall 30rocks"}, {"datetaken": "2010-02-13 22:19:07", "license": "1", "title": "Nick", "text": "", "album_id": "72157623325553883", "longitude": "-87.669029", "url_o": "https://farm3.staticflickr.com/2785/4363991670_ec73e9e28a_o.jpg", "secret": "1466ae4c3d", "media": "photo", "latitude": "41.983501", "id": "4363991670", "tags": "birthday friends 30th 30rocks"}, {"datetaken": "2010-02-14 00:10:00", "license": "1", "title": "Lantern", "text": "", "album_id": "72157623325553883", "longitude": "-87.644454", "url_o": "https://farm5.staticflickr.com/4070/4363247789_833570bdac_o.jpg", "secret": "70ed93e3af", "media": "photo", "latitude": "41.942375", "id": "4363247789", "tags": "birthday 30th iphone wangs 30rocks"}, {"datetaken": "2010-02-14 00:11:00", "license": "1", "title": "Clutter", "text": "", "album_id": "72157623325553883", "longitude": "-87.644454", "url_o": "https://farm5.staticflickr.com/4060/4363991812_512ca6af64_o.jpg", "secret": "0ac88c3135", "media": "photo", "latitude": "41.942375", "id": "4363991812", "tags": "birthday 30th iphone wangs 30rocks"}, {"datetaken": "2010-02-14 00:52:00", "license": "1", "title": "omGaga", "text": "", "album_id": "72157623325553883", "longitude": "-87.649436", "url_o": "https://farm3.staticflickr.com/2718/4363991880_d7d335196d_o.jpg", "secret": "476e56bb70", "media": "photo", "latitude": "41.949203", "id": "4363991880", "tags": "birthday 30th cellblock iphone 30rocks"}, {"datetaken": "2010-02-14 00:55:00", "license": "1", "title": "Back-Up", "text": "", "album_id": "72157623325553883", "longitude": "-87.649436", "url_o": "https://farm5.staticflickr.com/4049/4363248063_bc2f9aece5_o.jpg", "secret": "d4860852e5", "media": "photo", "latitude": "41.949203", "id": "4363248063", "tags": "birthday 30th cellblock iphone 30rocks"}, {"datetaken": "2010-02-14 00:56:00", "license": "1", "title": "Stage Stealer", "text": "", "album_id": "72157623325553883", "longitude": "-87.649436", "url_o": "https://farm3.staticflickr.com/2772/4363992082_65e7c5b686_o.jpg", "secret": "a383c895b8", "media": "photo", "latitude": "41.949203", "id": "4363992082", "tags": "birthday 30th cellblock iphone 30rocks"}, {"datetaken": "2010-02-14 00:59:00", "license": "1", "title": "I Want Your Ugly", "text": "", "album_id": "72157623325553883", "longitude": "-87.649436", "url_o": "https://farm5.staticflickr.com/4063/4363248279_8e44322e3f_o.jpg", "secret": "1b2e1ce615", "media": "photo", "latitude": "41.949203", "id": "4363248279", "tags": "birthday 30th cellblock iphone brightkite 30rocks"}, {"datetaken": "2010-02-14 01:52:00", "license": "1", "title": "After Hours", "text": "", "album_id": "72157623325553883", "longitude": "-87.648475", "url_o": "https://farm3.staticflickr.com/2724/4363992270_c091d56940_o.jpg", "secret": "d2b634b1fc", "media": "photo", "latitude": "41.949447", "id": "4363992270", "tags": "birthday 30th iphone charlies 30rocks"}, {"datetaken": "2010-02-14 01:53:00", "license": "1", "title": "After Hours", "text": "", "album_id": "72157623325553883", "longitude": "-87.648475", "url_o": "https://farm5.staticflickr.com/4034/4363992346_897712a1ea_o.jpg", "secret": "60bbcc2770", "media": "photo", "latitude": "41.949447", "id": "4363992346", "tags": "birthday 30th iphone charlies 30rocks"}, {"datetaken": "2010-01-23 23:59:45", "license": "1", "title": "IMG_0001", "text": "", "album_id": "72157623446666698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4362613984_e2c4b106e9_o.jpg", "secret": "624e9e5490", "media": "photo", "latitude": "0", "id": "4362613984", "tags": "birthday friends philadelphia bar fun january philly northernliberties 2010 nolibs"}, {"datetaken": "2010-01-23 23:59:51", "license": "1", "title": "IMG_0002", "text": "", "album_id": "72157623446666698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2692/4361871875_3ef7ac4ecf_o.jpg", "secret": "0b00f2aced", "media": "photo", "latitude": "0", "id": "4361871875", "tags": "birthday friends philadelphia bar fun january philly northernliberties 2010 nolibs"}, {"datetaken": "2010-01-24 00:00:07", "license": "1", "title": "IMG_0003", "text": "", "album_id": "72157623446666698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4361873693_383508b71c_o.jpg", "secret": "130a2b91de", "media": "photo", "latitude": "0", "id": "4361873693", "tags": "birthday friends philadelphia bar fun january philly northernliberties 2010 nolibs"}, {"datetaken": "2010-01-24 00:00:18", "license": "1", "title": "IMG_0004", "text": "", "album_id": "72157623446666698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4362619348_059f5e60f5_o.jpg", "secret": "82b31620f3", "media": "photo", "latitude": "0", "id": "4362619348", "tags": "birthday friends philadelphia bar fun january philly northernliberties 2010 nolibs"}, {"datetaken": "2010-01-24 00:00:23", "license": "1", "title": "IMG_0005", "text": "", "album_id": "72157623446666698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4361876563_f14d65e8d8_o.jpg", "secret": "997451f933", "media": "photo", "latitude": "0", "id": "4361876563", "tags": "birthday friends philadelphia bar fun january philly northernliberties 2010 nolibs"}, {"datetaken": "2010-01-24 00:00:30", "license": "1", "title": "IMG_0006", "text": "", "album_id": "72157623446666698", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2695/4362622112_b4cd4f8204_o.jpg", "secret": "4e51b36d66", "media": "photo", "latitude": "0", "id": "4362622112", "tags": "birthday friends philadelphia bar fun january philly northernliberties 2010 nolibs"}, {"datetaken": "2010-01-24 00:00:41", "license": "1", "title": "IMG_0007", "text": "", "album_id": "72157623446666698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4362623068_a13e5be051_o.jpg", "secret": "9dbe332644", "media": "photo", "latitude": "0", "id": "4362623068", "tags": "birthday friends philadelphia bar fun january philly northernliberties 2010 nolibs"}, {"datetaken": "2010-01-24 00:01:04", "license": "1", "title": "IMG_0008", "text": "", "album_id": "72157623446666698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4361880245_6cc8b09346_o.jpg", "secret": "a882331ff2", "media": "photo", "latitude": "0", "id": "4361880245", "tags": "birthday friends philadelphia bar fun january philly northernliberties 2010 nolibs"}, {"datetaken": "2010-01-24 00:01:08", "license": "1", "title": "IMG_0009", "text": "", "album_id": "72157623446666698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4361881925_e3f1ee096f_o.jpg", "secret": "d8e4b207a1", "media": "photo", "latitude": "0", "id": "4361881925", "tags": "birthday friends philadelphia bar fun january philly northernliberties 2010 nolibs"}, {"datetaken": "2010-01-24 00:10:22", "license": "1", "title": "IMG_0010", "text": "", "album_id": "72157623446666698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4361883129_57ec48365e_o.jpg", "secret": "f590f09594", "media": "photo", "latitude": "0", "id": "4361883129", "tags": "birthday friends philadelphia bar fun january philly northernliberties 2010 nolibs"}, {"datetaken": "2010-01-24 00:12:43", "license": "1", "title": "IMG_0011", "text": "", "album_id": "72157623446666698", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4362627842_52e4707dc7_o.jpg", "secret": "8df6aa2716", "media": "photo", "latitude": "0", "id": "4362627842", "tags": "birthday friends philadelphia bar fun january philly northernliberties 2010 nolibs"}, {"datetaken": "2005-06-15 21:28:59", "license": "1", "title": "Neil", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19680294_5755a60f84_o.jpg", "secret": "5755a60f84", "media": "photo", "latitude": "0", "id": "19680294", "tags": "sarcasmo movienight birthday karoke philadelphia"}, {"datetaken": "2005-06-15 21:33:17", "license": "1", "title": "Jill", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19680298_b17cec8725_o.jpg", "secret": "b17cec8725", "media": "photo", "latitude": "0", "id": "19680298", "tags": "birthdayarokeatmcgillans sarcasmo movienight birthday karoke philadelphia"}, {"datetaken": "2005-06-15 21:36:16", "license": "1", "title": "Jill 2", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19680300_9330b9dcae_o.jpg", "secret": "9330b9dcae", "media": "photo", "latitude": "0", "id": "19680300", "tags": "birthdayarokeatmcgillans sarcasmo movienight birthday karoke philadelphia"}, {"datetaken": "2005-06-15 21:39:02", "license": "1", "title": "Jill and Cyn", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19680344_d7dec88629_o.jpg", "secret": "d7dec88629", "media": "photo", "latitude": "0", "id": "19680344", "tags": "birthdayarokeatmcgillans sarcasmo movienight birthday karoke philadelphia"}, {"datetaken": "2005-06-15 21:42:08", "license": "1", "title": "Amy", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19680346_24e9add195_o.jpg", "secret": "24e9add195", "media": "photo", "latitude": "0", "id": "19680346", "tags": "birthdayarokeatmcgillans sarcasmo movienight birthday karoke philadelphia"}, {"datetaken": "2005-06-15 21:47:50", "license": "1", "title": "Sam", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19680350_e10bcb82bb_o.jpg", "secret": "e10bcb82bb", "media": "photo", "latitude": "0", "id": "19680350", "tags": "sarcasmo movienight birthday karoke philadelphiabirthdayarokeatmcgillans"}, {"datetaken": "2005-06-15 21:53:05", "license": "1", "title": "Star", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19680361_d9811344a2_o.jpg", "secret": "d9811344a2", "media": "photo", "latitude": "0", "id": "19680361", "tags": "birthdayarokeatmcgillans sarcasmo movienight birthday karoke philadelphia"}, {"datetaken": "2005-06-15 23:44:31", "license": "1", "title": "Amy and Sam", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19680374_b10920cfb0_o.jpg", "secret": "b10920cfb0", "media": "photo", "latitude": "0", "id": "19680374", "tags": "birthdayarokeatmcgillans sarcasmo movienight birthday karoke philadelphia"}, {"datetaken": "2005-06-15 23:44:36", "license": "1", "title": "Sam and Dave", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19680378_48abedfad9_o.jpg", "secret": "48abedfad9", "media": "photo", "latitude": "0", "id": "19680378", "tags": "birthdayarokeatmcgillans sarcasmo movienight birthday karoke philadelphia"}, {"datetaken": "2005-06-15 23:44:42", "license": "1", "title": "Neil and Jill", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19680383_df6ec4f256_o.jpg", "secret": "df6ec4f256", "media": "photo", "latitude": "0", "id": "19680383", "tags": "birthdayarokeatmcgillans sarcasmo movienight birthday karoke philadelphia"}, {"datetaken": "2005-06-15 23:53:15", "license": "1", "title": "Zoe", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19680387_28502d2248_o.jpg", "secret": "28502d2248", "media": "photo", "latitude": "0", "id": "19680387", "tags": "birthdayarokeatmcgillans sarcasmo movienight birthday karoke philadelphia"}, {"datetaken": "2005-06-15 23:54:47", "license": "1", "title": "Mike", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19680328_3a099a9d98_o.jpg", "secret": "3a099a9d98", "media": "photo", "latitude": "0", "id": "19680328", "tags": "birthdayarokeatmcgillans sarcasmo movienight birthday karoke philadelphia"}, {"datetaken": "2005-06-16 00:12:06", "license": "1", "title": "Amy and Sam Duet", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19680390_4a80d5f737_o.jpg", "secret": "4a80d5f737", "media": "photo", "latitude": "0", "id": "19680390", "tags": "birthdayarokeatmcgillans sarcasmo movienight birthday karoke philadelphia"}, {"datetaken": "2005-06-16 00:15:14", "license": "1", "title": "Amy and Sam Duet (2)", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19680404_e07f562658_o.jpg", "secret": "e07f562658", "media": "photo", "latitude": "0", "id": "19680404", "tags": "sarcasmo movienight birthday karoke philadelphia"}, {"datetaken": "2005-06-16 00:19:42", "license": "1", "title": "Mike", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19680408_4f313d738d_o.jpg", "secret": "4f313d738d", "media": "photo", "latitude": "0", "id": "19680408", "tags": "birthdayarokeatmcgillans sarcasmo movienight birthday karoke philadelphia"}, {"datetaken": "2005-06-16 00:21:22", "license": "1", "title": "Mike and the 'Devil Went Down to Georgia Dancers' (2)", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19680425_77f68b6174_o.jpg", "secret": "77f68b6174", "media": "photo", "latitude": "0", "id": "19680425", "tags": "birthdayarokeatmcgillans sarcasmo movienight birthday karoke philadelphia"}, {"datetaken": "2005-06-16 00:51:26", "license": "1", "title": "Dave", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19680428_d57a59466b_o.jpg", "secret": "d57a59466b", "media": "photo", "latitude": "0", "id": "19680428", "tags": "birthdayarokeatmcgillans sarcasmo movienight birthday karoke philadelphia"}, {"datetaken": "2005-06-16 00:52:48", "license": "1", "title": "Sam and Star", "text": "", "album_id": "461589", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19680435_03142b2da4_o.jpg", "secret": "03142b2da4", "media": "photo", "latitude": "0", "id": "19680435", "tags": "birthdayarokeatmcgillans sarcasmo movienight birthday karoke philadelphia"}, {"datetaken": "2007-09-21 11:13:54", "license": "5", "title": "group_2", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1439/1416374115_75b7414a88_o.jpg", "secret": "03629209a8", "media": "photo", "latitude": "0", "id": "1416374115", "tags": ""}, {"datetaken": "2007-09-21 11:13:54", "license": "5", "title": "hand action julie", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1323/1416374159_c03a888f00_o.jpg", "secret": "1556a0ead6", "media": "photo", "latitude": "0", "id": "1416374159", "tags": ""}, {"datetaken": "2007-09-21 11:13:55", "license": "5", "title": "gutter fountain1", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1073/1416374197_dca5b47b9a_o.jpg", "secret": "ab885f38b6", "media": "photo", "latitude": "0", "id": "1416374197", "tags": ""}, {"datetaken": "2007-09-21 11:13:56", "license": "5", "title": "kyle_chair", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1353/1417254048_5f1738105c_o.jpg", "secret": "f218e7c1ff", "media": "photo", "latitude": "0", "id": "1417254048", "tags": ""}, {"datetaken": "2007-09-21 11:13:56", "license": "5", "title": "gutter_fountian2", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1254/1417253988_58d87b026d_o.jpg", "secret": "cb396c1c18", "media": "photo", "latitude": "0", "id": "1417253988", "tags": ""}, {"datetaken": "2007-09-21 11:13:57", "license": "5", "title": "kai_2-1", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1208/1416374305_5fea63a9de_o.jpg", "secret": "1a526f2439", "media": "photo", "latitude": "0", "id": "1416374305", "tags": ""}, {"datetaken": "2007-09-21 11:13:58", "license": "5", "title": "group_2-1", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1055/1416374357_e5405625dd_o.jpg", "secret": "8c2652f307", "media": "photo", "latitude": "0", "id": "1416374357", "tags": ""}, {"datetaken": "2007-09-21 11:13:59", "license": "5", "title": "loch_lomond", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1169/1416374441_6988bee2f9_o.jpg", "secret": "62f8f10dd5", "media": "photo", "latitude": "0", "id": "1416374441", "tags": ""}, {"datetaken": "2007-09-21 11:13:59", "license": "5", "title": "hand action mandy", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1382/1416374399_f58dd92a04_o.jpg", "secret": "ef36d54b77", "media": "photo", "latitude": "0", "id": "1416374399", "tags": ""}, {"datetaken": "2007-09-21 11:14:00", "license": "5", "title": "group_1", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1216/1417254244_eb5aa3115a_o.jpg", "secret": "26e79b0f46", "media": "photo", "latitude": "0", "id": "1417254244", "tags": ""}, {"datetaken": "2007-09-21 11:14:01", "license": "5", "title": "gutter_fountain3", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1414/1417254318_63f7715315_o.jpg", "secret": "80c75fbc47", "media": "photo", "latitude": "0", "id": "1417254318", "tags": ""}, {"datetaken": "2007-09-21 11:14:01", "license": "5", "title": "David_Paper", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1391/1416374531_24f1068fb7_o.jpg", "secret": "4b89f6f4dc", "media": "photo", "latitude": "0", "id": "1416374531", "tags": ""}, {"datetaken": "2007-09-21 11:14:03", "license": "5", "title": "jimmy_kyle_patricia-1", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1315/1417254440_b376b680d6_o.jpg", "secret": "2868f805f3", "media": "photo", "latitude": "0", "id": "1417254440", "tags": ""}, {"datetaken": "2007-09-21 11:14:03", "license": "5", "title": "kai_1", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1083/1416374645_67f95ec061_o.jpg", "secret": "7e4b696cfb", "media": "photo", "latitude": "0", "id": "1416374645", "tags": ""}, {"datetaken": "2007-09-21 11:14:04", "license": "5", "title": "birthday_boy", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1118/1417254530_82b80b2e42_o.jpg", "secret": "7cd58b07a6", "media": "photo", "latitude": "0", "id": "1417254530", "tags": ""}, {"datetaken": "2007-09-21 11:14:04", "license": "5", "title": "john_thumbs up", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1314/1416374727_e9dfc0cb4b_o.jpg", "secret": "0bed75e9d8", "media": "photo", "latitude": "0", "id": "1416374727", "tags": ""}, {"datetaken": "2007-09-21 11:14:05", "license": "5", "title": "jimmy_kyle_patricia", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1097/1416374811_e4f30b8820_o.jpg", "secret": "0744b338c8", "media": "photo", "latitude": "0", "id": "1416374811", "tags": ""}, {"datetaken": "2007-09-21 11:14:06", "license": "5", "title": "marina_mod", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1186/1416374857_8990fcf563_o.jpg", "secret": "385abc83d8", "media": "photo", "latitude": "0", "id": "1416374857", "tags": ""}, {"datetaken": "2007-09-21 11:14:06", "license": "5", "title": "john_chair", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1426/1417254652_e2ee0fd0e1_o.jpg", "secret": "ae6a78ed22", "media": "photo", "latitude": "0", "id": "1417254652", "tags": ""}, {"datetaken": "2007-09-21 11:14:08", "license": "5", "title": "kai_1-1", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1398/1416375003_76d1fe5819_o.jpg", "secret": "cedca6c6e5", "media": "photo", "latitude": "0", "id": "1416375003", "tags": ""}, {"datetaken": "2007-09-21 11:14:08", "license": "5", "title": "kai_2", "text": "", "album_id": "72157602164004338", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1214/1417254738_a582bbf82a_o.jpg", "secret": "c89d66ba58", "media": "photo", "latitude": "0", "id": "1417254738", "tags": ""}, {"datetaken": "2010-01-15 23:15:17", "license": "1", "title": "Jim's 30th Birthday 01", "text": "", "album_id": "72157623317546850", "longitude": "-122.316756", "url_o": "https://farm3.staticflickr.com/2724/4282715083_07b14c6caa_o.jpg", "secret": "54781a64d3", "media": "photo", "latitude": "47.676032", "id": "4282715083", "tags": "seattle party bar natalie teddys jasen"}, {"datetaken": "2010-01-15 23:18:28", "license": "1", "title": "Jim's 30th Birthday 02", "text": "", "album_id": "72157623317546850", "longitude": "-122.316756", "url_o": "https://farm5.staticflickr.com/4042/4283467506_9182d4d84f_o.jpg", "secret": "08a214c56d", "media": "photo", "latitude": "47.676032", "id": "4283467506", "tags": "seattle party bar eric kaitlin teddys jimc"}, {"datetaken": "2010-01-15 23:28:08", "license": "1", "title": "Jim's 30th Birthday 03", "text": "", "album_id": "72157623317546850", "longitude": "-122.316756", "url_o": "https://farm3.staticflickr.com/2753/4282728353_0a3d59b81b_o.jpg", "secret": "2727184108", "media": "photo", "latitude": "47.676032", "id": "4282728353", "tags": "seattle party bar megan teddys jimc"}, {"datetaken": "2010-01-15 23:29:23", "license": "1", "title": "Jim's 30th Birthday 04", "text": "", "album_id": "72157623317546850", "longitude": "-122.316756", "url_o": "https://farm5.staticflickr.com/4067/4282730857_1161a9f1cc_o.jpg", "secret": "c76b037945", "media": "photo", "latitude": "47.676032", "id": "4282730857", "tags": "seattle party bar megan suze teddys jimc"}, {"datetaken": "2010-01-15 23:31:24", "license": "1", "title": "Jim's 30th Birthday 05", "text": "", "album_id": "72157623317546850", "longitude": "-122.316756", "url_o": "https://farm5.staticflickr.com/4009/4283479786_6dab68ab35_o.jpg", "secret": "6c4e94055e", "media": "photo", "latitude": "47.676032", "id": "4283479786", "tags": "seattle party bar sara happybirthday teddys jimc amybell"}, {"datetaken": "2010-01-16 00:03:22", "license": "1", "title": "Jim's 30th Birthday 06", "text": "", "album_id": "72157623317546850", "longitude": "-122.316756", "url_o": "https://farm5.staticflickr.com/4023/4282740691_fee32d4637_o.jpg", "secret": "0716795276", "media": "photo", "latitude": "47.676032", "id": "4282740691", "tags": "seattle party me bar suze teddys"}, {"datetaken": "2010-01-16 00:05:04", "license": "1", "title": "Jim's 30th Birthday 07", "text": "", "album_id": "72157623317546850", "longitude": "-122.316756", "url_o": "https://farm5.staticflickr.com/4051/4282741635_b712fde706_o.jpg", "secret": "1b0731b30f", "media": "photo", "latitude": "47.676032", "id": "4282741635", "tags": "seattle party bar sara taco teddys jimc"}, {"datetaken": "2010-01-16 00:22:02", "license": "1", "title": "Jim's 30th Birthday 08", "text": "", "album_id": "72157623317546850", "longitude": "-122.316756", "url_o": "https://farm5.staticflickr.com/4013/4283489050_1897d46f73_o.jpg", "secret": "caa603fd41", "media": "photo", "latitude": "47.676032", "id": "4283489050", "tags": "seattle party bar megan teddys johnfuchs"}, {"datetaken": "2010-01-16 00:23:11", "license": "1", "title": "Jim's 30th Birthday 09", "text": "", "album_id": "72157623317546850", "longitude": "-122.316756", "url_o": "https://farm5.staticflickr.com/4061/4282749845_ae6c9ab193_o.jpg", "secret": "6f81ae880e", "media": "photo", "latitude": "47.676032", "id": "4282749845", "tags": "seattle party me bar suze teddys"}, {"datetaken": "2010-01-16 00:23:16", "license": "1", "title": "Jim's 30th Birthday 10", "text": "", "album_id": "72157623317546850", "longitude": "-122.316756", "url_o": "https://farm5.staticflickr.com/4066/4282756595_2534eeebae_o.jpg", "secret": "c968fc01f8", "media": "photo", "latitude": "47.676032", "id": "4282756595", "tags": "seattle party bar megan teddys johnfuchs"}, {"datetaken": "2010-01-16 00:34:58", "license": "1", "title": "Jim's 30th Birthday 11", "text": "", "album_id": "72157623317546850", "longitude": "-122.317271", "url_o": "https://farm5.staticflickr.com/4016/4283506660_e280065444_o.jpg", "secret": "5c76659233", "media": "photo", "latitude": "47.676188", "id": "4283506660", "tags": "seattle party bar hug megan theatlanticcrossing"}, {"datetaken": "2010-01-16 00:37:26", "license": "1", "title": "Jim's 30th Birthday 12", "text": "", "album_id": "72157623317546850", "longitude": "-122.317271", "url_o": "https://farm3.staticflickr.com/2804/4283511962_836b1f3300_o.jpg", "secret": "82908dc73f", "media": "photo", "latitude": "47.676188", "id": "4283511962", "tags": "seattle party me bar shots megan hastings ingo theatlanticcrossing"}, {"datetaken": "2010-01-16 00:39:03", "license": "1", "title": "Jim's 30th Birthday 13", "text": "", "album_id": "72157623317546850", "longitude": "-122.317271", "url_o": "https://farm5.staticflickr.com/4059/4282771839_33903e6dd0_o.jpg", "secret": "225b46d38c", "media": "photo", "latitude": "47.676188", "id": "4282771839", "tags": "seattle party bar piper robbie theatlanticcrossing"}, {"datetaken": "2010-01-16 00:39:06", "license": "1", "title": "Jim's 30th Birthday 14", "text": "", "album_id": "72157623317546850", "longitude": "-122.317271", "url_o": "https://farm5.staticflickr.com/4017/4282774601_97a1f0beee_o.jpg", "secret": "15e8755599", "media": "photo", "latitude": "47.676188", "id": "4282774601", "tags": "seattle party bar megan theatlanticcrossing"}, {"datetaken": "2010-01-16 00:39:57", "license": "1", "title": "Jim's 30th Birthday 15", "text": "", "album_id": "72157623317546850", "longitude": "-122.317271", "url_o": "https://farm5.staticflickr.com/4036/4282779603_10d150ca7d_o.jpg", "secret": "c9d9e2d293", "media": "photo", "latitude": "47.676188", "id": "4282779603", "tags": "seattle party bar kiss robbie scottie theatlanticcrossing"}, {"datetaken": "2010-01-16 00:41:06", "license": "1", "title": "Jim's 30th Birthday 16", "text": "", "album_id": "72157623317546850", "longitude": "-122.317271", "url_o": "https://farm5.staticflickr.com/4013/4283528116_cbbb694cc6_o.jpg", "secret": "d67f012cd2", "media": "photo", "latitude": "47.676188", "id": "4283528116", "tags": "seattle party me bar fav robbie theatlanticcrossing"}, {"datetaken": "2010-01-16 01:18:03", "license": "1", "title": "Jim's 30th Birthday 20", "text": "", "album_id": "72157623317546850", "longitude": "-122.316756", "url_o": "https://farm5.staticflickr.com/4002/4282806319_51f87c04e3_o.jpg", "secret": "49e7f8c7c0", "media": "photo", "latitude": "47.676032", "id": "4282806319", "tags": "seattle party me bar highfive teddys"}, {"datetaken": "2010-01-16 01:20:21", "license": "1", "title": "Jim's 30th Birthday 23", "text": "", "album_id": "72157623317546850", "longitude": "-122.316756", "url_o": "https://farm3.staticflickr.com/2756/4282820099_1d491c1584_o.jpg", "secret": "3b469b6997", "media": "photo", "latitude": "47.676032", "id": "4282820099", "tags": "seattle party bar devin suze teddys jimc"}, {"datetaken": "2010-01-16 01:27:49", "license": "1", "title": "Jim's 30th Birthday 24", "text": "", "album_id": "72157623317546850", "longitude": "-122.316756", "url_o": "https://farm5.staticflickr.com/4069/4283569242_fe9aff9e4a_o.jpg", "secret": "2f241fe1d8", "media": "photo", "latitude": "47.676032", "id": "4283569242", "tags": "seattle party bar tummy bellybutton navel teddys"}, {"datetaken": "2010-01-17 13:11:24", "license": "5", "title": "Birthday Boy is Tired...", "text": "", "album_id": "72157623233370074", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4284502992_706bc4aea1_o.jpg", "secret": "7ddd62edf1", "media": "photo", "latitude": "0", "id": "4284502992", "tags": ""}, {"datetaken": "2010-01-17 13:12:46", "license": "5", "title": "Nicholas", "text": "", "album_id": "72157623233370074", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4283754505_be1910874a_o.jpg", "secret": "4c59c280aa", "media": "photo", "latitude": "0", "id": "4283754505", "tags": ""}, {"datetaken": "2010-01-17 13:13:24", "license": "5", "title": "Bouncy Bed", "text": "", "album_id": "72157623233370074", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4283762235_289d34fc9b_o.jpg", "secret": "8b9e208012", "media": "photo", "latitude": "0", "id": "4283762235", "tags": ""}, {"datetaken": "2010-01-17 13:15:58", "license": "5", "title": "Jasmine", "text": "", "album_id": "72157623233370074", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4284504694_caed48f187_o.jpg", "secret": "4c3395459c", "media": "photo", "latitude": "0", "id": "4284504694", "tags": ""}, {"datetaken": "2010-01-17 13:25:42", "license": "5", "title": "Delicious Appetizers", "text": "", "album_id": "72157623233370074", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4284505984_002b605af3_o.jpg", "secret": "8bb5513acb", "media": "photo", "latitude": "0", "id": "4284505984", "tags": ""}, {"datetaken": "2010-01-17 14:18:48", "license": "5", "title": "017/365 - Pluto!", "text": "", "album_id": "72157623233370074", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4284501402_5d956999a7_o.jpg", "secret": "cf9c3d6a17", "media": "photo", "latitude": "0", "id": "4284501402", "tags": ""}, {"datetaken": "2010-01-17 14:25:54", "license": "5", "title": "Blowing Out Candles", "text": "", "album_id": "72157623233370074", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2702/4283751535_15ecb80c47_o.jpg", "secret": "2b15139ed0", "media": "photo", "latitude": "0", "id": "4283751535", "tags": ""}, {"datetaken": "2010-01-17 14:28:10", "license": "5", "title": "Happy Birthday Nicholas!", "text": "", "album_id": "72157623233370074", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2642/4284508954_41dcd6c10c_o.jpg", "secret": "d1818aa4f3", "media": "photo", "latitude": "0", "id": "4284508954", "tags": ""}, {"datetaken": "2010-01-17 14:39:20", "license": "5", "title": "Baby Piano", "text": "", "album_id": "72157623233370074", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4284503856_f13cef0ec9_o.jpg", "secret": "9c5c79aaa9", "media": "photo", "latitude": "0", "id": "4284503856", "tags": ""}, {"datetaken": "2010-01-17 15:54:01", "license": "5", "title": "Sunday Volleyball", "text": "", "album_id": "72157623233370074", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4284498074_b0e7b19c2f_o.jpg", "secret": "d9834a367e", "media": "photo", "latitude": "0", "id": "4284498074", "tags": ""}, {"datetaken": "2005-05-16 05:50:03", "license": "2", "title": "Paper! They Gave Me Paper!", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14373142_f7db381236_o.jpg", "secret": "f7db381236", "media": "photo", "latitude": "0", "id": "14373142", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 05:51:51", "license": "2", "title": "Mmm, Bows", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14373122_b7d0fdd599_o.jpg", "secret": "b7d0fdd599", "media": "photo", "latitude": "0", "id": "14373122", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 05:54:11", "license": "2", "title": "FAB-U-LOUS", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14373109_53e13d61a1_o.jpg", "secret": "53e13d61a1", "media": "photo", "latitude": "0", "id": "14373109", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 05:55:10", "license": "2", "title": "I'm A Pretty Boy", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14373103_8aea7d67af_o.jpg", "secret": "8aea7d67af", "media": "photo", "latitude": "0", "id": "14373103", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 05:55:55", "license": "2", "title": "I Hope There's A Girl In Here", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14373061_584c3157cf_o.jpg", "secret": "584c3157cf", "media": "photo", "latitude": "0", "id": "14373061", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 05:56:44", "license": "2", "title": "The Sound of Slowly Ripping Paper", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14373087_2bdbd4aecb_o.jpg", "secret": "2bdbd4aecb", "media": "photo", "latitude": "0", "id": "14373087", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 05:59:50", "license": "2", "title": "RAWR!!", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14373042_9e72c90f18_o.jpg", "secret": "9e72c90f18", "media": "photo", "latitude": "0", "id": "14373042", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 05:59:59", "license": "2", "title": "Brian, Scared Of His Own Horn", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14373027_9b76a2a4d7_o.jpg", "secret": "9b76a2a4d7", "media": "photo", "latitude": "0", "id": "14373027", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 06:03:53", "license": "2", "title": "Mmmm, Noisy Toys", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14372988_6acde75221_o.jpg", "secret": "6acde75221", "media": "photo", "latitude": "0", "id": "14372988", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 06:08:10", "license": "2", "title": "CAKE!!", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14372943_4960758ef9_o.jpg", "secret": "4960758ef9", "media": "photo", "latitude": "0", "id": "14372943", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 06:09:17", "license": "2", "title": "Are You Trying To Take My Cake?", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14372908_b7f09b18d0_o.jpg", "secret": "b7f09b18d0", "media": "photo", "latitude": "0", "id": "14372908", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 06:10:34", "license": "2", "title": "No, Really, Are You?", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14372867_5953007080_o.jpg", "secret": "5953007080", "media": "photo", "latitude": "0", "id": "14372867", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 06:11:39", "license": "2", "title": "I've Got My Eye On You", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/14372832_3bfca4924d_o.jpg", "secret": "3bfca4924d", "media": "photo", "latitude": "0", "id": "14372832", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 06:11:47", "license": "2", "title": "Ok, Not You Too!", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14372793_a7e09223f2_o.jpg", "secret": "a7e09223f2", "media": "photo", "latitude": "0", "id": "14372793", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 06:14:00", "license": "2", "title": "CAKE!!!", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14372748_a5f892e4f4_o.jpg", "secret": "a5f892e4f4", "media": "photo", "latitude": "0", "id": "14372748", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 06:19:26", "license": "2", "title": "Guess Who's One!", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/14332823_a3cb891d2a_o.jpg", "secret": "a3cb891d2a", "media": "photo", "latitude": "0", "id": "14332823", "tags": "2005 may brian lawver birthday baby cake mess"}, {"datetaken": "2005-05-16 06:19:41", "license": "2", "title": "I Ruled That Cake", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/14372726_dd0b6348c6_o.jpg", "secret": "dd0b6348c6", "media": "photo", "latitude": "0", "id": "14372726", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 06:28:26", "license": "2", "title": "Cake Goes Down The Drain", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14372689_f055441367_o.jpg", "secret": "f055441367", "media": "photo", "latitude": "0", "id": "14372689", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 06:28:50", "license": "2", "title": "Is That More Cake?", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/14372649_9d922e772e_o.jpg", "secret": "9d922e772e", "media": "photo", "latitude": "0", "id": "14372649", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2005-05-16 06:30:05", "license": "2", "title": "Holy Crap, Mom!", "text": "", "album_id": "347887", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/14372633_4abc7fb18b_o.jpg", "secret": "4abc7fb18b", "media": "photo", "latitude": "0", "id": "14372633", "tags": "birthday 2005 may brian lawver first"}, {"datetaken": "2010-02-07 13:50:48", "license": "5", "title": ".", "text": "", "album_id": "72157623460934854", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4367655489_98c555e541_o.jpg", "secret": "ed7f034dd5", "media": "photo", "latitude": "0", "id": "4367655489", "tags": "birthday"}, {"datetaken": "2010-02-07 13:51:52", "license": "5", "title": "Roe Roe", "text": "", "album_id": "72157623460934854", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4367655505_9901faa557_o.jpg", "secret": "d4e54f593b", "media": "photo", "latitude": "0", "id": "4367655505", "tags": "birthday"}, {"datetaken": "2010-02-07 13:53:15", "license": "5", "title": ".", "text": "", "album_id": "72157623460934854", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4367655577_1283be79f2_o.jpg", "secret": "2ce4a164f7", "media": "photo", "latitude": "0", "id": "4367655577", "tags": "birthday"}, {"datetaken": "2010-02-07 13:53:15", "license": "5", "title": ".", "text": "", "album_id": "72157623460934854", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4367655525_d2778fbc63_o.jpg", "secret": "4071bfbc34", "media": "photo", "latitude": "0", "id": "4367655525", "tags": "birthday"}, {"datetaken": "2010-02-07 13:53:27", "license": "5", "title": ".", "text": "", "album_id": "72157623460934854", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4368402460_939ace9430_o.jpg", "secret": "8412138a38", "media": "photo", "latitude": "0", "id": "4368402460", "tags": "birthday"}, {"datetaken": "2010-02-07 13:58:05", "license": "5", "title": ".", "text": "", "album_id": "72157623460934854", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4367655791_894e22e172_o.jpg", "secret": "2a2cb4bc0d", "media": "photo", "latitude": "0", "id": "4367655791", "tags": "birthday"}, {"datetaken": "2010-02-07 17:01:42", "license": "5", "title": ".", "text": "", "album_id": "72157623460934854", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2450/4367655977_6fc2046880_o.jpg", "secret": "b39b861983", "media": "photo", "latitude": "0", "id": "4367655977", "tags": "birthday"}, {"datetaken": "2010-02-07 17:02:25", "license": "5", "title": ".", "text": "", "album_id": "72157623460934854", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4367656069_5cd226f87e_o.jpg", "secret": "555a69b233", "media": "photo", "latitude": "0", "id": "4367656069", "tags": "birthday"}, {"datetaken": "2010-02-07 17:02:50", "license": "5", "title": ".", "text": "", "album_id": "72157623460934854", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4367656291_88dd06234e_o.jpg", "secret": "5d82e7c70b", "media": "photo", "latitude": "0", "id": "4367656291", "tags": "birthday"}, {"datetaken": "2010-02-07 17:02:51", "license": "5", "title": ".", "text": "", "album_id": "72157623460934854", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2780/4367656511_c086b0e774_o.jpg", "secret": "44ee9a0128", "media": "photo", "latitude": "0", "id": "4367656511", "tags": "birthday"}, {"datetaken": "2010-02-07 17:03:08", "license": "5", "title": ".", "text": "", "album_id": "72157623460934854", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4368403360_34c41e5a3a_o.jpg", "secret": "d87a5fde12", "media": "photo", "latitude": "0", "id": "4368403360", "tags": "birthday"}, {"datetaken": "2010-02-07 17:04:05", "license": "5", "title": "", "text": "", "album_id": "72157623460934854", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4367656785_b26a6a268e_o.jpg", "secret": "0820311884", "media": "photo", "latitude": "0", "id": "4367656785", "tags": "birthday"}, {"datetaken": "2010-02-07 17:06:41", "license": "5", "title": ".", "text": "", "album_id": "72157623460934854", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4368403514_7b32b0f9cb_o.jpg", "secret": "cf863f06b7", "media": "photo", "latitude": "0", "id": "4368403514", "tags": "birthday"}, {"datetaken": "2010-02-07 17:07:09", "license": "5", "title": ".", "text": "", "album_id": "72157623460934854", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4367656955_a5c0d9db03_o.jpg", "secret": "2a0e9abd6c", "media": "photo", "latitude": "0", "id": "4367656955", "tags": "birthday"}, {"datetaken": "2010-02-07 17:12:35", "license": "5", "title": ".", "text": "", "album_id": "72157623460934854", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4367657065_669741c642_o.jpg", "secret": "bcb210f060", "media": "photo", "latitude": "0", "id": "4367657065", "tags": "birthday"}, {"datetaken": "2010-02-07 17:12:41", "license": "5", "title": ".", "text": "", "album_id": "72157623460934854", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4367657155_1866c10469_o.jpg", "secret": "015451d2bb", "media": "photo", "latitude": "0", "id": "4367657155", "tags": "birthday"}, {"datetaken": "2005-06-18 21:01:06", "license": "3", "title": "IMG_0942", "text": "", "album_id": "471782", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20176492_adfe68c83b_o.jpg", "secret": "adfe68c83b", "media": "photo", "latitude": "0", "id": "20176492", "tags": "alanna birthday"}, {"datetaken": "2005-06-18 21:02:55", "license": "3", "title": "IMG_0945", "text": "", "album_id": "471782", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20176633_9843f9c301_o.jpg", "secret": "9843f9c301", "media": "photo", "latitude": "0", "id": "20176633", "tags": "alanna birthday"}, {"datetaken": "2005-06-18 21:03:44", "license": "3", "title": "IMG_0946", "text": "", "album_id": "471782", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20176761_f13cb173af_o.jpg", "secret": "f13cb173af", "media": "photo", "latitude": "0", "id": "20176761", "tags": "alanna birthday"}, {"datetaken": "2005-06-18 21:04:14", "license": "3", "title": "IMG_0947", "text": "", "album_id": "471782", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20176906_002278fb81_o.jpg", "secret": "002278fb81", "media": "photo", "latitude": "0", "id": "20176906", "tags": "alanna birthday"}, {"datetaken": "2005-06-18 21:05:22", "license": "3", "title": "IMG_0948", "text": "", "album_id": "471782", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20177048_c17619baf7_o.jpg", "secret": "c17619baf7", "media": "photo", "latitude": "0", "id": "20177048", "tags": "alanna birthday"}, {"datetaken": "2005-06-18 21:05:38", "license": "3", "title": "IMG_0949", "text": "", "album_id": "471782", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20177279_9ea8d5939d_o.jpg", "secret": "9ea8d5939d", "media": "photo", "latitude": "0", "id": "20177279", "tags": "alanna birthday"}, {"datetaken": "2005-06-18 21:09:28", "license": "3", "title": "IMG_0950", "text": "", "album_id": "471782", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20177513_fe0f6291ab_o.jpg", "secret": "fe0f6291ab", "media": "photo", "latitude": "0", "id": "20177513", "tags": "alanna birthday"}, {"datetaken": "2005-06-18 21:09:47", "license": "3", "title": "IMG_0951", "text": "", "album_id": "471782", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20177626_cb00794420_o.jpg", "secret": "cb00794420", "media": "photo", "latitude": "0", "id": "20177626", "tags": "alanna birthday"}, {"datetaken": "2005-06-18 21:11:54", "license": "3", "title": "IMG_0952", "text": "", "album_id": "471782", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20177741_78cc2a37b1_o.jpg", "secret": "78cc2a37b1", "media": "photo", "latitude": "0", "id": "20177741", "tags": "alanna birthday"}, {"datetaken": "2005-06-18 21:12:05", "license": "3", "title": "IMG_0953", "text": "", "album_id": "471782", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20177972_ab51aedcd4_o.jpg", "secret": "ab51aedcd4", "media": "photo", "latitude": "0", "id": "20177972", "tags": "alanna birthday"}, {"datetaken": "2005-06-18 21:12:23", "license": "3", "title": "IMG_0955", "text": "", "album_id": "471782", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20178166_10bb51ecde_o.jpg", "secret": "10bb51ecde", "media": "photo", "latitude": "0", "id": "20178166", "tags": "alanna birthday"}, {"datetaken": "2005-06-18 21:12:24", "license": "3", "title": "IMG_0956", "text": "", "album_id": "471782", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20178268_5622270792_o.jpg", "secret": "5622270792", "media": "photo", "latitude": "0", "id": "20178268", "tags": "alanna birthday"}, {"datetaken": "2008-03-18 21:42:06", "license": "3", "title": "28 candles (11901)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm4.staticflickr.com/3139/2345757611_778db439d9_o.jpg", "secret": "e3ffc78499", "media": "photo", "latitude": "37.770239", "id": "2345757611", "tags": "birthday friends party people 20d cake bar night canon fire candles singing birthdayparty flame birthdaycake handheld karaoke blowingoutcandles themint 35l ef35mmf14lusm canon35mmf14lusm"}, {"datetaken": "2008-03-18 21:43:06", "license": "3", "title": "quartet @ the Mint (11902)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm3.staticflickr.com/2026/2345826833_aaa7213b8c_o.jpg", "secret": "c5c84f4274", "media": "photo", "latitude": "37.770239", "id": "2345826833", "tags": "birthday friends party people musician music 20d bar night canon singing song stage birthdayparty singer handheld singers karaoke amateur songs performances quartet themint 35l theemotions ef35mmf14lusm canon35mmf14lusm bestofmylove lizkennedy shelleykutilek"}, {"datetaken": "2008-03-18 21:43:15", "license": "3", "title": "quartet @ the Mint (11903)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm3.staticflickr.com/2250/2345830115_163ab22de7_o.jpg", "secret": "5ca29e10c6", "media": "photo", "latitude": "37.770239", "id": "2345830115", "tags": "birthday friends party people musician music 20d bar night canon singing song stage birthdayparty singer handheld singers karaoke amateur songs performances quartet themint 35l theemotions ef35mmf14lusm canon35mmf14lusm bestofmylove lizkennedy shelleykutilek"}, {"datetaken": "2008-03-18 21:43:41", "license": "3", "title": "quartet @ the mint, portrait (11904)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm3.staticflickr.com/2112/2345824177_f1ca7fd45a_o.jpg", "secret": "5b21b15a3c", "media": "photo", "latitude": "37.770239", "id": "2345824177", "tags": "birthday friends party people musician music 20d bar night canon singing song stage birthdayparty singer handheld singers karaoke amateur songs performances quartet themint 35l theemotions ef35mmf14lusm canon35mmf14lusm bestofmylove lizkennedy shelleykutilek"}, {"datetaken": "2008-03-18 21:44:06", "license": "3", "title": "quartet @ the Mint (11905)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm3.staticflickr.com/2078/2345761699_7640de5b86_o.jpg", "secret": "3fba97d6e6", "media": "photo", "latitude": "37.770239", "id": "2345761699", "tags": "birthday friends party people musician music 20d bar night canon singing song stage birthdayparty singer handheld singers karaoke amateur songs performances quartet themint 35l theemotions ef35mmf14lusm canon35mmf14lusm bestofmylove lizkennedy shelleykutilek"}, {"datetaken": "2008-03-18 21:44:27", "license": "3", "title": "quartet @ the Mint (11906)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm3.staticflickr.com/2037/2346594714_fbbfff8591_o.jpg", "secret": "594917442c", "media": "photo", "latitude": "37.770239", "id": "2346594714", "tags": "birthday friends party people musician music 20d bar night canon singing song stage birthdayparty singer handheld singers karaoke amateur songs performances quartet themint 35l theemotions ef35mmf14lusm canon35mmf14lusm bestofmylove lizkennedy shelleykutilek"}, {"datetaken": "2008-03-18 22:37:19", "license": "3", "title": "\"chain chain chain\" (11908)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm3.staticflickr.com/2344/2345770347_a9dc6f12fc_o.jpg", "secret": "91abd5b363", "media": "photo", "latitude": "37.770239", "id": "2345770347", "tags": "birthday friends party people musician music 20d bar night canon singing song stage birthdayparty singer handheld singers karaoke amateur songs performances arethafranklin themint 35l chainoffools ef35mmf14lusm canon35mmf14lusm"}, {"datetaken": "2008-03-18 22:37:43", "license": "3", "title": "the birthday girl takes the stage (11909)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm4.staticflickr.com/3220/2346602934_70038f4e59_o.jpg", "secret": "5344e3f699", "media": "photo", "latitude": "37.770239", "id": "2346602934", "tags": "birthday friends party people musician music 20d bar night canon singing song stage birthdayparty singer handheld singers karaoke amateur songs performances arethafranklin themint 35l chainoffools ef35mmf14lusm canon35mmf14lusm"}, {"datetaken": "2008-03-18 22:41:04", "license": "3", "title": "Liz sings the Divinyls (11910)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm3.staticflickr.com/2287/2346606736_0d551178bc_o.jpg", "secret": "65bb4cb043", "media": "photo", "latitude": "37.770239", "id": "2346606736", "tags": "birthday friends party people musician music 20d bar night canon singing song stage birthdayparty singer handheld singers karaoke amateur songs performances themint divinyls itouchmyself 35l whenithinkaboutyouitouchmyself ef35mmf14lusm canon35mmf14lusm lizkennedy"}, {"datetaken": "2008-03-18 22:41:25", "license": "3", "title": "liz @ the Mint, minus feet, plus lyrics (11911)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm4.staticflickr.com/3143/2345838237_544eb6f797_o.jpg", "secret": "c0b395cf83", "media": "photo", "latitude": "37.770239", "id": "2345838237", "tags": "birthday friends party people musician music 20d bar night canon singing song stage birthdayparty singer handheld singers karaoke amateur songs performances themint divinyls itouchmyself 35l whenithinkaboutyouitouchmyself ef35mmf14lusm canon35mmf14lusm lizkennedy"}, {"datetaken": "2008-03-18 22:41:57", "license": "3", "title": "Liz sings the Divinyls (11912)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm3.staticflickr.com/2173/2346612374_acb1613e6c_o.jpg", "secret": "ed513d75db", "media": "photo", "latitude": "37.770239", "id": "2346612374", "tags": "birthday friends party people musician music 20d bar night canon singing song stage birthdayparty singer handheld singers karaoke amateur songs performances themint divinyls itouchmyself 35l whenithinkaboutyouitouchmyself ef35mmf14lusm canon35mmf14lusm lizkennedy"}, {"datetaken": "2008-03-18 22:41:59", "license": "3", "title": "Liz, blurry (11913)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm4.staticflickr.com/3101/2346616050_5e8199ea95_o.jpg", "secret": "cf7720fddd", "media": "photo", "latitude": "37.770239", "id": "2346616050", "tags": "birthday friends party people musician music 20d bar night canon singing song stage birthdayparty singer handheld singers karaoke amateur songs performances themint divinyls itouchmyself 35l whenithinkaboutyouitouchmyself ef35mmf14lusm canon35mmf14lusm lizkennedy"}, {"datetaken": "2008-03-18 22:42:00", "license": "3", "title": "Liz sings the Divinyls' one hit song (11914)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm3.staticflickr.com/2004/2345791285_19ec54eae4_o.jpg", "secret": "6df7953704", "media": "photo", "latitude": "37.770239", "id": "2345791285", "tags": "birthday friends party people musician music 20d bar night canon singing song stage birthdayparty singer handheld singers karaoke amateur songs performances themint divinyls itouchmyself 35l whenithinkaboutyouitouchmyself ef35mmf14lusm canon35mmf14lusm lizkennedy"}, {"datetaken": "2008-03-18 22:42:17", "license": "3", "title": "more moves (11915)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm3.staticflickr.com/2204/2345795875_7b8c4596a0_o.jpg", "secret": "779b0d1744", "media": "photo", "latitude": "37.770239", "id": "2345795875", "tags": "birthday friends party people musician music 20d bar night canon singing song stage birthdayparty singer handheld singers karaoke amateur songs performances themint divinyls itouchmyself 35l whenithinkaboutyouitouchmyself ef35mmf14lusm canon35mmf14lusm lizkennedy"}, {"datetaken": "2008-03-18 22:42:18", "license": "3", "title": "instrumental break (11916)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm3.staticflickr.com/2331/2346629350_f6524507d8_o.jpg", "secret": "236d48c302", "media": "photo", "latitude": "37.770239", "id": "2346629350", "tags": "birthday friends party people musician music 20d bar night canon singing song stage birthdayparty singer handheld singers karaoke amateur songs performances themint divinyls itouchmyself 35l whenithinkaboutyouitouchmyself ef35mmf14lusm canon35mmf14lusm lizkennedy"}, {"datetaken": "2008-03-18 22:42:51", "license": "3", "title": "Liz shows off her moves (11918)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm3.staticflickr.com/2069/2346633300_9908a5aceb_o.jpg", "secret": "065dc9beec", "media": "photo", "latitude": "37.770239", "id": "2346633300", "tags": "birthday friends party people musician music 20d bar night canon singing song stage birthdayparty singer handheld singers karaoke amateur songs performances themint divinyls itouchmyself 35l whenithinkaboutyouitouchmyself ef35mmf14lusm canon35mmf14lusm lizkennedy"}, {"datetaken": "2008-03-18 22:42:53", "license": "3", "title": "Liz sings the Divinyls (11919)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm3.staticflickr.com/2231/2345808849_9a576da9c5_o.jpg", "secret": "23e35dc235", "media": "photo", "latitude": "37.770239", "id": "2345808849", "tags": "birthday friends party people musician music 20d bar night canon singing song stage birthdayparty singer handheld singers karaoke amateur songs performances themint divinyls itouchmyself 35l whenithinkaboutyouitouchmyself ef35mmf14lusm canon35mmf14lusm lizkennedy"}, {"datetaken": "2008-03-18 22:43:27", "license": "3", "title": "Liz demonstrates the meaning of the lyrics (11920)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm3.staticflickr.com/2383/2346642232_7754bf1a68_o.jpg", "secret": "9212a0ace8", "media": "photo", "latitude": "37.770239", "id": "2346642232", "tags": "birthday friends party people musician music 20d bar night canon singing song stage birthdayparty singer handheld singers karaoke amateur songs performances themint divinyls itouchmyself 35l whenithinkaboutyouitouchmyself ef35mmf14lusm canon35mmf14lusm lizkennedy"}, {"datetaken": "2008-03-18 23:15:23", "license": "3", "title": "\"...sooner or later it comes down to fate...\" (11923)", "text": "", "album_id": "72157604170148809", "longitude": "-122.427220", "url_o": "https://farm4.staticflickr.com/3265/2345814071_bbb3fe3c06_o.jpg", "secret": "2911f072e4", "media": "photo", "latitude": "37.770239", "id": "2345814071", "tags": "birthday friends party people musician music 20d me bar night canon singing song stage birthdayparty notbyme singer handheld singers karaoke billyjoel amateur songs performances thestranger themint onlythegooddieyoung 35l ef35mmf14lusm canon35mmf14lusm takenbybonnie"}, {"datetaken": "2008-03-11 07:41:35", "license": "3", "title": "Bloghaus", "text": "", "album_id": "72157604169706376", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3253/2346414739_3f88d9ece2_o.jpg", "secret": "e521f8c143", "media": "photo", "latitude": "0", "id": "2346414739", "tags": "austin sxsw sxswinteractive sxswi sxsw2008 sxsw08"}, {"datetaken": "2008-03-11 07:55:28", "license": "3", "title": "Tris Hussey", "text": "", "album_id": "72157604169706376", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2167/2347245424_7be0856196_o.jpg", "secret": "7688e4d6b1", "media": "photo", "latitude": "0", "id": "2347245424", "tags": "austin sxsw sxswinteractive sxswi sxsw2008 sxsw08"}, {"datetaken": "2008-03-11 08:01:47", "license": "3", "title": "Andrew Barades", "text": "", "album_id": "72157604169706376", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3100/2346417233_8eb1e8f205_o.jpg", "secret": "5fcbaf7a44", "media": "photo", "latitude": "0", "id": "2346417233", "tags": "austin sxsw sxswinteractive sxswi sxsw2008 sxsw08"}, {"datetaken": "2008-03-11 10:27:20", "license": "3", "title": "Jane McGonigal", "text": "", "album_id": "72157604169706376", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3017/2346418651_da0c0f26ca_o.jpg", "secret": "fbc9a46b18", "media": "photo", "latitude": "0", "id": "2346418651", "tags": "austin sxsw sxswinteractive keynote sxswi janemcgonigal avantgame sxsw2008 sxsw08"}, {"datetaken": "2008-03-11 12:04:33", "license": "3", "title": "Baratunde Thurston", "text": "", "album_id": "72157604169706376", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3278/2346420947_a4974aea62_o.jpg", "secret": "d6f0ae4cfc", "media": "photo", "latitude": "0", "id": "2346420947", "tags": "austin sxsw sxswinteractive theonion sxswi baratundethurston sxsw2008 sxsw08"}, {"datetaken": "2008-03-11 12:12:41", "license": "3", "title": "Bloghaus Lounge", "text": "", "album_id": "72157604169706376", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2252/2346421667_6d39a94474_o.jpg", "secret": "75108e1bc8", "media": "photo", "latitude": "0", "id": "2346421667", "tags": "austin sxsw sxswinteractive sxswi sxsw2008 sxsw08"}, {"datetaken": "2008-03-11 13:51:52", "license": "3", "title": "Lego", "text": "", "album_id": "72157604169706376", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3070/2346401761_2a76b43f0e_o.jpg", "secret": "f45bd8f39a", "media": "photo", "latitude": "0", "id": "2346401761", "tags": "austin lego sxsw sxswinteractive sxswi sxsw2008 sxsw08"}, {"datetaken": "2008-03-11 17:15:00", "license": "3", "title": "ijustine <3 Junior Mints", "text": "", "album_id": "72157604169706376", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2275/2347239620_7df8214933_o.jpg", "secret": "a1dfbd9b33", "media": "photo", "latitude": "0", "id": "2347239620", "tags": "austin sxsw sxswinteractive favourite sxswi juniormints justineezarik ijustine sxsw2008 sxsw08"}, {"datetaken": "2008-03-11 18:13:01", "license": "3", "title": "Stephanie Agresta", "text": "", "album_id": "72157604169706376", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3031/2347234260_9598f989dc_o.jpg", "secret": "52823063ea", "media": "photo", "latitude": "0", "id": "2347234260", "tags": "red austin boots sxsw sxswinteractive cowboyboots sxswi sxsw2008 stephanieagresta sxsw08"}, {"datetaken": "2008-03-11 18:37:38", "license": "3", "title": "Phillip and Michael Lambie", "text": "", "album_id": "72157604169706376", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2405/2346407051_dc5c0e8da6_o.jpg", "secret": "94970f128c", "media": "photo", "latitude": "0", "id": "2346407051", "tags": "austin sxsw sxswinteractive nielsen sxswi michaellambie tyfn phillipjeffrey sxsw2008 sxsw08"}, {"datetaken": "2008-03-11 18:54:41", "license": "3", "title": "Big knapsack at Digg Party = FAIL", "text": "", "album_id": "72157604169706376", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2141/2347237194_8b7672f57c_o.jpg", "secret": "dbae0c6896", "media": "photo", "latitude": "0", "id": "2347237194", "tags": "austin sxsw sxswinteractive sxswi sxsw2008 sxsw08"}, {"datetaken": "2008-03-11 18:56:19", "license": "3", "title": "Bar code", "text": "", "album_id": "72157604169706376", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2241/2346422073_b018245cf2_o.jpg", "secret": "f8326dbde3", "media": "photo", "latitude": "0", "id": "2346422073", "tags": "austin sxsw sxswinteractive sxswi sxsw2008 sxsw08"}, {"datetaken": "2008-03-11 19:01:05", "license": "3", "title": "Digg Party", "text": "", "album_id": "72157604169706376", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2224/2347238024_05d94ce204_o.jpg", "secret": "d46fe7dd62", "media": "photo", "latitude": "0", "id": "2347238024", "tags": "austin sxsw sxswinteractive sxswi digg sxsw2008 sxsw08"}, {"datetaken": "2008-03-11 19:01:28", "license": "3", "title": "Pure Volume (site of Digg Party)", "text": "", "album_id": "72157604169706376", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3174/2347251754_d971eb16b3_o.jpg", "secret": "e98221b07e", "media": "photo", "latitude": "0", "id": "2347251754", "tags": "austin sxsw sxswinteractive sxswi purevolumecom sxsw2008 sxsw08"}, {"datetaken": "2008-03-11 20:28:43", "license": "3", "title": "Canadian", "text": "", "album_id": "72157604169706376", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3156/2347239112_9cfddc36e5_o.jpg", "secret": "bc4f45cc92", "media": "photo", "latitude": "0", "id": "2347239112", "tags": "austin sxsw sxswinteractive sxswi sxsw2008 sxsw08"}, {"datetaken": "2008-03-11 20:36:19", "license": "3", "title": "It's my birthday", "text": "", "album_id": "72157604169706376", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3134/2346412455_690b72b7ea_o.jpg", "secret": "1c7426398f", "media": "photo", "latitude": "0", "id": "2346412455", "tags": "austin sxsw sxswinteractive sxswi sxsw2008 sxsw08"}, {"datetaken": "2008-03-11 23:04:56", "license": "3", "title": "Makes his own music", "text": "", "album_id": "72157604169706376", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2333/2346411495_3042c5bcf5_o.jpg", "secret": "c02bb9b256", "media": "photo", "latitude": "0", "id": "2346411495", "tags": "music austin sxsw sxswinteractive sxswi sxsw2008 sxsw08"}, {"datetaken": "2010-02-19 14:33:44", "license": "3", "title": "Setting the stage at Chuck E Cheeses", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4374527615_e18254305d_o.jpg", "secret": "66a51eb949", "media": "photo", "latitude": "0", "id": "4374527615", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 14:34:26", "license": "3", "title": "Closeup of Chucke", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4375276112_7661157cd7_o.jpg", "secret": "e2c09693c4", "media": "photo", "latitude": "0", "id": "4375276112", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 14:50:24", "license": "3", "title": "Strapped in for the ride", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4374526635_e2f0a3605b_o.jpg", "secret": "ef7b3b112c", "media": "photo", "latitude": "0", "id": "4374526635", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 14:50:44", "license": "3", "title": "Racing through the sky", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2777/4374534485_7fa4ae5554_o.jpg", "secret": "f6027e5420", "media": "photo", "latitude": "0", "id": "4374534485", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 14:53:20", "license": "3", "title": "Pizza Time", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4374532927_87fdde69d8_o.jpg", "secret": "d05f91c32e", "media": "photo", "latitude": "0", "id": "4374532927", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 14:53:36", "license": "3", "title": "Eating her pizza", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2745/4375282020_b3d4bc5d3b_o.jpg", "secret": "ba520b219d", "media": "photo", "latitude": "0", "id": "4375282020", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 14:56:02", "license": "3", "title": "Viewing the video screen", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2683/4374530679_fd155e472d_o.jpg", "secret": "0986b2f522", "media": "photo", "latitude": "0", "id": "4374530679", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 14:56:24", "license": "3", "title": "Madeleine at her birthday party", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4374524083_4fde630ddf_o.jpg", "secret": "2edcee5e8f", "media": "photo", "latitude": "0", "id": "4374524083", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 14:56:40", "license": "3", "title": "Taking a sip", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4374525103_49cbb90bf4_o.jpg", "secret": "7d8c2e24cc", "media": "photo", "latitude": "0", "id": "4374525103", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 14:58:22", "license": "3", "title": "With her birthday friends", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4374534917_1a91cc322a_o.jpg", "secret": "300e2be19f", "media": "photo", "latitude": "0", "id": "4374534917", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 14:59:10", "license": "3", "title": "The big mouse himself", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4374530143_af07f91892_o.jpg", "secret": "deaacb23d8", "media": "photo", "latitude": "0", "id": "4374530143", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 15:03:56", "license": "3", "title": "Julia at the party", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4374529575_6da98f6b4b_o.jpg", "secret": "b781310fcb", "media": "photo", "latitude": "0", "id": "4374529575", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 15:04:20", "license": "3", "title": "Jenny at the party", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2692/4375279590_36d989788e_o.jpg", "secret": "b0250efb06", "media": "photo", "latitude": "0", "id": "4375279590", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 15:04:44", "license": "3", "title": "Caroline at the party", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4375285292_3570f7fe9d_o.jpg", "secret": "4677309538", "media": "photo", "latitude": "0", "id": "4375285292", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 15:17:46", "license": "3", "title": "Ava at the party", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4374524493_623c8be7a7_o.jpg", "secret": "f75d9b0184", "media": "photo", "latitude": "0", "id": "4374524493", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 15:18:06", "license": "3", "title": "Still having fun", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4375283990_043074e47c_o.jpg", "secret": "b4b8e73288", "media": "photo", "latitude": "0", "id": "4375283990", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 15:22:42", "license": "3", "title": "Chuck E appears", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4374528669_94daa4f5f9_o.jpg", "secret": "1870d0803c", "media": "photo", "latitude": "0", "id": "4374528669", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 15:23:38", "license": "3", "title": "Crowning the birthday princess", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4375278594_505c8a6924_o.jpg", "secret": "9024f7d4ac", "media": "photo", "latitude": "0", "id": "4375278594", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 15:23:58", "license": "3", "title": "A Chucke Cheese Crown", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4374526201_3169deecee_o.jpg", "secret": "8319d46715", "media": "photo", "latitude": "0", "id": "4374526201", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 15:24:06", "license": "3", "title": "Giving Madeleine a hug", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4375281540_feaf481dfd_o.jpg", "secret": "c2ce8c1422", "media": "photo", "latitude": "0", "id": "4375281540", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 15:25:58", "license": "3", "title": "Chuck E appears... two of them", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4375273896_3cc6b749f5_o.jpg", "secret": "74341dc5eb", "media": "photo", "latitude": "0", "id": "4375273896", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 15:26:30", "license": "3", "title": "Bringing out the cake", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4375282442_0ecafa80bc_o.jpg", "secret": "0834fb73e8", "media": "photo", "latitude": "0", "id": "4375282442", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 15:26:34", "license": "3", "title": "Ready for her birthday wishes", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2745/4375277492_f071f8487e_o.jpg", "secret": "1954af8b40", "media": "photo", "latitude": "0", "id": "4375277492", "tags": "family birthdayparty madeleine"}, {"datetaken": "2010-02-19 15:30:12", "license": "3", "title": "Getting hug from Chuck E", "text": "", "album_id": "72157623477392752", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4375283530_5f178f0d43_o.jpg", "secret": "60681e2005", "media": "photo", "latitude": "0", "id": "4375283530", "tags": "family birthdayparty madeleine"}, {"datetaken": "2005-03-19 09:51:21", "license": "3", "title": "Two Mr. Rays", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6932001_b091a8b968_o.jpg", "secret": "b091a8b968", "media": "photo", "latitude": "0", "id": "6932001", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 09:52:45", "license": "3", "title": "Matt and Jennifer", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6931936_3462b4084d_o.jpg", "secret": "3462b4084d", "media": "photo", "latitude": "0", "id": "6931936", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 09:59:29", "license": "3", "title": "Matt and Annie", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6931879_0dc6f12526_o.jpg", "secret": "0dc6f12526", "media": "photo", "latitude": "0", "id": "6931879", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 10:12:12", "license": "3", "title": "Thinking About Thailand", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6931964_4c068bc347_o.jpg", "secret": "4c068bc347", "media": "photo", "latitude": "0", "id": "6931964", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 10:12:24", "license": "3", "title": "Laughing About Thailand", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6931918_47b015f2ae_o.jpg", "secret": "47b015f2ae", "media": "photo", "latitude": "0", "id": "6931918", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 10:12:50", "license": "3", "title": "Making a Break For It", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6931925_9a37ec5d56_o.jpg", "secret": "9a37ec5d56", "media": "photo", "latitude": "0", "id": "6931925", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 10:13:34", "license": "3", "title": "Mr. Ray's Way", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6931953_edffd13b96_o.jpg", "secret": "edffd13b96", "media": "photo", "latitude": "0", "id": "6931953", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 10:13:50", "license": "3", "title": "Bottle or Camera", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6931890_ea48d72a6e_o.jpg", "secret": "ea48d72a6e", "media": "photo", "latitude": "0", "id": "6931890", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 10:14:13", "license": "3", "title": "Ed the Gentle Giant", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6931914_14e33f2942_o.jpg", "secret": "14e33f2942", "media": "photo", "latitude": "0", "id": "6931914", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 10:14:34", "license": "3", "title": "Precision Candles", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6931944_78540e04e6_o.jpg", "secret": "78540e04e6", "media": "photo", "latitude": "0", "id": "6931944", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 10:14:58", "license": "3", "title": "Double Strike", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6931955_2eb7df6b8c_o.jpg", "secret": "2eb7df6b8c", "media": "photo", "latitude": "0", "id": "6931955", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 10:18:58", "license": "3", "title": "Hmmm Light", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6931862_ab0d87061e_o.jpg", "secret": "ab0d87061e", "media": "photo", "latitude": "0", "id": "6931862", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 10:20:27", "license": "3", "title": "Go Git Her!", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6931886_07d9e0f791_o.jpg", "secret": "07d9e0f791", "media": "photo", "latitude": "0", "id": "6931886", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 10:35:08", "license": "3", "title": "Don't Make Me", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6931852_2c41c93b78_o.jpg", "secret": "2c41c93b78", "media": "photo", "latitude": "0", "id": "6931852", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 10:55:18", "license": "3", "title": "I'll Eat You Too", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6931960_a38fc39f8b_o.jpg", "secret": "a38fc39f8b", "media": "photo", "latitude": "0", "id": "6931960", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 11:01:42", "license": "3", "title": "Ready for the Golden State", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6931857_c58c56497e_o.jpg", "secret": "c58c56497e", "media": "photo", "latitude": "0", "id": "6931857", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 11:16:59", "license": "3", "title": "Birthday Boys", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6931898_27b3eea92e_o.jpg", "secret": "27b3eea92e", "media": "photo", "latitude": "0", "id": "6931898", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 11:22:10", "license": "3", "title": "Late Dinner w David + Carol", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6931938_6cbd2fed93_o.jpg", "secret": "6cbd2fed93", "media": "photo", "latitude": "0", "id": "6931938", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 11:32:14", "license": "3", "title": "Jello Shot", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6931975_f152f710bc_o.jpg", "secret": "f152f710bc", "media": "photo", "latitude": "0", "id": "6931975", "tags": "march192005 birthday matt david rayshouse"}, {"datetaken": "2005-03-19 12:44:01", "license": "3", "title": "Katherine", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6932993_eb7dfee854_o.jpg", "secret": "eb7dfee854", "media": "photo", "latitude": "0", "id": "6932993", "tags": "march192005 nicole birthday"}, {"datetaken": "2005-03-19 12:44:37", "license": "3", "title": "Joel and Nancy", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6932984_004283d678_o.jpg", "secret": "004283d678", "media": "photo", "latitude": "0", "id": "6932984", "tags": "march192005 nicole birthday mcateer"}, {"datetaken": "2005-03-19 12:48:48", "license": "3", "title": "Nicole and Annie", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6933029_23c39015ce_o.jpg", "secret": "23c39015ce", "media": "photo", "latitude": "0", "id": "6933029", "tags": "march192005 nicole birthday"}, {"datetaken": "2005-03-19 12:59:32", "license": "3", "title": "Shoe Talk", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6933008_2630e9f30a_o.jpg", "secret": "2630e9f30a", "media": "photo", "latitude": "0", "id": "6933008", "tags": "march192005 nicole birthday"}, {"datetaken": "2005-03-19 12:59:42", "license": "3", "title": "Annie", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6933015_03c96ef0bc_o.jpg", "secret": "03c96ef0bc", "media": "photo", "latitude": "0", "id": "6933015", "tags": "march192005 nicole birthday"}, {"datetaken": "2005-03-19 12:59:48", "license": "3", "title": "Denise", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6933023_d42b2616ec_o.jpg", "secret": "d42b2616ec", "media": "photo", "latitude": "0", "id": "6933023", "tags": "march192005 nicole birthday"}, {"datetaken": "2005-03-19 13:22:30", "license": "3", "title": "Happy Birthday!", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6932980_ed5f2dd18c_o.jpg", "secret": "ed5f2dd18c", "media": "photo", "latitude": "0", "id": "6932980", "tags": "march192005 nicole birthday"}, {"datetaken": "2005-03-19 14:19:58", "license": "3", "title": "Late Night Push", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6933002_e5bbba1bad_o.jpg", "secret": "e5bbba1bad", "media": "photo", "latitude": "0", "id": "6933002", "tags": "march192005 nicole birthday"}, {"datetaken": "2005-03-19 14:20:11", "license": "3", "title": "Baby Talk", "text": "", "album_id": "172811", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6933018_29b7a686e6_o.jpg", "secret": "29b7a686e6", "media": "photo", "latitude": "0", "id": "6933018", "tags": "march192005 nicole birthday"}, {"datetaken": "2010-03-20 14:35:16", "license": "3", "title": "the birthday boy, with cake", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2736/4448286747_72666baf37_o.jpg", "secret": "3bcd8026a4", "media": "photo", "latitude": "0", "id": "4448286747", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 14:57:27", "license": "3", "title": "cute kids", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4449062398_353c29d9bc_o.jpg", "secret": "871d1d8307", "media": "photo", "latitude": "0", "id": "4449062398", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 14:58:41", "license": "3", "title": "colored shadows", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4448286961_03528dfa84_o.jpg", "secret": "f30af5c530", "media": "photo", "latitude": "0", "id": "4448286961", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 14:59:26", "license": "3", "title": "colored shadows", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4449062518_575893b0c7_o.jpg", "secret": "cc55fbfdbf", "media": "photo", "latitude": "0", "id": "4449062518", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 15:12:40", "license": "3", "title": "I have a thing for neon", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4448287077_6232d7a2c9_o.jpg", "secret": "9158269747", "media": "photo", "latitude": "0", "id": "4448287077", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 15:23:42", "license": "3", "title": "", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4448287191_c5f2693562_o.jpg", "secret": "df7e6a24b8", "media": "photo", "latitude": "0", "id": "4448287191", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 17:05:49", "license": "3", "title": "Words That Changed the World", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4449062744_115380ced0_o.jpg", "secret": "53c0d585e0", "media": "photo", "latitude": "0", "id": "4449062744", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 17:05:50", "license": "3", "title": "blood red", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4448287329_53165ccd85_o.jpg", "secret": "c9d2301f5f", "media": "photo", "latitude": "0", "id": "4448287329", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 17:13:36", "license": "3", "title": "strands", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2682/4449080612_5cf630de03_o.jpg", "secret": "84f0d2dc77", "media": "photo", "latitude": "0", "id": "4449080612", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 17:13:38", "license": "3", "title": "", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4448305169_05e9b8185e_o.jpg", "secret": "324e05c1cc", "media": "photo", "latitude": "0", "id": "4448305169", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 17:13:39", "license": "3", "title": "whiteboard", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4448305205_51b22e31dd_o.jpg", "secret": "f4a590a9aa", "media": "photo", "latitude": "0", "id": "4448305205", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 17:13:40", "license": "3", "title": "light", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2711/4449080774_db8d8429c3_o.jpg", "secret": "1a9ea34b62", "media": "photo", "latitude": "0", "id": "4449080774", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 17:14:01", "license": "3", "title": "capacitor", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4448305971_7c84814da6_o.jpg", "secret": "89004c3e82", "media": "photo", "latitude": "0", "id": "4448305971", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 17:14:02", "license": "3", "title": "expert knob twiddlers", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2804/4449081678_87bdaa0ac7_o.jpg", "secret": "a85ea7f112", "media": "photo", "latitude": "0", "id": "4449081678", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 17:14:35", "license": "3", "title": "walkway", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2734/4449083018_0a9380db85_o.jpg", "secret": "417cd2f564", "media": "photo", "latitude": "0", "id": "4449083018", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 17:14:38", "license": "3", "title": "rising river", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4448307417_94b2795b1e_o.jpg", "secret": "d7d275b3f3", "media": "photo", "latitude": "0", "id": "4448307417", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 17:14:39", "license": "3", "title": "towboat", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2686/4449083184_15b3c82222_o.jpg", "secret": "1ce9132e13", "media": "photo", "latitude": "0", "id": "4449083184", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 17:14:52", "license": "3", "title": "", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2749/4449083718_0da1ce1687_o.jpg", "secret": "b0c0c82e1a", "media": "photo", "latitude": "0", "id": "4449083718", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 17:14:55", "license": "3", "title": "", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2794/4449083828_f2edb94af5_o.jpg", "secret": "f9bd0acd6b", "media": "photo", "latitude": "0", "id": "4449083828", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 17:15:10", "license": "3", "title": "Iggy the iguana", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4449084456_d22561cd79_o.jpg", "secret": "312cc9a4f4", "media": "photo", "latitude": "0", "id": "4449084456", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2010-03-20 17:15:12", "license": "3", "title": "my smooth operator", "text": "", "album_id": "72157623534565419", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4448308773_aca7bc51da_o.jpg", "secret": "b88000a631", "media": "photo", "latitude": "0", "id": "4448308773", "tags": "minnesota museum kids midwest classmates saturday birthdayparty mississippiriver twincities saintpaul mn sciencemuseum exhibits smm downtownstpaul risingriver sciencemuseumofmn"}, {"datetaken": "2005-06-18 21:52:31", "license": "3", "title": "P6181018", "text": "", "album_id": "478052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20488389_83f2ace1b0_o.jpg", "secret": "83f2ace1b0", "media": "photo", "latitude": "0", "id": "20488389", "tags": "mre birthday party olympus e300 june"}, {"datetaken": "2005-06-18 21:58:06", "license": "3", "title": "P6181023", "text": "", "album_id": "478052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20488401_3f53847e91_o.jpg", "secret": "3f53847e91", "media": "photo", "latitude": "0", "id": "20488401", "tags": "mre birthday party olympus e300 june"}, {"datetaken": "2005-06-18 23:18:59", "license": "3", "title": "P6181030", "text": "", "album_id": "478052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20488367_f4ac12eafb_o.jpg", "secret": "f4ac12eafb", "media": "photo", "latitude": "0", "id": "20488367", "tags": "mre birthday party olympus e300 june"}, {"datetaken": "2005-06-18 23:19:19", "license": "3", "title": "P6181031", "text": "", "album_id": "478052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20488407_a5fb96989d_o.jpg", "secret": "a5fb96989d", "media": "photo", "latitude": "0", "id": "20488407", "tags": "mre birthday party olympus e300 june"}, {"datetaken": "2005-06-18 23:19:53", "license": "3", "title": "P6181032", "text": "", "album_id": "478052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20488372_73f42d4271_o.jpg", "secret": "73f42d4271", "media": "photo", "latitude": "0", "id": "20488372", "tags": "mre birthday party olympus e300 june"}, {"datetaken": "2005-06-19 00:19:04", "license": "3", "title": "P6191034", "text": "", "album_id": "478052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20488357_add2cc5bc4_o.jpg", "secret": "add2cc5bc4", "media": "photo", "latitude": "0", "id": "20488357", "tags": "mre birthday party olympus e300 seth june"}, {"datetaken": "2005-06-19 00:19:45", "license": "3", "title": "P6191035", "text": "", "album_id": "478052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20488343_f80a3f1881_o.jpg", "secret": "f80a3f1881", "media": "photo", "latitude": "0", "id": "20488343", "tags": "mre birthday party olympus e300 seth june"}, {"datetaken": "2005-06-19 00:20:42", "license": "3", "title": "P6191037", "text": "", "album_id": "478052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20488335_a8dfa78ee8_o.jpg", "secret": "a8dfa78ee8", "media": "photo", "latitude": "0", "id": "20488335", "tags": "mre birthday party olympus e300 june"}, {"datetaken": "2005-06-19 00:56:42", "license": "3", "title": "P6191059", "text": "", "album_id": "478052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20488325_fdaf6b051d_o.jpg", "secret": "fdaf6b051d", "media": "photo", "latitude": "0", "id": "20488325", "tags": "mre birthday party olympus e300 june"}, {"datetaken": "2005-06-19 00:56:53", "license": "3", "title": "P6191060", "text": "", "album_id": "478052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20488328_51316c943e_o.jpg", "secret": "51316c943e", "media": "photo", "latitude": "0", "id": "20488328", "tags": "mre birthday party olympus e300 june"}, {"datetaken": "2005-06-19 00:57:34", "license": "3", "title": "P6191061", "text": "", "album_id": "478052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20488338_7da6744732_o.jpg", "secret": "7da6744732", "media": "photo", "latitude": "0", "id": "20488338", "tags": "mre birthday party olympus e300 june"}, {"datetaken": "2010-01-02 15:23:27", "license": "1", "title": "Marcia Lights the Candles", "text": "", "album_id": "72157623134066795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4293798775_c97e63479c_o.jpg", "secret": "1b3534d3da", "media": "photo", "latitude": "0", "id": "4293798775", "tags": ""}, {"datetaken": "2010-01-02 15:23:53", "license": "1", "title": "Palmer Helping Grandma Light Candles", "text": "", "album_id": "72157623134066795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4294541012_4a7b217ae3_o.jpg", "secret": "4b8cf10da1", "media": "photo", "latitude": "0", "id": "4294541012", "tags": ""}, {"datetaken": "2010-01-02 15:24:01", "license": "1", "title": "Matt Catching the Action", "text": "", "album_id": "72157623134066795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4294541264_63e7e8f7a4_o.jpg", "secret": "fa04cb0550", "media": "photo", "latitude": "0", "id": "4294541264", "tags": ""}, {"datetaken": "2010-01-02 15:24:15", "license": "1", "title": "The Birthday Boy!", "text": "", "album_id": "72157623134066795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4293799367_516ec72b1b_o.jpg", "secret": "1f24d58665", "media": "photo", "latitude": "0", "id": "4293799367", "tags": ""}, {"datetaken": "2010-01-02 15:24:36", "license": "1", "title": "Pop Pop Blows Out His Candles", "text": "", "album_id": "72157623134066795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4294541636_b508b406fc_o.jpg", "secret": "f6a0f7a41f", "media": "photo", "latitude": "0", "id": "4294541636", "tags": ""}, {"datetaken": "2010-01-02 15:25:40", "license": "1", "title": "Patti Serves Her Cake", "text": "", "album_id": "72157623134066795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4293799807_a800d05003_o.jpg", "secret": "a6a77898aa", "media": "photo", "latitude": "0", "id": "4293799807", "tags": ""}, {"datetaken": "2010-01-02 15:25:51", "license": "1", "title": "Photography Runs in this Family", "text": "", "album_id": "72157623134066795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4293800073_279bba2fa1_o.jpg", "secret": "5b56bd4990", "media": "photo", "latitude": "0", "id": "4293800073", "tags": ""}, {"datetaken": "2010-01-02 15:26:41", "license": "1", "title": "Patti Slicing the Cake", "text": "", "album_id": "72157623134066795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4294542342_efd0b1cd41_o.jpg", "secret": "f35a22740e", "media": "photo", "latitude": "0", "id": "4294542342", "tags": ""}, {"datetaken": "2010-01-02 15:27:13", "license": "1", "title": "Killian & Bill", "text": "", "album_id": "72157623134066795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4293800437_25df804a70_o.jpg", "secret": "654c19062a", "media": "photo", "latitude": "0", "id": "4293800437", "tags": ""}, {"datetaken": "2010-01-02 15:28:36", "license": "1", "title": "Erin & Hunter", "text": "", "album_id": "72157623134066795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4293800667_58a4dbccf9_o.jpg", "secret": "0a74bfb1c7", "media": "photo", "latitude": "0", "id": "4293800667", "tags": ""}, {"datetaken": "2010-01-02 15:30:01", "license": "1", "title": "Greg & Palmer", "text": "", "album_id": "72157623134066795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4294543004_317afe6560_o.jpg", "secret": "3f7e87307e", "media": "photo", "latitude": "0", "id": "4294543004", "tags": ""}, {"datetaken": "2010-01-02 15:31:54", "license": "1", "title": "Aunt Rose", "text": "", "album_id": "72157623134066795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4293801155_337b6cd717_o.jpg", "secret": "aef099361d", "media": "photo", "latitude": "0", "id": "4293801155", "tags": ""}, {"datetaken": "2010-01-02 15:33:45", "license": "1", "title": "Killian with Aunt Rose", "text": "", "album_id": "72157623134066795", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4294543376_532cba4cfc_o.jpg", "secret": "c37535241c", "media": "photo", "latitude": "0", "id": "4294543376", "tags": ""}, {"datetaken": "2010-01-02 16:57:58", "license": "1", "title": "Uncle Matt & Killian", "text": "", "album_id": "72157623134066795", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2677/4294543806_c904210c12_o.jpg", "secret": "4a935a010b", "media": "photo", "latitude": "0", "id": "4294543806", "tags": ""}, {"datetaken": "2010-02-21 14:13:26", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4378565316_81fdd7d6fe_o.jpg", "secret": "ea7ab0c2f4", "media": "photo", "latitude": "0", "id": "4378565316", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:13:46", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4378567900_1f34fdcf78_o.jpg", "secret": "4a0738d6d3", "media": "photo", "latitude": "0", "id": "4378567900", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:13:59", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4377818955_2933ee7ecb_o.jpg", "secret": "c54c78246e", "media": "photo", "latitude": "0", "id": "4377818955", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:14:10", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4377822169_edebb90de5_o.jpg", "secret": "26d8a858b9", "media": "photo", "latitude": "0", "id": "4377822169", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:23:38", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2735/4378577652_860ff0b162_o.jpg", "secret": "a441b684c2", "media": "photo", "latitude": "0", "id": "4378577652", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:44:43", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4377828889_547eb66a26_o.jpg", "secret": "6f3399e991", "media": "photo", "latitude": "0", "id": "4377828889", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:45:08", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4378584206_410f40e76b_o.jpg", "secret": "e6a0d730fc", "media": "photo", "latitude": "0", "id": "4378584206", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:45:26", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4378587406_4d7909d95f_o.jpg", "secret": "744ac898dd", "media": "photo", "latitude": "0", "id": "4378587406", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:45:30", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4377838457_3ae223a4ee_o.jpg", "secret": "645cb80a2b", "media": "photo", "latitude": "0", "id": "4377838457", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:46:12", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4377841955_441e588409_o.jpg", "secret": "fd727afabc", "media": "photo", "latitude": "0", "id": "4377841955", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:49:14", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4377844075_46407d319f_o.jpg", "secret": "3e5df6885e", "media": "photo", "latitude": "0", "id": "4377844075", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:50:25", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4378598702_6199a81e19_o.jpg", "secret": "084f30ec80", "media": "photo", "latitude": "0", "id": "4378598702", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:50:32", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4378599792_d9b12f7976_o.jpg", "secret": "d812eca2ab", "media": "photo", "latitude": "0", "id": "4378599792", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:51:24", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4378601094_b20a427b7f_o.jpg", "secret": "f3b1b58a2d", "media": "photo", "latitude": "0", "id": "4378601094", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:51:35", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4377849641_05e6cf6b87_o.jpg", "secret": "75d69a31d4", "media": "photo", "latitude": "0", "id": "4377849641", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:52:21", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4378603948_c17af179a4_o.jpg", "secret": "5fcc3fb0fc", "media": "photo", "latitude": "0", "id": "4378603948", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:53:25", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4378605352_aeee480c4c_o.jpg", "secret": "b9b2e277d7", "media": "photo", "latitude": "0", "id": "4378605352", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:55:07", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4378606710_cc7e1b12ce_o.jpg", "secret": "e6b8de7dfd", "media": "photo", "latitude": "0", "id": "4378606710", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:55:09", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2563/4378608008_c7bd68de6a_o.jpg", "secret": "38fa760abd", "media": "photo", "latitude": "0", "id": "4378608008", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:55:12", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2682/4377856731_10b3688f1c_o.jpg", "secret": "5f79bf72c4", "media": "photo", "latitude": "0", "id": "4377856731", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:59:46", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4378609402_17ece181ae_o.jpg", "secret": "fd3c17c956", "media": "photo", "latitude": "0", "id": "4378609402", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 14:59:54", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4377858161_be4d8d5a8a_o.jpg", "secret": "6dc7af48c4", "media": "photo", "latitude": "0", "id": "4377858161", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 15:01:36", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4378611816_6f59571119_o.jpg", "secret": "a5cfd8be8a", "media": "photo", "latitude": "0", "id": "4378611816", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 15:03:03", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2715/4377860411_72ba705249_o.jpg", "secret": "a610e7aa78", "media": "photo", "latitude": "0", "id": "4377860411", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 15:03:51", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4377861603_27237e7e17_o.jpg", "secret": "27a43589b6", "media": "photo", "latitude": "0", "id": "4377861603", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 15:03:57", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4378615456_fb16b41cdf_o.jpg", "secret": "dac54ec486", "media": "photo", "latitude": "0", "id": "4378615456", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 15:04:00", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4377864391_14706e38e1_o.jpg", "secret": "da17dd6f3e", "media": "photo", "latitude": "0", "id": "4377864391", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 15:04:05", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4377865731_a09d610889_o.jpg", "secret": "20f4e68d94", "media": "photo", "latitude": "0", "id": "4377865731", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 15:04:36", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4377867255_fe9cb42832_o.jpg", "secret": "410ffe7e77", "media": "photo", "latitude": "0", "id": "4377867255", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 15:05:42", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4378621082_445221ef7f_o.jpg", "secret": "c45d17b925", "media": "photo", "latitude": "0", "id": "4378621082", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 15:05:45", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4378622400_085670bc41_o.jpg", "secret": "b7770617c8", "media": "photo", "latitude": "0", "id": "4378622400", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 15:06:21", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2791/4377871113_e2e7f1a83b_o.jpg", "secret": "f917e0263a", "media": "photo", "latitude": "0", "id": "4377871113", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 15:06:27", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4377872371_a5b2f77f15_o.jpg", "secret": "342ca9d175", "media": "photo", "latitude": "0", "id": "4377872371", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 15:06:50", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4377873437_875162cac7_o.jpg", "secret": "8f19780698", "media": "photo", "latitude": "0", "id": "4377873437", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 15:06:57", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4377874685_773089ce66_o.jpg", "secret": "df718438d7", "media": "photo", "latitude": "0", "id": "4377874685", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 15:12:46", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4378628508_6a3a49a446_o.jpg", "secret": "d03f1680fc", "media": "photo", "latitude": "0", "id": "4378628508", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 15:36:05", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4377877211_5342be6163_o.jpg", "secret": "26a0627ae3", "media": "photo", "latitude": "0", "id": "4377877211", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 15:36:17", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4378631084_2648eef02b_o.jpg", "secret": "cb1d7f91e7", "media": "photo", "latitude": "0", "id": "4378631084", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 15:36:25", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4377880025_afaa93b0dc_o.jpg", "secret": "e7d2b5fa90", "media": "photo", "latitude": "0", "id": "4377880025", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-21 16:07:03", "license": "3", "title": "Brynna's 1st Birthday Party", "text": "", "album_id": "72157623359981459", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4378633692_a3b7152979_o.jpg", "secret": "2554cd05b6", "media": "photo", "latitude": "0", "id": "4378633692", "tags": "birthday first bailey brynna"}, {"datetaken": "2010-02-12 16:04:47", "license": "1", "title": "With Grandma", "text": "", "album_id": "72157623514098462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4378260861_c9838dc655_o.jpg", "secret": "b0d13db279", "media": "photo", "latitude": "0", "id": "4378260861", "tags": ""}, {"datetaken": "2010-02-12 16:05:46", "license": "1", "title": "IMG_0884", "text": "", "album_id": "72157623514098462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4378261793_69915d668b_o.jpg", "secret": "7f06957133", "media": "photo", "latitude": "0", "id": "4378261793", "tags": ""}, {"datetaken": "2010-02-12 16:18:24", "license": "1", "title": "IMG_0885", "text": "", "album_id": "72157623514098462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4379015108_b452c043df_o.jpg", "secret": "2341629ce3", "media": "photo", "latitude": "0", "id": "4379015108", "tags": ""}, {"datetaken": "2010-02-12 16:18:49", "license": "1", "title": "IMG_0886", "text": "", "album_id": "72157623514098462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4378263751_a4682448ce_o.jpg", "secret": "05c10774e9", "media": "photo", "latitude": "0", "id": "4378263751", "tags": ""}, {"datetaken": "2010-02-12 16:19:43", "license": "1", "title": "IMG_0887", "text": "", "album_id": "72157623514098462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4378264547_8366c7d14f_o.jpg", "secret": "26a31c327f", "media": "photo", "latitude": "0", "id": "4378264547", "tags": ""}, {"datetaken": "2010-02-12 16:23:48", "license": "1", "title": "Giving Sofia a pat", "text": "", "album_id": "72157623514098462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2729/4378265753_992bcd8269_o.jpg", "secret": "9e1cd48b34", "media": "photo", "latitude": "0", "id": "4378265753", "tags": ""}, {"datetaken": "2010-02-12 16:24:03", "license": "1", "title": "He goes for Sofia", "text": "", "album_id": "72157623514098462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4378266763_77d9530244_o.jpg", "secret": "28c2a8e71d", "media": "photo", "latitude": "0", "id": "4378266763", "tags": ""}, {"datetaken": "2010-02-12 16:24:16", "license": "1", "title": "going for his cousin", "text": "", "album_id": "72157623514098462", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4379020394_346589ba22_o.jpg", "secret": "94066522ac", "media": "photo", "latitude": "0", "id": "4379020394", "tags": ""}, {"datetaken": "2010-02-12 16:46:46", "license": "1", "title": "IMG_0891", "text": "", "album_id": "72157623514098462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/4378268767_4fde758b1b_o.jpg", "secret": "dd525b0978", "media": "photo", "latitude": "0", "id": "4378268767", "tags": ""}, {"datetaken": "2010-02-12 16:47:00", "license": "1", "title": "Sofia and Grandma", "text": "", "album_id": "72157623514098462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4379022324_bcd9066150_o.jpg", "secret": "c787d07bec", "media": "photo", "latitude": "0", "id": "4379022324", "tags": ""}, {"datetaken": "2010-02-12 17:18:03", "license": "1", "title": "Cuddles with grandma", "text": "", "album_id": "72157623514098462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4378270731_7316b13444_o.jpg", "secret": "1eac213fde", "media": "photo", "latitude": "0", "id": "4378270731", "tags": ""}, {"datetaken": "2010-02-12 20:54:48", "license": "1", "title": "happy birthday Grandpa!", "text": "", "album_id": "72157623514098462", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4379024544_1fb8e126ff_o.jpg", "secret": "e760fe3168", "media": "photo", "latitude": "0", "id": "4379024544", "tags": ""}, {"datetaken": "2004-11-20 19:25:36", "license": "1", "title": "aguilaba & boogah", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1639016_6cde2784ba_o.jpg", "secret": "6cde2784ba", "media": "photo", "latitude": "0", "id": "1639016", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 19:25:46", "license": "1", "title": "Lisey, lunaqueen, torrez, hixter", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1639009_a1341edd00_o.jpg", "secret": "a1341edd00", "media": "photo", "latitude": "0", "id": "1639009", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 19:42:07", "license": "1", "title": "aguilaba & deergus the lurker", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1639003_365ef086cd_o.jpg", "secret": "365ef086cd", "media": "photo", "latitude": "0", "id": "1639003", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 19:42:18", "license": "1", "title": "Lisey, Lunaqueen, torrez", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1638998_b2e8cb95aa_o.jpg", "secret": "b2e8cb95aa", "media": "photo", "latitude": "0", "id": "1638998", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 22:32:06", "license": "1", "title": "IMG_0591.JPG", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1638988_0b82d43029_o.jpg", "secret": "0b82d43029", "media": "photo", "latitude": "0", "id": "1638988", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 22:35:49", "license": "1", "title": "Lisey Vs. drunken teacher", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1638975_e2ca69d758_o.jpg", "secret": "e2ca69d758", "media": "photo", "latitude": "0", "id": "1638975", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 22:49:39", "license": "1", "title": "aguilaba", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1638963_965cbc2642_o.jpg", "secret": "965cbc2642", "media": "photo", "latitude": "0", "id": "1638963", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 22:51:07", "license": "1", "title": "Rockstar aguilaba", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1638956_6c413e8e9e_o.jpg", "secret": "6c413e8e9e", "media": "photo", "latitude": "0", "id": "1638956", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 23:01:25", "license": "1", "title": "[this might be offensive]", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1638949_85f3307c20_o.jpg", "secret": "85f3307c20", "media": "photo", "latitude": "0", "id": "1638949", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 23:04:02", "license": "1", "title": "Drunken happy birthday karaoke", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1638944_b9bc5f6f11_o.jpg", "secret": "b9bc5f6f11", "media": "photo", "latitude": "0", "id": "1638944", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 23:17:40", "license": "1", "title": "Crooner MonteVista", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1638929_a23b2c593f_o.jpg", "secret": "a23b2c593f", "media": "photo", "latitude": "0", "id": "1638929", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 23:18:04", "license": "1", "title": "MonteVista", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1638922_0f17c64e7b_o.jpg", "secret": "0f17c64e7b", "media": "photo", "latitude": "0", "id": "1638922", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 23:18:11", "license": "1", "title": "Hixter enjoying Monte's singing", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1638911_894473e5ec_o.jpg", "secret": "894473e5ec", "media": "photo", "latitude": "0", "id": "1638911", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 23:18:38", "license": "1", "title": "Dancing monte, miserable hixter", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1638907_d58e528320_o.jpg", "secret": "d58e528320", "media": "photo", "latitude": "0", "id": "1638907", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 23:18:45", "license": "1", "title": "More dancing", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1638905_e43f0bac69_o.jpg", "secret": "e43f0bac69", "media": "photo", "latitude": "0", "id": "1638905", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 23:19:37", "license": "1", "title": "I think they're in love", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1638900_b81daee675_o.jpg", "secret": "b81daee675", "media": "photo", "latitude": "0", "id": "1638900", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 23:21:29", "license": "1", "title": "the notorious b-o-o-g", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1638886_a8214c601f_o.jpg", "secret": "a8214c601f", "media": "photo", "latitude": "0", "id": "1638886", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 23:22:15", "license": "1", "title": "Boogah smalls", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1638881_d100c9c853_o.jpg", "secret": "d100c9c853", "media": "photo", "latitude": "0", "id": "1638881", "tags": "fipilele pileup"}, {"datetaken": "2004-11-20 23:22:23", "license": "1", "title": "I give up", "text": "", "album_id": "41661", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1638874_986d79d1cf_o.jpg", "secret": "986d79d1cf", "media": "photo", "latitude": "0", "id": "1638874", "tags": "fipilele pileup"}, {"datetaken": "2010-01-16 10:56:46", "license": "3", "title": "aliens mark the spot", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4297328283_ae4f1501bb_o.jpg", "secret": "a4a6459330", "media": "photo", "latitude": "0", "id": "4297328283", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 10:57:04", "license": "3", "title": "balloons from outta this world", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4298072552_78ede5c3df_o.jpg", "secret": "45c0880fe9", "media": "photo", "latitude": "0", "id": "4298072552", "tags": "pizza presents memory 2010 jan10 inthepark january16 completewith mcmg happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 11:33:12", "license": "3", "title": "park sculpture", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4297327667_8c6d0dc883_o.jpg", "secret": "1a8153a520", "media": "photo", "latitude": "0", "id": "4297327667", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 11:40:05", "license": "3", "title": "he tosses while i watch", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2696/4297327317_3a35f632d6_o.jpg", "secret": "a6425270ee", "media": "photo", "latitude": "0", "id": "4297327317", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 11:42:12", "license": "3", "title": "patience", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4297326573_d920854296_o.jpg", "secret": "894748e5e3", "media": "photo", "latitude": "0", "id": "4297326573", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 11:44:17", "license": "3", "title": "the space cake!", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2529/4297325945_408cf4f2a1_o.jpg", "secret": "183ef40ef9", "media": "photo", "latitude": "0", "id": "4297325945", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 12:20:18", "license": "3", "title": "pizza", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4297324733_891c918350_o.jpg", "secret": "cdfeb7dc88", "media": "photo", "latitude": "0", "id": "4297324733", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 12:29:37", "license": "3", "title": "pizza eaters", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4297324101_8e960983ce_o.jpg", "secret": "d2f048ccba", "media": "photo", "latitude": "0", "id": "4297324101", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 12:53:36", "license": "3", "title": "the invaded aliens", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4297322921_c376c3d3a8_o.jpg", "secret": "e13135eb8c", "media": "photo", "latitude": "0", "id": "4297322921", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 12:59:15", "license": "3", "title": "captured ship", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4298067092_29e569551b_o.jpg", "secret": "906b856b43", "media": "photo", "latitude": "0", "id": "4298067092", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 13:00:45", "license": "3", "title": "martian meet up", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4297321823_b65724d734_o.jpg", "secret": "0978de6cbd", "media": "photo", "latitude": "0", "id": "4297321823", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 13:03:29", "license": "3", "title": "cake and conversation", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4298065354_9fae6d081f_o.jpg", "secret": "325ff5111b", "media": "photo", "latitude": "0", "id": "4298065354", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 13:04:43", "license": "3", "title": "presents and balls", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4297320089_69d6eb03c4_o.jpg", "secret": "6565642ca2", "media": "photo", "latitude": "0", "id": "4297320089", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 13:13:20", "license": "3", "title": "long distance phone call", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2725/4297319279_1b22d154d2_o.jpg", "secret": "07816065f9", "media": "photo", "latitude": "0", "id": "4297319279", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 13:16:36", "license": "3", "title": "escape!", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2709/4298063062_8f59b90182_o.jpg", "secret": "0fc6db4511", "media": "photo", "latitude": "0", "id": "4298063062", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 13:17:40", "license": "3", "title": "swing", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2732/4298062556_593882173b_o.jpg", "secret": "fb15a52c2b", "media": "photo", "latitude": "0", "id": "4298062556", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 13:22:36", "license": "3", "title": "op op", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4298061738_d1896e04f2_o.jpg", "secret": "1db1740b2c", "media": "photo", "latitude": "0", "id": "4298061738", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 13:27:43", "license": "3", "title": "beehind the mask", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2757/4298061186_331927302b_o.jpg", "secret": "c82241bb95", "media": "photo", "latitude": "0", "id": "4298061186", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 13:28:21", "license": "3", "title": "mask makers", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2767/4297315783_c6d8b26944_o.jpg", "secret": "03b1fdde23", "media": "photo", "latitude": "0", "id": "4297315783", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 13:36:34", "license": "3", "title": "a very important game", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2690/4298060104_2a4d0b00a8_o.jpg", "secret": "8a397f1806", "media": "photo", "latitude": "0", "id": "4298060104", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 13:55:26", "license": "3", "title": "your pal", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4297314587_8279e58384_o.jpg", "secret": "f6307fba89", "media": "photo", "latitude": "0", "id": "4297314587", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 14:02:49", "license": "3", "title": "party goers", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4297314221_69e08a12a9_o.jpg", "secret": "a323409919", "media": "photo", "latitude": "0", "id": "4297314221", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 14:28:35", "license": "3", "title": "party re-mix", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2729/4297313299_1f152df0f1_o.jpg", "secret": "015043b002", "media": "photo", "latitude": "0", "id": "4297313299", "tags": "wardroberemix balloons pizza presents 2010 jan10 inthepark january16 jekstyle completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7"}, {"datetaken": "2010-01-16 15:03:39", "license": "3", "title": "watching it all", "text": "", "album_id": "72157623143289975", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4297312621_2c1dee15b1_o.jpg", "secret": "378c308eaa", "media": "photo", "latitude": "0", "id": "4297312621", "tags": "pizza presents 2010 jan10 inthepark january16 completewith happybirthdaywes celebratingtheboy agogosbday alienballoons acrashedspaceshipcake analieninvasion ufothrowing andawholelottafriends wowyernow7 print2010"}, {"datetaken": "2010-01-23 13:42:23", "license": "2", "title": "STA_1519.JPG", "text": "", "album_id": "72157623145280167", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4298175143_d55b7c723c_o.jpg", "secret": "5eee09f0c6", "media": "photo", "latitude": "0", "id": "4298175143", "tags": "amy jackson grammy r4 eyefi"}, {"datetaken": "2010-01-23 13:44:42", "license": "2", "title": "IMG_1521.JPG", "text": "", "album_id": "72157623145280167", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4298176527_ffd81cc9b7_o.jpg", "secret": "0902845a0d", "media": "photo", "latitude": "0", "id": "4298176527", "tags": "eyefi"}, {"datetaken": "2010-01-23 13:45:26", "license": "2", "title": "River's first birthday cake", "text": "", "album_id": "72157623145280167", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4298921972_85211625f6_o.jpg", "secret": "620b7d05ff", "media": "photo", "latitude": "0", "id": "4298921972", "tags": "r4 eyefi"}, {"datetaken": "2010-01-23 13:45:35", "license": "2", "title": "Ooooohhhhhhh", "text": "", "album_id": "72157623145280167", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2685/4298922574_3a8fe5949c_o.jpg", "secret": "e66deea17e", "media": "photo", "latitude": "0", "id": "4298922574", "tags": "grammy r4 eyefi"}, {"datetaken": "2010-01-23 13:45:51", "license": "0", "title": "365.364", "text": "", "album_id": "72157623145280167", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4298923312_9b57ef9d65_o.jpg", "secret": "67a0c5098d", "media": "photo", "latitude": "0", "id": "4298923312", "tags": "grammy r4 eyefi"}, {"datetaken": "2010-01-23 13:46:03", "license": "2", "title": "Can I touch it?", "text": "", "album_id": "72157623145280167", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4298178261_50ed199aab_o.jpg", "secret": "a28a9097be", "media": "photo", "latitude": "0", "id": "4298178261", "tags": "grammy r4 eyefi"}, {"datetaken": "2010-01-23 13:46:25", "license": "2", "title": "IMG_1526.JPG", "text": "", "album_id": "72157623145280167", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2696/4298923708_c2d9fd899f_o.jpg", "secret": "81f807b246", "media": "photo", "latitude": "0", "id": "4298923708", "tags": "grammy r4 eyefi"}, {"datetaken": "2010-01-23 13:46:58", "license": "2", "title": "IMG_1527.JPG", "text": "", "album_id": "72157623145280167", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4298178951_1193f162f7_o.jpg", "secret": "65431c5c73", "media": "photo", "latitude": "0", "id": "4298178951", "tags": "grammy r4 eyefi"}, {"datetaken": "2010-01-23 13:47:30", "license": "2", "title": "Cake Time", "text": "", "album_id": "72157623145280167", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4298924488_2ed6b0155b_o.jpg", "secret": "2987185b45", "media": "photo", "latitude": "0", "id": "4298924488", "tags": "grammy r4 eyefi"}, {"datetaken": "2010-01-23 13:48:05", "license": "2", "title": "IMG_1529.JPG", "text": "", "album_id": "72157623145280167", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2687/4298179953_4085eda0b3_o.jpg", "secret": "634f6b8fc6", "media": "photo", "latitude": "0", "id": "4298179953", "tags": "grammy r4 eyefi"}, {"datetaken": "2010-01-23 13:48:38", "license": "2", "title": "River and Grammy", "text": "", "album_id": "72157623145280167", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4298925542_b8dc3049d5_o.jpg", "secret": "74f3414d8f", "media": "photo", "latitude": "0", "id": "4298925542", "tags": "grammy r4 eyefi"}, {"datetaken": "2010-01-23 14:13:37", "license": "2", "title": "River's Xylophone", "text": "", "album_id": "72157623145280167", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4298181565_285ce1fe33_o.jpg", "secret": "7e1aa3625b", "media": "photo", "latitude": "0", "id": "4298181565", "tags": "r4 eyefi"}, {"datetaken": "2010-01-23 14:21:05", "license": "2", "title": "River and Jackson Play", "text": "", "album_id": "72157623145280167", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4298927132_d87141ed5d_o.jpg", "secret": "7f9512d938", "media": "photo", "latitude": "0", "id": "4298927132", "tags": "r4 eyefi"}, {"datetaken": "2010-01-23 14:46:08", "license": "2", "title": "Jackson picks out books to read", "text": "", "album_id": "72157623145280167", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4298182249_d49717815c_o.jpg", "secret": "1d503da7e8", "media": "photo", "latitude": "0", "id": "4298182249", "tags": "jackson grampy eyefi"}, {"datetaken": "2010-01-21 18:40:00", "license": "4", "title": "Rsuenaga_Birthday-1", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2585/4297462394_456c51dfcf_o.jpg", "secret": "b0aa109fd1", "media": "photo", "latitude": "0", "id": "4297462394", "tags": "li nikon drink cocktail margarita hing d90 lihing kylenishiokacom lihingmargarita"}, {"datetaken": "2010-01-21 19:52:58", "license": "4", "title": "Rsuenaga_Birthday-2", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2540/4297462636_f3462dfca1_o.jpg", "secret": "484420ff7e", "media": "photo", "latitude": "0", "id": "4297462636", "tags": "nikon d90 kylenishiokacom"}, {"datetaken": "2010-01-21 20:11:00", "license": "4", "title": "Rsuenaga_Birthday-3", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4297462912_1efba9dc20_o.jpg", "secret": "6d30185104", "media": "photo", "latitude": "0", "id": "4297462912", "tags": "nikon d90 kylenishiokacom"}, {"datetaken": "2010-01-21 20:15:28", "license": "4", "title": "Rsuenaga_Birthday-4", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4297463054_1a8d8d4304_o.jpg", "secret": "9eb67b882a", "media": "photo", "latitude": "0", "id": "4297463054", "tags": "nikon d90 kylenishiokacom sishizaki"}, {"datetaken": "2010-01-21 20:20:01", "license": "4", "title": "Rsuenaga_Birthday-5", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2742/4297463294_f3ca79f8ec_o.jpg", "secret": "40c750f4fc", "media": "photo", "latitude": "0", "id": "4297463294", "tags": "nikon d90 kylenishiokacom rsuenaga sishizaki"}, {"datetaken": "2010-01-21 20:23:02", "license": "4", "title": "Rsuenaga_Birthday-6", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2680/4297463484_f7b2a3cd20_o.jpg", "secret": "546d7e8d75", "media": "photo", "latitude": "0", "id": "4297463484", "tags": "nikon d90 jeffkang kylenishiokacom"}, {"datetaken": "2010-01-21 20:29:14", "license": "4", "title": "Rsuenaga_Birthday-7", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2550/4296719679_d0aff400ef_o.jpg", "secret": "f7b3f5b73c", "media": "photo", "latitude": "0", "id": "4296719679", "tags": "nikon iamwhite d90 dallasnagata kylenishiokacom"}, {"datetaken": "2010-01-21 20:32:54", "license": "4", "title": "Rsuenaga_Birthday-8", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4297464076_d9571b2fed_o.jpg", "secret": "ee306d0393", "media": "photo", "latitude": "0", "id": "4297464076", "tags": "nikon d90 kylenishiokacom rsuenaga"}, {"datetaken": "2010-01-21 20:34:58", "license": "4", "title": "Rsuenaga_Birthday-9", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4297464250_fa6b4ae3a1_o.jpg", "secret": "4e726e2f13", "media": "photo", "latitude": "0", "id": "4297464250", "tags": "nikon d90 thestuffguy kylenishiokacom chrisshimabuku"}, {"datetaken": "2010-01-21 20:39:57", "license": "4", "title": "Rsuenaga_Birthday-10", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2676/4296720377_54b313c22d_o.jpg", "secret": "15cc3594a1", "media": "photo", "latitude": "0", "id": "4296720377", "tags": "nikon d90 kylenishiokacom usagikisses"}, {"datetaken": "2010-01-21 20:43:48", "license": "4", "title": "Rsuenaga_Birthday-11", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2558/4296720547_e52fd0d31a_o.jpg", "secret": "160211177a", "media": "photo", "latitude": "0", "id": "4296720547", "tags": "nikon d90 kylenishiokacom lalalinzy starletshay"}, {"datetaken": "2010-01-21 20:46:04", "license": "4", "title": "Rsuenaga_Birthday-12", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2487/4297464856_37bc84af9b_o.jpg", "secret": "d5b77b99dd", "media": "photo", "latitude": "0", "id": "4297464856", "tags": "nikon iamwhite d90 dallasnagata kylenishiokacom"}, {"datetaken": "2010-01-21 20:47:19", "license": "4", "title": "Rsuenaga_Birthday-13", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4297465010_2e85c43835_o.jpg", "secret": "370e57d87a", "media": "photo", "latitude": "0", "id": "4297465010", "tags": "nikon d90 kylenishiokacom lalalinzy starletshay"}, {"datetaken": "2010-01-21 20:47:58", "license": "4", "title": "Rsuenaga_Birthday-14", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4297465252_226502c179_o.jpg", "secret": "a6c0ee4359", "media": "photo", "latitude": "0", "id": "4297465252", "tags": "nikon d90 kylenishiokacom rsuenaga lalalinzy starletshay"}, {"datetaken": "2010-01-21 20:50:36", "license": "4", "title": "Rsuenaga_Birthday-15", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4297465506_e28cdbedf3_o.jpg", "secret": "9e2ff1e4b6", "media": "photo", "latitude": "0", "id": "4297465506", "tags": "nikon d90 kylenishiokacom rsuenaga"}, {"datetaken": "2010-01-21 20:50:57", "license": "4", "title": "Rsuenaga_Birthday-16", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4297465746_7c38312432_o.jpg", "secret": "bdf96ab479", "media": "photo", "latitude": "0", "id": "4297465746", "tags": "nikon d90 kylenishiokacom sishizaki chrisshimabuku"}, {"datetaken": "2010-01-21 20:55:20", "license": "4", "title": "Rsuenaga_Birthday-17", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4297466000_2180f62c8e_o.jpg", "secret": "de76b37722", "media": "photo", "latitude": "0", "id": "4297466000", "tags": "nikon d90 kylenishiokacom rsuenaga"}, {"datetaken": "2010-01-21 20:56:17", "license": "4", "title": "Rsuenaga_Birthday-18", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4297466148_cedefe7d43_o.jpg", "secret": "469b902b1e", "media": "photo", "latitude": "0", "id": "4297466148", "tags": "nikon d90 kylenishiokacom sishizaki"}, {"datetaken": "2010-01-21 20:58:49", "license": "4", "title": "Rsuenaga_Birthday-19", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4297466856_d5882835e9_o.jpg", "secret": "ee699d7f23", "media": "photo", "latitude": "0", "id": "4297466856", "tags": "nikon d90 dallasnagata kylenishiokacom"}, {"datetaken": "2010-01-21 21:01:43", "license": "4", "title": "Rsuenaga_Birthday-20", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4296723087_9e55df2e52_o.jpg", "secret": "580c308562", "media": "photo", "latitude": "0", "id": "4296723087", "tags": "nikon d90 kylenishiokacom"}, {"datetaken": "2010-01-21 21:17:48", "license": "4", "title": "Rsuenaga_Birthday-22", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4296723419_e3e4498521_o.jpg", "secret": "42c274f5ee", "media": "photo", "latitude": "0", "id": "4296723419", "tags": "nikon d90 davekozuki kylenishiokacom"}, {"datetaken": "2010-01-21 21:43:50", "license": "4", "title": "Rsuenaga_Birthday-23", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4297467914_986db2dd26_o.jpg", "secret": "ca3d20330c", "media": "photo", "latitude": "0", "id": "4297467914", "tags": "nikon d90 kylenishiokacom"}, {"datetaken": "2010-01-21 21:45:55", "license": "4", "title": "Rsuenaga_Birthday-24", "text": "", "album_id": "72157623266299104", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4296724185_4427e67a9e_o.jpg", "secret": "19cbe04d92", "media": "photo", "latitude": "0", "id": "4296724185", "tags": "nikon d90 kylenishiokacom rsuenaga"}, {"datetaken": "2008-02-02 21:36:28", "license": "4", "title": "CIMG4197.JPG", "text": "", "album_id": "72157604210838444", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2234/2354785346_4c0315d77a_o.jpg", "secret": "060a0b79bc", "media": "photo", "latitude": "0", "id": "2354785346", "tags": "laneybirthdayparty"}, {"datetaken": "2008-02-02 21:36:37", "license": "4", "title": "CIMG4198.JPG", "text": "", "album_id": "72157604210838444", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3111/2353956271_f6df352fe4_o.jpg", "secret": "3abe4908e7", "media": "photo", "latitude": "0", "id": "2353956271", "tags": ""}, {"datetaken": "2008-02-02 21:37:00", "license": "4", "title": "CIMG4199.JPG", "text": "", "album_id": "72157604210838444", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2046/2354786566_948c4db54f_o.jpg", "secret": "e67c38203f", "media": "photo", "latitude": "0", "id": "2354786566", "tags": ""}, {"datetaken": "2008-02-02 21:37:30", "license": "4", "title": "CIMG4200.JPG", "text": "", "album_id": "72157604210838444", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3285/2354787082_3b36c85bdb_o.jpg", "secret": "6e46947ff2", "media": "photo", "latitude": "0", "id": "2354787082", "tags": ""}, {"datetaken": "2008-02-02 21:38:32", "license": "4", "title": "CIMG4201.JPG", "text": "", "album_id": "72157604210838444", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2211/2353958103_6d3cb904dd_o.jpg", "secret": "65c1eeb1b3", "media": "photo", "latitude": "0", "id": "2353958103", "tags": ""}, {"datetaken": "2008-02-02 21:38:48", "license": "4", "title": "CIMG4202.JPG", "text": "", "album_id": "72157604210838444", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3181/2353958853_4d53b083bc_o.jpg", "secret": "8b865bbbde", "media": "photo", "latitude": "0", "id": "2353958853", "tags": ""}, {"datetaken": "2008-02-02 21:39:11", "license": "4", "title": "CIMG4203.JPG", "text": "", "album_id": "72157604210838444", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2406/2353959517_d3018a2ba4_o.jpg", "secret": "dcdb288087", "media": "photo", "latitude": "0", "id": "2353959517", "tags": ""}, {"datetaken": "2008-02-02 21:39:38", "license": "4", "title": "CIMG4204.JPG", "text": "", "album_id": "72157604210838444", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2212/2354789864_f12c7feca7_o.jpg", "secret": "640ec6d2ec", "media": "photo", "latitude": "0", "id": "2354789864", "tags": ""}, {"datetaken": "2008-02-02 21:40:12", "license": "4", "title": "CIMG4205.JPG", "text": "", "album_id": "72157604210838444", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2111/2353960769_f35e36fab5_o.jpg", "secret": "8a4a68ae05", "media": "photo", "latitude": "0", "id": "2353960769", "tags": ""}, {"datetaken": "2008-02-02 21:40:43", "license": "4", "title": "CIMG4206.JPG", "text": "", "album_id": "72157604210838444", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3002/2353961393_f18d9f0bdf_o.jpg", "secret": "a38bf35ecb", "media": "photo", "latitude": "0", "id": "2353961393", "tags": ""}, {"datetaken": "2008-02-02 21:41:10", "license": "4", "title": "CIMG4207.JPG", "text": "", "album_id": "72157604210838444", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3130/2354791734_92a0805308_o.jpg", "secret": "9a3ec93f0f", "media": "photo", "latitude": "0", "id": "2354791734", "tags": ""}, {"datetaken": "2008-02-02 22:34:41", "license": "4", "title": "CIMG4209.JPG", "text": "", "album_id": "72157604210838444", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3101/2353962603_72c8374d5e_o.jpg", "secret": "384fd67f3f", "media": "photo", "latitude": "0", "id": "2353962603", "tags": ""}, {"datetaken": "2008-02-02 22:35:06", "license": "4", "title": "CIMG4210.JPG", "text": "", "album_id": "72157604210838444", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2008/2354793090_9cd6fd0b1e_o.jpg", "secret": "26382e0c04", "media": "photo", "latitude": "0", "id": "2354793090", "tags": ""}, {"datetaken": "2008-02-02 22:40:19", "license": "4", "title": "CIMG4213.JPG", "text": "", "album_id": "72157604210838444", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3267/2354793690_48cc090324_o.jpg", "secret": "841f295594", "media": "photo", "latitude": "0", "id": "2354793690", "tags": ""}, {"datetaken": "2008-02-02 22:41:59", "license": "4", "title": "CIMG4216.JPG", "text": "", "album_id": "72157604210838444", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3205/2353964479_ff8569bf65_o.jpg", "secret": "24ef6d4373", "media": "photo", "latitude": "0", "id": "2353964479", "tags": ""}, {"datetaken": "2008-02-03 00:19:56", "license": "4", "title": "CIMG4219.JPG", "text": "", "album_id": "72157604210838444", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3240/2353965125_7d04c4174c_o.jpg", "secret": "63d9e8f098", "media": "photo", "latitude": "0", "id": "2353965125", "tags": ""}, {"datetaken": "2008-02-03 00:20:04", "license": "4", "title": "CIMG4220.JPG", "text": "", "album_id": "72157604210838444", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2012/2354795376_8b7acd0d02_o.jpg", "secret": "58fb408a3c", "media": "photo", "latitude": "0", "id": "2354795376", "tags": ""}, {"datetaken": "2008-03-10 21:54:40", "license": "1", "title": "Smooches", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3150/2355664751_014c4e176a_o.jpg", "secret": "753baa336d", "media": "photo", "latitude": "0", "id": "2355664751", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry"}, {"datetaken": "2008-03-10 21:57:36", "license": "1", "title": "The hat", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2251/2356499754_4dfbb88fa9_o.jpg", "secret": "3021b72b44", "media": "photo", "latitude": "0", "id": "2356499754", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry"}, {"datetaken": "2008-03-10 21:58:04", "license": "1", "title": "Shawn Randall & Bob", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3229/2356500264_82b27afe48_o.jpg", "secret": "3de2b9e9c4", "media": "photo", "latitude": "0", "id": "2356500264", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry"}, {"datetaken": "2008-03-10 22:01:01", "license": "1", "title": "Back of the club", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2389/2356500722_a2371182db_o.jpg", "secret": "42afc41435", "media": "photo", "latitude": "0", "id": "2356500722", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry"}, {"datetaken": "2008-03-10 22:01:30", "license": "1", "title": "Front of the Club", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2260/2355666839_89259a9152_o.jpg", "secret": "c204e1d5fe", "media": "photo", "latitude": "0", "id": "2355666839", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry"}, {"datetaken": "2008-03-10 22:01:48", "license": "1", "title": "Celena Glenn", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2112/2356501682_d59d9ab48e_o.jpg", "secret": "e0218cb508", "media": "photo", "latitude": "0", "id": "2356501682", "tags": "birthday nyc newyork 10012 bowery bobholman celenaglenn bowerypoetry"}, {"datetaken": "2008-03-10 22:03:18", "license": "1", "title": "Rev Jen, JJ, Bob", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2296/2355667715_19ba377c90_o.jpg", "secret": "ce66ae1851", "media": "photo", "latitude": "0", "id": "2355667715", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry"}, {"datetaken": "2008-03-10 22:07:17", "license": "1", "title": "Candles by Daisy", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3275/2356502588_d2b3b5e8a8_o.jpg", "secret": "143926ea49", "media": "photo", "latitude": "0", "id": "2356502588", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry daisyholman"}, {"datetaken": "2008-03-10 22:07:20", "license": "1", "title": "Blow them out", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3146/2356503030_3cf8046cfd_o.jpg", "secret": "e484ca5dca", "media": "photo", "latitude": "0", "id": "2356503030", "tags": "birthday nyc newyork 10012 bowery daisy holman bobholman bowerypoetry"}, {"datetaken": "2008-03-10 22:08:02", "license": "1", "title": "Bob & Gary Glazner", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3145/2356503438_2f214e5569_o.jpg", "secret": "5485d3835b", "media": "photo", "latitude": "0", "id": "2356503438", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry garyglazner"}, {"datetaken": "2008-03-10 22:08:20", "license": "1", "title": "The meaning of the red hat", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2404/2355669273_f34ac2ebbc_o.jpg", "secret": "823800f8ef", "media": "photo", "latitude": "0", "id": "2355669273", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry"}, {"datetaken": "2008-03-10 22:09:01", "license": "1", "title": "Dad & daughter", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2186/2355669687_68d0cc2f18_o.jpg", "secret": "84e8772459", "media": "photo", "latitude": "0", "id": "2355669687", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry daisyholman"}, {"datetaken": "2008-03-10 22:09:32", "license": "1", "title": "Ed Greer", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2348/2355670247_506c562fb5_o.jpg", "secret": "fc41b4798f", "media": "photo", "latitude": "0", "id": "2355670247", "tags": "birthday nyc newyork 10012 bowery greer bobholman bowerypoetry"}, {"datetaken": "2008-03-10 22:09:56", "license": "1", "title": "Gary & Ed", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3074/2355670815_199111fbaa_o.jpg", "secret": "20e034af6b", "media": "photo", "latitude": "0", "id": "2355670815", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry garyglazner edgreer"}, {"datetaken": "2008-03-10 22:18:40", "license": "1", "title": "At the bar", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2326/2356505742_716958c502_o.jpg", "secret": "5fb7f735a2", "media": "photo", "latitude": "0", "id": "2356505742", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry"}, {"datetaken": "2008-03-10 22:21:18", "license": "1", "title": "Tanya O'Debra", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2260/2355671717_b086365e88_o.jpg", "secret": "20cc3d61f1", "media": "photo", "latitude": "0", "id": "2355671717", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry"}, {"datetaken": "2008-03-10 22:22:02", "license": "1", "title": "From the bar", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2270/2355672227_0e041247fb_o.jpg", "secret": "185887f274", "media": "photo", "latitude": "0", "id": "2355672227", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry"}, {"datetaken": "2008-03-10 22:33:58", "license": "1", "title": "Shawn Randall", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2054/2355672631_91be563591_o.jpg", "secret": "c7d4e4173f", "media": "photo", "latitude": "0", "id": "2355672631", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry shawnrandall"}, {"datetaken": "2008-03-10 22:35:59", "license": "1", "title": "On stage", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2037/2355673019_f9f13bf3bb_o.jpg", "secret": "efd05154a7", "media": "photo", "latitude": "0", "id": "2355673019", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry"}, {"datetaken": "2008-03-10 22:38:39", "license": "1", "title": "Nathaniel Siegel", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2246/2356507924_ba7a7e80bc_o.jpg", "secret": "3b67a42b79", "media": "photo", "latitude": "0", "id": "2356507924", "tags": "birthday nyc newyork 10012 bowery bobholman nathanielsiegel bowerypoetry"}, {"datetaken": "2008-03-10 22:38:50", "license": "1", "title": "Nathaniel & pal", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2341/2356508412_19f5c220f5_o.jpg", "secret": "4dc8f16273", "media": "photo", "latitude": "0", "id": "2356508412", "tags": "birthday nyc newyork 10012 bowery bobholman nathanielsiegel bowerypoetry"}, {"datetaken": "2008-03-10 22:40:27", "license": "1", "title": "Nick Jones reads", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3195/2355674443_a2a59fe14d_o.jpg", "secret": "9e31ede857", "media": "photo", "latitude": "0", "id": "2355674443", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry nickjones"}, {"datetaken": "2008-03-10 22:45:02", "license": "1", "title": "A Brief View of the Hudson", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2280/2355674907_e30475004f_o.jpg", "secret": "58a59ebb64", "media": "photo", "latitude": "0", "id": "2355674907", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry"}, {"datetaken": "2008-03-10 23:11:58", "license": "1", "title": "The O'Debra Twins", "text": "", "album_id": "72157604222780993", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2411/2356509682_c8c56ef31e_o.jpg", "secret": "9487a2424c", "media": "photo", "latitude": "0", "id": "2356509682", "tags": "birthday nyc newyork 10012 bowery bobholman bowerypoetry"}, {"datetaken": "2008-03-23 18:23:48", "license": "4", "title": "always handsome mr. johnson", "text": "", "album_id": "72157604277912088", "longitude": "-71.094665", "url_o": "https://farm4.staticflickr.com/3200/2367406207_7f2393b36b_o.jpg", "secret": "a9b63f3f42", "media": "photo", "latitude": "42.368671", "id": "2367406207", "tags": "birthday cambridge ma kevin bside mrjohnson"}, {"datetaken": "2008-03-23 18:24:57", "license": "4", "title": "laura & 1/2 jeff", "text": "", "album_id": "72157604277912088", "longitude": "-71.094665", "url_o": "https://farm4.staticflickr.com/3231/2368211654_07f773ea3e_o.jpg", "secret": "8904688e6c", "media": "photo", "latitude": "42.368671", "id": "2368211654", "tags": "birthday cambridge laura jeff ma bside"}, {"datetaken": "2008-03-23 18:27:44", "license": "4", "title": "dona", "text": "", "album_id": "72157604277912088", "longitude": "-71.094665", "url_o": "https://farm3.staticflickr.com/2413/2368216488_0e5300c0f5_o.jpg", "secret": "51a1f18de5", "media": "photo", "latitude": "42.368671", "id": "2368216488", "tags": "birthday cambridge ma dona bside"}, {"datetaken": "2008-03-23 18:31:56", "license": "4", "title": "nicole & chokdee", "text": "", "album_id": "72157604277912088", "longitude": "-71.094665", "url_o": "https://farm3.staticflickr.com/2417/2368230078_f4e136f3d0_o.jpg", "secret": "ff81dd5072", "media": "photo", "latitude": "42.368671", "id": "2368230078", "tags": "birthday cambridge ma nicole bside chokdee"}, {"datetaken": "2008-03-23 18:32:36", "license": "4", "title": "gabe & jeff", "text": "", "album_id": "72157604277912088", "longitude": "-71.094665", "url_o": "https://farm4.staticflickr.com/3162/2368224926_87c1a86283_o.jpg", "secret": "41aeecf5e2", "media": "photo", "latitude": "42.368671", "id": "2368224926", "tags": "birthday cambridge jeff ma gabe bside"}, {"datetaken": "2008-03-23 18:35:17", "license": "4", "title": "jeff & shanna", "text": "", "album_id": "72157604277912088", "longitude": "-71.094665", "url_o": "https://farm4.staticflickr.com/3096/2368235546_97042bdd88_o.jpg", "secret": "1f6c0d5d8a", "media": "photo", "latitude": "42.368671", "id": "2368235546", "tags": "birthday cambridge jeff ma shanna bside"}, {"datetaken": "2008-03-23 18:45:49", "license": "4", "title": "jeff & shanna", "text": "", "album_id": "72157604277912088", "longitude": "-71.094665", "url_o": "https://farm4.staticflickr.com/3271/2367426605_67262e8f98_o.jpg", "secret": "178e5e2cf3", "media": "photo", "latitude": "42.368671", "id": "2367426605", "tags": "birthday cambridge jeff ma shanna bside"}, {"datetaken": "2008-03-23 18:47:56", "license": "4", "title": "laura with gabe & bob", "text": "", "album_id": "72157604277912088", "longitude": "-71.094665", "url_o": "https://farm3.staticflickr.com/2307/2368205980_1d1128fa2d_o.jpg", "secret": "346df83a45", "media": "photo", "latitude": "42.368671", "id": "2368205980", "tags": "birthday cambridge laura ma gabe bob bside"}, {"datetaken": "2008-03-23 18:48:12", "license": "4", "title": "laura & bob", "text": "", "album_id": "72157604277912088", "longitude": "-71.094665", "url_o": "https://farm4.staticflickr.com/3051/2368191576_6ed6f48faf_o.jpg", "secret": "0005b8fa3d", "media": "photo", "latitude": "42.368671", "id": "2368191576", "tags": "birthday cambridge laura ma bob bside"}, {"datetaken": "2008-03-23 18:53:50", "license": "4", "title": "laura", "text": "", "album_id": "72157604277912088", "longitude": "-71.094665", "url_o": "https://farm4.staticflickr.com/3069/2368277300_17f764956a_o.jpg", "secret": "8ab96b5635", "media": "photo", "latitude": "42.368671", "id": "2368277300", "tags": "birthday cambridge laura jeff ma shanna bside"}, {"datetaken": "2008-03-23 21:22:36", "license": "4", "title": "laura & mr. johnson", "text": "", "album_id": "72157604277912088", "longitude": "-71.094665", "url_o": "https://farm3.staticflickr.com/2055/2368279632_961358fe0e_o.jpg", "secret": "50a3e5391e", "media": "photo", "latitude": "42.368671", "id": "2368279632", "tags": "birthday cambridge laura ma kevin bside mrjohnson"}, {"datetaken": "2008-03-23 21:23:12", "license": "4", "title": "laura & mr. johnson", "text": "", "album_id": "72157604277912088", "longitude": "-71.094665", "url_o": "https://farm3.staticflickr.com/2104/2368200226_585cee4c61_o.jpg", "secret": "f71c902f29", "media": "photo", "latitude": "42.368671", "id": "2368200226", "tags": "birthday cambridge laura ma kevin bside mrjohnson"}, {"datetaken": "2008-03-23 21:42:23", "license": "4", "title": "getting ready for laura's birthday.", "text": "", "album_id": "72157604277912088", "longitude": "-71.094665", "url_o": "https://farm4.staticflickr.com/3103/2356708728_6375fa5a0d_o.jpg", "secret": "ff5baf54bd", "media": "photo", "latitude": "42.368671", "id": "2356708728", "tags": ""}, {"datetaken": "2005-05-24 13:25:40", "license": "1", "title": "macau0002", "text": "", "album_id": "371259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/15425818_3ab6354727_o.jpg", "secret": "3ab6354727", "media": "photo", "latitude": "0", "id": "15425818", "tags": "stamps"}, {"datetaken": "2005-05-24 13:25:49", "license": "1", "title": "finland0001", "text": "", "album_id": "371259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/15426587_8a4f90ad5a_o.jpg", "secret": "8a4f90ad5a", "media": "photo", "latitude": "0", "id": "15426587", "tags": "stamps"}, {"datetaken": "2005-05-24 13:36:20", "license": "1", "title": "macau0007", "text": "", "album_id": "371259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15426362_b7ab7cc649_o.jpg", "secret": "b7ab7cc649", "media": "photo", "latitude": "0", "id": "15426362", "tags": "stamps"}, {"datetaken": "2005-05-24 14:12:42", "license": "1", "title": "china0001", "text": "", "album_id": "371259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/15426921_9e4b1a0edc_o.jpg", "secret": "9e4b1a0edc", "media": "photo", "latitude": "0", "id": "15426921", "tags": "stamps \u4e2d\u56fd\u4eba\u6c11\u90f5\u653f"}, {"datetaken": "2005-05-24 14:13:12", "license": "1", "title": "The 15th Anniversary - Liberation of Czechoslovakia", "text": "", "album_id": "371259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15426991_a400f35561_o.jpg", "secret": "a400f35561", "media": "photo", "latitude": "0", "id": "15426991", "tags": "stamps communist"}, {"datetaken": "2005-05-24 14:13:20", "license": "1", "title": "china0005", "text": "", "album_id": "371259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/15427002_a0f2be5674_o.jpg", "secret": "a0f2be5674", "media": "photo", "latitude": "0", "id": "15427002", "tags": "stamps communist"}, {"datetaken": "2005-05-24 14:14:09", "license": "1", "title": "The 15th Anniversary of the Establishment of the PRC", "text": "", "album_id": "371259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15427066_d92b717e14_o.jpg", "secret": "d92b717e14", "media": "photo", "latitude": "0", "id": "15427066", "tags": "stamps communist"}, {"datetaken": "2005-05-24 14:15:04", "license": "1", "title": "Mao's writing on Lu Xun", "text": "", "album_id": "371259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15427193_a18758e6b6_o.jpg", "secret": "a18758e6b6", "media": "photo", "latitude": "0", "id": "15427193", "tags": "stamps communist"}, {"datetaken": "2005-05-24 14:15:14", "license": "1", "title": "Mao's Poetry", "text": "", "album_id": "371259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/15427230_f91c72ebc3_o.jpg", "secret": "f91c72ebc3", "media": "photo", "latitude": "0", "id": "15427230", "tags": "stamps communist"}, {"datetaken": "2005-05-24 14:15:24", "license": "1", "title": "Karl Marx' 145th birthday", "text": "", "album_id": "371259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15427259_a272af9d0b_o.jpg", "secret": "a272af9d0b", "media": "photo", "latitude": "0", "id": "15427259", "tags": "stamps communist"}, {"datetaken": "2005-05-24 14:15:33", "license": "1", "title": "Lu Xun", "text": "", "album_id": "371259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15427277_98873af7f4_o.jpg", "secret": "98873af7f4", "media": "photo", "latitude": "0", "id": "15427277", "tags": "stamps communist"}, {"datetaken": "2005-05-24 15:56:15", "license": "1", "title": "japan0001", "text": "", "album_id": "371259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15433121_c65fdb6cd0_o.jpg", "secret": "c65fdb6cd0", "media": "photo", "latitude": "0", "id": "15433121", "tags": "japan stamps \u65e5\u672c"}, {"datetaken": "2005-05-24 15:56:25", "license": "1", "title": "japan0002", "text": "", "album_id": "371259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15433137_7e236f8fba_o.jpg", "secret": "7e236f8fba", "media": "photo", "latitude": "0", "id": "15433137", "tags": "japan stamps \u65e5\u672c"}, {"datetaken": "2005-05-24 15:56:37", "license": "1", "title": "japan0003", "text": "", "album_id": "371259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15433145_78b14da780_o.jpg", "secret": "78b14da780", "media": "photo", "latitude": "0", "id": "15433145", "tags": "japan stamps \u65e5\u672c"}, {"datetaken": "2005-05-24 15:56:56", "license": "1", "title": "japan0005", "text": "", "album_id": "371259", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/15433173_82adb6b0e9_o.jpg", "secret": "82adb6b0e9", "media": "photo", "latitude": "0", "id": "15433173", "tags": "japan stamps \u65e5\u672c"}, {"datetaken": "2010-03-23 12:04:30", "license": "6", "title": "Duck", "text": "", "album_id": "72157623688452862", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4461695788_52b3e7d498_o.jpg", "secret": "5282250487", "media": "photo", "latitude": "0", "id": "4461695788", "tags": "city green water animal harbor duck day maryland baltimore inner busy"}, {"datetaken": "2010-03-23 12:05:13", "license": "6", "title": "Happy Birthday Boy", "text": "", "album_id": "72157623688452862", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4460919505_185faee862_o.jpg", "secret": "af433c0431", "media": "photo", "latitude": "0", "id": "4460919505", "tags": "city boy water happy harbor day maryland baltimore inner busy teenager"}, {"datetaken": "2010-03-23 12:05:50", "license": "6", "title": "Past and Present (USS Constellation)", "text": "", "album_id": "72157623688452862", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2784/4460920487_4b7d54e6cf_o.jpg", "secret": "4dbc25558e", "media": "photo", "latitude": "0", "id": "4460920487", "tags": "city history feet water walking harbor boat moving day ship maryland baltimore inner busy historical"}, {"datetaken": "2010-03-23 12:08:33", "license": "6", "title": "USS Constellation", "text": "", "album_id": "72157623688452862", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4460941837_6a670d0d22_o.jpg", "secret": "34819fc88a", "media": "photo", "latitude": "0", "id": "4460941837", "tags": "city water harbor boat aqua day ship 1800s maryland baltimore historic inner busy 1900s"}, {"datetaken": "2010-03-23 12:18:35", "license": "6", "title": "Alley...", "text": "", "album_id": "72157623688452862", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4460921195_6edc5192df_o.jpg", "secret": "1693df9e1f", "media": "photo", "latitude": "0", "id": "4460921195", "tags": "city bridge stairs fire harbor alley day escape maryland baltimore inner busy"}, {"datetaken": "2010-03-23 12:18:45", "license": "6", "title": "Walking Aimlessly", "text": "", "album_id": "72157623688452862", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4475727688_a26a0e1b99_o.jpg", "secret": "a29dc9d8fb", "media": "photo", "latitude": "0", "id": "4475727688", "tags": "street city man building walking graffiti alley day walk maryland baltimore"}, {"datetaken": "2010-03-23 12:21:03", "license": "6", "title": "Frame", "text": "", "album_id": "72157623688452862", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4461697152_5398814e64_o.jpg", "secret": "b794ab946a", "media": "photo", "latitude": "0", "id": "4461697152", "tags": "street city white harbor day maryland baltimore inner busy curve"}, {"datetaken": "2010-03-23 12:24:01", "license": "6", "title": "Busy", "text": "", "album_id": "72157623688452862", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2725/4460921991_d043a51ed1_o.jpg", "secret": "775c0f3889", "media": "photo", "latitude": "0", "id": "4460921991", "tags": "city harbor day maryland baltimore inner busy"}, {"datetaken": "2010-03-23 12:25:28", "license": "6", "title": "Graffiti", "text": "", "album_id": "72157623688452862", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4461700118_fab906a5de_o.jpg", "secret": "cf689e129e", "media": "photo", "latitude": "0", "id": "4461700118", "tags": "city stairs fire graffiti harbor alley day escape maryland baltimore inner busy"}, {"datetaken": "2010-03-23 12:25:45", "license": "6", "title": "Here To Stay", "text": "", "album_id": "72157623688452862", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4461701210_40c28dc2cf_o.jpg", "secret": "b0b9943a21", "media": "photo", "latitude": "0", "id": "4461701210", "tags": "city graffiti harbor alley day maryland baltimore inner busy"}, {"datetaken": "2010-03-23 12:25:55", "license": "6", "title": "Fire Escape", "text": "", "album_id": "72157623688452862", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4461704240_2c5a9e7e46_o.jpg", "secret": "1ebd8c3361", "media": "photo", "latitude": "0", "id": "4461704240", "tags": "city stairs fire harbor alley day escape maryland baltimore inner busy"}, {"datetaken": "2010-03-23 12:26:28", "license": "6", "title": "Pink", "text": "", "album_id": "72157623688452862", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4460927733_7b2372f8b7_o.jpg", "secret": "016a13c19d", "media": "photo", "latitude": "0", "id": "4460927733", "tags": "road street city pink bus car graffiti harbor day maryland baltimore inner busy"}, {"datetaken": "2010-03-23 12:43:28", "license": "6", "title": "Ship Food (USS Constellation)", "text": "", "album_id": "72157623688452862", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4461705524_e212e3e498_o.jpg", "secret": "7a8fdf2f0a", "media": "photo", "latitude": "0", "id": "4461705524", "tags": "city food harbor day maryland can baltimore inner busy canned historical"}, {"datetaken": "2010-03-23 14:07:37", "license": "6", "title": "Stairway Out (Fort McHenry)", "text": "", "album_id": "72157623688452862", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2680/4460929891_5444667855_o.jpg", "secret": "451ced796c", "media": "photo", "latitude": "0", "id": "4460929891", "tags": "city light history stairs harbor war day fort maryland baltimore inner doorway busy historical shelter"}, {"datetaken": "2010-03-23 14:18:02", "license": "6", "title": "Shelter (Fort McHenry)", "text": "", "album_id": "72157623688452862", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4461708622_96fe7fb09f_o.jpg", "secret": "043c99746a", "media": "photo", "latitude": "0", "id": "4461708622", "tags": "city america harbor war day fort maryland baltimore inner busy shelter"}, {"datetaken": "2010-03-23 14:23:29", "license": "6", "title": "Inside the Fort", "text": "", "album_id": "72157623688452862", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4474930459_84542386e2_o.jpg", "secret": "0b7687b2d8", "media": "photo", "latitude": "0", "id": "4474930459", "tags": "old green architecture america bench war day fort maryland baltimore american revolution shutters shutter british revolutionary mchenry"}, {"datetaken": "2008-03-21 15:46:57", "license": "1", "title": "Fluid Living Arseholes Goalie", "text": "", "album_id": "72157604254258819", "longitude": "-79.513517", "url_o": "https://farm3.staticflickr.com/2390/2363086018_55f2a0fb15_o.jpg", "secret": "dd19def6ab", "media": "photo", "latitude": "43.774665", "id": "2363086018", "tags": "york toronto hockey sloan ferries exclaim arseholes exclaimcup"}, {"datetaken": "2008-03-21 15:47:12", "license": "1", "title": "Fluid Living Arseholes Goalie 2", "text": "", "album_id": "72157604254258819", "longitude": "-79.513517", "url_o": "https://farm4.staticflickr.com/3043/2362255755_4401544220_o.jpg", "secret": "16e509f349", "media": "photo", "latitude": "43.774665", "id": "2362255755", "tags": "york toronto hockey sloan ferries exclaim arseholes exclaimcup"}, {"datetaken": "2008-03-21 15:56:43", "license": "1", "title": "Chris Murphy skating", "text": "", "album_id": "72157604254258819", "longitude": "-79.513517", "url_o": "https://farm4.staticflickr.com/3254/2362256605_d5d3151b30_o.jpg", "secret": "17c86a3981", "media": "photo", "latitude": "43.774665", "id": "2362256605", "tags": "york toronto hockey sloan ferries exclaim arseholes exclaimcup"}, {"datetaken": "2008-03-21 16:04:39", "license": "1", "title": "Arseholes 69", "text": "", "album_id": "72157604254258819", "longitude": "-79.513517", "url_o": "https://farm3.staticflickr.com/2059/2363087488_57530dc95d_o.jpg", "secret": "5b2a889639", "media": "photo", "latitude": "43.774665", "id": "2363087488", "tags": "york toronto hockey sloan ferries exclaim arseholes exclaimcup"}, {"datetaken": "2008-03-21 16:05:33", "license": "1", "title": "Murphy on the ice", "text": "", "album_id": "72157604254258819", "longitude": "-79.513517", "url_o": "https://farm3.staticflickr.com/2329/2363087664_ecc9dc41de_o.jpg", "secret": "3bb30c6034", "media": "photo", "latitude": "43.774665", "id": "2363087664", "tags": "york toronto hockey sloan ferries exclaim arseholes exclaimcup"}, {"datetaken": "2008-03-21 16:10:21", "license": "1", "title": "Andrew faces off", "text": "", "album_id": "72157604254258819", "longitude": "-79.513517", "url_o": "https://farm3.staticflickr.com/2325/2362257433_591ba71160_o.jpg", "secret": "d33a96aed2", "media": "photo", "latitude": "43.774665", "id": "2362257433", "tags": "york toronto hockey sloan ferries exclaim arseholes exclaimcup"}, {"datetaken": "2008-03-21 16:45:18", "license": "1", "title": "Grant Lawrence", "text": "", "album_id": "72157604254258819", "longitude": "-79.513517", "url_o": "https://farm3.staticflickr.com/2017/2363088280_8bcf6607bc_o.jpg", "secret": "eecd34d126", "media": "photo", "latitude": "43.774665", "id": "2363088280", "tags": "york toronto hockey sloan ferries exclaim arseholes exclaimcup"}, {"datetaken": "2008-03-21 16:48:26", "license": "1", "title": "Grant Lawrence 2", "text": "", "album_id": "72157604254258819", "longitude": "-79.513517", "url_o": "https://farm4.staticflickr.com/3268/2363088510_a5e02a4ac2_o.jpg", "secret": "09ceabb48a", "media": "photo", "latitude": "43.774665", "id": "2363088510", "tags": "york toronto hockey sloan ferries exclaim arseholes exclaimcup"}, {"datetaken": "2008-03-22 12:47:16", "license": "1", "title": "Andrew face-off again", "text": "", "album_id": "72157604254258819", "longitude": "-79.513517", "url_o": "https://farm4.staticflickr.com/3216/2363089798_7a8f56f7a8_o.jpg", "secret": "2bcf9f7e5c", "media": "photo", "latitude": "43.774665", "id": "2363089798", "tags": "york toronto hockey sloan ferries exclaim arseholes exclaimcup"}, {"datetaken": "2008-03-22 12:53:20", "license": "1", "title": "Halifax-Dartmouth Ferries", "text": "", "album_id": "72157604254258819", "longitude": "-79.513517", "url_o": "https://farm3.staticflickr.com/2001/2362259617_05feae507b_o.jpg", "secret": "94718a3767", "media": "photo", "latitude": "43.774665", "id": "2362259617", "tags": "york toronto hockey sloan ferries exclaim arseholes exclaimcup"}, {"datetaken": "2008-03-22 12:57:53", "license": "1", "title": "Murph vs. the Millionaires", "text": "", "album_id": "72157604254258819", "longitude": "-79.513517", "url_o": "https://farm3.staticflickr.com/2115/2363090560_0bfa002bd9_o.jpg", "secret": "36a8383ca2", "media": "photo", "latitude": "43.774665", "id": "2363090560", "tags": "york toronto hockey sloan ferries exclaim arseholes exclaimcup"}, {"datetaken": "2008-03-22 13:05:10", "license": "1", "title": "Ruhee at exclaim cup", "text": "", "album_id": "72157604254258819", "longitude": "-79.513517", "url_o": "https://farm3.staticflickr.com/2121/2362260271_2abc249080_o.jpg", "secret": "16e69a5d61", "media": "photo", "latitude": "43.774665", "id": "2362260271", "tags": "york friends toronto hockey fun march sloan ankle 2008 ferries exclaim ruhee arseholes cheapspeakers saddleup ruheesbirthday exclaimcup"}, {"datetaken": "2001-07-14 18:17:09", "license": "1", "title": "15632427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5453249_371f1bd005_o.jpg", "secret": "371f1bd005", "media": "photo", "latitude": "0", "id": "5453249", "tags": "2001 jon kevin jen jean brian todd southpadreisland kevincheng kevnull"}, {"datetaken": "2001-07-14 18:17:10", "license": "1", "title": "16902427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5453251_1e078cb2eb_o.jpg", "secret": "1e078cb2eb", "media": "photo", "latitude": "0", "id": "5453251", "tags": "southpadreisland jon todd birthday 2001"}, {"datetaken": "2001-07-14 18:17:11", "license": "1", "title": "32121427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5453253_9a47ece626_o.jpg", "secret": "9a47ece626", "media": "photo", "latitude": "0", "id": "5453253", "tags": "southpadreisland jon 2001"}, {"datetaken": "2001-07-14 18:17:11", "license": "1", "title": "24632427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5453252_e2ea26d9ab_o.jpg", "secret": "e2ea26d9ab", "media": "photo", "latitude": "0", "id": "5453252", "tags": "southpadreisland jean 2001"}, {"datetaken": "2001-07-14 18:17:13", "license": "1", "title": "34422427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5453255_e8a09eaa51_o.jpg", "secret": "e8a09eaa51", "media": "photo", "latitude": "0", "id": "5453255", "tags": "southpadreisland todd birthday 2001"}, {"datetaken": "2001-07-14 18:17:14", "license": "1", "title": "41391427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5453259_f9723f6cb9_o.jpg", "secret": "f9723f6cb9", "media": "photo", "latitude": "0", "id": "5453259", "tags": "southpadreisland todd 2001"}, {"datetaken": "2001-07-14 18:17:14", "license": "1", "title": "37441427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5453257_0d75beea40_o.jpg", "secret": "0d75beea40", "media": "photo", "latitude": "0", "id": "5453257", "tags": "southpadreisland jon 2001"}, {"datetaken": "2001-07-14 18:17:15", "license": "1", "title": "46861427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5453258_a84110a03e_o.jpg", "secret": "a84110a03e", "media": "photo", "latitude": "0", "id": "5453258", "tags": "southpadreisland 2001"}, {"datetaken": "2001-07-14 18:17:16", "license": "1", "title": "52752427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5453260_b3d4dbdecc_o.jpg", "secret": "b3d4dbdecc", "media": "photo", "latitude": "0", "id": "5453260", "tags": "2001 jon kevin jen southpadreisland kevincheng kevnull"}, {"datetaken": "2001-07-14 18:17:17", "license": "1", "title": "57261427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5453261_8484e2d431_o.jpg", "secret": "8484e2d431", "media": "photo", "latitude": "0", "id": "5453261", "tags": "southpadreisland todd brian 2001"}, {"datetaken": "2001-07-14 18:17:18", "license": "1", "title": "70461427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5453262_b4c51e6cf9_o.jpg", "secret": "b4c51e6cf9", "media": "photo", "latitude": "0", "id": "5453262", "tags": "southpadreisland jen 2001"}, {"datetaken": "2001-07-14 18:17:19", "license": "1", "title": "72391427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5453263_9f507b87b8_o.jpg", "secret": "9f507b87b8", "media": "photo", "latitude": "0", "id": "5453263", "tags": "southpadreisland 2001"}, {"datetaken": "2001-07-14 18:17:20", "license": "1", "title": "72532427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5453265_3942ed0f21_o.jpg", "secret": "3942ed0f21", "media": "photo", "latitude": "0", "id": "5453265", "tags": "southpadreisland todd birthday 2001"}, {"datetaken": "2001-07-14 18:17:21", "license": "1", "title": "78822427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5453266_bd6e8a480f_o.jpg", "secret": "bd6e8a480f", "media": "photo", "latitude": "0", "id": "5453266", "tags": "2001 jon kevin jen southpadreisland kevincheng kevnull"}, {"datetaken": "2001-07-14 18:17:22", "license": "1", "title": "81852427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5453268_7bcd98fd09_o.jpg", "secret": "7bcd98fd09", "media": "photo", "latitude": "0", "id": "5453268", "tags": "2001 kevin southpadreisland kevincheng kevnull"}, {"datetaken": "2001-07-14 18:17:22", "license": "1", "title": "80022427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5453267_a4f05232b1_o.jpg", "secret": "a4f05232b1", "media": "photo", "latitude": "0", "id": "5453267", "tags": "southpadreisland 2001"}, {"datetaken": "2001-07-14 18:17:23", "license": "1", "title": "83491427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5453274_89c7fa2a58_o.jpg", "secret": "89c7fa2a58", "media": "photo", "latitude": "0", "id": "5453274", "tags": "2001 kevin jen brian todd southpadreisland kevincheng kevnull"}, {"datetaken": "2001-07-14 18:17:24", "license": "1", "title": "84291427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5453275_8c35136977_o.jpg", "secret": "8c35136977", "media": "photo", "latitude": "0", "id": "5453275", "tags": "southpadreisland todd 2001"}, {"datetaken": "2001-07-14 18:17:25", "license": "1", "title": "88532427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5453277_94bb2b1993_o.jpg", "secret": "94bb2b1993", "media": "photo", "latitude": "0", "id": "5453277", "tags": "2001 jon kevin jen southpadreisland kevincheng kevnull"}, {"datetaken": "2001-07-14 18:17:26", "license": "1", "title": "90012427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5453276_ee9bc4d61c_o.jpg", "secret": "ee9bc4d61c", "media": "photo", "latitude": "0", "id": "5453276", "tags": "southpadreisland jon 2001"}, {"datetaken": "2001-07-14 18:17:27", "license": "1", "title": "94691427103_0_ALB", "text": "", "album_id": "137338", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5453281_9e1c985fee_o.jpg", "secret": "9e1c985fee", "media": "photo", "latitude": "0", "id": "5453281", "tags": "2001 kevin jen brian todd southpadreisland kevincheng kevnull"}, {"datetaken": "2005-03-25 08:04:53", "license": "3", "title": "Gracie Swan", "text": "", "album_id": "188185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7526776_9f80e8f67f_o.jpg", "secret": "9f80e8f67f", "media": "photo", "latitude": "0", "id": "7526776", "tags": "george gracie allen burns soap vintage advertising"}, {"datetaken": "2005-03-25 08:07:05", "license": "3", "title": "RCA Radio Ad", "text": "", "album_id": "188185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7528079_c3c56b20e1_o.jpg", "secret": "c3c56b20e1", "media": "photo", "latitude": "0", "id": "7528079", "tags": "rca radio vintage war bonds advertising electronics"}, {"datetaken": "2005-03-26 06:12:27", "license": "3", "title": "Adventures of the Big Boy", "text": "", "album_id": "188185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7526911_afd30c94b3_o.jpg", "secret": "afd30c94b3", "media": "photo", "latitude": "0", "id": "7526911", "tags": "bobs big boy comic rocket space vintage diner"}, {"datetaken": "2005-03-26 06:15:00", "license": "3", "title": "BigBoyComic Back", "text": "", "album_id": "188185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7527197_1c2683ef4d_o.jpg", "secret": "1c2683ef4d", "media": "photo", "latitude": "0", "id": "7527197", "tags": "bobs big boy comic advertising rocket space"}, {"datetaken": "2005-03-26 06:16:20", "license": "3", "title": "BigBoyComicPage", "text": "", "album_id": "188185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7527077_b6706905ba_o.jpg", "secret": "b6706905ba", "media": "photo", "latitude": "0", "id": "7527077", "tags": "bobs big boy comic sun rocket space"}, {"datetaken": "2005-03-26 06:28:38", "license": "3", "title": "Fairy Book", "text": "", "album_id": "188185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7527645_18783ee3e2_o.jpg", "secret": "18783ee3e2", "media": "photo", "latitude": "0", "id": "7527645", "tags": "fairy book"}, {"datetaken": "2005-03-26 06:44:23", "license": "3", "title": "Fairy Ring Mushroom", "text": "", "album_id": "188185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7527770_4610bcd228_o.jpg", "secret": "4610bcd228", "media": "photo", "latitude": "0", "id": "7527770", "tags": "fairy ring mushroom"}, {"datetaken": "2005-03-26 07:50:15", "license": "3", "title": "Braniff", "text": "", "album_id": "188185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7526591_74166f916b_o.jpg", "secret": "74166f916b", "media": "photo", "latitude": "0", "id": "7526591", "tags": "braniff airlines vintage mod 60s flight attendant fashion postcard"}, {"datetaken": "2005-03-26 08:52:14", "license": "3", "title": "Harlib Poles", "text": "", "album_id": "188185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7527836_3593cce80b_o.jpg", "secret": "3593cce80b", "media": "photo", "latitude": "0", "id": "7527836", "tags": "photography bw bargainbin old photo"}, {"datetaken": "2005-03-26 08:57:29", "license": "3", "title": "Harlib Screen", "text": "", "album_id": "188185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7527884_a93f0e67a9_o.jpg", "secret": "a93f0e67a9", "media": "photo", "latitude": "0", "id": "7527884", "tags": "photography bargainbin"}, {"datetaken": "2005-03-26 09:02:29", "license": "3", "title": "Divine Miss P. at Carnegie", "text": "", "album_id": "188185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7526726_c22b1609a7_o.jpg", "secret": "c22b1609a7", "media": "photo", "latitude": "0", "id": "7526726", "tags": "carnegie piano vintage bw old photo"}, {"datetaken": "2005-03-26 09:05:16", "license": "3", "title": "Real Dreamy", "text": "", "album_id": "188185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7528056_dc2e3c2479_o.jpg", "secret": "dc2e3c2479", "media": "photo", "latitude": "0", "id": "7528056", "tags": "bobs big boy cocacola coke hamburger diner dream"}, {"datetaken": "2005-03-26 19:09:09", "license": "3", "title": "Divine Miss P. Note", "text": "", "album_id": "188185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7526746_a23db0f74e_o.jpg", "secret": "a23db0f74e", "media": "photo", "latitude": "0", "id": "7526746", "tags": "carnegie vintage photo bw piano"}, {"datetaken": "2005-03-26 19:40:28", "license": "3", "title": "Over The Rainbow", "text": "", "album_id": "188185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7527926_2aefe71733_o.jpg", "secret": "2aefe71733", "media": "photo", "latitude": "0", "id": "7527926", "tags": "colors spectra rainbow oz"}, {"datetaken": "2005-06-24 23:41:20", "license": "4", "title": "Party time", "text": "", "album_id": "503982", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21692207_d4f8a54e12_o.jpg", "secret": "d4f8a54e12", "media": "photo", "latitude": "0", "id": "21692207", "tags": "birthday funny noseandglasses"}, {"datetaken": "2005-06-24 23:41:36", "license": "4", "title": "Party time", "text": "", "album_id": "503982", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21692206_275ec65b11_o.jpg", "secret": "275ec65b11", "media": "photo", "latitude": "0", "id": "21692206", "tags": "birthday funny noseandglasses"}, {"datetaken": "2005-06-24 23:42:44", "license": "4", "title": "Birthday Boy", "text": "", "album_id": "503982", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21692205_8dbcce91ef_o.jpg", "secret": "8dbcce91ef", "media": "photo", "latitude": "0", "id": "21692205", "tags": "birthday funny noseandglasses"}, {"datetaken": "2005-06-25 00:31:13", "license": "4", "title": "P1040146", "text": "", "album_id": "503982", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21693061_75b51a5007_o.jpg", "secret": "75b51a5007", "media": "photo", "latitude": "0", "id": "21693061", "tags": "party birthday funny"}, {"datetaken": "2005-06-25 00:55:11", "license": "4", "title": "She seems unimpressed", "text": "", "album_id": "503982", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21693062_71f76b7093_o.jpg", "secret": "71f76b7093", "media": "photo", "latitude": "0", "id": "21693062", "tags": "party birthday funny"}, {"datetaken": "2005-06-25 01:17:37", "license": "4", "title": "the cake", "text": "", "album_id": "503982", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21693063_8878bb258f_o.jpg", "secret": "8878bb258f", "media": "photo", "latitude": "0", "id": "21693063", "tags": "party birthday funny"}, {"datetaken": "2005-06-25 02:01:18", "license": "4", "title": "The Birthday Boy", "text": "", "album_id": "503982", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21693064_bbe69c45b4_o.jpg", "secret": "bbe69c45b4", "media": "photo", "latitude": "0", "id": "21693064", "tags": "party birthday funny"}, {"datetaken": "2005-06-25 02:20:32", "license": "4", "title": "They say she's an evil child...", "text": "", "album_id": "503982", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/21693065_ddc5e147a4_o.jpg", "secret": "ddc5e147a4", "media": "photo", "latitude": "0", "id": "21693065", "tags": "party birthday funny"}, {"datetaken": "2005-06-25 02:29:12", "license": "4", "title": "Party time", "text": "", "album_id": "503982", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21691552_ff28a68943_o.jpg", "secret": "ff28a68943", "media": "photo", "latitude": "0", "id": "21691552", "tags": "birthday"}, {"datetaken": "2005-06-25 02:29:18", "license": "4", "title": "Party time", "text": "", "album_id": "503982", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/21691553_a59eccbbeb_o.jpg", "secret": "a59eccbbeb", "media": "photo", "latitude": "0", "id": "21691553", "tags": "birthday"}, {"datetaken": "2005-06-25 02:45:27", "license": "4", "title": "The best card", "text": "", "album_id": "503982", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/21693066_5753673705_o.jpg", "secret": "5753673705", "media": "photo", "latitude": "0", "id": "21693066", "tags": "party birthday funny"}, {"datetaken": "2005-02-14 20:04:26", "license": "1", "title": "2005 02 15 - Robs Birthday at Home", "text": "", "album_id": "72157623298392548", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2698/4309920073_41a6f55a76_o.jpg", "secret": "08d75fd94f", "media": "photo", "latitude": "0", "id": "4309920073", "tags": ""}, {"datetaken": "2005-02-14 20:04:39", "license": "1", "title": "2005 02 15 - Robs Birthday at Home (1)", "text": "", "album_id": "72157623298392548", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4310656772_c0c2467869_o.jpg", "secret": "239c76256e", "media": "photo", "latitude": "0", "id": "4310656772", "tags": ""}, {"datetaken": "2005-02-14 20:05:22", "license": "1", "title": "2005 02 15 - Robs Birthday at Home (2)", "text": "", "album_id": "72157623298392548", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4309920479_01e5462188_o.jpg", "secret": "b54bf897bc", "media": "photo", "latitude": "0", "id": "4309920479", "tags": ""}, {"datetaken": "2005-02-14 20:07:56", "license": "1", "title": "2005 02 15 - Robs Birthday at Home (4)", "text": "", "album_id": "72157623298392548", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2716/4310657420_77e08e7ea5_o.jpg", "secret": "9a3a22c33c", "media": "photo", "latitude": "0", "id": "4310657420", "tags": ""}, {"datetaken": "2005-02-14 20:09:32", "license": "1", "title": "2005 02 15 - Robs Birthday at Home (5)", "text": "", "album_id": "72157623298392548", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4309921067_0b4497f5d0_o.jpg", "secret": "c781832424", "media": "photo", "latitude": "0", "id": "4309921067", "tags": ""}, {"datetaken": "2005-02-14 20:12:07", "license": "1", "title": "2005 02 15 - Robs Birthday at Home (6)", "text": "", "album_id": "72157623298392548", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4309921239_f6ed131ef1_o.jpg", "secret": "6d2215531d", "media": "photo", "latitude": "0", "id": "4309921239", "tags": ""}, {"datetaken": "2005-02-14 20:13:59", "license": "1", "title": "2005 02 15 - Robs Birthday at Home (7)", "text": "", "album_id": "72157623298392548", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4309921411_97bb0271d3_o.jpg", "secret": "b0dbfa38e8", "media": "photo", "latitude": "0", "id": "4309921411", "tags": ""}, {"datetaken": "2005-02-14 20:15:48", "license": "1", "title": "2005 02 15 - Robs Birthday at Home (8)", "text": "", "album_id": "72157623298392548", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4310658240_2233b27e75_o.jpg", "secret": "a1ca53cb6e", "media": "photo", "latitude": "0", "id": "4310658240", "tags": ""}, {"datetaken": "2005-02-14 20:34:35", "license": "1", "title": "2005 02 15 - Robs Birthday at Home (9)", "text": "", "album_id": "72157623298392548", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4310658486_2afedd55d9_o.jpg", "secret": "983df4b5b5", "media": "photo", "latitude": "0", "id": "4310658486", "tags": ""}, {"datetaken": "2005-02-14 20:35:04", "license": "1", "title": "2005 02 15 - Robs Birthday at Home (10)", "text": "", "album_id": "72157623298392548", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4309922119_14f36d3020_o.jpg", "secret": "0fd9637b68", "media": "photo", "latitude": "0", "id": "4309922119", "tags": ""}, {"datetaken": "2010-01-23 00:00:00", "license": "3", "title": "07 Jay, Roger, and Michael (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm3.staticflickr.com/2796/4320442720_51096a78af_o.jpg", "secret": "d1d1a3692e", "media": "photo", "latitude": "34.102993", "id": "4320442720", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:02", "license": "3", "title": "09 Martin and Bill (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4023/4320443402_97c7b06889_o.jpg", "secret": "37a15b015f", "media": "photo", "latitude": "34.102993", "id": "4320443402", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:04", "license": "3", "title": "11 Jeff and Long (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm3.staticflickr.com/2741/4320443976_13a330cbc2_o.jpg", "secret": "04ffa0b4c4", "media": "photo", "latitude": "34.102993", "id": "4320443976", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:05", "license": "3", "title": "12 Jeff and Long (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4003/4320444278_2e9e4c2475_o.jpg", "secret": "46330cefd0", "media": "photo", "latitude": "34.102993", "id": "4320444278", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:06", "license": "3", "title": "13 David and Roger (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4024/4319711449_c8e73731aa_o.jpg", "secret": "afa4ea9f49", "media": "photo", "latitude": "34.102993", "id": "4319711449", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:07", "license": "3", "title": "14 David, Kevin, and Brian (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4029/4319711749_64e3e30d6d_o.jpg", "secret": "bd981762f2", "media": "photo", "latitude": "34.102993", "id": "4319711749", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:08", "license": "3", "title": "15 Martin and David (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4029/4320445214_52d7b83010_o.jpg", "secret": "111786919f", "media": "photo", "latitude": "34.102993", "id": "4320445214", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:09", "license": "3", "title": "16 Brian and Kevin (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4063/4320445536_0a1ae4abeb_o.jpg", "secret": "2230fde069", "media": "photo", "latitude": "34.102993", "id": "4320445536", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:10", "license": "3", "title": "17 Mike (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm3.staticflickr.com/2755/4319712725_b3bca13677_o.jpg", "secret": "a64d9fc0fe", "media": "photo", "latitude": "34.102993", "id": "4319712725", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:11", "license": "3", "title": "18 Greg and Long (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm3.staticflickr.com/2796/4319713021_8b8e652682_o.jpg", "secret": "7400bc4a94", "media": "photo", "latitude": "34.102993", "id": "4319713021", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:12", "license": "3", "title": "19 Long, David, and Bill (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4020/4319713367_64543d814f_o.jpg", "secret": "5a7a4739d0", "media": "photo", "latitude": "34.102993", "id": "4319713367", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:13", "license": "3", "title": "20 Long, David, and Bill (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4037/4320446840_0e22756e21_o.jpg", "secret": "b8855e5de0", "media": "photo", "latitude": "34.102993", "id": "4320446840", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:14", "license": "3", "title": "21 Martin (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm3.staticflickr.com/2709/4320447162_67c25df7c1_o.jpg", "secret": "2620a3557b", "media": "photo", "latitude": "34.102993", "id": "4320447162", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:17", "license": "3", "title": "24 Long and Bill (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4072/4320448414_4b64721a87_o.jpg", "secret": "5c0bb5d5ca", "media": "photo", "latitude": "34.102993", "id": "4320448414", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:18", "license": "3", "title": "25 Long and Bill (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4027/4319715577_a00e5cba97_o.jpg", "secret": "7abab86881", "media": "photo", "latitude": "34.102993", "id": "4319715577", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:21", "license": "3", "title": "28 Jeff and Martin (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4014/4319716703_8a2362f8e6_o.jpg", "secret": "acb86d1654", "media": "photo", "latitude": "34.102993", "id": "4319716703", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:22", "license": "3", "title": "29 Jeff and Martin (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4036/4319716977_9a7011891a_o.jpg", "secret": "8b83230fc5", "media": "photo", "latitude": "34.102993", "id": "4319716977", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:23", "license": "3", "title": "30 David and Roscoe (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4053/4319717281_a93f80dd47_o.jpg", "secret": "54d914ec30", "media": "photo", "latitude": "34.102993", "id": "4319717281", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:24", "license": "3", "title": "31 David and Michael (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4071/4319717613_10b37cdda7_o.jpg", "secret": "2a46c82b6f", "media": "photo", "latitude": "34.102993", "id": "4319717613", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:25", "license": "3", "title": "32 Mike and David (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4045/4320451094_2c60124436_o.jpg", "secret": "51f977cd76", "media": "photo", "latitude": "34.102993", "id": "4320451094", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:26", "license": "3", "title": "33 Greg and Sammy (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm3.staticflickr.com/2751/4319718263_4e0200fbb0_o.jpg", "secret": "572c297193", "media": "photo", "latitude": "34.102993", "id": "4319718263", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:28", "license": "3", "title": "35 David and Greg (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm3.staticflickr.com/2718/4320452222_9d41dd5d20_o.jpg", "secret": "d17f13cda8", "media": "photo", "latitude": "34.102993", "id": "4320452222", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 00:00:32", "license": "3", "title": "39 Brian and Kevin (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4072/4320453682_2ff9876b39_o.jpg", "secret": "d79514f5dd", "media": "photo", "latitude": "34.102993", "id": "4320453682", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 20:07:56", "license": "3", "title": "01 David, Jay, and Roger (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4001/4309879141_b746bf4e44_o.jpg", "secret": "70ee5aa7f2", "media": "photo", "latitude": "34.102993", "id": "4309879141", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 20:12:21", "license": "3", "title": "03 David, Kevin, and Brian (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm3.staticflickr.com/2754/4309888425_7685e94f00_o.jpg", "secret": "7746015cf6", "media": "photo", "latitude": "34.102993", "id": "4309888425", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 20:37:13", "license": "3", "title": "05 Long and Kevin (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4007/4309900143_48066832d4_o.jpg", "secret": "fe846983fb", "media": "photo", "latitude": "34.102993", "id": "4309900143", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-01-23 21:34:09", "license": "3", "title": "06 David and Rosco (E)", "text": "", "album_id": "72157623322705020", "longitude": "-118.255622", "url_o": "https://farm5.staticflickr.com/4031/4309904833_0c6c6fba3c_o.jpg", "secret": "1a3e3f3511", "media": "photo", "latitude": "34.102993", "id": "4309904833", "tags": "california losangeles silverlake davidsbirthdayparty kansassebastian"}, {"datetaken": "2010-02-27 19:58:00", "license": "3", "title": "Erin & Jeff", "text": "", "album_id": "72157623527635470", "longitude": "-75.152707", "url_o": "https://farm5.staticflickr.com/4070/4395925754_3d37b00546_o.jpg", "secret": "8be9b5e34a", "media": "photo", "latitude": "39.949588", "id": "4395925754", "tags": "birthday chifa"}, {"datetaken": "2010-02-27 19:58:41", "license": "3", "title": "Mine!", "text": "", "album_id": "72157623527635470", "longitude": "-75.152707", "url_o": "https://farm5.staticflickr.com/4052/4395158363_da3b5ddb02_o.jpg", "secret": "1ec223307f", "media": "photo", "latitude": "39.949588", "id": "4395158363", "tags": "chifa"}, {"datetaken": "2010-02-27 20:34:13", "license": "3", "title": "The Lucky Ladies", "text": "", "album_id": "72157623527635470", "longitude": "-75.152707", "url_o": "https://farm3.staticflickr.com/2774/4395159227_fa2f3b300c_o.jpg", "secret": "a977b1b32b", "media": "photo", "latitude": "39.949588", "id": "4395159227", "tags": "birthday chifa"}, {"datetaken": "2010-02-27 20:38:06", "license": "3", "title": "Shrimp Spring Rolls", "text": "", "album_id": "72157623527635470", "longitude": "-75.152707", "url_o": "https://farm3.staticflickr.com/2681/4395159935_a243bc28cc_o.jpg", "secret": "6a79b25d53", "media": "photo", "latitude": "39.949588", "id": "4395159935", "tags": "food shrimp springroll noms chifa nom"}, {"datetaken": "2010-02-27 20:38:16", "license": "3", "title": "Porkbelly Bun", "text": "", "album_id": "72157623527635470", "longitude": "-75.152707", "url_o": "https://farm5.staticflickr.com/4034/4395927816_cec3c82e1d_o.jpg", "secret": "eed7cdbd02", "media": "photo", "latitude": "39.949588", "id": "4395927816", "tags": "food porkbelly noms chifa nom"}, {"datetaken": "2010-02-27 20:42:23", "license": "3", "title": "Kobe Beef Tartare", "text": "", "album_id": "72157623527635470", "longitude": "-75.152707", "url_o": "https://farm5.staticflickr.com/4066/4395160891_eae04ffc53_o.jpg", "secret": "fe3c4caa5a", "media": "photo", "latitude": "39.949588", "id": "4395160891", "tags": "food beef kobe noms tartare chifa nom"}, {"datetaken": "2010-02-27 20:42:41", "license": "3", "title": "Pork Sausage and Aromatic Rice", "text": "", "album_id": "72157623527635470", "longitude": "-75.152707", "url_o": "https://farm5.staticflickr.com/4019/4395161617_6e1978562b_o.jpg", "secret": "cf7d69109b", "media": "photo", "latitude": "39.949588", "id": "4395161617", "tags": "food rice sausage pork noms chifa nom"}, {"datetaken": "2010-02-27 20:46:19", "license": "3", "title": "Duck Bun", "text": "", "album_id": "72157623527635470", "longitude": "-75.152707", "url_o": "https://farm5.staticflickr.com/4029/4395162281_e79d25c0bc_o.jpg", "secret": "fc9181bea8", "media": "photo", "latitude": "39.949588", "id": "4395162281", "tags": "food duck noms chifa nom"}, {"datetaken": "2010-02-27 21:19:45", "license": "3", "title": "Curry, Tofu, Crab, Eggplant, and Noodles", "text": "", "album_id": "72157623527635470", "longitude": "-75.152707", "url_o": "https://farm3.staticflickr.com/2677/4395163031_0eb287b73a_o.jpg", "secret": "80b42f7c5f", "media": "photo", "latitude": "39.949588", "id": "4395163031", "tags": "food eggplant tofu crab curry noms chifa nom"}, {"datetaken": "2010-02-27 21:37:31", "license": "3", "title": "Adam & Jeff", "text": "", "album_id": "72157623527635470", "longitude": "-75.152707", "url_o": "https://farm5.staticflickr.com/4019/4395164179_771f7063ac_o.jpg", "secret": "2315bd84d9", "media": "photo", "latitude": "39.949588", "id": "4395164179", "tags": "chifa"}, {"datetaken": "2010-02-27 21:38:50", "license": "3", "title": "Erin (Birthday Girl)", "text": "", "album_id": "72157623527635470", "longitude": "-75.152707", "url_o": "https://farm3.staticflickr.com/2762/4395932428_c3fb5a1ef7_o.jpg", "secret": "2be8ae3d39", "media": "photo", "latitude": "39.949588", "id": "4395932428", "tags": "birthday chifa"}, {"datetaken": "2010-02-27 21:39:43", "license": "3", "title": "Adam & Jeff", "text": "", "album_id": "72157623527635470", "longitude": "-75.152707", "url_o": "https://farm5.staticflickr.com/4052/4395166277_bb6b554767_o.jpg", "secret": "6456f495f1", "media": "photo", "latitude": "39.949588", "id": "4395166277", "tags": "chifa"}, {"datetaken": "2010-02-13 01:36:53", "license": "3", "title": "Aquarious Rising '10 01", "text": "", "album_id": "72157623406612971", "longitude": "-122.387260", "url_o": "https://farm3.staticflickr.com/2713/4397627892_3d8b7279bc_o.jpg", "secret": "4a63216699", "media": "photo", "latitude": "37.773151", "id": "4397627892", "tags": "sanfrancisco birthday ca matt 2010 yachtparty mariposahunterspointyachtclub"}, {"datetaken": "2010-02-13 01:37:12", "license": "3", "title": "Aquarious Rising '10 02", "text": "", "album_id": "72157623406612971", "longitude": "-122.387260", "url_o": "https://farm5.staticflickr.com/4069/4397628148_5e5b79a928_o.jpg", "secret": "eb69916619", "media": "photo", "latitude": "37.773151", "id": "4397628148", "tags": "sanfrancisco birthday ca josie 2010 yachtparty mariposahunterspointyachtclub"}, {"datetaken": "2010-02-13 01:37:28", "license": "3", "title": "Aquarious Rising '10 03", "text": "", "album_id": "72157623406612971", "longitude": "-122.387260", "url_o": "https://farm5.staticflickr.com/4065/4396862941_343faa7458_o.jpg", "secret": "abdee378bb", "media": "photo", "latitude": "37.773151", "id": "4396862941", "tags": "sanfrancisco birthday ca matt sam 2010 yachtparty mariposahunterspointyachtclub"}, {"datetaken": "2010-02-13 01:39:09", "license": "3", "title": "Aquarious Rising '10 04", "text": "", "album_id": "72157623406612971", "longitude": "-122.387260", "url_o": "https://farm3.staticflickr.com/2707/4397628570_d934899799_o.jpg", "secret": "9232e441aa", "media": "photo", "latitude": "37.773151", "id": "4397628570", "tags": "sanfrancisco birthday ca connie 2010 yachtparty mariposahunterspointyachtclub"}, {"datetaken": "2010-02-13 01:48:50", "license": "3", "title": "Aquarious Rising '10 05", "text": "", "album_id": "72157623406612971", "longitude": "-122.387260", "url_o": "https://farm5.staticflickr.com/4071/4397628766_ef761f4d07_o.jpg", "secret": "0d94b6eda4", "media": "photo", "latitude": "37.773151", "id": "4397628766", "tags": "sanfrancisco birthday ca 2010 yachtparty mariposahunterspointyachtclub"}, {"datetaken": "2010-02-13 01:51:21", "license": "3", "title": "Aquarious Rising '10 06", "text": "", "album_id": "72157623406612971", "longitude": "-122.387260", "url_o": "https://farm5.staticflickr.com/4045/4397629140_57f87e97f8_o.jpg", "secret": "27fcda611c", "media": "photo", "latitude": "37.773151", "id": "4397629140", "tags": "sanfrancisco birthday ca annie 2010 yachtparty mariposahunterspointyachtclub"}, {"datetaken": "2010-02-13 02:00:13", "license": "3", "title": "Aquarious Rising '10 07", "text": "", "album_id": "72157623406612971", "longitude": "-122.387260", "url_o": "https://farm5.staticflickr.com/4028/4397629390_630f6cac50_o.jpg", "secret": "32da7f03ff", "media": "photo", "latitude": "37.773151", "id": "4397629390", "tags": "sanfrancisco birthday ca annie todd 2010 yachtparty mariposahunterspointyachtclub"}, {"datetaken": "2010-02-13 02:47:52", "license": "3", "title": "Aquarious Rising '10 08", "text": "", "album_id": "72157623406612971", "longitude": "-122.387260", "url_o": "https://farm5.staticflickr.com/4056/4397629666_45079e5be1_o.jpg", "secret": "c2e300ca6e", "media": "photo", "latitude": "37.773151", "id": "4397629666", "tags": "sanfrancisco birthday ca josie 2010 shanan yachtparty mariposahunterspointyachtclub"}, {"datetaken": "2010-02-13 02:48:10", "license": "3", "title": "Aquarious Rising '10 09", "text": "", "album_id": "72157623406612971", "longitude": "-122.387260", "url_o": "https://farm5.staticflickr.com/4013/4396864777_6eb0bf8acf_o.jpg", "secret": "9562b38fd7", "media": "photo", "latitude": "37.773151", "id": "4396864777", "tags": "sanfrancisco birthday ca josie 2010 shanan yachtparty mariposahunterspointyachtclub"}, {"datetaken": "2010-02-13 02:49:09", "license": "3", "title": "Aquarious Rising '10 10", "text": "", "album_id": "72157623406612971", "longitude": "-122.387260", "url_o": "https://farm5.staticflickr.com/4007/4396864343_5fa4901555_o.jpg", "secret": "60b8de1992", "media": "photo", "latitude": "37.773151", "id": "4396864343", "tags": "sanfrancisco birthday ca sam connie 2010 yachtparty mariposahunterspointyachtclub"}, {"datetaken": "2010-02-13 02:49:17", "license": "3", "title": "Aquarious Rising '10 11", "text": "", "album_id": "72157623406612971", "longitude": "-122.387260", "url_o": "https://farm3.staticflickr.com/2795/4396864575_e40e8195db_o.jpg", "secret": "23eeda5554", "media": "photo", "latitude": "37.773151", "id": "4396864575", "tags": "sanfrancisco birthday ca matt 2010 yachtparty mariposahunterspointyachtclub"}, {"datetaken": "2010-03-27 18:16:13", "license": "2", "title": "03/26/2010 Dad's Birthday Dinner", "text": "", "album_id": "72157623598513373", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4471651446_8e07042d71_o.jpg", "secret": "a294810bda", "media": "photo", "latitude": "0", "id": "4471651446", "tags": "restaurant events richmond noodles kingcrab 032710dadsbirthday friends032710dadsbirthdayevents"}, {"datetaken": "2010-03-27 18:32:51", "license": "2", "title": "03/26/2010 Dad's Birthday Dinner", "text": "", "album_id": "72157623598513373", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4471652154_472a1ac58b_o.jpg", "secret": "684b757a68", "media": "photo", "latitude": "0", "id": "4471652154", "tags": "food restaurant chinese richmond noodles kingcrab friendschinesefood"}, {"datetaken": "2010-03-27 18:35:47", "license": "2", "title": "03/26/2010 Dad's Birthday Dinner", "text": "", "album_id": "72157623598513373", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4470872933_571a784802_o.jpg", "secret": "4155a11175", "media": "photo", "latitude": "0", "id": "4470872933", "tags": "food restaurant chinese richmond noodles kingcrab friendschinesefood"}, {"datetaken": "2010-03-27 18:36:29", "license": "2", "title": "03/26/2010 Dad's Birthday Dinner", "text": "", "album_id": "72157623598513373", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4470873399_3891e35b00_o.jpg", "secret": "cec5419169", "media": "photo", "latitude": "0", "id": "4470873399", "tags": "food restaurant chinese richmond noodles kingcrab friendschinesefood"}, {"datetaken": "2010-03-27 19:00:56", "license": "2", "title": "03/26/2010 Dad's Birthday Dinner", "text": "", "album_id": "72157623598513373", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2762/4470874011_623ef6c66d_o.jpg", "secret": "a2467cb62d", "media": "photo", "latitude": "0", "id": "4470874011", "tags": "food restaurant events chinese richmond noodles kingcrab 032710dadsbirthday friends032710dadsbirthdaychineseeventsfood"}, {"datetaken": "2010-03-27 19:21:13", "license": "2", "title": "03/26/2010 Dad's Birthday Dinner", "text": "", "album_id": "72157623598513373", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4470874541_195748c388_o.jpg", "secret": "22b3c54e99", "media": "photo", "latitude": "0", "id": "4470874541", "tags": "food restaurant events chinese richmond noodles kingcrab 032710dadsbirthday friends032710dadsbirthdaychineseeventsfood"}, {"datetaken": "2010-03-27 19:43:22", "license": "2", "title": "03/26/2010 Dad's Birthday Dinner", "text": "", "album_id": "72157623598513373", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4471654854_73686062e3_o.jpg", "secret": "178148cdbe", "media": "photo", "latitude": "0", "id": "4471654854", "tags": "food restaurant events chinese richmond noodles kingcrab 032710dadsbirthday friends032710dadsbirthdaychineseeventsfood"}, {"datetaken": "2010-03-27 19:43:24", "license": "2", "title": "03/26/2010 Dad's Birthday Dinner", "text": "", "album_id": "72157623598513373", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4470875279_8c0d2fcc5d_o.jpg", "secret": "024f638a01", "media": "photo", "latitude": "0", "id": "4470875279", "tags": "food restaurant events chinese richmond noodles kingcrab 032710dadsbirthday friends032710dadsbirthdaychineseeventsfood"}, {"datetaken": "2010-03-27 19:54:20", "license": "2", "title": "03/26/2010 Dad's Birthday Dinner", "text": "", "album_id": "72157623598513373", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4471656010_d035f9e4ab_o.jpg", "secret": "7f290c8919", "media": "photo", "latitude": "0", "id": "4471656010", "tags": "food restaurant events chinese richmond noodles kingcrab 032710dadsbirthday friends032710dadsbirthdaychineseeventsfood"}, {"datetaken": "2010-03-27 19:59:19", "license": "2", "title": "03/26/2010 Dad's Birthday Dinner", "text": "", "album_id": "72157623598513373", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4470876663_8252c03cd3_o.jpg", "secret": "9d1c22638f", "media": "photo", "latitude": "0", "id": "4470876663", "tags": "food restaurant events chinese richmond noodles kingcrab 032710dadsbirthday friends032710dadsbirthdaychineseeventsfood"}, {"datetaken": "2010-03-27 19:59:33", "license": "2", "title": "03/26/2010 Dad's Birthday Dinner", "text": "", "album_id": "72157623598513373", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4471657018_69dee83383_o.jpg", "secret": "4c66894348", "media": "photo", "latitude": "0", "id": "4471657018", "tags": "food restaurant events chinese richmond noodles kingcrab 032710dadsbirthday friends032710dadsbirthdaychineseeventsfood tgamfoodpics"}, {"datetaken": "2010-03-27 19:59:41", "license": "2", "title": "03/26/2010 Dad's Birthday Dinner", "text": "", "album_id": "72157623598513373", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4471657572_7224c7e562_o.jpg", "secret": "30f26347a8", "media": "photo", "latitude": "0", "id": "4471657572", "tags": "food restaurant events chinese richmond noodles kingcrab 032710dadsbirthday friends032710dadsbirthdaychineseeventsfood tgamfoodpics"}, {"datetaken": "2010-03-27 20:00:25", "license": "2", "title": "03/26/2010 Dad's Birthday Dinner", "text": "", "album_id": "72157623598513373", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4470877959_35d6856bdb_o.jpg", "secret": "74b02dddf1", "media": "photo", "latitude": "0", "id": "4470877959", "tags": "food restaurant events chinese richmond noodles kingcrab 032710dadsbirthday friends032710dadsbirthdaychineseeventsfood"}, {"datetaken": "2010-03-27 21:23:15", "license": "2", "title": "03/26/2010 Dad's Birthday Dinner", "text": "", "album_id": "72157623598513373", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4470878753_2b226348eb_o.jpg", "secret": "cb5ca7bab8", "media": "photo", "latitude": "0", "id": "4470878753", "tags": "restaurant events richmond noodles kingcrab 032710dadsbirthday friends032710dadsbirthdayevents"}, {"datetaken": "2010-03-28 02:57:33", "license": "3", "title": "20100328_01_Layla's 3rd bday", "text": "", "album_id": "72157623724885850", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4471774875_4bc7f03520_o.jpg", "secret": "34b16790ce", "media": "photo", "latitude": "0", "id": "4471774875", "tags": "firstbike layla 3rdbirthdayparty"}, {"datetaken": "2010-03-28 02:57:39", "license": "3", "title": "20100328_02_Layla's 3rd bday", "text": "", "album_id": "72157623724885850", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4472553546_eb0eb3f17c_o.jpg", "secret": "751ee4aa15", "media": "photo", "latitude": "0", "id": "4472553546", "tags": "firstbike layla 3rdbirthdayparty"}, {"datetaken": "2010-03-28 02:58:39", "license": "3", "title": "20100328_03_Layla's 3rd bday", "text": "", "album_id": "72157623724885850", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4472553984_17c5a545b3_o.jpg", "secret": "aecd3d82a3", "media": "photo", "latitude": "0", "id": "4472553984", "tags": "birthdaygirl layla 3rdbirthdayparty"}, {"datetaken": "2010-03-28 03:21:58", "license": "3", "title": "20100328_04_Layla's 3rd bday", "text": "", "album_id": "72157623724885850", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4472554116_7a1f1d955a_o.jpg", "secret": "efa3330c0a", "media": "photo", "latitude": "0", "id": "4472554116", "tags": "layla 3rdbirthdayparty"}, {"datetaken": "2010-03-28 04:03:54", "license": "3", "title": "20100328_05_Layla's 3rd bday", "text": "", "album_id": "72157623724885850", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2684/4471776233_c30170fef8_o.jpg", "secret": "658e788c19", "media": "photo", "latitude": "0", "id": "4471776233", "tags": "birthdaycake layla 3rdbirthdayparty"}, {"datetaken": "2010-03-28 04:04:45", "license": "3", "title": "20100328_06_Layla's 3rd bday", "text": "", "album_id": "72157623724885850", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4472554536_a678e58ef7_o.jpg", "secret": "93f928d996", "media": "photo", "latitude": "0", "id": "4472554536", "tags": "layla 3rdbirthdayparty"}, {"datetaken": "2010-03-28 04:05:55", "license": "3", "title": "20100328_07_Layla's 3rd bday", "text": "", "album_id": "72157623724885850", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4471776723_6232911438_o.jpg", "secret": "c5dbf726b4", "media": "photo", "latitude": "0", "id": "4471776723", "tags": "layla 3rdbirthdayparty"}, {"datetaken": "2010-03-28 04:06:03", "license": "3", "title": "20100328_08_Layla's 3rd bday", "text": "", "album_id": "72157623724885850", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4472555044_e6a31cde4f_o.jpg", "secret": "28c0e6dfc7", "media": "photo", "latitude": "0", "id": "4472555044", "tags": "layla 3rdbirthdayparty"}, {"datetaken": "2010-03-28 04:36:43", "license": "3", "title": "20100328_09_Layla's 3rd bday", "text": "", "album_id": "72157623724885850", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4471774027_6b4ce4e29b_o.jpg", "secret": "7e4de0ecc6", "media": "photo", "latitude": "0", "id": "4471774027", "tags": "layla 3rdbirthdayparty"}, {"datetaken": "2010-03-28 04:38:20", "license": "3", "title": "20100328_10_Layla's 3rd bday", "text": "", "album_id": "72157623724885850", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4471777331_a85bcb38c3_o.jpg", "secret": "f5dbf45d5d", "media": "photo", "latitude": "0", "id": "4471777331", "tags": "layla 3rdbirthdayparty"}, {"datetaken": "2010-01-28 21:23:00", "license": "4", "title": "Constructing drawbots at the skiff", "text": "", "album_id": "72157623307460200", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4314090150_a13d500374_o.jpg", "secret": "7909b02efa", "media": "photo", "latitude": "0", "id": "4314090150", "tags": "robotbrighton"}, {"datetaken": "2010-01-28 21:25:05", "license": "4", "title": "My drawbot drawing", "text": "", "album_id": "72157623307460200", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2603/4314090316_350a90c60a_o.jpg", "secret": "32b1dd1450", "media": "photo", "latitude": "0", "id": "4314090316", "tags": "robotbrighton"}, {"datetaken": "2010-01-28 21:25:48", "license": "4", "title": "Drawbots", "text": "", "album_id": "72157623307460200", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4314090394_ec4b29f94b_o.jpg", "secret": "ea8d0f8147", "media": "photo", "latitude": "0", "id": "4314090394", "tags": "robotbrighton"}, {"datetaken": "2010-01-28 21:28:58", "license": "4", "title": "Steve's excellent instructions", "text": "", "album_id": "72157623307460200", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4314090596_d3a1a89cb3_o.jpg", "secret": "87cb052e33", "media": "photo", "latitude": "0", "id": "4314090596", "tags": "robotbrighton"}, {"datetaken": "2010-01-28 21:44:26", "license": "4", "title": "Birthday cakes", "text": "", "album_id": "72157623307460200", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2684/4314090686_f62f6a8268_o.jpg", "secret": "6572fc2f22", "media": "photo", "latitude": "0", "id": "4314090686", "tags": "robotbrighton"}, {"datetaken": "2010-01-28 21:44:33", "license": "4", "title": "Donationbot", "text": "", "album_id": "72157623307460200", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4313353873_6dbcd7ac05_o.jpg", "secret": "73348cc9e9", "media": "photo", "latitude": "0", "id": "4313353873", "tags": "robotbrighton"}, {"datetaken": "2010-01-28 21:46:21", "license": "4", "title": "Release the bots!", "text": "", "album_id": "72157623307460200", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4314090872_8bf1da9169_o.jpg", "secret": "f160a22aec", "media": "photo", "latitude": "0", "id": "4314090872", "tags": "robotbrighton"}, {"datetaken": "2010-01-28 21:48:22", "license": "4", "title": "Drawbot swarm", "text": "", "album_id": "72157623307460200", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2791/4313354127_a206d17f42_o.jpg", "secret": "bb00697000", "media": "photo", "latitude": "0", "id": "4313354127", "tags": "robotbrighton"}, {"datetaken": "2010-01-28 21:48:30", "license": "4", "title": "Drawbots drawing", "text": "", "album_id": "72157623307460200", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4313354503_03b6be9b6c_o.jpg", "secret": "ccd2c5ba60", "media": "photo", "latitude": "0", "id": "4313354503", "tags": "robotbrighton"}, {"datetaken": "2010-01-28 21:56:54", "license": "4", "title": "Nicola's dalek cake", "text": "", "album_id": "72157623307460200", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2696/4313354603_df80060b6f_o.jpg", "secret": "edf57c58d9", "media": "photo", "latitude": "0", "id": "4313354603", "tags": "robotbrighton"}, {"datetaken": "2010-01-28 22:01:24", "license": "4", "title": "Action bot shot", "text": "", "album_id": "72157623307460200", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4313354697_2a6a4b4417_o.jpg", "secret": "8bea03c394", "media": "photo", "latitude": "0", "id": "4313354697", "tags": "robotbrighton"}, {"datetaken": "2010-01-28 22:19:52", "license": "4", "title": "My bot in the green", "text": "", "album_id": "72157623307460200", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2717/4314091892_5c5754f068_o.jpg", "secret": "469c7b4fd0", "media": "photo", "latitude": "0", "id": "4314091892", "tags": "robotbrighton"}, {"datetaken": "2005-01-15 20:20:29", "license": "1", "title": "the spread", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4079831_e41f24a901_o.jpg", "secret": "e41f24a901", "media": "photo", "latitude": "0", "id": "4079831", "tags": "nick birthday"}, {"datetaken": "2005-01-15 20:20:39", "license": "1", "title": "Ned & Presley", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4079835_46a67ab8ee_o.jpg", "secret": "46a67ab8ee", "media": "photo", "latitude": "0", "id": "4079835", "tags": "birthday me john nick lisa presley ned"}, {"datetaken": "2005-01-15 20:51:55", "license": "1", "title": "Lydia & Madge", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4079863_ce4b5d8184_o.jpg", "secret": "ce4b5d8184", "media": "photo", "latitude": "0", "id": "4079863", "tags": "nick birthday lydia madge"}, {"datetaken": "2005-01-15 21:20:56", "license": "1", "title": "birthday boy", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4079874_da24736db0_o.jpg", "secret": "da24736db0", "media": "photo", "latitude": "0", "id": "4079874", "tags": "nick birthday"}, {"datetaken": "2005-01-15 21:21:37", "license": "1", "title": "nice, Jason", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4079894_dfcb62b123_o.jpg", "secret": "dfcb62b123", "media": "photo", "latitude": "0", "id": "4079894", "tags": "nick birthday jason"}, {"datetaken": "2005-01-15 22:40:43", "license": "1", "title": "candles", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4079906_939ca4687b_o.jpg", "secret": "939ca4687b", "media": "photo", "latitude": "0", "id": "4079906", "tags": "nick birthday steve"}, {"datetaken": "2005-01-15 22:42:51", "license": "1", "title": "Presley & Kimberly", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4079938_a6c3cdbc23_o.jpg", "secret": "a6c3cdbc23", "media": "photo", "latitude": "0", "id": "4079938", "tags": "birthday nick lisa kimberly presley"}, {"datetaken": "2005-01-15 23:40:30", "license": "1", "title": "Jam", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4079966_77a62f92cf_o.jpg", "secret": "77a62f92cf", "media": "photo", "latitude": "0", "id": "4079966", "tags": "nick birthday"}, {"datetaken": "2005-01-16 00:47:07", "license": "1", "title": "girls", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4079995_9f5b992f0e_o.jpg", "secret": "9f5b992f0e", "media": "photo", "latitude": "0", "id": "4079995", "tags": "birthday nick lisa lydia presley"}, {"datetaken": "2005-01-16 00:48:40", "license": "1", "title": "Jason, Kim & Todd", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4080014_0972e2f10e_o.jpg", "secret": "0972e2f10e", "media": "photo", "latitude": "0", "id": "4080014", "tags": "nick birthday jason todd kim"}, {"datetaken": "2005-01-16 01:14:16", "license": "1", "title": "make-out club", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4080034_9464f6e011_o.jpg", "secret": "9464f6e011", "media": "photo", "latitude": "0", "id": "4080034", "tags": "nick birthday marge kimberly"}, {"datetaken": "2005-01-16 01:18:48", "license": "1", "title": "martini", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4080042_70045997a0_o.jpg", "secret": "70045997a0", "media": "photo", "latitude": "0", "id": "4080042", "tags": "nick birthday kimberly"}, {"datetaken": "2005-01-16 01:22:40", "license": "1", "title": "booze", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4080056_6399d7cadc_o.jpg", "secret": "6399d7cadc", "media": "photo", "latitude": "0", "id": "4080056", "tags": "nick birthday"}, {"datetaken": "2005-01-16 01:23:34", "license": "1", "title": "Yo?", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4080072_c08050bf88_o.jpg", "secret": "c08050bf88", "media": "photo", "latitude": "0", "id": "4080072", "tags": "birthday me john nick ned"}, {"datetaken": "2005-01-16 01:28:27", "license": "1", "title": "hiya", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4080091_9564ca73ab_o.jpg", "secret": "9564ca73ab", "media": "photo", "latitude": "0", "id": "4080091", "tags": "nick birthday jason"}, {"datetaken": "2005-01-16 01:28:58", "license": "1", "title": "gnome", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4080111_b6b7a99a0e_o.jpg", "secret": "b6b7a99a0e", "media": "photo", "latitude": "0", "id": "4080111", "tags": "nick birthday"}, {"datetaken": "2005-01-16 01:30:00", "license": "1", "title": "Plato", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4080134_88c8d75696_o.jpg", "secret": "88c8d75696", "media": "photo", "latitude": "0", "id": "4080134", "tags": "nick birthday plato"}, {"datetaken": "2005-01-16 01:30:07", "license": "1", "title": "yum", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4080154_ce0aeb6693_o.jpg", "secret": "ce0aeb6693", "media": "photo", "latitude": "0", "id": "4080154", "tags": "nick birthday cake cigarettes"}, {"datetaken": "2005-01-16 01:36:13", "license": "1", "title": "Karla & Steve", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4080175_0566f157c5_o.jpg", "secret": "0566f157c5", "media": "photo", "latitude": "0", "id": "4080175", "tags": "nick birthday karla steve"}, {"datetaken": "2005-01-16 01:50:06", "license": "1", "title": "whack", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4080189_72716caf7d_o.jpg", "secret": "72716caf7d", "media": "photo", "latitude": "0", "id": "4080189", "tags": "nick birthday marge"}, {"datetaken": "2005-01-16 02:02:36", "license": "1", "title": "Karaoke", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4080216_f5af4f42ee_o.jpg", "secret": "f5af4f42ee", "media": "photo", "latitude": "0", "id": "4080216", "tags": "nick birthday jason karaoke"}, {"datetaken": "2005-01-16 02:52:57", "license": "1", "title": "time for home", "text": "", "album_id": "103266", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4080245_e5b52aa58e_o.jpg", "secret": "e5b52aa58e", "media": "photo", "latitude": "0", "id": "4080245", "tags": "birthday jason me john nick lydia ned karla"}, {"datetaken": "2006-01-07 08:46:45", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4320654829_457cff9fba_o.jpg", "secret": "040c57ef7c", "media": "photo", "latitude": "0", "id": "4320654829", "tags": ""}, {"datetaken": "2006-01-07 08:46:51", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4320652527_2bb289eae0_o.jpg", "secret": "236841d9f5", "media": "photo", "latitude": "0", "id": "4320652527", "tags": ""}, {"datetaken": "2006-01-07 08:47:22", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2763/4321388140_4fb4867221_o.jpg", "secret": "9269366e1d", "media": "photo", "latitude": "0", "id": "4321388140", "tags": ""}, {"datetaken": "2006-01-07 09:02:57", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4320653085_738d73a0eb_o.jpg", "secret": "4c6fd4f523", "media": "photo", "latitude": "0", "id": "4320653085", "tags": ""}, {"datetaken": "2006-01-07 09:32:56", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2802/4320657699_c02202f623_o.jpg", "secret": "f6285db4af", "media": "photo", "latitude": "0", "id": "4320657699", "tags": ""}, {"datetaken": "2006-01-07 09:33:10", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4320633373_174c584120_o.jpg", "secret": "5e6b83e097", "media": "photo", "latitude": "0", "id": "4320633373", "tags": ""}, {"datetaken": "2006-01-07 09:33:17", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4320635167_3605398d09_o.jpg", "secret": "c364c6cfca", "media": "photo", "latitude": "0", "id": "4320635167", "tags": ""}, {"datetaken": "2006-01-07 09:33:24", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4320637213_2744a3b1b6_o.jpg", "secret": "84c6c4aaf7", "media": "photo", "latitude": "0", "id": "4320637213", "tags": ""}, {"datetaken": "2006-01-07 09:51:20", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/4320655113_9b55c06815_o.jpg", "secret": "6f9e23b529", "media": "photo", "latitude": "0", "id": "4320655113", "tags": ""}, {"datetaken": "2006-01-07 09:52:01", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2774/4321385680_9cd4448436_o.jpg", "secret": "68b8ab5ac4", "media": "photo", "latitude": "0", "id": "4321385680", "tags": ""}, {"datetaken": "2006-01-07 09:52:10", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2681/4320637575_5a1cf239cd_o.jpg", "secret": "2156a06c2e", "media": "photo", "latitude": "0", "id": "4320637575", "tags": ""}, {"datetaken": "2006-01-07 09:52:27", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4320655641_0d1ee63a89_o.jpg", "secret": "80937b33ae", "media": "photo", "latitude": "0", "id": "4320655641", "tags": ""}, {"datetaken": "2006-01-07 09:52:57", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2736/4320639289_29e4493485_o.jpg", "secret": "1d97ec7142", "media": "photo", "latitude": "0", "id": "4320639289", "tags": ""}, {"datetaken": "2006-01-07 09:53:01", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4321374126_89be3046ae_o.jpg", "secret": "3f47764921", "media": "photo", "latitude": "0", "id": "4321374126", "tags": ""}, {"datetaken": "2006-01-07 09:53:07", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4321375818_52c826a10b_o.jpg", "secret": "376f9fa4ef", "media": "photo", "latitude": "0", "id": "4321375818", "tags": ""}, {"datetaken": "2006-01-07 09:53:12", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4320645001_66638e47d1_o.jpg", "secret": "e126b2878d", "media": "photo", "latitude": "0", "id": "4320645001", "tags": ""}, {"datetaken": "2006-01-07 09:53:24", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4320646857_ba94769e48_o.jpg", "secret": "c44dfb425b", "media": "photo", "latitude": "0", "id": "4320646857", "tags": ""}, {"datetaken": "2006-01-07 09:53:30", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4320648695_4fca3020e1_o.jpg", "secret": "e996a50e56", "media": "photo", "latitude": "0", "id": "4320648695", "tags": ""}, {"datetaken": "2006-01-07 09:53:34", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4321383226_f47ef60967_o.jpg", "secret": "596b39dce3", "media": "photo", "latitude": "0", "id": "4321383226", "tags": ""}, {"datetaken": "2006-01-07 09:53:39", "license": "4", "title": "23rd Birthday @ Funk Groove Club", "text": "", "album_id": "72157623200087819", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4320652269_a8c2a111c4_o.jpg", "secret": "bc1a5c4242", "media": "photo", "latitude": "0", "id": "4320652269", "tags": ""}, {"datetaken": "2010-01-30 21:43:06", "license": "3", "title": "Seven Grand Decor", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4318660451_70d6cbbdaf_o.jpg", "secret": "7e1ee6a92b", "media": "photo", "latitude": "0", "id": "4318660451", "tags": "grand drinks seven birthday2010"}, {"datetaken": "2010-01-30 22:38:09", "license": "3", "title": "Brooks, Jamie, Kate", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4318689375_49b204bf50_o.jpg", "secret": "149238bdef", "media": "photo", "latitude": "0", "id": "4318689375", "tags": "grand drinks seven birthday2010"}, {"datetaken": "2010-01-30 22:38:18", "license": "3", "title": "Jewlie, Misha and Arley", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2778/4318690541_3c7058f807_o.jpg", "secret": "11142b16f5", "media": "photo", "latitude": "0", "id": "4318690541", "tags": "grand drinks seven birthday2010"}, {"datetaken": "2010-01-30 22:38:24", "license": "3", "title": "Kate, Jewlie and Misha", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4318691563_bc90e8163b_o.jpg", "secret": "243aec4aa9", "media": "photo", "latitude": "0", "id": "4318691563", "tags": "grand drinks seven birthday2010"}, {"datetaken": "2010-01-30 22:39:15", "license": "3", "title": "Johnny and Sarah", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2793/4319426182_26517749c8_o.jpg", "secret": "a7e3ba0fef", "media": "photo", "latitude": "0", "id": "4319426182", "tags": "grand drinks seven birthday2010"}, {"datetaken": "2010-01-30 22:40:50", "license": "3", "title": "Cheryl and Mike B", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4319427622_f213e21da5_o.jpg", "secret": "d4ebcd8d91", "media": "photo", "latitude": "0", "id": "4319427622", "tags": "grand drinks seven birthday2010"}, {"datetaken": "2010-01-30 22:45:44", "license": "3", "title": "me and Cheryl", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2695/4318694375_1b8a3efc7a_o.jpg", "secret": "e2d7e3dc79", "media": "photo", "latitude": "0", "id": "4318694375", "tags": "grand drinks seven birthday2010"}, {"datetaken": "2010-01-30 22:47:01", "license": "3", "title": "hellooooo nurse", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4319430586_6c66f203bc_o.jpg", "secret": "710e5b4887", "media": "photo", "latitude": "0", "id": "4319430586", "tags": "grand drinks seven birthday2010"}, {"datetaken": "2010-01-30 22:47:23", "license": "3", "title": "thumbs up, seven grand", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4318698267_1067e4a3e0_o.jpg", "secret": "d07010ab35", "media": "photo", "latitude": "0", "id": "4318698267", "tags": "grand drinks seven birthday2010"}, {"datetaken": "2010-01-30 23:06:34", "license": "3", "title": "Matt, Me, Farrah", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4318730969_696e07263e_o.jpg", "secret": "42a21c6d1f", "media": "photo", "latitude": "0", "id": "4318730969", "tags": "me matt grand drinks seven farrah sevengrand birthday2010"}, {"datetaken": "2010-01-30 23:13:09", "license": "3", "title": "um, no", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4319465504_243e3e21fe_o.jpg", "secret": "8e4c2b53bb", "media": "photo", "latitude": "0", "id": "4319465504", "tags": "me sarah eric jamie drinks misha johnny sevengrand birthday2010"}, {"datetaken": "2010-01-30 23:15:32", "license": "3", "title": "Justin is being weird again", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4319466136_51f140270e_o.jpg", "secret": "c181c94490", "media": "photo", "latitude": "0", "id": "4319466136", "tags": "justin drinks sevengrand birthday2010"}, {"datetaken": "2010-01-30 23:34:22", "license": "3", "title": "me and Adam", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4318732783_8af9dd71bb_o.jpg", "secret": "9d6c0830c5", "media": "photo", "latitude": "0", "id": "4318732783", "tags": "adam me drinks sevengrand birthday2010"}, {"datetaken": "2010-01-31 00:00:39", "license": "3", "title": "IMG_0663", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2792/4318733213_452210c8c5_o.jpg", "secret": "1f3621e121", "media": "photo", "latitude": "0", "id": "4318733213", "tags": "nathan drinks casper sevengrand birthday2010"}, {"datetaken": "2010-01-31 00:07:21", "license": "3", "title": "IMG_0664", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2690/4319467568_12705b70ee_o.jpg", "secret": "fbaa7c72a0", "media": "photo", "latitude": "0", "id": "4319467568", "tags": "ed jamie drinks misha sevengrand birthday2010"}, {"datetaken": "2010-01-31 00:07:30", "license": "3", "title": "my whole crew is loungin", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2745/4319468250_a4381d1f71_o.jpg", "secret": "b544752efe", "media": "photo", "latitude": "0", "id": "4319468250", "tags": "ed jamie drinks misha brianna ashima sevengrand birthday2010"}, {"datetaken": "2010-01-31 00:17:25", "license": "3", "title": "IMG_0667", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2794/4319469250_f6174b318a_o.jpg", "secret": "3e6305c955", "media": "photo", "latitude": "0", "id": "4319469250", "tags": "me drinks brooks sevengrand birthday2010"}, {"datetaken": "2010-01-31 00:17:34", "license": "3", "title": "Old Timey Phil", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4318735999_81b418a2d4_o.jpg", "secret": "135f191c76", "media": "photo", "latitude": "0", "id": "4318735999", "tags": "phil drinks sevengrand birthday2010"}, {"datetaken": "2010-01-31 00:17:40", "license": "3", "title": "Casper", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4319499274_a571d4ffa4_o.jpg", "secret": "62be1fdaf3", "media": "photo", "latitude": "0", "id": "4319499274", "tags": "drinks casper sevengrand birthday2010"}, {"datetaken": "2010-01-31 00:17:57", "license": "3", "title": "There are too many hands", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4319499680_a9cb4157f3_o.jpg", "secret": "d21e6a3968", "media": "photo", "latitude": "0", "id": "4319499680", "tags": "jamie drinks sevengrand birthday2010"}, {"datetaken": "2010-01-31 00:18:30", "license": "3", "title": "Another picture of Misha being creepy", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4319500214_29d4e13f73_o.jpg", "secret": "c5652e8852", "media": "photo", "latitude": "0", "id": "4319500214", "tags": "jamie drinks misha sevengrand birthday2010"}, {"datetaken": "2010-01-31 00:19:06", "license": "3", "title": "Haley and Maxx were there too", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4318767419_c2afb3ae1e_o.jpg", "secret": "ebbe598600", "media": "photo", "latitude": "0", "id": "4318767419", "tags": "drinks hayley maxx sevengrand birthday2010"}, {"datetaken": "2010-01-31 01:05:17", "license": "3", "title": "Nathan is in the secret service", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4319501130_a9e8211eb4_o.jpg", "secret": "8a973400f0", "media": "photo", "latitude": "0", "id": "4319501130", "tags": "nathan drinks sevengrand birthday2010"}, {"datetaken": "2010-01-31 01:05:42", "license": "3", "title": "Ashima wants to be CIA", "text": "", "album_id": "72157623320533820", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4318768631_6d7f0e6544_o.jpg", "secret": "c308e2c161", "media": "photo", "latitude": "0", "id": "4318768631", "tags": "ed drinks ashima sevengrand birthday2010"}, {"datetaken": "2010-01-30 14:30:16", "license": "3", "title": "DSC01481", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4320105318_728039a46c_o.jpg", "secret": "8e49b7a159", "media": "photo", "latitude": "0", "id": "4320105318", "tags": ""}, {"datetaken": "2010-01-30 14:30:56", "license": "3", "title": "DSC01485", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4319372289_50a0f0dd97_o.jpg", "secret": "bd4a158c70", "media": "photo", "latitude": "0", "id": "4319372289", "tags": ""}, {"datetaken": "2010-01-30 14:31:40", "license": "3", "title": "DSC01488", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4319372923_4d4bf55ce3_o.jpg", "secret": "566724a4b3", "media": "photo", "latitude": "0", "id": "4319372923", "tags": ""}, {"datetaken": "2010-01-30 14:43:26", "license": "3", "title": "DSC01492", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4320107204_d2164043a5_o.jpg", "secret": "fa9d023c89", "media": "photo", "latitude": "0", "id": "4320107204", "tags": ""}, {"datetaken": "2010-01-30 14:44:02", "license": "3", "title": "DSC01497", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4320107998_606cbe51d1_o.jpg", "secret": "035fc2ef3c", "media": "photo", "latitude": "0", "id": "4320107998", "tags": ""}, {"datetaken": "2010-01-30 14:44:32", "license": "3", "title": "DSC01498", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4320108364_9045f94c3e_o.jpg", "secret": "5f124fac11", "media": "photo", "latitude": "0", "id": "4320108364", "tags": ""}, {"datetaken": "2010-01-30 14:44:38", "license": "3", "title": "DSC01499", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2683/4319375203_6311050a0f_o.jpg", "secret": "cb228a93bf", "media": "photo", "latitude": "0", "id": "4319375203", "tags": ""}, {"datetaken": "2010-01-30 14:45:42", "license": "3", "title": "DSC01506", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4320109962_e1b9a9a178_o.jpg", "secret": "f67d82c5f6", "media": "photo", "latitude": "0", "id": "4320109962", "tags": ""}, {"datetaken": "2010-01-30 14:46:21", "license": "3", "title": "DSC01508", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2701/4319376905_cc4594564c_o.jpg", "secret": "bf6a7df618", "media": "photo", "latitude": "0", "id": "4319376905", "tags": ""}, {"datetaken": "2010-01-30 14:47:14", "license": "3", "title": "DSC01515", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4319378855_dcb1b4029b_o.jpg", "secret": "f8c1523a15", "media": "photo", "latitude": "0", "id": "4319378855", "tags": ""}, {"datetaken": "2010-01-30 16:18:28", "license": "3", "title": "DSC01521", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2784/4319379997_c9f4b4d5fb_o.jpg", "secret": "7fb8db1239", "media": "photo", "latitude": "0", "id": "4319379997", "tags": ""}, {"datetaken": "2010-01-30 16:20:04", "license": "3", "title": "DSC01526", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4319380867_23dab605a5_o.jpg", "secret": "27a842f950", "media": "photo", "latitude": "0", "id": "4319380867", "tags": ""}, {"datetaken": "2010-01-30 16:22:59", "license": "3", "title": "DSC01536", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4320116654_7e63477736_o.jpg", "secret": "f6d4226e1f", "media": "photo", "latitude": "0", "id": "4320116654", "tags": ""}, {"datetaken": "2010-01-30 16:26:10", "license": "3", "title": "DSC01541", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4319385077_9cef6de54b_o.jpg", "secret": "c849ef7f11", "media": "photo", "latitude": "0", "id": "4319385077", "tags": ""}, {"datetaken": "2010-01-30 17:43:53", "license": "3", "title": "DSC01544", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4320119430_09c39cf348_o.jpg", "secret": "2d70b1e07f", "media": "photo", "latitude": "0", "id": "4320119430", "tags": ""}, {"datetaken": "2010-01-30 17:44:04", "license": "3", "title": "DSC01546", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2498/4319386087_789f4094bd_o.jpg", "secret": "64d76eaa23", "media": "photo", "latitude": "0", "id": "4319386087", "tags": ""}, {"datetaken": "2010-01-30 17:44:08", "license": "3", "title": "DSC01547", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4319386657_52126c07be_o.jpg", "secret": "c4fd02149a", "media": "photo", "latitude": "0", "id": "4319386657", "tags": ""}, {"datetaken": "2010-01-30 17:44:17", "license": "3", "title": "DSC01549", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4320120910_771210091b_o.jpg", "secret": "8a9790d65c", "media": "photo", "latitude": "0", "id": "4320120910", "tags": ""}, {"datetaken": "2010-01-30 17:44:23", "license": "3", "title": "DSC01550", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4319387757_819ac71b1e_o.jpg", "secret": "5ceb0ee014", "media": "photo", "latitude": "0", "id": "4319387757", "tags": ""}, {"datetaken": "2010-01-30 17:44:44", "license": "3", "title": "DSC01551", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2796/4319388437_6cb4fca134_o.jpg", "secret": "c06ddfab52", "media": "photo", "latitude": "0", "id": "4319388437", "tags": ""}, {"datetaken": "2010-01-30 17:45:18", "license": "3", "title": "DSC01557", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4320122738_b4cbd7aff6_o.jpg", "secret": "5898b83067", "media": "photo", "latitude": "0", "id": "4320122738", "tags": ""}, {"datetaken": "2010-01-30 17:45:28", "license": "3", "title": "DSC01558", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2774/4319389489_26b3bf3d36_o.jpg", "secret": "5232bacced", "media": "photo", "latitude": "0", "id": "4319389489", "tags": ""}, {"datetaken": "2010-01-30 17:45:39", "license": "3", "title": "DSC01559", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2791/4320123816_ab901caa81_o.jpg", "secret": "53f6a9852d", "media": "photo", "latitude": "0", "id": "4320123816", "tags": ""}, {"datetaken": "2010-01-30 17:46:49", "license": "3", "title": "DSC01564", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4319391947_e5b19d57e2_o.jpg", "secret": "95cb1816af", "media": "photo", "latitude": "0", "id": "4319391947", "tags": ""}, {"datetaken": "2010-01-30 18:03:59", "license": "3", "title": "DSC01566", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2742/4320126962_37f52866fa_o.jpg", "secret": "5658f5de7f", "media": "photo", "latitude": "0", "id": "4320126962", "tags": ""}, {"datetaken": "2010-01-30 18:04:06", "license": "3", "title": "DSC01567", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2764/4319393967_e36a8dcc27_o.jpg", "secret": "8173565399", "media": "photo", "latitude": "0", "id": "4319393967", "tags": ""}, {"datetaken": "2010-01-31 14:08:57", "license": "3", "title": "DSC01575", "text": "", "album_id": "72157623321908226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4320127976_4d9935990e_o.jpg", "secret": "4ae716357f", "media": "photo", "latitude": "0", "id": "4320127976", "tags": ""}, {"datetaken": "2010-01-30 22:53:43", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.919742", "url_o": "https://farm3.staticflickr.com/2742/4320685320_a357fa3dca_o.jpg", "secret": "3742c012a4", "media": "photo", "latitude": "57.048247", "id": "4320685320", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-30 22:55:18", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.919742", "url_o": "https://farm3.staticflickr.com/2799/4319952055_fdfd714aed_o.jpg", "secret": "bf890af7f8", "media": "photo", "latitude": "57.048247", "id": "4319952055", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 02:59:02", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.919742", "url_o": "https://farm5.staticflickr.com/4036/4319952295_0e7abb3b58_o.jpg", "secret": "3f879bbea8", "media": "photo", "latitude": "57.048247", "id": "4319952295", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:26:15", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4027/4320686034_360f0e302a_o.jpg", "secret": "29ecc7e974", "media": "photo", "latitude": "57.049781", "id": "4320686034", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:26:28", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4069/4319952799_331316a63e_o.jpg", "secret": "64d7123321", "media": "photo", "latitude": "57.049781", "id": "4319952799", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:26:44", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm3.staticflickr.com/2745/4320686526_4369fa853c_o.jpg", "secret": "18f6753076", "media": "photo", "latitude": "57.049781", "id": "4320686526", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:29:52", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4030/4320686804_ecd7150ded_o.jpg", "secret": "1fab62bff0", "media": "photo", "latitude": "57.049781", "id": "4320686804", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:31:48", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm3.staticflickr.com/2792/4320687034_69187621c5_o.jpg", "secret": "4bee4e092e", "media": "photo", "latitude": "57.049781", "id": "4320687034", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:32:00", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm3.staticflickr.com/2785/4319953787_90259f35d2_o.jpg", "secret": "a9a101ecfa", "media": "photo", "latitude": "57.049781", "id": "4319953787", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:33:59", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm3.staticflickr.com/2794/4320687562_ec41e0684d_o.jpg", "secret": "a65964c71e", "media": "photo", "latitude": "57.049781", "id": "4320687562", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:34:42", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4062/4319954249_8fece3db25_o.jpg", "secret": "af1bfddb48", "media": "photo", "latitude": "57.049781", "id": "4319954249", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:35:59", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4071/4320688042_057a58c762_o.jpg", "secret": "95982e78b0", "media": "photo", "latitude": "57.049781", "id": "4320688042", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:37:43", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4033/4320688204_3732af6fde_o.jpg", "secret": "b82ec97af2", "media": "photo", "latitude": "57.049781", "id": "4320688204", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:42:34", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4061/4319954825_c21a8a04e9_o.jpg", "secret": "b003c11032", "media": "photo", "latitude": "57.049781", "id": "4319954825", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:46:05", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4013/4320688636_715a68df65_o.jpg", "secret": "b983a85c22", "media": "photo", "latitude": "57.049781", "id": "4320688636", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:48:26", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4041/4319955359_b9fd433a40_o.jpg", "secret": "5591d578be", "media": "photo", "latitude": "57.049781", "id": "4319955359", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:48:43", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4055/4320689162_3bff816cfa_o.jpg", "secret": "29dc9fd716", "media": "photo", "latitude": "57.049781", "id": "4320689162", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:49:17", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4018/4319955853_fefc3f4c9b_o.jpg", "secret": "cc5e93f104", "media": "photo", "latitude": "57.049781", "id": "4319955853", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:51:36", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4057/4319956125_cf7505cf96_o.jpg", "secret": "bbf5e2f432", "media": "photo", "latitude": "57.049781", "id": "4319956125", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:52:34", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4007/4320689966_8a8a358514_o.jpg", "secret": "837dc34524", "media": "photo", "latitude": "57.049781", "id": "4320689966", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 03:59:12", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm3.staticflickr.com/2715/4319956559_8e4dd8f346_o.jpg", "secret": "6eacec549c", "media": "photo", "latitude": "57.049781", "id": "4319956559", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 04:01:43", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4055/4319956821_b9745dd498_o.jpg", "secret": "70c1264ca5", "media": "photo", "latitude": "57.049781", "id": "4319956821", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 04:07:24", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4047/4320690762_e8f82f0bb0_o.jpg", "secret": "5f8eaa8c7e", "media": "photo", "latitude": "57.049781", "id": "4320690762", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 04:23:48", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4053/4319957295_616d2709a1_o.jpg", "secret": "421d6d8358", "media": "photo", "latitude": "57.049781", "id": "4319957295", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 04:31:56", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4031/4319957553_f4c97b2a39_o.jpg", "secret": "62fcce492f", "media": "photo", "latitude": "57.049781", "id": "4319957553", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 04:32:29", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4013/4319957765_292e5b4f7f_o.jpg", "secret": "aa43b7c452", "media": "photo", "latitude": "57.049781", "id": "4319957765", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 04:42:23", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4012/4319958017_2901fb7e00_o.jpg", "secret": "86dd93964a", "media": "photo", "latitude": "57.049781", "id": "4319958017", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2010-01-31 04:43:03", "license": "1", "title": "Nitusind.nu b-day party + after party", "text": "", "album_id": "72157623323399630", "longitude": "9.917950", "url_o": "https://farm5.staticflickr.com/4049/4319958239_b1b1750e18_o.jpg", "secret": "7721ff7606", "media": "photo", "latitude": "57.049781", "id": "4319958239", "tags": "birthday party culture djs aalborg 2010 v4 studenterhuset djset nitusindnu galimathies galimathiesdk vester\u00e5"}, {"datetaken": "2002-09-27 19:29:02", "license": "2", "title": "Opera", "text": "", "album_id": "72157602098301059", "longitude": "24.749965", "url_o": "https://farm2.staticflickr.com/1414/1414229246_0a4c190bdc_o.jpg", "secret": "47f738281a", "media": "photo", "latitude": "59.434579", "id": "1414229246", "tags": "birthday2002"}, {"datetaken": "2002-09-27 19:44:40", "license": "2", "title": "Opera", "text": "", "album_id": "72157602098301059", "longitude": "24.749965", "url_o": "https://farm2.staticflickr.com/1147/1414229282_5c7fb5a534_o.jpg", "secret": "e7062dda66", "media": "photo", "latitude": "59.434579", "id": "1414229282", "tags": "birthday2002"}, {"datetaken": "2002-09-27 19:52:31", "license": "2", "title": "Opera", "text": "", "album_id": "72157602098301059", "longitude": "24.749965", "url_o": "https://farm2.staticflickr.com/1246/1414229342_e1676a5893_o.jpg", "secret": "64fb172726", "media": "photo", "latitude": "59.434579", "id": "1414229342", "tags": "birthday2002"}, {"datetaken": "2002-09-27 19:53:28", "license": "2", "title": "Opera", "text": "", "album_id": "72157602098301059", "longitude": "24.749965", "url_o": "https://farm2.staticflickr.com/1077/1414229404_1fceee37c0_o.jpg", "secret": "f3998ad56c", "media": "photo", "latitude": "59.434579", "id": "1414229404", "tags": "birthday2002"}, {"datetaken": "2002-09-27 20:28:39", "license": "2", "title": "Opera", "text": "", "album_id": "72157602098301059", "longitude": "24.749965", "url_o": "https://farm2.staticflickr.com/1146/1414228958_99e3d688ed_o.jpg", "secret": "99d114c99f", "media": "photo", "latitude": "59.434579", "id": "1414228958", "tags": "birthday2002"}, {"datetaken": "2002-09-27 21:22:19", "license": "2", "title": "In a pub", "text": "", "album_id": "72157602098301059", "longitude": "24.745942", "url_o": "https://farm2.staticflickr.com/1012/1414229006_23b1fc36b7_o.jpg", "secret": "5607e1a29a", "media": "photo", "latitude": "59.435856", "id": "1414229006", "tags": "birthday2002"}, {"datetaken": "2002-09-27 21:48:23", "license": "2", "title": "In a pub", "text": "", "album_id": "72157602098301059", "longitude": "24.745942", "url_o": "https://farm2.staticflickr.com/1234/1413348465_ecb60890e1_o.jpg", "secret": "70c910b222", "media": "photo", "latitude": "59.435856", "id": "1413348465", "tags": "birthday2002 raunov"}, {"datetaken": "2002-09-27 21:49:02", "license": "2", "title": "In a pub", "text": "", "album_id": "72157602098301059", "longitude": "24.745942", "url_o": "https://farm2.staticflickr.com/1404/1414229144_00e36cfc6a_o.jpg", "secret": "1e2f7f894d", "media": "photo", "latitude": "59.435856", "id": "1414229144", "tags": "birthday2002"}, {"datetaken": "2002-09-27 21:54:06", "license": "2", "title": "In a pub", "text": "", "album_id": "72157602098301059", "longitude": "24.745942", "url_o": "https://farm2.staticflickr.com/1010/1414229192_39001eb3cf_o.jpg", "secret": "12d52a7750", "media": "photo", "latitude": "59.435856", "id": "1414229192", "tags": "birthday2002 raunov"}, {"datetaken": "2002-09-27 21:54:16", "license": "2", "title": "In a pub", "text": "", "album_id": "72157602098301059", "longitude": "24.745942", "url_o": "https://farm2.staticflickr.com/1417/1414229092_764f906b15_o.jpg", "secret": "4eacfaa6a4", "media": "photo", "latitude": "59.435856", "id": "1414229092", "tags": "birthday2002 raunov"}, {"datetaken": "2004-08-14 11:39:20", "license": "3", "title": "PM1-09", "text": "", "album_id": "14334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/394747_dfa41d4f09_o.jpg", "secret": "dfa41d4f09", "media": "photo", "latitude": "0", "id": "394747", "tags": "pinoymac1stanniversary pinoymac anniversary friends"}, {"datetaken": "2004-08-14 18:20:53", "license": "3", "title": "PM1-10", "text": "", "album_id": "14334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/394749_34849539e8_o.jpg", "secret": "34849539e8", "media": "photo", "latitude": "0", "id": "394749", "tags": "pinoymac1stanniversary pinoymac anniversary friends"}, {"datetaken": "2004-08-14 20:07:09", "license": "3", "title": "PM1-01", "text": "", "album_id": "14334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/394734_14080653a5_o.jpg", "secret": "14080653a5", "media": "photo", "latitude": "0", "id": "394734", "tags": "pinoymac1stanniversary pinoymac anniversary friends"}, {"datetaken": "2004-08-14 20:08:17", "license": "3", "title": "PM1-02", "text": "", "album_id": "14334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/394737_2b5ac99d93_o.jpg", "secret": "2b5ac99d93", "media": "photo", "latitude": "0", "id": "394737", "tags": "pinoymac1stanniversary pinoymac anniversary friends"}, {"datetaken": "2004-08-14 20:13:41", "license": "3", "title": "PM1-03", "text": "", "album_id": "14334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/394738_63837c9f4b_o.jpg", "secret": "63837c9f4b", "media": "photo", "latitude": "0", "id": "394738", "tags": "pinoymac1stanniversary pinoymac anniversary friends"}, {"datetaken": "2004-08-14 20:17:44", "license": "3", "title": "PM1-04", "text": "", "album_id": "14334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/394740_2dfb66f74e_o.jpg", "secret": "2dfb66f74e", "media": "photo", "latitude": "0", "id": "394740", "tags": "pinoymac1stanniversary pinoymac anniversary friends"}, {"datetaken": "2004-08-14 20:36:29", "license": "3", "title": "PM1-05", "text": "", "album_id": "14334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/394741_dfe4822495_o.jpg", "secret": "dfe4822495", "media": "photo", "latitude": "0", "id": "394741", "tags": "pinoymac1stanniversary pinoymac anniversary friends"}, {"datetaken": "2004-08-14 20:42:52", "license": "3", "title": "PM1-06", "text": "", "album_id": "14334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/394742_09995f8f1b_o.jpg", "secret": "09995f8f1b", "media": "photo", "latitude": "0", "id": "394742", "tags": "pinoymac1stanniversary pinoymac anniversary friends"}, {"datetaken": "2004-08-14 21:07:46", "license": "3", "title": "PM1-07", "text": "", "album_id": "14334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/394743_1700ee3b38_o.jpg", "secret": "1700ee3b38", "media": "photo", "latitude": "0", "id": "394743", "tags": "pinoymac1stanniversary pinoymac anniversary friends"}, {"datetaken": "2004-08-14 21:13:59", "license": "3", "title": "PM1-08", "text": "", "album_id": "14334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/394746_11f0547baa_o.jpg", "secret": "11f0547baa", "media": "photo", "latitude": "0", "id": "394746", "tags": "pinoymac1stanniversary pinoymac anniversary friends"}, {"datetaken": "2004-10-01 19:06:38", "license": "2", "title": "The church hall", "text": "", "album_id": "17631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/694580_4b216efd85_o.jpg", "secret": "4b216efd85", "media": "photo", "latitude": "0", "id": "694580", "tags": "ukrainian catholic church vancouver"}, {"datetaken": "2004-10-01 19:35:05", "license": "2", "title": "Pyrohy close-up", "text": "", "album_id": "17631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/694585_adef6b8760_o.jpg", "secret": "adef6b8760", "media": "photo", "latitude": "0", "id": "694585", "tags": "ukrainian catholic church vancouver food pyrohy"}, {"datetaken": "2004-10-01 19:35:24", "license": "2", "title": "Eatin some cabbage rolls", "text": "", "album_id": "17631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/694594_f5cafeb476_o.jpg", "secret": "f5cafeb476", "media": "photo", "latitude": "0", "id": "694594", "tags": "ukrainian catholic church vancouver food"}, {"datetaken": "2004-10-01 19:36:43", "license": "2", "title": "It's Evan's Birthday!", "text": "", "album_id": "17631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/694605_3d47948759_o.jpg", "secret": "3d47948759", "media": "photo", "latitude": "0", "id": "694605", "tags": "ukrainian catholic church vancouver evan wise rachel birthday"}, {"datetaken": "2004-10-01 19:36:50", "license": "2", "title": "People at Evan's Table", "text": "", "album_id": "17631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/694612_bc4e4e32ff_o.jpg", "secret": "bc4e4e32ff", "media": "photo", "latitude": "0", "id": "694612", "tags": "ukrainian catholic church vancouver evan wise birthday"}, {"datetaken": "2004-10-01 19:37:29", "license": "2", "title": "Not PR Laurie and Andy holding meal slips", "text": "", "album_id": "17631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/694618_bf3d968605_o.jpg", "secret": "bf3d968605", "media": "photo", "latitude": "0", "id": "694618", "tags": "ukrainian catholic church vancouver andy smith laurie sxip termie"}, {"datetaken": "2004-10-01 19:37:48", "license": "2", "title": "Getting Served", "text": "", "album_id": "17631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/694630_c58a2d5f2c_o.jpg", "secret": "c58a2d5f2c", "media": "photo", "latitude": "0", "id": "694630", "tags": "ukrainian catholic church vancouver ken laurie andy smith"}, {"datetaken": "2004-10-01 19:37:58", "license": "2", "title": "Sean's Meal - Super Dinner!", "text": "", "album_id": "17631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/694636_c00285c688_o.jpg", "secret": "c00285c688", "media": "photo", "latitude": "0", "id": "694636", "tags": "ukrainian catholic church vancouver food sean mitchell"}, {"datetaken": "2004-10-01 19:38:02", "license": "2", "title": "Sean and Trish with trays", "text": "", "album_id": "17631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/694639_9383546573_o.jpg", "secret": "9383546573", "media": "photo", "latitude": "0", "id": "694639", "tags": "ukrainian catholic church vancouver food trish sean mitchell jackson"}, {"datetaken": "2004-10-01 19:39:49", "license": "2", "title": "Eating in progress", "text": "", "album_id": "17631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/694654_5e4f7b77f6_o.jpg", "secret": "5e4f7b77f6", "media": "photo", "latitude": "0", "id": "694654", "tags": "ukrainian catholic church vancouver food"}, {"datetaken": "2004-10-01 19:39:56", "license": "2", "title": "Regular Dinner", "text": "", "album_id": "17631", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/694575_8ec0ffa121_o.jpg", "secret": "8ec0ffa121", "media": "photo", "latitude": "0", "id": "694575", "tags": "ukrainian catholic church vancouver"}, {"datetaken": "2004-11-21 18:26:02", "license": "3", "title": "dark sky 01", "text": "", "album_id": "41385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1629139_1a6160a751_o.jpg", "secret": "1a6160a751", "media": "photo", "latitude": "0", "id": "1629139", "tags": "darksky photositook dusk colorado winterpark night"}, {"datetaken": "2004-11-21 18:26:14", "license": "3", "title": "dark sky 02", "text": "", "album_id": "41385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1629101_6ceeb2a9f9_o.jpg", "secret": "6ceeb2a9f9", "media": "photo", "latitude": "0", "id": "1629101", "tags": "darksky photositook dusk colorado winterpark night"}, {"datetaken": "2004-11-21 18:26:24", "license": "3", "title": "dark sky 03 (with a shooting star!)", "text": "", "album_id": "41385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1629123_d6296b3b51_o.jpg", "secret": "d6296b3b51", "media": "photo", "latitude": "0", "id": "1629123", "tags": "darksky photositook dusk colorado winterpark night"}, {"datetaken": "2004-11-21 18:26:32", "license": "3", "title": "dark sky 04", "text": "", "album_id": "41385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1629112_080dff7454_o.jpg", "secret": "080dff7454", "media": "photo", "latitude": "0", "id": "1629112", "tags": "darksky photositook dusk colorado winterpark night"}, {"datetaken": "2004-11-21 18:26:45", "license": "3", "title": "dark sky 05", "text": "", "album_id": "41385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1629118_c58e4df419_o.jpg", "secret": "c58e4df419", "media": "photo", "latitude": "0", "id": "1629118", "tags": "darksky photositook dusk colorado winterpark night"}, {"datetaken": "2004-11-21 18:26:53", "license": "3", "title": "dark sky 06", "text": "", "album_id": "41385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1629394_fbc5e3b934_o.jpg", "secret": "fbc5e3b934", "media": "photo", "latitude": "0", "id": "1629394", "tags": "darksky photositook colorado dusk winterpark night"}, {"datetaken": "2004-11-21 18:27:14", "license": "3", "title": "dark sky 07", "text": "", "album_id": "41385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1629385_3100b3256a_o.jpg", "secret": "3100b3256a", "media": "photo", "latitude": "0", "id": "1629385", "tags": "darksky photositook colorado dusk winterpark night"}, {"datetaken": "2004-11-21 18:27:26", "license": "3", "title": "dark sky 08", "text": "", "album_id": "41385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1629316_6a51cc68b3_o.jpg", "secret": "6a51cc68b3", "media": "photo", "latitude": "0", "id": "1629316", "tags": "darksky photositook colorado dusk winterpark night"}, {"datetaken": "2004-11-21 18:27:38", "license": "3", "title": "dark sky 09", "text": "", "album_id": "41385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1629365_caac9c29aa_o.jpg", "secret": "caac9c29aa", "media": "photo", "latitude": "0", "id": "1629365", "tags": "darksky photositook colorado dusk winterpark night"}, {"datetaken": "2004-11-21 18:27:49", "license": "3", "title": "dark sky 10", "text": "", "album_id": "41385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1629343_6e635b6d7d_o.jpg", "secret": "6e635b6d7d", "media": "photo", "latitude": "0", "id": "1629343", "tags": "darksky photositook colorado dusk winterpark night"}, {"datetaken": "2004-11-21 18:28:02", "license": "3", "title": "dark sky 11", "text": "", "album_id": "41385", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1629353_3460c5d74e_o.jpg", "secret": "3460c5d74e", "media": "photo", "latitude": "0", "id": "1629353", "tags": "darksky photositook colorado dusk winterpark night"}, {"datetaken": "2003-12-23 19:43:57", "license": "1", "title": "Our tree", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443353_f1a4a11e21_o.jpg", "secret": "f1a4a11e21", "media": "photo", "latitude": "0", "id": "1443353", "tags": "2003 christmas"}, {"datetaken": "2003-12-23 19:44:15", "license": "1", "title": "Christmas Ornament", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443354_1ef0548930_o.jpg", "secret": "1ef0548930", "media": "photo", "latitude": "0", "id": "1443354", "tags": "2003 christmas"}, {"datetaken": "2003-12-23 19:44:35", "license": "1", "title": "Christmas lights", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443368_cabd03f783_o.jpg", "secret": "cabd03f783", "media": "photo", "latitude": "0", "id": "1443368", "tags": "2003 christmas"}, {"datetaken": "2003-12-23 19:44:54", "license": "1", "title": "Christmas lights and trees", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443371_c1ef6d7940_o.jpg", "secret": "c1ef6d7940", "media": "photo", "latitude": "0", "id": "1443371", "tags": "2003 christmas"}, {"datetaken": "2003-12-23 19:45:06", "license": "1", "title": "Christmas lights and tree", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443372_40f996477d_o.jpg", "secret": "40f996477d", "media": "photo", "latitude": "0", "id": "1443372", "tags": "2003 christmas"}, {"datetaken": "2003-12-23 19:45:16", "license": "1", "title": "Christmas lights and tree", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443374_1347015386_o.jpg", "secret": "1347015386", "media": "photo", "latitude": "0", "id": "1443374", "tags": "2003 christmas"}, {"datetaken": "2003-12-24 19:26:31", "license": "1", "title": "Lakeland Community Church on Christmas Eve", "text": "", "album_id": "560450", "longitude": "-107.513301", "url_o": "https://farm1.staticflickr.com/2/1443393_c240f15ca4_o.jpg", "secret": "c240f15ca4", "media": "photo", "latitude": "53.362455", "id": "1443393", "tags": "2003 christmas saskatchewan lakelandchurch spiritwood freemethodist"}, {"datetaken": "2003-12-24 19:27:07", "license": "1", "title": "Lakeland Community Church on Christmas Eve", "text": "", "album_id": "560450", "longitude": "-107.513301", "url_o": "https://farm1.staticflickr.com/2/1443396_de9194f859_o.jpg", "secret": "de9194f859", "media": "photo", "latitude": "53.362455", "id": "1443396", "tags": "2003 christmas saskatchewan lakelandchurch spiritwood freemethodist"}, {"datetaken": "2003-12-25 09:40:59", "license": "1", "title": "Mark's Tonka Firetruck", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443448_ee226ba378_o.jpg", "secret": "94f2fb0677", "media": "photo", "latitude": "0", "id": "1443448", "tags": "2003 christmas markcooper"}, {"datetaken": "2003-12-25 09:41:15", "license": "1", "title": "Mark's Tonka Firetruck", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443452_758634519a_o.jpg", "secret": "eb9918a945", "media": "photo", "latitude": "0", "id": "1443452", "tags": "2003 christmas markcooper"}, {"datetaken": "2003-12-25 09:41:28", "license": "1", "title": "Elway didn't look that excited", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443455_65cdee8ee6_o.jpg", "secret": "65cdee8ee6", "media": "photo", "latitude": "0", "id": "1443455", "tags": "2003 christmas"}, {"datetaken": "2003-12-25 09:43:07", "license": "1", "title": "Christmas stocking", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443461_13696fbd89_o.jpg", "secret": "23cf0d662d", "media": "photo", "latitude": "0", "id": "1443461", "tags": "2003 christmas markcooper"}, {"datetaken": "2003-12-25 09:45:18", "license": "1", "title": "Mark playing with his toy Palm", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443466_073fa961a1_o.jpg", "secret": "b0cf9dfb01", "media": "photo", "latitude": "0", "id": "1443466", "tags": "2003 christmas markcooper"}, {"datetaken": "2003-12-25 09:48:56", "license": "1", "title": "Opening gifts", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443479_d095c4bd36_o.jpg", "secret": "8cf589701c", "media": "photo", "latitude": "0", "id": "1443479", "tags": "2003 christmas markcooper"}, {"datetaken": "2003-12-25 09:49:35", "license": "1", "title": "Mark with a barking dog", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443481_933518f62d_o.jpg", "secret": "1902f9d2aa", "media": "photo", "latitude": "0", "id": "1443481", "tags": "2003 christmas markcooper"}, {"datetaken": "2003-12-25 09:49:47", "license": "1", "title": "Wendy with Elway", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443486_5a72babeee_o.jpg", "secret": "5a72babeee", "media": "photo", "latitude": "0", "id": "1443486", "tags": "2003 christmas"}, {"datetaken": "2003-12-25 09:51:42", "license": "1", "title": "Wendy with Travelling Mercies", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443489_3cf25356d2_o.jpg", "secret": "3cf25356d2", "media": "photo", "latitude": "0", "id": "1443489", "tags": "2003 christmas wendycooper"}, {"datetaken": "2003-12-25 09:55:01", "license": "1", "title": "Mark on Christmas Day", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443493_fc135e7e81_o.jpg", "secret": "4244d868ed", "media": "photo", "latitude": "0", "id": "1443493", "tags": "2003 christmas markcooper"}, {"datetaken": "2003-12-25 09:56:26", "license": "1", "title": "Wendy and Mark", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443501_e4d5b3a4f2_o.jpg", "secret": "6edb6c68d2", "media": "photo", "latitude": "0", "id": "1443501", "tags": "2003 christmas markcooper wendycooper"}, {"datetaken": "2003-12-25 10:01:09", "license": "1", "title": "Mark with horse", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443503_89a6c242e7_o.jpg", "secret": "80929afc70", "media": "photo", "latitude": "0", "id": "1443503", "tags": "2003 christmas markcooper"}, {"datetaken": "2003-12-25 10:01:25", "license": "1", "title": "Wendy, horse, and Mark", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443505_31a8e8db91_o.jpg", "secret": "dfb59202a1", "media": "photo", "latitude": "0", "id": "1443505", "tags": "2003 christmas markcooper"}, {"datetaken": "2003-12-25 10:06:23", "license": "1", "title": "Elway", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443510_354fcfafe3_o.jpg", "secret": "354fcfafe3", "media": "photo", "latitude": "0", "id": "1443510", "tags": "2003 christmas"}, {"datetaken": "2003-12-25 10:16:29", "license": "1", "title": "Wendy and Mark", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443525_177a654422_o.jpg", "secret": "91187d4c06", "media": "photo", "latitude": "0", "id": "1443525", "tags": "2003 christmas markcooper wendycooper"}, {"datetaken": "2003-12-25 11:08:12", "license": "1", "title": "The rink on Christmas Day", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443545_2f9b46e01b_o.jpg", "secret": "41c2fbd4c1", "media": "photo", "latitude": "0", "id": "1443545", "tags": "2003 christmas hockey saskatoon rink markcooper wendycooper jordoncooper elway"}, {"datetaken": "2003-12-25 11:10:12", "license": "1", "title": "The rink on Christmas Day", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443548_66c4d1d78a_o.jpg", "secret": "7925714163", "media": "photo", "latitude": "0", "id": "1443548", "tags": "2003 christmas hockey saskatoon cooper rink markcooper wendycooper jordoncooper elway"}, {"datetaken": "2003-12-25 11:10:22", "license": "1", "title": "The rink on Christmas Day", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443549_4a3fcb67de_o.jpg", "secret": "02c3f63dd5", "media": "photo", "latitude": "0", "id": "1443549", "tags": "2003 christmas hockey saskatoon rink photofriday markcooper elway"}, {"datetaken": "2003-12-25 11:10:37", "license": "1", "title": "The rink on Christmas Day", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443550_e9cb4524c5_o.jpg", "secret": "167ddceb33", "media": "photo", "latitude": "0", "id": "1443550", "tags": "2003 christmas hockey saskatoon cooper rink markcooper wendycooper jordoncooper elway"}, {"datetaken": "2003-12-25 11:10:47", "license": "1", "title": "The rink on Christmas Day", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443555_3e5149f25b_o.jpg", "secret": "aea162351f", "media": "photo", "latitude": "0", "id": "1443555", "tags": "2003 christmas hockey saskatoon cooper rink markcooper wendycooper jordoncooper elway"}, {"datetaken": "2003-12-25 11:12:09", "license": "1", "title": "The rink on Christmas Day", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443565_d2461cddc6_o.jpg", "secret": "bacccd833c", "media": "photo", "latitude": "0", "id": "1443565", "tags": "2003 christmas hockey saskatoon cooper rink markcooper wendycooper jordoncooper elway"}, {"datetaken": "2003-12-25 11:12:22", "license": "1", "title": "The rink on Christmas Day", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443569_eb678a054d_o.jpg", "secret": "65cf934292", "media": "photo", "latitude": "0", "id": "1443569", "tags": "2003 christmas hockey saskatoon cooper rink markcooper wendycooper jordoncooper elway"}, {"datetaken": "2003-12-25 11:13:52", "license": "1", "title": "The rink on Christmas Day", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443576_dfa0be8abe_o.jpg", "secret": "dfa0be8abe", "media": "photo", "latitude": "0", "id": "1443576", "tags": "2003 christmas hockey saskatoon rink wendycooper"}, {"datetaken": "2003-12-25 11:14:24", "license": "1", "title": "The rink on Christmas Day", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443582_692738f283_o.jpg", "secret": "08317103c5", "media": "photo", "latitude": "0", "id": "1443582", "tags": "2003 christmas hockey saskatoon cooper rink markcooper wendycooper jordoncooper elway"}, {"datetaken": "2003-12-25 11:17:12", "license": "1", "title": "The rink on Christmas Day", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443599_423cc6ad97_o.jpg", "secret": "8992a9d2de", "media": "photo", "latitude": "0", "id": "1443599", "tags": "2003 christmas hockey saskatoon cooper rink markcooper wendycooper jordoncooper elway"}, {"datetaken": "2003-12-25 14:18:13", "license": "1", "title": "Leighton's Birthday", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443602_73647071fc_o.jpg", "secret": "73647071fc", "media": "photo", "latitude": "0", "id": "1443602", "tags": "2003 christmas"}, {"datetaken": "2003-12-25 14:57:21", "license": "1", "title": "Mark playing with gifts", "text": "", "album_id": "560450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1443628_c083552dd9_o.jpg", "secret": "1f6ce77ebb", "media": "photo", "latitude": "0", "id": "1443628", "tags": "2003 christmas markcooper"}, {"datetaken": "2004-12-19 09:01:08", "license": "2", "title": "161_6113", "text": "", "album_id": "58685", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2336137_51060a6152_o.jpg", "secret": "51060a6152", "media": "photo", "latitude": "0", "id": "2336137", "tags": "eglinscenictrail"}, {"datetaken": "2004-12-19 09:09:32", "license": "2", "title": "161_6108", "text": "", "album_id": "58685", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2336267_6c0071e7da_o.jpg", "secret": "6c0071e7da", "media": "photo", "latitude": "0", "id": "2336267", "tags": "eglinscenictrail"}, {"datetaken": "2004-12-19 09:09:32", "license": "2", "title": "161_6108pearlCrkDetL", "text": "", "album_id": "58685", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2336273_d899210d68_o.jpg", "secret": "d899210d68", "media": "photo", "latitude": "0", "id": "2336273", "tags": "eglinscenictrail"}, {"datetaken": "2004-12-19 09:09:32", "license": "2", "title": "161_6108pearlCrkDet", "text": "", "album_id": "58685", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2336272_afa6ddf3a7_o.jpg", "secret": "afa6ddf3a7", "media": "photo", "latitude": "0", "id": "2336272", "tags": "eglinscenictrail"}, {"datetaken": "2004-12-19 09:09:32", "license": "2", "title": "161_6109", "text": "", "album_id": "58685", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2336268_4196cc10c0_o.jpg", "secret": "4196cc10c0", "media": "photo", "latitude": "0", "id": "2336268", "tags": "eglinscenictrail"}, {"datetaken": "2004-12-19 09:09:32", "license": "2", "title": "161_6110", "text": "", "album_id": "58685", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2336270_1918489ab9_o.jpg", "secret": "1918489ab9", "media": "photo", "latitude": "0", "id": "2336270", "tags": "eglinscenictrail"}, {"datetaken": "2004-12-19 09:09:32", "license": "2", "title": "161_6111", "text": "", "album_id": "58685", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2336269_81150f15d8_o.jpg", "secret": "81150f15d8", "media": "photo", "latitude": "0", "id": "2336269", "tags": "eglinscenictrail"}, {"datetaken": "2004-12-19 09:17:59", "license": "2", "title": "161_6114", "text": "", "album_id": "58685", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2336495_4c00e824e9_o.jpg", "secret": "4c00e824e9", "media": "photo", "latitude": "0", "id": "2336495", "tags": "eglinscenictrail"}, {"datetaken": "2004-12-19 09:17:59", "license": "2", "title": "161_6115", "text": "", "album_id": "58685", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2336493_26279a9d0f_o.jpg", "secret": "26279a9d0f", "media": "photo", "latitude": "0", "id": "2336493", "tags": "eglinscenictrail"}, {"datetaken": "2004-12-19 09:17:59", "license": "2", "title": "161_6117", "text": "", "album_id": "58685", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2336497_ea4dbcca5c_o.jpg", "secret": "ea4dbcca5c", "media": "photo", "latitude": "0", "id": "2336497", "tags": "eglinscenictrail"}, {"datetaken": "2004-12-19 09:17:59", "license": "2", "title": "161_6118", "text": "", "album_id": "58685", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2336492_0560b4e2fa_o.jpg", "secret": "0560b4e2fa", "media": "photo", "latitude": "0", "id": "2336492", "tags": "eglinscenictrail"}, {"datetaken": "2004-12-19 09:17:59", "license": "2", "title": "161_6119", "text": "", "album_id": "58685", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2336494_dacee2c4a5_o.jpg", "secret": "dacee2c4a5", "media": "photo", "latitude": "0", "id": "2336494", "tags": "eglinscenictrail"}, {"datetaken": "2004-12-19 09:17:59", "license": "2", "title": "161_6119detL", "text": "", "album_id": "58685", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2336498_893d0a6660_o.jpg", "secret": "893d0a6660", "media": "photo", "latitude": "0", "id": "2336498", "tags": "eglinscenictrail"}, {"datetaken": "2004-12-19 09:26:17", "license": "2", "title": "161_6123", "text": "", "album_id": "58685", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2336629_36cdd2336a_o.jpg", "secret": "36cdd2336a", "media": "photo", "latitude": "0", "id": "2336629", "tags": "eglinscenictrail"}, {"datetaken": "2004-12-19 09:26:17", "license": "2", "title": "161_6124", "text": "", "album_id": "58685", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2336631_677681cb60_o.jpg", "secret": "677681cb60", "media": "photo", "latitude": "0", "id": "2336631", "tags": "eglinscenictrail"}, {"datetaken": "2004-12-19 09:26:17", "license": "2", "title": "161_6125a", "text": "", "album_id": "58685", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2336630_3f640c0a0b_o.jpg", "secret": "3f640c0a0b", "media": "photo", "latitude": "0", "id": "2336630", "tags": "eglinscenictrail"}, {"datetaken": "2004-12-19 09:26:17", "license": "2", "title": "161_6125aDetL", "text": "", "album_id": "58685", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2336632_1a150062ca_o.jpg", "secret": "1a150062ca", "media": "photo", "latitude": "0", "id": "2336632", "tags": "eglinscenictrail"}, {"datetaken": "2004-12-21 08:06:25", "license": "4", "title": "08:02:34 GMT", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2409883_0d6da59e23_o.jpg", "secret": "0d6da59e23", "media": "photo", "latitude": "0", "id": "2409883", "tags": "uk england clock berkhamsted squaredcircle hertfordshire alarmclock dilodec04 dilo"}, {"datetaken": "2004-12-21 08:27:34", "license": "4", "title": "Shower", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2409887_87051899e6_o.jpg", "secret": "87051899e6", "media": "photo", "latitude": "0", "id": "2409887", "tags": "uk england selfportrait me paul shower berkhamsted psd hertfordshire dilodec04 dilo"}, {"datetaken": "2004-12-21 08:28:33", "license": "4", "title": "Queue for the Loo", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2409884_cfd0ca1a12_o.jpg", "secret": "cfd0ca1a12", "media": "photo", "latitude": "0", "id": "2409884", "tags": "uk england phoebe berkhamsted hertfordshire dilodec04 dilo"}, {"datetaken": "2004-12-21 08:38:33", "license": "4", "title": "Tea!", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2409898_5843acadb9_o.jpg", "secret": "5843acadb9", "media": "photo", "latitude": "0", "id": "2409898", "tags": "uk england berkhamsted hertfordshire dilodec04 dilo"}, {"datetaken": "2004-12-21 08:39:03", "license": "4", "title": "Toast", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2409913_ff1665dd70_o.jpg", "secret": "ff1665dd70", "media": "photo", "latitude": "0", "id": "2409913", "tags": "uk england berkhamsted hertfordshire dilodec04 dilo"}, {"datetaken": "2004-12-21 09:07:00", "license": "4", "title": "Drive to Work", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2409923_4b1e1b0c6f_o.jpg", "secret": "4b1e1b0c6f", "media": "photo", "latitude": "0", "id": "2409923", "tags": "uk england berkhamsted hertfordshire dilodec04 dilo"}, {"datetaken": "2004-12-21 09:20:41", "license": "4", "title": "Car park", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2409940_666904bff8_o.jpg", "secret": "666904bff8", "media": "photo", "latitude": "0", "id": "2409940", "tags": "dilodec04 dilo apsley england"}, {"datetaken": "2004-12-21 09:24:50", "license": "4", "title": "Slippery", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2409937_8e16640733_o.jpg", "secret": "8e16640733", "media": "photo", "latitude": "0", "id": "2409937", "tags": "england signs sign dilodec04 dilo apsley"}, {"datetaken": "2004-12-21 09:27:43", "license": "4", "title": "Coffee", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2409942_83a65cbb84_o.jpg", "secret": "83a65cbb84", "media": "photo", "latitude": "0", "id": "2409942", "tags": "dilodec04 drink dilo apsley england"}, {"datetaken": "2004-12-21 09:29:31", "license": "4", "title": "WorldZone", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2414764_d3f2bec461_o.jpg", "secret": "d3f2bec461", "media": "photo", "latitude": "0", "id": "2414764", "tags": "signs sign dilodec04 dilo apsley"}, {"datetaken": "2004-12-21 09:30:39", "license": "4", "title": "Going Up", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2409952_47b385ce0c_o.jpg", "secret": "47b385ce0c", "media": "photo", "latitude": "0", "id": "2409952", "tags": "dilodec04 dilo apsley england"}, {"datetaken": "2004-12-21 09:38:45", "license": "4", "title": "Light Box", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2409964_15f5e07743_o.jpg", "secret": "15f5e07743", "media": "photo", "latitude": "0", "id": "2409964", "tags": "dilodec04 dilo apsley england"}, {"datetaken": "2004-12-21 12:14:36", "license": "4", "title": "Festive Curry", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2409975_95690b9c86_o.jpg", "secret": "95690b9c86", "media": "photo", "latitude": "0", "id": "2409975", "tags": "dilodec04 dilo apsley england"}, {"datetaken": "2004-12-21 12:41:42", "license": "4", "title": "12:42 UT", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2409992_5214f77dec_o.jpg", "secret": "5214f77dec", "media": "photo", "latitude": "0", "id": "2409992", "tags": "dilodec04 dilo apsley england"}, {"datetaken": "2004-12-21 13:13:50", "license": "4", "title": "Now Wash Your Hands", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2410000_f221285238_o.jpg", "secret": "f221285238", "media": "photo", "latitude": "0", "id": "2410000", "tags": "england selfportrait me paul psd dilodec04 dilo apsley"}, {"datetaken": "2004-12-21 14:26:33", "license": "4", "title": "Schema from Hell", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2410012_d5842e05f6_o.jpg", "secret": "d5842e05f6", "media": "photo", "latitude": "0", "id": "2410012", "tags": "computer dilodec04 dilo apsley england"}, {"datetaken": "2004-12-21 14:59:17", "license": "4", "title": "Window Seat", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2410031_46c60fddd0_o.jpg", "secret": "46c60fddd0", "media": "photo", "latitude": "0", "id": "2410031", "tags": "computer dilodec04 dilo apsley england"}, {"datetaken": "2004-12-21 15:21:33", "license": "4", "title": "Moonrise", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2410048_6252d2e094_o.jpg", "secret": "6252d2e094", "media": "photo", "latitude": "0", "id": "2410048", "tags": "dilodec04 dilo moon trees apsley england"}, {"datetaken": "2004-12-21 15:22:48", "license": "4", "title": "Westside Windows", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2410059_43327a780a_o.jpg", "secret": "43327a780a", "media": "photo", "latitude": "0", "id": "2410059", "tags": "dilodec04 dilo apsley england"}, {"datetaken": "2004-12-21 16:32:29", "license": "4", "title": "Lights", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2410079_aa48faf361_o.jpg", "secret": "aa48faf361", "media": "photo", "latitude": "0", "id": "2410079", "tags": "dark lights dilodec04 dilo apsley england"}, {"datetaken": "2004-12-21 16:33:40", "license": "4", "title": "Moon", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2410093_2f773df003_o.jpg", "secret": "2f773df003", "media": "photo", "latitude": "0", "id": "2410093", "tags": "moon night dilodec04 dilo apsley england"}, {"datetaken": "2004-12-21 16:40:10", "license": "4", "title": "Demisting", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2410101_c5345ed4c5_o.jpg", "secret": "c5345ed4c5", "media": "photo", "latitude": "0", "id": "2410101", "tags": "car dilodec04 dilo apsley england"}, {"datetaken": "2004-12-21 16:47:46", "license": "4", "title": "Traffic", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2410106_39bf9b0a8d_o.jpg", "secret": "39bf9b0a8d", "media": "photo", "latitude": "0", "id": "2410106", "tags": "dilodec04 traffic dilo apsley england"}, {"datetaken": "2004-12-21 16:53:45", "license": "4", "title": "Back into Berkhamsted", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2410121_fec72cb24f_o.jpg", "secret": "fec72cb24f", "media": "photo", "latitude": "0", "id": "2410121", "tags": "uk england berkhamsted hertfordshire dilodec04 dilo"}, {"datetaken": "2004-12-21 19:10:07", "license": "4", "title": "Bangers", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2414768_f4e15b35f5_o.jpg", "secret": "f4e15b35f5", "media": "photo", "latitude": "0", "id": "2414768", "tags": "uk england food berkhamsted hertfordshire dilodec04 dilo"}, {"datetaken": "2004-12-21 19:28:17", "license": "4", "title": "Welcome Home", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2414770_cd06394354_o.jpg", "secret": "cd06394354", "media": "photo", "latitude": "0", "id": "2414770", "tags": "uk england berkhamsted hertfordshire dilodec04 dilo"}, {"datetaken": "2004-12-21 19:28:55", "license": "4", "title": "Gameboy", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2414776_f946b8b335_o.jpg", "secret": "f946b8b335", "media": "photo", "latitude": "0", "id": "2414776", "tags": "uk england berkhamsted jed hertfordshire dilodec04 dilo"}, {"datetaken": "2004-12-21 19:47:43", "license": "4", "title": "Upload ..", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2414792_25a094ca37_o.jpg", "secret": "25a094ca37", "media": "photo", "latitude": "0", "id": "2414792", "tags": "uk england computer berkhamsted hertfordshire dilodec04 dilo"}, {"datetaken": "2004-12-21 19:49:29", "license": "4", "title": "Fairies", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2414803_93e2993d02_o.jpg", "secret": "93e2993d02", "media": "photo", "latitude": "0", "id": "2414803", "tags": "uk england phoebe berkhamsted hertfordshire dilodec04 dilo"}, {"datetaken": "2004-12-21 19:56:03", "license": "4", "title": "Fembot", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2414816_6a5d230bc1_o.jpg", "secret": "6a5d230bc1", "media": "photo", "latitude": "0", "id": "2414816", "tags": "uk england tv screenshot screen berkhamsted hertfordshire dilodec04 dilo"}, {"datetaken": "2004-12-21 21:06:52", "license": "4", "title": "Reading in Bed", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2414814_583fbefed4_o.jpg", "secret": "583fbefed4", "media": "photo", "latitude": "0", "id": "2414814", "tags": "uk england zoe berkhamsted hertfordshire dilodec04 dilo"}, {"datetaken": "2004-12-21 21:10:17", "license": "4", "title": "Cheers!", "text": "", "album_id": "60622", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2414825_9145656683_o.jpg", "secret": "9145656683", "media": "photo", "latitude": "0", "id": "2414825", "tags": "uk england wine berkhamsted hertfordshire dilodec04 dilo"}, {"datetaken": "2005-01-03 10:06:24", "license": "4", "title": "smile, it's stacie!", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2937260_76999c48e6_o.jpg", "secret": "76999c48e6", "media": "photo", "latitude": "0", "id": "2937260", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:06:33", "license": "4", "title": "zoolander jeremy", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2937251_7b270ab875_o.jpg", "secret": "7b270ab875", "media": "photo", "latitude": "0", "id": "2937251", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:07:12", "license": "4", "title": "cheers joe", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2937256_287119dd4e_o.jpg", "secret": "287119dd4e", "media": "photo", "latitude": "0", "id": "2937256", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:07:34", "license": "4", "title": "um. hi joe. wanna make out?", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2936117_dcd4cbfe21_o.jpg", "secret": "dcd4cbfe21", "media": "photo", "latitude": "0", "id": "2936117", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:07:57", "license": "4", "title": "what is he up to?", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2936101_974e4dd2cf_o.jpg", "secret": "974e4dd2cf", "media": "photo", "latitude": "0", "id": "2936101", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:08:02", "license": "4", "title": "what is she up to?", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2936094_aafac1c686_o.jpg", "secret": "aafac1c686", "media": "photo", "latitude": "0", "id": "2936094", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:15:06", "license": "4", "title": "dirty south contingent", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2936093_ab86f9e3e3_o.jpg", "secret": "ab86f9e3e3", "media": "photo", "latitude": "0", "id": "2936093", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:15:25", "license": "4", "title": "me and james", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2936091_0c31080b68_o.jpg", "secret": "0c31080b68", "media": "photo", "latitude": "0", "id": "2936091", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:15:49", "license": "4", "title": "milon lights", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2934931_42417d93a3_o.jpg", "secret": "42417d93a3", "media": "photo", "latitude": "0", "id": "2934931", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:16:17", "license": "4", "title": "milon lights", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2934944_9f1d8a8492_o.jpg", "secret": "9f1d8a8492", "media": "photo", "latitude": "0", "id": "2934944", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:16:35", "license": "4", "title": "joe and frank", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2934928_8bd5a5d89c_o.jpg", "secret": "8bd5a5d89c", "media": "photo", "latitude": "0", "id": "2934928", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:19:09", "license": "4", "title": "joe", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2934936_2648ac8133_o.jpg", "secret": "2648ac8133", "media": "photo", "latitude": "0", "id": "2934936", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:19:18", "license": "4", "title": "jeremy kisses me. *sigh*", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2934948_741e4c8a39_o.jpg", "secret": "741e4c8a39", "media": "photo", "latitude": "0", "id": "2934948", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:20:33", "license": "4", "title": "eric drinks it up", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2934950_b77b6d19c4_o.jpg", "secret": "b77b6d19c4", "media": "photo", "latitude": "0", "id": "2934950", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:20:58", "license": "4", "title": "joe and frank", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2935328_ba3922ecb9_o.jpg", "secret": "ba3922ecb9", "media": "photo", "latitude": "0", "id": "2935328", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:21:11", "license": "4", "title": "joe gets down", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2935329_a5a330375b_o.jpg", "secret": "a5a330375b", "media": "photo", "latitude": "0", "id": "2935329", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:21:18", "license": "4", "title": "new age joe", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2935344_eeefec8925_o.jpg", "secret": "eeefec8925", "media": "photo", "latitude": "0", "id": "2935344", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:21:22", "license": "4", "title": "extasy", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2935330_42b22a43b6_o.jpg", "secret": "42b22a43b6", "media": "photo", "latitude": "0", "id": "2935330", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:21:25", "license": "4", "title": "more extasy", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2935334_581c8046e3_o.jpg", "secret": "581c8046e3", "media": "photo", "latitude": "0", "id": "2935334", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:21:30", "license": "4", "title": "climax", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2935343_f09def7f3d_o.jpg", "secret": "f09def7f3d", "media": "photo", "latitude": "0", "id": "2935343", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:23:10", "license": "4", "title": "aww, i love the chinatown ice cream factory", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2936118_d247158c52_o.jpg", "secret": "d247158c52", "media": "photo", "latitude": "0", "id": "2936118", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:23:16", "license": "4", "title": "jeremy, me, frank", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2934469_a57b0cca89_o.jpg", "secret": "a57b0cca89", "media": "photo", "latitude": "0", "id": "2934469", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:23:22", "license": "4", "title": "me n' frank", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2934468_e54ea2787b_o.jpg", "secret": "e54ea2787b", "media": "photo", "latitude": "0", "id": "2934468", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:27:41", "license": "4", "title": "brandon", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2934471_2c683315ba_o.jpg", "secret": "2c683315ba", "media": "photo", "latitude": "0", "id": "2934471", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:32:46", "license": "4", "title": "frank, james & stacie", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2934472_56f383c940_o.jpg", "secret": "56f383c940", "media": "photo", "latitude": "0", "id": "2934472", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:44:36", "license": "4", "title": "joe smiles", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2934479_3af261af09_o.jpg", "secret": "3af261af09", "media": "photo", "latitude": "0", "id": "2934479", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:46:20", "license": "4", "title": "boy lovin'", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2934481_e8126ac530_o.jpg", "secret": "e8126ac530", "media": "photo", "latitude": "0", "id": "2934481", "tags": "milon birthday friends"}, {"datetaken": "2005-01-03 10:46:26", "license": "4", "title": "27 years!", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2930944_ec3dd7c1ea_o.jpg", "secret": "ec3dd7c1ea", "media": "photo", "latitude": "0", "id": "2930944", "tags": "lucky kiss birthday 27"}, {"datetaken": "2005-01-03 10:48:05", "license": "4", "title": "frankie", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2933842_1ac365a88d_o.jpg", "secret": "1ac365a88d", "media": "photo", "latitude": "0", "id": "2933842", "tags": "birthday milon friends"}, {"datetaken": "2005-01-03 10:53:58", "license": "4", "title": "nathan and laura", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2933840_a46ee8cb15_o.jpg", "secret": "a46ee8cb15", "media": "photo", "latitude": "0", "id": "2933840", "tags": "birthday milon friends"}, {"datetaken": "2005-01-03 10:54:02", "license": "4", "title": "nathan and laura", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2933866_9fea2af319_o.jpg", "secret": "9fea2af319", "media": "photo", "latitude": "0", "id": "2933866", "tags": "birthday milon friends"}, {"datetaken": "2005-01-03 10:54:11", "license": "4", "title": "joe and jennie", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2933863_b9d0944d7a_o.jpg", "secret": "b9d0944d7a", "media": "photo", "latitude": "0", "id": "2933863", "tags": "birthday milon friends"}, {"datetaken": "2005-01-03 10:55:54", "license": "4", "title": "that end of the table", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2933839_1ae1407dff_o.jpg", "secret": "1ae1407dff", "media": "photo", "latitude": "0", "id": "2933839", "tags": "birthday milon friends"}, {"datetaken": "2005-01-03 10:56:01", "license": "4", "title": "eye of the tiger", "text": "", "album_id": "73269", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2933836_71c739993d_o.jpg", "secret": "71c739993d", "media": "photo", "latitude": "0", "id": "2933836", "tags": "birthday milon friends"}, {"datetaken": "2005-01-29 20:10:18", "license": "1", "title": "fondue", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4076623_e46814d8ba_o.jpg", "secret": "e46814d8ba", "media": "photo", "latitude": "0", "id": "4076623", "tags": "birthday jill fondue jyo"}, {"datetaken": "2005-01-29 20:32:04", "license": "1", "title": "Dinner", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4076660_2da69f7f62_o.jpg", "secret": "2da69f7f62", "media": "photo", "latitude": "0", "id": "4076660", "tags": "birthday food jyo"}, {"datetaken": "2005-01-29 20:32:19", "license": "1", "title": "Brian, Jason, Jill, Juliet", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4076672_0c511e19e5_o.jpg", "secret": "0c511e19e5", "media": "photo", "latitude": "0", "id": "4076672", "tags": "birthday jill juliet jyo"}, {"datetaken": "2005-01-29 20:32:58", "license": "1", "title": "the spread", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4076682_14bd67d259_o.jpg", "secret": "14bd67d259", "media": "photo", "latitude": "0", "id": "4076682", "tags": "birthday jill jyo"}, {"datetaken": "2005-01-29 20:39:44", "license": "1", "title": "Jill's \"own\"", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4076698_0837e38f99_o.jpg", "secret": "0837e38f99", "media": "photo", "latitude": "0", "id": "4076698", "tags": "birthday jill jyo"}, {"datetaken": "2005-01-29 21:08:35", "license": "1", "title": "hi", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4076716_ca493b9bb0_o.jpg", "secret": "ca493b9bb0", "media": "photo", "latitude": "0", "id": "4076716", "tags": "birthday jill jyo"}, {"datetaken": "2005-01-29 21:08:44", "license": "1", "title": "profiles", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4076728_f581a61b66_o.jpg", "secret": "f581a61b66", "media": "photo", "latitude": "0", "id": "4076728", "tags": "birthday lisa presley jyo"}, {"datetaken": "2005-01-29 21:29:30", "license": "1", "title": "card", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4076741_5618dc62eb_o.jpg", "secret": "5618dc62eb", "media": "photo", "latitude": "0", "id": "4076741", "tags": "birthday liz jyo"}, {"datetaken": "2005-01-29 21:44:39", "license": "1", "title": "cake", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4076765_0a6d068fd7_o.jpg", "secret": "0a6d068fd7", "media": "photo", "latitude": "0", "id": "4076765", "tags": "birthday liz adam cake jyo"}, {"datetaken": "2005-01-29 21:44:47", "license": "1", "title": "blow out", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4076798_67af24feb2_o.jpg", "secret": "67af24feb2", "media": "photo", "latitude": "0", "id": "4076798", "tags": "birthday cake jyo"}, {"datetaken": "2005-01-29 21:45:32", "license": "1", "title": "Napoleon Dynamite's cake", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4076807_60dc70dad5_o.jpg", "secret": "60dc70dad5", "media": "photo", "latitude": "0", "id": "4076807", "tags": "birthday cake napoleondynamite jyo"}, {"datetaken": "2005-01-29 21:50:48", "license": "1", "title": "slice", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4076820_01e03b4af0_o.jpg", "secret": "01e03b4af0", "media": "photo", "latitude": "0", "id": "4076820", "tags": "birthday liz margaret jyo"}, {"datetaken": "2005-01-29 22:25:50", "license": "1", "title": "Presley", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4076840_1112e37356_o.jpg", "secret": "1112e37356", "media": "photo", "latitude": "0", "id": "4076840", "tags": "birthday lisa presley jyo"}, {"datetaken": "2005-01-29 22:29:31", "license": "1", "title": "Juliet", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4076852_540ed2d5df_o.jpg", "secret": "540ed2d5df", "media": "photo", "latitude": "0", "id": "4076852", "tags": "birthday juliet jyo"}, {"datetaken": "2005-01-29 22:48:54", "license": "1", "title": "pretty", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4076862_4e003007be_o.jpg", "secret": "4e003007be", "media": "photo", "latitude": "0", "id": "4076862", "tags": "birthday jyo"}, {"datetaken": "2005-01-29 22:49:10", "license": "1", "title": "scarf", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4076876_5c0ff29788_o.jpg", "secret": "5c0ff29788", "media": "photo", "latitude": "0", "id": "4076876", "tags": "birthday liz jyo"}, {"datetaken": "2005-01-29 22:52:31", "license": "1", "title": "WHAT?!", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4077057_6f3e2af131_o.jpg", "secret": "6f3e2af131", "media": "photo", "latitude": "0", "id": "4077057", "tags": "birthday liz jyo"}, {"datetaken": "2005-01-29 22:53:56", "license": "1", "title": "My \"Little Steven\"", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4077072_7be1fb9aca_o.jpg", "secret": "7be1fb9aca", "media": "photo", "latitude": "0", "id": "4077072", "tags": "birthday liz me john ned jyo"}, {"datetaken": "2005-01-29 22:59:35", "license": "1", "title": "oh god", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4077082_e80a0eca84_o.jpg", "secret": "e80a0eca84", "media": "photo", "latitude": "0", "id": "4077082", "tags": "birthday jill jyo"}, {"datetaken": "2005-01-29 23:00:49", "license": "1", "title": "Jill", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4077092_c01b718950_o.jpg", "secret": "c01b718950", "media": "photo", "latitude": "0", "id": "4077092", "tags": "birthday jill jyo"}, {"datetaken": "2005-01-29 23:03:50", "license": "1", "title": "My Mess", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4077097_5cdc8bfb3a_o.jpg", "secret": "5cdc8bfb3a", "media": "photo", "latitude": "0", "id": "4077097", "tags": "birthday jyo"}, {"datetaken": "2005-01-29 23:13:04", "license": "1", "title": "smoke 2", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4077470_ac0521597c_o.jpg", "secret": "ac0521597c", "media": "photo", "latitude": "0", "id": "4077470", "tags": "birthday margaret brum jyo"}, {"datetaken": "2005-01-29 23:13:07", "license": "1", "title": "smoke", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4077460_4cfc11a3a9_o.jpg", "secret": "4cfc11a3a9", "media": "photo", "latitude": "0", "id": "4077460", "tags": "birthday adam brum jyo"}, {"datetaken": "2005-01-29 23:17:29", "license": "1", "title": "Adam?", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4077482_cebc09b943_o.jpg", "secret": "cebc09b943", "media": "photo", "latitude": "0", "id": "4077482", "tags": "birthday liz adam jyo"}, {"datetaken": "2005-01-29 23:17:47", "license": "1", "title": "Presley", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4077498_b0e562b743_o.jpg", "secret": "b0e562b743", "media": "photo", "latitude": "0", "id": "4077498", "tags": "birthday lisa presley jyo"}, {"datetaken": "2005-01-29 23:46:46", "license": "1", "title": "haha", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4076641_6f6fc12270_o.jpg", "secret": "6f6fc12270", "media": "photo", "latitude": "0", "id": "4076641", "tags": "birthday liz jill lisa juliet presley jyo"}, {"datetaken": "2005-01-29 23:46:51", "license": "1", "title": "Jill gives Jason his birthday gift", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4076650_79b3142e6c_o.jpg", "secret": "79b3142e6c", "media": "photo", "latitude": "0", "id": "4076650", "tags": "birthday jill juliet jyo"}, {"datetaken": "2005-01-29 23:47:26", "license": "1", "title": "Liz", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4077515_787c5a9b0a_o.jpg", "secret": "787c5a9b0a", "media": "photo", "latitude": "0", "id": "4077515", "tags": "birthday liz jyo"}, {"datetaken": "2005-01-29 23:49:40", "license": "1", "title": "Presley & Jason eat fondue", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4076630_cf77fb862b_o.jpg", "secret": "cf77fb862b", "media": "photo", "latitude": "0", "id": "4076630", "tags": "birthday lisa fondue presley jyo"}, {"datetaken": "2005-01-29 23:51:41", "license": "1", "title": "\"Florida's Most Pampered\"", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4077529_74e0a352ff_o.jpg", "secret": "74e0a352ff", "media": "photo", "latitude": "0", "id": "4077529", "tags": "birthday jyo"}, {"datetaken": "2005-01-30 00:02:10", "license": "1", "title": "beef stick", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4077540_1b0938b628_o.jpg", "secret": "1b0938b628", "media": "photo", "latitude": "0", "id": "4077540", "tags": "birthday beef sausage jyo"}, {"datetaken": "2005-01-30 00:33:30", "license": "1", "title": "wine", "text": "", "album_id": "102806", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4077547_3aadc88762_o.jpg", "secret": "3aadc88762", "media": "photo", "latitude": "0", "id": "4077547", "tags": "birthday jyo"}, {"datetaken": "2006-12-14 19:51:17", "license": "4", "title": "2006.12.14 Hubu Birthday Party", "text": "", "album_id": "72157594452459464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/341323166_b652c3ec7f_o.jpg", "secret": "b652c3ec7f", "media": "photo", "latitude": "0", "id": "341323166", "tags": "birthday temescal pizzaiolo hubu"}, {"datetaken": "2006-12-14 20:18:00", "license": "4", "title": "2006.12.14 Hubu Birthday Party", "text": "", "album_id": "72157594452459464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/341323276_a58e6abf7b_o.jpg", "secret": "a58e6abf7b", "media": "photo", "latitude": "0", "id": "341323276", "tags": "birthday temescal pizzaiolo hubu"}, {"datetaken": "2006-12-14 20:18:45", "license": "4", "title": "2006.12.14 Hubu Birthday Party", "text": "", "album_id": "72157594452459464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/341323459_a49eae30c5_o.jpg", "secret": "a49eae30c5", "media": "photo", "latitude": "0", "id": "341323459", "tags": "birthday temescal pizzaiolo hubu"}, {"datetaken": "2006-12-14 20:18:53", "license": "4", "title": "2006.12.14 Hubu Birthday Party", "text": "", "album_id": "72157594452459464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/341323585_2b5f6e2366_o.jpg", "secret": "2b5f6e2366", "media": "photo", "latitude": "0", "id": "341323585", "tags": "birthday temescal pizzaiolo hubu"}, {"datetaken": "2006-12-14 20:21:47", "license": "4", "title": "2006.12.14 Hubu Birthday Party", "text": "", "album_id": "72157594452459464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/341323693_247403e5bf_o.jpg", "secret": "247403e5bf", "media": "photo", "latitude": "0", "id": "341323693", "tags": "birthday temescal pizzaiolo hubu"}, {"datetaken": "2006-12-14 20:21:53", "license": "4", "title": "2006.12.14 Hubu Birthday Party", "text": "", "album_id": "72157594452459464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/341323810_d7cc226351_o.jpg", "secret": "d7cc226351", "media": "photo", "latitude": "0", "id": "341323810", "tags": "birthday temescal pizzaiolo hubu"}, {"datetaken": "2006-12-14 20:36:20", "license": "4", "title": "2006.12.14 Hubu Birthday Party", "text": "", "album_id": "72157594452459464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/341323951_8acb3f365f_o.jpg", "secret": "8acb3f365f", "media": "photo", "latitude": "0", "id": "341323951", "tags": "birthday temescal pizzaiolo hubu"}, {"datetaken": "2006-12-14 20:36:26", "license": "4", "title": "2006.12.14 Hubu Birthday Party", "text": "", "album_id": "72157594452459464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/341324132_b10122a749_o.jpg", "secret": "b10122a749", "media": "photo", "latitude": "0", "id": "341324132", "tags": "birthday temescal pizzaiolo hubu"}, {"datetaken": "2006-12-14 20:36:33", "license": "4", "title": "2006.12.14 Hubu Birthday Party", "text": "", "album_id": "72157594452459464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/341324271_015ef94597_o.jpg", "secret": "015ef94597", "media": "photo", "latitude": "0", "id": "341324271", "tags": "birthday temescal pizzaiolo hubu"}, {"datetaken": "2006-12-14 21:06:38", "license": "4", "title": "2006.12.14 Hubu Birthday Party", "text": "", "album_id": "72157594452459464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/341324436_01ee360da7_o.jpg", "secret": "01ee360da7", "media": "photo", "latitude": "0", "id": "341324436", "tags": "birthday temescal pizzaiolo hubu"}, {"datetaken": "2006-12-14 21:06:47", "license": "4", "title": "2006.12.14 Hubu Birthday Party", "text": "", "album_id": "72157594452459464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/341324641_f8d81d4a92_o.jpg", "secret": "f8d81d4a92", "media": "photo", "latitude": "0", "id": "341324641", "tags": "birthday temescal pizzaiolo hubu"}, {"datetaken": "2006-12-14 21:49:48", "license": "4", "title": "2006.12.14 Hubu Birthday Party", "text": "", "album_id": "72157594452459464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/341324750_da7bc53f96_o.jpg", "secret": "da7bc53f96", "media": "photo", "latitude": "0", "id": "341324750", "tags": "birthday temescal pizzaiolo hubu"}, {"datetaken": "2006-12-14 21:49:54", "license": "4", "title": "2006.12.14 Hubu Birthday Party", "text": "", "album_id": "72157594452459464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/341324897_a3cee17078_o.jpg", "secret": "a3cee17078", "media": "photo", "latitude": "0", "id": "341324897", "tags": "birthday temescal pizzaiolo hubu"}, {"datetaken": "2006-12-14 21:53:27", "license": "4", "title": "2006.12.14 Hubu Birthday Party", "text": "", "album_id": "72157594452459464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/341325014_62303b88f3_o.jpg", "secret": "62303b88f3", "media": "photo", "latitude": "0", "id": "341325014", "tags": "birthday temescal pizzaiolo hubu"}, {"datetaken": "2006-12-14 21:53:43", "license": "4", "title": "2006.12.14 Hubu Birthday Party", "text": "", "album_id": "72157594452459464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/341325160_837e8339be_o.jpg", "secret": "837e8339be", "media": "photo", "latitude": "0", "id": "341325160", "tags": "birthday temescal pizzaiolo hubu"}, {"datetaken": "2006-12-14 21:53:48", "license": "4", "title": "2006.12.14 Hubu Birthday Party", "text": "", "album_id": "72157594452459464", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/341325388_5300fd8935_o.jpg", "secret": "5300fd8935", "media": "photo", "latitude": "0", "id": "341325388", "tags": "birthday temescal pizzaiolo hubu"}, {"datetaken": "2009-12-25 19:32:29", "license": "1", "title": "\u8056\u8a95Party '09", "text": "", "album_id": "72157623129800106", "longitude": "114.037833", "url_o": "https://farm5.staticflickr.com/4059/4240783841_b7952d701b_o.jpg", "secret": "50f6532f9e", "media": "photo", "latitude": "22.343999", "id": "4240783841", "tags": "birthday christmas party \u751f\u65e5 \u8056\u8a95\u7bc0"}, {"datetaken": "2009-12-25 20:51:51", "license": "1", "title": "\u8056\u8a95Party '09", "text": "", "album_id": "72157623129800106", "longitude": "113.948333", "url_o": "https://farm5.staticflickr.com/4025/4240784687_37d0bb07fd_o.jpg", "secret": "355bae209e", "media": "photo", "latitude": "22.293166", "id": "4240784687", "tags": "birthday christmas party \u751f\u65e5 \u8056\u8a95\u7bc0"}, {"datetaken": "2009-12-25 21:09:19", "license": "1", "title": "\u8056\u8a95Party '09", "text": "", "album_id": "72157623129800106", "longitude": "113.943833", "url_o": "https://farm3.staticflickr.com/2684/4241557706_c468dba33e_o.jpg", "secret": "0e54ac13b6", "media": "photo", "latitude": "22.293166", "id": "4241557706", "tags": "birthday christmas party \u751f\u65e5 \u8056\u8a95\u7bc0"}, {"datetaken": "2009-12-25 23:20:31", "license": "1", "title": "\u8056\u8a95Party '09", "text": "", "album_id": "72157623129800106", "longitude": "113.943666", "url_o": "https://farm5.staticflickr.com/4026/4240786317_547fe59088_o.jpg", "secret": "a230f70847", "media": "photo", "latitude": "22.293000", "id": "4240786317", "tags": "birthday christmas party \u751f\u65e5 \u8056\u8a95\u7bc0"}, {"datetaken": "2009-12-25 23:20:43", "license": "1", "title": "\u8056\u8a95Party '09", "text": "", "album_id": "72157623129800106", "longitude": "113.978833", "url_o": "https://farm5.staticflickr.com/4040/4240786995_1b8a7ab690_o.jpg", "secret": "14361dbd45", "media": "photo", "latitude": "22.304333", "id": "4240786995", "tags": "birthday christmas party \u751f\u65e5 \u8056\u8a95\u7bc0"}, {"datetaken": "2009-12-25 23:21:03", "license": "1", "title": "\u8056\u8a95Party '09", "text": "", "album_id": "72157623129800106", "longitude": "113.978833", "url_o": "https://farm3.staticflickr.com/2754/4241559882_e6342950e4_o.jpg", "secret": "905a9d33ba", "media": "photo", "latitude": "22.304333", "id": "4241559882", "tags": "birthday christmas party \u751f\u65e5 \u8056\u8a95\u7bc0"}, {"datetaken": "2009-12-25 23:24:32", "license": "1", "title": "\u8056\u8a95Party '09", "text": "", "album_id": "72157623129800106", "longitude": "113.943666", "url_o": "https://farm3.staticflickr.com/2764/4241560666_78183d760f_o.jpg", "secret": "f4095b7c10", "media": "photo", "latitude": "22.293000", "id": "4241560666", "tags": "birthday christmas party \u751f\u65e5 \u8056\u8a95\u7bc0"}, {"datetaken": "2009-12-25 23:24:53", "license": "1", "title": "\u8056\u8a95Party '09", "text": "", "album_id": "72157623129800106", "longitude": "113.943666", "url_o": "https://farm5.staticflickr.com/4016/4240789169_452bb3d308_o.jpg", "secret": "f40a9e9490", "media": "photo", "latitude": "22.293000", "id": "4240789169", "tags": "birthday christmas party \u751f\u65e5 \u8056\u8a95\u7bc0"}, {"datetaken": "2009-12-25 23:26:26", "license": "1", "title": "\u8056\u8a95Party '09", "text": "", "album_id": "72157623129800106", "longitude": "113.943500", "url_o": "https://farm3.staticflickr.com/2708/4240789899_33c2acb33e_o.jpg", "secret": "12268d1487", "media": "photo", "latitude": "22.292500", "id": "4240789899", "tags": "birthday christmas party \u751f\u65e5 \u8056\u8a95\u7bc0"}, {"datetaken": "2009-12-25 23:26:40", "license": "1", "title": "\u8056\u8a95Party '09", "text": "", "album_id": "72157623129800106", "longitude": "113.943500", "url_o": "https://farm5.staticflickr.com/4072/4240790583_be9d9f66a9_o.jpg", "secret": "09a1d29a2f", "media": "photo", "latitude": "22.292500", "id": "4240790583", "tags": "birthday christmas party \u751f\u65e5 \u8056\u8a95\u7bc0"}, {"datetaken": "2009-12-25 23:26:48", "license": "1", "title": "\u8056\u8a95Party '09", "text": "", "album_id": "72157623129800106", "longitude": "113.943500", "url_o": "https://farm5.staticflickr.com/4006/4241563300_6f21d05e92_o.jpg", "secret": "e36db69e92", "media": "photo", "latitude": "22.292500", "id": "4241563300", "tags": "birthday christmas party \u751f\u65e5 \u8056\u8a95\u7bc0"}, {"datetaken": "2009-12-25 23:27:00", "license": "1", "title": "\u8056\u8a95Party '09", "text": "", "album_id": "72157623129800106", "longitude": "113.943500", "url_o": "https://farm3.staticflickr.com/2479/4241563962_9761425e30_o.jpg", "secret": "242863f3d6", "media": "photo", "latitude": "22.292500", "id": "4241563962", "tags": "birthday christmas party \u751f\u65e5 \u8056\u8a95\u7bc0"}, {"datetaken": "2009-12-25 23:27:13", "license": "1", "title": "\u8056\u8a95Party '09", "text": "", "album_id": "72157623129800106", "longitude": "113.943500", "url_o": "https://farm5.staticflickr.com/4023/4240792731_1fb6fac1c2_o.jpg", "secret": "81e959b006", "media": "photo", "latitude": "22.292500", "id": "4240792731", "tags": "birthday christmas party \u751f\u65e5 \u8056\u8a95\u7bc0"}, {"datetaken": "2009-12-25 23:27:45", "license": "1", "title": "\u8056\u8a95Party '09", "text": "", "album_id": "72157623129800106", "longitude": "113.943500", "url_o": "https://farm3.staticflickr.com/2795/4240793569_83817b8d22_o.jpg", "secret": "50c8c96974", "media": "photo", "latitude": "22.292500", "id": "4240793569", "tags": "birthday christmas party \u751f\u65e5 \u8056\u8a95\u7bc0"}, {"datetaken": "2009-12-25 23:28:02", "license": "1", "title": "\u8056\u8a95Party '09", "text": "", "album_id": "72157623129800106", "longitude": "113.943500", "url_o": "https://farm5.staticflickr.com/4049/4240794399_169d6ace56_o.jpg", "secret": "71c7258c1e", "media": "photo", "latitude": "22.292500", "id": "4240794399", "tags": "birthday christmas party \u751f\u65e5 \u8056\u8a95\u7bc0"}, {"datetaken": "2009-12-25 23:54:32", "license": "1", "title": "\u8056\u8a95Party '09", "text": "", "album_id": "72157623129800106", "longitude": "113.943666", "url_o": "https://farm3.staticflickr.com/2642/4240794971_230d32f4a8_o.jpg", "secret": "525b22b5af", "media": "photo", "latitude": "22.292833", "id": "4240794971", "tags": "birthday christmas party \u751f\u65e5 \u8056\u8a95\u7bc0"}, {"datetaken": "2009-12-25 23:58:01", "license": "1", "title": "\u8056\u8a95Party '09", "text": "", "album_id": "72157623129800106", "longitude": "113.944333", "url_o": "https://farm3.staticflickr.com/2491/4241567742_be013479ae_o.jpg", "secret": "776244343c", "media": "photo", "latitude": "22.292666", "id": "4241567742", "tags": "birthday christmas party \u751f\u65e5 \u8056\u8a95\u7bc0"}, {"datetaken": "2009-12-20 14:03:32", "license": "3", "title": "20091220-IMG_7899", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2540/4243058198_e1f61ae21d_o.jpg", "secret": "0d79a683a5", "media": "photo", "latitude": "0", "id": "4243058198", "tags": ""}, {"datetaken": "2009-12-20 14:04:38", "license": "3", "title": "20091220-IMG_7900", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4242293661_417c4af8e0_o.jpg", "secret": "f3eb15b991", "media": "photo", "latitude": "0", "id": "4242293661", "tags": ""}, {"datetaken": "2009-12-20 14:04:40", "license": "3", "title": "20091220-IMG_7901", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4242307785_4e4ded159f_o.jpg", "secret": "bbce6da1ba", "media": "photo", "latitude": "0", "id": "4242307785", "tags": ""}, {"datetaken": "2009-12-20 14:04:44", "license": "3", "title": "20091220-IMG_7903", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2533/4242308549_1c582382d8_o.jpg", "secret": "fd03913c32", "media": "photo", "latitude": "0", "id": "4242308549", "tags": ""}, {"datetaken": "2009-12-20 14:05:36", "license": "3", "title": "20091220-IMG_7905", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2758/4243096900_e62b34745b_o.jpg", "secret": "b39c8f6962", "media": "photo", "latitude": "0", "id": "4243096900", "tags": ""}, {"datetaken": "2009-12-20 14:31:59", "license": "3", "title": "20091220-IMG_7908", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2488/4242340217_d6dbe9f14b_o.jpg", "secret": "18b327c668", "media": "photo", "latitude": "0", "id": "4242340217", "tags": ""}, {"datetaken": "2009-12-20 14:33:51", "license": "3", "title": "20091220-IMG_7909", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4242345941_01e89e1d40_o.jpg", "secret": "9fac0c4f69", "media": "photo", "latitude": "0", "id": "4242345941", "tags": ""}, {"datetaken": "2009-12-20 14:33:54", "license": "3", "title": "20091220-IMG_7910", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4242370319_7477b3dc5a_o.jpg", "secret": "9ac8b375de", "media": "photo", "latitude": "0", "id": "4242370319", "tags": ""}, {"datetaken": "2009-12-20 14:36:18", "license": "3", "title": "20091220-IMG_7915", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4242372295_3fb99939d3_o.jpg", "secret": "8691a6d105", "media": "photo", "latitude": "0", "id": "4242372295", "tags": ""}, {"datetaken": "2009-12-20 14:37:31", "license": "3", "title": "20091220-IMG_7916", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4242373281_b79c151520_o.jpg", "secret": "956b1b6c0d", "media": "photo", "latitude": "0", "id": "4242373281", "tags": ""}, {"datetaken": "2009-12-20 14:37:34", "license": "3", "title": "20091220-IMG_7917", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4242374007_b0d99c50a3_o.jpg", "secret": "f76fde2f62", "media": "photo", "latitude": "0", "id": "4242374007", "tags": ""}, {"datetaken": "2009-12-20 14:38:41", "license": "3", "title": "20091220-IMG_7922", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2732/4242374863_1148857756_o.jpg", "secret": "f096c1f4b4", "media": "photo", "latitude": "0", "id": "4242374863", "tags": ""}, {"datetaken": "2009-12-20 14:39:15", "license": "3", "title": "20091220-IMG_7925", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2654/4242376189_879e57f7cd_o.jpg", "secret": "153ee57d29", "media": "photo", "latitude": "0", "id": "4242376189", "tags": ""}, {"datetaken": "2009-12-20 14:59:15", "license": "3", "title": "20091220-IMG_7929", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2734/4243165408_5005edd335_o.jpg", "secret": "1f0db802ee", "media": "photo", "latitude": "0", "id": "4243165408", "tags": ""}, {"datetaken": "2009-12-20 14:59:52", "license": "3", "title": "20091220-IMG_7934", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4243166566_1a0b6070d4_o.jpg", "secret": "2b4695d685", "media": "photo", "latitude": "0", "id": "4243166566", "tags": ""}, {"datetaken": "2009-12-20 14:59:53", "license": "3", "title": "20091220-IMG_7935", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4242395469_3b196f6727_o.jpg", "secret": "e0656b941f", "media": "photo", "latitude": "0", "id": "4242395469", "tags": ""}, {"datetaken": "2009-12-20 14:59:56", "license": "3", "title": "20091220-IMG_7936", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2507/4242396635_e8932d580b_o.jpg", "secret": "08217bafc4", "media": "photo", "latitude": "0", "id": "4242396635", "tags": ""}, {"datetaken": "2009-12-20 15:08:38", "license": "3", "title": "20091220-IMG_7937", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2703/4242397753_3100a6b522_o.jpg", "secret": "986f81e4d2", "media": "photo", "latitude": "0", "id": "4242397753", "tags": "elephant cake purple polkadots birthdaycake fondant allisonnichols dortonis"}, {"datetaken": "2009-12-20 15:08:54", "license": "3", "title": "20091220-IMG_7940", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4243171406_7e58a7c46e_o.jpg", "secret": "3cebcf1b99", "media": "photo", "latitude": "0", "id": "4243171406", "tags": "elephant cake purple birthdayparty polkadots birthdaycake allisonnichols dortonis"}, {"datetaken": "2009-12-20 15:11:12", "license": "3", "title": "20091220-IMG_7941", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2640/4242399861_9745a28933_o.jpg", "secret": "01c4aef67c", "media": "photo", "latitude": "0", "id": "4242399861", "tags": ""}, {"datetaken": "2009-12-20 15:14:39", "license": "3", "title": "20091220-IMG_7945", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4243173584_fae2f67b34_o.jpg", "secret": "b720cc3e38", "media": "photo", "latitude": "0", "id": "4243173584", "tags": ""}, {"datetaken": "2009-12-20 15:15:48", "license": "3", "title": "20091220-IMG_9902", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4243269812_053904d7ef_o.jpg", "secret": "863e8d73c0", "media": "photo", "latitude": "0", "id": "4243269812", "tags": "photobooth"}, {"datetaken": "2009-12-20 15:16:35", "license": "3", "title": "20091220-IMG_9905", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4243291656_7a0c01d851_o.jpg", "secret": "5d7350eb14", "media": "photo", "latitude": "0", "id": "4243291656", "tags": ""}, {"datetaken": "2009-12-20 15:33:43", "license": "3", "title": "20091220-IMG_7948", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2770/4243174696_ee986486f0_o.jpg", "secret": "4948a0d42f", "media": "photo", "latitude": "0", "id": "4243174696", "tags": ""}, {"datetaken": "2009-12-20 15:33:49", "license": "3", "title": "20091220-IMG_7950", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2758/4243175374_daa3cd5594_o.jpg", "secret": "a6aa6f73bd", "media": "photo", "latitude": "0", "id": "4243175374", "tags": ""}, {"datetaken": "2009-12-20 15:34:14", "license": "3", "title": "20091220-IMG_7952", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2729/4243176722_76f378e1d4_o.jpg", "secret": "8566ef0522", "media": "photo", "latitude": "0", "id": "4243176722", "tags": ""}, {"datetaken": "2009-12-20 15:36:13", "license": "3", "title": "20091220-IMG_7957", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4243177328_8a07601d0b_o.jpg", "secret": "4cddf8725b", "media": "photo", "latitude": "0", "id": "4243177328", "tags": ""}, {"datetaken": "2009-12-20 15:36:23", "license": "3", "title": "20091220-IMG_7958", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4242405055_6f4c1c564d_o.jpg", "secret": "86b65882ef", "media": "photo", "latitude": "0", "id": "4242405055", "tags": ""}, {"datetaken": "2009-12-20 15:59:27", "license": "3", "title": "20091220-IMG_7960", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4242405601_bb82910b7c_o.jpg", "secret": "0e0ff289ea", "media": "photo", "latitude": "0", "id": "4242405601", "tags": ""}, {"datetaken": "2009-12-20 16:53:08", "license": "3", "title": "20091220-IMG_7965", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2709/4243179716_49f14a5eda_o.jpg", "secret": "f6fccc652a", "media": "photo", "latitude": "0", "id": "4243179716", "tags": ""}, {"datetaken": "2009-12-20 16:53:32", "license": "3", "title": "20091220-IMG_7966", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2658/4243181222_9ca940f526_o.jpg", "secret": "df00d707c8", "media": "photo", "latitude": "0", "id": "4243181222", "tags": ""}, {"datetaken": "2009-12-20 16:54:52", "license": "3", "title": "20091220-IMG_7970", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4242410301_30519c2bf5_o.jpg", "secret": "65b495198e", "media": "photo", "latitude": "0", "id": "4242410301", "tags": ""}, {"datetaken": "2009-12-20 16:57:21", "license": "3", "title": "20091220-IMG_7974", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4243189022_7e4ce11eca_o.jpg", "secret": "bccb393881", "media": "photo", "latitude": "0", "id": "4243189022", "tags": ""}, {"datetaken": "2009-12-20 17:00:10", "license": "3", "title": "20091220-IMG_7976", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2689/4242417771_ae9d2f715a_o.jpg", "secret": "60f3bf6f08", "media": "photo", "latitude": "0", "id": "4242417771", "tags": ""}, {"datetaken": "2009-12-20 17:00:54", "license": "3", "title": "20091220-IMG_7978", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/4242419239_134bee4749_o.jpg", "secret": "49eb976b62", "media": "photo", "latitude": "0", "id": "4242419239", "tags": ""}, {"datetaken": "2009-12-20 17:03:56", "license": "3", "title": "20091220-IMG_7982", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4243194642_3e5dd82782_o.jpg", "secret": "1349d6b867", "media": "photo", "latitude": "0", "id": "4243194642", "tags": ""}, {"datetaken": "2009-12-20 17:05:54", "license": "3", "title": "20091220-IMG_7984", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4243195692_a4ffe6af42_o.jpg", "secret": "ee7bd47dde", "media": "photo", "latitude": "0", "id": "4243195692", "tags": ""}, {"datetaken": "2009-12-20 17:05:59", "license": "3", "title": "20091220-IMG_7987", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4243196862_efab097561_o.jpg", "secret": "27c0e02f57", "media": "photo", "latitude": "0", "id": "4243196862", "tags": ""}, {"datetaken": "2009-12-20 17:26:50", "license": "3", "title": "20091220-IMG_7990", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2680/4242425797_3229b2b0e3_o.jpg", "secret": "89f3257fd1", "media": "photo", "latitude": "0", "id": "4242425797", "tags": ""}, {"datetaken": "2009-12-20 17:29:05", "license": "3", "title": "20091220-IMG_7994", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4243199668_f3ef49827e_o.jpg", "secret": "b675e8b5bc", "media": "photo", "latitude": "0", "id": "4243199668", "tags": ""}, {"datetaken": "2009-12-20 17:29:06", "license": "3", "title": "20091220-IMG_7995", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4242428561_daece72d4a_o.jpg", "secret": "290dbf3d1c", "media": "photo", "latitude": "0", "id": "4242428561", "tags": ""}, {"datetaken": "2009-12-20 17:29:50", "license": "3", "title": "20091220-IMG_7996", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4242430017_00af7e030e_o.jpg", "secret": "a0a3528422", "media": "photo", "latitude": "0", "id": "4242430017", "tags": ""}, {"datetaken": "2009-12-20 17:55:32", "license": "3", "title": "20091220-IMG_8000", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2659/4243203756_47403c5def_o.jpg", "secret": "93bb366169", "media": "photo", "latitude": "0", "id": "4243203756", "tags": ""}, {"datetaken": "2009-12-20 18:18:33", "license": "3", "title": "20091220-IMG_8001", "text": "", "album_id": "72157623008747073", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4243164936_da33823fd3_o.jpg", "secret": "3fa8876b31", "media": "photo", "latitude": "0", "id": "4243164936", "tags": ""}, {"datetaken": "2010-01-10 15:14:59", "license": "3", "title": "bling king", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4265627659_9c72cceb31_o.jpg", "secret": "1866b65a98", "media": "photo", "latitude": "0", "id": "4265627659", "tags": ""}, {"datetaken": "2010-01-10 15:15:15", "license": "3", "title": "nascar", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2780/4265629375_f647bb5c99_o.jpg", "secret": "f4d0c09aca", "media": "photo", "latitude": "0", "id": "4265629375", "tags": ""}, {"datetaken": "2010-01-10 15:15:26", "license": "3", "title": "whac-a-mole", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2511/4266376322_09e78960d8_o.jpg", "secret": "ddf448ccaa", "media": "photo", "latitude": "0", "id": "4266376322", "tags": ""}, {"datetaken": "2010-01-10 15:16:52", "license": "3", "title": "win every time", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4265632213_8d13675064_o.jpg", "secret": "71d4cb26a9", "media": "photo", "latitude": "0", "id": "4265632213", "tags": ""}, {"datetaken": "2010-01-10 15:17:12", "license": "3", "title": "speed demon", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/4266380092_c034013134_o.jpg", "secret": "8776db19f7", "media": "photo", "latitude": "0", "id": "4266380092", "tags": ""}, {"datetaken": "2010-01-10 15:20:35", "license": "3", "title": "the big bass wheel.", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4265636309_6b89c59ae4_o.jpg", "secret": "1097c997f0", "media": "photo", "latitude": "0", "id": "4265636309", "tags": ""}, {"datetaken": "2010-01-10 15:44:38", "license": "3", "title": "skee-ball!", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2725/4265639377_8b67694253_o.jpg", "secret": "da7485ffc1", "media": "photo", "latitude": "0", "id": "4265639377", "tags": ""}, {"datetaken": "2010-01-10 15:44:52", "license": "3", "title": "vilkas makes a go of it.", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4266386322_f3330891a2_o.jpg", "secret": "d2756ecd01", "media": "photo", "latitude": "0", "id": "4266386322", "tags": ""}, {"datetaken": "2010-01-10 15:45:04", "license": "3", "title": "", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4265642331_092de0c8de_o.jpg", "secret": "9268ef7622", "media": "photo", "latitude": "0", "id": "4265642331", "tags": ""}, {"datetaken": "2010-01-10 15:48:26", "license": "3", "title": "spin-n-win!", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4265643455_dfc2e5ec88_o.jpg", "secret": "e125d03297", "media": "photo", "latitude": "0", "id": "4265643455", "tags": "bestof arcade"}, {"datetaken": "2010-01-10 16:00:41", "license": "3", "title": "", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4266390586_c722a16318_o.jpg", "secret": "b5c8f9f5f8", "media": "photo", "latitude": "0", "id": "4266390586", "tags": ""}, {"datetaken": "2010-01-10 16:00:47", "license": "3", "title": "", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2234/4266392066_01a0876414_o.jpg", "secret": "a8c39d1d9e", "media": "photo", "latitude": "0", "id": "4266392066", "tags": ""}, {"datetaken": "2010-01-10 16:08:54", "license": "3", "title": "birthday skee-ball skillz", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4265649073_ab7d26ea6b_o.jpg", "secret": "bc6635fb56", "media": "photo", "latitude": "0", "id": "4265649073", "tags": "skeeball"}, {"datetaken": "2010-01-10 16:09:08", "license": "3", "title": "", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2735/4265650353_9d70ecd03a_o.jpg", "secret": "0468377660", "media": "photo", "latitude": "0", "id": "4265650353", "tags": ""}, {"datetaken": "2010-01-10 16:10:05", "license": "3", "title": "", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4266397384_2058580458_o.jpg", "secret": "c2fd62445e", "media": "photo", "latitude": "0", "id": "4266397384", "tags": ""}, {"datetaken": "2010-01-10 16:10:12", "license": "3", "title": "skee-ball freaks", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4266398708_42e7ae4d8e_o.jpg", "secret": "177bb88672", "media": "photo", "latitude": "0", "id": "4266398708", "tags": ""}, {"datetaken": "2010-01-10 16:10:23", "license": "3", "title": "", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4265654373_36b7de8d24_o.jpg", "secret": "640159b1dd", "media": "photo", "latitude": "0", "id": "4265654373", "tags": ""}, {"datetaken": "2010-01-10 16:10:39", "license": "3", "title": "", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4265655763_58d1f080dd_o.jpg", "secret": "216e025431", "media": "photo", "latitude": "0", "id": "4265655763", "tags": ""}, {"datetaken": "2010-01-10 16:10:46", "license": "3", "title": "ohhhh, better luck next time.", "text": "", "album_id": "72157623188540742", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4266403178_8725d00800_o.jpg", "secret": "b9bc6d8364", "media": "photo", "latitude": "0", "id": "4266403178", "tags": ""}, {"datetaken": "2010-01-02 21:08:52", "license": "4", "title": "DSC_0070", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4272755765_a35005b735_o.jpg", "secret": "cb95c20a20", "media": "photo", "latitude": "0", "id": "4272755765", "tags": "birthday party filipina philipina"}, {"datetaken": "2010-01-02 21:09:22", "license": "4", "title": "DSC_0074", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4273500724_2cf2428e4a_o.jpg", "secret": "43dd972d80", "media": "photo", "latitude": "0", "id": "4273500724", "tags": "birthday party filipina philipina"}, {"datetaken": "2010-01-02 21:09:50", "license": "4", "title": "DSC_0075", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4272755829_b25595b16d_o.jpg", "secret": "7eccf72f91", "media": "photo", "latitude": "0", "id": "4272755829", "tags": "birthday party filipina philipina"}, {"datetaken": "2010-01-02 21:09:51", "license": "4", "title": "DSC_0076", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4272755851_a09d00d25d_o.jpg", "secret": "d8b700710a", "media": "photo", "latitude": "0", "id": "4272755851", "tags": "birthday party filipina philipina"}, {"datetaken": "2010-01-02 21:10:15", "license": "4", "title": "DSC_0077", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2741/4273500828_ef64353de0_o.jpg", "secret": "ab4bbfba93", "media": "photo", "latitude": "0", "id": "4273500828", "tags": "birthday party filipina philipina"}, {"datetaken": "2010-01-02 21:11:49", "license": "4", "title": "DSC_0078", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4272755897_5dca0abbb3_o.jpg", "secret": "f6d70f6d26", "media": "photo", "latitude": "0", "id": "4272755897", "tags": "birthday party filipina philipina"}, {"datetaken": "2010-01-02 21:11:50", "license": "4", "title": "DSC_0079", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2701/4273500894_af8a6d06d9_o.jpg", "secret": "4c1ca8c401", "media": "photo", "latitude": "0", "id": "4273500894", "tags": "birthday party filipina philipina"}, {"datetaken": "2010-01-02 21:11:54", "license": "4", "title": "DSC_0080", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4273500916_02da324b6a_o.jpg", "secret": "c87b5e7b2e", "media": "photo", "latitude": "0", "id": "4273500916", "tags": "birthday party filipina philipina"}, {"datetaken": "2010-01-02 21:12:18", "license": "4", "title": "DSC_0081", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4273500950_b3f5e12571_o.jpg", "secret": "134b8e3df7", "media": "photo", "latitude": "0", "id": "4273500950", "tags": "birthday party filipina philipina"}, {"datetaken": "2010-01-02 21:12:19", "license": "4", "title": "DSC_0082", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2792/4272756009_b4fa5bca11_o.jpg", "secret": "f1f475eee2", "media": "photo", "latitude": "0", "id": "4272756009", "tags": "birthday party filipina philipina"}, {"datetaken": "2010-01-02 21:12:26", "license": "4", "title": "DSC_0084", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4272756125_ccb4db662f_o.jpg", "secret": "c819d2faab", "media": "photo", "latitude": "0", "id": "4272756125", "tags": "birthday party filipina philipina"}, {"datetaken": "2010-01-02 21:12:26", "license": "4", "title": "DSC_0083", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4272756077_ffc8188e13_o.jpg", "secret": "9b69468c23", "media": "photo", "latitude": "0", "id": "4272756077", "tags": "birthday party filipina philipina"}, {"datetaken": "2010-01-02 21:12:51", "license": "4", "title": "DSC_0085", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2677/4272756159_0ea262beb1_o.jpg", "secret": "3efc609919", "media": "photo", "latitude": "0", "id": "4272756159", "tags": "birthday party filipina philipina"}, {"datetaken": "2010-01-02 21:12:53", "license": "4", "title": "DSC_0086", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2444/4273501190_4122288369_o.jpg", "secret": "388215b396", "media": "photo", "latitude": "0", "id": "4273501190", "tags": "birthday party filipina philipina"}, {"datetaken": "2010-01-02 21:12:55", "license": "4", "title": "DSC_0087", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2751/4272756241_b9a68c50e8_o.jpg", "secret": "80a94f1979", "media": "photo", "latitude": "0", "id": "4272756241", "tags": "birthday party filipina philipina"}, {"datetaken": "2010-01-02 21:12:57", "license": "4", "title": "DSC_0088", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4273501264_6b26a38114_o.jpg", "secret": "9fcd7e5bdd", "media": "photo", "latitude": "0", "id": "4273501264", "tags": "birthday party filipina philipina"}, {"datetaken": "2010-01-02 21:29:30", "license": "4", "title": "DSC_0089", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4272756283_86e9bbc3de_o.jpg", "secret": "d05d29c290", "media": "photo", "latitude": "0", "id": "4272756283", "tags": "birthday party filipina philipina"}, {"datetaken": "2010-01-02 21:29:31", "license": "4", "title": "DSC_0090", "text": "", "album_id": "72157623094607697", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4273501306_8f4c758672_o.jpg", "secret": "e6e2f4f347", "media": "photo", "latitude": "0", "id": "4273501306", "tags": "birthday party filipina philipina"}, {"datetaken": "2007-01-13 22:50:49", "license": "1", "title": "Brittonie, me, Ty", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/358739312_4fe19fe0f5_o.jpg", "secret": "4fe19fe0f5", "media": "photo", "latitude": "0", "id": "358739312", "tags": "birthday party brittonie"}, {"datetaken": "2007-01-13 22:51:12", "license": "1", "title": "IMG_1294.JPG", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/358740990_ee7d9d3322_o.jpg", "secret": "ee7d9d3322", "media": "photo", "latitude": "0", "id": "358740990", "tags": "birthday party favorite cigarette smoke smoking blonde"}, {"datetaken": "2007-01-13 22:51:24", "license": "1", "title": "Carrie\u2019s cleavage", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/358742382_f156c2ce20_o.jpg", "secret": "f156c2ce20", "media": "photo", "latitude": "0", "id": "358742382", "tags": "birthday party favorite cleavage"}, {"datetaken": "2007-01-13 22:52:43", "license": "1", "title": "IMG_1297.JPG", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/358743854_3970d04e9c_o.jpg", "secret": "3970d04e9c", "media": "photo", "latitude": "0", "id": "358743854", "tags": "birthday party"}, {"datetaken": "2007-01-13 22:52:54", "license": "1", "title": "IMG_1299.JPG", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/358745164_5edc16c9fc_o.jpg", "secret": "5edc16c9fc", "media": "photo", "latitude": "0", "id": "358745164", "tags": "birthday party"}, {"datetaken": "2007-01-13 22:52:59", "license": "1", "title": "IMG_1300.JPG", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/358746421_6f7d753715_o.jpg", "secret": "6f7d753715", "media": "photo", "latitude": "0", "id": "358746421", "tags": "birthday party"}, {"datetaken": "2007-01-13 22:53:10", "license": "1", "title": "Ernest", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/358747594_cd13a693d1_o.jpg", "secret": "cd13a693d1", "media": "photo", "latitude": "0", "id": "358747594", "tags": "birthday party guitar ernest"}, {"datetaken": "2007-01-14 00:40:55", "license": "1", "title": "IMG_1302.JPG", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/358748863_423191cf97_o.jpg", "secret": "423191cf97", "media": "photo", "latitude": "0", "id": "358748863", "tags": "birthday party"}, {"datetaken": "2007-01-14 00:41:06", "license": "1", "title": "IMG_1303.JPG", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/358749084_4ea679953e_o.jpg", "secret": "4ea679953e", "media": "photo", "latitude": "0", "id": "358749084", "tags": "birthday party"}, {"datetaken": "2007-01-14 00:41:39", "license": "1", "title": "IMG_1305.JPG", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/358749863_5bf97c8268_o.jpg", "secret": "5bf97c8268", "media": "photo", "latitude": "0", "id": "358749863", "tags": "birthday party ty carrie natasha"}, {"datetaken": "2007-01-14 00:42:47", "license": "1", "title": "IMG_1307.JPG", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/358750399_bd0e7caf8e_o.jpg", "secret": "bd0e7caf8e", "media": "photo", "latitude": "0", "id": "358750399", "tags": "birthday party"}, {"datetaken": "2007-01-14 00:43:31", "license": "1", "title": "Jason\u2019s cool like that", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/358750674_d0ad3944fd_o.jpg", "secret": "d0ad3944fd", "media": "photo", "latitude": "0", "id": "358750674", "tags": "birthday party"}, {"datetaken": "2007-01-14 00:44:16", "license": "1", "title": "IMG_1312.JPG", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/358752074_e4334efe95_o.jpg", "secret": "e4334efe95", "media": "photo", "latitude": "0", "id": "358752074", "tags": "birthday party"}, {"datetaken": "2007-01-14 00:44:20", "license": "1", "title": "IMG_1313.JPG", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/358753381_dd6722a8fd_o.jpg", "secret": "dd6722a8fd", "media": "photo", "latitude": "0", "id": "358753381", "tags": "birthday party"}, {"datetaken": "2007-01-14 00:44:29", "license": "1", "title": "IMG_1314.JPG", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/358754117_130cc13641_o.jpg", "secret": "130cc13641", "media": "photo", "latitude": "0", "id": "358754117", "tags": "birthday party"}, {"datetaken": "2007-01-14 00:44:37", "license": "1", "title": "IMG_1316.JPG", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/358755502_2f3cb1f579_o.jpg", "secret": "2f3cb1f579", "media": "photo", "latitude": "0", "id": "358755502", "tags": "birthday party"}, {"datetaken": "2007-01-14 00:45:12", "license": "1", "title": "IMG_1317.JPG", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/358756734_4393dccf72_o.jpg", "secret": "4393dccf72", "media": "photo", "latitude": "0", "id": "358756734", "tags": "birthday party"}, {"datetaken": "2007-01-14 01:00:00", "license": "1", "title": "No flash", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/358757623_5bf8dde91d_o.jpg", "secret": "5bf8dde91d", "media": "photo", "latitude": "0", "id": "358757623", "tags": "birthday party toodark"}, {"datetaken": "2007-01-15 17:59:29", "license": "1", "title": "IMG_1315.JPG", "text": "", "album_id": "72157594481722609", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/358754791_4965b94657_o.jpg", "secret": "4965b94657", "media": "photo", "latitude": "0", "id": "358754791", "tags": "birthday party"}, {"datetaken": "2012-01-21 12:35:13", "license": "2", "title": "Rob Campbell, Melani Chong, Natural Skincare", "text": "", "album_id": "72157628969115453", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7165/6736972051_639f7c25ae_o.jpg", "secret": "0f3ca2c79d", "media": "photo", "latitude": "0", "id": "6736972051", "tags": "naturalskincare melaniching mishaforkethemagpietorontorockandrollreunionspookyrubenbirthdayparty"}, {"datetaken": "2012-01-21 12:35:16", "license": "2", "title": "Misha Forke before playing at Magpie 20Jan12", "text": "", "album_id": "72157628969115453", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7009/6736972343_1b0d34b300_o.jpg", "secret": "9f684c3aea", "media": "photo", "latitude": "0", "id": "6736972343", "tags": "toronto reunion birthdayparty rockandroll themagpie spookyruben mishaforke"}, {"datetaken": "2012-01-21 12:35:18", "license": "2", "title": "Spooky Ruben and Casey Camobell", "text": "", "album_id": "72157628969115453", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7147/6736972503_0d6219a071_o.jpg", "secret": "3cda5afb3e", "media": "photo", "latitude": "0", "id": "6736972503", "tags": "toronto reunion birthdayparty rockandroll themagpie spookyruben mishaforke"}, {"datetaken": "2012-01-21 12:35:22", "license": "2", "title": "Richard, Peter, Sean Turell, and Chris Burns", "text": "", "album_id": "72157628969115453", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7161/6736972843_02056aeecf_o.jpg", "secret": "2d36ce878f", "media": "photo", "latitude": "0", "id": "6736972843", "tags": "toronto reunion birthdayparty rockandroll themagpie spookyruben mishaforke"}, {"datetaken": "2012-01-21 12:35:25", "license": "2", "title": "Song List for Misha Forke, 20Jan12 at The Magpie", "text": "", "album_id": "72157628969115453", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7145/6736973093_122bb6eb70_o.jpg", "secret": "5c2564d0d5", "media": "photo", "latitude": "0", "id": "6736973093", "tags": "toronto reunion birthdayparty rockandroll themagpie spookyruben mishaforke"}, {"datetaken": "2012-01-21 12:35:28", "license": "2", "title": "Spooky and his girl", "text": "", "album_id": "72157628969115453", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7032/6736973373_eecc9353dc_o.jpg", "secret": "b51f9ece86", "media": "photo", "latitude": "0", "id": "6736973373", "tags": "toronto reunion birthdayparty rockandroll themagpie spookyruben mishaforke"}, {"datetaken": "2012-01-21 12:35:35", "license": "2", "title": "Ritchie the Red Lion", "text": "", "album_id": "72157628969115453", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7023/6736973933_6fc7a37461_o.jpg", "secret": "f90014a55c", "media": "photo", "latitude": "0", "id": "6736973933", "tags": "toronto reunion birthdayparty rockandroll themagpie spookyruben mishaforke"}, {"datetaken": "2012-01-21 12:35:38", "license": "2", "title": "Spooky Girl and Casey", "text": "", "album_id": "72157628969115453", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7020/6736974145_d9bf4256ab_o.jpg", "secret": "5967128913", "media": "photo", "latitude": "0", "id": "6736974145", "tags": "toronto reunion birthdayparty rockandroll themagpie spookyruben mishaforke"}, {"datetaken": "2012-01-21 12:35:41", "license": "2", "title": "Fun with Misha Forke", "text": "", "album_id": "72157628969115453", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7011/6736974439_5f7142d283_o.jpg", "secret": "793de0b653", "media": "photo", "latitude": "0", "id": "6736974439", "tags": "toronto reunion birthdayparty rockandroll themagpie spookyruben mishaforke"}, {"datetaken": "2012-01-21 12:35:44", "license": "2", "title": "IMG_2790", "text": "", "album_id": "72157628969115453", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7032/6736974739_45433716a2_o.jpg", "secret": "564541ff0d", "media": "photo", "latitude": "0", "id": "6736974739", "tags": "toronto reunion birthdayparty rockandroll themagpie spookyruben mishaforke"}, {"datetaken": "2012-01-21 12:35:48", "license": "2", "title": "Spooky Birthday", "text": "", "album_id": "72157628969115453", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7151/6736975019_5001428d80_o.jpg", "secret": "a41c981be7", "media": "photo", "latitude": "0", "id": "6736975019", "tags": "toronto reunion birthdayparty rockandroll themagpie spookyruben mishaforke"}, {"datetaken": "2012-01-21 12:35:50", "license": "2", "title": "Pat Cassin at Misha Forke 20Jan12", "text": "", "album_id": "72157628969115453", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7002/6736975239_7d1c28125c_o.jpg", "secret": "1c59604c9c", "media": "photo", "latitude": "0", "id": "6736975239", "tags": "toronto reunion birthdayparty rockandroll themagpie spookyruben mishaforke"}, {"datetaken": "2012-01-21 12:35:54", "license": "2", "title": "Brad Walsh at Misha Forke", "text": "", "album_id": "72157628969115453", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7147/6736975551_02ce263fa2_o.jpg", "secret": "b7e27917d9", "media": "photo", "latitude": "0", "id": "6736975551", "tags": "toronto reunion birthdayparty rockandroll themagpie spookyruben mishaforke"}, {"datetaken": "2012-01-21 12:35:57", "license": "2", "title": "Brad Walsh checks Song List", "text": "", "album_id": "72157628969115453", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7146/6736975853_24e3e06668_o.jpg", "secret": "06751d80cb", "media": "photo", "latitude": "0", "id": "6736975853", "tags": "toronto reunion birthdayparty rockandroll themagpie spookyruben mishaforke"}, {"datetaken": "2012-01-21 12:36:00", "license": "2", "title": "Misha Forke before singing 20Jan12", "text": "", "album_id": "72157628969115453", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7033/6736976089_37d5bd6f02_o.jpg", "secret": "33584bdcae", "media": "photo", "latitude": "0", "id": "6736976089", "tags": "toronto reunion birthdayparty rockandroll themagpie spookyruben mishaforke"}, {"datetaken": "2012-01-21 12:36:04", "license": "2", "title": "Brad Walsh and Mary Juric, 20Jan12 Misha Forke The Magpie", "text": "", "album_id": "72157628969115453", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7012/6736976355_546ce2fabf_o.jpg", "secret": "7d0b8fa874", "media": "photo", "latitude": "0", "id": "6736976355", "tags": "toronto reunion birthdayparty rockandroll themagpie spookyruben mishaforke"}, {"datetaken": "2012-01-21 12:36:07", "license": "2", "title": "Chris, Brad Misha Forke 20Jan12", "text": "", "album_id": "72157628969115453", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7158/6736976643_bf1e69eb06_o.jpg", "secret": "9edcb64956", "media": "photo", "latitude": "0", "id": "6736976643", "tags": "toronto reunion birthdayparty rockandroll themagpie spookyruben mishaforke"}, {"datetaken": "2012-01-07 18:46:10", "license": "3", "title": "DSCF2469.jpg", "text": "", "album_id": "72157628971956713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7171/6738255385_d7bbb5662d_o.jpg", "secret": "a001ab19d0", "media": "photo", "latitude": "0", "id": "6738255385", "tags": "philadelphia 40th birthdayparty lara philly 2012 estia spivak lararhame"}, {"datetaken": "2012-01-07 18:46:49", "license": "3", "title": "DSCF2470.jpg", "text": "", "album_id": "72157628971956713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7020/6738256281_75c674137e_o.jpg", "secret": "809690d8c8", "media": "photo", "latitude": "0", "id": "6738256281", "tags": "philadelphia 40th birthdayparty lara philly 2012 estia spivak lararhame"}, {"datetaken": "2012-01-07 19:03:01", "license": "3", "title": "DSCF2474.jpg", "text": "", "album_id": "72157628971956713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7141/6738257309_1d60d0afb2_o.jpg", "secret": "4d3269d459", "media": "photo", "latitude": "0", "id": "6738257309", "tags": "philadelphia 40th birthdayparty lara philly 2012 estia spivak lararhame"}, {"datetaken": "2012-01-07 19:03:14", "license": "3", "title": "DSCF2475.jpg", "text": "", "album_id": "72157628971956713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7162/6738258247_1d1edbf101_o.jpg", "secret": "3ce58fb83a", "media": "photo", "latitude": "0", "id": "6738258247", "tags": "philadelphia 40th birthdayparty lara philly 2012 estia spivak lararhame"}, {"datetaken": "2012-01-07 19:07:51", "license": "3", "title": "DSCF2479.jpg", "text": "", "album_id": "72157628971956713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7018/6738259181_432aee6b57_o.jpg", "secret": "f194c92955", "media": "photo", "latitude": "0", "id": "6738259181", "tags": "philadelphia 40th birthdayparty lara philly 2012 estia spivak lararhame"}, {"datetaken": "2012-01-07 19:18:52", "license": "3", "title": "DSCF2482.jpg", "text": "", "album_id": "72157628971956713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7174/6738260359_9593d30881_o.jpg", "secret": "05415e6ff6", "media": "photo", "latitude": "0", "id": "6738260359", "tags": "philadelphia 40th birthdayparty lara philly 2012 estia spivak lararhame"}, {"datetaken": "2012-01-07 19:19:19", "license": "3", "title": "DSCF2483.jpg", "text": "", "album_id": "72157628971956713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7034/6738261109_7e879918c2_o.jpg", "secret": "36297c8d86", "media": "photo", "latitude": "0", "id": "6738261109", "tags": "philadelphia 40th birthdayparty lara philly 2012 estia spivak lararhame"}, {"datetaken": "2012-01-07 19:45:53", "license": "3", "title": "DSCF2484.jpg", "text": "", "album_id": "72157628971956713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7028/6738262327_49cb380a93_o.jpg", "secret": "8bf90ec4bc", "media": "photo", "latitude": "0", "id": "6738262327", "tags": "philadelphia 40th birthdayparty lara philly 2012 estia spivak lararhame"}, {"datetaken": "2012-01-07 19:48:47", "license": "3", "title": "DSCF2487.jpg", "text": "", "album_id": "72157628971956713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7143/6738263293_05b1bb1e01_o.jpg", "secret": "dcc816d702", "media": "photo", "latitude": "0", "id": "6738263293", "tags": "philadelphia 40th birthdayparty lara philly 2012 estia spivak lararhame"}, {"datetaken": "2012-01-07 19:53:22", "license": "3", "title": "DSCF2498.jpg", "text": "", "album_id": "72157628971956713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7020/6738264559_a61b7c297e_o.jpg", "secret": "349615a5a6", "media": "photo", "latitude": "0", "id": "6738264559", "tags": "philadelphia 40th birthdayparty lara philly 2012 estia spivak lararhame"}, {"datetaken": "2012-01-07 20:06:03", "license": "3", "title": "DSCF2499.jpg", "text": "", "album_id": "72157628971956713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7023/6738265373_8535d51c40_o.jpg", "secret": "6f65ff82f7", "media": "photo", "latitude": "0", "id": "6738265373", "tags": "philadelphia 40th birthdayparty lara philly 2012 estia spivak lararhame"}, {"datetaken": "2012-01-07 20:11:39", "license": "3", "title": "DSCF2504.jpg", "text": "", "album_id": "72157628971956713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7020/6738266295_b88fb5314d_o.jpg", "secret": "0a578e2396", "media": "photo", "latitude": "0", "id": "6738266295", "tags": "philadelphia 40th birthdayparty lara philly 2012 estia spivak lararhame"}, {"datetaken": "2012-01-07 21:51:23", "license": "3", "title": "DSCF2509.jpg", "text": "", "album_id": "72157628971956713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7015/6738267041_eb2e28db69_o.jpg", "secret": "3f98329051", "media": "photo", "latitude": "0", "id": "6738267041", "tags": "philadelphia 40th birthdayparty lara philly 2012 estia spivak lararhame"}, {"datetaken": "2012-01-07 21:53:02", "license": "3", "title": "DSCF2514.jpg", "text": "", "album_id": "72157628971956713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7170/6738267835_1f671d972a_o.jpg", "secret": "e8501c6295", "media": "photo", "latitude": "0", "id": "6738267835", "tags": "philadelphia 40th birthdayparty lara philly 2012 estia spivak lararhame"}, {"datetaken": "2012-01-07 21:53:16", "license": "3", "title": "DSCF2518.jpg", "text": "", "album_id": "72157628971956713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7015/6738269063_87dc2a1890_o.jpg", "secret": "328709d811", "media": "photo", "latitude": "0", "id": "6738269063", "tags": "philadelphia 40th birthdayparty lara philly 2012 estia spivak lararhame"}, {"datetaken": "2012-01-07 21:53:26", "license": "3", "title": "DSCF2520.jpg", "text": "", "album_id": "72157628971956713", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7169/6738269843_b65ec6ac02_o.jpg", "secret": "53bbb11529", "media": "photo", "latitude": "0", "id": "6738269843", "tags": "philadelphia 40th birthdayparty lara philly 2012 estia spivak lararhame"}, {"datetaken": "2011-12-29 08:37:52", "license": "1", "title": "turbines at sunrise", "text": "", "album_id": "72157629086801019", "longitude": "-88.533353", "url_o": "https://farm8.staticflickr.com/7014/6784155347_fcbf1b39ff_o.jpg", "secret": "d507219707", "media": "photo", "latitude": "40.990436", "id": "6784155347", "tags": "clouds train sunrise illinois unitedstates il amtrak windturbine odell renewableenergy cleanenergy lincolnservice"}, {"datetaken": "2011-12-29 08:38:07", "license": "1", "title": "turbines at sunrise", "text": "", "album_id": "72157629086801019", "longitude": "-88.533353", "url_o": "https://farm8.staticflickr.com/7159/6784157447_7a995004af_o.jpg", "secret": "6ae401511a", "media": "photo", "latitude": "40.990436", "id": "6784157447", "tags": "clouds train sunrise illinois unitedstates il amtrak windturbine odell renewableenergy cleanenergy lincolnservice"}, {"datetaken": "2011-12-29 11:31:23", "license": "1", "title": "chemicals", "text": "", "album_id": "72157629086801019", "longitude": "-90.087020", "url_o": "https://farm8.staticflickr.com/7151/6784159791_6f13ab2b42_o.jpg", "secret": "2c49c88ba4", "media": "photo", "latitude": "38.808530", "id": "6784159791", "tags": "train illinois industrial unitedstates il amtrak chemicals refinery hartford lincolnservice"}, {"datetaken": "2011-12-29 11:31:57", "license": "1", "title": "storage", "text": "", "album_id": "72157629086801019", "longitude": "-90.087020", "url_o": "https://farm8.staticflickr.com/7148/6784162887_37b70a0a77_o.jpg", "secret": "a811b58fa1", "media": "photo", "latitude": "38.808530", "id": "6784162887", "tags": "train illinois industrial unitedstates il amtrak hartford tanks lincolnservice"}, {"datetaken": "2011-12-29 11:53:39", "license": "1", "title": "factory", "text": "", "album_id": "72157629086801019", "longitude": "-90.159051", "url_o": "https://farm8.staticflickr.com/7003/6784164689_3cd0cac10c_o.jpg", "secret": "7d446e660d", "media": "photo", "latitude": "38.696361", "id": "6784164689", "tags": "train illinois industrial unitedstates il amtrak granitecity lincolnservice"}, {"datetaken": "2011-12-29 11:54:28", "license": "1", "title": "steel mill", "text": "", "album_id": "72157629086801019", "longitude": "-90.159051", "url_o": "https://farm8.staticflickr.com/7155/6784165991_4a5acfb207_o.jpg", "secret": "0e71f052bc", "media": "photo", "latitude": "38.693830", "id": "6784165991", "tags": "train illinois industrial unitedstates il amtrak steelmill granitecity lincolnservice"}, {"datetaken": "2011-12-29 11:58:58", "license": "1", "title": "Klein Avenue, Madison, Illinois", "text": "", "album_id": "72157629086801019", "longitude": "-90.170251", "url_o": "https://farm8.staticflickr.com/7167/6784168605_f7da9828e1_o.jpg", "secret": "63bd6bb078", "media": "photo", "latitude": "38.676619", "id": "6784168605", "tags": "street houses train illinois unitedstates il amtrak madison lincolnservice"}, {"datetaken": "2011-12-29 11:59:32", "license": "1", "title": "heavy equipment train", "text": "", "album_id": "72157629086801019", "longitude": "-90.173439", "url_o": "https://farm8.staticflickr.com/7002/6784170447_1ee93183a1_o.jpg", "secret": "be208abbfc", "media": "photo", "latitude": "38.676661", "id": "6784170447", "tags": "venice train illinois unitedstates traintracks il amtrak lincolnservice"}, {"datetaken": "2011-12-29 12:00:39", "license": "1", "title": "riverfront roadway", "text": "", "album_id": "72157629086801019", "longitude": "-90.182900", "url_o": "https://farm8.staticflickr.com/7147/6784172613_ab870e8525_o.jpg", "secret": "523e664b88", "media": "photo", "latitude": "38.672161", "id": "6784172613", "tags": "road venice train illinois unitedstates il amtrak mississippiriver lincolnservice"}, {"datetaken": "2011-12-29 12:01:54", "license": "1", "title": "current diversion", "text": "", "album_id": "72157629086801019", "longitude": "-90.188251", "url_o": "https://farm8.staticflickr.com/7035/6784174647_cd65427bf5_o.jpg", "secret": "2f1b6e30d0", "media": "photo", "latitude": "38.674069", "id": "6784174647", "tags": "bridge train unitedstates stlouis mo amtrak missouri mississippiriver saintlouis lincolnservice"}, {"datetaken": "2011-12-29 12:02:26", "license": "1", "title": "riverfront train tracks", "text": "", "album_id": "72157629086801019", "longitude": "-90.191062", "url_o": "https://farm8.staticflickr.com/7157/6784176373_993088cc08_o.jpg", "secret": "a57e39bca0", "media": "photo", "latitude": "38.673438", "id": "6784176373", "tags": "train unitedstates traintracks stlouis tracks mo amtrak missouri mississippiriver saintlouis lincolnservice"}, {"datetaken": "2011-12-29 12:06:48", "license": "1", "title": "metals", "text": "", "album_id": "72157629086801019", "longitude": "-90.186289", "url_o": "https://farm8.staticflickr.com/7156/6784178311_f50c89d559_o.jpg", "secret": "0fc719e12c", "media": "photo", "latitude": "38.652288", "id": "6784178311", "tags": "train iron industrial unitedstates stlouis mo amtrak missouri saintlouis steelmill lincolnservice"}, {"datetaken": "2011-12-29 12:06:57", "license": "1", "title": "Grossman", "text": "", "album_id": "72157629086801019", "longitude": "-90.186289", "url_o": "https://farm8.staticflickr.com/7170/6784180205_4c499426df_o.jpg", "secret": "2e0516e321", "media": "photo", "latitude": "38.652288", "id": "6784180205", "tags": "train iron industrial unitedstates stlouis mo amtrak missouri saintlouis steelmill lincolnservice"}, {"datetaken": "2011-12-29 12:07:21", "license": "1", "title": "former interurban tracks", "text": "", "album_id": "72157629086801019", "longitude": "-90.185989", "url_o": "https://farm8.staticflickr.com/7147/6784181663_849a905f25_o.jpg", "secret": "342e270679", "media": "photo", "latitude": "38.649300", "id": "6784181663", "tags": "trestle train unitedstates traintracks stlouis mo amtrak missouri saintlouis catenary lincolnservice"}, {"datetaken": "2011-12-29 12:08:23", "license": "1", "title": "new I-70 bridge", "text": "", "album_id": "72157629086801019", "longitude": "-90.183889", "url_o": "https://farm8.staticflickr.com/7013/6784183769_df6379aa76_o.jpg", "secret": "fe90af8d7b", "media": "photo", "latitude": "38.644100", "id": "6784183769", "tags": "bridge train construction unitedstates stlouis mo amtrak missouri mississippiriver interstate saintlouis i70 lincolnservice"}, {"datetaken": "2011-12-29 12:09:16", "license": "1", "title": "Freight Depot", "text": "", "album_id": "72157629086801019", "longitude": "-90.182720", "url_o": "https://farm8.staticflickr.com/7001/6784185735_314769dc6e_o.jpg", "secret": "87f5c81227", "media": "photo", "latitude": "38.637200", "id": "6784185735", "tags": "abandoned train concrete unitedstates stlouis mo amtrak missouri vacant saintlouis freightdepot lincolnservice"}, {"datetaken": "2011-12-29 12:10:04", "license": "1", "title": "Union Electric Light & Power Co.", "text": "", "album_id": "72157629086801019", "longitude": "-90.182589", "url_o": "https://farm8.staticflickr.com/7159/6784187753_e4668f3898_o.jpg", "secret": "7446dc554d", "media": "photo", "latitude": "38.635830", "id": "6784187753", "tags": "train unitedstates stlouis mo amtrak missouri powerplant saintlouis lincolnservice"}, {"datetaken": "2011-12-29 12:10:35", "license": "1", "title": "Union Electric Light & Power Co.", "text": "", "album_id": "72157629086801019", "longitude": "-90.182462", "url_o": "https://farm8.staticflickr.com/7026/6784190311_3c41b115ef_o.jpg", "secret": "c3fe69d63c", "media": "photo", "latitude": "38.634519", "id": "6784190311", "tags": "train unitedstates stlouis mo amtrak missouri powerplant saintlouis lincolnservice"}, {"datetaken": "2011-12-29 12:12:17", "license": "1", "title": "Martin Luther King Bridge", "text": "", "album_id": "72157629086801019", "longitude": "-90.182431", "url_o": "https://farm8.staticflickr.com/7152/6784192409_286c50af40_o.jpg", "secret": "9c6ca9d67f", "media": "photo", "latitude": "38.629338", "id": "6784192409", "tags": "bridge train unitedstates stlouis mo amtrak missouri mississippiriver saintlouis eaststlouis lincolnservice"}, {"datetaken": "2011-12-29 12:12:49", "license": "1", "title": "Eads Bridge", "text": "", "album_id": "72157629086801019", "longitude": "-90.182431", "url_o": "https://farm8.staticflickr.com/7173/6784194273_e308fbffa9_o.jpg", "secret": "e915c23d6b", "media": "photo", "latitude": "38.629338", "id": "6784194273", "tags": "bridge train unitedstates stlouis mo amtrak missouri mississippiriver saintlouis eadsbridge eaststlouis lincolnservice"}, {"datetaken": "2011-12-30 22:45:46", "license": "1", "title": "Michael's birthday party", "text": "", "album_id": "72157629086801019", "longitude": "-90.200237", "url_o": "https://farm8.staticflickr.com/7016/6784195697_617fc455ba_o.jpg", "secret": "8c7c3a6ef8", "media": "photo", "latitude": "38.660569", "id": "6784195697", "tags": "birthday party unitedstates stlouis mo missouri hydepark"}, {"datetaken": "2011-12-30 22:48:38", "license": "1", "title": "Michael's birthday party", "text": "", "album_id": "72157629086801019", "longitude": "-90.200237", "url_o": "https://farm8.staticflickr.com/7027/6784197357_d5760bf2ac_o.jpg", "secret": "b0f7f18650", "media": "photo", "latitude": "38.660569", "id": "6784197357", "tags": "birthday party unitedstates stlouis mo missouri hydepark"}, {"datetaken": "2011-12-31 00:04:50", "license": "1", "title": "Michael's birthday party", "text": "", "album_id": "72157629086801019", "longitude": "-90.200237", "url_o": "https://farm8.staticflickr.com/7006/6784199087_379743f892_o.jpg", "secret": "ec4f5e5b29", "media": "photo", "latitude": "38.660569", "id": "6784199087", "tags": "birthday party unitedstates stlouis mo missouri hydepark"}, {"datetaken": "2004-09-21 08:10:18", "license": "4", "title": "sept2004 001", "text": "", "album_id": "531002", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/516068_730c53624f_o.jpg", "secret": "730c53624f", "media": "photo", "latitude": "0", "id": "516068", "tags": "zac birthday party pool orangecounty"}, {"datetaken": "2004-09-21 08:10:35", "license": "4", "title": "sept2004 002", "text": "", "album_id": "531002", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/516072_210666906c_o.jpg", "secret": "210666906c", "media": "photo", "latitude": "0", "id": "516072", "tags": "zac birthday party pool orangecounty"}, {"datetaken": "2004-09-21 08:10:52", "license": "4", "title": "sept2004 003", "text": "", "album_id": "531002", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/516078_752f824d42_o.jpg", "secret": "752f824d42", "media": "photo", "latitude": "0", "id": "516078", "tags": "zac birthday party pool orangecounty"}, {"datetaken": "2004-09-21 08:11:09", "license": "4", "title": "sept2004 004", "text": "", "album_id": "531002", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/516082_425d902364_o.jpg", "secret": "425d902364", "media": "photo", "latitude": "0", "id": "516082", "tags": "zac birthday party pool orangecounty"}, {"datetaken": "2004-09-21 08:11:25", "license": "4", "title": "sept2004 005", "text": "", "album_id": "531002", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/516085_22fec0dd3a_o.jpg", "secret": "22fec0dd3a", "media": "photo", "latitude": "0", "id": "516085", "tags": "zac birthday party pool orangecounty"}, {"datetaken": "2004-09-21 08:11:57", "license": "4", "title": "sept2004 007", "text": "", "album_id": "531002", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/516099_48447e76e8_o.jpg", "secret": "48447e76e8", "media": "photo", "latitude": "0", "id": "516099", "tags": "zac birthday party pool orangecounty"}, {"datetaken": "2004-09-21 08:12:15", "license": "4", "title": "sept2004 008", "text": "", "album_id": "531002", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/516105_4fe828e438_o.jpg", "secret": "4fe828e438", "media": "photo", "latitude": "0", "id": "516105", "tags": "zac birthday party pool orangecounty"}, {"datetaken": "2004-09-21 08:12:33", "license": "4", "title": "sept2004 009", "text": "", "album_id": "531002", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/516115_7b0e4e5528_o.jpg", "secret": "7b0e4e5528", "media": "photo", "latitude": "0", "id": "516115", "tags": "zac birthday party pool orangecounty"}, {"datetaken": "2004-09-21 08:12:58", "license": "4", "title": "sept2004 010", "text": "", "album_id": "531002", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/516124_691658ca6d_o.jpg", "secret": "691658ca6d", "media": "photo", "latitude": "0", "id": "516124", "tags": "zac birthday party pool orangecounty"}, {"datetaken": "2004-09-21 08:13:22", "license": "4", "title": "sept2004 011", "text": "", "album_id": "531002", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/516132_43b415e1d9_o.jpg", "secret": "43b415e1d9", "media": "photo", "latitude": "0", "id": "516132", "tags": "zac birthday party pool orangecounty"}, {"datetaken": "2004-09-21 08:13:48", "license": "4", "title": "sept2004 012", "text": "", "album_id": "531002", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/516140_3f735b122a_o.jpg", "secret": "3f735b122a", "media": "photo", "latitude": "0", "id": "516140", "tags": "zac birthday party pool orangecounty"}, {"datetaken": "2004-09-21 08:14:06", "license": "4", "title": "sept2004 013", "text": "", "album_id": "531002", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/516153_0c83f3d277_o.jpg", "secret": "0c83f3d277", "media": "photo", "latitude": "0", "id": "516153", "tags": "zac birthday party pool orangecounty"}, {"datetaken": "2004-09-21 08:14:23", "license": "4", "title": "sept2004 014", "text": "", "album_id": "531002", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/516155_aba3d12b89_o.jpg", "secret": "aba3d12b89", "media": "photo", "latitude": "0", "id": "516155", "tags": "zac birthday party pool orangecounty"}, {"datetaken": "2004-09-21 08:14:40", "license": "4", "title": "sept2004 015", "text": "", "album_id": "531002", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/516158_5f33f51f4c_o.jpg", "secret": "5f33f51f4c", "media": "photo", "latitude": "0", "id": "516158", "tags": "zac birthday party pool orangecounty"}, {"datetaken": "2004-09-21 08:14:54", "license": "4", "title": "sept2004 016", "text": "", "album_id": "531002", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/516160_dc6db4097f_o.jpg", "secret": "dc6db4097f", "media": "photo", "latitude": "0", "id": "516160", "tags": "zac birthday party pool orangecounty"}, {"datetaken": "2007-08-11 15:58:04", "license": "4", "title": "Allison and Joe", "text": "", "album_id": "72157601372125902", "longitude": "-122.327688", "url_o": "https://farm2.staticflickr.com/1118/1085994080_0c430ece3a_o.jpg", "secret": "2e2e0cd9ea", "media": "photo", "latitude": "47.690395", "id": "1085994080", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:04", "license": "4", "title": "Allison and Joe", "text": "", "album_id": "72157601372125902", "longitude": "-122.327688", "url_o": "https://farm2.staticflickr.com/1006/1085994182_53b8ce81c1_o.jpg", "secret": "582fee2de6", "media": "photo", "latitude": "47.690395", "id": "1085994182", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:05", "license": "4", "title": "Allison and Sandy", "text": "", "album_id": "72157601372125902", "longitude": "-122.327688", "url_o": "https://farm2.staticflickr.com/1392/1085994332_7d2f620eb7_o.jpg", "secret": "82e69517fe", "media": "photo", "latitude": "47.690395", "id": "1085994332", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:06", "license": "4", "title": "Allison and friends", "text": "", "album_id": "72157601372125902", "longitude": "-122.327688", "url_o": "https://farm2.staticflickr.com/1425/1085132995_edb4a94789_o.jpg", "secret": "a3ae265a1a", "media": "photo", "latitude": "47.690395", "id": "1085132995", "tags": "2003 allison"}, {"datetaken": "2007-08-11 15:58:07", "license": "4", "title": "Brendan's birthday", "text": "", "album_id": "72157601372125902", "longitude": "-122.384498", "url_o": "https://farm2.staticflickr.com/1100/1085994590_76ab112b1b_o.jpg", "secret": "95cd251f14", "media": "photo", "latitude": "47.293670", "id": "1085994590", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:08", "license": "4", "title": "Brendan", "text": "", "album_id": "72157601372125902", "longitude": "-122.384498", "url_o": "https://farm2.staticflickr.com/1318/1085994692_99b634ea95_o.jpg", "secret": "345c67518e", "media": "photo", "latitude": "47.293670", "id": "1085994692", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:09", "license": "4", "title": "Brendan", "text": "", "album_id": "72157601372125902", "longitude": "-122.384498", "url_o": "https://farm2.staticflickr.com/1185/1085994832_68174c2cee_o.jpg", "secret": "db6a8dfa91", "media": "photo", "latitude": "47.293670", "id": "1085994832", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:10", "license": "4", "title": "Brendan", "text": "", "album_id": "72157601372125902", "longitude": "-122.384498", "url_o": "https://farm2.staticflickr.com/1158/1085133551_8b61ed1440_o.jpg", "secret": "d6a39e08e9", "media": "photo", "latitude": "47.293670", "id": "1085133551", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:11", "license": "4", "title": "Brendan", "text": "", "album_id": "72157601372125902", "longitude": "-122.384498", "url_o": "https://farm2.staticflickr.com/1112/1085995102_8b6522f84e_o.jpg", "secret": "a62912e1d7", "media": "photo", "latitude": "47.293670", "id": "1085995102", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:12", "license": "4", "title": "Brendan", "text": "", "album_id": "72157601372125902", "longitude": "-122.384498", "url_o": "https://farm2.staticflickr.com/1348/1085995202_7ffed0714a_o.jpg", "secret": "c1004f7bb1", "media": "photo", "latitude": "47.293670", "id": "1085995202", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:13", "license": "4", "title": "Brendan", "text": "", "album_id": "72157601372125902", "longitude": "-122.384498", "url_o": "https://farm2.staticflickr.com/1170/1085133939_fddddbb0f0_o.jpg", "secret": "96d06e7178", "media": "photo", "latitude": "47.293670", "id": "1085133939", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:13", "license": "4", "title": "Wendy", "text": "", "album_id": "72157601372125902", "longitude": "-122.384498", "url_o": "https://farm2.staticflickr.com/1291/1085134097_f56ca80e6c_o.jpg", "secret": "ea09daea91", "media": "photo", "latitude": "47.293670", "id": "1085134097", "tags": "2003 wendy"}, {"datetaken": "2007-08-11 15:58:14", "license": "4", "title": "Allison, Brendan and Joe", "text": "", "album_id": "72157601372125902", "longitude": "-122.384498", "url_o": "https://farm2.staticflickr.com/1159/1085995544_264a693e65_o.jpg", "secret": "31846a2a5b", "media": "photo", "latitude": "47.293670", "id": "1085995544", "tags": "2003 allison"}, {"datetaken": "2007-08-11 15:58:15", "license": "4", "title": "Eric and Brendan", "text": "", "album_id": "72157601372125902", "longitude": "-122.384498", "url_o": "https://farm2.staticflickr.com/1214/1085995688_c24ca94b50_o.jpg", "secret": "2c42afe79c", "media": "photo", "latitude": "47.293670", "id": "1085995688", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:16", "license": "4", "title": "Brendan", "text": "", "album_id": "72157601372125902", "longitude": "-122.384498", "url_o": "https://farm2.staticflickr.com/1134/1085134473_4cf036bb80_o.jpg", "secret": "466be733c5", "media": "photo", "latitude": "47.293670", "id": "1085134473", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:17", "license": "4", "title": "Brendan's birthday party", "text": "", "album_id": "72157601372125902", "longitude": "-122.384498", "url_o": "https://farm2.staticflickr.com/1042/1085134605_44e05d41b1_o.jpg", "secret": "c030ed069b", "media": "photo", "latitude": "47.293670", "id": "1085134605", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:18", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372125902", "longitude": "-122.327688", "url_o": "https://farm2.staticflickr.com/1397/1085996148_b09d658d62_o.jpg", "secret": "d4a3c234de", "media": "photo", "latitude": "47.690395", "id": "1085996148", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:19", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372125902", "longitude": "-122.327688", "url_o": "https://farm2.staticflickr.com/1128/1085996280_2d47d96d56_o.jpg", "secret": "c8b454d48c", "media": "photo", "latitude": "47.690395", "id": "1085996280", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:20", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372125902", "longitude": "-122.327688", "url_o": "https://farm2.staticflickr.com/1266/1085135069_c481efd5fa_o.jpg", "secret": "370214b4ba", "media": "photo", "latitude": "47.690395", "id": "1085135069", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:21", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372125902", "longitude": "-122.327688", "url_o": "https://farm2.staticflickr.com/1041/1085996526_ac6f592619_o.jpg", "secret": "75f4e85bbf", "media": "photo", "latitude": "47.690395", "id": "1085996526", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:22", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372125902", "longitude": "-122.327688", "url_o": "https://farm2.staticflickr.com/1183/1085135389_3523149bec_o.jpg", "secret": "6acdccd8dd", "media": "photo", "latitude": "47.690395", "id": "1085135389", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:22", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372125902", "longitude": "-122.327688", "url_o": "https://farm2.staticflickr.com/1205/1085996788_5db8eac2af_o.jpg", "secret": "b6eeca9db0", "media": "photo", "latitude": "47.690395", "id": "1085996788", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:23", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372125902", "longitude": "-122.327688", "url_o": "https://farm2.staticflickr.com/1339/1085996924_5c63227d50_o.jpg", "secret": "81f46f4935", "media": "photo", "latitude": "47.690395", "id": "1085996924", "tags": "2003"}, {"datetaken": "2007-08-11 15:58:24", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372125902", "longitude": "-122.327688", "url_o": "https://farm2.staticflickr.com/1230/1085997048_e2ee9eac41_o.jpg", "secret": "abc5964b31", "media": "photo", "latitude": "47.690395", "id": "1085997048", "tags": "2003"}, {"datetaken": "2004-11-26 01:58:54", "license": "2", "title": "Daan 1", "text": "", "album_id": "49712", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1955212_8a5f9941d2_o.jpg", "secret": "8a5f9941d2", "media": "photo", "latitude": "0", "id": "1955212", "tags": "daan music kongsi"}, {"datetaken": "2004-11-26 02:00:45", "license": "2", "title": "Daan 2", "text": "", "album_id": "49712", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1955214_cdc942850a_o.jpg", "secret": "cdc942850a", "media": "photo", "latitude": "0", "id": "1955214", "tags": "daan music kongsi"}, {"datetaken": "2004-11-26 02:02:45", "license": "2", "title": "Daan 3", "text": "", "album_id": "49712", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1955215_7cdc0b8405_o.jpg", "secret": "7cdc0b8405", "media": "photo", "latitude": "0", "id": "1955215", "tags": "daan music kongsi"}, {"datetaken": "2004-11-26 02:05:40", "license": "2", "title": "Daan 4", "text": "", "album_id": "49712", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1955217_324ff88af7_o.jpg", "secret": "324ff88af7", "media": "photo", "latitude": "0", "id": "1955217", "tags": "daan music kongsi"}, {"datetaken": "2004-11-26 02:05:56", "license": "2", "title": "Daan 5", "text": "", "album_id": "49712", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1955219_32a0a20539_o.jpg", "secret": "32a0a20539", "media": "photo", "latitude": "0", "id": "1955219", "tags": "daan music kongsi"}, {"datetaken": "2004-11-26 02:06:14", "license": "2", "title": "Daan 6", "text": "", "album_id": "49712", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1955224_8e4f92995b_o.jpg", "secret": "8e4f92995b", "media": "photo", "latitude": "0", "id": "1955224", "tags": "daan music kongsi"}, {"datetaken": "2004-11-26 02:08:00", "license": "2", "title": "Daan 7", "text": "", "album_id": "49712", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1955211_8dfc87c418_o.jpg", "secret": "8dfc87c418", "media": "photo", "latitude": "0", "id": "1955211", "tags": "daan music kongsi technique portfolio livemusic"}, {"datetaken": "2004-11-26 02:33:27", "license": "2", "title": "Debbies 03", "text": "", "album_id": "49712", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1969928_9eb56bad45_o.jpg", "secret": "9eb56bad45", "media": "photo", "latitude": "0", "id": "1969928", "tags": "music kongsi"}, {"datetaken": "2004-11-26 02:37:36", "license": "2", "title": "Debbies 02", "text": "", "album_id": "49712", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1969925_478b396f91_o.jpg", "secret": "478b396f91", "media": "photo", "latitude": "0", "id": "1969925", "tags": "music kongsi debbies livemusic"}, {"datetaken": "2004-11-26 02:48:40", "license": "2", "title": "Debbies 01", "text": "", "album_id": "49712", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1969924_52cc58cb84_o.jpg", "secret": "52cc58cb84", "media": "photo", "latitude": "0", "id": "1969924", "tags": "music kongsi debbies"}, {"datetaken": "2004-11-26 04:48:27", "license": "2", "title": "We vs Death 01", "text": "", "album_id": "49712", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1969929_14e9726f7f_o.jpg", "secret": "14e9726f7f", "media": "photo", "latitude": "0", "id": "1969929", "tags": "music kongsi wevsdeath"}, {"datetaken": "2004-11-26 04:54:06", "license": "2", "title": "We vs Death 02", "text": "", "album_id": "49712", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1969922_9087182f6a_o.jpg", "secret": "9087182f6a", "media": "photo", "latitude": "0", "id": "1969922", "tags": "music kongsi wevsdeath"}, {"datetaken": "2004-12-18 21:04:36", "license": "1", "title": "Joke's birthday party", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2364872_a99b1ec085_o.jpg", "secret": "a99b1ec085", "media": "photo", "latitude": "0", "id": "2364872", "tags": "friends"}, {"datetaken": "2004-12-18 21:05:43", "license": "1", "title": "Joke with camera", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2364860_deba9f77b2_o.jpg", "secret": "deba9f77b2", "media": "photo", "latitude": "0", "id": "2364860", "tags": "friends"}, {"datetaken": "2004-12-18 21:06:52", "license": "1", "title": "Joke et al", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2364862_9d97a79b4b_o.jpg", "secret": "9d97a79b4b", "media": "photo", "latitude": "0", "id": "2364862", "tags": "friends"}, {"datetaken": "2004-12-18 21:07:09", "license": "1", "title": "Joke's birthday party", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2364843_f2884970bb_o.jpg", "secret": "f2884970bb", "media": "photo", "latitude": "0", "id": "2364843", "tags": "friends"}, {"datetaken": "2004-12-18 21:24:47", "license": "1", "title": "Marc and Remco", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2364847_e5c479f949_o.jpg", "secret": "e5c479f949", "media": "photo", "latitude": "0", "id": "2364847", "tags": "friends"}, {"datetaken": "2004-12-18 21:25:01", "license": "1", "title": "food!", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2364857_df558555fb_o.jpg", "secret": "df558555fb", "media": "photo", "latitude": "0", "id": "2364857", "tags": "friends"}, {"datetaken": "2004-12-18 21:25:32", "license": "1", "title": "Christmas Kim", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2364858_f391cba2e9_o.jpg", "secret": "f391cba2e9", "media": "photo", "latitude": "0", "id": "2364858", "tags": "friends"}, {"datetaken": "2004-12-18 21:25:40", "license": "1", "title": "Joke's brother", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2364859_4e01838c84_o.jpg", "secret": "4e01838c84", "media": "photo", "latitude": "0", "id": "2364859", "tags": "friends"}, {"datetaken": "2004-12-18 21:28:09", "license": "1", "title": "Blurred Joke", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2364768_e6bfcfb06b_o.jpg", "secret": "e6bfcfb06b", "media": "photo", "latitude": "0", "id": "2364768", "tags": "friends"}, {"datetaken": "2004-12-18 21:40:24", "license": "1", "title": "Joke's birthday party", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2364776_78a0efaa0a_o.jpg", "secret": "78a0efaa0a", "media": "photo", "latitude": "0", "id": "2364776", "tags": "friends"}, {"datetaken": "2004-12-18 21:40:42", "license": "1", "title": "Smiling Kim", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2364784_d7b9b63e19_o.jpg", "secret": "d7b9b63e19", "media": "photo", "latitude": "0", "id": "2364784", "tags": "friends"}, {"datetaken": "2004-12-18 21:46:39", "license": "1", "title": "Ya lookin at me?", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2364791_0d2914ca12_o.jpg", "secret": "0d2914ca12", "media": "photo", "latitude": "0", "id": "2364791", "tags": "friends"}, {"datetaken": "2004-12-18 21:46:57", "license": "1", "title": "Sleepy Kim", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2364794_1fbb86ca94_o.jpg", "secret": "1fbb86ca94", "media": "photo", "latitude": "0", "id": "2364794", "tags": "friends"}, {"datetaken": "2004-12-18 21:47:29", "license": "1", "title": "Christmas Kim #2", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2364800_a0c2790d14_o.jpg", "secret": "a0c2790d14", "media": "photo", "latitude": "0", "id": "2364800", "tags": "friends"}, {"datetaken": "2004-12-18 21:50:35", "license": "1", "title": "Red wine", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2364811_ccdaed92e6_o.jpg", "secret": "ccdaed92e6", "media": "photo", "latitude": "0", "id": "2364811", "tags": "friends"}, {"datetaken": "2004-12-18 21:52:47", "license": "1", "title": "Marc", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2364818_7774c4a51b_o.jpg", "secret": "7774c4a51b", "media": "photo", "latitude": "0", "id": "2364818", "tags": "friends"}, {"datetaken": "2004-12-18 21:53:09", "license": "1", "title": "Me, Kim", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2364820_b864526eb1_o.jpg", "secret": "b864526eb1", "media": "photo", "latitude": "0", "id": "2364820", "tags": "friends"}, {"datetaken": "2004-12-18 21:53:23", "license": "1", "title": "Remco", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2364825_77d5c798c4_o.jpg", "secret": "77d5c798c4", "media": "photo", "latitude": "0", "id": "2364825", "tags": "friends"}, {"datetaken": "2004-12-18 22:28:02", "license": "1", "title": "Kim", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2364828_8ffc13355b_o.jpg", "secret": "8ffc13355b", "media": "photo", "latitude": "0", "id": "2364828", "tags": "friends"}, {"datetaken": "2004-12-18 22:28:15", "license": "1", "title": "Kim", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2364830_5d17434065_o.jpg", "secret": "5d17434065", "media": "photo", "latitude": "0", "id": "2364830", "tags": "friends"}, {"datetaken": "2004-12-18 22:29:12", "license": "1", "title": "Yeah, a looong call..", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2364832_aa6e4638b2_o.jpg", "secret": "aa6e4638b2", "media": "photo", "latitude": "0", "id": "2364832", "tags": "friends"}, {"datetaken": "2004-12-18 22:29:22", "license": "1", "title": "Remco", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2364836_2ebea401e6_o.jpg", "secret": "2ebea401e6", "media": "photo", "latitude": "0", "id": "2364836", "tags": "friends"}, {"datetaken": "2004-12-18 22:29:38", "license": "1", "title": "Remco", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2364839_6aed658212_o.jpg", "secret": "6aed658212", "media": "photo", "latitude": "0", "id": "2364839", "tags": "friends"}, {"datetaken": "2004-12-18 22:33:22", "license": "1", "title": "On the phone, again", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2364729_df5c882fc6_o.jpg", "secret": "df5c882fc6", "media": "photo", "latitude": "0", "id": "2364729", "tags": "friends"}, {"datetaken": "2004-12-18 23:00:55", "license": "1", "title": "Joke with camera", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2364732_0531e7d4d2_o.jpg", "secret": "0531e7d4d2", "media": "photo", "latitude": "0", "id": "2364732", "tags": "friends"}, {"datetaken": "2004-12-18 23:46:39", "license": "1", "title": "Kim", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2364734_b6d8365646_o.jpg", "secret": "b6d8365646", "media": "photo", "latitude": "0", "id": "2364734", "tags": "friends"}, {"datetaken": "2004-12-18 23:48:12", "license": "1", "title": "Red wine #2", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2364737_9207a51dca_o.jpg", "secret": "9207a51dca", "media": "photo", "latitude": "0", "id": "2364737", "tags": "friends"}, {"datetaken": "2004-12-19 00:18:17", "license": "1", "title": "Relaaax..", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2364747_bccd8fbb3e_o.jpg", "secret": "bccd8fbb3e", "media": "photo", "latitude": "0", "id": "2364747", "tags": "friends"}, {"datetaken": "2004-12-19 00:22:25", "license": "1", "title": "Joke's birthday party", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2364660_3daab4aac3_o.jpg", "secret": "3daab4aac3", "media": "photo", "latitude": "0", "id": "2364660", "tags": "friends"}, {"datetaken": "2004-12-19 00:34:30", "license": "1", "title": "Drunker Trivial Pursuit", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2364664_496f6b88c4_o.jpg", "secret": "496f6b88c4", "media": "photo", "latitude": "0", "id": "2364664", "tags": "friends"}, {"datetaken": "2004-12-19 01:48:01", "license": "1", "title": "Drunk Trivial Pursuit", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2364671_dc2e0e0e83_o.jpg", "secret": "dc2e0e0e83", "media": "photo", "latitude": "0", "id": "2364671", "tags": "friends"}, {"datetaken": "2004-12-19 02:47:31", "license": "1", "title": "Net", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2364673_27adc61450_o.jpg", "secret": "27adc61450", "media": "photo", "latitude": "0", "id": "2364673", "tags": "friends"}, {"datetaken": "2004-12-19 02:55:13", "license": "1", "title": "Fireplace with Marc", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2364691_2e32c8e7d9_o.jpg", "secret": "2e32c8e7d9", "media": "photo", "latitude": "0", "id": "2364691", "tags": "friends"}, {"datetaken": "2004-12-19 11:33:07", "license": "1", "title": "Cleaning #2", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2364699_a62bb8a11c_o.jpg", "secret": "a62bb8a11c", "media": "photo", "latitude": "0", "id": "2364699", "tags": "friends"}, {"datetaken": "2004-12-19 11:33:37", "license": "1", "title": "Cleaning", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2364701_4ed80a60ce_o.jpg", "secret": "4ed80a60ce", "media": "photo", "latitude": "0", "id": "2364701", "tags": "friends"}, {"datetaken": "2004-12-19 11:33:53", "license": "1", "title": "Dishes", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2364704_8c901b9ac6_o.jpg", "secret": "8c901b9ac6", "media": "photo", "latitude": "0", "id": "2364704", "tags": "friends"}, {"datetaken": "2004-12-19 12:21:59", "license": "1", "title": "Royal breakfast #2", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2364711_8261b38de8_o.jpg", "secret": "8261b38de8", "media": "photo", "latitude": "0", "id": "2364711", "tags": "friends"}, {"datetaken": "2004-12-19 12:22:12", "license": "1", "title": "Me, Kim, Marc", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2364716_845a261329_o.jpg", "secret": "845a261329", "media": "photo", "latitude": "0", "id": "2364716", "tags": "friends"}, {"datetaken": "2004-12-19 12:22:19", "license": "1", "title": "Royal breakfast", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2364718_db5e05c46f_o.jpg", "secret": "db5e05c46f", "media": "photo", "latitude": "0", "id": "2364718", "tags": "friends"}, {"datetaken": "2004-12-19 12:22:58", "license": "1", "title": "Sleepy me #2", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2364719_26451d161e_o.jpg", "secret": "26451d161e", "media": "photo", "latitude": "0", "id": "2364719", "tags": "friends"}, {"datetaken": "2004-12-19 12:23:06", "license": "1", "title": "Sleepy me", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2364722_950023e693_o.jpg", "secret": "950023e693", "media": "photo", "latitude": "0", "id": "2364722", "tags": "friends"}, {"datetaken": "2004-12-19 12:32:30", "license": "1", "title": "Sleepy Joke", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2364723_e84da4f6eb_o.jpg", "secret": "e84da4f6eb", "media": "photo", "latitude": "0", "id": "2364723", "tags": "friends"}, {"datetaken": "2004-12-19 12:32:58", "license": "1", "title": "Breakfast Kim", "text": "", "album_id": "59450", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2364724_43b35c8ba4_o.jpg", "secret": "43b35c8ba4", "media": "photo", "latitude": "0", "id": "2364724", "tags": "friends"}, {"datetaken": "2005-01-08 23:22:14", "license": "1", "title": "Birthday!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3217418_633922bd08_o.jpg", "secret": "633922bd08", "media": "photo", "latitude": "0", "id": "3217418", "tags": "birthday party andy kaitlin bryan"}, {"datetaken": "2005-01-08 23:34:25", "license": "1", "title": "A Pink Door", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3217314_f931dc3dc7_o.jpg", "secret": "f931dc3dc7", "media": "photo", "latitude": "0", "id": "3217314", "tags": "birthday party karla blair debbie"}, {"datetaken": "2005-01-08 23:35:01", "license": "1", "title": "Kaitlin + Dylan", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3217320_2f06daf06b_o.jpg", "secret": "2f06daf06b", "media": "photo", "latitude": "0", "id": "3217320", "tags": "birthday party kaitlin dylan"}, {"datetaken": "2005-01-08 23:36:17", "license": "1", "title": "Birthday!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3217326_d7316962c8_o.jpg", "secret": "d7316962c8", "media": "photo", "latitude": "0", "id": "3217326", "tags": "birthday party"}, {"datetaken": "2005-01-08 23:36:34", "license": "1", "title": "Birthday!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3217332_990ec23352_o.jpg", "secret": "990ec23352", "media": "photo", "latitude": "0", "id": "3217332", "tags": "birthday party josh peter lauren"}, {"datetaken": "2005-01-08 23:36:54", "license": "1", "title": "Birthday!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3217359_c672d3e683_o.jpg", "secret": "c672d3e683", "media": "photo", "latitude": "0", "id": "3217359", "tags": "birthday party christiaan roni"}, {"datetaken": "2005-01-08 23:50:08", "license": "1", "title": "Blair w/the Birthday Boy", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3217391_0b82ffce48_o.jpg", "secret": "0b82ffce48", "media": "photo", "latitude": "0", "id": "3217391", "tags": "birthday party smiles josh blair"}, {"datetaken": "2005-01-08 23:50:20", "license": "1", "title": "Birthday Kisses", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3217407_68c163eaa7_o.jpg", "secret": "68c163eaa7", "media": "photo", "latitude": "0", "id": "3217407", "tags": "birthday party debbie christiaan daphne"}, {"datetaken": "2005-01-09 00:04:42", "license": "1", "title": "Birthday!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3217578_79722c7477_o.jpg", "secret": "79722c7477", "media": "photo", "latitude": "0", "id": "3217578", "tags": "birthday party lindsay"}, {"datetaken": "2005-01-09 00:05:01", "license": "1", "title": "Birthday!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3217589_5b363e3027_o.jpg", "secret": "5b363e3027", "media": "photo", "latitude": "0", "id": "3217589", "tags": "birthday party smiles lindsay kaitlin"}, {"datetaken": "2005-01-09 00:07:28", "license": "1", "title": "Lauren + Kevin", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3217613_699ab2ca17_o.jpg", "secret": "699ab2ca17", "media": "photo", "latitude": "0", "id": "3217613", "tags": "birthday party lauren kevin"}, {"datetaken": "2005-01-09 00:07:55", "license": "1", "title": "Birthday!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3217629_15523707a1_o.jpg", "secret": "15523707a1", "media": "photo", "latitude": "0", "id": "3217629", "tags": "birthday party mt lindsay"}, {"datetaken": "2005-01-09 00:10:12", "license": "1", "title": "Arms...", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3217644_1fb0fae070_o.jpg", "secret": "1fb0fae070", "media": "photo", "latitude": "0", "id": "3217644", "tags": "birthday party smiles josh armsofsteel"}, {"datetaken": "2005-01-09 00:11:34", "license": "1", "title": "Birthday Mustache Club!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3217439_604c780e7f_o.jpg", "secret": "604c780e7f", "media": "photo", "latitude": "0", "id": "3217439", "tags": "birthday party daphne debbie christiaan mustache"}, {"datetaken": "2005-01-09 00:33:04", "license": "1", "title": "Birthday!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3217458_dada061d88_o.jpg", "secret": "dada061d88", "media": "photo", "latitude": "0", "id": "3217458", "tags": "birthday party"}, {"datetaken": "2005-01-09 00:36:25", "license": "1", "title": "Birthday Dancing!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3217487_ad5649f1f9_o.jpg", "secret": "ad5649f1f9", "media": "photo", "latitude": "0", "id": "3217487", "tags": "birthday party karla daphne debbie mt"}, {"datetaken": "2005-01-09 00:39:25", "license": "1", "title": "Andy + Jamie", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3217498_903f82e67a_o.jpg", "secret": "903f82e67a", "media": "photo", "latitude": "0", "id": "3217498", "tags": "birthday party andy jamie"}, {"datetaken": "2005-01-09 00:39:40", "license": "1", "title": "Birthday!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3217515_69d6a0a75b_o.jpg", "secret": "69d6a0a75b", "media": "photo", "latitude": "0", "id": "3217515", "tags": "birthday party karla mt stars"}, {"datetaken": "2005-01-09 00:40:04", "license": "1", "title": "Birthday!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3217552_2fbbff4c3a_o.jpg", "secret": "2fbbff4c3a", "media": "photo", "latitude": "0", "id": "3217552", "tags": "birthday party mt smiles karla kaitlin"}, {"datetaken": "2005-01-09 00:40:32", "license": "1", "title": "More Birthday Dancing", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3217661_19dfb4da4d_o.jpg", "secret": "19dfb4da4d", "media": "photo", "latitude": "0", "id": "3217661", "tags": "birthday party debbie"}, {"datetaken": "2005-01-09 00:43:12", "license": "1", "title": "Birthday!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3217686_92787410b2_o.jpg", "secret": "92787410b2", "media": "photo", "latitude": "0", "id": "3217686", "tags": "birthday party kaitlin lindsay"}, {"datetaken": "2005-01-09 00:43:24", "license": "1", "title": "Birthday!?!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3217704_ee8753c186_o.jpg", "secret": "ee8753c186", "media": "photo", "latitude": "0", "id": "3217704", "tags": "birthday party josh daphne"}, {"datetaken": "2005-01-09 00:44:48", "license": "1", "title": "Birthday Ice Scream Cake", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3217718_c9b068a00f_o.jpg", "secret": "c9b068a00f", "media": "photo", "latitude": "0", "id": "3217718", "tags": "birthday party icescreamcake josh kris"}, {"datetaken": "2005-01-09 00:45:02", "license": "1", "title": "Birthday Candles", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3217731_7cf82ae4c2_o.jpg", "secret": "7cf82ae4c2", "media": "photo", "latitude": "0", "id": "3217731", "tags": "birthday party icescreamcake josh kris"}, {"datetaken": "2005-01-09 00:57:16", "license": "1", "title": "What's Inside?", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3217760_47e962f8fd_o.jpg", "secret": "47e962f8fd", "media": "photo", "latitude": "0", "id": "3217760", "tags": "birthday party josh lindsay presents"}, {"datetaken": "2005-01-09 00:57:58", "license": "1", "title": "Time for Presents!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3217781_2f87b9fdc5_o.jpg", "secret": "2f87b9fdc5", "media": "photo", "latitude": "0", "id": "3217781", "tags": "birthday party debbie mt lindsay"}, {"datetaken": "2005-01-09 00:59:03", "license": "1", "title": "too much string!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3217795_8ec82cef50_o.jpg", "secret": "8ec82cef50", "media": "photo", "latitude": "0", "id": "3217795", "tags": "birthday party josh presents"}, {"datetaken": "2005-01-09 01:00:16", "license": "1", "title": "SUPER Grilling Apron", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3217809_4be619c187_o.jpg", "secret": "4be619c187", "media": "photo", "latitude": "0", "id": "3217809", "tags": "birthday party smiles apron josh presents"}, {"datetaken": "2005-01-09 01:01:09", "license": "1", "title": "Awesome DVD", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3217830_0a8fceffb3_o.jpg", "secret": "0a8fceffb3", "media": "photo", "latitude": "0", "id": "3217830", "tags": "birthday party smiles josh presents daphne haroldandkumar"}, {"datetaken": "2005-01-09 01:01:36", "license": "1", "title": "Fancy Card", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3217855_0d4d3dc69a_o.jpg", "secret": "0d4d3dc69a", "media": "photo", "latitude": "0", "id": "3217855", "tags": "birthday party josh presents snowglobe dinosaur"}, {"datetaken": "2005-01-09 01:03:24", "license": "1", "title": "Another Awesome DVD", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3217887_6eda0039e8_o.jpg", "secret": "6eda0039e8", "media": "photo", "latitude": "0", "id": "3217887", "tags": "birthday party alien smiles josh presents"}, {"datetaken": "2005-01-09 01:04:07", "license": "1", "title": "HoverCopter!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3217903_b630edf9c4_o.jpg", "secret": "b630edf9c4", "media": "photo", "latitude": "0", "id": "3217903", "tags": "birthday party josh presents hovercopter"}, {"datetaken": "2005-01-09 01:05:33", "license": "1", "title": "It spells J-O-S-H!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3217915_573147883f_o.jpg", "secret": "573147883f", "media": "photo", "latitude": "0", "id": "3217915", "tags": "birthday party josh presents gloves"}, {"datetaken": "2005-01-09 01:10:05", "license": "1", "title": "Birthday Surgeon", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3217929_e2707e2c03_o.jpg", "secret": "e2707e2c03", "media": "photo", "latitude": "0", "id": "3217929", "tags": "birthday party josh presents doctor"}, {"datetaken": "2005-01-09 01:14:21", "license": "1", "title": "Slinky Time!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3217939_a2033e53ef_o.jpg", "secret": "a2033e53ef", "media": "photo", "latitude": "0", "id": "3217939", "tags": "birthday party headlessjosh"}, {"datetaken": "2005-01-09 01:18:41", "license": "1", "title": "\"Huh?!? It flies?\"", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3217951_4e8aaafac2_o.jpg", "secret": "4e8aaafac2", "media": "photo", "latitude": "0", "id": "3217951", "tags": "birthday party kevin"}, {"datetaken": "2005-01-09 01:20:04", "license": "1", "title": "Birthday HoverCopter", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3217961_f8f1392e94_o.jpg", "secret": "f8f1392e94", "media": "photo", "latitude": "0", "id": "3217961", "tags": "birthday party hovercopter"}, {"datetaken": "2005-01-09 01:20:22", "license": "1", "title": "AMAAAAAZING!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3217968_6017f7b790_o.jpg", "secret": "6017f7b790", "media": "photo", "latitude": "0", "id": "3217968", "tags": "birthday party karla daphne blair hovercopter"}, {"datetaken": "2005-01-09 01:26:49", "license": "1", "title": "Let me show you!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3217982_5c0575517b_o.jpg", "secret": "5c0575517b", "media": "photo", "latitude": "0", "id": "3217982", "tags": "birthday party dylan kaitlin headlessbryan keryn mike kevin"}, {"datetaken": "2005-01-09 01:27:52", "license": "1", "title": "Birthday!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3218030_76f2932cbf_o.jpg", "secret": "76f2932cbf", "media": "photo", "latitude": "0", "id": "3218030", "tags": "birthday party blair debbie kaitlin"}, {"datetaken": "2005-01-09 01:28:26", "license": "1", "title": "Birthday!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3218021_78db5b628b_o.jpg", "secret": "78db5b628b", "media": "photo", "latitude": "0", "id": "3218021", "tags": "birthday party stars"}, {"datetaken": "2005-01-09 01:29:13", "license": "1", "title": "Birthday!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3218000_3e67f18dc2_o.jpg", "secret": "3e67f18dc2", "media": "photo", "latitude": "0", "id": "3218000", "tags": "birthday party stars mt"}, {"datetaken": "2005-01-09 01:44:44", "license": "1", "title": "Birthday!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3218041_1b850d324b_o.jpg", "secret": "1b850d324b", "media": "photo", "latitude": "0", "id": "3218041", "tags": "birthday party"}, {"datetaken": "2005-01-09 02:01:43", "license": "1", "title": "Birthday!", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3218056_147d89c80e_o.jpg", "secret": "147d89c80e", "media": "photo", "latitude": "0", "id": "3218056", "tags": "birthday party karla mt"}, {"datetaken": "2005-01-09 20:59:59", "license": "1", "title": "Birthday Decorations", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3218080_4d943953d1_o.jpg", "secret": "4d943953d1", "media": "photo", "latitude": "0", "id": "3218080", "tags": "birthday party"}, {"datetaken": "2005-01-09 21:00:16", "license": "1", "title": "Birthday Decorations", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3218099_3c3589b223_o.jpg", "secret": "3c3589b223", "media": "photo", "latitude": "0", "id": "3218099", "tags": "birthday party"}, {"datetaken": "2005-01-09 21:00:46", "license": "1", "title": "Birthday Decorations", "text": "", "album_id": "80673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3218105_88af669af2_o.jpg", "secret": "88af669af2", "media": "photo", "latitude": "0", "id": "3218105", "tags": "birthday party"}, {"datetaken": "2005-02-27 21:48:11", "license": "1", "title": "Azmi's birthday party", "text": "", "album_id": "140280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5568658_553042d05d_o.jpg", "secret": "553042d05d", "media": "photo", "latitude": "0", "id": "5568658", "tags": "friends birthday"}, {"datetaken": "2005-02-27 21:48:26", "license": "1", "title": "Azmi's birthday party", "text": "", "album_id": "140280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5568663_5ba406ea58_o.jpg", "secret": "5ba406ea58", "media": "photo", "latitude": "0", "id": "5568663", "tags": "friends birthday"}, {"datetaken": "2005-02-27 21:48:46", "license": "1", "title": "Azmi's birthday party", "text": "", "album_id": "140280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5568664_890f894d30_o.jpg", "secret": "890f894d30", "media": "photo", "latitude": "0", "id": "5568664", "tags": "friends birthday"}, {"datetaken": "2005-02-27 21:49:32", "license": "1", "title": "Had enough?", "text": "", "album_id": "140280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5568678_271e2f2609_o.jpg", "secret": "271e2f2609", "media": "photo", "latitude": "0", "id": "5568678", "tags": "friends birthday"}, {"datetaken": "2005-02-27 21:51:12", "license": "1", "title": "Food for thought", "text": "", "album_id": "140280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5568668_680151e0cb_o.jpg", "secret": "680151e0cb", "media": "photo", "latitude": "0", "id": "5568668", "tags": "friends birthday"}, {"datetaken": "2005-02-27 21:53:51", "license": "1", "title": "Azmi's birthday party", "text": "", "album_id": "140280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5568835_38fd46bf51_o.jpg", "secret": "38fd46bf51", "media": "photo", "latitude": "0", "id": "5568835", "tags": "friends birthday"}, {"datetaken": "2005-02-27 21:54:48", "license": "1", "title": "One for the album", "text": "", "album_id": "140280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5568837_dea12ff0ef_o.jpg", "secret": "dea12ff0ef", "media": "photo", "latitude": "0", "id": "5568837", "tags": "friends birthday"}, {"datetaken": "2005-02-27 21:55:26", "license": "1", "title": "The dudes", "text": "", "album_id": "140280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5568840_f24c9b62bc_o.jpg", "secret": "f24c9b62bc", "media": "photo", "latitude": "0", "id": "5568840", "tags": "friends birthday hotel"}, {"datetaken": "2005-02-27 22:21:35", "license": "1", "title": "Posing with the paan waala", "text": "", "album_id": "140280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5568844_de4dbb7a92_o.jpg", "secret": "de4dbb7a92", "media": "photo", "latitude": "0", "id": "5568844", "tags": "friends birthday paan hotel"}, {"datetaken": "2005-02-27 22:21:47", "license": "1", "title": "Paan waala", "text": "", "album_id": "140280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5568858_5c928a8542_o.jpg", "secret": "5c928a8542", "media": "photo", "latitude": "0", "id": "5568858", "tags": "friends birthday paan hotel"}, {"datetaken": "2005-02-27 22:22:25", "license": "1", "title": "Azmi", "text": "", "album_id": "140280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5568930_8e7ee2cd3a_o.jpg", "secret": "8e7ee2cd3a", "media": "photo", "latitude": "0", "id": "5568930", "tags": "friends birthday closeup"}, {"datetaken": "2005-02-27 23:05:42", "license": "1", "title": "Having the cake and eating it too", "text": "", "album_id": "140280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5568931_bee2a507e0_o.jpg", "secret": "bee2a507e0", "media": "photo", "latitude": "0", "id": "5568931", "tags": "friends birthday cake"}, {"datetaken": "2005-02-19 21:04:48", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.917614", "url_o": "https://farm1.staticflickr.com/4/5128252_23444e0acc_o.jpg", "secret": "23444e0acc", "media": "photo", "latitude": "40.766018", "id": "5128252", "tags": "birthday birthdayparty party lindsay presents"}, {"datetaken": "2005-02-19 21:05:38", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.917614", "url_o": "https://farm1.staticflickr.com/5/5128297_00c5af4349_o.jpg", "secret": "00c5af4349", "media": "photo", "latitude": "40.766018", "id": "5128297", "tags": "birthday birthdayparty party lindsay presents"}, {"datetaken": "2005-02-19 21:06:30", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.917614", "url_o": "https://farm1.staticflickr.com/3/5128335_a0321bec73_o.jpg", "secret": "a0321bec73", "media": "photo", "latitude": "40.766018", "id": "5128335", "tags": "birthday birthdayparty party lindsay presents"}, {"datetaken": "2005-02-19 21:06:46", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.917614", "url_o": "https://farm1.staticflickr.com/3/5128385_675467a730_o.jpg", "secret": "675467a730", "media": "photo", "latitude": "40.766018", "id": "5128385", "tags": "birthday birthdayparty party marissa kristin filipinos"}, {"datetaken": "2005-02-19 21:07:40", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.917614", "url_o": "https://farm1.staticflickr.com/4/5128425_1eaae4b5d3_o.jpg", "secret": "1eaae4b5d3", "media": "photo", "latitude": "40.766018", "id": "5128425", "tags": "birthday birthdayparty party kate cat kitty"}, {"datetaken": "2005-02-19 21:07:54", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.917614", "url_o": "https://farm1.staticflickr.com/3/5128462_2e78962152_o.jpg", "secret": "2e78962152", "media": "photo", "latitude": "40.766018", "id": "5128462", "tags": "birthday birthdayparty party cat kitty kate"}, {"datetaken": "2005-02-19 21:10:15", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.917614", "url_o": "https://farm1.staticflickr.com/3/5128503_e85b05d781_o.jpg", "secret": "e85b05d781", "media": "photo", "latitude": "40.766018", "id": "5128503", "tags": "birthday birthdayparty party cupcakes food kristin marissa filipinos"}, {"datetaken": "2005-02-19 21:11:30", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.917614", "url_o": "https://farm1.staticflickr.com/4/5128540_fb87325c5f_o.jpg", "secret": "fb87325c5f", "media": "photo", "latitude": "40.766018", "id": "5128540", "tags": "bedroom window"}, {"datetaken": "2005-02-19 21:11:49", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.917614", "url_o": "https://farm1.staticflickr.com/5/5128590_dc180c502d_o.jpg", "secret": "dc180c502d", "media": "photo", "latitude": "40.766018", "id": "5128590", "tags": "birthday birthdayparty party kristin marissa filipinos"}, {"datetaken": "2005-02-19 21:12:01", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.917614", "url_o": "https://farm1.staticflickr.com/4/5128645_dfb25880ed_o.jpg", "secret": "dfb25880ed", "media": "photo", "latitude": "40.766018", "id": "5128645", "tags": "birthday birthdayparty party cupcakes candles marissa food"}, {"datetaken": "2005-02-19 21:12:51", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.917614", "url_o": "https://farm1.staticflickr.com/3/5128702_e2676da6d0_o.jpg", "secret": "e2676da6d0", "media": "photo", "latitude": "40.766018", "id": "5128702", "tags": "birthday birthdayparty party food cupcakes candles"}, {"datetaken": "2005-02-19 21:13:34", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.917614", "url_o": "https://farm1.staticflickr.com/5/5128751_d44f3628a9_o.jpg", "secret": "d44f3628a9", "media": "photo", "latitude": "40.766018", "id": "5128751", "tags": "birthday birthdayparty party marissa kate cat kitty"}, {"datetaken": "2005-02-19 21:13:49", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.917614", "url_o": "https://farm1.staticflickr.com/4/5128798_4919ea7e06_o.jpg", "secret": "4919ea7e06", "media": "photo", "latitude": "40.766018", "id": "5128798", "tags": "birthday birthdayparty party lindsay cupcakes food candles"}, {"datetaken": "2005-02-19 21:14:05", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.917614", "url_o": "https://farm1.staticflickr.com/3/5128845_cbf25a4017_o.jpg", "secret": "cbf25a4017", "media": "photo", "latitude": "40.766018", "id": "5128845", "tags": "birthday birthdayparty party food cupcakes candles lindsay"}, {"datetaken": "2005-02-19 21:14:50", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.917614", "url_o": "https://farm1.staticflickr.com/4/5128906_16afe54d49_o.jpg", "secret": "16afe54d49", "media": "photo", "latitude": "40.766018", "id": "5128906", "tags": "birthday birthdayparty party brandon food cupcakes kate cat kitty"}, {"datetaken": "2005-02-20 00:02:06", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.986096", "url_o": "https://farm1.staticflickr.com/4/5128993_2b89d93ffc_o.jpg", "secret": "2b89d93ffc", "media": "photo", "latitude": "40.718155", "id": "5128993", "tags": "birthday birthdayparty party bar"}, {"datetaken": "2005-02-20 00:05:01", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.986096", "url_o": "https://farm1.staticflickr.com/3/5129054_82001ed0fb_o.jpg", "secret": "82001ed0fb", "media": "photo", "latitude": "40.718155", "id": "5129054", "tags": "birthday birthdayparty party bar"}, {"datetaken": "2005-02-20 00:05:54", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.986096", "url_o": "https://farm1.staticflickr.com/5/5129115_80ef372f6d_o.jpg", "secret": "80ef372f6d", "media": "photo", "latitude": "40.718155", "id": "5129115", "tags": "birthday birthdayparty party bar"}, {"datetaken": "2005-02-20 00:47:07", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.986096", "url_o": "https://farm1.staticflickr.com/4/5129172_5ee4951c49_o.jpg", "secret": "5ee4951c49", "media": "photo", "latitude": "40.718155", "id": "5129172", "tags": "birthday birthdayparty party beer bar"}, {"datetaken": "2005-02-20 00:52:26", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.986096", "url_o": "https://farm1.staticflickr.com/4/5129222_e11060e645_o.jpg", "secret": "e11060e645", "media": "photo", "latitude": "40.718155", "id": "5129222", "tags": "newyorkcity nyc bridge"}, {"datetaken": "2005-02-20 00:52:36", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.986096", "url_o": "https://farm1.staticflickr.com/5/5129258_bf47e32e7d_o.jpg", "secret": "bf47e32e7d", "media": "photo", "latitude": "40.718155", "id": "5129258", "tags": "birthday birthdayparty party kristin"}, {"datetaken": "2005-02-20 00:53:08", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.986096", "url_o": "https://farm1.staticflickr.com/4/5129301_4b75efc13a_o.jpg", "secret": "4b75efc13a", "media": "photo", "latitude": "40.718155", "id": "5129301", "tags": "nyc newyorkcity bridge"}, {"datetaken": "2005-02-20 01:01:27", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.987304", "url_o": "https://farm1.staticflickr.com/4/5129375_c64defffef_o.jpg", "secret": "c64defffef", "media": "photo", "latitude": "40.719547", "id": "5129375", "tags": "birthday birthdayparty party bathroom beer bar"}, {"datetaken": "2005-02-20 01:01:50", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.987304", "url_o": "https://farm1.staticflickr.com/3/5129443_bbd60f0270_o.jpg", "secret": "bbd60f0270", "media": "photo", "latitude": "40.719547", "id": "5129443", "tags": "birthday birthdayparty party toilet bathroom beer bar"}, {"datetaken": "2005-02-20 01:03:57", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.987304", "url_o": "https://farm1.staticflickr.com/3/5129509_2fa6d5b46e_o.jpg", "secret": "2fa6d5b46e", "media": "photo", "latitude": "40.719547", "id": "5129509", "tags": "birthday birthdayparty party tv television"}, {"datetaken": "2005-02-20 01:15:16", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.987304", "url_o": "https://farm1.staticflickr.com/4/5129595_d1fa8adb0c_o.jpg", "secret": "d1fa8adb0c", "media": "photo", "latitude": "40.719547", "id": "5129595", "tags": "birthday birthdayparty party brandon lindsay"}, {"datetaken": "2005-02-20 01:16:56", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.987304", "url_o": "https://farm1.staticflickr.com/5/5129649_4cbfa3921c_o.jpg", "secret": "4cbfa3921c", "media": "photo", "latitude": "40.719547", "id": "5129649", "tags": "birthday birthdayparty party kristin marissa filipinos"}, {"datetaken": "2005-02-20 01:17:42", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.987304", "url_o": "https://farm1.staticflickr.com/3/5129702_ad82c38dc5_o.jpg", "secret": "ad82c38dc5", "media": "photo", "latitude": "40.719547", "id": "5129702", "tags": "birthday birthdayparty party lindsay kristin marissa filipinos"}, {"datetaken": "2005-02-20 01:18:54", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.987304", "url_o": "https://farm1.staticflickr.com/5/5129738_54947680ec_o.jpg", "secret": "54947680ec", "media": "photo", "latitude": "40.719547", "id": "5129738", "tags": "birthday birthdayparty party josh kristin bousel kiss kissing threadless"}, {"datetaken": "2005-02-20 01:43:29", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.987304", "url_o": "https://farm1.staticflickr.com/4/5129776_0287ca47f9_o.jpg", "secret": "0287ca47f9", "media": "photo", "latitude": "40.719547", "id": "5129776", "tags": "birthday birthdayparty party lindsay brandon marissa"}, {"datetaken": "2005-02-20 01:46:58", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.987304", "url_o": "https://farm1.staticflickr.com/4/5129802_114d81c609_o.jpg", "secret": "114d81c609", "media": "photo", "latitude": "40.719547", "id": "5129802", "tags": "birthday birthdayparty party josh kristin marissa bousel tongue licking filipinos"}, {"datetaken": "2005-02-20 01:54:07", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.987304", "url_o": "https://farm1.staticflickr.com/5/5129843_5f57e9bc15_o.jpg", "secret": "5f57e9bc15", "media": "photo", "latitude": "40.719547", "id": "5129843", "tags": "birthday birthdayparty party lindsay beer"}, {"datetaken": "2005-02-20 02:32:43", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.987304", "url_o": "https://farm1.staticflickr.com/3/5129883_bca5faa13e_o.jpg", "secret": "bca5faa13e", "media": "photo", "latitude": "40.719547", "id": "5129883", "tags": "birthday birthdayparty party marissa kristin lindsay filipinos tv television"}, {"datetaken": "2005-02-20 02:33:08", "license": "1", "title": "Lindsay's Birthday Party", "text": "", "album_id": "129153", "longitude": "-73.987304", "url_o": "https://farm1.staticflickr.com/4/5129914_8abf5ecc32_o.jpg", "secret": "8abf5ecc32", "media": "photo", "latitude": "40.719547", "id": "5129914", "tags": "birthday birthdayparty party marissa lindsay dancing tv television"}, {"datetaken": "2005-03-27 22:46:43", "license": "2", "title": "1979 Loch House Tower", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7646075_6ec0d9e247_o.jpg", "secret": "6ec0d9e247", "media": "photo", "latitude": "0", "id": "7646075", "tags": "1980s scannedphotos classics scotland moffatt tower"}, {"datetaken": "2005-03-27 22:47:14", "license": "2", "title": "1980s Big Brother", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7646105_f76cc27230_o.jpg", "secret": "f76cc27230", "media": "photo", "latitude": "0", "id": "7646105", "tags": "1980s scannedphotos classics wadena saskatchewan playing"}, {"datetaken": "2005-03-27 22:47:42", "license": "2", "title": "1980s Christmas", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7646196_853b605a79_o.jpg", "secret": "853b605a79", "media": "photo", "latitude": "0", "id": "7646196", "tags": "1980s scannedphotos classics christmas wadena saskatchewan"}, {"datetaken": "2005-03-27 22:48:04", "license": "2", "title": "1980s Delivering the Dramatic News", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7646267_7b6be30137_o.jpg", "secret": "7b6be30137", "media": "photo", "latitude": "0", "id": "7646267", "tags": "1980s scannedphotos classics wadena saskatchewan costume"}, {"datetaken": "2005-03-27 22:48:37", "license": "2", "title": "1980s Early Environmentalist wears Neon Green", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7646376_79ebd3fca6_o.jpg", "secret": "79ebd3fca6", "media": "photo", "latitude": "0", "id": "7646376", "tags": "1980s scannedphotos classics tree neongreen sunny saskatchewan"}, {"datetaken": "2005-03-27 22:48:57", "license": "2", "title": "1980s Early Halloween Corporate Sellout", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7646403_13bb562d8b_o.jpg", "secret": "13bb562d8b", "media": "photo", "latitude": "0", "id": "7646403", "tags": "1980s scannedphotos classics halloween wadena saskatchewan"}, {"datetaken": "2005-03-27 22:49:26", "license": "2", "title": "1980s Evidence of Banana Addiction", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7646464_411a770a9d_o.jpg", "secret": "411a770a9d", "media": "photo", "latitude": "0", "id": "7646464", "tags": "1980s scannedphotos classics hiking saskatchewan bananas"}, {"datetaken": "2005-03-27 22:49:50", "license": "2", "title": "1980s Ewoks at the Farm", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7646504_047a290b63_o.jpg", "secret": "047a290b63", "media": "photo", "latitude": "0", "id": "7646504", "tags": "1980s scannedphotos classics farm carnduff saskatchewan ewoks toys"}, {"datetaken": "2005-03-27 22:50:13", "license": "2", "title": "1980s Farm Boys", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7646529_7ac766ee1c_o.jpg", "secret": "7ac766ee1c", "media": "photo", "latitude": "0", "id": "7646529", "tags": "1980s scannedphotos classics farm carnduff saskatchewan"}, {"datetaken": "2005-03-27 22:50:36", "license": "2", "title": "1980s Farm Boys on Machinery", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7646566_767804dbb0_o.jpg", "secret": "767804dbb0", "media": "photo", "latitude": "0", "id": "7646566", "tags": "1980s scannedphotos classics farm wadena saskatchewan"}, {"datetaken": "2005-03-27 22:51:02", "license": "2", "title": "1980s Feeding Geese", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7646613_1c38f37f93_o.jpg", "secret": "1c38f37f93", "media": "photo", "latitude": "0", "id": "7646613", "tags": "1980s scannedphotos classics geese animals regina saskatchewan"}, {"datetaken": "2005-03-27 22:51:22", "license": "2", "title": "1980s Froggy Friend", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7646660_7caf1678b6_o.jpg", "secret": "7caf1678b6", "media": "photo", "latitude": "0", "id": "7646660", "tags": "1980s scannedphotos classics frog animals"}, {"datetaken": "2005-03-27 22:51:56", "license": "2", "title": "1980s Grain makes a wonderful toy", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7646708_13fa809bc2_o.jpg", "secret": "13fa809bc2", "media": "photo", "latitude": "0", "id": "7646708", "tags": "1980s scannedphotos classics farm wadena saskatchewan"}, {"datetaken": "2005-03-27 22:52:13", "license": "2", "title": "1980s Grandma's Kitten and wagon", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7646739_4b3c87155d_o.jpg", "secret": "4b3c87155d", "media": "photo", "latitude": "0", "id": "7646739", "tags": "1980s scannedphotos classics cat wadena saskatchewan animals"}, {"datetaken": "2005-03-27 22:52:34", "license": "2", "title": "1980s Oxbow with Jeremy, Christy and Tina", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7646786_eaf7fc9ae9_o.jpg", "secret": "eaf7fc9ae9", "media": "photo", "latitude": "0", "id": "7646786", "tags": "1980s scannedphotos classics saskatchewan oxbow tree"}, {"datetaken": "2005-03-27 22:52:56", "license": "2", "title": "1980s Politician's early start as a magician", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7646818_abbfe17559_o.jpg", "secret": "abbfe17559", "media": "photo", "latitude": "0", "id": "7646818", "tags": "1980s scannedphotos classics saskatchewan wadena"}, {"datetaken": "2005-03-27 22:53:21", "license": "2", "title": "1980s Riding a Calf", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7646844_410a772d92_o.jpg", "secret": "410a772d92", "media": "photo", "latitude": "0", "id": "7646844", "tags": "1980s scannedphotos classics cow animals carnduff farm saskatchewan"}, {"datetaken": "2005-03-27 22:53:51", "license": "2", "title": "1980s Riding a Colt", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7646898_d1cf4af620_o.jpg", "secret": "d1cf4af620", "media": "photo", "latitude": "0", "id": "7646898", "tags": "1980s scannedphotos classics animals horse carnduff saskatchewan"}, {"datetaken": "2005-03-27 22:54:11", "license": "2", "title": "1980s Swinging with Crystal", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7646932_45d1a9b1c0_o.jpg", "secret": "45d1a9b1c0", "media": "photo", "latitude": "0", "id": "7646932", "tags": "1980s scannedphotos classics wadena saskatchewan crystal"}, {"datetaken": "2005-03-27 22:54:33", "license": "2", "title": "1980s Tea Party", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7646977_bd1bedcc17_o.jpg", "secret": "bd1bedcc17", "media": "photo", "latitude": "0", "id": "7646977", "tags": "1980s scannedphotos classics tea party saskatchewan wadena"}, {"datetaken": "2005-03-27 22:54:56", "license": "2", "title": "1980s Three in a Row", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7647008_44d2157164_o.jpg", "secret": "44d2157164", "media": "photo", "latitude": "0", "id": "7647008", "tags": "1980s scannedphotos classics saskatchewan winter brothers"}, {"datetaken": "2005-03-27 22:55:16", "license": "2", "title": "1980s Too many dance partners", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7647044_acce3532b5_o.jpg", "secret": "acce3532b5", "media": "photo", "latitude": "0", "id": "7647044", "tags": "1980s scannedphotos classics saskatchewan dancing"}, {"datetaken": "2005-03-27 22:55:33", "license": "2", "title": "1980s with a Colt", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7647077_f3ccd70fd7_o.jpg", "secret": "f3ccd70fd7", "media": "photo", "latitude": "0", "id": "7647077", "tags": "1980s scannedphotos classics carnduff saskatchewan horse animals"}, {"datetaken": "2005-03-27 22:55:56", "license": "2", "title": "1980s with Grandma Banks", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7647135_9b2d2cf3ab_o.jpg", "secret": "9b2d2cf3ab", "media": "photo", "latitude": "0", "id": "7647135", "tags": "1980s scannedphotos classics oxbow saskatchewan"}, {"datetaken": "2005-03-27 22:56:16", "license": "2", "title": "1980s with Grandma Glennie", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7647176_d995c62df6_o.jpg", "secret": "d995c62df6", "media": "photo", "latitude": "0", "id": "7647176", "tags": "1980s scannedphotos classics oxbow saskatchewan"}, {"datetaken": "2005-03-27 22:56:38", "license": "2", "title": "1980s with Grandpa Banks", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7647217_151c02777f_o.jpg", "secret": "151c02777f", "media": "photo", "latitude": "0", "id": "7647217", "tags": "1980s scannedphotos classics oxbow saskatchewan"}, {"datetaken": "2005-03-27 22:56:55", "license": "2", "title": "1980s with Grandpa Glennie", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7647238_b67c18f0f8_o.jpg", "secret": "b67c18f0f8", "media": "photo", "latitude": "0", "id": "7647238", "tags": "1980s scannedphotos classics oxbow saskatchewan"}, {"datetaken": "2005-03-27 22:57:30", "license": "2", "title": "1980s Wood Chopping", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7647302_2e8561386b_o.jpg", "secret": "2e8561386b", "media": "photo", "latitude": "0", "id": "7647302", "tags": "1980s scannedphotos classics saskatchewan winter axe"}, {"datetaken": "2005-03-27 22:57:49", "license": "2", "title": "1980s wrestling with Uncle Wes", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7647316_160abd5c52_o.jpg", "secret": "160abd5c52", "media": "photo", "latitude": "0", "id": "7647316", "tags": "1980s scannedphotos classics carnduff saskatchewan wrestling"}, {"datetaken": "2005-03-27 22:58:14", "license": "2", "title": "1985 new arrivals", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7647354_ab66f1654e_o.jpg", "secret": "ab66f1654e", "media": "photo", "latitude": "0", "id": "7647354", "tags": "1980s scannedphotos classics saskatchewan wadena dog animals"}, {"datetaken": "2005-03-27 22:58:37", "license": "2", "title": "1985 Young Glennie Family", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7647385_5211840fc8_o.jpg", "secret": "5211840fc8", "media": "photo", "latitude": "0", "id": "7647385", "tags": "1980s scannedphotos classics wadena saskatchewan dog animals"}, {"datetaken": "2005-03-27 22:59:04", "license": "2", "title": "1986 with Devin", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7647427_9e914903a6_o.jpg", "secret": "9e914903a6", "media": "photo", "latitude": "0", "id": "7647427", "tags": "1980s scannedphotos classics saskatchewan wadena"}, {"datetaken": "2005-03-27 22:59:24", "license": "2", "title": "1987 First Day of School", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7647456_4c374ac52f_o.jpg", "secret": "4c374ac52f", "media": "photo", "latitude": "0", "id": "7647456", "tags": "1980s scannedphotos classics saskatchewan wadena"}, {"datetaken": "2005-03-27 23:00:02", "license": "2", "title": "Early 1950s Grandpa Glennie and tractor", "text": "", "album_id": "190837", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7647511_9e5965fb7f_o.jpg", "secret": "9e5965fb7f", "media": "photo", "latitude": "0", "id": "7647511", "tags": "1980s scannedphotos classics"}, {"datetaken": "2005-03-26 17:23:41", "license": "3", "title": "IMG_4866: Tricia", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8554224_8711001a48_o.jpg", "secret": "8711001a48", "media": "photo", "latitude": "0", "id": "8554224", "tags": "birthday family party"}, {"datetaken": "2005-03-26 17:23:47", "license": "3", "title": "IMG_4867: Sarah", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8554245_521115cbc1_o.jpg", "secret": "521115cbc1", "media": "photo", "latitude": "0", "id": "8554245", "tags": "birthday party"}, {"datetaken": "2005-03-26 17:24:25", "license": "3", "title": "IMG_4869: Stacey and Lorrie", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8554307_d4f52c5f72_o.jpg", "secret": "d4f52c5f72", "media": "photo", "latitude": "0", "id": "8554307", "tags": "birthday family party"}, {"datetaken": "2005-03-26 17:24:48", "license": "3", "title": "IMG_4870: Alex Holds Up a Present", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8554364_fd84ff6302_o.jpg", "secret": "fd84ff6302", "media": "photo", "latitude": "0", "id": "8554364", "tags": "birthday family party"}, {"datetaken": "2005-03-26 17:25:06", "license": "3", "title": "IMG_4871: Joie", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8554373_09603507b5_o.jpg", "secret": "09603507b5", "media": "photo", "latitude": "0", "id": "8554373", "tags": "birthday family party"}, {"datetaken": "2005-03-26 17:25:12", "license": "3", "title": "IMG_4873: Mom", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8554400_b3e8c02f72_o.jpg", "secret": "b3e8c02f72", "media": "photo", "latitude": "0", "id": "8554400", "tags": "birthday family party"}, {"datetaken": "2005-03-26 17:25:36", "license": "3", "title": "IMG_4874: Patrick", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8554409_b53ed9e212_o.jpg", "secret": "b53ed9e212", "media": "photo", "latitude": "0", "id": "8554409", "tags": "birthday party"}, {"datetaken": "2005-03-26 17:27:06", "license": "3", "title": "IMG_4877: Tricia", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8554436_f69416a36a_o.jpg", "secret": "f69416a36a", "media": "photo", "latitude": "0", "id": "8554436", "tags": "birthday family party"}, {"datetaken": "2005-03-26 17:27:17", "license": "3", "title": "IMG_4878: Alex Photographs Me", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8554460_a8b8efcb1f_o.jpg", "secret": "a8b8efcb1f", "media": "photo", "latitude": "0", "id": "8554460", "tags": "birthday family party"}, {"datetaken": "2005-03-26 17:29:12", "license": "3", "title": "IMG_4880: Rocky Inspects Alex's Hand", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8554466_110cea7fdf_o.jpg", "secret": "110cea7fdf", "media": "photo", "latitude": "0", "id": "8554466", "tags": "birthday family party dog animal rottweiler"}, {"datetaken": "2005-03-26 17:29:24", "license": "3", "title": "IMG_4881: Sarah and Rocky", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8554483_1c704e8e8a_o.jpg", "secret": "1c704e8e8a", "media": "photo", "latitude": "0", "id": "8554483", "tags": "birthday family party dog animal rottweiler"}, {"datetaken": "2005-03-26 17:30:25", "license": "3", "title": "IMG_4884: Rocky and Alex", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8554502_313af3a60a_o.jpg", "secret": "313af3a60a", "media": "photo", "latitude": "0", "id": "8554502", "tags": "birthday family party dog animal rottweiler"}, {"datetaken": "2005-03-26 17:30:31", "license": "3", "title": "IMG_4885: Rocky and Alex", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8554522_e132fedc00_o.jpg", "secret": "e132fedc00", "media": "photo", "latitude": "0", "id": "8554522", "tags": "birthday family party dog animal rottweiler"}, {"datetaken": "2005-03-26 17:33:50", "license": "3", "title": "IMG_4888: Rocky", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8554534_f6244321bc_o.jpg", "secret": "f6244321bc", "media": "photo", "latitude": "0", "id": "8554534", "tags": "birthday family party dog animal rottweiler"}, {"datetaken": "2005-03-26 17:34:05", "license": "3", "title": "IMG_4890: Rocky", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8554548_0f2a28dd2b_o.jpg", "secret": "0f2a28dd2b", "media": "photo", "latitude": "0", "id": "8554548", "tags": "birthday family party dog animal rottweiler"}, {"datetaken": "2005-03-26 17:34:55", "license": "3", "title": "IMG_4893: Alex and Rocky", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8554599_69ac319944_o.jpg", "secret": "69ac319944", "media": "photo", "latitude": "0", "id": "8554599", "tags": "birthday family party dog animal rottweiler"}, {"datetaken": "2005-03-26 17:35:29", "license": "3", "title": "IMG_4895: Alex Shows his Gift to JoAnn, Joie and Tricia", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8554616_65f62d53b4_o.jpg", "secret": "65f62d53b4", "media": "photo", "latitude": "0", "id": "8554616", "tags": "birthday family party"}, {"datetaken": "2005-03-26 17:36:09", "license": "3", "title": "IMG_4896: Sarah Hides her Face", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8554634_ce79037fb8_o.jpg", "secret": "ce79037fb8", "media": "photo", "latitude": "0", "id": "8554634", "tags": "birthday party"}, {"datetaken": "2005-03-26 17:36:46", "license": "3", "title": "IMG_4897: Tricia", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8554653_1819210ad0_o.jpg", "secret": "1819210ad0", "media": "photo", "latitude": "0", "id": "8554653", "tags": "birthday family party"}, {"datetaken": "2005-03-26 17:39:59", "license": "3", "title": "IMG_4904: Tricia", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8554752_3f77a92492_o.jpg", "secret": "3f77a92492", "media": "photo", "latitude": "0", "id": "8554752", "tags": "birthday family party"}, {"datetaken": "2005-03-26 17:40:04", "license": "3", "title": "IMG_4905: Joie", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8554774_6455a644d4_o.jpg", "secret": "6455a644d4", "media": "photo", "latitude": "0", "id": "8554774", "tags": "birthday family party"}, {"datetaken": "2005-03-26 17:40:10", "license": "3", "title": "IMG_4906: Mom", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8554808_b32a44929d_o.jpg", "secret": "b32a44929d", "media": "photo", "latitude": "0", "id": "8554808", "tags": "birthday family party"}, {"datetaken": "2005-03-26 17:40:20", "license": "3", "title": "IMG_4907", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8554815_4971f3812a_o.jpg", "secret": "4971f3812a", "media": "photo", "latitude": "0", "id": "8554815", "tags": "birthday party"}, {"datetaken": "2005-03-26 17:43:14", "license": "3", "title": "IMG_4908: Alex and his \"twin\"", "text": "", "album_id": "212315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8554840_dd99d36675_o.jpg", "secret": "dd99d36675", "media": "photo", "latitude": "0", "id": "8554840", "tags": "birthday family party"}, {"datetaken": "2004-06-13 20:50:58", "license": "3", "title": "CRW_3155: Crystal, Evelyn and Jarrod", "text": "", "album_id": "244660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9908992_198072b76e_o.jpg", "secret": "198072b76e", "media": "photo", "latitude": "0", "id": "9908992", "tags": "birthday family party"}, {"datetaken": "2004-06-13 20:51:08", "license": "3", "title": "CRW_3156: Crystal, Evelyn and Jarrod", "text": "", "album_id": "244660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9909025_5493e93f44_o.jpg", "secret": "5493e93f44", "media": "photo", "latitude": "0", "id": "9909025", "tags": "birthday family party"}, {"datetaken": "2004-06-13 20:51:40", "license": "3", "title": "CRW_3158: Crystal, Evelyn and Jarrod", "text": "", "album_id": "244660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9909053_8e9e39a490_o.jpg", "secret": "8e9e39a490", "media": "photo", "latitude": "0", "id": "9909053", "tags": "birthday family party"}, {"datetaken": "2004-06-13 20:52:22", "license": "3", "title": "CRW_3160: Alex", "text": "", "album_id": "244660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9909079_40edfd0d65_o.jpg", "secret": "40edfd0d65", "media": "photo", "latitude": "0", "id": "9909079", "tags": "birthday family party"}, {"datetaken": "2004-06-13 20:52:46", "license": "3", "title": "CRW_3162: Alex's Head Wound", "text": "", "album_id": "244660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9909096_be86e8acd5_o.jpg", "secret": "be86e8acd5", "media": "photo", "latitude": "0", "id": "9909096", "tags": "birthday family party"}, {"datetaken": "2004-06-13 20:53:30", "license": "3", "title": "CRW_3164: Mom", "text": "", "album_id": "244660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9909115_691651c6e3_o.jpg", "secret": "691651c6e3", "media": "photo", "latitude": "0", "id": "9909115", "tags": "birthday family party"}, {"datetaken": "2004-06-13 20:53:50", "license": "3", "title": "CRW_3165: Evelyn", "text": "", "album_id": "244660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9909140_fd80cbce93_o.jpg", "secret": "fd80cbce93", "media": "photo", "latitude": "0", "id": "9909140", "tags": "birthday family party"}, {"datetaken": "2004-06-13 20:54:16", "license": "3", "title": "CRW_3166: Tricia", "text": "", "album_id": "244660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9909161_5bfab9f142_o.jpg", "secret": "5bfab9f142", "media": "photo", "latitude": "0", "id": "9909161", "tags": "birthday family party"}, {"datetaken": "2004-06-13 20:54:24", "license": "3", "title": "CRW_3167: Jarrod", "text": "", "album_id": "244660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9909181_a2b5edfeed_o.jpg", "secret": "a2b5edfeed", "media": "photo", "latitude": "0", "id": "9909181", "tags": "birthday family party"}, {"datetaken": "2004-06-13 20:56:48", "license": "3", "title": "CRW_3168: Margo", "text": "", "album_id": "244660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9909199_54c1072168_o.jpg", "secret": "54c1072168", "media": "photo", "latitude": "0", "id": "9909199", "tags": "birthday party"}, {"datetaken": "2004-06-13 20:58:26", "license": "3", "title": "CRW_3170: Crystal", "text": "", "album_id": "244660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9909214_1d2a3844e1_o.jpg", "secret": "1d2a3844e1", "media": "photo", "latitude": "0", "id": "9909214", "tags": "birthday family party"}, {"datetaken": "2004-06-13 20:59:10", "license": "3", "title": "CRW_3172", "text": "", "album_id": "244660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9909229_f1f9a09ef4_o.jpg", "secret": "f1f9a09ef4", "media": "photo", "latitude": "0", "id": "9909229", "tags": "birthday family party"}, {"datetaken": "2004-06-13 21:00:06", "license": "3", "title": "CRW_3173: Evelyn", "text": "", "album_id": "244660", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9909260_977824b268_o.jpg", "secret": "977824b268", "media": "photo", "latitude": "0", "id": "9909260", "tags": "birthday family party"}, {"datetaken": "2005-01-30 22:09:12", "license": "2", "title": "Jason's 25th Birthday", "text": "", "album_id": "101475", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4023530_46b573f636_o.jpg", "secret": "46b573f636", "media": "photo", "latitude": "0", "id": "4023530", "tags": "birthday brookline ned jill juliet"}, {"datetaken": "2005-01-30 22:09:30", "license": "2", "title": "Jason's 25th Birthday", "text": "", "album_id": "101475", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4023514_d45b322d9c_o.jpg", "secret": "d45b322d9c", "media": "photo", "latitude": "0", "id": "4023514", "tags": "birthday brookline jason liz"}, {"datetaken": "2005-01-30 23:09:37", "license": "2", "title": "Jason's 25th Birthday", "text": "", "album_id": "101475", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4023540_a3a43bd68f_o.jpg", "secret": "a3a43bd68f", "media": "photo", "latitude": "0", "id": "4023540", "tags": "brookline birthday adam brum margaret"}, {"datetaken": "2005-01-30 23:55:43", "license": "2", "title": "Jason's 25th Birthday", "text": "", "album_id": "101475", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4023555_06ca58f304_o.jpg", "secret": "06ca58f304", "media": "photo", "latitude": "0", "id": "4023555", "tags": "birthday brookline presley nedward liz"}, {"datetaken": "2005-01-30 23:56:29", "license": "2", "title": "Jason's 25th Birthday", "text": "", "album_id": "101475", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4024152_f0f0cc0539_o.jpg", "secret": "f0f0cc0539", "media": "photo", "latitude": "0", "id": "4024152", "tags": "birthday brookline nedward"}, {"datetaken": "2005-01-31 00:00:18", "license": "2", "title": "Jason's 25th Birthday", "text": "", "album_id": "101475", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4024170_472b90f21a_o.jpg", "secret": "472b90f21a", "media": "photo", "latitude": "0", "id": "4024170", "tags": "birthday brookline bryan jill"}, {"datetaken": "2005-01-31 00:02:28", "license": "2", "title": "Jason's 25th Birthday", "text": "", "album_id": "101475", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4024175_3eb8d33c74_o.jpg", "secret": "3eb8d33c74", "media": "photo", "latitude": "0", "id": "4024175", "tags": "birthday brookline jill"}, {"datetaken": "2005-01-31 00:03:24", "license": "2", "title": "Jason's 25th Birthday", "text": "", "album_id": "101475", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4024186_4353b6ad6b_o.jpg", "secret": "4353b6ad6b", "media": "photo", "latitude": "0", "id": "4024186", "tags": "birthday brookline bryan jill"}, {"datetaken": "2005-01-31 00:07:41", "license": "2", "title": "Jason's 25th Birthday", "text": "", "album_id": "101475", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4024197_b95b521dba_o.jpg", "secret": "b95b521dba", "media": "photo", "latitude": "0", "id": "4024197", "tags": "birthday brookline presley nedward"}, {"datetaken": "2005-01-31 00:09:37", "license": "2", "title": "Jason's 25th Birthday", "text": "", "album_id": "101475", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4024204_05a1acedc7_o.jpg", "secret": "05a1acedc7", "media": "photo", "latitude": "0", "id": "4024204", "tags": "birthday brookline presley juliet"}, {"datetaken": "2010-05-31 19:23:13", "license": "1", "title": "Demonstration in Tel-Aviv supporting the Free Gaza aid flotilla", "text": "", "album_id": "72157624189455880", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4663208603_e818261d31_o.jpg", "secret": "eb6d495ffe", "media": "photo", "latitude": "0", "id": "4663208603", "tags": "army israel massacre palestine demonstration pirate occupation zionist warcrime flotilla humaniterian freegaza"}, {"datetaken": "2010-05-31 19:27:20", "license": "4", "title": "Demonstration in Tel-Aviv supporting the Free Gaza aid flotilla", "text": "", "album_id": "72157624189455880", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4663831834_7e8042c2b9_o.jpg", "secret": "75ef9816d3", "media": "photo", "latitude": "0", "id": "4663831834", "tags": "army israel massacre palestine demonstration pirate occupation zionist warcrime flotilla humaniterian freegaza"}, {"datetaken": "2010-05-31 19:30:25", "license": "1", "title": "Demonstration in Tel-Aviv supporting the Free Gaza aid flotilla", "text": "", "album_id": "72157624189455880", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4663832450_72b905d6bc_o.jpg", "secret": "c29364cb9c", "media": "photo", "latitude": "0", "id": "4663832450", "tags": "army israel massacre palestine demonstration pirate occupation zionist warcrime flotilla humaniterian freegaza"}, {"datetaken": "2010-05-31 19:33:17", "license": "1", "title": "Demonstration in Tel-Aviv supporting the Free Gaza aid flotilla", "text": "", "album_id": "72157624189455880", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4663210775_aed422f192_o.jpg", "secret": "b7dd070b95", "media": "photo", "latitude": "0", "id": "4663210775", "tags": "army israel massacre palestine demonstration pirate occupation zionist warcrime flotilla humaniterian freegaza"}, {"datetaken": "2010-05-31 19:38:08", "license": "1", "title": "Demonstration in Tel-Aviv supporting the Free Gaza aid flotilla", "text": "", "album_id": "72157624189455880", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4663834144_70efb94284_o.jpg", "secret": "ab25d88777", "media": "photo", "latitude": "0", "id": "4663834144", "tags": "army israel massacre palestine demonstration pirate occupation zionist warcrime flotilla humaniterian freegaza"}, {"datetaken": "2010-05-31 19:56:57", "license": "1", "title": "Demonstration in Tel-Aviv supporting the Free Gaza aid flotilla", "text": "", "album_id": "72157624189455880", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4663212133_dde9fa5e17_o.jpg", "secret": "3e7b4f90ea", "media": "photo", "latitude": "0", "id": "4663212133", "tags": "army israel massacre palestine demonstration pirate occupation zionist warcrime flotilla humaniterian freegaza"}, {"datetaken": "2010-05-31 20:00:25", "license": "1", "title": "Demonstration in Tel-Aviv supporting the Free Gaza aid flotilla", "text": "", "album_id": "72157624189455880", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1274/4663835226_8d3defcbfc_o.jpg", "secret": "f7d6ce8fb0", "media": "photo", "latitude": "0", "id": "4663835226", "tags": "army israel massacre palestine demonstration pirate occupation zionist warcrime flotilla humaniterian freegaza"}, {"datetaken": "2010-05-31 20:01:22", "license": "1", "title": "Demonstration in Tel-Aviv supporting the Free Gaza aid flotilla", "text": "", "album_id": "72157624189455880", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4663213243_e03e9efaf6_o.jpg", "secret": "72c00345ef", "media": "photo", "latitude": "0", "id": "4663213243", "tags": "army israel massacre palestine demonstration pirate occupation zionist warcrime flotilla humaniterian freegaza"}, {"datetaken": "2010-05-31 20:02:52", "license": "1", "title": "DSC_4880 - Version 2", "text": "", "album_id": "72157624189455880", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4663213769_4501ab68ca_o.jpg", "secret": "71ed5560d3", "media": "photo", "latitude": "0", "id": "4663213769", "tags": "army israel massacre palestine demonstration pirate occupation zionist warcrime flotilla humaniterian freegaza"}, {"datetaken": "2010-05-31 20:11:33", "license": "1", "title": "DSC_4886 - Version 2", "text": "", "album_id": "72157624189455880", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4663214373_3235a92327_o.jpg", "secret": "89cf10b8de", "media": "photo", "latitude": "0", "id": "4663214373", "tags": "army israel massacre palestine demonstration pirate occupation zionist warcrime flotilla humaniterian freegaza"}, {"datetaken": "2010-05-31 20:14:44", "license": "1", "title": "Demonstration in Tel-Aviv supporting the Free Gaza aid flotilla", "text": "", "album_id": "72157624189455880", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4663837822_2849f69e46_o.jpg", "secret": "ba8ffbbbb3", "media": "photo", "latitude": "0", "id": "4663837822", "tags": "army israel massacre palestine demonstration pirate occupation zionist warcrime flotilla humaniterian freegaza"}, {"datetaken": "2010-05-31 20:18:19", "license": "1", "title": "Demonstration in Tel-Aviv supporting the Free Gaza aid flotilla", "text": "", "album_id": "72157624189455880", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1307/4663215819_9a54f6247d_o.jpg", "secret": "c7d22d0eff", "media": "photo", "latitude": "0", "id": "4663215819", "tags": "army israel massacre palestine demonstration pirate occupation zionist warcrime flotilla humaniterian freegaza"}, {"datetaken": "2007-04-03 00:16:13", "license": "4", "title": "Rock outcrop A crop test", "text": "", "album_id": "72157600044694535", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/444643608_3e0640d571_o.jpg", "secret": "07f0458e82", "media": "photo", "latitude": "0", "id": "444643608", "tags": "olympus e500"}, {"datetaken": "2007-04-03 00:20:07", "license": "4", "title": "Rock Outcrop C", "text": "", "album_id": "72157600044694535", "longitude": "0", "url_o": "https://farm1.staticflickr.com/234/444652445_6b254c5ba0_o.jpg", "secret": "02f0869e20", "media": "photo", "latitude": "0", "id": "444652445", "tags": "panorama olympus handheld e500"}, {"datetaken": "2007-04-03 00:21:55", "license": "4", "title": "Windmills - old & new", "text": "", "album_id": "72157600044694535", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/444653657_a6ad57bf88_o.jpg", "secret": "039a6778c4", "media": "photo", "latitude": "0", "id": "444653657", "tags": "panorama olympus handheld e500"}, {"datetaken": "2007-04-03 00:23:48", "license": "4", "title": "SE crop test", "text": "", "album_id": "72157600044694535", "longitude": "0", "url_o": "https://farm1.staticflickr.com/243/444649278_f993d54f7f_o.jpg", "secret": "77d1d9f2b9", "media": "photo", "latitude": "0", "id": "444649278", "tags": "panorama olympus handheld 40mm e500"}, {"datetaken": "2007-04-03 00:46:16", "license": "4", "title": "Windmills - old and new", "text": "", "album_id": "72157600044694535", "longitude": "0", "url_o": "https://farm1.staticflickr.com/247/444669209_2fbeb44250_o.jpg", "secret": "a9bcbf9d17", "media": "photo", "latitude": "0", "id": "444669209", "tags": "olympus e500"}, {"datetaken": "2007-04-03 00:46:26", "license": "4", "title": "Windmills - old and new", "text": "", "album_id": "72157600044694535", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/444663444_29cfea4004_o.jpg", "secret": "0d42df6675", "media": "photo", "latitude": "0", "id": "444663444", "tags": "olympus e500"}, {"datetaken": "2007-04-03 00:46:37", "license": "4", "title": "Windmill Black & White", "text": "", "album_id": "72157600044694535", "longitude": "0", "url_o": "https://farm1.staticflickr.com/201/444663562_39d5462a91_o.jpg", "secret": "a7404c1f25", "media": "photo", "latitude": "0", "id": "444663562", "tags": "bw white black olympus e500"}, {"datetaken": "2007-04-03 00:46:57", "license": "4", "title": "Graffiti - Jim W from 1923", "text": "", "album_id": "72157600044694535", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/444663756_231300c898_o.jpg", "secret": "68117914cb", "media": "photo", "latitude": "0", "id": "444663756", "tags": "olympus handheld e500"}, {"datetaken": "2007-04-03 16:26:58", "license": "4", "title": "Windmills old-n-new Sepia", "text": "", "album_id": "72157600044694535", "longitude": "0", "url_o": "https://farm1.staticflickr.com/246/445450747_726af3a44f_o.jpg", "secret": "74bb32f030", "media": "photo", "latitude": "0", "id": "445450747", "tags": "olympus e500"}, {"datetaken": "2007-04-03 16:27:05", "license": "4", "title": "Windmills old-n-new", "text": "", "album_id": "72157600044694535", "longitude": "0", "url_o": "https://farm1.staticflickr.com/246/445446486_d81e1fd963_o.jpg", "secret": "87d3608ec2", "media": "photo", "latitude": "0", "id": "445446486", "tags": "olympus e500"}, {"datetaken": "2007-04-03 16:27:13", "license": "4", "title": "Windmills old-n-new", "text": "", "album_id": "72157600044694535", "longitude": "0", "url_o": "https://farm1.staticflickr.com/232/445450989_96c607de99_o.jpg", "secret": "cda983cfe8", "media": "photo", "latitude": "0", "id": "445450989", "tags": "olympus e500"}, {"datetaken": "2007-04-03 16:28:31", "license": "4", "title": "First spire", "text": "", "album_id": "72157600044694535", "longitude": "0", "url_o": "https://farm1.staticflickr.com/230/445447636_18be17fd8d_o.jpg", "secret": "d5e3e31687", "media": "photo", "latitude": "0", "id": "445447636", "tags": "olympus e500"}, {"datetaken": "2005-04-30 08:50:48", "license": "1", "title": "View from the Trail", "text": "", "album_id": "301242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/12269123_90fa551e6d_o.jpg", "secret": "90fa551e6d", "media": "photo", "latitude": "0", "id": "12269123", "tags": "delvalle ohlone"}, {"datetaken": "2005-04-30 08:59:57", "license": "1", "title": "Acorn Cache", "text": "", "album_id": "301242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/12265427_5414dec52e_o.jpg", "secret": "5414dec52e", "media": "photo", "latitude": "0", "id": "12265427", "tags": "delvalle ohlone acornwoodpecker melanerpesformicivorus acorn cache tree"}, {"datetaken": "2005-04-30 09:00:15", "license": "1", "title": "The Woodpecker's Pantry", "text": "", "album_id": "301242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/12265428_7ae14a4f8c_o.jpg", "secret": "7ae14a4f8c", "media": "photo", "latitude": "0", "id": "12265428", "tags": "delvalle ohlone acornwoodpecker melanerpesformicivorus acorn cache tree"}, {"datetaken": "2005-04-30 09:44:58", "license": "1", "title": "Green Mule Ears", "text": "", "album_id": "301242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/12265431_5edc09c979_o.jpg", "secret": "5edc09c979", "media": "photo", "latitude": "0", "id": "12265431", "tags": "delvalle ohlone greenmuleears wyethiaglabra wyethia"}, {"datetaken": "2005-04-30 09:47:45", "license": "1", "title": "Cool Slug", "text": "", "album_id": "301242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/12265429_875dbb4e5b_o.jpg", "secret": "875dbb4e5b", "media": "photo", "latitude": "0", "id": "12265429", "tags": "delvalle ohlone slug"}, {"datetaken": "2005-04-30 11:07:29", "license": "1", "title": "Flowery Fields", "text": "", "album_id": "301242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/12265426_81ebe58c15_o.jpg", "secret": "81ebe58c15", "media": "photo", "latitude": "0", "id": "12265426", "tags": "delvalle ohlone wildflowers california"}, {"datetaken": "2005-04-30 11:52:24", "license": "1", "title": "Murietta Falls", "text": "", "album_id": "301242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12265432_6ed36c17cb_o.jpg", "secret": "6ed36c17cb", "media": "photo", "latitude": "0", "id": "12265432", "tags": "delvalle ohlone muriettafalls"}, {"datetaken": "2005-04-30 11:54:18", "license": "1", "title": "Quartz", "text": "", "album_id": "301242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12269125_d6a9e067fb_o.jpg", "secret": "d6a9e067fb", "media": "photo", "latitude": "0", "id": "12269125", "tags": "delvalle ohlone quartz crystal"}, {"datetaken": "2005-04-30 11:55:57", "license": "1", "title": "Me at Murietta Falls", "text": "", "album_id": "301242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/12269126_e4bcca088c_o.jpg", "secret": "e4bcca088c", "media": "photo", "latitude": "0", "id": "12269126", "tags": "delvalle ohlone"}, {"datetaken": "2005-04-30 12:07:55", "license": "1", "title": "Before Murietta Falls", "text": "", "album_id": "301242", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/12269122_66d4bbaf33_o.jpg", "secret": "66d4bbaf33", "media": "photo", "latitude": "0", "id": "12269122", "tags": "delvalle ohlone muriettafalls"}, {"datetaken": "2010-05-04 00:24:50", "license": "1", "title": "Japan Service Area", "text": "", "album_id": "72157623858970227", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4574572107_90fcb94478_o.jpg", "secret": "4b0589d94c", "media": "photo", "latitude": "0", "id": "4574572107", "tags": ""}, {"datetaken": "2010-05-04 00:24:53", "license": "1", "title": "Japan Service Area", "text": "", "album_id": "72157623858970227", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3408/4574572349_ed76df1d8f_o.jpg", "secret": "3728e85670", "media": "photo", "latitude": "0", "id": "4574572349", "tags": ""}, {"datetaken": "2010-05-04 00:24:57", "license": "1", "title": "Japan Service Area", "text": "", "album_id": "72157623858970227", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4575206990_3935b80a87_o.jpg", "secret": "fb872e446b", "media": "photo", "latitude": "0", "id": "4575206990", "tags": ""}, {"datetaken": "2010-05-04 00:25:03", "license": "1", "title": "Japan Service Area", "text": "", "album_id": "72157623858970227", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3414/4575207294_9a6e1e2dec_o.jpg", "secret": "a141499eeb", "media": "photo", "latitude": "0", "id": "4575207294", "tags": ""}, {"datetaken": "2010-05-04 00:25:06", "license": "1", "title": "Japan Service Area", "text": "", "album_id": "72157623858970227", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4574573011_a4cb24e9f2_o.jpg", "secret": "7b75c03d57", "media": "photo", "latitude": "0", "id": "4574573011", "tags": ""}, {"datetaken": "2010-05-04 00:25:09", "license": "1", "title": "Japan Service Area", "text": "", "album_id": "72157623858970227", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4574573203_225a76d2c5_o.jpg", "secret": "ff8f615ebc", "media": "photo", "latitude": "0", "id": "4574573203", "tags": ""}, {"datetaken": "2010-05-04 00:25:13", "license": "1", "title": "Japan Service Area", "text": "", "album_id": "72157623858970227", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3358/4574573361_13e1496f25_o.jpg", "secret": "b181db8e2b", "media": "photo", "latitude": "0", "id": "4574573361", "tags": ""}, {"datetaken": "2010-05-04 00:25:16", "license": "1", "title": "Japan Service Area", "text": "", "album_id": "72157623858970227", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4574573547_9a20eef9dd_o.jpg", "secret": "e78bc4401f", "media": "photo", "latitude": "0", "id": "4574573547", "tags": ""}, {"datetaken": "2010-05-04 00:25:19", "license": "1", "title": "Japan Service Area", "text": "", "album_id": "72157623858970227", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3413/4575208086_f988a65a6a_o.jpg", "secret": "f706b7ac7a", "media": "photo", "latitude": "0", "id": "4575208086", "tags": ""}, {"datetaken": "2010-05-04 00:25:23", "license": "1", "title": "Japan Service Area", "text": "", "album_id": "72157623858970227", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4574573889_fd171f5d9a_o.jpg", "secret": "67df0753f3", "media": "photo", "latitude": "0", "id": "4574573889", "tags": ""}, {"datetaken": "2010-05-04 00:25:26", "license": "1", "title": "Japan Service Area", "text": "", "album_id": "72157623858970227", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3332/4575208404_5d7d53e960_o.jpg", "secret": "81cda08f25", "media": "photo", "latitude": "0", "id": "4575208404", "tags": ""}, {"datetaken": "2010-05-04 00:25:29", "license": "1", "title": "Japan Service Area", "text": "", "album_id": "72157623858970227", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4574574231_d15d23372d_o.jpg", "secret": "bdefb65a8a", "media": "photo", "latitude": "0", "id": "4574574231", "tags": ""}, {"datetaken": "2010-05-04 00:25:32", "license": "1", "title": "Japan Service Area", "text": "", "album_id": "72157623858970227", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3370/4575208740_c80c4b5af8_o.jpg", "secret": "d899ac8c2f", "media": "photo", "latitude": "0", "id": "4575208740", "tags": ""}, {"datetaken": "2010-05-04 00:25:36", "license": "1", "title": "Japan Service Area", "text": "", "album_id": "72157623858970227", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3377/4575208952_eb69e0fa0d_o.jpg", "secret": "6b0ed9cb79", "media": "photo", "latitude": "0", "id": "4575208952", "tags": ""}, {"datetaken": "2010-05-04 00:25:39", "license": "1", "title": "Japan Service Area", "text": "", "album_id": "72157623858970227", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4574574661_63d0ec261d_o.jpg", "secret": "a1790712a6", "media": "photo", "latitude": "0", "id": "4574574661", "tags": ""}, {"datetaken": "2010-05-04 00:25:42", "license": "1", "title": "Japan Service Area", "text": "", "album_id": "72157623858970227", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3400/4575209328_b7a22d2c5e_o.jpg", "secret": "2f5aedc136", "media": "photo", "latitude": "0", "id": "4575209328", "tags": ""}, {"datetaken": "2010-05-04 00:25:45", "license": "1", "title": "Japan Service Area", "text": "", "album_id": "72157623858970227", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4574574995_fa81f32e4a_o.jpg", "secret": "2fa861ff8a", "media": "photo", "latitude": "0", "id": "4574574995", "tags": ""}, {"datetaken": "2010-05-03 12:40:52", "license": "1", "title": "Wesley Memorial Church, Oxford", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4575423825_fd2a60df77_o.jpg", "secret": "eb3f841d4c", "media": "photo", "latitude": "0", "id": "4575423825", "tags": "church raw may oxford 2010 wesleymemorialchurch"}, {"datetaken": "2010-05-03 13:34:58", "license": "1", "title": "The new Ashmolean interior", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4576058960_0dcbbb5529_o.jpg", "secret": "068954ff9d", "media": "photo", "latitude": "0", "id": "4576058960", "tags": "architecture raw may oxford interiordesign 2010 ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 13:35:56", "license": "1", "title": "The new Ashmolean interior", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4575425885_04e968cf78_o.jpg", "secret": "6fc15520c1", "media": "photo", "latitude": "0", "id": "4575425885", "tags": "architecture raw may oxford interiordesign 2010 ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 13:36:41", "license": "1", "title": "India exhibit 1", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4576059884_7d5e5f3619_o.jpg", "secret": "58b1ccee36", "media": "photo", "latitude": "0", "id": "4576059884", "tags": "india raw may oxford 2010 antiquities ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 13:41:07", "license": "1", "title": "India exhibit 2", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4575426917_1c2379552f_o.jpg", "secret": "eeb28eaab8", "media": "photo", "latitude": "0", "id": "4575426917", "tags": "india raw may oxford 2010 antiquities ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 13:43:15", "license": "1", "title": "India exhibit 3", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3303/4575427401_c99d72b919_o.jpg", "secret": "a8ff7436e1", "media": "photo", "latitude": "0", "id": "4575427401", "tags": "india raw may oxford 2010 antiquities ashmolean ashmoleanmuseum niftyfifty"}, {"datetaken": "2010-05-03 13:43:42", "license": "1", "title": "India exhibit 4", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3416/4575427899_fd1fcf3321_o.jpg", "secret": "310408b034", "media": "photo", "latitude": "0", "id": "4575427899", "tags": "india raw may oxford 2010 antiquities ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 13:55:32", "license": "1", "title": "Ancestor 1", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4576061776_f113b117da_o.jpg", "secret": "db2a627a95", "media": "photo", "latitude": "0", "id": "4576061776", "tags": "skull raw may oxford 2010 ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 13:56:07", "license": "1", "title": "Ancestor 2", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4576062414_d09c3915a3_o.jpg", "secret": "af1e7ec70e", "media": "photo", "latitude": "0", "id": "4576062414", "tags": "skull raw may oxford 2010 ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 14:00:02", "license": "1", "title": "Bas, relieved", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4576063116_e5e3300e5e_o.jpg", "secret": "aba9662c67", "media": "photo", "latitude": "0", "id": "4576063116", "tags": "raw may greece oxford 2010 antiquities ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 14:01:32", "license": "1", "title": "Zeus approves", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4576063766_3ceb834d72_o.jpg", "secret": "71c95bba15", "media": "photo", "latitude": "0", "id": "4576063766", "tags": "architecture raw may greece oxford interiordesign 2010 ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 14:06:54", "license": "1", "title": "Busty", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3387/4575430893_2b5c7d2859_o.jpg", "secret": "70dc65c928", "media": "photo", "latitude": "0", "id": "4575430893", "tags": "architecture raw may oxford interiordesign 2010 ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 14:09:54", "license": "1", "title": "Sadness", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4576065024_876a08c363_o.jpg", "secret": "82b5f8da61", "media": "photo", "latitude": "0", "id": "4576065024", "tags": "sculpture raw may oxford 2010 busts ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 14:10:56", "license": "1", "title": "Smiling because?...", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4575432083_05fdc1e5a3_o.jpg", "secret": "5b6189dc0e", "media": "photo", "latitude": "0", "id": "4575432083", "tags": "sculpture raw may oxford 2010 busts ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 14:12:38", "license": "1", "title": "Twitcraft", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3404/4576066178_2e5572c398_o.jpg", "secret": "60c2b4d1b0", "media": "photo", "latitude": "0", "id": "4576066178", "tags": "raw may oxford 2010 needlecraft ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 14:13:30", "license": "1", "title": "Cuneiform rebellion", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4575433187_27b0a64309_o.jpg", "secret": "9628038cd0", "media": "photo", "latitude": "0", "id": "4575433187", "tags": "raw may oxford tablet cuneiform 2010 ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 14:14:42", "license": "1", "title": "Ashmolean basement", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4575433699_b06a0be926_o.jpg", "secret": "d21270e29c", "media": "photo", "latitude": "0", "id": "4575433699", "tags": "architecture raw may oxford interiordesign 2010 ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 14:15:44", "license": "1", "title": "Chinese calligraphy", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4576067824_1e625f4668_o.jpg", "secret": "fd07a8904d", "media": "photo", "latitude": "0", "id": "4576067824", "tags": "china raw chinese may oxford calligraphy 2010 ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 14:42:41", "license": "1", "title": "Egyptian tablet", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3363/4575435135_c1ff42dfcb_o.jpg", "secret": "3437a97e82", "media": "photo", "latitude": "0", "id": "4575435135", "tags": "raw may egypt oxford 2010 antiquities ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 14:43:25", "license": "1", "title": "Egyptian tablet", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4575435797_20e3bf6125_o.jpg", "secret": "86091cdd0b", "media": "photo", "latitude": "0", "id": "4575435797", "tags": "raw may egypt oxford 2010 antiquities ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 14:45:36", "license": "1", "title": "Detail from a tomb", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3408/4575436431_fd308e05aa_o.jpg", "secret": "c97e28c87f", "media": "photo", "latitude": "0", "id": "4575436431", "tags": "raw may egypt oxford 2010 antiquities ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 14:46:32", "license": "1", "title": "Carving", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4576070358_9c534536f1_o.jpg", "secret": "7cb945acd0", "media": "photo", "latitude": "0", "id": "4576070358", "tags": "raw may egypt oxford 2010 antiquities ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 14:49:19", "license": "1", "title": "Mummified cat", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4575437613_ea6ae8f5db_o.jpg", "secret": "14206ac251", "media": "photo", "latitude": "0", "id": "4575437613", "tags": "raw may egypt oxford 2010 antiquities ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 14:49:51", "license": "1", "title": "Old style takeaway", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4575438155_d98b47b6c9_o.jpg", "secret": "252d63cc06", "media": "photo", "latitude": "0", "id": "4575438155", "tags": "raw may oxford 2010 ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 15:04:36", "license": "1", "title": "Tulip", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4576072052_c17ec2a3f0_o.jpg", "secret": "436155b1d5", "media": "photo", "latitude": "0", "id": "4576072052", "tags": "flowers flower nature raw purple may oxford 2010 ashmolean ashmoleanmuseum"}, {"datetaken": "2010-05-03 15:05:13", "license": "1", "title": "St Giles", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3326/4576072504_c8129bc068_o.jpg", "secret": "6891268b89", "media": "photo", "latitude": "0", "id": "4576072504", "tags": "raw may oxford stgiles 2010 magdalenstreet magdalenst"}, {"datetaken": "2010-05-03 15:08:41", "license": "1", "title": "Magdelan Street, old style (?)", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3305/4575439595_f5cb7be986_o.jpg", "secret": "f06651716c", "media": "photo", "latitude": "0", "id": "4575439595", "tags": "raw may oxford 2010 magdalenstreet"}, {"datetaken": "2010-05-03 15:10:02", "license": "1", "title": "Ashmolean", "text": "", "album_id": "72157623860856945", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3412/4575440107_1d13d2d6ac_o.jpg", "secret": "6988ed145c", "media": "photo", "latitude": "0", "id": "4575440107", "tags": "raw may oxford 2010 ashmolean ashmoleanmuseum"}, {"datetaken": "2012-06-25 10:58:18", "license": "4", "title": "Grand Canyon Nat. Park; Desert View Point Refurbishing 1563", "text": "", "album_id": "72157630413349622", "longitude": "-111.837710", "url_o": "https://farm9.staticflickr.com/8430/7498712478_2af5d4539f_o.jpg", "secret": "bde8a34021", "media": "photo", "latitude": "36.038752", "id": "7498712478", "tags": "rock stone work point nationalpark grandcanyon masonry crew repair railing desertview watchtower"}, {"datetaken": "2012-06-25 11:27:31", "license": "4", "title": "Grand Canyon Nat. Park; Desert View Point Refurbishing 1587", "text": "", "album_id": "72157630413349622", "longitude": "-111.826010", "url_o": "https://farm9.staticflickr.com/8424/7498728150_9089e693f8_o.jpg", "secret": "bd74ebf36e", "media": "photo", "latitude": "36.043320", "id": "7498728150", "tags": "rock stone work point nationalpark grandcanyon masonry crew repair railing desertview watchtower"}, {"datetaken": "2012-06-25 11:34:26", "license": "4", "title": "Grand Canyon Nat. Park; Desert View Point Refurbishing 1610", "text": "", "album_id": "72157630413349622", "longitude": "-111.825433", "url_o": "https://farm9.staticflickr.com/8425/7498731914_ec955abfc5_o.jpg", "secret": "65e2997862", "media": "photo", "latitude": "36.042963", "id": "7498731914", "tags": "rock stone work point nationalpark grandcanyon masonry crew repair railing desertview watchtower"}, {"datetaken": "2012-06-25 11:35:39", "license": "4", "title": "Grand Canyon Nat. Park; Desert View Point Refurbishing 1617", "text": "", "album_id": "72157630413349622", "longitude": "-111.825597", "url_o": "https://farm9.staticflickr.com/8153/7498724674_5dc8d048e2_o.jpg", "secret": "743dc52d75", "media": "photo", "latitude": "36.042894", "id": "7498724674", "tags": "rock stone work point nationalpark grandcanyon masonry crew repair railing desertview watchtower"}, {"datetaken": "2012-06-25 11:51:00", "license": "4", "title": "Grand Canyon Nat. Park; Desert View Point Refurbishing", "text": "", "album_id": "72157630413349622", "longitude": "-111.825483", "url_o": "https://farm8.staticflickr.com/7127/7498758960_254da72cf6_o.jpg", "secret": "21b0c36786", "media": "photo", "latitude": "36.043250", "id": "7498758960", "tags": "rock stone work point nationalpark grandcanyon masonry crew repair railing desertview watchtower"}, {"datetaken": "2012-06-25 11:55:31", "license": "4", "title": "Grand Canyon Nat. Park; Desert View Point Refurbishing 1655", "text": "", "album_id": "72157630413349622", "longitude": "-111.825714", "url_o": "https://farm9.staticflickr.com/8025/7498720106_94abd874b5_o.jpg", "secret": "4eeff054d4", "media": "photo", "latitude": "36.043219", "id": "7498720106", "tags": "rock stone work point nationalpark grandcanyon masonry crew repair railing desertview watchtower"}, {"datetaken": "2012-06-25 11:57:21", "license": "4", "title": "Grand Canyon Nat. Park; Desert View Point Refurbishing 1663", "text": "", "album_id": "72157630413349622", "longitude": "-111.825877", "url_o": "https://farm9.staticflickr.com/8160/7498769012_cff86b7c6e_o.jpg", "secret": "6fd2604a15", "media": "photo", "latitude": "36.042717", "id": "7498769012", "tags": "rock stone work point nationalpark grandcanyon masonry crew repair railing desertview watchtower"}, {"datetaken": "2012-06-25 13:03:07", "license": "4", "title": "Grand Canyon Nat. Park; Desert View Point Refurbishing 1691", "text": "", "album_id": "72157630413349622", "longitude": "-111.825316", "url_o": "https://farm9.staticflickr.com/8421/7498753078_0069618020_o.jpg", "secret": "ae54efa0f3", "media": "photo", "latitude": "36.043234", "id": "7498753078", "tags": "rock stone work point nationalpark grandcanyon masonry crew repair railing desertview watchtower"}, {"datetaken": "2012-06-25 13:16:30", "license": "4", "title": "Grand Canyon Nat. Park; Desert View Point Refurbishing 1726", "text": "", "album_id": "72157630413349622", "longitude": "-111.825374", "url_o": "https://farm9.staticflickr.com/8165/7498707646_a838b439d6_o.jpg", "secret": "afbc61c2fa", "media": "photo", "latitude": "36.042954", "id": "7498707646", "tags": "rock stone work point nationalpark grandcanyon masonry crew repair railing desertview watchtower"}, {"datetaken": "2012-06-25 13:26:30", "license": "4", "title": "Grand Canyon Nat. Park; Desert View Point Refurbishing 1746", "text": "", "album_id": "72157630413349622", "longitude": "-111.826053", "url_o": "https://farm8.staticflickr.com/7131/7498764162_baecc77d12_o.jpg", "secret": "0583965621", "media": "photo", "latitude": "36.042903", "id": "7498764162", "tags": "rock stone work point nationalpark grandcanyon masonry crew repair railing desertview watchtower"}, {"datetaken": "2012-06-25 13:29:14", "license": "4", "title": "Grand Canyon Nat. Park; Desert View Point Refurbishing 1751", "text": "", "album_id": "72157630413349622", "longitude": "-111.826098", "url_o": "https://farm9.staticflickr.com/8141/7498772856_48dc7ca2b4_o.jpg", "secret": "59b39a0c2f", "media": "photo", "latitude": "36.043960", "id": "7498772856", "tags": "rock stone work point nationalpark grandcanyon masonry crew repair railing desertview watchtower"}, {"datetaken": "2012-06-25 13:40:20", "license": "4", "title": "Grand Canyon Nat. Park; Desert View Point Refurbishing 1773", "text": "", "album_id": "72157630413349622", "longitude": "-111.825507", "url_o": "https://farm9.staticflickr.com/8141/7498740376_7d1cd687a4_o.jpg", "secret": "4a362fcb81", "media": "photo", "latitude": "36.043231", "id": "7498740376", "tags": "rock stone work point nationalpark grandcanyon masonry crew repair railing desertview watchtower"}, {"datetaken": "2012-06-25 13:41:37", "license": "4", "title": "Grand Canyon Nat. Park; Desert View Point Refurbishing 1779", "text": "", "album_id": "72157630413349622", "longitude": "-111.825476", "url_o": "https://farm8.staticflickr.com/7256/7498744674_7cf73ccab9_o.jpg", "secret": "506fdf9ab9", "media": "photo", "latitude": "36.043010", "id": "7498744674", "tags": "rock stone work point nationalpark grandcanyon masonry crew repair railing desertview watchtower"}, {"datetaken": "2012-06-25 13:43:46", "license": "4", "title": "Grand Canyon Nat. Park; Desert View Point Refurbishing 1784", "text": "", "album_id": "72157630413349622", "longitude": "-111.825511", "url_o": "https://farm9.staticflickr.com/8012/7498735820_12d6c13df5_o.jpg", "secret": "8f83604125", "media": "photo", "latitude": "36.043361", "id": "7498735820", "tags": "rock stone work point nationalpark grandcanyon masonry crew repair railing desertview watchtower"}, {"datetaken": "2012-06-25 13:47:25", "license": "4", "title": "Grand Canyon Nat. Park; Desert View Point Refurbishing 1797", "text": "", "album_id": "72157630413349622", "longitude": "-111.825452", "url_o": "https://farm9.staticflickr.com/8166/7498716352_5af565546c_o.jpg", "secret": "8d448c3f47", "media": "photo", "latitude": "36.042919", "id": "7498716352", "tags": "rock stone work point nationalpark grandcanyon masonry crew repair railing desertview watchtower"}, {"datetaken": "2012-06-25 13:53:42", "license": "4", "title": "Grand Canyon Nat. Park; Desert View Point Refurbishing 1799", "text": "", "album_id": "72157630413349622", "longitude": "-111.825534", "url_o": "https://farm9.staticflickr.com/8294/7498748660_f93876cd3f_o.jpg", "secret": "165a54388a", "media": "photo", "latitude": "36.042856", "id": "7498748660", "tags": "rock stone work point nationalpark grandcanyon masonry crew repair railing desertview watchtower"}, {"datetaken": "2006-12-03 08:12:53", "license": "1", "title": "Ginger Leads Praise and Worship Practice", "text": "", "album_id": "72157594403688419", "longitude": "0", "url_o": "https://farm1.staticflickr.com/110/313089008_9c40654d57_o.jpg", "secret": "9c40654d57", "media": "photo", "latitude": "0", "id": "313089008", "tags": "church ginger keyboard singers practice assemblyofgod therockchurch churchwebsite praiseandworship"}, {"datetaken": "2006-12-03 08:22:52", "license": "1", "title": "Irma and Ernest Practice Songs", "text": "", "album_id": "72157594403688419", "longitude": "0", "url_o": "https://farm1.staticflickr.com/113/313112844_bac70605de_o.jpg", "secret": "bac70605de", "media": "photo", "latitude": "0", "id": "313112844", "tags": "usa church georgia valdosta singers ernest irma assemblyofgod therockchurch churchwebsite praiseandworship"}, {"datetaken": "2006-12-03 08:25:17", "license": "1", "title": "Kristian Plays Guitar During Praise and Worship Practice", "text": "", "album_id": "72157594403688419", "longitude": "0", "url_o": "https://farm1.staticflickr.com/115/313097236_03449dd19d_o.jpg", "secret": "03449dd19d", "media": "photo", "latitude": "0", "id": "313097236", "tags": "church georgia guitar kristian bassguitar assemblyofgod therockchurch churchwebsite praiseandworship"}, {"datetaken": "2006-12-03 08:26:34", "license": "1", "title": "James Operates the Computer and Projector", "text": "", "album_id": "72157594403688419", "longitude": "0", "url_o": "https://farm1.staticflickr.com/118/313128583_a11f34af73_o.jpg", "secret": "a11f34af73", "media": "photo", "latitude": "0", "id": "313128583", "tags": "music usa church georgia valdosta projector christian songs assemblyofgod churchwebsite praiseandworship jamesingram"}, {"datetaken": "2006-12-03 08:29:30", "license": "1", "title": "Ann Marie and Angel Play Keyboard and Drums", "text": "", "album_id": "72157594403688419", "longitude": "0", "url_o": "https://farm1.staticflickr.com/100/313146378_54e8b09d70_o.jpg", "secret": "54e8b09d70", "media": "photo", "latitude": "0", "id": "313146378", "tags": "church angel drums keyboard drummer annmarie assemblyofgod keyboardist therockchurch churchwebsite praiseandworship"}, {"datetaken": "2006-12-03 08:34:20", "license": "1", "title": "Day 1: It's Me - Singing and Taking a Photo of Myself - Day 1 of 365 Days", "text": "", "album_id": "72157594403688419", "longitude": "0", "url_o": "https://farm1.staticflickr.com/109/313179781_ed022c5baf_o.jpg", "secret": "ed022c5baf", "media": "photo", "latitude": "0", "id": "313179781", "tags": "me church valdosta singing ofme day1 singer microphone assemblyofgod churchwebsite praiseandworship 365days"}, {"datetaken": "2006-12-03 08:45:31", "license": "1", "title": "Ann Marie Plays Keyboard and Sings", "text": "", "album_id": "72157594403688419", "longitude": "0", "url_o": "https://farm1.staticflickr.com/106/313210525_d2d7768562_o.jpg", "secret": "d2d7768562", "media": "photo", "latitude": "0", "id": "313210525", "tags": "music usa church ga keyboard valdosta singing annmarie assemblyofgod churchwebsite praiseandworship"}, {"datetaken": "2006-12-03 08:53:26", "license": "1", "title": "All of Us Practicing the Songs", "text": "", "album_id": "72157594403688419", "longitude": "0", "url_o": "https://farm1.staticflickr.com/118/313226950_cc681fb512_o.jpg", "secret": "cc681fb512", "media": "photo", "latitude": "0", "id": "313226950", "tags": "ga valdosta singing christian singers assemblyofgod churchwebsite praiseandworship"}, {"datetaken": "2006-12-03 09:27:47", "license": "1", "title": "Sunday School Lesson Book and iPAQ Bible", "text": "", "album_id": "72157594403688419", "longitude": "0", "url_o": "https://farm1.staticflickr.com/114/313249970_5822ff7c14_o.jpg", "secret": "5822ff7c14", "media": "photo", "latitude": "0", "id": "313249970", "tags": "church valdosta bible ipaq sundayschool assemblyofgod therockchurch churchwebsite theworldcreated"}, {"datetaken": "2006-12-03 09:37:42", "license": "1", "title": "What Can I Say? It's Ernest, Being Ernest!", "text": "", "album_id": "72157594403688419", "longitude": "0", "url_o": "https://farm1.staticflickr.com/116/313236944_fd17002a9b_o.jpg", "secret": "fd17002a9b", "media": "photo", "latitude": "0", "id": "313236944", "tags": "church ga valdosta ernest sundayschool assemblyofgod therockchurch churchwebsite godcreatedtheworld"}, {"datetaken": "2006-12-03 09:46:37", "license": "1", "title": "Irma Tells What She Is Believing God to Do for Her Son", "text": "", "album_id": "72157594403688419", "longitude": "0", "url_o": "https://farm1.staticflickr.com/118/313258338_875a100eb6_o.jpg", "secret": "875a100eb6", "media": "photo", "latitude": "0", "id": "313258338", "tags": "church valdosta irma sundayschool assemblyofgod therockchurch churchwebsite testifying needsamiracle"}, {"datetaken": "2006-12-03 09:49:01", "license": "1", "title": "Sarah, Lucille, and Margaret Enjoyed the Sunday School Lesson", "text": "", "album_id": "72157594403688419", "longitude": "0", "url_o": "https://farm1.staticflickr.com/110/313269273_cdbf9857d3_o.jpg", "secret": "cdbf9857d3", "media": "photo", "latitude": "0", "id": "313269273", "tags": "usa church ga valdosta christian assemblyofgod therockchurch seniorcitizens churchwebsite"}, {"datetaken": "2006-12-03 09:53:40", "license": "1", "title": "Jackson Family Portrait", "text": "", "album_id": "72157594403688419", "longitude": "0", "url_o": "https://farm1.staticflickr.com/113/313274675_4f00a24549_o.jpg", "secret": "4f00a24549", "media": "photo", "latitude": "0", "id": "313274675", "tags": "usa church ga valdosta familyportrait christians assemblyofgod jacksonfamily therockchurch churchwebsite"}, {"datetaken": "2006-12-03 10:45:04", "license": "1", "title": "Life in the Pressure Cooker - Proverbs 17:1-28", "text": "", "album_id": "72157594403688419", "longitude": "0", "url_o": "https://farm1.staticflickr.com/109/313280168_5bb7e3ef66_o.jpg", "secret": "5bb7e3ef66", "media": "photo", "latitude": "0", "id": "313280168", "tags": "usa church christian bible stress sermon assemblyofgod proverbs therockchurch churchwebsite stressrelief"}, {"datetaken": "2006-12-03 11:47:04", "license": "1", "title": "E-Con-Die", "text": "", "album_id": "72157594403688419", "longitude": "0", "url_o": "https://farm1.staticflickr.com/111/313296137_68399c4c15_o.jpg", "secret": "68399c4c15", "media": "photo", "latitude": "0", "id": "313296137", "tags": "portrait christian assemblyofgod therockchurch churchwebsite seniorcitizen lucillesutton oldestmember"}, {"datetaken": "2006-12-03 11:48:41", "license": "1", "title": "I Love My Granddaddy", "text": "", "album_id": "72157594403688419", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/313508151_bde45e5e75_o.jpg", "secret": "bde45e5e75", "media": "photo", "latitude": "0", "id": "313508151", "tags": "david georgia us valdosta grandson toocute therockchurch churchwebsite dressedalike abigfave fatherandgrandson"}, {"datetaken": "2006-02-03 14:39:52", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/43/94934792_0f40d8701e_o.jpg", "secret": "0f40d8701e", "media": "photo", "latitude": "6.997311", "id": "94934792", "tags": "africa mountains bike cycle bikeride ethiopia bale"}, {"datetaken": "2006-02-03 14:39:55", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/25/94934816_a3b41a4afe_o.jpg", "secret": "a3b41a4afe", "media": "photo", "latitude": "6.997311", "id": "94934816", "tags": "africa mountains bike cycle bikeride ethiopia bale"}, {"datetaken": "2006-02-03 14:40:01", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/34/94934842_235ccc9963_o.jpg", "secret": "235ccc9963", "media": "photo", "latitude": "6.997311", "id": "94934842", "tags": "africa mountains bike cycle bikeride ethiopia bale"}, {"datetaken": "2006-02-03 14:40:04", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "39.901313", "url_o": "https://farm1.staticflickr.com/29/94934868_4a8969772a_o.jpg", "secret": "4a8969772a", "media": "photo", "latitude": "6.829624", "id": "94934868", "tags": "africa mountains bike cycle bikeride ethiopia bale"}, {"datetaken": "2006-02-03 14:40:13", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/29/94934920_3a62dd8c11_o.jpg", "secret": "3a62dd8c11", "media": "photo", "latitude": "6.997311", "id": "94934920", "tags": "africa mountains bike cycle bikeride ethiopia bale"}, {"datetaken": "2006-02-03 14:40:22", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/24/94934979_132148e978_o.jpg", "secret": "132148e978", "media": "photo", "latitude": "6.997311", "id": "94934979", "tags": "africa mountains bike cycle bikeride ethiopia bale"}, {"datetaken": "2006-02-03 14:40:26", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/33/94934993_d7207086cd_o.jpg", "secret": "d7207086cd", "media": "photo", "latitude": "6.997311", "id": "94934993", "tags": "africa mountains bike cycle bikeride ethiopia bale"}, {"datetaken": "2006-02-03 14:40:30", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/43/94935005_e28ab9228c_o.jpg", "secret": "e28ab9228c", "media": "photo", "latitude": "6.997311", "id": "94935005", "tags": "africa mountains bike cycle bikeride ethiopia bale"}, {"datetaken": "2006-02-03 14:40:34", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/19/94935017_a4202476e7_o.jpg", "secret": "a4202476e7", "media": "photo", "latitude": "6.997311", "id": "94935017", "tags": "africa mountains bike cycle bikeride ethiopia bale"}, {"datetaken": "2006-02-03 14:40:38", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/39/94935037_8189eb8e59_o.jpg", "secret": "8189eb8e59", "media": "photo", "latitude": "6.997311", "id": "94935037", "tags": "africa mountains bike cycle bikeride ethiopia bale"}, {"datetaken": "2006-02-03 14:40:41", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/43/94935047_2876ad274d_o.jpg", "secret": "2876ad274d", "media": "photo", "latitude": "6.997311", "id": "94935047", "tags": "africa mountains bike cycle bikeride ethiopia bale"}, {"datetaken": "2006-02-03 14:40:44", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/11/94935066_c3cb49d89e_o.jpg", "secret": "c3cb49d89e", "media": "photo", "latitude": "6.997311", "id": "94935066", "tags": "africa mountains bike cycle bikeride ethiopia bale"}, {"datetaken": "2006-02-03 14:40:48", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/30/94935074_bf6eaa8d8e_o.jpg", "secret": "bf6eaa8d8e", "media": "photo", "latitude": "6.997311", "id": "94935074", "tags": "africa mountains bike cycle bikeride ethiopia bale"}, {"datetaken": "2006-02-03 14:40:52", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/38/94935087_f7b5adab2d_o.jpg", "secret": "f7b5adab2d", "media": "photo", "latitude": "6.997311", "id": "94935087", "tags": "africa mountains bike cycle bikeride ethiopia bale"}, {"datetaken": "2006-02-03 14:40:56", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/27/94935106_1f640ee939_o.jpg", "secret": "1f640ee939", "media": "photo", "latitude": "6.997311", "id": "94935106", "tags": "africa mountains bike cycle bikeride ethiopia bale"}, {"datetaken": "2006-02-03 14:41:05", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/12/94935147_94244357fb_o.jpg", "secret": "94244357fb", "media": "photo", "latitude": "6.997311", "id": "94935147", "tags": "africa mountains bike cycle bikeride ethiopia bale"}, {"datetaken": "2006-02-03 15:31:39", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/94949570_4f9cad6527_o.jpg", "secret": "4f9cad6527", "media": "photo", "latitude": "0", "id": "94949570", "tags": "mountain bike ethiopia balemountains"}, {"datetaken": "2006-02-03 15:31:40", "license": "3", "title": "Ethiopia", "text": "", "album_id": "72057594058524733", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/94949582_c775d167a4_o.jpg", "secret": "c775d167a4", "media": "photo", "latitude": "0", "id": "94949582", "tags": "sky moon fields ethiopia balemountains"}, {"datetaken": "2006-02-04 13:46:40", "license": "3", "title": "Fixing the bike", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/24/95291827_c6897bb0d2_o.jpg", "secret": "c6897bb0d2", "media": "photo", "latitude": "6.997311", "id": "95291827", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:46:49", "license": "3", "title": "Eucalyptus Trees", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/43/95291880_d4f1b058d1_o.jpg", "secret": "d4f1b058d1", "media": "photo", "latitude": "6.997311", "id": "95291880", "tags": "africa mountains bike cycle bikeride ethiopia eucalyptustrees"}, {"datetaken": "2006-02-04 13:46:56", "license": "3", "title": "Moonrise", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/35/95291924_1f198b66d6_o.jpg", "secret": "1f198b66d6", "media": "photo", "latitude": "6.997311", "id": "95291924", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:47:01", "license": "3", "title": "Roadsign - mind the children and school", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/36/95291948_7a40de4ed5_o.jpg", "secret": "7a40de4ed5", "media": "photo", "latitude": "6.997311", "id": "95291948", "tags": "africa mountains bike warning children cycle roadsign bikeride ethiopia"}, {"datetaken": "2006-02-04 13:47:07", "license": "3", "title": "Pepsi !", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/36/95291967_0ce2cf39dc_o.jpg", "secret": "0ce2cf39dc", "media": "photo", "latitude": "6.997311", "id": "95291967", "tags": "africa mountains bike ride cycle pepsi bikeride ethiopia nocoke"}, {"datetaken": "2006-02-04 13:47:19", "license": "3", "title": "Downhill", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/33/95292016_d8e7e1eded_o.jpg", "secret": "d8e7e1eded", "media": "photo", "latitude": "6.997311", "id": "95292016", "tags": "africa mountains bike bicycle fast downhill cycle bikeride ethiopia tulludemtu"}, {"datetaken": "2006-02-04 13:47:27", "license": "3", "title": "Young Boy", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/26/95292063_1825196451_o.jpg", "secret": "1825196451", "media": "photo", "latitude": "6.997311", "id": "95292063", "tags": "africa trees mountains bike cycle eucalyptus bikeride ethiopia"}, {"datetaken": "2006-02-04 13:47:34", "license": "3", "title": "At 4000 Meters", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/19/95292089_fa84264b06_o.jpg", "secret": "fa84264b06", "media": "photo", "latitude": "6.997311", "id": "95292089", "tags": "africa mountains bike high altitude cycle bikeride ethiopia wolves 4000meters canissimensis"}, {"datetaken": "2006-02-04 13:47:43", "license": "3", "title": "Small Farmstead", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/12/95292134_e93b6b7154_o.jpg", "secret": "e93b6b7154", "media": "photo", "latitude": "6.997311", "id": "95292134", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:47:54", "license": "3", "title": "Riders chased by Children", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/32/95292167_dc4922bff9_o.jpg", "secret": "dc4922bff9", "media": "photo", "latitude": "6.997311", "id": "95292167", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:48:05", "license": "3", "title": "Dusty Roads", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/19/95292208_55139eae17_o.jpg", "secret": "55139eae17", "media": "photo", "latitude": "6.997311", "id": "95292208", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:48:17", "license": "3", "title": "African Children", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/37/95292246_3ec0cb8749_o.jpg", "secret": "3ec0cb8749", "media": "photo", "latitude": "6.997311", "id": "95292246", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:48:26", "license": "3", "title": "Addis Market", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/9/95292272_cd64aaf39c_o.jpg", "secret": "cd64aaf39c", "media": "photo", "latitude": "6.997311", "id": "95292272", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:48:38", "license": "3", "title": "Children of Africa", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/27/95292319_93eee5ab01_o.jpg", "secret": "93eee5ab01", "media": "photo", "latitude": "6.997311", "id": "95292319", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:48:45", "license": "3", "title": "Addis Taxi", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/24/95292343_6fe46dfc1d_o.jpg", "secret": "6fe46dfc1d", "media": "photo", "latitude": "6.997311", "id": "95292343", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:48:53", "license": "3", "title": "Trackside hut", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/16/95292364_2d8b07e21c_o.jpg", "secret": "2d8b07e21c", "media": "photo", "latitude": "6.997311", "id": "95292364", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:48:59", "license": "3", "title": "The Rift Valley", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/34/95292393_6bd6a6994c_o.jpg", "secret": "6bd6a6994c", "media": "photo", "latitude": "6.997311", "id": "95292393", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:49:18", "license": "3", "title": "Green and damp", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/37/95292465_ba2c7f9d50_o.jpg", "secret": "ba2c7f9d50", "media": "photo", "latitude": "6.997311", "id": "95292465", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:49:34", "license": "3", "title": "Bareback", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/12/95292535_d03cf8c0da_o.jpg", "secret": "d03cf8c0da", "media": "photo", "latitude": "6.997311", "id": "95292535", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:49:42", "license": "3", "title": "Chris", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/24/95292564_c2bd9b8c81_o.jpg", "secret": "c2bd9b8c81", "media": "photo", "latitude": "6.997311", "id": "95292564", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:49:49", "license": "3", "title": "Andy", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/33/95292586_e1eb5df0b1_o.jpg", "secret": "e1eb5df0b1", "media": "photo", "latitude": "6.997311", "id": "95292586", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:49:58", "license": "3", "title": "Tracks", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/19/95292606_d39545a4fb_o.jpg", "secret": "d39545a4fb", "media": "photo", "latitude": "6.997311", "id": "95292606", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:50:03", "license": "3", "title": "Coming home from market", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/33/95292620_d667224e55_o.jpg", "secret": "d667224e55", "media": "photo", "latitude": "6.997311", "id": "95292620", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:50:11", "license": "3", "title": "Walking home", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/42/95292649_2235ccd96a_o.jpg", "secret": "2235ccd96a", "media": "photo", "latitude": "6.997311", "id": "95292649", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:50:19", "license": "3", "title": "Fields of Africa", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/35/95292673_1459aabfeb_o.jpg", "secret": "1459aabfeb", "media": "photo", "latitude": "6.997311", "id": "95292673", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:50:26", "license": "3", "title": "Bus Stop", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/27/95292698_5abd77e1ce_o.jpg", "secret": "5abd77e1ce", "media": "photo", "latitude": "6.997311", "id": "95292698", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:50:35", "license": "3", "title": "Mountain Village", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/14/95292735_17aeea283f_o.jpg", "secret": "17aeea283f", "media": "photo", "latitude": "6.997311", "id": "95292735", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:50:41", "license": "3", "title": "Splashing", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/13/95292763_6b3785434f_o.jpg", "secret": "6b3785434f", "media": "photo", "latitude": "6.997311", "id": "95292763", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:50:46", "license": "3", "title": "Child of the Rift Valley", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/31/95292788_ca2b9a20ff_o.jpg", "secret": "ca2b9a20ff", "media": "photo", "latitude": "6.997311", "id": "95292788", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2006-02-04 13:50:50", "license": "3", "title": "Children", "text": "", "album_id": "72057594058524733", "longitude": "39.734802", "url_o": "https://farm1.staticflickr.com/39/95292814_429d3ae975_o.jpg", "secret": "429d3ae975", "media": "photo", "latitude": "6.997311", "id": "95292814", "tags": "africa mountains bike cycle bikeride ethiopia"}, {"datetaken": "2009-12-28 12:38:51", "license": "1", "title": "Cold winter day, Dec 2009 - 01", "text": "", "album_id": "72157623136469278", "longitude": "-73.971955", "url_o": "https://farm3.staticflickr.com/2739/4243897213_ef19d80aab_o.jpg", "secret": "c0af57f195", "media": "photo", "latitude": "40.794748", "id": "4243897213", "tags": "winter newyork scarf manhattan upperwestside"}, {"datetaken": "2009-12-28 12:38:51", "license": "1", "title": "Cold winter day, Dec 2009 - 01", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3702/12455983255_9f1b819daf_o.jpg", "secret": "bc0f4b231d", "media": "photo", "latitude": "0", "id": "12455983255", "tags": "afzoomnikkor70300mmf456ded"}, {"datetaken": "2009-12-28 12:42:35", "license": "1", "title": "Cold winter day, Dec 2009 - 02", "text": "", "album_id": "72157623136469278", "longitude": "-73.971955", "url_o": "https://farm3.staticflickr.com/2708/4244672776_5f29d514f0_o.jpg", "secret": "85559f8a96", "media": "photo", "latitude": "40.794748", "id": "4244672776", "tags": "winter newyork manhattan upperwestside"}, {"datetaken": "2009-12-28 12:42:35", "license": "1", "title": "Cold winter day, Dec 2009 - 02", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7304/12456504124_42518db631_o.jpg", "secret": "ea9958101a", "media": "photo", "latitude": "0", "id": "12456504124", "tags": "afzoomnikkor70300mmf456ded"}, {"datetaken": "2009-12-28 12:44:22", "license": "1", "title": "Cold winter day, Dec 2009 - 03", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7345/12455999815_627ec75d3a_o.jpg", "secret": "9c0e3586a8", "media": "photo", "latitude": "0", "id": "12455999815", "tags": "afzoomnikkor70300mmf456ded"}, {"datetaken": "2009-12-28 12:45:46", "license": "1", "title": "Cold winter day, Dec 2009 - 04", "text": "", "album_id": "72157623136469278", "longitude": "-73.971955", "url_o": "https://farm5.staticflickr.com/4019/4243904815_a9335203fa_o.jpg", "secret": "7723103070", "media": "photo", "latitude": "40.794748", "id": "4243904815", "tags": "winter newyork boots manhattan upperwestside"}, {"datetaken": "2009-12-28 12:45:46", "license": "1", "title": "Cold winter day, Dec 2009 - 04", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5475/12456521054_5a25cef433_o.jpg", "secret": "c49ab11f0c", "media": "photo", "latitude": "0", "id": "12456521054", "tags": "afzoomnikkor70300mmf456ded"}, {"datetaken": "2009-12-28 12:47:18", "license": "1", "title": "Cold winter day, Dec 2009 - 05", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3717/12456526514_fcfdae332f_o.jpg", "secret": "a640bd4afe", "media": "photo", "latitude": "0", "id": "12456526514", "tags": "afzoomnikkor70300mmf456ded"}, {"datetaken": "2009-12-29 12:24:16", "license": "1", "title": "Cold winter day, Dec 2009 - 06", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3817/12456183433_9847008279_o.jpg", "secret": "1586202bd9", "media": "photo", "latitude": "0", "id": "12456183433", "tags": "afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2009-12-29 12:27:28", "license": "1", "title": "Cold winter day, Dec 2009 - 07", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7365/12456187493_1aab78fe1f_o.jpg", "secret": "d9b54a9c92", "media": "photo", "latitude": "0", "id": "12456187493", "tags": "afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2009-12-29 12:28:50", "license": "1", "title": "Cold winter day, Dec 2009 - 08", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5516/12456025965_48467b3b90_o.jpg", "secret": "6186848bd8", "media": "photo", "latitude": "0", "id": "12456025965", "tags": "afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2009-12-29 12:30:04", "license": "1", "title": "Cold winter day, Dec 2009 - 09", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7352/12456195673_4daa2f3d51_o.jpg", "secret": "846280e0cd", "media": "photo", "latitude": "0", "id": "12456195673", "tags": "afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2009-12-29 12:31:18", "license": "1", "title": "Cold winter day, Dec 2009 - 10", "text": "", "album_id": "72157623136469278", "longitude": "-73.971451", "url_o": "https://farm3.staticflickr.com/2514/4244685096_da9f1f3059_o.jpg", "secret": "aa5c1b9729", "media": "photo", "latitude": "40.795557", "id": "4244685096", "tags": "winter newyork boots manhattan cap upperwestside"}, {"datetaken": "2009-12-29 12:31:18", "license": "1", "title": "Cold winter day, Dec 2009 - 10", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7401/12456200643_930d4eafc3_o.jpg", "secret": "49ac7c3f8c", "media": "photo", "latitude": "0", "id": "12456200643", "tags": "afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2009-12-29 12:33:24", "license": "1", "title": "Cold winter day, Dec 2009 - 11", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7306/12456551774_092f9f18c0_o.jpg", "secret": "dbd16666b5", "media": "photo", "latitude": "0", "id": "12456551774", "tags": "afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2009-12-29 12:34:35", "license": "1", "title": "Cold winter day, Dec 2009 - 12", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3803/12456555814_312a17b6fb_o.jpg", "secret": "20a428c975", "media": "photo", "latitude": "0", "id": "12456555814", "tags": "afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2009-12-29 12:35:03", "license": "1", "title": "Cold winter day, Dec 2009 - 13", "text": "", "album_id": "72157623136469278", "longitude": "-73.971451", "url_o": "https://farm5.staticflickr.com/4016/4248001892_20ced8f10c_o.jpg", "secret": "949873b538", "media": "photo", "latitude": "40.795557", "id": "4248001892", "tags": "winter newyork manhattan upperwestside hood peeps"}, {"datetaken": "2009-12-29 12:35:03", "license": "1", "title": "Cold winter day, Dec 2009 - 13", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7452/12456560114_9ba95767b0_o.jpg", "secret": "7934f2416b", "media": "photo", "latitude": "0", "id": "12456560114", "tags": "afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2009-12-29 12:39:15", "license": "1", "title": "Cold winter day, Dec 2009 - 14", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3747/12456564654_b2c9dbb706_o.jpg", "secret": "dbc43aeb35", "media": "photo", "latitude": "0", "id": "12456564654", "tags": "afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2009-12-29 12:39:38", "license": "1", "title": "Cold winter day, Dec 2009 - 15", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2842/12456568684_9ec5027a20_o.jpg", "secret": "54001ee44e", "media": "photo", "latitude": "0", "id": "12456568684", "tags": "afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2009-12-29 12:40:54", "license": "1", "title": "Cold winter day, Dec 2009 - 16", "text": "", "album_id": "72157623136469278", "longitude": "-73.971462", "url_o": "https://farm9.staticflickr.com/8078/8428402540_745460466c_o.jpg", "secret": "4a82e86e2d", "media": "photo", "latitude": "40.795471", "id": "8428402540", "tags": "winter newyork cold sunglasses scarf manhattan cap upperwestside hood"}, {"datetaken": "2009-12-29 12:44:17", "license": "1", "title": "Cold winter day, Dec 2009 - 17", "text": "", "album_id": "72157623136469278", "longitude": "-73.971451", "url_o": "https://farm5.staticflickr.com/4007/4248006414_e68c5b34e1_o.jpg", "secret": "dcdd1d1baa", "media": "photo", "latitude": "40.795557", "id": "4248006414", "tags": "winter newyork manhattan upperwestside hood peeps"}, {"datetaken": "2009-12-29 12:44:17", "license": "1", "title": "Cold winter day, Dec 2009 - 17", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3740/12456061945_feeaaf5456_o.jpg", "secret": "76130f33b5", "media": "photo", "latitude": "0", "id": "12456061945", "tags": "afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2009-12-29 12:45:33", "license": "1", "title": "Cold winter day, Dec 2009 - 18", "text": "", "album_id": "72157623136469278", "longitude": "-73.971451", "url_o": "https://farm3.staticflickr.com/2692/4247232703_f6e24ab2e8_o.jpg", "secret": "fd8f18817e", "media": "photo", "latitude": "40.795557", "id": "4247232703", "tags": "winter dog newyork manhattan coat upperwestside hood leash peeps"}, {"datetaken": "2009-12-29 12:45:33", "license": "1", "title": "Cold winter day, Dec 2009 - 18", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7351/12456067905_603ddbf450_o.jpg", "secret": "4231361bc5", "media": "photo", "latitude": "0", "id": "12456067905", "tags": "afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2009-12-29 12:47:23", "license": "1", "title": "Cold winter day, Dec 2009 - 19", "text": "", "album_id": "72157623136469278", "longitude": "-73.971451", "url_o": "https://farm5.staticflickr.com/4052/4248009002_03f0631735_o.jpg", "secret": "3136c3f141", "media": "photo", "latitude": "40.795557", "id": "4248009002", "tags": "winter newyork bike bicycle manhattan upperwestside hood peeps"}, {"datetaken": "2009-12-29 12:47:23", "license": "1", "title": "Cold winter day, Dec 2009 - 19", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5545/12456073855_427356cde4_o.jpg", "secret": "27d6567aef", "media": "photo", "latitude": "0", "id": "12456073855", "tags": "afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2009-12-29 12:48:09", "license": "1", "title": "Cold winter day, Dec 2009 - 20", "text": "", "album_id": "72157623136469278", "longitude": "-73.971451", "url_o": "https://farm5.staticflickr.com/4017/4248010548_fdbe5f6208_o.jpg", "secret": "089ee9c4fb", "media": "photo", "latitude": "40.795557", "id": "4248010548", "tags": "winter newyork manhattan upperwestside hood peeps"}, {"datetaken": "2009-12-29 12:48:09", "license": "1", "title": "Cold winter day, Dec 2009 - 20", "text": "", "album_id": "72157623136469278", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2881/12456591484_307f278c8d_o.jpg", "secret": "86a43b8db5", "media": "photo", "latitude": "0", "id": "12456591484", "tags": "afsvrzoomnikkor70300mmf4556gifed"}, {"datetaken": "2007-03-04 14:25:42", "license": "1", "title": "20070305 Delaware 013", "text": "", "album_id": "72157600007959053", "longitude": "-75.656383", "url_o": "https://farm1.staticflickr.com/187/413124102_f7ca8eba35_o.jpg", "secret": "8453ca92b7", "media": "photo", "latitude": "39.549588", "id": "413124102", "tags": "travel bridge blue yellow clouds blogged delaware"}, {"datetaken": "2007-03-04 15:51:51", "license": "1", "title": "20070305 Delaware 015", "text": "", "album_id": "72157600007959053", "longitude": "-75.077819", "url_o": "https://farm1.staticflickr.com/153/426075757_a7330551a9_o.jpg", "secret": "216f091919", "media": "photo", "latitude": "38.716288", "id": "426075757", "tags": "travel winter beach offseason delaware rehoboth"}, {"datetaken": "2007-03-04 15:56:52", "license": "1", "title": "20070305 Delaware 019", "text": "", "album_id": "72157600007959053", "longitude": "-75.076800", "url_o": "https://farm1.staticflickr.com/147/426075953_41d713847e_o.jpg", "secret": "643df16dd8", "media": "photo", "latitude": "38.716406", "id": "426075953", "tags": "travel winter beach offseason delaware rehoboth"}, {"datetaken": "2007-03-04 15:57:58", "license": "1", "title": "Fish n Chips", "text": "", "album_id": "72157600007959053", "longitude": "-75.076800", "url_o": "https://farm1.staticflickr.com/149/426076132_d95382e933_o.jpg", "secret": "5f102ee1ca", "media": "photo", "latitude": "38.716406", "id": "426076132", "tags": "travel winter beach sign offseason delaware rehoboth"}, {"datetaken": "2007-03-04 15:59:18", "license": "1", "title": "Late Winter Afternoon", "text": "", "album_id": "72157600007959053", "longitude": "-75.076221", "url_o": "https://farm1.staticflickr.com/181/426076229_6e152d8b4e_o.jpg", "secret": "3f8c6bc3a9", "media": "photo", "latitude": "38.716485", "id": "426076229", "tags": "travel winter beach offseason blogged delaware rehoboth"}, {"datetaken": "2007-03-04 15:59:55", "license": "1", "title": "20070305 Delaware 025", "text": "", "album_id": "72157600007959053", "longitude": "-75.075942", "url_o": "https://farm1.staticflickr.com/148/426076439_0f523c5358_o.jpg", "secret": "737d63bca6", "media": "photo", "latitude": "38.716121", "id": "426076439", "tags": "travel winter beach offseason delaware rehoboth"}, {"datetaken": "2007-03-04 16:00:10", "license": "1", "title": "20070305 Delaware 026", "text": "", "album_id": "72157600007959053", "longitude": "-75.075942", "url_o": "https://farm1.staticflickr.com/166/426076558_c9ff61d70e_o.jpg", "secret": "69f44d07df", "media": "photo", "latitude": "38.716121", "id": "426076558", "tags": "travel winter beach offseason delaware rehoboth"}, {"datetaken": "2007-03-04 16:01:58", "license": "1", "title": "20070305 Delaware 027", "text": "", "album_id": "72157600007959053", "longitude": "-75.075995", "url_o": "https://farm1.staticflickr.com/150/426076718_f64146b0d1_o.jpg", "secret": "1227d06180", "media": "photo", "latitude": "38.717167", "id": "426076718", "tags": "travel winter beach offseason delaware rehoboth"}, {"datetaken": "2007-03-04 16:03:13", "license": "1", "title": "Dolles II", "text": "", "album_id": "72157600007959053", "longitude": "-75.076328", "url_o": "https://farm1.staticflickr.com/184/426076849_3871023305_o.jpg", "secret": "cbb8d553a9", "media": "photo", "latitude": "38.716757", "id": "426076849", "tags": "travel winter beach sign offseason delaware rehoboth"}, {"datetaken": "2007-03-04 16:03:30", "license": "1", "title": "Dolles I", "text": "", "album_id": "72157600007959053", "longitude": "-75.076328", "url_o": "https://farm1.staticflickr.com/151/426076969_fc8f6e948c_o.jpg", "secret": "42aa1902b6", "media": "photo", "latitude": "38.716757", "id": "426076969", "tags": "travel winter beach sign offseason blogged delaware rehoboth"}, {"datetaken": "2007-03-04 16:04:07", "license": "1", "title": "20070305 Delaware 031", "text": "", "album_id": "72157600007959053", "longitude": "-75.075995", "url_o": "https://farm1.staticflickr.com/185/426077126_4fdecf6c62_o.jpg", "secret": "43978bcd17", "media": "photo", "latitude": "38.717167", "id": "426077126", "tags": "travel winter beach offseason delaware rehoboth"}, {"datetaken": "2007-03-04 16:06:53", "license": "1", "title": "20070305 Delaware 033", "text": "", "album_id": "72157600007959053", "longitude": "-75.075995", "url_o": "https://farm1.staticflickr.com/160/426077327_6d8e1eab05_o.jpg", "secret": "525f7cbb02", "media": "photo", "latitude": "38.717167", "id": "426077327", "tags": "travel winter beach offseason delaware rehoboth"}, {"datetaken": "2007-03-04 16:07:17", "license": "1", "title": "20070305 Delaware 034", "text": "", "album_id": "72157600007959053", "longitude": "-75.075995", "url_o": "https://farm1.staticflickr.com/150/426077466_2c0aaa00d7_o.jpg", "secret": "45de4dd720", "media": "photo", "latitude": "38.717167", "id": "426077466", "tags": "travel winter beach offseason delaware rehoboth"}, {"datetaken": "2007-03-04 16:15:15", "license": "1", "title": "20070305 Delaware 035", "text": "", "album_id": "72157600007959053", "longitude": "-75.077658", "url_o": "https://farm1.staticflickr.com/162/426077641_897671bc3a_o.jpg", "secret": "f09466452a", "media": "photo", "latitude": "38.716745", "id": "426077641", "tags": "travel winter beach offseason delaware rehoboth"}, {"datetaken": "2007-03-04 16:17:08", "license": "1", "title": "20070305 Delaware 036", "text": "", "album_id": "72157600007959053", "longitude": "-75.077658", "url_o": "https://farm1.staticflickr.com/172/426077857_f539b4cb01_o.jpg", "secret": "02cbad90dc", "media": "photo", "latitude": "38.716745", "id": "426077857", "tags": "travel winter beach offseason delaware rehoboth"}, {"datetaken": "2007-03-04 16:17:29", "license": "1", "title": "20070305 Delaware 037", "text": "", "album_id": "72157600007959053", "longitude": "-75.077658", "url_o": "https://farm1.staticflickr.com/170/426078091_8d3cbbca34_o.jpg", "secret": "cea25f5b26", "media": "photo", "latitude": "38.716745", "id": "426078091", "tags": "travel winter beach offseason blogged delaware rehoboth"}, {"datetaken": "2007-03-05 15:52:49", "license": "1", "title": "Rider Wanted", "text": "", "album_id": "72157600007959053", "longitude": "-75.132649", "url_o": "https://farm1.staticflickr.com/158/413124084_8244502b01_o.jpg", "secret": "ce880571e8", "media": "photo", "latitude": "38.780634", "id": "413124084", "tags": "travel winter house bicycle sand blogged delaware"}, {"datetaken": "2007-03-05 15:53:22", "license": "1", "title": "20070305 Delaware 044", "text": "", "album_id": "72157600007959053", "longitude": "-75.132649", "url_o": "https://farm1.staticflickr.com/149/426078326_ab05e70d43_o.jpg", "secret": "06477c8225", "media": "photo", "latitude": "38.780634", "id": "426078326", "tags": "travel winter beach offseason delaware lewes"}, {"datetaken": "2007-03-05 15:59:42", "license": "1", "title": "Lightship Overfalls 3", "text": "", "album_id": "72157600007959053", "longitude": "-75.141264", "url_o": "https://farm1.staticflickr.com/177/454863237_544bd1b38d_o.jpg", "secret": "d50325df27", "media": "photo", "latitude": "38.777907", "id": "454863237", "tags": "travel delaware lewes lightship overfalls"}, {"datetaken": "2007-03-05 16:00:13", "license": "1", "title": "Lightship Overfalls 2", "text": "", "album_id": "72157600007959053", "longitude": "-75.141264", "url_o": "https://farm1.staticflickr.com/180/454863399_bf007f5631_o.jpg", "secret": "8edacbc2b9", "media": "photo", "latitude": "38.777907", "id": "454863399", "tags": "travel delaware lewes lightship overfalls"}, {"datetaken": "2007-03-05 16:00:27", "license": "1", "title": "Lightship Overfalls 1", "text": "", "album_id": "72157600007959053", "longitude": "-75.141264", "url_o": "https://farm1.staticflickr.com/235/454863541_1c8e6c2a3c_o.jpg", "secret": "a6d8679189", "media": "photo", "latitude": "38.777907", "id": "454863541", "tags": "travel delaware lewes lightship overfalls"}, {"datetaken": "2007-03-05 16:00:46", "license": "1", "title": "Lightship Overfalls 5", "text": "", "album_id": "72157600007959053", "longitude": "-75.141264", "url_o": "https://farm1.staticflickr.com/220/454849704_203e1095b5_o.jpg", "secret": "f42fc67b82", "media": "photo", "latitude": "38.777907", "id": "454849704", "tags": "travel delaware lewes lightship overfalls"}, {"datetaken": "2007-03-05 16:01:14", "license": "1", "title": "Lightship Overfalls 4", "text": "", "album_id": "72157600007959053", "longitude": "-75.141264", "url_o": "https://farm1.staticflickr.com/215/454849852_54807ca6e6_o.jpg", "secret": "d92845c511", "media": "photo", "latitude": "38.777907", "id": "454849852", "tags": "travel delaware lewes lightship overfalls"}, {"datetaken": "2006-03-05 13:46:02", "license": "5", "title": "the teapot and the inverted wineglass", "text": "", "album_id": "72157601794221996", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/121930966_79c852edcc_o.jpg", "secret": "79c852edcc", "media": "photo", "latitude": "0", "id": "121930966", "tags": "water glass flickr sink wine bubbles foam teapot inverted taggedplenty"}, {"datetaken": "2006-03-05 13:48:05", "license": "5", "title": "choked snow globe", "text": "", "album_id": "72157601794221996", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/121931019_2130534f40_o.jpg", "secret": "2130534f40", "media": "photo", "latitude": "0", "id": "121931019", "tags": "water glass flickr sink wine flash bubbles foam inverted taggedplenty"}, {"datetaken": "2006-03-05 13:48:22", "license": "5", "title": "froth dome", "text": "", "album_id": "72157601794221996", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/121931046_dd77b2e452_o.jpg", "secret": "dd77b2e452", "media": "photo", "latitude": "0", "id": "121931046", "tags": "water glass flickr wine bubbles foam inverted taggedplenty"}, {"datetaken": "2006-03-05 13:48:36", "license": "5", "title": "the strange bubble", "text": "", "album_id": "72157601794221996", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/121931102_9b22230c84_o.jpg", "secret": "9b22230c84", "media": "photo", "latitude": "0", "id": "121931102", "tags": "water glass sink wine bubbles foam inverted deviantart taggedplenty"}, {"datetaken": "2006-03-05 13:49:09", "license": "5", "title": "quantum fluctuation", "text": "", "album_id": "72157601794221996", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/122516354_8c5ffb6578_o.jpg", "secret": "8c5ffb6578", "media": "photo", "latitude": "0", "id": "122516354", "tags": "water sink bubbles aerial foam teapot deviantart taggedplenty"}, {"datetaken": "2006-03-05 14:03:51", "license": "5", "title": "teardrop", "text": "", "album_id": "72157601794221996", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/125689687_b0d6ba8105_o.jpg", "secret": "b0d6ba8105", "media": "photo", "latitude": "0", "id": "125689687", "tags": "broken glass flickr wine taggedsome"}, {"datetaken": "2006-03-05 14:04:42", "license": "5", "title": "restuck", "text": "", "album_id": "72157601794221996", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/125689830_a80501c51d_o.jpg", "secret": "a80501c51d", "media": "photo", "latitude": "0", "id": "125689830", "tags": "broken glass flickr wine taggedsome"}, {"datetaken": "2006-03-05 14:06:13", "license": "5", "title": "cracks", "text": "", "album_id": "72157601794221996", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/125689943_53bd666870_o.jpg", "secret": "53bd666870", "media": "photo", "latitude": "0", "id": "125689943", "tags": "broken glass flickr wine taggedsome"}, {"datetaken": "2006-03-05 14:10:34", "license": "5", "title": "glassy", "text": "", "album_id": "72157601794221996", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/125690227_3791e66d2c_o.jpg", "secret": "3791e66d2c", "media": "photo", "latitude": "0", "id": "125690227", "tags": "broken glass flickr wine taggedsome"}, {"datetaken": "2006-03-05 14:11:24", "license": "5", "title": "jagged edge", "text": "", "album_id": "72157601794221996", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/125690351_577db16768_o.jpg", "secret": "577db16768", "media": "photo", "latitude": "0", "id": "125690351", "tags": "broken glass flickr wine taggedsome"}, {"datetaken": "2006-03-05 14:12:23", "license": "5", "title": "more than smashed", "text": "", "album_id": "72157601794221996", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/125690440_8c390b07e1_o.jpg", "secret": "8c390b07e1", "media": "photo", "latitude": "0", "id": "125690440", "tags": "broken glass flickr wine taggedsome"}, {"datetaken": "2006-03-05 14:14:48", "license": "5", "title": "futuristic swivel chair", "text": "", "album_id": "72157601794221996", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/125690542_38bc048354_o.jpg", "secret": "38bc048354", "media": "photo", "latitude": "0", "id": "125690542", "tags": "broken glass wine deviantart taggedsome"}, {"datetaken": "2006-03-05 14:17:59", "license": "5", "title": "shards I", "text": "", "album_id": "72157601794221996", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/127377395_7322bb1efa_o.jpg", "secret": "7322bb1efa", "media": "photo", "latitude": "0", "id": "127377395", "tags": "broken glass flickr wine shards taggedsome"}, {"datetaken": "2006-03-05 14:18:33", "license": "5", "title": "shards II", "text": "", "album_id": "72157601794221996", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/127377399_9d388a8e87_o.jpg", "secret": "9d388a8e87", "media": "photo", "latitude": "0", "id": "127377399", "tags": "broken glass flickr wine shards taggedsome"}, {"datetaken": "2006-03-05 14:19:21", "license": "5", "title": "fresh", "text": "", "album_id": "72157601794221996", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/127377411_c8e5681e16_o.jpg", "secret": "c8e5681e16", "media": "photo", "latitude": "0", "id": "127377411", "tags": "broken glass wine deviantart shards taggedsome"}, {"datetaken": "2006-03-05 14:19:29", "license": "5", "title": "shards III", "text": "", "album_id": "72157601794221996", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/127377405_173d05e5f2_o.jpg", "secret": "173d05e5f2", "media": "photo", "latitude": "0", "id": "127377405", "tags": "broken glass flickr wine shards taggedsome"}, {"datetaken": "2006-12-09 10:22:34", "license": "1", "title": "Intimidating", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/318265597_87799410e3_o.jpg", "secret": "87799410e3", "media": "photo", "latitude": "0", "id": "318265597", "tags": ""}, {"datetaken": "2006-12-09 10:26:59", "license": "1", "title": "Surfers", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/318265953_83d3f9fea1_o.jpg", "secret": "83d3f9fea1", "media": "photo", "latitude": "0", "id": "318265953", "tags": ""}, {"datetaken": "2006-12-09 10:28:25", "license": "1", "title": "Ride", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/318266287_040fb72e57_o.jpg", "secret": "040fb72e57", "media": "photo", "latitude": "0", "id": "318266287", "tags": ""}, {"datetaken": "2006-12-09 11:13:16", "license": "1", "title": "Analysis", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/318266543_93df18904e_o.jpg", "secret": "93df18904e", "media": "photo", "latitude": "0", "id": "318266543", "tags": "chang"}, {"datetaken": "2006-12-09 11:13:53", "license": "1", "title": "Instruction", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/318266908_4a0205b7c0_o.jpg", "secret": "4a0205b7c0", "media": "photo", "latitude": "0", "id": "318266908", "tags": ""}, {"datetaken": "2006-12-09 11:21:51", "license": "1", "title": "Heading out", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/318267246_840003c147_o.jpg", "secret": "840003c147", "media": "photo", "latitude": "0", "id": "318267246", "tags": ""}, {"datetaken": "2006-12-09 12:03:34", "license": "1", "title": "Giving up", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/318267580_5eb8916de6_o.jpg", "secret": "5eb8916de6", "media": "photo", "latitude": "0", "id": "318267580", "tags": ""}, {"datetaken": "2006-12-09 12:27:25", "license": "1", "title": "Postprocessed beach", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/318268634_f82fc7cff4_o.jpg", "secret": "f82fc7cff4", "media": "photo", "latitude": "0", "id": "318268634", "tags": ""}, {"datetaken": "2006-12-09 12:27:25", "license": "1", "title": "Original beach", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/318267963_3e1ca0f891_o.jpg", "secret": "3e1ca0f891", "media": "photo", "latitude": "0", "id": "318267963", "tags": ""}, {"datetaken": "2006-12-09 12:46:09", "license": "1", "title": "Postprocessed rainbow", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/318269511_7267fcbda0_o.jpg", "secret": "7267fcbda0", "media": "photo", "latitude": "0", "id": "318269511", "tags": ""}, {"datetaken": "2006-12-09 12:46:09", "license": "1", "title": "Original rainbow", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/318268891_c480c15b65_o.jpg", "secret": "c480c15b65", "media": "photo", "latitude": "0", "id": "318268891", "tags": ""}, {"datetaken": "2006-12-09 13:32:35", "license": "1", "title": "Chang spill", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/318269875_09ceb62837_o.jpg", "secret": "09ceb62837", "media": "photo", "latitude": "0", "id": "318269875", "tags": ""}, {"datetaken": "2006-12-09 13:33:07", "license": "1", "title": "Monsen spill", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/318270209_283b7cb76d_o.jpg", "secret": "283b7cb76d", "media": "photo", "latitude": "0", "id": "318270209", "tags": ""}, {"datetaken": "2006-12-09 13:46:01", "license": "1", "title": "Dead racoon", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/318270811_f06adf3183_o.jpg", "secret": "f06adf3183", "media": "photo", "latitude": "0", "id": "318270811", "tags": ""}, {"datetaken": "2006-12-09 14:02:36", "license": "1", "title": "Surf", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/318271178_9510d03802_o.jpg", "secret": "9510d03802", "media": "photo", "latitude": "0", "id": "318271178", "tags": ""}, {"datetaken": "2006-12-09 14:04:15", "license": "1", "title": "IMG_1303", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/318271508_8f1bb9ef83_o.jpg", "secret": "8f1bb9ef83", "media": "photo", "latitude": "0", "id": "318271508", "tags": ""}, {"datetaken": "2006-12-09 14:06:20", "license": "1", "title": "Old Glory", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/318271811_769aef3c3a_o.jpg", "secret": "769aef3c3a", "media": "photo", "latitude": "0", "id": "318271811", "tags": ""}, {"datetaken": "2006-12-09 14:10:50", "license": "1", "title": "Kelp whip", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/318272193_463ed3ae75_o.jpg", "secret": "463ed3ae75", "media": "photo", "latitude": "0", "id": "318272193", "tags": "chang"}, {"datetaken": "2006-12-09 14:14:52", "license": "1", "title": "Waves and clouds", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/318272513_e4e10d7842_o.jpg", "secret": "e4e10d7842", "media": "photo", "latitude": "0", "id": "318272513", "tags": ""}, {"datetaken": "2006-12-09 14:17:06", "license": "1", "title": "Hint of clear sky", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/318272957_19dc4eb544_o.jpg", "secret": "19dc4eb544", "media": "photo", "latitude": "0", "id": "318272957", "tags": ""}, {"datetaken": "2006-12-09 14:19:26", "license": "1", "title": "Waves and clouds", "text": "", "album_id": "72157594413051895", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/318273282_f3726917e8_o.jpg", "secret": "f3726917e8", "media": "photo", "latitude": "0", "id": "318273282", "tags": ""}, {"datetaken": "2010-02-10 17:06:41", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2741/4347685590_4b179df0bb_o.jpg", "secret": "713236d8ba", "media": "photo", "latitude": "0", "id": "4347685590", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:06:44", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4347685664_3074e5e939_o.jpg", "secret": "e8c698830f", "media": "photo", "latitude": "0", "id": "4347685664", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:06:47", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4346939395_cd16c9dccb_o.jpg", "secret": "7efb00052c", "media": "photo", "latitude": "0", "id": "4346939395", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:06:50", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4347685832_bf56819d7d_o.jpg", "secret": "950f7cf135", "media": "photo", "latitude": "0", "id": "4347685832", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:06:52", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4346939561_018d07ef05_o.jpg", "secret": "94f20f6fd7", "media": "photo", "latitude": "0", "id": "4346939561", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:06:56", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4346939641_2492b3b87a_o.jpg", "secret": "7c4e60b089", "media": "photo", "latitude": "0", "id": "4346939641", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:06:58", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4346939717_034a8b50dd_o.jpg", "secret": "378bed760e", "media": "photo", "latitude": "0", "id": "4346939717", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:01", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4347686132_7b25e2368a_o.jpg", "secret": "9265e1d149", "media": "photo", "latitude": "0", "id": "4347686132", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:02", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4346939805_753f37154d_o.jpg", "secret": "3df75f5830", "media": "photo", "latitude": "0", "id": "4346939805", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:03", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4346939865_9a93e7b423_o.jpg", "secret": "d068bfe0eb", "media": "photo", "latitude": "0", "id": "4346939865", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:06", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4347686272_01019ffa48_o.jpg", "secret": "eda6ac6d3b", "media": "photo", "latitude": "0", "id": "4347686272", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:08", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2788/4346940019_91bba86cc5_o.jpg", "secret": "826baf0740", "media": "photo", "latitude": "0", "id": "4346940019", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:10", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4346940077_cd57beec87_o.jpg", "secret": "6ae38685ba", "media": "photo", "latitude": "0", "id": "4346940077", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:11", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2783/4346940113_a0003b79e2_o.jpg", "secret": "afd793c494", "media": "photo", "latitude": "0", "id": "4346940113", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:13", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4346940179_72fa183115_o.jpg", "secret": "dc0334e03b", "media": "photo", "latitude": "0", "id": "4346940179", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:14", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4346940203_c96ce9ca80_o.jpg", "secret": "d8168314ac", "media": "photo", "latitude": "0", "id": "4346940203", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:15", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4346940251_2d28c32068_o.jpg", "secret": "95af88a1af", "media": "photo", "latitude": "0", "id": "4346940251", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:18", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4347686626_9b40598dda_o.jpg", "secret": "9fb09e825e", "media": "photo", "latitude": "0", "id": "4347686626", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:20", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4346940379_b3a61dbb51_o.jpg", "secret": "75081cc729", "media": "photo", "latitude": "0", "id": "4346940379", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:22", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4347686716_0cae15359c_o.jpg", "secret": "b639d81c6f", "media": "photo", "latitude": "0", "id": "4347686716", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:24", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2680/4346940503_56cfa77993_o.jpg", "secret": "da34975cc6", "media": "photo", "latitude": "0", "id": "4346940503", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:27", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4347686856_e798293e50_o.jpg", "secret": "9f7d446a47", "media": "photo", "latitude": "0", "id": "4347686856", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:30", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2762/4346940663_7878f068f9_o.jpg", "secret": "702584dd2e", "media": "photo", "latitude": "0", "id": "4346940663", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:32", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4347686978_3e99a64308_o.jpg", "secret": "4c91a58e98", "media": "photo", "latitude": "0", "id": "4347686978", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:34", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4347687036_21dd97a3f9_o.jpg", "secret": "8aa8bf6e02", "media": "photo", "latitude": "0", "id": "4347687036", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:36", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4347687100_0fed331e38_o.jpg", "secret": "a9edd914fd", "media": "photo", "latitude": "0", "id": "4347687100", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:37", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2692/4347687156_8d34875375_o.jpg", "secret": "af140d3077", "media": "photo", "latitude": "0", "id": "4347687156", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:39", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2794/4346940937_177b489e07_o.jpg", "secret": "8722979406", "media": "photo", "latitude": "0", "id": "4346940937", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:42", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4347687288_666465f571_o.jpg", "secret": "d0c4cd6e73", "media": "photo", "latitude": "0", "id": "4347687288", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-02-10 17:07:44", "license": "3", "title": "Pride in Diversity Launch. \u00a9 Ann-Marie Calilhanna.", "text": "", "album_id": "72157623404737542", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2742/4347687356_795d057a75_o.jpg", "secret": "971af7f8d1", "media": "photo", "latitude": "0", "id": "4347687356", "tags": "glbt acon prideindiversity"}, {"datetaken": "2010-04-10 13:41:00", "license": "3", "title": "1998 911 GT1", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2719/4512637674_6b066236bc_o.jpg", "secret": "85cac59ac5", "media": "photo", "latitude": "0", "id": "4512637674", "tags": "911 porsche lemans racingcar 2010 gt1 911gt1 porschecentremelbourne"}, {"datetaken": "2010-04-10 13:41:25", "license": "3", "title": "Porsche 935", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2249/4511996885_aa1aea4f5f_o.jpg", "secret": "42c1041a56", "media": "photo", "latitude": "0", "id": "4511996885", "tags": "porsche racingcar 2010 porsche935 porsche935turbo porschecentremelbourne"}, {"datetaken": "2010-04-10 14:18:39", "license": "3", "title": "Porsche Centre Melbourne", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2125/4512638312_7f033f4133_o.jpg", "secret": "6fda7542f7", "media": "photo", "latitude": "0", "id": "4512638312", "tags": "workshop porsche 2010 porschecentremelbourne"}, {"datetaken": "2010-04-10 14:23:58", "license": "3", "title": "2010 Porsche Boxster S", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4512638734_8bf1f40829_o.jpg", "secret": "fb2975f770", "media": "photo", "latitude": "0", "id": "4512638734", "tags": "convertible porsche boxster sportscar 2010 roadster porscheboxster porscheboxsters"}, {"datetaken": "2010-04-10 14:24:38", "license": "3", "title": "911S", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4512639048_e6a86ec399_o.jpg", "secret": "5a6301f6d6", "media": "photo", "latitude": "0", "id": "4512639048", "tags": "classic vintage 911 porsche sportscar 2010 911s"}, {"datetaken": "2010-04-10 14:24:53", "license": "3", "title": "Works in Progress", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2376/4512639368_0685956de7_o.jpg", "secret": "6f404db24e", "media": "photo", "latitude": "0", "id": "4512639368", "tags": "workshop porsche 2010 porschecentremelbourne"}, {"datetaken": "2010-04-10 14:26:22", "license": "3", "title": "2010 Porsche Boxster S", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2703/4511998623_ce4de12d26_o.jpg", "secret": "511693379a", "media": "photo", "latitude": "0", "id": "4511998623", "tags": "convertible porsche boxster sportscar 2010 roadster porscheboxster porscheboxsters"}, {"datetaken": "2010-04-10 14:27:00", "license": "3", "title": "2010 Porsche Boxster S", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4512637352_39561576c0_o.jpg", "secret": "0ac763df43", "media": "photo", "latitude": "0", "id": "4512637352", "tags": "convertible porsche boxster sportscar 2010 roadster porscheboxster porscheboxsters"}, {"datetaken": "2010-04-10 14:27:27", "license": "3", "title": "2010 Porsche Boxster S", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2400/4511998955_99e1ae0b22_o.jpg", "secret": "f42a6a2b82", "media": "photo", "latitude": "0", "id": "4511998955", "tags": "convertible porsche boxster sportscar 2010 roadster porscheboxster porscheboxsters"}, {"datetaken": "2010-04-10 14:28:47", "license": "3", "title": "2010 Porsche Boxster S", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2312/4512640350_9490142a2c_o.jpg", "secret": "905ce5150d", "media": "photo", "latitude": "0", "id": "4512640350", "tags": "convertible porsche headlight boxster sportscar 2010 roadster porscheboxster porscheboxsters"}, {"datetaken": "2010-04-10 14:29:22", "license": "3", "title": "2010 Porsche Boxster S", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2292/4512640648_a81bfd9da8_o.jpg", "secret": "b580072116", "media": "photo", "latitude": "0", "id": "4512640648", "tags": "convertible porsche boxster sportscar 2010 roadster porscheboxster porscheboxsters"}, {"datetaken": "2010-04-10 14:29:33", "license": "3", "title": "2010 Porsche Boxster S", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2247/4512641024_423395ab74_o.jpg", "secret": "c777e173bd", "media": "photo", "latitude": "0", "id": "4512641024", "tags": "convertible porsche boxster sportscar 2010 roadster porscheboxster porscheboxsters"}, {"datetaken": "2010-04-10 14:32:21", "license": "3", "title": "2010 Porsche Boxster S", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2379/4512641350_e6c09b342b_o.jpg", "secret": "761310e0e4", "media": "photo", "latitude": "0", "id": "4512641350", "tags": "convertible porsche boxster sportscar 2010 roadster porscheboxster porscheboxsters"}, {"datetaken": "2010-04-10 14:32:34", "license": "3", "title": "2010 Porsche Boxster S", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2254/4512000415_3b85ca8cf1_o.jpg", "secret": "6524e50725", "media": "photo", "latitude": "0", "id": "4512000415", "tags": "convertible porsche boxster sportscar 2010 roadster porscheboxster porscheboxsters"}, {"datetaken": "2010-04-10 14:33:47", "license": "3", "title": "2010 Porsche Boxster S", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4512000731_606cdabc6c_o.jpg", "secret": "2c8c770374", "media": "photo", "latitude": "0", "id": "4512000731", "tags": "wheel convertible porsche brake boxster tyre sportscar 2010 roadster brakecaliper porscheboxster porscheboxsters"}, {"datetaken": "2010-04-10 14:34:16", "license": "3", "title": "2010 Porsche Boxster S", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2739/4512000973_dcd7d5db72_o.jpg", "secret": "1e8383d7bb", "media": "photo", "latitude": "0", "id": "4512000973", "tags": "convertible porsche boxster sportscar 2010 roadster porscheboxster porscheboxsters"}, {"datetaken": "2010-04-10 14:34:27", "license": "3", "title": "2010 Porsche Boxster S", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4512642458_9c09bae4c6_o.jpg", "secret": "6603bfc2c0", "media": "photo", "latitude": "0", "id": "4512642458", "tags": "convertible porsche boxster sportscar 2010 roadster porscheboxster porscheboxsters"}, {"datetaken": "2010-04-10 14:49:08", "license": "3", "title": "911S and workshop", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2040/4512001545_51ebeff226_o.jpg", "secret": "720144c15d", "media": "photo", "latitude": "0", "id": "4512001545", "tags": "classic vintage 911 porsche sportscar 2010 911s"}, {"datetaken": "2010-04-10 14:50:02", "license": "3", "title": "2010 Porsche Boxster S", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/4512643136_ae0a57d1f8_o.jpg", "secret": "260409ab88", "media": "photo", "latitude": "0", "id": "4512643136", "tags": "convertible porsche boxster sportscar 2010 roadster porscheboxster porscheboxsters"}, {"datetaken": "2010-04-10 15:00:28", "license": "3", "title": "911s", "text": "", "album_id": "72157623834155822", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4512643398_cbe51cf07a_o.jpg", "secret": "f23a2ae847", "media": "photo", "latitude": "0", "id": "4512643398", "tags": "classic vintage 911 porsche sportscar 2010 911s"}, {"datetaken": "2006-11-11 09:04:44", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/101/294804395_fce8e5da9c_o.jpg", "secret": "fce8e5da9c", "media": "photo", "latitude": "49.206838", "id": "294804395", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 09:06:00", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/109/294804551_d8425dc965_o.jpg", "secret": "d8425dc965", "media": "photo", "latitude": "49.206838", "id": "294804551", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 09:14:05", "license": "3", "title": "armoury", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/114/294804788_7648e1256e_o.jpg", "secret": "7648e1256e", "media": "photo", "latitude": "49.206838", "id": "294804788", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 09:14:37", "license": "3", "title": "armoury", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/121/294805039_6d80324f86_o.jpg", "secret": "6d80324f86", "media": "photo", "latitude": "49.206838", "id": "294805039", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 09:32:40", "license": "3", "title": "westies", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/114/294805159_49ed09ec4c_o.jpg", "secret": "49ed09ec4c", "media": "photo", "latitude": "49.206838", "id": "294805159", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 09:40:50", "license": "3", "title": "armoury", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/109/294805360_21525fb78b_o.jpg", "secret": "21525fb78b", "media": "photo", "latitude": "49.206838", "id": "294805360", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 09:45:19", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/110/294805534_271a250db7_o.jpg", "secret": "271a250db7", "media": "photo", "latitude": "49.206838", "id": "294805534", "tags": "poppy remembranceday cenotaph veteran 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 09:49:05", "license": "3", "title": "pack up your troubles in your old kit bag", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/112/294805735_3ff2b850f9_o.jpg", "secret": "3ff2b850f9", "media": "photo", "latitude": "49.206838", "id": "294805735", "tags": "singing poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 09:51:35", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/111/294805872_6ffd3ff181_o.jpg", "secret": "6ffd3ff181", "media": "photo", "latitude": "49.206838", "id": "294805872", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 09:52:38", "license": "3", "title": "she reminds me of somebody", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/116/294806065_8a2b8d444c_o.jpg", "secret": "8a2b8d444c", "media": "photo", "latitude": "49.206838", "id": "294806065", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 10:08:05", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/118/294806209_e076a901fb_o.jpg", "secret": "e076a901fb", "media": "photo", "latitude": "49.206838", "id": "294806209", "tags": "mayor poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm waynewright"}, {"datetaken": "2006-11-11 10:13:22", "license": "3", "title": "westies", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/106/294806372_510b1b679f_o.jpg", "secret": "510b1b679f", "media": "photo", "latitude": "49.206838", "id": "294806372", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 10:16:32", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/110/294806594_afa8369fc5_o.jpg", "secret": "afa8369fc5", "media": "photo", "latitude": "49.206838", "id": "294806594", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment lieutenantgovernor canonefs1785mm ionacampagnolo"}, {"datetaken": "2006-11-11 10:31:17", "license": "3", "title": "the l-g's ride", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/121/294806715_c2b0fa6045_o.jpg", "secret": "c2b0fa6045", "media": "photo", "latitude": "49.206838", "id": "294806715", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 10:31:29", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/122/294806955_8194016584_o.jpg", "secret": "8194016584", "media": "photo", "latitude": "49.206838", "id": "294806955", "tags": "truck poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 10:31:59", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/122/294807094_dee3eaf78c_o.jpg", "secret": "dee3eaf78c", "media": "photo", "latitude": "49.206838", "id": "294807094", "tags": "truck un unitednations poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 10:39:37", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/121/294807264_24081877da_o.jpg", "secret": "24081877da", "media": "photo", "latitude": "49.206838", "id": "294807264", "tags": "flag scout poppy remembranceday cenotaph 1785 newwestminster armoury scouting lestweforget 30d royalwestminsterregiment canonefs1785mm wosm worldorganizationofscoutingmovements"}, {"datetaken": "2006-11-11 10:44:03", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/116/294807492_bdb7ebed5c_o.jpg", "secret": "bdb7ebed5c", "media": "photo", "latitude": "49.206838", "id": "294807492", "tags": "parade poppy remembranceday cenotaph 1785 newwestminster armoury cadets lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 10:44:12", "license": "3", "title": "rag-tag parade", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/122/294807830_f09792304e_o.jpg", "secret": "f09792304e", "media": "photo", "latitude": "49.206838", "id": "294807830", "tags": "flags parade scouts poppy remembranceday cenotaph 1785 newwestminster armoury scouting lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 11:57:20", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/119/294807934_61fb8d43a6_o.jpg", "secret": "61fb8d43a6", "media": "photo", "latitude": "49.206838", "id": "294807934", "tags": "newwestminster 1785 canonefs1785mm armoury royalwestminsterregiment 30d lestweforget poppy remembranceday cenotaph"}, {"datetaken": "2006-11-11 11:58:57", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/122/294808136_87c338b88d_o.jpg", "secret": "87c338b88d", "media": "photo", "latitude": "49.206838", "id": "294808136", "tags": "wreath poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 11:59:14", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/111/294808370_0796d67325_o.jpg", "secret": "0796d67325", "media": "photo", "latitude": "49.206838", "id": "294808370", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 11:59:41", "license": "3", "title": "standing watch", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/101/294808424_eb67f3c22d_o.jpg", "secret": "eb67f3c22d", "media": "photo", "latitude": "49.206838", "id": "294808424", "tags": "blackandwhite bw poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 12:00:33", "license": "3", "title": "to you from failing hands we throw the torch", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/120/294808588_f2f11aa324_o.jpg", "secret": "f2f11aa324", "media": "photo", "latitude": "49.206838", "id": "294808588", "tags": "tv poppy remembranceday cenotaph 1785 interview newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 12:02:02", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/114/294808745_584ea6b8cc_o.jpg", "secret": "584ea6b8cc", "media": "photo", "latitude": "49.206838", "id": "294808745", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 12:02:50", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/115/294808865_dcf1de0bf0_o.jpg", "secret": "dcf1de0bf0", "media": "photo", "latitude": "49.206838", "id": "294808865", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 12:03:02", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/102/294808971_cbb8a8753a_o.jpg", "secret": "cbb8a8753a", "media": "photo", "latitude": "49.206838", "id": "294808971", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 12:03:08", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/113/294809118_64d40e7457_o.jpg", "secret": "64d40e7457", "media": "photo", "latitude": "49.206838", "id": "294809118", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 12:04:31", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/103/294809343_7174cabd2e_o.jpg", "secret": "7174cabd2e", "media": "photo", "latitude": "49.206838", "id": "294809343", "tags": "wreath poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 12:05:10", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/106/294809506_0de944557c_o.jpg", "secret": "0de944557c", "media": "photo", "latitude": "49.206838", "id": "294809506", "tags": "wreath poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 12:05:31", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/117/294809608_2e7486b47c_o.jpg", "secret": "2e7486b47c", "media": "photo", "latitude": "49.206838", "id": "294809608", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 12:05:57", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/114/294809824_3b8277eea5_o.jpg", "secret": "3b8277eea5", "media": "photo", "latitude": "49.206838", "id": "294809824", "tags": "wreath poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2006-11-11 12:09:11", "license": "3", "title": "", "text": "", "album_id": "72157594370938633", "longitude": "-122.911219", "url_o": "https://farm1.staticflickr.com/100/294809928_a6586dda26_o.jpg", "secret": "a6586dda26", "media": "photo", "latitude": "49.206838", "id": "294809928", "tags": "poppy remembranceday cenotaph 1785 newwestminster armoury lestweforget 30d royalwestminsterregiment canonefs1785mm"}, {"datetaken": "2012-02-12 14:08:50", "license": "1", "title": "1202 Mystery Animal", "text": "", "album_id": "72157629295879759", "longitude": "-110.725320", "url_o": "https://farm8.staticflickr.com/7184/6867320533_2f6949de23_o.jpg", "secret": "7975d7e90a", "media": "photo", "latitude": "32.285733", "id": "6867320533", "tags": "bobcat"}, {"datetaken": "2012-02-12 14:09:14", "license": "1", "title": "1202 Bobcat 2", "text": "", "album_id": "72157629295879759", "longitude": "-110.725331", "url_o": "https://farm8.staticflickr.com/7070/6867337435_fbeb66b080_o.jpg", "secret": "8883a0e2e7", "media": "photo", "latitude": "32.285730", "id": "6867337435", "tags": "bobcat"}, {"datetaken": "2012-02-12 14:10:15", "license": "1", "title": "1202 Bobcat 3", "text": "", "album_id": "72157629295879759", "longitude": "-110.725328", "url_o": "https://farm8.staticflickr.com/7205/6867352865_675185312f_o.jpg", "secret": "3e02d162a7", "media": "photo", "latitude": "32.285769", "id": "6867352865", "tags": "bobcat"}, {"datetaken": "2012-02-12 14:32:06", "license": "1", "title": "1202 Alison near the start of the Agua Caliente Hill Trail", "text": "", "album_id": "72157629295879759", "longitude": "-110.710048", "url_o": "https://farm8.staticflickr.com/7177/6867373971_a6de280a96_o.jpg", "secret": "820670acd9", "media": "photo", "latitude": "32.274641", "id": "6867373971", "tags": "alison aguacalientehilltrail"}, {"datetaken": "2012-02-12 14:57:24", "license": "1", "title": "1202 Cat Track Tank", "text": "", "album_id": "72157629295879759", "longitude": "-110.699323", "url_o": "https://farm8.staticflickr.com/7044/6867386537_74d8e3d05b_o.jpg", "secret": "2082452237", "media": "photo", "latitude": "32.285438", "id": "6867386537", "tags": "aguacalientehilltrail"}, {"datetaken": "2012-02-12 15:44:44", "license": "1", "title": "1202 View after the False Summit", "text": "", "album_id": "72157629295879759", "longitude": "-110.679445", "url_o": "https://farm8.staticflickr.com/7193/6867389675_8650e8b81c_o.jpg", "secret": "116eb0b8ec", "media": "photo", "latitude": "32.297302", "id": "6867389675", "tags": "aguacalientehill aguacalientehilltrail"}, {"datetaken": "2012-02-12 15:44:58", "license": "1", "title": "1202 Trail heading towards the Summit", "text": "", "album_id": "72157629295879759", "longitude": "-110.679439", "url_o": "https://farm8.staticflickr.com/7198/6867400619_46dedaa01f_o.jpg", "secret": "4ee70ddcfd", "media": "photo", "latitude": "32.297294", "id": "6867400619", "tags": "aguacalientehill aguacalientehilltrail"}, {"datetaken": "2012-02-12 16:07:36", "license": "1", "title": "1202 From the trail, nearing the Summit", "text": "", "album_id": "72157629295879759", "longitude": "-110.666509", "url_o": "https://farm8.staticflickr.com/7055/6867410971_31b1a57d7f_o.jpg", "secret": "660072bc6c", "media": "photo", "latitude": "32.295863", "id": "6867410971", "tags": "aguacalientehilltrail"}, {"datetaken": "2012-02-12 16:10:38", "license": "1", "title": "1202 Looking across Tucson and the Catalinas from Agua Caliente Hill", "text": "", "album_id": "72157629295879759", "longitude": "-110.665906", "url_o": "https://farm8.staticflickr.com/7178/6867419631_467af3ca93_o.jpg", "secret": "f017296f9e", "media": "photo", "latitude": "32.295102", "id": "6867419631", "tags": "aguacalientehill aguacalientehilltrail"}, {"datetaken": "2012-02-12 16:19:56", "license": "1", "title": "1202 Looking back on the Agua Caliente Hill false Summit", "text": "", "album_id": "72157629295879759", "longitude": "-110.668028", "url_o": "https://farm8.staticflickr.com/7192/6867430445_8478a6c547_o.jpg", "secret": "af2d67e7d0", "media": "photo", "latitude": "32.296969", "id": "6867430445", "tags": "falsesummit aguacalientehilltrail"}, {"datetaken": "2012-02-12 16:40:40", "license": "1", "title": "1202 Charles and Alison", "text": "", "album_id": "72157629295879759", "longitude": "-110.680809", "url_o": "https://farm8.staticflickr.com/7203/6867438085_42da64b913_o.jpg", "secret": "8cfdb8b3c0", "media": "photo", "latitude": "32.296755", "id": "6867438085", "tags": "charles alison aguacalientehilltrail"}, {"datetaken": "2012-02-12 16:41:13", "license": "1", "title": "1202 Alison on the Agua Caliente Hill Trail", "text": "", "album_id": "72157629295879759", "longitude": "-110.680756", "url_o": "https://farm8.staticflickr.com/7202/6867445381_77d062d53c_o.jpg", "secret": "409077b80a", "media": "photo", "latitude": "32.296752", "id": "6867445381", "tags": "alison aguacalientehilltrail"}, {"datetaken": "2012-02-12 17:23:46", "license": "1", "title": "1202 Sun", "text": "", "album_id": "72157629295879759", "longitude": "-110.702620", "url_o": "https://farm8.staticflickr.com/7040/6867455105_6c0bbcdc4a_o.jpg", "secret": "84a4551394", "media": "photo", "latitude": "32.280474", "id": "6867455105", "tags": "sunset aguacalientehilltrail"}, {"datetaken": "2009-12-22 10:17:59", "license": "1", "title": "DCR-LongfellowNormalSnow_001", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4356686516_a9c9ec3422_o.jpg", "secret": "6b6fc48ab2", "media": "photo", "latitude": "0", "id": "4356686516", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 10:18:07", "license": "1", "title": "DCR-LongfellowNormalSnow_002", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4356687402_ae5796639b_o.jpg", "secret": "88de542b66", "media": "photo", "latitude": "0", "id": "4356687402", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 10:19:01", "license": "1", "title": "DCR-LongfellowNormalSnow_003", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2719/4355942233_a52fb18343_o.jpg", "secret": "b06b4f0d8c", "media": "photo", "latitude": "0", "id": "4355942233", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 10:19:53", "license": "1", "title": "DCR-LongfellowNormalSnow_004", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4355943229_5e96672f93_o.jpg", "secret": "7554e9221d", "media": "photo", "latitude": "0", "id": "4355943229", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 10:20:14", "license": "1", "title": "DCR-LongfellowNormalSnow_005", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2742/4355943855_9c322f6815_o.jpg", "secret": "8071581c2b", "media": "photo", "latitude": "0", "id": "4355943855", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 10:23:28", "license": "1", "title": "DCR-LongfellowNormalSnow_006", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4356690346_3a6e15da5c_o.jpg", "secret": "a15a2ebd37", "media": "photo", "latitude": "0", "id": "4356690346", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 10:23:37", "license": "1", "title": "DCR-LongfellowNormalSnow_007", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4356691038_70faf816f0_o.jpg", "secret": "ea8731ffb8", "media": "photo", "latitude": "0", "id": "4356691038", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 10:23:43", "license": "1", "title": "DCR-LongfellowNormalSnow_008", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4356691846_6dd533e4e5_o.jpg", "secret": "87af39a00c", "media": "photo", "latitude": "0", "id": "4356691846", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 10:24:10", "license": "1", "title": "DCR-LongfellowNormalSnow_009", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/4355946431_ae03572bb4_o.jpg", "secret": "9919696a54", "media": "photo", "latitude": "0", "id": "4355946431", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 10:24:15", "license": "1", "title": "DCR-LongfellowNormalSnow_010", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4355946961_61126f0a7c_o.jpg", "secret": "d3d35fbf87", "media": "photo", "latitude": "0", "id": "4355946961", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 10:24:34", "license": "1", "title": "DCR-LongfellowNormalSnow_011", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4356693358_0dbe51ecee_o.jpg", "secret": "5b19bef9ef", "media": "photo", "latitude": "0", "id": "4356693358", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 10:24:40", "license": "1", "title": "DCR-LongfellowNormalSnow_012", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4356694522_40ea29aea7_o.jpg", "secret": "8551183eb9", "media": "photo", "latitude": "0", "id": "4356694522", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 10:24:49", "license": "1", "title": "DCR-LongfellowNormalSnow_013", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4356695724_4038a78030_o.jpg", "secret": "62195d5d18", "media": "photo", "latitude": "0", "id": "4356695724", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 10:25:00", "license": "1", "title": "DCR-LongfellowNormalSnow_014", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4356697026_33498a984b_o.jpg", "secret": "6fbcebe5e3", "media": "photo", "latitude": "0", "id": "4356697026", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 10:25:11", "license": "1", "title": "DCR-LongfellowNormalSnow_015", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4356699628_2abe2b69e7_o.jpg", "secret": "494a5c1377", "media": "photo", "latitude": "0", "id": "4356699628", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 11:22:39", "license": "1", "title": "DCR-LongfellowNormalSnow_016", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2774/4355956051_bb0f5928a5_o.jpg", "secret": "d9896b5100", "media": "photo", "latitude": "0", "id": "4355956051", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 11:23:25", "license": "1", "title": "DCR-LongfellowNormalSnow_017", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2635/4356072029_efef294f8a_o.jpg", "secret": "e1c4ea29a2", "media": "photo", "latitude": "0", "id": "4356072029", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 11:23:37", "license": "1", "title": "DCR-LongfellowNormalSnow_018", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2696/4356818814_81118e1e49_o.jpg", "secret": "9130ccb75f", "media": "photo", "latitude": "0", "id": "4356818814", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 11:29:00", "license": "1", "title": "DCR-LongfellowNormalSnow_019", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4356073213_81099bf07f_o.jpg", "secret": "fab6b1fd95", "media": "photo", "latitude": "0", "id": "4356073213", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 11:29:06", "license": "1", "title": "DCR-LongfellowNormalSnow_020", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4356819864_b10e6f5600_o.jpg", "secret": "df4846632e", "media": "photo", "latitude": "0", "id": "4356819864", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2009-12-22 11:29:38", "license": "1", "title": "DCR-LongfellowNormalSnow_021", "text": "", "album_id": "72157623433806636", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2751/4356074779_178732ce8c_o.jpg", "secret": "0af84d5215", "media": "photo", "latitude": "0", "id": "4356074779", "tags": "bridge cambridge snow ice boston neglect massachusetts historic maintenance ironwork longfellow dcr"}, {"datetaken": "2010-02-13 16:56:02", "license": "3", "title": "piazza castello in parata", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4357328256_e8bfb5d340_o.jpg", "secret": "0d57f8e29f", "media": "photo", "latitude": "0", "id": "4357328256", "tags": ""}, {"datetaken": "2010-02-13 16:58:01", "license": "3", "title": "La Vie en Rose", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2736/4356564839_f233c3e242_o.jpg", "secret": "eca19a98ea", "media": "photo", "latitude": "0", "id": "4356564839", "tags": ""}, {"datetaken": "2010-02-13 17:00:07", "license": "3", "title": "", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4357313846_9fc5cd1347_o.jpg", "secret": "2730d25481", "media": "photo", "latitude": "0", "id": "4357313846", "tags": ""}, {"datetaken": "2010-02-13 17:01:06", "license": "3", "title": "Una dancehall al giorno non basta", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4356542677_03fd5d74a6_o.jpg", "secret": "337243fa41", "media": "photo", "latitude": "0", "id": "4356542677", "tags": ""}, {"datetaken": "2010-02-13 17:03:41", "license": "3", "title": "It's all a matter of perspective", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4356568841_5dcb2a4657_o.jpg", "secret": "92d25d920d", "media": "photo", "latitude": "0", "id": "4356568841", "tags": ""}, {"datetaken": "2010-02-13 17:07:45", "license": "3", "title": "Un iPod per una Bambina", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2728/4356569635_af637b2996_o.jpg", "secret": "69738a28bd", "media": "photo", "latitude": "0", "id": "4356569635", "tags": ""}, {"datetaken": "2010-02-13 17:09:54", "license": "3", "title": "+20 coins for the beers!", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2197/4357318382_0c98ab7c61_o.jpg", "secret": "3734b566a5", "media": "photo", "latitude": "0", "id": "4357318382", "tags": ""}, {"datetaken": "2010-02-13 17:15:29", "license": "3", "title": "World's on fire", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4356572823_af8bd97824_o.jpg", "secret": "c1aba232b5", "media": "photo", "latitude": "0", "id": "4356572823", "tags": "musicalreferences"}, {"datetaken": "2010-02-13 17:16:17", "license": "3", "title": "", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/4357291786_c0a4b7943e_o.jpg", "secret": "a78de335c2", "media": "photo", "latitude": "0", "id": "4357291786", "tags": ""}, {"datetaken": "2010-02-13 17:20:37", "license": "3", "title": "", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4357293784_aec21b49a8_o.jpg", "secret": "8ce7af26c2", "media": "photo", "latitude": "0", "id": "4357293784", "tags": "smattiinposaconlabici"}, {"datetaken": "2010-02-13 17:27:07", "license": "3", "title": "Ti\u00e8!", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4360702034_f0168381a8_o.jpg", "secret": "daa32e0fb3", "media": "photo", "latitude": "0", "id": "4360702034", "tags": ""}, {"datetaken": "2010-02-13 17:27:44", "license": "3", "title": "Vado al Bancomat... vado a gonfie vele", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2778/4357321448_cbc6ab76a0_o.jpg", "secret": "df45f6edc3", "media": "photo", "latitude": "0", "id": "4357321448", "tags": "street sleeping torino floor parade tired turin layeddown parata musicalreferences vabinparade"}, {"datetaken": "2010-02-13 17:30:37", "license": "3", "title": "22 luftballons", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4356577139_3fa5425db8_o.jpg", "secret": "c1c910edce", "media": "photo", "latitude": "0", "id": "4356577139", "tags": "balloons palloncini musicalreferences"}, {"datetaken": "2010-02-13 17:35:13", "license": "3", "title": "live on movable stage", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4360699588_bcff9090d0_o.jpg", "secret": "fee0c05dee", "media": "photo", "latitude": "0", "id": "4360699588", "tags": ""}, {"datetaken": "2010-02-13 17:37:24", "license": "3", "title": "Even clowns wait", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4357325894_bcff50c601_o.jpg", "secret": "4728f72215", "media": "photo", "latitude": "0", "id": "4357325894", "tags": ""}, {"datetaken": "2010-02-13 17:37:37", "license": "3", "title": "Come pollicino", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4357296222_879db1c52c_o.jpg", "secret": "9b682aa762", "media": "photo", "latitude": "0", "id": "4357296222", "tags": ""}, {"datetaken": "2010-02-13 17:38:07", "license": "3", "title": "Roses are not red", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4357300112_2c0da5d010_o.jpg", "secret": "1804613492", "media": "photo", "latitude": "0", "id": "4357300112", "tags": "musicalreferences"}, {"datetaken": "2010-02-13 17:42:25", "license": "3", "title": "Police in helicopter", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4356556119_9db9748bbb_o.jpg", "secret": "bd56b1eaea", "media": "photo", "latitude": "0", "id": "4356556119", "tags": "police musicalreferences"}, {"datetaken": "2010-02-13 17:45:22", "license": "3", "title": "left news paper on the road", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2706/4357305586_300471bd5e_o.jpg", "secret": "f1aa12df13", "media": "photo", "latitude": "0", "id": "4357305586", "tags": ""}, {"datetaken": "2010-02-13 17:47:09", "license": "3", "title": "Les chemins se croisent, puis se s\u00e9parent \u00e0 nouveaux", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2684/4357308350_1b042e764c_o.jpg", "secret": "eb0b489cda", "media": "photo", "latitude": "0", "id": "4357308350", "tags": ""}, {"datetaken": "2010-02-13 17:51:08", "license": "3", "title": "Empty like a Bottle Already Drunk", "text": "", "album_id": "72157623464889932", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4357310610_ff9caf272b_o.jpg", "secret": "2352ce512c", "media": "photo", "latitude": "0", "id": "4357310610", "tags": ""}, {"datetaken": "2005-03-12 21:03:51", "license": "4", "title": "LosH Tony", "text": "", "album_id": "163689", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6560739_992d7245d7_o.jpg", "secret": "992d7245d7", "media": "photo", "latitude": "0", "id": "6560739", "tags": "ska tedsblog loshooligans petaluma bayareaska"}, {"datetaken": "2005-03-12 21:05:07", "license": "4", "title": "LosH Horns", "text": "", "album_id": "163689", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6560733_3fa910fdd0_o.jpg", "secret": "3fa910fdd0", "media": "photo", "latitude": "0", "id": "6560733", "tags": "ska tedsblog loshooligans petaluma bayareaska"}, {"datetaken": "2005-03-12 21:06:51", "license": "4", "title": "LosH NKOTB", "text": "", "album_id": "163689", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6560718_655e63ce41_o.jpg", "secret": "655e63ce41", "media": "photo", "latitude": "0", "id": "6560718", "tags": "ska tedsblog loshooligans petaluma bayareaska"}, {"datetaken": "2005-03-12 21:07:50", "license": "4", "title": "LosH Dancing", "text": "", "album_id": "163689", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6560723_532484d8d1_o.jpg", "secret": "532484d8d1", "media": "photo", "latitude": "0", "id": "6560723", "tags": "ska tedsblog loshooligans petaluma bayareaska"}, {"datetaken": "2005-03-12 21:10:05", "license": "4", "title": "Randy Chika-chick", "text": "", "album_id": "163689", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6560708_bde0460f2f_o.jpg", "secret": "bde0460f2f", "media": "photo", "latitude": "0", "id": "6560708", "tags": "ska tedsblog loshooligans petaluma bayareaska"}, {"datetaken": "2005-03-12 21:14:15", "license": "4", "title": "LosH Ray", "text": "", "album_id": "163689", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6560749_8923054d7c_o.jpg", "secret": "8923054d7c", "media": "photo", "latitude": "0", "id": "6560749", "tags": "ska tedsblog loshooligans petaluma bayareaska"}, {"datetaken": "2005-03-12 22:37:49", "license": "4", "title": "Brian Tuning", "text": "", "album_id": "163689", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6561216_ebd13e3ab5_o.jpg", "secret": "ebd13e3ab5", "media": "photo", "latitude": "0", "id": "6561216", "tags": "ska tedsblog bayareaska aggrolites petaluma"}, {"datetaken": "2005-03-12 22:47:20", "license": "4", "title": "Duet", "text": "", "album_id": "163689", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6561229_8b63ca49bb_o.jpg", "secret": "8b63ca49bb", "media": "photo", "latitude": "0", "id": "6561229", "tags": "ska tedsblog bayareaska aggrolites petaluma"}, {"datetaken": "2005-03-12 22:48:54", "license": "4", "title": "Jesse - Rock God", "text": "", "album_id": "163689", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6561239_5d7859ecdc_o.jpg", "secret": "5d7859ecdc", "media": "photo", "latitude": "0", "id": "6561239", "tags": "ska tedsblog bayareaska aggrolites petaluma"}, {"datetaken": "2005-03-12 22:49:46", "license": "4", "title": "Brian Rocks", "text": "", "album_id": "163689", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6561248_f6a587083e_o.jpg", "secret": "f6a587083e", "media": "photo", "latitude": "0", "id": "6561248", "tags": "ska tedsblog bayareaska aggrolites petaluma"}, {"datetaken": "2005-03-12 22:54:07", "license": "4", "title": "Jesse involving the crowd", "text": "", "album_id": "163689", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6561252_8cc309fb4a_o.jpg", "secret": "8cc309fb4a", "media": "photo", "latitude": "0", "id": "6561252", "tags": "ska tedsblog bayareaska aggrolites petaluma"}, {"datetaken": "2005-03-12 22:54:35", "license": "4", "title": "Pop the Trunk!", "text": "", "album_id": "163689", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6561192_61a042edec_o.jpg", "secret": "61a042edec", "media": "photo", "latitude": "0", "id": "6561192", "tags": "ska tedsblog bayareaska aggrolites petaluma"}, {"datetaken": "2007-02-16 22:46:51", "license": "2", "title": "IMG_2717.JPG", "text": "", "album_id": "72157594540186551", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/392701802_0ea1fe6ef4_o.jpg", "secret": "0ea1fe6ef4", "media": "photo", "latitude": "0", "id": "392701802", "tags": "eyefi"}, {"datetaken": "2007-02-16 22:47:02", "license": "2", "title": "IMG_2718.JPG", "text": "", "album_id": "72157594540186551", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/392703406_34b50f577e_o.jpg", "secret": "34b50f577e", "media": "photo", "latitude": "0", "id": "392703406", "tags": "eyefi"}, {"datetaken": "2007-02-16 22:47:13", "license": "2", "title": "IMG_2719.JPG", "text": "", "album_id": "72157594540186551", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/392704190_05d7034d93_o.jpg", "secret": "05d7034d93", "media": "photo", "latitude": "0", "id": "392704190", "tags": "eyefi"}, {"datetaken": "2007-02-16 22:47:17", "license": "2", "title": "IMG_2720.JPG", "text": "", "album_id": "72157594540186551", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/392705045_abe5619fc1_o.jpg", "secret": "abe5619fc1", "media": "photo", "latitude": "0", "id": "392705045", "tags": "eyefi"}, {"datetaken": "2007-02-16 22:47:41", "license": "2", "title": "IMG_2721.JPG", "text": "", "album_id": "72157594540186551", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/392711177_8150a6a7e6_o.jpg", "secret": "8150a6a7e6", "media": "photo", "latitude": "0", "id": "392711177", "tags": "eyefi"}, {"datetaken": "2007-02-16 22:48:55", "license": "2", "title": "IMG_2722.JPG", "text": "", "album_id": "72157594540186551", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/392711564_8720bf6edf_o.jpg", "secret": "8720bf6edf", "media": "photo", "latitude": "0", "id": "392711564", "tags": "eyefi"}, {"datetaken": "2007-02-16 22:49:41", "license": "2", "title": "IMG_2723.JPG", "text": "", "album_id": "72157594540186551", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/392712112_0f8bb73478_o.jpg", "secret": "0f8bb73478", "media": "photo", "latitude": "0", "id": "392712112", "tags": "eyefi"}, {"datetaken": "2007-02-16 22:50:47", "license": "2", "title": "IMG_2724.JPG", "text": "", "album_id": "72157594540186551", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/392712554_14c4bd8e19_o.jpg", "secret": "14c4bd8e19", "media": "photo", "latitude": "0", "id": "392712554", "tags": "eyefi"}, {"datetaken": "2007-02-16 22:51:12", "license": "2", "title": "IMG_2725.JPG", "text": "", "album_id": "72157594540186551", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/392712958_936ee0375c_o.jpg", "secret": "936ee0375c", "media": "photo", "latitude": "0", "id": "392712958", "tags": "eyefi"}, {"datetaken": "2007-02-16 23:21:26", "license": "2", "title": "IMG_2727.JPG", "text": "", "album_id": "72157594540186551", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/392718184_319c697444_o.jpg", "secret": "319c697444", "media": "photo", "latitude": "0", "id": "392718184", "tags": "eyefi"}, {"datetaken": "2007-02-16 23:21:42", "license": "2", "title": "IMG_2728.JPG", "text": "", "album_id": "72157594540186551", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/392719235_8d62a4825b_o.jpg", "secret": "8d62a4825b", "media": "photo", "latitude": "0", "id": "392719235", "tags": "eyefi"}, {"datetaken": "2007-02-16 23:21:58", "license": "2", "title": "IMG_2729.JPG", "text": "", "album_id": "72157594540186551", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/392720977_f42c677ca0_o.jpg", "secret": "f42c677ca0", "media": "photo", "latitude": "0", "id": "392720977", "tags": "eyefi"}, {"datetaken": "2007-02-16 23:22:15", "license": "2", "title": "IMG_2731.JPG", "text": "", "album_id": "72157594540186551", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/392722437_b1b9c7d6a5_o.jpg", "secret": "b1b9c7d6a5", "media": "photo", "latitude": "0", "id": "392722437", "tags": "eyefi"}, {"datetaken": "2007-02-16 23:22:47", "license": "2", "title": "IMG_2732.JPG", "text": "", "album_id": "72157594540186551", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/392723301_e3114d8b57_o.jpg", "secret": "e3114d8b57", "media": "photo", "latitude": "0", "id": "392723301", "tags": "eyefi"}, {"datetaken": "2007-02-16 23:22:57", "license": "2", "title": "IMG_2733.JPG", "text": "", "album_id": "72157594540186551", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/392724199_2335b7503a_o.jpg", "secret": "2335b7503a", "media": "photo", "latitude": "0", "id": "392724199", "tags": "eyefi"}, {"datetaken": "2005-03-16 16:15:41", "license": "2", "title": "What a mess!", "text": "", "album_id": "166789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6682827_b6d7912dd3_o.jpg", "secret": "b6d7912dd3", "media": "photo", "latitude": "0", "id": "6682827", "tags": "buschgardens tampa roadconstruction"}, {"datetaken": "2005-03-16 16:15:46", "license": "2", "title": "Home again, home again.", "text": "", "album_id": "166789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6682834_60b99dc579_o.jpg", "secret": "60b99dc579", "media": "photo", "latitude": "0", "id": "6682834", "tags": "tampa riverpines apartment"}, {"datetaken": "2005-03-16 16:15:49", "license": "2", "title": "Florida: Not all sunshine & beaches", "text": "", "album_id": "166789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6682837_b028ab94a5_o.jpg", "secret": "b028ab94a5", "media": "photo", "latitude": "0", "id": "6682837", "tags": "tampa roadconstruction"}, {"datetaken": "2005-03-16 16:15:52", "license": "2", "title": "Yeah, this tells the story . . .", "text": "", "album_id": "166789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6682842_64539d6ddb_o.jpg", "secret": "64539d6ddb", "media": "photo", "latitude": "0", "id": "6682842", "tags": "buschgardens tampa roadconstruction"}, {"datetaken": "2005-03-16 16:15:55", "license": "2", "title": "Tour Bus Heaven", "text": "", "album_id": "166789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6682849_14db85fa05_o.jpg", "secret": "14db85fa05", "media": "photo", "latitude": "0", "id": "6682849", "tags": "buschgardens tampa roadconstruction"}, {"datetaken": "2005-03-16 16:16:04", "license": "2", "title": "Peek into my glovebox", "text": "", "album_id": "166789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6682863_9f8f418355_o.jpg", "secret": "9f8f418355", "media": "photo", "latitude": "0", "id": "6682863", "tags": "buschgardens tampa vw"}, {"datetaken": "2005-03-16 16:16:09", "license": "2", "title": "Powerchair and lift", "text": "", "album_id": "166789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6682870_e1e44d94d9_o.jpg", "secret": "e1e44d94d9", "media": "photo", "latitude": "0", "id": "6682870", "tags": "tampa handicap vw"}, {"datetaken": "2005-03-16 16:16:16", "license": "2", "title": "Blue Tag at Wal-Mart", "text": "", "album_id": "166789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6682882_8619876114_o.jpg", "secret": "8619876114", "media": "photo", "latitude": "0", "id": "6682882", "tags": "handicap tampa vw"}, {"datetaken": "2005-03-16 16:19:12", "license": "2", "title": "VW Willie Drives Buttercup", "text": "", "album_id": "166789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6683087_f6aeca9dde_o.jpg", "secret": "f6aeca9dde", "media": "photo", "latitude": "0", "id": "6683087", "tags": "tampa vw friend hamradio"}, {"datetaken": "2005-03-16 16:19:15", "license": "2", "title": "VA sign, etc. . . .", "text": "", "album_id": "166789", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6683092_03aa942737_o.jpg", "secret": "03aa942737", "media": "photo", "latitude": "0", "id": "6683092", "tags": "tampa va"}, {"datetaken": "2007-02-18 13:33:36", "license": "3", "title": "Oni's normal tempo...", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/394112363_5ef0de0fb9_o.jpg", "secret": "5ef0de0fb9", "media": "photo", "latitude": "0", "id": "394112363", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 13:33:53", "license": "3", "title": "Woods garlic...", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/394112543_ac564fcb07_o.jpg", "secret": "ac564fcb07", "media": "photo", "latitude": "0", "id": "394112543", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 13:37:54", "license": "3", "title": "Picking wood garlic", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/394112727_9d1bbb30e3_o.jpg", "secret": "9d1bbb30e3", "media": "photo", "latitude": "0", "id": "394112727", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 13:38:06", "license": "3", "title": "Come on...let's go!", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/394112875_3626bec967_o.jpg", "secret": "3626bec967", "media": "photo", "latitude": "0", "id": "394112875", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 13:38:22", "license": "3", "title": "Branch in a tree", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/394113074_38d9800325_o.jpg", "secret": "38d9800325", "media": "photo", "latitude": "0", "id": "394113074", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 13:38:29", "license": "3", "title": "Branch in a tree", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/394113294_607120d635_o.jpg", "secret": "607120d635", "media": "photo", "latitude": "0", "id": "394113294", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 13:38:38", "license": "3", "title": "Picking woods garlic for dinner tonight...*mhh*", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/394113475_d77459a195_o.jpg", "secret": "d77459a195", "media": "photo", "latitude": "0", "id": "394113475", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 13:38:58", "license": "3", "title": "Woods garlic in February!!!", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/394113646_6bc0406d69_o.jpg", "secret": "6bc0406d69", "media": "photo", "latitude": "0", "id": "394113646", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 13:39:18", "license": "3", "title": "Dog in allium ursinum (Woods garlic)", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/394113804_d4833bdcc3_o.jpg", "secret": "d4833bdcc3", "media": "photo", "latitude": "0", "id": "394113804", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 13:39:55", "license": "3", "title": "Where are the truffles Oni?", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/394113927_3e915a24e6_o.jpg", "secret": "3e915a24e6", "media": "photo", "latitude": "0", "id": "394113927", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 14:13:26", "license": "3", "title": "Schloss Laxenburg", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/394113983_357059ae47_o.jpg", "secret": "357059ae47", "media": "photo", "latitude": "0", "id": "394113983", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 14:14:02", "license": "3", "title": "Dog in the sun", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/394114104_923fb64a02_o.jpg", "secret": "923fb64a02", "media": "photo", "latitude": "0", "id": "394114104", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 14:21:09", "license": "3", "title": "On the bridge...", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/394114213_18f756e976_o.jpg", "secret": "18f756e976", "media": "photo", "latitude": "0", "id": "394114213", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 14:21:31", "license": "3", "title": "On the bridge...", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/394114307_84b62d3c04_o.jpg", "secret": "84b62d3c04", "media": "photo", "latitude": "0", "id": "394114307", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 14:34:07", "license": "3", "title": "Come...", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/394114414_f2c99dd523_o.jpg", "secret": "f2c99dd523", "media": "photo", "latitude": "0", "id": "394114414", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 14:34:27", "license": "3", "title": "After running and playing...", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/394114575_2ea24cec04_o.jpg", "secret": "2ea24cec04", "media": "photo", "latitude": "0", "id": "394114575", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 14:52:03", "license": "3", "title": "Tree-climbing-dog", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/394114795_2e0fea2174_o.jpg", "secret": "2e0fea2174", "media": "photo", "latitude": "0", "id": "394114795", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 14:52:10", "license": "3", "title": "Tree-climbing-dog", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/394114941_ae6d150957_o.jpg", "secret": "ae6d150957", "media": "photo", "latitude": "0", "id": "394114941", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 15:24:45", "license": "3", "title": "Crows...", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/394115002_e7aec00697_o.jpg", "secret": "e7aec00697", "media": "photo", "latitude": "0", "id": "394115002", "tags": "february oni laxenburg"}, {"datetaken": "2007-02-18 15:24:58", "license": "3", "title": "Crows...", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/394115092_d59ae302f9_o.jpg", "secret": "d59ae302f9", "media": "photo", "latitude": "0", "id": "394115092", "tags": "crow february oni laxenburg"}, {"datetaken": "2007-02-18 15:25:44", "license": "3", "title": "Crows...", "text": "", "album_id": "72157594542419706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/394115176_ee5b6d5e2f_o.jpg", "secret": "ee5b6d5e2f", "media": "photo", "latitude": "0", "id": "394115176", "tags": "crow february oni laxenburg"}, {"datetaken": "2012-04-13 17:33:25", "license": "4", "title": "THE SNAKE PASS INN - A57 SHEFFIELD TO GLOSSOP", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7049/6943966526_284d2b1e01_o.jpg", "secret": "106dc82bcf", "media": "photo", "latitude": "0", "id": "6943966526", "tags": "dhlawrence bivi"}, {"datetaken": "2012-04-13 20:06:16", "license": "4", "title": "THE ALCOHOLIC PEACE THAT PASSETH ALL UNDERSTANDING...", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7111/6943968700_d03b7b9465_o.jpg", "secret": "1a8ed3266c", "media": "photo", "latitude": "0", "id": "6943968700", "tags": "bpc"}, {"datetaken": "2012-04-13 20:06:31", "license": "4", "title": "THUMBS UP FROM GAZ", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7209/7090038303_cf0d7cc5e5_o.jpg", "secret": "b48ff82609", "media": "photo", "latitude": "0", "id": "7090038303", "tags": "bpc"}, {"datetaken": "2012-04-13 20:07:08", "license": "4", "title": "MERVYN ASSESS THE SITUATION", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5335/7090038899_2ba90bab62_o.jpg", "secret": "17796a9399", "media": "photo", "latitude": "0", "id": "7090038899", "tags": "bpc"}, {"datetaken": "2012-04-13 20:08:13", "license": "4", "title": "AND IT'S YER MAN...", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7262/7090039265_d856c9e257_o.jpg", "secret": "0b98fcba36", "media": "photo", "latitude": "0", "id": "7090039265", "tags": "fred bpc"}, {"datetaken": "2012-04-14 08:40:41", "license": "4", "title": "THE PATCHED BROWNS OF ASHOP CLOUGH", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7210/6943970658_e9ac0f6e78_o.jpg", "secret": "d8e7ab1a4a", "media": "photo", "latitude": "0", "id": "6943970658", "tags": "path bpc"}, {"datetaken": "2012-04-14 10:26:09", "license": "4", "title": "NO TRESPASS ON BLEAKLOW", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7186/6943983054_ba1cb0315f_o.jpg", "secret": "ce776aa6be", "media": "photo", "latitude": "0", "id": "6943983054", "tags": "sign bpc"}, {"datetaken": "2012-04-14 10:26:22", "license": "4", "title": "WHAT YOU SEE IS WHAT YOU GET", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5079/7090040429_f2283f828d_o.jpg", "secret": "59f5054c61", "media": "photo", "latitude": "0", "id": "7090040429", "tags": "sign bpc"}, {"datetaken": "2012-04-14 10:27:33", "license": "4", "title": "SANDY HEYS ON KINDER SCOUT", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5039/6943971770_91420189e3_o.jpg", "secret": "2a5cd45d9d", "media": "photo", "latitude": "0", "id": "6943971770", "tags": "path summit bpc"}, {"datetaken": "2012-04-14 11:13:17", "license": "4", "title": "NEAR KINDER DOWNFALL", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7276/6943972318_7aa120e70d_o.jpg", "secret": "95e21895c3", "media": "photo", "latitude": "0", "id": "6943972318", "tags": "bpc"}, {"datetaken": "2012-04-14 12:05:30", "license": "4", "title": "THE KINDER RESERVOIR - HAYFIELD", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7269/6943972856_728cf4cb71_o.jpg", "secret": "bd56e40d4e", "media": "photo", "latitude": "0", "id": "6943972856", "tags": "bpc"}, {"datetaken": "2012-04-14 12:28:07", "license": "4", "title": "BACKPACKER'S CLUB ON KINDER SCOUT", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7234/7090042441_93682a8841_o.jpg", "secret": "0162c3e091", "media": "photo", "latitude": "0", "id": "7090042441", "tags": "fred bpc"}, {"datetaken": "2012-04-14 12:29:47", "license": "4", "title": "KINDER SCOUT", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5441/6943973768_44cc2b8232_o.jpg", "secret": "fff21db0c6", "media": "photo", "latitude": "0", "id": "6943973768", "tags": "bpc"}, {"datetaken": "2012-04-14 12:30:31", "license": "4", "title": "ON KINDER SCOUT", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7244/7090043439_e11f9b416a_o.jpg", "secret": "1a00a8e8c6", "media": "photo", "latitude": "0", "id": "7090043439", "tags": "bpc"}, {"datetaken": "2012-04-14 13:23:26", "license": "4", "title": "BROWN KNOLL SUMMIT 569m", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7206/7090043961_72e8125ccc_o.jpg", "secret": "e5e86b9024", "media": "photo", "latitude": "0", "id": "7090043961", "tags": "summit trig bpc"}, {"datetaken": "2012-04-14 14:47:43", "license": "4", "title": "ON RUSHUP EDGE", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5321/6943975384_92fb46ebb5_o.jpg", "secret": "bc66a76488", "media": "photo", "latitude": "0", "id": "6943975384", "tags": "bpc"}, {"datetaken": "2012-04-14 14:58:28", "license": "4", "title": "BOYS WITH THEIR TOYS", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7079/7090045157_52522e78c1_o.jpg", "secret": "198f09d04b", "media": "photo", "latitude": "0", "id": "7090045157", "tags": "bpc"}, {"datetaken": "2012-04-14 15:15:31", "license": "4", "title": "TEAM SHOT - BACKPACKER'S CLUB MEET", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7049/7090045753_f5477e4ddf_o.jpg", "secret": "c9f32367cc", "media": "photo", "latitude": "0", "id": "7090045753", "tags": "bpc"}, {"datetaken": "2012-04-14 15:16:18", "license": "4", "title": "ON THE SUMMIT OF MAM TOR", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5199/6943976908_8b6ac81b5d_o.jpg", "secret": "8465c8629c", "media": "photo", "latitude": "0", "id": "6943976908", "tags": "bpc"}, {"datetaken": "2012-04-15 07:36:56", "license": "4", "title": "CAMPING IN EDALE", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7276/6943977490_d4e1e48e3c_o.jpg", "secret": "daef19612c", "media": "photo", "latitude": "0", "id": "6943977490", "tags": "bpc bivi"}, {"datetaken": "2012-04-15 09:29:06", "license": "4", "title": "IN GRINDSBROOK CLOUGH", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5339/6943978190_dbd364818a_o.jpg", "secret": "e7482bb9ab", "media": "photo", "latitude": "0", "id": "6943978190", "tags": "river bpc"}, {"datetaken": "2012-04-15 09:46:33", "license": "4", "title": "DAVE HOLT AND JOHN SMITH", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7063/6943978742_9a19f14550_o.jpg", "secret": "d98e653851", "media": "photo", "latitude": "0", "id": "6943978742", "tags": "bpc"}, {"datetaken": "2012-04-15 09:49:27", "license": "4", "title": "SMILES ALL ROUND", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7265/6943979280_f9be9c48f5_o.jpg", "secret": "087d4ac2ac", "media": "photo", "latitude": "0", "id": "6943979280", "tags": "summit bpc"}, {"datetaken": "2012-04-15 10:22:50", "license": "4", "title": "BACKPACKER'S CLUB ON EDALE MOOR", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7202/6943980094_b5b3644c10_o.jpg", "secret": "e0bb70e7ca", "media": "photo", "latitude": "0", "id": "6943980094", "tags": "bpc"}, {"datetaken": "2012-04-15 10:22:56", "license": "4", "title": "THE VALE OF EDALE", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7082/7090049879_900e240778_o.jpg", "secret": "3155480f7e", "media": "photo", "latitude": "0", "id": "7090049879", "tags": "bpc"}, {"datetaken": "2012-04-15 10:40:02", "license": "4", "title": "BATTLING THE GROUGHS ON EDALE MOOR", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5334/7090051171_baae3749f0_o.jpg", "secret": "7d4e44ea1e", "media": "photo", "latitude": "0", "id": "7090051171", "tags": "bpc"}, {"datetaken": "2012-04-15 10:44:10", "license": "4", "title": "JOHN RICHARD AND DAVE", "text": "", "album_id": "72157629844736843", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5324/7090051775_efeb36efc0_o.jpg", "secret": "bf739f7129", "media": "photo", "latitude": "0", "id": "7090051775", "tags": "bpc"}, {"datetaken": "2012-07-18 09:22:30", "license": "3", "title": "Cracking pavement on SR 104", "text": "", "album_id": "72157630657169438", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7261/7605635548_3ae06d27d4_o.jpg", "secret": "cc82044fe9", "media": "photo", "latitude": "0", "id": "7605635548", "tags": "ko paving sr104 asphaltoverlay"}, {"datetaken": "2012-07-18 09:29:24", "license": "3", "title": "Rolling, rolling, rolling on SR 104", "text": "", "album_id": "72157630657169438", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8012/7605631012_95c0bb9c52_o.jpg", "secret": "b5a1454dd2", "media": "photo", "latitude": "0", "id": "7605631012", "tags": "ko paving sr104 asphaltoverlay"}, {"datetaken": "2012-07-18 09:35:16", "license": "3", "title": "The tack truck", "text": "", "album_id": "72157630657169438", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7119/7605635194_9d9076823a_o.jpg", "secret": "1bbdfd7270", "media": "photo", "latitude": "0", "id": "7605635194", "tags": "ko paving sr104 asphaltoverlay"}, {"datetaken": "2012-07-18 09:38:44", "license": "3", "title": "Spraying the emulsion", "text": "", "album_id": "72157630657169438", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7118/7605634464_5afdd7b0dc_o.jpg", "secret": "3f2239d2db", "media": "photo", "latitude": "0", "id": "7605634464", "tags": "ko paving sr104 asphaltoverlay"}, {"datetaken": "2012-07-18 10:09:32", "license": "3", "title": "Closely watching the asphalt pour out", "text": "", "album_id": "72157630657169438", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8423/7605633398_2cf732686b_o.jpg", "secret": "42783dcb25", "media": "photo", "latitude": "0", "id": "7605633398", "tags": "ko paving sr104 asphaltoverlay"}, {"datetaken": "2012-07-18 10:10:00", "license": "3", "title": "Dumping the asphalt", "text": "", "album_id": "72157630657169438", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8024/7605633768_3e191b9573_o.jpg", "secret": "a80c364f5f", "media": "photo", "latitude": "0", "id": "7605633768", "tags": "ko paving sr104 asphaltoverlay"}, {"datetaken": "2012-07-18 10:10:12", "license": "3", "title": "Steaming, smoking asphalt", "text": "", "album_id": "72157630657169438", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7276/7605632702_05c79d9c27_o.jpg", "secret": "ec8b33cc39", "media": "photo", "latitude": "0", "id": "7605632702", "tags": "ko paving sr104 asphaltoverlay"}, {"datetaken": "2012-07-18 10:10:48", "license": "3", "title": "Paving on SR 104", "text": "", "album_id": "72157630657169438", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7268/7605632066_12e4fff3fe_o.jpg", "secret": "1c72d69f45", "media": "photo", "latitude": "0", "id": "7605632066", "tags": "ko paving sr104 asphaltoverlay"}, {"datetaken": "2012-07-18 10:12:29", "license": "3", "title": "Checking the roadway", "text": "", "album_id": "72157630657169438", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8432/7605631770_96f5693f91_o.jpg", "secret": "fceb6dc79c", "media": "photo", "latitude": "0", "id": "7605631770", "tags": "ko paving sr104 asphaltoverlay"}, {"datetaken": "2012-07-18 10:13:57", "license": "3", "title": "Packing it down", "text": "", "album_id": "72157630657169438", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7133/7605631474_cf3cf8ee56_o.jpg", "secret": "8642aa2e1f", "media": "photo", "latitude": "0", "id": "7605631474", "tags": "ko paving sr104 asphaltoverlay"}, {"datetaken": "2012-07-18 16:36:39", "license": "3", "title": "Adjusting the tack truck", "text": "", "album_id": "72157630657169438", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7126/7605634832_0c72ebc167_o.jpg", "secret": "163060e5df", "media": "photo", "latitude": "0", "id": "7605634832", "tags": "ko paving sr104 asphaltoverlay"}, {"datetaken": "2012-07-18 17:06:20", "license": "3", "title": "Making final adjustments to the paver", "text": "", "album_id": "72157630657169438", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8010/7605634106_a052809840_o.jpg", "secret": "278cd7973d", "media": "photo", "latitude": "0", "id": "7605634106", "tags": "ko paving sr104 asphaltoverlay"}, {"datetaken": "2012-07-18 17:10:29", "license": "3", "title": "Ready, set, go!", "text": "", "album_id": "72157630657169438", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8007/7605633152_b5fce01bf4_o.jpg", "secret": "9522ce74b2", "media": "photo", "latitude": "0", "id": "7605633152", "tags": "ko paving sr104 asphaltoverlay"}, {"datetaken": "2012-07-19 13:48:20", "license": "3", "title": "SR 104/Ballinger Way", "text": "", "album_id": "72157630657169438", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8158/7605635872_6245f742c2_o.jpg", "secret": "ec6147a486", "media": "photo", "latitude": "0", "id": "7605635872", "tags": "ko paving sr104 asphaltoverlay"}, {"datetaken": "2012-07-19 15:21:49", "license": "3", "title": "WSDOT Maintenance crew", "text": "", "album_id": "72157630657169438", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7110/7606114934_c668456ce8_o.jpg", "secret": "6873d53519", "media": "photo", "latitude": "0", "id": "7606114934", "tags": "ko paving sr104 asphaltoverlay"}, {"datetaken": "2006-09-13 06:36:15", "license": "3", "title": "Amuse Bouche", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/77/219580093_0ddfa8e7b1_o.jpg", "secret": "0ddfa8e7b1", "media": "photo", "latitude": "31.236160", "id": "219580093", "tags": "china apple shanghai jean cucumber bouche eel wasabi melon georges bund greenapple amuse verrine"}, {"datetaken": "2006-09-13 06:43:22", "license": "3", "title": "Jean Georges Shanghai", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/68/219580030_28131effa0_o.jpg", "secret": "28131effa0", "media": "photo", "latitude": "31.236160", "id": "219580030", "tags": "china shanghai jean georges bund"}, {"datetaken": "2006-09-13 06:45:04", "license": "3", "title": "1st \"Jean Georges\" Course: Jean George's Signature \"Egg Caviar\"", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/87/219580103_c95e276e6b_o.jpg", "secret": "c95e276e6b", "media": "photo", "latitude": "31.236160", "id": "219580103", "tags": "china shanghai jean egg cream georges bund scrambled caviar"}, {"datetaken": "2006-09-13 06:56:09", "license": "3", "title": "2nd Course: Kingfish Carpaccio Grapefruit", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/59/219579376_8b9d57c102_o.jpg", "secret": "8b9d57c102", "media": "photo", "latitude": "31.236160", "id": "219579376", "tags": "chile china shanghai jean oil grapefruit cilantro georges bund sorbet carpaccio kingfish"}, {"datetaken": "2006-09-13 07:06:51", "license": "3", "title": "3rd Course: Cuisses de Grenoille", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/62/219579503_a22fd5b15e_o.jpg", "secret": "a22fd5b15e", "media": "photo", "latitude": "31.236160", "id": "219579503", "tags": "china shanghai jean leg frog georges bund frogleg cuissesdegrenouille"}, {"datetaken": "2006-09-13 07:07:18", "license": "3", "title": "3rd Course: Cuisses de Grenoille & Garlic Soup", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/90/219579455_20b96c887e_o.jpg", "secret": "20b96c887e", "media": "photo", "latitude": "31.236160", "id": "219579455", "tags": "china soup spring shanghai jean leg frog garlic georges bund thyme frogleg cuissesdegrenouille"}, {"datetaken": "2006-09-13 07:07:43", "license": "3", "title": "3rd \"Seasonal\" Course: Crab Salad", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/88/219580078_ef4514bac9_o.jpg", "secret": "ef4514bac9", "media": "photo", "latitude": "31.236160", "id": "219580078", "tags": "china yellow shanghai jean crab asparagus mustard coleman melon georges bund lumpcrab"}, {"datetaken": "2006-09-13 07:23:37", "license": "3", "title": "4th Course: Turbot", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/83/219579549_526bce7f04_o.jpg", "secret": "526bce7f04", "media": "photo", "latitude": "31.236160", "id": "219579549", "tags": "china tomato shanghai jean zucchini georges bund turbot chateauchalons"}, {"datetaken": "2006-09-13 07:24:00", "license": "3", "title": "2nd: Course Raisin-Caper Scallops", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/66/219579439_ff20e0c7f5_o.jpg", "secret": "ff20e0c7f5", "media": "photo", "latitude": "31.236160", "id": "219579439", "tags": "china sea dill shanghai jean cauliflower scallop georges bund caper emulsion rasin"}, {"datetaken": "2006-09-13 07:36:24", "license": "3", "title": "5th Course: Lobster Tartine", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/68/219580050_ba219c5268_o.jpg", "secret": "ba219c5268", "media": "photo", "latitude": "31.236160", "id": "219580050", "tags": "china shanghai jean lobster pea crouton broth georges bund tartine fenugreek sugarsnap peashoot"}, {"datetaken": "2006-09-13 07:36:44", "license": "3", "title": "5th \"Seasonal\" Course: Sea Bass", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/79/219587502_b7497f8c5d_o.jpg", "secret": "b7497f8c5d", "media": "photo", "latitude": "31.236160", "id": "219587502", "tags": "china yellow shanghai jean squash garlic basil seabass broth georges bund"}, {"datetaken": "2006-09-13 07:51:25", "license": "3", "title": "6th Course: Roast Squab", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/79/219580063_162c8c29bd_o.jpg", "secret": "162c8c29bd", "media": "photo", "latitude": "31.236160", "id": "219580063", "tags": "china lemon corn shanghai jean jus pigeon roast pancake preserved georges bund sweetcorn foiegras squab"}, {"datetaken": "2006-09-13 07:51:38", "license": "3", "title": "6th Course: Kobe beef", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/76/219579650_99f3d6e763_o.jpg", "secret": "99f3d6e763", "media": "photo", "latitude": "31.236160", "id": "219579650", "tags": "china shanghai jean beef fat bean kobe soy grilled georges bund charred shallot tangy vinaigrette"}, {"datetaken": "2006-09-13 08:25:43", "license": "3", "title": "Dessert: \"Summer\"", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/85/219579830_b38daeae17_o.jpg", "secret": "b38daeae17", "media": "photo", "latitude": "31.236160", "id": "219579830", "tags": "china cake fruit tomato lemon shanghai jean blossom chocolate cheesecake icecream beet sangria georges bund sorbet gazpacho curd lemoncurd cremefraiche cacao whitepeach"}, {"datetaken": "2006-09-13 08:25:51", "license": "3", "title": "Dessert: \"Chocolate\"", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/79/219579672_c46cc48e84_o.jpg", "secret": "c46cc48e84", "media": "photo", "latitude": "31.236160", "id": "219579672", "tags": "china cake vietnamese shanghai jean coconut chocolate sesame caramel icecream georges bund sorbet cofee cassia mousse cacoa sichuanpepper liegeois saltedmilkchocolate"}, {"datetaken": "2006-09-13 08:25:53", "license": "3", "title": "Dessert: Jean Georges Warm Chocolate Cake", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/70/219579783_1d41c3aa46_o.jpg", "secret": "1d41c3aa46", "media": "photo", "latitude": "31.236160", "id": "219579783", "tags": "china cake warm shanghai jean chocolate georges bund molten"}, {"datetaken": "2006-09-13 08:26:15", "license": "3", "title": "Dessert: \"Passionfruit\"", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/85/219579812_30e7494a63_o.jpg", "secret": "30e7494a63", "media": "photo", "latitude": "31.236160", "id": "219579812", "tags": "china fruit shanghai jean coconut chocolate mint banana hibiscus foam icecream passion granite custard souffle yogurt tart georges bund passionfruit flambe whitepepper gelee"}, {"datetaken": "2006-09-13 08:57:48", "license": "3", "title": "Mignardises: Chocolate Bon Bons", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/79/219579849_86af38a634_o.jpg", "secret": "86af38a634", "media": "photo", "latitude": "31.236160", "id": "219579849", "tags": "china shanghai jean chocolate georges bund mignardise petitefours"}, {"datetaken": "2006-09-13 09:09:41", "license": "3", "title": "View of Pudong from Jean Georges on the Bund", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/71/219579935_ab232c4290_o.jpg", "secret": "ab232c4290", "media": "photo", "latitude": "31.236160", "id": "219579935", "tags": "china night view shanghai jean pudong georges bund"}, {"datetaken": "2006-09-13 09:11:55", "license": "3", "title": "Jean Georges Shanghai", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/69/219579975_7f58ac802f_o.jpg", "secret": "7f58ac802f", "media": "photo", "latitude": "31.236160", "id": "219579975", "tags": "china shanghai jean georges bund"}, {"datetaken": "2006-09-13 09:12:06", "license": "3", "title": "Jean Georges Shanghai", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/66/219579989_45c6de63b3_o.jpg", "secret": "45c6de63b3", "media": "photo", "latitude": "31.236160", "id": "219579989", "tags": "china shanghai jean georges bund"}, {"datetaken": "2006-09-13 09:12:20", "license": "3", "title": "Jean Georges", "text": "", "album_id": "72157594243600344", "longitude": "121.486591", "url_o": "https://farm1.staticflickr.com/58/219580008_fee42b71fe_o.jpg", "secret": "96b357b9a1", "media": "photo", "latitude": "31.236160", "id": "219580008", "tags": "china shanghai jean georges bund"}, {"datetaken": "2005-01-19 11:26:02", "license": "1", "title": "It's A Wonderful Life", "text": "", "album_id": "134270", "longitude": "137.358112", "url_o": "https://farm1.staticflickr.com/5/5146569_74c2e51c6e_o.jpg", "secret": "74c2e51c6e", "media": "photo", "latitude": "-35.995854", "id": "5146569", "tags": "roundtheworld adelaide australia kangarooisland wildlife landscape"}, {"datetaken": "2005-01-19 11:26:22", "license": "1", "title": "It's A Hard Life", "text": "", "album_id": "134270", "longitude": "137.358112", "url_o": "https://farm1.staticflickr.com/4/5146591_df5d5588f6_o.jpg", "secret": "df5d5588f6", "media": "photo", "latitude": "-35.995854", "id": "5146591", "tags": "roundtheworld adelaide australia kangarooisland wildlife landscape"}, {"datetaken": "2005-01-19 11:26:47", "license": "1", "title": "Rolling In The Shallows", "text": "", "album_id": "134270", "longitude": "137.358112", "url_o": "https://farm1.staticflickr.com/3/5146605_b91fbca5f3_o.jpg", "secret": "b91fbca5f3", "media": "photo", "latitude": "-35.995854", "id": "5146605", "tags": "roundtheworld adelaide australia kangarooisland wildlife landscape"}, {"datetaken": "2005-01-19 11:27:08", "license": "1", "title": "Sea Lion Aggression Displays", "text": "", "album_id": "134270", "longitude": "137.358112", "url_o": "https://farm1.staticflickr.com/5/5146612_1a0a814c0b_o.jpg", "secret": "1a0a814c0b", "media": "photo", "latitude": "-35.995854", "id": "5146612", "tags": "roundtheworld adelaide australia kangarooisland wildlife landscape"}, {"datetaken": "2005-01-19 11:29:31", "license": "1", "title": "Decisions, Decisions", "text": "", "album_id": "134270", "longitude": "137.358112", "url_o": "https://farm1.staticflickr.com/4/5146619_9c89363fd1_o.jpg", "secret": "9c89363fd1", "media": "photo", "latitude": "-35.995854", "id": "5146619", "tags": "roundtheworld adelaide australia kangarooisland wildlife landscape"}, {"datetaken": "2005-01-19 11:31:25", "license": "1", "title": "Kiss And Make Up", "text": "", "album_id": "134270", "longitude": "137.358112", "url_o": "https://farm1.staticflickr.com/4/5146627_8e80c5fc9f_o.jpg", "secret": "8e80c5fc9f", "media": "photo", "latitude": "-35.995854", "id": "5146627", "tags": "roundtheworld adelaide australia kangarooisland wildlife landscape"}, {"datetaken": "2005-01-19 11:40:07", "license": "1", "title": "Sea Lion Baby", "text": "", "album_id": "134270", "longitude": "137.358112", "url_o": "https://farm1.staticflickr.com/5/5146642_f5a4a6980b_o.jpg", "secret": "f5a4a6980b", "media": "photo", "latitude": "-35.995854", "id": "5146642", "tags": "roundtheworld adelaide australia kangarooisland wildlife"}, {"datetaken": "2005-01-19 11:41:00", "license": "1", "title": "Sea Lion Pup", "text": "", "album_id": "134270", "longitude": "137.358112", "url_o": "https://farm1.staticflickr.com/5/5146656_542fdee792_o.jpg", "secret": "542fdee792", "media": "photo", "latitude": "-35.995854", "id": "5146656", "tags": "roundtheworld adelaide australia kangarooisland wildlife"}, {"datetaken": "2005-01-19 13:44:28", "license": "1", "title": "Flowering Gum Tree", "text": "", "album_id": "134270", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5146666_952fbf029c_o.jpg", "secret": "952fbf029c", "media": "photo", "latitude": "0", "id": "5146666", "tags": "roundtheworld adelaide australia kangarooisland plantlife"}, {"datetaken": "2005-01-19 13:48:49", "license": "1", "title": "Wandering Wallaby", "text": "", "album_id": "134270", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/5146671_e370bf2bee_o.jpg", "secret": "e370bf2bee", "media": "photo", "latitude": "0", "id": "5146671", "tags": "roundtheworld adelaide australia kangarooisland wildlife"}, {"datetaken": "2005-01-19 14:25:07", "license": "1", "title": "Remarkable Rocks", "text": "", "album_id": "134270", "longitude": "136.756782", "url_o": "https://farm1.staticflickr.com/5/5146679_7adda37946_o.jpg", "secret": "7adda37946", "media": "photo", "latitude": "-36.047641", "id": "5146679", "tags": "roundtheworld adelaide australia kangarooisland landscape"}, {"datetaken": "2005-01-19 14:35:48", "license": "1", "title": "To Scale", "text": "", "album_id": "134270", "longitude": "136.756782", "url_o": "https://farm1.staticflickr.com/5/5146685_6a015592ac_o.jpg", "secret": "6a015592ac", "media": "photo", "latitude": "-36.047641", "id": "5146685", "tags": "roundtheworld adelaide australia kangarooisland landscape"}, {"datetaken": "2005-01-19 14:40:04", "license": "1", "title": "Flint Arrowheads", "text": "", "album_id": "134270", "longitude": "136.756782", "url_o": "https://farm1.staticflickr.com/4/5146694_e2313153a3_o.jpg", "secret": "e2313153a3", "media": "photo", "latitude": "-36.047641", "id": "5146694", "tags": "roundtheworld adelaide australia kangarooisland landscape"}, {"datetaken": "2005-01-19 14:41:06", "license": "1", "title": "Harpy Roost", "text": "", "album_id": "134270", "longitude": "136.756782", "url_o": "https://farm1.staticflickr.com/4/5146699_faf5d4ed21_o.jpg", "secret": "faf5d4ed21", "media": "photo", "latitude": "-36.047641", "id": "5146699", "tags": "roundtheworld adelaide australia kangarooisland landscape"}, {"datetaken": "2005-01-19 14:42:24", "license": "1", "title": "Remarkable Archway", "text": "", "album_id": "134270", "longitude": "136.756782", "url_o": "https://farm1.staticflickr.com/5/5146710_1b8b7c5a6f_o.jpg", "secret": "1b8b7c5a6f", "media": "photo", "latitude": "-36.047641", "id": "5146710", "tags": "roundtheworld adelaide australia kangarooisland landscape"}, {"datetaken": "2005-01-19 14:44:14", "license": "1", "title": "Overhang", "text": "", "album_id": "134270", "longitude": "136.756782", "url_o": "https://farm1.staticflickr.com/4/5141121_8022418576_o.jpg", "secret": "8022418576", "media": "photo", "latitude": "-36.047641", "id": "5141121", "tags": "kangarooisland adelaide roundtheworld landscape australia"}, {"datetaken": "2005-01-19 14:44:56", "license": "1", "title": "Lion's Head", "text": "", "album_id": "134270", "longitude": "136.756782", "url_o": "https://farm1.staticflickr.com/3/5141515_f5cc84d9f1_o.jpg", "secret": "f5cc84d9f1", "media": "photo", "latitude": "-36.047641", "id": "5141515", "tags": "kangarooisland adelaide roundtheworld australia landscape"}, {"datetaken": "2005-01-19 14:46:31", "license": "1", "title": "Remarkable Beach", "text": "", "album_id": "134270", "longitude": "136.756782", "url_o": "https://farm1.staticflickr.com/3/5141513_cd8927a3b3_o.jpg", "secret": "cd8927a3b3", "media": "photo", "latitude": "-36.047641", "id": "5141513", "tags": "kangarooisland adelaide roundtheworld landscape australia"}, {"datetaken": "2005-01-19 14:49:50", "license": "1", "title": "To Scale", "text": "", "album_id": "134270", "longitude": "136.756782", "url_o": "https://farm1.staticflickr.com/3/5141516_5368fc87bb_o.jpg", "secret": "5368fc87bb", "media": "photo", "latitude": "-36.047641", "id": "5141516", "tags": "kangarooisland adelaide roundtheworld australia landscape"}, {"datetaken": "2005-01-19 15:16:07", "license": "1", "title": "Casuarina Islets", "text": "", "album_id": "134270", "longitude": "136.706142", "url_o": "https://farm1.staticflickr.com/5/5141514_d63b73f4da_o.jpg", "secret": "d63b73f4da", "media": "photo", "latitude": "-36.060340", "id": "5141514", "tags": "kangarooisland adelaide roundtheworld landscape australia"}, {"datetaken": "2005-01-19 15:17:24", "license": "1", "title": "Under Admiral's Arch", "text": "", "album_id": "134270", "longitude": "136.706142", "url_o": "https://farm1.staticflickr.com/3/5141518_f4993998aa_o.jpg", "secret": "f4993998aa", "media": "photo", "latitude": "-36.060340", "id": "5141518", "tags": "kangarooisland adelaide roundtheworld australia landscape wildlife"}, {"datetaken": "2005-01-19 15:20:45", "license": "1", "title": "Sea Lions At Rest", "text": "", "album_id": "134270", "longitude": "136.706142", "url_o": "https://farm1.staticflickr.com/3/5141519_af658c43b0_o.jpg", "secret": "af658c43b0", "media": "photo", "latitude": "-36.060340", "id": "5141519", "tags": "kangarooisland adelaide roundtheworld australia landscape wildlife"}, {"datetaken": "2005-01-19 15:21:39", "license": "1", "title": "Admiral's Arch #1", "text": "", "album_id": "134270", "longitude": "136.706142", "url_o": "https://farm1.staticflickr.com/5/5141935_97d4acae40_o.jpg", "secret": "97d4acae40", "media": "photo", "latitude": "-36.060340", "id": "5141935", "tags": "kangarooisland adelaide australia roundtheworld landscape wildlife"}, {"datetaken": "2005-01-19 15:22:51", "license": "1", "title": "Admiral's Arch By Night", "text": "", "album_id": "134270", "longitude": "136.706142", "url_o": "https://farm1.staticflickr.com/3/5141938_a8a87a2178_o.jpg", "secret": "a8a87a2178", "media": "photo", "latitude": "-36.060340", "id": "5141938", "tags": "kangarooisland adelaide australia roundtheworld landscape experimental"}, {"datetaken": "2005-01-19 15:23:20", "license": "1", "title": "Admiral's Arch #2", "text": "", "album_id": "134270", "longitude": "136.706142", "url_o": "https://farm1.staticflickr.com/5/5141936_6c80670114_o.jpg", "secret": "6c80670114", "media": "photo", "latitude": "-36.060340", "id": "5141936", "tags": "kangarooisland adelaide australia roundtheworld landscape wildlife"}, {"datetaken": "2005-01-19 15:25:55", "license": "1", "title": "Admiral's Arch #3", "text": "", "album_id": "134270", "longitude": "136.706142", "url_o": "https://farm1.staticflickr.com/4/5141937_c5df8b38a9_o.jpg", "secret": "c5df8b38a9", "media": "photo", "latitude": "-36.060340", "id": "5141937", "tags": "kangarooisland adelaide australia roundtheworld landscape wildlife"}, {"datetaken": "2005-01-19 20:29:00", "license": "1", "title": "Sunset", "text": "", "album_id": "134270", "longitude": "138.093338", "url_o": "https://farm1.staticflickr.com/5/5141942_80281d84da_o.jpg", "secret": "80281d84da", "media": "photo", "latitude": "-35.605114", "id": "5141942", "tags": "kangarooisland adelaide australia roundtheworld sunriseandsunset"}, {"datetaken": "2010-02-05 00:00:00", "license": "2", "title": "Obsidian Flake", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm5.staticflickr.com/4020/4453796734_f4e77c1a7b_o.jpg", "secret": "bfdc4e5622", "media": "photo", "latitude": "61.233027", "id": "4453796734", "tags": "black alaska bag fingers flake clear anchorage swirls transparent obsidian flintknapping anhc alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:01", "license": "2", "title": "The Group", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm3.staticflickr.com/2762/4452655668_01be88c7ec_o.jpg", "secret": "e1ee9133c9", "media": "photo", "latitude": "61.233027", "id": "4452655668", "tags": "alaska anchorage alaskanativehertiagecenter anhc flintknapping leather hammerstone obsidian rock flakes debitage moose paige athena travis chardae randy kelly"}, {"datetaken": "2010-02-05 00:00:02", "license": "2", "title": "Paige & Athena", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm3.staticflickr.com/2703/4452654498_3c2c0c62ac_o.jpg", "secret": "44bb38a72d", "media": "photo", "latitude": "61.233027", "id": "4452654498", "tags": "leather rock alaska dancers paige anchorage flakes athena billet obsidian flintknapping hammerstone anhc debitage copperbillet alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:03", "license": "2", "title": "Don't Jump!", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm3.staticflickr.com/2674/4452653472_16dd725504_o.jpg", "secret": "0de95281a6", "media": "photo", "latitude": "61.233027", "id": "4452653472", "tags": "camera alaska standing bench counter pregnant anchorage kelly flintknapping anhc alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:04", "license": "2", "title": "Chardae & Kelly", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm3.staticflickr.com/2681/4451877367_fa6fd48f1c_o.jpg", "secret": "b14a2df5a6", "media": "photo", "latitude": "61.233027", "id": "4451877367", "tags": "camera leather rock alaska anchorage kelly flakes obsidian flintknapping hammerstone anhc chardae debitage alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:05", "license": "2", "title": "Copper Bopper", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm5.staticflickr.com/4055/4452651306_d980dd2ec2_o.jpg", "secret": "e30076bc0c", "media": "photo", "latitude": "61.233027", "id": "4452651306", "tags": "leather rock alaska paige anchorage copper billet grindstone obsidian flintknapping anhc copperbillet copperbopper alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:06", "license": "2", "title": "Athena, Travis & Chardae", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm5.staticflickr.com/4024/4451875205_d8d13741e6_o.jpg", "secret": "b2b6307ee7", "media": "photo", "latitude": "61.233027", "id": "4451875205", "tags": "leather rock alaska anchorage travis flakes athena obsidian flintknapping hammerstone anhc chardae debitage alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:07", "license": "2", "title": "Paige, Athena & Travis", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm5.staticflickr.com/4035/4451874121_3c533093f8_o.jpg", "secret": "ecc52c8a28", "media": "photo", "latitude": "61.233027", "id": "4451874121", "tags": "leather rock alaska ed paige moose anchorage travis flakes athena obsidian flintknapping hammerstone anhc debitage dacers alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:08", "license": "2", "title": "Randy, Richard & Paige", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm5.staticflickr.com/4036/4452618928_89d314068c_o.jpg", "secret": "e942ffb3dc", "media": "photo", "latitude": "61.233027", "id": "4452618928", "tags": "leather rock alaska paige boulder cobble anchorage richard randy sheet flakes obsidian flintknapping hammerstone anhc debitage alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:09", "license": "2", "title": "Randy & Richard", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm5.staticflickr.com/4054/4452617840_4967926f0b_o.jpg", "secret": "c77f4203ca", "media": "photo", "latitude": "61.233027", "id": "4452617840", "tags": "alaska boulder cobble anchorage richard randy sheet flakes obsidian flintknapping hammerstone anhc debitage alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:10", "license": "2", "title": "Randy's Work", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm5.staticflickr.com/4064/4451842299_bb394d75bb_o.jpg", "secret": "1cc6d27455", "media": "photo", "latitude": "61.233027", "id": "4451842299", "tags": "alaska bag point hand anchorage arrowhead tangs dacite projectilepoint flintknapping anhc concavebase sidenotched alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:11", "license": "2", "title": "Paige Knapping", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm3.staticflickr.com/2736/4451841503_8b58b6c1a4_o.jpg", "secret": "523d835fdc", "media": "photo", "latitude": "61.233027", "id": "4451841503", "tags": "leather rock alaska paige boulder anchorage randy strike sheet flakes spall obsidian flintknapping hammerstone anhc debitage alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:12", "license": "2", "title": "Kelly", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm5.staticflickr.com/4050/4452614938_2ec5ba583a_o.jpg", "secret": "e691401bc8", "media": "photo", "latitude": "61.233027", "id": "4452614938", "tags": "camera alaska dancers anchorage kelly seated obsidian flintknapping anhc alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:13", "license": "2", "title": "Ready to Strike", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm3.staticflickr.com/2736/4451839541_de79f11a14_o.jpg", "secret": "917e859ca0", "media": "photo", "latitude": "61.233027", "id": "4451839541", "tags": "leather rock alaska paige anchorage randy strike obsidian flintknapping hammerstone anhc alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:14", "license": "2", "title": "Kelly", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm5.staticflickr.com/4019/4452612884_698b19b56e_o.jpg", "secret": "3a7b2a1f6f", "media": "photo", "latitude": "61.233027", "id": "4452612884", "tags": "camera alaska dancers pregnant anchorage kelly obsidian flintknapping anhc alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:17", "license": "2", "title": "Paige & Randy", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm5.staticflickr.com/4024/4451792897_bd6c32efc6_o.jpg", "secret": "161ea063ef", "media": "photo", "latitude": "61.233027", "id": "4451792897", "tags": "leather rock alaska paige anchorage randy obsidian flintknapping hammerstone anhc alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:18", "license": "2", "title": "Flint Knapping", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm3.staticflickr.com/2707/4449090547_1f29b7da4b_o.jpg", "secret": "4b941faa84", "media": "video", "latitude": "61.233027", "id": "4449090547", "tags": "leather alaska movie video pad clip anchorage randy flakes striking flaking mahogany safetyglasses obsidian thinning flintknapping hammerstone anhc midline debitage alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:19", "license": "2", "title": "Flint Knapping", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm5.staticflickr.com/4042/4449072249_f913453785_o.jpg", "secret": "47891c856e", "media": "photo", "latitude": "61.233027", "id": "4449072249", "tags": "leather alaska platform anchorage randy striking spall mahogany obsidian flintknapping hammerstone anhc alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:20", "license": "2", "title": "Flint Knapping", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm3.staticflickr.com/2797/4449847550_38b9dbe52c_o.jpg", "secret": "59b6c3cc2d", "media": "photo", "latitude": "61.233027", "id": "4449847550", "tags": "leather alaska pad cobble anchorage randy spall mahogany obsidian flintknapping knapping hammerstone anhc debitage safteyglasses alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:21", "license": "2", "title": "Alaska Native Heritage Center", "text": "", "album_id": "72157623660642342", "longitude": "-149.717280", "url_o": "https://farm5.staticflickr.com/4008/4449846800_52044e566c_o.jpg", "secret": "7910a1ef9a", "media": "photo", "latitude": "61.233637", "id": "4449846800", "tags": "windows snow building ice alaska stage south anchorage anhc alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:22", "license": "2", "title": "Sod House & Whale Mandibles", "text": "", "album_id": "72157623660642342", "longitude": "-149.717280", "url_o": "https://farm5.staticflickr.com/4034/4449070431_c170dca034_o.jpg", "secret": "53f76cbc2b", "media": "photo", "latitude": "61.233637", "id": "4449070431", "tags": "trees lake snow alaska frozen pond north anchorage bone mandible sodhouse anhc alaskanativehertiagecenter stlawrenceislandyupik sliyupiksodhouse whalemandible"}, {"datetaken": "2010-02-05 00:00:23", "license": "2", "title": "Sod House", "text": "", "album_id": "72157623660642342", "longitude": "-149.717280", "url_o": "https://farm5.staticflickr.com/4057/4449845594_9d857483d3_o.jpg", "secret": "23f4b6489e", "media": "photo", "latitude": "61.233637", "id": "4449845594", "tags": "trees lake snow alaska frozen pond north anchorage bone mandible sodhouse anhc alaskanativehertiagecenter stlawrenceislandyupik sliyupiksodhouse whalemandible"}, {"datetaken": "2010-02-05 00:00:24", "license": "2", "title": "Birch Bark Canoe Frame", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm3.staticflickr.com/2695/4449844802_c626ffabd0_o.jpg", "secret": "8357577290", "media": "photo", "latitude": "61.233027", "id": "4449844802", "tags": "wood alaska display interior canoe anchorage bark frame infrastructure oar birchbark birchbarkcanoe anhc alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:25", "license": "2", "title": "Birch Bark Canoe End", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm5.staticflickr.com/4055/4449068271_55149b2f83_o.jpg", "secret": "e6ddd025b7", "media": "photo", "latitude": "61.233027", "id": "4449068271", "tags": "alaska display canoe anchorage bark seal end stitching pitch resin birchbark mastic birchbarkcanoe anhc alaskanativehertiagecenter birchpitch birchresin"}, {"datetaken": "2010-02-05 00:00:26", "license": "2", "title": "Birch Bark Canoe", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm5.staticflickr.com/4017/4449067701_6c698b0032_o.jpg", "secret": "da3f99919c", "media": "photo", "latitude": "61.233027", "id": "4449067701", "tags": "alaska display canoe anchorage bark birchbark birchbarkcanoe anhc alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:27", "license": "2", "title": "Kayak Hole", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm5.staticflickr.com/4025/4449842976_2c7fa0044f_o.jpg", "secret": "93137eb750", "media": "photo", "latitude": "61.233027", "id": "4449842976", "tags": "alaska boat kayak dancers hole display native anchorage skinboat anhc skinkayak alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:28", "license": "2", "title": "Kayak Frame", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm5.staticflickr.com/4054/4449842490_f55e936fd3_o.jpg", "secret": "fae804183b", "media": "photo", "latitude": "61.233027", "id": "4449842490", "tags": "wood alaska boat kayak display interior anchorage frame infrastructure lattice skinboat anhc skinkayak alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:29", "license": "2", "title": "Skin Kayak", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm5.staticflickr.com/4071/4449841878_378bdc3221_o.jpg", "secret": "218a746e0d", "media": "photo", "latitude": "61.233027", "id": "4449841878", "tags": "alaska boat kayak display anchorage keel skinboat anhc skinkayak alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:30", "license": "2", "title": "Skin Kayak", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm3.staticflickr.com/2736/4449065431_55a7047c4e_o.jpg", "secret": "082c0554f3", "media": "photo", "latitude": "61.233027", "id": "4449065431", "tags": "alaska boat kayak hole display anchorage skinboat anhc skinkayak alaskanativehertiagecenter"}, {"datetaken": "2010-02-05 00:00:31", "license": "2", "title": "Flint Knapping", "text": "", "album_id": "72157623660642342", "longitude": "-149.716014", "url_o": "https://farm5.staticflickr.com/4006/4449840582_00779230f6_o.jpg", "secret": "35d27d5881", "media": "photo", "latitude": "61.233027", "id": "4449840582", "tags": "leather alaska dancers anchorage randy safetyglasses obsidian flintknapping anhc alaskanativehertiagecenter"}, {"datetaken": "2010-06-18 16:05:13", "license": "3", "title": "10_03816_Ed-and-Willie-April-1975", "text": "", "album_id": "72157624181353093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4712741911_9113eb1f27_o.jpg", "secret": "7a30b5900a", "media": "photo", "latitude": "0", "id": "4712741911", "tags": ""}, {"datetaken": "2010-06-18 16:52:22", "license": "3", "title": "10_03824_Pittsburgh-Fountain-June-1975", "text": "", "album_id": "72157624181353093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4713381088_834193cb3c_o.jpg", "secret": "0a00a3c56e", "media": "photo", "latitude": "0", "id": "4713381088", "tags": ""}, {"datetaken": "2010-06-18 16:53:44", "license": "3", "title": "10_03825_John-Boyer-June-1974", "text": "", "album_id": "72157624181353093", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1279/4712742269_e8fd1c7080_o.jpg", "secret": "d3d36f7755", "media": "photo", "latitude": "0", "id": "4712742269", "tags": ""}, {"datetaken": "2010-06-18 17:30:06", "license": "3", "title": "10_03833_Penn-State-Feb-1972", "text": "", "album_id": "72157624181353093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4713381486_b286ab5026_o.jpg", "secret": "45b938da3d", "media": "photo", "latitude": "0", "id": "4713381486", "tags": ""}, {"datetaken": "2010-06-18 17:30:37", "license": "3", "title": "10_03834_John-Daggett-July-1977", "text": "", "album_id": "72157624181353093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4713381624_cfbc103d8a_o.jpg", "secret": "b87beba419", "media": "photo", "latitude": "0", "id": "4713381624", "tags": ""}, {"datetaken": "2010-06-18 17:31:56", "license": "3", "title": "10_03838_Willie-Polasko-John-Boyer-June-1975", "text": "", "album_id": "72157624181353093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4712742859_7d2e72abcb_o.jpg", "secret": "08cf883f9d", "media": "photo", "latitude": "0", "id": "4712742859", "tags": ""}, {"datetaken": "2010-06-18 17:36:58", "license": "3", "title": "10_03840_Jill-Rawnsley-Dec-1977", "text": "", "album_id": "72157624181353093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4713381876_a6ab747507_o.jpg", "secret": "497c54bde6", "media": "photo", "latitude": "0", "id": "4713381876", "tags": ""}, {"datetaken": "2010-06-19 06:56:45", "license": "3", "title": "10_03842_Roommate-Number1-May-1972", "text": "", "album_id": "72157624181353093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4714191786_69e29e94f5_o.jpg", "secret": "7b8474182a", "media": "photo", "latitude": "0", "id": "4714191786", "tags": ""}, {"datetaken": "2010-06-19 06:58:39", "license": "3", "title": "10_03844_Clarence-Sweitzer-June-1974", "text": "", "album_id": "72157624181353093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4713555727_8f7bfe0489_o.jpg", "secret": "e23e2ef1e9", "media": "photo", "latitude": "0", "id": "4713555727", "tags": ""}, {"datetaken": "2010-06-20 08:18:50", "license": "3", "title": "John-Mexico", "text": "", "album_id": "72157624181353093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4717191824_e733594abe_o.jpg", "secret": "6c618e5af3", "media": "photo", "latitude": "0", "id": "4717191824", "tags": ""}, {"datetaken": "2010-06-20 08:45:39", "license": "3", "title": "Betsy-Mexico", "text": "", "album_id": "72157624181353093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4716590531_0915c54f5a_o.jpg", "secret": "8839586bc0", "media": "photo", "latitude": "0", "id": "4716590531", "tags": ""}, {"datetaken": "2010-06-20 09:05:33", "license": "3", "title": "Shirley Dodson", "text": "", "album_id": "72157624181353093", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4716644439_438f8e53c6_o.jpg", "secret": "63281566e1", "media": "photo", "latitude": "0", "id": "4716644439", "tags": ""}, {"datetaken": "2010-06-20 09:29:39", "license": "3", "title": "Peace March; 1972", "text": "", "album_id": "72157624181353093", "longitude": "-77.854871", "url_o": "https://farm5.staticflickr.com/4016/4717340496_d547ce26a0_o.jpg", "secret": "73c10408d7", "media": "photo", "latitude": "40.799516", "id": "4717340496", "tags": "pennstate antiwar 1972 peacemarch"}, {"datetaken": "2010-06-20 10:27:21", "license": "3", "title": "Penn State Peace March 1972-composite scan", "text": "", "album_id": "72157624181353093", "longitude": "-77.854421", "url_o": "https://farm5.staticflickr.com/4056/4717488472_2aec2b3044_o.jpg", "secret": "efb192d0fd", "media": "photo", "latitude": "40.799678", "id": "4717488472", "tags": "pennstate antiwar 1972 peacemarch"}, {"datetaken": "2006-10-21 17:43:39", "license": "2", "title": "Turnagain Arm", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/275965966_15ba55bc71_o.jpg", "secret": "15ba55bc71", "media": "photo", "latitude": "0", "id": "275965966", "tags": "snow mountains water turnagainarm chugach chugachmountains"}, {"datetaken": "2006-10-21 17:43:51", "license": "2", "title": "Turnagain Arm", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/275966008_2c152dc926_o.jpg", "secret": "2c152dc926", "media": "photo", "latitude": "0", "id": "275966008", "tags": "snow mountains water clouds turnagainarm chugach chugachmountains"}, {"datetaken": "2006-10-21 18:20:52", "license": "2", "title": "Portage", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/275966074_0d6c7ae582_o.jpg", "secret": "0d6c7ae582", "media": "photo", "latitude": "0", "id": "275966074", "tags": "snow mountains portage portagelake chugach chugachmountains"}, {"datetaken": "2006-10-21 18:27:49", "license": "2", "title": "Portage", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/112/275966191_335a48590a_o.jpg", "secret": "335a48590a", "media": "photo", "latitude": "0", "id": "275966191", "tags": "snow mountains glacier portage chugach chugachmountains"}, {"datetaken": "2006-10-21 18:27:58", "license": "2", "title": "Portage", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/275966252_f5c5400eed_o.jpg", "secret": "f5c5400eed", "media": "photo", "latitude": "0", "id": "275966252", "tags": "snow mountains glacier portage chugach chugachmountains"}, {"datetaken": "2006-10-21 18:28:13", "license": "2", "title": "Portage", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/275966295_43b50e6f04_o.jpg", "secret": "43b50e6f04", "media": "photo", "latitude": "0", "id": "275966295", "tags": "snow mountains glacier portage chugach chugachmountains"}, {"datetaken": "2006-10-21 18:28:34", "license": "2", "title": "Portage", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/111/275966398_642c246915_o.jpg", "secret": "642c246915", "media": "photo", "latitude": "0", "id": "275966398", "tags": "snow mountains glacier portage chugach chugachmountains"}, {"datetaken": "2006-10-21 18:28:46", "license": "2", "title": "Portage", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/111/275966437_6bda1fb57a_o.jpg", "secret": "6bda1fb57a", "media": "photo", "latitude": "0", "id": "275966437", "tags": "snow mountains glacier portage chugach chugachmountains"}, {"datetaken": "2006-10-21 18:36:40", "license": "2", "title": "Portage", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/101/275966497_24f6f12ea9_o.jpg", "secret": "24f6f12ea9", "media": "photo", "latitude": "0", "id": "275966497", "tags": "lake snow mountains glacier ridge portage portagelake chugach chugachmountains"}, {"datetaken": "2006-10-21 18:38:37", "license": "2", "title": "Portage", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/115/275966601_b4c4f40455_o.jpg", "secret": "b4c4f40455", "media": "photo", "latitude": "0", "id": "275966601", "tags": "snow mountains glacier portage jemma chugach chugachmountains"}, {"datetaken": "2006-10-21 18:46:54", "license": "2", "title": "Portage", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/275966839_ae455f3c00_o.jpg", "secret": "ae455f3c00", "media": "photo", "latitude": "0", "id": "275966839", "tags": "trees snow mountains portage chugach chugachmountains"}, {"datetaken": "2006-10-21 18:49:35", "license": "2", "title": "Portage", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/103/275966923_0e290e4902_o.jpg", "secret": "0e290e4902", "media": "photo", "latitude": "0", "id": "275966923", "tags": "snow mountains stream glacier melt portage chugach chugachmountains"}, {"datetaken": "2006-10-21 18:49:51", "license": "2", "title": "Portage", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/101/275966985_6f4e38e737_o.jpg", "secret": "6f4e38e737", "media": "photo", "latitude": "0", "id": "275966985", "tags": "snow mountains glacier portage chugach chugachmountains crevasses"}, {"datetaken": "2006-10-21 18:53:47", "license": "2", "title": "Mushroom", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/275967072_799b57ac2e_o.jpg", "secret": "799b57ac2e", "media": "photo", "latitude": "0", "id": "275967072", "tags": "orange mushroom portage"}, {"datetaken": "2006-10-21 19:12:02", "license": "2", "title": "Turnagain Arm & Alaska Range", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/105/275967137_56e844a776_o.jpg", "secret": "56e844a776", "media": "photo", "latitude": "0", "id": "275967137", "tags": "sunset mountains water waves turnagainarm alaskarange cookinlet"}, {"datetaken": "2006-10-21 19:12:55", "license": "2", "title": "Turnagain Arm & Alaska Range", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/275967197_823851edc3_o.jpg", "secret": "823851edc3", "media": "photo", "latitude": "0", "id": "275967197", "tags": "sunset mountains water waves turnagainarm alaskarange cookinlet"}, {"datetaken": "2006-10-21 19:13:10", "license": "2", "title": "Turnagain Arm & Alaska Range", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/275967253_887f01f855_o.jpg", "secret": "887f01f855", "media": "photo", "latitude": "0", "id": "275967253", "tags": "sunset mountains water waves turnagainarm alaskarange cookinlet"}, {"datetaken": "2006-10-21 19:18:08", "license": "2", "title": "Turnagain Arm & Chugach Mountains", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/275967275_ede93fa725_o.jpg", "secret": "ede93fa725", "media": "photo", "latitude": "0", "id": "275967275", "tags": "sunset snow mountains water clouds turnagainarm chugach chugachmountains"}, {"datetaken": "2006-10-21 19:21:42", "license": "2", "title": "Chugach", "text": "", "album_id": "72157594339263061", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/275967330_51fb226801_o.jpg", "secret": "51fb226801", "media": "photo", "latitude": "0", "id": "275967330", "tags": "sunset snow mountains chugach chugachmountains"}, {"datetaken": "2007-01-22 16:19:00", "license": "3", "title": "Perth", "text": "", "album_id": "72157594494831674", "longitude": "115.828857", "url_o": "https://farm1.staticflickr.com/156/366416047_b990aa55bb_o.jpg", "secret": "b990aa55bb", "media": "photo", "latitude": "-31.945170", "id": "366416047", "tags": ""}, {"datetaken": "2007-01-22 16:20:17", "license": "3", "title": "Merry Christmas!!", "text": "", "album_id": "72157594494831674", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/366416981_b733c2362d_o.jpg", "secret": "b733c2362d", "media": "photo", "latitude": "0", "id": "366416981", "tags": ""}, {"datetaken": "2007-01-22 16:20:17", "license": "3", "title": "Lizard", "text": "", "album_id": "72157594494831674", "longitude": "0", "url_o": "https://farm1.staticflickr.com/114/366416982_06096e2732_o.jpg", "secret": "06096e2732", "media": "photo", "latitude": "0", "id": "366416982", "tags": ""}, {"datetaken": "2007-01-22 16:20:17", "license": "3", "title": "Fremantle", "text": "", "album_id": "72157594494831674", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/366416986_c1c7449ea2_o.jpg", "secret": "c1c7449ea2", "media": "photo", "latitude": "0", "id": "366416986", "tags": ""}, {"datetaken": "2007-01-22 16:20:17", "license": "3", "title": "Round House", "text": "", "album_id": "72157594494831674", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/366416987_74f1fd3f85_o.jpg", "secret": "74f1fd3f85", "media": "photo", "latitude": "0", "id": "366416987", "tags": ""}, {"datetaken": "2007-01-22 16:25:20", "license": "3", "title": "Round House Sign", "text": "", "album_id": "72157594494831674", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/366420771_fa6c7eb9e3_o.jpg", "secret": "fa6c7eb9e3", "media": "photo", "latitude": "0", "id": "366420771", "tags": ""}, {"datetaken": "2007-01-22 16:25:20", "license": "3", "title": "Maritim Museum", "text": "", "album_id": "72157594494831674", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/366420773_f4b1dee59e_o.jpg", "secret": "f4b1dee59e", "media": "photo", "latitude": "0", "id": "366420773", "tags": ""}, {"datetaken": "2007-01-22 16:25:20", "license": "3", "title": "Signpost", "text": "", "album_id": "72157594494831674", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/366420777_179d7044d9_o.jpg", "secret": "179d7044d9", "media": "photo", "latitude": "0", "id": "366420777", "tags": ""}, {"datetaken": "2007-01-22 16:25:20", "license": "3", "title": "Swan Bells", "text": "", "album_id": "72157594494831674", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/366420778_a25909937a_o.jpg", "secret": "a25909937a", "media": "photo", "latitude": "0", "id": "366420778", "tags": ""}, {"datetaken": "2007-01-22 16:25:20", "license": "3", "title": "Skyline", "text": "", "album_id": "72157594494831674", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/366420780_ef0b46ad13_o.jpg", "secret": "ef0b46ad13", "media": "photo", "latitude": "0", "id": "366420780", "tags": ""}, {"datetaken": "2007-01-22 16:27:14", "license": "3", "title": "At the airport", "text": "", "album_id": "72157594494831674", "longitude": "0", "url_o": "https://farm1.staticflickr.com/120/366422094_c113abf2c8_o.jpg", "secret": "c113abf2c8", "media": "photo", "latitude": "0", "id": "366422094", "tags": ""}, {"datetaken": "2007-01-23 01:25:09", "license": "3", "title": "Singapore", "text": "", "album_id": "72157594494831674", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/366829886_fff669d56c_o.jpg", "secret": "fff669d56c", "media": "photo", "latitude": "0", "id": "366829886", "tags": ""}, {"datetaken": "2007-01-23 01:29:51", "license": "3", "title": "The Final Route", "text": "", "album_id": "72157594494831674", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/366831957_f527f30204_o.gif", "secret": "f527f30204", "media": "photo", "latitude": "0", "id": "366831957", "tags": ""}, {"datetaken": "2010-04-23 11:01:27", "license": "2", "title": "IMG_2359", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4546843974_53ea62a048_o.jpg", "secret": "4e4baaed2d", "media": "photo", "latitude": "0", "id": "4546843974", "tags": ""}, {"datetaken": "2010-04-23 11:01:59", "license": "2", "title": "IMG_2360", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4546210237_9dd31aa0d0_o.jpg", "secret": "3aaac96135", "media": "photo", "latitude": "0", "id": "4546210237", "tags": ""}, {"datetaken": "2010-04-23 11:04:08", "license": "2", "title": "IMG_2361", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4546210397_6e77188610_o.jpg", "secret": "cd10d2cd85", "media": "photo", "latitude": "0", "id": "4546210397", "tags": ""}, {"datetaken": "2010-04-23 11:14:09", "license": "2", "title": "IMG_2363", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4546844472_9328e29882_o.jpg", "secret": "b81c642011", "media": "photo", "latitude": "0", "id": "4546844472", "tags": ""}, {"datetaken": "2010-04-23 11:20:12", "license": "2", "title": "IMG_2364", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4546210831_5f681b979c_o.jpg", "secret": "2116d1a42c", "media": "photo", "latitude": "0", "id": "4546210831", "tags": ""}, {"datetaken": "2010-04-23 12:02:32", "license": "2", "title": "IMG_2366", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4546210985_dea3f091e8_o.jpg", "secret": "7f61e9188e", "media": "photo", "latitude": "0", "id": "4546210985", "tags": ""}, {"datetaken": "2010-04-23 12:26:47", "license": "2", "title": "IMG_2367", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4546211091_ff963bf69a_o.jpg", "secret": "e8300b4f71", "media": "photo", "latitude": "0", "id": "4546211091", "tags": ""}, {"datetaken": "2010-04-23 12:26:56", "license": "2", "title": "IMG_2368", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2437/4546211273_ba43f7807e_o.jpg", "secret": "2451a7b7bb", "media": "photo", "latitude": "0", "id": "4546211273", "tags": ""}, {"datetaken": "2010-04-23 12:30:46", "license": "2", "title": "IMG_2369", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4546211377_cf610accd6_o.jpg", "secret": "e9460a2b53", "media": "photo", "latitude": "0", "id": "4546211377", "tags": ""}, {"datetaken": "2010-04-23 12:58:22", "license": "2", "title": "IMG_2370", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2800/4546845358_7cdfe8f09f_o.jpg", "secret": "fc20bb46a8", "media": "photo", "latitude": "0", "id": "4546845358", "tags": ""}, {"datetaken": "2010-04-23 13:41:33", "license": "2", "title": "IMG_2373", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2703/4546845514_01184851d7_o.jpg", "secret": "69f4305697", "media": "photo", "latitude": "0", "id": "4546845514", "tags": ""}, {"datetaken": "2010-04-23 13:42:08", "license": "2", "title": "IMG_2378", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4546211759_1600a4189a_o.jpg", "secret": "d817e6a506", "media": "photo", "latitude": "0", "id": "4546211759", "tags": ""}, {"datetaken": "2010-04-23 13:48:32", "license": "2", "title": "IMG_2380", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4546211887_0f2a735099_o.jpg", "secret": "b7eec4c45c", "media": "photo", "latitude": "0", "id": "4546211887", "tags": ""}, {"datetaken": "2010-04-23 13:50:57", "license": "2", "title": "IMG_2381", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4546212029_3d7af81b78_o.jpg", "secret": "5d7052de10", "media": "photo", "latitude": "0", "id": "4546212029", "tags": ""}, {"datetaken": "2010-04-23 13:51:12", "license": "2", "title": "IMG_2382", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4546212317_d09eaefc11_o.jpg", "secret": "16d0d1c066", "media": "photo", "latitude": "0", "id": "4546212317", "tags": ""}, {"datetaken": "2010-04-23 13:51:31", "license": "2", "title": "IMG_2383", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4546846358_79c45139b7_o.jpg", "secret": "c5c89ac2bc", "media": "photo", "latitude": "0", "id": "4546846358", "tags": ""}, {"datetaken": "2010-04-23 13:55:34", "license": "2", "title": "IMG_2384", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4546212645_9dfc8c13af_o.jpg", "secret": "35ef572455", "media": "photo", "latitude": "0", "id": "4546212645", "tags": ""}, {"datetaken": "2010-04-23 13:57:15", "license": "2", "title": "IMG_2385", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2751/4546846624_2f6e7923d6_o.jpg", "secret": "f6f1737f55", "media": "photo", "latitude": "0", "id": "4546846624", "tags": ""}, {"datetaken": "2010-04-23 14:01:25", "license": "2", "title": "IMG_2386", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4546213005_879e2faec6_o.jpg", "secret": "13525bab3f", "media": "photo", "latitude": "0", "id": "4546213005", "tags": ""}, {"datetaken": "2010-04-23 14:01:31", "license": "2", "title": "IMG_2387", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4546846956_a39831c0ec_o.jpg", "secret": "d3bedf3ce8", "media": "photo", "latitude": "0", "id": "4546846956", "tags": ""}, {"datetaken": "2010-04-23 14:01:58", "license": "2", "title": "IMG_2388", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4546213375_e524221672_o.jpg", "secret": "982e7df283", "media": "photo", "latitude": "0", "id": "4546213375", "tags": ""}, {"datetaken": "2010-04-23 14:03:00", "license": "2", "title": "IMG_2389", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4546213561_6dc63c35c2_o.jpg", "secret": "234d752cbd", "media": "photo", "latitude": "0", "id": "4546213561", "tags": ""}, {"datetaken": "2010-04-23 15:07:21", "license": "2", "title": "MVI_2365", "text": "", "album_id": "72157623793801177", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4546843894_3539623763_o.jpg", "secret": "f6d86e9d71", "media": "video", "latitude": "0", "id": "4546843894", "tags": ""}, {"datetaken": "2010-08-17 15:32:23", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4137/4920617710_ab72381d12_o.jpg", "secret": "c21858c5e5", "media": "photo", "latitude": "39.007250", "id": "4920617710", "tags": ""}, {"datetaken": "2010-08-17 15:35:24", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4143/4920618534_106a0e900d_o.jpg", "secret": "50614c6fe2", "media": "photo", "latitude": "39.007250", "id": "4920618534", "tags": ""}, {"datetaken": "2010-08-17 15:36:02", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4079/4920030889_1fdb09d9b5_o.jpg", "secret": "8a8dd1e1e4", "media": "photo", "latitude": "39.007250", "id": "4920030889", "tags": ""}, {"datetaken": "2010-08-17 15:37:26", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4076/4920020497_8831316dfb_o.jpg", "secret": "38b816bb5f", "media": "photo", "latitude": "39.007250", "id": "4920020497", "tags": ""}, {"datetaken": "2010-08-17 15:41:13", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4078/4920619714_cfc06f5717_o.jpg", "secret": "d3279ebb5d", "media": "photo", "latitude": "39.007250", "id": "4920619714", "tags": ""}, {"datetaken": "2010-08-17 15:41:22", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4115/4920620326_810f92205c_o.jpg", "secret": "07aa547f27", "media": "photo", "latitude": "39.007250", "id": "4920620326", "tags": ""}, {"datetaken": "2010-08-17 15:45:46", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4122/4920620920_84c6d51e52_o.jpg", "secret": "8d3999e9d8", "media": "photo", "latitude": "39.007250", "id": "4920620920", "tags": ""}, {"datetaken": "2010-08-17 16:12:36", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4101/4920622822_db6cf7c860_o.jpg", "secret": "28a36fb653", "media": "photo", "latitude": "39.007250", "id": "4920622822", "tags": ""}, {"datetaken": "2010-08-17 16:18:13", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4077/4920622228_09fb5e19d4_o.jpg", "secret": "157bc3c80c", "media": "photo", "latitude": "39.007250", "id": "4920622228", "tags": ""}, {"datetaken": "2010-08-17 16:18:20", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4114/4920023011_4a7c6a88d6_o.jpg", "secret": "5fa1bf105c", "media": "photo", "latitude": "39.007250", "id": "4920023011", "tags": ""}, {"datetaken": "2010-08-17 16:26:54", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4075/4920623352_bb29da9896_o.jpg", "secret": "500c39210a", "media": "photo", "latitude": "39.007250", "id": "4920623352", "tags": ""}, {"datetaken": "2010-08-17 16:41:00", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4074/4920623754_1455eb3821_o.jpg", "secret": "6124fa613a", "media": "photo", "latitude": "39.007250", "id": "4920623754", "tags": ""}, {"datetaken": "2010-08-17 16:47:31", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4141/4920025759_8ea1243d60_o.jpg", "secret": "f11dd232ea", "media": "photo", "latitude": "39.007250", "id": "4920025759", "tags": ""}, {"datetaken": "2010-08-17 16:58:19", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4135/4920026209_2788a564c8_o.jpg", "secret": "e674ef7785", "media": "photo", "latitude": "39.007250", "id": "4920026209", "tags": ""}, {"datetaken": "2010-08-17 16:58:41", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4079/4920625436_a0ab0c52e6_o.jpg", "secret": "dd05f92c00", "media": "photo", "latitude": "39.007250", "id": "4920625436", "tags": ""}, {"datetaken": "2010-08-17 17:04:13", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4100/4920625898_2a2f87d597_o.jpg", "secret": "2d98605307", "media": "photo", "latitude": "39.007250", "id": "4920625898", "tags": ""}, {"datetaken": "2010-08-17 17:05:19", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4117/4920028463_01733ebd49_o.jpg", "secret": "5d2418505a", "media": "photo", "latitude": "39.007250", "id": "4920028463", "tags": ""}, {"datetaken": "2010-08-17 17:06:05", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4114/4920626346_598d62db8f_o.jpg", "secret": "890d9b053b", "media": "photo", "latitude": "39.007250", "id": "4920626346", "tags": ""}, {"datetaken": "2010-08-17 17:37:45", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4142/4920029001_0028784b83_o.jpg", "secret": "3c9b9b1afa", "media": "photo", "latitude": "39.007250", "id": "4920029001", "tags": ""}, {"datetaken": "2010-08-17 17:40:30", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4134/4920628114_e1c6576154_o.jpg", "secret": "0042067f33", "media": "photo", "latitude": "39.007250", "id": "4920628114", "tags": ""}, {"datetaken": "2010-08-17 17:53:24", "license": "3", "title": "Mel Brooks' The Producers Rehearsals at Starlight Theatre", "text": "", "album_id": "72157624790448284", "longitude": "-94.532922", "url_o": "https://farm5.staticflickr.com/4102/4920628750_3eb3f887a1_o.jpg", "secret": "462ddff38d", "media": "photo", "latitude": "39.007250", "id": "4920628750", "tags": ""}, {"datetaken": "2010-02-28 13:01:02", "license": "2", "title": "Iron Horse BBQ - Parada del Sol Rodeo", "text": "", "album_id": "72157623561879278", "longitude": "-111.877105", "url_o": "https://farm5.staticflickr.com/4016/4530096182_1137cf8753_o.jpg", "secret": "5cb4408249", "media": "photo", "latitude": "33.631799", "id": "4530096182", "tags": "arizona sol phoenix del bbq historic parade prca barbecue rodeo scottsdale barbeque 2010 parada paradadelsol westworld alhikesaz equidome professionalcowboysrodeoassociation ironhorsebarbecue paradadel intphoenix"}, {"datetaken": "2010-02-28 13:33:51", "license": "2", "title": "Old Ford truck - Parada del Sol Rodeo - Scottsdale", "text": "", "album_id": "72157623561879278", "longitude": "-111.878060", "url_o": "https://farm5.staticflickr.com/4049/4415948880_65e66ebe59_o.jpg", "secret": "a90acb3090", "media": "photo", "latitude": "33.630932", "id": "4415948880", "tags": "arizona ford sol phoenix del truck vintage pickup historic parade prca transportation vehicle rodeo scottsdale v8 modelt 2010 parada flatbed paradadelsol westworld alhikesaz equidome arizonahistoricvehicle professionalcowboysrodeoassociation ltn8 paradadel intphoenix"}, {"datetaken": "2010-02-28 13:34:11", "license": "2", "title": "Old Ford truck - Parada del Sol Rodeo - Scottsdale", "text": "", "album_id": "72157623561879278", "longitude": "-111.878060", "url_o": "https://farm3.staticflickr.com/2708/4415181929_078465d458_o.jpg", "secret": "fd4f47ecbb", "media": "photo", "latitude": "33.630932", "id": "4415181929", "tags": "arizona ford sol phoenix del truck vintage pickup historic parade prca transportation vehicle rodeo scottsdale modelt 2010 parada flatbed paradadelsol westworld alhikesaz equidome arizonahistoricvehicle professionalcowboysrodeoassociation ltn8 paradadel intphoenix"}, {"datetaken": "2010-02-28 14:00:50", "license": "2", "title": "Kianna Martinez singing White Liar - Parada del Sol Rodeo", "text": "", "album_id": "72157623561879278", "longitude": "-111.877738", "url_o": "https://farm5.staticflickr.com/4002/4530096650_a529e18160_o.jpg", "secret": "e0b2d1d515", "media": "photo", "latitude": "33.631352", "id": "4530096650", "tags": "arizona sol phoenix del walking singing boots historic parade prca sing singer western rodeo scottsdale cowgirl 2010 parada paradadelsol westworld alhikesaz equidome professionalcowboysrodeoassociation kiannamartinez paradadel intphoenix"}, {"datetaken": "2010-02-28 14:08:53", "license": "2", "title": "Bridwell Riders bring in the Colors - Parada del Sol Rodeo - Scottsdale", "text": "", "album_id": "72157623561879278", "longitude": "-111.877641", "url_o": "https://farm5.staticflickr.com/4006/4419216388_047954984e_o.jpg", "secret": "62c426099a", "media": "photo", "latitude": "33.631339", "id": "4419216388", "tags": "arizona horse sol phoenix del dress action song flag americanflag patriotic parade prca western rodeo scottsdale cowgirl rider equestrian starsandstripes 2010 parada oldglory paradadelsol westworld youtube equestrienne \u30ed\u30c7\u30aa \u30ab\u30a6\u30dc\u30fc\u30a4 alhikesaz settomusic equidome aarontippen professionalcowboysrodeoassociation bridwellgirls arizonahighwayscowboys paradadel intphoenix"}, {"datetaken": "2010-02-28 14:09:49", "license": "2", "title": "Bridwell Riders - Presentation of the Colors - Parada del Sol Rodeo", "text": "", "album_id": "72157623561879278", "longitude": "-111.877738", "url_o": "https://farm5.staticflickr.com/4057/4536552369_2ac9c43692_o.jpg", "secret": "b999f6bc2a", "media": "photo", "latitude": "33.631352", "id": "4536552369", "tags": "arizona horse sol phoenix del dress flag americanflag parade prca western rodeo americana scottsdale cowgirl equestrian 2010 pledgeofallegiance parada oldglory paradadelsol westworld redskelton equestrienne bridwell \u30a2\u30ea\u30be\u30ca\u5dde alhikesaz equidome professionalcowboysrodeoassociation loribridwell bridwellgirls bridwellriders intphoenix"}, {"datetaken": "2010-02-28 14:11:02", "license": "2", "title": "Jumbotron behind Lori Bridwell - Presentation of the Colors - Parada del Sol Rodeo", "text": "", "album_id": "72157623561879278", "longitude": "-111.877695", "url_o": "https://farm3.staticflickr.com/2803/4421766226_8b3721a17d_o.jpg", "secret": "37466bc29b", "media": "photo", "latitude": "33.631383", "id": "4421766226", "tags": "arizona horse sol phoenix del dress flag americanflag jumbotron parade prca western rodeo scottsdale cowgirl equestrian starsandstripes 2010 bigscreen parada oldglory paradadelsol westworld equestrienne \u30ed\u30c7\u30aa \u30ab\u30a6\u30dc\u30fc\u30a4 alhikesaz equidome professionalcowboysrodeoassociation loribridwell bridwellgirls paradadel intphoenix"}, {"datetaken": "2010-02-28 14:11:49", "license": "2", "title": "Bridwell Riders present the Colors - Parada del Sol Rodeo - Scottsdale", "text": "", "album_id": "72157623561879278", "longitude": "-111.877641", "url_o": "https://farm5.staticflickr.com/4049/4418450215_a6f276c55d_o.jpg", "secret": "a7bb32a2ba", "media": "photo", "latitude": "33.631339", "id": "4418450215", "tags": "arizona horse sol phoenix del dress flag americanflag patriotic parade prca western rodeo scottsdale cowgirl equestrian starsandstripes 2010 parada oldglory paradadelsol westworld equestrienne \u30ed\u30c7\u30aa \u30ab\u30a6\u30dc\u30fc\u30a4 alhikesaz equidome professionalcowboysrodeoassociation bridwellgirls paradadel intphoenix"}, {"datetaken": "2010-02-28 14:12:51", "license": "2", "title": "Hummer and Cowgirls - Parada del Sol - Scottsdale", "text": "", "album_id": "72157623561879278", "longitude": "-111.877738", "url_o": "https://farm3.staticflickr.com/2781/4412891606_78c6b7e808_o.jpg", "secret": "8064f66ddb", "media": "photo", "latitude": "33.631473", "id": "4412891606", "tags": "arizona sol phoenix del soldier military parade prca transportation vehicle rodeo scottsdale hummer humvee hmmwv cowgirls grunt 2010 parada paradadelsol westworld \u30ed\u30c7\u30aa \u30ab\u30a6\u30dc\u30fc\u30a4 alhikesaz equidome professionalcowboysrodeoassociation intphoenix"}, {"datetaken": "2010-02-28 14:15:29", "license": "2", "title": "Presentation of the Colors - Parada del Sol Rodeo - Scottsdale", "text": "", "album_id": "72157623561879278", "longitude": "-111.877695", "url_o": "https://farm3.staticflickr.com/2753/4430017627_3cb49425fe_o.jpg", "secret": "964a77f569", "media": "photo", "latitude": "33.631383", "id": "4430017627", "tags": "old arizona sol phoenix usmc cowboys del stars army star lyrics quote song glory stripes flag military banner americanflag parade professional prca american rodeo scottsdale lawenforcement starsandstripes association spangled starspangledbanner 2010 parada oldglory paradadelsol nationalanthem westworld \u30ed\u30c7\u30aa \u30ab\u30a6\u30dc\u30fc\u30a4 alhikesaz settomusic equidome professionalcowboysrodeoassociation paradadel intphoenix"}, {"datetaken": "2010-02-28 14:37:08", "license": "2", "title": "Steer Wrestling - Parada del Sol Rodeo", "text": "", "album_id": "72157623561879278", "longitude": "-111.877738", "url_o": "https://farm5.staticflickr.com/4052/4461026993_b00c8db945_o.jpg", "secret": "ab172c9c5c", "media": "photo", "latitude": "33.631352", "id": "4461026993", "tags": "arizona blur sol phoenix del cowboy action wrestling historic parade dirt prca rodeo scottsdale steer 2010 parada violent paradadelsol westworld steerwrestling bulldogging \u30ed\u30c7\u30aa \u30ab\u30a6\u30dc\u30fc\u30a4 bulldoggin azwexplore alhikesaz equidome professionalcowboysrodeoassociation paradadel intphoenix"}, {"datetaken": "2010-02-28 14:53:49", "license": "2", "title": "Justin Boots Sports Medicine Trailer - Parada del Sol Rodeo", "text": "", "album_id": "72157623561879278", "longitude": "-111.877695", "url_o": "https://farm3.staticflickr.com/2711/4421000015_2658ae5d11_o.jpg", "secret": "b5a83ef958", "media": "photo", "latitude": "33.631383", "id": "4421000015", "tags": "justin arizona sol phoenix del boots parade prca rodeo scottsdale 2010 parada paradadelsol westworld \u30ed\u30c7\u30aa \u30ab\u30a6\u30dc\u30fc\u30a4 sportsmedicine justinboots alhikesaz cowoboys equidome professionalcowboysrodeoassociation sportsmedicinetrailer paradadel intphoenix"}, {"datetaken": "2010-02-28 15:08:41", "license": "2", "title": "Saddle Bronc - Parada del Sol Rodeo - Scottsdale", "text": "", "album_id": "72157623561879278", "longitude": "-111.877738", "url_o": "https://farm5.staticflickr.com/4024/4408228978_1f7fc6c317_o.jpg", "secret": "0334c9bf29", "media": "photo", "latitude": "33.631473", "id": "4408228978", "tags": "arizona horses sol phoenix del cowboy action historic parade prca liftoff western rodeo bronco scottsdale buck rider saddle bronc 2010 parada bucking paradadelsol westworld saddlebronc \u30ed\u30c7\u30aa \u30ab\u30a6\u30dc\u30fc\u30a4 alhikesaz equidome professionalcowboysrodeoassociation paradadel intphoenix"}, {"datetaken": "2010-02-28 15:08:42", "license": "2", "title": "Bucked Up - Parada del Sol Rodeo - Scottsdale", "text": "", "album_id": "72157623561879278", "longitude": "-111.877738", "url_o": "https://farm3.staticflickr.com/2741/4407461053_4d4190dc8c_o.jpg", "secret": "ec2b675f41", "media": "photo", "latitude": "33.631473", "id": "4407461053", "tags": "arizona horses sol phoenix del cowboy action historic parade prca liftoff western rodeo bronco scottsdale buck rider saddle bronc 2010 parada bucking paradadelsol westworld cowboyup saddlebronc \u30ed\u30c7\u30aa \u30ab\u30a6\u30dc\u30fc\u30a4 \u30a2\u30ea\u30be\u30ca\u5dde alhikesaz equidome professionalcowboysrodeoassociation paradadel intphoenix"}, {"datetaken": "2010-02-28 15:15:30", "license": "2", "title": "John Payne \"One Armed Bandit\" Rodeo Entertainment - Parada del Sol Rodeo", "text": "", "album_id": "72157623561879278", "longitude": "-111.877738", "url_o": "https://farm3.staticflickr.com/2785/4510177522_b578d1d6fb_o.jpg", "secret": "108265489b", "media": "photo", "latitude": "33.631352", "id": "4510177522", "tags": "arizona horse sol phoenix cowboys del john one buffalo cowboy parade prca rodeo entertainer scottsdale trailer bandit payne 2010 parada armed paradadelsol westworld onearmedbandit johnpayne alhikesaz equidome professionalcowboysrodeoassociation paradadel intphoenix"}, {"datetaken": "2010-02-28 15:17:33", "license": "2", "title": "John Payne \"One Armed Bandit\" Rodeo Entertainment - Parada del Sol Rodeo", "text": "", "album_id": "72157623561879278", "longitude": "-111.877738", "url_o": "https://farm3.staticflickr.com/2762/4510177734_1c96657c6c_o.jpg", "secret": "62feefac95", "media": "photo", "latitude": "33.631352", "id": "4510177734", "tags": "arizona sol phoenix del buffalo cowboy parade prca transportation rodeo entertainer scottsdale 2010 parada paradadelsol westworld cowboyup onearmedbandit johnpayne alhikesaz equidome professionalcowboysrodeoassociation paradadel intphoenix"}, {"datetaken": "2010-02-28 15:33:17", "license": "2", "title": "Jeff \"Slim\" Garner flies in with Kianna Martinez", "text": "", "album_id": "72157623561879278", "longitude": "-111.877695", "url_o": "https://farm3.staticflickr.com/2768/4428809976_25dd74b038_o.jpg", "secret": "48f5e0e3bc", "media": "photo", "latitude": "33.631383", "id": "4428809976", "tags": "arizona sol phoenix del plane slim clown historic parade prca western rodeo scottsdale cowgirl garner 2010 parada paradadelsol westworld rodeoclown \u30ed\u30c7\u30aa \u30ab\u30a6\u30dc\u30fc\u30a4 alhikesaz equidome jeffgarner professionalcowboysrodeoassociation jeffslimgarner slimgarner kiannamartinez paradadel intphoenix"}, {"datetaken": "2010-02-28 15:33:20", "license": "2", "title": "Jeff \"Slim\" Garner flies in with Kianna Martinez - Parada del Sol Rodeo - Scottsdale", "text": "", "album_id": "72157623561879278", "longitude": "-111.877695", "url_o": "https://farm5.staticflickr.com/4026/4428809972_75b36a0488_o.jpg", "secret": "960dfc9d6b", "media": "photo", "latitude": "33.631383", "id": "4428809972", "tags": "arizona sol phoenix del plane slim clown historic parade prca transportation western rodeo scottsdale cowgirl garner 2010 parada paradadelsol westworld rodeoclown \u30ed\u30c7\u30aa \u30ab\u30a6\u30dc\u30fc\u30a4 alhikesaz equidome jeffgarner professionalcowboysrodeoassociation jeffslimgarner slimgarner kiannamartinez paradadel intphoenix"}, {"datetaken": "2010-02-28 15:53:20", "license": "2", "title": "Barrel turn - Parada del Sol Rodeo", "text": "", "album_id": "72157623561879278", "longitude": "-111.877695", "url_o": "https://farm5.staticflickr.com/4023/4459288500_9d1ebc9ba8_o.jpg", "secret": "54da309fca", "media": "photo", "latitude": "33.631383", "id": "4459288500", "tags": "arizona horse sol phoenix del turn barrel racing historic parade prca western rodeo scottsdale cowgirl coors 2010 parada paradadelsol westworld barrelracing \u30ed\u30c7\u30aa \u30ab\u30a6\u30dc\u30fc\u30a4 alhikesaz equidome professionalcowboysrodeoassociation paradadel intphoenix"}, {"datetaken": "2010-01-23 19:30:52", "license": "5", "title": "Dinner at the Second City Bistro", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm5.staticflickr.com/4041/4303488880_a30eb4cf5f_o.jpg", "secret": "d610a98b8e", "media": "photo", "latitude": "33.918541", "id": "4303488880", "tags": "classmates alumni secondcitybistro kailua74 lauraswatek"}, {"datetaken": "2010-01-23 19:45:10", "license": "5", "title": "Gathering at the Purple Orchid", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm5.staticflickr.com/4012/4302741337_5a32b06fd1_o.jpg", "secret": "88d5320076", "media": "photo", "latitude": "33.918541", "id": "4302741337", "tags": "classmates alumni annette kailua74"}, {"datetaken": "2010-01-23 19:45:55", "license": "5", "title": "Gathering at the Purple Orchid", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm5.staticflickr.com/4004/4302742037_f896ae34f2_o.jpg", "secret": "d3aba2bfcc", "media": "photo", "latitude": "33.918541", "id": "4302742037", "tags": "classmates alumni annette kailua74"}, {"datetaken": "2010-01-23 20:45:00", "license": "5", "title": "Dinner at the Second City Bistro", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm3.staticflickr.com/2776/4303494176_877f9e2ea4_o.jpg", "secret": "04c9e24639", "media": "photo", "latitude": "33.918541", "id": "4303494176", "tags": "classmates alumni secondcitybistro kailua74 lauraswatek"}, {"datetaken": "2010-01-23 20:45:00", "license": "5", "title": "Dinner at the Second City Bistro", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm3.staticflickr.com/2776/4303495124_20f63543b2_o.jpg", "secret": "4e00e353e1", "media": "photo", "latitude": "33.918541", "id": "4303495124", "tags": "classmates alumni secondcitybistro kailua74 lauraswatek"}, {"datetaken": "2010-01-23 20:45:39", "license": "5", "title": "Dinner at the Second City Bistro", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm5.staticflickr.com/4068/4303497304_e366290430_o.jpg", "secret": "90cc7759ff", "media": "photo", "latitude": "33.918541", "id": "4303497304", "tags": "classmates alumni secondcitybistro kailua74 \u00a7flickrff lauraswatek"}, {"datetaken": "2010-01-23 21:35:00", "license": "5", "title": "Gathering at the Purple Orchid", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm3.staticflickr.com/2791/4303507842_491a31ebc7_o.jpg", "secret": "1ee6489735", "media": "photo", "latitude": "33.918541", "id": "4303507842", "tags": "classmates alumni kailua74 purpleorchidtikilounge"}, {"datetaken": "2010-01-23 21:45:58", "license": "5", "title": "Gathering at the Purple Orchid", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm3.staticflickr.com/2720/4302762543_472b2cffc8_o.jpg", "secret": "f1170b1693", "media": "photo", "latitude": "33.918541", "id": "4302762543", "tags": "classmates alumni shal kailua74 purpleorchidtikilounge"}, {"datetaken": "2010-01-23 21:47:20", "license": "5", "title": "Gathering at the Purple Orchid", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm5.staticflickr.com/4047/4302766931_de99ebda9a_o.jpg", "secret": "d4675c5439", "media": "photo", "latitude": "33.918541", "id": "4302766931", "tags": "classmates alumni kailua74 \u00a7flickrff purpleorchidtikilounge"}, {"datetaken": "2010-01-23 21:49:17", "license": "5", "title": "Gathering at the Purple Orchid", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm5.staticflickr.com/4029/4303518424_c604bfcb1b_o.jpg", "secret": "265180ae4f", "media": "photo", "latitude": "33.918541", "id": "4303518424", "tags": "classmates alumni kailua74 \u00a7flickrff purpleorchidtikilounge"}, {"datetaken": "2010-01-23 21:49:51", "license": "5", "title": "Gathering at the Purple Orchid", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm5.staticflickr.com/4026/4303520548_070c17ce7f_o.jpg", "secret": "e1f1d26b59", "media": "photo", "latitude": "33.918541", "id": "4303520548", "tags": "classmates alumni kailua74 \u00a7flickrff purpleorchidtikilounge"}, {"datetaken": "2010-01-23 21:51:14", "license": "5", "title": "Gathering at the Purple Orchid", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm5.staticflickr.com/4004/4302772979_60e54b6dab_o.jpg", "secret": "b596e7b089", "media": "photo", "latitude": "33.918541", "id": "4302772979", "tags": "classmates alumni kailua74 purpleorchidtikilounge"}, {"datetaken": "2010-01-23 21:56:02", "license": "5", "title": "Gathering at the Purple Orchid", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm5.staticflickr.com/4020/4303525212_47f3716bf6_o.jpg", "secret": "7d38da0776", "media": "photo", "latitude": "33.918541", "id": "4303525212", "tags": "classmates alumni kailua74 purpleorchidtikilounge"}, {"datetaken": "2010-01-23 22:05:41", "license": "5", "title": "Gathering at the Purple Orchid", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm5.staticflickr.com/4058/4302776081_960f1962fd_o.jpg", "secret": "f7c13c7ae9", "media": "photo", "latitude": "33.918541", "id": "4302776081", "tags": "neon classmates alumni kailua74 purpleorchidtikilounge"}, {"datetaken": "2010-01-23 23:03:56", "license": "5", "title": "Gathering at the Purple Orchid", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm5.staticflickr.com/4049/4302779817_50489f43e9_o.jpg", "secret": "70d8935245", "media": "photo", "latitude": "33.918541", "id": "4302779817", "tags": "classmates alumni kailua74 \u00a7flickrff purpleorchidtikilounge"}, {"datetaken": "2010-01-24 00:26:39", "license": "5", "title": "Gathering at the Purple Orchid", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm3.staticflickr.com/2702/4303535090_1905765ea8_o.jpg", "secret": "4238ea978d", "media": "photo", "latitude": "33.918541", "id": "4303535090", "tags": "classmates alumni annette seran kailua74 \u00a7flickrff purpleorchidtikilounge"}, {"datetaken": "2010-01-24 00:26:39", "license": "5", "title": "Gathering at the Purple Orchid", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm3.staticflickr.com/2752/4303535762_48d2289f65_o.jpg", "secret": "1018cd6551", "media": "photo", "latitude": "33.918541", "id": "4303535762", "tags": "classmates alumni annette seran kailua74 \u00a7flickrff purpleorchidtikilounge"}, {"datetaken": "2010-01-24 00:44:38", "license": "5", "title": "Gathering at the Purple Orchid", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm3.staticflickr.com/2776/4302787329_61c6d7d1ac_o.jpg", "secret": "8c0a3b0a7f", "media": "photo", "latitude": "33.918541", "id": "4302787329", "tags": "classmates alumni seran rebeccafernandez kailua74 \u00a7flickrff purpleorchidtikilounge"}, {"datetaken": "2010-01-24 00:44:55", "license": "5", "title": "Gathering at the Purple Orchid", "text": "", "album_id": "72157623280003178", "longitude": "-118.417468", "url_o": "https://farm5.staticflickr.com/4030/4302788695_620a84b480_o.jpg", "secret": "e6231d9e59", "media": "photo", "latitude": "33.918541", "id": "4302788695", "tags": "classmates alumni annette seran rebeccafernandez kailua74 \u00a7flickrff purpleorchidtikilounge"}, {"datetaken": "2010-02-24 20:24:21", "license": "3", "title": "The Swell Season Concert Live @ Ancienne Belgique Brussels-4303", "text": "", "album_id": "72157623388795231", "longitude": "4.348633", "url_o": "https://farm5.staticflickr.com/4040/4390130400_dc728d71c8_o.jpg", "secret": "befc4ac435", "media": "photo", "latitude": "50.847227", "id": "4390130400", "tags": "brussels irish love k concert nikon tour live gig vince bruxelles ab v once theframes glenhansard bxl anciennebelgique d90 alongwayfromhome theswellseason swellseason fallingslowly mark\u00e9tairglov\u00e1 kmeron vincentphilbert semiflex wwwkmeroncom lowrising wwwmusicfromthepitcom strictjoy lastfm:event=1135562 whenyoumindsmadeup oneofthebestniteever butidorememberwhy"}, {"datetaken": "2010-02-24 20:27:08", "license": "3", "title": "The Swell Season Concert Live @ Ancienne Belgique Brussels-4315", "text": "", "album_id": "72157623388795231", "longitude": "4.348633", "url_o": "https://farm5.staticflickr.com/4009/4390130754_cd19b8e51a_o.jpg", "secret": "64b9c5e795", "media": "photo", "latitude": "50.847227", "id": "4390130754", "tags": "brussels irish love k concert nikon tour live gig vince bruxelles ab v once theframes glenhansard bxl anciennebelgique d90 alongwayfromhome theswellseason swellseason fallingslowly mark\u00e9tairglov\u00e1 kmeron vincentphilbert semiflex wwwkmeroncom lowrising wwwmusicfromthepitcom strictjoy lastfm:event=1135562"}, {"datetaken": "2010-02-24 20:31:19", "license": "3", "title": "_The Swell Season Concert Live @ Ancienne Belgique Brussels-4342", "text": "", "album_id": "72157623388795231", "longitude": "4.348633", "url_o": "https://farm3.staticflickr.com/2682/4390164316_27fe32381e_o.jpg", "secret": "8f6568a4e7", "media": "photo", "latitude": "50.847227", "id": "4390164316", "tags": "brussels irish love k concert nikon tour live gig vince bruxelles ab v once theframes glenhansard bxl anciennebelgique d90 alongwayfromhome theswellseason swellseason fallingslowly mark\u00e9tairglov\u00e1 kmeron vincentphilbert semiflex wwwkmeroncom lowrising wwwmusicfromthepitcom strictjoy lastfm:event=1135562 whenyoumindsmadeup oneofthebestniteever butidorememberwhy"}, {"datetaken": "2010-02-24 20:31:51", "license": "3", "title": "The Swell Season Concert Live @ Ancienne Belgique Brussels-4346", "text": "", "album_id": "72157623388795231", "longitude": "4.348633", "url_o": "https://farm5.staticflickr.com/4030/4390135722_96a769a99f_o.jpg", "secret": "fb9762c97e", "media": "photo", "latitude": "50.847227", "id": "4390135722", "tags": "brussels irish love k concert nikon tour live gig vince bruxelles ab v once theframes glenhansard bxl anciennebelgique d90 alongwayfromhome theswellseason swellseason fallingslowly mark\u00e9tairglov\u00e1 kmeron vincentphilbert semiflex wwwkmeroncom lowrising wwwmusicfromthepitcom strictjoy lastfm:event=1135562 whenyoumindsmadeup oneofthebestniteever butidorememberwhy"}, {"datetaken": "2010-02-24 20:33:20", "license": "3", "title": "The Swell Season Concert Live @ Ancienne Belgique Brussels-4360", "text": "", "album_id": "72157623388795231", "longitude": "4.348633", "url_o": "https://farm5.staticflickr.com/4064/4389371243_e6e62dbf1c_o.jpg", "secret": "bc0f155635", "media": "photo", "latitude": "50.847227", "id": "4389371243", "tags": "brussels irish love k concert nikon tour live gig vince bruxelles ab v once theframes glenhansard bxl anciennebelgique d90 alongwayfromhome theswellseason swellseason fallingslowly mark\u00e9tairglov\u00e1 kmeron vincentphilbert semiflex wwwkmeroncom lowrising wwwmusicfromthepitcom strictjoy lastfm:event=1135562 whenyoumindsmadeup oneofthebestniteever butidorememberwhy"}, {"datetaken": "2010-02-24 20:40:20", "license": "3", "title": "The Swell Season Concert Live @ Ancienne Belgique Brussels-4410", "text": "", "album_id": "72157623388795231", "longitude": "4.348633", "url_o": "https://farm5.staticflickr.com/4059/4390145688_130f88857a_o.jpg", "secret": "10129f51ee", "media": "photo", "latitude": "50.847227", "id": "4390145688", "tags": "brussels irish love k concert nikon tour live gig vince bruxelles ab v once theframes glenhansard bxl anciennebelgique d90 alongwayfromhome theswellseason swellseason fallingslowly mark\u00e9tairglov\u00e1 kmeron vincentphilbert semiflex wwwkmeroncom lowrising wwwmusicfromthepitcom strictjoy lastfm:event=1135562 whenyoumindsmadeup oneofthebestniteever butidorememberwhy"}, {"datetaken": "2010-02-24 21:02:16", "license": "3", "title": "The Swell Season Concert Live @ Ancienne Belgique Brussels-4424", "text": "", "album_id": "72157623388795231", "longitude": "4.348633", "url_o": "https://farm5.staticflickr.com/4020/4389381601_f403f5a2b2_o.jpg", "secret": "faecd4b265", "media": "photo", "latitude": "50.847227", "id": "4389381601", "tags": "brussels irish love k concert nikon tour live gig vince bruxelles ab v once theframes glenhansard bxl anciennebelgique d90 alongwayfromhome theswellseason swellseason fallingslowly mark\u00e9tairglov\u00e1 kmeron vincentphilbert semiflex wwwkmeroncom lowrising wwwmusicfromthepitcom strictjoy lastfm:event=1135562 whenyoumindsmadeup oneofthebestniteever butidorememberwhy"}, {"datetaken": "2010-02-24 21:04:34", "license": "3", "title": "The Swell Season Concert Live @ Ancienne Belgique Brussels-4430", "text": "", "album_id": "72157623388795231", "longitude": "4.348633", "url_o": "https://farm5.staticflickr.com/4068/4389383069_a054f8865b_o.jpg", "secret": "2a0c880717", "media": "photo", "latitude": "50.847227", "id": "4389383069", "tags": "lastfm:event=1135562 theswellseason swellseason glenhansard mark\u00e9tairglov\u00e1 concert tour live gig ab anciennebelgique bruxelles brussels bxl semiflex irish once strictjoy whenyoumindsmadeup fallingslowly oneofthebestniteever lowrising theframes vincentphilbert vince kmeron v k wwwkmeroncom wwwmusicfromthepitcom nikon d90 alongwayfromhome butidorememberwhy love"}, {"datetaken": "2010-02-24 21:27:16", "license": "3", "title": "_The Swell Season Concert Live @ Ancienne Belgique Brussels-4453", "text": "", "album_id": "72157623388795231", "longitude": "4.348633", "url_o": "https://farm3.staticflickr.com/2766/4389396877_748789b65d_o.jpg", "secret": "49075b8ae9", "media": "photo", "latitude": "50.847227", "id": "4389396877", "tags": "brussels irish love k concert nikon tour live gig vince bruxelles ab v once theframes glenhansard bxl anciennebelgique d90 alongwayfromhome theswellseason swellseason fallingslowly mark\u00e9tairglov\u00e1 kmeron vincentphilbert semiflex wwwkmeroncom lowrising wwwmusicfromthepitcom strictjoy lastfm:event=1135562 whenyoumindsmadeup oneofthebestniteever butidorememberwhy"}, {"datetaken": "2010-02-24 21:41:15", "license": "3", "title": "The Swell Season Concert Live @ Ancienne Belgique Brussels-4467", "text": "", "album_id": "72157623388795231", "longitude": "4.348633", "url_o": "https://farm3.staticflickr.com/2766/4390155182_3d6e432382_o.jpg", "secret": "393b72effa", "media": "photo", "latitude": "50.847227", "id": "4390155182", "tags": "brussels irish love k concert nikon tour live gig vince bruxelles ab v once theframes glenhansard bxl anciennebelgique d90 alongwayfromhome theswellseason swellseason fallingslowly mark\u00e9tairglov\u00e1 kmeron vincentphilbert semiflex wwwkmeroncom lowrising wwwmusicfromthepitcom strictjoy lastfm:event=1135562 whenyoumindsmadeup oneofthebestniteever butidorememberwhy"}, {"datetaken": "2010-02-24 22:06:22", "license": "3", "title": "The Swell Season Concert Live @ Ancienne Belgique Brussels-4478", "text": "", "album_id": "72157623388795231", "longitude": "4.348633", "url_o": "https://farm3.staticflickr.com/2689/4389388273_a09b5d8df1_o.jpg", "secret": "550b7d957f", "media": "photo", "latitude": "50.847227", "id": "4389388273", "tags": "brussels irish love k concert nikon tour live gig vince bruxelles ab v once theframes glenhansard bxl anciennebelgique d90 alongwayfromhome theswellseason swellseason fallingslowly mark\u00e9tairglov\u00e1 kmeron vincentphilbert semiflex wwwkmeroncom lowrising wwwmusicfromthepitcom strictjoy lastfm:event=1135562 whenyoumindsmadeup oneofthebestniteever butidorememberwhy"}, {"datetaken": "2010-02-24 22:06:28", "license": "3", "title": "The Swell Season Concert Live @ Ancienne Belgique Brussels-4479", "text": "", "album_id": "72157623388795231", "longitude": "4.348633", "url_o": "https://farm3.staticflickr.com/2732/4390156968_c771d76cb2_o.jpg", "secret": "79c05d12e0", "media": "photo", "latitude": "50.847227", "id": "4390156968", "tags": "brussels irish love k concert nikon tour live gig vince bruxelles ab v once theframes glenhansard bxl anciennebelgique d90 alongwayfromhome theswellseason swellseason fallingslowly mark\u00e9tairglov\u00e1 kmeron vincentphilbert semiflex wwwkmeroncom lowrising wwwmusicfromthepitcom strictjoy lastfm:event=1135562 whenyoumindsmadeup oneofthebestniteever butidorememberwhy"}, {"datetaken": "2010-02-24 22:07:19", "license": "3", "title": "_The Swell Season Concert Live @ Ancienne Belgique Brussels-4485", "text": "", "album_id": "72157623388795231", "longitude": "4.348633", "url_o": "https://farm5.staticflickr.com/4049/4390165246_ba66429e56_o.jpg", "secret": "f211a00262", "media": "photo", "latitude": "50.847227", "id": "4390165246", "tags": "brussels irish love k concert nikon tour live gig vince bruxelles ab v once theframes glenhansard bxl anciennebelgique d90 alongwayfromhome theswellseason swellseason fallingslowly mark\u00e9tairglov\u00e1 kmeron vincentphilbert semiflex wwwkmeroncom lowrising wwwmusicfromthepitcom strictjoy lastfm:event=1135562 whenyoumindsmadeup oneofthebestniteever butidorememberwhy"}, {"datetaken": "2010-02-24 22:30:15", "license": "3", "title": "The Swell Season Concert Live @ Ancienne Belgique Brussels-4492", "text": "", "album_id": "72157623388795231", "longitude": "4.348633", "url_o": "https://farm3.staticflickr.com/2741/4389392605_ca7da6c5fd_o.jpg", "secret": "a625daaea2", "media": "photo", "latitude": "50.847227", "id": "4389392605", "tags": "brussels irish love k concert nikon tour live gig vince bruxelles ab v once theframes glenhansard bxl anciennebelgique d90 alongwayfromhome theswellseason swellseason fallingslowly mark\u00e9tairglov\u00e1 kmeron vincentphilbert semiflex wwwkmeroncom lowrising wwwmusicfromthepitcom strictjoy lastfm:event=1135562 whenyoumindsmadeup oneofthebestniteever butidorememberwhy"}, {"datetaken": "2010-02-24 22:33:47", "license": "3", "title": "Set List The Swell Season Concert Live @ Ancienne Belgique Brussels-4499", "text": "", "album_id": "72157623388795231", "longitude": "4.348633", "url_o": "https://farm3.staticflickr.com/2800/4390161980_d4a4670d46_o.jpg", "secret": "168431c556", "media": "photo", "latitude": "50.847227", "id": "4390161980", "tags": "brussels irish love k set concert nikon tour live gig vince bruxelles ab v list once setlist theframes glenhansard bxl anciennebelgique d90 alongwayfromhome theswellseason swellseason fallingslowly mark\u00e9tairglov\u00e1 kmeron vincentphilbert semiflex wwwkmeroncom lowrising wwwmusicfromthepitcom strictjoy lastfm:event=1135562 whenyoumindsmadeup oneofthebestniteever butidorememberwhy"}, {"datetaken": "2010-06-25 21:16:59", "license": "3", "title": "The Round Mountain Wild Fire - Big Thompson Canyon - Colorado", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4735623375_2f9ed4019e_o.jpg", "secret": "46cdf0ed02", "media": "photo", "latitude": "0", "id": "4735623375", "tags": "colorado loveland forestfires rockymountainnationalpark wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow rockymountainfiresimages wildfirephotographs coloradowildfirephotography wildfirenaturephotography"}, {"datetaken": "2010-06-25 21:19:54", "license": "3", "title": "The Round Mountain Wild Fire - Colorado", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4736259182_f09530bf15_o.jpg", "secret": "9ae53a67e9", "media": "photo", "latitude": "0", "id": "4736259182", "tags": "colorado loveland forestfires rockymountainnationalpark wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow rockymountainfiresimages wildfirephotographs coloradowildfirephotography wildfirenaturephotography"}, {"datetaken": "2010-06-25 21:21:54", "license": "3", "title": "Round Mountain Wild Fire, Colorado", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4735621819_16f45d39ae_o.jpg", "secret": "49e29315db", "media": "photo", "latitude": "0", "id": "4735621819", "tags": "colorado forestfires wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow"}, {"datetaken": "2010-06-25 21:21:54", "license": "3", "title": "Round Mountain Wild Fire, Colorado", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4735623801_1df701ea0f_o.jpg", "secret": "56dd99834e", "media": "photo", "latitude": "0", "id": "4735623801", "tags": "colorado forestfires wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow"}, {"datetaken": "2010-06-25 21:32:21", "license": "3", "title": "The Round Mountain Wild Fire - Colorado", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4736259344_18642d3b13_o.jpg", "secret": "91c6a66c22", "media": "photo", "latitude": "0", "id": "4736259344", "tags": "colorado forestfires wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow"}, {"datetaken": "2010-06-25 21:38:19", "license": "3", "title": "Moon Rising in the Rocky Mountain Wild Fire #40", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4735688013_563bfa6ee5_o.jpg", "secret": "1d83c0e475", "media": "photo", "latitude": "0", "id": "4735688013", "tags": "moon colorado loveland forestfires rockymountainnationalpark wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow rockymountainfiresimages wildfirephotographs coloradowildfirephotography wildfirenaturephotography"}, {"datetaken": "2010-06-25 21:38:56", "license": "3", "title": "Moon Rising Round Mountain Wild Fire #41", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4736324468_0288363bcf_o.jpg", "secret": "68c818a60c", "media": "photo", "latitude": "0", "id": "4736324468", "tags": "colorado loveland forestfires rockymountainnationalpark wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow rockymountainfiresimages wildfirephotographs coloradowildfirephotography wildfirenaturephotography"}, {"datetaken": "2010-06-25 21:41:15", "license": "3", "title": "Round Mountain Wild Fire", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4736259512_300941582a_o.jpg", "secret": "b4cd286e1c", "media": "photo", "latitude": "0", "id": "4736259512", "tags": "colorado forestfires wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow"}, {"datetaken": "2010-06-25 21:43:36", "license": "3", "title": "The Round Mountain Wild Fire - Colorado", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4736259662_24ebbbf6c9_o.jpg", "secret": "39fe3db0ee", "media": "photo", "latitude": "0", "id": "4736259662", "tags": "colorado forestfires wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow"}, {"datetaken": "2010-06-25 21:52:14", "license": "3", "title": "Round Mountain Fire", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4735624009_372749a06a_o.jpg", "secret": "32237bd2e6", "media": "photo", "latitude": "0", "id": "4735624009", "tags": "colorado loveland forestfires rockymountainnationalpark wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow rockymountainfiresimages wildfirephotographs coloradowildfirephotography wildfirenaturephotography"}, {"datetaken": "2010-06-25 21:59:37", "license": "3", "title": "The Round Mountain Wild Fire - Big Thompson Canyon - Colorado", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4735623227_76c402b8a2_o.jpg", "secret": "b25a9afe9c", "media": "photo", "latitude": "0", "id": "4735623227", "tags": "colorado loveland forestfires rockymountainnationalpark wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow rockymountainfiresimages wildfirephotographs coloradowildfirephotography wildfirenaturephotography"}, {"datetaken": "2010-06-25 22:06:01", "license": "3", "title": "The Round Mountain Wild Fire - Big Thompson Canyon", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4735622545_7ac31a76bd_o.jpg", "secret": "1861c54614", "media": "photo", "latitude": "0", "id": "4735622545", "tags": "colorado forestfires wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow"}, {"datetaken": "2010-06-25 22:11:40", "license": "3", "title": "The Round Mountain Wild Fire - Big Thompson Canyon - Colorado", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4736260280_e1ceb9854e_o.jpg", "secret": "b2f10926c4", "media": "photo", "latitude": "0", "id": "4736260280", "tags": "colorado loveland forestfires rockymountainnationalpark wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow rockymountainfiresimages wildfirephotographs coloradowildfirephotography wildfirenaturephotography"}, {"datetaken": "2010-06-25 22:15:50", "license": "3", "title": "The Round Mountain Wild Fire - Big Thompson Canyon The Round Mountain Wild Fire - Big Thompson Canyon", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4735622673_7976d7b8ce_o.jpg", "secret": "4456717773", "media": "photo", "latitude": "0", "id": "4735622673", "tags": "colorado loveland forestfires rockymountainnationalpark wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow rockymountainfiresimages wildfirephotographs coloradowildfirephotography wildfirenaturephotography"}, {"datetaken": "2010-06-25 22:17:08", "license": "3", "title": "he Round Mountain Wild Fire IMG_0015-800s", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4736260712_8a7135c7f6_o.jpg", "secret": "e6122b404a", "media": "photo", "latitude": "0", "id": "4736260712", "tags": "colorado loveland forestfires rockymountainnationalpark wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow rockymountainfiresimages wildfirephotographs coloradowildfirephotography wildfirenaturephotography"}, {"datetaken": "2010-06-25 22:23:52", "license": "3", "title": "The Round Mountain Wild Fire - Big Thompson Canyon - Colorado", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4735622833_998af686c9_o.jpg", "secret": "594591a7c5", "media": "photo", "latitude": "0", "id": "4735622833", "tags": "colorado loveland forestfires rockymountainnationalpark wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow rockymountainfiresimages wildfirephotographs coloradowildfirephotography wildfirenaturephotography"}, {"datetaken": "2010-06-25 22:50:00", "license": "3", "title": "The Round Mountain Wild Fire - Big Thompson Canyon - Colorado", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4735622943_23307c82f7_o.jpg", "secret": "7ca3749e69", "media": "photo", "latitude": "0", "id": "4735622943", "tags": "colorado loveland forestfires rockymountainnationalpark wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow rockymountainfiresimages wildfirephotographs coloradowildfirephotography wildfirenaturephotography"}, {"datetaken": "2010-06-25 22:52:48", "license": "3", "title": "HWY 34 Fire Dept", "text": "", "album_id": "72157624237676879", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4735623681_dce4673675_o.jpg", "secret": "340cedd0c9", "media": "photo", "latitude": "0", "id": "4735623681", "tags": "colorado loveland forestfires rockymountainnationalpark wildfire wildfires coloradowildfires roundmountainfire buringtrees wildfireglow rockymountainfiresimages wildfirephotographs coloradowildfirephotography wildfirenaturephotography"}, {"datetaken": "2006-03-28 17:48:45", "license": "3", "title": "DSC_21912006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/119428492_4b9c55a727_o.jpg", "secret": "4b9c55a727", "media": "photo", "latitude": "0", "id": "119428492", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 17:50:15", "license": "3", "title": "DSC_21942006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/119428493_c1e2fae130_o.jpg", "secret": "c1e2fae130", "media": "photo", "latitude": "0", "id": "119428493", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 17:51:02", "license": "3", "title": "DSC_21982006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/119428494_6fc1c24ad1_o.jpg", "secret": "6fc1c24ad1", "media": "photo", "latitude": "0", "id": "119428494", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 17:52:14", "license": "3", "title": "DSC_22032006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/119428495_86f160b35b_o.jpg", "secret": "86f160b35b", "media": "photo", "latitude": "0", "id": "119428495", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 17:52:34", "license": "3", "title": "DSC_22042006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/119428496_dfad684ace_o.jpg", "secret": "dfad684ace", "media": "photo", "latitude": "0", "id": "119428496", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 17:52:37", "license": "3", "title": "DSC_22052006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/119428497_3bc8247ce2_o.jpg", "secret": "3bc8247ce2", "media": "photo", "latitude": "0", "id": "119428497", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 17:55:55", "license": "3", "title": "DSC_22072006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/119431094_c55029af37_o.jpg", "secret": "c55029af37", "media": "photo", "latitude": "0", "id": "119431094", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 17:58:49", "license": "3", "title": "DSC_22112006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/119431097_9a01e3595a_o.jpg", "secret": "9a01e3595a", "media": "photo", "latitude": "0", "id": "119431097", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:06:22", "license": "3", "title": "DSC_22202006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/119431099_a1d77e2e30_o.jpg", "secret": "a1d77e2e30", "media": "photo", "latitude": "0", "id": "119431099", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:11:09", "license": "3", "title": "DSC_22252006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/119431103_fc1bb2571e_o.jpg", "secret": "fc1bb2571e", "media": "photo", "latitude": "0", "id": "119431103", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:12:09", "license": "3", "title": "DSC_22272006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/119431107_79368e2196_o.jpg", "secret": "79368e2196", "media": "photo", "latitude": "0", "id": "119431107", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:16:56", "license": "3", "title": "DSC_22312006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/119431109_2b2c3f6e46_o.jpg", "secret": "2b2c3f6e46", "media": "photo", "latitude": "0", "id": "119431109", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:17:25", "license": "3", "title": "DSC_22322006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "-1.677421", "url_o": "https://farm1.staticflickr.com/45/119432465_d3879a33c2_o.jpg", "secret": "d3879a33c2", "media": "photo", "latitude": "48.110088", "id": "119432465", "tags": "france riots rennes manifestation riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:18:59", "license": "3", "title": "DSC_22372006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/119432466_0fc1cee94d_o.jpg", "secret": "0fc1cee94d", "media": "photo", "latitude": "0", "id": "119432466", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:21:19", "license": "3", "title": "DSC_22392006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/119432468_f9471c21a1_o.jpg", "secret": "f9471c21a1", "media": "photo", "latitude": "0", "id": "119432468", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:23:28", "license": "3", "title": "DSC_22422006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/119432469_7b7fe84ccd_o.jpg", "secret": "7b7fe84ccd", "media": "photo", "latitude": "0", "id": "119432469", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:24:26", "license": "3", "title": "DSC_22452006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/119432470_f991d635f7_o.jpg", "secret": "f991d635f7", "media": "photo", "latitude": "0", "id": "119432470", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:26:51", "license": "3", "title": "DSC_22502006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/119432471_3d5a65ffaa_o.jpg", "secret": "3d5a65ffaa", "media": "photo", "latitude": "0", "id": "119432471", "tags": "france riots rennes manifestation riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:32:53", "license": "3", "title": "DSC_22572006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/119436831_3999040096_o.jpg", "secret": "3999040096", "media": "photo", "latitude": "0", "id": "119436831", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:34:23", "license": "3", "title": "DSC_22582006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/119436832_4d2eaf7537_o.jpg", "secret": "4d2eaf7537", "media": "photo", "latitude": "0", "id": "119436832", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:35:21", "license": "3", "title": "DSC_22592006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/119436833_e6050af49a_o.jpg", "secret": "e6050af49a", "media": "photo", "latitude": "0", "id": "119436833", "tags": "france riots rennes manifestation cpe riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:35:31", "license": "3", "title": "DSC_22612006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "-1.679803", "url_o": "https://farm1.staticflickr.com/44/119436834_96a41b519f_o.jpg", "secret": "96a41b519f", "media": "photo", "latitude": "48.109866", "id": "119436834", "tags": "france riots rennes manifestation riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:37:41", "license": "3", "title": "DSC_22632006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/119436835_2fa6cfc051_o.jpg", "secret": "2fa6cfc051", "media": "photo", "latitude": "0", "id": "119436835", "tags": "france riots rennes manifestation riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:42:20", "license": "3", "title": "DSC_22652006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/119436836_53dfdeb210_o.jpg", "secret": "53dfdeb210", "media": "photo", "latitude": "0", "id": "119436836", "tags": "france riots rennes manifestation riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:44:18", "license": "3", "title": "DSC_22692006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/119450142_bef98f8eb4_o.jpg", "secret": "bef98f8eb4", "media": "photo", "latitude": "0", "id": "119450142", "tags": "france riots rennes manifestation riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:47:19", "license": "3", "title": "DSC_22702006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/119450143_5012e172de_o.jpg", "secret": "5012e172de", "media": "photo", "latitude": "0", "id": "119450143", "tags": "streetart france sticker riots rennes manifestation riotsrennes manifrennes"}, {"datetaken": "2006-03-28 18:52:27", "license": "3", "title": "DSC_22722006-03-28", "text": "", "album_id": "72057594092941459", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/119450144_44ff57bbac_o.jpg", "secret": "44ff57bbac", "media": "photo", "latitude": "0", "id": "119450144", "tags": "france riots rennes manifestation riotsrennes manifrennes"}, {"datetaken": "2006-03-29 21:08:17", "license": "5", "title": "Purty", "text": "", "album_id": "72057594094192882", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/120221339_87484b772b_o.jpg", "secret": "87484b772b", "media": "photo", "latitude": "0", "id": "120221339", "tags": "music concert live drummer theindependent noisepop blacklips noisepop2006"}, {"datetaken": "2006-03-29 21:08:35", "license": "5", "title": "Drummer singing", "text": "", "album_id": "72057594094192882", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/120221446_06c8500632_o.jpg", "secret": "06c8500632", "media": "photo", "latitude": "0", "id": "120221446", "tags": "music concert live drummer theindependent noisepop blacklips noisepop2006"}, {"datetaken": "2006-03-29 21:18:46", "license": "5", "title": "Swaying with The Lamps", "text": "", "album_id": "72057594094192882", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/120221643_cc3896c7b5_o.jpg", "secret": "cc3896c7b5", "media": "photo", "latitude": "0", "id": "120221643", "tags": "music concert live theindependent noisepop thelamps noisepop2006"}, {"datetaken": "2006-03-29 21:18:53", "license": "5", "title": "Coiled cord", "text": "", "album_id": "72057594094192882", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/120221735_e345d8adf0_o.jpg", "secret": "e345d8adf0", "media": "photo", "latitude": "0", "id": "120221735", "tags": "music concert live theindependent noisepop thelamps noisepop2006"}, {"datetaken": "2006-03-29 22:12:43", "license": "5", "title": "Daddy, Daddy, Daddy...", "text": "", "album_id": "72057594094192882", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/120221887_cfec067cd0_o.jpg", "secret": "cfec067cd0", "media": "photo", "latitude": "0", "id": "120221887", "tags": "music concert live singer theindependent noisepop blacklips noisepop2006"}, {"datetaken": "2006-03-29 22:57:39", "license": "5", "title": "Amp + Guitars", "text": "", "album_id": "72057594094192882", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/120222071_54c4dc4618_o.jpg", "secret": "54c4dc4618", "media": "photo", "latitude": "0", "id": "120222071", "tags": "music concert live theindependent noisepop noisepop2006"}, {"datetaken": "2006-03-29 23:06:08", "license": "5", "title": "That's right, two drummers", "text": "", "album_id": "72057594094192882", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/120222259_d0c5ff7910_o.jpg", "secret": "d0c5ff7910", "media": "photo", "latitude": "0", "id": "120222259", "tags": "two music concert live drummers theindependent noisepop thedirtbombs noisepop2006"}, {"datetaken": "2006-03-29 23:13:02", "license": "5", "title": "Mick Collins", "text": "", "album_id": "72057594094192882", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/120222405_bccc4da44e_o.jpg", "secret": "bccc4da44e", "media": "photo", "latitude": "0", "id": "120222405", "tags": "music concert live theindependent noisepop thedirtbombs mickcollins noisepop2006"}, {"datetaken": "2006-03-29 23:18:13", "license": "5", "title": "Onstage chemistry", "text": "", "album_id": "72057594094192882", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/120222522_1dd3fcf2af_o.jpg", "secret": "1dd3fcf2af", "media": "photo", "latitude": "0", "id": "120222522", "tags": "music concert live bassist theindependent noisepop thedirtbombs mickcollins noisepop2006"}, {"datetaken": "2006-03-29 23:20:18", "license": "5", "title": "The other bassist", "text": "", "album_id": "72057594094192882", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/120222608_35f39ee931_o.jpg", "secret": "35f39ee931", "media": "photo", "latitude": "0", "id": "120222608", "tags": "music concert live theindependent noisepop thedirtbombs noisepop2006"}, {"datetaken": "2006-03-30 00:13:59", "license": "5", "title": "The finale", "text": "", "album_id": "72057594094192882", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/120638873_a33bed5d68_o.jpg", "secret": "a33bed5d68", "media": "photo", "latitude": "0", "id": "120638873", "tags": "two music concert live drummers theindependent noisepop thedirtbombs noisepop2006"}, {"datetaken": "2006-03-30 00:17:46", "license": "5", "title": "This is how it ended", "text": "", "album_id": "72057594094192882", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/120639100_763a36fbc6_o.jpg", "secret": "763a36fbc6", "media": "photo", "latitude": "0", "id": "120639100", "tags": "music broken concert live drummer screaming spasm theindependent clutching noisepop thedirtbombs noisepop2006"}, {"datetaken": "2005-08-19 13:15:01", "license": "2", "title": "Rodriguez", "text": "", "album_id": "785756", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/35513299_ee7428d0a5_o.jpg", "secret": "ee7428d0a5", "media": "photo", "latitude": "0", "id": "35513299", "tags": "dubs sydney watertaxi rod"}, {"datetaken": "2005-08-19 13:15:37", "license": "2", "title": "Ricky Ricardo is Ready to go", "text": "", "album_id": "785756", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/35513362_809d3fb816_o.jpg", "secret": "809d3fb816", "media": "photo", "latitude": "0", "id": "35513362", "tags": "dubs watertaxi sydney carl richard"}, {"datetaken": "2005-08-19 13:17:51", "license": "2", "title": "Dean Profile", "text": "", "album_id": "785756", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/35513420_94e312b668_o.jpg", "secret": "94e312b668", "media": "photo", "latitude": "0", "id": "35513420", "tags": "dubs watertaxisydney dean"}, {"datetaken": "2005-08-19 13:34:23", "license": "2", "title": "An English Bear in Sydney", "text": "", "album_id": "785756", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/35513263_17e7cba839_o.jpg", "secret": "17e7cba839", "media": "photo", "latitude": "0", "id": "35513263", "tags": "dubs watertaxi sydney carl tricky bear sydneyharbourbridge"}, {"datetaken": "2005-08-19 13:40:02", "license": "2", "title": "Yellow on Yellow", "text": "", "album_id": "785756", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/35513241_42f5c4d46c_o.jpg", "secret": "42f5c4d46c", "media": "photo", "latitude": "0", "id": "35513241", "tags": "me dean sydney watertaxi dubs boothy"}, {"datetaken": "2005-08-19 13:41:39", "license": "2", "title": "Sydney", "text": "", "album_id": "785756", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/35513209_c1aae95138_o.jpg", "secret": "c1aae95138", "media": "photo", "latitude": "0", "id": "35513209", "tags": "dubs sydney"}, {"datetaken": "2005-08-19 14:00:42", "license": "2", "title": "Gazebo", "text": "", "album_id": "785756", "longitude": "151.257652", "url_o": "https://farm1.staticflickr.com/23/35513169_306db13f09_o.jpg", "secret": "306db13f09", "media": "photo", "latitude": "-33.858335", "id": "35513169", "tags": "dubs sharkisland sydney picnic gazebo"}, {"datetaken": "2005-08-19 14:01:11", "license": "2", "title": "Shark Island", "text": "", "album_id": "785756", "longitude": "151.257652", "url_o": "https://farm1.staticflickr.com/22/35513131_c1d1250760_o.jpg", "secret": "c1d1250760", "media": "photo", "latitude": "-33.858335", "id": "35513131", "tags": "dubs sharkisland sydney picnic beach"}, {"datetaken": "2005-08-19 14:01:58", "license": "2", "title": "Shelled Window", "text": "", "album_id": "785756", "longitude": "151.257652", "url_o": "https://farm1.staticflickr.com/29/35513098_a973199023_o.jpg", "secret": "a973199023", "media": "photo", "latitude": "-33.858335", "id": "35513098", "tags": "dubs sharkisland sydney picnic window"}, {"datetaken": "2005-08-19 14:02:33", "license": "2", "title": "View of Sydney from the old Toilet block", "text": "", "album_id": "785756", "longitude": "151.257652", "url_o": "https://farm1.staticflickr.com/30/35513059_173427dae8_o.jpg", "secret": "173427dae8", "media": "photo", "latitude": "-33.858335", "id": "35513059", "tags": "dubs sharkisland sydney picnic"}, {"datetaken": "2005-08-19 14:15:51", "license": "2", "title": "The Spread", "text": "", "album_id": "785756", "longitude": "151.257652", "url_o": "https://farm1.staticflickr.com/29/35513028_bc775dcb2f_o.jpg", "secret": "bc775dcb2f", "media": "photo", "latitude": "-33.858335", "id": "35513028", "tags": "dubs sharkisland sydney picnic food spread chicken"}, {"datetaken": "2005-08-19 14:16:12", "license": "2", "title": "Roll Macro", "text": "", "album_id": "785756", "longitude": "151.257652", "url_o": "https://farm1.staticflickr.com/28/35512969_71b06c05d0_o.jpg", "secret": "71b06c05d0", "media": "photo", "latitude": "-33.858335", "id": "35512969", "tags": "dubs sharkisland sydney picnic food rolls"}, {"datetaken": "2005-08-19 14:17:50", "license": "2", "title": "Prawn Macro", "text": "", "album_id": "785756", "longitude": "151.257652", "url_o": "https://farm1.staticflickr.com/26/35513919_4d8f8c17fc_o.jpg", "secret": "4d8f8c17fc", "media": "photo", "latitude": "-33.858335", "id": "35513919", "tags": "dubs sharkisland sydney picnic prawns shrimp lemon"}, {"datetaken": "2005-08-19 14:18:16", "license": "2", "title": "Em, Carl Hungus, Tricky and Mel", "text": "", "album_id": "785756", "longitude": "151.257652", "url_o": "https://farm1.staticflickr.com/30/35513890_0fdca1a791_o.jpg", "secret": "0fdca1a791", "media": "photo", "latitude": "-33.858335", "id": "35513890", "tags": "dubs sharkisland sydney picnic birch carl tricky mel"}, {"datetaken": "2005-08-19 14:18:38", "license": "2", "title": "Developer Discussion", "text": "", "album_id": "785756", "longitude": "151.257652", "url_o": "https://farm1.staticflickr.com/30/35513816_107ff5291d_o.jpg", "secret": "107ff5291d", "media": "photo", "latitude": "-33.858335", "id": "35513816", "tags": "dubs sharkisland sydney picnic rod simon"}, {"datetaken": "2005-08-19 14:18:46", "license": "2", "title": "View to a Dean", "text": "", "album_id": "785756", "longitude": "151.257652", "url_o": "https://farm1.staticflickr.com/31/35513747_f0c14e560b_o.jpg", "secret": "f0c14e560b", "media": "photo", "latitude": "-33.858335", "id": "35513747", "tags": "dubs sharkisland sydney picnic dean"}, {"datetaken": "2005-08-19 15:03:05", "license": "2", "title": "Bowled!", "text": "", "album_id": "785756", "longitude": "151.257652", "url_o": "https://farm1.staticflickr.com/26/35513695_ea4acb0494_o.jpg", "secret": "ea4acb0494", "media": "photo", "latitude": "-33.858335", "id": "35513695", "tags": "dubs sharkisland sydney picnic cricket simon"}, {"datetaken": "2005-08-19 15:03:25", "license": "2", "title": "Eye on the ball", "text": "", "album_id": "785756", "longitude": "151.257652", "url_o": "https://farm1.staticflickr.com/29/35513672_89a06f9c54_o.jpg", "secret": "89a06f9c54", "media": "photo", "latitude": "-33.858335", "id": "35513672", "tags": "dubs sharkisland sydney picnic cricket simon"}, {"datetaken": "2005-08-19 15:06:56", "license": "2", "title": "He was probably aiming for me", "text": "", "album_id": "785756", "longitude": "151.257652", "url_o": "https://farm1.staticflickr.com/33/35513635_8021a8588d_o.jpg", "secret": "8021a8588d", "media": "photo", "latitude": "-33.858335", "id": "35513635", "tags": "dubs sharkisland sydney picnic cricket richard tricky dean"}, {"datetaken": "2005-08-19 15:07:48", "license": "2", "title": "Tricky", "text": "", "album_id": "785756", "longitude": "151.257652", "url_o": "https://farm1.staticflickr.com/33/35513587_d71e7fe237_o.jpg", "secret": "d71e7fe237", "media": "photo", "latitude": "-33.858335", "id": "35513587", "tags": "dubs sharkisland sydney picnic tricky"}, {"datetaken": "2005-08-19 15:08:01", "license": "2", "title": "Dean being Surly for a change", "text": "", "album_id": "785756", "longitude": "151.257652", "url_o": "https://farm1.staticflickr.com/28/35514040_74d7c954a2_o.jpg", "secret": "74d7c954a2", "media": "photo", "latitude": "-33.858335", "id": "35514040", "tags": "dubs sharkisland sydney picnic dean"}, {"datetaken": "2005-08-19 15:12:24", "license": "2", "title": "Geoff with a G", "text": "", "album_id": "785756", "longitude": "151.257652", "url_o": "https://farm1.staticflickr.com/21/35513999_50e1ca99ef_o.jpg", "secret": "50e1ca99ef", "media": "photo", "latitude": "-33.858335", "id": "35513999", "tags": "dubs sharkisland sydney picnic geoff"}, {"datetaken": "2005-08-19 15:27:28", "license": "2", "title": "Tricky sucks", "text": "", "album_id": "785756", "longitude": "151.257652", "url_o": "https://farm1.staticflickr.com/32/35513969_ef8e1ff0f6_o.jpg", "secret": "ef8e1ff0f6", "media": "photo", "latitude": "-33.858335", "id": "35513969", "tags": "dubs sharkisland sydney picnic tricky cricket"}, {"datetaken": "2005-12-11 06:06:01", "license": "1", "title": "DSCN9458", "text": "", "album_id": "1556396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/72418121_88ca469233_o.jpg", "secret": "88ca469233", "media": "photo", "latitude": "0", "id": "72418121", "tags": "buncefield explosion oil uk breaking depot hemel hempstead hertfordshire witness eyewitness burner"}, {"datetaken": "2005-12-11 06:10:31", "license": "1", "title": "DSCN9461", "text": "", "album_id": "1556396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/73582239_4942c434bc_o.jpg", "secret": "4942c434bc", "media": "photo", "latitude": "0", "id": "73582239", "tags": "buncefield disaster pyrotechnic hemel explosion fire"}, {"datetaken": "2005-12-11 06:49:42", "license": "1", "title": "DSCN9465", "text": "", "album_id": "1556396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/73582240_46a0ba5658_o.jpg", "secret": "46a0ba5658", "media": "photo", "latitude": "0", "id": "73582240", "tags": "buncefield disaster pyrotechnic hemel explosion fire"}, {"datetaken": "2005-12-11 07:06:15", "license": "1", "title": "DSCN9468", "text": "", "album_id": "1556396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/73582241_afa334aba3_o.jpg", "secret": "afa334aba3", "media": "photo", "latitude": "0", "id": "73582241", "tags": "buncefield disaster pyrotechnic hemel explosion fire"}, {"datetaken": "2005-12-11 07:06:43", "license": "1", "title": "DSCN9469", "text": "", "album_id": "1556396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/72418122_30e50b3791_o.jpg", "secret": "30e50b3791", "media": "photo", "latitude": "0", "id": "72418122", "tags": "buncefield explosion oil uk breaking depot hemel hempstead hertfordshire witness eyewitness burner"}, {"datetaken": "2005-12-11 07:58:54", "license": "1", "title": "DSCN9481", "text": "", "album_id": "1556396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/72418124_4a6c915d48_o.jpg", "secret": "4a6c915d48", "media": "photo", "latitude": "0", "id": "72418124", "tags": "buncefield explosion oil uk breaking depot hemel hempstead hertfordshire witness eyewitness burner"}, {"datetaken": "2005-12-11 08:10:34", "license": "1", "title": "DSCN9484", "text": "", "album_id": "1556396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/72418123_fb34b7311e_o.jpg", "secret": "fb34b7311e", "media": "photo", "latitude": "0", "id": "72418123", "tags": "buncefield explosion oil uk breaking depot hemel hempstead hertfordshire witness eyewitness burner"}, {"datetaken": "2005-12-11 08:10:51", "license": "1", "title": "DSCN9485", "text": "", "album_id": "1556396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/73582242_e38b255be5_o.jpg", "secret": "e38b255be5", "media": "photo", "latitude": "0", "id": "73582242", "tags": "buncefield disaster pyrotechnic hemel explosion fire"}, {"datetaken": "2005-12-11 08:36:13", "license": "1", "title": "Reality", "text": "", "album_id": "1556396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/72418126_0104fd0f8e_o.jpg", "secret": "0104fd0f8e", "media": "photo", "latitude": "0", "id": "72418126", "tags": "buncefield explosion oil uk breaking depot hemel hempstead hertfordshire witness eyewitness burner trick"}, {"datetaken": "2005-12-11 09:04:50", "license": "1", "title": "DSCN9488", "text": "", "album_id": "1556396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/73582243_31e8ea4847_o.jpg", "secret": "31e8ea4847", "media": "photo", "latitude": "0", "id": "73582243", "tags": "buncefield disaster pyrotechnic hemel explosion fire"}, {"datetaken": "2005-12-11 15:44:42", "license": "1", "title": "DSCN9494", "text": "", "album_id": "1556396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/72418125_3ec9296461_o.jpg", "secret": "3ec9296461", "media": "photo", "latitude": "0", "id": "72418125", "tags": "buncefield explosion oil uk breaking depot hemel hempstead hertfordshire witness eyewitness burner"}, {"datetaken": "2005-12-11 22:57:27", "license": "1", "title": "DSCN9507", "text": "", "album_id": "1556396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/72824291_17a216d1e4_o.jpg", "secret": "17a216d1e4", "media": "photo", "latitude": "0", "id": "72824291", "tags": "buncefield oil depot fire hemel hempstead explosion"}, {"datetaken": "2005-12-12 14:55:47", "license": "1", "title": "DSCN9520", "text": "", "album_id": "1556396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/72824293_ddf466277d_o.jpg", "secret": "ddf466277d", "media": "photo", "latitude": "0", "id": "72824293", "tags": "buncefield oil depot fire hemel hempstead explosion"}, {"datetaken": "2005-12-12 14:58:50", "license": "1", "title": "DSCN9524", "text": "", "album_id": "1556396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/72824292_b6abc768ce_o.jpg", "secret": "b6abc768ce", "media": "photo", "latitude": "0", "id": "72824292", "tags": "buncefield oil depot fire hemel hempstead explosion"}, {"datetaken": "2005-12-10 21:47:10", "license": "1", "title": "Calexico", "text": "", "album_id": "1567926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/73003488_2d78379eae_o.jpg", "secret": "2d78379eae", "media": "photo", "latitude": "0", "id": "73003488", "tags": "roadtrip ironwine casey detroit 2005 calexico majestic"}, {"datetaken": "2005-12-10 22:01:24", "license": "1", "title": "Majestic Bar", "text": "", "album_id": "1567926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/73003521_1d34149cb7_o.jpg", "secret": "1d34149cb7", "media": "photo", "latitude": "0", "id": "73003521", "tags": "roadtrip ironwine casey detroit 2005 calexico majestic"}, {"datetaken": "2005-12-10 22:48:52", "license": "1", "title": "Iron & Wine", "text": "", "album_id": "1567926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/73003534_171b145645_o.jpg", "secret": "171b145645", "media": "photo", "latitude": "0", "id": "73003534", "tags": "roadtrip ironwine casey detroit 2005 calexico majestic"}, {"datetaken": "2005-12-10 23:05:26", "license": "1", "title": "Iron & Wine", "text": "", "album_id": "1567926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/73003556_6748748f1d_o.jpg", "secret": "6748748f1d", "media": "photo", "latitude": "0", "id": "73003556", "tags": "roadtrip ironwine casey detroit 2005 calexico majestic"}, {"datetaken": "2005-12-10 23:20:35", "license": "1", "title": "Iron & Wine", "text": "", "album_id": "1567926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/73003572_2f6adba3c9_o.jpg", "secret": "2f6adba3c9", "media": "photo", "latitude": "0", "id": "73003572", "tags": "roadtrip ironwine casey detroit 2005 calexico majestic"}, {"datetaken": "2005-12-10 23:28:21", "license": "1", "title": "Iron & Wine", "text": "", "album_id": "1567926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/73003598_e3f7795d95_o.jpg", "secret": "e3f7795d95", "media": "photo", "latitude": "0", "id": "73003598", "tags": "roadtrip ironwine casey detroit 2005 calexico majestic"}, {"datetaken": "2005-12-10 23:35:22", "license": "1", "title": "Iron & Wine", "text": "", "album_id": "1567926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/73003628_707e1f8524_o.jpg", "secret": "707e1f8524", "media": "photo", "latitude": "0", "id": "73003628", "tags": "roadtrip ironwine casey detroit 2005 calexico majestic"}, {"datetaken": "2005-12-10 23:36:23", "license": "1", "title": "Iron & Wine", "text": "", "album_id": "1567926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/73003665_58ff118a51_o.jpg", "secret": "58ff118a51", "media": "photo", "latitude": "0", "id": "73003665", "tags": "roadtrip ironwine casey detroit 2005 calexico majestic"}, {"datetaken": "2005-12-10 23:53:00", "license": "1", "title": "Iron & Wine", "text": "", "album_id": "1567926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/73003686_c22d649b71_o.jpg", "secret": "c22d649b71", "media": "photo", "latitude": "0", "id": "73003686", "tags": "roadtrip ironwine casey detroit 2005 calexico majestic"}, {"datetaken": "2005-12-11 00:11:11", "license": "1", "title": "Iron & Wine", "text": "", "album_id": "1567926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/73003713_7520d28592_o.jpg", "secret": "7520d28592", "media": "photo", "latitude": "0", "id": "73003713", "tags": "roadtrip ironwine casey detroit 2005 calexico majestic"}, {"datetaken": "2005-12-11 00:13:57", "license": "1", "title": "Casey Rocks Iron & Wine", "text": "", "album_id": "1567926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/73003755_07b30a6292_o.jpg", "secret": "07b30a6292", "media": "photo", "latitude": "0", "id": "73003755", "tags": "roadtrip ironwine casey detroit 2005 calexico majestic"}, {"datetaken": "2005-12-11 00:14:59", "license": "1", "title": "I Totally Rock Iron & Wine", "text": "", "album_id": "1567926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/73003783_41db02c2d0_o.jpg", "secret": "41db02c2d0", "media": "photo", "latitude": "0", "id": "73003783", "tags": "roadtrip ironwine casey detroit 2005 calexico majestic"}, {"datetaken": "2005-12-11 00:16:01", "license": "1", "title": "Iron & Wine/Calexico", "text": "", "album_id": "1567926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/73003802_ef4fc2a0d7_o.jpg", "secret": "ef4fc2a0d7", "media": "photo", "latitude": "0", "id": "73003802", "tags": "roadtrip ironwine casey detroit 2005 calexico majestic"}, {"datetaken": "2005-12-11 00:18:13", "license": "1", "title": "Iron & Wine / Calexico", "text": "", "album_id": "1567926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/73003832_bae2fbfb45_o.jpg", "secret": "bae2fbfb45", "media": "photo", "latitude": "0", "id": "73003832", "tags": "roadtrip ironwine casey detroit 2005 calexico majestic"}, {"datetaken": "2005-12-11 00:27:07", "license": "1", "title": "Clean Up", "text": "", "album_id": "1567926", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/73003867_c2c9816e41_o.jpg", "secret": "c2c9816e41", "media": "photo", "latitude": "0", "id": "73003867", "tags": "roadtrip ironwine casey detroit 2005 calexico majestic"}, {"datetaken": "2005-12-16 10:37:57", "license": "2", "title": "My-Ingrid-and-Me", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/74131409_44c8c2a927_o.jpg", "secret": "44c8c2a927", "media": "photo", "latitude": "0", "id": "74131409", "tags": "ingrid evill1 flickrnyc2005party nycsocialparty2005 nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 10:46:57", "license": "2", "title": "takes-a-lickin", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/74133872_cb51b65bd7_o.jpg", "secret": "cb51b65bd7", "media": "photo", "latitude": "0", "id": "74133872", "tags": "flickrnyc2005party nycsocialparty2005 nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 10:54:11", "license": "2", "title": "Eyes-I-Could-Skinny-Dip-In", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/74135973_bba860ce25_o.jpg", "secret": "bba860ce25", "media": "photo", "latitude": "0", "id": "74135973", "tags": "smacknally flickrnyc2005party nycsocialparty2005 nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 11:18:23", "license": "2", "title": "presents-for-me", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/74142787_0c1bd81df8_o.jpg", "secret": "0c1bd81df8", "media": "photo", "latitude": "0", "id": "74142787", "tags": "nyc2005party nycsocialparty2005 nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 11:22:25", "license": "2", "title": "Lamb-Lube", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/74143895_4c9e1b681b_o.jpg", "secret": "4c9e1b681b", "media": "photo", "latitude": "0", "id": "74143895", "tags": "nyc2005party welshmanspleasure nycsocialparty2005 nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 12:11:14", "license": "2", "title": "you-can-dress-him-up", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/74157616_52aa910e29_o.jpg", "secret": "52aa910e29", "media": "photo", "latitude": "0", "id": "74157616", "tags": "nycsocialparty2005 nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 12:31:13", "license": "2", "title": "silence-of-the-lamb", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/74162919_69978c04bd_o.jpg", "secret": "69978c04bd", "media": "photo", "latitude": "0", "id": "74162919", "tags": "nycsocialparty2005 nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 12:39:36", "license": "2", "title": "Better than Prom Night", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/74164868_efdd82ba3f_o.jpg", "secret": "efdd82ba3f", "media": "photo", "latitude": "0", "id": "74164868", "tags": "meetup flickrfolk amsterdamcafe nycsocial carpeicthus 121505 nycsocialparty2005 flickr:user=carpeicthus"}, {"datetaken": "2005-12-16 12:43:51", "license": "2", "title": "Flickrers-In-the-Rest-Room", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/74166008_a7b64f8f75_o.jpg", "secret": "a7b64f8f75", "media": "photo", "latitude": "0", "id": "74166008", "tags": "nycsocialparty2005 nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 12:53:03", "license": "2", "title": "Joe-In-Queens,-Me-and-Peek", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/74168599_1ff6bfa1ed_o.jpg", "secret": "1ff6bfa1ed", "media": "photo", "latitude": "0", "id": "74168599", "tags": "nycsocialparty2005 nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 13:00:19", "license": "2", "title": "our new band - Buns and Hoses", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/74170345_bd1db7fd33_o.jpg", "secret": "bd1db7fd33", "media": "photo", "latitude": "0", "id": "74170345", "tags": "nycsocialparty2005 nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 13:06:46", "license": "2", "title": "pose", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/74171858_8e1c7b5489_o.jpg", "secret": "8e1c7b5489", "media": "photo", "latitude": "0", "id": "74171858", "tags": "nycsocialparty2005 nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 13:19:04", "license": "2", "title": "Rachael-aka-Shortcake26", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/74174521_0d4a1a4889_o.jpg", "secret": "0d4a1a4889", "media": "photo", "latitude": "0", "id": "74174521", "tags": "nycsocialparty2005 nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 13:24:51", "license": "2", "title": "reserved", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/74176153_494a4f2bf3_o.jpg", "secret": "494a4f2bf3", "media": "photo", "latitude": "0", "id": "74176153", "tags": "nycsocialparty2005 nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 13:43:16", "license": "2", "title": "the-dj", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/74180958_161d53798a_o.jpg", "secret": "161d53798a", "media": "photo", "latitude": "0", "id": "74180958", "tags": "nycsocialparty2005 nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 13:52:21", "license": "2", "title": "Reserved-2", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/74183457_7e9d280c41_o.jpg", "secret": "7e9d280c41", "media": "photo", "latitude": "0", "id": "74183457", "tags": "nycsocialparty2005 nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 13:55:42", "license": "2", "title": "A-boy-and-his-lamb", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/74184394_2f4c21c45f_o.jpg", "secret": "2f4c21c45f", "media": "photo", "latitude": "0", "id": "74184394", "tags": "nycsocialparty2005 nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 14:04:35", "license": "2", "title": "Lamb-Lube-it's-not-for-everyone", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/74186793_770a82c540_o.jpg", "secret": "770a82c540", "media": "photo", "latitude": "0", "id": "74186793", "tags": "nycsocialparty2005 nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 15:07:57", "license": "2", "title": "Bow-Tox", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/74203359_2cf03c99cf_o.jpg", "secret": "2cf03c99cf", "media": "photo", "latitude": "0", "id": "74203359", "tags": "nycsocialparty2005 illgemini jase verybadpun nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 16:22:16", "license": "2", "title": "SmackNally-and-Me", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/74220881_894040b53b_o.jpg", "secret": "894040b53b", "media": "photo", "latitude": "0", "id": "74220881", "tags": "nycsocial flickrfolk amsterdamcafe 121505 meetup"}, {"datetaken": "2005-12-16 16:58:51", "license": "2", "title": "secret-santa", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/74230862_5aef0f88f8_o.jpg", "secret": "5aef0f88f8", "media": "photo", "latitude": "0", "id": "74230862", "tags": "nycsocial amsterdamcafe nyc2005party"}, {"datetaken": "2005-12-16 17:34:07", "license": "2", "title": "Baby Dove, Cyshas and Jerry56", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/74239265_16a4ff6ff7_o.jpg", "secret": "16a4ff6ff7", "media": "photo", "latitude": "0", "id": "74239265", "tags": ""}, {"datetaken": "2005-12-16 18:53:34", "license": "2", "title": "Semyon", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/74257628_9a136a676f_o.jpg", "secret": "9a136a676f", "media": "photo", "latitude": "0", "id": "74257628", "tags": ""}, {"datetaken": "2005-12-16 19:03:46", "license": "2", "title": "the-hostess-n-scary-santa", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/74259842_3668239217_o.jpg", "secret": "3668239217", "media": "photo", "latitude": "0", "id": "74259842", "tags": ""}, {"datetaken": "2005-12-16 19:14:16", "license": "2", "title": "My-moufleloofa-and-me", "text": "", "album_id": "1592772", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/74262156_67722c1fa7_o.jpg", "secret": "67722c1fa7", "media": "photo", "latitude": "0", "id": "74262156", "tags": ""}, {"datetaken": "2006-01-10 13:01:58", "license": "3", "title": "Aren't You Cold?", "text": "", "album_id": "72057594047318559", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/86141569_7c7ff9ba44_o.jpg", "secret": "7c7ff9ba44", "media": "photo", "latitude": "0", "id": "86141569", "tags": "boy mist beach water kid grandkids"}, {"datetaken": "2006-01-10 13:04:58", "license": "3", "title": "Misty Day", "text": "", "album_id": "72057594047318559", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/86141960_7dac90821c_o.jpg", "secret": "7dac90821c", "media": "photo", "latitude": "0", "id": "86141960", "tags": "boy mist beach water kid grandkids"}, {"datetaken": "2006-01-10 13:05:15", "license": "3", "title": "Dark Clouds closing in", "text": "", "album_id": "72057594047318559", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/86141876_955e6a7d89_o.jpg", "secret": "955e6a7d89", "media": "photo", "latitude": "0", "id": "86141876", "tags": "boy mist beach water kid grandkids"}, {"datetaken": "2006-01-10 13:05:44", "license": "3", "title": "Do we have to Leave?", "text": "", "album_id": "72057594047318559", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/86141812_3eed6a9c98_o.jpg", "secret": "3eed6a9c98", "media": "photo", "latitude": "0", "id": "86141812", "tags": "boy mist beach water kid grandkids"}, {"datetaken": "2006-01-10 13:05:53", "license": "3", "title": "Watching Distant Birds", "text": "", "album_id": "72057594047318559", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/86141359_a6a9bb6364_o.jpg", "secret": "a6a9bb6364", "media": "photo", "latitude": "0", "id": "86141359", "tags": "boy mist beach water kid grandkids"}, {"datetaken": "2006-01-10 13:16:40", "license": "3", "title": "Relaxing & Water Gazing", "text": "", "album_id": "72057594047318559", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/86141289_a8379f4ee8_o.jpg", "secret": "a8379f4ee8", "media": "photo", "latitude": "0", "id": "86141289", "tags": "boy mist beach water kid grandkids"}, {"datetaken": "2006-01-10 13:23:37", "license": "3", "title": "So Much to See...", "text": "", "album_id": "72057594047318559", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/86141526_ed63778cd8_o.jpg", "secret": "ed63778cd8", "media": "photo", "latitude": "0", "id": "86141526", "tags": "beach boy mist water kid grandkids"}, {"datetaken": "2006-01-10 13:23:52", "license": "3", "title": "The Sun Comes Out & the Tide's Coming In", "text": "", "album_id": "72057594047318559", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/86141722_a87bca6bc7_o.jpg", "secret": "a87bca6bc7", "media": "photo", "latitude": "0", "id": "86141722", "tags": "boy mist beach water kid grandkids"}, {"datetaken": "2006-01-10 13:24:07", "license": "3", "title": "Finding the Mouseketeers...", "text": "", "album_id": "72057594047318559", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/86141450_0f023bf7fd_o.jpg", "secret": "0f023bf7fd", "media": "photo", "latitude": "0", "id": "86141450", "tags": "boy mist beach water kid grandkids"}, {"datetaken": "2006-01-10 13:24:21", "license": "3", "title": "Boy Playing", "text": "", "album_id": "72057594047318559", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/86141637_562f2c8d8a_o.jpg", "secret": "562f2c8d8a", "media": "photo", "latitude": "0", "id": "86141637", "tags": "boy mist beach water kid grandkids"}, {"datetaken": "2004-08-04 10:30:15", "license": "5", "title": "St. Stephens Episcopal Church, Schuylerville, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.583625", "url_o": "https://farm1.staticflickr.com/12/68832413_753b9adba3_o.jpg", "secret": "753b9adba3", "media": "photo", "latitude": "43.096881", "id": "68832413", "tags": "newyork saratoga revolutionarywar america unitedstates"}, {"datetaken": "2004-08-04 10:35:20", "license": "5", "title": "Saratoga Victory Monument, Schuylerville, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.593260", "url_o": "https://farm1.staticflickr.com/29/66932410_5ccd766623_o.jpg", "secret": "5ccd766623", "media": "photo", "latitude": "43.098562", "id": "66932410", "tags": "america unitedstates revolutionarywar americanrevolution saratoga saratogabattlefield newyork"}, {"datetaken": "2004-08-04 10:38:41", "license": "5", "title": "Alicia, Saratoga Victory Monument, Schuylerville, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.593260", "url_o": "https://farm1.staticflickr.com/6/68832066_5971ee7966_o.jpg", "secret": "5971ee7966", "media": "photo", "latitude": "43.098562", "id": "68832066", "tags": "newyork saratoga revolutionarywar america unitedstates"}, {"datetaken": "2004-08-04 10:38:50", "license": "5", "title": "Alicia, Saratoga Victory Monument, Schuylerville, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.593260", "url_o": "https://farm1.staticflickr.com/35/68832133_910b21f979_o.jpg", "secret": "910b21f979", "media": "photo", "latitude": "43.098562", "id": "68832133", "tags": "newyork saratoga revolutionarywar america unitedstates"}, {"datetaken": "2004-08-04 10:47:51", "license": "5", "title": "Saratoga Victory Monument, Schuylerville, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.593260", "url_o": "https://farm1.staticflickr.com/15/68832364_29b2a9851e_o.jpg", "secret": "29b2a9851e", "media": "photo", "latitude": "43.098562", "id": "68832364", "tags": "newyork saratoga revolutionarywar america unitedstates"}, {"datetaken": "2004-08-04 10:53:35", "license": "5", "title": "General Schuyler House, Saratoga National Historical Park, Schuylerville, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.581962", "url_o": "https://farm1.staticflickr.com/20/68832504_f0828af26b_o.jpg", "secret": "f0828af26b", "media": "photo", "latitude": "43.095828", "id": "68832504", "tags": "newyork saratoga revolutionarywar america unitedstates"}, {"datetaken": "2004-08-04 11:07:59", "license": "5", "title": "Alicia, Saratoga National Historical Park, Stillwater, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.648803", "url_o": "https://farm1.staticflickr.com/20/68831640_f02dc9a87c_o.jpg", "secret": "f02dc9a87c", "media": "photo", "latitude": "43.012147", "id": "68831640", "tags": "newyork saratoga revolutionarywar america unitedstates"}, {"datetaken": "2004-08-04 11:08:12", "license": "5", "title": "Saratoga National Historical Park, Stillwater, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.648803", "url_o": "https://farm1.staticflickr.com/34/68831388_1967ec8a93_o.jpg", "secret": "1967ec8a93", "media": "photo", "latitude": "43.012147", "id": "68831388", "tags": "newyork saratoga revolutionarywar america unitedstates"}, {"datetaken": "2004-08-04 11:17:14", "license": "5", "title": "Saratoga Battlefield, Saratoga National Historical Park, Stillwater, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.648803", "url_o": "https://farm1.staticflickr.com/35/68831442_0d8a829a06_o.jpg", "secret": "0d8a829a06", "media": "photo", "latitude": "43.012147", "id": "68831442", "tags": "newyork saratoga revolutionarywar america unitedstates"}, {"datetaken": "2004-08-04 11:17:22", "license": "5", "title": "Saratoga Battlefield, Saratoga National Historical Park, Stillwater, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.648803", "url_o": "https://farm1.staticflickr.com/34/68831509_f097de112a_o.jpg", "secret": "f097de112a", "media": "photo", "latitude": "43.012147", "id": "68831509", "tags": "newyork saratoga revolutionarywar america unitedstates"}, {"datetaken": "2004-08-04 11:17:55", "license": "5", "title": "Ken, Saratoga Battlefield, Saratoga National Historical Park, Stillwater, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.648803", "url_o": "https://farm1.staticflickr.com/12/68831568_490a29175e_o.jpg", "secret": "490a29175e", "media": "photo", "latitude": "43.012147", "id": "68831568", "tags": "newyork saratoga revolutionarywar america unitedstates"}, {"datetaken": "2004-08-04 11:18:15", "license": "5", "title": "Ken, Saratoga Battlefield, Saratoga National Historical Park, Stillwater, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.648803", "url_o": "https://farm1.staticflickr.com/20/68831699_c1826d8118_o.jpg", "secret": "c1826d8118", "media": "photo", "latitude": "43.012147", "id": "68831699", "tags": "newyork saratoga revolutionarywar america unitedstates"}, {"datetaken": "2004-08-04 11:26:55", "license": "5", "title": "Freeman Farm Overlook, Saratoga Battlefield, Saratoga National Historical Park, Stillwater, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.646914", "url_o": "https://farm1.staticflickr.com/35/68831882_1d04c35320_o.jpg", "secret": "1d04c35320", "media": "photo", "latitude": "43.006192", "id": "68831882", "tags": "newyork saratoga revolutionarywar america unitedstates"}, {"datetaken": "2004-08-04 11:29:09", "license": "5", "title": "Freeman Farm Overlook, Saratoga Battlefield, Saratoga National Historical Park, Stillwater, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.647751", "url_o": "https://farm1.staticflickr.com/34/68831933_c98107a211_o.jpg", "secret": "c98107a211", "media": "photo", "latitude": "43.006326", "id": "68831933", "tags": "newyork saratoga revolutionarywar america unitedstates"}, {"datetaken": "2004-08-04 11:29:20", "license": "5", "title": "Freeman Farm Overlook, Saratoga Battlefield, Saratoga National Historical Park, Stillwater, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.647751", "url_o": "https://farm1.staticflickr.com/15/68832007_579616aee9_o.jpg", "secret": "579616aee9", "media": "photo", "latitude": "43.006326", "id": "68832007", "tags": "newyork saratoga revolutionarywar america unitedstates"}, {"datetaken": "2004-08-04 11:41:08", "license": "5", "title": "Barber Wheatfield, Saratoga Battlefield, Saratoga National Historical Park, Stillwater, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.646378", "url_o": "https://farm1.staticflickr.com/15/68831322_aa7819d659_o.jpg", "secret": "aa7819d659", "media": "photo", "latitude": "43.000794", "id": "68831322", "tags": "newyork saratoga revolutionarywar america unitedstates"}, {"datetaken": "2004-08-04 11:51:37", "license": "5", "title": "View of Hudson River from The Great Redoubt, Saratoga Battlefield, Saratoga National Historical Park, Stillwater, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.610544", "url_o": "https://farm1.staticflickr.com/30/66932414_8770b07b76_o.jpg", "secret": "8770b07b76", "media": "photo", "latitude": "43.002356", "id": "66932414", "tags": "america unitedstates revolutionarywar americanrevolution saratoga saratogabattlefield newyork"}, {"datetaken": "2004-08-04 11:52:00", "license": "5", "title": "The Great Redoubt, Saratoga Battlefield, Saratoga National Historical Park, Stillwater, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.610544", "url_o": "https://farm1.staticflickr.com/9/68831791_f5e6733cee_o.jpg", "secret": "f5e6733cee", "media": "photo", "latitude": "43.002356", "id": "68831791", "tags": "newyork saratoga revolutionarywar america unitedstates"}, {"datetaken": "2004-08-04 11:52:14", "license": "5", "title": "Flowers at the Great Redoubt, Saratoga Battlefield, Saratoga National Historical Park, Stillwater, New York", "text": "", "album_id": "72057594073873411", "longitude": "-73.610544", "url_o": "https://farm1.staticflickr.com/18/68832210_26e60c4289_o.jpg", "secret": "26e60c4289", "media": "photo", "latitude": "43.002356", "id": "68832210", "tags": "newyork saratoga revolutionarywar america unitedstates"}, {"datetaken": "2005-10-31 07:07:01", "license": "4", "title": "Biker Cindy", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/32/58280889_f90210150e_o.jpg", "secret": "f90210150e", "media": "photo", "latitude": "32.899614", "id": "58280889", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 07:07:51", "license": "4", "title": "un the Limey", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/25/58281169_02a20ddd9d_o.jpg", "secret": "02a20ddd9d", "media": "photo", "latitude": "32.899614", "id": "58281169", "tags": "halloween party costume ewen"}, {"datetaken": "2005-10-31 07:26:56", "license": "4", "title": "Dave and Ingrid, the oldies", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/30/58281467_9f4503352b_o.jpg", "secret": "9f4503352b", "media": "photo", "latitude": "32.899614", "id": "58281467", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 08:17:26", "license": "4", "title": "The Joker", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/28/58281861_ca508c7734_o.jpg", "secret": "ca508c7734", "media": "photo", "latitude": "32.899614", "id": "58281861", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 10:06:42", "license": "4", "title": "\"Lion King\" Greg", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/25/58282148_9455f76e0a_o.jpg", "secret": "9455f76e0a", "media": "photo", "latitude": "32.899614", "id": "58282148", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 10:07:09", "license": "4", "title": "Miss Kitty Weigandt", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/27/58282423_9a711e2391_o.jpg", "secret": "9a711e2391", "media": "photo", "latitude": "32.899614", "id": "58282423", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 10:07:23", "license": "4", "title": "Cardinal Kiraly", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/26/58282745_0abba4ab79_o.jpg", "secret": "0abba4ab79", "media": "photo", "latitude": "32.899614", "id": "58282745", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 10:07:49", "license": "4", "title": "Carole, teller of Fortunes", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/29/58283066_4af759f148_o.jpg", "secret": "4af759f148", "media": "photo", "latitude": "32.899614", "id": "58283066", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 10:08:13", "license": "4", "title": "Pierre didn't wear a costume", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/32/58283538_3c3dcd8a09_o.jpg", "secret": "3c3dcd8a09", "media": "photo", "latitude": "32.899614", "id": "58283538", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 10:32:21", "license": "4", "title": "Amanda the pioneer girl", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/25/58284074_d13406318c_o.jpg", "secret": "d13406318c", "media": "photo", "latitude": "32.899614", "id": "58284074", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 10:32:44", "license": "4", "title": "John the Hockey player", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/25/58284360_84d022c1be_o.jpg", "secret": "84d022c1be", "media": "photo", "latitude": "32.899614", "id": "58284360", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 11:13:41", "license": "4", "title": "The joker steals, Cindy's wheels", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/32/58284717_0aa5f35fc7_o.jpg", "secret": "0aa5f35fc7", "media": "photo", "latitude": "32.899614", "id": "58284717", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 11:53:55", "license": "4", "title": "Operation Peanut round 2", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/26/58285344_d080e6f213_o.jpg", "secret": "d080e6f213", "media": "photo", "latitude": "32.899614", "id": "58285344", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 11:54:57", "license": "4", "title": "Carole vs Dennis in Operation Peanut", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/29/58286098_7b611ad39e_o.jpg", "secret": "7b611ad39e", "media": "photo", "latitude": "32.899614", "id": "58286098", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 11:55:54", "license": "4", "title": "Catwoman", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/33/58286388_4fd74be463_o.jpg", "secret": "4fd74be463", "media": "photo", "latitude": "32.899614", "id": "58286388", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 12:07:05", "license": "4", "title": "I have to throw this?", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/25/58286842_e46d3893ce_o.jpg", "secret": "e46d3893ce", "media": "photo", "latitude": "32.899614", "id": "58286842", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 12:07:16", "license": "4", "title": "Dennis and Dave toss the brain", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/30/58287345_67e4ac9f28_o.jpg", "secret": "67e4ac9f28", "media": "photo", "latitude": "32.899614", "id": "58287345", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 12:07:30", "license": "4", "title": "Alan and Amanda vs Dennis and Dave", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/33/58287787_4ee4960fa6_o.jpg", "secret": "4ee4960fa6", "media": "photo", "latitude": "32.899614", "id": "58287787", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 12:07:52", "license": "4", "title": "Two brains at once!", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/32/58288255_8300339b94_o.jpg", "secret": "8300339b94", "media": "photo", "latitude": "32.899614", "id": "58288255", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 12:12:47", "license": "4", "title": "Carole and Keith vs Laurie and Pierre", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/24/58288813_621568d5b4_o.jpg", "secret": "621568d5b4", "media": "photo", "latitude": "32.899614", "id": "58288813", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 12:13:04", "license": "4", "title": "Keith gets a grip on the brain", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/30/58289289_d674aa2905_o.jpg", "secret": "d674aa2905", "media": "photo", "latitude": "32.899614", "id": "58289289", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 12:13:07", "license": "4", "title": "Disaster! the brain breaks up mid-air!", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/31/58301505_8d21dc69e9_o.jpg", "secret": "8d21dc69e9", "media": "photo", "latitude": "32.899614", "id": "58301505", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 12:16:02", "license": "4", "title": "Dennis and Dave vs un and Greg", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/29/58301880_7b326ae61d_o.jpg", "secret": "7b326ae61d", "media": "photo", "latitude": "32.899614", "id": "58301880", "tags": "halloween party costume ewen"}, {"datetaken": "2005-10-31 12:17:14", "license": "4", "title": "Picking our brains (up off the floor)", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/30/58302233_c3f7a36b0b_o.jpg", "secret": "c3f7a36b0b", "media": "photo", "latitude": "32.899614", "id": "58302233", "tags": "halloween party costume ewen"}, {"datetaken": "2005-10-31 12:18:41", "license": "4", "title": "Laurie and Pierre", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/33/58302717_fdddd8329a_o.jpg", "secret": "fdddd8329a", "media": "photo", "latitude": "32.899614", "id": "58302717", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 12:19:25", "license": "4", "title": "Brain tossing Finale", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/30/58303163_c60edd84a8_o.jpg", "secret": "c60edd84a8", "media": "photo", "latitude": "32.899614", "id": "58303163", "tags": "halloween party costume ewen"}, {"datetaken": "2005-10-31 12:27:15", "license": "4", "title": "Pierre and Laurie take first place", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/25/58303393_3eedc853f8_o.jpg", "secret": "3eedc853f8", "media": "photo", "latitude": "32.899614", "id": "58303393", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 12:27:22", "license": "4", "title": "We Win! Yeah!", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/26/58303761_08d18844a8_o.jpg", "secret": "08d18844a8", "media": "photo", "latitude": "32.899614", "id": "58303761", "tags": "halloween party costume"}, {"datetaken": "2005-10-31 12:28:20", "license": "4", "title": "Second Place", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/28/58304027_6b704f2505_o.jpg", "secret": "6b704f2505", "media": "photo", "latitude": "32.899614", "id": "58304027", "tags": "halloween party costume ewen"}, {"datetaken": "2005-10-31 12:47:59", "license": "4", "title": "Joint first prize in the costume contest", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/33/58304266_e91d1e9e14_o.jpg", "secret": "e91d1e9e14", "media": "photo", "latitude": "32.899614", "id": "58304266", "tags": "halloween party costume ewen"}, {"datetaken": "2005-10-31 12:48:16", "license": "4", "title": "Second place in costume contest - Cindy", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/31/58304529_70c1ca7766_o.jpg", "secret": "70c1ca7766", "media": "photo", "latitude": "32.899614", "id": "58304529", "tags": "halloween party costume ewen"}, {"datetaken": "2005-10-31 12:48:47", "license": "4", "title": "Third place in the costume contest", "text": "", "album_id": "1261627", "longitude": "-117.175337", "url_o": "https://farm1.staticflickr.com/24/58304694_d7340ca30f_o.jpg", "secret": "d7340ca30f", "media": "photo", "latitude": "32.899614", "id": "58304694", "tags": "halloween party costume ewen"}, {"datetaken": "2005-11-11 21:20:33", "license": "3", "title": "The crowd at the Blue Point Brewery", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/62514242_5399f25eb8_o.jpg", "secret": "5399f25eb8", "media": "photo", "latitude": "0", "id": "62514242", "tags": "railroadearth rre longisland bluepointbrewery 111105"}, {"datetaken": "2005-11-11 21:20:45", "license": "3", "title": "The crowd at the Blue Point Brewery", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/62514243_eed89093c6_o.jpg", "secret": "eed89093c6", "media": "photo", "latitude": "0", "id": "62514243", "tags": "railroadearth rre longisland bluepointbrewery 111105"}, {"datetaken": "2005-11-11 21:45:03", "license": "3", "title": "Andy Goessling tuning", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/62505318_3fa44b3ebd_o.jpg", "secret": "3fa44b3ebd", "media": "photo", "latitude": "0", "id": "62505318", "tags": "banjo andy 111105 rre railroadearth bluepointbrewery longisland"}, {"datetaken": "2005-11-11 21:47:11", "license": "3", "title": "Todd's cheat sheet", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/62506434_182989ac4e_o.jpg", "secret": "182989ac4e", "media": "photo", "latitude": "0", "id": "62506434", "tags": "railroadearth bluepointbrewery longisland rre thecuckoosong cheatsheet 111105"}, {"datetaken": "2005-11-11 21:50:56", "license": "3", "title": "The crowd at the Blue Point Brewery", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/62514244_4d8882e007_o.jpg", "secret": "4d8882e007", "media": "photo", "latitude": "0", "id": "62514244", "tags": "railroadearth rre longisland bluepointbrewery 111105"}, {"datetaken": "2005-11-11 21:52:46", "license": "3", "title": "John Skehan tuning", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/62505319_b18b224274_o.jpg", "secret": "b18b224274", "media": "photo", "latitude": "0", "id": "62505319", "tags": "mandolin john 111105 rre railroadearth bluepointbrewery longisland"}, {"datetaken": "2005-11-11 22:07:49", "license": "3", "title": "John and Andy", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/62507215_1618bc89b4_o.jpg", "secret": "1618bc89b4", "media": "photo", "latitude": "0", "id": "62507215", "tags": "railroadearth rre bluepointbrewery longisland music livemusic 111105 john andy"}, {"datetaken": "2005-11-11 22:10:36", "license": "3", "title": "Tim on the fiddle", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/62507216_980eef7a92_o.jpg", "secret": "980eef7a92", "media": "photo", "latitude": "0", "id": "62507216", "tags": "railroadearth rre bluepointbrewery longisland music livemusic 111105 tim carbone timmy fiddle fiddler"}, {"datetaken": "2005-11-11 22:16:51", "license": "3", "title": "Todd and Johnny Grubb", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/62507217_b0578d55d8_o.jpg", "secret": "b0578d55d8", "media": "photo", "latitude": "0", "id": "62507217", "tags": "railroadearth rre bluepointbrewery longisland music livemusic 111105 todd sheaffer johnny grubb"}, {"datetaken": "2005-11-11 22:20:33", "license": "3", "title": "John and a blurred Andy", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/62507218_1f7e6f84f7_o.jpg", "secret": "1f7e6f84f7", "media": "photo", "latitude": "0", "id": "62507218", "tags": "railroadearth rre bluepointbrewery longisland music livemusic 111105 john skehan andy goessling"}, {"datetaken": "2005-11-11 22:20:48", "license": "3", "title": "John, Andy and Carey", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/62508940_2108279f37_o.jpg", "secret": "2108279f37", "media": "photo", "latitude": "0", "id": "62508940", "tags": "railroadearth rre longisland bluepointbrewery 111105 john skehan andy goessling carey harmon"}, {"datetaken": "2005-11-11 22:52:26", "license": "3", "title": "Carey, Todd, Grubb, Tim", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/62508941_d579428581_o.jpg", "secret": "d579428581", "media": "photo", "latitude": "0", "id": "62508941", "tags": "railroadearth rre longisland bluepointbrewery 111105 carey harmon todd sheaffer johnny grubb tim carbon"}, {"datetaken": "2005-11-11 22:52:48", "license": "3", "title": "John, Andy and Carey", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/62508942_5b8e8b6bf1_o.jpg", "secret": "5b8e8b6bf1", "media": "photo", "latitude": "0", "id": "62508942", "tags": "railroadearth rre longisland bluepointbrewery 111105 john skehan andy goessling"}, {"datetaken": "2005-11-11 23:30:10", "license": "3", "title": "Andy's battery of instruments", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/62510269_98bd342ff2_o.jpg", "secret": "98bd342ff2", "media": "photo", "latitude": "0", "id": "62510269", "tags": "railroadearth rre longisland bluepointbrewery 111105 andy goessling dobro guitar banjo"}, {"datetaken": "2005-11-11 23:51:21", "license": "3", "title": "John, Andy, and Carey - Smilin' Like A Buddha", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/62510274_d29782dc6e_o.jpg", "secret": "d29782dc6e", "media": "photo", "latitude": "0", "id": "62510274", "tags": "railroadearth rre longisland bluepointbrewery 111105 john skehan andy goessling mandolin flute smilin like buddha"}, {"datetaken": "2005-11-11 23:51:35", "license": "3", "title": "John, Andy, and Carey - Smilin' Like A Buddha", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/62510276_9bfa920030_o.jpg", "secret": "9bfa920030", "media": "photo", "latitude": "0", "id": "62510276", "tags": "railroadearth rre longisland bluepointbrewery 111105 ohn skehan andy goessling mandolin flute smilin like buddha carey harmon drums"}, {"datetaken": "2005-11-12 00:00:50", "license": "3", "title": "Carey, Todd, and Grubb", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/62511162_dfa1edb0ce_o.jpg", "secret": "dfa1edb0ce", "media": "photo", "latitude": "0", "id": "62511162", "tags": "railroadearth rre longisland bluepointbrewery 111105 carey harmon todd sheaffer johnny grubb"}, {"datetaken": "2005-11-12 00:16:46", "license": "3", "title": "Todd, Grubb and Tim", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/62511163_8a51334076_o.jpg", "secret": "8a51334076", "media": "photo", "latitude": "0", "id": "62511163", "tags": "railroadearth rre longisland bluepointbrewery 111105 todd sheaffer johnny grubb tim carbon"}, {"datetaken": "2005-11-12 00:16:55", "license": "3", "title": "John on fire", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/62511164_43a741df88_o.jpg", "secret": "43a741df88", "media": "photo", "latitude": "0", "id": "62511164", "tags": "railroadearth rre longisland bluepointbrewery 111105 john skehan mandolin"}, {"datetaken": "2005-11-12 00:17:32", "license": "3", "title": "John a'blur again", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/62511609_0ebced2557_o.jpg", "secret": "0ebced2557", "media": "photo", "latitude": "0", "id": "62511609", "tags": "rre railroadearth bluepointbrewery longisland 111105 john skehan mandolin"}, {"datetaken": "2005-11-12 00:30:56", "license": "3", "title": "Todd, Brady Rymer, and Tim", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/62511610_96839e1f7c_o.jpg", "secret": "96839e1f7c", "media": "photo", "latitude": "0", "id": "62511610", "tags": "rre railroadearth bluepointbrewery longisland 111105 todd brady rymer sheaffer tim carbone fgh"}, {"datetaken": "2005-11-12 00:33:10", "license": "3", "title": "Todd, Brady, and Timmy", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/62511611_a40477b173_o.jpg", "secret": "a40477b173", "media": "photo", "latitude": "0", "id": "62511611", "tags": "rre railroadearth bluepointbrewery longisland 111105 todd brady rymer sheaffer tim carbone fgh"}, {"datetaken": "2005-11-12 00:36:06", "license": "3", "title": "Andy a'blur", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/62512255_0a7d09eb98_o.jpg", "secret": "0a7d09eb98", "media": "photo", "latitude": "0", "id": "62512255", "tags": "rre railroadearth bluepointbrewery longisland 111105 andy goessling banjo"}, {"datetaken": "2005-11-12 00:42:19", "license": "3", "title": "Brady and Tim", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/62512256_de3118952d_o.jpg", "secret": "de3118952d", "media": "photo", "latitude": "0", "id": "62512256", "tags": "rre railroadearth bluepointbrewery longisland 111105 brady rymer bass tim carbone fiddle"}, {"datetaken": "2005-11-12 00:42:28", "license": "3", "title": "Brady and Tim", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/62512257_07a8f20f71_o.jpg", "secret": "07a8f20f71", "media": "photo", "latitude": "0", "id": "62512257", "tags": "rre railroadearth bluepointbrewery longisland 111105 brady rymer bass tim carbone fiddle"}, {"datetaken": "2005-11-12 00:49:33", "license": "3", "title": "John and Andy", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/62512898_66df26ee34_o.jpg", "secret": "66df26ee34", "media": "photo", "latitude": "0", "id": "62512898", "tags": "rre railroadearth bluepointbrewery longisland 111105 john skehan mandolin andy goessling dobro"}, {"datetaken": "2005-11-12 00:49:42", "license": "3", "title": "Andy on the dobro", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/62512899_f480634916_o.jpg", "secret": "f480634916", "media": "photo", "latitude": "0", "id": "62512899", "tags": "rre railroadearth bluepointbrewery longisland 111105"}, {"datetaken": "2005-11-12 01:02:27", "license": "3", "title": "Andy, Carey, Todd, and Grubb", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/62512900_eb18c6720e_o.jpg", "secret": "eb18c6720e", "media": "photo", "latitude": "0", "id": "62512900", "tags": "rre railroadearth bluepointbrewery longisland 111105 andy goessling carey harmon todd sheaffer johnny grubb"}, {"datetaken": "2005-11-12 01:02:36", "license": "3", "title": "Lois", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/62514246_0dccbccf41_o.jpg", "secret": "0dccbccf41", "media": "photo", "latitude": "0", "id": "62514246", "tags": "railroadearth rre longisland bluepointbrewery 111105"}, {"datetaken": "2005-11-12 01:02:41", "license": "3", "title": "The Legendary ElRon and Mamalo", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/62514247_86ed2aa816_o.jpg", "secret": "86ed2aa816", "media": "photo", "latitude": "0", "id": "62514247", "tags": "railroadearth rre longisland bluepointbrewery 111105"}, {"datetaken": "2005-11-12 01:04:11", "license": "3", "title": "Andy a'blur", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/62513428_2e21ebe68f_o.jpg", "secret": "2e21ebe68f", "media": "photo", "latitude": "0", "id": "62513428", "tags": "railroadearth rre longisland bluepointbrewery 111105 andy goessling guitar"}, {"datetaken": "2005-11-12 01:04:34", "license": "3", "title": "Grubb and Tim", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/62513431_def3a4df6c_o.jpg", "secret": "def3a4df6c", "media": "photo", "latitude": "0", "id": "62513431", "tags": "railroadearth rre longisland bluepointbrewery 111105 johnny grubb bass tim carbone fiddle"}, {"datetaken": "2005-11-12 01:06:18", "license": "3", "title": "Timmy the Mad Fiddler", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/62513437_9b3bf9e962_o.jpg", "secret": "9b3bf9e962", "media": "photo", "latitude": "0", "id": "62513437", "tags": "railroadearth rre longisland bluepointbrewery 111105 todd sheaffer"}, {"datetaken": "2005-11-12 01:06:26", "license": "3", "title": "Timmy the Mad Fiddler", "text": "", "album_id": "1350286", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/62513440_59b08b0b13_o.jpg", "secret": "59b08b0b13", "media": "photo", "latitude": "0", "id": "62513440", "tags": "railroadearth rre longisland bluepointbrewery 111105"}, {"datetaken": "2005-10-16 01:43:38", "license": "2", "title": "IMG_0736", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/65349034_3bc75e2680_o.jpg", "secret": "3bc75e2680", "media": "photo", "latitude": "0", "id": "65349034", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 01:43:58", "license": "2", "title": "IMG_0737", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/65349090_5afb512a89_o.jpg", "secret": "5afb512a89", "media": "photo", "latitude": "0", "id": "65349090", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 01:44:03", "license": "2", "title": "ride 'em sphnixboy", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/65349143_d48443793a_o.jpg", "secret": "d48443793a", "media": "photo", "latitude": "0", "id": "65349143", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 01:44:33", "license": "2", "title": "sphinx a pose", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/65349242_aa1dd288cb_o.jpg", "secret": "aa1dd288cb", "media": "photo", "latitude": "0", "id": "65349242", "tags": "deyoung opening museum party alex"}, {"datetaken": "2005-10-16 01:44:50", "license": "2", "title": "what sphinx?", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/65349299_d2a1c5f617_o.jpg", "secret": "d2a1c5f617", "media": "photo", "latitude": "0", "id": "65349299", "tags": "deyoung opening museum party alex"}, {"datetaken": "2005-10-16 01:45:25", "license": "2", "title": "drunk as a sphinx", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/65349375_0ceae9746a_o.jpg", "secret": "0ceae9746a", "media": "photo", "latitude": "0", "id": "65349375", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 01:52:53", "license": "2", "title": "IMG_0744", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/65349450_b299c82006_o.jpg", "secret": "b299c82006", "media": "photo", "latitude": "0", "id": "65349450", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 01:53:02", "license": "2", "title": "IMG_0745", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/65349550_b68ae55e97_o.jpg", "secret": "b68ae55e97", "media": "photo", "latitude": "0", "id": "65349550", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 02:51:59", "license": "2", "title": "art exhibit(ionism)", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/65349659_55adf73d6f_o.jpg", "secret": "55adf73d6f", "media": "photo", "latitude": "0", "id": "65349659", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 02:56:25", "license": "2", "title": "IMG_0748", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/65349709_ee98e71822_o.jpg", "secret": "ee98e71822", "media": "photo", "latitude": "0", "id": "65349709", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 02:56:50", "license": "2", "title": "shake & wake", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/65349749_6fd590095c_o.jpg", "secret": "6fd590095c", "media": "photo", "latitude": "0", "id": "65349749", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 02:56:57", "license": "2", "title": "IMG_0750", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/65349802_e1b7dcaea2_o.jpg", "secret": "e1b7dcaea2", "media": "photo", "latitude": "0", "id": "65349802", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:21:56", "license": "2", "title": "IMG_0751", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/65349851_e76f2a5814_o.jpg", "secret": "e76f2a5814", "media": "photo", "latitude": "0", "id": "65349851", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:22:16", "license": "2", "title": "IMG_0752", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/65349914_f574f93ff8_o.jpg", "secret": "f574f93ff8", "media": "photo", "latitude": "0", "id": "65349914", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:23:15", "license": "2", "title": "IMG_0753", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/65349942_fda65c0028_o.jpg", "secret": "fda65c0028", "media": "photo", "latitude": "0", "id": "65349942", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:23:28", "license": "2", "title": "IMG_0754", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/65349989_59f61125b6_o.jpg", "secret": "59f61125b6", "media": "photo", "latitude": "0", "id": "65349989", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:24:05", "license": "2", "title": "how goth", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/65350028_0b5ee501ea_o.jpg", "secret": "0b5ee501ea", "media": "photo", "latitude": "0", "id": "65350028", "tags": "party museum skull mask goth opening deyoung"}, {"datetaken": "2005-10-16 03:24:40", "license": "2", "title": "IMG_0756", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/65350113_1204e87862_o.jpg", "secret": "1204e87862", "media": "photo", "latitude": "0", "id": "65350113", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:25:21", "license": "2", "title": "IMG_0757", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/65350177_ad84fc404e_o.jpg", "secret": "ad84fc404e", "media": "photo", "latitude": "0", "id": "65350177", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:25:56", "license": "2", "title": "IMG_0758", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/65350195_c190ae872d_o.jpg", "secret": "c190ae872d", "media": "photo", "latitude": "0", "id": "65350195", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:26:26", "license": "2", "title": "IMG_0760", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/65350242_5de1971fd3_o.jpg", "secret": "5de1971fd3", "media": "photo", "latitude": "0", "id": "65350242", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:26:53", "license": "2", "title": "Penis Cover", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/65350296_6b82ed849d_o.jpg", "secret": "6b82ed849d", "media": "photo", "latitude": "0", "id": "65350296", "tags": "deyoung opening museum party penis"}, {"datetaken": "2005-10-16 03:27:53", "license": "2", "title": "IMG_0762", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/65350390_7523f5410c_o.jpg", "secret": "7523f5410c", "media": "photo", "latitude": "0", "id": "65350390", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:28:16", "license": "2", "title": "IMG_0763", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/65350515_d38880d554_o.jpg", "secret": "d38880d554", "media": "photo", "latitude": "0", "id": "65350515", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:29:37", "license": "2", "title": "IMG_0764", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/65350548_f99c0d037b_o.jpg", "secret": "f99c0d037b", "media": "photo", "latitude": "0", "id": "65350548", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:32:58", "license": "2", "title": "zonked", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/65350590_d712dca968_o.jpg", "secret": "d712dca968", "media": "photo", "latitude": "0", "id": "65350590", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:33:10", "license": "2", "title": "IMG_0766", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/65350651_601c97af20_o.jpg", "secret": "601c97af20", "media": "photo", "latitude": "0", "id": "65350651", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:36:54", "license": "2", "title": "IMG_0767", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/65350714_92ba6ede96_o.jpg", "secret": "92ba6ede96", "media": "photo", "latitude": "0", "id": "65350714", "tags": "deyoung opening museum party nude"}, {"datetaken": "2005-10-16 03:37:08", "license": "2", "title": "i know it when i see it", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/65350775_bc47c3e464_o.jpg", "secret": "bc47c3e464", "media": "photo", "latitude": "0", "id": "65350775", "tags": "deyoung opening museum party nude"}, {"datetaken": "2005-10-16 03:39:00", "license": "2", "title": "IMG_0770", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/65350874_5736975116_o.jpg", "secret": "5736975116", "media": "photo", "latitude": "0", "id": "65350874", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:39:16", "license": "2", "title": "more victims of the wee hours", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/65350931_d41bd8d9be_o.jpg", "secret": "d41bd8d9be", "media": "photo", "latitude": "0", "id": "65350931", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:41:36", "license": "2", "title": "IMG_0772", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/65350961_724c7fbda2_o.jpg", "secret": "724c7fbda2", "media": "photo", "latitude": "0", "id": "65350961", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:41:53", "license": "2", "title": "IMG_0774", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/65351001_e9c9e8c73a_o.jpg", "secret": "e9c9e8c73a", "media": "photo", "latitude": "0", "id": "65351001", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:49:15", "license": "2", "title": "IMG_0775", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/65351062_a5201f63ea_o.jpg", "secret": "a5201f63ea", "media": "photo", "latitude": "0", "id": "65351062", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:52:27", "license": "2", "title": "IMG_0776", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/65351109_39bb2b0219_o.jpg", "secret": "39bb2b0219", "media": "photo", "latitude": "0", "id": "65351109", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 03:52:34", "license": "2", "title": "IMG_0777", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/65351197_b4d1afd5cd_o.jpg", "secret": "b4d1afd5cd", "media": "photo", "latitude": "0", "id": "65351197", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 04:04:27", "license": "2", "title": "IMG_0778", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/65351251_2a29e00165_o.jpg", "secret": "2a29e00165", "media": "photo", "latitude": "0", "id": "65351251", "tags": "deyoung opening museum party"}, {"datetaken": "2005-10-16 04:04:47", "license": "2", "title": "captive dancing clown", "text": "", "album_id": "1410139", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/65351339_269b63774a_o.jpg", "secret": "269b63774a", "media": "photo", "latitude": "0", "id": "65351339", "tags": "deyoung opening museum party"}, {"datetaken": "2006-01-01 09:47:27", "license": "1", "title": "1 janv-001", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/80482912_34b060d5bc_o.jpg", "secret": "34b060d5bc", "media": "photo", "latitude": "0", "id": "80482912", "tags": "paris france nature rain weather photos eiffel images rains clochard allweather ploaie pleut ploua copyrightjuliekertesz photojuliekertesz ess\u00f6 differentweathers usingweather"}, {"datetaken": "2006-01-01 09:48:19", "license": "1", "title": "1 janv-002", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/80482959_e77246aabd_o.jpg", "secret": "e77246aabd", "media": "photo", "latitude": "0", "id": "80482959", "tags": "people paris france nature rain weather portraits photos pluie eiffel images choice umbrellas meetings rains gens umbrela clochard parapluie allweather julie70 ploaie pleut ploua copyrightjuliekertesz prefered noporestrangers esik photojuliekertesz juliekertesz ess\u00f6 erny\u00f6 differentweathers usingweather"}, {"datetaken": "2006-01-01 09:48:27", "license": "1", "title": "1 janv-003", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/80483023_e0ffdd44c1_o.jpg", "secret": "e0ffdd44c1", "media": "photo", "latitude": "0", "id": "80483023", "tags": "blue people paris france nature rain weather portraits photos pluie eiffel images choice umbrellas meetings rains gens umbrela clochard parapluie parisienne parisians allweather rencontres parisien parisiens flickrexplore julie70 ploaie pleut explored ploua copyrightjuliekertesz peopleinparis prefered noporestrangers rencontr\u00e9s\u00e0paris esik photojuliekertesz juliekertesz ess\u00f6 erny\u00f6 photographyjuliekertesz differentweathers usingweather"}, {"datetaken": "2006-01-01 09:48:57", "license": "1", "title": "My \"man with the broken umbrella\" 010", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/80791195_f899ab2f3a_o.jpg", "secret": "f899ab2f3a", "media": "photo", "latitude": "0", "id": "80791195", "tags": "paris france rain rainyday photos 2006 images toureiffel umbrellas rains ploaie pleut ploua copyrightjuliekertesz photojuliekertesz ess\u00f6"}, {"datetaken": "2006-01-01 09:48:57", "license": "1", "title": "My \"man with the broken umbrella\" 011", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/80791220_1964963895_o.jpg", "secret": "1964963895", "media": "photo", "latitude": "0", "id": "80791220", "tags": "paris france rain rainyday photos 2006 images toureiffel umbrellas copyrightjuliekertesz"}, {"datetaken": "2006-01-01 09:52:33", "license": "1", "title": "Tour Eiffel and the nearby houses", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80803212_fce5b3835b_o.jpg", "secret": "fce5b3835b", "media": "photo", "latitude": "0", "id": "80803212", "tags": "paris france photos 2006 images newyear copyrightjuliekertesz"}, {"datetaken": "2006-01-01 09:54:03", "license": "1", "title": "Rain under Eiffel Tower 022", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/80791248_c78292bc43_o.jpg", "secret": "c78292bc43", "media": "photo", "latitude": "0", "id": "80791248", "tags": "paris france nature rain weather rainyday photos 2006 images toureiffel umbrellas rains allweather ploaie pleut ploua copyrightjuliekertesz photojuliekertesz ess\u00f6 differentweathers usingweather"}, {"datetaken": "2006-01-01 09:54:34", "license": "1", "title": "Rain under Eiffel Tower 024", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/80791278_a95293c62c_o.jpg", "secret": "a95293c62c", "media": "photo", "latitude": "0", "id": "80791278", "tags": "paris france nature rain weather rainyday photos 2006 images toureiffel umbrellas rains allweather ploaie pleut ploua copyrightjuliekertesz photojuliekertesz ess\u00f6"}, {"datetaken": "2006-01-01 09:54:41", "license": "1", "title": "Rain under Eiffel Tower 025", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/80791308_ec317ba90b_o.jpg", "secret": "ec317ba90b", "media": "photo", "latitude": "0", "id": "80791308", "tags": "paris france rain rainyday photos 2006 images toureiffel umbrellas copyrightjuliekertesz"}, {"datetaken": "2006-01-01 09:55:18", "license": "1", "title": "Rain under Eiffel Tower 026", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/80791331_d4230722e7_o.jpg", "secret": "d4230722e7", "media": "photo", "latitude": "0", "id": "80791331", "tags": "paris france rain rainyday photos 2006 images toureiffel umbrellas copyrightjuliekertesz"}, {"datetaken": "2006-01-01 09:55:39", "license": "1", "title": "Rain under Eiffel Tower 027", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/80791347_5d3225a05d_o.jpg", "secret": "5d3225a05d", "media": "photo", "latitude": "0", "id": "80791347", "tags": "paris france nature rain weather rainyday photos 2006 images toureiffel umbrellas allweather copyrightjuliekertesz"}, {"datetaken": "2006-01-01 09:56:43", "license": "1", "title": "Rain under Eiffel Tower 030", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/80791366_4a1052b373_o.jpg", "secret": "4a1052b373", "media": "photo", "latitude": "0", "id": "80791366", "tags": "paris france rain rainyday photos pluie 2006 images toureiffel umbrellas rains ploaie pleut ploua copyrightjuliekertesz esik photojuliekertesz ess\u00f6"}, {"datetaken": "2006-01-01 09:56:59", "license": "1", "title": "Rain under Eiffel Tower 031", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/80791386_8fe19e6df5_o.jpg", "secret": "8fe19e6df5", "media": "photo", "latitude": "0", "id": "80791386", "tags": "paris france rain rainyday photos 2006 images toureiffel umbrellas rains ploaie pleut ploua copyrightjuliekertesz photojuliekertesz ess\u00f6"}, {"datetaken": "2006-01-01 10:01:30", "license": "1", "title": "A corner in Paris", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/80791578_735a41c9b7_o.jpg", "secret": "735a41c9b7", "media": "photo", "latitude": "0", "id": "80791578", "tags": "paris france rain rainyday photos 2006 images toureiffel umbrellas rains ploaie pleut ploua copyrightjuliekertesz photojuliekertesz ess\u00f6"}, {"datetaken": "2006-01-01 10:01:38", "license": "1", "title": "Metro crossing", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/80791414_d9587db6a9_o.jpg", "secret": "d9587db6a9", "media": "photo", "latitude": "0", "id": "80791414", "tags": "paris france rain rainyday photos 2006 images toureiffel umbrellas rains ploaie pleut ploua copyrightjuliekertesz photojuliekertesz ess\u00f6"}, {"datetaken": "2006-01-01 10:03:44", "license": "1", "title": "1 janv-034", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80791446_a02a3b0c2d_o.jpg", "secret": "a02a3b0c2d", "media": "photo", "latitude": "0", "id": "80791446", "tags": "paris france rain rainyday photos 2006 images toureiffel umbrellas copyrightjuliekertesz"}, {"datetaken": "2006-01-01 10:06:33", "license": "1", "title": "Novotel Hotel Tour Eiffel entrance", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/80791477_0b5b11a70d_o.jpg", "secret": "0b5b11a70d", "media": "photo", "latitude": "0", "id": "80791477", "tags": "paris france rain rainyday photos 2006 images toureiffel umbrellas rains ploaie pleut ploua copyrightjuliekertesz photojuliekertesz ess\u00f6"}, {"datetaken": "2006-01-01 10:07:37", "license": "1", "title": "1 janv-038", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/80791505_310c5d9d43_o.jpg", "secret": "310c5d9d43", "media": "photo", "latitude": "0", "id": "80791505", "tags": "paris france rain rainyday photos 2006 images toureiffel umbrellas copyrightjuliekertesz"}, {"datetaken": "2006-01-01 10:08:33", "license": "1", "title": "Photo under my umbrella", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/80791523_585e4b7322_o.jpg", "secret": "585e4b7322", "media": "photo", "latitude": "0", "id": "80791523", "tags": "paris france rain rainyday photos 2006 images toureiffel umbrellas copyrightjuliekertesz"}, {"datetaken": "2006-01-01 10:13:43", "license": "1", "title": "On the Hotel's terrase", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/80870625_5b077f88bb_o.jpg", "secret": "5b077f88bb", "media": "photo", "latitude": "0", "id": "80870625", "tags": "paris france photos 2006 images janvier 1january copyrightjuliekertesz"}, {"datetaken": "2006-01-01 10:30:38", "license": "1", "title": "Hotel's mirror", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/80870594_892632ee1f_o.jpg", "secret": "892632ee1f", "media": "photo", "latitude": "0", "id": "80870594", "tags": "paris france photos 2006 images janvier 1january copyrightjuliekertesz"}, {"datetaken": "2006-01-01 10:56:07", "license": "1", "title": "Eiffel and Seine-01", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/81963565_515f1865b8_o.jpg", "secret": "515f1865b8", "media": "photo", "latitude": "0", "id": "81963565", "tags": "paris france photos 1st january eiffel 2006 images toureiffel janvier eiffeltour copyrightjuliekertesz"}, {"datetaken": "2006-01-01 10:56:47", "license": "1", "title": "Eiffel and Seine-03", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/81963594_a440787b19_o.jpg", "secret": "a440787b19", "media": "photo", "latitude": "0", "id": "81963594", "tags": "paris france rain photos 1st january eiffel 2006 images toureiffel janvier rains eiffeltour ploaie pleut ploua copyrightjuliekertesz photojuliekertesz ess\u00f6"}, {"datetaken": "2006-01-01 10:57:05", "license": "1", "title": "Eiffel Tower in rain", "text": "", "album_id": "1719783", "longitude": "2.362661", "url_o": "https://farm1.staticflickr.com/43/81963716_93ba274bb5_o.jpg", "secret": "93ba274bb5", "media": "photo", "latitude": "48.849128", "id": "81963716", "tags": "paris france rain photos 1st january eiffel 2006 images toureiffel mostinteresting janvier rains eiffeltour mostfav flickrexplore ploaie pleut explored ploua copyrightjuliekertesz photojuliekertesz topinteresting ess\u00f6 100mostinteresting 120of50000 photographyjuliekertesz"}, {"datetaken": "2006-01-01 11:44:58", "license": "1", "title": "Les quatres cheveux sur gd palais", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/80870558_3b8525fdbc_o.jpg", "secret": "3b8525fdbc", "media": "photo", "latitude": "0", "id": "80870558", "tags": "paris france photos 2006 images janvier 1january copyrightjuliekertesz"}, {"datetaken": "2006-01-01 11:44:58", "license": "1", "title": "Les quatres cheveux sur gd palais, detail", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/80870534_3c5575f15e_o.jpg", "secret": "3c5575f15e", "media": "photo", "latitude": "0", "id": "80870534", "tags": "paris france photos 2006 images janvier 1january copyrightjuliekertesz"}, {"datetaken": "2006-01-01 12:17:39", "license": "1", "title": "Regardant la vitrine", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/80870499_3b97595f28_o.jpg", "secret": "3b97595f28", "media": "photo", "latitude": "0", "id": "80870499", "tags": "paris france photos 2006 images janvier 1january copyrightjuliekertesz"}, {"datetaken": "2006-01-01 12:17:48", "license": "1", "title": "Reflexions in the rain", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/80870449_370c3b13a2_o.jpg", "secret": "370c3b13a2", "media": "photo", "latitude": "0", "id": "80870449", "tags": "paris france rain reflections photos 2006 images janvier reflets rains ploaie pleut 1january ploua copyrightjuliekertesz photojuliekertesz ess\u00f6 t\u00fck\u00f6r\u00f6z\u00e9s"}, {"datetaken": "2006-01-01 16:00:56", "license": "1", "title": "Crossing after lunch", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/80870656_d9d878f544_o.jpg", "secret": "d9d878f544", "media": "photo", "latitude": "0", "id": "80870656", "tags": "paris france photos 2006 images janvier 1january copyrightjuliekertesz"}, {"datetaken": "2006-01-01 16:01:22", "license": "1", "title": "A flickrite in Paris", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/80870714_0c387bb7b6_o.jpg", "secret": "0c387bb7b6", "media": "photo", "latitude": "0", "id": "80870714", "tags": "people paris france photos 2006 images meetings janvier gens 1january copyrightjuliekertesz noporestrangers"}, {"datetaken": "2006-01-01 16:01:35", "license": "1", "title": "Rue Poteau ,1 janvier 2006", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/80870683_bf3514a9b5_o.jpg", "secret": "bf3514a9b5", "media": "photo", "latitude": "0", "id": "80870683", "tags": "people paris france photos 2006 images janvier gens parisienne parisians rencontres parisien parisiens 1january copyrightjuliekertesz peopleinparis rencontr\u00e9s\u00e0paris"}, {"datetaken": "2006-01-01 16:01:52", "license": "1", "title": "Learn something new!", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/80870204_fb2ce72a90_o.jpg", "secret": "fb2ce72a90", "media": "photo", "latitude": "0", "id": "80870204", "tags": "people paris france work workers photos working 2006 images travail janvier gens activities activit\u00e9s travailleurs 1january copyrightjuliekertesz m\u00e9tiersenfrance workinginfrance travailant"}, {"datetaken": "2006-01-01 16:02:22", "license": "1", "title": "Devant Resto Nord-Sud", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80870335_a1631caae2_o.jpg", "secret": "a1631caae2", "media": "photo", "latitude": "0", "id": "80870335", "tags": "people paris france photos 2006 images janvier gens parisienne parisians rencontres parisien parisiens 1january copyrightjuliekertesz peopleinparis rencontr\u00e9s\u00e0paris"}, {"datetaken": "2006-01-01 16:03:05", "license": "1", "title": "Crossing and going farther", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/80870247_05955ce39a_o.jpg", "secret": "05955ce39a", "media": "photo", "latitude": "0", "id": "80870247", "tags": "paris france photos 2006 images janvier 1january copyrightjuliekertesz"}, {"datetaken": "2006-01-01 16:03:13", "license": "1", "title": "Going away as fast as he can", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/80870293_176ae32b39_o.jpg", "secret": "176ae32b39", "media": "photo", "latitude": "0", "id": "80870293", "tags": "paris france photos 2006 images janvier 1january copyrightjuliekertesz"}, {"datetaken": "2006-01-01 16:24:05", "license": "1", "title": "In action a flickrite in Paris", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/80870157_246365bf55_o.jpg", "secret": "246365bf55", "media": "photo", "latitude": "0", "id": "80870157", "tags": "paris france photos 2006 images janvier 1january copyrightjuliekertesz"}, {"datetaken": "2006-01-01 16:24:24", "license": "1", "title": "Maison rose 1 janvier B", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80870368_a206dd07ca_o.jpg", "secret": "a206dd07ca", "media": "photo", "latitude": "0", "id": "80870368", "tags": "paris france photos 2006 images janvier 1january copyrightjuliekertesz"}, {"datetaken": "2006-01-01 16:24:42", "license": "1", "title": "Maison rose 1 janvier A", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/80870406_36c46781e0_o.jpg", "secret": "36c46781e0", "media": "photo", "latitude": "0", "id": "80870406", "tags": "paris france photos 2006 images janvier 1january copyrightjuliekertesz"}, {"datetaken": "2006-01-01 18:03:38", "license": "1", "title": "In serious work, detail", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/80870101_e6e8f9877f_o.jpg", "secret": "e6e8f9877f", "media": "photo", "latitude": "0", "id": "80870101", "tags": "paris france photos 2006 images janvier 1january copyrightjuliekertesz"}, {"datetaken": "2006-01-01 19:42:31", "license": "1", "title": "Lumi\u00e8res sur Seine", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/80870785_bb60e1b77c_o.jpg", "secret": "bb60e1b77c", "media": "photo", "latitude": "0", "id": "80870785", "tags": "paris france photos 2006 images janvier 1january copyrightjuliekertesz"}, {"datetaken": "2006-01-01 19:42:31", "license": "1", "title": "Seine under Tour Eiffel at new year evening", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/80803273_3f4e6907e8_o.jpg", "secret": "3f4e6907e8", "media": "photo", "latitude": "0", "id": "80803273", "tags": "paris france nature weather seine reflections photos 2006 images newyear reflexions reflets allweather copyrightjuliekertesz t\u00fck\u00f6r\u00f6z\u00e9s"}, {"datetaken": "2006-01-01 20:37:24", "license": "1", "title": "Eiffel tower from Seine: looking up", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/81963612_e4f3ad8c15_o.jpg", "secret": "e4f3ad8c15", "media": "photo", "latitude": "0", "id": "81963612", "tags": "paris france rain photos 1st january eiffel 2006 images toureiffel janvier rains eiffeltour ploaie pleut ploua copyrightjuliekertesz photojuliekertesz ess\u00f6"}, {"datetaken": "2006-01-01 20:38:10", "license": "1", "title": "Seine under Eiffel Tower", "text": "", "album_id": "1719783", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/81963661_3835361b78_o.jpg", "secret": "3835361b78", "media": "photo", "latitude": "0", "id": "81963661", "tags": "paris france photos 1st january eiffel 2006 images toureiffel janvier eiffeltour copyrightjuliekertesz"}, {"datetaken": "2006-02-24 18:51:01", "license": "2", "title": "Vicki Kendall", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/108600698_36d7bfa0cb_o.jpg", "secret": "36d7bfa0cb", "media": "photo", "latitude": "0", "id": "108600698", "tags": "vicki reversering"}, {"datetaken": "2006-02-24 18:51:41", "license": "2", "title": "Margie Hughes (and Vicki's back)", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/108600697_5e69adb16e_o.jpg", "secret": "5e69adb16e", "media": "photo", "latitude": "0", "id": "108600697", "tags": "reversering margiehughes vickikendall"}, {"datetaken": "2006-02-24 18:52:00", "license": "2", "title": "Mike Bur and Vicki Kendall before the start", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/108588556_65eb0a0221_o.jpg", "secret": "65eb0a0221", "media": "photo", "latitude": "0", "id": "108588556", "tags": "vicki reversering"}, {"datetaken": "2006-02-24 18:55:10", "license": "2", "title": "Graham Zollman and Dru Sexton", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/108588557_c350079117_o.jpg", "secret": "c350079117", "media": "photo", "latitude": "0", "id": "108588557", "tags": "reversering drusexton grahamzollman"}, {"datetaken": "2006-02-24 18:55:37", "license": "2", "title": "Mike Dobies and Deb Pero", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/108600693_e7528c7a8c_o.jpg", "secret": "e7528c7a8c", "media": "photo", "latitude": "0", "id": "108600693", "tags": "reversering mikedobies debpero"}, {"datetaken": "2006-02-24 18:56:36", "license": "2", "title": "The Future Masters of the Ring", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/108588558_90182454fc_o.jpg", "secret": "90182454fc", "media": "photo", "latitude": "0", "id": "108588558", "tags": "reversering"}, {"datetaken": "2006-02-24 18:59:36", "license": "2", "title": "Tom Corris and Greg Loomis", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/108600696_367bda1d1c_o.jpg", "secret": "367bda1d1c", "media": "photo", "latitude": "0", "id": "108600696", "tags": "tom reversering gregloomis"}, {"datetaken": "2006-02-24 19:02:05", "license": "2", "title": "Beginning to unwind on the climb up Signal Knob", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/108588559_fccd5a96c7_o.jpg", "secret": "fccd5a96c7", "media": "photo", "latitude": "0", "id": "108588559", "tags": "reversering"}, {"datetaken": "2006-02-24 19:02:50", "license": "2", "title": "Reverse Ring Volunteers", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/108600699_e4150c48a2_o.jpg", "secret": "e4150c48a2", "media": "photo", "latitude": "0", "id": "108600699", "tags": "reversering"}, {"datetaken": "2006-02-24 22:15:06", "license": "2", "title": "Dobies and Loomdog at an early aid station", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/108549501_cf189c8056_o.jpg", "secret": "cf189c8056", "media": "photo", "latitude": "0", "id": "108549501", "tags": "reversering mikedobies gregloomis"}, {"datetaken": "2006-02-24 22:15:11", "license": "2", "title": "Mike Dobies and Greg Loomis", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/108549502_ecf1eac687_o.jpg", "secret": "ecf1eac687", "media": "photo", "latitude": "0", "id": "108549502", "tags": "reversering mikedobies gregloomis"}, {"datetaken": "2006-02-24 22:22:48", "license": "2", "title": "Margie Hughes", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/108549500_08528c6b69_o.jpg", "secret": "08528c6b69", "media": "photo", "latitude": "0", "id": "108549500", "tags": "reversering margiehughes"}, {"datetaken": "2006-02-24 23:59:20", "license": "2", "title": "The Bur in the Hat", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/108539550_c9de5386fe_o.jpg", "secret": "c9de5386fe", "media": "photo", "latitude": "0", "id": "108539550", "tags": "bur reversering"}, {"datetaken": "2006-02-25 00:00:38", "license": "2", "title": "Mike Bur on the trail", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/108549505_e5212af60f_o.jpg", "secret": "e5212af60f", "media": "photo", "latitude": "0", "id": "108549505", "tags": "bur reversering"}, {"datetaken": "2006-02-25 00:06:33", "license": "2", "title": "Kerry Owens enters Edinburg Gap", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/108549506_4fe77c4468_o.jpg", "secret": "4fe77c4468", "media": "photo", "latitude": "0", "id": "108549506", "tags": "reversering kerryowens"}, {"datetaken": "2006-02-25 00:12:27", "license": "2", "title": "No Parking?", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/108549503_012e1b8f10_o.jpg", "secret": "012e1b8f10", "media": "photo", "latitude": "0", "id": "108549503", "tags": "tom reversering billwandel"}, {"datetaken": "2006-02-25 02:29:29", "license": "2", "title": "Kerry Owens leaving Moreland Gap aid station", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/108539557_d44764bd86_o.jpg", "secret": "d44764bd86", "media": "photo", "latitude": "0", "id": "108539557", "tags": "reversering kerryowens"}, {"datetaken": "2006-02-25 02:30:49", "license": "2", "title": "Charlie Isom at Moreland Gap aid station", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/108539552_66c826d906_o.jpg", "secret": "66c826d906", "media": "photo", "latitude": "0", "id": "108539552", "tags": "charlie reversering"}, {"datetaken": "2006-02-25 03:44:12", "license": "2", "title": "Dru Sexton at Moreland Gap", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/108539553_bc051a0e87_o.jpg", "secret": "bc051a0e87", "media": "photo", "latitude": "0", "id": "108539553", "tags": "reversering drusexton"}, {"datetaken": "2006-02-25 04:07:26", "license": "2", "title": "Graham Zollman at Moreland Gap", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/108539555_27c1edaef2_o.jpg", "secret": "27c1edaef2", "media": "photo", "latitude": "0", "id": "108539555", "tags": "reversering grahamzollman"}, {"datetaken": "2006-02-25 06:43:02", "license": "2", "title": "Camp Roosevelt", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/108571119_ef29680fbb_o.jpg", "secret": "ef29680fbb", "media": "photo", "latitude": "0", "id": "108571119", "tags": "charlie reversering billwandel drusexton"}, {"datetaken": "2006-02-25 06:43:35", "license": "2", "title": "Grillmaster Bur", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/108571121_86afbf7311_o.jpg", "secret": "86afbf7311", "media": "photo", "latitude": "0", "id": "108571121", "tags": "bur reversering"}, {"datetaken": "2006-02-25 07:58:15", "license": "2", "title": "Jaret, Mike and Deb by the fire", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/108571117_c10e591673_o.jpg", "secret": "c10e591673", "media": "photo", "latitude": "0", "id": "108571117", "tags": "reversering mikedobies debpero"}, {"datetaken": "2006-02-25 08:22:49", "license": "2", "title": "Bill Losey at Camp Roosevelt", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/108571116_a0a9ebfb17_o.jpg", "secret": "a0a9ebfb17", "media": "photo", "latitude": "0", "id": "108571116", "tags": "reversering billlosey"}, {"datetaken": "2006-02-25 08:23:30", "license": "2", "title": "Greg gives up the ghost", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/108571120_38abe7216e_o.jpg", "secret": "38abe7216e", "media": "photo", "latitude": "0", "id": "108571120", "tags": "reversering gregloomis"}, {"datetaken": "2006-02-25 09:21:08", "license": "2", "title": "The Isoms at Camp Roosevelt", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/108571118_ef214ff542_o.jpg", "secret": "ef214ff542", "media": "photo", "latitude": "0", "id": "108571118", "tags": "reversering barbisom"}, {"datetaken": "2006-02-25 19:32:10", "license": "2", "title": "Bill Losey finishes", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/108588555_44491cda02_o.jpg", "secret": "44491cda02", "media": "photo", "latitude": "0", "id": "108588555", "tags": "reversering billlosey"}, {"datetaken": "2006-02-25 19:32:46", "license": "2", "title": "1st and 2nd women finishers", "text": "", "album_id": "72057594076000817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/108588554_7a352dbcf2_o.jpg", "secret": "7a352dbcf2", "media": "photo", "latitude": "0", "id": "108588554", "tags": "vicki reversering kerryowens"}, {"datetaken": "2006-04-27 13:22:21", "license": "1", "title": "Our toastmaster on the record", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/47/137615615_68e3caa0f2_o.jpg", "secret": "68e3caa0f2", "media": "photo", "latitude": "41.726742", "id": "137615615", "tags": "wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 13:23:27", "license": "1", "title": "Uncork", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/56/137617204_58a06a6ccb_o.jpg", "secret": "58a06a6ccb", "media": "photo", "latitude": "41.726742", "id": "137617204", "tags": "wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 13:25:41", "license": "1", "title": "Supra al fresco", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/48/137619644_c5d8bee544_o.jpg", "secret": "c5d8bee544", "media": "photo", "latitude": "41.726742", "id": "137619644", "tags": "wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 13:45:50", "license": "1", "title": "What Russia's missing", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/51/137621753_3814b7ca03_o.jpg", "secret": "3814b7ca03", "media": "photo", "latitude": "41.726742", "id": "137621753", "tags": "wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 13:52:27", "license": "1", "title": "Mondo Khachpuri", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/48/137625464_22399c43ee_o.jpg", "secret": "22399c43ee", "media": "photo", "latitude": "41.726742", "id": "137625464", "tags": "wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 13:59:23", "license": "1", "title": "Gaumarjos", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/55/137626443_545b16c51d_o.jpg", "secret": "545b16c51d", "media": "photo", "latitude": "41.726742", "id": "137626443", "tags": "bw wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 14:10:31", "license": "1", "title": "Tim in the media spotlight", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/49/137629914_f523c515e1_o.jpg", "secret": "f523c515e1", "media": "photo", "latitude": "41.726742", "id": "137629914", "tags": "wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 14:14:38", "license": "1", "title": "Vova and Stephanie", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/44/137634911_34b9fc8a3f_o.jpg", "secret": "34b9fc8a3f", "media": "photo", "latitude": "41.726742", "id": "137634911", "tags": "wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 14:56:26", "license": "1", "title": "John is pleased", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/53/137636669_0e6474cd77_o.jpg", "secret": "0e6474cd77", "media": "photo", "latitude": "41.726742", "id": "137636669", "tags": "wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 14:57:09", "license": "1", "title": "Keith", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/52/137638812_363c5759c6_o.jpg", "secret": "363c5759c6", "media": "photo", "latitude": "41.726742", "id": "137638812", "tags": "portrait wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 15:06:35", "license": "1", "title": "Vova and Keith", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/44/137640731_ca85f50e61_o.jpg", "secret": "ca85f50e61", "media": "photo", "latitude": "41.726742", "id": "137640731", "tags": "wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 15:19:58", "license": "1", "title": "Our tamada", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/52/137642825_0f6005c1b1_o.jpg", "secret": "0f6005c1b1", "media": "photo", "latitude": "41.726742", "id": "137642825", "tags": "wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 15:22:30", "license": "1", "title": "My kind of protest", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/44/137644862_e42e26fe27_o.jpg", "secret": "e42e26fe27", "media": "photo", "latitude": "41.726742", "id": "137644862", "tags": "wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 15:39:28", "license": "1", "title": "Stemless", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/56/137646804_b927315e1b_o.jpg", "secret": "b927315e1b", "media": "photo", "latitude": "41.726742", "id": "137646804", "tags": "portrait wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 15:40:59", "license": "1", "title": "Big gulp", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/49/137649094_51e0863d03_o.jpg", "secret": "51e0863d03", "media": "photo", "latitude": "41.726742", "id": "137649094", "tags": "wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 15:41:03", "license": "1", "title": "Bottoms Up", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/50/137651061_ab6beebbca_o.jpg", "secret": "ab6beebbca", "media": "photo", "latitude": "41.726742", "id": "137651061", "tags": "wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 16:07:15", "license": "1", "title": "Well-wisher", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/52/137653875_dd2fc1b076_o.jpg", "secret": "dd2fc1b076", "media": "photo", "latitude": "41.726742", "id": "137653875", "tags": "wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 16:07:18", "license": "1", "title": "So, we're not busted?", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/46/137654925_0a5ba3cc04_o.jpg", "secret": "0a5ba3cc04", "media": "photo", "latitude": "41.726742", "id": "137654925", "tags": "wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-04-27 16:13:28", "license": "1", "title": "The Usual Suspects", "text": "", "album_id": "72057594124033657", "longitude": "44.739761", "url_o": "https://farm1.staticflickr.com/56/137656233_08dbd2964e_o.jpg", "secret": "08dbd2964e", "media": "photo", "latitude": "41.726742", "id": "137656233", "tags": "wine embassy ban tbilisi supra sakartvelo russianembassy wineprotest"}, {"datetaken": "2006-07-08 15:17:23", "license": "3", "title": "Ellie on deck", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/186164970_d7f721aabd_o.jpg", "secret": "d7f721aabd", "media": "photo", "latitude": "0", "id": "186164970", "tags": "cats"}, {"datetaken": "2006-07-08 15:26:00", "license": "3", "title": "Wild raspberry", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/186164881_8f4bf1ed52_o.jpg", "secret": "8f4bf1ed52", "media": "photo", "latitude": "0", "id": "186164881", "tags": "flora"}, {"datetaken": "2006-07-08 15:26:49", "license": "3", "title": "Croquet!", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/186164830_fcc06e393b_o.jpg", "secret": "fcc06e393b", "media": "photo", "latitude": "0", "id": "186164830", "tags": ""}, {"datetaken": "2006-07-08 15:35:06", "license": "3", "title": "Big sky country", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/186164771_f8ff56c4e2_o.jpg", "secret": "f8ff56c4e2", "media": "photo", "latitude": "0", "id": "186164771", "tags": ""}, {"datetaken": "2006-07-08 16:17:39", "license": "3", "title": "A straight win", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/186164566_4448658698_o.jpg", "secret": "4448658698", "media": "photo", "latitude": "0", "id": "186164566", "tags": "me"}, {"datetaken": "2006-07-08 16:20:35", "license": "3", "title": "Lining up", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/186164737_209371cc2b_o.jpg", "secret": "209371cc2b", "media": "photo", "latitude": "0", "id": "186164737", "tags": "family trevor"}, {"datetaken": "2006-07-08 16:20:55", "license": "3", "title": "Jan", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/186164641_6f62541cbb_o.jpg", "secret": "6f62541cbb", "media": "photo", "latitude": "0", "id": "186164641", "tags": "family jan"}, {"datetaken": "2006-07-08 16:21:41", "license": "3", "title": "Dad", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/186164485_bd1fea057f_o.jpg", "secret": "bd1fea057f", "media": "photo", "latitude": "0", "id": "186164485", "tags": "family dad"}, {"datetaken": "2006-07-08 18:46:40", "license": "3", "title": "Porch", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/186164439_aaa8647f55_o.jpg", "secret": "aaa8647f55", "media": "photo", "latitude": "0", "id": "186164439", "tags": "flora"}, {"datetaken": "2006-07-08 18:47:28", "license": "3", "title": "And how.", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/186164390_f8276230c8_o.jpg", "secret": "f8276230c8", "media": "photo", "latitude": "0", "id": "186164390", "tags": "flora"}, {"datetaken": "2006-07-08 18:48:03", "license": "3", "title": "Pink", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/186164335_45fb4c79e0_o.jpg", "secret": "45fb4c79e0", "media": "photo", "latitude": "0", "id": "186164335", "tags": "flora"}, {"datetaken": "2006-07-08 18:50:34", "license": "3", "title": "Scout", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/186164286_fac03b9c34_o.jpg", "secret": "fac03b9c34", "media": "photo", "latitude": "0", "id": "186164286", "tags": "cats"}, {"datetaken": "2006-07-08 18:54:10", "license": "3", "title": "", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/186164228_2432ef2c10_o.jpg", "secret": "2432ef2c10", "media": "photo", "latitude": "0", "id": "186164228", "tags": ""}, {"datetaken": "2006-07-08 19:37:38", "license": "3", "title": "Bellzebub", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/186163848_463c4f3793_o.jpg", "secret": "463c4f3793", "media": "photo", "latitude": "0", "id": "186163848", "tags": "cats"}, {"datetaken": "2006-07-08 19:58:03", "license": "3", "title": "Bench", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/186165120_e98a1cd1d3_o.jpg", "secret": "e98a1cd1d3", "media": "photo", "latitude": "0", "id": "186165120", "tags": ""}, {"datetaken": "2006-07-08 20:09:55", "license": "3", "title": "basket", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/186163890_8f9c419420_o.jpg", "secret": "8f9c419420", "media": "photo", "latitude": "0", "id": "186163890", "tags": "flora"}, {"datetaken": "2006-07-08 20:13:48", "license": "3", "title": "Dad waits for dessert.", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/186163957_09b9baa287_o.jpg", "secret": "09b9baa287", "media": "photo", "latitude": "0", "id": "186163957", "tags": "family dad"}, {"datetaken": "2006-07-08 20:14:44", "license": "3", "title": "Porch", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/186165059_6ae35bd30f_o.jpg", "secret": "6ae35bd30f", "media": "photo", "latitude": "0", "id": "186165059", "tags": ""}, {"datetaken": "2006-07-08 20:16:16", "license": "3", "title": "A cake without 60 candles", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/186164017_916613e732_o.jpg", "secret": "916613e732", "media": "photo", "latitude": "0", "id": "186164017", "tags": ""}, {"datetaken": "2006-07-08 20:17:29", "license": "3", "title": "", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/186164070_5d4c8e5090_o.jpg", "secret": "5d4c8e5090", "media": "photo", "latitude": "0", "id": "186164070", "tags": "flora"}, {"datetaken": "2006-07-08 20:28:52", "license": "3", "title": "Dessert", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/186164122_c39c822696_o.jpg", "secret": "c39c822696", "media": "photo", "latitude": "0", "id": "186164122", "tags": ""}, {"datetaken": "2006-07-08 21:05:42", "license": "3", "title": "Fireworks", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/186164166_b19fc1903c_o.jpg", "secret": "b19fc1903c", "media": "photo", "latitude": "0", "id": "186164166", "tags": ""}, {"datetaken": "2006-07-08 21:11:11", "license": "3", "title": "Window", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/186164186_d13d0ea53d_o.jpg", "secret": "d13d0ea53d", "media": "photo", "latitude": "0", "id": "186164186", "tags": ""}, {"datetaken": "2006-07-09 11:23:42", "license": "3", "title": "Autumn", "text": "", "album_id": "72157594193672439", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/186164999_ddb6b9bb5a_o.jpg", "secret": "ddb6b9bb5a", "media": "photo", "latitude": "0", "id": "186164999", "tags": "cats"}, {"datetaken": "2006-08-07 23:27:03", "license": "2", "title": "in the garden", "text": "", "album_id": "72157594234258731", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/213361738_fa0d1fdf94_o.jpg", "secret": "fa0d1fdf94", "media": "photo", "latitude": "0", "id": "213361738", "tags": "saint garden way easter joseph cross montreal"}, {"datetaken": "2006-08-07 23:28:32", "license": "2", "title": "carrying", "text": "", "album_id": "72157594234258731", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/213361737_ca9a53cef6_o.jpg", "secret": "ca9a53cef6", "media": "photo", "latitude": "0", "id": "213361737", "tags": "saint garden way easter joseph cross montreal goodfriday"}, {"datetaken": "2006-08-07 23:30:07", "license": "2", "title": "1st fall", "text": "", "album_id": "72157594234258731", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/213361736_54411a08fc_o.jpg", "secret": "54411a08fc", "media": "photo", "latitude": "0", "id": "213361736", "tags": "saint garden way easter joseph cross montreal goodfriday"}, {"datetaken": "2006-08-07 23:31:21", "license": "2", "title": "Jesus and Mary", "text": "", "album_id": "72157594234258731", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/213361735_a35813917a_o.jpg", "secret": "a35813917a", "media": "photo", "latitude": "0", "id": "213361735", "tags": "saint garden way easter joseph cross montreal goodfriday"}, {"datetaken": "2006-08-07 23:33:23", "license": "2", "title": "simon", "text": "", "album_id": "72157594234258731", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/213351834_c2edc974bb_o.jpg", "secret": "c2edc974bb", "media": "photo", "latitude": "0", "id": "213351834", "tags": "saint garden way easter joseph cross montreal goodfriday"}, {"datetaken": "2006-08-07 23:35:12", "license": "2", "title": "Veronica", "text": "", "album_id": "72157594234258731", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/213351833_568c0b1d2c_o.jpg", "secret": "568c0b1d2c", "media": "photo", "latitude": "0", "id": "213351833", "tags": "saint garden way easter joseph cross montreal goodfriday"}, {"datetaken": "2006-08-07 23:38:39", "license": "2", "title": "2nd fall", "text": "", "album_id": "72157594234258731", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/213351832_bcc65a85a4_o.jpg", "secret": "bcc65a85a4", "media": "photo", "latitude": "0", "id": "213351832", "tags": "saint garden way easter joseph cross montreal goodfriday"}, {"datetaken": "2006-08-07 23:39:16", "license": "2", "title": "women of jerusalem", "text": "", "album_id": "72157594234258731", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/213351830_6563176abc_o.jpg", "secret": "6563176abc", "media": "photo", "latitude": "0", "id": "213351830", "tags": "saint garden way easter joseph cross montreal goodfriday"}, {"datetaken": "2006-08-07 23:41:17", "license": "2", "title": "3rd fall", "text": "", "album_id": "72157594234258731", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/213351829_9f6e9841b9_o.jpg", "secret": "9f6e9841b9", "media": "photo", "latitude": "0", "id": "213351829", "tags": "saint garden way easter joseph cross montreal goodfriday"}, {"datetaken": "2006-08-07 23:42:01", "license": "2", "title": "stripped", "text": "", "album_id": "72157594234258731", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/213351828_7471c008d3_o.jpg", "secret": "7471c008d3", "media": "photo", "latitude": "0", "id": "213351828", "tags": "saint garden way easter joseph cross montreal goodfriday"}, {"datetaken": "2006-08-07 23:43:39", "license": "2", "title": "nails", "text": "", "album_id": "72157594234258731", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/213306041_7f14a0717e_o.jpg", "secret": "7f14a0717e", "media": "photo", "latitude": "0", "id": "213306041", "tags": "saint garden way easter joseph cross montreal goodfriday"}, {"datetaken": "2006-08-07 23:44:13", "license": "2", "title": "crucifixion", "text": "", "album_id": "72157594234258731", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/213306039_ad51193910_o.jpg", "secret": "ad51193910", "media": "photo", "latitude": "0", "id": "213306039", "tags": "saint garden way easter joseph cross montreal goodfriday"}, {"datetaken": "2006-08-07 23:47:37", "license": "2", "title": "released", "text": "", "album_id": "72157594234258731", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/213306038_ddc0929e1d_o.jpg", "secret": "ddc0929e1d", "media": "photo", "latitude": "0", "id": "213306038", "tags": "saint garden way easter joseph cross montreal goodfriday"}, {"datetaken": "2006-08-07 23:49:33", "license": "2", "title": "burial", "text": "", "album_id": "72157594234258731", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/213306037_37e1cf4c5a_o.jpg", "secret": "37e1cf4c5a", "media": "photo", "latitude": "0", "id": "213306037", "tags": "saint garden way easter joseph cross montreal goodfriday"}, {"datetaken": "2006-08-07 23:51:49", "license": "2", "title": "risen", "text": "", "album_id": "72157594234258731", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/213306035_4aa1b7f87e_o.jpg", "secret": "4aa1b7f87e", "media": "photo", "latitude": "0", "id": "213306035", "tags": "saint garden way easter joseph cross montreal"}, {"datetaken": "2006-08-07 23:53:09", "license": "4", "title": "the lamb", "text": "", "album_id": "72157594234258731", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/213306032_8a54c34748_o.jpg", "secret": "8a54c34748", "media": "photo", "latitude": "0", "id": "213306032", "tags": "saint garden way easter joseph cross montreal"}, {"datetaken": "2006-08-27 10:58:03", "license": "1", "title": "Stretch your body (\u0e22\u0e37\u0e14\u0e41\u0e02\u0e49\u0e07\u0e22\u0e37\u0e14\u0e02\u0e32)", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/85/227109351_bd08db4abc_o.jpg", "secret": "bd08db4abc", "media": "photo", "latitude": "13.734716", "id": "227109351", "tags": "building children exercise body workshop block stretching dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 11:26:47", "license": "1", "title": "skinny jeans", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/86/227110645_edabf97f65_o.jpg", "secret": "edabf97f65", "media": "photo", "latitude": "13.734716", "id": "227110645", "tags": "children skinny jeans dashboard planinternational dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 11:28:31", "license": "1", "title": "Dance Kids #3", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/97/227111615_3195085f69_o.jpg", "secret": "3195085f69", "media": "photo", "latitude": "13.734716", "id": "227111615", "tags": "children dancing dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 11:30:18", "license": "1", "title": "Gettin down", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/98/227112622_462e992601_o.jpg", "secret": "462e992601", "media": "photo", "latitude": "13.734716", "id": "227112622", "tags": "dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 11:32:05", "license": "1", "title": "Anyone can be a leader (\u0e43\u0e04\u0e23\u0e46\u0e01\u0e47\u0e40\u0e1b\u0e47\u0e19\u0e1c\u0e39\u0e49\u0e19\u0e33\u0e44\u0e14\u0e49)", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/73/227113680_b1b4fcd80c_o.jpg", "secret": "b1b4fcd80c", "media": "photo", "latitude": "13.734716", "id": "227113680", "tags": "game building children dance dancing workshop leader block follower dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 11:52:46", "license": "1", "title": "Chalip", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/58/227114291_8f421b8126_o.jpg", "secret": "8f421b8126", "media": "photo", "latitude": "13.734716", "id": "227114291", "tags": "dance catalyst dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 11:58:31", "license": "1", "title": "Dance Angel", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/62/227114962_b741ec95d4_o.jpg", "secret": "b741ec95d4", "media": "photo", "latitude": "13.734716", "id": "227114962", "tags": "children dancing dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 11:58:57", "license": "1", "title": "bust out the salsa!", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/80/227115930_b4effbe915_o.jpg", "secret": "b4effbe915", "media": "photo", "latitude": "13.734716", "id": "227115930", "tags": "children dancing salsa dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 11:59:12", "license": "1", "title": "Dance with me (\u0e40\u0e15\u0e49\u0e19\u0e23\u0e33\u0e01\u0e31\u0e19\u0e40\u0e16\u0e2d\u0e30)", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/66/227116878_40b480b7f4_o.jpg", "secret": "40b480b7f4", "media": "photo", "latitude": "13.734716", "id": "227116878", "tags": "building children break dancing workshop block dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 12:05:04", "license": "1", "title": "we did it!", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/84/227117649_37afeebf46_o.jpg", "secret": "37afeebf46", "media": "photo", "latitude": "13.734716", "id": "227117649", "tags": "children dancing partnership connection dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 12:21:19", "license": "1", "title": "may Dance Labs sprout like bamboo!", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/89/227156944_3a10d33d60_o.jpg", "secret": "3a10d33d60", "media": "photo", "latitude": "13.734716", "id": "227156944", "tags": "progress virtue bamboo growth patience dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 12:23:53", "license": "1", "title": "follow the leader!", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/65/227158029_013a71d19c_o.jpg", "secret": "013a71d19c", "media": "photo", "latitude": "13.734716", "id": "227158029", "tags": "children completion dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 12:33:07", "license": "1", "title": "som tum", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/72/227158794_4bd5ad5965_o.jpg", "secret": "4bd5ad5965", "media": "photo", "latitude": "13.734716", "id": "227158794", "tags": "cooking stand salad papaya thai surprise somtum dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 17:26:20", "license": "1", "title": "chicken sh*t", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/97/227159444_80dbd20530_o.jpg", "secret": "80dbd20530", "media": "photo", "latitude": "13.734716", "id": "227159444", "tags": "life chicken writing thai shit dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 17:27:53", "license": "1", "title": "Moo", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/59/227160195_8b3eff06bc_o.jpg", "secret": "8b3eff06bc", "media": "photo", "latitude": "13.734716", "id": "227160195", "tags": "smile dance thai catalyst dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 17:34:37", "license": "1", "title": "chillin part II", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/74/227160904_7a4c439a86_o.jpg", "secret": "7a4c439a86", "media": "photo", "latitude": "13.734716", "id": "227160904", "tags": "home monkey chillin dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 17:35:40", "license": "1", "title": "parrot sunrise", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/86/227161993_cffc2cf333_o.jpg", "secret": "cffc2cf333", "media": "photo", "latitude": "13.734716", "id": "227161993", "tags": "camera sunrise play parrot dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 17:40:17", "license": "1", "title": "kids play", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/57/227162542_45e2837300_o.jpg", "secret": "45e2837300", "media": "photo", "latitude": "13.734716", "id": "227162542", "tags": "camera play dancelabs dancechalat chalat1"}, {"datetaken": "2006-08-27 17:42:29", "license": "1", "title": "being home", "text": "", "album_id": "72157594327252982", "longitude": "100.497951", "url_o": "https://farm1.staticflickr.com/84/227163188_872be72a53_o.jpg", "secret": "872be72a53", "media": "photo", "latitude": "13.734716", "id": "227163188", "tags": "home acknowledgement mornchin dancelabs dancechalat chalat1"}, {"datetaken": "2006-09-02 15:29:58", "license": "1", "title": "Technology expert", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/233045274_59a84164b0_o.jpg", "secret": "59a84164b0", "media": "photo", "latitude": "0", "id": "233045274", "tags": "camera city sport d50 nikon bmx raw break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 15:30:36", "license": "1", "title": "Grip", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/233046881_8a7df3c131_o.jpg", "secret": "8a7df3c131", "media": "photo", "latitude": "0", "id": "233046881", "tags": "camera city sport d50 nikon bmx raw break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 15:32:33", "license": "1", "title": "The dynamism", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/233048521_941f174cb3_o.jpg", "secret": "941f174cb3", "media": "photo", "latitude": "0", "id": "233048521", "tags": "camera city sport d50 nikon bmx raw break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 15:35:40", "license": "1", "title": "Smooth skater", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/233049463_7ff186feff_o.jpg", "secret": "7ff186feff", "media": "photo", "latitude": "0", "id": "233049463", "tags": "camera city sport d50 nikon bmx raw break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 15:39:41", "license": "1", "title": "Raisen girl", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/233050050_356edadf53_o.jpg", "secret": "356edadf53", "media": "photo", "latitude": "0", "id": "233050050", "tags": "camera city sport d50 nikon bmx raw break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 15:43:07", "license": "1", "title": "Falling down", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/233051101_1facc81d97_o.jpg", "secret": "1facc81d97", "media": "photo", "latitude": "0", "id": "233051101", "tags": "camera city sport d50 nikon bmx raw break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 15:48:35", "license": "1", "title": "Whatta", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/233052391_169825a7bf_o.jpg", "secret": "169825a7bf", "media": "photo", "latitude": "0", "id": "233052391", "tags": "camera city sport d50 nikon bmx raw break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 15:49:43", "license": "1", "title": "Samsung is LOL", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/233053567_50a92590c5_o.jpg", "secret": "50a92590c5", "media": "photo", "latitude": "0", "id": "233053567", "tags": "camera city sport d50 nikon bmx raw break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 15:50:45", "license": "1", "title": "Gotta control your nosefluids :)", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/233059077_b5936abb11_o.jpg", "secret": "b5936abb11", "media": "photo", "latitude": "0", "id": "233059077", "tags": "camera city sport d50 nikon bmx raw break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 15:52:00", "license": "1", "title": "Whee", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/233057970_c4ed34513a_o.jpg", "secret": "c4ed34513a", "media": "photo", "latitude": "0", "id": "233057970", "tags": "camera city sport d50 nikon bmx raw break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 15:53:03", "license": "1", "title": "Damn", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/233056888_d44b532834_o.jpg", "secret": "d44b532834", "media": "photo", "latitude": "0", "id": "233056888", "tags": "camera city sport d50 nikon bmx raw break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 15:56:53", "license": "1", "title": "Getting ready", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/233055641_d5b988f16c_o.jpg", "secret": "d5b988f16c", "media": "photo", "latitude": "0", "id": "233055641", "tags": "camera city sport d50 nikon bmx raw break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 15:56:57", "license": "1", "title": "Broken nose", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/233054589_6b8daef7a5_o.jpg", "secret": "6b8daef7a5", "media": "photo", "latitude": "0", "id": "233054589", "tags": "camera city sport d50 nikon bmx raw break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 15:58:21", "license": "1", "title": "It kinda looks nice", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/233060351_28af843263_o.jpg", "secret": "28af843263", "media": "photo", "latitude": "0", "id": "233060351", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 15:58:46", "license": "1", "title": "Keeping it real, again", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/233061659_7887711ca4_o.jpg", "secret": "7887711ca4", "media": "photo", "latitude": "0", "id": "233061659", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 15:58:48", "license": "1", "title": "Backstand", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/233063064_8ad5ea9f34_o.jpg", "secret": "8ad5ea9f34", "media": "photo", "latitude": "0", "id": "233063064", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 15:59:11", "license": "1", "title": "Pogo", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/233064553_de8f62ae96_o.jpg", "secret": "de8f62ae96", "media": "photo", "latitude": "0", "id": "233064553", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:00:57", "license": "1", "title": "The beginning of a beautiful friendship", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/233066238_11dc4806db_o.jpg", "secret": "11dc4806db", "media": "photo", "latitude": "0", "id": "233066238", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:00:59", "license": "1", "title": "WHOA!", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/233067546_61ce09852b_o.jpg", "secret": "61ce09852b", "media": "photo", "latitude": "0", "id": "233067546", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:01:08", "license": "1", "title": "The guyz", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/233068963_78217bfd7e_o.jpg", "secret": "78217bfd7e", "media": "photo", "latitude": "0", "id": "233068963", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:01:19", "license": "1", "title": "Orange stand", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/233070277_2168f28902_o.jpg", "secret": "2168f28902", "media": "photo", "latitude": "0", "id": "233070277", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:01:29", "license": "1", "title": "Not a buddhist", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/233071540_2c6a9449be_o.jpg", "secret": "2c6a9449be", "media": "photo", "latitude": "0", "id": "233071540", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:02:19", "license": "1", "title": "Taking a twist into the game", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/233073995_d1a230eba0_o.jpg", "secret": "d1a230eba0", "media": "photo", "latitude": "0", "id": "233073995", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:02:19", "license": "1", "title": "MOVE!", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/233072787_b758f7b9a5_o.jpg", "secret": "b758f7b9a5", "media": "photo", "latitude": "0", "id": "233072787", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:02:35", "license": "1", "title": "Smoke that shit", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/233074977_cc4164bd1c_o.jpg", "secret": "cc4164bd1c", "media": "photo", "latitude": "0", "id": "233074977", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:02:53", "license": "1", "title": "Handstand", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/93/233078343_976cdc1b16_o.jpg", "secret": "976cdc1b16", "media": "photo", "latitude": "0", "id": "233078343", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:02:53", "license": "1", "title": "Raising the roof", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/233076307_ce718dcd45_o.jpg", "secret": "ce718dcd45", "media": "photo", "latitude": "0", "id": "233076307", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:03:19", "license": "1", "title": "Buff", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/233079887_db56c13bea_o.jpg", "secret": "db56c13bea", "media": "photo", "latitude": "0", "id": "233079887", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:03:58", "license": "1", "title": "Mortal Kombat 2006", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/233081204_cc47c5f1ba_o.jpg", "secret": "cc47c5f1ba", "media": "photo", "latitude": "0", "id": "233081204", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:04:20", "license": "1", "title": "Headstand kid", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/233082739_33745844b0_o.jpg", "secret": "33745844b0", "media": "photo", "latitude": "0", "id": "233082739", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:05:04", "license": "1", "title": "The robot, pt 0", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/233084255_3ea10ce122_o.jpg", "secret": "3ea10ce122", "media": "photo", "latitude": "0", "id": "233084255", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:05:05", "license": "1", "title": "The robot, pt 1", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/233085853_ba2831ddfd_o.jpg", "secret": "ba2831ddfd", "media": "photo", "latitude": "0", "id": "233085853", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:05:06", "license": "1", "title": "The robot, pt2", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/233087162_26cd135339_o.jpg", "secret": "26cd135339", "media": "photo", "latitude": "0", "id": "233087162", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:05:07", "license": "1", "title": "The robot, pt 3", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/233088460_776e4d57f1_o.jpg", "secret": "776e4d57f1", "media": "photo", "latitude": "0", "id": "233088460", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:05:08", "license": "1", "title": "The robot, pt 4", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/233089840_82a5cc067f_o.jpg", "secret": "82a5cc067f", "media": "photo", "latitude": "0", "id": "233089840", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:05:09", "license": "1", "title": "The robot, pt 5", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/233091148_76b1d97b81_o.jpg", "secret": "76b1d97b81", "media": "photo", "latitude": "0", "id": "233091148", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:05:26", "license": "1", "title": "Lollerz", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/233092961_ea1a7ccaf1_o.jpg", "secret": "ea1a7ccaf1", "media": "photo", "latitude": "0", "id": "233092961", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:05:35", "license": "1", "title": "Gunitic", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/233094486_7fa174058f_o.jpg", "secret": "7fa174058f", "media": "photo", "latitude": "0", "id": "233094486", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 16:20:54", "license": "1", "title": "Bankos in tha house", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/233096321_9ad6709402_o.jpg", "secret": "9ad6709402", "media": "photo", "latitude": "0", "id": "233096321", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 17:50:31", "license": "1", "title": "Armani bastard", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/233097917_bec661eab5_o.jpg", "secret": "bec661eab5", "media": "photo", "latitude": "0", "id": "233097917", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 17:51:45", "license": "1", "title": "One wheel", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/233100537_8405e346d0_o.jpg", "secret": "8405e346d0", "media": "photo", "latitude": "0", "id": "233100537", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 17:52:07", "license": "1", "title": "Tuff up, dude, you gotta need it", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/233099153_7cdb7cae21_o.jpg", "secret": "7cdb7cae21", "media": "photo", "latitude": "0", "id": "233099153", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 17:53:53", "license": "1", "title": "Whatcha got there, dude?", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/233106216_82b8b402fe_o.jpg", "secret": "82b8b402fe", "media": "photo", "latitude": "0", "id": "233106216", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 17:55:39", "license": "1", "title": "Stance", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/233105172_13f1204be7_o.jpg", "secret": "13f1204be7", "media": "photo", "latitude": "0", "id": "233105172", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 17:56:36", "license": "1", "title": "Making a move", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/233103860_ecba7ebd1e_o.jpg", "secret": "ecba7ebd1e", "media": "photo", "latitude": "0", "id": "233103860", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 18:04:49", "license": "1", "title": "Bicycle race", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/233102672_d9a8598800_o.jpg", "secret": "d9a8598800", "media": "photo", "latitude": "0", "id": "233102672", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 18:05:57", "license": "1", "title": "Trickin", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/233107295_f194d5fb30_o.jpg", "secret": "f194d5fb30", "media": "photo", "latitude": "0", "id": "233107295", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 18:14:54", "license": "1", "title": "PSP tits", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/233110440_e9f080724b_o.jpg", "secret": "e9f080724b", "media": "photo", "latitude": "0", "id": "233110440", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 19:26:57", "license": "1", "title": "Walls of fire", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/233112188_af30977000_o.jpg", "secret": "af30977000", "media": "photo", "latitude": "0", "id": "233112188", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-02 20:44:21", "license": "1", "title": "Zero/Hero", "text": "", "album_id": "72157594267140001", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/233121783_5c7353d16a_o.jpg", "secret": "5c7353d16a", "media": "photo", "latitude": "0", "id": "233121783", "tags": "camera city sport d50 nikon bmx break budapest games center event skateboard hiphop dslr offline westend osg osg7"}, {"datetaken": "2006-09-10 20:30:36", "license": "4", "title": "Fred Armisen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/240569242_09d20092d8_o.jpg", "secret": "09d20092d8", "media": "photo", "latitude": "0", "id": "240569242", "tags": "websterhall fredarmisen"}, {"datetaken": "2006-09-10 21:13:53", "license": "4", "title": "Simon Dawes & Fred Armisen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/240569284_ce80354cd1_o.jpg", "secret": "ce80354cd1", "media": "photo", "latitude": "0", "id": "240569284", "tags": "websterhall simondawes"}, {"datetaken": "2006-09-10 21:26:28", "license": "4", "title": "Simon Dawes & Fred Armisen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/240569406_50b0eb1df8_o.jpg", "secret": "50b0eb1df8", "media": "photo", "latitude": "0", "id": "240569406", "tags": "websterhall fredarmisen simondawes"}, {"datetaken": "2006-09-10 21:26:39", "license": "4", "title": "Simon Dawes & Fred Armisen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/240569557_4cce992b7b_o.jpg", "secret": "4cce992b7b", "media": "photo", "latitude": "0", "id": "240569557", "tags": "websterhall fredarmisen simondawes"}, {"datetaken": "2006-09-10 21:26:46", "license": "4", "title": "Simon Dawes @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/240569666_635e04707f_o.jpg", "secret": "635e04707f", "media": "photo", "latitude": "0", "id": "240569666", "tags": "websterhall simondawes"}, {"datetaken": "2006-09-10 21:27:07", "license": "4", "title": "Simon Dawes & Fred Armisen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/240569810_c395af0cef_o.jpg", "secret": "c395af0cef", "media": "photo", "latitude": "0", "id": "240569810", "tags": "websterhall fredarmisen simondawes"}, {"datetaken": "2006-09-10 21:28:37", "license": "4", "title": "Simon Dawes @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/240569946_3dd81f48d0_o.jpg", "secret": "3dd81f48d0", "media": "photo", "latitude": "0", "id": "240569946", "tags": "websterhall simondawes"}, {"datetaken": "2006-09-10 21:28:56", "license": "4", "title": "Simon Dawes @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/240570078_e8a9c602d2_o.jpg", "secret": "e8a9c602d2", "media": "photo", "latitude": "0", "id": "240570078", "tags": "websterhall simondawes"}, {"datetaken": "2006-09-10 21:40:16", "license": "4", "title": "Chad VanGaalen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/240570153_2e43698a23_o.jpg", "secret": "2e43698a23", "media": "photo", "latitude": "0", "id": "240570153", "tags": "websterhall chadvangaalen"}, {"datetaken": "2006-09-10 21:40:23", "license": "4", "title": "Chad VanGaalen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/240570244_ae3299b494_o.jpg", "secret": "ae3299b494", "media": "photo", "latitude": "0", "id": "240570244", "tags": "websterhall chadvangaalen"}, {"datetaken": "2006-09-10 21:40:33", "license": "4", "title": "Chad VanGaalen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/240570382_622687e6df_o.jpg", "secret": "622687e6df", "media": "photo", "latitude": "0", "id": "240570382", "tags": "websterhall chadvangaalen"}, {"datetaken": "2006-09-10 21:48:50", "license": "4", "title": "Chad VanGaalen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/240570462_aa8ae6beb9_o.jpg", "secret": "aa8ae6beb9", "media": "photo", "latitude": "0", "id": "240570462", "tags": "websterhall chadvangaalen"}, {"datetaken": "2006-09-10 21:48:58", "license": "4", "title": "Chad VanGaalen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/240570535_0336ec1cc0_o.jpg", "secret": "0336ec1cc0", "media": "photo", "latitude": "0", "id": "240570535", "tags": "websterhall chadvangaalen"}, {"datetaken": "2006-09-10 21:49:09", "license": "4", "title": "Chad VanGaalen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/240570652_985cce8504_o.jpg", "secret": "985cce8504", "media": "photo", "latitude": "0", "id": "240570652", "tags": "websterhall chadvangaalen"}, {"datetaken": "2006-09-10 21:50:20", "license": "4", "title": "Chad VanGaalen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/240570741_111f8d5367_o.jpg", "secret": "111f8d5367", "media": "photo", "latitude": "0", "id": "240570741", "tags": "websterhall chadvangaalen"}, {"datetaken": "2006-09-10 21:50:28", "license": "4", "title": "Chad VanGaalen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/240570922_e3a59671f4_o.jpg", "secret": "e3a59671f4", "media": "photo", "latitude": "0", "id": "240570922", "tags": "websterhall chadvangaalen"}, {"datetaken": "2006-09-10 21:53:12", "license": "4", "title": "Chad VanGaalen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/240571014_83966fb994_o.jpg", "secret": "83966fb994", "media": "photo", "latitude": "0", "id": "240571014", "tags": "websterhall chadvangaalen"}, {"datetaken": "2006-09-10 21:53:16", "license": "4", "title": "Chad VanGaalen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/240571120_47becf9d98_o.jpg", "secret": "47becf9d98", "media": "photo", "latitude": "0", "id": "240571120", "tags": "websterhall chadvangaalen"}, {"datetaken": "2006-09-10 21:56:44", "license": "4", "title": "Chad VanGaalen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/93/240571299_1a78ae1a2d_o.jpg", "secret": "1a78ae1a2d", "media": "photo", "latitude": "0", "id": "240571299", "tags": "websterhall chadvangaalen"}, {"datetaken": "2006-09-10 22:06:09", "license": "4", "title": "Chad VanGaalen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/240571387_8053f7369b_o.jpg", "secret": "8053f7369b", "media": "photo", "latitude": "0", "id": "240571387", "tags": "websterhall chadvangaalen"}, {"datetaken": "2006-09-10 22:06:17", "license": "4", "title": "Chad VanGaalen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/240571448_1519f8cdab_o.jpg", "secret": "1519f8cdab", "media": "photo", "latitude": "0", "id": "240571448", "tags": "websterhall chadvangaalen"}, {"datetaken": "2006-09-10 22:06:28", "license": "4", "title": "Chad VanGaalen @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/240571565_a5f9eba376_o.jpg", "secret": "a5f9eba376", "media": "photo", "latitude": "0", "id": "240571565", "tags": "websterhall chadvangaalen"}, {"datetaken": "2006-09-10 22:55:12", "license": "4", "title": "Band Of Horses @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/240571696_08616f3542_o.jpg", "secret": "08616f3542", "media": "photo", "latitude": "0", "id": "240571696", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 22:55:53", "license": "4", "title": "Band Of Horses @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/240571763_bfa1aa1ab2_o.jpg", "secret": "bfa1aa1ab2", "media": "photo", "latitude": "0", "id": "240571763", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 22:56:09", "license": "4", "title": "Band Of Horses @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/240571868_65a96fd89d_o.jpg", "secret": "65a96fd89d", "media": "photo", "latitude": "0", "id": "240571868", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:10:49", "license": "4", "title": "round of shots for the band!", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/240571975_2d5ed45ae3_o.jpg", "secret": "2d5ed45ae3", "media": "photo", "latitude": "0", "id": "240571975", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:11:02", "license": "4", "title": "actually taking the shots", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/240572120_5dc35534dc_o.jpg", "secret": "5dc35534dc", "media": "photo", "latitude": "0", "id": "240572120", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:23:52", "license": "4", "title": "Band Of Horses @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/240572249_35d8003517_o.jpg", "secret": "35d8003517", "media": "photo", "latitude": "0", "id": "240572249", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:25:35", "license": "4", "title": "Band Of Horses @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/240572353_77c02613e4_o.jpg", "secret": "77c02613e4", "media": "photo", "latitude": "0", "id": "240572353", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:27:47", "license": "4", "title": "Band Of Horses @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/240572479_80ad14ba30_o.jpg", "secret": "80ad14ba30", "media": "photo", "latitude": "0", "id": "240572479", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:28:04", "license": "4", "title": "Band Of Horses @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/240572627_8018c49239_o.jpg", "secret": "8018c49239", "media": "photo", "latitude": "0", "id": "240572627", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:28:58", "license": "4", "title": "Band Of Horses @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/240572746_5a8719e3b4_o.jpg", "secret": "5a8719e3b4", "media": "photo", "latitude": "0", "id": "240572746", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:30:40", "license": "4", "title": "Band Of Horses @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/240572832_e5c6944d8d_o.jpg", "secret": "e5c6944d8d", "media": "photo", "latitude": "0", "id": "240572832", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:42:16", "license": "4", "title": "mic stand @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/240572931_032095d955_o.jpg", "secret": "032095d955", "media": "photo", "latitude": "0", "id": "240572931", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:42:41", "license": "4", "title": "Mic Stand # 2 @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/240573061_e0ef717b19_o.jpg", "secret": "e0ef717b19", "media": "photo", "latitude": "0", "id": "240573061", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:44:05", "license": "4", "title": "Band Of Horses @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/240573160_3e1027d64a_o.jpg", "secret": "3e1027d64a", "media": "photo", "latitude": "0", "id": "240573160", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:44:12", "license": "4", "title": "Band Of Horses @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/240573265_c6edc0bfe0_o.jpg", "secret": "c6edc0bfe0", "media": "photo", "latitude": "0", "id": "240573265", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:44:34", "license": "4", "title": "100_7419", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/240573391_28e3920d23_o.jpg", "secret": "28e3920d23", "media": "photo", "latitude": "0", "id": "240573391", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:47:46", "license": "4", "title": "Band Of Horses @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/240573466_8fa16cb8e7_o.jpg", "secret": "8fa16cb8e7", "media": "photo", "latitude": "0", "id": "240573466", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:48:19", "license": "4", "title": "Band Of Horses @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/240573569_897a805c8d_o.jpg", "secret": "897a805c8d", "media": "photo", "latitude": "0", "id": "240573569", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:48:27", "license": "4", "title": "Band Of Horses @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/240573684_e10bf8076e_o.jpg", "secret": "e10bf8076e", "media": "photo", "latitude": "0", "id": "240573684", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:50:48", "license": "4", "title": "Band Of Horses @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/240573784_a4439c37ef_o.jpg", "secret": "a4439c37ef", "media": "photo", "latitude": "0", "id": "240573784", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:50:56", "license": "4", "title": "Band Of Horses @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/240573900_6fffd4cd36_o.jpg", "secret": "6fffd4cd36", "media": "photo", "latitude": "0", "id": "240573900", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-10 23:51:10", "license": "4", "title": "Band Of Horses @ Webster", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/240573989_d35c0f83f7_o.jpg", "secret": "d35c0f83f7", "media": "photo", "latitude": "0", "id": "240573989", "tags": "websterhall bandofhorses"}, {"datetaken": "2006-09-11 01:31:49", "license": "4", "title": "band of horses setlist @ webster hall", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/240574208_f24c825921_o.jpg", "secret": "f24c825921", "media": "photo", "latitude": "0", "id": "240574208", "tags": "setlist websterhall bandofhorses"}, {"datetaken": "2006-09-11 01:32:52", "license": "4", "title": "\"signed\" chad vangaalen CD", "text": "", "album_id": "72157594279469584", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/240574106_45e7fd66fe_o.jpg", "secret": "45e7fd66fe", "media": "photo", "latitude": "0", "id": "240574106", "tags": "cd signed websterhall chadvangaalen"}, {"datetaken": "2006-10-14 15:17:35", "license": "2", "title": "Elizabeth Furnace in fall", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/119/279607098_01b238a50e_o.jpg", "secret": "01b238a50e", "media": "photo", "latitude": "38.946426", "id": "279607098", "tags": "sun leaves outdoors hiking flare elizabethfurnace"}, {"datetaken": "2006-10-14 15:22:44", "license": "2", "title": "Only Angel can prevent forest fires", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/94/279607097_7b9e9c94d0_o.jpg", "secret": "7b9e9c94d0", "media": "photo", "latitude": "38.946426", "id": "279607097", "tags": "signs angel outdoors hiking smokeythebear imitations elizabethfurnace onlyyoucanpreventforestfires"}, {"datetaken": "2006-10-14 15:25:35", "license": "2", "title": "The creek", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/83/279605838_683601b695_o.jpg", "secret": "683601b695", "media": "photo", "latitude": "38.946426", "id": "279605838", "tags": "water creek outdoors hiking elizabethfurnace"}, {"datetaken": "2006-10-14 15:30:34", "license": "2", "title": "Hitting the trail", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/90/279605835_73ed61e0b4_o.jpg", "secret": "73ed61e0b4", "media": "photo", "latitude": "38.946426", "id": "279605835", "tags": "angel outdoors hiking elizabethfurnace"}, {"datetaken": "2006-10-14 16:01:33", "license": "2", "title": "A breather", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/108/279605831_872e4a7c57_o.jpg", "secret": "872e4a7c57", "media": "photo", "latitude": "38.946426", "id": "279605831", "tags": "angel outdoors hiking elizabethfurnace"}, {"datetaken": "2006-10-14 16:01:55", "license": "2", "title": "angel & ian at elizabeth furnace", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/120/279605827_e90d99d496_o.jpg", "secret": "e90d99d496", "media": "photo", "latitude": "38.946426", "id": "279605827", "tags": "angel ian outdoors hiking awww elizabethfurnace"}, {"datetaken": "2006-10-14 16:03:50", "license": "2", "title": "Hungry?", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/114/279605825_4ff24c37e6_o.jpg", "secret": "4ff24c37e6", "media": "photo", "latitude": "38.946426", "id": "279605825", "tags": "ian outdoors hiking acorn elizabethfurnace"}, {"datetaken": "2006-10-14 16:04:43", "license": "2", "title": "Acorn A-OK", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/87/279605823_bba87b5c0f_o.jpg", "secret": "bba87b5c0f", "media": "photo", "latitude": "38.946426", "id": "279605823", "tags": "ian outdoors hiking acorn thumbsup elizabethfurnace"}, {"datetaken": "2006-10-14 16:06:38", "license": "2", "title": "Me and my shadow", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/112/279604526_0a1b0331f7_o.jpg", "secret": "0a1b0331f7", "media": "photo", "latitude": "38.946426", "id": "279604526", "tags": "shadow outdoors hiking elizabethfurnace"}, {"datetaken": "2006-10-14 16:09:06", "license": "2", "title": "Fall foliage with fireball", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/82/279604524_2a452f1db2_o.jpg", "secret": "2a452f1db2", "media": "photo", "latitude": "38.946426", "id": "279604524", "tags": "sun leaves outdoors hiking foliage flare elizabethfurnace"}, {"datetaken": "2006-10-14 16:10:56", "license": "2", "title": "Monument", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/79/279604520_a889141f4b_o.jpg", "secret": "a889141f4b", "media": "photo", "latitude": "38.946426", "id": "279604520", "tags": "sculpture outdoors hiking odd natureart elizabethfurnace"}, {"datetaken": "2006-10-14 17:12:14", "license": "2", "title": "A snack", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/83/279604518_8d300d48c9_o.jpg", "secret": "8d300d48c9", "media": "photo", "latitude": "38.946426", "id": "279604518", "tags": "outdoors hiking twinkie elizabethfurnace"}, {"datetaken": "2006-10-14 17:44:24", "license": "2", "title": "Pig iron", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/81/279604516_370ae6083a_o.jpg", "secret": "370ae6083a", "media": "photo", "latitude": "38.946426", "id": "279604516", "tags": "angel outdoors hiking furnace pigiron elizabethfurnace"}, {"datetaken": "2006-10-14 17:44:58", "license": "2", "title": "The actual furnace", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/84/279604515_8aae450ea9_o.jpg", "secret": "8aae450ea9", "media": "photo", "latitude": "38.946426", "id": "279604515", "tags": "outdoors hiking elizabethfurnace"}, {"datetaken": "2006-10-14 17:45:46", "license": "2", "title": "Iron drainage", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/109/279602294_32cce8dc27_o.jpg", "secret": "32cce8dc27", "media": "photo", "latitude": "38.946426", "id": "279602294", "tags": "outdoors hiking elizabethfurnace"}, {"datetaken": "2006-10-14 17:49:11", "license": "2", "title": "Furnace fence", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/89/279602293_ae6a5e5d5b_o.jpg", "secret": "ae6a5e5d5b", "media": "photo", "latitude": "38.946426", "id": "279602293", "tags": "outdoors hiking elizabethfurnace"}, {"datetaken": "2006-10-14 17:50:48", "license": "2", "title": "Autumn creek", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/120/279602291_920450febc_o.jpg", "secret": "920450febc", "media": "photo", "latitude": "38.946426", "id": "279602291", "tags": "water creek outdoors hiking elizabethfurnace"}, {"datetaken": "2006-10-14 17:55:51", "license": "2", "title": "Horshoes anyone?", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/120/279602290_70d4d0adc1_o.jpg", "secret": "70d4d0adc1", "media": "photo", "latitude": "38.946426", "id": "279602290", "tags": "angel outdoors hiking horseshoes sandpit elizabethfurnace"}, {"datetaken": "2006-10-14 17:57:26", "license": "2", "title": "Under the bridge", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/82/279602289_cb6e010c57_o.jpg", "secret": "cb6e010c57", "media": "photo", "latitude": "38.946426", "id": "279602289", "tags": "bridge outdoors hiking elizabethfurnace"}, {"datetaken": "2006-10-14 17:58:01", "license": "2", "title": "Downstream", "text": "", "album_id": "72157594345357482", "longitude": "-78.302907", "url_o": "https://farm1.staticflickr.com/93/279602288_849f058ccb_o.jpg", "secret": "849f058ccb", "media": "photo", "latitude": "38.946426", "id": "279602288", "tags": "outdoors hiking elizabethfurnace"}, {"datetaken": "2006-11-06 22:47:54", "license": "1", "title": "opener: do make say think", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/104/299268397_8e2cc67c5d_o.jpg", "secret": "8e2cc67c5d", "media": "photo", "latitude": "0", "id": "299268397", "tags": "concert sonar baltimoremd domakesaythink"}, {"datetaken": "2006-11-06 22:50:22", "license": "1", "title": "opener: do make say think", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/104/299268374_003dafe109_o.jpg", "secret": "003dafe109", "media": "photo", "latitude": "0", "id": "299268374", "tags": "concert sonar baltimoremd domakesaythink"}, {"datetaken": "2006-11-06 22:50:33", "license": "1", "title": "opener: do make say think", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/110/299268295_0b6fb8519f_o.jpg", "secret": "0b6fb8519f", "media": "photo", "latitude": "0", "id": "299268295", "tags": "concert sonar baltimoremd domakesaythink"}, {"datetaken": "2006-11-06 22:50:33", "license": "1", "title": "opener: do make say think", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/118/299268238_ac3c8726f7_o.jpg", "secret": "ac3c8726f7", "media": "photo", "latitude": "0", "id": "299268238", "tags": "concert sonar baltimoremd domakesaythink"}, {"datetaken": "2006-11-06 23:27:01", "license": "1", "title": "spotlight", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/122/299268200_25103d1119_o.jpg", "secret": "25103d1119", "media": "photo", "latitude": "0", "id": "299268200", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:39:20", "license": "1", "title": "red lights through the crowd", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/299268088_197d68cb80_o.jpg", "secret": "197d68cb80", "media": "photo", "latitude": "0", "id": "299268088", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:40:03", "license": "1", "title": "a fuzzy picture of a blurry picture", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/104/299268053_376d8ea35c_o.jpg", "secret": "376d8ea35c", "media": "photo", "latitude": "0", "id": "299268053", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:40:15", "license": "1", "title": "clap", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/113/299267998_854513f1b8_o.jpg", "secret": "854513f1b8", "media": "photo", "latitude": "0", "id": "299267998", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:41:40", "license": "1", "title": "colorful lights", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/112/299267965_44d82eb196_o.jpg", "secret": "44d82eb196", "media": "photo", "latitude": "0", "id": "299267965", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:41:55", "license": "1", "title": "colorful lights", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/113/299267876_45832e87b0_o.jpg", "secret": "45832e87b0", "media": "photo", "latitude": "0", "id": "299267876", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:42:57", "license": "1", "title": "guy on right has two faces, both are relatively in focus somehow", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/115/299267819_a51eb4f1f2_o.jpg", "secret": "a51eb4f1f2", "media": "photo", "latitude": "0", "id": "299267819", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:43:00", "license": "1", "title": "picture that sums up this dude pretty well", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/110/299267765_320dc0ed78_o.jpg", "secret": "320dc0ed78", "media": "photo", "latitude": "0", "id": "299267765", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:43:34", "license": "1", "title": "the brass section", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/119/299267660_5f0a366212_o.jpg", "secret": "5f0a366212", "media": "photo", "latitude": "0", "id": "299267660", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:47:51", "license": "1", "title": "mustachioed man drumming a pretzel barrel, held by a wolf", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/120/299267621_ab818f7e2b_o.jpg", "secret": "ab818f7e2b", "media": "photo", "latitude": "0", "id": "299267621", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:47:56", "license": "1", "title": "mustachioed man drumming a pretzel barrel, held by a wolf", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/100/299267578_d9b6de9a4c_o.jpg", "secret": "d9b6de9a4c", "media": "photo", "latitude": "0", "id": "299267578", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:47:57", "license": "1", "title": "mustachioed man drumming a pretzel barrel, held by a wolf", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/122/299267536_01f9a4f654_o.jpg", "secret": "01f9a4f654", "media": "photo", "latitude": "0", "id": "299267536", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:47:59", "license": "1", "title": "mustachioed man drumming a pretzel barrel, held by a wolf", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/108/299267508_7f438e0614_o.jpg", "secret": "7f438e0614", "media": "photo", "latitude": "0", "id": "299267508", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:48:02", "license": "1", "title": "mustachioed man drumming a pretzel barrel, held by a wolf", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/121/299267468_3b5b98cbba_o.jpg", "secret": "3b5b98cbba", "media": "photo", "latitude": "0", "id": "299267468", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:56:51", "license": "1", "title": "red lights, red heads", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/102/299267433_070b49e2a7_o.jpg", "secret": "070b49e2a7", "media": "photo", "latitude": "0", "id": "299267433", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:56:53", "license": "1", "title": "blue square", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/100/299267390_4cf9c06856_o.jpg", "secret": "4cf9c06856", "media": "photo", "latitude": "0", "id": "299267390", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:56:55", "license": "1", "title": "big red on left, big head on right", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/118/299267349_68f3bcfde8_o.jpg", "secret": "68f3bcfde8", "media": "photo", "latitude": "0", "id": "299267349", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:57:11", "license": "1", "title": "hair tunnel", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/116/299267319_80ebcdfc64_o.jpg", "secret": "80ebcdfc64", "media": "photo", "latitude": "0", "id": "299267319", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:57:18", "license": "1", "title": "three red lights", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/120/299267291_d53ac50564_o.jpg", "secret": "d53ac50564", "media": "photo", "latitude": "0", "id": "299267291", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-06 23:58:18", "license": "1", "title": "two white lights", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/117/299267255_8891956188_o.jpg", "secret": "8891956188", "media": "photo", "latitude": "0", "id": "299267255", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-07 00:20:44", "license": "1", "title": "you used to be one of the rotten ones, and i liked you for that", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/101/299267215_83be3dd9f3_o.jpg", "secret": "83be3dd9f3", "media": "photo", "latitude": "0", "id": "299267215", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-07 01:24:35", "license": "1", "title": "just standing around", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/100/299267151_baecf92cc1_o.jpg", "secret": "baecf92cc1", "media": "photo", "latitude": "0", "id": "299267151", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-07 01:24:40", "license": "1", "title": "bluish green", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/101/299267125_48c53c9415_o.jpg", "secret": "48c53c9415", "media": "photo", "latitude": "0", "id": "299267125", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-07 01:24:41", "license": "1", "title": "greenish blue", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/101/299267079_d98d984dbe_o.jpg", "secret": "d98d984dbe", "media": "photo", "latitude": "0", "id": "299267079", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-07 01:24:44", "license": "1", "title": "guy on right rocks out", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/122/299267026_c3732c9dd5_o.jpg", "secret": "c3732c9dd5", "media": "photo", "latitude": "0", "id": "299267026", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-07 01:24:49", "license": "1", "title": "greenish blue", "text": "", "album_id": "72157594379665028", "longitude": "0", "url_o": "https://farm1.staticflickr.com/108/299266954_4deff677cf_o.jpg", "secret": "4deff677cf", "media": "photo", "latitude": "0", "id": "299266954", "tags": "concert sonar brokensocialscene baltimoremd"}, {"datetaken": "2006-11-05 08:37:25", "license": "4", "title": "Mountains", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/102/291667450_4f8781294f_o.jpg", "secret": "4f8781294f", "media": "photo", "latitude": "0", "id": "291667450", "tags": "hike banff cscw tunnelmountain"}, {"datetaken": "2006-11-05 09:19:23", "license": "4", "title": "Hikers", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/101/291667456_f995962d4a_o.jpg", "secret": "f995962d4a", "media": "photo", "latitude": "0", "id": "291667456", "tags": "hike banff cscw tunnelmountain"}, {"datetaken": "2006-11-05 09:40:34", "license": "4", "title": "Tunnel Mountain Hike", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/107/291667464_bee0ce9e09_o.jpg", "secret": "bee0ce9e09", "media": "photo", "latitude": "0", "id": "291667464", "tags": "hike banff cscw tunnelmountain"}, {"datetaken": "2006-11-05 09:40:45", "license": "4", "title": "Tunnel Mountain Hike", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/105/291667478_4c5901bfc5_o.jpg", "secret": "4c5901bfc5", "media": "photo", "latitude": "0", "id": "291667478", "tags": "hike banff cscw tunnelmountain"}, {"datetaken": "2006-11-05 09:42:18", "license": "4", "title": "Fault Line", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/100/291667480_dd872cbbc6_o.jpg", "secret": "dd872cbbc6", "media": "photo", "latitude": "0", "id": "291667480", "tags": "hike banff cscw tunnelmountain"}, {"datetaken": "2006-11-05 09:44:28", "license": "4", "title": "Mountain View", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/110/291667486_09778b6ac4_o.jpg", "secret": "09778b6ac4", "media": "photo", "latitude": "0", "id": "291667486", "tags": "hike banff cscw tunnelmountain"}, {"datetaken": "2006-11-05 09:44:37", "license": "4", "title": "Mountain View", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/118/291669944_de6b70ddb1_o.jpg", "secret": "de6b70ddb1", "media": "photo", "latitude": "0", "id": "291669944", "tags": "hike banff cscw tunnelmountain"}, {"datetaken": "2006-11-05 09:45:14", "license": "4", "title": "Alex", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/121/291669950_d3252e6ed2_o.jpg", "secret": "d3252e6ed2", "media": "photo", "latitude": "0", "id": "291669950", "tags": "hike banff cscw tunnelmountain"}, {"datetaken": "2006-11-05 09:46:54", "license": "4", "title": "Cliffside Trees", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/110/291669955_bec146748a_o.jpg", "secret": "bec146748a", "media": "photo", "latitude": "0", "id": "291669955", "tags": "hike banff cscw tunnelmountain"}, {"datetaken": "2006-11-05 09:49:51", "license": "4", "title": "Alex and Chris", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/110/291669961_a9df668337_o.jpg", "secret": "a9df668337", "media": "photo", "latitude": "0", "id": "291669961", "tags": "hike banff cscw tunnelmountain"}, {"datetaken": "2006-11-05 09:50:45", "license": "4", "title": "Mountains and Clouds", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/291669964_22c2e72b88_o.jpg", "secret": "22c2e72b88", "media": "photo", "latitude": "0", "id": "291669964", "tags": "hike banff cscw tunnelmountain"}, {"datetaken": "2006-11-05 09:50:56", "license": "4", "title": "Mountains and Clouds", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/111/291669969_773e9a1cd1_o.jpg", "secret": "773e9a1cd1", "media": "photo", "latitude": "0", "id": "291669969", "tags": "hike banff cscw tunnelmountain"}, {"datetaken": "2006-11-05 09:58:12", "license": "4", "title": "Mountain, Clouds, and Sun", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/117/291672822_0e3ce21158_o.jpg", "secret": "0e3ce21158", "media": "photo", "latitude": "0", "id": "291672822", "tags": "hike banff cscw tunnelmountain"}, {"datetaken": "2006-11-05 10:02:13", "license": "4", "title": "Alex and Snow Cairn", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/102/291672825_c4e6704a6a_o.jpg", "secret": "c4e6704a6a", "media": "photo", "latitude": "0", "id": "291672825", "tags": "hike banff cscw tunnelmountain"}, {"datetaken": "2006-11-05 10:06:15", "license": "4", "title": "Hikers", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/102/291672829_a183a145c5_o.jpg", "secret": "a183a145c5", "media": "photo", "latitude": "0", "id": "291672829", "tags": "hike banff cscw tunnelmountain"}, {"datetaken": "2006-11-05 10:07:28", "license": "4", "title": "Hikers", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/100/291672833_949aa5c372_o.jpg", "secret": "949aa5c372", "media": "photo", "latitude": "0", "id": "291672833", "tags": "hike banff cscw tunnelmountain"}, {"datetaken": "2006-11-05 10:10:30", "license": "4", "title": "Alex", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/108/291672836_150c03c4f1_o.jpg", "secret": "150c03c4f1", "media": "photo", "latitude": "0", "id": "291672836", "tags": "hike banff cscw tunnelmountain"}, {"datetaken": "2006-11-05 15:06:19", "license": "4", "title": "Lake Louise outflow", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/114/291672840_0645bbfbf1_o.jpg", "secret": "0645bbfbf1", "media": "photo", "latitude": "0", "id": "291672840", "tags": "lakelouise cscw"}, {"datetaken": "2006-11-05 15:08:41", "license": "4", "title": "Lake Louise", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/106/291685919_c895a3704c_o.jpg", "secret": "c895a3704c", "media": "photo", "latitude": "0", "id": "291685919", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:10:23", "license": "4", "title": "Chris at Lake Louise", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/291685925_395c898c29_o.jpg", "secret": "395c898c29", "media": "photo", "latitude": "0", "id": "291685925", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:12:07", "license": "4", "title": "Mountains and Clouds", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/105/291685932_aff652a8a5_o.jpg", "secret": "aff652a8a5", "media": "photo", "latitude": "0", "id": "291685932", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:15:56", "license": "4", "title": "Lake Louise", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/108/291685938_bd26b458c2_o.jpg", "secret": "bd26b458c2", "media": "photo", "latitude": "0", "id": "291685938", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:19:59", "license": "4", "title": "Lake Louise", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/106/291685945_476c766f19_o.jpg", "secret": "476c766f19", "media": "photo", "latitude": "0", "id": "291685945", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:21:16", "license": "4", "title": "More snow tonality", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/105/291685949_0b9662406b_o.jpg", "secret": "0b9662406b", "media": "photo", "latitude": "0", "id": "291685949", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:24:13", "license": "4", "title": "Lake Louise", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/120/292442387_27e50cd214_o.jpg", "secret": "27e50cd214", "media": "photo", "latitude": "0", "id": "292442387", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:27:47", "license": "4", "title": "Sunlight Shining", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/120/292442391_5c6daea6ec_o.jpg", "secret": "5c6daea6ec", "media": "photo", "latitude": "0", "id": "292442391", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:28:44", "license": "4", "title": "Mountain Stream", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/117/292442394_f9ce8dc70e_o.jpg", "secret": "f9ce8dc70e", "media": "photo", "latitude": "0", "id": "292442394", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:30:31", "license": "4", "title": "Tree Moss", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/101/292442399_2258f68ef4_o.jpg", "secret": "2258f68ef4", "media": "photo", "latitude": "0", "id": "292442399", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:31:49", "license": "4", "title": "Lake Louise Landslide Panorama", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/108/291680495_40a20918e5_o.jpg", "secret": "40a20918e5", "media": "photo", "latitude": "0", "id": "291680495", "tags": "lake pano louise banff cscw"}, {"datetaken": "2006-11-05 15:31:51", "license": "4", "title": "Lake Louise Landslide Panorama", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/104/291680499_2df7ddfbcf_o.jpg", "secret": "2df7ddfbcf", "media": "photo", "latitude": "0", "id": "291680499", "tags": "lake pano louise banff cscw"}, {"datetaken": "2006-11-05 15:31:54", "license": "4", "title": "Lake Louise Landslide Panorama", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/106/291680501_a636df9b51_o.jpg", "secret": "a636df9b51", "media": "photo", "latitude": "0", "id": "291680501", "tags": "lake pano louise banff cscw"}, {"datetaken": "2006-11-05 15:33:05", "license": "4", "title": "Lake and Rocks", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/107/292442400_faca3066bd_o.jpg", "secret": "faca3066bd", "media": "photo", "latitude": "0", "id": "292442400", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:34:58", "license": "4", "title": "Birds", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/105/292442404_3dea89e0b7_o.jpg", "secret": "3dea89e0b7", "media": "photo", "latitude": "0", "id": "292442404", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:36:49", "license": "4", "title": "Snow plants", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/108/292445209_b55fe5aecb_o.jpg", "secret": "b55fe5aecb", "media": "photo", "latitude": "0", "id": "292445209", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:37:55", "license": "4", "title": "Mountain Fog", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/122/292445211_4bc780856d_o.jpg", "secret": "4bc780856d", "media": "photo", "latitude": "0", "id": "292445211", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:39:47", "license": "4", "title": "Clouds Rolling in", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/113/292445217_93e6f350cc_o.jpg", "secret": "93e6f350cc", "media": "photo", "latitude": "0", "id": "292445217", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:43:38", "license": "4", "title": "Mountains", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/111/292445220_90e856f02b_o.jpg", "secret": "90e856f02b", "media": "photo", "latitude": "0", "id": "292445220", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:46:28", "license": "4", "title": "Cliffs at Lake Louise", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/292445223_b4d755ad62_o.jpg", "secret": "b4d755ad62", "media": "photo", "latitude": "0", "id": "292445223", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:47:18", "license": "4", "title": "Ice on Lake Louise", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/122/292445225_481c99cbe1_o.jpg", "secret": "481c99cbe1", "media": "photo", "latitude": "0", "id": "292445225", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:47:36", "license": "4", "title": "Lake Louise Cliffs", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/113/292447674_70ba46b362_o.jpg", "secret": "70ba46b362", "media": "photo", "latitude": "0", "id": "292447674", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:48:54", "license": "4", "title": "Lake Louise Waterfall", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/103/292447677_bc89387ac1_o.jpg", "secret": "bc89387ac1", "media": "photo", "latitude": "0", "id": "292447677", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:49:03", "license": "4", "title": "More Mountains", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/292447685_ebe5fb1a28_o.jpg", "secret": "ebe5fb1a28", "media": "photo", "latitude": "0", "id": "292447685", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:51:59", "license": "4", "title": "Break it, Buy it.", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/107/292447692_ed77c4af9c_o.jpg", "secret": "ed77c4af9c", "media": "photo", "latitude": "0", "id": "292447692", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:52:58", "license": "4", "title": "Ice Floes", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/104/292447700_5d8f96db03_o.jpg", "secret": "5d8f96db03", "media": "photo", "latitude": "0", "id": "292447700", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:53:37", "license": "4", "title": "Chris at the head of the lake", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/117/292447706_06f3719a74_o.jpg", "secret": "06f3719a74", "media": "photo", "latitude": "0", "id": "292447706", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:54:22", "license": "4", "title": "Cliff Cracks", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/101/292454166_9b92d4f1a8_o.jpg", "secret": "9b92d4f1a8", "media": "photo", "latitude": "0", "id": "292454166", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 15:58:46", "license": "4", "title": "Lake and Ice", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/292454168_09f14f6fe1_o.jpg", "secret": "09f14f6fe1", "media": "photo", "latitude": "0", "id": "292454168", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 16:03:49", "license": "4", "title": "Tree and rain", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/292454169_ce5c4ba018_o.jpg", "secret": "ce5c4ba018", "media": "photo", "latitude": "0", "id": "292454169", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-05 16:23:41", "license": "4", "title": "Lake Louise, Nightfall", "text": "", "album_id": "72157594366762375", "longitude": "0", "url_o": "https://farm1.staticflickr.com/109/292454174_eaf35d33fa_o.jpg", "secret": "eaf35d33fa", "media": "photo", "latitude": "0", "id": "292454174", "tags": "lake louise banff cscw"}, {"datetaken": "2006-11-26 19:35:55", "license": "3", "title": "Riverside Park", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/99/306880443_67e29de08f_o.jpg", "secret": "67e29de08f", "media": "photo", "latitude": "40.832125", "id": "306880443", "tags": "park nyc newyorkcity autumn usa ny newyork fall riverside manhattan stonework upperwestside hudsonriver washingtonheights hamiltonheights"}, {"datetaken": "2006-11-26 19:36:05", "license": "3", "title": "Bizarre", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/117/306880787_f080707d8c_o.jpg", "secret": "f080707d8c", "media": "photo", "latitude": "40.832125", "id": "306880787", "tags": "nyc newyorkcity autumn usa ny newyork fall riverside manhattan stonework upperwestside hudsonriver washingtonheights hamiltonheights"}, {"datetaken": "2006-11-26 19:36:16", "license": "3", "title": "Lovely Fall in Riverside Park", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/105/306881180_b4e4beab67_o.jpg", "secret": "b4e4beab67", "media": "photo", "latitude": "40.832125", "id": "306881180", "tags": "park nyc newyorkcity autumn usa ny newyork fall riverside manhattan upperwestside hudsonriver washingtonheights hamiltonheights"}, {"datetaken": "2006-11-26 19:37:00", "license": "3", "title": "Angles", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/122/306881567_5a53b68b7a_o.jpg", "secret": "5a53b68b7a", "media": "photo", "latitude": "40.832125", "id": "306881567", "tags": "nyc newyorkcity autumn usa ny newyork fall riverside manhattan upperwestside hudsonriver washingtonheights hamiltonheights"}, {"datetaken": "2006-11-26 19:37:17", "license": "3", "title": "Park Walk", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/99/306881930_59d8915dec_o.jpg", "secret": "59d8915dec", "media": "photo", "latitude": "40.832125", "id": "306881930", "tags": "newyork newyorkcity manhattan hamiltonheights riverside hudsonriver washingtonheights upperwestside fall autumn ny nyc usa"}, {"datetaken": "2006-11-26 19:37:59", "license": "3", "title": "Tricycle", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/99/306882307_9f92f8a8c5_o.jpg", "secret": "9f92f8a8c5", "media": "photo", "latitude": "40.832125", "id": "306882307", "tags": "nyc newyorkcity autumn usa ny newyork tree fall bicycle funny riverside manhattan upperwestside hudsonriver washingtonheights hamiltonheights"}, {"datetaken": "2006-11-26 19:41:22", "license": "3", "title": "Upper New York", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/108/306882653_aff255aa57_o.jpg", "secret": "aff255aa57", "media": "photo", "latitude": "40.832125", "id": "306882653", "tags": "nyc newyorkcity bridge autumn usa ny newyork fall riverside manhattan upperwestside hudsonriver georgewashington gw washingtonheights hamiltonheights"}, {"datetaken": "2006-11-26 19:41:39", "license": "3", "title": "GW Bridge", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/104/306882950_4ac0d41997_o.jpg", "secret": "4ac0d41997", "media": "photo", "latitude": "40.832125", "id": "306882950", "tags": "nyc newyorkcity bridge autumn usa ny newyork fall riverside manhattan upperwestside hudsonriver georgewashington gw washingtonheights hamiltonheights"}, {"datetaken": "2006-11-26 19:48:10", "license": "3", "title": "Into the Belly of the Concrete Beast", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/101/306883358_6d3c989fb4_o.jpg", "secret": "6d3c989fb4", "media": "photo", "latitude": "40.832125", "id": "306883358", "tags": "nyc newyorkcity autumn usa ny newyork fall riverside manhattan tunnel upperwestside hudsonriver washingtonheights hamiltonheights"}, {"datetaken": "2006-11-26 19:51:28", "license": "3", "title": "Fence Tracks", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/104/306883773_b3dad47ccd_o.jpg", "secret": "b3dad47ccd", "media": "photo", "latitude": "40.832125", "id": "306883773", "tags": "nyc newyorkcity railroad autumn usa ny newyork fall riverside manhattan tracks upperwestside hudsonriver metronorth washingtonheights hamiltonheights"}, {"datetaken": "2006-11-26 19:51:41", "license": "3", "title": "Other Side of the Tracks", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/112/306884062_837065a9ca_o.jpg", "secret": "837065a9ca", "media": "photo", "latitude": "40.832125", "id": "306884062", "tags": "nyc newyorkcity railroad autumn usa ny newyork fall riverside manhattan tracks upperwestside hudsonriver metronorth washingtonheights hamiltonheights"}, {"datetaken": "2006-11-26 19:53:24", "license": "3", "title": "Law & Order", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/118/306884419_4250715d3e_o.jpg", "secret": "4250715d3e", "media": "photo", "latitude": "40.832125", "id": "306884419", "tags": "nyc newyorkcity autumn usa ny newyork fall riverside manhattan upperwestside hudsonriver washingtonheights hamiltonheights"}, {"datetaken": "2006-11-26 19:54:35", "license": "3", "title": "Unicycle!", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/99/306884556_b5ec15953b_o.jpg", "secret": "b5ec15953b", "media": "photo", "latitude": "40.832125", "id": "306884556", "tags": "nyc newyorkcity autumn usa ny newyork fall riverside manhattan unicycle upperwestside hudsonriver washingtonheights hamiltonheights"}, {"datetaken": "2006-11-26 20:05:38", "license": "3", "title": "Curves and Pillars", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/119/306884825_0c2030020d_o.jpg", "secret": "0c2030020d", "media": "photo", "latitude": "40.832125", "id": "306884825", "tags": "nyc newyorkcity autumn usa ny newyork fall riverside manhattan upperwestside hudsonriver washingtonheights hamiltonheights"}, {"datetaken": "2006-11-26 20:05:45", "license": "3", "title": "UNICYCLE!!", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/103/306885081_11c74ebbc4_o.jpg", "secret": "11c74ebbc4", "media": "photo", "latitude": "40.832125", "id": "306885081", "tags": "nyc newyorkcity autumn usa ny newyork fall riverside manhattan unicycle upperwestside hudsonriver washingtonheights hamiltonheights"}, {"datetaken": "2006-11-26 20:14:36", "license": "3", "title": "Awesome staircase", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/107/306885354_a22928318f_o.jpg", "secret": "a22928318f", "media": "photo", "latitude": "40.832125", "id": "306885354", "tags": "nyc newyorkcity autumn usa ny newyork fall riverside manhattan upperwestside hudsonriver washingtonheights hamiltonheights"}, {"datetaken": "2006-11-26 20:23:17", "license": "3", "title": "Robbery", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/99/306885675_22978fc7e3_o.jpg", "secret": "22978fc7e3", "media": "photo", "latitude": "40.832125", "id": "306885675", "tags": "nyc newyorkcity autumn usa ny newyork fall broken glass car riverside manhattan upperwestside hudsonriver robbery theft washingtonheights tempered hamiltonheights"}, {"datetaken": "2006-11-26 20:30:26", "license": "3", "title": "Juvenile Pigeon", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/117/306885903_22e5bd71ed_o.jpg", "secret": "22e5bd71ed", "media": "photo", "latitude": "40.832125", "id": "306885903", "tags": "nyc newyorkcity autumn usa ny newyork bird fall riverside manhattan pigeon upperwestside hudsonriver juvenile injured washingtonheights hamiltonheights"}, {"datetaken": "2006-11-26 20:32:07", "license": "3", "title": "Overpass", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/114/306886266_59f5b389e8_o.jpg", "secret": "59f5b389e8", "media": "photo", "latitude": "40.832125", "id": "306886266", "tags": "nyc newyorkcity autumn usa ny newyork fall riverside manhattan upperwestside hudsonriver washingtonheights hamiltonheights"}, {"datetaken": "2006-11-26 21:39:28", "license": "3", "title": "You've Been Served by J-Lo!", "text": "", "album_id": "72157594393064919", "longitude": "-73.951098", "url_o": "https://farm1.staticflickr.com/118/306886587_5eb182ecd1_o.jpg", "secret": "5eb182ecd1", "media": "photo", "latitude": "40.832125", "id": "306886587", "tags": "nyc newyorkcity autumn usa ny newyork fall funny riverside manhattan toast receipt upperwestside hudsonriver jlo washingtonheights hamiltonheights"}, {"datetaken": "2006-12-20 23:37:19", "license": "5", "title": "Stoli + Red Bull", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/332081717_cf8f803725_o.jpg", "secret": "cf8f803725", "media": "photo", "latitude": "0", "id": "332081717", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 00:24:20", "license": "5", "title": "da dj booth @ 5", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/332081777_9583cc2e74_o.jpg", "secret": "9583cc2e74", "media": "photo", "latitude": "0", "id": "332081777", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 00:27:48", "license": "5", "title": "that's what the rig looks like", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/332081846_df16d1092b_o.jpg", "secret": "df16d1092b", "media": "photo", "latitude": "0", "id": "332081846", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 00:28:33", "license": "5", "title": "revolutionary", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/332081907_9c1c5d2cd5_o.jpg", "secret": "9c1c5d2cd5", "media": "photo", "latitude": "0", "id": "332081907", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 00:48:46", "license": "5", "title": "that's Josh..... tagged the booth", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/332081940_331b1c5b75_o.jpg", "secret": "331b1c5b75", "media": "photo", "latitude": "0", "id": "332081940", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 00:54:10", "license": "5", "title": "Just Josh, man of Mystery", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/332081991_8aa834c5a8_o.jpg", "secret": "8aa834c5a8", "media": "photo", "latitude": "0", "id": "332081991", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 00:56:02", "license": "5", "title": "Cheerleader Tova", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/332082042_5b1e2e727b_o.jpg", "secret": "5b1e2e727b", "media": "photo", "latitude": "0", "id": "332082042", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 00:57:26", "license": "5", "title": "Tova movin it", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/332082095_86b5e2b293_o.jpg", "secret": "86b5e2b293", "media": "photo", "latitude": "0", "id": "332082095", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 00:58:03", "license": "5", "title": "Tova what happened to your head?", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/332082115_6a1ace2758_o.jpg", "secret": "6a1ace2758", "media": "photo", "latitude": "0", "id": "332082115", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 01:01:04", "license": "5", "title": "Shut Up and Dance", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/332082680_a967124722_o.jpg", "secret": "a967124722", "media": "photo", "latitude": "0", "id": "332082680", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 01:04:33", "license": "5", "title": "deathstar disco", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/332082133_023505611e_o.jpg", "secret": "023505611e", "media": "photo", "latitude": "0", "id": "332082133", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 01:34:32", "license": "5", "title": "Josh + Tova", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/332082165_533c9e9ae9_o.jpg", "secret": "533c9e9ae9", "media": "photo", "latitude": "0", "id": "332082165", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 01:42:46", "license": "5", "title": "I wuv girls", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/332082183_cb29cf2649_o.jpg", "secret": "cb29cf2649", "media": "photo", "latitude": "0", "id": "332082183", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 01:43:05", "license": "5", "title": "it's al in the balance", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/332082211_1541fa40a8_o.jpg", "secret": "1541fa40a8", "media": "photo", "latitude": "0", "id": "332082211", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 01:43:17", "license": "5", "title": "posing", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/332082243_b5abaecdea_o.jpg", "secret": "b5abaecdea", "media": "photo", "latitude": "0", "id": "332082243", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 01:44:03", "license": "5", "title": "more posing", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/332082272_b61128aca7_o.jpg", "secret": "b61128aca7", "media": "photo", "latitude": "0", "id": "332082272", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 01:48:43", "license": "5", "title": "flocked", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/332082320_220018ca5e_o.jpg", "secret": "220018ca5e", "media": "photo", "latitude": "0", "id": "332082320", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 01:54:49", "license": "5", "title": "This fucking guy destroyed this picture", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/332082344_d811410d4b_o.jpg", "secret": "d811410d4b", "media": "photo", "latitude": "0", "id": "332082344", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 01:55:08", "license": "5", "title": "lean back.....", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/332082368_e50641cb39_o.jpg", "secret": "e50641cb39", "media": "photo", "latitude": "0", "id": "332082368", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 01:58:04", "license": "5", "title": "it was this big....", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/332082401_dbd98308c0_o.jpg", "secret": "dbd98308c0", "media": "photo", "latitude": "0", "id": "332082401", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 01:58:17", "license": "5", "title": "left holding the bag, and coat..", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/332082434_1ebd3a20ae_o.jpg", "secret": "1ebd3a20ae", "media": "photo", "latitude": "0", "id": "332082434", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 01:58:27", "license": "5", "title": "pink skully rag", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/332082452_19bdefc8a7_o.jpg", "secret": "19bdefc8a7", "media": "photo", "latitude": "0", "id": "332082452", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 01:59:09", "license": "5", "title": "Fuck you too, lady!", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/332082492_b22ffe337e_o.jpg", "secret": "b22ffe337e", "media": "photo", "latitude": "0", "id": "332082492", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 01:59:56", "license": "5", "title": "1/2 DC crew, 1/2 Baltimore crew", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/332082524_667b8bfb4c_o.jpg", "secret": "667b8bfb4c", "media": "photo", "latitude": "0", "id": "332082524", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 02:00:10", "license": "5", "title": "1/2 DC crew, 1/2 Baltimore crew", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/332082550_e46cd74d9a_o.jpg", "secret": "e46cd74d9a", "media": "photo", "latitude": "0", "id": "332082550", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 02:02:23", "license": "5", "title": "of course we got presents", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/332082567_3a26dd9307_o.jpg", "secret": "3a26dd9307", "media": "photo", "latitude": "0", "id": "332082567", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 02:03:06", "license": "5", "title": "front and back", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/332082606_91f81ab3ae_o.jpg", "secret": "91f81ab3ae", "media": "photo", "latitude": "0", "id": "332082606", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2006-12-21 02:03:23", "license": "5", "title": "Tova's been branded", "text": "", "album_id": "72157594436525255", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/332082638_5be449431b_o.jpg", "secret": "5be449431b", "media": "photo", "latitude": "0", "id": "332082638", "tags": "christmas music club lights dc dancing 5 josh alcohol electronic djs edm breaks mirrorballs tova clubfive"}, {"datetaken": "2007-01-01 16:45:45", "license": "4", "title": "ChinatownBus2.H8.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/342899730_e580f8fa88_o.jpg", "secret": "e580f8fa88", "media": "photo", "latitude": "0", "id": "342899730", "tags": "washingtondc dc chinatown northwest wdc transportation dcist newyearsday 2007 chinatownbus chinatownwdc nwwdc january2007 newyearsday2007 01january2007 chinatown2007 chinatownwdc2007 chinatownwdc01january2007"}, {"datetaken": "2007-01-02 18:13:34", "license": "4", "title": "ChinatownBus.8H.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/342899714_e498a5fe4b_o.jpg", "secret": "e498a5fe4b", "media": "photo", "latitude": "0", "id": "342899714", "tags": "washingtondc dc chinatown northwest wdc transportation newyearsday 2007 chinatownbus chinatownwdc nwwdc january2007 newyearsday2007 01january2007 chinatown2007 chinatownwdc2007 chinatownwdc01january2007"}, {"datetaken": "2007-01-02 19:03:16", "license": "4", "title": "03.ChinatownBus.8H.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/342969145_2e3c3978e8_o.jpg", "secret": "2e3c3978e8", "media": "photo", "latitude": "0", "id": "342969145", "tags": "washingtondc dc chinatown northwest wdc transportation newyearsday 2007 chinatownbus chinatownwdc nwwdc january2007 newyearsday2007 01january2007 chinatown2007 chinatownwdc2007 chinatownwdc01january2007"}, {"datetaken": "2007-01-02 19:03:16", "license": "4", "title": "02.ChinatownBus.8H.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/342969144_be7d6466d2_o.jpg", "secret": "be7d6466d2", "media": "photo", "latitude": "0", "id": "342969144", "tags": "washingtondc dc chinatown northwest wdc transportation newyearsday 2007 chinatownbus chinatownwdc nwwdc january2007 newyearsday2007 01january2007 chinatown2007 chinatownwdc2007 chinatownwdc01january2007"}, {"datetaken": "2007-01-02 19:03:16", "license": "4", "title": "01.ChinatownBus.8H.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/342969141_34869060ef_o.jpg", "secret": "34869060ef", "media": "photo", "latitude": "0", "id": "342969141", "tags": "washingtondc dc chinatown northwest wdc transportation newyearsday 2007 chinatownbus chinatownwdc nwwdc january2007 newyearsday2007 01january2007 chinatown2007 chinatownwdc2007 chinatownwdc01january2007"}, {"datetaken": "2007-01-02 19:08:33", "license": "4", "title": "05.ChinatownBus.8H.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/342976701_53324d89ec_o.jpg", "secret": "53324d89ec", "media": "photo", "latitude": "0", "id": "342976701", "tags": "washingtondc dc chinatown northwest wdc transportation newyearsday 2007 chinatownbus chinatownwdc nwwdc january2007 newyearsday2007 01january2007 chinatown2007 chinatownwdc2007 chinatownwdc01january2007"}, {"datetaken": "2007-01-02 19:08:33", "license": "4", "title": "04.ChinatownBus.8H.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/342976697_ac2ccf5645_o.jpg", "secret": "ac2ccf5645", "media": "photo", "latitude": "0", "id": "342976697", "tags": "washingtondc dc chinatown northwest wdc transportation newyearsday 2007 chinatownbus chinatownwdc nwwdc january2007 newyearsday2007 01january2007 chinatown2007 chinatownwdc2007 chinatownwdc01january2007"}, {"datetaken": "2007-01-02 19:14:08", "license": "4", "title": "09.ChinatownBus.8H.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/342984196_3e8b2d53fe_o.jpg", "secret": "3e8b2d53fe", "media": "photo", "latitude": "0", "id": "342984196", "tags": "washingtondc dc chinatown northwest wdc transportation newyearsday 2007 chinatownbus chinatownwdc nwwdc january2007 newyearsday2007 01january2007 chinatown2007 chinatownwdc2007 chinatownwdc01january2007"}, {"datetaken": "2007-01-02 19:14:08", "license": "4", "title": "08.ChinatownBus.8H.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/342984192_152d231feb_o.jpg", "secret": "152d231feb", "media": "photo", "latitude": "0", "id": "342984192", "tags": "washingtondc dc chinatown northwest wdc transportation newyearsday 2007 chinatownbus chinatownwdc nwwdc january2007 newyearsday2007 01january2007 chinatown2007 chinatownwdc2007 chinatownwdc01january2007"}, {"datetaken": "2007-01-02 19:14:08", "license": "4", "title": "07.ChinatownBus.8H.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/342984188_824edd6314_o.jpg", "secret": "824edd6314", "media": "photo", "latitude": "0", "id": "342984188", "tags": "washingtondc dc chinatown northwest wdc transportation newyearsday 2007 chinatownbus chinatownwdc nwwdc january2007 newyearsday2007 01january2007 chinatown2007 chinatownwdc2007 chinatownwdc01january2007"}, {"datetaken": "2007-01-02 19:20:47", "license": "4", "title": "12.ChinatownBus.8H.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/342993768_bcbdbf73d7_o.jpg", "secret": "bcbdbf73d7", "media": "photo", "latitude": "0", "id": "342993768", "tags": "washingtondc dc chinatown northwest wdc transportation newyearsday 2007 chinatownbus chinatownwdc nwwdc january2007 newyearsday2007 01january2007 chinatown2007 chinatownwdc2007 chinatownwdc01january2007"}, {"datetaken": "2007-01-02 19:20:47", "license": "4", "title": "11.ChinatownBus.8H.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/342993762_afd4eba795_o.jpg", "secret": "afd4eba795", "media": "photo", "latitude": "0", "id": "342993762", "tags": "washingtondc dc chinatown northwest wdc transportation newyearsday 2007 chinatownbus chinatownwdc nwwdc january2007 newyearsday2007 01january2007 chinatown2007 chinatownwdc2007 chinatownwdc01january2007"}, {"datetaken": "2007-01-02 19:20:47", "license": "4", "title": "10a.ChinatownBus.8H.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/342993759_ea19f771f2_o.jpg", "secret": "ea19f771f2", "media": "photo", "latitude": "0", "id": "342993759", "tags": "washingtondc dc chinatown northwest wdc transportation newyearsday 2007 chinatownbus chinatownwdc nwwdc january2007 newyearsday2007 01january2007 chinatown2007 chinatownwdc2007 chinatownwdc01january2007"}, {"datetaken": "2007-01-02 19:20:47", "license": "4", "title": "10.ChinatownBus.8H.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/342993753_c127152dc6_o.jpg", "secret": "c127152dc6", "media": "photo", "latitude": "0", "id": "342993753", "tags": "washingtondc dc chinatown northwest wdc transportation newyearsday 2007 chinatownbus chinatownwdc nwwdc january2007 newyearsday2007 01january2007 chinatown2007 chinatownwdc2007 chinatownwdc01january2007"}, {"datetaken": "2007-01-02 22:27:15", "license": "4", "title": "13.ChinatownBus.H8.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/343240798_fbd3647eed_o.jpg", "secret": "fbd3647eed", "media": "photo", "latitude": "0", "id": "343240798", "tags": "washingtondc dc chinatown northwest wdc transportation newyearsday 2007 chinatownbus chinatownwdc nwwdc january2007 newyearsday2007 01january2007 chinatown2007 chinatownwdc2007 chinatownwdc01january2007"}, {"datetaken": "2007-01-02 22:27:15", "license": "4", "title": "14.ChinatownBus.H8.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/343240802_c416902b32_o.jpg", "secret": "c416902b32", "media": "photo", "latitude": "0", "id": "343240802", "tags": "washingtondc dc chinatown northwest wdc transportation newyearsday 2007 chinatownbus chinatownwdc nwwdc january2007 newyearsday2007 01january2007 chinatown2007 chinatownwdc2007 chinatownwdc01january2007"}, {"datetaken": "2007-01-02 22:27:15", "license": "4", "title": "15.ChinatownBus.H8.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/343240807_d68a930f5f_o.jpg", "secret": "d68a930f5f", "media": "photo", "latitude": "0", "id": "343240807", "tags": "newyearsday newyearsday2007 2007 january2007 01january2007 northwest nwwdc wdc washingtondc dc chinatown chinatownwdc chinatown2007 chinatownwdc2007 chinatownbus transportation chinatownwdc01january2007"}, {"datetaken": "2007-01-02 22:27:15", "license": "4", "title": "18.ChinatownBus.H8.NW.WDC.1jan07", "text": "", "album_id": "72157594455403320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/343240808_3e86bbbf68_o.jpg", "secret": "3e86bbbf68", "media": "photo", "latitude": "0", "id": "343240808", "tags": "washingtondc dc chinatown northwest wdc transportation newyearsday 2007 chinatownbus chinatownwdc nwwdc january2007 newyearsday2007 01january2007 chinatown2007 chinatownwdc2007 chinatownwdc01january2007"}, {"datetaken": "2006-11-10 20:22:32", "license": "2", "title": "Ooooo Trio", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/328288400_ed60e3894d_o.jpg", "secret": "ed60e3894d", "media": "photo", "latitude": "0", "id": "328288400", "tags": "nyc wedding friends haven soho"}, {"datetaken": "2006-11-10 22:43:46", "license": "2", "title": "All Smiles in SoHo", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/328288998_84298b93d3_o.jpg", "secret": "84298b93d3", "media": "photo", "latitude": "0", "id": "328288998", "tags": "nyc wedding friends haven soho"}, {"datetaken": "2006-11-10 22:44:22", "license": "2", "title": "Night on the Town", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/328288681_213ef29b6e_o.jpg", "secret": "213ef29b6e", "media": "photo", "latitude": "0", "id": "328288681", "tags": "nyc wedding friends haven soho"}, {"datetaken": "2006-11-11 20:06:53", "license": "2", "title": "Tippy-toes", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/328289806_76e4d8edac_o.jpg", "secret": "76e4d8edac", "media": "photo", "latitude": "0", "id": "328289806", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 20:07:02", "license": "2", "title": "Loons", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/328289374_50ec30854b_o.jpg", "secret": "50ec30854b", "media": "photo", "latitude": "0", "id": "328289374", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 20:07:53", "license": "2", "title": "The Kiss", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/328290113_4aed2e4863_o.jpg", "secret": "4aed2e4863", "media": "photo", "latitude": "0", "id": "328290113", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 21:07:17", "license": "2", "title": "Host for the Night", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/328290477_f2dc40446f_o.jpg", "secret": "f2dc40446f", "media": "photo", "latitude": "0", "id": "328290477", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 21:51:36", "license": "2", "title": "Raising a Glass", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/328290858_945a086d1d_o.jpg", "secret": "945a086d1d", "media": "photo", "latitude": "0", "id": "328290858", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 21:58:23", "license": "2", "title": "Taking a Spin with Dad", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/328291171_263411fa5a_o.jpg", "secret": "263411fa5a", "media": "photo", "latitude": "0", "id": "328291171", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 22:06:10", "license": "2", "title": "Just the Two of Us", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/328291489_2e53a2cace_o.jpg", "secret": "2e53a2cace", "media": "photo", "latitude": "0", "id": "328291489", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 22:08:06", "license": "2", "title": "A Quiet Moment", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/328291788_8cd9ee4883_o.jpg", "secret": "8cd9ee4883", "media": "photo", "latitude": "0", "id": "328291788", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 22:15:46", "license": "2", "title": "David and Alicia I", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/328292088_d7afc35f39_o.jpg", "secret": "d7afc35f39", "media": "photo", "latitude": "0", "id": "328292088", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 22:16:00", "license": "2", "title": "David and Alicia II", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/328292392_93933b02cb_o.jpg", "secret": "93933b02cb", "media": "photo", "latitude": "0", "id": "328292392", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 22:18:23", "license": "2", "title": "Dance Break", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/328293025_36e91badf7_o.jpg", "secret": "36e91badf7", "media": "photo", "latitude": "0", "id": "328293025", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 22:18:59", "license": "2", "title": "Dessert", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/328292750_a03dce8a71_o.jpg", "secret": "a03dce8a71", "media": "photo", "latitude": "0", "id": "328292750", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 22:19:33", "license": "2", "title": "Wave Your Hands in the Air", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/328293216_1896d5c23d_o.jpg", "secret": "1896d5c23d", "media": "photo", "latitude": "0", "id": "328293216", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 22:23:44", "license": "2", "title": "W Union Square", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/328293485_8f401d224e_o.jpg", "secret": "8f401d224e", "media": "photo", "latitude": "0", "id": "328293485", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 22:24:27", "license": "2", "title": "Our Table", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/328293718_3eb58c65b5_o.jpg", "secret": "3eb58c65b5", "media": "photo", "latitude": "0", "id": "328293718", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 22:26:31", "license": "2", "title": "Salute!", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/328293992_ce94b5c53b_o.jpg", "secret": "ce94b5c53b", "media": "photo", "latitude": "0", "id": "328293992", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 22:27:34", "license": "2", "title": "Whirlwind", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/328294330_812c1a05fa_o.jpg", "secret": "812c1a05fa", "media": "photo", "latitude": "0", "id": "328294330", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 22:49:36", "license": "2", "title": "Full Force", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/328294689_dd590f5995_o.jpg", "secret": "dd590f5995", "media": "photo", "latitude": "0", "id": "328294689", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 22:50:29", "license": "2", "title": "We Sing. We Dance. We Chat. We Party.", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/328295470_7132bf8a11_o.jpg", "secret": "7132bf8a11", "media": "photo", "latitude": "0", "id": "328295470", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 22:56:41", "license": "2", "title": "Megan and Jeremy", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/328295041_1499b6a98a_o.jpg", "secret": "1499b6a98a", "media": "photo", "latitude": "0", "id": "328295041", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 23:27:38", "license": "2", "title": "Film Stars", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/328295829_f1b01fc446_o.jpg", "secret": "f1b01fc446", "media": "photo", "latitude": "0", "id": "328295829", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 23:28:20", "license": "2", "title": "Storytelling", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/328296131_fe0d2e8f54_o.jpg", "secret": "fe0d2e8f54", "media": "photo", "latitude": "0", "id": "328296131", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 23:28:29", "license": "2", "title": "Now, Don't Stay Out Too Late...", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/328296452_c02ec8fad1_o.jpg", "secret": "c02ec8fad1", "media": "photo", "latitude": "0", "id": "328296452", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 23:28:41", "license": "2", "title": "My Inspiration!", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/328296889_1355bba671_o.jpg", "secret": "1355bba671", "media": "photo", "latitude": "0", "id": "328296889", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 23:28:48", "license": "2", "title": "Narae, Jon and Ken", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/328297159_ebf466992d_o.jpg", "secret": "ebf466992d", "media": "photo", "latitude": "0", "id": "328297159", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 23:29:41", "license": "2", "title": "Just the Guys", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/328297442_21cac347a8_o.jpg", "secret": "21cac347a8", "media": "photo", "latitude": "0", "id": "328297442", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 23:30:52", "license": "2", "title": "End of the Night", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/328297682_f75f7f5252_o.jpg", "secret": "f75f7f5252", "media": "photo", "latitude": "0", "id": "328297682", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 23:31:21", "license": "2", "title": "Maddie and Armistead", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/328298011_033b6307b3_o.jpg", "secret": "033b6307b3", "media": "photo", "latitude": "0", "id": "328298011", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 23:43:30", "license": "2", "title": "The W Lobby", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/328298249_787f62982d_o.jpg", "secret": "787f62982d", "media": "photo", "latitude": "0", "id": "328298249", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 23:46:41", "license": "2", "title": "Look! It's the Bride and Groom!", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/328298552_253634e8cb_o.jpg", "secret": "253634e8cb", "media": "photo", "latitude": "0", "id": "328298552", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2006-11-11 23:46:48", "license": "2", "title": "Thanks for Coming!", "text": "", "album_id": "72157594430120465", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/328298906_5e885eadd8_o.jpg", "secret": "5e885eadd8", "media": "photo", "latitude": "0", "id": "328298906", "tags": "nyc wedding friends haven unionsquare whotel"}, {"datetaken": "2007-02-11 16:59:45", "license": "1", "title": "20070211 Tamsui with Jeffrey 001", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/386829230_99bdb726f1_o.jpg", "secret": "99bdb726f1", "media": "photo", "latitude": "0", "id": "386829230", "tags": "red white brick asia oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 16:59:50", "license": "1", "title": "20070211 Tamsui with Jeffrey 002", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/386829665_89b929b9af_o.jpg", "secret": "89b929b9af", "media": "photo", "latitude": "0", "id": "386829665", "tags": "asia oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:02:27", "license": "1", "title": "20070211 Tamsui with Jeffrey 003", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/386830202_fed428f542_o.jpg", "secret": "fed428f542", "media": "photo", "latitude": "0", "id": "386830202", "tags": "asia oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:03:19", "license": "1", "title": "20070211 Tamsui with Jeffrey 005", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/386830480_502c08ec72_o.jpg", "secret": "502c08ec72", "media": "photo", "latitude": "0", "id": "386830480", "tags": "house asia oldhouse oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:09:26", "license": "1", "title": "20070211 Tamsui with Jeffrey 006", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/386830693_a220064cbb_o.jpg", "secret": "a220064cbb", "media": "photo", "latitude": "0", "id": "386830693", "tags": "church asia oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:14:22", "license": "1", "title": "20070211 Tamsui with Jeffrey 007", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/386830997_9031c17d70_o.jpg", "secret": "9031c17d70", "media": "photo", "latitude": "0", "id": "386830997", "tags": "asia oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:21:56", "license": "1", "title": "20070211 Tamsui with Jeffrey 009", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/386831711_15a76c5873_o.jpg", "secret": "15a76c5873", "media": "photo", "latitude": "0", "id": "386831711", "tags": "asia oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:24:38", "license": "1", "title": "20070211 Tamsui with Jeffrey 010", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/386832016_f7f5191299_o.jpg", "secret": "f7f5191299", "media": "photo", "latitude": "0", "id": "386832016", "tags": "sky asia oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 \u4e5d\u91cd\u845b 20070211 bougainvilleablooms"}, {"datetaken": "2007-02-11 17:25:17", "license": "1", "title": "20070211 Tamsui with Jeffrey 008", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/386831271_53fb87f12b_o.jpg", "secret": "53fb87f12b", "media": "photo", "latitude": "0", "id": "386831271", "tags": "asia jacky oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:25:20", "license": "1", "title": "20070211 Tamsui with Jeffrey 011", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/386832295_6063db0fc3_o.jpg", "secret": "6063db0fc3", "media": "photo", "latitude": "0", "id": "386832295", "tags": "asia architect jacky oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:25:30", "license": "1", "title": "20070211 Tamsui with Jeffrey 012", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/386832573_c0c81be005_o.jpg", "secret": "c0c81be005", "media": "photo", "latitude": "0", "id": "386832573", "tags": "asia guys architect jacky oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:34:47", "license": "1", "title": "20070211 Tamsui with Jeffrey 013", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/386832864_23b65a9e50_o.jpg", "secret": "23b65a9e50", "media": "photo", "latitude": "0", "id": "386832864", "tags": "river boat asia riverside riverbank oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:37:57", "license": "1", "title": "20070211 Tamsui with Jeffrey 014", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/386833049_9b7a8f8f70_o.jpg", "secret": "9b7a8f8f70", "media": "photo", "latitude": "0", "id": "386833049", "tags": "bar asia oldtown estrella oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:38:54", "license": "1", "title": "20070211 Tamsui with Jeffrey 016", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/386833619_807de83235_o.jpg", "secret": "807de83235", "media": "photo", "latitude": "0", "id": "386833619", "tags": "asia jeffrey oldtown estrella oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:39:51", "license": "1", "title": "20070211 Tamsui with Jeffrey 017", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/386833858_ead3b8c4e9_o.jpg", "secret": "ead3b8c4e9", "media": "photo", "latitude": "0", "id": "386833858", "tags": "asia oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:39:58", "license": "1", "title": "20070211 Tamsui with Jeffrey 018", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/386834253_a4a1cb3af1_o.jpg", "secret": "a4a1cb3af1", "media": "photo", "latitude": "0", "id": "386834253", "tags": "asia oldtown estrella oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:40:00", "license": "1", "title": "20070211 Tamsui with Jeffrey 019", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/386834537_a9d0c714f8_o.jpg", "secret": "a9d0c714f8", "media": "photo", "latitude": "0", "id": "386834537", "tags": "asia oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:42:14", "license": "1", "title": "20070211 Tamsui with Jeffrey 020", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/386834702_4cf4a66563_o.jpg", "secret": "4cf4a66563", "media": "photo", "latitude": "0", "id": "386834702", "tags": "asia oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:42:23", "license": "1", "title": "20070211 Tamsui with Jeffrey 022", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/386835060_d95ca0d8d9_o.jpg", "secret": "d95ca0d8d9", "media": "photo", "latitude": "0", "id": "386835060", "tags": "asia oldtown estrella oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:43:07", "license": "1", "title": "20070211 Tamsui with Jeffrey 021", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/386834806_d58f7931ce_o.jpg", "secret": "d58f7931ce", "media": "photo", "latitude": "0", "id": "386834806", "tags": "asia oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:43:29", "license": "1", "title": "20070211 Tamsui with Jeffrey 023", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/386835219_74c6c902aa_o.jpg", "secret": "74c6c902aa", "media": "photo", "latitude": "0", "id": "386835219", "tags": "sepia river boats boat cafe asia mani oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 17:44:19", "license": "1", "title": "20070211 Tamsui with Jeffrey 024", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/386835438_24f2b7d33f_o.jpg", "secret": "24f2b7d33f", "media": "photo", "latitude": "0", "id": "386835438", "tags": "asia oldtown estrella oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 18:50:56", "license": "1", "title": "20070211 Tamsui with Jeffrey 026", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/386835812_b36b6cc0ee_o.jpg", "secret": "b36b6cc0ee", "media": "photo", "latitude": "0", "id": "386835812", "tags": "friends asia oldtown estrella oldstreet \u6de1\u6c34 corazon tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 18:54:16", "license": "1", "title": "20070211 Tamsui with Jeffrey 025", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/386835590_217aa47099_o.jpg", "secret": "217aa47099", "media": "photo", "latitude": "0", "id": "386835590", "tags": "asia oldtown oldstreet \u6de1\u6c34 queena tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 18:58:03", "license": "1", "title": "20070211 Tamsui with Jeffrey 027", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/386837787_02af36a24c_o.jpg", "secret": "02af36a24c", "media": "photo", "latitude": "0", "id": "386837787", "tags": "asia oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 18:58:39", "license": "1", "title": "20070211 Tamsui with Jeffrey 044", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/386836282_6ada049548_o.jpg", "secret": "6ada049548", "media": "photo", "latitude": "0", "id": "386836282", "tags": "cafe asia mani oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 18:58:41", "license": "1", "title": "20070211 Tamsui with Jeffrey 045", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/386836812_5b44b1faa5_o.jpg", "secret": "5b44b1faa5", "media": "photo", "latitude": "0", "id": "386836812", "tags": "asia oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 18:59:26", "license": "1", "title": "20070211 Tamsui with Jeffrey 046", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/386837339_4bd9be2144_o.jpg", "secret": "4bd9be2144", "media": "photo", "latitude": "0", "id": "386837339", "tags": "asia oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 20070211"}, {"datetaken": "2007-02-11 19:00:17", "license": "1", "title": "bitter tea", "text": "", "album_id": "72157594529919590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/386838243_04e9bdd5fb_o.jpg", "secret": "04e9bdd5fb", "media": "photo", "latitude": "0", "id": "386838243", "tags": "asia mani oldtown oldstreet \u6de1\u6c34 tamsui \u8001\u8857 maniyang 20070211"}, {"datetaken": "2007-03-06 21:19:29", "license": "2", "title": "First glimpse of the Eiffel Tower.", "text": "", "album_id": "72157600018126769", "longitude": "2.289227", "url_o": "https://farm1.staticflickr.com/158/427346720_9622374dba_o.jpg", "secret": "212a3a45fd", "media": "photo", "latitude": "48.855355", "id": "427346720", "tags": "paris eiffeltower"}, {"datetaken": "2007-03-06 21:25:32", "license": "2", "title": "Tower through trees.", "text": "", "album_id": "72157600018126769", "longitude": "2.290901", "url_o": "https://farm1.staticflickr.com/147/427346833_b15dad761e_o.jpg", "secret": "3222a6ce2b", "media": "photo", "latitude": "48.857571", "id": "427346833", "tags": "paris eiffeltower"}, {"datetaken": "2007-03-06 21:26:44", "license": "2", "title": "Ducks in the rain.", "text": "", "album_id": "72157600018126769", "longitude": "2.292950", "url_o": "https://farm1.staticflickr.com/165/427346900_a36ecb41fa_o.jpg", "secret": "c548493328", "media": "photo", "latitude": "48.857889", "id": "427346900", "tags": "paris rain pond eiffeltower roots ducks"}, {"datetaken": "2007-03-06 21:29:04", "license": "2", "title": "Tower glow.", "text": "", "album_id": "72157600018126769", "longitude": "2.292950", "url_o": "https://farm1.staticflickr.com/170/427347012_401e4e7245_o.jpg", "secret": "1c3318b115", "media": "photo", "latitude": "48.857889", "id": "427347012", "tags": "orange paris clouds steel eiffeltower photobyjenny"}, {"datetaken": "2007-03-06 21:32:13", "license": "2", "title": "Tower, Bean, goofy expression.", "text": "", "album_id": "72157600018126769", "longitude": "2.293723", "url_o": "https://farm1.staticflickr.com/180/427347204_57c193cbe3_o.jpg", "secret": "65e55a6cc1", "media": "photo", "latitude": "48.858224", "id": "427347204", "tags": "paris eiffeltower bean photobyjenny"}, {"datetaken": "2007-03-06 21:32:42", "license": "2", "title": "A tower in a puddle.", "text": "", "album_id": "72157600018126769", "longitude": "2.293723", "url_o": "https://farm1.staticflickr.com/164/427347277_8d59ce7b05_o.jpg", "secret": "ccf659f23b", "media": "photo", "latitude": "48.858224", "id": "427347277", "tags": "paris reflection puddle eiffeltower"}, {"datetaken": "2007-03-06 21:33:25", "license": "2", "title": "More fun with puddles.", "text": "", "album_id": "72157600018126769", "longitude": "2.293723", "url_o": "https://farm1.staticflickr.com/181/427347414_3a90305f23_o.jpg", "secret": "fd2bec93d8", "media": "photo", "latitude": "48.858224", "id": "427347414", "tags": "paris reflection puddle eiffeltower"}, {"datetaken": "2007-03-06 21:39:03", "license": "2", "title": "That squigly thing's a fence.", "text": "", "album_id": "72157600018126769", "longitude": "2.295750", "url_o": "https://farm1.staticflickr.com/164/427347560_9af68063d8_o.jpg", "secret": "a7526b6fc5", "media": "photo", "latitude": "48.857038", "id": "427347560", "tags": "paris grass fence eiffeltower"}, {"datetaken": "2007-03-06 21:48:53", "license": "2", "title": "Iconic, if a little tilted.", "text": "", "album_id": "72157600018126769", "longitude": "2.298014", "url_o": "https://farm1.staticflickr.com/155/427347732_6dd96cb803_o.jpg", "secret": "9a0a77067d", "media": "photo", "latitude": "48.855672", "id": "427347732", "tags": "paris eiffeltower"}, {"datetaken": "2007-03-06 21:49:06", "license": "2", "title": "The postcard shot.", "text": "", "album_id": "72157600018126769", "longitude": "2.298014", "url_o": "https://farm1.staticflickr.com/147/427347802_cce269beb4_o.jpg", "secret": "a43a44c013", "media": "photo", "latitude": "48.855672", "id": "427347802", "tags": "paris fountain garden eiffeltower"}, {"datetaken": "2007-03-06 21:56:59", "license": "2", "title": "Moments later I would be punched in the head.", "text": "", "album_id": "72157600018126769", "longitude": "2.301297", "url_o": "https://farm1.staticflickr.com/151/427347862_e52e66d2cf_o.jpg", "secret": "6997699f4b", "media": "photo", "latitude": "48.853145", "id": "427347862", "tags": "paris ecolemilitaire"}, {"datetaken": "2007-03-06 22:01:49", "license": "2", "title": "Crazy lights.", "text": "", "album_id": "72157600018126769", "longitude": "2.304838", "url_o": "https://farm1.staticflickr.com/152/427347930_f3785ebe8c_o.jpg", "secret": "b10575e130", "media": "photo", "latitude": "48.854112", "id": "427347930", "tags": "paris eiffeltower"}, {"datetaken": "2007-03-06 23:49:56", "license": "2", "title": "Green seats.", "text": "", "album_id": "72157600018126769", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/427347989_0656e74cf3_o.jpg", "secret": "d4ccf56da2", "media": "photo", "latitude": "0", "id": "427347989", "tags": "paris green chairs metro greenbrick"}, {"datetaken": "2007-04-04 11:22:46", "license": "3", "title": "Spring Showers?", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/203/447188350_bdbc23bef7_o.jpg", "secret": "319d49436b", "media": "photo", "latitude": "0", "id": "447188350", "tags": "snow spring newhampshire nh heavy mybackyard utatathursdaywalk51 utata:project=tw51 springsnowers"}, {"datetaken": "2007-04-04 11:22:53", "license": "3", "title": "Spring Showers?", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/253/447188718_dfdabdff7f_o.jpg", "secret": "def3126c02", "media": "photo", "latitude": "0", "id": "447188718", "tags": "snow spring newhampshire nh blogged heavy mybackyard nhphototour utatathursdaywalk51 utata:project=tw51 springsnowers"}, {"datetaken": "2007-04-04 11:23:04", "license": "3", "title": "Spring Showers?", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/447188998_5b537dfe76_o.jpg", "secret": "0fc86f47e1", "media": "photo", "latitude": "0", "id": "447188998", "tags": "snow spring newhampshire nh heavy mybackyard utatathursdaywalk51 utata:project=tw51 springsnowers"}, {"license": "0", "title": "Spring Showers?", "farm": "1", "text": "", "album_id": "72157600049163823", "secret": "608d8990c3", "longitude": "0", "server": "231", "datetaken": "2007-04-04 11:25:04", "url_m": "https://farm1.staticflickr.com/231/447195447_608d8990c3.jpg", "media": "photo", "latitude": "0", "id": "447195447", "tags": "snow spring newhampshire nh heavy mybackyard utatathursdaywalk51 utata:project=tw51 springsnowers"}, {"datetaken": "2007-04-04 11:25:13", "license": "3", "title": "Spring Showers?", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/200/447189670_0bec74f806_o.jpg", "secret": "8d61279513", "media": "photo", "latitude": "0", "id": "447189670", "tags": "snow spring newhampshire nh heavy mybackyard utatathursdaywalk51 utata:project=tw51 springsnowers"}, {"datetaken": "2007-04-04 11:25:35", "license": "3", "title": "For Nana Cindy", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/220/447195961_da6310fb30_o.jpg", "secret": "ef9b0563fc", "media": "photo", "latitude": "0", "id": "447195961", "tags": "snow spring newhampshire nh heavy mybackyard utatathursdaywalk51 utata:project=tw51 springsnowers"}, {"license": "0", "title": "Spring Showers?", "farm": "1", "text": "", "album_id": "72157600049163823", "secret": "536c401be9", "longitude": "0", "server": "204", "datetaken": "2007-04-04 11:25:57", "url_m": "https://farm1.staticflickr.com/204/447196235_536c401be9.jpg", "media": "photo", "latitude": "0", "id": "447196235", "tags": "snow spring newhampshire nh heavy mybackyard utatathursdaywalk51 utata:project=tw51 springsnowers"}, {"license": "0", "title": "Spring Showers?", "farm": "1", "text": "", "album_id": "72157600049163823", "secret": "18e9501bf8", "longitude": "0", "server": "208", "datetaken": "2007-04-04 11:26:06", "url_m": "https://farm1.staticflickr.com/208/447190596_18e9501bf8.jpg", "media": "photo", "latitude": "0", "id": "447190596", "tags": "snow spring newhampshire nh heavy mybackyard utatathursdaywalk51 utata:project=tw51 springsnowers parlisnotabitjealous wellmaybeabitofofenvyofhercamera butnotaboutthesnow packingupandsendingheatseekingsnowballtoparl"}, {"datetaken": "2007-04-05 15:06:16", "license": "3", "title": "Snow...", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/215/447356796_9891ace83b_o.jpg", "secret": "9f98fa3277", "media": "photo", "latitude": "0", "id": "447356796", "tags": "snow yay noschool igotmycameraback utatathursdaywalk51 utata:project=tw51 springsnowers isthisreallyapril"}, {"datetaken": "2007-04-05 15:06:22", "license": "3", "title": "Heavy Snow", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/240/447357114_e8b9f608c9_o.jpg", "secret": "ddbe5590f1", "media": "photo", "latitude": "0", "id": "447357114", "tags": "snow yay noschool igotmycameraback utatathursdaywalk51 utata:project=tw51 springsnowers isthisreallyapril"}, {"datetaken": "2007-04-05 15:39:08", "license": "3", "title": "Well, what else would you do?", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/238/447364209_75e382b320_o.jpg", "secret": "7a464baad6", "media": "photo", "latitude": "0", "id": "447364209", "tags": "snow yay noschool igotmycameraback utatathursdaywalk51 utata:project=tw51 springsnowers isthisreallyapril"}, {"datetaken": "2007-04-05 15:39:18", "license": "3", "title": "Yup, VERY bright, bu no sun yet.", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/447357680_b56acf3e4a_o.jpg", "secret": "3c2bfd1951", "media": "photo", "latitude": "0", "id": "447357680", "tags": "snow yay noschool igotmycameraback utatathursdaywalk51 utata:project=tw51 springsnowers isthisreallyapril"}, {"datetaken": "2007-04-05 15:40:24", "license": "3", "title": "Neighbour's Damage", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/447364993_438adbf273_o.jpg", "secret": "05877dcdd6", "media": "photo", "latitude": "0", "id": "447364993", "tags": "snow yay noschool igotmycameraback utatathursdaywalk51 utata:project=tw51 springsnowers isthisreallyapril"}, {"datetaken": "2007-04-05 15:41:29", "license": "3", "title": "Damage", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/209/447365529_3b3c51a80d_o.jpg", "secret": "574b2f5429", "media": "photo", "latitude": "0", "id": "447365529", "tags": "snow yay noschool igotmycameraback utatathursdaywalk51 utata:project=tw51 springsnowers isthisreallyapril"}, {"datetaken": "2007-04-05 15:42:01", "license": "3", "title": "Many Branches Down", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/447359430_a72827fd69_o.jpg", "secret": "a748ad303d", "media": "photo", "latitude": "0", "id": "447359430", "tags": "snow yay noschool igotmycameraback utatathursdaywalk51 utata:project=tw51 springsnowers isthisreallyapril"}, {"datetaken": "2007-04-05 15:42:27", "license": "3", "title": "L O S T", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/447360266_26e20601d5_o.jpg", "secret": "da3e880874", "media": "photo", "latitude": "0", "id": "447360266", "tags": "snow yay noschool igotmycameraback utatathursdaywalk51 utata:project=tw51 springsnowers isthisreallyapril"}, {"datetaken": "2007-04-05 15:42:37", "license": "3", "title": "Well, I guess not really lost...", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/226/447367457_d80325112a_o.jpg", "secret": "3abd1bb755", "media": "photo", "latitude": "0", "id": "447367457", "tags": "snow yay noschool igotmycameraback utatathursdaywalk51 utata:project=tw51 springsnowers isthisreallyapril"}, {"datetaken": "2007-04-05 15:42:43", "license": "3", "title": "Broken", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/447368067_99f54c50a1_o.jpg", "secret": "b49795c0a6", "media": "photo", "latitude": "0", "id": "447368067", "tags": "snow yay noschool igotmycameraback utatathursdaywalk51 utata:project=tw51 springsnowers isthisreallyapril"}, {"datetaken": "2007-04-05 15:43:09", "license": "3", "title": "Hanging", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/447368733_9c081861a7_o.jpg", "secret": "8e5958c96c", "media": "photo", "latitude": "0", "id": "447368733", "tags": "snow yay noschool igotmycameraback utatathursdaywalk51 utata:project=tw51 springsnowers isthisreallyapril"}, {"datetaken": "2007-04-05 16:22:35", "license": "3", "title": "That's Snow Bunny!", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/211/447369319_4df0dbfe3b_o.jpg", "secret": "dce8cfdb74", "media": "photo", "latitude": "0", "id": "447369319", "tags": "snow yay noschool igotmycameraback utatathursdaywalk51 utata:project=tw51 springsnowers isthisreallyapril"}, {"datetaken": "2007-04-05 16:22:35", "license": "3", "title": "That's Snow Bunny!", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/227/447363044_72a84c0b68_o.jpg", "secret": "2f28e4bee6", "media": "photo", "latitude": "0", "id": "447363044", "tags": "snow yay noschool igotmycameraback utatathursdaywalk51 utata:project=tw51 springsnowers isthisreallyapril"}, {"datetaken": "2007-04-05 16:22:39", "license": "3", "title": "Amber and her Bunny", "text": "", "album_id": "72157600049163823", "longitude": "0", "url_o": "https://farm1.staticflickr.com/240/447369027_6f30c9fbac_o.jpg", "secret": "1a056f1ebf", "media": "photo", "latitude": "0", "id": "447369027", "tags": "snow amber yay 16 noschool igotmycameraback utatathursdaywalk51 utata:project=tw51 springsnowers isthisreallyapril"}, {"license": "0", "title": "Happy Easter Everyone!", "farm": "1", "text": "", "album_id": "72157600049163823", "secret": "251354b8d0", "longitude": "0", "server": "252", "datetaken": "2007-04-05 16:23:28", "url_m": "https://farm1.staticflickr.com/252/447370077_251354b8d0.jpg", "media": "photo", "latitude": "0", "id": "447370077", "tags": "snow yay noschool igotmycameraback utatathursdaywalk51 utata:project=tw51 springsnowers isthisreallyapril"}, {"datetaken": "2007-04-14 09:03:14", "license": "3", "title": "In The Beginning", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/459387947_0b8cf76e88_o.jpg", "secret": "445f59a854", "media": "photo", "latitude": "0", "id": "459387947", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 10:14:20", "license": "3", "title": "Wolf Among Sheep?", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/231/459378570_ffc6d3ec48_o.jpg", "secret": "86d4fd8597", "media": "photo", "latitude": "0", "id": "459378570", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 10:16:43", "license": "3", "title": "Fishing", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/254/459388521_427b3ccb33_o.jpg", "secret": "91ce1a60ec", "media": "photo", "latitude": "0", "id": "459388521", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 10:19:03", "license": "3", "title": "Tulalip Casino", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/196/459388735_e5244f94bb_o.jpg", "secret": "94b17f967e", "media": "photo", "latitude": "0", "id": "459388735", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 10:20:43", "license": "3", "title": "Tulalip Casino", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/459379336_984305783a_o.jpg", "secret": "b84ecd2225", "media": "photo", "latitude": "0", "id": "459379336", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 10:21:34", "license": "3", "title": "Rain Drops", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/236/459379564_663405f0d2_o.jpg", "secret": "c92daecfcd", "media": "photo", "latitude": "0", "id": "459379564", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 11:58:52", "license": "3", "title": "Taking a Break", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/191/459389279_4479f128a9_o.jpg", "secret": "3b76d2fedd", "media": "photo", "latitude": "0", "id": "459389279", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 11:59:13", "license": "3", "title": "Ready to Roll", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/201/459379982_4832c8698d_o.jpg", "secret": "db278d7186", "media": "photo", "latitude": "0", "id": "459379982", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 11:59:49", "license": "3", "title": "Wheels", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/242/459380164_28546d7d9a_o.jpg", "secret": "15a6aae68a", "media": "photo", "latitude": "0", "id": "459380164", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 12:27:22", "license": "3", "title": "Line Up", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/247/459380412_8ee4349bec_o.jpg", "secret": "d58d9cbf24", "media": "photo", "latitude": "0", "id": "459380412", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 12:31:34", "license": "3", "title": "Multiple Hues", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/220/459390213_533f0a283b_o.jpg", "secret": "f24b013269", "media": "photo", "latitude": "0", "id": "459390213", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 12:32:30", "license": "3", "title": "Tulips", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/220/459380926_a1128ce7ac_o.jpg", "secret": "711d8538b4", "media": "photo", "latitude": "0", "id": "459380926", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 12:34:51", "license": "3", "title": "Varieties", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/252/459381156_88a3f2f833_o.jpg", "secret": "8b997de402", "media": "photo", "latitude": "0", "id": "459381156", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 12:36:01", "license": "3", "title": "Color", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/200/459381440_3cb1c95189_o.jpg", "secret": "abb517fe6f", "media": "photo", "latitude": "0", "id": "459381440", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 12:37:26", "license": "3", "title": "Tulip Field", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/235/459391059_6cb56fd4a2_o.jpg", "secret": "ddddabf49f", "media": "photo", "latitude": "0", "id": "459391059", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 12:39:01", "license": "3", "title": "Tulip Fields", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/459381898_c740ebc30f_o.jpg", "secret": "b890621a72", "media": "photo", "latitude": "0", "id": "459381898", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 12:42:01", "license": "3", "title": "Sight Seeing", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/191/459382094_6c192ea0e3_o.jpg", "secret": "fc6ed202e2", "media": "photo", "latitude": "0", "id": "459382094", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 12:44:49", "license": "3", "title": "Look, Tulips!", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/211/459391655_abd8b39c90_o.jpg", "secret": "70e31b4b63", "media": "photo", "latitude": "0", "id": "459391655", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 12:45:16", "license": "3", "title": "The Old Bus", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/214/459391893_3dcb9cf54e_o.jpg", "secret": "72d41ac2ba", "media": "photo", "latitude": "0", "id": "459391893", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 12:46:20", "license": "3", "title": "Motorcycles", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/207/459392119_4e898f304e_o.jpg", "secret": "d491d83248", "media": "photo", "latitude": "0", "id": "459392119", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 16:31:42", "license": "3", "title": "In Motion", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/240/459382918_58eb7b2777_o.jpg", "secret": "59643484e6", "media": "photo", "latitude": "0", "id": "459382918", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 16:31:46", "license": "3", "title": "In Motion", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/233/459392431_ecd3195a2e_o.jpg", "secret": "99a50513f0", "media": "photo", "latitude": "0", "id": "459392431", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 16:31:47", "license": "3", "title": "In Motion", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/229/459392509_624f705736_o.jpg", "secret": "9509e9b5ae", "media": "photo", "latitude": "0", "id": "459392509", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 16:31:48", "license": "3", "title": "In Motion", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/225/459383232_c337a96173_o.jpg", "secret": "5b2f2e146c", "media": "photo", "latitude": "0", "id": "459383232", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 16:31:49", "license": "3", "title": "In Motion", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/459392671_ddb720c5c7_o.jpg", "secret": "bb63f43630", "media": "photo", "latitude": "0", "id": "459392671", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 16:31:51", "license": "3", "title": "In Motion", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/254/459383414_52bd1eada5_o.jpg", "secret": "414e0f1515", "media": "photo", "latitude": "0", "id": "459383414", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 16:31:56", "license": "3", "title": "In Motion", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/459383502_e01a961e9f_o.jpg", "secret": "e5b8f578b4", "media": "photo", "latitude": "0", "id": "459383502", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 17:36:27", "license": "3", "title": "On The Ferry", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/202/459393125_63f33510b5_o.jpg", "secret": "6c1836f285", "media": "photo", "latitude": "0", "id": "459393125", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-14 17:42:17", "license": "3", "title": "Headed For The Mainland", "text": "", "album_id": "72157600077565147", "longitude": "0", "url_o": "https://farm1.staticflickr.com/196/459393421_2f92c6f5a3_o.jpg", "secret": "3ce196e335", "media": "photo", "latitude": "0", "id": "459393421", "tags": "washington ride tulips motorcycle touring groupride skagitvalley hogblog tulipride2007"}, {"datetaken": "2007-04-01 12:24:32", "license": "3", "title": "10 Snowshoes", "text": "", "album_id": "72157616248069156", "longitude": "-123.082108", "url_o": "https://farm1.staticflickr.com/211/450939801_3da2c0bda0_o.jpg", "secret": "1692ca10f5", "media": "photo", "latitude": "49.379676", "id": "450939801", "tags": "mountain snow feet snowshoe bc hiking britishcolumbia grouse snowshoeing snowshoes grousemountain dammountain"}, {"datetaken": "2007-04-01 12:31:13", "license": "3", "title": "Pass It On", "text": "", "album_id": "72157616248069156", "longitude": "-123.079190", "url_o": "https://farm1.staticflickr.com/229/450944713_2e3fb47443_o.jpg", "secret": "b1284521c9", "media": "photo", "latitude": "49.385054", "id": "450944713", "tags": "mountain snow me snowshoe bc kick hiking britishcolumbia grouse snowshoeing grousemountain dammountain kickinthebutt"}, {"datetaken": "2007-04-01 12:47:53", "license": "3", "title": "At the bottom of the mountain", "text": "", "album_id": "72157616248069156", "longitude": "-123.080821", "url_o": "https://farm1.staticflickr.com/233/450940673_59f071a097_o.jpg", "secret": "9db5c429c7", "media": "photo", "latitude": "49.384104", "id": "450940673", "tags": "mountain snow snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 12:57:38", "license": "3", "title": "Back on Track", "text": "", "album_id": "72157616248069156", "longitude": "-123.079190", "url_o": "https://farm1.staticflickr.com/199/450932036_70fc67af92_o.jpg", "secret": "41bec561e8", "media": "photo", "latitude": "49.385054", "id": "450932036", "tags": "mountain snow me snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain nim dammountain"}, {"datetaken": "2007-04-01 13:06:34", "license": "3", "title": "Beautiful Day For Snowshoeing", "text": "", "album_id": "72157616248069156", "longitude": "-123.079190", "url_o": "https://farm1.staticflickr.com/225/450945485_3cb69a7911_o.jpg", "secret": "b7805d18c8", "media": "photo", "latitude": "49.385054", "id": "450945485", "tags": "mountain snow snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 13:09:32", "license": "3", "title": "Can We Go That Way?", "text": "", "album_id": "72157616248069156", "longitude": "-123.079190", "url_o": "https://farm1.staticflickr.com/230/450932644_e64f081907_o.jpg", "secret": "e6b2843d64", "media": "photo", "latitude": "49.385054", "id": "450932644", "tags": "mountain snow snowshoe bc hiking britishcolumbia grouse snowshoeing lucie grousemountain dammountain"}, {"datetaken": "2007-04-01 13:09:53", "license": "3", "title": "Snowshoe Crew", "text": "", "album_id": "72157616248069156", "longitude": "-123.079190", "url_o": "https://farm1.staticflickr.com/241/450946151_4453ccffd6_o.jpg", "secret": "04696580e3", "media": "photo", "latitude": "49.385054", "id": "450946151", "tags": "friends mountain snow me snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 13:37:39", "license": "3", "title": "Lazy Photographer", "text": "", "album_id": "72157616248069156", "longitude": "-123.079190", "url_o": "https://farm1.staticflickr.com/215/450948115_3c1e9d4f6e_o.jpg", "secret": "199ed01f14", "media": "photo", "latitude": "49.385054", "id": "450948115", "tags": "mountain snow snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 13:52:26", "license": "3", "title": "Jump, Jump", "text": "", "album_id": "72157616248069156", "longitude": "-123.081035", "url_o": "https://farm1.staticflickr.com/174/450941425_73b11debce_o.jpg", "secret": "a0df93af82", "media": "photo", "latitude": "49.394231", "id": "450941425", "tags": "mountain snow snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 14:19:20", "license": "3", "title": "Jump", "text": "", "album_id": "72157616248069156", "longitude": "-123.079190", "url_o": "https://farm1.staticflickr.com/234/450948389_c291eea882_o.jpg", "secret": "1755c752e8", "media": "photo", "latitude": "49.385054", "id": "450948389", "tags": "bw mountain snow dan me snowshoe jump bc hiking britishcolumbia grouse snowshoeing lucie grousemountain nim dammountain"}, {"datetaken": "2007-04-01 14:36:02", "license": "3", "title": "The Peak!", "text": "", "album_id": "72157616248069156", "longitude": "-123.081035", "url_o": "https://farm1.staticflickr.com/226/450946453_ca6021a5dc_o.jpg", "secret": "70b632df30", "media": "photo", "latitude": "49.394231", "id": "450946453", "tags": "mountain snow snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 14:44:06", "license": "3", "title": "Frosted", "text": "", "album_id": "72157616248069156", "longitude": "-123.081035", "url_o": "https://farm1.staticflickr.com/197/450942531_34b14bb5e8_o.jpg", "secret": "49979d95cd", "media": "photo", "latitude": "49.394231", "id": "450942531", "tags": "portrait mountain snow snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain nim frosted dammountain"}, {"datetaken": "2007-04-01 14:45:13", "license": "3", "title": "Lying Around", "text": "", "album_id": "72157616248069156", "longitude": "-123.081035", "url_o": "https://farm1.staticflickr.com/210/450943017_3f676140e9_o.jpg", "secret": "f61a889a13", "media": "photo", "latitude": "49.394231", "id": "450943017", "tags": "mountain snow snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 14:46:23", "license": "3", "title": "Butt Inspector Dan", "text": "", "album_id": "72157616248069156", "longitude": "-123.081035", "url_o": "https://farm1.staticflickr.com/216/450930294_484d9cf800_o.jpg", "secret": "09359c4ebe", "media": "photo", "latitude": "49.394231", "id": "450930294", "tags": "mountain snow dan snowshoe bc hiking britishcolumbia christina butt grouse booty snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 14:53:06", "license": "3", "title": "Snowshoeing Spiderman", "text": "", "album_id": "72157616248069156", "longitude": "-123.079190", "url_o": "https://farm1.staticflickr.com/193/450950827_586e6d965a_o.jpg", "secret": "fca95ce724", "media": "photo", "latitude": "49.385054", "id": "450950827", "tags": "mountain snow me snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 15:00:02", "license": "3", "title": "Taking a break on the peak", "text": "", "album_id": "72157616248069156", "longitude": "-123.081035", "url_o": "https://farm1.staticflickr.com/218/450935852_3f7fd33aaa_o.jpg", "secret": "ab2d7b926d", "media": "photo", "latitude": "49.394231", "id": "450935852", "tags": "mountain snow snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 15:24:24", "license": "3", "title": "Safe Return", "text": "", "album_id": "72157616248069156", "longitude": "-123.078074", "url_o": "https://farm1.staticflickr.com/192/450930634_e4b57d4e9f_o.jpg", "secret": "67a0bc934f", "media": "photo", "latitude": "49.388854", "id": "450930634", "tags": "mountain snow snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 15:26:48", "license": "3", "title": "She Didn't See it Coming", "text": "", "album_id": "72157616248069156", "longitude": "-123.081035", "url_o": "https://farm1.staticflickr.com/190/450933730_6324cdd770_o.jpg", "secret": "61b3e1140d", "media": "photo", "latitude": "49.394231", "id": "450933730", "tags": "mountain snow me snowshoe bc hiking britishcolumbia grouse snowball snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 15:26:54", "license": "3", "title": "Smoking Snowball", "text": "", "album_id": "72157616248069156", "longitude": "-123.081035", "url_o": "https://farm1.staticflickr.com/216/450947419_54676c525b_o.jpg", "secret": "73ffc68463", "media": "photo", "latitude": "49.394231", "id": "450947419", "tags": "mountain snow dan snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 15:32:03", "license": "3", "title": "Naughty Hikers", "text": "", "album_id": "72157616248069156", "longitude": "-123.081035", "url_o": "https://farm1.staticflickr.com/238/450951049_df4fc95c3d_o.jpg", "secret": "62e8a85be9", "media": "photo", "latitude": "49.394231", "id": "450951049", "tags": "mountain snow sign danger snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 15:40:59", "license": "3", "title": "Ice Climbing", "text": "", "album_id": "72157616248069156", "longitude": "-123.081035", "url_o": "https://farm1.staticflickr.com/181/450931104_45f48457b1_o.jpg", "secret": "971b6d3dd7", "media": "photo", "latitude": "49.394231", "id": "450931104", "tags": "mountain snow snowshoe bc hiking britishcolumbia grouse snowshoeing icicles grousemountain dammountain"}, {"datetaken": "2007-04-01 15:49:17", "license": "3", "title": "Head in the Trees", "text": "", "album_id": "72157616248069156", "longitude": "-123.081035", "url_o": "https://farm1.staticflickr.com/206/450949705_492863ca2a_o.jpg", "secret": "6f61cb5fa6", "media": "photo", "latitude": "49.394231", "id": "450949705", "tags": "mountain snow dan snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 16:04:18", "license": "3", "title": "Wedgie", "text": "", "album_id": "72157616248069156", "longitude": "-123.081035", "url_o": "https://farm1.staticflickr.com/173/450950039_87a6718ab8_o.jpg", "secret": "5c204ae4ec", "media": "photo", "latitude": "49.394231", "id": "450950039", "tags": "mountain snow me snowshoe bc hiking britishcolumbia grouse snowshoeing lucie grousemountain wedgie dammountain"}, {"datetaken": "2007-04-01 16:05:15", "license": "3", "title": "Penguin Style", "text": "", "album_id": "72157616248069156", "longitude": "-123.081035", "url_o": "https://farm1.staticflickr.com/248/450951235_a11ec5146d_o.jpg", "secret": "ce9d1068a0", "media": "photo", "latitude": "49.394231", "id": "450951235", "tags": "mountain snow me snowshoe penguin bc hiking britishcolumbia grouse snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 16:41:10", "license": "3", "title": "Don't Slip", "text": "", "album_id": "72157616248069156", "longitude": "-123.079190", "url_o": "https://farm1.staticflickr.com/171/450951455_2e1d6a2f0a_o.jpg", "secret": "aed6001fd1", "media": "photo", "latitude": "49.385054", "id": "450951455", "tags": "mountain snow snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 16:43:38", "license": "3", "title": "Danger! Off Trail", "text": "", "album_id": "72157616248069156", "longitude": "-123.079190", "url_o": "https://farm1.staticflickr.com/200/450950689_54bb5f318d_o.jpg", "secret": "c854579c95", "media": "photo", "latitude": "49.385054", "id": "450950689", "tags": "mountain snow dan me snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-01 17:30:58", "license": "3", "title": "The Descent", "text": "", "album_id": "72157616248069156", "longitude": "-123.082494", "url_o": "https://farm1.staticflickr.com/221/450944445_f3aa685448_o.jpg", "secret": "9f05ec77b6", "media": "photo", "latitude": "49.379760", "id": "450944445", "tags": "mountain snow snowshoe bc hiking britishcolumbia grouse snowshoeing grousemountain dammountain"}, {"datetaken": "2007-04-06 16:03:46", "license": "1", "title": "IMG_9402", "text": "", "album_id": "72157600053262184", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/449218153_9f78402aac_o.jpg", "secret": "9159eb5780", "media": "photo", "latitude": "0", "id": "449218153", "tags": "monica kristen"}, {"datetaken": "2007-04-06 16:04:07", "license": "1", "title": "IMG_9406", "text": "", "album_id": "72157600053262184", "longitude": "0", "url_o": "https://farm1.staticflickr.com/233/449218181_9862bca433_o.jpg", "secret": "66fbad6b52", "media": "photo", "latitude": "0", "id": "449218181", "tags": "meghan monica"}, {"datetaken": "2007-04-06 16:30:52", "license": "1", "title": "IMG_9409", "text": "", "album_id": "72157600053262184", "longitude": "0", "url_o": "https://farm1.staticflickr.com/244/449218215_5b7f4cdd09_o.jpg", "secret": "c1fcdd8b78", "media": "photo", "latitude": "0", "id": "449218215", "tags": "freeway bobespanja"}, {"datetaken": "2007-04-06 17:04:36", "license": "1", "title": "IMG_9410", "text": "", "album_id": "72157600053262184", "longitude": "0", "url_o": "https://farm1.staticflickr.com/208/449218241_0c25fad003_o.jpg", "secret": "964de5000e", "media": "photo", "latitude": "0", "id": "449218241", "tags": "sky sun clouds freeway"}, {"datetaken": "2007-04-06 17:04:43", "license": "1", "title": "IMG_9411", "text": "", "album_id": "72157600053262184", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/449218277_4d88d6bdde_o.jpg", "secret": "e56c322536", "media": "photo", "latitude": "0", "id": "449218277", "tags": "sky sun clouds freeway"}, {"datetaken": "2007-04-06 17:20:58", "license": "1", "title": "IMG_9412", "text": "", "album_id": "72157600053262184", "longitude": "-118.259700", "url_o": "https://farm1.staticflickr.com/196/449212634_aa9a35d8a8_o.jpg", "secret": "dad98e0dc2", "media": "photo", "latitude": "34.069915", "id": "449212634", "tags": ""}, {"datetaken": "2007-04-06 17:21:31", "license": "1", "title": "IMG_9413", "text": "", "album_id": "72157600053262184", "longitude": "-118.259764", "url_o": "https://farm1.staticflickr.com/246/449218337_35afaa8f6c_o.jpg", "secret": "d717672541", "media": "photo", "latitude": "34.072741", "id": "449218337", "tags": ""}, {"datetaken": "2007-04-06 17:29:02", "license": "1", "title": "IMG_9415", "text": "", "album_id": "72157600053262184", "longitude": "-118.265773", "url_o": "https://farm1.staticflickr.com/213/449218379_c73ab7b7fb_o.jpg", "secret": "1f70a27a16", "media": "photo", "latitude": "34.077012", "id": "449218379", "tags": "brick"}, {"datetaken": "2007-04-06 17:30:48", "license": "1", "title": "IMG_9416", "text": "", "album_id": "72157600053262184", "longitude": "-118.265773", "url_o": "https://farm1.staticflickr.com/169/449218481_da11102616_o.jpg", "secret": "6931cb4990", "media": "photo", "latitude": "34.077012", "id": "449218481", "tags": "brick obey"}, {"datetaken": "2007-04-06 17:30:51", "license": "1", "title": "IMG_9417", "text": "", "album_id": "72157600053262184", "longitude": "-118.265773", "url_o": "https://farm1.staticflickr.com/206/449218545_8ff4821def_o.jpg", "secret": "04fc761b7e", "media": "photo", "latitude": "34.077012", "id": "449218545", "tags": "brick obey"}, {"datetaken": "2007-04-06 17:36:57", "license": "1", "title": "IMG_9418", "text": "", "album_id": "72157600053262184", "longitude": "-118.264914", "url_o": "https://farm1.staticflickr.com/174/449212958_78adeb2902_o.jpg", "secret": "deeda984ab", "media": "photo", "latitude": "34.076932", "id": "449212958", "tags": "losangeles farmersmarket books laughlines mountaingoatsreference"}, {"datetaken": "2007-04-06 17:46:53", "license": "1", "title": "IMG_9422", "text": "", "album_id": "72157600053262184", "longitude": "-118.265858", "url_o": "https://farm1.staticflickr.com/187/449212992_694e9fcfd5_o.jpg", "secret": "e7060b5965", "media": "photo", "latitude": "34.077531", "id": "449212992", "tags": "records mooney sealevelrecords"}, {"datetaken": "2007-04-06 17:48:14", "license": "1", "title": "IMG_9425", "text": "", "album_id": "72157600053262184", "longitude": "-118.265858", "url_o": "https://farm1.staticflickr.com/197/449220313_7a3e894897_o.jpg", "secret": "6637caf59e", "media": "photo", "latitude": "34.077531", "id": "449220313", "tags": "monica kristen sealevelrecords"}, {"datetaken": "2007-04-06 17:48:31", "license": "1", "title": "IMG_9426", "text": "", "album_id": "72157600053262184", "longitude": "-118.265858", "url_o": "https://farm1.staticflickr.com/223/449220361_7236238494_o.jpg", "secret": "64030b3438", "media": "photo", "latitude": "34.077531", "id": "449220361", "tags": "monica kristen sealevelrecords"}, {"datetaken": "2007-04-06 18:01:32", "license": "1", "title": "IMG_9432", "text": "", "album_id": "72157600053262184", "longitude": "-118.265858", "url_o": "https://farm1.staticflickr.com/245/449214624_9cdec10f16_o.jpg", "secret": "ce9575045b", "media": "photo", "latitude": "34.077531", "id": "449214624", "tags": "monica sealevelrecords"}, {"datetaken": "2007-04-06 18:12:20", "license": "1", "title": "IMG_9433", "text": "", "album_id": "72157600053262184", "longitude": "-118.265858", "url_o": "https://farm1.staticflickr.com/251/449220409_801f0b3fa3_o.jpg", "secret": "7f7d12c428", "media": "photo", "latitude": "34.077531", "id": "449220409", "tags": "meghan monica kristen mooney"}, {"datetaken": "2007-04-06 18:15:14", "license": "1", "title": "IMG_9434", "text": "", "album_id": "72157600053262184", "longitude": "-118.266609", "url_o": "https://farm1.staticflickr.com/216/449214672_00f770cc71_o.jpg", "secret": "11f6f60b31", "media": "photo", "latitude": "34.078584", "id": "449214672", "tags": "flowers orange man losangeles happytoms"}, {"datetaken": "2007-04-06 18:22:50", "license": "1", "title": "IMG_9438", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/214/449214716_d0443159c3_o.jpg", "secret": "9440042d6c", "media": "photo", "latitude": "34.078149", "id": "449214716", "tags": "tortacubana"}, {"datetaken": "2007-04-06 18:28:14", "license": "1", "title": "IMG_9442", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/254/449220491_1145cf456b_o.jpg", "secret": "57c0057175", "media": "photo", "latitude": "34.078149", "id": "449220491", "tags": "monica kristen"}, {"datetaken": "2007-04-06 18:29:05", "license": "1", "title": "IMG_9446", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/237/449220517_85a16da2e3_o.jpg", "secret": "1a005a2b8e", "media": "photo", "latitude": "34.078149", "id": "449220517", "tags": "candle monica"}, {"datetaken": "2007-04-06 18:41:05", "license": "1", "title": "IMG_9448", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/250/449220539_b11674dff1_o.jpg", "secret": "f53f191970", "media": "photo", "latitude": "34.078149", "id": "449220539", "tags": "meghan"}, {"datetaken": "2007-04-06 19:04:17", "license": "1", "title": "IMG_9449", "text": "", "album_id": "72157600053262184", "longitude": "-118.265773", "url_o": "https://farm1.staticflickr.com/183/449220587_8cad607895_o.jpg", "secret": "c8fecd5067", "media": "photo", "latitude": "34.077012", "id": "449220587", "tags": "losangeles meghan monica kristen"}, {"datetaken": "2007-04-06 19:15:28", "license": "1", "title": "IMG_9450", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/190/449214954_3802239a59_o.jpg", "secret": "9d061bf52d", "media": "photo", "latitude": "34.078149", "id": "449214954", "tags": "mooney"}, {"datetaken": "2007-04-06 19:15:33", "license": "1", "title": "IMG_9451", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/237/449215088_2428a53202_o.jpg", "secret": "a26983bb5d", "media": "photo", "latitude": "34.078149", "id": "449215088", "tags": "mooney"}, {"datetaken": "2007-04-06 19:30:07", "license": "1", "title": "IMG_9454", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/217/449220775_0932f3c2e6_o.jpg", "secret": "c50dd28a6c", "media": "photo", "latitude": "34.078149", "id": "449220775", "tags": "wall sept14soon"}, {"datetaken": "2007-04-06 19:30:16", "license": "1", "title": "IMG_9455", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/224/449215714_287ad8fcf9_o.jpg", "secret": "a5f563c2a9", "media": "photo", "latitude": "34.078149", "id": "449215714", "tags": ""}, {"datetaken": "2007-04-06 20:50:05", "license": "1", "title": "IMG_9465", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/195/449221405_da77c9d490_o.jpg", "secret": "e654cc8be6", "media": "photo", "latitude": "34.078149", "id": "449221405", "tags": "losangeles candle theecho lastfm:event=139329"}, {"datetaken": "2007-04-06 21:10:43", "license": "1", "title": "IMG_9468", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/232/449215790_37d2670a4e_o.jpg", "secret": "f7ddd5c2a3", "media": "photo", "latitude": "34.078149", "id": "449215790", "tags": "losangeles theecho wetconfetti lastfm:event=139329"}, {"datetaken": "2007-04-06 21:27:49", "license": "1", "title": "IMG_9469", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/230/449215838_f1069ee3ba_o.jpg", "secret": "0e06329e4a", "media": "photo", "latitude": "34.078149", "id": "449215838", "tags": "losangeles theecho wetconfetti lastfm:event=139329"}, {"datetaken": "2007-04-06 21:46:18", "license": "1", "title": "IMG_9473", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/204/449215884_408c022efa_o.jpg", "secret": "37f043373f", "media": "photo", "latitude": "34.078149", "id": "449215884", "tags": "losangeles meghan theecho lastfm:event=139329"}, {"datetaken": "2007-04-06 21:46:25", "license": "1", "title": "IMG_9474", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/253/449215936_0399e1aa30_o.jpg", "secret": "1b739d665d", "media": "photo", "latitude": "34.078149", "id": "449215936", "tags": "losangeles meghan monica theecho lastfm:event=139329"}, {"datetaken": "2007-04-06 21:49:27", "license": "1", "title": "IMG_9475", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/218/449221703_85d8a08d25_o.jpg", "secret": "bad325d27f", "media": "photo", "latitude": "34.078149", "id": "449221703", "tags": "losangeles meghan stage theecho lastfm:event=139329"}, {"datetaken": "2007-04-06 22:05:47", "license": "1", "title": "IMG_9478", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/240/449216034_6e4a4353c1_o.jpg", "secret": "0594471d44", "media": "photo", "latitude": "34.078149", "id": "449216034", "tags": "losangeles kathy theecho thethermals lastfm:event=139329"}, {"datetaken": "2007-04-06 22:05:56", "license": "1", "title": "IMG_9479", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/224/449222325_70c50470a0_o.jpg", "secret": "63f81dfb03", "media": "photo", "latitude": "34.078149", "id": "449222325", "tags": "losangeles kathy hutch theecho thethermals lastfm:event=139329"}, {"datetaken": "2007-04-06 22:06:08", "license": "1", "title": "IMG_9480", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/199/449222373_c7c628df6f_o.jpg", "secret": "471bdddd64", "media": "photo", "latitude": "34.078149", "id": "449222373", "tags": "losangeles kathy hutch theecho thethermals lastfm:event=139329"}, {"datetaken": "2007-04-06 22:12:24", "license": "1", "title": "IMG_9482", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/202/449216866_7c5e88da30_o.jpg", "secret": "aca3ad86fa", "media": "photo", "latitude": "34.078149", "id": "449216866", "tags": "losangeles kathy hutch theecho thethermals lastfm:event=139329"}, {"datetaken": "2007-04-06 22:18:25", "license": "1", "title": "IMG_9483", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/249/449222485_01d1a75b8d_o.jpg", "secret": "eeffb8671a", "media": "photo", "latitude": "34.078149", "id": "449222485", "tags": "losangeles theecho thethermals lastfm:event=139329"}, {"datetaken": "2007-04-06 22:18:35", "license": "1", "title": "IMG_9484", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/212/449222529_a9298afc43_o.jpg", "secret": "8780323782", "media": "photo", "latitude": "34.078149", "id": "449222529", "tags": "losangeles hutch theecho thethermals hutchharris lastfm:event=139329"}, {"datetaken": "2007-04-06 22:19:34", "license": "1", "title": "IMG_9485", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/199/449222567_2747e97de7_o.jpg", "secret": "32703d6ac7", "media": "photo", "latitude": "34.078149", "id": "449222567", "tags": "losangeles kathy theecho thethermals lastfm:event=139329"}, {"datetaken": "2007-04-06 22:34:39", "license": "1", "title": "IMG_9492", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/176/449217090_91b804d19c_o.jpg", "secret": "8cf9107f6a", "media": "photo", "latitude": "34.078149", "id": "449217090", "tags": "losangeles kathy theecho thethermals lastfm:event=139329 feedbackyes"}, {"datetaken": "2007-04-06 22:40:13", "license": "1", "title": "IMG_9496", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/218/449222705_ecb5a09a14_o.jpg", "secret": "44119715a4", "media": "photo", "latitude": "34.078149", "id": "449222705", "tags": "losangeles theecho thethermals lastfm:event=139329"}, {"datetaken": "2007-04-06 23:07:23", "license": "1", "title": "IMG_9500", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/171/449222733_517ea5c92d_o.jpg", "secret": "d77c0c82f7", "media": "photo", "latitude": "34.078149", "id": "449222733", "tags": "losangeles kristen setlist theecho thethermals lastfm:event=139329"}, {"datetaken": "2007-04-06 23:07:29", "license": "1", "title": "IMG_9501", "text": "", "album_id": "72157600053262184", "longitude": "-118.266663", "url_o": "https://farm1.staticflickr.com/237/449222777_064442ec1b_o.jpg", "secret": "d5e68c1092", "media": "photo", "latitude": "34.078149", "id": "449222777", "tags": "losangeles kristen setlist theecho thethermals lastfm:event=139329"}, {"datetaken": "2007-04-22 11:33:30", "license": "1", "title": "Gone Fishin'", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/469169841_aed0617870_o.jpg", "secret": "8f75aa28da", "media": "photo", "latitude": "0", "id": "469169841", "tags": "fish net scale abbey childhood river fishing child yorkshire wharf dales boltonabbey wharfdale upcoming:event=172872 leedsgroupouting"}, {"datetaken": "2007-04-22 11:53:13", "license": "1", "title": "Paul falls for latest \"get rich quick\" scheme", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/196/468956365_aaf2c8f90b_o.jpg", "secret": "7d795625de", "media": "photo", "latitude": "0", "id": "468956365", "tags": "money tree paul flickr meetup coins leeds boltonabbey madpaul upcoming:event=172872"}, {"datetaken": "2007-04-22 12:00:48", "license": "1", "title": "Yorkshire wall traversal", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/210/468934737_2da573ff47_o.jpg", "secret": "bc73ca2f34", "media": "photo", "latitude": "0", "id": "468934737", "tags": "upcoming:event=172872"}, {"datetaken": "2007-04-22 12:04:23", "license": "1", "title": "Man vs Nature", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/468985313_78dbee8839_o.jpg", "secret": "fbb1d9b726", "media": "photo", "latitude": "0", "id": "468985313", "tags": "tree nature jon flickr photographer group leeds roots visit boltonabbey strawbleu upcoming:event=172872"}, {"datetaken": "2007-04-22 12:06:43", "license": "1", "title": "Roll on summer", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/206/469157956_bf2252393a_o.jpg", "secret": "9172c5afa9", "media": "photo", "latitude": "0", "id": "469157956", "tags": "flowers flower tree abbey grass river spring yorkshire lazydays dales boltonabbey upcoming:event=172872 leedsgroupouting wishihadaboat togodriftingdownstream whilereadingabook onhowtocopewithrapids"}, {"datetaken": "2007-04-22 12:16:20", "license": "1", "title": "Union", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/198/469157550_468c15e503_o.jpg", "secret": "57a6b5d638", "media": "photo", "latitude": "0", "id": "469157550", "tags": "abbey grass cow cows beef yorkshire bull bulls pasture herd bovine dales boltonabbey inquisitive bovinity upcoming:event=172872 leedsgroupouting"}, {"datetaken": "2007-04-22 12:16:51", "license": "1", "title": "outtake: photography rule #1 - have an exit strategy", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/202/468848270_2a40b9a419_o.jpg", "secret": "0f7e70efc9", "media": "photo", "latitude": "0", "id": "468848270", "tags": "cow bull fearless braying upcoming:event=172872 mildpanic ornobull"}, {"datetaken": "2007-04-22 12:27:11", "license": "1", "title": "Can't beat a nice walk with the missus.", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/226/469057499_f6b5c2c78f_o.jpg", "secret": "dfc43b8537", "media": "photo", "latitude": "0", "id": "469057499", "tags": "duck ducks quack waddle upcoming:event=172872"}, {"datetaken": "2007-04-22 12:51:35", "license": "1", "title": "Angle", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/208/469169623_1f65f5f9d5_o.jpg", "secret": "430f14c6d8", "media": "photo", "latitude": "0", "id": "469169623", "tags": "trees tree abbey woodland spring angle yorkshire fromthehip dales boltonabbey upcoming:event=172872 leedsgroupouting"}, {"datetaken": "2007-04-22 13:00:16", "license": "1", "title": "Valley of Desolation", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/469169159_aeb04da42d_o.jpg", "secret": "a782653ae0", "media": "photo", "latitude": "0", "id": "469169159", "tags": "abbey river yorkshire valley wharf dales desolation boltonabbey valleyofdesolation wharfdale upcoming:event=172872 leedsgroupouting"}, {"datetaken": "2007-04-22 13:20:13", "license": "1", "title": "Valley of Desolation", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/226/469169383_402cd6b9a9_o.jpg", "secret": "1c4a09f088", "media": "photo", "latitude": "0", "id": "469169383", "tags": "trees reflection tree abbey rock woodland river rocks yorkshire valley wharf dales desolation boltonabbey wharfdale upcoming:event=172872 leedsgroupouting"}, {"datetaken": "2007-04-22 13:22:35", "license": "1", "title": "Beautiful vs Scarey", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/198/469170755_d801799b28_o.jpg", "secret": "c62a8954d1", "media": "photo", "latitude": "0", "id": "469170755", "tags": "wood trees beautiful beauty abbey woodland spring woods yorkshire wideangle spooky scarey dales intimidating boltonabbey upcoming:event=172872 leedsgroupouting"}, {"datetaken": "2007-04-22 14:12:14", "license": "1", "title": "What secrets await", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/204/469157216_0fd0152edb_o.jpg", "secret": "1248feade6", "media": "photo", "latitude": "0", "id": "469157216", "tags": "abbey gate lock path yorkshire chain access dales barred boltonabbey upcoming:event=172872 leedsgroupouting wonderwhereitleads"}, {"datetaken": "2007-04-22 14:31:29", "license": "1", "title": "The Strid", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/220/469168875_f67c61ad72_o.jpg", "secret": "9758e56e42", "media": "photo", "latitude": "0", "id": "469168875", "tags": "abbey danger river dangerous yorkshire wharf dales boltonabbey strid thestrid wharfdale upcoming:event=172872 leedsgroupouting"}, {"datetaken": "2007-04-22 14:40:59", "license": "1", "title": "Flat 15A, The Strid Woods, Bolton Abbey, BD23 6EX", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/214/468839109_2be2f0bde8_o.jpg", "secret": "92a49e6662", "media": "photo", "latitude": "0", "id": "468839109", "tags": "tree bird home nature box yorkshire dales boltonabbey thestrid upcoming:event=172872"}, {"datetaken": "2007-04-22 16:26:42", "license": "1", "title": "preparation", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/225/469001682_06a5798d3c_o.jpg", "secret": "87daa8fad6", "media": "photo", "latitude": "0", "id": "469001682", "tags": "river crazy stones steps stepping wharf preparation boltonabbey wharfdale upcoming:event=172872 takashiscastle"}, {"datetaken": "2007-04-22 16:29:26", "license": "1", "title": "Bolton Abbey", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/190/469156990_da475dab75_o.jpg", "secret": "92cf84e133", "media": "photo", "latitude": "0", "id": "469156990", "tags": "abbey grave graveyard ruins yorkshire headstone headstones symmetry graves daffodills dales boltonabbey upcoming:event=172872 leedsgroupouting"}, {"datetaken": "2007-04-22 16:30:51", "license": "1", "title": "Grim up North", "text": "", "album_id": "72157600113173792", "longitude": "0", "url_o": "https://farm1.staticflickr.com/229/469157356_fd3f6ee8dc_o.jpg", "secret": "6c7025d13b", "media": "photo", "latitude": "0", "id": "469157356", "tags": "beach water abbey grass rain river landscape countryside yorkshire wharf bleak dales boltonabbey upcoming:event=172872 leedsgroupouting"}, {"datetaken": "2007-05-13 12:15:05", "license": "1", "title": "IMG_4645", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/219/497340320_173c70c603_o.jpg", "secret": "601fc01522", "media": "photo", "latitude": "34.878608", "id": "497340320", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 12:16:40", "license": "1", "title": "the destination", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/214/497341892_d46fa09f14_o.jpg", "secret": "75236295a1", "media": "photo", "latitude": "34.878608", "id": "497341892", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 12:25:39", "license": "1", "title": "IMG_4651", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/223/497372663_7cdc14fcf6_o.jpg", "secret": "02a1164cf3", "media": "photo", "latitude": "34.878608", "id": "497372663", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 12:25:50", "license": "1", "title": "IMG_4653", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/193/497345240_e80b80f70a_o.jpg", "secret": "0bcc0c5422", "media": "photo", "latitude": "34.878608", "id": "497345240", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 12:36:38", "license": "1", "title": "IMG_4658", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/213/497375995_87360ccc5e_o.jpg", "secret": "a6bf5921d7", "media": "photo", "latitude": "34.878608", "id": "497375995", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 12:37:26", "license": "1", "title": "Kim", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/223/497348140_2d9e54c4fc_o.jpg", "secret": "bd809bcb2e", "media": "photo", "latitude": "34.878608", "id": "497348140", "tags": "kim az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 12:56:23", "license": "1", "title": "IMG_4661", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/214/497350118_0aa1b0bf3a_o.jpg", "secret": "9c0fc83e83", "media": "photo", "latitude": "34.878608", "id": "497350118", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 12:56:31", "license": "1", "title": "IMG_4663", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/206/497380741_04b60fb20d_o.jpg", "secret": "815e4d732e", "media": "photo", "latitude": "34.878608", "id": "497380741", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 12:56:37", "license": "1", "title": "IMG_4664", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/189/497353962_4084de4502_o.jpg", "secret": "f2615fc559", "media": "photo", "latitude": "34.878608", "id": "497353962", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 13:00:11", "license": "1", "title": "IMG_4668", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/210/497384589_c826158b3c_o.jpg", "secret": "ab760a8197", "media": "photo", "latitude": "34.878608", "id": "497384589", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 13:00:46", "license": "1", "title": "sunlight glistens through", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/220/497357398_a6f1f32e45_o.jpg", "secret": "b9feba45dc", "media": "photo", "latitude": "34.878608", "id": "497357398", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 13:21:19", "license": "1", "title": "IMG_4675", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/221/497358860_d0f192312a_o.jpg", "secret": "ce51347398", "media": "photo", "latitude": "34.878608", "id": "497358860", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 13:21:23", "license": "1", "title": "IMG_4676", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/201/497388841_9d1616c517_o.jpg", "secret": "09f0e20683", "media": "photo", "latitude": "34.878608", "id": "497388841", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 13:21:28", "license": "1", "title": "leaf detail", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/216/497389881_aabe31d154_o.jpg", "secret": "7c9839e883", "media": "photo", "latitude": "34.878608", "id": "497389881", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 13:28:00", "license": "1", "title": "IMG_4685", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/222/497391661_7726e9d657_o.jpg", "secret": "8d5aad3bef", "media": "photo", "latitude": "34.878608", "id": "497391661", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 13:30:06", "license": "1", "title": "IMG_4686", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/193/497364324_e6ea1761c6_o.jpg", "secret": "50be88ba63", "media": "photo", "latitude": "34.878608", "id": "497364324", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 13:38:40", "license": "1", "title": "Mom crossing", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/229/497394813_9fbbdb851d_o.jpg", "secret": "44fc7d5d42", "media": "photo", "latitude": "34.878608", "id": "497394813", "tags": "family mom az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 13:39:35", "license": "1", "title": "Kim crosses", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/203/497367290_2cb0bd2a25_o.jpg", "secret": "5a12e21cee", "media": "photo", "latitude": "34.878608", "id": "497367290", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 13:42:08", "license": "1", "title": "whipple cholla", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/222/497397289_05a7acae83_o.jpg", "secret": "c5a8cf925c", "media": "photo", "latitude": "34.878608", "id": "497397289", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 13:42:23", "license": "1", "title": "whipple cholla detail", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/217/497368950_f7acc275ae_o.jpg", "secret": "5db08a7476", "media": "photo", "latitude": "34.878608", "id": "497368950", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 13:47:33", "license": "1", "title": "some great canyon walls", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/211/497399727_9dbd2a4deb_o.jpg", "secret": "6fd2a00a2a", "media": "photo", "latitude": "34.878608", "id": "497399727", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 13:52:49", "license": "1", "title": "swimming hole", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/222/497401021_762a2df659_o.jpg", "secret": "c9d40d5a38", "media": "photo", "latitude": "34.878608", "id": "497401021", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 13:55:17", "license": "1", "title": "swimming hole", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/228/497373216_03ba3166b0_o.jpg", "secret": "9b081d00e8", "media": "photo", "latitude": "34.878608", "id": "497373216", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 13:55:55", "license": "1", "title": "Parsons Trail, Sycamore Canyon WIlderness Area", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/195/497403469_ae282e4831_o.jpg", "secret": "d0a766d767", "media": "photo", "latitude": "34.878608", "id": "497403469", "tags": "az mothersday riparian coconinonationalforest scottandkimmie parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 13:58:23", "license": "1", "title": "crossing the creek", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/213/497347355_46bdc57c92_o.jpg", "secret": "f71e7f6607", "media": "photo", "latitude": "34.878608", "id": "497347355", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 14:05:29", "license": "1", "title": "IMG_4718", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/207/497323288_6bbccd227d_o.jpg", "secret": "063e8e02e9", "media": "photo", "latitude": "34.878608", "id": "497323288", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 14:31:37", "license": "1", "title": "looking up during a snack break", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/228/497353703_df2f146616_o.jpg", "secret": "ed4c3a9e5a", "media": "photo", "latitude": "34.878608", "id": "497353703", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 14:36:42", "license": "1", "title": "Mom", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/203/497328262_7cd89dfc31_o.jpg", "secret": "67084c1a5a", "media": "photo", "latitude": "34.878608", "id": "497328262", "tags": "family az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 15:02:42", "license": "1", "title": "IMG_4738", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/196/497348849_ac86fb5f25_o.jpg", "secret": "7de0581c05", "media": "photo", "latitude": "34.878608", "id": "497348849", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 15:02:55", "license": "1", "title": "IMG_4741", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/224/497350215_e163d13171_o.jpg", "secret": "3906b3c47f", "media": "photo", "latitude": "34.878608", "id": "497350215", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 15:07:58", "license": "1", "title": "IMG_4744", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/218/497355839_3bcaf17d41_o.jpg", "secret": "f51e2f6cdf", "media": "photo", "latitude": "34.878608", "id": "497355839", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 15:42:12", "license": "1", "title": "IMG_4746", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/197/497359029_ac32c8cabd_o.jpg", "secret": "d1235a883a", "media": "photo", "latitude": "34.878608", "id": "497359029", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 15:42:26", "license": "1", "title": "Kim surveys the landscape", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/217/497360857_614d3666e1_o.jpg", "secret": "2870be30f9", "media": "photo", "latitude": "34.878608", "id": "497360857", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 15:42:55", "license": "1", "title": "Kim pondering the view", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/208/497333938_36038ab9f7_o.jpg", "secret": "c0d1f1d8b4", "media": "photo", "latitude": "34.878608", "id": "497333938", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 15:45:19", "license": "1", "title": "IMG_4760", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/207/497364639_d1e846fe4e_o.jpg", "secret": "17b60f948a", "media": "photo", "latitude": "34.878608", "id": "497364639", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 15:49:53", "license": "1", "title": "a fine riparian zone", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/177/497366395_764c665cf7_o.jpg", "secret": "68656928dd", "media": "photo", "latitude": "34.878608", "id": "497366395", "tags": "az mothersday riparian coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea"}, {"datetaken": "2007-05-13 15:55:09", "license": "1", "title": "Our Forester overlooking the canyon", "text": "", "album_id": "72157600212596308", "longitude": "-112.067713", "url_o": "https://farm1.staticflickr.com/203/497338730_5fc3542dfd_o.jpg", "secret": "f93fb028a5", "media": "photo", "latitude": "34.878608", "id": "497338730", "tags": "az mothersday riparian forester coconinonationalforest parsonstrail 051307 sycamorecanyonwildernessarea wherehasourforesterbeen"}, {"datetaken": "2007-06-02 11:53:51", "license": "3", "title": "Candid of Jeremy Bulloch & Peter Mayhew", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1165/532695019_998d2d63f4_o.jpg", "secret": "c734ec4aee", "media": "photo", "latitude": "0", "id": "532695019", "tags": "star tn knoxville candid chewy jeremy adventure peter boba wars con chewbacca 2007 fett mayhew bulloch adventurecon"}, {"datetaken": "2007-06-02 11:54:17", "license": "3", "title": "Candid at Adventure Con 2007", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1012/532695039_2a9e281a6a_o.jpg", "secret": "c08e99b7de", "media": "photo", "latitude": "0", "id": "532695039", "tags": "tn knoxville candid william adventure con 2007 adventurecon mapother"}, {"datetaken": "2007-06-02 11:56:57", "license": "3", "title": "Me & Peter Mayhew", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1098/532695077_f795347849_o.jpg", "secret": "62a8fa2939", "media": "photo", "latitude": "0", "id": "532695077", "tags": "star tn knoxville chewy adventure peter movies wars con chewbacca 2007 mayhew adventurecon"}, {"datetaken": "2007-06-02 12:16:22", "license": "3", "title": "Tamara & Walter Koenig", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1315/532598394_770fd6e4d9_o.jpg", "secret": "fb06aecfa4", "media": "photo", "latitude": "0", "id": "532598394", "tags": "startrek tn knoxville adventure con 2007 chekov adventurecon walterkoenig"}, {"datetaken": "2007-06-02 12:21:13", "license": "3", "title": "Me & Richard Kiel", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1085/532695135_af808e7c4d_o.jpg", "secret": "a6b5783bed", "media": "photo", "latitude": "0", "id": "532695135", "tags": "tn knoxville adventure richard jaws bond movies con kiel 2007 jamesbond happygilmore adventurecon"}, {"datetaken": "2007-06-02 12:21:52", "license": "3", "title": "Richard Kiel Signs an Autograph for Tamara", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1237/532695161_9b20a013cc_o.jpg", "secret": "4eb161eacf", "media": "photo", "latitude": "0", "id": "532695161", "tags": "photo tn knoxville adventure richard jaws bond movies con kiel 2007 jamesbond autographed happygilmore adventurecon"}, {"datetaken": "2007-06-02 12:22:29", "license": "3", "title": "Tamara & Richard Kiel", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1073/532695197_b00ae24534_o.jpg", "secret": "5ff01ad3b2", "media": "photo", "latitude": "0", "id": "532695197", "tags": "tn knoxville adventure richard jaws bond movies con kiel 2007 jamesbond happygilmore adventurecon"}, {"datetaken": "2007-06-02 12:36:30", "license": "3", "title": "Captain Jack Sparrow", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1129/532598520_cf617b0f29_o.jpg", "secret": "baa72e5cd3", "media": "photo", "latitude": "0", "id": "532598520", "tags": "tn knoxville adventure con 2007 adventurecon"}, {"datetaken": "2007-06-02 12:36:41", "license": "3", "title": "Me & Captain Jack Sparrow", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1153/532695235_cd0367aeec_o.jpg", "secret": "37d723fd94", "media": "photo", "latitude": "0", "id": "532695235", "tags": "jack tn knoxville adventure sparrow pirate captain con 2007 adventurecon"}, {"datetaken": "2007-06-02 12:44:42", "license": "3", "title": "William Mapother Obliges", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1167/532695321_8f332321f8_o.jpg", "secret": "c1607bcfe3", "media": "photo", "latitude": "0", "id": "532695321", "tags": "lost other tn knoxville ethan adventure con 2007 adventurecon williammapother"}, {"datetaken": "2007-06-02 14:16:20", "license": "3", "title": "Star Wars Wedding #1", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1405/532695343_2758a6815d_o.jpg", "secret": "60a0921fc1", "media": "photo", "latitude": "0", "id": "532695343", "tags": "wedding star tn knoxville adventure wars con 2007 sunsphere adventurecon"}, {"datetaken": "2007-06-02 14:16:33", "license": "3", "title": "Star Wars Wedding #2", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1395/532695379_b5045d98db_o.jpg", "secret": "88a4ecd339", "media": "photo", "latitude": "0", "id": "532695379", "tags": "wedding star tn knoxville adventure wars con 2007 sunsphere adventurecon"}, {"datetaken": "2007-06-02 14:27:39", "license": "3", "title": "Ron Glass Obliges", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1127/532598706_af0b64e8c2_o.jpg", "secret": "beb1af036b", "media": "photo", "latitude": "0", "id": "532598706", "tags": "glass photo tn knoxville ron adventure miller barney firefly con 2007 autographed adventurecon"}, {"datetaken": "2007-06-02 14:56:56", "license": "3", "title": "G.I. Joe Meets the Ghostbusters and Mario & Luigi", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1362/532598726_96ef82eb00_o.jpg", "secret": "fe6f2123a8", "media": "photo", "latitude": "0", "id": "532598726", "tags": "cobra tn knoxville mario joe adventure luigi con ghostbusters gi 2007 adventurecon"}, {"datetaken": "2007-06-02 14:57:05", "license": "3", "title": "Elvira Meets Mario & Luigi", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1267/532695431_d56fa97c95_o.jpg", "secret": "dff4d1123c", "media": "photo", "latitude": "0", "id": "532695431", "tags": "fan costume tn knoxville mario adventure luigi con 2007 elvira impersonator adventurecon"}, {"datetaken": "2007-06-02 15:02:41", "license": "3", "title": "Denise Crosby Gets Candid", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1399/532695465_f448871582_o.jpg", "secret": "953ebcb79d", "media": "photo", "latitude": "0", "id": "532695465", "tags": "trek star tn knoxville candid next adventure denise tasha generation con 2007 crosby yar adventurecon"}, {"datetaken": "2007-06-02 15:14:07", "license": "3", "title": "Spot the Sparrow", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1436/532598788_d3a2b5193d_o.jpg", "secret": "9e2ed4fa33", "media": "photo", "latitude": "0", "id": "532598788", "tags": "tn knoxville adventure con 2007 adventurecon"}, {"datetaken": "2007-06-02 15:33:56", "license": "3", "title": "Me & Tamara With Martin Klebba in the Middle", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1026/532598814_e662c0a041_o.jpg", "secret": "5eb8de9f55", "media": "photo", "latitude": "0", "id": "532598814", "tags": "tn martin knoxville pirates adventure pirate caribbean marty con 2007 adventurecon klebba"}, {"datetaken": "2007-06-02 15:42:11", "license": "3", "title": "Candid Billy Dee Williams", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1201/532695533_770c6cec7b_o.jpg", "secret": "c84d913f44", "media": "photo", "latitude": "0", "id": "532695533", "tags": "photo williams tn knoxville candid adventure billy dee con 2007 adventurecon"}, {"datetaken": "2007-06-02 15:49:07", "license": "3", "title": "Captain Jack Sparrow & Tamara", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1388/532598852_002cb13fec_o.jpg", "secret": "1dc3b44e3a", "media": "photo", "latitude": "0", "id": "532598852", "tags": "jack tn knoxville adventure sparrow pirate captain con 2007 adventurecon"}, {"datetaken": "2007-06-02 15:51:06", "license": "3", "title": "Me & Lando Calrissian", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1334/532695573_1a8f8851cc_o.jpg", "secret": "aa999430ac", "media": "photo", "latitude": "0", "id": "532695573", "tags": "star fan back tn knoxville adventure empire wars strikes con 2007 lando calrissian adventurecon"}, {"datetaken": "2007-06-02 15:52:03", "license": "3", "title": "Tamara, Me, & a Stormtrooper", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1227/532598906_65ecac8c8f_o.jpg", "secret": "a88559c2ee", "media": "photo", "latitude": "0", "id": "532598906", "tags": "star tn knoxville adventure stormtrooper wars con 2007 adventurecon"}, {"datetaken": "2007-06-02 16:00:17", "license": "3", "title": "Waiting for the Stars", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1358/532695621_32f179ba1e_o.jpg", "secret": "d9b79c196b", "media": "photo", "latitude": "0", "id": "532695621", "tags": "tn knoxville adventure con 2007 adventurecon"}, {"datetaken": "2007-06-02 16:02:43", "license": "3", "title": "Irvin Kershner & Billy Dee Williams at Adventure Con 2007", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1203/532598954_e01c08e169_o.jpg", "secret": "486e9182f9", "media": "photo", "latitude": "0", "id": "532598954", "tags": "red star back williams tn knoxville curtain adventure empire billy wars discussion dee strikes con irvin 2007 billydeewilliams adventurecon kershner irvinkershner"}, {"datetaken": "2007-06-02 16:37:06", "license": "3", "title": "Anthony Daniels at Adventure Con 2007", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1433/532598974_a645c8154a_o.jpg", "secret": "f8aefe1dbf", "media": "photo", "latitude": "0", "id": "532598974", "tags": "star tn knoxville adventure anthony daniels wars discussion lecture con c3po 2007 anthonydaniels adventurecon"}, {"datetaken": "2007-06-02 16:37:31", "license": "3", "title": "Anthony Daniels", "text": "", "album_id": "72157600317384882", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1350/532598988_e46ed761cc_o.jpg", "secret": "da50d6f214", "media": "photo", "latitude": "0", "id": "532598988", "tags": "star tn knoxville adventure anthony daniels wars discussion lecture con c3po 2007 anthonydaniels adventurecon"}, {"datetaken": "2007-05-30 00:39:18", "license": "3", "title": "Grand Canyon 12", "text": "", "album_id": "72157600335924630", "longitude": "-112.191631", "url_o": "https://farm2.staticflickr.com/1384/539155502_a5e74c83a1_o.jpg", "secret": "1d505e5543", "media": "photo", "latitude": "35.251682", "id": "539155502", "tags": "arizona train point route66 williams south railway grand canyon"}, {"datetaken": "2007-05-30 18:53:43", "license": "3", "title": "Click,,,,,, \" I hope that was a camera i heard ? \" says Mr Squirrel", "text": "", "album_id": "72157600335924630", "longitude": "-112.137107", "url_o": "https://farm4.staticflickr.com/3372/3273091032_529c1fdaf9_o.jpg", "secret": "98f724b36b", "media": "photo", "latitude": "36.057460", "id": "3273091032", "tags": "arizona squirrel grand canyon otw"}, {"datetaken": "2007-05-30 18:57:32", "license": "3", "title": "Grand Canyon 11", "text": "", "album_id": "72157600335924630", "longitude": "-112.137472", "url_o": "https://farm2.staticflickr.com/1063/539155488_c386835a76_o.jpg", "secret": "0de69c2b35", "media": "photo", "latitude": "36.057712", "id": "539155488", "tags": "point south railway grand canyon"}, {"datetaken": "2007-05-30 19:17:14", "license": "3", "title": "Grand Canyon 10", "text": "", "album_id": "72157600335924630", "longitude": "-112.137258", "url_o": "https://farm2.staticflickr.com/1145/539155448_d23030186f_o.jpg", "secret": "c47a5a4eac", "media": "photo", "latitude": "36.058284", "id": "539155448", "tags": "point south railway grand canyon"}, {"datetaken": "2007-05-30 19:17:14", "license": "3", "title": "Grand Canyon", "text": "", "album_id": "72157600335924630", "longitude": "-112.137107", "url_o": "https://farm4.staticflickr.com/3036/2794209038_a892688c8c_o.jpg", "secret": "53d03ffb9a", "media": "photo", "latitude": "36.057460", "id": "2794209038", "tags": "arizona usa point south grand canyon hero winner herowinner"}, {"datetaken": "2007-05-30 19:17:42", "license": "3", "title": "Grand Canyon 9", "text": "", "album_id": "72157600335924630", "longitude": "-112.137107", "url_o": "https://farm2.staticflickr.com/1043/539155412_e40a24b4c7_o.jpg", "secret": "bfea6433da", "media": "photo", "latitude": "36.057460", "id": "539155412", "tags": "point south railway grand canyon"}, {"datetaken": "2007-05-30 19:27:03", "license": "3", "title": "Grand Canyon 8", "text": "", "album_id": "72157600335924630", "longitude": "-112.137107", "url_o": "https://farm2.staticflickr.com/1115/539155388_81aeb7c1ac_o.jpg", "secret": "b46b5e492b", "media": "photo", "latitude": "36.057460", "id": "539155388", "tags": "point south railway grand canyon"}, {"datetaken": "2007-05-30 19:33:31", "license": "3", "title": "Grand Canyon 7", "text": "", "album_id": "72157600335924630", "longitude": "-112.137107", "url_o": "https://farm2.staticflickr.com/1298/539155258_572ce41ea6_o.jpg", "secret": "3c478928bf", "media": "photo", "latitude": "36.057460", "id": "539155258", "tags": "point south railway grand canyon"}, {"datetaken": "2007-05-30 19:35:30", "license": "3", "title": "Grand Canyon 6", "text": "", "album_id": "72157600335924630", "longitude": "-112.136861", "url_o": "https://farm2.staticflickr.com/1402/539234387_865a1e6360_o.jpg", "secret": "83bc4a2632", "media": "photo", "latitude": "36.057907", "id": "539234387", "tags": "point south railway grand canyon"}, {"datetaken": "2007-05-30 19:43:21", "license": "3", "title": "Squirrel Grand Canyon", "text": "", "album_id": "72157600335924630", "longitude": "-112.137107", "url_o": "https://farm4.staticflickr.com/3269/2794209830_345e7ff722_o.jpg", "secret": "747cf2cb54", "media": "photo", "latitude": "36.057460", "id": "2794209830", "tags": "arizona usa point squirrel south grand canyon"}, {"datetaken": "2007-05-30 19:43:21", "license": "3", "title": "Grand Canyon Squirrel", "text": "", "album_id": "72157600335924630", "longitude": "-112.137107", "url_o": "https://farm4.staticflickr.com/3375/3273091648_2a6a0d0877_o.jpg", "secret": "259dd1f01a", "media": "photo", "latitude": "36.057460", "id": "3273091648", "tags": "arizona squirrel grand canyon naturewatcher"}, {"datetaken": "2007-05-30 20:36:28", "license": "3", "title": "Grand Canyon 5", "text": "", "album_id": "72157600335924630", "longitude": "-112.137107", "url_o": "https://farm2.staticflickr.com/1400/539234341_205d868492_o.jpg", "secret": "92906fb494", "media": "photo", "latitude": "36.057460", "id": "539234341", "tags": "point south railway grand canyon"}, {"datetaken": "2007-05-30 20:41:44", "license": "3", "title": "Grand Canyon 4", "text": "", "album_id": "72157600335924630", "longitude": "-112.137107", "url_o": "https://farm2.staticflickr.com/1248/539234293_1e242fa2f4_o.jpg", "secret": "8465c8ddb3", "media": "photo", "latitude": "36.057460", "id": "539234293", "tags": "point south railway grand canyon"}, {"datetaken": "2007-05-30 20:43:41", "license": "3", "title": "A fish up a tree, In the Grand canyon !!!", "text": "", "album_id": "72157600335924630", "longitude": "-112.137107", "url_o": "https://farm2.staticflickr.com/1037/539234275_6b3c76bab7_o.jpg", "secret": "3405493dd0", "media": "photo", "latitude": "36.057460", "id": "539234275", "tags": "point south railway grand canyon"}, {"datetaken": "2007-05-30 20:54:24", "license": "3", "title": "Grand Canyon 2", "text": "", "album_id": "72157600335924630", "longitude": "-112.137107", "url_o": "https://farm2.staticflickr.com/1239/539234261_19ebb3c43e_o.jpg", "secret": "dd867a2d24", "media": "photo", "latitude": "36.057460", "id": "539234261", "tags": "point south railway grand canyon"}, {"datetaken": "2007-05-30 20:54:31", "license": "3", "title": "Grand Canyon 1", "text": "", "album_id": "72157600335924630", "longitude": "-112.137107", "url_o": "https://farm2.staticflickr.com/1299/539234175_58f888fe32_o.jpg", "secret": "610a153a45", "media": "photo", "latitude": "36.057460", "id": "539234175", "tags": "point south railway grand canyon"}, {"datetaken": "2007-05-27 20:44:46", "license": "2", "title": "Copper River", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/197/522244231_2a9781b41a_o.jpg", "secret": "f52464065a", "media": "photo", "latitude": "0", "id": "522244231", "tags": "alaska river copperriver chitina edgertonhighway"}, {"datetaken": "2007-05-27 21:05:42", "license": "2", "title": "Chitina Pass", "text": "", "album_id": "72157600288475643", "longitude": "-144.429187", "url_o": "https://farm1.staticflickr.com/230/522244757_98cb152f6b_o.jpg", "secret": "9f3e6f05e1", "media": "photo", "latitude": "61.515081", "id": "522244757", "tags": "road alaska blasted copperriver chitina edgertonhighway"}, {"datetaken": "2007-05-27 21:05:56", "license": "2", "title": "Copper River", "text": "", "album_id": "72157600288475643", "longitude": "-144.427127", "url_o": "https://farm1.staticflickr.com/212/522230300_e1a5e8267f_o.jpg", "secret": "d0f1486f70", "media": "photo", "latitude": "61.515614", "id": "522230300", "tags": "dusty alaska basin rivers confluence copperriver chitina loess chitinariver copperriverbasin"}, {"datetaken": "2007-05-27 21:11:49", "license": "2", "title": "Copper River", "text": "", "album_id": "72157600288475643", "longitude": "-144.427127", "url_o": "https://farm1.staticflickr.com/240/522230730_d3db483fa4_o.jpg", "secret": "a05be67ff7", "media": "photo", "latitude": "61.515614", "id": "522230730", "tags": "mountains alaska basin wrangell copperriver chitina loess stelias chitinariver copperriverbasin"}, {"datetaken": "2007-05-27 21:19:49", "license": "2", "title": "Copper River", "text": "", "album_id": "72157600288475643", "longitude": "-144.410305", "url_o": "https://farm1.staticflickr.com/237/522245903_8c9820799f_o.jpg", "secret": "1d9059aa26", "media": "photo", "latitude": "61.525927", "id": "522245903", "tags": "mountains sign alaska wrangell copperriver chitina stelias chitinariver"}, {"datetaken": "2007-05-27 21:20:09", "license": "2", "title": "Frozen Falls", "text": "", "album_id": "72157600288475643", "longitude": "-144.410305", "url_o": "https://farm1.staticflickr.com/241/522232172_9a9ecd1967_o.jpg", "secret": "371e5c9037", "media": "photo", "latitude": "61.525927", "id": "522232172", "tags": "alaska frozen waterfall falls copperriver chitina frozenfalls chitinariver"}, {"datetaken": "2007-05-27 21:21:01", "license": "2", "title": "Copper River", "text": "", "album_id": "72157600288475643", "longitude": "-144.410305", "url_o": "https://farm1.staticflickr.com/200/522246417_6caffea2d8_o.jpg", "secret": "dbd1269098", "media": "photo", "latitude": "61.525927", "id": "522246417", "tags": "bridge mountains alaska river crossing chugach copperriver chitina chitinariver"}, {"datetaken": "2007-05-27 21:25:03", "license": "2", "title": "Fish Head", "text": "", "album_id": "72157600288475643", "longitude": "-144.402065", "url_o": "https://farm1.staticflickr.com/224/522247887_fcf58ad9cb_o.jpg", "secret": "ec0b3efc9d", "media": "photo", "latitude": "61.545113", "id": "522247887", "tags": "fish alaska head salmon fishhead copperriver chitina pinksalmon chitinariver"}, {"datetaken": "2007-05-27 21:25:44", "license": "2", "title": "Fish Wheel", "text": "", "album_id": "72157600288475643", "longitude": "-144.402065", "url_o": "https://farm1.staticflickr.com/214/522233662_d99c78c74a_o.jpg", "secret": "28915550a5", "media": "photo", "latitude": "61.545113", "id": "522233662", "tags": "alaska rig scoops copperriver chitina fishwheel chitinariver"}, {"datetaken": "2007-05-27 21:26:27", "license": "2", "title": "Fish Wheels", "text": "", "album_id": "72157600288475643", "longitude": "-144.402065", "url_o": "https://farm1.staticflickr.com/250/522249145_c86a553371_o.jpg", "secret": "f1fc228e74", "media": "photo", "latitude": "61.545113", "id": "522249145", "tags": "alaska rigs scoops copperriver chitina fishwheels chitinariver"}, {"datetaken": "2007-05-27 21:26:33", "license": "2", "title": "Fish Wheels", "text": "", "album_id": "72157600288475643", "longitude": "-144.402065", "url_o": "https://farm1.staticflickr.com/229/522234516_bc19a61f63_o.jpg", "secret": "5f45f32af8", "media": "photo", "latitude": "61.545113", "id": "522234516", "tags": "bridge mountains alaska rigs scoops chugach oildrums copperriver chitina fishwheels chitinariver"}, {"datetaken": "2007-05-27 21:28:50", "license": "2", "title": "Fish Wheel", "text": "", "album_id": "72157600288475643", "longitude": "-144.402065", "url_o": "https://farm1.staticflickr.com/192/522234880_27632c443a_o.jpg", "secret": "921f6c697a", "media": "photo", "latitude": "61.545113", "id": "522234880", "tags": "bridge mountains alaska river rig boardwalk plank scoops chugach copperriver chitina fishwheel chitinariver"}, {"datetaken": "2007-05-27 21:29:05", "license": "2", "title": "Fish Wheels", "text": "", "album_id": "72157600288475643", "longitude": "-144.402065", "url_o": "https://farm1.staticflickr.com/197/522235472_556edbec7b_o.jpg", "secret": "fa0777f94f", "media": "photo", "latitude": "61.545113", "id": "522235472", "tags": "alaska rigs scoops copperriver chitina fishwheels chitinariver"}, {"datetaken": "2007-05-27 21:32:55", "license": "2", "title": "Copper River", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/243/522235878_41fb10c01c_o.jpg", "secret": "63ef3fbb5e", "media": "photo", "latitude": "0", "id": "522235878", "tags": "alaska basin copperriver chitina chitinariver copperriverbasin"}, {"datetaken": "2007-05-27 22:11:29", "license": "2", "title": "Chitina River", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/230/522236168_048050e302_o.jpg", "secret": "aa1fd28ced", "media": "photo", "latitude": "0", "id": "522236168", "tags": "mountains alaska pond basin wrangell chitina stelias chitinariver"}, {"datetaken": "2007-05-27 22:12:08", "license": "2", "title": "Chitina River", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/243/522251165_5e62d81b77_o.jpg", "secret": "d3e11b22c1", "media": "photo", "latitude": "0", "id": "522251165", "tags": "mountains alaska basin wrangell chitina stelias chitinariver"}, {"datetaken": "2007-05-27 22:12:17", "license": "2", "title": "Chitina River", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/237/522251537_c8241a529a_o.jpg", "secret": "2106bba147", "media": "photo", "latitude": "0", "id": "522251537", "tags": "mountains alaska basin chugach copperriver chitina chitinariver"}, {"datetaken": "2007-05-28 00:14:48", "license": "2", "title": "Chitina River", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/206/522237206_8d7ac71f6e_o.jpg", "secret": "d8f59a6610", "media": "photo", "latitude": "0", "id": "522237206", "tags": "alaska chitina chitinariver basin tent campfire fire overlook chair wrangell stelias mountains kim"}, {"datetaken": "2007-05-28 00:16:07", "license": "2", "title": "Chitina River", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/238/522237776_e9deffaa8e_o.jpg", "secret": "938bcede1a", "media": "photo", "latitude": "0", "id": "522237776", "tags": "mountains alaska fire tent basin campfire wrangell copperriver chitina stelias chitinariver"}, {"datetaken": "2007-05-28 08:13:28", "license": "2", "title": "Chitina River", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/252/522252923_ea95323b08_o.jpg", "secret": "ba7754e8ff", "media": "photo", "latitude": "0", "id": "522252923", "tags": "mountains alaska basin wrangell chitina stelias chitinariver"}, {"datetaken": "2007-05-28 09:20:25", "license": "2", "title": "Chitina", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/244/522239396_188d27c984_o.jpg", "secret": "592eb673ef", "media": "photo", "latitude": "0", "id": "522239396", "tags": "old classic ford car yellow alaska truck oldcar copperriver chitina chitinariver"}, {"datetaken": "2007-05-28 09:20:43", "license": "2", "title": "Chitina", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/197/522241912_77185ab139_o.jpg", "secret": "f2d260cea9", "media": "photo", "latitude": "0", "id": "522241912", "tags": "old classic car alaska rust body wheels rusty rusted oldcar copperriver chitina chitinariver"}, {"datetaken": "2007-05-28 09:20:51", "license": "2", "title": "Chitina", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/247/522254521_0641873193_o.jpg", "secret": "b375794120", "media": "photo", "latitude": "0", "id": "522254521", "tags": "old classic ford car yellow alaska truck oldcar copperriver chitina chitinariver cmwd"}, {"datetaken": "2007-05-28 09:21:14", "license": "2", "title": "Chitina", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/231/522255043_40d0cf8ce0_o.jpg", "secret": "2d7da2b074", "media": "photo", "latitude": "0", "id": "522255043", "tags": "old classic car alaska rust rusty rusted inside oldcar console steeringwheel stickshift copperriver chitina chitinariver"}, {"datetaken": "2007-05-28 09:21:42", "license": "2", "title": "Chitina", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/223/522243114_d0bc1e1c8c_o.jpg", "secret": "f66e02ee42", "media": "photo", "latitude": "0", "id": "522243114", "tags": "old classic car wheel alaska wooden rust rusty rusted oldcar rims modelt copperriver chitina woodenrims chitinariver"}, {"datetaken": "2007-05-28 09:22:16", "license": "2", "title": "Chitina", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/238/522256507_687151bb61_o.jpg", "secret": "2d356ac6d5", "media": "photo", "latitude": "0", "id": "522256507", "tags": "classic ford alaska rust rusty rusted modelt copperriver chitina chitinariver"}, {"datetaken": "2007-05-28 09:22:43", "license": "2", "title": "Chitina", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/214/522243912_965c80c56c_o.jpg", "secret": "09f7dd1689", "media": "photo", "latitude": "0", "id": "522243912", "tags": "old classic car wheel alaska wooden rust rusty rusted oldcar rims modelt copperriver chitina woodenrims chitinariver"}, {"datetaken": "2007-05-28 09:39:04", "license": "2", "title": "Liberty Falls", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/522244636_8cf79fbd67_o.jpg", "secret": "bea2e8414f", "media": "photo", "latitude": "0", "id": "522244636", "tags": "bridge alaska washedout chitina bridgeout fallenbridge libertyfalls"}, {"datetaken": "2007-05-28 09:40:08", "license": "2", "title": "Liberty Falls", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/193/522259099_38aeb429a4_o.jpg", "secret": "64bc65dda5", "media": "photo", "latitude": "0", "id": "522259099", "tags": "bridge alaska roots washedout chitina bridgeout fallenbridge libertyfalls rootmass"}, {"datetaken": "2007-05-28 09:45:24", "license": "2", "title": "Liberty Falls", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/230/522259609_70f7cf13b2_o.jpg", "secret": "fc0bd0a1e3", "media": "photo", "latitude": "0", "id": "522259609", "tags": "alaska waterfall falls chitina libertyfalls"}, {"datetaken": "2007-05-28 09:47:33", "license": "2", "title": "Liberty Falls", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/215/522246962_973a0f4cb1_o.jpg", "secret": "376509b5d2", "media": "photo", "latitude": "0", "id": "522246962", "tags": "alaska waterfall falls chitina libertyfalls"}, {"datetaken": "2007-05-28 09:48:10", "license": "2", "title": "Liberty Falls", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/207/522261113_68a8136b5f_o.jpg", "secret": "c2ced50c17", "media": "photo", "latitude": "0", "id": "522261113", "tags": "green alaska waterfall falls terraced chitina libertyfalls"}, {"datetaken": "2007-05-28 09:58:49", "license": "2", "title": "Liberty Falls", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/219/522248658_88ce45c5fb_o.jpg", "secret": "fbcf0a6f82", "media": "photo", "latitude": "0", "id": "522248658", "tags": "green rock alaska waterfall kim falls chitina libertyfalls"}, {"datetaken": "2007-05-28 10:00:11", "license": "2", "title": "Liberty Falls", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/237/522262255_7a8b4fdeef_o.jpg", "secret": "11ea5965a2", "media": "photo", "latitude": "0", "id": "522262255", "tags": "green rock alaska waterfall canyon falls chitina libertyfalls"}, {"datetaken": "2007-05-28 10:00:27", "license": "2", "title": "Liberty Falls", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/239/522249804_50410ecc24_o.jpg", "secret": "1525a9ed6f", "media": "photo", "latitude": "0", "id": "522249804", "tags": "green rock alaska waterfall falls chitina libertyfalls"}, {"datetaken": "2007-05-28 10:01:31", "license": "2", "title": "Liberty Falls", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/217/522250644_6dfe601b92_o.jpg", "secret": "501d496bb6", "media": "photo", "latitude": "0", "id": "522250644", "tags": "bridge green rock alaska river valley chitina bridgeout fallenbridge libertyfalls"}, {"datetaken": "2007-05-28 10:06:47", "license": "2", "title": "Liberty Falls", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/223/522272273_08031522d9_o.jpg", "secret": "cb4dfdad45", "media": "photo", "latitude": "0", "id": "522272273", "tags": "green rock alaska waterfall falls chitina libertyfalls"}, {"datetaken": "2007-05-28 13:13:24", "license": "2", "title": "Fresh Snow in Late May", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/189/522272619_6f0cfa4d35_o.jpg", "secret": "5a71a925f8", "media": "photo", "latitude": "0", "id": "522272619", "tags": "snow alaska may cache eureka roadhouse freshsnow latemay eurekaroadhouse cachehouse"}, {"datetaken": "2007-05-28 15:32:17", "license": "2", "title": "Hatcher's Pass", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/223/522272913_33d3d66acc_o.jpg", "secret": "7387a195be", "media": "photo", "latitude": "0", "id": "522272913", "tags": "snow mountains alaska hatcherspass chugach independencemine independenceminestatepark"}, {"datetaken": "2007-05-28 15:32:35", "license": "2", "title": "Independence Mine", "text": "", "album_id": "72157600288475643", "longitude": "0", "url_o": "https://farm1.staticflickr.com/245/522273167_0445428abd_o.jpg", "secret": "9b0217d57c", "media": "photo", "latitude": "0", "id": "522273167", "tags": "snow alaska buildings mine hatcherspass independencemine independenceminestatepark"}, {"datetaken": "2007-06-30 12:16:32", "license": "1", "title": "No, those are not pot plants!", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1362/687926392_0d4dd134c8_o.jpg", "secret": "bd5f499453", "media": "photo", "latitude": "0", "id": "687926392", "tags": "green overgrown bush weeds shrub"}, {"datetaken": "2007-06-30 12:16:53", "license": "1", "title": "Arrr, there be treasure in thar!", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1230/687076163_cb3493b929_o.jpg", "secret": "8371a96534", "media": "photo", "latitude": "0", "id": "687076163", "tags": "overgrown weeds backyard shrub bushes"}, {"datetaken": "2007-06-30 12:17:12", "license": "1", "title": "Out of control", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1402/687936840_182897b335_o.jpg", "secret": "4a332f4711", "media": "photo", "latitude": "0", "id": "687936840", "tags": "overgrown fence bush weeds backyard shrub"}, {"datetaken": "2007-06-30 12:17:40", "license": "1", "title": "How Green Was My Valley", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1231/687077443_32f4513f1a_o.jpg", "secret": "425529d750", "media": "photo", "latitude": "0", "id": "687077443", "tags": "overgrown fence weeds"}, {"datetaken": "2007-06-30 12:17:50", "license": "1", "title": "Somewhere, in here, is a backyard.", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1051/687938358_d5e43799b9_o.jpg", "secret": "daa3b452c5", "media": "photo", "latitude": "0", "id": "687938358", "tags": "green overgrown weeds bushes"}, {"datetaken": "2007-06-30 12:22:25", "license": "1", "title": "Michael gestures frantically: \"I've found Dr. Livingstone!\"", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1332/687939082_f5259f7f34_o.jpg", "secret": "127c4df5b6", "media": "photo", "latitude": "0", "id": "687939082", "tags": "overgrown shrubs"}, {"datetaken": "2007-06-30 12:22:33", "license": "1", "title": "Moments later, Charlie and Rose emerged from the jungle on The African Queen.", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1108/687084379_a35573d0bb_o.jpg", "secret": "5eb2b96705", "media": "photo", "latitude": "0", "id": "687084379", "tags": "overgrown fence jungle roseofsharon"}, {"datetaken": "2007-06-30 14:27:24", "license": "1", "title": "Six yard waste bags later...", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1268/687085133_0b20bed625_o.jpg", "secret": "74f3b7939b", "media": "photo", "latitude": "0", "id": "687085133", "tags": "tree fence backyard gate shrubs yardwaste patiostones"}, {"datetaken": "2007-06-30 14:27:34", "license": "1", "title": "Someday, this will be beautiful. Someday.", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1187/687085783_5f0e961360_o.jpg", "secret": "7e77482474", "media": "photo", "latitude": "0", "id": "687085783", "tags": "tree fence backyard roseofsharon"}, {"datetaken": "2007-06-30 14:27:42", "license": "1", "title": "Look! We have a backyard!", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1017/687946288_2e8107fd86_o.jpg", "secret": "a81f27432f", "media": "photo", "latitude": "0", "id": "687946288", "tags": "fence backyard gate shrub"}, {"datetaken": "2007-06-30 14:27:57", "license": "1", "title": "Une grosse fence!", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1167/687946842_3a4d9362f4_o.jpg", "secret": "921802d2fe", "media": "photo", "latitude": "0", "id": "687946842", "tags": "fence"}, {"datetaken": "2007-06-30 14:28:05", "license": "1", "title": "Paradise reclaimed", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1215/687952532_d65f172fc9_o.jpg", "secret": "9426cbfabe", "media": "photo", "latitude": "0", "id": "687952532", "tags": "weeds gate shrubs"}, {"datetaken": "2007-07-01 14:04:06", "license": "1", "title": "A somewhat less flattering shot of our backyard entrance", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1394/687952918_c00cc14b42_o.jpg", "secret": "a625a7b01d", "media": "photo", "latitude": "0", "id": "687952918", "tags": "steps deck damage sloping"}, {"datetaken": "2007-07-01 14:04:30", "license": "1", "title": "Drainage problems", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1074/687953272_ce78b91032_o.jpg", "secret": "b1b7ca4887", "media": "photo", "latitude": "0", "id": "687953272", "tags": "deck damage slope drainage"}, {"datetaken": "2007-07-01 14:04:43", "license": "1", "title": "You think this looks bad...", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1044/687953676_76895bf121_o.jpg", "secret": "647514afe2", "media": "photo", "latitude": "0", "id": "687953676", "tags": "uneven concreteslab"}, {"datetaken": "2007-07-01 15:31:38", "license": "1", "title": "The destruction begins", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1264/687954182_9970c3702c_o.jpg", "secret": "d1de6e105a", "media": "photo", "latitude": "0", "id": "687954182", "tags": "concrete smash break destruction demolition rubble destroy"}, {"datetaken": "2007-07-01 15:52:29", "license": "1", "title": "If only I could wave my magic wand...", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1075/687961822_800badaf19_o.jpg", "secret": "56eea1a794", "media": "photo", "latitude": "0", "id": "687961822", "tags": "concrete deck cinderblock"}, {"datetaken": "2007-07-01 15:52:42", "license": "1", "title": "Stronger than you think", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1306/687962280_a9c0740207_o.jpg", "secret": "6eb7831ec5", "media": "photo", "latitude": "0", "id": "687962280", "tags": "danger concrete floating collapse strong crawlspace"}, {"datetaken": "2007-07-01 16:04:17", "license": "1", "title": "Quality workmanship", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1407/687962792_4ec32e8fa7_o.jpg", "secret": "095ca5942c", "media": "photo", "latitude": "0", "id": "687962792", "tags": "demolition collapse crawlspace"}, {"datetaken": "2007-07-01 16:04:26", "license": "1", "title": "Yeah, no, we're not going under there.", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1163/687963248_560ec6c818_o.jpg", "secret": "145974085a", "media": "photo", "latitude": "0", "id": "687963248", "tags": "danger concrete collapse balance cinderblock crawlspace"}, {"datetaken": "2007-07-01 16:06:29", "license": "1", "title": "Success! Sort of...", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1351/687103883_581af87c8d_o.jpg", "secret": "7e12639027", "media": "photo", "latitude": "0", "id": "687103883", "tags": "dangerous collapse crawlspace"}, {"datetaken": "2007-07-01 16:06:37", "license": "1", "title": "Now how are we going to fit the BBQ?", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1033/687111697_106c1f7aea_o.jpg", "secret": "cf303b3738", "media": "photo", "latitude": "0", "id": "687111697", "tags": "broken deck disaster collapse railing concreteslab"}, {"datetaken": "2007-07-01 16:13:27", "license": "1", "title": "Miracle Metal", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1296/687112111_33e14b1dcb_o.jpg", "secret": "68ac0bd34a", "media": "photo", "latitude": "0", "id": "687112111", "tags": "broken metal railing twisted"}, {"datetaken": "2007-07-01 16:14:05", "license": "1", "title": "The Mighty Michael *sigh*", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1370/687972724_b709a226fa_o.jpg", "secret": "5899252b8e", "media": "photo", "latitude": "0", "id": "687972724", "tags": "muscle demolition strength laborer strongman labourer sledgehammer safetyglasses"}, {"datetaken": "2007-07-01 16:36:04", "license": "1", "title": "Suddenly...", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1204/687113111_2706c7c102_o.jpg", "secret": "0fb4da933e", "media": "photo", "latitude": "0", "id": "687113111", "tags": "demolition collapse cinderblocks concreteslab"}, {"datetaken": "2007-07-01 16:36:13", "license": "1", "title": "When the walls / come crumblin, crumblin...", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1233/687973750_0065bc3c42_o.jpg", "secret": "c06ad7d89d", "media": "photo", "latitude": "0", "id": "687973750", "tags": "demolition collapse crumbling cinderblocks concreteslab"}, {"datetaken": "2007-07-01 16:46:54", "license": "1", "title": "Safety issues", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1072/687980674_21672c6406_o.jpg", "secret": "8b0b88d085", "media": "photo", "latitude": "0", "id": "687980674", "tags": "junk foundation crawlspace cinderblocks"}, {"datetaken": "2007-07-01 16:47:06", "license": "1", "title": "My messy bedroom", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1163/687123335_83cdf777a9_o.jpg", "secret": "d0f3ab1d38", "media": "photo", "latitude": "0", "id": "687123335", "tags": "junk"}, {"datetaken": "2007-07-01 16:47:17", "license": "1", "title": "With a little paint and some laminate flooring, I bet we could fix this up as a basement apartment.", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1041/687987366_1e74ff9b28_o.jpg", "secret": "a62734d720", "media": "photo", "latitude": "0", "id": "687987366", "tags": "junk spiders foundation crawlspace spiderwebs cobwebs cinderblocks rottenwood"}, {"datetaken": "2007-07-01 16:48:45", "license": "1", "title": "Give a man a sledgehammer, and before you know it...", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1405/687990708_6d04c382d8_o.jpg", "secret": "cf1f2b8e0f", "media": "photo", "latitude": "0", "id": "687990708", "tags": "concrete demolition slab cinderblocks supportbeam"}, {"datetaken": "2007-07-01 16:48:55", "license": "1", "title": "A few nasturtiums and a spider plant ought to hide that.", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1021/687133339_19847b8ddf_o.jpg", "secret": "d13118ac04", "media": "photo", "latitude": "0", "id": "687133339", "tags": "concrete demolition deck sledgehammer cinderblocks"}, {"datetaken": "2007-07-01 16:50:02", "license": "1", "title": "Under the deck", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1227/687140771_dc542479a9_o.jpg", "secret": "93c7d9b3f7", "media": "photo", "latitude": "0", "id": "687140771", "tags": "crawlspace spiderwebs cobwebs cardboardbox rottenwood"}, {"datetaken": "2007-07-01 16:50:12", "license": "1", "title": "Hello? Anyone home?", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1015/688004172_db76408dcf_o.jpg", "secret": "bdedf15963", "media": "photo", "latitude": "0", "id": "688004172", "tags": "junk spiders foundation crawlspace spiderwebs cobwebs cinderblocks"}, {"datetaken": "2007-07-01 16:50:34", "license": "1", "title": "Room With A View", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1134/688007004_b8c05bde20_o.jpg", "secret": "1342ec397b", "media": "photo", "latitude": "0", "id": "688007004", "tags": "crawlspace spiderwebs cobwebs cardboardbox rottenwood"}, {"datetaken": "2007-07-01 16:51:13", "license": "1", "title": "We believe the Hamilton mafia hides bodies here.", "text": "", "album_id": "72157600602891697", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1404/687148493_28c44c3b77_o.jpg", "secret": "c81e4b469d", "media": "photo", "latitude": "0", "id": "687148493", "tags": "crawlspace cardboardbox"}, {"datetaken": "2007-06-03 12:34:24", "license": "2", "title": "IMG_2384", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1073/532663012_d49f3edbe9_o.jpg", "secret": "2ae01e6ab7", "media": "photo", "latitude": "0", "id": "532663012", "tags": ""}, {"datetaken": "2007-06-03 12:46:04", "license": "2", "title": "IMG_2389", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1332/532663150_f73f0d60bb_o.jpg", "secret": "395f31d3f4", "media": "photo", "latitude": "0", "id": "532663150", "tags": ""}, {"datetaken": "2007-06-03 12:47:46", "license": "2", "title": "IMG_2391", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1248/532663306_c0c078bd2b_o.jpg", "secret": "6704408013", "media": "photo", "latitude": "0", "id": "532663306", "tags": ""}, {"datetaken": "2007-06-03 12:58:10", "license": "2", "title": "IMG_2393", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1320/532663416_aa1e92835c_o.jpg", "secret": "42db5cbc00", "media": "photo", "latitude": "0", "id": "532663416", "tags": "elbe"}, {"datetaken": "2007-06-03 12:59:10", "license": "2", "title": "IMG_2396", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1078/532759997_070eb46cb1_o.jpg", "secret": "6c072edc5a", "media": "photo", "latitude": "0", "id": "532759997", "tags": "elbe"}, {"datetaken": "2007-06-03 12:59:34", "license": "2", "title": "IMG_2397", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1404/532760113_d6afec73b9_o.jpg", "secret": "5dcee7a450", "media": "photo", "latitude": "0", "id": "532760113", "tags": "elbe"}, {"datetaken": "2007-06-03 13:00:20", "license": "2", "title": "IMG_2398", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1160/532760265_720c3fc51a_o.jpg", "secret": "2b7abf08c3", "media": "photo", "latitude": "0", "id": "532760265", "tags": "elbe"}, {"datetaken": "2007-06-03 13:02:11", "license": "2", "title": "IMG_2399", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1349/532663904_e80b687214_o.jpg", "secret": "fa148e6359", "media": "photo", "latitude": "0", "id": "532663904", "tags": "elbe"}, {"datetaken": "2007-06-03 13:04:58", "license": "2", "title": "IMG_2401", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1165/532760485_a04747eb65_o.jpg", "secret": "538566ebd0", "media": "photo", "latitude": "0", "id": "532760485", "tags": "elbe"}, {"datetaken": "2007-06-03 13:42:26", "license": "2", "title": "IMG_2403", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1222/532760639_15d335e672_o.jpg", "secret": "7fbc527f7b", "media": "photo", "latitude": "0", "id": "532760639", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 13:43:03", "license": "2", "title": "IMG_2404", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1176/532664372_d608fe3e63_o.jpg", "secret": "1c42afe1bb", "media": "photo", "latitude": "0", "id": "532664372", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 13:43:15", "license": "2", "title": "IMG_2405", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1233/532664548_919a5b32cb_o.jpg", "secret": "936e5945a5", "media": "photo", "latitude": "0", "id": "532664548", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 13:43:29", "license": "2", "title": "IMG_2407", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1296/532761007_cd0e515e69_o.jpg", "secret": "857c63ad34", "media": "photo", "latitude": "0", "id": "532761007", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 14:52:48", "license": "2", "title": "IMG_2411", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1351/532761095_797b883ae1_o.jpg", "secret": "e117c4f19d", "media": "photo", "latitude": "0", "id": "532761095", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 14:53:15", "license": "2", "title": "IMG_2412", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1366/532761213_9472295181_o.jpg", "secret": "29e359d800", "media": "photo", "latitude": "0", "id": "532761213", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 14:55:50", "license": "2", "title": "IMG_2419", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1264/532665068_4555531879_o.jpg", "secret": "ca582574f0", "media": "photo", "latitude": "0", "id": "532665068", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 14:56:24", "license": "2", "title": "IMG_2420", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1222/532665150_c1994055dd_o.jpg", "secret": "58ad0f6b85", "media": "photo", "latitude": "0", "id": "532665150", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 14:56:25", "license": "2", "title": "IMG_2421", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1050/532665236_aa5a76f350_o.jpg", "secret": "84688dd8ef", "media": "photo", "latitude": "0", "id": "532665236", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 14:56:43", "license": "2", "title": "IMG_2423", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1219/532761555_b46b4bac82_o.jpg", "secret": "3b54f56251", "media": "photo", "latitude": "0", "id": "532761555", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 14:59:05", "license": "2", "title": "IMG_2424", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1202/532665432_bbbfec44ee_o.jpg", "secret": "8378ee3fe8", "media": "photo", "latitude": "0", "id": "532665432", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 15:00:31", "license": "2", "title": "IMG_2426", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1011/532665504_620f236cf5_o.jpg", "secret": "c3669caaba", "media": "photo", "latitude": "0", "id": "532665504", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 15:04:19", "license": "2", "title": "IMG_2428", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1051/532665616_65edd11036_o.jpg", "secret": "9436580b3e", "media": "photo", "latitude": "0", "id": "532665616", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 15:06:52", "license": "2", "title": "IMG_2429", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1196/532665722_7450dd57bb_o.jpg", "secret": "a287f44922", "media": "photo", "latitude": "0", "id": "532665722", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 15:06:59", "license": "2", "title": "IMG_2430", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1390/532665832_b09a2c4543_o.jpg", "secret": "5dccc217a7", "media": "photo", "latitude": "0", "id": "532665832", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 15:07:06", "license": "2", "title": "IMG_2431", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1347/532762151_bd25456f7f_o.jpg", "secret": "2a7ed9d097", "media": "photo", "latitude": "0", "id": "532762151", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 15:16:35", "license": "2", "title": "IMG_2432", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1212/532666060_3976a37b33_o.jpg", "secret": "b986062cd5", "media": "photo", "latitude": "0", "id": "532666060", "tags": "googie mtrainiernationalpark"}, {"datetaken": "2007-06-03 15:18:39", "license": "2", "title": "IMG_2435", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1049/532762369_3238bf9a5c_o.jpg", "secret": "a77ef21eb8", "media": "photo", "latitude": "0", "id": "532762369", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 15:19:27", "license": "2", "title": "IMG_2436", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1252/532666246_28851281b2_o.jpg", "secret": "559af4ccff", "media": "photo", "latitude": "0", "id": "532666246", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 15:23:06", "license": "2", "title": "IMG_2441", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1010/532762565_4acf90eee5_o.jpg", "secret": "7cf6ebc15b", "media": "photo", "latitude": "0", "id": "532762565", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 15:23:19", "license": "2", "title": "IMG_2442", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1233/532666530_0c6dd003c3_o.jpg", "secret": "9ecc4d855b", "media": "photo", "latitude": "0", "id": "532666530", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 15:27:54", "license": "2", "title": "IMG_2443", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1203/532762833_741af18667_o.jpg", "secret": "9a61561906", "media": "photo", "latitude": "0", "id": "532762833", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 15:41:52", "license": "2", "title": "IMG_2446", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1089/532762953_bcdde90a43_o.jpg", "secret": "6a4c862e98", "media": "photo", "latitude": "0", "id": "532762953", "tags": "waterfall mtrainiernationalpark"}, {"datetaken": "2007-06-03 15:45:45", "license": "2", "title": "IMG_2449", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1386/532763053_1ee2022f68_o.jpg", "secret": "5d8ec3d9c8", "media": "photo", "latitude": "0", "id": "532763053", "tags": "waterfall mtrainiernationalpark"}, {"datetaken": "2007-06-03 15:46:43", "license": "2", "title": "IMG_2453", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1383/532667040_380ca5c64d_o.jpg", "secret": "0b275b8c6f", "media": "photo", "latitude": "0", "id": "532667040", "tags": "waterfall mtrainiernationalpark"}, {"datetaken": "2007-06-03 15:48:10", "license": "2", "title": "IMG_2457", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1198/532667172_b14074720a_o.jpg", "secret": "fdf64d636c", "media": "photo", "latitude": "0", "id": "532667172", "tags": "waterfall mtrainiernationalpark"}, {"datetaken": "2007-06-03 15:48:21", "license": "2", "title": "IMG_2458", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1150/532763437_d50442d062_o.jpg", "secret": "28278c02fa", "media": "photo", "latitude": "0", "id": "532763437", "tags": "waterfall mtrainiernationalpark"}, {"datetaken": "2007-06-03 16:14:25", "license": "2", "title": "IMG_2407a", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1129/532763573_81f89c0627_o.jpg", "secret": "c68fe165e6", "media": "photo", "latitude": "0", "id": "532763573", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 16:14:57", "license": "2", "title": "IMG_2407b", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1257/532763723_3a53885cea_o.jpg", "secret": "e9b599c95f", "media": "photo", "latitude": "0", "id": "532763723", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 16:15:15", "license": "2", "title": "IMG_2407c", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1192/532763849_bec366a688_o.jpg", "secret": "08ce472d97", "media": "photo", "latitude": "0", "id": "532763849", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 16:15:48", "license": "2", "title": "IMG_2407e", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1140/532764009_d42b8e558d_o.jpg", "secret": "d05c68d944", "media": "photo", "latitude": "0", "id": "532764009", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 16:16:41", "license": "2", "title": "IMG_2407f", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1202/532668060_29f13a1898_o.jpg", "secret": "ff1fe7066d", "media": "photo", "latitude": "0", "id": "532668060", "tags": "mtrainiernationalpark"}, {"datetaken": "2007-06-03 16:42:54", "license": "2", "title": "IMG_2470", "text": "", "album_id": "72157600317528182", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1148/532668178_4679e28f15_o.jpg", "secret": "c03171edf7", "media": "photo", "latitude": "0", "id": "532668178", "tags": ""}, {"datetaken": "2007-07-28 17:03:12", "license": "1", "title": "Friends, almost sober", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1190/954727370_9ee41bf348_o.jpg", "secret": "bc5bf03f30", "media": "photo", "latitude": "0", "id": "954727370", "tags": "suzanne briony"}, {"datetaken": "2007-07-28 17:55:24", "license": "1", "title": "Get that camera away from me", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1396/954721176_4043e8b2d2_o.jpg", "secret": "78ad0302bd", "media": "photo", "latitude": "0", "id": "954721176", "tags": ""}, {"datetaken": "2007-07-28 18:20:05", "license": "1", "title": "Hen & sister", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1386/954719152_839914cb2a_o.jpg", "secret": "ed39ed7071", "media": "photo", "latitude": "0", "id": "954719152", "tags": ""}, {"datetaken": "2007-07-28 18:40:56", "license": "1", "title": "Missed!", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1192/953863687_6975acc868_o.jpg", "secret": "c13f2f45b3", "media": "photo", "latitude": "0", "id": "953863687", "tags": "briony"}, {"datetaken": "2007-07-28 18:45:51", "license": "1", "title": "Mm, food", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1176/954714618_84f95b25db_o.jpg", "secret": "ad7b134e94", "media": "photo", "latitude": "0", "id": "954714618", "tags": "cooking restaurant japaneserestaurant chef"}, {"datetaken": "2007-07-28 18:52:11", "license": "1", "title": "Whee!", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1304/953859095_f2822f44a9_o.jpg", "secret": "c1984fe888", "media": "photo", "latitude": "0", "id": "953859095", "tags": "hat sarah egg"}, {"datetaken": "2007-07-28 19:14:30", "license": "1", "title": "Fire pretty. Still.", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1169/954709966_c7b4538d35_o.jpg", "secret": "8f0083a4c4", "media": "photo", "latitude": "0", "id": "954709966", "tags": "fire restaurant chef pyromaniac"}, {"datetaken": "2007-07-28 19:28:23", "license": "1", "title": "High Table", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1246/954708644_2d6523b389_o.jpg", "secret": "6a27aa393a", "media": "photo", "latitude": "0", "id": "954708644", "tags": ""}, {"datetaken": "2007-07-28 19:28:23", "license": "1", "title": "Eek! Demon family", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1373/953853477_58787d7c11_o.jpg", "secret": "4ce1d34392", "media": "photo", "latitude": "0", "id": "953853477", "tags": ""}, {"datetaken": "2007-07-28 20:34:35", "license": "1", "title": "As it says on the badge", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1391/953852663_f55344088c_o.jpg", "secret": "711ad94fd0", "media": "photo", "latitude": "0", "id": "953852663", "tags": "sarah"}, {"datetaken": "2007-07-28 20:40:04", "license": "1", "title": "Oh look, Suz and I appear to be drunk again", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1009/954704416_1756188639_o.jpg", "secret": "0f09f50827", "media": "photo", "latitude": "0", "id": "954704416", "tags": ""}, {"datetaken": "2007-07-28 20:46:55", "license": "1", "title": "It's great to take photos that people will hate you for later", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1035/954702442_3e0741468f_o.jpg", "secret": "bcf8fdb501", "media": "photo", "latitude": "0", "id": "954702442", "tags": "suzanne"}, {"datetaken": "2007-07-28 20:59:29", "license": "1", "title": "Hen shoes", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1404/953847697_5eabd30912_o.jpg", "secret": "2d1cee55a3", "media": "photo", "latitude": "0", "id": "953847697", "tags": "pink shoes"}, {"datetaken": "2007-07-28 22:02:50", "license": "1", "title": "On the dancefloor", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1376/954698436_e0e11ce09f_o.jpg", "secret": "898124a9c7", "media": "photo", "latitude": "0", "id": "954698436", "tags": ""}, {"datetaken": "2007-07-28 22:45:03", "license": "1", "title": "Are we drunk enough for Meaningful?", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1077/954695004_4828efb19b_o.jpg", "secret": "2f89d150e3", "media": "photo", "latitude": "0", "id": "954695004", "tags": "briony"}, {"datetaken": "2007-07-28 22:46:47", "license": "1", "title": "I love Suz", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1062/954692276_5d253ac186_o.jpg", "secret": "a1aa54d267", "media": "photo", "latitude": "0", "id": "954692276", "tags": "suzanne"}, {"datetaken": "2007-07-28 23:25:13", "license": "1", "title": "Friendly", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1269/953837729_fdf214f12f_o.jpg", "secret": "4400db681d", "media": "photo", "latitude": "0", "id": "953837729", "tags": "kate suzanne briony"}, {"datetaken": "2007-07-29 01:09:07", "license": "1", "title": "Peas in pods", "text": "", "album_id": "72157601103516248", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1069/953835729_5691d5f5eb_o.jpg", "secret": "ad5d16d2c5", "media": "photo", "latitude": "0", "id": "953835729", "tags": "suzanne briony"}, {"datetaken": "2007-07-21 09:30:05", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "-89.985945", "url_o": "https://farm2.staticflickr.com/1237/1012443165_de75a19ac2_o.jpg", "secret": "8c36bde39a", "media": "photo", "latitude": "30.049166", "id": "1012443165", "tags": "marsh planting spartina lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 09:30:21", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "-89.985945", "url_o": "https://farm2.staticflickr.com/1381/1013305684_e69f584219_o.jpg", "secret": "fad94331d5", "media": "photo", "latitude": "30.049166", "id": "1013305684", "tags": "marsh planting spartina lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 09:34:13", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1390/1012439511_e33a650380_o.jpg", "secret": "98606525d1", "media": "photo", "latitude": "0", "id": "1012439511", "tags": "marsh planting spartina expert lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 09:40:35", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1397/1013301990_d46940b389_o.jpg", "secret": "551ba332eb", "media": "photo", "latitude": "0", "id": "1013301990", "tags": "marsh planting spartina lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 09:40:47", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1077/1013302092_4950cd2f18_o.jpg", "secret": "de673748b7", "media": "photo", "latitude": "0", "id": "1013302092", "tags": "marsh planting spartina lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 09:42:11", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1058/1012440269_ae62789d63_o.jpg", "secret": "3453c7fc8d", "media": "photo", "latitude": "0", "id": "1012440269", "tags": "marsh planting spartina lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 09:42:36", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "-89.985945", "url_o": "https://farm2.staticflickr.com/1112/1013302696_0ece4e2115_o.jpg", "secret": "0db2f7e7c2", "media": "photo", "latitude": "30.049166", "id": "1013302696", "tags": "marsh planting spartina lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 09:57:13", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "-89.985945", "url_o": "https://farm2.staticflickr.com/1191/1012440379_7d45848fb2_o.jpg", "secret": "ed79088124", "media": "photo", "latitude": "30.049166", "id": "1012440379", "tags": "friends marsh planting spartina lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 09:57:50", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "-89.985945", "url_o": "https://farm2.staticflickr.com/1381/1012440557_4c8ca958ee_o.jpg", "secret": "ff2f67aebf", "media": "photo", "latitude": "30.049166", "id": "1012440557", "tags": "marsh planting spartina lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 09:58:22", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "-89.985945", "url_o": "https://farm2.staticflickr.com/1214/1012440631_dd00825c7a_o.jpg", "secret": "1ec90e9e8e", "media": "photo", "latitude": "30.049166", "id": "1012440631", "tags": "marsh planting spartina lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 10:00:05", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "-89.985945", "url_o": "https://farm2.staticflickr.com/1187/1013303056_7fa5ee2588_o.jpg", "secret": "f8f27255d4", "media": "photo", "latitude": "30.049166", "id": "1013303056", "tags": "marsh planting spartina lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 10:00:57", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "-89.985945", "url_o": "https://farm2.staticflickr.com/1056/1013303642_63912716cf_o.jpg", "secret": "f37a72014b", "media": "photo", "latitude": "30.049166", "id": "1013303642", "tags": "marsh planting spartina lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 10:01:45", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "-89.985945", "url_o": "https://farm2.staticflickr.com/1193/1012441633_3827e1cc26_o.jpg", "secret": "32fe45889c", "media": "photo", "latitude": "30.049166", "id": "1012441633", "tags": "marsh planting spartina lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 10:02:15", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "-89.985945", "url_o": "https://farm2.staticflickr.com/1105/1013303982_21673e55b7_o.jpg", "secret": "bdaca3d15a", "media": "photo", "latitude": "30.049166", "id": "1013303982", "tags": "marsh planting spartina lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 10:02:41", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "-89.985945", "url_o": "https://farm2.staticflickr.com/1110/1013304392_77817b0283_o.jpg", "secret": "2880026a22", "media": "photo", "latitude": "30.049166", "id": "1013304392", "tags": "marsh planting spartina lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 10:04:01", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "-89.985945", "url_o": "https://farm2.staticflickr.com/1070/1012442257_898877fcc7_o.jpg", "secret": "fa96cac94a", "media": "photo", "latitude": "30.049166", "id": "1012442257", "tags": "marsh planting spartina lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 10:18:22", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "-89.985945", "url_o": "https://farm2.staticflickr.com/1197/1012442657_97eaf46df4_o.jpg", "secret": "367f967664", "media": "photo", "latitude": "30.049166", "id": "1012442657", "tags": "marsh planting spartina expert lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 11:10:22", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "-89.985945", "url_o": "https://farm2.staticflickr.com/1159/1012442887_7978ffdf1b_o.jpg", "secret": "542c6fa891", "media": "photo", "latitude": "30.049166", "id": "1012442887", "tags": "marsh planting spartina lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-07-21 11:10:43", "license": "1", "title": "Replanting Marsh in Lake Pontchartrain", "text": "", "album_id": "72157601282747831", "longitude": "-89.985945", "url_o": "https://farm2.staticflickr.com/1303/1012442977_510d1795fb_o.jpg", "secret": "56b9d37fd5", "media": "photo", "latitude": "30.049166", "id": "1012442977", "tags": "marsh planting spartina lakepontchartrain societyforconservationbiology restorationecology noscb carolfranze"}, {"datetaken": "2007-01-27 05:24:53", "license": "1", "title": "\u041f\u043e\u0435\u0437\u0434, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u043c\u044b \u043f\u0440\u0438\u0435\u0445\u0430\u043b\u0438 / The train we had arrived on", "text": "", "album_id": "72157594513823620", "longitude": "39.958219", "url_o": "https://farm1.staticflickr.com/176/377402269_56c16c4d9f_o.jpg", "secret": "56c16c4d9f", "media": "photo", "latitude": "53.251863", "id": "377402269", "tags": "travel night geotagged russia railways canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u0436\u0435\u043b\u0435\u0437\u043d\u044b\u0435\u0434\u043e\u0440\u043e\u0433\u0438 sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 05:26:27", "license": "1", "title": "\u041f\u043e\u0435\u0437\u0434 \u043e\u0442\u0445\u043e\u0434\u0438\u0442 / The train is departing", "text": "", "album_id": "72157594513823620", "longitude": "39.958219", "url_o": "https://farm1.staticflickr.com/158/377401979_eae10a47b1_o.jpg", "secret": "eae10a47b1", "media": "photo", "latitude": "53.251863", "id": "377401979", "tags": "travel night geotagged russia railways canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u0436\u0435\u043b\u0435\u0437\u043d\u044b\u0435\u0434\u043e\u0440\u043e\u0433\u0438 sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 05:27:06", "license": "1", "title": "\u041f\u043e\u0435\u0437\u0434 \u043e\u0442\u0445\u043e\u0434\u0438\u0442 \u0431\u044b\u0441\u0442\u0440\u0435\u0435 / The train is departing faster", "text": "", "album_id": "72157594513823620", "longitude": "39.958219", "url_o": "https://farm1.staticflickr.com/145/377401651_8d38f586a3_o.jpg", "secret": "8d38f586a3", "media": "photo", "latitude": "53.251863", "id": "377401651", "tags": "travel night geotagged russia railways canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u0436\u0435\u043b\u0435\u0437\u043d\u044b\u0435\u0434\u043e\u0440\u043e\u0433\u0438 sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 05:30:39", "license": "1", "title": "\u0421\u0442\u0430\u043d\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u0434\u043e\u043c\u0438\u043a / A small house near the railstation", "text": "", "album_id": "72157594513823620", "longitude": "39.958219", "url_o": "https://farm1.staticflickr.com/157/377401288_ca7c291694_o.jpg", "secret": "ca7c291694", "media": "photo", "latitude": "53.251863", "id": "377401288", "tags": "travel night geotagged russia railways canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u0436\u0435\u043b\u0435\u0437\u043d\u044b\u0435\u0434\u043e\u0440\u043e\u0433\u0438 sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 05:32:18", "license": "1", "title": "\u041e\u0433\u043d\u0438 / Lights", "text": "", "album_id": "72157594513823620", "longitude": "39.958219", "url_o": "https://farm1.staticflickr.com/74/377400989_7822a8a1bb_o.jpg", "secret": "7822a8a1bb", "media": "photo", "latitude": "53.251863", "id": "377400989", "tags": "travel night geotagged russia railways canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u0436\u0435\u043b\u0435\u0437\u043d\u044b\u0435\u0434\u043e\u0440\u043e\u0433\u0438 sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 05:42:39", "license": "1", "title": "\u0421\u0442\u0430\u043d\u0446\u0438\u044f \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 / Ranenburg railstation", "text": "", "album_id": "72157594513823620", "longitude": "39.958219", "url_o": "https://farm1.staticflickr.com/173/377400689_43586226e5_o.jpg", "secret": "43586226e5", "media": "photo", "latitude": "53.251863", "id": "377400689", "tags": "travel night geotagged russia railways canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u0436\u0435\u043b\u0435\u0437\u043d\u044b\u0435\u0434\u043e\u0440\u043e\u0433\u0438 sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 05:44:02", "license": "1", "title": "\u041f\u0440\u0438\u0432\u043e\u043a\u0437\u0430\u043b\u044c\u043d\u0430\u044f \u043f\u043b\u043e\u0449\u0430\u0434\u044c / Houses near the rail station", "text": "", "album_id": "72157594513823620", "longitude": "39.958219", "url_o": "https://farm1.staticflickr.com/163/377400396_daeb6ba9ca_o.jpg", "secret": "daeb6ba9ca", "media": "photo", "latitude": "53.251863", "id": "377400396", "tags": "travel night geotagged russia canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 05:45:52", "license": "1", "title": "\u041a\u043e\u0437\u043b\u043e\u0432\u044b\u0435 \u043a\u0440\u0430\u043d\u044b / Frame cranes", "text": "", "album_id": "72157594513823620", "longitude": "39.958219", "url_o": "https://farm1.staticflickr.com/79/377400032_d27266ae6a_o.jpg", "secret": "d27266ae6a", "media": "photo", "latitude": "53.251863", "id": "377400032", "tags": "travel night geotagged russia railways canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u0436\u0435\u043b\u0435\u0437\u043d\u044b\u0435\u0434\u043e\u0440\u043e\u0433\u0438 sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 05:47:52", "license": "1", "title": "\u0421\u0442\u0430\u043d\u0446\u0438\u043e\u043d\u043d\u043e\u0435 \u0437\u0434\u0430\u043d\u0438\u0435 / Station building", "text": "", "album_id": "72157594513823620", "longitude": "39.958219", "url_o": "https://farm1.staticflickr.com/97/377399721_fad2543c7b_o.jpg", "secret": "fad2543c7b", "media": "photo", "latitude": "53.251863", "id": "377399721", "tags": "travel night geotagged russia railways canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u0436\u0435\u043b\u0435\u0437\u043d\u044b\u0435\u0434\u043e\u0440\u043e\u0433\u0438 sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 05:50:05", "license": "1", "title": "\u0412\u043e\u043a\u0437\u0430\u043b / Rail station", "text": "", "album_id": "72157594513823620", "longitude": "39.958219", "url_o": "https://farm1.staticflickr.com/174/377399189_e83c6140e4_o.jpg", "secret": "e83c6140e4", "media": "photo", "latitude": "53.251863", "id": "377399189", "tags": "travel night geotagged russia railways canoneos350d canoneosdigitalrebelxt 2007 railstation \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u0432\u043e\u043a\u0437\u0430\u043b \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u0436\u0435\u043b\u0435\u0437\u043d\u044b\u0435\u0434\u043e\u0440\u043e\u0433\u0438 sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 05:54:36", "license": "1", "title": "\u041f\u0440\u0438\u0431\u044b\u0432\u0430\u044e\u0449\u0438\u0439 \u043f\u043e\u0435\u0437\u0434 / A train is coming", "text": "", "album_id": "72157594513823620", "longitude": "39.958219", "url_o": "https://farm1.staticflickr.com/181/377398834_e93b65a0d2_o.jpg", "secret": "e93b65a0d2", "media": "photo", "latitude": "53.251863", "id": "377398834", "tags": "travel night geotagged russia railways canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u0436\u0435\u043b\u0435\u0437\u043d\u044b\u0435\u0434\u043e\u0440\u043e\u0433\u0438 sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 06:01:24", "license": "1", "title": "\u0412\u043e\u0434\u043e\u043d\u0430\u043f\u043e\u0440\u043d\u0430\u044f \u0431\u0430\u0448\u043d\u044f / Water tower", "text": "", "album_id": "72157594513823620", "longitude": "39.958219", "url_o": "https://farm1.staticflickr.com/175/377398597_52a759d8a2_o.jpg", "secret": "52a759d8a2", "media": "photo", "latitude": "53.251863", "id": "377398597", "tags": "travel tower night geotagged russia watertower canoneos350d canoneosdigitalrebelxt 2007 \u0431\u0430\u0448\u043d\u044f \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u0432\u043e\u0434\u043e\u043d\u0430\u043f\u043e\u0440\u043d\u0430\u044f\u0431\u0430\u0448\u043d\u044f sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 06:06:45", "license": "1", "title": "\u0414\u043e\u043c\u0438\u043a\u0438 / Small houses", "text": "", "album_id": "72157594513823620", "longitude": "39.958219", "url_o": "https://farm1.staticflickr.com/166/377398081_a2eb5363a8_o.jpg", "secret": "a2eb5363a8", "media": "photo", "latitude": "53.251863", "id": "377398081", "tags": "travel night geotagged russia canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm woodarch"}, {"datetaken": "2007-01-27 06:07:32", "license": "1", "title": "\u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433\u0441\u043a\u0430\u044f \u0434\u0438\u0441\u0442\u0430\u043d\u0446\u0438\u044f \u043f\u0443\u0442\u0438 / Ranenburg track maintenance department", "text": "", "album_id": "72157594513823620", "longitude": "39.958219", "url_o": "https://farm1.staticflickr.com/172/377397778_311699e417_o.jpg", "secret": "311699e417", "media": "photo", "latitude": "53.251863", "id": "377397778", "tags": "travel night geotagged russia canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 06:09:35", "license": "1", "title": "\u041f\u043b\u0430\u043a\u0430\u0442 / Poster", "text": "", "album_id": "72157594513823620", "longitude": "39.958219", "url_o": "https://farm1.staticflickr.com/165/377397428_2ff8b101ae_o.jpg", "secret": "2ff8b101ae", "media": "photo", "latitude": "53.251863", "id": "377397428", "tags": "travel night poster geotagged russia canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u043f\u043b\u0430\u043a\u0430\u0442 sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 06:10:23", "license": "1", "title": "\u0414\u043e\u0441\u043a\u0430 \u043f\u043e\u0447\u0451\u0442\u0430 / List of best workers", "text": "", "album_id": "72157594513823620", "longitude": "39.958219", "url_o": "https://farm1.staticflickr.com/169/377397159_4ce48bcca0_o.jpg", "secret": "4ce48bcca0", "media": "photo", "latitude": "53.251863", "id": "377397159", "tags": "travel night geotagged russia canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 06:17:19", "license": "1", "title": "\u0423\u043b\u0438\u0446\u0430 \u041b\u0443\u0447\u043a\u0438 / Luchki street", "text": "", "album_id": "72157594513823620", "longitude": "39.953241", "url_o": "https://farm1.staticflickr.com/139/377396770_dab16927e2_o.jpg", "secret": "dab16927e2", "media": "photo", "latitude": "53.249192", "id": "377396770", "tags": "travel night geotagged russia roadsign canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 06:35:26", "license": "1", "title": "\u0423\u043b\u0438\u0446\u0430 \u042d\u043d\u0433\u0435\u043b\u044c\u0441\u0430 / Engels street", "text": "", "album_id": "72157594513823620", "longitude": "39.962167", "url_o": "https://farm1.staticflickr.com/140/377396468_94456efd0d_o.jpg", "secret": "94456efd0d", "media": "photo", "latitude": "53.241078", "id": "377396468", "tags": "travel night geotagged russia canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 06:42:04", "license": "1", "title": "\u041a\u043e\u043b\u0435\u0441\u043e \u043e\u0431\u043e\u0437\u0440\u0435\u043d\u0438\u044f / Big dipper", "text": "", "album_id": "72157594513823620", "longitude": "39.962167", "url_o": "https://farm1.staticflickr.com/127/377396156_4b264ddc9e_o.jpg", "secret": "4b264ddc9e", "media": "photo", "latitude": "53.241078", "id": "377396156", "tags": "travel night geotagged russia canoneos350d canoneosdigitalrebelxt 2007 bigdipper \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm \u043a\u043e\u043b\u0435\u0441\u043e\u043e\u0431\u043e\u0437\u0440\u0435\u043d\u0438\u044f"}, {"datetaken": "2007-01-27 06:43:49", "license": "1", "title": "\u0412\u043e\u0435\u043d\u043d\u044b\u0439 \u043f\u0430\u043c\u044f\u0442\u043d\u0438\u043a / War monument", "text": "", "album_id": "72157594513823620", "longitude": "39.962167", "url_o": "https://farm1.staticflickr.com/155/377395793_fb4cfb182d_o.jpg", "secret": "fb4cfb182d", "media": "photo", "latitude": "53.241078", "id": "377395793", "tags": "travel monument night geotagged russia canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0430\u043c\u044f\u0442\u043d\u0438\u043a \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 06:44:26", "license": "1", "title": "\u041f\u043e\u0447\u0442\u0430 / Post office", "text": "", "album_id": "72157594513823620", "longitude": "39.962167", "url_o": "https://farm1.staticflickr.com/184/377395356_90aab6ddd3_o.jpg", "secret": "90aab6ddd3", "media": "photo", "latitude": "53.241078", "id": "377395356", "tags": "travel night geotagged russia postoffice canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f \u043f\u043e\u0447\u0442\u0430 sliku7700 \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d canonef28105mmiif3545usm"}, {"datetaken": "2007-01-27 06:51:04", "license": "1", "title": "\u0424\u043e\u043d\u0442\u0430\u043d / fountain", "text": "", "album_id": "72157594513823620", "longitude": "39.962167", "url_o": "https://farm1.staticflickr.com/182/377395033_099e0a42d6_o.jpg", "secret": "099e0a42d6", "media": "photo", "latitude": "53.241078", "id": "377395033", "tags": "travel fountain night geotagged russia canoneos350d \u0444\u043e\u043d\u0442\u0430\u043d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f sliku7700 canonef28105mmiif3545usmbroken \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d"}, {"datetaken": "2007-01-27 06:52:24", "license": "1", "title": "\u0426\u0435\u0440\u043a\u043e\u0432\u044c / Church", "text": "", "album_id": "72157594513823620", "longitude": "39.962167", "url_o": "https://farm1.staticflickr.com/151/377394609_5238991a4b_o.jpg", "secret": "5238991a4b", "media": "photo", "latitude": "53.241078", "id": "377394609", "tags": "travel church night geotagged russia canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u0446\u0435\u0440\u043a\u043e\u0432\u044c \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f sliku7700 canonef28105mmiif3545usmbroken \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d"}, {"datetaken": "2007-01-27 06:54:50", "license": "1", "title": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u044f / The last photo", "text": "", "album_id": "72157594513823620", "longitude": "39.962167", "url_o": "https://farm1.staticflickr.com/140/377394303_b64b054a81_o.jpg", "secret": "b64b054a81", "media": "photo", "latitude": "53.241078", "id": "377394303", "tags": "travel abstract night geotagged russia canoneos350d canoneosdigitalrebelxt 2007 \u043d\u043e\u0447\u044c \u0420\u043e\u0441\u0441\u0438\u044f \u0430\u0431\u0441\u0442\u0440\u0430\u043a\u0446\u0438\u044f \u043f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f sliku7700 canonef28105mmiif3545usmbroken \u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f\u043e\u0431\u043b\u0430\u0441\u0442\u044c lipetskregion ranenburg chaplygin \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433 \u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d"}, {"datetaken": "2005-11-29 10:53:07", "license": "3", "title": "Webb House", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/81895292_162669ea54_o.jpg", "secret": "162669ea54", "media": "photo", "latitude": "0", "id": "81895292", "tags": "red house history washington raw connecticut newengland ct historic blogged americanrevolution revolutionary webb conn wethersfield rochambeau starrgazrsown"}, {"datetaken": "2005-11-29 10:53:19", "license": "3", "title": "Webb House", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/81894792_77efce73b8_o.jpg", "secret": "77efce73b8", "media": "photo", "latitude": "0", "id": "81894792", "tags": "red house history washington raw connecticut newengland ct historic blogged revolutionary webb conn wethersfield rochambeau starrgazrsown"}, {"datetaken": "2005-11-29 10:53:29", "license": "3", "title": "Perfect Time, Perfect Place", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/81820578_8651e9c96d_o.jpg", "secret": "8651e9c96d", "media": "photo", "latitude": "0", "id": "81820578", "tags": "man tree bench paper reading connecticut ct peaceful content shutters conn escheresque pilars wethersfield starrgazrsown"}, {"datetaken": "2005-11-29 10:53:43", "license": "3", "title": "Perfect Day, Perfect Time", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/81820219_90d03b8490_o.jpg", "secret": "90d03b8490", "media": "photo", "latitude": "0", "id": "81820219", "tags": "man tree bench paper reading connecticut ct peaceful content shutters conn escheresque pilars wethersfield starrgazrsown"}, {"datetaken": "2005-11-29 10:54:42", "license": "3", "title": "Silas Deane House", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/81814383_c2b33f05ef_o.jpg", "secret": "c2b33f05ef", "media": "photo", "latitude": "0", "id": "81814383", "tags": "park house raw landmark historic national registered service silas deane silasdeane starrgazrsown"}, {"datetaken": "2005-11-29 10:55:10", "license": "3", "title": "Silas Deane House", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/81814726_20b2f68522_o.jpg", "secret": "20b2f68522", "media": "photo", "latitude": "0", "id": "81814726", "tags": "park house raw landmark historic national registered service silas deane silasdeane starrgazrsown"}, {"datetaken": "2005-11-29 10:55:25", "license": "3", "title": "Silas Deane House", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/81814942_8d1ad42f4b_o.jpg", "secret": "8d1ad42f4b", "media": "photo", "latitude": "0", "id": "81814942", "tags": "park door red house raw landmark historic national registered service silas deane silasdeane utatadrawslines starrgazrsown utataopensthedoor"}, {"datetaken": "2005-11-29 10:55:46", "license": "3", "title": "Silas Deane House", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/81814095_2a577aa0ab_o.jpg", "secret": "2a577aa0ab", "media": "photo", "latitude": "0", "id": "81814095", "tags": "park house raw landmark historic national registered blogged service americanrevolution silas 1776 deane 1775 silasdeane starrgazrsown trf17751783"}, {"datetaken": "2005-11-29 10:56:21", "license": "3", "title": "Keeney Memorial", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/81083255_08156adb09_o.jpg", "secret": "08156adb09", "media": "photo", "latitude": "0", "id": "81083255", "tags": "brick museum memorial raw connecticut newengland ct 1893 conn wethersfield keeney 1775 keeneymemorial starrgazrsown"}, {"datetaken": "2005-11-29 10:57:01", "license": "3", "title": "Keeney Memorial", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/81080789_dcc4028af2_o.jpg", "secret": "dcc4028af2", "media": "photo", "latitude": "0", "id": "81080789", "tags": "brick museum memorial raw connecticut newengland ct 1893 conn wethersfield keeney 1775 keeneymemorial starrgazrsown"}, {"datetaken": "2005-11-29 10:58:01", "license": "3", "title": "Chester Bulkeley Bed & Breakfast", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/79576201_d624778540_o.jpg", "secret": "d624778540", "media": "photo", "latitude": "0", "id": "79576201", "tags": "christmas red white black brick window architecture raw lace connecticut curtain newengland twin ct double wreath bow shutter ribbon bb decorate whitewash conn flowerbox wethersfield chesterbulkeleybedbreakfast chesterbulkeley starrgazrsown"}, {"datetaken": "2005-11-29 10:58:24", "license": "3", "title": "Chester Bulkeley Bed & Breakfast", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/79576464_da4cceb773_o.jpg", "secret": "da4cceb773", "media": "photo", "latitude": "0", "id": "79576464", "tags": "christmas red white black brick window architecture raw lace connecticut curtain newengland twin ct double wreath bow shutter ribbon bb decorate whitewash conn flowerbox wethersfield chesterbulkeleybedbreakfast chesterbulkeley starrgazrsown"}, {"datetaken": "2005-11-29 10:58:46", "license": "3", "title": "Chester Bulkeley Bed & Breakfast", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/79576650_0e0c89db1a_o.jpg", "secret": "0e0c89db1a", "media": "photo", "latitude": "0", "id": "79576650", "tags": "christmas red white black brick window architecture raw lace connecticut curtain newengland twin ct double wreath bow shutter ribbon bb decorate whitewash conn flowerbox wethersfield chesterbulkeleybedbreakfast chesterbulkeley starrgazrsown mooholidaycardcompetition"}, {"datetaken": "2005-11-29 10:59:37", "license": "3", "title": "Wethersfield Fire Department", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/79485182_ee4ae36669_o.jpg", "secret": "ee4ae36669", "media": "photo", "latitude": "0", "id": "79485182", "tags": "architecture fire raw connecticut newengland ct conn wethersfield starrgazrsown"}, {"datetaken": "2005-11-29 11:00:14", "license": "3", "title": "Wethersfield Fire Department", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/79485727_5d7e66b62a_o.jpg", "secret": "5d7e66b62a", "media": "photo", "latitude": "0", "id": "79485727", "tags": "architecture raw connecticut newengland ct firehouse conn wethersfield starrgazrsown"}, {"datetaken": "2005-11-29 11:00:33", "license": "3", "title": "Wethersfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/79485998_7c7168f415_o.jpg", "secret": "7c7168f415", "media": "photo", "latitude": "0", "id": "79485998", "tags": "door red architecture raw connecticut newengland ct conn wethersfield starrgazrsown"}, {"datetaken": "2005-11-29 11:01:17", "license": "3", "title": "Wethersfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/79484904_8c13d5d18f_o.jpg", "secret": "8c13d5d18f", "media": "photo", "latitude": "0", "id": "79484904", "tags": "door red architecture raw connecticut newengland twin ct double wreath conn wethersfield starrgazrsown"}, {"datetaken": "2005-11-29 11:01:41", "license": "3", "title": "Wethersfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/79225576_7fee0d359b_o.jpg", "secret": "7fee0d359b", "media": "photo", "latitude": "0", "id": "79225576", "tags": "architecture raw connecticut newengland ct conn wethersfield starrgazrsown"}, {"datetaken": "2005-11-29 11:02:11", "license": "3", "title": "Wethersfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/79216383_45ba0b77f8_o.jpg", "secret": "45ba0b77f8", "media": "photo", "latitude": "0", "id": "79216383", "tags": "old architecture female town hall raw connecticut library newengland ct historical townhall academy society seminary conn educator wethersfield johnemerson 1804 femaleseminary oldacademy wethersfieldhistoricalsociety starrgazrsown"}, {"datetaken": "2005-11-29 11:03:20", "license": "3", "title": "Wethersfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/79216517_70a24eb0a7_o.jpg", "secret": "70a24eb0a7", "media": "photo", "latitude": "0", "id": "79216517", "tags": "door old brick architecture female town hall raw connecticut library newengland ct historical townhall academy society seminary conn educator wethersfield johnemerson 1804 femaleseminary oldacademy wethersfieldhistoricalsociety starrgazrsown utataopensthedoor"}, {"datetaken": "2005-11-29 11:03:57", "license": "3", "title": "Wethersfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/79216160_fb4d73f956_o.jpg", "secret": "fb4d73f956", "media": "photo", "latitude": "0", "id": "79216160", "tags": "old architecture female town hall raw connecticut library newengland ct historical townhall academy society seminary conn educator wethersfield johnemerson 1804 femaleseminary oldacademy wethersfieldhistoricalsociety starrgazrsown"}, {"datetaken": "2005-11-29 11:05:20", "license": "3", "title": "Wethersfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/79207045_0b2c71ff8b_o.jpg", "secret": "0b2c71ff8b", "media": "photo", "latitude": "0", "id": "79207045", "tags": "architecture raw connecticut newengland ct 1740 conn wethersfield willardrestorations johnloveland starrgazrsown"}, {"datetaken": "2005-11-29 11:05:48", "license": "3", "title": "Wethersfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/79187838_ff1e041edb_o.jpg", "secret": "ff1e041edb", "media": "photo", "latitude": "0", "id": "79187838", "tags": "red architecture barn raw connecticut newengland ct conn wethersfield starrgazrsown"}, {"datetaken": "2005-11-29 11:06:10", "license": "3", "title": "Wetherfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/79173173_8a861bec41_o.jpg", "secret": "8a861bec41", "media": "photo", "latitude": "0", "id": "79173173", "tags": "architecture raw connecticut newengland ct seminary conn wethersfield 1787 ashelwright femaleseminary josephemerson starrgazrsown"}, {"datetaken": "2005-11-29 11:06:43", "license": "3", "title": "Wetherfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/79171071_e0e4d11b23_o.jpg", "secret": "e0e4d11b23", "media": "photo", "latitude": "0", "id": "79171071", "tags": "door blue architecture raw connecticut newengland synagogue ct starofdavid conn wethersfield starrgazrsown utataopensthedoor"}, {"datetaken": "2005-11-29 11:07:21", "license": "3", "title": "Wethersfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/78941816_bc35d10ee2_o.jpg", "secret": "bc35d10ee2", "media": "photo", "latitude": "0", "id": "78941816", "tags": "architecture raw connecticut newengland ct conn wethersfield starrgazrsown"}, {"datetaken": "2005-11-29 11:09:07", "license": "3", "title": "Wethersfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/78921960_abb0d9d5ef_o.jpg", "secret": "abb0d9d5ef", "media": "photo", "latitude": "0", "id": "78921960", "tags": "architecture raw connecticut newengland ct conn wethersfield starrgazrsown"}, {"datetaken": "2005-11-29 11:12:49", "license": "3", "title": "Wethersfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/78777533_a5c01bcaf8_o.jpg", "secret": "a5c01bcaf8", "media": "photo", "latitude": "0", "id": "78777533", "tags": "yellow architecture raw connecticut newengland ct conn wethersfield starrgazrsown utatayellow"}, {"datetaken": "2005-11-29 11:13:09", "license": "3", "title": "Wethersfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/78777271_bf0ab2c1a3_o.jpg", "secret": "bf0ab2c1a3", "media": "photo", "latitude": "0", "id": "78777271", "tags": "door yellow architecture raw connecticut newengland ct conn wethersfield starrgazrsown utatayellow utataopensthedoor"}, {"datetaken": "2005-11-29 11:13:16", "license": "3", "title": "Wethersfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/78777151_9b74902201_o.jpg", "secret": "9b74902201", "media": "photo", "latitude": "0", "id": "78777151", "tags": "yellow architecture raw connecticut newengland ct conn wethersfield starrgazrsown utatayellow"}, {"datetaken": "2005-11-29 11:14:23", "license": "3", "title": "Wethersfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/78776550_3053c73a31_o.jpg", "secret": "3053c73a31", "media": "photo", "latitude": "0", "id": "78776550", "tags": "sign raw connecticut ct conn wethersfield beaverbrook starrgazrsown"}, {"datetaken": "2005-11-29 11:18:29", "license": "3", "title": "Wethersfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/78776326_289fcecc77_o.jpg", "secret": "289fcecc77", "media": "photo", "latitude": "0", "id": "78776326", "tags": "raw connecticut ct conn wethersfield starrgazrsown"}, {"datetaken": "2005-11-29 11:19:25", "license": "3", "title": "Wethersfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/78776004_737df1065f_o.jpg", "secret": "737df1065f", "media": "photo", "latitude": "0", "id": "78776004", "tags": "sign raw connecticut ct conn wethersfield starrgazrsown"}, {"datetaken": "2005-11-29 11:20:25", "license": "3", "title": "Wethersfield, Connecticutt", "text": "", "album_id": "1763049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/78776918_bef255e576_o.jpg", "secret": "bef255e576", "media": "photo", "latitude": "0", "id": "78776918", "tags": "raw connecticut ct brook conn wethersfield beaverbrook starrgazrsown"}, {"datetaken": "2010-01-03 00:52:52", "license": "4", "title": "looking at ruins across old byblos", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm5.staticflickr.com/4046/4244034246_79c7fe2e14_o.jpg", "secret": "1c6c75c7b8", "media": "photo", "latitude": "34.120615", "id": "4244034246", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 01:11:07", "license": "4", "title": "beirut, byblow, tripoli 020", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm3.staticflickr.com/2720/4243261805_c411f23103_o.jpg", "secret": "ccfb4a285f", "media": "photo", "latitude": "34.120615", "id": "4243261805", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 01:19:37", "license": "4", "title": "crusader citadel from side", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm5.staticflickr.com/4065/4243262099_7b4be2d7a6_o.jpg", "secret": "7042674211", "media": "photo", "latitude": "34.120615", "id": "4243262099", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 01:19:48", "license": "4", "title": "crusader citadel surface", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm3.staticflickr.com/2787/4244035674_9c2e7c1126_o.jpg", "secret": "c466252476", "media": "photo", "latitude": "34.120615", "id": "4244035674", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 01:28:22", "license": "4", "title": "sea fort guards site water attack", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm5.staticflickr.com/4003/4244035888_c4a951189d_o.jpg", "secret": "ed5416378a", "media": "photo", "latitude": "34.120615", "id": "4244035888", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 01:30:25", "license": "4", "title": "crusader citadel over prehistoric ruins", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm3.staticflickr.com/2776/4244036064_c6c27e5b64_o.jpg", "secret": "9386e57171", "media": "photo", "latitude": "34.120615", "id": "4244036064", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 01:33:04", "license": "4", "title": "sarcophagus, columns, crusader citadel", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm3.staticflickr.com/2668/4243263027_ed5a4d938f_o.jpg", "secret": "dc3dbeb4e6", "media": "photo", "latitude": "34.120615", "id": "4243263027", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 01:33:45", "license": "4", "title": "sarcophagus close-up, columns, crusader citadel", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm3.staticflickr.com/2684/4243263317_b66fb6f761_o.jpg", "secret": "025d326fcd", "media": "photo", "latitude": "34.120615", "id": "4243263317", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 01:35:13", "license": "4", "title": "roman theater stage detail", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm3.staticflickr.com/2525/4243263555_ca2a65b7f7_o.jpg", "secret": "18cb57e043", "media": "photo", "latitude": "34.120615", "id": "4243263555", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 01:35:40", "license": "4", "title": "roman theater", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm3.staticflickr.com/2778/4243263755_87f492f2d1_o.jpg", "secret": "e2804ce205", "media": "photo", "latitude": "34.120615", "id": "4243263755", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 01:37:56", "license": "4", "title": "roman columns", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm5.staticflickr.com/4022/4244037506_72091b1c4c_o.jpg", "secret": "3dd47e7ed8", "media": "photo", "latitude": "34.120615", "id": "4244037506", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 01:38:42", "license": "4", "title": "temple of baalat gubal from above", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm5.staticflickr.com/4001/4243264401_c69e605780_o.jpg", "secret": "aa5cb61fda", "media": "photo", "latitude": "34.120615", "id": "4243264401", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 01:44:54", "license": "4", "title": "foundation of prehistoric neolithic quarters", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm3.staticflickr.com/2497/4244038196_98041d02f3_o.jpg", "secret": "cfa67608dc", "media": "photo", "latitude": "34.120615", "id": "4244038196", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 01:45:17", "license": "4", "title": "roman columns from distance", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm3.staticflickr.com/2773/4243265005_49e0932c49_o.jpg", "secret": "1df4135cc0", "media": "photo", "latitude": "34.120615", "id": "4243265005", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 01:51:51", "license": "4", "title": "great residence, field house", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm3.staticflickr.com/2786/4244038770_9f12c8cf01_o.jpg", "secret": "1d67dd2273", "media": "photo", "latitude": "34.120615", "id": "4244038770", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 01:55:03", "license": "4", "title": "crusader citadel over site of byblos spring", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm3.staticflickr.com/2734/4244039174_3049fa2cae_o.jpg", "secret": "9534d3b149", "media": "photo", "latitude": "34.120615", "id": "4244039174", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 01:55:34", "license": "4", "title": "byblos spring", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm3.staticflickr.com/2772/4243266073_a62b67d567_o.jpg", "secret": "cdae1d5c32", "media": "photo", "latitude": "34.120615", "id": "4243266073", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 01:57:53", "license": "4", "title": "temple of baalat gubal", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm5.staticflickr.com/4037/4243266513_e038bb5fd6_o.jpg", "secret": "69f1625359", "media": "photo", "latitude": "34.120615", "id": "4243266513", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 02:05:28", "license": "4", "title": "temple of the obelisks close up", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm5.staticflickr.com/4047/4244040314_f432c14ded_o.jpg", "secret": "3090d187cb", "media": "photo", "latitude": "34.120615", "id": "4244040314", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 02:07:21", "license": "4", "title": "temple of the obelisks from above", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm3.staticflickr.com/2679/4243267157_4bb5952026_o.jpg", "secret": "bc88d4ceb4", "media": "photo", "latitude": "34.120615", "id": "4243267157", "tags": "lebanon byblos"}, {"datetaken": "2010-01-03 02:10:07", "license": "4", "title": "persian fortress, stonework detail", "text": "", "album_id": "72157623150525078", "longitude": "35.646536", "url_o": "https://farm3.staticflickr.com/2652/4244041282_6c3a499661_o.jpg", "secret": "29fd6c16fa", "media": "photo", "latitude": "34.120615", "id": "4244041282", "tags": "lebanon byblos"}, {"datetaken": "2012-01-03 11:24:31", "license": "5", "title": "Gilded Ceilings at Christchurch College", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6629760983_6b09a2a992_o.jpg", "secret": "f93eb0eb38", "media": "photo", "latitude": "0", "id": "6629760983", "tags": "old greatbritain christchurch england building college rock stone architecture ancient stonework ceiling ridge oxford gilded"}, {"datetaken": "2012-01-03 11:25:45", "license": "5", "title": "Christchurch From Outside", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7146/6629768141_cfc74a455d_o.jpg", "secret": "54c3f7054f", "media": "photo", "latitude": "0", "id": "6629768141", "tags": "old greatbritain roof christchurch england building tree college rock stone yard court ancient view oxford gablearchitecture"}, {"datetaken": "2012-01-03 11:28:04", "license": "5", "title": "Christchurch courtyard", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7022/6629781105_924a5f297d_o.jpg", "secret": "56cdc016e6", "media": "photo", "latitude": "0", "id": "6629781105", "tags": "old greatbritain christchurch england building college grass rock stone architecture court ancient arches courtyard oxford elevated"}, {"datetaken": "2012-01-03 11:29:17", "license": "5", "title": "Stonework in Christchurch", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7152/6629787795_d2be4b6866_o.jpg", "secret": "65ba62ded1", "media": "photo", "latitude": "0", "id": "6629787795", "tags": "old greatbritain christchurch england flower macro building college rock stone architecture carved ancient carving oxford"}, {"datetaken": "2012-01-03 11:29:48", "license": "5", "title": "Einstein's Lecture notes.", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6629790715_2818b8f668_o.jpg", "secret": "66e156f0cd", "media": "photo", "latitude": "0", "id": "6629790715", "tags": "greatbritain england black museum chalk university notes display einstein exhibit science oxford formula chalkboard blackboard relativity"}, {"datetaken": "2012-01-03 11:31:58", "license": "5", "title": "Tree stumps exhibit outside the museum", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7147/6629802651_479e75e9cb_o.jpg", "secret": "1a6dd58cc8", "media": "photo", "latitude": "0", "id": "6629802651", "tags": "greatbritain england tree art museum artist display cut forestry destruction political oxford installation stump deforestation artfrom"}, {"datetaken": "2012-01-03 11:34:00", "license": "5", "title": "Skeletal Parade", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7025/6629814113_04c8688628_o.jpg", "secret": "8543c8ffdd", "media": "photo", "latitude": "0", "id": "6629814113", "tags": "greatbritain england animal museum skeleton mammal university display exhibit science antlers oxford bones dear skeletal"}, {"datetaken": "2012-01-03 11:36:37", "license": "5", "title": "Pitt Rivers Museum", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7033/6629829611_bac9dcc9cc_o.jpg", "secret": "0a026d06b0", "media": "photo", "latitude": "0", "id": "6629829611", "tags": "greatbritain england glass museum university display room exhibit science collection oxford displays artifacts cases overview"}, {"datetaken": "2012-01-03 11:38:13", "license": "5", "title": "Radcliffe rooftop", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7021/6629838847_6699d58b66_o.jpg", "secret": "4dc5013912", "media": "photo", "latitude": "0", "id": "6629838847", "tags": "old greatbritain roof england sky building monument ancient library famous oxford dome cylinder copper radcliffe"}, {"datetaken": "2012-01-03 11:39:58", "license": "5", "title": "Radcliffe again.", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7151/6629848879_bdd731e0a2_o.jpg", "secret": "65b30c424e", "media": "photo", "latitude": "0", "id": "6629848879", "tags": "old greatbritain england building brick grass stone library courtyard oxford pillars radcliffe dorrway"}, {"datetaken": "2012-01-03 11:41:37", "license": "5", "title": "Oxford Rooftops", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6629857747_7b41dd784a_o.jpg", "secret": "6e832b87e2", "media": "photo", "latitude": "0", "id": "6629857747", "tags": "old greatbritain windows england skyline buildings ancient spires stonework towers oxford points"}, {"datetaken": "2012-01-03 11:43:07", "license": "5", "title": "Radcliffe Library", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7012/6629865851_40ff054032_o.jpg", "secret": "f974730cc1", "media": "photo", "latitude": "0", "id": "6629865851", "tags": "old greatbritain windows england building monument rock stone architecture ancient library famous oxford dome radcliffe"}, {"datetaken": "2012-01-03 11:44:32", "license": "5", "title": "Reflection", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7146/6629873493_4ac0a37460_o.jpg", "secret": "4cde2221e1", "media": "photo", "latitude": "0", "id": "6629873493", "tags": "street greatbritain england reflection window glass sign outside pub kat view katherine oxford kingsarms yelloe hollywell ambiant"}, {"datetaken": "2012-01-03 11:45:48", "license": "5", "title": "Building in South Oxford", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7142/6629880749_842de68f13_o.jpg", "secret": "09f8afcfb0", "media": "photo", "latitude": "0", "id": "6629880749", "tags": "old greatbritain england sculpture building brick stone architecture ancient arches oxford"}, {"datetaken": "2012-01-03 11:47:20", "license": "5", "title": "Best Gutter Evar!", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7032/6629889279_c2a61ffd4f_o.jpg", "secret": "a26b29d888", "media": "photo", "latitude": "0", "id": "6629889279", "tags": "greatbritain england building water metal stone architecture design funny head stonework pipe lion angles oxford novel gutter piping functional gutters"}, {"datetaken": "2012-01-03 11:49:02", "license": "5", "title": "Roofline", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7019/6629899259_bbd3acf7e0_o.jpg", "secret": "4d6f7c1895", "media": "photo", "latitude": "0", "id": "6629899259", "tags": "old greatbritain england up stone skyline architecture buildings view spires towers oxford roofline"}, {"datetaken": "2012-01-03 11:51:05", "license": "5", "title": "Contemporary Copper Jesus", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6629910747_ca864ec500_o.jpg", "secret": "a224270bff", "media": "photo", "latitude": "0", "id": "6629910747", "tags": "greatbritain england sculpture art mary jesus exhibit human oxford copper magdalen"}, {"datetaken": "2012-01-03 11:53:13", "license": "5", "title": "Magdalen College, Oxford", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7145/6629922217_660a863b2f_o.jpg", "secret": "1f9e4a6dc7", "media": "photo", "latitude": "0", "id": "6629922217", "tags": "old greatbritain england building rock stone architecture courtyard oxford quaint"}, {"datetaken": "2012-01-03 11:54:09", "license": "5", "title": "Keep off the Grass", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7141/6629927247_4c81a76752_o.jpg", "secret": "6aa218ed68", "media": "photo", "latitude": "0", "id": "6629927247", "tags": "greatbritain autumn england building green grass sign plane perfect open lawn arches rules oxford simplicity simple repeating manicured warnig"}, {"datetaken": "2012-01-03 11:55:27", "license": "5", "title": "The headington shark", "text": "", "album_id": "72157628704102171", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7022/6629934155_bf04b4c9d8_o.jpg", "secret": "6111387170", "media": "photo", "latitude": "0", "id": "6629934155", "tags": "greatbritain england house building art strange shark crash contemporary oxford installation headington bizare"}, {"datetaken": "2005-09-15 00:38:29", "license": "4", "title": "\"Mosty\" 2", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/69744300_5593a41a9b_o.jpg", "secret": "5593a41a9b", "media": "photo", "latitude": "0", "id": "69744300", "tags": "monterrey mexico family photography dog terrier"}, {"datetaken": "2005-09-15 00:39:29", "license": "4", "title": "\"Mosty\"", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/69744317_b9d38e8a1b_o.jpg", "secret": "b9d38e8a1b", "media": "photo", "latitude": "0", "id": "69744317", "tags": "monterrey mexico family photography dog terrier"}, {"datetaken": "2005-09-15 13:05:26", "license": "4", "title": "Ah yes, such is the fabric of life... or whatever else you can apply this to.", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/69744520_3a14172079_o.jpg", "secret": "3a14172079", "media": "photo", "latitude": "0", "id": "69744520", "tags": "monterrey mexico family art photography"}, {"datetaken": "2005-09-15 13:18:43", "license": "4", "title": "Mostasa 3", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/69744612_fe6a82ff59_o.jpg", "secret": "fe6a82ff59", "media": "photo", "latitude": "0", "id": "69744612", "tags": "monterrey mexico family dog terrier"}, {"datetaken": "2005-09-15 13:19:09", "license": "4", "title": "Mu\u00f1eca, definition of sophistication", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/69744624_785d8bc5db_o.jpg", "secret": "785d8bc5db", "media": "photo", "latitude": "0", "id": "69744624", "tags": "monterrey mexico family dog bichon frise"}, {"datetaken": "2005-09-15 13:19:26", "license": "4", "title": "Mu\u00f1eca lookin' so fine", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/69744629_8b3f2eec29_o.jpg", "secret": "8b3f2eec29", "media": "photo", "latitude": "0", "id": "69744629", "tags": "monterrey mexico family dog bichon frise"}, {"datetaken": "2005-09-15 13:19:44", "license": "4", "title": "Mu\u00f1e, strike a pose!", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/69744643_784ee9f2e8_o.jpg", "secret": "784ee9f2e8", "media": "photo", "latitude": "0", "id": "69744643", "tags": "monterrey mexico family dog bichon frise"}, {"datetaken": "2005-09-15 13:22:34", "license": "4", "title": "Cousin Mariana's pup, Mostasa \"Mosty\"", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/69744655_1dd72a81a6_o.jpg", "secret": "1dd72a81a6", "media": "photo", "latitude": "0", "id": "69744655", "tags": "monterrey mexico family dog terrier"}, {"datetaken": "2005-09-15 13:57:23", "license": "4", "title": "I miss my Mu\u00f1eca!", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/69744657_29a8b2bb9b_o.jpg", "secret": "29a8b2bb9b", "media": "photo", "latitude": "0", "id": "69744657", "tags": "monterrey mexico family dog bichon frise"}, {"datetaken": "2005-09-15 13:58:22", "license": "4", "title": "Aunt Diana's Bichon Frise, Mu\u00f1eca (doll in Spanish) Oh how I adore her!", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/69744664_0674ca52c3_o.jpg", "secret": "0674ca52c3", "media": "photo", "latitude": "0", "id": "69744664", "tags": "monterrey mexico family dog bichon frise"}, {"datetaken": "2005-09-15 16:17:48", "license": "4", "title": "Monarch? that rested on mom's head", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/69744684_9bc825625f_o.jpg", "secret": "9bc825625f", "media": "photo", "latitude": "0", "id": "69744684", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 16:18:04", "license": "4", "title": "Beautiful butterfly that rested right on my mom's head, talk about a beautiful hairpiece! ;)", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/69744698_3a3a7c6c22_o.jpg", "secret": "3a3a7c6c22", "media": "photo", "latitude": "0", "id": "69744698", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 16:25:48", "license": "4", "title": "Mayor intersection in Monterrey, Mexico", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/69744706_edbf39b98c_o.jpg", "secret": "edbf39b98c", "media": "photo", "latitude": "0", "id": "69744706", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 16:36:49", "license": "4", "title": "\"Dinast\u00eda\" sculpture of Enrique Carvajal Sabasti\u00e1n.", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/69744714_750c7e844e_o.jpg", "secret": "750c7e844e", "media": "photo", "latitude": "0", "id": "69744714", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 16:38:16", "license": "4", "title": "Different angle of nicer residential area in Monterrey, Mexico", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/69744739_d2081cc7e5_o.jpg", "secret": "d2081cc7e5", "media": "photo", "latitude": "0", "id": "69744739", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 16:38:26", "license": "4", "title": "Nicer residential area in Monterrey, Mexico - kinda reminds me of Southern California ;)", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/69744754_7d03701ee0_o.jpg", "secret": "7d03701ee0", "media": "photo", "latitude": "0", "id": "69744754", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 16:39:02", "license": "4", "title": "A fairly new office building in Monterrey", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/69744760_e0df08c292_o.jpg", "secret": "e0df08c292", "media": "photo", "latitude": "0", "id": "69744760", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 16:39:18", "license": "4", "title": "Housing architecture typical in Monterrey, Mexico", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/69744771_b4a6d14f99_o.jpg", "secret": "b4a6d14f99", "media": "photo", "latitude": "0", "id": "69744771", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 21:31:30", "license": "4", "title": "My uncle Joaquin, aunt Ana and my cousin May", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/69744783_5eca5151e7_o.jpg", "secret": "5eca5151e7", "media": "photo", "latitude": "0", "id": "69744783", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 22:24:38", "license": "4", "title": "1810 - 2005; 195 years of Independence! ;)", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/69744796_d020db2233_o.jpg", "secret": "d020db2233", "media": "photo", "latitude": "0", "id": "69744796", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 22:24:46", "license": "4", "title": "Independence Day lights", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/69744804_1afa703c5c_o.jpg", "secret": "1afa703c5c", "media": "photo", "latitude": "0", "id": "69744804", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 22:31:47", "license": "4", "title": "Mom with Mexican flag", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/69744817_a4ef863eb9_o.jpg", "secret": "a4ef863eb9", "media": "photo", "latitude": "0", "id": "69744817", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 22:47:05", "license": "4", "title": "Mexico Independence Day banner", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/69744827_4dcedefcd4_o.jpg", "secret": "4dcedefcd4", "media": "photo", "latitude": "0", "id": "69744827", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 22:52:58", "license": "4", "title": "Hey mom, is that good?", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/69744840_e39a7eb6c2_o.jpg", "secret": "e39a7eb6c2", "media": "photo", "latitude": "0", "id": "69744840", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 22:53:19", "license": "4", "title": "Real enchiladas, none of that Tex-Mex crap ;)", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/69744853_1c5bcfaf1c_o.jpg", "secret": "1c5bcfaf1c", "media": "photo", "latitude": "0", "id": "69744853", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 22:56:40", "license": "4", "title": "Mexico's Independence Day fireworks 3", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/69744864_fa9c715ddc_o.jpg", "secret": "fa9c715ddc", "media": "photo", "latitude": "0", "id": "69744864", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 22:57:30", "license": "4", "title": "Mexico's Independence Day fireworks 2", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/69744890_26a23b4999_o.jpg", "secret": "26a23b4999", "media": "photo", "latitude": "0", "id": "69744890", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 22:57:41", "license": "4", "title": "Mexico's Independence Day fireworks 1", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/69744905_7c830d8c61_o.jpg", "secret": "7c830d8c61", "media": "photo", "latitude": "0", "id": "69744905", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 23:34:18", "license": "4", "title": "Mexican flag, independence day, September 16, 2005", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/69744918_ed0eb577c2_o.jpg", "secret": "ed0eb577c2", "media": "photo", "latitude": "0", "id": "69744918", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 23:40:06", "license": "4", "title": "Aunt Ana & mom", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/69744937_79dc6f0d6f_o.jpg", "secret": "79dc6f0d6f", "media": "photo", "latitude": "0", "id": "69744937", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2005-09-15 23:46:18", "license": "4", "title": "Uncle Joaquin and aunt Ana", "text": "", "album_id": "1501705", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/69744332_e6aa3c8d66_o.jpg", "secret": "e6aa3c8d66", "media": "photo", "latitude": "0", "id": "69744332", "tags": "monterrey mexico family independence art photography celebration"}, {"datetaken": "2007-02-03 22:25:14", "license": "4", "title": "DSC_2009 - Willard Intercontinental Hotel", "text": "", "album_id": "72157594517390554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/380287619_063dd54d0f_o.jpg", "secret": "063dd54d0f", "media": "photo", "latitude": "0", "id": "380287619", "tags": "bw hotel washingtondc willard willardintercontinental 18135mmf3556g ncd80"}, {"datetaken": "2007-02-03 22:28:11", "license": "4", "title": "DSC_2011 - Pershing Park Ice Rink", "text": "", "album_id": "72157594517390554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/381277842_2d1c13bbe0_o.jpg", "secret": "2d1c13bbe0", "media": "photo", "latitude": "0", "id": "381277842", "tags": "bw washingtondc iceskating icerink iceskaters pershingpark 18135mmf3556g ncd80"}, {"datetaken": "2007-02-03 22:38:50", "license": "4", "title": "DSC_2016 - U.S. Treasury", "text": "", "album_id": "72157594517390554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/380286414_8df4ea0d7e_o.jpg", "secret": "8df4ea0d7e", "media": "photo", "latitude": "0", "id": "380286414", "tags": "bw washingtondc shadows column ustreasury 18135mmf3556g ncd80"}, {"datetaken": "2007-02-03 22:51:40", "license": "4", "title": "DSC_2018 - Alexander Hamilton", "text": "", "album_id": "72157594517390554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/379514844_d44bfe7c54_o.jpg", "secret": "d44bfe7c54", "media": "photo", "latitude": "0", "id": "379514844", "tags": "nightphotography bw statue washingtondc alexanderhamilton ustreasury 18135mmf3556g ncd80 wentzelrecreations"}, {"datetaken": "2007-02-03 23:07:13", "license": "4", "title": "DSC_2019 - Decatur House Enterance", "text": "", "album_id": "72157594517390554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/379512503_29f0ff63ef_o.jpg", "secret": "29f0ff63ef", "media": "photo", "latitude": "0", "id": "379512503", "tags": "nightphotography bw washingtondc 18135mmf3556g ncd80 wentzelrecreations decaturhouse"}, {"datetaken": "2007-02-03 23:32:16", "license": "4", "title": "DSC_2024 - St. John's Church", "text": "", "album_id": "72157594517390554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/380285271_3fec49f490_o.jpg", "secret": "3fec49f490", "media": "photo", "latitude": "0", "id": "380285271", "tags": "bw moon church washingtondc shadows gifted stjohnschurch 18135mmf3556g ncd80"}, {"datetaken": "2007-02-04 00:07:32", "license": "4", "title": "DSC_2044 - 15th & G St NW", "text": "", "album_id": "72157594517390554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/381281680_aecc13a002_o.jpg", "secret": "aecc13a002", "media": "photo", "latitude": "0", "id": "381281680", "tags": "bw bus washingtondc washingtonmonument ustreasury 18135mmf3556g ncd80 gstnw 15thnw"}, {"datetaken": "2007-02-04 00:15:41", "license": "4", "title": "DSC_2047 - Pershing Park Ice Rink, Closed", "text": "", "album_id": "72157594517390554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/381279090_432708baa4_o.jpg", "secret": "432708baa4", "media": "photo", "latitude": "0", "id": "381279090", "tags": "bw ice reflections washingtondc icerink pershingpark 18135mmf3556g ncd80"}, {"datetaken": "2007-02-04 00:26:29", "license": "4", "title": "DSC_2048 - Environmental Protection Agency", "text": "", "album_id": "72157594517390554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/379510237_375f1bd234_o.jpg", "secret": "375f1bd234", "media": "photo", "latitude": "0", "id": "379510237", "tags": "nightphotography bw washingtondc archway epa 18135mmf3556g ncd80 wentzelrecreations"}, {"datetaken": "2007-02-04 00:31:40", "license": "4", "title": "DSC_2049 - 10th St NW", "text": "", "album_id": "72157594517390554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/381283039_53e620ea43_o.jpg", "secret": "53e620ea43", "media": "photo", "latitude": "0", "id": "381283039", "tags": "lighting bw washingtondc shadows steam 18135mmf3556g ncd80 10thnw"}, {"datetaken": "2007-02-04 00:56:15", "license": "4", "title": "DSC_2054 - National Air & Space Museum", "text": "", "album_id": "72157594517390554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/381304196_825e5161fe_o.jpg", "secret": "825e5161fe", "media": "photo", "latitude": "0", "id": "381304196", "tags": "lighting bw museum washingtondc smithsonian shadows planes nationalairspace 18135mmf3556g ncd80"}, {"datetaken": "2007-02-04 00:57:31", "license": "4", "title": "DSC_2055 - National Air & Space Museum", "text": "", "album_id": "72157594517390554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/381302957_783ca45a9d_o.jpg", "secret": "783ca45a9d", "media": "photo", "latitude": "0", "id": "381302957", "tags": "lighting bw museum washingtondc smithsonian shadows nationalairspace 18135mmf3556g ncd80"}, {"datetaken": "2007-02-04 01:50:00", "license": "4", "title": "DSC_2072 - The Boat", "text": "", "album_id": "72157594517390554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/382495882_4045ccfc81_o.jpg", "secret": "4045ccfc81", "media": "photo", "latitude": "0", "id": "382495882", "tags": "bw sculpture washingtondc boat canadianembassy 18135mmf3556g ncd80"}, {"datetaken": "2005-12-27 02:44:40", "license": "2", "title": "Church on the way to Ernakulum from Periyar", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/110539642_4f1d97f363_o.jpg", "secret": "4f1d97f363", "media": "photo", "latitude": "0", "id": "110539642", "tags": "2005 road india church eric periyar ericbyjohn ernakulum"}, {"datetaken": "2005-12-27 11:12:04", "license": "2", "title": "Fire in the forest - IMG 1670 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/149259578_aa46d4133c_o.jpg", "secret": "aa46d4133c", "media": "photo", "latitude": "0", "id": "149259578", "tags": "2005 road india tree fire wildlife thekkady periyar ernakulum fireintheforest"}, {"datetaken": "2005-12-27 11:22:17", "license": "2", "title": "Tea plantation - IMG 1674 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/149259744_7a2888d7b0_o.jpg", "secret": "7a2888d7b0", "media": "photo", "latitude": "0", "id": "149259744", "tags": "2005 road india tea wildlife thekkady periyar ernakulum"}, {"datetaken": "2005-12-27 11:22:53", "license": "2", "title": "Picking tea - IMG 1677 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/149259872_c47bddbb24_o.jpg", "secret": "c47bddbb24", "media": "photo", "latitude": "0", "id": "149259872", "tags": "2005 road india lady tea periyar ernakulum"}, {"datetaken": "2005-12-27 11:35:14", "license": "2", "title": "Church? - IMG 1680 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/149260013_b1a2010db9_o.jpg", "secret": "b1a2010db9", "media": "photo", "latitude": "0", "id": "149260013", "tags": "2005 road india church rickshaw periyar ernakulum"}, {"datetaken": "2005-12-27 11:35:20", "license": "2", "title": "Church - IMG 1681 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/149260191_0f4e2a22df_o.jpg", "secret": "0f4e2a22df", "media": "photo", "latitude": "0", "id": "149260191", "tags": "2005 road india church periyar ernakulum"}, {"datetaken": "2005-12-27 11:41:46", "license": "2", "title": "Coffee or Nescafe? - IMG 1687 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/149260421_3cdcac2c9f_o.jpg", "secret": "3cdcac2c9f", "media": "photo", "latitude": "0", "id": "149260421", "tags": "2005 road india coffee nescafe periyar ernakulum"}, {"datetaken": "2005-12-27 11:42:37", "license": "2", "title": "Flowers at the coffee shop - IMG 1689 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/149260595_8f617b6404_o.jpg", "secret": "8f617b6404", "media": "photo", "latitude": "0", "id": "149260595", "tags": "2005 road flowers india coffee periyar ernakulum"}, {"datetaken": "2005-12-27 11:43:02", "license": "2", "title": "Bananas at the coffee shop - IMG 1690 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/149260731_e98867362d_o.jpg", "secret": "e98867362d", "media": "photo", "latitude": "0", "id": "149260731", "tags": "2005 road india coffee bananas periyar ernakulum"}, {"datetaken": "2005-12-27 11:54:02", "license": "2", "title": "Baby chick-walla - IMG 1693 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/149260819_5601a35948_o.jpg", "secret": "5601a35948", "media": "photo", "latitude": "0", "id": "149260819", "tags": "2005 road india chicks periyar walla ernakulum"}, {"datetaken": "2005-12-27 11:54:11", "license": "2", "title": "IMG 1694 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/149260981_912b9984ef_o.jpg", "secret": "912b9984ef", "media": "photo", "latitude": "0", "id": "149260981", "tags": "2005 road india chicks periyar walla ernakulum"}, {"datetaken": "2005-12-27 11:55:27", "license": "2", "title": "Kingfisher? - IMG 1696 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/149261028_6e2d4121d1_o.jpg", "secret": "6e2d4121d1", "media": "photo", "latitude": "0", "id": "149261028", "tags": "2005 road india bird kingfisher periyar ernakulum"}, {"datetaken": "2005-12-27 12:10:12", "license": "2", "title": "Church on the way to Ernakulum from Periyar - IMG 1697 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/149261248_dc36ded401_o.jpg", "secret": "dc36ded401", "media": "photo", "latitude": "0", "id": "149261248", "tags": "2005 road india church tea steps plantation vista periyar ernakulum"}, {"datetaken": "2005-12-27 12:13:29", "license": "2", "title": "Church on the way to Ernakulum from Periyar - IMG 1706 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/149261438_8b4aab9186_o.jpg", "secret": "8b4aab9186", "media": "photo", "latitude": "0", "id": "149261438", "tags": "2005 road india church periyar ernakulum"}, {"datetaken": "2005-12-27 12:14:31", "license": "2", "title": "Church on the way to Ernakulum from Periyar - IMG 1711 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/149261660_1075cb3245_o.jpg", "secret": "1075cb3245", "media": "photo", "latitude": "0", "id": "149261660", "tags": "2005 road india church periyar ernakulum"}, {"datetaken": "2005-12-27 12:15:14", "license": "2", "title": "Church on the way to Ernakulum from Periyar - IMG 1712 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/149261850_e6b5774507_o.jpg", "secret": "e6b5774507", "media": "photo", "latitude": "0", "id": "149261850", "tags": "2005 road india church altar periyar ernakulum nopews"}, {"datetaken": "2005-12-27 12:15:44", "license": "2", "title": "Church on the way to Ernakulum from Periyar - IMG 1714 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/149262033_e504d14a42_o.jpg", "secret": "e504d14a42", "media": "photo", "latitude": "0", "id": "149262033", "tags": "2005 road india church altar periyar ernakulum nopews"}, {"datetaken": "2005-12-27 12:20:19", "license": "2", "title": "View from the Church on the way to Ernakulum from Periyar - IMG 1717 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/149262272_efae39b79c_o.jpg", "secret": "efae39b79c", "media": "photo", "latitude": "0", "id": "149262272", "tags": "2005 road india church tea steps plantation vista periyar ernakulum"}, {"datetaken": "2005-12-27 12:37:31", "license": "2", "title": "Panorama between Periyar and Ernakulum - IMG 1719 pan", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/149262733_7cd06aa75f_o.jpg", "secret": "7cd06aa75f", "media": "photo", "latitude": "0", "id": "149262733", "tags": "2005 road india car pan periyar ernakulum"}, {"datetaken": "2005-12-27 13:11:03", "license": "2", "title": "Waterfall at truck stop - IMG 1727 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/149262888_7933c2482e_o.jpg", "secret": "7933c2482e", "media": "photo", "latitude": "0", "id": "149262888", "tags": "2005 road india boat wildlife thekkady periyar ernakulum"}, {"datetaken": "2005-12-27 16:08:13", "license": "2", "title": "Working elephants - IMG 1750 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/183320988_b8363cda36_o.jpg", "secret": "b8363cda36", "media": "photo", "latitude": "0", "id": "183320988", "tags": "2005 road india elephant chain ernakulam periyar ernakulum periyartoernakulum2"}, {"datetaken": "2005-12-27 16:08:17", "license": "2", "title": "Working elephants - IMG 1751 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/183319895_d1992f9466_o.jpg", "secret": "d1992f9466", "media": "photo", "latitude": "0", "id": "183319895", "tags": "2005 road india elephant chain ernakulam periyar ernakulum periyartoernakulum2"}, {"datetaken": "2005-12-27 16:08:24", "license": "2", "title": "Working elephants - IMG 1752 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/183320240_6b9b3db6e6_o.jpg", "secret": "6b9b3db6e6", "media": "photo", "latitude": "0", "id": "183320240", "tags": "2005 road india elephant chain ernakulam periyar ernakulum periyartoernakulum2"}, {"datetaken": "2005-12-27 16:08:28", "license": "2", "title": "Working elephants - IMG 1753 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/183320456_5c3ee25adb_o.jpg", "secret": "5c3ee25adb", "media": "photo", "latitude": "0", "id": "183320456", "tags": "2005 road india elephant chain ernakulam periyar elelphant ernakulum periyartoernakulum2"}, {"datetaken": "2005-12-27 16:08:49", "license": "2", "title": "Working elephants - IMG 1754 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/183320744_eb65424b84_o.jpg", "secret": "eb65424b84", "media": "photo", "latitude": "0", "id": "183320744", "tags": "2005 road india elephant chain ernakulam periyar ernakulum periyartoernakulum2"}, {"datetaken": "2005-12-27 17:09:01", "license": "2", "title": "View from bridge entering Ernakulum - IMG 1756 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/183319514_1cb5f3492b_o.jpg", "secret": "1cb5f3492b", "media": "photo", "latitude": "0", "id": "183319514", "tags": "2005 road bridge india water river boat periyar ernakulum periyartoernakulum2"}, {"datetaken": "2005-12-27 17:24:15", "license": "2", "title": "Beautiful house in a small town - IMG 1758 e", "text": "", "album_id": "72057594139279785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/183321184_98a32c6016_o.jpg", "secret": "98a32c6016", "media": "photo", "latitude": "0", "id": "183321184", "tags": "2005 road india house building periyar dwelling ernakulum periyartoernakulum2"}, {"datetaken": "2005-09-11 12:42:26", "license": "4", "title": "Massandra Palace park (2005-09-347)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/233953211_60b9f924c4_o.jpg", "secret": "60b9f924c4", "media": "photo", "latitude": "0", "id": "233953211", "tags": "trees crimea massandra"}, {"datetaken": "2005-09-11 12:43:58", "license": "4", "title": "Massandra Palace park (2005-09-349)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/233954054_a9d2e002d9_o.jpg", "secret": "a9d2e002d9", "media": "photo", "latitude": "0", "id": "233954054", "tags": "people crimea massandra"}, {"datetaken": "2005-09-11 12:44:25", "license": "4", "title": "2005-09-350", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/233954983_e166488adb_o.jpg", "secret": "e166488adb", "media": "photo", "latitude": "0", "id": "233954983", "tags": "crimea massandra"}, {"datetaken": "2005-09-11 12:46:05", "license": "4", "title": "Massandra Palace (2005-09-351)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/233956408_f6275173d2_o.jpg", "secret": "f6275173d2", "media": "photo", "latitude": "0", "id": "233956408", "tags": "architecture crimea massandra"}, {"datetaken": "2005-09-11 12:51:38", "license": "4", "title": "Russian antique sculpture (2005-09-352)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/233957589_8c4f3a3447_o.jpg", "secret": "8c4f3a3447", "media": "photo", "latitude": "0", "id": "233957589", "tags": "monument crimea massandra"}, {"datetaken": "2005-09-11 12:52:52", "license": "4", "title": "Russian sculpture (2005-09-353)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/233958862_1982ad25fe_o.jpg", "secret": "1982ad25fe", "media": "photo", "latitude": "0", "id": "233958862", "tags": "monument crimea massandra"}, {"datetaken": "2005-09-11 12:57:33", "license": "4", "title": "Massandra Palace (2005-09-355)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/233960054_efea6a7959_o.jpg", "secret": "efea6a7959", "media": "photo", "latitude": "0", "id": "233960054", "tags": "architecture crimea massandra"}, {"datetaken": "2005-09-11 13:03:23", "license": "4", "title": "Massandra Palace (2005-09-356)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/235121780_d6b96e2fa0_o.jpg", "secret": "d6b96e2fa0", "media": "photo", "latitude": "0", "id": "235121780", "tags": "architecture crimea massandra"}, {"datetaken": "2005-09-11 13:04:41", "license": "4", "title": "Massandra Palace (2005-09-357)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/235122665_ac40e89321_o.jpg", "secret": "ac40e89321", "media": "photo", "latitude": "0", "id": "235122665", "tags": "architecture crimea massandra"}, {"datetaken": "2005-09-11 13:07:00", "license": "4", "title": "2005-09-358", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/235123850_7e85e1bd8a_o.jpg", "secret": "7e85e1bd8a", "media": "photo", "latitude": "0", "id": "235123850", "tags": "monument crimea massandra"}, {"datetaken": "2005-09-11 13:07:59", "license": "4", "title": "2005-09-360", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/235124992_dedf296a6d_o.jpg", "secret": "dedf296a6d", "media": "photo", "latitude": "0", "id": "235124992", "tags": "monument crimea massandra"}, {"datetaken": "2005-09-11 13:12:25", "license": "4", "title": "2005-09-361", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/235125671_ef2f2d664a_o.jpg", "secret": "ef2f2d664a", "media": "photo", "latitude": "0", "id": "235125671", "tags": "monument crimea massandra"}, {"datetaken": "2005-09-11 13:14:18", "license": "4", "title": "Russian sculpture (2005-09-362)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/235126275_cc7612a2aa_o.jpg", "secret": "cc7612a2aa", "media": "photo", "latitude": "0", "id": "235126275", "tags": "monument crimea massandra"}, {"datetaken": "2005-09-11 13:14:31", "license": "4", "title": "Russian sculpture (2005-09-363)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/235126952_4c78a5400c_o.jpg", "secret": "4c78a5400c", "media": "photo", "latitude": "0", "id": "235126952", "tags": "monument crimea massandra"}, {"datetaken": "2005-09-11 13:14:42", "license": "4", "title": "2005-09-364", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/236146843_82320885fa_o.jpg", "secret": "82320885fa", "media": "photo", "latitude": "0", "id": "236146843", "tags": "monument crimea massandra"}, {"datetaken": "2005-09-11 14:22:02", "license": "4", "title": "Sculpture (2005-09-365)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/236148074_63f41c0547_o.jpg", "secret": "63f41c0547", "media": "photo", "latitude": "0", "id": "236148074", "tags": "monument crimea massandra"}, {"datetaken": "2005-09-11 14:27:58", "license": "4", "title": "Massandra Palace (2005-09-366)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/93/236149119_5b284a9005_o.jpg", "secret": "5b284a9005", "media": "photo", "latitude": "0", "id": "236149119", "tags": "architecture crimea massandra"}, {"datetaken": "2005-09-11 14:44:11", "license": "4", "title": "Yalta from upper Massandra (2005-09-367)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/236150044_09764c3551_o.jpg", "secret": "09764c3551", "media": "photo", "latitude": "0", "id": "236150044", "tags": "crimea massandra"}, {"datetaken": "2005-09-11 15:14:33", "license": "4", "title": "Massandra (2005-09-368)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/236150664_05ee3a2a09_o.jpg", "secret": "05ee3a2a09", "media": "photo", "latitude": "0", "id": "236150664", "tags": "trees crimea massandra"}, {"datetaken": "2005-09-11 15:28:23", "license": "4", "title": "Massandra wine tasting rooms (2005-09-370)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/236151569_6766cd2022_o.jpg", "secret": "6766cd2022", "media": "photo", "latitude": "0", "id": "236151569", "tags": "crimea massandra"}, {"datetaken": "2005-09-11 15:29:03", "license": "4", "title": "Massandra wine tasting rooms (2005-09-371)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/236152556_5350f86216_o.jpg", "secret": "5350f86216", "media": "photo", "latitude": "0", "id": "236152556", "tags": "crimea massandra"}, {"datetaken": "2005-09-11 16:15:21", "license": "4", "title": "Massandra winery (2005-09-372)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/236152987_733d71cd52_o.jpg", "secret": "733d71cd52", "media": "photo", "latitude": "0", "id": "236152987", "tags": "sky mountains architecture crimea massandra"}, {"datetaken": "2005-09-11 16:15:28", "license": "4", "title": "Massandra winery (2005-09-373)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/236153391_3369a4eb43_o.jpg", "secret": "3369a4eb43", "media": "photo", "latitude": "0", "id": "236153391", "tags": "sky mountains architecture artistic crimea massandra"}, {"datetaken": "2005-09-11 16:16:21", "license": "4", "title": "Massandra winery (2005-09-374)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/237717125_ef6d62b4a3_o.jpg", "secret": "ef6d62b4a3", "media": "photo", "latitude": "0", "id": "237717125", "tags": "architecture crimea massandra"}, {"datetaken": "2005-09-11 16:16:45", "license": "4", "title": "Massandra winery (2005-09-375)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/237717747_010eb1fbf3_o.jpg", "secret": "010eb1fbf3", "media": "photo", "latitude": "0", "id": "237717747", "tags": "people architecture crimea massandra"}, {"datetaken": "2005-09-11 16:17:54", "license": "4", "title": "Massandra cellars (2005-09-376)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/237718026_50c691b3be_o.jpg", "secret": "50c691b3be", "media": "photo", "latitude": "0", "id": "237718026", "tags": "mountains architecture crimea massandra"}, {"datetaken": "2005-09-11 16:26:54", "license": "4", "title": "Underground Massandra (2005-09-378)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/237719014_ed3f3587c2_o.jpg", "secret": "ed3f3587c2", "media": "photo", "latitude": "0", "id": "237719014", "tags": "crimea massandra"}, {"datetaken": "2005-09-11 16:54:59", "license": "4", "title": "Massandra cellars (2005-09-379)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/237719820_2e83d0f8be_o.jpg", "secret": "2e83d0f8be", "media": "photo", "latitude": "0", "id": "237719820", "tags": "interiors crimea massandra"}, {"datetaken": "2005-09-11 18:00:23", "license": "4", "title": "Massandra cellars (2005-09-380)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/237720509_90be69d6a6_o.jpg", "secret": "90be69d6a6", "media": "photo", "latitude": "0", "id": "237720509", "tags": "crimea massandra"}, {"datetaken": "2005-09-11 18:08:03", "license": "4", "title": "The most expensive wines in entire world (2005-09-381)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/237721264_03786aeb2e_o.jpg", "secret": "03786aeb2e", "media": "photo", "latitude": "0", "id": "237721264", "tags": "crimea massandra"}, {"datetaken": "2005-09-11 18:21:27", "license": "4", "title": "Massandra under the setting sun (2005-09-384)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/238315983_bafd49ed3d_o.jpg", "secret": "bafd49ed3d", "media": "photo", "latitude": "0", "id": "238315983", "tags": "sunset sky mountains artistic crimea massandra"}, {"datetaken": "2005-09-11 18:21:58", "license": "4", "title": "Massandra, Crimea (2005-09-385)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/238316215_3c41e05b98_o.jpg", "secret": "3c41e05b98", "media": "photo", "latitude": "0", "id": "238316215", "tags": "sunset sky mountains crimea massandra"}, {"datetaken": "2005-09-11 18:22:08", "license": "4", "title": "Massandra under the evening sun (2005-09-386)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/238316439_ad9dec620a_o.jpg", "secret": "ad9dec620a", "media": "photo", "latitude": "0", "id": "238316439", "tags": "sunset sky mountains crimea massandra"}, {"datetaken": "2005-09-11 18:29:39", "license": "4", "title": "Massandra (2005-09-387)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/238316943_ade44822b6_o.jpg", "secret": "ade44822b6", "media": "photo", "latitude": "0", "id": "238316943", "tags": "trees sunset sky mountains crimea massandra"}, {"datetaken": "2005-09-11 18:29:47", "license": "4", "title": "Massandra, Yalta, Crimea (2005-09-388)", "text": "", "album_id": "72157594268530948", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/238317280_f62f525666_o.jpg", "secret": "f62f525666", "media": "photo", "latitude": "0", "id": "238317280", "tags": "trees sunset sky mountains crimea massandra"}, {"datetaken": "2005-10-05 12:12:05", "license": "3", "title": "Lerma", "text": "", "album_id": "1088519", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/50152110_2587aca4a6_o.jpg", "secret": "2587aca4a6", "media": "photo", "latitude": "0", "id": "50152110", "tags": ""}, {"datetaken": "2005-10-05 12:12:45", "license": "3", "title": "cruisin among the fluffies...", "text": "", "album_id": "1088519", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/50152149_ef150d8c7f_o.jpg", "secret": "ef150d8c7f", "media": "photo", "latitude": "0", "id": "50152149", "tags": ""}, {"datetaken": "2005-10-05 12:18:00", "license": "3", "title": "Descending", "text": "", "album_id": "1088519", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/50152177_e134864065_o.jpg", "secret": "e134864065", "media": "photo", "latitude": "0", "id": "50152177", "tags": ""}, {"datetaken": "2005-10-05 12:18:18", "license": "3", "title": "Industrial Haze", "text": "", "album_id": "1088519", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/50152188_81bab36f37_o.jpg", "secret": "81bab36f37", "media": "photo", "latitude": "0", "id": "50152188", "tags": ""}, {"datetaken": "2005-10-05 12:25:20", "license": "3", "title": "Smoke", "text": "", "album_id": "1088519", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/50152200_570a961468_o.jpg", "secret": "570a961468", "media": "photo", "latitude": "0", "id": "50152200", "tags": ""}, {"datetaken": "2005-10-05 12:27:38", "license": "3", "title": "Sedona", "text": "", "album_id": "1088519", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/50152220_c06eae1a99_o.jpg", "secret": "c06eae1a99", "media": "photo", "latitude": "0", "id": "50152220", "tags": ""}, {"datetaken": "2005-10-05 12:46:23", "license": "3", "title": "Lerma", "text": "", "album_id": "1088519", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/50152260_e182e4799a_o.jpg", "secret": "e182e4799a", "media": "photo", "latitude": "0", "id": "50152260", "tags": ""}, {"datetaken": "2005-10-05 13:55:13", "license": "3", "title": "The whole state is burning down...again", "text": "", "album_id": "1088519", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/50152311_a5f639e70f_o.jpg", "secret": "a5f639e70f", "media": "photo", "latitude": "0", "id": "50152311", "tags": ""}, {"datetaken": "2005-10-05 13:55:23", "license": "3", "title": "Lerma", "text": "", "album_id": "1088519", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/50152036_67d0f75ae1_o.jpg", "secret": "67d0f75ae1", "media": "photo", "latitude": "0", "id": "50152036", "tags": ""}, {"datetaken": "2005-10-05 14:24:29", "license": "3", "title": "Why AZ is better than AK...", "text": "", "album_id": "1088519", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/50152068_8a8d30afc3_o.jpg", "secret": "8a8d30afc3", "media": "photo", "latitude": "0", "id": "50152068", "tags": ""}, {"datetaken": "2005-10-05 14:24:36", "license": "3", "title": "cruisin through the superstitions", "text": "", "album_id": "1088519", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/50152086_0a8233550a_o.jpg", "secret": "0a8233550a", "media": "photo", "latitude": "0", "id": "50152086", "tags": ""}, {"datetaken": "2010-01-09 19:37:29", "license": "1", "title": "Kamov MIL-8", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4259242623_d493e5206e_o.jpg", "secret": "0616c3b27b", "media": "photo", "latitude": "0", "id": "4259242623", "tags": "nature walking southafrica outdoors chopper hiking walk capetown hike helicopter titan westerncape newlandsforest sanparks southernsuburbs kamov utair southafricannationalparks landingapron"}, {"datetaken": "2010-01-09 19:37:44", "license": "1", "title": "Today's fire danger rating", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4259243263_64a03b3d61_o.jpg", "secret": "1ca5b308fc", "media": "photo", "latitude": "0", "id": "4259243263", "tags": "nature sign walking southafrica outdoors hiking walk capetown hike signage rating indicator westerncape firedanger newlandsforest sanparks southernsuburbs fireprotection southafricannationalparks"}, {"datetaken": "2010-01-09 19:38:07", "license": "1", "title": "*tut tut tut tut*", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2794/4259244251_ca4f0f0953_o.jpg", "secret": "b91993457e", "media": "photo", "latitude": "0", "id": "4259244251", "tags": "nature walking southafrica outdoors chopper hiking walk capetown hike helicopter titan westerncape newlandsforest sanparks southernsuburbs kamov utair southafricannationalparks"}, {"datetaken": "2010-01-09 19:38:18", "license": "1", "title": "Landing Apron", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4259999568_5a69655811_o.jpg", "secret": "058578b489", "media": "photo", "latitude": "0", "id": "4259999568", "tags": "nature walking southafrica outdoors chopper hiking walk capetown hike helicopter titan westerncape newlandsforest sanparks southernsuburbs kamov utair southafricannationalparks landingapron"}, {"datetaken": "2010-01-09 19:38:31", "license": "1", "title": "Kamov MIL-8", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2789/4260000104_feffbcdbcf_o.jpg", "secret": "17c99c160b", "media": "photo", "latitude": "0", "id": "4260000104", "tags": "nature walking southafrica outdoors chopper hiking walk capetown hike helicopter titan westerncape newlandsforest sanparks southernsuburbs kamov utair southafricannationalparks"}, {"datetaken": "2010-01-09 19:38:47", "license": "1", "title": "Paradise", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4260000752_d0f20fcc82_o.jpg", "secret": "c976a788df", "media": "photo", "latitude": "0", "id": "4260000752", "tags": "nature walking southafrica outdoors hiking walk capetown hike westerncape newlandsforest sanparks southernsuburbs southafricannationalparks"}, {"datetaken": "2010-01-09 19:39:04", "license": "1", "title": "Boys will be boys.", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4259246689_9c9cd10cf7_o.jpg", "secret": "8c584b1511", "media": "photo", "latitude": "0", "id": "4259246689", "tags": "nature walking southafrica outdoors hiking walk capetown hike westerncape newlandsforest sanparks southernsuburbs southafricannationalparks"}, {"datetaken": "2010-01-09 19:39:21", "license": "1", "title": "Paradise", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4260002242_755ae71c21_o.jpg", "secret": "87827fed20", "media": "photo", "latitude": "0", "id": "4260002242", "tags": "nature walking southafrica outdoors paradise hiking walk capetown hike westerncape newlandsforest sanparks southernsuburbs ladyannebarnard southafricannationalparks"}, {"datetaken": "2010-01-09 19:39:37", "license": "1", "title": "Paradise wall", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4259248115_c99b7d9160_o.jpg", "secret": "47e3ae8d93", "media": "photo", "latitude": "0", "id": "4259248115", "tags": "nature walking southafrica outdoors hiking walk capetown hike westerncape newlandsforest sanparks southernsuburbs southafricannationalparks"}, {"datetaken": "2010-01-09 19:39:49", "license": "1", "title": "Kirstenbosch pictograms", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4260003386_ddbab4a202_o.jpg", "secret": "d3d3ca48d2", "media": "photo", "latitude": "0", "id": "4260003386", "tags": "signs nature walking southafrica outdoors hiking walk capetown hike kirstenbosch signage infographics pictograms westerncape newlandsforest sanparks southernsuburbs southafricannationalparks"}, {"datetaken": "2010-01-09 19:40:01", "license": "1", "title": "Newlands forest", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2683/4260003940_dcf19dbe08_o.jpg", "secret": "6e9d63cb1f", "media": "photo", "latitude": "0", "id": "4260003940", "tags": "nature walking southafrica outdoors hiking walk capetown hike westerncape newlandsforest sanparks southernsuburbs southafricannationalparks"}, {"datetaken": "2010-01-09 19:40:19", "license": "1", "title": "Newlands forest", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4259249997_32a357dcb3_o.jpg", "secret": "e7d533d945", "media": "photo", "latitude": "0", "id": "4259249997", "tags": "nature walking southafrica outdoors hiking walk capetown hike westerncape newlandsforest sanparks southernsuburbs southafricannationalparks"}, {"datetaken": "2010-01-09 19:40:39", "license": "1", "title": "Newlands forest", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4260005610_4505aff668_o.jpg", "secret": "b4e8800235", "media": "photo", "latitude": "0", "id": "4260005610", "tags": "nature walking southafrica outdoors hiking walk capetown hike westerncape newlandsforest sanparks southernsuburbs southafricannationalparks"}, {"datetaken": "2010-01-09 19:41:06", "license": "1", "title": "Newlands forest", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4259252105_657892a14e_o.jpg", "secret": "30fd5511f9", "media": "photo", "latitude": "0", "id": "4259252105", "tags": "nature walking southafrica outdoors hiking walk capetown hike westerncape newlandsforest sanparks southernsuburbs southafricannationalparks"}, {"datetaken": "2010-01-09 19:41:28", "license": "1", "title": "Bark detail", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4259253135_41e7dfa1fc_o.jpg", "secret": "36ff4fff78", "media": "photo", "latitude": "0", "id": "4259253135", "tags": "nature walking southafrica outdoors hiking walk capetown hike westerncape newlandsforest sanparks southernsuburbs southafricannationalparks"}, {"datetaken": "2010-01-09 19:41:40", "license": "1", "title": "Moss detail", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4259253669_14c739d860_o.jpg", "secret": "4dd7bba0fd", "media": "photo", "latitude": "0", "id": "4259253669", "tags": "nature walking southafrica outdoors hiking walk capetown hike westerncape newlandsforest sanparks southernsuburbs southafricannationalparks"}, {"datetaken": "2010-01-09 19:41:52", "license": "1", "title": "Entwined", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4259254241_3611dc2907_o.jpg", "secret": "5392131e72", "media": "photo", "latitude": "0", "id": "4259254241", "tags": "nature walking southafrica outdoors hiking walk capetown hike westerncape newlandsforest sanparks southernsuburbs southafricannationalparks"}, {"datetaken": "2010-01-09 19:42:12", "license": "1", "title": "Pines", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4260009680_08626dcc12_o.jpg", "secret": "d47e33c913", "media": "photo", "latitude": "0", "id": "4260009680", "tags": "nature walking southafrica outdoors hiking walk capetown hike westerncape newlandsforest sanparks southernsuburbs southafricannationalparks"}, {"datetaken": "2010-01-09 19:42:28", "license": "1", "title": "Pines", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4260010448_7a5e102c8a_o.jpg", "secret": "aa805a3013", "media": "photo", "latitude": "0", "id": "4260010448", "tags": "nature walking southafrica outdoors hiking walk capetown hike westerncape newlandsforest sanparks southernsuburbs southafricannationalparks"}, {"datetaken": "2010-01-09 19:42:42", "license": "1", "title": "Pines", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4259256493_e4d43e270d_o.jpg", "secret": "7b95f0150d", "media": "photo", "latitude": "0", "id": "4259256493", "tags": "nature walking southafrica outdoors hiking walk capetown hike westerncape newlandsforest sanparks southernsuburbs southafricannationalparks"}, {"datetaken": "2010-01-09 19:42:59", "license": "1", "title": "Rock vs Paper", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4260011764_b2cb6eca58_o.jpg", "secret": "7db0443505", "media": "photo", "latitude": "0", "id": "4260011764", "tags": "nature walking southafrica outdoors hiking walk capetown hike westerncape newlandsforest sanparks southernsuburbs southafricannationalparks"}, {"datetaken": "2010-01-09 19:43:12", "license": "1", "title": "Aliens", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4259257651_5eaaf96ac2_o.jpg", "secret": "4cb6f93377", "media": "photo", "latitude": "0", "id": "4259257651", "tags": "nature walking southafrica outdoors hiking walk capetown hike westerncape newlandsforest sanparks southernsuburbs southafricannationalparks"}, {"datetaken": "2010-01-09 19:43:23", "license": "1", "title": "Kamov KA 32A", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4260012904_02307cf822_o.jpg", "secret": "349e743472", "media": "photo", "latitude": "0", "id": "4260012904", "tags": "nature walking southafrica outdoors chopper hiking walk capetown hike helicopter firefighting titan westerncape newlandsforest sanparks southernsuburbs kamov utair southafricannationalparks kamovka32a"}, {"datetaken": "2010-01-09 19:43:31", "license": "1", "title": "Kamov KA 32A", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2751/4260013214_8e8c5de106_o.jpg", "secret": "6aa0dca7fe", "media": "photo", "latitude": "0", "id": "4260013214", "tags": "nature walking southafrica outdoors chopper hiking walk capetown hike helicopter firefighting titan westerncape newlandsforest sanparks southernsuburbs kamov utair southafricannationalparks kamovka32a"}, {"datetaken": "2010-01-09 20:20:37", "license": "1", "title": "Newlands forest parking", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4259357899_8cff61550d_o.jpg", "secret": "68600f7c5e", "media": "photo", "latitude": "0", "id": "4259357899", "tags": ""}, {"datetaken": "2010-01-09 20:21:44", "license": "1", "title": "Newlands forest", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4259360793_0e722871fd_o.jpg", "secret": "73f99312bd", "media": "photo", "latitude": "0", "id": "4259360793", "tags": ""}, {"datetaken": "2010-01-09 20:22:04", "license": "1", "title": "Landing Apron", "text": "", "album_id": "72157623174042056", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4260117816_9b5ff86abc_o.jpg", "secret": "2dfffed7fb", "media": "photo", "latitude": "0", "id": "4260117816", "tags": ""}, {"datetaken": "2011-12-05 15:50:25", "license": "3", "title": "G\u00f3rnik i Hutnik", "text": "", "album_id": "72157628361619059", "longitude": "8.018817", "url_o": "https://farm8.staticflickr.com/7167/6487576351_a31b80991b_o.jpg", "secret": "e55cddb101", "media": "photo", "latitude": "50.874292", "id": "6487576351", "tags": "sculpture monument statue germany deutschland nrw statua siegen nordrheinwestfalen westfalia westfalen pomnik rze\u017aba westphalia northrhinewestphalia niemcy rzezba nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-05 16:02:09", "license": "3", "title": "Dworzec kolejowy", "text": "", "album_id": "72157628361619059", "longitude": "8.016135", "url_o": "https://farm8.staticflickr.com/7014/6487579475_e35201ea8f_o.jpg", "secret": "dd06cf3510", "media": "photo", "latitude": "50.874607", "id": "6487579475", "tags": "building station architecture germany deutschland railway db nrw siegen nordrheinwestfalen westfalia westfalen kolej architektura westphalia budynek northrhinewestphalia dworzec niemcy stacja nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 10:21:28", "license": "3", "title": "Estakada", "text": "", "album_id": "72157628361619059", "longitude": "8.006672", "url_o": "https://farm8.staticflickr.com/7174/6487582035_0f3f3ae6a2_o.jpg", "secret": "e9832d8261", "media": "photo", "latitude": "50.866163", "id": "6487582035", "tags": "road germany deutschland nrw curve siegen nordrheinwestfalen droga luk westfalia westfalen estacade westphalia northrhinewestphalia estakada niemcy \u0142uk nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 12:05:48", "license": "3", "title": "G\u00f3rny Zamek", "text": "", "album_id": "72157628361619059", "longitude": "8.029493", "url_o": "https://farm8.staticflickr.com/7169/6487585177_428b171144_o.jpg", "secret": "30a67a3c11", "media": "photo", "latitude": "50.875879", "id": "6487585177", "tags": "building castle architecture germany deutschland nrw siegen nordrheinwestfalen westfalia westfalen zamek architektura westphalia budynek northrhinewestphalia niemcy nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 12:06:22", "license": "3", "title": "G\u00f3rny Zamek", "text": "", "album_id": "72157628361619059", "longitude": "8.029493", "url_o": "https://farm8.staticflickr.com/7152/6487588479_ea4a35480a_o.jpg", "secret": "9c339c321b", "media": "photo", "latitude": "50.875879", "id": "6487588479", "tags": "building castle architecture germany deutschland gate nrw siegen nordrheinwestfalen westfalia westfalen zamek architektura westphalia budynek northrhinewestphalia brama niemcy nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 12:11:03", "license": "3", "title": "Portal", "text": "", "album_id": "72157628361619059", "longitude": "8.029493", "url_o": "https://farm8.staticflickr.com/7155/6487590853_9d9c55df20_o.jpg", "secret": "f9269891e5", "media": "photo", "latitude": "50.875879", "id": "6487590853", "tags": "castle architecture germany deutschland nrw portal siegen nordrheinwestfalen westfalia westfalen zamek architektura westphalia northrhinewestphalia niemcy nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 12:13:15", "license": "3", "title": "G\u00f3rny Zamek", "text": "", "album_id": "72157628361619059", "longitude": "8.029493", "url_o": "https://farm8.staticflickr.com/7011/6487593055_4d3a897e1e_o.jpg", "secret": "c5c147ee9a", "media": "photo", "latitude": "50.875879", "id": "6487593055", "tags": "building castle architecture germany deutschland nrw siegen nordrheinwestfalen westfalia westfalen zamek architektura westphalia budynek northrhinewestphalia niemcy nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 12:15:53", "license": "3", "title": "Ko\u015bci\u00f3\u0142 \u015bw. Miko\u0142aja", "text": "", "album_id": "72157628361619059", "longitude": "8.027508", "url_o": "https://farm8.staticflickr.com/7160/6487595937_6f8fce2479_o.jpg", "secret": "f505607cb1", "media": "photo", "latitude": "50.875256", "id": "6487595937", "tags": "building tower church architecture germany temple deutschland nrw siegen nordrheinwestfalen westfalia westfalen kosciol ko\u015bci\u00f3\u0142 wieza architektura westphalia budynek northrhinewestphalia wie\u017ca niemcy swiatynia \u015bwi\u0105tynia nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 12:18:38", "license": "3", "title": "Ko\u015bci\u00f3\u0142 \u015bw. Miko\u0142aja", "text": "", "album_id": "72157628361619059", "longitude": "8.026746", "url_o": "https://farm8.staticflickr.com/7149/6487599327_7309a504f9_o.jpg", "secret": "b8692b38a8", "media": "photo", "latitude": "50.874823", "id": "6487599327", "tags": "building tower church architecture germany temple deutschland nrw siegen nordrheinwestfalen westfalia westfalen kosciol ko\u015bci\u00f3\u0142 wieza architektura westphalia budynek northrhinewestphalia wie\u017ca niemcy swiatynia \u015bwi\u0105tynia nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 12:25:26", "license": "3", "title": "Uliczka na Starym Mie\u015bcie", "text": "", "album_id": "72157628361619059", "longitude": "8.026016", "url_o": "https://farm8.staticflickr.com/7002/6487603099_e84530fdbf_o.jpg", "secret": "336194dc81", "media": "photo", "latitude": "50.873801", "id": "6487603099", "tags": "street house building architecture germany deutschland dom nrw siegen nordrheinwestfalen westfalia westfalen architektura westphalia budynek northrhinewestphalia ulica niemcy nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 12:26:13", "license": "3", "title": "Altstadtsch\u00e4nke", "text": "", "album_id": "72157628361619059", "longitude": "8.026263", "url_o": "https://farm8.staticflickr.com/7160/6487606269_a832911339_o.jpg", "secret": "672eb59e1a", "media": "photo", "latitude": "50.873747", "id": "6487606269", "tags": "house building architecture germany deutschland dom nrw siegen nordrheinwestfalen westfalia westfalen architektura westphalia budynek northrhinewestphalia niemcy nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 12:26:40", "license": "3", "title": "Uliczka na Starym Mie\u015bcie", "text": "", "album_id": "72157628361619059", "longitude": "8.026263", "url_o": "https://farm8.staticflickr.com/7010/6487609517_f588cdbf02_o.jpg", "secret": "4259439e36", "media": "photo", "latitude": "50.873747", "id": "6487609517", "tags": "street house building architecture germany deutschland dom nrw siegen nordrheinwestfalen westfalia westfalen architektura westphalia budynek northrhinewestphalia ulica niemcy nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 12:31:05", "license": "3", "title": "Eckgasse", "text": "", "album_id": "72157628361619059", "longitude": "8.026285", "url_o": "https://farm8.staticflickr.com/7006/6487613411_9a4f509616_o.jpg", "secret": "af82128bf1", "media": "photo", "latitude": "50.873137", "id": "6487613411", "tags": "street house building architecture germany deutschland alley dom nrw siegen nordrheinwestfalen westfalia westfalen architektura westphalia budynek northrhinewestphalia ulica niemcy nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 12:32:54", "license": "3", "title": "Ko\u015bci\u00f3\u0142 NMP", "text": "", "album_id": "72157628361619059", "longitude": "8.025330", "url_o": "https://farm8.staticflickr.com/7162/6487618311_4c0102636d_o.jpg", "secret": "63af6690de", "media": "photo", "latitude": "50.873628", "id": "6487618311", "tags": "building tower church architecture germany temple deutschland nrw siegen nordrheinwestfalen westfalia westfalen kosciol ko\u015bci\u00f3\u0142 wieza architektura westphalia budynek northrhinewestphalia wie\u017ca niemcy swiatynia \u015bwi\u0105tynia nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 12:34:26", "license": "3", "title": "Domy na stoku", "text": "", "album_id": "72157628361619059", "longitude": "8.025298", "url_o": "https://farm8.staticflickr.com/7035/6487621297_0dab852747_o.jpg", "secret": "91c3552a04", "media": "photo", "latitude": "50.873544", "id": "6487621297", "tags": "house building architecture germany square deutschland dom nrw siegen nordrheinwestfalen westfalia westfalen architektura westphalia budynek plac northrhinewestphalia niemcy nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 12:35:47", "license": "3", "title": "Stare domy", "text": "", "album_id": "72157628361619059", "longitude": "8.024783", "url_o": "https://farm8.staticflickr.com/7165/6487624365_5a5ab04fd8_o.jpg", "secret": "e79dfea67b", "media": "photo", "latitude": "50.873222", "id": "6487624365", "tags": "house building architecture germany deutschland dom nrw siegen nordrheinwestfalen westfalia westfalen architektura westphalia budynek northrhinewestphalia niemcy nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 12:38:31", "license": "3", "title": "Alte Poststra\u00dfe", "text": "", "album_id": "72157628361619059", "longitude": "8.023420", "url_o": "https://farm8.staticflickr.com/7021/6487628991_9d24e375e9_o.jpg", "secret": "f457736072", "media": "photo", "latitude": "50.873916", "id": "6487628991", "tags": "street germany deutschland promenade nrw siegen nordrheinwestfalen westfalia westfalen westphalia northrhinewestphalia ulica deptak niemcy nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 12:50:30", "license": "3", "title": "K\u00f6lner Stra\u00dfe", "text": "", "album_id": "72157628361619059", "longitude": "8.021736", "url_o": "https://farm8.staticflickr.com/7169/6487632265_cb9a6e62b8_o.jpg", "secret": "5a163f3577", "media": "photo", "latitude": "50.874579", "id": "6487632265", "tags": "street germany deutschland promenade nrw siegen nordrheinwestfalen westfalia westfalen westphalia northrhinewestphalia ulica deptak niemcy nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 12:57:13", "license": "3", "title": "Ko\u015bci\u00f3\u0142 \u015bw. Marcina", "text": "", "album_id": "72157628361619059", "longitude": "8.020523", "url_o": "https://farm8.staticflickr.com/7152/6487634975_595b1c64ff_o.jpg", "secret": "05b71485f1", "media": "photo", "latitude": "50.873567", "id": "6487634975", "tags": "building tower church architecture germany temple deutschland nrw siegen nordrheinwestfalen westfalia westfalen kosciol ko\u015bci\u00f3\u0142 wieza architektura westphalia budynek northrhinewestphalia wie\u017ca niemcy swiatynia \u015bwi\u0105tynia nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-06 13:23:25", "license": "3", "title": "Gruba Wie\u017ca", "text": "", "album_id": "72157628361619059", "longitude": "8.022015", "url_o": "https://farm8.staticflickr.com/7159/6487638913_cae07cbcaa_o.jpg", "secret": "99f4b113b1", "media": "photo", "latitude": "50.874089", "id": "6487638913", "tags": "building tower castle architecture germany deutschland nrw siegen nordrheinwestfalen westfalia westfalen zamek wieza architektura westphalia budynek northrhinewestphalia wie\u017ca niemcy nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2011-12-07 09:42:57", "license": "3", "title": "To Mini jest chore", "text": "", "album_id": "72157628361619059", "longitude": "8.024311", "url_o": "https://farm8.staticflickr.com/7004/6487642315_e924b2473e_o.jpg", "secret": "08b2b98771", "media": "photo", "latitude": "50.879142", "id": "6487642315", "tags": "auto car germany deutschland mini nrw vehicle siegen nordrheinwestfalen westfalia westfalen westphalia samochod northrhinewestphalia samoch\u00f3d niemcy pojazd nadreniap\u00f3\u0142nocnawestfalia nadreniapolnocnawestfalia"}, {"datetaken": "2006-04-09 11:00:49", "license": "1", "title": "Out of Darkness", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/125863707_2e3200b0b4_o.jpg", "secret": "2e3200b0b4", "media": "photo", "latitude": "0", "id": "125863707", "tags": "coffee coffeecup jesus picasa christian missionary copper albania turkishcoffee coffeeset christianmissions savioroftheworld"}, {"datetaken": "2006-04-09 11:00:49", "license": "1", "title": "Into the Marvelous Light", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/125925256_ce705afba0_o.jpg", "secret": "ce705afba0", "media": "photo", "latitude": "0", "id": "125925256", "tags": "coffee christian albania churchwebsite coffeeservice"}, {"datetaken": "2006-04-09 11:00:49", "license": "1", "title": "Albanian Coffee Cup", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/125946248_1de98be71a_o.jpg", "secret": "1de98be71a", "media": "photo", "latitude": "0", "id": "125946248", "tags": "coffee coffeecup copper albania churchwebsite"}, {"datetaken": "2006-04-09 11:01:24", "license": "1", "title": "Albanian Coffee Pot", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/125953825_b5e9a82a16_o.jpg", "secret": "b5e9a82a16", "media": "photo", "latitude": "0", "id": "125953825", "tags": "coffee copper albania coffeepot churchwebsite"}, {"datetaken": "2006-04-09 11:01:56", "license": "1", "title": "Turkish Coffee, Anyone?", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/125959079_783efbd70c_o.jpg", "secret": "783efbd70c", "media": "photo", "latitude": "0", "id": "125959079", "tags": "albania turkishcoffee churchwebsite coffeeset"}, {"datetaken": "2006-04-09 11:02:10", "license": "1", "title": "Display of Items from Albania", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/125965473_38c854d1ce_o.jpg", "secret": "38c854d1ce", "media": "photo", "latitude": "0", "id": "125965473", "tags": "cup coffee display copper albania therockchurch"}, {"datetaken": "2006-04-09 11:03:51", "license": "1", "title": "Carved Wooden Platter from Albania", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/125980841_d31c8ad850_o.jpg", "secret": "d31c8ad850", "media": "photo", "latitude": "0", "id": "125980841", "tags": "wood carving albania carvedwood churchwebsite"}, {"datetaken": "2006-04-09 11:04:29", "license": "1", "title": "Details on Albanian Wooden Platter", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/126031937_2d0800c12c_o.jpg", "secret": "2d0800c12c", "media": "photo", "latitude": "0", "id": "126031937", "tags": "wood carving albania woodcarving churchwebsite"}, {"datetaken": "2006-04-09 11:04:43", "license": "1", "title": "Albanian Decorative Box", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/126067496_a57381cba6_o.jpg", "secret": "a57381cba6", "media": "photo", "latitude": "0", "id": "126067496", "tags": "box albania artifact churchwebsite decoratedbox"}, {"datetaken": "2006-04-09 11:04:54", "license": "1", "title": "Albanian Coffee Set", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/126073698_4384c81793_o.jpg", "secret": "4384c81793", "media": "photo", "latitude": "0", "id": "126073698", "tags": "coffee cups copper albania churchwebsite coffeesets"}, {"datetaken": "2006-04-09 11:05:04", "license": "1", "title": "Albanian Coffee Cup", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/126077520_be727ee5ec_o.jpg", "secret": "be727ee5ec", "media": "photo", "latitude": "0", "id": "126077520", "tags": "albania artifacts memorabilia churchwebsite"}, {"datetaken": "2006-04-09 11:05:18", "license": "1", "title": "Albanian Coffee Pot", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/126077725_32ec3ab3d1_o.jpg", "secret": "32ec3ab3d1", "media": "photo", "latitude": "0", "id": "126077725", "tags": "albania artifacts memorabilia churchwebsite"}, {"datetaken": "2006-04-09 11:05:45", "license": "1", "title": "Albanian Ladies' Hat", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/126078064_55d8189c0f_o.jpg", "secret": "55d8189c0f", "media": "photo", "latitude": "0", "id": "126078064", "tags": "albania artifacts memorabilia churchwebsite"}, {"datetaken": "2006-04-09 11:05:53", "license": "1", "title": "Albanian Men's Hat", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/126078314_1fc93d9499_o.jpg", "secret": "1fc93d9499", "media": "photo", "latitude": "0", "id": "126078314", "tags": "albania artifacts memorabilia churchwebsite"}, {"datetaken": "2006-04-09 11:07:24", "license": "1", "title": "Albanian Wool Hat and Slippers", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/126078505_cd143b0bcb_o.jpg", "secret": "cd143b0bcb", "media": "photo", "latitude": "0", "id": "126078505", "tags": "albania artifacts memorabilia churchwebsite"}, {"datetaken": "2006-04-09 11:07:38", "license": "1", "title": "Albanian Flag", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/126078727_760fb3ca35_o.jpg", "secret": "760fb3ca35", "media": "photo", "latitude": "0", "id": "126078727", "tags": "albania artifacts memorabilia churchwebsite"}, {"datetaken": "2006-04-09 11:08:01", "license": "1", "title": "Albanian Wood Plaque", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/126078946_b60c7127a3_o.jpg", "secret": "b60c7127a3", "media": "photo", "latitude": "0", "id": "126078946", "tags": "albania artifacts memorabilia churchwebsite"}, {"datetaken": "2006-04-09 11:08:50", "license": "1", "title": "Albania Replica of Communist Shelters", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/126079138_d742d5d400_o.jpg", "secret": "d742d5d400", "media": "photo", "latitude": "0", "id": "126079138", "tags": "albania artifacts memorabilia churchwebsite"}, {"datetaken": "2006-04-09 11:10:51", "license": "1", "title": "Albanian Decorative Scarf", "text": "", "album_id": "72057594102843715", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/126079444_36f1dc84b7_o.jpg", "secret": "36f1dc84b7", "media": "photo", "latitude": "0", "id": "126079444", "tags": "albania artifacts memorabilia churchwebsite"}, {"datetaken": "2006-06-09 21:16:49", "license": "2", "title": "Random island off Helsinki", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/68/164281486_36563913d1_o.jpg", "secret": "36563913d1", "media": "photo", "latitude": "60.146632", "id": "164281486", "tags": "island helsinki"}, {"datetaken": "2006-06-09 21:16:59", "license": "2", "title": "Gap between islands", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/75/164281026_619cadc75c_o.jpg", "secret": "619cadc75c", "media": "photo", "latitude": "60.146632", "id": "164281026", "tags": "water island helsinki"}, {"datetaken": "2006-06-09 21:17:51", "license": "2", "title": "Another Helsinki island", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/61/164280616_7a3069db3a_o.jpg", "secret": "7a3069db3a", "media": "photo", "latitude": "60.146632", "id": "164280616", "tags": "water island helsinki"}, {"datetaken": "2006-06-09 21:18:28", "license": "2", "title": "Island off Helsinki", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/44/164280007_07c5c2d149_o.jpg", "secret": "07c5c2d149", "media": "photo", "latitude": "60.146632", "id": "164280007", "tags": "island helsinki"}, {"datetaken": "2006-06-09 21:19:59", "license": "2", "title": "Island off Helsinki", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/44/164279578_d4f474e7b2_o.jpg", "secret": "d4f474e7b2", "media": "photo", "latitude": "60.146632", "id": "164279578", "tags": "island helsinki"}, {"datetaken": "2006-06-09 21:20:59", "license": "2", "title": "Island off Helsinki", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/75/164279166_c3d9b887dd_o.jpg", "secret": "c3d9b887dd", "media": "photo", "latitude": "60.146632", "id": "164279166", "tags": "island helsinki"}, {"datetaken": "2006-06-09 22:17:36", "license": "2", "title": "Suomenlinna cathedral", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/51/164277246_6a04d90589_o.jpg", "secret": "6a04d90589", "media": "photo", "latitude": "60.146632", "id": "164277246", "tags": "helsinki cathedral suomenlinna"}, {"datetaken": "2006-06-09 22:18:01", "license": "2", "title": "Suomenlinna cathedral", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/72/164276945_1d97e45920_o.jpg", "secret": "1d97e45920", "media": "photo", "latitude": "60.146632", "id": "164276945", "tags": "helsinki cathedral suomenlinna"}, {"datetaken": "2006-06-09 22:19:46", "license": "2", "title": "Suomenlinna cathedral", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/67/164276605_ee3754d3b4_o.jpg", "secret": "ee3754d3b4", "media": "photo", "latitude": "60.146632", "id": "164276605", "tags": "helsinki cathedral suomenlinna"}, {"datetaken": "2006-06-09 22:20:10", "license": "2", "title": "Suomenlinna cathderal", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/51/164276096_8b9bfced7c_o.jpg", "secret": "8b9bfced7c", "media": "photo", "latitude": "60.146632", "id": "164276096", "tags": "helsinki cathedral suomenlinna"}, {"datetaken": "2006-06-09 22:20:19", "license": "2", "title": "Suomenlinna cathedral with wedding car", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/64/164275653_36152ba3ab_o.jpg", "secret": "36152ba3ab", "media": "photo", "latitude": "60.146632", "id": "164275653", "tags": "helsinki cathedral suomenlinna"}, {"datetaken": "2006-06-09 22:22:41", "license": "2", "title": "Bluestone/brick hybrid building", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/64/164275158_73538ed2c6_o.jpg", "secret": "73538ed2c6", "media": "photo", "latitude": "60.146632", "id": "164275158", "tags": "building brick helsinki suomenlinna bluestone"}, {"datetaken": "2006-06-09 22:23:14", "license": "2", "title": "Stone stairs", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/46/164274683_6da2200869_o.jpg", "secret": "6da2200869", "media": "photo", "latitude": "60.146632", "id": "164274683", "tags": "stairs helsinki suomenlinna"}, {"datetaken": "2006-06-09 22:23:32", "license": "2", "title": "Dad on the Stone stairs", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/77/164274306_f1a3b434a4_o.jpg", "secret": "f1a3b434a4", "media": "photo", "latitude": "60.146632", "id": "164274306", "tags": "stairs helsinki dad suomenlinna"}, {"datetaken": "2006-06-09 22:23:48", "license": "2", "title": "Dad on the stone stairs", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/62/164273883_f972ac8ad0_o.jpg", "secret": "f972ac8ad0", "media": "photo", "latitude": "60.146632", "id": "164273883", "tags": "stairs helsinki dad suomenlinna"}, {"datetaken": "2006-06-09 22:25:08", "license": "2", "title": "Water's edge in Suomenlinna", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/77/164273259_7adf893d4f_o.jpg", "secret": "7adf893d4f", "media": "photo", "latitude": "60.146632", "id": "164273259", "tags": "water helsinki suomenlinna"}, {"datetaken": "2006-06-09 22:25:17", "license": "2", "title": "Water's edge in Suomenlinna", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/61/164272784_8e1de3f361_o.jpg", "secret": "8e1de3f361", "media": "photo", "latitude": "60.146632", "id": "164272784", "tags": "water grass helsinki suomenlinna"}, {"datetaken": "2006-06-09 22:25:34", "license": "2", "title": "Another island on Suomenlinna", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/49/164272360_4b83831e81_o.jpg", "secret": "4b83831e81", "media": "photo", "latitude": "60.146632", "id": "164272360", "tags": "island helsinki suomenlinna"}, {"datetaken": "2006-06-09 22:29:28", "license": "2", "title": "Boat and other island on Suomenlinna", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/57/164271975_ed72c1253e_o.jpg", "secret": "ed72c1253e", "media": "photo", "latitude": "60.146632", "id": "164271975", "tags": "island boat helsinki suomenlinna"}, {"datetaken": "2006-06-09 22:29:46", "license": "2", "title": "Boat, bridge, other island", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/76/164271489_9ed7ace96d_o.jpg", "secret": "9ed7ace96d", "media": "photo", "latitude": "60.146632", "id": "164271489", "tags": "bridge island boat helsinki suomenlinna"}, {"datetaken": "2006-06-09 22:31:17", "license": "2", "title": "Looking out to the water, Suomenlinna", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/75/164271074_490e52e132_o.jpg", "secret": "490e52e132", "media": "photo", "latitude": "60.146632", "id": "164271074", "tags": "water helsinki suomenlinna"}, {"datetaken": "2006-06-09 22:34:42", "license": "2", "title": "The infinite hall", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/67/164269846_efcfba64d2_o.jpg", "secret": "efcfba64d2", "media": "photo", "latitude": "60.146632", "id": "164269846", "tags": "dark helsinki archway suomenlinna"}, {"datetaken": "2006-06-09 22:37:41", "license": "2", "title": "Archway looking out to water", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/57/164269329_d0aba394ef_o.jpg", "secret": "d0aba394ef", "media": "photo", "latitude": "60.146632", "id": "164269329", "tags": "window helsinki archway suomenlinna"}, {"datetaken": "2006-06-09 22:39:18", "license": "2", "title": "View out over Suomenlinna", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/45/164268321_6acfa8c770_o.jpg", "secret": "6acfa8c770", "media": "photo", "latitude": "60.146632", "id": "164268321", "tags": "helsinki suomenlinna"}, {"datetaken": "2006-06-09 22:43:51", "license": "2", "title": "IMGP0271.JPG", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/77/164267886_ee2c9d28d5_o.jpg", "secret": "ee2c9d28d5", "media": "photo", "latitude": "60.146632", "id": "164267886", "tags": "helsinki"}, {"datetaken": "2006-06-09 22:52:08", "license": "2", "title": "Suomenlinna beach", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/58/164267391_14e4094ea8_o.jpg", "secret": "14e4094ea8", "media": "photo", "latitude": "60.146632", "id": "164267391", "tags": "beach water helsinki tea iced suomenlinna"}, {"datetaken": "2006-06-09 22:52:28", "license": "2", "title": "Suomenlinna beach", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/56/164266981_52934316da_o.jpg", "secret": "52934316da", "media": "photo", "latitude": "60.146632", "id": "164266981", "tags": "beach water helsinki suomenlinna"}, {"datetaken": "2006-06-09 23:07:43", "license": "2", "title": "Suomenlinna beach", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/46/164266116_23a072fa1f_o.jpg", "secret": "23a072fa1f", "media": "photo", "latitude": "60.146632", "id": "164266116", "tags": "beach water helsinki suomenlinna"}, {"datetaken": "2006-06-09 23:07:56", "license": "2", "title": "Suomenlinna beach", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/63/164265676_7a71f94374_o.jpg", "secret": "7a71f94374", "media": "photo", "latitude": "60.146632", "id": "164265676", "tags": "beach water helsinki suomenlinna"}, {"datetaken": "2006-06-09 23:08:16", "license": "2", "title": "Suomenlinna beach", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/66/164265238_d617035d42_o.jpg", "secret": "d617035d42", "media": "photo", "latitude": "60.146632", "id": "164265238", "tags": "beach water helsinki suomenlinna"}, {"datetaken": "2006-06-09 23:15:16", "license": "2", "title": "Suomenlinna, looking over a field", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/48/164264770_f75897ca5b_o.jpg", "secret": "f75897ca5b", "media": "photo", "latitude": "60.146632", "id": "164264770", "tags": "field helsinki sand suomenlinna"}, {"datetaken": "2006-06-09 23:15:36", "license": "2", "title": "Suomenlinna, looking towards Helsinki", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/53/164264284_ccf7d16b5f_o.jpg", "secret": "ccf7d16b5f", "media": "photo", "latitude": "60.146632", "id": "164264284", "tags": "water helsinki suomenlinna"}, {"datetaken": "2006-06-09 23:19:23", "license": "2", "title": "Side of a house in a hill", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/52/164263840_1502611153_o.jpg", "secret": "1502611153", "media": "photo", "latitude": "60.146632", "id": "164263840", "tags": "roof house grass helsinki hill suomenlinna"}, {"datetaken": "2006-06-09 23:29:45", "license": "2", "title": "Boats in Suomenlinna dock", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/46/164263467_bc00ae5c1e_o.jpg", "secret": "bc00ae5c1e", "media": "photo", "latitude": "60.146632", "id": "164263467", "tags": "boats dock helsinki suomenlinna"}, {"datetaken": "2006-06-09 23:35:14", "license": "2", "title": "Bride and groom", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/74/164261632_4256ad98d6_o.jpg", "secret": "4256ad98d6", "media": "photo", "latitude": "60.146632", "id": "164261632", "tags": "wedding groom bride helsinki suomenlinna"}, {"datetaken": "2006-06-09 23:36:19", "license": "2", "title": "Long sand path", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/69/164261273_d3d7b7c5ab_o.jpg", "secret": "d3d7b7c5ab", "media": "photo", "latitude": "60.146632", "id": "164261273", "tags": "building helsinki path suomenlinna"}, {"datetaken": "2006-06-09 23:36:43", "license": "2", "title": "Big old bluestone building", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/75/164260833_c8667eb95a_o.jpg", "secret": "c8667eb95a", "media": "photo", "latitude": "60.146632", "id": "164260833", "tags": "building helsinki suomenlinna bluestone"}, {"datetaken": "2006-06-09 23:39:21", "license": "2", "title": "Suomenlinna dock", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/62/164259641_c9578ca762_o.jpg", "secret": "c9578ca762", "media": "photo", "latitude": "60.146632", "id": "164259641", "tags": "dock helsinki ship suomenlinna"}, {"datetaken": "2006-06-09 23:40:00", "license": "2", "title": "Ship in for construction/repairs", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/77/164259306_2f662997c2_o.jpg", "secret": "2f662997c2", "media": "photo", "latitude": "60.146632", "id": "164259306", "tags": "dock helsinki ship suomenlinna"}, {"datetaken": "2006-06-09 23:47:00", "license": "2", "title": "Two bottles of red, as candle holders", "text": "", "album_id": "72157594161728799", "longitude": "25.055351", "url_o": "https://farm1.staticflickr.com/66/164258833_7d4e4828df_o.jpg", "secret": "7d4e4828df", "media": "photo", "latitude": "60.146632", "id": "164258833", "tags": "red window helsinki wine retreat suomenlinna cabernet sauvignon penfolds rawsons"}, {"datetaken": "2012-01-08 13:15:14", "license": "5", "title": "Shingle Style Carriage House", "text": "", "album_id": "72157628824235691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7165/6679058467_b63fe9a104_o.jpg", "secret": "52752c2958", "media": "photo", "latitude": "0", "id": "6679058467", "tags": ""}, {"datetaken": "2012-01-08 13:15:21", "license": "5", "title": "Story & A Half Georgian Detailing", "text": "", "album_id": "72157628824235691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7034/6679059735_0f5de19f48_o.jpg", "secret": "8440bbd4ed", "media": "photo", "latitude": "0", "id": "6679059735", "tags": ""}, {"datetaken": "2012-01-08 13:15:57", "license": "5", "title": "Gambrel Roof Colonial Revival", "text": "", "album_id": "72157628824235691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6679061115_c2b02fbdfb_o.jpg", "secret": "187fae22c2", "media": "photo", "latitude": "0", "id": "6679061115", "tags": ""}, {"datetaken": "2012-01-08 13:16:09", "license": "5", "title": "Cape Cod", "text": "", "album_id": "72157628824235691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7159/6679062587_5d7170ba0c_o.jpg", "secret": "98ae7147c3", "media": "photo", "latitude": "0", "id": "6679062587", "tags": ""}, {"datetaken": "2012-01-08 13:17:47", "license": "5", "title": "Italianate", "text": "", "album_id": "72157628824235691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7143/6679064027_f3ed366390_o.jpg", "secret": "e7ff933e09", "media": "photo", "latitude": "0", "id": "6679064027", "tags": ""}, {"datetaken": "2012-01-08 13:25:06", "license": "5", "title": "Colonial Revival w Arts & Crafts Influence", "text": "", "album_id": "72157628824235691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7008/6679065421_320b1561af_o.jpg", "secret": "c55454e09d", "media": "photo", "latitude": "0", "id": "6679065421", "tags": ""}, {"datetaken": "2012-01-08 13:26:15", "license": "5", "title": "Georgain Revival", "text": "", "album_id": "72157628824235691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7027/6679066947_b784ff77d6_o.jpg", "secret": "bfaae7d060", "media": "photo", "latitude": "0", "id": "6679066947", "tags": ""}, {"datetaken": "2012-01-08 13:26:49", "license": "5", "title": "Arts & Crafts", "text": "", "album_id": "72157628824235691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7005/6679068269_78d4698869_o.jpg", "secret": "2ef7a6c31c", "media": "photo", "latitude": "0", "id": "6679068269", "tags": ""}, {"datetaken": "2012-01-08 13:27:05", "license": "5", "title": "Arts & Crafts Carriage House", "text": "", "album_id": "72157628824235691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7170/6679069851_1a3869e5b9_o.jpg", "secret": "907909c81b", "media": "photo", "latitude": "0", "id": "6679069851", "tags": ""}, {"datetaken": "2012-01-08 13:27:40", "license": "5", "title": "Gambrel Roof Carriage Houses", "text": "", "album_id": "72157628824235691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7157/6679071455_766cd3a52b_o.jpg", "secret": "ba737d580c", "media": "photo", "latitude": "0", "id": "6679071455", "tags": ""}, {"datetaken": "2012-01-08 13:27:53", "license": "5", "title": "Cross Gable Arts & Crafts", "text": "", "album_id": "72157628824235691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7023/6679072913_ef57f4805a_o.jpg", "secret": "350a629618", "media": "photo", "latitude": "0", "id": "6679072913", "tags": ""}, {"datetaken": "2012-01-08 13:32:57", "license": "5", "title": "Tudor Revival", "text": "", "album_id": "72157628824235691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7018/6679074433_83f219136c_o.jpg", "secret": "be787f67cf", "media": "photo", "latitude": "0", "id": "6679074433", "tags": ""}, {"datetaken": "2012-01-08 13:33:25", "license": "5", "title": "Brick Tudor Revival", "text": "", "album_id": "72157628824235691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7004/6679075793_e01a0fab38_o.jpg", "secret": "9b9bb69e05", "media": "photo", "latitude": "0", "id": "6679075793", "tags": ""}, {"datetaken": "2012-01-08 13:35:58", "license": "5", "title": "Shingle Style", "text": "", "album_id": "72157628824235691", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7032/6679077209_d176582631_o.jpg", "secret": "4cd7697d88", "media": "photo", "latitude": "0", "id": "6679077209", "tags": ""}, {"datetaken": "2006-05-11 14:20:01", "license": "1", "title": "Buildings along the Bund", "text": "", "album_id": "72057594132919444", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/144738573_cc30627871_o.jpg", "secret": "cc30627871", "media": "photo", "latitude": "0", "id": "144738573", "tags": "night shanghai bund huangpu"}, {"datetaken": "2006-05-11 14:20:01", "license": "1", "title": "Pudong District", "text": "", "album_id": "72057594132919444", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/144738574_71ec76869e_o.jpg", "secret": "71ec76869e", "media": "photo", "latitude": "0", "id": "144738574", "tags": "night river shanghai pudong huangpu pearltvtower"}, {"datetaken": "2006-05-11 14:20:01", "license": "1", "title": "Tea Drying", "text": "", "album_id": "72057594132919444", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/144738575_4cbeeba500_o.jpg", "secret": "4cbeeba500", "media": "photo", "latitude": "0", "id": "144738575", "tags": "shanghai tea yugarden"}, {"datetaken": "2006-05-11 14:20:01", "license": "1", "title": "Yu Garden", "text": "", "album_id": "72057594132919444", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/144738576_e778d1c7e5_o.jpg", "secret": "e778d1c7e5", "media": "photo", "latitude": "0", "id": "144738576", "tags": "shanghai yugarden"}, {"datetaken": "2006-05-11 14:20:01", "license": "1", "title": "Yu Garden", "text": "", "album_id": "72057594132919444", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/144738577_41379a3d2d_o.jpg", "secret": "41379a3d2d", "media": "photo", "latitude": "0", "id": "144738577", "tags": "shanghai yugarden"}, {"datetaken": "2006-05-11 14:20:01", "license": "1", "title": "Scholar's desk", "text": "", "album_id": "72057594132919444", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/144738578_f93aab6b9d_o.jpg", "secret": "f93aab6b9d", "media": "photo", "latitude": "0", "id": "144738578", "tags": "shanghai yugarden scholarsdesk"}, {"datetaken": "2006-05-12 11:17:17", "license": "1", "title": "The Bund at night", "text": "", "album_id": "72057594132919444", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/145179644_e950f219bd_o.jpg", "secret": "e950f219bd", "media": "photo", "latitude": "0", "id": "145179644", "tags": "china night neon shanghai bund"}, {"datetaken": "2006-05-12 11:17:17", "license": "1", "title": "Buildings along the Bund", "text": "", "album_id": "72057594132919444", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/145179640_3a00e9e8b8_o.jpg", "secret": "3a00e9e8b8", "media": "photo", "latitude": "0", "id": "145179640", "tags": "china night shanghai bund"}, {"datetaken": "2006-05-12 11:17:18", "license": "1", "title": "Shanghai Museum of Art and History", "text": "", "album_id": "72057594132919444", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/145179662_07f1bd4629_o.jpg", "secret": "07f1bd4629", "media": "photo", "latitude": "0", "id": "145179662", "tags": "china art urn museum bronze shanghai"}, {"datetaken": "2006-05-12 11:17:18", "license": "1", "title": "Mongolian Hotpot", "text": "", "album_id": "72057594132919444", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/145179651_011c93f329_o.jpg", "secret": "011c93f329", "media": "photo", "latitude": "0", "id": "145179651", "tags": "china food shanghai hotpot mongolian"}, {"datetaken": "2006-05-12 11:17:19", "license": "1", "title": "Yu Garden", "text": "", "album_id": "72057594132919444", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/145179666_107f5efba6_o.jpg", "secret": "107f5efba6", "media": "photo", "latitude": "0", "id": "145179666", "tags": "china shanghai yugarden"}, {"datetaken": "2006-05-12 11:17:20", "license": "1", "title": "Stone Dragons", "text": "", "album_id": "72057594132919444", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/145179680_e11c1d0896_o.jpg", "secret": "e11c1d0896", "media": "photo", "latitude": "0", "id": "145179680", "tags": "china dragon shanghai yugarden"}, {"datetaken": "2006-05-12 11:17:20", "license": "1", "title": "Teamaker", "text": "", "album_id": "72057594132919444", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/145179673_0a8b3de44d_o.jpg", "secret": "0a8b3de44d", "media": "photo", "latitude": "0", "id": "145179673", "tags": "china shanghai tea drying yugarden"}, {"datetaken": "2006-05-12 11:17:21", "license": "1", "title": "Yu Garden", "text": "", "album_id": "72057594132919444", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/145179687_22922f293e_o.jpg", "secret": "22922f293e", "media": "photo", "latitude": "0", "id": "145179687", "tags": "china shanghai yugarden"}, {"datetaken": "2006-11-19 09:11:06", "license": "1", "title": "Into the Bean 1", "text": "", "album_id": "72157623093190087", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4277778852_1a7557a6e5_o.jpg", "secret": "b6aa2bd776", "media": "photo", "latitude": "0", "id": "4277778852", "tags": "park winter copyright cloud selfportrait chicago reflection art public canon john illinois gate williams c millennium powershot il s230 cloudgate kapoor thebean anishkapoor anish chicage \u201c williams\u201d \u201cjohn johncwilliams johnwilliamsphd phd\u201d"}, {"datetaken": "2006-11-19 09:11:53", "license": "1", "title": "Into the Bean 2", "text": "", "album_id": "72157623093190087", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4277778996_433a17310a_o.jpg", "secret": "111f035144", "media": "photo", "latitude": "0", "id": "4277778996", "tags": "park winter copyright cloud selfportrait chicago reflection art public canon john illinois gate williams c millennium powershot il s230 cloudgate kapoor thebean anishkapoor anish chicage \u201c williams\u201d \u201cjohn johncwilliams johnwilliamsphd phd\u201d"}, {"datetaken": "2006-11-19 09:12:21", "license": "1", "title": "Into the Bean 4", "text": "", "album_id": "72157623093190087", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2727/4277033139_5c1f3d9c22_o.jpg", "secret": "d2713328a4", "media": "photo", "latitude": "0", "id": "4277033139", "tags": "park winter copyright cloud selfportrait chicago reflection art public canon john illinois gate williams c millennium powershot il s230 cloudgate kapoor thebean anishkapoor anish chicage \u201c williams\u201d \u201cjohn johncwilliams johnwilliamsphd phd\u201d"}, {"datetaken": "2006-11-19 09:13:54", "license": "1", "title": "Into the Bean 3", "text": "", "album_id": "72157623093190087", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4277032945_900504645a_o.jpg", "secret": "18f5c3ce84", "media": "photo", "latitude": "0", "id": "4277032945", "tags": "park winter copyright cloud selfportrait chicago reflection art public canon john illinois gate williams c millennium powershot il s230 cloudgate kapoor thebean anishkapoor anish chicage \u201c williams\u201d \u201cjohn johncwilliams johnwilliamsphd phd\u201d"}, {"datetaken": "2006-11-19 09:15:02", "license": "1", "title": "Into the Bean 5", "text": "", "album_id": "72157623093190087", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4277779454_b791d30b73_o.jpg", "secret": "bc2ca44fed", "media": "photo", "latitude": "0", "id": "4277779454", "tags": "park winter copyright cloud selfportrait chicago reflection art public canon john illinois gate williams c millennium powershot il s230 cloudgate kapoor thebean anishkapoor anish chicage \u201c williams\u201d \u201cjohn johncwilliams johnwilliamsphd phd\u201d"}, {"datetaken": "2006-11-19 09:15:21", "license": "1", "title": "Into the Bean 6", "text": "", "album_id": "72157623093190087", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4277779628_3c49fc206a_o.jpg", "secret": "e656159652", "media": "photo", "latitude": "0", "id": "4277779628", "tags": "park winter copyright cloud selfportrait chicago reflection art public canon john illinois gate williams c millennium powershot il s230 cloudgate kapoor thebean anishkapoor anish chicage \u201c williams\u201d \u201cjohn johncwilliams johnwilliamsphd phd\u201d"}, {"datetaken": "2006-11-19 12:40:51", "license": "1", "title": "Frank Lloyd Wright 1", "text": "", "album_id": "72157623093190087", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2715/4277104163_48804c6c8a_o.jpg", "secret": "45ebd92a94", "media": "photo", "latitude": "0", "id": "4277104163", "tags": "copyright house chicago home architecture canon john frank illinois williams suburban c powershot il franklloydwright lloyd wright s230 residential oakpark \u201c williams\u201d \u201cjohn johncwilliams johnwilliamsphd phd\u201d"}, {"datetaken": "2006-11-19 12:41:40", "license": "1", "title": "Frank Lloyd Wright 2", "text": "", "album_id": "72157623093190087", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4277104275_bbc69ecb1c_o.jpg", "secret": "17f3c1f89e", "media": "photo", "latitude": "0", "id": "4277104275", "tags": "copyright house chicago home architecture canon john frank illinois williams suburban c powershot il franklloydwright lloyd wright s230 residential oakpark \u201c williams\u201d \u201cjohn johncwilliams johnwilliamsphd phd\u201d"}, {"datetaken": "2006-11-19 13:02:34", "license": "1", "title": "Frank Lloyd Wright 4", "text": "", "album_id": "72157623093190087", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4277850554_bc3a812d82_o.jpg", "secret": "2f7596d9da", "media": "photo", "latitude": "0", "id": "4277850554", "tags": "copyright house chicago home architecture canon john frank illinois williams suburban c powershot il franklloydwright lloyd wright s230 residential oakpark \u201c williams\u201d \u201cjohn johncwilliams johnwilliamsphd phd\u201d"}, {"datetaken": "2006-11-19 13:08:42", "license": "1", "title": "Frank Lloyd Wright 5", "text": "", "album_id": "72157623093190087", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2787/4277104513_8041cbcfa5_o.jpg", "secret": "ed966488bc", "media": "photo", "latitude": "0", "id": "4277104513", "tags": "illinois il chicago oakpark franklloydwright frank wright house home architecture canon powershot s230 suburban residential lloyd johnwilliamsphd \u201cjohn williams phd\u201d \u201c copyright john c williams\u201d johncwilliams"}, {"datetaken": "2006-11-19 13:19:59", "license": "1", "title": "Frank Lloyd Wright 8", "text": "", "album_id": "72157623093190087", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4277850816_fb419dbec4_o.jpg", "secret": "073c908353", "media": "photo", "latitude": "0", "id": "4277850816", "tags": "copyright house chicago home architecture canon john frank illinois williams suburban c powershot il franklloydwright lloyd wright s230 residential oakpark \u201c williams\u201d \u201cjohn johncwilliams johnwilliamsphd phd\u201d"}, {"datetaken": "2006-11-19 13:34:06", "license": "1", "title": "Frank Lloyd Wright 10", "text": "", "album_id": "72157623093190087", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4277104741_b95268f6a5_o.jpg", "secret": "374d7538d5", "media": "photo", "latitude": "0", "id": "4277104741", "tags": "copyright house chicago home architecture canon john frank illinois williams suburban c powershot il franklloydwright lloyd wright s230 residential oakpark \u201c williams\u201d \u201cjohn johncwilliams johnwilliamsphd phd\u201d"}, {"datetaken": "2006-04-14 17:30:02", "license": "1", "title": "broken building", "text": "", "album_id": "72057594107766165", "longitude": "-91.533987", "url_o": "https://farm1.staticflickr.com/51/128963394_5de2da6c9b_o.jpg", "secret": "5de2da6c9b", "media": "photo", "latitude": "41.658404", "id": "128963394", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 17:34:37", "license": "1", "title": "parking garage", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/128963396_01be4f2539_o.jpg", "secret": "01be4f2539", "media": "photo", "latitude": "0", "id": "128963396", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 17:36:04", "license": "1", "title": "debris by parking garage", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/128963408_7f193564c3_o.jpg", "secret": "7f193564c3", "media": "photo", "latitude": "0", "id": "128963408", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 17:37:42", "license": "1", "title": "debris", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/128963414_790461d625_o.jpg", "secret": "790461d625", "media": "photo", "latitude": "0", "id": "128963414", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 17:38:03", "license": "1", "title": "hanging gutter", "text": "", "album_id": "72057594107766165", "longitude": "-91.534352", "url_o": "https://farm1.staticflickr.com/52/128963433_0f7a90794c_o.jpg", "secret": "0f7a90794c", "media": "photo", "latitude": "41.656986", "id": "128963433", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 17:38:45", "license": "1", "title": "tree", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/128963441_395b13639c_o.jpg", "secret": "395b13639c", "media": "photo", "latitude": "0", "id": "128963441", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 17:43:22", "license": "1", "title": "apartments", "text": "", "album_id": "72057594107766165", "longitude": "-91.534416", "url_o": "https://farm1.staticflickr.com/48/128963444_7e0bd3233f_o.jpg", "secret": "7e0bd3233f", "media": "photo", "latitude": "41.656016", "id": "128963444", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 17:45:03", "license": "1", "title": "upside-down car", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/128963450_89fcef3356_o.jpg", "secret": "89fcef3356", "media": "photo", "latitude": "0", "id": "128963450", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 17:52:55", "license": "1", "title": "Mail Boxes of Iowa City", "text": "", "album_id": "72057594107766165", "longitude": "-91.529974", "url_o": "https://farm1.staticflickr.com/50/128963458_227934a6f2_o.jpg", "secret": "227934a6f2", "media": "photo", "latitude": "41.658228", "id": "128963458", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 17:55:43", "license": "1", "title": "St. Patrick's", "text": "", "album_id": "72057594107766165", "longitude": "-91.535629", "url_o": "https://farm1.staticflickr.com/53/128963463_8d62c14363_o.jpg", "secret": "8d62c14363", "media": "photo", "latitude": "41.663631", "id": "128963463", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 17:56:42", "license": "1", "title": "St. Patrick's", "text": "", "album_id": "72057594107766165", "longitude": "-91.535629", "url_o": "https://farm1.staticflickr.com/55/128963472_eabb874709_o.jpg", "secret": "eabb874709", "media": "photo", "latitude": "41.663631", "id": "128963472", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 17:57:49", "license": "1", "title": "media coverage", "text": "", "album_id": "72057594107766165", "longitude": "-91.535629", "url_o": "https://farm1.staticflickr.com/52/128963476_49ce7941ac_o.jpg", "secret": "49ce7941ac", "media": "photo", "latitude": "41.663631", "id": "128963476", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:01:45", "license": "1", "title": "Kum and Go", "text": "", "album_id": "72057594107766165", "longitude": "-91.530768", "url_o": "https://farm1.staticflickr.com/46/128963482_8be5137886_o.jpg", "secret": "8be5137886", "media": "photo", "latitude": "41.657571", "id": "128963482", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:04:12", "license": "1", "title": "Happy Joe's", "text": "", "album_id": "72057594107766165", "longitude": "-91.530725", "url_o": "https://farm1.staticflickr.com/1/128963486_8c0d77e552_o.jpg", "secret": "8c0d77e552", "media": "photo", "latitude": "41.658597", "id": "128963486", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:06:39", "license": "1", "title": "tree", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/128963490_11eb344a04_o.jpg", "secret": "11eb344a04", "media": "photo", "latitude": "0", "id": "128963490", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:11:22", "license": "1", "title": "tree in college green park", "text": "", "album_id": "72057594107766165", "longitude": "-91.526584", "url_o": "https://farm1.staticflickr.com/46/128963496_c8e531b984_o.jpg", "secret": "c8e531b984", "media": "photo", "latitude": "41.659495", "id": "128963496", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:12:17", "license": "1", "title": "something is wrong with this picture", "text": "", "album_id": "72057594107766165", "longitude": "-91.526606", "url_o": "https://farm1.staticflickr.com/49/128963502_3c2faa6776_o.jpg", "secret": "3c2faa6776", "media": "photo", "latitude": "41.660200", "id": "128963502", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:16:08", "license": "1", "title": "repair crews", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/128963518_fbb3618b63_o.jpg", "secret": "fbb3618b63", "media": "photo", "latitude": "0", "id": "128963518", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:17:01", "license": "1", "title": "sorority", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/128963522_eba151bc28_o.jpg", "secret": "eba151bc28", "media": "photo", "latitude": "0", "id": "128963522", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:18:44", "license": "1", "title": "sorority", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/128963525_96e02f20a6_o.jpg", "secret": "96e02f20a6", "media": "photo", "latitude": "0", "id": "128963525", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:19:34", "license": "1", "title": "house next door to sorority", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/128963530_db91ad160d_o.jpg", "secret": "db91ad160d", "media": "photo", "latitude": "0", "id": "128963530", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:21:05", "license": "1", "title": "boarded windows", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/128963536_a20908a4b8_o.jpg", "secret": "a20908a4b8", "media": "photo", "latitude": "0", "id": "128963536", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:21:58", "license": "1", "title": "salvation army", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/128963542_4c60e58e62_o.jpg", "secret": "4c60e58e62", "media": "photo", "latitude": "0", "id": "128963542", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:23:17", "license": "1", "title": "tree on car", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/128963548_9c0eea9520_o.jpg", "secret": "9c0eea9520", "media": "photo", "latitude": "0", "id": "128963548", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:23:27", "license": "1", "title": "piled debris", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/128963552_6b6d944326_o.jpg", "secret": "6b6d944326", "media": "photo", "latitude": "0", "id": "128963552", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:23:36", "license": "1", "title": "missing third story", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/128963559_8d6a0f0ab6_o.jpg", "secret": "8d6a0f0ab6", "media": "photo", "latitude": "0", "id": "128963559", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:24:46", "license": "1", "title": "tree on house", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/128963562_f29c56371a_o.jpg", "secret": "f29c56371a", "media": "photo", "latitude": "0", "id": "128963562", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:25:10", "license": "1", "title": "apartments", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/128963572_b2f6b3ee8b_o.jpg", "secret": "b2f6b3ee8b", "media": "photo", "latitude": "0", "id": "128963572", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:26:02", "license": "1", "title": "missing roof and pile of bricks", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/128963579_f04252a734_o.jpg", "secret": "f04252a734", "media": "photo", "latitude": "0", "id": "128963579", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:26:49", "license": "1", "title": "sad cars", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/128963584_79f6375365_o.jpg", "secret": "79f6375365", "media": "photo", "latitude": "0", "id": "128963584", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:27:09", "license": "1", "title": "house with no windows and a sad tree", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/128963589_da9be6de81_o.jpg", "secret": "da9be6de81", "media": "photo", "latitude": "0", "id": "128963589", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:31:51", "license": "1", "title": "bent sign", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/128963597_b39321711a_o.jpg", "secret": "b39321711a", "media": "photo", "latitude": "0", "id": "128963597", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:38:26", "license": "1", "title": "bent fence", "text": "", "album_id": "72057594107766165", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/128963602_431dfbdb34_o.jpg", "secret": "431dfbdb34", "media": "photo", "latitude": "0", "id": "128963602", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-04-14 18:43:08", "license": "1", "title": "tree down by City Hall", "text": "", "album_id": "72057594107766165", "longitude": "-91.530029", "url_o": "https://farm1.staticflickr.com/50/128963612_516e294770_o.jpg", "secret": "516e294770", "media": "photo", "latitude": "41.660160", "id": "128963612", "tags": "2006 iowa iowacity tornado"}, {"datetaken": "2006-10-13 16:46:32", "license": "4", "title": "Frontera Grill", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/121/271652362_11ce99aa55_o.jpg", "secret": "11ce99aa55", "media": "photo", "latitude": "0", "id": "271652362", "tags": "chicago mexicanfood rickbayless fronteragrill"}, {"datetaken": "2006-10-13 17:22:15", "license": "4", "title": "Jessica and Me", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/271652585_8842f8ef12_o.jpg", "secret": "8842f8ef12", "media": "photo", "latitude": "0", "id": "271652585", "tags": "food chicago mexicanfood margaritas rickbayless fronteragrill"}, {"datetaken": "2006-10-13 17:23:14", "license": "4", "title": "Damiata Passion and Paw Paw Margaritas", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/118/271652727_3d4eacb170_o.jpg", "secret": "3d4eacb170", "media": "photo", "latitude": "0", "id": "271652727", "tags": "food chicago mexicanfood margaritas rickbayless fronteragrill"}, {"datetaken": "2006-10-13 17:33:02", "license": "4", "title": "Trio, Trio, Trio", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/271652824_2cb7da83ce_o.jpg", "secret": "2cb7da83ce", "media": "photo", "latitude": "0", "id": "271652824", "tags": "food chicago mexicanfood rickbayless fronteragrill"}, {"datetaken": "2006-10-13 17:57:04", "license": "4", "title": "Sope Ahogado", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/271653033_590119e3d3_o.jpg", "secret": "590119e3d3", "media": "photo", "latitude": "0", "id": "271653033", "tags": "food chicago mexicanfood rickbayless fronteragrill"}, {"datetaken": "2006-10-13 17:57:09", "license": "4", "title": "Puerco en Salsa Verde", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/117/271653233_b4dcf6de87_o.jpg", "secret": "b4dcf6de87", "media": "photo", "latitude": "0", "id": "271653233", "tags": "food chicago mexicanfood rickbayless fronteragrill"}, {"datetaken": "2006-10-14 10:34:09", "license": "4", "title": "Central Motor", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/120/271654925_08a43fb094_o.jpg", "secret": "08a43fb094", "media": "photo", "latitude": "0", "id": "271654925", "tags": "toledo"}, {"datetaken": "2006-10-14 10:35:39", "license": "4", "title": "Gbenga's Basement", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/271655036_32d2cff65a_o.jpg", "secret": "32d2cff65a", "media": "photo", "latitude": "0", "id": "271655036", "tags": "gbengaajilore lesterdasher"}, {"datetaken": "2006-10-14 10:36:26", "license": "4", "title": "Laundry Chute Exit", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/271655435_fd651249be_o.jpg", "secret": "fd651249be", "media": "photo", "latitude": "0", "id": "271655435", "tags": "toledo"}, {"datetaken": "2006-10-14 10:37:09", "license": "4", "title": "Laundry Chute", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/119/271655099_9cfc70b3ff_o.jpg", "secret": "9cfc70b3ff", "media": "photo", "latitude": "0", "id": "271655099", "tags": "toledo"}, {"datetaken": "2006-10-14 10:37:37", "license": "4", "title": "Laundry Chute", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/271655315_9441372353_o.jpg", "secret": "9441372353", "media": "photo", "latitude": "0", "id": "271655315", "tags": "toledo"}, {"datetaken": "2006-10-14 10:38:03", "license": "4", "title": "Gomez", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/103/271655591_a2bc74f8b9_o.jpg", "secret": "a2bc74f8b9", "media": "photo", "latitude": "0", "id": "271655591", "tags": "toledo gomez"}, {"datetaken": "2006-10-14 11:02:53", "license": "4", "title": "University Hall", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/112/271655869_c069c38546_o.jpg", "secret": "c069c38546", "media": "photo", "latitude": "0", "id": "271655869", "tags": "toledo"}, {"datetaken": "2006-10-14 11:08:59", "license": "4", "title": "Professor Ajilore's Office", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/271656022_4cc64204b4_o.jpg", "secret": "4cc64204b4", "media": "photo", "latitude": "0", "id": "271656022", "tags": "toledo gbengaajilore"}, {"datetaken": "2006-10-14 11:13:51", "license": "4", "title": "Ash Trays!", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/271655960_3bd07791d2_o.jpg", "secret": "3bd07791d2", "media": "photo", "latitude": "0", "id": "271655960", "tags": "toledo"}, {"datetaken": "2006-10-14 11:14:36", "license": "4", "title": "University of Toledo", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/271655768_e660f3dda7_o.jpg", "secret": "e660f3dda7", "media": "photo", "latitude": "0", "id": "271655768", "tags": "toledo"}, {"datetaken": "2006-10-14 11:15:48", "license": "4", "title": "Medieval Warfare", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/109/271656296_fc04af927d_o.jpg", "secret": "fc04af927d", "media": "photo", "latitude": "0", "id": "271656296", "tags": "toledo"}, {"datetaken": "2006-10-14 11:53:30", "license": "4", "title": "Sarah, Gbenga, Julia", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/271656504_f5eb9dad18_o.jpg", "secret": "f5eb9dad18", "media": "photo", "latitude": "0", "id": "271656504", "tags": "toledo"}, {"datetaken": "2006-10-14 13:06:39", "license": "4", "title": "Chihuly", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/121/271656844_5d9a8e129a_o.jpg", "secret": "5d9a8e129a", "media": "photo", "latitude": "0", "id": "271656844", "tags": "toledo"}, {"datetaken": "2006-10-14 13:06:48", "license": "4", "title": "Museum of Glass", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/120/271656608_7f8e17ca16_o.jpg", "secret": "7f8e17ca16", "media": "photo", "latitude": "0", "id": "271656608", "tags": "toledo"}, {"datetaken": "2006-10-14 13:07:50", "license": "4", "title": "Museum of Glass", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/112/271656759_97f6522d2f_o.jpg", "secret": "97f6522d2f", "media": "photo", "latitude": "0", "id": "271656759", "tags": "toledo"}, {"datetaken": "2006-10-14 13:10:13", "license": "4", "title": "Libbey Punch Bowl", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/271656997_98e7f6d959_o.jpg", "secret": "98e7f6d959", "media": "photo", "latitude": "0", "id": "271656997", "tags": "toledo"}, {"datetaken": "2006-10-14 13:10:25", "license": "4", "title": "Jardin sous le pluie", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/271657141_fc639ce737_o.jpg", "secret": "fc639ce737", "media": "photo", "latitude": "0", "id": "271657141", "tags": "toledo"}, {"datetaken": "2006-10-14 13:12:35", "license": "4", "title": "Victorian Cameo Glass Vases with Girls Dancing", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/111/271657250_9141a3afe6_o.jpg", "secret": "9141a3afe6", "media": "photo", "latitude": "0", "id": "271657250", "tags": "toledo"}, {"datetaken": "2006-10-14 13:30:12", "license": "4", "title": "Gbenga's House", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/93/271653692_37612a1e8c_o.jpg", "secret": "37612a1e8c", "media": "photo", "latitude": "0", "id": "271653692", "tags": "toledo"}, {"datetaken": "2006-10-14 13:30:21", "license": "4", "title": "Gbenga's House", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/271653474_31e637a206_o.jpg", "secret": "31e637a206", "media": "photo", "latitude": "0", "id": "271653474", "tags": "toledo"}, {"datetaken": "2006-10-14 13:34:58", "license": "4", "title": "Gbenga, Sarah, and Me", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/105/271653770_d72d911288_o.jpg", "secret": "d72d911288", "media": "photo", "latitude": "0", "id": "271653770", "tags": "toledo eugeneerickim gbengaajilore sarahschoellkopf"}, {"datetaken": "2006-10-14 13:36:15", "license": "4", "title": "Cal Grads", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/271654105_cca6238e8f_o.jpg", "secret": "cca6238e8f", "media": "photo", "latitude": "0", "id": "271654105", "tags": "toledo gbengaajilore sarahschoellkopf"}, {"datetaken": "2006-10-14 13:40:46", "license": "4", "title": "Fall Colors", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/117/271654448_c4f41c1cdf_o.jpg", "secret": "c4f41c1cdf", "media": "photo", "latitude": "0", "id": "271654448", "tags": "toledo"}, {"datetaken": "2006-10-14 13:41:55", "license": "4", "title": "Fall Trees", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/271654609_ee8b951c65_o.jpg", "secret": "ee8b951c65", "media": "photo", "latitude": "0", "id": "271654609", "tags": "toledo"}, {"datetaken": "2006-10-14 13:42:02", "license": "4", "title": "Fall Colors", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/271654789_7f024a3eea_o.jpg", "secret": "7f024a3eea", "media": "photo", "latitude": "0", "id": "271654789", "tags": "toledo"}, {"datetaken": "2006-10-14 16:13:54", "license": "4", "title": "Aaron and Owen", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/113/271657453_1d7dca6d7a_o.jpg", "secret": "1d7dca6d7a", "media": "photo", "latitude": "0", "id": "271657453", "tags": "saline aaronliepman owenliepman"}, {"datetaken": "2006-10-14 16:57:22", "license": "4", "title": "Teeth Brushing Party!", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/115/271657606_8e91e847a2_o.jpg", "secret": "8e91e847a2", "media": "photo", "latitude": "0", "id": "271657606", "tags": "saline aaronliepman owenliepman claireliepman"}, {"datetaken": "2006-10-14 16:57:38", "license": "4", "title": "Teeth Brushing Party!", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/102/271657814_4b5f7e81ed_o.jpg", "secret": "4b5f7e81ed", "media": "photo", "latitude": "0", "id": "271657814", "tags": "saline aaronliepman owenliepman claireliepman"}, {"datetaken": "2006-10-14 16:57:50", "license": "4", "title": "Teeth Brushing Party!", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/271657917_b67b1b25da_o.jpg", "secret": "b67b1b25da", "media": "photo", "latitude": "0", "id": "271657917", "tags": "saline aaronliepman owenliepman claireliepman"}, {"datetaken": "2006-10-14 16:57:53", "license": "4", "title": "Teeth Brushing Party!", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/114/271658025_322fdd6d80_o.jpg", "secret": "322fdd6d80", "media": "photo", "latitude": "0", "id": "271658025", "tags": "saline aaronliepman owenliepman claireliepman"}, {"datetaken": "2006-10-14 16:58:07", "license": "4", "title": "Teeth Brushing Party!", "text": "", "album_id": "72157594331657010", "longitude": "0", "url_o": "https://farm1.staticflickr.com/108/271658164_61e5a2d56a_o.jpg", "secret": "61e5a2d56a", "media": "photo", "latitude": "0", "id": "271658164", "tags": "saline aaronliepman owenliepman claireliepman"}, {"datetaken": "2006-11-29 17:23:35", "license": "6", "title": "Christmas Story House", "text": "", "album_id": "72157594425735153", "longitude": "-81.687330", "url_o": "https://farm1.staticflickr.com/141/325676942_ae1b39c5bd_o.jpg", "secret": "ae1b39c5bd", "media": "photo", "latitude": "41.468843", "id": "325676942", "tags": "cleveland powershot achristmasstory a620 christmasstory"}, {"datetaken": "2006-11-29 17:23:54", "license": "6", "title": "Christmas Story House", "text": "", "album_id": "72157594425735153", "longitude": "-81.687330", "url_o": "https://farm1.staticflickr.com/143/325678670_01b489a4b5_o.jpg", "secret": "01b489a4b5", "media": "photo", "latitude": "41.468843", "id": "325678670", "tags": "cleveland powershot achristmasstory a620 christmasstory"}, {"datetaken": "2006-11-29 17:24:05", "license": "6", "title": "Steelyard", "text": "", "album_id": "72157594425735153", "longitude": "-81.687330", "url_o": "https://farm1.staticflickr.com/141/325680417_560dee0e1c_o.jpg", "secret": "560dee0e1c", "media": "photo", "latitude": "41.468843", "id": "325680417", "tags": "cleveland powershot achristmasstory a620 christmasstory"}, {"datetaken": "2006-11-29 17:24:39", "license": "6", "title": "Christmas Story house", "text": "", "album_id": "72157594425735153", "longitude": "-81.687330", "url_o": "https://farm1.staticflickr.com/143/325682732_35b2e707e2_o.jpg", "secret": "35b2e707e2", "media": "photo", "latitude": "41.468843", "id": "325682732", "tags": "cleveland powershot achristmasstory a620 christmasstory"}, {"datetaken": "2006-11-29 17:24:51", "license": "6", "title": "Christmas Story house side", "text": "", "album_id": "72157594425735153", "longitude": "-81.687330", "url_o": "https://farm1.staticflickr.com/140/325684965_f3f8c9ad70_o.jpg", "secret": "f3f8c9ad70", "media": "photo", "latitude": "41.468843", "id": "325684965", "tags": "cleveland powershot achristmasstory a620 christmasstory"}, {"datetaken": "2006-11-29 17:25:04", "license": "6", "title": "Christmas Story street", "text": "", "album_id": "72157594425735153", "longitude": "-81.687330", "url_o": "https://farm1.staticflickr.com/137/325687073_bfb07bb0b0_o.jpg", "secret": "bfb07bb0b0", "media": "photo", "latitude": "41.468843", "id": "325687073", "tags": "cleveland powershot achristmasstory a620 christmasstory"}, {"datetaken": "2006-11-29 17:25:17", "license": "6", "title": "A Christmas Story street", "text": "", "album_id": "72157594425735153", "longitude": "-81.687330", "url_o": "https://farm1.staticflickr.com/144/325688992_5e46d58060_o.jpg", "secret": "5e46d58060", "media": "photo", "latitude": "41.468843", "id": "325688992", "tags": "cleveland powershot achristmasstory a620 christmasstory"}, {"datetaken": "2006-11-29 17:28:29", "license": "6", "title": "A Major Award", "text": "", "album_id": "72157594425735153", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/325690770_ce4b12cc1a_o.jpg", "secret": "ce4b12cc1a", "media": "photo", "latitude": "0", "id": "325690770", "tags": "cleveland powershot achristmasstory a620 christmasstory majoraward"}, {"datetaken": "2006-11-29 17:46:52", "license": "6", "title": "", "text": "", "album_id": "72157594425735153", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/325692399_01097a300a_o.jpg", "secret": "01097a300a", "media": "photo", "latitude": "0", "id": "325692399", "tags": "cleveland powershot a620"}, {"datetaken": "2006-11-29 17:48:33", "license": "6", "title": "", "text": "", "album_id": "72157594425735153", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/325693893_4e86ddc732_o.jpg", "secret": "4e86ddc732", "media": "photo", "latitude": "0", "id": "325693893", "tags": "cleveland powershot a620"}, {"datetaken": "2006-11-29 18:01:20", "license": "6", "title": "Rock Hall of Fame Marker", "text": "", "album_id": "72157594425735153", "longitude": "-81.694625", "url_o": "https://farm1.staticflickr.com/135/325694941_f69fc6c9d1_o.jpg", "secret": "f69fc6c9d1", "media": "photo", "latitude": "41.508448", "id": "325694941", "tags": "cleveland powershot rockhall historicmarker rockandrollhalloffame a620"}, {"datetaken": "2006-11-29 20:46:38", "license": "6", "title": "Rock and Roll Hall of Fame", "text": "", "album_id": "72157594425735153", "longitude": "-81.694625", "url_o": "https://farm1.staticflickr.com/135/325675509_60ce146f4d_o.jpg", "secret": "60ce146f4d", "media": "photo", "latitude": "41.508448", "id": "325675509", "tags": "cleveland powershot rockhall rockandrollhalloffame a620"}, {"datetaken": "2006-11-29 20:56:23", "license": "6", "title": "Rock Hall detail", "text": "", "album_id": "72157594425735153", "longitude": "-81.694625", "url_o": "https://farm1.staticflickr.com/136/325702801_c0d22a9cc7_o.jpg", "secret": "c0d22a9cc7", "media": "photo", "latitude": "41.508448", "id": "325702801", "tags": "cleveland powershot rockhall rockandrollhalloffame a620"}, {"datetaken": "2005-03-18 08:08:23", "license": "4", "title": "Windsor", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6788457_852f6ae9ee_o.jpg", "secret": "852f6ae9ee", "media": "photo", "latitude": "0", "id": "6788457", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 08:16:15", "license": "4", "title": "Windsor", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6788456_b39b8a16f1_o.jpg", "secret": "b39b8a16f1", "media": "photo", "latitude": "0", "id": "6788456", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 08:16:51", "license": "4", "title": "Swan Nest", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6788459_230fd9bd4a_o.jpg", "secret": "230fd9bd4a", "media": "photo", "latitude": "0", "id": "6788459", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 08:18:13", "license": "4", "title": "Swan Nest", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6788460_515c13b319_o.jpg", "secret": "515c13b319", "media": "photo", "latitude": "0", "id": "6788460", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 08:21:06", "license": "4", "title": "TheVicar", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6788437_abd1b9474d_o.jpg", "secret": "abd1b9474d", "media": "photo", "latitude": "0", "id": "6788437", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 08:22:33", "license": "4", "title": "The First Lock", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6788435_9d57dbd66e_o.jpg", "secret": "9d57dbd66e", "media": "photo", "latitude": "0", "id": "6788435", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 08:34:20", "license": "4", "title": "Sign", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6788451_ac7bfa1a00_o.jpg", "secret": "ac7bfa1a00", "media": "photo", "latitude": "0", "id": "6788451", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 08:35:13", "license": "4", "title": "Windsor Castle", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6788453_31d5ccf4db_o.jpg", "secret": "31d5ccf4db", "media": "photo", "latitude": "0", "id": "6788453", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 08:39:26", "license": "4", "title": "Swan", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6788442_e360e3ffb9_o.jpg", "secret": "e360e3ffb9", "media": "photo", "latitude": "0", "id": "6788442", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 08:50:41", "license": "4", "title": "Sunset at Marlow", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6788461_372fb5c194_o.jpg", "secret": "372fb5c194", "media": "photo", "latitude": "0", "id": "6788461", "tags": "england canalboat travel survivorisland sunset sii deleteme"}, {"datetaken": "2005-03-18 08:52:42", "license": "4", "title": "Swans", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6788445_cda5f490f1_o.jpg", "secret": "cda5f490f1", "media": "photo", "latitude": "0", "id": "6788445", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 08:54:49", "license": "4", "title": "Sign", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6788458_7e4132e3ec_o.jpg", "secret": "7e4132e3ec", "media": "photo", "latitude": "0", "id": "6788458", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:01:42", "license": "4", "title": "Geese", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6788464_d72a7fc81b_o.jpg", "secret": "d72a7fc81b", "media": "photo", "latitude": "0", "id": "6788464", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:06:18", "license": "4", "title": "Goose", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6788470_204fcd9ec3_o.jpg", "secret": "204fcd9ec3", "media": "photo", "latitude": "0", "id": "6788470", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:06:44", "license": "4", "title": "Geese", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6788468_547c00434e_o.jpg", "secret": "547c00434e", "media": "photo", "latitude": "0", "id": "6788468", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:07:20", "license": "4", "title": "Goose", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6788473_bd0643843b_o.jpg", "secret": "bd0643843b", "media": "photo", "latitude": "0", "id": "6788473", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:07:54", "license": "4", "title": "Goose", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6788475_a695ab82c5_o.jpg", "secret": "a695ab82c5", "media": "photo", "latitude": "0", "id": "6788475", "tags": "england canalboat travel window goose kitchen"}, {"datetaken": "2005-03-18 09:11:52", "license": "4", "title": "Hurley", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6788481_fd3d22a64c_o.jpg", "secret": "fd3d22a64c", "media": "photo", "latitude": "0", "id": "6788481", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:12:19", "license": "4", "title": "Pub", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6788486_5c16c2533c_o.jpg", "secret": "5c16c2533c", "media": "photo", "latitude": "0", "id": "6788486", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:12:44", "license": "4", "title": "Beer", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6788487_afab6f7a6c_o.jpg", "secret": "afab6f7a6c", "media": "photo", "latitude": "0", "id": "6788487", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:16:07", "license": "4", "title": "Coin-operated computer", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6788489_40ab89b3bc_o.jpg", "secret": "40ab89b3bc", "media": "photo", "latitude": "0", "id": "6788489", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:21:17", "license": "4", "title": "Marlow", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6788491_5a8b6d8f9b_o.jpg", "secret": "5a8b6d8f9b", "media": "photo", "latitude": "0", "id": "6788491", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:22:37", "license": "4", "title": "Canal Boats", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6788494_1d04c2d090_o.jpg", "secret": "1d04c2d090", "media": "photo", "latitude": "0", "id": "6788494", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:24:12", "license": "4", "title": "Sign", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6788501_8286edf888_o.jpg", "secret": "8286edf888", "media": "photo", "latitude": "0", "id": "6788501", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:26:49", "license": "4", "title": "Sitting on the roof", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/6788502_a19fa6a9ea_o.jpg", "secret": "a19fa6a9ea", "media": "photo", "latitude": "0", "id": "6788502", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:28:09", "license": "4", "title": "Sign", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6788503_01d3e37af7_o.jpg", "secret": "01d3e37af7", "media": "photo", "latitude": "0", "id": "6788503", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:35:17", "license": "4", "title": "Reading", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6788505_20b1050f52_o.jpg", "secret": "20b1050f52", "media": "photo", "latitude": "0", "id": "6788505", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:36:08", "license": "4", "title": "Tea Time", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6788507_2ebcc811af_o.jpg", "secret": "2ebcc811af", "media": "photo", "latitude": "0", "id": "6788507", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:37:09", "license": "4", "title": "Sunning", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6788508_965397b495_o.jpg", "secret": "965397b495", "media": "photo", "latitude": "0", "id": "6788508", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:38:04", "license": "4", "title": "Pangborne", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6788511_818ba9fc1a_o.jpg", "secret": "818ba9fc1a", "media": "photo", "latitude": "0", "id": "6788511", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:40:50", "license": "4", "title": "Goring", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6788512_f46c929362_o.jpg", "secret": "f46c929362", "media": "photo", "latitude": "0", "id": "6788512", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:41:17", "license": "4", "title": "Lilacs", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6788513_a88adaf53b_o.jpg", "secret": "a88adaf53b", "media": "photo", "latitude": "0", "id": "6788513", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:41:39", "license": "4", "title": "House, Goring", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6788514_a02599f8b3_o.jpg", "secret": "a02599f8b3", "media": "photo", "latitude": "0", "id": "6788514", "tags": "england canalboat travel window"}, {"datetaken": "2005-03-18 09:43:38", "license": "4", "title": "Grave Goring", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6788515_f488a0c303_o.jpg", "secret": "f488a0c303", "media": "photo", "latitude": "0", "id": "6788515", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:46:52", "license": "4", "title": "Swan Family", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6788522_8b5849c83d_o.jpg", "secret": "8b5849c83d", "media": "photo", "latitude": "0", "id": "6788522", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:47:32", "license": "4", "title": "Swan Mom", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6788523_a0c07c8e5b_o.jpg", "secret": "a0c07c8e5b", "media": "photo", "latitude": "0", "id": "6788523", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:48:09", "license": "4", "title": "Swan Mom", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6788524_3f6f382cd5_o.jpg", "secret": "3f6f382cd5", "media": "photo", "latitude": "0", "id": "6788524", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:49:31", "license": "4", "title": "Butty", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6788527_8b3f578eac_o.jpg", "secret": "8b3f578eac", "media": "photo", "latitude": "0", "id": "6788527", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:50:02", "license": "4", "title": "The Vicar", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6788528_2205072bb0_o.jpg", "secret": "2205072bb0", "media": "photo", "latitude": "0", "id": "6788528", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:51:26", "license": "4", "title": "Duck Family", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6788529_ed1eaddd73_o.jpg", "secret": "ed1eaddd73", "media": "photo", "latitude": "0", "id": "6788529", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:52:44", "license": "4", "title": "Oxford", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6788531_b780fe444c_o.jpg", "secret": "b780fe444c", "media": "photo", "latitude": "0", "id": "6788531", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 09:53:05", "license": "4", "title": "Oxford", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6788534_559230fde4_o.jpg", "secret": "559230fde4", "media": "photo", "latitude": "0", "id": "6788534", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 10:26:45", "license": "4", "title": "Oxford", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6790232_a28c5e5cab_o.jpg", "secret": "a28c5e5cab", "media": "photo", "latitude": "0", "id": "6790232", "tags": "england canalboat travel"}, {"datetaken": "2005-03-18 11:12:48", "license": "4", "title": "Geese", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6792670_fd8077e314_o.jpg", "secret": "fd8077e314", "media": "photo", "latitude": "0", "id": "6792670", "tags": "england canalboat travel windows"}, {"datetaken": "2005-03-18 11:24:55", "license": "4", "title": "Cemetery, Clifton", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6793674_75b57e46ec_o.jpg", "secret": "75b57e46ec", "media": "photo", "latitude": "0", "id": "6793674", "tags": "england clifton thatchedcottage travel"}, {"datetaken": "2005-03-18 11:27:02", "license": "4", "title": "Clifton", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6793675_c0cac83b54_o.jpg", "secret": "c0cac83b54", "media": "photo", "latitude": "0", "id": "6793675", "tags": "england clifton thatchedcottage travel"}, {"datetaken": "2005-03-18 11:30:44", "license": "4", "title": "Clifton", "text": "", "album_id": "169315", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6793676_2a70c94601_o.jpg", "secret": "2a70c94601", "media": "photo", "latitude": "0", "id": "6793676", "tags": "england clifton thatchedcottage travel"}, {"datetaken": "2006-06-17 10:16:05", "license": "1", "title": "View from Ribbleshead Station", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/169427373_4f5745e862_o.jpg", "secret": "4f5745e862", "media": "photo", "latitude": "0", "id": "169427373", "tags": "hiking yorkshire poppy poppies dales whernside ribbleshead"}, {"datetaken": "2006-06-17 11:03:19", "license": "1", "title": "Pen-Y-Ghent", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/169167498_ea08fc443e_o.jpg", "secret": "ea08fc443e", "media": "photo", "latitude": "0", "id": "169167498", "tags": "grass rocks pavement yorkshire limestone highup dales 3peaks penyghent ribblehead printforsale"}, {"datetaken": "2006-06-17 11:12:19", "license": "1", "title": "Limestone Pavement, Ribbleshead", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/169428117_1b77128cd5_o.jpg", "secret": "1b77128cd5", "media": "photo", "latitude": "0", "id": "169428117", "tags": "hiking yorkshire dent dales whernside ribbleshead"}, {"datetaken": "2006-06-17 11:37:13", "license": "1", "title": "Ribblehead Viaduct", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/169428316_9b27ef5836_o.jpg", "secret": "9b27ef5836", "media": "photo", "latitude": "0", "id": "169428316", "tags": "walking hiking yorkshire railway dent viaduct dales settle ingleborough ribblehead ribbleshead carsile printforsale"}, {"datetaken": "2006-06-17 11:47:40", "license": "1", "title": "Ingleborough", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/169427558_d47c3bf877_o.jpg", "secret": "d47c3bf877", "media": "photo", "latitude": "0", "id": "169427558", "tags": "gate hiking yorkshire dent dales ingleborough whernside ribbleshead"}, {"datetaken": "2006-06-17 11:57:12", "license": "1", "title": "View from Whenside foothills to Ingleborough", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/169427790_1c2b90226b_o.jpg", "secret": "1c2b90226b", "media": "photo", "latitude": "0", "id": "169427790", "tags": "tree grass hiking path yorkshire dent dales ingleborough whernside ribbleshead"}, {"datetaken": "2006-06-17 12:20:07", "license": "1", "title": "Aquaduct", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/169427510_b030f8c67d_o.jpg", "secret": "b030f8c67d", "media": "photo", "latitude": "0", "id": "169427510", "tags": "hiking yorkshire dent dales whernside ribbleshead"}, {"datetaken": "2006-06-17 13:00:20", "license": "1", "title": "View from Whernside foothills to Ingleborough", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/169428285_eff995eaa9_o.jpg", "secret": "eff995eaa9", "media": "photo", "latitude": "0", "id": "169428285", "tags": "hiking path yorkshire rocky dent dales ingleborough whernside ribbleshead"}, {"datetaken": "2006-06-17 13:48:59", "license": "1", "title": "View east from Whenside foothills", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/169427614_b69770412f_o.jpg", "secret": "b69770412f", "media": "photo", "latitude": "0", "id": "169427614", "tags": "blue sky grass hiking yorkshire wideangle dent dales whernside ribbleshead"}, {"datetaken": "2006-06-17 14:31:25", "license": "1", "title": "Decending into Dent Village", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/169427746_f717a75b24_o.jpg", "secret": "f717a75b24", "media": "photo", "latitude": "0", "id": "169427746", "tags": "hiking yorkshire dent dales whernside ribbleshead"}, {"datetaken": "2006-06-17 14:34:15", "license": "1", "title": "Deep-Dale", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/169427705_85b7378c30_o.jpg", "secret": "85b7378c30", "media": "photo", "latitude": "0", "id": "169427705", "tags": "hiking yorkshire dent dales whernside ribbleshead"}, {"datetaken": "2006-06-17 15:26:04", "license": "1", "title": "Dent", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/169427672_e03a82f656_o.jpg", "secret": "e03a82f656", "media": "photo", "latitude": "0", "id": "169427672", "tags": "houses village hiking yorkshire dent cobbles dales whernside"}, {"datetaken": "2006-06-17 15:30:32", "license": "1", "title": "I NEED BEER!", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/169428348_802e983538_o.jpg", "secret": "802e983538", "media": "photo", "latitude": "0", "id": "169428348", "tags": "beer amber hiking yorkshire dent refreshing dales realale whernside 10mm ribbleshead brewary dentdale ohsonice sothiswentstraighttomyhead idnoteatenallday uberwideangle"}, {"datetaken": "2006-06-17 16:27:47", "license": "1", "title": "Farmhouse, Dent", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/169428208_6bd465938b_o.jpg", "secret": "6bd465938b", "media": "photo", "latitude": "0", "id": "169428208", "tags": "farmhouse gate hiking path farm yorkshire meadow dent dales tack buttercups whernside dulux ribbleshead printforsale dentdale"}, {"datetaken": "2006-06-17 16:50:18", "license": "1", "title": "Dent Station", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/169428012_c9b5f4f129_o.jpg", "secret": "c9b5f4f129", "media": "photo", "latitude": "0", "id": "169428012", "tags": "hiking yorkshire dent dales whernside ribbleshead"}, {"datetaken": "2006-06-17 16:53:58", "license": "1", "title": "Dent-Dale", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/169427835_484f005fcf_o.jpg", "secret": "484f005fcf", "media": "photo", "latitude": "0", "id": "169427835", "tags": "road grass stone wall countryside moody hiking yorkshire dent dales whernside"}, {"datetaken": "2006-06-17 16:56:37", "license": "1", "title": "Dent-Dale", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/169427903_cb6127db69_o.jpg", "secret": "cb6127db69", "media": "photo", "latitude": "0", "id": "169427903", "tags": "road bw ir countryside hiking yorkshire dent infrared dales whernside dentdale 123bw"}, {"datetaken": "2006-06-17 17:03:35", "license": "1", "title": "Farmhouse, Cowsgill", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/169427446_5d109c1b9b_o.jpg", "secret": "5d109c1b9b", "media": "photo", "latitude": "0", "id": "169427446", "tags": "bw pine farmhouse forest hiking farm yorkshire dent dales whernside ribbleshead cowsgill"}, {"datetaken": "2006-06-17 17:14:59", "license": "1", "title": "Sleepers", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/169428076_6699c7d71a_o.jpg", "secret": "6699c7d71a", "media": "photo", "latitude": "0", "id": "169428076", "tags": "abstract grass hiking yorkshire dent dales sleepers whernside printforsale"}, {"datetaken": "2006-06-17 17:15:35", "license": "1", "title": "Daisies", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/169428149_d6e4a8498d_o.jpg", "secret": "d6e4a8498d", "media": "photo", "latitude": "0", "id": "169428149", "tags": "daisies moody hiking yorkshire dent dales oxeye whernside ribbleshead printforsale greatcoum"}, {"datetaken": "2006-06-17 17:17:52", "license": "1", "title": "Dent Station", "text": "", "album_id": "72157594168841526", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/169427941_496d9073a0_o.jpg", "secret": "496d9073a0", "media": "photo", "latitude": "0", "id": "169427941", "tags": "station train waiting hiking yorkshire tracks wideangle line dent dales whernside 10mm"}, {"datetaken": "2006-09-10 14:56:35", "license": "1", "title": "Field of vision", "text": "", "album_id": "72157594335219262", "longitude": "0", "url_o": "https://farm1.staticflickr.com/121/273652752_76b4c8f3c5_o.jpg", "secret": "0aa18372a3", "media": "photo", "latitude": "0", "id": "273652752", "tags": "travel field train quebec memnto"}, {"datetaken": "2006-09-10 15:29:08", "license": "1", "title": "Hours of travel and still going", "text": "", "album_id": "72157594335219262", "longitude": "0", "url_o": "https://farm1.staticflickr.com/111/273652763_83a23ccbb1_o.jpg", "secret": "e8f62775e7", "media": "photo", "latitude": "0", "id": "273652763", "tags": "travel portrait train memnto"}, {"datetaken": "2006-09-11 07:27:20", "license": "1", "title": "La Vielle Montreal", "text": "", "album_id": "72157594335219262", "longitude": "0", "url_o": "https://farm1.staticflickr.com/104/273652776_1bed7a3724_o.jpg", "secret": "a37afe5b2f", "media": "photo", "latitude": "0", "id": "273652776", "tags": "road city travel quebec montreal oldmontreal memnto"}, {"datetaken": "2006-09-11 07:50:43", "license": "1", "title": "Along the river| Old clock tower", "text": "", "album_id": "72157594335219262", "longitude": "0", "url_o": "https://farm1.staticflickr.com/104/273652789_c5588b00b9_o.jpg", "secret": "4acf5a45e0", "media": "photo", "latitude": "0", "id": "273652789", "tags": "travel quebec montreal clocktower oldmontreal stlawrenceriver memnto"}, {"datetaken": "2006-09-11 07:53:02", "license": "1", "title": "Along the river| Old clock tower", "text": "", "album_id": "72157594335219262", "longitude": "0", "url_o": "https://farm1.staticflickr.com/102/273652800_d7ec159355_o.jpg", "secret": "f8c8ed2b1a", "media": "photo", "latitude": "0", "id": "273652800", "tags": "travel quebec montreal clocktower oldmontreal stlawrenceriver memnto"}, {"datetaken": "2006-09-11 07:56:12", "license": "1", "title": "Along the river| Old clock tower", "text": "", "album_id": "72157594335219262", "longitude": "0", "url_o": "https://farm1.staticflickr.com/116/273652812_013b82e01f_o.jpg", "secret": "04d1e2bbdc", "media": "photo", "latitude": "0", "id": "273652812", "tags": "travel quebec montreal clocktower oldmontreal stlawrenceriver memnto"}, {"datetaken": "2006-09-11 08:01:29", "license": "1", "title": "Along the river| Marche Bonsecours de Montreal", "text": "", "album_id": "72157594335219262", "longitude": "0", "url_o": "https://farm1.staticflickr.com/105/273652832_9cf4197210_o.jpg", "secret": "abfe8e4448", "media": "photo", "latitude": "0", "id": "273652832", "tags": "travel quebec montreal oldmontreal stlawrenceriver marchebonsecours memnto"}, {"datetaken": "2006-09-11 08:03:05", "license": "1", "title": "Along the river| Terraces", "text": "", "album_id": "72157594335219262", "longitude": "0", "url_o": "https://farm1.staticflickr.com/112/273652842_b6a224f079_o.jpg", "secret": "19d75fa977", "media": "photo", "latitude": "0", "id": "273652842", "tags": "travel water quebec montreal oldmontreal stlawrenceriver memnto"}, {"datetaken": "2006-09-11 08:05:03", "license": "1", "title": "Along the river| Happy to be here, too!", "text": "", "album_id": "72157594335219262", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/273652856_5e24d01165_o.jpg", "secret": "f333e6269c", "media": "photo", "latitude": "0", "id": "273652856", "tags": "travel quebec montreal oldmontreal stlawrenceriver marchebonsecours memnto"}, {"datetaken": "2006-09-11 08:09:10", "license": "1", "title": "Along the river| Marche Bonsecours de Montreal", "text": "", "album_id": "72157594335219262", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/273652866_a9d32e38cc_o.jpg", "secret": "af84522385", "media": "photo", "latitude": "0", "id": "273652866", "tags": "travel quebec montreal oldmontreal stlawrenceriver marchebonsecours memnto"}, {"datetaken": "2006-09-11 08:09:40", "license": "1", "title": "Along the river| Self portrait", "text": "", "album_id": "72157594335219262", "longitude": "0", "url_o": "https://farm1.staticflickr.com/108/273652875_eb3c0c70aa_o.jpg", "secret": "0b2011fd03", "media": "photo", "latitude": "0", "id": "273652875", "tags": "travel portrait quebec montreal oldmontreal stlawrenceriver marchebonsecours memnto"}, {"datetaken": "2006-09-11 08:12:44", "license": "1", "title": "Along the rail", "text": "", "album_id": "72157594335219262", "longitude": "0", "url_o": "https://farm1.staticflickr.com/100/273652890_a48233948b_o.jpg", "secret": "0966da9c3f", "media": "photo", "latitude": "0", "id": "273652890", "tags": "travel quebec montreal oldmontreal memnto"}, {"datetaken": "2006-09-11 09:05:04", "license": "1", "title": "Artiste at work", "text": "", "album_id": "72157594335219262", "longitude": "0", "url_o": "https://farm1.staticflickr.com/104/273652934_175c7c8b3a_o.jpg", "secret": "bb67b735dc", "media": "photo", "latitude": "0", "id": "273652934", "tags": "travel art photographer quebec montreal vendor oldmontreal artiste memnto"}, {"datetaken": "2006-09-11 09:08:39", "license": "1", "title": "Low fat, high cholesterol, all good", "text": "", "album_id": "72157594335219262", "longitude": "0", "url_o": "https://farm1.staticflickr.com/120/273652960_bf5d1d8b8a_o.jpg", "secret": "9122107c22", "media": "photo", "latitude": "0", "id": "273652960", "tags": "travel quebec montreal oldmontreal crepes memnto"}, {"datetaken": "2006-09-11 09:58:28", "license": "1", "title": "Along the cobblestone", "text": "", "album_id": "72157594335219262", "longitude": "0", "url_o": "https://farm1.staticflickr.com/117/273652991_e6522a4e16_o.jpg", "secret": "65c943021b", "media": "photo", "latitude": "0", "id": "273652991", "tags": "travel brick stone quebec montreal ground cobblestone oldmontreal memnto"}, {"datetaken": "2006-09-11 11:47:34", "license": "1", "title": "Imperfect symetry", "text": "", "album_id": "72157594335219262", "longitude": "0", "url_o": "https://farm1.staticflickr.com/107/273653013_28fa6a5eb2_o.jpg", "secret": "5c73f7754c", "media": "photo", "latitude": "0", "id": "273653013", "tags": "travel brick quebec montreal brownstone memnto"}, {"datetaken": "2006-09-11 12:17:12", "license": "1", "title": "Imperfect symetry", "text": "", "album_id": "72157594335219262", "longitude": "0", "url_o": "https://farm1.staticflickr.com/118/273653026_e788842729_o.jpg", "secret": "b5e2209b36", "media": "photo", "latitude": "0", "id": "273653026", "tags": "travel brick quebec montreal brownstone memnto"}, {"datetaken": "2009-12-27 10:16:04", "license": "5", "title": "Rocks - Robe Beach", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4287875542_7b829672fd_o.jpg", "secret": "1fe2e2d8f8", "media": "photo", "latitude": "0", "id": "4287875542", "tags": "sea sun beach sand robe sa southaustralia seasideresort resorttown robesa"}, {"datetaken": "2009-12-27 10:16:13", "license": "5", "title": "Robe Beach panorama", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4287132561_04cc8e29a8_o.jpg", "secret": "107c2f43a6", "media": "photo", "latitude": "0", "id": "4287132561", "tags": "sea autostitch panorama sun beach sand robe sa southaustralia seasideresort resorttown robesa"}, {"datetaken": "2009-12-27 10:37:28", "license": "5", "title": "Bank House - Robe", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2673/4287876598_91d7dd2be5_o.jpg", "secret": "fd1af77da8", "media": "photo", "latitude": "0", "id": "4287876598", "tags": "robe bank sa southaustralia seasideresort bankhouse resorttown robesa"}, {"datetaken": "2009-12-27 10:55:02", "license": "5", "title": "Robe Pharmacy", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4287877080_20af6577e9_o.jpg", "secret": "73f2827864", "media": "photo", "latitude": "0", "id": "4287877080", "tags": "robe pharmacy sa southaustralia seasideresort resorttown robesa"}, {"datetaken": "2009-12-27 11:23:35", "license": "5", "title": "Midday - Robe beach", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2487/4287877522_c0fdf85001_o.jpg", "secret": "11584b5663", "media": "photo", "latitude": "0", "id": "4287877522", "tags": "sea sun beach sand robe sa southaustralia seasideresort resorttown robesa"}, {"datetaken": "2009-12-27 11:24:11", "license": "5", "title": "Alpha - Robe beach", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4287877960_97137c71fa_o.jpg", "secret": "7e27dec0d6", "media": "photo", "latitude": "0", "id": "4287877960", "tags": "sea sun beach sand robe sa southaustralia seasideresort resorttown robesa"}, {"datetaken": "2009-12-27 11:24:27", "license": "5", "title": "Alpha star jump - Robe beach", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4287133593_7764c38553_o.jpg", "secret": "e9e8fd0a7c", "media": "photo", "latitude": "0", "id": "4287133593", "tags": "sea sun beach jump sand robe sa southaustralia seasideresort jumpshot starjump resorttown robesa"}, {"datetaken": "2009-12-27 11:32:36", "license": "5", "title": "Customs House - back - Robe", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4287878956_03d18d9214_o.jpg", "secret": "2a033a595f", "media": "photo", "latitude": "0", "id": "4287878956", "tags": "heritage robe sa southaustralia seasideresort customshouse resorttown nationaltrustofaustralia robesa"}, {"datetaken": "2009-12-27 11:35:27", "license": "5", "title": "Customs House - Robe", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4287136037_9e17a8c67f_o.jpg", "secret": "ae163274c5", "media": "photo", "latitude": "0", "id": "4287136037", "tags": "heritage robe sa southaustralia seasideresort customshouse resorttown nationaltrustofaustralia robesa"}, {"datetaken": "2009-12-27 11:36:32", "license": "5", "title": "Phoneguide, Royal Circus - Robe", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4287137011_57f667d6dd_o.jpg", "secret": "fba03f5fd7", "media": "photo", "latitude": "0", "id": "4287137011", "tags": "robe sa southaustralia seasideresort resorttown phoneguide robesa seeaustralia mobileselfguidedtouring"}, {"datetaken": "2009-12-27 11:41:34", "license": "5", "title": "Robe Jetty", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4287162165_f2ddfbfeba_o.jpg", "secret": "3447d91523", "media": "photo", "latitude": "0", "id": "4287162165", "tags": "pier robe jetty sa southaustralia seasideresort resorttown robesa robejetty"}, {"datetaken": "2009-12-27 11:41:45", "license": "5", "title": "Rocky outcrop from Robe Jetty", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4287905428_fa30c72dde_o.jpg", "secret": "7d4e9028eb", "media": "photo", "latitude": "0", "id": "4287905428", "tags": "robe sa southaustralia seasideresort resorttown robesa robejetty"}, {"datetaken": "2009-12-27 11:42:20", "license": "5", "title": "Seaweed in silty water - Robe Jetty", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4287163751_f3452a9338_o.jpg", "secret": "e1d33bb852", "media": "photo", "latitude": "0", "id": "4287163751", "tags": "seaweed robe sa southaustralia seasideresort resorttown robesa robejetty"}, {"datetaken": "2009-12-27 11:43:05", "license": "5", "title": "Kelp in silty water - Robe Jetty", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4287904262_a48107773e_o.jpg", "secret": "c8bd2e3076", "media": "photo", "latitude": "0", "id": "4287904262", "tags": "seaweed robe kelp sa southaustralia seasideresort resorttown robesa robejetty"}, {"datetaken": "2009-12-27 11:48:20", "license": "5", "title": "Cape Dombey, Robe panorama", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4287915846_36f30bd3f9_o.jpg", "secret": "d10a78e94f", "media": "photo", "latitude": "0", "id": "4287915846", "tags": "autostitch panorama bay robe obelisk marker sa southaustralia navigation seasideresort resorttown navigationmarker capedombey robesa stoneobelisk"}, {"datetaken": "2009-12-27 11:49:23", "license": "5", "title": "History of Robe sign - Cape Dombey, Robe", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4287916574_db08559984_o.jpg", "secret": "58a4c1d2aa", "media": "photo", "latitude": "0", "id": "4287916574", "tags": "sign robe sa southaustralia seasideresort resorttown capedombey robesa"}, {"datetaken": "2009-12-27 11:49:57", "license": "5", "title": "Arch - Cape Dombey, Robe", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4287174527_29dd2f6fed_o.jpg", "secret": "fa335c0e96", "media": "photo", "latitude": "0", "id": "4287174527", "tags": "rock arch robe sa southaustralia seasideresort resorttown capedombey robesa"}, {"datetaken": "2009-12-27 11:50:13", "license": "5", "title": "Robe Lighthouse from obelisk", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4287915458_ae279bf614_o.jpg", "secret": "f7f8af910e", "media": "photo", "latitude": "0", "id": "4287915458", "tags": "lighthouse robe sa southaustralia seasideresort resorttown capedombey robesa robelighthouse"}, {"datetaken": "2009-12-27 12:59:31", "license": "5", "title": "Mince Pies - Robe Bakery", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4287178487_be2d8f25e8_o.jpg", "secret": "b5a43a28b2", "media": "photo", "latitude": "0", "id": "4287178487", "tags": "food fruit pie dessert sweet robe bakery pastry sa southaustralia seasideresort mincepies resorttown fruitpies robesa mincedfruitpies robebakerycoffeelounge robebakery"}, {"datetaken": "2009-12-27 13:03:29", "license": "5", "title": "Dried Shiitake garland - The Providore, Robe", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4287920468_ab18eecaf8_o.jpg", "secret": "5951d2b7ae", "media": "photo", "latitude": "0", "id": "4287920468", "tags": "robe sa southaustralia seasideresort resorttown robesa"}, {"datetaken": "2009-12-27 13:33:54", "license": "5", "title": "Jetskis - Long Beach, Robe", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4287945428_32fc83276c_o.jpg", "secret": "4479750aab", "media": "photo", "latitude": "0", "id": "4287945428", "tags": "sea sun beach sand robe longbeach sa jetski southaustralia seasideresort watersport resorttown robesa"}, {"datetaken": "2009-12-27 13:34:30", "license": "5", "title": "Surf fishing - Long Beach, Robe", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2763/4287944906_54ebf27eac_o.jpg", "secret": "3027687d20", "media": "photo", "latitude": "0", "id": "4287944906", "tags": "sea sun beach fishing sand surf robe longbeach sa southaustralia surffishing seasideresort resorttown robesa"}, {"datetaken": "2009-12-27 13:34:45", "license": "5", "title": "Cars - Looking North - Long Beach, Robe", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4287201501_cb4fafb0e3_o.jpg", "secret": "8f4d6271ce", "media": "photo", "latitude": "0", "id": "4287201501", "tags": "sea sun cars beach sand robe longbeach sa southaustralia seasideresort resorttown robesa"}, {"datetaken": "2009-12-27 13:35:01", "license": "5", "title": "Family kite flying - Long Beach, Robe", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4287944108_37c27436ae_o.jpg", "secret": "2c613c6f50", "media": "photo", "latitude": "0", "id": "4287944108", "tags": "family sea sun kite beach sand robe longbeach sa southaustralia seasideresort goflyakite resorttown robesa"}, {"datetaken": "2009-12-27 13:35:26", "license": "5", "title": "Robe from Long Beach", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2711/4287202265_e6edfee176_o.jpg", "secret": "a3a81b6c3d", "media": "photo", "latitude": "0", "id": "4287202265", "tags": "sea sun beach sand robe longbeach sa southaustralia seasideresort resorttown robesa"}, {"datetaken": "2009-12-27 13:37:11", "license": "5", "title": "Looking North - Long Beach, Robe", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4287200979_2e3fca30be_o.jpg", "secret": "95f756d21e", "media": "photo", "latitude": "0", "id": "4287200979", "tags": "sea sun cars beach sand robe longbeach sa southaustralia seasideresort resorttown robesa"}, {"datetaken": "2009-12-27 13:37:18", "license": "5", "title": "Long Beach, Robe panorama", "text": "", "album_id": "72157623116827597", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4287237987_71f42389b9_o.jpg", "secret": "220d4c7e7e", "media": "photo", "latitude": "0", "id": "4287237987", "tags": "sea sun cars beach town sand robe longbeach resortresort sarobesasouth australiaseaside"}, {"datetaken": "2006-08-16 13:33:17", "license": "5", "title": "Weaverville, California", "text": "", "album_id": "72157594242632054", "longitude": "-122.939747", "url_o": "https://farm1.staticflickr.com/93/219269870_56c80803e8_o.jpg", "secret": "56c80803e8", "media": "photo", "latitude": "40.730535", "id": "219269870", "tags": "california goldrush weaverville"}, {"datetaken": "2006-08-16 13:33:53", "license": "5", "title": "Weaverville, California", "text": "", "album_id": "72157594242632054", "longitude": "-122.939747", "url_o": "https://farm1.staticflickr.com/74/219269968_51fddd0439_o.jpg", "secret": "51fddd0439", "media": "photo", "latitude": "40.730535", "id": "219269968", "tags": "california goldrush weaverville"}, {"datetaken": "2006-08-16 13:35:36", "license": "5", "title": "Weaverville, California", "text": "", "album_id": "72157594242632054", "longitude": "-122.939747", "url_o": "https://farm1.staticflickr.com/84/219270102_db5d45f88d_o.jpg", "secret": "db5d45f88d", "media": "photo", "latitude": "40.730535", "id": "219270102", "tags": "california goldrush weaverville"}, {"datetaken": "2006-08-16 13:36:19", "license": "5", "title": "Weaverville, California", "text": "", "album_id": "72157594242632054", "longitude": "-122.939211", "url_o": "https://farm1.staticflickr.com/71/219270207_71c8576a84_o.jpg", "secret": "71c8576a84", "media": "photo", "latitude": "40.730909", "id": "219270207", "tags": "california goldrush weaverville"}, {"datetaken": "2006-08-16 13:38:27", "license": "5", "title": "Weaverville Joss House State Historic Park, Weaverville, California", "text": "", "album_id": "72157594242632054", "longitude": "-122.941035", "url_o": "https://farm1.staticflickr.com/61/219270341_495cd30e08_o.jpg", "secret": "495cd30e08", "media": "photo", "latitude": "40.731307", "id": "219270341", "tags": "california goldrush weaverville"}, {"datetaken": "2006-08-16 13:38:50", "license": "5", "title": "Weaverville Joss House State Historic Park, Weaverville, California", "text": "", "album_id": "72157594242632054", "longitude": "-122.941035", "url_o": "https://farm1.staticflickr.com/60/219270463_3a420f38c2_o.jpg", "secret": "3a420f38c2", "media": "photo", "latitude": "40.731307", "id": "219270463", "tags": "california goldrush weaverville"}, {"datetaken": "2006-08-16 13:39:20", "license": "5", "title": "Weaverville Joss House State Historic Park, Weaverville, California", "text": "", "album_id": "72157594242632054", "longitude": "-122.941035", "url_o": "https://farm1.staticflickr.com/94/219270598_b2dbde04ab_o.jpg", "secret": "b2dbde04ab", "media": "photo", "latitude": "40.731307", "id": "219270598", "tags": "california goldrush weaverville"}, {"datetaken": "2006-08-16 13:42:05", "license": "5", "title": "Trinity County Courthouse, Weaverville, California", "text": "", "album_id": "72157594242632054", "longitude": "-122.940938", "url_o": "https://farm1.staticflickr.com/89/218913167_967318756f_o.jpg", "secret": "967318756f", "media": "photo", "latitude": "40.734401", "id": "218913167", "tags": "california weaverville trinitycounty countycourthouse weavervillecalifornia uscccatrinity"}, {"datetaken": "2006-08-16 14:02:22", "license": "5", "title": "Trinity River, California State Route 299 Near Weaverville, California", "text": "", "album_id": "72157594242632054", "longitude": "-123.065017", "url_o": "https://farm1.staticflickr.com/78/219274151_75209c0b0c_o.jpg", "secret": "75209c0b0c", "media": "photo", "latitude": "40.751914", "id": "219274151", "tags": "california trinity trinityriver"}, {"datetaken": "2006-08-16 14:02:33", "license": "5", "title": "Trinity River, California State Route 299 Near Weaverville, California", "text": "", "album_id": "72157594242632054", "longitude": "-123.065017", "url_o": "https://farm1.staticflickr.com/89/219274339_1636561e79_o.jpg", "secret": "1636561e79", "media": "photo", "latitude": "40.751914", "id": "219274339", "tags": "california trinity trinityriver"}, {"datetaken": "2006-08-16 14:02:44", "license": "5", "title": "Trinity River, California State Route 299 Near Weaverville, California", "text": "", "album_id": "72157594242632054", "longitude": "-123.065017", "url_o": "https://farm1.staticflickr.com/85/219274499_78b49cdfb7_o.jpg", "secret": "78b49cdfb7", "media": "photo", "latitude": "40.751914", "id": "219274499", "tags": "california trinity trinityriver"}, {"datetaken": "2006-08-16 14:03:42", "license": "5", "title": "Trinity River, California State Route 299 Near Weaverville, California", "text": "", "album_id": "72157594242632054", "longitude": "-123.065017", "url_o": "https://farm1.staticflickr.com/92/219274631_608f7dcc0c_o.jpg", "secret": "608f7dcc0c", "media": "photo", "latitude": "40.751914", "id": "219274631", "tags": "california trinity trinityriver"}, {"datetaken": "2006-08-16 14:09:49", "license": "5", "title": "Trinity River, California State Route 299 Near Weaverville, California", "text": "", "album_id": "72157594242632054", "longitude": "-123.110282", "url_o": "https://farm1.staticflickr.com/73/219275068_e5cdd3dfd8_o.jpg", "secret": "e5cdd3dfd8", "media": "photo", "latitude": "40.766473", "id": "219275068", "tags": "california trinity trinityriver"}, {"datetaken": "2006-08-16 14:09:57", "license": "5", "title": "Trinity River, California State Route 299 Near Weaverville, California", "text": "", "album_id": "72157594242632054", "longitude": "-123.110282", "url_o": "https://farm1.staticflickr.com/95/219274760_2e33eb8823_o.jpg", "secret": "2e33eb8823", "media": "photo", "latitude": "40.766473", "id": "219274760", "tags": "california trinity trinityriver"}, {"datetaken": "2006-08-16 14:10:07", "license": "5", "title": "Trinity River, California State Route 299 Near Weaverville, California", "text": "", "album_id": "72157594242632054", "longitude": "-123.110282", "url_o": "https://farm1.staticflickr.com/59/219274962_d9624ed7cc_o.jpg", "secret": "d9624ed7cc", "media": "photo", "latitude": "40.766473", "id": "219274962", "tags": "california trinity trinityriver"}, {"datetaken": "2006-08-16 14:22:48", "license": "5", "title": "Trinity River, California State Route 299 Near Weaverville, California", "text": "", "album_id": "72157594242632054", "longitude": "-123.110282", "url_o": "https://farm1.staticflickr.com/97/219274849_7877b600ca_o.jpg", "secret": "7877b600ca", "media": "photo", "latitude": "40.766473", "id": "219274849", "tags": "california trinity trinityriver"}, {"datetaken": "2006-08-19 10:38:50", "license": "4", "title": "Hastings Promenade", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/219264406_7c289cf221_o.jpg", "secret": "7c289cf221", "media": "photo", "latitude": "0", "id": "219264406", "tags": ""}, {"datetaken": "2006-08-19 10:41:05", "license": "4", "title": "IMG_1301", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/219266416_492b7c7a02_o.jpg", "secret": "492b7c7a02", "media": "photo", "latitude": "0", "id": "219266416", "tags": ""}, {"datetaken": "2006-08-19 10:42:44", "license": "4", "title": "IMG_1303", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/219267725_1950e26c61_o.jpg", "secret": "1950e26c61", "media": "photo", "latitude": "0", "id": "219267725", "tags": ""}, {"datetaken": "2006-08-19 10:44:07", "license": "4", "title": "Hastings Beach", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/219268406_6b6e050def_o.jpg", "secret": "6b6e050def", "media": "photo", "latitude": "0", "id": "219268406", "tags": "beach hastings"}, {"datetaken": "2006-08-19 10:44:27", "license": "4", "title": "IMG_1305", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/219269225_475270668f_o.jpg", "secret": "475270668f", "media": "photo", "latitude": "0", "id": "219269225", "tags": ""}, {"datetaken": "2006-08-19 11:22:30", "license": "4", "title": "IMG_1308", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/219271534_e8184f7130_o.jpg", "secret": "e8184f7130", "media": "photo", "latitude": "0", "id": "219271534", "tags": ""}, {"datetaken": "2006-08-19 11:22:49", "license": "4", "title": "IMG_1309", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/219272141_e2da103b82_o.jpg", "secret": "e2da103b82", "media": "photo", "latitude": "0", "id": "219272141", "tags": ""}, {"datetaken": "2006-08-19 11:23:07", "license": "4", "title": "IMG_1310", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/219272811_89ee10f97c_o.jpg", "secret": "89ee10f97c", "media": "photo", "latitude": "0", "id": "219272811", "tags": ""}, {"datetaken": "2006-08-19 11:32:42", "license": "4", "title": "Hastings Africa War memorial", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/219273510_dc1696296d_o.jpg", "secret": "dc1696296d", "media": "photo", "latitude": "0", "id": "219273510", "tags": ""}, {"datetaken": "2006-08-19 11:33:03", "license": "4", "title": "Hastings Africa War memorial", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/219274419_9085d9c82c_o.jpg", "secret": "9085d9c82c", "media": "photo", "latitude": "0", "id": "219274419", "tags": "hastings"}, {"datetaken": "2006-08-19 11:40:32", "license": "4", "title": "IMG_1313", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/219275095_9b09bdebab_o.jpg", "secret": "9b09bdebab", "media": "photo", "latitude": "0", "id": "219275095", "tags": ""}, {"datetaken": "2006-08-19 11:40:39", "license": "4", "title": "IMG_1314", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/219275761_64ab9f2391_o.jpg", "secret": "64ab9f2391", "media": "photo", "latitude": "0", "id": "219275761", "tags": ""}, {"datetaken": "2006-08-19 11:41:18", "license": "4", "title": "IMG_1315", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/219276517_f9dc3917bf_o.jpg", "secret": "f9dc3917bf", "media": "photo", "latitude": "0", "id": "219276517", "tags": ""}, {"datetaken": "2006-08-19 11:42:26", "license": "4", "title": "IMG_1317", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/219278023_cbce418720_o.jpg", "secret": "cbce418720", "media": "photo", "latitude": "0", "id": "219278023", "tags": ""}, {"datetaken": "2006-08-19 11:43:57", "license": "4", "title": "Hastings Promenade", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/219279546_9a1b729432_o.jpg", "secret": "9a1b729432", "media": "photo", "latitude": "0", "id": "219279546", "tags": "beach promenade hastings"}, {"datetaken": "2006-08-19 11:50:26", "license": "4", "title": "Hastings Beach Fisherman", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/219281768_f04ef0c597_o.jpg", "secret": "f04ef0c597", "media": "photo", "latitude": "0", "id": "219281768", "tags": "beach fisherman hastings kiss1 abigfave"}, {"datetaken": "2006-08-19 11:52:21", "license": "4", "title": "IMG_1326", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/219284199_06026d5e56_o.jpg", "secret": "06026d5e56", "media": "photo", "latitude": "0", "id": "219284199", "tags": ""}, {"datetaken": "2006-08-19 11:55:11", "license": "4", "title": "Hastings Pier", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/219284940_242667d902_o.jpg", "secret": "242667d902", "media": "photo", "latitude": "0", "id": "219284940", "tags": "hastings"}, {"datetaken": "2006-08-19 11:55:34", "license": "4", "title": "IMG_1329", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/219286099_fbb4fec7b9_o.jpg", "secret": "fbb4fec7b9", "media": "photo", "latitude": "0", "id": "219286099", "tags": "beach pier seaside waves coastal hastings"}, {"datetaken": "2006-08-19 11:55:50", "license": "4", "title": "IMG_1330", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/219286768_7b00ec89eb_o.jpg", "secret": "7b00ec89eb", "media": "photo", "latitude": "0", "id": "219286768", "tags": ""}, {"datetaken": "2006-08-19 11:56:26", "license": "4", "title": "Under Hastings Pier", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/219287373_33580b3f08_o.jpg", "secret": "33580b3f08", "media": "photo", "latitude": "0", "id": "219287373", "tags": "hastings"}, {"datetaken": "2006-08-19 13:33:13", "license": "4", "title": "Hastings Netting Sheds", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/219288543_53cfa60cdc_o.jpg", "secret": "53cfa60cdc", "media": "photo", "latitude": "0", "id": "219288543", "tags": "hastings"}, {"datetaken": "2006-08-19 13:33:37", "license": "4", "title": "Hastings Netting Sheds", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/219289079_4a8960c11f_o.jpg", "secret": "4a8960c11f", "media": "photo", "latitude": "0", "id": "219289079", "tags": "hastings"}, {"datetaken": "2006-08-19 13:34:24", "license": "4", "title": "The Owls at Stade", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/219289616_c221f3034f_o.jpg", "secret": "c221f3034f", "media": "photo", "latitude": "0", "id": "219289616", "tags": "hastings stade owls"}, {"datetaken": "2006-08-19 13:35:18", "license": "4", "title": "The Stade - The Net Huts", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/219290211_e677f7a121_o.jpg", "secret": "e677f7a121", "media": "photo", "latitude": "0", "id": "219290211", "tags": "hastings stade"}, {"datetaken": "2006-08-19 13:35:52", "license": "4", "title": "The Stade - The Net Huts", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/219290762_91852cc55c_o.jpg", "secret": "91852cc55c", "media": "photo", "latitude": "0", "id": "219290762", "tags": "hastings stade"}, {"datetaken": "2006-08-19 13:36:23", "license": "4", "title": "All Aboard Hastings' Miniature Train", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/219291392_c3171b6926_o.jpg", "secret": "c3171b6926", "media": "photo", "latitude": "0", "id": "219291392", "tags": "hastings"}, {"datetaken": "2006-08-19 13:37:46", "license": "4", "title": "Lobster nets at Hastings Harbour", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/219292262_bb37143828_o.jpg", "secret": "bb37143828", "media": "photo", "latitude": "0", "id": "219292262", "tags": ""}, {"datetaken": "2006-08-19 13:38:31", "license": "4", "title": "Lobster Pots", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/219293830_7ee78c207e_o.jpg", "secret": "7ee78c207e", "media": "photo", "latitude": "0", "id": "219293830", "tags": "hastings"}, {"datetaken": "2006-08-19 13:39:32", "license": "4", "title": "The Stade - The Net Sheds", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/219294762_fe5fa76617_o.jpg", "secret": "fe5fa76617", "media": "photo", "latitude": "0", "id": "219294762", "tags": "hastings"}, {"datetaken": "2006-08-19 13:39:42", "license": "4", "title": "Hastings Cliff Railways - East Hill Lift", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/93/219295695_5093081b27_o.jpg", "secret": "5093081b27", "media": "photo", "latitude": "0", "id": "219295695", "tags": "hastings"}, {"datetaken": "2006-08-19 13:40:25", "license": "4", "title": "The Stade", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/219296414_d0a538c82e_o.jpg", "secret": "d0a538c82e", "media": "photo", "latitude": "0", "id": "219296414", "tags": "hastings stade"}, {"datetaken": "2006-08-19 14:34:58", "license": "4", "title": "Hastings", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/219304057_fc9a34a587_o.jpg", "secret": "fc9a34a587", "media": "photo", "latitude": "0", "id": "219304057", "tags": "hastings"}, {"datetaken": "2006-08-19 14:36:09", "license": "4", "title": "View Across Hastings", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/93/219305361_b818ed5e22_o.jpg", "secret": "b818ed5e22", "media": "photo", "latitude": "0", "id": "219305361", "tags": "hastings"}, {"datetaken": "2006-08-19 14:36:36", "license": "4", "title": "Hastings from East Hill", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/219306034_ac0a421aea_o.jpg", "secret": "ac0a421aea", "media": "photo", "latitude": "0", "id": "219306034", "tags": "hastings stade"}, {"datetaken": "2006-08-19 14:40:28", "license": "4", "title": "Hastings Cliff Railways - East Hill Lift", "text": "", "album_id": "72157594243355383", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/219307569_538b9f7036_o.jpg", "secret": "538b9f7036", "media": "photo", "latitude": "0", "id": "219307569", "tags": "hastings"}, {"datetaken": "2006-01-06 11:25:06", "license": "1", "title": "Well Protected Yard and Mural", "text": "", "album_id": "72057594048895602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/90103994_7d0a8d5f06_o.jpg", "secret": "7d0a8d5f06", "media": "photo", "latitude": "0", "id": "90103994", "tags": "philadelphia fence mural poem barbedwire northphilly"}, {"datetaken": "2006-01-06 11:32:35", "license": "1", "title": "Girard College", "text": "", "album_id": "72057594048895602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/87078932_0c837a427a_o.jpg", "secret": "0c837a427a", "media": "photo", "latitude": "0", "id": "87078932", "tags": "girardcollege philadelphia philly"}, {"datetaken": "2006-01-06 11:43:44", "license": "1", "title": "Nice Seating Arrangement", "text": "", "album_id": "72057594048895602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/128296901_fd0fcdbdf1_o.jpg", "secret": "fd0fcdbdf1", "media": "photo", "latitude": "0", "id": "128296901", "tags": "philadelphia northphilly"}, {"datetaken": "2006-01-06 11:56:33", "license": "1", "title": "Chris Place", "text": "", "album_id": "72057594048895602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/88003765_0e8d544aa2_o.jpg", "secret": "0e8d544aa2", "media": "photo", "latitude": "0", "id": "88003765", "tags": "chrisplace northphilly philadelphia rowhouse ghetto"}, {"datetaken": "2006-01-06 12:00:41", "license": "1", "title": "Block in North Philly", "text": "", "album_id": "72057594048895602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/87070570_8624662790_o.jpg", "secret": "8624662790", "media": "photo", "latitude": "0", "id": "87070570", "tags": "northphilly philadelphia ghetto slum philly"}, {"datetaken": "2006-01-06 12:37:42", "license": "1", "title": "Stop", "text": "", "album_id": "72057594048895602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/87061203_bab1f3f3f8_o.jpg", "secret": "bab1f3f3f8", "media": "photo", "latitude": "0", "id": "87061203", "tags": "northphilly ghetto philadelphia philly"}, {"datetaken": "2006-01-06 12:43:50", "license": "1", "title": "Anti-smoking Mural", "text": "", "album_id": "72057594048895602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/89989918_beff328ba2_o.jpg", "secret": "beff328ba2", "media": "photo", "latitude": "0", "id": "89989918", "tags": "smoking antismoking philadelphila northphilly mural"}, {"datetaken": "2006-01-06 13:43:06", "license": "1", "title": "Mural for Workers 2", "text": "", "album_id": "72057594048895602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/89531821_fc0c00cb2d_o.jpg", "secret": "fc0c00cb2d", "media": "photo", "latitude": "0", "id": "89531821", "tags": "philadelphia workers mural"}, {"datetaken": "2006-01-06 13:44:33", "license": "1", "title": "Mural for Workers", "text": "", "album_id": "72057594048895602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/89531822_454a20f1f0_o.jpg", "secret": "454a20f1f0", "media": "photo", "latitude": "0", "id": "89531822", "tags": "philadelphia workers mural"}, {"datetaken": "2006-01-06 15:03:30", "license": "1", "title": "Buddhist Temple in Philadelphia's Chinatown", "text": "", "album_id": "72057594048895602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/89405226_6ea653ba7f_o.jpg", "secret": "6ea653ba7f", "media": "photo", "latitude": "0", "id": "89405226", "tags": "buddhism buddhist temple chinatown philadelphia"}, {"datetaken": "2006-01-06 15:08:06", "license": "1", "title": "Chinatown, Philadelphia", "text": "", "album_id": "72057594048895602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/89402047_b4705206a9_o.jpg", "secret": "b4705206a9", "media": "photo", "latitude": "0", "id": "89402047", "tags": "chinatown philadelphia city chinese philly"}, {"datetaken": "2006-01-06 15:40:00", "license": "1", "title": "Philadelphia's Center City", "text": "", "album_id": "72057594048895602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/85816214_3a565f0296_o.jpg", "secret": "3a565f0296", "media": "photo", "latitude": "0", "id": "85816214", "tags": "philadelphia downtown skyscrapers philly centercity"}, {"datetaken": "2006-01-07 11:51:33", "license": "1", "title": "Alley of Rowhouses in Upper Darby", "text": "", "album_id": "72057594048895602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/87051340_a99891c436_o.jpg", "secret": "a99891c436", "media": "photo", "latitude": "0", "id": "87051340", "tags": "upperdarby philadelphia rowhouses philly"}, {"datetaken": "2006-01-07 12:36:49", "license": "1", "title": "University of Pennsylvania", "text": "", "album_id": "72057594048895602", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/128294021_a3d295a099_o.jpg", "secret": "a3d295a099", "media": "photo", "latitude": "0", "id": "128294021", "tags": "philadelphia penn universityofpennsylvania"}, {"datetaken": "2011-08-30 17:26:08", "license": "4", "title": "View of \u00c9tretat", "text": "", "album_id": "72157628963057265", "longitude": "0.202227", "url_o": "https://farm8.staticflickr.com/7147/6734700521_f4d8830659_o.jpg", "secret": "4b0412683a", "media": "photo", "latitude": "49.707161", "id": "6734700521", "tags": "etretat"}, {"datetaken": "2011-08-30 17:32:35", "license": "4", "title": "View of \u00c9tretat", "text": "", "album_id": "72157628963057265", "longitude": "0.200183", "url_o": "https://farm8.staticflickr.com/7147/6734705307_b6669b85d7_o.jpg", "secret": "d2a6247a80", "media": "photo", "latitude": "49.707308", "id": "6734705307", "tags": "etretat"}, {"datetaken": "2011-08-30 17:36:27", "license": "4", "title": "Oyster bays, \u00c9tretat", "text": "", "album_id": "72157628963057265", "longitude": "0.196075", "url_o": "https://farm8.staticflickr.com/7158/6734716593_99c9f93780_o.jpg", "secret": "c27c4bf665", "media": "photo", "latitude": "49.706172", "id": "6734716593", "tags": "etretat"}, {"datetaken": "2011-08-30 17:48:16", "license": "4", "title": "View of \u00c9tretat", "text": "", "album_id": "72157628963057265", "longitude": "0.194799", "url_o": "https://farm8.staticflickr.com/7157/6734710855_1e1015e65f_o.jpg", "secret": "11e6d18b9a", "media": "photo", "latitude": "49.706458", "id": "6734710855", "tags": "etretat"}, {"datetaken": "2011-08-30 18:37:58", "license": "4", "title": "Site of the military hospital in WW1, \u00c9tretat", "text": "", "album_id": "72157628963057265", "longitude": "0.202088", "url_o": "https://farm8.staticflickr.com/7035/6734721995_bb2e3fdc1a_o.jpg", "secret": "5dfb9796bc", "media": "photo", "latitude": "49.706586", "id": "6734721995", "tags": "etretat"}, {"datetaken": "2011-08-30 18:38:41", "license": "4", "title": "Site of the military hospital in WW1, \u00c9tretat", "text": "", "album_id": "72157628963057265", "longitude": "0.202088", "url_o": "https://farm8.staticflickr.com/7150/6734728765_7c840e98b2_o.jpg", "secret": "e7a71e4c9c", "media": "photo", "latitude": "49.706586", "id": "6734728765", "tags": "etretat"}, {"datetaken": "2011-08-30 18:38:50", "license": "4", "title": "Site of the military hospital in WW1, \u00c9tretat", "text": "", "album_id": "72157628963057265", "longitude": "0.203166", "url_o": "https://farm8.staticflickr.com/7008/6734736741_e00b638198_o.jpg", "secret": "f7aaf6b5ff", "media": "photo", "latitude": "49.710283", "id": "6734736741", "tags": "etretat"}, {"datetaken": "2011-08-30 18:54:04", "license": "4", "title": "La Residence, \u00c9tretat", "text": "", "album_id": "72157628963057265", "longitude": "0.203036", "url_o": "https://farm8.staticflickr.com/7015/6734742237_9c3b974c3d_o.jpg", "secret": "c6f7c43cde", "media": "photo", "latitude": "49.708886", "id": "6734742237", "tags": "etretat"}, {"datetaken": "2011-08-30 19:01:29", "license": "4", "title": "Commemorative tablet at the vieux march\u00e9, \u00c9tretat", "text": "", "album_id": "72157628963057265", "longitude": "0.203036", "url_o": "https://farm8.staticflickr.com/7145/6734760177_fee08c343e_o.jpg", "secret": "d101d3804a", "media": "photo", "latitude": "49.708886", "id": "6734760177", "tags": "etretat"}, {"datetaken": "2011-08-30 19:32:30", "license": "4", "title": "Vieux march\u00e9, \u00c9tretat", "text": "", "album_id": "72157628963057265", "longitude": "0.203702", "url_o": "https://farm8.staticflickr.com/7022/6734764693_1925c28694_o.jpg", "secret": "9aceaf24e6", "media": "photo", "latitude": "49.708016", "id": "6734764693", "tags": "etretat"}, {"datetaken": "2011-08-30 19:33:28", "license": "4", "title": "La Residence, \u00c9tretat", "text": "", "album_id": "72157628963057265", "longitude": "0.203819", "url_o": "https://farm8.staticflickr.com/7033/6734748219_bc0d112c65_o.jpg", "secret": "0a29c746b4", "media": "photo", "latitude": "49.708088", "id": "6734748219", "tags": "etretat"}, {"datetaken": "2011-08-30 19:34:00", "license": "4", "title": "La Residence, \u00c9tretat", "text": "", "album_id": "72157628963057265", "longitude": "0.203819", "url_o": "https://farm8.staticflickr.com/7151/6734753635_fef0f759ab_o.jpg", "secret": "a8220bdcae", "media": "photo", "latitude": "49.708088", "id": "6734753635", "tags": "etretat"}, {"datetaken": "2011-08-30 19:46:02", "license": "4", "title": "Beach and Porte d'Amont, \u00c9tretat", "text": "", "album_id": "72157628963057265", "longitude": "0.201855", "url_o": "https://farm8.staticflickr.com/7034/6734771387_90657cf0d3_o.jpg", "secret": "f39da76b70", "media": "photo", "latitude": "49.708341", "id": "6734771387", "tags": "etretat"}, {"datetaken": "2011-08-30 19:46:27", "license": "4", "title": "Porte d'Aval, \u00c9tretat", "text": "", "album_id": "72157628963057265", "longitude": "0.201855", "url_o": "https://farm8.staticflickr.com/7154/6734775353_70036700cd_o.jpg", "secret": "7678e429ea", "media": "photo", "latitude": "49.708341", "id": "6734775353", "tags": "etretat"}, {"datetaken": "2011-08-30 21:22:08", "license": "4", "title": "\u00c9tretat beach", "text": "", "album_id": "72157628963057265", "longitude": "0.199499", "url_o": "https://farm8.staticflickr.com/7023/6734782021_7e623317c3_o.jpg", "secret": "d13270d466", "media": "photo", "latitude": "49.707902", "id": "6734782021", "tags": "etretat"}, {"datetaken": "2011-08-31 09:59:01", "license": "4", "title": "L'Oiseau Blanc", "text": "", "album_id": "72157628963057265", "longitude": "0.205775", "url_o": "https://farm8.staticflickr.com/7029/6734786863_08b61c6626_o.jpg", "secret": "4cf3537dd7", "media": "photo", "latitude": "49.692519", "id": "6734786863", "tags": "etretat"}, {"datetaken": "2011-08-31 10:01:28", "license": "4", "title": "L'Oiseau Blanc", "text": "", "album_id": "72157628963057265", "longitude": "0.205775", "url_o": "https://farm8.staticflickr.com/7012/6734792919_de74180bfb_o.jpg", "secret": "7dc02dfc10", "media": "photo", "latitude": "49.692519", "id": "6734792919", "tags": "etretat"}, {"datetaken": "2011-08-31 10:02:17", "license": "4", "title": "L'Oiseau Blanc", "text": "", "album_id": "72157628963057265", "longitude": "0.206637", "url_o": "https://farm8.staticflickr.com/7002/6734797783_0b03ae54ab_o.jpg", "secret": "e09ddbea59", "media": "photo", "latitude": "49.711340", "id": "6734797783", "tags": "etretat"}, {"datetaken": "2011-08-31 10:04:10", "license": "4", "title": "The Chapel of Notre-Dame de la Garde", "text": "", "album_id": "72157628963057265", "longitude": "0.205564", "url_o": "https://farm8.staticflickr.com/7149/6734803367_6b0bae9741_o.jpg", "secret": "afb0c6b9fa", "media": "photo", "latitude": "49.711382", "id": "6734803367", "tags": "etretat"}, {"datetaken": "2011-08-31 10:07:45", "license": "4", "title": "View of \u00c9tretat", "text": "", "album_id": "72157628963057265", "longitude": "0.205283", "url_o": "https://farm8.staticflickr.com/7001/6734810469_706a414624_o.jpg", "secret": "47622308f1", "media": "photo", "latitude": "49.710988", "id": "6734810469", "tags": "etretat"}, {"datetaken": "2011-08-31 10:36:13", "license": "4", "title": "\u00c9tretat churchyard cemetery", "text": "", "album_id": "72157628963057265", "longitude": "0.211808", "url_o": "https://farm8.staticflickr.com/7009/6734815825_c29d54d916_o.jpg", "secret": "9c98e9ef7a", "media": "photo", "latitude": "49.708130", "id": "6734815825", "tags": "etretat"}, {"datetaken": "2011-08-31 10:40:41", "license": "4", "title": "\u00c9tretat churchyard extension cemetery", "text": "", "album_id": "72157628963057265", "longitude": "0.211808", "url_o": "https://farm8.staticflickr.com/7150/6734821577_f8866e28c4_o.jpg", "secret": "b361a9f527", "media": "photo", "latitude": "49.708130", "id": "6734821577", "tags": "etretat"}, {"datetaken": "2011-08-31 11:03:11", "license": "4", "title": "Villa Orph\u00e9e", "text": "", "album_id": "72157628963057265", "longitude": "0.211983", "url_o": "https://farm8.staticflickr.com/7170/6734827519_82258952b8_o.jpg", "secret": "0152bba405", "media": "photo", "latitude": "49.707725", "id": "6734827519", "tags": "etretat"}, {"datetaken": "2011-08-31 11:04:00", "license": "4", "title": "Villa Orph\u00e9e", "text": "", "album_id": "72157628963057265", "longitude": "0.211983", "url_o": "https://farm8.staticflickr.com/7158/6734835853_92f788f7cc_o.jpg", "secret": "ed18b5a671", "media": "photo", "latitude": "49.707725", "id": "6734835853", "tags": "etretat"}, {"datetaken": "2011-08-31 11:05:22", "license": "4", "title": "Villa Orph\u00e9e", "text": "", "album_id": "72157628963057265", "longitude": "0.211983", "url_o": "https://farm8.staticflickr.com/7145/6734841897_10c04dc859_o.jpg", "secret": "851110929f", "media": "photo", "latitude": "49.707725", "id": "6734841897", "tags": "etretat"}, {"datetaken": "2011-08-31 11:06:04", "license": "4", "title": "View from Villa Orph\u00e9e", "text": "", "album_id": "72157628963057265", "longitude": "0.211983", "url_o": "https://farm8.staticflickr.com/7148/6734847415_93b53133ac_o.jpg", "secret": "429e1467b9", "media": "photo", "latitude": "49.707725", "id": "6734847415", "tags": "etretat"}, {"datetaken": "2011-08-31 11:07:56", "license": "4", "title": "Villa Orph\u00e9e", "text": "", "album_id": "72157628963057265", "longitude": "0.211983", "url_o": "https://farm8.staticflickr.com/7020/6734831709_7178210aa1_o.jpg", "secret": "9631214f3e", "media": "photo", "latitude": "49.707725", "id": "6734831709", "tags": "etretat"}, {"datetaken": "2005-12-18 00:00:00", "license": "6", "title": "Rainbow Bursa (video)", "text": "", "album_id": "72157601887425868", "longitude": "29.057816", "url_o": "https://farm3.staticflickr.com/2556/4176143672_51a0bebbb9_o.jpg", "secret": "7e5ab2fa04", "media": "video", "latitude": "40.185529", "id": "4176143672", "tags": "turkey rainbow cityscape bursa"}, {"datetaken": "2005-12-18 04:04:58", "license": "6", "title": "Bursa", "text": "", "album_id": "72157601887425868", "longitude": "29.057816", "url_o": "https://farm1.staticflickr.com/41/75852006_5c3694cd07_o.jpg", "secret": "a558f1b665", "media": "photo", "latitude": "40.185529", "id": "75852006", "tags": "cityscape bursa"}, {"datetaken": "2005-12-18 04:22:29", "license": "6", "title": "Emir Sultan Camii in Bursa", "text": "", "album_id": "72157601887425868", "longitude": "29.057816", "url_o": "https://farm3.staticflickr.com/2763/4175382161_efef5d6316_o.jpg", "secret": "0064d33b5f", "media": "photo", "latitude": "40.185529", "id": "4175382161", "tags": "fountain turkey mosque bursa"}, {"datetaken": "2005-12-18 04:25:26", "license": "6", "title": "Emir Sultan Camii", "text": "", "album_id": "72157601887425868", "longitude": "29.057816", "url_o": "https://farm1.staticflickr.com/40/75852007_8553a74a98_o.jpg", "secret": "08b98378cd", "media": "photo", "latitude": "40.185529", "id": "75852007", "tags": "people mosque bursa"}, {"datetaken": "2005-12-18 04:34:13", "license": "6", "title": "Ye\u015fil T\u00fcrbe in Bursa", "text": "", "album_id": "72157601887425868", "longitude": "29.057816", "url_o": "https://farm1.staticflickr.com/38/75852008_132427148f_o.jpg", "secret": "323621c2f7", "media": "photo", "latitude": "40.185529", "id": "75852008", "tags": "bursa mosque"}, {"datetaken": "2005-12-18 07:31:38", "license": "6", "title": "Rainbow in Bursa", "text": "", "album_id": "72157601887425868", "longitude": "29.057816", "url_o": "https://farm3.staticflickr.com/2487/4176143304_73543cf158_o.jpg", "secret": "54763ebbe8", "media": "photo", "latitude": "40.185529", "id": "4176143304", "tags": "turkey rainbow cityscape bursa"}, {"datetaken": "2005-12-18 07:32:05", "license": "6", "title": "Rainbow in Bursa, Turkey", "text": "", "album_id": "72157601887425868", "longitude": "29.057816", "url_o": "https://farm3.staticflickr.com/2748/4175382279_4622c8b015_o.jpg", "secret": "d0ca6185aa", "media": "photo", "latitude": "40.185529", "id": "4175382279", "tags": "turkey rainbow cityscape bursa"}, {"datetaken": "2005-12-18 07:32:26", "license": "6", "title": "Bursa Rainbow", "text": "", "album_id": "72157601887425868", "longitude": "29.057816", "url_o": "https://farm1.staticflickr.com/6/75852009_d140af0035_o.jpg", "secret": "1e00f80aa2", "media": "photo", "latitude": "40.185529", "id": "75852009", "tags": "rainbow cityscape best bursa"}, {"datetaken": "2005-12-18 07:39:05", "license": "6", "title": "Clouds in Bursa", "text": "", "album_id": "72157601887425868", "longitude": "29.057816", "url_o": "https://farm3.staticflickr.com/2667/4175382773_f358468d2c_o.jpg", "secret": "a9b69b66d1", "media": "photo", "latitude": "40.185529", "id": "4175382773", "tags": "clouds turkey bursa"}, {"datetaken": "2005-12-18 07:50:09", "license": "6", "title": "Ottoman Houses in Bursa", "text": "", "album_id": "72157601887425868", "longitude": "29.057816", "url_o": "https://farm1.staticflickr.com/41/75852010_209597b1b4_o.jpg", "secret": "4e9bda3f3b", "media": "photo", "latitude": "40.185529", "id": "75852010", "tags": "streetscene bursa"}, {"datetaken": "2005-12-18 08:04:10", "license": "6", "title": "Muradiye Tombs in Bursa", "text": "", "album_id": "72157601887425868", "longitude": "29.057816", "url_o": "https://farm1.staticflickr.com/39/75852011_63820fd197_o.jpg", "secret": "8fb44ff516", "media": "photo", "latitude": "40.185529", "id": "75852011", "tags": "bursa mosque"}, {"datetaken": "2005-12-18 08:06:57", "license": "6", "title": "Muradiye Tomb in Bursa", "text": "", "album_id": "72157601887425868", "longitude": "29.057816", "url_o": "https://farm5.staticflickr.com/4038/4175382991_69df805a37_o.jpg", "secret": "7ce73974fd", "media": "photo", "latitude": "40.185529", "id": "4175382991", "tags": "turkey religion tomb bursa"}, {"datetaken": "2005-12-18 08:26:19", "license": "6", "title": "Signs to Everywhere in Bursa", "text": "", "album_id": "72157601887425868", "longitude": "29.057816", "url_o": "https://farm3.staticflickr.com/2750/4176144348_93a145f798_o.jpg", "secret": "cf0268456b", "media": "photo", "latitude": "40.185529", "id": "4176144348", "tags": "turkey bursa"}, {"datetaken": "2005-12-18 08:28:20", "license": "6", "title": "Bursa", "text": "", "album_id": "72157601887425868", "longitude": "29.057816", "url_o": "https://farm1.staticflickr.com/6/75852541_0ec371a8dd_o.jpg", "secret": "42b8da4be3", "media": "photo", "latitude": "40.185529", "id": "75852541", "tags": "mountain cityscape bursa"}, {"datetaken": "2006-04-22 23:02:46", "license": "1", "title": "Bulb Field, Lisse, The Netherlands", "text": "", "album_id": "72057594114925840", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/133639360_b6e4c68954_o.jpg", "secret": "b6e4c68954", "media": "photo", "latitude": "0", "id": "133639360", "tags": "holland netherlands dutch field bulb bulbs lisse"}, {"datetaken": "2006-04-22 23:04:09", "license": "1", "title": "Not a Bulb Field, Lisse, The Netherlands", "text": "", "album_id": "72057594114925840", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/133639413_40a6a7b0a4_o.jpg", "secret": "40a6a7b0a4", "media": "photo", "latitude": "0", "id": "133639413", "tags": "holland netherlands dutch field bulb bulbs lisse"}, {"datetaken": "2006-04-22 23:06:39", "license": "1", "title": "Another Boat Near a Bulb Field, Lisse, The Netherlands", "text": "", "album_id": "72057594114925840", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/133639453_aa4e59d92f_o.jpg", "secret": "aa4e59d92f", "media": "photo", "latitude": "0", "id": "133639453", "tags": "holland netherlands dutch field bulb bulbs lisse"}, {"datetaken": "2006-04-22 23:07:26", "license": "1", "title": "Boat Near a Bulb Field, Lisse, The Netherlands", "text": "", "album_id": "72057594114925840", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/133639504_3594d59865_o.jpg", "secret": "3594d59865", "media": "photo", "latitude": "0", "id": "133639504", "tags": "holland netherlands dutch field bulb bulbs lisse"}, {"datetaken": "2006-04-22 23:13:29", "license": "1", "title": "Bulb Field, Lisse, The Netherlands", "text": "", "album_id": "72057594114925840", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/133639091_b84fc6d14b_o.jpg", "secret": "b84fc6d14b", "media": "photo", "latitude": "0", "id": "133639091", "tags": "holland netherlands dutch field bulb bulbs lisse"}, {"datetaken": "2006-04-22 23:13:52", "license": "1", "title": "Bulb Field, Lisse, The Netherlands", "text": "", "album_id": "72057594114925840", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/133639128_06ce71acd3_o.jpg", "secret": "06ce71acd3", "media": "photo", "latitude": "0", "id": "133639128", "tags": "holland netherlands dutch field bulb bulbs lisse"}, {"datetaken": "2006-04-22 23:14:24", "license": "1", "title": "Bulb Field, Lisse, The Netherlands", "text": "", "album_id": "72057594114925840", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/133639191_33e65f7708_o.jpg", "secret": "33e65f7708", "media": "photo", "latitude": "0", "id": "133639191", "tags": "holland netherlands dutch field bulb bulbs lisse"}, {"datetaken": "2006-04-22 23:14:31", "license": "1", "title": "Bulb Field, Lisse, The Netherlands", "text": "", "album_id": "72057594114925840", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/133639224_115adb946b_o.jpg", "secret": "115adb946b", "media": "photo", "latitude": "0", "id": "133639224", "tags": "holland netherlands dutch field bulb bulbs lisse"}, {"datetaken": "2006-04-22 23:14:51", "license": "1", "title": "Bulb Field, Lisse, The Netherlands", "text": "", "album_id": "72057594114925840", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/133639269_67e9340b2a_o.jpg", "secret": "67e9340b2a", "media": "photo", "latitude": "0", "id": "133639269", "tags": "holland netherlands dutch field bulb bulbs lisse"}, {"datetaken": "2006-04-23 00:46:07", "license": "1", "title": "Bulb Field, Lisse, The Netherlands", "text": "", "album_id": "72057594114925840", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/133639314_2f3a0ac5e4_o.jpg", "secret": "2f3a0ac5e4", "media": "photo", "latitude": "0", "id": "133639314", "tags": "holland netherlands dutch field bulb bulbs lisse"}, {"datetaken": "2006-04-23 03:38:36", "license": "1", "title": "Bulb Field, Lisse, The Netherlands", "text": "", "album_id": "72057594114925840", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/133639573_b49a60fff3_o.jpg", "secret": "b49a60fff3", "media": "photo", "latitude": "0", "id": "133639573", "tags": "holland netherlands dutch field bulb bulbs lisse"}, {"datetaken": "2006-04-23 03:41:33", "license": "1", "title": "Bulb Field, Lisse, The Netherlands", "text": "", "album_id": "72057594114925840", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/133639651_c3e38a42ed_o.jpg", "secret": "c3e38a42ed", "media": "photo", "latitude": "0", "id": "133639651", "tags": "holland netherlands dutch field bulb bulbs lisse"}, {"datetaken": "2006-04-23 03:54:07", "license": "1", "title": "Bulb Field, Lisse, The Netherlands", "text": "", "album_id": "72057594114925840", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/133639707_0327fea637_o.jpg", "secret": "0327fea637", "media": "photo", "latitude": "0", "id": "133639707", "tags": "holland netherlands dutch field bulb bulbs lisse"}, {"datetaken": "2006-04-23 04:03:59", "license": "1", "title": "Bulb Field, Lisse, The Netherlands", "text": "", "album_id": "72057594114925840", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/133639766_a997aeccff_o.jpg", "secret": "a997aeccff", "media": "photo", "latitude": "0", "id": "133639766", "tags": "holland netherlands dutch field bulb bulbs lisse"}, {"datetaken": "2006-04-23 04:05:31", "license": "1", "title": "Bulb Field, Lisse, The Netherlands", "text": "", "album_id": "72057594114925840", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/133639907_7f6052b26d_o.jpg", "secret": "7f6052b26d", "media": "photo", "latitude": "0", "id": "133639907", "tags": "holland netherlands dutch field bulb bulbs lisse"}, {"datetaken": "2006-04-23 04:09:53", "license": "1", "title": "Bulb Field, Lisse, The Netherlands", "text": "", "album_id": "72057594114925840", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/133639964_0897f872b7_o.jpg", "secret": "0897f872b7", "media": "photo", "latitude": "0", "id": "133639964", "tags": "holland netherlands dutch field bulb bulbs lisse"}, {"datetaken": "2006-04-23 12:26:05", "license": "1", "title": "House Near a Bulb Field, Lisse, The Netherlands", "text": "", "album_id": "72057594114925840", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/133639854_9d0266bf58_o.jpg", "secret": "9d0266bf58", "media": "photo", "latitude": "0", "id": "133639854", "tags": "holland netherlands dutch field bulb bulbs lisse"}, {"datetaken": "2005-09-15 14:06:34", "license": "5", "title": "DSC_0030", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/46250579_6f87eac38e_o.jpg", "secret": "6f87eac38e", "media": "photo", "latitude": "0", "id": "46250579", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:07:19", "license": "5", "title": "DSC_0031", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/46251335_52c03e5dbe_o.jpg", "secret": "52c03e5dbe", "media": "photo", "latitude": "0", "id": "46251335", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:08:14", "license": "5", "title": "DSC_0033", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/46252102_deabb900a0_o.jpg", "secret": "deabb900a0", "media": "photo", "latitude": "0", "id": "46252102", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:10:52", "license": "5", "title": "DSC_0036", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/46252844_f1bf24526f_o.jpg", "secret": "f1bf24526f", "media": "photo", "latitude": "0", "id": "46252844", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:11:14", "license": "5", "title": "DSC_0037", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/46254113_a9a71354b9_o.jpg", "secret": "a9a71354b9", "media": "photo", "latitude": "0", "id": "46254113", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:11:26", "license": "5", "title": "DSC_0038", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/46255811_e13a0cb5d9_o.jpg", "secret": "e13a0cb5d9", "media": "photo", "latitude": "0", "id": "46255811", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:12:59", "license": "5", "title": "DSC_0040", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/46256513_6570539e43_o.jpg", "secret": "6570539e43", "media": "photo", "latitude": "0", "id": "46256513", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:13:12", "license": "5", "title": "DSC_0041", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/46256919_64d5190395_o.jpg", "secret": "64d5190395", "media": "photo", "latitude": "0", "id": "46256919", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:26:37", "license": "5", "title": "DSC_0047", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46257598_a8cc08307a_o.jpg", "secret": "a8cc08307a", "media": "photo", "latitude": "0", "id": "46257598", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:28:28", "license": "5", "title": "DSC_0050", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/46258563_4c64e2784b_o.jpg", "secret": "4c64e2784b", "media": "photo", "latitude": "0", "id": "46258563", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:29:11", "license": "5", "title": "DSC_0051", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/46259083_623edd7edd_o.jpg", "secret": "623edd7edd", "media": "photo", "latitude": "0", "id": "46259083", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:30:18", "license": "5", "title": "DSC_0054", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/46260161_3f5e670e1b_o.jpg", "secret": "3f5e670e1b", "media": "photo", "latitude": "0", "id": "46260161", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:30:53", "license": "5", "title": "DSC_0057", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/46260874_db5dfb8bdd_o.jpg", "secret": "db5dfb8bdd", "media": "photo", "latitude": "0", "id": "46260874", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:32:54", "license": "5", "title": "DSC_0061", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/46262069_c3858d02bf_o.jpg", "secret": "c3858d02bf", "media": "photo", "latitude": "0", "id": "46262069", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:34:42", "license": "5", "title": "DSC_0063", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46262586_57704e0b0c_o.jpg", "secret": "57704e0b0c", "media": "photo", "latitude": "0", "id": "46262586", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:36:36", "license": "5", "title": "DSC_0066", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46263181_ec7c3e1c33_o.jpg", "secret": "ec7c3e1c33", "media": "photo", "latitude": "0", "id": "46263181", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:36:41", "license": "5", "title": "DSC_0067", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/46264164_4bf958e95a_o.jpg", "secret": "4bf958e95a", "media": "photo", "latitude": "0", "id": "46264164", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:36:50", "license": "5", "title": "DSC_0068", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/46264870_77726449e5_o.jpg", "secret": "77726449e5", "media": "photo", "latitude": "0", "id": "46264870", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:37:49", "license": "5", "title": "DSC_0071", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/46265618_1a9b5f9038_o.jpg", "secret": "1a9b5f9038", "media": "photo", "latitude": "0", "id": "46265618", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:38:25", "license": "5", "title": "DSC_0072", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/46266407_59bfe58b73_o.jpg", "secret": "59bfe58b73", "media": "photo", "latitude": "0", "id": "46266407", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:39:21", "license": "5", "title": "DSC_0076", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/46267005_1705894a7d_o.jpg", "secret": "1705894a7d", "media": "photo", "latitude": "0", "id": "46267005", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:40:55", "license": "5", "title": "DSC_0077", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/46267646_5d1c93a37e_o.jpg", "secret": "5d1c93a37e", "media": "photo", "latitude": "0", "id": "46267646", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:42:16", "license": "5", "title": "DSC_0079", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/46268163_88750ab0d6_o.jpg", "secret": "88750ab0d6", "media": "photo", "latitude": "0", "id": "46268163", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:42:35", "license": "5", "title": "DSC_0080", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46268648_b9f6a5935b_o.jpg", "secret": "b9f6a5935b", "media": "photo", "latitude": "0", "id": "46268648", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:42:55", "license": "5", "title": "DSC_0081", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/46268967_4b8ea7b872_o.jpg", "secret": "4b8ea7b872", "media": "photo", "latitude": "0", "id": "46268967", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:43:00", "license": "5", "title": "DSC_0082", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/46269492_996ac352fe_o.jpg", "secret": "996ac352fe", "media": "photo", "latitude": "0", "id": "46269492", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:43:06", "license": "5", "title": "DSC_0083", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/46270477_b13d40c892_o.jpg", "secret": "b13d40c892", "media": "photo", "latitude": "0", "id": "46270477", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:43:12", "license": "5", "title": "DSC_0084", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/46271614_1fb8f62507_o.jpg", "secret": "1fb8f62507", "media": "photo", "latitude": "0", "id": "46271614", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:43:26", "license": "5", "title": "DSC_0085", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/46410551_3ebe6d2125_o.jpg", "secret": "3ebe6d2125", "media": "photo", "latitude": "0", "id": "46410551", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:44:17", "license": "5", "title": "DSC_0089", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/46412268_c64cc31882_o.jpg", "secret": "c64cc31882", "media": "photo", "latitude": "0", "id": "46412268", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:45:11", "license": "5", "title": "DSC_0094", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46412576_30d00dcceb_o.jpg", "secret": "30d00dcceb", "media": "photo", "latitude": "0", "id": "46412576", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:45:46", "license": "5", "title": "DSC_0097_edited-1", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/46412799_efce22f12b_o.jpg", "secret": "efce22f12b", "media": "photo", "latitude": "0", "id": "46412799", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:48:34", "license": "5", "title": "DSC_0098", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/46413435_5dd2e1ca6c_o.jpg", "secret": "5dd2e1ca6c", "media": "photo", "latitude": "0", "id": "46413435", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:48:47", "license": "5", "title": "DSC_0099", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46414547_2a3edcdbbc_o.jpg", "secret": "2a3edcdbbc", "media": "photo", "latitude": "0", "id": "46414547", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 14:49:02", "license": "5", "title": "DSC_0100", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/46415184_06d9b104a7_o.jpg", "secret": "06d9b104a7", "media": "photo", "latitude": "0", "id": "46415184", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 15:25:53", "license": "5", "title": "DSC_0101", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/46415695_a9fe6626c7_o.jpg", "secret": "a9fe6626c7", "media": "photo", "latitude": "0", "id": "46415695", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 15:26:00", "license": "5", "title": "DSC_0103", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/46416620_e450472666_o.jpg", "secret": "e450472666", "media": "photo", "latitude": "0", "id": "46416620", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 15:27:25", "license": "5", "title": "DSC_0105", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/46417071_6fd3a9d1b3_o.jpg", "secret": "6fd3a9d1b3", "media": "photo", "latitude": "0", "id": "46417071", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 15:28:54", "license": "5", "title": "DSC_0110", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/46417750_a5cc36ab48_o.jpg", "secret": "a5cc36ab48", "media": "photo", "latitude": "0", "id": "46417750", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 15:30:03", "license": "5", "title": "DSC_0116", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/46418808_c64936adc4_o.jpg", "secret": "c64936adc4", "media": "photo", "latitude": "0", "id": "46418808", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 15:30:19", "license": "5", "title": "DSC_0118", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/46419349_746cb954e4_o.jpg", "secret": "746cb954e4", "media": "photo", "latitude": "0", "id": "46419349", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 15:30:30", "license": "5", "title": "DSC_0121", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/46420652_a50aa81f24_o.jpg", "secret": "a50aa81f24", "media": "photo", "latitude": "0", "id": "46420652", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 15:30:46", "license": "5", "title": "DSC_0122", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/46421293_28b54552db_o.jpg", "secret": "28b54552db", "media": "photo", "latitude": "0", "id": "46421293", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 15:32:55", "license": "5", "title": "DSC_0124", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/46422404_95fb4c6bbb_o.jpg", "secret": "95fb4c6bbb", "media": "photo", "latitude": "0", "id": "46422404", "tags": "temple square salt lake city conference center"}, {"datetaken": "2005-09-15 15:33:42", "license": "5", "title": "DSC_0125", "text": "", "album_id": "1016196", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/46249745_9106737f05_o.jpg", "secret": "9106737f05", "media": "photo", "latitude": "0", "id": "46249745", "tags": "temple square salt lake city conference center"}, {"datetaken": "2006-02-10 06:51:58", "license": "4", "title": "Istanbul.hotel.1", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/111141128_47d6947821_o.jpg", "secret": "47d6947821", "media": "photo", "latitude": "0", "id": "111141128", "tags": "travel turkiye 123 istanbul sonycybershot pspx nothdr"}, {"datetaken": "2006-02-10 09:02:19", "license": "4", "title": "streets of Istanbul", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/135284395_77c37cee4c_o.jpg", "secret": "77c37cee4c", "media": "photo", "latitude": "0", "id": "135284395", "tags": "traffic turkiye toycamera istanbul coldweather wetstreets pspx nothdr streetsofistanbul"}, {"datetaken": "2006-02-10 11:34:47", "license": "4", "title": "walking", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/135846252_0f848c3149_o.jpg", "secret": "0f848c3149", "media": "photo", "latitude": "0", "id": "135846252", "tags": "interestingness toycamera 123 istanbul babel top500 pspx nothdr streetsofistanbul formerlyconstantinople 97interestingness42706"}, {"datetaken": "2006-02-10 12:04:00", "license": "4", "title": "Happy Turkish Slippers Valentine", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/99756096_4f4763b80e_o.jpg", "secret": "4f4763b80e", "media": "photo", "latitude": "0", "id": "99756096", "tags": "wow turkiye valentine babel turkeyturkey"}, {"datetaken": "2006-02-10 13:08:32", "license": "4", "title": "juxta", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/99902221_5ed1a84719_o.jpg", "secret": "5ed1a84719", "media": "photo", "latitude": "0", "id": "99902221", "tags": "turkiye istanbul"}, {"datetaken": "2006-02-10 14:31:29", "license": "4", "title": "carpet pile", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/98913622_099ae36a68_o.jpg", "secret": "099ae36a68", "media": "photo", "latitude": "0", "id": "98913622", "tags": "gutentag turkiye istanbul"}, {"datetaken": "2006-02-11 11:16:49", "license": "4", "title": "ancient stones", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/134955453_35944a651b_o.jpg", "secret": "35944a651b", "media": "photo", "latitude": "0", "id": "134955453", "tags": "myshoes edirne turkiyeformerlyadrianople theselimiyemosque"}, {"datetaken": "2006-02-11 13:21:30", "license": "4", "title": "reaching skyward", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/134967029_950385a843_o.jpg", "secret": "950385a843", "media": "photo", "latitude": "0", "id": "134967029", "tags": "turkiye toycamera 321 edirne pspx 123travel nothdr formerlyadrianople theselimiyemosque"}, {"datetaken": "2006-02-11 13:25:15", "license": "4", "title": "more details", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/135059720_82ca8a619a_o.jpg", "secret": "82ca8a619a", "media": "photo", "latitude": "0", "id": "135059720", "tags": "interestingness turkiye toycamera 123 edirne abovemyhead top500 pspx nothdr formerlyadrianople theselimiyemosque 276interestingness42506"}, {"datetaken": "2006-02-11 13:28:29", "license": "4", "title": "windows", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/98919329_5dfa0c25c7_o.jpg", "secret": "d21697734b", "media": "photo", "latitude": "0", "id": "98919329", "tags": "interestingness gutentag turkiye 321 worldtravel 50v5f top500 edirneturkiye 237interestingness21206"}, {"datetaken": "2006-02-11 13:38:07", "license": "4", "title": "details of Selimiye", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/135046587_052eebd176_o.jpg", "secret": "052eebd176", "media": "photo", "latitude": "0", "id": "135046587", "tags": "turkiye toycamera edirne pspx nothdr formerlyadrianople theselimiyemosque"}, {"datetaken": "2006-02-11 13:39:22", "license": "4", "title": "from above", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/99178678_318ee704c0_o.jpg", "secret": "318ee704c0", "media": "photo", "latitude": "0", "id": "99178678", "tags": "gutentag babel edirne turkiiye"}, {"datetaken": "2006-02-11 14:33:30", "license": "4", "title": "spires reaching skyward", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/112070696_c6961b2070_o.jpg", "secret": "c6961b2070", "media": "photo", "latitude": "0", "id": "112070696", "tags": "travel interestingness turkiye 123 321 edirne top500 325interestingness031306"}, {"datetaken": "2006-02-11 14:35:01", "license": "4", "title": "Taksi", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/135822685_3325fec33f_o.jpg", "secret": "3325fec33f", "media": "photo", "latitude": "0", "id": "135822685", "tags": "taxi turkiye toycamera babel taksi edirne pspx nothdr formerlyadrianople"}, {"datetaken": "2006-02-11 15:51:29", "license": "4", "title": "Edirne Traffic", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/135292440_a82115fd74_o.jpg", "secret": "a82115fd74", "media": "photo", "latitude": "0", "id": "135292440", "tags": "turkiye toycamera edirne pspx nothdr formerlyadrianople"}, {"datetaken": "2006-02-11 15:51:45", "license": "4", "title": "delivery or..?..(DiGiorno)", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/135810071_e310f3128f_o.jpg", "secret": "e310f3128f", "media": "photo", "latitude": "0", "id": "135810071", "tags": "turkiye toycamera edirne pspx formerlyadrianople"}, {"datetaken": "2006-02-11 15:52:37", "license": "4", "title": "find the OTOGAR !", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/99751718_b82a5041c1_o.jpg", "secret": "b82a5041c1", "media": "photo", "latitude": "0", "id": "99751718", "tags": "turkiye"}, {"datetaken": "2006-02-11 15:52:37", "license": "4", "title": "many things-redux", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/135832887_52b8f4d9f4_o.jpg", "secret": "52b8f4d9f4", "media": "photo", "latitude": "0", "id": "135832887", "tags": "turkiye toycamera highcontrast edirne pspx nothdr formerlyadrianople"}, {"datetaken": "2006-02-11 19:33:09", "license": "4", "title": "Otogar!", "text": "", "album_id": "72057594064205885", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/99898241_b77077ef0c_o.jpg", "secret": "b77077ef0c", "media": "photo", "latitude": "0", "id": "99898241", "tags": "metro turkiye kurdish kurdi"}, {"datetaken": "2005-11-25 01:12:10", "license": "1", "title": "Farm house from Shiiba, Miyazaki", "text": "", "album_id": "1439397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66720221_3d8c2361e5_o.jpg", "secret": "3d8c2361e5", "media": "photo", "latitude": "0", "id": "66720221", "tags": "japan"}, {"datetaken": "2005-11-25 01:12:45", "license": "1", "title": "House from Akiyama, Nagano", "text": "", "album_id": "1439397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/66720230_780a46d619_o.jpg", "secret": "780a46d619", "media": "photo", "latitude": "0", "id": "66720230", "tags": "japan"}, {"datetaken": "2005-11-25 01:16:12", "license": "1", "title": "House from Totsukawa, Nara", "text": "", "album_id": "1439397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66720237_8909e46f81_o.jpg", "secret": "8909e46f81", "media": "photo", "latitude": "0", "id": "66720237", "tags": "japan"}, {"datetaken": "2005-11-25 01:18:00", "license": "1", "title": "House from Tsuruga, Fukui", "text": "", "album_id": "1439397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/66720238_d5f31bf87c_o.jpg", "secret": "d5f31bf87c", "media": "photo", "latitude": "0", "id": "66720238", "tags": "japan"}, {"datetaken": "2005-11-25 01:20:53", "license": "1", "title": "\"Magariya\" stlye house from Namba", "text": "", "album_id": "1439397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/66720250_de0af3230d_o.jpg", "secret": "de0af3230d", "media": "photo", "latitude": "0", "id": "66720250", "tags": "japan"}, {"datetaken": "2005-11-25 01:22:49", "license": "1", "title": "Windmill", "text": "", "album_id": "1439397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66720257_663f3b4979_o.jpg", "secret": "663f3b4979", "media": "photo", "latitude": "0", "id": "66720257", "tags": "japan"}, {"datetaken": "2005-11-25 01:26:27", "license": "1", "title": "House from Settsu-Nose, Osaka", "text": "", "album_id": "1439397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/66720269_caf0c96021_o.jpg", "secret": "caf0c96021", "media": "photo", "latitude": "0", "id": "66720269", "tags": "japan"}, {"datetaken": "2005-11-25 01:28:13", "license": "1", "title": "Bamboo", "text": "", "album_id": "1439397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/66720277_c9bb2d3e5f_o.jpg", "secret": "c9bb2d3e5f", "media": "photo", "latitude": "0", "id": "66720277", "tags": "japan"}, {"datetaken": "2005-11-25 01:29:05", "license": "1", "title": "The mother load", "text": "", "album_id": "1439397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/66720292_fdb05a11c0_o.jpg", "secret": "fdb05a11c0", "media": "photo", "latitude": "0", "id": "66720292", "tags": "japan"}, {"datetaken": "2005-11-25 01:29:54", "license": "1", "title": "House from Shirakawa, Gifu", "text": "", "album_id": "1439397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66720303_732301ad83_o.jpg", "secret": "732301ad83", "media": "photo", "latitude": "0", "id": "66720303", "tags": "japan"}, {"datetaken": "2005-11-25 01:33:35", "license": "1", "title": "Scarecrows", "text": "", "album_id": "1439397", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/66720312_11b705d8a4_o.jpg", "secret": "11b705d8a4", "media": "photo", "latitude": "0", "id": "66720312", "tags": "japan"}, {"datetaken": "2006-03-28 13:40:29", "license": "4", "title": "Run-down farm house", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/119470039_958f0a2a2c_o.jpg", "secret": "958f0a2a2c", "media": "photo", "latitude": "0", "id": "119470039", "tags": "old trip house building march tn farm tennessee 2006 gatlinburg rundown"}, {"datetaken": "2006-03-28 13:45:07", "license": "4", "title": "Old Building", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/119490135_b0a3a05850_o.jpg", "secret": "b0a3a05850", "media": "photo", "latitude": "0", "id": "119490135", "tags": "old trip building march tn tennessee 2006 gatlinburg"}, {"datetaken": "2006-03-28 13:45:23", "license": "4", "title": "Water under the bridge", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/119490775_006fffcb67_o.jpg", "secret": "006fffcb67", "media": "photo", "latitude": "0", "id": "119490775", "tags": "trip bridge water march tn tennessee under 2006 gatlinburg"}, {"datetaken": "2006-03-28 13:46:18", "license": "4", "title": "Lonely Cow", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/119495291_65907238fb_o.jpg", "secret": "65907238fb", "media": "photo", "latitude": "0", "id": "119495291", "tags": "trip march cow alone tn tennessee 2006 lone lonely gatlinburg"}, {"datetaken": "2006-03-28 13:46:24", "license": "4", "title": "Old Building", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/119495743_e29e049d71_o.jpg", "secret": "e29e049d71", "media": "photo", "latitude": "0", "id": "119495743", "tags": "old trip building march tn tennessee 2006 gatlinburg"}, {"datetaken": "2006-03-28 13:46:30", "license": "4", "title": "Old Building", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/119496398_d750b05817_o.jpg", "secret": "d750b05817", "media": "photo", "latitude": "0", "id": "119496398", "tags": "old trip building march tn tennessee 2006 gatlinburg"}, {"datetaken": "2006-03-28 13:46:36", "license": "4", "title": "Old Building", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/119497050_d0d7a41da9_o.jpg", "secret": "d0d7a41da9", "media": "photo", "latitude": "0", "id": "119497050", "tags": "old trip building march tn tennessee 2006 gatlinburg"}, {"datetaken": "2006-03-28 13:47:15", "license": "4", "title": "Old Barbed Wire", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/119497323_d2b3b9128e_o.jpg", "secret": "d2b3b9128e", "media": "photo", "latitude": "0", "id": "119497323", "tags": "old trip march wire tn tennessee 2006 gatlinburg barb barbed"}, {"datetaken": "2006-03-28 13:47:40", "license": "4", "title": "New Barbed Wire", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/119497713_d381145710_o.jpg", "secret": "d381145710", "media": "photo", "latitude": "0", "id": "119497713", "tags": "new trip march wire tn tennessee 2006 gatlinburg barb barbed"}, {"datetaken": "2006-03-28 14:00:30", "license": "4", "title": "Mountains in the distance", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/119497886_651366582d_o.jpg", "secret": "651366582d", "media": "photo", "latitude": "0", "id": "119497886", "tags": "trip mountains look out march tn tennessee 2006 gatlinburg distance"}, {"datetaken": "2006-03-28 14:00:34", "license": "4", "title": "Mountains in the distance", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/119498008_7666d585b4_o.jpg", "secret": "7666d585b4", "media": "photo", "latitude": "0", "id": "119498008", "tags": "trip mountains look out march tn tennessee 2006 gatlinburg distance"}, {"datetaken": "2006-03-28 14:00:38", "license": "4", "title": "Into the valley", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/119498308_ece259837f_o.jpg", "secret": "ece259837f", "media": "photo", "latitude": "0", "id": "119498308", "tags": "city trip march tn tennessee 2006 valley gatlinburg across"}, {"datetaken": "2006-03-28 14:01:26", "license": "4", "title": "Mountains in the distance", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/119498532_7091f5abf7_o.jpg", "secret": "7091f5abf7", "media": "photo", "latitude": "0", "id": "119498532", "tags": "trip mountains look out march tn tennessee 2006 gatlinburg distance"}, {"datetaken": "2006-03-28 14:01:30", "license": "4", "title": "Mountains in the distance", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/119498781_57801e76ee_o.jpg", "secret": "57801e76ee", "media": "photo", "latitude": "0", "id": "119498781", "tags": "trip mountains look out march tn tennessee 2006 gatlinburg distance"}, {"datetaken": "2006-03-28 14:02:34", "license": "4", "title": "Bird in the air", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/119499037_b473675f21_o.jpg", "secret": "b473675f21", "media": "photo", "latitude": "0", "id": "119499037", "tags": "trip bird march fly flying tn tennessee over 2006 valley gatlinburg"}, {"datetaken": "2006-03-28 14:04:38", "license": "4", "title": "Rustic Fence", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/119499475_640c030220_o.jpg", "secret": "640c030220", "media": "photo", "latitude": "0", "id": "119499475", "tags": "old trip fence march wooden tn tennessee rustic 2006 gatlinburg"}, {"datetaken": "2006-03-28 14:04:54", "license": "4", "title": "Rustic Fence", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/119500183_d85d3a3a86_o.jpg", "secret": "d85d3a3a86", "media": "photo", "latitude": "0", "id": "119500183", "tags": "old trip fence march wooden tn tennessee rustic 2006 gatlinburg"}, {"datetaken": "2006-03-28 14:04:57", "license": "4", "title": "Rustic Fence", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/119501230_c71176490d_o.jpg", "secret": "c71176490d", "media": "photo", "latitude": "0", "id": "119501230", "tags": "fence old wooden rustic march 2006 gatlinburg tn tennessee trip"}, {"datetaken": "2006-03-29 17:00:23", "license": "4", "title": "Broke Down Wagon Wheel", "text": "", "album_id": "72057594092966449", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/122640018_7d5ee55c6a_o.jpg", "secret": "7d5ee55c6a", "media": "photo", "latitude": "0", "id": "122640018", "tags": "park mountain wheel wagon tn cove tennessee great national gatlinburg smoky cade"}, {"datetaken": "2005-09-23 13:00:09", "license": "1", "title": "university of uppsala", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/24/47385715_a084ae1725_o.jpg", "secret": "a084ae1725", "media": "photo", "latitude": "59.869640", "id": "47385715", "tags": "europe scandinavia sweden uppsala university students lawn fuji f10"}, {"datetaken": "2005-09-23 13:08:18", "license": "1", "title": "walking into town with carles", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/24/47385731_6bc9318a1e_o.jpg", "secret": "6bc9318a1e", "media": "photo", "latitude": "59.869640", "id": "47385731", "tags": "europe scandinavia sweden uppsala bike path trees fuji f10"}, {"datetaken": "2005-09-23 13:13:19", "license": "1", "title": "\"yes, the F10 has very little shutter lag...\"", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/29/47385738_73ff24cbbd_o.jpg", "secret": "73ff24cbbd", "media": "photo", "latitude": "59.869640", "id": "47385738", "tags": "europe scandinavia sweden uppsala candid fuji f10"}, {"datetaken": "2005-09-23 13:18:37", "license": "1", "title": "downtown uppsala", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/32/47385750_134a48fb50_o.jpg", "secret": "134a48fb50", "media": "photo", "latitude": "59.869640", "id": "47385750", "tags": "europe scandinavia sweden uppsala crowds shopping street downtown fuji f10"}, {"datetaken": "2005-09-23 13:21:29", "license": "1", "title": "renee, carles, and jennifer", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/32/47385755_36ceee8880_o.jpg", "secret": "36ceee8880", "media": "photo", "latitude": "59.869640", "id": "47385755", "tags": "europe scandinavia sweden uppsala fuji f10"}, {"datetaken": "2005-09-23 13:25:15", "license": "1", "title": "waiting for lunch", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/32/47385763_85ea2715c6_o.jpg", "secret": "85ea2715c6", "media": "photo", "latitude": "59.869640", "id": "47385763", "tags": "europe scandinavia sweden uppsala fuji f10"}, {"datetaken": "2005-09-23 13:31:32", "license": "1", "title": "carles enjoys his beer", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/28/47385769_ac512a4912_o.jpg", "secret": "ac512a4912", "media": "photo", "latitude": "59.869640", "id": "47385769", "tags": "europe scandinavia sweden uppsala beer fuji f10"}, {"datetaken": "2005-09-23 13:35:20", "license": "1", "title": "jennifer and carles", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/30/47385778_6d89c858d2_o.jpg", "secret": "6d89c858d2", "media": "photo", "latitude": "59.869640", "id": "47385778", "tags": "europe scandinavia sweden uppsala fuji f10"}, {"datetaken": "2005-09-23 14:02:42", "license": "1", "title": "a point is made", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/31/47385784_50c45fb0a9_o.jpg", "secret": "50c45fb0a9", "media": "photo", "latitude": "59.869640", "id": "47385784", "tags": "europe scandinavia sweden uppsala fuji f10"}, {"datetaken": "2005-09-23 14:13:55", "license": "1", "title": "jennifer takes our picture", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/27/47385795_9da6c46345_o.jpg", "secret": "9da6c46345", "media": "photo", "latitude": "59.869640", "id": "47385795", "tags": "europe scandinavia sweden uppsala couple fuji f10"}, {"datetaken": "2005-09-23 14:14:42", "license": "1", "title": "i take jennifer's picture", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/31/47385808_5a23d2cbb4_o.jpg", "secret": "5a23d2cbb4", "media": "photo", "latitude": "59.869640", "id": "47385808", "tags": "europe scandinavia sweden uppsala fuji f10"}, {"datetaken": "2005-09-23 14:39:32", "license": "1", "title": "heading back to the university", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/33/47385830_d89d681ff1_o.jpg", "secret": "d89d681ff1", "media": "photo", "latitude": "59.869640", "id": "47385830", "tags": "europe scandinavia sweden uppsala bridge bikes flowers fuji f10"}, {"datetaken": "2005-09-23 14:41:08", "license": "1", "title": "sweden, brightly painted", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/25/47385843_aa632df0a4_o.jpg", "secret": "aa632df0a4", "media": "photo", "latitude": "59.869640", "id": "47385843", "tags": "europe scandinavia sweden uppsala brightcolors bikes buildings spires fuji f10"}, {"datetaken": "2005-09-23 14:44:56", "license": "1", "title": "the castle tower", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/24/47385857_7c8ff32ceb_o.jpg", "secret": "7c8ff32ceb", "media": "photo", "latitude": "59.869640", "id": "47385857", "tags": "europe scandinavia sweden uppsala castle turret pink trees foliage fuji f10"}, {"datetaken": "2005-09-23 14:57:30", "license": "1", "title": "shrooms", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/31/47385878_a6c49702ea_o.jpg", "secret": "a6c49702ea", "media": "photo", "latitude": "59.869640", "id": "47385878", "tags": "europe scandinavia sweden uppsala mushrooms macro fuji f10"}, {"datetaken": "2005-09-23 16:55:14", "license": "1", "title": "a view from jennifer's office", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/25/47385881_801aae67dd_o.jpg", "secret": "801aae67dd", "media": "photo", "latitude": "59.869640", "id": "47385881", "tags": "europe scandinavia sweden uppsala university buildings fuji f10"}, {"datetaken": "2005-09-23 17:54:36", "license": "1", "title": "a visit to IKEA", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/25/47385889_9b036475e4_o.jpg", "secret": "9b036475e4", "media": "photo", "latitude": "59.869640", "id": "47385889", "tags": "europe scandinavia sweden uppsala ikea fuji f10"}, {"datetaken": "2005-09-23 17:55:23", "license": "1", "title": "not much different from home", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/31/47385898_2097e95268_o.jpg", "secret": "2097e95268", "media": "photo", "latitude": "59.869640", "id": "47385898", "tags": "europe scandinavia sweden uppsala ikea furniture fuji f10"}, {"datetaken": "2005-09-23 18:02:05", "license": "1", "title": "a friendly salesperson", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/31/47385904_88ca20d6c6_o.jpg", "secret": "88ca20d6c6", "media": "photo", "latitude": "59.869640", "id": "47385904", "tags": "europe scandinavia sweden uppsala ikea cutout advertising fuji f10"}, {"datetaken": "2005-09-23 18:24:56", "license": "1", "title": "finding a laptop bag", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/27/47385912_41df298519_o.jpg", "secret": "41df298519", "media": "photo", "latitude": "59.869640", "id": "47385912", "tags": "europe scandinavia sweden uppsala ikea shopping fuji f10"}, {"datetaken": "2005-09-23 18:43:27", "license": "1", "title": "hypermarche coop", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/32/47385924_a20df4331d_o.jpg", "secret": "a20df4331d", "media": "photo", "latitude": "59.869640", "id": "47385924", "tags": "europe scandinavia sweden uppsala supermarket coop shopping frozen fuji f10"}, {"datetaken": "2005-09-23 18:43:40", "license": "1", "title": "lingonberry drink boxes", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/27/47385931_e0b7444df0_o.jpg", "secret": "e0b7444df0", "media": "photo", "latitude": "59.869640", "id": "47385931", "tags": "europe scandinavia sweden uppsala supermarket shopping juice boxes lingonberry fuji f10"}, {"datetaken": "2005-09-23 18:57:37", "license": "1", "title": "checking out", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/31/47385941_2610dd939c_o.jpg", "secret": "2610dd939c", "media": "photo", "latitude": "59.869640", "id": "47385941", "tags": "europe scandinavia sweden uppsala supermarket checkout coop shopping fuji f10"}, {"datetaken": "2005-09-23 19:05:25", "license": "1", "title": "driving home", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/33/47385944_b60f33f748_o.jpg", "secret": "b60f33f748", "media": "photo", "latitude": "59.869640", "id": "47385944", "tags": "europe scandinavia sweden uppsala driving sunset fuji f10"}, {"datetaken": "2005-09-24 10:09:01", "license": "1", "title": "jennifer makes muffins", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/24/47385954_82a4e5b345_o.jpg", "secret": "82a4e5b345", "media": "photo", "latitude": "59.869640", "id": "47385954", "tags": "europe scandinavia sweden uppsala candid muffins kitchen cooking fuji f10"}, {"datetaken": "2005-09-24 10:10:53", "license": "1", "title": "the patio", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/29/47385972_8c5b6f99b2_o.jpg", "secret": "8c5b6f99b2", "media": "photo", "latitude": "59.869640", "id": "47385972", "tags": "europe scandinavia sweden uppsala porch table hammock fuji f10"}, {"datetaken": "2005-09-24 10:11:26", "license": "1", "title": "cat got my camera", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/28/47385978_e00d4b42f6_o.jpg", "secret": "e00d4b42f6", "media": "photo", "latitude": "59.869640", "id": "47385978", "tags": "europe scandinavia sweden uppsala cat play kitten fuji f10"}, {"datetaken": "2005-09-24 10:11:46", "license": "1", "title": "\"matte cat\" a.k.a almondina a.k.a gato dos", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/24/47385988_fee0e11c64_o.jpg", "secret": "fee0e11c64", "media": "photo", "latitude": "59.869640", "id": "47385988", "tags": "europe scandinavia sweden uppsala cat kitten fuji f10"}, {"datetaken": "2005-09-24 10:12:14", "license": "1", "title": "close up", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/31/47386001_7fac9ba547_o.jpg", "secret": "7fac9ba547", "media": "photo", "latitude": "59.869640", "id": "47386001", "tags": "europe scandinavia sweden uppsala cat kitten closeup whiskers macro fuji f10"}, {"datetaken": "2005-09-24 10:15:00", "license": "1", "title": "the backyard", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/31/47386013_506f28765e_o.jpg", "secret": "506f28765e", "media": "photo", "latitude": "59.869640", "id": "47386013", "tags": "europe scandinavia sweden uppsala yard fuji f10"}, {"datetaken": "2005-09-24 10:15:43", "license": "1", "title": "the house out back", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/31/47386044_b2ebf079ee_o.jpg", "secret": "b2ebf079ee", "media": "photo", "latitude": "59.869640", "id": "47386044", "tags": "europe scandinavia sweden uppsala yard shed fuji f10"}, {"datetaken": "2005-09-24 10:17:58", "license": "1", "title": "a view from the street", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/28/47386062_3802fda1d5_o.jpg", "secret": "3802fda1d5", "media": "photo", "latitude": "59.869640", "id": "47386062", "tags": "europe scandinavia sweden uppsala house hedges fuji f10"}, {"datetaken": "2005-09-24 10:19:12", "license": "1", "title": "the patio once again", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/31/47386078_93ed1aa6a4_o.jpg", "secret": "93ed1aa6a4", "media": "photo", "latitude": "59.869640", "id": "47386078", "tags": "europe scandinavia sweden uppsala yard porch fuji f10"}, {"datetaken": "2005-09-24 10:47:29", "license": "1", "title": "sitting down for breakfast", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/28/47386089_f7f3b58979_o.jpg", "secret": "f7f3b58979", "media": "photo", "latitude": "59.869640", "id": "47386089", "tags": "europe scandinavia sweden uppsala breakfast fuji f10"}, {"datetaken": "2005-09-24 10:47:38", "license": "1", "title": "carles gets the hot sauce", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/29/47386098_2909cd5178_o.jpg", "secret": "2909cd5178", "media": "photo", "latitude": "59.869640", "id": "47386098", "tags": "europe scandinavia sweden uppsala breakfast fuji f10"}, {"datetaken": "2005-09-24 11:24:52", "license": "1", "title": "carles and carlos", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/24/47386115_241626c679_o.jpg", "secret": "241626c679", "media": "photo", "latitude": "59.869640", "id": "47386115", "tags": "europe scandinavia sweden uppsala breakfast fuji f10"}, {"datetaken": "2005-09-24 12:31:42", "license": "1", "title": "gato uno takes his turn", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/33/47386121_3452778cb4_o.jpg", "secret": "3452778cb4", "media": "photo", "latitude": "59.869640", "id": "47386121", "tags": "europe scandinavia sweden uppsala cat kitten whiskers fuji f10"}, {"datetaken": "2005-09-24 12:59:25", "license": "1", "title": "another cute cat shot", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/28/47386127_328c9ece8e_o.jpg", "secret": "328c9ece8e", "media": "photo", "latitude": "59.869640", "id": "47386127", "tags": "europe scandinavia sweden uppsala cat kitten whiskers fuji f10"}, {"datetaken": "2005-09-24 13:22:13", "license": "1", "title": "renee at the breakfast table", "text": "", "album_id": "1032916", "longitude": "17.622070", "url_o": "https://farm1.staticflickr.com/30/47390761_9d2611d6cb_o.jpg", "secret": "9d2611d6cb", "media": "photo", "latitude": "59.869640", "id": "47390761", "tags": "fuji f10"}, {"datetaken": "2006-09-14 15:10:40", "license": "6", "title": "St. Paul's Church", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/110/254790181_593ee91ba4_o.jpg", "secret": "593ee91ba4", "media": "photo", "latitude": "0", "id": "254790181", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 15:45:04", "license": "6", "title": "Canal boats", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/109/254790222_9578e22ce2_o.jpg", "secret": "9578e22ce2", "media": "photo", "latitude": "0", "id": "254790222", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 15:45:29", "license": "6", "title": "DSCN6773", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/100/254790274_53abbc6470_o.jpg", "secret": "53abbc6470", "media": "photo", "latitude": "0", "id": "254790274", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:01:46", "license": "6", "title": "St. Niklaaskerk 2", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/104/254790298_bddfdf5f74_o.jpg", "secret": "bddfdf5f74", "media": "photo", "latitude": "0", "id": "254790298", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:02:32", "license": "6", "title": "Ghent Bell Tower", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/122/254790316_3142481bb0_o.jpg", "secret": "3142481bb0", "media": "photo", "latitude": "0", "id": "254790316", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:03:36", "license": "6", "title": "Post office 2", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/100/254790334_e681b25785_o.jpg", "secret": "e681b25785", "media": "photo", "latitude": "0", "id": "254790334", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:04:32", "license": "6", "title": "Letterbox", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/100/254790345_08df3308ee_o.jpg", "secret": "08df3308ee", "media": "photo", "latitude": "0", "id": "254790345", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:05:34", "license": "6", "title": "Street scene", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/254790369_9e59228a5e_o.jpg", "secret": "9e59228a5e", "media": "photo", "latitude": "0", "id": "254790369", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:06:38", "license": "6", "title": "Post office", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/103/254790404_fc945e96b0_o.jpg", "secret": "fc945e96b0", "media": "photo", "latitude": "0", "id": "254790404", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:08:37", "license": "6", "title": "St. Michael's Church", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/254790431_513ecf863b_o.jpg", "secret": "513ecf863b", "media": "photo", "latitude": "0", "id": "254790431", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:09:11", "license": "6", "title": "St. Niklaaskerk", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/254790440_0ec738f72c_o.jpg", "secret": "0ec738f72c", "media": "photo", "latitude": "0", "id": "254790440", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:09:45", "license": "6", "title": "Canalside", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/254790464_44a348aeaa_o.jpg", "secret": "44a348aeaa", "media": "photo", "latitude": "0", "id": "254790464", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:14:41", "license": "6", "title": "Brasserie Borluut", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/254790501_614d4f6194_o.jpg", "secret": "614d4f6194", "media": "photo", "latitude": "0", "id": "254790501", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:17:17", "license": "6", "title": "DSCN6794", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/117/254790560_f798212677_o.jpg", "secret": "f798212677", "media": "photo", "latitude": "0", "id": "254790560", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:17:48", "license": "6", "title": "Market building", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/254790598_8623d13273_o.jpg", "secret": "8623d13273", "media": "photo", "latitude": "0", "id": "254790598", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:19:06", "license": "6", "title": "Flowers", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/113/254790609_32a7579da8_o.jpg", "secret": "32a7579da8", "media": "photo", "latitude": "0", "id": "254790609", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:19:38", "license": "6", "title": "Industrial Ghent", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/113/254790612_462aa060a2_o.jpg", "secret": "462aa060a2", "media": "photo", "latitude": "0", "id": "254790612", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:21:11", "license": "6", "title": "Gravensteen Castle 3", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/116/254790628_0b22aff224_o.jpg", "secret": "0b22aff224", "media": "photo", "latitude": "0", "id": "254790628", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:22:02", "license": "6", "title": "Gravensteen Castle 2", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/254790648_5edb2a60b9_o.jpg", "secret": "5edb2a60b9", "media": "photo", "latitude": "0", "id": "254790648", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:23:00", "license": "6", "title": "Lion of Ghent 2", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/254790666_54c44e6b24_o.jpg", "secret": "54c44e6b24", "media": "photo", "latitude": "0", "id": "254790666", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:23:15", "license": "6", "title": "Lion of Ghent", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/254790683_682767eef1_o.jpg", "secret": "682767eef1", "media": "photo", "latitude": "0", "id": "254790683", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:23:33", "license": "6", "title": "Spiderweb", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/254790727_3a43020cee_o.jpg", "secret": "3a43020cee", "media": "photo", "latitude": "0", "id": "254790727", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:26:16", "license": "6", "title": "House of Elliott", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/254790754_2c60f9236c_o.jpg", "secret": "2c60f9236c", "media": "photo", "latitude": "0", "id": "254790754", "tags": "2006 ghent"}, {"datetaken": "2006-09-14 17:26:26", "license": "6", "title": "Gravensteen Castle", "text": "", "album_id": "72157594303148181", "longitude": "0", "url_o": "https://farm1.staticflickr.com/110/254790769_3163b0f8cf_o.jpg", "secret": "3163b0f8cf", "media": "photo", "latitude": "0", "id": "254790769", "tags": "2006 ghent"}, {"datetaken": "2006-04-10 13:14:10", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.155153", "url_o": "https://farm1.staticflickr.com/48/136775173_96ecfc29d4_o.jpg", "secret": "96ecfc29d4", "media": "photo", "latitude": "36.073799", "id": "136775173", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 13:14:17", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.155153", "url_o": "https://farm1.staticflickr.com/44/136775305_f74dca0f4f_o.jpg", "secret": "f74dca0f4f", "media": "photo", "latitude": "36.073799", "id": "136775305", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 13:14:21", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.155153", "url_o": "https://farm1.staticflickr.com/55/136775413_197649b724_o.jpg", "secret": "197649b724", "media": "photo", "latitude": "36.073799", "id": "136775413", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 13:18:17", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.155153", "url_o": "https://farm1.staticflickr.com/51/136775837_bed9a7cc29_o.jpg", "secret": "bed9a7cc29", "media": "photo", "latitude": "36.073799", "id": "136775837", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 13:18:49", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.155153", "url_o": "https://farm1.staticflickr.com/48/136775932_5d3696a3d3_o.jpg", "secret": "5d3696a3d3", "media": "photo", "latitude": "36.073799", "id": "136775932", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 13:19:23", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.155153", "url_o": "https://farm1.staticflickr.com/51/136776085_2395353ab8_o.jpg", "secret": "2395353ab8", "media": "photo", "latitude": "36.073799", "id": "136776085", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 13:20:00", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.155153", "url_o": "https://farm1.staticflickr.com/45/136776197_56d9c98860_o.jpg", "secret": "56d9c98860", "media": "photo", "latitude": "36.073799", "id": "136776197", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 13:20:18", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.155153", "url_o": "https://farm1.staticflickr.com/46/136776295_de814b089d_o.jpg", "secret": "de814b089d", "media": "photo", "latitude": "36.073799", "id": "136776295", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 13:24:12", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.155153", "url_o": "https://farm1.staticflickr.com/56/136776408_76b7f99db9_o.jpg", "secret": "76b7f99db9", "media": "photo", "latitude": "36.073799", "id": "136776408", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 13:24:15", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.155153", "url_o": "https://farm1.staticflickr.com/47/136776597_65484cb26a_o.jpg", "secret": "65484cb26a", "media": "photo", "latitude": "36.073799", "id": "136776597", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 13:24:18", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.155153", "url_o": "https://farm1.staticflickr.com/55/136776753_946b0311be_o.jpg", "secret": "946b0311be", "media": "photo", "latitude": "36.073799", "id": "136776753", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 13:39:12", "license": "5", "title": "Second Stop, Powell Point", "text": "", "album_id": "72157594252899464", "longitude": "-112.155153", "url_o": "https://farm1.staticflickr.com/49/136777188_5cdb87a31b_o.jpg", "secret": "5cdb87a31b", "media": "photo", "latitude": "36.073799", "id": "136777188", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 13:39:32", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.155153", "url_o": "https://farm1.staticflickr.com/54/136777379_425a146595_o.jpg", "secret": "425a146595", "media": "photo", "latitude": "36.073799", "id": "136777379", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 13:40:22", "license": "5", "title": "The Orphan Mine", "text": "", "album_id": "72157594252899464", "longitude": "-112.155153", "url_o": "https://farm1.staticflickr.com/53/136777744_510852f66e_o.jpg", "secret": "510852f66e", "media": "photo", "latitude": "36.073799", "id": "136777744", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 13:40:31", "license": "5", "title": "The path to the Powell Memorial", "text": "", "album_id": "72157594252899464", "longitude": "-112.155153", "url_o": "https://farm1.staticflickr.com/49/136777925_783a6f20d8_o.jpg", "secret": "783a6f20d8", "media": "photo", "latitude": "36.073799", "id": "136777925", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 13:41:01", "license": "5", "title": "The Orphan Mine", "text": "", "album_id": "72157594252899464", "longitude": "-112.151033", "url_o": "https://farm1.staticflickr.com/56/136778292_9cee36e3d8_o.jpg", "secret": "9cee36e3d8", "media": "photo", "latitude": "36.073175", "id": "136778292", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 13:42:58", "license": "5", "title": "The view back from the Powell Memorial", "text": "", "album_id": "72157594252899464", "longitude": "-112.151033", "url_o": "https://farm1.staticflickr.com/54/136778626_195bef47d5_o.jpg", "secret": "195bef47d5", "media": "photo", "latitude": "36.073175", "id": "136778626", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 13:48:06", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.151033", "url_o": "https://farm1.staticflickr.com/51/136778832_019d8ce3cc_o.jpg", "secret": "019d8ce3cc", "media": "photo", "latitude": "36.073175", "id": "136778832", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 14:06:40", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.146763", "url_o": "https://farm1.staticflickr.com/45/136779120_18717b585e_o.jpg", "secret": "18717b585e", "media": "photo", "latitude": "36.060955", "id": "136779120", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 14:07:07", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.146763", "url_o": "https://farm1.staticflickr.com/45/136779296_a730753f1d_o.jpg", "secret": "a730753f1d", "media": "photo", "latitude": "36.060955", "id": "136779296", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 15:42:10", "license": "5", "title": "Hopi House", "text": "", "album_id": "72157594252899464", "longitude": "-112.136732", "url_o": "https://farm1.staticflickr.com/18/136779381_9c5bcac354_o.jpg", "secret": "9c5bcac354", "media": "photo", "latitude": "36.057408", "id": "136779381", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 15:42:22", "license": "5", "title": "Hopi House", "text": "", "album_id": "72157594252899464", "longitude": "-112.136732", "url_o": "https://farm1.staticflickr.com/53/136779515_6f982dd1bd_o.jpg", "secret": "6f982dd1bd", "media": "photo", "latitude": "36.057408", "id": "136779515", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 15:45:08", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.140680", "url_o": "https://farm1.staticflickr.com/50/136779692_376a676171_o.jpg", "secret": "376a676171", "media": "photo", "latitude": "36.057087", "id": "136779692", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 15:45:11", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.140680", "url_o": "https://farm1.staticflickr.com/56/136779952_ee5ab7c544_o.jpg", "secret": "ee5ab7c544", "media": "photo", "latitude": "36.057087", "id": "136779952", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 15:45:15", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.140680", "url_o": "https://farm1.staticflickr.com/51/136780065_97d9d330cf_o.jpg", "secret": "97d9d330cf", "media": "photo", "latitude": "36.057087", "id": "136780065", "tags": "arizona grandcanyon schmap"}, {"datetaken": "2006-04-10 15:46:01", "license": "5", "title": "Ground Squirrel", "text": "", "album_id": "72157594252899464", "longitude": "-112.140680", "url_o": "https://farm1.staticflickr.com/49/136780298_cdb016b35c_o.jpg", "secret": "cdb016b35c", "media": "photo", "latitude": "36.057087", "id": "136780298", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 15:46:12", "license": "5", "title": "Snow!", "text": "", "album_id": "72157594252899464", "longitude": "-112.140680", "url_o": "https://farm1.staticflickr.com/50/136780577_99c40e7d47_o.jpg", "secret": "99c40e7d47", "media": "photo", "latitude": "36.057087", "id": "136780577", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 15:46:56", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.140680", "url_o": "https://farm1.staticflickr.com/48/136780667_08e6ed42e3_o.jpg", "secret": "08e6ed42e3", "media": "photo", "latitude": "36.057087", "id": "136780667", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 15:52:02", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.136732", "url_o": "https://farm1.staticflickr.com/53/136780788_58a1e79021_o.jpg", "secret": "58a1e79021", "media": "photo", "latitude": "36.057408", "id": "136780788", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 15:53:35", "license": "5", "title": "The Grand Canyon", "text": "", "album_id": "72157594252899464", "longitude": "-112.136732", "url_o": "https://farm1.staticflickr.com/48/136780930_d539cd3654_o.jpg", "secret": "d539cd3654", "media": "photo", "latitude": "36.057408", "id": "136780930", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 15:54:26", "license": "5", "title": "Hopi House", "text": "", "album_id": "72157594252899464", "longitude": "-112.136732", "url_o": "https://farm1.staticflickr.com/44/136781041_48dc1b1c20_o.jpg", "secret": "48dc1b1c20", "media": "photo", "latitude": "36.057408", "id": "136781041", "tags": "arizona grandcanyon"}, {"datetaken": "2006-04-10 19:32:30", "license": "5", "title": "Pool Room", "text": "", "album_id": "72157594252899464", "longitude": "-112.190172", "url_o": "https://farm1.staticflickr.com/55/136781292_a72ab0760f_o.jpg", "secret": "a72ab0760f", "media": "photo", "latitude": "35.251857", "id": "136781292", "tags": "arizona williams"}, {"datetaken": "2006-04-10 19:33:25", "license": "5", "title": "Pool Room", "text": "", "album_id": "72157594252899464", "longitude": "-112.190172", "url_o": "https://farm1.staticflickr.com/50/136781605_61e1e1e9b2_o.jpg", "secret": "61e1e1e9b2", "media": "photo", "latitude": "35.251857", "id": "136781605", "tags": "arizona williams"}, {"datetaken": "2006-04-10 19:36:16", "license": "5", "title": "Pool Room", "text": "", "album_id": "72157594252899464", "longitude": "-112.190172", "url_o": "https://farm1.staticflickr.com/53/136781652_7af802257c_o.jpg", "secret": "7af802257c", "media": "photo", "latitude": "35.251857", "id": "136781652", "tags": "arizona williams"}, {"datetaken": "2006-04-10 22:26:08", "license": "5", "title": "Spenser's Bar", "text": "", "album_id": "72157594252899464", "longitude": "-112.190172", "url_o": "https://farm1.staticflickr.com/51/134707006_4ee561b592_o.jpg", "secret": "4ee561b592", "media": "photo", "latitude": "35.251857", "id": "134707006", "tags": "arizona williams stringpod"}, {"datetaken": "2012-01-31 15:18:03", "license": "5", "title": "Ironworks", "text": "", "album_id": "72157629122884021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7018/6798577163_67a49c1237_o.jpg", "secret": "a95cddbd55", "media": "photo", "latitude": "0", "id": "6798577163", "tags": "houses architecture cemetary walnut brookline"}, {"datetaken": "2012-01-31 15:25:10", "license": "5", "title": "Ironworks", "text": "", "album_id": "72157629122884021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7021/6798582863_ab45b1ceb7_o.jpg", "secret": "7d27c57a90", "media": "photo", "latitude": "0", "id": "6798582863", "tags": "houses architecture cemetary walnut brookline"}, {"datetaken": "2012-01-31 15:25:41", "license": "5", "title": "Ironworks", "text": "", "album_id": "72157629122884021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7171/6798589155_e93ccb0f9c_o.jpg", "secret": "845ca91d65", "media": "photo", "latitude": "0", "id": "6798589155", "tags": "houses architecture cemetary walnut brookline"}, {"datetaken": "2012-01-31 15:26:59", "license": "5", "title": "Ironworks", "text": "", "album_id": "72157629122884021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7028/6798594565_4968273a0d_o.jpg", "secret": "0cdd6862ac", "media": "photo", "latitude": "0", "id": "6798594565", "tags": "houses architecture cemetary walnut brookline"}, {"datetaken": "2012-01-31 15:32:15", "license": "5", "title": "01312012561", "text": "", "album_id": "72157629122884021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6798598575_005d3d2931_o.jpg", "secret": "b71d580b88", "media": "photo", "latitude": "0", "id": "6798598575", "tags": "houses architecture brookline"}, {"datetaken": "2012-01-31 15:33:06", "license": "5", "title": "01312012562", "text": "", "album_id": "72157629122884021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7015/6798603045_ee04306427_o.jpg", "secret": "d27138bc35", "media": "photo", "latitude": "0", "id": "6798603045", "tags": "houses architecture brookline"}, {"datetaken": "2012-01-31 15:37:12", "license": "5", "title": "01312012566", "text": "", "album_id": "72157629122884021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7023/6798610935_5c46694dd6_o.jpg", "secret": "a195603b17", "media": "photo", "latitude": "0", "id": "6798610935", "tags": "houses architecture brookline"}, {"datetaken": "2012-01-31 15:37:25", "license": "5", "title": "01312012567", "text": "", "album_id": "72157629122884021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7027/6798614475_529196702f_o.jpg", "secret": "387147bfd7", "media": "photo", "latitude": "0", "id": "6798614475", "tags": "houses architecture brookline"}, {"datetaken": "2012-01-31 15:46:37", "license": "5", "title": "Frederick Law Olmstead House", "text": "", "album_id": "72157629122884021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7021/6798626203_25cbf8699d_o.jpg", "secret": "c177e44e6b", "media": "photo", "latitude": "0", "id": "6798626203", "tags": "houses architecture brookline"}, {"datetaken": "2012-01-31 15:47:43", "license": "5", "title": "Frederick Law Olmstead House", "text": "", "album_id": "72157629122884021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7014/6798629357_55f8d2a784_o.jpg", "secret": "e319a67507", "media": "photo", "latitude": "0", "id": "6798629357", "tags": "houses architecture brookline"}, {"datetaken": "2012-01-31 16:29:48", "license": "5", "title": "01312012581", "text": "", "album_id": "72157629122884021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7145/6798634975_bf372be432_o.jpg", "secret": "fc5c377b73", "media": "photo", "latitude": "0", "id": "6798634975", "tags": "houses architecture brookline"}, {"datetaken": "2012-01-31 16:30:07", "license": "5", "title": "01312012582", "text": "", "album_id": "72157629122884021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7154/6798638185_91bef19111_o.jpg", "secret": "2fce784c69", "media": "photo", "latitude": "0", "id": "6798638185", "tags": "houses architecture brookline"}, {"datetaken": "2012-01-31 16:31:43", "license": "5", "title": "01312012584", "text": "", "album_id": "72157629122884021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7142/6798641913_922af1d175_o.jpg", "secret": "d26c23ae68", "media": "photo", "latitude": "0", "id": "6798641913", "tags": "houses architecture brookline"}, {"datetaken": "2012-01-31 16:36:25", "license": "5", "title": "01312012587", "text": "", "album_id": "72157629122884021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7007/6798645561_e7e67d6def_o.jpg", "secret": "f05290e253", "media": "photo", "latitude": "0", "id": "6798645561", "tags": "houses architecture brookline"}, {"datetaken": "2012-01-31 16:41:03", "license": "5", "title": "01312012589", "text": "", "album_id": "72157629122884021", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7152/6798648123_98146b4972_o.jpg", "secret": "d7170f5abc", "media": "photo", "latitude": "0", "id": "6798648123", "tags": "houses architecture brookline"}, {"datetaken": "2006-05-28 12:08:50", "license": "3", "title": "IMG_0583.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/157511686_09968689d5_o.jpg", "secret": "09968689d5", "media": "photo", "latitude": "0", "id": "157511686", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 12:16:00", "license": "3", "title": "IMG_0584.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/157512138_4dd72abb77_o.jpg", "secret": "4dd72abb77", "media": "photo", "latitude": "0", "id": "157512138", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 12:18:40", "license": "3", "title": "IMG_0585.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/157512512_b7d784db9b_o.jpg", "secret": "b7d784db9b", "media": "photo", "latitude": "0", "id": "157512512", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 12:19:30", "license": "3", "title": "IMG_0587.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/157513177_918c4c4bbb_o.jpg", "secret": "918c4c4bbb", "media": "photo", "latitude": "0", "id": "157513177", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 12:21:14", "license": "3", "title": "IMG_0588.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/157513554_49b0d01ddb_o.jpg", "secret": "49b0d01ddb", "media": "photo", "latitude": "0", "id": "157513554", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 12:21:23", "license": "3", "title": "IMG_0589.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/157513876_c7a6022284_o.jpg", "secret": "c7a6022284", "media": "photo", "latitude": "0", "id": "157513876", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 12:23:51", "license": "3", "title": "IMG_0590.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/157514269_efa33ca31d_o.jpg", "secret": "efa33ca31d", "media": "photo", "latitude": "0", "id": "157514269", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 12:37:45", "license": "3", "title": "IMG_0591.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/157514718_f28c82baa7_o.jpg", "secret": "f28c82baa7", "media": "photo", "latitude": "0", "id": "157514718", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 12:37:54", "license": "3", "title": "IMG_0592.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/157515203_91ea20ade4_o.jpg", "secret": "91ea20ade4", "media": "photo", "latitude": "0", "id": "157515203", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 12:43:04", "license": "3", "title": "IMG_0593.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/157515485_6b36159948_o.jpg", "secret": "6b36159948", "media": "photo", "latitude": "0", "id": "157515485", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 12:50:31", "license": "3", "title": "IMG_0594.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/157515798_bba29e4778_o.jpg", "secret": "bba29e4778", "media": "photo", "latitude": "0", "id": "157515798", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 12:51:08", "license": "3", "title": "IMG_0595.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/157516149_85ca8d8a5b_o.jpg", "secret": "85ca8d8a5b", "media": "photo", "latitude": "0", "id": "157516149", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 12:56:32", "license": "3", "title": "IMG_0596.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/157516496_e83f4a7575_o.jpg", "secret": "e83f4a7575", "media": "photo", "latitude": "0", "id": "157516496", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 12:58:02", "license": "3", "title": "IMG_0597.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/157516959_01c916ed94_o.jpg", "secret": "01c916ed94", "media": "photo", "latitude": "0", "id": "157516959", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 12:59:45", "license": "3", "title": "IMG_0598.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/157517400_77f712764f_o.jpg", "secret": "77f712764f", "media": "photo", "latitude": "0", "id": "157517400", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 13:00:05", "license": "3", "title": "IMG_0599.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/157517796_4c22dc366c_o.jpg", "secret": "4c22dc366c", "media": "photo", "latitude": "0", "id": "157517796", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 13:00:40", "license": "3", "title": "IMG_0600.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/157518195_1296f06ee6_o.jpg", "secret": "1296f06ee6", "media": "photo", "latitude": "0", "id": "157518195", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 13:01:00", "license": "3", "title": "IMG_0601.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/157518658_d477b02868_o.jpg", "secret": "d477b02868", "media": "photo", "latitude": "0", "id": "157518658", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 13:01:45", "license": "3", "title": "IMG_0602.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/157519115_53b777df6e_o.jpg", "secret": "53b777df6e", "media": "photo", "latitude": "0", "id": "157519115", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 13:02:03", "license": "3", "title": "IMG_0603.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/157519429_2f376e7dd9_o.jpg", "secret": "2f376e7dd9", "media": "photo", "latitude": "0", "id": "157519429", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 13:13:58", "license": "3", "title": "IMG_0604.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/157519618_1519375820_o.jpg", "secret": "1519375820", "media": "photo", "latitude": "0", "id": "157519618", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 13:14:06", "license": "3", "title": "IMG_0605.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/157519856_b780c10858_o.jpg", "secret": "b780c10858", "media": "photo", "latitude": "0", "id": "157519856", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 13:18:36", "license": "3", "title": "IMG_0606.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/157520104_889ba0b0ef_o.jpg", "secret": "889ba0b0ef", "media": "photo", "latitude": "0", "id": "157520104", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 13:19:16", "license": "3", "title": "IMG_0607.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/157520381_a79d0d12bf_o.jpg", "secret": "a79d0d12bf", "media": "photo", "latitude": "0", "id": "157520381", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 13:21:46", "license": "3", "title": "IMG_0608.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/157520636_dfdfa2ce31_o.jpg", "secret": "dfdfa2ce31", "media": "photo", "latitude": "0", "id": "157520636", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-28 13:23:17", "license": "3", "title": "IMG_0609.JPG", "text": "", "album_id": "72157594151411212", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/157520800_b83c26a98d_o.jpg", "secret": "b83c26a98d", "media": "photo", "latitude": "0", "id": "157520800", "tags": "usa canon mine unitedstates pennsylvania a520 roadtrip 2006 powershot centralia"}, {"datetaken": "2006-05-31 18:37:12", "license": "3", "title": "Subway arriving", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/157244881_300378d655_o.jpg", "secret": "300378d655", "media": "photo", "latitude": "0", "id": "157244881", "tags": "japan train japanese tokyo \u65e5\u672c \u6771\u4eac \u6771\u9280\u5ea7 f4 \u5730\u4e0b\u9244 \u99c5 canon30d japanesepersons canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:01:14", "license": "3", "title": "a small restaurant", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/157244975_d431b8d963_o.jpg", "secret": "d431b8d963", "media": "photo", "latitude": "0", "id": "157244975", "tags": "japan night japanese restaurant tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d japanesepersons canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:01:34", "license": "3", "title": "another small restaurant", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/157245043_0ad231b88b_o.jpg", "secret": "0ad231b88b", "media": "photo", "latitude": "0", "id": "157245043", "tags": "sign japan night restaurant tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:01:42", "license": "3", "title": "a side street", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/157245119_2381783e13_o.jpg", "secret": "2381783e13", "media": "photo", "latitude": "0", "id": "157245119", "tags": "japan shop night japanese restaurant tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d japanesepersons canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:03:33", "license": "3", "title": "Shibuya Billboards - electronic", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/157245196_12aa03fc19_o.jpg", "secret": "12aa03fc19", "media": "photo", "latitude": "0", "id": "157245196", "tags": "building sign japan night tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 housebuilding canon30d canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:08:05", "license": "3", "title": "japanese money machine", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/157245273_f8888af201_o.jpg", "secret": "f8888af201", "media": "photo", "latitude": "0", "id": "157245273", "tags": "japan night tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d pipesandmachines canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:09:46", "license": "3", "title": "a thing high building", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/157245362_710f732564_o.jpg", "secret": "710f732564", "media": "photo", "latitude": "0", "id": "157245362", "tags": "building japan night tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 housebuilding canon30d canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:16:26", "license": "3", "title": "an interesting glass building", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/157245474_129813e1e7_o.jpg", "secret": "129813e1e7", "media": "photo", "latitude": "0", "id": "157245474", "tags": "building japan night tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 housebuilding canon30d canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:18:11", "license": "3", "title": "shops and people", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/157245538_2ad9418c08_o.jpg", "secret": "2ad9418c08", "media": "photo", "latitude": "0", "id": "157245538", "tags": "japan night japanese tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d japanesepersons canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:19:32", "license": "3", "title": "more people than shops", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/157245630_e58dd3e8ac_o.jpg", "secret": "e58dd3e8ac", "media": "photo", "latitude": "0", "id": "157245630", "tags": "japan shop night japanese tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d japanesepersons canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:23:21", "license": "3", "title": "people at night", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/157245689_df20334553_o.jpg", "secret": "df20334553", "media": "photo", "latitude": "0", "id": "157245689", "tags": "japan shop night japanese tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d japanesepersons canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:25:30", "license": "3", "title": "neon lights", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/157245778_261652d263_o.jpg", "secret": "261652d263", "media": "photo", "latitude": "0", "id": "157245778", "tags": "sign japan shop night japanese tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d japanesepersons canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:27:02", "license": "3", "title": "a small shop in a side street", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/157245847_476e5db98d_o.jpg", "secret": "476e5db98d", "media": "photo", "latitude": "0", "id": "157245847", "tags": "sign japan shop night japanese tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d japanesepersons canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:30:20", "license": "3", "title": "\u306a\u3064\u304b\u3057\u3044\u301c", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/157245933_ef008549b1_o.jpg", "secret": "ef008549b1", "media": "photo", "latitude": "0", "id": "157245933", "tags": "building japan shop night restaurant tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 housebuilding canon30d canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:31:34", "license": "3", "title": "Graffiti in Japan", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/157246035_e94ae77aa9_o.jpg", "secret": "e94ae77aa9", "media": "photo", "latitude": "0", "id": "157246035", "tags": "building japan night tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 housebuilding canon30d canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:31:55", "license": "3", "title": "Love hotel", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/157246094_b593123ddf_o.jpg", "secret": "b593123ddf", "media": "photo", "latitude": "0", "id": "157246094", "tags": "building japan shop night tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 housebuilding canon30d canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:32:19", "license": "3", "title": "small restaurants", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/157246180_cc1c82c0a4_o.jpg", "secret": "cc1c82c0a4", "media": "photo", "latitude": "0", "id": "157246180", "tags": "japan night japanese restaurant tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d japanesepersons canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:33:50", "license": "3", "title": "Kitsch", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/157246223_7135d6edd5_o.jpg", "secret": "7135d6edd5", "media": "photo", "latitude": "0", "id": "157246223", "tags": "building japan night tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 housebuilding stonefigures canon30d canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:33:59", "license": "3", "title": "Kitsch II", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/157246270_19b269fd65_o.jpg", "secret": "19b269fd65", "media": "photo", "latitude": "0", "id": "157246270", "tags": "building japan night tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 housebuilding stonefigures canon30d canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:39:10", "license": "3", "title": "People as Ads", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/157246349_6a94babe44_o.jpg", "secret": "6a94babe44", "media": "photo", "latitude": "0", "id": "157246349", "tags": "sign japan night writing japanese tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d japanesepersons canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:40:44", "license": "3", "title": "Pachinko", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/157246409_f5e8ebc6b2_o.jpg", "secret": "f5e8ebc6b2", "media": "photo", "latitude": "0", "id": "157246409", "tags": "building sign japan shop night japanese tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 housebuilding canon30d japanesepersons canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:40:53", "license": "3", "title": "Ramen Shop", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/157246494_0624a36671_o.jpg", "secret": "0624a36671", "media": "photo", "latitude": "0", "id": "157246494", "tags": "sign japan night japanese restaurant tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d japanesepersons canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:46:21", "license": "3", "title": "Money Borrowing", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/157246559_a3e479285b_o.jpg", "secret": "a3e479285b", "media": "photo", "latitude": "0", "id": "157246559", "tags": "building sign japan night tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 housebuilding canon30d canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:46:35", "license": "3", "title": "Flowing Cars", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/157246617_a6813b8232_o.jpg", "secret": "a6813b8232", "media": "photo", "latitude": "0", "id": "157246617", "tags": "longexposure japan night tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:48:10", "license": "3", "title": "small resturant under the train bridge", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/157246750_beddbfc666_o.jpg", "secret": "beddbfc666", "media": "photo", "latitude": "0", "id": "157246750", "tags": "japan night japanese restaurant tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d japanesepersons canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:49:09", "license": "3", "title": "Graffiti", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/157246843_8cddbdd682_o.jpg", "secret": "8cddbdd682", "media": "photo", "latitude": "0", "id": "157246843", "tags": "japan night writing tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:50:05", "license": "3", "title": "Side river", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/157246920_127b4fb548_o.jpg", "secret": "127b4fb548", "media": "photo", "latitude": "0", "id": "157246920", "tags": "building water japan night tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 housebuilding canon30d canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:50:26", "license": "3", "title": "Street Sign", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/157247003_b38c4ee2d2_o.jpg", "secret": "b38c4ee2d2", "media": "photo", "latitude": "0", "id": "157247003", "tags": "japan night tokyo streetsign \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:52:45", "license": "3", "title": "Flowing Lights", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/157247099_1213cc45e4_o.jpg", "secret": "1213cc45e4", "media": "photo", "latitude": "0", "id": "157247099", "tags": "longexposure japan night tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:54:19", "license": "3", "title": "Q-B House Cut Shop", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/157247166_eabf9b0c9f_o.jpg", "secret": "eabf9b0c9f", "media": "photo", "latitude": "0", "id": "157247166", "tags": "japan shop night japanese tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d japanesepersons canonef24105mmlf4isusm"}, {"datetaken": "2006-05-31 19:54:28", "license": "3", "title": "hip shot", "text": "", "album_id": "72157594150994426", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/157247221_6310157995_o.jpg", "secret": "6310157995", "media": "photo", "latitude": "0", "id": "157247221", "tags": "longexposure japan night japanese tokyo \u65e5\u672c \u6771\u4eac \u6e0b\u8c37 f4 canon30d japanesepersons canonef24105mmlf4isusm"}, {"datetaken": "2005-02-17 16:52:17", "license": "3", "title": "Gatwick Airport", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4959006_3bc57fdb13_o.jpg", "secret": "3bc57fdb13", "media": "photo", "latitude": "0", "id": "4959006", "tags": "london gatwick corridor"}, {"datetaken": "2005-02-17 16:54:26", "license": "3", "title": "High Street Ken", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4959064_7f1cb8c89e_o.jpg", "secret": "7f1cb8c89e", "media": "photo", "latitude": "0", "id": "4959064", "tags": "london platform underground railway"}, {"datetaken": "2005-02-17 16:55:47", "license": "3", "title": "Big Ben #1", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4959098_1331841c1c_o.jpg", "secret": "1331841c1c", "media": "photo", "latitude": "0", "id": "4959098", "tags": "london westminster parliament bigben clock time"}, {"datetaken": "2005-02-17 16:57:05", "license": "3", "title": "Big Ben #2", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4959131_870fb1743f_o.jpg", "secret": "870fb1743f", "media": "photo", "latitude": "0", "id": "4959131", "tags": "london time clock bigben parliament westminster"}, {"datetaken": "2005-02-17 16:58:18", "license": "3", "title": "Churchill", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4959176_ed47944c3b_o.jpg", "secret": "ed47944c3b", "media": "photo", "latitude": "0", "id": "4959176", "tags": "london churchill statue monument westminster"}, {"datetaken": "2005-02-17 16:59:17", "license": "3", "title": "Cromwell", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4959219_908a9b0924_o.jpg", "secret": "908a9b0924", "media": "photo", "latitude": "0", "id": "4959219", "tags": "london statue monument westminster cromwell"}, {"datetaken": "2005-02-17 17:00:08", "license": "3", "title": "Parliament #1", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4959259_5e32f15196_o.jpg", "secret": "5e32f15196", "media": "photo", "latitude": "0", "id": "4959259", "tags": "london westminster parliament"}, {"datetaken": "2005-02-17 17:01:05", "license": "3", "title": "Parliament #2", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4959319_fe4ffc36d8_o.jpg", "secret": "fe4ffc36d8", "media": "photo", "latitude": "0", "id": "4959319", "tags": "london westminster parliament"}, {"datetaken": "2005-02-17 17:01:57", "license": "3", "title": "Richard the Lionheart", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4959359_fdbb8c70bf_o.jpg", "secret": "fdbb8c70bf", "media": "photo", "latitude": "0", "id": "4959359", "tags": "london westminster statue parliament monument lionheart"}, {"datetaken": "2005-02-17 17:02:47", "license": "3", "title": "Parliament #3", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4959390_7d193c154d_o.jpg", "secret": "7d193c154d", "media": "photo", "latitude": "0", "id": "4959390", "tags": "london westminster parliament"}, {"datetaken": "2005-02-17 17:03:46", "license": "3", "title": "Jewel Tower", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4959437_72d4bf53dd_o.jpg", "secret": "72d4bf53dd", "media": "photo", "latitude": "0", "id": "4959437", "tags": "london westminster medieval tower"}, {"datetaken": "2005-02-17 17:04:32", "license": "3", "title": "The Thames #1", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4959459_e6361caef2_o.jpg", "secret": "e6361caef2", "media": "photo", "latitude": "0", "id": "4959459", "tags": "london westminster thames londoneye wheel river"}, {"datetaken": "2005-02-17 17:05:29", "license": "3", "title": "The Thames #2", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4959485_752052a6b5_o.jpg", "secret": "752052a6b5", "media": "photo", "latitude": "0", "id": "4959485", "tags": "london westminster thames bridge river"}, {"datetaken": "2005-02-17 17:06:19", "license": "3", "title": "County Hall", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4959512_a4f82a18b2_o.jpg", "secret": "a4f82a18b2", "media": "photo", "latitude": "0", "id": "4959512", "tags": "london westminster thames river"}, {"datetaken": "2005-02-17 17:07:07", "license": "3", "title": "London Eye", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4959537_4c4cfbfeec_o.jpg", "secret": "4c4cfbfeec", "media": "photo", "latitude": "0", "id": "4959537", "tags": "london westminster thames river londoneye"}, {"datetaken": "2005-02-17 17:07:53", "license": "3", "title": "Liberty", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4959550_8bf9f74c17_o.jpg", "secret": "8bf9f74c17", "media": "photo", "latitude": "0", "id": "4959550", "tags": "london westminster bridge protest"}, {"datetaken": "2005-02-17 17:08:38", "license": "3", "title": "London Bus", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4959567_5e3c577dbe_o.jpg", "secret": "5e3c577dbe", "media": "photo", "latitude": "0", "id": "4959567", "tags": "london westminster bigben transport bus"}, {"datetaken": "2005-02-17 17:09:29", "license": "3", "title": "Routemaster", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4959604_2ae4f42251_o.jpg", "secret": "2ae4f42251", "media": "photo", "latitude": "0", "id": "4959604", "tags": "london bus transport westminster"}, {"datetaken": "2005-02-17 17:10:16", "license": "3", "title": "Tate Britain #1", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4959637_734a2e0953_o.jpg", "secret": "734a2e0953", "media": "photo", "latitude": "0", "id": "4959637", "tags": "london tate art"}, {"datetaken": "2005-02-17 17:11:07", "license": "3", "title": "Tate Britain #2", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4959671_c8152554db_o.jpg", "secret": "c8152554db", "media": "photo", "latitude": "0", "id": "4959671", "tags": "london tate art"}, {"datetaken": "2005-02-17 17:11:57", "license": "3", "title": "Palace Guard #1", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4959698_4ec7c4ad80_o.jpg", "secret": "4ec7c4ad80", "media": "photo", "latitude": "0", "id": "4959698", "tags": "london royal"}, {"datetaken": "2005-02-17 17:12:48", "license": "3", "title": "Palace Guard #2", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4959709_5cbdfcf9ba_o.jpg", "secret": "5cbdfcf9ba", "media": "photo", "latitude": "0", "id": "4959709", "tags": "london royal"}, {"datetaken": "2005-02-17 17:14:50", "license": "3", "title": "Constitution Hill", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4959777_c5ce33e5ce_o.jpg", "secret": "c5ce33e5ce", "media": "photo", "latitude": "0", "id": "4959777", "tags": "london street royal"}, {"datetaken": "2005-02-17 17:15:45", "license": "3", "title": "Palace Sculpture", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4959838_15cec571af_o.jpg", "secret": "15cec571af", "media": "photo", "latitude": "0", "id": "4959838", "tags": "london royal monument"}, {"datetaken": "2005-02-17 17:16:37", "license": "3", "title": "Marble Arch #1", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4959861_3a798a8b3c_o.jpg", "secret": "3a798a8b3c", "media": "photo", "latitude": "0", "id": "4959861", "tags": "london memorial monument"}, {"datetaken": "2005-02-17 17:25:49", "license": "3", "title": "Marble Arch #2", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4960202_b4411796b1_o.jpg", "secret": "b4411796b1", "media": "photo", "latitude": "0", "id": "4960202", "tags": "london monument"}, {"datetaken": "2005-02-17 17:28:38", "license": "3", "title": "Phone Box", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4960292_7ddcf1ee0b_o.jpg", "secret": "7ddcf1ee0b", "media": "photo", "latitude": "0", "id": "4960292", "tags": "london telephone red"}, {"datetaken": "2005-02-17 17:29:40", "license": "3", "title": "Baker Street", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4960322_0ccc01a648_o.jpg", "secret": "0ccc01a648", "media": "photo", "latitude": "0", "id": "4960322", "tags": "london sherlock tourist"}, {"datetaken": "2005-02-17 22:11:01", "license": "3", "title": "Apple Store #1", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4970877_241521d0be_o.jpg", "secret": "241521d0be", "media": "photo", "latitude": "0", "id": "4970877", "tags": "london apple glass"}, {"datetaken": "2005-02-17 22:12:29", "license": "3", "title": "Apple Store #2", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4970932_200bd45727_o.jpg", "secret": "200bd45727", "media": "photo", "latitude": "0", "id": "4970932", "tags": "london apple flag"}, {"datetaken": "2005-02-17 22:13:43", "license": "3", "title": "Leicester Square", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4970984_af8ffecaee_o.jpg", "secret": "af8ffecaee", "media": "photo", "latitude": "0", "id": "4970984", "tags": "london westend"}, {"datetaken": "2005-02-17 22:14:45", "license": "3", "title": "Covent Garden #1", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4971030_9d1efc806e_o.jpg", "secret": "9d1efc806e", "media": "photo", "latitude": "0", "id": "4971030", "tags": "london coventgarden people"}, {"datetaken": "2005-02-17 22:16:06", "license": "3", "title": "Covent Garden #2", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4971076_209c2006f5_o.jpg", "secret": "209c2006f5", "media": "photo", "latitude": "0", "id": "4971076", "tags": "london coventgarden red"}, {"datetaken": "2005-02-17 22:17:06", "license": "3", "title": "Covent Garden #3", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4971116_739b96800f_o.jpg", "secret": "739b96800f", "media": "photo", "latitude": "0", "id": "4971116", "tags": "london red coventgarden"}, {"datetaken": "2005-02-17 22:18:44", "license": "3", "title": "Fire Escape", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4971159_0d1a366da2_o.jpg", "secret": "0d1a366da2", "media": "photo", "latitude": "0", "id": "4971159", "tags": "london coventgarden stairs"}, {"datetaken": "2005-02-17 23:50:28", "license": "3", "title": "Tate Modern", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4975097_17fe00dfc2_o.jpg", "secret": "17fe00dfc2", "media": "photo", "latitude": "0", "id": "4975097", "tags": "london art tate"}, {"datetaken": "2005-02-17 23:51:27", "license": "3", "title": "Turbine Hall #1", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4975110_086fc6f443_o.jpg", "secret": "086fc6f443", "media": "photo", "latitude": "0", "id": "4975110", "tags": "london people tate art light"}, {"datetaken": "2005-02-17 23:52:39", "license": "3", "title": "Turbine Hall #2", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4975159_9fa247e5d8_o.jpg", "secret": "9fa247e5d8", "media": "photo", "latitude": "0", "id": "4975159", "tags": "tate light glass art london"}, {"datetaken": "2005-02-17 23:53:33", "license": "3", "title": "Turbine Hall #3", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4975186_93493cc98a_o.jpg", "secret": "93493cc98a", "media": "photo", "latitude": "0", "id": "4975186", "tags": "london tate light art"}, {"datetaken": "2005-02-17 23:55:14", "license": "3", "title": "Skyline #1", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4975207_6911a4ba1b_o.jpg", "secret": "6911a4ba1b", "media": "photo", "latitude": "0", "id": "4975207", "tags": "london light skyline"}, {"datetaken": "2005-02-17 23:58:17", "license": "3", "title": "The Gherkin", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4975284_f13c399cda_o.jpg", "secret": "f13c399cda", "media": "photo", "latitude": "0", "id": "4975284", "tags": "london glass skyline city"}, {"datetaken": "2005-02-18 00:03:36", "license": "3", "title": "Skyline #2", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4975416_f372fe76bb_o.jpg", "secret": "f372fe76bb", "media": "photo", "latitude": "0", "id": "4975416", "tags": "london skyline light glass"}, {"datetaken": "2005-02-18 00:04:54", "license": "3", "title": "Tower Bridge", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4975447_00e78e7081_o.jpg", "secret": "00e78e7081", "media": "photo", "latitude": "0", "id": "4975447", "tags": "london tower monument light bridge"}, {"datetaken": "2005-02-18 00:05:50", "license": "3", "title": "Piccadilly", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4975474_8f8062ae97_o.jpg", "secret": "8f8062ae97", "media": "photo", "latitude": "0", "id": "4975474", "tags": "london westend light art sign"}, {"datetaken": "2005-02-18 00:07:14", "license": "3", "title": "Knightsbridge", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4975494_a36311456d_o.jpg", "secret": "a36311456d", "media": "photo", "latitude": "0", "id": "4975494", "tags": "london street"}, {"datetaken": "2005-02-18 00:07:14", "license": "3", "title": "Harrods", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4975495_dc7fabe466_o.jpg", "secret": "dc7fabe466", "media": "photo", "latitude": "0", "id": "4975495", "tags": "london flag"}, {"datetaken": "2005-02-18 00:08:06", "license": "3", "title": "Hand Car Wash", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4975523_d52cd12614_o.jpg", "secret": "d52cd12614", "media": "photo", "latitude": "0", "id": "4975523", "tags": "london street sign"}, {"datetaken": "2005-02-18 00:15:28", "license": "3", "title": "Skyline #3", "text": "", "album_id": "126117", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4975715_709667b9c3_o.jpg", "secret": "709667b9c3", "media": "photo", "latitude": "0", "id": "4975715", "tags": "london skyline light"}, {"datetaken": "2005-03-11 10:46:40", "license": "4", "title": "Foundation of a House", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6323942_9639d77a40_o.jpg", "secret": "9639d77a40", "media": "photo", "latitude": "0", "id": "6323942", "tags": "sarvodaya holcim rebuilding houses matara lanka tsunami"}, {"datetaken": "2005-03-11 10:50:50", "license": "4", "title": "Monk", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6323994_c71e6819eb_o.jpg", "secret": "c71e6819eb", "media": "photo", "latitude": "0", "id": "6323994", "tags": "sarvodaya holcim rebuilding monk houses matara lanka tsunami"}, {"datetaken": "2005-03-11 10:54:59", "license": "4", "title": "Dr. Ari Laying Foundation Stone", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6324071_6f01e9d60c_o.jpg", "secret": "6f01e9d60c", "media": "photo", "latitude": "0", "id": "6324071", "tags": "sarvodaya holcim rebuilding houses matara lanka tsunami"}, {"datetaken": "2005-03-11 10:55:30", "license": "4", "title": "Dr. Ari Laying Foundation Stone", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6324129_44b2dc1812_o.jpg", "secret": "44b2dc1812", "media": "photo", "latitude": "0", "id": "6324129", "tags": "sarvodaya holcim rebuilding houses matara lanka tsunami"}, {"datetaken": "2005-03-11 10:56:32", "license": "4", "title": "Holcim Cement", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6324187_0fc5377402_o.jpg", "secret": "0fc5377402", "media": "photo", "latitude": "0", "id": "6324187", "tags": "sarvodaya holcim rebuilding houses matara lanka tsunami"}, {"datetaken": "2005-03-11 10:58:23", "license": "4", "title": "Foundation Stone", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6324242_a8ea6c601c_o.jpg", "secret": "a8ea6c601c", "media": "photo", "latitude": "0", "id": "6324242", "tags": "sarvodaya holcim rebuilding houses matara lanka tsunami"}, {"datetaken": "2005-03-11 11:00:21", "license": "4", "title": "Measuring out Cement", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6324311_db672e7c18_o.jpg", "secret": "db672e7c18", "media": "photo", "latitude": "0", "id": "6324311", "tags": "sarvodaya holcim rebuilding houses matara lanka tsunami"}, {"datetaken": "2005-03-11 11:46:04", "license": "4", "title": "Nandani Saranasinghe", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6323815_2b7a588533_o.jpg", "secret": "2b7a588533", "media": "photo", "latitude": "0", "id": "6323815", "tags": "sarvodaya holcim rebuilding houses matara lanka tsunami"}, {"datetaken": "2005-03-11 11:48:45", "license": "4", "title": "Family Receiving House", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6323872_6e63775f4e_o.jpg", "secret": "6e63775f4e", "media": "photo", "latitude": "0", "id": "6323872", "tags": "sarvodaya holcim rebuilding houses matara lanka tsunami"}, {"datetaken": "2005-03-11 11:57:31", "license": "4", "title": "Buddhist Flag", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6320856_aebb9aff56_o.jpg", "secret": "aebb9aff56", "media": "photo", "latitude": "0", "id": "6320856", "tags": "building houses tsunami lanka matara"}, {"datetaken": "2005-03-11 11:58:33", "license": "4", "title": "Dr Ari Under Buddhist Flag", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6321122_b44214c079_o.jpg", "secret": "b44214c079", "media": "photo", "latitude": "0", "id": "6321122", "tags": "matara building houses lanka tsunami"}, {"datetaken": "2005-03-11 11:59:25", "license": "4", "title": "Photos of Lost Children", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6321195_b6d198a1cd_o.jpg", "secret": "b6d198a1cd", "media": "photo", "latitude": "0", "id": "6321195", "tags": "matara building houses lanka tsunami"}, {"datetaken": "2005-03-11 12:00:04", "license": "4", "title": "PICT0004", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6322024_696bd26b7e_o.jpg", "secret": "696bd26b7e", "media": "photo", "latitude": "0", "id": "6322024", "tags": "matara building houses ariyaratne lanka"}, {"datetaken": "2005-03-11 12:00:12", "license": "4", "title": "Dr. Ari Lighting Lamp", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6322075_05a4e137ea_o.jpg", "secret": "05a4e137ea", "media": "photo", "latitude": "0", "id": "6322075", "tags": "matara building houses ariyaratne lanka"}, {"datetaken": "2005-03-11 12:01:20", "license": "4", "title": "Foundation Stone", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6321981_42f94c8c1b_o.jpg", "secret": "42f94c8c1b", "media": "photo", "latitude": "0", "id": "6321981", "tags": "matara building houses ariyaratne lanka"}, {"datetaken": "2005-03-11 12:01:49", "license": "4", "title": "Laying Foundation Stone", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6320719_93877fcb19_o.jpg", "secret": "93877fcb19", "media": "photo", "latitude": "0", "id": "6320719", "tags": "building houses tsunami lanka matara"}, {"datetaken": "2005-03-11 12:04:50", "license": "4", "title": "Kid in Wheelbarrow", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6320782_89d6d9f240_o.jpg", "secret": "89d6d9f240", "media": "photo", "latitude": "0", "id": "6320782", "tags": "building houses tsunami lanka matara"}, {"datetaken": "2005-03-11 12:08:36", "license": "4", "title": "Mother Holding Drawing of Child", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/6322201_e4c01e9fbc_o.jpg", "secret": "e4c01e9fbc", "media": "photo", "latitude": "0", "id": "6322201", "tags": "matara building houses ariyaratne lanka hands child"}, {"datetaken": "2005-03-11 12:14:51", "license": "4", "title": "Dr. Ari laying First Stone", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6322290_2d73f31d63_o.jpg", "secret": "2d73f31d63", "media": "photo", "latitude": "0", "id": "6322290", "tags": "matara building houses ariyaratne lanka construction"}, {"datetaken": "2005-03-11 12:15:25", "license": "4", "title": "Laying The First Stone", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6322348_01bff43ac9_o.jpg", "secret": "01bff43ac9", "media": "photo", "latitude": "0", "id": "6322348", "tags": "matara building houses ariyaratne lanka construction"}, {"datetaken": "2005-03-11 12:16:02", "license": "4", "title": "Photos Of Lost Children", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6322397_ce6f460886_o.jpg", "secret": "ce6f460886", "media": "photo", "latitude": "0", "id": "6322397", "tags": "matara building houses ariyaratne lanka"}, {"datetaken": "2005-03-11 12:17:36", "license": "4", "title": "Dr. Ari Speaking With Family", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6322481_0717679585_o.jpg", "secret": "0717679585", "media": "photo", "latitude": "0", "id": "6322481", "tags": "matara building houses ariyaratne lanka"}, {"datetaken": "2005-03-11 12:21:09", "license": "4", "title": "Houses To Be Rebuilt", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6322544_ff0e6de60b_o.jpg", "secret": "ff0e6de60b", "media": "photo", "latitude": "0", "id": "6322544", "tags": "matara building houses ariyaratne lanka holcim sign"}, {"datetaken": "2005-03-11 12:21:30", "license": "4", "title": "Dr. Ari Being Welcomed", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6322606_42f0cfc0d5_o.jpg", "secret": "42f0cfc0d5", "media": "photo", "latitude": "0", "id": "6322606", "tags": "matara building houses ariyaratne lanka welcom betel"}, {"datetaken": "2005-03-11 12:24:37", "license": "4", "title": "Sarvodaya, Holcim and FFSL Rebuilding", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/6322648_14e6bcc725_o.jpg", "secret": "14e6bcc725", "media": "photo", "latitude": "0", "id": "6322648", "tags": "matara building houses ariyaratne lanka mendis holcim flag"}, {"datetaken": "2005-03-11 12:49:43", "license": "4", "title": "The Ocean", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6322870_50eee7e718_o.jpg", "secret": "50eee7e718", "media": "photo", "latitude": "0", "id": "6322870", "tags": "matara building houses lanka"}, {"datetaken": "2005-03-11 12:57:57", "license": "4", "title": "Dr. Ari Speaking", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6322918_24d0c1e98f_o.jpg", "secret": "24d0c1e98f", "media": "photo", "latitude": "0", "id": "6322918", "tags": "matara building houses lanka"}, {"datetaken": "2005-03-11 12:59:37", "license": "4", "title": "The Crowd Assembled", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6322975_7bb1951b12_o.jpg", "secret": "7bb1951b12", "media": "photo", "latitude": "0", "id": "6322975", "tags": "matara building houses lanka"}, {"datetaken": "2005-03-11 13:33:51", "license": "4", "title": "Distributing Refreshments", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6323008_6b4d31062d_o.jpg", "secret": "6b4d31062d", "media": "photo", "latitude": "0", "id": "6323008", "tags": "matara building houses lanka"}, {"datetaken": "2005-03-11 14:52:31", "license": "4", "title": "The Ocean", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6323074_04c6bf6f81_o.jpg", "secret": "04c6bf6f81", "media": "photo", "latitude": "0", "id": "6323074", "tags": "matara building houses lanka"}, {"datetaken": "2005-03-11 15:17:27", "license": "4", "title": "Sarvodaya Construction", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/6323176_04be1090e3_o.jpg", "secret": "04be1090e3", "media": "photo", "latitude": "0", "id": "6323176", "tags": "matara building houses lanka usaid latrine"}, {"datetaken": "2005-03-11 15:17:42", "license": "4", "title": "Construction", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6323245_72100fc7a3_o.jpg", "secret": "72100fc7a3", "media": "photo", "latitude": "0", "id": "6323245", "tags": "matara building houses lanka usaid latrine"}, {"datetaken": "2005-03-11 15:17:56", "license": "4", "title": "Constructing a Latrine", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/6323335_4a048e55a5_o.jpg", "secret": "4a048e55a5", "media": "photo", "latitude": "0", "id": "6323335", "tags": "matara building houses lanka usaid latrine"}, {"datetaken": "2005-03-11 15:20:30", "license": "4", "title": "Volunteer Tent", "text": "", "album_id": "157909", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/6323418_4c6623dbff_o.jpg", "secret": "4c6623dbff", "media": "photo", "latitude": "0", "id": "6323418", "tags": "matara building houses lanka tent"}, {"datetaken": "2005-04-22 10:36:07", "license": "1", "title": "Dry Lake in Nevada", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10618956_8de2d242ae_o.jpg", "secret": "8de2d242ae", "media": "photo", "latitude": "0", "id": "10618956", "tags": "nevada"}, {"datetaken": "2005-04-22 12:42:35", "license": "1", "title": "First Things First", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10618957_5336bbab4c_o.jpg", "secret": "5336bbab4c", "media": "photo", "latitude": "0", "id": "10618957", "tags": "las vegas nevada april2005"}, {"datetaken": "2005-04-22 12:51:14", "license": "1", "title": "Ole Enjoying Our Lunch", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10618958_45239aaeb6_o.jpg", "secret": "45239aaeb6", "media": "photo", "latitude": "0", "id": "10618958", "tags": "las vegas nevada april2005"}, {"datetaken": "2005-04-22 12:51:23", "license": "1", "title": "Sweets Love", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10618959_1d3b09e188_o.jpg", "secret": "1d3b09e188", "media": "photo", "latitude": "0", "id": "10618959", "tags": "las vegas nevada april2005"}, {"datetaken": "2005-04-23 10:58:24", "license": "1", "title": "Hot Stuff for Breakfast", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10618960_8a8a7ea34d_o.jpg", "secret": "8a8a7ea34d", "media": "photo", "latitude": "0", "id": "10618960", "tags": "las vegas nevada april2005 food"}, {"datetaken": "2005-04-23 11:06:25", "license": "1", "title": "Mom in the Kitchen", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10621317_b8deef10d3_o.jpg", "secret": "b8deef10d3", "media": "photo", "latitude": "0", "id": "10621317", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:25:05", "license": "1", "title": "Ole Feeding New Roses", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10621318_fdf4085c22_o.jpg", "secret": "fdf4085c22", "media": "photo", "latitude": "0", "id": "10621318", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:25:29", "license": "1", "title": "Claremont: Rock n' Roll Garden", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10621320_fd1369dc85_o.jpg", "secret": "fd1369dc85", "media": "photo", "latitude": "0", "id": "10621320", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:26:36", "license": "1", "title": "Claremont: Back Garden Fountain", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10622241_7047e959a8_o.jpg", "secret": "7047e959a8", "media": "photo", "latitude": "0", "id": "10622241", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:27:13", "license": "1", "title": "View of Lake Mead", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10622242_471b4e1c90_o.jpg", "secret": "471b4e1c90", "media": "photo", "latitude": "0", "id": "10622242", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:28:54", "license": "1", "title": "Ole Rocks", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10622243_774d0b4394_o.jpg", "secret": "774d0b4394", "media": "photo", "latitude": "0", "id": "10622243", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:29:10", "license": "1", "title": "Closer Look at Rock Walls", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10622244_f32e22e75f_o.jpg", "secret": "f32e22e75f", "media": "photo", "latitude": "0", "id": "10622244", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:29:26", "license": "1", "title": "Side view of rock walls", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10622245_402bf4260a_o.jpg", "secret": "402bf4260a", "media": "photo", "latitude": "0", "id": "10622245", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:32:30", "license": "1", "title": "Eastern Portion of Rock Wall", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10623377_265fa421e8_o.jpg", "secret": "265fa421e8", "media": "photo", "latitude": "0", "id": "10623377", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:33:26", "license": "1", "title": "Claremont: East Side", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10623378_87f5aea056_o.jpg", "secret": "87f5aea056", "media": "photo", "latitude": "0", "id": "10623378", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:33:43", "license": "1", "title": "Quan Yin", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10623379_5bfb177083_o.jpg", "secret": "5bfb177083", "media": "photo", "latitude": "0", "id": "10623379", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:35:47", "license": "1", "title": "Living Room", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10623380_4ba9b8acc4_o.jpg", "secret": "4ba9b8acc4", "media": "photo", "latitude": "0", "id": "10623380", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:44:12", "license": "1", "title": "TV Room", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10623381_11ecc693a5_o.jpg", "secret": "11ecc693a5", "media": "photo", "latitude": "0", "id": "10623381", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:44:23", "license": "1", "title": "Claremont: West Hall", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10623382_ee66be19f9_o.jpg", "secret": "ee66be19f9", "media": "photo", "latitude": "0", "id": "10623382", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:44:39", "license": "1", "title": "Close up of antique laquer cabinet", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10624696_e26eb7765c_o.jpg", "secret": "e26eb7765c", "media": "photo", "latitude": "0", "id": "10624696", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:44:58", "license": "1", "title": "hand-painted chandelier", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/10624692_f510bf502a_o.jpg", "secret": "f510bf502a", "media": "photo", "latitude": "0", "id": "10624692", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:45:12", "license": "1", "title": "Hand-painted details", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10624693_c8f2fe8b62_o.jpg", "secret": "c8f2fe8b62", "media": "photo", "latitude": "0", "id": "10624693", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:45:33", "license": "1", "title": "Close of up of hand-painted details", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/10624694_214b9a46b4_o.jpg", "secret": "214b9a46b4", "media": "photo", "latitude": "0", "id": "10624694", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 11:47:12", "license": "1", "title": "Fainting on the Fainting Couch", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10624695_877ce4f83e_o.jpg", "secret": "877ce4f83e", "media": "photo", "latitude": "0", "id": "10624695", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 14:03:31", "license": "1", "title": "Claremont: Looking into the dining room", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/10621316_b8a9125745_o.jpg", "secret": "b8a9125745", "media": "photo", "latitude": "0", "id": "10621316", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 14:04:09", "license": "1", "title": "Claremont: Dining Room Mural", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10621319_fe6b474c70_o.jpg", "secret": "fe6b474c70", "media": "photo", "latitude": "0", "id": "10621319", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 14:04:45", "license": "1", "title": "Close up of marble detail", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10621321_def85c4972_o.jpg", "secret": "def85c4972", "media": "photo", "latitude": "0", "id": "10621321", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-04-23 14:07:57", "license": "1", "title": "Saturday Lunch", "text": "", "album_id": "262424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/10622240_42cb43ecf0_o.jpg", "secret": "42cb43ecf0", "media": "photo", "latitude": "0", "id": "10622240", "tags": "bouldercity nevada april2005"}, {"datetaken": "2005-05-24 08:59:13", "license": "5", "title": "General Wade Hampton", "text": "", "album_id": "381318", "longitude": "-81.033193", "url_o": "https://farm1.staticflickr.com/10/15852415_c395134c38_o.jpg", "secret": "c395134c38", "media": "photo", "latitude": "34.000272", "id": "15852415", "tags": "columbia capitol southcarolina sc civilwar statue geotagged geolat34000272 geolon81033193 mapprinclude"}, {"datetaken": "2005-05-24 09:43:35", "license": "5", "title": "State Capitol Lobby", "text": "", "album_id": "381318", "longitude": "-81.033193", "url_o": "https://farm1.staticflickr.com/13/15852416_dc611332b0_o.jpg", "secret": "dc611332b0", "media": "photo", "latitude": "34.000272", "id": "15852416", "tags": "columbia capitol southcarolina sc arch architecture statehouse geotagged geolat34000272 geolon81033193 mapprinclude 25"}, {"datetaken": "2005-05-24 09:56:39", "license": "5", "title": "State Capitol Dome", "text": "", "album_id": "381318", "longitude": "-81.033193", "url_o": "https://farm1.staticflickr.com/11/15852417_5264029ab6_o.jpg", "secret": "5264029ab6", "media": "photo", "latitude": "34.000272", "id": "15852417", "tags": "columbia capitol southcarolina sc dome architecture statehouse geotagged geolat34000272 geolon81033193 mapprinclude 25"}, {"datetaken": "2005-05-24 10:01:04", "license": "5", "title": "Confederate Soldier Monument", "text": "", "album_id": "381318", "longitude": "-81.033193", "url_o": "https://farm1.staticflickr.com/10/15852418_c6289b60c1_o.jpg", "secret": "c6289b60c1", "media": "photo", "latitude": "34.000272", "id": "15852418", "tags": "columbia capitol southcarolina sc statue confederate flag geotagged geolat34000272 geolon81033193 mapprinclude"}, {"datetaken": "2005-05-24 10:01:30", "license": "5", "title": "State House Steps", "text": "", "album_id": "381318", "longitude": "-81.033193", "url_o": "https://farm1.staticflickr.com/14/16313792_b4f3517042_o.jpg", "secret": "b4f3517042", "media": "photo", "latitude": "34.000272", "id": "16313792", "tags": "columbia statehouse southcarolina capitol sc architecture geotagged geolat34000272 geolon81033193 mapprinclude"}, {"datetaken": "2005-05-24 10:15:34", "license": "5", "title": "Palmettos", "text": "", "album_id": "381318", "longitude": "-81.033193", "url_o": "https://farm1.staticflickr.com/11/16313794_b6f722a8f6_o.jpg", "secret": "b6f722a8f6", "media": "photo", "latitude": "34.000272", "id": "16313794", "tags": "columbia statehouse southcarolina capitol sc palmetto trees geotagged geolat34000272 geolon81033193 mapprinclude"}, {"datetaken": "2005-05-24 10:17:21", "license": "5", "title": "Strom Thurmond", "text": "", "album_id": "381318", "longitude": "-81.033193", "url_o": "https://farm1.staticflickr.com/13/16313793_2e53bd155c_o.jpg", "secret": "2e53bd155c", "media": "photo", "latitude": "34.000272", "id": "16313793", "tags": "columbia statehouse southcarolina capitol sc statue architecture geotagged geolat34000272 geolon81033193 mapprinclude"}, {"datetaken": "2005-05-24 11:47:33", "license": "5", "title": "Gorilla", "text": "", "album_id": "381318", "longitude": "-81.076060", "url_o": "https://farm1.staticflickr.com/9/15853260_542c5f0bc7_o.jpg", "secret": "542c5f0bc7", "media": "photo", "latitude": "34.012390", "id": "15853260", "tags": "columbia riverbanks zoo southcarolina sc gorilla geotagged geolat34012390 geolon81076060 mapprinclude"}, {"datetaken": "2005-05-24 12:00:02", "license": "5", "title": "Meerkat", "text": "", "album_id": "381318", "longitude": "-81.076060", "url_o": "https://farm1.staticflickr.com/12/15853127_7cad934d65_o.jpg", "secret": "7cad934d65", "media": "photo", "latitude": "34.012390", "id": "15853127", "tags": "columbia riverbanks zoo southcarolina sc meerkat geotagged geolat34012390 geolon81076060 mapprinclude"}, {"datetaken": "2005-05-24 12:02:57", "license": "5", "title": "Elephant", "text": "", "album_id": "381318", "longitude": "-81.076060", "url_o": "https://farm1.staticflickr.com/13/15853128_5ff7c62c0a_o.jpg", "secret": "5ff7c62c0a", "media": "photo", "latitude": "34.012390", "id": "15853128", "tags": "columbia riverbanks zoo southcarolina sc elephant geotagged geolat34012390 geolon81076060 mapprinclude"}, {"datetaken": "2005-05-24 12:06:27", "license": "5", "title": "Giraffe", "text": "", "album_id": "381318", "longitude": "-81.076060", "url_o": "https://farm1.staticflickr.com/12/15853129_039b63a267_o.jpg", "secret": "039b63a267", "media": "photo", "latitude": "34.012390", "id": "15853129", "tags": "columbia riverbanks zoo southcarolina sc giraffe geotagged geolat34012390 geolon81076060 mapprinclude"}, {"datetaken": "2005-05-24 12:31:30", "license": "5", "title": "Flamingos", "text": "", "album_id": "381318", "longitude": "-81.076060", "url_o": "https://farm1.staticflickr.com/11/16313795_e0d7318e98_o.jpg", "secret": "e0d7318e98", "media": "photo", "latitude": "34.012390", "id": "16313795", "tags": "columbia riverbanks zoo southcarolina pink sc flamingo geotagged geolat34012390 geolon81076060 mapprinclude"}, {"datetaken": "2005-05-24 12:31:45", "license": "5", "title": "Fighting Flamingos", "text": "", "album_id": "381318", "longitude": "-81.076060", "url_o": "https://farm1.staticflickr.com/11/16313796_d015699a23_o.jpg", "secret": "d015699a23", "media": "photo", "latitude": "34.012390", "id": "16313796", "tags": "columbia riverbanks zoo southcarolina pink sc flamingo geotagged geolat34012390 geolon81076060 mapprinclude 25"}, {"datetaken": "2005-05-24 12:34:02", "license": "5", "title": "Penguins", "text": "", "album_id": "381318", "longitude": "-81.076060", "url_o": "https://farm1.staticflickr.com/11/16313797_08806185b2_o.jpg", "secret": "08806185b2", "media": "photo", "latitude": "34.012390", "id": "16313797", "tags": "white black sc birds geotagged zoo penguins southcarolina columbia mapprinclude riverbanks geo:lat=34012390 geo:lon=81076060"}, {"datetaken": "2005-05-24 12:36:34", "license": "5", "title": "Watch the Birdie!", "text": "", "album_id": "381318", "longitude": "-81.076060", "url_o": "https://farm1.staticflickr.com/14/17377828_f8cdbde62b_o.jpg", "secret": "f8cdbde62b", "media": "photo", "latitude": "34.012390", "id": "17377828", "tags": "riverbanks zoo columbia birds southcarolina green yellow sc geotagged geolat34012390 geolon81076060 mapprinclude"}, {"datetaken": "2005-05-24 13:15:56", "license": "5", "title": "Lorakeet", "text": "", "album_id": "381318", "longitude": "-81.076060", "url_o": "https://farm1.staticflickr.com/14/16357884_96fb90d85d_o.jpg", "secret": "96fb90d85d", "media": "photo", "latitude": "34.012390", "id": "16357884", "tags": "riverbanks zoo columbia birds southcarolina sc lorakeet geotagged geolat34012390 geolon81076060 mapprinclude rainbow"}, {"datetaken": "2005-06-15 07:29:31", "license": "4", "title": "Some Girl", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19654362_f11424fe29_o.jpg", "secret": "f11424fe29", "media": "photo", "latitude": "0", "id": "19654362", "tags": "ahmedabad girl potrait india portrait"}, {"datetaken": "2005-06-15 07:30:22", "license": "4", "title": "Same girl again", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19654343_f445e1efa2_o.jpg", "secret": "f445e1efa2", "media": "photo", "latitude": "0", "id": "19654343", "tags": "ahmedabad girl potrait india portrait"}, {"datetaken": "2005-06-15 07:45:49", "license": "4", "title": "Swami Narayan mandir", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19654735_d8c08b3bca_o.jpg", "secret": "d8c08b3bca", "media": "photo", "latitude": "0", "id": "19654735", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-15 08:05:06", "license": "4", "title": "Blue windows", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19654577_35b845599d_o.jpg", "secret": "35b845599d", "media": "photo", "latitude": "0", "id": "19654577", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-15 08:08:57", "license": "4", "title": "Another Building", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19654754_4ab38bd28a_o.jpg", "secret": "4ab38bd28a", "media": "photo", "latitude": "0", "id": "19654754", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-15 08:12:26", "license": "4", "title": "Pol Entrance", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19654794_d9acfed1f2_o.jpg", "secret": "d9acfed1f2", "media": "photo", "latitude": "0", "id": "19654794", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-15 08:13:24", "license": "4", "title": "Carcass of a moped", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19654631_70aec037d1_o.jpg", "secret": "70aec037d1", "media": "photo", "latitude": "0", "id": "19654631", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-15 08:15:49", "license": "4", "title": "Temple Woman", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19654727_da42f338cf_o.jpg", "secret": "da42f338cf", "media": "photo", "latitude": "0", "id": "19654727", "tags": "deleteme5 deleteme8 woman india deleteme deleteme2 deleteme3 deleteme4 green deleteme6 deleteme9 deleteme7 geotagged temple saveme4 saveme5 saveme6 saveme tour saveme2 saveme3 saveme7 deleteme10 prayer poor saveme8 saveme9 sari oldcity pilgrim gujarat ahmedabad heritagewalk pol alleyways indianwoman gloomyheart"}, {"datetaken": "2005-06-15 08:18:59", "license": "4", "title": "Door", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19654702_5bbb5ce1df_o.jpg", "secret": "5bbb5ce1df", "media": "photo", "latitude": "0", "id": "19654702", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-15 08:19:29", "license": "4", "title": "Cow and the guide", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19654712_55a7b16149_o.jpg", "secret": "55a7b16149", "media": "photo", "latitude": "0", "id": "19654712", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-15 08:23:21", "license": "4", "title": "Bird Feeder thing", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19654552_2d68e2c47e_o.jpg", "secret": "2d68e2c47e", "media": "photo", "latitude": "0", "id": "19654552", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-15 08:30:04", "license": "4", "title": "WINDOOOOZ", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19654686_9b962d0572_o.jpg", "secret": "9b962d0572", "media": "photo", "latitude": "0", "id": "19654686", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat contestwindows window windows"}, {"datetaken": "2005-06-15 08:30:43", "license": "4", "title": "Supposed colonial house", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19654825_cc05fe407d_o.jpg", "secret": "cc05fe407d", "media": "photo", "latitude": "0", "id": "19654825", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-15 08:31:15", "license": "4", "title": "Supposed Mughal house", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19654768_f903712911_o.jpg", "secret": "f903712911", "media": "photo", "latitude": "0", "id": "19654768", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-15 08:32:47", "license": "4", "title": "Doors and stairs", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19654782_c674a5495c_o.jpg", "secret": "c674a5495c", "media": "photo", "latitude": "0", "id": "19654782", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-15 08:34:55", "license": "4", "title": "Guy and a house", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19654533_417e5ce4a5_o.jpg", "secret": "417e5ce4a5", "media": "photo", "latitude": "0", "id": "19654533", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-15 08:37:29", "license": "4", "title": "Haveli with 60 rooms", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19654773_90b1c70ea6_o.jpg", "secret": "90b1c70ea6", "media": "photo", "latitude": "0", "id": "19654773", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-15 08:39:02", "license": "4", "title": "Sai Baba Lookalike Vegetable Guy", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19654673_98c6b405a2_o.jpg", "secret": "98c6b405a2", "media": "photo", "latitude": "0", "id": "19654673", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-15 08:40:19", "license": "4", "title": "Another Entrance", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19654643_6487f84583_o.jpg", "secret": "6487f84583", "media": "photo", "latitude": "0", "id": "19654643", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-15 08:43:06", "license": "4", "title": "Wall Brackets", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/19654818_2b006fe9a4_o.jpg", "secret": "2b006fe9a4", "media": "photo", "latitude": "0", "id": "19654818", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-15 08:47:21", "license": "4", "title": "Clothes", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/19654620_31918b8bd3_o.jpg", "secret": "31918b8bd3", "media": "photo", "latitude": "0", "id": "19654620", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-15 08:49:21", "license": "4", "title": "People", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/19654604_172361c845_o.jpg", "secret": "172361c845", "media": "photo", "latitude": "0", "id": "19654604", "tags": "deleteme5 deleteme8 india deleteme deleteme2 deleteme3 deleteme4 deleteme6 deleteme9 deleteme7 tour deleteme10 oldcity gujarat ahmedabad heritagewalk pol alleyways bohri peoplesofindia gujratimuslim"}, {"datetaken": "2005-06-15 08:58:32", "license": "4", "title": "Jumma Masjid", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/19654594_62b3c94f32_o.jpg", "secret": "62b3c94f32", "media": "photo", "latitude": "0", "id": "19654594", "tags": "india tour oldcity gujarat ahmedabad heritagewalk pol alleyways"}, {"datetaken": "2005-06-15 09:04:14", "license": "4", "title": "Inside the mosque", "text": "", "album_id": "461497", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/19654521_c30c2ebeb9_o.jpg", "secret": "c30c2ebeb9", "media": "photo", "latitude": "0", "id": "19654521", "tags": "ahmedabad heritagewalk oldcity india pol alleyways tour gujarat"}, {"datetaken": "2005-06-18 15:12:15", "license": "4", "title": "P1010010", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20491354_d7eb945433_o.jpg", "secret": "d7eb945433", "media": "photo", "latitude": "0", "id": "20491354", "tags": ""}, {"datetaken": "2005-06-18 15:12:27", "license": "4", "title": "P1010011", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20491355_d96f3055a1_o.jpg", "secret": "d96f3055a1", "media": "photo", "latitude": "0", "id": "20491355", "tags": ""}, {"datetaken": "2005-06-18 15:12:41", "license": "4", "title": "P1010012", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20491356_14c52968c9_o.jpg", "secret": "14c52968c9", "media": "photo", "latitude": "0", "id": "20491356", "tags": ""}, {"datetaken": "2005-06-18 15:14:09", "license": "4", "title": "P1010016", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20491357_b30b0254a1_o.jpg", "secret": "b30b0254a1", "media": "photo", "latitude": "0", "id": "20491357", "tags": ""}, {"datetaken": "2005-06-18 15:14:23", "license": "4", "title": "P1010017", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20491358_be575675cc_o.jpg", "secret": "be575675cc", "media": "photo", "latitude": "0", "id": "20491358", "tags": ""}, {"datetaken": "2005-06-18 15:15:03", "license": "4", "title": "P1010019", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20491359_fcea016505_o.jpg", "secret": "fcea016505", "media": "photo", "latitude": "0", "id": "20491359", "tags": ""}, {"datetaken": "2005-06-18 15:15:10", "license": "4", "title": "P1010020", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20491783_895a90f9fd_o.jpg", "secret": "895a90f9fd", "media": "photo", "latitude": "0", "id": "20491783", "tags": ""}, {"datetaken": "2005-06-18 15:15:18", "license": "4", "title": "P1010021", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20491784_0cab37e807_o.jpg", "secret": "0cab37e807", "media": "photo", "latitude": "0", "id": "20491784", "tags": ""}, {"datetaken": "2005-06-18 15:16:31", "license": "4", "title": "P1010022", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20491785_43f805342f_o.jpg", "secret": "43f805342f", "media": "photo", "latitude": "0", "id": "20491785", "tags": ""}, {"datetaken": "2005-06-18 15:16:58", "license": "4", "title": "P1010023", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20491786_a137267c21_o.jpg", "secret": "a137267c21", "media": "photo", "latitude": "0", "id": "20491786", "tags": ""}, {"datetaken": "2005-06-18 15:17:21", "license": "4", "title": "P1010024", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20491787_b3f066f751_o.jpg", "secret": "b3f066f751", "media": "photo", "latitude": "0", "id": "20491787", "tags": ""}, {"datetaken": "2005-06-18 15:17:55", "license": "4", "title": "P1010025", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20491788_135844cc07_o.jpg", "secret": "135844cc07", "media": "photo", "latitude": "0", "id": "20491788", "tags": ""}, {"datetaken": "2005-06-18 15:19:22", "license": "4", "title": "P1010026", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20492088_77cd07e800_o.jpg", "secret": "77cd07e800", "media": "photo", "latitude": "0", "id": "20492088", "tags": ""}, {"datetaken": "2005-06-18 15:19:45", "license": "4", "title": "P1010027", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20492089_6019bdc483_o.jpg", "secret": "6019bdc483", "media": "photo", "latitude": "0", "id": "20492089", "tags": ""}, {"datetaken": "2005-06-18 15:20:37", "license": "4", "title": "P1010029", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20492090_9203ce56cb_o.jpg", "secret": "9203ce56cb", "media": "photo", "latitude": "0", "id": "20492090", "tags": ""}, {"datetaken": "2005-06-18 15:20:58", "license": "4", "title": "P1010030", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20492091_26f1206209_o.jpg", "secret": "26f1206209", "media": "photo", "latitude": "0", "id": "20492091", "tags": ""}, {"datetaken": "2005-06-18 15:21:31", "license": "4", "title": "P1010031", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20492092_0b2af890db_o.jpg", "secret": "0b2af890db", "media": "photo", "latitude": "0", "id": "20492092", "tags": ""}, {"datetaken": "2005-06-18 15:21:52", "license": "4", "title": "P1010033", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20492093_1241b147f4_o.jpg", "secret": "1241b147f4", "media": "photo", "latitude": "0", "id": "20492093", "tags": ""}, {"datetaken": "2005-06-18 15:22:11", "license": "4", "title": "P1010034", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20492336_371c9db14a_o.jpg", "secret": "371c9db14a", "media": "photo", "latitude": "0", "id": "20492336", "tags": ""}, {"datetaken": "2005-06-18 15:22:23", "license": "4", "title": "P1010035", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20492337_1e1c121818_o.jpg", "secret": "1e1c121818", "media": "photo", "latitude": "0", "id": "20492337", "tags": ""}, {"datetaken": "2005-06-18 15:22:37", "license": "4", "title": "P1010036", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20492338_b7b74fbb75_o.jpg", "secret": "b7b74fbb75", "media": "photo", "latitude": "0", "id": "20492338", "tags": ""}, {"datetaken": "2005-06-18 15:22:58", "license": "4", "title": "P1010037", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20492341_8b75760247_o.jpg", "secret": "8b75760247", "media": "photo", "latitude": "0", "id": "20492341", "tags": ""}, {"datetaken": "2005-06-18 15:23:04", "license": "4", "title": "P1010038", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20492343_f0132487ab_o.jpg", "secret": "f0132487ab", "media": "photo", "latitude": "0", "id": "20492343", "tags": ""}, {"datetaken": "2005-06-18 15:23:20", "license": "4", "title": "P1010039", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/20492344_5a152d7493_o.jpg", "secret": "5a152d7493", "media": "photo", "latitude": "0", "id": "20492344", "tags": ""}, {"datetaken": "2005-06-18 15:23:43", "license": "4", "title": "P1010040", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/20492567_33dff91ab5_o.jpg", "secret": "33dff91ab5", "media": "photo", "latitude": "0", "id": "20492567", "tags": ""}, {"datetaken": "2005-06-18 16:40:25", "license": "4", "title": "P1010047", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20492568_274957e780_o.jpg", "secret": "274957e780", "media": "photo", "latitude": "0", "id": "20492568", "tags": ""}, {"datetaken": "2005-06-18 16:40:37", "license": "4", "title": "P1010048", "text": "", "album_id": "478119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/20492569_4822084b7a_o.jpg", "secret": "4822084b7a", "media": "photo", "latitude": "0", "id": "20492569", "tags": ""}, {"datetaken": "2005-03-03 15:17:38", "license": "1", "title": "Belize Cayes From Air", "text": "", "album_id": "866852", "longitude": "-88.132495", "url_o": "https://farm1.staticflickr.com/14/18408506_7e5c0325b4_o.jpg", "secret": "7e5c0325b4", "media": "photo", "latitude": "17.650074", "id": "18408506", "tags": "island flying belize mangrove geology"}, {"datetaken": "2005-03-03 15:51:16", "license": "1", "title": "Sunset watchers, Caye Caulker", "text": "", "album_id": "866852", "longitude": "-88.027095", "url_o": "https://farm1.staticflickr.com/13/18411911_4636e56b72_o.jpg", "secret": "4636e56b72", "media": "photo", "latitude": "17.743536", "id": "18411911", "tags": "belize caye caulker sunset people"}, {"datetaken": "2005-03-04 04:38:57", "license": "1", "title": "Skunk", "text": "", "album_id": "866852", "longitude": "-88.027095", "url_o": "https://farm3.staticflickr.com/2603/5833412724_8a617e5cac_o.jpg", "secret": "f0a24f1a87", "media": "photo", "latitude": "17.743536", "id": "5833412724", "tags": "breakfast cat james bed belize lazy iguana hammock porch caye skunk caulker"}, {"datetaken": "2005-03-04 09:24:26", "license": "1", "title": "Caye Caulker Back Dock", "text": "", "album_id": "866852", "longitude": "-88.026931", "url_o": "https://farm1.staticflickr.com/24/56810464_51e69336dd_o.jpg", "secret": "51e69336dd", "media": "photo", "latitude": "17.746316", "id": "56810464", "tags": "caye caulker back dock belize"}, {"datetaken": "2005-03-04 12:48:06", "license": "1", "title": "Kathryn and Bikes", "text": "", "album_id": "866852", "longitude": "-88.023662", "url_o": "https://farm6.staticflickr.com/5101/5832859953_bd79632e69_o.jpg", "secret": "4f626ee1cb", "media": "photo", "latitude": "17.747869", "id": "5832859953", "tags": "ocean beach bike sand belize overcast kathryn caye hopper caulker"}, {"datetaken": "2005-03-04 12:48:36", "license": "1", "title": "James on a Bike", "text": "", "album_id": "866852", "longitude": "-88.023662", "url_o": "https://farm4.staticflickr.com/3521/5832860263_ccc70262e6_o.jpg", "secret": "4d56d17d69", "media": "photo", "latitude": "17.747869", "id": "5832860263", "tags": "color bike buildings james colorful belize caye caulker"}, {"datetaken": "2005-03-04 13:00:35", "license": "1", "title": "Boats for Hire", "text": "", "album_id": "866852", "longitude": "-88.023662", "url_o": "https://farm6.staticflickr.com/5040/5833413788_413ee06e8d_o.jpg", "secret": "900c9ecc6c", "media": "photo", "latitude": "17.747869", "id": "5833413788", "tags": "street color bike fence buildings belize kathryn caye hopper picket caulker"}, {"datetaken": "2005-03-04 13:16:36", "license": "1", "title": "Rasta Art Car, Caye Caulker", "text": "", "album_id": "866852", "longitude": "-88.027095", "url_o": "https://farm1.staticflickr.com/13/18412462_b65d0bf747_o.jpg", "secret": "b65d0bf747", "media": "photo", "latitude": "17.743536", "id": "18412462", "tags": "belize caye caulker rastafarian art car"}, {"datetaken": "2005-03-04 13:16:52", "license": "1", "title": "Jerusalem", "text": "", "album_id": "866852", "longitude": "-88.026280", "url_o": "https://farm3.staticflickr.com/2615/5833947002_0c78991184_o.jpg", "secret": "5ce36cdd5f", "media": "photo", "latitude": "17.745348", "id": "5833947002", "tags": "art car painting words belize jerusalem prayer caye rasta caulker rastafarian"}, {"datetaken": "2005-03-04 13:17:09", "license": "1", "title": "Rasta Art House, Caye Caulker", "text": "", "album_id": "866852", "longitude": "-88.027095", "url_o": "https://farm1.staticflickr.com/12/18413341_4e6c2d1ad6_o.jpg", "secret": "4e6c2d1ad6", "media": "photo", "latitude": "17.743536", "id": "18413341", "tags": "belize caye caulker rasta art house"}, {"datetaken": "2005-03-04 13:17:40", "license": "1", "title": "Enlarge Your Heart", "text": "", "album_id": "866852", "longitude": "-88.026359", "url_o": "https://farm3.staticflickr.com/2633/5833392473_a0d17b4d47_o.jpg", "secret": "b42ec99b25", "media": "photo", "latitude": "17.745014", "id": "5833392473", "tags": "house art painting heart belize caye rasta caulker rastafarian"}, {"datetaken": "2005-03-04 21:43:47", "license": "1", "title": "The nightlife on Caye Caulker", "text": "", "album_id": "866852", "longitude": "-88.023591", "url_o": "https://farm1.staticflickr.com/30/56810105_eb19604125_o.jpg", "secret": "eb19604125", "media": "photo", "latitude": "17.746295", "id": "56810105", "tags": "beach night restaurant dragon belize chinese palace front caye caulker"}, {"datetaken": "2005-03-05 08:08:29", "license": "1", "title": "Beach guest houses, Caye Caulker", "text": "", "album_id": "866852", "longitude": "-88.023662", "url_o": "https://farm1.staticflickr.com/13/18417877_3b9281db09_o.jpg", "secret": "3b9281db09", "media": "photo", "latitude": "17.747869", "id": "18417877", "tags": ""}, {"datetaken": "2005-03-05 08:09:35", "license": "1", "title": "Front Beach Guesthouses", "text": "", "album_id": "866852", "longitude": "-88.023869", "url_o": "https://farm4.staticflickr.com/3424/5833991304_b5a99e4796_o.jpg", "secret": "98b03239e0", "media": "photo", "latitude": "17.746527", "id": "5833991304", "tags": "red orange house color beach yellow pain colorful belize front caye caribbean caulker"}, {"datetaken": "2005-03-05 13:39:26", "license": "1", "title": "Belikin", "text": "", "album_id": "866852", "longitude": "-88.023662", "url_o": "https://farm6.staticflickr.com/5113/5833310756_9364a72823_o.jpg", "secret": "d0179d8284", "media": "photo", "latitude": "17.747869", "id": "5833310756", "tags": "food beer rainbow belize grill caye caulker belikin"}, {"datetaken": "2005-07-10 11:58:32", "license": "1", "title": "Caves", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24928279_6df8fedbe1_o.jpg", "secret": "6df8fedbe1", "media": "photo", "latitude": "0", "id": "24928279", "tags": "bahamas caves reflection"}, {"datetaken": "2005-07-10 11:58:32", "license": "1", "title": "Sun reflecting on water", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24928283_5ce7a9a952_o.jpg", "secret": "5ce7a9a952", "media": "photo", "latitude": "0", "id": "24928283", "tags": "bahamas caves reflection"}, {"datetaken": "2005-07-10 11:58:32", "license": "1", "title": "Mangrove roots", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24928281_f413a1c1ef_o.jpg", "secret": "f413a1c1ef", "media": "photo", "latitude": "0", "id": "24928281", "tags": "bahamas mangrovetree caves"}, {"datetaken": "2005-07-10 11:58:32", "license": "1", "title": "North Huricane Damaged Shoreline", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24928282_4211c46cd6_o.jpg", "secret": "4211c46cd6", "media": "photo", "latitude": "0", "id": "24928282", "tags": "bahamas shoreline"}, {"datetaken": "2005-07-10 11:58:32", "license": "1", "title": "Hurricane Damaged Shoreline", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24928280_d5ce344e15_o.jpg", "secret": "d5ce344e15", "media": "photo", "latitude": "0", "id": "24928280", "tags": "bahamas"}, {"datetaken": "2005-07-10 11:58:32", "license": "1", "title": "Palm", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24928284_81ad264256_o.jpg", "secret": "81ad264256", "media": "photo", "latitude": "0", "id": "24928284", "tags": "beach shoreline palmtree badge bahamas"}, {"datetaken": "2005-07-10 12:05:42", "license": "1", "title": "TED", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24929914_b0cb9cfa45_o.jpg", "secret": "b0cb9cfa45", "media": "photo", "latitude": "0", "id": "24929914", "tags": "ted bahamas"}, {"datetaken": "2005-07-10 12:07:49", "license": "1", "title": "Waiting", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24930294_49250ef735_o.jpg", "secret": "49250ef735", "media": "photo", "latitude": "0", "id": "24930294", "tags": "bahamas parasailing"}, {"datetaken": "2005-07-10 12:07:49", "license": "1", "title": "Hooked In", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24930296_8fede6a779_o.jpg", "secret": "8fede6a779", "media": "photo", "latitude": "0", "id": "24930296", "tags": "bahamas parasailing"}, {"datetaken": "2005-07-10 12:07:49", "license": "1", "title": "Up Up and Away", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24930297_c8cc2fa447_o.jpg", "secret": "c8cc2fa447", "media": "photo", "latitude": "0", "id": "24930297", "tags": "bahamas parasailing"}, {"datetaken": "2005-07-10 12:07:49", "license": "1", "title": "So High!", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24930298_ea6a55136f_o.jpg", "secret": "ea6a55136f", "media": "photo", "latitude": "0", "id": "24930298", "tags": "bahamas parasailing"}, {"datetaken": "2005-07-10 12:07:49", "license": "1", "title": "Lining Up", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24930299_dec3e5222d_o.jpg", "secret": "dec3e5222d", "media": "photo", "latitude": "0", "id": "24930299", "tags": "bahamas parasailing parachute"}, {"datetaken": "2005-07-10 12:12:46", "license": "1", "title": "Landing", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24931395_1f2a5b1a95_o.jpg", "secret": "1f2a5b1a95", "media": "photo", "latitude": "0", "id": "24931395", "tags": "bahamas parasailing"}, {"datetaken": "2005-07-10 12:12:46", "license": "1", "title": "Port Hole", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24931396_c202127f59_o.jpg", "secret": "c202127f59", "media": "photo", "latitude": "0", "id": "24931396", "tags": "bahamas cruiseship"}, {"datetaken": "2005-07-10 12:12:46", "license": "1", "title": "View", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24931397_76e7904a8d_o.jpg", "secret": "76e7904a8d", "media": "photo", "latitude": "0", "id": "24931397", "tags": "bahamas cruiseship portlucaya"}, {"datetaken": "2005-07-10 12:12:46", "license": "1", "title": "TED Enjoys the View", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24931398_e11f5a7f0a_o.jpg", "secret": "e11f5a7f0a", "media": "photo", "latitude": "0", "id": "24931398", "tags": "bahamas cruiseship ted"}, {"datetaken": "2005-07-10 12:12:46", "license": "1", "title": "TED Gets His Feet Wet", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24931400_f3ad167012_o.jpg", "secret": "f3ad167012", "media": "photo", "latitude": "0", "id": "24931400", "tags": "bahamas ted cruiseship"}, {"datetaken": "2005-07-10 12:12:46", "license": "1", "title": "Ship Yard", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24931399_043989853f_o.jpg", "secret": "043989853f", "media": "photo", "latitude": "0", "id": "24931399", "tags": "bahamas cruiseship me"}, {"datetaken": "2005-07-10 12:22:30", "license": "1", "title": "TED Hides from the Sun", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/24933428_748c81deb2_o.jpg", "secret": "748c81deb2", "media": "photo", "latitude": "0", "id": "24933428", "tags": "bahamas ted"}, {"datetaken": "2005-07-10 12:22:30", "license": "1", "title": "Ship's Outside Corridor", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24933426_c9091fcd49_o.jpg", "secret": "c9091fcd49", "media": "photo", "latitude": "0", "id": "24933426", "tags": "bahamas cruiseship ted"}, {"datetaken": "2005-07-10 12:22:30", "license": "1", "title": "Rain", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/24933427_26eb336d42_o.jpg", "secret": "26eb336d42", "media": "photo", "latitude": "0", "id": "24933427", "tags": "bahamas rain"}, {"datetaken": "2005-07-10 12:32:47", "license": "1", "title": "Parachute", "text": "", "album_id": "569233", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/24935828_9a623deaa8_o.jpg", "secret": "9a623deaa8", "media": "photo", "latitude": "0", "id": "24935828", "tags": "bahamas parasailing parachute"}, {"datetaken": "2005-07-29 12:00:53", "license": "1", "title": "Remains of a tree after the tornado", "text": "", "album_id": "663795", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29447977_0f55ee4739_o.jpg", "secret": "0f55ee4739", "media": "photo", "latitude": "0", "id": "29447977", "tags": "tornado moving car away from an unsafe building"}, {"datetaken": "2005-07-29 12:01:43", "license": "1", "title": "Remains of a tree after the tornado", "text": "", "album_id": "663795", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29447344_471ec70620_o.jpg", "secret": "471ec70620", "media": "photo", "latitude": "0", "id": "29447344", "tags": "tornado moving car away from an unsafe building"}, {"datetaken": "2005-07-29 12:01:55", "license": "1", "title": "Ladypool Road shops", "text": "", "album_id": "663795", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29447418_6b443af61b_o.jpg", "secret": "6b443af61b", "media": "photo", "latitude": "0", "id": "29447418", "tags": "tornado moving car away from an unsafe building"}, {"datetaken": "2005-07-29 12:02:11", "license": "1", "title": "shops on Ladypool Road", "text": "", "album_id": "663795", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29447466_e32c30803c_o.jpg", "secret": "e32c30803c", "media": "photo", "latitude": "0", "id": "29447466", "tags": ""}, {"datetaken": "2005-07-29 12:03:50", "license": "1", "title": "Roshven Road after the tornado", "text": "", "album_id": "663795", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29447513_dab22bad6d_o.jpg", "secret": "dab22bad6d", "media": "photo", "latitude": "0", "id": "29447513", "tags": "moving car away from an unsafe building"}, {"datetaken": "2005-07-29 12:05:05", "license": "1", "title": "Kensington Avenue, Roshven Road", "text": "", "album_id": "663795", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29447554_6d7bf7e173_o.jpg", "secret": "6d7bf7e173", "media": "photo", "latitude": "0", "id": "29447554", "tags": "rooves shops ladypool road from roshven moving car away an unsafe building"}, {"datetaken": "2005-07-29 12:07:08", "license": "1", "title": "St Barnabas'", "text": "", "album_id": "663795", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29447624_388150f850_o.jpg", "secret": "388150f850", "media": "photo", "latitude": "0", "id": "29447624", "tags": "rooves shops ladypool road from roshven moving car away an unsafe building"}, {"datetaken": "2005-07-29 12:07:20", "license": "1", "title": "Ash Grove, Clifton Road", "text": "", "album_id": "663795", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29447668_c5d8769e6f_o.jpg", "secret": "c5d8769e6f", "media": "photo", "latitude": "0", "id": "29447668", "tags": "tornado moving car away from an unsafe building"}, {"datetaken": "2005-07-29 12:09:16", "license": "1", "title": "Clifton Road/Stoney Lane", "text": "", "album_id": "663795", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29447721_4657b07ca0_o.jpg", "secret": "4657b07ca0", "media": "photo", "latitude": "0", "id": "29447721", "tags": "tornado moving car away from an unsafe building"}, {"datetaken": "2005-07-29 12:12:23", "license": "1", "title": "DSC00364", "text": "", "album_id": "663795", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29447792_0807c679fb_o.jpg", "secret": "0807c679fb", "media": "photo", "latitude": "0", "id": "29447792", "tags": "tornado"}, {"datetaken": "2005-07-29 12:12:32", "license": "1", "title": "Durham Road", "text": "", "album_id": "663795", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29447843_0a6bc9471b_o.jpg", "secret": "0a6bc9471b", "media": "photo", "latitude": "0", "id": "29447843", "tags": "tornado moving car away from an unsafe building"}, {"datetaken": "2005-07-29 12:18:43", "license": "1", "title": "DSC00366", "text": "", "album_id": "663795", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29447892_a34246d792_o.jpg", "secret": "a34246d792", "media": "photo", "latitude": "0", "id": "29447892", "tags": "tornado"}, {"datetaken": "2005-07-29 12:19:05", "license": "1", "title": "DSC00367", "text": "", "album_id": "663795", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29447297_d77d43a5fb_o.jpg", "secret": "d77d43a5fb", "media": "photo", "latitude": "0", "id": "29447297", "tags": "tornado moving car away from an unsafe building"}, {"datetaken": "2005-07-29 14:23:48", "license": "1", "title": "DSC00379", "text": "", "album_id": "663795", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/29501389_0e70e388da_o.jpg", "secret": "0e70e388da", "media": "photo", "latitude": "0", "id": "29501389", "tags": "tornado"}, {"datetaken": "2005-07-29 16:39:48", "license": "1", "title": "DSC00407", "text": "", "album_id": "663795", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29501350_e28ea15d22_o.jpg", "secret": "e28ea15d22", "media": "photo", "latitude": "0", "id": "29501350", "tags": "tornado"}, {"datetaken": "2005-07-29 16:43:42", "license": "1", "title": "DSC00408", "text": "", "album_id": "663795", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/29501228_988eb9ef3a_o.jpg", "secret": "988eb9ef3a", "media": "photo", "latitude": "0", "id": "29501228", "tags": "tornado"}, {"datetaken": "2005-07-29 16:44:09", "license": "1", "title": "DSC00410", "text": "", "album_id": "663795", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/29501469_d2fde9349f_o.jpg", "secret": "d2fde9349f", "media": "photo", "latitude": "0", "id": "29501469", "tags": "tornado"}, {"datetaken": "2005-08-23 13:20:46", "license": "1", "title": "Statue at the entryway", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/36997933_bf1f5f3e4c_o.jpg", "secret": "bf1f5f3e4c", "media": "photo", "latitude": "0", "id": "36997933", "tags": "vizcaya gardens miami florida statue"}, {"datetaken": "2005-08-23 13:21:14", "license": "1", "title": "Statue at the entryway", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/36997970_c7b0b0a234_o.jpg", "secret": "c7b0b0a234", "media": "photo", "latitude": "0", "id": "36997970", "tags": "vizcaya gardens miami florida statue"}, {"datetaken": "2005-08-23 13:23:15", "license": "1", "title": "Huge spider overlooking a small gorge near the front gate!", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/36997994_1aa3a7ec29_o.jpg", "secret": "1aa3a7ec29", "media": "photo", "latitude": "0", "id": "36997994", "tags": "vizcaya gardens miami florida spiders web nephilaclavipes bananaspider insect"}, {"datetaken": "2005-08-23 13:24:08", "license": "1", "title": "The front of the house", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/36998148_a4c690c9d2_o.jpg", "secret": "a4c690c9d2", "media": "photo", "latitude": "0", "id": "36998148", "tags": "vizcaya gardens miami florida bw"}, {"datetaken": "2005-08-23 13:25:09", "license": "1", "title": "Front lawn", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/36998121_dbd1467261_o.jpg", "secret": "dbd1467261", "media": "photo", "latitude": "0", "id": "36998121", "tags": "vizcaya gardens miami florida fountain bw"}, {"datetaken": "2005-08-23 14:44:22", "license": "1", "title": "Paving stone at front entrance", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/36998091_2a43440328_o.jpg", "secret": "2a43440328", "media": "photo", "latitude": "0", "id": "36998091", "tags": "vizcaya miami florida"}, {"datetaken": "2005-08-23 14:45:44", "license": "1", "title": "North side of the house", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/36998046_186f5b3db8_o.jpg", "secret": "186f5b3db8", "media": "photo", "latitude": "0", "id": "36998046", "tags": "vizcaya miami florida"}, {"datetaken": "2005-08-23 14:46:47", "license": "1", "title": "Garden on the north side", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/36998181_f4867d4f32_o.jpg", "secret": "f4867d4f32", "media": "photo", "latitude": "0", "id": "36998181", "tags": "vizcaya gardens miami florida bw"}, {"datetaken": "2005-08-23 14:47:24", "license": "1", "title": "Northside of the back patio near the pool", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/36998406_13ed7eadf6_o.jpg", "secret": "13ed7eadf6", "media": "photo", "latitude": "0", "id": "36998406", "tags": "vizcaya miami florida"}, {"datetaken": "2005-08-23 14:47:41", "license": "1", "title": "Garden on the north side", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/36998376_b86c65e381_o.jpg", "secret": "b86c65e381", "media": "photo", "latitude": "0", "id": "36998376", "tags": "vizcaya gardens miami florida"}, {"datetaken": "2005-08-23 15:26:22", "license": "1", "title": "Swimming pool", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/36998328_63c94df97d_o.jpg", "secret": "63c94df97d", "media": "photo", "latitude": "0", "id": "36998328", "tags": "vizcaya miami florida pool turquoise orange"}, {"datetaken": "2005-08-23 15:27:35", "license": "1", "title": "A view of the pool looking east", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/36998303_e1924c91af_o.jpg", "secret": "e1924c91af", "media": "photo", "latitude": "0", "id": "36998303", "tags": "vizcaya miami florida pool bw"}, {"datetaken": "2005-08-23 15:29:35", "license": "1", "title": "Vizcaya front lawn", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/36998233_87c998573a_o.jpg", "secret": "87c998573a", "media": "photo", "latitude": "0", "id": "36998233", "tags": "vizcaya gardens miami florida sepia arch"}, {"datetaken": "2005-08-23 15:31:55", "license": "1", "title": "Back (east) side of the house", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/36998201_f2a87c7af5_o.jpg", "secret": "f2a87c7af5", "media": "photo", "latitude": "0", "id": "36998201", "tags": "vizcaya miami florida"}, {"datetaken": "2005-08-23 15:32:18", "license": "1", "title": "Stone rail", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/36998447_dac9e762f4_o.jpg", "secret": "dac9e762f4", "media": "photo", "latitude": "0", "id": "36998447", "tags": "vizcaya gardens miami florida bw stone"}, {"datetaken": "2005-08-23 15:33:04", "license": "1", "title": "Stone barge", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/36998504_e779e9f0fc_o.jpg", "secret": "e779e9f0fc", "media": "photo", "latitude": "0", "id": "36998504", "tags": "vizcaya gardens miami florida ocean statue barge"}, {"datetaken": "2005-08-23 15:33:04", "license": "1", "title": "Detail of the barge", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/36998466_7b7c6e1e1e_o.jpg", "secret": "7b7c6e1e1e", "media": "photo", "latitude": "0", "id": "36998466", "tags": "vizcaya gardens miami florida ocean statue"}, {"datetaken": "2005-08-23 15:33:38", "license": "1", "title": "Bridge", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/36998633_21488c672c_o.jpg", "secret": "21488c672c", "media": "photo", "latitude": "0", "id": "36998633", "tags": "vizcaya gardens miami florida ocean bridge"}, {"datetaken": "2005-08-23 15:35:01", "license": "1", "title": "South garden wall", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/36998609_9d43f7ef0c_o.jpg", "secret": "9d43f7ef0c", "media": "photo", "latitude": "0", "id": "36998609", "tags": "vizcaya gardens miami florida yellow"}, {"datetaken": "2005-08-23 15:35:29", "license": "1", "title": "Hedge gazebo in south garden", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/36998577_fb890cc84f_o.jpg", "secret": "fb890cc84f", "media": "photo", "latitude": "0", "id": "36998577", "tags": "vizcaya gardens miami florida gazebo"}, {"datetaken": "2005-08-23 15:35:44", "license": "1", "title": "B&W hedge gazebo", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/36998694_6f8f87f346_o.jpg", "secret": "6f8f87f346", "media": "photo", "latitude": "0", "id": "36998694", "tags": "vizcaya gardens miami florida gazebo bw"}, {"datetaken": "2005-08-23 15:36:05", "license": "1", "title": "B&W statue", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/36998735_6d0a15991b_o.jpg", "secret": "6d0a15991b", "media": "photo", "latitude": "0", "id": "36998735", "tags": "vizcaya gardens miami florida statue bw"}, {"datetaken": "2005-08-23 15:37:38", "license": "1", "title": "Gate latch", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/36998885_e35a1211fa_o.jpg", "secret": "e35a1211fa", "media": "photo", "latitude": "0", "id": "36998885", "tags": "vizcaya gardens miami florida gate bw"}, {"datetaken": "2005-08-23 15:38:36", "license": "1", "title": "South side of the house", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/36999160_ff95a88750_o.jpg", "secret": "ff95a88750", "media": "photo", "latitude": "0", "id": "36999160", "tags": "vizcaya gardens miami florida"}, {"datetaken": "2005-08-23 15:40:26", "license": "1", "title": "Grotto ceiling", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/36999098_9589f44500_o.jpg", "secret": "9589f44500", "media": "photo", "latitude": "0", "id": "36999098", "tags": "vizcaya gardens miami florida bw shell"}, {"datetaken": "2005-08-23 15:40:43", "license": "1", "title": "Waterfountain", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/36999058_dad4009f8f_o.jpg", "secret": "dad4009f8f", "media": "photo", "latitude": "0", "id": "36999058", "tags": "vizcaya gardens miami florida fountain bw water"}, {"datetaken": "2005-08-23 15:41:38", "license": "1", "title": "South garden building", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/36999013_1850029d62_o.jpg", "secret": "1850029d62", "media": "photo", "latitude": "0", "id": "36999013", "tags": "vizcaya gardens miami florida"}, {"datetaken": "2005-08-23 15:41:56", "license": "1", "title": "South side of the house", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/36998966_01af566f7b_o.jpg", "secret": "01af566f7b", "media": "photo", "latitude": "0", "id": "36998966", "tags": "vizcaya gardens miami florida"}, {"datetaken": "2005-08-23 15:44:28", "license": "1", "title": "Statue with tree background", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/36998937_e5a8d71ec2_o.jpg", "secret": "e5a8d71ec2", "media": "photo", "latitude": "0", "id": "36998937", "tags": "vizcaya gardens miami florida statue bust trees"}, {"datetaken": "2005-08-23 15:45:18", "license": "1", "title": "Detail of a statue", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/36999249_3780d4f367_o.jpg", "secret": "3780d4f367", "media": "photo", "latitude": "0", "id": "36999249", "tags": "vizcaya gardens miami florida roses pink statue"}, {"datetaken": "2005-08-23 15:46:21", "license": "1", "title": "Statue", "text": "", "album_id": "817228", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/36999212_949e697f75_o.jpg", "secret": "949e697f75", "media": "photo", "latitude": "0", "id": "36999212", "tags": "vizcaya gardens miami florida statue"}, {"datetaken": "2005-08-13 13:25:12", "license": "1", "title": "P1020527.JPG", "text": "", "album_id": "862633", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/39157431_278484935e_o.jpg", "secret": "278484935e", "media": "photo", "latitude": "0", "id": "39157431", "tags": ""}, {"datetaken": "2005-08-13 14:27:13", "license": "1", "title": "P1020528.JPG", "text": "", "album_id": "862633", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/39158384_c712697b61_o.jpg", "secret": "c712697b61", "media": "photo", "latitude": "0", "id": "39158384", "tags": ""}, {"datetaken": "2005-08-13 14:27:55", "license": "1", "title": "P1020536.JPG", "text": "", "album_id": "862633", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/39159263_b8dbb3fa53_o.jpg", "secret": "b8dbb3fa53", "media": "photo", "latitude": "0", "id": "39159263", "tags": ""}, {"datetaken": "2005-08-13 14:28:01", "license": "1", "title": "P1020539.JPG", "text": "", "album_id": "862633", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/39160101_8c8f4f34b9_o.jpg", "secret": "8c8f4f34b9", "media": "photo", "latitude": "0", "id": "39160101", "tags": ""}, {"datetaken": "2005-08-13 14:29:03", "license": "1", "title": "P1020544.JPG", "text": "", "album_id": "862633", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/39160888_e7d646ffb8_o.jpg", "secret": "e7d646ffb8", "media": "photo", "latitude": "0", "id": "39160888", "tags": ""}, {"datetaken": "2005-08-13 14:32:09", "license": "1", "title": "P1020545.JPG", "text": "", "album_id": "862633", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/39161965_53b16df74b_o.jpg", "secret": "53b16df74b", "media": "photo", "latitude": "0", "id": "39161965", "tags": ""}, {"datetaken": "2005-08-13 14:32:10", "license": "1", "title": "P1020546.JPG", "text": "", "album_id": "862633", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/39163095_dd43c009f1_o.jpg", "secret": "dd43c009f1", "media": "photo", "latitude": "0", "id": "39163095", "tags": ""}, {"datetaken": "2005-08-13 14:32:24", "license": "1", "title": "P1020547.JPG", "text": "", "album_id": "862633", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/39164306_dc8af856ad_o.jpg", "secret": "dc8af856ad", "media": "photo", "latitude": "0", "id": "39164306", "tags": ""}, {"datetaken": "2005-08-13 14:32:44", "license": "1", "title": "P1020548.JPG", "text": "", "album_id": "862633", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/39165193_b4f4d0a531_o.jpg", "secret": "b4f4d0a531", "media": "photo", "latitude": "0", "id": "39165193", "tags": ""}, {"datetaken": "2005-08-13 14:32:59", "license": "1", "title": "P1020549.JPG", "text": "", "album_id": "862633", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/39166041_613d6a6e53_o.jpg", "secret": "613d6a6e53", "media": "photo", "latitude": "0", "id": "39166041", "tags": ""}, {"datetaken": "2005-08-13 14:33:08", "license": "1", "title": "P1020550.JPG", "text": "", "album_id": "862633", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/39166828_5895623282_o.jpg", "secret": "5895623282", "media": "photo", "latitude": "0", "id": "39166828", "tags": ""}, {"datetaken": "2005-08-13 14:33:38", "license": "1", "title": "P1020551.JPG", "text": "", "album_id": "862633", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/39167758_40fc16c2c4_o.jpg", "secret": "40fc16c2c4", "media": "photo", "latitude": "0", "id": "39167758", "tags": ""}, {"datetaken": "2005-08-13 14:34:14", "license": "1", "title": "P1020552.JPG", "text": "", "album_id": "862633", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/39168680_4c63e6781d_o.jpg", "secret": "4c63e6781d", "media": "photo", "latitude": "0", "id": "39168680", "tags": ""}, {"datetaken": "2005-08-13 14:36:28", "license": "1", "title": "P1020553.JPG", "text": "", "album_id": "862633", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/39169815_1c53138d06_o.jpg", "secret": "1c53138d06", "media": "photo", "latitude": "0", "id": "39169815", "tags": ""}, {"datetaken": "2005-08-13 14:36:44", "license": "1", "title": "P1020554.JPG", "text": "", "album_id": "862633", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/39170626_683e214bc4_o.jpg", "secret": "683e214bc4", "media": "photo", "latitude": "0", "id": "39170626", "tags": ""}, {"datetaken": "2005-08-13 14:37:13", "license": "1", "title": "Hill House", "text": "", "album_id": "862633", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/39171403_96dfb59672_o.jpg", "secret": "96dfb59672", "media": "photo", "latitude": "0", "id": "39171403", "tags": ""}, {"datetaken": "2005-08-17 14:24:22", "license": "1", "title": "Missi on the Train", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/39931689_0954b152ba_o.jpg", "secret": "0954b152ba", "media": "photo", "latitude": "0", "id": "39931689", "tags": "hungary budapest missi train"}, {"datetaken": "2005-08-17 14:25:37", "license": "1", "title": "Missi on the Train", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/39931838_cd2afce44f_o.jpg", "secret": "cd2afce44f", "media": "photo", "latitude": "0", "id": "39931838", "tags": "hungary budapest missi train"}, {"datetaken": "2005-08-17 14:28:30", "license": "1", "title": "Suburbs of Budapest", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/39931981_c4e4bc91d6_o.jpg", "secret": "c4e4bc91d6", "media": "photo", "latitude": "0", "id": "39931981", "tags": "hungary budapest"}, {"datetaken": "2005-08-17 14:44:56", "license": "1", "title": "Suburbs of Budapest", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/39932162_8489318280_o.jpg", "secret": "8489318280", "media": "photo", "latitude": "0", "id": "39932162", "tags": "hungary budapest"}, {"datetaken": "2005-08-17 14:45:11", "license": "1", "title": "Suburbs of Budapest", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/39932310_c5a059b8d9_o.jpg", "secret": "c5a059b8d9", "media": "photo", "latitude": "0", "id": "39932310", "tags": "hungary budapest"}, {"datetaken": "2005-08-17 19:46:21", "license": "1", "title": "Budapest Opera House", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/39932451_d12b850c29_o.jpg", "secret": "d12b850c29", "media": "photo", "latitude": "0", "id": "39932451", "tags": "hungary budapest"}, {"datetaken": "2005-08-17 19:46:45", "license": "1", "title": "DSC_3769", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/39932576_03fd504c79_o.jpg", "secret": "03fd504c79", "media": "photo", "latitude": "0", "id": "39932576", "tags": "hungary budapest"}, {"datetaken": "2005-08-17 19:47:45", "license": "1", "title": "Hungarian State Opera House", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/39932674_96e3673e98_o.jpg", "secret": "96e3673e98", "media": "photo", "latitude": "0", "id": "39932674", "tags": "opera hungary budapest operahouse hungarianstateoperahouse"}, {"datetaken": "2005-08-17 19:58:53", "license": "1", "title": "DSC_3773", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/39932812_7da9018924_o.jpg", "secret": "7da9018924", "media": "photo", "latitude": "0", "id": "39932812", "tags": "hungary budapest"}, {"datetaken": "2005-08-17 20:25:17", "license": "1", "title": "The Best Part of Budapest was the Greek Food", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/39932933_7a0602428a_o.jpg", "secret": "7a0602428a", "media": "photo", "latitude": "0", "id": "39932933", "tags": "hungary budapest missi greekfoodandcousine"}, {"datetaken": "2005-08-17 22:13:24", "license": "1", "title": "Escalator to Hell", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/74918357_5290c8449d_o.jpg", "secret": "5290c8449d", "media": "photo", "latitude": "0", "id": "74918357", "tags": "budapest hungary"}, {"datetaken": "2005-08-18 11:08:42", "license": "1", "title": "IMG_2570", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/74918746_94778236b9_o.jpg", "secret": "94778236b9", "media": "photo", "latitude": "0", "id": "74918746", "tags": "budapest hungary"}, {"datetaken": "2005-08-18 11:08:49", "license": "1", "title": "IMG_2571_edited", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/74919408_38013dc166_o.jpg", "secret": "38013dc166", "media": "photo", "latitude": "0", "id": "74919408", "tags": "budapest hungary"}, {"datetaken": "2005-08-18 11:08:51", "license": "1", "title": "IMG_2572_edited", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/74920685_808610f632_o.jpg", "secret": "808610f632", "media": "photo", "latitude": "0", "id": "74920685", "tags": "budapest hungary"}, {"datetaken": "2005-08-18 12:01:14", "license": "1", "title": "IMG_2574_edited", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/74921380_5a095f8978_o.jpg", "secret": "5a095f8978", "media": "photo", "latitude": "0", "id": "74921380", "tags": "budapest hungary"}, {"datetaken": "2005-08-18 12:01:23", "license": "1", "title": "IMG_2575_edited", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/74922092_e53e16801e_o.jpg", "secret": "e53e16801e", "media": "photo", "latitude": "0", "id": "74922092", "tags": "budapest hungary"}, {"datetaken": "2005-08-18 12:01:33", "license": "1", "title": "IMG_2576_edited", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/74922752_b62fe9e96d_o.jpg", "secret": "b62fe9e96d", "media": "photo", "latitude": "0", "id": "74922752", "tags": "budapest hungary"}, {"datetaken": "2005-08-18 12:03:16", "license": "1", "title": "IMG_2577_edited", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/74923412_e228f3ee5a_o.jpg", "secret": "e228f3ee5a", "media": "photo", "latitude": "0", "id": "74923412", "tags": "budapest hungary"}, {"datetaken": "2005-08-18 13:25:31", "license": "1", "title": "IMG_2578_edited", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/74923780_495466e1f8_o.jpg", "secret": "495466e1f8", "media": "photo", "latitude": "0", "id": "74923780", "tags": "budapest hungary"}, {"datetaken": "2005-08-18 14:27:29", "license": "1", "title": "Sacked Out", "text": "", "album_id": "877968", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/74924146_8b59a25dd0_o.jpg", "secret": "8b59a25dd0", "media": "photo", "latitude": "0", "id": "74924146", "tags": "sleeping train hungary budapest missi"}, {"datetaken": "2005-10-16 10:36:35", "license": "3", "title": "reloading", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/53170778_8900182ef0_o.jpg", "secret": "8900182ef0", "media": "photo", "latitude": "0", "id": "53170778", "tags": "me l"}, {"datetaken": "2005-10-16 10:59:37", "license": "3", "title": "group at southport", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/53435420_7d013deaa0_o.jpg", "secret": "7d013deaa0", "media": "photo", "latitude": "0", "id": "53435420", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-16 11:39:11", "license": "3", "title": "train crossing at street grade", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/53435449_2de7bdacf7_o.jpg", "secret": "2de7bdacf7", "media": "photo", "latitude": "0", "id": "53435449", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-16 11:49:57", "license": "3", "title": "car 2303", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/53435466_ab94c85052_o.jpg", "secret": "ab94c85052", "media": "photo", "latitude": "0", "id": "53435466", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-16 11:57:34", "license": "3", "title": "brian looking out train window", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/53435494_c3d0c0c62f_o.jpg", "secret": "c3d0c0c62f", "media": "photo", "latitude": "0", "id": "53435494", "tags": "chicago rapidtransit railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-16 12:09:11", "license": "3", "title": "tour group at Belmont", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/53435553_3e9405fc17_o.jpg", "secret": "3e9405fc17", "media": "photo", "latitude": "0", "id": "53435553", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el searstower"}, {"datetaken": "2005-10-16 12:12:27", "license": "3", "title": "Brown Line train to 'da Loop", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/53435575_b652ad524d_o.jpg", "secret": "b652ad524d", "media": "photo", "latitude": "0", "id": "53435575", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el belmont loop"}, {"datetaken": "2005-10-16 12:51:38", "license": "3", "title": "discussing Armitage", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/53435523_356a816fe5_o.jpg", "secret": "356a816fe5", "media": "photo", "latitude": "0", "id": "53435523", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-16 13:06:11", "license": "3", "title": "railfanning", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/53435591_403fcfc277_o.jpg", "secret": "403fcfc277", "media": "photo", "latitude": "0", "id": "53435591", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el 2200s armitage"}, {"datetaken": "2005-10-16 13:10:51", "license": "3", "title": "2005-10-16 Station Tour 053", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/53435607_04e5d59fc4_o.jpg", "secret": "04e5d59fc4", "media": "photo", "latitude": "0", "id": "53435607", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el 2200s brown line"}, {"datetaken": "2005-10-16 13:41:53", "license": "3", "title": "Medical Center station", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/53435616_97bc33e806_o.jpg", "secret": "97bc33e806", "media": "photo", "latitude": "0", "id": "53435616", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-16 13:59:47", "license": "3", "title": "Kedzie (Cermak)", "text": "", "album_id": "1158466", "longitude": "-87.705402", "url_o": "https://farm1.staticflickr.com/33/53435626_06dfe0f6f1_o.jpg", "secret": "06dfe0f6f1", "media": "photo", "latitude": "41.854267", "id": "53435626", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-16 14:00:29", "license": "3", "title": "Kedzie (Cermak)", "text": "", "album_id": "1158466", "longitude": "-87.705402", "url_o": "https://farm1.staticflickr.com/27/53435663_ee7d561585_o.jpg", "secret": "ee7d561585", "media": "photo", "latitude": "41.854267", "id": "53435663", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-16 14:01:51", "license": "3", "title": "transit policy", "text": "", "album_id": "1158466", "longitude": "-87.705402", "url_o": "https://farm1.staticflickr.com/32/53435693_cc92468562_o.jpg", "secret": "cc92468562", "media": "photo", "latitude": "41.854267", "id": "53435693", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-16 14:07:53", "license": "3", "title": "Enter here for trains", "text": "", "album_id": "1158466", "longitude": "-87.705402", "url_o": "https://farm1.staticflickr.com/27/53435707_eca48cf6e2_o.jpg", "secret": "eca48cf6e2", "media": "photo", "latitude": "41.854267", "id": "53435707", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el turnstiles farecard"}, {"datetaken": "2005-10-16 14:08:17", "license": "3", "title": "Out to street and buses", "text": "", "album_id": "1158466", "longitude": "-87.705402", "url_o": "https://farm1.staticflickr.com/26/53435719_dccf918101_o.jpg", "secret": "dccf918101", "media": "photo", "latitude": "41.854267", "id": "53435719", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-16 14:08:49", "license": "3", "title": "modern cta esclator", "text": "", "album_id": "1158466", "longitude": "-87.705402", "url_o": "https://farm1.staticflickr.com/26/53435735_eedea55533_o.jpg", "secret": "eedea55533", "media": "photo", "latitude": "41.854267", "id": "53435735", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el escalator"}, {"datetaken": "2005-10-16 14:29:02", "license": "3", "title": "decomissioned laramie station", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/53435755_4d206aef8c_o.jpg", "secret": "4d206aef8c", "media": "photo", "latitude": "0", "id": "53435755", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-16 14:29:19", "license": "3", "title": "54/Cermak", "text": "", "album_id": "1158466", "longitude": "-87.754261", "url_o": "https://farm1.staticflickr.com/33/53435775_fa7ad6a5c1_o.jpg", "secret": "fa7ad6a5c1", "media": "photo", "latitude": "41.851933", "id": "53435775", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el cicero"}, {"datetaken": "2005-10-17 12:01:20", "license": "3", "title": "Tour start", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/53434824_9fef8cdba8_o.jpg", "secret": "9fef8cdba8", "media": "photo", "latitude": "0", "id": "53434824", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:01:25", "license": "3", "title": "at Quincy", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/53434847_ee87fadd35_o.jpg", "secret": "ee87fadd35", "media": "photo", "latitude": "0", "id": "53434847", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:01:29", "license": "3", "title": "my friends on the tour", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/53434861_c9034e1e88_o.jpg", "secret": "c9034e1e88", "media": "photo", "latitude": "0", "id": "53434861", "tags": "chicago rapidtransit railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:01:36", "license": "3", "title": "checking out Southport 'L'", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/53434885_7c029469c1_o.jpg", "secret": "7c029469c1", "media": "photo", "latitude": "0", "id": "53434885", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:01:41", "license": "3", "title": "Southport entry", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/53434921_4a77c4e9fb_o.jpg", "secret": "4a77c4e9fb", "media": "photo", "latitude": "0", "id": "53434921", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:01:46", "license": "3", "title": "hello, tourgoers!", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/53434944_ca8adeef00_o.jpg", "secret": "ca8adeef00", "media": "photo", "latitude": "0", "id": "53434944", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:01:51", "license": "3", "title": "sunflowers at Southport", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/53434971_c8a2f20357_o.jpg", "secret": "c8a2f20357", "media": "photo", "latitude": "0", "id": "53434971", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el metalwork railing stampedmetal"}, {"datetaken": "2005-10-17 12:01:58", "license": "3", "title": "Southport Platform", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/53435007_2bd7af6c74_o.jpg", "secret": "2bd7af6c74", "media": "photo", "latitude": "0", "id": "53435007", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:02:06", "license": "3", "title": "Francisco", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/53435060_d4a9e0efaa_o.jpg", "secret": "d4a9e0efaa", "media": "photo", "latitude": "0", "id": "53435060", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:02:13", "license": "3", "title": "Train at Francisco", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/53435112_4bdcd61b4d_o.jpg", "secret": "4bdcd61b4d", "media": "photo", "latitude": "0", "id": "53435112", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:02:18", "license": "3", "title": "Francisco gates", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/53435139_c60b483342_o.jpg", "secret": "c60b483342", "media": "photo", "latitude": "0", "id": "53435139", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:02:23", "license": "3", "title": "Francisco agent", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/53435162_2f836cbc7d_o.jpg", "secret": "2f836cbc7d", "media": "photo", "latitude": "0", "id": "53435162", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:02:28", "license": "3", "title": "Armitage station house", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/53435185_458d803e9c_o.jpg", "secret": "458d803e9c", "media": "photo", "latitude": "0", "id": "53435185", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:02:36", "license": "3", "title": "shadows at Armitage", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/53435221_5276f1c6bd_o.jpg", "secret": "5276f1c6bd", "media": "photo", "latitude": "0", "id": "53435221", "tags": "railroad chicago architecture subway cta publictransit trains el historic l rapidtransit"}, {"datetaken": "2005-10-17 12:02:42", "license": "3", "title": "2301", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/53435256_856b6914ae_o.jpg", "secret": "856b6914ae", "media": "photo", "latitude": "0", "id": "53435256", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:02:56", "license": "3", "title": "pause", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/53435303_07262cf993_o.jpg", "secret": "07262cf993", "media": "photo", "latitude": "0", "id": "53435303", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:03:02", "license": "3", "title": "West from Armitage", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/53435322_8a7d82ffd5_o.jpg", "secret": "8a7d82ffd5", "media": "photo", "latitude": "0", "id": "53435322", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:03:05", "license": "3", "title": "Lake, toward Paulina", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/53435333_f1b6c60069_o.jpg", "secret": "f1b6c60069", "media": "photo", "latitude": "0", "id": "53435333", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:03:08", "license": "3", "title": "Paulina view", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/53435343_bb5879c32e_o.jpg", "secret": "bb5879c32e", "media": "photo", "latitude": "0", "id": "53435343", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:03:14", "license": "3", "title": "hello, train!", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/53435366_f3ebb971d2_o.jpg", "secret": "f3ebb971d2", "media": "photo", "latitude": "0", "id": "53435366", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:03:20", "license": "3", "title": "Douglas connector", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/53435383_14bea863b4_o.jpg", "secret": "14bea863b4", "media": "photo", "latitude": "0", "id": "53435383", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:03:23", "license": "3", "title": "Tour guide answering questions", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/53435396_c58026e9b8_o.jpg", "secret": "c58026e9b8", "media": "photo", "latitude": "0", "id": "53435396", "tags": "chicago rapidtransit historic architecture railroad cta publictransit subway l trains el"}, {"datetaken": "2005-10-17 12:04:47", "license": "3", "title": "brian", "text": "", "album_id": "1158466", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/53435787_46c184c68b_o.jpg", "secret": "46c184c68b", "media": "photo", "latitude": "0", "id": "53435787", "tags": ""}, {"datetaken": "2005-10-31 23:06:04", "license": "2", "title": "cathedral", "text": "", "album_id": "1304590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/60382647_3300e00b4d_o.jpg", "secret": "3300e00b4d", "media": "photo", "latitude": "0", "id": "60382647", "tags": "amsterdam holland netherlands anne frank"}, {"datetaken": "2005-10-31 23:07:05", "license": "2", "title": "Canal in Amsterdam", "text": "", "album_id": "1304590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/60384594_d3767dbc5b_o.jpg", "secret": "d3767dbc5b", "media": "photo", "latitude": "0", "id": "60384594", "tags": "amsterdam holland netherlands canal"}, {"datetaken": "2005-10-31 23:07:16", "license": "2", "title": "Canal", "text": "", "album_id": "1304590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/60383559_8c74f61ef7_o.jpg", "secret": "8c74f61ef7", "media": "photo", "latitude": "0", "id": "60383559", "tags": "amsterdam holland netherlands canals"}, {"datetaken": "2005-11-01 23:58:49", "license": "2", "title": "Near the train station", "text": "", "album_id": "1304590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/60382058_6605618ea3_o.jpg", "secret": "6605618ea3", "media": "photo", "latitude": "0", "id": "60382058", "tags": "amsterdam holland netherlands"}, {"datetaken": "2005-11-02 21:06:02", "license": "2", "title": "Black Pete will dance for you...", "text": "", "album_id": "1304590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/60382965_40f40dfa4b_o.jpg", "secret": "40f40dfa4b", "media": "photo", "latitude": "0", "id": "60382965", "tags": "amsterdam holland netherlands black pete blackpete"}, {"datetaken": "2005-11-02 21:06:13", "license": "2", "title": "Black Pete and Santa Claus", "text": "", "album_id": "1304590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/60383269_6cef40802e_o.jpg", "secret": "6cef40802e", "media": "photo", "latitude": "0", "id": "60383269", "tags": "amsterdam holland netherlands black pete blackpete"}, {"datetaken": "2005-11-02 21:06:50", "license": "2", "title": "More canal houses and bicycles", "text": "", "album_id": "1304590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/60382400_f934520048_o.jpg", "secret": "f934520048", "media": "photo", "latitude": "0", "id": "60382400", "tags": "amsterdam holland netherlands canals"}, {"datetaken": "2005-11-02 21:21:25", "license": "2", "title": "Another leaning building", "text": "", "album_id": "1304590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/60381408_71e97a3428_o.jpg", "secret": "71e97a3428", "media": "photo", "latitude": "0", "id": "60381408", "tags": "amsterdam holland netherlands leaning building"}, {"datetaken": "2005-11-02 21:59:45", "license": "2", "title": "Leaning building", "text": "", "album_id": "1304590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/60384249_86075a3910_o.jpg", "secret": "86075a3910", "media": "photo", "latitude": "0", "id": "60384249", "tags": "amsterdam holland netherlands leaning house"}, {"datetaken": "2005-11-02 22:02:38", "license": "2", "title": "Canal and a tiny bit of fall", "text": "", "album_id": "1304590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/60383967_67555db3d6_o.jpg", "secret": "67555db3d6", "media": "photo", "latitude": "0", "id": "60383967", "tags": "amsterdam holland netherlands canals"}, {"datetaken": "2005-11-02 22:04:10", "license": "2", "title": "Me in front of a canal", "text": "", "album_id": "1304590", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/60381689_2a493ad6a8_o.jpg", "secret": "2a493ad6a8", "media": "photo", "latitude": "0", "id": "60381689", "tags": "amsterdam holland netherlands"}, {"datetaken": "2004-03-18 19:52:01", "license": "5", "title": "View Looking East from Hot Springs Mountain in Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.045959", "url_o": "https://farm1.staticflickr.com/34/71854622_2394f0a2f1_o.jpg", "secret": "8bddbb2651", "media": "photo", "latitude": "34.516648", "id": "71854622", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 19:52:11", "license": "5", "title": "View Looking Southeast from Hot Springs Mountain in Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.045959", "url_o": "https://farm1.staticflickr.com/35/71854966_35c26dc546_o.jpg", "secret": "ffaba4e130", "media": "photo", "latitude": "34.516648", "id": "71854966", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 19:52:22", "license": "5", "title": "Looking South from Hot Springs Mountain, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.045959", "url_o": "https://farm1.staticflickr.com/35/71855308_f29f8a6c44_o.jpg", "secret": "93aafb0b25", "media": "photo", "latitude": "34.516648", "id": "71855308", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 19:52:41", "license": "5", "title": "Looking South from Hot Springs Mountain, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.045959", "url_o": "https://farm1.staticflickr.com/35/71855399_e841ed1d5e_o.jpg", "secret": "b17d972a0a", "media": "photo", "latitude": "34.516648", "id": "71855399", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 19:53:03", "license": "5", "title": "Hot Springs Mountain Road near Hot Springs Mountain Tower, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.048748", "url_o": "https://farm1.staticflickr.com/31/66090630_17c419830b_o.jpg", "secret": "3df346637b", "media": "photo", "latitude": "34.516188", "id": "66090630", "tags": "arkansas hotsprings hotspringsnationalpark hotspringsnp"}, {"datetaken": "2004-03-18 19:53:55", "license": "5", "title": "Vinca Major (Periwinkle), Hot Springs National Park, Arkansas.", "text": "", "album_id": "1426064", "longitude": "-93.048748", "url_o": "https://farm1.staticflickr.com/34/71855433_03d197c58e_o.jpg", "secret": "47aaf0b7a9", "media": "photo", "latitude": "34.516188", "id": "71855433", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 19:54:34", "license": "5", "title": "Blossoms in Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.048748", "url_o": "https://farm1.staticflickr.com/35/71855478_b401d937ef_o.jpg", "secret": "65aefea1c6", "media": "photo", "latitude": "34.516188", "id": "71855478", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:04:36", "license": "5", "title": "View of Hot Springs, Arkansas from Hot Springs Mountain Tower", "text": "", "album_id": "1426064", "longitude": "-93.046184", "url_o": "https://farm1.staticflickr.com/35/71855533_bc91481c43_o.jpg", "secret": "bc91481c43", "media": "photo", "latitude": "34.517258", "id": "71855533", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:04:46", "license": "5", "title": "Hot Springs Convention Center and Summit Arena from Hot Springs Mountain Tower, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.046184", "url_o": "https://farm1.staticflickr.com/34/71855577_116740d97a_o.jpg", "secret": "bac2abd30a", "media": "photo", "latitude": "34.517258", "id": "71855577", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:04:53", "license": "5", "title": "Downtown Hot Springs, Arkansas from Hot Springs Mountain Tower, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.046184", "url_o": "https://farm1.staticflickr.com/34/71854646_d40d6c3cfa_o.jpg", "secret": "b9d117f5b6", "media": "photo", "latitude": "34.517258", "id": "71854646", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:05:11", "license": "5", "title": "Arlington Resort Hotel & Spa, as Seen from Hot Springs Mountain Tower, Hot Springs National Park, Arkansas.", "text": "", "album_id": "1426064", "longitude": "-93.046184", "url_o": "https://farm1.staticflickr.com/20/71854674_3abbd2f3d6_o.jpg", "secret": "952a040ef1", "media": "photo", "latitude": "34.517258", "id": "71854674", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:05:41", "license": "5", "title": "Shadow of Hot Springs Mountain Tower, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.046184", "url_o": "https://farm1.staticflickr.com/35/71854733_50fce35827_o.jpg", "secret": "204af96fca", "media": "photo", "latitude": "34.517258", "id": "71854733", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:06:01", "license": "5", "title": "View of Batthouse Row from Hot Springs Mountain Tower, Hot Springs National Park, Hot Springs, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.046184", "url_o": "https://farm1.staticflickr.com/35/71854776_d2f1b2c18b_o.jpg", "secret": "bce35c013a", "media": "photo", "latitude": "34.517258", "id": "71854776", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:06:08", "license": "5", "title": "View of Ouachita Mountains from Hot Springs Mountain Tower, Hot Springs National Park, Arkansas (Looking North)", "text": "", "album_id": "1426064", "longitude": "-93.046184", "url_o": "https://farm1.staticflickr.com/35/71854793_cedfb565e5_o.jpg", "secret": "f01e410354", "media": "photo", "latitude": "34.517258", "id": "71854793", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:07:01", "license": "5", "title": "Ken, Hot Springs Mountain Tower, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.046184", "url_o": "https://farm1.staticflickr.com/35/71854818_67ce7f943c_o.jpg", "secret": "a5a7ca2e67", "media": "photo", "latitude": "34.517258", "id": "71854818", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:07:34", "license": "5", "title": "Alicia, Hot Springs Mountain Tower, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.046184", "url_o": "https://farm1.staticflickr.com/35/71854856_c827815388_o.jpg", "secret": "8293333f54", "media": "photo", "latitude": "34.517258", "id": "71854856", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:07:48", "license": "5", "title": "Alicia, Hot Springs Mountain Tower, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.046184", "url_o": "https://farm1.staticflickr.com/35/71854889_51c1148be8_o.jpg", "secret": "d55516b5a9", "media": "photo", "latitude": "34.517258", "id": "71854889", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:08:21", "license": "5", "title": "Grand Avenue/U.S. 70 (Business Loop), Hot Springs, Arkansas, as seen from Hot Springs Mountain Tower, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.046184", "url_o": "https://farm1.staticflickr.com/20/71854934_e26f536bd4_o.jpg", "secret": "39c19c9ff9", "media": "photo", "latitude": "34.517258", "id": "71854934", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:08:39", "license": "5", "title": "View of Ouachita Mountains from Hot Springs Mountain Tower, Hot Springs National Park, Arkansas (Looking North)", "text": "", "album_id": "1426064", "longitude": "-93.046184", "url_o": "https://farm1.staticflickr.com/35/71855003_ea4b364ed5_o.jpg", "secret": "c745accccc", "media": "photo", "latitude": "34.517258", "id": "71855003", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:10:46", "license": "5", "title": "View of Hot Springs, Arkansas from Hot Springs Mountain Tower, Hot Springs National Park (Looking South).", "text": "", "album_id": "1426064", "longitude": "-93.046184", "url_o": "https://farm1.staticflickr.com/20/71855029_1d858db0df_o.jpg", "secret": "59e1d9b50b", "media": "photo", "latitude": "34.517258", "id": "71855029", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:17:57", "license": "5", "title": "Looking North in the Ouachita Mountains, Hot Springs Mountain Tower, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.046184", "url_o": "https://farm1.staticflickr.com/35/71855080_f361dd2944_o.jpg", "secret": "1b83a1d398", "media": "photo", "latitude": "34.517258", "id": "71855080", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:18:21", "license": "5", "title": "The Beginning of Spring in the Ouachita Mountains, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.046184", "url_o": "https://farm1.staticflickr.com/35/71855142_454d653c94_o.jpg", "secret": "6eb3ebe9d0", "media": "photo", "latitude": "34.517258", "id": "71855142", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:30:30", "license": "5", "title": "Alicia, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.052718", "url_o": "https://farm1.staticflickr.com/35/71855170_b0cd1c7a34_o.jpg", "secret": "7637940622", "media": "photo", "latitude": "34.516369", "id": "71855170", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:31:14", "license": "5", "title": "Natural Hot Springs Running Down Steep Slope, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.052482", "url_o": "https://farm1.staticflickr.com/35/71855224_25185a8988_o.jpg", "secret": "da3d5e4187", "media": "photo", "latitude": "34.516029", "id": "71855224", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:33:23", "license": "5", "title": "Ken, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.052482", "url_o": "https://farm1.staticflickr.com/20/71855274_a900ed6a71_o.jpg", "secret": "e085be6a91", "media": "photo", "latitude": "34.516029", "id": "71855274", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:37:34", "license": "5", "title": "Natural Hot Springs, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.052482", "url_o": "https://farm1.staticflickr.com/27/66090632_8180d71193_o.jpg", "secret": "c21bb38158", "media": "photo", "latitude": "34.516029", "id": "66090632", "tags": "arkansas hotsprings hotspringsnationalpark hotspringsnp"}, {"datetaken": "2004-03-18 20:37:54", "license": "5", "title": "Remnants of Natural Hot Springs, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.052482", "url_o": "https://farm1.staticflickr.com/35/71855675_f89bab8372_o.jpg", "secret": "7fa8ab46c3", "media": "photo", "latitude": "34.516029", "id": "71855675", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:41:34", "license": "5", "title": "Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.052482", "url_o": "https://farm1.staticflickr.com/34/71855736_b76d8ec572_o.jpg", "secret": "f59d3cc023", "media": "photo", "latitude": "34.516029", "id": "71855736", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:48:14", "license": "5", "title": "Ken and Alicia; Hot Springs National Park", "text": "", "album_id": "1426064", "longitude": "-93.052901", "url_o": "https://farm1.staticflickr.com/26/66090619_452a38390b_o.jpg", "secret": "084bbb6bac", "media": "photo", "latitude": "34.514252", "id": "66090619", "tags": "arkansas hotsprings hotspringsnationalpark hotspringsnp"}, {"datetaken": "2004-03-18 20:57:32", "license": "5", "title": "Stained Glass, Fordyce Bathhouse, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.053405", "url_o": "https://farm1.staticflickr.com/35/71855765_4c005b985f_o.jpg", "secret": "abcd82b8a9", "media": "photo", "latitude": "34.514570", "id": "71855765", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:57:44", "license": "5", "title": "Stained Glass, Fordyce Bathhouse, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.053405", "url_o": "https://farm1.staticflickr.com/20/71855798_60a44eddb2_o.jpg", "secret": "60a44eddb2", "media": "photo", "latitude": "34.514570", "id": "71855798", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:58:20", "license": "5", "title": "Fountain, Fordyce Bathhouse, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.053405", "url_o": "https://farm1.staticflickr.com/20/71855834_f36bc58431_o.jpg", "secret": "028ab85b3a", "media": "photo", "latitude": "34.514570", "id": "71855834", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:59:00", "license": "5", "title": "DeSoto Fountain, Fordyce Bathhouse, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.053405", "url_o": "https://farm1.staticflickr.com/20/71855885_79c34a4258_o.jpg", "secret": "79c34a4258", "media": "photo", "latitude": "34.514570", "id": "71855885", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 20:59:25", "license": "5", "title": "Stained Glass Skylight Above the DeSoto Fountain, Fordyce Bathhouse, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.053405", "url_o": "https://farm1.staticflickr.com/26/66090628_90429b8947_o.jpg", "secret": "6d90e4c774", "media": "photo", "latitude": "34.514570", "id": "66090628", "tags": "arkansas hotsprings hotspringsnationalpark hotspringsnp"}, {"datetaken": "2004-03-18 21:06:27", "license": "5", "title": "Hubbard Tub with a Wooden Patient Lift, Fordyce Bathhouse, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.053458", "url_o": "https://farm5.staticflickr.com/4153/5070129969_db8a67a9cb_o.jpg", "secret": "4a9f87573f", "media": "photo", "latitude": "34.513664", "id": "5070129969", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 21:06:55", "license": "5", "title": "Fordyce Bathhouse, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.053405", "url_o": "https://farm1.staticflickr.com/34/71855982_110567077b_o.jpg", "secret": "110567077b", "media": "photo", "latitude": "34.514570", "id": "71855982", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 21:08:41", "license": "5", "title": "Gymnasium, Fordyce Bathhouse, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.053405", "url_o": "https://farm1.staticflickr.com/20/71856008_b0a312abf9_o.jpg", "secret": "7cecc29e4c", "media": "photo", "latitude": "34.514570", "id": "71856008", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 21:08:53", "license": "5", "title": "Gymnasium, Fordyce Bathhouse, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.053405", "url_o": "https://farm1.staticflickr.com/34/71856048_8006abf46e_o.jpg", "secret": "a95d36670d", "media": "photo", "latitude": "34.514570", "id": "71856048", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 21:16:31", "license": "5", "title": "Old Army Navy Hospital, Now the State of Arkansas Department of Rehabilitation, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.052793", "url_o": "https://farm1.staticflickr.com/35/71856072_43e74c8a33_o.jpg", "secret": "36c796806a", "media": "photo", "latitude": "34.512068", "id": "71856072", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 21:18:53", "license": "5", "title": "Buckstaff Bathhouse", "text": "", "album_id": "1426064", "longitude": "-93.053512", "url_o": "https://farm1.staticflickr.com/34/66090624_58ebd9416d_o.jpg", "secret": "7630626c64", "media": "photo", "latitude": "34.513726", "id": "66090624", "tags": "arkansas hotsprings hotspringsnationalpark hotspringsnp"}, {"datetaken": "2004-03-18 21:19:57", "license": "5", "title": "Quapaw Baths & Spa, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.053694", "url_o": "https://farm1.staticflickr.com/34/71856094_062e8e377e_o.jpg", "secret": "90bce83897", "media": "photo", "latitude": "34.513222", "id": "71856094", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 21:20:52", "license": "5", "title": "Fordyce Bathhouse, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.053405", "url_o": "https://farm1.staticflickr.com/34/71856139_b44add7ddb_o.jpg", "secret": "b44add7ddb", "media": "photo", "latitude": "34.514570", "id": "71856139", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 21:21:26", "license": "5", "title": "Downtown Hot Springs, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.054059", "url_o": "https://farm1.staticflickr.com/35/71856205_d5d64d452f_o.jpg", "secret": "8c1a6ff223", "media": "photo", "latitude": "34.512046", "id": "71856205", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 21:22:09", "license": "5", "title": "Stairway to Grande Promedade, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.053652", "url_o": "https://farm1.staticflickr.com/34/71856244_00490874ef_o.jpg", "secret": "42effa75ae", "media": "photo", "latitude": "34.514398", "id": "71856244", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 21:25:22", "license": "5", "title": "Arlington Resort Hotel & Spa, Hot Springs, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.053265", "url_o": "https://farm1.staticflickr.com/20/71856284_de979b1c54_o.jpg", "secret": "245c4e230e", "media": "photo", "latitude": "34.516639", "id": "71856284", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 21:26:51", "license": "5", "title": "Natural Hot Springs Near Grand Promenade, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.052482", "url_o": "https://farm1.staticflickr.com/35/71856336_6658a4bbf7_o.jpg", "secret": "a2b33f2f8c", "media": "photo", "latitude": "34.516029", "id": "71856336", "tags": "arkansas ozarks hotsprings hotspringsnationalpark"}, {"datetaken": "2004-03-18 21:28:05", "license": "5", "title": "Grande Promenade, Hot Springs National Park, Arkansas", "text": "", "album_id": "1426064", "longitude": "-93.052375", "url_o": "https://farm1.staticflickr.com/29/66090626_39dd401373_o.jpg", "secret": "e32cc32848", "media": "photo", "latitude": "34.515821", "id": "66090626", "tags": "arkansas hotsprings hotspringsnationalpark hotspringsnp"}, {"datetaken": "2005-11-06 22:47:37", "license": "1", "title": "Conimbriga - Mosaic 1", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/70095514_0b81db54f0_o.jpg", "secret": "0b81db54f0", "media": "photo", "latitude": "0", "id": "70095514", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 22:51:45", "license": "1", "title": "Conimbriga - Shop South of the Main Road", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/70095797_64a95efe2c_o.jpg", "secret": "64a95efe2c", "media": "photo", "latitude": "0", "id": "70095797", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 22:52:20", "license": "1", "title": "Conimbriga - Mosaic Floor", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/70096171_c7ad9303f7_o.jpg", "secret": "c7ad9303f7", "media": "photo", "latitude": "0", "id": "70096171", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 22:52:42", "license": "1", "title": "Conimbriga - Mosaic Floor - 2", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/70096550_4d829bc93a_o.jpg", "secret": "4d829bc93a", "media": "photo", "latitude": "0", "id": "70096550", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 22:53:20", "license": "1", "title": "Conimbriga - Mosaic Floor - 3", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/70096847_90f6531182_o.jpg", "secret": "90f6531182", "media": "photo", "latitude": "0", "id": "70096847", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 22:56:11", "license": "1", "title": "Conimbriga - Peristyle", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/70097098_2808d3ca62_o.jpg", "secret": "2808d3ca62", "media": "photo", "latitude": "0", "id": "70097098", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 22:56:47", "license": "1", "title": "Conimbriga - Courtyard Between Residence and the Peristyle", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/70097426_9879d0e7dd_o.jpg", "secret": "9879d0e7dd", "media": "photo", "latitude": "0", "id": "70097426", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 22:57:19", "license": "1", "title": "Conimbriga - Mosaic Floor Detail", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/70097551_c9d1dde7b3_o.jpg", "secret": "c9d1dde7b3", "media": "photo", "latitude": "0", "id": "70097551", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 23:00:30", "license": "1", "title": "Conimbriga - Sector South of the Main Road", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/70097767_34338310e8_o.jpg", "secret": "34338310e8", "media": "photo", "latitude": "0", "id": "70097767", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 23:01:30", "license": "1", "title": "Conimbriga - Mosaic Floor - 4", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/70098003_8d356a4d13_o.jpg", "secret": "8d356a4d13", "media": "photo", "latitude": "0", "id": "70098003", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 23:03:59", "license": "1", "title": "Conimbriga - Furnace Near Main Entrance", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/70098237_e747122c5e_o.jpg", "secret": "e747122c5e", "media": "photo", "latitude": "0", "id": "70098237", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 23:08:53", "license": "1", "title": "Conimbriga - Defensive Wall", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/70098454_722a8d6d34_o.jpg", "secret": "722a8d6d34", "media": "photo", "latitude": "0", "id": "70098454", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 23:11:41", "license": "1", "title": "Conimbriga - Baptismal Font", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/70098711_5565bbd246_o.jpg", "secret": "5565bbd246", "media": "photo", "latitude": "0", "id": "70098711", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 23:16:18", "license": "1", "title": "Conimbriga - 4th Century Residence", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/70099073_5d14c83988_o.jpg", "secret": "5d14c83988", "media": "photo", "latitude": "0", "id": "70099073", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 23:16:39", "license": "1", "title": "Conimbriga - Furnace of 4th Century Reesidence", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/70099301_c51115d8a8_o.jpg", "secret": "c51115d8a8", "media": "photo", "latitude": "0", "id": "70099301", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 23:19:00", "license": "1", "title": "Conimbriga - Peristyle Detail", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/70099535_f2e7a5f167_o.jpg", "secret": "f2e7a5f167", "media": "photo", "latitude": "0", "id": "70099535", "tags": "portugal ruins roman coimbra conimbriga condexiaanova condexiaavelha utatashapessquare"}, {"datetaken": "2005-11-06 23:21:12", "license": "1", "title": "Conimbriga - 4th Century Peristyle", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/70099857_f126f24008_o.jpg", "secret": "f126f24008", "media": "photo", "latitude": "0", "id": "70099857", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 23:33:26", "license": "1", "title": "Conimbriga - Public Baths", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/70100029_36ccf850bf_o.jpg", "secret": "36ccf850bf", "media": "photo", "latitude": "0", "id": "70100029", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 23:37:04", "license": "1", "title": "Conimbriga - 4th Century Residence", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/70100246_ca7c438b9f_o.jpg", "secret": "ca7c438b9f", "media": "photo", "latitude": "0", "id": "70100246", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 23:41:13", "license": "1", "title": "Conimbriga - Tracey and the Wall", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/18/70100408_a648299f12_o.jpg", "secret": "a648299f12", "media": "photo", "latitude": "0", "id": "70100408", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 23:44:59", "license": "1", "title": "Conimbriga - Tracey and the Wall - 2", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/70100604_39ac743a72_o.jpg", "secret": "39ac743a72", "media": "photo", "latitude": "0", "id": "70100604", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins tracey"}, {"datetaken": "2005-11-06 23:48:21", "license": "1", "title": "Conimbriga - House of Fountains", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/70100836_ec28953496_o.jpg", "secret": "ec28953496", "media": "photo", "latitude": "0", "id": "70100836", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-06 23:48:50", "license": "1", "title": "Conimbriga - House of Fountains - 2", "text": "", "album_id": "1508632", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/70101031_c6e1c8eb0f_o.jpg", "secret": "c6e1c8eb0f", "media": "photo", "latitude": "0", "id": "70101031", "tags": "portugal conimbriga coimbra condexiaanova condexiaavelha roman ruins"}, {"datetaken": "2005-11-26 18:36:05", "license": "3", "title": "Ice Sculpture", "text": "", "album_id": "72157610510017132", "longitude": "-71.464342", "url_o": "https://farm1.staticflickr.com/35/68504399_e1a84747bc_o.jpg", "secret": "e1a84747bc", "media": "photo", "latitude": "42.758301", "id": "68504399", "tags": "christmas winter sculpture holiday ice mainstreet newhampshire nh mainst stroll nashua holidaystroll starrgazrsown"}, {"datetaken": "2005-11-26 18:39:06", "license": "3", "title": "Steve & Darcy", "text": "", "album_id": "72157610510017132", "longitude": "-71.464342", "url_o": "https://farm1.staticflickr.com/34/68689450_8020463f87_o.jpg", "secret": "8020463f87", "media": "photo", "latitude": "42.758301", "id": "68689450", "tags": "2005 winter holiday downtown steve newhampshire nh stroll darcy nashua starrgazrsown"}, {"datetaken": "2005-11-26 18:45:16", "license": "3", "title": "Ice Sculpture", "text": "", "album_id": "72157610510017132", "longitude": "-71.464342", "url_o": "https://farm1.staticflickr.com/9/68692515_262938f7d1_o.jpg", "secret": "262938f7d1", "media": "photo", "latitude": "42.758301", "id": "68692515", "tags": "christmas winter sculpture holiday ice festival lights raw newengland newhampshire nh stroll nashua starrgazrsown"}, {"datetaken": "2005-11-26 18:45:40", "license": "3", "title": "Ice Sculpture", "text": "", "album_id": "72157610510017132", "longitude": "-71.464342", "url_o": "https://farm1.staticflickr.com/12/68692677_da205a76b9_o.jpg", "secret": "da205a76b9", "media": "photo", "latitude": "42.758301", "id": "68692677", "tags": "christmas winter sculpture holiday ice festival lights raw newengland newhampshire nh stroll nashua starrgazrsown"}, {"datetaken": "2005-11-26 18:46:32", "license": "3", "title": "Ice Sculpture", "text": "", "album_id": "72157610510017132", "longitude": "-71.464342", "url_o": "https://farm1.staticflickr.com/35/68692846_63a2142831_o.jpg", "secret": "63a2142831", "media": "photo", "latitude": "42.758301", "id": "68692846", "tags": "christmas winter sculpture holiday ice festival lights raw newengland newhampshire nh stroll nashua starrgazrsown"}, {"datetaken": "2005-11-26 18:46:55", "license": "3", "title": "Ice Sculpture", "text": "", "album_id": "72157610510017132", "longitude": "-71.464342", "url_o": "https://farm1.staticflickr.com/6/68692981_4caa017ab0_o.jpg", "secret": "4caa017ab0", "media": "photo", "latitude": "42.758301", "id": "68692981", "tags": "christmas winter sculpture holiday ice festival lights raw newengland newhampshire nh stroll nashua starrgazrsown"}, {"datetaken": "2005-11-26 19:25:51", "license": "3", "title": "Sled", "text": "", "album_id": "72157610510017132", "longitude": "-71.467164", "url_o": "https://farm1.staticflickr.com/15/69390991_78c724e033_o.jpg", "secret": "78c724e033", "media": "photo", "latitude": "42.765138", "id": "69390991", "tags": "christmas old winter decorations house holiday lights raw antique sled stroll hunt nashua oldfashioned starrgazrsown"}, {"datetaken": "2005-11-26 19:26:18", "license": "3", "title": "Christmas Past", "text": "", "album_id": "72157610510017132", "longitude": "-71.467164", "url_o": "https://farm1.staticflickr.com/6/69392172_10a6730aa3_o.jpg", "secret": "10a6730aa3", "media": "photo", "latitude": "42.765138", "id": "69392172", "tags": "christmas old winter decorations house holiday lights raw antique stroll hunt nashua oldfashioned starrgazrsown mooholidaycardcompetition"}, {"datetaken": "2005-11-26 19:27:13", "license": "3", "title": "Chistmas Tree", "text": "", "album_id": "72157610510017132", "longitude": "-71.467164", "url_o": "https://farm1.staticflickr.com/34/69391231_62758c63e1_o.jpg", "secret": "62758c63e1", "media": "photo", "latitude": "42.765138", "id": "69391231", "tags": "christmas old winter decorations house holiday tree lights raw antique stroll hunt nashua oldfashioned starrgazrsown"}, {"datetaken": "2005-11-26 19:28:41", "license": "3", "title": "Sleighbells Ring, Are You Listening?", "text": "", "album_id": "72157610510017132", "longitude": "-71.467164", "url_o": "https://farm1.staticflickr.com/12/69392430_febc2079fc_o.jpg", "secret": "febc2079fc", "media": "photo", "latitude": "42.765138", "id": "69392430", "tags": "christmas old winter decorations house holiday lights raw antique stroll hunt nashua oldfashioned starrgazrsown"}, {"datetaken": "2005-11-26 19:29:00", "license": "3", "title": "Ian shooting the sled", "text": "", "album_id": "72157610510017132", "longitude": "-71.467164", "url_o": "https://farm1.staticflickr.com/34/69391470_a937cd22e3_o.jpg", "secret": "a937cd22e3", "media": "photo", "latitude": "42.765138", "id": "69391470", "tags": "christmas old winter decorations house holiday ian lights raw antique sled stroll hunt nashua oldfashioned starrgazrsown"}, {"datetaken": "2005-11-26 19:35:14", "license": "3", "title": "All Ready", "text": "", "album_id": "72157610510017132", "longitude": "-71.467164", "url_o": "https://farm1.staticflickr.com/35/69391842_337513ad6a_o.jpg", "secret": "337513ad6a", "media": "photo", "latitude": "42.765138", "id": "69391842", "tags": "christmas old winter decorations house holiday lights raw antique stroll hunt nashua oldfashioned starrgazrsown"}, {"datetaken": "2005-11-26 19:44:47", "license": "3", "title": "Hunt House", "text": "", "album_id": "72157610510017132", "longitude": "-71.467164", "url_o": "https://farm1.staticflickr.com/34/69392690_9b161e87d2_o.jpg", "secret": "9b161e87d2", "media": "photo", "latitude": "42.765138", "id": "69392690", "tags": "christmas old winter decorations house holiday lights mainstreet raw antique stroll hunt nashua oldfashioned starrgazrsown"}, {"datetaken": "2005-11-26 19:45:46", "license": "3", "title": "Sad Tree", "text": "", "album_id": "72157610510017132", "longitude": "-71.466670", "url_o": "https://farm1.staticflickr.com/12/69455151_642a065dba_o.jpg", "secret": "642a065dba", "media": "photo", "latitude": "42.764453", "id": "69455151", "tags": "2005 christmas winter holiday festival lights raw newhampshire nh stroll nashua starrgazrsown"}, {"datetaken": "2005-11-26 19:47:50", "license": "3", "title": "@ the Nashua Winter Holiday Stroll 2005.", "text": "", "album_id": "72157610510017132", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/69455374_a4fb39da18_o.jpg", "secret": "a4fb39da18", "media": "photo", "latitude": "0", "id": "69455374", "tags": "2005 christmas winter holiday festival lights raw newhampshire nh stroll nashua starrgazrsown"}, {"datetaken": "2005-11-26 19:48:10", "license": "3", "title": "Winter Folk Dancing", "text": "", "album_id": "72157610510017132", "longitude": "-71.466456", "url_o": "https://farm1.staticflickr.com/20/69455663_187ece175a_o.jpg", "secret": "187ece175a", "media": "photo", "latitude": "42.764473", "id": "69455663", "tags": "2005 christmas winter holiday festival lights raw newhampshire nh stroll nashua starrgazrsown"}, {"datetaken": "2005-11-26 19:49:45", "license": "3", "title": "Church", "text": "", "album_id": "72157610510017132", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/69455890_f771be028f_o.jpg", "secret": "f771be028f", "media": "photo", "latitude": "0", "id": "69455890", "tags": "2005 christmas winter holiday festival lights mainstreet raw newhampshire nh stroll nashua starrgazrsown nhtownlandmarks nhcupolassteeplesvanes"}, {"datetaken": "2005-11-26 19:53:18", "license": "3", "title": "Looking Down Main Street", "text": "", "album_id": "72157610510017132", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/69456121_ae93db5b47_o.jpg", "secret": "ae93db5b47", "media": "photo", "latitude": "0", "id": "69456121", "tags": "2005 christmas winter holiday festival lights raw newhampshire nh stroll nashua starrgazrsown"}, {"datetaken": "2005-11-26 19:54:34", "license": "3", "title": "Golden Gossimers", "text": "", "album_id": "72157610510017132", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/69456422_c29247a060_o.jpg", "secret": "c29247a060", "media": "photo", "latitude": "0", "id": "69456422", "tags": "2005 christmas winter holiday festival lights raw newhampshire nh stroll nashua starrgazrsown"}, {"datetaken": "2005-11-26 19:55:24", "license": "3", "title": "Margarita's", "text": "", "album_id": "72157610510017132", "longitude": "-71.463425", "url_o": "https://farm1.staticflickr.com/20/69456266_f4b1af7da4_o.jpg", "secret": "f4b1af7da4", "media": "photo", "latitude": "42.763902", "id": "69456266", "tags": "2005 christmas winter holiday festival lights raw newhampshire nh stroll nashua starrgazrsown"}, {"datetaken": "2005-11-26 19:56:02", "license": "3", "title": "New Hampshire", "text": "", "album_id": "72157610510017132", "longitude": "-71.466584", "url_o": "https://farm1.staticflickr.com/20/69456589_4e2ec8f78f_o.jpg", "secret": "4e2ec8f78f", "media": "photo", "latitude": "42.763149", "id": "69456589", "tags": "2005 christmas winter holiday festival lights mainstreet raw newhampshire nh stroll nashua starrgazrsown nhtownlandmarks"}, {"datetaken": "2005-11-26 19:58:22", "license": "3", "title": "One the Outside Looking In", "text": "", "album_id": "72157610510017132", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/69594203_5a31ca848a_o.jpg", "secret": "5a31ca848a", "media": "photo", "latitude": "0", "id": "69594203", "tags": "2005 winter holiday festival downtown raw newhampshire nh stroll nashua starrgazrsown"}, {"datetaken": "2005-11-26 19:58:42", "license": "3", "title": "Looking In", "text": "", "album_id": "72157610510017132", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/69594349_f721edda28_o.jpg", "secret": "f721edda28", "media": "photo", "latitude": "0", "id": "69594349", "tags": "2005 winter holiday festival mainstreet downtown raw newhampshire nh stroll nashua starrgazrsown"}, {"datetaken": "2005-11-26 20:07:31", "license": "3", "title": "One Musician", "text": "", "album_id": "72157610510017132", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/69594471_3290cc919a_o.jpg", "secret": "3290cc919a", "media": "photo", "latitude": "0", "id": "69594471", "tags": "2005 winter holiday festival downtown raw newhampshire nh stroll nashua starrgazrsown"}, {"datetaken": "2005-11-26 20:17:31", "license": "3", "title": "Not sure what you would call this", "text": "", "album_id": "72157610510017132", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/69594591_39e730f66d_o.jpg", "secret": "39e730f66d", "media": "photo", "latitude": "0", "id": "69594591", "tags": "2005 winter holiday festival downtown raw newhampshire nh stroll nashua starrgazrsown"}, {"datetaken": "2005-11-26 20:19:17", "license": "3", "title": "Baby Its Cold Outside", "text": "", "album_id": "72157610510017132", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/69594729_8e38c13a98_o.jpg", "secret": "8e38c13a98", "media": "photo", "latitude": "0", "id": "69594729", "tags": "2005 winter holiday festival downtown raw newhampshire nh stroll nashua starrgazrsown"}, {"datetaken": "2005-11-26 20:34:34", "license": "3", "title": "Harp and Drums", "text": "", "album_id": "72157610510017132", "longitude": "0", "url_o": "https://farm1.staticflickr.com/20/69594827_17a3998df6_o.jpg", "secret": "17a3998df6", "media": "photo", "latitude": "0", "id": "69594827", "tags": "2005 winter holiday festival downtown raw newhampshire nh stroll nashua starrgazrsown"}, {"datetaken": "2005-11-26 20:45:14", "license": "3", "title": "deLuna", "text": "", "album_id": "72157610510017132", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/69594947_1b6a100cff_o.jpg", "secret": "1b6a100cff", "media": "photo", "latitude": "0", "id": "69594947", "tags": "2005 winter holiday festival downtown raw newhampshire nh stroll nashua starrgazrsown"}, {"datetaken": "2005-11-26 20:55:34", "license": "3", "title": "Amber Harp Music", "text": "", "album_id": "72157610510017132", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/69595089_aca6545d67_o.jpg", "secret": "aca6545d67", "media": "photo", "latitude": "0", "id": "69595089", "tags": "2005 winter holiday festival amber downtown raw newhampshire nh 16 stroll nashua starrgazrsown"}, {"datetaken": "2006-02-01 11:31:23", "license": "3", "title": "Soontorn biohouse map", "text": "", "album_id": "72057594061086267", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/97034514_9ad7370aab_o.jpg", "secret": "9ad7370aab", "media": "photo", "latitude": "0", "id": "97034514", "tags": "architecture thailand bangkok solarhouse soontorn biosolarhouse drsoontorn"}, {"datetaken": "2006-02-02 19:55:59", "license": "3", "title": "Outside shot, with author", "text": "", "album_id": "72057594061086267", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/97033985_b8f41a50c4_o.jpg", "secret": "b8f41a50c4", "media": "photo", "latitude": "0", "id": "97033985", "tags": "architecture thailand bangkok solarhouse soontorn biosolarhouse drsoontorn"}, {"datetaken": "2006-02-02 20:11:52", "license": "3", "title": "Discussions", "text": "", "album_id": "72057594061086267", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/97034060_7f63392d00_o.jpg", "secret": "7f63392d00", "media": "photo", "latitude": "0", "id": "97034060", "tags": "architecture thailand bangkok solarhouse soontorn biosolarhouse drsoontorn"}, {"datetaken": "2006-02-02 20:12:11", "license": "3", "title": "Q&A continued", "text": "", "album_id": "72057594061086267", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/97034027_dcf107a311_o.jpg", "secret": "dcf107a311", "media": "photo", "latitude": "0", "id": "97034027", "tags": "architecture thailand bangkok solarhouse soontorn biosolarhouse drsoontorn"}, {"datetaken": "2006-02-02 20:16:00", "license": "3", "title": "Master bathroom", "text": "", "album_id": "72057594061086267", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/97034084_ba10428a0a_o.jpg", "secret": "ba10428a0a", "media": "photo", "latitude": "0", "id": "97034084", "tags": "architecture thailand bangkok solarhouse soontorn biosolarhouse drsoontorn"}, {"datetaken": "2006-02-02 20:16:42", "license": "3", "title": "Bedroom", "text": "", "album_id": "72057594061086267", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/97034110_ce29076398_o.jpg", "secret": "ce29076398", "media": "photo", "latitude": "0", "id": "97034110", "tags": "architecture thailand bangkok solarhouse soontorn biosolarhouse drsoontorn"}, {"datetaken": "2006-02-02 20:20:21", "license": "3", "title": "Ground floor view", "text": "", "album_id": "72057594061086267", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/97034466_bc81f406f1_o.jpg", "secret": "bc81f406f1", "media": "photo", "latitude": "0", "id": "97034466", "tags": "architecture thailand solar bangkok solarhouse soontorn biosolarhouse drsoontorn"}, {"datetaken": "2006-02-02 20:29:09", "license": "3", "title": "Bedroom fisheye view", "text": "", "album_id": "72057594061086267", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/97034148_2bc36a0fae_o.jpg", "secret": "2bc36a0fae", "media": "photo", "latitude": "0", "id": "97034148", "tags": "architecture thailand bangkok solarhouse soontorn biosolarhouse drsoontorn"}, {"datetaken": "2006-02-02 20:30:20", "license": "3", "title": "Bedroom \"moonlight\"", "text": "", "album_id": "72057594061086267", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/97034541_ff63fd10ac_o.jpg", "secret": "ff63fd10ac", "media": "photo", "latitude": "0", "id": "97034541", "tags": "architecture thailand solar bangkok solarhouse soontorn biosolarhouse drsoontorn"}, {"datetaken": "2006-02-02 20:46:13", "license": "3", "title": "Water room", "text": "", "album_id": "72057594061086267", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/97034666_a9af1d3650_o.jpg", "secret": "a9af1d3650", "media": "photo", "latitude": "0", "id": "97034666", "tags": "architecture thailand bangkok solarhouse soontorn biosolarhouse drsoontorn"}, {"datetaken": "2006-02-02 20:58:33", "license": "3", "title": "Dr. S describes the greywater filtration system", "text": "", "album_id": "72057594061086267", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/97034380_62fa7faeaa_o.jpg", "secret": "62fa7faeaa", "media": "photo", "latitude": "0", "id": "97034380", "tags": "architecture thailand bangkok solarhouse soontorn biosolarhouse drsoontorn"}, {"datetaken": "2006-02-02 20:58:53", "license": "3", "title": "Greywater in backyard filter", "text": "", "album_id": "72057594061086267", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/97034445_6ae09c215b_o.jpg", "secret": "6ae09c215b", "media": "photo", "latitude": "0", "id": "97034445", "tags": "architecture thailand solar bangkok solarhouse soontorn biosolarhouse drsoontorn"}, {"datetaken": "2006-02-02 21:10:20", "license": "3", "title": "Front entrance", "text": "", "album_id": "72057594061086267", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/97034239_44f13c8886_o.jpg", "secret": "44f13c8886", "media": "photo", "latitude": "0", "id": "97034239", "tags": "architecture thailand bangkok solarhouse soontorn biosolarhouse drsoontorn"}, {"datetaken": "2006-02-02 21:12:19", "license": "3", "title": "Pool view with windmill", "text": "", "album_id": "72057594061086267", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/97034599_aa7473e137_o.jpg", "secret": "aa7473e137", "media": "photo", "latitude": "0", "id": "97034599", "tags": "architecture thailand bangkok solarhouse soontorn biosolarhouse drsoontorn"}, {"datetaken": "2006-02-11 17:13:07", "license": "2", "title": "osakaCastle", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/98276976_e686666187_o.jpg", "secret": "e686666187", "media": "photo", "latitude": "0", "id": "98276976", "tags": "castle 2000 osaka"}, {"datetaken": "2006-02-11 17:13:07", "license": "2", "title": "cityFromCastle", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/98276978_936edfbee1_o.jpg", "secret": "936edfbee1", "media": "photo", "latitude": "0", "id": "98276978", "tags": "city castle 2000 scene osaka"}, {"datetaken": "2006-02-11 17:13:07", "license": "2", "title": "someOsakaScene", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/98276977_6ece3d6c26_o.jpg", "secret": "6ece3d6c26", "media": "photo", "latitude": "0", "id": "98276977", "tags": "city tower castle 2000 scene osaka"}, {"datetaken": "2006-02-11 17:13:07", "license": "2", "title": "sellingSomething", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/98276979_5af5ab1f83_o.jpg", "secret": "5af5ab1f83", "media": "photo", "latitude": "0", "id": "98276979", "tags": "castle advertising japanese 2000 market osaka"}, {"datetaken": "2006-02-11 17:13:07", "license": "2", "title": "youngstersPlayingMusic", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/98276980_57891a1f15_o.jpg", "secret": "57891a1f15", "media": "photo", "latitude": "0", "id": "98276980", "tags": "music castle japanese concert 2000 osaka"}, {"datetaken": "2006-02-11 17:24:37", "license": "2", "title": "viewFromCastle", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/98280957_e97fa84d64_o.jpg", "secret": "e97fa84d64", "media": "photo", "latitude": "0", "id": "98280957", "tags": "fish castle gold 2000 osaka"}, {"datetaken": "2006-02-11 17:24:37", "license": "2", "title": "kinkaku-ji", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/98280958_2a60aca4df_o.jpg", "secret": "2a60aca4df", "media": "photo", "latitude": "0", "id": "98280958", "tags": "golden kyoto 2000 pavilion osaka kinkakuji"}, {"datetaken": "2006-02-11 17:24:37", "license": "2", "title": "teaPavilion", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/98280962_1c7d257847_o.jpg", "secret": "1c7d257847", "media": "photo", "latitude": "0", "id": "98280962", "tags": "garden japanese kyoto 2000 tea pavilion osaka"}, {"datetaken": "2006-02-11 17:24:37", "license": "2", "title": "statue", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/98280961_7126982a65_o.jpg", "secret": "7126982a65", "media": "photo", "latitude": "0", "id": "98280961", "tags": "statue garden japanese kyoto 2000 osaka"}, {"datetaken": "2006-02-11 17:24:37", "license": "2", "title": "ryoan-ji", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/98280959_8e498e13d4_o.jpg", "secret": "8e498e13d4", "media": "photo", "latitude": "0", "id": "98280959", "tags": "kyoto 2000 osaka ryoanji"}, {"datetaken": "2006-02-11 17:24:38", "license": "2", "title": "typicalHouse", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/98280964_837fc5ed41_o.jpg", "secret": "837fc5ed41", "media": "photo", "latitude": "0", "id": "98280964", "tags": "house garden japanese 2000 osaka"}, {"datetaken": "2006-02-11 17:38:46", "license": "2", "title": "theHouse", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/98286237_dab97aab16_o.jpg", "secret": "dab97aab16", "media": "photo", "latitude": "0", "id": "98286237", "tags": "house store 2000 osaka 24h"}, {"datetaken": "2006-02-11 17:38:46", "license": "2", "title": "vendingMachine", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/98286240_99cea4f18a_o.jpg", "secret": "99cea4f18a", "media": "photo", "latitude": "0", "id": "98286240", "tags": "japanese 2000 machine osaka soda vending"}, {"datetaken": "2006-02-11 17:38:46", "license": "2", "title": "myRoom", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/98286243_b94d3fb03a_o.jpg", "secret": "b94d3fb03a", "media": "photo", "latitude": "0", "id": "98286243", "tags": "2000 osaka"}, {"datetaken": "2006-02-11 17:38:47", "license": "2", "title": "corridor", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/98286244_804cd28db4_o.jpg", "secret": "804cd28db4", "media": "photo", "latitude": "0", "id": "98286244", "tags": "kitchen 2000 corridor osaka"}, {"datetaken": "2006-02-11 17:38:47", "license": "2", "title": "kitchen", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/98286246_19ffb6197f_o.jpg", "secret": "19ffb6197f", "media": "photo", "latitude": "0", "id": "98286246", "tags": "kitchen 2000 niche osaka"}, {"datetaken": "2006-02-11 17:38:47", "license": "2", "title": "bathroom", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/98286247_c350b2a59e_o.jpg", "secret": "c350b2a59e", "media": "photo", "latitude": "0", "id": "98286247", "tags": "bathroom 2000 osaka"}, {"datetaken": "2006-02-11 17:52:02", "license": "2", "title": "zoomViewDowntown", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/98291287_744f6d56f1_o.jpg", "secret": "744f6d56f1", "media": "photo", "latitude": "0", "id": "98291287", "tags": "2000 osaka"}, {"datetaken": "2006-02-11 17:52:02", "license": "2", "title": "poleOnBalcony", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/98291288_89fa546d84_o.jpg", "secret": "89fa546d84", "media": "photo", "latitude": "0", "id": "98291288", "tags": "2000 pole osaka"}, {"datetaken": "2006-02-11 17:52:02", "license": "2", "title": "graphisch", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/98291285_76a1d6c28b_o.jpg", "secret": "76a1d6c28b", "media": "photo", "latitude": "0", "id": "98291285", "tags": "night downtown 2000 osaka"}, {"datetaken": "2006-02-11 17:52:02", "license": "2", "title": "girlAndFirework", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/98291286_09fb7d1ea5_o.jpg", "secret": "09fb7d1ea5", "media": "photo", "latitude": "0", "id": "98291286", "tags": "japan 2000 firework osaka"}, {"datetaken": "2006-02-11 17:52:03", "license": "2", "title": "myFriendsAndMe", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/98291291_6aaa0739e4_o.jpg", "secret": "6aaa0739e4", "media": "photo", "latitude": "0", "id": "98291291", "tags": "2000 osaka"}, {"datetaken": "2006-02-11 17:52:03", "license": "2", "title": "fireworksOver", "text": "", "album_id": "904406", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/98291292_7182bec194_o.jpg", "secret": "7182bec194", "media": "photo", "latitude": "0", "id": "98291292", "tags": "face japanese 2000 firework osaka"}, {"datetaken": "2006-02-07 19:17:03", "license": "5", "title": "Thomas", "text": "", "album_id": "72057594061253839", "longitude": "4.573574", "url_o": "https://farm1.staticflickr.com/31/97172413_e60e9d0b97_o.jpg", "secret": "e60e9d0b97", "media": "photo", "latitude": "52.294674", "id": "97172413", "tags": "netherlands"}, {"datetaken": "2006-02-08 07:41:54", "license": "5", "title": "Jump!", "text": "", "album_id": "72057594061253839", "longitude": "4.573574", "url_o": "https://farm1.staticflickr.com/34/97172428_a33c3b3a43_o.jpg", "secret": "a33c3b3a43", "media": "photo", "latitude": "52.294674", "id": "97172428", "tags": "netherlands"}, {"datetaken": "2006-02-08 11:05:26", "license": "5", "title": "Dutch cat", "text": "", "album_id": "72057594061253839", "longitude": "4.573574", "url_o": "https://farm1.staticflickr.com/19/101716718_4d47d23c54_o.jpg", "secret": "4d47d23c54", "media": "photo", "latitude": "52.294674", "id": "101716718", "tags": "netherlands dutch cat"}, {"datetaken": "2006-02-08 13:02:28", "license": "5", "title": "Matt at the European Space Agency", "text": "", "album_id": "72057594061253839", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/97169573_514c40a0a8_o.jpg", "secret": "514c40a0a8", "media": "photo", "latitude": "0", "id": "97169573", "tags": "netherlands"}, {"datetaken": "2006-02-08 13:51:58", "license": "5", "title": "Inside a garage area", "text": "", "album_id": "72057594061253839", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/97172445_6c3e504b97_o.jpg", "secret": "6c3e504b97", "media": "photo", "latitude": "0", "id": "97172445", "tags": "netherlands"}, {"datetaken": "2006-02-08 13:56:34", "license": "5", "title": "Automated Transfer Vehicle", "text": "", "album_id": "72057594061253839", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/97172478_b7154a03c6_o.jpg", "secret": "b7154a03c6", "media": "photo", "latitude": "0", "id": "97172478", "tags": "netherlands"}, {"datetaken": "2006-02-08 13:56:55", "license": "5", "title": "Looking at the ATV", "text": "", "album_id": "72057594061253839", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/97172499_bd6872d11d_o.jpg", "secret": "bd6872d11d", "media": "photo", "latitude": "0", "id": "97172499", "tags": "netherlands"}, {"datetaken": "2006-02-08 14:00:49", "license": "5", "title": "Space simulator", "text": "", "album_id": "72057594061253839", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/97172519_02f4b0bd03_o.jpg", "secret": "02f4b0bd03", "media": "photo", "latitude": "0", "id": "97172519", "tags": "netherlands"}, {"datetaken": "2006-02-08 14:20:07", "license": "5", "title": "Jennifer and Anneke", "text": "", "album_id": "72057594061253839", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/97172564_88181352e2_o.jpg", "secret": "88181352e2", "media": "photo", "latitude": "0", "id": "97172564", "tags": "netherlands"}, {"datetaken": "2006-02-08 15:03:50", "license": "5", "title": "Downtown Hillegom", "text": "", "album_id": "72057594061253839", "longitude": "4.573574", "url_o": "https://farm1.staticflickr.com/38/101716990_04aae6bd2e_o.jpg", "secret": "04aae6bd2e", "media": "photo", "latitude": "52.294674", "id": "101716990", "tags": "netherlands hillegom"}, {"datetaken": "2006-02-08 15:35:46", "license": "5", "title": "Obligatory Dutch staircase photo", "text": "", "album_id": "72057594061253839", "longitude": "4.573574", "url_o": "https://farm1.staticflickr.com/31/101717260_5d0ad39531_o.jpg", "secret": "5d0ad39531", "media": "photo", "latitude": "52.294674", "id": "101717260", "tags": "netherlands stairs"}, {"datetaken": "2006-02-08 16:54:29", "license": "5", "title": "Lucas, post-chocolate", "text": "", "album_id": "72057594061253839", "longitude": "4.573574", "url_o": "https://farm1.staticflickr.com/30/101717274_c5827ca26c_o.jpg", "secret": "c5827ca26c", "media": "photo", "latitude": "52.294674", "id": "101717274", "tags": "netherlands"}, {"datetaken": "2006-02-08 16:57:02", "license": "5", "title": "Don't ask me", "text": "", "album_id": "72057594061253839", "longitude": "4.573574", "url_o": "https://farm1.staticflickr.com/36/101717216_6b62806b6d_o.jpg", "secret": "6b62806b6d", "media": "photo", "latitude": "52.294674", "id": "101717216", "tags": "netherlands"}, {"datetaken": "2006-02-08 16:57:36", "license": "5", "title": "Thomas and Lucas", "text": "", "album_id": "72057594061253839", "longitude": "4.573574", "url_o": "https://farm1.staticflickr.com/29/101717240_1f0278c861_o.jpg", "secret": "1f0278c861", "media": "photo", "latitude": "52.294674", "id": "101717240", "tags": "netherlands"}, {"datetaken": "2006-02-08 18:46:05", "license": "5", "title": "Matt makes poffertjes", "text": "", "album_id": "72057594061253839", "longitude": "4.573574", "url_o": "https://farm1.staticflickr.com/32/101718490_75a679b7ac_o.jpg", "secret": "75a679b7ac", "media": "photo", "latitude": "52.294674", "id": "101718490", "tags": "netherlands poffertjes"}, {"datetaken": "2006-02-08 18:49:21", "license": "5", "title": "Thomas is getting tall", "text": "", "album_id": "72057594061253839", "longitude": "4.573574", "url_o": "https://farm1.staticflickr.com/30/101718513_f1cb9b92f3_o.jpg", "secret": "f1cb9b92f3", "media": "photo", "latitude": "52.294674", "id": "101718513", "tags": "netherlands"}, {"datetaken": "2006-02-08 18:49:56", "license": "5", "title": "Dinner, Dutch style", "text": "", "album_id": "72057594061253839", "longitude": "4.573574", "url_o": "https://farm1.staticflickr.com/25/101718563_9b1747e52a_o.jpg", "secret": "9b1747e52a", "media": "photo", "latitude": "52.294674", "id": "101718563", "tags": "netherlands poffertjes"}, {"datetaken": "2006-02-08 19:03:22", "license": "5", "title": "Bryan at the pan", "text": "", "album_id": "72057594061253839", "longitude": "4.573574", "url_o": "https://farm1.staticflickr.com/33/101718605_b0f0db1654_o.jpg", "secret": "b0f0db1654", "media": "photo", "latitude": "52.294674", "id": "101718605", "tags": "netherlands poffertjes"}, {"datetaken": "2006-02-09 10:26:09", "license": "5", "title": "Matt in his office", "text": "", "album_id": "72057594061253839", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/101722126_db38b8f831_o.jpg", "secret": "db38b8f831", "media": "photo", "latitude": "0", "id": "101722126", "tags": "netherlands"}, {"datetaken": "2006-02-09 11:47:04", "license": "5", "title": "In front of the cathedral, Haarlem", "text": "", "album_id": "72057594061253839", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/101722473_4609fa358e_o.jpg", "secret": "4609fa358e", "media": "photo", "latitude": "0", "id": "101722473", "tags": "haarlem netherlands"}, {"datetaken": "2006-02-09 11:53:52", "license": "5", "title": "Haarlem street", "text": "", "album_id": "72057594061253839", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/101722452_f282dc6650_o.jpg", "secret": "f282dc6650", "media": "photo", "latitude": "0", "id": "101722452", "tags": "haarlem netherlands"}, {"datetaken": "2006-02-09 13:13:34", "license": "5", "title": "Matt with frites", "text": "", "album_id": "72057594061253839", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/101722411_b0146c9cc1_o.jpg", "secret": "b0146c9cc1", "media": "photo", "latitude": "0", "id": "101722411", "tags": "haarlem netherlands frites fries"}, {"datetaken": "2006-02-09 14:38:10", "license": "5", "title": "Cat stalks bird", "text": "", "album_id": "72057594061253839", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/101723736_ecf4729779_o.jpg", "secret": "ecf4729779", "media": "photo", "latitude": "0", "id": "101723736", "tags": "netherlands cat hillegom"}, {"datetaken": "2006-02-09 14:39:15", "license": "5", "title": "Fixing a sinking street", "text": "", "album_id": "72057594061253839", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/101723770_2d63ccee45_o.jpg", "secret": "2d63ccee45", "media": "photo", "latitude": "0", "id": "101723770", "tags": "netherlands hillegom"}, {"datetaken": "2006-02-09 15:08:13", "license": "5", "title": "Anneke's flower arrangement", "text": "", "album_id": "72057594061253839", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/101725000_a1e39306bb_o.jpg", "secret": "a1e39306bb", "media": "photo", "latitude": "0", "id": "101725000", "tags": "netherlands"}, {"datetaken": "2006-02-09 15:08:48", "license": "5", "title": "Jen's arrangement", "text": "", "album_id": "72057594061253839", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/101725119_0c3674c9fd_o.jpg", "secret": "0c3674c9fd", "media": "photo", "latitude": "0", "id": "101725119", "tags": "netherlands"}, {"datetaken": "2006-02-09 17:18:58", "license": "5", "title": "With the grandkids", "text": "", "album_id": "72057594061253839", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/101725062_448c88510c_o.jpg", "secret": "448c88510c", "media": "photo", "latitude": "0", "id": "101725062", "tags": "netherlands"}, {"datetaken": "2006-04-02 11:09:24", "license": "3", "title": "Branches", "text": "", "album_id": "72057594100640639", "longitude": "-75.676043", "url_o": "https://farm1.staticflickr.com/39/124411027_de3e6d1820_o.jpg", "secret": "de3e6d1820", "media": "photo", "latitude": "39.872025", "id": "124411027", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:12:12", "license": "3", "title": "Longwood Gardens", "text": "", "album_id": "72057594100640639", "longitude": "-75.676923", "url_o": "https://farm1.staticflickr.com/53/124410723_a44df48efc_o.jpg", "secret": "a44df48efc", "media": "photo", "latitude": "39.871721", "id": "124410723", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:15:22", "license": "3", "title": "The Orangery", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/49/124410883_b15ba5f0f6_o.jpg", "secret": "b15ba5f0f6", "media": "photo", "latitude": "39.872429", "id": "124410883", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:15:37", "license": "3", "title": "Longwood Gardens", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/43/124410788_ce7f407698_o.jpg", "secret": "ce7f407698", "media": "photo", "latitude": "39.872429", "id": "124410788", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:22:19", "license": "3", "title": "Tropical room", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/49/124410965_e2cfebe5f6_o.jpg", "secret": "e2cfebe5f6", "media": "photo", "latitude": "39.872429", "id": "124410965", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:22:33", "license": "3", "title": "", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/44/124410739_adb6501c74_o.jpg", "secret": "adb6501c74", "media": "photo", "latitude": "39.872429", "id": "124410739", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:23:19", "license": "3", "title": "Fountain", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/35/124411073_28b1813f6a_o.jpg", "secret": "28b1813f6a", "media": "photo", "latitude": "39.872429", "id": "124411073", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:23:39", "license": "3", "title": "Fountain", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/44/124411099_3c8ec0d1a9_o.jpg", "secret": "3c8ec0d1a9", "media": "photo", "latitude": "39.872429", "id": "124411099", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:26:04", "license": "3", "title": "Lilies", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/49/124411140_36854d7e1e_o.jpg", "secret": "36854d7e1e", "media": "photo", "latitude": "39.872429", "id": "124411140", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:26:16", "license": "3", "title": "Interesting gears", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/44/124411190_4e113fcbaf_o.jpg", "secret": "4e113fcbaf", "media": "photo", "latitude": "39.872429", "id": "124411190", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:27:16", "license": "3", "title": "Citrus!", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/52/124411173_19d5f91342_o.jpg", "secret": "19d5f91342", "media": "photo", "latitude": "39.872429", "id": "124411173", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:28:15", "license": "3", "title": "Unexpected architecture", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/50/124411227_d1ce423b0f_o.jpg", "secret": "d1ce423b0f", "media": "photo", "latitude": "39.872429", "id": "124411227", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:28:33", "license": "3", "title": "Something in this room smelled good", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/45/124411266_3bf38d8f51_o.jpg", "secret": "3bf38d8f51", "media": "photo", "latitude": "39.872429", "id": "124411266", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:29:18", "license": "3", "title": "Trained fig trees", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/47/124411308_0013716073_o.jpg", "secret": "0013716073", "media": "photo", "latitude": "39.872429", "id": "124411308", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:29:45", "license": "3", "title": "Trained fig trees", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/56/124411338_6a9bd4fb8d_o.jpg", "secret": "6a9bd4fb8d", "media": "photo", "latitude": "39.872429", "id": "124411338", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:31:13", "license": "3", "title": "Simple trellis", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/49/124411353_4acae020b9_o.jpg", "secret": "4acae020b9", "media": "photo", "latitude": "39.872429", "id": "124411353", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:33:52", "license": "3", "title": "Leafy pattern", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/55/124411381_72211ebbd3_o.jpg", "secret": "72211ebbd3", "media": "photo", "latitude": "39.872429", "id": "124411381", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:36:31", "license": "3", "title": "Red Hot Poker", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/54/124411411_177d40d10b_o.jpg", "secret": "177d40d10b", "media": "photo", "latitude": "39.872429", "id": "124411411", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:36:55", "license": "3", "title": "Palm tree", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/46/124411434_49774c4a08_o.jpg", "secret": "49774c4a08", "media": "photo", "latitude": "39.872429", "id": "124411434", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:37:27", "license": "3", "title": "Palm tree - err, squid", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/35/124411460_c66fc9525b_o.jpg", "secret": "c66fc9525b", "media": "photo", "latitude": "39.872429", "id": "124411460", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:41:39", "license": "3", "title": "Bonsai", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/49/124411470_8382cac40b_o.jpg", "secret": "8382cac40b", "media": "photo", "latitude": "39.872429", "id": "124411470", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:45:05", "license": "3", "title": "Hamming it up", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/37/124411498_5f21dedf8c_o.jpg", "secret": "5f21dedf8c", "media": "photo", "latitude": "39.872429", "id": "124411498", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:46:12", "license": "3", "title": "The Orangery", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/40/124411510_986b3adb77_o.jpg", "secret": "986b3adb77", "media": "photo", "latitude": "39.872429", "id": "124411510", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:47:30", "license": "3", "title": "Sunken garden", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/35/124411527_f16c1c2e56_o.jpg", "secret": "f16c1c2e56", "media": "photo", "latitude": "39.872429", "id": "124411527", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:50:05", "license": "3", "title": "ast Conservatory", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/38/124411550_9ea0e5edaa_o.jpg", "secret": "9ea0e5edaa", "media": "photo", "latitude": "39.872429", "id": "124411550", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:52:16", "license": "3", "title": "East Conservatory", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/44/124411581_2c3d6e0c69_o.jpg", "secret": "2c3d6e0c69", "media": "photo", "latitude": "39.872429", "id": "124411581", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:52:32", "license": "3", "title": "East Conservatory", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/36/124411618_7ce7fa6f53_o.jpg", "secret": "7ce7fa6f53", "media": "photo", "latitude": "39.872429", "id": "124411618", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:54:17", "license": "3", "title": "These flowers were EVERYWHERE", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/43/124411650_b1fe5958a8_o.jpg", "secret": "b1fe5958a8", "media": "photo", "latitude": "39.872429", "id": "124411650", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 11:54:29", "license": "3", "title": "These flowers were EVERYWHERE", "text": "", "album_id": "72057594100640639", "longitude": "-75.679348", "url_o": "https://farm1.staticflickr.com/52/124411685_580628d676_o.jpg", "secret": "580628d676", "media": "photo", "latitude": "39.872429", "id": "124411685", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2006-04-02 12:05:20", "license": "3", "title": "Pierce House", "text": "", "album_id": "72057594100640639", "longitude": "-75.674069", "url_o": "https://farm1.staticflickr.com/49/124411725_974fe135e5_o.jpg", "secret": "974fe135e5", "media": "photo", "latitude": "39.873458", "id": "124411725", "tags": "plants garden arboretum 2006 conservatory foliage blooms longwoodgardens longwood"}, {"datetaken": "2007-04-14 01:36:09", "license": "3", "title": "Scandinavia House ground floor entrance (looking out at Park Avenue)", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/128543523_cc1f71434b_o.jpg", "secret": "cc1f71434b", "media": "photo", "latitude": "0", "id": "128543523", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 01:36:42", "license": "3", "title": "Scandinavia House ground floor entrance (looking up)", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/128543785_711a735294_o.jpg", "secret": "711a735294", "media": "photo", "latitude": "0", "id": "128543785", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 01:38:22", "license": "3", "title": "Scandinavia House ground floor entrance & cafe area", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/128544028_ee26572d06_o.jpg", "secret": "ee26572d06", "media": "photo", "latitude": "0", "id": "128544028", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:15:58", "license": "3", "title": "Scandinavia House family educational area (playroom)", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/128546576_3e7c7b831b_o.jpg", "secret": "3e7c7b831b", "media": "photo", "latitude": "0", "id": "128546576", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:17:12", "license": "3", "title": "Scandinavia House 2nd floor outdoor deck (for eating)", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/128547786_adb24db0a3_o.jpg", "secret": "adb24db0a3", "media": "photo", "latitude": "0", "id": "128547786", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:17:30", "license": "3", "title": "Scandinavia House 2nd floor outdoor deck (for eating)", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/128548039_1fb1612841_o.jpg", "secret": "1fb1612841", "media": "photo", "latitude": "0", "id": "128548039", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:17:33", "license": "3", "title": "Scandinavia House 2nd floor outdoor deck (for eating)", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/128548253_2f4882225b_o.jpg", "secret": "2f4882225b", "media": "photo", "latitude": "0", "id": "128548253", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:17:42", "license": "3", "title": "Scandinavia House 2nd floor outdoor deck (for eating)", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/128548474_3c4a27f2bb_o.jpg", "secret": "3c4a27f2bb", "media": "photo", "latitude": "0", "id": "128548474", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:47:10", "license": "3", "title": "The view opposite Scandinavia House on Park Avenue", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/128548778_1f1348abca_o.jpg", "secret": "1f1348abca", "media": "photo", "latitude": "0", "id": "128548778", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:47:15", "license": "3", "title": "The view opposite Scandinavia House on Park Avenue", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/128549085_f0461840d2_o.jpg", "secret": "f0461840d2", "media": "photo", "latitude": "0", "id": "128549085", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:47:17", "license": "3", "title": "The view opposite Scandinavia House on Park Avenue", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/128549315_166e0119ab_o.jpg", "secret": "166e0119ab", "media": "photo", "latitude": "0", "id": "128549315", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:47:32", "license": "3", "title": "Scandinavia House on Park Avenue", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/128549478_601448a3ab_o.jpg", "secret": "601448a3ab", "media": "photo", "latitude": "0", "id": "128549478", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:47:42", "license": "3", "title": "Scandinavia House on Park Avenue", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/128549699_3a0c694ee9_o.jpg", "secret": "3a0c694ee9", "media": "photo", "latitude": "0", "id": "128549699", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:47:46", "license": "3", "title": "Scandinavia House on Park Avenue", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/128549852_7bc52a2469_o.jpg", "secret": "7bc52a2469", "media": "photo", "latitude": "0", "id": "128549852", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:47:58", "license": "3", "title": "Scandinavia House entrance on Park Avenue", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/128543349_fb252b42bc_o.jpg", "secret": "fb252b42bc", "media": "photo", "latitude": "0", "id": "128543349", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:51:29", "license": "3", "title": "Stanford White Building", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/128550061_bf7c885547_o.jpg", "secret": "bf7c885547", "media": "photo", "latitude": "0", "id": "128550061", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:51:52", "license": "3", "title": "Murray Hill neighborhood (looking north)", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/128550301_cb76960f9d_o.jpg", "secret": "cb76960f9d", "media": "photo", "latitude": "0", "id": "128550301", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:52:04", "license": "3", "title": "Murray Hill neighborhood (looking south)", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/128550523_5e7a22a83c_o.jpg", "secret": "5e7a22a83c", "media": "photo", "latitude": "0", "id": "128550523", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:53:13", "license": "3", "title": "Murray Hill neighborhood (looking up at Empire State Building)", "text": "", "album_id": "72057594107162271", "longitude": "-73.985409", "url_o": "https://farm1.staticflickr.com/1/128550822_fc1ee3ac64_o.jpg", "secret": "fc1ee3ac64", "media": "photo", "latitude": "40.748443", "id": "128550822", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:55:11", "license": "3", "title": "Murray Hill neighborhood (35th Street)", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/128551083_ad35450442_o.jpg", "secret": "ad35450442", "media": "photo", "latitude": "0", "id": "128551083", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2007-04-14 02:55:15", "license": "3", "title": "Murray Hill neighborhood (35th Street)", "text": "", "album_id": "72057594107162271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/128551323_7e521b8266_o.jpg", "secret": "7e521b8266", "media": "photo", "latitude": "0", "id": "128551323", "tags": "nyc house hill scandinavia murray aea scandinaviahouse aneventapart aeanyc aeanyc2006 aeanyc06"}, {"datetaken": "2006-04-10 11:46:56", "license": "4", "title": "The Wizard", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/126576919_cb238f8842_o.jpg", "secret": "cb238f8842", "media": "photo", "latitude": "0", "id": "126576919", "tags": "wood stone spring cheshire wizard folklore carving well edge legend alderly"}, {"datetaken": "2006-04-10 11:53:40", "license": "4", "title": "Convenient", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/126577242_e0ecffe36f_o.jpg", "secret": "e0ecffe36f", "media": "photo", "latitude": "0", "id": "126577242", "tags": "wood spring cheshire logs edge creativecommons alderly"}, {"datetaken": "2006-04-10 11:55:34", "license": "4", "title": "Wild Coke", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/126577640_3cad6869b1_o.jpg", "secret": "3cad6869b1", "media": "photo", "latitude": "0", "id": "126577640", "tags": "wood tree spring cheshire coke can litter edge alderly"}, {"datetaken": "2006-04-10 11:57:29", "license": "4", "title": "Fair warning", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/126577837_95ba34e9a7_o.jpg", "secret": "95ba34e9a7", "media": "photo", "latitude": "0", "id": "126577837", "tags": "wood cliff signs sign danger warning spring cheshire edge alderly"}, {"datetaken": "2006-04-10 12:11:44", "license": "4", "title": "Zelda?", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/126578289_6b6bbd8a72_o.jpg", "secret": "6b6bbd8a72", "media": "photo", "latitude": "0", "id": "126578289", "tags": "wood woodland spring cheshire edge alderly"}, {"datetaken": "2006-04-10 12:15:33", "license": "4", "title": "Trees", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/126578659_21dc28cc6d_o.jpg", "secret": "21dc28cc6d", "media": "photo", "latitude": "0", "id": "126578659", "tags": "wood trees woodland spring cheshire edge alderly"}, {"datetaken": "2006-04-10 12:16:44", "license": "4", "title": "Interesting Rock Formation", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/126579005_a4dd3ae308_o.jpg", "secret": "a4dd3ae308", "media": "photo", "latitude": "0", "id": "126579005", "tags": "wood spring woods rocks cheshire mining edge geology alderly"}, {"datetaken": "2006-04-10 12:17:48", "license": "4", "title": "Witch's House", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/126579368_79a05b21cb_o.jpg", "secret": "79a05b21cb", "media": "photo", "latitude": "0", "id": "126579368", "tags": "wood spring cheshire folklore edge alderly"}, {"datetaken": "2006-04-10 12:17:58", "license": "4", "title": "At The Witch's House", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/126579718_2635094994_o.jpg", "secret": "2635094994", "media": "photo", "latitude": "0", "id": "126579718", "tags": "wood spring mine cheshire folklore edge geology alderly"}, {"datetaken": "2006-04-10 12:18:32", "license": "4", "title": "Firs and foremost", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/126580080_b89a24dfa6_o.jpg", "secret": "b89a24dfa6", "media": "photo", "latitude": "0", "id": "126580080", "tags": "wood trees woodland spring cheshire edge firs alderly"}, {"datetaken": "2006-04-10 12:19:29", "license": "4", "title": "Rocks and Trees", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/126580439_8ec214e352_o.jpg", "secret": "8ec214e352", "media": "photo", "latitude": "0", "id": "126580439", "tags": "wood woodland spring cheshire edge alderly"}, {"datetaken": "2006-04-10 12:20:40", "license": "4", "title": "Viewing The Peaks", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/126580690_ae39a1f9ec_o.jpg", "secret": "ae39a1f9ec", "media": "photo", "latitude": "0", "id": "126580690", "tags": "wood trees clouds spring cheshire hills edge alderly"}, {"datetaken": "2006-04-10 12:27:56", "license": "4", "title": "Me", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/126580976_1316a5705c_o.jpg", "secret": "1316a5705c", "media": "photo", "latitude": "0", "id": "126580976", "tags": "wood hat spring cheshire edge alderly birkinshaw"}, {"datetaken": "2006-04-10 12:28:17", "license": "4", "title": "Pining", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/126581353_f6fd94c8eb_o.jpg", "secret": "f6fd94c8eb", "media": "photo", "latitude": "0", "id": "126581353", "tags": "wood trees spring rocks cheshire edge geology alderly"}, {"datetaken": "2006-04-10 12:28:37", "license": "4", "title": "The View Ahead", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/126581514_6da51941fb_o.jpg", "secret": "6da51941fb", "media": "photo", "latitude": "0", "id": "126581514", "tags": "wood hat manchester spring cheshire edge tilly alderly probablythebestphotointheworld"}, {"datetaken": "2006-04-10 12:31:58", "license": "4", "title": "Anyone home?", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/126581878_1bf8d91cdb_o.jpg", "secret": "1bf8d91cdb", "media": "photo", "latitude": "0", "id": "126581878", "tags": "wood spring cheshire tunnel folklore edge cave alderly"}, {"datetaken": "2006-04-10 12:32:48", "license": "4", "title": "Hard Times in Hobbiton", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/126582214_082f43967e_o.jpg", "secret": "082f43967e", "media": "photo", "latitude": "0", "id": "126582214", "tags": "wood woodland spring cheshire tunnel edge cave burrow alderly"}, {"datetaken": "2006-04-10 12:34:40", "license": "4", "title": "Green buds", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/126582391_de7493a07f_o.jpg", "secret": "de7493a07f", "media": "photo", "latitude": "0", "id": "126582391", "tags": "wood trees leaves spring cheshire edge buds alderly"}, {"datetaken": "2006-04-10 12:35:01", "license": "4", "title": "Blue Buds", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/126582547_97d54114cb_o.jpg", "secret": "97d54114cb", "media": "photo", "latitude": "0", "id": "126582547", "tags": "wood leaves spring cheshire edge buds alderly"}, {"datetaken": "2006-04-10 12:37:06", "license": "4", "title": "Fir", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/126582843_7227374dce_o.jpg", "secret": "7227374dce", "media": "photo", "latitude": "0", "id": "126582843", "tags": "wood tree leaves spring cheshire evergreen edge fir alderly"}, {"datetaken": "2006-04-10 12:38:05", "license": "4", "title": "I'm not a number, I'm a tree, man", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/126583211_2487492051_o.jpg", "secret": "2487492051", "media": "photo", "latitude": "0", "id": "126583211", "tags": "wood tree spring cheshire number bark edge alderly"}, {"datetaken": "2006-04-10 12:38:30", "license": "4", "title": "Last season's colours", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/126583482_078dda6ded_o.jpg", "secret": "078dda6ded", "media": "photo", "latitude": "0", "id": "126583482", "tags": "wood leaves spring cheshire edge alderly"}, {"datetaken": "2006-04-10 12:38:58", "license": "4", "title": "Tree Texture", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/126583831_8ecfdccd5a_o.jpg", "secret": "8ecfdccd5a", "media": "photo", "latitude": "0", "id": "126583831", "tags": "wood tree texture spring cheshire bark edge alderly"}, {"datetaken": "2006-04-10 12:39:26", "license": "4", "title": "That's no moon", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/126584022_c6c6b4396d_o.jpg", "secret": "c6c6b4396d", "media": "photo", "latitude": "0", "id": "126584022", "tags": "wood tree spring cheshire bark edge alderly"}, {"datetaken": "2006-04-10 12:39:54", "license": "4", "title": "Message from 1919", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/126584456_cb04d139b0_o.jpg", "secret": "cb04d139b0", "media": "photo", "latitude": "0", "id": "126584456", "tags": "wood tree spring cheshire carving bark edge graffitti alderly"}, {"datetaken": "2006-04-10 12:40:14", "license": "4", "title": "I'm barking", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/126584901_70f4e1f5bd_o.jpg", "secret": "70f4e1f5bd", "media": "photo", "latitude": "0", "id": "126584901", "tags": "wood tree spring cheshire bark edge alderly"}, {"datetaken": "2006-04-10 12:46:22", "license": "4", "title": "Big Nest", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/126585352_5fc893521b_o.jpg", "secret": "5fc893521b", "media": "photo", "latitude": "0", "id": "126585352", "tags": "wood trees birds woodland spring cheshire nest edge alderly"}, {"datetaken": "2006-04-10 13:45:18", "license": "4", "title": "Powder Store", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/126585908_e3fb09cec9_o.jpg", "secret": "e3fb09cec9", "media": "photo", "latitude": "0", "id": "126585908", "tags": "wood cliff spring cheshire mining edge explosives alderly"}, {"datetaken": "2006-04-10 13:46:51", "license": "4", "title": "Secret Garden", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/126586336_158d6beb85_o.jpg", "secret": "158d6beb85", "media": "photo", "latitude": "0", "id": "126586336", "tags": "wood woodland spring cheshire edge quarry alderly"}, {"datetaken": "2006-04-10 13:49:39", "license": "4", "title": "Goblin's gold", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/126586630_797d06fb14_o.jpg", "secret": "797d06fb14", "media": "photo", "latitude": "0", "id": "126586630", "tags": "wood moss spring cheshire tunnel folklore edge fungus creativecommons caving miners alderly"}, {"datetaken": "2006-04-10 14:00:28", "license": "4", "title": "A Very Odd Door", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/126586959_fbc6030fc7_o.jpg", "secret": "fbc6030fc7", "media": "photo", "latitude": "0", "id": "126586959", "tags": "door wood strange woodland spring cheshire edge safe alderly"}, {"datetaken": "2006-04-10 14:01:02", "license": "4", "title": "Barclays Bank Night Safe", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/126587299_0fdc6681bb_o.jpg", "secret": "0fdc6681bb", "media": "photo", "latitude": "0", "id": "126587299", "tags": "door wood strange woodland spring cheshire bank odd edge barclays alderly"}, {"datetaken": "2006-04-10 14:05:42", "license": "4", "title": "Squirrel", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/126587576_b7c77b80df_o.jpg", "secret": "b7c77b80df", "media": "photo", "latitude": "0", "id": "126587576", "tags": "wood spring squirrel cheshire edge alderly"}, {"datetaken": "2006-04-10 14:14:48", "license": "4", "title": "Those Victorians!", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/126587892_69863d1b27_o.jpg", "secret": "69863d1b27", "media": "photo", "latitude": "0", "id": "126587892", "tags": "wood stone woodland circle spring cheshire victorian edge folly alderly"}, {"datetaken": "2006-04-10 14:35:00", "license": "4", "title": "Post-Industrial Strata", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/126588506_20631e19e7_o.jpg", "secret": "20631e19e7", "media": "photo", "latitude": "0", "id": "126588506", "tags": "wood city tower skyline clouds landscape manchester spring cheshire hilton hills edge beetham hiltontower beethamtower alderly 123miles"}, {"datetaken": "2006-04-10 14:37:07", "license": "4", "title": "Sea View of White City", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/126589029_0bb443556a_o.jpg", "secret": "0bb443556a", "media": "photo", "latitude": "0", "id": "126589029", "tags": "wood city sky clouds manchester spring cheshire edge bluegreen alderly"}, {"datetaken": "2006-04-10 14:46:57", "license": "4", "title": "Hungry Tree", "text": "", "album_id": "72057594103927268", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/126590203_5b1cbad34f_o.jpg", "secret": "5b1cbad34f", "media": "photo", "latitude": "0", "id": "126590203", "tags": "wood tree spring cheshire edge alderly"}, {"datetaken": "2006-05-13 07:15:18", "license": "2", "title": "Hillside", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/146139175_adc354cd36_o.jpg", "secret": "adc354cd36", "media": "photo", "latitude": "0", "id": "146139175", "tags": "canada river newbrunswick hillsborough petitcodiac"}, {"datetaken": "2006-05-13 07:15:18", "license": "2", "title": "Seeds", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/146139174_b464b6f828_o.jpg", "secret": "b464b6f828", "media": "photo", "latitude": "0", "id": "146139174", "tags": "canada newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:15:18", "license": "2", "title": "River", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/146139173_7fdce73cf3_o.jpg", "secret": "7fdce73cf3", "media": "photo", "latitude": "0", "id": "146139173", "tags": "canada river newbrunswick hillsborough petitcodiac"}, {"datetaken": "2006-05-13 07:15:18", "license": "2", "title": "Shed in trees", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/146139172_1229f676db_o.jpg", "secret": "1229f676db", "media": "photo", "latitude": "0", "id": "146139172", "tags": "canada shed newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:15:18", "license": "2", "title": "Leaning Fence", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/146139171_59674c16b8_o.jpg", "secret": "59674c16b8", "media": "photo", "latitude": "0", "id": "146139171", "tags": "canada fence newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:15:18", "license": "2", "title": "Garage and Shed", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/146139170_e4454b2503_o.jpg", "secret": "e4454b2503", "media": "photo", "latitude": "0", "id": "146139170", "tags": "canada shed newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:29:24", "license": "2", "title": "Window", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/146147295_8462f0e302_o.jpg", "secret": "8462f0e302", "media": "photo", "latitude": "0", "id": "146147295", "tags": "canada window newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:29:24", "license": "2", "title": "2312", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/146147294_3c9ccc24d9_o.jpg", "secret": "3c9ccc24d9", "media": "photo", "latitude": "0", "id": "146147294", "tags": "canada newbrunswick abandonedhouse hillsborough"}, {"datetaken": "2006-05-13 07:29:24", "license": "2", "title": "Shed", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/146147291_fd411ece05_o.jpg", "secret": "fd411ece05", "media": "photo", "latitude": "0", "id": "146147291", "tags": "canada newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:29:24", "license": "2", "title": "Wagon", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/146147288_656bbc9a3a_o.jpg", "secret": "656bbc9a3a", "media": "photo", "latitude": "0", "id": "146147288", "tags": "canada wagon newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:29:24", "license": "2", "title": "Iron Gate", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/146147287_86e4a86871_o.jpg", "secret": "86e4a86871", "media": "photo", "latitude": "0", "id": "146147287", "tags": "canada gate newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:29:24", "license": "2", "title": "Hillside", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/146147284_896ded20cf_o.jpg", "secret": "896ded20cf", "media": "photo", "latitude": "0", "id": "146147284", "tags": "canada newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:39:13", "license": "2", "title": "Steeve's House", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/146152943_73e948ca8f_o.jpg", "secret": "73e948ca8f", "media": "photo", "latitude": "0", "id": "146152943", "tags": "canada newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:39:13", "license": "2", "title": "Round Tower", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/146152942_ced7634379_o.jpg", "secret": "ced7634379", "media": "photo", "latitude": "0", "id": "146152942", "tags": "canada newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:39:13", "license": "2", "title": "Square House", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/146152941_5dcedb171d_o.jpg", "secret": "5dcedb171d", "media": "photo", "latitude": "0", "id": "146152941", "tags": "canada newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:39:13", "license": "2", "title": "Laundry", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/146152940_34d79b226e_o.jpg", "secret": "34d79b226e", "media": "photo", "latitude": "0", "id": "146152940", "tags": "canada newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:39:13", "license": "2", "title": "Iron Fish", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/146152939_e1ca89d05b_o.jpg", "secret": "e1ca89d05b", "media": "photo", "latitude": "0", "id": "146152939", "tags": "canada newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:39:13", "license": "2", "title": "Forest Railway", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/146152938_c86f83dcb5_o.jpg", "secret": "c86f83dcb5", "media": "photo", "latitude": "0", "id": "146152938", "tags": "canada railway newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:51:04", "license": "2", "title": "Church and Cemetary", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/146160073_baaa46f8d2_o.jpg", "secret": "baaa46f8d2", "media": "photo", "latitude": "0", "id": "146160073", "tags": "canada church cemetary newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:51:04", "license": "2", "title": "Birdbath", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/146160072_440f237a65_o.jpg", "secret": "440f237a65", "media": "photo", "latitude": "0", "id": "146160072", "tags": "canada birdbath newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:51:04", "license": "2", "title": "Yard Sale", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/146160071_546767e790_o.jpg", "secret": "546767e790", "media": "photo", "latitude": "0", "id": "146160071", "tags": "canada newbrunswick yardsale hillsborough"}, {"datetaken": "2006-05-13 07:51:04", "license": "2", "title": "Hillsborough Post Office", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/146160069_b2e6a5a48c_o.jpg", "secret": "b2e6a5a48c", "media": "photo", "latitude": "0", "id": "146160069", "tags": "canada newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:51:04", "license": "2", "title": "Tiny Flowers", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/146160068_18ebb90bce_o.jpg", "secret": "18ebb90bce", "media": "photo", "latitude": "0", "id": "146160068", "tags": "canada newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:51:04", "license": "2", "title": "Trees", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/146160067_d8989cb322_o.jpg", "secret": "d8989cb322", "media": "photo", "latitude": "0", "id": "146160067", "tags": "canada newbrunswick hillsborough"}, {"datetaken": "2006-05-13 07:57:56", "license": "2", "title": "Forest Footbridge", "text": "", "album_id": "72057594134422604", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/146164430_5878f0b1e9_o.jpg", "secret": "5878f0b1e9", "media": "photo", "latitude": "0", "id": "146164430", "tags": "bridge canada newbrunswick hillsborough"}, {"datetaken": "2005-10-05 12:42:19", "license": "5", "title": "New between the old", "text": "", "album_id": "72057594140720580", "longitude": "144.961992", "url_o": "https://farm1.staticflickr.com/51/150229326_81c8ae5951_o.jpg", "secret": "81c8ae5951", "media": "photo", "latitude": "-37.813407", "id": "150229326", "tags": ""}, {"datetaken": "2005-10-05 12:44:47", "license": "5", "title": "Telephone exchange", "text": "", "album_id": "72057594140720580", "longitude": "144.960597", "url_o": "https://farm1.staticflickr.com/49/150229452_6e12695d81_o.jpg", "secret": "6e12695d81", "media": "photo", "latitude": "-37.813954", "id": "150229452", "tags": ""}, {"datetaken": "2005-10-05 12:44:54", "license": "5", "title": "Reflection", "text": "", "album_id": "72057594140720580", "longitude": "144.960597", "url_o": "https://farm1.staticflickr.com/53/150229792_f95b39703e_o.jpg", "secret": "f95b39703e", "media": "photo", "latitude": "-37.813954", "id": "150229792", "tags": ""}, {"datetaken": "2005-10-05 14:17:59", "license": "5", "title": "148_4860", "text": "", "album_id": "72057594140720580", "longitude": "144.960597", "url_o": "https://farm1.staticflickr.com/49/150230009_70aa62c9a0_o.jpg", "secret": "70aa62c9a0", "media": "photo", "latitude": "-37.813954", "id": "150230009", "tags": ""}, {"datetaken": "2005-10-06 10:24:04", "license": "5", "title": "Melbourne central", "text": "", "album_id": "72057594140720580", "longitude": "144.960597", "url_o": "https://farm1.staticflickr.com/44/150230104_a8f535871d_o.jpg", "secret": "a8f535871d", "media": "photo", "latitude": "-37.813954", "id": "150230104", "tags": ""}, {"datetaken": "2005-10-06 12:27:42", "license": "5", "title": "148_4890", "text": "", "album_id": "72057594140720580", "longitude": "144.960823", "url_o": "https://farm1.staticflickr.com/56/150230420_af2ae989ca_o.jpg", "secret": "af2ae989ca", "media": "photo", "latitude": "-37.815293", "id": "150230420", "tags": ""}, {"datetaken": "2005-10-06 12:29:42", "license": "5", "title": "148_4892", "text": "", "album_id": "72057594140720580", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/150230550_51324c67b1_o.jpg", "secret": "51324c67b1", "media": "photo", "latitude": "0", "id": "150230550", "tags": ""}, {"datetaken": "2005-10-06 12:30:50", "license": "5", "title": "148_4894", "text": "", "album_id": "72057594140720580", "longitude": "144.961477", "url_o": "https://farm1.staticflickr.com/47/150230893_58afa154be_o.jpg", "secret": "58afa154be", "media": "photo", "latitude": "-37.816984", "id": "150230893", "tags": ""}, {"datetaken": "2005-10-06 12:45:11", "license": "5", "title": "148_4896", "text": "", "album_id": "72057594140720580", "longitude": "144.964030", "url_o": "https://farm1.staticflickr.com/46/150231004_aa0da19582_o.jpg", "secret": "aa0da19582", "media": "photo", "latitude": "-37.815903", "id": "150231004", "tags": ""}, {"datetaken": "2005-10-06 14:09:25", "license": "5", "title": "Old amonst the new", "text": "", "album_id": "72057594140720580", "longitude": "144.960597", "url_o": "https://farm1.staticflickr.com/48/150231116_72bdb1a420_o.jpg", "secret": "72bdb1a420", "media": "photo", "latitude": "-37.813954", "id": "150231116", "tags": ""}, {"datetaken": "2006-05-24 00:26:08", "license": "2", "title": "Dupont Circle", "text": "", "album_id": "72157594145992252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/153758853_a53d71ef46_o.jpg", "secret": "a53d71ef46", "media": "photo", "latitude": "0", "id": "153758853", "tags": "washington dupont"}, {"datetaken": "2006-05-24 00:27:48", "license": "2", "title": "Best idea ever", "text": "", "album_id": "72157594145992252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/153758583_00b7ab16cd_o.jpg", "secret": "00b7ab16cd", "media": "photo", "latitude": "0", "id": "153758583", "tags": "washington streetsign numbers"}, {"datetaken": "2006-05-24 01:25:02", "license": "2", "title": "Pennsylvania Ave.", "text": "", "album_id": "72157594145992252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/153758388_021f3c1e71_o.jpg", "secret": "021f3c1e71", "media": "photo", "latitude": "0", "id": "153758388", "tags": "washington pennsylvania streetsign"}, {"datetaken": "2006-05-24 01:25:27", "license": "2", "title": "The World Bank", "text": "", "album_id": "72157594145992252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/153758214_41d17e8c5b_o.jpg", "secret": "41d17e8c5b", "media": "photo", "latitude": "0", "id": "153758214", "tags": "washington worldbank"}, {"datetaken": "2006-05-24 02:10:37", "license": "2", "title": "Renwick Gallery", "text": "", "album_id": "72157594145992252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/153757930_ddba22c8fb_o.jpg", "secret": "ddba22c8fb", "media": "photo", "latitude": "0", "id": "153757930", "tags": "washington gallery americangothic"}, {"datetaken": "2006-05-24 02:16:07", "license": "2", "title": "The White House", "text": "", "album_id": "72157594145992252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/153757759_5d6f781903_o.jpg", "secret": "5d6f781903", "media": "photo", "latitude": "0", "id": "153757759", "tags": "washington whitehouse"}, {"datetaken": "2006-05-24 02:16:22", "license": "2", "title": "Metaphotography", "text": "", "album_id": "72157594145992252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/153757569_50e13d2f99_o.jpg", "secret": "50e13d2f99", "media": "photo", "latitude": "0", "id": "153757569", "tags": "washington meta whitehouse tourists"}, {"datetaken": "2006-05-24 02:20:01", "license": "2", "title": "The Treasury Building", "text": "", "album_id": "72157594145992252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/153757314_6fccfcf001_o.jpg", "secret": "6fccfcf001", "media": "photo", "latitude": "0", "id": "153757314", "tags": "architecture washington treasury"}, {"datetaken": "2006-05-24 02:26:01", "license": "2", "title": "The Capitol", "text": "", "album_id": "72157594145992252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/153757131_0138cfce3b_o.jpg", "secret": "0138cfce3b", "media": "photo", "latitude": "0", "id": "153757131", "tags": "washington capitol"}, {"datetaken": "2006-05-24 02:28:11", "license": "2", "title": "Eagle sculpture in Pershing Park", "text": "", "album_id": "72157594145992252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/153756823_23247b9695_o.jpg", "secret": "23247b9695", "media": "photo", "latitude": "0", "id": "153756823", "tags": "sculpture statue bronze washington eagle pershing"}, {"datetaken": "2006-05-24 02:48:02", "license": "2", "title": "The Ellipse", "text": "", "album_id": "72157594145992252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/153756489_30512f4668_o.jpg", "secret": "30512f4668", "media": "photo", "latitude": "0", "id": "153756489", "tags": "washington ellipse washingtonmonument"}, {"datetaken": "2006-05-24 02:54:35", "license": "2", "title": "The phallic symbol", "text": "", "album_id": "72157594145992252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/153756238_8ad0809195_o.jpg", "secret": "8ad0809195", "media": "photo", "latitude": "0", "id": "153756238", "tags": "washington washingtonmonument"}, {"datetaken": "2006-05-24 03:02:16", "license": "2", "title": "Sunlight", "text": "", "album_id": "72157594145992252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/153755770_32c91e0b84_o.jpg", "secret": "32c91e0b84", "media": "photo", "latitude": "0", "id": "153755770", "tags": "sun washington washingtonmonument"}, {"datetaken": "2006-05-24 03:03:53", "license": "2", "title": "The Lincoln Memorial", "text": "", "album_id": "72157594145992252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/153755702_be818dd81c_o.jpg", "secret": "be818dd81c", "media": "photo", "latitude": "0", "id": "153755702", "tags": "usa monument washington flag nationalmall"}, {"datetaken": "2006-05-24 03:04:34", "license": "2", "title": "Springtime", "text": "", "album_id": "72157594145992252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/153755577_ef1edcbb4c_o.jpg", "secret": "ef1edcbb4c", "media": "photo", "latitude": "0", "id": "153755577", "tags": "washington lincoln nationalmall"}, {"datetaken": "2005-09-15 03:48:09", "license": "3", "title": "Greece: Korinthiakos Kolpos", "text": "", "album_id": "72157594146094534", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/153824941_c613487f03_o.jpg", "secret": "c613487f03", "media": "photo", "latitude": "0", "id": "153824941", "tags": "sea lake europe hellas greece parnassos \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 korinthiakos kolpos mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 hellenicrepublic mtparnassos mountparnassos mtparnassus korinthiakoskolpos korinthiakossea"}, {"datetaken": "2005-09-15 03:49:43", "license": "3", "title": "Greece: Korinthiakos Kolpos", "text": "", "album_id": "72157594146094534", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/153824837_4667df27a5_o.jpg", "secret": "4667df27a5", "media": "photo", "latitude": "0", "id": "153824837", "tags": "sea lake europe hellas greece parnassos \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 korinthiakos kolpos mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 hellenicrepublic mtparnassos mountparnassos mtparnassus korinthiakoskolpos korinthiakossea"}, {"datetaken": "2005-09-15 05:01:12", "license": "3", "title": "Greece: En Route to Delphi - Mount Parnassus", "text": "", "album_id": "72157594146094534", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/153825066_8d39f3348f_o.jpg", "secret": "8d39f3348f", "media": "photo", "latitude": "0", "id": "153825066", "tags": "europe hellas greece parnassos \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 hellenicrepublic mtparnassos mountparnassos mtparnassus"}, {"datetaken": "2005-09-15 05:44:51", "license": "3", "title": "Greece - Delphi: Museum - Sphinx of Naxos", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/64/153820819_3600876026_o.jpg", "secret": "3600876026", "media": "photo", "latitude": "38.480940", "id": "153820819", "tags": "sphinx museum oracle ruins europe delphi hellas unescoworldheritagesite unesco worldheritagesite greece sphynx mythology unescoworldheritage greekmythology naxos parnassos worldheritage ancientgreece archaeologicalsite \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 \u0394\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic oracleatdelphi delphimusem delphous mtparnassos mountparnassos mtparnassus sphinxofnaxos androsphinx"}, {"datetaken": "2005-09-15 06:37:13", "license": "3", "title": "Greece - Delphi: Sacred Way", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/46/153821070_62eab77b7e_o.jpg", "secret": "62eab77b7e", "media": "photo", "latitude": "38.480940", "id": "153821070", "tags": "oracle ruins europe delphi hellas unescoworldheritagesite unesco worldheritagesite greece unescoworldheritage parnassos worldheritage ancientgreece sacredway archaeologicalsite \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 \u0394\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic oracleatdelphi delphous mtparnassos mountparnassos mtparnassus"}, {"datetaken": "2005-09-15 06:39:44", "license": "3", "title": "Greece - Delphi: Tholos", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/76/153824196_24900434c0_o.jpg", "secret": "24900434c0", "media": "photo", "latitude": "38.480940", "id": "153824196", "tags": "oracle ruins europe delphi hellas unescoworldheritagesite unesco worldheritagesite greece unescoworldheritage parnassos worldheritage ancientgreece tholos archaeologicalsite \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 \u0394\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic oracleatdelphi delphous mtparnassos mountparnassos mtparnassus athenapronaia"}, {"datetaken": "2005-09-15 06:44:12", "license": "3", "title": "Greece - Delphi: Athenian Treasury", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/72/153820393_333c384d04_o.jpg", "secret": "333c384d04", "media": "photo", "latitude": "38.480940", "id": "153820393", "tags": "oracle ruins europe treasury delphi hellas unescoworldheritagesite unesco worldheritagesite greece unescoworldheritage parnassos worldheritage ancientgreece archaeologicalsite \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus treasuryofathens \u0395\u03bb\u03bb\u03ac\u03c2 \u0394\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic atheniantreasury oracleatdelphi delphous mtparnassos mountparnassos mtparnassus"}, {"datetaken": "2005-09-15 06:47:35", "license": "3", "title": "Greece - Delphi: Temple of Apollo", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/55/153822110_71dc826243_o.jpg", "secret": "71dc826243", "media": "photo", "latitude": "38.480940", "id": "153822110", "tags": "wall oracle ruins europe delphi hellas unescoworldheritagesite unesco worldheritagesite greece mythology unescoworldheritage greekmythology parnassos worldheritage ancientgreece templeofapollo archaeologicalsite \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 \u0394\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic oracleatdelphi delphous mtparnassos mountparnassos mtparnassus polygonalwall"}, {"datetaken": "2005-09-15 06:49:19", "license": "3", "title": "Greece - Delphi: Stoa of the Athenians, Polygonal Wall and Temple of Apollo", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/65/153821680_c99959b0d1_o.jpg", "secret": "c99959b0d1", "media": "photo", "latitude": "38.480940", "id": "153821680", "tags": "wall oracle ruins europe delphi hellas unescoworldheritagesite unesco worldheritagesite greece column unescoworldheritage parnassos worldheritage ionic ancientgreece stoa archaeologicalsite \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 stoaoftheathenians mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 \u0394\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic oracleatdelphi delphous mtparnassos mountparnassos mtparnassus polygonalwall"}, {"datetaken": "2005-09-15 06:52:04", "license": "3", "title": "Greece - Delphi: Temple of Apollo and Altar of Chians", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/45/153822770_d069d7fd88_o.jpg", "secret": "d069d7fd88", "media": "photo", "latitude": "38.480940", "id": "153822770", "tags": "oracle ruins europe delphi hellas unescoworldheritagesite unesco worldheritagesite greece mythology unescoworldheritage greekmythology parnassos worldheritage ancientgreece templeofapollo archaeologicalsite \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 \u0394\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic oracleatdelphi delphous mtparnassos mountparnassos mtparnassus altarofthechians"}, {"datetaken": "2005-09-15 06:52:25", "license": "3", "title": "Delphi: Temple of Apollo and Altar of the Chians", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/53/153822577_3194e20df1_o.jpg", "secret": "3194e20df1", "media": "photo", "latitude": "38.480940", "id": "153822577", "tags": "oracle ruins europe delphi hellas unescoworldheritagesite unesco worldheritagesite greece mythology unescoworldheritage greekmythology parnassos worldheritage ancientgreece templeofapollo archaeologicalsite \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 \u0394\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic oracleatdelphi delphous mtparnassos mountparnassos mtparnassus altarofthechians"}, {"datetaken": "2005-09-15 06:57:31", "license": "3", "title": "Greece - Delphi: Temple of Apollo and Altar of the Chians", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/47/153822385_e02dc900c5_o.jpg", "secret": "e02dc900c5", "media": "photo", "latitude": "38.480940", "id": "153822385", "tags": "oracle ruins europe delphi hellas unescoworldheritagesite unesco worldheritagesite greece mythology unescoworldheritage greekmythology parnassos worldheritage ancientgreece templeofapollo archaeologicalsite \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 \u0394\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic oracleatdelphi delphous mtparnassos mountparnassos mtparnassus altarofthechians"}, {"datetaken": "2005-09-15 06:59:46", "license": "3", "title": "Greece - Delphi: Temple of Apollo", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/51/153822251_99858a08c9_o.jpg", "secret": "99858a08c9", "media": "photo", "latitude": "38.480940", "id": "153822251", "tags": "oracle ruins europe delphi hellas unescoworldheritagesite unesco worldheritagesite greece mythology unescoworldheritage greekmythology parnassos worldheritage ancientgreece templeofapollo myflickr archaeologicalsite \u03b5\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus \u03b5\u03bb\u03bb\u03ac\u03c3 \u03b4\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic oracleatdelphi delphous mtparnassos mountparnassos mtparnassus"}, {"datetaken": "2005-09-15 07:03:33", "license": "3", "title": "Greece - Delphi: Theatre", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/69/153824049_76102f3514_o.jpg", "secret": "76102f3514", "media": "photo", "latitude": "38.480940", "id": "153824049", "tags": "oracle ruins europe theater theatre delphi hellas unescoworldheritagesite unesco worldheritagesite greece unescoworldheritage parnassos worldheritage ancientgreece archaeologicalsite \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 \u0394\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic oracleatdelphi delphous mtparnassos mountparnassos mtparnassus"}, {"datetaken": "2005-09-15 07:07:19", "license": "3", "title": "Greece - Delphi: Theatre", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/69/153823676_b7f3a82acb_o.jpg", "secret": "b7f3a82acb", "media": "photo", "latitude": "38.480940", "id": "153823676", "tags": "oracle ruins europe theater theatre delphi hellas unescoworldheritagesite unesco worldheritagesite greece unescoworldheritage parnassos worldheritage ancientgreece archaeologicalsite \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 \u0394\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic oracleatdelphi delphous mtparnassos mountparnassos mtparnassus"}, {"datetaken": "2005-09-15 07:18:22", "license": "3", "title": "Greece - Delphi: Stadion - Starting Line", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/49/153821501_b7c3909913_o.jpg", "secret": "b7c3909913", "media": "photo", "latitude": "38.480940", "id": "153821501", "tags": "oracle ruins europe stadium delphi hellas unescoworldheritagesite unesco worldheritagesite greece stadion mythology unescoworldheritage greekmythology parnassos worldheritage ancientgreece startingline stadia archaeologicalsite \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 \u0394\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic oracleatdelphi delphous mtparnassos mountparnassos mtparnassus pythiangames"}, {"datetaken": "2005-09-15 07:19:19", "license": "3", "title": "Greece - Delphi: Stadion", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/65/153821317_5d750375ea_o.jpg", "secret": "5d750375ea", "media": "photo", "latitude": "38.480940", "id": "153821317", "tags": "oracle ruins europe stadium delphi hellas unescoworldheritagesite unesco worldheritagesite greece stadion mythology unescoworldheritage greekmythology parnassos worldheritage ancientgreece stadia archaeologicalsite \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 \u0394\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic oracleatdelphi delphous mtparnassos mountparnassos mtparnassus pythiangames"}, {"datetaken": "2005-09-15 07:21:39", "license": "3", "title": "Greece - Delphi: Stadion", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/89/206801608_2b0d856642_o.jpg", "secret": "2b0d856642", "media": "photo", "latitude": "38.480940", "id": "206801608", "tags": "oracle ruins europe stadium delphi unescoworldheritagesite unesco worldheritagesite greece stadion mythology unescoworldheritage greekmythology parnassos worldheritage ancientgreece stadia archaeologicalsite mountparnassus oracleatdelphi delphous mtparnassos mountparnassos mtparnassus pythiangames"}, {"datetaken": "2005-09-15 07:25:10", "license": "3", "title": "Greece - Delphi: Theatre", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/57/153823330_9706e36b11_o.jpg", "secret": "9706e36b11", "media": "photo", "latitude": "38.480940", "id": "153823330", "tags": "oracle ruins europe theater theatre delphi hellas unescoworldheritagesite unesco worldheritagesite greece unescoworldheritage parnassos worldheritage ancientgreece archaeologicalsite \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 \u0394\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic oracleatdelphi delphous mtparnassos mountparnassos mtparnassus"}, {"datetaken": "2005-09-15 07:25:20", "license": "3", "title": "Greece - Delphi: Theater", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/62/153823165_1490115e27_o.jpg", "secret": "1490115e27", "media": "photo", "latitude": "38.480940", "id": "153823165", "tags": "oracle ruins europe theater theatre delphi hellas unescoworldheritagesite unesco worldheritagesite greece unescoworldheritage parnassos worldheritage ancientgreece archaeologicalsite \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 \u0394\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic oracleatdelphi delphous mtparnassos mountparnassos mtparnassus"}, {"datetaken": "2005-09-15 07:32:20", "license": "3", "title": "Greece - Delphi: Cat", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/61/153820632_2c2bbe450f_o.jpg", "secret": "2c2bbe450f", "media": "photo", "latitude": "38.480940", "id": "153820632", "tags": "cat oracle europe delphi hellas unescoworldheritagesite unesco worldheritagesite greece unescoworldheritage animalplanet parnassos worldheritage archaeologicalsite \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 \u0394\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic oracleatdelphi delphous mtparnassos mountparnassos mtparnassus"}, {"datetaken": "2005-09-15 07:32:25", "license": "3", "title": "Greece - Delphi: Cat", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/66/153820516_62e8843a3b_o.jpg", "secret": "62e8843a3b", "media": "photo", "latitude": "38.480940", "id": "153820516", "tags": "cat oracle europe delphi hellas unescoworldheritagesite unesco worldheritagesite greece unescoworldheritage animalplanet parnassos worldheritage archaeologicalsite \u0395\u03bb\u03bb\u03ac\u03b4\u03b1 mountparnassus \u0395\u03bb\u03bb\u03ac\u03c2 \u0394\u03b5\u03bb\u03c6\u03bf\u03af hellenicrepublic oracleatdelphi delphous mtparnassos mountparnassos mtparnassus"}, {"datetaken": "2005-09-15 07:35:56", "license": "3", "title": "Greece - Delphi: Protected World Heritage Site", "text": "", "album_id": "72157594146094534", "longitude": "22.488670", "url_o": "https://farm1.staticflickr.com/75/206801225_05042c3178_o.jpg", "secret": "05042c3178", "media": "photo", "latitude": "38.480940", "id": "206801225", "tags": "oracle ruins europe delphi unescoworldheritagesite unesco worldheritagesite greece unescoworldheritage parnassos worldheritage ancientgreece archaeologicalsite mountparnassus oracleatdelphi delphous mtparnassos mountparnassos mtparnassus"}, {"datetaken": "2005-09-15 09:23:40", "license": "3", "title": "Greece - Arachova: Flokati Rugs", "text": "", "album_id": "72157594146094534", "longitude": "22.578620", "url_o": "https://farm1.staticflickr.com/71/153824573_30df7cc12c_o.jpg", "secret": "30df7cc12c", "media": "photo", "latitude": "38.482351", "id": "153824573", "tags": "europe greece rug rugs arachova parnassos flokati flokatirug arahova mountparnassus flokatirugs mtparnassos mountparnassos mtparnassus \u0391\u03c1\u03ac\u03c7\u03c9\u03b2\u03b1 flokates ar\u00e1khova"}, {"datetaken": "2005-09-15 09:30:46", "license": "3", "title": "Greece - Arachova", "text": "", "album_id": "72157594146094534", "longitude": "22.578620", "url_o": "https://farm1.staticflickr.com/51/153824725_eb5419b328_o.jpg", "secret": "eb5419b328", "media": "photo", "latitude": "38.482351", "id": "153824725", "tags": "europe arachova parnassos arahova mountparnassus mtparnassos mountparnassos mtparnassus \u0391\u03c1\u03ac\u03c7\u03c9\u03b2\u03b1 ar\u00e1khova"}, {"datetaken": "2006-01-29 09:00:20", "license": "3", "title": "View of entrance area", "text": "", "album_id": "72157594149943607", "longitude": "139.691728", "url_o": "https://farm1.staticflickr.com/51/156529676_2d3d7fd205_o.jpg", "secret": "2d3d7fd205", "media": "photo", "latitude": "35.565714", "id": "156529676", "tags": "japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e templegate canonefs1785mmf456isusm \u6b66\u8535\u65b0\u7530 \u65b0\u7530\u795e\u793e geo:lon=139691728 geo:lat=35565714"}, {"datetaken": "2006-01-29 09:00:47", "license": "3", "title": "Entrance", "text": "", "album_id": "72157594149943607", "longitude": "139.691704", "url_o": "https://farm1.staticflickr.com/73/156527897_4557768c7c_o.jpg", "secret": "4557768c7c", "media": "photo", "latitude": "35.565733", "id": "156527897", "tags": "building japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e templegate housebuilding canonefs1785mmf456isusm \u6b66\u8535\u65b0\u7530 \u65b0\u7530\u795e\u793e geo:lat=35565733 geo:lon=139691704"}, {"datetaken": "2006-01-29 09:01:16", "license": "3", "title": "Lantern and Gate", "text": "", "album_id": "72157594149943607", "longitude": "139.691741", "url_o": "https://farm1.staticflickr.com/55/156529817_95cd2e020a_o.jpg", "secret": "95cd2e020a", "media": "photo", "latitude": "35.565772", "id": "156529817", "tags": "japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e templegate canonefs1785mmf456isusm \u6b66\u8535\u65b0\u7530 \u65b0\u7530\u795e\u793e geo:lon=139691741 geo:lat=35565772"}, {"datetaken": "2006-01-29 09:01:50", "license": "3", "title": "Main Building", "text": "", "album_id": "72157594149943607", "longitude": "139.691527", "url_o": "https://farm1.staticflickr.com/57/156528019_18415121cb_o.jpg", "secret": "18415121cb", "media": "photo", "latitude": "35.565764", "id": "156528019", "tags": "building japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e housebuilding stonefigures canonefs1785mmf456isusm \u6b66\u8535\u65b0\u7530 \u65b0\u7530\u795e\u793e geo:lat=35565764 geo:lon=139691527"}, {"datetaken": "2006-01-29 09:02:25", "license": "3", "title": "Good Wish Wall", "text": "", "album_id": "72157594149943607", "longitude": "139.691369", "url_o": "https://farm1.staticflickr.com/67/156528133_e3b6fcfeee_o.jpg", "secret": "e3b6fcfeee", "media": "photo", "latitude": "35.565622", "id": "156528133", "tags": "japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e luckycharms canonefs1785mmf456isusm \u6b66\u8535\u65b0\u7530 \u65b0\u7530\u795e\u793e geo:lat=35565622 geo:lon=139691369"}, {"datetaken": "2006-01-29 09:03:09", "license": "3", "title": "Lucky Charms", "text": "", "album_id": "72157594149943607", "longitude": "139.691358", "url_o": "https://farm1.staticflickr.com/74/156532134_8bfbd4813f_o.jpg", "secret": "8bfbd4813f", "media": "photo", "latitude": "35.565661", "id": "156532134", "tags": "japan geotagged tokyo bokeh canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e luckycharms canonefs1785mmf456isusm \u6b66\u8535\u65b0\u7530 \u65b0\u7530\u795e\u793e bokehsonice geo:lat=35565661 geo:lon=139691358"}, {"datetaken": "2006-01-29 09:03:27", "license": "3", "title": "Good Luck Charms in color", "text": "", "album_id": "72157594149943607", "longitude": "139.691232", "url_o": "https://farm1.staticflickr.com/34/115794107_8d771b1de5_o.jpg", "secret": "8d771b1de5", "media": "photo", "latitude": "35.565672", "id": "115794107", "tags": "japan closeup geotagged tokyo charm canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e 5star goodluck canonefs1785mmf456isusm \u65b0\u7530\u795e\u793e geolat35565672 geolon139691232"}, {"datetaken": "2006-01-29 09:03:32", "license": "3", "title": "Good Luck Charms", "text": "", "album_id": "72157594149943607", "longitude": "139.691256", "url_o": "https://farm1.staticflickr.com/19/115794193_771662344a_o.jpg", "secret": "771662344a", "media": "photo", "latitude": "35.565661", "id": "115794193", "tags": "blackandwhite japan closeup geotagged tokyo charm canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e 5star goodluck canonefs1785mmf456isusm \u65b0\u7530\u795e\u793e geolat35565661 geolon139691256"}, {"datetaken": "2006-01-29 09:04:29", "license": "3", "title": "Water Dragon", "text": "", "album_id": "72157594149943607", "longitude": "139.691414", "url_o": "https://farm1.staticflickr.com/52/156529907_ba420a415e_o.jpg", "secret": "ba420a415e", "media": "photo", "latitude": "35.565805", "id": "156529907", "tags": "japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e waterdragon canonefs1785mmf456isusm \u6b66\u8535\u65b0\u7530 \u65b0\u7530\u795e\u793e geo:lon=139691414 geo:lat=35565805"}, {"datetaken": "2006-01-29 09:04:36", "license": "3", "title": "Water Dragon", "text": "", "album_id": "72157594149943607", "longitude": "139.691433", "url_o": "https://farm1.staticflickr.com/77/156528213_19eb22ce0f_o.jpg", "secret": "19eb22ce0f", "media": "photo", "latitude": "35.565790", "id": "156528213", "tags": "japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e waterdragon canonefs1785mmf456isusm \u6b66\u8535\u65b0\u7530 \u65b0\u7530\u795e\u793e geo:lon=139691433 geo:lat=3556579"}, {"datetaken": "2006-01-29 09:04:49", "license": "3", "title": "Waterdragon", "text": "", "album_id": "72157594149943607", "longitude": "139.691420", "url_o": "https://farm1.staticflickr.com/43/115794318_80fc4c736d_o.jpg", "secret": "80fc4c736d", "media": "photo", "latitude": "35.565814", "id": "115794318", "tags": "japan geotagged tokyo shrine bokeh canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e waterdragon 5star canonefs1785mmf456isusm \u65b0\u7530\u795e\u793e geolat35565814 geolon13969142"}, {"datetaken": "2006-01-29 09:04:55", "license": "3", "title": "Water Dragon with bad aperture", "text": "", "album_id": "72157594149943607", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/92396712_af237aacd7_o.jpg", "secret": "af237aacd7", "media": "photo", "latitude": "0", "id": "92396712", "tags": "japan temple tokyo aperture dragon bokeh canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e canonefs1785mmf456isusm \u65b0\u7530\u795e\u793e"}, {"datetaken": "2006-01-29 09:05:16", "license": "3", "title": "Stone Guardian", "text": "", "album_id": "72157594149943607", "longitude": "139.691428", "url_o": "https://farm1.staticflickr.com/52/156528318_3d164a2c44_o.jpg", "secret": "3d164a2c44", "media": "photo", "latitude": "35.565764", "id": "156528318", "tags": "japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e stonefigures canonefs1785mmf456isusm \u6b66\u8535\u65b0\u7530 \u65b0\u7530\u795e\u793e geo:lon=139691428 geo:lat=35565764"}, {"datetaken": "2006-01-29 09:05:46", "license": "3", "title": "Stone Guardian on the right", "text": "", "album_id": "72157594149943607", "longitude": "139.691441", "url_o": "https://farm1.staticflickr.com/72/156528442_4b565db1c1_o.jpg", "secret": "4b565db1c1", "media": "photo", "latitude": "35.565786", "id": "156528442", "tags": "japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e stonefigures canonefs1785mmf456isusm \u6b66\u8535\u65b0\u7530 \u65b0\u7530\u795e\u793e geo:lat=35565786 geo:lon=139691441"}, {"datetaken": "2006-01-29 09:06:00", "license": "3", "title": "Stony Roar", "text": "", "album_id": "72157594149943607", "longitude": "139.691417", "url_o": "https://farm1.staticflickr.com/49/115794533_2294f492b9_o.jpg", "secret": "2294f492b9", "media": "photo", "latitude": "35.565810", "id": "115794533", "tags": "japan stone geotagged tokyo shrine figure canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e 5star canonefs1785mmf456isusm \u65b0\u7530\u795e\u793e geolat3556581 geolon139691417"}, {"datetaken": "2006-01-29 09:06:29", "license": "3", "title": "Offering Box", "text": "", "album_id": "72157594149943607", "longitude": "139.691369", "url_o": "https://farm1.staticflickr.com/55/156528536_54c96ae28c_o.jpg", "secret": "54c96ae28c", "media": "photo", "latitude": "35.565792", "id": "156528536", "tags": "japan geotagged tokyo ornaments canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e canonefs1785mmf456isusm \u6b66\u8535\u65b0\u7530 \u65b0\u7530\u795e\u793e geo:lat=35565792 geo:lon=139691369"}, {"datetaken": "2006-01-29 09:06:43", "license": "3", "title": "Ornament on the offering box", "text": "", "album_id": "72157594149943607", "longitude": "139.691353", "url_o": "https://farm1.staticflickr.com/65/156528642_76090aeb75_o.jpg", "secret": "76090aeb75", "media": "photo", "latitude": "35.565781", "id": "156528642", "tags": "japan geotagged tokyo ornaments canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e canonefs1785mmf456isusm \u6b66\u8535\u65b0\u7530 \u65b0\u7530\u795e\u793e geo:lon=139691353 geo:lat=35565781"}, {"datetaken": "2006-01-29 09:07:07", "license": "3", "title": "Good Luck charms around the main tree", "text": "", "album_id": "72157594149943607", "longitude": "139.691398", "url_o": "https://farm1.staticflickr.com/57/156528753_3cb4231b20_o.jpg", "secret": "3cb4231b20", "media": "photo", "latitude": "35.565796", "id": "156528753", "tags": "building tree japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e housebuilding canonefs1785mmf456isusm \u6b66\u8535\u65b0\u7530 \u65b0\u7530\u795e\u793e geo:lat=35565796 geo:lon=139691398"}, {"datetaken": "2006-01-29 09:07:35", "license": "3", "title": "Shrine Area", "text": "", "album_id": "72157594149943607", "longitude": "139.691578", "url_o": "https://farm1.staticflickr.com/69/156528849_cb39957736_o.jpg", "secret": "cb39957736", "media": "photo", "latitude": "35.565738", "id": "156528849", "tags": "building tree japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e housebuilding canonefs1785mmf456isusm \u6b66\u8535\u65b0\u7530 \u65b0\u7530\u795e\u793e geo:lat=35565738 geo:lon=139691578"}, {"datetaken": "2006-01-29 09:07:44", "license": "3", "title": "Backside of the Entrance Gate", "text": "", "album_id": "72157594149943607", "longitude": "139.691637", "url_o": "https://farm1.staticflickr.com/76/156528938_e53a2e9105_o.jpg", "secret": "e53a2e9105", "media": "photo", "latitude": "35.565707", "id": "156528938", "tags": "sign japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e stonefigures canonefs1785mmf456isusm \u6b66\u8535\u65b0\u7530 \u65b0\u7530\u795e\u793e geo:lon=139691637 geo:lat=35565707"}, {"datetaken": "2006-01-29 09:08:00", "license": "3", "title": "Temple Lantern", "text": "", "album_id": "72157594149943607", "longitude": "139.691723", "url_o": "https://farm1.staticflickr.com/47/156529027_68114b6962_o.jpg", "secret": "68114b6962", "media": "photo", "latitude": "35.565768", "id": "156529027", "tags": "japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e canonefs1785mmf456isusm \u6b66\u8535\u65b0\u7530 \u65b0\u7530\u795e\u793e geo:lat=35565768 geo:lon=139691723"}, {"datetaken": "2006-01-29 09:11:57", "license": "3", "title": "Entrance of Shrine", "text": "", "album_id": "72157594149943607", "longitude": "139.691656", "url_o": "https://farm1.staticflickr.com/54/156529124_25cd1d72bc_o.jpg", "secret": "25cd1d72bc", "media": "photo", "latitude": "35.562923", "id": "156529124", "tags": "japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e canonefs1785mmf456isusm \u77e2\u53e3 geo:lat=35562923 geo:lon=139691656"}, {"datetaken": "2006-01-29 09:12:16", "license": "3", "title": "Stone Guardian on the left", "text": "", "album_id": "72157594149943607", "longitude": "139.691717", "url_o": "https://farm1.staticflickr.com/77/156529255_943541b369_o.jpg", "secret": "943541b369", "media": "photo", "latitude": "35.562903", "id": "156529255", "tags": "japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e stonefigures canonefs1785mmf456isusm \u77e2\u53e3 geo:lat=35562903 geo:lon=139691717"}, {"datetaken": "2006-01-29 09:12:24", "license": "3", "title": "Stone Guardian detail", "text": "", "album_id": "72157594149943607", "longitude": "139.691709", "url_o": "https://farm1.staticflickr.com/58/156529339_ab6b558f9f_o.jpg", "secret": "ab6b558f9f", "media": "photo", "latitude": "35.562919", "id": "156529339", "tags": "japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e stonefigures canonefs1785mmf456isusm \u77e2\u53e3 geo:lat=35562919 geo:lon=139691709"}, {"datetaken": "2006-01-29 09:12:36", "license": "3", "title": "Main Building", "text": "", "album_id": "72157594149943607", "longitude": "139.691768", "url_o": "https://farm1.staticflickr.com/68/156529421_7bc041a0c1_o.jpg", "secret": "7bc041a0c1", "media": "photo", "latitude": "35.562897", "id": "156529421", "tags": "building japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e housebuilding canonefs1785mmf456isusm \u77e2\u53e3 geo:lat=35562897 geo:lon=139691768"}, {"datetaken": "2006-01-29 09:12:51", "license": "3", "title": "Roof of Building", "text": "", "album_id": "72157594149943607", "longitude": "139.691774", "url_o": "https://farm1.staticflickr.com/66/156529504_313234ab2a_o.jpg", "secret": "313234ab2a", "media": "photo", "latitude": "35.562890", "id": "156529504", "tags": "sign japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e canonefs1785mmf456isusm \u77e2\u53e3 geo:lat=3556289 geo:lon=139691774"}, {"datetaken": "2006-01-29 09:13:10", "license": "3", "title": "Entrance Gate from behind", "text": "", "album_id": "72157594149943607", "longitude": "139.691725", "url_o": "https://farm1.staticflickr.com/67/156529585_3a45960f32_o.jpg", "secret": "3a45960f32", "media": "photo", "latitude": "35.562901", "id": "156529585", "tags": "japan geotagged tokyo canon350d \u65e5\u672c \u6771\u4eac \u795e\u793e templegate canonefs1785mmf456isusm \u77e2\u53e3 geo:lat=35562901 geo:lon=139691725"}, {"datetaken": "2006-05-30 11:17:30", "license": "4", "title": "Docked in Skagway", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/164924764_27d3f76963_o.jpg", "secret": "27d3f76963", "media": "photo", "latitude": "0", "id": "164924764", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 12:06:46", "license": "4", "title": "East Fork of the Skagway River", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/164832233_d07c72c56e_o.jpg", "secret": "d07c72c56e", "media": "photo", "latitude": "0", "id": "164832233", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 12:27:50", "license": "4", "title": "April and the Bear Box", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/164832538_9ca79ff7d9_o.jpg", "secret": "9ca79ff7d9", "media": "photo", "latitude": "0", "id": "164832538", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 12:28:21", "license": "4", "title": "Ken explains", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/164833352_453ebd44a8_o.jpg", "secret": "453ebd44a8", "media": "photo", "latitude": "0", "id": "164833352", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 13:00:19", "license": "4", "title": "On the trail", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/164834186_264cb89eec_o.jpg", "secret": "264cb89eec", "media": "photo", "latitude": "0", "id": "164834186", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 13:30:51", "license": "4", "title": "East Fork of the Skagway River", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/164834997_df89b48ac7_o.jpg", "secret": "df89b48ac7", "media": "photo", "latitude": "0", "id": "164834997", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 13:35:52", "license": "4", "title": "Lichens", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/164835451_a5ac0498e5_o.jpg", "secret": "a5ac0498e5", "media": "photo", "latitude": "0", "id": "164835451", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 13:36:58", "license": "4", "title": "Nancy & Bob and the Skagway River", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/164835825_7a7b387e5c_o.jpg", "secret": "7a7b387e5c", "media": "photo", "latitude": "0", "id": "164835825", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 14:03:41", "license": "4", "title": "Ice in the valleys", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/164836492_80ba73ed0d_o.jpg", "secret": "80ba73ed0d", "media": "photo", "latitude": "0", "id": "164836492", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 14:15:25", "license": "4", "title": "Slippery trails", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/164837258_3c121a8936_o.jpg", "secret": "3c121a8936", "media": "photo", "latitude": "0", "id": "164837258", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 14:26:39", "license": "4", "title": "Fallen tree", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/164831870_524e3f23df_o.jpg", "secret": "524e3f23df", "media": "photo", "latitude": "0", "id": "164831870", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 14:52:07", "license": "4", "title": "Fog on the mountain", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/164838035_756011ee57_o.jpg", "secret": "756011ee57", "media": "photo", "latitude": "0", "id": "164838035", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 15:38:37", "license": "4", "title": "Trail head", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/164838852_5aa01ccb40_o.jpg", "secret": "5aa01ccb40", "media": "photo", "latitude": "0", "id": "164838852", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 15:39:30", "license": "4", "title": "Train returns", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/164839207_db1a32dafd_o.jpg", "secret": "db1a32dafd", "media": "photo", "latitude": "0", "id": "164839207", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 16:22:38", "license": "4", "title": "Snow plow", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/164839550_8e4190aff1_o.jpg", "secret": "8e4190aff1", "media": "photo", "latitude": "0", "id": "164839550", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 18:32:57", "license": "4", "title": "A year's supply", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/164839837_096816a369_o.jpg", "secret": "096816a369", "media": "photo", "latitude": "0", "id": "164839837", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 18:38:01", "license": "4", "title": "Two passes to the gold fields", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/164840303_cce6fedc03_o.jpg", "secret": "cce6fedc03", "media": "photo", "latitude": "0", "id": "164840303", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 19:02:56", "license": "4", "title": "Downtown Skagway", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/164840594_d9e63f42d3_o.jpg", "secret": "d9e63f42d3", "media": "photo", "latitude": "0", "id": "164840594", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 19:20:57", "license": "4", "title": "Mascot Saloon", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/164840890_53183ff312_o.jpg", "secret": "53183ff312", "media": "photo", "latitude": "0", "id": "164840890", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 19:21:09", "license": "4", "title": "Ranger Mauricio", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/164841450_a333387fcc_o.jpg", "secret": "a333387fcc", "media": "photo", "latitude": "0", "id": "164841450", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 19:25:10", "license": "4", "title": "Advertising on the rocks above town", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/164842094_5ccb53df51_o.jpg", "secret": "5ccb53df51", "media": "photo", "latitude": "0", "id": "164842094", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 19:27:28", "license": "4", "title": "False front", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/164842401_1f2c8932d1_o.jpg", "secret": "1f2c8932d1", "media": "photo", "latitude": "0", "id": "164842401", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 19:30:58", "license": "4", "title": "Moore Homestead", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/164842738_3e4bbd7cc7_o.jpg", "secret": "3e4bbd7cc7", "media": "photo", "latitude": "0", "id": "164842738", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 19:49:30", "license": "4", "title": "Ray Wann", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/164843329_22f52e8795_o.jpg", "secret": "22f52e8795", "media": "photo", "latitude": "0", "id": "164843329", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 20:01:15", "license": "4", "title": "Kirmses Curios", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/164843943_52304d6338_o.jpg", "secret": "52304d6338", "media": "photo", "latitude": "0", "id": "164843943", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-05-30 20:02:25", "license": "4", "title": "Skagway street", "text": "", "album_id": "72157594162352251", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/164837640_325e223d57_o.jpg", "secret": "325e223d57", "media": "photo", "latitude": "0", "id": "164837640", "tags": "cruise vacation alaska 2006 skagway"}, {"datetaken": "2006-03-26 11:39:37", "license": "1", "title": "The Stiff Upper Lip cont.", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/176770935_25d986e17c_o.jpg", "secret": "25d986e17c", "media": "photo", "latitude": "0", "id": "176770935", "tags": ""}, {"datetaken": "2006-03-26 11:48:19", "license": "1", "title": "Inside the Stiff Upper Lip", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/176771158_bef41948db_o.jpg", "secret": "bef41948db", "media": "photo", "latitude": "0", "id": "176771158", "tags": ""}, {"datetaken": "2006-03-26 11:48:33", "license": "1", "title": "The Stiff Upper Lip (A Series of Plays in Queen's English)", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/176771317_e9e547d4ef_o.jpg", "secret": "e9e547d4ef", "media": "photo", "latitude": "0", "id": "176771317", "tags": ""}, {"datetaken": "2006-03-26 12:24:31", "license": "1", "title": "Tomorrow's Kingdom Cargo", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/176770515_16db5d67be_o.jpg", "secret": "16db5d67be", "media": "photo", "latitude": "0", "id": "176770515", "tags": ""}, {"datetaken": "2006-03-26 12:24:41", "license": "1", "title": "Behold the Kingdoms!", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/176770741_93820730d3_o.jpg", "secret": "93820730d3", "media": "photo", "latitude": "0", "id": "176770741", "tags": ""}, {"datetaken": "2006-03-26 12:34:46", "license": "1", "title": "Rackets #2", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/176768549_00cb214ef0_o.jpg", "secret": "00cb214ef0", "media": "photo", "latitude": "0", "id": "176768549", "tags": ""}, {"datetaken": "2006-03-26 12:35:01", "license": "1", "title": "Rackets #1", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/176768746_3857a1b0c2_o.jpg", "secret": "3857a1b0c2", "media": "photo", "latitude": "0", "id": "176768746", "tags": ""}, {"datetaken": "2006-03-26 12:35:15", "license": "1", "title": "BBQ", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/176770221_3dc2483a02_o.jpg", "secret": "c3c6769704", "media": "photo", "latitude": "0", "id": "176770221", "tags": ""}, {"datetaken": "2006-03-26 12:35:23", "license": "1", "title": "Suburban Racket", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/176771475_36f76d0414_o.jpg", "secret": "36f76d0414", "media": "photo", "latitude": "0", "id": "176771475", "tags": ""}, {"datetaken": "2006-03-26 12:36:19", "license": "1", "title": "Containers Village", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/176770003_b080d87a3e_o.jpg", "secret": "b080d87a3e", "media": "photo", "latitude": "0", "id": "176770003", "tags": ""}, {"datetaken": "2006-03-26 12:58:16", "license": "1", "title": "Artist Running Space", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/176771747_f47a2a3e79_o.jpg", "secret": "f47a2a3e79", "media": "photo", "latitude": "0", "id": "176771747", "tags": ""}, {"datetaken": "2006-03-26 13:17:51", "license": "1", "title": "Zines and Comics close up", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/176772051_539eeabf9c_o.jpg", "secret": "539eeabf9c", "media": "photo", "latitude": "0", "id": "176772051", "tags": ""}, {"datetaken": "2006-03-26 13:17:56", "license": "1", "title": "Zine and Comic Container", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/176769032_a7a2baa658_o.jpg", "secret": "a7a2baa658", "media": "photo", "latitude": "0", "id": "176769032", "tags": ""}, {"datetaken": "2006-03-26 16:29:58", "license": "1", "title": "Corrupted Products", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/176769712_2b36d8ff96_o.jpg", "secret": "2b36d8ff96", "media": "photo", "latitude": "0", "id": "176769712", "tags": ""}, {"datetaken": "2006-03-26 16:30:18", "license": "1", "title": "shopping in newshop!", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/176772266_26f2f3c661_o.jpg", "secret": "26f2f3c661", "media": "photo", "latitude": "0", "id": "176772266", "tags": ""}, {"datetaken": "2006-03-26 16:30:24", "license": "1", "title": "Staff at newshop!", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/176769578_f8c2415772_o.jpg", "secret": "f8c2415772", "media": "photo", "latitude": "0", "id": "176769578", "tags": ""}, {"datetaken": "2006-03-26 16:31:18", "license": "1", "title": "newshop!", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/176769342_a39f8bc102_o.jpg", "secret": "a39f8bc102", "media": "photo", "latitude": "0", "id": "176769342", "tags": ""}, {"datetaken": "2006-03-27 19:19:37", "license": "1", "title": "100 Points of Light", "text": "", "album_id": "72157594182341605", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/176772420_e2af313f85_o.jpg", "secret": "e2af313f85", "media": "photo", "latitude": "0", "id": "176772420", "tags": ""}, {"datetaken": "2006-06-26 13:12:56", "license": "1", "title": "New Orleans Post-Katrina Tour - 1", "text": "", "album_id": "72157594194526377", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/181325424_9d8db157e0_o.jpg", "secret": "9d8db157e0", "media": "photo", "latitude": "0", "id": "181325424", "tags": "katrina neworleans ala2006"}, {"datetaken": "2006-06-26 13:13:06", "license": "1", "title": "New Orleans Post-Katrina Tour - 2", "text": "", "album_id": "72157594194526377", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/181325425_68e8649d9f_o.jpg", "secret": "68e8649d9f", "media": "photo", "latitude": "0", "id": "181325425", "tags": "katrina neworleans ala2006"}, {"datetaken": "2006-06-26 13:20:26", "license": "1", "title": "New Orleans Post-Katrina Tour - 3", "text": "", "album_id": "72157594194526377", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/181325426_bba59c3ad6_o.jpg", "secret": "bba59c3ad6", "media": "photo", "latitude": "0", "id": "181325426", "tags": "katrina neworleans ala2006"}, {"datetaken": "2006-06-26 13:21:21", "license": "1", "title": "New Orleans Post-Katrina Tour - 4", "text": "", "album_id": "72157594194526377", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/181325427_f302a557b4_o.jpg", "secret": "f302a557b4", "media": "photo", "latitude": "0", "id": "181325427", "tags": "katrina neworleans ala2006"}, {"datetaken": "2006-06-26 13:26:05", "license": "1", "title": "New Orleans Post-Katrina Tour - 5", "text": "", "album_id": "72157594194526377", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/181325428_13fc9a0c47_o.jpg", "secret": "13fc9a0c47", "media": "photo", "latitude": "0", "id": "181325428", "tags": "katrina neworleans ala2006"}, {"datetaken": "2006-06-26 13:46:26", "license": "1", "title": "New Orleans Post-Katrina Tour - 6", "text": "", "album_id": "72157594194526377", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/181325429_a869abe1c9_o.jpg", "secret": "a869abe1c9", "media": "photo", "latitude": "0", "id": "181325429", "tags": "katrina neworleans ala2006"}, {"datetaken": "2006-06-26 13:47:25", "license": "1", "title": "New Orleans Post-Katrina Tour - 9", "text": "", "album_id": "72157594194526377", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/181336146_a138846adf_o.jpg", "secret": "a138846adf", "media": "photo", "latitude": "0", "id": "181336146", "tags": "katrina neworleans ala2006"}, {"datetaken": "2006-06-26 13:52:36", "license": "1", "title": "New Orleans Post-Katrina Tour - 7", "text": "", "album_id": "72157594194526377", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/181336144_f45bafe06d_o.jpg", "secret": "f45bafe06d", "media": "photo", "latitude": "0", "id": "181336144", "tags": "katrina neworleans ala2006"}, {"datetaken": "2006-06-26 14:54:27", "license": "1", "title": "New Orleans Post-Katrina Tour - 8", "text": "", "album_id": "72157594194526377", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/181336145_a4f7a3a552_o.jpg", "secret": "a4f7a3a552", "media": "photo", "latitude": "0", "id": "181336145", "tags": "katrina neworleans ala2006"}, {"datetaken": "2006-06-26 14:56:45", "license": "1", "title": "New Orleans Post-Katrina Tour - 10", "text": "", "album_id": "72157594194526377", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/181336148_5af230bb60_o.jpg", "secret": "5af230bb60", "media": "photo", "latitude": "0", "id": "181336148", "tags": "katrina neworleans ala2006"}, {"datetaken": "2006-06-26 15:03:44", "license": "1", "title": "New Orleans Post-Katrina Tour - 11", "text": "", "album_id": "72157594194526377", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/181336150_f0aa86268b_o.jpg", "secret": "f0aa86268b", "media": "photo", "latitude": "0", "id": "181336150", "tags": "katrina neworleans ala2006"}, {"datetaken": "2006-06-26 15:25:24", "license": "1", "title": "New Orleans Post-Katrina Tour - 12", "text": "", "album_id": "72157594194526377", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/181336152_ad56299a5d_o.jpg", "secret": "ad56299a5d", "media": "photo", "latitude": "0", "id": "181336152", "tags": "katrina neworleans ala2006"}, {"datetaken": "2006-08-06 08:13:36", "license": "3", "title": "Kozarac police station", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/210354333_4b35167339_o.jpg", "secret": "4b35167339", "media": "photo", "latitude": "0", "id": "210354333", "tags": "bosnia republikasrpska mittal mittalsteel omarska kozarac"}, {"datetaken": "2006-08-06 08:13:54", "license": "3", "title": "Convoy begins", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/210354051_0c43f85000_o.jpg", "secret": "0c43f85000", "media": "photo", "latitude": "0", "id": "210354051", "tags": "bosnia republikasrpska mittal mittalsteel omarska kozarac"}, {"datetaken": "2006-08-06 08:27:04", "license": "3", "title": "Kozarac is now mostly virtual", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/210354533_549f81faba_o.jpg", "secret": "549f81faba", "media": "photo", "latitude": "0", "id": "210354533", "tags": "bosnia republikasrpska mittal mittalsteel omarska kozarac"}, {"datetaken": "2006-08-06 08:44:56", "license": "3", "title": "Welcome to Omarska", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/210355049_c50ec7ea6c_o.jpg", "secret": "c50ec7ea6c", "media": "photo", "latitude": "0", "id": "210355049", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 08:50:14", "license": "3", "title": "The Omarska mine complex", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/210355328_c7aa392149_o.jpg", "secret": "c7aa392149", "media": "photo", "latitude": "0", "id": "210355328", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 08:50:39", "license": "3", "title": "Entrance to the mine", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/210355539_6b41e5274e_o.jpg", "secret": "6b41e5274e", "media": "photo", "latitude": "0", "id": "210355539", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 08:50:53", "license": "3", "title": "Imposing machinery", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/210356172_d676813246_o.jpg", "secret": "d676813246", "media": "photo", "latitude": "0", "id": "210356172", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 08:52:06", "license": "3", "title": "Following the conveyor belt", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/210355719_2b496ef8fe_o.jpg", "secret": "2b496ef8fe", "media": "photo", "latitude": "0", "id": "210355719", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 09:12:08", "license": "3", "title": "Arriving at the mine buildings", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/210355937_d7d8b86c93_o.jpg", "secret": "d7d8b86c93", "media": "photo", "latitude": "0", "id": "210355937", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 09:14:42", "license": "3", "title": "Survivors tour the white house", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/210356625_b40c986cbb_o.jpg", "secret": "b40c986cbb", "media": "photo", "latitude": "0", "id": "210356625", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 09:16:29", "license": "3", "title": "Flowers from 2004", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/93/210356812_bba057d149_o.jpg", "secret": "bba057d149", "media": "photo", "latitude": "0", "id": "210356812", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 09:18:02", "license": "3", "title": "A single rose", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/210356955_7eddefc381_o.jpg", "secret": "7eddefc381", "media": "photo", "latitude": "0", "id": "210356955", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 09:20:45", "license": "3", "title": "An England shirt from 1992", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/210357738_eb3a7a772c_o.jpg", "secret": "eb3a7a772c", "media": "photo", "latitude": "0", "id": "210357738", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 09:21:36", "license": "3", "title": "A chair from 1992", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/210357457_1ee4fceca2_o.jpg", "secret": "1ee4fceca2", "media": "photo", "latitude": "0", "id": "210357457", "tags": "chair bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 09:21:56", "license": "3", "title": "Desk drawer", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/210357989_8b775c91e2_o.jpg", "secret": "8b775c91e2", "media": "photo", "latitude": "0", "id": "210357989", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 09:22:35", "license": "3", "title": "Crowds tour the site", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/210358343_deadf6512f_o.jpg", "secret": "deadf6512f", "media": "photo", "latitude": "0", "id": "210358343", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 09:23:09", "license": "3", "title": "The White House", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/210356439_8a58d756c3_o.jpg", "secret": "8a58d756c3", "media": "photo", "latitude": "0", "id": "210356439", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 09:35:14", "license": "3", "title": "Listening to the speakers", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/210358551_5f791a3ba2_o.jpg", "secret": "5f791a3ba2", "media": "photo", "latitude": "0", "id": "210358551", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 09:48:35", "license": "5", "title": "Nusreta Sivac addresses the crowd", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/210358777_c8cddb5686_o.jpg", "secret": "c8cddb5686", "media": "photo", "latitude": "0", "id": "210358777", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 09:51:55", "license": "5", "title": "Ed Vulliamy", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/210358956_f8c2b3f89c_o.jpg", "secret": "f8c2b3f89c", "media": "photo", "latitude": "0", "id": "210358956", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:19:24", "license": "3", "title": "Hard to avoid thinking about what happened here", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/210362228_d289456c13_o.jpg", "secret": "d289456c13", "media": "photo", "latitude": "0", "id": "210362228", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:19:33", "license": "3", "title": "Oil sump and inspection pit", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/210360992_5d9992edc9_o.jpg", "secret": "5d9992edc9", "media": "photo", "latitude": "0", "id": "210360992", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:21:00", "license": "3", "title": "Tense stand-off", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/210362042_93fd6169db_o.jpg", "secret": "93fd6169db", "media": "photo", "latitude": "0", "id": "210362042", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:22:27", "license": "3", "title": "Names still scratched on the door?", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/210362415_a2313fcc8e_o.jpg", "secret": "a2313fcc8e", "media": "photo", "latitude": "0", "id": "210362415", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:23:19", "license": "3", "title": "An organiser calms the crowd", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/210361832_30f86c3177_o.jpg", "secret": "30f86c3177", "media": "photo", "latitude": "0", "id": "210361832", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:24:03", "license": "3", "title": "RS police: \"nothing to do with me\"", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/210361653_73e6edc953_o.jpg", "secret": "73e6edc953", "media": "photo", "latitude": "0", "id": "210361653", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:24:21", "license": "3", "title": "Police stop survivors going upstairs", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/210361484_f9b0067078_o.jpg", "secret": "f9b0067078", "media": "photo", "latitude": "0", "id": "210361484", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:25:39", "license": "3", "title": "Large tyres", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/210361317_ef40760f67_o.jpg", "secret": "ef40760f67", "media": "photo", "latitude": "0", "id": "210361317", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:30:20", "license": "3", "title": "Entering the main hangar", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/210360770_6b0f8c0af3_o.jpg", "secret": "6b0f8c0af3", "media": "photo", "latitude": "0", "id": "210360770", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:31:22", "license": "3", "title": "Celebrating the mine", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/210359294_976d79d190_o.jpg", "secret": "976d79d190", "media": "photo", "latitude": "0", "id": "210359294", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:31:46", "license": "3", "title": "Flowers in the canteen", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/210360411_437718ab4a_o.jpg", "secret": "437718ab4a", "media": "photo", "latitude": "0", "id": "210360411", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:32:27", "license": "3", "title": "The canteen", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/210360205_d89092bbe3_o.jpg", "secret": "d89092bbe3", "media": "photo", "latitude": "0", "id": "210360205", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:33:15", "license": "3", "title": "Washrooms near the canteen - closed", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/210360021_d7738e7206_o.jpg", "secret": "d7738e7206", "media": "photo", "latitude": "0", "id": "210360021", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:34:01", "license": "3", "title": "Serb guard takes a break", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/210359836_72a2474ab6_o.jpg", "secret": "72a2474ab6", "media": "photo", "latitude": "0", "id": "210359836", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:35:16", "license": "3", "title": "No entry to the area where women were held above the canteen", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/210359505_abb603cdfb_o.jpg", "secret": "abb603cdfb", "media": "photo", "latitude": "0", "id": "210359505", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:35:27", "license": "3", "title": "Flowers on the door of the room where women were raped", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/210359679_2535e9ea8c_o.jpg", "secret": "2535e9ea8c", "media": "photo", "latitude": "0", "id": "210359679", "tags": "bosnia omarska republikasrpska mittal mittalsteel"}, {"datetaken": "2006-08-06 10:40:10", "license": "3", "title": "Many areas were closed and guarded by Republika Srpska police", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/210359132_5c381d5951_o.jpg", "secret": "5c381d5951", "media": "photo", "latitude": "0", "id": "210359132", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:40:13", "license": "3", "title": "The Red House", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/210362573_fa7d789913_o.jpg", "secret": "fa7d789913", "media": "photo", "latitude": "0", "id": "210362573", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 10:40:21", "license": "3", "title": "The initial site of the Omarska Memorial", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/65/210362867_ca7d639a80_o.jpg", "secret": "ca7d639a80", "media": "photo", "latitude": "0", "id": "210362867", "tags": "bosnia republikasrpska mittal mittalsteel omarska"}, {"datetaken": "2006-08-06 12:31:19", "license": "3", "title": "Civic pride versus Serbian hatred", "text": "", "album_id": "72157594229610644", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/210354821_62cfbd1363_o.jpg", "secret": "62cfbd1363", "media": "photo", "latitude": "0", "id": "210354821", "tags": "bosnia vandalism republikasrpska mittal mittalsteel omarska kozarac"}, {"datetaken": "2006-08-11 10:53:37", "license": "1", "title": "dsc02978", "text": "", "album_id": "72157594236594374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/215061156_61c1d0830c_o.jpg", "secret": "61c1d0830c", "media": "photo", "latitude": "0", "id": "215061156", "tags": "hungary budapest parlament danube dsch1"}, {"datetaken": "2006-08-11 10:59:22", "license": "1", "title": "dsc02991", "text": "", "album_id": "72157594236594374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/215058624_b42b0d22e9_o.jpg", "secret": "b42b0d22e9", "media": "photo", "latitude": "0", "id": "215058624", "tags": "budapest danube dsch1"}, {"datetaken": "2006-08-11 13:12:36", "license": "1", "title": "dsc_6625", "text": "", "album_id": "72157594236594374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/216179742_88118e033d_o.jpg", "secret": "88118e033d", "media": "photo", "latitude": "0", "id": "216179742", "tags": "hungary d70 budapest nikkor nikkor1870"}, {"datetaken": "2006-08-11 17:15:38", "license": "1", "title": "dsc_6660", "text": "", "album_id": "72157594236594374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/216179812_423fa8aff2_o.jpg", "secret": "423fa8aff2", "media": "photo", "latitude": "0", "id": "216179812", "tags": "hungary d70 budapest flags nikkor nikkor1870"}, {"datetaken": "2006-08-11 18:25:33", "license": "1", "title": "dsc_6706", "text": "", "album_id": "72157594236594374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/215126773_d9a564da29_o.jpg", "secret": "d9a564da29", "media": "photo", "latitude": "0", "id": "215126773", "tags": "hungary d70 budapest nikkor farolas nikkor1870"}, {"datetaken": "2006-08-11 18:42:21", "license": "1", "title": "Old and new", "text": "", "album_id": "72157594236594374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/215059045_21ceed3cd7_o.jpg", "secret": "21ceed3cd7", "media": "photo", "latitude": "0", "id": "215059045", "tags": "new old d70 budapest nikkor phc nikkor1870"}, {"datetaken": "2006-08-11 21:37:27", "license": "1", "title": "Copia dsc03052", "text": "", "album_id": "72157594236594374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/215060810_3a52c4f084_o.jpg", "secret": "3a52c4f084", "media": "photo", "latitude": "0", "id": "215060810", "tags": "night noche hungary budapest dsch1"}, {"datetaken": "2006-08-12 10:37:17", "license": "1", "title": "House of Terror", "text": "", "album_id": "72157594236594374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/215059325_8cb3cabf3c_o.jpg", "secret": "8cb3cabf3c", "media": "photo", "latitude": "0", "id": "215059325", "tags": "museum hungary d70 budapest lookingup terror nikkor nikkor1870"}, {"datetaken": "2006-08-12 12:42:47", "license": "1", "title": "dsc03075", "text": "", "album_id": "72157594236594374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/215059775_87248f2781_o.jpg", "secret": "87248f2781", "media": "photo", "latitude": "0", "id": "215059775", "tags": "hungary budapest dsch1 antikvarium"}, {"datetaken": "2006-08-12 14:44:11", "license": "1", "title": "dsc_6797", "text": "", "album_id": "72157594236594374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/215060027_cdd72ce95f_o.jpg", "secret": "cdd72ce95f", "media": "photo", "latitude": "0", "id": "215060027", "tags": "caf\u00e9 hungary d70 budapest nikkor nikkor1870"}, {"datetaken": "2006-08-12 16:04:47", "license": "1", "title": "dsc_6814", "text": "", "album_id": "72157594236594374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/215060249_1381e8ba8f_o.jpg", "secret": "1381e8ba8f", "media": "photo", "latitude": "0", "id": "215060249", "tags": "hungary d70 flag budapest 1956 nikkor nikkor1870"}, {"datetaken": "2006-08-12 17:28:00", "license": "1", "title": "Cars", "text": "", "album_id": "72157594236594374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/215108881_8bc80ef27d_o.jpg", "secret": "8bc80ef27d", "media": "photo", "latitude": "0", "id": "215108881", "tags": "cars hungary d70 budapest nikkor nikkor1870"}, {"datetaken": "2006-08-12 17:39:09", "license": "1", "title": "dsc_6833", "text": "", "album_id": "72157594236594374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/215060666_5331574f44_o.jpg", "secret": "5331574f44", "media": "photo", "latitude": "0", "id": "215060666", "tags": "park d70 budapest nikkor nikkor1870"}, {"datetaken": "2006-08-12 17:51:09", "license": "1", "title": "dsc_6837", "text": "", "album_id": "72157594236594374", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/215060338_83744d6ac7_o.jpg", "secret": "83744d6ac7", "media": "photo", "latitude": "0", "id": "215060338", "tags": "d70 budapest nikkor nikkor1870"}, {"datetaken": "2006-08-13 13:57:50", "license": "3", "title": "Roll up! Roll up! Get your Diabetes II here.", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/226226744_a2542ffa82_o.jpg", "secret": "a2542ffa82", "media": "photo", "latitude": "0", "id": "226226744", "tags": "sweeties diabetes"}, {"datetaken": "2006-08-13 14:16:13", "license": "3", "title": "The Deep - Hull (yes Hull!)", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/222301051_63cb58951c_o.jpg", "secret": "63cb58951c", "media": "photo", "latitude": "0", "id": "222301051", "tags": "diving 2006 hull thedeep submarium nottstrip divingwithoutdiving"}, {"datetaken": "2006-08-13 14:21:33", "license": "3", "title": "Bloody Hell or Muddy Hull (1)", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/225145043_7bd40b215e_o.jpg", "secret": "7bd40b215e", "media": "photo", "latitude": "0", "id": "225145043", "tags": "mud hull muddy"}, {"datetaken": "2006-08-13 14:22:02", "license": "3", "title": "Bloody Hell or Muddy Hull (2)", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/225145086_4a319ec144_o.jpg", "secret": "4a319ec144", "media": "photo", "latitude": "0", "id": "225145086", "tags": "mud hull muddy"}, {"datetaken": "2006-08-13 14:23:12", "license": "3", "title": "Bloody Hell or Muddy Hull (3)", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/225145133_079bb21fbc_o.jpg", "secret": "079bb21fbc", "media": "photo", "latitude": "0", "id": "225145133", "tags": "mud hull muddy"}, {"datetaken": "2006-08-13 14:23:19", "license": "3", "title": "Bloody Hell or Muddy Hull (4)", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/225145165_58092a1cd7_o.jpg", "secret": "58092a1cd7", "media": "photo", "latitude": "0", "id": "225145165", "tags": "mud hull muddy"}, {"datetaken": "2006-08-13 14:24:12", "license": "3", "title": "Bloody Hell or Muddy Hull", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/225144998_ac7a2a26ee_o.jpg", "secret": "ac7a2a26ee", "media": "photo", "latitude": "0", "id": "225144998", "tags": "mud hull muddy"}, {"datetaken": "2006-08-13 15:04:01", "license": "3", "title": "Diving - Not", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/221298938_8962330790_o.jpg", "secret": "8962330790", "media": "photo", "latitude": "0", "id": "221298938", "tags": "diving 2006 hull nottstrip divinginhull"}, {"datetaken": "2006-08-13 15:13:32", "license": "3", "title": "Diving - Not", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/221299035_c4b621d62c_o.jpg", "secret": "c4b621d62c", "media": "photo", "latitude": "0", "id": "221299035", "tags": "diving 2006 hull nottstrip divinginhull"}, {"datetaken": "2006-08-13 15:14:32", "license": "3", "title": "Diving - Not", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/221299133_a68ebeba46_o.jpg", "secret": "a68ebeba46", "media": "photo", "latitude": "0", "id": "221299133", "tags": "diving 2006 hull nottstrip divinginhull"}, {"datetaken": "2006-08-13 15:14:42", "license": "3", "title": "Diving - Not", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/221299225_4ae21243e5_o.jpg", "secret": "4ae21243e5", "media": "photo", "latitude": "0", "id": "221299225", "tags": "diving 2006 hull nottstrip divinginhull"}, {"datetaken": "2006-08-13 15:16:47", "license": "3", "title": "Diving - Not", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/221299357_254ab17563_o.jpg", "secret": "254ab17563", "media": "photo", "latitude": "0", "id": "221299357", "tags": "diving 2006 hull nottstrip divinginhull"}, {"datetaken": "2006-08-13 15:17:48", "license": "3", "title": "Diving - Not", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/221299514_15c3e0c642_o.jpg", "secret": "15c3e0c642", "media": "photo", "latitude": "0", "id": "221299514", "tags": "diving 2006 hull nottstrip divinginhull"}, {"datetaken": "2006-08-13 15:17:57", "license": "3", "title": "Positively Wormy", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/221299595_02116125ee_o.jpg", "secret": "02116125ee", "media": "photo", "latitude": "0", "id": "221299595", "tags": "diving 2006 hull wormy nottstrip divinginhull"}, {"datetaken": "2006-08-13 15:19:38", "license": "3", "title": "Diving - Not", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/221299682_96c6f4bb2a_o.jpg", "secret": "96c6f4bb2a", "media": "photo", "latitude": "0", "id": "221299682", "tags": "diving 2006 hull nottstrip divinginhull"}, {"datetaken": "2006-08-13 15:25:02", "license": "3", "title": "Diving - Not", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/221299763_17572fcd39_o.jpg", "secret": "17572fcd39", "media": "photo", "latitude": "0", "id": "221299763", "tags": "diving 2006 hull nottstrip divinginhull"}, {"datetaken": "2006-08-13 15:26:03", "license": "3", "title": "Diving - Not", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/93/221299825_6e2e64e218_o.jpg", "secret": "6e2e64e218", "media": "photo", "latitude": "0", "id": "221299825", "tags": "diving 2006 hull nottstrip divinginhull"}, {"datetaken": "2006-08-13 15:36:23", "license": "3", "title": "Diving - Not", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/61/221299912_07250153e0_o.jpg", "secret": "07250153e0", "media": "photo", "latitude": "0", "id": "221299912", "tags": "diving 2006 hull nottstrip divinginhull"}, {"datetaken": "2006-08-13 15:38:10", "license": "3", "title": "Diving - Not", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/221299993_96b132ad83_o.jpg", "secret": "96b132ad83", "media": "photo", "latitude": "0", "id": "221299993", "tags": "diving 2006 hull nottstrip divinginhull"}, {"datetaken": "2006-08-13 15:43:19", "license": "3", "title": "Diving - Not", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/221300116_470821aa60_o.jpg", "secret": "470821aa60", "media": "photo", "latitude": "0", "id": "221300116", "tags": "diving 2006 hull nottstrip divinginhull"}, {"datetaken": "2006-08-13 15:52:34", "license": "3", "title": "Diving - Not", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/221300199_ca78ec133f_o.jpg", "secret": "ca78ec133f", "media": "photo", "latitude": "0", "id": "221300199", "tags": "diving 2006 hull nottstrip divinginhull"}, {"datetaken": "2006-08-13 15:55:09", "license": "3", "title": "Diving - Not", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/221300269_d8d6e65aac_o.jpg", "secret": "d8d6e65aac", "media": "photo", "latitude": "0", "id": "221300269", "tags": "diving 2006 hull nottstrip divinginhull"}, {"datetaken": "2006-08-13 15:55:36", "license": "3", "title": "Diving - Not", "text": "", "album_id": "72157594246009271", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/221300364_6f7cd54896_o.jpg", "secret": "6f7cd54896", "media": "photo", "latitude": "0", "id": "221300364", "tags": "turquoise diving 2006 hull august2006 nottstrip divinginhull"}, {"datetaken": "2006-09-03 21:38:47", "license": "1", "title": "harbour bridge", "text": "", "album_id": "72157600047957959", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/233129985_8307d705e2_o.jpg", "secret": "8307d705e2", "media": "photo", "latitude": "0", "id": "233129985", "tags": "bridge sydney australia"}, {"datetaken": "2006-09-03 21:39:15", "license": "1", "title": "bird", "text": "", "album_id": "72157600047957959", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/233129984_dae4064796_o.jpg", "secret": "dae4064796", "media": "photo", "latitude": "0", "id": "233129984", "tags": "sydney australia"}, {"datetaken": "2006-09-03 21:39:45", "license": "1", "title": "big tree", "text": "", "album_id": "72157600047957959", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/233129983_86ee618e27_o.jpg", "secret": "86ee618e27", "media": "photo", "latitude": "0", "id": "233129983", "tags": "tree sydney australia"}, {"datetaken": "2006-09-03 21:40:11", "license": "1", "title": "christmas cove cottages", "text": "", "album_id": "72157600047957959", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/233092904_9ae48eda40_o.jpg", "secret": "9ae48eda40", "media": "photo", "latitude": "0", "id": "233092904", "tags": "australia ki kangarooisland"}, {"datetaken": "2006-09-03 21:40:39", "license": "1", "title": "dolphins", "text": "", "album_id": "72157600047957959", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/233092902_4e793f9bdb_o.jpg", "secret": "4e793f9bdb", "media": "photo", "latitude": "0", "id": "233092902", "tags": "australia dolphins ki kangarooisland"}, {"datetaken": "2006-09-03 21:41:35", "license": "1", "title": "towards christmas cove", "text": "", "album_id": "72157600047957959", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/233092897_6e797eb42d_o.jpg", "secret": "6e797eb42d", "media": "photo", "latitude": "0", "id": "233092897", "tags": "australia ki kangarooisland"}, {"datetaken": "2006-09-03 21:42:03", "license": "1", "title": "wallaby", "text": "", "album_id": "72157600047957959", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/233092894_6d5bebeea6_o.jpg", "secret": "6d5bebeea6", "media": "photo", "latitude": "0", "id": "233092894", "tags": "australia wallaby ki kangarooisland"}, {"datetaken": "2006-09-03 21:42:22", "license": "1", "title": "dead tree", "text": "", "album_id": "72157600047957959", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/233092891_55a4e0ecc0_o.jpg", "secret": "55a4e0ecc0", "media": "photo", "latitude": "0", "id": "233092891", "tags": "tree australia ki kangarooisland"}, {"datetaken": "2006-09-03 21:42:38", "license": "1", "title": "fallen tree", "text": "", "album_id": "72157600047957959", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/233092889_9e4cdf68f1_o.jpg", "secret": "9e4cdf68f1", "media": "photo", "latitude": "0", "id": "233092889", "tags": "australia ki kangarooisland"}, {"datetaken": "2006-09-03 21:44:32", "license": "1", "title": "adelaide", "text": "", "album_id": "72157600047957959", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/233138021_eecbbd6b23_o.jpg", "secret": "eecbbd6b23", "media": "photo", "latitude": "0", "id": "233138021", "tags": "australia adelaide"}, {"datetaken": "2006-09-03 21:45:19", "license": "1", "title": "Wall", "text": "", "album_id": "72157600047957959", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/233138019_0543f2cb6e_o.jpg", "secret": "0543f2cb6e", "media": "photo", "latitude": "0", "id": "233138019", "tags": "australia adelaide"}, {"datetaken": "2006-09-03 21:45:57", "license": "1", "title": "more rocks", "text": "", "album_id": "72157600047957959", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/233129990_d51618e62f_o.jpg", "secret": "d51618e62f", "media": "photo", "latitude": "0", "id": "233129990", "tags": "sydney australia"}, {"datetaken": "2006-09-03 21:46:01", "license": "1", "title": "jeff on a bench", "text": "", "album_id": "72157600047957959", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/233129989_ef8654057d_o.jpg", "secret": "ef8654057d", "media": "photo", "latitude": "0", "id": "233129989", "tags": "bondi sydney australia"}, {"datetaken": "2006-09-03 21:46:03", "license": "1", "title": "rocks", "text": "", "album_id": "72157600047957959", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/233129987_4f5a9b4209_o.jpg", "secret": "4f5a9b4209", "media": "photo", "latitude": "0", "id": "233129987", "tags": "bondi sydney australia"}, {"datetaken": "2001-10-13 11:50:38", "license": "1", "title": "Entry", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/78/215220039_3cf461bdf7_o.jpg", "secret": "7f7b1587ec", "media": "photo", "latitude": "47.432022", "id": "215220039", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse signaturetile"}, {"datetaken": "2001-10-13 11:50:59", "license": "1", "title": "Corner Block Detail", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/63/215220091_ccc30aefc1_o.jpg", "secret": "22a55efe2a", "media": "photo", "latitude": "47.432022", "id": "215220091", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 11:51:21", "license": "1", "title": "Roof/Wall Detail", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/80/215220153_8bfd906365_o.jpg", "secret": "169399755b", "media": "photo", "latitude": "47.432022", "id": "215220153", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 11:51:46", "license": "1", "title": "Corner Window Block Detail", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/29/215220174_1d68a0e0e3_o.jpg", "secret": "016cbfacd3", "media": "photo", "latitude": "47.432022", "id": "215220174", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 11:51:58", "license": "1", "title": "Corner Window Block Detail", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/76/215220217_21e8b2fa49_o.jpg", "secret": "fe167da75c", "media": "photo", "latitude": "47.432022", "id": "215220217", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 11:52:08", "license": "1", "title": "Garden Setup", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/66/215220285_f21015ffe3_o.jpg", "secret": "1c72e7fe26", "media": "photo", "latitude": "47.432022", "id": "215220285", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 11:52:26", "license": "1", "title": "Patio", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/59/215220337_e66acf01af_o.jpg", "secret": "9ce0cccd5e", "media": "photo", "latitude": "47.432022", "id": "215220337", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 11:52:47", "license": "1", "title": "Back of Home", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/29/215220578_8e43afdcd5_o.jpg", "secret": "bf1f4c0de3", "media": "photo", "latitude": "47.432022", "id": "215220578", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 11:53:03", "license": "1", "title": "Back Facade", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/82/215223806_f9d73e28b0_o.jpg", "secret": "ee0482f249", "media": "photo", "latitude": "47.432022", "id": "215223806", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 11:53:03", "license": "1", "title": "Back of Home", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/58/215220820_e0f7915754_o.jpg", "secret": "cc5168b026", "media": "photo", "latitude": "47.432022", "id": "215220820", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 11:53:10", "license": "1", "title": "Back of Home", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/81/215221062_41c7c94035_o.jpg", "secret": "06a462fc7b", "media": "photo", "latitude": "47.432022", "id": "215221062", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 11:53:31", "license": "1", "title": "Back Patio", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/57/215221234_35e782c9a2_o.jpg", "secret": "8e39ff9ba4", "media": "photo", "latitude": "47.432022", "id": "215221234", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 11:53:48", "license": "1", "title": "Corner Windows", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/62/215221398_83fcc4e9f0_o.jpg", "secret": "2c004b7ab2", "media": "photo", "latitude": "47.432022", "id": "215221398", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 11:54:26", "license": "1", "title": "Patio Doors", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/88/215221524_de53c10a29_o.jpg", "secret": "6f1c27c203", "media": "photo", "latitude": "47.432022", "id": "215221524", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 11:54:51", "license": "1", "title": "Windowed Bedroom", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/65/215221694_969774cd53_o.jpg", "secret": "8c169e5b20", "media": "photo", "latitude": "47.432022", "id": "215221694", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 11:55:11", "license": "1", "title": "Frank Lloyd Wright: Corner Doors", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/70/215221822_b4f1641fe7_o.jpg", "secret": "605df66047", "media": "photo", "latitude": "47.432022", "id": "215221822", "tags": "seattle concrete washington franklloydwright explore block wildcard usonian normandypark flickrexplore knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 12:40:27", "license": "1", "title": "Corner Window Blocks", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/71/215221864_09eae98e95_o.jpg", "secret": "27070c2ec9", "media": "photo", "latitude": "47.432022", "id": "215221864", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 12:40:53", "license": "1", "title": "Fountain/Carport", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/58/215221964_d024483fd7_o.jpg", "secret": "24b0d5ac14", "media": "photo", "latitude": "47.432022", "id": "215221964", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 12:41:03", "license": "1", "title": "From Street", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/80/215222041_2937f11ca2_o.jpg", "secret": "3cfc7d18f6", "media": "photo", "latitude": "47.432022", "id": "215222041", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2001-10-13 12:41:28", "license": "1", "title": "Water Fountain", "text": "", "album_id": "72157603052890435", "longitude": "-122.350143", "url_o": "https://farm1.staticflickr.com/64/215222101_beb1b5d1a3_o.jpg", "secret": "8f76d6c5e3", "media": "photo", "latitude": "47.432022", "id": "215222101", "tags": "seattle concrete washington franklloydwright block wildcard usonian normandypark knitblock williambtracy williambtracyhouse"}, {"datetaken": "2006-09-02 13:23:22", "license": "1", "title": "Outside of Lincoln Cathedral", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/232560070_b22ce26f91_o.jpg", "secret": "b22ce26f91", "media": "photo", "latitude": "0", "id": "232560070", "tags": "cathedral lincoln"}, {"datetaken": "2006-09-02 15:36:57", "license": "1", "title": "Organ pipes", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/232560180_16fec1edaf_o.jpg", "secret": "16fec1edaf", "media": "photo", "latitude": "0", "id": "232560180", "tags": "cathedral pipes organ lincoln"}, {"datetaken": "2006-09-02 15:37:47", "license": "1", "title": "Cathedral roof", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/232560308_3c0bdebd2d_o.jpg", "secret": "3c0bdebd2d", "media": "photo", "latitude": "0", "id": "232560308", "tags": "roof cathedral nave lincoln"}, {"datetaken": "2006-09-02 15:39:12", "license": "1", "title": "The nave", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/232560412_f97b50bd35_o.jpg", "secret": "f97b50bd35", "media": "photo", "latitude": "0", "id": "232560412", "tags": "cathedral nave lincoln"}, {"datetaken": "2006-09-02 15:40:33", "license": "1", "title": "The font", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/232560533_bf06e2efa5_o.jpg", "secret": "bf06e2efa5", "media": "photo", "latitude": "0", "id": "232560533", "tags": "cathedral lincoln font"}, {"datetaken": "2006-09-02 15:41:50", "license": "1", "title": "Font, side perspective", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/232560655_8fa18d7755_o.jpg", "secret": "8fa18d7755", "media": "photo", "latitude": "0", "id": "232560655", "tags": "cathedral lincoln font"}, {"datetaken": "2006-09-02 15:42:41", "license": "1", "title": "Font, candle", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/232560785_70e2537442_o.jpg", "secret": "70e2537442", "media": "photo", "latitude": "0", "id": "232560785", "tags": "candle cathedral lincoln font column"}, {"datetaken": "2006-09-02 15:44:12", "license": "1", "title": "Stained glass window", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/232560909_735d9c9506_o.jpg", "secret": "735d9c9506", "media": "photo", "latitude": "0", "id": "232560909", "tags": "glass cathedral stained lincoln"}, {"datetaken": "2006-09-02 15:45:22", "license": "1", "title": "Gideon, stained glass", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/232561046_b4796a6816_o.jpg", "secret": "b4796a6816", "media": "photo", "latitude": "0", "id": "232561046", "tags": "glass gideon cathedral stained lincoln"}, {"datetaken": "2006-09-02 15:46:48", "license": "1", "title": "More stained glass", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/232561163_62402d9cce_o.jpg", "secret": "62402d9cce", "media": "photo", "latitude": "0", "id": "232561163", "tags": "glass cathedral stained lincoln"}, {"datetaken": "2006-09-02 15:47:36", "license": "1", "title": "Stained glass, close-up", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/232561264_f4081c2d7b_o.jpg", "secret": "f4081c2d7b", "media": "photo", "latitude": "0", "id": "232561264", "tags": "glass cathedral stained lincoln"}, {"datetaken": "2006-09-02 15:49:02", "license": "1", "title": "Main memorial", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/232561391_83ee49e110_o.jpg", "secret": "83ee49e110", "media": "photo", "latitude": "0", "id": "232561391", "tags": "memorial cathedral lincoln"}, {"datetaken": "2006-09-02 15:49:40", "license": "1", "title": "Chandelier", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/232561493_e36e3d6eee_o.jpg", "secret": "e36e3d6eee", "media": "photo", "latitude": "0", "id": "232561493", "tags": "cathedral chandelier lincoln"}, {"datetaken": "2006-09-02 15:51:22", "license": "1", "title": "West Front", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/232561605_3ee855608b_o.jpg", "secret": "3ee855608b", "media": "photo", "latitude": "0", "id": "232561605", "tags": "cathedral lincoln transept"}, {"datetaken": "2006-09-02 15:53:27", "license": "1", "title": "Choir screen", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/232561704_c7f6c2042e_o.jpg", "secret": "c7f6c2042e", "media": "photo", "latitude": "0", "id": "232561704", "tags": "choir cathedral screen lincoln"}, {"datetaken": "2006-09-02 15:54:08", "license": "1", "title": "Choir screen, close-up", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/232561826_77237650cb_o.jpg", "secret": "77237650cb", "media": "photo", "latitude": "0", "id": "232561826", "tags": "choir cathedral screen lincoln imp"}, {"datetaken": "2006-09-02 15:54:41", "license": "1", "title": "South Transept", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/232561929_a857a4f0cc_o.jpg", "secret": "a857a4f0cc", "media": "photo", "latitude": "0", "id": "232561929", "tags": "cathedral lincoln"}, {"datetaken": "2006-09-02 15:56:43", "license": "1", "title": "Bishop of Lincoln statue", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/232562177_c2719225d2_o.jpg", "secret": "c2719225d2", "media": "photo", "latitude": "0", "id": "232562177", "tags": "statue cathedral lincoln bishop"}, {"datetaken": "2006-09-02 15:57:06", "license": "1", "title": "Stained glass above statue", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/232562283_8420688c14_o.jpg", "secret": "8420688c14", "media": "photo", "latitude": "0", "id": "232562283", "tags": "glass cathedral stained lincoln"}, {"datetaken": "2006-09-02 15:57:39", "license": "1", "title": "Circular stained glass", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/232562416_c0606c648e_o.jpg", "secret": "c0606c648e", "media": "photo", "latitude": "0", "id": "232562416", "tags": "glass cathedral stained lincoln"}, {"datetaken": "2006-09-02 16:00:37", "license": "1", "title": "Lectern in St. Hugh's Choir", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/93/232562538_b71a48cc34_o.jpg", "secret": "b71a48cc34", "media": "photo", "latitude": "0", "id": "232562538", "tags": "choir cathedral lincoln lectern"}, {"datetaken": "2006-09-02 16:01:42", "license": "1", "title": "Brass eagle", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/232562659_e76f278eb6_o.jpg", "secret": "e76f278eb6", "media": "photo", "latitude": "0", "id": "232562659", "tags": "cathedral eagle lincoln brass"}, {"datetaken": "2006-09-02 16:02:03", "license": "1", "title": "Willis Organ", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/81/232562767_d381104bc8_o.jpg", "secret": "d381104bc8", "media": "photo", "latitude": "0", "id": "232562767", "tags": "cathedral organ lincoln willis"}, {"datetaken": "2006-09-02 16:02:45", "license": "1", "title": "High Altar", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/232562893_83bd6ac4c3_o.jpg", "secret": "83bd6ac4c3", "media": "photo", "latitude": "0", "id": "232562893", "tags": "high cathedral altar lincoln"}, {"datetaken": "2006-09-02 16:04:33", "license": "1", "title": "Gilbert Pots", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/232563023_1d99e8ef75_o.jpg", "secret": "1d99e8ef75", "media": "photo", "latitude": "0", "id": "232563023", "tags": "cathedral pots lincoln gilbert"}, {"datetaken": "2006-09-02 16:05:42", "license": "1", "title": "East Window", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/232563132_57e6666d43_o.jpg", "secret": "57e6666d43", "media": "photo", "latitude": "0", "id": "232563132", "tags": "glass cathedral stained lincoln"}, {"datetaken": "2006-09-02 16:13:05", "license": "1", "title": "North East Transept", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/232563263_aa89d4e6fc_o.jpg", "secret": "aa89d4e6fc", "media": "photo", "latitude": "0", "id": "232563263", "tags": "cathedral altar lincoln transept"}, {"datetaken": "2006-09-02 16:13:47", "license": "1", "title": "Above transept altar", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/232563479_cd3910560a_o.jpg", "secret": "cd3910560a", "media": "photo", "latitude": "0", "id": "232563479", "tags": "cathedral altar lincoln transept"}, {"datetaken": "2006-09-02 16:16:45", "license": "1", "title": "St. Hugh's Choir", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/232563780_86bdbb706e_o.jpg", "secret": "86bdbb706e", "media": "photo", "latitude": "0", "id": "232563780", "tags": "choir cathedral lincoln sainthughs"}, {"datetaken": "2006-09-02 16:21:11", "license": "1", "title": "Adam and Eve's casting", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/232563898_57251423b5_o.jpg", "secret": "57251423b5", "media": "photo", "latitude": "0", "id": "232563898", "tags": "eve adam cathedral cast lincoln"}, {"datetaken": "2006-09-02 16:24:44", "license": "1", "title": "Cloister", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/232564027_a7dfb54c51_o.jpg", "secret": "a7dfb54c51", "media": "photo", "latitude": "0", "id": "232564027", "tags": "cathedral lincoln cloister"}, {"datetaken": "2006-09-02 16:25:41", "license": "1", "title": "Cloister window", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/91/232564187_f56f02b0ff_o.jpg", "secret": "f56f02b0ff", "media": "photo", "latitude": "0", "id": "232564187", "tags": "cathedral lincoln cloister"}, {"datetaken": "2006-09-02 16:28:38", "license": "1", "title": "Marble statue", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/232564321_f0edefbbab_o.jpg", "secret": "f0edefbbab", "media": "photo", "latitude": "0", "id": "232564321", "tags": "statue cathedral lincoln marble"}, {"datetaken": "2006-09-02 16:28:53", "license": "1", "title": "Marble plaque", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/232564453_7b289a68f3_o.jpg", "secret": "7b289a68f3", "media": "photo", "latitude": "0", "id": "232564453", "tags": "cathedral lincoln"}, {"datetaken": "2006-09-02 16:33:31", "license": "1", "title": "Chapter House", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/232564625_7676618588_o.jpg", "secret": "7676618588", "media": "photo", "latitude": "0", "id": "232564625", "tags": "house cathedral lincoln chapter davincicode"}, {"datetaken": "2006-09-02 16:33:42", "license": "1", "title": "Chapter House, column", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/232564773_6825e4df07_o.jpg", "secret": "6825e4df07", "media": "photo", "latitude": "0", "id": "232564773", "tags": "house cathedral lincoln chapter"}, {"datetaken": "2006-09-02 16:34:07", "license": "1", "title": "Roof of Chapter House", "text": "", "album_id": "72157594266207564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/232564887_7774261356_o.jpg", "secret": "7774261356", "media": "photo", "latitude": "0", "id": "232564887", "tags": "roof house cathedral lincoln chapter"}, {"datetaken": "2006-09-17 12:27:30", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/245590970_c2e7ddaf69_o.jpg", "secret": "c2e7ddaf69", "media": "photo", "latitude": "0", "id": "245590970", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 12:28:11", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/87/245591427_938f634613_o.jpg", "secret": "938f634613", "media": "photo", "latitude": "51.368920", "id": "245591427", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 12:29:09", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/80/245591798_0540d36104_o.jpg", "secret": "0540d36104", "media": "photo", "latitude": "51.368920", "id": "245591798", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 12:29:49", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/87/245592099_0c9c1f7b3f_o.jpg", "secret": "0c9c1f7b3f", "media": "photo", "latitude": "51.368920", "id": "245592099", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 12:41:18", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/82/245592504_a1a5889f5f_o.jpg", "secret": "a1a5889f5f", "media": "photo", "latitude": "51.368920", "id": "245592504", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 12:46:38", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/86/245593158_b6947e6969_o.jpg", "secret": "b6947e6969", "media": "photo", "latitude": "51.368920", "id": "245593158", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 12:52:36", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/93/245593468_f866585696_o.jpg", "secret": "f866585696", "media": "photo", "latitude": "51.368920", "id": "245593468", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 12:55:57", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/90/245593860_5d8d6abb04_o.jpg", "secret": "5d8d6abb04", "media": "photo", "latitude": "51.368920", "id": "245593860", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 12:57:07", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/85/245594294_5c6ec587d5_o.jpg", "secret": "5c6ec587d5", "media": "photo", "latitude": "51.368920", "id": "245594294", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 12:57:27", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/97/245594761_a2cbcdc278_o.jpg", "secret": "a2cbcdc278", "media": "photo", "latitude": "51.368920", "id": "245594761", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 12:58:29", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/81/245595261_8664048b81_o.jpg", "secret": "8664048b81", "media": "photo", "latitude": "51.368920", "id": "245595261", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 12:58:58", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/95/245595719_647d41b07c_o.jpg", "secret": "647d41b07c", "media": "photo", "latitude": "51.368920", "id": "245595719", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 12:59:13", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/90/245596234_df81b6f823_o.jpg", "secret": "df81b6f823", "media": "photo", "latitude": "51.368920", "id": "245596234", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 13:13:29", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/93/245596751_7f2b8ed3cd_o.jpg", "secret": "7f2b8ed3cd", "media": "photo", "latitude": "51.368920", "id": "245596751", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 13:16:48", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/83/245597164_fc5aef1af7_o.jpg", "secret": "fc5aef1af7", "media": "photo", "latitude": "51.368920", "id": "245597164", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 13:27:07", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/84/245597563_6841076f5f_o.jpg", "secret": "6841076f5f", "media": "photo", "latitude": "51.368920", "id": "245597563", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 13:27:20", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/98/245597956_59cf73dfcd_o.jpg", "secret": "59cf73dfcd", "media": "photo", "latitude": "51.368920", "id": "245597956", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 13:34:59", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/98/245598685_d9598c88da_o.jpg", "secret": "d9598c88da", "media": "photo", "latitude": "51.368920", "id": "245598685", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 13:35:29", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/93/245598405_4285ac919f_o.jpg", "secret": "4285ac919f", "media": "photo", "latitude": "51.368920", "id": "245598405", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 13:41:04", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/98/245599152_c131dd9a66_o.jpg", "secret": "c131dd9a66", "media": "photo", "latitude": "51.368920", "id": "245599152", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 13:42:19", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/73/245599647_e56e793f5b_o.jpg", "secret": "e56e793f5b", "media": "photo", "latitude": "51.368920", "id": "245599647", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 13:43:47", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/83/245600108_68a5785546_o.jpg", "secret": "68a5785546", "media": "photo", "latitude": "51.368920", "id": "245600108", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 13:50:48", "license": "6", "title": "Open House 06 - Shirley Windmill", "text": "", "album_id": "72157594288057267", "longitude": "-0.054894", "url_o": "https://farm1.staticflickr.com/84/245600662_8534a6287d_o.jpg", "secret": "8534a6287d", "media": "photo", "latitude": "51.368920", "id": "245600662", "tags": "city uk urban building london windmill festival architecture geotagged design south shirley openhouse croydon 1854 geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-17 14:09:46", "license": "6", "title": "Photos from Shirley Windmill on BlockRocker", "text": "", "album_id": "72157594288057267", "longitude": "0", "url_o": "https://farm1.staticflickr.com/79/245799424_df57faa876_o.jpg", "secret": "df57faa876", "media": "photo", "latitude": "0", "id": "245799424", "tags": "city uk urban building london apple windmill festival architecture geotagged design mac firefox googlemaps south osx shirley openhouse geotagging blockrocker geolon0054923298668 geolat5136890705614"}, {"datetaken": "2006-09-03 12:40:16", "license": "4", "title": "Pink and purple", "text": "", "album_id": "72157594276309542", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/238389953_342c4c6d2e_o.jpg", "secret": "342c4c6d2e", "media": "photo", "latitude": "0", "id": "238389953", "tags": "flowers ontario goderich"}, {"datetaken": "2006-09-03 13:59:17", "license": "4", "title": "Lost Skills", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/98/238397267_52ed2ca6b0_o.jpg", "secret": "52ed2ca6b0", "media": "photo", "latitude": "43.743940", "id": "238397267", "tags": "ontario goderich"}, {"datetaken": "2006-09-03 14:02:09", "license": "4", "title": "Red and white and charming", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/96/238399183_175f4826d7_o.jpg", "secret": "175f4826d7", "media": "photo", "latitude": "43.743940", "id": "238399183", "tags": "flowers ontario goderich"}, {"datetaken": "2006-09-03 14:17:13", "license": "4", "title": "Blue bike, painted lady", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/34/238404517_ddee3d8635_o.jpg", "secret": "ddee3d8635", "media": "photo", "latitude": "43.743940", "id": "238404517", "tags": "ontario bicycle goderich"}, {"datetaken": "2006-09-03 14:18:01", "license": "4", "title": "Blue bike, red geraniums", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/35/238405917_eb6d5e216d_o.jpg", "secret": "eb6d5e216d", "media": "photo", "latitude": "43.743940", "id": "238405917", "tags": "blue ontario bicycle goderich"}, {"datetaken": "2006-09-03 14:29:56", "license": "4", "title": "Me 'n' my (gar)goyle", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/90/238408994_af83c8ef02_o.jpg", "secret": "af83c8ef02", "media": "photo", "latitude": "43.743940", "id": "238408994", "tags": "ontario cat tabby gargoyle goderich"}, {"datetaken": "2006-09-03 14:55:04", "license": "4", "title": "Lake glimpses", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/84/238417242_2333aa998f_o.jpg", "secret": "2333aa998f", "media": "photo", "latitude": "43.743940", "id": "238417242", "tags": "ontario goderich"}, {"datetaken": "2006-09-03 14:56:36", "license": "4", "title": "Brick red door", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/96/238417698_16ff5910c0_o.jpg", "secret": "16ff5910c0", "media": "photo", "latitude": "43.743940", "id": "238417698", "tags": "ontario bayfield goderich"}, {"datetaken": "2006-09-03 14:57:27", "license": "4", "title": "Goderich's Castle", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/86/238418163_1a04ca320d_o.jpg", "secret": "1a04ca320d", "media": "photo", "latitude": "43.743940", "id": "238418163", "tags": "ontario bayfield goderich"}, {"datetaken": "2006-09-03 15:05:03", "license": "4", "title": "Roll out the 'barrow", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/97/238421765_0f1eaffc87_o.jpg", "secret": "0f1eaffc87", "media": "photo", "latitude": "43.743940", "id": "238421765", "tags": "ontario vintage yardart goderich"}, {"datetaken": "2006-09-03 15:08:36", "license": "4", "title": "Freedom lies beyond the white picket fence", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/98/238423390_6ee8504b18_o.jpg", "secret": "6ee8504b18", "media": "photo", "latitude": "43.743940", "id": "238423390", "tags": "ontario flower hibiscus goderich"}, {"datetaken": "2006-09-03 15:10:02", "license": "4", "title": "Sunshine Gingerbread", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/84/238425155_9b957a5a72_o.jpg", "secret": "9b957a5a72", "media": "photo", "latitude": "43.743940", "id": "238425155", "tags": "ontario goderich"}, {"datetaken": "2006-09-03 15:11:35", "license": "4", "title": "Dressed Up Brick", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/97/238425498_cbf781a199_o.jpg", "secret": "cbf781a199", "media": "photo", "latitude": "43.743940", "id": "238425498", "tags": "ontario goderich"}, {"datetaken": "2006-09-03 15:16:26", "license": "4", "title": "Lilac Shutters", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/82/238426967_d8535d2e84_o.jpg", "secret": "d8535d2e84", "media": "photo", "latitude": "43.743940", "id": "238426967", "tags": "ontario goderich"}, {"datetaken": "2006-09-03 15:18:40", "license": "4", "title": "The Cannon, Silenced", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/89/238430011_0ad23bb8fc_o.jpg", "secret": "0ad23bb8fc", "media": "photo", "latitude": "43.743940", "id": "238430011", "tags": "ontario canon warof1812 goderich"}, {"datetaken": "2006-09-03 15:21:01", "license": "4", "title": "A Passion for Purple", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/97/238431037_eee8206319_o.jpg", "secret": "eee8206319", "media": "photo", "latitude": "43.743940", "id": "238431037", "tags": "ontario goderich"}, {"datetaken": "2006-09-03 15:22:00", "license": "4", "title": "ZZ Top as Cat ...", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/93/238433476_ccbcb85f0e_o.jpg", "secret": "ccbcb85f0e", "media": "photo", "latitude": "43.743940", "id": "238433476", "tags": "ontario cat bayfield"}, {"datetaken": "2006-09-03 15:22:52", "license": "4", "title": "Driveshed", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/84/238434670_e4dbc04336_o.jpg", "secret": "e4dbc04336", "media": "photo", "latitude": "43.743940", "id": "238434670", "tags": "ontario goderich"}, {"datetaken": "2006-09-03 15:24:49", "license": "4", "title": "Teal and Butter Yellow", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/82/238436203_d911b6dac3_o.jpg", "secret": "d911b6dac3", "media": "photo", "latitude": "43.743940", "id": "238436203", "tags": "ontario goderich"}, {"datetaken": "2006-09-03 15:28:20", "license": "4", "title": "Port of Goderich", "text": "", "album_id": "72157594276309542", "longitude": "-81.709098", "url_o": "https://farm1.staticflickr.com/82/238438146_7ae68259b3_o.jpg", "secret": "7ae68259b3", "media": "photo", "latitude": "43.743940", "id": "238438146", "tags": "ontario goderich"}, {"datetaken": "2006-09-03 18:14:29", "license": "4", "title": "Uncovering history", "text": "", "album_id": "72157594276309542", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/238439870_bd55da87fb_o.jpg", "secret": "bd55da87fb", "media": "photo", "latitude": "0", "id": "238439870", "tags": "ontario bayfield goderich"}, {"datetaken": "2006-09-03 19:03:28", "license": "4", "title": "A Mason's Labour of Love", "text": "", "album_id": "72157594276309542", "longitude": "0", "url_o": "https://farm1.staticflickr.com/89/238445091_e8d76a0f10_o.jpg", "secret": "e8d76a0f10", "media": "photo", "latitude": "0", "id": "238445091", "tags": "ontario bayfield goderich"}, {"datetaken": "2006-09-04 11:25:18", "license": "4", "title": "Ontario Cottage", "text": "", "album_id": "72157594276309542", "longitude": "-81.697340", "url_o": "https://farm1.staticflickr.com/97/238447702_20c55854c5_o.jpg", "secret": "20c55854c5", "media": "photo", "latitude": "43.561766", "id": "238447702", "tags": "ontario bayfield goderich"}, {"datetaken": "2006-09-04 13:26:47", "license": "4", "title": "Patience", "text": "", "album_id": "72157594276309542", "longitude": "-81.697340", "url_o": "https://farm1.staticflickr.com/79/238449447_6f3d79087d_o.jpg", "secret": "6f3d79087d", "media": "photo", "latitude": "43.561766", "id": "238449447", "tags": "dog ontario jackrussell bayfield"}, {"datetaken": "2006-09-04 14:22:09", "license": "4", "title": "Good candy", "text": "", "album_id": "72157594276309542", "longitude": "-81.697340", "url_o": "https://farm1.staticflickr.com/92/238450688_874e71e813_o.jpg", "secret": "874e71e813", "media": "photo", "latitude": "43.561766", "id": "238450688", "tags": "red ontario secondhand bayfield"}, {"datetaken": "2006-09-04 14:24:27", "license": "4", "title": "Thus Turn the Wheels of Confusion", "text": "", "album_id": "72157594276309542", "longitude": "-81.697340", "url_o": "https://farm1.staticflickr.com/79/238451458_dabfae22e7_o.jpg", "secret": "dabfae22e7", "media": "photo", "latitude": "43.561766", "id": "238451458", "tags": "ontario bayfield"}, {"datetaken": "2006-09-04 14:43:10", "license": "4", "title": "A good year for daisies", "text": "", "album_id": "72157594276309542", "longitude": "-81.697340", "url_o": "https://farm1.staticflickr.com/79/238452082_0b12f0c047_o.jpg", "secret": "0b12f0c047", "media": "photo", "latitude": "43.561766", "id": "238452082", "tags": "ontario bayfield goderich"}, {"datetaken": "2006-09-04 14:52:45", "license": "4", "title": "SunMoon", "text": "", "album_id": "72157594276309542", "longitude": "-81.697340", "url_o": "https://farm1.staticflickr.com/90/238452372_3ebf6918b1_o.jpg", "secret": "3ebf6918b1", "media": "photo", "latitude": "43.561766", "id": "238452372", "tags": "ontario bayfield goderich"}, {"datetaken": "2006-09-04 15:00:17", "license": "4", "title": "Atlas as a Boy", "text": "", "album_id": "72157594276309542", "longitude": "-81.697340", "url_o": "https://farm1.staticflickr.com/98/238452791_33b5e39f97_o.jpg", "secret": "33b5e39f97", "media": "photo", "latitude": "43.561766", "id": "238452791", "tags": "ontario bayfield goderich"}, {"datetaken": "2006-09-04 15:41:07", "license": "4", "title": "Moi?", "text": "", "album_id": "72157594276309542", "longitude": "-81.697340", "url_o": "https://farm1.staticflickr.com/89/238455557_82e6694955_o.jpg", "secret": "82e6694955", "media": "photo", "latitude": "43.561766", "id": "238455557", "tags": "ontario bayfield goderich"}, {"datetaken": "2006-09-04 15:52:31", "license": "4", "title": "Window Box", "text": "", "album_id": "72157594276309542", "longitude": "-81.697340", "url_o": "https://farm1.staticflickr.com/86/238456043_bad35b99bc_o.jpg", "secret": "bad35b99bc", "media": "photo", "latitude": "43.561766", "id": "238456043", "tags": "flowers ontario bayfield"}, {"datetaken": "2006-09-04 15:52:38", "license": "4", "title": "Pull up a chair and enjoy the day!", "text": "", "album_id": "72157594276309542", "longitude": "-81.697340", "url_o": "https://farm1.staticflickr.com/91/238456537_69eae74860_o.jpg", "secret": "69eae74860", "media": "photo", "latitude": "43.561766", "id": "238456537", "tags": "ontario bayfield goderich"}, {"datetaken": "2006-09-04 15:52:51", "license": "4", "title": "A Taste of Old Europe in Ontario", "text": "", "album_id": "72157594276309542", "longitude": "-81.697340", "url_o": "https://farm1.staticflickr.com/90/238457039_1040ab6c83_o.jpg", "secret": "1040ab6c83", "media": "photo", "latitude": "43.561766", "id": "238457039", "tags": "ontario bayfield goderich"}, {"datetaken": "2006-09-04 15:56:12", "license": "4", "title": "Burgundy driftwood", "text": "", "album_id": "72157594276309542", "longitude": "-81.697340", "url_o": "https://farm1.staticflickr.com/97/238459362_b9ac68845a_o.jpg", "secret": "b9ac68845a", "media": "photo", "latitude": "43.561766", "id": "238459362", "tags": "ontario bayfield goderich"}, {"datetaken": "2006-09-04 16:16:52", "license": "4", "title": "Cut loose", "text": "", "album_id": "72157594276309542", "longitude": "-81.697340", "url_o": "https://farm1.staticflickr.com/87/238461736_acef7d9ddb_o.jpg", "secret": "acef7d9ddb", "media": "photo", "latitude": "43.561766", "id": "238461736", "tags": "ontario bayfield"}, {"datetaken": "2006-09-04 16:46:39", "license": "4", "title": "Bayfield bike", "text": "", "album_id": "72157594276309542", "longitude": "-81.697340", "url_o": "https://farm1.staticflickr.com/83/238466153_4635f2f8f6_o.jpg", "secret": "4635f2f8f6", "media": "photo", "latitude": "43.561766", "id": "238466153", "tags": "red ontario bicycle bayfield boardandbatten"}, {"datetaken": "2006-09-04 16:47:40", "license": "4", "title": "Teal door", "text": "", "album_id": "72157594276309542", "longitude": "-81.697340", "url_o": "https://farm1.staticflickr.com/86/238466546_b5a4c69f6c_o.jpg", "secret": "b5a4c69f6c", "media": "photo", "latitude": "43.561766", "id": "238466546", "tags": "ontario bayfield goderich"}, {"datetaken": "2006-09-04 16:51:04", "license": "4", "title": "Daisy, Daisy ...", "text": "", "album_id": "72157594276309542", "longitude": "-81.697340", "url_o": "https://farm1.staticflickr.com/85/238469376_8126bc8b8c_o.jpg", "secret": "8126bc8b8c", "media": "photo", "latitude": "43.561766", "id": "238469376", "tags": "sculpture ontario flower garden bayfield gardenstatues"}, {"datetaken": "2006-09-04 16:53:56", "license": "4", "title": "Green Shutters", "text": "", "album_id": "72157594276309542", "longitude": "-81.697340", "url_o": "https://farm1.staticflickr.com/81/238474420_2588a5e9d5_o.jpg", "secret": "2588a5e9d5", "media": "photo", "latitude": "43.561766", "id": "238474420", "tags": "ontario bayfield goderich"}, {"datetaken": "2006-09-04 17:11:26", "license": "4", "title": "Daisyville", "text": "", "album_id": "72157594276309542", "longitude": "0", "url_o": "https://farm1.staticflickr.com/95/238386494_9ac087359c_o.jpg", "secret": "9ac087359c", "media": "photo", "latitude": "0", "id": "238386494", "tags": "ontario bayfield"}, {"datetaken": "2007-01-08 20:05:10", "license": "3", "title": "Yass_Service_Centre_sunset_04404", "text": "", "album_id": "72157594471131188", "longitude": "148.879680", "url_o": "https://farm1.staticflickr.com/133/352662509_d3d0c00d6f_o.jpg", "secret": "d3d0c00d6f", "media": "photo", "latitude": "-34.805980", "id": "352662509", "tags": "sunset australia newsouthwales canberra yass australiancapitalterritory"}, {"datetaken": "2007-01-09 12:26:48", "license": "3", "title": "kitten_in_box_04406", "text": "", "album_id": "72157594471131188", "longitude": "149.218744", "url_o": "https://farm1.staticflickr.com/150/352662975_7f1b9e1cdb_o.jpg", "secret": "7f1b9e1cdb", "media": "photo", "latitude": "-35.343537", "id": "352662975", "tags": "cat kitten australia canberra parliamenthouse australiancapitalterritory"}, {"datetaken": "2007-01-09 15:25:26", "license": "3", "title": "Parliament_House_carpark_sign_04407", "text": "", "album_id": "72157594471131188", "longitude": "149.126293", "url_o": "https://farm1.staticflickr.com/59/352659478_83c87b16ff_o.jpg", "secret": "83c87b16ff", "media": "photo", "latitude": "-35.306562", "id": "352659478", "tags": "australia canberra parliamenthouse australiancapitalterritory"}, {"datetaken": "2007-01-09 15:27:59", "license": "3", "title": "Parliament_house_drought_04408", "text": "", "album_id": "72157594471131188", "longitude": "149.125660", "url_o": "https://farm1.staticflickr.com/162/352662043_ca4849b518_o.jpg", "secret": "ca4849b518", "media": "photo", "latitude": "-35.306737", "id": "352662043", "tags": "australia canberra parliamenthouse australiancapitalterritory"}, {"datetaken": "2007-01-09 15:34:58", "license": "3", "title": "Mik_Parliament_House_04409", "text": "", "album_id": "72157594471131188", "longitude": "149.125338", "url_o": "https://farm1.staticflickr.com/125/352653694_b0fbf23883_o.jpg", "secret": "b0fbf23883", "media": "photo", "latitude": "-35.307114", "id": "352653694", "tags": "australia canberra parliamenthouse australiancapitalterritory"}, {"datetaken": "2007-01-09 15:40:55", "license": "3", "title": "Mik_Parliament_House_04410", "text": "", "album_id": "72157594471131188", "longitude": "149.124727", "url_o": "https://farm1.staticflickr.com/158/352655910_05eb6b8263_o.jpg", "secret": "05eb6b8263", "media": "photo", "latitude": "-35.305984", "id": "352655910", "tags": "australia canberra parliamenthouse australiancapitalterritory"}, {"datetaken": "2007-01-09 15:42:57", "license": "3", "title": "Parliament_House_ibii_04411", "text": "", "album_id": "72157594471131188", "longitude": "149.124619", "url_o": "https://farm1.staticflickr.com/146/352661021_ae5a2d41e6_o.jpg", "secret": "ae5a2d41e6", "media": "photo", "latitude": "-35.306882", "id": "352661021", "tags": "australia canberra parliamenthouse australiancapitalterritory"}, {"datetaken": "2007-01-09 15:43:41", "license": "3", "title": "Parliament_House_ibii_04412", "text": "", "album_id": "72157594471131188", "longitude": "149.124619", "url_o": "https://farm1.staticflickr.com/146/352661518_aff404cb89_o.jpg", "secret": "aff404cb89", "media": "photo", "latitude": "-35.306882", "id": "352661518", "tags": "australia canberra parliamenthouse australiancapitalterritory"}, {"datetaken": "2007-01-09 15:45:56", "license": "3", "title": "trespassing_signs_04414", "text": "", "album_id": "72157594471131188", "longitude": "149.124609", "url_o": "https://farm1.staticflickr.com/143/352663960_a290989ad0_o.jpg", "secret": "a290989ad0", "media": "photo", "latitude": "-35.307302", "id": "352663960", "tags": "australia canberra parliamenthouse australiancapitalterritory"}, {"datetaken": "2007-01-09 15:46:25", "license": "3", "title": "trespassing_signs_04415", "text": "", "album_id": "72157594471131188", "longitude": "149.124609", "url_o": "https://farm1.staticflickr.com/160/352664689_7e86d8ab60_o.jpg", "secret": "7e86d8ab60", "media": "photo", "latitude": "-35.307302", "id": "352664689", "tags": "australia canberra parliamenthouse australiancapitalterritory"}, {"datetaken": "2007-01-09 15:47:24", "license": "3", "title": "lady_bug_pointed_towards_City_04417", "text": "", "album_id": "72157594471131188", "longitude": "149.124619", "url_o": "https://farm1.staticflickr.com/143/352663336_2a0d7583a5_o.jpg", "secret": "2a0d7583a5", "media": "photo", "latitude": "-35.306882", "id": "352663336", "tags": "australia canberra parliamenthouse australiancapitalterritory"}, {"datetaken": "2007-01-09 15:49:57", "license": "3", "title": "Mik_Canberra_04418", "text": "", "album_id": "72157594471131188", "longitude": "149.124802", "url_o": "https://farm1.staticflickr.com/31/352653166_e8a4615fcc_o.jpg", "secret": "e8a4615fcc", "media": "photo", "latitude": "-35.306632", "id": "352653166", "tags": "australia canberra parliamenthouse australiancapitalterritory"}, {"datetaken": "2007-01-09 15:52:04", "license": "3", "title": "Parliament_House_drought_04419", "text": "", "album_id": "72157594471131188", "longitude": "149.124737", "url_o": "https://farm1.staticflickr.com/147/352660272_2eb37987af_o.jpg", "secret": "2eb37987af", "media": "photo", "latitude": "-35.306860", "id": "352660272", "tags": "australia canberra parliamenthouse australiancapitalterritory"}, {"datetaken": "2007-01-09 15:56:26", "license": "3", "title": "Parliament_House_04422", "text": "", "album_id": "72157594471131188", "longitude": "149.126476", "url_o": "https://farm1.staticflickr.com/140/352658789_98dfdcee71_o.jpg", "secret": "98dfdcee71", "media": "photo", "latitude": "-35.305879", "id": "352658789", "tags": "australia canberra parliamenthouse australiancapitalterritory"}, {"datetaken": "2007-01-09 17:46:04", "license": "3", "title": "Aboriginal_Embassay_04424", "text": "", "album_id": "72157594471131188", "longitude": "149.129844", "url_o": "https://farm1.staticflickr.com/147/352652583_347bf45cc5_o.jpg", "secret": "347bf45cc5", "media": "photo", "latitude": "-35.301283", "id": "352652583", "tags": "australia canberra australiancapitalterritory"}, {"datetaken": "2007-01-20 09:25:02", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/365698434_d63fe4bdaa_o.jpg", "secret": "d63fe4bdaa", "media": "photo", "latitude": "0", "id": "365698434", "tags": "india canon fort maharashtra vasai a540 greatindia"}, {"datetaken": "2007-01-20 09:26:39", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/365697146_8835c2f87a_o.jpg", "secret": "8835c2f87a", "media": "photo", "latitude": "0", "id": "365697146", "tags": ""}, {"datetaken": "2007-01-20 09:41:15", "license": "4", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/365697723_0d0e26c3a0_o.jpg", "secret": "0d0e26c3a0", "media": "photo", "latitude": "0", "id": "365697723", "tags": "india canon fort maharashtra vasai a540 greatindia basseinfort"}, {"datetaken": "2007-01-20 09:48:33", "license": "4", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/118/365691911_0b3c123605_o.jpg", "secret": "0b3c123605", "media": "photo", "latitude": "0", "id": "365691911", "tags": "india canon maharashtra vasai a540 greatindia"}, {"datetaken": "2007-01-20 09:49:04", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/365691638_ecc4347e0c_o.jpg", "secret": "ecc4347e0c", "media": "photo", "latitude": "0", "id": "365691638", "tags": ""}, {"datetaken": "2007-01-20 09:49:16", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/365691548_d8a040e715_o.jpg", "secret": "d8a040e715", "media": "photo", "latitude": "0", "id": "365691548", "tags": ""}, {"datetaken": "2007-01-20 09:50:03", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/365690132_20aea43f38_o.jpg", "secret": "20aea43f38", "media": "photo", "latitude": "0", "id": "365690132", "tags": "india canon fort maharashtra vasai a540 greatindia"}, {"datetaken": "2007-01-20 09:50:55", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/365697063_1e12ddfe80_o.jpg", "secret": "1e12ddfe80", "media": "photo", "latitude": "0", "id": "365697063", "tags": ""}, {"datetaken": "2007-01-20 09:51:31", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/366896128_828e291c28_o.jpg", "secret": "828e291c28", "media": "photo", "latitude": "0", "id": "366896128", "tags": "india canon fort maharashtra vasai bassein a540 greatindia basseinfort"}, {"datetaken": "2007-01-20 09:51:52", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/119/365689952_04715d3d00_o.jpg", "secret": "04715d3d00", "media": "photo", "latitude": "0", "id": "365689952", "tags": "india canon fort maharashtra vasai a540 greatindia"}, {"datetaken": "2007-01-20 09:52:28", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/365696670_012c5cbfe8_o.jpg", "secret": "012c5cbfe8", "media": "photo", "latitude": "0", "id": "365696670", "tags": ""}, {"datetaken": "2007-01-20 09:52:28", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/365690913_27615652a4_o.jpg", "secret": "27615652a4", "media": "photo", "latitude": "0", "id": "365690913", "tags": ""}, {"datetaken": "2007-01-20 09:52:48", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/365697554_ccb4de767c_o.jpg", "secret": "ccb4de767c", "media": "photo", "latitude": "0", "id": "365697554", "tags": ""}, {"datetaken": "2007-01-20 09:55:21", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/117/365696958_6afd438b42_o.jpg", "secret": "6afd438b42", "media": "photo", "latitude": "0", "id": "365696958", "tags": ""}, {"datetaken": "2007-01-20 09:56:09", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/365696803_cb878fba45_o.jpg", "secret": "cb878fba45", "media": "photo", "latitude": "0", "id": "365696803", "tags": ""}, {"datetaken": "2007-01-20 10:11:36", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/365697864_87faafc53e_o.jpg", "secret": "87faafc53e", "media": "photo", "latitude": "0", "id": "365697864", "tags": ""}, {"datetaken": "2007-01-20 10:20:55", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/365697338_e6654739a1_o.jpg", "secret": "e6654739a1", "media": "photo", "latitude": "0", "id": "365697338", "tags": "india canon fort maharashtra a540 greatindia"}, {"datetaken": "2007-01-20 10:21:05", "license": "4", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/365691437_d560b42798_o.jpg", "secret": "d560b42798", "media": "photo", "latitude": "0", "id": "365691437", "tags": ""}, {"datetaken": "2007-01-20 10:23:23", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/365698258_e2c286395e_o.jpg", "secret": "e2c286395e", "media": "photo", "latitude": "0", "id": "365698258", "tags": ""}, {"datetaken": "2007-01-20 10:23:37", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/365698030_fdda907463_o.jpg", "secret": "fdda907463", "media": "photo", "latitude": "0", "id": "365698030", "tags": ""}, {"datetaken": "2007-01-20 10:44:17", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/103/365691257_0ad1e5a614_o.jpg", "secret": "0ad1e5a614", "media": "photo", "latitude": "0", "id": "365691257", "tags": ""}, {"datetaken": "2007-01-20 10:45:05", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/365697455_6b4738d873_o.jpg", "secret": "6b4738d873", "media": "photo", "latitude": "0", "id": "365697455", "tags": ""}, {"datetaken": "2007-01-20 10:45:46", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/365690521_eaca1ff212_o.jpg", "secret": "eaca1ff212", "media": "photo", "latitude": "0", "id": "365690521", "tags": "india canon maharashtra vasai a540 greatindia"}, {"datetaken": "2007-01-20 10:47:15", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/365690256_ea6c1ad203_o.jpg", "secret": "ea6c1ad203", "media": "photo", "latitude": "0", "id": "365690256", "tags": "india canon fort maharashtra vasai a540 greatindia"}, {"datetaken": "2007-01-20 10:48:23", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/115/365689840_356917796d_o.jpg", "secret": "356917796d", "media": "photo", "latitude": "0", "id": "365689840", "tags": ""}, {"datetaken": "2007-01-20 10:51:14", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/365689745_c073cc48f3_o.jpg", "secret": "c073cc48f3", "media": "photo", "latitude": "0", "id": "365689745", "tags": "india canon maharashtra vasai a540 greatindia"}, {"datetaken": "2007-01-20 10:51:41", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/119/365698990_99e45093bf_o.jpg", "secret": "99e45093bf", "media": "photo", "latitude": "0", "id": "365698990", "tags": ""}, {"datetaken": "2007-01-20 10:52:12", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/365698753_8375b556d0_o.jpg", "secret": "8375b556d0", "media": "photo", "latitude": "0", "id": "365698753", "tags": ""}, {"datetaken": "2007-01-20 11:21:45", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/365690725_6b785fd7cb_o.jpg", "secret": "6b785fd7cb", "media": "photo", "latitude": "0", "id": "365690725", "tags": "india canon fort maharashtra vasai a540 greatindia basseinfort"}, {"datetaken": "2007-01-20 11:22:20", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/121/365691128_e0a5450cc6_o.jpg", "secret": "e0a5450cc6", "media": "photo", "latitude": "0", "id": "365691128", "tags": "india canon fort maharashtra vasai a540 greatindia basseinfort"}, {"datetaken": "2007-01-20 11:23:14", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/365699114_35b08f6b62_o.jpg", "secret": "35b08f6b62", "media": "photo", "latitude": "0", "id": "365699114", "tags": "india canon fort maharashtra vasai a540 greatindia basseinfort"}, {"datetaken": "2007-01-20 11:23:32", "license": "4", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/365699613_eb9808e0f1_o.jpg", "secret": "eb9808e0f1", "media": "photo", "latitude": "0", "id": "365699613", "tags": "india canon fort maharashtra vasai a540 greatindia basseinfort"}, {"datetaken": "2007-01-20 11:47:53", "license": "3", "title": "Bassein Fort", "text": "", "album_id": "72157600124866471", "longitude": "0", "url_o": "https://farm1.staticflickr.com/108/365699703_cf97756162_o.jpg", "secret": "cf97756162", "media": "photo", "latitude": "0", "id": "365699703", "tags": "india canon fort maharashtra vasai bassein a540 greatindia basseinfort"}, {"datetaken": "2007-02-04 06:39:00", "license": "4", "title": "26 Euro for breakfast?", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/381117607_a8c04dd643_o.jpg", "secret": "a8c04dd643", "media": "photo", "latitude": "0", "id": "381117607", "tags": "blackandwhite paris highcontrast alloftomspictures"}, {"datetaken": "2007-02-04 06:48:26", "license": "4", "title": "Oh ya, now we're talking", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/381117818_2d4658b964_o.jpg", "secret": "2d4658b964", "media": "photo", "latitude": "0", "id": "381117818", "tags": "blackandwhite paris highcontrast alloftomspictures"}, {"datetaken": "2007-02-04 06:55:03", "license": "4", "title": "Sneaking an anglosaxon breakfast in paris.", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/381117916_ff3c540166_o.jpg", "secret": "ff3c540166", "media": "photo", "latitude": "0", "id": "381117916", "tags": "paris alloftomspictures"}, {"datetaken": "2007-02-04 08:40:05", "license": "4", "title": "It's hard not find this place smack in the miidle of a medieval city.", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/380940923_4b57340c75_o.jpg", "secret": "4b57340c75", "media": "photo", "latitude": "0", "id": "380940923", "tags": "paris alloftomspictures notredammes"}, {"datetaken": "2007-02-04 09:04:38", "license": "4", "title": "DSCF0282", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/381118034_153037d93a_o.jpg", "secret": "153037d93a", "media": "photo", "latitude": "0", "id": "381118034", "tags": "blackandwhite paris highcontrast alloftomspictures"}, {"datetaken": "2007-02-04 09:12:23", "license": "4", "title": "N", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/381120107_04603d2b30_o.jpg", "secret": "04603d2b30", "media": "photo", "latitude": "0", "id": "381120107", "tags": "blackandwhite paris highcontrast alloftomspictures"}, {"datetaken": "2007-02-04 09:15:19", "license": "4", "title": "DSCF0292-2", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/381119705_6decb58f70_o.jpg", "secret": "6decb58f70", "media": "photo", "latitude": "0", "id": "381119705", "tags": "blackandwhite paris highcontrast alloftomspictures"}, {"datetaken": "2007-02-04 09:15:19", "license": "4", "title": "DSCF0292", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/381119495_b742e0bcab_o.jpg", "secret": "b742e0bcab", "media": "photo", "latitude": "0", "id": "381119495", "tags": "blackandwhite paris highcontrast alloftomspictures"}, {"datetaken": "2007-02-04 09:21:36", "license": "4", "title": "Pont Saint Michel", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/381119840_f878a2e426_o.jpg", "secret": "f878a2e426", "media": "photo", "latitude": "0", "id": "381119840", "tags": "blackandwhite paris highcontrast alloftomspictures"}, {"datetaken": "2007-02-04 09:22:14", "license": "4", "title": "Pont Saint Michel", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/120/381119802_87b26c454b_o.jpg", "secret": "87b26c454b", "media": "photo", "latitude": "0", "id": "381119802", "tags": "blackandwhite paris highcontrast alloftomspictures"}, {"datetaken": "2007-02-04 09:29:46", "license": "4", "title": "Not Dammes agains jet trails", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/381119374_d39b759647_o.jpg", "secret": "d39b759647", "media": "photo", "latitude": "0", "id": "381119374", "tags": "blackandwhite paris highcontrast alloftomspictures"}, {"datetaken": "2007-02-04 09:31:03", "license": "4", "title": "Charlemagne and friend", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/381119208_6cb338e9f0_o.jpg", "secret": "6cb338e9f0", "media": "photo", "latitude": "0", "id": "381119208", "tags": "blackandwhite paris highcontrast alloftomspictures"}, {"datetaken": "2007-02-04 09:31:03", "license": "4", "title": "DSCF0301-1", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/381119035_7061945e8f_o.jpg", "secret": "7061945e8f", "media": "photo", "latitude": "0", "id": "381119035", "tags": "blackandwhite paris highcontrast alloftomspictures"}, {"datetaken": "2007-02-04 09:34:19", "license": "4", "title": "DSCF0306", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/381118174_18965e07b7_o.jpg", "secret": "18965e07b7", "media": "photo", "latitude": "0", "id": "381118174", "tags": "blackandwhite paris highcontrast alloftomspictures"}, {"datetaken": "2007-02-04 09:35:38", "license": "4", "title": "DSCF0308", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/381118437_bbe4e28791_o.jpg", "secret": "bbe4e28791", "media": "photo", "latitude": "0", "id": "381118437", "tags": "blackandwhite paris highcontrast alloftomspictures"}, {"datetaken": "2007-02-04 09:36:04", "license": "4", "title": "DSCF0309", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/381118759_c1c74cab71_o.jpg", "secret": "c1c74cab71", "media": "photo", "latitude": "0", "id": "381118759", "tags": "blackandwhite paris highcontrast alloftomspictures"}, {"datetaken": "2007-02-04 09:54:29", "license": "4", "title": "projected and reflected light", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/380941286_e1ec285110_o.jpg", "secret": "e1ec285110", "media": "photo", "latitude": "0", "id": "380941286", "tags": "paris france reflection church glass arch cathedral gothic alloftomspictures notredammes"}, {"datetaken": "2007-02-04 09:55:34", "license": "4", "title": "Notre Dammes", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/380942290_f56b636c97_o.jpg", "secret": "f56b636c97", "media": "photo", "latitude": "0", "id": "380942290", "tags": "paris alloftomspictures notredammes"}, {"datetaken": "2007-02-04 09:56:00", "license": "4", "title": "Notre Dammes gets a really good choir", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/380941556_d0931bd933_o.jpg", "secret": "d0931bd933", "media": "photo", "latitude": "0", "id": "380941556", "tags": "paris alloftomspictures notredammes"}, {"datetaken": "2007-02-04 09:58:55", "license": "4", "title": "Famous mop-tops of the first century", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/380941988_6246197046_o.jpg", "secret": "6246197046", "media": "photo", "latitude": "0", "id": "380941988", "tags": "paris alloftomspictures notredammes"}, {"datetaken": "2007-02-04 09:59:12", "license": "4", "title": "Don't mess with the Jesus", "text": "", "album_id": "72157594519705399", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/380941675_a295616659_o.jpg", "secret": "a295616659", "media": "photo", "latitude": "0", "id": "380941675", "tags": "paris alloftomspictures notredammes"}, {"datetaken": "2007-02-10 16:46:18", "license": "5", "title": "alley", "text": "", "album_id": "72157594528410844", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/385872005_bc220e4057_o.jpg", "secret": "bc220e4057", "media": "photo", "latitude": "0", "id": "385872005", "tags": "mississippiriver oldmill leatherworks carletonplace queenshotel bridgest"}, {"datetaken": "2007-02-10 16:46:21", "license": "5", "title": "Part of Antique Signage", "text": "", "album_id": "72157594528410844", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/385872053_65351f3b12_o.jpg", "secret": "65351f3b12", "media": "photo", "latitude": "0", "id": "385872053", "tags": "mississippiriver oldmill leatherworks carletonplace queenshotel bridgest"}, {"license": "0", "title": "boys closeup", "farm": "1", "text": "", "album_id": "72157594528410844", "secret": "4ef6fb6844", "longitude": "0", "server": "167", "datetaken": "2007-02-10 16:46:24", "url_m": "https://farm1.staticflickr.com/167/385872093_4ef6fb6844.jpg", "media": "photo", "latitude": "0", "id": "385872093", "tags": "mississippiriver oldmill leatherworks carletonplace queenshotel bridgest"}, {"datetaken": "2007-02-10 16:46:27", "license": "5", "title": "boys diving", "text": "", "album_id": "72157594528410844", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/385872133_b823124b8b_o.jpg", "secret": "b823124b8b", "media": "photo", "latitude": "0", "id": "385872133", "tags": "mississippiriver oldmill leatherworks carletonplace queenshotel bridgest"}, {"datetaken": "2007-02-10 16:46:30", "license": "5", "title": "Carleton Place Old Post Office", "text": "", "album_id": "72157594528410844", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/385872173_b8e10e5dd2_o.jpg", "secret": "b8e10e5dd2", "media": "photo", "latitude": "0", "id": "385872173", "tags": "mississippiriver oldmill leatherworks carletonplace queenshotel bridgest"}, {"datetaken": "2007-02-10 16:46:35", "license": "5", "title": "dive 2", "text": "", "album_id": "72157594528410844", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/385872280_98ae7091fe_o.jpg", "secret": "98ae7091fe", "media": "photo", "latitude": "0", "id": "385872280", "tags": "mississippiriver oldmill leatherworks carletonplace queenshotel bridgest"}, {"license": "0", "title": "exposure", "farm": "1", "text": "", "album_id": "72157594528410844", "secret": "4a74c2ad82", "longitude": "0", "server": "180", "datetaken": "2007-02-10 16:46:38", "url_m": "https://farm1.staticflickr.com/180/385872310_4a74c2ad82.jpg", "media": "photo", "latitude": "0", "id": "385872310", "tags": "mississippiriver oldmill leatherworks carletonplace queenshotel bridgest"}, {"datetaken": "2007-02-10 16:46:41", "license": "5", "title": "A Closed Business on Bridge Street.", "text": "", "album_id": "72157594528410844", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/385872338_468cb46489_o.jpg", "secret": "468cb46489", "media": "photo", "latitude": "0", "id": "385872338", "tags": "mississippiriver oldmill leatherworks carletonplace queenshotel bridgest"}, {"datetaken": "2007-02-10 16:46:44", "license": "5", "title": "", "text": "", "album_id": "72157594528410844", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/385872389_536882af19_o.jpg", "secret": "536882af19", "media": "photo", "latitude": "0", "id": "385872389", "tags": "mississippiriver oldmill leatherworks carletonplace queenshotel bridgest"}, {"datetaken": "2007-02-10 16:46:47", "license": "5", "title": "Leatherworks", "text": "", "album_id": "72157594528410844", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/385872426_a662a6a675_o.jpg", "secret": "a662a6a675", "media": "photo", "latitude": "0", "id": "385872426", "tags": "mississippiriver oldmill leatherworks carletonplace queenshotel bridgest"}, {"license": "0", "title": "lindas shop", "farm": "1", "text": "", "album_id": "72157594528410844", "secret": "616eea8d9a", "longitude": "0", "server": "141", "datetaken": "2007-02-10 16:46:50", "url_m": "https://farm1.staticflickr.com/141/385872470_616eea8d9a.jpg", "media": "photo", "latitude": "0", "id": "385872470", "tags": "mississippiriver oldmill leatherworks carletonplace queenshotel bridgest"}, {"datetaken": "2007-02-10 16:46:54", "license": "5", "title": "Old Carleton Place Post", "text": "", "album_id": "72157594528410844", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/385872509_ed7420c2d0_o.jpg", "secret": "ed7420c2d0", "media": "photo", "latitude": "0", "id": "385872509", "tags": "mississippiriver oldmill leatherworks carletonplace queenshotel bridgest"}, {"datetaken": "2007-02-10 16:46:57", "license": "5", "title": "queens hotel mural", "text": "", "album_id": "72157594528410844", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/385872548_e875d2f1e9_o.jpg", "secret": "e875d2f1e9", "media": "photo", "latitude": "0", "id": "385872548", "tags": "mississippiriver oldmill leatherworks carletonplace queenshotel bridgest"}, {"datetaken": "2007-02-10 16:47:01", "license": "5", "title": "swim boy", "text": "", "album_id": "72157594528410844", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/385872598_c3c6cb5dba_o.jpg", "secret": "c3c6cb5dba", "media": "photo", "latitude": "0", "id": "385872598", "tags": "mississippiriver oldmill leatherworks carletonplace queenshotel bridgest"}, {"datetaken": "2007-02-10 16:47:05", "license": "5", "title": "the unswimming hole", "text": "", "album_id": "72157594528410844", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/385872656_cb4cfd324a_o.jpg", "secret": "cb4cfd324a", "media": "photo", "latitude": "0", "id": "385872656", "tags": "mississippiriver oldmill leatherworks carletonplace queenshotel bridgest"}, {"license": "0", "title": "meld to reflections", "farm": "1", "text": "", "album_id": "72157594528410844", "secret": "69c190a256", "longitude": "0", "server": "161", "datetaken": "2007-02-11 12:48:56", "url_m": "https://farm1.staticflickr.com/161/386817568_69c190a256.jpg", "media": "photo", "latitude": "0", "id": "386817568", "tags": "1999 1994 wildflower carletonplace redcardinal"}, {"license": "0", "title": "Cat in Blue", "farm": "1", "text": "", "album_id": "72157594528410844", "secret": "b76d7f0741", "longitude": "0", "server": "162", "datetaken": "2007-02-11 12:48:58", "url_m": "https://farm1.staticflickr.com/162/386817625_b76d7f0741.jpg", "media": "photo", "latitude": "0", "id": "386817625", "tags": "1999 1994 wildflower carletonplace redcardinal"}, {"license": "0", "title": "Cardinals Marker :platbel", "farm": "1", "text": "", "album_id": "72157594528410844", "secret": "e69c4be0fe", "longitude": "0", "server": "156", "datetaken": "2007-02-11 12:49:02", "url_m": "https://farm1.staticflickr.com/156/386817718_e69c4be0fe.jpg", "media": "photo", "latitude": "0", "id": "386817718", "tags": "1999 1994 wildflower carletonplace redcardinal"}, {"datetaken": "2007-02-11 12:49:04", "license": "5", "title": "Black Wha-?", "text": "", "album_id": "72157594528410844", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/386817769_d4da7e5006_o.jpg", "secret": "d4da7e5006", "media": "photo", "latitude": "0", "id": "386817769", "tags": "1999 1994 wildflower carletonplace redcardinal"}, {"license": "0", "title": "backyard in Carleton Place", "farm": "1", "text": "", "album_id": "72157594528410844", "secret": "13f7e2a2a1", "longitude": "0", "server": "156", "datetaken": "2007-02-11 12:49:07", "url_m": "https://farm1.staticflickr.com/156/386817833_13f7e2a2a1.jpg", "media": "photo", "latitude": "0", "id": "386817833", "tags": "1999 1994 wildflower carletonplace redcardinal"}, {"license": "0", "title": "doris", "farm": "1", "text": "", "album_id": "72157594528410844", "secret": "cbced60974", "longitude": "0", "server": "145", "datetaken": "2007-02-11 12:49:10", "url_m": "https://farm1.staticflickr.com/145/386817883_cbced60974.jpg", "media": "photo", "latitude": "0", "id": "386817883", "tags": "1999 1994 wildflower carletonplace redcardinal"}, {"license": "0", "title": "The Proudest Canuck", "farm": "1", "text": "", "album_id": "72157594528410844", "secret": "239affb31c", "longitude": "0", "server": "127", "datetaken": "2007-02-11 12:49:12", "url_m": "https://farm1.staticflickr.com/127/386817931_239affb31c.jpg", "media": "photo", "latitude": "0", "id": "386817931", "tags": "1999 1994 wildflower carletonplace redcardinal"}, {"license": "0", "title": "Stopping by the Rivers' Edge", "farm": "1", "text": "", "album_id": "72157594528410844", "secret": "0ce9874a4b", "longitude": "0", "server": "131", "datetaken": "2007-02-11 12:49:15", "url_m": "https://farm1.staticflickr.com/131/386817990_0ce9874a4b.jpg", "media": "photo", "latitude": "0", "id": "386817990", "tags": "1999 1994 wildflower carletonplace redcardinal"}, {"license": "0", "title": "horsetail woods", "farm": "1", "text": "", "album_id": "72157594528410844", "secret": "6a9949a70a", "longitude": "0", "server": "139", "datetaken": "2007-02-12 16:12:00", "url_m": "https://farm1.staticflickr.com/139/388369219_6a9949a70a.jpg", "media": "photo", "latitude": "0", "id": "388369219", "tags": "ontario woods meadow horsetail carletonplace"}, {"license": "0", "title": "hawthorn", "farm": "1", "text": "", "album_id": "72157594528410844", "secret": "6cf7de97eb", "longitude": "0", "server": "151", "datetaken": "2007-02-12 16:12:05", "url_m": "https://farm1.staticflickr.com/151/388369280_6cf7de97eb.jpg", "media": "photo", "latitude": "0", "id": "388369280", "tags": "ontario woods meadow hawthorn carletonplace"}, {"license": "0", "title": "Still tending His phlox", "farm": "1", "text": "", "album_id": "72157594528410844", "secret": "5a348bec30", "longitude": "0", "server": "163", "datetaken": "2007-02-12 16:12:07", "url_m": "https://farm1.staticflickr.com/163/388369318_5a348bec30.jpg", "media": "photo", "latitude": "0", "id": "388369318", "tags": "ontario woods meadow canoe horsetail carletonplace waterhyacynth unflagpark nightscentedphlox"}, {"datetaken": "2007-02-12 16:12:12", "license": "5", "title": "United Nations Flag Park, across from townhall", "text": "", "album_id": "72157594528410844", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/388369371_32b96759d9_o.jpg", "secret": "32b96759d9", "media": "photo", "latitude": "0", "id": "388369371", "tags": "ontario woods meadow canoe horsetail carletonplace waterhyacynth unflagpark"}, {"license": "0", "title": "water hyacynth", "farm": "1", "text": "", "album_id": "72157594528410844", "secret": "cb6091fd55", "longitude": "0", "server": "156", "datetaken": "2007-02-12 16:12:14", "url_m": "https://farm1.staticflickr.com/156/388369413_cb6091fd55.jpg", "media": "photo", "latitude": "0", "id": "388369413", "tags": "ontario woods meadow canoe horsetail carletonplace waterhyacynth unflagpark"}, {"datetaken": "2007-02-12 16:12:18", "license": "5", "title": "canoe dockside", "text": "", "album_id": "72157594528410844", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/388369470_572950e4f6_o.jpg", "secret": "572950e4f6", "media": "photo", "latitude": "0", "id": "388369470", "tags": "ontario woods meadow canoe horsetail carletonplace waterhyacynth unflagpark"}, {"datetaken": "2006-06-18 13:29:00", "license": "3", "title": "The big steam locomotives", "text": "", "album_id": "72157594571416820", "longitude": "1.732063", "url_o": "https://farm1.staticflickr.com/139/392255107_a2bfcfd8b9_o.jpg", "secret": "a2bfcfd8b9", "media": "photo", "latitude": "41.221147", "id": "392255107", "tags": "barcelona espa\u00f1a museum trenes spain trains steam catalunya museo espagne hdr vapour vapor garraf locomotives ferrocarril espanya locomotoras vilanovailageltr\u00fa tonemapping singleraw artizen stockham"}, {"datetaken": "2006-06-18 13:36:44", "license": "3", "title": "Talgo Series 353", "text": "", "album_id": "72157594571416820", "longitude": "1.732063", "url_o": "https://farm1.staticflickr.com/176/392254635_2c780f831d_o.jpg", "secret": "b613b0fc8a", "media": "photo", "latitude": "41.221147", "id": "392254635", "tags": "barcelona espa\u00f1a museum trenes spain diesel trains catalunya museo espagne garraf locomotives ferrocarril talgo espanya locomotoras vilanovailageltr\u00fa localcontrast impressedbeauty"}, {"datetaken": "2006-06-18 13:39:00", "license": "3", "title": "Locomotive 0-3-0 2013 \"Mamut\"", "text": "", "album_id": "72157594571416820", "longitude": "1.732063", "url_o": "https://farm1.staticflickr.com/142/392253437_0d39b246b4_o.jpg", "secret": "0d39b246b4", "media": "photo", "latitude": "41.221147", "id": "392253437", "tags": "barcelona espa\u00f1a museum trenes spain trains steam catalunya museo espagne hdr vapour vapor garraf locomotives ferrocarril espanya locomotoras mamut vilanovailageltr\u00fa supershot tonemapping singleraw artizen stockham impressedbeauty superbmasterpiece travelerphotos goldenphotographer"}, {"datetaken": "2006-06-18 13:41:52", "license": "3", "title": "Locomotive 2-2-0 2005", "text": "", "album_id": "72157594571416820", "longitude": "1.732063", "url_o": "https://farm1.staticflickr.com/153/391442332_cf83d151e0_o.jpg", "secret": "572bfff61e", "media": "photo", "latitude": "41.221147", "id": "391442332", "tags": "barcelona espa\u00f1a museum trenes spain museu trains museo espagne vapour vapor locomotives ferrocarril espanya locomotoras vilanovailageltr\u00fa richhartmanchemitz ml30"}, {"datetaken": "2006-06-18 13:43:00", "license": "3", "title": "Locomotive 1-2-0 2131", "text": "", "album_id": "72157594571416820", "longitude": "1.732063", "url_o": "https://farm1.staticflickr.com/165/392253298_2e68cd98d6_o.jpg", "secret": "2e68cd98d6", "media": "photo", "latitude": "41.221147", "id": "392253298", "tags": "barcelona espa\u00f1a museum trenes spain trains steam catalunya museo espagne hdr vapour vapor garraf locomotives ferrocarril espanya locomotoras vilanovailageltr\u00fa tonemapping singleraw artizen stockham richhartmannchemnitz"}, {"datetaken": "2006-06-18 13:43:39", "license": "3", "title": "Locomotive 2-2-0 2023", "text": "", "album_id": "72157594571416820", "longitude": "1.732063", "url_o": "https://farm1.staticflickr.com/169/392253617_6c7543628d_o.jpg", "secret": "52f098d183", "media": "photo", "latitude": "41.221147", "id": "392253617", "tags": "barcelona espa\u00f1a museum trenes spain trains steam catalunya museo espagne vapour vapor garraf locomotives ferrocarril espanya locomotoras vilanovailageltr\u00fa supershot localcontrast"}, {"datetaken": "2006-06-18 13:45:00", "license": "3", "title": "Linda Tapada", "text": "", "album_id": "72157594571416820", "longitude": "1.732063", "url_o": "https://farm1.staticflickr.com/163/392253861_c72864b29d_o.jpg", "secret": "c72864b29d", "media": "photo", "latitude": "41.221147", "id": "392253861", "tags": "barcelona espa\u00f1a museum trenes spain trains steam catalunya museo espagne hdr vapour vapor garraf locomotives ferrocarril espanya locomotoras blueribbonwinner vilanovailageltr\u00fa supershot tonemapping outstandingshots singleraw artizen lock06 abigfave lindatapada"}, {"datetaken": "2006-06-18 13:45:54", "license": "3", "title": "Mikado 1-4-1 F 2101 (1952)", "text": "", "album_id": "72157594571416820", "longitude": "1.732063", "url_o": "https://farm1.staticflickr.com/165/391442555_70825ff9fd_o.jpg", "secret": "eef478a77b", "media": "photo", "latitude": "41.221147", "id": "391442555", "tags": "barcelona espa\u00f1a museum trenes spain museu searchthebest trains mikado museo espagne vapour vapor locomotives ferrocarril renfe espanya locomotoras vilanovailageltr\u00fa localcontrast"}, {"datetaken": "2006-06-18 13:46:00", "license": "3", "title": "Locomotive 2-7-2 7206 \"Cocodrilo\"", "text": "", "album_id": "72157594571416820", "longitude": "1.732063", "url_o": "https://farm1.staticflickr.com/154/392254079_7373056660_o.jpg", "secret": "7373056660", "media": "photo", "latitude": "41.221147", "id": "392254079", "tags": "barcelona espa\u00f1a museum trenes spain trains catalunya museo espagne hdr garraf locomotives electrics ferrocarril espanya locomotoras vilanovailageltr\u00fa tonemapping el\u00e9ctricas singleraw artizen lock06"}, {"datetaken": "2006-06-18 13:46:00", "license": "3", "title": "Ferrobus", "text": "", "album_id": "72157594571416820", "longitude": "1.732063", "url_o": "https://farm1.staticflickr.com/180/392254359_4224f245d0_o.jpg", "secret": "4224f245d0", "media": "photo", "latitude": "41.221147", "id": "392254359", "tags": "barcelona espa\u00f1a museum trenes spain diesel trains catalunya museo espagne hdr garraf ferrocarril espanya blueribbonwinner vilanovailageltr\u00fa automotor tonemapping outstandingshots singleraw artizen stockham abigfave anawesomeshot impressedbeauty ferrobus draisina"}, {"datetaken": "2006-06-18 13:48:00", "license": "3", "title": "Talgo Series 350", "text": "", "album_id": "72157594571416820", "longitude": "1.732063", "url_o": "https://farm1.staticflickr.com/91/392254853_42fbd6249f_o.jpg", "secret": "42fbd6249f", "media": "photo", "latitude": "41.221147", "id": "392254853", "tags": "barcelona espa\u00f1a museum trenes spain diesel zug trains catalunya museo espagne treno hdr garraf locomotives ferrocarril talgo treni espanya locomotoras vilanovailageltr\u00fa tonemapping singleraw artizen stockham abigfave impressedbeauty travelerphotos goldenphotographer"}, {"datetaken": "2006-06-18 13:48:15", "license": "3", "title": "Turntable / Puente giratorio", "text": "", "album_id": "72157594571416820", "longitude": "1.732063", "url_o": "https://farm1.staticflickr.com/184/392255450_2f2a6b957c_o.jpg", "secret": "77cf935844", "media": "photo", "latitude": "41.221147", "id": "392255450", "tags": "barcelona espa\u00f1a museum trenes spain trains turntable steam catalunya museo espagne vapour vapor garraf locomotives ferrocarril espanya locomotoras vilanovailageltr\u00fa localcontrast puentegiratorio"}, {"datetaken": "2006-06-18 14:05:09", "license": "3", "title": "The electric and diesel locomotives", "text": "", "album_id": "72157594571416820", "longitude": "1.732063", "url_o": "https://farm1.staticflickr.com/137/396982381_efd7575d94_o.jpg", "secret": "25b0d6d0a6", "media": "photo", "latitude": "41.221147", "id": "396982381", "tags": "barcelona espa\u00f1a museum trenes spain diesel trains turntable catalunya museo espagne garraf locomotives electrics ferrocarril espanya locomotoras vilanovailageltr\u00fa localcontrast el\u00e9tricas puentegiratorio"}, {"datetaken": "2007-03-03 09:28:27", "license": "2", "title": "12 of 365 (Project 265) - Headed Out", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/408736835_c568fd0c6e_o.jpg", "secret": "e34ada364c", "media": "photo", "latitude": "0", "id": "408736835", "tags": "project365 project36512 030307 imgoingtothebeachandyourenot"}, {"datetaken": "2007-03-03 16:52:13", "license": "2", "title": "Folly Island Coast Guard Station", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/410597782_0e5a20a1ca_o.jpg", "secret": "9917dc6f6d", "media": "photo", "latitude": "0", "id": "410597782", "tags": "longexposure nightshot charlestonsc follybeach morrisislandlighthouse follyisland moonlitlighthouse 030307bfollylighthouse"}, {"datetaken": "2007-03-03 16:52:46", "license": "2", "title": "Mr. T", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/410601331_89c6b11b08_o.jpg", "secret": "c4e122306c", "media": "photo", "latitude": "0", "id": "410601331", "tags": "longexposure nightshot charlestonsc follybeach morrisislandlighthouse follyisland moonlitlighthouse 030307bfollylighthouse"}, {"datetaken": "2007-03-03 16:59:12", "license": "2", "title": "Morris Island Lighthouse 1", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/410599641_f2f1d83576_o.jpg", "secret": "e849da46a3", "media": "photo", "latitude": "0", "id": "410599641", "tags": "longexposure nightshot charlestonsc follybeach morrisislandlighthouse follyisland moonlitlighthouse 030307bfollylighthouse"}, {"datetaken": "2007-03-03 17:12:27", "license": "2", "title": "Morris Island Lighthouse 2", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/410600092_15a0de76e0_o.jpg", "secret": "58b3c5c0bf", "media": "photo", "latitude": "0", "id": "410600092", "tags": "longexposure nightshot charlestonsc follybeach morrisislandlighthouse follyisland moonlitlighthouse 030307bfollylighthouse"}, {"datetaken": "2007-03-03 17:12:44", "license": "2", "title": "Morris Island Lighthouse 3", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/410600432_73b61e6db2_o.jpg", "secret": "4a600fec9c", "media": "photo", "latitude": "0", "id": "410600432", "tags": "longexposure nightshot charlestonsc follybeach morrisislandlighthouse follyisland moonlitlighthouse 030307bfollylighthouse"}, {"datetaken": "2007-03-03 23:16:51", "license": "2", "title": "New & Improved Cooper River Bridge", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/410596654_439418e2d0_o.jpg", "secret": "59fab80dab", "media": "photo", "latitude": "0", "id": "410596654", "tags": "longexposure nightshot charlestonsc follybeach morrisislandlighthouse follyisland 1on1nightshots moonlitlighthouse 030307bfollylighthouse"}, {"datetaken": "2007-03-03 23:30:43", "license": "2", "title": "Breaker", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/410596158_ac8aa87204_o.jpg", "secret": "85af51c731", "media": "photo", "latitude": "0", "id": "410596158", "tags": "longexposure nightshot charlestonsc follybeach morrisislandlighthouse follyisland moonlitlighthouse 030307bfollylighthouse"}, {"datetaken": "2007-03-03 23:46:02", "license": "2", "title": "Moonlit Morris Island Lighthouse 1", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/410598636_ff95eedc11_o.jpg", "secret": "9e9a745211", "media": "photo", "latitude": "0", "id": "410598636", "tags": "longexposure nightshot charlestonsc follybeach morrisislandlighthouse follyisland moonlitlighthouse 030307bfollylighthouse"}, {"datetaken": "2007-03-04 00:03:34", "license": "2", "title": "Moonlit Morris Island Lighthouse 2", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/410599202_573c56fa37_o.jpg", "secret": "dc2610a308", "media": "photo", "latitude": "0", "id": "410599202", "tags": "longexposure nightshot charlestonsc follybeach morrisislandlighthouse follyisland moonlitlighthouse 030307bfollylighthouse"}, {"datetaken": "2007-03-04 00:34:40", "license": "2", "title": "Holliday Inn", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/410597940_74ecaf0b27_o.jpg", "secret": "41c124c3bf", "media": "photo", "latitude": "0", "id": "410597940", "tags": "longexposure nightshot charlestonsc follybeach morrisislandlighthouse follyisland moonlitlighthouse 030307bfollylighthouse"}, {"datetaken": "2007-03-04 10:46:06", "license": "2", "title": "13 of 365 (Project 365) - Seagull", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/410602149_d816ba224b_o.jpg", "secret": "c11c8ae737", "media": "photo", "latitude": "0", "id": "410602149", "tags": "longexposure nightshot charlestonsc follybeach morrisislandlighthouse project365 follyisland instantfave project36512 moonlitlighthouse 030407charleston"}, {"datetaken": "2007-03-04 10:51:47", "license": "2", "title": "The Battery", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/412055771_5b59d2f7eb_o.jpg", "secret": "b8bdc80fa5", "media": "photo", "latitude": "0", "id": "412055771", "tags": "charleston thebattery rainbowrow chucktown 030407charleston"}, {"datetaken": "2007-03-04 10:52:18", "license": "2", "title": "Peachy", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/412053348_e50412317b_o.jpg", "secret": "81de5cad83", "media": "photo", "latitude": "0", "id": "412053348", "tags": "charleston thebattery rainbowrow chucktown 030407charleston"}, {"datetaken": "2007-03-04 10:54:10", "license": "2", "title": "Degrading Work", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/412051192_292c0f0c11_o.jpg", "secret": "f488b39da5", "media": "photo", "latitude": "0", "id": "412051192", "tags": "charleston thebattery rainbowrow chucktown 030407charleston"}, {"datetaken": "2007-03-04 10:57:55", "license": "2", "title": "All In A Row", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/412052766_e95e84d413_o.jpg", "secret": "3465bfef25", "media": "photo", "latitude": "0", "id": "412052766", "tags": "charleston thebattery rainbowrow chucktown 030407charleston"}, {"datetaken": "2007-03-04 11:00:40", "license": "2", "title": "Hidden Away", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/412051945_7c5979ac61_o.jpg", "secret": "6b7e345a38", "media": "photo", "latitude": "0", "id": "412051945", "tags": "charleston thebattery rainbowrow chucktown 030407charleston"}, {"datetaken": "2007-03-04 11:04:06", "license": "2", "title": "State Tree", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/412054599_c2b71cb156_o.jpg", "secret": "6dd07f6329", "media": "photo", "latitude": "0", "id": "412054599", "tags": "charleston thebattery rainbowrow chucktown 030407charleston"}, {"datetaken": "2007-03-04 11:05:38", "license": "2", "title": "Rainbow Row", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/412053924_f7b6c38bca_o.jpg", "secret": "b22658d1d4", "media": "photo", "latitude": "0", "id": "412053924", "tags": "charleston thebattery rainbowrow chucktown 030407charleston"}, {"datetaken": "2007-03-04 11:35:36", "license": "2", "title": "US Custom House", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/412056783_2397738e13_o.jpg", "secret": "3c3d7000a0", "media": "photo", "latitude": "0", "id": "412056783", "tags": "charleston thebattery rainbowrow chucktown 030407charleston"}, {"datetaken": "2007-03-04 11:36:16", "license": "2", "title": "Architecture", "text": "", "album_id": "72157594567134249", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/412050747_9fdd755d69_o.jpg", "secret": "5c0e6dea7d", "media": "photo", "latitude": "0", "id": "412050747", "tags": "charleston thebattery rainbowrow chucktown 030407charleston"}, {"datetaken": "2007-03-08 11:39:55", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/416031117_ff93d2042b_o.jpg", "secret": "698e9ed3c4", "media": "photo", "latitude": "0", "id": "416031117", "tags": "ontario canada danger warning signage portcredit thinice jjplauspark portcreditriver"}, {"datetaken": "2007-03-08 11:43:53", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/416031189_f70d6a854a_o.jpg", "secret": "cde9ad256e", "media": "photo", "latitude": "0", "id": "416031189", "tags": "winter ontario canada tree silhouette silver grey frozen sparkle shore portcredit"}, {"datetaken": "2007-03-08 11:43:57", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/416031203_3e9b798d8d_o.jpg", "secret": "82fe740da4", "media": "photo", "latitude": "0", "id": "416031203", "tags": "ontario canada silver grey ship sparkle lakeontario docked laker portcredit"}, {"datetaken": "2007-03-08 11:45:29", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/416031280_084ac338d0_o.jpg", "secret": "705d94342f", "media": "photo", "latitude": "0", "id": "416031280", "tags": "winter snow ontario canada garden sedum portcredit stlawrencepark"}, {"datetaken": "2007-03-08 11:46:09", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/416031317_d0afc1957a_o.jpg", "secret": "991b1db7d2", "media": "photo", "latitude": "0", "id": "416031317", "tags": "winter snow ontario canada gazebo grasses lakeontario portcredit stlawrencepark"}, {"datetaken": "2007-03-08 11:46:32", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/416031351_f59598207c_o.jpg", "secret": "2a28e4a64e", "media": "photo", "latitude": "0", "id": "416031351", "tags": "winter snow ontario canada gazebo grasses lakeontario portcredit stlawrencepark"}, {"datetaken": "2007-03-08 12:00:11", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/416031401_600664f7d2_o.jpg", "secret": "f7cbe75765", "media": "photo", "latitude": "0", "id": "416031401", "tags": "winter snow ontario canada squirrel snacking blacksquirrel portcredit adamsonestate"}, {"datetaken": "2007-03-08 12:00:33", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/416031471_209f09e599_o.jpg", "secret": "4ede671962", "media": "photo", "latitude": "0", "id": "416031471", "tags": "winter ontario canada cup forest woods mcdonalds litter stump portcredit adamsonestate espied"}, {"datetaken": "2007-03-08 12:01:52", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/416031551_0a2ccd3cd8_o.jpg", "secret": "d07f39fa9b", "media": "photo", "latitude": "0", "id": "416031551", "tags": "winter snow ontario canada lakeontario portcredit adamsonestate"}, {"datetaken": "2007-03-08 12:03:02", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/416031704_1dd475b8cb_o.jpg", "secret": "791c813157", "media": "photo", "latitude": "0", "id": "416031704", "tags": "winter red ontario canada fence poles snowfence portcredit adamsonestate"}, {"datetaken": "2007-03-08 12:04:59", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/416031762_a821c9f355_o.jpg", "secret": "577b1ba696", "media": "photo", "latitude": "0", "id": "416031762", "tags": "sky barn knothole portcredit adamsonestate barnboard"}, {"datetaken": "2007-03-08 12:05:52", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/416031918_08cf0959e3_o.jpg", "secret": "400643979c", "media": "photo", "latitude": "0", "id": "416031918", "tags": "texture barn portcredit adamsonestate barnboard florettes"}, {"datetaken": "2007-03-08 12:10:25", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/416032106_dc5ca691aa_o.jpg", "secret": "1b3f719a6d", "media": "photo", "latitude": "0", "id": "416032106", "tags": "snow texture ice frozen rorschach gravel portcredit"}, {"datetaken": "2007-03-08 12:10:47", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/416032311_021092d066_o.jpg", "secret": "a59ffdbbd6", "media": "photo", "latitude": "0", "id": "416032311", "tags": "winter ontario canada ice frozen urbancreek portcredit adamsonslane"}, {"datetaken": "2007-03-08 12:13:15", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/416031658_6d50101ed0_o.jpg", "secret": "cf569091fd", "media": "photo", "latitude": "0", "id": "416031658", "tags": "ontario canada greenway portcredit"}, {"datetaken": "2007-03-08 12:13:52", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/416032381_fa494964c8_o.jpg", "secret": "6e0b8acad0", "media": "photo", "latitude": "0", "id": "416032381", "tags": "winter snow ice hockey boards skating homemade rink nets frontlawn portcredit nationalpassion homerink"}, {"datetaken": "2007-03-08 12:14:02", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/416032433_d7a8ac912c_o.jpg", "secret": "21a0e6315b", "media": "photo", "latitude": "0", "id": "416032433", "tags": "winter snow ice hockey boards skating homemade rink nets frontlawn portcredit nationalpassion homerink"}, {"datetaken": "2007-03-08 12:14:19", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/416032474_33cf8c4c08_o.jpg", "secret": "0341d34482", "media": "photo", "latitude": "0", "id": "416032474", "tags": "winter snow ice hockey boards skating homemade rink nets frontlawn portcredit nationalpassion homerink"}, {"datetaken": "2007-03-08 12:21:57", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/416032516_c371c0a262_o.jpg", "secret": "912f04a2a0", "media": "photo", "latitude": "0", "id": "416032516", "tags": "winter snow ontario canada tower hydro electricity lakeviewpark portcredit"}, {"datetaken": "2007-03-08 12:22:19", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/416032575_1dd9633e9d_o.jpg", "secret": "b4dcc97aa4", "media": "photo", "latitude": "0", "id": "416032575", "tags": "park winter ontario canada towers hydro electricity lakeviewpark baseballdiamond portcredit"}, {"datetaken": "2007-03-08 12:25:01", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/416032597_bf804d121b_o.jpg", "secret": "89698efc24", "media": "photo", "latitude": "0", "id": "416032597", "tags": "winter snow ontario canada grey portcredit lakefrontpromendade"}, {"datetaken": "2007-03-08 12:28:30", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/416032632_ccb6c7d8c0_o.jpg", "secret": "cdade24e1f", "media": "photo", "latitude": "0", "id": "416032632", "tags": "winter ontario canada grey gulls smokestacks chilly distant portcredit lakefrontpromenade"}, {"datetaken": "2007-03-08 12:28:49", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/416032668_cfa69c3b26_o.jpg", "secret": "7e1293b3ec", "media": "photo", "latitude": "0", "id": "416032668", "tags": "winter snow ontario canada grey air smokestacks lakeontario distant portcredit lakefrontpromenade"}, {"datetaken": "2007-03-08 12:30:09", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/416032679_028812f0fe_o.jpg", "secret": "6dd3466ca5", "media": "photo", "latitude": "0", "id": "416032679", "tags": "winter snow ontario canada lakeontario portcredit lakefrontpromenade"}, {"datetaken": "2007-03-08 12:30:26", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/416032743_175f57569e_o.jpg", "secret": "ba67acb13a", "media": "photo", "latitude": "0", "id": "416032743", "tags": "trees winter snow ontario canada silhouette silver grey shoreline lakeontario leafless deserted picnictables portcredit lakefrontpromenade"}, {"datetaken": "2007-03-08 12:32:19", "license": "2", "title": "Toronto Skyline in Perspective", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/416032790_abe43e8fc5_o.jpg", "secret": "033f0ace79", "media": "photo", "latitude": "0", "id": "416032790", "tags": "winter snow toronto ontario canada tree skyline grasses distant portcredit cans2s lakefrontpromenade"}, {"datetaken": "2007-03-08 12:32:43", "license": "2", "title": "", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/416032806_ba0f831a36_o.jpg", "secret": "b74014a591", "media": "photo", "latitude": "0", "id": "416032806", "tags": "toronto ontario canada skyline marina boat yacht distant moored portcredit wintering lakefrontpromenade"}, {"datetaken": "2007-03-08 12:35:34", "license": "2", "title": "Just in Case", "text": "", "album_id": "72157594579686302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/416032886_c5cf14434d_o.jpg", "secret": "956a4e7b09", "media": "photo", "latitude": "0", "id": "416032886", "tags": "trees winter red snow ontario canada hydrant firehydrant redundant oblivious portcredit lakefrontpromenade"}, {"datetaken": "2007-02-28 08:49:10", "license": "3", "title": "Foreshore", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/173/405164071_098d68d5f3_o.jpg", "secret": "098d68d5f3", "media": "photo", "latitude": "-32.738916", "id": "405164071", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 08:50:31", "license": "3", "title": "Weed", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/123/405164259_e6f1a111e7_o.jpg", "secret": "e6f1a111e7", "media": "photo", "latitude": "-32.738916", "id": "405164259", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 08:50:44", "license": "3", "title": "Weed", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/183/405164459_b9c3bdde04_o.jpg", "secret": "b9c3bdde04", "media": "photo", "latitude": "-32.738916", "id": "405164459", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 08:53:18", "license": "3", "title": "Yacht Sailing", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/139/405164721_c8ab51d9f7_o.jpg", "secret": "c8ab51d9f7", "media": "photo", "latitude": "-32.738916", "id": "405164721", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 08:58:03", "license": "3", "title": "Yacht coming to shore", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/178/405165185_02edaa61b2_o.jpg", "secret": "02edaa61b2", "media": "photo", "latitude": "-32.738916", "id": "405165185", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 08:58:22", "license": "3", "title": "Yacht coming to shore", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/171/405166005_4335c48b65_o.jpg", "secret": "4335c48b65", "media": "photo", "latitude": "-32.738916", "id": "405166005", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:12:47", "license": "3", "title": "Beach Rocks", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/125/405166769_1cd503aef8_o.jpg", "secret": "1cd503aef8", "media": "photo", "latitude": "-32.738916", "id": "405166769", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:18:02", "license": "3", "title": "Large Driftwood", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/138/405168196_6a3c991e84_o.jpg", "secret": "6a3c991e84", "media": "photo", "latitude": "-32.738916", "id": "405168196", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:19:11", "license": "3", "title": "Scrub on Waters Edge", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/179/405168844_854647cb9d_o.jpg", "secret": "854647cb9d", "media": "photo", "latitude": "-32.738916", "id": "405168844", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:19:22", "license": "3", "title": "Scrub on Waters Edge", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/164/405169867_2338b165a8_o.jpg", "secret": "2338b165a8", "media": "photo", "latitude": "-32.738916", "id": "405169867", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:21:59", "license": "3", "title": "Waters Edge", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/163/405170521_e464d268c8_o.jpg", "secret": "e464d268c8", "media": "photo", "latitude": "-32.738916", "id": "405170521", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:23:06", "license": "3", "title": "Jelly Fish", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/150/405171479_2a0ffa71c3_o.jpg", "secret": "2a0ffa71c3", "media": "photo", "latitude": "-32.738916", "id": "405171479", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:23:18", "license": "3", "title": "Seaweed", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/129/405172136_093fb38e70_o.jpg", "secret": "093fb38e70", "media": "photo", "latitude": "-32.738916", "id": "405172136", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:26:24", "license": "3", "title": "Foreshore", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/136/405172735_6e7dfed34c_o.jpg", "secret": "6e7dfed34c", "media": "photo", "latitude": "-32.738916", "id": "405172735", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:26:59", "license": "3", "title": "Jelly Fish", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/180/405173874_c70754138f_o.jpg", "secret": "c70754138f", "media": "photo", "latitude": "-32.738916", "id": "405173874", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:27:17", "license": "3", "title": "Jelly Fish", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/147/405174524_cd9b0599e8_o.jpg", "secret": "cd9b0599e8", "media": "photo", "latitude": "-32.738916", "id": "405174524", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:28:39", "license": "3", "title": "Drfitwood on the shore", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/162/405175212_496a9b1ed0_o.jpg", "secret": "496a9b1ed0", "media": "photo", "latitude": "-32.738916", "id": "405175212", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:29:28", "license": "3", "title": "Foreshore", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/162/405176505_a0f01bb10d_o.jpg", "secret": "a0f01bb10d", "media": "photo", "latitude": "-32.738916", "id": "405176505", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:30:40", "license": "3", "title": "Gallah", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/126/405177270_e60437c484_o.jpg", "secret": "e60437c484", "media": "photo", "latitude": "-32.738916", "id": "405177270", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:30:58", "license": "3", "title": "Gallah's making a nest", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/158/405177941_29c3a29955_o.jpg", "secret": "29c3a29955", "media": "photo", "latitude": "-32.738916", "id": "405177941", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:31:02", "license": "3", "title": "Gallah's making a nest", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/183/405178796_e6d080ebc1_o.jpg", "secret": "e6d080ebc1", "media": "photo", "latitude": "-32.738916", "id": "405178796", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50 wildlifeofaustralia"}, {"datetaken": "2007-02-28 09:32:14", "license": "3", "title": "? Tree - Is it a wattle", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/163/405179268_bc52df2170_o.jpg", "secret": "bc52df2170", "media": "photo", "latitude": "-32.738916", "id": "405179268", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:33:52", "license": "3", "title": "Gallah's making a nest", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/174/405180084_3a86dc6cd0_o.jpg", "secret": "3a86dc6cd0", "media": "photo", "latitude": "-32.738916", "id": "405180084", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:35:41", "license": "3", "title": "Scaly Breasted Lorikeet making nest in Gum Tree - Notice the wasp", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/133/405180368_1c313edb9d_o.jpg", "secret": "1c313edb9d", "media": "photo", "latitude": "-32.738916", "id": "405180368", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50 wildlifeofaustralia"}, {"datetaken": "2007-02-28 09:35:48", "license": "3", "title": "Scaly Breasted Lorikeet making nest in Gum Tree", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/136/405180679_01f58ef0e2_o.jpg", "secret": "01f58ef0e2", "media": "photo", "latitude": "-32.738916", "id": "405180679", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:36:29", "license": "3", "title": "Scaly Breasted Lorikeet making nest in Gum Tree", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/147/405181176_905701b6c0_o.jpg", "secret": "905701b6c0", "media": "photo", "latitude": "-32.738916", "id": "405181176", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:36:53", "license": "3", "title": "Scaly Breasted Lorikeet making nest in Gum Tree", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/184/405181418_d46586fb1f_o.jpg", "secret": "d46586fb1f", "media": "photo", "latitude": "-32.738916", "id": "405181418", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50 wildlifeofaustralia"}, {"datetaken": "2007-02-28 09:38:44", "license": "3", "title": "Sunlight behind Gum Tree", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/154/405182253_e7a768f03f_o.jpg", "secret": "e7a768f03f", "media": "photo", "latitude": "-32.738916", "id": "405182253", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:39:13", "license": "3", "title": "Sunlight behind Gum Tree", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/149/405183315_f122599530_o.jpg", "secret": "f122599530", "media": "photo", "latitude": "-32.738916", "id": "405183315", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:39:41", "license": "3", "title": "Sunlight behind Gum Tree", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/155/405184110_211efac24d_o.jpg", "secret": "211efac24d", "media": "photo", "latitude": "-32.738916", "id": "405184110", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:48:57", "license": "3", "title": "Macro - Flower", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/170/405184537_6dbf0ee6e4_o.jpg", "secret": "6dbf0ee6e4", "media": "photo", "latitude": "-32.738916", "id": "405184537", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:54:43", "license": "3", "title": "Parkland", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/124/405158132_889991837e_o.jpg", "secret": "889991837e", "media": "photo", "latitude": "-32.738916", "id": "405158132", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:55:47", "license": "3", "title": "Tanilba House", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/186/405158712_5704617fdb_o.jpg", "secret": "5704617fdb", "media": "photo", "latitude": "-32.738916", "id": "405158712", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:56:00", "license": "3", "title": "Tanilba House", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/182/405159515_a16089f574_o.jpg", "secret": "a16089f574", "media": "photo", "latitude": "-32.738916", "id": "405159515", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 09:56:37", "license": "3", "title": "Parkland", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/150/405160082_0c8dce2755_o.jpg", "secret": "0c8dce2755", "media": "photo", "latitude": "-32.738916", "id": "405160082", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 10:01:55", "license": "3", "title": "Mosaic Temple of the Stork", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/125/405160995_5658ce6645_o.jpg", "secret": "5658ce6645", "media": "photo", "latitude": "-32.738916", "id": "405160995", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50 mosaictempleofthestork"}, {"datetaken": "2007-02-28 10:02:24", "license": "3", "title": "Mosaic Temple of the Stork", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/147/405161547_205d1a007d_o.jpg", "secret": "205d1a007d", "media": "photo", "latitude": "-32.738916", "id": "405161547", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50 mosaictempleofthestork"}, {"datetaken": "2007-02-28 10:02:48", "license": "3", "title": "Tanilba House", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/166/405162100_55081363a1_o.jpg", "secret": "55081363a1", "media": "photo", "latitude": "-32.738916", "id": "405162100", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 10:08:40", "license": "3", "title": "Tanilba Bay Wall", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/127/405162685_92609e214c_o.jpg", "secret": "92609e214c", "media": "photo", "latitude": "-32.738916", "id": "405162685", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-28 10:08:56", "license": "3", "title": "Tanilba Bay Wall", "text": "", "album_id": "72157594560924652", "longitude": "152.028808", "url_o": "https://farm1.staticflickr.com/165/405163550_7f12caf091_o.jpg", "secret": "7f12caf091", "media": "photo", "latitude": "-32.738916", "id": "405163550", "tags": "sun macro water birds jellyfish australia panasonic driftwood nsw limix tanilbabay dmcfz50"}, {"datetaken": "2007-02-09 21:40:24", "license": "3", "title": "Scie luminose", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/132/418180107_3ffa2d4f88_o.jpg", "secret": "0b9349d7c5", "media": "photo", "latitude": "40.649875", "id": "418180107", "tags": "city light shadow sea black beach rock night dark lights town sand italia mare campania shadows ombra cost ombre nighttime napoli luci lightning nero notte luce salerno minori costiera citt\u00e0 paese amalfitana costieraamalfitana antonioscaramuzzino"}, {"datetaken": "2007-02-09 21:43:28", "license": "3", "title": "waves", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/166/418179313_6694258930_o.jpg", "secret": "f9e1be2118", "media": "photo", "latitude": "40.649875", "id": "418179313", "tags": "city light shadow sea black beach rock night dark lights town sand italia mare campania shadows ombra cost wave ombre nighttime napoli luci lightning nero notte luce salerno minori costiera citt\u00e0 onde onda paese amalfitana costieraamalfitana antonioscaramuzzino"}, {"datetaken": "2007-02-10 01:01:34", "license": "3", "title": "there's a party", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/156/418182898_b9568a198c_o.jpg", "secret": "4f35c7715e", "media": "photo", "latitude": "40.649875", "id": "418182898", "tags": "italia campania angle wide wideangle fisheye napoli grandangolo salerno minori costiera amalfitana costieraamalfitana antonioscaramuzzino"}, {"datetaken": "2007-02-10 02:13:46", "license": "3", "title": "Minori by night", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/181/418183843_ce91cc7988_o.jpg", "secret": "65732b42f2", "media": "photo", "latitude": "40.649875", "id": "418183843", "tags": "city light shadow sea black building beach rock architecture night dark lights town sand italia mare campania shadows ombra cost palace ombre nighttime napoli luci lightning palazzo nero notte architettura luce palaces salerno minori costiera citt\u00e0 palazzi paese amalfitana costieraamalfitana antonioscaramuzzino"}, {"datetaken": "2007-02-10 02:27:02", "license": "3", "title": "Sale o scende?", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/131/418178102_8b68b07164_o.jpg", "secret": "85e107b1e6", "media": "photo", "latitude": "40.649875", "id": "418178102", "tags": "light shadow white black building scale up architecture night stairs cat dark lights italia campania shadows ombra steps cost experiment down palace ombre line stairway nighttime illusion staircase napoli scala luci lightning rise comedown palazzo gatto bianco nero opticalillusion notte architettura luce palaces salerno minori linea costiera micio palazzi goup linee amalfitana costieraamalfitana scalini godown scalino illusione salire scendere antonioscaramuzzino"}, {"datetaken": "2007-02-10 02:42:20", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/129/418176205_8dad983eda_o.jpg", "secret": "844952bec7", "media": "photo", "latitude": "40.649875", "id": "418176205", "tags": "light shadow black building muro wall architecture night dark lights gate italia campania shadows ombra cost entrance palace ombre nighttime gateway napoli luci mura lightning palazzo nero notte architettura luce palaces salerno minori costiera cancello palazzi amalfitana costieraamalfitana ziogi\u00f2"}, {"datetaken": "2007-02-10 02:46:08", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/159/418174620_1a7597e350_o.jpg", "secret": "f6c883c31e", "media": "photo", "latitude": "40.649875", "id": "418174620", "tags": "light shadow black building clock architecture night bells dark lights italia campania shadows time bell watch ombra palace ombre belltower chiesa campanile campana nighttime napoli luci lightning palazzo orologio nero notte architettura orologi luce palaces salerno minori costiera palazzi amalfitana costieraamalfitana campane antonioscaramuzzino"}, {"datetaken": "2007-02-10 12:26:12", "license": "3", "title": "Relativity", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/162/418173837_e23da49327_o.jpg", "secret": "6b14533ddc", "media": "photo", "latitude": "40.649875", "id": "418173837", "tags": "city color building scale colors architecture stairs town italia campania steps palace stairway staircase scala palazzo colori architettura palaces minori citt\u00e0 palazzi paese costieraamalfitana scalini scalino antonioscaramuzzino"}, {"datetaken": "2007-02-10 13:09:18", "license": "3", "title": "Terrazzamento", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/165/418172248_f7b40cf45a_o.jpg", "secret": "f11d8d9b5f", "media": "photo", "latitude": "40.649875", "id": "418172248", "tags": "building scale rock architecture stairs lemon italia campania steps cost palace line stairway staircase napoli scala palazzo limone architettura palaces salerno minori linea costiera limoni palazzi linee amalfitana costieraamalfitana scalini scalino agrumi agrumeto terrazzamenti terrazzamento agrumeti antonioscaramuzzino"}, {"datetaken": "2007-02-10 13:10:00", "license": "3", "title": "Terrazzamento sul mare", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/129/418168998_ef6a0fd3af_o.jpg", "secret": "3b61764366", "media": "photo", "latitude": "40.649875", "id": "418168998", "tags": "city sea cats white building beach scale rock architecture stairs cat town sand italia mare campania steps cost palace line stairway staircase napoli scala palazzo gatto bianco architettura palaces salerno minori linea costiera citt\u00e0 micio palazzi linee paese amalfitana costieraamalfitana scalini scalino terrazzamenti terrazzamento antonioscaramuzzino"}, {"datetaken": "2007-02-10 13:11:56", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/174/418167583_add1a28656_o.jpg", "secret": "4c707ea6c5", "media": "photo", "latitude": "40.649875", "id": "418167583", "tags": "lemon italia campania cost napoli limone salerno minori costiera limoni amalfitana costieraamalfitana agrumi agrumeto agrumeti antonioscaramuzzino"}, {"datetaken": "2007-02-10 13:13:20", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/172/418165455_82f12b42d1_o.jpg", "secret": "aab204bac9", "media": "photo", "latitude": "40.649875", "id": "418165455", "tags": "building architecture lemon italia campania cost palace napoli palazzo limone architettura palaces salerno minori costiera limoni palazzi amalfitana costieraamalfitana agrumi agrumeto agrumeti antonioscaramuzzino"}, {"datetaken": "2007-02-10 13:14:34", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/146/418163606_0b3c779bcf_o.jpg", "secret": "9bae9db4a6", "media": "photo", "latitude": "40.649875", "id": "418163606", "tags": "city panorama building architecture landscape town scenery italia campania view cost palace scenario vista napoli palazzo architettura palaces salerno minori paesaggio costiera citt\u00e0 palazzi paese amalfitana costieraamalfitana antonioscaramuzzino"}, {"datetaken": "2007-02-10 13:35:52", "license": "3", "title": "Zi' Tot\u00f2", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/133/418162558_b9c11bf913_o.jpg", "secret": "1d8e6c1f96", "media": "photo", "latitude": "40.649875", "id": "418162558", "tags": "portrait building rock architecture italia campania cost napoli ritratti ritratto architettura salerno minori costiera prospettiva zio anziano amalfitana costieraamalfitana ringhiera antonioscaramuzzino"}, {"datetaken": "2007-02-10 13:49:20", "license": "3", "title": "Protezioni", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/128/418159728_cc7635aa24_o.jpg", "secret": "0cfb002e10", "media": "photo", "latitude": "40.649875", "id": "418159728", "tags": "black net scale stairs lemon italia campania steps cost stairway staircase napoli scala limone salerno minori nera costiera limoni rete amalfitana costieraamalfitana scalini reti scalino agrumi agrumeto terrazzamenti terrazzamento agrumeti antonioscaramuzzino"}, {"datetaken": "2007-02-10 13:52:16", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/123/418156953_0da68e35dc_o.jpg", "secret": "3c38e44b67", "media": "photo", "latitude": "40.649875", "id": "418156953", "tags": "panorama house building home rock architecture landscape casa scenery italia campania view geometry cost palace case line scenario vista napoli palazzo architettura palaces salerno minori paesaggio linea costiera palazzi geometria linee amalfitana costieraamalfitana antonioscaramuzzino"}, {"datetaken": "2007-02-10 13:54:16", "license": "3", "title": "antipasto...", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/126/418154555_74bcb8d21f_o.jpg", "secret": "1eb10117de", "media": "photo", "latitude": "40.649875", "id": "418154555", "tags": "decorations food orange lemon italia campania decoration cost eat oil napoli peperoncini limone cibo salerno minori mozzarella olio limoni noce peperoncino decorazione decorazioni mangiare arancia antipasto arance costieraamalfitana noci antonioscaramuzzino"}, {"datetaken": "2007-02-10 13:57:02", "license": "3", "title": "Uno sguardo a...", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/130/418155666_8f25f73423_o.jpg", "secret": "1fa6d010d9", "media": "photo", "latitude": "40.649875", "id": "418155666", "tags": "panorama house building home rock architecture landscape casa scenery italia campania view geometry cost palace case line scenario vista napoli palazzo architettura palaces salerno minori paesaggio linea costiera palazzi geometria linee amalfitana costieraamalfitana antonioscaramuzzino"}, {"datetaken": "2007-02-10 14:00:30", "license": "3", "title": "coloratissima tavola imbandita", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/183/418152842_59b8be8c47_o.jpg", "secret": "c7bc95e93b", "media": "photo", "latitude": "40.649875", "id": "418152842", "tags": "red food orange yellow rouge lemon italia campania eat giallo napoli rosso tovaglia peperoncini limone cibo rossi salerno minori costiera limoni tavola peperoncino mangiare arancia arance amalfitana costieraamalfitana apparecchiare antonioscaramuzzino apparecchiamo"}, {"datetaken": "2007-02-10 14:04:30", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/145/418150622_4dadd0d012_o.jpg", "secret": "b09ed279a6", "media": "photo", "latitude": "40.649875", "id": "418150622", "tags": "door italia campania porta papa minori costieraamalfitana antonioscaramuzzino"}, {"datetaken": "2007-02-10 14:38:40", "license": "3", "title": "soffrittino di scorza di limoni a listarelle...", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/148/418151519_adb7c17360_o.jpg", "secret": "dec61fc335", "media": "photo", "latitude": "40.649875", "id": "418151519", "tags": "food fry lemon italia campania eat oil napoli limone cibo salerno minori costiera olio limoni mangiare padella amalfitana costieraamalfitana tegame \u00e0lajulienne antonioscaramuzzino"}, {"datetaken": "2007-02-10 16:19:18", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/167/418149514_e9502f2e8c_o.jpg", "secret": "5537a6c6a1", "media": "photo", "latitude": "40.649875", "id": "418149514", "tags": "door italia campania porta minori costieraamalfitana"}, {"datetaken": "2007-02-10 16:27:10", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/157/418144133_2a1611cc87_o.jpg", "secret": "a6b3e43a6b", "media": "photo", "latitude": "40.649875", "id": "418144133", "tags": "portrait lemon italia campania ritratti ritratto limone minori limoni costieraamalfitana"}, {"datetaken": "2007-02-10 16:31:02", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/127/418141849_826031b917_o.jpg", "secret": "bc7fdf663c", "media": "photo", "latitude": "40.649875", "id": "418141849", "tags": "italia campania heart terra job tool minori lavoro costieraamalfitana handtool attrezzo attrezzi antonioscaramuzzino"}, {"datetaken": "2007-02-10 16:34:08", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/93/418140685_5a6fc8fa75_o.jpg", "secret": "b76fdead37", "media": "photo", "latitude": "40.649875", "id": "418140685", "tags": "city building scale rock architecture stairs town italia mare campania geometry steps cost palace line stairway staircase scala palazzo architettura palaces minori linea citt\u00e0 palazzi geometria linee paese costieraamalfitana scalini scalino terrazzamenti terrazzamento antonioscaramuzzino"}, {"datetaken": "2007-02-10 16:35:18", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/180/418138997_81bb9d84a1_o.jpg", "secret": "fea796e1d7", "media": "photo", "latitude": "40.649875", "id": "418138997", "tags": "city sea building beach scale rock architecture stairs town sand italia mare campania geometry steps cost palace line stairway staircase napoli scala palazzo architettura palaces salerno minori linea costiera citt\u00e0 palazzi geometria linee paese amalfitana costieraamalfitana scalini scalino terrazzamenti terrazzamento antonioscaramuzzino"}, {"datetaken": "2007-02-10 16:44:28", "license": "3", "title": "Uno sguardo a...", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/185/418137852_f5f50d0af8_o.jpg", "secret": "503d4d316c", "media": "photo", "latitude": "40.649875", "id": "418137852", "tags": "city sea portrait panorama building beach rock architecture landscape town sand scenery italia mare campania view cost palace scenario vista napoli palazzo ritratti ritratto architettura palaces salerno minori paesaggio costiera citt\u00e0 palazzi paese amalfitana costieraamalfitana antonioscaramuzzino"}, {"datetaken": "2007-02-10 17:00:50", "license": "3", "title": "Schizzo a colori di Minori", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/131/418136858_e3f34d0f3e_o.jpg", "secret": "203aab2460", "media": "photo", "latitude": "40.649875", "id": "418136858", "tags": "city sea house inspiration color building beach home colors rock architecture coast town casa clothing sand italia mare colore campania amalficoast palace case napoli escher palazzo colori architettura palaces salerno minori costiera citt\u00e0 palazzi pannistesi terrazza paese vestiti panni amalfitana costieraamalfitana terrazzino abbigliamento ispirazione indumenti antonioscaramuzzino"}, {"datetaken": "2007-02-10 17:01:36", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/151/418135478_1c9b533d9f_o.jpg", "secret": "683387432f", "media": "photo", "latitude": "40.649875", "id": "418135478", "tags": "city sea house building beach home scale rock architecture stairs square town casa sand italia mare campania steps cost palace case stairway staircase napoli scala piazza palazzo borgo architettura palaces salerno minori costiera citt\u00e0 palazzi paese piazzetta amalfitana costieraamalfitana scalini scalino littlesquare antonioscaramuzzino"}, {"datetaken": "2007-02-10 17:01:48", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/154/418134210_2eb15a9a63_o.jpg", "secret": "0b15d8ec98", "media": "photo", "latitude": "40.649875", "id": "418134210", "tags": "sea portrait beach rock mirror reflex sand italia mare campania cost mirrors napoli riflessi ritratti ritratto salerno minori costiera specchio occhiali riflesso amalfitana costieraamalfitana antonioscaramuzzino"}, {"datetaken": "2007-02-10 17:03:32", "license": "3", "title": "Terrazzamenti", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/123/418133135_d4b473118a_o.jpg", "secret": "1229f28447", "media": "photo", "latitude": "40.649875", "id": "418133135", "tags": "sea panorama building beach scale rock architecture stairs landscape sand scenery italia mare campania view steps cost palace stairway staircase scenario vista napoli scala palazzo architettura palaces salerno minori paesaggio costiera palazzi amalfitana costieraamalfitana scalini scalino terrazzamenti terrazzamento antonioscaramuzzino"}, {"datetaken": "2007-02-10 17:03:52", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/124/418123971_00a1814f11_o.jpg", "secret": "aa7f06c79c", "media": "photo", "latitude": "40.649875", "id": "418123971", "tags": "sea beach rock boat sand barca italia mare campania cost nave napoli salerno minori costiera amalfitana costieraamalfitana antonioscaramuzzino"}, {"datetaken": "2007-02-10 17:05:04", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/169/418131108_844b428182_o.jpg", "secret": "40882a472d", "media": "photo", "latitude": "40.649875", "id": "418131108", "tags": "trees sea panorama building tree beach scale rock architecture alberi stairs bells landscape sand scenery italia mare campania view bell steps cost palace belltower stairway chiesa campanile campana staircase scenario vista napoli scala albero palazzo architettura palaces salerno minori paesaggio costiera palazzi amalfitana costieraamalfitana scalini campane scalino terrazzamenti terrazzamento antonioscaramuzzino"}, {"datetaken": "2007-02-10 17:09:46", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/149/418129416_6e5b3a2272_o.jpg", "secret": "17b715d980", "media": "photo", "latitude": "40.649875", "id": "418129416", "tags": "portrait ritratti ritratto minori costieraamalfitana"}, {"datetaken": "2007-02-10 18:01:06", "license": "3", "title": "", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/157/418124897_978f7280cb_o.jpg", "secret": "6c4d0b6e37", "media": "photo", "latitude": "40.649875", "id": "418124897", "tags": "portrait musician music smile mirror reflex italia campania smiles mirrors mandolin musica napoli sorriso riflessi ritratti ritratto limone salerno minori specchio musicista limoni riflesso musicisti fisarmonica sorrisi costieraamalfitana mandolino"}, {"datetaken": "2007-02-10 23:34:56", "license": "3", "title": "dal molo", "text": "", "album_id": "72157594583189777", "longitude": "14.626321", "url_o": "https://farm1.staticflickr.com/186/418122980_823e9f06e5_o.jpg", "secret": "23941789d5", "media": "photo", "latitude": "40.649875", "id": "418122980", "tags": "city light shadow sea black building beach rock architecture night dark lights pier town sand italia mare campania shadows angle harbour geometry ombra wide cost wideangle palace ombre fisheye nighttime porto wharf napoli luci lightning palazzo grandangolo nero notte architettura molo luce palaces salerno minori citt\u00e0 palazzi geometria finestre paese costieraamalfitana antonioscaramuzzino"}, {"datetaken": "2007-03-02 03:51:27", "license": "1", "title": "homes", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/185/421192998_d18af4dee1_o.jpg", "secret": "39d6e5447d", "media": "photo", "latitude": "41.026899", "id": "421192998", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-02 03:56:02", "license": "1", "title": "gypsy home 8", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/187/421192249_e5345b8df0_o.jpg", "secret": "179f30f5a1", "media": "photo", "latitude": "41.026899", "id": "421192249", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-02 04:01:54", "license": "1", "title": "house", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/133/421195121_e99dff8dc7_o.jpg", "secret": "12c499b30b", "media": "photo", "latitude": "41.026899", "id": "421195121", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-02 04:03:04", "license": "1", "title": "dog on the roof", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/150/421196021_d9a5759505_o.jpg", "secret": "f75fb255f8", "media": "photo", "latitude": "41.026899", "id": "421196021", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-02 04:04:00", "license": "1", "title": "house", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/150/421196696_5d4bef4250_o.jpg", "secret": "4a97cfc482", "media": "photo", "latitude": "41.026899", "id": "421196696", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-02 04:04:43", "license": "1", "title": "sattelite tv sulukule", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/133/421197015_23afb7fc3d_o.jpg", "secret": "54dc6c2b02", "media": "photo", "latitude": "41.026899", "id": "421197015", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-02 04:17:51", "license": "1", "title": "sulukule from wall", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/130/411817605_6770cea262_o.jpg", "secret": "daca934af8", "media": "photo", "latitude": "41.026899", "id": "411817605", "tags": "roma istanbul gypsy settlement redevelopment cod6 sulukule"}, {"datetaken": "2007-03-02 04:34:51", "license": "1", "title": "DSCF2241", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/60/414631755_84e83a6183_o.jpg", "secret": "c19b3bc437", "media": "photo", "latitude": "41.026899", "id": "414631755", "tags": ""}, {"datetaken": "2007-03-02 04:49:42", "license": "1", "title": "gypsy house 9 (300 years old)", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/158/421202505_276b931a71_o.jpg", "secret": "bfa4a24a75", "media": "photo", "latitude": "41.026899", "id": "421202505", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-02 04:49:49", "license": "1", "title": "gypsy house 8", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/160/421202859_b4d7149846_o.jpg", "secret": "6ce97360fe", "media": "photo", "latitude": "41.026899", "id": "421202859", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-02 04:50:28", "license": "1", "title": "DSCF2257", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/158/428216873_d5a8bc43f4_o.jpg", "secret": "fd0bd5255a", "media": "photo", "latitude": "41.026899", "id": "428216873", "tags": "housing materials 007 settlement cod6 sulukule"}, {"datetaken": "2007-03-02 04:51:27", "license": "1", "title": "DSCF2258", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/185/428217790_9622df0e5d_o.jpg", "secret": "4c30d9621d", "media": "photo", "latitude": "41.026899", "id": "428217790", "tags": "housing materials 007 settlement cod6 sulukule"}, {"datetaken": "2007-03-02 05:52:42", "license": "1", "title": "DSCF2265", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/135/428218767_091722cf85_o.jpg", "secret": "8a5a99a5ae", "media": "photo", "latitude": "41.026899", "id": "428218767", "tags": "housing materials 007 settlement cod6 sulukule"}, {"datetaken": "2007-03-03 01:06:48", "license": "1", "title": "DSCF2266", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/178/428219677_a11e8ee2b5_o.jpg", "secret": "d4a5462166", "media": "photo", "latitude": "41.026899", "id": "428219677", "tags": "housing materials 007 settlement cod6 sulukule"}, {"datetaken": "2007-03-03 01:06:55", "license": "1", "title": "DSCF2267", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/168/428220806_64b25613c6_o.jpg", "secret": "7c54fd7f75", "media": "photo", "latitude": "41.026899", "id": "428220806", "tags": "housing materials 007 settlement cod6 sulukule"}, {"datetaken": "2007-03-03 01:07:13", "license": "1", "title": "DSCF2268", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/163/428221905_469fd03b78_o.jpg", "secret": "956af3ada0", "media": "photo", "latitude": "41.026899", "id": "428221905", "tags": "housing materials 007 settlement cod6 sulukule"}, {"datetaken": "2007-03-03 01:07:28", "license": "1", "title": "gypsy house 7", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/166/421203863_072ec0e580_o.jpg", "secret": "e0780aa0d8", "media": "photo", "latitude": "41.026899", "id": "421203863", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-03 01:07:57", "license": "1", "title": "gypsy house 6", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/131/421204450_9fcc08b292_o.jpg", "secret": "2a22326bfc", "media": "photo", "latitude": "41.026899", "id": "421204450", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-03 01:09:26", "license": "1", "title": "roof", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/163/421204753_84bc52ebe0_o.jpg", "secret": "6c5f0e4af7", "media": "photo", "latitude": "41.026899", "id": "421204753", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-03 01:10:01", "license": "1", "title": "gypsy roof", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/176/421205558_3bd96963b8_o.jpg", "secret": "dc98b45de1", "media": "photo", "latitude": "41.026899", "id": "421205558", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-03 01:10:28", "license": "1", "title": "gypsy grafiti", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/125/421205840_70305507a0_o.jpg", "secret": "0d07f0a717", "media": "photo", "latitude": "41.026899", "id": "421205840", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-03 01:10:42", "license": "1", "title": "gypsy house 5", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/147/421206273_dc0cc8da99_o.jpg", "secret": "6af69f5253", "media": "photo", "latitude": "41.026899", "id": "421206273", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-03 01:12:03", "license": "1", "title": "gypsy house 4-3", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/59/421206850_8e2af1bce7_o.jpg", "secret": "de0ddc74dc", "media": "photo", "latitude": "41.026899", "id": "421206850", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-03 01:12:10", "license": "1", "title": "gypsy house 4-2", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/160/421207435_515a581e1f_o.jpg", "secret": "96e66fb6ed", "media": "photo", "latitude": "41.026899", "id": "421207435", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-03 01:12:55", "license": "1", "title": "gypsy house 4", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/127/421207926_3a137f736f_o.jpg", "secret": "434330dc75", "media": "photo", "latitude": "41.026899", "id": "421207926", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-03 01:13:32", "license": "1", "title": "sulukule building materials", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/179/421208221_e7aa1879c8_o.jpg", "secret": "0bd2745b46", "media": "photo", "latitude": "41.026899", "id": "421208221", "tags": "roma istanbul forced gypsy settlement eviction municipality cod6 sulukule"}, {"datetaken": "2007-03-03 02:26:36", "license": "1", "title": "Vacant Lot", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/169/428115269_727f91f39f_o.jpg", "secret": "465b91078f", "media": "photo", "latitude": "41.026899", "id": "428115269", "tags": "roma istanbul gypsy 007 urbanrenewal settlement displacement cod6 sulukule humansettlementassociation"}, {"datetaken": "2007-03-03 02:33:02", "license": "1", "title": "Slum", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/152/428139159_a00406d33d_o.jpg", "secret": "916c64cf2e", "media": "photo", "latitude": "41.026899", "id": "428139159", "tags": "people roma migration gypsy 007 urbanrenewal settlement displacement cod6 sulukule humansettlementassociation"}, {"datetaken": "2007-03-03 02:33:11", "license": "1", "title": "Roma Home", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/94/428139974_d212a096e2_o.jpg", "secret": "a2e405ae7c", "media": "photo", "latitude": "41.026899", "id": "428139974", "tags": "people roma migration gypsy 007 urbanrenewal settlement displacement cod6 sulukule humansettlementassociation"}, {"datetaken": "2007-03-03 02:34:09", "license": "1", "title": "up the hill", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/163/428140905_4e04050956_o.jpg", "secret": "999e0e9100", "media": "photo", "latitude": "41.026899", "id": "428140905", "tags": "people roma migration gypsy 007 urbanrenewal settlement displacement cod6 sulukule humansettlementassociation"}, {"datetaken": "2007-03-03 02:34:42", "license": "1", "title": "City Walls", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/178/428142619_b6c3b5ce9d_o.jpg", "secret": "2652d47139", "media": "photo", "latitude": "41.026899", "id": "428142619", "tags": "people roma migration gypsy 007 urbanrenewal settlement displacement cod6 sulukule humansettlementassociation"}, {"datetaken": "2007-03-03 02:47:15", "license": "1", "title": "DSCF2301", "text": "", "album_id": "72157600009734330", "longitude": "28.933133", "url_o": "https://farm1.staticflickr.com/172/428146842_0ed2668089_o.jpg", "secret": "44d5b5ccde", "media": "photo", "latitude": "41.026899", "id": "428146842", "tags": "people roma migration gypsy 007 urbanrenewal settlement displacement cod6 sulukule humansettlementassociation"}, {"datetaken": "2007-03-16 03:26:20", "license": "4", "title": "SNC11712.JPG", "text": "", "album_id": "72157600026263209", "longitude": "-120.015490", "url_o": "https://farm1.staticflickr.com/182/432105226_432731b0b4_o.jpg", "secret": "793e4e89d9", "media": "photo", "latitude": "38.934138", "id": "432105226", "tags": "camera party couch bachelor sneaky"}, {"datetaken": "2007-03-16 04:19:44", "license": "4", "title": "SNC11725.JPG", "text": "", "album_id": "72157600026263209", "longitude": "-120.015490", "url_o": "https://farm1.staticflickr.com/169/432105830_7e35602dff_o.jpg", "secret": "63d2808a41", "media": "photo", "latitude": "38.934138", "id": "432105830", "tags": "party beer pingpong bachelor beirut pitcher pong"}, {"datetaken": "2007-03-16 04:21:46", "license": "4", "title": "SNC11733.JPG", "text": "", "album_id": "72157600026263209", "longitude": "-120.015490", "url_o": "https://farm1.staticflickr.com/187/432106399_fa9ec0b347_o.jpg", "secret": "2900ea84db", "media": "photo", "latitude": "38.934138", "id": "432106399", "tags": "party beer table team pingpong bachelor beirut pong"}, {"datetaken": "2007-03-16 16:27:50", "license": "4", "title": "SNC11746.JPG", "text": "", "album_id": "72157600026263209", "longitude": "-119.922552", "url_o": "https://farm1.staticflickr.com/187/432106661_337ff5768f_o.jpg", "secret": "348e4597dd", "media": "photo", "latitude": "38.956138", "id": "432106661", "tags": "party lake tahoe guys bachelor heavenly"}, {"datetaken": "2007-03-16 17:57:18", "license": "4", "title": "SNC11757.JPG", "text": "", "album_id": "72157600026263209", "longitude": "-119.922552", "url_o": "https://farm1.staticflickr.com/153/432107114_d0901bf5cb_o.jpg", "secret": "89d3b09281", "media": "photo", "latitude": "38.956138", "id": "432107114", "tags": "party lake selfportrait tahoe bachelor"}, {"datetaken": "2007-03-16 21:14:10", "license": "4", "title": "SNC11762.JPG", "text": "", "album_id": "72157600026263209", "longitude": "-120.015490", "url_o": "https://farm1.staticflickr.com/164/432107879_9ed32bbefd_o.jpg", "secret": "a5c63ecbff", "media": "photo", "latitude": "38.934138", "id": "432107879", "tags": "party cooking meat bachelor peppers saute"}, {"datetaken": "2007-03-17 15:20:16", "license": "4", "title": "SNC11804.JPG", "text": "", "album_id": "72157600026263209", "longitude": "-120.015490", "url_o": "https://farm1.staticflickr.com/171/432108485_f099cd89a7_o.jpg", "secret": "ef186d2fc6", "media": "photo", "latitude": "38.934138", "id": "432108485", "tags": "party green beer guinness bachelor stpattys"}, {"datetaken": "2007-03-17 15:53:30", "license": "4", "title": "SNC11807.JPG", "text": "", "album_id": "72157600026263209", "longitude": "-120.015490", "url_o": "https://farm1.staticflickr.com/153/432109205_264c974c99_o.jpg", "secret": "49c03c1514", "media": "photo", "latitude": "38.934138", "id": "432109205", "tags": "party magazine guys couch bachelor"}, {"datetaken": "2007-03-17 15:56:22", "license": "4", "title": "SNC11810.JPG", "text": "", "album_id": "72157600026263209", "longitude": "-120.015490", "url_o": "https://farm1.staticflickr.com/175/432109973_cb66482457_o.jpg", "secret": "434f39e1bb", "media": "photo", "latitude": "38.934138", "id": "432109973", "tags": "houses party keys tahoe wave deck bachelor"}, {"datetaken": "2007-03-17 15:57:34", "license": "4", "title": "SNC11812.JPG", "text": "", "album_id": "72157600026263209", "longitude": "-120.015490", "url_o": "https://farm1.staticflickr.com/147/432110500_0412a997f5_o.jpg", "secret": "4fbc26cbe1", "media": "photo", "latitude": "38.934138", "id": "432110500", "tags": "party mountain keys dock tahoe bachelor"}, {"datetaken": "2007-03-17 20:13:24", "license": "4", "title": "SNC11826.JPG", "text": "", "album_id": "72157600026263209", "longitude": "-120.015490", "url_o": "https://farm1.staticflickr.com/186/432111361_132acb980e_o.jpg", "secret": "fbf4d90bf8", "media": "photo", "latitude": "38.934138", "id": "432111361", "tags": "party guitar bachelor wireless guitarhero mode cooperative"}, {"datetaken": "2007-03-17 20:13:56", "license": "4", "title": "SNC11827.JPG", "text": "", "album_id": "72157600026263209", "longitude": "-120.015490", "url_o": "https://farm1.staticflickr.com/185/432111853_371a1a6d48_o.jpg", "secret": "747598fa67", "media": "photo", "latitude": "38.934138", "id": "432111853", "tags": "party guitar bachelor wireless guitarhero mode cooperative"}, {"datetaken": "2007-03-17 21:24:20", "license": "4", "title": "SNC11828.JPG", "text": "", "album_id": "72157600026263209", "longitude": "-120.015490", "url_o": "https://farm1.staticflickr.com/181/432112174_e9ca5274ec_o.jpg", "secret": "84c908c73a", "media": "photo", "latitude": "38.934138", "id": "432112174", "tags": "party ski apple glass shot alcohol bachelor pucker jimbeam"}, {"datetaken": "2007-03-17 21:28:44", "license": "4", "title": "SNC11830.JPG", "text": "", "album_id": "72157600026263209", "longitude": "-120.015490", "url_o": "https://farm1.staticflickr.com/144/432112806_0c430f13e1_o.jpg", "secret": "ac4116ee67", "media": "photo", "latitude": "38.934138", "id": "432112806", "tags": "party ski apple glass shot alcohol bachelor pucker jimbeam"}, {"datetaken": "2007-03-17 21:31:04", "license": "4", "title": "SNC11832.JPG", "text": "", "album_id": "72157600026263209", "longitude": "-120.015490", "url_o": "https://farm1.staticflickr.com/180/432113612_a42f383153_o.jpg", "secret": "4246ecc43c", "media": "photo", "latitude": "38.934138", "id": "432113612", "tags": "party ski apple glass shot alcohol bachelor pucker jimbeam"}, {"datetaken": "2007-03-17 22:01:08", "license": "4", "title": "SNC11833.JPG", "text": "", "album_id": "72157600026263209", "longitude": "-120.015490", "url_o": "https://farm1.staticflickr.com/146/432114406_3d0ec1231a_o.jpg", "secret": "651742bf03", "media": "photo", "latitude": "38.934138", "id": "432114406", "tags": "party ski apple glass shot alcohol bachelor pucker jimbeam"}, {"datetaken": "2007-04-01 20:37:50", "license": "3", "title": "Bikers in Galvaston", "text": "", "album_id": "72157600056004952", "longitude": "-94.799308", "url_o": "https://farm1.staticflickr.com/178/443122147_bfdc084ee9_o.jpg", "secret": "c412dd1b17", "media": "photo", "latitude": "29.283703", "id": "443122147", "tags": "bar island seaside texas bikers galvaston"}, {"datetaken": "2007-04-01 20:39:32", "license": "3", "title": "They Should Charge By The Hour", "text": "", "album_id": "72157600056004952", "longitude": "-94.799308", "url_o": "https://farm1.staticflickr.com/188/443122897_6b310dbab3_o.jpg", "secret": "f0397c0ded", "media": "photo", "latitude": "29.283703", "id": "443122897", "tags": "old man island seaside chair couple texas motel plastic driftwood galvaston"}, {"datetaken": "2007-04-01 20:44:04", "license": "3", "title": "Please See Next Image", "text": "", "album_id": "72157600056004952", "longitude": "-94.799308", "url_o": "https://farm1.staticflickr.com/192/443123505_0020183458_o.jpg", "secret": "404b146a9c", "media": "photo", "latitude": "29.283703", "id": "443123505", "tags": "gay bar island seaside texas beachfront galvaston"}, {"datetaken": "2007-04-01 20:44:45", "license": "3", "title": "Brokeback Mountain", "text": "", "album_id": "72157600056004952", "longitude": "-94.799308", "url_o": "https://farm1.staticflickr.com/177/443123901_a88d665b3c_o.jpg", "secret": "8531c37d0b", "media": "photo", "latitude": "29.283703", "id": "443123901", "tags": "gay mountain cowboys island seaside texas beachfront galvaston brokeback"}, {"datetaken": "2007-04-01 20:46:02", "license": "3", "title": "Another Bad Motel", "text": "", "album_id": "72157600056004952", "longitude": "-94.799308", "url_o": "https://farm1.staticflickr.com/198/443121548_aaba27ebbc_o.jpg", "secret": "bfe9a43bd4", "media": "photo", "latitude": "29.283703", "id": "443121548", "tags": "island seaside texas motel galvaston"}, {"datetaken": "2007-04-01 20:49:07", "license": "3", "title": "Crap Tower", "text": "", "album_id": "72157600056004952", "longitude": "-94.799308", "url_o": "https://farm1.staticflickr.com/202/443122854_1c97fc892c_o.jpg", "secret": "d0929159c1", "media": "photo", "latitude": "29.283703", "id": "443122854", "tags": "building island seaside texas derelict galvaston"}, {"datetaken": "2007-04-01 20:49:22", "license": "3", "title": "To Hell In A Handcart", "text": "", "album_id": "72157600056004952", "longitude": "-94.799308", "url_o": "https://farm1.staticflickr.com/208/443127173_c49d0604a3_o.jpg", "secret": "1d307b00e4", "media": "photo", "latitude": "29.283703", "id": "443127173", "tags": "house building island wooden seaside texas derelict beachfront galvaston"}, {"datetaken": "2007-04-01 20:50:00", "license": "3", "title": "To Hell In A Handcart 2", "text": "", "album_id": "72157600056004952", "longitude": "-94.799308", "url_o": "https://farm1.staticflickr.com/209/443125138_656fdc1d74_o.jpg", "secret": "f5f8b8924c", "media": "photo", "latitude": "29.283703", "id": "443125138", "tags": "house building island wooden seaside texas derelict beachfront galvaston"}, {"datetaken": "2007-04-01 21:03:10", "license": "3", "title": "The Bikers In Galvaston Again", "text": "", "album_id": "72157600056004952", "longitude": "-94.799308", "url_o": "https://farm1.staticflickr.com/200/443125840_64989b4f9d_o.jpg", "secret": "e243e70654", "media": "photo", "latitude": "29.283703", "id": "443125840", "tags": "bar island seaside texas bikers galvaston"}, {"datetaken": "2007-04-01 21:03:43", "license": "3", "title": "Galvaston Beach", "text": "", "album_id": "72157600056004952", "longitude": "-94.799308", "url_o": "https://farm1.staticflickr.com/201/443129973_10d8922dc2_o.jpg", "secret": "b1e79cad85", "media": "photo", "latitude": "29.283703", "id": "443129973", "tags": "sea beach mexico island coast seaside texas gulf galvaston"}, {"datetaken": "2007-04-01 21:06:25", "license": "3", "title": "Causeway On Galvaston Beach", "text": "", "album_id": "72157600056004952", "longitude": "-94.799308", "url_o": "https://farm1.staticflickr.com/204/443127422_30ee305b6e_o.jpg", "secret": "082ead7754", "media": "photo", "latitude": "29.283703", "id": "443127422", "tags": "sea beach stone mexico island coast seaside rocks texas gulf causeway galvaston"}, {"datetaken": "2007-04-01 21:14:09", "license": "3", "title": "Tramlines To The Cruise Liner", "text": "", "album_id": "72157600056004952", "longitude": "-94.797935", "url_o": "https://farm1.staticflickr.com/172/443128442_9b240829c2_o.jpg", "secret": "3710e97f3c", "media": "photo", "latitude": "29.307731", "id": "443128442", "tags": "street cruise trees lines island seaside texas tram palm liner galvaston"}, {"datetaken": "2007-04-01 21:22:21", "license": "3", "title": "Random Building in Galvaston", "text": "", "album_id": "72157600056004952", "longitude": "-94.797935", "url_o": "https://farm1.staticflickr.com/169/443129340_9b14d8c25e_o.jpg", "secret": "45b7678226", "media": "photo", "latitude": "29.307731", "id": "443129340", "tags": "building island seaside high texas rise galvaston"}, {"datetaken": "2007-04-01 21:23:17", "license": "3", "title": "The Strand in Galvaston", "text": "", "album_id": "72157600056004952", "longitude": "-94.797935", "url_o": "https://farm1.staticflickr.com/191/443130174_32d431c1c1_o.jpg", "secret": "dd57a291db", "media": "photo", "latitude": "29.307731", "id": "443130174", "tags": "street strand island seaside texas main shops stores galvaston"}, {"datetaken": "2007-04-01 21:24:10", "license": "3", "title": "Fat Lass", "text": "", "album_id": "72157600056004952", "longitude": "-94.797935", "url_o": "https://farm1.staticflickr.com/209/443131132_01146ade9c_o.jpg", "secret": "4df7aec0a3", "media": "photo", "latitude": "29.307731", "id": "443131132", "tags": "street woman strand island seaside texas fat main american shops stores galvaston"}, {"datetaken": "2007-04-01 21:29:31", "license": "3", "title": "Texan Flags in Galvaston", "text": "", "album_id": "72157600056004952", "longitude": "-94.797935", "url_o": "https://farm1.staticflickr.com/199/443135393_69ec4879d3_o.jpg", "secret": "721698f791", "media": "photo", "latitude": "29.307731", "id": "443135393", "tags": "stars island seaside texas stripes flag united states texan galvaston"}, {"datetaken": "2007-04-01 22:22:52", "license": "3", "title": "Cruise Liner", "text": "", "album_id": "72157600056004952", "longitude": "-94.797935", "url_o": "https://farm1.staticflickr.com/189/443132468_1529adf240_o.jpg", "secret": "6ba5ca8351", "media": "photo", "latitude": "29.307731", "id": "443132468", "tags": "cruise island boat seaside texas docked liner galvaston"}, {"datetaken": "2007-04-01 22:26:49", "license": "3", "title": "Derelict Building", "text": "", "album_id": "72157600056004952", "longitude": "-94.797935", "url_o": "https://farm1.staticflickr.com/192/443133720_dcef6b889b_o.jpg", "secret": "05ed5c55a1", "media": "photo", "latitude": "29.307731", "id": "443133720", "tags": "building island seaside texas derelict galvaston"}, {"datetaken": "2007-04-01 22:28:01", "license": "3", "title": "Galvaston Old Town Alleyway", "text": "", "album_id": "72157600056004952", "longitude": "-94.797935", "url_o": "https://farm1.staticflickr.com/192/443138003_d18134da04_o.jpg", "secret": "594e01183f", "media": "photo", "latitude": "29.307731", "id": "443138003", "tags": "building island seaside alley texas alleyway derelict galvaston"}, {"datetaken": "2007-04-01 22:37:00", "license": "3", "title": "Masonic Lodge Historical Plaque", "text": "", "album_id": "72157600056004952", "longitude": "-94.797935", "url_o": "https://farm1.staticflickr.com/178/443135710_686cbfade5_o.jpg", "secret": "b775fe709a", "media": "photo", "latitude": "29.307731", "id": "443135710", "tags": "plaque island seaside texas scottish lodge masonic historical rite galvaston"}, {"datetaken": "2007-04-01 22:37:48", "license": "3", "title": "Masonic Lodge Entrance", "text": "", "album_id": "72157600056004952", "longitude": "-94.797935", "url_o": "https://farm1.staticflickr.com/200/443140311_2f2ffd9dff_o.jpg", "secret": "65e02bb954", "media": "photo", "latitude": "29.307731", "id": "443140311", "tags": "island seaside texas scottish lodge masonic rite galvaston"}, {"datetaken": "2007-04-01 22:38:39", "license": "3", "title": "Masonic Lodge", "text": "", "album_id": "72157600056004952", "longitude": "-94.797935", "url_o": "https://farm1.staticflickr.com/204/443137730_717179ab11_o.jpg", "secret": "16e3345252", "media": "photo", "latitude": "29.307731", "id": "443137730", "tags": "island seaside texas scottish lodge masonic prius rite galvaston"}, {"datetaken": "2007-04-01 22:39:40", "license": "3", "title": "Derelict Building", "text": "", "album_id": "72157600056004952", "longitude": "-94.797935", "url_o": "https://farm1.staticflickr.com/183/443139022_14ef86cd6b_o.jpg", "secret": "fb5d6ca0fb", "media": "photo", "latitude": "29.307731", "id": "443139022", "tags": "building island seaside texas derelict galvaston"}, {"datetaken": "2007-04-01 22:40:58", "license": "3", "title": "Masonic Lodge Window", "text": "", "album_id": "72157600056004952", "longitude": "-94.797935", "url_o": "https://farm1.staticflickr.com/188/443140050_7e50c7b133_o.jpg", "secret": "1d50afb0ee", "media": "photo", "latitude": "29.307731", "id": "443140050", "tags": "window island seaside texas scottish lodge masonic rite galvaston"}, {"datetaken": "2007-04-01 22:43:01", "license": "3", "title": "Galvaston Post Office", "text": "", "album_id": "72157600056004952", "longitude": "-94.797935", "url_o": "https://farm1.staticflickr.com/177/443143881_84c1659f27_o.jpg", "secret": "e74dbc54cb", "media": "photo", "latitude": "29.307731", "id": "443143881", "tags": "house court island office seaside texas post united states customs galvaston"}, {"datetaken": "2007-04-01 22:43:59", "license": "3", "title": "1836 Texas Revolution Memorial", "text": "", "album_id": "72157600056004952", "longitude": "-94.797935", "url_o": "https://farm1.staticflickr.com/205/443144807_6dc9f040e6_o.jpg", "secret": "155c8992ba", "media": "photo", "latitude": "29.307731", "id": "443144807", "tags": "statue island seaside memorial war texas revolution texan galvaston 1836"}, {"datetaken": "2007-04-01 22:51:21", "license": "3", "title": "Harrods It Aint", "text": "", "album_id": "72157600056004952", "longitude": "-94.797935", "url_o": "https://farm1.staticflickr.com/178/443142250_cee764a5d7_o.jpg", "secret": "db7ac2e421", "media": "photo", "latitude": "29.307731", "id": "443142250", "tags": "shop island store seaside texas convenience galvaston"}, {"datetaken": "2007-04-01 22:54:40", "license": "3", "title": "Another Derelict Building", "text": "", "album_id": "72157600056004952", "longitude": "-94.797935", "url_o": "https://farm1.staticflickr.com/209/443142940_8bcb58f1ba_o.jpg", "secret": "904e60741e", "media": "photo", "latitude": "29.307731", "id": "443142940", "tags": "shop island store seaside texas galvaston"}, {"datetaken": "2007-03-24 14:38:51", "license": "1", "title": "A Front View Of The Model", "text": "", "album_id": "72157600026423432", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/434018856_c236a64fd3_o.jpg", "secret": "a1440baf50", "media": "photo", "latitude": "0", "id": "434018856", "tags": "michael joe modelhouse yoss yosshouse"}, {"datetaken": "2007-03-24 14:38:55", "license": "1", "title": "Front Porch", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/155/433959214_cb61708284_o.jpg", "secret": "e37eeb7927", "media": "photo", "latitude": "42.061385", "id": "433959214", "tags": "chris michael joe modelhouse chriso yoss yosshouse ordonii"}, {"datetaken": "2007-03-24 14:38:59", "license": "1", "title": "The Three Car Garage Space", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/47/433960815_735c394b0b_o.jpg", "secret": "ab7de5970d", "media": "photo", "latitude": "42.061385", "id": "433960815", "tags": "michael mark modelhouse yoss yosshouse ordonii"}, {"datetaken": "2007-03-24 14:39:30", "license": "1", "title": "Front Room Looking Up Towards The Loft", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/154/433962278_eaec8eaf51_o.jpg", "secret": "1e39f37914", "media": "photo", "latitude": "42.061385", "id": "433962278", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:39:35", "license": "1", "title": "Front Room", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/165/433963845_b833ef9468_o.jpg", "secret": "0cfb5bfc66", "media": "photo", "latitude": "42.061385", "id": "433963845", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:39:46", "license": "1", "title": "So So Open!", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/151/433965437_58400b5f7f_o.jpg", "secret": "f68b619058", "media": "photo", "latitude": "42.061385", "id": "433965437", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:39:55", "license": "1", "title": "The Stairs", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/174/433966638_2a017ce641_o.jpg", "secret": "5d6519ce9d", "media": "photo", "latitude": "42.061385", "id": "433966638", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:40:20", "license": "1", "title": "Downstairs Office", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/145/433968095_54e33fbb47_o.jpg", "secret": "f9bad3bbaa", "media": "photo", "latitude": "42.061385", "id": "433968095", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:40:47", "license": "1", "title": "The Back Porch", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/148/433969022_eda0ba2b8f_o.jpg", "secret": "c5f66572e4", "media": "photo", "latitude": "42.061385", "id": "433969022", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:40:57", "license": "1", "title": "A Neat Angled Wall", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/180/433970553_f078669933_o.jpg", "secret": "371ac50573", "media": "photo", "latitude": "42.061385", "id": "433970553", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:41:08", "license": "1", "title": "The Garage and The Basement Access", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/180/433972186_b2e3eb756d_o.jpg", "secret": "08adb5db90", "media": "photo", "latitude": "42.061385", "id": "433972186", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:42:17", "license": "1", "title": "There Will Be No Fireplace", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/186/433973690_1995ebddd5_o.jpg", "secret": "32853ef2cf", "media": "photo", "latitude": "42.061385", "id": "433973690", "tags": "tvs modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:42:39", "license": "1", "title": "Basement", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/185/433975550_dbb4e3bece_o.jpg", "secret": "4fd869ad11", "media": "photo", "latitude": "42.061385", "id": "433975550", "tags": "chris michael modelhouse chriso yoss yosshouse ordonii"}, {"datetaken": "2007-03-24 14:43:10", "license": "1", "title": "Basement", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/154/433977232_60fcf0da36_o.jpg", "secret": "6d19a1503d", "media": "photo", "latitude": "42.061385", "id": "433977232", "tags": "chris michael mark cristina modelhouse chriso yoss yosshouse ordonii"}, {"datetaken": "2007-03-24 14:44:49", "license": "1", "title": "From The Stairs", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/156/433978600_683cd33066_o.jpg", "secret": "3df7ff8b38", "media": "photo", "latitude": "42.061385", "id": "433978600", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:45:00", "license": "1", "title": "Loft Area", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/179/433980693_a263b60915_o.jpg", "secret": "fd223e7f0f", "media": "photo", "latitude": "42.061385", "id": "433980693", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:45:05", "license": "1", "title": "Between The Loft and The Bedroom That Will Expand", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/156/433981594_a4c2c4f22d_o.jpg", "secret": "dadc521600", "media": "photo", "latitude": "42.061385", "id": "433981594", "tags": "michael modelhouse yoss yosshouse"}, {"datetaken": "2007-03-24 14:45:41", "license": "1", "title": "Upstairs Hall", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/173/433983060_5e8cf72ebb_o.jpg", "secret": "5e09d299db", "media": "photo", "latitude": "42.061385", "id": "433983060", "tags": "joe modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:45:53", "license": "1", "title": "Small Bedroom -> Secondary Master Bedroom", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/173/433985303_25012557dc_o.jpg", "secret": "33d1006314", "media": "photo", "latitude": "42.061385", "id": "433985303", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:46:09", "license": "1", "title": "Small Bedroom One", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/180/433985950_41e1ba25e7_o.jpg", "secret": "8e97141d9b", "media": "photo", "latitude": "42.061385", "id": "433985950", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:46:40", "license": "1", "title": "Cristina-Sized Tub", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/185/433988243_7f61a30929_o.jpg", "secret": "1c70cb68d8", "media": "photo", "latitude": "42.061385", "id": "433988243", "tags": "cristina modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:46:49", "license": "1", "title": "Huuuuge!", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/176/433988706_99bcdb9cfe_o.jpg", "secret": "bfd99916ca", "media": "photo", "latitude": "42.061385", "id": "433988706", "tags": "michael modelhouse yoss yosshouse"}, {"datetaken": "2007-03-24 14:46:59", "license": "1", "title": "Another Angle Of The Primary Master", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/187/433991425_00d005e460_o.jpg", "secret": "03e9698a15", "media": "photo", "latitude": "42.061385", "id": "433991425", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:47:31", "license": "1", "title": "Nice Big Sink Counter Space", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/163/433992949_7b85e80e19_o.jpg", "secret": "779199595b", "media": "photo", "latitude": "42.061385", "id": "433992949", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:47:37", "license": "1", "title": "Standalone Shower Stall", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/177/433993885_d7284cd503_o.jpg", "secret": "16191e4f83", "media": "photo", "latitude": "42.061385", "id": "433993885", "tags": "joe modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:48:38", "license": "1", "title": "Another Small Bedroom", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/153/433994110_8a7c4afba8_o.jpg", "secret": "2210333095", "media": "photo", "latitude": "42.061385", "id": "433994110", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:48:51", "license": "1", "title": "Small Bedroom Two", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/157/433995460_38fba98c33_o.jpg", "secret": "56915d282d", "media": "photo", "latitude": "42.061385", "id": "433995460", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:49:05", "license": "1", "title": "Primary Master Bedroom Hall Shot", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/173/433997182_73ec53ae78_o.jpg", "secret": "7a0cf80890", "media": "photo", "latitude": "42.061385", "id": "433997182", "tags": "joe modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:49:31", "license": "1", "title": "The Shared Upstairs Bathroom", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/169/433998668_7a981473a3_o.jpg", "secret": "8186069245", "media": "photo", "latitude": "42.061385", "id": "433998668", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:49:51", "license": "1", "title": "From The Loft Area", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/184/434000642_e4d3c7ae09_o.jpg", "secret": "4b15861336", "media": "photo", "latitude": "42.061385", "id": "434000642", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 14:51:05", "license": "1", "title": "The Front Room/Dining Room", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/162/434001954_e1c6a3f3bf_o.jpg", "secret": "116dee1971", "media": "photo", "latitude": "42.061385", "id": "434001954", "tags": "modelhouse yosshouse"}, {"datetaken": "2007-03-24 15:03:56", "license": "1", "title": "I Would Have High Shelf Esteem If I Owned These", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/150/434004793_94af8ed248_o.jpg", "secret": "fc0f729c07", "media": "photo", "latitude": "42.061385", "id": "434004793", "tags": "shelves modelhouse"}, {"datetaken": "2007-03-24 15:04:04", "license": "1", "title": "Some Fancy Shelves In Another Model House", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/174/434006577_e692348352_o.jpg", "secret": "4950827cd2", "media": "photo", "latitude": "42.061385", "id": "434006577", "tags": "shelves modelhouse"}, {"datetaken": "2007-03-24 15:15:00", "license": "1", "title": "What It Is", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/183/434007814_b218a32b57_o.jpg", "secret": "b7c3ed0d5f", "media": "photo", "latitude": "42.061385", "id": "434007814", "tags": "maps lot modelhouse yosshouse"}, {"datetaken": "2007-03-24 15:18:05", "license": "1", "title": "Where It Is", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/148/434010829_182d14eb98_o.jpg", "secret": "c7094ef48d", "media": "photo", "latitude": "42.061385", "id": "434010829", "tags": "maps yosshouse"}, {"datetaken": "2007-03-24 15:20:24", "license": "1", "title": "Indicating Dimensions", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/160/434011510_e9e9e5132f_o.jpg", "secret": "090e29aa54", "media": "photo", "latitude": "42.061385", "id": "434011510", "tags": "michael lot pointing yoss yosshouse"}, {"datetaken": "2007-03-24 15:20:31", "license": "1", "title": "Lot Shot", "text": "", "album_id": "72157600026423432", "longitude": "-88.230900", "url_o": "https://farm1.staticflickr.com/182/434012826_d9b6c7c062_o.jpg", "secret": "1169bdf3ce", "media": "photo", "latitude": "42.061385", "id": "434012826", "tags": "lot yosshouse"}, {"datetaken": "2007-04-07 13:03:51", "license": "2", "title": "Cattedrale di San Giovanni Battista", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/247/458495683_124efe4b36_o.jpg", "secret": "caf5cb46e4", "media": "photo", "latitude": "0", "id": "458495683", "tags": "italy church cathedral turin stjohnthebaptist"}, {"datetaken": "2007-04-07 13:11:09", "license": "2", "title": "Cathedral Ceiling", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/190/458480120_42836b023e_o.jpg", "secret": "a1f8e7c5d6", "media": "photo", "latitude": "0", "id": "458480120", "tags": "italy church cathedral turin stjohnthebaptist"}, {"datetaken": "2007-04-07 13:11:45", "license": "2", "title": "The Last Supper", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/237/458480420_29cc2f19b8_o.jpg", "secret": "cc27fc69c8", "media": "photo", "latitude": "0", "id": "458480420", "tags": "italy church cathedral turin stjohnthebaptist"}, {"datetaken": "2007-04-07 13:13:14", "license": "2", "title": "Cathedral Inside", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/212/458480276_22cae438e1_o.jpg", "secret": "93c5cefa6d", "media": "photo", "latitude": "0", "id": "458480276", "tags": "italy church cathedral turin stjohnthebaptist"}, {"datetaken": "2007-04-07 14:04:27", "license": "2", "title": "Something Old, Something New", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/244/459634148_4a42e57f43_o.jpg", "secret": "539b1f9aa1", "media": "photo", "latitude": "0", "id": "459634148", "tags": "italy reflection torino turin"}, {"datetaken": "2007-04-07 14:29:24", "license": "2", "title": "River Po", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/458445078_86f9ac2181_o.jpg", "secret": "46565850c3", "media": "photo", "latitude": "0", "id": "458445078", "tags": "italy river monk po cappuccino turin monastry capuchin"}, {"datetaken": "2007-04-07 14:50:12", "license": "2", "title": "Torino Panorama", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/206/458441502_8d20161a43_o.jpg", "secret": "4ffa39ad35", "media": "photo", "latitude": "0", "id": "458441502", "tags": "italy panorama torino scenery mole"}, {"datetaken": "2007-04-07 14:56:10", "license": "2", "title": "The Chapel Ceiling", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/202/460046974_1cb4bb0beb_o.jpg", "secret": "6897daa37e", "media": "photo", "latitude": "0", "id": "460046974", "tags": "italy green yellow torino interior turin monastry capuccino"}, {"datetaken": "2007-04-07 14:56:59", "license": "2", "title": "Inside the Monastry", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/202/460054191_4a49f2ef7e_o.jpg", "secret": "56455683a9", "media": "photo", "latitude": "0", "id": "460054191", "tags": "italy torino interior turin monastry capuccino"}, {"datetaken": "2007-04-07 14:57:30", "license": "2", "title": "The Hand that Wields the Cross", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/216/460047414_bff3d9a6bc_o.jpg", "secret": "ee206d7652", "media": "photo", "latitude": "0", "id": "460047414", "tags": "italy torino interior turin monastry capuccino"}, {"datetaken": "2007-04-07 15:01:13", "license": "2", "title": "Mary", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/233/460063059_cb5c33e4a8_o.jpg", "secret": "05c3c78645", "media": "photo", "latitude": "0", "id": "460063059", "tags": "italy torino mary cappuccino turin monastry"}, {"datetaken": "2007-04-07 17:44:01", "license": "2", "title": "Screaming, Reflecting Man", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/246/459634324_3819afc9aa_o.jpg", "secret": "e5e99c705d", "media": "photo", "latitude": "0", "id": "459634324", "tags": "italy torino turin"}, {"datetaken": "2007-04-07 17:44:08", "license": "2", "title": "?", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/459634420_5a1e5c898b_o.jpg", "secret": "81ea5478d1", "media": "photo", "latitude": "0", "id": "459634420", "tags": "italy torino turin"}, {"datetaken": "2007-04-07 17:51:51", "license": "2", "title": "Mole Antonelliana", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/458453449_fb059f814c_o.jpg", "secret": "103cf96a5b", "media": "photo", "latitude": "0", "id": "458453449", "tags": "uk italy torino mole antonelliana"}, {"datetaken": "2007-04-07 18:00:49", "license": "2", "title": "Teatro Regio Torino", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/250/459634496_5426ee903e_o.jpg", "secret": "cdcd4371a8", "media": "photo", "latitude": "0", "id": "459634496", "tags": "italy torino teatro theater royal turin regio"}, {"datetaken": "2007-04-07 18:06:48", "license": "2", "title": "Lights in the Royal Theater", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/460067843_d3a216e738_o.jpg", "secret": "964b416fe6", "media": "photo", "latitude": "0", "id": "460067843", "tags": "italy torino theater interior royal squaredcircle turin guardiancandidate tamarapolajnarportfolio"}, {"datetaken": "2007-04-07 18:09:38", "license": "2", "title": "Interior of the Royal Theater", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/248/460068001_dce66f51ae_o.jpg", "secret": "fe83717f8c", "media": "photo", "latitude": "0", "id": "460068001", "tags": "italy torino theater interior royal turin"}, {"datetaken": "2007-04-07 18:10:16", "license": "2", "title": "Light Reflections", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/251/460061078_9100c3b5c2_o.jpg", "secret": "716980de5f", "media": "photo", "latitude": "0", "id": "460061078", "tags": "italy torino theater interior royal turin"}, {"datetaken": "2007-04-07 18:12:38", "license": "2", "title": "Sunset Over Turin", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/235/459634200_e801c6e9be_o.jpg", "secret": "0b339be2e7", "media": "photo", "latitude": "0", "id": "459634200", "tags": "sunset italy torino turin"}, {"datetaken": "2007-04-07 18:15:44", "license": "2", "title": "Side Glance at the Castle", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/460061312_d839cdbd52_o.jpg", "secret": "570cf1b5a7", "media": "photo", "latitude": "0", "id": "460061312", "tags": "italy torino theater interior royal turin"}, {"datetaken": "2007-04-07 18:27:57", "license": "2", "title": "Los Ramones de Torino", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/460098001_5a6fa97b7d_o.jpg", "secret": "27b82c3ea5", "media": "photo", "latitude": "0", "id": "460098001", "tags": "italy torino regina turin elisa d80"}, {"datetaken": "2007-04-07 18:40:41", "license": "2", "title": "The Arched Walkways of Torino", "text": "", "album_id": "72157600074809393", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/458443781_a7f258b7a3_o.jpg", "secret": "6af3b71387", "media": "photo", "latitude": "0", "id": "458443781", "tags": "uk italy night torino walkway"}, {"datetaken": "2007-04-03 06:54:55", "license": "4", "title": "Clock Tower", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/214/475717591_8653e3bd50_o.jpg", "secret": "e2579d8e2f", "media": "photo", "latitude": "0", "id": "475717591", "tags": "france tower clock hotel calais"}, {"datetaken": "2007-04-03 06:55:37", "license": "4", "title": "Hotel de Ville, Calais", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/221/475717595_da7c3232fc_o.jpg", "secret": "bd89416e4c", "media": "photo", "latitude": "0", "id": "475717595", "tags": "france rodin calais burghersofcalais"}, {"datetaken": "2007-04-03 06:57:04", "license": "4", "title": "The Burghers of Calais, Calais", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/475717597_acc7edf128_o.jpg", "secret": "4476962d18", "media": "photo", "latitude": "0", "id": "475717597", "tags": ""}, {"datetaken": "2007-04-03 08:12:57", "license": "4", "title": "Friendly Cafe", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/224/475717599_70878e4915_o.jpg", "secret": "66b9fbc700", "media": "photo", "latitude": "0", "id": "475717599", "tags": "france bar cafe"}, {"datetaken": "2007-04-03 09:09:56", "license": "4", "title": "Church in Montreuil", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/475717601_d6c3a74c91_o.jpg", "secret": "cf4cc2955c", "media": "photo", "latitude": "0", "id": "475717601", "tags": "france church montreuilsurmer"}, {"datetaken": "2007-04-03 09:41:38", "license": "4", "title": "Lilly's Room", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/475717605_9a1d2b424f_o.jpg", "secret": "ea00f9b15b", "media": "photo", "latitude": "0", "id": "475717605", "tags": ""}, {"datetaken": "2007-04-03 09:50:37", "license": "4", "title": "Rooftops", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/475722822_65886fc0f4_o.jpg", "secret": "8874cf22dd", "media": "photo", "latitude": "0", "id": "475722822", "tags": "french rooftops redtiles"}, {"datetaken": "2007-04-03 09:50:55", "license": "4", "title": "Copper Lamp", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/203/475722836_03aaa3b8ce_o.jpg", "secret": "968979e003", "media": "photo", "latitude": "0", "id": "475722836", "tags": "brick wroughtiron lamppost copper redroof"}, {"datetaken": "2007-04-03 09:54:20", "license": "4", "title": "Hotel Room in Montreuil", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/475722846_e696956637_o.jpg", "secret": "89ef60df90", "media": "photo", "latitude": "0", "id": "475722846", "tags": ""}, {"datetaken": "2007-04-03 10:02:38", "license": "4", "title": "View of Square", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/199/475722852_5e419ef165_o.jpg", "secret": "e3123d2e13", "media": "photo", "latitude": "0", "id": "475722852", "tags": ""}, {"datetaken": "2007-04-03 10:47:26", "license": "4", "title": "French restaurant", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/475722856_60b3031794_o.jpg", "secret": "11e93fdb2b", "media": "photo", "latitude": "0", "id": "475722856", "tags": ""}, {"datetaken": "2007-04-03 11:42:17", "license": "4", "title": "French Bar Scene", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/195/475722860_96450f3ed9_o.jpg", "secret": "98662ee40f", "media": "photo", "latitude": "0", "id": "475722860", "tags": ""}, {"datetaken": "2007-04-04 02:36:32", "license": "4", "title": "Great Old House", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/475870581_79b5b8c94c_o.jpg", "secret": "feaa076eab", "media": "photo", "latitude": "0", "id": "475870581", "tags": "old house france shutters peelingpaint"}, {"datetaken": "2007-04-04 02:59:50", "license": "4", "title": "Entrance to Citadel", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/193/475870583_27249064e7_o.jpg", "secret": "95b440625a", "media": "photo", "latitude": "0", "id": "475870583", "tags": "france citadel 13thcentury montreuilsurmer"}, {"datetaken": "2007-04-04 03:03:10", "license": "4", "title": "Arrow Slits", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/224/475870587_7f40e5ab87_o.jpg", "secret": "468d1316ca", "media": "photo", "latitude": "0", "id": "475870587", "tags": ""}, {"datetaken": "2007-04-04 03:07:12", "license": "4", "title": "Bust from Chapel", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/215/475870599_8650ae43be_o.jpg", "secret": "9f174068a1", "media": "photo", "latitude": "0", "id": "475870599", "tags": "sculpture stone bust"}, {"datetaken": "2007-04-04 03:08:41", "license": "4", "title": "View of Citadel", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/210/475870601_e6300b7797_o.jpg", "secret": "c230fff5c7", "media": "photo", "latitude": "0", "id": "475870601", "tags": "france citadel whitetower montreuilsurmer"}, {"datetaken": "2007-04-04 03:12:13", "license": "4", "title": "White Tower", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/224/475872408_0879830fbd_o.jpg", "secret": "42885753bf", "media": "photo", "latitude": "0", "id": "475872408", "tags": ""}, {"datetaken": "2007-04-04 03:13:21", "license": "4", "title": "Tough Flowers", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/223/475872412_7ec804f864_o.jpg", "secret": "b6271710e3", "media": "photo", "latitude": "0", "id": "475872412", "tags": "flowers brick green tenacity persistence"}, {"datetaken": "2007-04-04 03:17:36", "license": "4", "title": "On the Ramparts", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/475872424_bcd1fd67b7_o.jpg", "secret": "bec4e67526", "media": "photo", "latitude": "0", "id": "475872424", "tags": ""}, {"datetaken": "2007-04-04 03:26:12", "license": "4", "title": "View of River", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/475872432_555f787f7f_o.jpg", "secret": "ee3fb9693d", "media": "photo", "latitude": "0", "id": "475872432", "tags": ""}, {"datetaken": "2007-04-04 03:31:05", "license": "4", "title": "Archer's View", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/475870593_bf8399498a_o.jpg", "secret": "794a142b50", "media": "photo", "latitude": "0", "id": "475870593", "tags": ""}, {"datetaken": "2007-04-04 03:32:05", "license": "4", "title": "Archway", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/195/475872434_988a720727_o.jpg", "secret": "d5e6f681a1", "media": "photo", "latitude": "0", "id": "475872434", "tags": ""}, {"datetaken": "2007-04-04 03:39:35", "license": "4", "title": "Chevaliers", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/475872436_f80e7d115b_o.jpg", "secret": "05ffe0e1dc", "media": "photo", "latitude": "0", "id": "475872436", "tags": "1415 agincourt chevaliers dazincourt"}, {"datetaken": "2007-04-04 08:20:03", "license": "4", "title": "Boats at Anchor", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/475880594_9330e20b21_o.jpg", "secret": "88a0996218", "media": "photo", "latitude": "0", "id": "475880594", "tags": "boats sailboats masts deauville"}, {"datetaken": "2007-04-05 00:04:52", "license": "4", "title": "Dance Studio", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/199/475880598_2307fd97be_o.jpg", "secret": "233ea14abf", "media": "photo", "latitude": "0", "id": "475880598", "tags": "studio dance danse"}, {"datetaken": "2007-04-05 00:13:56", "license": "4", "title": "JFK Street", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/222/475880604_b6247c3fb1_o.jpg", "secret": "f6efd44030", "media": "photo", "latitude": "0", "id": "475880604", "tags": ""}, {"datetaken": "2007-04-05 00:36:12", "license": "4", "title": "Hotel Ibis", "text": "", "album_id": "72157600149414215", "longitude": "0", "url_o": "https://farm1.staticflickr.com/209/475880606_0ae85633b8_o.jpg", "secret": "48678457cb", "media": "photo", "latitude": "0", "id": "475880606", "tags": "france deauville hotelibis"}, {"datetaken": "2007-04-09 11:17:11", "license": "1", "title": "Lavaredo", "text": "", "album_id": "72157601485890764", "longitude": "12.230615", "url_o": "https://farm1.staticflickr.com/184/452703310_d899a80663_o.jpg", "secret": "c70386c692", "media": "photo", "latitude": "46.638534", "id": "452703310", "tags": "dolomities lavaredo"}, {"datetaken": "2007-04-09 11:37:38", "license": "1", "title": "Village", "text": "", "album_id": "72157601485890764", "longitude": "12.139291", "url_o": "https://farm1.staticflickr.com/177/452703330_45e929c3e4_o.jpg", "secret": "023dacc1b9", "media": "photo", "latitude": "46.721593", "id": "452703330", "tags": "braies dolomities"}, {"datetaken": "2007-04-09 11:51:39", "license": "1", "title": "Braies lake", "text": "", "album_id": "72157601485890764", "longitude": "12.084445", "url_o": "https://farm1.staticflickr.com/171/452820067_025d3b97b7_o.jpg", "secret": "7d7b1f8539", "media": "photo", "latitude": "46.698331", "id": "452820067", "tags": "dolomities"}, {"datetaken": "2007-04-09 11:53:41", "license": "1", "title": "Braies lake", "text": "", "album_id": "72157601485890764", "longitude": "12.084445", "url_o": "https://farm1.staticflickr.com/193/452820073_071113582d_o.jpg", "secret": "0a4bef71ca", "media": "photo", "latitude": "46.698331", "id": "452820073", "tags": "dolomities"}, {"datetaken": "2007-04-09 11:57:55", "license": "1", "title": "Braies lake", "text": "", "album_id": "72157601485890764", "longitude": "12.084445", "url_o": "https://farm1.staticflickr.com/176/452820093_da1b15c518_o.jpg", "secret": "11bd6561b0", "media": "photo", "latitude": "46.698331", "id": "452820093", "tags": "dolomities"}, {"datetaken": "2007-04-09 12:14:09", "license": "1", "title": "Cows", "text": "", "album_id": "72157601485890764", "longitude": "12.098865", "url_o": "https://farm1.staticflickr.com/219/452820097_690d938a58_o.jpg", "secret": "95c07913c3", "media": "photo", "latitude": "46.712443", "id": "452820097", "tags": "cow braies dolomities"}, {"datetaken": "2007-04-09 13:47:09", "license": "1", "title": "Tipical house", "text": "", "album_id": "72157601485890764", "longitude": "12.711868", "url_o": "https://farm1.staticflickr.com/183/452820141_14e7f4553a_o.jpg", "secret": "7d69ad53b6", "media": "photo", "latitude": "46.792538", "id": "452820141", "tags": "austria dolomities"}, {"datetaken": "2007-04-09 13:50:56", "license": "1", "title": "Sidecar", "text": "", "album_id": "72157601485890764", "longitude": "12.683544", "url_o": "https://farm1.staticflickr.com/181/452845155_6521e8c3d4_o.jpg", "secret": "1560a110f7", "media": "photo", "latitude": "46.785838", "id": "452845155", "tags": "sidecar dolomities"}, {"datetaken": "2007-04-09 13:50:56", "license": "1", "title": "Sidecar", "text": "", "album_id": "72157601485890764", "longitude": "12.683544", "url_o": "https://farm1.staticflickr.com/185/452820151_91c1da4937_o.jpg", "secret": "ccc0efafc3", "media": "photo", "latitude": "46.785838", "id": "452820151", "tags": "sidecar dolomities"}, {"datetaken": "2007-04-09 14:04:44", "license": "1", "title": "Mittelwald station", "text": "", "album_id": "72157601485890764", "longitude": "12.602176", "url_o": "https://farm1.staticflickr.com/209/452845161_03304e3738_o.jpg", "secret": "8f4457e34e", "media": "photo", "latitude": "46.772496", "id": "452845161", "tags": "dolomities mittelwald"}, {"datetaken": "2007-04-09 14:17:41", "license": "1", "title": "Church and cemetery", "text": "", "album_id": "72157601485890764", "longitude": "12.538146", "url_o": "https://farm1.staticflickr.com/198/452845251_c0f7e6bd69_o.jpg", "secret": "2e7914326a", "media": "photo", "latitude": "46.759385", "id": "452845251", "tags": "dolomities"}, {"datetaken": "2007-04-09 14:24:03", "license": "1", "title": "Castle", "text": "", "album_id": "72157601485890764", "longitude": "12.511711", "url_o": "https://farm1.staticflickr.com/253/452845255_9e13353691_o.jpg", "secret": "741b0abbdc", "media": "photo", "latitude": "46.755328", "id": "452845255", "tags": "castle dolomities"}, {"datetaken": "2007-04-09 14:32:03", "license": "1", "title": "Milk transport", "text": "", "album_id": "72157601485890764", "longitude": "12.495059", "url_o": "https://farm1.staticflickr.com/212/452845309_fb89f16159_o.jpg", "secret": "183b1188de", "media": "photo", "latitude": "46.750447", "id": "452845309", "tags": "milk dolomities"}, {"datetaken": "2007-04-09 14:39:10", "license": "1", "title": "Border", "text": "", "album_id": "72157601485890764", "longitude": "12.370948", "url_o": "https://farm1.staticflickr.com/168/452896555_624518f312_o.jpg", "secret": "f659951161", "media": "photo", "latitude": "46.741037", "id": "452896555", "tags": "border dolomities"}, {"datetaken": "2007-04-09 14:39:10", "license": "1", "title": "Border", "text": "", "album_id": "72157601485890764", "longitude": "12.370948", "url_o": "https://farm1.staticflickr.com/181/452845323_9c42aec29f_o.jpg", "secret": "1bdb6e89d9", "media": "photo", "latitude": "46.741037", "id": "452845323", "tags": "border dolomities"}, {"datetaken": "2007-04-09 16:05:05", "license": "1", "title": "Drawing", "text": "", "album_id": "72157601485890764", "longitude": "12.223148", "url_o": "https://farm1.staticflickr.com/185/452896697_b5354f5b5f_o.jpg", "secret": "a3605cb3af", "media": "photo", "latitude": "46.733345", "id": "452896697", "tags": "dolomities dobbiaco toblach"}, {"datetaken": "2007-04-09 16:05:05", "license": "1", "title": "Have you taken the photo?", "text": "", "album_id": "72157601485890764", "longitude": "12.221646", "url_o": "https://farm1.staticflickr.com/177/452896689_e2aad2306f_o.jpg", "secret": "a899076c68", "media": "photo", "latitude": "46.732742", "id": "452896689", "tags": "giulia dolomities"}, {"datetaken": "2007-04-09 16:05:05", "license": "1", "title": "Tipical house", "text": "", "album_id": "72157601485890764", "longitude": "12.221646", "url_o": "https://farm1.staticflickr.com/174/452896567_609cb9eac0_o.jpg", "secret": "697ae6f118", "media": "photo", "latitude": "46.732742", "id": "452896567", "tags": "dolomities dobbiaco toblach"}, {"datetaken": "2007-04-09 16:17:37", "license": "1", "title": "Curl", "text": "", "album_id": "72157601485890764", "longitude": "12.219371", "url_o": "https://farm1.staticflickr.com/167/452896747_61701ea506_o.jpg", "secret": "31ee5bdb31", "media": "photo", "latitude": "46.735434", "id": "452896747", "tags": "dolomities"}, {"datetaken": "2007-04-09 16:17:37", "license": "1", "title": "Old house", "text": "", "album_id": "72157601485890764", "longitude": "12.219371", "url_o": "https://farm1.staticflickr.com/206/452896705_a924be1f4a_o.jpg", "secret": "9b2f9f3f45", "media": "photo", "latitude": "46.735434", "id": "452896705", "tags": "dolomities dobbiaco toblach"}, {"datetaken": "2007-04-09 16:22:14", "license": "1", "title": "Brook", "text": "", "album_id": "72157601485890764", "longitude": "12.223577", "url_o": "https://farm1.staticflickr.com/224/452938637_9b95ee6df0_o.jpg", "secret": "33aeb891dd", "media": "photo", "latitude": "46.736684", "id": "452938637", "tags": "dolomities dobbiaco toblach"}, {"datetaken": "2007-04-09 16:22:14", "license": "1", "title": "Sundial", "text": "", "album_id": "72157601485890764", "longitude": "12.221302", "url_o": "https://farm1.staticflickr.com/246/452938585_b225e6563c_o.jpg", "secret": "b61e70f110", "media": "photo", "latitude": "46.735948", "id": "452938585", "tags": "sundial dolomities dobbiaco toblach"}, {"datetaken": "2007-04-09 16:25:20", "license": "1", "title": "Bell tower", "text": "", "album_id": "72157601485890764", "longitude": "12.224006", "url_o": "https://farm1.staticflickr.com/229/452950698_58ee8d384c_o.jpg", "secret": "1b4b876031", "media": "photo", "latitude": "46.736081", "id": "452950698", "tags": "belltower dolomities dobbiaco toblach"}, {"datetaken": "2007-04-09 16:25:20", "license": "1", "title": "I'm ok?", "text": "", "album_id": "72157601485890764", "longitude": "12.224564", "url_o": "https://farm1.staticflickr.com/208/452938877_0d0906ade5_o.jpg", "secret": "0ac1c7e7bc", "media": "photo", "latitude": "46.737434", "id": "452938877", "tags": "fountain giulia"}, {"datetaken": "2007-04-09 16:25:20", "license": "1", "title": "Very old bar.", "text": "", "album_id": "72157601485890764", "longitude": "12.226195", "url_o": "https://farm1.staticflickr.com/246/452938811_47d0b8d812_o.jpg", "secret": "aa4530aa04", "media": "photo", "latitude": "46.736448", "id": "452938811", "tags": "dolomities dobbiaco toblach"}, {"datetaken": "2007-04-09 16:25:20", "license": "1", "title": "Beautiful windows", "text": "", "album_id": "72157601485890764", "longitude": "12.223577", "url_o": "https://farm1.staticflickr.com/248/452938757_1f310605c9_o.jpg", "secret": "566b8817fa", "media": "photo", "latitude": "46.736684", "id": "452938757", "tags": "dolomities dobbiaco toblach"}, {"datetaken": "2007-04-09 16:25:20", "license": "1", "title": "Tower", "text": "", "album_id": "72157601485890764", "longitude": "12.223577", "url_o": "https://farm1.staticflickr.com/173/452938721_6587825648_o.jpg", "secret": "9e4258e98b", "media": "photo", "latitude": "46.736684", "id": "452938721", "tags": "dolomities dobbiaco toblach"}, {"datetaken": "2007-04-09 16:45:09", "license": "1", "title": "Rock fountain", "text": "", "album_id": "72157601485890764", "longitude": "12.224543", "url_o": "https://farm1.staticflickr.com/167/452950720_80eef01e13_o.jpg", "secret": "5407716964", "media": "photo", "latitude": "46.735581", "id": "452950720", "tags": "fountain dolomities dobbiaco toblach"}, {"datetaken": "2007-04-09 16:45:09", "license": "1", "title": "Castle", "text": "", "album_id": "72157601485890764", "longitude": "12.224543", "url_o": "https://farm1.staticflickr.com/189/452950714_d33370f92d_o.jpg", "secret": "c0d4228d73", "media": "photo", "latitude": "46.735581", "id": "452950714", "tags": "castle dolomities dobbiaco toblach"}, {"datetaken": "2007-04-09 16:45:09", "license": "1", "title": "Bell tower", "text": "", "album_id": "72157601485890764", "longitude": "12.224543", "url_o": "https://farm1.staticflickr.com/234/452950712_4c8d6c0b83_o.jpg", "secret": "111841f723", "media": "photo", "latitude": "46.735581", "id": "452950712", "tags": "belltower dolomities dobbiaco toblach"}, {"datetaken": "2007-04-09 16:45:09", "license": "1", "title": "Castle", "text": "", "album_id": "72157601485890764", "longitude": "12.224661", "url_o": "https://farm1.staticflickr.com/198/452950708_c91e65db3d_o.jpg", "secret": "446413da91", "media": "photo", "latitude": "46.736147", "id": "452950708", "tags": "castle dolomities dobbiaco toblach"}, {"datetaken": "2007-04-09 16:53:51", "license": "1", "title": "Reflection", "text": "", "album_id": "72157601485890764", "longitude": "12.225444", "url_o": "https://farm1.staticflickr.com/214/452950736_a03f0a380b_o.jpg", "secret": "9d8baf594e", "media": "photo", "latitude": "46.734698", "id": "452950736", "tags": "mirror micky giulia"}, {"datetaken": "2007-04-09 17:02:40", "license": "1", "title": "Flinstones fountain", "text": "", "album_id": "72157601485890764", "longitude": "12.221646", "url_o": "https://farm1.staticflickr.com/207/452982925_42cc7e1f2a_o.jpg", "secret": "8ff6994d90", "media": "photo", "latitude": "46.732742", "id": "452982925", "tags": "fountain dolomities"}, {"datetaken": "2007-04-29 11:54:18", "license": "2", "title": "Window art", "text": "", "album_id": "72157600157344812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/477429355_df0bab1e0e_o.jpg", "secret": "b04eb6cdd5", "media": "photo", "latitude": "0", "id": "477429355", "tags": "building art window lawrenceville catalyst artallnight crw4283stainedwindowjpg"}, {"datetaken": "2007-04-29 11:54:46", "license": "2", "title": "Window art", "text": "", "album_id": "72157600157344812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/226/477430077_d2f434fbcb_o.jpg", "secret": "ed54aacd80", "media": "photo", "latitude": "0", "id": "477430077", "tags": "building art window lawrenceville catalyst artallnight crw4284stainedwindowjpg"}, {"datetaken": "2007-04-29 12:08:52", "license": "2", "title": "My photograph at the art all night exhibit", "text": "", "album_id": "72157600157344812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/191/477439171_e30d7a8964_o.jpg", "secret": "3ca31b1e69", "media": "photo", "latitude": "0", "id": "477439171", "tags": "ballpark crw4292photodisplayjpg"}, {"datetaken": "2007-04-29 12:10:42", "license": "2", "title": "Glass art", "text": "", "album_id": "72157600157344812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/477430421_6ffccd14d7_o.jpg", "secret": "a21d660e1c", "media": "photo", "latitude": "0", "id": "477430421", "tags": "building art window glass sill lawrenceville catalyst artallnight crw4295glassjpg"}, {"datetaken": "2007-04-29 12:11:18", "license": "2", "title": "Lighted face", "text": "", "album_id": "72157600157344812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/217/477413488_0a11a83181_o.jpg", "secret": "aaaecb6a93", "media": "photo", "latitude": "0", "id": "477413488", "tags": "building face bulbs lawrenceville catalyst artallnight crw4296facebulbsjpg"}, {"datetaken": "2007-04-29 12:26:50", "license": "2", "title": "Window", "text": "", "album_id": "72157600157344812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/207/477413668_93f903f8b4_o.jpg", "secret": "bd8754980b", "media": "photo", "latitude": "0", "id": "477413668", "tags": "building window lawrenceville catalyst artallnight crw4301windowjpg"}, {"datetaken": "2007-04-29 12:28:24", "license": "2", "title": "Window", "text": "", "album_id": "72157600157344812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/220/477413870_31bd3c82aa_o.jpg", "secret": "6b3fd39bc7", "media": "photo", "latitude": "0", "id": "477413870", "tags": "building window lawrenceville catalyst artallnight crw4302windowjpg"}, {"datetaken": "2007-04-29 12:29:50", "license": "2", "title": "window", "text": "", "album_id": "72157600157344812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/477414242_b154bb7f5e_o.jpg", "secret": "f2ac7f3a62", "media": "photo", "latitude": "0", "id": "477414242", "tags": "building window lawrenceville catalyst artallnight crw4303windowjpg"}, {"datetaken": "2007-04-29 12:31:58", "license": "2", "title": "Window", "text": "", "album_id": "72157600157344812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/477432167_4f4f41e925_o.jpg", "secret": "07690529e9", "media": "photo", "latitude": "0", "id": "477432167", "tags": "building window lawrenceville catalyst artallnight crw4306windowjpg"}, {"datetaken": "2007-04-29 12:35:16", "license": "2", "title": "A view of lawrenceville", "text": "", "album_id": "72157600157344812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/477432645_a1fc438b43_o.jpg", "secret": "39a76d2925", "media": "photo", "latitude": "0", "id": "477432645", "tags": "houses building lawrenceville catalyst artallnight crw4313lawrencevillerowhousesjpg"}, {"datetaken": "2007-04-29 12:42:14", "license": "2", "title": "Rooftops", "text": "", "album_id": "72157600157344812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/197/477415578_4ef6a9995e_o.jpg", "secret": "83168e735a", "media": "photo", "latitude": "0", "id": "477415578", "tags": "houses building roofs lawrenceville catalyst artallnight crw4317lawrencevilleroofsjpg"}, {"datetaken": "2007-04-29 12:47:16", "license": "2", "title": "Please don't touch the art (legs?)", "text": "", "album_id": "72157600157344812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/169/477416024_461a4428df_o.jpg", "secret": "76c41a7413", "media": "photo", "latitude": "0", "id": "477416024", "tags": "building art legs lawrenceville catalyst artallnight crw4323legartjpg"}, {"datetaken": "2007-04-29 12:50:56", "license": "2", "title": "Stairs", "text": "", "album_id": "72157600157344812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/477434079_82e63390ab_o.jpg", "secret": "b1a3dfca4b", "media": "photo", "latitude": "0", "id": "477434079", "tags": "building stairs lawrenceville catalyst artallnight crw4327stairsjpg"}, {"datetaken": "2007-04-29 12:54:40", "license": "2", "title": "Roofs through the window", "text": "", "album_id": "72157600157344812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/477434293_cd055c5f94_o.jpg", "secret": "a3ff833370", "media": "photo", "latitude": "0", "id": "477434293", "tags": "building window roofs lawrenceville catalyst artallnight crw4329windowjpg"}, {"datetaken": "2007-04-29 12:56:30", "license": "2", "title": "Window", "text": "", "album_id": "72157600157344812", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/477434535_69de535ee4_o.jpg", "secret": "1f7c25cd99", "media": "photo", "latitude": "0", "id": "477434535", "tags": "building window lawrenceville catalyst artallnight crw4331windowjpg"}, {"datetaken": "2007-05-04 15:12:06", "license": "1", "title": "the tour guide", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/491867628_0d9a241c79_o.jpg", "secret": "141acffdf9", "media": "photo", "latitude": "0", "id": "491867628", "tags": "sanrafael"}, {"datetaken": "2007-05-04 15:13:47", "license": "1", "title": "the tour group :)", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/190/491867884_5c29e3a4ab_o.jpg", "secret": "c2bcaf0258", "media": "photo", "latitude": "0", "id": "491867884", "tags": "sanrafael"}, {"datetaken": "2007-05-04 15:13:58", "license": "1", "title": "our first stop - Artesa", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/209/491885473_0362f67905_o.jpg", "secret": "5ce691e201", "media": "photo", "latitude": "0", "id": "491885473", "tags": "sanrafael"}, {"datetaken": "2007-05-04 15:38:27", "license": "1", "title": "Aunty Baba", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/206/491885933_5ac8520eb2_o.jpg", "secret": "d916909870", "media": "photo", "latitude": "0", "id": "491885933", "tags": "sanrafael"}, {"datetaken": "2007-05-04 15:38:34", "license": "1", "title": "Steve-o", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/225/491886193_4bfebe73be_o.jpg", "secret": "8670b636b0", "media": "photo", "latitude": "0", "id": "491886193", "tags": "sanrafael"}, {"datetaken": "2007-05-04 15:38:40", "license": "1", "title": "Serious Sal", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/221/491868896_3e6a341b34_o.jpg", "secret": "3fcb124017", "media": "photo", "latitude": "0", "id": "491868896", "tags": "sanrafael"}, {"datetaken": "2007-05-04 15:55:03", "license": "1", "title": "fountains at Artesa", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/219/491870012_1dc2326ab7_o.jpg", "secret": "fcf801c82e", "media": "photo", "latitude": "0", "id": "491870012", "tags": "sanrafael"}, {"datetaken": "2007-05-04 16:32:02", "license": "1", "title": "we stopped in Napa too", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/190/491870612_e881dead2b_o.jpg", "secret": "80864f37ca", "media": "photo", "latitude": "0", "id": "491870612", "tags": "sanrafael"}, {"datetaken": "2007-05-04 16:32:08", "license": "1", "title": "passport for niebaum-coppola wine farm", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/223/491888441_db217154c0_o.jpg", "secret": "806b0211cf", "media": "photo", "latitude": "0", "id": "491888441", "tags": "sanrafael"}, {"datetaken": "2007-05-04 16:40:32", "license": "1", "title": "i heart red wine", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/216/491888727_7f0d393572_o.jpg", "secret": "b5a96edf14", "media": "photo", "latitude": "0", "id": "491888727", "tags": "sanrafael"}, {"datetaken": "2007-05-04 16:58:45", "license": "1", "title": "happiness", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/214/491889919_2bb85a058a_o.jpg", "secret": "5222c77e5e", "media": "photo", "latitude": "0", "id": "491889919", "tags": "sanrafael"}, {"datetaken": "2007-05-04 17:00:19", "license": "1", "title": "lots of wine everywhere", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/189/491872770_a28228ca0c_o.jpg", "secret": "6f3f9a79f0", "media": "photo", "latitude": "0", "id": "491872770", "tags": "sanrafael"}, {"datetaken": "2007-05-04 17:00:32", "license": "1", "title": "Sal and Steve", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/216/491890747_d23e569792_o.jpg", "secret": "9b954efacd", "media": "photo", "latitude": "0", "id": "491890747", "tags": "sanrafael"}, {"datetaken": "2007-05-04 17:03:23", "license": "1", "title": "Francis Ford Coppola's wine farm", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/191/491873590_a77496ab31_o.jpg", "secret": "0c5f35ca12", "media": "photo", "latitude": "0", "id": "491873590", "tags": "sanrafael"}, {"datetaken": "2007-05-04 17:49:55", "license": "1", "title": "giant frog", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/212/491892593_8d72ee4631_o.jpg", "secret": "512a8f0d78", "media": "photo", "latitude": "0", "id": "491892593", "tags": "sanrafael"}, {"datetaken": "2007-05-04 22:27:40", "license": "1", "title": "pretty flowers", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/203/491875956_c14e28c6fe_o.jpg", "secret": "9f97aeb2b3", "media": "photo", "latitude": "0", "id": "491875956", "tags": "sanrafael"}, {"datetaken": "2007-05-04 22:29:42", "license": "1", "title": "going for post-dinner walk", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/491876530_45b7b16038_o.jpg", "secret": "95e54a5d47", "media": "photo", "latitude": "0", "id": "491876530", "tags": "sanrafael"}, {"datetaken": "2007-05-04 22:50:22", "license": "1", "title": "a deer on the hill", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/232/491877276_ee731dd834_o.jpg", "secret": "a6e67040a6", "media": "photo", "latitude": "0", "id": "491877276", "tags": "sanrafael"}, {"datetaken": "2007-05-04 22:50:44", "license": "1", "title": "the hills of San Rafael, CA", "text": "", "album_id": "72157600198530541", "longitude": "0", "url_o": "https://farm1.staticflickr.com/210/491894889_ede8803a70_o.jpg", "secret": "642a137319", "media": "photo", "latitude": "0", "id": "491894889", "tags": "sanrafael"}, {"datetaken": "2007-05-02 19:01:46", "license": "3", "title": "March Chapel", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/190/483712270_5dbb053f84_o.jpg", "secret": "3839347b5f", "media": "photo", "latitude": "0", "id": "483712270", "tags": "trip home boston work annes bostonuniversity marshchapel"}, {"datetaken": "2007-05-03 18:23:46", "license": "3", "title": "My Desk", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/483713360_7e8d2a1722_o.jpg", "secret": "566231201f", "media": "photo", "latitude": "0", "id": "483713360", "tags": "trip home boston work office annes"}, {"datetaken": "2007-05-03 18:23:58", "license": "3", "title": "My Desk", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/196/483713406_368578ef55_o.jpg", "secret": "6374212849", "media": "photo", "latitude": "0", "id": "483713406", "tags": "trip home boston work office annes"}, {"datetaken": "2007-05-03 18:24:08", "license": "3", "title": "Bulletin Board with Dilbert", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/214/483713478_ed51363649_o.jpg", "secret": "71cd9b3929", "media": "photo", "latitude": "0", "id": "483713478", "tags": "trip home boston work office dilbert annes"}, {"datetaken": "2007-05-03 18:24:22", "license": "3", "title": "View from my office window", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/483713618_fd458e7a27_o.jpg", "secret": "188901170e", "media": "photo", "latitude": "0", "id": "483713618", "tags": "trip home boston work officeview charlesriver annes"}, {"datetaken": "2007-05-03 18:24:32", "license": "3", "title": "Other end of my office", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/169/483713322_3a1d7e54a9_o.jpg", "secret": "80b4a6d699", "media": "photo", "latitude": "0", "id": "483713322", "tags": "trip home boston work office annes"}, {"datetaken": "2007-05-03 18:24:45", "license": "3", "title": "Technical Services", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/198/483746061_6c26de860a_o.jpg", "secret": "117712ebfa", "media": "photo", "latitude": "0", "id": "483746061", "tags": "trip home boston work office annes"}, {"datetaken": "2007-05-03 18:24:57", "license": "3", "title": "Into the office", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/483746019_c2ad3fcada_o.jpg", "secret": "0c910e32e3", "media": "photo", "latitude": "0", "id": "483746019", "tags": "trip home boston work office annes"}, {"datetaken": "2007-05-03 18:25:40", "license": "3", "title": "Still more office", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/483713070_06d3c7773c_o.jpg", "secret": "99adf78d5b", "media": "photo", "latitude": "0", "id": "483713070", "tags": "trip home boston work office annes"}, {"datetaken": "2007-05-03 18:26:34", "license": "3", "title": "2nd Floor Hallway", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/199/483745875_58208b6fd2_o.jpg", "secret": "d61c0c7c01", "media": "photo", "latitude": "0", "id": "483745875", "tags": "trip home boston work annes bostonuniversitylawlibrary"}, {"datetaken": "2007-05-03 18:27:01", "license": "3", "title": "Wall of Fame", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/189/483745817_555ff832c5_o.jpg", "secret": "cf3477b4ee", "media": "photo", "latitude": "0", "id": "483745817", "tags": "trip home boston work annes bostonuniversitylawlibrary"}, {"datetaken": "2007-05-03 18:30:13", "license": "3", "title": "Law School sign", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/224/483745651_3b339170bb_o.jpg", "secret": "925c73220a", "media": "photo", "latitude": "0", "id": "483745651", "tags": "trip home boston work annes bostonuniversitylawschool"}, {"datetaken": "2007-05-03 18:30:21", "license": "3", "title": "Law Tower", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/198/483745591_70d4ce8a2e_o.jpg", "secret": "c2506d63de", "media": "photo", "latitude": "0", "id": "483745591", "tags": "trip home boston work annes bostonuniversitylawschool"}, {"datetaken": "2007-05-03 18:30:48", "license": "3", "title": "But is it art?", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/483745407_fbd98535be_o.jpg", "secret": "9c9639af71", "media": "photo", "latitude": "0", "id": "483745407", "tags": "trip home boston work annes bostonuniversitylawschool"}, {"datetaken": "2007-05-03 18:31:00", "license": "3", "title": "Marsh Chapel Arches", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/206/483745305_32773ea6e6_o.jpg", "secret": "2a2a4e3471", "media": "photo", "latitude": "0", "id": "483745305", "tags": "trip home boston work annes bostonuniversity"}, {"datetaken": "2007-05-03 18:32:25", "license": "3", "title": "MLK Memorial", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/202/483712174_e317436842_o.jpg", "secret": "ce3860b920", "media": "photo", "latitude": "0", "id": "483712174", "tags": "trip home boston work annes bostonuniversity marshchapel martinlutherkingmemorial"}, {"datetaken": "2007-05-03 18:34:19", "license": "3", "title": "Commonwealth Ave", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/197/483712052_13227af2f0_o.jpg", "secret": "26ee1fa5c3", "media": "photo", "latitude": "0", "id": "483712052", "tags": "trip home boston work annes commave"}, {"datetaken": "2007-05-03 18:35:42", "license": "3", "title": "Green Line Map", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/483711984_e224d08819_o.jpg", "secret": "afb4a697e0", "media": "photo", "latitude": "0", "id": "483711984", "tags": "trip home boston work greenline annes"}, {"datetaken": "2007-05-03 18:36:43", "license": "3", "title": "Green Line Train", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/483711916_6b98a89a75_o.jpg", "secret": "4eb85a11fd", "media": "photo", "latitude": "0", "id": "483711916", "tags": "trip home boston work greenline annes"}, {"datetaken": "2007-05-03 18:41:28", "license": "3", "title": "Mass Pike View", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/483711820_d0cfdd4e28_o.jpg", "secret": "9e55eb5bf0", "media": "photo", "latitude": "0", "id": "483711820", "tags": "trip home boston work masspike annes"}, {"datetaken": "2007-05-03 18:43:34", "license": "3", "title": "Beacon Street Construction", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/483711714_595c1188d2_o.jpg", "secret": "20925e2fdc", "media": "photo", "latitude": "0", "id": "483711714", "tags": "trip home work brookline annes beaconstreet"}, {"datetaken": "2007-05-03 18:46:20", "license": "3", "title": "Coolidge Corner", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/230/483744645_fad6a5329e_o.jpg", "secret": "ddf77d8388", "media": "photo", "latitude": "0", "id": "483744645", "tags": "trip home work brookline greenline annes"}, {"datetaken": "2007-05-03 18:49:42", "license": "3", "title": "Pretty row houses", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/212/483711536_2ac78aea37_o.jpg", "secret": "7db47410ce", "media": "photo", "latitude": "0", "id": "483711536", "tags": "trip home work brookline annes beaconstreet"}, {"datetaken": "2007-05-03 18:54:04", "license": "3", "title": "Cleveland Circle Reservoir", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/220/483711386_3a94d57129_o.jpg", "secret": "8700e33b5c", "media": "photo", "latitude": "0", "id": "483711386", "tags": "trip home boston work reservoir annes clevelandcircle"}, {"datetaken": "2007-05-03 18:55:30", "license": "3", "title": "Water Works Building", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/483711310_fb4d0948c3_o.jpg", "secret": "8a10617c7d", "media": "photo", "latitude": "0", "id": "483711310", "tags": "trip home boston work annes waterworksbuilding"}, {"datetaken": "2007-05-03 18:56:39", "license": "3", "title": "The reservoir", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/483711228_bd282e971a_o.jpg", "secret": "a44c850320", "media": "photo", "latitude": "0", "id": "483711228", "tags": "trip home boston work reservoir annes"}, {"datetaken": "2007-05-03 19:01:06", "license": "3", "title": "Chandler Pond", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/483711174_069480cc5c_o.jpg", "secret": "37cfc609e2", "media": "photo", "latitude": "0", "id": "483711174", "tags": "trip home work brighton annes chandlerpond"}, {"datetaken": "2007-05-03 19:02:44", "license": "3", "title": "Towne Estates", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/232/483744225_7b30e89706_o.jpg", "secret": "3b3f597bf9", "media": "photo", "latitude": "0", "id": "483744225", "tags": "trip home work brighton annes towneestates"}, {"datetaken": "2007-05-03 19:03:05", "license": "3", "title": "Back of my building", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/483710954_c22ca1b75e_o.jpg", "secret": "9d7aeb1a19", "media": "photo", "latitude": "0", "id": "483710954", "tags": "trip home work annes towneestates"}, {"datetaken": "2007-05-03 19:04:31", "license": "3", "title": "Golf Course", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/198/483710864_e9362f24df_o.jpg", "secret": "045d953205", "media": "photo", "latitude": "0", "id": "483710864", "tags": "trip home work golfcourse annes"}, {"datetaken": "2007-05-03 19:05:45", "license": "3", "title": "Back Door", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/202/483743893_b8de04a679_o.jpg", "secret": "0a20b754cf", "media": "photo", "latitude": "0", "id": "483743893", "tags": "door trip home wreath annes"}, {"datetaken": "2007-05-03 19:06:27", "license": "3", "title": "Living room", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/483743809_91abff211f_o.jpg", "secret": "56ae14ef2e", "media": "photo", "latitude": "0", "id": "483743809", "tags": "trip home annes"}, {"datetaken": "2007-05-04 07:41:15", "license": "3", "title": "Elevator Bay", "text": "", "album_id": "72157600175552277", "longitude": "0", "url_o": "https://farm1.staticflickr.com/217/483745729_ad25b16a83_o.jpg", "secret": "1dde54aa82", "media": "photo", "latitude": "0", "id": "483745729", "tags": "trip home boston work annes bostonuniversitylawlibrary"}, {"datetaken": "2007-05-05 13:22:07", "license": "1", "title": "Barton Stone United Church", "text": "", "album_id": "72157600180662376", "longitude": "-79.889563", "url_o": "https://farm1.staticflickr.com/232/485548583_45419c07b1_o.jpg", "secret": "555ebee0c5", "media": "photo", "latitude": "43.211009", "id": "485548583", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 13:24:26", "license": "1", "title": "Barton Stone United Church", "text": "", "album_id": "72157600180662376", "longitude": "-79.889563", "url_o": "https://farm1.staticflickr.com/210/485516020_9202504c3c_o.jpg", "secret": "fe10a1339a", "media": "photo", "latitude": "43.211009", "id": "485516020", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 13:32:54", "license": "1", "title": "Barton Stone United Church", "text": "", "album_id": "72157600180662376", "longitude": "-79.889563", "url_o": "https://farm1.staticflickr.com/217/485516460_d8c3e50d20_o.jpg", "secret": "28200d6719", "media": "photo", "latitude": "43.211009", "id": "485516460", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 13:35:12", "license": "1", "title": "Barton Stone United Church", "text": "", "album_id": "72157600180662376", "longitude": "-79.889563", "url_o": "https://farm1.staticflickr.com/172/485516790_c0f9f78aa1_o.jpg", "secret": "5f1ef4cfb5", "media": "photo", "latitude": "43.211009", "id": "485516790", "tags": "church reading crucifix hfg doorsopenhamilton 24hoursofflickr"}, {"datetaken": "2007-05-05 13:40:49", "license": "1", "title": "Barton Stone United Church", "text": "", "album_id": "72157600180662376", "longitude": "-79.889563", "url_o": "https://farm1.staticflickr.com/227/485550023_8f2a61d63d_o.jpg", "secret": "981e018740", "media": "photo", "latitude": "43.211009", "id": "485550023", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 13:42:44", "license": "1", "title": "Barton Stone United Church", "text": "", "album_id": "72157600180662376", "longitude": "-79.889563", "url_o": "https://farm1.staticflickr.com/189/485517210_f5e77341dc_o.jpg", "secret": "9415305519", "media": "photo", "latitude": "43.211009", "id": "485517210", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 14:03:44", "license": "1", "title": "Auchmar Manor and Estate", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/197/485517366_3aeace67ff_o.jpg", "secret": "1dcdea2029", "media": "photo", "latitude": "0", "id": "485517366", "tags": "hfg auchmar doorsopenhamilton"}, {"datetaken": "2007-05-05 14:05:20", "license": "1", "title": "Auchmar Manor and Estate", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/189/485550689_25c65232d7_o.jpg", "secret": "226b224aa3", "media": "photo", "latitude": "0", "id": "485550689", "tags": "hfg auchmar doorsopenhamilton"}, {"datetaken": "2007-05-05 14:20:20", "license": "1", "title": "Auchmar Manor and Estate", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/176/485517776_169f5233db_o.jpg", "secret": "5b27c8b5c6", "media": "photo", "latitude": "0", "id": "485517776", "tags": "hfg auchmar doorsopenhamilton"}, {"datetaken": "2007-05-05 14:23:22", "license": "1", "title": "Auchmar Manor and Estate", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/485550821_1312df04b7_o.jpg", "secret": "362fead3e4", "media": "photo", "latitude": "0", "id": "485550821", "tags": "hfg auchmar doorsopenhamilton"}, {"datetaken": "2007-05-05 14:26:04", "license": "1", "title": "Auchmar Manor and Estate", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/485517846_59a641608f_o.jpg", "secret": "c0d8921014", "media": "photo", "latitude": "0", "id": "485517846", "tags": "hfg auchmar doorsopenhamilton"}, {"datetaken": "2007-05-05 14:30:42", "license": "1", "title": "Auchmar Manor and Estate", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/485551153_7cddec9246_o.jpg", "secret": "530e6ded63", "media": "photo", "latitude": "0", "id": "485551153", "tags": "hfg auchmar doorsopenhamilton"}, {"datetaken": "2007-05-05 14:32:33", "license": "1", "title": "Auchmar Manor and Estate", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/485551273_e7e2c603cc_o.jpg", "secret": "4bbd885f07", "media": "photo", "latitude": "0", "id": "485551273", "tags": "hfg auchmar doorsopenhamilton"}, {"datetaken": "2007-05-05 14:33:00", "license": "1", "title": "Auchmar Manor and Estate", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/204/485551575_fb7af1639e_o.jpg", "secret": "91b024b6ea", "media": "photo", "latitude": "0", "id": "485551575", "tags": "hfg auchmar doorsopenhamilton"}, {"datetaken": "2007-05-05 14:34:12", "license": "1", "title": "Auchmar Manor and Estate", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/222/485518626_fb16c4ddb2_o.jpg", "secret": "294efaf867", "media": "photo", "latitude": "0", "id": "485518626", "tags": "hfg auchmar doorsopenhamilton"}, {"datetaken": "2007-05-05 14:39:26", "license": "1", "title": "Auchmar Manor and Estate", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/223/485552119_120168a7f6_o.jpg", "secret": "4714b4607d", "media": "photo", "latitude": "0", "id": "485552119", "tags": "hfg auchmar doorsopenhamilton"}, {"datetaken": "2007-05-05 14:44:38", "license": "1", "title": "Auchmar Manor and Estate", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/485519168_8f6bf2af28_o.jpg", "secret": "d1516cce5b", "media": "photo", "latitude": "0", "id": "485519168", "tags": "hfg auchmar doorsopenhamilton"}, {"datetaken": "2007-05-05 14:47:57", "license": "1", "title": "Auchmar Manor and Estate", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/485519386_4be4f6ebfa_o.jpg", "secret": "dd3eabfcaf", "media": "photo", "latitude": "0", "id": "485519386", "tags": "hfg auchmar doorsopenhamilton"}, {"datetaken": "2007-05-05 15:05:57", "license": "1", "title": "Mohawk Trail School Museum", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/485519630_d507081ea7_o.jpg", "secret": "f9e7b1a480", "media": "photo", "latitude": "0", "id": "485519630", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 15:08:08", "license": "1", "title": "Mohawk Trail School Museum", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/197/485519840_64f50b9970_o.jpg", "secret": "105377840c", "media": "photo", "latitude": "0", "id": "485519840", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 15:08:29", "license": "1", "title": "Mohawk Trail School Museum", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/204/485553271_519c175c20_o.jpg", "secret": "fc6da0ee07", "media": "photo", "latitude": "0", "id": "485553271", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 15:08:53", "license": "1", "title": "Mohawk Trail School Museum", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/191/485553379_3543594037_o.jpg", "secret": "afc2747048", "media": "photo", "latitude": "0", "id": "485553379", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 15:11:38", "license": "1", "title": "Mohawk Trail School Museum", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/485520254_26a7a161da_o.jpg", "secret": "afb5a1f64e", "media": "photo", "latitude": "0", "id": "485520254", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 15:13:46", "license": "1", "title": "Mohawk Trail School Museum", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/221/485520338_ee6d7f181c_o.jpg", "secret": "34d59332b2", "media": "photo", "latitude": "0", "id": "485520338", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 15:15:42", "license": "1", "title": "Mohawk Trail School Museum", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/223/485520454_2f84aff9c9_o.jpg", "secret": "2335097ca1", "media": "photo", "latitude": "0", "id": "485520454", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 15:17:15", "license": "1", "title": "Mohawk Trail School Museum", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/189/485520556_570af8a214_o.jpg", "secret": "3b13f6916c", "media": "photo", "latitude": "0", "id": "485520556", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 15:18:21", "license": "1", "title": "Mohawk Trail School Museum", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/485520664_569f7b9fbe_o.jpg", "secret": "d6af6a9333", "media": "photo", "latitude": "0", "id": "485520664", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 15:43:06", "license": "1", "title": "Vincent Massey / Archives", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/485554029_fd6b1eabf0_o.jpg", "secret": "28f33a1689", "media": "photo", "latitude": "0", "id": "485554029", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 15:45:43", "license": "1", "title": "Vincent Massey / Archives", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/226/485548715_6fb5c6b2be_o.jpg", "secret": "825e28913c", "media": "photo", "latitude": "0", "id": "485548715", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 15:48:09", "license": "1", "title": "Vincent Massey / Archives", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/485516136_aa86e8376e_o.jpg", "secret": "c2a8137f61", "media": "photo", "latitude": "0", "id": "485516136", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 15:49:11", "license": "1", "title": "Vincent Massey / Archives", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/200/485516594_f85285796b_o.jpg", "secret": "6f6fa1f10e", "media": "photo", "latitude": "0", "id": "485516594", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 15:50:35", "license": "1", "title": "Vincent Massey / Archives", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/485549317_d594677f76_o.jpg", "secret": "6adbe28c89", "media": "photo", "latitude": "0", "id": "485549317", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 15:52:37", "license": "1", "title": "Vincent Massey / Archives", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/206/485549205_1c0f8b800c_o.jpg", "secret": "7b826facf5", "media": "photo", "latitude": "0", "id": "485549205", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2007-05-05 15:59:48", "license": "1", "title": "Vincent Massey / Archives", "text": "", "album_id": "72157600180662376", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/485516734_6c3c01e188_o.jpg", "secret": "b9dbc9da82", "media": "photo", "latitude": "0", "id": "485516734", "tags": "hfg doorsopenhamilton"}, {"datetaken": "2010-01-01 10:51:35", "license": "5", "title": "20091231_8089", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4233761597_f5b09b9919_o.jpg", "secret": "7e7f0a4504", "media": "photo", "latitude": "0", "id": "4233761597", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:51:40", "license": "5", "title": "20091231_8097", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2706/4234535784_6ea2fda5fa_o.jpg", "secret": "e1c6a882fd", "media": "photo", "latitude": "0", "id": "4234535784", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:51:44", "license": "5", "title": "20091231_8106", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4234536054_96bfa84daa_o.jpg", "secret": "cd5f1ae3a8", "media": "photo", "latitude": "0", "id": "4234536054", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:51:48", "license": "5", "title": "20091231_8117", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4234536208_416e802030_o.jpg", "secret": "0a2e29b172", "media": "photo", "latitude": "0", "id": "4234536208", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:51:54", "license": "5", "title": "20091231_8128", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4233762569_4bc0b684bb_o.jpg", "secret": "a30a721ee0", "media": "photo", "latitude": "0", "id": "4233762569", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:52:01", "license": "5", "title": "20091231_8138", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4233762921_b6b06b7157_o.jpg", "secret": "fd40f36e61", "media": "photo", "latitude": "0", "id": "4233762921", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:52:05", "license": "5", "title": "20091231_8142", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2497/4234537038_745ac46c1b_o.jpg", "secret": "a553e55dcb", "media": "photo", "latitude": "0", "id": "4234537038", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:52:08", "license": "5", "title": "20091231_8151", "text": "", "album_id": "72157622990054453", "longitude": "-70.413436", "url_o": "https://farm3.staticflickr.com/2661/4234537210_9135c8464b_o.jpg", "secret": "ca5689fffe", "media": "photo", "latitude": "19.751679", "id": "4234537210", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:52:15", "license": "5", "title": "20091231_8174", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4234537592_7a3c499a26_o.jpg", "secret": "427363b8cc", "media": "photo", "latitude": "0", "id": "4234537592", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:52:20", "license": "5", "title": "20091231_8184", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4234537828_527bf6c6e1_o.jpg", "secret": "03c89e02cb", "media": "photo", "latitude": "0", "id": "4234537828", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:52:24", "license": "5", "title": "20091231_8168", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4233764143_cc0a3b572c_o.jpg", "secret": "a3d5071eb4", "media": "photo", "latitude": "0", "id": "4233764143", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:52:28", "license": "5", "title": "20091231_8091", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2630/4234538298_f8c6a28d67_o.jpg", "secret": "7fbd87d132", "media": "photo", "latitude": "0", "id": "4234538298", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:52:32", "license": "5", "title": "20091231_8094", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2516/4233764559_699afdf515_o.jpg", "secret": "7b75d2923e", "media": "photo", "latitude": "0", "id": "4233764559", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:52:37", "license": "5", "title": "20091231_8099", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4234538724_9e4dd7301c_o.jpg", "secret": "8d7d513252", "media": "photo", "latitude": "0", "id": "4234538724", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:52:45", "license": "5", "title": "20091231_8100", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4234538956_73a18ebfc1_o.jpg", "secret": "729cdd3dbb", "media": "photo", "latitude": "0", "id": "4234538956", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:52:50", "license": "5", "title": "20091231_8102", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2796/4233765501_44221696f6_o.jpg", "secret": "65be9eb96c", "media": "photo", "latitude": "0", "id": "4233765501", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:53:03", "license": "5", "title": "20091231_8108", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2736/4233766173_5869653f43_o.jpg", "secret": "540b691f8c", "media": "photo", "latitude": "0", "id": "4233766173", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:53:08", "license": "5", "title": "20091231_8133", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4234540238_5aa9ed58cb_o.jpg", "secret": "5e56b16926", "media": "photo", "latitude": "0", "id": "4234540238", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:53:14", "license": "5", "title": "20091231_8137", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2476/4234540562_7da96c7a2e_o.jpg", "secret": "91bdb03b1a", "media": "photo", "latitude": "0", "id": "4234540562", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:53:19", "license": "5", "title": "20091231_8152", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4234540770_c5eda2ba4f_o.jpg", "secret": "d573d61600", "media": "photo", "latitude": "0", "id": "4234540770", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:53:25", "license": "5", "title": "20091231_8164", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2525/4233767387_b39d99716a_o.jpg", "secret": "c63bd898b0", "media": "photo", "latitude": "0", "id": "4233767387", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:53:31", "license": "5", "title": "20091231_8171", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2629/4233767697_5f25702259_o.jpg", "secret": "3e5ec1517d", "media": "photo", "latitude": "0", "id": "4233767697", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-01-01 10:53:35", "license": "5", "title": "20091231_8175", "text": "", "album_id": "72157622990054453", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4233767913_72e6668a31_o.jpg", "secret": "de67f1ca3e", "media": "photo", "latitude": "0", "id": "4233767913", "tags": "party dominicanrepublic swell cabarete surfcamp"}, {"datetaken": "2010-10-09 18:46:27", "license": "3", "title": "20101009_7416.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5082/5313800300_00d549a450_o.jpg", "secret": "e354cf0ab1", "media": "photo", "latitude": "0", "id": "5313800300", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:46:47", "license": "3", "title": "20101009_7418.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5123/5313208375_47960c2c04_o.jpg", "secret": "43a7a5322a", "media": "photo", "latitude": "0", "id": "5313208375", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:47:28", "license": "3", "title": "20101009_7419.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5041/5313210477_6683f9a1d9_o.jpg", "secret": "4be0fdb6b5", "media": "photo", "latitude": "0", "id": "5313210477", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:47:31", "license": "3", "title": "20101009_7420.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5004/5313212245_5a89819935_o.jpg", "secret": "26485cb689", "media": "photo", "latitude": "0", "id": "5313212245", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:48:08", "license": "3", "title": "20101009_7421.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5163/5313214231_5f5c327b6a_o.jpg", "secret": "4c5084bfd7", "media": "photo", "latitude": "0", "id": "5313214231", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:48:30", "license": "3", "title": "20101009_7426.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5210/5313216009_e092344762_o.jpg", "secret": "d801eb7fd8", "media": "photo", "latitude": "0", "id": "5313216009", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:52:02", "license": "3", "title": "20101009_7442.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5162/5313217577_79eb024c7e_o.jpg", "secret": "cb47a9afab", "media": "photo", "latitude": "0", "id": "5313217577", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:52:07", "license": "3", "title": "20101009_7443.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5090/5313218965_7d77b7af61_o.jpg", "secret": "a6377f277d", "media": "photo", "latitude": "0", "id": "5313218965", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:52:17", "license": "3", "title": "20101009_7445.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5250/5313220307_e2db31a429_o.jpg", "secret": "ddf1dc0de6", "media": "photo", "latitude": "0", "id": "5313220307", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:55:37", "license": "3", "title": "20101009_7447.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5087/5313814880_8c5d230546_o.jpg", "secret": "4834cd4725", "media": "photo", "latitude": "0", "id": "5313814880", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:56:57", "license": "3", "title": "20101009_7455.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5282/5313816644_6acafc70f9_o.jpg", "secret": "ffa8cfab8a", "media": "photo", "latitude": "0", "id": "5313816644", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:56:58", "license": "3", "title": "20101009_7456.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5284/5313224787_194a690d76_o.jpg", "secret": "502bf3f972", "media": "photo", "latitude": "0", "id": "5313224787", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:58:35", "license": "3", "title": "20101009_7460.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5243/5313819868_7c625c1ae6_o.jpg", "secret": "7896c17865", "media": "photo", "latitude": "0", "id": "5313819868", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:58:36", "license": "3", "title": "20101009_7461.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5162/5313821134_42b16eeee7_o.jpg", "secret": "cf207b1bc0", "media": "photo", "latitude": "0", "id": "5313821134", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:58:54", "license": "3", "title": "20101009_7465.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5165/5313822352_354e7b02e3_o.jpg", "secret": "5cce6422fe", "media": "photo", "latitude": "0", "id": "5313822352", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:59:08", "license": "3", "title": "20101009_7469.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5088/5313230603_cdc8aa198f_o.jpg", "secret": "c8f430cf00", "media": "photo", "latitude": "0", "id": "5313230603", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:59:10", "license": "3", "title": "20101009_7470.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5289/5313825266_41579c0d1f_o.jpg", "secret": "6977fb6143", "media": "photo", "latitude": "0", "id": "5313825266", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:59:12", "license": "3", "title": "20101009_7471.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5288/5313826586_479176ae90_o.jpg", "secret": "59e98cb7c3", "media": "photo", "latitude": "0", "id": "5313826586", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:59:15", "license": "3", "title": "20101009_7472.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5167/5313827800_eb98bee181_o.jpg", "secret": "754dd5a678", "media": "photo", "latitude": "0", "id": "5313827800", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 18:59:21", "license": "3", "title": "20101009_7474.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5126/5313235597_351a5723cb_o.jpg", "secret": "3293ca7df4", "media": "photo", "latitude": "0", "id": "5313235597", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 19:01:00", "license": "3", "title": "20101009_7486.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5168/5313829726_708e0f4ddd_o.jpg", "secret": "21e796e151", "media": "photo", "latitude": "0", "id": "5313829726", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 19:01:14", "license": "3", "title": "20101009_7488.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5162/5313831714_88793bd3f7_o.jpg", "secret": "52e9d8586a", "media": "photo", "latitude": "0", "id": "5313831714", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 19:01:14", "license": "3", "title": "20101009_7487.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5289/5313237437_ea6d45e11a_o.jpg", "secret": "41ccc93e8c", "media": "photo", "latitude": "0", "id": "5313237437", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 19:01:58", "license": "3", "title": "20101009_7490.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5167/5313239613_bd6714833d_o.jpg", "secret": "6698620c0a", "media": "photo", "latitude": "0", "id": "5313239613", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 19:02:09", "license": "3", "title": "20101009_7492.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5243/5313833856_d70d1ac998_o.jpg", "secret": "1ee387c5b4", "media": "photo", "latitude": "0", "id": "5313833856", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 19:02:10", "license": "3", "title": "20101009_7494.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5248/5313241747_7812306865_o.jpg", "secret": "65367d5bc4", "media": "photo", "latitude": "0", "id": "5313241747", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 19:02:11", "license": "3", "title": "20101009_7495.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5041/5313242865_89e7379829_o.jpg", "secret": "c4a1445df6", "media": "photo", "latitude": "0", "id": "5313242865", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 19:05:59", "license": "3", "title": "20101009_7514.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5162/5313244501_663a884144_o.jpg", "secret": "dd3770ff5b", "media": "photo", "latitude": "0", "id": "5313244501", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 19:07:06", "license": "3", "title": "20101009_7516.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5006/5313246311_2151f9bb87_o.jpg", "secret": "5129e721f9", "media": "photo", "latitude": "0", "id": "5313246311", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 19:07:42", "license": "3", "title": "20101009_7520.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5125/5313840810_d6f67ac69f_o.jpg", "secret": "8997213763", "media": "photo", "latitude": "0", "id": "5313840810", "tags": "california sanjose carnivalride"}, {"datetaken": "2010-10-09 19:09:43", "license": "3", "title": "20101009_7525.jpg", "text": "", "album_id": "72157625597943685", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5090/5313842840_ca8e81f9fd_o.jpg", "secret": "107dbc172c", "media": "photo", "latitude": "0", "id": "5313842840", "tags": "california sanjose carnivalride"}, {"datetaken": "2011-03-08 20:03:20", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-956", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5100/5578658077_a7f82e4be0_o.jpg", "secret": "e9d107e1d8", "media": "photo", "latitude": "0", "id": "5578658077", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:03:56", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-957", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5293/5579236312_94e0b0c1a3_o.jpg", "secret": "c20392affe", "media": "photo", "latitude": "0", "id": "5579236312", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:04:07", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-959", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5221/5579244882_f76d8aaef1_o.jpg", "secret": "59f253cbec", "media": "photo", "latitude": "0", "id": "5579244882", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:04:39", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-961", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5019/5578658517_89b5b71e66_o.jpg", "secret": "c69857f8e4", "media": "photo", "latitude": "0", "id": "5578658517", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:05:07", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-962", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5176/5579236660_4a8034279a_o.jpg", "secret": "cba9bec4c9", "media": "photo", "latitude": "0", "id": "5579236660", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:06:58", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-968", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5149/5579245340_862bc0dc48_o.jpg", "secret": "e4c64bcc8e", "media": "photo", "latitude": "0", "id": "5579245340", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:07:33", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-971", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5060/5579236930_1844b28593_o.jpg", "secret": "1b689dc378", "media": "photo", "latitude": "0", "id": "5579236930", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:07:38", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-972", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5011/5578650519_5783bf014d_o.jpg", "secret": "1a46bcffd5", "media": "photo", "latitude": "0", "id": "5578650519", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:08:28", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-974", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5058/5578650739_f13e04a754_o.jpg", "secret": "1f6e52db60", "media": "photo", "latitude": "0", "id": "5578650739", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:10:52", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-976", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5299/5578650985_2c03164716_o.jpg", "secret": "8600d5212e", "media": "photo", "latitude": "0", "id": "5578650985", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:12:20", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-978", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5053/5579245542_77a4d496d7_o.jpg", "secret": "1a4ea4c43e", "media": "photo", "latitude": "0", "id": "5579245542", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:23:27", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-982", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5108/5578659167_c076ed9554_o.jpg", "secret": "f2a6a47f77", "media": "photo", "latitude": "0", "id": "5578659167", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:25:57", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-984", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1440/5578651185_9af94275d6_o.jpg", "secret": "8b863c6f28", "media": "photo", "latitude": "0", "id": "5578651185", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:31:05", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-990", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5310/5579245890_2f2b0f1918_o.jpg", "secret": "df342d2141", "media": "photo", "latitude": "0", "id": "5579245890", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:32:12", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-993", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5066/5578659509_5570bdd903_o.jpg", "secret": "82dfd43c35", "media": "photo", "latitude": "0", "id": "5578659509", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:32:57", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-995", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5226/5579246250_6c65839017_o.jpg", "secret": "1977df851b", "media": "photo", "latitude": "0", "id": "5579246250", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:33:20", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-997", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5097/5578660003_631d355694_o.jpg", "secret": "ab509e74cb", "media": "photo", "latitude": "0", "id": "5578660003", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:33:40", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-999", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5301/5579240824_08b4888fba_o.jpg", "secret": "1e2a271ea7", "media": "photo", "latitude": "0", "id": "5579240824", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:33:51", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-001", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5025/5578651425_70220b5962_o.jpg", "secret": "f9aa554dc3", "media": "photo", "latitude": "0", "id": "5578651425", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:35:44", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-002", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5063/5579241028_d3cf56dc7a_o.jpg", "secret": "76733e6dff", "media": "photo", "latitude": "0", "id": "5579241028", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:36:07", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-003", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5138/5579241264_83679db862_o.jpg", "secret": "a8f61ecb86", "media": "photo", "latitude": "0", "id": "5579241264", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:37:25", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-004", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5177/5579238212_40c3a06c95_o.jpg", "secret": "cbdb34cc56", "media": "photo", "latitude": "0", "id": "5579238212", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:38:23", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-006", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5299/5579241508_af329d2736_o.jpg", "secret": "386cd6685a", "media": "photo", "latitude": "0", "id": "5579241508", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:39:08", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-007", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5146/5579241648_75778cd3c2_o.jpg", "secret": "e7c900a3ba", "media": "photo", "latitude": "0", "id": "5579241648", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:39:24", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-010", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5063/5579238400_610f899320_o.jpg", "secret": "a6be69da83", "media": "photo", "latitude": "0", "id": "5579238400", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:40:43", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-014", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5027/5578651963_bc4e3f6a90_o.jpg", "secret": "89de7cf7f4", "media": "photo", "latitude": "0", "id": "5578651963", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:40:52", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-015", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5146/5579241830_134c777d52_o.jpg", "secret": "64930be762", "media": "photo", "latitude": "0", "id": "5579241830", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:41:01", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-016", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5227/5578652167_cb7187f4d2_o.jpg", "secret": "2020a518bc", "media": "photo", "latitude": "0", "id": "5578652167", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:41:07", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-017", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5027/5578655333_7dc8848ac6_o.jpg", "secret": "64b6b02aa4", "media": "photo", "latitude": "0", "id": "5578655333", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:41:22", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-018", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5098/5579239038_0b24e4e703_o.jpg", "secret": "6885f22477", "media": "photo", "latitude": "0", "id": "5579239038", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:42:13", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-020", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5177/5578655517_f7eeac9cc7_o.jpg", "secret": "2ab1316d08", "media": "photo", "latitude": "0", "id": "5578655517", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:42:51", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-021", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5176/5579239202_46b804f9bf_o.jpg", "secret": "916bbd6ea0", "media": "photo", "latitude": "0", "id": "5579239202", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:43:02", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-022", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5068/5579242400_6b3b857d31_o.jpg", "secret": "53bde86235", "media": "photo", "latitude": "0", "id": "5579242400", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:45:41", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-024", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5059/5579242684_321780b05b_o.jpg", "secret": "2ee90ba585", "media": "photo", "latitude": "0", "id": "5579242684", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:46:02", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-025", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5172/5578656161_7dddfafa5c_o.jpg", "secret": "563324ac57", "media": "photo", "latitude": "0", "id": "5578656161", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:46:08", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-027", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5308/5578656423_88e8257a09_o.jpg", "secret": "c3b63e61ee", "media": "photo", "latitude": "0", "id": "5578656423", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:46:15", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-028", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5101/5579243288_a247b6205a_o.jpg", "secret": "12304f2a63", "media": "photo", "latitude": "0", "id": "5579243288", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:46:54", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-030", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5092/5578652755_e6f5cafed6_o.jpg", "secret": "2da2ff4045", "media": "photo", "latitude": "0", "id": "5578652755", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:51:25", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-034", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5268/5578652937_df7054faec_o.jpg", "secret": "bf55d42655", "media": "photo", "latitude": "0", "id": "5578652937", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:51:53", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-035", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5251/5578656847_fcc67a721c_o.jpg", "secret": "33876cc068", "media": "photo", "latitude": "0", "id": "5578656847", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:52:59", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-037", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5221/5579239856_1840461ff4_o.jpg", "secret": "9270406d84", "media": "photo", "latitude": "0", "id": "5579239856", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:56:10", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-043", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5259/5579240028_f7c24fb547_o.jpg", "secret": "d4b4b0f5b5", "media": "photo", "latitude": "0", "id": "5579240028", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:56:48", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-044", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5107/5579243660_db527427f4_o.jpg", "secret": "a017b67fe5", "media": "photo", "latitude": "0", "id": "5579243660", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:56:58", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-045", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5172/5579243836_f67e58cd5f_o.jpg", "secret": "cfd20848bd", "media": "photo", "latitude": "0", "id": "5579243836", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 20:57:49", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-047", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5305/5579244014_3842c7ab22_o.jpg", "secret": "4a6b27ce94", "media": "photo", "latitude": "0", "id": "5579244014", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 21:05:39", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-048", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5020/5579244168_7f8e111501_o.jpg", "secret": "25ae623fc3", "media": "photo", "latitude": "0", "id": "5579244168", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 21:13:27", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-058", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5105/5579244380_ec7c8df280_o.jpg", "secret": "b30be5e701", "media": "photo", "latitude": "0", "id": "5579244380", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 21:13:41", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-059", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5299/5578653633_4267fc9158_o.jpg", "secret": "e06c2dc2eb", "media": "photo", "latitude": "0", "id": "5578653633", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 21:14:04", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-060", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5295/5579240442_5aba20746b_o.jpg", "secret": "43242669fe", "media": "photo", "latitude": "0", "id": "5579240442", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2011-03-08 21:14:28", "license": "5", "title": "2011-03-08_Altsasu-momotxorroak-JI-064", "text": "", "album_id": "72157626404221424", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5147/5578654053_181edb372d_o.jpg", "secret": "ff1e5db1d1", "media": "photo", "latitude": "0", "id": "5578654053", "tags": "carnival carnaval inauteriak altsasu i\u00f1auteriak nafarroa ihauteriak 2011 tradizionala karnabala akerra ihoteak momotxorroak ihauteak aratustea inauteak photojoniraola tokiantokikoa aratostiak juantranposo"}, {"datetaken": "2010-07-23 11:48:40", "license": "3", "title": "DANGER! Do Not Rock Seats", "text": "", "album_id": "72157624444689467", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4822621025_47be399e83_o.jpg", "secret": "e9a7b04441", "media": "photo", "latitude": "0", "id": "4822621025", "tags": "carnival bw nikon fremont ferriswheel streetfair oldfashioneddays gerberbabyfoodfestival"}, {"datetaken": "2010-07-23 12:10:16", "license": "3", "title": "spectating", "text": "", "album_id": "72157624444689467", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/5152013477_c6dbf91138_o.jpg", "secret": "21a941c6fb", "media": "photo", "latitude": "0", "id": "5152013477", "tags": "family carnival nikon sister fair niece rena roo gerberbabyfoodfestival"}, {"datetaken": "2010-07-23 12:17:01", "license": "3", "title": "hula hoop girl", "text": "", "album_id": "72157624444689467", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4825848845_a741937f3c_o.jpg", "secret": "791b0843bf", "media": "photo", "latitude": "0", "id": "4825848845", "tags": "carnival alex nikon fremont hmm hulahoop streetfair oldfashioneddays gerberbabyfoodfestival"}, {"datetaken": "2010-07-23 12:28:24", "license": "3", "title": "*bump*", "text": "", "album_id": "72157624444689467", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/4833146113_a71296dcea_o.jpg", "secret": "3bcbba6e28", "media": "photo", "latitude": "0", "id": "4833146113", "tags": "carnival bw nikon fremont bumpercars streetfair oldfashioneddays gerberbabyfoodfestival"}, {"datetaken": "2010-07-23 12:41:36", "license": "3", "title": "if you still do not understand", "text": "", "album_id": "72157624444689467", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/4833775570_9cf3f40385_o.jpg", "secret": "0f243eb2b8", "media": "photo", "latitude": "0", "id": "4833775570", "tags": "carnival nikon fremont spongebob hmm streetfair patrickstar oldfashioneddays gerberbabyfoodfestival"}, {"datetaken": "2010-07-23 12:50:01", "license": "3", "title": "street carnival sky", "text": "", "album_id": "72157624444689467", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/4833830032_f3be131c61_o.jpg", "secret": "7d6949fab3", "media": "photo", "latitude": "0", "id": "4833830032", "tags": "carnival sky clouds nikon tent fremont powerlines telephonepole hmm streetfair oldfashioneddays gerberbabyfoodfestival"}, {"datetaken": "2010-07-23 13:24:32", "license": "3", "title": "the prize", "text": "", "album_id": "72157624444689467", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1361/5152436782_87593f532e_o.jpg", "secret": "f0c9e84631", "media": "photo", "latitude": "0", "id": "5152436782", "tags": "family carnival alex nikon fair niece prize sooc gerberbabyfoodfestival"}, {"datetaken": "2010-07-23 13:24:32", "license": "3", "title": "the prize (edit)", "text": "", "album_id": "72157624444689467", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1239/5152553824_1b8f9710ac_o.jpg", "secret": "72cb4387b2", "media": "photo", "latitude": "0", "id": "5152553824", "tags": "family carnival alex nikon fair niece prize sooc gerberbabyfoodfestival"}, {"datetaken": "2010-07-23 13:24:35", "license": "3", "title": "a girl and her prize", "text": "", "album_id": "72157624444689467", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/5151833187_ca54681452_o.jpg", "secret": "853500446c", "media": "photo", "latitude": "0", "id": "5151833187", "tags": "family carnival alex nikon fair niece prize hmm gerberbabyfoodfestival"}, {"datetaken": "2010-07-23 14:31:20", "license": "3", "title": "quilt shop open", "text": "", "album_id": "72157624444689467", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4848543471_91d6289f92_o.jpg", "secret": "6bbe80bba4", "media": "photo", "latitude": "0", "id": "4848543471", "tags": "life carnival flowers sign nikon blossoms fremont streetfair oldfashioneddays gerberbabyfoodfestival"}, {"datetaken": "2010-07-23 14:49:26", "license": "3", "title": "swings!", "text": "", "album_id": "72157624444689467", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4106/4834040616_146deab23a_o.jpg", "secret": "36ccfd8650", "media": "photo", "latitude": "0", "id": "4834040616", "tags": "carnival alex nikon fremont swing niece streetfair syrena oldfashioneddays gerberbabyfoodfestival"}, {"datetaken": "2010-07-23 15:04:32", "license": "3", "title": "the farm out the window", "text": "", "album_id": "72157624444689467", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/4837712386_a3860dd5bc_o.jpg", "secret": "365b832dd4", "media": "photo", "latitude": "0", "id": "4837712386", "tags": "carnival nikon farm fremont streetfair oldfashioneddays alexsphoto gerberbabyfoodfestival"}, {"datetaken": "2010-05-28 18:05:36", "license": "1", "title": "Battle of Carnival Bands - Aquarela De Paris", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4647847215_a972777aa4_o.jpg", "secret": "3c3f4d4f92", "media": "photo", "latitude": "0", "id": "4647847215", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer battleofcarnivalbands"}, {"datetaken": "2010-05-28 18:06:09", "license": "1", "title": "Battle of Carnival Bands - Aquarela de Paris", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4647847643_5e212b244d_o.jpg", "secret": "13537274d7", "media": "photo", "latitude": "0", "id": "4647847643", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer battleofcarnivalbands"}, {"datetaken": "2010-05-28 18:15:31", "license": "1", "title": "Battle of Carnival Bands - Aquarela de Paris", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4648466020_07a8a0067a_o.jpg", "secret": "7cd914dc7a", "media": "photo", "latitude": "0", "id": "4648466020", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer battleofcarnivalbands"}, {"datetaken": "2010-05-28 18:15:57", "license": "1", "title": "Battle of Carnival Bands - Aquarela de Paris", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4647852141_0e557f2ea1_o.jpg", "secret": "6246bb407a", "media": "photo", "latitude": "0", "id": "4647852141", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer battleofcarnivalbands"}, {"datetaken": "2010-05-28 18:16:06", "license": "1", "title": "Battle of Carnival Bands - Aquarela de Paris", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4648466882_a5ff62cfba_o.jpg", "secret": "d892dd4bae", "media": "photo", "latitude": "0", "id": "4648466882", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer battleofcarnivalbands"}, {"datetaken": "2010-05-28 18:17:45", "license": "1", "title": "Battle of Carnival Bands - Aquarela de Paris", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4648467302_df2dd3fc70_o.jpg", "secret": "19140836ef", "media": "photo", "latitude": "0", "id": "4648467302", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer battleofcarnivalbands"}, {"datetaken": "2010-05-28 18:17:46", "license": "1", "title": "Battle of Carnival Bands - Aquarela de Paris", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4647853373_ac47eac171_o.jpg", "secret": "e9004a36e1", "media": "photo", "latitude": "0", "id": "4647853373", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer battleofcarnivalbands"}, {"datetaken": "2010-05-28 18:18:09", "license": "1", "title": "Battle of Carnival Bands - Aquarela de Paris", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4647853621_c9ebbb534a_o.jpg", "secret": "2a9526c0f6", "media": "photo", "latitude": "0", "id": "4647853621", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer battleofcarnivalbands"}, {"datetaken": "2010-05-28 19:03:57", "license": "1", "title": "Battle of Carnival Bands - Aquarela de Paris", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4662309827_97aeb69a15_o.jpg", "secret": "9eab0edf16", "media": "photo", "latitude": "0", "id": "4662309827", "tags": "aalborg karneval rampage drachent\u00e4nzer mandinga dunkelfolket vimoroz battleofcarnivalbands stelzenart alkoholdet klubkarneval kontrasten aquareladeparis desjatrellen dolnasekirna"}, {"datetaken": "2010-05-28 19:04:22", "license": "1", "title": "Battle of Carnival Bands - Aquarela de Paris", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1291/4662310441_0c04853112_o.jpg", "secret": "2f9c3f7192", "media": "photo", "latitude": "0", "id": "4662310441", "tags": "aalborg karneval rampage drachent\u00e4nzer mandinga dunkelfolket vimoroz battleofcarnivalbands stelzenart alkoholdet klubkarneval kontrasten aquareladeparis desjatrellen dolnasekirna"}, {"datetaken": "2010-05-28 19:05:01", "license": "1", "title": "Battle of Carnival Bands - Aquarela de Paris", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4662311205_3c6f394884_o.jpg", "secret": "eacce6ba1c", "media": "photo", "latitude": "0", "id": "4662311205", "tags": "aalborg karneval rampage drachent\u00e4nzer mandinga dunkelfolket vimoroz battleofcarnivalbands stelzenart alkoholdet klubkarneval kontrasten aquareladeparis desjatrellen dolnasekirna"}, {"datetaken": "2010-05-28 19:05:09", "license": "1", "title": "Battle of Carnival Bands - Aquarela de Paris", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4662311841_f0f9772e2c_o.jpg", "secret": "26efa79c32", "media": "photo", "latitude": "0", "id": "4662311841", "tags": "aalborg karneval rampage drachent\u00e4nzer mandinga dunkelfolket vimoroz battleofcarnivalbands stelzenart alkoholdet klubkarneval kontrasten aquareladeparis desjatrellen dolnasekirna"}, {"datetaken": "2010-05-28 21:36:00", "license": "1", "title": "Battle of Carnival Bands - Aquarela de Paris", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1304/4665775439_2ec0300ae8_o.jpg", "secret": "599e6e2e17", "media": "photo", "latitude": "0", "id": "4665775439", "tags": "carnival costumes parade aalborg karneval 2010 gadefest kostumer aquareladeparis"}, {"datetaken": "2010-05-28 21:37:21", "license": "1", "title": "Battle of Carnival Bands - Aquarela de Paris", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4665777935_7e244cd22b_o.jpg", "secret": "282c21715b", "media": "photo", "latitude": "0", "id": "4665777935", "tags": "carnival costumes parade aalborg karneval 2010 gadefest kostumer aquareladeparis"}, {"datetaken": "2010-05-28 21:38:06", "license": "1", "title": "Battle of Carnival Bands - Aquarela de Paris", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4666404444_88b4404209_o.jpg", "secret": "b278dca4ec", "media": "photo", "latitude": "0", "id": "4666404444", "tags": "carnival costumes parade aalborg karneval 2010 gadefest kostumer aquareladeparis"}, {"datetaken": "2010-05-28 21:41:18", "license": "1", "title": "Battle of Carnival Bands - Aquarela de Paris", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4665772185_01d6d01f78_o.jpg", "secret": "f290eaa0dd", "media": "photo", "latitude": "0", "id": "4665772185", "tags": "carnival costumes parade aalborg karneval 2010 gadefest kostumer aquareladeparis"}, {"datetaken": "2010-05-29 10:50:06", "license": "1", "title": "The Grand Parade 29th May 2010", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4649302845_efb4e4d1d9_o.jpg", "secret": "ddf61254fa", "media": "photo", "latitude": "0", "id": "4649302845", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer"}, {"datetaken": "2010-05-29 14:43:21", "license": "1", "title": "Kildeparken - Aalborg Carnival", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4650033607_5f4e08be69_o.jpg", "secret": "6b7e9c2617", "media": "photo", "latitude": "0", "id": "4650033607", "tags": "show carnival costumes parade aalborg karneval 2010 kildeparken kostumer"}, {"datetaken": "2010-05-29 14:44:50", "license": "1", "title": "Kildeparken - Aalborg Carnival", "text": "", "album_id": "72157624194258186", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4650034579_f1608978d1_o.jpg", "secret": "c99e158560", "media": "photo", "latitude": "0", "id": "4650034579", "tags": "show carnival costumes parade aalborg karneval 2010 kildeparken kostumer"}, {"datetaken": "2010-05-28 16:47:02", "license": "1", "title": "Battle of Carnival Bands - Mandinga Art", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4662879978_77700abd75_o.jpg", "secret": "7f86840fdb", "media": "photo", "latitude": "0", "id": "4662879978", "tags": "aalborg karneval rampage drachent\u00e4nzer mandinga dunkelfolket vimoroz battleofcarnivalbands stelzenart alkoholdet klubkarneval kontrasten aquareladeparis desjatrellen dolnasekirna"}, {"datetaken": "2010-05-28 17:31:06", "license": "1", "title": "Battle of Carnival Bands - Mandinga Arts", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4648450584_b1d43ec7e4_o.jpg", "secret": "0341b339b0", "media": "photo", "latitude": "0", "id": "4648450584", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer battleofcarnivalbands"}, {"datetaken": "2010-05-28 17:32:04", "license": "1", "title": "Battle of Carnival Bands - Mandinga Arts", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4647836581_a9dc224c54_o.jpg", "secret": "c8390f0bd1", "media": "photo", "latitude": "0", "id": "4647836581", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer battleofcarnivalbands"}, {"datetaken": "2010-05-28 17:32:36", "license": "1", "title": "Battle of Carnival Bands - Mandinga Arts", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4648451188_65819b9340_o.jpg", "secret": "5677ea7f45", "media": "photo", "latitude": "0", "id": "4648451188", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer battleofcarnivalbands"}, {"datetaken": "2010-05-28 17:32:51", "license": "1", "title": "Battle of Carnival Bands - Mandinga Arts", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4648451402_cd595257c5_o.jpg", "secret": "6bba6455b6", "media": "photo", "latitude": "0", "id": "4648451402", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer battleofcarnivalbands"}, {"datetaken": "2010-05-28 17:34:18", "license": "1", "title": "Battle of Carnival Bands - Mandinga Arts", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4648451758_326d8dfcf3_o.jpg", "secret": "656867ddf3", "media": "photo", "latitude": "0", "id": "4648451758", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer battleofcarnivalbands"}, {"datetaken": "2010-05-28 17:34:28", "license": "1", "title": "Battle of Carnival Bands - Mandinga Arts", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4647837625_f03002b26e_o.jpg", "secret": "3087cdba9c", "media": "photo", "latitude": "0", "id": "4647837625", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer battleofcarnivalbands"}, {"datetaken": "2010-05-28 17:35:52", "license": "1", "title": "Battle of Carnival Bands - Mandinga Arts", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3399/4648452464_1007ed0728_o.jpg", "secret": "29efaab41a", "media": "photo", "latitude": "0", "id": "4648452464", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer battleofcarnivalbands"}, {"datetaken": "2010-05-28 17:36:10", "license": "1", "title": "Battle of Carnival Bands - Mandinga Arts", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4647838195_cdbd5872c1_o.jpg", "secret": "c11382c798", "media": "photo", "latitude": "0", "id": "4647838195", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer battleofcarnivalbands"}, {"datetaken": "2010-05-28 17:39:53", "license": "1", "title": "Battle of Carnival Bands - Mandinga Art", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4662260753_8bd5201724_o.jpg", "secret": "054519673a", "media": "photo", "latitude": "0", "id": "4662260753", "tags": "aalborg karneval rampage drachent\u00e4nzer mandinga dunkelfolket vimoroz battleofcarnivalbands stelzenart alkoholdet klubkarneval kontrasten aquareladeparis desjatrellen dolnasekirna"}, {"datetaken": "2010-05-28 17:40:42", "license": "1", "title": "Battle of Carnival Bands - Mandinga Art", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4662261319_60c65fbefd_o.jpg", "secret": "56dfc24e1e", "media": "photo", "latitude": "0", "id": "4662261319", "tags": "aalborg karneval rampage drachent\u00e4nzer mandinga dunkelfolket vimoroz battleofcarnivalbands stelzenart alkoholdet klubkarneval kontrasten aquareladeparis desjatrellen dolnasekirna"}, {"datetaken": "2010-05-28 18:22:20", "license": "1", "title": "Battle of Carnival Bands - Mandinga Art", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4662279695_4d31c412dc_o.jpg", "secret": "98f4f12510", "media": "photo", "latitude": "0", "id": "4662279695", "tags": "aalborg karneval rampage drachent\u00e4nzer mandinga dunkelfolket vimoroz battleofcarnivalbands stelzenart alkoholdet klubkarneval kontrasten aquareladeparis desjatrellen dolnasekirna"}, {"datetaken": "2010-05-28 18:22:49", "license": "1", "title": "Battle of Carnival Bands - Mandinga Art", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1292/4662281093_9804d3a371_o.jpg", "secret": "caa99ac199", "media": "photo", "latitude": "0", "id": "4662281093", "tags": "aalborg karneval rampage drachent\u00e4nzer mandinga dunkelfolket vimoroz battleofcarnivalbands stelzenart alkoholdet klubkarneval kontrasten aquareladeparis desjatrellen dolnasekirna"}, {"datetaken": "2010-05-28 18:22:52", "license": "1", "title": "Battle of Carnival Bands - Mandinga Art", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1294/4662282031_9c0837b426_o.jpg", "secret": "139b6684e3", "media": "photo", "latitude": "0", "id": "4662282031", "tags": "aalborg karneval rampage drachent\u00e4nzer mandinga dunkelfolket vimoroz battleofcarnivalbands stelzenart alkoholdet klubkarneval kontrasten aquareladeparis desjatrellen dolnasekirna"}, {"datetaken": "2010-05-28 18:23:06", "license": "1", "title": "Battle of Carnival Bands - Mandinga Art", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1303/4662282635_2360a2a8ae_o.jpg", "secret": "ceb090d007", "media": "photo", "latitude": "0", "id": "4662282635", "tags": "aalborg karneval rampage drachent\u00e4nzer mandinga dunkelfolket vimoroz battleofcarnivalbands stelzenart alkoholdet klubkarneval kontrasten aquareladeparis desjatrellen dolnasekirna"}, {"datetaken": "2010-05-28 18:23:27", "license": "1", "title": "Battle of Carnival Bands - Mandinga Art", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1299/4662283481_da0b4a0f1c_o.jpg", "secret": "014305ebb7", "media": "photo", "latitude": "0", "id": "4662283481", "tags": "aalborg karneval rampage drachent\u00e4nzer mandinga dunkelfolket vimoroz battleofcarnivalbands stelzenart alkoholdet klubkarneval kontrasten aquareladeparis desjatrellen dolnasekirna"}, {"datetaken": "2010-05-28 18:23:56", "license": "1", "title": "Battle of Carnival Bands - Mandinga Art", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4662284087_f371ffe64b_o.jpg", "secret": "38d3559ecb", "media": "photo", "latitude": "0", "id": "4662284087", "tags": "aalborg karneval rampage drachent\u00e4nzer mandinga dunkelfolket vimoroz battleofcarnivalbands stelzenart alkoholdet klubkarneval kontrasten aquareladeparis desjatrellen dolnasekirna"}, {"datetaken": "2010-05-28 18:24:33", "license": "1", "title": "Battle of Carnival Bands - Mandinga Art", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4662284841_bc329229a8_o.jpg", "secret": "b6a2a266e1", "media": "photo", "latitude": "0", "id": "4662284841", "tags": "aalborg karneval rampage drachent\u00e4nzer mandinga dunkelfolket vimoroz battleofcarnivalbands stelzenart alkoholdet klubkarneval kontrasten aquareladeparis desjatrellen dolnasekirna"}, {"datetaken": "2010-05-28 18:25:15", "license": "1", "title": "Battle of Carnival Bands - Mandinga Art", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4662285543_8ab392251c_o.jpg", "secret": "d2f395a038", "media": "photo", "latitude": "0", "id": "4662285543", "tags": "aalborg karneval rampage drachent\u00e4nzer mandinga dunkelfolket vimoroz battleofcarnivalbands stelzenart alkoholdet klubkarneval kontrasten aquareladeparis desjatrellen dolnasekirna"}, {"datetaken": "2010-05-28 18:25:44", "license": "1", "title": "Battle of Carnival Bands - Mandinga Art", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4662908250_e350342ec4_o.jpg", "secret": "8341b48b65", "media": "photo", "latitude": "0", "id": "4662908250", "tags": "aalborg karneval rampage drachent\u00e4nzer mandinga dunkelfolket vimoroz battleofcarnivalbands stelzenart alkoholdet klubkarneval kontrasten aquareladeparis desjatrellen dolnasekirna"}, {"datetaken": "2010-05-28 18:27:10", "license": "1", "title": "Battle of Carnival Bands - Mandinga Art", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4662909006_50495201cf_o.jpg", "secret": "b654da1247", "media": "photo", "latitude": "0", "id": "4662909006", "tags": "aalborg karneval rampage drachent\u00e4nzer mandinga dunkelfolket vimoroz battleofcarnivalbands stelzenart alkoholdet klubkarneval kontrasten aquareladeparis desjatrellen dolnasekirna"}, {"datetaken": "2010-05-29 10:41:56", "license": "1", "title": "The Grand Parade 29th May 2010", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4649300735_2dd8cfba69_o.jpg", "secret": "7c5f8004a6", "media": "photo", "latitude": "0", "id": "4649300735", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer"}, {"datetaken": "2010-05-29 10:42:44", "license": "1", "title": "The Grand Parade 29th May 2010", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4649301301_a0e6b85ffe_o.jpg", "secret": "c7fc2ae0bd", "media": "photo", "latitude": "0", "id": "4649301301", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer"}, {"datetaken": "2010-05-29 10:42:55", "license": "1", "title": "The Grand Parade 29th May 2010", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4649300407_2d54f9baa7_o.jpg", "secret": "1419117996", "media": "photo", "latitude": "0", "id": "4649300407", "tags": "carnival costumes samba parade fest aalborg karneval 2010 gadefest kostumer"}, {"datetaken": "2010-05-29 15:12:25", "license": "1", "title": "Kildeparken - Aalborg Carnival", "text": "", "album_id": "72157624194353776", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4650036651_cd58f24754_o.jpg", "secret": "f3e4883bbc", "media": "photo", "latitude": "0", "id": "4650036651", "tags": "show carnival costumes parade aalborg karneval 2010 kildeparken kostumer"}, {"datetaken": "2010-05-22 13:12:00", "license": "1", "title": "Zinneke 2010 \u00ac 8264", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4881785623_6ee2684d97_o.jpg", "secret": "43e66bfcda", "media": "photo", "latitude": "0", "id": "4881785623", "tags": "life street city carnival brussels party people urban art public festival calle strada fiesta belgium belgique artistic belgi\u00eb diversity bruxelles ciudad menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace journalism ville 2010 reportage citt\u00e0 periodismo zinneke \u4eba straat giornalismo \u043b\u044e\u0434\u0438 parata intercultural sociale journalisme reportaje strase diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 13:57:35", "license": "1", "title": "Zinneke 2010 \u00ac 8343b", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4882393842_5df1255bc7_o.jpg", "secret": "652762bcbc", "media": "photo", "latitude": "0", "id": "4882393842", "tags": "life street city carnival brussels party people urban art public festival calle strada fiesta belgium belgique artistic belgi\u00eb bodylanguage diversity bruxelles ciudad menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace journalism ville 2010 reportage citt\u00e0 periodismo zinneke \u4eba straat giornalismo \u043b\u044e\u0434\u0438 parata intercultural sociale journalisme reportaje strase diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 14:35:46", "license": "1", "title": "Zinneke 2010 \u00ac 8627", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4882394236_06061bd62f_o.jpg", "secret": "ef9d424ca8", "media": "photo", "latitude": "0", "id": "4882394236", "tags": "life street city carnival brussels party people urban art public festival calle strada fiesta belgium belgique artistic belgi\u00eb diversity bruxelles ciudad menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace journalism ville 2010 reportage citt\u00e0 periodismo zinneke \u4eba straat giornalismo \u043b\u044e\u0434\u0438 parata intercultural sociale journalisme reportaje strase diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 15:23:09", "license": "1", "title": "Zinneke 2010 . Anderl\u00e8che \u00ac 8883b", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4867836193_97bcf29128_o.jpg", "secret": "dea4a37234", "media": "photo", "latitude": "0", "id": "4867836193", "tags": "life street city carnival brussels party people urban art public festival calle strada fiesta belgium belgique grandplace artistic young belgi\u00eb diversity bruxelles ciudad menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace journalism ville grotemarkt j\u00f3venes junge joven 2010 reportage citt\u00e0 periodismo giovani zinneke \u4eba straat jeune giornalismo \u043b\u044e\u0434\u0438 parata intercultural sociale journalisme reportaje strase diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 15:23:09", "license": "1", "title": "Zinneke 2010 . Anderl\u00e8che \u00ac 8883c", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4868449232_dfd9d66a03_o.jpg", "secret": "28498be29e", "media": "photo", "latitude": "0", "id": "4868449232", "tags": "life street city carnival brussels party people urban art public festival calle strada fiesta belgium belgique grandplace artistic young belgi\u00eb diversity bruxelles ciudad menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace ville grotemarkt j\u00f3venes junge joven 2010 citt\u00e0 giovani zinneke \u4eba straat jeune \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 parata intercultural sociale strase diversit\u00e9 zinnekeparade zinnekesparade interculturel belgi\u00ebn socioartistic \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0441\u0438\u0447\u0435\u0441\u0438\u0436\u0435\u043d\u0430"}, {"datetaken": "2010-05-22 15:23:11", "license": "1", "title": "Zinneke 2010 . Anderl\u00e8che \u00ac 8884b", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4867836543_a7e7fb1e8d_o.jpg", "secret": "af3993abb3", "media": "photo", "latitude": "0", "id": "4867836543", "tags": "life street city carnival brussels party people urban art public festival calle strada fiesta belgium belgique grandplace artistic young belgi\u00eb diversity bruxelles ciudad menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace journalism ville grotemarkt j\u00f3venes junge joven 2010 reportage citt\u00e0 periodismo giovani zinneke \u4eba straat jeune giornalismo \u043b\u044e\u0434\u0438 parata intercultural sociale journalisme reportaje strase diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 15:23:11", "license": "1", "title": "Zinneke 2010 . Anderl\u00e8che \u00ac 8884c", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4867836769_410b5b2d1e_o.jpg", "secret": "8c3a102fcd", "media": "photo", "latitude": "0", "id": "4867836769", "tags": "life street city carnival brussels party people urban art public festival calle strada fiesta belgium belgique grandplace artistic young belgi\u00eb diversity bruxelles ciudad menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace ville grotemarkt j\u00f3venes junge joven 2010 citt\u00e0 giovani zinneke \u4eba straat jeune \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 parata intercultural sociale strase diversit\u00e9 zinnekeparade zinnekesparade interculturel belgi\u00ebn socioartistic \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0441\u0438\u0447\u0435\u0441\u0438\u0436\u0435\u043d\u0430"}, {"datetaken": "2010-05-22 15:23:33", "license": "1", "title": "Zinneke 2010 . Anderl\u00e8che \u00ac 8885d", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4874390201_7f9eea641e_o.jpg", "secret": "03c336c298", "media": "photo", "latitude": "0", "id": "4874390201", "tags": "life street city carnival brussels party people urban art public festival calle strada fiesta belgium belgique grandplace artistic young belgi\u00eb diversity bruxelles ciudad menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace journalism ville grotemarkt j\u00f3venes junge joven 2010 reportage citt\u00e0 periodismo giovani zinneke \u4eba straat jeune giornalismo \u043b\u044e\u0434\u0438 parata intercultural sociale journalisme reportaje strase diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 15:23:33", "license": "1", "title": "Zinneke 2010 . Anderl\u00e8che \u00ac 8885c", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4874996992_6b12f9f7df_o.jpg", "secret": "1d5966f456", "media": "photo", "latitude": "0", "id": "4874996992", "tags": "life street city carnival brussels party people urban art public festival calle strada fiesta belgium belgique grandplace artistic young belgi\u00eb diversity bruxelles ciudad menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace journalism ville grotemarkt j\u00f3venes junge joven 2010 reportage citt\u00e0 periodismo giovani zinneke \u4eba straat jeune giornalismo \u043b\u044e\u0434\u0438 parata intercultural sociale journalisme reportaje strase diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 15:23:48", "license": "1", "title": "Zinneke 2010 . Anderl\u00e8che \u00ac 8886b", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4114/4874390449_c8a3f40f1c_o.jpg", "secret": "5be2519e5b", "media": "photo", "latitude": "0", "id": "4874390449", "tags": "life street city carnival brussels party people urban art public festival calle strada fiesta belgium belgique grandplace artistic young belgi\u00eb diversity bruxelles ciudad menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace journalism ville grotemarkt j\u00f3venes junge joven 2010 reportage citt\u00e0 periodismo giovani zinneke \u4eba straat jeune giornalismo \u043b\u044e\u0434\u0438 parata intercultural sociale journalisme reportaje strase diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 15:23:48", "license": "1", "title": "Zinneke 2010 . Anderl\u00e8che \u00ac 8886d", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4874391271_67864d428c_o.jpg", "secret": "432ae83a51", "media": "photo", "latitude": "0", "id": "4874391271", "tags": "life street city carnival brussels party people urban art public festival calle strada fiesta belgium belgique grandplace artistic young belgi\u00eb diversity bruxelles ciudad menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace journalism ville grotemarkt j\u00f3venes junge joven 2010 reportage citt\u00e0 periodismo giovani zinneke \u4eba straat jeune giornalismo \u043b\u044e\u0434\u0438 parata intercultural sociale journalisme reportaje strase diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 15:23:48", "license": "1", "title": "Zinneke 2010 . Anderl\u00e8che \u00ac 8886c", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4118/4874998034_b8f9881fc5_o.jpg", "secret": "54b3dc8140", "media": "photo", "latitude": "0", "id": "4874998034", "tags": "life street city carnival brussels party people urban art public festival calle strada fiesta belgium belgique grandplace artistic young belgi\u00eb diversity bruxelles ciudad menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace journalism ville grotemarkt j\u00f3venes junge joven 2010 reportage citt\u00e0 periodismo giovani zinneke \u4eba straat jeune giornalismo \u043b\u044e\u0434\u0438 parata intercultural sociale journalisme reportaje strase diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 15:24:29", "license": "1", "title": "Zinneke 2010 . Anderl\u00e8che \u00ac 8888", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4874998464_e214ee052e_o.jpg", "secret": "ee7a528702", "media": "photo", "latitude": "0", "id": "4874998464", "tags": "life street city carnival brussels party people urban art public festival calle strada fiesta belgium belgique grandplace artistic young belgi\u00eb diversity bruxelles ciudad menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace journalism ville grotemarkt j\u00f3venes junge joven 2010 reportage citt\u00e0 periodismo giovani zinneke \u4eba straat jeune giornalismo \u043b\u044e\u0434\u0438 parata intercultural sociale journalisme reportaje strase diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 15:54:09", "license": "1", "title": "Zinneke 2010 \u00ac 9223b", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4753818911_9952ab6180_o.jpg", "secret": "d0500e49b1", "media": "photo", "latitude": "0", "id": "4753818911", "tags": "life street city brussels people urban art public festival calle strada belgium belgique artistic young belgi\u00eb bruxelles ciudad social menschen parade personas persone stadt metropolis bruselas rue brussel bodypart belgica personnes carrer espace journalism ville j\u00f3venes junge joven 2010 reportage citt\u00e0 periodismo giovani zinneke \u4eba straat jeune giornalismo \u043b\u044e\u0434\u0438 journalisme reportaje strase zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 15:54:09", "license": "1", "title": "Zinneke 2010 \u00ac 9223", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4754459286_c261bc564e_o.jpg", "secret": "3e9907a9b3", "media": "photo", "latitude": "0", "id": "4754459286", "tags": "life street carnival brussels portrait people urban art face festival facepainting calle kid mujer child belgium belgique grandplace artistic retrato femme cara young belgi\u00eb diversity bruxelles ciudad social parade carnaval metropolis bruselas rue belgica carrer journalism ville grotemarkt visage dona 2010 reportage periodismo zinneke retrat giornalismo intercultural journalisme reportaje diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel kidspaintedfaces \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 facepaintingideasforkids \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 15:54:14", "license": "1", "title": "Zinneke 2010 \u00ac 9225d", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4754548690_a39f318bf6_o.jpg", "secret": "d3838a2065", "media": "photo", "latitude": "0", "id": "4754548690", "tags": "life street carnival brussels people urban woman art girl festival female calle mujer belgium belgique artistic femme young belgi\u00eb diversity bruxelles ciudad social parade carnaval metropolis bruselas rue belgica carrer journalism ville dona 2010 reportage periodismo zinneke giornalismo intercultural journalisme reportaje diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 15:54:17", "license": "1", "title": "Zinneke 2010 \u00ac 9227b", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4753908377_99259045e5_o.jpg", "secret": "9af99e2a10", "media": "photo", "latitude": "0", "id": "4753908377", "tags": "life street carnival brussels people urban woman art girl festival female calle mujer belgium belgique grandplace artistic femme young belgi\u00eb diversity bruxelles ciudad social parade carnaval metropolis bruselas rue belgica carrer journalism ville grotemarkt dona 2010 reportage periodismo zinneke giornalismo intercultural journalisme reportaje diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 15:54:17", "license": "1", "title": "Zinneke 2010 \u00ac 9227c", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4753908529_66b8e863f7_o.jpg", "secret": "7a8c30a3d4", "media": "photo", "latitude": "0", "id": "4753908529", "tags": "life street carnival brussels portrait people urban woman art girl face festival female facepainting calle mujer belgium belgique artistic retrato femme cara young belgi\u00eb diversity bruxelles ciudad social parade carnaval metropolis bruselas rue belgica carrer journalism ville visage dona 2010 reportage periodismo zinneke retrat giornalismo intercultural journalisme reportaje diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel kidspaintedfaces \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 facepaintingideasforkids \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 15:54:20", "license": "1", "title": "Zinneke 2010 \u00ac 9228b", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4754459078_0185500a39_o.jpg", "secret": "026c5f03ac", "media": "photo", "latitude": "0", "id": "4754459078", "tags": "life street carnival brussels portrait people urban woman art girl face festival female facepainting calle mujer belgium belgique artistic retrato femme cara young belgi\u00eb diversity bruxelles ciudad social parade carnaval metropolis bruselas rue belgica carrer journalism ville visage dona 2010 reportage periodismo zinneke retrat giornalismo intercultural journalisme reportaje diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel kidspaintedfaces \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 facepaintingideasforkids \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 16:04:23", "license": "1", "title": "Zinneke 2010 < Sur un plateau \u00ac 9297", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4776185097_1e61e2857d_o.jpg", "secret": "86681c55f0", "media": "photo", "latitude": "0", "id": "4776185097", "tags": "life street city brussels people urban art public girl festival calle strada child belgium belgique grandplace artistic young belgi\u00eb diversity bruxelles ciudad social menschen parade personas persone stadt metropolis bruselas rue brussel belgica personnes carrer espace journalism ville grotemarkt j\u00f3venes junge joven 2010 reportage citt\u00e0 periodismo giovani zinneke \u4eba straat jeune giornalismo \u043b\u044e\u0434\u0438 intercultural journalisme reportaje strase diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 16:04:49", "license": "1", "title": "Zinneke 2010 < Sur un plateau \u00ac 9302", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4776818838_635112db7c_o.jpg", "secret": "7433254e59", "media": "photo", "latitude": "0", "id": "4776818838", "tags": "life street city brussels people urban art public girl festival calle strada child belgium belgique grandplace artistic young belgi\u00eb diversity bruxelles ciudad social menschen parade personas persone stadt metropolis bruselas rue brussel belgica personnes carrer espace journalism ville grotemarkt j\u00f3venes junge joven 2010 reportage citt\u00e0 periodismo giovani zinneke \u4eba straat jeune giornalismo \u043b\u044e\u0434\u0438 intercultural journalisme reportaje strase diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 16:04:51", "license": "1", "title": "Zinneke 2010 < Sur un plateau \u00ac 9303", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4776819300_74f193346d_o.jpg", "secret": "eb41b6e973", "media": "photo", "latitude": "0", "id": "4776819300", "tags": "life street carnival brussels people urban woman art festival donna calle mujer belgium belgique grandplace artistic femme mulher young belgi\u00eb diversity bruxelles ciudad social parade carnaval metropolis bruselas frau rue belgica carrer journalism ville grotemarkt dona reportage periodismo zinneke giornalismo \u0436\u0435\u043d\u0430 intercultural \u0436\u0435\u043d\u0449\u0438\u043d\u0430 journalisme reportaje diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 16:05:02", "license": "1", "title": "Zinneke 2010 < Sur un plateau \u00ac 9305", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4776185941_a12da93349_o.jpg", "secret": "0d7a735c9d", "media": "photo", "latitude": "0", "id": "4776185941", "tags": "life street carnival brussels portrait people urban art girl face festival calle mujer child belgium belgique grandplace artistic retrato femme cara young belgi\u00eb diversity bruxelles ciudad social parade carnaval metropolis bruselas rue belgica carrer journalism ville grotemarkt visage dona reportage periodismo zinneke retrat giornalismo intercultural journalisme reportaje diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 16:05:04", "license": "1", "title": "Zinneke 2010 < Sur un plateau \u00ac 9306c", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4776819578_ffd6d83fa9_o.jpg", "secret": "58213f5102", "media": "photo", "latitude": "0", "id": "4776819578", "tags": "life street carnival brussels people urban art girl festival calle mujer child belgium belgique grandplace artistic sensitive femme young belgi\u00eb diversity bruxelles ciudad social parade carnaval metropolis bruselas rue belgica carrer tender journalism ville grotemarkt dona reportage periodismo zinneke giornalismo intercultural journalisme reportaje diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 16:05:06", "license": "1", "title": "Zinneke 2010 < Servi sur un plateau \u00ac 9307b", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4778841587_3cd6273eed_o.jpg", "secret": "11ccf34533", "media": "photo", "latitude": "0", "id": "4778841587", "tags": "life street city brussels portrait people urban art public face festival calle kid strada child belgium belgique artistic retrato cara young belgi\u00eb diversity bruxelles ciudad social menschen parade personas persone stadt metropolis bruselas tension rue brussel belgica personnes carrer tender espace ville j\u00f3venes junge visage joven 2010 citt\u00e0 giovani zinneke \u4eba straat retrat jeune \u043b\u044e\u0434\u0438 intercultural strase diversit\u00e9 zinnekeparade zinnekesparade interculturel belgi\u00ebn socioartistic"}, {"datetaken": "2010-05-22 16:05:34", "license": "1", "title": "Zinneke 2010 < Servi sur un plateau \u00ac 9309b", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4778841773_1b53563a4e_o.jpg", "secret": "9169de8837", "media": "photo", "latitude": "0", "id": "4778841773", "tags": "life street carnival brussels portrait people urban woman art face festival female calle mujer artistic sensitive retrato femme cara young diversity bruxelles ciudad social parade carnaval metropolis bruselas tension rue belgica carrer tender journalism ville visage dona reportage periodismo zinneke retrat giornalismo intercultural journalisme reportaje diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 16:05:40", "license": "1", "title": "Zinneke 2010 < Servi sur un plateau \u00ac 9310", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4778841969_b05a68a8c1_o.jpg", "secret": "b47da6e610", "media": "photo", "latitude": "0", "id": "4778841969", "tags": "life street carnival brussels portrait people urban musician music woman playing art festival female calle mujer artistic femme young bodylanguage diversity bruxelles ciudad social parade carnaval metropolis bruselas tension rue belgica carrer journalism ville dona reportage periodismo zinneke giornalismo intercultural journalisme reportaje diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 16:05:43", "license": "1", "title": "Zinneke 2010 < Servi sur un plateau \u00ac 9312", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4779475658_26cf4099a5_o.jpg", "secret": "33204bb76f", "media": "photo", "latitude": "0", "id": "4779475658", "tags": "life street city brussels people urban music man male art public festival calle samba strada belgium belgique artistic young belgi\u00eb bodylanguage diversity bruxelles ciudad social menschen parade personas persone stadt brazilian metropolis bruselas rue brussel belgica personnes carrer espace journalism ville j\u00f3venes junge joven 2010 reportage citt\u00e0 periodismo giovani zinneke \u4eba straat jeune giornalismo \u043b\u044e\u0434\u0438 intercultural journalisme reportaje strase diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 16:05:48", "license": "1", "title": "Zinneke 2010 < Servi sur un plateu \u00ac 9314", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4779664100_e74ebde791_o.jpg", "secret": "44b44a1f5e", "media": "photo", "latitude": "0", "id": "4779664100", "tags": "life street carnival brussels portrait people urban woman art festival female calle mujer artistic sensitive femme young diversity bruxelles ciudad social parade carnaval metropolis bruselas rue belgica carrer tender journalism ville dona reportage periodismo zinneke giornalismo intercultural journalisme reportaje diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 16:06:06", "license": "1", "title": "Zinneke 2010 < Servi sur un plateu \u00ac 9317b", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4779030639_b7a7a5bd64_o.jpg", "secret": "d59684d891", "media": "photo", "latitude": "0", "id": "4779030639", "tags": "life street carnival light shadow brussels people urban woman art festival tattoo female donna calle mujer arm artistic sensitive femme mulher young diversity bruxelles ciudad social parade carnaval metropolis bruselas frau shoulder rue belgica carrer tender journalism ville dona reportage periodismo zinneke giornalismo \u50cf \u0436\u0435\u043d\u0430 weiblich intercultural \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine journalisme reportaje \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 socioartistic \u65b0\u95fb\u5b66 \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u5973\u6027femminile \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 16:06:06", "license": "1", "title": "Zinneke 2010 < Servi sur un plateu \u00ac 9317c", "text": "", "album_id": "72157624455335016", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4779664536_62a8fe6281_o.jpg", "secret": "384898f1dc", "media": "photo", "latitude": "0", "id": "4779664536", "tags": "life street carnival brussels portrait people urban woman art face festival female calle mujer artistic sensitive retrato femme cara young diversity bruxelles ciudad social parade carnaval metropolis bruselas rue belgica carrer tender journalism ville visage dona reportage periodismo zinneke retrat giornalismo intercultural journalisme reportaje diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-12-03 19:02:44", "license": "1", "title": "TV tower", "text": "", "album_id": "72157626193593404", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5019/5496829050_938243e8e2_o.jpg", "secret": "0024db7423", "media": "photo", "latitude": "0", "id": "5496829050", "tags": "bw berlin tvtower"}, {"datetaken": "2010-12-03 20:01:26", "license": "1", "title": "Carnival", "text": "", "album_id": "72157626193593404", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5058/5496829552_8c5fc94790_o.jpg", "secret": "be66b73753", "media": "photo", "latitude": "0", "id": "5496829552", "tags": "carnival berlin"}, {"datetaken": "2010-12-03 20:13:50", "license": "1", "title": "Carnival", "text": "", "album_id": "72157626193593404", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5015/5496237395_d70d6ef976_o.jpg", "secret": "92aac2da75", "media": "photo", "latitude": "0", "id": "5496237395", "tags": "carnival bw berlin"}, {"datetaken": "2010-12-03 20:19:48", "license": "1", "title": "Ferris wheel", "text": "", "album_id": "72157626193593404", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5260/5496829812_518d15c643_o.jpg", "secret": "87fc45c5dd", "media": "photo", "latitude": "0", "id": "5496829812", "tags": "carnival berlin ferriswheel"}, {"datetaken": "2010-12-04 12:19:19", "license": "1", "title": "Gegen nazis", "text": "", "album_id": "72157626193593404", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5294/5496830412_2bce853283_o.jpg", "secret": "ce3bdf62a9", "media": "photo", "latitude": "0", "id": "5496830412", "tags": "bw berlin"}, {"datetaken": "2010-12-04 12:22:29", "license": "1", "title": "Menu", "text": "", "album_id": "72157626193593404", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5013/5496831002_f6da496307_o.jpg", "secret": "ee9eb81bbb", "media": "photo", "latitude": "0", "id": "5496831002", "tags": "bw berlin menu graffiti"}, {"datetaken": "2010-12-04 12:24:55", "license": "1", "title": "Posters in bar", "text": "", "album_id": "72157626193593404", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5011/5496831342_9181395d72_o.jpg", "secret": "a7b956dbf9", "media": "photo", "latitude": "0", "id": "5496831342", "tags": "berlin bar restaurant"}, {"datetaken": "2010-12-05 18:24:38", "license": "1", "title": "Notes", "text": "", "album_id": "72157626193593404", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5058/5496240027_6df710f0ee_o.jpg", "secret": "9df6ab9210", "media": "photo", "latitude": "0", "id": "5496240027", "tags": "berlin notebook molenskine"}, {"datetaken": "2010-12-05 18:35:23", "license": "1", "title": "Subway station", "text": "", "album_id": "72157626193593404", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5058/5496832748_46f28c9760_o.jpg", "secret": "8a26f91f20", "media": "photo", "latitude": "0", "id": "5496832748", "tags": "bw berlin subway"}, {"datetaken": "2010-12-05 18:35:39", "license": "1", "title": "We", "text": "", "album_id": "72157626193593404", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5256/5496241335_c1c36688ea_o.jpg", "secret": "fa69e3e109", "media": "photo", "latitude": "0", "id": "5496241335", "tags": "bw berlin subway"}, {"datetaken": "2010-12-05 18:36:08", "license": "1", "title": "Subway station", "text": "", "album_id": "72157626193593404", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5220/5496833534_a62cd78eae_o.jpg", "secret": "228c495b8e", "media": "photo", "latitude": "0", "id": "5496833534", "tags": "berlin lights"}, {"datetaken": "2010-12-05 18:38:22", "license": "1", "title": "Subway station", "text": "", "album_id": "72157626193593404", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5217/5496834072_f48c689226_o.jpg", "secret": "5229314704", "media": "photo", "latitude": "0", "id": "5496834072", "tags": "berlin station"}, {"datetaken": "2010-12-05 18:38:47", "license": "1", "title": "Subway", "text": "", "album_id": "72157626193593404", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5132/5496242775_685a8b4318_o.jpg", "secret": "8c91935802", "media": "photo", "latitude": "0", "id": "5496242775", "tags": "bw berlin"}, {"datetaken": "2010-07-04 18:54:25", "license": "3", "title": "Cobra Rollercoaster", "text": "", "album_id": "72157624300939949", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4762365603_45dcf32366_o.jpg", "secret": "ce5b62ac8d", "media": "photo", "latitude": "0", "id": "4762365603", "tags": "carnival mo willa webstergroves henske"}, {"datetaken": "2010-07-04 18:54:42", "license": "3", "title": "Cobra Rollercoaster", "text": "", "album_id": "72157624300939949", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4763002610_68085ce5a4_o.jpg", "secret": "9c163660e5", "media": "photo", "latitude": "0", "id": "4763002610", "tags": "carnival mo willa webstergroves henske"}, {"datetaken": "2010-07-04 18:55:08", "license": "3", "title": "Cobra Rollercoaster", "text": "", "album_id": "72157624300939949", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4763003410_bb648013bf_o.jpg", "secret": "ac684f16f9", "media": "photo", "latitude": "0", "id": "4763003410", "tags": "carnival mo willa webstergroves henske"}, {"datetaken": "2010-07-04 18:57:30", "license": "3", "title": "Willa and Lucy", "text": "", "album_id": "72157624300939949", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4762368401_cf1f655660_o.jpg", "secret": "a0b3a0d634", "media": "photo", "latitude": "0", "id": "4762368401", "tags": "carnival mo willa webstergroves henske"}, {"datetaken": "2010-07-04 18:57:36", "license": "3", "title": "Willa and Lucy", "text": "", "album_id": "72157624300939949", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4762369439_251ae7f765_o.jpg", "secret": "c4aa1128c7", "media": "photo", "latitude": "0", "id": "4762369439", "tags": "carnival mo willa webstergroves henske"}, {"datetaken": "2010-07-04 19:28:17", "license": "3", "title": "Willa and Lucy", "text": "", "album_id": "72157624300939949", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4762370339_a0573a7a4b_o.jpg", "secret": "0e8727574b", "media": "photo", "latitude": "0", "id": "4762370339", "tags": "carnival mo willa webstergroves henske"}, {"datetaken": "2010-07-04 19:37:42", "license": "3", "title": "Willa and Lucy", "text": "", "album_id": "72157624300939949", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4762371581_b6d323287f_o.jpg", "secret": "2f69b08762", "media": "photo", "latitude": "0", "id": "4762371581", "tags": "carnival mo willa webstergroves henske"}, {"datetaken": "2010-07-04 19:40:48", "license": "3", "title": "Willa and Bill", "text": "", "album_id": "72157624300939949", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4762372623_0a09a1ed86_o.jpg", "secret": "6b4471e411", "media": "photo", "latitude": "0", "id": "4762372623", "tags": "carnival mo willa webstergroves henske"}, {"datetaken": "2010-07-04 19:40:55", "license": "3", "title": "Willa and Bill", "text": "", "album_id": "72157624300939949", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4118/4763009886_8e8d38f1c2_o.jpg", "secret": "50627b9065", "media": "photo", "latitude": "0", "id": "4763009886", "tags": "carnival mo willa webstergroves henske"}, {"datetaken": "2010-07-04 19:41:02", "license": "3", "title": "Willa and Bill", "text": "", "album_id": "72157624300939949", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4763011058_b87d5f9c75_o.jpg", "secret": "f0318286cf", "media": "photo", "latitude": "0", "id": "4763011058", "tags": "carnival mo willa webstergroves henske"}, {"datetaken": "2009-02-19 17:59:17", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 09", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4247774341_4983f7dd33_o.jpg", "secret": "8931ba370a", "media": "photo", "latitude": "0", "id": "4247774341", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 17:59:46", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 10", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2694/4247774517_ace5279535_o.jpg", "secret": "9f22c0640e", "media": "photo", "latitude": "0", "id": "4247774517", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 17:59:59", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 11", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4248547488_3786fce465_o.jpg", "secret": "f0a6dd7147", "media": "photo", "latitude": "0", "id": "4248547488", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:00:29", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 12", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4248547618_b0c7a897c8_o.jpg", "secret": "03e7d3be27", "media": "photo", "latitude": "0", "id": "4248547618", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:03:43", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 13", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2773/4247774941_666814c984_o.jpg", "secret": "ff7db048f0", "media": "photo", "latitude": "0", "id": "4247774941", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:09:16", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 14", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4247775129_9e2605028a_o.jpg", "secret": "0a434cea05", "media": "photo", "latitude": "0", "id": "4247775129", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:10:35", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 15", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4247775255_675230a43c_o.jpg", "secret": "841f1bc293", "media": "photo", "latitude": "0", "id": "4247775255", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:10:52", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 16", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4248548276_a1d10440c5_o.jpg", "secret": "4d2e68581d", "media": "photo", "latitude": "0", "id": "4248548276", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:13:07", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 17", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4248548398_e90a5eaa4e_o.jpg", "secret": "b3749f4e23", "media": "photo", "latitude": "0", "id": "4248548398", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:16:01", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 18", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4248548616_2273ce2b4b_o.jpg", "secret": "1018026968", "media": "photo", "latitude": "0", "id": "4248548616", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:19:13", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 19", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4247775993_8e77486333_o.jpg", "secret": "b69a256f49", "media": "photo", "latitude": "0", "id": "4247775993", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:19:42", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 20", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4248549048_05ee5fbae4_o.jpg", "secret": "9b694fdf66", "media": "photo", "latitude": "0", "id": "4248549048", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:20:09", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 21", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2673/4247776389_22d4d27fc5_o.jpg", "secret": "857aab2255", "media": "photo", "latitude": "0", "id": "4247776389", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:20:43", "license": "4", "title": "Parade Chaos then Muses 01", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2508/4247776591_a4d8bc26a1_o.jpg", "secret": "a7d8c742b2", "media": "photo", "latitude": "0", "id": "4247776591", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:36:09", "license": "4", "title": "Parade Chaos then Muses 02", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4247776743_c954815632_o.jpg", "secret": "2fbd74fb9b", "media": "photo", "latitude": "0", "id": "4247776743", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:46:48", "license": "4", "title": "Parade Chaos then Muses 03", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4247777101_9ec687603f_o.jpg", "secret": "41ec59fd59", "media": "photo", "latitude": "0", "id": "4247777101", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:52:42", "license": "4", "title": "Parade Chaos then Muses 04", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4247777227_23539dfcd0_o.jpg", "secret": "bd08105806", "media": "photo", "latitude": "0", "id": "4247777227", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:53:54", "license": "4", "title": "Parade Chaos then Muses 05", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4248550338_863ff5dc96_o.jpg", "secret": "9db4f259f4", "media": "photo", "latitude": "0", "id": "4248550338", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:56:33", "license": "4", "title": "Parade Chaos then Muses 06", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2670/4248550542_94d483d09e_o.jpg", "secret": "188455dc97", "media": "photo", "latitude": "0", "id": "4248550542", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:58:28", "license": "4", "title": "Parade Chaos then Muses 07", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4248550754_b5c7fb9a59_o.jpg", "secret": "a7a5e496e6", "media": "photo", "latitude": "0", "id": "4248550754", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 18:58:57", "license": "4", "title": "Parade Chaos then Muses 08", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4248550888_f8103186fe_o.jpg", "secret": "f3c759e5e5", "media": "photo", "latitude": "0", "id": "4248550888", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 19:13:18", "license": "4", "title": "Parade Chaos then Muses 09", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2717/4247778291_c880512f08_o.jpg", "secret": "6aeef7e88c", "media": "photo", "latitude": "0", "id": "4247778291", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 19:13:50", "license": "4", "title": "Parade Chaos then Muses 10", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2540/4247778509_bdb8422bb1_o.jpg", "secret": "36c0492113", "media": "photo", "latitude": "0", "id": "4247778509", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 19:20:38", "license": "4", "title": "Parade Chaos then Muses 11", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4248551734_ae40ececda_o.jpg", "secret": "fe03a74a5c", "media": "photo", "latitude": "0", "id": "4248551734", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 19:24:38", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 02", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2796/4247778915_50a5c2ba64_o.jpg", "secret": "720e0e7057", "media": "photo", "latitude": "0", "id": "4247778915", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 19:28:44", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 03", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4248552156_4309a41e25_o.jpg", "secret": "492e948667", "media": "photo", "latitude": "0", "id": "4248552156", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 19:29:13", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 04", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4248552488_cb415fbf29_o.jpg", "secret": "2a7f1982af", "media": "photo", "latitude": "0", "id": "4248552488", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 19:49:30", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 05", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4248552652_a64c65c2e1_o.jpg", "secret": "fd4bc28599", "media": "photo", "latitude": "0", "id": "4248552652", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 19:52:00", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 06", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4247779931_e5f4a5ec54_o.jpg", "secret": "304b3af0e9", "media": "photo", "latitude": "0", "id": "4247779931", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 19:52:47", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 07", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4247780121_d5d0255481_o.jpg", "secret": "be07fd42b5", "media": "photo", "latitude": "0", "id": "4247780121", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 19:55:51", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 08", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2757/4248553362_4d67500b3a_o.jpg", "secret": "e1078968f1", "media": "photo", "latitude": "0", "id": "4248553362", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2009-02-19 20:09:58", "license": "4", "title": "Mayor's Mardi Gras Ball at Gallier Hall 01", "text": "", "album_id": "72157623145768674", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2681/4248553722_85fcfe0abf_o.jpg", "secret": "96785bc90d", "media": "photo", "latitude": "0", "id": "4248553722", "tags": "new city carnival music fun hall beads orleans ray chaos mayor fat feathers celebration 09 tuesday carnaval gras nola tradition mardigras mardi 2009 krewe lent cresent nagin gallier"}, {"datetaken": "2010-05-29 19:03:20", "license": "3", "title": "IMG_6331", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4865146200_99e57099e6_o.jpg", "secret": "04654c62d8", "media": "photo", "latitude": "0", "id": "4865146200", "tags": "venue"}, {"datetaken": "2010-05-29 19:13:44", "license": "3", "title": "IMG_6341", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4864529305_1b4d325bd8_o.jpg", "secret": "96345f5858", "media": "photo", "latitude": "0", "id": "4864529305", "tags": "balloon"}, {"datetaken": "2010-05-29 19:25:19", "license": "3", "title": "IMG_6344", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4864530897_6a3045a6b5_o.jpg", "secret": "dbf2cc16ba", "media": "photo", "latitude": "0", "id": "4864530897", "tags": "balloon"}, {"datetaken": "2010-05-29 19:25:50", "license": "3", "title": "IMG_6346", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4865151976_21be705cbc_o.jpg", "secret": "481cd6c40c", "media": "photo", "latitude": "0", "id": "4865151976", "tags": "balloon"}, {"datetaken": "2010-05-29 19:30:54", "license": "3", "title": "IMG_6359", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4864534995_e1777bc511_o.jpg", "secret": "fa675f592a", "media": "photo", "latitude": "0", "id": "4864534995", "tags": "musicians"}, {"datetaken": "2010-05-29 19:32:52", "license": "3", "title": "IMG_6395-cc", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4864537841_81c9e7a8be_o.jpg", "secret": "1b195b8ce3", "media": "photo", "latitude": "0", "id": "4864537841", "tags": ""}, {"datetaken": "2010-05-29 19:33:11", "license": "3", "title": "IMG_6399", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4864540041_65b0894aa2_o.jpg", "secret": "e0c28366af", "media": "photo", "latitude": "0", "id": "4864540041", "tags": "balloon"}, {"datetaken": "2010-05-29 19:33:57", "license": "3", "title": "IMG_6402", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4864541991_7949d475f2_o.jpg", "secret": "cf0697e1be", "media": "photo", "latitude": "0", "id": "4864541991", "tags": "musicians"}, {"datetaken": "2010-05-29 19:35:55", "license": "3", "title": "IMG_6412", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4864543867_48c04aee1b_o.jpg", "secret": "f8d595ac22", "media": "photo", "latitude": "0", "id": "4864543867", "tags": "musician"}, {"datetaken": "2010-05-29 19:36:38", "license": "3", "title": "IMG_6421", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4864545607_9aa93fe18f_o.jpg", "secret": "f9a3242529", "media": "photo", "latitude": "0", "id": "4864545607", "tags": "musician"}, {"datetaken": "2010-05-29 19:36:55", "license": "3", "title": "IMG_6431", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4865167128_ef4e784223_o.jpg", "secret": "72b822b4b6", "media": "photo", "latitude": "0", "id": "4865167128", "tags": "musician"}, {"datetaken": "2010-05-29 19:37:05", "license": "3", "title": "IMG_6439", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4864550179_0b9803169b_o.jpg", "secret": "4ed0247f22", "media": "photo", "latitude": "0", "id": "4864550179", "tags": "musicians"}, {"datetaken": "2010-05-29 19:37:40", "license": "3", "title": "IMG_6449", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4865171480_65dbce1b0c_o.jpg", "secret": "a7d9eb0b75", "media": "photo", "latitude": "0", "id": "4865171480", "tags": "musicians"}, {"datetaken": "2010-05-29 19:37:42", "license": "3", "title": "IMG_6451", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4864553663_2649b44f02_o.jpg", "secret": "1bf2b1a4bd", "media": "photo", "latitude": "0", "id": "4864553663", "tags": "musicians"}, {"datetaken": "2010-05-29 19:37:48", "license": "3", "title": "IMG_6458", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4865175348_127ed4a995_o.jpg", "secret": "dfd0a33ba5", "media": "photo", "latitude": "0", "id": "4865175348", "tags": "musicians"}, {"datetaken": "2010-05-29 19:37:52", "license": "3", "title": "IMG_6462", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4865177492_1c5469c31a_o.jpg", "secret": "4be21df766", "media": "photo", "latitude": "0", "id": "4865177492", "tags": "musicians"}, {"datetaken": "2010-05-29 19:37:55", "license": "3", "title": "IMG_6463", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4865179508_ce5992cce2_o.jpg", "secret": "1569957825", "media": "photo", "latitude": "0", "id": "4865179508", "tags": "musicians"}, {"datetaken": "2010-05-29 19:38:42", "license": "3", "title": "IMG_6476", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4864562107_2f2d717f4d_o.jpg", "secret": "28fe26daee", "media": "photo", "latitude": "0", "id": "4864562107", "tags": "musicians"}, {"datetaken": "2010-05-29 19:41:41", "license": "3", "title": "IMG_6495", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4864564141_52890f5b7f_o.jpg", "secret": "5bb99c56e9", "media": "photo", "latitude": "0", "id": "4864564141", "tags": "musicians"}, {"datetaken": "2010-05-29 19:43:09", "license": "3", "title": "IMG_6516", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4864566721_4ba68dc022_o.jpg", "secret": "8e2705c59f", "media": "photo", "latitude": "0", "id": "4864566721", "tags": ""}, {"datetaken": "2010-05-29 19:47:42", "license": "3", "title": "IMG_6562", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4114/4865188320_e5036aac63_o.jpg", "secret": "65b0e55e51", "media": "photo", "latitude": "0", "id": "4865188320", "tags": "musicians"}, {"datetaken": "2010-05-29 19:51:11", "license": "3", "title": "IMG_6584", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4864571399_a9fd5f3f44_o.jpg", "secret": "29a1c986ba", "media": "photo", "latitude": "0", "id": "4864571399", "tags": "musicians"}, {"datetaken": "2010-05-29 20:03:35", "license": "3", "title": "IMG_6592", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4864574257_11365935e2_o.jpg", "secret": "4d1cf93c05", "media": "photo", "latitude": "0", "id": "4864574257", "tags": "musicians"}, {"datetaken": "2010-05-29 20:06:31", "license": "3", "title": "IMG_6622", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4865195830_18bd293cb1_o.jpg", "secret": "cc32bb6f37", "media": "photo", "latitude": "0", "id": "4865195830", "tags": "musicians"}, {"datetaken": "2010-05-29 20:22:50", "license": "3", "title": "IMG_6638", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4865198678_b5caaabe11_o.jpg", "secret": "4fb6447fd1", "media": "photo", "latitude": "0", "id": "4865198678", "tags": "shirt rebel child flag"}, {"datetaken": "2010-05-29 20:28:16", "license": "3", "title": "IMG_6676", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4865201460_5fdf910acc_o.jpg", "secret": "7ae0c790fb", "media": "photo", "latitude": "0", "id": "4865201460", "tags": "musicians"}, {"datetaken": "2010-05-29 20:29:53", "license": "3", "title": "IMG_6692", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4864584101_967b2aebc4_o.jpg", "secret": "1e037e7228", "media": "photo", "latitude": "0", "id": "4864584101", "tags": "musicians"}, {"datetaken": "2010-05-29 20:30:36", "license": "3", "title": "IMG_6702", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4864585821_b1b26818c1_o.jpg", "secret": "1ae5ed8627", "media": "photo", "latitude": "0", "id": "4864585821", "tags": "musician"}, {"datetaken": "2010-05-29 21:22:20", "license": "3", "title": "IMG_6751", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4864587695_c7d2fb639c_o.jpg", "secret": "623ee21903", "media": "photo", "latitude": "0", "id": "4864587695", "tags": "musicians photo"}, {"datetaken": "2010-05-29 21:28:59", "license": "3", "title": "IMG_6755", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4865209436_df85cf1da5_o.jpg", "secret": "5434ba1f4d", "media": "photo", "latitude": "0", "id": "4865209436", "tags": "musicians"}, {"datetaken": "2010-05-29 21:29:06", "license": "3", "title": "IMG_6760", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4864592025_a5da3942f3_o.jpg", "secret": "56c201b1b4", "media": "photo", "latitude": "0", "id": "4864592025", "tags": "musicians"}, {"datetaken": "2010-05-29 21:36:21", "license": "3", "title": "IMG_6764", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4864595225_74075d5956_o.jpg", "secret": "faee408785", "media": "photo", "latitude": "0", "id": "4864595225", "tags": "carnival child"}, {"datetaken": "2010-05-29 21:38:03", "license": "3", "title": "IMG_6792", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4118/4865217580_4b27c01a82_o.jpg", "secret": "7b600524b1", "media": "photo", "latitude": "0", "id": "4865217580", "tags": "carnival child"}, {"datetaken": "2010-05-29 21:43:45", "license": "3", "title": "IMG_6818", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4865219802_2b9deafc2e_o.jpg", "secret": "b3918f2860", "media": "photo", "latitude": "0", "id": "4865219802", "tags": "carnival child"}, {"datetaken": "2010-05-29 21:52:52", "license": "3", "title": "IMG_6825-e", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4864602621_0d3c4b3253_o.jpg", "secret": "1ff5ed7c0c", "media": "photo", "latitude": "0", "id": "4864602621", "tags": "carnival child"}, {"datetaken": "2010-05-29 21:58:56", "license": "3", "title": "IMG_6834-e", "text": "", "album_id": "72157624538698347", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4864604719_49ac9d9a75_o.jpg", "secret": "a097a64bc8", "media": "photo", "latitude": "0", "id": "4864604719", "tags": "carnival child"}, {"datetaken": "2010-11-04 10:02:44", "license": "2", "title": "La Vie En Rose Vase", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/5150149537_3693a7fe80_o.jpg", "secret": "ea4e959986", "media": "photo", "latitude": "0", "id": "5150149537", "tags": "horseracing racehorse thoroughbred flemington flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:18:04", "license": "2", "title": "La Vie En Rose Vase", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1105/5150761110_69267c65f7_o.jpg", "secret": "f9a1d6135c", "media": "photo", "latitude": "0", "id": "5150761110", "tags": "bay horseracing racehorse thoroughbred flemington baythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:18:11", "license": "2", "title": "La Vie En Rose Vase", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/5150150077_5535bf9c8e_o.jpg", "secret": "317fa45379", "media": "photo", "latitude": "0", "id": "5150150077", "tags": "bay horseracing racehorse thoroughbred flemington baythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:18:18", "license": "2", "title": "La Vie En Rose Vase", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1247/5150761608_f9969c670f_o.jpg", "secret": "c7bb2cf6b3", "media": "photo", "latitude": "0", "id": "5150761608", "tags": "chestnut horseracing racehorse thoroughbred flemington chestnutthoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:18:33", "license": "2", "title": "La Vie En Rose Vase", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1223/5150761886_6da3de44e0_o.jpg", "secret": "043380cf26", "media": "photo", "latitude": "0", "id": "5150761886", "tags": "bay horseracing racehorse thoroughbred flemington baythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:18:43", "license": "2", "title": "La Vie En Rose Vase", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1141/5150150833_3fcb65619d_o.jpg", "secret": "d7008998c7", "media": "photo", "latitude": "0", "id": "5150150833", "tags": "bay horseracing racehorse thoroughbred flemington baythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:18:52", "license": "2", "title": "La Vie En Rose Vase", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1383/5150762366_109621c353_o.jpg", "secret": "37d8328d7b", "media": "photo", "latitude": "0", "id": "5150762366", "tags": "chestnut horseracing racehorse thoroughbred flemington chestnutthoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:19:00", "license": "2", "title": "La Vie En Rose Vase - #12", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4147/5150762616_93de64e8d1_o.jpg", "secret": "7742844532", "media": "photo", "latitude": "0", "id": "5150762616", "tags": "grey gray horseracing racehorse thoroughbred flemington greythoroughbred graythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:19:17", "license": "2", "title": "La Vie En Rose Vase - #12", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1058/5150762902_9181c44999_o.jpg", "secret": "cba165f532", "media": "photo", "latitude": "0", "id": "5150762902", "tags": "grey gray horseracing racehorse thoroughbred flemington greythoroughbred graythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:19:22", "license": "2", "title": "La Vie En Rose Vase - #12", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1311/5150763176_cf221dc07c_o.jpg", "secret": "96c13313b9", "media": "photo", "latitude": "0", "id": "5150763176", "tags": "grey gray horseracing racehorse thoroughbred flemington greythoroughbred graythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:19:25", "license": "2", "title": "La Vie En Rose Vase - #121", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/5150152117_47946565a7_o.jpg", "secret": "ecde7e7746", "media": "photo", "latitude": "0", "id": "5150152117", "tags": "grey gray horseracing racehorse thoroughbred flemington greythoroughbred graythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:19:31", "license": "2", "title": "La Vie En Rose Vase - #12", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1231/5150152355_7232db99fd_o.jpg", "secret": "542d3163e9", "media": "photo", "latitude": "0", "id": "5150152355", "tags": "grey gray horseracing racehorse thoroughbred flemington greythoroughbred graythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:20:24", "license": "2", "title": "La Vie En Rose Vase - #12", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1120/5150152689_ffa6946a70_o.jpg", "secret": "f2ea6af670", "media": "photo", "latitude": "0", "id": "5150152689", "tags": "grey gray horseracing racehorse thoroughbred flemington greythoroughbred graythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:20:31", "license": "2", "title": "La Vie En Rose Vase - #12", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1164/5150764264_00d25a57d5_o.jpg", "secret": "7187ac40d5", "media": "photo", "latitude": "0", "id": "5150764264", "tags": "grey gray horseracing racehorse thoroughbred flemington greythoroughbred graythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:20:34", "license": "2", "title": "La Vie En Rose Vase - #12", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1181/5150764548_897fcaf2e9_o.jpg", "secret": "c64b3f3527", "media": "photo", "latitude": "0", "id": "5150764548", "tags": "grey gray horseracing racehorse thoroughbred flemington greythoroughbred graythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:20:37", "license": "2", "title": "La Vie En Rose Vase - #12", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1111/5150153485_c1bdcc3cb0_o.jpg", "secret": "c87b9d1b1f", "media": "photo", "latitude": "0", "id": "5150153485", "tags": "grey gray horseracing racehorse thoroughbred flemington greythoroughbred graythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:20:48", "license": "2", "title": "La Vie En Rose Vase - #12", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4086/5150765046_f03e39fa36_o.jpg", "secret": "59111a97a7", "media": "photo", "latitude": "0", "id": "5150765046", "tags": "grey gray horseracing racehorse thoroughbred flemington greythoroughbred graythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:20:51", "license": "2", "title": "La Vie En Rose Vase - #12", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/5150153913_57446f4524_o.jpg", "secret": "626bebaeef", "media": "photo", "latitude": "0", "id": "5150153913", "tags": "grey gray horseracing racehorse thoroughbred flemington greythoroughbred graythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:55:26", "license": "2", "title": "La Vie En Rose Vase - #1", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1208/5148923300_a5b5a34a74_o.jpg", "secret": "64be37e09f", "media": "photo", "latitude": "0", "id": "5148923300", "tags": "chestnut horseracing racehorse thoroughbred flemington chestnutthoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:55:36", "license": "2", "title": "La Vie En Rose Vase - #2", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/5148318267_082f27516c_o.jpg", "secret": "a38b0e46a2", "media": "photo", "latitude": "0", "id": "5148318267", "tags": "brown bay horseracing racehorse thoroughbred flemington baythoroughbred brownthoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:55:42", "license": "2", "title": "La Vie En Rose Vase - #9", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/5148924294_d223246181_o.jpg", "secret": "0f74de0626", "media": "photo", "latitude": "0", "id": "5148924294", "tags": "bay horseracing racehorse thoroughbred flemington baythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:55:46", "license": "2", "title": "La Vie En Rose Vase - #10", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/5148319349_60e6837391_o.jpg", "secret": "f263ef6246", "media": "photo", "latitude": "0", "id": "5148319349", "tags": "brown horseracing racehorse thoroughbred flemington brownthoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:55:50", "license": "2", "title": "La Vie En Rose Vase - #4", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4125/5148925352_8fd1500a44_o.jpg", "secret": "c14defd4eb", "media": "photo", "latitude": "0", "id": "5148925352", "tags": "bay horseracing racehorse thoroughbred flemington baythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:55:54", "license": "2", "title": "La Vie En Rose Vase - #5", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/5148925874_b7e67694a3_o.jpg", "secret": "aeccab4bae", "media": "photo", "latitude": "0", "id": "5148925874", "tags": "brown bay horseracing racehorse thoroughbred flemington baythoroughbred brownthoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:55:58", "license": "2", "title": "La Vie En Rose Vase - #11", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/5148320859_8046a9a102_o.jpg", "secret": "fd52b3fde6", "media": "photo", "latitude": "0", "id": "5148320859", "tags": "bay horseracing racehorse thoroughbred flemington baythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:56:01", "license": "2", "title": "La Vie En Rose Vase - #12", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/5148926936_e85756fa2c_o.jpg", "secret": "bfd35ee733", "media": "photo", "latitude": "0", "id": "5148926936", "tags": "grey gray horseracing racehorse thoroughbred flemington greythoroughbred graythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:56:01", "license": "2", "title": "La Vie En Rose Vase - #12", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1239/5149603209_aa064a3753_o.jpg", "secret": "e2dee0c4ee", "media": "photo", "latitude": "0", "id": "5149603209", "tags": "grey gray horseracing racehorse thoroughbred flemington greythoroughbred graythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:56:06", "license": "2", "title": "La Vie En Rose Vase - #13", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/5148927442_a7365e1480_o.jpg", "secret": "3e43bff53f", "media": "photo", "latitude": "0", "id": "5148927442", "tags": "bay horseracing racehorse thoroughbred flemington baythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:56:24", "license": "2", "title": "La Vie En Rose Vase - #14", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4091/5148322485_d23c02ffc0_o.jpg", "secret": "cd771987d0", "media": "photo", "latitude": "0", "id": "5148322485", "tags": "chestnut horseracing racehorse thoroughbred flemington chestnutthoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:56:30", "license": "2", "title": "La Vie En Rose Vase - #15", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4092/5148928584_b4626b1f53_o.jpg", "secret": "92c726bb6a", "media": "photo", "latitude": "0", "id": "5148928584", "tags": "bay horseracing racehorse thoroughbred flemington baythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:56:34", "license": "2", "title": "La Vie En Rose Vase - #17", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1242/5148929114_ab96304a57_o.jpg", "secret": "0fe04f0dcc", "media": "photo", "latitude": "0", "id": "5148929114", "tags": "chestnut horseracing racehorse thoroughbred flemington chestnutthoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 10:58:29", "license": "2", "title": "La Vie En Rose Vase", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/5150765562_2dfe0f9162_o.jpg", "secret": "457478fbe6", "media": "photo", "latitude": "0", "id": "5150765562", "tags": "horseracing racehorse thoroughbred flemington flemingtonspringcarnival"}, {"datetaken": "2010-11-04 11:17:34", "license": "2", "title": "La Vie En Rose Vase", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1209/5149609011_01b79c0f2a_o.jpg", "secret": "a6788892ff", "media": "photo", "latitude": "0", "id": "5149609011", "tags": "horseracing racehorse thoroughbred flemington flemingtonspringcarnival"}, {"datetaken": "2010-11-04 11:17:38", "license": "2", "title": "La Vie En Rose Vase", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1122/5149609675_6271cc7429_o.jpg", "secret": "8993a49eb2", "media": "photo", "latitude": "0", "id": "5149609675", "tags": "horseracing racehorse thoroughbred flemington flemingtonspringcarnival"}, {"datetaken": "2010-11-04 11:17:51", "license": "2", "title": "La Vie En Rose Vase", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4085/5149611739_750cee4b19_o.jpg", "secret": "6d49143012", "media": "photo", "latitude": "0", "id": "5149611739", "tags": "horseracing racehorse thoroughbred flemington flemingtonspringcarnival"}, {"datetaken": "2010-11-04 11:17:59", "license": "2", "title": "La Vie En Rose Vase", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/5150221462_975d335b4c_o.jpg", "secret": "6222384dde", "media": "photo", "latitude": "0", "id": "5150221462", "tags": "horseracing racehorse thoroughbred flemington flemingtonspringcarnival"}, {"datetaken": "2010-11-04 11:20:00", "license": "2", "title": "La Vie En Rose Vase - #12", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/5148326545_75b91a46ec_o.jpg", "secret": "4cbb44e9a2", "media": "photo", "latitude": "0", "id": "5148326545", "tags": "grey gray horseracing racehorse thoroughbred flemington greythoroughbred graythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 11:20:00", "license": "2", "title": "La Vie En Rose Vase - #12", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1052/5149613439_8cda6b04ac_o.jpg", "secret": "2a810a51df", "media": "photo", "latitude": "0", "id": "5149613439", "tags": "grey gray horseracing racehorse thoroughbred flemington greythoroughbred graythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 11:20:12", "license": "2", "title": "La Vie En Rose Vase - #12", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1152/5148932508_0d58867fb4_o.jpg", "secret": "6e4735904c", "media": "photo", "latitude": "0", "id": "5148932508", "tags": "grey gray horseracing racehorse thoroughbred flemington greythoroughbred graythoroughbred flemingtonspringcarnival"}, {"datetaken": "2010-11-04 11:20:12", "license": "2", "title": "La Vie En Rose Vase - #12", "text": "", "album_id": "72157625323525250", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/5150222926_4fd2e6e161_o.jpg", "secret": "b7980b5e1c", "media": "photo", "latitude": "0", "id": "5150222926", "tags": "grey gray horseracing racehorse thoroughbred flemington greythoroughbred graythoroughbred flemingtonspringcarnival"}, {"datetaken": "2011-03-06 16:23:09", "license": "1", "title": "Watertower", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5052/5503319861_45aa3cc6c0_o.jpg", "secret": "38d032202b", "media": "photo", "latitude": "0", "id": "5503319861", "tags": "geotagged watertower krabbegat 20110306 geo:lat=5148952125874178 geo:lon=4295514305557276"}, {"datetaken": "2011-03-06 16:27:11", "license": "1", "title": "An old cigarette ad", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5098/5503910918_401080f8be_o.jpg", "secret": "6173ea3e8a", "media": "photo", "latitude": "0", "id": "5503910918", "tags": "geotagged ad cigarettes krabbegat 20110306 geo:lat=51497049612660895 geo:lon=4297270708004021"}, {"datetaken": "2011-03-06 16:28:40", "license": "1", "title": "Oh look a train!", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5053/5503911608_842c146eb1_o.jpg", "secret": "f81ee9dda1", "media": "photo", "latitude": "0", "id": "5503911608", "tags": "train geotagged ns krabbegat 20110306 geo:lat=5149791470972319 geo:lon=4296851095735519"}, {"datetaken": "2011-03-06 16:30:26", "license": "1", "title": "Parkvijver", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5100/5503323357_497bfdddae_o.jpg", "secret": "220a8fbbfc", "media": "photo", "latitude": "0", "id": "5503323357", "tags": "geotagged pond krabbegat parkvijver antonvanduinkerkenpark 20110306 geo:lat=5149857313833689 geo:lon=4294695197587998"}, {"datetaken": "2011-03-06 16:30:45", "license": "1", "title": "Birds of a feather", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5171/5503324375_31d9890931_o.jpg", "secret": "96ef799247", "media": "photo", "latitude": "0", "id": "5503324375", "tags": "geotagged krabbegat antonvanduinkerkenpark 20110306 geo:lat=51498376105447235 geo:lon=4294798462635072"}, {"datetaken": "2011-03-06 16:32:49", "license": "1", "title": "Geese", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5054/5503914936_80c538c35e_o.jpg", "secret": "fdfffeaf6d", "media": "photo", "latitude": "0", "id": "5503914936", "tags": "geotagged geese krabbegat antonvanduinkerkenpark 20110306 geo:lat=5149895368244608 geo:lon=4294594022159572"}, {"datetaken": "2011-03-06 16:33:27", "license": "1", "title": "Flamingo goose?", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5014/5503915462_9d0a1b78b1_o.jpg", "secret": "b8b48c0fb5", "media": "photo", "latitude": "0", "id": "5503915462", "tags": "geotagged geese krabbegat antonvanduinkerkenpark 20110306 geo:lat=5149886184595483 geo:lon=42946315730857805"}, {"datetaken": "2011-03-06 16:34:02", "license": "1", "title": "statue", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5131/5503915770_c13c2b754b_o.jpg", "secret": "16f05d803f", "media": "photo", "latitude": "0", "id": "5503915770", "tags": "geotagged krabbegat antonvanduinkerkenpark 20110306 geo:lat=5149899459136895 geo:lon=4294598045473094"}, {"datetaken": "2011-03-06 16:34:38", "license": "1", "title": "Get away from here!", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5174/5503916846_395deeb47c_o.jpg", "secret": "74e2ae5bbb", "media": "photo", "latitude": "0", "id": "5503916846", "tags": "geotagged geese krabbegat antonvanduinkerkenpark 20110306 geo:lat=5149887520400142 geo:lon=42946436430263475"}, {"datetaken": "2011-03-06 16:36:46", "license": "1", "title": "Goose brooding?", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5300/5503917972_915db26338_o.jpg", "secret": "f41b74d639", "media": "photo", "latitude": "0", "id": "5503917972", "tags": "geotagged geese krabbegat antonvanduinkerkenpark 20110306 geo:lat=5149930309026813 geo:lon=4293196559524517"}, {"datetaken": "2011-03-06 16:39:10", "license": "1", "title": "Anton van Duinkerkenpark sightseeing", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5095/5503919422_6e5a156255_o.jpg", "secret": "1db14058e1", "media": "photo", "latitude": "0", "id": "5503919422", "tags": "geotagged krabbegat antonvanduinkerkenpark 20110306 geo:lat=5149835521838056 geo:lon=4292875017196593"}, {"datetaken": "2011-03-06 16:39:13", "license": "1", "title": "Anton van Duinkerkenpark sightseeing", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5179/5503330515_23dd2847c0_o.jpg", "secret": "f373a15751", "media": "photo", "latitude": "0", "id": "5503330515", "tags": "geotagged krabbegat antonvanduinkerkenpark 20110306 geo:lat=5149853221414759 geo:lon=4293634082347808"}, {"datetaken": "2011-03-06 16:40:51", "license": "1", "title": "Welcome guard", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5217/5503331345_5c28b3905c_o.jpg", "secret": "37cf22b694", "media": "photo", "latitude": "0", "id": "5503331345", "tags": "geotagged krabbegat antonvanduinkerkenpark 20110306 geo:lat=51498131468031104 geo:lon=4293408776790557"}, {"datetaken": "2011-03-06 16:41:37", "license": "1", "title": "Eastside v Westside", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5012/5503921728_bd22edeb06_o.jpg", "secret": "3d985eafd9", "media": "photo", "latitude": "0", "id": "5503921728", "tags": "geotagged krabbegat antonvanduinkerkenpark 20110306 geo:lat=5149814566118297 geo:lon=429339670684999"}, {"datetaken": "2011-03-06 16:44:58", "license": "1", "title": "Memorial", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5211/5503332501_a30ec97274_o.jpg", "secret": "9643328f8e", "media": "photo", "latitude": "0", "id": "5503332501", "tags": "geotagged krabbegat antonvanduinkerkenpark 20110306 geo:lat=5149804225657735 geo:lon=429318489699358"}, {"datetaken": "2011-03-06 17:01:29", "license": "1", "title": "De Peperbus", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5135/5503334447_6b0033b510_o.jpg", "secret": "088e9dda1b", "media": "photo", "latitude": "0", "id": "5503334447", "tags": "carnival tower church geotagged peperbus vastenavond krabbegat 20110306 dressedupchurchtower geo:lat=51494318395974915 geo:lon=4286958533729603"}, {"datetaken": "2011-03-06 17:02:37", "license": "1", "title": "People enjoying the vastenavond", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5098/5503925574_b93a01d39a_o.jpg", "secret": "af69dea312", "media": "photo", "latitude": "0", "id": "5503925574", "tags": "carnival geotagged vastenavond krabbegat 20110306 geo:lat=51494543 geo:lon=4287039"}, {"datetaken": "2011-03-06 17:03:07", "license": "1", "title": "De Peperbus", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5295/5503926302_f1cf15c1ac_o.jpg", "secret": "17cbef3d1d", "media": "photo", "latitude": "0", "id": "5503926302", "tags": "carnival tower church geotagged peperbus vastenavond krabbegat 20110306 dressedupchurchtower geo:lat=51494543 geo:lon=4287039"}, {"datetaken": "2011-03-06 17:05:03", "license": "1", "title": "People enjoying the vastenavond", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5052/5503927480_b5794d88c5_o.jpg", "secret": "fe921b2d85", "media": "photo", "latitude": "0", "id": "5503927480", "tags": "carnival geotagged vastenavond krabbegat 20110306 geo:lat=51494543 geo:lon=4287039"}, {"datetaken": "2011-03-06 17:05:05", "license": "1", "title": "People enjoying the vastenavond", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5138/5503339501_c2bc78ffd4_o.jpg", "secret": "6ac74a151d", "media": "photo", "latitude": "0", "id": "5503339501", "tags": "carnival geotagged vastenavond krabbegat 20110306 geo:lat=51494543 geo:lon=4287039"}, {"datetaken": "2011-03-06 17:05:45", "license": "1", "title": "People enjoying the vastenavond", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5134/5503341067_db7996724c_o.jpg", "secret": "9512183e02", "media": "photo", "latitude": "0", "id": "5503341067", "tags": "carnival geotagged vastenavond krabbegat 20110306 geo:lat=51494543 geo:lon=4287039"}, {"datetaken": "2011-03-06 17:06:24", "license": "1", "title": "Drummers of the band Okkus Prebere", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5295/5503341649_b7ec6e4391_o.jpg", "secret": "f339427863", "media": "photo", "latitude": "0", "id": "5503341649", "tags": "carnival geotagged vastenavond krabbegat 20110306 geo:lat=51494543 geo:lon=4287039"}, {"datetaken": "2011-03-06 17:08:28", "license": "1", "title": "People enjoying the vastenavond", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5175/5503342147_e4d23a7d02_o.jpg", "secret": "6758776843", "media": "photo", "latitude": "0", "id": "5503342147", "tags": "carnival geotagged vastenavond krabbegat 20110306 geo:lat=514935759901506 geo:lon=4286133315309485"}, {"datetaken": "2011-03-06 17:10:17", "license": "1", "title": "People enjoying the vastenavond", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5176/5503932538_212c55ac08_o.jpg", "secret": "6fcbc7b2b0", "media": "photo", "latitude": "0", "id": "5503932538", "tags": "carnival geotagged vastenavond krabbegat 20110306 geo:lat=5149374818043886 geo:lon=4283833342258504"}, {"datetaken": "2011-03-06 17:18:15", "license": "1", "title": "You who disappears here // See the no-mans-land full of everyone.", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5135/5503343537_a5b316eea1_o.jpg", "secret": "299e0897e0", "media": "photo", "latitude": "0", "id": "5503343537", "tags": "geotagged poem krabbegat 20110306 geo:lat=5148816447395246 geo:lon=427917474736023"}, {"datetaken": "2011-03-06 17:18:20", "license": "1", "title": "A view over Bergen op Zoom", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5174/5503934374_09506e4f1e_o.jpg", "secret": "665dce25f0", "media": "photo", "latitude": "0", "id": "5503934374", "tags": "geotagged poem peperbus krabbegat 20110306 geo:lat=51488031696997496 geo:lon=42790983044033055"}, {"datetaken": "2011-03-06 17:33:27", "license": "1", "title": "I liked the colours here.", "text": "", "album_id": "72157626210430218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5295/5503935468_a5a3d31503_o.jpg", "secret": "583b985f98", "media": "photo", "latitude": "0", "id": "5503935468", "tags": "geotagged bergenopzoom 20110306 geo:lat=5148201754809205 geo:lon=4291417256448767"}, {"datetaken": "2011-03-06 12:35:28", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5059/5504450918_1a9f50191f_o.jpg", "secret": "36e2295dcc", "media": "photo", "latitude": "-8.014142", "id": "5504450918", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 12:37:04", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5092/5504451496_a4caace3a8_o.jpg", "secret": "2b9e96f681", "media": "photo", "latitude": "-8.014142", "id": "5504451496", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 12:38:17", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5175/5504452198_257ff5fa85_o.jpg", "secret": "5da2172545", "media": "photo", "latitude": "-8.014142", "id": "5504452198", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 12:40:09", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5293/5503862107_0f937e2f00_o.jpg", "secret": "63f052890b", "media": "photo", "latitude": "-8.014142", "id": "5503862107", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 12:42:15", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5253/5504453500_f16a7b4bee_o.jpg", "secret": "7dfab0a958", "media": "photo", "latitude": "-8.014142", "id": "5504453500", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 12:42:29", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5291/5504454214_8835187e3f_o.jpg", "secret": "a5dfa60977", "media": "photo", "latitude": "-8.014142", "id": "5504454214", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 12:43:40", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5220/5504454834_bdcff7b176_o.jpg", "secret": "2364508ab5", "media": "photo", "latitude": "-8.014142", "id": "5504454834", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 12:45:02", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5299/5504455408_db18899af9_o.jpg", "secret": "f037a4d966", "media": "photo", "latitude": "-8.014142", "id": "5504455408", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 12:45:09", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5300/5504455950_27afd1210f_o.jpg", "secret": "0911fbd114", "media": "photo", "latitude": "-8.014142", "id": "5504455950", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 12:47:01", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5212/5504456520_46f1a7a041_o.jpg", "secret": "e8c1d00920", "media": "photo", "latitude": "-8.014142", "id": "5504456520", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 13:01:31", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5099/5504457148_df350e7b77_o.jpg", "secret": "1955ba3019", "media": "photo", "latitude": "-8.014142", "id": "5504457148", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 13:03:28", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5135/5503866845_236e9a14db_o.jpg", "secret": "09f8fd931e", "media": "photo", "latitude": "-8.014142", "id": "5503866845", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 13:10:09", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5257/5503867505_d3b6b002a4_o.jpg", "secret": "8895698a7f", "media": "photo", "latitude": "-8.014142", "id": "5503867505", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 13:11:07", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5016/5504458998_e9edbc95f3_o.jpg", "secret": "84c8ed8583", "media": "photo", "latitude": "-8.014142", "id": "5504458998", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 13:12:12", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5057/5503868681_2d9112a50b_o.jpg", "secret": "6563ceeb25", "media": "photo", "latitude": "-8.014142", "id": "5503868681", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 13:17:37", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5097/5504460124_a53ae50676_o.jpg", "secret": "06ecb7351b", "media": "photo", "latitude": "-8.014142", "id": "5504460124", "tags": "brasil brazil carmo carnaval2011 carnival costumeparty olinda party pernambuco"}, {"datetaken": "2011-03-06 13:17:53", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5013/5504460786_9a9a8c76a5_o.jpg", "secret": "4ecd175caa", "media": "photo", "latitude": "-8.014142", "id": "5504460786", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 13:23:28", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5251/5503870397_878e74631b_o.jpg", "secret": "bb00dc303c", "media": "photo", "latitude": "-8.014142", "id": "5503870397", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 13:23:55", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5179/5503870887_8fec700fe9_o.jpg", "secret": "d43513c63c", "media": "photo", "latitude": "-8.014142", "id": "5503870887", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 13:24:30", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5175/5504462428_81a6cec908_o.jpg", "secret": "bc46f39244", "media": "photo", "latitude": "-8.014142", "id": "5504462428", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 13:24:46", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5019/5504463060_a7a8aaa46e_o.jpg", "secret": "671836a48d", "media": "photo", "latitude": "-8.014142", "id": "5504463060", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 13:27:20", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5299/5503872699_cb07056e2b_o.jpg", "secret": "613a995d02", "media": "photo", "latitude": "-8.014142", "id": "5503872699", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 13:41:43", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5139/5503873309_a76d0fa265_o.jpg", "secret": "37b1d826ca", "media": "photo", "latitude": "-8.014142", "id": "5503873309", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 13:53:10", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5053/5503873887_0050e7be71_o.jpg", "secret": "c246f5cdcd", "media": "photo", "latitude": "-8.014142", "id": "5503873887", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 13:53:26", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5099/5503874451_8e53bfa4d5_o.jpg", "secret": "21486b83b0", "media": "photo", "latitude": "-8.014142", "id": "5503874451", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 13:55:46", "license": "4", "title": "", "text": "", "album_id": "72157626211720512", "longitude": "-34.850307", "url_o": "https://farm6.staticflickr.com/5178/5504467598_5006e6b174_o.jpg", "secret": "24afeb21fe", "media": "photo", "latitude": "-8.014142", "id": "5504467598", "tags": "carnival party brazil brasil pernambuco costumeparty olinda carmo carnaval2011"}, {"datetaken": "2011-03-06 12:24:05", "license": "4", "title": "Magazine Carnival 2011 Childrens Fantasies", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5215/5503959593_71c2d64bdb_o.jpg", "secret": "d2ac651788", "media": "photo", "latitude": "0", "id": "5503959593", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 12:24:19", "license": "4", "title": "Magazine Carnival 2011 Vince Vance 1", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5176/5504551014_04a8fc1da0_o.jpg", "secret": "cdf59a0184", "media": "photo", "latitude": "0", "id": "5504551014", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 12:25:25", "license": "4", "title": "Magazine Carnival 2011 Vince Vance Head", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5055/5504551336_b0ca339573_o.jpg", "secret": "2fce1bd7c6", "media": "photo", "latitude": "0", "id": "5504551336", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 12:27:44", "license": "4", "title": "Magazine Carnival 2011 Vince Vance Float", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5058/5503974369_9d0b646836_o.jpg", "secret": "8495414675", "media": "photo", "latitude": "0", "id": "5503974369", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 12:28:31", "license": "4", "title": "Magazine Carnival 2011 Stars and Stripes", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5172/5504551590_099f35be9d_o.jpg", "secret": "afca890640", "media": "photo", "latitude": "0", "id": "5504551590", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 12:29:16", "license": "4", "title": "Magazine Carnival 2011 Shopping Bag Tutu", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5219/5504553286_e4baf0b42e_o.jpg", "secret": "9cae0d8d61", "media": "photo", "latitude": "0", "id": "5504553286", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 12:29:24", "license": "4", "title": "Magazine Carnival 2011 Diving Helmet", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5219/5503960839_938a6b78f1_o.jpg", "secret": "cc2166afee", "media": "photo", "latitude": "0", "id": "5503960839", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 12:32:52", "license": "4", "title": "Magazine Carnival 2011 Garden houses", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5011/5504552828_efa43acb00_o.jpg", "secret": "ffe09c32a1", "media": "photo", "latitude": "0", "id": "5504552828", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 12:33:21", "license": "4", "title": "Magazine Carnival 2011 Sax", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5134/5503961215_ce5c77dbb0_o.jpg", "secret": "fea561e24f", "media": "photo", "latitude": "0", "id": "5503961215", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 12:34:39", "license": "4", "title": "Magazine Carnival 2011 Animals Float", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5058/5503962973_24b7a928f6_o.jpg", "secret": "e74f82d5c6", "media": "photo", "latitude": "0", "id": "5503962973", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 12:35:33", "license": "4", "title": "Magazine Carnival 2011 Brass band", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5172/5504553790_7750bd41f4_o.jpg", "secret": "d6687971eb", "media": "photo", "latitude": "0", "id": "5504553790", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 12:35:44", "license": "4", "title": "Magazine Carnival 2011 Brass Band Float 2", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5260/5503963381_6fb49531fb_o.jpg", "secret": "167bb30fb6", "media": "photo", "latitude": "0", "id": "5503963381", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 12:39:52", "license": "4", "title": "Magazine Carnival 2011 Chefs", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5097/5504565940_2ed97ed418_o.jpg", "secret": "7ea105cfd6", "media": "photo", "latitude": "0", "id": "5504565940", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 12:40:18", "license": "4", "title": "Magazine Carnival 2011 Crowned Toss", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5298/5504555082_8e463dda8c_o.jpg", "secret": "67bdc8a9a7", "media": "photo", "latitude": "0", "id": "5504555082", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 12:48:09", "license": "4", "title": "Magazine Carnival 2011 Alfred All the Kings Men", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5213/5503964343_67e25cf0d4_o.jpg", "secret": "0784474e3d", "media": "photo", "latitude": "0", "id": "5503964343", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 13:07:25", "license": "4", "title": "Magazine Carnival 2011 Sandy Goldie Hollie", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5178/5504556122_13a8246b4f_o.jpg", "secret": "193e5ae407", "media": "photo", "latitude": "0", "id": "5504556122", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 13:17:16", "license": "4", "title": "Magazine Carnival 2011 King Vitamin", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5100/5504556560_440cfcb5a6_o.jpg", "secret": "6af7457dd8", "media": "photo", "latitude": "0", "id": "5504556560", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 13:17:27", "license": "4", "title": "Magazine Carnival 2011 Mid-City Kings Band 1", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5092/5503965737_c44d747b0d_o.jpg", "secret": "f81c8705b6", "media": "photo", "latitude": "0", "id": "5503965737", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 13:17:33", "license": "4", "title": "Magazine Carnival 2011 Mid-City Kings Band 2", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5012/5504558032_dd74673599_o.jpg", "secret": "fd862a84d5", "media": "photo", "latitude": "0", "id": "5504558032", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 13:17:35", "license": "4", "title": "Magazine Carnival 2011 Mid-City Kings Band 3", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5091/5504557566_05ba70a750_o.jpg", "secret": "e0625b5ba8", "media": "photo", "latitude": "0", "id": "5504557566", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 13:18:56", "license": "4", "title": "Magazine Carnival 2011 Cocktail Glasses", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5213/5503967365_9a9dee93ba_o.jpg", "secret": "c0c1b39db5", "media": "photo", "latitude": "0", "id": "5503967365", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 13:22:28", "license": "4", "title": "Magazine Carnival 2011 Marches On", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5251/5503968205_a1942321ce_o.jpg", "secret": "95aeed93b7", "media": "photo", "latitude": "0", "id": "5503968205", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 13:23:05", "license": "4", "title": "Magazine Carnival 2011 Marches On Geaux", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5013/5503967737_853f580630_o.jpg", "secret": "7dab0f411c", "media": "photo", "latitude": "0", "id": "5503967737", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 13:37:20", "license": "4", "title": "Magazine Carnival 2011 Mid-CIty Blue", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5175/5504560008_9e14a18e9c_o.jpg", "secret": "9853f5503c", "media": "photo", "latitude": "0", "id": "5504560008", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 13:37:54", "license": "4", "title": "Magazine Carnival 2011 Stop Bite Me Sport", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5020/5503969105_38b9c504b4_o.jpg", "secret": "0acd963726", "media": "photo", "latitude": "0", "id": "5503969105", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 13:51:56", "license": "4", "title": "Magazine Carnival 2011 Out Like A Lamb", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5019/5503969525_be27966f37_o.jpg", "secret": "0174a01500", "media": "photo", "latitude": "0", "id": "5503969525", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 13:52:07", "license": "4", "title": "Magazine Carnival 2011 Lamb Float Side", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5136/5503970049_a16b40a14d_o.jpg", "secret": "0cb4749c1c", "media": "photo", "latitude": "0", "id": "5503970049", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 14:11:30", "license": "4", "title": "Magazine Carnival 2011 Who Boppers", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5257/5504561702_4f16269f53_o.jpg", "secret": "2a178c284d", "media": "photo", "latitude": "0", "id": "5504561702", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 14:31:20", "license": "4", "title": "Magazine Carnival 2011 Float Like Egyptian", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5015/5504562472_0961afe373_o.jpg", "secret": "2eefb0c1bd", "media": "photo", "latitude": "0", "id": "5504562472", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 14:33:16", "license": "4", "title": "Magazine Carnival 2011 Julip", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5012/5503970889_b13639b3e6_o.jpg", "secret": "0bcd15f43f", "media": "photo", "latitude": "0", "id": "5503970889", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 14:40:17", "license": "4", "title": "Magazine Carnival 2011 Thoth Goes to College", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5133/5504562880_2e82f9b149_o.jpg", "secret": "cdd56a4ce9", "media": "photo", "latitude": "0", "id": "5504562880", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 14:54:36", "license": "4", "title": "Magazine Carnival 2011 Big Hair", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5291/5503972235_6c10b96ca2_o.jpg", "secret": "3637e8f998", "media": "photo", "latitude": "0", "id": "5503972235", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 14:55:12", "license": "4", "title": "Magazine Carnival 2011 Thoth Music", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5139/5504563844_6ce5b6e742_o.jpg", "secret": "60589aa380", "media": "photo", "latitude": "0", "id": "5504563844", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 14:55:18", "license": "4", "title": "Magazine Carnival 2011 Thoth Music Trombone", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5178/5504564292_66d8ac815f_o.jpg", "secret": "16ec4bd24b", "media": "photo", "latitude": "0", "id": "5504564292", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 15:06:55", "license": "4", "title": "Magazine Carnival 2011 Thoth Tipping Sphynx", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5217/5503973411_d892bac98c_o.jpg", "secret": "9c3a28d4c4", "media": "photo", "latitude": "0", "id": "5503973411", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2011-03-06 15:32:08", "license": "4", "title": "Magazine Carnival 2011 Hollie Chair", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5255/5504565292_4e36e83298_o.jpg", "secret": "d4e9a92880", "media": "photo", "latitude": "0", "id": "5504565292", "tags": "hollie neworleansmardigrascarnivalparadesmagazinestreet"}, {"datetaken": "2011-03-06 15:41:31", "license": "4", "title": "Magazine Carnival 2011 Thoth King Cake", "text": "", "album_id": "72157626211952048", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5292/5503975129_7844496a4d_o.jpg", "secret": "d0cfbbfabf", "media": "photo", "latitude": "0", "id": "5503975129", "tags": "carnival neworleans parades mardigras magazinestreet"}, {"datetaken": "2010-06-05 15:39:04", "license": "2", "title": "die leude - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4064/4672053802_8f53703e5e_o.jpg", "secret": "f1cd54178b", "media": "photo", "latitude": "52.027280", "id": "4672053802", "tags": "carnival bielefeld karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 15:43:56", "license": "2", "title": "heilige kuh - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4040/4672055000_68b26c7db7_o.jpg", "secret": "ff9c8ccfeb", "media": "photo", "latitude": "52.027280", "id": "4672055000", "tags": "carnival bielefeld karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 15:52:16", "license": "2", "title": "portraits - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4051/4672056396_63bcc5f67b_o.jpg", "secret": "5632ac2776", "media": "photo", "latitude": "52.027280", "id": "4672056396", "tags": "carnival bielefeld karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 15:56:06", "license": "2", "title": "gl\u00fccklich - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4033/4671432875_d0a97eb5eb_o.jpg", "secret": "4a6efcc911", "media": "photo", "latitude": "52.027280", "id": "4671432875", "tags": "carnival bielefeld karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 15:56:24", "license": "2", "title": "alcina uhr - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4051/4671435223_92a261fe25_o.jpg", "secret": "826f35bdec", "media": "photo", "latitude": "52.027280", "id": "4671435223", "tags": "carnival bielefeld karneval 2010 uhr kulturen alcina carnivalderkulturen"}, {"datetaken": "2010-06-05 15:56:59", "license": "2", "title": "geknickte burg - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4050/4672058726_8412546643_o.jpg", "secret": "fef0f36d2d", "media": "photo", "latitude": "52.027280", "id": "4672058726", "tags": "carnival pudding bielefeld karneval 2010 sparrenburg kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 15:59:59", "license": "2", "title": "\u00e4 roder g\u00e4for - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4036/4671436391_e7e554a085_o.jpg", "secret": "11cac70303", "media": "photo", "latitude": "52.027280", "id": "4671436391", "tags": "carnival blume bielefeld karneval 2010 k\u00e4fer kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 16:04:11", "license": "2", "title": "neptun - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4062/4674410472_b333dc3ed4_o.jpg", "secret": "f8757293cf", "media": "photo", "latitude": "52.027280", "id": "4674410472", "tags": "carnival bielefeld karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 16:07:22", "license": "2", "title": "pink - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4032/4673792319_4152e95b05_o.jpg", "secret": "002758beff", "media": "photo", "latitude": "52.027280", "id": "4673792319", "tags": "carnival bielefeld karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 16:07:32", "license": "2", "title": "rot - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4007/4673793033_52ec055066_o.jpg", "secret": "9d2ea01f48", "media": "photo", "latitude": "52.027280", "id": "4673793033", "tags": "carnival bielefeld karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 16:07:33", "license": "2", "title": "orange - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4020/4673791385_c01ec5d38e_o.jpg", "secret": "0ab18ae425", "media": "photo", "latitude": "52.027280", "id": "4673791385", "tags": "carnival bielefeld karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 16:09:43", "license": "2", "title": "brother voodoo - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4050/4673804561_f816941d67_o.jpg", "secret": "dc87b62a16", "media": "photo", "latitude": "52.027280", "id": "4673804561", "tags": "carnival bielefeld karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 16:09:46", "license": "2", "title": "troll - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4050/4674427928_22ac004880_o.jpg", "secret": "ed9c296e92", "media": "photo", "latitude": "52.027280", "id": "4674427928", "tags": "carnival bielefeld karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 16:10:03", "license": "2", "title": "schwere flasche - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm2.staticflickr.com/1290/4674428816_b83ab874ba_o.jpg", "secret": "8a20467341", "media": "photo", "latitude": "52.027280", "id": "4674428816", "tags": "carnival bielefeld karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 16:15:35", "license": "2", "title": "freude am leben - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4015/4674429676_c5ee4f974a_o.jpg", "secret": "732ff7f180", "media": "photo", "latitude": "52.027280", "id": "4674429676", "tags": "carnival woman golden costume frau bielefeld karneval 2010 kost\u00fcm kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 16:16:26", "license": "2", "title": "feuervogel - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4022/4674430544_3e8c31ff54_o.jpg", "secret": "5131855833", "media": "photo", "latitude": "52.027280", "id": "4674430544", "tags": "carnival bielefeld karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 16:16:35", "license": "2", "title": "adler - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm2.staticflickr.com/1271/4673808955_76a3851949_o.jpg", "secret": "c5f7a4da2e", "media": "photo", "latitude": "52.027280", "id": "4673808955", "tags": "carnival eagle adler bielefeld karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 16:17:34", "license": "2", "title": "wasserwesen - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4017/4673810835_2f40e73161_o.jpg", "secret": "e7a6531f1f", "media": "photo", "latitude": "52.027280", "id": "4673810835", "tags": "carnival gr\u00fcn blau bielefeld karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 16:17:49", "license": "2", "title": "flocke - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4070/4673809975_5d057dde2a_o.jpg", "secret": "5cefc0695a", "media": "photo", "latitude": "52.027280", "id": "4673809975", "tags": "carnival stern bielefeld karneval 2010 kulturen schneeflocke carnivalderkulturen"}, {"datetaken": "2010-06-05 16:18:18", "license": "2", "title": "anonyme sch\u00fcler - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4054/4673811789_52cf16e682_o.jpg", "secret": "a1ea8a7fae", "media": "photo", "latitude": "52.027280", "id": "4673811789", "tags": "carnival bielefeld karneval 2010 kulturen pappteller carnivalderkulturen"}, {"datetaken": "2010-06-05 16:20:25", "license": "2", "title": "love - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4063/4674435366_46e85e724e_o.jpg", "secret": "a53628e882", "media": "photo", "latitude": "52.027280", "id": "4674435366", "tags": "carnival love bielefeld karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 16:20:32", "license": "2", "title": "mini jacko - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm2.staticflickr.com/1266/4673813617_999e422d77_o.jpg", "secret": "bc286c7390", "media": "photo", "latitude": "52.027280", "id": "4673813617", "tags": "carnival michaeljackson bielefeld karneval 2010 jacko kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 16:22:18", "license": "2", "title": "waschbrett - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4011/4674437164_926dd1341b_o.jpg", "secret": "7ef915887c", "media": "photo", "latitude": "52.027280", "id": "4674437164", "tags": "carnival t\u00e4nzer dancer bielefeld karneval 2010 kulturen brasilianisch carnivalderkulturen"}, {"datetaken": "2010-06-05 16:22:24", "license": "2", "title": "t\u00e4nzerin - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4041/4674438172_60d5b1b98b_o.jpg", "secret": "f67a792325", "media": "photo", "latitude": "52.027280", "id": "4674438172", "tags": "carnival dancer bielefeld karneval 2010 kulturen brasilianisch t\u00e4nzerin carnivalderkulturen"}, {"datetaken": "2010-06-05 16:25:44", "license": "2", "title": "clownswolke - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4051/4673816365_f222ab449e_o.jpg", "secret": "7be7b2c95c", "media": "photo", "latitude": "52.027280", "id": "4673816365", "tags": "carnival cloud clown wolke bielefeld karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 16:29:30", "license": "2", "title": "der lauteste wagen - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4067/4673817003_084c071bb6_o.jpg", "secret": "481b41b1fb", "media": "photo", "latitude": "52.027280", "id": "4673817003", "tags": "carnival tattoo punk tribal bielefeld iro karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2010-06-05 16:33:37", "license": "2", "title": "faule sau - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.525605", "url_o": "https://farm5.staticflickr.com/4065/4673817787_f6d5c38eb9_o.jpg", "secret": "1f7c740dcd", "media": "photo", "latitude": "52.027280", "id": "4673817787", "tags": "carnival transport bielefeld karneval 2010 kulturen krankenwagen faulheit carnivalderkulturen"}, {"datetaken": "2010-06-05 19:47:54", "license": "2", "title": "obstwanderung - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.546075", "url_o": "https://farm5.staticflickr.com/4040/4674441682_72d86ba67a_o.jpg", "secret": "d93f95f3b7", "media": "photo", "latitude": "52.021972", "id": "4674441682", "tags": "carnival banana peanut banane bielefeld karneval 2010 kulturen erdnuss carnivalderkulturen"}, {"datetaken": "2010-06-05 19:51:16", "license": "2", "title": "junges gl\u00fcck - carnival der kulturen", "text": "", "album_id": "72157624208773032", "longitude": "8.546075", "url_o": "https://farm5.staticflickr.com/4003/4674442514_3ff08ee0a4_o.jpg", "secret": "4362c0b872", "media": "photo", "latitude": "52.021972", "id": "4674442514", "tags": "carnival kids kinder bielefeld karneval 2010 kulturen carnivalderkulturen"}, {"datetaken": "2011-09-04 01:20:50", "license": "4", "title": "labor day", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6182/6119702531_a6e81404ed_o.jpg", "secret": "ec598aab64", "media": "photo", "latitude": "40.670385", "id": "6119702531", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 labordayparade costumebands magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-04 01:20:52", "license": "4", "title": "labor day", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6068/6119703333_7fe35b2860_o.jpg", "secret": "7e68943754", "media": "photo", "latitude": "40.670385", "id": "6119703333", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 labordayparade costumebands magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:09:59", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6206/6126000718_93874bc6d7_o.jpg", "secret": "5e05a914e1", "media": "photo", "latitude": "40.670385", "id": "6126000718", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:11:08", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6192/6125456527_f7d83bb249_o.jpg", "secret": "4a7ae7c4f1", "media": "photo", "latitude": "40.670385", "id": "6125456527", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:11:47", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6206/6125457529_87efcf80a4_o.jpg", "secret": "052a48fc10", "media": "photo", "latitude": "40.670385", "id": "6125457529", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:11:51", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6090/6126003462_b4ba6f94b8_o.jpg", "secret": "549c4b713c", "media": "photo", "latitude": "40.670385", "id": "6126003462", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:12:00", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6090/6126004434_84e627b010_o.jpg", "secret": "ee90e4be97", "media": "photo", "latitude": "40.670385", "id": "6126004434", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:12:24", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6079/6125460371_9b298a4789_o.jpg", "secret": "e039ab1026", "media": "photo", "latitude": "40.670385", "id": "6125460371", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:27:23", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6074/6126006402_2194ea4b49_o.jpg", "secret": "6ae9c12f6b", "media": "photo", "latitude": "40.670385", "id": "6126006402", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:27:31", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6063/6125461877_fa75232194_o.jpg", "secret": "83b7322108", "media": "photo", "latitude": "40.670385", "id": "6125461877", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:32:24", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6076/6126008956_00d5b3130b_o.jpg", "secret": "983618a2f9", "media": "photo", "latitude": "40.670385", "id": "6126008956", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:32:53", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6089/6126010076_4597bf30cd_o.jpg", "secret": "c27d36f338", "media": "photo", "latitude": "40.670385", "id": "6126010076", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:33:15", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6077/6126011134_f720dcffc3_o.jpg", "secret": "2e53e7d96b", "media": "photo", "latitude": "40.670385", "id": "6126011134", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:33:38", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6181/6126014530_289861ec1c_o.jpg", "secret": "455d5fa4f7", "media": "photo", "latitude": "40.670385", "id": "6126014530", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:35:44", "license": "4", "title": "labor day parade", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6203/6126013036_b1607372f6_o.jpg", "secret": "e31e2cf7d1", "media": "photo", "latitude": "40.670385", "id": "6126013036", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:36:05", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6193/6125471253_c82fa51aec_o.jpg", "secret": "a0f054c5c2", "media": "photo", "latitude": "40.670385", "id": "6125471253", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:36:24", "license": "4", "title": "labor day parade", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6068/6126016928_d7bea82898_o.jpg", "secret": "c7ea5091be", "media": "photo", "latitude": "40.670385", "id": "6126016928", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:38:04", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6209/6126017994_9cb08cf7ed_o.jpg", "secret": "b9cc0e794f", "media": "photo", "latitude": "40.670385", "id": "6126017994", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:39:56", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6080/6125474445_d9c3c9847d_o.jpg", "secret": "79b22e1e33", "media": "photo", "latitude": "40.670385", "id": "6125474445", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:44:51", "license": "4", "title": "labor day parade", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6065/6125475501_306d640bba_o.jpg", "secret": "03cb0f4118", "media": "photo", "latitude": "40.670385", "id": "6125475501", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:47:58", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6202/6125998028_c24dd17ef6_o.jpg", "secret": "b1f591e11d", "media": "photo", "latitude": "40.670385", "id": "6125998028", "tags": "travel carnival west brooklyn magazine print day labor indian parade laborday portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:58:56", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6209/6126021776_c378f4c0d3_o.jpg", "secret": "a6fff1704b", "media": "photo", "latitude": "40.670385", "id": "6126021776", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 13:59:50", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6196/6125478067_128a30e9b1_o.jpg", "secret": "56a2275360", "media": "photo", "latitude": "40.670385", "id": "6125478067", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 14:04:52", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6071/6125479371_5af61b403b_o.jpg", "secret": "366378a911", "media": "photo", "latitude": "40.670385", "id": "6125479371", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 14:05:07", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6071/6125480421_0f4df4c852_o.jpg", "secret": "c4b51d4840", "media": "photo", "latitude": "40.670385", "id": "6125480421", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 14:06:53", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6201/6126026662_f41a728a00_o.jpg", "secret": "5be1222911", "media": "photo", "latitude": "40.670385", "id": "6126026662", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 14:08:21", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6075/6126027624_b6b9c1c67a_o.jpg", "secret": "35651d9a8c", "media": "photo", "latitude": "40.670385", "id": "6126027624", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 14:18:35", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6078/6126028768_dcc6d8f04b_o.jpg", "secret": "13501b5a88", "media": "photo", "latitude": "40.670385", "id": "6126028768", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 14:20:32", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6202/6126029768_5983d99639_o.jpg", "secret": "79731e446f", "media": "photo", "latitude": "40.670385", "id": "6126029768", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 14:21:04", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6182/6126030692_8f0c21cf41_o.jpg", "secret": "5fcd9376c7", "media": "photo", "latitude": "40.670385", "id": "6126030692", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 14:40:51", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6087/6125486745_b0889c698b_o.jpg", "secret": "63ca553869", "media": "photo", "latitude": "40.670385", "id": "6125486745", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 14:42:12", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6069/6125455245_e522fcf3aa_o.jpg", "secret": "35b54413c0", "media": "photo", "latitude": "40.670385", "id": "6125455245", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 14:48:15", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6187/6120329076_1c184a2ff3_o.jpg", "secret": "938a080bc8", "media": "photo", "latitude": "40.670385", "id": "6120329076", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 labordayparade costumebands magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 14:49:17", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6087/6120330094_9baceea473_o.jpg", "secret": "061183596a", "media": "photo", "latitude": "40.670385", "id": "6120330094", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 labordayparade costumebands magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 14:49:27", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6086/6119787591_562305620d_o.jpg", "secret": "81f74d202a", "media": "photo", "latitude": "40.670385", "id": "6119787591", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 labordayparade costumebands magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 15:33:33", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6199/6126034024_754def15b7_o.jpg", "secret": "421253745f", "media": "photo", "latitude": "40.670385", "id": "6126034024", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 15:34:28", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6063/6125490779_eeb342698d_o.jpg", "secret": "deef847439", "media": "photo", "latitude": "40.670385", "id": "6125490779", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 15:37:48", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6194/6125491753_5b261db1b1_o.jpg", "secret": "3930ffd7c0", "media": "photo", "latitude": "40.670385", "id": "6125491753", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 15:38:18", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6201/6125492527_cecbb33052_o.jpg", "secret": "b0eb7440d3", "media": "photo", "latitude": "40.670385", "id": "6125492527", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 15:45:23", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6086/6126038612_9fae19d8ea_o.jpg", "secret": "14026e7450", "media": "photo", "latitude": "40.670385", "id": "6126038612", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 15:47:26", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6194/6126039566_65928bb429_o.jpg", "secret": "ff90f01a1d", "media": "photo", "latitude": "40.670385", "id": "6126039566", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 labordayparade2011"}, {"datetaken": "2011-09-05 15:48:14", "license": "4", "title": "labor day parade 2011", "text": "", "album_id": "72157627607253006", "longitude": "-73.955326", "url_o": "https://farm7.staticflickr.com/6201/6125495381_2bd3e0c0f4_o.jpg", "secret": "2a98ba13e0", "media": "photo", "latitude": "40.670385", "id": "6125495381", "tags": "travel carnival west brooklyn magazine print day labor indian parade portfolios 2011 magcloud neilegibbscom westindiancarnival2011 brooklynwestindiancarnival2011 labordayparade2011"}, {"datetaken": "2008-06-25 04:26:35", "license": "3", "title": "Friedrich Schiller", "text": "", "album_id": "72157624545184951", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4867885098_f45c19cb0b_o.jpg", "secret": "343fbae7a2", "media": "photo", "latitude": "0", "id": "4867885098", "tags": "germany mainz"}, {"datetaken": "2008-06-25 04:37:06", "license": "3", "title": "Das Crazy", "text": "", "album_id": "72157624545184951", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4867269367_55f9cfa91d_o.jpg", "secret": "1b29466381", "media": "photo", "latitude": "0", "id": "4867269367", "tags": "germany mainz"}, {"datetaken": "2008-06-25 10:16:05", "license": "3", "title": "Mainzer Dom", "text": "", "album_id": "72157624545184951", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4867269623_8b04fb2bcb_o.jpg", "secret": "a76200a4fd", "media": "photo", "latitude": "0", "id": "4867269623", "tags": "germany mainz"}, {"datetaken": "2008-06-25 10:18:25", "license": "3", "title": "Mainzer Dom", "text": "", "album_id": "72157624545184951", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4867269923_b48604ec26_o.jpg", "secret": "f5e39e1281", "media": "photo", "latitude": "0", "id": "4867269923", "tags": "germany mainz"}, {"datetaken": "2008-06-25 10:19:07", "license": "3", "title": "Gutenberg Museum", "text": "", "album_id": "72157624545184951", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4867886540_d31e1426d9_o.jpg", "secret": "54839a7f43", "media": "photo", "latitude": "0", "id": "4867886540", "tags": "germany mainz"}, {"datetaken": "2008-06-25 12:22:38", "license": "3", "title": "Mainzer Dom", "text": "", "album_id": "72157624545184951", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4867270785_3e2a3f90b9_o.jpg", "secret": "b5a39d52a5", "media": "photo", "latitude": "0", "id": "4867270785", "tags": "germany mainz"}, {"datetaken": "2008-06-25 12:29:13", "license": "3", "title": "Der Gardetrommler", "text": "", "album_id": "72157624545184951", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4867887362_1414d18aeb_o.jpg", "secret": "cc343e55e3", "media": "photo", "latitude": "0", "id": "4867887362", "tags": "germany mainz"}, {"datetaken": "2008-06-25 12:29:22", "license": "3", "title": "Fastnachtsbrunnen", "text": "", "album_id": "72157624545184951", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4868349599_4bc02ca524_o.jpg", "secret": "4baa99db7f", "media": "photo", "latitude": "0", "id": "4868349599", "tags": "germany mainz"}, {"datetaken": "2008-06-25 12:34:40", "license": "3", "title": "Stephanskirche", "text": "", "album_id": "72157624545184951", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4868964798_6a221daa37_o.jpg", "secret": "d2fa5f4324", "media": "photo", "latitude": "0", "id": "4868964798", "tags": "germany mainz"}, {"datetaken": "2008-06-25 12:39:06", "license": "3", "title": "Osteiner Hof", "text": "", "album_id": "72157624545184951", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4867271803_6090b78944_o.jpg", "secret": "8c1e9c3ff0", "media": "photo", "latitude": "0", "id": "4867271803", "tags": "germany mainz"}, {"datetaken": "2011-03-08 13:09:14", "license": "1", "title": "Preparations", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5092/5509707580_d70b834d7c_o.jpg", "secret": "1bd35bacae", "media": "photo", "latitude": "49.410135", "id": "5509707580", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 13:16:24", "license": "1", "title": "Santa", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5218/5509108549_5122843218_o.jpg", "secret": "43c5967967", "media": "photo", "latitude": "49.410135", "id": "5509108549", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 13:24:09", "license": "1", "title": "Waiting for the parade", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5015/5509710506_46f2dff14d_o.jpg", "secret": "60baac68fb", "media": "photo", "latitude": "49.410135", "id": "5509710506", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 13:26:45", "license": "1", "title": "Blue sky", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5291/5509713324_1c8729a0e1_o.jpg", "secret": "2547ed7344", "media": "photo", "latitude": "49.410135", "id": "5509713324", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 13:45:37", "license": "1", "title": "Pretzel!", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5015/5509715378_5c16a44daf_o.jpg", "secret": "661c5e28a3", "media": "photo", "latitude": "49.410135", "id": "5509715378", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 13:54:32", "license": "1", "title": "Cheese!", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5054/5509116541_85b200b9de_o.jpg", "secret": "09632d6a44", "media": "photo", "latitude": "49.410135", "id": "5509116541", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 14:33:28", "license": "1", "title": "Throwing chetnuts", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5217/5509151253_69b8151532_o.jpg", "secret": "309f2d8316", "media": "photo", "latitude": "49.410135", "id": "5509151253", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 14:34:22", "license": "1", "title": "Up high", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5054/5509152813_26ddfe13d3_o.jpg", "secret": "1a8ecb079c", "media": "photo", "latitude": "49.410135", "id": "5509152813", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 14:36:45", "license": "1", "title": "Music parade", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5251/5509154559_8191bbb220_o.jpg", "secret": "42113fa2d4", "media": "photo", "latitude": "49.410135", "id": "5509154559", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 14:37:03", "license": "1", "title": "On the truck", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5253/5509756584_d8dd46b9ed_o.jpg", "secret": "807e64c6a4", "media": "photo", "latitude": "49.410135", "id": "5509756584", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense perkeo dienstag facepalm 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 14:37:33", "license": "1", "title": "Hat up!", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5293/5509159239_a5e99afe55_o.jpg", "secret": "f899d11628", "media": "photo", "latitude": "49.410135", "id": "5509159239", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 14:38:49", "license": "1", "title": "Confetti", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5011/5509161041_307c3f1576_o.jpg", "secret": "ee387c1cc7", "media": "photo", "latitude": "49.410135", "id": "5509161041", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 14:39:53", "license": "1", "title": "White feather hats", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5059/5509763148_56e05902fc_o.jpg", "secret": "aa963006c6", "media": "photo", "latitude": "49.410135", "id": "5509763148", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 14:40:58", "license": "1", "title": "Drums", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5053/5509164755_95624d8e66_o.jpg", "secret": "d0368a4d7f", "media": "photo", "latitude": "49.410135", "id": "5509164755", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 14:41:12", "license": "1", "title": "Drums detail", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5173/5509166191_203565eeaa_o.jpg", "secret": "8d2c41a3d3", "media": "photo", "latitude": "49.410135", "id": "5509166191", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 14:42:07", "license": "1", "title": "Trombone detail", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5094/5509768162_e2e3b53031_o.jpg", "secret": "7934227489", "media": "photo", "latitude": "49.410135", "id": "5509768162", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 14:42:57", "license": "1", "title": "Umbrella collector", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5211/5509170349_f5d2c23f50_o.jpg", "secret": "00231c14a7", "media": "photo", "latitude": "49.410135", "id": "5509170349", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 14:44:17", "license": "1", "title": "Prisoners", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5296/5509777382_9ddfe485b0_o.jpg", "secret": "481a072b27", "media": "photo", "latitude": "49.410135", "id": "5509777382", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 14:45:35", "license": "1", "title": "On the truck", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5298/5509178221_8317e90788_o.jpg", "secret": "54b248ff1a", "media": "photo", "latitude": "49.410135", "id": "5509178221", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 14:52:32", "license": "1", "title": "The Parade", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5096/5509179725_374db4c2ef_o.jpg", "secret": "e2052ea3d7", "media": "photo", "latitude": "49.410135", "id": "5509179725", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 14:55:22", "license": "1", "title": "Historic Bus", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5095/5509181949_dc67595d3f_o.jpg", "secret": "84bf3d1d5a", "media": "photo", "latitude": "49.410135", "id": "5509181949", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 14:59:42", "license": "1", "title": "Trumpets", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5018/5509809774_0100772f99_o.jpg", "secret": "36de0d5555", "media": "photo", "latitude": "49.410135", "id": "5509809774", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:01:09", "license": "1", "title": "\"Kamelle!!!\"", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5298/5509784380_b0aba32b5b_o.jpg", "secret": "c3556f3341", "media": "photo", "latitude": "49.410135", "id": "5509784380", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:02:33", "license": "1", "title": "Popcorn, more popcorn!", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5292/5509785932_299ff84421_o.jpg", "secret": "19e9b29bd9", "media": "photo", "latitude": "49.410135", "id": "5509785932", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:04:21", "license": "1", "title": "Party truck", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5138/5509791162_8decd4b214_o.jpg", "secret": "f169907d3d", "media": "photo", "latitude": "49.410135", "id": "5509791162", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:09:10", "license": "1", "title": "The royal car", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5094/5509225861_99b90b5bfd_o.jpg", "secret": "273eebb215", "media": "photo", "latitude": "49.410135", "id": "5509225861", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:09:49", "license": "1", "title": "Local TV was there, too", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5052/5509792598_11c8caa41f_o.jpg", "secret": "ca7ed3ab28", "media": "photo", "latitude": "49.410135", "id": "5509792598", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:13:09", "license": "1", "title": "Acrobatics", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5012/5509795970_49be6f9f93_o.jpg", "secret": "0b4be0ef52", "media": "photo", "latitude": "49.410135", "id": "5509795970", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:14:39", "license": "1", "title": "The parade", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5133/5509797412_77efd26e6f_o.jpg", "secret": "e25a128b6c", "media": "photo", "latitude": "49.410135", "id": "5509797412", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:18:10", "license": "1", "title": "Flag parade", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5095/5509198581_dd8d5bbcf5_o.jpg", "secret": "5f2ec9c8ea", "media": "photo", "latitude": "49.410135", "id": "5509198581", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:21:07", "license": "1", "title": "Give please", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5217/5509800948_8dabc8bd94_o.jpg", "secret": "40a99df1c1", "media": "photo", "latitude": "49.410135", "id": "5509800948", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:21:53", "license": "1", "title": "White people", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5296/5509204945_05c926103c_o.jpg", "secret": "e5051348b1", "media": "photo", "latitude": "49.410135", "id": "5509204945", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:22:42", "license": "1", "title": "Umbrella", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5178/5509206159_0c4ca46116_o.jpg", "secret": "0dce474bdb", "media": "photo", "latitude": "49.410135", "id": "5509206159", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:24:29", "license": "1", "title": "Red people", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5219/5509807946_99f020e4db_o.jpg", "secret": "13f26498e5", "media": "photo", "latitude": "49.410135", "id": "5509807946", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:29:56", "license": "1", "title": "Throwing sweets", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5015/5509285709_c4a5661d74_o.jpg", "secret": "0bb24309a8", "media": "photo", "latitude": "49.410135", "id": "5509285709", "tags": "carnival canon germany creative commons powershot heidelberg fasching karneval cclicense dienstag faschingsdienstag karnevalsdienstag sx30 sx30is akrnevalsdienstag"}, {"datetaken": "2011-03-08 15:32:04", "license": "1", "title": "Street portrait", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5098/5509281993_ef52861635_o.jpg", "secret": "fa8413398c", "media": "photo", "latitude": "49.410135", "id": "5509281993", "tags": "carnival canon germany foto fotograf creative paar commons powershot fotos saturn heidelberg bild fasching bilder karneval dhc feiern feier cclicense dienstag schnappschuss 0803 2011 faschingsdienstag bismarckplatz p\u00e4\u00e4rchen karnevalsdienstag hauptstrase sx30 sx30is 20110308 08032011 akrnevalsdienstag darmst\u00e4tterhofcenturm"}, {"datetaken": "2011-03-08 15:35:37", "license": "1", "title": "Blue", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5211/5509218571_8fb664781f_o.jpg", "secret": "c821769d93", "media": "photo", "latitude": "49.410135", "id": "5509218571", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:37:05", "license": "1", "title": "The eyes", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5295/5509820574_2f6db3c257_o.jpg", "secret": "f2a6be74ac", "media": "photo", "latitude": "49.410135", "id": "5509820574", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:38:00", "license": "1", "title": "Carnival is not apolitical", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5171/5509221267_004485b299_o.jpg", "secret": "324e0fa195", "media": "photo", "latitude": "49.410135", "id": "5509221267", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:42:21", "license": "1", "title": "Party truck", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5138/5509823760_85001b4d05_o.jpg", "secret": "faa130ff1e", "media": "photo", "latitude": "49.410135", "id": "5509823760", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:44:21", "license": "1", "title": "Dancing on a truck", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5136/5509842206_930bf2bba4_o.jpg", "secret": "129c564e20", "media": "photo", "latitude": "49.410135", "id": "5509842206", "tags": "carnival canon germany creative commons powershot heidelberg fasching umzug karneval karnevalszug cclicense dienstag faschingsdienstag faschingszug karnevalsdienstag sx30 sx30is akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:45:31", "license": "1", "title": "The party is over", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5011/5509243351_8dcac7a717_o.jpg", "secret": "9c0de0000b", "media": "photo", "latitude": "49.410135", "id": "5509243351", "tags": "carnival canon germany creative commons powershot heidelberg fasching umzug karneval karnevalszug cclicense dienstag faschingsdienstag faschingszug karnevalsdienstag sx30 sx30is akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:49:14", "license": "1", "title": "Cardboard remains", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5013/5509227279_5a52c1eaf3_o.jpg", "secret": "7bffba063e", "media": "photo", "latitude": "49.410135", "id": "5509227279", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:51:35", "license": "1", "title": "Embracing", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5094/5509228627_32cf288332_o.jpg", "secret": "05f8c9fcef", "media": "photo", "latitude": "49.410135", "id": "5509228627", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 15:57:55", "license": "1", "title": "Cleaning out the streets", "text": "", "album_id": "72157626098619757", "longitude": "8.694519", "url_o": "https://farm6.staticflickr.com/5294/5509830932_773b23f2c6_o.jpg", "secret": "5171231719", "media": "photo", "latitude": "49.410135", "id": "5509830932", "tags": "carnival canon germany creative streetphotography commons powershot heidelberg fasching umzug karneval karnevalszug streetshot cclicense dienstag 0803 2011 faschingsdienstag strase faschingszug karnevalsdienstag sx30 sx30is powershotsx30 20110308 akrnevalsdienstag cclciense"}, {"datetaken": "2011-03-08 22:44:46", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5172/5511406608_8915c0f975_o.jpg", "secret": "91de093b4c", "media": "photo", "latitude": "43.056999", "id": "5511406608", "tags": ""}, {"datetaken": "2011-03-08 22:44:52", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5255/5510808631_666f2e18d4_o.jpg", "secret": "6ebbe23ca7", "media": "photo", "latitude": "43.056999", "id": "5510808631", "tags": ""}, {"datetaken": "2011-03-08 22:44:59", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5297/5510808891_1e443187a9_o.jpg", "secret": "f677e94b63", "media": "photo", "latitude": "43.056999", "id": "5510808891", "tags": ""}, {"datetaken": "2011-03-08 22:45:05", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5059/5510809059_e80912692e_o.jpg", "secret": "678cc27035", "media": "photo", "latitude": "43.056999", "id": "5510809059", "tags": ""}, {"datetaken": "2011-03-08 22:45:12", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5211/5511407494_eb00cacc4f_o.jpg", "secret": "fbc6880df4", "media": "photo", "latitude": "43.056999", "id": "5511407494", "tags": ""}, {"datetaken": "2011-03-08 22:45:20", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5140/5510809599_487d1ca7f3_o.jpg", "secret": "bf80ebf02d", "media": "photo", "latitude": "43.056999", "id": "5510809599", "tags": ""}, {"datetaken": "2011-03-08 22:45:29", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5016/5511408100_9dee631d40_o.jpg", "secret": "dc8c752210", "media": "photo", "latitude": "43.056999", "id": "5511408100", "tags": ""}, {"datetaken": "2011-03-08 22:45:37", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5297/5511408408_c23331bfa7_o.jpg", "secret": "2e97a08b8e", "media": "photo", "latitude": "43.056999", "id": "5511408408", "tags": ""}, {"datetaken": "2011-03-08 22:45:42", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5179/5510810317_7602f5426c_o.jpg", "secret": "30f5f0f2d1", "media": "photo", "latitude": "43.056999", "id": "5510810317", "tags": ""}, {"datetaken": "2011-03-08 22:45:48", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5260/5510810485_68c1aaf2e3_o.jpg", "secret": "d04d908ef7", "media": "photo", "latitude": "43.056999", "id": "5510810485", "tags": ""}, {"datetaken": "2011-03-08 22:45:54", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5216/5510810647_53732bb11c_o.jpg", "secret": "a1a59628a2", "media": "photo", "latitude": "43.056999", "id": "5510810647", "tags": ""}, {"datetaken": "2011-03-08 22:46:02", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5253/5510810907_783f85fc26_o.jpg", "secret": "381725bc9a", "media": "photo", "latitude": "43.056999", "id": "5510810907", "tags": ""}, {"datetaken": "2011-03-08 22:46:08", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5220/5510811099_e58fbb1278_o.jpg", "secret": "fa5a0a8380", "media": "photo", "latitude": "43.056999", "id": "5510811099", "tags": ""}, {"datetaken": "2011-03-08 22:46:14", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5260/5511409626_8b2e27f8ff_o.jpg", "secret": "6a55178c53", "media": "photo", "latitude": "43.056999", "id": "5511409626", "tags": ""}, {"datetaken": "2011-03-08 22:46:21", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5096/5510811543_3c5882a4d9_o.jpg", "secret": "92729afe15", "media": "photo", "latitude": "43.056999", "id": "5510811543", "tags": ""}, {"datetaken": "2011-03-08 22:46:33", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5013/5511410244_f46653244f_o.jpg", "secret": "11441ae429", "media": "photo", "latitude": "43.056999", "id": "5511410244", "tags": ""}, {"datetaken": "2011-03-08 22:46:39", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5253/5510812083_f173d644dc_o.jpg", "secret": "7c655d0c27", "media": "photo", "latitude": "43.056999", "id": "5510812083", "tags": ""}, {"datetaken": "2011-03-08 22:46:47", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5172/5511410674_8326bb806c_o.jpg", "secret": "9d6081ea4d", "media": "photo", "latitude": "43.056999", "id": "5511410674", "tags": ""}, {"datetaken": "2011-03-08 22:46:53", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5016/5510812479_9dca0cd530_o.jpg", "secret": "30937f91cc", "media": "photo", "latitude": "43.056999", "id": "5510812479", "tags": ""}, {"datetaken": "2011-03-08 22:46:59", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5053/5511411028_a59c4c8510_o.jpg", "secret": "c5efc0c228", "media": "photo", "latitude": "43.056999", "id": "5511411028", "tags": ""}, {"datetaken": "2011-03-08 22:47:05", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5253/5511411234_6b6ac1baaa_o.jpg", "secret": "71bdd347f2", "media": "photo", "latitude": "43.056999", "id": "5511411234", "tags": ""}, {"datetaken": "2011-03-08 22:47:11", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5136/5510813063_c6566d3272_o.jpg", "secret": "979d7d6997", "media": "photo", "latitude": "43.056999", "id": "5510813063", "tags": ""}, {"datetaken": "2011-03-08 22:47:18", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5060/5510813271_a0d0c6563e_o.jpg", "secret": "09e97dd70e", "media": "photo", "latitude": "43.056999", "id": "5510813271", "tags": ""}, {"datetaken": "2011-03-08 22:47:24", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5015/5511411826_b4b57a1365_o.jpg", "secret": "aacfea987e", "media": "photo", "latitude": "43.056999", "id": "5511411826", "tags": ""}, {"datetaken": "2011-03-08 22:47:29", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5052/5510813679_d91d9a0eda_o.jpg", "secret": "f22dfc5a44", "media": "photo", "latitude": "43.056999", "id": "5510813679", "tags": ""}, {"datetaken": "2011-03-08 22:47:35", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5019/5510813907_74d6db3451_o.jpg", "secret": "9125ff33e8", "media": "photo", "latitude": "43.056999", "id": "5510813907", "tags": ""}, {"datetaken": "2011-03-08 22:47:44", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5135/5511412456_c8d600a9bf_o.jpg", "secret": "8e207f1309", "media": "photo", "latitude": "43.056999", "id": "5511412456", "tags": ""}, {"datetaken": "2011-03-08 22:47:50", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5292/5511412674_ecc9ec4e1c_o.jpg", "secret": "4080668ddb", "media": "photo", "latitude": "43.056999", "id": "5511412674", "tags": ""}, {"datetaken": "2011-03-08 22:48:02", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5255/5511412998_c6b2fbc60d_o.jpg", "secret": "496c63c06f", "media": "photo", "latitude": "43.056999", "id": "5511412998", "tags": ""}, {"datetaken": "2011-03-08 22:48:09", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5176/5511413184_047c9b35e6_o.jpg", "secret": "e27a09c780", "media": "photo", "latitude": "43.056999", "id": "5511413184", "tags": ""}, {"datetaken": "2011-03-08 22:48:14", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5255/5511413358_4855c60f45_o.jpg", "secret": "48c7d0d164", "media": "photo", "latitude": "43.056999", "id": "5511413358", "tags": ""}, {"datetaken": "2011-03-08 22:48:20", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5017/5511413514_df471b8791_o.jpg", "secret": "7524779e19", "media": "photo", "latitude": "43.056999", "id": "5511413514", "tags": ""}, {"datetaken": "2011-03-08 22:48:25", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5055/5511413660_abda657094_o.jpg", "secret": "e214cb2204", "media": "photo", "latitude": "43.056999", "id": "5511413660", "tags": ""}, {"datetaken": "2011-03-08 22:48:31", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5099/5510815607_dffdfcaeef_o.jpg", "secret": "20e3d58906", "media": "photo", "latitude": "43.056999", "id": "5510815607", "tags": ""}, {"datetaken": "2011-03-08 22:48:37", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5052/5510815777_40073d0a20_o.jpg", "secret": "1ec4b18312", "media": "photo", "latitude": "43.056999", "id": "5510815777", "tags": ""}, {"datetaken": "2011-03-08 22:48:46", "license": "1", "title": "Mardi Gras Carnival Feast photos!", "text": "", "album_id": "72157626228068442", "longitude": "-87.982167", "url_o": "https://farm6.staticflickr.com/5133/5511414262_84ab1536c0_o.jpg", "secret": "7d217715d8", "media": "photo", "latitude": "43.056999", "id": "5511414262", "tags": ""}, {"datetaken": "2010-07-10 14:32:36", "license": "4", "title": "Little Mug", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4780201467_eb5b09c9c3_o.jpg", "secret": "e94c51f23d", "media": "photo", "latitude": "0", "id": "4780201467", "tags": "raw"}, {"datetaken": "2010-07-10 14:32:58", "license": "4", "title": "Callaway Gardens", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4780192713_007ab9c7b4_o.jpg", "secret": "efe1d89af2", "media": "photo", "latitude": "0", "id": "4780192713", "tags": "raw"}, {"datetaken": "2010-07-10 14:33:17", "license": "4", "title": "NCAA Final Four", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4780199453_8e5b520bbe_o.jpg", "secret": "e7f1ba8e1a", "media": "photo", "latitude": "0", "id": "4780199453", "tags": "raw"}, {"datetaken": "2010-07-10 14:33:34", "license": "4", "title": "Planet Hollywood \u00b7 Myrtle Beach", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4780207779_32f6cbd03d_o.jpg", "secret": "99f74d9941", "media": "photo", "latitude": "0", "id": "4780207779", "tags": "raw"}, {"datetaken": "2010-07-10 14:33:53", "license": "4", "title": "North Carolina", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4780209673_e9062f1893_o.jpg", "secret": "cf6df8c391", "media": "photo", "latitude": "0", "id": "4780209673", "tags": "raw"}, {"datetaken": "2010-07-10 14:34:12", "license": "4", "title": "Kansas City Royals", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4780196065_a3812a4608_o.jpg", "secret": "1483e783e7", "media": "photo", "latitude": "0", "id": "4780196065", "tags": "raw"}, {"datetaken": "2010-07-10 14:34:45", "license": "4", "title": "Jeff Gordon", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4780206253_e832c2e674_o.jpg", "secret": "11ed6323c3", "media": "photo", "latitude": "0", "id": "4780206253", "tags": "raw"}, {"datetaken": "2010-07-10 14:35:03", "license": "4", "title": "Augusta Golf Capital", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4780211199_04ddf37beb_o.jpg", "secret": "859b6d98b8", "media": "photo", "latitude": "0", "id": "4780211199", "tags": "raw"}, {"datetaken": "2010-07-10 14:35:15", "license": "4", "title": "Fantasy in Lights", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4780842102_419f55824e_o.jpg", "secret": "2fb403f972", "media": "photo", "latitude": "0", "id": "4780842102", "tags": "raw"}, {"datetaken": "2010-07-10 14:35:45", "license": "4", "title": "Redneck", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4780205849_a16fe6b341_o.jpg", "secret": "28bfcbbc02", "media": "photo", "latitude": "0", "id": "4780205849", "tags": "raw"}, {"datetaken": "2010-07-10 14:36:00", "license": "4", "title": "Ripley's Aquarium \u00b7 Myrtle Beach", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4780207191_fa43818d66_o.jpg", "secret": "5c3336d0de", "media": "photo", "latitude": "0", "id": "4780207191", "tags": "raw"}, {"datetaken": "2010-07-10 14:36:14", "license": "4", "title": "Myrtle Beach", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4780204839_c922c8b8ae_o.jpg", "secret": "65c4800ac3", "media": "photo", "latitude": "0", "id": "4780204839", "tags": "raw"}, {"datetaken": "2010-07-10 14:36:26", "license": "4", "title": "Atlanta", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4780844772_77cb8c2820_o.jpg", "secret": "e14c15faed", "media": "photo", "latitude": "0", "id": "4780844772", "tags": "raw"}, {"datetaken": "2010-07-10 14:36:38", "license": "4", "title": "Walt Disney World \u00b7 Magic Kingdom", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4780200459_6c5bf63310_o.jpg", "secret": "aa7d6cc159", "media": "photo", "latitude": "0", "id": "4780200459", "tags": "raw"}, {"datetaken": "2010-07-10 14:36:52", "license": "4", "title": "Presidential Seal", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4780832704_6f1a2c2380_o.jpg", "secret": "9b4f1a16b4", "media": "photo", "latitude": "0", "id": "4780832704", "tags": "raw"}, {"datetaken": "2010-07-10 14:37:04", "license": "4", "title": "Atlanta Braves", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4780831308_abcaa17786_o.jpg", "secret": "4e894fc356", "media": "photo", "latitude": "0", "id": "4780831308", "tags": "raw"}, {"datetaken": "2010-07-10 14:37:19", "license": "4", "title": "Grand Canyon", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4780838726_ac4a8c1de1_o.jpg", "secret": "6dd615e3ac", "media": "photo", "latitude": "0", "id": "4780838726", "tags": "raw"}, {"datetaken": "2010-07-10 14:37:35", "license": "4", "title": "Charleston", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4780201021_1f171ba6ed_o.jpg", "secret": "bff6176102", "media": "photo", "latitude": "0", "id": "4780201021", "tags": "raw"}, {"datetaken": "2010-07-10 14:38:42", "license": "4", "title": "Cherokee, North Carolina", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4114/4780195671_0242a44716_o.jpg", "secret": "5e464ac106", "media": "photo", "latitude": "0", "id": "4780195671", "tags": "raw"}, {"datetaken": "2010-07-10 14:38:54", "license": "4", "title": "The Apple Barn", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4780843840_1d12849f70_o.jpg", "secret": "6c8492077f", "media": "photo", "latitude": "0", "id": "4780843840", "tags": "raw"}, {"datetaken": "2010-07-10 14:39:06", "license": "4", "title": "Tennessee Sipper", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4780197267_3975938c4c_o.jpg", "secret": "aa41b31ff1", "media": "photo", "latitude": "0", "id": "4780197267", "tags": "raw"}, {"datetaken": "2010-07-10 14:39:16", "license": "4", "title": "Volunteers", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4780836702_cd94f14b97_o.jpg", "secret": "ea12a9fae4", "media": "photo", "latitude": "0", "id": "4780836702", "tags": "raw"}, {"datetaken": "2010-07-10 14:39:25", "license": "4", "title": "New Orleans, Louisiana", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4780203497_699ef2eab0_o.jpg", "secret": "e2d6b19041", "media": "photo", "latitude": "0", "id": "4780203497", "tags": "raw"}, {"datetaken": "2010-07-10 14:39:38", "license": "4", "title": "Carnival Miracle", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4780194689_e9b0f28396_o.jpg", "secret": "697c474d0f", "media": "photo", "latitude": "0", "id": "4780194689", "tags": "raw"}, {"datetaken": "2010-07-10 14:39:47", "license": "4", "title": "Riverbanks Zoo", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4780843440_70d9fcf374_o.jpg", "secret": "ca92686d2e", "media": "photo", "latitude": "0", "id": "4780843440", "tags": "raw"}, {"datetaken": "2010-07-10 14:40:04", "license": "4", "title": "South Carolina Aquarium", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4780839942_6f64410e7f_o.jpg", "secret": "aa61215576", "media": "photo", "latitude": "0", "id": "4780839942", "tags": "raw"}, {"datetaken": "2010-07-10 14:40:13", "license": "4", "title": "Walt Disney World 2008", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4780828824_8df61d1654_o.jpg", "secret": "9d1af64fa8", "media": "photo", "latitude": "0", "id": "4780828824", "tags": "raw"}, {"datetaken": "2010-07-10 14:40:25", "license": "4", "title": "Cedar Point", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4780200149_623a112c90_o.jpg", "secret": "099e61b6b7", "media": "photo", "latitude": "0", "id": "4780200149", "tags": "raw"}, {"datetaken": "2010-07-10 14:40:39", "license": "4", "title": "Mardi Gras", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4780202875_9a281b3631_o.jpg", "secret": "f580cd5a97", "media": "photo", "latitude": "0", "id": "4780202875", "tags": "raw"}, {"datetaken": "2010-07-10 14:40:51", "license": "4", "title": "Jekyll Island", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4780193811_4a16ddd179_o.jpg", "secret": "424f4311a6", "media": "photo", "latitude": "0", "id": "4780193811", "tags": "raw"}, {"datetaken": "2010-07-10 14:41:05", "license": "4", "title": "Texas", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4780830944_21fd476352_o.jpg", "secret": "3c8c44326a", "media": "photo", "latitude": "0", "id": "4780830944", "tags": "raw"}, {"datetaken": "2010-07-10 14:41:26", "license": "4", "title": "Dallas, Texas", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4780210515_c4aac9ac5a_o.jpg", "secret": "6995897743", "media": "photo", "latitude": "0", "id": "4780210515", "tags": "raw"}, {"datetaken": "2010-07-10 14:41:37", "license": "4", "title": "Cozumel, Mexico", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4780827634_295b847d9f_o.jpg", "secret": "79bcc88386", "media": "photo", "latitude": "0", "id": "4780827634", "tags": "raw"}, {"datetaken": "2010-07-10 14:41:49", "license": "4", "title": "Las Vegas", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4780199079_3195dca361_o.jpg", "secret": "eed308f7be", "media": "photo", "latitude": "0", "id": "4780199079", "tags": "raw"}, {"datetaken": "2010-07-10 14:42:02", "license": "4", "title": "Jamaica No Problem", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4780195043_24a514bbe0_o.jpg", "secret": "0778fe7be6", "media": "photo", "latitude": "0", "id": "4780195043", "tags": "raw"}, {"datetaken": "2010-07-10 14:42:11", "license": "4", "title": "Hard Rock Cafe \u00b7 Myrtle Beach", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4780843078_d67ec96741_o.jpg", "secret": "d4eddec9f6", "media": "photo", "latitude": "0", "id": "4780843078", "tags": "raw"}, {"datetaken": "2010-07-10 14:42:21", "license": "4", "title": "Etched Mickey", "text": "", "album_id": "72157624340134097", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4780822672_0b0fed7a92_o.jpg", "secret": "05e87bdcaa", "media": "photo", "latitude": "0", "id": "4780822672", "tags": "raw"}, {"datetaken": "2011-07-10 11:34:24", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6021/5922760161_cb437085f7_o.jpg", "secret": "fe9f197955", "media": "photo", "latitude": "0", "id": "5922760161", "tags": "dog"}, {"datetaken": "2011-07-10 11:42:24", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6140/5923327272_cf8a1504c6_o.jpg", "secret": "a760fa287e", "media": "photo", "latitude": "0", "id": "5923327272", "tags": "dog"}, {"datetaken": "2011-07-10 11:50:26", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6133/5923329822_203bcc7796_o.jpg", "secret": "0d25ea13ce", "media": "photo", "latitude": "0", "id": "5923329822", "tags": "dog"}, {"datetaken": "2011-07-10 12:01:11", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6147/5923336994_0a746bec07_o.jpg", "secret": "dbbc1baa18", "media": "photo", "latitude": "0", "id": "5923336994", "tags": "dog"}, {"datetaken": "2011-07-10 12:17:12", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6132/5923342862_dd7209e45a_o.jpg", "secret": "9518ceae60", "media": "photo", "latitude": "0", "id": "5923342862", "tags": "dog"}, {"datetaken": "2011-07-10 12:18:40", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6029/5922781689_5842b8a98c_o.jpg", "secret": "817c8fa9b0", "media": "photo", "latitude": "0", "id": "5922781689", "tags": "dog"}, {"datetaken": "2011-07-10 12:20:10", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6028/5922786963_5086968125_o.jpg", "secret": "a913ef970e", "media": "photo", "latitude": "0", "id": "5922786963", "tags": "dog"}, {"datetaken": "2011-07-10 12:20:16", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6013/5922793947_b09886f32d_o.jpg", "secret": "ddcd058aff", "media": "photo", "latitude": "0", "id": "5922793947", "tags": "dog"}, {"datetaken": "2011-07-10 12:20:33", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6030/5923363988_14fc7622f6_o.jpg", "secret": "8ae571fff8", "media": "photo", "latitude": "0", "id": "5923363988", "tags": "dog"}, {"datetaken": "2011-07-10 12:21:33", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6129/5922803627_765017e7ab_o.jpg", "secret": "28f7d3bb7e", "media": "photo", "latitude": "0", "id": "5922803627", "tags": "dog"}, {"datetaken": "2011-07-10 12:25:29", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6007/5922807835_dd31bf0a15_o.jpg", "secret": "3015ebcee4", "media": "photo", "latitude": "0", "id": "5922807835", "tags": "dog"}, {"datetaken": "2011-07-10 12:25:40", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6009/5923378116_7cbd07c905_o.jpg", "secret": "b5044b3337", "media": "photo", "latitude": "0", "id": "5923378116", "tags": "dog"}, {"datetaken": "2011-07-10 12:26:02", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6008/5923381136_1f047d6673_o.jpg", "secret": "7fa71b553c", "media": "photo", "latitude": "0", "id": "5923381136", "tags": "dog"}, {"datetaken": "2011-07-10 12:26:23", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6131/5923386326_56e5fb06aa_o.jpg", "secret": "61ce66de4e", "media": "photo", "latitude": "0", "id": "5923386326", "tags": "dog"}, {"datetaken": "2011-07-10 12:32:59", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6125/5923391974_0404b5b284_o.jpg", "secret": "5d6e16c45d", "media": "photo", "latitude": "0", "id": "5923391974", "tags": "dog"}, {"datetaken": "2011-07-10 12:33:45", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6025/5923394868_2a9ef6a64d_o.jpg", "secret": "0134089c87", "media": "photo", "latitude": "0", "id": "5923394868", "tags": "dog"}, {"datetaken": "2011-07-10 12:33:51", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6148/5922833331_bc49517002_o.jpg", "secret": "772afffce9", "media": "photo", "latitude": "0", "id": "5922833331", "tags": "dog"}, {"datetaken": "2011-07-10 12:34:09", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6001/5922839135_4ed61e8ab6_o.jpg", "secret": "787144d0ea", "media": "photo", "latitude": "0", "id": "5922839135", "tags": "dog"}, {"datetaken": "2011-07-10 12:34:23", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6142/5923414240_ce55fbe362_o.jpg", "secret": "3da3d488f1", "media": "photo", "latitude": "0", "id": "5923414240", "tags": "dog"}, {"datetaken": "2011-07-10 12:34:26", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6140/5923419560_e444ab4e10_o.jpg", "secret": "326b37cba8", "media": "photo", "latitude": "0", "id": "5923419560", "tags": "dog"}, {"datetaken": "2011-07-10 12:34:52", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6150/5923422604_1caa0c8688_o.jpg", "secret": "8e27352cb0", "media": "photo", "latitude": "0", "id": "5923422604", "tags": "dog"}, {"datetaken": "2011-07-10 12:36:27", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6029/5937267713_9e63559f05_o.jpg", "secret": "fe35c2ce3b", "media": "photo", "latitude": "0", "id": "5937267713", "tags": "dog"}, {"datetaken": "2011-07-10 12:37:09", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6021/5922863261_e44b7cf453_o.jpg", "secret": "b804e4cd41", "media": "photo", "latitude": "0", "id": "5922863261", "tags": "dog"}, {"datetaken": "2011-07-10 12:37:15", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6126/5923434146_e1d5cc5c4c_o.jpg", "secret": "a7e9e837ff", "media": "photo", "latitude": "0", "id": "5923434146", "tags": "dog"}, {"datetaken": "2011-07-10 12:38:24", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6136/5923437912_0f0be2f5fe_o.jpg", "secret": "394741f8e8", "media": "photo", "latitude": "0", "id": "5923437912", "tags": "dog"}, {"datetaken": "2011-07-10 12:38:40", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6140/5922875823_338fce1480_o.jpg", "secret": "e3981f69ab", "media": "photo", "latitude": "0", "id": "5922875823", "tags": "dog"}, {"datetaken": "2011-07-10 12:50:11", "license": "1", "title": "Fleet Carnival Dog Show 2011", "text": "", "album_id": "72157627038584781", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6148/5922881329_b87b9301ac_o.jpg", "secret": "97f2b626c5", "media": "photo", "latitude": "0", "id": "5922881329", "tags": "dog"}, {"datetaken": "2011-02-11 23:56:25", "license": "3", "title": "Waves", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/5440691632_883a66784f_o.jpg", "secret": "4ec2672fe6", "media": "photo", "latitude": "0", "id": "5440691632", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-11 23:56:53", "license": "3", "title": "Banner", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5217/5440081627_059dee66dd_o.jpg", "secret": "d106f96391", "media": "photo", "latitude": "0", "id": "5440081627", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-11 23:57:14", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/5440681882_e7f4043b7c_o.jpg", "secret": "09985afde0", "media": "photo", "latitude": "0", "id": "5440681882", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:03:52", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/5440068567_bca4881eeb_o.jpg", "secret": "edde4a3f08", "media": "photo", "latitude": "0", "id": "5440068567", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:04:56", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5140/5440062733_9b972143b1_o.jpg", "secret": "87680d1872", "media": "photo", "latitude": "0", "id": "5440062733", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:19:28", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/5440055803_491d15256a_o.jpg", "secret": "d8607af596", "media": "photo", "latitude": "0", "id": "5440055803", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:19:44", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5053/5440656620_f2714654c1_o.jpg", "secret": "39e56644b1", "media": "photo", "latitude": "0", "id": "5440656620", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:26:44", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5017/5440045403_96526b9b2f_o.jpg", "secret": "277d30557b", "media": "photo", "latitude": "0", "id": "5440045403", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:26:56", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/5440036635_5c368ee7dd_o.jpg", "secret": "7b06c40e65", "media": "photo", "latitude": "0", "id": "5440036635", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:27:17", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5136/5440632798_789449ac61_o.jpg", "secret": "333aaba15b", "media": "photo", "latitude": "0", "id": "5440632798", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:27:21", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5179/5440623518_4924047d53_o.jpg", "secret": "dda506f113", "media": "photo", "latitude": "0", "id": "5440623518", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:27:23", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5299/5440614928_b6a70992f3_o.jpg", "secret": "190a2fe23c", "media": "photo", "latitude": "0", "id": "5440614928", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:27:28", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5255/5439975811_98be9e4ae2_o.jpg", "secret": "0f628cacfe", "media": "photo", "latitude": "0", "id": "5439975811", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:27:47", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5093/5440605406_f79817a907_o.jpg", "secret": "b28475e70d", "media": "photo", "latitude": "0", "id": "5440605406", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:27:54", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5254/5439990365_75b2d7d620_o.jpg", "secret": "289376f60b", "media": "photo", "latitude": "0", "id": "5439990365", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:28:59", "license": "3", "title": "Main Street", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5015/5439981051_8803a4fccb_o.jpg", "secret": "ff647f83b3", "media": "photo", "latitude": "0", "id": "5439981051", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:29:21", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/5440572140_9ee63c8b84_o.jpg", "secret": "ef85c1ae85", "media": "photo", "latitude": "0", "id": "5440572140", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:30:14", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5299/5439959249_8ae1585451_o.jpg", "secret": "be63a114ea", "media": "photo", "latitude": "0", "id": "5439959249", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:30:39", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5099/5439950937_bc37163290_o.jpg", "secret": "fef0f2a95d", "media": "photo", "latitude": "0", "id": "5439950937", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:30:43", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5097/5439942143_d0b36c7249_o.jpg", "secret": "c4410d6975", "media": "photo", "latitude": "0", "id": "5439942143", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2011-02-12 00:30:48", "license": "3", "title": "", "text": "", "album_id": "72157626036703040", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5297/5440538786_9835eb1f0b_o.jpg", "secret": "ca9b0c2e61", "media": "photo", "latitude": "0", "id": "5440538786", "tags": "carnival winter cooperstown 2011"}, {"datetaken": "2010-08-21 17:49:16", "license": "1", "title": "IMG_3936", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/5439316889_18d6497548_o.jpg", "secret": "4af2d8fe66", "media": "photo", "latitude": "0", "id": "5439316889", "tags": "sheppeysummercarnival"}, {"datetaken": "2010-08-21 17:50:29", "license": "1", "title": "IMG_3945", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5140/5439921634_31d52c37cb_o.jpg", "secret": "789f5c1af9", "media": "photo", "latitude": "0", "id": "5439921634", "tags": "sheppeysummercarnival"}, {"datetaken": "2010-08-21 17:50:52", "license": "1", "title": "IMG_3951", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5174/5439317275_e43c0ccda8_o.jpg", "secret": "343d28f972", "media": "photo", "latitude": "0", "id": "5439317275", "tags": "carnival summer sheppey strudwick carnivalsheppey courtannaleise soleckilouise chilleyjoanne"}, {"datetaken": "2010-08-21 17:52:06", "license": "1", "title": "IMG_3957", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5172/5439317141_25a74cf9f7_o.jpg", "secret": "cf4fa52dbd", "media": "photo", "latitude": "0", "id": "5439317141", "tags": "sheppeysummercarnival"}, {"datetaken": "2010-08-21 17:52:33", "license": "1", "title": "IMG_3959", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5093/5439317529_c2471231ce_o.jpg", "secret": "36f168b5ef", "media": "photo", "latitude": "0", "id": "5439317529", "tags": "sheppeysummercarnival minstercarnivalcourt feyacampbell paigeallen"}, {"datetaken": "2010-08-21 17:54:05", "license": "1", "title": "IMG_3967", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5253/5439317745_fc27a7c4b9_o.jpg", "secret": "4e753255f1", "media": "photo", "latitude": "0", "id": "5439317745", "tags": "dealregattacourt sheppeysummercarnival yasminrubens"}, {"datetaken": "2010-08-21 17:54:09", "license": "1", "title": "IMG_3968", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5171/5439318077_058c95c58e_o.jpg", "secret": "3082448533", "media": "photo", "latitude": "0", "id": "5439318077", "tags": "dealregattacourt sheppeysummercarnival astonhibbert yasminrubens"}, {"datetaken": "2010-08-21 17:54:20", "license": "1", "title": "IMG_3970", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5017/5439923452_0b64187e0f_o.jpg", "secret": "c4bbd2bfd9", "media": "photo", "latitude": "0", "id": "5439923452", "tags": "ayleshamcarnivalcourt sheppeysummercarnival elizabethdonnachie"}, {"datetaken": "2010-08-21 17:55:31", "license": "1", "title": "IMG_3983", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5137/5439318525_269a86c716_o.jpg", "secret": "cdf14a0c32", "media": "photo", "latitude": "0", "id": "5439318525", "tags": "hastingscarnivalcourt sheppeysummercarnival tamaragates"}, {"datetaken": "2010-08-21 17:56:32", "license": "1", "title": "IMG_3985 p", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5253/5439932920_51e172d1cd_o.jpg", "secret": "d0f56eef9e", "media": "photo", "latitude": "0", "id": "5439932920", "tags": "sandwichcarnivalcourt sheppeysummercarnival kerryannevinson"}, {"datetaken": "2010-08-21 17:56:35", "license": "1", "title": "IMG_3988", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/5439318833_6045cbcb39_o.jpg", "secret": "0455ac2731", "media": "photo", "latitude": "0", "id": "5439318833", "tags": "sandwichcarnivalcourt sheppeysummercarnival kerryannevinson"}, {"datetaken": "2010-08-21 17:56:40", "license": "1", "title": "IMG_3992", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5298/5439924762_2c041637af_o.jpg", "secret": "db728ec38c", "media": "photo", "latitude": "0", "id": "5439924762", "tags": "sandwichcarnivalcourt sheppeysummercarnival kerryannevinson"}, {"datetaken": "2010-08-21 17:57:23", "license": "1", "title": "IMG_3995", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5013/5439319395_78b9a6bb2f_o.jpg", "secret": "7f6fa315cb", "media": "photo", "latitude": "0", "id": "5439319395", "tags": "sheppeysummercarnival rachaelbookerpook marialawrence rhiannonpressnell stingbournecarnivalcourt"}, {"datetaken": "2010-08-21 17:58:04", "license": "1", "title": "IMG_3999", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5134/5439925574_820ef98c9b_o.jpg", "secret": "efc9f888b9", "media": "photo", "latitude": "0", "id": "5439925574", "tags": "sheppeysummercarnival lyddclubdaycourt"}, {"datetaken": "2010-08-21 17:59:18", "license": "1", "title": "IMG_4008", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5179/5439925166_e97514a7fa_o.jpg", "secret": "15f9f060fb", "media": "photo", "latitude": "0", "id": "5439925166", "tags": "sheppeysummercarnival whitstablecarnivalcourt verityrichardson lizzecox ellemartin"}, {"datetaken": "2010-08-21 17:59:20", "license": "1", "title": "IMG_4010", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5180/5439925954_682187b6f9_o.jpg", "secret": "293ccdbc08", "media": "photo", "latitude": "0", "id": "5439925954", "tags": "sheppeysummercarnival whitstablecarnivalcourt verityrichardson ellemartin"}, {"datetaken": "2010-08-21 17:59:37", "license": "1", "title": "IMG_4014", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/5439926500_9f03acfe38_o.jpg", "secret": "929f65d7ba", "media": "photo", "latitude": "0", "id": "5439926500", "tags": "sheppeysummercarnival"}, {"datetaken": "2010-08-21 18:00:05", "license": "1", "title": "IMG_4019", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5300/5439928922_4cf962b5ac_o.jpg", "secret": "4fd9ed7ce0", "media": "photo", "latitude": "0", "id": "5439928922", "tags": "christinechristian sheppeysummercarnival scarlettmann heathercumberland favershamcarnivalcourt"}, {"datetaken": "2010-08-21 18:01:54", "license": "1", "title": "IMG_4029", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5011/5439928638_0211d228e8_o.jpg", "secret": "d2797f520a", "media": "photo", "latitude": "0", "id": "5439928638", "tags": "abbiejohnson sheppeysummercarnival invictakentcourt riadavis kellysamson"}, {"datetaken": "2010-08-21 18:01:59", "license": "1", "title": "IMG_4032", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5295/5439928340_f2695f77ea_o.jpg", "secret": "38d2fac057", "media": "photo", "latitude": "0", "id": "5439928340", "tags": "abbiejohnson sheppeysummercarnival invictakentcourt riadavis"}, {"datetaken": "2010-08-21 18:02:51", "license": "1", "title": "IMG_4039", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5100/5439324085_0833141716_o.jpg", "secret": "0ba84ec3e2", "media": "photo", "latitude": "0", "id": "5439324085", "tags": "sheppeysummercarnival carrisffrench sofiestroud jordansehmbi"}, {"datetaken": "2010-08-21 18:10:06", "license": "1", "title": "IMG_4043", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5257/5439324235_01eeee3560_o.jpg", "secret": "b3d6b8a24d", "media": "photo", "latitude": "0", "id": "5439324235", "tags": "sheppeysummercarnival courtofkent maddiehennesseywahdan becrobson"}, {"datetaken": "2010-08-21 18:14:45", "license": "1", "title": "IMG_4044", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/5439324809_b3805b9387_o.jpg", "secret": "970a3c03d8", "media": "photo", "latitude": "0", "id": "5439324809", "tags": "sheppeysummercarnival courtofkent becrobson"}, {"datetaken": "2010-08-21 18:19:40", "license": "1", "title": "IMG_4056", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5133/5439929518_091871e4c0_o.jpg", "secret": "f1b720b1bb", "media": "photo", "latitude": "0", "id": "5439929518", "tags": "sheppeysummercarnival carrisffrench sofiestroud"}, {"datetaken": "2010-08-21 18:51:19", "license": "1", "title": "IMG_4073", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5134/5439324559_6689c93cdb_o.jpg", "secret": "97822844cc", "media": "photo", "latitude": "0", "id": "5439324559", "tags": "sheppeysummercarnival"}, {"datetaken": "2010-08-21 18:52:31", "license": "1", "title": "IMG_4075", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5057/5439325387_925f53b4c9_o.jpg", "secret": "01b5438d80", "media": "photo", "latitude": "0", "id": "5439325387", "tags": "sheppeysummercarnival minstercarnivalcourt"}, {"datetaken": "2010-08-21 18:55:02", "license": "1", "title": "IMG_4081", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5294/5439325035_5621490a08_o.jpg", "secret": "0b9bbafe7b", "media": "photo", "latitude": "0", "id": "5439325035", "tags": "dealregattacourt sheppeysummercarnival astonhibbert amiecheap"}, {"datetaken": "2010-08-21 18:55:06", "license": "1", "title": "IMG_4082", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5211/5439930766_7d564cfbb9_o.jpg", "secret": "ea51de75dc", "media": "photo", "latitude": "0", "id": "5439930766", "tags": "dealregattacourt sheppeysummercarnival amiecheap"}, {"datetaken": "2010-08-21 18:55:45", "license": "1", "title": "IMG_4086", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/5439930966_e10ebf5988_o.jpg", "secret": "87d4f1494e", "media": "photo", "latitude": "0", "id": "5439930966", "tags": "ayleshamcarnivalcourt sheppeysummercarnival elizabethdonnachie"}, {"datetaken": "2010-08-21 18:56:05", "license": "1", "title": "IMG_4088", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5060/5439931122_83fc438f11_o.jpg", "secret": "f578ba5a3a", "media": "photo", "latitude": "0", "id": "5439931122", "tags": "sheppeysummercarnival"}, {"datetaken": "2010-08-21 18:56:59", "license": "1", "title": "IMG_4091", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5251/5439326201_6d920856f7_o.jpg", "secret": "a4ac677ba8", "media": "photo", "latitude": "0", "id": "5439326201", "tags": "popeye sheppeysummercarnival"}, {"datetaken": "2010-08-21 18:57:45", "license": "1", "title": "IMG_4094", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5051/5439932062_4247673ceb_o.jpg", "secret": "77f4d6380c", "media": "photo", "latitude": "0", "id": "5439932062", "tags": "hastingscarnivalcourt sheppeysummercarnival tamaragates"}, {"datetaken": "2010-08-21 18:59:24", "license": "1", "title": "IMG_4099", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/5439931766_95e6d6ba54_o.jpg", "secret": "ebb434e257", "media": "photo", "latitude": "0", "id": "5439931766", "tags": "sandwichcarnivalcourt sheppeysummercarnival kerryannvinson"}, {"datetaken": "2010-08-21 19:00:24", "license": "1", "title": "IMG_4104", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5260/5439932346_cc37f5666e_o.jpg", "secret": "f454b4ddfb", "media": "photo", "latitude": "0", "id": "5439932346", "tags": "sheppeysummercarnival sittingbournecarnivalcourt rachaelbookerpook marialawrence rhiannonpressnell"}, {"datetaken": "2010-08-21 19:02:44", "license": "1", "title": "IMG_4118", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5096/5439327693_7f917e4a09_o.jpg", "secret": "9b33c31608", "media": "photo", "latitude": "0", "id": "5439327693", "tags": "sheppeysummercarnival whitstablecarnivalcourt verityrichardson ellemartin"}, {"datetaken": "2010-08-21 19:05:31", "license": "1", "title": "IMG_4121", "text": "", "album_id": "72157625908803155", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5218/5439932598_b04b848e42_o.jpg", "secret": "765b4e8391", "media": "photo", "latitude": "0", "id": "5439932598", "tags": "sheppeysummercarnival"}, {"datetaken": "2010-10-11 20:23:11", "license": "6", "title": "Cayce", "text": "", "album_id": "72157625149674570", "longitude": "-81.076698", "url_o": "https://farm5.staticflickr.com/4024/5075827306_610acdcdf2_o.jpg", "secret": "409014a35f", "media": "photo", "latitude": "33.972833", "id": "5075827306", "tags": ""}, {"datetaken": "2010-10-11 20:23:26", "license": "6", "title": "Cayce 2", "text": "", "album_id": "72157625149674570", "longitude": "-81.076354", "url_o": "https://farm5.staticflickr.com/4110/5075827558_379dec4c13_o.jpg", "secret": "57370ae101", "media": "photo", "latitude": "33.972975", "id": "5075827558", "tags": ""}, {"datetaken": "2010-10-11 20:23:40", "license": "6", "title": "Cayce 3", "text": "", "album_id": "72157625149674570", "longitude": "-81.076354", "url_o": "https://farm5.staticflickr.com/4050/5075827834_081fd7305d_o.jpg", "secret": "54f4e07f5e", "media": "photo", "latitude": "33.972691", "id": "5075827834", "tags": ""}, {"datetaken": "2010-10-11 20:23:58", "license": "6", "title": "Cayce 4", "text": "", "album_id": "72157625149674570", "longitude": "-81.076698", "url_o": "https://farm5.staticflickr.com/4056/5075230227_f157e4c50d_o.jpg", "secret": "45790ba29e", "media": "photo", "latitude": "33.973402", "id": "5075230227", "tags": ""}, {"datetaken": "2010-10-11 20:33:36", "license": "6", "title": "NS leads Strates Carnival Train", "text": "", "album_id": "72157625149674570", "longitude": "-81.128196", "url_o": "https://farm5.staticflickr.com/4086/5075228699_549965e1d4_o.jpg", "secret": "c52b8f6c0f", "media": "photo", "latitude": "33.975253", "id": "5075228699", "tags": "ns 7054 strates gp50 ns7054"}, {"datetaken": "2010-10-11 20:33:39", "license": "6", "title": "NS 7054 on Strates Carnival Train", "text": "", "album_id": "72157625149674570", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/5075228991_b9321837d4_o.jpg", "secret": "4a5d60ed33", "media": "photo", "latitude": "0", "id": "5075228991", "tags": ""}, {"datetaken": "2010-10-11 20:33:45", "license": "6", "title": "Picture 007", "text": "", "album_id": "72157625149674570", "longitude": "-81.136779", "url_o": "https://farm5.staticflickr.com/4054/5075828496_061458335a_o.jpg", "secret": "77e64a2aa8", "media": "photo", "latitude": "33.971979", "id": "5075828496", "tags": ""}, {"datetaken": "2010-10-11 20:33:54", "license": "6", "title": "Picture 008", "text": "", "album_id": "72157625149674570", "longitude": "-81.137123", "url_o": "https://farm5.staticflickr.com/4130/5075230967_1bc4c337d5_o.jpg", "secret": "e3b66644b6", "media": "photo", "latitude": "33.971979", "id": "5075230967", "tags": ""}, {"datetaken": "2010-10-11 20:33:58", "license": "6", "title": "Picture 009", "text": "", "album_id": "72157625149674570", "longitude": "-81.136779", "url_o": "https://farm5.staticflickr.com/4072/5075829266_84c889e723_o.jpg", "secret": "15b60810e9", "media": "photo", "latitude": "33.971836", "id": "5075829266", "tags": ""}, {"datetaken": "2010-10-11 20:34:06", "license": "6", "title": "Picture 010", "text": "", "album_id": "72157625149674570", "longitude": "-81.136779", "url_o": "https://farm5.staticflickr.com/4092/5075829562_469d1a3498_o.jpg", "secret": "df4242e8e7", "media": "photo", "latitude": "33.971409", "id": "5075829562", "tags": ""}, {"datetaken": "2010-10-11 20:34:18", "license": "6", "title": "Picture 011", "text": "", "album_id": "72157625149674570", "longitude": "-81.136093", "url_o": "https://farm5.staticflickr.com/4016/5075829914_271b95f65f_o.jpg", "secret": "cc35946299", "media": "photo", "latitude": "33.971552", "id": "5075829914", "tags": ""}, {"datetaken": "2010-10-11 20:34:25", "license": "6", "title": "Picture 012", "text": "", "album_id": "72157625149674570", "longitude": "-81.136779", "url_o": "https://farm5.staticflickr.com/4004/5075830184_fd30587c3a_o.jpg", "secret": "8f4db0bbcf", "media": "photo", "latitude": "33.971979", "id": "5075830184", "tags": ""}, {"datetaken": "2010-10-11 20:35:43", "license": "6", "title": "Picture 013", "text": "", "album_id": "72157625149674570", "longitude": "-81.136779", "url_o": "https://farm5.staticflickr.com/4058/5075232723_7502ece42d_o.jpg", "secret": "b29ef9c358", "media": "photo", "latitude": "33.972121", "id": "5075232723", "tags": ""}, {"datetaken": "2010-10-11 20:35:47", "license": "6", "title": "Picture 014", "text": "", "album_id": "72157625149674570", "longitude": "-81.136779", "url_o": "https://farm5.staticflickr.com/4111/5075830900_dd23222bee_o.jpg", "secret": "4abffc7af5", "media": "photo", "latitude": "33.971125", "id": "5075830900", "tags": ""}, {"datetaken": "2010-10-11 20:35:54", "license": "6", "title": "Picture 015", "text": "", "album_id": "72157625149674570", "longitude": "-81.136779", "url_o": "https://farm5.staticflickr.com/4085/5075831206_343d88a6e0_o.jpg", "secret": "bb814f923d", "media": "photo", "latitude": "33.970697", "id": "5075831206", "tags": ""}, {"datetaken": "2010-10-11 20:36:01", "license": "6", "title": "Picture 016", "text": "", "album_id": "72157625149674570", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/5075831570_7e350573d8_o.jpg", "secret": "d3cd6d29ca", "media": "photo", "latitude": "0", "id": "5075831570", "tags": ""}, {"datetaken": "2010-10-11 20:36:09", "license": "6", "title": "Picture 017", "text": "", "album_id": "72157625149674570", "longitude": "-81.136093", "url_o": "https://farm5.staticflickr.com/4035/5075234409_b57a894cf4_o.jpg", "secret": "5c312c226d", "media": "photo", "latitude": "33.971694", "id": "5075234409", "tags": ""}, {"datetaken": "2010-10-11 20:36:13", "license": "6", "title": "Picture 018", "text": "", "album_id": "72157625149674570", "longitude": "-81.137466", "url_o": "https://farm5.staticflickr.com/4017/5075234681_625d15a877_o.jpg", "secret": "f66c247a54", "media": "photo", "latitude": "33.971836", "id": "5075234681", "tags": ""}, {"datetaken": "2010-10-11 20:36:28", "license": "6", "title": "Picture 019", "text": "", "album_id": "72157625149674570", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/5075235013_0e0bf5e339_o.jpg", "secret": "aef017cf97", "media": "photo", "latitude": "0", "id": "5075235013", "tags": ""}, {"datetaken": "2010-10-11 20:36:34", "license": "6", "title": "Picture 020", "text": "", "album_id": "72157625149674570", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4154/5075235321_6bb801b644_o.jpg", "secret": "0db969fb04", "media": "photo", "latitude": "0", "id": "5075235321", "tags": ""}, {"datetaken": "2010-10-11 20:36:58", "license": "6", "title": "Picture 021", "text": "", "album_id": "72157625149674570", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4112/5075235619_8b7fbba812_o.jpg", "secret": "2c28965c64", "media": "photo", "latitude": "0", "id": "5075235619", "tags": ""}, {"datetaken": "2010-10-11 20:37:02", "license": "6", "title": "Picture 022", "text": "", "album_id": "72157625149674570", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/5075235951_9bd899e346_o.jpg", "secret": "7ee2887c65", "media": "photo", "latitude": "0", "id": "5075235951", "tags": ""}, {"datetaken": "2010-10-11 20:37:06", "license": "6", "title": "Picture 023", "text": "", "album_id": "72157625149674570", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/5075236467_61fed18c33_o.jpg", "secret": "0cc56f93f8", "media": "photo", "latitude": "0", "id": "5075236467", "tags": ""}, {"datetaken": "2010-10-11 20:37:11", "license": "6", "title": "Picture 024", "text": "", "album_id": "72157625149674570", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/5075236773_df922e0da7_o.jpg", "secret": "beea1dcd6d", "media": "photo", "latitude": "0", "id": "5075236773", "tags": ""}, {"datetaken": "2010-11-11 13:31:03", "license": "1", "title": "K\u00f6lner Stadtwappen // City arms of Cologne", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1340/5168014140_cc66675354_o.jpg", "secret": "6f68d90b60", "media": "photo", "latitude": "0", "id": "5168014140", "tags": "germany de deutschland nikon cologne crest ko\u0308ln wappen stadtwappen cityarms d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 13:41:54", "license": "1", "title": "Photowalk 2010-11-11 001", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/5170796167_abaf129feb_o.jpg", "secret": "5a1cb1eab1", "media": "photo", "latitude": "0", "id": "5170796167", "tags": "autumn leaves germany de deutschland nikon laub herbst cologne ko\u0308ln d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 13:42:32", "license": "1", "title": "Photowalk 2010-11-11 002", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/5171398416_6ab380559e_o.jpg", "secret": "3e34be9dce", "media": "photo", "latitude": "0", "id": "5171398416", "tags": "streetart germany de deutschland graffiti nikon cologne ko\u0308ln sooc d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 13:44:59", "license": "1", "title": "Photowalk 2010-11-11 003", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4088/5171398648_aa37dcc378_o.jpg", "secret": "d5975f2988", "media": "photo", "latitude": "0", "id": "5171398648", "tags": "streetart wall fence germany de deutschland graffiti nikon cologne mauer gitter ko\u0308ln d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 13:46:56", "license": "1", "title": "Photowalk 2010-11-11 004", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/5170796703_3aeac4b1f5_o.jpg", "secret": "c20ce45a1a", "media": "photo", "latitude": "0", "id": "5170796703", "tags": "streetart germany de deutschland graffiti nikon cologne ko\u0308ln sooc d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 13:47:54", "license": "1", "title": "Photowalk 2010-11-11 005", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4091/5170797251_2af00d3511_o.jpg", "secret": "6e226b356f", "media": "photo", "latitude": "0", "id": "5170797251", "tags": "carnival germany de deutschland nikon cologne sekt karneval sparklingwine ko\u0308ln sooc d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 13:48:46", "license": "1", "title": "Photowalk 2010-11-11 006", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4111/5170797553_72b208a382_o.jpg", "secret": "63179a2b85", "media": "photo", "latitude": "0", "id": "5170797553", "tags": "carnival germany de deutschland nikon cologne karneval schnaps ko\u0308ln liqour d5000 hardliqour nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 13:51:20", "license": "1", "title": "Photowalk 2010-11-11 007", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4106/5173726741_637efe72b2_o.jpg", "secret": "eeaa2e6a11", "media": "photo", "latitude": "0", "id": "5173726741", "tags": "streetart germany de soldier deutschland graffiti nikon cologne osama osamabinladen soldat ko\u0308ln sooc d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 13:54:51", "license": "1", "title": "Photowalk 2010-11-11 008", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/5173727031_beb04ee16e_o.jpg", "secret": "218a4c5b8f", "media": "photo", "latitude": "0", "id": "5173727031", "tags": "sign germany de deutschland nikon cologne schild ko\u0308ln boxingclub boxclub d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 13:55:29", "license": "1", "title": "Photowalk 2010-11-11 009", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4092/5173727695_c9cd6af63f_o.jpg", "secret": "eea8c2cf29", "media": "photo", "latitude": "0", "id": "5173727695", "tags": "bar germany de deutschland nikon jazz cologne kneipe ko\u0308ln d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 13:56:28", "license": "1", "title": "Photowalk 2010-11-11 010", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/5174332906_6f3c676b4b_o.jpg", "secret": "7632756aa0", "media": "photo", "latitude": "0", "id": "5174332906", "tags": "carnival beer germany de deutschland nikon cologne can bier cigarettes karneval zigaretten ko\u0308ln dose d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 13:57:29", "license": "1", "title": "Photowalk 2010-11-11 011", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/5173728867_e092bfa93d_o.jpg", "secret": "9687dec891", "media": "photo", "latitude": "0", "id": "5173728867", "tags": "germany de deutschland nikon sticker cologne aufkleber ko\u0308ln kswiss sooc d5000 basslove nikond5000 bassliebe nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:08:25", "license": "1", "title": "Photowalk 2010-11-11 012", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/5173729145_6fd74b2869_o.jpg", "secret": "1bca7d2355", "media": "photo", "latitude": "0", "id": "5173729145", "tags": "bar germany de deutschland nikon cologne kneipe sansibar ko\u0308ln d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:10:34", "license": "1", "title": "Photowalk 2010-11-11 013", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1033/5177830154_11558264fa_o.jpg", "secret": "de26b212dc", "media": "photo", "latitude": "0", "id": "5177830154", "tags": "germany de deutschland nikon flag cologne revolution flagge ko\u0308ln sooc d5000 nikond5000 sozialerevolution nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:13:23", "license": "1", "title": "Photowalk 2010-11-11 014", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1005/5177226807_3ac80bb34d_o.jpg", "secret": "3aaf0bd5f3", "media": "photo", "latitude": "0", "id": "5177226807", "tags": "germany de deutschland nikon cologne crest ko\u0308ln wappen d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:16:01", "license": "1", "title": "Photowalk 2010-11-11 015", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1272/5177831344_d5bce977c0_o.jpg", "secret": "a949549450", "media": "photo", "latitude": "0", "id": "5177831344", "tags": "streetart germany de deutschland graffiti nikon cologne ko\u0308ln d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:16:34", "license": "1", "title": "Photowalk 2010-11-11 016", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/5177228751_8218181448_o.jpg", "secret": "69794aa248", "media": "photo", "latitude": "0", "id": "5177228751", "tags": "germany de deutschland nikon cologne holy heilig ko\u0308ln d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:17:39", "license": "1", "title": "Photowalk 2010-11-11 017", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/5177834186_247d5a0201_o.jpg", "secret": "4877281e1d", "media": "photo", "latitude": "0", "id": "5177834186", "tags": "park autumn leaves germany de deutschland nikon laub herbst cologne ko\u0308ln sooc d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:18:31", "license": "1", "title": "Photowalk 2010-11-11 018", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1263/5177232983_a269b12a8c_o.jpg", "secret": "51fe1081dd", "media": "photo", "latitude": "0", "id": "5177232983", "tags": "park autumn leaves germany de deutschland nikon laub herbst cologne ko\u0308ln sooc d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:19:17", "license": "1", "title": "Photowalk 2010-11-11 019", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1232/5177836948_a4667b04eb_o.jpg", "secret": "eb7c53f05e", "media": "photo", "latitude": "0", "id": "5177836948", "tags": "fish germany de deutschland nikon cologne ko\u0308ln fische d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:22:19", "license": "1", "title": "Photowalk 2010-11-11 020", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1276/5177234217_4f90ff6831_o.jpg", "secret": "2aee385086", "media": "photo", "latitude": "0", "id": "5177234217", "tags": "germany de deutschland nikon cologne streetsigns ko\u0308ln sooc d5000 strasenschilder nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:23:11", "license": "1", "title": "Photowalk 2010-11-11 021", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/5177839846_df36f2c723_o.jpg", "secret": "0f20f23985", "media": "photo", "latitude": "0", "id": "5177839846", "tags": "tree leaves germany de deutschland nikon cologne baum ko\u0308ln sooc d5000 bla\u0308tter nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:24:57", "license": "1", "title": "Photowalk 2010-11-11 022", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1351/5180996403_8fe037fc56_o.jpg", "secret": "68f1f50966", "media": "photo", "latitude": "0", "id": "5180996403", "tags": "germany de deutschland nikon cologne ko\u0308ln d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:28:42", "license": "1", "title": "Photowalk 2010-11-11 023", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1044/5180996945_6b5f18f4e3_o.jpg", "secret": "12f6147807", "media": "photo", "latitude": "0", "id": "5180996945", "tags": "germany de deutschland nikon sticker cigarette cologne aufkleber zigarette ko\u0308ln sooc d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:33:10", "license": "1", "title": "Photowalk 2010-11-11 024", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1279/5180997571_06d11a02c7_o.jpg", "secret": "4ab76bd382", "media": "photo", "latitude": "0", "id": "5180997571", "tags": "street cars germany de deutschland nikon cologne autos ko\u0308ln strase sooc d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:40:40", "license": "1", "title": "Photowalk 2010-11-11 025", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1011/5180997977_39865602da_o.jpg", "secret": "d322a2478c", "media": "photo", "latitude": "0", "id": "5180997977", "tags": "church germany de deutschland nikon kirche cologne morbid ko\u0308ln d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:40:54", "license": "1", "title": "Photowalk 2010-11-11 026", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1339/5180998231_952e2f6ba4_o.jpg", "secret": "94c2cd987d", "media": "photo", "latitude": "0", "id": "5180998231", "tags": "church germany de deutschland nikon kirche cologne morbid ko\u0308ln d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:47:56", "license": "1", "title": "Photowalk 2010-11-11 027", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1415/5180999037_733cf258c1_o.jpg", "secret": "ced4d57c94", "media": "photo", "latitude": "0", "id": "5180999037", "tags": "bridge stairs germany de deutschland nikon cologne treppe ko\u0308ln bru\u0308cke sooc d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:50:11", "license": "1", "title": "Photowalk 2010-11-11 028", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/5184592230_55e534bd82_o.jpg", "secret": "e052b4bf48", "media": "photo", "latitude": "0", "id": "5184592230", "tags": "germany de deutschland nikon ruin cologne ruine lufthansa ko\u0308ln d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:54:59", "license": "1", "title": "Photowalk 2010-11-11 029", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4110/5184592638_a5c655e1a6_o.jpg", "secret": "71297b9aa8", "media": "photo", "latitude": "0", "id": "5184592638", "tags": "river germany de deutschland nikon cologne fluss rhine rhein ko\u0308ln dredger baggerschiff d5000 cranehouses nikond5000 nikkor18105mmf3556edvr kranha\u0308user"}, {"datetaken": "2010-11-11 14:56:22", "license": "1", "title": "Photowalk 2010-11-11 030", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1272/5184592742_86acd1ee11_o.jpg", "secret": "1e379ef182", "media": "photo", "latitude": "0", "id": "5184592742", "tags": "river germany de deutschland nikon ship cologne fluss rhine rhein schiff ko\u0308ln sooc d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:57:10", "license": "1", "title": "Photowalk 2010-11-11 031", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1350/5184593736_6e8b69e1c5_o.jpg", "secret": "86fc51316c", "media": "photo", "latitude": "0", "id": "5184593736", "tags": "street cars germany de deutschland nikon cologne tram autos ko\u0308ln strase sooc d5000 strasenbahn nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:58:49", "license": "1", "title": "Photowalk 2010-11-11 032", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1272/5183994227_c4137ab85a_o.jpg", "secret": "6803b29514", "media": "photo", "latitude": "0", "id": "5183994227", "tags": "germany de deutschland nikon cologne ko\u0308ln speedtrap radarfalle sooc d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2010-11-11 14:59:10", "license": "1", "title": "Photowalk 2010-11-11 033", "text": "", "album_id": "72157629615318518", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1432/5183995405_e90ca9320f_o.jpg", "secret": "49eb70c30b", "media": "photo", "latitude": "0", "id": "5183995405", "tags": "bridge germany de deutschland nikon cologne renovation ko\u0308ln sanierung bru\u0308cke sooc d5000 nikond5000 nikkor18105mmf3556edvr"}, {"datetaken": "2009-12-29 11:34:04", "license": "3", "title": "walkway", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2774/4356594594_252086d05a_o.jpg", "secret": "1061589066", "media": "photo", "latitude": "0", "id": "4356594594", "tags": ""}, {"datetaken": "2009-12-29 11:35:51", "license": "3", "title": "old church", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4356538140_751500a264_o.jpg", "secret": "b335f5b91f", "media": "photo", "latitude": "0", "id": "4356538140", "tags": ""}, {"datetaken": "2009-12-29 11:44:18", "license": "3", "title": "street clock", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4356562202_a3143b5e5c_o.jpg", "secret": "eb4dc48864", "media": "photo", "latitude": "0", "id": "4356562202", "tags": ""}, {"datetaken": "2009-12-29 11:53:36", "license": "3", "title": "mom", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2765/4337126623_280db4f6b2_o.jpg", "secret": "b349a70235", "media": "photo", "latitude": "0", "id": "4337126623", "tags": "portrait"}, {"datetaken": "2009-12-29 12:06:28", "license": "3", "title": "tour guide", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2776/4355811963_5d12799a18_o.jpg", "secret": "1f66c2b7e6", "media": "photo", "latitude": "0", "id": "4355811963", "tags": ""}, {"datetaken": "2009-12-29 12:48:28", "license": "3", "title": "religious", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4356560908_e1a810c790_o.jpg", "secret": "70eb75b036", "media": "photo", "latitude": "0", "id": "4356560908", "tags": ""}, {"datetaken": "2009-12-29 12:50:25", "license": "3", "title": "incense", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4355790811_4e3ff00ccd_o.jpg", "secret": "a3cbeb8693", "media": "photo", "latitude": "0", "id": "4355790811", "tags": ""}, {"datetaken": "2009-12-29 13:09:04", "license": "3", "title": "tiled streets", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4356564180_7b15ce3a60_o.jpg", "secret": "94311a13b9", "media": "photo", "latitude": "0", "id": "4356564180", "tags": ""}, {"datetaken": "2009-12-29 13:09:27", "license": "3", "title": "dad", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2705/4337869302_f5b7dc3edf_o.jpg", "secret": "3e2f4dac4f", "media": "photo", "latitude": "0", "id": "4337869302", "tags": "portrait"}, {"datetaken": "2009-12-29 14:55:56", "license": "3", "title": "bro2", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4337871466_75b25a954c_o.jpg", "secret": "e602e554ce", "media": "photo", "latitude": "0", "id": "4337871466", "tags": "portrait blackwhite"}, {"datetaken": "2009-12-29 14:56:06", "license": "3", "title": "bro", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4337128755_77d7af0be9_o.jpg", "secret": "7982f7a4cc", "media": "photo", "latitude": "0", "id": "4337128755", "tags": "portrait blackwhite"}, {"datetaken": "2009-12-29 15:31:05", "license": "3", "title": "tower height", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4356592042_878f25957a_o.jpg", "secret": "cf9d7c1f65", "media": "photo", "latitude": "0", "id": "4356592042", "tags": ""}, {"datetaken": "2009-12-29 15:35:28", "license": "3", "title": "macau tower", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4356540198_3d40e30986_o.jpg", "secret": "e7f6677c82", "media": "photo", "latitude": "0", "id": "4356540198", "tags": ""}, {"datetaken": "2009-12-29 15:45:23", "license": "3", "title": "view from macau tower", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4355865425_06fb0e38e7_o.jpg", "secret": "7e4ce60e12", "media": "photo", "latitude": "0", "id": "4355865425", "tags": ""}, {"datetaken": "2009-12-29 15:59:55", "license": "3", "title": "sis", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2773/4337874892_f28271f684_o.jpg", "secret": "126fd529bc", "media": "photo", "latitude": "0", "id": "4337874892", "tags": ""}, {"datetaken": "2009-12-29 21:57:46", "license": "3", "title": "hotel room", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2750/4355794241_1c1d782fc6_o.jpg", "secret": "7cc9952f2f", "media": "photo", "latitude": "0", "id": "4355794241", "tags": ""}, {"datetaken": "2009-12-29 22:23:06", "license": "3", "title": "venetian", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4356596370_e08252349f_o.jpg", "secret": "0200cfb608", "media": "photo", "latitude": "0", "id": "4356596370", "tags": ""}, {"datetaken": "2009-12-30 12:02:34", "license": "3", "title": "beautiful architecture", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4355862573_7cb7655dcf_o.jpg", "secret": "75ae8aacb8", "media": "photo", "latitude": "0", "id": "4355862573", "tags": ""}, {"datetaken": "2009-12-30 12:49:04", "license": "3", "title": "pepe", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2778/4355812905_10baa31a07_o.jpg", "secret": "0c32427f07", "media": "photo", "latitude": "0", "id": "4355812905", "tags": "portrait macau"}, {"datetaken": "2009-12-30 12:52:53", "license": "3", "title": "the giant king", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4355814189_f607f8fe57_o.jpg", "secret": "6608aedc5e", "media": "photo", "latitude": "0", "id": "4355814189", "tags": ""}, {"datetaken": "2009-12-30 13:08:47", "license": "3", "title": "other \"carnival\" peeps", "text": "", "album_id": "72157623432780770", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4356536982_ef4d3aebb7_o.jpg", "secret": "44b6b4d9a9", "media": "photo", "latitude": "0", "id": "4356536982", "tags": ""}, {"datetaken": "2010-06-12 12:23:11", "license": "5", "title": "belly dance performance", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3174/5831842057_66b3837bfc_o.jpg", "secret": "f6117cb15e", "media": "photo", "latitude": "0", "id": "5831842057", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 12:23:30", "license": "5", "title": "Karneval der Kulturen panorama", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5305/5831842207_b77a6c09b3_o.jpg", "secret": "e433800fd1", "media": "photo", "latitude": "0", "id": "5831842207", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 12:29:29", "license": "5", "title": "blue candy floss kid", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3507/5832393472_8de0493054_o.jpg", "secret": "801d6223de", "media": "photo", "latitude": "0", "id": "5832393472", "tags": "trip travel blue berlin kid sweet cyan candyfloss retinafunk 2011"}, {"datetaken": "2010-06-12 12:29:39", "license": "5", "title": "Karneval der Kulturen 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2448/5831842621_e58e98f36e_o.jpg", "secret": "68551b821f", "media": "photo", "latitude": "0", "id": "5831842621", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 12:29:45", "license": "5", "title": "Karneval der Kulturen 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3378/5832394088_9ffbc0e961_o.jpg", "secret": "06231e718f", "media": "photo", "latitude": "0", "id": "5832394088", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 12:32:49", "license": "5", "title": "Karneval der Kulturen 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2462/5832394416_11869f2e16_o.jpg", "secret": "eb0ba23950", "media": "photo", "latitude": "0", "id": "5832394416", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 12:32:57", "license": "5", "title": "Karneval der Kulturen 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3394/5832394734_01f5ea9af5_o.jpg", "secret": "f10f93d36f", "media": "photo", "latitude": "0", "id": "5832394734", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 12:33:15", "license": "5", "title": "Karneval der Kulturen 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3442/5832395064_4746108146_o.jpg", "secret": "398d23c5d5", "media": "photo", "latitude": "0", "id": "5832395064", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 12:33:45", "license": "5", "title": "Karneval der Kulturen 2011 panorama", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5266/5832395416_85da817692_o.jpg", "secret": "20b236cd9c", "media": "photo", "latitude": "0", "id": "5832395416", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 12:37:20", "license": "5", "title": "live music Karneval der Kulturen 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2691/5832395698_213cb4373b_o.jpg", "secret": "3ef6364c11", "media": "photo", "latitude": "0", "id": "5832395698", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 12:50:24", "license": "5", "title": "food at Karneval der Kulturen 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3132/5832395906_669c3d27a1_o.jpg", "secret": "1fc78766a9", "media": "photo", "latitude": "0", "id": "5832395906", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 13:01:21", "license": "5", "title": "indian Karneval der Kulturen 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3267/5832396382_d23455fe57_o.jpg", "secret": "20617de253", "media": "photo", "latitude": "0", "id": "5832396382", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 13:50:57", "license": "5", "title": "poster for Horst Krzbrg club", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3294/5832396612_57ff184e3d_o.jpg", "secret": "1d3d76f38b", "media": "photo", "latitude": "0", "id": "5832396612", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 13:51:07", "license": "5", "title": "Horst Krzbrg club doors", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3446/5831845643_87d81276f9_o.jpg", "secret": "963276873e", "media": "photo", "latitude": "0", "id": "5831845643", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 13:53:13", "license": "5", "title": "Horst Krzbrg club doors", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5277/5831845849_20de106362_o.jpg", "secret": "1ec4a29e6f", "media": "photo", "latitude": "0", "id": "5831845849", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 14:44:32", "license": "5", "title": "Wax Treatment party - poster and doors", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3139/5832397848_b8121a62bc_o.jpg", "secret": "efcb7549e3", "media": "photo", "latitude": "0", "id": "5832397848", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 14:44:37", "license": "5", "title": "yard vibez", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5239/5832398068_3a71b371e3_o.jpg", "secret": "c1b08d7218", "media": "photo", "latitude": "0", "id": "5832398068", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 16:16:15", "license": "5", "title": "Berlin Trip June 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5186/5832398216_93af0900c5_o.jpg", "secret": "85ba36ef4c", "media": "photo", "latitude": "0", "id": "5832398216", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 16:16:35", "license": "5", "title": "Berlin Trip June 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3443/5831847287_9511a7fc2c_o.jpg", "secret": "f725f10701", "media": "photo", "latitude": "0", "id": "5831847287", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 16:16:48", "license": "5", "title": "Killasan Sound", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2599/5832398830_3fc2deb5d7_o.jpg", "secret": "e25f6c944b", "media": "photo", "latitude": "0", "id": "5832398830", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 16:20:15", "license": "5", "title": "Mark Ernestus & Tikiman", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5279/5831848235_2277842932_o.jpg", "secret": "ac9387e50e", "media": "photo", "latitude": "0", "id": "5831848235", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 16:48:12", "license": "5", "title": "Berlin Trip June 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2592/5832399764_e3bb986648_o.jpg", "secret": "6e84d31b37", "media": "photo", "latitude": "0", "id": "5832399764", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 17:28:03", "license": "5", "title": "Berlin Trip June 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5303/5832400014_2804617afc_o.jpg", "secret": "965cb5c7c0", "media": "photo", "latitude": "0", "id": "5832400014", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 18:25:56", "license": "5", "title": "Berlin Trip June 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2473/5831848919_d9665081e3_o.jpg", "secret": "252471df39", "media": "photo", "latitude": "0", "id": "5831848919", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 18:26:32", "license": "5", "title": "Berlin Trip June 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2439/5831849027_d0066b93a8_o.jpg", "secret": "ea07f2720c", "media": "photo", "latitude": "0", "id": "5831849027", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 18:26:42", "license": "5", "title": "Berlin Trip June 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5155/5831849261_41981406a7_o.jpg", "secret": "606f4899a7", "media": "photo", "latitude": "0", "id": "5831849261", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 19:02:02", "license": "5", "title": "Berlin Trip June 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3554/5831849453_76f4bc2b38_o.jpg", "secret": "4df2442208", "media": "photo", "latitude": "0", "id": "5831849453", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 19:02:04", "license": "5", "title": "Berlin Trip June 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5117/5832401034_6f5646b313_o.jpg", "secret": "aa6b6db3aa", "media": "photo", "latitude": "0", "id": "5832401034", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 20:01:51", "license": "5", "title": "Berlin Trip June 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3282/5832401524_9570794fe5_o.jpg", "secret": "8364e1cd61", "media": "photo", "latitude": "0", "id": "5832401524", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 20:02:14", "license": "5", "title": "Berlin Trip June 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2802/5832401724_0b819fee6d_o.jpg", "secret": "33238bb5cd", "media": "photo", "latitude": "0", "id": "5832401724", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 20:03:26", "license": "5", "title": "Berlin Trip June 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3081/5831850673_ce2bf93b0c_o.jpg", "secret": "17721b5bb8", "media": "photo", "latitude": "0", "id": "5831850673", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 20:04:16", "license": "5", "title": "Berlin Trip June 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3286/5831850933_abeb029baa_o.jpg", "secret": "03100fe1f9", "media": "photo", "latitude": "0", "id": "5831850933", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 20:10:07", "license": "5", "title": "Berlin Trip June 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3554/5831851177_7ce34eb16d_o.jpg", "secret": "ac7f46f416", "media": "photo", "latitude": "0", "id": "5831851177", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 20:18:50", "license": "5", "title": "Berlin Trip June 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3136/5832402956_957d1f58e6_o.jpg", "secret": "b21fe9cb48", "media": "photo", "latitude": "0", "id": "5832402956", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 20:19:01", "license": "5", "title": "Berlin Trip June 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2539/5832403276_1f27d0956e_o.jpg", "secret": "012189ceca", "media": "photo", "latitude": "0", "id": "5832403276", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-12 20:20:55", "license": "5", "title": "Berlin Trip June 2011", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2541/5831852119_63ce702543_o.jpg", "secret": "bf851cbd0e", "media": "photo", "latitude": "0", "id": "5831852119", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2010-06-13 03:18:45", "license": "5", "title": "5a.m. after the party", "text": "", "album_id": "72157626880438645", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2667/5832403784_171bd5b246_o.jpg", "secret": "209d2b322d", "media": "photo", "latitude": "0", "id": "5832403784", "tags": "trip travel berlin retinafunk 2011"}, {"datetaken": "2011-07-13 21:33:00", "license": "1", "title": "28/52", "text": "", "album_id": "72157627188517330", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6020/5945830760_508789a005_o.jpg", "secret": "420cd70704", "media": "photo", "latitude": "0", "id": "5945830760", "tags": "pink selfportrait film 35mm bristol fujisuperiareala pentaxmx raceforlife 52weeks cancerresearchuk"}, {"datetaken": "2011-07-13 21:36:03", "license": "1", "title": "Lavender.", "text": "", "album_id": "72157627188517330", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6022/5943669113_dcae843397_o.jpg", "secret": "6e5a667f1a", "media": "photo", "latitude": "0", "id": "5943669113", "tags": "flowers film 35mm purple lavender fujisuperiareala pentaxmx colourprint"}, {"datetaken": "2011-07-13 21:38:07", "license": "1", "title": "Matt.", "text": "", "album_id": "72157627188517330", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6144/5944226122_37da546c94_o.jpg", "secret": "ba3921f180", "media": "photo", "latitude": "0", "id": "5944226122", "tags": "trees portrait sky film 35mm matt fujisuperiareala pentaxmx colourprint"}, {"datetaken": "2011-07-13 21:38:45", "license": "1", "title": "Charlotte.", "text": "", "album_id": "72157627188517330", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6130/5943669811_6091663ce5_o.jpg", "secret": "5d90aae2cd", "media": "photo", "latitude": "0", "id": "5943669811", "tags": "bridge portrait london film girl sunshine 35mm pond charlotte curly tarn mottingham refelctions fujisuperiareala pentaxmx colourprint"}, {"datetaken": "2011-07-13 21:39:34", "license": "1", "title": "Bridge.", "text": "", "album_id": "72157627188517330", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6148/5944226792_9c14a9a735_o.jpg", "secret": "551e520ed5", "media": "photo", "latitude": "0", "id": "5944226792", "tags": "bridge trees london film 35mm pond shadows tarn mottingham fujisuperiareala pentaxmx colourprint"}, {"datetaken": "2011-07-13 21:42:37", "license": "1", "title": "27/52", "text": "", "album_id": "72157627188517330", "longitude": "0.042530", "url_o": "https://farm7.staticflickr.com/6126/5934414925_a83b5c454c_o.jpg", "secret": "3dfe91cf22", "media": "photo", "latitude": "51.437568", "id": "5934414925", "tags": "selfportrait film sunshine shadows naturallight southlondon mottingham fujisuperiareala pentaxmv thetarn 52weeks colourprint"}, {"datetaken": "2011-07-13 22:55:23", "license": "1", "title": "Life belt.", "text": "", "album_id": "72157627188517330", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6017/5943670839_071832d4ab_o.jpg", "secret": "22d042627e", "media": "photo", "latitude": "0", "id": "5943670839", "tags": "london film 35mm pond lifebelt tarn mottingham lifering fujisuperiareala pentaxmx colourprint"}, {"datetaken": "2011-07-13 22:56:52", "license": "1", "title": "Ducks.", "text": "", "album_id": "72157627188517330", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6007/5944227900_be0a27d73d_o.jpg", "secret": "51edd1db0c", "media": "photo", "latitude": "0", "id": "5944227900", "tags": "london film 35mm reflections pond ducks tarn mottingham fujisuperiareala pentaxmx colourprint"}, {"datetaken": "2011-07-13 22:57:47", "license": "1", "title": "Charlotte.", "text": "", "album_id": "72157627188517330", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6138/5944228426_300e7be203_o.jpg", "secret": "938b347b52", "media": "photo", "latitude": "0", "id": "5944228426", "tags": "trees girls london film 35mm pond charlotte tarn mottingham fujisuperiareala pentaxmx colourprint"}, {"datetaken": "2011-07-13 23:00:42", "license": "1", "title": "USA.", "text": "", "album_id": "72157627188517330", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6014/5944225312_35db424a58_o.jpg", "secret": "5b00046594", "media": "photo", "latitude": "0", "id": "5944225312", "tags": "usa dog film 35mm bristol army military tattoos fujisuperiareala pentaxmx colourprint"}, {"datetaken": "2011-07-14 16:41:01", "license": "1", "title": "Letter box.", "text": "", "album_id": "72157627188517330", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6142/5938538382_b22e571668_o.jpg", "secret": "720e7cd73e", "media": "photo", "latitude": "0", "id": "5938538382", "tags": "film vintage bristol crossprocessed slidefilm letterbox pentaxmx fujiprovia stpaulscarnival letterbix"}, {"datetaken": "2011-07-14 18:08:11", "license": "1", "title": "DJ", "text": "", "album_id": "72157627188517330", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6027/5937982629_f2d872feec_o.jpg", "secret": "a36cfede60", "media": "photo", "latitude": "0", "id": "5937982629", "tags": "film bristol crossprocessed dj bass garage slidefilm speakers pentaxmx fujiprovia stpaulscarnival"}, {"datetaken": "2011-07-14 18:08:27", "license": "1", "title": "Necklaces.", "text": "", "album_id": "72157627188517330", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6129/5937982261_b4f773523f_o.jpg", "secret": "31e45a5644", "media": "photo", "latitude": "0", "id": "5937982261", "tags": "film bristol crossprocessed colours slidefilm necklaces pentaxmx fujiprovia stpaulscarnival"}, {"datetaken": "2010-02-14 02:09:07", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4362546116_1a83f7df18_o.jpg", "secret": "33e675488b", "media": "photo", "latitude": "0", "id": "4362546116", "tags": ""}, {"datetaken": "2010-02-14 02:28:32", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4362549594_4c301fc9c6_o.jpg", "secret": "48be1cf276", "media": "photo", "latitude": "0", "id": "4362549594", "tags": ""}, {"datetaken": "2010-02-14 02:50:04", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4361794991_d276dda95e_o.jpg", "secret": "902f12a321", "media": "photo", "latitude": "0", "id": "4361794991", "tags": ""}, {"datetaken": "2010-02-14 02:50:11", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4362539018_27702c3bb8_o.jpg", "secret": "37792dcbe4", "media": "photo", "latitude": "0", "id": "4362539018", "tags": ""}, {"datetaken": "2010-02-14 02:54:56", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4361796593_0fac55cfc8_o.jpg", "secret": "954b85904e", "media": "photo", "latitude": "0", "id": "4361796593", "tags": ""}, {"datetaken": "2010-02-14 02:55:47", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4361796115_2f3454d050_o.jpg", "secret": "1305db273f", "media": "photo", "latitude": "0", "id": "4361796115", "tags": ""}, {"datetaken": "2010-02-14 02:56:44", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4361797123_3f77365ac2_o.jpg", "secret": "374a6120ae", "media": "photo", "latitude": "0", "id": "4361797123", "tags": ""}, {"datetaken": "2010-02-14 02:57:34", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2759/4362541166_baf82a818f_o.jpg", "secret": "a73b2e2b39", "media": "photo", "latitude": "0", "id": "4362541166", "tags": ""}, {"datetaken": "2010-02-14 03:00:42", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4362541650_0c56a568ee_o.jpg", "secret": "a4b3580820", "media": "photo", "latitude": "0", "id": "4362541650", "tags": ""}, {"datetaken": "2010-02-14 03:02:33", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4362542132_8f28259cf0_o.jpg", "secret": "2b64fd2184", "media": "photo", "latitude": "0", "id": "4362542132", "tags": ""}, {"datetaken": "2010-02-14 03:03:09", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4361799009_88baeed12c_o.jpg", "secret": "64229c5a35", "media": "photo", "latitude": "0", "id": "4361799009", "tags": ""}, {"datetaken": "2010-02-14 03:03:31", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4361799489_e955060735_o.jpg", "secret": "641e23cd14", "media": "photo", "latitude": "0", "id": "4361799489", "tags": ""}, {"datetaken": "2010-02-14 03:04:29", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4361800021_984431d2b8_o.jpg", "secret": "bd58cbabca", "media": "photo", "latitude": "0", "id": "4361800021", "tags": ""}, {"datetaken": "2010-02-14 03:04:57", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4361800539_4165ac01de_o.jpg", "secret": "f7ca9573fe", "media": "photo", "latitude": "0", "id": "4361800539", "tags": ""}, {"datetaken": "2010-02-14 03:05:45", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4361801035_5918c14bd4_o.jpg", "secret": "2535e70e3f", "media": "photo", "latitude": "0", "id": "4361801035", "tags": ""}, {"datetaken": "2010-02-14 03:06:18", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2788/4361801611_56264d2cb0_o.jpg", "secret": "b4667c01b0", "media": "photo", "latitude": "0", "id": "4361801611", "tags": ""}, {"datetaken": "2010-02-14 03:06:26", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4362545768_bb1259141b_o.jpg", "secret": "de9042b23c", "media": "photo", "latitude": "0", "id": "4362545768", "tags": ""}, {"datetaken": "2010-02-14 03:06:58", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2715/4361803117_a47e4d4aea_o.jpg", "secret": "0eb5b94047", "media": "photo", "latitude": "0", "id": "4361803117", "tags": ""}, {"datetaken": "2010-02-14 03:08:11", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4362549904_e19359226f_o.jpg", "secret": "f68ff1f4ea", "media": "photo", "latitude": "0", "id": "4362549904", "tags": ""}, {"datetaken": "2010-02-14 03:15:40", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4361803561_93a2a36f65_o.jpg", "secret": "d9cc2ce3f4", "media": "photo", "latitude": "0", "id": "4361803561", "tags": ""}, {"datetaken": "2010-02-14 03:18:36", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4362547636_29ccfed80f_o.jpg", "secret": "10f24ba169", "media": "photo", "latitude": "0", "id": "4362547636", "tags": ""}, {"datetaken": "2010-02-14 03:22:45", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4362548676_7408dff1b9_o.jpg", "secret": "dd39d3f705", "media": "photo", "latitude": "0", "id": "4362548676", "tags": ""}, {"datetaken": "2010-02-14 03:23:13", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4361804589_bbba3feed0_o.jpg", "secret": "0bb395b667", "media": "photo", "latitude": "0", "id": "4361804589", "tags": ""}, {"datetaken": "2010-02-14 03:31:49", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4362549210_bd4dabcc64_o.jpg", "secret": "f97886bd3f", "media": "photo", "latitude": "0", "id": "4362549210", "tags": ""}, {"datetaken": "2010-02-14 04:10:02", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2794/4362550968_b7e7b89feb_o.jpg", "secret": "40d7fcf54a", "media": "photo", "latitude": "0", "id": "4362550968", "tags": ""}, {"datetaken": "2010-02-14 04:10:11", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4361806911_27f40b9f76_o.jpg", "secret": "120d407078", "media": "photo", "latitude": "0", "id": "4361806911", "tags": ""}, {"datetaken": "2010-02-14 04:11:03", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4361807965_63733abb50_o.jpg", "secret": "8e2b1f2e16", "media": "photo", "latitude": "0", "id": "4361807965", "tags": ""}, {"datetaken": "2010-02-14 04:11:23", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4361809041_312855d207_o.jpg", "secret": "2e4a76615d", "media": "photo", "latitude": "0", "id": "4361809041", "tags": ""}, {"datetaken": "2010-02-14 04:28:43", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2727/4361808491_903018ff8e_o.jpg", "secret": "80cd5ca7b0", "media": "photo", "latitude": "0", "id": "4361808491", "tags": ""}, {"datetaken": "2010-02-14 04:30:11", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4361809607_7971eabff2_o.jpg", "secret": "b7547e623c", "media": "photo", "latitude": "0", "id": "4361809607", "tags": ""}, {"datetaken": "2010-02-14 04:33:18", "license": "1", "title": "Aalst Carnival Reception", "text": "", "album_id": "72157623446826118", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4361810743_c0b92a97b8_o.jpg", "secret": "81aced342f", "media": "photo", "latitude": "0", "id": "4361810743", "tags": ""}, {"datetaken": "2010-04-17 09:15:15", "license": "3", "title": "Spring Carnival Buggy race", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4528926214_6e36a8136f_o.jpg", "secret": "542c5e8fbd", "media": "photo", "latitude": "0", "id": "4528926214", "tags": "carnival spring cmu buggy vkp"}, {"datetaken": "2010-04-17 09:19:20", "license": "3", "title": "Spring Carnival Buggy race", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4528926790_37a514d476_o.jpg", "secret": "1ceb6c7483", "media": "photo", "latitude": "0", "id": "4528926790", "tags": "carnival spring cmu buggy vkp"}, {"datetaken": "2010-04-17 09:21:03", "license": "3", "title": "Spring Carnival Buggy race", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4528293773_b35f4e2957_o.jpg", "secret": "3e23e7fdf5", "media": "photo", "latitude": "0", "id": "4528293773", "tags": "carnival spring cmu buggy vkp"}, {"datetaken": "2010-04-17 09:22:39", "license": "3", "title": "Spring Carnival Buggy race", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4528294265_bba17ac9c9_o.jpg", "secret": "583589aeae", "media": "photo", "latitude": "0", "id": "4528294265", "tags": "carnival spring cmu buggy vkp"}, {"datetaken": "2010-04-17 09:33:57", "license": "3", "title": "Spring Carnival Buggy race", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4528926362_17b211d2a0_o.jpg", "secret": "634af451f8", "media": "photo", "latitude": "0", "id": "4528926362", "tags": "carnival spring cmu buggy vkp"}, {"datetaken": "2010-04-17 09:34:02", "license": "3", "title": "Spring Carnival Buggy race", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4528294227_60fca2459f_o.jpg", "secret": "391a1f2c2d", "media": "photo", "latitude": "0", "id": "4528294227", "tags": "carnival spring cmu buggy vkp"}, {"datetaken": "2010-04-17 09:37:04", "license": "3", "title": "morning walk", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4528293943_c9974110fa_o.jpg", "secret": "d25e8f61f0", "media": "photo", "latitude": "0", "id": "4528293943", "tags": "carnival spring cmu vishal vkp"}, {"datetaken": "2010-04-17 09:39:45", "license": "3", "title": "Spring Carnival Buggy race", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4528926450_9f9fc5b0b8_o.jpg", "secret": "96a10ce436", "media": "photo", "latitude": "0", "id": "4528926450", "tags": "carnival spring cmu buggy vkp"}, {"datetaken": "2010-04-17 09:41:24", "license": "3", "title": "pallavi on a chilly morning..", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4528293999_d4c25afdcc_o.jpg", "secret": "6ca21d2b97", "media": "photo", "latitude": "0", "id": "4528293999", "tags": "carnival spring cmu buggy vkp"}, {"datetaken": "2010-04-17 10:01:14", "license": "3", "title": "Scotty - CMU mascot.", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4528926516_3224818ca8_o.jpg", "secret": "a151791551", "media": "photo", "latitude": "0", "id": "4528926516", "tags": "carnival spring cmu buggy vkp"}, {"datetaken": "2010-04-17 10:03:56", "license": "3", "title": "Spring Carnival Buggy race", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4528926566_c47ae0dced_o.jpg", "secret": "0fb333c353", "media": "photo", "latitude": "0", "id": "4528926566", "tags": "carnival spring cmu buggy vkp"}, {"datetaken": "2010-04-17 10:03:58", "license": "3", "title": "Spring Carnival Buggy race", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4528926600_cb336beab6_o.jpg", "secret": "630f6d5cca", "media": "photo", "latitude": "0", "id": "4528926600", "tags": "carnival spring cmu buggy vkp"}, {"datetaken": "2010-04-17 10:03:59", "license": "3", "title": "Spring Carnival Buggy race", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4528926630_5fbb10ba57_o.jpg", "secret": "937ce2b338", "media": "photo", "latitude": "0", "id": "4528926630", "tags": "carnival spring cmu buggy vkp"}, {"datetaken": "2010-04-17 10:17:47", "license": "3", "title": "Spring Carnival Buggy race", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4528294157_f8e952f200_o.jpg", "secret": "d0ed341947", "media": "photo", "latitude": "0", "id": "4528294157", "tags": "carnival spring cmu buggy vkp"}, {"datetaken": "2010-04-17 10:17:51", "license": "3", "title": "Spring Carnival Buggy race", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4528294197_bfe04fb8b4_o.jpg", "secret": "a49f303eb3", "media": "photo", "latitude": "0", "id": "4528294197", "tags": "carnival spring cmu buggy vkp"}, {"datetaken": "2010-04-17 10:25:17", "license": "3", "title": "Me and Pallavi shivering in cold..", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4528293869_b3a32c563a_o.jpg", "secret": "7bb2ba0e19", "media": "photo", "latitude": "0", "id": "4528293869", "tags": "carnival spring cmu buggy vkp"}, {"datetaken": "2010-04-17 10:27:27", "license": "3", "title": "Spring Carnival awesome flowers", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4528926304_c77060f373_o.jpg", "secret": "f862fcb734", "media": "photo", "latitude": "0", "id": "4528926304", "tags": "carnival flowers spring cmu vkp"}, {"datetaken": "2010-04-17 10:28:01", "license": "3", "title": "Spring season", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4528926276_62064593a5_o.jpg", "secret": "053e25a795", "media": "photo", "latitude": "0", "id": "4528926276", "tags": "carnival flowers spring cmu vkp"}, {"datetaken": "2010-04-17 20:10:06", "license": "3", "title": "colorful rides - spring carnival", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4531224712_c2d3e378b2_o.jpg", "secret": "b0012a1533", "media": "photo", "latitude": "0", "id": "4531224712", "tags": "carnival cmu vkp"}, {"datetaken": "2010-04-17 20:10:59", "license": "3", "title": "jumper jack ride - spring carnival", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4530593019_52cb2b8caa_o.jpg", "secret": "30c6738382", "media": "photo", "latitude": "0", "id": "4530593019", "tags": "carnival cmu vkp"}, {"datetaken": "2010-04-17 20:11:37", "license": "3", "title": "spring carnival", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4531224918_ce040809e7_o.jpg", "secret": "4f94b3d828", "media": "photo", "latitude": "0", "id": "4531224918", "tags": "carnival cmu vkp"}, {"datetaken": "2010-04-17 20:31:03", "license": "3", "title": "arjun, abhishek and vinod..", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4530593245_4f35519506_o.jpg", "secret": "fb084b9ae6", "media": "photo", "latitude": "0", "id": "4530593245", "tags": "carnival cmu vkp"}, {"datetaken": "2010-04-17 20:46:19", "license": "3", "title": "CMU fireworks - spring carnival", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4530593327_723e7866a0_o.jpg", "secret": "f9f25682d0", "media": "photo", "latitude": "0", "id": "4530593327", "tags": "carnival cmu vkp"}, {"datetaken": "2010-04-17 20:48:01", "license": "3", "title": "CMU fireworks - spring carnival", "text": "", "album_id": "72157623751775927", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4531225198_a21ff8fe17_o.jpg", "secret": "d9d5487ee8", "media": "photo", "latitude": "0", "id": "4531225198", "tags": "carnival cmu vkp"}, {"datetaken": "2011-04-13 11:24:00", "license": "6", "title": "Royal Naval Dockyard (4)", "text": "", "album_id": "72157626393855041", "longitude": "-64.832618", "url_o": "https://farm6.staticflickr.com/5149/5627167617_217d168925_o.jpg", "secret": "c516edf44a", "media": "photo", "latitude": "32.322861", "id": "5627167617", "tags": "bermuda royalnavaldockyard"}, {"datetaken": "2011-04-13 11:24:23", "license": "6", "title": "Royal Naval Dockyard (2)", "text": "", "album_id": "72157626393855041", "longitude": "-64.832618", "url_o": "https://farm6.staticflickr.com/5302/5627755092_ca5286daa6_o.jpg", "secret": "695edcb143", "media": "photo", "latitude": "32.322861", "id": "5627755092", "tags": "bermuda royalnavaldockyard"}, {"datetaken": "2011-04-13 11:24:35", "license": "6", "title": "Royal Naval Dockyard (3)", "text": "", "album_id": "72157626393855041", "longitude": "-64.832618", "url_o": "https://farm6.staticflickr.com/5183/5627753622_c442109766_o.jpg", "secret": "812e8263ef", "media": "photo", "latitude": "32.322861", "id": "5627753622", "tags": "bermuda royalnavaldockyard"}, {"datetaken": "2011-04-13 11:24:54", "license": "6", "title": "Palm Trees of King's Wharf", "text": "", "album_id": "72157626393855041", "longitude": "-64.832618", "url_o": "https://farm6.staticflickr.com/5064/5627171733_bc0ddfb3d7_o.jpg", "secret": "31ff1baf37", "media": "photo", "latitude": "32.322861", "id": "5627171733", "tags": "palmtrees bermuda kingswharf royalnavaldockyard"}, {"datetaken": "2011-04-13 11:28:17", "license": "6", "title": "King's Wharf, Royal Naval Dockyard", "text": "", "album_id": "72157626393855041", "longitude": "-64.832618", "url_o": "https://farm6.staticflickr.com/5223/5627756876_4193ea55bc_o.jpg", "secret": "1cec240083", "media": "photo", "latitude": "32.322861", "id": "5627756876", "tags": "bermuda kingswharf royalnavaldockyard"}, {"datetaken": "2011-04-13 12:10:39", "license": "6", "title": "Turquoise Waters, Royal Naval Dockyard", "text": "", "album_id": "72157626393855041", "longitude": "-64.832843", "url_o": "https://farm6.staticflickr.com/5026/5627173353_81703ff3fe_o.jpg", "secret": "6a758e9b3d", "media": "photo", "latitude": "32.327013", "id": "5627173353", "tags": "turquoise bermuda royalnavaldockyard"}, {"datetaken": "2011-04-13 12:12:02", "license": "6", "title": "The Broad Arrow", "text": "", "album_id": "72157626393855041", "longitude": "-64.834066", "url_o": "https://farm6.staticflickr.com/5183/5627175347_6e471de4bc_o.jpg", "secret": "4dc5d856f4", "media": "photo", "latitude": "32.327031", "id": "5627175347", "tags": "bermuda royalnavaldockyard thebroadarrow"}, {"datetaken": "2011-04-13 12:13:16", "license": "6", "title": "Enchantment of the Seas", "text": "", "album_id": "72157626393855041", "longitude": "-64.833916", "url_o": "https://farm6.staticflickr.com/5221/5627174149_746b53579c_o.jpg", "secret": "60b6411726", "media": "photo", "latitude": "32.326750", "id": "5627174149", "tags": "bermuda royalcaribbean kingswharf royalnavaldockyard enchantmentoftheseas"}, {"datetaken": "2011-04-13 12:14:13", "license": "6", "title": "Phone Booths, Royal Naval Dockyard", "text": "", "album_id": "72157626393855041", "longitude": "-64.834066", "url_o": "https://farm6.staticflickr.com/5102/5627176757_cb0834ee63_o.jpg", "secret": "35c9fd17e9", "media": "photo", "latitude": "32.327031", "id": "5627176757", "tags": "phonebooth bermuda royalnavaldockyard"}, {"datetaken": "2011-04-13 12:15:04", "license": "6", "title": "Clocktower Mall (3)", "text": "", "album_id": "72157626393855041", "longitude": "-64.833916", "url_o": "https://farm6.staticflickr.com/5301/5627177625_bf1940b6c2_o.jpg", "secret": "cbec65d7c5", "media": "photo", "latitude": "32.326750", "id": "5627177625", "tags": "bermuda royalnavaldockyard clocktowermall"}, {"datetaken": "2011-04-13 18:13:25", "license": "6", "title": "Denizens of the Dockyard", "text": "", "album_id": "72157626393855041", "longitude": "-64.833991", "url_o": "https://farm6.staticflickr.com/5110/5627225285_d16aa6fae4_o.jpg", "secret": "dd25e82c1e", "media": "photo", "latitude": "32.327484", "id": "5627225285", "tags": "rooster bermuda royalnavaldockyard"}, {"datetaken": "2011-04-13 18:26:01", "license": "6", "title": "Victualling Yard, Royal Naval Dockyard", "text": "", "album_id": "72157626393855041", "longitude": "-64.834023", "url_o": "https://farm6.staticflickr.com/5183/5627810838_a77a569598_o.jpg", "secret": "915f3af2f5", "media": "photo", "latitude": "32.327271", "id": "5627810838", "tags": "bermuda royalnavaldockyard victuallingyard"}, {"datetaken": "2011-04-13 18:26:28", "license": "6", "title": "Victualling Yard", "text": "", "album_id": "72157626393855041", "longitude": "-64.834034", "url_o": "https://farm6.staticflickr.com/5227/5627227151_d92a9c1b58_o.jpg", "secret": "c515f4260a", "media": "photo", "latitude": "32.327312", "id": "5627227151", "tags": "bermuda royalnavaldockyard victuallingyard"}, {"datetaken": "2011-04-13 20:13:14", "license": "6", "title": "Night view across the Great Sound", "text": "", "album_id": "72157626393855041", "longitude": "-64.832693", "url_o": "https://farm6.staticflickr.com/5269/5627227399_4d1e5c24eb_o.jpg", "secret": "7368580dd5", "media": "photo", "latitude": "32.322793", "id": "5627227399", "tags": "bermuda royalnavaldockyard greatsound"}, {"datetaken": "2011-04-13 20:19:08", "license": "6", "title": "Gibb's Hill Lighthouse, at Night", "text": "", "album_id": "72157626393855041", "longitude": "-64.832618", "url_o": "https://farm6.staticflickr.com/5109/5627811870_01aed5034d_o.jpg", "secret": "003fc61c3d", "media": "photo", "latitude": "32.322861", "id": "5627811870", "tags": "bermuda gibbshilllighthouse"}, {"datetaken": "2011-04-14 07:32:16", "license": "6", "title": "Clocktower Mall (2)", "text": "", "album_id": "72157626393855041", "longitude": "-64.833916", "url_o": "https://farm6.staticflickr.com/5146/5627812516_a5319372aa_o.jpg", "secret": "18ca01714f", "media": "photo", "latitude": "32.326750", "id": "5627812516", "tags": "bermuda royalnavaldockyard clocktowermall"}, {"datetaken": "2011-04-14 07:36:54", "license": "6", "title": "Royal Naval Dockyard Scene", "text": "", "album_id": "72157626393855041", "longitude": "-64.834678", "url_o": "https://farm6.staticflickr.com/5266/5627813284_0710065719_o.jpg", "secret": "b4789a90ac", "media": "photo", "latitude": "32.327117", "id": "5627813284", "tags": "bermuda royalnavaldockyard"}, {"datetaken": "2011-04-14 08:47:32", "license": "6", "title": "Inside the Clocktower Mall, Royal Naval Dockyard", "text": "", "album_id": "72157626393855041", "longitude": "-64.835032", "url_o": "https://farm6.staticflickr.com/5186/5627229657_ba8bc7e59e_o.jpg", "secret": "97653460ab", "media": "photo", "latitude": "32.325553", "id": "5627229657", "tags": "bermuda royalnavaldockyard clocktowermall"}, {"datetaken": "2011-04-14 09:13:54", "license": "6", "title": "Ginger Beer, Nectar of the Gods", "text": "", "album_id": "72157626393855041", "longitude": "-64.835085", "url_o": "https://farm6.staticflickr.com/5070/5627814508_d23baace0f_o.jpg", "secret": "3ccc98d8e9", "media": "photo", "latitude": "32.325712", "id": "5627814508", "tags": "bermuda barrittsgingerbeer"}, {"datetaken": "2011-04-14 09:22:46", "license": "6", "title": "Alley, Royal Navy Dockyard", "text": "", "album_id": "72157626393855041", "longitude": "-64.835150", "url_o": "https://farm6.staticflickr.com/5181/5627815208_457b165e60_o.jpg", "secret": "51015b9c1b", "media": "photo", "latitude": "32.327222", "id": "5627815208", "tags": "bermuda royalnavaldockyard"}, {"datetaken": "2011-04-14 09:47:37", "license": "6", "title": "Cruising the Dockyard", "text": "", "album_id": "72157626393855041", "longitude": "-64.834667", "url_o": "https://farm6.staticflickr.com/5069/5627815856_b0929ae555_o.jpg", "secret": "14c4ea5aaa", "media": "photo", "latitude": "32.327616", "id": "5627815856", "tags": "bermuda royalnavaldockyard"}, {"datetaken": "2011-04-14 09:51:48", "license": "6", "title": "Dining with a View", "text": "", "album_id": "72157626393855041", "longitude": "-64.834495", "url_o": "https://farm6.staticflickr.com/5188/5627817256_61ee317236_o.jpg", "secret": "a3900fc773", "media": "photo", "latitude": "32.329076", "id": "5627817256", "tags": "bermuda royalnavaldockyard"}, {"datetaken": "2011-04-14 09:52:53", "license": "6", "title": "Beach, Royal Naval Dockyard (3)", "text": "", "album_id": "72157626393855041", "longitude": "-64.834334", "url_o": "https://farm6.staticflickr.com/5141/5627232237_02393520c2_o.jpg", "secret": "6909a032af", "media": "photo", "latitude": "32.329107", "id": "5627232237", "tags": "beach bermuda royalnavaldockyard"}, {"datetaken": "2011-04-14 09:53:51", "license": "6", "title": "Paddleboating at the Dockyard", "text": "", "album_id": "72157626393855041", "longitude": "-64.834570", "url_o": "https://farm6.staticflickr.com/5267/5627818850_628c92b8d2_o.jpg", "secret": "b2fca1fc70", "media": "photo", "latitude": "32.329384", "id": "5627818850", "tags": "bermuda paddleboat royalnavaldockyard"}, {"datetaken": "2011-04-14 09:54:48", "license": "6", "title": "Rocks and Coral", "text": "", "album_id": "72157626393855041", "longitude": "-64.834753", "url_o": "https://farm6.staticflickr.com/5269/5627233567_851cb31110_o.jpg", "secret": "0dd94218ca", "media": "photo", "latitude": "32.329479", "id": "5627233567", "tags": "coral bermuda royalnavaldockyard"}, {"datetaken": "2011-04-14 09:56:10", "license": "6", "title": "Turquoise Waters", "text": "", "album_id": "72157626393855041", "longitude": "-64.834764", "url_o": "https://farm6.staticflickr.com/5065/5627819544_35d4fe7957_o.jpg", "secret": "9536d3be9c", "media": "photo", "latitude": "32.329570", "id": "5627819544", "tags": "turquoise bermuda royalnavaldockyard"}, {"datetaken": "2011-04-14 09:58:21", "license": "6", "title": "Photographer on the Rocks", "text": "", "album_id": "72157626393855041", "longitude": "-64.834538", "url_o": "https://farm6.staticflickr.com/5269/5627235883_a2dac87607_o.jpg", "secret": "ddd76b125d", "media": "photo", "latitude": "32.329284", "id": "5627235883", "tags": "photographer bermuda royalnavaldockyard"}, {"datetaken": "2011-04-14 10:00:10", "license": "6", "title": "Kayaking the Turquoise Waters", "text": "", "album_id": "72157626393855041", "longitude": "-64.834474", "url_o": "https://farm6.staticflickr.com/5184/5627821004_430867c395_o.jpg", "secret": "b042a0ca6c", "media": "photo", "latitude": "32.329243", "id": "5627821004", "tags": "beach kayak bermuda royalnavaldockyard"}, {"datetaken": "2011-04-14 10:01:35", "license": "6", "title": "Beach, Royal Naval Dockyard (1)", "text": "", "album_id": "72157626393855041", "longitude": "-64.834603", "url_o": "https://farm6.staticflickr.com/5110/5627822612_0bc30d7357_o.jpg", "secret": "6193d5e7c9", "media": "photo", "latitude": "32.329162", "id": "5627822612", "tags": "beach bermuda royalnavaldockyard"}, {"datetaken": "2011-04-14 10:03:15", "license": "6", "title": "Beach, Royal Naval Dockyard (2)", "text": "", "album_id": "72157626393855041", "longitude": "-64.834624", "url_o": "https://farm6.staticflickr.com/5069/5627822014_60edc111f6_o.jpg", "secret": "c87746298d", "media": "photo", "latitude": "32.329157", "id": "5627822014", "tags": "beach bermuda royalnavaldockyard"}, {"datetaken": "2011-04-14 10:04:06", "license": "6", "title": "Enjoying the Beach", "text": "", "album_id": "72157626393855041", "longitude": "-64.834635", "url_o": "https://farm6.staticflickr.com/5061/5627823612_2735841537_o.jpg", "secret": "1bb823bccd", "media": "photo", "latitude": "32.329502", "id": "5627823612", "tags": "beach bermuda royalnavaldockyard"}, {"datetaken": "2011-04-14 10:19:29", "license": "6", "title": "Cooperage, Royal Naval Dockyard", "text": "", "album_id": "72157626393855041", "longitude": "-64.833433", "url_o": "https://farm6.staticflickr.com/5070/5627825084_3fe791f3d1_o.jpg", "secret": "9b48222cf2", "media": "photo", "latitude": "32.328183", "id": "5627825084", "tags": "bermuda cooperage royalnavaldockyard frogandonionpub bermudacraftmarket"}, {"datetaken": "2011-04-14 10:21:44", "license": "6", "title": "Enchantment of the Seas", "text": "", "album_id": "72157626393855041", "longitude": "-64.833133", "url_o": "https://farm6.staticflickr.com/5061/5627240247_70db051255_o.jpg", "secret": "81d80c0aaf", "media": "photo", "latitude": "32.327775", "id": "5627240247", "tags": "bermuda royalcaribbean royalnavaldockyard enchantmentoftheseas"}, {"datetaken": "2011-04-14 12:35:12", "license": "6", "title": "Clocktower Mall, Royal Naval Dockyard", "text": "", "album_id": "72157626393855041", "longitude": "-64.824829", "url_o": "https://farm6.staticflickr.com/5149/5627825718_50a217b23c_o.jpg", "secret": "f7bb0322d9", "media": "photo", "latitude": "32.320902", "id": "5627825718", "tags": "bermuda royalnavaldockyard clocktowermall"}, {"datetaken": "2011-04-14 12:35:23", "license": "6", "title": "Carnival Pride in Bermuda", "text": "", "album_id": "72157626393855041", "longitude": "-64.825773", "url_o": "https://farm6.staticflickr.com/5101/5627242201_076311ed01_o.jpg", "secret": "1a2b3fa099", "media": "photo", "latitude": "32.322389", "id": "5627242201", "tags": "bermuda carnivalpride royalnavaldockyard"}, {"datetaken": "2011-04-14 12:37:31", "license": "6", "title": "Looking toward Somerset Village", "text": "", "album_id": "72157626393855041", "longitude": "-64.833326", "url_o": "https://farm6.staticflickr.com/5107/5627827112_50ce56968f_o.jpg", "secret": "a20b09af58", "media": "photo", "latitude": "32.335118", "id": "5627827112", "tags": "bermuda somersetvillage"}, {"datetaken": "2011-04-14 12:37:48", "license": "6", "title": "Catamaran off Bermuda", "text": "", "album_id": "72157626393855041", "longitude": "-64.827146", "url_o": "https://farm6.staticflickr.com/5027/5627827856_8b703a34cf_o.jpg", "secret": "f492d7846b", "media": "photo", "latitude": "32.322172", "id": "5627827856", "tags": "catamaran bermuda"}, {"datetaken": "2011-04-14 12:42:05", "license": "6", "title": "Royal Naval Dockyard (1)", "text": "", "album_id": "72157626393855041", "longitude": "-64.826889", "url_o": "https://farm6.staticflickr.com/5106/5627244357_41a0144e84_o.jpg", "secret": "4832746d24", "media": "photo", "latitude": "32.335915", "id": "5627244357", "tags": "bermuda royalnavaldockyard"}, {"datetaken": "2010-05-14 21:32:49", "license": "1", "title": "DSC01373-p", "text": "", "album_id": "72157623956990589", "longitude": "-3.705439", "url_o": "https://farm4.staticflickr.com/3307/4615923335_9ae5aa4bfd_o.jpg", "secret": "27e4a62c7e", "media": "photo", "latitude": "40.417171", "id": "4615923335", "tags": "rock swing rockroll burlesque subterfuge joyeslava vinilavonbismark thesecretcarnival theluckydados vinilavonbismarktheluckydados"}, {"datetaken": "2010-05-14 21:32:56", "license": "1", "title": "DSC01380-p", "text": "", "album_id": "72157623956990589", "longitude": "-3.705439", "url_o": "https://farm5.staticflickr.com/4054/4615923985_89665970a0_o.jpg", "secret": "0de86cf3f7", "media": "photo", "latitude": "40.417171", "id": "4615923985", "tags": "rock swing rockroll burlesque subterfuge joyeslava vinilavonbismark thesecretcarnival theluckydados vinilavonbismarktheluckydados"}, {"datetaken": "2010-05-14 21:38:19", "license": "1", "title": "DSC01508-p", "text": "", "album_id": "72157623956990589", "longitude": "-3.705439", "url_o": "https://farm5.staticflickr.com/4068/4615924631_6dd3bc68fe_o.jpg", "secret": "6a7a671608", "media": "photo", "latitude": "40.417171", "id": "4615924631", "tags": "rock swing rockroll burlesque subterfuge joyeslava vinilavonbismark thesecretcarnival theluckydados vinilavonbismarktheluckydados"}, {"datetaken": "2010-05-14 21:38:23", "license": "1", "title": "DSC01512-p", "text": "", "album_id": "72157623956990589", "longitude": "-3.705439", "url_o": "https://farm5.staticflickr.com/4002/4616540968_68e878bc85_o.jpg", "secret": "20566c5e95", "media": "photo", "latitude": "40.417171", "id": "4616540968", "tags": "rock swing rockroll burlesque subterfuge joyeslava vinilavonbismark thesecretcarnival theluckydados vinilavonbismarktheluckydados"}, {"datetaken": "2010-05-14 21:46:11", "license": "1", "title": "DSC01579-p", "text": "", "album_id": "72157623956990589", "longitude": "-3.705439", "url_o": "https://farm4.staticflickr.com/3335/4615925989_4c35a08403_o.jpg", "secret": "272424ed47", "media": "photo", "latitude": "40.417171", "id": "4615925989", "tags": "rock swing rockroll burlesque subterfuge joyeslava vinilavonbismark thesecretcarnival theluckydados vinilavonbismarktheluckydados"}, {"datetaken": "2010-05-14 21:51:30", "license": "1", "title": "DSC01680-p", "text": "", "album_id": "72157623956990589", "longitude": "-3.705439", "url_o": "https://farm4.staticflickr.com/3369/4616542206_1894806a98_o.jpg", "secret": "69372f919a", "media": "photo", "latitude": "40.417171", "id": "4616542206", "tags": "rock swing rockroll burlesque subterfuge joyeslava vinilavonbismark thesecretcarnival theluckydados vinilavonbismarktheluckydados"}, {"datetaken": "2010-05-14 22:06:44", "license": "1", "title": "DSC01913-p", "text": "", "album_id": "72157623956990589", "longitude": "-3.705439", "url_o": "https://farm5.staticflickr.com/4004/4616542714_f3cd07039b_o.jpg", "secret": "68a463c8cc", "media": "photo", "latitude": "40.417171", "id": "4616542714", "tags": "rock swing rockroll burlesque subterfuge joyeslava vinilavonbismark thesecretcarnival theluckydados vinilavonbismarktheluckydados"}, {"datetaken": "2010-05-14 22:38:25", "license": "1", "title": "DSC02388-p", "text": "", "album_id": "72157623956990589", "longitude": "-3.705439", "url_o": "https://farm5.staticflickr.com/4040/4615927579_77791fb55c_o.jpg", "secret": "199d605f9c", "media": "photo", "latitude": "40.417171", "id": "4615927579", "tags": "rock swing rockroll burlesque subterfuge joyeslava vinilavonbismark thesecretcarnival theluckydados vinilavonbismarktheluckydados"}, {"datetaken": "2010-05-14 22:42:11", "license": "1", "title": "DSC02428-p", "text": "", "album_id": "72157623956990589", "longitude": "-3.705439", "url_o": "https://farm5.staticflickr.com/4038/4615928125_76b6fa55e4_o.jpg", "secret": "b7b2ddd2af", "media": "photo", "latitude": "40.417171", "id": "4615928125", "tags": "rock swing rockroll burlesque subterfuge joyeslava vinilavonbismark thesecretcarnival theluckydados vinilavonbismarktheluckydados"}, {"datetaken": "2010-05-14 22:43:44", "license": "1", "title": "DSC02481-p", "text": "", "album_id": "72157623956990589", "longitude": "-3.705439", "url_o": "https://farm5.staticflickr.com/4064/4616544444_bc3911897a_o.jpg", "secret": "7fbe586ffb", "media": "photo", "latitude": "40.417171", "id": "4616544444", "tags": "rock swing rockroll burlesque subterfuge joyeslava vinilavonbismark thesecretcarnival theluckydados vinilavonbismarktheluckydados"}, {"datetaken": "2010-05-14 22:48:26", "license": "1", "title": "DSC02664-p", "text": "", "album_id": "72157623956990589", "longitude": "-3.705439", "url_o": "https://farm5.staticflickr.com/4053/4615929413_5741ff3904_o.jpg", "secret": "c96efd120f", "media": "photo", "latitude": "40.417171", "id": "4615929413", "tags": "rock swing rockroll burlesque subterfuge joyeslava vinilavonbismark thesecretcarnival theluckydados vinilavonbismarktheluckydados"}, {"datetaken": "2010-05-14 22:49:43", "license": "1", "title": "DSC02756-p", "text": "", "album_id": "72157623956990589", "longitude": "-3.705439", "url_o": "https://farm5.staticflickr.com/4039/4616545774_5ef30a471e_o.jpg", "secret": "edecc59842", "media": "photo", "latitude": "40.417171", "id": "4616545774", "tags": "rock swing rockroll burlesque subterfuge joyeslava vinilavonbismark thesecretcarnival theluckydados vinilavonbismarktheluckydados"}, {"datetaken": "2010-05-14 22:49:55", "license": "1", "title": "DSC02769-p", "text": "", "album_id": "72157623956990589", "longitude": "-3.705439", "url_o": "https://farm5.staticflickr.com/4025/4616546510_b22a066774_o.jpg", "secret": "a5fe17e147", "media": "photo", "latitude": "40.417171", "id": "4616546510", "tags": "rock swing rockroll burlesque subterfuge joyeslava vinilavonbismark thesecretcarnival theluckydados vinilavonbismarktheluckydados"}, {"datetaken": "2010-02-08 06:13:09", "license": "4", "title": "Lass in a blue mask (IMG_8968a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4903720294_82f3a4cb3d_o.jpg", "secret": "e22ecbb7e5", "media": "photo", "latitude": "0", "id": "4903720294", "tags": "travel italy italia venice venezia venise venedig costumes outfits parades carnevale carnival people portraits grandparade canon30d masks"}, {"datetaken": "2010-02-08 06:13:39", "license": "4", "title": "Lass in pink with a lovely smile (IMG_8969a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4903721060_5d2394c981_o.jpg", "secret": "c753cd76b8", "media": "photo", "latitude": "0", "id": "4903721060", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:20:31", "license": "4", "title": "Sour looking guard (IMG_8978a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4903135793_f887c57bfc_o.jpg", "secret": "129e90f9f7", "media": "photo", "latitude": "0", "id": "4903135793", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:20:59", "license": "4", "title": "Sean Connery relative? (IMG_8979a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4903137079_7c4c86def5_o.jpg", "secret": "6ae1b71f95", "media": "photo", "latitude": "0", "id": "4903137079", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:21:24", "license": "4", "title": "Soft portrait of a nice blonde (IMG_8981a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4903724624_0c49e52e75_o.jpg", "secret": "37aef88517", "media": "photo", "latitude": "0", "id": "4903724624", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:22:33", "license": "4", "title": "Prince that needs a shave (IMG_8984a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4903139365_b78d89c3fc_o.jpg", "secret": "dbfa971d15", "media": "photo", "latitude": "0", "id": "4903139365", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:22:41", "license": "4", "title": "Lovely looking lass in green (IMG_8985a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4903726726_ff3e45bedc_o.jpg", "secret": "c2f99f5666", "media": "photo", "latitude": "0", "id": "4903726726", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:25:21", "license": "4", "title": "The Wolfman loose in the Piazza di San Marco (IMG_8989a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4903141155_a2752d944f_o.jpg", "secret": "e6f950f13c", "media": "photo", "latitude": "0", "id": "4903141155", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:25:58", "license": "4", "title": "It looks like a white gloved hand is trying to grab this hat (IMG_8991a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4903728324_7ecc963350_o.jpg", "secret": "fa05538b4d", "media": "photo", "latitude": "0", "id": "4903728324", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:26:41", "license": "4", "title": "Very pretty young lass (IMG_8994a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4903142607_9d3cc3b5cc_o.jpg", "secret": "44cef5727b", "media": "photo", "latitude": "0", "id": "4903142607", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:27:19", "license": "4", "title": "Nice ladies with big hips (IMG_8997a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4903730146_7f94ea03e4_o.jpg", "secret": "24fd62dae9", "media": "photo", "latitude": "0", "id": "4903730146", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:27:22", "license": "4", "title": "Pretty blonde behind some webbing (IMG_8999a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4903731368_408aea1705_o.jpg", "secret": "50e70e56c3", "media": "photo", "latitude": "0", "id": "4903731368", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:27:40", "license": "4", "title": "A lovely Carnevale princess (IMG_9002a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4903732482_9def9101b0_o.jpg", "secret": "4f6eff948d", "media": "photo", "latitude": "0", "id": "4903732482", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:28:17", "license": "4", "title": "One of the Carnevale princesses (IMG_9010a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4903733790_7693e1eb0d_o.jpg", "secret": "3211493fd8", "media": "photo", "latitude": "0", "id": "4903733790", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:29:00", "license": "4", "title": "Long haired blonde looking forlorn (IMG_9014a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4903734910_383cf5cbd5_o.jpg", "secret": "5f8b1ccec4", "media": "photo", "latitude": "0", "id": "4903734910", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:29:10", "license": "4", "title": "Somber looking long haired brunette (IMG_9015a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4903735716_e088f35ea0_o.jpg", "secret": "ff18c1df6c", "media": "photo", "latitude": "0", "id": "4903735716", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:29:17", "license": "4", "title": "A rather dapper looking dude (IMG_9016a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4118/4903150435_e29b309575_o.jpg", "secret": "50957231bb", "media": "photo", "latitude": "0", "id": "4903150435", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:30:21", "license": "4", "title": "Masked character in pink and white (IMG_9023a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4114/4903151643_2353d9dbb6_o.jpg", "secret": "b0058722d0", "media": "photo", "latitude": "0", "id": "4903151643", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:30:43", "license": "4", "title": "Wow - this is far out! (IMG_9027a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4903739454_ea1c4e5f0f_o.jpg", "secret": "44b26fd3c2", "media": "photo", "latitude": "0", "id": "4903739454", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:31:09", "license": "4", "title": "Looking lovely in blue (IMG_9030a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4903154111_8ebd292741_o.jpg", "secret": "8b7145cecb", "media": "photo", "latitude": "0", "id": "4903154111", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:31:11", "license": "4", "title": "Portrait of a pretty lass (IMG_9031a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4903741538_6c604b3388_o.jpg", "secret": "a247cc6dfd", "media": "photo", "latitude": "0", "id": "4903741538", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:31:36", "license": "4", "title": "Young lass with a look of mischief (IMG_9035a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4903156059_343d5b6028_o.jpg", "secret": "4378937fac", "media": "photo", "latitude": "0", "id": "4903156059", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:31:39", "license": "4", "title": "This reminds me of the \"I'll have what she's having\" scene in \"When Harry Met Sally\" (IMG_9036a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4903157047_c4dc4ef5d9_o.jpg", "secret": "310fffe326", "media": "photo", "latitude": "0", "id": "4903157047", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:31:51", "license": "4", "title": "Woman with a beautiful smile (IMG_9038a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4903744076_8eb71f18da_o.jpg", "secret": "247dd07fe5", "media": "photo", "latitude": "0", "id": "4903744076", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:31:59", "license": "4", "title": "Pretty lass in black (IMG_9040a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4903158595_efa05ae8ae_o.jpg", "secret": "9704abc90f", "media": "photo", "latitude": "0", "id": "4903158595", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:32:36", "license": "4", "title": "This one leaves me speechless (IMG_9045a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4903159637_fcb2cf70e3_o.jpg", "secret": "b6be5cd5d3", "media": "photo", "latitude": "0", "id": "4903159637", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:33:10", "license": "4", "title": "Lovely lass with a great smile (IMG_9050a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4903747120_5ce45de706_o.jpg", "secret": "4bb23fb161", "media": "photo", "latitude": "0", "id": "4903747120", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:33:25", "license": "4", "title": "Warrior with a big shield (IMG_9053a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4903748714_a8f160b0e5_o.jpg", "secret": "5411992edf", "media": "photo", "latitude": "0", "id": "4903748714", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:35:54", "license": "4", "title": "Stately looking gent (IMG_9058a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4903162977_b60c818842_o.jpg", "secret": "2159411ee3", "media": "photo", "latitude": "0", "id": "4903162977", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:36:07", "license": "4", "title": "Young lass hiding behind a mask (IMG_9061a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4903750340_3566330e0f_o.jpg", "secret": "26e1b89044", "media": "photo", "latitude": "0", "id": "4903750340", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:36:20", "license": "4", "title": "Cool portrait of a lass with big ruffles (IMG_9064a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4903165229_7b30600c6e_o.jpg", "secret": "23588daaf5", "media": "photo", "latitude": "0", "id": "4903165229", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:37:03", "license": "4", "title": "Lady in a mask with purple feathers (IMG_9068a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4903166113_b1e2ecf948_o.jpg", "secret": "172c29257b", "media": "photo", "latitude": "0", "id": "4903166113", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:37:09", "license": "4", "title": "Lady in a mask with purple feathers (IMG_9069a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4903167607_51cfb332b2_o.jpg", "secret": "e26b473439", "media": "photo", "latitude": "0", "id": "4903167607", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:37:47", "license": "4", "title": "The famous Monique Duchamp (IMG_9070a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4903755156_6387f6f891_o.jpg", "secret": "337a233d06", "media": "photo", "latitude": "0", "id": "4903755156", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:38:08", "license": "4", "title": "Lovely masked lass in green and white (IMG_9073a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4903169983_aaebcef735_o.jpg", "secret": "179df65577", "media": "photo", "latitude": "0", "id": "4903169983", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-02-08 06:38:15", "license": "4", "title": "Future Carnevale Queen (IMG_9074a)", "text": "", "album_id": "72157624754625440", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4903170909_3b0217616f_o.jpg", "secret": "6e280e5b73", "media": "photo", "latitude": "0", "id": "4903170909", "tags": "travel carnival venice costumes people italy portraits italia parades masks venise carnevale venezia venedig outfits grandparade canon30d"}, {"datetaken": "2010-07-03 14:04:19", "license": "3", "title": "I Believe In Heroes", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4804677684_0775f8dd0d_o.jpg", "secret": "fce6beb74e", "media": "photo", "latitude": "0", "id": "4804677684", "tags": ""}, {"datetaken": "2010-07-03 14:06:38", "license": "3", "title": "Ready To Go", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4804048219_de73634de2_o.jpg", "secret": "d2cff31680", "media": "photo", "latitude": "0", "id": "4804048219", "tags": ""}, {"datetaken": "2010-07-03 14:09:02", "license": "3", "title": "Moving Things Along", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4804048305_332e6c0916_o.jpg", "secret": "4bb3f6b8e9", "media": "photo", "latitude": "0", "id": "4804048305", "tags": ""}, {"datetaken": "2010-07-03 14:09:43", "license": "3", "title": "Getting In Line", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4804678128_4b577d199d_o.jpg", "secret": "4cc06fd5bd", "media": "photo", "latitude": "0", "id": "4804678128", "tags": ""}, {"datetaken": "2010-07-03 14:10:10", "license": "3", "title": "Firefox Icarus", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4804678252_43005a2e55_o.jpg", "secret": "d3f0578fb6", "media": "photo", "latitude": "0", "id": "4804678252", "tags": ""}, {"datetaken": "2010-07-03 14:10:42", "license": "3", "title": "Carnival Angel", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4804678392_8100558c41_o.jpg", "secret": "b506131d8f", "media": "photo", "latitude": "0", "id": "4804678392", "tags": ""}, {"datetaken": "2010-07-03 14:11:28", "license": "3", "title": "Winged Procession", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4114/4804048927_694a3ee0bd_o.jpg", "secret": "50d550066d", "media": "photo", "latitude": "0", "id": "4804048927", "tags": ""}, {"datetaken": "2010-07-03 14:11:34", "license": "3", "title": "Ready To Fly", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4804678662_c19fcd0a9f_o.jpg", "secret": "ee7ff95244", "media": "photo", "latitude": "0", "id": "4804678662", "tags": ""}, {"datetaken": "2010-07-03 14:12:16", "license": "3", "title": "A Different Kind Of Wings", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4804678798_20ec48a4c9_o.jpg", "secret": "cd8ba56367", "media": "photo", "latitude": "0", "id": "4804678798", "tags": ""}, {"datetaken": "2010-07-03 14:12:51", "license": "3", "title": "Our Flag", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4804678920_8023d40e31_o.jpg", "secret": "df606df380", "media": "photo", "latitude": "0", "id": "4804678920", "tags": ""}, {"datetaken": "2010-07-03 14:15:19", "license": "3", "title": "I Coulda Been Somebody", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4804049385_197dd74b7e_o.jpg", "secret": "d2f9ee7bf6", "media": "photo", "latitude": "0", "id": "4804049385", "tags": ""}, {"datetaken": "2010-07-03 14:15:28", "license": "3", "title": "Over Here", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4804049463_4c913bd1f4_o.jpg", "secret": "effb0e1af0", "media": "photo", "latitude": "0", "id": "4804049463", "tags": ""}, {"datetaken": "2010-07-03 14:16:32", "license": "3", "title": "Ready To Go", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4804679222_9f0aa6408a_o.jpg", "secret": "b6b45771a9", "media": "photo", "latitude": "0", "id": "4804679222", "tags": ""}, {"datetaken": "2010-07-03 14:18:03", "license": "3", "title": "Focussed On The Beat", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4804049711_c8c8c311f5_o.jpg", "secret": "dc1179f3f9", "media": "photo", "latitude": "0", "id": "4804049711", "tags": ""}, {"datetaken": "2010-07-03 14:19:08", "license": "3", "title": "Synchronised In Motion", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4804049859_9ce6a99ecc_o.jpg", "secret": "d88c3e290c", "media": "photo", "latitude": "0", "id": "4804049859", "tags": ""}, {"datetaken": "2010-07-03 14:19:08", "license": "3", "title": "Doing Our Thing", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4804679578_e8bd357331_o.jpg", "secret": "fe6916f8cd", "media": "photo", "latitude": "0", "id": "4804679578", "tags": ""}, {"datetaken": "2010-07-03 14:19:12", "license": "3", "title": "A Little Jig", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4804050153_28f6e28087_o.jpg", "secret": "022752f501", "media": "photo", "latitude": "0", "id": "4804050153", "tags": ""}, {"datetaken": "2010-07-03 14:19:45", "license": "3", "title": "In Wait Of The Moment", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4804679890_09cd5589a2_o.jpg", "secret": "d8af748d49", "media": "photo", "latitude": "0", "id": "4804679890", "tags": ""}, {"datetaken": "2010-07-03 14:22:00", "license": "3", "title": "Here I Am", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4804050415_2e0e4daa20_o.jpg", "secret": "9eb4a07527", "media": "photo", "latitude": "0", "id": "4804050415", "tags": ""}, {"datetaken": "2010-07-03 14:22:19", "license": "3", "title": "Day Glow Glory", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4804050573_ff80d4816a_o.jpg", "secret": "5f698e2353", "media": "photo", "latitude": "0", "id": "4804050573", "tags": ""}, {"datetaken": "2010-07-03 14:23:37", "license": "3", "title": "In The Moment", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4804680302_c9f801212e_o.jpg", "secret": "a10870604c", "media": "photo", "latitude": "0", "id": "4804680302", "tags": ""}, {"datetaken": "2010-07-03 14:23:55", "license": "3", "title": "Carnival Days", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4804050803_77566ae0c4_o.jpg", "secret": "236256a733", "media": "photo", "latitude": "0", "id": "4804050803", "tags": ""}, {"datetaken": "2010-07-03 14:26:39", "license": "3", "title": "Just Having Fun", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4804050913_a6bc9d5e30_o.jpg", "secret": "3b188990a9", "media": "photo", "latitude": "0", "id": "4804050913", "tags": ""}, {"datetaken": "2010-07-03 14:36:25", "license": "3", "title": "On The Look", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4804680676_490f41fa23_o.jpg", "secret": "b3dd2e82e8", "media": "photo", "latitude": "0", "id": "4804680676", "tags": ""}, {"datetaken": "2010-07-03 14:37:21", "license": "3", "title": "Just Having A Twirl", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4804680850_f742fba229_o.jpg", "secret": "6283c5600f", "media": "photo", "latitude": "0", "id": "4804680850", "tags": ""}, {"datetaken": "2010-07-03 14:38:20", "license": "3", "title": "Didn't See It Coming", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4804680944_c044ee6a7d_o.jpg", "secret": "20679b725c", "media": "photo", "latitude": "0", "id": "4804680944", "tags": ""}, {"datetaken": "2010-07-03 14:40:11", "license": "3", "title": "Still Drumming", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4804051775_7700e23d07_o.jpg", "secret": "971b431e38", "media": "photo", "latitude": "0", "id": "4804051775", "tags": ""}, {"datetaken": "2010-07-03 14:47:05", "license": "3", "title": "Flag Bearer", "text": "", "album_id": "72157624526951968", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4804051351_04ed40ee58_o.jpg", "secret": "3e96fd4282", "media": "photo", "latitude": "0", "id": "4804051351", "tags": ""}, {"datetaken": "2010-02-14 12:50:51", "license": "1", "title": "Via, via dal lupo cattivo", "text": "", "album_id": "72157623350425121", "longitude": "10.235219", "url_o": "https://farm3.staticflickr.com/2784/4373338635_44b78ca526_o.jpg", "secret": "0cf9dd4cb5", "media": "photo", "latitude": "43.881401", "id": "4373338635", "tags": "carnival italy tuscany toscana carnevale satira viareggio carnevalediviareggio"}, {"datetaken": "2010-02-14 14:23:50", "license": "1", "title": "Il Sorriso di Burlamacco", "text": "", "album_id": "72157623350425121", "longitude": "10.235219", "url_o": "https://farm5.staticflickr.com/4036/4365958591_6c75351015_o.jpg", "secret": "2b3ac24e1b", "media": "photo", "latitude": "43.881401", "id": "4365958591", "tags": "carnival italy smiley tuscany sorriso toscana carnevale viareggio burlamacco"}, {"datetaken": "2010-02-14 15:59:19", "license": "1", "title": "Laughing & Drinking", "text": "", "album_id": "72157623350425121", "longitude": "10.235219", "url_o": "https://farm3.staticflickr.com/2727/4373338763_1723378ea6_o.jpg", "secret": "5553589dc4", "media": "photo", "latitude": "43.881401", "id": "4373338763", "tags": "carnival italy tuscany toscana carnevale satira viareggio carnevalediviareggio"}, {"datetaken": "2010-02-14 16:30:21", "license": "1", "title": "Far Finta di Essere Sani", "text": "", "album_id": "72157623350425121", "longitude": "10.235219", "url_o": "https://farm3.staticflickr.com/2748/4373338893_0a97a324f8_o.jpg", "secret": "d8bb425269", "media": "photo", "latitude": "43.881401", "id": "4373338893", "tags": "carnival italy tuscany toscana carnevale satira viareggio giorgiogaber farfintadiesseresani carnevalediviareggio sandroluporini"}, {"datetaken": "2010-02-14 16:52:35", "license": "1", "title": "Carnevale Italia", "text": "", "album_id": "72157623350425121", "longitude": "10.235219", "url_o": "https://farm3.staticflickr.com/2784/4374093012_a83a566da2_o.jpg", "secret": "cbfe1b0b0b", "media": "photo", "latitude": "43.881401", "id": "4374093012", "tags": "carnival italy tuscany toscana carnevale satira berlusconi viareggio carnevalediviareggio"}, {"datetaken": "2010-02-14 16:59:56", "license": "1", "title": "District NORD", "text": "", "album_id": "72157623350425121", "longitude": "10.235219", "url_o": "https://farm5.staticflickr.com/4044/4374093146_481d8a4ecf_o.jpg", "secret": "3da0b9d195", "media": "photo", "latitude": "43.881401", "id": "4374093146", "tags": "carnival italy tuscany toscana carnevale satira berlusconi viareggio leganord carnevalediviareggio lebigreroger"}, {"datetaken": "2010-02-14 17:42:45", "license": "1", "title": "Formazione da Combattimento", "text": "", "album_id": "72157623350425121", "longitude": "10.235219", "url_o": "https://farm3.staticflickr.com/2745/4373339805_e023ce62b0_o.jpg", "secret": "327761dfba", "media": "photo", "latitude": "43.881401", "id": "4373339805", "tags": "carnival italy tuscany toscana carnevale satira viareggio carnevalediviareggio"}, {"datetaken": "2010-02-14 17:43:09", "license": "1", "title": "Wargames", "text": "", "album_id": "72157623350425121", "longitude": "10.235219", "url_o": "https://farm5.staticflickr.com/4044/4374094286_feac1cb37f_o.jpg", "secret": "042f158c57", "media": "photo", "latitude": "43.881401", "id": "4374094286", "tags": "carnival italy tuscany toscana carnevale satira viareggio carnevalediviareggio"}, {"datetaken": "2010-02-14 17:47:50", "license": "1", "title": "Videocracy", "text": "", "album_id": "72157623350425121", "longitude": "10.235219", "url_o": "https://farm5.staticflickr.com/4024/4374095076_e4bd73441f_o.jpg", "secret": "190a915192", "media": "photo", "latitude": "43.881401", "id": "4374095076", "tags": "carnival italy tuscany toscana carnevale satira viareggio carnevalediviareggio"}, {"datetaken": "2010-02-14 17:51:29", "license": "1", "title": "Red China", "text": "", "album_id": "72157623350425121", "longitude": "10.235219", "url_o": "https://farm3.staticflickr.com/2758/4373341119_97b75267d9_o.jpg", "secret": "43555e7c66", "media": "photo", "latitude": "43.881401", "id": "4373341119", "tags": "china carnival red portrait italy tuscany toscana carnevale rosso ritratto satira cina drago viareggio bambina dragone carnevalediviareggio"}, {"datetaken": "2010-02-14 17:55:16", "license": "1", "title": "Burlamackson", "text": "", "album_id": "72157623350425121", "longitude": "10.235219", "url_o": "https://farm3.staticflickr.com/2734/4374095594_7848cc5bc9_o.jpg", "secret": "14da26122f", "media": "photo", "latitude": "43.881401", "id": "4374095594", "tags": "carnevale carnival viareggio italy tuscany toscana carnevalediviareggio satira burlamacco maschere michaeljackson thrillerparty gionatafrancesconi"}, {"datetaken": "2010-02-14 17:56:49", "license": "1", "title": "King of Pop", "text": "", "album_id": "72157623350425121", "longitude": "10.235219", "url_o": "https://farm5.staticflickr.com/4070/4373341607_93f459c569_o.jpg", "secret": "347d755b0b", "media": "photo", "latitude": "43.881401", "id": "4373341607", "tags": "carnival italy tuscany michaeljackson toscana carnevale satira viareggio carnevalediviareggio gionatafrancesconi thrillerparty"}, {"datetaken": "2010-02-14 18:22:59", "license": "1", "title": "Still Alive", "text": "", "album_id": "72157623350425121", "longitude": "10.235219", "url_o": "https://farm3.staticflickr.com/2785/4373342909_a47e645248_o.jpg", "secret": "309993a777", "media": "photo", "latitude": "43.881401", "id": "4373342909", "tags": "carnival italy tuscany michaeljackson toscana carnevale satira viareggio carnevalediviareggio gionatafrancesconi thrillerparty"}, {"datetaken": "2010-02-14 18:25:17", "license": "1", "title": "Gionata Mani di Forbice", "text": "", "album_id": "72157623350425121", "longitude": "10.235219", "url_o": "https://farm3.staticflickr.com/2757/4373343033_bf041270ba_o.jpg", "secret": "0ca030c142", "media": "photo", "latitude": "43.881401", "id": "4373343033", "tags": "carnival italy tuscany toscana carnevale satira viareggio carnevalediviareggio"}, {"datetaken": "2011-01-30 01:16:00", "license": "3", "title": "", "text": "", "album_id": "72157625971712783", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5095/5462367607_f28c9f0499_o.jpg", "secret": "7c50d0f2a1", "media": "photo", "latitude": "0", "id": "5462367607", "tags": "minnesota minneapolis saintpaul wintercarnival"}, {"datetaken": "2011-01-30 01:18:46", "license": "3", "title": "", "text": "", "album_id": "72157625971712783", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5216/5462969124_720ae9c0f9_o.jpg", "secret": "2f647186be", "media": "photo", "latitude": "0", "id": "5462969124", "tags": "minnesota minneapolis saintpaul wintercarnival"}, {"datetaken": "2011-01-30 01:18:58", "license": "3", "title": "", "text": "", "album_id": "72157625971712783", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5218/5462969288_7ce2bd18ed_o.jpg", "secret": "345dc91975", "media": "photo", "latitude": "0", "id": "5462969288", "tags": "minnesota minneapolis saintpaul wintercarnival"}, {"datetaken": "2011-01-30 01:19:51", "license": "3", "title": "", "text": "", "album_id": "72157625971712783", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5292/5462367937_9bbe8cd3d7_o.jpg", "secret": "7555eca0fa", "media": "photo", "latitude": "0", "id": "5462367937", "tags": "minnesota minneapolis saintpaul wintercarnival"}, {"datetaken": "2011-01-30 01:21:26", "license": "3", "title": "", "text": "", "album_id": "72157625971712783", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5212/5462368033_e402c1fafd_o.jpg", "secret": "8ff482dee9", "media": "photo", "latitude": "0", "id": "5462368033", "tags": "minnesota minneapolis saintpaul wintercarnival"}, {"datetaken": "2011-01-30 01:21:43", "license": "3", "title": "", "text": "", "album_id": "72157625971712783", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5462969644_bd0d5d0ced_o.jpg", "secret": "6b5b53e496", "media": "photo", "latitude": "0", "id": "5462969644", "tags": "minnesota minneapolis saintpaul wintercarnival"}, {"datetaken": "2011-01-30 01:21:59", "license": "3", "title": "", "text": "", "album_id": "72157625971712783", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5212/5462969738_1c06437f49_o.jpg", "secret": "d1a7249d4d", "media": "photo", "latitude": "0", "id": "5462969738", "tags": "minnesota minneapolis saintpaul wintercarnival"}, {"datetaken": "2011-01-30 01:23:11", "license": "3", "title": "", "text": "", "album_id": "72157625971712783", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5300/5462969898_7a389e5fc4_o.jpg", "secret": "500028554d", "media": "photo", "latitude": "0", "id": "5462969898", "tags": "minnesota minneapolis saintpaul wintercarnival"}, {"datetaken": "2011-01-30 01:26:34", "license": "3", "title": "", "text": "", "album_id": "72157625971712783", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5176/5462368493_d8d2cd2b2b_o.jpg", "secret": "5368a51c60", "media": "photo", "latitude": "0", "id": "5462368493", "tags": "minnesota minneapolis saintpaul wintercarnival"}, {"datetaken": "2011-01-30 01:26:42", "license": "3", "title": "", "text": "", "album_id": "72157625971712783", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5133/5462368595_9649e17a8d_o.jpg", "secret": "b882412d47", "media": "photo", "latitude": "0", "id": "5462368595", "tags": "minnesota minneapolis saintpaul wintercarnival"}, {"datetaken": "2011-01-30 01:26:56", "license": "3", "title": "", "text": "", "album_id": "72157625971712783", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5253/5462970260_041289fd55_o.jpg", "secret": "6c59d0a7af", "media": "photo", "latitude": "0", "id": "5462970260", "tags": "minnesota minneapolis saintpaul wintercarnival"}, {"datetaken": "2011-01-30 01:30:31", "license": "3", "title": "", "text": "", "album_id": "72157625971712783", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5015/5462368815_303a04092c_o.jpg", "secret": "3d34514345", "media": "photo", "latitude": "0", "id": "5462368815", "tags": "minnesota minneapolis saintpaul wintercarnival"}, {"datetaken": "2011-01-30 01:31:33", "license": "3", "title": "", "text": "", "album_id": "72157625971712783", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5096/5462368937_15f9744407_o.jpg", "secret": "905cf477cc", "media": "photo", "latitude": "0", "id": "5462368937", "tags": "minnesota minneapolis saintpaul wintercarnival"}, {"datetaken": "2011-01-30 01:31:53", "license": "3", "title": "", "text": "", "album_id": "72157625971712783", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5015/5462970604_7cae08f97f_o.jpg", "secret": "554a08b534", "media": "photo", "latitude": "0", "id": "5462970604", "tags": "minnesota minneapolis saintpaul wintercarnival"}, {"datetaken": "2011-02-19 17:09:30", "license": "1", "title": "Krewe du Vieux Pre-Parade Party", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5013/5463255573_b1c1641bce_o.jpg", "secret": "b79af41cdc", "media": "photo", "latitude": "0", "id": "5463255573", "tags": "carnival louisiana neworleans frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011 maitrilab"}, {"datetaken": "2011-02-19 17:12:05", "license": "1", "title": "Krewe du Vieux Pre-Parade Party", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5463256173_47cc1c565c_o.jpg", "secret": "d8c665c644", "media": "photo", "latitude": "0", "id": "5463256173", "tags": "carnival louisiana neworleans frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011 maitrilab"}, {"datetaken": "2011-02-19 17:13:13", "license": "1", "title": "Krewe du Vieux Pre-Parade Party", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5059/5463856822_b957fff2cf_o.jpg", "secret": "0c82c63652", "media": "photo", "latitude": "0", "id": "5463856822", "tags": "carnival louisiana neworleans frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 17:47:05", "license": "1", "title": "Krewe du Vieux Pre-Parade Party", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5139/5463857224_c3f7565fdb_o.jpg", "secret": "03db55d6e9", "media": "photo", "latitude": "0", "id": "5463857224", "tags": "carnival louisiana neworleans frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 18:03:38", "license": "1", "title": "Krewe du Vieux Pre-Parade Party", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5138/5463257461_ce2ba3c816_o.jpg", "secret": "2a00cb5d44", "media": "photo", "latitude": "0", "id": "5463257461", "tags": "carnival louisiana neworleans frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 18:04:39", "license": "1", "title": "Grand Marshalls Of C.R.A.P.S.", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5214/5463257991_7596cf9e94_o.jpg", "secret": "7654732460", "media": "photo", "latitude": "0", "id": "5463257991", "tags": "carnival louisiana neworleans frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 18:04:43", "license": "1", "title": "Grand Marshalls Of C.R.A.P.S.", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5177/5463858400_5933928b15_o.jpg", "secret": "fb9c803ea0", "media": "photo", "latitude": "0", "id": "5463858400", "tags": "carnival louisiana neworleans frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 18:05:14", "license": "1", "title": "Pammy The Nurse", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5058/5463859012_b9b0627a9c_o.jpg", "secret": "befa99b898", "media": "photo", "latitude": "0", "id": "5463859012", "tags": "carnival louisiana neworleans frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 18:29:13", "license": "1", "title": "Evil Bob", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5060/5463859472_1d18f55aca_o.jpg", "secret": "59075b9417", "media": "photo", "latitude": "0", "id": "5463859472", "tags": "carnival louisiana neworleans frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 18:43:27", "license": "1", "title": "All Hail The King & Queen Of Krewe du Vieux 2011", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5053/5463259675_4326bbee59_o.jpg", "secret": "ec85bbda61", "media": "photo", "latitude": "0", "id": "5463259675", "tags": "carnival louisiana neworleans frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 18:43:50", "license": "1", "title": "All Hail The King & Queen Of Krewe du Vieux 2011", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5176/5463260091_110997d757_o.jpg", "secret": "db7ae1dda1", "media": "photo", "latitude": "0", "id": "5463260091", "tags": "carnival louisiana neworleans frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 18:44:09", "license": "1", "title": "All Hail The King & Queen Of Krewe du Vieux 2011", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5255/5463860842_c73d6a0089_o.jpg", "secret": "fb224c53e1", "media": "photo", "latitude": "0", "id": "5463860842", "tags": "carnival louisiana neworleans frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 19:06:22", "license": "1", "title": "CRAPS's New Grand Marshall Ms. Kerry", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5216/5463272847_ac598dbf39_o.jpg", "secret": "794507ec7d", "media": "photo", "latitude": "0", "id": "5463272847", "tags": "carnival louisiana neworleans parade frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 19:11:46", "license": "1", "title": "Hello Nurse", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5258/5463873690_3ab4418191_o.jpg", "secret": "4ce77a0029", "media": "photo", "latitude": "0", "id": "5463873690", "tags": "carnival louisiana neworleans parade frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 19:12:10", "license": "1", "title": "Marigny Second Line", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5055/5463874240_340dbf472a_o.jpg", "secret": "2ec1aab6ae", "media": "photo", "latitude": "0", "id": "5463874240", "tags": "carnival louisiana neworleans parade frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 19:15:21", "license": "1", "title": "Toni!", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5092/5463274373_4546149c37_o.jpg", "secret": "94dd279ac6", "media": "photo", "latitude": "0", "id": "5463274373", "tags": "carnival louisiana neworleans parade frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 19:19:57", "license": "1", "title": "The Paulin Brothers", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5215/5463274931_ba7c57eae5_o.jpg", "secret": "17045e565e", "media": "photo", "latitude": "0", "id": "5463274931", "tags": "carnival louisiana neworleans parade frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 19:20:51", "license": "1", "title": "Captain Toni And Me With The Wonderful Ricky Paulin!", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5136/5463275333_a5311d96ac_o.jpg", "secret": "12b6d72fa6", "media": "photo", "latitude": "0", "id": "5463275333", "tags": "carnival louisiana neworleans parade frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011 maitrilab"}, {"datetaken": "2011-02-19 19:43:19", "license": "1", "title": "25 Years Totally Wasted", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5219/5463275761_e382363392_o.jpg", "secret": "f04457bb11", "media": "photo", "latitude": "0", "id": "5463275761", "tags": "carnival louisiana neworleans parade frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 20:09:26", "license": "1", "title": "The Unhomans (Inhomans?)", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5095/5463876870_ce0b982c62_o.jpg", "secret": "6644081f00", "media": "photo", "latitude": "0", "id": "5463876870", "tags": "carnival louisiana neworleans parade frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 20:14:07", "license": "1", "title": "DJ Davis Gives Me A Special WhoDatStache", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5137/5463877778_086fa6601e_o.jpg", "secret": "82b46913e1", "media": "photo", "latitude": "0", "id": "5463877778", "tags": "carnival louisiana neworleans parade frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011 maitrilab"}, {"datetaken": "2011-02-19 20:15:35", "license": "1", "title": "Ray \"Plaine\" Kern & Me", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5299/5463278037_2d97a65674_o.jpg", "secret": "6647f5e56c", "media": "photo", "latitude": "0", "id": "5463278037", "tags": "carnival louisiana neworleans parade frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011 maitrilab"}, {"datetaken": "2011-02-19 20:17:50", "license": "1", "title": "All Hail The Queen Of Mama Roux", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5292/5463278491_17281db8cb_o.jpg", "secret": "c4e8cfd9d5", "media": "photo", "latitude": "0", "id": "5463278491", "tags": "carnival louisiana neworleans parade frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 22:30:47", "license": "1", "title": "Epic Crowds On Decatur", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5297/5463879478_39a9ce4664_o.jpg", "secret": "e566904df4", "media": "photo", "latitude": "0", "id": "5463879478", "tags": "carnival louisiana neworleans parade frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 22:35:57", "license": "1", "title": "Joan", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5463879874_3d866e4d2d_o.jpg", "secret": "82b15e3d5e", "media": "photo", "latitude": "0", "id": "5463879874", "tags": "carnival louisiana neworleans parade frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2011-02-19 22:52:15", "license": "1", "title": "I Gored My Runner", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5016/5463880556_544b5b307b_o.jpg", "secret": "8220a2e4a5", "media": "photo", "latitude": "0", "id": "5463880556", "tags": "carnival louisiana neworleans parade frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011 maitrilab"}, {"datetaken": "2011-02-19 22:52:35", "license": "1", "title": "D & Me", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5300/5463281283_bb999340c0_o.jpg", "secret": "139f49d2b8", "media": "photo", "latitude": "0", "id": "5463281283", "tags": "carnival louisiana neworleans parade frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011 maitrilab"}, {"datetaken": "2011-02-19 22:59:55", "license": "1", "title": "Krewe du Vieux 2011", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5300/5463361839_0139f22516_o.jpg", "secret": "ca85bab4ba", "media": "photo", "latitude": "0", "id": "5463361839", "tags": "carnival louisiana neworleans frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011 maitrilab"}, {"datetaken": "2011-02-19 23:21:06", "license": "1", "title": "Krewe du Vieux 2011", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5254/5463961278_05f299feb6_o.jpg", "secret": "a0f9c79c7c", "media": "photo", "latitude": "0", "id": "5463961278", "tags": "carnival louisiana neworleans frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011 maitrilab"}, {"datetaken": "2011-02-20 00:21:17", "license": "1", "title": "The Radiators", "text": "", "album_id": "72157625973841677", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5018/5463362535_305c010567_o.jpg", "secret": "9773cbbbab", "media": "photo", "latitude": "0", "id": "5463362535", "tags": "carnival louisiana neworleans frenchquarter mardigras marigny kreweduvieux mardigras2011 kreweduvieux2011"}, {"datetaken": "2010-03-07 08:52:24", "license": "2", "title": "walking to our ship the carnival legend", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4455401709_4282231d1a_o.jpg", "secret": "7d28548011", "media": "photo", "latitude": "0", "id": "4455401709", "tags": "cruise carnival western legend 2010 caribean cruise10"}, {"datetaken": "2010-03-07 08:52:30", "license": "2", "title": "Pirates!", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2781/4456183378_faeb012be4_o.jpg", "secret": "4d011a43a4", "media": "photo", "latitude": "0", "id": "4456183378", "tags": "cruise carnival western legend 2010 caribean cruise10"}, {"datetaken": "2010-03-07 16:15:47", "license": "2", "title": "Sunshine Skyway bridge", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4455406641_76d18faa8d_o.jpg", "secret": "9d6329874f", "media": "photo", "latitude": "0", "id": "4455406641", "tags": "cruise carnival western legend 2010 caribean cruiseday1"}, {"datetaken": "2010-03-07 16:16:01", "license": "2", "title": "Sunshine Skyway bridge and Jim", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2702/4456187130_ed68899341_o.jpg", "secret": "6f8b238f93", "media": "photo", "latitude": "0", "id": "4456187130", "tags": "cruise carnival western legend 2010 caribean cruiseday1"}, {"datetaken": "2010-03-07 16:16:13", "license": "2", "title": "Sunshine Skyway bridge", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4456188834_1ce272c672_o.jpg", "secret": "8731fc5fd2", "media": "photo", "latitude": "0", "id": "4456188834", "tags": "cruise carnival western legend 2010 caribean cruiseday1"}, {"datetaken": "2010-03-07 16:20:18", "license": "2", "title": "taken looking straight down from our balcony", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4455411109_2cb5b7464f_o.jpg", "secret": "ac93868b35", "media": "photo", "latitude": "0", "id": "4455411109", "tags": "cruise carnival pelican western legend 2010 caribean cruiseday1"}, {"datetaken": "2010-03-07 16:20:34", "license": "2", "title": "this dude was flying along with us for quite a long time", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4455411387_7a4aa47783_o.jpg", "secret": "b98804a78d", "media": "photo", "latitude": "0", "id": "4455411387", "tags": "cruise carnival western legend 2010 caribean cruiseday1"}, {"datetaken": "2010-03-07 16:20:37", "license": "2", "title": "Pelican Escort", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4456190098_2b53b7497c_o.jpg", "secret": "2527573ac8", "media": "photo", "latitude": "0", "id": "4456190098", "tags": "cruise carnival western legend 2010 caribean cruiseday1"}, {"datetaken": "2010-03-07 16:24:36", "license": "2", "title": "Sheriff escort", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4455414487_5e563a727f_o.jpg", "secret": "0e417ecbd0", "media": "photo", "latitude": "0", "id": "4455414487", "tags": "cruise carnival western legend 2010 caribean cruiseday1"}, {"datetaken": "2010-03-07 16:31:11", "license": "2", "title": "passing ship", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2767/4455416817_768b8b2645_o.jpg", "secret": "887116e945", "media": "photo", "latitude": "0", "id": "4455416817", "tags": "cruise carnival western legend 2010 caribean cruiseday1"}, {"datetaken": "2010-03-07 16:34:13", "license": "2", "title": "lighthouse", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4456196778_ab71b610f7_o.jpg", "secret": "1a6bdd17ea", "media": "photo", "latitude": "0", "id": "4456196778", "tags": "cruise carnival western legend 2010 caribean cruiseday1"}, {"datetaken": "2010-03-07 16:34:22", "license": "2", "title": "sunset from balcony", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2749/4455419795_359d101f3e_o.jpg", "secret": "5bfd14c03c", "media": "photo", "latitude": "0", "id": "4455419795", "tags": "cruise carnival western legend 2010 caribean cruiseday1"}, {"datetaken": "2010-03-07 16:36:43", "license": "2", "title": "island with lighthouse", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4455423391_cb71254814_o.jpg", "secret": "1e69454ce6", "media": "photo", "latitude": "0", "id": "4455423391", "tags": "cruise carnival western legend 2010 caribean cruiseday1"}, {"datetaken": "2010-03-07 16:37:08", "license": "2", "title": "sunset", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4456204168_773c1617cc_o.jpg", "secret": "7445e7eb0b", "media": "photo", "latitude": "0", "id": "4456204168", "tags": "cruise carnival western legend 2010 caribean cruiseday1"}, {"datetaken": "2010-03-07 16:37:56", "license": "2", "title": "lighthouse winking goodbye", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4456205732_8bd4be004d_o.jpg", "secret": "55477bcea4", "media": "photo", "latitude": "0", "id": "4456205732", "tags": "cruise carnival western legend 2010 caribean cruiseday1"}, {"datetaken": "2010-03-07 16:39:24", "license": "2", "title": "trying to control myself", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4456207790_359bb1edff_o.jpg", "secret": "d19ed70177", "media": "photo", "latitude": "0", "id": "4456207790", "tags": "cruise carnival western legend 2010 caribean cruiseday1"}, {"datetaken": "2010-03-07 16:39:39", "license": "2", "title": "ribons of clouds in the sunset", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4455431231_3bd62075db_o.jpg", "secret": "885ca7b684", "media": "photo", "latitude": "0", "id": "4455431231", "tags": "cruise carnival western legend 2010 caribean cruiseday1"}, {"datetaken": "2010-03-07 18:02:36", "license": "2", "title": "towel animal", "text": "", "album_id": "72157623550329501", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4455432711_5ce95fc834_o.jpg", "secret": "157c8b7702", "media": "photo", "latitude": "0", "id": "4455432711", "tags": "cruise carnival western legend caribean 2010cruiseday1"}, {"datetaken": "2011-02-26 10:01:36", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-047", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5016/5549198371_5582960a2d_o.jpg", "secret": "4c7f1aea7e", "media": "photo", "latitude": "0", "id": "5549198371", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 10:03:05", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-049", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5176/5549198907_a1476ac168_o.jpg", "secret": "7a280b5d8d", "media": "photo", "latitude": "0", "id": "5549198907", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 10:04:05", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-050", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5260/5549782326_34b348b107_o.jpg", "secret": "3fd22e9107", "media": "photo", "latitude": "0", "id": "5549782326", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 10:04:21", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-051", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5309/5549782748_c12d85d112_o.jpg", "secret": "1d90e3dd2f", "media": "photo", "latitude": "0", "id": "5549782748", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 10:04:27", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-052", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5147/5549783118_9d73f8cf1d_o.jpg", "secret": "6639d0fcd1", "media": "photo", "latitude": "0", "id": "5549783118", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 10:06:53", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-053", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5254/5549200401_dcbfcfefde_o.jpg", "secret": "3581db5580", "media": "photo", "latitude": "0", "id": "5549200401", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 10:06:58", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-054", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5262/5549783918_5c88971d82_o.jpg", "secret": "5b1d6acc9d", "media": "photo", "latitude": "0", "id": "5549783918", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 10:13:32", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-057", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5069/5549201097_2961a98d62_o.jpg", "secret": "3e6173dc06", "media": "photo", "latitude": "0", "id": "5549201097", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 10:13:48", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-058", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5067/5549784794_fb260d08d8_o.jpg", "secret": "d6dee1fdac", "media": "photo", "latitude": "0", "id": "5549784794", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 10:36:34", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-063", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5026/5549785074_d5eace3ba2_o.jpg", "secret": "70157bc0c5", "media": "photo", "latitude": "0", "id": "5549785074", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 10:36:45", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-064", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5181/5549785318_fd4e318931_o.jpg", "secret": "590b310204", "media": "photo", "latitude": "0", "id": "5549785318", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 10:38:56", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-066", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5255/5549785622_f5316a1a4c_o.jpg", "secret": "842f985b70", "media": "photo", "latitude": "0", "id": "5549785622", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 11:01:41", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-068", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5059/5549785796_3424d8179c_o.jpg", "secret": "40e61c2670", "media": "photo", "latitude": "0", "id": "5549785796", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 11:02:46", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-070", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5295/5549786224_b726187ec6_o.jpg", "secret": "917ed01fc7", "media": "photo", "latitude": "0", "id": "5549786224", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 11:02:53", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-071", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5171/5549203415_0f1c79f4de_o.jpg", "secret": "9ca2db0367", "media": "photo", "latitude": "0", "id": "5549203415", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 11:03:02", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-072", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5293/5549203749_e0c5b64933_o.jpg", "secret": "5ef187d80f", "media": "photo", "latitude": "0", "id": "5549203749", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 11:46:23", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-081", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5293/5549204333_d2d3e96807_o.jpg", "secret": "1a965596ae", "media": "photo", "latitude": "0", "id": "5549204333", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 11:47:20", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-082", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5138/5549787688_e084acbf7e_o.jpg", "secret": "5e931ca217", "media": "photo", "latitude": "0", "id": "5549787688", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 11:47:30", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-083", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5304/5549205123_585307beea_o.jpg", "secret": "dd339b2d98", "media": "photo", "latitude": "0", "id": "5549205123", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 11:57:59", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-084", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5266/5549788602_044c201183_o.jpg", "secret": "2fa9be075e", "media": "photo", "latitude": "0", "id": "5549788602", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 11:58:12", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-085", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5264/5549206083_b8cfda45f2_o.jpg", "secret": "67cdfca577", "media": "photo", "latitude": "0", "id": "5549206083", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 11:59:05", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-087", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5294/5549789386_a28f264107_o.jpg", "secret": "ddab43b22d", "media": "photo", "latitude": "0", "id": "5549789386", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 11:59:11", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-088", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5052/5549789928_05b0fafb16_o.jpg", "secret": "903b172d4d", "media": "photo", "latitude": "0", "id": "5549789928", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 11:59:19", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-089", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5141/5549207553_d7fe005665_o.jpg", "secret": "4ef1feea55", "media": "photo", "latitude": "0", "id": "5549207553", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-02-26 11:59:42", "license": "5", "title": "2011-02-26_Arano-zomorroak-JI-091", "text": "", "album_id": "72157626199302945", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5028/5549208133_9a04bdca7d_o.jpg", "secret": "a588277e04", "media": "photo", "latitude": "0", "id": "5549208133", "tags": "carnival carnaval inauteriak nafarroa arano fandangoa ihauteriak 2011 tradizionala aratusteak arinarina karnabala zomorroak ihoteak inauteak photojoniraola tokiantokikoa aratostiak"}, {"datetaken": "2011-03-05 11:50:40", "license": "1", "title": "Kayak Storage", "text": "", "album_id": "72157626205521785", "longitude": "-117.920937", "url_o": "https://farm6.staticflickr.com/5060/5552316968_c424e43b43_o.jpg", "secret": "1f49f8e9af", "media": "photo", "latitude": "33.806821", "id": "5552316968", "tags": "california sign disney anaheim californiaadventure grizzlyriverrun 2011 grizzlypeakrecreationarea"}, {"datetaken": "2011-03-05 11:51:02", "license": "1", "title": "Rusty Truck", "text": "", "album_id": "72157626205521785", "longitude": "-117.920937", "url_o": "https://farm6.staticflickr.com/5310/5551731243_638784a61d_o.jpg", "secret": "d836172f3c", "media": "photo", "latitude": "33.806821", "id": "5551731243", "tags": "california truck disney anaheim californiaadventure grizzlyriverrun 2011 grizzlypeakrecreationarea"}, {"datetaken": "2011-03-05 11:53:21", "license": "1", "title": "Waterfall", "text": "", "album_id": "72157626205521785", "longitude": "-117.920937", "url_o": "https://farm6.staticflickr.com/5253/5551733625_0aba829424_o.jpg", "secret": "bfe4827e5c", "media": "photo", "latitude": "33.806821", "id": "5551733625", "tags": "california waterfall disney anaheim californiaadventure grizzlyriverrun 2011 grizzlypeakrecreationarea"}, {"datetaken": "2011-03-05 12:50:57", "license": "1", "title": "Paradise Bay", "text": "", "album_id": "72157626205521785", "longitude": "-117.921634", "url_o": "https://farm6.staticflickr.com/5180/5552321500_77420c8381_o.jpg", "secret": "050f81580a", "media": "photo", "latitude": "33.804583", "id": "5552321500", "tags": "california reflection disney mickeymouse anaheim californiaadventure californiascreamin paradisebay paradisepier 2011"}, {"datetaken": "2011-03-05 13:55:34", "license": "1", "title": "California Not-So-Screamin'", "text": "", "album_id": "72157626205521785", "longitude": "-117.921634", "url_o": "https://farm6.staticflickr.com/5145/5551735719_7678c8f13e_o.jpg", "secret": "2b7fa9822f", "media": "photo", "latitude": "33.804583", "id": "5551735719", "tags": "california disney anaheim californiaadventure californiascreamin paradisepier 2011"}, {"datetaken": "2011-03-05 14:14:08", "license": "1", "title": "How To Play Midway Games", "text": "", "album_id": "72157626205521785", "longitude": "-117.921634", "url_o": "https://farm6.staticflickr.com/5270/5552323730_a4e2daf0f7_o.jpg", "secret": "b2055d7147", "media": "photo", "latitude": "33.804583", "id": "5552323730", "tags": "california artwork disney anaheim californiaadventure paradisepier 2011 toystorymania"}, {"datetaken": "2011-03-05 14:19:19", "license": "1", "title": "Hamm and Eggs", "text": "", "album_id": "72157626205521785", "longitude": "-117.921634", "url_o": "https://farm6.staticflickr.com/5187/5552324828_c93ec56699_o.jpg", "secret": "75fe0c77d9", "media": "photo", "latitude": "33.804583", "id": "5552324828", "tags": "california artwork disney anaheim californiaadventure paradisepier 2011 toystorymania"}, {"datetaken": "2011-03-05 16:15:30", "license": "1", "title": "Contrast and Detail", "text": "", "album_id": "72157626205521785", "longitude": "-117.917901", "url_o": "https://farm6.staticflickr.com/5255/5552325462_bf6480f500_o.jpg", "secret": "b8c37b143b", "media": "photo", "latitude": "33.807579", "id": "5552325462", "tags": "california architecture disney anaheim californiaadventure 2011 hollywoodpicturesbacklot sorcerersworkshop"}, {"datetaken": "2011-03-05 16:52:39", "license": "1", "title": "Minnie Mouse", "text": "", "album_id": "72157626205521785", "longitude": "-117.918008", "url_o": "https://farm6.staticflickr.com/5229/5552326374_f8dc64dc0c_o.jpg", "secret": "32c164da5c", "media": "photo", "latitude": "33.806660", "id": "5552326374", "tags": "california disney minniemouse anaheim californiaadventure 2011 abugsland"}, {"datetaken": "2011-03-06 08:01:29", "license": "1", "title": "Buildings on Main Street", "text": "", "album_id": "72157626205521785", "longitude": "-117.919006", "url_o": "https://farm6.staticflickr.com/5190/5552327092_3e3299b5e0_o.jpg", "secret": "be91bf43c8", "media": "photo", "latitude": "33.810770", "id": "5552327092", "tags": "california disneyland disney anaheim mainstreetusa 2011"}, {"datetaken": "2011-03-06 12:56:20", "license": "1", "title": "French Market", "text": "", "album_id": "72157626205521785", "longitude": "-117.921559", "url_o": "https://farm6.staticflickr.com/5175/5551741445_3fa1962e12_o.jpg", "secret": "b95af7665c", "media": "photo", "latitude": "33.811332", "id": "5551741445", "tags": "california disneyland disney anaheim frenchmarket neworleanssquare 2011"}, {"datetaken": "2011-03-06 13:59:45", "license": "1", "title": "Two Brothers Tunemakers", "text": "", "album_id": "72157626205521785", "longitude": "-117.919006", "url_o": "https://farm6.staticflickr.com/5134/5551742285_25e81d1b23_o.jpg", "secret": "bb147d71c8", "media": "photo", "latitude": "33.810770", "id": "5551742285", "tags": "california window disneyland disney anaheim mainstreetusa 2011 shermanbrothers"}, {"datetaken": "2011-03-06 14:41:24", "license": "1", "title": "Matterhorn", "text": "", "album_id": "72157626205521785", "longitude": "-117.917869", "url_o": "https://farm6.staticflickr.com/5228/5552329468_89f2546058_o.jpg", "secret": "07a6103c9c", "media": "photo", "latitude": "33.813107", "id": "5552329468", "tags": "california disneyland disney anaheim fantasyland 2011 matterhornbobsled"}, {"datetaken": "2011-03-06 16:19:25", "license": "1", "title": "My Favorite Spot in Disneyland", "text": "", "album_id": "72157626205521785", "longitude": "-117.919564", "url_o": "https://farm6.staticflickr.com/5256/5551744069_f748b91642_o.jpg", "secret": "3be0859977", "media": "photo", "latitude": "33.812305", "id": "5551744069", "tags": "california disneyland disney anaheim frontierland 2011 plazagardenstage"}, {"datetaken": "2011-03-06 16:20:41", "license": "1", "title": "Westward Ho Trading Co.", "text": "", "album_id": "72157626205521785", "longitude": "-117.919564", "url_o": "https://farm6.staticflickr.com/5148/5552331538_38d78a9e00_o.jpg", "secret": "dfa0bed14d", "media": "photo", "latitude": "33.812305", "id": "5552331538", "tags": "california disneyland disney anaheim frontierland 2011 westwardhotradingco plazagardenstage"}, {"datetaken": "2011-03-06 16:22:24", "license": "1", "title": "Reflective Duck", "text": "", "album_id": "72157626205521785", "longitude": "-117.919564", "url_o": "https://farm6.staticflickr.com/5025/5551745749_c64294d926_o.jpg", "secret": "d1601c5a0e", "media": "photo", "latitude": "33.812305", "id": "5551745749", "tags": "california duck disneyland disney anaheim frontierland 2011 plazagardenstage"}, {"datetaken": "2010-07-21 18:36:19", "license": "1", "title": "Saratoga County Fair", "text": "", "album_id": "72157624437222413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4820048374_79d18e631e_o.jpg", "secret": "136a629fba", "media": "photo", "latitude": "0", "id": "4820048374", "tags": "carnival 50mm fair saratogacountyfair"}, {"datetaken": "2010-07-21 18:36:51", "license": "1", "title": "Saratoga County Fair", "text": "", "album_id": "72157624437222413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4820050250_ce518a6002_o.jpg", "secret": "2e8e055cef", "media": "photo", "latitude": "0", "id": "4820050250", "tags": "carnival 50mm fair saratogacountyfair"}, {"datetaken": "2010-07-21 18:41:08", "license": "1", "title": "Saratoga County Fair", "text": "", "album_id": "72157624437222413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4819429759_c1e601d03f_o.jpg", "secret": "2314acc484", "media": "photo", "latitude": "0", "id": "4819429759", "tags": "carnival 50mm fair saratogacountyfair"}, {"datetaken": "2010-07-21 18:42:11", "license": "1", "title": "Saratoga County Fair", "text": "", "album_id": "72157624437222413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4820052580_ce677a3fbd_o.jpg", "secret": "969f4a7b39", "media": "photo", "latitude": "0", "id": "4820052580", "tags": "carnival 50mm fair saratogacountyfair"}, {"datetaken": "2010-07-21 18:47:15", "license": "1", "title": "Saratoga County Fair", "text": "", "album_id": "72157624437222413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4819432189_f2ab7a49c0_o.jpg", "secret": "fb23613b8e", "media": "photo", "latitude": "0", "id": "4819432189", "tags": "carnival 50mm fair saratogacountyfair"}, {"datetaken": "2010-07-21 18:49:30", "license": "1", "title": "Saratoga County Fair", "text": "", "album_id": "72157624437222413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4819433869_e7abfa1aa3_o.jpg", "secret": "f6da099f92", "media": "photo", "latitude": "0", "id": "4819433869", "tags": "carnival 50mm fair saratogacountyfair"}, {"datetaken": "2010-07-21 18:58:19", "license": "1", "title": "Saratoga County Fair", "text": "", "album_id": "72157624437222413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4102/4819435379_f93a416bc2_o.jpg", "secret": "13410483c3", "media": "photo", "latitude": "0", "id": "4819435379", "tags": "carnival 50mm fair saratogacountyfair"}, {"datetaken": "2010-07-21 19:20:26", "license": "1", "title": "Saratoga County Fair", "text": "", "album_id": "72157624437222413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4820058924_bba3fa4e5b_o.jpg", "secret": "30789e5023", "media": "photo", "latitude": "0", "id": "4820058924", "tags": "carnival 50mm fair saratogacountyfair"}, {"datetaken": "2010-07-21 19:25:16", "license": "1", "title": "Saratoga County Fair", "text": "", "album_id": "72157624437222413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4081/4819438629_789f121cb0_o.jpg", "secret": "0bf1d23f83", "media": "photo", "latitude": "0", "id": "4819438629", "tags": "carnival 50mm fair saratogacountyfair"}, {"datetaken": "2010-07-21 19:29:22", "license": "1", "title": "Saratoga County Fair", "text": "", "album_id": "72157624437222413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4820062290_b89e21ea57_o.jpg", "secret": "d30f6efbed", "media": "photo", "latitude": "0", "id": "4820062290", "tags": "carnival 50mm fair saratogacountyfair"}, {"datetaken": "2010-07-21 19:33:16", "license": "1", "title": "Saratoga County Fair", "text": "", "album_id": "72157624437222413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4820064058_4ce890ba26_o.jpg", "secret": "2829c45105", "media": "photo", "latitude": "0", "id": "4820064058", "tags": "carnival 50mm fair saratogacountyfair"}, {"datetaken": "2010-07-21 19:57:45", "license": "1", "title": "Saratoga County Fair", "text": "", "album_id": "72157624437222413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4120/4820065218_2e698b3796_o.jpg", "secret": "d32253c99d", "media": "photo", "latitude": "0", "id": "4820065218", "tags": "carnival 50mm fair saratogacountyfair"}, {"datetaken": "2010-07-21 19:59:41", "license": "1", "title": "Saratoga County Fair", "text": "", "album_id": "72157624437222413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4820066756_93a36b670e_o.jpg", "secret": "cfbb89935c", "media": "photo", "latitude": "0", "id": "4820066756", "tags": "carnival 50mm fair saratogacountyfair"}, {"datetaken": "2010-07-21 20:01:26", "license": "1", "title": "Saratoga County Fair", "text": "", "album_id": "72157624437222413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4820067874_bbd09cc4b4_o.jpg", "secret": "fc4f878c24", "media": "photo", "latitude": "0", "id": "4820067874", "tags": "carnival 50mm fair saratogacountyfair"}, {"datetaken": "2010-07-21 20:04:27", "license": "1", "title": "Saratoga County Fair", "text": "", "album_id": "72157624437222413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4819447157_b5a2ab71bc_o.jpg", "secret": "faf8bfba20", "media": "photo", "latitude": "0", "id": "4819447157", "tags": "carnival 50mm fair saratogacountyfair"}, {"datetaken": "2010-07-21 20:10:48", "license": "1", "title": "Saratoga County Fair", "text": "", "album_id": "72157624437222413", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4819448495_13e7705590_o.jpg", "secret": "d58d68890c", "media": "photo", "latitude": "0", "id": "4819448495", "tags": "carnival 50mm fair saratogacountyfair"}, {"datetaken": "2011-07-09 18:06:21", "license": "2", "title": "Brentwood Cornfest", "text": "", "album_id": "72157627258198124", "longitude": "-121.692501", "url_o": "https://farm7.staticflickr.com/6139/5965699854_33c3886396_o.jpg", "secret": "f01665abbb", "media": "photo", "latitude": "37.933888", "id": "5965699854", "tags": "carnival festival brentwood foodfestival 2011 ajscamera brentwoodcornfest"}, {"datetaken": "2011-07-09 18:17:54", "license": "2", "title": "Corn?", "text": "", "album_id": "72157627258198124", "longitude": "-121.692501", "url_o": "https://farm7.staticflickr.com/6130/5965700336_924a450217_o.jpg", "secret": "5a23937d51", "media": "photo", "latitude": "37.933888", "id": "5965700336", "tags": "carnival food festival brentwood foodfestival 2011 ajscamera brentwoodcornfest"}, {"datetaken": "2011-07-09 18:38:30", "license": "2", "title": "Brentwood Cornfest", "text": "", "album_id": "72157627258198124", "longitude": "-121.692501", "url_o": "https://farm7.staticflickr.com/6124/5965145565_5505a8a017_o.jpg", "secret": "52fdd2d537", "media": "photo", "latitude": "37.933888", "id": "5965145565", "tags": "carnival festival brentwood foodfestival 2011 ajscamera brentwoodcornfest"}, {"datetaken": "2011-07-09 19:09:34", "license": "2", "title": "Brentwood Cornfest", "text": "", "album_id": "72157627258198124", "longitude": "-121.692501", "url_o": "https://farm7.staticflickr.com/6144/5965701160_c80559057d_o.jpg", "secret": "4c8b2d49ee", "media": "photo", "latitude": "37.933888", "id": "5965701160", "tags": "carnival festival brentwood foodfestival 2011 ajscamera brentwoodcornfest"}, {"datetaken": "2011-07-09 19:11:39", "license": "2", "title": "Brentwood Cornfest", "text": "", "album_id": "72157627258198124", "longitude": "-121.692501", "url_o": "https://farm7.staticflickr.com/6008/5965146343_6c04434127_o.jpg", "secret": "c27dbc33bc", "media": "photo", "latitude": "37.933888", "id": "5965146343", "tags": "carnival festival brentwood foodfestival 2011 ajscamera brentwoodcornfest"}, {"datetaken": "2011-07-09 19:26:07", "license": "2", "title": "Brentwood Cornfest", "text": "", "album_id": "72157627258198124", "longitude": "-121.692501", "url_o": "https://farm7.staticflickr.com/6028/5965146741_e3c514f3a0_o.jpg", "secret": "d3172f24cc", "media": "photo", "latitude": "37.933888", "id": "5965146741", "tags": "carnival festival ferriswheel brentwood foodfestival 2011 ajscamera brentwoodcornfest"}, {"datetaken": "2011-07-09 19:31:10", "license": "2", "title": "Brentwood Cornfest", "text": "", "album_id": "72157627258198124", "longitude": "-121.692501", "url_o": "https://farm7.staticflickr.com/6003/5965147087_09652a2501_o.jpg", "secret": "4e2c986e41", "media": "photo", "latitude": "37.933888", "id": "5965147087", "tags": "carnival festival brentwood foodfestival 2011 ajscamera brentwoodcornfest"}, {"datetaken": "2011-07-09 19:39:15", "license": "2", "title": "Brentwood Cornfest", "text": "", "album_id": "72157627258198124", "longitude": "-121.692501", "url_o": "https://farm7.staticflickr.com/6144/5965147437_c039e5a1ed_o.jpg", "secret": "c0fb87b1ed", "media": "photo", "latitude": "37.933888", "id": "5965147437", "tags": "carnival festival brentwood barbarab foodfestival 2011 tiffanyg ajscamera brentwoodcornfest"}, {"datetaken": "2011-07-09 19:47:52", "license": "2", "title": "Brentwood Cornfest", "text": "", "album_id": "72157627258198124", "longitude": "-121.692501", "url_o": "https://farm7.staticflickr.com/6020/5965147903_6e2cfa110c_o.jpg", "secret": "463ef68d49", "media": "photo", "latitude": "37.933888", "id": "5965147903", "tags": "carnival festival aj brentwood foodfestival 2011 ajscamera brentwoodcornfest"}, {"datetaken": "2011-07-09 19:52:25", "license": "2", "title": "Brentwood Cornfest", "text": "", "album_id": "72157627258198124", "longitude": "-121.692501", "url_o": "https://farm7.staticflickr.com/6020/5965148511_4d693e0518_o.jpg", "secret": "3d671bff43", "media": "photo", "latitude": "37.933888", "id": "5965148511", "tags": "carnival festival brentwood foodfestival 2011 ajscamera brentwoodcornfest"}, {"datetaken": "2011-07-09 19:52:41", "license": "2", "title": "Give the man his prize", "text": "", "album_id": "72157627258198124", "longitude": "-121.692501", "url_o": "https://farm7.staticflickr.com/6149/5965704310_83269404c5_o.jpg", "secret": "7700b7b3f2", "media": "photo", "latitude": "37.933888", "id": "5965704310", "tags": "carnival festival brentwood foodfestival 2011 ajscamera brentwoodcornfest"}, {"datetaken": "2011-07-09 19:56:43", "license": "2", "title": "Brentwood Cornfest", "text": "", "album_id": "72157627258198124", "longitude": "-121.692501", "url_o": "https://farm7.staticflickr.com/6007/5965704938_51168ea5f6_o.jpg", "secret": "55f7b8226b", "media": "photo", "latitude": "37.933888", "id": "5965704938", "tags": "carnival festival brentwood foodfestival 2011 ajscamera brentwoodcornfest"}, {"datetaken": "2011-07-09 19:57:46", "license": "2", "title": "Brentwood Cornfest", "text": "", "album_id": "72157627258198124", "longitude": "-121.692501", "url_o": "https://farm7.staticflickr.com/6137/5965705274_a00faa6c63_o.jpg", "secret": "3ffabf755c", "media": "photo", "latitude": "37.933888", "id": "5965705274", "tags": "carnival festival brentwood foodfestival 2011 ajscamera brentwoodcornfest"}, {"datetaken": "2011-07-09 19:59:20", "license": "2", "title": "Brentwood Cornfest", "text": "", "album_id": "72157627258198124", "longitude": "-121.692501", "url_o": "https://farm7.staticflickr.com/6134/5965705700_41e7005e39_o.jpg", "secret": "b3daa7aca4", "media": "photo", "latitude": "37.933888", "id": "5965705700", "tags": "carnival festival brentwood barbarab foodfestival 2011 ajscamera brentwoodcornfest"}, {"datetaken": "2011-07-09 20:00:41", "license": "2", "title": "Brentwood Cornfest", "text": "", "album_id": "72157627258198124", "longitude": "-121.692501", "url_o": "https://farm7.staticflickr.com/6010/5965706268_54e2fc4693_o.jpg", "secret": "b4d0cd557c", "media": "photo", "latitude": "37.933888", "id": "5965706268", "tags": ""}, {"datetaken": "2011-07-09 20:01:28", "license": "2", "title": "Brentwood Cornfest", "text": "", "album_id": "72157627258198124", "longitude": "-121.692501", "url_o": "https://farm7.staticflickr.com/6121/5965706598_b2d657c737_o.jpg", "secret": "1679bbdda1", "media": "photo", "latitude": "37.933888", "id": "5965706598", "tags": "carnival festival brentwood foodfestival 2011 tiffanyg ajscamera brentwoodcornfest"}, {"datetaken": "2011-07-09 22:42:38", "license": "2", "title": "Gimme yo corn fool", "text": "", "album_id": "72157627258198124", "longitude": "-121.692501", "url_o": "https://farm7.staticflickr.com/6021/5965151647_83f1ed2ff5_o.jpg", "secret": "286edf8072", "media": "photo", "latitude": "37.933888", "id": "5965151647", "tags": "carnival festival brentwood barbarab foodfestival 2011 tiffanyg ajscamera brentwoodcornfest"}, {"datetaken": "2010-08-21 21:33:33", "license": "1", "title": "IMG_20100821_213338", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4922582010_2873b78445_o.jpg", "secret": "48844960f9", "media": "photo", "latitude": "0", "id": "4922582010", "tags": "friends art painting fun preparation"}, {"datetaken": "2010-08-21 21:34:02", "license": "1", "title": "IMG_20100821_213405", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4922582202_79df091596_o.jpg", "secret": "5feb42bd03", "media": "photo", "latitude": "0", "id": "4922582202", "tags": "friends art painting fun preparation"}, {"datetaken": "2010-08-21 21:34:37", "license": "1", "title": "IMG_20100821_213440", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4922582264_c7919e9c72_o.jpg", "secret": "1eeb3c07bd", "media": "photo", "latitude": "0", "id": "4922582264", "tags": "friends fun art painting preparation"}, {"datetaken": "2010-08-21 21:36:15", "license": "1", "title": "IMG_20100821_213621", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4922582334_9a1e9bb4fd_o.jpg", "secret": "b44be5f81e", "media": "photo", "latitude": "0", "id": "4922582334", "tags": "friends art painting fun preparation"}, {"datetaken": "2010-08-21 21:36:26", "license": "1", "title": "IMG_20100821_213631", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4921987435_85991bd327_o.jpg", "secret": "bf08547d8b", "media": "photo", "latitude": "0", "id": "4921987435", "tags": "friends art painting fun preparation"}, {"datetaken": "2010-08-22 10:47:49", "license": "1", "title": "P8220038", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4922582758_e0944e2004_o.jpg", "secret": "f438021738", "media": "photo", "latitude": "0", "id": "4922582758", "tags": "morning friends breakfast fun cornstarch"}, {"datetaken": "2010-08-22 10:47:55", "license": "1", "title": "P8220039", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4076/4922583300_4c3059d2b5_o.jpg", "secret": "fcbfb28e17", "media": "photo", "latitude": "0", "id": "4922583300", "tags": "morning friends breakfast fun cornstarch"}, {"datetaken": "2010-08-22 11:45:44", "license": "1", "title": "P8220040", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4921989137_084daa851e_o.jpg", "secret": "b334bdb012", "media": "photo", "latitude": "0", "id": "4921989137", "tags": "morning friends breakfast fun cornstarch"}, {"datetaken": "2010-08-22 11:46:02", "license": "1", "title": "P8220041", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4921989865_48e1259671_o.jpg", "secret": "53f4afd092", "media": "photo", "latitude": "0", "id": "4921989865", "tags": "morning friends breakfast fun cornstarch"}, {"datetaken": "2010-08-22 11:46:06", "license": "1", "title": "P8220042", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4922584956_ed29efa216_o.jpg", "secret": "0183111cbc", "media": "photo", "latitude": "0", "id": "4922584956", "tags": "morning friends breakfast fun cornstarch"}, {"datetaken": "2010-08-22 12:33:19", "license": "1", "title": "shot_1282494799494", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4922585060_93ef9a806b_o.jpg", "secret": "eb94515f3d", "media": "photo", "latitude": "0", "id": "4922585060", "tags": "morning friends breakfast fun cornstarch"}, {"datetaken": "2010-08-22 12:33:54", "license": "1", "title": "shot_1282494833798", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4922585100_7173be7e2c_o.jpg", "secret": "97e8039bc9", "media": "photo", "latitude": "0", "id": "4922585100", "tags": "morning friends breakfast fun cornstarch"}, {"datetaken": "2010-08-22 12:34:07", "license": "1", "title": "shot_1282494846783", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4921990147_10c22ccc75_o.jpg", "secret": "7487266a30", "media": "photo", "latitude": "0", "id": "4921990147", "tags": "morning friends breakfast fun cornstarch"}, {"datetaken": "2010-08-22 12:34:59", "license": "1", "title": "shot_1282494899172", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4135/4921990179_ee1c617701_o.jpg", "secret": "76131c84e3", "media": "photo", "latitude": "0", "id": "4921990179", "tags": "morning friends breakfast fun cornstarch"}, {"datetaken": "2010-08-22 12:35:32", "license": "1", "title": "shot_1282494931954", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4921990201_e632617204_o.jpg", "secret": "d58efb09bc", "media": "photo", "latitude": "0", "id": "4921990201", "tags": "morning friends breakfast fun cornstarch"}, {"datetaken": "2010-08-22 12:37:20", "license": "1", "title": "shot_1282495039820", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4921990227_7f39469edf_o.jpg", "secret": "db2146eddc", "media": "photo", "latitude": "0", "id": "4921990227", "tags": "morning friends breakfast fun cornstarch"}, {"datetaken": "2010-08-22 12:42:31", "license": "1", "title": "shot_1282495350418", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4922585236_c69b5aeb30_o.jpg", "secret": "2124b84d58", "media": "photo", "latitude": "0", "id": "4922585236", "tags": "morning friends breakfast fun cornstarch"}, {"datetaken": "2010-08-22 12:42:55", "license": "1", "title": "shot_1282495375149", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4114/4921990273_4db6492c9c_o.jpg", "secret": "8c79f3f7f8", "media": "photo", "latitude": "0", "id": "4921990273", "tags": "morning friends breakfast fun cornstarch"}, {"datetaken": "2010-08-22 12:43:13", "license": "1", "title": "shot_1282495392789", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4921990411_1ff23ea897_o.jpg", "secret": "ccec007029", "media": "photo", "latitude": "0", "id": "4921990411", "tags": "morning friends breakfast fun cornstarch"}, {"datetaken": "2010-08-22 14:28:03", "license": "1", "title": "P8220043", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4921990875_cdbe4a638b_o.jpg", "secret": "8407555cab", "media": "photo", "latitude": "0", "id": "4921990875", "tags": "friends arlington fun virginia fair"}, {"datetaken": "2010-08-22 14:28:22", "license": "1", "title": "P8220044", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4100/4921991637_de3446713a_o.jpg", "secret": "1125a36958", "media": "photo", "latitude": "0", "id": "4921991637", "tags": "friends arlington fun virginia fair"}, {"datetaken": "2010-08-22 15:09:20", "license": "1", "title": "P8220045", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4921992309_f85f645de4_o.jpg", "secret": "bbbfc539cf", "media": "photo", "latitude": "0", "id": "4921992309", "tags": "friends arlington fun virginia fair"}, {"datetaken": "2010-08-22 15:09:27", "license": "1", "title": "P8220046", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4922588158_698863ec66_o.jpg", "secret": "27356f495e", "media": "photo", "latitude": "0", "id": "4922588158", "tags": "friends arlington fun virginia fair"}, {"datetaken": "2010-08-22 15:38:13", "license": "1", "title": "shot_1282505892731", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4921993183_433aca5e44_o.jpg", "secret": "169989cc76", "media": "photo", "latitude": "0", "id": "4921993183", "tags": "friends arlington fun virginia fair"}, {"datetaken": "2010-08-22 15:53:11", "license": "1", "title": "shot_1282506790533", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4921993221_70b7e11500_o.jpg", "secret": "29e1b1e999", "media": "photo", "latitude": "0", "id": "4921993221", "tags": "friends arlington fun virginia fair"}, {"datetaken": "2010-08-22 15:53:51", "license": "1", "title": "shot_1282506830954", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4922588232_9e577de083_o.jpg", "secret": "2390ba4257", "media": "photo", "latitude": "0", "id": "4922588232", "tags": "friends arlington fun virginia fair"}, {"datetaken": "2010-08-22 15:54:15", "license": "1", "title": "shot_1282506855372", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4121/4921993301_b38f5febf0_o.jpg", "secret": "d3856792e3", "media": "photo", "latitude": "0", "id": "4921993301", "tags": "friends arlington fun virginia fair"}, {"datetaken": "2010-08-22 15:54:54", "license": "1", "title": "shot_1282506893982", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4922588312_c7445ab8d5_o.jpg", "secret": "22b16939bb", "media": "photo", "latitude": "0", "id": "4922588312", "tags": "friends arlington fun virginia fair"}, {"datetaken": "2010-08-22 15:55:14", "license": "1", "title": "shot_1282506914254", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4922588348_9b2cd33445_o.jpg", "secret": "5521601913", "media": "photo", "latitude": "0", "id": "4922588348", "tags": "friends arlington fun virginia fair"}, {"datetaken": "2010-08-22 15:57:32", "license": "1", "title": "shot_1282507052046", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4921993447_7c81d8c6d0_o.jpg", "secret": "521d3aa846", "media": "photo", "latitude": "0", "id": "4921993447", "tags": "friends arlington fun virginia dinosaur fair"}, {"datetaken": "2010-08-22 16:04:50", "license": "1", "title": "P8220047", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4921994137_d87a9012f1_o.jpg", "secret": "f510cf23e6", "media": "photo", "latitude": "0", "id": "4921994137", "tags": "friends arlington fun virginia fair"}, {"datetaken": "2010-08-22 16:05:19", "license": "1", "title": "P8220049", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4921994925_9ace50ac6c_o.jpg", "secret": "a6ef5f27fd", "media": "photo", "latitude": "0", "id": "4921994925", "tags": "friends arlington fun virginia fair"}, {"datetaken": "2010-08-22 17:01:22", "license": "1", "title": "shot_1282510882699", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4922589742_12a28cf4e6_o.jpg", "secret": "3e0495c6b5", "media": "photo", "latitude": "0", "id": "4922589742", "tags": "friends arlington fun virginia fair"}, {"datetaken": "2010-08-22 17:02:14", "license": "1", "title": "shot_1282510931942", "text": "", "album_id": "72157624794808792", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4143/4921995111_78f2815388_o.jpg", "secret": "31cf860007", "media": "photo", "latitude": "0", "id": "4921995111", "tags": "friends arlington fun virginia fair"}, {"datetaken": "2010-05-22 14:54:02", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8740b", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4814893918_eab271fda6_o.jpg", "secret": "a6e4b2facf", "media": "photo", "latitude": "0", "id": "4814893918", "tags": "street brussels people urban art public festival belgium belgique artistic belgi\u00eb diversity bruxelles social parade espace journalism 2010 reportage periodismo zinneke giornalismo bananaz intercultural journalisme reportaje diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 14:54:27", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8746", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4814894308_039b318bdd_o.jpg", "secret": "af8db0cbee", "media": "photo", "latitude": "0", "id": "4814894308", "tags": "street brussels people urban art public festival belgium belgique artistic belgi\u00eb diversity bruxelles social parade espace journalism 2010 reportage periodismo zinneke giornalismo bananaz intercultural journalisme reportaje diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 14:55:33", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8747", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4814271549_954837dbb1_o.jpg", "secret": "bb44f5124a", "media": "photo", "latitude": "0", "id": "4814271549", "tags": "street brussels people urban art public festival belgium belgique artistic belgi\u00eb diversity bruxelles social parade espace journalism 2010 reportage periodismo zinneke giornalismo bananaz intercultural journalisme reportaje diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 14:55:37", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8748b", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4814271851_cfed7b24d9_o.jpg", "secret": "8098b3e6e2", "media": "photo", "latitude": "0", "id": "4814271851", "tags": "life street city carnival brussels party people urban woman public girl festival calle strada fiesta belgium belgique grandplace young belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace ville grotemarkt j\u00f3venes junge joven 2010 citt\u00e0 giovani zinneke \u4eba straat jeune \u043b\u044e\u0434\u0438 parata bananaz intercultural strase diversit\u00e9 zinnekeparade zinnekesparade interculturel belgi\u00ebn socioartistic"}, {"datetaken": "2010-05-22 14:55:37", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8748c", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4814272033_8743a2d687_o.jpg", "secret": "f6277b813b", "media": "photo", "latitude": "0", "id": "4814272033", "tags": "street brussels people urban art public festival belgium belgique artistic belgi\u00eb diversity bruxelles social parade espace journalism 2010 reportage periodismo zinneke giornalismo bananaz intercultural journalisme reportaje diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 14:55:44", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8749c", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4814895092_211594dc66_o.jpg", "secret": "e22eaa8318", "media": "photo", "latitude": "0", "id": "4814895092", "tags": "life street city carnival brussels party people urban woman public girl festival calle strada fiesta belgium belgique grandplace young belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace ville grotemarkt j\u00f3venes junge joven 2010 citt\u00e0 giovani zinneke \u4eba straat jeune \u043b\u044e\u0434\u0438 parata bananaz intercultural strase diversit\u00e9 zinnekeparade zinnekesparade interculturel belgi\u00ebn socioartistic"}, {"datetaken": "2010-05-22 14:57:21", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8753d", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4814273127_da1b2daf40_o.jpg", "secret": "86f46464b0", "media": "photo", "latitude": "0", "id": "4814273127", "tags": "life street city carnival brussels party people urban woman public girl festival calle strada fiesta belgium belgique grandplace young belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace ville grotemarkt j\u00f3venes junge joven 2010 citt\u00e0 giovani zinneke \u4eba straat jeune \u043b\u044e\u0434\u0438 parata bananaz intercultural strase diversit\u00e9 zinnekeparade zinnekesparade interculturel belgi\u00ebn socioartistic"}, {"datetaken": "2010-05-22 14:57:21", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8753c", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4814895730_eba64374f9_o.jpg", "secret": "b0a9f2cf9b", "media": "photo", "latitude": "0", "id": "4814895730", "tags": "street brussels people urban art public festival belgium belgique artistic belgi\u00eb diversity bruxelles social parade espace journalism 2010 reportage periodismo zinneke giornalismo bananaz intercultural journalisme reportaje diversit\u00e9 zinnekeparade zinnekesparade \u0440\u0435\u043f\u043e\u0440\u0442\u0430\u0436 \u0635\u062d\u0627\u0641\u0629 interculturel \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442\u0438\u043a\u0430 belgi\u00ebn socioartistic \u65b0\u95fb\u5b66 \u30b8\u30e3\u30fc\u30ca\u30ea\u30ba\u30e0 \u30eb\u30dd\u30eb\u30bf\u30fc\u30b8\u30e5 \u62a5\u544a\u6587\u5b66 \u0631\u064a\u0628\u0648\u0631\u062a\u0627\u062c"}, {"datetaken": "2010-05-22 14:57:30", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8754c", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4814896236_aec1be0b25_o.jpg", "secret": "b74a88ef3d", "media": "photo", "latitude": "0", "id": "4814896236", "tags": "life street city brussels people urban woman art public festival female donna dance mujer dancing belgium belgique grandplace artistic femme mulher belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone corps stadt metropolis bruselas frau bodypart belgica personnes flamenco espace ville grotemarkt corpo 2010 citt\u00e0 cuerpo zinneke \u4eba \u50cf \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 weiblich parata bananaz intercultural k\u00f6rper \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 diversit\u00e9 zinnekeparade zinnekesparade interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 belgi\u00ebn socioartistic \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027 \u5973\u6027femminile"}, {"datetaken": "2010-05-22 14:57:50", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8760b", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4821142116_306cbb2918_o.jpg", "secret": "1df355baaf", "media": "photo", "latitude": "0", "id": "4821142116", "tags": "life street city carnival brussels party people urban woman public girl festival calle strada fiesta belgium belgique grandplace young belgi\u00eb bodylanguage diversity bruxelles ciudad social menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace ville grotemarkt j\u00f3venes junge joven 2010 citt\u00e0 giovani zinneke \u4eba straat jeune \u043b\u044e\u0434\u0438 parata bananaz intercultural strase diversit\u00e9 zinnekeparade zinnekesparade interculturel belgi\u00ebn socioartistic"}, {"datetaken": "2010-05-22 14:57:53", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8762b", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4821142336_e3d3573172_o.jpg", "secret": "3a1bdf821c", "media": "photo", "latitude": "0", "id": "4821142336", "tags": "life street city carnival brussels party people urban woman public girl festival calle strada fiesta belgium belgique grandplace young belgi\u00eb bodylanguage diversity bruxelles ciudad social menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace ville grotemarkt j\u00f3venes junge joven 2010 citt\u00e0 giovani zinneke \u4eba straat jeune \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 parata bananaz intercultural strase diversit\u00e9 zinnekeparade zinnekesparade interculturel belgi\u00ebn socioartistic \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0441\u0438\u0447\u0435\u0441\u0438\u0436\u0435\u043d\u0430"}, {"datetaken": "2010-05-22 14:57:54", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8763b", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4073/4820523637_31c8b7cb83_o.jpg", "secret": "17515d9011", "media": "photo", "latitude": "0", "id": "4820523637", "tags": "life street city carnival brussels party people urban woman public girl festival calle strada fiesta belgium belgique grandplace young belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace ville grotemarkt j\u00f3venes junge joven 2010 citt\u00e0 giovani zinneke \u4eba straat jeune \u043b\u044e\u0434\u0438 parata bananaz intercultural strase diversit\u00e9 zinnekeparade zinnekesparade interculturel belgi\u00ebn socioartistic"}, {"datetaken": "2010-05-22 14:57:54", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8763c", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4821143162_851402f363_o.jpg", "secret": "240fbc3308", "media": "photo", "latitude": "0", "id": "4821143162", "tags": "life street city carnival brussels party people urban woman public girl festival calle strada fiesta belgium belgique grandplace young belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace ville grotemarkt j\u00f3venes junge joven 2010 citt\u00e0 giovani zinneke \u4eba straat jeune \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 parata bananaz intercultural strase diversit\u00e9 zinnekeparade zinnekesparade interculturel belgi\u00ebn socioartistic \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0441\u0438\u0447\u0435\u0441\u0438\u0436\u0435\u043d\u0430"}, {"datetaken": "2010-05-22 14:57:56", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8764c", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4123/4820522723_856483ce96_o.jpg", "secret": "15ae6f6ba5", "media": "photo", "latitude": "0", "id": "4820522723", "tags": "life street city carnival brussels party people urban woman public girl festival calle strada fiesta belgium belgique grandplace young belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace ville grotemarkt j\u00f3venes junge joven 2010 citt\u00e0 giovani zinneke \u4eba straat jeune \u043b\u044e\u0434\u0438 parata bananaz intercultural strase diversit\u00e9 zinnekeparade zinnekesparade interculturel belgi\u00ebn socioartistic"}, {"datetaken": "2010-05-22 14:57:56", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8764b", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4114/4821143392_b7741dfc0d_o.jpg", "secret": "402a31eb3d", "media": "photo", "latitude": "0", "id": "4821143392", "tags": "life street city carnival brussels party people urban woman public girl festival calle strada fiesta belgium belgique grandplace young belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace ville grotemarkt j\u00f3venes junge joven 2010 citt\u00e0 giovani zinneke \u4eba straat jeune \u043b\u044e\u0434\u0438 parata bananaz intercultural strase diversit\u00e9 zinnekeparade zinnekesparade interculturel belgi\u00ebn socioartistic"}, {"datetaken": "2010-05-22 14:57:58", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8765b", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4823466956_bb5f7695e8_o.jpg", "secret": "915e6ce5dc", "media": "photo", "latitude": "0", "id": "4823466956", "tags": "life street city carnival brussels party people urban woman public girl festival calle strada fiesta belgium belgique grandplace young belgi\u00eb bodylanguage diversity bruxelles ciudad social menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace ville grotemarkt j\u00f3venes junge joven 2010 citt\u00e0 giovani zinneke \u4eba straat jeune \u043b\u044e\u0434\u0438 parata bananaz intercultural strase diversit\u00e9 zinnekeparade zinnekesparade interculturel belgi\u00ebn socioartistic"}, {"datetaken": "2010-05-22 14:57:59", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8766", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4823467172_cf9fbaace5_o.jpg", "secret": "5c58f9ce61", "media": "photo", "latitude": "0", "id": "4823467172", "tags": "life street city carnival brussels party people urban woman public girl festival calle strada fiesta belgium belgique grandplace young belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt carnaval metropolis bruselas rue brussel belgica personnes carrer espace ville grotemarkt j\u00f3venes junge joven 2010 citt\u00e0 giovani zinneke \u4eba straat jeune \u043b\u044e\u0434\u0438 parata bananaz intercultural strase diversit\u00e9 zinnekeparade zinnekesparade interculturel belgi\u00ebn socioartistic"}, {"datetaken": "2010-05-22 14:58:06", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8767", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4823467410_a22eca1610_o.jpg", "secret": "758605b751", "media": "photo", "latitude": "0", "id": "4823467410", "tags": "life street city brussels people urban woman art public festival female donna dance mujer dancing belgium belgique grandplace artistic femme mulher belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt metropolis bruselas frau belgica personnes flamenco espace ville grotemarkt 2010 citt\u00e0 zinneke \u4eba \u50cf \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 weiblich parata bananaz intercultural \u5973\u6027 \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 femminile diversit\u00e9 zinnekeparade zinnekesparade interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 belgi\u00ebn socioartistic \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027"}, {"datetaken": "2010-05-22 14:58:08", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8768", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4822851195_438a0fd63c_o.jpg", "secret": "f2a7f4226f", "media": "photo", "latitude": "0", "id": "4822851195", "tags": "life street city brussels people urban woman art public festival female donna dance mujer dancing belgium belgique grandplace artistic femme mulher belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt metropolis bruselas frau belgica personnes flamenco espace ville grotemarkt 2010 citt\u00e0 zinneke \u4eba \u50cf \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 weiblich parata bananaz intercultural \u5973\u6027 \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 femminile diversit\u00e9 zinnekeparade zinnekesparade interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 belgi\u00ebn socioartistic \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0441\u0438\u0447\u0435\u0441\u0438\u0436\u0435\u043d\u0430"}, {"datetaken": "2010-05-22 14:58:18", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8775", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4823467788_3506763bbb_o.jpg", "secret": "6a75bd98fb", "media": "photo", "latitude": "0", "id": "4823467788", "tags": "life street city brussels people urban woman art public festival female donna dance mujer dancing belgium belgique grandplace artistic femme mulher belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt metropolis bruselas frau belgica personnes flamenco espace ville grotemarkt 2010 citt\u00e0 zinneke \u4eba \u50cf \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 weiblich parata bananaz intercultural \u5973\u6027 \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 femminile diversit\u00e9 zinnekeparade zinnekesparade interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 belgi\u00ebn socioartistic \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0441\u0438\u0447\u0435\u0441\u0438\u0436\u0435\u043d\u0430"}, {"datetaken": "2010-05-22 14:58:20", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8776", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4098/4823468046_f90fc76158_o.jpg", "secret": "4885f8e87b", "media": "photo", "latitude": "0", "id": "4823468046", "tags": "life street city brussels people urban woman art public festival female donna dance mujer dancing belgium belgique grandplace artistic femme mulher belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt metropolis bruselas frau belgica personnes flamenco espace ville grotemarkt 2010 citt\u00e0 zinneke \u4eba \u50cf \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 weiblich parata bananaz intercultural \u5973\u6027 \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 femminile diversit\u00e9 zinnekeparade zinnekesparade interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 belgi\u00ebn socioartistic \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027"}, {"datetaken": "2010-05-22 14:58:22", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8777b", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4136/4826309450_01a705551a_o.jpg", "secret": "70d8a6cc24", "media": "photo", "latitude": "0", "id": "4826309450", "tags": "life street city brussels people urban woman art public festival female donna dance mujer dancing belgium belgique grandplace artistic femme mulher belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt metropolis bruselas frau belgica personnes flamenco espace ville grotemarkt 2010 citt\u00e0 zinneke \u4eba \u50cf \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 weiblich parata bananaz intercultural \u5973\u6027 \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 femminile diversit\u00e9 zinnekeparade zinnekesparade interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 belgi\u00ebn socioartistic \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0441\u0438\u0447\u0435\u0441\u0438\u0436\u0435\u043d\u0430"}, {"datetaken": "2010-05-22 14:58:24", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8779", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4077/4825701549_7861b1ba32_o.jpg", "secret": "44833c5cab", "media": "photo", "latitude": "0", "id": "4825701549", "tags": "life street city brussels people urban woman art public festival female donna dance mujer dancing belgium belgique grandplace artistic femme mulher belgi\u00eb bodylanguage diversity bruxelles ciudad social menschen parade personas desfile persone stadt metropolis bruselas frau belgica personnes flamenco espace ville grotemarkt 2010 citt\u00e0 zinneke \u4eba \u50cf \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 weiblich parata bananaz intercultural \u5973\u6027 \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 femminile diversit\u00e9 zinnekeparade zinnekesparade interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 belgi\u00ebn socioartistic \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0441\u0438\u0447\u0435\u0441\u0438\u0436\u0435\u043d\u0430"}, {"datetaken": "2010-05-22 14:58:27", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8781b", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4825702101_eeba6229c0_o.jpg", "secret": "9d49dbb50a", "media": "photo", "latitude": "0", "id": "4825702101", "tags": "life street city brussels people urban woman art public festival female donna dance mujer dancing belgium belgique grandplace artistic femme mulher belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt metropolis bruselas frau belgica personnes flamenco espace ville grotemarkt 2010 citt\u00e0 zinneke \u4eba \u50cf \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 weiblich parata bananaz intercultural \u5973\u6027 \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 femminile diversit\u00e9 zinnekeparade zinnekesparade interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 belgi\u00ebn socioartistic \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0441\u0438\u0447\u0435\u0441\u0438\u0436\u0435\u043d\u0430"}, {"datetaken": "2010-05-22 14:58:28", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8782c", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4825701813_03559785a9_o.jpg", "secret": "f64b415fc0", "media": "photo", "latitude": "0", "id": "4825701813", "tags": "life street city brussels people urban woman art public festival female donna dance mujer dancing belgium belgique grandplace artistic femme mulher belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt metropolis bruselas frau belgica personnes flamenco espace ville grotemarkt 2010 citt\u00e0 zinneke \u4eba \u50cf \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 weiblich parata bananaz intercultural \u5973\u6027 \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 femminile diversit\u00e9 zinnekeparade zinnekesparade interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 belgi\u00ebn socioartistic \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0441\u0438\u0447\u0435\u0441\u0438\u0436\u0435\u043d\u0430"}, {"datetaken": "2010-05-22 14:58:28", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8782b", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4082/4826309600_628355e53b_o.jpg", "secret": "bbe912c60d", "media": "photo", "latitude": "0", "id": "4826309600", "tags": "life street city brussels portrait people urban woman art public festival female donna dance mujer dancing belgium belgique grandplace artistic retrato femme mulher belgi\u00eb diversity bruxelles ciudad social portr\u00e4t menschen parade personas desfile persone stadt metropolis bruselas frau belgica ritratto personnes flamenco espace ville grotemarkt 2010 citt\u00e0 zinneke \u4eba retrat \u50cf \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 weiblich parata bananaz intercultural \u5973\u6027 \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 femminile diversit\u00e9 zinnekeparade zinnekesparade interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 belgi\u00ebn socioartistic \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0441\u0438\u0447\u0435\u0441\u0438\u0436\u0435\u043d\u0430"}, {"datetaken": "2010-05-22 14:58:29", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8783c", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4119/4825702279_4dac04e56e_o.jpg", "secret": "c5ac2b4a6e", "media": "photo", "latitude": "0", "id": "4825702279", "tags": "life street city brussels people urban woman art public festival female donna dance mujer dancing belgium belgique grandplace artistic femme mulher belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt metropolis bruselas frau belgica personnes flamenco espace ville grotemarkt 2010 citt\u00e0 zinneke \u4eba \u50cf \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 weiblich parata bananaz intercultural \u5973\u6027 \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 femminile diversit\u00e9 zinnekeparade zinnekesparade interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 belgi\u00ebn socioartistic \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0441\u0438\u0447\u0435\u0441\u0438\u0436\u0435\u043d\u0430"}, {"datetaken": "2010-05-22 14:58:29", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8783d", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4134/4829967522_eb6c24351f_o.jpg", "secret": "1e5335da8c", "media": "photo", "latitude": "0", "id": "4829967522", "tags": "life street city brussels portrait people urban woman art public festival female donna dance mujer dancing belgium belgique grandplace artistic retrato femme mulher belgi\u00eb diversity bruxelles ciudad social portr\u00e4t menschen parade personas desfile persone stadt metropolis bruselas frau belgica ritratto personnes flamenco espace ville grotemarkt 2010 citt\u00e0 zinneke \u4eba retrat \u50cf \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 weiblich parata bananaz intercultural \u5973\u6027 \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 femminile diversit\u00e9 zinnekeparade zinnekesparade interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 belgi\u00ebn socioartistic \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027"}, {"datetaken": "2010-05-22 14:58:30", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8784", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4829357383_ff0f98d217_o.jpg", "secret": "a6808d79d0", "media": "photo", "latitude": "0", "id": "4829357383", "tags": "life street city brussels people urban woman art public festival female donna dance mujer dancing belgium belgique grandplace artistic femme mulher belgi\u00eb bodylanguage diversity bruxelles ciudad social menschen parade personas desfile persone stadt metropolis bruselas frau belgica personnes flamenco espace ville grotemarkt 2010 citt\u00e0 zinneke \u4eba \u50cf \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 weiblich parata bananaz intercultural \u5973\u6027 \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 femminile diversit\u00e9 zinnekeparade zinnekesparade interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 belgi\u00ebn socioartistic \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027"}, {"datetaken": "2010-05-22 14:58:42", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8788", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4829357719_f23e5bc4cd_o.jpg", "secret": "3ae385ba1c", "media": "photo", "latitude": "0", "id": "4829357719", "tags": "life street city brussels portrait people urban music woman art public festival female donna dance mujer dancing belgium belgique grandplace artistic femme mulher belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt metropolis bruselas frau belgica personnes espace ville grotemarkt 2010 citt\u00e0 zinneke \u4eba \u50cf \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 weiblich parata bananaz intercultural \u5973\u6027 \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 femminile diversit\u00e9 zinnekeparade zinnekesparade interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 belgi\u00ebn socioartistic \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027"}, {"datetaken": "2010-05-22 14:58:50", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8791", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4829968602_a07f392b9e_o.jpg", "secret": "c1d65597ce", "media": "photo", "latitude": "0", "id": "4829968602", "tags": "life street city brussels portrait people urban woman art public festival female donna dance mujer dancing belgium belgique grandplace artistic retrato femme mulher belgi\u00eb diversity bruxelles ciudad social portr\u00e4t menschen parade personas desfile persone metropolis bruselas frau belgica ritratto personnes flamenco espace ville stad grotemarkt 2010 citt\u00e0 zinneke \u4eba retrat \u50cf \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 weiblich parata bananaz intercultural \u5973\u6027 \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 femminile diversit\u00e9 zinnekeparade zinnekesparade interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 belgi\u00ebn socioartistic \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027"}, {"datetaken": "2010-05-22 14:58:55", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8793", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4829358407_b238a12527_o.jpg", "secret": "1e71d40837", "media": "photo", "latitude": "0", "id": "4829358407", "tags": "life street city brussels people urban music woman art public festival female donna dance mujer dancing belgium belgique grandplace artistic femme mulher belgi\u00eb diversity bruxelles ciudad social menschen parade personas desfile persone stadt metropolis bruselas frau belgica personnes flamenco espace ville grotemarkt 2010 citt\u00e0 zinneke \u4eba \u50cf \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 weiblich parata bananaz intercultural \u5973\u6027 \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 femminile diversit\u00e9 zinnekeparade zinnekesparade interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 belgi\u00ebn socioartistic \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027"}, {"datetaken": "2010-05-22 14:59:01", "license": "1", "title": "Zinneke 2010 < Bananaz \u00ac 8795b", "text": "", "album_id": "72157624424890861", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4096/4829358707_c61e70e1af_o.jpg", "secret": "ff4818cf6e", "media": "photo", "latitude": "0", "id": "4829358707", "tags": "life street city brussels portrait people urban woman art public festival female donna dance mujer dancing belgium belgique grandplace artistic retrato femme mulher belgi\u00eb diversity bruxelles ciudad social portr\u00e4t menschen parade personas desfile persone stadt metropolis bruselas frau belgica ritratto personnes flamenco espace ville grotemarkt 2010 citt\u00e0 zinneke \u4eba retrat \u50cf \u0436\u0435\u043d\u0430 \u043b\u044e\u0434\u0438 weiblich parata bananaz intercultural \u5973\u6027 \u0436\u0435\u043d\u0449\u0438\u043d\u0430 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 f\u00e9minine \u03b3\u03c5\u03bd\u03b1\u03af\u03ba\u03b1 \u5973\u5b50 femminile diversit\u00e9 zinnekeparade zinnekesparade interculturel \u0436\u0435\u043d\u0441\u043a\u0438\u0439 belgi\u00ebn socioartistic \u5973\u4eba\u5e74\u8f7b\u7684\u59d1\u5a18\u5973\u6027 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0441\u0438\u0447\u0435\u0441\u0438\u0436\u0435\u043d\u0430"}, {"datetaken": "2010-02-13 06:09:31", "license": "3", "title": "Carnival Cerquilho - 01", "text": "", "album_id": "72157624573082652", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4824228599_469bb3f29d_o.jpg", "secret": "f0f8d8e333", "media": "photo", "latitude": "0", "id": "4824228599", "tags": ""}, {"datetaken": "2010-02-14 10:03:38", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4123/4824847072_a8efd93b58_o.jpg", "secret": "244f94912b", "media": "photo", "latitude": "-23.165061", "id": "4824847072", "tags": ""}, {"datetaken": "2010-02-14 10:04:40", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4122/4824851442_9aca60a29b_o.jpg", "secret": "38de77002f", "media": "photo", "latitude": "-23.165061", "id": "4824851442", "tags": ""}, {"datetaken": "2010-02-14 10:14:39", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4098/4824857416_5676b4aa43_o.jpg", "secret": "f83ce0e8d9", "media": "photo", "latitude": "-23.165061", "id": "4824857416", "tags": ""}, {"datetaken": "2010-02-14 10:14:56", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4141/4824863754_5fcab51b1f_o.jpg", "secret": "b68e25ce15", "media": "photo", "latitude": "-23.165061", "id": "4824863754", "tags": ""}, {"datetaken": "2010-02-14 10:15:15", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4099/4824870398_0296031e9e_o.jpg", "secret": "9ac46781a1", "media": "photo", "latitude": "-23.165061", "id": "4824870398", "tags": ""}, {"datetaken": "2010-02-14 10:16:53", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4136/4824875836_0802e10315_o.jpg", "secret": "4de47073db", "media": "photo", "latitude": "-23.165061", "id": "4824875836", "tags": ""}, {"datetaken": "2010-02-14 10:19:34", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4101/4824270019_e64a73fd23_o.jpg", "secret": "6e2134ee7b", "media": "photo", "latitude": "-23.165061", "id": "4824270019", "tags": ""}, {"datetaken": "2010-02-14 11:28:09", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4073/4824274791_8d26e7d537_o.jpg", "secret": "753dded5e7", "media": "photo", "latitude": "-23.165061", "id": "4824274791", "tags": ""}, {"datetaken": "2010-02-14 11:33:09", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4121/4824890974_7f7f06239f_o.jpg", "secret": "c7466a91a5", "media": "photo", "latitude": "-23.165061", "id": "4824890974", "tags": ""}, {"datetaken": "2010-02-14 11:35:23", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4098/4824895916_d79f47eedb_o.jpg", "secret": "f0e1b6ef7e", "media": "photo", "latitude": "-23.165061", "id": "4824895916", "tags": ""}, {"datetaken": "2010-02-14 11:39:49", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4120/4824289873_21e5a5d389_o.jpg", "secret": "9f4d2556f0", "media": "photo", "latitude": "-23.165061", "id": "4824289873", "tags": ""}, {"datetaken": "2010-02-14 11:42:21", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4119/4824294859_830c07ae76_o.jpg", "secret": "b726abb6dc", "media": "photo", "latitude": "-23.165061", "id": "4824294859", "tags": ""}, {"datetaken": "2010-02-14 11:53:04", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4075/4824299811_e45f831b08_o.jpg", "secret": "462698f5e1", "media": "photo", "latitude": "-23.165061", "id": "4824299811", "tags": ""}, {"datetaken": "2010-02-14 11:53:20", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4102/4824916644_16b0798a5a_o.jpg", "secret": "d4c95db079", "media": "photo", "latitude": "-23.165061", "id": "4824916644", "tags": ""}, {"datetaken": "2010-02-14 11:53:39", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4075/4824921266_967d912797_o.jpg", "secret": "fcb13530f3", "media": "photo", "latitude": "-23.165061", "id": "4824921266", "tags": ""}, {"datetaken": "2010-02-14 11:54:10", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4141/4824315349_6158658502_o.jpg", "secret": "9eecd09d0b", "media": "photo", "latitude": "-23.165061", "id": "4824315349", "tags": ""}, {"datetaken": "2010-02-14 11:55:03", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4137/4824320003_0550cc2540_o.jpg", "secret": "d2e87fbfd9", "media": "photo", "latitude": "-23.165061", "id": "4824320003", "tags": ""}, {"datetaken": "2010-02-14 12:03:37", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4082/4824323071_72154cefeb_o.jpg", "secret": "dbd997816c", "media": "photo", "latitude": "-23.165061", "id": "4824323071", "tags": ""}, {"datetaken": "2010-02-14 12:51:02", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4096/4824937874_4d9f4a8dbe_o.jpg", "secret": "46f8506aae", "media": "photo", "latitude": "-23.165061", "id": "4824937874", "tags": ""}, {"datetaken": "2010-02-14 12:51:11", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4077/4824329683_5b2f6c55df_o.jpg", "secret": "ae59e91c91", "media": "photo", "latitude": "-23.165061", "id": "4824329683", "tags": ""}, {"datetaken": "2010-02-14 12:52:02", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4134/4824944082_f8f2e2fbf3_o.jpg", "secret": "a530b28faf", "media": "photo", "latitude": "-23.165061", "id": "4824944082", "tags": ""}, {"datetaken": "2010-02-14 13:59:38", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4074/4824335775_7c60cefac5_o.jpg", "secret": "fb7ca430a6", "media": "photo", "latitude": "-23.165061", "id": "4824335775", "tags": ""}, {"datetaken": "2010-02-14 14:07:52", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4082/4824949732_de737432cd_o.jpg", "secret": "4b91849239", "media": "photo", "latitude": "-23.165061", "id": "4824949732", "tags": ""}, {"datetaken": "2010-02-14 18:42:26", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4101/4824341815_010125be18_o.jpg", "secret": "8dfe79d259", "media": "photo", "latitude": "-23.165061", "id": "4824341815", "tags": ""}, {"datetaken": "2010-02-14 18:44:31", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4079/4824343565_a2ec11eab9_o.jpg", "secret": "0d371e9132", "media": "photo", "latitude": "-23.165061", "id": "4824343565", "tags": ""}, {"datetaken": "2010-02-14 18:44:39", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4098/4824345899_7f2e1077c2_o.jpg", "secret": "70ed7661a2", "media": "photo", "latitude": "-23.165061", "id": "4824345899", "tags": ""}, {"datetaken": "2010-02-14 18:45:12", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4140/4824959960_964b8ef726_o.jpg", "secret": "d89530c2ca", "media": "photo", "latitude": "-23.165061", "id": "4824959960", "tags": ""}, {"datetaken": "2010-02-14 18:46:31", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4115/4824961972_d610a632ef_o.jpg", "secret": "563204d335", "media": "photo", "latitude": "-23.165061", "id": "4824961972", "tags": ""}, {"datetaken": "2010-02-14 18:46:53", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4142/4824352745_440f939c82_o.jpg", "secret": "8918faf301", "media": "photo", "latitude": "-23.165061", "id": "4824352745", "tags": ""}, {"datetaken": "2010-02-14 18:47:38", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4096/4824354971_847070dbcf_o.jpg", "secret": "865875630c", "media": "photo", "latitude": "-23.165061", "id": "4824354971", "tags": ""}, {"datetaken": "2010-02-14 18:49:00", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4073/4824357243_7c23b77ca5_o.jpg", "secret": "dda8315e2f", "media": "photo", "latitude": "-23.165061", "id": "4824357243", "tags": ""}, {"datetaken": "2010-02-14 18:51:43", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4076/4824970912_7ab3c4a225_o.jpg", "secret": "8d790151bd", "media": "photo", "latitude": "-23.165061", "id": "4824970912", "tags": ""}, {"datetaken": "2010-02-14 18:52:06", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4097/4824362725_14fd1dec4e_o.jpg", "secret": "110383768a", "media": "photo", "latitude": "-23.165061", "id": "4824362725", "tags": ""}, {"datetaken": "2010-02-14 18:52:38", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4078/4824977008_e6b50348c0_o.jpg", "secret": "230966bffa", "media": "photo", "latitude": "-23.165061", "id": "4824977008", "tags": ""}, {"datetaken": "2010-02-14 18:54:09", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4143/4824369159_9b9bbf74c5_o.jpg", "secret": "deab91e35a", "media": "photo", "latitude": "-23.165061", "id": "4824369159", "tags": ""}, {"datetaken": "2010-02-14 18:55:00", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4081/4824982214_1642b3acc9_o.jpg", "secret": "74072d05c2", "media": "photo", "latitude": "-23.165061", "id": "4824982214", "tags": ""}, {"datetaken": "2010-02-14 18:55:55", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4136/4824374781_e5edbc4ce4_o.jpg", "secret": "9cbfe856cc", "media": "photo", "latitude": "-23.165061", "id": "4824374781", "tags": ""}, {"datetaken": "2010-02-14 18:58:14", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4140/4824377227_083122e4f7_o.jpg", "secret": "42f0d2f887", "media": "photo", "latitude": "-23.165061", "id": "4824377227", "tags": ""}, {"datetaken": "2010-02-14 18:59:04", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4096/4824379403_70acbba2a2_o.jpg", "secret": "cc1735b73a", "media": "photo", "latitude": "-23.165061", "id": "4824379403", "tags": ""}, {"datetaken": "2010-02-14 19:00:10", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4138/4824381937_77fe205154_o.jpg", "secret": "0da9a53122", "media": "photo", "latitude": "-23.165061", "id": "4824381937", "tags": ""}, {"datetaken": "2010-02-14 19:02:28", "license": "3", "title": "Cerquilho Carnival", "text": "", "album_id": "72157624573082652", "longitude": "-47.770271", "url_o": "https://farm5.staticflickr.com/4114/4824384639_9838530fd0_o.jpg", "secret": "b52378f6e4", "media": "photo", "latitude": "-23.165061", "id": "4824384639", "tags": ""}, {"datetaken": "2010-01-23 08:31:29", "license": "1", "title": "IMG_7893", "text": "", "album_id": "72157623150381213", "longitude": "-93.091149", "url_o": "https://farm5.staticflickr.com/4037/4306010606_fffe5494e5_o.jpg", "secret": "96d501e302", "media": "photo", "latitude": "44.948565", "id": "4306010606", "tags": "minnesota stpaul maggie twincities halfmarathon wintercarnival securian img7893 frozen5k"}, {"datetaken": "2010-01-23 09:00:40", "license": "1", "title": "2010 Saint Paul Winter Carnival Securian Frozen 5k and Half Marathon", "text": "", "album_id": "72157623150381213", "longitude": "-93.090484", "url_o": "https://farm3.staticflickr.com/2717/4305137451_f24948b8e6_o.jpg", "secret": "cb1669e7f5", "media": "photo", "latitude": "44.949146", "id": "4305137451", "tags": "usa minnesota stpaul americanflag twincities halfmarathon wintercarnival 6thst stpaulwintercarnival securian img7896 frozen5k securianfrozen5kandhalfmarathon"}, {"datetaken": "2010-01-23 09:01:23", "license": "1", "title": "2010 St Paul Winter Carnival Securian Frozen 5k and Half Marathon", "text": "", "album_id": "72157623150381213", "longitude": "-93.090248", "url_o": "https://farm3.staticflickr.com/2240/4305423046_47b20e3df2_o.jpg", "secret": "0137eb9e43", "media": "photo", "latitude": "44.948941", "id": "4305423046", "tags": "minnesota windyday stpaul twincities halfmarathon wintercarnival stpaulwintercarnival securian img7897 frozen5k securianfrozen5kandhalfmarathon"}, {"datetaken": "2010-01-23 09:02:24", "license": "1", "title": "2010 St Paul Winter Carnival Securian Frozen 5k & Half Marathon", "text": "", "album_id": "72157623150381213", "longitude": "-93.090484", "url_o": "https://farm5.staticflickr.com/4049/4305419538_5874441392_o.jpg", "secret": "2a2b89d140", "media": "photo", "latitude": "44.949146", "id": "4305419538", "tags": "minnesota stpaul twincities halfmarathon wintercarnival 2010 stpaulwintercarnival securian nobodygothurt img7899 frozen5k itdidnthitanybody acouplesecondslaterthatcablewouldntbethere itwasstartlingthough securianfrozen5kandhalfmarathon"}, {"datetaken": "2010-01-23 09:05:08", "license": "1", "title": "2010 St Paul Winter Carnival Securian Frozen 5k and Half Marathon - Half Marathon Starting Line", "text": "", "album_id": "72157623150381213", "longitude": "-93.090484", "url_o": "https://farm5.staticflickr.com/4002/4301185756_96961202c1_o.jpg", "secret": "a4530e7fc2", "media": "photo", "latitude": "44.949146", "id": "4301185756", "tags": "stpaul twincities halfmarathon wintercarnival startingline stpaulwintercarnival securian img7904 frozen5k securianfrozen5kandhalfmarathon"}, {"datetaken": "2010-01-23 09:06:31", "license": "1", "title": "2010-01-23 - 2010 St Paul Winter Carnival Securian Frozen 5k and Half Marathon - Saint Paul, MN USA", "text": "", "album_id": "72157623150381213", "longitude": "-93.090248", "url_o": "https://farm5.staticflickr.com/4040/4301181854_e431f9930f_o.jpg", "secret": "0523cb7010", "media": "photo", "latitude": "44.948941", "id": "4301181854", "tags": "usa minnesota photographer stpaul americanflag runners twincities saintpaul halfmarathon wintercarnival stpaulwintercarnival securian frozen5k securianfrozen5kandhalfmarathon"}, {"datetaken": "2010-01-23 09:09:01", "license": "1", "title": "2010 Securian Frozen 5K & Half Marathon", "text": "", "album_id": "72157623150381213", "longitude": "-93.090484", "url_o": "https://farm5.staticflickr.com/4062/4301179612_6474701922_o.jpg", "secret": "a934c2eda1", "media": "photo", "latitude": "44.949146", "id": "4301179612", "tags": "stpaul maggie twincities halfmarathon wintercarnival 2222 2270 stpaulwintercarnival securian frozen5k securianfrozen5kandhalfmarathon"}, {"datetaken": "2010-01-23 09:16:33", "license": "1", "title": "2010 Securian Frozen 5K - random photo of 5k runners waiting at the starting line", "text": "", "album_id": "72157623150381213", "longitude": "-93.090484", "url_o": "https://farm5.staticflickr.com/4059/4300431355_dc94efebb7_o.jpg", "secret": "1445af1e4b", "media": "photo", "latitude": "44.949146", "id": "4300431355", "tags": "stpaul twincities halfmarathon wintercarnival stpaulwintercarnival frozen5k securianfrozen5kandhalfmarathon"}, {"datetaken": "2010-01-23 09:18:00", "license": "1", "title": "2010 Winter Carnival Frozen 5K starting line", "text": "", "album_id": "72157623150381213", "longitude": "-93.090484", "url_o": "https://farm5.staticflickr.com/4032/4301174108_1dbd0cd343_o.jpg", "secret": "6ff6cd0377", "media": "photo", "latitude": "44.949146", "id": "4301174108", "tags": "stpaul twincities halfmarathon wintercarnival startingline stpaulwintercarnival securian frozen5k securianfrozen5kandhalfmarathon"}, {"datetaken": "2010-01-23 09:42:52", "license": "1", "title": "Frozen 5K Runners 2270 & 2773", "text": "", "album_id": "72157623150381213", "longitude": "-93.090108", "url_o": "https://farm5.staticflickr.com/4005/4301170610_444ab4409f_o.jpg", "secret": "ddbafc7bb0", "media": "photo", "latitude": "44.948748", "id": "4301170610", "tags": "stpaul maggie twincities halfmarathon wintercarnival 2773 2270 stpaulwintercarnival frozen5k securianfrozen5kandhalfmarathon"}, {"datetaken": "2010-01-23 09:42:56", "license": "1", "title": "Runner 2270", "text": "", "album_id": "72157623150381213", "longitude": "-93.090108", "url_o": "https://farm5.staticflickr.com/4064/4301170864_40e639efda_o.jpg", "secret": "33e4339331", "media": "photo", "latitude": "44.948748", "id": "4301170864", "tags": "stpaul maggie twincities halfmarathon wintercarnival 2270 stpaulwintercarnival frozen5k securianfrozen5kandhalfmarathon"}, {"datetaken": "2010-01-23 09:42:56", "license": "1", "title": "Maggie T in the final stretch", "text": "", "album_id": "72157623150381213", "longitude": "-93.090108", "url_o": "https://farm5.staticflickr.com/4033/4301166752_be300f1834_o.jpg", "secret": "88bfdac539", "media": "photo", "latitude": "44.948748", "id": "4301166752", "tags": "stpaul maggie twincities halfmarathon wintercarnival 2773 2270 stpaulwintercarnival frozen5k securianfrozen5kandhalfmarathon"}, {"datetaken": "2010-01-23 09:43:05", "license": "1", "title": "2010 St Paul Winter Carnival Securian Frozen 5k and Half Marathon", "text": "", "album_id": "72157623150381213", "longitude": "-93.090484", "url_o": "https://farm3.staticflickr.com/2756/4300418423_ffb1a5c749_o.jpg", "secret": "0de17f8d80", "media": "photo", "latitude": "44.949146", "id": "4300418423", "tags": "stpaul maggie twincities halfmarathon finishline wintercarnival stpaulwintercarnival securian frozen5k securianfrozen5kandhalfmarathon"}, {"datetaken": "2010-01-23 10:19:24", "license": "1", "title": "2010 Saint Paul Winter Carnival / Securian Frozen 5k - underway", "text": "", "album_id": "72157623150381213", "longitude": "-93.089829", "url_o": "https://farm3.staticflickr.com/2794/4301172950_aa952d2c12_o.jpg", "secret": "cdf605b7bd", "media": "photo", "latitude": "44.948455", "id": "4301172950", "tags": "minnesota stpaul policecar twincities saintpaul halfmarathon wintercarnival stpaulwintercarnival frozen5k securianfrozen5kandhalfmarathon"}, {"datetaken": "2011-04-24 12:56:44", "license": "1", "title": "Die Streuner", "text": "", "album_id": "72157626448373295", "longitude": "7.732336", "url_o": "https://farm6.staticflickr.com/5221/5653294112_2a7b70f660_o.jpg", "secret": "ff7dc26cd1", "media": "photo", "latitude": "50.140334", "id": "5653294112", "tags": "music germany deutschland musik rheinlandpfalz loreley mittelaltermarkt spectaculum stgoarshausen medievalcarnival"}, {"datetaken": "2011-04-24 14:15:12", "license": "1", "title": "Smith Fire", "text": "", "album_id": "72157626448373295", "longitude": "7.732400", "url_o": "https://farm6.staticflickr.com/5030/5653296502_2491235295_o.jpg", "secret": "827d261be3", "media": "photo", "latitude": "50.140337", "id": "5653296502", "tags": "germany deutschland rheinlandpfalz loreley mittelaltermarkt spectaculum stgoarshausen medievalcarnival"}, {"datetaken": "2011-04-24 14:20:26", "license": "1", "title": "Dudelzwerge", "text": "", "album_id": "72157626448373295", "longitude": "7.732357", "url_o": "https://farm6.staticflickr.com/5028/5653299456_7fc0d38c6e_o.jpg", "secret": "64c0a34059", "media": "photo", "latitude": "50.140347", "id": "5653299456", "tags": "music germany deutschland musik rheinlandpfalz loreley mittelaltermarkt spectaculum stgoarshausen medievalcarnival"}, {"datetaken": "2011-04-24 14:30:25", "license": "1", "title": "Spring arrived, Summer to come", "text": "", "album_id": "72157626448373295", "longitude": "7.732443", "url_o": "https://farm6.staticflickr.com/5226/5652735191_556785ce2f_o.jpg", "secret": "a10df85591", "media": "photo", "latitude": "50.140330", "id": "5652735191", "tags": "germany deutschland rheinlandpfalz loreley mittelaltermarkt spectaculum stgoarshausen medievalcarnival"}, {"datetaken": "2011-04-24 14:51:51", "license": "1", "title": "Ronja", "text": "", "album_id": "72157626448373295", "longitude": "7.731993", "url_o": "https://farm6.staticflickr.com/5230/5652634563_2d27d77b77_o.jpg", "secret": "7d05358152", "media": "photo", "latitude": "50.140409", "id": "5652634563", "tags": "bird germany deutschland raptor vogel falconry falknerei rheinlandpfalz loreley peregrinefalcon greifvogel mittelaltermarkt spectaculum stgoarshausen wanderfalke medievalcarnival"}, {"datetaken": "2011-04-24 14:54:48", "license": "1", "title": "Ria", "text": "", "album_id": "72157626448373295", "longitude": "7.731896", "url_o": "https://farm6.staticflickr.com/5267/5652636889_a79be67a88_o.jpg", "secret": "6f2491a0a7", "media": "photo", "latitude": "50.140406", "id": "5652636889", "tags": "bird germany deutschland raptor vogel falconry falknerei rheinlandpfalz loreley peregrinefalcon greifvogel mittelaltermarkt spectaculum stgoarshausen wanderfalke medievalcarnival"}, {"datetaken": "2011-04-24 15:01:06", "license": "1", "title": "Arras", "text": "", "album_id": "72157626448373295", "longitude": "7.732068", "url_o": "https://farm6.staticflickr.com/5102/5653207582_0ef77ec72b_o.jpg", "secret": "8d6eb75ea0", "media": "photo", "latitude": "50.140375", "id": "5653207582", "tags": "bird germany deutschland raptor steinadler goldeneagle vogel falconry falknerei rheinlandpfalz loreley greifvogel mittelaltermarkt spectaculum stgoarshausen medievalcarnival"}, {"datetaken": "2011-04-24 15:01:40", "license": "1", "title": "Arras", "text": "", "album_id": "72157626448373295", "longitude": "7.732089", "url_o": "https://farm6.staticflickr.com/5303/5652641965_52e9e01247_o.jpg", "secret": "3a9b4975b5", "media": "photo", "latitude": "50.140385", "id": "5652641965", "tags": "bird germany deutschland raptor steinadler goldeneagle vogel falconry falknerei rheinlandpfalz loreley greifvogel mittelaltermarkt spectaculum stgoarshausen medievalcarnival"}, {"datetaken": "2011-04-24 15:03:39", "license": "1", "title": "Arras", "text": "", "album_id": "72157626448373295", "longitude": "7.731832", "url_o": "https://farm6.staticflickr.com/5229/5652643843_8d95ffa850_o.jpg", "secret": "97e238dae6", "media": "photo", "latitude": "50.140371", "id": "5652643843", "tags": "bird germany deutschland raptor steinadler goldeneagle vogel falconry falknerei rheinlandpfalz loreley greifvogel mittelaltermarkt spectaculum stgoarshausen medievalcarnival"}, {"datetaken": "2011-04-24 15:07:03", "license": "1", "title": "I See YOU", "text": "", "album_id": "72157626448373295", "longitude": "7.731982", "url_o": "https://farm6.staticflickr.com/5308/5653215062_b533400a48_o.jpg", "secret": "ba4de1f4b1", "media": "photo", "latitude": "50.140447", "id": "5653215062", "tags": "bird germany deutschland raptor vogel uhu falconry falknerei rheinlandpfalz loreley eagleowl greifvogel mittelaltermarkt spectaculum stgoarshausen medievalcarnival"}, {"datetaken": "2011-04-24 15:07:10", "license": "1", "title": "Hugo", "text": "", "album_id": "72157626448373295", "longitude": "7.731982", "url_o": "https://farm6.staticflickr.com/5185/5653217792_09bb28651d_o.jpg", "secret": "ff7d03b4be", "media": "photo", "latitude": "50.140416", "id": "5653217792", "tags": "bird germany deutschland raptor vogel uhu falconry falknerei rheinlandpfalz loreley eagleowl greifvogel mittelaltermarkt spectaculum stgoarshausen medievalcarnival"}, {"datetaken": "2011-04-24 15:08:09", "license": "1", "title": "Landing ...", "text": "", "album_id": "72157626448373295", "longitude": "7.731767", "url_o": "https://farm6.staticflickr.com/5027/5653219428_53976f610d_o.jpg", "secret": "abd2b82269", "media": "photo", "latitude": "50.140337", "id": "5653219428", "tags": "bird germany deutschland raptor vogel uhu falconry falknerei rheinlandpfalz loreley eagleowl greifvogel mittelaltermarkt spectaculum stgoarshausen medievalcarnival"}, {"datetaken": "2011-04-24 15:08:49", "license": "1", "title": "Start off, again!", "text": "", "album_id": "72157626448373295", "longitude": "7.731896", "url_o": "https://farm6.staticflickr.com/5265/5653221942_69e753138c_o.jpg", "secret": "9bf92935e6", "media": "photo", "latitude": "50.140306", "id": "5653221942", "tags": "bird germany deutschland raptor vogel uhu falconry falknerei rheinlandpfalz loreley eagleowl greifvogel mittelaltermarkt spectaculum stgoarshausen medievalcarnival"}, {"datetaken": "2011-04-24 15:09:33", "license": "1", "title": "Hugo", "text": "", "album_id": "72157626448373295", "longitude": "7.731800", "url_o": "https://farm6.staticflickr.com/5143/5653224000_15f3763b16_o.jpg", "secret": "ce806b3b5f", "media": "photo", "latitude": "50.140275", "id": "5653224000", "tags": "bird germany deutschland raptor vogel uhu falconry falknerei rheinlandpfalz loreley eagleowl greifvogel mittelaltermarkt spectaculum stgoarshausen medievalcarnival"}, {"datetaken": "2011-04-24 15:17:18", "license": "1", "title": "Bunny of Prey", "text": "", "album_id": "72157626448373295", "longitude": "7.732325", "url_o": "https://farm6.staticflickr.com/5183/5652737561_2726cb0f4a_o.jpg", "secret": "83628c91f7", "media": "photo", "latitude": "50.140327", "id": "5652737561", "tags": "germany deutschland rheinlandpfalz loreley mittelaltermarkt spectaculum stgoarshausen medievalcarnival"}, {"datetaken": "2011-04-24 15:23:28", "license": "1", "title": "Juggler", "text": "", "album_id": "72157626448373295", "longitude": "7.732261", "url_o": "https://farm6.staticflickr.com/5149/5653309680_37b8e42987_o.jpg", "secret": "c6477490d0", "media": "photo", "latitude": "50.140323", "id": "5653309680", "tags": "germany deutschland rheinlandpfalz loreley mittelaltermarkt spectaculum stgoarshausen medievalcarnival"}, {"datetaken": "2010-05-18 16:59:43", "license": "3", "title": "Inside St. James Church", "text": "", "album_id": "72157624133373744", "longitude": "-59.638462", "url_o": "https://farm5.staticflickr.com/4001/4650036532_722bf6fbc2_o.jpg", "secret": "2f1939fbb1", "media": "photo", "latitude": "13.190830", "id": "4650036532", "tags": "carnival vacation church town interior touring 2010 stjamesparishchurch"}, {"datetaken": "2010-05-18 17:07:03", "license": "3", "title": "St. James Parish Church", "text": "", "album_id": "72157624133373744", "longitude": "-59.638795", "url_o": "https://farm5.staticflickr.com/4044/4649423531_b8a42b8076_o.jpg", "secret": "d45bda5bdd", "media": "photo", "latitude": "13.190788", "id": "4649423531", "tags": "carnival vacation church town touring 2010 stjamesparishchurch"}, {"datetaken": "2010-05-18 17:31:53", "license": "3", "title": "Have a Rest", "text": "", "album_id": "72157624133373744", "longitude": "-59.583348", "url_o": "https://farm5.staticflickr.com/4062/4647596158_1631a0a961_o.jpg", "secret": "c299debfff", "media": "photo", "latitude": "13.197361", "id": "4647596158", "tags": "carnival vacation bench barbados resting touring 2010"}, {"datetaken": "2010-05-18 17:34:46", "license": "3", "title": "Don't Stare Down", "text": "", "album_id": "72157624133373744", "longitude": "-59.583489", "url_o": "https://farm5.staticflickr.com/4064/4656155788_b54b83e1c9_o.jpg", "secret": "ce1d6bc05b", "media": "photo", "latitude": "13.197352", "id": "4656155788", "tags": "carnival vacation green animal monkey barbados touring 2010"}, {"datetaken": "2010-05-18 17:38:38", "license": "3", "title": "Banks Bottle", "text": "", "album_id": "72157624133373744", "longitude": "-59.583381", "url_o": "https://farm4.staticflickr.com/3633/4646419278_8318472c9f_o.jpg", "secret": "cc4a1a8dbb", "media": "photo", "latitude": "13.197400", "id": "4646419278", "tags": "carnival vacation beer bottle barbados local banks 2010"}, {"datetaken": "2010-05-18 21:26:29", "license": "3", "title": "Standing Alone", "text": "", "album_id": "72157624133373744", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4638964014_0024a026e7_o.jpg", "secret": "3057f4373c", "media": "photo", "latitude": "0", "id": "4638964014", "tags": "carnival vacation house abandoned home island barbados caribbean 2010"}, {"datetaken": "2010-05-18 21:29:39", "license": "3", "title": "The Bridge", "text": "", "album_id": "72157624133373744", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4655631641_50712d28cd_o.jpg", "secret": "976ce3df0a", "media": "photo", "latitude": "0", "id": "4655631641", "tags": "bridge carnival vacation beach fisheye barbados 2010 tokina1017mm"}, {"datetaken": "2010-05-18 21:51:51", "license": "3", "title": "The Fountain", "text": "", "album_id": "72157624133373744", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4656274622_8ee4d32bb2_o.jpg", "secret": "36c32b36ce", "media": "photo", "latitude": "0", "id": "4656274622", "tags": "carnival vacation streets fountain landmark barbados 2010"}, {"datetaken": "2010-05-18 23:04:21", "license": "3", "title": "Touring Barbados", "text": "", "album_id": "72157624133373744", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4649564023_4f46269429_o.jpg", "secret": "6b04390e46", "media": "photo", "latitude": "0", "id": "4649564023", "tags": "carnival vacation scenery barbados touring 2010"}, {"datetaken": "2010-05-19 12:06:08", "license": "3", "title": "Fix The Door", "text": "", "album_id": "72157624133373744", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4680184145_cc145d6734_o.jpg", "secret": "351bd12a8d", "media": "photo", "latitude": "0", "id": "4680184145", "tags": "door abandoned beach home canon island barbados caribbean 2010 g11 dilapilated"}, {"datetaken": "2010-05-19 12:10:17", "license": "3", "title": "Park the Boat", "text": "", "album_id": "72157624133373744", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4680858114_9ddbeb4abf_o.jpg", "secret": "219a4c87ec", "media": "photo", "latitude": "0", "id": "4680858114", "tags": "abandoned beach canon island boat barbados caribbean 2010 g11 dilapilated"}, {"datetaken": "2010-05-19 13:50:35", "license": "3", "title": "Determined Walker", "text": "", "album_id": "72157624133373744", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4680837660_4ae4047937_o.jpg", "secret": "287ff8b5f2", "media": "photo", "latitude": "0", "id": "4680837660", "tags": "carnival vacation man beach kids candid barbados caribbean local 2010"}, {"datetaken": "2010-07-23 20:14:08", "license": "2", "title": "Indietracks Indiepop Festival", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4830215816_b5f6b5c8e6_o.jpg", "secret": "f2be6d139d", "media": "photo", "latitude": "0", "id": "4830215816", "tags": "indie indietracks"}, {"datetaken": "2010-07-23 20:19:09", "license": "2", "title": "Allo Darlin' at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4829604331_fc168e752c_o.jpg", "secret": "785b75b04c", "media": "photo", "latitude": "0", "id": "4829604331", "tags": "indie allodarlin indietracks lastfm:event=1374165"}, {"datetaken": "2010-07-23 20:47:22", "license": "2", "title": "Carnival of Food", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4830216842_92dd4c996a_o.jpg", "secret": "9634fb085a", "media": "photo", "latitude": "0", "id": "4830216842", "tags": "food indie indietracks lastfm:event=1374165"}, {"datetaken": "2010-07-23 21:22:11", "license": "2", "title": "Everybody Was In The French Resistance...Now! at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4079/4830217230_8079bec92f_o.jpg", "secret": "643d2b815f", "media": "photo", "latitude": "0", "id": "4830217230", "tags": "indie indietracks everybodywasinthefrenchresistancenow lastfm:event=1374165"}, {"datetaken": "2010-07-23 21:48:13", "license": "2", "title": "Everybody Was In The French Resistance...Now! at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4122/4829605785_d60505d1f9_o.jpg", "secret": "c3feefb9dc", "media": "photo", "latitude": "0", "id": "4829605785", "tags": "indie indietracks everybodywasinthefrenchresistancenow lastfm:event=1374165"}, {"datetaken": "2010-07-23 23:02:32", "license": "2", "title": "The fairy light van", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4101/4830217770_886554afc6_o.jpg", "secret": "1b4464320b", "media": "photo", "latitude": "0", "id": "4830217770", "tags": "indie indietracks"}, {"datetaken": "2010-07-24 08:37:12", "license": "2", "title": "Campsite entrance", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4093/4830291950_d66817bcb0_o.jpg", "secret": "26b0980ef0", "media": "photo", "latitude": "0", "id": "4830291950", "tags": "indietracks"}, {"datetaken": "2010-07-24 09:17:45", "license": "2", "title": "Butterley Park Station", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4830293216_c99f1d5b2c_o.jpg", "secret": "4cd7587f25", "media": "photo", "latitude": "0", "id": "4830293216", "tags": "indietracks midlandsrailwaymuseum"}, {"datetaken": "2010-07-24 09:25:17", "license": "2", "title": "Train suspension", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4830293932_f544f74e90_o.jpg", "secret": "b226db4047", "media": "photo", "latitude": "0", "id": "4830293932", "tags": "indietracks midlandsrailwaymuseum"}, {"datetaken": "2010-07-24 09:25:46", "license": "2", "title": "Train", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4829682495_05576b8263_o.jpg", "secret": "25c0d195ee", "media": "photo", "latitude": "0", "id": "4829682495", "tags": "indietracks midlandsrailwaymuseum"}, {"datetaken": "2010-07-24 09:34:59", "license": "2", "title": "Chocolate vending machines", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4829683015_f735d89da4_o.jpg", "secret": "d81c0b3d6b", "media": "photo", "latitude": "0", "id": "4829683015", "tags": "indietracks midlandsrailwaymuseum"}, {"datetaken": "2010-07-24 09:47:47", "license": "2", "title": "The sorting carriage", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4829684767_86a89c1bb4_o.jpg", "secret": "f28dec7e29", "media": "photo", "latitude": "0", "id": "4829684767", "tags": "indietracks midlandsrailwaymuseum"}, {"datetaken": "2010-07-24 09:50:56", "license": "2", "title": "Luggage", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4116/4829685971_5d52932a4c_o.jpg", "secret": "66b4b883a5", "media": "photo", "latitude": "0", "id": "4829685971", "tags": "indietracks midlandsrailwaymuseum"}, {"datetaken": "2010-07-24 09:56:45", "license": "2", "title": "Train carriage detritus", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4138/4829687261_67ab14685c_o.jpg", "secret": "60baf3f77b", "media": "photo", "latitude": "0", "id": "4829687261", "tags": "indietracks midlandsrailwaymuseum"}, {"datetaken": "2010-07-24 10:28:37", "license": "2", "title": "Not to be moved", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4118/4829687783_4a163bf244_o.jpg", "secret": "dfefa352ec", "media": "photo", "latitude": "0", "id": "4829687783", "tags": "motormuseum indietracks midlandsrailwaymuseum"}, {"datetaken": "2010-07-24 13:21:59", "license": "2", "title": "Urbantramper at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4830301386_5a9a7ac17c_o.jpg", "secret": "457c277128", "media": "photo", "latitude": "0", "id": "4830301386", "tags": "indietracks urbantramper lastfm:event=1374165"}, {"datetaken": "2010-07-24 14:41:29", "license": "2", "title": "Chilling on the field at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4075/4829690081_0a1ebc7135_o.jpg", "secret": "cffb3f442b", "media": "photo", "latitude": "0", "id": "4829690081", "tags": "indietracks lastfm:event=1374165"}, {"datetaken": "2010-07-24 15:08:43", "license": "2", "title": "Linda Guilala at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4829690481_9f5cde02e3_o.jpg", "secret": "ff5e0d60c4", "media": "photo", "latitude": "0", "id": "4829690481", "tags": "indietracks junipermoon lindaguilala lastfm:event=1374165"}, {"datetaken": "2010-07-24 15:14:34", "license": "2", "title": "Linda Guilala at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4829690905_f95a0381ed_o.jpg", "secret": "f187d11850", "media": "photo", "latitude": "0", "id": "4829690905", "tags": "indietracks junipermoon lindaguilala lastfm:event=1374165"}, {"datetaken": "2010-07-24 17:21:56", "license": "2", "title": "Obligatory bee photo", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4118/4829691295_3e64706f73_o.jpg", "secret": "e9cb05be14", "media": "photo", "latitude": "0", "id": "4829691295", "tags": "bee indietracks"}, {"datetaken": "2010-07-24 21:44:48", "license": "2", "title": "The Primitives at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4830303918_ef02567636_o.jpg", "secret": "31144e21df", "media": "photo", "latitude": "0", "id": "4830303918", "tags": "indie primitives indietracks lastfm:event=1374165"}, {"datetaken": "2010-07-24 21:45:42", "license": "2", "title": "The Primitives at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4829691723_746f61a6a4_o.jpg", "secret": "e0c9d74eee", "media": "photo", "latitude": "0", "id": "4829691723", "tags": "indie primitives indietracks lastfm:event=1374165"}, {"datetaken": "2010-07-24 21:51:11", "license": "2", "title": "The Primitives at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4095/4829691899_10136b5450_o.jpg", "secret": "29b9d28363", "media": "photo", "latitude": "0", "id": "4829691899", "tags": "indie primitives indietracks lastfm:event=1374165"}, {"datetaken": "2010-07-25 13:03:02", "license": "2", "title": "Be Like Pablo at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4099/4829514211_8fa2f43220_o.jpg", "secret": "8db369eacb", "media": "photo", "latitude": "0", "id": "4829514211", "tags": "indie indietracks belikepablo lastfm:event=1374165"}, {"datetaken": "2010-07-25 13:05:13", "license": "2", "title": "Be Like Pablo at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4141/4829514667_1facbdc999_o.jpg", "secret": "703f37386d", "media": "photo", "latitude": "0", "id": "4829514667", "tags": "indie indietracks belikepablo lastfm:event=1374165"}, {"datetaken": "2010-07-25 13:21:47", "license": "2", "title": "Be Like Pablo at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4078/4829515097_ca442eb750_o.jpg", "secret": "bf4c008eef", "media": "photo", "latitude": "0", "id": "4829515097", "tags": "indie indietracks belikepablo lastfm:event=1374165"}, {"datetaken": "2010-07-25 13:30:54", "license": "2", "title": "Be Like Pablo at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4830126286_935f97ca18_o.jpg", "secret": "b74859cd03", "media": "photo", "latitude": "0", "id": "4830126286", "tags": "indie indietracks belikepablo lastfm:event=1374165"}, {"datetaken": "2010-07-25 13:31:23", "license": "2", "title": "Be Like Pablo at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4137/4829515987_f9d99d15dd_o.jpg", "secret": "d11efa057b", "media": "photo", "latitude": "0", "id": "4829515987", "tags": "indie indietracks belikepablo lastfm:event=1374165"}, {"datetaken": "2010-07-25 13:59:21", "license": "2", "title": "Train engine", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4829549661_e801a933d1_o.jpg", "secret": "4610ebb2c5", "media": "photo", "latitude": "0", "id": "4829549661", "tags": "train indietracks midlandrailwaymuseum"}, {"datetaken": "2010-07-25 14:00:30", "license": "2", "title": "Sir Edward Elgar", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4117/4829550225_7d675575bc_o.jpg", "secret": "103b8bd3eb", "media": "photo", "latitude": "0", "id": "4829550225", "tags": "train indietracks midlandrailwaymuseum"}, {"datetaken": "2010-07-25 14:02:25", "license": "2", "title": "Decaying train carriage", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4829551429_9d189db35a_o.jpg", "secret": "38750da4c9", "media": "photo", "latitude": "0", "id": "4829551429", "tags": "train indietracks midlandrailwaymuseum"}, {"datetaken": "2010-07-25 14:55:40", "license": "2", "title": "Cowtown at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4080/4830127220_ed12621659_o.jpg", "secret": "3a925935c8", "media": "photo", "latitude": "0", "id": "4830127220", "tags": "indie cowtown indietracks lastfm:event=1374165"}, {"datetaken": "2010-07-25 14:58:26", "license": "2", "title": "Cowtown at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4830127570_91121efcaf_o.jpg", "secret": "7139d6a81d", "media": "photo", "latitude": "0", "id": "4830127570", "tags": "indie cowtown indietracks lastfm:event=1374165"}, {"datetaken": "2010-07-25 15:07:02", "license": "2", "title": "Cowtown at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4142/4830128054_6ef813e47a_o.jpg", "secret": "c397d41b25", "media": "photo", "latitude": "0", "id": "4830128054", "tags": "indie cowtown indietracks lastfm:event=1374165"}, {"datetaken": "2010-07-25 15:08:17", "license": "2", "title": "Cowtown at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4094/4830128234_52cbdf5769_o.jpg", "secret": "bd40133c63", "media": "photo", "latitude": "0", "id": "4830128234", "tags": "indie cowtown indietracks lastfm:event=1374165"}, {"datetaken": "2010-07-25 15:37:14", "license": "2", "title": "The station man says...", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4097/4829551851_0d3b955d0f_o.jpg", "secret": "8e76fd2569", "media": "photo", "latitude": "0", "id": "4829551851", "tags": "donationbox indietracks"}, {"datetaken": "2010-07-25 16:15:58", "license": "2", "title": "Meanwhile...", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/4841478555_70ee80aa8d_o.jpg", "secret": "c70ffd2377", "media": "photo", "latitude": "0", "id": "4841478555", "tags": "indie indietracks blanchehudsonweekend"}, {"datetaken": "2010-07-25 16:16:23", "license": "2", "title": "The Blanche Hudson Weekend at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4146/4842097214_c0b31b017e_o.jpg", "secret": "0b877358a6", "media": "photo", "latitude": "0", "id": "4842097214", "tags": "indie indietracks blanchehudsonweekend"}, {"datetaken": "2010-07-25 17:02:04", "license": "2", "title": "Internet Forever's gear at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4074/4829552217_27d99b563d_o.jpg", "secret": "67b384cb07", "media": "photo", "latitude": "0", "id": "4829552217", "tags": "indie indietracks internetforever lastfm:event=1374165"}, {"datetaken": "2010-07-25 17:05:12", "license": "2", "title": "Internet Forever at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4830163386_8f36935d90_o.jpg", "secret": "dda739d632", "media": "photo", "latitude": "0", "id": "4830163386", "tags": "indie indietracks internetforever lastfm:event=1374165"}, {"datetaken": "2010-07-25 17:05:38", "license": "2", "title": "Heartbeeps out of Internet Forever, Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4113/4831441492_e5fc6f7a98_o.jpg", "secret": "73f7f07ec0", "media": "photo", "latitude": "0", "id": "4831441492", "tags": "indie heartbeeps indietracks internetforever lastfm:event=1374165"}, {"datetaken": "2010-07-25 18:45:06", "license": "2", "title": "Shrag at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4115/4829553037_95c05b8276_o.jpg", "secret": "10f4eed3b1", "media": "photo", "latitude": "0", "id": "4829553037", "tags": "indie shrag indietracks lastfm:event=1374165"}, {"datetaken": "2010-07-25 18:46:41", "license": "2", "title": "Shrag at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4139/4830164156_dbefbbde10_o.jpg", "secret": "f265796360", "media": "photo", "latitude": "0", "id": "4830164156", "tags": "indie shrag indietracks lastfm:event=1374165"}, {"datetaken": "2010-07-25 18:47:55", "license": "2", "title": "Shrag at Indietracks 2010", "text": "", "album_id": "72157624584252424", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/4830164462_912979df67_o.jpg", "secret": "f9486d3612", "media": "photo", "latitude": "0", "id": "4830164462", "tags": "indie shrag indietracks lastfm:event=1374165"}, {"datetaken": "2010-09-26 13:13:50", "license": "3", "title": "I'm new around here!", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4108/5028377937_2ef76fb5a5_o.jpg", "secret": "60fee1fb35", "media": "photo", "latitude": "0", "id": "5028377937", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 13:14:56", "license": "3", "title": "You lookin' at Me?", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4084/5028997620_4fe83fa91c_o.jpg", "secret": "ce8864cfa8", "media": "photo", "latitude": "0", "id": "5028997620", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 13:20:56", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4153/5028381545_c6642d48f8_o.jpg", "secret": "9a04a52832", "media": "photo", "latitude": "0", "id": "5028381545", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 13:23:11", "license": "3", "title": "Why can't they just leave me alone?", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/5028383447_d2fddc73b4_o.jpg", "secret": "dc0d5b5353", "media": "photo", "latitude": "0", "id": "5028383447", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 13:25:09", "license": "3", "title": "Lady, Where's the competitors ring?", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4148/5028385189_131710550e_o.jpg", "secret": "2a7a1e930f", "media": "photo", "latitude": "0", "id": "5028385189", "tags": "county carnival horse tractor mi amusement farm fair jumper rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 13:25:22", "license": "3", "title": "Olympic Jumper in Training", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4128/5028386827_743d005c80_o.jpg", "secret": "d06cb6f5ab", "media": "photo", "latitude": "0", "id": "5028386827", "tags": "county carnival horse tractor mi amusement farm fair jumper rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 13:38:10", "license": "3", "title": "Hillsdale County Fair 120", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4124/5029007376_013b2feb1f_o.jpg", "secret": "af8c15ebc7", "media": "photo", "latitude": "0", "id": "5029007376", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 13:40:34", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/5029009940_f300a99f62_o.jpg", "secret": "c3d5637605", "media": "photo", "latitude": "0", "id": "5029009940", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 13:41:37", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4152/5029012818_cac3f13cfe_o.jpg", "secret": "827f49226e", "media": "photo", "latitude": "0", "id": "5029012818", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 13:45:15", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4089/5028398281_814cbdfee2_o.jpg", "secret": "218945bed3", "media": "photo", "latitude": "0", "id": "5028398281", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 13:47:43", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4092/5029015900_feef582e14_o.jpg", "secret": "0720961c06", "media": "photo", "latitude": "0", "id": "5029015900", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 13:49:19", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4151/5028402957_296cd7d3c1_o.jpg", "secret": "a99c2b6d57", "media": "photo", "latitude": "0", "id": "5028402957", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 13:54:26", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4104/5029021896_7a87d300b0_o.jpg", "secret": "ca38be193a", "media": "photo", "latitude": "0", "id": "5029021896", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 14:04:28", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4140/5029025086_10ed16b490_o.jpg", "secret": "ae6ccb6943", "media": "photo", "latitude": "0", "id": "5029025086", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 14:35:36", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4150/5028411137_238f48dfa9_o.jpg", "secret": "1766e88c7a", "media": "photo", "latitude": "0", "id": "5028411137", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 14:56:53", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4132/5029030760_8d51cdb309_o.jpg", "secret": "c52dd73886", "media": "photo", "latitude": "0", "id": "5029030760", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 14:56:55", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4129/5028417067_cc950eda51_o.jpg", "secret": "8650ed850f", "media": "photo", "latitude": "0", "id": "5028417067", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 14:57:50", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4087/5029036066_989dedcc6a_o.jpg", "secret": "0b2fe33785", "media": "photo", "latitude": "0", "id": "5029036066", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 14:59:22", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4090/5029038340_d74f85142a_o.jpg", "secret": "0ec17e63c2", "media": "photo", "latitude": "0", "id": "5029038340", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 15:11:18", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4092/5028422607_1d07a04628_o.jpg", "secret": "d4686934c4", "media": "photo", "latitude": "0", "id": "5028422607", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 15:13:33", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4127/5029041370_d952e270ac_o.jpg", "secret": "2d5824e3e6", "media": "photo", "latitude": "0", "id": "5029041370", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 15:14:59", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4088/5029043302_d04c576d1c_o.jpg", "secret": "ca8e2d156b", "media": "photo", "latitude": "0", "id": "5029043302", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 15:21:30", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4131/5028428875_dd718438af_o.jpg", "secret": "25ff2bb848", "media": "photo", "latitude": "0", "id": "5028428875", "tags": "county carnival tractor mi balloons amusement farm fair rides 4h oldguy hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 15:34:43", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4087/5029047736_91c506a802_o.jpg", "secret": "bd4f3caf01", "media": "photo", "latitude": "0", "id": "5029047736", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 15:38:04", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/5028434029_bd13502293_o.jpg", "secret": "30154a91b1", "media": "photo", "latitude": "0", "id": "5028434029", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 15:38:25", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/5028437271_7a400c31f4_o.jpg", "secret": "9626caa689", "media": "photo", "latitude": "0", "id": "5028437271", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2010-09-26 15:49:39", "license": "3", "title": "Hillsdale County Fair 2010", "text": "", "album_id": "72157624919770219", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4109/5028439713_a1fbb82b92_o.jpg", "secret": "f60c99c6d9", "media": "photo", "latitude": "0", "id": "5028439713", "tags": "county carnival tractor mi amusement farm fair rides 4h hillsdalecountyfair hilldale hillsdalefair hilldalefair"}, {"datetaken": "2011-09-28 18:32:25", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6024/6192390657_085dc21fd1_o.jpg", "secret": "ac258dabfb", "media": "photo", "latitude": "0", "id": "6192390657", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 18:33:05", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6163/6192392545_82f8cbe14c_o.jpg", "secret": "52641923f8", "media": "photo", "latitude": "0", "id": "6192392545", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 18:34:09", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6024/6192913074_fa815bca12_o.jpg", "secret": "db71894129", "media": "photo", "latitude": "0", "id": "6192913074", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 18:34:48", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6174/6192914870_a86a167736_o.jpg", "secret": "abb4e02640", "media": "photo", "latitude": "0", "id": "6192914870", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 18:35:19", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6177/6192398539_bdc9b5d011_o.jpg", "secret": "2a1d1f38c3", "media": "photo", "latitude": "0", "id": "6192398539", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 19:03:21", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6159/6192990040_5396e98377_o.jpg", "secret": "c16597c3c7", "media": "photo", "latitude": "0", "id": "6192990040", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 19:03:49", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6154/6192991300_cff9dd66d3_o.jpg", "secret": "f408eee7a4", "media": "photo", "latitude": "0", "id": "6192991300", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 19:04:23", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6180/6192475117_91a3958046_o.jpg", "secret": "ff8dc48aa1", "media": "photo", "latitude": "0", "id": "6192475117", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 19:05:06", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6167/6192994610_034230717e_o.jpg", "secret": "65a625be9b", "media": "photo", "latitude": "0", "id": "6192994610", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 19:05:33", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6169/6192995758_e84ed325d3_o.jpg", "secret": "e1c11c5cef", "media": "photo", "latitude": "0", "id": "6192995758", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 19:06:07", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6178/6192997080_602b425df2_o.jpg", "secret": "c2e0f4d981", "media": "photo", "latitude": "0", "id": "6192997080", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 19:06:50", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6135/6192998976_b7808902c3_o.jpg", "secret": "ab31a4b30c", "media": "photo", "latitude": "0", "id": "6192998976", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 19:07:53", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6173/6193001884_f4b89f0b92_o.jpg", "secret": "3b7afea808", "media": "photo", "latitude": "0", "id": "6193001884", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 19:08:25", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6012/6193003268_662e901c11_o.jpg", "secret": "e2bfd74c0c", "media": "photo", "latitude": "0", "id": "6193003268", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 19:09:01", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6139/6193004726_23e4bd40c6_o.jpg", "secret": "b8d1c065c5", "media": "photo", "latitude": "0", "id": "6193004726", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 19:09:30", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6021/6193005920_a2a99b2a1a_o.jpg", "secret": "1ab163a16e", "media": "photo", "latitude": "0", "id": "6193005920", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 19:10:30", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6171/6192491057_964d6dc2c3_o.jpg", "secret": "e52f24712d", "media": "photo", "latitude": "0", "id": "6192491057", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 19:11:03", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6174/6192492565_c9ea44d466_o.jpg", "secret": "3b9217f29c", "media": "photo", "latitude": "0", "id": "6192492565", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 19:11:59", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6161/6193012558_f0e66b287d_o.jpg", "secret": "6dd8c7eeac", "media": "photo", "latitude": "0", "id": "6193012558", "tags": "flickrdroid"}, {"datetaken": "2011-09-28 19:19:07", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6177/6193229914_d2a44a7b80_o.jpg", "secret": "e82872a5ed", "media": "photo", "latitude": "0", "id": "6193229914", "tags": ""}, {"datetaken": "2011-09-28 19:19:52", "license": "5", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "text": "", "album_id": "72157627775152040", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6177/6193230186_ac609d13e1_o.jpg", "secret": "7aa383fed6", "media": "photo", "latitude": "0", "id": "6193230186", "tags": ""}, {"datetaken": "2011-07-30 13:53:55", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6013/5990394823_9c81417915_o.jpg", "secret": "9f65d90d2c", "media": "photo", "latitude": "51.918345", "id": "5990394823", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:17:00", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6132/5990396595_b5222b2aa3_o.jpg", "secret": "8c549ce9e0", "media": "photo", "latitude": "51.918345", "id": "5990396595", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:17:18", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6006/5990956284_53784e164e_o.jpg", "secret": "e79fe99a02", "media": "photo", "latitude": "51.918345", "id": "5990956284", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:17:33", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6016/5990958176_3cc1d7ee66_o.jpg", "secret": "b47d55ea1c", "media": "photo", "latitude": "51.918345", "id": "5990958176", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:17:59", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6127/5990959566_3e056abcfd_o.jpg", "secret": "4727f0fa51", "media": "photo", "latitude": "51.918345", "id": "5990959566", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:21:17", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6127/5990403859_2718a20522_o.jpg", "secret": "bcfba8d01a", "media": "photo", "latitude": "51.918345", "id": "5990403859", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:22:09", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6142/5990405603_a769b250a1_o.jpg", "secret": "d6eef7e000", "media": "photo", "latitude": "51.918345", "id": "5990405603", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:22:45", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6135/5990964876_73c0e0702e_o.jpg", "secret": "6200dff3cd", "media": "photo", "latitude": "51.918345", "id": "5990964876", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:23:10", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6024/5990409001_ba6e671b3b_o.jpg", "secret": "34259254ac", "media": "photo", "latitude": "51.918345", "id": "5990409001", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:23:14", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6018/5990410713_ba6d512a10_o.jpg", "secret": "ee25726e5d", "media": "photo", "latitude": "51.918345", "id": "5990410713", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:25:21", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6025/5990969916_06cd0d55f5_o.jpg", "secret": "a6e5ed9522", "media": "photo", "latitude": "51.918345", "id": "5990969916", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:25:59", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6135/5990971596_3870a57d73_o.jpg", "secret": "d99e827760", "media": "photo", "latitude": "51.918345", "id": "5990971596", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:26:13", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6134/5990973090_138275785e_o.jpg", "secret": "89a0412e56", "media": "photo", "latitude": "51.918345", "id": "5990973090", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:26:16", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6145/5990975040_495c972f08_o.jpg", "secret": "818230fd2e", "media": "photo", "latitude": "51.918345", "id": "5990975040", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:27:01", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6030/5990976876_92fd7d01a7_o.jpg", "secret": "6500184aeb", "media": "photo", "latitude": "51.918345", "id": "5990976876", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:27:50", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6022/5990978196_195c23c047_o.jpg", "secret": "774b6f113e", "media": "photo", "latitude": "51.918345", "id": "5990978196", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:28:04", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6148/5990980376_741efd7503_o.jpg", "secret": "5d4724b92d", "media": "photo", "latitude": "51.918345", "id": "5990980376", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:36:28", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6144/5990981908_a511376a08_o.jpg", "secret": "e7a4157cc4", "media": "photo", "latitude": "51.918345", "id": "5990981908", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:36:32", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6021/5990984178_f2cd43d845_o.jpg", "secret": "d91dfa5522", "media": "photo", "latitude": "51.918345", "id": "5990984178", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:38:37", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6133/5990429223_5fb4b1cd98_o.jpg", "secret": "5f0232f623", "media": "photo", "latitude": "51.918345", "id": "5990429223", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:48:18", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6010/5990431593_e23fa4dac4_o.jpg", "secret": "032a63457a", "media": "photo", "latitude": "51.918345", "id": "5990431593", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:50:54", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6005/5990991324_e413595349_o.jpg", "secret": "33b3263f99", "media": "photo", "latitude": "51.918345", "id": "5990991324", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:55:16", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6004/5990435421_61e12df375_o.jpg", "secret": "0a3c2c3f57", "media": "photo", "latitude": "51.918345", "id": "5990435421", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:55:25", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6027/5990994432_9b9e17681c_o.jpg", "secret": "df7908782b", "media": "photo", "latitude": "51.918345", "id": "5990994432", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:55:43", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6013/5990996176_9f0e4b4882_o.jpg", "secret": "c8f92c0bf5", "media": "photo", "latitude": "51.918345", "id": "5990996176", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:56:11", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6002/5990998658_e13e5dbe3d_o.jpg", "secret": "6c2215a99e", "media": "photo", "latitude": "51.918345", "id": "5990998658", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:56:21", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6021/5991001022_ea002eef58_o.jpg", "secret": "9bc8aac0fc", "media": "photo", "latitude": "51.918345", "id": "5991001022", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:57:24", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6028/5990446189_03332b5fc3_o.jpg", "secret": "4619d9376b", "media": "photo", "latitude": "51.918345", "id": "5990446189", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:57:33", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6029/5991005518_10bb44bcf1_o.jpg", "secret": "56b97066c8", "media": "photo", "latitude": "51.918345", "id": "5991005518", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 14:58:06", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6029/5990450273_397640523e_o.jpg", "secret": "fb37bb52f3", "media": "photo", "latitude": "51.918345", "id": "5990450273", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 15:01:32", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6023/5991009942_47888fd75b_o.jpg", "secret": "40d17014f1", "media": "photo", "latitude": "51.918345", "id": "5991009942", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2011-07-30 15:02:03", "license": "1", "title": "Summer Carnival, Rotterdam / NL, 2011", "text": "", "album_id": "72157627191217319", "longitude": "4.475995", "url_o": "https://farm7.staticflickr.com/6025/5991011474_64870e46c3_o.jpg", "secret": "cdf5c1fd05", "media": "photo", "latitude": "51.918345", "id": "5991011474", "tags": "carnival brazil rotterdam zomercarnaval"}, {"datetaken": "2010-10-09 13:17:35", "license": "1", "title": "Gillingham carnival 2010", "text": "", "album_id": "72157625150547327", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1216/5129945560_ac0ba3ba48_o.jpg", "secret": "0f6b1d10ee", "media": "photo", "latitude": "0", "id": "5129945560", "tags": "carnival dorset gillingham ifor stmaryschurchgillingham oct2010 gillinghamcarnival2010"}, {"datetaken": "2010-10-09 13:30:22", "license": "1", "title": "Gillingham carnival 2010", "text": "", "album_id": "72157625150547327", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/5129345977_caaf6d7f47_o.jpg", "secret": "2bda58a6e7", "media": "photo", "latitude": "0", "id": "5129345977", "tags": "carnival dorset gillingham ifor stmaryschurchgillingham oct2010 gillinghamcarnival2010"}, {"datetaken": "2010-10-09 13:30:30", "license": "1", "title": "Gillingham carnival 2010", "text": "", "album_id": "72157625150547327", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1247/5129348371_82c517634d_o.jpg", "secret": "8441fe6903", "media": "photo", "latitude": "0", "id": "5129348371", "tags": "carnival dorset gillingham ifor stmaryschurchgillingham oct2010 gillinghamcarnival2010"}, {"datetaken": "2010-10-09 13:35:38", "license": "1", "title": "Gillingham carnival 2010", "text": "", "album_id": "72157625150547327", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/5129952854_82dc11e90e_o.jpg", "secret": "844c362145", "media": "photo", "latitude": "0", "id": "5129952854", "tags": "carnival dorset gillingham ifor stmaryschurchgillingham oct2010 gillinghamcarnival2010"}, {"datetaken": "2010-10-09 14:35:12", "license": "1", "title": "Gillingham carnival 2010", "text": "", "album_id": "72157625150547327", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1390/5129955322_2446911f5c_o.jpg", "secret": "17e70c18a2", "media": "photo", "latitude": "0", "id": "5129955322", "tags": "carnival dorset gillingham ifor stmaryschurchgillingham oct2010 gillinghamcarnival2010"}, {"datetaken": "2010-10-09 14:40:52", "license": "1", "title": "Gillingham carnival 2010", "text": "", "album_id": "72157625150547327", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/5129355559_26dd95599a_o.jpg", "secret": "3a6a449b38", "media": "photo", "latitude": "0", "id": "5129355559", "tags": "carnival dorset gillingham ifor stmaryschurchgillingham oct2010 gillinghamcarnival2010"}, {"datetaken": "2010-10-09 14:41:18", "license": "1", "title": "Gillingham carnival 2010", "text": "", "album_id": "72157625150547327", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1348/5129357291_663a3255c6_o.jpg", "secret": "90167e94b1", "media": "photo", "latitude": "0", "id": "5129357291", "tags": "carnival dorset gillingham ifor stmaryschurchgillingham oct2010 gillinghamcarnival2010"}, {"datetaken": "2010-10-09 14:52:27", "license": "1", "title": "Gillingham carnival 2010", "text": "", "album_id": "72157625150547327", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1396/5129960996_49ff237627_o.jpg", "secret": "f9d4b5a71b", "media": "photo", "latitude": "0", "id": "5129960996", "tags": "carnival dorset gillingham ifor stmaryschurchgillingham oct2010 gillinghamcarnival2010"}, {"datetaken": "2010-10-09 14:52:32", "license": "1", "title": "Gillingham carnival 2010", "text": "", "album_id": "72157625150547327", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1137/5129361263_5831ba9d75_o.jpg", "secret": "ca90958651", "media": "photo", "latitude": "0", "id": "5129361263", "tags": "carnival dorset gillingham ifor stmaryschurchgillingham oct2010 gillinghamcarnival2010"}, {"datetaken": "2010-10-09 14:54:14", "license": "1", "title": "Gillingham carnival 2010", "text": "", "album_id": "72157625150547327", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4145/5129362101_6d9605847a_o.jpg", "secret": "8892088609", "media": "photo", "latitude": "0", "id": "5129362101", "tags": "carnival dorset gillingham ifor stmaryschurchgillingham oct2010 gillinghamcarnival2010"}, {"datetaken": "2010-10-09 14:54:20", "license": "1", "title": "Gillingham carnival 2010", "text": "", "album_id": "72157625150547327", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/5129964256_65aba4dd50_o.jpg", "secret": "24b2266e46", "media": "photo", "latitude": "0", "id": "5129964256", "tags": "carnival dorset gillingham ifor stmaryschurchgillingham oct2010 gillinghamcarnival2010"}, {"datetaken": "2010-10-09 14:54:23", "license": "1", "title": "Gillingham carnival 2010", "text": "", "album_id": "72157625150547327", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1072/5129964792_6725e7aec2_o.jpg", "secret": "843a206aa0", "media": "photo", "latitude": "0", "id": "5129964792", "tags": "carnival dorset gillingham ifor stmaryschurchgillingham oct2010 gillinghamcarnival2010"}, {"datetaken": "2010-10-09 15:00:01", "license": "1", "title": "Gillingham carnival 2010", "text": "", "album_id": "72157625150547327", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/5129363973_c519b1d82e_o.jpg", "secret": "26697907ab", "media": "photo", "latitude": "0", "id": "5129363973", "tags": "carnival dorset gillingham ifor stmaryschurchgillingham oct2010 gillinghamcarnival2010"}, {"datetaken": "2010-10-09 15:06:24", "license": "1", "title": "Gillingham carnival 2010", "text": "", "album_id": "72157625150547327", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/5129967372_06a3ce5cb1_o.jpg", "secret": "51a725cbdf", "media": "photo", "latitude": "0", "id": "5129967372", "tags": "carnival dorset gillingham ifor stmaryschurchgillingham oct2010 gillinghamcarnival2010"}, {"datetaken": "2011-01-30 13:33:43", "license": "3", "title": "white", "text": "", "album_id": "72157625816691809", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5095/5403035900_f36510595d_o.jpg", "secret": "671baac2dc", "media": "photo", "latitude": "0", "id": "5403035900", "tags": "cats minnesota furry midwest kitties felines twincities mn catshow downtownstpaul stpaulwintercarnival kittehs saintlycitycatshow catshow01302011"}, {"datetaken": "2011-01-30 13:36:03", "license": "3", "title": "Emily, with rad denim airbrush", "text": "", "album_id": "72157625816691809", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5092/5403028352_92853213b9_o.jpg", "secret": "6e8465f70d", "media": "photo", "latitude": "0", "id": "5403028352", "tags": "cats minnesota furry midwest kitties felines twincities mn catshow downtownstpaul stpaulwintercarnival kittehs saintlycitycatshow catshow01302011"}, {"datetaken": "2011-01-30 13:41:55", "license": "3", "title": "smushface", "text": "", "album_id": "72157625816691809", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5058/5402429621_e10f6dd2db_o.jpg", "secret": "9bef6f2327", "media": "photo", "latitude": "0", "id": "5402429621", "tags": "cats minnesota furry midwest kitties felines twincities mn catshow downtownstpaul stpaulwintercarnival kittehs saintlycitycatshow catshow01302011"}, {"datetaken": "2011-01-30 13:43:46", "license": "3", "title": "arch", "text": "", "album_id": "72157625816691809", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5020/5403028734_47f15f9f78_o.jpg", "secret": "c7e5d73aba", "media": "photo", "latitude": "0", "id": "5403028734", "tags": "cats minnesota furry midwest kitties felines twincities mn catshow downtownstpaul stpaulwintercarnival kittehs saintlycitycatshow catshow01302011"}, {"datetaken": "2011-01-30 13:51:43", "license": "3", "title": "sourpuss", "text": "", "album_id": "72157625816691809", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5054/5402429825_76064cf719_o.jpg", "secret": "f5893c1378", "media": "photo", "latitude": "0", "id": "5402429825", "tags": "cats minnesota furry midwest kitties felines twincities mn catshow downtownstpaul stpaulwintercarnival kittehs saintlycitycatshow catshow01302011"}, {"datetaken": "2011-01-30 13:52:08", "license": "3", "title": "caged", "text": "", "album_id": "72157625816691809", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5058/5403029016_a82b1f2eb6_o.jpg", "secret": "7d0c6a4ca0", "media": "photo", "latitude": "0", "id": "5403029016", "tags": "cats minnesota furry midwest kitties felines twincities mn catshow downtownstpaul stpaulwintercarnival kittehs saintlycitycatshow catshow01302011"}, {"datetaken": "2011-01-30 13:55:09", "license": "3", "title": "stare", "text": "", "album_id": "72157625816691809", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5211/5403029192_5c80257fc6_o.jpg", "secret": "5edf051d96", "media": "photo", "latitude": "0", "id": "5403029192", "tags": "cats minnesota furry midwest kitties felines twincities mn catshow downtownstpaul stpaulwintercarnival kittehs saintlycitycatshow catshow01302011"}, {"datetaken": "2011-01-30 13:56:19", "license": "3", "title": "peeved looking", "text": "", "album_id": "72157625816691809", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5253/5402438445_430ee2cbe6_o.jpg", "secret": "d976c74f81", "media": "photo", "latitude": "0", "id": "5402438445", "tags": "cats minnesota furry midwest kitties felines twincities mn catshow downtownstpaul stpaulwintercarnival kittehs saintlycitycatshow catshow01302011"}, {"datetaken": "2011-01-30 13:56:21", "license": "3", "title": "hairless", "text": "", "album_id": "72157625816691809", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5178/5403036994_a356448ae3_o.jpg", "secret": "b514273534", "media": "photo", "latitude": "0", "id": "5403036994", "tags": "cats minnesota furry midwest kitties felines twincities mn catshow downtownstpaul stpaulwintercarnival kittehs saintlycitycatshow catshow01302011"}, {"datetaken": "2011-01-30 13:57:50", "license": "3", "title": "splotchy", "text": "", "album_id": "72157625816691809", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5297/5403029344_3b16e9837d_o.jpg", "secret": "9713135553", "media": "photo", "latitude": "0", "id": "5403029344", "tags": "cats minnesota furry midwest kitties felines twincities mn catshow downtownstpaul stpaulwintercarnival kittehs saintlycitycatshow catshow01302011"}, {"datetaken": "2011-01-30 13:59:45", "license": "3", "title": "fuzzy", "text": "", "album_id": "72157625816691809", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5215/5402437099_7b03d922e2_o.jpg", "secret": "7702de3c6c", "media": "photo", "latitude": "0", "id": "5402437099", "tags": "cats minnesota furry midwest kitties felines twincities mn catshow downtownstpaul stpaulwintercarnival kittehs saintlycitycatshow catshow01302011"}, {"datetaken": "2011-01-30 14:04:24", "license": "3", "title": "curious", "text": "", "album_id": "72157625816691809", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5212/5403029492_bc5ee9fc2f_o.jpg", "secret": "0954d8efc5", "media": "photo", "latitude": "0", "id": "5403029492", "tags": "cats minnesota furry midwest kitties felines twincities mn catshow downtownstpaul stpaulwintercarnival kittehs saintlycitycatshow catshow01302011"}, {"datetaken": "2011-01-30 14:05:54", "license": "3", "title": "judge with abyssinian", "text": "", "album_id": "72157625816691809", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5098/5403027666_7cda9e4b9f_o.jpg", "secret": "15607e5b14", "media": "photo", "latitude": "0", "id": "5403027666", "tags": "cats minnesota furry midwest kitties felines twincities mn catshow downtownstpaul stpaulwintercarnival kittehs saintlycitycatshow catshow01302011"}, {"datetaken": "2011-01-30 14:06:21", "license": "3", "title": "eye of the tiger", "text": "", "album_id": "72157625816691809", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5179/5403027770_957e249943_o.jpg", "secret": "0b81cb385a", "media": "photo", "latitude": "0", "id": "5403027770", "tags": "cats minnesota furry midwest kitties felines twincities mn catshow downtownstpaul stpaulwintercarnival kittehs saintlycitycatshow catshow01302011"}, {"datetaken": "2011-01-30 14:09:01", "license": "3", "title": "this cat looks like a toy", "text": "", "album_id": "72157625816691809", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5092/5402428987_7cc54058f8_o.jpg", "secret": "14a8891e91", "media": "photo", "latitude": "0", "id": "5402428987", "tags": "cats minnesota furry midwest kitties felines twincities mn catshow downtownstpaul stpaulwintercarnival kittehs saintlycitycatshow catshow01302011"}, {"datetaken": "2012-01-14 05:28:33", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7154/6698492335_6e0d61c382_o.jpg", "secret": "af4eb19cbc", "media": "photo", "latitude": "0", "id": "6698492335", "tags": "anime kirby bleach mario pokemon yoko onepiece kon heismymaster burstangel animadness gurrenlagann animeplush lastexhile"}, {"datetaken": "2012-01-14 05:28:40", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7169/6698563581_a379ef127d_o.jpg", "secret": "78b63faf9c", "media": "photo", "latitude": "0", "id": "6698563581", "tags": "gashapon tokidoki blackrockshooter deadmaster petitenendoroid"}, {"datetaken": "2012-01-14 05:29:50", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7147/6698503019_d9b0649519_o.jpg", "secret": "133d5a74ee", "media": "photo", "latitude": "0", "id": "6698503019", "tags": ""}, {"datetaken": "2012-01-14 05:29:55", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7167/6698506961_7ec6f54d44_o.jpg", "secret": "70295ee66c", "media": "photo", "latitude": "0", "id": "6698506961", "tags": ""}, {"datetaken": "2012-01-14 05:30:05", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6698514137_f9a243481c_o.jpg", "secret": "9125942ef6", "media": "photo", "latitude": "0", "id": "6698514137", "tags": ""}, {"datetaken": "2012-01-14 05:30:14", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7157/6698517113_bf0dd81b01_o.jpg", "secret": "76d6f11d38", "media": "photo", "latitude": "0", "id": "6698517113", "tags": ""}, {"datetaken": "2012-01-14 05:30:23", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7173/6698522539_ff34e331b0_o.jpg", "secret": "8d7c4cd2c5", "media": "photo", "latitude": "0", "id": "6698522539", "tags": ""}, {"datetaken": "2012-01-14 05:30:33", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6698526461_2883d7ff5b_o.jpg", "secret": "4b22b848c7", "media": "photo", "latitude": "0", "id": "6698526461", "tags": ""}, {"datetaken": "2012-01-14 05:31:08", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7009/6698570041_149a03035d_o.jpg", "secret": "a557a27692", "media": "photo", "latitude": "0", "id": "6698570041", "tags": "squall noir sebastian mj dal sala melissa ala gloomybear tina pullip batgirl marianne bianca custom tweety catwoman rin dita luka madoka rhiannon miku hnaoto ludmila horison fanatica taeyang animadness homura angey craziia byul vocaloid dollcarnival youtsuzu hanaayame"}, {"datetaken": "2012-01-14 05:38:18", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7145/6698530767_688cb1acec_o.jpg", "secret": "dddfc07989", "media": "photo", "latitude": "0", "id": "6698530767", "tags": "ciel ghostintheshell mirai tachikoma goodsmilecompany nendoroid revotech figma kuroshitsuji blackrockshooter"}, {"datetaken": "2012-01-14 05:40:28", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7004/6698540853_b8f40acd32_o.jpg", "secret": "daa5e0ac2b", "media": "photo", "latitude": "0", "id": "6698540853", "tags": ""}, {"datetaken": "2012-01-14 05:40:48", "license": "3", "title": "Tom and Bill Kaulitz", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7021/6698565931_fde7eae86d_o.jpg", "secret": "97ac0145b5", "media": "photo", "latitude": "0", "id": "6698565931", "tags": ""}, {"datetaken": "2012-01-14 05:41:43", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7162/6698543801_b072460a8f_o.jpg", "secret": "e0541696af", "media": "photo", "latitude": "0", "id": "6698543801", "tags": ""}, {"datetaken": "2012-01-14 05:44:26", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7013/6698546043_da803bc173_o.jpg", "secret": "3349cf223a", "media": "photo", "latitude": "0", "id": "6698546043", "tags": ""}, {"datetaken": "2012-01-14 05:44:36", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7023/6698548749_7a18eafaff_o.jpg", "secret": "fdcd742188", "media": "photo", "latitude": "0", "id": "6698548749", "tags": ""}, {"datetaken": "2012-01-14 05:44:57", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7016/6698551853_d70e83dcee_o.jpg", "secret": "5e590673f0", "media": "photo", "latitude": "0", "id": "6698551853", "tags": ""}, {"datetaken": "2012-01-14 05:45:13", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7017/6698555241_812c0df772_o.jpg", "secret": "8060920785", "media": "photo", "latitude": "0", "id": "6698555241", "tags": "amy neongenesisevangelion rei asuka fullmetalalchemist evangelion bome gundamseeddestiny heismymaster burstangel luckystar"}, {"datetaken": "2012-01-14 05:56:46", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7028/6698561543_fecbbe4d66_o.jpg", "secret": "88470aeaf8", "media": "photo", "latitude": "0", "id": "6698561543", "tags": ""}, {"datetaken": "2012-01-14 05:58:29", "license": "3", "title": "@Animadness", "text": "", "album_id": "72157628873534519", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7151/6698562371_1b8858e269_o.jpg", "secret": "e27e6b7c59", "media": "photo", "latitude": "0", "id": "6698562371", "tags": ""}, {"datetaken": "2012-01-27 10:15:48", "license": "3", "title": "Frans Hals Museum - DSCN0203", "text": "", "album_id": "72157629058171635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7168/6772397047_a89580abd3_o.jpg", "secret": "c63a162c29", "media": "photo", "latitude": "0", "id": "6772397047", "tags": "holland art haarlem paintings thenetherlands schilderij franshals jansteen celebratingthegoldenage"}, {"datetaken": "2012-01-27 10:48:00", "license": "3", "title": "Frans Hals Museum - DSCN0205", "text": "", "album_id": "72157629058171635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7007/6772397207_faf5c4f507_o.jpg", "secret": "435e2a7a35", "media": "photo", "latitude": "0", "id": "6772397207", "tags": "holland art haarlem paintings thenetherlands schilderij franshals jansteen celebratingthegoldenage"}, {"datetaken": "2012-01-27 10:51:07", "license": "3", "title": "Frans Hals Museum - DSCN0206", "text": "", "album_id": "72157629058171635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7175/6772397331_98b40ccc41_o.jpg", "secret": "f6ef48347b", "media": "photo", "latitude": "0", "id": "6772397331", "tags": "holland art haarlem paintings thenetherlands schilderij franshals jansteen celebratingthegoldenage"}, {"datetaken": "2012-01-27 10:51:21", "license": "3", "title": "Frans Hals Museum - DSCN0207", "text": "", "album_id": "72157629058171635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7032/6772397435_043e64ba54_o.jpg", "secret": "df0b7040f8", "media": "photo", "latitude": "0", "id": "6772397435", "tags": "holland art haarlem paintings thenetherlands schilderij franshals jansteen celebratingthegoldenage"}, {"datetaken": "2012-01-27 10:54:18", "license": "3", "title": "Frans Hals Museum - DSCN0208", "text": "", "album_id": "72157629058171635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7146/6772397583_099696152f_o.jpg", "secret": "838dea1151", "media": "photo", "latitude": "0", "id": "6772397583", "tags": "holland art haarlem paintings thenetherlands schilderij franshals jansteen celebratingthegoldenage"}, {"datetaken": "2012-01-27 11:00:21", "license": "3", "title": "Frans Hals Museum - DSCN0210", "text": "", "album_id": "72157629058171635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7018/6772397679_4860675da2_o.jpg", "secret": "2ca52dd744", "media": "photo", "latitude": "0", "id": "6772397679", "tags": "holland art haarlem paintings thenetherlands schilderij franshals jansteen celebratingthegoldenage"}, {"datetaken": "2012-01-27 11:03:49", "license": "3", "title": "Frans Hals Museum - DSCN0211", "text": "", "album_id": "72157629058171635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6772397779_7396df5c17_o.jpg", "secret": "51f0c697e7", "media": "photo", "latitude": "0", "id": "6772397779", "tags": "holland art haarlem paintings thenetherlands schilderij franshals jansteen celebratingthegoldenage"}, {"datetaken": "2012-01-27 11:08:46", "license": "3", "title": "Frans Hals Museum - DSCN0213", "text": "", "album_id": "72157629058171635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7022/6772397899_798e12789d_o.jpg", "secret": "32f23eeb6a", "media": "photo", "latitude": "0", "id": "6772397899", "tags": "holland art haarlem paintings thenetherlands schilderij franshals jansteen celebratingthegoldenage"}, {"datetaken": "2012-01-27 11:16:09", "license": "3", "title": "Frans Hals Museum - DSCN0214", "text": "", "album_id": "72157629058171635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7033/6772398021_07b9794813_o.jpg", "secret": "aefba83181", "media": "photo", "latitude": "0", "id": "6772398021", "tags": "holland art haarlem paintings thenetherlands schilderij franshals jansteen celebratingthegoldenage"}, {"datetaken": "2012-01-27 11:16:23", "license": "3", "title": "Frans Hals Museum - DSCN0215", "text": "", "album_id": "72157629058171635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7163/6772398139_a7645193de_o.jpg", "secret": "45fb81f1a7", "media": "photo", "latitude": "0", "id": "6772398139", "tags": "holland art haarlem paintings thenetherlands schilderij franshals jansteen celebratingthegoldenage"}, {"datetaken": "2012-01-27 11:23:05", "license": "3", "title": "Frans Hals Museum - DSCN0216", "text": "", "album_id": "72157629058171635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7002/6772398247_6c3a62c8e3_o.jpg", "secret": "001d942896", "media": "photo", "latitude": "0", "id": "6772398247", "tags": "holland art haarlem paintings thenetherlands schilderij franshals jansteen celebratingthegoldenage"}, {"datetaken": "2012-01-27 11:23:20", "license": "3", "title": "Frans Hals Museum - DSCN0217", "text": "", "album_id": "72157629058171635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7018/6772393277_aaa15190e1_o.jpg", "secret": "6ef0cb4279", "media": "photo", "latitude": "0", "id": "6772393277", "tags": "holland art haarlem paintings thenetherlands schilderij franshals"}, {"datetaken": "2012-01-27 11:25:02", "license": "3", "title": "Frans Hals Museum - DSCN0218", "text": "", "album_id": "72157629058171635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7151/6772398371_48c0502403_o.jpg", "secret": "ed4f70f077", "media": "photo", "latitude": "0", "id": "6772398371", "tags": "holland art haarlem paintings thenetherlands schilderij franshals jansteen celebratingthegoldenage"}, {"datetaken": "2012-01-27 11:25:21", "license": "3", "title": "Frans Hals Museum - DSCN0219", "text": "", "album_id": "72157629058171635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7032/6772398465_e39a4cde90_o.jpg", "secret": "244808dc14", "media": "photo", "latitude": "0", "id": "6772398465", "tags": "holland art haarlem paintings thenetherlands schilderij franshals jansteen celebratingthegoldenage"}, {"datetaken": "2012-01-27 11:51:18", "license": "3", "title": "Frans Hals Museum - DSCN0223", "text": "", "album_id": "72157629058171635", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7153/6772398585_54e8013624_o.jpg", "secret": "850c48f64b", "media": "photo", "latitude": "0", "id": "6772398585", "tags": "holland art haarlem paintings thenetherlands schilderij franshals jansteen celebratingthegoldenage"}, {"datetaken": "2012-01-20 15:05:56", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7142/6731054603_8247430b77_o.jpg", "secret": "6042e84ebc", "media": "photo", "latitude": "0", "id": "6731054603", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:08:14", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7012/6731501727_22fdd7fb58_o.jpg", "secret": "9d24880786", "media": "photo", "latitude": "0", "id": "6731501727", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:08:24", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7150/6731476381_611174feff_o.jpg", "secret": "b2d7ebeef9", "media": "photo", "latitude": "0", "id": "6731476381", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:08:56", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7024/6731074351_e03c3d40c8_o.jpg", "secret": "6918ae3e3e", "media": "photo", "latitude": "0", "id": "6731074351", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:09:20", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7171/6731084815_5b207ed876_o.jpg", "secret": "e816fc46cd", "media": "photo", "latitude": "0", "id": "6731084815", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:10:24", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7030/6731090515_0da18f6ce3_o.jpg", "secret": "16999e4c78", "media": "photo", "latitude": "0", "id": "6731090515", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:10:51", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7001/6731099929_937db90910_o.jpg", "secret": "a0fb9481a8", "media": "photo", "latitude": "0", "id": "6731099929", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:11:03", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7154/6731215189_5a618d7259_o.jpg", "secret": "6a9ddd8a1a", "media": "photo", "latitude": "0", "id": "6731215189", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:11:18", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7004/6731150181_b6dfd00543_o.jpg", "secret": "03ab8b2187", "media": "photo", "latitude": "0", "id": "6731150181", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:11:34", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7163/6731308225_33ed54f73c_o.jpg", "secret": "1f93568bc1", "media": "photo", "latitude": "0", "id": "6731308225", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:11:48", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7169/6731389187_aac7979524_o.jpg", "secret": "c96c353342", "media": "photo", "latitude": "0", "id": "6731389187", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:12:15", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7016/6731160615_4be088c7db_o.jpg", "secret": "80c2f871c4", "media": "photo", "latitude": "0", "id": "6731160615", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:13:14", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7175/6731204949_cc1b48bdc6_o.jpg", "secret": "1b37605bb9", "media": "photo", "latitude": "0", "id": "6731204949", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:13:39", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7025/6731221573_a32f75f1f7_o.jpg", "secret": "963b572159", "media": "photo", "latitude": "0", "id": "6731221573", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:13:50", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7032/6731172519_8c422678a2_o.jpg", "secret": "11c7208e78", "media": "photo", "latitude": "0", "id": "6731172519", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:13:58", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7165/6731184077_c2a970a49b_o.jpg", "secret": "96cc5aeec1", "media": "photo", "latitude": "0", "id": "6731184077", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:14:20", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7020/6731344107_cd573d837b_o.jpg", "secret": "43983416b9", "media": "photo", "latitude": "0", "id": "6731344107", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:14:25", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7002/6731337491_dd4ff555c2_o.jpg", "secret": "0c07202747", "media": "photo", "latitude": "0", "id": "6731337491", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:16:04", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7168/6731328199_6f9abe0e28_o.jpg", "secret": "ca700e1b6a", "media": "photo", "latitude": "0", "id": "6731328199", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:16:55", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7161/6731512175_dda1ba1b2f_o.jpg", "secret": "774122159e", "media": "photo", "latitude": "0", "id": "6731512175", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:17:33", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7008/6731418125_feea309a03_o.jpg", "secret": "18404a4092", "media": "photo", "latitude": "0", "id": "6731418125", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:17:43", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7007/6731359783_0a006fb399_o.jpg", "secret": "8c889b93d2", "media": "photo", "latitude": "0", "id": "6731359783", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:18:26", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7014/6731298583_a4547bc0c0_o.jpg", "secret": "bb61850d4b", "media": "photo", "latitude": "0", "id": "6731298583", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:19:28", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7169/6731196517_783d044b48_o.jpg", "secret": "96de0922e1", "media": "photo", "latitude": "0", "id": "6731196517", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:19:55", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7142/6731378141_ab3537f227_o.jpg", "secret": "a75e864455", "media": "photo", "latitude": "0", "id": "6731378141", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:20:28", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7159/6731317133_3bd10bb70f_o.jpg", "secret": "da78e05a8a", "media": "photo", "latitude": "0", "id": "6731317133", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:20:43", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7013/6731383885_52e3bd597f_o.jpg", "secret": "da7cd536e3", "media": "photo", "latitude": "0", "id": "6731383885", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:21:03", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7022/6731241109_dc382e09e1_o.jpg", "secret": "5710052b6a", "media": "photo", "latitude": "0", "id": "6731241109", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:21:12", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7141/6731251573_20ff206d89_o.jpg", "secret": "b6bcd2f2e1", "media": "photo", "latitude": "0", "id": "6731251573", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:21:22", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7023/6731262801_34b6d27074_o.jpg", "secret": "d66c78f9ed", "media": "photo", "latitude": "0", "id": "6731262801", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:21:41", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7022/6731272137_11e3dd8050_o.jpg", "secret": "61c3e20d3f", "media": "photo", "latitude": "0", "id": "6731272137", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:22:22", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7028/6731233283_5b8df1151f_o.jpg", "secret": "445e34ec83", "media": "photo", "latitude": "0", "id": "6731233283", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:22:46", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7173/6731282839_205c96ae59_o.jpg", "secret": "c2c8b19d24", "media": "photo", "latitude": "0", "id": "6731282839", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:22:59", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7017/6731292891_e832dda198_o.jpg", "secret": "36b3938116", "media": "photo", "latitude": "0", "id": "6731292891", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:23:27", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7027/6731353469_753f82a558_o.jpg", "secret": "293e6e834d", "media": "photo", "latitude": "0", "id": "6731353469", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:23:51", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6731398935_a4c81cfe5c_o.jpg", "secret": "5f08be3212", "media": "photo", "latitude": "0", "id": "6731398935", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:24:11", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7156/6731371507_0d5763d1eb_o.jpg", "secret": "76786b4fdb", "media": "photo", "latitude": "0", "id": "6731371507", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:24:18", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7031/6731407601_79a7ed3eb8_o.jpg", "secret": "cdd3526ed1", "media": "photo", "latitude": "0", "id": "6731407601", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:24:54", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7024/6731140111_c648ca65f4_o.jpg", "secret": "d3db0758d5", "media": "photo", "latitude": "0", "id": "6731140111", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:27:15", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7169/6731127111_121d0f97bd_o.jpg", "secret": "6f713c309b", "media": "photo", "latitude": "0", "id": "6731127111", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:27:50", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7141/6731426643_d1cbdec065_o.jpg", "secret": "9c6617ebec", "media": "photo", "latitude": "0", "id": "6731426643", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:28:08", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7157/6731115379_51f61fed0b_o.jpg", "secret": "455a70c068", "media": "photo", "latitude": "0", "id": "6731115379", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:28:43", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7026/6731436065_7600016665_o.jpg", "secret": "1fa90c2608", "media": "photo", "latitude": "0", "id": "6731436065", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:30:08", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7008/6731444265_365bffb724_o.jpg", "secret": "6ed0196b04", "media": "photo", "latitude": "0", "id": "6731444265", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:30:37", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7035/6731454971_dec4413444_o.jpg", "secret": "de7bd34718", "media": "photo", "latitude": "0", "id": "6731454971", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:30:56", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7145/6731466531_753ff4119f_o.jpg", "secret": "392cd1c7ef", "media": "photo", "latitude": "0", "id": "6731466531", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:32:17", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7154/6731490061_3bffcfa708_o.jpg", "secret": "d600cef6f6", "media": "photo", "latitude": "0", "id": "6731490061", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2012-01-20 15:33:03", "license": "6", "title": "2012 Guangzhou Flower Carnival", "text": "", "album_id": "72157628953763131", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7014/6731062439_51e04d9dfb_o.jpg", "secret": "4641ebb598", "media": "photo", "latitude": "0", "id": "6731062439", "tags": "leica carnival flower 2012 x1"}, {"datetaken": "2007-03-03 10:14:25", "license": "2", "title": "Rick Swenson", "text": "", "album_id": "72157594568652210", "longitude": "-149.893941", "url_o": "https://farm1.staticflickr.com/152/409647597_7391d22a1b_o.jpg", "secret": "57d9d2bb70", "media": "photo", "latitude": "61.218143", "id": "409647597", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 10:27:40", "license": "2", "title": "Buser", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/409647598_31250bb5a7_o.jpg", "secret": "6523548d69", "media": "photo", "latitude": "0", "id": "409647598", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 10:27:44", "license": "2", "title": "Buser", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/409647600_cfe9accaa0_o.jpg", "secret": "1df41f39df", "media": "photo", "latitude": "0", "id": "409647600", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 10:27:45", "license": "2", "title": "Buser", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/409647603_f0ff5accae_o.jpg", "secret": "761277a5ee", "media": "photo", "latitude": "0", "id": "409647603", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 10:29:22", "license": "2", "title": "Seavey", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/409647607_805360a8e9_o.jpg", "secret": "b7ab302e17", "media": "photo", "latitude": "0", "id": "409647607", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 10:33:01", "license": "2", "title": "Rogers", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/409647610_8f64fb4edf_o.jpg", "secret": "348642a3d0", "media": "photo", "latitude": "0", "id": "409647610", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 10:37:54", "license": "2", "title": "Jonrowe", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/409667663_9e0f3431ef_o.jpg", "secret": "750b0df416", "media": "photo", "latitude": "0", "id": "409667663", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 10:39:38", "license": "2", "title": "Jonrowe", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/409667664_440894b0d5_o.jpg", "secret": "2c0eb2515e", "media": "photo", "latitude": "0", "id": "409667664", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 10:50:40", "license": "2", "title": "Lindner", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/409667669_d6d9105dd0_o.jpg", "secret": "6d4bf5c0d3", "media": "photo", "latitude": "0", "id": "409667669", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 11:29:49", "license": "2", "title": "Redington", "text": "", "album_id": "72157594568652210", "longitude": "-149.879350", "url_o": "https://farm1.staticflickr.com/133/409667673_a6b7794643_o.jpg", "secret": "accb90e9ab", "media": "photo", "latitude": "61.207407", "id": "409667673", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 11:43:01", "license": "2", "title": "DSC_0081", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/409667678_efbab37c18_o.jpg", "secret": "a90579ac19", "media": "photo", "latitude": "0", "id": "409667678", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 11:43:05", "license": "2", "title": "DSC_0083", "text": "", "album_id": "72157594568652210", "longitude": "-149.879286", "url_o": "https://farm1.staticflickr.com/99/409681561_7d5d244fc3_o.jpg", "secret": "9d972fa4b2", "media": "photo", "latitude": "61.204720", "id": "409681561", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 11:53:49", "license": "2", "title": "Team Baker 2007", "text": "", "album_id": "72157594568652210", "longitude": "-149.876604", "url_o": "https://farm1.staticflickr.com/174/409681562_e68a332906_o.jpg", "secret": "783d03e1ef", "media": "photo", "latitude": "61.202332", "id": "409681562", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 11:53:52", "license": "2", "title": "DSC_0089", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/409681565_35aa59f720_o.jpg", "secret": "97f9040428", "media": "photo", "latitude": "0", "id": "409681565", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 11:56:59", "license": "2", "title": "DSC_0099", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/409681566_f407444c09_o.jpg", "secret": "92b5e91c9d", "media": "photo", "latitude": "0", "id": "409681566", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 11:56:59", "license": "2", "title": "Sorlie", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/409681573_9833ad600a_o.jpg", "secret": "6fffec30eb", "media": "photo", "latitude": "0", "id": "409681573", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 11:57:00", "license": "2", "title": "Norge", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/409681574_4fa774e29a_o.jpg", "secret": "4026a84f1a", "media": "photo", "latitude": "0", "id": "409681574", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 12:19:37", "license": "2", "title": "Carter Dogs", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/409695774_bd41235038_o.jpg", "secret": "5e29882a70", "media": "photo", "latitude": "0", "id": "409695774", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 12:22:29", "license": "2", "title": "DSC_0137", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/409695782_2172873b05_o.jpg", "secret": "aeb4d45468", "media": "photo", "latitude": "0", "id": "409695782", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 12:23:17", "license": "2", "title": "Deborah Bicknell", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/409695784_52911bf9d9_o.jpg", "secret": "9a7a87d712", "media": "photo", "latitude": "0", "id": "409695784", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 12:45:21", "license": "2", "title": "Blue eyes", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/409695787_827672d383_o.jpg", "secret": "c054dc5a0d", "media": "photo", "latitude": "0", "id": "409695787", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 13:00:22", "license": "2", "title": "Siberians", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/409695794_4ef1d15fdd_o.jpg", "secret": "a2b6bce477", "media": "photo", "latitude": "0", "id": "409695794", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 13:01:10", "license": "2", "title": "Keeping the trail snow covered", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/409695796_0015c796db_o.jpg", "secret": "3524b70a2a", "media": "photo", "latitude": "0", "id": "409695796", "tags": "2007 iditarod"}, {"datetaken": "2007-03-03 13:01:22", "license": "2", "title": "Volunteer", "text": "", "album_id": "72157594568652210", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/409704427_6c88ebd223_o.jpg", "secret": "d2c5487894", "media": "photo", "latitude": "0", "id": "409704427", "tags": "2007 iditarod"}, {"datetaken": "2010-05-29 17:19:28", "license": "1", "title": "Mud Island Trolly", "text": "", "album_id": "72157624090366033", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1275/4674212725_617a6b587a_o.jpg", "secret": "d058938f02", "media": "photo", "latitude": "0", "id": "4674212725", "tags": ""}, {"datetaken": "2010-05-29 17:21:14", "license": "1", "title": "Trolly Wheel", "text": "", "album_id": "72157624090366033", "longitude": "-90.057678", "url_o": "https://farm5.staticflickr.com/4056/4674212869_b26746cfca_o.jpg", "secret": "5152802029", "media": "photo", "latitude": "35.149249", "id": "4674212869", "tags": ""}, {"datetaken": "2010-05-29 17:43:30", "license": "1", "title": "Star wars day at Autozone Park", "text": "", "album_id": "72157624090366033", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4674213061_67311d43db_o.jpg", "secret": "809a677ef7", "media": "photo", "latitude": "0", "id": "4674213061", "tags": ""}, {"datetaken": "2010-05-29 17:44:27", "license": "1", "title": "Star wars day at Autozone Park Sign", "text": "", "album_id": "72157624090366033", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4674213287_f5ea96c6ae_o.jpg", "secret": "44fe0f51ea", "media": "photo", "latitude": "0", "id": "4674213287", "tags": ""}, {"datetaken": "2010-05-29 17:45:53", "license": "1", "title": "Dog on Horse Carriage", "text": "", "album_id": "72157624090366033", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4674836936_e1624a1e6c_o.jpg", "secret": "26e929b302", "media": "photo", "latitude": "0", "id": "4674836936", "tags": ""}, {"datetaken": "2010-05-29 17:50:21", "license": "1", "title": "Trolly", "text": "", "album_id": "72157624090366033", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1303/4674837110_1c1085dfd7_o.jpg", "secret": "6edf79e358", "media": "photo", "latitude": "0", "id": "4674837110", "tags": ""}, {"datetaken": "2010-05-29 17:50:30", "license": "1", "title": "Trolly 2", "text": "", "album_id": "72157624090366033", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4674837282_30f28ee292_o.jpg", "secret": "27607980b6", "media": "photo", "latitude": "0", "id": "4674837282", "tags": ""}, {"datetaken": "2010-05-30 09:03:35", "license": "1", "title": "Mud Island", "text": "", "album_id": "72157624090366033", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1279/4674213987_21570d743c_o.jpg", "secret": "6dda3653ac", "media": "photo", "latitude": "0", "id": "4674213987", "tags": ""}, {"datetaken": "2010-05-30 10:35:52", "license": "1", "title": "Traffic Stop", "text": "", "album_id": "72157624090366033", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4674214157_064336e759_o.jpg", "secret": "41211133cd", "media": "photo", "latitude": "0", "id": "4674214157", "tags": ""}, {"datetaken": "2010-05-30 10:37:03", "license": "1", "title": "Car Accident Helicopter 2", "text": "", "album_id": "72157624090366033", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4674837768_6d224aa809_o.jpg", "secret": "9ddd747f93", "media": "photo", "latitude": "0", "id": "4674837768", "tags": ""}, {"datetaken": "2010-05-30 10:37:11", "license": "1", "title": "Car Accident Helicopter", "text": "", "album_id": "72157624090366033", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4674214563_ccd433a447_o.jpg", "secret": "a46be30ee7", "media": "photo", "latitude": "0", "id": "4674214563", "tags": ""}, {"datetaken": "2010-05-30 10:37:29", "license": "1", "title": "Car Accident Helicopter 3", "text": "", "album_id": "72157624090366033", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4674214775_19548a186c_o.jpg", "secret": "99e0a7837b", "media": "photo", "latitude": "0", "id": "4674214775", "tags": ""}, {"datetaken": "2010-05-30 13:31:32", "license": "1", "title": "Majestic Hotel Hot Springs", "text": "", "album_id": "72157624090366033", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4674214967_94f87bd7c5_o.jpg", "secret": "4ecd40c840", "media": "photo", "latitude": "0", "id": "4674214967", "tags": ""}, {"datetaken": "2010-05-30 16:56:21", "license": "1", "title": "View Out the Hotel in Hot Springs", "text": "", "album_id": "72157624090366033", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4674838538_1996007e1d_o.jpg", "secret": "f56c889c79", "media": "photo", "latitude": "0", "id": "4674838538", "tags": ""}, {"datetaken": "2010-05-30 16:56:28", "license": "1", "title": "View Out the Hotel in Hot Springs 2", "text": "", "album_id": "72157624090366033", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4674215297_3e85e2ab77_o.jpg", "secret": "064f6ed74f", "media": "photo", "latitude": "0", "id": "4674215297", "tags": ""}, {"datetaken": "2010-05-30 19:33:36", "license": "1", "title": "Hot Springs Sign", "text": "", "album_id": "72157624090366033", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4674838852_cd78049c03_o.jpg", "secret": "aee9e57afa", "media": "photo", "latitude": "0", "id": "4674838852", "tags": ""}, {"datetaken": "2010-05-30 19:36:00", "license": "1", "title": "Central Ave Hot Springs", "text": "", "album_id": "72157624090366033", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4674836012_9fb108bb19_o.jpg", "secret": "befe7f79bd", "media": "photo", "latitude": "0", "id": "4674836012", "tags": ""}, {"datetaken": "2010-05-30 20:17:23", "license": "1", "title": "SunSet Hot Springs", "text": "", "album_id": "72157624090366033", "longitude": "-93.084293", "url_o": "https://farm5.staticflickr.com/4051/4674215547_bd35880bee_o.jpg", "secret": "b7e57de94e", "media": "photo", "latitude": "34.429177", "id": "4674215547", "tags": ""}, {"datetaken": "2012-09-09 09:31:53", "license": "6", "title": "photo_2164890_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8439/7962045718_1c51b14813_o.jpg", "secret": "bc3104be8d", "media": "photo", "latitude": "0", "id": "7962045718", "tags": "bear bridge river dot rcmp mvc"}, {"datetaken": "2012-09-09 09:39:59", "license": "6", "title": "photo_2164909_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8321/7962088628_5fc2d74735_o.jpg", "secret": "1d29239fd4", "media": "photo", "latitude": "0", "id": "7962088628", "tags": "road trees night lights traffic control guard rail"}, {"datetaken": "2012-09-09 09:40:03", "license": "6", "title": "photo_2164908_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8317/7962088944_f1f6595c70_o.jpg", "secret": "9b5ce415ed", "media": "photo", "latitude": "0", "id": "7962088944", "tags": "road trees water truck traffic control dump powerlines blocks cinder excavator bacco"}, {"datetaken": "2012-09-09 09:40:05", "license": "6", "title": "photo_2164907_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8313/7962089206_c1f674af1e_o.jpg", "secret": "6a9045618f", "media": "photo", "latitude": "0", "id": "7962089206", "tags": "night truck traffic control accident transport trailer excavator"}, {"datetaken": "2012-09-09 09:40:08", "license": "6", "title": "photo_2164906_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8304/7962089426_0ba7245d55_o.jpg", "secret": "0070d15ce4", "media": "photo", "latitude": "0", "id": "7962089426", "tags": "road trees night truck accident transport guard rail"}, {"datetaken": "2012-09-09 09:40:11", "license": "6", "title": "photo_2164904_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8311/7962089676_e6d638c0b9_o.jpg", "secret": "979e78a52e", "media": "photo", "latitude": "0", "id": "7962089676", "tags": "road truck lights traffic accident transport tow excavator contrtol"}, {"datetaken": "2012-09-09 09:40:13", "license": "6", "title": "photo_2164903_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8451/7962089894_b9d2419653_o.jpg", "secret": "da0cea50f2", "media": "photo", "latitude": "0", "id": "7962089894", "tags": "road trees water evening traffic control accident guard rail gravel"}, {"datetaken": "2012-09-09 09:40:17", "license": "6", "title": "photo_2164901_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8439/7962090136_517f17846e_o.jpg", "secret": "5ecf433696", "media": "photo", "latitude": "0", "id": "7962090136", "tags": "road trees water lines sign truck power control accident guard rail tow gravel excavator trffic"}, {"datetaken": "2012-09-09 09:40:20", "license": "6", "title": "photo_2164900_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8439/7962090398_a948246dbb_o.jpg", "secret": "3b90059043", "media": "photo", "latitude": "0", "id": "7962090398", "tags": "road trees truck traffic control accident transport clothes excavator"}, {"datetaken": "2012-09-09 09:40:23", "license": "6", "title": "photo_2164899_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8440/7962090656_59ab2e9ca9_o.jpg", "secret": "11601d78de", "media": "photo", "latitude": "0", "id": "7962090656", "tags": "road trees lines truck power accident transport clothes bacco"}, {"datetaken": "2012-09-09 09:40:25", "license": "6", "title": "photo_2164898_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8319/7962090884_a40d0202b9_o.jpg", "secret": "03f4690c18", "media": "photo", "latitude": "0", "id": "7962090884", "tags": "road trees water truck traffic control accident transport tow gravel excavator"}, {"datetaken": "2012-09-09 09:40:29", "license": "6", "title": "photo_2164897_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8316/7962091156_4ffece04a3_o.jpg", "secret": "86ab8c9b7f", "media": "photo", "latitude": "0", "id": "7962091156", "tags": "road trees water car truck traffic control accident transport police gravel bacco"}, {"datetaken": "2012-09-09 09:40:31", "license": "6", "title": "photo_2164896_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8303/7962091410_75115a78f6_o.jpg", "secret": "2283586b49", "media": "photo", "latitude": "0", "id": "7962091410", "tags": "trees water power accident guard rail line pole bent gravel"}, {"datetaken": "2012-09-09 09:40:35", "license": "6", "title": "photo_2164895_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8460/7962091702_417c7d5273_o.jpg", "secret": "e467d75988", "media": "photo", "latitude": "0", "id": "7962091702", "tags": "trees water grass truck fire power accident transport line pole gravel"}, {"datetaken": "2012-09-09 09:40:38", "license": "6", "title": "photo_2164894_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8456/7962091992_850aa97b40_o.jpg", "secret": "5b4316b3a4", "media": "photo", "latitude": "0", "id": "7962091992", "tags": "road trees water rock wall accident van"}, {"datetaken": "2012-09-09 09:40:42", "license": "6", "title": "photo_2164893_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8299/7962092366_974a32c384_o.jpg", "secret": "1f3705da94", "media": "photo", "latitude": "0", "id": "7962092366", "tags": "lines truck fire power traffic accident pole trucks fighters trnsport controlwater"}, {"datetaken": "2012-09-09 09:40:47", "license": "6", "title": "photo_2164892_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8445/7962092790_df028c3a93_o.jpg", "secret": "956eac60f5", "media": "photo", "latitude": "0", "id": "7962092790", "tags": "trees water grass sign truck fire traffic control accident transport guard police rail pole fighters"}, {"datetaken": "2012-09-09 09:40:50", "license": "6", "title": "photo_2164891_resize", "text": "", "album_id": "72157631479821792", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8451/7962093106_b4486b9c51_o.jpg", "secret": "8a0ab8087b", "media": "photo", "latitude": "0", "id": "7962093106", "tags": "road trees lines car truck fire power accident transport guard police rail pole van"}, {"datetaken": "2004-07-31 13:12:43", "license": "1", "title": "Wet Rocks", "text": "", "album_id": "72157600001571637", "longitude": "-80.902118", "url_o": "https://farm1.staticflickr.com/2/3339014_2cac9d5e15_o.jpg", "secret": "2cac9d5e15", "media": "photo", "latitude": "46.521577", "id": "3339014", "tags": "sudbury rocks"}, {"datetaken": "2004-07-31 13:17:33", "license": "1", "title": "Hole in the Mud", "text": "", "album_id": "72157600001571637", "longitude": "-80.902118", "url_o": "https://farm1.staticflickr.com/2/3339031_6c18717be9_o.jpg", "secret": "6c18717be9", "media": "photo", "latitude": "46.521577", "id": "3339031", "tags": "sudbury mud water"}, {"datetaken": "2004-07-31 13:18:38", "license": "1", "title": "The North", "text": "", "album_id": "72157600001571637", "longitude": "-80.902118", "url_o": "https://farm1.staticflickr.com/3/3339059_b642a3c935_o.jpg", "secret": "b642a3c935", "media": "photo", "latitude": "46.521577", "id": "3339059", "tags": "rock moss grow sudbury"}, {"datetaken": "2004-07-31 13:25:02", "license": "1", "title": "The Path", "text": "", "album_id": "72157600001571637", "longitude": "-80.902118", "url_o": "https://farm1.staticflickr.com/3/3339086_48d9cabc39_o.jpg", "secret": "48d9cabc39", "media": "photo", "latitude": "46.521577", "id": "3339086", "tags": "sign red hiking stone sudbury"}, {"datetaken": "2004-07-31 13:47:40", "license": "1", "title": "Ready to pick", "text": "", "album_id": "72157600001571637", "longitude": "-80.902118", "url_o": "https://farm1.staticflickr.com/3/3339140_8f1ad4b4e8_o.jpg", "secret": "8f1ad4b4e8", "media": "photo", "latitude": "46.521577", "id": "3339140", "tags": "sudbury blueberries hike"}, {"datetaken": "2004-07-31 13:55:55", "license": "1", "title": "Rocks over", "text": "", "album_id": "72157600001571637", "longitude": "-80.902118", "url_o": "https://farm1.staticflickr.com/1/3339183_68efd8f8c6_o.jpg", "secret": "68efd8f8c6", "media": "photo", "latitude": "46.521577", "id": "3339183", "tags": "sudbury lake laurentian rocks"}, {"datetaken": "2004-07-31 14:01:20", "license": "1", "title": "The Path", "text": "", "album_id": "72157600001571637", "longitude": "-80.902118", "url_o": "https://farm1.staticflickr.com/2/3339209_60e12a615b_o.jpg", "secret": "60e12a615b", "media": "photo", "latitude": "46.521577", "id": "3339209", "tags": "trail hike subury lake laurentian"}, {"datetaken": "2004-07-31 14:06:29", "license": "1", "title": "Jump Out", "text": "", "album_id": "72157600001571637", "longitude": "-80.902118", "url_o": "https://farm1.staticflickr.com/3/3339218_1036a5d70e_o.jpg", "secret": "1036a5d70e", "media": "photo", "latitude": "46.521577", "id": "3339218", "tags": "jump sudbury lake laurentian dock"}, {"datetaken": "2004-07-31 14:06:43", "license": "1", "title": "Lake Laurentian", "text": "", "album_id": "72157600001571637", "longitude": "-80.902118", "url_o": "https://farm1.staticflickr.com/2/3339228_cc9e763887_o.jpg", "secret": "cc9e763887", "media": "photo", "latitude": "46.521577", "id": "3339228", "tags": "sudbury lakelaurentian"}, {"datetaken": "2004-07-31 14:06:50", "license": "1", "title": "Across", "text": "", "album_id": "72157600001571637", "longitude": "-80.902118", "url_o": "https://farm1.staticflickr.com/2/3339253_8245a5c47a_o.jpg", "secret": "8245a5c47a", "media": "photo", "latitude": "46.521577", "id": "3339253", "tags": "sudbury lakelaurentian"}, {"datetaken": "2004-07-31 14:14:00", "license": "1", "title": "Blueberries", "text": "", "album_id": "72157600001571637", "longitude": "-80.902118", "url_o": "https://farm1.staticflickr.com/3/3339278_9c14fefd76_o.jpg", "secret": "9c14fefd76", "media": "photo", "latitude": "46.521577", "id": "3339278", "tags": "blueberries wild collect bottle"}, {"datetaken": "2004-07-31 17:57:26", "license": "1", "title": "Waiting on the Road", "text": "", "album_id": "72157600001571637", "longitude": "-80.902118", "url_o": "https://farm1.staticflickr.com/1/3339293_285dc3cee8_o.jpg", "secret": "285dc3cee8", "media": "photo", "latitude": "46.521577", "id": "3339293", "tags": "road traffic jam united"}, {"datetaken": "2005-08-25 09:06:42", "license": "6", "title": "the front", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/37106704_0fa49e1363_o.jpg", "secret": "0fa49e1363", "media": "photo", "latitude": "0", "id": "37106704", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:06:56", "license": "6", "title": "the front", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/37106748_a746223e57_o.jpg", "secret": "a746223e57", "media": "photo", "latitude": "0", "id": "37106748", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:07:04", "license": "6", "title": "The left again", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/37106772_109465c40c_o.jpg", "secret": "109465c40c", "media": "photo", "latitude": "0", "id": "37106772", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:07:11", "license": "6", "title": "Steering column", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/37106807_af95dd56b1_o.jpg", "secret": "af95dd56b1", "media": "photo", "latitude": "0", "id": "37106807", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:07:19", "license": "6", "title": "Steering column", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/37106825_52caa3c491_o.jpg", "secret": "52caa3c491", "media": "photo", "latitude": "0", "id": "37106825", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:07:26", "license": "6", "title": "Inside looking from left.", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/37106858_82e4093e1d_o.jpg", "secret": "82e4093e1d", "media": "photo", "latitude": "0", "id": "37106858", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:07:34", "license": "6", "title": "the left again.", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/37106887_5ed6e2ff93_o.jpg", "secret": "5ed6e2ff93", "media": "photo", "latitude": "0", "id": "37106887", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:07:43", "license": "6", "title": "back looking down.", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/37106909_eaae29afb1_o.jpg", "secret": "eaae29afb1", "media": "photo", "latitude": "0", "id": "37106909", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:07:50", "license": "6", "title": "back slightly under", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/37106939_0d2682d4de_o.jpg", "secret": "0d2682d4de", "media": "photo", "latitude": "0", "id": "37106939", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:07:58", "license": "6", "title": "Inside looking from Right Again", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/37106970_9078bf24bb_o.jpg", "secret": "9078bf24bb", "media": "photo", "latitude": "0", "id": "37106970", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:08:06", "license": "6", "title": "Inside looking from Right Again", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/37107003_86497851dc_o.jpg", "secret": "86497851dc", "media": "photo", "latitude": "0", "id": "37107003", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:08:15", "license": "6", "title": "Right Side", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/37107032_426d224a23_o.jpg", "secret": "426d224a23", "media": "photo", "latitude": "0", "id": "37107032", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:08:23", "license": "6", "title": "Right Side", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/37107082_a6ed6db9d0_o.jpg", "secret": "a6ed6db9d0", "media": "photo", "latitude": "0", "id": "37107082", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:08:35", "license": "6", "title": "The Front again", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/37107131_fef88a8ddf_o.jpg", "secret": "fef88a8ddf", "media": "photo", "latitude": "0", "id": "37107131", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:08:44", "license": "6", "title": "Right Side", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/37107165_9b87aef473_o.jpg", "secret": "9b87aef473", "media": "photo", "latitude": "0", "id": "37107165", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:08:52", "license": "6", "title": "Left Side", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/37107217_43450b4f6d_o.jpg", "secret": "43450b4f6d", "media": "photo", "latitude": "0", "id": "37107217", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:09:02", "license": "6", "title": "Way from the left.", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/37107255_65714cff67_o.jpg", "secret": "65714cff67", "media": "photo", "latitude": "0", "id": "37107255", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:09:09", "license": "6", "title": "Way Back", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/37107279_5d7dfed892_o.jpg", "secret": "5d7dfed892", "media": "photo", "latitude": "0", "id": "37107279", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:09:16", "license": "6", "title": "Inside looking from the right", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/37107299_4937171407_o.jpg", "secret": "4937171407", "media": "photo", "latitude": "0", "id": "37107299", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:09:23", "license": "6", "title": "Front.", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/37107313_bc1ad7adaa_o.jpg", "secret": "bc1ad7adaa", "media": "photo", "latitude": "0", "id": "37107313", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:09:31", "license": "6", "title": "Front", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/37107344_0b705d43c4_o.jpg", "secret": "0b705d43c4", "media": "photo", "latitude": "0", "id": "37107344", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:09:38", "license": "6", "title": "Front", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/37107371_9e25a1d5d6_o.jpg", "secret": "9e25a1d5d6", "media": "photo", "latitude": "0", "id": "37107371", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:09:45", "license": "6", "title": "Oooh, it's so aerodynamic.", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/37107411_da275e98ea_o.jpg", "secret": "da275e98ea", "media": "photo", "latitude": "0", "id": "37107411", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:09:51", "license": "6", "title": "Way Closeup", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/37107430_2ddd73adee_o.jpg", "secret": "2ddd73adee", "media": "photo", "latitude": "0", "id": "37107430", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:10:00", "license": "6", "title": "Closeup Front", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/37107489_5d7f2745c6_o.jpg", "secret": "5d7f2745c6", "media": "photo", "latitude": "0", "id": "37107489", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:10:07", "license": "6", "title": "Front", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/37107519_10b2bbbbcb_o.jpg", "secret": "10b2bbbbcb", "media": "photo", "latitude": "0", "id": "37107519", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:10:13", "license": "6", "title": "Right Front", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/37107546_8ce21d256a_o.jpg", "secret": "8ce21d256a", "media": "photo", "latitude": "0", "id": "37107546", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:10:20", "license": "6", "title": "Undercarriage from Rear", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/37107561_bd2abf09ae_o.jpg", "secret": "bd2abf09ae", "media": "photo", "latitude": "0", "id": "37107561", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:10:27", "license": "6", "title": "Right Rear", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/37107594_926acced08_o.jpg", "secret": "926acced08", "media": "photo", "latitude": "0", "id": "37107594", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:10:34", "license": "6", "title": "Left Rear", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/37107617_7f36395fbd_o.jpg", "secret": "7f36395fbd", "media": "photo", "latitude": "0", "id": "37107617", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:10:42", "license": "6", "title": "Engine compartment", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/37107655_8e80761b39_o.jpg", "secret": "8e80761b39", "media": "photo", "latitude": "0", "id": "37107655", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:10:48", "license": "6", "title": "Steering Column", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/37107677_aa1d36f84a_o.jpg", "secret": "aa1d36f84a", "media": "photo", "latitude": "0", "id": "37107677", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:10:54", "license": "6", "title": "Front Left of Car", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/37107706_173589b70b_o.jpg", "secret": "173589b70b", "media": "photo", "latitude": "0", "id": "37107706", "tags": "automobile accident wreck"}, {"datetaken": "2005-08-25 09:11:02", "license": "6", "title": "Front of Car", "text": "", "album_id": "72157640932870314", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/37107737_8ff1c3cec6_o.jpg", "secret": "8ff1c3cec6", "media": "photo", "latitude": "0", "id": "37107737", "tags": "automobile accident wreck"}, {"datetaken": "2010-03-27 03:59:18", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2696/4466362118_3f3b364800_o.jpg", "secret": "271fcd3d44", "media": "photo", "latitude": "0", "id": "4466362118", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 03:59:29", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4466364790_94b62de035_o.jpg", "secret": "bb33429036", "media": "photo", "latitude": "0", "id": "4466364790", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 03:59:32", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2722/4466366894_5c21de8a07_o.jpg", "secret": "f46c6d9ab6", "media": "photo", "latitude": "0", "id": "4466366894", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 03:59:38", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4465593703_ec8aa8eb5f_o.jpg", "secret": "ba0473876c", "media": "photo", "latitude": "0", "id": "4465593703", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:00:19", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4466371684_52540c142a_o.jpg", "secret": "baf08431af", "media": "photo", "latitude": "0", "id": "4466371684", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:00:22", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2778/4466374600_0790627a37_o.jpg", "secret": "b22e257382", "media": "photo", "latitude": "0", "id": "4466374600", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:00:26", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4465601159_d459e255a5_o.jpg", "secret": "8b77a27be9", "media": "photo", "latitude": "0", "id": "4465601159", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:00:29", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4466378832_f98991e279_o.jpg", "secret": "3b1f07364b", "media": "photo", "latitude": "0", "id": "4466378832", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:01:00", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2727/4466380826_6f00a77f0f_o.jpg", "secret": "cf627a6f96", "media": "photo", "latitude": "0", "id": "4466380826", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:01:03", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4465607057_1892b18f73_o.jpg", "secret": "39674ab09d", "media": "photo", "latitude": "0", "id": "4465607057", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:01:09", "license": "0", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4465513007_2e49eafb16_o.jpg", "secret": "b64008156d", "media": "photo", "latitude": "0", "id": "4465513007", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:02:17", "license": "0", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4465516481_8c2c662b5c_o.jpg", "secret": "30a6f457d3", "media": "photo", "latitude": "0", "id": "4465516481", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:02:41", "license": "0", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4465520187_e34da09009_o.jpg", "secret": "8dc8b227c3", "media": "photo", "latitude": "0", "id": "4465520187", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:02:44", "license": "0", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4466300010_c010f781d6_o.jpg", "secret": "88dfbe52ec", "media": "photo", "latitude": "0", "id": "4466300010", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:02:51", "license": "0", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2682/4466303486_758c5484df_o.jpg", "secret": "218bea339f", "media": "photo", "latitude": "0", "id": "4466303486", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:02:55", "license": "0", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2796/4465531059_355b606cd3_o.jpg", "secret": "d572665031", "media": "photo", "latitude": "0", "id": "4465531059", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:02:58", "license": "0", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4465534381_67a551638d_o.jpg", "secret": "00c2157462", "media": "photo", "latitude": "0", "id": "4465534381", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:03:02", "license": "0", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4465538051_2c2ef60192_o.jpg", "secret": "e6e2d9cd6d", "media": "photo", "latitude": "0", "id": "4465538051", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:03:06", "license": "0", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4466318178_25c5c7b95e_o.jpg", "secret": "5423ebbe2c", "media": "photo", "latitude": "0", "id": "4466318178", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:03:09", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4465545943_f9582323ea_o.jpg", "secret": "ef40557945", "media": "photo", "latitude": "0", "id": "4465545943", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:03:16", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4466325700_a3a27853e3_o.jpg", "secret": "242351e216", "media": "photo", "latitude": "0", "id": "4466325700", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:03:19", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2714/4465553361_4f7f6dfdc0_o.jpg", "secret": "251f362c69", "media": "photo", "latitude": "0", "id": "4465553361", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:03:29", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2723/4466332618_e2ec49643c_o.jpg", "secret": "5fe97c7ee5", "media": "photo", "latitude": "0", "id": "4466332618", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:03:33", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4465560343_e3c5519147_o.jpg", "secret": "886f9aff52", "media": "photo", "latitude": "0", "id": "4465560343", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:04:54", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2723/4466340088_1d8bf4aacb_o.jpg", "secret": "8a8363565c", "media": "photo", "latitude": "0", "id": "4466340088", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:05:03", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2765/4465567537_f57eee9e0c_o.jpg", "secret": "c4fcdfd258", "media": "photo", "latitude": "0", "id": "4465567537", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:05:11", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4465571645_e186ba5ea1_o.jpg", "secret": "c99b7f1f46", "media": "photo", "latitude": "0", "id": "4465571645", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:07:27", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2735/4466351726_0c1b93811d_o.jpg", "secret": "2488d156ab", "media": "photo", "latitude": "0", "id": "4466351726", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:07:34", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4465580139_ea66f4fa9e_o.jpg", "secret": "708e444d2f", "media": "photo", "latitude": "0", "id": "4465580139", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2010-03-27 04:11:11", "license": "4", "title": "Saturday night fever", "text": "", "album_id": "72157623586324463", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4466359954_b0b6c0e704_o.jpg", "secret": "bfef882331", "media": "photo", "latitude": "0", "id": "4466359954", "tags": "car fire accident voiture eclair feu nord incendie hooligan mouscron nordeclaire"}, {"datetaken": "2012-09-29 01:03:35", "license": "1", "title": "Wacker/Franklin Car accident", "text": "", "album_id": "72157631648117970", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8455/8035054479_6407ae8eb8_o.jpg", "secret": "251df9eb71", "media": "photo", "latitude": "0", "id": "8035054479", "tags": "broken glass lights crash accident powerlines dodge wreck durango destroyed lightpole towtruck carwreck dui scattered cpd"}, {"datetaken": "2012-09-29 01:04:00", "license": "1", "title": "Wacker/Franklin Car accident", "text": "", "album_id": "72157631648117970", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8171/8035054247_62e5f36c40_o.jpg", "secret": "d2e22a2b49", "media": "photo", "latitude": "0", "id": "8035054247", "tags": "broken glass lights crash accident powerlines dodge wreck durango destroyed lightpole towtruck carwreck dui scattered cpd"}, {"datetaken": "2012-09-29 01:04:30", "license": "1", "title": "Wacker/Franklin Car accident", "text": "", "album_id": "72157631648117970", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8459/8035052518_40c60fb92c_o.jpg", "secret": "63c52ba93c", "media": "photo", "latitude": "0", "id": "8035052518", "tags": "broken glass lights crash accident powerlines dodge wreck durango destroyed lightpole towtruck carwreck dui scattered cpd"}, {"datetaken": "2012-09-29 01:04:43", "license": "1", "title": "Wacker/Franklin Car accident", "text": "", "album_id": "72157631648117970", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8450/8035054069_d8ce20a355_o.jpg", "secret": "f65b810720", "media": "photo", "latitude": "0", "id": "8035054069", "tags": "broken glass lights crash accident powerlines dodge wreck durango destroyed lightpole towtruck carwreck dui scattered cpd"}, {"datetaken": "2012-09-29 01:05:31", "license": "1", "title": "Wacker/Franklin Car accident", "text": "", "album_id": "72157631648117970", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8449/8035053981_11c308475e_o.jpg", "secret": "40e42d780c", "media": "photo", "latitude": "0", "id": "8035053981", "tags": "broken glass lights crash accident powerlines dodge wreck durango destroyed lightpole towtruck carwreck dui scattered cpd"}, {"datetaken": "2012-09-29 01:06:50", "license": "1", "title": "Wacker/Franklin Car accident", "text": "", "album_id": "72157631648117970", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8451/8035053885_d570171d25_o.jpg", "secret": "9f6d76868b", "media": "photo", "latitude": "0", "id": "8035053885", "tags": "broken glass lights crash accident powerlines dodge wreck durango destroyed lightpole towtruck carwreck dui scattered cpd"}, {"datetaken": "2012-09-29 01:07:20", "license": "1", "title": "Wacker/Franklin Car accident", "text": "", "album_id": "72157631648117970", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8311/8035052192_8fbfa83cb6_o.jpg", "secret": "10db25d6bd", "media": "photo", "latitude": "0", "id": "8035052192", "tags": "broken glass lights crash accident powerlines dodge wreck durango destroyed lightpole towtruck carwreck dui scattered cpd"}, {"datetaken": "2012-09-29 01:07:33", "license": "1", "title": "Wacker/Franklin Car accident", "text": "", "album_id": "72157631648117970", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8172/8035052096_2d9bd676eb_o.jpg", "secret": "e53de2c6b1", "media": "photo", "latitude": "0", "id": "8035052096", "tags": "broken glass lights crash accident powerlines dodge wreck durango destroyed lightpole towtruck carwreck dui scattered cpd"}, {"datetaken": "2012-09-29 01:07:51", "license": "1", "title": "Wacker/Franklin Car accident", "text": "", "album_id": "72157631648117970", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8453/8035052030_90fbdd1d37_o.jpg", "secret": "bd9aef1124", "media": "photo", "latitude": "0", "id": "8035052030", "tags": "broken glass lights crash accident powerlines dodge wreck durango destroyed lightpole towtruck carwreck dui scattered cpd"}, {"datetaken": "2012-09-29 01:09:59", "license": "1", "title": "Wacker/Franklin Car accident", "text": "", "album_id": "72157631648117970", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8320/8035051860_81d9e2e633_o.jpg", "secret": "b7ba8b3bbd", "media": "photo", "latitude": "0", "id": "8035051860", "tags": "broken glass lights crash accident powerlines dodge wreck durango destroyed lightpole towtruck carwreck dui scattered cpd"}, {"datetaken": "2012-09-29 01:11:29", "license": "1", "title": "Wacker/Franklin Car accident", "text": "", "album_id": "72157631648117970", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8316/8035053347_b3da4baa78_o.jpg", "secret": "851f9477a0", "media": "photo", "latitude": "0", "id": "8035053347", "tags": "broken glass lights crash accident powerlines dodge wreck durango destroyed lightpole towtruck carwreck dui scattered cpd"}, {"datetaken": "2012-09-29 01:11:39", "license": "1", "title": "Wacker/Franklin Car accident", "text": "", "album_id": "72157631648117970", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8169/8035053287_7974986966_o.jpg", "secret": "0a1447f9fb", "media": "photo", "latitude": "0", "id": "8035053287", "tags": "broken glass lights crash accident powerlines dodge wreck durango destroyed lightpole towtruck carwreck dui scattered cpd"}, {"datetaken": "2012-09-29 01:12:21", "license": "1", "title": "Wacker/Franklin Car accident", "text": "", "album_id": "72157631648117970", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8318/8035053167_2f5863ba3d_o.jpg", "secret": "12f8e9a4ba", "media": "photo", "latitude": "0", "id": "8035053167", "tags": "broken glass lights crash accident powerlines dodge wreck durango destroyed lightpole towtruck carwreck dui scattered cpd"}, {"datetaken": "2012-09-29 01:13:03", "license": "1", "title": "Wacker/Franklin Car accident", "text": "", "album_id": "72157631648117970", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8181/8035051414_b267002711_o.jpg", "secret": "eb26f6dbd3", "media": "photo", "latitude": "0", "id": "8035051414", "tags": "broken glass lights crash accident powerlines dodge wreck durango destroyed lightpole towtruck carwreck dui scattered cpd"}, {"datetaken": "2012-09-29 01:16:12", "license": "1", "title": "Wacker/Franklin Car accident", "text": "", "album_id": "72157631648117970", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8042/8035051260_63da3884ed_o.jpg", "secret": "7a22339db2", "media": "photo", "latitude": "0", "id": "8035051260", "tags": "broken glass lights crash accident powerlines dodge wreck durango destroyed lightpole towtruck carwreck dui scattered cpd"}, {"datetaken": "2012-09-29 01:19:47", "license": "1", "title": "Wacker/Franklin Car accident", "text": "", "album_id": "72157631648117970", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8321/8035051112_1caa9cc657_o.jpg", "secret": "7f61c68d18", "media": "photo", "latitude": "0", "id": "8035051112", "tags": "broken glass lights crash accident powerlines dodge wreck durango destroyed lightpole towtruck carwreck dui scattered cpd"}, {"datetaken": "2012-09-29 01:21:01", "license": "1", "title": "Wacker/Franklin Car accident", "text": "", "album_id": "72157631648117970", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8174/8035051018_c682017fc5_o.jpg", "secret": "16caf71cc7", "media": "photo", "latitude": "0", "id": "8035051018", "tags": "broken glass lights crash accident powerlines dodge wreck durango destroyed lightpole towtruck carwreck dui scattered cpd"}, {"datetaken": "2005-06-27 19:30:53", "license": "5", "title": "Photo_062405_001", "text": "", "album_id": "511252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22048029_dd26ce7641_o.jpg", "secret": "dd26ce7641", "media": "photo", "latitude": "0", "id": "22048029", "tags": "gwar car license"}, {"datetaken": "2005-06-27 19:30:55", "license": "5", "title": "Photo_062405_002", "text": "", "album_id": "511252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22048039_d8cb60caab_o.jpg", "secret": "d8cb60caab", "media": "photo", "latitude": "0", "id": "22048039", "tags": "gwar car license"}, {"datetaken": "2005-06-27 19:30:57", "license": "5", "title": "Photo_062505_001", "text": "", "album_id": "511252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/22048048_c9bf5407b0_o.jpg", "secret": "c9bf5407b0", "media": "photo", "latitude": "0", "id": "22048048", "tags": "skatepark"}, {"datetaken": "2005-06-27 19:30:59", "license": "5", "title": "Photo_062505_002", "text": "", "album_id": "511252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/22048052_6a67049a3d_o.jpg", "secret": "6a67049a3d", "media": "photo", "latitude": "0", "id": "22048052", "tags": "vinnie fountain"}, {"datetaken": "2005-06-27 19:31:01", "license": "5", "title": "Photo_062505_003", "text": "", "album_id": "511252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/22048055_d64753fe4a_o.jpg", "secret": "d64753fe4a", "media": "photo", "latitude": "0", "id": "22048055", "tags": "fountain favorites vinnie"}, {"datetaken": "2005-06-27 19:31:03", "license": "5", "title": "Photo_062505_004", "text": "", "album_id": "511252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22048068_2c04d8d01f_o.jpg", "secret": "2c04d8d01f", "media": "photo", "latitude": "0", "id": "22048068", "tags": "nick fountain"}, {"datetaken": "2005-06-27 19:31:05", "license": "5", "title": "Photo_062505_005", "text": "", "album_id": "511252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22048073_1d2a7720f2_o.jpg", "secret": "1d2a7720f2", "media": "photo", "latitude": "0", "id": "22048073", "tags": "feet water"}, {"datetaken": "2005-06-27 19:31:06", "license": "5", "title": "Photo_062505_006", "text": "", "album_id": "511252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22048086_310cb7c737_o.jpg", "secret": "310cb7c737", "media": "photo", "latitude": "0", "id": "22048086", "tags": "feet water"}, {"datetaken": "2005-06-27 19:31:07", "license": "5", "title": "Photo_062505_007", "text": "", "album_id": "511252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22048093_776f981091_o.jpg", "secret": "776f981091", "media": "photo", "latitude": "0", "id": "22048093", "tags": "feet water"}, {"datetaken": "2005-06-27 19:31:09", "license": "5", "title": "Photo_062605_001", "text": "", "album_id": "511252", "longitude": "0", "url_o": "https://farm1.staticflickr.com/17/22048097_f4db05ffdb_o.jpg", "secret": "f4db05ffdb", "media": "photo", "latitude": "0", "id": "22048097", "tags": "caraccident accident"}, {"datetaken": "2005-09-11 10:44:05", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/42350235_83e19e8e96_o.jpg", "secret": "83e19e8e96", "media": "photo", "latitude": "0", "id": "42350235", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 10:45:23", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/42350754_6af228f1fc_o.jpg", "secret": "6af228f1fc", "media": "photo", "latitude": "0", "id": "42350754", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 10:55:25", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/42351652_7107b328e0_o.jpg", "secret": "7107b328e0", "media": "photo", "latitude": "0", "id": "42351652", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 10:56:19", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/42352617_5e1db82ead_o.jpg", "secret": "5e1db82ead", "media": "photo", "latitude": "0", "id": "42352617", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 10:59:23", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/42353255_56640496fc_o.jpg", "secret": "56640496fc", "media": "photo", "latitude": "0", "id": "42353255", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 11:06:57", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/42354355_91d91abdc8_o.jpg", "secret": "91d91abdc8", "media": "photo", "latitude": "0", "id": "42354355", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 11:07:01", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/42355149_9aab6da807_o.jpg", "secret": "9aab6da807", "media": "photo", "latitude": "0", "id": "42355149", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 11:08:55", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/42355841_be8c115629_o.jpg", "secret": "be8c115629", "media": "photo", "latitude": "0", "id": "42355841", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 11:10:54", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/42356481_0edb051c70_o.jpg", "secret": "0edb051c70", "media": "photo", "latitude": "0", "id": "42356481", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 11:54:08", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/42356918_298aeb094b_o.jpg", "secret": "298aeb094b", "media": "photo", "latitude": "0", "id": "42356918", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 12:08:57", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/42357158_27bd0a3d6e_o.jpg", "secret": "27bd0a3d6e", "media": "photo", "latitude": "0", "id": "42357158", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 12:10:05", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/42357473_b60c89b0d0_o.jpg", "secret": "b60c89b0d0", "media": "photo", "latitude": "0", "id": "42357473", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 12:12:53", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/42357771_db0afd1e2a_o.jpg", "secret": "db0afd1e2a", "media": "photo", "latitude": "0", "id": "42357771", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 12:13:49", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/42358370_798cc4b71b_o.jpg", "secret": "798cc4b71b", "media": "photo", "latitude": "0", "id": "42358370", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 12:15:55", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/42358917_def4666d52_o.jpg", "secret": "def4666d52", "media": "photo", "latitude": "0", "id": "42358917", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 12:17:57", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/42359334_3a874881d6_o.jpg", "secret": "3a874881d6", "media": "photo", "latitude": "0", "id": "42359334", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 12:19:50", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/42359870_46dca72dee_o.jpg", "secret": "46dca72dee", "media": "photo", "latitude": "0", "id": "42359870", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 12:20:48", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/42360299_e917b20539_o.jpg", "secret": "e917b20539", "media": "photo", "latitude": "0", "id": "42360299", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 12:34:46", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/42360797_267bed55ef_o.jpg", "secret": "267bed55ef", "media": "photo", "latitude": "0", "id": "42360797", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 12:37:52", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/42361318_60b7b20bd9_o.jpg", "secret": "60b7b20bd9", "media": "photo", "latitude": "0", "id": "42361318", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 12:41:44", "license": "3", "title": "How not to mount the kerb", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/42361784_78866dac74_o.jpg", "secret": "78866dac74", "media": "photo", "latitude": "0", "id": "42361784", "tags": "2005 road car race topv333 crash accident rally bad racing porsche expensive kerb motorsport targa targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 12:42:48", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/42362563_6e0632ca10_o.jpg", "secret": "6e0632ca10", "media": "photo", "latitude": "0", "id": "42362563", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 12:43:05", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/42363064_ff81390e64_o.jpg", "secret": "ff81390e64", "media": "photo", "latitude": "0", "id": "42363064", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 12:45:50", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/42363393_aa27b82d7d_o.jpg", "secret": "aa27b82d7d", "media": "photo", "latitude": "0", "id": "42363393", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 12:47:16", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/42363842_5c0cd4f830_o.jpg", "secret": "5c0cd4f830", "media": "photo", "latitude": "0", "id": "42363842", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 12:51:35", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/42364404_3838b2e3bc_o.jpg", "secret": "3838b2e3bc", "media": "photo", "latitude": "0", "id": "42364404", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 12:51:38", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/42364994_61132ee543_o.jpg", "secret": "61132ee543", "media": "photo", "latitude": "0", "id": "42364994", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 14:01:34", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/42365894_5022978854_o.jpg", "secret": "5022978854", "media": "photo", "latitude": "0", "id": "42365894", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 14:05:16", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/42366673_2c4ae377e0_o.jpg", "secret": "2c4ae377e0", "media": "photo", "latitude": "0", "id": "42366673", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 14:57:53", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/42367169_cfcd1bb571_o.jpg", "secret": "cfcd1bb571", "media": "photo", "latitude": "0", "id": "42367169", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 15:01:43", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/42367460_39163e8713_o.jpg", "secret": "39163e8713", "media": "photo", "latitude": "0", "id": "42367460", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 15:03:42", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/42367852_c5a4ebb26c_o.jpg", "secret": "c5a4ebb26c", "media": "photo", "latitude": "0", "id": "42367852", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 15:08:49", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/42368933_7a3418e1a9_o.jpg", "secret": "7a3418e1a9", "media": "photo", "latitude": "0", "id": "42368933", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 15:09:35", "license": "3", "title": "", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/42370189_a10dee337e_o.jpg", "secret": "a10dee337e", "media": "photo", "latitude": "0", "id": "42370189", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2005-09-11 15:10:38", "license": "3", "title": "Winner!", "text": "", "album_id": "928240", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/42713090_f0d0533141_o.jpg", "secret": "f0d0533141", "media": "photo", "latitude": "0", "id": "42713090", "tags": "targa rally car road race racing 2005 motorsport targarally targawest canon28135mmf3556isusm"}, {"datetaken": "2003-01-02 16:13:41", "license": "5", "title": "My pot of tea on the train", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/41862614_ab7be13b37_o.jpg", "secret": "ab7be13b37", "media": "photo", "latitude": "0", "id": "41862614", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-02 16:49:56", "license": "5", "title": "Shenzhen seen from the Hong Kong- Guangzhou train", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/41862621_5ebe905842_o.jpg", "secret": "5ebe905842", "media": "photo", "latitude": "0", "id": "41862621", "tags": "train guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-02 16:50:13", "license": "5", "title": "Shenzen seen from the Hong Kong- Guangzhou train", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/41862628_b098a188d9_o.jpg", "secret": "b098a188d9", "media": "photo", "latitude": "0", "id": "41862628", "tags": "karaoke shenzhen statue liberty guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-02 17:00:13", "license": "5", "title": "Air freshener on the Hong Kong- Guangzhou train", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/41862638_2acd2f7791_o.jpg", "secret": "2acd2f7791", "media": "photo", "latitude": "0", "id": "41862638", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-02 20:12:59", "license": "5", "title": "Please mind the slippy floor!", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/41862644_164b48e22b_o.jpg", "secret": "164b48e22b", "media": "photo", "latitude": "0", "id": "41862644", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-02 20:35:13", "license": "5", "title": "Chinese for foreigners", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/41862658_114ad5170f_o.jpg", "secret": "114ad5170f", "media": "photo", "latitude": "0", "id": "41862658", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-02 21:07:37", "license": "5", "title": "Public Telephone", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/41862669_da4d66a526_o.jpg", "secret": "da4d66a526", "media": "photo", "latitude": "0", "id": "41862669", "tags": "phone booth guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-02 21:09:40", "license": "5", "title": "Street food on Zhan Qianlu", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/41862679_0112ab9fdc_o.jpg", "secret": "0112ab9fdc", "media": "photo", "latitude": "0", "id": "41862679", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-02 21:19:10", "license": "5", "title": "Nice Toilet", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/41862695_c571a2d7b8_o.jpg", "secret": "c571a2d7b8", "media": "photo", "latitude": "0", "id": "41862695", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-02 21:19:33", "license": "5", "title": "Toilet rules", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/41862705_571ebf5d00_o.jpg", "secret": "571ebf5d00", "media": "photo", "latitude": "0", "id": "41862705", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-02 21:21:49", "license": "5", "title": "Bonsai trees in Liu Hua park", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/41862714_0d3cd520e9_o.jpg", "secret": "0d3cd520e9", "media": "photo", "latitude": "0", "id": "41862714", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-02 21:39:00", "license": "5", "title": "Playing cards in Liu Hua Park", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/41862722_bd70be3351_o.jpg", "secret": "bd70be3351", "media": "photo", "latitude": "0", "id": "41862722", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-02 21:42:26", "license": "5", "title": "The pond in Liu Hua Park", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/41862735_14595a925b_o.jpg", "secret": "14595a925b", "media": "photo", "latitude": "0", "id": "41862735", "tags": "boat guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-02 22:09:08", "license": "5", "title": "Yves Saint Laurent?", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/41862746_0112343a4f_o.jpg", "secret": "0112343a4f", "media": "photo", "latitude": "0", "id": "41862746", "tags": "guangzhou china saint engrish canton laurent guangdongprovince yve"}, {"datetaken": "2003-01-02 22:11:11", "license": "5", "title": "One man and many showroom dummies", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/41862753_3696b91a46_o.jpg", "secret": "3696b91a46", "media": "photo", "latitude": "0", "id": "41862753", "tags": "model dummy guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-02 22:14:45", "license": "5", "title": "Street vendors on Zhan Qianlu", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/41862780_db97b51194_o.jpg", "secret": "db97b51194", "media": "photo", "latitude": "0", "id": "41862780", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-02 22:18:56", "license": "5", "title": "Rush hour at the guangzhou West Railway station", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/41862798_aefa04d103_o.jpg", "secret": "aefa04d103", "media": "photo", "latitude": "0", "id": "41862798", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-02 22:35:21", "license": "5", "title": "Wangjiao Horological Market", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/41862812_518e32a2f7_o.jpg", "secret": "518e32a2f7", "media": "photo", "latitude": "0", "id": "41862812", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 15:56:01", "license": "5", "title": "Unloading clothes", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/41862829_334ffda995_o.jpg", "secret": "334ffda995", "media": "photo", "latitude": "0", "id": "41862829", "tags": "textiles wholesale truck guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 16:15:23", "license": "5", "title": "A sign inside the Guanghzou metro", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/41862834_730de61acd_o.jpg", "secret": "730de61acd", "media": "photo", "latitude": "0", "id": "41862834", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 16:45:48", "license": "5", "title": "Market in Guangzhou", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/41862843_4a68113cdd_o.jpg", "secret": "4a68113cdd", "media": "photo", "latitude": "0", "id": "41862843", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 16:46:48", "license": "5", "title": "Dead fish", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/41862861_86700674dd_o.jpg", "secret": "86700674dd", "media": "photo", "latitude": "0", "id": "41862861", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 16:47:41", "license": "5", "title": "The local police", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/41862874_c4abb89c8b_o.jpg", "secret": "c4abb89c8b", "media": "photo", "latitude": "0", "id": "41862874", "tags": "policemen guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 16:49:43", "license": "5", "title": "Tempting cakes", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/41862893_bd8a5f5277_o.jpg", "secret": "bd8a5f5277", "media": "photo", "latitude": "0", "id": "41862893", "tags": "cake tart guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 17:09:02", "license": "5", "title": "Rusty signs", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/41862908_2912d09e94_o.jpg", "secret": "2912d09e94", "media": "photo", "latitude": "0", "id": "41862908", "tags": "door rust chinese characters guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 17:12:55", "license": "5", "title": "Cricket for sale", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/41862919_b250f50f4f_o.jpg", "secret": "b250f50f4f", "media": "photo", "latitude": "0", "id": "41862919", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 17:26:39", "license": "5", "title": "Asleep on the job", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/41863145_4ddc30386a_o.jpg", "secret": "4ddc30386a", "media": "photo", "latitude": "0", "id": "41863145", "tags": "broom girls chinese guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 17:31:21", "license": "5", "title": "Camera shy", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/41862938_0a1561a029_o.jpg", "secret": "0a1561a029", "media": "photo", "latitude": "0", "id": "41862938", "tags": "girl fake flowers plastic haizhu market guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 17:34:59", "license": "5", "title": "E.T. Space", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/41862955_2edf4b4186_o.jpg", "secret": "2edf4b4186", "media": "photo", "latitude": "0", "id": "41862955", "tags": "haizhu wholesale market guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 17:36:27", "license": "5", "title": "Red decorations", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/41862971_dcdf6cec32_o.jpg", "secret": "dcdf6cec32", "media": "photo", "latitude": "0", "id": "41862971", "tags": "haizhu market guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 17:39:24", "license": "5", "title": "Toy tree", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/41862984_adf7b1bacc_o.jpg", "secret": "adf7b1bacc", "media": "photo", "latitude": "0", "id": "41862984", "tags": "haizhu market guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 17:47:18", "license": "5", "title": "Garfields ready to be shipped", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/41862988_847d24ca67_o.jpg", "secret": "847d24ca67", "media": "photo", "latitude": "0", "id": "41862988", "tags": "haizhu market garfield toy guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 19:01:46", "license": "5", "title": "Classic Communist sculpture", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/41863003_bdd5512a32_o.jpg", "secret": "bdd5512a32", "media": "photo", "latitude": "0", "id": "41863003", "tags": "statue worker guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 19:09:13", "license": "5", "title": "Happy Chinese propaganda", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/41863007_d74763a4e1_o.jpg", "secret": "d74763a4e1", "media": "photo", "latitude": "0", "id": "41863007", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 19:17:33", "license": "5", "title": "On the bank of the Pearl River", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/41863012_a17ce02153_o.jpg", "secret": "a17ce02153", "media": "photo", "latitude": "0", "id": "41863012", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 19:18:27", "license": "5", "title": "Guangzhou skyline", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/41863016_9b0a6c9721_o.jpg", "secret": "9b0a6c9721", "media": "photo", "latitude": "0", "id": "41863016", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 19:28:37", "license": "5", "title": "On the bank of the Pearl River", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/41863021_c90bbffe98_o.jpg", "secret": "c90bbffe98", "media": "photo", "latitude": "0", "id": "41863021", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 19:38:03", "license": "5", "title": "Watch out, little red man!", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/41863027_c0773a32af_o.jpg", "secret": "c0773a32af", "media": "photo", "latitude": "0", "id": "41863027", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 19:51:19", "license": "5", "title": "Spices", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/41863047_ab50bb91ac_o.jpg", "secret": "ab50bb91ac", "media": "photo", "latitude": "0", "id": "41863047", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 19:54:15", "license": "5", "title": "Frogs for sale at the Qing Ping market", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/41863068_efbc9f2e0b_o.jpg", "secret": "efbc9f2e0b", "media": "photo", "latitude": "0", "id": "41863068", "tags": "frog guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 19:55:42", "license": "5", "title": "Graphic warning 2", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/41863077_d63c33bda2_o.jpg", "secret": "d63c33bda2", "media": "photo", "latitude": "0", "id": "41863077", "tags": "blood sign truck motorcycle accident guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 19:55:54", "license": "5", "title": "Graphic warning 1", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/41863087_85432e2c46_o.jpg", "secret": "85432e2c46", "media": "photo", "latitude": "0", "id": "41863087", "tags": "trcuk bicycle chinese sign car accident guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 19:56:51", "license": "5", "title": "Poor crated turtles", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/41863099_beda5ad4e8_o.jpg", "secret": "beda5ad4e8", "media": "photo", "latitude": "0", "id": "41863099", "tags": "qing ping market turtle guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 19:58:45", "license": "5", "title": "Asleep on the job 2", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/41863115_fac31bffe0_o.jpg", "secret": "fac31bffe0", "media": "photo", "latitude": "0", "id": "41863115", "tags": "qing ping market scorpion guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-03 20:07:43", "license": "5", "title": "Danger lurking everywhere", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/41863130_bb11b93d1b_o.jpg", "secret": "bb11b93d1b", "media": "photo", "latitude": "0", "id": "41863130", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2003-01-04 02:22:34", "license": "5", "title": "The Overseas Chinese hotel in Guangzhou", "text": "", "album_id": "918138", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/41862610_242d091826_o.jpg", "secret": "242d091826", "media": "photo", "latitude": "0", "id": "41862610", "tags": "guangzhou canton china guangdongprovince"}, {"datetaken": "2006-08-13 15:25:39", "license": "1", "title": "F1000001.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/214381352_860b583eae_o.jpg", "secret": "860b583eae", "media": "photo", "latitude": "0", "id": "214381352", "tags": "jason mike me bicycle team awesome danielle peter touring msbiketour"}, {"datetaken": "2006-08-13 15:25:42", "license": "1", "title": "F1000002.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/214381566_d962952a83_o.jpg", "secret": "d962952a83", "media": "photo", "latitude": "0", "id": "214381566", "tags": "touring msbiketour"}, {"datetaken": "2006-08-13 15:25:43", "license": "1", "title": "F1000003.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/214381810_e8e4484c9a_o.jpg", "secret": "e8e4484c9a", "media": "photo", "latitude": "0", "id": "214381810", "tags": "bicycle chopper ike touring msbiketour"}, {"datetaken": "2006-08-13 15:25:46", "license": "1", "title": "F1000004.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/214381990_d14c2671ae_o.jpg", "secret": "d14c2671ae", "media": "photo", "latitude": "0", "id": "214381990", "tags": "road bicycle touring msbiketour barhaven"}, {"datetaken": "2006-08-13 15:25:47", "license": "1", "title": "F1000005.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/85/214382193_70b0f60a7f_o.jpg", "secret": "70b0f60a7f", "media": "photo", "latitude": "0", "id": "214382193", "tags": "bicycle fence danielle touring msbiketour"}, {"datetaken": "2006-08-13 15:25:49", "license": "1", "title": "F1000006.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/214382425_7e86967b5a_o.jpg", "secret": "7e86967b5a", "media": "photo", "latitude": "0", "id": "214382425", "tags": "road touring msbiketour"}, {"datetaken": "2006-08-13 15:25:54", "license": "1", "title": "F1000007.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/214382799_a4a6ebc96d_o.jpg", "secret": "a4a6ebc96d", "media": "photo", "latitude": "0", "id": "214382799", "tags": "cow touring msbiketour"}, {"datetaken": "2006-08-13 15:25:55", "license": "1", "title": "F1000008.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/82/214383020_12f9f35546_o.jpg", "secret": "12f9f35546", "media": "photo", "latitude": "0", "id": "214383020", "tags": "corn touring msbiketour"}, {"datetaken": "2006-08-13 15:25:57", "license": "1", "title": "F1000009.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/214383194_15042ffb5a_o.jpg", "secret": "15042ffb5a", "media": "photo", "latitude": "0", "id": "214383194", "tags": "bicycle touring msbiketour"}, {"datetaken": "2006-08-13 15:25:58", "license": "1", "title": "F1000010.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/214383349_3141ae6e9a_o.jpg", "secret": "3141ae6e9a", "media": "photo", "latitude": "0", "id": "214383349", "tags": "bicycle recumbent touring msbiketour"}, {"datetaken": "2006-08-13 15:25:59", "license": "1", "title": "F1000011.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/214383522_2fd164baa5_o.jpg", "secret": "2fd164baa5", "media": "photo", "latitude": "0", "id": "214383522", "tags": "bicycle touring msbiketour"}, {"datetaken": "2006-08-13 15:26:00", "license": "1", "title": "F1000012.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/214383752_9187699fcc_o.jpg", "secret": "9187699fcc", "media": "photo", "latitude": "0", "id": "214383752", "tags": "fudge touring msbiketour"}, {"datetaken": "2006-08-13 15:26:06", "license": "1", "title": "F1000013.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/214383922_0400523e91_o.jpg", "secret": "0400523e91", "media": "photo", "latitude": "0", "id": "214383922", "tags": "bicycle chopper danielle ike touring msbiketour"}, {"datetaken": "2006-08-13 15:26:07", "license": "1", "title": "F1000014.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/214384132_9f11e142f8_o.jpg", "secret": "9f11e142f8", "media": "photo", "latitude": "0", "id": "214384132", "tags": "tree garbagecan touring msbiketour"}, {"datetaken": "2006-08-13 15:26:10", "license": "1", "title": "F1000015.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/214384481_de5a48a39c_o.jpg", "secret": "de5a48a39c", "media": "photo", "latitude": "0", "id": "214384481", "tags": "camping jason peter ike min touring luella msbiketour"}, {"datetaken": "2006-08-13 15:26:11", "license": "1", "title": "F1000016.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/80/214384744_76831d5f3d_o.jpg", "secret": "76831d5f3d", "media": "photo", "latitude": "0", "id": "214384744", "tags": "me bicycle danielle touring msbiketour"}, {"datetaken": "2006-08-13 15:26:12", "license": "1", "title": "F1000017.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/214385047_b22c80ff3b_o.jpg", "secret": "b22c80ff3b", "media": "photo", "latitude": "0", "id": "214385047", "tags": "jason bicycle dick danielle touring msbiketour"}, {"datetaken": "2006-08-13 15:26:13", "license": "1", "title": "F1000018.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/214385225_c659e6c4c6_o.jpg", "secret": "c659e6c4c6", "media": "photo", "latitude": "0", "id": "214385225", "tags": "bicycle peter touring msbiketour"}, {"datetaken": "2006-08-13 15:26:19", "license": "1", "title": "F1000019.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/214385418_6f3804efb0_o.jpg", "secret": "6f3804efb0", "media": "photo", "latitude": "0", "id": "214385418", "tags": "bicycle peter touring msbiketour"}, {"datetaken": "2006-08-13 15:26:21", "license": "1", "title": "F1000020.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/214385700_51fec4d9da_o.jpg", "secret": "51fec4d9da", "media": "photo", "latitude": "0", "id": "214385700", "tags": "tree touring msbiketour"}, {"datetaken": "2006-08-13 15:26:22", "license": "1", "title": "F1000021.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/214385869_d1b8a018b4_o.jpg", "secret": "d1b8a018b4", "media": "photo", "latitude": "0", "id": "214385869", "tags": "bicycle touring msbiketour"}, {"datetaken": "2006-08-13 15:26:23", "license": "1", "title": "F1000022.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/94/214386071_026b96e7e7_o.jpg", "secret": "026b96e7e7", "media": "photo", "latitude": "0", "id": "214386071", "tags": "bicycle touring msbiketour"}, {"datetaken": "2006-08-13 15:26:25", "license": "1", "title": "F1000023.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/214386233_e1d57ef829_o.jpg", "secret": "e1d57ef829", "media": "photo", "latitude": "0", "id": "214386233", "tags": "bicycle touring msbiketour"}, {"datetaken": "2006-08-13 15:26:26", "license": "1", "title": "F1000024.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/214386452_45ee00f03b_o.jpg", "secret": "45ee00f03b", "media": "photo", "latitude": "0", "id": "214386452", "tags": "car accident touring msbiketour"}, {"datetaken": "2006-08-13 15:26:27", "license": "1", "title": "F1000025.JPG", "text": "", "album_id": "72157594235652647", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/214386674_c57f26264d_o.jpg", "secret": "c57f26264d", "media": "photo", "latitude": "0", "id": "214386674", "tags": "jason me team awesome dick danielle peter ike thumbsup touring msbiketour"}, {"datetaken": "2006-08-19 16:25:48", "license": "6", "title": "IMG_1242.JPG", "text": "", "album_id": "72157594244928126", "longitude": "-90.375874", "url_o": "https://farm1.staticflickr.com/78/220539591_15a2bc7e50_o.jpg", "secret": "15a2bc7e50", "media": "photo", "latitude": "38.691723", "id": "220539591", "tags": "car wreck lancer mitsubishi"}, {"datetaken": "2006-08-19 16:25:56", "license": "6", "title": "IMG_1243.JPG", "text": "", "album_id": "72157594244928126", "longitude": "-90.375874", "url_o": "https://farm1.staticflickr.com/89/220540020_5cb6d6d5a3_o.jpg", "secret": "5cb6d6d5a3", "media": "photo", "latitude": "38.691723", "id": "220540020", "tags": "car wreck lancer mitsubishi"}, {"datetaken": "2006-08-19 16:26:03", "license": "6", "title": "IMG_1244.JPG", "text": "", "album_id": "72157594244928126", "longitude": "-90.375874", "url_o": "https://farm1.staticflickr.com/59/220540481_d68d56c014_o.jpg", "secret": "d68d56c014", "media": "photo", "latitude": "38.691723", "id": "220540481", "tags": "car wreck lancer mitsubishi"}, {"datetaken": "2006-08-19 16:26:11", "license": "6", "title": "IMG_1245.JPG", "text": "", "album_id": "72157594244928126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/87/220540927_89f3753443_o.jpg", "secret": "89f3753443", "media": "photo", "latitude": "0", "id": "220540927", "tags": "car wreck lancer mitsubishi"}, {"datetaken": "2006-08-19 16:26:24", "license": "6", "title": "IMG_1246.JPG", "text": "", "album_id": "72157594244928126", "longitude": "-90.375874", "url_o": "https://farm1.staticflickr.com/71/220541359_f6bb67361a_o.jpg", "secret": "f6bb67361a", "media": "photo", "latitude": "38.691723", "id": "220541359", "tags": "car wreck lancer mitsubishi"}, {"datetaken": "2006-08-19 16:26:32", "license": "6", "title": "IMG_1247.JPG", "text": "", "album_id": "72157594244928126", "longitude": "-90.375874", "url_o": "https://farm1.staticflickr.com/97/220541978_9ac44e7b66_o.jpg", "secret": "9ac44e7b66", "media": "photo", "latitude": "38.691723", "id": "220541978", "tags": "car wreck lancer mitsubishi"}, {"datetaken": "2006-08-19 16:47:38", "license": "6", "title": "IMG_1248.JPG", "text": "", "album_id": "72157594244928126", "longitude": "-90.375874", "url_o": "https://farm1.staticflickr.com/74/220542542_8199375e59_o.jpg", "secret": "8199375e59", "media": "photo", "latitude": "38.691723", "id": "220542542", "tags": "car wreck lancer mitsubishi"}, {"datetaken": "2006-08-19 16:47:47", "license": "6", "title": "IMG_1249.JPG", "text": "", "album_id": "72157594244928126", "longitude": "-90.375874", "url_o": "https://farm1.staticflickr.com/94/220543195_e7a9c92355_o.jpg", "secret": "e7a9c92355", "media": "photo", "latitude": "38.691723", "id": "220543195", "tags": "car wreck lancer mitsubishi"}, {"datetaken": "2006-08-19 16:48:01", "license": "6", "title": "IMG_1250.JPG", "text": "", "album_id": "72157594244928126", "longitude": "-90.375874", "url_o": "https://farm1.staticflickr.com/90/220543597_968c750ed9_o.jpg", "secret": "968c750ed9", "media": "photo", "latitude": "38.691723", "id": "220543597", "tags": "car wreck lancer mitsubishi"}, {"datetaken": "2006-08-19 16:48:37", "license": "6", "title": "IMG_1251.JPG", "text": "", "album_id": "72157594244928126", "longitude": "-90.375874", "url_o": "https://farm1.staticflickr.com/92/220544199_71fc2e62d3_o.jpg", "secret": "71fc2e62d3", "media": "photo", "latitude": "38.691723", "id": "220544199", "tags": "car wreck lancer mitsubishi"}, {"datetaken": "2006-08-21 14:40:11", "license": "6", "title": "Wreck 1", "text": "", "album_id": "72157594244928126", "longitude": "-90.380659", "url_o": "https://farm1.staticflickr.com/59/222245609_9b0b38d366_o.jpg", "secret": "9b0b38d366", "media": "photo", "latitude": "38.690902", "id": "222245609", "tags": "car saint louis missouri van wreck lancer mitsubishi bigbadaboom"}, {"datetaken": "2006-08-21 14:41:00", "license": "6", "title": "wreck 2", "text": "", "album_id": "72157594244928126", "longitude": "-90.380659", "url_o": "https://farm1.staticflickr.com/65/222245610_a198a15bcc_o.jpg", "secret": "a198a15bcc", "media": "photo", "latitude": "38.690902", "id": "222245610", "tags": "car saint louis missouri van wreck lancer mitsubishi bigbadaboom"}, {"datetaken": "2006-08-21 14:41:34", "license": "6", "title": "Wreck 3", "text": "", "album_id": "72157594244928126", "longitude": "-90.380659", "url_o": "https://farm1.staticflickr.com/86/222245611_8f32531b4d_o.jpg", "secret": "8f32531b4d", "media": "photo", "latitude": "38.690902", "id": "222245611", "tags": "car saint louis missouri van wreck lancer mitsubishi bigbadaboom"}, {"datetaken": "2006-12-26 20:58:20", "license": "1", "title": "Joey's Accident December 2006 001", "text": "", "album_id": "72157594449129340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/339130150_1b218baca3_o.jpg", "secret": "1b218baca3", "media": "photo", "latitude": "0", "id": "339130150", "tags": "car december accident 2006 dodge 1998 stratus"}, {"datetaken": "2006-12-26 20:58:36", "license": "1", "title": "Joey's Accident December 2006 002", "text": "", "album_id": "72157594449129340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/339130514_a6b567b9f2_o.jpg", "secret": "a6b567b9f2", "media": "photo", "latitude": "0", "id": "339130514", "tags": "car december accident 2006 dodge 1998 stratus"}, {"datetaken": "2006-12-26 20:58:51", "license": "1", "title": "Joey's Accident December 2006 003", "text": "", "album_id": "72157594449129340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/339131007_69a3b4f75e_o.jpg", "secret": "69a3b4f75e", "media": "photo", "latitude": "0", "id": "339131007", "tags": "car december accident 2006 dodge 1998 stratus"}, {"datetaken": "2006-12-26 20:59:09", "license": "1", "title": "Joey's Accident December 2006 004", "text": "", "album_id": "72157594449129340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/339131463_3973f32951_o.jpg", "secret": "3973f32951", "media": "photo", "latitude": "0", "id": "339131463", "tags": "car december accident 2006 dodge 1998 stratus"}, {"datetaken": "2006-12-26 20:59:27", "license": "1", "title": "Joey's Accident December 2006 005", "text": "", "album_id": "72157594449129340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/339131784_4a6fb22c98_o.jpg", "secret": "4a6fb22c98", "media": "photo", "latitude": "0", "id": "339131784", "tags": "car december accident 2006 dodge 1998 stratus"}, {"datetaken": "2006-12-26 20:59:41", "license": "1", "title": "Joey's Accident December 2006 006", "text": "", "album_id": "72157594449129340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/339132127_cba7ab3ed1_o.jpg", "secret": "cba7ab3ed1", "media": "photo", "latitude": "0", "id": "339132127", "tags": "car december accident 2006 dodge 1998 stratus"}, {"datetaken": "2006-12-26 20:59:55", "license": "1", "title": "Joey's Accident December 2006 007", "text": "", "album_id": "72157594449129340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/339132516_f304fa3f0a_o.jpg", "secret": "f304fa3f0a", "media": "photo", "latitude": "0", "id": "339132516", "tags": "car december accident 2006 dodge 1998 stratus"}, {"datetaken": "2006-12-26 21:00:07", "license": "1", "title": "Joey's Accident December 2006 008", "text": "", "album_id": "72157594449129340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/339132832_575ff73dca_o.jpg", "secret": "575ff73dca", "media": "photo", "latitude": "0", "id": "339132832", "tags": "car december accident 2006 dodge 1998 stratus"}, {"datetaken": "2006-12-26 21:00:42", "license": "1", "title": "Joey's Accident December 2006 009", "text": "", "album_id": "72157594449129340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/339133184_1b39e3c33d_o.jpg", "secret": "1b39e3c33d", "media": "photo", "latitude": "0", "id": "339133184", "tags": "car december accident 2006 dodge 1998 stratus"}, {"datetaken": "2006-12-26 21:00:54", "license": "1", "title": "Joey's Accident December 2006 010", "text": "", "album_id": "72157594449129340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/339133464_94ba0b447f_o.jpg", "secret": "94ba0b447f", "media": "photo", "latitude": "0", "id": "339133464", "tags": "car december accident 2006 dodge 1998 stratus"}, {"datetaken": "2006-12-26 21:01:34", "license": "1", "title": "Joey's Accident December 2006 012", "text": "", "album_id": "72157594449129340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/339134006_65ddfaaacb_o.jpg", "secret": "65ddfaaacb", "media": "photo", "latitude": "0", "id": "339134006", "tags": "car december accident 2006 dodge 1998 stratus"}, {"datetaken": "2006-12-26 21:01:45", "license": "1", "title": "Joey's Accident December 2006 013", "text": "", "album_id": "72157594449129340", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/339134379_789592621e_o.jpg", "secret": "789592621e", "media": "photo", "latitude": "0", "id": "339134379", "tags": "car december accident 2006 dodge 1998 stratus"}, {"datetaken": "2007-03-24 11:59:40", "license": "2", "title": "Making Breakfast", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/432966805_5e2d944c3c_o.jpg", "secret": "2453d79e73", "media": "photo", "latitude": "0", "id": "432966805", "tags": "breakfast eggs waffles"}, {"datetaken": "2007-03-24 12:00:00", "license": "2", "title": "Wallpaper in Doug's Kitchen", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/432964214_b02471776e_o.jpg", "secret": "a1dd99e110", "media": "photo", "latitude": "0", "id": "432964214", "tags": "wallpaper kitchen"}, {"datetaken": "2007-03-24 12:03:49", "license": "2", "title": "Breakfast Refuse", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/432964364_ed3cc1962f_o.jpg", "secret": "5f0d0f119a", "media": "photo", "latitude": "0", "id": "432964364", "tags": "sink waffles eggshells"}, {"datetaken": "2007-03-24 12:05:32", "license": "2", "title": "Kitty on the move", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/432967217_21f80b1bc7_o.jpg", "secret": "67cbf33d6c", "media": "photo", "latitude": "0", "id": "432967217", "tags": "couch cata"}, {"datetaken": "2007-03-24 12:07:19", "license": "2", "title": "Milo hears something", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/432964576_8c32bc84cb_o.jpg", "secret": "ca3dbeffea", "media": "photo", "latitude": "0", "id": "432964576", "tags": "cat kitty"}, {"datetaken": "2007-03-24 12:08:32", "license": "2", "title": "Wiffles?", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/432964718_862a158024_o.jpg", "secret": "ff955f30c4", "media": "photo", "latitude": "0", "id": "432964718", "tags": "kids magazine selling slaves subscription"}, {"datetaken": "2007-03-24 12:12:19", "license": "2", "title": "Waffles and syrup", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/432964818_f4fa0edd1a_o.jpg", "secret": "fd28849b07", "media": "photo", "latitude": "0", "id": "432964818", "tags": "breakfast maple syrup waffles"}, {"datetaken": "2007-03-24 12:19:03", "license": "2", "title": "Petit Cookies", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/432964948_aff31731ed_o.jpg", "secret": "b6133a06b2", "media": "photo", "latitude": "0", "id": "432964948", "tags": "spain tea biscuits petit"}, {"datetaken": "2007-03-24 12:20:39", "license": "2", "title": "Doug eating breakfast", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/432967889_1aa29ac825_o.jpg", "secret": "dae6e4ca5e", "media": "photo", "latitude": "0", "id": "432967889", "tags": "eggs waffles"}, {"datetaken": "2007-03-24 12:47:52", "license": "2", "title": "Garage Stuff", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/432968075_af34b6a696_o.jpg", "secret": "cdd5728d78", "media": "photo", "latitude": "0", "id": "432968075", "tags": "garage cleaners stuff oil"}, {"datetaken": "2007-03-24 12:48:04", "license": "2", "title": "Don't Walk / Walk", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/432968233_484a0a67b5_o.jpg", "secret": "dda5822f15", "media": "photo", "latitude": "0", "id": "432968233", "tags": "traffic signal"}, {"datetaken": "2007-03-24 12:48:20", "license": "2", "title": "Tunes for working on the bikes", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/432965632_c5dc0974c8_o.jpg", "secret": "4c3255f9b8", "media": "photo", "latitude": "0", "id": "432965632", "tags": "radio ipod sony tunes garag"}, {"datetaken": "2007-03-24 12:49:07", "license": "2", "title": "Bells", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/432965796_fc1e740df9_o.jpg", "secret": "8256288c93", "media": "photo", "latitude": "0", "id": "432965796", "tags": "bells phone"}, {"datetaken": "2007-03-24 12:53:16", "license": "2", "title": "About to change the oil", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/432968761_38f87b4a78_o.jpg", "secret": "dbd2be8a34", "media": "photo", "latitude": "0", "id": "432968761", "tags": "honda cb1000 rotellat"}, {"datetaken": "2007-03-24 14:19:33", "license": "2", "title": "A little steam", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/432966132_835a6d9454_o.jpg", "secret": "258373cef5", "media": "photo", "latitude": "0", "id": "432966132", "tags": "honda cb1000"}, {"datetaken": "2007-03-24 14:21:44", "license": "2", "title": "Dual Discs", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/432969077_6b7d15d8d8_o.jpg", "secret": "bf0468dc8e", "media": "photo", "latitude": "0", "id": "432969077", "tags": "honda cb1000"}, {"datetaken": "2007-03-24 14:22:54", "license": "2", "title": "Gas Tank", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/432969189_0c552a702e_o.jpg", "secret": "f8af607695", "media": "photo", "latitude": "0", "id": "432969189", "tags": "honda tank gas cb1000"}, {"datetaken": "2007-03-24 14:26:14", "license": "2", "title": "Finished washing my bike", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/432969405_7d66732ad2_o.jpg", "secret": "bdecce64c2", "media": "photo", "latitude": "0", "id": "432969405", "tags": "bucket hose washing"}, {"datetaken": "2007-03-24 14:27:53", "license": "2", "title": "Doug changing his oil", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/433191069_7ee20f37d5_o.jpg", "secret": "d817d76432", "media": "photo", "latitude": "0", "id": "433191069", "tags": "honda cb750"}, {"datetaken": "2007-03-24 14:30:42", "license": "2", "title": "Exhaust side of my bike", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/432969659_cc7ec1ef0d_o.jpg", "secret": "e8aa2b3ee0", "media": "photo", "latitude": "0", "id": "432969659", "tags": "honda cb1000"}, {"datetaken": "2007-03-24 14:31:11", "license": "2", "title": "Tilt over tail", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/167/432969837_6570f74af7_o.jpg", "secret": "ce281aa50a", "media": "photo", "latitude": "0", "id": "432969837", "tags": "honda cb1000"}, {"datetaken": "2007-03-24 14:36:27", "license": "2", "title": "The business side of my bike", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/432967348_81b50ed433_o.jpg", "secret": "7948b30050", "media": "photo", "latitude": "0", "id": "432967348", "tags": "honda cb1000"}, {"datetaken": "2007-03-24 14:36:38", "license": "2", "title": "Chain Drive", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/433188574_764b555287_o.jpg", "secret": "4ee2e899bb", "media": "photo", "latitude": "0", "id": "433188574", "tags": "honda chain cb1000"}, {"datetaken": "2007-03-24 14:36:42", "license": "2", "title": "CB1000 Engine", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/433188718_398484b065_o.jpg", "secret": "76444bf205", "media": "photo", "latitude": "0", "id": "433188718", "tags": "honda engine cb1000"}, {"datetaken": "2007-03-24 14:37:29", "license": "2", "title": "Day 61", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/433188388_a0f576e507_o.jpg", "secret": "d38ef9e04e", "media": "photo", "latitude": "0", "id": "433188388", "tags": "honda mirror cb1000 365days"}, {"datetaken": "2007-03-24 14:53:57", "license": "2", "title": "Soap", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/432967842_ee067babb0_o.jpg", "secret": "df0839a5f1", "media": "photo", "latitude": "0", "id": "432967842", "tags": "soap cement"}, {"datetaken": "2007-03-24 14:54:57", "license": "2", "title": "Purple Flowers", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/432970725_903d55a467_o.jpg", "secret": "c68ce794ba", "media": "photo", "latitude": "0", "id": "432970725", "tags": "flowers purple"}, {"datetaken": "2007-03-24 15:30:01", "license": "2", "title": "Doug on a test drive", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/432968400_8405520d67_o.jpg", "secret": "e3eecdf83a", "media": "photo", "latitude": "0", "id": "432968400", "tags": "honda cb750 nighthawk750"}, {"datetaken": "2007-03-24 15:30:38", "license": "2", "title": "Doug on his Nighthawk", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/432971221_275015836a_o.jpg", "secret": "533425b5f9", "media": "photo", "latitude": "0", "id": "432971221", "tags": "honda cb750"}, {"datetaken": "2007-03-24 16:28:54", "license": "2", "title": "80's Lights", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/432968638_dd3cdeb921_o.jpg", "secret": "dd088da4f8", "media": "photo", "latitude": "0", "id": "432968638", "tags": "gold lamps"}, {"datetaken": "2007-03-24 16:42:22", "license": "2", "title": "Stopped up drains", "text": "", "album_id": "72157600025352333", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/432968900_ddaaaaf678_o.jpg", "secret": "f033d411ca", "media": "photo", "latitude": "0", "id": "432968900", "tags": "plumbing drain"}, {"datetaken": "2007-06-03 10:18:05", "license": "3", "title": "Flowers at Central Park", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1229/531089971_ad4b7f2acd_o.jpg", "secret": "024bdb99ea", "media": "photo", "latitude": "0", "id": "531089971", "tags": "centralpark"}, {"datetaken": "2007-06-03 11:23:57", "license": "3", "title": "Sensei being Interviewed", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1121/531090167_ad17bdc612_o.jpg", "secret": "d4034d07f3", "media": "photo", "latitude": "0", "id": "531090167", "tags": "centralpark karate japanday"}, {"datetaken": "2007-06-03 11:25:13", "license": "3", "title": "Everyone Line Up!", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1113/531090365_2201b77328_o.jpg", "secret": "93b0a48ed4", "media": "photo", "latitude": "0", "id": "531090365", "tags": "centralpark karate japanday"}, {"datetaken": "2007-06-03 11:30:50", "license": "3", "title": "Kick!", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1267/531090457_f575ac3b27_o.jpg", "secret": "486abe9377", "media": "photo", "latitude": "0", "id": "531090457", "tags": "centralpark karate japanday"}, {"datetaken": "2007-06-03 11:31:10", "license": "3", "title": "Ready...", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1113/531090591_d9a3e4a326_o.jpg", "secret": "3602ab9cc7", "media": "photo", "latitude": "0", "id": "531090591", "tags": "centralpark karate japanday"}, {"datetaken": "2007-06-03 11:41:25", "license": "3", "title": "Breaking the Board with a Kick", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1253/530983724_7a9bbd0381_o.jpg", "secret": "8159ca5e4d", "media": "photo", "latitude": "0", "id": "530983724", "tags": "centralpark karate japanday"}, {"datetaken": "2007-06-03 11:47:00", "license": "3", "title": "Breaking the Board with a Kick", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1112/530983870_2a536ac009_o.jpg", "secret": "b05701ae5d", "media": "photo", "latitude": "0", "id": "530983870", "tags": "centralpark karate japanday"}, {"datetaken": "2007-06-03 11:48:52", "license": "3", "title": "Wow, She's Strong!", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1259/531090939_1f40064c97_o.jpg", "secret": "58a5cf926c", "media": "photo", "latitude": "0", "id": "531090939", "tags": "centralpark karate japanday"}, {"datetaken": "2007-06-03 11:50:48", "license": "3", "title": "Baseball Bat Chopped", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1283/530984124_8464892161_o.jpg", "secret": "47dd4a5ce3", "media": "photo", "latitude": "0", "id": "530984124", "tags": "centralpark karate japanday"}, {"datetaken": "2007-06-03 11:51:26", "license": "3", "title": "Breaking 4 Sheets of Ice!", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1240/530984252_5ecc4abb6c_o.jpg", "secret": "fd2bc64a52", "media": "photo", "latitude": "0", "id": "530984252", "tags": "centralpark karate japanday"}, {"datetaken": "2007-06-03 11:52:36", "license": "3", "title": "Karate Form", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1290/530984398_faa39b6e5b_o.jpg", "secret": "ceedbdc582", "media": "photo", "latitude": "0", "id": "530984398", "tags": "centralpark karate japanday"}, {"datetaken": "2007-06-03 12:04:19", "license": "3", "title": "Calligraphy", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1027/531091389_a8df129fd0_o.jpg", "secret": "6b381f678a", "media": "photo", "latitude": "0", "id": "531091389", "tags": "centralpark japanday"}, {"datetaken": "2007-06-03 12:05:24", "license": "3", "title": "Calligraphy", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1134/530984602_2d5ee87f31_o.jpg", "secret": "5a5ee18d4c", "media": "photo", "latitude": "0", "id": "530984602", "tags": "centralpark japanday"}, {"datetaken": "2007-06-03 12:08:45", "license": "3", "title": "Golden Shrine or Mikoshi", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1126/530984788_e809daaf8d_o.jpg", "secret": "8e67122198", "media": "photo", "latitude": "0", "id": "530984788", "tags": "centralpark japanday"}, {"datetaken": "2007-06-03 12:13:14", "license": "3", "title": "Eva & Karate Champion", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1104/530984874_cdd1d8de45_o.jpg", "secret": "36ccc63039", "media": "photo", "latitude": "0", "id": "530984874", "tags": "centralpark japanday"}, {"datetaken": "2007-06-03 13:19:34", "license": "3", "title": "Eva, Daryl, and Grace", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1407/530984972_bf152f9b21_o.jpg", "secret": "d6b2bdf0fb", "media": "photo", "latitude": "0", "id": "530984972", "tags": "centralpark japanday"}, {"datetaken": "2007-06-03 13:19:56", "license": "3", "title": "Akiko, Daryl and Grace", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1095/530985062_d808c3d696_o.jpg", "secret": "6be4d39400", "media": "photo", "latitude": "0", "id": "530985062", "tags": "centralpark japanday"}, {"datetaken": "2007-06-03 14:32:09", "license": "3", "title": "The Gang", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1410/531091941_34b1ae51d3_o.jpg", "secret": "b214ee4ce4", "media": "photo", "latitude": "0", "id": "531091941", "tags": "centralpark japanday"}, {"datetaken": "2007-06-03 14:32:16", "license": "3", "title": "Peace Sign Everyone", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1004/530985250_111d85f3cb_o.jpg", "secret": "2842d66b4a", "media": "photo", "latitude": "0", "id": "530985250", "tags": "centralpark japanday"}, {"datetaken": "2007-06-03 14:59:13", "license": "3", "title": "What happened?", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1248/530985362_d9d5b7851d_o.jpg", "secret": "a88e43a917", "media": "photo", "latitude": "0", "id": "530985362", "tags": "nyc newyorkcity car accident"}, {"datetaken": "2007-06-03 15:06:55", "license": "3", "title": "Columbus Circle Ceiling", "text": "", "album_id": "72157600314040670", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1426/531092273_6e43fd5075_o.jpg", "secret": "43143027d2", "media": "photo", "latitude": "0", "id": "531092273", "tags": "columbuscircle"}, {"datetaken": "2007-07-16 18:31:28", "license": "4", "title": "DSC_4110.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1174/833828964_2f6b1fddcf_o.jpg", "secret": "7fae8e1578", "media": "photo", "latitude": "0", "id": "833828964", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 18:31:59", "license": "4", "title": "DSC_4111.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1252/833936354_8fab2c13b0_o.jpg", "secret": "7c24d409cd", "media": "photo", "latitude": "0", "id": "833936354", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 18:32:17", "license": "4", "title": "DSC_4112.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1257/833930230_0eae8c7980_o.jpg", "secret": "097580bc8d", "media": "photo", "latitude": "0", "id": "833930230", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 18:32:19", "license": "4", "title": "DSC_4113.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1034/833058063_f42f8de8a1_o.jpg", "secret": "b123cf5b24", "media": "photo", "latitude": "0", "id": "833058063", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 18:32:43", "license": "4", "title": "DSC_4114.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1143/833052813_e08f885365_o.jpg", "secret": "ad64188e58", "media": "photo", "latitude": "0", "id": "833052813", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 18:33:00", "license": "4", "title": "DSC_4115.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1391/833046363_6c1a0bac88_o.jpg", "secret": "fc55bc122f", "media": "photo", "latitude": "0", "id": "833046363", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 18:33:06", "license": "4", "title": "DSC_4116.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1290/833908746_c78a93d10c_o.jpg", "secret": "7ef461d96d", "media": "photo", "latitude": "0", "id": "833908746", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 18:33:19", "license": "4", "title": "DSC_4117.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1193/833035483_268ca73daf_o.jpg", "secret": "fbecb7b342", "media": "photo", "latitude": "0", "id": "833035483", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 18:33:35", "license": "4", "title": "DSC_4118.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1355/833898656_63e54f35e5_o.jpg", "secret": "f566b3d87c", "media": "photo", "latitude": "0", "id": "833898656", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 18:33:49", "license": "4", "title": "DSC_4119.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1132/833026653_1208921cb3_o.jpg", "secret": "b596078822", "media": "photo", "latitude": "0", "id": "833026653", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 18:33:51", "license": "4", "title": "DSC_4120.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1108/833889632_e0a88db9a1_o.jpg", "secret": "67dcc6b6da", "media": "photo", "latitude": "0", "id": "833889632", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 18:34:17", "license": "4", "title": "DSC_4121.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1077/833885316_266723531b_o.jpg", "secret": "3b4d590230", "media": "photo", "latitude": "0", "id": "833885316", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 18:35:58", "license": "4", "title": "DSC_4122.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1015/833009465_d1a09e52c8_o.jpg", "secret": "c10010cde4", "media": "photo", "latitude": "0", "id": "833009465", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 19:00:07", "license": "4", "title": "DSC_4124.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1097/833002899_c0647ed36d_o.jpg", "secret": "d8341b4504", "media": "photo", "latitude": "0", "id": "833002899", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 19:00:55", "license": "4", "title": "DSC_4127.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1235/833863304_7862a5cb40_o.jpg", "secret": "dbfb15f4de", "media": "photo", "latitude": "0", "id": "833863304", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 19:01:11", "license": "4", "title": "DSC_4128.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1113/832988355_6c39046367_o.jpg", "secret": "b6991d8b0e", "media": "photo", "latitude": "0", "id": "832988355", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 19:01:16", "license": "4", "title": "DSC_4129.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1113/832982795_9eb3d535ca_o.jpg", "secret": "d1c4769c20", "media": "photo", "latitude": "0", "id": "832982795", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 19:01:26", "license": "4", "title": "DSC_4130.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1402/832977441_8f6341bee4_o.jpg", "secret": "079ebd77a8", "media": "photo", "latitude": "0", "id": "832977441", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 19:03:41", "license": "4", "title": "DSC_4131.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1377/833839614_74f11f1eef_o.jpg", "secret": "f541a7be87", "media": "photo", "latitude": "0", "id": "833839614", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-07-16 19:04:25", "license": "4", "title": "DSC_4132.NEF", "text": "", "album_id": "72157600864119133", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1344/832963427_93cca96bd2_o.jpg", "secret": "252d96d9b8", "media": "photo", "latitude": "0", "id": "832963427", "tags": "oregon portland accident montanaavenue wreck joyride portlandboulevard rosaparksway july162007"}, {"datetaken": "2007-11-30 10:33:16", "license": "3", "title": "IMG_7282_web", "text": "", "album_id": "72157603340612894", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2123/2077570532_af2c5f5296_o.jpg", "secret": "5ce9040277", "media": "photo", "latitude": "0", "id": "2077570532", "tags": "car rain accident hydroplane walkedawaywith3flattires"}, {"datetaken": "2007-11-30 10:33:29", "license": "3", "title": "IMG_7283_web", "text": "", "album_id": "72157603340612894", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2096/2077570536_8a2d3a40bf_o.jpg", "secret": "3625086dbd", "media": "photo", "latitude": "0", "id": "2077570536", "tags": "car rain accident hydroplane walkedawaywith3flattires"}, {"datetaken": "2007-11-30 10:33:51", "license": "3", "title": "IMG_7285_web", "text": "", "album_id": "72157603340612894", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2097/2077570540_c56ab41a3c_o.jpg", "secret": "122e3f4238", "media": "photo", "latitude": "0", "id": "2077570540", "tags": "car rain accident hydroplane walkedawaywith3flattires"}, {"datetaken": "2007-11-30 10:34:05", "license": "3", "title": "IMG_7287_web", "text": "", "album_id": "72157603340612894", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2205/2077570548_1f0007b8e7_o.jpg", "secret": "88a278f82c", "media": "photo", "latitude": "0", "id": "2077570548", "tags": "car rain accident hydroplane walkedawaywith3flattires"}, {"datetaken": "2007-11-30 10:34:27", "license": "3", "title": "IMG_7290_web", "text": "", "album_id": "72157603340612894", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2378/2077570552_d072bf9dee_o.jpg", "secret": "890072e3af", "media": "photo", "latitude": "0", "id": "2077570552", "tags": "car rain accident hydroplane walkedawaywith3flattires"}, {"datetaken": "2007-11-30 10:34:37", "license": "3", "title": "IMG_7291_web", "text": "", "album_id": "72157603340612894", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2296/2077570554_1c5721173a_o.jpg", "secret": "ae15365901", "media": "photo", "latitude": "0", "id": "2077570554", "tags": "car rain accident hydroplane walkedawaywith3flattires"}, {"datetaken": "2007-11-30 10:34:51", "license": "3", "title": "IMG_7292_web", "text": "", "album_id": "72157603340612894", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2295/2076790431_2488549093_o.jpg", "secret": "fec5d63c02", "media": "photo", "latitude": "0", "id": "2076790431", "tags": "car rain accident hydroplane walkedawaywith3flattires"}, {"datetaken": "2007-11-30 10:35:04", "license": "3", "title": "IMG_7293_web", "text": "", "album_id": "72157603340612894", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2212/2076790435_26365ad8b9_o.jpg", "secret": "48bef6da18", "media": "photo", "latitude": "0", "id": "2076790435", "tags": "car rain accident hydroplane walkedawaywith3flattires"}, {"datetaken": "2007-11-30 10:48:20", "license": "3", "title": "IMG_7294_web", "text": "", "album_id": "72157603340612894", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2093/2076790437_2396b93076_o.jpg", "secret": "53db9c352f", "media": "photo", "latitude": "0", "id": "2076790437", "tags": "car rain accident hydroplane walkedawaywith3flattires"}, {"datetaken": "2007-11-30 10:48:43", "license": "3", "title": "IMG_7298_web", "text": "", "album_id": "72157603340612894", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2158/2076790441_d3888aad2b_o.jpg", "secret": "92ebb3b9e0", "media": "photo", "latitude": "0", "id": "2076790441", "tags": "car rain accident hydroplane walkedawaywith3flattires"}, {"datetaken": "2007-12-04 08:58:52", "license": "2", "title": "Photo_120407_001.jpg", "text": "", "album_id": "72157603372039550", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2101/2086199701_c45a0b27b5_o.jpg", "secret": "bde9a30e80", "media": "photo", "latitude": "0", "id": "2086199701", "tags": "bus accident"}, {"datetaken": "2007-12-04 08:59:10", "license": "2", "title": "Photo_120407_002.jpg", "text": "", "album_id": "72157603372039550", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2077/2086984552_7d7cc3d8f6_o.jpg", "secret": "e9e625982d", "media": "photo", "latitude": "0", "id": "2086984552", "tags": "bus accident police"}, {"datetaken": "2007-12-04 08:59:28", "license": "2", "title": "Photo_120407_003.jpg", "text": "", "album_id": "72157603372039550", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2326/2086199839_b12f07093a_o.jpg", "secret": "0865cc8af1", "media": "photo", "latitude": "0", "id": "2086199839", "tags": "car accident bumper subaru"}, {"datetaken": "2007-12-04 08:59:44", "license": "2", "title": "Photo_120407_004.jpg", "text": "", "album_id": "72157603372039550", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2166/2086984700_637f993aa4_o.jpg", "secret": "66ece4c622", "media": "photo", "latitude": "0", "id": "2086984700", "tags": ""}, {"datetaken": "2007-12-04 08:59:54", "license": "2", "title": "Photo_120407_005.jpg", "text": "", "album_id": "72157603372039550", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2023/2086199975_5da1dec308_o.jpg", "secret": "a06a9dc0ce", "media": "photo", "latitude": "0", "id": "2086199975", "tags": "car accident bumper subaru"}, {"datetaken": "2007-12-04 11:05:36", "license": "2", "title": "P1010001.JPG", "text": "", "album_id": "72157603372039550", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2272/2086962484_f3acc5c856_o.jpg", "secret": "60fc6c1167", "media": "photo", "latitude": "0", "id": "2086962484", "tags": "bus car bumper subaru damage"}, {"datetaken": "2007-12-04 11:05:50", "license": "2", "title": "P1010002.JPG", "text": "", "album_id": "72157603372039550", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2308/2086962990_9b0d4dbb08_o.jpg", "secret": "1c47125167", "media": "photo", "latitude": "0", "id": "2086962990", "tags": "bus car bumper subaru damage"}, {"datetaken": "2007-12-04 11:06:05", "license": "2", "title": "P1010003.JPG", "text": "", "album_id": "72157603372039550", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2328/2086178527_e970e89e21_o.jpg", "secret": "4a339a69a8", "media": "photo", "latitude": "0", "id": "2086178527", "tags": "bus car bumper subaru damage"}, {"datetaken": "2007-12-04 11:06:20", "license": "2", "title": "P1010004.JPG", "text": "", "album_id": "72157603372039550", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2100/2086179075_57e0f25f43_o.jpg", "secret": "da4e0b3487", "media": "photo", "latitude": "0", "id": "2086179075", "tags": "bus car bumper subaru damage"}, {"datetaken": "2007-12-04 11:06:35", "license": "2", "title": "P1010005.JPG", "text": "", "album_id": "72157603372039550", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2230/2086179591_97262a8cc7_o.jpg", "secret": "3d450d9ab0", "media": "photo", "latitude": "0", "id": "2086179591", "tags": "bus car bumper subaru damage"}, {"datetaken": "2007-12-04 11:06:51", "license": "2", "title": "P1010006.JPG", "text": "", "album_id": "72157603372039550", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2265/2086964922_7c3e285be1_o.jpg", "secret": "479e1fdfdb", "media": "photo", "latitude": "0", "id": "2086964922", "tags": "bus car bumper subaru damage"}, {"datetaken": "2007-12-04 11:07:05", "license": "2", "title": "P1010007.JPG", "text": "", "album_id": "72157603372039550", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2067/2086965438_7098642548_o.jpg", "secret": "d60935b1a1", "media": "photo", "latitude": "0", "id": "2086965438", "tags": "bus car bumper subaru damage"}, {"datetaken": "2007-12-04 11:07:20", "license": "2", "title": "P1010008.JPG", "text": "", "album_id": "72157603372039550", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2398/2086965990_16e44001fe_o.jpg", "secret": "7cb3b26395", "media": "photo", "latitude": "0", "id": "2086965990", "tags": "bus car bumper subaru damage"}, {"datetaken": "2007-12-04 11:07:35", "license": "2", "title": "P1010009.JPG", "text": "", "album_id": "72157603372039550", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2302/2086181665_9fec09e9a4_o.jpg", "secret": "0f3dc98c4d", "media": "photo", "latitude": "0", "id": "2086181665", "tags": "bus car bumper subaru damage"}, {"datetaken": "2007-09-15 14:46:30", "license": "5", "title": "The Verizon FIOS wired house!", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1344/1389043736_633d294fac_o.jpg", "secret": "ce0a7dfa24", "media": "photo", "latitude": "0", "id": "1389043736", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 14:46:36", "license": "5", "title": "The stage is set for the reveal", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1285/1389043244_d16937f041_o.jpg", "secret": "9e8d523f87", "media": "photo", "latitude": "0", "id": "1389043244", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 14:46:46", "license": "5", "title": "The infamous Winnebago", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1230/1389043376_b115110a44_o.jpg", "secret": "004da3166a", "media": "photo", "latitude": "0", "id": "1389043376", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 14:46:56", "license": "5", "title": "Concession people", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1438/1388146299_6d3d1fda7b_o.jpg", "secret": "8ac7cd2497", "media": "photo", "latitude": "0", "id": "1388146299", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 14:47:17", "license": "5", "title": "Shooting Notice", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1389/1388145903_2e66a604bf_o.jpg", "secret": "6da9269946", "media": "photo", "latitude": "0", "id": "1388145903", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 14:47:39", "license": "5", "title": "Busy event", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1403/1388145647_aa12b0a51a_o.jpg", "secret": "faf485e0c9", "media": "photo", "latitude": "0", "id": "1388145647", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 14:48:10", "license": "5", "title": "Carnival games", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1079/1389042588_be5d649968_o.jpg", "secret": "8d2bf57776", "media": "photo", "latitude": "0", "id": "1389042588", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 14:48:29", "license": "5", "title": "Great tricked out sample room", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1209/1388145401_cef6e262a6_o.jpg", "secret": "be0346aeaa", "media": "photo", "latitude": "0", "id": "1388145401", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 14:51:06", "license": "5", "title": "Carnival games", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1049/1389042314_616842c982_o.jpg", "secret": "19a311fafb", "media": "photo", "latitude": "0", "id": "1389042314", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 14:58:16", "license": "5", "title": "Verizon Execs", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1311/1388146179_15e833a157_o.jpg", "secret": "c496ff75e8", "media": "photo", "latitude": "0", "id": "1388146179", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:03:17", "license": "5", "title": "The Winner & her Mom", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1191/1388144897_e2d7fcafe0_o.jpg", "secret": "1ca926d5d9", "media": "photo", "latitude": "0", "id": "1388144897", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:06:33", "license": "5", "title": "The Home 2.0", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1436/1388145297_29e518caa7_o.jpg", "secret": "ac1df5762d", "media": "photo", "latitude": "0", "id": "1388145297", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:06:47", "license": "5", "title": "You can audition too!", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1018/1388145095_35ed776134_o.jpg", "secret": "31f155dfb6", "media": "photo", "latitude": "0", "id": "1388145095", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:07:51", "license": "5", "title": "Concession people...", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1128/1389041600_26da8d2920_o.jpg", "secret": "2be7bf3d5c", "media": "photo", "latitude": "0", "id": "1389041600", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:11:41", "license": "5", "title": "Balloon", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1380/1388144429_a88de44bf5_o.jpg", "secret": "d063e56d57", "media": "photo", "latitude": "0", "id": "1388144429", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:11:51", "license": "5", "title": "Sweet sound board", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1168/1389041100_b81b506391_o.jpg", "secret": "cbd1daf512", "media": "photo", "latitude": "0", "id": "1389041100", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:12:09", "license": "5", "title": "Lots of workers working the event", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1266/1389040972_1b1336ab4e_o.jpg", "secret": "410c49e0f6", "media": "photo", "latitude": "0", "id": "1389040972", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:12:16", "license": "5", "title": "Busy event", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1386/1388144531_2e8e622dec_o.jpg", "secret": "2efba9f27f", "media": "photo", "latitude": "0", "id": "1388144531", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:13:34", "license": "5", "title": "The Winnebago", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1430/1389041226_c5ffeba0a0_o.jpg", "secret": "866879f50d", "media": "photo", "latitude": "0", "id": "1389041226", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:28:39", "license": "5", "title": "The Management mafia", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1038/1388143769_7b742feb1c_o.jpg", "secret": "863478fa9f", "media": "photo", "latitude": "0", "id": "1388143769", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:30:48", "license": "5", "title": "Nice FIOS Booth", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1039/1388143893_526c07ccb7_o.jpg", "secret": "4014606a57", "media": "photo", "latitude": "0", "id": "1388143893", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:31:32", "license": "5", "title": "Unlock a 42\" plasma??", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1285/1389040850_91663f1d9e_o.jpg", "secret": "696a229bc6", "media": "photo", "latitude": "0", "id": "1389040850", "tags": "fios blockparty verizon home2 myhome2 blockpartyverizon"}, {"datetaken": "2007-09-15 15:31:40", "license": "5", "title": "Guitar hero", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1290/1389040280_0ff3ac72c3_o.jpg", "secret": "73b7584e32", "media": "photo", "latitude": "0", "id": "1389040280", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:32:46", "license": "5", "title": "Face painting", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1302/1389040144_aae104bf0a_o.jpg", "secret": "002b7e1dbb", "media": "photo", "latitude": "0", "id": "1389040144", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:35:24", "license": "5", "title": "Neighbor", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1043/1389039788_9cf96471da_o.jpg", "secret": "2fd909f5c7", "media": "photo", "latitude": "0", "id": "1389039788", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:39:49", "license": "5", "title": "The Geek Squad", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1413/1388143663_f49e553829_o.jpg", "secret": "fd4bb895b6", "media": "photo", "latitude": "0", "id": "1388143663", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:40:45", "license": "5", "title": "Local press", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1033/1389040030_e3407fd57b_o.jpg", "secret": "df3fb91b7c", "media": "photo", "latitude": "0", "id": "1389040030", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:41:40", "license": "5", "title": "Jumbotron for the crowd", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1072/1389043524_1c4156d588_o.jpg", "secret": "0288204a8a", "media": "photo", "latitude": "0", "id": "1389043524", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:42:18", "license": "5", "title": "Family Prepares for Reveal", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1237/1389038952_9e23f9887c_o.jpg", "secret": "9252ff0659", "media": "photo", "latitude": "0", "id": "1389038952", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:44:45", "license": "5", "title": "Geek Squad Getting ready", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1108/1388142333_460f4e2106_o.jpg", "secret": "b68b45cf0d", "media": "photo", "latitude": "0", "id": "1388142333", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:46:02", "license": "5", "title": "Family enters the house", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1089/1388142477_decbb251c3_o.jpg", "secret": "7740a9bac3", "media": "photo", "latitude": "0", "id": "1388142477", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:49:25", "license": "5", "title": "Sweet New Office on the reveal", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1020/1389039474_3bdc2ff352_o.jpg", "secret": "de8276658d", "media": "photo", "latitude": "0", "id": "1389039474", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:54:49", "license": "5", "title": "DSCN0482.JPG", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1371/1388142821_26f879d910_o.jpg", "secret": "1d8af1905b", "media": "photo", "latitude": "0", "id": "1388142821", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:55:02", "license": "5", "title": "Tech coordinator", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1057/1388143065_942789a3f3_o.jpg", "secret": "63409f1de1", "media": "photo", "latitude": "0", "id": "1388143065", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 15:56:03", "license": "5", "title": "Happy Family at the reveal!", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1419/1388146025_859860aef7_o.jpg", "secret": "df90106988", "media": "photo", "latitude": "0", "id": "1388146025", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2007-09-15 16:03:26", "license": "5", "title": "Labradoodle", "text": "", "album_id": "72157602034452349", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1323/1388147071_1e28e051fd_o.jpg", "secret": "fe6a13ddf1", "media": "photo", "latitude": "0", "id": "1388147071", "tags": "fios blockparty verizon home2 myhome2"}, {"datetaken": "2008-04-04 16:20:39", "license": "6", "title": "Honda display", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2130/2389864341_908af65912_o.jpg", "secret": "2d5395090f", "media": "photo", "latitude": "32.774574", "id": "2389864341", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 16:21:47", "license": "6", "title": "Volkswagen display", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2218/2390700546_fef8d08ae5_o.jpg", "secret": "9868998ce4", "media": "photo", "latitude": "32.774574", "id": "2390700546", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 16:25:09", "license": "6", "title": "Audi display", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2370/2389870549_ecb7534ed6_o.jpg", "secret": "bfecd39405", "media": "photo", "latitude": "32.774574", "id": "2389870549", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 16:26:45", "license": "6", "title": "V12 Mercedes", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3159/2389873893_94604617bd_o.jpg", "secret": "0b105c1bb9", "media": "photo", "latitude": "32.774574", "id": "2389873893", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 16:42:51", "license": "6", "title": "BMW convertible", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2384/2390709404_f0dbc8d81d_o.jpg", "secret": "fa0ba45ae8", "media": "photo", "latitude": "32.774574", "id": "2390709404", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 16:44:33", "license": "6", "title": "Classic Mercedes", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3168/2389880345_61a4f9b53d_o.jpg", "secret": "59b0849a7b", "media": "photo", "latitude": "32.774574", "id": "2389880345", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 16:50:40", "license": "6", "title": "Acura display", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3086/2390716302_37c21ca0f2_o.jpg", "secret": "0a89e7736c", "media": "photo", "latitude": "32.774574", "id": "2390716302", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 16:54:55", "license": "6", "title": "Concept Ford", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3120/2390719364_b689916336_o.jpg", "secret": "ec8652862d", "media": "photo", "latitude": "32.774574", "id": "2390719364", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 16:59:24", "license": "6", "title": "Concept Lincoln 1", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2114/2390721766_33271aa6c3_o.jpg", "secret": "74d6002b01", "media": "photo", "latitude": "32.774574", "id": "2390721766", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 16:59:59", "license": "6", "title": "Concept Lincoln 2", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2110/2390727726_c4623ca823_o.jpg", "secret": "b055cf6b00", "media": "photo", "latitude": "32.774574", "id": "2390727726", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 17:03:25", "license": "6", "title": "Smart Car 1", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3167/2390730722_f3a06df121_o.jpg", "secret": "e59efbe138", "media": "photo", "latitude": "32.774574", "id": "2390730722", "tags": "auto show dallas texas center convention smartcar"}, {"datetaken": "2008-04-04 17:04:28", "license": "6", "title": "Smart Car 2", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3252/2390733598_c5eb7b635d_o.jpg", "secret": "816d8382c5", "media": "photo", "latitude": "32.774574", "id": "2390733598", "tags": "auto show dallas texas center convention smartcar"}, {"datetaken": "2008-04-04 17:16:54", "license": "6", "title": "Smart Car 3", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2042/2389903573_97b05a3233_o.jpg", "secret": "c4148763e3", "media": "photo", "latitude": "32.774574", "id": "2389903573", "tags": "auto show dallas texas center convention smartcar"}, {"datetaken": "2008-04-04 17:24:56", "license": "6", "title": "Escalade Hybrid", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3094/2390741134_9a965a1a92_o.jpg", "secret": "125fd1eba9", "media": "photo", "latitude": "32.774574", "id": "2390741134", "tags": "auto show dallas texas center convention escalade"}, {"datetaken": "2008-04-04 17:34:07", "license": "6", "title": "Smart Car 4", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3111/2390738258_f832f03a4b_o.jpg", "secret": "34d5c1ea19", "media": "photo", "latitude": "32.774574", "id": "2390738258", "tags": "auto show dallas texas center convention smartcar"}, {"datetaken": "2008-04-04 17:35:59", "license": "6", "title": "Air Corvette 1", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2384/2389911185_5c510a8982_o.jpg", "secret": "2db24b438b", "media": "photo", "latitude": "32.774574", "id": "2389911185", "tags": "auto show dallas texas center convention corvette"}, {"datetaken": "2008-04-04 17:36:30", "license": "6", "title": "Air Corvette 2", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2035/2389913717_98deab5d13_o.jpg", "secret": "1b6135e7c2", "media": "photo", "latitude": "32.774574", "id": "2389913717", "tags": "auto show dallas texas center convention corvette"}, {"datetaken": "2008-04-04 17:41:29", "license": "6", "title": "Concept Corvette ZR1", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3111/2390748998_da58f7cc37_o.jpg", "secret": "12252fddca", "media": "photo", "latitude": "32.774574", "id": "2390748998", "tags": "auto show dallas texas center convention corvette"}, {"datetaken": "2008-04-04 17:42:50", "license": "6", "title": "Blue Corvette", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3100/2389919469_bb6d9defbd_o.jpg", "secret": "42d54a8912", "media": "photo", "latitude": "32.774574", "id": "2389919469", "tags": "auto show dallas texas center convention corvette"}, {"datetaken": "2008-04-04 17:43:11", "license": "6", "title": "Yellow Corvette", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2402/2389922147_6afb3a924f_o.jpg", "secret": "a1558fcc9f", "media": "photo", "latitude": "32.774574", "id": "2389922147", "tags": "auto show dallas texas center convention corvette"}, {"datetaken": "2008-04-04 17:44:01", "license": "6", "title": "Fuel Cell", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2243/2390757780_8240c9fd72_o.jpg", "secret": "836fa2dbaf", "media": "photo", "latitude": "32.774574", "id": "2390757780", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 17:46:31", "license": "6", "title": "Malibu display", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2120/2390760546_21e2dfae3a_o.jpg", "secret": "aa823044a6", "media": "photo", "latitude": "32.774574", "id": "2390760546", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 17:54:07", "license": "6", "title": "Classic Mitsubishi", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3288/2389931501_6521560958_o.jpg", "secret": "21ce45441d", "media": "photo", "latitude": "32.774574", "id": "2389931501", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 17:54:41", "license": "6", "title": "Racing Mitsubishi", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3189/2390769734_845ccae35f_o.jpg", "secret": "e37954ee31", "media": "photo", "latitude": "32.774574", "id": "2390769734", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 17:56:26", "license": "6", "title": "Porsche gallery", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3272/2389941445_8bdbc4fed7_o.jpg", "secret": "ce98f51180", "media": "photo", "latitude": "32.774574", "id": "2389941445", "tags": "auto show dallas texas center porsche convention"}, {"datetaken": "2008-04-04 17:56:46", "license": "6", "title": "Porsche close-up", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3269/2389944623_095c004ca5_o.jpg", "secret": "9553d671f6", "media": "photo", "latitude": "32.774574", "id": "2389944623", "tags": "auto show dallas texas center porsche convention"}, {"datetaken": "2008-04-04 17:59:14", "license": "6", "title": "Lowrider Camry 1", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3024/2389948539_5730d07e43_o.jpg", "secret": "8dd72f6105", "media": "photo", "latitude": "32.774574", "id": "2389948539", "tags": "auto show dallas texas center convention toyota lowrider camry"}, {"datetaken": "2008-04-04 17:59:49", "license": "6", "title": "Lowrider Camry 2", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3038/2390784946_9312c1b0ec_o.jpg", "secret": "6bb30c3b47", "media": "photo", "latitude": "32.774574", "id": "2390784946", "tags": "auto show dallas texas center convention toyota lowrider camry"}, {"datetaken": "2008-04-04 18:00:40", "license": "6", "title": "Lowrider Camry 4", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2184/2390790588_4b9efd0bd7_o.jpg", "secret": "5a9fd8943d", "media": "photo", "latitude": "32.774574", "id": "2390790588", "tags": "auto show dallas texas center convention toyota lowrider camry"}, {"datetaken": "2008-04-04 18:01:12", "license": "6", "title": "Lowrider Camry 3", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2070/2389955931_4340833775_o.jpg", "secret": "84c8466ebf", "media": "photo", "latitude": "32.774574", "id": "2389955931", "tags": "auto show dallas texas center convention toyota lowrider camry"}, {"datetaken": "2008-04-04 18:04:29", "license": "6", "title": "Blue Ferrari", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3256/2389961645_2e861b8a88_o.jpg", "secret": "0acc9d1b44", "media": "photo", "latitude": "32.774574", "id": "2389961645", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 18:05:50", "license": "6", "title": "Scion matrix", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3048/2389964975_c25f9baa47_o.jpg", "secret": "801ae60ddb", "media": "photo", "latitude": "32.774574", "id": "2389964975", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 18:07:12", "license": "6", "title": "Concept Jeep Trailhawk 1", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3188/2389967883_b85f7cb4ae_o.jpg", "secret": "1de975c050", "media": "photo", "latitude": "32.774574", "id": "2389967883", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 18:08:37", "license": "6", "title": "Concept Jeep Trailhawk 2", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3208/2390803452_791afd583b_o.jpg", "secret": "c4f927662f", "media": "photo", "latitude": "32.774574", "id": "2390803452", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 18:13:00", "license": "6", "title": "Classic Corvettes", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2357/2388778962_45f4a74724_o.jpg", "secret": "18b6d93c82", "media": "photo", "latitude": "32.774574", "id": "2388778962", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 18:15:00", "license": "6", "title": "'81 Corvette Coupe", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3113/2388779090_9e40faa900_o.jpg", "secret": "b8a56cd819", "media": "photo", "latitude": "32.774574", "id": "2388779090", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 18:16:00", "license": "6", "title": "Dusty Car", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3257/2390683944_54828259a7_o.jpg", "secret": "5d96533b34", "media": "photo", "latitude": "32.774574", "id": "2390683944", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 18:19:00", "license": "6", "title": "Mesquite Police Dodge", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3116/2389143379_19eef913fd_o.jpg", "secret": "2c013c787e", "media": "photo", "latitude": "32.774574", "id": "2389143379", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 18:19:26", "license": "6", "title": "Concept Chrysler Imperial", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3053/2390806110_fdb4fd07b6_o.jpg", "secret": "89fff927ec", "media": "photo", "latitude": "32.774574", "id": "2390806110", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 18:20:00", "license": "6", "title": "Mesquite Police T3", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2021/2389974228_ba3504b2b5_o.jpg", "secret": "4550e85a1a", "media": "photo", "latitude": "32.774574", "id": "2389974228", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 18:25:13", "license": "6", "title": "Concept Suzuki Makai 1", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2130/2389976845_73aa398885_o.jpg", "secret": "c416fb498e", "media": "photo", "latitude": "32.774574", "id": "2389976845", "tags": "auto show dallas texas center convention suzuki makai colourartaward"}, {"datetaken": "2008-04-04 18:25:47", "license": "6", "title": "Concept Suzuki Makai 2", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3008/2389981413_aa15553db6_o.jpg", "secret": "b0052401c5", "media": "photo", "latitude": "32.774574", "id": "2389981413", "tags": "auto show dallas texas center convention suzuki makai"}, {"datetaken": "2008-04-04 18:36:48", "license": "6", "title": "Mini Cooper 2", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2230/2389986335_e937ef3977_o.jpg", "secret": "cbc05daa2a", "media": "photo", "latitude": "32.774574", "id": "2389986335", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 18:39:50", "license": "6", "title": "Mini Cooper 1", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2189/2390816454_e780666486_o.jpg", "secret": "35f0d6567a", "media": "photo", "latitude": "32.774574", "id": "2390816454", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 18:44:00", "license": "6", "title": "Hummer H3T", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm4.staticflickr.com/3281/2387949587_142e7ece75_o.jpg", "secret": "b5ca53467b", "media": "photo", "latitude": "32.774574", "id": "2387949587", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 18:56:00", "license": "6", "title": "SkinzWraps sample", "text": "", "album_id": "72157604402356983", "longitude": "-96.800837", "url_o": "https://farm3.staticflickr.com/2388/2389851359_4787fedd6c_o.jpg", "secret": "cdd0984101", "media": "photo", "latitude": "32.774574", "id": "2389851359", "tags": "auto show dallas texas center convention"}, {"datetaken": "2008-04-04 19:28:02", "license": "6", "title": "Hoffbrau Steaks 1", "text": "", "album_id": "72157604402356983", "longitude": "-96.806834", "url_o": "https://farm3.staticflickr.com/2323/2389988591_18524e0c2d_o.jpg", "secret": "7dea06733f", "media": "photo", "latitude": "32.781150", "id": "2389988591", "tags": "west dallas texas end steaks hoffbrau"}, {"datetaken": "2008-04-04 19:37:20", "license": "6", "title": "Hoffbrau Steaks 3", "text": "", "album_id": "72157604402356983", "longitude": "-96.806834", "url_o": "https://farm3.staticflickr.com/2300/2389994145_dd3fab5bfd_o.jpg", "secret": "170f506204", "media": "photo", "latitude": "32.781150", "id": "2389994145", "tags": "west dallas texas end steaks hoffbrau"}, {"datetaken": "2008-04-04 19:56:06", "license": "6", "title": "Hoffbrau Steaks 2", "text": "", "album_id": "72157604402356983", "longitude": "-96.806834", "url_o": "https://farm3.staticflickr.com/2311/2389991089_266afe9e6d_o.jpg", "secret": "a9f92e28b6", "media": "photo", "latitude": "32.781150", "id": "2389991089", "tags": "west dallas texas end steaks hoffbrau"}, {"datetaken": "2006-02-05 20:30:21", "license": "1", "title": "Back of the car", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/96131394_e6d3758256_o.jpg", "secret": "e6d3758256", "media": "photo", "latitude": "0", "id": "96131394", "tags": "accident"}, {"datetaken": "2006-02-05 20:30:21", "license": "1", "title": "Got the tailpipe", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/96131395_3e1edf1055_o.jpg", "secret": "3e1edf1055", "media": "photo", "latitude": "0", "id": "96131395", "tags": "accident"}, {"datetaken": "2006-02-05 20:30:21", "license": "1", "title": "Bumper", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/96131396_ac75a81657_o.jpg", "secret": "ac75a81657", "media": "photo", "latitude": "0", "id": "96131396", "tags": "accident"}, {"datetaken": "2006-02-05 20:30:22", "license": "1", "title": "Bumper", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/96131400_170beb4cd7_o.jpg", "secret": "170beb4cd7", "media": "photo", "latitude": "0", "id": "96131400", "tags": "accident"}, {"datetaken": "2006-02-05 20:30:22", "license": "1", "title": "Bumper", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/96131402_1eec612ba5_o.jpg", "secret": "1eec612ba5", "media": "photo", "latitude": "0", "id": "96131402", "tags": "accident"}, {"datetaken": "2006-02-05 20:34:02", "license": "1", "title": "Tailgate", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/96132495_e45b1dc3fc_o.jpg", "secret": "e45b1dc3fc", "media": "photo", "latitude": "0", "id": "96132495", "tags": "accident"}, {"datetaken": "2006-02-05 20:34:02", "license": "1", "title": "Bumper", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/96132496_92f6e03b38_o.jpg", "secret": "92f6e03b38", "media": "photo", "latitude": "0", "id": "96132496", "tags": "accident"}, {"datetaken": "2006-02-05 20:34:02", "license": "1", "title": "Back", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/96132498_137c6fada3_o.jpg", "secret": "137c6fada3", "media": "photo", "latitude": "0", "id": "96132498", "tags": "accident"}, {"datetaken": "2006-02-05 20:34:02", "license": "1", "title": "Bumper", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/96132499_3bb8ad4540_o.jpg", "secret": "3bb8ad4540", "media": "photo", "latitude": "0", "id": "96132499", "tags": "accident"}, {"datetaken": "2006-02-05 20:34:02", "license": "1", "title": "Tailpipe", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/96132501_3e1355fbde_o.jpg", "secret": "3e1355fbde", "media": "photo", "latitude": "0", "id": "96132501", "tags": "accident"}, {"datetaken": "2006-02-05 20:37:58", "license": "1", "title": "Back", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/96133794_e2a929b0da_o.jpg", "secret": "e2a929b0da", "media": "photo", "latitude": "0", "id": "96133794", "tags": "accident"}, {"datetaken": "2006-02-05 20:37:58", "license": "1", "title": "Front Damage", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/96133789_94d0503135_o.jpg", "secret": "94d0503135", "media": "photo", "latitude": "0", "id": "96133789", "tags": "accident"}, {"datetaken": "2006-02-05 20:37:58", "license": "1", "title": "Front", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/96133790_00369da4ae_o.jpg", "secret": "00369da4ae", "media": "photo", "latitude": "0", "id": "96133790", "tags": "accident"}, {"datetaken": "2006-02-05 20:37:58", "license": "1", "title": "Front", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/96133791_46c062025e_o.jpg", "secret": "46c062025e", "media": "photo", "latitude": "0", "id": "96133791", "tags": "accident"}, {"datetaken": "2006-02-05 20:37:58", "license": "1", "title": "Front", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/96133792_3b037ff915_o.jpg", "secret": "3b037ff915", "media": "photo", "latitude": "0", "id": "96133792", "tags": "accident"}, {"datetaken": "2006-02-05 20:37:58", "license": "1", "title": "Front", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/96133793_6dc26d6195_o.jpg", "secret": "6dc26d6195", "media": "photo", "latitude": "0", "id": "96133793", "tags": "accident"}, {"datetaken": "2006-02-05 20:41:50", "license": "1", "title": "Back", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/96135260_86d1ac89f7_o.jpg", "secret": "86d1ac89f7", "media": "photo", "latitude": "0", "id": "96135260", "tags": "accident"}, {"datetaken": "2006-02-05 20:41:50", "license": "1", "title": "Back", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/96135264_92a3d14a64_o.jpg", "secret": "92a3d14a64", "media": "photo", "latitude": "0", "id": "96135264", "tags": "accident"}, {"datetaken": "2006-02-05 20:41:50", "license": "1", "title": "Back", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/96135266_b30801fc49_o.jpg", "secret": "b30801fc49", "media": "photo", "latitude": "0", "id": "96135266", "tags": "accident"}, {"datetaken": "2006-02-05 20:41:50", "license": "1", "title": "Back", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/96135268_a4350549be_o.jpg", "secret": "a4350549be", "media": "photo", "latitude": "0", "id": "96135268", "tags": "accident"}, {"datetaken": "2006-02-05 20:41:50", "license": "1", "title": "Back", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/96135271_6f64605b28_o.jpg", "secret": "6f64605b28", "media": "photo", "latitude": "0", "id": "96135271", "tags": "accident"}, {"datetaken": "2006-02-05 20:44:27", "license": "1", "title": "Back bumper", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/96136293_ba73f5cfc4_o.jpg", "secret": "ba73f5cfc4", "media": "photo", "latitude": "0", "id": "96136293", "tags": "accident"}, {"datetaken": "2006-02-05 20:44:27", "license": "1", "title": "Back bumper", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/96136294_53b2e3cba0_o.jpg", "secret": "53b2e3cba0", "media": "photo", "latitude": "0", "id": "96136294", "tags": "accident"}, {"datetaken": "2006-02-05 20:44:27", "license": "1", "title": "Tailpipe", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/96136295_849fdd6617_o.jpg", "secret": "849fdd6617", "media": "photo", "latitude": "0", "id": "96136295", "tags": "accident"}, {"datetaken": "2006-02-05 20:44:27", "license": "1", "title": "Back bumper", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/96136296_c8b829fd60_o.jpg", "secret": "c8b829fd60", "media": "photo", "latitude": "0", "id": "96136296", "tags": "accident"}, {"datetaken": "2006-02-05 20:44:27", "license": "1", "title": "Back bumper", "text": "", "album_id": "72057594059979766", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/96136297_fc74834b83_o.jpg", "secret": "fc74834b83", "media": "photo", "latitude": "0", "id": "96136297", "tags": "accident"}, {"datetaken": "2009-03-01 11:08:36", "license": "4", "title": "1982 Holden WB 1 Tonner ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5201/5331177871_c1ef016473_o.jpg", "secret": "956cd6b581", "media": "photo", "latitude": "-37.679574", "id": "5331177871", "tags": "1982 gm general district wb victoria ambulance motors alexandra historical service society holden 1tonner"}, {"datetaken": "2009-03-01 11:08:51", "license": "4", "title": "1982 Holden WB 1 Tonner ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5167/5331175789_e94ddbbcc0_o.jpg", "secret": "28318916fc", "media": "photo", "latitude": "-37.679574", "id": "5331175789", "tags": "1982 gm general district wb victoria ambulance motors alexandra historical service society holden 1tonner"}, {"datetaken": "2009-03-01 11:09:06", "license": "4", "title": "1982 Holden WB 1 Tonner ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5006/5331796132_17e7b26142_o.jpg", "secret": "98817ff825", "media": "photo", "latitude": "-37.679574", "id": "5331796132", "tags": "1982 gm general district wb victoria ambulance motors alexandra historical service society holden 1tonner"}, {"datetaken": "2009-03-01 11:09:19", "license": "4", "title": "1982 Holden WB 1 Tonner ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5167/5331784946_09cb6c007f_o.jpg", "secret": "e4dd848347", "media": "photo", "latitude": "-37.679574", "id": "5331784946", "tags": "1982 gm general district wb victoria ambulance motors alexandra historical service society holden 1tonner"}, {"datetaken": "2009-03-01 11:09:50", "license": "4", "title": "1982 Holden WB 1 Tonner ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5166/5331183747_d876d5bb37_o.jpg", "secret": "71e610f8d6", "media": "photo", "latitude": "-37.679574", "id": "5331183747", "tags": "1982 gm general district wb victoria ambulance motors alexandra historical service society holden 1tonner"}, {"datetaken": "2009-03-01 11:10:34", "license": "4", "title": "1957 Ford Mainline ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5005/5331181751_2a1a4bc0f1_o.jpg", "secret": "cb270a665c", "media": "photo", "latitude": "-37.679574", "id": "5331181751", "tags": "ford victoria ambulance 1957 historical service society mainline"}, {"datetaken": "2009-03-01 11:10:59", "license": "4", "title": "1957 Ford Mainline ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5048/5331179851_a952535533_o.jpg", "secret": "eef1285621", "media": "photo", "latitude": "-37.679574", "id": "5331179851", "tags": "ford victoria ambulance 1957 historical society mainline"}, {"datetaken": "2009-03-01 11:12:01", "license": "4", "title": "1974 Holden HQ 1 Tonner ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5162/5331794140_8a33f04b53_o.jpg", "secret": "4607d0bb55", "media": "photo", "latitude": "-37.679574", "id": "5331794140", "tags": "1974 gm general victorian victoria ambulance motors civil historical service hq society holden 1tonner"}, {"datetaken": "2009-03-01 11:12:43", "license": "4", "title": "1968 Ford ZA Fairlane ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5125/5331185853_0893826733_o.jpg", "secret": "302858fd5f", "media": "photo", "latitude": "-37.679574", "id": "5331185853", "tags": "ford victorian victoria ambulance civil historical service 1968 society za fairlane"}, {"datetaken": "2009-03-01 11:14:12", "license": "4", "title": "1968 Ford ZA Fairlane ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5048/5331786048_07705f4beb_o.jpg", "secret": "28430685ca", "media": "photo", "latitude": "-37.679574", "id": "5331786048", "tags": "ford victorian victoria ambulance civil historical service 1968 society za fairlane"}, {"datetaken": "2009-03-01 11:14:28", "license": "4", "title": "Victoria Civil Ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5202/5331798456_e850428a4b_o.jpg", "secret": "2168c83412", "media": "photo", "latitude": "-37.679574", "id": "5331798456", "tags": "victoria ambulance civil historical society"}, {"datetaken": "2009-03-01 11:15:19", "license": "4", "title": "1998 Holden VS Commodore ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5085/5331178829_e423de9c39_o.jpg", "secret": "c0db1620f8", "media": "photo", "latitude": "-37.679574", "id": "5331178829", "tags": "new wales gm general south victoria ambulance motors nsw commodore historical service 1998 vs society industries holden tamworth jakab"}, {"datetaken": "2009-03-01 11:16:03", "license": "4", "title": "Ambulance Service Victoria", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5001/5331176751_61ccdd54ae_o.jpg", "secret": "3128b69259", "media": "photo", "latitude": "-37.679574", "id": "5331176751", "tags": "victoria ambulance historical society"}, {"datetaken": "2009-03-01 11:16:27", "license": "4", "title": "Pye Victor two way radio", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5210/5331802658_2d98c525ea_o.jpg", "secret": "d5f7bf8d30", "media": "photo", "latitude": "-37.679574", "id": "5331802658", "tags": "two radio way victoria ambulance victor historical society pye"}, {"datetaken": "2009-03-01 11:17:05", "license": "4", "title": "Rural Ambulance Victoria", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5089/5331195119_f3810ab377_o.jpg", "secret": "b27ba94391", "media": "photo", "latitude": "-37.679574", "id": "5331195119", "tags": "rural victoria ambulance historical society rav"}, {"datetaken": "2009-03-01 11:17:47", "license": "4", "title": "1942 Chevrolet ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5170/5331801646_96afbfdafd_o.jpg", "secret": "4402c5c6b8", "media": "photo", "latitude": "-37.679574", "id": "5331801646", "tags": "chevrolet gm general victorian victoria ambulance motors civil chevy historical service 1942 society chev"}, {"datetaken": "2009-03-01 11:20:25", "license": "4", "title": "1942 Chevrolet ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5128/5331189279_1eef70cf5f_o.jpg", "secret": "7a441850a1", "media": "photo", "latitude": "-37.679574", "id": "5331189279", "tags": "chevrolet gm general victorian victoria ambulance motors civil chevy historical service 1942 society chev"}, {"datetaken": "2009-03-01 11:20:39", "license": "4", "title": "1942 Chevrolet ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5087/5331804756_9d3208662a_o.jpg", "secret": "9acc8119f9", "media": "photo", "latitude": "-37.679574", "id": "5331804756", "tags": "chevrolet gm general victorian victoria ambulance motors civil chevy historical service 1942 society chev"}, {"datetaken": "2009-03-01 11:22:13", "license": "4", "title": "1992 Ford F-250 ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5202/5331803650_eaa8b4499f_o.jpg", "secret": "82c8dd9dc2", "media": "photo", "latitude": "-37.679574", "id": "5331803650", "tags": "new ford wales south victoria ambulance f nsw historical series service 1992 society industries tamworth f250 jakab fseries"}, {"datetaken": "2009-03-01 11:23:13", "license": "4", "title": "1992 Ford F-150 4WD ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5043/5331799584_3b65ae51ed_o.jpg", "secret": "c2c0afa7ab", "media": "photo", "latitude": "-37.679574", "id": "5331799584", "tags": "ford 4wd f150 victoria ambulance f historical series service 1992 society fseries transfield"}, {"datetaken": "2009-03-01 11:24:22", "license": "4", "title": "1999 GMC ambulance", "text": "", "album_id": "72157627438102718", "longitude": "145.013608", "url_o": "https://farm6.staticflickr.com/5208/5331194335_471134d7ab_o.jpg", "secret": "9d398c1af9", "media": "photo", "latitude": "-37.679574", "id": "5331194335", "tags": "gm general victoria 1999 ambulance motors historical service society gmc mader"}, {"datetaken": "2010-06-05 13:23:06", "license": "4", "title": "Dedication of Vaillancourt-Schneck Memorial Nature Trail 5Jun2010 4 by Chris Bailey", "text": "", "album_id": "72157634895669438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5133/5416912306_e053581389_o.jpg", "secret": "63d09124fd", "media": "photo", "latitude": "0", "id": "5416912306", "tags": "district management huron wetland"}, {"datetaken": "2010-06-05 13:24:19", "license": "4", "title": "Dedication of Vaillancourt-Schneck Memorial Nature Trail 5Jun2010 3 by Chris Bailey", "text": "", "album_id": "72157634895669438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5292/5416912806_feb4b27e25_o.jpg", "secret": "9253b234ff", "media": "photo", "latitude": "0", "id": "5416912806", "tags": "district management huron wetland"}, {"datetaken": "2010-06-05 13:24:19", "license": "4", "title": "Dedication of Vaillancourt-Schneck Memorial Nature Trail 5Jun2010 2 by Chris Bailey", "text": "", "album_id": "72157634895669438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5298/5416299857_bcbd328ebc_o.jpg", "secret": "effec4f411", "media": "photo", "latitude": "0", "id": "5416299857", "tags": "district management huron wetland"}, {"datetaken": "2010-06-05 13:24:19", "license": "4", "title": "Dedication of Vaillancourt-Schneck Memorial Nature Trail 5Jun2010 1 by Chris Bailey", "text": "", "album_id": "72157634895669438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5098/5416299467_e89642839d_o.jpg", "secret": "6aff85c17b", "media": "photo", "latitude": "0", "id": "5416299467", "tags": "district management huron wetland"}, {"datetaken": "2010-06-05 13:36:12", "license": "4", "title": "Abram Schneck Memorial Bronze Plaque by Chris Bailey", "text": "", "album_id": "72157634895669438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5011/5416278769_c0fa246ab5_o.jpg", "secret": "1e1b72e55c", "media": "photo", "latitude": "0", "id": "5416278769", "tags": "district management huron wetland"}, {"datetaken": "2010-06-06 03:32:13", "license": "4", "title": "Dedication of Vaillancourt-Schneck Memorial Nature Trail 5Jun2010", "text": "", "album_id": "72157634895669438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5136/5416281291_c65369ec23_o.jpg", "secret": "5c9869fcc0", "media": "photo", "latitude": "0", "id": "5416281291", "tags": "district management huron wetland"}, {"datetaken": "2010-06-06 03:32:23", "license": "4", "title": "Dedication of Vaillancourt-Schneck Memorial Nature Trail 5Jun2010", "text": "", "album_id": "72157634895669438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5140/5416895650_3e9fe1c0e5_o.jpg", "secret": "d7e2fc7102", "media": "photo", "latitude": "0", "id": "5416895650", "tags": "district management huron wetland"}, {"datetaken": "2010-06-06 03:36:30", "license": "4", "title": "Dedication of Vaillancourt-Schneck Memorial Nature Trail 5Jun201 006", "text": "", "album_id": "72157634895669438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5053/5416897582_2a718e0bae_o.jpg", "secret": "d1823d7ae8", "media": "photo", "latitude": "0", "id": "5416897582", "tags": "district management huron wetland"}, {"datetaken": "2010-06-06 03:36:59", "license": "4", "title": "Dedication of Vaillancourt-Schneck Memorial Nature Trail 5Jun2010", "text": "", "album_id": "72157634895669438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5258/5416899548_c475cc08f0_o.jpg", "secret": "8b73ce174a", "media": "photo", "latitude": "0", "id": "5416899548", "tags": "district management huron wetland"}, {"datetaken": "2010-06-06 03:37:45", "license": "4", "title": "Dedication of Vaillancourt-Schneck Memorial Nature Trail 5Jun2010", "text": "", "album_id": "72157634895669438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5052/5416902146_921e50bfc4_o.jpg", "secret": "f96f426728", "media": "photo", "latitude": "0", "id": "5416902146", "tags": "district management huron wetland"}, {"datetaken": "2010-06-06 03:41:16", "license": "4", "title": "Dedication of Vaillancourt-Schneck Memorial Nature Trail 5Jun2010", "text": "", "album_id": "72157634895669438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5416904348_a9d66bcd5d_o.jpg", "secret": "034e1e92ed", "media": "photo", "latitude": "0", "id": "5416904348", "tags": "district management huron wetland"}, {"datetaken": "2010-06-06 03:50:04", "license": "4", "title": "Dedication of Vaillancourt-Schneck Memorial Nature Trail 5Jun2010", "text": "", "album_id": "72157634895669438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5015/5416906900_60bbd7231c_o.jpg", "secret": "632279753a", "media": "photo", "latitude": "0", "id": "5416906900", "tags": "district management huron wetland"}, {"datetaken": "2010-06-06 03:56:01", "license": "4", "title": "Dedication of Vaillancourt-Schneck Memorial Nature Trail 5Jun2010", "text": "", "album_id": "72157634895669438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5132/5416297071_be935d2b3e_o.jpg", "secret": "9806dfbc33", "media": "photo", "latitude": "0", "id": "5416297071", "tags": "district management huron wetland"}, {"datetaken": "2010-06-06 03:56:09", "license": "4", "title": "Dedication of Vaillancourt-Schneck Memorial Nature Trail 5Jun201 025", "text": "", "album_id": "72157634895669438", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5218/5416910776_ba891c5a77_o.jpg", "secret": "203585cf85", "media": "photo", "latitude": "0", "id": "5416910776", "tags": "district management huron wetland"}, {"datetaken": "2011-11-01 00:00:00", "license": "5", "title": "Kim and Khloe Kardashian Handbag", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6059/6307601553_91abc72f60_o.jpg", "secret": "780362cf6c", "media": "photo", "latitude": "0", "id": "6307601553", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:01", "license": "5", "title": "Kim Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6112/6308123254_db0cc7a8d2_o.jpg", "secret": "4fb3081a55", "media": "photo", "latitude": "0", "id": "6308123254", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:02", "license": "5", "title": "Kim Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6221/6307602095_e58249d2df_o.jpg", "secret": "7619303d9a", "media": "photo", "latitude": "0", "id": "6307602095", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:03", "license": "5", "title": "Kim Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6220/6307602415_ba17de64c8_o.jpg", "secret": "a9dd57a2c2", "media": "photo", "latitude": "0", "id": "6307602415", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:04", "license": "5", "title": "Kim Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6054/6308123968_07f86efa64_o.jpg", "secret": "8483119b57", "media": "photo", "latitude": "0", "id": "6308123968", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:05", "license": "5", "title": "Kim Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6113/6308124302_3cac37fb8b_o.jpg", "secret": "c6e6eb99d0", "media": "photo", "latitude": "0", "id": "6308124302", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:06", "license": "5", "title": "Kim Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6232/6307603257_0a7316f7f7_o.jpg", "secret": "e3e81184ca", "media": "photo", "latitude": "0", "id": "6307603257", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:07", "license": "5", "title": "Kim Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6036/6308124856_0c924761fd_o.jpg", "secret": "e49119d147", "media": "photo", "latitude": "0", "id": "6308124856", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:08", "license": "5", "title": "Kim Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6107/6307603915_658a7f2964_o.jpg", "secret": "31ae595485", "media": "photo", "latitude": "0", "id": "6307603915", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:09", "license": "5", "title": "Kim Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6091/6308125448_fd0f03f20a_o.jpg", "secret": "ee00b159c1", "media": "photo", "latitude": "0", "id": "6308125448", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:10", "license": "5", "title": "Kim Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6114/6308125708_55cf61a279_o.jpg", "secret": "df61e70c8d", "media": "photo", "latitude": "0", "id": "6308125708", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:11", "license": "5", "title": "Kim Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6231/6308125994_1a4eaae92d_o.jpg", "secret": "226150c3c4", "media": "photo", "latitude": "0", "id": "6308125994", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:12", "license": "5", "title": "Kim Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6095/6308126260_7f53a146ba_o.jpg", "secret": "1068c947a7", "media": "photo", "latitude": "0", "id": "6308126260", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:13", "license": "5", "title": "Kim Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6232/6308126618_3ae030f587_o.jpg", "secret": "fb08d4d6f4", "media": "photo", "latitude": "0", "id": "6308126618", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:14", "license": "5", "title": "Kim Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6232/6307605719_d476cb4196_o.jpg", "secret": "f6e06a68ef", "media": "photo", "latitude": "0", "id": "6307605719", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:15", "license": "5", "title": "Kim Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6038/6307605935_914bb249a3_o.jpg", "secret": "0bc7a5e8fb", "media": "photo", "latitude": "0", "id": "6307605935", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:16", "license": "5", "title": "Kim Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6230/6307606291_02748489d5_o.jpg", "secret": "15385e5988", "media": "photo", "latitude": "0", "id": "6307606291", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:17", "license": "5", "title": "Kim Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6222/6308127644_8d94b945f6_o.jpg", "secret": "39e7b335fb", "media": "photo", "latitude": "0", "id": "6308127644", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:18", "license": "5", "title": "Khloe Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6215/6307606693_392ec3a995_o.jpg", "secret": "8d8c9419d6", "media": "photo", "latitude": "0", "id": "6307606693", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:19", "license": "5", "title": "Khloe Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6048/6308128054_d58e7f6ccc_o.jpg", "secret": "2a36d6e8b1", "media": "photo", "latitude": "0", "id": "6308128054", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:20", "license": "5", "title": "Kim and Khloe Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6095/6307607295_e0cf231247_o.jpg", "secret": "913827a163", "media": "photo", "latitude": "0", "id": "6307607295", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:21", "license": "5", "title": "Kim and Khloe Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6105/6308128560_ba40ef16d8_o.jpg", "secret": "6e2efa02f5", "media": "photo", "latitude": "0", "id": "6308128560", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:22", "license": "5", "title": "Kim and Khloe Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6220/6307607777_2a15432e88_o.jpg", "secret": "29b509ba82", "media": "photo", "latitude": "0", "id": "6307607777", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:23", "license": "5", "title": "Kim and Khloe Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6035/6307608171_664a659c64_o.jpg", "secret": "832605f0f2", "media": "photo", "latitude": "0", "id": "6307608171", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-01 00:00:24", "license": "5", "title": "Kim and Khloe Kardashian", "text": "", "album_id": "72157627916134333", "longitude": "0", "url_o": "https://farm7.staticflickr.com/6052/6308129062_83fc9859ff_o.jpg", "secret": "f7a2e8bdb0", "media": "photo", "latitude": "0", "id": "6308129062", "tags": "fashion kim handbags davidjones strandbags kardashian khloekardashian evarinaldiphotography"}, {"datetaken": "2011-11-19 11:21:32", "license": "1", "title": "Pudsey", "text": "", "album_id": "72157629014416869", "longitude": "-1.651554", "url_o": "https://farm8.staticflickr.com/7002/6755825667_8c6c5c6896_o.jpg", "secret": "138bac56d9", "media": "photo", "latitude": "53.785237", "id": "6755825667", "tags": "autumn"}, {"datetaken": "2011-11-19 13:59:51", "license": "1", "title": "Golden Acre Park", "text": "", "album_id": "72157629014416869", "longitude": "-1.593246", "url_o": "https://farm8.staticflickr.com/7169/6755826109_dc7ce978f6_o.jpg", "secret": "9850507be5", "media": "photo", "latitude": "53.871322", "id": "6755826109", "tags": "autumn"}, {"datetaken": "2011-11-19 13:59:56", "license": "1", "title": "Golden Acre Park", "text": "", "album_id": "72157629014416869", "longitude": "-1.593246", "url_o": "https://farm8.staticflickr.com/7151/6755826709_7c345080d9_o.jpg", "secret": "482cdd0a4d", "media": "photo", "latitude": "53.871322", "id": "6755826709", "tags": "autumn"}, {"datetaken": "2011-11-19 14:02:00", "license": "1", "title": "Golden Acre Park", "text": "", "album_id": "72157629014416869", "longitude": "-1.593246", "url_o": "https://farm8.staticflickr.com/7148/6755827135_f3330c5d55_o.jpg", "secret": "999af10afd", "media": "photo", "latitude": "53.871322", "id": "6755827135", "tags": "autumn"}, {"datetaken": "2011-11-19 14:02:22", "license": "1", "title": "Golden Acre Park", "text": "", "album_id": "72157629014416869", "longitude": "-1.593246", "url_o": "https://farm8.staticflickr.com/7171/6755827647_183fa20c4e_o.jpg", "secret": "0325025d25", "media": "photo", "latitude": "53.871322", "id": "6755827647", "tags": "autumn"}, {"datetaken": "2011-11-19 14:02:33", "license": "1", "title": "Golden Acre Park", "text": "", "album_id": "72157629014416869", "longitude": "-1.593246", "url_o": "https://farm8.staticflickr.com/7151/6755828033_ce90610e28_o.jpg", "secret": "524c086e5d", "media": "photo", "latitude": "53.871322", "id": "6755828033", "tags": "autumn"}, {"datetaken": "2011-11-19 14:02:37", "license": "1", "title": "Golden Acre Park", "text": "", "album_id": "72157629014416869", "longitude": "-1.593246", "url_o": "https://farm8.staticflickr.com/7153/6755828495_247526c5aa_o.jpg", "secret": "26b8400c7f", "media": "photo", "latitude": "53.871322", "id": "6755828495", "tags": "autumn"}, {"datetaken": "2011-11-19 14:03:05", "license": "1", "title": "Golden Acre Park", "text": "", "album_id": "72157629014416869", "longitude": "-1.593246", "url_o": "https://farm8.staticflickr.com/7166/6755828883_6fa3b69871_o.jpg", "secret": "7028ccc9ed", "media": "photo", "latitude": "53.871322", "id": "6755828883", "tags": "autumn"}, {"datetaken": "2011-11-19 14:03:14", "license": "1", "title": "Golden Acre Park", "text": "", "album_id": "72157629014416869", "longitude": "-1.593246", "url_o": "https://farm8.staticflickr.com/7030/6755830103_bd2fd9ed64_o.jpg", "secret": "cfe267c099", "media": "photo", "latitude": "53.871322", "id": "6755830103", "tags": "autumn"}, {"datetaken": "2011-11-19 14:03:29", "license": "1", "title": "Golden Acre Park", "text": "", "album_id": "72157629014416869", "longitude": "-1.593246", "url_o": "https://farm8.staticflickr.com/7019/6755830537_18b73a21ed_o.jpg", "secret": "c6fd700263", "media": "photo", "latitude": "53.871322", "id": "6755830537", "tags": "autumn"}, {"datetaken": "2011-11-19 14:03:50", "license": "1", "title": "Golden Acre Park", "text": "", "album_id": "72157629014416869", "longitude": "-1.593246", "url_o": "https://farm8.staticflickr.com/7027/6755831067_27a52da78c_o.jpg", "secret": "74d3f8b934", "media": "photo", "latitude": "53.871322", "id": "6755831067", "tags": "autumn"}, {"datetaken": "2011-11-19 14:05:14", "license": "1", "title": "Railway in Golden Acre Park", "text": "", "album_id": "72157629014416869", "longitude": "-1.593246", "url_o": "https://farm8.staticflickr.com/7017/6755831437_900e55869a_o.jpg", "secret": "04304a724c", "media": "photo", "latitude": "53.871322", "id": "6755831437", "tags": "autumn"}, {"datetaken": "2011-11-19 14:08:56", "license": "1", "title": "Golden Acre Park", "text": "", "album_id": "72157629014416869", "longitude": "-1.593246", "url_o": "https://farm8.staticflickr.com/7159/6755831891_1e8ee288a4_o.jpg", "secret": "0610e55508", "media": "photo", "latitude": "53.871322", "id": "6755831891", "tags": "autumn"}, {"datetaken": "2011-11-19 14:09:54", "license": "1", "title": "Golden Acre Park", "text": "", "album_id": "72157629014416869", "longitude": "-1.593246", "url_o": "https://farm8.staticflickr.com/7173/6755832249_aa0477c764_o.jpg", "secret": "d32c48931c", "media": "photo", "latitude": "53.871322", "id": "6755832249", "tags": "autumn"}, {"datetaken": "2011-11-19 14:10:02", "license": "1", "title": "Golden Acre Park", "text": "", "album_id": "72157629014416869", "longitude": "-1.593246", "url_o": "https://farm8.staticflickr.com/7173/6755833457_a826fc595d_o.jpg", "secret": "2219c399c3", "media": "photo", "latitude": "53.871322", "id": "6755833457", "tags": "autumn"}, {"datetaken": "2011-11-19 14:10:30", "license": "1", "title": "Golden Acre Park", "text": "", "album_id": "72157629014416869", "longitude": "-1.593246", "url_o": "https://farm8.staticflickr.com/7154/6755834157_fac145f1e1_o.jpg", "secret": "d36eb694b0", "media": "photo", "latitude": "53.871322", "id": "6755834157", "tags": "autumn"}, {"datetaken": "2011-11-19 14:10:36", "license": "1", "title": "Golden Acre Park", "text": "", "album_id": "72157629014416869", "longitude": "-1.593246", "url_o": "https://farm8.staticflickr.com/7004/6755835341_9c1fc0885d_o.jpg", "secret": "76879407d4", "media": "photo", "latitude": "53.871322", "id": "6755835341", "tags": "autumn"}, {"datetaken": "2011-11-19 14:10:41", "license": "1", "title": "Golden Acre Park", "text": "", "album_id": "72157629014416869", "longitude": "-1.593246", "url_o": "https://farm8.staticflickr.com/7169/6755836351_d26b64d516_o.jpg", "secret": "b0d61c1bf6", "media": "photo", "latitude": "53.871322", "id": "6755836351", "tags": "autumn"}, {"datetaken": "2011-11-19 14:12:08", "license": "1", "title": "Car accident", "text": "", "album_id": "72157629014416869", "longitude": "-1.595892", "url_o": "https://farm8.staticflickr.com/7028/6755836835_275676919a_o.jpg", "secret": "58acc6eed1", "media": "photo", "latitude": "53.871786", "id": "6755836835", "tags": "autumn"}, {"datetaken": "2014-08-31 10:37:50", "license": "4", "title": "DSC_0182_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.533760", "url_o": "https://farm6.staticflickr.com/5592/14912766160_9e096ddb06_o.jpg", "secret": "068f744ea4", "media": "photo", "latitude": "27.524605", "id": "14912766160", "tags": "manateecounty"}, {"datetaken": "2014-08-31 10:38:40", "license": "4", "title": "DSC_0187_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.533760", "url_o": "https://farm6.staticflickr.com/5560/15076406016_4b7f9e8cf9_o.jpg", "secret": "49fdc3364d", "media": "photo", "latitude": "27.524605", "id": "15076406016", "tags": "manateecounty"}, {"datetaken": "2014-08-31 10:39:13", "license": "4", "title": "DSC_0189_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.533760", "url_o": "https://farm4.staticflickr.com/3915/14912842657_8703b4ee7a_o.jpg", "secret": "c25b4e6c72", "media": "photo", "latitude": "27.524605", "id": "14912842657", "tags": "manateecounty"}, {"datetaken": "2014-08-31 11:26:44", "license": "4", "title": "DSC_0273_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.423608", "url_o": "https://farm4.staticflickr.com/3871/15076364276_706a2cab58_o.jpg", "secret": "4314d59de6", "media": "photo", "latitude": "27.594072", "id": "15076364276", "tags": "rail locomotive parrish manateecounty gp7 floridarailroadmuseum floridagulfcoastrail"}, {"datetaken": "2014-08-31 11:28:20", "license": "4", "title": "DSC_0272_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.423608", "url_o": "https://farm6.staticflickr.com/5564/15076366516_5ebab082a9_o.jpg", "secret": "f080c03cb8", "media": "photo", "latitude": "27.594072", "id": "15076366516", "tags": "manateecounty"}, {"datetaken": "2014-08-31 11:42:33", "license": "4", "title": "DSC_0205_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.432842", "url_o": "https://farm4.staticflickr.com/3875/14912759830_d585712d40_o.jpg", "secret": "d07cb9781d", "media": "photo", "latitude": "27.570865", "id": "14912759830", "tags": "manateecounty"}, {"datetaken": "2014-08-31 12:08:48", "license": "4", "title": "DSC_0212_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.511723", "url_o": "https://farm6.staticflickr.com/5575/14912824768_eefa2132e2_o.jpg", "secret": "8b07b3d50a", "media": "photo", "latitude": "27.538617", "id": "14912824768", "tags": "manateecounty"}, {"datetaken": "2014-08-31 12:08:59", "license": "4", "title": "DSC_0215_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.511723", "url_o": "https://farm4.staticflickr.com/3863/15099029872_f58570bf7c_o.jpg", "secret": "6cd10cb9e7", "media": "photo", "latitude": "27.538617", "id": "15099029872", "tags": "manateecounty"}, {"datetaken": "2014-08-31 12:09:09", "license": "4", "title": "DSC_0216_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.511723", "url_o": "https://farm6.staticflickr.com/5552/14912699429_123ffea914_o.jpg", "secret": "eb721deaf1", "media": "photo", "latitude": "27.538617", "id": "14912699429", "tags": "manateecounty"}, {"datetaken": "2014-08-31 12:09:20", "license": "4", "title": "DSC_0224_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.511723", "url_o": "https://farm4.staticflickr.com/3839/15096381001_ff7d32b8c0_o.jpg", "secret": "cd9b9ffb14", "media": "photo", "latitude": "27.538617", "id": "15096381001", "tags": "manateecounty"}, {"datetaken": "2014-08-31 12:10:16", "license": "4", "title": "DSC_0226_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.511723", "url_o": "https://farm4.staticflickr.com/3890/15099026452_2bf929428f_o.jpg", "secret": "0d4872525a", "media": "photo", "latitude": "27.538617", "id": "15099026452", "tags": "manateecounty"}, {"datetaken": "2014-08-31 12:10:17", "license": "4", "title": "DSC_0227_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.511723", "url_o": "https://farm4.staticflickr.com/3891/14912832177_31601fcfed_o.jpg", "secret": "10ae3890e7", "media": "photo", "latitude": "27.538617", "id": "14912832177", "tags": "manateecounty"}, {"datetaken": "2014-08-31 12:15:35", "license": "4", "title": "DSC_0233_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.511723", "url_o": "https://farm4.staticflickr.com/3844/15076391996_550ec2d6d3_o.jpg", "secret": "cd6ffd6527", "media": "photo", "latitude": "27.538617", "id": "15076391996", "tags": "manateecounty"}, {"datetaken": "2014-08-31 12:16:39", "license": "4", "title": "DSC_0235_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.511723", "url_o": "https://farm6.staticflickr.com/5552/14912748830_7799c12a46_o.jpg", "secret": "bc06c40dd5", "media": "photo", "latitude": "27.538617", "id": "14912748830", "tags": "rescue firemen paramedics firefighters caraccident manateecounty"}, {"datetaken": "2014-08-31 12:19:44", "license": "4", "title": "DSC_0242_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.511723", "url_o": "https://farm4.staticflickr.com/3900/15096375541_ddc5d7bf22_o.jpg", "secret": "6228b7d3aa", "media": "photo", "latitude": "27.538617", "id": "15096375541", "tags": "manateecounty"}, {"datetaken": "2014-08-31 12:22:11", "license": "4", "title": "DSC_0244_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.511723", "url_o": "https://farm4.staticflickr.com/3921/15096374051_46afc2ce79_o.jpg", "secret": "c6effbc2a9", "media": "photo", "latitude": "27.538617", "id": "15096374051", "tags": "manateecounty"}, {"datetaken": "2014-08-31 12:22:13", "license": "4", "title": "DSC_0245_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.511723", "url_o": "https://farm6.staticflickr.com/5586/15099374925_b15888eb37_o.jpg", "secret": "b4ba0e7119", "media": "photo", "latitude": "27.538617", "id": "15099374925", "tags": "manateecounty"}, {"datetaken": "2014-08-31 12:53:25", "license": "4", "title": "DSC_0249_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.583713", "url_o": "https://farm4.staticflickr.com/3862/15099018372_72f7e882e1_o.jpg", "secret": "b5e5f0950e", "media": "photo", "latitude": "27.570658", "id": "15099018372", "tags": "manateecounty"}, {"datetaken": "2014-08-31 13:00:15", "license": "4", "title": "DSC_0251_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.583713", "url_o": "https://farm6.staticflickr.com/5560/15099370385_e82dc7dde2_o.jpg", "secret": "4d9d33a932", "media": "photo", "latitude": "27.570658", "id": "15099370385", "tags": "manateecounty madirabickelmoundstatearchaeologicalsite madirabickelmound"}, {"datetaken": "2014-08-31 13:01:59", "license": "4", "title": "DSC_0258_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.583713", "url_o": "https://farm6.staticflickr.com/5582/14912683249_2ac5759078_o.jpg", "secret": "5ed8d09efb", "media": "photo", "latitude": "27.570658", "id": "14912683249", "tags": "manateecounty"}, {"datetaken": "2014-08-31 13:02:29", "license": "4", "title": "DSC_0260_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.583713", "url_o": "https://farm4.staticflickr.com/3889/15099010362_e2651d49cf_o.jpg", "secret": "37667fcdb9", "media": "photo", "latitude": "27.570658", "id": "15099010362", "tags": "manateecounty"}, {"datetaken": "2014-08-31 13:04:04", "license": "4", "title": "DSC_0264_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.583713", "url_o": "https://farm4.staticflickr.com/3900/14912814647_99da5f4b04_o.jpg", "secret": "d79e1a8649", "media": "photo", "latitude": "27.570658", "id": "14912814647", "tags": "manateecounty"}, {"datetaken": "2014-08-31 13:05:46", "license": "4", "title": "DSC_0267_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.583713", "url_o": "https://farm6.staticflickr.com/5570/14912675069_fb244043c5_o.jpg", "secret": "52ebb7bfc8", "media": "photo", "latitude": "27.570658", "id": "14912675069", "tags": "manateecounty"}, {"datetaken": "2014-08-31 13:12:17", "license": "4", "title": "DSC_0269_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.582728", "url_o": "https://farm6.staticflickr.com/5562/14912728280_d1f10b401d_o.jpg", "secret": "91818744a6", "media": "photo", "latitude": "27.578145", "id": "14912728280", "tags": "manateecounty"}, {"datetaken": "2014-08-31 13:12:44", "license": "4", "title": "DSC_0271_pp", "text": "", "album_id": "72157646679583188", "longitude": "-82.582728", "url_o": "https://farm4.staticflickr.com/3879/15098999902_37141fc118_o.jpg", "secret": "574211fe59", "media": "photo", "latitude": "27.578145", "id": "15098999902", "tags": "manateecounty"}, {"datetaken": "2006-12-10 16:21:44", "license": "5", "title": "Andrew at work", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3166/2810383152_86470ffa4e_o.jpg", "secret": "59b4abd9cd", "media": "photo", "latitude": "0", "id": "2810383152", "tags": "andrew"}, {"datetaken": "2006-12-10 16:21:52", "license": "5", "title": "Ready for Christmas", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3024/2810384460_3faf5b8531_o.jpg", "secret": "67a94cc7eb", "media": "photo", "latitude": "0", "id": "2810384460", "tags": ""}, {"datetaken": "2006-12-10 16:34:58", "license": "5", "title": "Gifts for RAs", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3151/2810384596_e26e0bc914_o.jpg", "secret": "5224652863", "media": "photo", "latitude": "0", "id": "2810384596", "tags": ""}, {"datetaken": "2006-12-10 16:37:04", "license": "5", "title": "", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3090/2809538285_4dcd261804_o.jpg", "secret": "4bfe7893c8", "media": "photo", "latitude": "0", "id": "2809538285", "tags": ""}, {"datetaken": "2006-12-10 17:11:59", "license": "5", "title": "", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3230/2810382998_8914f0748d_o.jpg", "secret": "84d561533e", "media": "photo", "latitude": "0", "id": "2810382998", "tags": ""}, {"datetaken": "2006-12-10 17:12:33", "license": "5", "title": "Liza wrappring", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2114/2809537601_f8e9e6cac8_o.jpg", "secret": "0157331128", "media": "photo", "latitude": "0", "id": "2809537601", "tags": ""}, {"datetaken": "2006-12-10 17:45:05", "license": "5", "title": "Pictures with Adjectives", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3243/2810384938_f3d084a3aa_o.jpg", "secret": "ffd76c3c87", "media": "photo", "latitude": "0", "id": "2810384938", "tags": ""}, {"datetaken": "2006-12-10 17:45:35", "license": "5", "title": "", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3235/2810385096_88da85c95e_o.jpg", "secret": "9b0fae6915", "media": "photo", "latitude": "0", "id": "2810385096", "tags": ""}, {"datetaken": "2006-12-10 17:45:42", "license": "5", "title": "", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2314/2809538025_9de6a1f8fb_o.jpg", "secret": "792cb6131a", "media": "photo", "latitude": "0", "id": "2809538025", "tags": ""}, {"datetaken": "2006-12-10 20:21:49", "license": "5", "title": "", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3073/2810386378_9859aa29f8_o.jpg", "secret": "84d97f734d", "media": "photo", "latitude": "0", "id": "2810386378", "tags": ""}, {"datetaken": "2006-12-10 20:41:27", "license": "5", "title": "Handmade Cards", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3116/2810385586_419d6e8563_o.jpg", "secret": "81ba341cbf", "media": "photo", "latitude": "0", "id": "2810385586", "tags": ""}, {"datetaken": "2006-12-10 20:41:33", "license": "5", "title": "", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3018/2809538557_651972dce1_o.jpg", "secret": "7aa1431556", "media": "photo", "latitude": "0", "id": "2809538557", "tags": ""}, {"datetaken": "2006-12-10 20:44:52", "license": "5", "title": "Lots of Cards", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3144/2809538737_528b2ee2b2_o.jpg", "secret": "c5a5b15287", "media": "photo", "latitude": "0", "id": "2809538737", "tags": ""}, {"datetaken": "2006-12-10 20:47:26", "license": "5", "title": "", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3208/2810386034_06492623a7_o.jpg", "secret": "0d62c73fbd", "media": "photo", "latitude": "0", "id": "2810386034", "tags": ""}, {"datetaken": "2006-12-10 22:13:21", "license": "5", "title": "Cutting Fudge", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3145/2809536115_32235dd5f1_o.jpg", "secret": "88f671c9e6", "media": "photo", "latitude": "0", "id": "2809536115", "tags": "andrew"}, {"datetaken": "2006-12-10 22:13:30", "license": "5", "title": "", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3211/2809536219_76d8ec88ae_o.jpg", "secret": "aea90085e6", "media": "photo", "latitude": "0", "id": "2809536219", "tags": "andrew"}, {"datetaken": "2006-12-10 22:14:02", "license": "5", "title": "Fudge tins waiting", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3274/2809536361_5defe43461_o.jpg", "secret": "44f18c6f11", "media": "photo", "latitude": "0", "id": "2809536361", "tags": ""}, {"datetaken": "2006-12-10 23:32:59", "license": "5", "title": "Crates", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3284/2809536791_34b945e6d7_o.jpg", "secret": "eaf3173f50", "media": "photo", "latitude": "0", "id": "2809536791", "tags": ""}, {"datetaken": "2006-12-10 23:59:23", "license": "5", "title": "3 Tin sizes", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3206/2809537141_1ff82c55fb_o.jpg", "secret": "8392988715", "media": "photo", "latitude": "0", "id": "2809537141", "tags": ""}, {"datetaken": "2006-12-11 00:06:55", "license": "5", "title": "Chocolate covered strawberries", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3091/2810386190_fb1a98f58d_o.jpg", "secret": "6d1d549991", "media": "photo", "latitude": "0", "id": "2810386190", "tags": "andrew"}, {"datetaken": "2006-12-11 00:08:54", "license": "5", "title": "", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3264/2809536969_b339aec05f_o.jpg", "secret": "a0efef5f00", "media": "photo", "latitude": "0", "id": "2809536969", "tags": ""}, {"datetaken": "2006-12-11 16:28:28", "license": "5", "title": "Congratulations Posters", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3066/2809539417_3e1cb8f29b_o.jpg", "secret": "6407de08c3", "media": "photo", "latitude": "0", "id": "2809539417", "tags": ""}, {"datetaken": "2006-12-11 16:28:40", "license": "5", "title": "", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3042/2809539589_96d0c3fb97_o.jpg", "secret": "1844a172f7", "media": "photo", "latitude": "0", "id": "2809539589", "tags": ""}, {"datetaken": "2006-12-11 16:30:21", "license": "5", "title": "", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2281/2809539693_6be51f681c_o.jpg", "secret": "f8e6a8a145", "media": "photo", "latitude": "0", "id": "2809539693", "tags": ""}, {"datetaken": "2006-12-11 16:30:32", "license": "5", "title": "", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3268/2810386904_dd51f29980_o.jpg", "secret": "9a311a7f64", "media": "photo", "latitude": "0", "id": "2810386904", "tags": ""}, {"datetaken": "2006-12-11 16:30:48", "license": "5", "title": "", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3079/2810387076_be8bb6b004_o.jpg", "secret": "e7b97c6bcc", "media": "photo", "latitude": "0", "id": "2810387076", "tags": ""}, {"datetaken": "2006-12-11 16:31:14", "license": "5", "title": "", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3223/2810387218_aa464c03ce_o.jpg", "secret": "fe62acc3f5", "media": "photo", "latitude": "0", "id": "2810387218", "tags": ""}, {"datetaken": "2006-12-11 16:31:30", "license": "5", "title": "", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3146/2809540315_3671b3b98e_o.jpg", "secret": "faa4c06d7a", "media": "photo", "latitude": "0", "id": "2809540315", "tags": ""}, {"datetaken": "2006-12-11 16:31:36", "license": "5", "title": "", "text": "", "album_id": "72157607015984014", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3012/2809540461_b0268a3562_o.jpg", "secret": "dff197870d", "media": "photo", "latitude": "0", "id": "2809540461", "tags": ""}, {"datetaken": "2010-01-01 12:34:19", "license": "3", "title": "P1010027", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2780/4234298048_9e1b023887_o.jpg", "secret": "7a737aeb6f", "media": "photo", "latitude": "0", "id": "4234298048", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:34:20", "license": "3", "title": "P1010028", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4233524909_af5c69fc63_o.jpg", "secret": "05ee7a51fd", "media": "photo", "latitude": "0", "id": "4233524909", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:34:22", "license": "3", "title": "P1010029", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2549/4233524995_597a152db6_o.jpg", "secret": "6a8eb417cb", "media": "photo", "latitude": "0", "id": "4233524995", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:34:25", "license": "3", "title": "P1010030", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4234298324_cdc69f5d1a_o.jpg", "secret": "bfb7a76555", "media": "photo", "latitude": "0", "id": "4234298324", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:34:27", "license": "3", "title": "P1010031", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4233525271_787c328596_o.jpg", "secret": "f67e552a98", "media": "photo", "latitude": "0", "id": "4233525271", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:34:28", "license": "3", "title": "P1010032", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4234298466_ee3de2bcf3_o.jpg", "secret": "10864eac65", "media": "photo", "latitude": "0", "id": "4234298466", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:34:31", "license": "3", "title": "P1010033", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4234298584_800460325f_o.jpg", "secret": "d9ce963d6a", "media": "photo", "latitude": "0", "id": "4234298584", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:34:37", "license": "3", "title": "P1010034", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2525/4233525815_60e78cff90_o.jpg", "secret": "5d06e3e846", "media": "photo", "latitude": "0", "id": "4233525815", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:34:39", "license": "3", "title": "P1010035", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4233525905_ec9c645111_o.jpg", "secret": "604cfbc750", "media": "photo", "latitude": "0", "id": "4233525905", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:34:42", "license": "3", "title": "P1010036", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4233526029_280b068821_o.jpg", "secret": "59156cd38d", "media": "photo", "latitude": "0", "id": "4233526029", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:34:48", "license": "3", "title": "P1010039", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4234299446_2340baf414_o.jpg", "secret": "89de5a764f", "media": "photo", "latitude": "0", "id": "4234299446", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:34:53", "license": "3", "title": "P1010041", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4233526699_04fee7de5d_o.jpg", "secret": "95582ee5f9", "media": "photo", "latitude": "0", "id": "4233526699", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:35:00", "license": "3", "title": "P1010042", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4234299910_f8b86611af_o.jpg", "secret": "d025a98f50", "media": "photo", "latitude": "0", "id": "4234299910", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:35:07", "license": "3", "title": "P1010043", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2547/4234300330_c5b5563748_o.jpg", "secret": "e152cf8984", "media": "photo", "latitude": "0", "id": "4234300330", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:35:12", "license": "3", "title": "P1010044", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4234300564_7b4a7c213c_o.jpg", "secret": "d017452a1e", "media": "photo", "latitude": "0", "id": "4234300564", "tags": "nye2009"}, {"datetaken": "2010-01-01 12:35:15", "license": "3", "title": "P1010045", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2751/4233527719_629b3edc8d_o.jpg", "secret": "4d6e28d290", "media": "photo", "latitude": "0", "id": "4233527719", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:35:17", "license": "3", "title": "P1010047", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4234300764_1acb5e82c4_o.jpg", "secret": "1ce7a92631", "media": "photo", "latitude": "0", "id": "4234300764", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:35:20", "license": "3", "title": "P1010048", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4234300918_61bd5e771f_o.jpg", "secret": "b223c3aca5", "media": "photo", "latitude": "0", "id": "4234300918", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:35:22", "license": "3", "title": "P1010049", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2767/4234301050_c2f7ee0e14_o.jpg", "secret": "8f0819a2ca", "media": "photo", "latitude": "0", "id": "4234301050", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:35:24", "license": "3", "title": "P1010050", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2760/4233528147_636e6b4dec_o.jpg", "secret": "589626aaf1", "media": "photo", "latitude": "0", "id": "4233528147", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:35:26", "license": "3", "title": "P1010051", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2676/4234301224_d357523f7e_o.jpg", "secret": "c9a9ef5c02", "media": "photo", "latitude": "0", "id": "4234301224", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:35:29", "license": "3", "title": "P1010052", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4233528393_c54d808524_o.jpg", "secret": "e4abd2e95f", "media": "photo", "latitude": "0", "id": "4233528393", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:35:31", "license": "3", "title": "P1010053", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4233528505_564b000b4c_o.jpg", "secret": "aef57c9472", "media": "photo", "latitude": "0", "id": "4233528505", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:35:33", "license": "3", "title": "P1010054", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2516/4233528607_ebb98db078_o.jpg", "secret": "e54fe64e2f", "media": "photo", "latitude": "0", "id": "4233528607", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:35:35", "license": "3", "title": "P1010055", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2534/4233528711_108d5695aa_o.jpg", "secret": "c76fdbc5fd", "media": "photo", "latitude": "0", "id": "4233528711", "tags": "christmas09"}, {"datetaken": "2010-01-01 12:35:38", "license": "3", "title": "P1010056", "text": "", "album_id": "72157623114269494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2514/4233528813_c45e65d1b2_o.jpg", "secret": "233ea4a1d4", "media": "photo", "latitude": "0", "id": "4233528813", "tags": "christmas09"}, {"datetaken": "2010-12-25 11:10:37", "license": "4", "title": "Frozen Vegetables at Christmas", "text": "", "album_id": "72157625594761301", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5008/5311797933_4ed34730b2_o.jpg", "secret": "db8d3dfb41", "media": "photo", "latitude": "0", "id": "5311797933", "tags": "christmas christmas2010"}, {"datetaken": "2010-12-25 11:12:59", "license": "4", "title": "Frozen Vegetables at Christmas", "text": "", "album_id": "72157625594761301", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5289/5312390136_2ac5cda4d7_o.jpg", "secret": "8fda4a0f02", "media": "photo", "latitude": "0", "id": "5312390136", "tags": "christmas christmas2010"}, {"datetaken": "2010-12-25 11:15:15", "license": "4", "title": "Spuds", "text": "", "album_id": "72157625594761301", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5205/5312391424_6ec6c1385d_o.jpg", "secret": "d885b5b565", "media": "photo", "latitude": "0", "id": "5312391424", "tags": "christmas christmas2010"}, {"datetaken": "2010-12-25 14:05:15", "license": "4", "title": "Recession-schmession", "text": "", "album_id": "72157625594761301", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5168/5312392788_df90eb6b6f_o.jpg", "secret": "285172849c", "media": "photo", "latitude": "0", "id": "5312392788", "tags": "christmas christmas2010"}, {"datetaken": "2010-12-25 14:51:45", "license": "4", "title": "Christmas 2010", "text": "", "album_id": "72157625594761301", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5209/5311803201_c5b4b5cb97_o.jpg", "secret": "84c6b745ee", "media": "photo", "latitude": "0", "id": "5311803201", "tags": "christmas christmas2010"}, {"datetaken": "2010-12-25 14:52:51", "license": "4", "title": "Minimum Wordage", "text": "", "album_id": "72157625594761301", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5008/5312395832_09f36f6b17_o.jpg", "secret": "68ee9c4089", "media": "photo", "latitude": "0", "id": "5312395832", "tags": "christmas christmas2010"}, {"datetaken": "2010-12-25 15:50:18", "license": "4", "title": "Christmas 2010", "text": "", "album_id": "72157625594761301", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5083/5312397656_48d017a5f6_o.jpg", "secret": "44a870829a", "media": "photo", "latitude": "0", "id": "5312397656", "tags": "christmas christmas2010"}, {"datetaken": "2010-12-25 15:51:55", "license": "4", "title": "Christmas 2010", "text": "", "album_id": "72157625594761301", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5284/5311808445_7ee06c448f_o.jpg", "secret": "b328c3b909", "media": "photo", "latitude": "0", "id": "5311808445", "tags": "christmas christmas2010"}, {"datetaken": "2010-12-25 15:53:42", "license": "4", "title": "Christmas 2010", "text": "", "album_id": "72157625594761301", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5049/5311809957_153342f3db_o.jpg", "secret": "e29772784f", "media": "photo", "latitude": "0", "id": "5311809957", "tags": "christmas christmas2010"}, {"datetaken": "2010-12-25 16:15:11", "license": "4", "title": "Did actually go to Spec Savers", "text": "", "album_id": "72157625594761301", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5284/5311811187_4aa4dfb17f_o.jpg", "secret": "c8494840cf", "media": "photo", "latitude": "0", "id": "5311811187", "tags": "christmas christmas2010"}, {"datetaken": "2010-12-25 16:15:29", "license": "4", "title": "Christmas 2010", "text": "", "album_id": "72157625594761301", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5244/5311812463_1360628998_o.jpg", "secret": "23e6677b66", "media": "photo", "latitude": "0", "id": "5311812463", "tags": "christmas christmas2010"}, {"datetaken": "2010-12-25 16:15:39", "license": "4", "title": "Spuds One Likes", "text": "", "album_id": "72157625594761301", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5089/5312404706_4fbe8c3d43_o.jpg", "secret": "bca5ee5902", "media": "photo", "latitude": "0", "id": "5312404706", "tags": "christmas christmas2010"}, {"datetaken": "2010-12-25 16:16:41", "license": "4", "title": "Capon", "text": "", "album_id": "72157625594761301", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5125/5311815153_3fbd278c99_o.jpg", "secret": "c1c1a60e24", "media": "photo", "latitude": "0", "id": "5311815153", "tags": "christmas christmas2010"}, {"datetaken": "2010-12-25 18:03:43", "license": "4", "title": "And yet he reads", "text": "", "album_id": "72157625594761301", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5081/5311816749_c78685032a_o.jpg", "secret": "e16bbe81a5", "media": "photo", "latitude": "0", "id": "5311816749", "tags": "christmas christmas2010"}, {"datetaken": "2010-12-25 18:12:19", "license": "4", "title": "Christmas 2010", "text": "", "album_id": "72157625594761301", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5281/5312409122_bb668caf4a_o.jpg", "secret": "0974176d50", "media": "photo", "latitude": "0", "id": "5312409122", "tags": "christmas christmas2010"}, {"datetaken": "2010-12-26 16:14:11", "license": "4", "title": "Fear the Future", "text": "", "album_id": "72157625594761301", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5201/5311820089_4086c92391_o.jpg", "secret": "d551e4e0ec", "media": "photo", "latitude": "0", "id": "5311820089", "tags": "leighonsea"}, {"datetaken": "2010-12-26 16:15:15", "license": "4", "title": "LLL", "text": "", "album_id": "72157625594761301", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5246/5312412682_e9c78eb630_o.jpg", "secret": "212788a3a2", "media": "photo", "latitude": "0", "id": "5312412682", "tags": "leighonsea"}, {"datetaken": "2010-12-04 17:22:13", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.343523", "url_o": "https://farm6.staticflickr.com/5041/5312201279_18b957c517_o.jpg", "secret": "78473040a5", "media": "photo", "latitude": "39.897708", "id": "5312201279", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-04 17:22:39", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.343523", "url_o": "https://farm6.staticflickr.com/5086/5312201761_59c0ddbb84_o.jpg", "secret": "c639e06453", "media": "photo", "latitude": "39.897708", "id": "5312201761", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-04 17:23:03", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.343523", "url_o": "https://farm6.staticflickr.com/5203/5312202191_654c1fd54a_o.jpg", "secret": "6272c6bc38", "media": "photo", "latitude": "39.897708", "id": "5312202191", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-04 17:31:09", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.343523", "url_o": "https://farm6.staticflickr.com/5170/5312202743_a7ebc87fff_o.jpg", "secret": "b4e744205c", "media": "photo", "latitude": "39.897708", "id": "5312202743", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-04 17:31:28", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.343523", "url_o": "https://farm6.staticflickr.com/5046/5312792602_5984508145_o.jpg", "secret": "8123a24971", "media": "photo", "latitude": "39.897708", "id": "5312792602", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-04 17:32:29", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.343523", "url_o": "https://farm6.staticflickr.com/5049/5312203845_f2e56eba47_o.jpg", "secret": "96278d8e37", "media": "photo", "latitude": "39.897708", "id": "5312203845", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-04 17:40:02", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.343523", "url_o": "https://farm6.staticflickr.com/5289/5312204339_1a249ea45f_o.jpg", "secret": "dd9a7d641d", "media": "photo", "latitude": "39.897708", "id": "5312204339", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-04 18:05:23", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.343523", "url_o": "https://farm6.staticflickr.com/5047/5312794242_ae7f79d3e2_o.jpg", "secret": "f1f939477f", "media": "photo", "latitude": "39.897708", "id": "5312794242", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-04 18:11:26", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.343523", "url_o": "https://farm6.staticflickr.com/5162/5312205537_2f776a309b_o.jpg", "secret": "85be0a3bb1", "media": "photo", "latitude": "39.897708", "id": "5312205537", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-04 18:14:09", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.343523", "url_o": "https://farm6.staticflickr.com/5247/5312206013_00d40bf54c_o.jpg", "secret": "43ecd2a318", "media": "photo", "latitude": "39.897708", "id": "5312206013", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-04 19:21:10", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.348851", "url_o": "https://farm6.staticflickr.com/5249/5312796090_ec54b07721_o.jpg", "secret": "bf133bc93a", "media": "photo", "latitude": "39.901641", "id": "5312796090", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-04 19:21:12", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.348851", "url_o": "https://farm6.staticflickr.com/5286/5312207607_63189d2a13_o.jpg", "secret": "97d8230b00", "media": "photo", "latitude": "39.901641", "id": "5312207607", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-04 19:21:29", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.348851", "url_o": "https://farm6.staticflickr.com/5007/5312797930_fd1d8fd37f_o.jpg", "secret": "e1ff3578ed", "media": "photo", "latitude": "39.901641", "id": "5312797930", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-04 19:22:00", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.348851", "url_o": "https://farm6.staticflickr.com/5164/5312209501_bf48ebeae7_o.jpg", "secret": "0d5a7397f6", "media": "photo", "latitude": "39.901641", "id": "5312209501", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-04 19:22:47", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.348851", "url_o": "https://farm6.staticflickr.com/5127/5312210021_3e900af814_o.jpg", "secret": "1b23d8a96f", "media": "photo", "latitude": "39.901641", "id": "5312210021", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-04 19:23:07", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.348851", "url_o": "https://farm6.staticflickr.com/5043/5312210599_f6aa1f4744_o.jpg", "secret": "193fae4769", "media": "photo", "latitude": "39.901641", "id": "5312210599", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-04 19:23:16", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.348851", "url_o": "https://farm6.staticflickr.com/5246/5312211305_fa888d4096_o.jpg", "secret": "70f42ac8ef", "media": "photo", "latitude": "39.901641", "id": "5312211305", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-04 19:27:18", "license": "3", "title": "2010 Swarthmore Christmas Fest", "text": "", "album_id": "72157625595266327", "longitude": "-75.348851", "url_o": "https://farm6.staticflickr.com/5087/5312211887_e8d11c0ab8_o.jpg", "secret": "5cdd8d859e", "media": "photo", "latitude": "39.901641", "id": "5312211887", "tags": "christmas family party holidays swarthmore carin newsome delco"}, {"datetaken": "2010-12-28 20:34:08", "license": "2", "title": "Guys Varsity 1", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5123/5312790772_b33d344f67_o.jpg", "secret": "091bf33b45", "media": "photo", "latitude": "0", "id": "5312790772", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:34:21", "license": "2", "title": "Guys Varsity 2", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5048/5312791542_dd4552d968_o.jpg", "secret": "8997d4d9c7", "media": "photo", "latitude": "0", "id": "5312791542", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:34:30", "license": "2", "title": "Guys Varsity 3", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5166/5312792976_5075a93c11_o.jpg", "secret": "47f544fd2c", "media": "photo", "latitude": "0", "id": "5312792976", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:48:00", "license": "2", "title": "Guys Varsity 5", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5123/5312204755_bd0a19fe66_o.jpg", "secret": "cd92fdaf9b", "media": "photo", "latitude": "0", "id": "5312204755", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:48:04", "license": "2", "title": "Guys Varsity 6", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5245/5312206721_6e2c5881c7_o.jpg", "secret": "ccc546a5de", "media": "photo", "latitude": "0", "id": "5312206721", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:48:37", "license": "2", "title": "Guys Varsity 7", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5048/5312796282_0f01e0707b_o.jpg", "secret": "4648b5419a", "media": "photo", "latitude": "0", "id": "5312796282", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:48:38", "license": "2", "title": "Guys Varsity 8", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5090/5312208119_29a3ce62b8_o.jpg", "secret": "fc630ab91b", "media": "photo", "latitude": "0", "id": "5312208119", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:49:51", "license": "2", "title": "Guys Varsity 9", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5161/5312798696_9c0501ed78_o.jpg", "secret": "5917596019", "media": "photo", "latitude": "0", "id": "5312798696", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:50:23", "license": "2", "title": "Guys Varsity 10", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5286/5312210983_22dab15fc1_o.jpg", "secret": "44fee5bb08", "media": "photo", "latitude": "0", "id": "5312210983", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:52:03", "license": "2", "title": "Guys Varsity 11", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5082/5312802792_e1f3dfae2d_o.jpg", "secret": "260c3ff8e1", "media": "photo", "latitude": "0", "id": "5312802792", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:52:04", "license": "2", "title": "Guys Varsity 12", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5201/5312215379_01e579bd0c_o.jpg", "secret": "857f885554", "media": "photo", "latitude": "0", "id": "5312215379", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:52:04", "license": "2", "title": "Guys Varsity 13", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5047/5312217705_3b5d8818c6_o.jpg", "secret": "2c060cf081", "media": "photo", "latitude": "0", "id": "5312217705", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:52:36", "license": "2", "title": "Guys Varsity 14", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5001/5312808050_68c91317de_o.jpg", "secret": "bc3e41b100", "media": "photo", "latitude": "0", "id": "5312808050", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:52:36", "license": "2", "title": "Guys Varsity 15", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5010/5312809164_3bd526956d_o.jpg", "secret": "d2a2cd8e5b", "media": "photo", "latitude": "0", "id": "5312809164", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:52:37", "license": "2", "title": "Guys Varsity 16", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5007/5312220613_287b434896_o.jpg", "secret": "98de11e357", "media": "photo", "latitude": "0", "id": "5312220613", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:52:39", "license": "2", "title": "Guys Varsity 17", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5003/5312813318_cc5a1d8688_o.jpg", "secret": "8eed870a18", "media": "photo", "latitude": "0", "id": "5312813318", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:53:32", "license": "2", "title": "Guys Varsity 18", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5170/5312224261_504f205f78_o.jpg", "secret": "7c15dba7a4", "media": "photo", "latitude": "0", "id": "5312224261", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:53:34", "license": "2", "title": "Guys Varsity 19", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5283/5312225151_0b0836e885_o.jpg", "secret": "46b1aeff39", "media": "photo", "latitude": "0", "id": "5312225151", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:54:50", "license": "2", "title": "Guys Varsity 20", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5045/5312816302_2822a6150d_o.jpg", "secret": "52301210a6", "media": "photo", "latitude": "0", "id": "5312816302", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:54:51", "license": "2", "title": "Guys Varsity 21", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5242/5312230113_89a3a0673a_o.jpg", "secret": "bbe685ddd0", "media": "photo", "latitude": "0", "id": "5312230113", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:57:22", "license": "2", "title": "Guys Varsity 22", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5130/5312821954_9df1203006_o.jpg", "secret": "49fa316054", "media": "photo", "latitude": "0", "id": "5312821954", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:57:22", "license": "2", "title": "Guys Varsity 23", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5004/5312233911_8d1db658bf_o.jpg", "secret": "71d950ae5a", "media": "photo", "latitude": "0", "id": "5312233911", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:58:20", "license": "2", "title": "Guys Varsity 24", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5002/5312824768_fcbf24d974_o.jpg", "secret": "fc75975694", "media": "photo", "latitude": "0", "id": "5312824768", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:58:20", "license": "2", "title": "Guys Varsity 25", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5289/5312236453_6262bd63a9_o.jpg", "secret": "7808ce6a3a", "media": "photo", "latitude": "0", "id": "5312236453", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 20:58:47", "license": "2", "title": "Guys Varsity 26", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5202/5312238781_a1690fb845_o.jpg", "secret": "3a9f0e8f38", "media": "photo", "latitude": "0", "id": "5312238781", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:00:24", "license": "2", "title": "Guys Varsity 27", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5050/5312240151_2043163333_o.jpg", "secret": "ae407f3088", "media": "photo", "latitude": "0", "id": "5312240151", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:01:14", "license": "2", "title": "Guys Varsity 28", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5085/5312830998_e4f97d530c_o.jpg", "secret": "e2cbffb663", "media": "photo", "latitude": "0", "id": "5312830998", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:01:24", "license": "2", "title": "Guys Varsity 29", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5248/5312831680_b19c9ea67a_o.jpg", "secret": "2f3299fbde", "media": "photo", "latitude": "0", "id": "5312831680", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:01:25", "license": "2", "title": "Guys Varsity 30", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5202/5312243443_56e9f95686_o.jpg", "secret": "18599b9a93", "media": "photo", "latitude": "0", "id": "5312243443", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:02:36", "license": "2", "title": "Guys Varsity 31", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5044/5312834864_8d95fd392f_o.jpg", "secret": "6b120de5c9", "media": "photo", "latitude": "0", "id": "5312834864", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:02:38", "license": "2", "title": "Guys Varsity 32", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5048/5312245901_7d1f0fde36_o.jpg", "secret": "4b2f9589c4", "media": "photo", "latitude": "0", "id": "5312245901", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:02:41", "license": "2", "title": "Guys Varsity 33", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5170/5312837562_4bef1ac58d_o.jpg", "secret": "94f2eff1e0", "media": "photo", "latitude": "0", "id": "5312837562", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:02:44", "license": "2", "title": "Guys Varsity 34", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5088/5312249517_db72052875_o.jpg", "secret": "e930132eb7", "media": "photo", "latitude": "0", "id": "5312249517", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:02:45", "license": "2", "title": "Guys Varsity 35", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5290/5312250623_09c4ca84f0_o.jpg", "secret": "8c77a1b086", "media": "photo", "latitude": "0", "id": "5312250623", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:02:45", "license": "2", "title": "Guys Varsity 36", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5206/5312252615_af3b6a52e8_o.jpg", "secret": "ab7f94d746", "media": "photo", "latitude": "0", "id": "5312252615", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:02:45", "license": "2", "title": "Guys Varsity 37", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5250/5312844384_603c5316f0_o.jpg", "secret": "af2c95eba6", "media": "photo", "latitude": "0", "id": "5312844384", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:02:46", "license": "2", "title": "Guys Varsity 38", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5082/5312851962_a99256d68a_o.jpg", "secret": "528c46ff6b", "media": "photo", "latitude": "0", "id": "5312851962", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:02:46", "license": "2", "title": "Guys Varsity 39", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5006/5312857692_82f4ac41f5_o.jpg", "secret": "e41ae36d25", "media": "photo", "latitude": "0", "id": "5312857692", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:03:41", "license": "2", "title": "Guys Varsity 40", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5287/5312273239_6c2cc02f27_o.jpg", "secret": "df800cf6d8", "media": "photo", "latitude": "0", "id": "5312273239", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:04:33", "license": "2", "title": "Guys Varsity 41", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5003/5312277371_99af2fb366_o.jpg", "secret": "8e34b39456", "media": "photo", "latitude": "0", "id": "5312277371", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:04:33", "license": "2", "title": "Guys Varsity 42", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5043/5312280787_fe811b61c2_o.jpg", "secret": "df09f508a6", "media": "photo", "latitude": "0", "id": "5312280787", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:04:34", "license": "2", "title": "Guys Varsity 43", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5009/5312871018_3c1ea413e2_o.jpg", "secret": "981c6867f8", "media": "photo", "latitude": "0", "id": "5312871018", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:04:49", "license": "2", "title": "Guys Varsity 44", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5204/5312282557_649d00ec11_o.jpg", "secret": "c75b0ba2b8", "media": "photo", "latitude": "0", "id": "5312282557", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:04:49", "license": "2", "title": "Guys Varsity 45", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5285/5312283385_10745ff1f4_o.jpg", "secret": "029b3daa64", "media": "photo", "latitude": "0", "id": "5312283385", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:05:24", "license": "2", "title": "Guys Varsity 46", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5287/5312284091_2d3266229c_o.jpg", "secret": "28287c0814", "media": "photo", "latitude": "0", "id": "5312284091", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:05:30", "license": "2", "title": "Guys Varsity 47", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5123/5312285295_5945641698_o.jpg", "secret": "76637126fb", "media": "photo", "latitude": "0", "id": "5312285295", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:06:05", "license": "2", "title": "Guys Varsity 48", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5007/5312876332_33c512c089_o.jpg", "secret": "3884758634", "media": "photo", "latitude": "0", "id": "5312876332", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:06:46", "license": "2", "title": "Guys Varsity 49", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5003/5312287375_03cab90d96_o.jpg", "secret": "687c5f6d83", "media": "photo", "latitude": "0", "id": "5312287375", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:08:40", "license": "2", "title": "Guys Varsity 50", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5246/5312288083_038d2c4761_o.jpg", "secret": "357862746d", "media": "photo", "latitude": "0", "id": "5312288083", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-28 21:09:10", "license": "2", "title": "Guys Varsity 51", "text": "", "album_id": "72157625721263440", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5244/5312289041_4ee2d7fc7d_o.jpg", "secret": "4c8d89e4c3", "media": "photo", "latitude": "0", "id": "5312289041", "tags": "shekinahchristianschool fairfieldchristmasclassic"}, {"datetaken": "2010-12-24 13:39:36", "license": "2", "title": "2010 Christmas 01", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5166/5312944827_841aafba9d_o.jpg", "secret": "56e415ae42", "media": "photo", "latitude": "0", "id": "5312944827", "tags": ""}, {"datetaken": "2010-12-24 13:39:57", "license": "2", "title": "2010 Christmas 02", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5247/5312945625_88d97fa199_o.jpg", "secret": "540671cbbf", "media": "photo", "latitude": "0", "id": "5312945625", "tags": ""}, {"datetaken": "2010-12-24 13:40:12", "license": "2", "title": "2010 Christmas 03", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5203/5312946929_db789e7504_o.jpg", "secret": "d4aab4a44a", "media": "photo", "latitude": "0", "id": "5312946929", "tags": ""}, {"datetaken": "2010-12-24 13:40:28", "license": "2", "title": "2010 Christmas 04", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5283/5312948259_266b0554c4_o.jpg", "secret": "6b90a98696", "media": "photo", "latitude": "0", "id": "5312948259", "tags": ""}, {"datetaken": "2010-12-24 13:40:45", "license": "2", "title": "2010 Christmas 05", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5009/5312949621_513b302326_o.jpg", "secret": "855314c915", "media": "photo", "latitude": "0", "id": "5312949621", "tags": ""}, {"datetaken": "2010-12-24 13:41:58", "license": "2", "title": "2010 Christmas 06", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5243/5312952341_2cc86ce3d9_o.jpg", "secret": "ed606ca204", "media": "photo", "latitude": "0", "id": "5312952341", "tags": ""}, {"datetaken": "2010-12-24 13:42:15", "license": "2", "title": "2010 Christmas 07", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5247/5312951183_78f818d25a_o.jpg", "secret": "d6bd94c692", "media": "photo", "latitude": "0", "id": "5312951183", "tags": ""}, {"datetaken": "2010-12-24 13:42:26", "license": "2", "title": "2010 Christmas 08", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5210/5312953619_e9e73aedc6_o.jpg", "secret": "12148390d9", "media": "photo", "latitude": "0", "id": "5312953619", "tags": ""}, {"datetaken": "2010-12-24 18:10:25", "license": "2", "title": "2010 Christmas 09", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5163/5312954685_f2d915141b_o.jpg", "secret": "f61a2d27c6", "media": "photo", "latitude": "0", "id": "5312954685", "tags": ""}, {"datetaken": "2010-12-24 18:10:39", "license": "2", "title": "2010 Christmas 10", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5168/5313546686_513b8a4aa4_o.jpg", "secret": "b258f4c8ed", "media": "photo", "latitude": "0", "id": "5313546686", "tags": ""}, {"datetaken": "2010-12-24 18:12:38", "license": "2", "title": "2010 Christmas 11", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5088/5312956317_aa63fb8fd2_o.jpg", "secret": "a0157cb88a", "media": "photo", "latitude": "0", "id": "5312956317", "tags": ""}, {"datetaken": "2010-12-24 18:14:48", "license": "2", "title": "2010 Christmas 12", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5249/5312956871_4074fd6492_o.jpg", "secret": "914ebbe15c", "media": "photo", "latitude": "0", "id": "5312956871", "tags": ""}, {"datetaken": "2010-12-24 18:15:39", "license": "2", "title": "2010 Christmas 13", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5001/5313548618_a379a013bf_o.jpg", "secret": "47f16abdf4", "media": "photo", "latitude": "0", "id": "5313548618", "tags": ""}, {"datetaken": "2010-12-24 18:15:45", "license": "2", "title": "2010 Christmas 14", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5202/5312958781_891b6b6bda_o.jpg", "secret": "084b17b41b", "media": "photo", "latitude": "0", "id": "5312958781", "tags": ""}, {"datetaken": "2010-12-24 18:17:53", "license": "2", "title": "2010 Christmas 15", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5005/5312960259_4e5a16faaf_o.jpg", "secret": "9b30b22401", "media": "photo", "latitude": "0", "id": "5312960259", "tags": ""}, {"datetaken": "2010-12-24 18:18:00", "license": "2", "title": "2010 Christmas 16", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5165/5312961495_316d052873_o.jpg", "secret": "5ff7ba2d62", "media": "photo", "latitude": "0", "id": "5312961495", "tags": ""}, {"datetaken": "2010-12-24 18:18:06", "license": "2", "title": "2010 Christmas 17", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5289/5312962963_db44c2de1e_o.jpg", "secret": "8687c5a1fb", "media": "photo", "latitude": "0", "id": "5312962963", "tags": ""}, {"datetaken": "2010-12-24 18:19:01", "license": "2", "title": "2010 Christmas 19", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5009/5313554944_2c4d8e8959_o.jpg", "secret": "37039638de", "media": "photo", "latitude": "0", "id": "5313554944", "tags": ""}, {"datetaken": "2010-12-24 18:19:40", "license": "2", "title": "2010 Christmas 20", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5082/5313556330_bc4c902496_o.jpg", "secret": "38e8bc1b9f", "media": "photo", "latitude": "0", "id": "5313556330", "tags": ""}, {"datetaken": "2010-12-24 18:19:54", "license": "2", "title": "2010 Christmas 21", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5121/5313558298_54e259b31b_o.jpg", "secret": "1e06b274bc", "media": "photo", "latitude": "0", "id": "5313558298", "tags": ""}, {"datetaken": "2010-12-24 18:22:33", "license": "2", "title": "2010 Christmas 22", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5170/5313559454_5a78276bc8_o.jpg", "secret": "39f1153e6c", "media": "photo", "latitude": "0", "id": "5313559454", "tags": ""}, {"datetaken": "2010-12-24 18:22:40", "license": "2", "title": "2010 Christmas 23", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5010/5313560662_8f87e035c9_o.jpg", "secret": "4b8b53f898", "media": "photo", "latitude": "0", "id": "5313560662", "tags": ""}, {"datetaken": "2010-12-24 19:23:28", "license": "2", "title": "2010 Christmas 24", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5202/5313561976_2b695f31db_o.jpg", "secret": "e642389a93", "media": "photo", "latitude": "0", "id": "5313561976", "tags": ""}, {"datetaken": "2010-12-24 19:23:37", "license": "2", "title": "2010 Christmas 25", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5289/5312972245_d821fcf7ed_o.jpg", "secret": "4c572c2fa6", "media": "photo", "latitude": "0", "id": "5312972245", "tags": ""}, {"datetaken": "2010-12-25 08:53:11", "license": "2", "title": "2010 Christmas 26", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5089/5312973501_05e6fbeaeb_o.jpg", "secret": "6d3edc3c1b", "media": "photo", "latitude": "0", "id": "5312973501", "tags": ""}, {"datetaken": "2010-12-25 09:31:47", "license": "2", "title": "2010 Christmas 28", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5003/5313568770_9dc54aca69_o.jpg", "secret": "ef30e7775a", "media": "photo", "latitude": "0", "id": "5313568770", "tags": ""}, {"datetaken": "2010-12-25 13:21:01", "license": "2", "title": "2010 Christmas 31", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5127/5313573116_87f93297a1_o.jpg", "secret": "5e69b43b9d", "media": "photo", "latitude": "0", "id": "5313573116", "tags": ""}, {"datetaken": "2010-12-25 14:03:02", "license": "2", "title": "2010 Christmas 32", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5085/5312981063_46f4d95b19_o.jpg", "secret": "ce9d78ce90", "media": "photo", "latitude": "0", "id": "5312981063", "tags": ""}, {"datetaken": "2010-12-25 14:03:11", "license": "2", "title": "2010 Christmas 33", "text": "", "album_id": "72157625596979281", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5210/5313574142_1fc09fe710_o.jpg", "secret": "1cb7ce50c7", "media": "photo", "latitude": "0", "id": "5313574142", "tags": ""}, {"datetaken": "2010-12-27 10:49:37", "license": "4", "title": "P1020106.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5170/5313595662_b835ba4225_o.jpg", "secret": "8af156c5fc", "media": "photo", "latitude": "0", "id": "5313595662", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 10:50:33", "license": "4", "title": "P1020107.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5208/5313014659_ab04107647_o.jpg", "secret": "6730f8f560", "media": "photo", "latitude": "0", "id": "5313014659", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 10:54:26", "license": "4", "title": "P1020108.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5209/5313024101_39c83705c5_o.jpg", "secret": "f6866f14bc", "media": "photo", "latitude": "0", "id": "5313024101", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 10:55:15", "license": "4", "title": "P1020111.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5166/5313640392_88b5088e2b_o.jpg", "secret": "38571d03a6", "media": "photo", "latitude": "0", "id": "5313640392", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 12:08:39", "license": "4", "title": "P1020112.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5207/5313031291_72d115c226_o.jpg", "secret": "294186641c", "media": "photo", "latitude": "0", "id": "5313031291", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 12:12:34", "license": "4", "title": "P1020114.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5121/5313647080_23421584b9_o.jpg", "secret": "7930ce077a", "media": "photo", "latitude": "0", "id": "5313647080", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 13:22:31", "license": "4", "title": "P1020115.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5041/5313040587_321c0df928_o.jpg", "secret": "a94b64bc85", "media": "photo", "latitude": "0", "id": "5313040587", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 14:03:27", "license": "4", "title": "P1020116.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5090/5313658180_c92f45658c_o.jpg", "secret": "412690e7fa", "media": "photo", "latitude": "0", "id": "5313658180", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 14:19:40", "license": "4", "title": "P1020117.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5242/5313669878_92cdf7dc38_o.jpg", "secret": "b3408a2776", "media": "photo", "latitude": "0", "id": "5313669878", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 14:24:18", "license": "4", "title": "P1020120.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5121/5313694568_52b57c8660_o.jpg", "secret": "27530cd3c8", "media": "photo", "latitude": "0", "id": "5313694568", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 14:30:27", "license": "4", "title": "P1020122.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5289/5313678222_f99d146031_o.jpg", "secret": "21e6ee0441", "media": "photo", "latitude": "0", "id": "5313678222", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 14:30:30", "license": "4", "title": "P1020123.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5282/5314036540_2f76087d3f_o.jpg", "secret": "69520a029b", "media": "photo", "latitude": "0", "id": "5314036540", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 14:30:48", "license": "4", "title": "P1020124.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5007/5313706364_71a1d22b98_o.jpg", "secret": "d3a2d429ef", "media": "photo", "latitude": "0", "id": "5313706364", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 14:30:51", "license": "4", "title": "P1020125.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5246/5313217745_97fa52e03c_o.jpg", "secret": "9ab465cffb", "media": "photo", "latitude": "0", "id": "5313217745", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 15:43:20", "license": "4", "title": "P1020126.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5203/5313818552_5288dde353_o.jpg", "secret": "c721bc1112", "media": "photo", "latitude": "0", "id": "5313818552", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 18:57:37", "license": "4", "title": "P1020129.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5207/5313871972_ae35f07311_o.jpg", "secret": "59160aa019", "media": "photo", "latitude": "0", "id": "5313871972", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 18:57:54", "license": "4", "title": "P1020130.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5121/5313289245_959d9d71b1_o.jpg", "secret": "539f05122c", "media": "photo", "latitude": "0", "id": "5313289245", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 18:58:00", "license": "4", "title": "P1020131.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5082/5314055934_eb4d33f8c6_o.jpg", "secret": "6a8517412d", "media": "photo", "latitude": "0", "id": "5314055934", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 19:12:11", "license": "4", "title": "P1020132.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5286/5313895632_87f73981fa_o.jpg", "secret": "fca3d993f5", "media": "photo", "latitude": "0", "id": "5313895632", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 19:12:32", "license": "4", "title": "P1020133.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5248/5314061934_c2b0e53d1f_o.jpg", "secret": "9ed9477bc5", "media": "photo", "latitude": "0", "id": "5314061934", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 22:57:38", "license": "4", "title": "P1020136.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5206/5314070460_eefc09c10c_o.jpg", "secret": "22a8691f46", "media": "photo", "latitude": "0", "id": "5314070460", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 23:13:51", "license": "4", "title": "P1020137.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5204/5314079978_f672c7ec07_o.jpg", "secret": "7e73c65dc8", "media": "photo", "latitude": "0", "id": "5314079978", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 23:14:12", "license": "4", "title": "P1020138.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5250/5313493507_bffcf4857e_o.jpg", "secret": "edc866e81e", "media": "photo", "latitude": "0", "id": "5313493507", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 23:14:22", "license": "4", "title": "P1020139.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5121/5313500383_bd4a2ea9d3_o.jpg", "secret": "69f7fc4fd2", "media": "photo", "latitude": "0", "id": "5313500383", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 23:14:22", "license": "4", "title": "P1020140.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5047/5314105210_281f67dc1a_o.jpg", "secret": "d286eca649", "media": "photo", "latitude": "0", "id": "5314105210", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 23:16:04", "license": "4", "title": "P1020141.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5123/5314114216_10d7ebb16a_o.jpg", "secret": "c41859e0b2", "media": "photo", "latitude": "0", "id": "5314114216", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-27 23:16:51", "license": "4", "title": "P1020142.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5090/5314121544_cd3bcd7f37_o.jpg", "secret": "71f6c82174", "media": "photo", "latitude": "0", "id": "5314121544", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-28 12:27:57", "license": "4", "title": "P1020143.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5130/5313534885_d6f451f96a_o.jpg", "secret": "f1fda8d65f", "media": "photo", "latitude": "0", "id": "5313534885", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-28 12:28:01", "license": "4", "title": "P1020144.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5048/5313545167_1a34e55f21_o.jpg", "secret": "81e38dcf08", "media": "photo", "latitude": "0", "id": "5313545167", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-28 18:44:19", "license": "4", "title": "P1020150.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5006/5313590995_0595865869_o.jpg", "secret": "513e3f5a3c", "media": "photo", "latitude": "0", "id": "5313590995", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-28 23:31:24", "license": "4", "title": "P1020151.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5128/5313599373_401326ba68_o.jpg", "secret": "9606320b6b", "media": "photo", "latitude": "0", "id": "5313599373", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-28 23:40:47", "license": "4", "title": "P1020152.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5084/5313605975_1afd03fa1f_o.jpg", "secret": "de332c728b", "media": "photo", "latitude": "0", "id": "5313605975", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-28 23:50:39", "license": "4", "title": "P1020153.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5044/5314208350_d6de9a5492_o.jpg", "secret": "9e763b486a", "media": "photo", "latitude": "0", "id": "5314208350", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-28 23:50:48", "license": "4", "title": "P1020154.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5170/5314216492_dc92917d7f_o.jpg", "secret": "33305c1f2c", "media": "photo", "latitude": "0", "id": "5314216492", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-28 23:51:00", "license": "4", "title": "P1020155.JPG", "text": "", "album_id": "72157625600077845", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5046/5314223998_8cde8c418e_o.jpg", "secret": "b312b26b3d", "media": "photo", "latitude": "0", "id": "5314223998", "tags": "christmas vacation holiday disneyland disney eyefi"}, {"datetaken": "2010-12-25 16:39:21", "license": "1", "title": "Brianna and Andrew", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5009/5314845260_5b235df872_o.jpg", "secret": "95f8203445", "media": "photo", "latitude": "0", "id": "5314845260", "tags": "christmas brianna"}, {"datetaken": "2010-12-25 16:41:57", "license": "1", "title": "Stocking Stuffers", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5284/5314252733_53045bd42a_o.jpg", "secret": "5517cb11cb", "media": "photo", "latitude": "0", "id": "5314252733", "tags": "christmas andrew brianna"}, {"datetaken": "2010-12-25 16:43:18", "license": "1", "title": "Stocking Stuffers", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5047/5314851570_85d58ffb2c_o.jpg", "secret": "4bfdc5ca8e", "media": "photo", "latitude": "0", "id": "5314851570", "tags": "christmas andrew brianna"}, {"datetaken": "2010-12-25 16:43:32", "license": "1", "title": "Stocking Stuffers", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5081/5314259519_419d4112e7_o.jpg", "secret": "e9fdf3178e", "media": "photo", "latitude": "0", "id": "5314259519", "tags": "christmas andrew brianna"}, {"datetaken": "2010-12-25 16:43:44", "license": "1", "title": "Stocking Stuffers", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5048/5314859906_36d2038231_o.jpg", "secret": "b9a585eff5", "media": "photo", "latitude": "0", "id": "5314859906", "tags": "christmas andrew brianna"}, {"datetaken": "2010-12-25 16:46:16", "license": "1", "title": "Jen's chocolate", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5284/5314266161_fdb13d2c13_o.jpg", "secret": "f2f02f6827", "media": "photo", "latitude": "0", "id": "5314266161", "tags": "christmas jen"}, {"datetaken": "2010-12-25 16:47:06", "license": "1", "title": "Dave's new boxers", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5206/5314268677_830e298ca5_o.jpg", "secret": "f6840f663f", "media": "photo", "latitude": "0", "id": "5314268677", "tags": "christmas dave"}, {"datetaken": "2010-12-25 16:47:50", "license": "1", "title": "Dave's the boss", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5125/5314271797_11830edcf3_o.jpg", "secret": "51bbc9b1f5", "media": "photo", "latitude": "0", "id": "5314271797", "tags": "christmas dave"}, {"datetaken": "2010-12-25 16:57:27", "license": "1", "title": "Andrew Opening Presents", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5006/5314870210_0247eaf5e4_o.jpg", "secret": "c7c5727375", "media": "photo", "latitude": "0", "id": "5314870210", "tags": "christmas andrew brianna"}, {"datetaken": "2010-12-25 16:57:44", "license": "1", "title": "Andrew's Led Zeppelin shirt", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5202/5314275985_28ce0ab258_o.jpg", "secret": "6e2ec4ef85", "media": "photo", "latitude": "0", "id": "5314275985", "tags": "christmas andrew"}, {"datetaken": "2010-12-25 16:57:55", "license": "1", "title": "Andrew's Led Zeppelin shirt", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5088/5314873660_9b28701b1c_o.jpg", "secret": "6dde75bafc", "media": "photo", "latitude": "0", "id": "5314873660", "tags": "christmas andrew"}, {"datetaken": "2010-12-25 16:58:19", "license": "1", "title": "Brinna opening presents", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5209/5314279851_e0de0c5634_o.jpg", "secret": "30c79213c2", "media": "photo", "latitude": "0", "id": "5314279851", "tags": "christmas brianna"}, {"datetaken": "2010-12-25 17:01:12", "license": "1", "title": "Dave's the boss", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5042/5314877282_d3e40cace6_o.jpg", "secret": "0290be9eba", "media": "photo", "latitude": "0", "id": "5314877282", "tags": "christmas dave jen"}, {"datetaken": "2010-12-25 17:01:38", "license": "1", "title": "Andrew opening presents", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5203/5314283501_73d5bf61bc_o.jpg", "secret": "34e5a1e4be", "media": "photo", "latitude": "0", "id": "5314283501", "tags": "christmas andrew"}, {"datetaken": "2010-12-25 17:01:48", "license": "1", "title": "Andrew and his video game", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5125/5314881008_bfe7dbec12_o.jpg", "secret": "7c24551573", "media": "photo", "latitude": "0", "id": "5314881008", "tags": "christmas andrew"}, {"datetaken": "2010-12-25 17:03:10", "license": "1", "title": "Brianna and her new iPod", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5249/5314287265_ae6f5fb3b9_o.jpg", "secret": "ba61f7dded", "media": "photo", "latitude": "0", "id": "5314287265", "tags": "christmas brianna"}, {"datetaken": "2010-12-25 17:06:22", "license": "1", "title": "Brianna opening her iPod", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5243/5314289211_d8cf4d5757_o.jpg", "secret": "17886266b9", "media": "photo", "latitude": "0", "id": "5314289211", "tags": "christmas andrew brianna"}, {"datetaken": "2010-12-25 17:07:15", "license": "1", "title": "Andrew got some lady pants", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5006/5314887080_47881c56fa_o.jpg", "secret": "d84fbf40d9", "media": "photo", "latitude": "0", "id": "5314887080", "tags": "christmas andrew"}, {"datetaken": "2010-12-25 17:11:36", "license": "1", "title": "Andrew's Wah-Wah pedal", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5043/5314889106_eb0c63455d_o.jpg", "secret": "d6eda2b91a", "media": "photo", "latitude": "0", "id": "5314889106", "tags": "christmas andrew"}, {"datetaken": "2010-12-25 17:30:58", "license": "1", "title": "Andrew's cool Christmas pants", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5168/5314891932_5e2ae500b5_o.jpg", "secret": "5dba280d90", "media": "photo", "latitude": "0", "id": "5314891932", "tags": "christmas andrew"}, {"datetaken": "2010-12-25 20:40:57", "license": "1", "title": "Andrew and Jasmine", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5203/5314894284_e2ec90da73_o.jpg", "secret": "65a6d9d47d", "media": "photo", "latitude": "0", "id": "5314894284", "tags": "christmas jasmine andrew"}, {"datetaken": "2010-12-25 20:41:03", "license": "1", "title": "Andrew and Jasmine", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5162/5314896544_671c8d0aa6_o.jpg", "secret": "fc909789b8", "media": "photo", "latitude": "0", "id": "5314896544", "tags": "christmas jasmine andrew"}, {"datetaken": "2010-12-25 20:41:16", "license": "1", "title": "Jack", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5282/5314898508_93d3716afc_o.jpg", "secret": "cd3ddac260", "media": "photo", "latitude": "0", "id": "5314898508", "tags": "christmas jack"}, {"datetaken": "2010-12-25 21:30:43", "license": "1", "title": "Annie, Jen, and Brianna", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5044/5314304789_06374155d0_o.jpg", "secret": "762d3ff58f", "media": "photo", "latitude": "0", "id": "5314304789", "tags": "christmas jen annie brianna"}, {"datetaken": "2010-12-25 21:30:58", "license": "1", "title": "Dave and Andrew playing video games", "text": "", "album_id": "72157625679317163", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5010/5314902600_81bdd2fab6_o.jpg", "secret": "6a70734a14", "media": "photo", "latitude": "0", "id": "5314902600", "tags": "christmas dave andrew"}, {"datetaken": "2007-11-09 00:53:33", "license": "3", "title": "Alex2", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2070/1931162174_7bd6703b07_o.jpg", "secret": "35327b8ec1", "media": "photo", "latitude": "0", "id": "1931162174", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:53:35", "license": "3", "title": "AlexDylan", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2203/1930332785_27dc641cb6_o.jpg", "secret": "f97f4b242a", "media": "photo", "latitude": "0", "id": "1930332785", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:53:36", "license": "3", "title": "Chad2", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2401/1930333049_5c282f48ca_o.jpg", "secret": "ad34c8ffef", "media": "photo", "latitude": "0", "id": "1930333049", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:53:38", "license": "3", "title": "Chad", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2225/1931163204_ebacc55e4b_o.jpg", "secret": "09dfbca379", "media": "photo", "latitude": "0", "id": "1931163204", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:53:46", "license": "3", "title": "Dylan2", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2113/1930334665_50ebfc9e80_o.jpg", "secret": "f7bbe9a3c9", "media": "photo", "latitude": "0", "id": "1930334665", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:53:47", "license": "3", "title": "Dylan", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2179/1931164832_f70359bbe0_o.jpg", "secret": "2825adf014", "media": "photo", "latitude": "0", "id": "1931164832", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:53:49", "license": "3", "title": "DylanJohn", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2359/1930335215_48ec5604bd_o.jpg", "secret": "ade87de283", "media": "photo", "latitude": "0", "id": "1930335215", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:53:50", "license": "3", "title": "GloriaHoney2", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2297/1931165290_323cf560e8_o.jpg", "secret": "65d6a1b654", "media": "photo", "latitude": "0", "id": "1931165290", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:53:53", "license": "3", "title": "GloriaHoney3", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2091/1931165862_d44ea0ae91_o.jpg", "secret": "3b4b283fab", "media": "photo", "latitude": "0", "id": "1931165862", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:53:55", "license": "3", "title": "GloriaHoney", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2048/1930336297_e2f7a6c6d4_o.jpg", "secret": "17b17ae1d5", "media": "photo", "latitude": "0", "id": "1930336297", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:53:57", "license": "3", "title": "group2", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2317/1930336827_e5c8366eb7_o.jpg", "secret": "e42c71b568", "media": "photo", "latitude": "0", "id": "1930336827", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:54:00", "license": "3", "title": "group", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2036/1931167182_9cb1f50b24_o.jpg", "secret": "694e00911f", "media": "photo", "latitude": "0", "id": "1931167182", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:54:01", "license": "3", "title": "Jim", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2200/1930337555_41ed537f9c_o.jpg", "secret": "2a8c290d2f", "media": "photo", "latitude": "0", "id": "1930337555", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:54:02", "license": "3", "title": "JimJudy", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2061/1930337797_066e24d298_o.jpg", "secret": "ffea99e7f1", "media": "photo", "latitude": "0", "id": "1930337797", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:54:04", "license": "3", "title": "JohnChadDenise", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2034/1930338151_9e790ec7a1_o.jpg", "secret": "4a44e01b8d", "media": "photo", "latitude": "0", "id": "1930338151", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:54:06", "license": "3", "title": "JohnGloria", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2093/1930338485_97a34c5b84_o.jpg", "secret": "4839d2be30", "media": "photo", "latitude": "0", "id": "1930338485", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:54:08", "license": "3", "title": "JudyAlex", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2012/1930338671_553fda9b7b_o.jpg", "secret": "e63668153e", "media": "photo", "latitude": "0", "id": "1930338671", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:54:09", "license": "3", "title": "JudyAlexDougJimChad", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2199/1930339007_b13ea0c71e_o.jpg", "secret": "de78adcb27", "media": "photo", "latitude": "0", "id": "1930339007", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:54:10", "license": "3", "title": "JudyAlexGloria", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2300/1930339259_96a7cc6ae7_o.jpg", "secret": "763bde3117", "media": "photo", "latitude": "0", "id": "1930339259", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:54:13", "license": "3", "title": "JudyAlexGloriaJim", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2284/1931169610_4c48601ebc_o.jpg", "secret": "1b17ce4dc0", "media": "photo", "latitude": "0", "id": "1931169610", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:54:15", "license": "3", "title": "kids", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2213/1930340151_207cd06b81_o.jpg", "secret": "f22f954b84", "media": "photo", "latitude": "0", "id": "1930340151", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:54:16", "license": "3", "title": "people2", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2405/1930340421_e65a6e7dc8_o.jpg", "secret": "832e000739", "media": "photo", "latitude": "0", "id": "1930340421", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2007-11-09 00:54:18", "license": "3", "title": "people", "text": "", "album_id": "72157603031133447", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2114/1931170618_1f8e0ddd17_o.jpg", "secret": "268dadb608", "media": "photo", "latitude": "0", "id": "1931170618", "tags": "2003 family friends christmastreehunt"}, {"datetaken": "2004-12-25 09:50:39", "license": "3", "title": "IMG_4191: Alex and Tricia", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8555947_7b00c8bfe3_o.jpg", "secret": "7b00c8bfe3", "media": "photo", "latitude": "0", "id": "8555947", "tags": "christmas family"}, {"datetaken": "2004-12-25 09:51:40", "license": "3", "title": "IMG_4193: Mom, Lorrie and Guelfo", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8555969_013b714c91_o.jpg", "secret": "013b714c91", "media": "photo", "latitude": "0", "id": "8555969", "tags": "christmas family"}, {"datetaken": "2004-12-25 09:52:13", "license": "3", "title": "IMG_4194: Alex and Tricia Hug", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8556004_0efc432089_o.jpg", "secret": "0efc432089", "media": "photo", "latitude": "0", "id": "8556004", "tags": "christmas family"}, {"datetaken": "2004-12-25 09:54:15", "license": "3", "title": "IMG_4196: Alex Unwraps a Gift", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8556031_2783445fe1_o.jpg", "secret": "2783445fe1", "media": "photo", "latitude": "0", "id": "8556031", "tags": "christmas family"}, {"datetaken": "2004-12-25 09:54:47", "license": "3", "title": "IMG_4197: Tricia", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8556058_2a60c028ee_o.jpg", "secret": "2a60c028ee", "media": "photo", "latitude": "0", "id": "8556058", "tags": "christmas family"}, {"datetaken": "2004-12-25 09:59:59", "license": "3", "title": "IMG_4198: Tricia Hunts for a Gift", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8556089_b9cecccdd9_o.jpg", "secret": "b9cecccdd9", "media": "photo", "latitude": "0", "id": "8556089", "tags": "christmas family"}, {"datetaken": "2004-12-25 10:01:42", "license": "3", "title": "IMG_4200: JoAnn", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8556144_f7222aea3d_o.jpg", "secret": "f7222aea3d", "media": "photo", "latitude": "0", "id": "8556144", "tags": "christmas family"}, {"datetaken": "2004-12-25 10:03:04", "license": "3", "title": "IMG_4201: Mom", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8556182_ae1e4d79af_o.jpg", "secret": "ae1e4d79af", "media": "photo", "latitude": "0", "id": "8556182", "tags": "christmas family"}, {"datetaken": "2004-12-25 10:03:08", "license": "3", "title": "IMG_4202: Lorrie", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8556225_28cc6df657_o.jpg", "secret": "28cc6df657", "media": "photo", "latitude": "0", "id": "8556225", "tags": "christmas family"}, {"datetaken": "2004-12-25 10:03:16", "license": "3", "title": "IMG_4203: JoAnn and Alex", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8556266_9876e7cad2_o.jpg", "secret": "9876e7cad2", "media": "photo", "latitude": "0", "id": "8556266", "tags": "christmas family"}, {"datetaken": "2004-12-25 10:13:42", "license": "3", "title": "IMG_4204: Joie", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8556300_9a7c044a19_o.jpg", "secret": "9a7c044a19", "media": "photo", "latitude": "0", "id": "8556300", "tags": "christmas family"}, {"datetaken": "2004-12-25 10:18:51", "license": "3", "title": "IMG_4205: Tricia", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8556314_33784fff71_o.jpg", "secret": "33784fff71", "media": "photo", "latitude": "0", "id": "8556314", "tags": "christmas family"}, {"datetaken": "2004-12-25 11:18:40", "license": "3", "title": "IMG_4211: Alex, Lorrie and Joie", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8556348_c873f863a9_o.jpg", "secret": "c873f863a9", "media": "photo", "latitude": "0", "id": "8556348", "tags": "christmas family"}, {"datetaken": "2004-12-25 11:23:34", "license": "3", "title": "IMG_4212: Alex and Tricia Do the Life Saver Thing", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8556379_d9f3432b6f_o.jpg", "secret": "d9f3432b6f", "media": "photo", "latitude": "0", "id": "8556379", "tags": "christmas family"}, {"datetaken": "2004-12-25 11:24:12", "license": "3", "title": "IMG_4213: Tricia Unwraps a Gift", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/8556403_0af0ac3085_o.jpg", "secret": "0af0ac3085", "media": "photo", "latitude": "0", "id": "8556403", "tags": "christmas family"}, {"datetaken": "2004-12-25 11:26:14", "license": "3", "title": "IMG_4214: Tricia", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/8556413_f52d289286_o.jpg", "secret": "f52d289286", "media": "photo", "latitude": "0", "id": "8556413", "tags": "christmas family"}, {"datetaken": "2004-12-25 11:28:00", "license": "3", "title": "IMG_4217: Tricia, Guelfo and Alex", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8556432_da402a1969_o.jpg", "secret": "da402a1969", "media": "photo", "latitude": "0", "id": "8556432", "tags": "christmas family"}, {"datetaken": "2004-12-25 11:28:15", "license": "3", "title": "IMG_4218: Tricia, Guelfo, Alex and JoAnn", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8556441_db508edf0d_o.jpg", "secret": "db508edf0d", "media": "photo", "latitude": "0", "id": "8556441", "tags": "christmas family"}, {"datetaken": "2004-12-25 11:29:24", "license": "3", "title": "IMG_4219: Tricia, Alex and JoAnn", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8556455_50d780e58e_o.jpg", "secret": "50d780e58e", "media": "photo", "latitude": "0", "id": "8556455", "tags": "christmas family"}, {"datetaken": "2004-12-25 11:31:29", "license": "3", "title": "IMG_4221: A Bear Between Her Feet", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/8556482_b2f0b7fc24_o.jpg", "secret": "b2f0b7fc24", "media": "photo", "latitude": "0", "id": "8556482", "tags": "christmas family"}, {"datetaken": "2004-12-25 11:38:15", "license": "3", "title": "IMG_4222: Mom and Lorrie", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/8556491_7d970c3679_o.jpg", "secret": "7d970c3679", "media": "photo", "latitude": "0", "id": "8556491", "tags": "christmas family"}, {"datetaken": "2004-12-25 11:54:21", "license": "3", "title": "IMG_4224: Mom", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8556508_439f5005b3_o.jpg", "secret": "439f5005b3", "media": "photo", "latitude": "0", "id": "8556508", "tags": "christmas family"}, {"datetaken": "2004-12-25 17:06:38", "license": "3", "title": "IMG_4225", "text": "", "album_id": "212372", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/8556517_10549908e2_o.jpg", "secret": "10549908e2", "media": "photo", "latitude": "0", "id": "8556517", "tags": "christmas family"}, {"datetaken": "2004-12-05 16:08:33", "license": "1", "title": "Off to find the perfect tree", "text": "", "album_id": "50154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1987765_65f7e9433a_o.jpg", "secret": "65f7e9433a", "media": "photo", "latitude": "0", "id": "1987765", "tags": "christmas cute dawn christmastree"}, {"datetaken": "2004-12-05 16:17:12", "license": "1", "title": "Tree killer", "text": "", "album_id": "50154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1987759_0d9614b034_o.jpg", "secret": "0d9614b034", "media": "photo", "latitude": "0", "id": "1987759", "tags": "christmas cute dawn christmastree"}, {"datetaken": "2004-12-05 18:47:57", "license": "1", "title": "Lights", "text": "", "album_id": "50154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1987747_55631f9b22_o.jpg", "secret": "55631f9b22", "media": "photo", "latitude": "0", "id": "1987747", "tags": "christmas christmastree"}, {"datetaken": "2004-12-05 18:54:50", "license": "1", "title": "Better side", "text": "", "album_id": "50154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1987746_5882037f62_o.jpg", "secret": "5882037f62", "media": "photo", "latitude": "0", "id": "1987746", "tags": "christmas christmastree butt"}, {"datetaken": "2004-12-05 19:15:47", "license": "1", "title": "The stockings were hung...", "text": "", "album_id": "50154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1987740_48ce3c76a8_o.jpg", "secret": "48ce3c76a8", "media": "photo", "latitude": "0", "id": "1987740", "tags": "christmas christmastree"}, {"datetaken": "2004-12-05 19:29:34", "license": "1", "title": "Eggnog!", "text": "", "album_id": "50154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1987729_049ef143ba_o.jpg", "secret": "049ef143ba", "media": "photo", "latitude": "0", "id": "1987729", "tags": "christmas christmastree"}, {"datetaken": "2004-12-05 20:07:16", "license": "1", "title": "Tree topper", "text": "", "album_id": "50154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1987656_2212195901_o.jpg", "secret": "2212195901", "media": "photo", "latitude": "0", "id": "1987656", "tags": "christmas dawn christmastree"}, {"datetaken": "2004-12-05 20:15:05", "license": "1", "title": "Seattle Christmas", "text": "", "album_id": "50154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1987644_038ace794b_o.jpg", "secret": "038ace794b", "media": "photo", "latitude": "0", "id": "1987644", "tags": "christmas christmastree seattle"}, {"datetaken": "2004-12-05 20:17:48", "license": "1", "title": "Pause's ornament", "text": "", "album_id": "50154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1987721_fe085ce927_o.jpg", "secret": "fe085ce927", "media": "photo", "latitude": "0", "id": "1987721", "tags": "christmas christmastree ornaments"}, {"datetaken": "2004-12-05 20:18:58", "license": "1", "title": "Homie ornament", "text": "", "album_id": "50154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1987685_9a50589076_o.jpg", "secret": "9a50589076", "media": "photo", "latitude": "0", "id": "1987685", "tags": "christmas christmastree ornaments"}, {"datetaken": "2004-12-05 20:19:13", "license": "1", "title": "Ornaments", "text": "", "album_id": "50154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1987680_324c991976_o.jpg", "secret": "324c991976", "media": "photo", "latitude": "0", "id": "1987680", "tags": "christmas christmastree ornaments"}, {"datetaken": "2004-12-05 20:19:27", "license": "1", "title": "Ornaments", "text": "", "album_id": "50154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1987669_8f354f96a1_o.jpg", "secret": "8f354f96a1", "media": "photo", "latitude": "0", "id": "1987669", "tags": "christmas christmastree ornaments"}, {"datetaken": "2004-12-06 20:36:33", "license": "1", "title": "Maggie's ornament", "text": "", "album_id": "50154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1987707_bb38bb2437_o.jpg", "secret": "bb38bb2437", "media": "photo", "latitude": "0", "id": "1987707", "tags": "christmas christmastree ornaments"}, {"datetaken": "2004-12-06 20:37:03", "license": "1", "title": "Goose ornament", "text": "", "album_id": "50154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1987695_120c56ce59_o.jpg", "secret": "120c56ce59", "media": "photo", "latitude": "0", "id": "1987695", "tags": "christmas christmastree ornaments"}, {"datetaken": "2004-12-06 20:37:53", "license": "1", "title": "Monkey!", "text": "", "album_id": "50154", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1987714_e5f81d3ad0_o.jpg", "secret": "e5f81d3ad0", "media": "photo", "latitude": "0", "id": "1987714", "tags": "christmas christmastree ornaments"}, {"datetaken": "2005-01-12 08:31:59", "license": "4", "title": "Christmas 2004 - Michigan 2005 318.jpg", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1042/1227219050_464720f032_o.jpg", "secret": "232285a0f5", "media": "photo", "latitude": "0", "id": "1227219050", "tags": ""}, {"datetaken": "2005-01-12 10:45:09", "license": "4", "title": "Christmas 2004 - Michigan 2005 276.jpg", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1169/1226353055_dec7ee57fd_o.jpg", "secret": "3e55b8c716", "media": "photo", "latitude": "0", "id": "1226353055", "tags": ""}, {"datetaken": "2005-01-12 10:45:45", "license": "4", "title": "Christmas 2004 - Michigan 2005 281.jpg", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1285/1227217594_9bdc03e3b0_o.jpg", "secret": "c6160dbc4a", "media": "photo", "latitude": "0", "id": "1227217594", "tags": ""}, {"datetaken": "2005-01-12 10:45:58", "license": "4", "title": "Christmas 2004 - Michigan 2005 320.jpg", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1266/1226349601_31a84157d8_o.jpg", "secret": "4c4e5da852", "media": "photo", "latitude": "0", "id": "1226349601", "tags": ""}, {"datetaken": "2005-01-12 10:47:22", "license": "4", "title": "Christmas 2004 - Michigan 2005 324.jpg", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1169/1226356837_5ee0183633_o.jpg", "secret": "6da8c18882", "media": "photo", "latitude": "0", "id": "1226356837", "tags": ""}, {"datetaken": "2005-01-12 10:51:52", "license": "4", "title": "Chicago: toll booth; U.S. Interstate 80", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1090/1226359305_422d8c14c0_o.jpg", "secret": "fed65f9519", "media": "photo", "latitude": "0", "id": "1226359305", "tags": "usa chicago truck booth us illinois highway automobile il toll trucks interstate 80 i"}, {"datetaken": "2005-01-12 10:51:56", "license": "4", "title": "Chicago: U.S. Interstate 80 toll booth close-up", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1248/1227212218_c5ebb4714c_o.jpg", "secret": "795896151e", "media": "photo", "latitude": "0", "id": "1227212218", "tags": "usa chicago booth us illinois highway automobile il toll interstate 80 i"}, {"datetaken": "2005-01-12 11:02:12", "license": "4", "title": "Christmas 2004 - Michigan 2005 275.jpg", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1212/1226354999_6864c0c569_o.jpg", "secret": "24cc1d1f1d", "media": "photo", "latitude": "0", "id": "1226354999", "tags": ""}, {"datetaken": "2005-01-12 11:05:51", "license": "4", "title": "Christmas 2004 - Michigan 2005 238.jpg", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1297/1227213702_4cfad344fc_o.jpg", "secret": "0230d3d377", "media": "photo", "latitude": "0", "id": "1227213702", "tags": ""}, {"datetaken": "2005-01-12 11:13:18", "license": "4", "title": "Chicago: distant approach U.S. Interstate 80 bridge; Des Plaines River; Joliet, Illinois USA", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1333/1226356267_8174d198bb_o.jpg", "secret": "839d121ee9", "media": "photo", "latitude": "0", "id": "1226356267", "tags": "bridge usa chicago us illinois highway il interstate 80 joliet"}, {"datetaken": "2005-01-12 11:13:22", "license": "4", "title": "Chicago: approach U.S. Interstate 80 bridge; Des Plaines River; Joliet, Illinois USA", "text": "", "album_id": "72157601643672229", "longitude": "-88.089569", "url_o": "https://farm2.staticflickr.com/1284/1227220086_e5a3e9c5ba_o.jpg", "secret": "aa1cf1b9da", "media": "photo", "latitude": "41.511324", "id": "1227220086", "tags": "bridge usa chicago river us illinois highway united des il plaines interstate states 80 joliet i"}, {"datetaken": "2005-01-12 11:13:26", "license": "4", "title": "Chicago: through a half-dirty windshield; U.S. Interstate 80 bridge; Des Plaines River; Joliet, Illinois USA", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1240/1227219544_0d504eeb6d_o.jpg", "secret": "83a8111529", "media": "photo", "latitude": "0", "id": "1227219544", "tags": "bridge usa chicago river us illinois des il plaines joliet"}, {"datetaken": "2005-01-12 11:13:30", "license": "4", "title": "Chicago: U.S. Interstate 80 bridge; Des Plaines River; Joliet, Illinois", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1325/1227210204_62de1c0678_o.jpg", "secret": "566d870696", "media": "photo", "latitude": "0", "id": "1227210204", "tags": "usa chicago river us illinois des il plaines interstate 80 joliet i"}, {"datetaken": "2005-01-12 12:31:18", "license": "4", "title": "Christmas 2004 - Michigan 2005 248.jpg", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1291/1227216392_ec712ef63a_o.jpg", "secret": "cae4a107f6", "media": "photo", "latitude": "0", "id": "1227216392", "tags": ""}, {"datetaken": "2005-01-12 12:31:27", "license": "4", "title": "Christmas 2004 - Michigan 2005 249.jpg", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1031/1226349497_b95b8dfa42_o.jpg", "secret": "27dc916c90", "media": "photo", "latitude": "0", "id": "1226349497", "tags": ""}, {"datetaken": "2005-01-12 12:32:33", "license": "4", "title": "Christmas 2004 - Michigan 2005 253.jpg", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1128/1227214836_761eeb00a4_o.jpg", "secret": "0239e838b5", "media": "photo", "latitude": "0", "id": "1227214836", "tags": ""}, {"datetaken": "2005-01-12 12:32:46", "license": "4", "title": "Christmas 2004 - Michigan 2005 254.jpg", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1304/1227219386_72ee649be9_o.jpg", "secret": "a03bf5c1a1", "media": "photo", "latitude": "0", "id": "1227219386", "tags": ""}, {"datetaken": "2005-01-12 12:35:08", "license": "4", "title": "Christmas 2004 - Michigan 2005 255.jpg", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1004/1226360077_1208369ce8_o.jpg", "secret": "3e6733510c", "media": "photo", "latitude": "0", "id": "1226360077", "tags": ""}, {"datetaken": "2005-01-12 12:35:54", "license": "4", "title": "Christmas 2004 - Michigan 2005 258.jpg", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1146/1226358761_701f6e1ad3_o.jpg", "secret": "7dcbbba17e", "media": "photo", "latitude": "0", "id": "1226358761", "tags": ""}, {"datetaken": "2005-01-12 12:36:50", "license": "4", "title": "Christmas 2004 - Michigan 2005 263.jpg", "text": "", "album_id": "72157601643672229", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1098/1226356425_cc8bd72d2d_o.jpg", "secret": "e1455ae1b4", "media": "photo", "latitude": "0", "id": "1226356425", "tags": ""}, {"datetaken": "2004-12-19 12:22:56", "license": "5", "title": "Hydrant", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2383602_3a11f320e8_o.jpg", "secret": "3a11f320e8", "media": "photo", "latitude": "0", "id": "2383602", "tags": "shorelineatmountainview hydrant myzeitgeist california 20d"}, {"datetaken": "2004-12-19 12:28:14", "license": "5", "title": "Overgrowth", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2383604_b96bead956_o.jpg", "secret": "b96bead956", "media": "photo", "latitude": "0", "id": "2383604", "tags": "shorelineatmountainview california 20d"}, {"datetaken": "2004-12-19 12:37:27", "license": "5", "title": "Mucking About with a Friend", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2383578_ae4d4fb495_o.jpg", "secret": "ae4d4fb495", "media": "photo", "latitude": "0", "id": "2383578", "tags": "california 20d birds shorelineatmountainview"}, {"datetaken": "2004-12-19 12:37:48", "license": "5", "title": "Mucking About", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2383614_63c4fe3d6f_o.jpg", "secret": "63c4fe3d6f", "media": "photo", "latitude": "0", "id": "2383614", "tags": "california 20d birds shorelineatmountainview"}, {"datetaken": "2004-12-19 12:41:37", "license": "5", "title": "Under the Birdwalk", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2383621_620442960a_o.jpg", "secret": "620442960a", "media": "photo", "latitude": "0", "id": "2383621", "tags": "california 20d birds shorelineatmountainview"}, {"datetaken": "2004-12-19 12:41:41", "license": "5", "title": "Mucking About", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2383555_5ece7eff92_o.jpg", "secret": "5ece7eff92", "media": "photo", "latitude": "0", "id": "2383555", "tags": "california 20d birds shorelineatmountainview"}, {"datetaken": "2004-12-19 12:43:06", "license": "5", "title": "Bird", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2383553_502eaa68d2_o.jpg", "secret": "502eaa68d2", "media": "photo", "latitude": "0", "id": "2383553", "tags": "california 20d birds shorelineatmountainview"}, {"datetaken": "2004-12-19 12:43:21", "license": "5", "title": "Crane?", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2383546_83323e86e2_o.jpg", "secret": "83323e86e2", "media": "photo", "latitude": "0", "id": "2383546", "tags": "california 20d birds shorelineatmountainview"}, {"datetaken": "2004-12-19 12:43:51", "license": "5", "title": "Taking Flight", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2383543_9793107277_o.jpg", "secret": "9793107277", "media": "photo", "latitude": "0", "id": "2383543", "tags": "california 20d birds shorelineatmountainview"}, {"datetaken": "2004-12-19 12:44:04", "license": "5", "title": "Crane? Egret?", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2383539_61274d536a_o.jpg", "secret": "61274d536a", "media": "photo", "latitude": "0", "id": "2383539", "tags": "california 20d birds shorelineatmountainview"}, {"datetaken": "2004-12-19 12:44:30", "license": "5", "title": "Crane? Egret?", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2383583_6a47c05e43_o.jpg", "secret": "6a47c05e43", "media": "photo", "latitude": "0", "id": "2383583", "tags": "california 20d birds shorelineatmountainview myzeitgeist"}, {"datetaken": "2004-12-19 12:44:30", "license": "5", "title": "Crane? Egret?", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2383561_bbd81eb4e0_o.jpg", "secret": "bbd81eb4e0", "media": "photo", "latitude": "0", "id": "2383561", "tags": "california 20d birds shorelineatmountainview"}, {"datetaken": "2004-12-19 12:45:03", "license": "5", "title": "Locked Gate", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2383534_5218a536c0_o.jpg", "secret": "5218a536c0", "media": "photo", "latitude": "0", "id": "2383534", "tags": "shorelineatmountainview california 20d"}, {"datetaken": "2004-12-19 12:45:36", "license": "5", "title": "Razor Wire", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2383530_367ae490b9_o.jpg", "secret": "367ae490b9", "media": "photo", "latitude": "0", "id": "2383530", "tags": "shorelineatmountainview california 20d"}, {"datetaken": "2004-12-19 12:46:00", "license": "5", "title": "Razor Wire", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2383573_a2c8862865_o.jpg", "secret": "a2c8862865", "media": "photo", "latitude": "0", "id": "2383573", "tags": "shorelineatmountainview california 20d"}, {"datetaken": "2004-12-19 12:48:11", "license": "5", "title": "Winding", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2383567_e62ef983a3_o.jpg", "secret": "e62ef983a3", "media": "photo", "latitude": "0", "id": "2383567", "tags": "shorelineatmountainview california 20d"}, {"datetaken": "2004-12-19 12:48:36", "license": "5", "title": "Wood", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2383585_29c98e88f3_o.jpg", "secret": "29c98e88f3", "media": "photo", "latitude": "0", "id": "2383585", "tags": "shorelineatmountainview water california 20d"}, {"datetaken": "2004-12-19 12:56:30", "license": "5", "title": "Gull", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2383631_a223521e3e_o.jpg", "secret": "a223521e3e", "media": "photo", "latitude": "0", "id": "2383631", "tags": "california 20d birds shorelineatmountainview"}, {"datetaken": "2004-12-19 13:02:54", "license": "5", "title": "Puff Flowers", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2383526_8ff8f40882_o.jpg", "secret": "8ff8f40882", "media": "photo", "latitude": "0", "id": "2383526", "tags": "shorelineatmountainview flower flowers california 20d"}, {"datetaken": "2004-12-19 13:08:17", "license": "5", "title": "Fluffy", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2383593_cf9cfb329e_o.jpg", "secret": "cf9cfb329e", "media": "photo", "latitude": "0", "id": "2383593", "tags": "shorelineatmountainview flowers california 20d"}, {"datetaken": "2004-12-19 13:08:32", "license": "5", "title": "Christmas in California", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2383570_2455b22fe6_o.jpg", "secret": "2455b22fe6", "media": "photo", "latitude": "0", "id": "2383570", "tags": "shorelineatmountainview tree california 20d"}, {"datetaken": "2004-12-19 13:08:32", "license": "5", "title": "Christmas in California 2", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2383549_fdc3d1911f_o.jpg", "secret": "fdc3d1911f", "media": "photo", "latitude": "0", "id": "2383549", "tags": "shorelineatmountainview tree california 20d"}, {"datetaken": "2004-12-19 13:11:41", "license": "5", "title": "Hummingbird", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2383606_5d54ea255b_o.jpg", "secret": "5d54ea255b", "media": "photo", "latitude": "0", "id": "2383606", "tags": "california 20d birds hummingbird shorelineatmountainview"}, {"datetaken": "2004-12-19 13:15:41", "license": "5", "title": "Hydrant", "text": "", "album_id": "59962", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2383590_f961b0c022_o.jpg", "secret": "f961b0c022", "media": "photo", "latitude": "0", "id": "2383590", "tags": "shorelineatmountainview hydrant california 20d"}, {"datetaken": "2004-12-24 16:29:39", "license": "1", "title": "christmasy living room", "text": "", "album_id": "64557", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2575087_6c2d39f702_o.jpg", "secret": "6c2d39f702", "media": "photo", "latitude": "0", "id": "2575087", "tags": "christmas 2004 livingroom"}, {"datetaken": "2004-12-24 16:29:49", "license": "1", "title": "the ghost of christmas past...", "text": "", "album_id": "64557", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2575023_20d68f13ba_o.jpg", "secret": "20d68f13ba", "media": "photo", "latitude": "0", "id": "2575023", "tags": "christmas 2004 livingroom goldman"}, {"datetaken": "2004-12-24 16:30:06", "license": "1", "title": "from:", "text": "", "album_id": "64557", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2575055_19c9fbee45_o.jpg", "secret": "19c9fbee45", "media": "photo", "latitude": "0", "id": "2575055", "tags": "christmas 2004 presents"}, {"datetaken": "2004-12-24 16:30:20", "license": "1", "title": "making eggplant parmesan", "text": "", "album_id": "64557", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2575084_dfe25c7956_o.jpg", "secret": "dfe25c7956", "media": "photo", "latitude": "0", "id": "2575084", "tags": "christmas 2004 goldman cooking"}, {"datetaken": "2004-12-24 16:31:00", "license": "1", "title": "yummy food", "text": "", "album_id": "64557", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2575076_101cb7673f_o.jpg", "secret": "101cb7673f", "media": "photo", "latitude": "0", "id": "2575076", "tags": "christmas 2004 food"}, {"datetaken": "2004-12-24 16:31:06", "license": "1", "title": "moments before a fight broke out", "text": "", "album_id": "64557", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2575067_9bd31b5f8f_o.jpg", "secret": "9bd31b5f8f", "media": "photo", "latitude": "0", "id": "2575067", "tags": "christmas 2004 me cooking"}, {"datetaken": "2004-12-24 18:25:02", "license": "1", "title": "present skins", "text": "", "album_id": "64557", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2575037_fd559ed3a1_o.jpg", "secret": "fd559ed3a1", "media": "photo", "latitude": "0", "id": "2575037", "tags": "christmas 2004"}, {"datetaken": "2004-12-24 20:29:50", "license": "1", "title": "even closer up", "text": "", "album_id": "64557", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2575010_9dbc8ca33d_o.jpg", "secret": "9dbc8ca33d", "media": "photo", "latitude": "0", "id": "2575010", "tags": "christmas 2004 goldman"}, {"datetaken": "2004-12-24 20:30:07", "license": "1", "title": "covering a jew in christmas spirit", "text": "", "album_id": "64557", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2575018_88eebed7c8_o.jpg", "secret": "88eebed7c8", "media": "photo", "latitude": "0", "id": "2575018", "tags": "christmas 2004 goldman flack"}, {"datetaken": "2004-12-24 20:30:37", "license": "1", "title": "eugene and leroy the elephant", "text": "", "album_id": "64557", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2575062_5d9e5fea1c_o.jpg", "secret": "5d9e5fea1c", "media": "photo", "latitude": "0", "id": "2575062", "tags": "christmas 2004 eugene"}, {"datetaken": "2004-12-24 20:30:49", "license": "1", "title": "i saw santa clause!", "text": "", "album_id": "64557", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2575065_35ddc5eac5_o.jpg", "secret": "35ddc5eac5", "media": "photo", "latitude": "0", "id": "2575065", "tags": "christmas 2004 lane"}, {"datetaken": "2004-12-24 20:31:09", "license": "1", "title": "close up", "text": "", "album_id": "64557", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2575013_74f2099358_o.jpg", "secret": "74f2099358", "media": "photo", "latitude": "0", "id": "2575013", "tags": "christmas 2004 goldman"}, {"datetaken": "2004-12-24 20:31:23", "license": "1", "title": "BFF", "text": "", "album_id": "64557", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2574995_8ba75dddc4_o.jpg", "secret": "8ba75dddc4", "media": "photo", "latitude": "0", "id": "2574995", "tags": "christmas 2004 goldman flack eugene"}, {"datetaken": "2004-12-24 21:25:38", "license": "1", "title": "christmas apocolypse", "text": "", "album_id": "64557", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2575000_5fdbedead3_o.jpg", "secret": "5fdbedead3", "media": "photo", "latitude": "0", "id": "2575000", "tags": "christmas 2004 presents apocalypse"}, {"datetaken": "2007-10-03 21:36:59", "license": "1", "title": "1998-Christmas-001", "text": "", "album_id": "72157602251536026", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1335/1479780427_c89b482108_o.jpg", "secret": "7715359b90", "media": "photo", "latitude": "0", "id": "1479780427", "tags": ""}, {"datetaken": "2007-10-03 21:37:00", "license": "1", "title": "1998-Christmas-002", "text": "", "album_id": "72157602251536026", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1078/1480638244_76512dbab8_o.jpg", "secret": "577b30aa3d", "media": "photo", "latitude": "0", "id": "1480638244", "tags": ""}, {"datetaken": "2007-10-03 21:37:01", "license": "1", "title": "1998-Christmas-003", "text": "", "album_id": "72157602251536026", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1227/1480638316_6933b7dd4f_o.jpg", "secret": "9d26abac3d", "media": "photo", "latitude": "0", "id": "1480638316", "tags": ""}, {"datetaken": "2007-10-03 21:37:01", "license": "1", "title": "1998-Christmas-004", "text": "", "album_id": "72157602251536026", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1340/1480638380_03bfbb6a2b_o.jpg", "secret": "68e4717264", "media": "photo", "latitude": "0", "id": "1480638380", "tags": ""}, {"datetaken": "2007-10-03 21:37:03", "license": "1", "title": "1998-Christmas-005", "text": "", "album_id": "72157602251536026", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1017/1480638502_541848fb6b_o.jpg", "secret": "8f7d131940", "media": "photo", "latitude": "0", "id": "1480638502", "tags": ""}, {"datetaken": "2007-10-03 21:37:04", "license": "1", "title": "1998-Christmas-006", "text": "", "album_id": "72157602251536026", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1014/1480638552_a63843dddd_o.jpg", "secret": "f1bd7d9eb6", "media": "photo", "latitude": "0", "id": "1480638552", "tags": ""}, {"datetaken": "2007-10-03 21:37:04", "license": "1", "title": "1998-Christmas-007", "text": "", "album_id": "72157602251536026", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1435/1479780869_a592a6fc77_o.jpg", "secret": "811a6ecabb", "media": "photo", "latitude": "0", "id": "1479780869", "tags": ""}, {"datetaken": "2007-10-03 21:37:05", "license": "1", "title": "1998-Christmas-008", "text": "", "album_id": "72157602251536026", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1093/1479780921_428a16a821_o.jpg", "secret": "2255fb883e", "media": "photo", "latitude": "0", "id": "1479780921", "tags": ""}, {"datetaken": "2007-10-03 21:37:06", "license": "1", "title": "1998-Christmas-009", "text": "", "album_id": "72157602251536026", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1357/1480638722_61e25caed6_o.jpg", "secret": "8e7df551d4", "media": "photo", "latitude": "0", "id": "1480638722", "tags": ""}, {"datetaken": "2007-10-03 21:37:06", "license": "1", "title": "1998-Christmas-010", "text": "", "album_id": "72157602251536026", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1008/1480638836_0f79f8ecea_o.jpg", "secret": "d5d399366e", "media": "photo", "latitude": "0", "id": "1480638836", "tags": ""}, {"datetaken": "2007-10-03 21:37:07", "license": "1", "title": "1998-Christmas-011", "text": "", "album_id": "72157602251536026", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1356/1480638894_1bdbc535a3_o.jpg", "secret": "e4ac40fb87", "media": "photo", "latitude": "0", "id": "1480638894", "tags": ""}, {"datetaken": "2007-10-03 21:37:08", "license": "1", "title": "1998-Christmas-012", "text": "", "album_id": "72157602251536026", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1143/1480638926_dc3a788861_o.jpg", "secret": "828065a98d", "media": "photo", "latitude": "0", "id": "1480638926", "tags": ""}, {"datetaken": "2007-10-03 21:37:08", "license": "1", "title": "1998-Christmas-013", "text": "", "album_id": "72157602251536026", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1103/1479781213_f75611782f_o.jpg", "secret": "fcd6766bba", "media": "photo", "latitude": "0", "id": "1479781213", "tags": ""}, {"datetaken": "2007-10-03 21:37:09", "license": "1", "title": "1998-Christmas-014", "text": "", "album_id": "72157602251536026", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1199/1480639062_64bc375de4_o.jpg", "secret": "f1ee0128e9", "media": "photo", "latitude": "0", "id": "1480639062", "tags": ""}, {"datetaken": "2004-12-25 10:35:30", "license": "1", "title": "Deb's tree", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2631350_6a13eb4940_o.jpg", "secret": "6a13eb4940", "media": "photo", "latitude": "0", "id": "2631350", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 10:35:52", "license": "1", "title": "Corner", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2631367_2a2738d1e3_o.jpg", "secret": "2a2738d1e3", "media": "photo", "latitude": "0", "id": "2631367", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 11:32:04", "license": "1", "title": "Uncle Mark", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2631380_f07724c424_o.jpg", "secret": "f07724c424", "media": "photo", "latitude": "0", "id": "2631380", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 14:51:14", "license": "1", "title": "Red and green", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2631398_92425355cd_o.jpg", "secret": "92425355cd", "media": "photo", "latitude": "0", "id": "2631398", "tags": "christmas rockford illinois family biavati deb jenica"}, {"datetaken": "2004-12-25 14:54:44", "license": "1", "title": "Sisters", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2631416_48571a5b59_o.jpg", "secret": "48571a5b59", "media": "photo", "latitude": "0", "id": "2631416", "tags": "christmas rockford illinois family biavati deb pam karen"}, {"datetaken": "2004-12-25 15:36:52", "license": "1", "title": "Learning from the young", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2631442_b5576b74a3_o.jpg", "secret": "b5576b74a3", "media": "photo", "latitude": "0", "id": "2631442", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 15:52:54", "license": "1", "title": "Dining room", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2631473_4396308a9b_o.jpg", "secret": "4396308a9b", "media": "photo", "latitude": "0", "id": "2631473", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 15:55:36", "license": "1", "title": "Christmas at the Dolans'", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2631490_661cbf7e97_o.jpg", "secret": "661cbf7e97", "media": "photo", "latitude": "0", "id": "2631490", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 15:55:50", "license": "1", "title": "Pre-food", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2631502_ae83654641_o.jpg", "secret": "ae83654641", "media": "photo", "latitude": "0", "id": "2631502", "tags": "christmas rockford illinois family biavati deb pam pat"}, {"datetaken": "2004-12-25 15:55:59", "license": "1", "title": "Patrick", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2631504_62f1fa7d6f_o.jpg", "secret": "62f1fa7d6f", "media": "photo", "latitude": "0", "id": "2631504", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 16:05:07", "license": "1", "title": "Table", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2631521_aaca26dca7_o.jpg", "secret": "aaca26dca7", "media": "photo", "latitude": "0", "id": "2631521", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 16:06:21", "license": "1", "title": "Laughing", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2631537_ca49ff7609_o.jpg", "secret": "ca49ff7609", "media": "photo", "latitude": "0", "id": "2631537", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 16:15:57", "license": "1", "title": "Reach!", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2631560_1a7c3895a3_o.jpg", "secret": "1a7c3895a3", "media": "photo", "latitude": "0", "id": "2631560", "tags": "christmas family illinois katie rockford biavati"}, {"datetaken": "2004-12-25 16:19:48", "license": "1", "title": "Nana", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2631566_48a817270d_o.jpg", "secret": "48a817270d", "media": "photo", "latitude": "0", "id": "2631566", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 16:21:46", "license": "1", "title": "Tradition", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2631589_1a38877101_o.jpg", "secret": "1a38877101", "media": "photo", "latitude": "0", "id": "2631589", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 17:02:23", "license": "1", "title": "*ahem*", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2631604_c25747d3b5_o.jpg", "secret": "c25747d3b5", "media": "photo", "latitude": "0", "id": "2631604", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 17:24:05", "license": "1", "title": "Pre-parenthood", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2631620_c29d47e8c8_o.jpg", "secret": "c29d47e8c8", "media": "photo", "latitude": "0", "id": "2631620", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 17:26:51", "license": "1", "title": "Tree!", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2631642_fec4422a28_o.jpg", "secret": "fec4422a28", "media": "photo", "latitude": "0", "id": "2631642", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 17:38:22", "license": "1", "title": "Lissa", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2632056_23365facfa_o.jpg", "secret": "23365facfa", "media": "photo", "latitude": "0", "id": "2632056", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 17:38:31", "license": "1", "title": "Karen", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2631646_fded9d4999_o.jpg", "secret": "fded9d4999", "media": "photo", "latitude": "0", "id": "2631646", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 17:54:58", "license": "1", "title": "YAY!", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2631656_9db66c8d62_o.jpg", "secret": "9db66c8d62", "media": "photo", "latitude": "0", "id": "2631656", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 18:11:04", "license": "1", "title": "efficient", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2631662_f3bdfc820e_o.jpg", "secret": "f3bdfc820e", "media": "photo", "latitude": "0", "id": "2631662", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 20:52:15", "license": "1", "title": "Auntie and Niece", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2631674_6873b8891e_o.jpg", "secret": "6873b8891e", "media": "photo", "latitude": "0", "id": "2631674", "tags": "christmas rockford illinois family biavati deb"}, {"datetaken": "2004-12-25 20:52:40", "license": "1", "title": "related", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2631687_cde620d3d6_o.jpg", "secret": "cde620d3d6", "media": "photo", "latitude": "0", "id": "2631687", "tags": "christmas family illinois katie deb rockford biavati"}, {"datetaken": "2004-12-25 20:53:09", "license": "1", "title": "More Yu-Gi-Oh", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2631710_db742e7466_o.jpg", "secret": "db742e7466", "media": "photo", "latitude": "0", "id": "2631710", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-12-25 21:03:53", "license": "1", "title": "Toy", "text": "", "album_id": "66119", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2631740_d7ee35f0ec_o.jpg", "secret": "d7ee35f0ec", "media": "photo", "latitude": "0", "id": "2631740", "tags": "christmas rockford illinois family biavati"}, {"datetaken": "2004-11-27 15:44:33", "license": "5", "title": "County Arcade", "text": "", "album_id": "44126", "longitude": "-1.541111", "url_o": "https://farm1.staticflickr.com/2/1736567_433b163c28_o.jpg", "secret": "433b163c28", "media": "photo", "latitude": "53.798476", "id": "1736567", "tags": "leeds christmas arcade countyarcade"}, {"datetaken": "2004-11-27 15:45:11", "license": "5", "title": "Victoria Quarter", "text": "", "album_id": "44126", "longitude": "-1.540900", "url_o": "https://farm1.staticflickr.com/2/1736536_e5fc6027fa_o.jpg", "secret": "e5fc6027fa", "media": "photo", "latitude": "53.798200", "id": "1736536", "tags": "leeds christmas victoriaquarter"}, {"datetaken": "2004-11-27 15:46:09", "license": "5", "title": "Fountain", "text": "", "album_id": "44126", "longitude": "-1.540900", "url_o": "https://farm1.staticflickr.com/2/1736537_0c8c31ed1b_o.jpg", "secret": "0c8c31ed1b", "media": "photo", "latitude": "53.798200", "id": "1736537", "tags": "leeds christmas fountain victoriaquarter geolat537982 geolon15409 geotagged"}, {"datetaken": "2004-11-27 15:46:31", "license": "5", "title": "Christmas Tree in Victoria Quarter", "text": "", "album_id": "44126", "longitude": "-1.540900", "url_o": "https://farm1.staticflickr.com/2/1736533_fb811acf77_o.jpg", "secret": "fb811acf77", "media": "photo", "latitude": "53.798200", "id": "1736533", "tags": "leeds christmas christmastree victoriaquarter"}, {"datetaken": "2004-11-27 15:47:22", "license": "5", "title": "Cross Arcade", "text": "", "album_id": "44126", "longitude": "-1.540900", "url_o": "https://farm1.staticflickr.com/2/1736538_e4c47d6c94_o.jpg", "secret": "e4c47d6c94", "media": "photo", "latitude": "53.798200", "id": "1736538", "tags": "leeds christmas arcade crossarcade"}, {"datetaken": "2004-11-27 15:48:03", "license": "5", "title": "Harvey Nichols sign", "text": "", "album_id": "44126", "longitude": "-1.540900", "url_o": "https://farm1.staticflickr.com/2/1736540_11d37a17a0_o.jpg", "secret": "11d37a17a0", "media": "photo", "latitude": "53.798200", "id": "1736540", "tags": "leeds christmas harveynichols sign shop"}, {"datetaken": "2004-11-27 15:50:10", "license": "5", "title": "Thornton Arcade", "text": "", "album_id": "44126", "longitude": "-1.542205", "url_o": "https://farm1.staticflickr.com/2/1736545_aa71ac3c4a_o.jpg", "secret": "aa71ac3c4a", "media": "photo", "latitude": "53.798654", "id": "1736545", "tags": "leeds christmas arcade"}, {"datetaken": "2004-11-27 15:50:46", "license": "5", "title": "Briggate", "text": "", "album_id": "44126", "longitude": "-1.542012", "url_o": "https://farm1.staticflickr.com/2/1736546_6aa80f8adc_o.jpg", "secret": "6aa80f8adc", "media": "photo", "latitude": "53.798996", "id": "1736546", "tags": "leeds christmas briggate"}, {"datetaken": "2004-11-27 15:58:30", "license": "5", "title": "The Light", "text": "", "album_id": "44126", "longitude": "-1.546500", "url_o": "https://farm1.staticflickr.com/2/1736548_bc9650cc8b_o.jpg", "secret": "bc9650cc8b", "media": "photo", "latitude": "53.800000", "id": "1736548", "tags": "leeds christmas thelight shoppingmall"}, {"datetaken": "2004-11-27 16:03:51", "license": "5", "title": "Giant bauble", "text": "", "album_id": "44126", "longitude": "-1.543400", "url_o": "https://farm1.staticflickr.com/2/1736551_2b4bf05338_o.jpg", "secret": "2b4bf05338", "media": "photo", "latitude": "53.800000", "id": "1736551", "tags": "christmas reflection geotagged mirror leeds christmastree bauble stjohnscentre geo:lat=538 geo:lon=15434"}, {"datetaken": "2004-11-27 16:10:40", "license": "5", "title": "Queens Arcade", "text": "", "album_id": "44126", "longitude": "-1.542119", "url_o": "https://farm1.staticflickr.com/2/1736556_f3164a4112_o.jpg", "secret": "f3164a4112", "media": "photo", "latitude": "53.798312", "id": "1736556", "tags": "leeds christmas arcade queensarcade shops"}, {"datetaken": "2004-11-27 16:19:57", "license": "5", "title": "Christmas Tree in Leeds Station", "text": "", "album_id": "44126", "longitude": "-1.547334", "url_o": "https://farm1.staticflickr.com/2/1736557_4c340bf69f_o.jpg", "secret": "4c340bf69f", "media": "photo", "latitude": "53.795397", "id": "1736557", "tags": "christmas station leeds christmastree foursquare:venue=324918 ukrail:station=lds"}, {"datetaken": "2004-11-27 16:21:33", "license": "5", "title": "City Square", "text": "", "album_id": "44126", "longitude": "-1.547162", "url_o": "https://farm1.staticflickr.com/2/1736561_1ba423c2cc_o.jpg", "secret": "1ba423c2cc", "media": "photo", "latitude": "53.796284", "id": "1736561", "tags": "leeds christmas christmastree"}, {"datetaken": "2004-12-04 16:11:01", "license": "1", "title": "Kim & Presley", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1956073_32a28cf8e3_o.jpg", "secret": "32a28cf8e3", "media": "photo", "latitude": "0", "id": "1956073", "tags": "pub crawl xmas"}, {"datetaken": "2004-12-04 16:55:29", "license": "1", "title": "the scene at Beerworks", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1956070_ddef65870f_o.jpg", "secret": "ddef65870f", "media": "photo", "latitude": "0", "id": "1956070", "tags": "pub crawl xmas"}, {"datetaken": "2004-12-04 16:59:22", "license": "1", "title": "ho ho ho", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1956064_e88845e93c_o.jpg", "secret": "e88845e93c", "media": "photo", "latitude": "0", "id": "1956064", "tags": "pub crawl xmas"}, {"datetaken": "2004-12-04 17:26:02", "license": "1", "title": "Jess & Casey", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1956059_af9329b197_o.jpg", "secret": "af9329b197", "media": "photo", "latitude": "0", "id": "1956059", "tags": "pub crawl xmas"}, {"datetaken": "2004-12-04 17:58:32", "license": "1", "title": "Ned & Presley", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1956053_a3dae56f4c_o.jpg", "secret": "a3dae56f4c", "media": "photo", "latitude": "0", "id": "1956053", "tags": "pub crawl xmas"}, {"datetaken": "2004-12-04 18:11:30", "license": "1", "title": "Jess & Kim", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1956042_08a54fdd7d_o.jpg", "secret": "08a54fdd7d", "media": "photo", "latitude": "0", "id": "1956042", "tags": "pub crawl xmas"}, {"datetaken": "2004-12-04 18:24:14", "license": "1", "title": "Jason & mini-Santa", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1956039_37d52e002e_o.jpg", "secret": "37d52e002e", "media": "photo", "latitude": "0", "id": "1956039", "tags": "pub crawl xmas"}, {"datetaken": "2004-12-04 18:45:45", "license": "1", "title": "the Men", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1956034_7b7ae56d70_o.jpg", "secret": "7b7ae56d70", "media": "photo", "latitude": "0", "id": "1956034", "tags": "pub crawl xmas"}, {"datetaken": "2004-12-04 18:55:19", "license": "1", "title": "Kim & Presley", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1956030_a9c3d94164_o.jpg", "secret": "a9c3d94164", "media": "photo", "latitude": "0", "id": "1956030", "tags": "pub crawl xmas"}, {"datetaken": "2004-12-04 20:57:01", "license": "1", "title": "Casey doesn't want to touch my hair", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1956026_1ae2d9ea88_o.jpg", "secret": "1ae2d9ea88", "media": "photo", "latitude": "0", "id": "1956026", "tags": "pub crawl xmas"}, {"datetaken": "2004-12-04 21:46:12", "license": "1", "title": "who needs a beer?", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1956023_db66417e91_o.jpg", "secret": "db66417e91", "media": "photo", "latitude": "0", "id": "1956023", "tags": "xmas john pub jessica ned crawl"}, {"datetaken": "2004-12-04 21:49:17", "license": "1", "title": "the melee", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1956015_8dd1cc686f_o.jpg", "secret": "8dd1cc686f", "media": "photo", "latitude": "0", "id": "1956015", "tags": "pub crawl xmas"}, {"datetaken": "2004-12-04 22:06:36", "license": "1", "title": "Casey", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1956001_eb2235ad0b_o.jpg", "secret": "eb2235ad0b", "media": "photo", "latitude": "0", "id": "1956001", "tags": "pub crawl xmas"}, {"datetaken": "2004-12-04 22:06:49", "license": "1", "title": "Danny", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1955990_d633b45c50_o.jpg", "secret": "d633b45c50", "media": "photo", "latitude": "0", "id": "1955990", "tags": "pub crawl xmas"}, {"datetaken": "2004-12-04 22:11:05", "license": "1", "title": "Jess & Kim", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1955979_6ee399014b_o.jpg", "secret": "6ee399014b", "media": "photo", "latitude": "0", "id": "1955979", "tags": "pub crawl xmas"}, {"datetaken": "2004-12-04 22:13:04", "license": "1", "title": "Casey & Jason", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1955965_45a36d9e00_o.jpg", "secret": "45a36d9e00", "media": "photo", "latitude": "0", "id": "1955965", "tags": "pub crawl xmas"}, {"datetaken": "2004-12-04 22:14:05", "license": "1", "title": "smile for the camera", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1955976_de70819f03_o.jpg", "secret": "de70819f03", "media": "photo", "latitude": "0", "id": "1955976", "tags": "pub crawl xmas"}, {"datetaken": "2004-12-04 23:56:05", "license": "1", "title": "Lolo, Danny & Casey", "text": "", "album_id": "49396", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1955958_2509160204_o.jpg", "secret": "2509160204", "media": "photo", "latitude": "0", "id": "1955958", "tags": "pub crawl xmas"}, {"datetaken": "2004-12-04 21:49:14", "license": "2", "title": "Union Square Holiday Fair - Closed 1", "text": "", "album_id": "49513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1932440_a706d62c54_o.jpg", "secret": "a706d62c54", "media": "photo", "latitude": "0", "id": "1932440", "tags": "nyc unionsquare holidayfair closed"}, {"datetaken": "2004-12-04 21:51:36", "license": "2", "title": "Union Square Holiday Fair - Closed 2", "text": "", "album_id": "49513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1932567_ee4373ce7e_o.jpg", "secret": "ee4373ce7e", "media": "photo", "latitude": "0", "id": "1932567", "tags": "nyc unionsquare holidayfair closed"}, {"datetaken": "2004-12-05 17:36:42", "license": "2", "title": "Union Square Holiday Fair 1", "text": "", "album_id": "49513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1957526_f1bf9e2bf3_o.jpg", "secret": "f1bf9e2bf3", "media": "photo", "latitude": "0", "id": "1957526", "tags": "nyc unionsquare holidayfair christmas shopping"}, {"datetaken": "2004-12-05 17:37:37", "license": "2", "title": "Union Square Holiday Fair 2", "text": "", "album_id": "49513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1957625_a976555276_o.jpg", "secret": "a976555276", "media": "photo", "latitude": "0", "id": "1957625", "tags": "nyc unionsquare holidayfair christmas shopping"}, {"datetaken": "2004-12-05 18:00:48", "license": "2", "title": "Union Square Holiday Fair 3", "text": "", "album_id": "49513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1957722_a8af0564c2_o.jpg", "secret": "a8af0564c2", "media": "photo", "latitude": "0", "id": "1957722", "tags": "nyc unionsquare holidayfair christmas shopping"}, {"datetaken": "2004-12-05 18:02:06", "license": "2", "title": "Union Square Holiday Fair 4", "text": "", "album_id": "49513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1957793_6a12241d5d_o.jpg", "secret": "6a12241d5d", "media": "photo", "latitude": "0", "id": "1957793", "tags": "nyc unionsquare holidayfair christmas shopping"}, {"datetaken": "2004-12-05 18:02:35", "license": "2", "title": "Union Square Holiday Fair 5: Alexia Crawford Inc.", "text": "", "album_id": "49513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1957925_4cd6023217_o.jpg", "secret": "4cd6023217", "media": "photo", "latitude": "0", "id": "1957925", "tags": "nyc unionsquare holidayfair christmas shopping alexiacrawford"}, {"datetaken": "2004-12-05 18:02:50", "license": "2", "title": "Union Square Holiday Fair 6", "text": "", "album_id": "49513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1958165_5e38a481b4_o.jpg", "secret": "5e38a481b4", "media": "photo", "latitude": "0", "id": "1958165", "tags": "nyc unionsquare holidayfair christmas shopping"}, {"datetaken": "2004-12-05 18:03:36", "license": "2", "title": "Union Square Holiday Fair 7", "text": "", "album_id": "49513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1958294_46fa822942_o.jpg", "secret": "46fa822942", "media": "photo", "latitude": "0", "id": "1958294", "tags": "nyc unionsquare holidayfair christmas shopping"}, {"datetaken": "2004-12-05 18:03:42", "license": "2", "title": "Union Square Holiday Fair 8", "text": "", "album_id": "49513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1958448_04eefaef91_o.jpg", "secret": "04eefaef91", "media": "photo", "latitude": "0", "id": "1958448", "tags": "nyc unionsquare holidayfair christmas shopping"}, {"datetaken": "2004-12-05 18:04:24", "license": "2", "title": "Union Square Holiday Fair 9", "text": "", "album_id": "49513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1958582_24684d4e1e_o.jpg", "secret": "24684d4e1e", "media": "photo", "latitude": "0", "id": "1958582", "tags": "nyc unionsquare holidayfair christmas shopping"}, {"datetaken": "2004-12-05 18:04:53", "license": "2", "title": "Union Square Holiday Fair 10", "text": "", "album_id": "49513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1958704_b3d61fda74_o.jpg", "secret": "b3d61fda74", "media": "photo", "latitude": "0", "id": "1958704", "tags": "nyc unionsquare holidayfair christmas shopping"}, {"datetaken": "2004-12-05 18:07:06", "license": "2", "title": "Union Square Holiday Fair 11", "text": "", "album_id": "49513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1958814_122a632337_o.jpg", "secret": "122a632337", "media": "photo", "latitude": "0", "id": "1958814", "tags": "nyc unionsquare holidayfair christmas shopping"}, {"datetaken": "2004-12-05 18:09:22", "license": "2", "title": "Union Square Holiday Fair 12: Soup", "text": "", "album_id": "49513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1958957_25f84def9c_o.jpg", "secret": "25f84def9c", "media": "photo", "latitude": "0", "id": "1958957", "tags": "nyc unionsquare holidayfair christmas shopping"}, {"datetaken": "2004-12-05 18:14:47", "license": "2", "title": "Union Square Holiday Fair 13: Open", "text": "", "album_id": "49513", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1959050_1d75566d74_o.jpg", "secret": "1d75566d74", "media": "photo", "latitude": "0", "id": "1959050", "tags": "nyc unionsquare holidayfair christmas shopping"}, {"datetaken": "2004-12-23 23:24:15", "license": "1", "title": "blanket", "text": "", "album_id": "62362", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2480048_be97924732_o.jpg", "secret": "be97924732", "media": "photo", "latitude": "0", "id": "2480048", "tags": "cagatio shitlog teletubbies christmas catalan caganer"}, {"datetaken": "2004-12-23 23:24:18", "license": "1", "title": "face", "text": "", "album_id": "62362", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2480050_14e7e9163d_o.jpg", "secret": "14e7e9163d", "media": "photo", "latitude": "0", "id": "2480050", "tags": "cagatio shitlog teletubbies christmas catalan caganer"}, {"datetaken": "2004-12-23 23:24:20", "license": "1", "title": "let them eat bread", "text": "", "album_id": "62362", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2480052_77b62b864c_o.jpg", "secret": "77b62b864c", "media": "photo", "latitude": "0", "id": "2480052", "tags": "cagatio shitlog teletubbies christmas catalan caganer"}, {"datetaken": "2004-12-23 23:24:23", "license": "1", "title": "good cop, bad cop", "text": "", "album_id": "62362", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2480053_6d581ca794_o.jpg", "secret": "6d581ca794", "media": "photo", "latitude": "0", "id": "2480053", "tags": "cagatio shitlog teletubbies christmas catalan caganer"}, {"datetaken": "2004-12-23 23:24:29", "license": "1", "title": "unsuspecting", "text": "", "album_id": "62362", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2480057_bce9c1e202_o.jpg", "secret": "bce9c1e202", "media": "photo", "latitude": "0", "id": "2480057", "tags": "cagatio shitlog teletubbies christmas catalan caganer"}, {"datetaken": "2004-12-23 23:24:33", "license": "1", "title": "tool up", "text": "", "album_id": "62362", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2480058_35fadd62b6_o.jpg", "secret": "35fadd62b6", "media": "photo", "latitude": "0", "id": "2480058", "tags": "cagatio shitlog teletubbies christmas catalan caganer"}, {"datetaken": "2004-12-23 23:24:37", "license": "1", "title": "Shit log!", "text": "", "album_id": "62362", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2480059_0a07a8f70d_o.jpg", "secret": "0a07a8f70d", "media": "photo", "latitude": "0", "id": "2480059", "tags": "cagatio shitlog teletubbies christmas catalan caganer"}, {"datetaken": "2004-12-23 23:24:40", "license": "1", "title": "Whack you again", "text": "", "album_id": "62362", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2480060_2275ad79c4_o.jpg", "secret": "2275ad79c4", "media": "photo", "latitude": "0", "id": "2480060", "tags": "cagatio shitlog teletubbies christmas catalan caganer"}, {"datetaken": "2004-12-23 23:24:44", "license": "1", "title": "body bag", "text": "", "album_id": "62362", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2480061_6ac6333dab_o.jpg", "secret": "6ac6333dab", "media": "photo", "latitude": "0", "id": "2480061", "tags": "cagatio shitlog teletubbies christmas catalan caganer"}, {"datetaken": "2004-12-23 23:24:47", "license": "1", "title": "spoils of war", "text": "", "album_id": "62362", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2480062_85d61dd11e_o.jpg", "secret": "85d61dd11e", "media": "photo", "latitude": "0", "id": "2480062", "tags": "cagatio shitlog teletubbies christmas catalan caganer"}, {"datetaken": "2004-12-23 23:24:51", "license": "1", "title": "unwrapping the gifts", "text": "", "album_id": "62362", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2480065_7ff8ab8a2f_o.jpg", "secret": "7ff8ab8a2f", "media": "photo", "latitude": "0", "id": "2480065", "tags": "cagatio shitlog teletubbies christmas catalan caganer"}, {"datetaken": "2004-12-23 23:24:59", "license": "1", "title": "The End", "text": "", "album_id": "62362", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2480072_fc3919791e_o.jpg", "secret": "fc3919791e", "media": "photo", "latitude": "0", "id": "2480072", "tags": "cagatio shitlog teletubbies christmas catalan caganer"}, {"datetaken": "2004-12-23 23:25:01", "license": "1", "title": "The sun'll come out", "text": "", "album_id": "62362", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2480074_d6c28ae945_o.jpg", "secret": "d6c28ae945", "media": "photo", "latitude": "0", "id": "2480074", "tags": "cagatio shitlog teletubbies christmas catalan caganer"}, {"datetaken": "2004-12-23 23:25:04", "license": "1", "title": "come in Dipsy", "text": "", "album_id": "62362", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2480075_5a616f819e_o.jpg", "secret": "5a616f819e", "media": "photo", "latitude": "0", "id": "2480075", "tags": "cagatio shitlog teletubbies christmas catalan caganer"}, {"datetaken": "2004-12-23 23:25:08", "license": "1", "title": "log delivery", "text": "", "album_id": "62362", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2480076_db77b14d14_o.jpg", "secret": "db77b14d14", "media": "photo", "latitude": "0", "id": "2480076", "tags": "cagatio shitlog teletubbies christmas catalan caganer"}, {"datetaken": "2006-02-19 13:28:26", "license": "5", "title": "Jeff and Brian checking out the campus", "text": "", "album_id": "72157607013992421", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3073/2808539491_b9a4d7107a_o.jpg", "secret": "46e8af4315", "media": "photo", "latitude": "0", "id": "2808539491", "tags": ""}, {"datetaken": "2006-02-19 13:28:46", "license": "5", "title": "The Warehouse, one video venue of the church", "text": "", "album_id": "72157607013992421", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3047/2808539617_934ece0555_o.jpg", "secret": "030dd614c5", "media": "photo", "latitude": "0", "id": "2808539617", "tags": ""}, {"datetaken": "2006-02-19 13:29:30", "license": "5", "title": "Feels a bit like our church", "text": "", "album_id": "72157607013992421", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3048/2809388410_a2db5cf77b_o.jpg", "secret": "4e81ce26f6", "media": "photo", "latitude": "0", "id": "2809388410", "tags": ""}, {"datetaken": "2006-02-19 13:29:44", "license": "5", "title": "They have a Starbucks in this venue", "text": "", "album_id": "72157607013992421", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3166/2808539867_81fcb74133_o.jpg", "secret": "704f7a0a18", "media": "photo", "latitude": "0", "id": "2808539867", "tags": ""}, {"datetaken": "2006-02-19 13:35:29", "license": "5", "title": "The Auditorium, the main venue", "text": "", "album_id": "72157607013992421", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3061/2808540007_13c4992b00_o.jpg", "secret": "a5fb6393f2", "media": "photo", "latitude": "0", "id": "2808540007", "tags": ""}, {"datetaken": "2006-02-19 14:49:03", "license": "5", "title": "Howard speaks with Pastor Doyle who shows us around campus", "text": "", "album_id": "72157607013992421", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3106/2809388860_6ae87482cd_o.jpg", "secret": "e1d1bb678c", "media": "photo", "latitude": "0", "id": "2809388860", "tags": "howard doyle"}, {"datetaken": "2006-02-19 15:25:12", "license": "5", "title": "Video Venue, \"the Little Church\" was actually Doyle's first church", "text": "", "album_id": "72157607013992421", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3085/2809389000_d3448e6a9b_o.jpg", "secret": "1873735d4b", "media": "photo", "latitude": "0", "id": "2809389000", "tags": ""}, {"datetaken": "2006-02-19 15:25:32", "license": "5", "title": "It was a tiny church", "text": "", "album_id": "72157607013992421", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3118/2808540549_62845e3344_o.jpg", "secret": "8612543bc2", "media": "photo", "latitude": "0", "id": "2808540549", "tags": ""}, {"datetaken": "2006-02-19 15:27:29", "license": "5", "title": "Steeple", "text": "", "album_id": "72157607013992421", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3152/2809389396_cf34712fd7_o.jpg", "secret": "1376341cb0", "media": "photo", "latitude": "0", "id": "2809389396", "tags": ""}, {"datetaken": "2006-02-19 15:27:36", "license": "5", "title": "Sign", "text": "", "album_id": "72157607013992421", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3093/2809389528_c41c5a833e_o.jpg", "secret": "46007b996a", "media": "photo", "latitude": "0", "id": "2809389528", "tags": ""}, {"datetaken": "2010-01-01 08:39:40", "license": "4", "title": "Alon Kira (1 of 12)", "text": "", "album_id": "72157623114161836", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2558/4234291572_b6c9fdc1b6_o.jpg", "secret": "97f3afc610", "media": "photo", "latitude": "0", "id": "4234291572", "tags": "portrait man face closeup streetphotography rpc"}, {"datetaken": "2010-01-01 09:35:00", "license": "4", "title": "Local Customer (2 of 12)", "text": "", "album_id": "72157623114161836", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4234292808_2ea76184d7_o.jpg", "secret": "bd4b9f5d44", "media": "photo", "latitude": "0", "id": "4234292808", "tags": "portrait man closeup sepia beard jerusalem monotone rpc"}, {"datetaken": "2010-01-01 10:01:51", "license": "4", "title": "Shopkeeper (3 of 12)", "text": "", "album_id": "72157623114161836", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4234294380_17646da2ed_o.jpg", "secret": "1bc989d27a", "media": "photo", "latitude": "0", "id": "4234294380", "tags": "portrait man shop market jerusalem oldcity rpc shopkeeper"}, {"datetaken": "2010-01-01 10:23:32", "license": "4", "title": "Israel Mingling (9 of 12)", "text": "", "album_id": "72157623114161836", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2638/4233528521_ddfc3f23d9_o.jpg", "secret": "24816ae496", "media": "photo", "latitude": "0", "id": "4233528521", "tags": "camera men wall jerusalem talking oldcity rpc"}, {"datetaken": "2010-01-01 10:23:48", "license": "4", "title": "Resident of the Old City (10 of 12)", "text": "", "album_id": "72157623114161836", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4234302708_95926f0e70_o.jpg", "secret": "9d2238fae2", "media": "photo", "latitude": "0", "id": "4234302708", "tags": "street old portrait man bag walking beard jerusalem rpc"}, {"datetaken": "2010-01-01 10:40:17", "license": "4", "title": "Ethiopian Orthodox Tewahedo Monk (4 of 12)", "text": "", "album_id": "72157623114161836", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2695/4234295736_4d04d05fc8_o.jpg", "secret": "815900567d", "media": "photo", "latitude": "0", "id": "4234295736", "tags": "man telephone jerusalem monk rpc ethiopian"}, {"datetaken": "2010-01-01 10:46:28", "license": "4", "title": "Slavic Peregrine Doll (5 of 12)", "text": "", "album_id": "72157623114161836", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4234296680_0a9c35ffe7_o.jpg", "secret": "dd3fc0832d", "media": "photo", "latitude": "0", "id": "4234296680", "tags": "portrait woman sexy girl beautiful face closeup eyes pretty skin head young greeneyes blonde attractive lovely russian rpc bleeyes slavic"}, {"datetaken": "2010-01-01 10:57:11", "license": "4", "title": "In Shock at the Holy Sepulchre (6 of 12)", "text": "", "album_id": "72157623114161836", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2616/4234297676_f9a8583dc5_o.jpg", "secret": "00d35203de", "media": "photo", "latitude": "0", "id": "4234297676", "tags": "portrait man black church beard telephone jerusalem shock rpc holysepulchre"}, {"datetaken": "2010-01-01 11:09:46", "license": "4", "title": "Friends, Nargila and Coffee at the Local Pub (12 of 12)", "text": "", "album_id": "72157623114161836", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4234305538_dc257315f3_o.jpg", "secret": "91c78fb825", "media": "photo", "latitude": "0", "id": "4234305538", "tags": "street portrait men coffee jerusalem rpc nargila"}, {"datetaken": "2010-01-01 11:38:07", "license": "4", "title": "Misbaha (7of 12)", "text": "", "album_id": "72157623114161836", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4234299032_0d01ea4cd2_o.jpg", "secret": "e4f51da1ff", "media": "photo", "latitude": "0", "id": "4234299032", "tags": "old portrait man beads hand jerusalem tradition oldcity rpc preyer misbaha"}, {"datetaken": "2010-01-01 11:56:34", "license": "4", "title": "Behind Bars (11 of 12)", "text": "", "album_id": "72157623114161836", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2737/4234304166_5efdf235bb_o.jpg", "secret": "b52f9d27b5", "media": "photo", "latitude": "0", "id": "4234304166", "tags": "portrait man bars shoes jerusalem rpc"}, {"datetaken": "2010-01-01 12:31:32", "license": "4", "title": "Italian Tourist (8 of 12)", "text": "", "album_id": "72157623114161836", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4233527267_893051667a_o.jpg", "secret": "e52b4901c7", "media": "photo", "latitude": "0", "id": "4233527267", "tags": "portrait man beard italian friend jerusalem pipe tourist rpc chating memorycornerportraits"}, {"datetaken": "2010-01-01 00:52:12", "license": "2", "title": "DSC00491", "text": "", "album_id": "72157623114171494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4233458723_36823b67a8_o.jpg", "secret": "9e16c0d168", "media": "photo", "latitude": "0", "id": "4233458723", "tags": "merseburg"}, {"datetaken": "2010-01-01 00:54:49", "license": "2", "title": "DSC00495", "text": "", "album_id": "72157623114171494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2640/4233461049_17967090b3_o.jpg", "secret": "7e4d563eb5", "media": "photo", "latitude": "0", "id": "4233461049", "tags": "merseburg"}, {"datetaken": "2010-01-01 01:00:04", "license": "2", "title": "DSC00496", "text": "", "album_id": "72157623114171494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4233463041_009a310cac_o.jpg", "secret": "2402d0e5bd", "media": "photo", "latitude": "0", "id": "4233463041", "tags": "merseburg"}, {"datetaken": "2010-01-01 01:06:24", "license": "2", "title": "DSC00501", "text": "", "album_id": "72157623114171494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4234236058_ac5057b87e_o.jpg", "secret": "765ac0ffc3", "media": "photo", "latitude": "0", "id": "4234236058", "tags": "merseburg"}, {"datetaken": "2010-01-01 01:11:29", "license": "2", "title": "DSC00503", "text": "", "album_id": "72157623114171494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4234237988_f6174fc390_o.jpg", "secret": "fe98b03d68", "media": "photo", "latitude": "0", "id": "4234237988", "tags": "merseburg"}, {"datetaken": "2010-01-01 01:13:37", "license": "2", "title": "DSC00505", "text": "", "album_id": "72157623114171494", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4233466887_46c1615fbf_o.jpg", "secret": "edf3031c5f", "media": "photo", "latitude": "0", "id": "4233466887", "tags": "merseburg"}, {"datetaken": "2010-01-01 01:16:02", "license": "2", "title": "DSC00514", "text": "", "album_id": "72157623114171494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2525/4233468895_80344aa92e_o.jpg", "secret": "73fb6a7504", "media": "photo", "latitude": "0", "id": "4233468895", "tags": "merseburg"}, {"datetaken": "2010-01-01 01:17:19", "license": "2", "title": "DSC00519", "text": "", "album_id": "72157623114171494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4233471839_dd9deb5c95_o.jpg", "secret": "d53bbcb422", "media": "photo", "latitude": "0", "id": "4233471839", "tags": "merseburg"}, {"datetaken": "2010-01-01 01:18:51", "license": "2", "title": "DSC00530", "text": "", "album_id": "72157623114171494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4233474325_97f0db2ab0_o.jpg", "secret": "28eb03d243", "media": "photo", "latitude": "0", "id": "4233474325", "tags": "merseburg"}, {"datetaken": "2010-01-01 01:23:37", "license": "2", "title": "DSC00533", "text": "", "album_id": "72157623114171494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4233476525_d3b2099e2f_o.jpg", "secret": "ea861dccc9", "media": "photo", "latitude": "0", "id": "4233476525", "tags": "merseburg"}, {"datetaken": "2009-12-12 08:34:18", "license": "6", "title": "OLINDA : Igreja Nossa Senhora da Miseric\u00f3rdia : 1", "text": "", "album_id": "72157623210398901", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4325023543_c72e799dde_o.jpg", "secret": "f19a36155a", "media": "photo", "latitude": "0", "id": "4325023543", "tags": "brazil sky church window brasil c\u00e9u igreja da janela 2009 pernambuco senhora olinda nossa miseric\u00f3rdia"}, {"datetaken": "2009-12-12 08:41:28", "license": "6", "title": "OLINDA : Igreja Nossa Senhora da Miseric\u00f3rdia : 2", "text": "", "album_id": "72157623210398901", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4325743162_4eeaa40732_o.jpg", "secret": "aa331eb1af", "media": "photo", "latitude": "0", "id": "4325743162", "tags": "brazil sky tree church brasil c\u00e9u igreja da \u00e1rvore 2009 pernambuco senhora olinda nossa miseric\u00f3rdia"}, {"datetaken": "2009-12-12 08:42:55", "license": "6", "title": "828", "text": "", "album_id": "72157623210398901", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4325636954_d20caf3520_o.jpg", "secret": "8e12d55181", "media": "photo", "latitude": "0", "id": "4325636954", "tags": "street brazil brasil typography casa plate number 828 type 2009 pernambuco serif tipografia n\u00famero olinda tipo adress numera\u00e7\u00e3o serifada"}, {"datetaken": "2009-12-12 08:43:31", "license": "6", "title": "814", "text": "", "album_id": "72157623210398901", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4324926725_5605016932_o.jpg", "secret": "1525461354", "media": "photo", "latitude": "0", "id": "4324926725", "tags": "street pink brazil brasil typography casa rosa plate number type 2009 pernambuco serif tipografia n\u00famero olinda tipo adress 814 numera\u00e7\u00e3o serifada"}, {"datetaken": "2009-12-12 08:48:07", "license": "6", "title": "preto velho", "text": "", "album_id": "72157623210398901", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4324988193_2730664f43_o.jpg", "secret": "36058c6295", "media": "photo", "latitude": "0", "id": "4324988193", "tags": "brazil wall brasil samba preto escola 2009 pernambuco velho parede olinda gres"}, {"datetaken": "2009-12-12 08:51:51", "license": "6", "title": "OLINDA :: Igreja da S\u00e9 : 1", "text": "", "album_id": "72157623210398901", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4325783052_97debc5e1e_o.jpg", "secret": "ec814fe96d", "media": "photo", "latitude": "0", "id": "4325783052", "tags": "brazil sky church brasil s\u00e9 c\u00e9u igreja 2009 pernambuco olinda"}, {"datetaken": "2009-12-12 08:54:08", "license": "6", "title": "OLINDA :: Igreja da S\u00e9 : 2", "text": "", "album_id": "72157623210398901", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4325031799_f79ebdd097_o.jpg", "secret": "e95d1b259c", "media": "photo", "latitude": "0", "id": "4325031799", "tags": "brazil sky church brasil s\u00e9 c\u00e9u igreja 2009 pernambuco olinda"}, {"datetaken": "2009-12-12 08:56:31", "license": "6", "title": "OLINDA :: house", "text": "", "album_id": "72157623210398901", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4325628300_fa08ecd891_o.jpg", "secret": "3fef5dd733", "media": "photo", "latitude": "0", "id": "4325628300", "tags": "brazil sky brasil c\u00e9u 2009 pernambuco olinda"}, {"datetaken": "2009-12-12 09:00:01", "license": "6", "title": "atelier : 2", "text": "", "album_id": "72157623210398901", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4324940615_5b6962bb1e_o.jpg", "secret": "5cd3e0ecc2", "media": "photo", "latitude": "0", "id": "4324940615", "tags": "brazil brasil typography type letter 2009 pernambuco brasilero tipografia olinda atelier letra tipo brasil\u00earo"}, {"datetaken": "2009-12-12 09:00:07", "license": "6", "title": "atelier : 1", "text": "", "album_id": "72157623210398901", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4325700964_700669b40b_o.jpg", "secret": "d356ae5801", "media": "photo", "latitude": "0", "id": "4325700964", "tags": "brazil brasil typography type letter 2009 pernambuco brasilero tipografia olinda atelier letra tipo brasil\u00earo"}, {"datetaken": "2009-12-12 09:00:34", "license": "6", "title": "848", "text": "", "album_id": "72157623210398901", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4324919027_2d0191cb2b_o.jpg", "secret": "b689b5e5a0", "media": "photo", "latitude": "0", "id": "4324919027", "tags": "street brazil yellow brasil typography casa plate number amarelo type 2009 pernambuco tipografia n\u00famero sans olinda tipo adress 848 numera\u00e7\u00e3o"}, {"datetaken": "2009-12-12 09:08:20", "license": "6", "title": "street lamps", "text": "", "album_id": "72157623210398901", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4325620574_d7a7544f48_o.jpg", "secret": "d7c3c073d1", "media": "photo", "latitude": "0", "id": "4325620574", "tags": "street brazil sky pet luz brasil wire c\u00e9u lamps fio garrafa 2009 pernambuco olinda"}, {"datetaken": "2010-02-01 13:45:26", "license": "5", "title": "McDonough, New York", "text": "", "album_id": "72157623333774676", "longitude": "-75.768070", "url_o": "https://farm3.staticflickr.com/2748/4325215698_7cca90125d_o.jpg", "secret": "b8d53ff190", "media": "photo", "latitude": "42.498934", "id": "4325215698", "tags": "house newyork church upstate christmastree southerntier 020110"}, {"datetaken": "2010-02-01 13:46:18", "license": "5", "title": "McDonough, New York", "text": "", "album_id": "72157623333774676", "longitude": "-75.768070", "url_o": "https://farm3.staticflickr.com/2701/4324480129_2a2ce67169_o.jpg", "secret": "35d2740a67", "media": "photo", "latitude": "42.498934", "id": "4324480129", "tags": "house newyork church upstate christmastree southerntier 020110"}, {"datetaken": "2010-02-01 13:46:28", "license": "5", "title": "McDonough, New York", "text": "", "album_id": "72157623333774676", "longitude": "-75.768070", "url_o": "https://farm3.staticflickr.com/2767/4324480271_52882d73aa_o.jpg", "secret": "8567963b4d", "media": "photo", "latitude": "42.498934", "id": "4324480271", "tags": "house newyork church upstate christmastree southerntier 020110"}, {"datetaken": "2010-02-01 13:46:40", "license": "5", "title": "McDonough, New York", "text": "", "album_id": "72157623333774676", "longitude": "-75.768070", "url_o": "https://farm3.staticflickr.com/2429/4325218738_8f9b74ecc0_o.jpg", "secret": "2c86391ae4", "media": "photo", "latitude": "42.498934", "id": "4325218738", "tags": "house newyork upstate generalstore mcdonough southerntier chenango 020110"}, {"datetaken": "2010-02-01 13:47:05", "license": "5", "title": "McDonough, New York", "text": "", "album_id": "72157623333774676", "longitude": "-75.768070", "url_o": "https://farm3.staticflickr.com/2766/4325216234_3b238d854b_o.jpg", "secret": "5185e040b3", "media": "photo", "latitude": "42.498934", "id": "4325216234", "tags": "house newyork church upstate christmastree southerntier 020110"}, {"datetaken": "2010-02-01 13:49:05", "license": "5", "title": "McDonough, New York", "text": "", "album_id": "72157623333774676", "longitude": "-75.768070", "url_o": "https://farm5.staticflickr.com/4016/4324480599_757a89b2d6_o.jpg", "secret": "9aff9abc40", "media": "photo", "latitude": "42.498934", "id": "4324480599", "tags": "house newyork church upstate christmastree southerntier 020110"}, {"datetaken": "2010-02-01 13:49:27", "license": "5", "title": "McDonough, New York", "text": "", "album_id": "72157623333774676", "longitude": "-75.768070", "url_o": "https://farm5.staticflickr.com/4016/4324480721_3b17853505_o.jpg", "secret": "118b312dbc", "media": "photo", "latitude": "42.498934", "id": "4324480721", "tags": "house newyork church upstate christmastree southerntier 020110"}, {"datetaken": "2010-02-01 13:49:48", "license": "5", "title": "McDonough, New York", "text": "", "album_id": "72157623333774676", "longitude": "-75.768070", "url_o": "https://farm5.staticflickr.com/4043/4325216658_c6e7d03b57_o.jpg", "secret": "769dcbbf60", "media": "photo", "latitude": "42.498934", "id": "4325216658", "tags": "house newyork church upstate christmastree southerntier 020110"}, {"datetaken": "2010-02-01 13:50:27", "license": "5", "title": "McDonough, New York", "text": "", "album_id": "72157623333774676", "longitude": "-75.768070", "url_o": "https://farm5.staticflickr.com/4032/4325216842_f5eb8042b8_o.jpg", "secret": "040e45409f", "media": "photo", "latitude": "42.498934", "id": "4325216842", "tags": "house newyork church upstate christmastree southerntier 020110"}, {"datetaken": "2010-02-01 13:50:51", "license": "5", "title": "McDonough, New York", "text": "", "album_id": "72157623333774676", "longitude": "-75.768070", "url_o": "https://farm5.staticflickr.com/4015/4324481245_018bdcecb3_o.jpg", "secret": "57ccf5e505", "media": "photo", "latitude": "42.498934", "id": "4324481245", "tags": "house newyork church upstate christmastree southerntier 020110"}, {"datetaken": "2006-12-26 14:45:02", "license": "4", "title": "Chesterfield market hall on Boxing Day", "text": "", "album_id": "72157594456493069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/343956200_694ba5accb_o.jpg", "secret": "694ba5accb", "media": "photo", "latitude": "0", "id": "343956200", "tags": "christmas clock market derbyshire boxingday marketplace chesterfield markethall chesterfieldmarket chestefieldmarkethall"}, {"datetaken": "2006-12-26 14:45:14", "license": "4", "title": "Santa empties his mailbox", "text": "", "album_id": "72157594456493069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/343956239_6439f876c5_o.jpg", "secret": "6439f876c5", "media": "photo", "latitude": "0", "id": "343956239", "tags": "santa christmas music subway market derbyshire boxingday christmaslights marketplace chesterfield hudsons markethall chesterfieldmarket chestefieldmarkethall"}, {"datetaken": "2006-12-26 14:46:51", "license": "4", "title": "The Portland Hotel", "text": "", "album_id": "72157594456493069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/343956281_d78ac7b8ed_o.jpg", "secret": "d78ac7b8ed", "media": "photo", "latitude": "0", "id": "343956281", "tags": "christmas hotel pub market derbyshire boxingday marketplace chesterfield publichouse wetherspoon chesterfieldmarket jdwetherspoon theportlandhotel"}, {"datetaken": "2006-12-26 14:47:10", "license": "4", "title": "Chesterfield's Christmas tree", "text": "", "album_id": "72157594456493069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/343956312_f45fc4a7e7_o.jpg", "secret": "f45fc4a7e7", "media": "photo", "latitude": "0", "id": "343956312", "tags": "christmas market derbyshire boxingday christmastree marketplace chesterfield chesterfieldmarket"}, {"datetaken": "2006-12-26 14:47:24", "license": "4", "title": "Back of Chesterfield market hall", "text": "", "album_id": "72157594456493069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/343956349_2df01f2d20_o.jpg", "secret": "2df01f2d20", "media": "photo", "latitude": "0", "id": "343956349", "tags": "christmas cafe market derbyshire boxingday marketplace chesterfield markethall chesterfieldmarket chestefieldmarkethall"}, {"datetaken": "2006-12-26 14:49:07", "license": "4", "title": "Bollard", "text": "", "album_id": "72157594456493069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/343956387_f2001eb6fc_o.jpg", "secret": "f2001eb6fc", "media": "photo", "latitude": "0", "id": "343956387", "tags": "christmas market derbyshire boxingday marketplace chesterfield bollard chesterfieldmarket"}, {"datetaken": "2006-12-26 14:49:22", "license": "4", "title": "DSCF6044", "text": "", "album_id": "72157594456493069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/343956420_cb8d93ca72_o.jpg", "secret": "cb8d93ca72", "media": "photo", "latitude": "0", "id": "343956420", "tags": "christmas market derbyshire boxingday marketplace chesterfield chesterfieldmarket"}, {"datetaken": "2006-12-26 14:49:41", "license": "4", "title": "Chesterfield Court House", "text": "", "album_id": "72157594456493069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/343956474_d1e36f308c_o.jpg", "secret": "d1e36f308c", "media": "photo", "latitude": "0", "id": "343956474", "tags": "christmas court justice market derbyshire boxingday townhall courthouse marketplace chesterfield chesterfieldcourthouse chesterfieldmarket chesterfieldtownhall"}, {"datetaken": "2006-12-26 14:54:00", "license": "4", "title": "Mecca Bingo, Chesterfield", "text": "", "album_id": "72157594456493069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/343956508_27a57430d9_o.jpg", "secret": "27a57430d9", "media": "photo", "latitude": "0", "id": "343956508", "tags": "christmas market derbyshire boxingday marketplace bingo mecca chesterfield chesterfieldmarket meccabingo"}, {"datetaken": "2006-12-26 15:11:07", "license": "4", "title": "St Thomas' church", "text": "", "album_id": "72157594456493069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/343956529_b77534159a_o.jpg", "secret": "b77534159a", "media": "photo", "latitude": "0", "id": "343956529", "tags": "christmas market derbyshire boxingday marketplace stthomaschurch chesterfield brampton saintthomaschurch chesterfieldmarket"}, {"datetaken": "2006-12-30 21:59:51", "license": "3", "title": "piccadilly circus", "text": "", "album_id": "72157594486753058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/344007849_522f89e647_o.jpg", "secret": "522f89e647", "media": "photo", "latitude": "0", "id": "344007849", "tags": "uk london newyear jef 2007"}, {"datetaken": "2006-12-30 22:00:59", "license": "3", "title": "piccadilly", "text": "", "album_id": "72157594486753058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/344007858_2cedd0ded2_o.jpg", "secret": "2cedd0ded2", "media": "photo", "latitude": "0", "id": "344007858", "tags": "uk london newyear jef 2007"}, {"datetaken": "2006-12-31 12:18:46", "license": "3", "title": "IMG_1888", "text": "", "album_id": "72157594486753058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/344007866_8f3cf8bdb7_o.jpg", "secret": "8f3cf8bdb7", "media": "photo", "latitude": "0", "id": "344007866", "tags": "uk london newyear jef 2007"}, {"datetaken": "2006-12-31 12:19:30", "license": "3", "title": "tower bridge london", "text": "", "album_id": "72157594486753058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/344007870_d650e347db_o.jpg", "secret": "d650e347db", "media": "photo", "latitude": "0", "id": "344007870", "tags": "uk london newyear jef 2007"}, {"datetaken": "2006-12-31 12:53:00", "license": "3", "title": "st.catherines dock london", "text": "", "album_id": "72157594486753058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/344007876_53a9af296d_o.jpg", "secret": "53a9af296d", "media": "photo", "latitude": "0", "id": "344007876", "tags": "uk london newyear jef 2007"}, {"datetaken": "2006-12-31 15:00:48", "license": "3", "title": "london bus", "text": "", "album_id": "72157594486753058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/344072429_91b63d987d_o.jpg", "secret": "91b63d987d", "media": "photo", "latitude": "0", "id": "344072429", "tags": "uk london newyear jef 2007 redbus"}, {"datetaken": "2006-12-31 15:22:44", "license": "3", "title": "temple church off of da vinci code", "text": "", "album_id": "72157594486753058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/343851692_1c0c8d9812_o.jpg", "secret": "1c0c8d9812", "media": "photo", "latitude": "0", "id": "343851692", "tags": "uk london newyear jef 2007"}, {"datetaken": "2006-12-31 15:23:40", "license": "3", "title": "temple church off of the da vinci code", "text": "", "album_id": "72157594486753058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/343851690_3ec3533a98_o.jpg", "secret": "3ec3533a98", "media": "photo", "latitude": "0", "id": "343851690", "tags": "uk london newyear jef 2007 davincicode templechurch"}, {"datetaken": "2006-12-31 15:32:38", "license": "3", "title": "oxo", "text": "", "album_id": "72157594486753058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/343851687_b07b1a5d02_o.jpg", "secret": "b07b1a5d02", "media": "photo", "latitude": "0", "id": "343851687", "tags": "oxo jeflondonuknewyear2007"}, {"datetaken": "2006-12-31 15:36:43", "license": "3", "title": "london eye", "text": "", "album_id": "72157594486753058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/343851684_6b06bc72e2_o.jpg", "secret": "6b06bc72e2", "media": "photo", "latitude": "0", "id": "343851684", "tags": "uk london londoneye bigben newyear jef 2007"}, {"datetaken": "2006-12-31 22:13:15", "license": "3", "title": "colourful pint", "text": "", "album_id": "72157594486753058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/344053398_9c486811b8_o.jpg", "secret": "9c486811b8", "media": "photo", "latitude": "0", "id": "344053398", "tags": "london newyear jef"}, {"datetaken": "2006-12-31 22:19:19", "license": "3", "title": "dinner at the ivy", "text": "", "album_id": "72157594486753058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/343851683_948d6d657b_o.jpg", "secret": "948d6d657b", "media": "photo", "latitude": "0", "id": "343851683", "tags": "uk london newyear jef 2007"}, {"datetaken": "2006-12-31 22:24:25", "license": "3", "title": "phil", "text": "", "album_id": "72157594486753058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/343836760_3391cf229b_o.jpg", "secret": "3391cf229b", "media": "photo", "latitude": "0", "id": "343836760", "tags": "uk london newyear jef 2007"}, {"datetaken": "2006-12-31 22:24:53", "license": "3", "title": "rough", "text": "", "album_id": "72157594486753058", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/343836764_5e55030065_o.jpg", "secret": "5e55030065", "media": "photo", "latitude": "0", "id": "343836764", "tags": "uk london newyear jef 2007"}, {"datetaken": "2009-12-31 20:36:29", "license": "3", "title": "New Year's Eve moon over St Mary Redcliffe, Bristol", "text": "", "album_id": "72157623004060365", "longitude": "-2.592676", "url_o": "https://farm3.staticflickr.com/2504/4239723429_c4e510d9bd_o.jpg", "secret": "d0f98018e5", "media": "photo", "latitude": "51.449380", "id": "4239723429", "tags": "uk travel england holiday bristol unitedkingdom nye nyd"}, {"datetaken": "2010-01-01 13:44:51", "license": "3", "title": "Art deco (?) facade, Park Street, Bristol", "text": "", "album_id": "72157623004060365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4240551546_c40c66021a_o.jpg", "secret": "f3de2e6005", "media": "photo", "latitude": "0", "id": "4240551546", "tags": "uk travel england holiday bristol unitedkingdom nye nyd"}, {"datetaken": "2010-01-01 13:50:55", "license": "3", "title": "Golden unicorn, College Green, Bristol", "text": "", "album_id": "72157623004060365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4240553316_0d2ca91921_o.jpg", "secret": "0545eeeddb", "media": "photo", "latitude": "0", "id": "4240553316", "tags": "uk travel england holiday bristol unitedkingdom nye nyd"}, {"datetaken": "2010-01-01 13:52:39", "license": "3", "title": "Paint gun splattered Banksy, Bristol", "text": "", "album_id": "72157623004060365", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2521/4239786689_190b2787f7_o.jpg", "secret": "f4d818a765", "media": "photo", "latitude": "0", "id": "4239786689", "tags": "uk travel england holiday bristol unitedkingdom nye banksy nyd"}, {"datetaken": "2010-01-01 13:52:54", "license": "3", "title": "Banksy, Bristol", "text": "", "album_id": "72157623004060365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4240558044_5fe9abe1b1_o.jpg", "secret": "1749f8b28d", "media": "photo", "latitude": "0", "id": "4240558044", "tags": "uk travel england holiday bristol unitedkingdom nye nyd"}, {"datetaken": "2010-01-01 14:53:58", "license": "3", "title": "University building thingy, Bristol", "text": "", "album_id": "72157623004060365", "longitude": "-2.604210", "url_o": "https://farm3.staticflickr.com/2694/4240605038_828b289915_o.jpg", "secret": "e07cd98d1a", "media": "photo", "latitude": "51.455604", "id": "4240605038", "tags": "uk travel england holiday bristol unitedkingdom nye nyd"}, {"datetaken": "2010-01-01 14:56:02", "license": "3", "title": "QR tag, Bristol street", "text": "", "album_id": "72157623004060365", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4240608048_c617d5fc9d_o.jpg", "secret": "b94a0f3088", "media": "photo", "latitude": "0", "id": "4240608048", "tags": "street uk travel england holiday bristol sticker unitedkingdom tag nye qr nyd qrcode qrtag 1102010502799"}, {"datetaken": "2010-01-01 14:56:51", "license": "3", "title": "Bristol uni memorial building in the sun", "text": "", "album_id": "72157623004060365", "longitude": "-2.605787", "url_o": "https://farm3.staticflickr.com/2779/4240610546_4b09ef208c_o.jpg", "secret": "5d51e7cbb3", "media": "photo", "latitude": "51.456009", "id": "4240610546", "tags": "uk travel england holiday bristol unitedkingdom nye nyd"}, {"datetaken": "2010-01-01 16:17:18", "license": "3", "title": "Sunset, Bristol, New Year's Day", "text": "", "album_id": "72157623004060365", "longitude": "-2.615196", "url_o": "https://farm5.staticflickr.com/4066/4240626196_5c1f706d03_o.jpg", "secret": "5c674a043c", "media": "photo", "latitude": "51.453121", "id": "4240626196", "tags": "uk travel sunset england holiday bristol unitedkingdom nye nyd"}, {"datetaken": "2010-01-01 16:36:45", "license": "3", "title": "Christmas Steps, Bristol, NYD", "text": "", "album_id": "72157623004060365", "longitude": "-2.597494", "url_o": "https://farm5.staticflickr.com/4061/4239860997_f879c867ab_o.jpg", "secret": "a2bb0db82a", "media": "photo", "latitude": "51.456176", "id": "4239860997", "tags": "uk travel england holiday bristol unitedkingdom nye nyd"}, {"datetaken": "2010-01-02 12:09:59", "license": "3", "title": "Rude memorial marker - 'Also Jane, relict of the above'", "text": "", "album_id": "72157623004060365", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2792/4240681686_0ea1a02d6b_o.jpg", "secret": "2ddaedd11c", "media": "photo", "latitude": "0", "id": "4240681686", "tags": "uk travel england holiday church bristol memorial unitedkingdom nye redcliffe stmary nyd"}, {"datetaken": "2010-01-02 12:23:08", "license": "3", "title": "Post-in note covered car, New Years Day, Bristol", "text": "", "album_id": "72157623004060365", "longitude": "-2.592403", "url_o": "https://farm5.staticflickr.com/4046/4240167705_6b6c0553e7_o.jpg", "secret": "7841df68cc", "media": "photo", "latitude": "51.453125", "id": "4240167705", "tags": "uk travel england holiday bristol unitedkingdom nye nyd"}, {"datetaken": "2010-01-02 12:51:48", "license": "3", "title": "Christ Church with St Ewen, corner of Broad and Corn Sts, Bristol", "text": "", "album_id": "72157623004060365", "longitude": "-2.593052", "url_o": "https://farm3.staticflickr.com/2652/4240218405_9dc490b945_o.jpg", "secret": "d6f1289cea", "media": "photo", "latitude": "51.455003", "id": "4240218405", "tags": "uk travel england holiday church bells bristol unitedkingdom nye nyd"}, {"datetaken": "2010-01-02 14:05:15", "license": "3", "title": "Christmassy Eton mess at Shed Severn", "text": "", "album_id": "72157623004060365", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4240269819_709dde5452_o.jpg", "secret": "1c01d94062", "media": "photo", "latitude": "0", "id": "4240269819", "tags": "uk travel england holiday bristol dessert mess unitedkingdom nye caramel cranberry meringue eton nyd"}, {"datetaken": "2010-01-02 15:00:42", "license": "3", "title": "Former British Empire & Commonwealth Museum, Bristol Temple Mead", "text": "", "album_id": "72157623004060365", "longitude": "-2.583954", "url_o": "https://farm3.staticflickr.com/2712/4241049096_018e978a78_o.jpg", "secret": "70e6149017", "media": "photo", "latitude": "51.448531", "id": "4241049096", "tags": "uk travel england holiday bristol unitedkingdom nye nyd"}, {"datetaken": "2010-01-02 15:01:06", "license": "3", "title": "Former British Empire & Commonwealth Museum, Bristol Temple Mead", "text": "", "album_id": "72157623004060365", "longitude": "-2.584061", "url_o": "https://farm3.staticflickr.com/2763/4241065096_e2b3e494e7_o.jpg", "secret": "918f603888", "media": "photo", "latitude": "51.448597", "id": "4241065096", "tags": "uk travel england holiday bristol unitedkingdom nye nyd"}, {"datetaken": "2010-01-02 15:05:00", "license": "3", "title": "Bristol Temple Meads railway station", "text": "", "album_id": "72157623004060365", "longitude": "-2.581486", "url_o": "https://farm5.staticflickr.com/4014/4240296067_09dac6712f_o.jpg", "secret": "a778a1d425", "media": "photo", "latitude": "51.449547", "id": "4240296067", "tags": "uk travel england holiday station bristol temple unitedkingdom nye railway nyd meads"}, {"datetaken": "2010-02-04 10:32:24", "license": "3", "title": "St. Luke; St. David", "text": "", "album_id": "72157623225771765", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4329871263_50711208a8_o.jpg", "secret": "1c700dee2c", "media": "photo", "latitude": "0", "id": "4329871263", "tags": "1931 raw buckinghamshire tripod naturallight stainedglass churchwindows stpeterschurch churchofengland chalfontstpeter buckinghamshirechurches contemporarystainedglass walkingwithmynikon nikkorpce24f35 herbertblanchford"}, {"datetaken": "2010-02-04 10:33:56", "license": "3", "title": "Christ & Marys at the tomb", "text": "", "album_id": "72157623225771765", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4329871853_54f9256c59_o.jpg", "secret": "42a382a649", "media": "photo", "latitude": "0", "id": "4329871853", "tags": "raw buckinghamshire tripod naturallight stainedglass 1875 churchwindows stpeterschurch churchofengland chalfontstpeter victorianstainedglass buckinghamshirechurches henryhughes walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-04 10:35:15", "license": "3", "title": "Christ in the House of Mary & Martha", "text": "", "album_id": "72157623225771765", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4329872305_dd9a5db010_o.jpg", "secret": "ef42334cf4", "media": "photo", "latitude": "0", "id": "4329872305", "tags": "raw buckinghamshire tripod naturallight stainedglass 1870 churchwindows stpeterschurch churchofengland chalfontstpeter victorianstainedglass buckinghamshirechurches henryhughes walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-04 10:36:46", "license": "3", "title": "Martha & Jesus; Maries at the tomb", "text": "", "album_id": "72157623225771765", "longitude": "-0.556795", "url_o": "https://farm3.staticflickr.com/2770/4330606284_aa4af71e9a_o.jpg", "secret": "4f2a44a687", "media": "photo", "latitude": "51.607830", "id": "4330606284", "tags": "raw buckinghamshire tripod naturallight stainedglass 1869 churchwindows stpeterschurch churchofengland chalfontstpeter victorianstainedglass capronnier buckinghamshirechurches walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-04 10:38:37", "license": "3", "title": "Three Maries in the tomb; Angel", "text": "", "album_id": "72157623225771765", "longitude": "-0.556520", "url_o": "https://farm5.staticflickr.com/4021/4330608966_ddd465f345_o.jpg", "secret": "c8e2f9c1d3", "media": "photo", "latitude": "51.607761", "id": "4330608966", "tags": "raw buckinghamshire tripod naturallight stainedglass 1879 churchwindows stpeterschurch churchofengland chalfontstpeter victorianstainedglass buckinghamshirechurches johnhardman walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-04 10:40:36", "license": "3", "title": "St. Paul; St. Barnabas", "text": "", "album_id": "72157623225771765", "longitude": "-0.556423", "url_o": "https://farm5.staticflickr.com/4034/4330609320_48f95a1909_o.jpg", "secret": "7ef1e27ebb", "media": "photo", "latitude": "51.607741", "id": "4330609320", "tags": "raw buckinghamshire tripod naturallight stainedglass churchwindows stpeterschurch churchofengland 1888 chalfontstpeter victorianstainedglass buckinghamshirechurches cekempe walkingwithmynikon nikkorpce24f35 edgarcarter"}, {"datetaken": "2010-02-04 10:43:00", "license": "3", "title": "East Window", "text": "", "album_id": "72157623225771765", "longitude": "-0.556456", "url_o": "https://farm5.staticflickr.com/4031/4330609788_41a75a4a7b_o.jpg", "secret": "639511e70b", "media": "photo", "latitude": "51.607819", "id": "4330609788", "tags": "raw buckinghamshire tripod naturallight stainedglass 1883 churchwindows stpeterschurch churchofengland chalfontstpeter victorianstainedglass buckinghamshirechurches wardhughes walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-04 10:44:19", "license": "3", "title": "High Altar", "text": "", "album_id": "72157623225771765", "longitude": "-0.556537", "url_o": "https://farm3.staticflickr.com/2682/4330610286_091bb8f68d_o.jpg", "secret": "9b8cda66f2", "media": "photo", "latitude": "51.607808", "id": "4330610286", "tags": "raw buckinghamshire tripod naturallight stainedglass 1883 churchwindows stpeterschurch churchofengland highchurch chalfontstpeter victorianstainedglass buckinghamshirechurches wardhughes walkingwithmynikon nikkorpce24f35 churchsilver"}, {"datetaken": "2010-02-04 10:46:52", "license": "3", "title": "St. Peter", "text": "", "album_id": "72157623225771765", "longitude": "-0.556573", "url_o": "https://farm3.staticflickr.com/2783/4330610836_8b632946d1_o.jpg", "secret": "1c9f305f96", "media": "photo", "latitude": "51.607838", "id": "4330610836", "tags": "raw buckinghamshire tripod naturallight stainedglass 1883 churchwindows stpeterschurch churchofengland chalfontstpeter victorianstainedglass buckinghamshirechurches claytonbell walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-04 10:47:48", "license": "3", "title": "Tracery:-Crucifixion. Annunciation; Nativity; Washing feet of disciples; Woman of Samaria at well", "text": "", "album_id": "72157623225771765", "longitude": "-0.556623", "url_o": "https://farm5.staticflickr.com/4022/4329878095_4082b2788a_o.jpg", "secret": "04dab54043", "media": "photo", "latitude": "51.607894", "id": "4329878095", "tags": "raw buckinghamshire tripod naturallight stainedglass 1885 churchwindows stpeterschurch churchofengland chalfontstpeter victorianstainedglass buckinghamshirechurches burlisongrylls walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-04 10:49:02", "license": "3", "title": "Charge to St Peter", "text": "", "album_id": "72157623225771765", "longitude": "-0.556831", "url_o": "https://farm5.staticflickr.com/4019/4329878557_c02b2a18cd_o.jpg", "secret": "b7e6cd5a83", "media": "photo", "latitude": "51.607994", "id": "4329878557", "tags": "raw buckinghamshire tripod naturallight stainedglass churchwindows stpeterschurch churchofengland 1891 chalfontstpeter victorianstainedglass buckinghamshirechurches cekempe walkingwithmynikon nikkorpce24f35 herbertwbryans"}, {"datetaken": "2010-02-04 10:50:13", "license": "3", "title": "St. Elizabeth of Hungary; St. George", "text": "", "album_id": "72157623225771765", "longitude": "-0.556614", "url_o": "https://farm3.staticflickr.com/2797/4330612356_dbe5014502_o.jpg", "secret": "04516a0b8b", "media": "photo", "latitude": "51.607811", "id": "4330612356", "tags": "raw buckinghamshire tripod naturallight stainedglass 1924 churchwindows stpeterschurch churchofengland chalfontstpeter buckinghamshirechurches contemporarystainedglass walkingwithmynikon nikkorpce24f35 herbertblanchford"}, {"datetaken": "2010-02-04 10:50:48", "license": "3", "title": "Dove", "text": "", "album_id": "72157623225771765", "longitude": "-0.556764", "url_o": "https://farm5.staticflickr.com/4040/4329879455_06a68a21e2_o.jpg", "secret": "5938c249be", "media": "photo", "latitude": "51.607875", "id": "4329879455", "tags": "raw buckinghamshire tripod naturallight stainedglass 2006 churchwindows stpeterschurch churchofengland chalfontstpeter buckinghamshirechurches contemporarystainedglass chapelstudios walkingwithmynikon nikkorpce24f35 petrianderson"}, {"datetaken": "2010-02-04 11:00:00", "license": "3", "title": "South profile of Church", "text": "", "album_id": "72157623225771765", "longitude": "-0.556614", "url_o": "https://farm5.staticflickr.com/4016/4329879739_dfe3e39637_o.jpg", "secret": "a92ea1189a", "media": "photo", "latitude": "51.607630", "id": "4329879739", "tags": "blackandwhite bw raw buckinghamshire tripod towers churches placesofworship gravestones churchyards stpeterschurch churchofengland chalfontstpeter buckinghamshirechurches walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-04 11:02:02", "license": "3", "title": "Church & War Memorial", "text": "", "album_id": "72157623225771765", "longitude": "-0.556373", "url_o": "https://farm3.staticflickr.com/2733/4330613454_421044be4c_o.jpg", "secret": "168b100cb9", "media": "photo", "latitude": "51.607600", "id": "4330613454", "tags": "raw buckinghamshire tripod warmemorial bwblackandwhite stpeterschurch churchofengland chalfontstpeter buckinghamshirechurches victorianchurch walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-01-04 22:26:02", "license": "2", "title": "Borl\u00e4nge Station", "text": "", "album_id": "72157623139776636", "longitude": "15.425405", "url_o": "https://farm5.staticflickr.com/4022/4245252977_0c49e4f420_o.jpg", "secret": "cee918413e", "media": "photo", "latitude": "60.483023", "id": "4245252977", "tags": "travel bw film station train minolta f100 1993 borl\u00e4nge fujisuperia x2000 minolta3000i storybookwinner"}, {"datetaken": "2010-01-04 22:51:57", "license": "2", "title": "Man in White", "text": "", "album_id": "72157623139776636", "longitude": "15.426735", "url_o": "https://farm5.staticflickr.com/4017/4245365901_2354dc0207_o.jpg", "secret": "f037aaca8d", "media": "photo", "latitude": "60.482748", "id": "4245365901", "tags": "street people bw film minolta candid 1993 borl\u00e4nge minolta3000i"}, {"datetaken": "2010-01-04 22:56:45", "license": "2", "title": "", "text": "", "album_id": "72157623139776636", "longitude": "15.427765", "url_o": "https://farm3.staticflickr.com/2684/4245353103_8135d16c82_o.jpg", "secret": "a433766875", "media": "photo", "latitude": "60.483911", "id": "4245353103", "tags": "bw minolta f100 1993 borl\u00e4nge fujisuperia minolta3000i"}, {"datetaken": "2010-01-05 00:20:28", "license": "2", "title": "", "text": "", "album_id": "72157623139776636", "longitude": "15.455832", "url_o": "https://farm5.staticflickr.com/4019/4246343862_c6b8206318_o.jpg", "secret": "58d943403e", "media": "photo", "latitude": "60.464898", "id": "4246343862", "tags": "trees people bw cars film minolta 1993 borl\u00e4nge minolta3000i"}, {"datetaken": "2010-01-05 01:25:31", "license": "2", "title": "Borl\u00e4nge J\u00e4rnv\u00e4gsstation", "text": "", "album_id": "72157623139776636", "longitude": "15.425405", "url_o": "https://farm5.staticflickr.com/4025/4250182246_4516331f07_o.jpg", "secret": "5c621f092e", "media": "photo", "latitude": "60.483023", "id": "4250182246", "tags": "bw minolta 1993 borl\u00e4nge minolta3000i"}, {"datetaken": "2010-01-05 03:50:10", "license": "2", "title": "", "text": "", "album_id": "72157623139776636", "longitude": "15.425405", "url_o": "https://farm3.staticflickr.com/2799/4250176650_5a78e5c969_o.jpg", "secret": "767e1738a4", "media": "photo", "latitude": "60.483023", "id": "4250176650", "tags": "bw minolta 1993 borl\u00e4nge minolta3000i"}, {"datetaken": "2010-01-05 04:31:18", "license": "2", "title": "", "text": "", "album_id": "72157623139776636", "longitude": "15.425405", "url_o": "https://farm5.staticflickr.com/4033/4249410705_289f192cfb_o.jpg", "secret": "ec5fb232b2", "media": "photo", "latitude": "60.483023", "id": "4249410705", "tags": "bw minolta 1993 borl\u00e4nge minolta3000i"}, {"datetaken": "2010-01-05 17:47:58", "license": "2", "title": "", "text": "", "album_id": "72157623139776636", "longitude": "15.493683", "url_o": "https://farm3.staticflickr.com/2657/4250192028_5252d34bd2_o.jpg", "secret": "672214b5a4", "media": "photo", "latitude": "60.467923", "id": "4250192028", "tags": "nikon f100 fujisuperia 20mmf28"}, {"datetaken": "2010-01-05 18:07:01", "license": "2", "title": "", "text": "", "album_id": "72157623139776636", "longitude": "15.493683", "url_o": "https://farm3.staticflickr.com/2688/4250204464_ed2bfdb0b8_o.jpg", "secret": "a677bc7a36", "media": "photo", "latitude": "60.467923", "id": "4250204464", "tags": "nikon f100 fujisuperia 20mmf28"}, {"datetaken": "2010-01-05 20:22:22", "license": "2", "title": "", "text": "", "album_id": "72157623139776636", "longitude": "18.064388", "url_o": "https://farm3.staticflickr.com/2744/4250220844_aba8f630f5_o.jpg", "secret": "d3efc6d9ee", "media": "photo", "latitude": "59.339219", "id": "4250220844", "tags": "church nikon sweden stockholm f100 fujisuperia 20mmf28 johanneschurch"}, {"datetaken": "2010-01-05 20:24:32", "license": "2", "title": "Jack <3 Mimmi", "text": "", "album_id": "72157623139776636", "longitude": "18.064388", "url_o": "https://farm3.staticflickr.com/2786/4250226026_9e79c50a89_o.jpg", "secret": "13d4cc7f61", "media": "photo", "latitude": "59.339219", "id": "4250226026", "tags": "church nikon sweden stockholm f100 fujisuperia 20mmf28 johanneschurch"}, {"datetaken": "2010-01-05 21:46:47", "license": "2", "title": "", "text": "", "album_id": "72157623139776636", "longitude": "18.056266", "url_o": "https://farm3.staticflickr.com/2685/4250921464_d8ab3da77d_o.jpg", "secret": "14f0202bb3", "media": "photo", "latitude": "59.343026", "id": "4250921464", "tags": "nikon f100 fujisuperia 20mmf28"}, {"datetaken": "2010-01-05 22:42:54", "license": "2", "title": "", "text": "", "album_id": "72157623139776636", "longitude": "18.049904", "url_o": "https://farm5.staticflickr.com/4011/4250152101_18b3018c32_o.jpg", "secret": "006ea3be3c", "media": "photo", "latitude": "59.342933", "id": "4250152101", "tags": "street people nikon sweden stockholm f100 kiosk fujisuperia odenplan 20mmf28 sippans"}, {"datetaken": "2010-01-05 23:33:41", "license": "2", "title": "", "text": "", "album_id": "72157623139776636", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4250940448_31e6617268_o.jpg", "secret": "19df9ac000", "media": "photo", "latitude": "0", "id": "4250940448", "tags": "cruise people work nikon f100 fujisuperia"}, {"datetaken": "2010-01-06 01:41:24", "license": "2", "title": "Arkham Horror", "text": "", "album_id": "72157623139776636", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2634/4250171059_b22078e200_o.jpg", "secret": "45194e05fa", "media": "photo", "latitude": "0", "id": "4250171059", "tags": "nikon f100 games boardgames fujisuperia gamepieces arkhamhorror"}, {"datetaken": "2010-01-06 02:19:27", "license": "2", "title": "", "text": "", "album_id": "72157623139776636", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4250188513_cdcf4267d0_o.jpg", "secret": "4e89446183", "media": "photo", "latitude": "0", "id": "4250188513", "tags": "nikon f100 cruiseship cinderella fujisuperia"}, {"datetaken": "2010-01-06 02:44:20", "license": "2", "title": "Always watching", "text": "", "album_id": "72157623139776636", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4250206361_2924d6fbef_o.jpg", "secret": "79653da06a", "media": "photo", "latitude": "0", "id": "4250206361", "tags": "camera white nikon surveillance f100 cruiseship cinderella fujisuperia"}, {"datetaken": "2010-01-06 03:14:56", "license": "2", "title": "Cruise ship corridor", "text": "", "album_id": "72157623139776636", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4250994238_faee13e3ff_o.jpg", "secret": "f491a5af64", "media": "photo", "latitude": "0", "id": "4250994238", "tags": "nikon f100 cruiseship cinderella fujisuperia"}, {"datetaken": "2010-01-06 03:39:34", "license": "2", "title": "", "text": "", "album_id": "72157623139776636", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2783/4250989136_128ff18e33_o.jpg", "secret": "2dc585ca82", "media": "photo", "latitude": "0", "id": "4250989136", "tags": "nikon f100 cruiseship cinderella fujisuperia"}, {"datetaken": "2006-12-31 12:40:47", "license": "2", "title": "IM000890b (2)", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/349410350_fb9f57cd7e_o.jpg", "secret": "fb9f57cd7e", "media": "photo", "latitude": "0", "id": "349410350", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 12:41:48", "license": "2", "title": "IM000890b", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/349409909_e48c4b6b92_o.jpg", "secret": "e48c4b6b92", "media": "photo", "latitude": "0", "id": "349409909", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 12:46:29", "license": "2", "title": "IM000891b", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/349411146_99b0b9104a_o.jpg", "secret": "99b0b9104a", "media": "photo", "latitude": "0", "id": "349411146", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 12:57:21", "license": "2", "title": "IM893b", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/349416233_813359ae7a_o.jpg", "secret": "813359ae7a", "media": "photo", "latitude": "0", "id": "349416233", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:09:55", "license": "2", "title": "IM000883", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/349406384_7b259042a8_o.jpg", "secret": "7b259042a8", "media": "photo", "latitude": "0", "id": "349406384", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:10:23", "license": "2", "title": "IM000884", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/349406791_06ce7934b1_o.jpg", "secret": "06ce7934b1", "media": "photo", "latitude": "0", "id": "349406791", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:10:42", "license": "2", "title": "IM000899b", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/349414909_abc2de160c_o.jpg", "secret": "abc2de160c", "media": "photo", "latitude": "0", "id": "349414909", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:12:11", "license": "2", "title": "IM000885", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/349407114_425214072d_o.jpg", "secret": "425214072d", "media": "photo", "latitude": "0", "id": "349407114", "tags": "church kirche 31122006 giengen"}, {"datetaken": "2006-12-31 13:12:32", "license": "2", "title": "IM000886", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/349407512_a8ae6c0b56_o.jpg", "secret": "a8ae6c0b56", "media": "photo", "latitude": "0", "id": "349407512", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:13:58", "license": "2", "title": "IM000887", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/349407989_cec7526f49_o.jpg", "secret": "cec7526f49", "media": "photo", "latitude": "0", "id": "349407989", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:14:09", "license": "2", "title": "IM000888", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/349408429_e365e7831a_o.jpg", "secret": "e365e7831a", "media": "photo", "latitude": "0", "id": "349408429", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:15:22", "license": "2", "title": "IM000889", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/349408804_0bd144633c_o.jpg", "secret": "0bd144633c", "media": "photo", "latitude": "0", "id": "349408804", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:15:35", "license": "2", "title": "IM000890", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/349409519_f98dbf7ff7_o.jpg", "secret": "f98dbf7ff7", "media": "photo", "latitude": "0", "id": "349409519", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:17:29", "license": "2", "title": "IM000891", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/349410770_a7ee8bbe5c_o.jpg", "secret": "a7ee8bbe5c", "media": "photo", "latitude": "0", "id": "349410770", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:20:50", "license": "2", "title": "IM000892", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/349411691_d21531f289_o.jpg", "secret": "d21531f289", "media": "photo", "latitude": "0", "id": "349411691", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:30:33", "license": "2", "title": "IM000893", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/349412140_ac0dacb2b3_o.jpg", "secret": "ac0dacb2b3", "media": "photo", "latitude": "0", "id": "349412140", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:32:28", "license": "2", "title": "IM000894", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/349412614_c9328e2f6b_o.jpg", "secret": "c9328e2f6b", "media": "photo", "latitude": "0", "id": "349412614", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:35:51", "license": "2", "title": "IM000895", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/349412991_4eefb65b8e_o.jpg", "secret": "4eefb65b8e", "media": "photo", "latitude": "0", "id": "349412991", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:37:41", "license": "2", "title": "IM000896", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/349413373_60184c695f_o.jpg", "secret": "60184c695f", "media": "photo", "latitude": "0", "id": "349413373", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:37:54", "license": "2", "title": "IM000897", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/349413596_0d11b5a2e6_o.jpg", "secret": "0d11b5a2e6", "media": "photo", "latitude": "0", "id": "349413596", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:40:08", "license": "2", "title": "IM000898", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/349414164_af62ea64d7_o.jpg", "secret": "af62ea64d7", "media": "photo", "latitude": "0", "id": "349414164", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:41:36", "license": "2", "title": "IM000899", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/349414615_d291ba622e_o.jpg", "secret": "d291ba622e", "media": "photo", "latitude": "0", "id": "349414615", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:43:12", "license": "2", "title": "IM000900", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/349415405_aa58a2871d_o.jpg", "secret": "aa58a2871d", "media": "photo", "latitude": "0", "id": "349415405", "tags": "31122006 giengen"}, {"datetaken": "2006-12-31 13:45:18", "license": "2", "title": "IM000901", "text": "", "album_id": "72157594465639903", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/349415782_d94cd8c2d2_o.jpg", "secret": "d94cd8c2d2", "media": "photo", "latitude": "0", "id": "349415782", "tags": "31122006 giengen"}, {"datetaken": "2007-01-02 09:37:33", "license": "2", "title": "IM000917b", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/349430305_7d650ecc2a_o.jpg", "secret": "7d650ecc2a", "media": "photo", "latitude": "0", "id": "349430305", "tags": "ulm 212007"}, {"datetaken": "2007-01-02 09:38:25", "license": "2", "title": "IM000929b (1)", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/349433119_222e5ae573_o.jpg", "secret": "222e5ae573", "media": "photo", "latitude": "0", "id": "349433119", "tags": "ulm 212007"}, {"datetaken": "2007-01-02 09:44:37", "license": "2", "title": "IM000929b (2)", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/349433552_856a2ceb4e_o.jpg", "secret": "856a2ceb4e", "media": "photo", "latitude": "0", "id": "349433552", "tags": "ulm 212007"}, {"datetaken": "2007-01-02 09:51:52", "license": "2", "title": "IM000929b (3)", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/349433993_852e84bc4e_o.jpg", "secret": "852e84bc4e", "media": "photo", "latitude": "0", "id": "349433993", "tags": "ulm 212007"}, {"datetaken": "2007-01-02 09:52:02", "license": "2", "title": "IM000929b", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/349432768_28a69518a4_o.jpg", "secret": "28a69518a4", "media": "photo", "latitude": "0", "id": "349432768", "tags": "ulm 212007"}, {"datetaken": "2007-01-02 10:03:57", "license": "2", "title": "IM000917 (2)", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/349427409_97bcf85701_o.jpg", "secret": "97bcf85701", "media": "photo", "latitude": "0", "id": "349427409", "tags": "ulm 212007"}, {"datetaken": "2007-01-02 10:07:48", "license": "2", "title": "IM000917 (3)", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/349428054_b172215ac5_o.jpg", "secret": "b172215ac5", "media": "photo", "latitude": "0", "id": "349428054", "tags": "ulm 212007"}, {"datetaken": "2007-01-02 10:09:09", "license": "2", "title": "IM000917 (4)", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/349428577_8a500493d6_o.jpg", "secret": "8a500493d6", "media": "photo", "latitude": "0", "id": "349428577", "tags": "ulm 212007"}, {"datetaken": "2007-01-02 10:10:47", "license": "2", "title": "IM000917 (6)", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/349429073_9c937c762b_o.jpg", "secret": "9c937c762b", "media": "photo", "latitude": "0", "id": "349429073", "tags": "ulm 212007"}, {"datetaken": "2007-01-02 10:11:54", "license": "2", "title": "IM000917 (8)", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/349429804_4b432522a7_o.jpg", "secret": "4b432522a7", "media": "photo", "latitude": "0", "id": "349429804", "tags": "ulm 212007"}, {"datetaken": "2007-01-02 10:17:32", "license": "2", "title": "IM000919", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/349430722_5a6cdad15d_o.jpg", "secret": "5a6cdad15d", "media": "photo", "latitude": "0", "id": "349430722", "tags": "ulm 212007"}, {"datetaken": "2007-01-02 10:20:15", "license": "2", "title": "IM000923", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/349431537_97bec52979_o.jpg", "secret": "97bec52979", "media": "photo", "latitude": "0", "id": "349431537", "tags": "ulm 212007"}, {"datetaken": "2007-01-02 10:24:41", "license": "2", "title": "IM000927", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/349431828_07b832f9cd_o.jpg", "secret": "07b832f9cd", "media": "photo", "latitude": "0", "id": "349431828", "tags": "ulm 212007"}, {"datetaken": "2007-01-02 10:24:53", "license": "2", "title": "IM000928", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/349432110_fb1a7a899f_o.jpg", "secret": "fb1a7a899f", "media": "photo", "latitude": "0", "id": "349432110", "tags": "ulm 212007"}, {"datetaken": "2007-01-02 10:30:28", "license": "2", "title": "IM000929", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/349432364_e1368690a4_o.jpg", "secret": "e1368690a4", "media": "photo", "latitude": "0", "id": "349432364", "tags": "ulm 212007"}, {"datetaken": "2007-01-02 10:30:58", "license": "2", "title": "IM000930", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/349434452_979ac2bf89_o.jpg", "secret": "979ac2bf89", "media": "photo", "latitude": "0", "id": "349434452", "tags": "ulm 212007"}, {"datetaken": "2007-01-02 10:31:07", "license": "2", "title": "IM000931", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/349434781_520d777261_o.jpg", "secret": "520d777261", "media": "photo", "latitude": "0", "id": "349434781", "tags": "ulm stadthaus 212007"}, {"datetaken": "2007-01-02 10:31:16", "license": "2", "title": "IM000932", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/349435220_f55c8ba6ff_o.jpg", "secret": "f55c8ba6ff", "media": "photo", "latitude": "0", "id": "349435220", "tags": "richardmeier ulm stadthaus 212007"}, {"datetaken": "2007-01-02 13:08:40", "license": "2", "title": "IM000934b", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/349436571_f2400e7c91_o.jpg", "secret": "f2400e7c91", "media": "photo", "latitude": "0", "id": "349436571", "tags": "monument einstein ulm 212007"}, {"datetaken": "2007-01-02 13:08:50", "license": "2", "title": "IM000934c", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/349437089_f801245ff0_o.jpg", "secret": "f801245ff0", "media": "photo", "latitude": "0", "id": "349437089", "tags": "monument einstein ulm 212007"}, {"datetaken": "2007-01-02 13:38:18", "license": "2", "title": "IM000933", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/349435746_824e1dcef0_o.jpg", "secret": "824e1dcef0", "media": "photo", "latitude": "0", "id": "349435746", "tags": "monument einstein ulm 212007"}, {"datetaken": "2007-01-02 13:38:23", "license": "2", "title": "IM000934", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/349436194_9f08fa7545_o.jpg", "secret": "9f08fa7545", "media": "photo", "latitude": "0", "id": "349436194", "tags": "monument einstein ulm 212007"}, {"datetaken": "2007-01-02 13:39:50", "license": "2", "title": "IM000935", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/349437667_941c61eaa4_o.jpg", "secret": "941c61eaa4", "media": "photo", "latitude": "0", "id": "349437667", "tags": "monument stone einstein ulm 212007"}, {"datetaken": "2007-01-02 13:40:03", "license": "2", "title": "IM000936", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/349438250_0625ad294b_o.jpg", "secret": "0625ad294b", "media": "photo", "latitude": "0", "id": "349438250", "tags": "monument stone einstein ulm 212007"}, {"datetaken": "2007-01-02 13:50:11", "license": "2", "title": "IM000937", "text": "", "album_id": "72157594465679052", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/349438589_ae045c3516_o.jpg", "secret": "ae045c3516", "media": "photo", "latitude": "0", "id": "349438589", "tags": "ulm 212007"}, {"datetaken": "2007-01-07 14:53:46", "license": "1", "title": "4 stones", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/349469425_17ae4b961e_o.jpg", "secret": "17ae4b961e", "media": "photo", "latitude": "0", "id": "349469425", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 14:54:07", "license": "1", "title": "life", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/349469652_3dfb450f72_o.jpg", "secret": "3dfb450f72", "media": "photo", "latitude": "0", "id": "349469652", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 14:54:16", "license": "1", "title": "earth", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/349469876_c3fa88450b_o.jpg", "secret": "c3fa88450b", "media": "photo", "latitude": "0", "id": "349469876", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 14:54:59", "license": "1", "title": "waves", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/349470361_665c723551_o.jpg", "secret": "665c723551", "media": "photo", "latitude": "0", "id": "349470361", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 14:55:36", "license": "1", "title": "living", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/349470644_afa8255b6c_o.jpg", "secret": "afa8255b6c", "media": "photo", "latitude": "0", "id": "349470644", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 14:56:09", "license": "1", "title": "WILLIAM", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/349470875_b8d0318962_o.jpg", "secret": "b8d0318962", "media": "photo", "latitude": "0", "id": "349470875", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 14:56:22", "license": "1", "title": "M E", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/349471126_fbd6ceaf8b_o.jpg", "secret": "fbd6ceaf8b", "media": "photo", "latitude": "0", "id": "349471126", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 14:56:49", "license": "1", "title": "squared", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/349471401_699eabebd9_o.jpg", "secret": "699eabebd9", "media": "photo", "latitude": "0", "id": "349471401", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 14:57:12", "license": "1", "title": "crossing a line", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/349471677_24d5950ff4_o.jpg", "secret": "24d5950ff4", "media": "photo", "latitude": "0", "id": "349471677", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 14:57:33", "license": "1", "title": "and you will know us by the trail of durex", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/349471929_a724bb4b2e_o.jpg", "secret": "a724bb4b2e", "media": "photo", "latitude": "0", "id": "349471929", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 14:58:08", "license": "1", "title": "forgotton", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/349472226_259160849e_o.jpg", "secret": "259160849e", "media": "photo", "latitude": "0", "id": "349472226", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 14:59:26", "license": "1", "title": "lost", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/349473598_bdc0186ea6_o.jpg", "secret": "bdc0186ea6", "media": "photo", "latitude": "0", "id": "349473598", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 15:00:22", "license": "1", "title": "tree puzzle", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/349473848_6cbbfffe61_o.jpg", "secret": "6cbbfffe61", "media": "photo", "latitude": "0", "id": "349473848", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 15:00:54", "license": "1", "title": "curves and lines", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/349474084_cef56ff130_o.jpg", "secret": "cef56ff130", "media": "photo", "latitude": "0", "id": "349474084", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 15:01:27", "license": "1", "title": "drizzle sunday", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/349474423_45c38c9ad3_o.jpg", "secret": "45c38c9ad3", "media": "photo", "latitude": "0", "id": "349474423", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 15:02:35", "license": "1", "title": "mossed", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/349474772_57a4024553_o.jpg", "secret": "57a4024553", "media": "photo", "latitude": "0", "id": "349474772", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 15:03:00", "license": "1", "title": "steps", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/349475080_8b7c1af5bc_o.jpg", "secret": "8b7c1af5bc", "media": "photo", "latitude": "0", "id": "349475080", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 15:03:37", "license": "1", "title": "Sacred skull and cross bones", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/349475391_77868c6624_o.jpg", "secret": "77868c6624", "media": "photo", "latitude": "0", "id": "349475391", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 15:04:14", "license": "1", "title": "Maria Angelina", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/349475671_f2124e2521_o.jpg", "secret": "f2124e2521", "media": "photo", "latitude": "0", "id": "349475671", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 15:04:46", "license": "1", "title": "walls", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/349476162_b54bb83d8d_o.jpg", "secret": "b54bb83d8d", "media": "photo", "latitude": "0", "id": "349476162", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 15:05:17", "license": "1", "title": "unknown giant", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/349476506_67029be54e_o.jpg", "secret": "67029be54e", "media": "photo", "latitude": "0", "id": "349476506", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2007-01-07 15:07:22", "license": "1", "title": "16", "text": "", "album_id": "72157594465789785", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/349477028_061383a9ec_o.jpg", "secret": "061383a9ec", "media": "photo", "latitude": "0", "id": "349477028", "tags": "poplar churchyard e14 eastlondon stanns"}, {"datetaken": "2006-12-16 15:00:02", "license": "1", "title": "St Agnes in December", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/349643431_b117e14b84_o.jpg", "secret": "b117e14b84", "media": "photo", "latitude": "0", "id": "349643431", "tags": "ocean winter sea cliff cornwall"}, {"datetaken": "2006-12-16 15:00:47", "license": "1", "title": "St Agnes - Surf Club", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/349643435_0b16da94e7_o.jpg", "secret": "0b16da94e7", "media": "photo", "latitude": "0", "id": "349643435", "tags": "ocean winter sea cliff cornwall"}, {"datetaken": "2006-12-16 15:02:42", "license": "1", "title": "St Agnes", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/349643438_fbdd3fa5a6_o.jpg", "secret": "fbdd3fa5a6", "media": "photo", "latitude": "0", "id": "349643438", "tags": "ocean winter sea cliff cornwall"}, {"datetaken": "2006-12-16 15:03:17", "license": "1", "title": "Come In - The Water is ....", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/349643441_ad088d97d9_o.jpg", "secret": "ad088d97d9", "media": "photo", "latitude": "0", "id": "349643441", "tags": "ocean winter sea cliff cornwall"}, {"datetaken": "2006-12-16 15:03:40", "license": "1", "title": "Blue Skies of St Agnes", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/349643444_2ecd867d97_o.jpg", "secret": "2ecd867d97", "media": "photo", "latitude": "0", "id": "349643444", "tags": "ocean winter sea cliff cornwall"}, {"datetaken": "2006-12-16 15:08:31", "license": "1", "title": "Surfs Up", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/349643448_518acadf06_o.jpg", "secret": "518acadf06", "media": "photo", "latitude": "0", "id": "349643448", "tags": "ocean winter sea cliff cornwall"}, {"datetaken": "2006-12-16 15:21:58", "license": "1", "title": "Crash", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/349647847_199c677c9a_o.jpg", "secret": "199c677c9a", "media": "photo", "latitude": "0", "id": "349647847", "tags": ""}, {"datetaken": "2006-12-16 15:22:08", "license": "1", "title": "Waves", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/349647851_dde5ad7735_o.jpg", "secret": "dde5ad7735", "media": "photo", "latitude": "0", "id": "349647851", "tags": ""}, {"datetaken": "2006-12-16 15:33:49", "license": "1", "title": "Sunset @ Chapel Porth", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/349647854_3fbf5500ea_o.jpg", "secret": "3fbf5500ea", "media": "photo", "latitude": "0", "id": "349647854", "tags": ""}, {"datetaken": "2006-12-16 15:34:31", "license": "1", "title": "Across the Cliffs", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/349647857_a7bb3a8218_o.jpg", "secret": "a7bb3a8218", "media": "photo", "latitude": "0", "id": "349647857", "tags": ""}, {"datetaken": "2006-12-16 15:35:34", "license": "1", "title": "The Last of the Early Evening Rays", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/349647861_b75684767b_o.jpg", "secret": "b75684767b", "media": "photo", "latitude": "0", "id": "349647861", "tags": ""}, {"datetaken": "2006-12-16 15:36:02", "license": "1", "title": "Peaceful", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/349647862_5e43b78241_o.jpg", "secret": "5e43b78241", "media": "photo", "latitude": "0", "id": "349647862", "tags": ""}, {"datetaken": "2006-12-16 15:36:39", "license": "1", "title": "Shining Down", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/349650832_a4afd39e2f_o.jpg", "secret": "a4afd39e2f", "media": "photo", "latitude": "0", "id": "349650832", "tags": ""}, {"datetaken": "2006-12-16 15:37:44", "license": "1", "title": "Persons Passing", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/349650833_c348d8909e_o.jpg", "secret": "c348d8909e", "media": "photo", "latitude": "0", "id": "349650833", "tags": ""}, {"datetaken": "2006-12-16 15:39:31", "license": "1", "title": "Chapel Porth", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/349650836_4b184a3288_o.jpg", "secret": "4b184a3288", "media": "photo", "latitude": "0", "id": "349650836", "tags": ""}, {"datetaken": "2006-12-16 21:14:44", "license": "1", "title": "Mousehole Lights", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/349650837_6acd872c00_o.jpg", "secret": "6acd872c00", "media": "photo", "latitude": "0", "id": "349650837", "tags": ""}, {"datetaken": "2006-12-16 21:15:55", "license": "1", "title": "I See A Ship", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/135/349650843_75b5580d95_o.jpg", "secret": "75b5580d95", "media": "photo", "latitude": "0", "id": "349650843", "tags": ""}, {"datetaken": "2006-12-16 21:16:40", "license": "1", "title": "The Church Was Aglow ...", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/349650845_44ba4c23f3_o.jpg", "secret": "44ba4c23f3", "media": "photo", "latitude": "0", "id": "349650845", "tags": ""}, {"datetaken": "2006-12-16 21:17:59", "license": "1", "title": "Mum & Gran", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/349656408_7ff7b24fa7_o.jpg", "secret": "7ff7b24fa7", "media": "photo", "latitude": "0", "id": "349656408", "tags": ""}, {"datetaken": "2006-12-16 21:26:23", "license": "1", "title": "The Ships Cat", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/349656410_df98cdee0e_o.jpg", "secret": "df98cdee0e", "media": "photo", "latitude": "0", "id": "349656410", "tags": ""}, {"datetaken": "2006-12-16 21:27:01", "license": "1", "title": "A View of Mousehole", "text": "", "album_id": "72157594466065461", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/349656418_3108b144a1_o.jpg", "secret": "3108b144a1", "media": "photo", "latitude": "0", "id": "349656418", "tags": ""}, {"datetaken": "2009-05-19 19:23:34", "license": "1", "title": "Mount Briscoe Farm", "text": "", "album_id": "72157623047266387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4258224143_c0f458bb1b_o.jpg", "secret": "6dae5c1a5b", "media": "photo", "latitude": "0", "id": "4258224143", "tags": "snow"}, {"datetaken": "2009-05-19 19:23:43", "license": "1", "title": "Mount Briscoe Farm", "text": "", "album_id": "72157623047266387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4258227879_916b199549_o.jpg", "secret": "43e26f197c", "media": "photo", "latitude": "0", "id": "4258227879", "tags": "snow"}, {"datetaken": "2009-05-19 19:24:59", "license": "1", "title": "Mount Briscoe Farm", "text": "", "album_id": "72157623047266387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4258231643_b53c0dc228_o.jpg", "secret": "01ef1cd0e6", "media": "photo", "latitude": "0", "id": "4258231643", "tags": "snow"}, {"datetaken": "2009-05-19 19:25:09", "license": "1", "title": "Mount Briscoe Farm", "text": "", "album_id": "72157623047266387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4258235823_9670907b5b_o.jpg", "secret": "0029679702", "media": "photo", "latitude": "0", "id": "4258235823", "tags": "snow"}, {"datetaken": "2009-05-19 19:25:53", "license": "1", "title": "Mount Briscoe Farm", "text": "", "album_id": "72157623047266387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4258997344_b7f3787fe3_o.jpg", "secret": "2d9a41d391", "media": "photo", "latitude": "0", "id": "4258997344", "tags": "snow"}, {"datetaken": "2009-05-19 19:26:35", "license": "1", "title": "Mount Briscoe", "text": "", "album_id": "72157623047266387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4259000938_84dd5bed39_o.jpg", "secret": "1bc9b1023b", "media": "photo", "latitude": "0", "id": "4259000938", "tags": "snow"}, {"datetaken": "2009-05-19 19:27:47", "license": "1", "title": "Cherry Garden", "text": "", "album_id": "72157623047266387", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2519/4258246491_c55f52d11a_o.jpg", "secret": "616d824c83", "media": "photo", "latitude": "0", "id": "4258246491", "tags": "snow"}, {"datetaken": "2009-05-19 19:30:42", "license": "1", "title": "Grand Canal", "text": "", "album_id": "72157623047266387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4259092040_88598aff20_o.jpg", "secret": "b0f9998b71", "media": "photo", "latitude": "0", "id": "4259092040", "tags": "snow"}, {"datetaken": "2009-05-19 19:45:42", "license": "1", "title": "Croghan Co Offaly", "text": "", "album_id": "72157623047266387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4258295001_95889fd964_o.jpg", "secret": "e7d06eef96", "media": "photo", "latitude": "0", "id": "4258295001", "tags": "snow"}, {"datetaken": "2009-05-19 19:45:50", "license": "1", "title": "Croghan Co Offaly", "text": "", "album_id": "72157623047266387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4259054922_994ec44763_o.jpg", "secret": "39acceb36e", "media": "photo", "latitude": "0", "id": "4259054922", "tags": "snow"}, {"datetaken": "2009-05-19 19:46:36", "license": "1", "title": "Bog road", "text": "", "album_id": "72157623047266387", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2682/4258302053_a7276cfe57_o.jpg", "secret": "1b291bc77f", "media": "photo", "latitude": "0", "id": "4258302053", "tags": "snow"}, {"datetaken": "2009-05-19 20:15:43", "license": "1", "title": "Christ Church, County Westmeath", "text": "", "album_id": "72157623047266387", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4258305799_bb41835cdb_o.jpg", "secret": "e673547b44", "media": "photo", "latitude": "0", "id": "4258305799", "tags": "snow"}, {"datetaken": "2009-05-19 20:15:53", "license": "1", "title": "Christ Church, County Westmeath", "text": "", "album_id": "72157623047266387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4259065980_fef4f0f0e0_o.jpg", "secret": "d0fc3fbeb0", "media": "photo", "latitude": "0", "id": "4259065980", "tags": "snow"}, {"datetaken": "2009-05-19 20:16:07", "license": "1", "title": "Christ Church, County Westmeath", "text": "", "album_id": "72157623047266387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4259095856_ce33fe9147_o.jpg", "secret": "57f8615f5c", "media": "photo", "latitude": "0", "id": "4259095856", "tags": "snow"}, {"datetaken": "2009-05-19 20:16:12", "license": "1", "title": "Christ Church, County Westmeath", "text": "", "album_id": "72157623047266387", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4259076120_e74f63726e_o.jpg", "secret": "227cf7e5b1", "media": "photo", "latitude": "0", "id": "4259076120", "tags": "snow"}, {"datetaken": "2009-05-19 20:28:54", "license": "1", "title": "", "text": "", "album_id": "72157623047266387", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2782/4259084216_a6265360f7_o.jpg", "secret": "a2e0a676d1", "media": "photo", "latitude": "0", "id": "4259084216", "tags": "snow"}, {"datetaken": "2009-05-19 20:30:49", "license": "1", "title": "", "text": "", "album_id": "72157623047266387", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4258323107_230652aa88_o.jpg", "secret": "6476a131f9", "media": "photo", "latitude": "0", "id": "4258323107", "tags": "snow"}, {"datetaken": "2010-01-30 14:26:19", "license": "3", "title": "Florence, Italy", "text": "", "album_id": "72157623357797204", "longitude": "11.254566", "url_o": "https://farm5.staticflickr.com/4067/4335068410_d6eae855d8_o.jpg", "secret": "b6826b5c0d", "media": "photo", "latitude": "43.770900", "id": "4335068410", "tags": "florence firenze orsanmichele"}, {"datetaken": "2010-01-30 14:27:21", "license": "3", "title": "Florence, Italy", "text": "", "album_id": "72157623357797204", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2742/4334739034_cd96b7e21c_o.jpg", "secret": "0ee39dab76", "media": "photo", "latitude": "0", "id": "4334739034", "tags": "florence firenze orsanmichele"}, {"datetaken": "2010-01-30 15:33:57", "license": "3", "title": "Florence, Italy", "text": "", "album_id": "72157623357797204", "longitude": "11.260784", "url_o": "https://farm5.staticflickr.com/4056/4332841692_4007c4dd4b_o.jpg", "secret": "a1dec28656", "media": "photo", "latitude": "43.769321", "id": "4332841692", "tags": "church florence firenze santacroce santacrocechurch"}, {"datetaken": "2010-01-30 15:43:10", "license": "3", "title": "Florence, Italy", "text": "", "album_id": "72157623357797204", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4337570793_c629ba3120_o.jpg", "secret": "155044fea5", "media": "photo", "latitude": "0", "id": "4337570793", "tags": "florence firenze santacroce cappellabaroncelli baroncellichapel"}, {"datetaken": "2010-01-30 15:45:02", "license": "3", "title": "Florence, Italy", "text": "", "album_id": "72157623357797204", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4337572367_59087cc510_o.jpg", "secret": "a85d571670", "media": "photo", "latitude": "0", "id": "4337572367", "tags": "florence firenze santacroce giugnichapel cappellagiugni"}, {"datetaken": "2010-01-30 15:48:54", "license": "3", "title": "Florence, Italy", "text": "", "album_id": "72157623357797204", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4343221122_52d580d8a3_o.jpg", "secret": "bcc983bc82", "media": "photo", "latitude": "0", "id": "4343221122", "tags": "florence santacroce santacrocechurch"}, {"datetaken": "2010-01-30 15:50:40", "license": "3", "title": "Florence, Italy", "text": "", "album_id": "72157623357797204", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4342485285_3003e6b2e4_o.jpg", "secret": "bac8ed1e23", "media": "photo", "latitude": "0", "id": "4342485285", "tags": "florence santacroce santacrocechurch sacrestia sacresty"}, {"datetaken": "2010-01-30 15:56:46", "license": "3", "title": "Florence, Italy", "text": "", "album_id": "72157623357797204", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/4345999960_206ffe8f2f_o.jpg", "secret": "f7fa29c14e", "media": "photo", "latitude": "0", "id": "4345999960", "tags": "florence firenze chiostro santacroce"}, {"datetaken": "2010-01-31 14:18:38", "license": "3", "title": "Florence, Italy", "text": "", "album_id": "72157623357797204", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4347684823_c8d0536f75_o.jpg", "secret": "1254983725", "media": "photo", "latitude": "0", "id": "4347684823", "tags": "florence sanminiato"}, {"datetaken": "2010-01-31 14:22:09", "license": "3", "title": "Florence, Italy", "text": "", "album_id": "72157623357797204", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4347685549_c6399f023c_o.jpg", "secret": "2f0376bf22", "media": "photo", "latitude": "0", "id": "4347685549", "tags": "florence sanminiato"}, {"datetaken": "2008-10-12 22:08:36", "license": "5", "title": "IMG_7635", "text": "", "album_id": "72157623512500536", "longitude": "-78.373847", "url_o": "https://farm3.staticflickr.com/2558/4346713505_ae45267f0f_o.jpg", "secret": "5715af26bf", "media": "photo", "latitude": "39.387552", "id": "4346713505", "tags": "autumn cemeteries fall wooden churches hampshire wv westvirginia vernacular stonewalls woodenbuildings presbyterian 1825 wva presbyterianchurches vernaculararchitecture smallchurches stonefences woodenchurches greenroofs hampshirecounty rt127 ruralchurches countrychurches justinwilcox hampshirecountywva vernacularbuildings bloomery hampshirecountywestvirginia themountainstate bloomerywestvirginia hampshirecountywv vernacularstructures hampshirecowestvirginia hampshirecowv hampshirecowva wv127 westvirginiaroute127 wvroute127 bloomerypike bloomerywv bloomerywva justinawilcox justinandrewwilcox"}, {"datetaken": "2008-10-12 22:09:10", "license": "5", "title": "IMG_7636", "text": "", "album_id": "72157623512500536", "longitude": "-78.373847", "url_o": "https://farm5.staticflickr.com/4032/4346715641_1fdf8859f5_o.jpg", "secret": "e37056d3bd", "media": "photo", "latitude": "39.387552", "id": "4346715641", "tags": "autumn cemeteries fall wooden churches hampshire wv westvirginia vernacular stonewalls woodenbuildings presbyterian 1825 wva presbyterianchurches vernaculararchitecture smallchurches stonefences woodenchurches greenroofs hampshirecounty rt127 ruralchurches countrychurches justinwilcox hampshirecountywva vernacularbuildings bloomery hampshirecountywestvirginia themountainstate bloomerywestvirginia hampshirecountywv vernacularstructures hampshirecowestvirginia hampshirecowv hampshirecowva wv127 westvirginiaroute127 wvroute127 bloomerypike bloomerywv bloomerywva justinawilcox justinandrewwilcox"}, {"datetaken": "2008-10-12 22:09:24", "license": "5", "title": "IMG_7637", "text": "", "album_id": "72157623512500536", "longitude": "-78.373847", "url_o": "https://farm3.staticflickr.com/2699/4347465798_54709984ee_o.jpg", "secret": "73f6d30986", "media": "photo", "latitude": "39.387552", "id": "4347465798", "tags": "autumn cemeteries fall wooden churches hampshire wv westvirginia vernacular stonewalls woodenbuildings presbyterian 1825 wva presbyterianchurches vernaculararchitecture smallchurches stonefences woodenchurches greenroofs hampshirecounty rt127 ruralchurches countrychurches justinwilcox hampshirecountywva vernacularbuildings bloomery hampshirecountywestvirginia themountainstate bloomerywestvirginia hampshirecountywv vernacularstructures hampshirecowestvirginia hampshirecowv hampshirecowva wv127 westvirginiaroute127 wvroute127 bloomerypike bloomerywv bloomerywva justinawilcox justinandrewwilcox"}, {"datetaken": "2008-10-12 22:09:34", "license": "5", "title": "IMG_7638", "text": "", "album_id": "72157623512500536", "longitude": "-78.373847", "url_o": "https://farm5.staticflickr.com/4028/4346718189_1a713b423e_o.jpg", "secret": "39aca4595a", "media": "photo", "latitude": "39.387552", "id": "4346718189", "tags": "autumn cemeteries fall wooden churches hampshire wv westvirginia vernacular stonewalls woodenbuildings presbyterian 1825 wva presbyterianchurches vernaculararchitecture smallchurches stonefences woodenchurches greenroofs hampshirecounty rt127 ruralchurches countrychurches justinwilcox hampshirecountywva vernacularbuildings bloomery hampshirecountywestvirginia themountainstate bloomerywestvirginia hampshirecountywv vernacularstructures hampshirecowestvirginia hampshirecowv hampshirecowva wv127 westvirginiaroute127 wvroute127 bloomerypike bloomerywv bloomerywva justinawilcox justinandrewwilcox"}, {"datetaken": "2008-10-12 22:10:16", "license": "5", "title": "IMG_7639", "text": "", "album_id": "72157623512500536", "longitude": "-78.373847", "url_o": "https://farm5.staticflickr.com/4063/4347467274_e70ef6c3c2_o.jpg", "secret": "e4fa7c0e9a", "media": "photo", "latitude": "39.387552", "id": "4347467274", "tags": "autumn cemeteries fall wooden churches hampshire wv westvirginia vernacular stonewalls woodenbuildings presbyterian 1825 wva presbyterianchurches vernaculararchitecture smallchurches stonefences woodenchurches greenroofs hampshirecounty rt127 ruralchurches countrychurches justinwilcox hampshirecountywva vernacularbuildings bloomery hampshirecountywestvirginia themountainstate bloomerywestvirginia hampshirecountywv vernacularstructures hampshirecowestvirginia hampshirecowv hampshirecowva wv127 westvirginiaroute127 wvroute127 bloomerypike bloomerywv bloomerywva justinawilcox justinandrewwilcox"}, {"datetaken": "2008-10-12 22:10:38", "license": "5", "title": "IMG_7640", "text": "", "album_id": "72157623512500536", "longitude": "-78.373847", "url_o": "https://farm3.staticflickr.com/2775/4346725497_b2eac3acde_o.jpg", "secret": "e2bdee43fb", "media": "photo", "latitude": "39.387552", "id": "4346725497", "tags": "autumn cemeteries fall wooden churches hampshire wv westvirginia vernacular stonewalls woodenbuildings presbyterian 1825 wva presbyterianchurches vernaculararchitecture smallchurches stonefences woodenchurches greenroofs hampshirecounty rt127 ruralchurches countrychurches justinwilcox hampshirecountywva vernacularbuildings bloomery hampshirecountywestvirginia themountainstate bloomerywestvirginia hampshirecountywv vernacularstructures hampshirecowestvirginia hampshirecowv hampshirecowva wv127 westvirginiaroute127 wvroute127 bloomerypike bloomerywv bloomerywva justinawilcox justinandrewwilcox"}, {"datetaken": "2008-10-12 22:10:44", "license": "5", "title": "IMG_7641", "text": "", "album_id": "72157623512500536", "longitude": "-78.373847", "url_o": "https://farm5.staticflickr.com/4058/4347469618_7223d662fe_o.jpg", "secret": "b04b023811", "media": "photo", "latitude": "39.387552", "id": "4347469618", "tags": "autumn cemeteries fall wooden churches hampshire wv westvirginia vernacular stonewalls woodenbuildings presbyterian 1825 wva presbyterianchurches vernaculararchitecture smallchurches stonefences woodenchurches greenroofs hampshirecounty rt127 ruralchurches countrychurches justinwilcox hampshirecountywva vernacularbuildings bloomery hampshirecountywestvirginia themountainstate bloomerywestvirginia hampshirecountywv vernacularstructures hampshirecowestvirginia hampshirecowv hampshirecowva wv127 westvirginiaroute127 wvroute127 bloomerypike bloomerywv bloomerywva justinawilcox justinandrewwilcox"}, {"datetaken": "2008-10-12 22:10:52", "license": "5", "title": "IMG_7642", "text": "", "album_id": "72157623512500536", "longitude": "-78.373847", "url_o": "https://farm5.staticflickr.com/4063/4346729283_8b7fc33c5e_o.jpg", "secret": "c90aa0911d", "media": "photo", "latitude": "39.387552", "id": "4346729283", "tags": "autumn cemeteries fall wooden churches hampshire wv westvirginia vernacular stonewalls woodenbuildings presbyterian 1825 wva presbyterianchurches vernaculararchitecture smallchurches stonefences woodenchurches greenroofs hampshirecounty rt127 ruralchurches countrychurches justinwilcox hampshirecountywva vernacularbuildings bloomery hampshirecountywestvirginia themountainstate bloomerywestvirginia hampshirecountywv vernacularstructures hampshirecowestvirginia hampshirecowv hampshirecowva wv127 westvirginiaroute127 wvroute127 bloomerypike bloomerywv bloomerywva justinawilcox justinandrewwilcox"}, {"datetaken": "2008-10-12 22:11:01", "license": "5", "title": "IMG_7643", "text": "", "album_id": "72157623512500536", "longitude": "-78.373847", "url_o": "https://farm5.staticflickr.com/4029/4347473916_081bc721c5_o.jpg", "secret": "17f7a87fbb", "media": "photo", "latitude": "39.387552", "id": "4347473916", "tags": "autumn cemeteries fall wooden churches hampshire wv westvirginia vernacular stonewalls woodenbuildings presbyterian 1825 wva presbyterianchurches vernaculararchitecture smallchurches stonefences woodenchurches greenroofs hampshirecounty rt127 ruralchurches countrychurches justinwilcox hampshirecountywva vernacularbuildings bloomery hampshirecountywestvirginia themountainstate bloomerywestvirginia hampshirecountywv vernacularstructures hampshirecowestvirginia hampshirecowv hampshirecowva wv127 westvirginiaroute127 wvroute127 bloomerypike bloomerywv bloomerywva justinawilcox justinandrewwilcox"}, {"datetaken": "2008-10-12 22:11:32", "license": "5", "title": "IMG_7644", "text": "", "album_id": "72157623512500536", "longitude": "-78.373847", "url_o": "https://farm5.staticflickr.com/4003/4346731027_13dd454ba1_o.jpg", "secret": "8ed8afa32e", "media": "photo", "latitude": "39.387552", "id": "4346731027", "tags": "autumn cemeteries fall wooden churches hampshire wv westvirginia vernacular stonewalls woodenbuildings presbyterian 1825 wva presbyterianchurches vernaculararchitecture smallchurches stonefences woodenchurches greenroofs hampshirecounty rt127 ruralchurches countrychurches justinwilcox hampshirecountywva vernacularbuildings bloomery hampshirecountywestvirginia themountainstate bloomerywestvirginia hampshirecountywv vernacularstructures hampshirecowestvirginia hampshirecowv hampshirecowva wv127 westvirginiaroute127 wvroute127 bloomerypike bloomerywv bloomerywva justinawilcox justinandrewwilcox"}, {"datetaken": "2005-11-14 00:00:17", "license": "3", "title": "Western Wall 01", "text": "", "album_id": "72157623191645770", "longitude": "35.234227", "url_o": "https://farm3.staticflickr.com/2721/4266817981_725fb4dc41_o.jpg", "secret": "6d8e18a2de", "media": "photo", "latitude": "31.776884", "id": "4266817981", "tags": "israel jerusalem oldcity westernwall israel2005 ridgechurch educationalopportunity"}, {"datetaken": "2005-11-14 00:00:38", "license": "3", "title": "Western Wall 02", "text": "", "album_id": "72157623191645770", "longitude": "35.234227", "url_o": "https://farm5.staticflickr.com/4007/4266824211_0e97c13943_o.jpg", "secret": "908cd4a162", "media": "photo", "latitude": "31.776884", "id": "4266824211", "tags": "israel jerusalem oldcity westernwall israel2005 ridgechurch educationalopportunity"}, {"datetaken": "2005-11-14 00:00:42", "license": "3", "title": "Western Wall 03", "text": "", "album_id": "72157623191645770", "longitude": "35.234227", "url_o": "https://farm5.staticflickr.com/4013/4266830975_03c2313541_o.jpg", "secret": "d1869121a3", "media": "photo", "latitude": "31.776884", "id": "4266830975", "tags": "israel jerusalem oldcity westernwall israel2005 ridgechurch educationalopportunity"}, {"datetaken": "2005-11-14 00:03:03", "license": "3", "title": "Western Wall 04", "text": "", "album_id": "72157623191645770", "longitude": "35.234227", "url_o": "https://farm5.staticflickr.com/4052/4266838309_67319db5f3_o.jpg", "secret": "bcc8bd290c", "media": "photo", "latitude": "31.776884", "id": "4266838309", "tags": "israel jerusalem oldcity westernwall israel2005 ridgechurch educationalopportunity"}, {"datetaken": "2005-11-14 00:03:25", "license": "3", "title": "Western Wall 05", "text": "", "album_id": "72157623191645770", "longitude": "35.234227", "url_o": "https://farm5.staticflickr.com/4003/4267590058_b91ae55181_o.jpg", "secret": "02f958ffd1", "media": "photo", "latitude": "31.776884", "id": "4267590058", "tags": "israel jerusalem oldcity westernwall israel2005 ridgechurch educationalopportunity"}, {"datetaken": "2005-11-14 00:03:41", "license": "3", "title": "Western Wall 06", "text": "", "album_id": "72157623191645770", "longitude": "35.234227", "url_o": "https://farm3.staticflickr.com/2731/4267595846_41b58af7d7_o.jpg", "secret": "302ca4c645", "media": "photo", "latitude": "31.776884", "id": "4267595846", "tags": "israel jerusalem oldcity westernwall israel2005 ridgechurch educationalopportunity"}, {"datetaken": "2005-11-14 00:08:59", "license": "3", "title": "Western Wall 07", "text": "", "album_id": "72157623191645770", "longitude": "35.234227", "url_o": "https://farm5.staticflickr.com/4027/4266856743_4e5a64e28d_o.jpg", "secret": "2f786ec8dd", "media": "photo", "latitude": "31.776884", "id": "4266856743", "tags": "israel jerusalem oldcity westernwall israel2005 ridgechurch educationalopportunity"}, {"datetaken": "2005-11-14 00:11:06", "license": "3", "title": "Western Wall 08", "text": "", "album_id": "72157623191645770", "longitude": "35.234227", "url_o": "https://farm5.staticflickr.com/4072/4266862723_810e1d00ca_o.jpg", "secret": "0df5b9ef91", "media": "photo", "latitude": "31.776884", "id": "4266862723", "tags": "israel jerusalem oldcity westernwall israel2005 ridgechurch educationalopportunity"}, {"datetaken": "2005-11-14 00:13:25", "license": "3", "title": "Western Wall 08", "text": "", "album_id": "72157623191645770", "longitude": "35.234227", "url_o": "https://farm5.staticflickr.com/4019/4267614492_57b4caae05_o.jpg", "secret": "3d98478d38", "media": "photo", "latitude": "31.776884", "id": "4267614492", "tags": "israel israel2005 educationalopportunity ridgechurch oldcity jerusalem westernwall"}, {"datetaken": "2005-11-14 00:14:11", "license": "3", "title": "Western Wall 10", "text": "", "album_id": "72157623191645770", "longitude": "35.234227", "url_o": "https://farm5.staticflickr.com/4032/4267620686_d0586e0136_o.jpg", "secret": "dbaf948f9d", "media": "photo", "latitude": "31.776884", "id": "4267620686", "tags": "israel jerusalem oldcity westernwall israel2005 ridgechurch educationalopportunity"}, {"datetaken": "2005-11-14 00:21:13", "license": "3", "title": "Western Wall 11", "text": "", "album_id": "72157623191645770", "longitude": "35.234227", "url_o": "https://farm3.staticflickr.com/2798/4266879981_6a864f8b1d_o.jpg", "secret": "9a276ed244", "media": "photo", "latitude": "31.776884", "id": "4266879981", "tags": "israel jerusalem oldcity westernwall israel2005 ridgechurch educationalopportunity"}, {"datetaken": "2005-11-14 00:21:23", "license": "3", "title": "Western Wall 12", "text": "", "album_id": "72157623191645770", "longitude": "35.234227", "url_o": "https://farm5.staticflickr.com/4010/4266885507_bd404dbc47_o.jpg", "secret": "08aca7676d", "media": "photo", "latitude": "31.776884", "id": "4266885507", "tags": "israel jerusalem oldcity westernwall israel2005 ridgechurch educationalopportunity"}, {"datetaken": "2005-11-14 00:22:10", "license": "3", "title": "Western Wall 13", "text": "", "album_id": "72157623191645770", "longitude": "35.234227", "url_o": "https://farm5.staticflickr.com/4025/4267637504_a9bbabba20_o.jpg", "secret": "3fc4ab70d5", "media": "photo", "latitude": "31.776884", "id": "4267637504", "tags": "israel jerusalem oldcity westernwall israel2005 ridgechurch educationalopportunity"}, {"datetaken": "2005-11-14 00:22:27", "license": "3", "title": "Western Wall 14", "text": "", "album_id": "72157623191645770", "longitude": "35.234227", "url_o": "https://farm5.staticflickr.com/4059/4267643266_6f87c75227_o.jpg", "secret": "1b1332e99d", "media": "photo", "latitude": "31.776884", "id": "4267643266", "tags": "israel jerusalem oldcity westernwall israel2005 ridgechurch educationalopportunity"}, {"datetaken": "2010-02-12 10:57:22", "license": "3", "title": "Annunciation; Nativity; Flight into Egypt", "text": "", "album_id": "72157623293893311", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4350645809_772214894f_o.jpg", "secret": "ccfda2d810", "media": "photo", "latitude": "0", "id": "4350645809", "tags": "raw tripod naturallight stainedglass 1900 middlesex churchwindows churchofengland stmartinschurch ruislip victorianstainedglass almoore walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-12 10:59:17", "license": "3", "title": "3 Maries at Sepulchre", "text": "", "album_id": "72157623293893311", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2776/4351392908_10343b0bdd_o.jpg", "secret": "9a5d465b99", "media": "photo", "latitude": "0", "id": "4351392908", "tags": "raw tripod naturallight stainedglass middlesex 1886 churchwindows churchofengland stmartinschurch ruislip victorianstainedglass mayerco walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-12 11:02:04", "license": "3", "title": "St.James; St. Peter; St.John", "text": "", "album_id": "72157623293893311", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4350646581_ff3f20d994_o.jpg", "secret": "c8f18b7202", "media": "photo", "latitude": "0", "id": "4350646581", "tags": "raw tripod naturallight stainedglass middlesex 1890 churchwindows churchofengland stmartinschurch ruislip victorianstainedglass claytonbell walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-12 11:04:30", "license": "3", "title": "St Martin the Baggar", "text": "", "album_id": "72157623293893311", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4351393674_d3a60d5acc_o.jpg", "secret": "0cd9ce1a42", "media": "photo", "latitude": "0", "id": "4351393674", "tags": "raw tripod naturallight stainedglass middlesex 1901 churchwindows churchofengland stmartinschurch ruislip victorianstainedglass kempeco walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-12 11:07:46", "license": "3", "title": "Noli me Tangere", "text": "", "album_id": "72157623293893311", "longitude": "-0.426031", "url_o": "https://farm5.staticflickr.com/4069/4350647241_9c2f041aaf_o.jpg", "secret": "f47f10af73", "media": "photo", "latitude": "51.576800", "id": "4350647241", "tags": "raw tripod naturallight 1954 stainedglass middlesex churchwindows churchofengland stmartinschurch ruislip contemporarystainedglass laurencelee walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-12 11:09:01", "license": "3", "title": "Charge to Peter", "text": "", "album_id": "72157623293893311", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4351394404_257eb3bcd5_o.jpg", "secret": "3736fb51bb", "media": "photo", "latitude": "0", "id": "4351394404", "tags": "raw tripod naturallight stainedglass middlesex churchwindows churchofengland stmartinschurch ruislip victorianstainedglass claytonbell walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-12 11:11:51", "license": "3", "title": "East Window", "text": "", "album_id": "72157623293893311", "longitude": "-0.425820", "url_o": "https://farm5.staticflickr.com/4054/4351394784_d02af82604_o.jpg", "secret": "c70eb9b483", "media": "photo", "latitude": "51.576716", "id": "4351394784", "tags": "raw tripod naturallight stainedglass middlesex 1869 churchwindows churchofengland stmartinschurch ruislip victorianstainedglass walkingwithmynikon nikkorpce24f35 coxsons"}, {"datetaken": "2010-02-12 11:12:32", "license": "3", "title": "St Martin's vision", "text": "", "album_id": "72157623293893311", "longitude": "-0.425987", "url_o": "https://farm3.staticflickr.com/2771/4351395102_045b274c0f_o.jpg", "secret": "64289242cf", "media": "photo", "latitude": "51.576805", "id": "4351395102", "tags": "raw tripod naturallight stainedglass middlesex 1901 churchwindows churchofengland stmartinschurch ruislip victorianstainedglass kempeco walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-12 11:13:36", "license": "3", "title": "Matthew; Mark; Christ; Luke; John", "text": "", "album_id": "72157623293893311", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2429/4350648639_cecec9241e_o.jpg", "secret": "8c2a9dac53", "media": "photo", "latitude": "0", "id": "4350648639", "tags": "raw tripod naturallight stainedglass middlesex churchwindows churchofengland 1873 stmartinschurch ruislip victorianstainedglass walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-12 11:14:36", "license": "3", "title": "Crucifixion", "text": "", "album_id": "72157623293893311", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2728/4350648993_40bd3cb410_o.jpg", "secret": "62ed6e0bb5", "media": "photo", "latitude": "0", "id": "4350648993", "tags": "raw tripod naturallight stainedglass middlesex 1870 churchwindows churchofengland stmartinschurch ruislip lavers victorianstainedglass walkingwithmynikon nikkorpce24f35 barraudwestlake"}, {"datetaken": "2010-02-12 11:15:28", "license": "3", "title": "Miracle of Loaves & Fishes", "text": "", "album_id": "72157623293893311", "longitude": "-0.426584", "url_o": "https://farm5.staticflickr.com/4020/4351396148_a06840b13e_o.jpg", "secret": "82aee13be9", "media": "photo", "latitude": "51.576380", "id": "4351396148", "tags": "raw tripod naturallight stainedglass middlesex churchwindows churchofengland stmartinschurch ruislip victorianstainedglass walkingwithmynikon laversbarraudwestlake nikkorpce24f35"}, {"datetaken": "2010-02-12 11:16:04", "license": "3", "title": "Marriage at Cana", "text": "", "album_id": "72157623293893311", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4351396478_0ac4c91d6f_o.jpg", "secret": "fbbf94b6a2", "media": "photo", "latitude": "0", "id": "4351396478", "tags": "raw tripod naturallight stainedglass middlesex churchwindows churchofengland stmartinschurch ruislip victorianstainedglass walkingwithmynikon laversbarraudwestlake nikkorpce24f35"}, {"datetaken": "2010-02-12 11:16:55", "license": "3", "title": "Nativity", "text": "", "album_id": "72157623293893311", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4350649965_bceefcff8c_o.jpg", "secret": "29dca0d157", "media": "photo", "latitude": "0", "id": "4350649965", "tags": "raw tripod naturallight stainedglass middlesex churchwindows churchofengland stmartinschurch ruislip victorianstainedglass walkingwithmynikon laversbarraudwestlake nikkorpce24f35"}, {"datetaken": "2010-02-12 11:17:58", "license": "3", "title": "Four Old Testament Prophets", "text": "", "album_id": "72157623293893311", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2784/4350650367_2c77d06cd4_o.jpg", "secret": "3f55f7ddd3", "media": "photo", "latitude": "0", "id": "4350650367", "tags": "raw tripod naturallight stainedglass middlesex churchwindows churchofengland stmartinschurch ruislip victorianstainedglass walkingwithmynikon nikkorpce24f35 1870laversbarraudwestlake"}, {"datetaken": "2010-02-12 11:21:37", "license": "3", "title": "Locking into the Chancel from the nave", "text": "", "album_id": "72157623293893311", "longitude": "-0.426284", "url_o": "https://farm5.staticflickr.com/4031/4350650701_4720330e74_o.jpg", "secret": "ec09ee0bae", "media": "photo", "latitude": "51.576886", "id": "4350650701", "tags": "raw tripod naturallight middlesex georgegilbertscott churchofengland stmartinschurch ruislip churchinteriors walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-12 11:23:01", "license": "3", "title": "Medieval wall painting in the Nave", "text": "", "album_id": "72157623293893311", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4351397812_4bc470198a_o.jpg", "secret": "8b53148ebf", "media": "photo", "latitude": "0", "id": "4351397812", "tags": "raw naturallight middlesex wallpaintings churchofengland stmartinschurch ruislip medievalart churchinteriors walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-12 11:23:30", "license": "3", "title": "Medieval wall painting in the Nave", "text": "", "album_id": "72157623293893311", "longitude": "-0.426425", "url_o": "https://farm5.staticflickr.com/4051/4350651275_603edc0bb7_o.jpg", "secret": "7d3388e2a2", "media": "photo", "latitude": "51.576672", "id": "4350651275", "tags": "raw naturallight middlesex wallpaintings churchofengland stmartinschurch ruislip medievalart churchinteriors walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-12 11:26:15", "license": "3", "title": "Medieval Wall painting in St. Michael's Chapel", "text": "", "album_id": "72157623293893311", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2692/4351398302_107e25c880_o.jpg", "secret": "395b7385c4", "media": "photo", "latitude": "0", "id": "4351398302", "tags": "raw naturallight middlesex wallpaintings churchofengland stmartinschurch ruislip medievalart churchinteriors walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-02-11 23:46:49", "license": "2", "title": "DSC_0380", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4351469147_884eccbfa7_o.jpg", "secret": "6172363282", "media": "photo", "latitude": "0", "id": "4351469147", "tags": "city house snow birmingham cemetary complex municipal wylie"}, {"datetaken": "2010-02-11 23:48:53", "license": "2", "title": "Downtown Sign", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2728/4352219324_3c9aab2e2b_o.jpg", "secret": "3b87c3e275", "media": "photo", "latitude": "0", "id": "4352219324", "tags": "city house snow birmingham cemetary complex municipal wylie"}, {"datetaken": "2010-02-11 23:56:27", "license": "2", "title": "Birmingham House 1", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2767/4351477401_aecf583c33_o.jpg", "secret": "51cf810279", "media": "photo", "latitude": "0", "id": "4351477401", "tags": "city house snow birmingham cemetary complex municipal wylie"}, {"datetaken": "2010-02-11 23:57:21", "license": "2", "title": "Birmingham House 5", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4352232078_4078b98433_o.jpg", "secret": "4dd306f71f", "media": "photo", "latitude": "0", "id": "4352232078", "tags": "city house snow birmingham cemetary complex municipal wylie"}, {"datetaken": "2010-02-11 23:59:27", "license": "2", "title": "Birmingham House 2", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2711/4352226204_82b23b571b_o.jpg", "secret": "65e2c18a22", "media": "photo", "latitude": "0", "id": "4352226204", "tags": "city house snow birmingham cemetary complex municipal wylie"}, {"datetaken": "2010-02-12 00:02:15", "license": "2", "title": "Birmingham House 4", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4352229592_3201570108_o.jpg", "secret": "d81382b8d0", "media": "photo", "latitude": "0", "id": "4352229592", "tags": "city house snow birmingham cemetary complex municipal wylie"}, {"datetaken": "2010-02-12 00:02:15", "license": "2", "title": "Birmingham House 3", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4351480187_9b7093d275_o.jpg", "secret": "fc63d868a5", "media": "photo", "latitude": "0", "id": "4351480187", "tags": "city house snow birmingham cemetary complex municipal wylie"}, {"datetaken": "2010-02-12 00:08:48", "license": "2", "title": "Church", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2755/4351509985_f4dc688d26_o.jpg", "secret": "af0e465ba0", "media": "photo", "latitude": "0", "id": "4351509985", "tags": "winter snow church historic wylie"}, {"datetaken": "2010-02-12 00:16:30", "license": "2", "title": "Cemetary 1", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4352218690_c300b81a16_o.jpg", "secret": "d22205cdcb", "media": "photo", "latitude": "0", "id": "4352218690", "tags": "city house snow birmingham cemetary complex municipal wylie"}, {"datetaken": "2010-02-12 00:17:11", "license": "2", "title": "Cemetary 3", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4352224512_9c2eae752e_o.jpg", "secret": "ed071c8072", "media": "photo", "latitude": "0", "id": "4352224512", "tags": "city house snow birmingham cemetary complex municipal wylie"}, {"datetaken": "2010-02-12 00:18:23", "license": "2", "title": "Cemetary 2", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2715/4351475643_7010431f14_o.jpg", "secret": "3c76a933d7", "media": "photo", "latitude": "0", "id": "4351475643", "tags": "city house snow birmingham cemetary complex municipal wylie"}, {"datetaken": "2010-02-12 00:47:38", "license": "2", "title": "Municipal Complex", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2789/4351474433_300b3df368_o.jpg", "secret": "452fc8bdaf", "media": "photo", "latitude": "0", "id": "4351474433", "tags": "city house snow birmingham cemetary complex municipal wylie"}, {"datetaken": "2010-02-12 00:56:36", "license": "2", "title": "Sage Creek 2", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2695/4351479243_ed05d2736e_o.jpg", "secret": "2a65ea38fc", "media": "photo", "latitude": "0", "id": "4351479243", "tags": "city house snow birmingham cemetary complex municipal wylie"}, {"datetaken": "2010-02-12 00:56:36", "license": "2", "title": "Sage Creek", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4351478661_789022fa4f_o.jpg", "secret": "186efd2560", "media": "photo", "latitude": "0", "id": "4351478661", "tags": "city house snow birmingham cemetary complex municipal wylie"}, {"datetaken": "2010-02-12 01:14:45", "license": "2", "title": "Creekside 2", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4351472285_daa11bf618_o.jpg", "secret": "7c64e189c7", "media": "photo", "latitude": "0", "id": "4351472285", "tags": "city house snow birmingham cemetary complex municipal wylie"}, {"datetaken": "2010-02-12 01:16:59", "license": "2", "title": "Creekside 3", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4352221724_1999c9d3c5_o.jpg", "secret": "a3ea3393a6", "media": "photo", "latitude": "0", "id": "4352221724", "tags": "city house snow birmingham cemetary complex municipal wylie"}, {"datetaken": "2010-02-12 01:17:03", "license": "2", "title": "Creekside 1", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4352218112_0ea591abf7_o.jpg", "secret": "c6633648b2", "media": "photo", "latitude": "0", "id": "4352218112", "tags": "city house snow birmingham cemetary complex municipal wylie"}, {"datetaken": "2010-02-12 01:17:26", "license": "2", "title": "Creekside 4", "text": "", "album_id": "72157623297756599", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4351482677_5f6d2c8b93_o.jpg", "secret": "e73e3b309b", "media": "photo", "latitude": "0", "id": "4351482677", "tags": "city house snow birmingham cemetary complex municipal wylie"}, {"datetaken": "2010-02-13 06:53:51", "license": "1", "title": "\u0426\u0435\u0440\u043a\u043e\u0432\u044c \u0421\u043f\u0430\u0441\u0430 \u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0430 \u0418\u043b\u044c\u0438\u043d\u0435 \u0443\u043b\u0438\u0446\u0435 / Church of the Transfiguration of the Savior on Ilin Street", "text": "", "album_id": "72157624100258505", "longitude": "31.295199", "url_o": "https://farm5.staticflickr.com/4055/4356444739_696e89ed5f_o.jpg", "secret": "fb2b87d0a9", "media": "photo", "latitude": "58.517565", "id": "4356444739", "tags": "russia novgorod"}, {"datetaken": "2010-02-13 07:22:16", "license": "1", "title": "\u0420\u0435\u043a\u0430 \u0412\u043e\u043b\u0445\u043e\u0432 / Volkhov River", "text": "", "album_id": "72157624100258505", "longitude": "31.282775", "url_o": "https://farm3.staticflickr.com/2738/4356445377_8333b598aa_o.jpg", "secret": "bd423867df", "media": "photo", "latitude": "58.520492", "id": "4356445377", "tags": "russia novgorod"}, {"datetaken": "2010-02-13 07:32:12", "license": "1", "title": "\u0421\u043e\u0444\u0438\u0439\u0441\u043a\u0438\u0439 \u0441\u043e\u0431\u043e\u0440 / St. Sophia Cathedral", "text": "", "album_id": "72157624100258505", "longitude": "31.276960", "url_o": "https://farm5.staticflickr.com/4061/4356446349_edbd0ca670_o.jpg", "secret": "2d0a14ac56", "media": "photo", "latitude": "58.522092", "id": "4356446349", "tags": "russia novgorod"}, {"datetaken": "2010-02-13 08:48:07", "license": "1", "title": "\u041f\u0430\u043c\u044f\u0442\u043d\u0438\u043a \u00ab\u0422\u044b\u0441\u044f\u0447\u0435\u043b\u0435\u0442\u0438\u0435 \u0420\u043e\u0441\u0441\u0438\u0438\u00bb / \"Millenium of Russia\" monument", "text": "", "album_id": "72157624100258505", "longitude": "31.276144", "url_o": "https://farm5.staticflickr.com/4026/4356447157_a9ea57612c_o.jpg", "secret": "a6524032a5", "media": "photo", "latitude": "58.521279", "id": "4356447157", "tags": "russia novgorod"}, {"datetaken": "2010-02-13 08:54:24", "license": "1", "title": "\u041f\u0430\u043c\u044f\u0442\u043d\u0438\u043a \u041b\u0435\u043d\u0438\u043d\u0443 \u043d\u0430 \u0421\u043e\u0444\u0438\u0439\u0441\u043a\u043e\u0439 \u043f\u043b\u043e\u0449\u0430\u0434\u0438 / Lenin Statue on Sofia Square", "text": "", "album_id": "72157624100258505", "longitude": "31.270952", "url_o": "https://farm3.staticflickr.com/2710/4356448197_7965257b4a_o.jpg", "secret": "d23f1f2a0e", "media": "photo", "latitude": "58.523162", "id": "4356448197", "tags": "russia novgorod"}, {"datetaken": "2010-02-14 03:18:32", "license": "1", "title": "\u041c\u0443\u0437\u0435\u0439 \u043d\u0430\u0440\u043e\u0434\u043d\u043e\u0433\u043e \u0434\u0435\u0440\u0435\u0432\u044f\u043d\u043d\u043e\u0433\u043e \u0437\u043e\u0434\u0447\u0435\u0441\u0442\u0432\u0430 \"\u0412\u0438\u0442\u043e\u0441\u043b\u0430\u0432\u043b\u0438\u0446\u044b\" / The \"Vitoslavlitsy\" Museum of Wooden Architecture", "text": "", "album_id": "72157624100258505", "longitude": "31.272883", "url_o": "https://farm5.staticflickr.com/4026/4356448849_c2efcbd4d9_o.jpg", "secret": "d4d8c11e2e", "media": "photo", "latitude": "58.490553", "id": "4356448849", "tags": "russia novgorod"}, {"datetaken": "2010-02-14 03:24:03", "license": "1", "title": "\u041d\u043e\u0432\u0433\u043e\u0440\u043e\u0434 / Novgorod", "text": "", "album_id": "72157624100258505", "longitude": "31.275157", "url_o": "https://farm3.staticflickr.com/2708/4356449441_a826be1c07_o.jpg", "secret": "1fb41f9350", "media": "photo", "latitude": "58.491933", "id": "4356449441", "tags": "russia novgorod"}, {"datetaken": "2010-02-14 03:35:24", "license": "1", "title": "\u041d\u043e\u0432\u0433\u043e\u0440\u043e\u0434 / Novgorod", "text": "", "album_id": "72157624100258505", "longitude": "31.275157", "url_o": "https://farm5.staticflickr.com/4055/4356450387_6f04cdc102_o.jpg", "secret": "56f609453c", "media": "photo", "latitude": "58.491933", "id": "4356450387", "tags": "russia novgorod"}, {"datetaken": "2010-02-14 05:31:48", "license": "1", "title": "\u041c\u0443\u0437\u0435\u0439 \u043d\u0430\u0440\u043e\u0434\u043d\u043e\u0433\u043e \u0434\u0435\u0440\u0435\u0432\u044f\u043d\u043d\u043e\u0433\u043e \u0437\u043e\u0434\u0447\u0435\u0441\u0442\u0432\u0430 \"\u0412\u0438\u0442\u043e\u0441\u043b\u0430\u0432\u043b\u0438\u0446\u044b\" / The \"Vitoslavlitsy\" Museum of Wooden Architecture", "text": "", "album_id": "72157624100258505", "longitude": "31.272754", "url_o": "https://farm5.staticflickr.com/4008/4356450903_ea2861ff0a_o.jpg", "secret": "f6ef0a319a", "media": "photo", "latitude": "58.492191", "id": "4356450903", "tags": "russia novgorod"}, {"datetaken": "2010-02-14 05:35:02", "license": "1", "title": "\u041c\u0443\u0437\u0435\u0439 \u043d\u0430\u0440\u043e\u0434\u043d\u043e\u0433\u043e \u0434\u0435\u0440\u0435\u0432\u044f\u043d\u043d\u043e\u0433\u043e \u0437\u043e\u0434\u0447\u0435\u0441\u0442\u0432\u0430 \"\u0412\u0438\u0442\u043e\u0441\u043b\u0430\u0432\u043b\u0438\u0446\u044b\" / The \"Vitoslavlitsy\" Museum of Wooden Architecture", "text": "", "album_id": "72157624100258505", "longitude": "31.272754", "url_o": "https://farm5.staticflickr.com/4059/4356451753_a818af166c_o.jpg", "secret": "fbed7f753b", "media": "photo", "latitude": "58.492191", "id": "4356451753", "tags": "russia novgorod"}, {"datetaken": "2010-02-14 05:35:07", "license": "1", "title": "\u041c\u0443\u0437\u0435\u0439 \u043d\u0430\u0440\u043e\u0434\u043d\u043e\u0433\u043e \u0434\u0435\u0440\u0435\u0432\u044f\u043d\u043d\u043e\u0433\u043e \u0437\u043e\u0434\u0447\u0435\u0441\u0442\u0432\u0430 \"\u0412\u0438\u0442\u043e\u0441\u043b\u0430\u0432\u043b\u0438\u0446\u044b\" / The \"Vitoslavlitsy\" Museum of Wooden Architecture", "text": "", "album_id": "72157624100258505", "longitude": "31.272754", "url_o": "https://farm3.staticflickr.com/2763/4357199188_58ffc57f71_o.jpg", "secret": "73e85f87e8", "media": "photo", "latitude": "58.492191", "id": "4357199188", "tags": "russia novgorod"}, {"datetaken": "2010-02-14 07:04:53", "license": "1", "title": "\u0413\u043e\u0440\u044f\u0449\u0435\u0435 \u0447\u0443\u0447\u0435\u043b\u043e \u041c\u0430\u0441\u043b\u0435\u043d\u0438\u0446\u044b / Burning Maslenitsa effigy", "text": "", "album_id": "72157624100258505", "longitude": "31.272325", "url_o": "https://farm5.staticflickr.com/4035/4356453449_84c47f89a7_o.jpg", "secret": "87f647dc1e", "media": "photo", "latitude": "58.489140", "id": "4356453449", "tags": "russia novgorod"}, {"datetaken": "2010-02-14 07:05:19", "license": "1", "title": "\u0413\u043e\u0440\u044f\u0449\u0435\u0435 \u0447\u0443\u0447\u0435\u043b\u043e \u041c\u0430\u0441\u043b\u0435\u043d\u0438\u0446\u044b / Burning Maslenitsa effigy", "text": "", "album_id": "72157624100258505", "longitude": "31.272325", "url_o": "https://farm5.staticflickr.com/4020/4356454301_922c1bc71c_o.jpg", "secret": "01331eed1a", "media": "photo", "latitude": "58.489140", "id": "4356454301", "tags": "russia novgorod"}, {"datetaken": "2010-02-14 07:54:19", "license": "1", "title": "\u041c\u0430\u0441\u043b\u0435\u043d\u0438\u0446\u0430 / Maslenitsa", "text": "", "album_id": "72157624100258505", "longitude": "31.269149", "url_o": "https://farm3.staticflickr.com/2745/4356455125_d233ef5217_o.jpg", "secret": "74f3810d5c", "media": "photo", "latitude": "58.523027", "id": "4356455125", "tags": "russia novgorod"}, {"datetaken": "2010-02-14 08:23:29", "license": "1", "title": "\u0413\u043e\u0440\u044f\u0449\u0435\u0435 \u0447\u0443\u0447\u0435\u043b\u043e \u041c\u0430\u0441\u043b\u0435\u043d\u0438\u0446\u044b / Burning Maslenitsa effigy", "text": "", "album_id": "72157624100258505", "longitude": "31.278033", "url_o": "https://farm3.staticflickr.com/2719/4356456347_c642b151f0_o.jpg", "secret": "74c8877197", "media": "photo", "latitude": "58.517884", "id": "4356456347", "tags": "russia novgorod"}, {"datetaken": "2010-02-14 08:27:11", "license": "1", "title": "\u0420\u0435\u043a\u0430 \u0412\u043e\u043b\u0445\u043e\u0432 / Volkhov River", "text": "", "album_id": "72157624100258505", "longitude": "31.278033", "url_o": "https://farm5.staticflickr.com/4056/4356457145_fe0d3281e6_o.jpg", "secret": "9c32351357", "media": "photo", "latitude": "58.517884", "id": "4356457145", "tags": "russia novgorod"}, {"datetaken": "2010-02-14 20:04:59", "license": "2", "title": "IMG_5592", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4358448882_623924d9e2_o.jpg", "secret": "30284a37a9", "media": "photo", "latitude": "0", "id": "4358448882", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 20:21:13", "license": "2", "title": "IMG_5594", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4358449196_6c17a36164_o.jpg", "secret": "93738e3b4b", "media": "photo", "latitude": "0", "id": "4358449196", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 20:23:48", "license": "2", "title": "IMG_5598", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2784/4357703381_e76eb91bca_o.jpg", "secret": "0e8f745e5f", "media": "photo", "latitude": "0", "id": "4357703381", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 20:23:48", "license": "2", "title": "IMG_5599", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4357703813_6a4f3d60a8_o.jpg", "secret": "bcb11c3193", "media": "photo", "latitude": "0", "id": "4357703813", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 20:23:48", "license": "2", "title": "IMG_5600", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4357704277_2b7c1eef3c_o.jpg", "secret": "87af164683", "media": "photo", "latitude": "0", "id": "4357704277", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 20:43:55", "license": "2", "title": "IMG_5614", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4357704627_392e59af9d_o.jpg", "secret": "081c26e1e9", "media": "photo", "latitude": "0", "id": "4357704627", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 20:43:56", "license": "2", "title": "IMG_5616", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4358451352_19ee946fe4_o.jpg", "secret": "bff9e2fd57", "media": "photo", "latitude": "0", "id": "4358451352", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 20:53:49", "license": "2", "title": "IMG_5620", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2751/4358451722_44d7d965b3_o.jpg", "secret": "94613fa64a", "media": "photo", "latitude": "0", "id": "4358451722", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 21:06:41", "license": "2", "title": "IMG_5624", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/4358452112_8d7bbfb9ff_o.jpg", "secret": "57bd7c7768", "media": "photo", "latitude": "0", "id": "4358452112", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 21:09:02", "license": "2", "title": "IMG_5627", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4358452418_7656e1595e_o.jpg", "secret": "20d4d353ed", "media": "photo", "latitude": "0", "id": "4358452418", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 21:13:42", "license": "2", "title": "IMG_5642", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4357706369_402bb70c5a_o.jpg", "secret": "91f443c57c", "media": "photo", "latitude": "0", "id": "4357706369", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 21:20:01", "license": "2", "title": "IMG_5647", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2720/4358453108_aefae8c43e_o.jpg", "secret": "8f90b15f53", "media": "photo", "latitude": "0", "id": "4358453108", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 21:30:03", "license": "2", "title": "IMG_5653", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4358454162_e14f61f3ee_o.jpg", "secret": "689e4d8ebb", "media": "photo", "latitude": "0", "id": "4358454162", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 21:30:21", "license": "2", "title": "IMG_5657", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2714/4358454642_5871404c8e_o.jpg", "secret": "163d4e269a", "media": "photo", "latitude": "0", "id": "4358454642", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 21:30:22", "license": "2", "title": "IMG_5659", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4358455036_41ac3b2ec6_o.jpg", "secret": "8069a6ddc9", "media": "photo", "latitude": "0", "id": "4358455036", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 21:30:26", "license": "2", "title": "IMG_5660", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4358455334_1b6b0be3f0_o.jpg", "secret": "49157c06d1", "media": "photo", "latitude": "0", "id": "4358455334", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 21:31:26", "license": "2", "title": "IMG_5664", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4358455624_7d3e190286_o.jpg", "secret": "6c723c8d6a", "media": "photo", "latitude": "0", "id": "4358455624", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 21:39:22", "license": "2", "title": "IMG_5680", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4358455946_33109e316a_o.jpg", "secret": "caeb60d2fc", "media": "photo", "latitude": "0", "id": "4358455946", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 21:39:22", "license": "2", "title": "IMG_5682", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4357710081_3879b62eb9_o.jpg", "secret": "7c5fd3d693", "media": "photo", "latitude": "0", "id": "4357710081", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 21:40:07", "license": "2", "title": "IMG_5685", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4357710443_b09b308a42_o.jpg", "secret": "0ef9d5fae3", "media": "photo", "latitude": "0", "id": "4357710443", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 21:50:19", "license": "2", "title": "IMG_5686", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4357710749_3f7bc9c9c6_o.jpg", "secret": "f5490286af", "media": "photo", "latitude": "0", "id": "4357710749", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 21:55:22", "license": "2", "title": "IMG_5689", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4358457538_ae50b9e1ed_o.jpg", "secret": "6eae87ddc7", "media": "photo", "latitude": "0", "id": "4358457538", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-14 21:55:23", "license": "2", "title": "IMG_5692", "text": "", "album_id": "72157623312407191", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2777/4358457872_73e367a502_o.jpg", "secret": "c2506ce27e", "media": "photo", "latitude": "0", "id": "4358457872", "tags": "davebrianhaitireliefconcertaddisvillechurchrichboropa"}, {"datetaken": "2010-02-12 16:41:06", "license": "1", "title": "IMG_1558", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/5079305047_c143a07eed_o.jpg", "secret": "d990c6569a", "media": "photo", "latitude": "0", "id": "5079305047", "tags": "brothersofjohnthesteadfast klemetpreus"}, {"datetaken": "2010-02-12 16:41:40", "license": "1", "title": "IMG_1559", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/5079306665_64a0483351_o.jpg", "secret": "ca98af6cdf", "media": "photo", "latitude": "0", "id": "5079306665", "tags": "brothersofjohnthesteadfast klemetpreus"}, {"datetaken": "2010-02-12 16:41:54", "license": "1", "title": "IMG_1561", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4357852945_2603ee37c5_o.jpg", "secret": "f1ba1cea6c", "media": "photo", "latitude": "0", "id": "4357852945", "tags": "naperville bethanylutheran brothersofjohnthesteadfast klemetpreus"}, {"datetaken": "2010-02-12 19:17:40", "license": "1", "title": "IMG_1571", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4358633854_f4ff457dc2_o.jpg", "secret": "a82b43ac1a", "media": "photo", "latitude": "0", "id": "4358633854", "tags": "church cross naperville lutherans lutheranism bethanylutheran brothersofjohnthesteadfast"}, {"datetaken": "2010-02-12 19:18:41", "license": "1", "title": "IMG_1574", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4357904769_c7fa096c52_o.jpg", "secret": "0d1e33850b", "media": "photo", "latitude": "0", "id": "4357904769", "tags": "naperville bethanylutheran brothersofjohnthesteadfast"}, {"datetaken": "2010-02-12 19:21:18", "license": "1", "title": "IMG_1577", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4357908413_f5d371ea0d_o.jpg", "secret": "b6a9dc3da5", "media": "photo", "latitude": "0", "id": "4357908413", "tags": "naperville bethanylutheran brothersofjohnthesteadfast"}, {"datetaken": "2010-02-13 09:10:55", "license": "1", "title": "IMG_1580", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2557/4357855837_867ce83d39_o.jpg", "secret": "e2fd868269", "media": "photo", "latitude": "0", "id": "4357855837", "tags": "naperville bethanylutheran brothersofjohnthesteadfast molliehemingway"}, {"datetaken": "2010-02-13 09:11:29", "license": "1", "title": "IMG_1585", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2747/4357854435_20d5538496_o.jpg", "secret": "577cccd762", "media": "photo", "latitude": "0", "id": "4357854435", "tags": "naperville bethanylutheran brothersofjohnthesteadfast molliehemingway"}, {"datetaken": "2010-02-13 10:00:09", "license": "1", "title": "IMG_1611", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4357857321_6a6ceba9ab_o.jpg", "secret": "8681ec8000", "media": "photo", "latitude": "0", "id": "4357857321", "tags": "naperville bethanylutheran normfisher brothersofjohnthesteadfast toddwilken"}, {"datetaken": "2010-02-13 10:06:11", "license": "1", "title": "IMG_1615", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2694/4358639566_b68820949f_o.jpg", "secret": "d66aacd381", "media": "photo", "latitude": "0", "id": "4358639566", "tags": "church cross naperville lutheranism bethanylutheran brothersofjohnthesteadfast"}, {"datetaken": "2010-02-13 10:06:19", "license": "1", "title": "IMG_1616", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2617/4357894967_c3831ee996_o.jpg", "secret": "911530b7f4", "media": "photo", "latitude": "0", "id": "4357894967", "tags": "church cross naperville lutheranism bethanylutheran brothersofjohnthesteadfast"}, {"datetaken": "2010-02-13 10:09:05", "license": "1", "title": "IMG_1625", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4088/5079295199_bb44d85563_o.jpg", "secret": "9ca318a97a", "media": "photo", "latitude": "0", "id": "5079295199", "tags": "brothersofjohnthesteadfast mollyhemingway"}, {"datetaken": "2010-02-13 10:27:43", "license": "1", "title": "IMG_1629", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2715/4358641926_388c559e19_o.jpg", "secret": "fd296ce99b", "media": "photo", "latitude": "0", "id": "4358641926", "tags": "cross crucifix naperville lutheranism bethanylutheran brothersofjohnthesteadfast"}, {"datetaken": "2010-02-13 10:28:07", "license": "1", "title": "IMG_1630", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4358642808_ba0f622884_o.jpg", "secret": "f1658d1423", "media": "photo", "latitude": "0", "id": "4358642808", "tags": "cross crucifix naperville lutheranism bethanylutheran brothersofjohnthesteadfast"}, {"datetaken": "2010-02-13 10:50:56", "license": "1", "title": "IMG_1634", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4358605198_91e265061f_o.jpg", "secret": "566db3006f", "media": "photo", "latitude": "0", "id": "4358605198", "tags": "naperville bethanylutheran brothersofjohnthesteadfast toddwilken klemetpreus molliehemingway"}, {"datetaken": "2010-02-13 10:51:01", "license": "1", "title": "IMG_1635", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4357860479_6be7bba012_o.jpg", "secret": "78cc2aa96b", "media": "photo", "latitude": "0", "id": "4357860479", "tags": "naperville bethanylutheran brothersofjohnthesteadfast toddwilken klemetpreus molliehemingway"}, {"datetaken": "2010-02-13 10:51:14", "license": "1", "title": "IMG_1636", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2751/4358608210_00c4854713_o.jpg", "secret": "0a1c17067f", "media": "photo", "latitude": "0", "id": "4358608210", "tags": "naperville bethanylutheran brothersofjohnthesteadfast toddwilken klemetpreus molliehemingway"}, {"datetaken": "2010-02-13 10:54:05", "license": "1", "title": "IMG_1637", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4105/5079296483_64e07d5362_o.jpg", "secret": "7c4fd2bc3b", "media": "photo", "latitude": "0", "id": "5079296483", "tags": "brothersofjohnthesteadfast"}, {"datetaken": "2010-02-13 10:56:44", "license": "1", "title": "IMG_1661", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/5079298505_a08cd0e2ef_o.jpg", "secret": "2a131f7529", "media": "photo", "latitude": "0", "id": "5079298505", "tags": "brothersofjohnthesteadfast"}, {"datetaken": "2010-02-13 10:57:19", "license": "1", "title": "IMG_1666", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4358610054_9d94fd015a_o.jpg", "secret": "28648e10e5", "media": "photo", "latitude": "0", "id": "4358610054", "tags": "naperville bethanylutheran brothersofjohnthesteadfast toddwilken"}, {"datetaken": "2010-02-13 11:05:10", "license": "1", "title": "IMG_1687", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4357865895_176521e7ea_o.jpg", "secret": "3bca8d9d99", "media": "photo", "latitude": "0", "id": "4357865895", "tags": "naperville bethanylutheran brothersofjohnthesteadfast toddwilken"}, {"datetaken": "2010-02-13 11:05:10", "license": "1", "title": "IMG_1688", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4358614094_d056555cd0_o.jpg", "secret": "eba21ed759", "media": "photo", "latitude": "0", "id": "4358614094", "tags": "naperville bethanylutheran brothersofjohnthesteadfast toddwilken"}, {"datetaken": "2010-02-13 13:23:29", "license": "1", "title": "IMG_1694", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4358643896_ba7495ed17_o.jpg", "secret": "289357ceb0", "media": "photo", "latitude": "0", "id": "4358643896", "tags": "church naperville lutherans divineservice bethanylutheran brothersofjohnthesteadfast"}, {"datetaken": "2010-02-13 13:24:06", "license": "1", "title": "IMG_1697", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4358645102_41052a65eb_o.jpg", "secret": "74867b0db0", "media": "photo", "latitude": "0", "id": "4358645102", "tags": "church naperville lutherans divineservice bethanylutheran brothersofjohnthesteadfast"}, {"datetaken": "2010-02-13 14:46:53", "license": "1", "title": "IMG_1698", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4357900911_48ca3cefe0_o.jpg", "secret": "993cf0dbbd", "media": "photo", "latitude": "0", "id": "4357900911", "tags": "naperville lutheranism bethanylutheran brothersofjohnthesteadfast"}, {"datetaken": "2010-02-13 14:48:16", "license": "1", "title": "IMG_1700", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2742/4357901869_19326e07c0_o.jpg", "secret": "4cdd886c00", "media": "photo", "latitude": "0", "id": "4357901869", "tags": "church naperville bethanylutheran brothersofjohnthesteadfast"}, {"datetaken": "2010-02-13 14:49:18", "license": "1", "title": "IMG_1706", "text": "", "album_id": "72157623437349544", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4358648412_810199a106_o.jpg", "secret": "1d72652b43", "media": "photo", "latitude": "0", "id": "4358648412", "tags": "naperville bethanylutheran brothersofjohnthesteadfast"}, {"datetaken": "2010-01-17 16:34:36", "license": "3", "title": "Kynaston's cave", "text": "", "album_id": "72157623103617851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4282123446_d94aeed6c8_o.jpg", "secret": "31828b2945", "media": "photo", "latitude": "0", "id": "4282123446", "tags": "shropshire country cave parkkynastons january2010nessscliffe"}, {"datetaken": "2010-01-17 16:36:14", "license": "3", "title": "Stairs to Wild Humphrey's lair!", "text": "", "album_id": "72157623103617851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4282123812_ca2c7856c5_o.jpg", "secret": "1942338abd", "media": "photo", "latitude": "0", "id": "4282123812", "tags": "shropshire country cave parkkynastons january2010nessscliffe"}, {"datetaken": "2010-01-17 16:37:10", "license": "3", "title": "Quarry marks", "text": "", "album_id": "72157623103617851", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2686/4282124708_d79768bdcc_o.jpg", "secret": "45a809df43", "media": "photo", "latitude": "0", "id": "4282124708", "tags": "square sandstone shropshire january 2010 nessscliffecountrypark"}, {"datetaken": "2010-01-17 16:38:49", "license": "3", "title": "Quarry marks", "text": "", "album_id": "72157623103617851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4281381583_1bd4c7645f_o.jpg", "secret": "9821020de1", "media": "photo", "latitude": "0", "id": "4281381583", "tags": "sandstone shropshire january 2010 nessscliffecountrypark"}, {"datetaken": "2010-01-17 16:44:29", "license": "3", "title": "Trees", "text": "", "album_id": "72157623103617851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4281382085_a7daa3f74d_o.jpg", "secret": "16e9a36a41", "media": "photo", "latitude": "0", "id": "4281382085", "tags": "shropshire january 2010 nessscliffecountrypark"}, {"datetaken": "2010-01-17 17:45:24", "license": "3", "title": "St Andrew's Great Ness", "text": "", "album_id": "72157623103617851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4282527189_6e7c24c78b_o.jpg", "secret": "7a5e1de1e6", "media": "photo", "latitude": "0", "id": "4282527189", "tags": "church shropshire january greatness 2010 standrewschurch pevsner"}, {"datetaken": "2010-01-17 17:47:46", "license": "3", "title": "1618", "text": "", "album_id": "72157623103617851", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4282527715_7c047789b4_o.jpg", "secret": "a4b3775f77", "media": "photo", "latitude": "0", "id": "4282527715", "tags": "church shropshire january greatness 2010 standrewschurch"}, {"datetaken": "2010-01-17 17:48:33", "license": "3", "title": "Winter sun", "text": "", "album_id": "72157623103617851", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4282528007_f36ba01dd3_o.jpg", "secret": "2efcafdc51", "media": "photo", "latitude": "0", "id": "4282528007", "tags": "church shropshire january greatness 2010 standrewschurch"}, {"datetaken": "2010-01-17 17:52:45", "license": "3", "title": "St Andrew's - Great Ness", "text": "", "album_id": "72157623103617851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4283272906_a3765eda5b_o.jpg", "secret": "5de9e41ff9", "media": "photo", "latitude": "0", "id": "4283272906", "tags": "church shropshire january greatness 2010 standrewschurch"}, {"datetaken": "2010-01-17 17:55:17", "license": "3", "title": "17th century graffito", "text": "", "album_id": "72157623103617851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4283273154_a20bcc1760_o.jpg", "secret": "6c341e1f75", "media": "photo", "latitude": "0", "id": "4283273154", "tags": "church shropshire january greatness 2010 standrewschurch"}, {"datetaken": "2010-01-17 18:12:08", "license": "3", "title": "St Martin's, Little Ness", "text": "", "album_id": "72157623103617851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4282676241_6b4fb36543_o.jpg", "secret": "f286e400d2", "media": "photo", "latitude": "0", "id": "4282676241", "tags": "church shropshire january 2010 stmartinschurch littleness"}, {"datetaken": "2010-01-17 18:13:39", "license": "3", "title": "Crucifix", "text": "", "album_id": "72157623103617851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4282676697_0005b85746_o.jpg", "secret": "f658cd1435", "media": "photo", "latitude": "0", "id": "4282676697", "tags": "church shropshire january 2010 stmartinschurch littleness"}, {"datetaken": "2010-01-17 18:14:54", "license": "3", "title": "Norman doorway", "text": "", "album_id": "72157623103617851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4283421200_77bf7fc332_o.jpg", "secret": "f080ce4ec0", "media": "photo", "latitude": "0", "id": "4283421200", "tags": "church shropshire january 2010 stmartinschurch littleness"}, {"datetaken": "2010-01-17 18:24:18", "license": "3", "title": "Crucifix", "text": "", "album_id": "72157623103617851", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4282677051_91464b7b07_o.jpg", "secret": "f8b1ddbe26", "media": "photo", "latitude": "0", "id": "4282677051", "tags": "church shropshire january 2010 stmartinschurch littleness"}, {"datetaken": "2010-01-17 18:25:45", "license": "3", "title": "St Martin's, Little Ness", "text": "", "album_id": "72157623103617851", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4282677273_348ba76cec_o.jpg", "secret": "6ed476f098", "media": "photo", "latitude": "0", "id": "4282677273", "tags": "church shropshire january 2010 stmartinschurch littleness"}, {"datetaken": "2010-01-17 11:05:30", "license": "3", "title": "South side of St.John the Baptist Church", "text": "", "album_id": "72157623227783082", "longitude": "-0.352587", "url_o": "https://farm5.staticflickr.com/4036/4281244219_112cafe5c6_o.jpg", "secret": "c2ce66a5b4", "media": "photo", "latitude": "51.673133", "id": "4281244219", "tags": "raw tripod naturallight hertfordshire aldenham stainedglasswindows churchwindows churchofengland stjohnthebaptist nikkorpce24f35"}, {"datetaken": "2010-01-17 11:31:39", "license": "3", "title": "St. Augustine", "text": "", "album_id": "72157623227783082", "longitude": "-0.353031", "url_o": "https://farm5.staticflickr.com/4013/4281245221_bf7318a7a7_o.jpg", "secret": "5321db398b", "media": "photo", "latitude": "51.673247", "id": "4281245221", "tags": "raw tripod naturallight hertfordshire aldenham stainedglasswindows churchwindows churchofengland stjohnthebaptist victorianstainedglass cekempeco walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-01-17 11:33:27", "license": "3", "title": "St Stephen; St Alban", "text": "", "album_id": "72157623227783082", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2694/4281245779_5eec072923_o.jpg", "secret": "9a2b12ce8b", "media": "photo", "latitude": "0", "id": "4281245779", "tags": "raw tripod naturallight hertfordshire ststephen aldenham stainedglasswindows churchwindows churchofengland stalban stjohnthebaptist victorianstainedglass cekempeco walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-01-17 11:37:13", "license": "3", "title": "St Gabriel, St Michael, St Raphael", "text": "", "album_id": "72157623227783082", "longitude": "-0.353350", "url_o": "https://farm3.staticflickr.com/2799/4281246431_2d16e88e94_o.jpg", "secret": "785b32cd7c", "media": "photo", "latitude": "51.673244", "id": "4281246431", "tags": "raw tripod naturallight hertfordshire aldenham stainedglasswindows churchwindows churchofengland stjohnthebaptist cekempeco walkingwithmynikon nikkorpce24f35 edwardianstainedglass"}, {"datetaken": "2010-01-17 11:38:17", "license": "3", "title": "St.Bridget", "text": "", "album_id": "72157623227783082", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4281989720_60ed10b6c8_o.jpg", "secret": "c2c215e789", "media": "photo", "latitude": "0", "id": "4281989720", "tags": "raw tripod naturallight hertfordshire aldenham stainedglasswindows churchwindows churchofengland stjohnthebaptist modernstainedglass walkingwithmynikon harrygrylls nikkorpce24f35 eleanorbrickdale"}, {"datetaken": "2010-01-17 11:39:45", "license": "3", "title": "Angel Appears to Shepherds", "text": "", "album_id": "72157623227783082", "longitude": "-0.353039", "url_o": "https://farm3.staticflickr.com/2790/4281247405_c8a92f003c_o.jpg", "secret": "64fe397619", "media": "photo", "latitude": "51.673449", "id": "4281247405", "tags": "raw tripod naturallight hertfordshire aldenham stainedglasswindows churchwindows churchofengland stjohnthebaptist victorianstainedglass cekempeco walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-01-17 11:40:51", "license": "3", "title": "Mary Magdalene washes Jesus' feet", "text": "", "album_id": "72157623227783082", "longitude": "-0.352964", "url_o": "https://farm3.staticflickr.com/2740/4281990896_501251ec23_o.jpg", "secret": "2542dcd41e", "media": "photo", "latitude": "51.673427", "id": "4281990896", "tags": "raw tripod naturallight hertfordshire aldenham stainedglasswindows hardman churchwindows churchofengland stjohnthebaptist victorianstainedglass walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-01-17 11:42:09", "license": "3", "title": "Acts of Mercy", "text": "", "album_id": "72157623227783082", "longitude": "-0.352962", "url_o": "https://farm5.staticflickr.com/4017/4281991552_7658984d0e_o.jpg", "secret": "e308a5ee03", "media": "photo", "latitude": "51.673449", "id": "4281991552", "tags": "raw tripod naturallight hertfordshire aldenham stainedglasswindows churchwindows churchofengland stjohnthebaptist victorianstainedglass claytonbell walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-01-17 11:43:07", "license": "3", "title": "Madonna & Child; John the Baptist & St. Elizabeth", "text": "", "album_id": "72157623227783082", "longitude": "-0.352989", "url_o": "https://farm5.staticflickr.com/4071/4281249257_b3957b9546_o.jpg", "secret": "c0fba402c9", "media": "photo", "latitude": "51.673472", "id": "4281249257", "tags": "raw tripod naturallight hertfordshire aldenham stainedglasswindows churchwindows churchofengland stjohnthebaptist modernstainedglass walkingwithmynikon harrygrylls nikkorpce24f35 eleanorbrickdale"}, {"datetaken": "2010-01-17 11:44:39", "license": "3", "title": "Crucifixion", "text": "", "album_id": "72157623227783082", "longitude": "-0.352956", "url_o": "https://farm3.staticflickr.com/2796/4281992726_1c470cd933_o.jpg", "secret": "9c3f0a13dd", "media": "photo", "latitude": "51.673350", "id": "4281992726", "tags": "raw tripod naturallight hertfordshire aldenham stainedglasswindows churchwindows churchofengland stjohnthebaptist victorianstainedglass cekempe walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-01-17 11:45:42", "license": "3", "title": "Aldenham Window", "text": "", "album_id": "72157623227783082", "longitude": "-0.352700", "url_o": "https://farm5.staticflickr.com/4057/4281250495_ba81b348c0_o.jpg", "secret": "07ebe9940e", "media": "photo", "latitude": "51.673358", "id": "4281250495", "tags": "raw tripod naturallight hertfordshire aldenham stainedglasswindows churchwindows churchofengland stjohnthebaptist nikkorpce24f35"}, {"datetaken": "2010-01-17 11:46:49", "license": "3", "title": "St. Alban, BVM, Christ, John the Baptist, Paulinus", "text": "", "album_id": "72157623227783082", "longitude": "-0.352720", "url_o": "https://farm3.staticflickr.com/2768/4281993872_91b8579597_o.jpg", "secret": "b31a5455a8", "media": "photo", "latitude": "51.673358", "id": "4281993872", "tags": "raw tripod naturallight hertfordshire aldenham stainedglasswindows churchwindows churchofengland stjohnthebaptist christopherwebb walkigwithmynikon nikkorpce24f35 postwarstainedglass"}, {"datetaken": "2010-01-17 11:47:18", "license": "3", "title": "High Altar", "text": "", "album_id": "72157623227783082", "longitude": "-0.352737", "url_o": "https://farm3.staticflickr.com/2795/4281251735_55fdabc7a0_o.jpg", "secret": "66e8a8821b", "media": "photo", "latitude": "51.673366", "id": "4281251735", "tags": "raw tripod naturallight hertfordshire aldenham stainedglasswindows churchwindows churchofengland stjohnthebaptist mosaicfloor reredos walkingwithmynikon nikkorpce24f35 edwardianwoodwork"}, {"datetaken": "2010-01-17 11:48:17", "license": "3", "title": "Icons and Stained Glass in the Sanctury", "text": "", "album_id": "72157623227783082", "longitude": "-0.352700", "url_o": "https://farm3.staticflickr.com/2692/4281995174_ba2a772334_o.jpg", "secret": "5c84047245", "media": "photo", "latitude": "51.673313", "id": "4281995174", "tags": "raw tripod naturallight hertfordshire aldenham stainedglasswindows churchwindows churchofengland stjohnthebaptist nikkorpce24f35"}, {"datetaken": "2010-01-17 11:49:15", "license": "3", "title": "Presentation", "text": "", "album_id": "72157623227783082", "longitude": "-0.352545", "url_o": "https://farm3.staticflickr.com/2742/4281995776_9d3ec5a65f_o.jpg", "secret": "78873e6f66", "media": "photo", "latitude": "51.673286", "id": "4281995776", "tags": "raw tripod naturallight hertfordshire aldenham stainedglasswindows churchwindows churchofengland stjohnthebaptist walkingwithmynikon nikkorpce24f35 edwardianstainedglass shriglyhunt"}, {"datetaken": "2010-01-17 11:50:34", "license": "3", "title": "Sower, Healing, Good Shepherd, Christ Blessing & Washing Disciples feet", "text": "", "album_id": "72157623227783082", "longitude": "-0.352745", "url_o": "https://farm5.staticflickr.com/4036/4281996394_97d606d39f_o.jpg", "secret": "a803540645", "media": "photo", "latitude": "51.673369", "id": "4281996394", "tags": "raw tripod naturallight hertfordshire aldenham stainedglasswindows churchwindows churchofengland stjohnthebaptist modernstainedglass nikkorpce24f35 herberthendrie walkinhgwithmynikon"}, {"datetaken": "2010-01-17 11:51:50", "license": "3", "title": "High altar from the Holly Rood", "text": "", "album_id": "72157623227783082", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2683/4281254211_88a97c0d81_o.jpg", "secret": "5c14a64dfb", "media": "photo", "latitude": "0", "id": "4281254211", "tags": "choir raw tripod naturallight hertfordshire aldenham stainedglasswindows churchwindows churchofengland victoriangothic stjohnthebaptist highalter walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-01-17 11:52:45", "license": "3", "title": "High Altar from the Choir", "text": "", "album_id": "72157623227783082", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2772/4281255075_c669312fec_o.jpg", "secret": "af79fa1421", "media": "photo", "latitude": "0", "id": "4281255075", "tags": "raw tripod naturallight hertfordshire aldenham stainedglasswindows churchwindows churchofengland stjohnthebaptist nikkorpce24f35"}, {"datetaken": "2010-01-17 11:55:58", "license": "3", "title": "MHS Aldenham Badge & Arms", "text": "", "album_id": "72157623227783082", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4281255613_cbd10da888_o.jpg", "secret": "5ca63e11dc", "media": "photo", "latitude": "0", "id": "4281255613", "tags": "raw tripod naturallight hertfordshire aldenham stainedglasswindows churchwindows churchofengland stjohnthebaptist modernstainedglass alfredfisher chapelstudios walkingwithmynikon nikkorpce24f35"}, {"datetaken": "2010-01-17 12:02:37", "license": "3", "title": "Nave and Holly Rood", "text": "", "album_id": "72157623227783082", "longitude": "-0.353206", "url_o": "https://farm5.staticflickr.com/4024/4281256163_1abb7ca8b4_o.jpg", "secret": "3f17b7a8a5", "media": "photo", "latitude": "51.673180", "id": "4281256163", "tags": "raw tripod naturallight nave hertfordshire aldenham stainedglasswindows churchwindows churchofengland stjohnthebaptist walkingwithmynikon nikkorpce24f35 woodenrood"}, {"datetaken": "2010-01-18 18:36:33", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4288181890_9af6b70497_o.jpg", "secret": "0fac4b7e59", "media": "photo", "latitude": "0", "id": "4288181890", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 18:42:58", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4287443689_e6ffbfbf72_o.jpg", "secret": "f571701cb3", "media": "photo", "latitude": "0", "id": "4287443689", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 18:43:00", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2745/4288188292_3a79c7e572_o.jpg", "secret": "ede201bbf2", "media": "photo", "latitude": "0", "id": "4288188292", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 18:44:30", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4287450513_847e8e2ae9_o.jpg", "secret": "02576d0b48", "media": "photo", "latitude": "0", "id": "4287450513", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 18:44:31", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2714/4288195070_383f487e84_o.jpg", "secret": "7b6ec0a3bc", "media": "photo", "latitude": "0", "id": "4288195070", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 18:46:21", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4288201322_3da01eaa3c_o.jpg", "secret": "a7d265d77a", "media": "photo", "latitude": "0", "id": "4288201322", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 18:46:21", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2770/4287456797_98be3dc2f7_o.jpg", "secret": "f4fd019a19", "media": "photo", "latitude": "0", "id": "4287456797", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 18:48:47", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2698/4288204492_832a8aeb7c_o.jpg", "secret": "08fecaa8fe", "media": "photo", "latitude": "0", "id": "4288204492", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 18:48:49", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4288207556_7f61d3daf7_o.jpg", "secret": "8ee078b910", "media": "photo", "latitude": "0", "id": "4288207556", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 18:49:01", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4287469521_dbca1e14b4_o.jpg", "secret": "766c2fd407", "media": "photo", "latitude": "0", "id": "4287469521", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 18:49:02", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4287472661_d26d3280ee_o.jpg", "secret": "5dc0fb602a", "media": "photo", "latitude": "0", "id": "4287472661", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 18:49:06", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2685/4288216860_a69560803e_o.jpg", "secret": "ec7f345894", "media": "photo", "latitude": "0", "id": "4288216860", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 18:52:12", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4287478705_62b8d58afa_o.jpg", "secret": "2d064506eb", "media": "photo", "latitude": "0", "id": "4287478705", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 18:53:50", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4287481911_11d66b1a47_o.jpg", "secret": "977cf29ff0", "media": "photo", "latitude": "0", "id": "4287481911", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 18:54:25", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4287484991_1b979df069_o.jpg", "secret": "f98d786d64", "media": "photo", "latitude": "0", "id": "4287484991", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 18:54:55", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2796/4288230054_d7b1591968_o.jpg", "secret": "96d69854cf", "media": "photo", "latitude": "0", "id": "4288230054", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 19:06:29", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4288233458_245c26d22c_o.jpg", "secret": "bf96bced69", "media": "photo", "latitude": "0", "id": "4288233458", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 19:06:36", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4287495339_c8f5361c2e_o.jpg", "secret": "dcd38daa27", "media": "photo", "latitude": "0", "id": "4287495339", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 19:08:56", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4287498729_f10f761882_o.jpg", "secret": "1bc4997a89", "media": "photo", "latitude": "0", "id": "4287498729", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 19:08:59", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4288242914_14aa4bccbb_o.jpg", "secret": "6db03f9198", "media": "photo", "latitude": "0", "id": "4288242914", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 19:09:47", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2706/4288246114_2983032dce_o.jpg", "secret": "d5420abe09", "media": "photo", "latitude": "0", "id": "4288246114", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 19:13:56", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4288249590_837077d7af_o.jpg", "secret": "c0e2a11bbb", "media": "photo", "latitude": "0", "id": "4288249590", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-18 19:14:29", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4287512185_411bcf59eb_o.jpg", "secret": "4bb97dcce7", "media": "photo", "latitude": "0", "id": "4287512185", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-19 09:27:49", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4287515639_7e1910083e_o.jpg", "secret": "6b631a31de", "media": "photo", "latitude": "0", "id": "4287515639", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2010-01-19 09:29:31", "license": "5", "title": "", "text": "", "album_id": "72157623243524150", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4287518911_beebecf371_o.jpg", "secret": "2d64bf5999", "media": "photo", "latitude": "0", "id": "4287518911", "tags": "church service episcopal martinlutherking mlkj"}, {"datetaken": "2009-12-23 13:56:51", "license": "1", "title": "old Gulf & Ship Island Depot, Magee, MS", "text": "", "album_id": "72157623145474461", "longitude": "-89.729322", "url_o": "https://farm5.staticflickr.com/4021/4299026274_25873906c5_o.jpg", "secret": "81504dd906", "media": "photo", "latitude": "31.869476", "id": "4299026274", "tags": "wood mississippi depots mageems"}, {"datetaken": "2009-12-23 13:58:02", "license": "1", "title": "old Gulf & Ship Island Depot, Magee, MS", "text": "", "album_id": "72157623145474461", "longitude": "-89.729322", "url_o": "https://farm5.staticflickr.com/4014/4299026622_c597facdf2_o.jpg", "secret": "e3f1c668bd", "media": "photo", "latitude": "31.869476", "id": "4299026622", "tags": "wood mississippi depots mageems"}, {"datetaken": "2009-12-23 13:59:26", "license": "1", "title": "old Gulf & Ship Island Depot, Magee, MS", "text": "", "album_id": "72157623145474461", "longitude": "-89.729322", "url_o": "https://farm5.staticflickr.com/4024/4299027530_68a51eac22_o.jpg", "secret": "5fc2883c25", "media": "photo", "latitude": "31.869476", "id": "4299027530", "tags": "wood mississippi depots mageems"}, {"datetaken": "2009-12-23 14:00:53", "license": "1", "title": "Magee Water Tower, Magee, MS", "text": "", "album_id": "72157623145474461", "longitude": "-89.729880", "url_o": "https://farm3.staticflickr.com/2702/4298282307_6c1f6654b4_o.jpg", "secret": "4c22838aee", "media": "photo", "latitude": "31.869339", "id": "4298282307", "tags": "mississippi steel watertowers mageems"}, {"datetaken": "2009-12-23 14:01:50", "license": "1", "title": "Magee Water Tower, Magee, MS", "text": "", "album_id": "72157623145474461", "longitude": "-89.729880", "url_o": "https://farm3.staticflickr.com/2702/4298283095_52d92942a3_o.jpg", "secret": "fff0bca923", "media": "photo", "latitude": "31.869339", "id": "4298283095", "tags": "mississippi steel watertowers mageems"}, {"datetaken": "2009-12-23 14:02:00", "license": "1", "title": "Magee Water Tower, Magee, MS", "text": "", "album_id": "72157623145474461", "longitude": "-89.729880", "url_o": "https://farm5.staticflickr.com/4005/4298283225_0e4b37b515_o.jpg", "secret": "aed8c3e7b2", "media": "photo", "latitude": "31.869339", "id": "4298283225", "tags": "mississippi steel watertowers mageems"}, {"datetaken": "2009-12-23 14:05:31", "license": "1", "title": "folded plate awning, Magee, MS", "text": "", "album_id": "72157623145474461", "longitude": "-89.732208", "url_o": "https://farm5.staticflickr.com/4065/4298284471_6578dc2dd6_o.jpg", "secret": "9987a55d50", "media": "photo", "latitude": "31.873557", "id": "4298284471", "tags": "mississippi modernarchitecture awnings mageems"}, {"datetaken": "2009-12-23 14:05:57", "license": "1", "title": "folded plate awning, Magee, MS", "text": "", "album_id": "72157623145474461", "longitude": "-89.732208", "url_o": "https://farm5.staticflickr.com/4020/4299031278_86095aa9c9_o.jpg", "secret": "b39ff4a030", "media": "photo", "latitude": "31.873557", "id": "4299031278", "tags": "mississippi modernarchitecture awnings mageems"}, {"datetaken": "2009-12-23 14:08:43", "license": "1", "title": "First Baptist Church, Magee, MS", "text": "", "album_id": "72157623145474461", "longitude": "-89.734225", "url_o": "https://farm3.staticflickr.com/2719/4298285987_0b17b91034_o.jpg", "secret": "046c0a5ba3", "media": "photo", "latitude": "31.874172", "id": "4298285987", "tags": ""}, {"datetaken": "2009-12-23 14:09:55", "license": "1", "title": "First Baptist Church, Magee, MS", "text": "", "album_id": "72157623145474461", "longitude": "-89.734225", "url_o": "https://farm5.staticflickr.com/4041/4298286897_7213c8d703_o.jpg", "secret": "99ce6c62d1", "media": "photo", "latitude": "31.874172", "id": "4298286897", "tags": ""}, {"datetaken": "2009-12-23 14:11:04", "license": "1", "title": "First Baptist Church, Magee, MS", "text": "", "album_id": "72157623145474461", "longitude": "-89.734225", "url_o": "https://farm5.staticflickr.com/4008/4299034022_2e7d9ffc11_o.jpg", "secret": "1f9a888f4e", "media": "photo", "latitude": "31.874172", "id": "4299034022", "tags": ""}, {"datetaken": "2009-12-23 14:11:32", "license": "1", "title": "First Baptist Church, Magee, MS", "text": "", "album_id": "72157623145474461", "longitude": "-89.734225", "url_o": "https://farm5.staticflickr.com/4071/4298288039_62684ec225_o.jpg", "secret": "96178b1500", "media": "photo", "latitude": "31.874172", "id": "4298288039", "tags": ""}, {"datetaken": "2009-12-26 11:56:04", "license": "5", "title": "A snowy view", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4297198725_1ef1790086_o.jpg", "secret": "a3e6ea6641", "media": "photo", "latitude": "0", "id": "4297198725", "tags": "walk saddleworth uppermill potsnpanswalk"}, {"datetaken": "2009-12-26 11:58:53", "license": "5", "title": "Towards the church at Running Hill Gate", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4297202511_bc9239cee9_o.jpg", "secret": "5ff6442804", "media": "photo", "latitude": "0", "id": "4297202511", "tags": "church walk saddleworth uppermill stchadschurch potsnpanswalk"}, {"datetaken": "2009-12-26 12:08:45", "license": "5", "title": "A black and white world", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4297950148_80fab21b5d_o.jpg", "secret": "f1e562b9d1", "media": "photo", "latitude": "0", "id": "4297950148", "tags": "walk saddleworth uppermill potsnpanswalk"}, {"datetaken": "2009-12-26 12:15:13", "license": "5", "title": "Snow on a hat", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4297210139_5a77844381_o.jpg", "secret": "dff54f7202", "media": "photo", "latitude": "0", "id": "4297210139", "tags": "walk saddleworth potsnpanswalk runninghillgate"}, {"datetaken": "2009-12-26 12:15:19", "license": "5", "title": "Treacherous pathway", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4297959010_6c896c1d2c_o.jpg", "secret": "d218981644", "media": "photo", "latitude": "0", "id": "4297959010", "tags": "walk saddleworth potsnpanswalk runninghillgate"}, {"datetaken": "2009-12-26 12:24:11", "license": "5", "title": "St Chad's Church and some blue sky", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4297962986_3630867821_o.jpg", "secret": "9a02d4a75f", "media": "photo", "latitude": "0", "id": "4297962986", "tags": "church walk saddleworth stchadschurch potsnpanswalk runninghillgate"}, {"datetaken": "2009-12-26 12:32:47", "license": "5", "title": "Going up hill towards Pots 'n' Pans", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4297967146_d8b3876126_o.jpg", "secret": "1c73d59fab", "media": "photo", "latitude": "0", "id": "4297967146", "tags": "walk saddleworth broadstonehill potsnpanswalk"}, {"datetaken": "2009-12-26 12:34:13", "license": "5", "title": "The road is long...", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4297226369_e7f3e73744_o.jpg", "secret": "50e644d0e8", "media": "photo", "latitude": "0", "id": "4297226369", "tags": "walk saddleworth broadstonehill potsnpanswalk"}, {"datetaken": "2009-12-26 12:34:38", "license": "5", "title": "Sheep trying to find the grass", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4297230287_af472e324b_o.jpg", "secret": "6c0b08da6d", "media": "photo", "latitude": "0", "id": "4297230287", "tags": "sheep walk saddleworth broadstonehill potsnpanswalk"}, {"datetaken": "2009-12-26 12:34:51", "license": "5", "title": "Sheep on Broadstone Hill", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4297979010_c0566b90fa_o.jpg", "secret": "cb667f528e", "media": "photo", "latitude": "0", "id": "4297979010", "tags": "sheep walk saddleworth broadstonehill potsnpanswalk"}, {"datetaken": "2009-12-26 12:58:35", "license": "5", "title": "Deep snow", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2773/4297981622_2b8581da5c_o.jpg", "secret": "a1c8ce553b", "media": "photo", "latitude": "0", "id": "4297981622", "tags": "walk saddleworth broadstonehill potsnpanswalk"}, {"datetaken": "2009-12-26 13:06:25", "license": "5", "title": "A view", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2701/4297241549_d85ceee39c_o.jpg", "secret": "2fd89e4d8f", "media": "photo", "latitude": "0", "id": "4297241549", "tags": "walk saddleworth dickhill potsnpanswalk"}, {"datetaken": "2009-12-26 13:06:31", "license": "5", "title": "Dick Hill", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4297245533_615a5edf1e_o.jpg", "secret": "0503b02ef5", "media": "photo", "latitude": "0", "id": "4297245533", "tags": "walk saddleworth dickhill potsnpanswalk"}, {"datetaken": "2009-12-26 13:15:46", "license": "5", "title": "Where's Mike and Andrew?", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4297993602_13d66b7d25_o.jpg", "secret": "430578b85d", "media": "photo", "latitude": "0", "id": "4297993602", "tags": "walk saddleworth broadhill potsnpanswalk"}, {"datetaken": "2009-12-26 13:15:51", "license": "5", "title": "How about now?", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4297252287_1ab0a419df_o.jpg", "secret": "cae0dd7dac", "media": "photo", "latitude": "0", "id": "4297252287", "tags": "walk pointing saddleworth broadhill potsnpanswalk"}, {"datetaken": "2009-12-26 13:15:55", "license": "5", "title": "Oh good.", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2764/4298000764_cc2fb73208_o.jpg", "secret": "b61f35341a", "media": "photo", "latitude": "0", "id": "4298000764", "tags": "walk pointing saddleworth broadhill potsnpanswalk"}, {"datetaken": "2009-12-26 13:20:59", "license": "5", "title": "Going towards the War Memorial", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4297259445_b2cba8f627_o.jpg", "secret": "e78fe1ffc8", "media": "photo", "latitude": "0", "id": "4297259445", "tags": "walk saddleworth broadhill potsnpanswalk"}, {"datetaken": "2009-12-26 13:26:58", "license": "5", "title": "At Pots 'n' Pans", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4297262811_c05b2f4f11_o.jpg", "secret": "ecc6655e7b", "media": "photo", "latitude": "0", "id": "4297262811", "tags": "walk saddleworth broadhill potsnpans potsnpanswalk"}, {"datetaken": "2009-12-26 13:27:41", "license": "5", "title": "Standing in the snow", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4297267313_518be7af8e_o.jpg", "secret": "ef3f4ca61d", "media": "photo", "latitude": "0", "id": "4297267313", "tags": "walk saddleworth broadhill potsnpans potsnpanswalk"}, {"datetaken": "2009-12-26 13:28:59", "license": "5", "title": "Walkers", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4298016812_10e354ebb6_o.jpg", "secret": "fb5896d10f", "media": "photo", "latitude": "0", "id": "4298016812", "tags": "walk saddleworth broadhill potsnpans potsnpanswalk"}, {"datetaken": "2009-12-26 13:30:30", "license": "5", "title": "Catherine and Mike", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4298021166_3301ccdb9c_o.jpg", "secret": "3a13e01af0", "media": "photo", "latitude": "0", "id": "4298021166", "tags": "walk saddleworth broadhill potsnpans potsnpanswalk"}, {"datetaken": "2009-12-26 13:37:49", "license": "5", "title": "Sitting on a bench near the war memorial", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2730/4298026704_266390f219_o.jpg", "secret": "7e6e79a7bc", "media": "photo", "latitude": "0", "id": "4298026704", "tags": "walk saddleworth broadhill potsnpans potsnpanswalk"}, {"datetaken": "2009-12-26 13:38:02", "license": "5", "title": "A snowy landscape", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4298031184_8bdee05f38_o.jpg", "secret": "2b362a7728", "media": "photo", "latitude": "0", "id": "4298031184", "tags": "walk saddleworth broadhill potsnpans potsnpanswalk"}, {"datetaken": "2009-12-26 14:07:52", "license": "5", "title": "A snowy beatle", "text": "", "album_id": "72157623267583604", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2784/4297290571_0e3026603c_o.jpg", "secret": "8224421242", "media": "photo", "latitude": "0", "id": "4297290571", "tags": "walk saddleworth uppermill volkswagenbeatle potsnpanswalk"}, {"datetaken": "2010-01-28 12:25:57", "license": "3", "title": "St. Martin; St. Margaret", "text": "", "album_id": "72157623308808136", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4313859951_1c4d108319_o.jpg", "secret": "8a814ec08d", "media": "photo", "latitude": "0", "id": "4313859951", "tags": "raw tripod naturallight stainedglass hertfordshire churchwindow churchofengland burnejones oldhatfield victorianstainedglass hertfordshirechurches williammorrisco walkingwithmynikon nikkorpce24f35 stetheldredachurch"}, {"datetaken": "2010-01-28 12:34:55", "license": "3", "title": "East Window", "text": "", "album_id": "72157623308808136", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2763/4313860389_239437aed3_o.jpg", "secret": "d59fac7322", "media": "photo", "latitude": "0", "id": "4313860389", "tags": "raw tripod naturallight stainedglass hertfordshire churchwindow churchofengland oldhatfield victorianstainedglass hertfordshirechurches claytonbell nikkorpce24f35 walkingwithmyniko stetheldredachurch"}, {"datetaken": "2010-01-28 12:36:12", "license": "3", "title": "Pentecost", "text": "", "album_id": "72157623308808136", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4313860629_f61570b580_o.jpg", "secret": "c3e57ab63a", "media": "photo", "latitude": "0", "id": "4313860629", "tags": "raw tripod naturallight stainedglass hertfordshire churchwindow churchofengland oldhatfield victorianstainedglass hertfordshirechurches claytonbell nikkorpce24f35 walkingwithmyniko stetheldredachurch"}, {"datetaken": "2010-01-28 12:37:52", "license": "3", "title": "Tomb of 1st Earl of Salisbury", "text": "", "album_id": "72157623308808136", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2694/4314596588_6a29b23329_o.jpg", "secret": "8ae2140b13", "media": "photo", "latitude": "0", "id": "4314596588", "tags": "monument raw tripod tomb naturallight stainedglass hertfordshire churchwindow churchofengland oldhatfield victorianstainedglass hertfordshirechurches nikkorpce24f35 walkingwithmyniko stetheldredachurch cecilfamilychapel earlofsalisbury"}, {"datetaken": "2010-01-28 12:40:00", "license": "3", "title": "Risen Christ", "text": "", "album_id": "72157623308808136", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4313861357_cfd13f2bcc_o.jpg", "secret": "20d73ab67e", "media": "photo", "latitude": "0", "id": "4313861357", "tags": "raw tripod naturallight stainedglass hertfordshire churchwindow churchofengland oldhatfield victorianstainedglass hertfordshirechurches nikkorpce24f35 walkingwithmyniko stetheldredachurch"}, {"datetaken": "2010-01-28 12:42:46", "license": "3", "title": "3 Rows of scenes from the bible", "text": "", "album_id": "72157623308808136", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4314597302_3c5ea4dc7b_o.jpg", "secret": "aaa16a8d4c", "media": "photo", "latitude": "0", "id": "4314597302", "tags": "raw tripod naturallight stainedglass hertfordshire churchwindow churchofengland oldhatfield victorianstainedglass hertfordshirechurches nikkorpce24f35 walkingwithmyniko stetheldredachurch"}, {"datetaken": "2010-01-28 12:45:51", "license": "3", "title": "Christ the consoler", "text": "", "album_id": "72157623308808136", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2777/4314597620_c40ee0dca7_o.jpg", "secret": "3920d1f908", "media": "photo", "latitude": "0", "id": "4314597620", "tags": "raw tripod naturallight stainedglass hertfordshire churchwindow churchofengland oldhatfield victorianstainedglass hertfordshirechurches claytonbell nikkorpce24f35 walkingwithmyniko stetheldredachurch"}, {"datetaken": "2010-01-28 12:47:02", "license": "3", "title": "Nativity", "text": "", "album_id": "72157623308808136", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4314598052_e092ff2754_o.jpg", "secret": "0d1c981a86", "media": "photo", "latitude": "0", "id": "4314598052", "tags": "raw tripod naturallight stainedglass hertfordshire churchwindow churchofengland oldhatfield victorianstainedglass hertfordshirechurches nikkorpce24f35 walkingwithmyniko stetheldredachurch"}, {"datetaken": "2010-01-28 12:51:44", "license": "3", "title": "High Altar", "text": "", "album_id": "72157623308808136", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2716/4314598452_b8c87964fc_o.jpg", "secret": "62138437af", "media": "photo", "latitude": "0", "id": "4314598452", "tags": "raw tripod naturallight stainedglass alter crucifixion hertfordshire churchwindow churchofengland reredos oldhatfield victorianstainedglass hertfordshirechurches claytonbell nikkorpce24f35 walkingwithmyniko stetheldredachurch"}, {"datetaken": "2010-01-28 13:00:30", "license": "3", "title": "Tower from North East", "text": "", "album_id": "72157623308808136", "longitude": "-0.211764", "url_o": "https://farm5.staticflickr.com/4058/4313863213_ef8611f0a1_o.jpg", "secret": "8841a41cde", "media": "photo", "latitude": "51.761605", "id": "4313863213", "tags": "blackandwhite bw raw tripod naturallight churchyard gravestones hertfordshire churchofengland oldhatfield hertfordshirechurches nikkorpce24f35 walkingwithmyniko stetheldredachurch"}, {"datetaken": "2010-01-28 13:06:45", "license": "3", "title": "IAW_8602", "text": "", "album_id": "72157623308808136", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4314599200_a9b7e7d26f_o.jpg", "secret": "f98734e0ac", "media": "photo", "latitude": "0", "id": "4314599200", "tags": "raw tripod naturallight churchyard gravestones hertfordshire churchofengland oldhatfield hertfordshirechurches nikkorpce24f35 walkingwithmyniko stetheldredachurch"}, {"datetaken": "2007-07-08 22:10:52", "license": "2", "title": "At the BBQ shack", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1183/758415620_561034517b_o.jpg", "secret": "84578cc480", "media": "photo", "latitude": "0", "id": "758415620", "tags": ""}, {"datetaken": "2007-07-08 22:10:52", "license": "2", "title": "22", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1228/757560617_2d00e05bde_o.jpg", "secret": "d50a5702d7", "media": "photo", "latitude": "0", "id": "757560617", "tags": ""}, {"datetaken": "2007-07-08 22:10:53", "license": "2", "title": "23", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1126/757560709_2d4cd2f83e_o.jpg", "secret": "76202db5fd", "media": "photo", "latitude": "0", "id": "757560709", "tags": ""}, {"datetaken": "2007-07-08 22:10:54", "license": "2", "title": "24", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1211/757560829_2531ff3b56_o.jpg", "secret": "191cc9b77b", "media": "photo", "latitude": "0", "id": "757560829", "tags": ""}, {"datetaken": "2007-07-08 22:10:54", "license": "2", "title": "25", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1285/758415868_c24eff631d_o.jpg", "secret": "9895130627", "media": "photo", "latitude": "0", "id": "758415868", "tags": ""}, {"datetaken": "2007-07-08 22:10:55", "license": "2", "title": "27", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1331/757560951_6eb18895bd_o.jpg", "secret": "17775973e4", "media": "photo", "latitude": "0", "id": "757560951", "tags": ""}, {"datetaken": "2007-07-08 22:10:56", "license": "2", "title": "28", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1204/757561047_fb5dc339cd_o.jpg", "secret": "0e1025635f", "media": "photo", "latitude": "0", "id": "757561047", "tags": ""}, {"datetaken": "2007-07-08 22:10:56", "license": "2", "title": "29", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1179/757561145_cea4ea99f1_o.jpg", "secret": "b6b11373e0", "media": "photo", "latitude": "0", "id": "757561145", "tags": ""}, {"datetaken": "2007-07-08 22:10:57", "license": "2", "title": "30", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1123/758416168_636d094246_o.jpg", "secret": "83f0f9e841", "media": "photo", "latitude": "0", "id": "758416168", "tags": ""}, {"datetaken": "2007-07-08 22:10:58", "license": "2", "title": "32", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1246/758416252_2dd9ae5ea1_o.jpg", "secret": "85d40cc919", "media": "photo", "latitude": "0", "id": "758416252", "tags": ""}, {"datetaken": "2007-07-08 22:10:58", "license": "2", "title": "A back street", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1195/758416328_6a9bc17e4c_o.jpg", "secret": "4e56fcd4e7", "media": "photo", "latitude": "0", "id": "758416328", "tags": ""}, {"datetaken": "2007-07-08 22:10:59", "license": "2", "title": "At the hotel", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1410/758416374_4e75712579_o.jpg", "secret": "428cc1232b", "media": "photo", "latitude": "0", "id": "758416374", "tags": ""}, {"datetaken": "2007-07-08 22:10:59", "license": "2", "title": "Auntie & Uncle", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1176/757561423_282dc93d16_o.jpg", "secret": "c936a80c2d", "media": "photo", "latitude": "0", "id": "757561423", "tags": ""}, {"datetaken": "2007-07-08 22:11:00", "license": "2", "title": "Another one", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1042/758416524_4c67e1687d_o.jpg", "secret": "4b24c06c4c", "media": "photo", "latitude": "0", "id": "758416524", "tags": ""}, {"datetaken": "2007-07-08 22:11:01", "license": "2", "title": "More pork", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1277/757561539_70b8bd8ae2_o.jpg", "secret": "b743512b8f", "media": "photo", "latitude": "0", "id": "757561539", "tags": ""}, {"datetaken": "2007-07-08 22:11:01", "license": "2", "title": "Parents", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1143/757561615_4e7fce2f3a_o.jpg", "secret": "c84bf92ca3", "media": "photo", "latitude": "0", "id": "757561615", "tags": ""}, {"datetaken": "2007-07-08 22:11:02", "license": "2", "title": "Blurry church", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1108/758416768_4823abba1d_o.jpg", "secret": "6aa9e2120a", "media": "photo", "latitude": "0", "id": "758416768", "tags": ""}, {"datetaken": "2007-07-08 22:11:03", "license": "2", "title": "Cat", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1274/758416836_f646af1a9d_o.jpg", "secret": "ac0c2c4393", "media": "photo", "latitude": "0", "id": "758416836", "tags": ""}, {"datetaken": "2007-07-08 22:11:04", "license": "2", "title": "Christening 2", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1060/757561881_f04c336d2b_o.jpg", "secret": "0bab63910e", "media": "photo", "latitude": "0", "id": "757561881", "tags": ""}, {"datetaken": "2007-07-08 22:11:04", "license": "2", "title": "Christening", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1269/757561945_c4cc07a618_o.jpg", "secret": "5df29fe1f9", "media": "photo", "latitude": "0", "id": "757561945", "tags": ""}, {"datetaken": "2007-07-08 22:11:05", "license": "2", "title": "Kids-1", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1040/757562013_5510a3a270_o.jpg", "secret": "b1ef7c21ca", "media": "photo", "latitude": "0", "id": "757562013", "tags": ""}, {"datetaken": "2007-07-08 22:11:06", "license": "2", "title": "Kids", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1292/758417120_e2a1f5198c_o.jpg", "secret": "f4c9b7408b", "media": "photo", "latitude": "0", "id": "758417120", "tags": ""}, {"datetaken": "2007-07-08 22:11:06", "license": "2", "title": "Mary Rose and Mary Flor", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1013/758417188_532efc56d2_o.jpg", "secret": "0f8f2d7d55", "media": "photo", "latitude": "0", "id": "758417188", "tags": ""}, {"datetaken": "2007-07-08 22:11:07", "license": "2", "title": "Pork", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1316/757562215_66175330a0_o.jpg", "secret": "004de0aa5d", "media": "photo", "latitude": "0", "id": "757562215", "tags": ""}, {"datetaken": "2007-07-08 22:11:08", "license": "2", "title": "Puring and Efren", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1185/758417330_6613032eb7_o.jpg", "secret": "47817885c5", "media": "photo", "latitude": "0", "id": "758417330", "tags": ""}, {"datetaken": "2007-07-08 22:11:08", "license": "2", "title": "Soldier", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1234/758417388_b6a968aed8_o.jpg", "secret": "7231621f02", "media": "photo", "latitude": "0", "id": "758417388", "tags": ""}, {"datetaken": "2007-07-08 22:11:09", "license": "2", "title": "The View", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1430/758417468_7816a798d3_o.jpg", "secret": "9dc873d793", "media": "photo", "latitude": "0", "id": "758417468", "tags": ""}, {"datetaken": "2007-07-08 22:11:10", "license": "2", "title": "Woman on the street", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1315/757562511_4ff4211983_o.jpg", "secret": "7e2378feef", "media": "photo", "latitude": "0", "id": "757562511", "tags": ""}, {"datetaken": "2007-07-08 22:11:11", "license": "2", "title": "20", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1306/757562595_ae3734bab2_o.jpg", "secret": "19d3fb6930", "media": "photo", "latitude": "0", "id": "757562595", "tags": ""}, {"datetaken": "2007-07-08 22:11:12", "license": "2", "title": "21", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1267/758417744_88b1c9fe93_o.jpg", "secret": "e5ad035449", "media": "photo", "latitude": "0", "id": "758417744", "tags": ""}, {"datetaken": "2007-07-08 22:11:12", "license": "2", "title": "26", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1212/758417816_32e34ef5a8_o.jpg", "secret": "97c242a866", "media": "photo", "latitude": "0", "id": "758417816", "tags": ""}, {"datetaken": "2007-07-08 22:11:13", "license": "2", "title": "31", "text": "", "album_id": "72157600723477055", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1024/757562889_449b3beb0e_o.jpg", "secret": "abbb13247f", "media": "photo", "latitude": "0", "id": "757562889", "tags": ""}, {"datetaken": "2004-08-18 01:02:35", "license": "3", "title": "Lift in Prudential Tower", "text": "", "album_id": "5078", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/219684_725a50ebe7_o.jpg", "secret": "725a50ebe7", "media": "photo", "latitude": "0", "id": "219684", "tags": "boston usa prudential"}, {"datetaken": "2004-08-18 01:08:10", "license": "3", "title": "Back Bay & Charles River", "text": "", "album_id": "5078", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/219685_744393d867_o.jpg", "secret": "744393d867", "media": "photo", "latitude": "0", "id": "219685", "tags": "boston usa prudential"}, {"datetaken": "2004-08-18 01:29:13", "license": "3", "title": "Logan Intl. Airport", "text": "", "album_id": "5078", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/219686_d9de2cdbad_o.jpg", "secret": "d9de2cdbad", "media": "photo", "latitude": "0", "id": "219686", "tags": "usa boston prudential"}, {"datetaken": "2004-08-18 01:29:46", "license": "3", "title": "Charles/M.G.H", "text": "", "album_id": "5078", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/219688_680ec91a16_o.jpg", "secret": "680ec91a16", "media": "photo", "latitude": "0", "id": "219688", "tags": "boston usa prudential"}, {"datetaken": "2004-08-18 01:31:43", "license": "3", "title": "Fenway Park", "text": "", "album_id": "5078", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/219689_3c552cbb42_o.jpg", "secret": "3c552cbb42", "media": "photo", "latitude": "0", "id": "219689", "tags": "usa night boston redsox prudential fenway"}, {"datetaken": "2004-08-18 01:33:00", "license": "3", "title": "Christian Science Church", "text": "", "album_id": "5078", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/219690_723945ea00_o.jpg", "secret": "723945ea00", "media": "photo", "latitude": "0", "id": "219690", "tags": "usa boston prudential"}, {"datetaken": "2004-08-18 01:54:55", "license": "3", "title": "Prudential Center", "text": "", "album_id": "5078", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/227817_aca9d50352_o.jpg", "secret": "aca9d50352", "media": "photo", "latitude": "0", "id": "227817", "tags": "night boston usa prudential"}, {"datetaken": "2004-08-18 01:57:44", "license": "3", "title": "Waterfront", "text": "", "album_id": "5078", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/227818_cf09d97e4f_o.jpg", "secret": "cf09d97e4f", "media": "photo", "latitude": "0", "id": "227818", "tags": "night boston usa prudential"}, {"datetaken": "2004-08-18 02:02:33", "license": "3", "title": "Back Bay & Logan Intl.", "text": "", "album_id": "5078", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/227819_0c642cf769_o.jpg", "secret": "0c642cf769", "media": "photo", "latitude": "0", "id": "227819", "tags": "night boston usa prudential"}, {"datetaken": "2004-08-18 02:03:17", "license": "3", "title": "Back Bay & Logan Intl.", "text": "", "album_id": "5078", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/227821_bc2c2b5267_o.jpg", "secret": "42a47201a7", "media": "photo", "latitude": "0", "id": "227821", "tags": "night boston usa prudential"}, {"datetaken": "2004-08-18 02:11:59", "license": "3", "title": "John Hancock Tower", "text": "", "album_id": "5078", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/227822_9170b26154_o.jpg", "secret": "9170b26154", "media": "photo", "latitude": "0", "id": "227822", "tags": "night boston usa prudential"}, {"datetaken": "2004-08-18 02:41:56", "license": "3", "title": "John Hancock Tower", "text": "", "album_id": "5078", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/227824_ae165da829_o.jpg", "secret": "ae165da829", "media": "photo", "latitude": "0", "id": "227824", "tags": "night boston usa prudential"}, {"datetaken": "2007-07-09 05:40:00", "license": "4", "title": "Experiments using Film Camera", "text": "", "album_id": "72157600728836530", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1011/760160015_dabee67710_o.jpg", "secret": "65e7f250af", "media": "photo", "latitude": "0", "id": "760160015", "tags": "nikon f75"}, {"datetaken": "2007-07-09 05:40:00", "license": "4", "title": "Experiments using Film Camera", "text": "", "album_id": "72157600728836530", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1068/761016206_bb1f079b54_o.jpg", "secret": "48ee23ae25", "media": "photo", "latitude": "0", "id": "761016206", "tags": ""}, {"datetaken": "2007-07-09 05:40:04", "license": "4", "title": "Experiments using Film Camera", "text": "", "album_id": "72157600728836530", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1040/761016434_69718a97b4_o.jpg", "secret": "3197a39238", "media": "photo", "latitude": "0", "id": "761016434", "tags": ""}, {"datetaken": "2007-07-09 05:40:05", "license": "4", "title": "Experiments using Film Camera", "text": "", "album_id": "72157600728836530", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1103/760160341_7b67576263_o.jpg", "secret": "c9c7da2d7e", "media": "photo", "latitude": "0", "id": "760160341", "tags": ""}, {"datetaken": "2007-07-09 05:40:07", "license": "4", "title": "Experiments using Film Camera", "text": "", "album_id": "72157600728836530", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1189/760160473_06daff844f_o.jpg", "secret": "e1bb1034a7", "media": "photo", "latitude": "0", "id": "760160473", "tags": ""}, {"datetaken": "2007-07-09 05:40:08", "license": "4", "title": "Experiments using Film Camera", "text": "", "album_id": "72157600728836530", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1050/760160533_d40fbca588_o.jpg", "secret": "4cc22fd0c0", "media": "photo", "latitude": "0", "id": "760160533", "tags": ""}, {"datetaken": "2007-07-09 05:40:08", "license": "4", "title": "Experiments using Film Camera", "text": "", "album_id": "72157600728836530", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1156/760160573_accebc4701_o.jpg", "secret": "43c6f0e543", "media": "photo", "latitude": "0", "id": "760160573", "tags": ""}, {"datetaken": "2007-07-09 05:40:13", "license": "4", "title": "Experiments using Film Camera", "text": "", "album_id": "72157600728836530", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1282/761017048_6a73cf5e95_o.jpg", "secret": "9591c1a3f3", "media": "photo", "latitude": "0", "id": "761017048", "tags": ""}, {"datetaken": "2007-07-09 05:40:15", "license": "4", "title": "Experiments using Film Camera", "text": "", "album_id": "72157600728836530", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1339/760161061_46af078028_o.jpg", "secret": "e71f90d5a5", "media": "photo", "latitude": "0", "id": "760161061", "tags": ""}, {"datetaken": "2007-07-09 05:40:19", "license": "4", "title": "Experiments using Film Camera", "text": "", "album_id": "72157600728836530", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1304/760161345_55979817df_o.jpg", "secret": "ef89e00fd8", "media": "photo", "latitude": "0", "id": "760161345", "tags": ""}, {"datetaken": "2007-07-09 05:40:21", "license": "4", "title": "Experiments using Film Camera", "text": "", "album_id": "72157600728836530", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1386/761017598_ed8160710d_o.jpg", "secret": "21db3360e9", "media": "photo", "latitude": "0", "id": "761017598", "tags": ""}, {"datetaken": "2007-07-09 05:40:22", "license": "4", "title": "Experiments using Film Camera", "text": "", "album_id": "72157600728836530", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1091/761017686_238e63ae9a_o.jpg", "secret": "de32e46779", "media": "photo", "latitude": "0", "id": "761017686", "tags": ""}, {"datetaken": "2007-07-09 05:40:25", "license": "4", "title": "Experiments using Film Camera", "text": "", "album_id": "72157600728836530", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1407/761017870_76ae3fccfb_o.jpg", "secret": "3f05227a17", "media": "photo", "latitude": "0", "id": "761017870", "tags": ""}, {"datetaken": "2004-08-06 00:25:09", "license": "3", "title": "Entrance from Peabody St.", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256388_074bd05560_o.jpg", "secret": "074bd05560", "media": "photo", "latitude": "0", "id": "256388", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:25:27", "license": "3", "title": "John Harvard Statue", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256390_cedda2356e_o.jpg", "secret": "cedda2356e", "media": "photo", "latitude": "0", "id": "256390", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:26:28", "license": "3", "title": "A Student and Visitors", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256391_4d2bbc9fb8_o.jpg", "secret": "4d2bbc9fb8", "media": "photo", "latitude": "0", "id": "256391", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:28:08", "license": "3", "title": "Grays?", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256392_9864009d2f_o.jpg", "secret": "9864009d2f", "media": "photo", "latitude": "0", "id": "256392", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:29:43", "license": "3", "title": "Matthews Hall", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256393_b18cddeeba_o.jpg", "secret": "b18cddeeba", "media": "photo", "latitude": "0", "id": "256393", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:30:56", "license": "3", "title": "Lehman Dudley House", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256394_915908c3a8_o.jpg", "secret": "915908c3a8", "media": "photo", "latitude": "0", "id": "256394", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:32:42", "license": "3", "title": "Memorial Church", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256395_ec7cae7ae8_o.jpg", "secret": "ec7cae7ae8", "media": "photo", "latitude": "0", "id": "256395", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:33:07", "license": "3", "title": "Boys, Church and The Laptop", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256396_a62195a310_o.jpg", "secret": "a62195a310", "media": "photo", "latitude": "0", "id": "256396", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:33:55", "license": "3", "title": "Memorial Church", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256397_5eec50274e_o.jpg", "secret": "5eec50274e", "media": "photo", "latitude": "0", "id": "256397", "tags": "usa cambridge harvard church"}, {"datetaken": "2004-08-06 00:36:19", "license": "3", "title": "Memorial Church", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256401_caee75e4e7_o.jpg", "secret": "caee75e4e7", "media": "photo", "latitude": "0", "id": "256401", "tags": "usa cambridge harvard church"}, {"datetaken": "2004-08-06 00:37:44", "license": "3", "title": "Girl, Church and The Laptop", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256405_e4ecaaec6d_o.jpg", "secret": "e4ecaaec6d", "media": "photo", "latitude": "0", "id": "256405", "tags": "cambridge usa harvard"}, {"datetaken": "2004-08-06 00:38:22", "license": "3", "title": "Memorial Church's Tower", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256407_5d88953dbd_o.jpg", "secret": "5d88953dbd", "media": "photo", "latitude": "0", "id": "256407", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:40:41", "license": "3", "title": "Memorial Church", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256408_9770cd989d_o.jpg", "secret": "9770cd989d", "media": "photo", "latitude": "0", "id": "256408", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:42:56", "license": "3", "title": "University Hall", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256411_8dd69950b5_o.jpg", "secret": "8dd69950b5", "media": "photo", "latitude": "0", "id": "256411", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:47:26", "license": "3", "title": "Robinson", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256415_11102e4787_o.jpg", "secret": "11102e4787", "media": "photo", "latitude": "0", "id": "256415", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:49:02", "license": "3", "title": "Fogg Museum of Art", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256417_c4870a3e19_o.jpg", "secret": "c4870a3e19", "media": "photo", "latitude": "0", "id": "256417", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:50:02", "license": "3", "title": "Arthur M. Sackler Museum", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256418_14625a0b96_o.jpg", "secret": "14625a0b96", "media": "photo", "latitude": "0", "id": "256418", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:51:17", "license": "3", "title": "Honda Insight", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256419_3496595aeb_o.jpg", "secret": "3496595aeb", "media": "photo", "latitude": "0", "id": "256419", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:53:11", "license": "3", "title": "Carpenter Center for the Visual Arts", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256420_7541cc692d_o.jpg", "secret": "7541cc692d", "media": "photo", "latitude": "0", "id": "256420", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:53:39", "license": "3", "title": "Harvard houses", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256421_b16be2561d_o.jpg", "secret": "b16be2561d", "media": "photo", "latitude": "0", "id": "256421", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:54:42", "license": "3", "title": "Dana Palmer", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256422_d5a55f18c1_o.jpg", "secret": "d5a55f18c1", "media": "photo", "latitude": "0", "id": "256422", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:55:07", "license": "3", "title": "Faculty Club", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256423_8796a37f3c_o.jpg", "secret": "8796a37f3c", "media": "photo", "latitude": "0", "id": "256423", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:56:49", "license": "3", "title": "Prescott St.", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256424_f1049a7c71_o.jpg", "secret": "f1049a7c71", "media": "photo", "latitude": "0", "id": "256424", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:57:45", "license": "3", "title": "Near Harvard", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256426_e51ab15ed3_o.jpg", "secret": "e51ab15ed3", "media": "photo", "latitude": "0", "id": "256426", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 00:58:34", "license": "3", "title": "License Plate", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256427_d3ebea9659_o.jpg", "secret": "d3ebea9659", "media": "photo", "latitude": "0", "id": "256427", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 01:00:14", "license": "3", "title": "Old Cambridge Baptist Churche", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256428_db2e22211c_o.jpg", "secret": "db2e22211c", "media": "photo", "latitude": "0", "id": "256428", "tags": "usa cambridge harvard church"}, {"datetaken": "2004-08-06 01:00:53", "license": "3", "title": "Old Cambridge Baptist Church", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256429_45d5b08b3f_o.jpg", "secret": "45d5b08b3f", "media": "photo", "latitude": "0", "id": "256429", "tags": "usa cambridge harvard churche"}, {"datetaken": "2004-08-06 01:01:36", "license": "3", "title": "Barker Ctr.", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256432_bf95969812_o.jpg", "secret": "bf95969812", "media": "photo", "latitude": "0", "id": "256432", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 01:03:48", "license": "3", "title": "Bow Street", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256435_20b7ff2c31_o.jpg", "secret": "20b7ff2c31", "media": "photo", "latitude": "0", "id": "256435", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 01:06:03", "license": "3", "title": "Houghton Library", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256438_1fd81fff0e_o.jpg", "secret": "1fd81fff0e", "media": "photo", "latitude": "0", "id": "256438", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 01:15:30", "license": "3", "title": "Inn at Harvard", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256439_fe300ef1d4_o.jpg", "secret": "fe300ef1d4", "media": "photo", "latitude": "0", "id": "256439", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 01:16:07", "license": "3", "title": "Bow St.", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256440_a3c83b73c3_o.jpg", "secret": "a3c83b73c3", "media": "photo", "latitude": "0", "id": "256440", "tags": "usa cambridge harvard street"}, {"datetaken": "2004-08-06 01:20:19", "license": "3", "title": "Harvard Sq.", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256441_a5757f47d6_o.jpg", "secret": "a5757f47d6", "media": "photo", "latitude": "0", "id": "256441", "tags": "usa cambridge harvard"}, {"datetaken": "2004-08-06 01:20:57", "license": "3", "title": "Near Harvard Sq.", "text": "", "album_id": "5185", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/256442_79b5a5c7e8_o.jpg", "secret": "79b5a5c7e8", "media": "photo", "latitude": "0", "id": "256442", "tags": "usa cambridge harvard"}, {"datetaken": "2007-06-29 13:18:57", "license": "5", "title": "Central Square", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1093/659518734_43eaf3c02a_o.jpg", "secret": "eed32716bf", "media": "photo", "latitude": "0", "id": "659518734", "tags": ""}, {"datetaken": "2007-06-29 13:18:58", "license": "5", "title": "Chram sv. Mikulase Square", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1353/659518830_9c18263383_o.jpg", "secret": "aac50f1379", "media": "photo", "latitude": "0", "id": "659518830", "tags": ""}, {"datetaken": "2007-06-29 13:18:59", "license": "5", "title": "Inscriptions from Choir Boys---1", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1374/658666703_034d58171c_o.jpg", "secret": "adb009c853", "media": "photo", "latitude": "0", "id": "658666703", "tags": ""}, {"datetaken": "2007-06-29 13:19:00", "license": "5", "title": "Inscriptions from Choir Boys", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1436/659519058_28da850d43_o.jpg", "secret": "b59752130d", "media": "photo", "latitude": "0", "id": "659519058", "tags": ""}, {"datetaken": "2007-06-29 13:19:00", "license": "5", "title": "praha-Chram-sv.-Mikulase-church-2", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1231/659519160_48284c441d_o.jpg", "secret": "355c214cc2", "media": "photo", "latitude": "0", "id": "659519160", "tags": ""}, {"datetaken": "2007-06-29 13:19:01", "license": "5", "title": "praha-Chram-sv.-Mikulase-church-3", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1409/659519274_ab9a3dba18_o.jpg", "secret": "d360467c9a", "media": "photo", "latitude": "0", "id": "659519274", "tags": ""}, {"datetaken": "2007-06-29 13:19:02", "license": "5", "title": "praha-Chram-sv.-Mikulase-church-ceiling-ITHINK", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1004/658667171_8cd1885558_o.jpg", "secret": "704c088244", "media": "photo", "latitude": "0", "id": "658667171", "tags": ""}, {"datetaken": "2007-06-29 13:19:03", "license": "5", "title": "praha-Rijna-St-I-Think", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1123/658667269_477a6f265b_o.jpg", "secret": "0ff95b3a55", "media": "photo", "latitude": "0", "id": "658667269", "tags": ""}, {"datetaken": "2007-06-29 13:19:04", "license": "5", "title": "praha-StCharlesBridge-1", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1281/658667355_e69a4afad8_o.jpg", "secret": "e083bd7289", "media": "photo", "latitude": "0", "id": "658667355", "tags": ""}, {"datetaken": "2007-06-29 13:19:05", "license": "5", "title": "praha-another-church-2", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1013/659519728_8abbef798d_o.jpg", "secret": "98a48132bb", "media": "photo", "latitude": "0", "id": "659519728", "tags": ""}, {"datetaken": "2007-06-29 13:19:06", "license": "5", "title": "praha-another-church-ceiling-3", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1336/659519828_74a8985307_o.jpg", "secret": "29eaa71eea", "media": "photo", "latitude": "0", "id": "659519828", "tags": ""}, {"datetaken": "2007-06-29 13:19:06", "license": "5", "title": "praha-another-street-3", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1116/658667707_c4216631e5_o.jpg", "secret": "b5111151e7", "media": "photo", "latitude": "0", "id": "658667707", "tags": ""}, {"datetaken": "2007-06-29 13:19:07", "license": "5", "title": "praha-another-street-somewhere-3", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1062/658667809_71b44bc4e3_o.jpg", "secret": "782a97bccd", "media": "photo", "latitude": "0", "id": "658667809", "tags": ""}, {"datetaken": "2007-06-29 13:19:09", "license": "5", "title": "praha-around-2", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1089/659520178_c1149b329b_o.jpg", "secret": "5185c7054f", "media": "photo", "latitude": "0", "id": "659520178", "tags": ""}, {"datetaken": "2007-06-29 13:19:09", "license": "5", "title": "praha-around-Mostecha-St", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1040/659520294_6e4881424d_o.jpg", "secret": "18b4ac0071", "media": "photo", "latitude": "0", "id": "659520294", "tags": ""}, {"datetaken": "2007-06-29 13:19:10", "license": "5", "title": "praha-around-Palace-a-church-forgoten-name", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1354/659520408_0a364683c8_o.jpg", "secret": "8d358285f5", "media": "photo", "latitude": "0", "id": "659520408", "tags": ""}, {"datetaken": "2007-06-29 13:19:11", "license": "5", "title": "praha-around-Palace-the-view-2", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1365/658668225_2301519c5f_o.jpg", "secret": "216c5ac693", "media": "photo", "latitude": "0", "id": "658668225", "tags": ""}, {"datetaken": "2007-06-29 13:19:12", "license": "5", "title": "praha-around-Palace-the-view", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1116/658668303_79af00255e_o.jpg", "secret": "97c47ea9b7", "media": "photo", "latitude": "0", "id": "658668303", "tags": ""}, {"datetaken": "2007-06-29 13:19:13", "license": "5", "title": "praha-around-Palace-trying-a-panoram-just-outside-the-gates", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1035/659520770_0176831484_o.jpg", "secret": "9e8ed68eb0", "media": "photo", "latitude": "0", "id": "659520770", "tags": ""}, {"datetaken": "2007-06-29 13:19:14", "license": "5", "title": "praha-around-Siroka-St", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1359/658668583_ee782d3421_o.jpg", "secret": "26207f8148", "media": "photo", "latitude": "0", "id": "658668583", "tags": ""}, {"datetaken": "2007-06-29 13:19:14", "license": "5", "title": "praha-around-dusk-with-palace-in-bg", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1418/658668657_990acb43d0_o.jpg", "secret": "16885c7ba9", "media": "photo", "latitude": "0", "id": "658668657", "tags": ""}, {"datetaken": "2007-06-29 13:19:15", "license": "5", "title": "praha-beside-theater-and-opera-house-2", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1184/658668737_bbde2d25a1_o.jpg", "secret": "2e37ad6140", "media": "photo", "latitude": "0", "id": "658668737", "tags": ""}, {"datetaken": "2007-06-29 13:19:16", "license": "5", "title": "praha-going-up-to-palace", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1255/659521150_d357623e38_o.jpg", "secret": "4cba5f7308", "media": "photo", "latitude": "0", "id": "659521150", "tags": ""}, {"datetaken": "2007-06-29 13:19:16", "license": "5", "title": "praha-me-being-idiot-around-central-square-1", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1362/659521272_73f57cd7df_o.jpg", "secret": "32743c6beb", "media": "photo", "latitude": "0", "id": "659521272", "tags": ""}, {"datetaken": "2007-06-29 13:19:19", "license": "5", "title": "praha-palace-court-yard-2", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1276/658669257_2549fe5f3d_o.jpg", "secret": "e89f94ecd5", "media": "photo", "latitude": "0", "id": "658669257", "tags": ""}, {"datetaken": "2007-06-29 13:19:20", "license": "5", "title": "praha-palace-gates", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1036/658669363_04f360d1be_o.jpg", "secret": "cc86accde4", "media": "photo", "latitude": "0", "id": "658669363", "tags": ""}, {"datetaken": "2007-06-29 13:19:21", "license": "5", "title": "praha-rooftops-2", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1216/659521872_337aec0c71_o.jpg", "secret": "5871802473", "media": "photo", "latitude": "0", "id": "659521872", "tags": ""}, {"datetaken": "2007-06-29 13:19:22", "license": "5", "title": "praha-rooftops", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1348/658669547_c3e6799414_o.jpg", "secret": "f23ff721b8", "media": "photo", "latitude": "0", "id": "658669547", "tags": ""}, {"datetaken": "2007-06-29 13:19:22", "license": "5", "title": "praha-spanish-synagogue-ceiling", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1003/658669613_6e046c40cf_o.jpg", "secret": "5c7e80da07", "media": "photo", "latitude": "0", "id": "658669613", "tags": ""}, {"datetaken": "2007-06-29 13:19:23", "license": "5", "title": "praha-statue-infrontof-Rudolfinum-Theater", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1028/659522152_fd375ebff9_o.jpg", "secret": "c2141d1035", "media": "photo", "latitude": "0", "id": "659522152", "tags": ""}, {"datetaken": "2007-06-29 13:19:24", "license": "5", "title": "Central Square---1", "text": "", "album_id": "72157600548193895", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1422/658669865_fa2b0999ac_o.jpg", "secret": "566d1ff969", "media": "photo", "latitude": "0", "id": "658669865", "tags": ""}, {"datetaken": "2004-10-14 15:51:13", "license": "1", "title": "Hullut P\u00e4iv\u00e4t A1.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929490_207ccb5231_o.jpg", "secret": "207ccb5231", "media": "photo", "latitude": "0", "id": "929490", "tags": "syysloma tampere stockmann hullutpaivat finland"}, {"datetaken": "2004-10-14 15:51:33", "license": "1", "title": "Hullut P\u00e4iv\u00e4t A2.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929491_3113a1f460_o.jpg", "secret": "3113a1f460", "media": "photo", "latitude": "0", "id": "929491", "tags": "syysloma tampere stockmann hullutpaivat finland"}, {"datetaken": "2004-10-14 15:51:39", "license": "1", "title": "Hullut P\u00e4iv\u00e4t A3.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929494_e11428b178_o.jpg", "secret": "e11428b178", "media": "photo", "latitude": "0", "id": "929494", "tags": "syysloma tampere stockmann hullutpaivat finland"}, {"datetaken": "2004-10-14 20:42:01", "license": "1", "title": "Hullut P\u00e4iv\u00e4t A4.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929496_dd34254a38_o.jpg", "secret": "dd34254a38", "media": "photo", "latitude": "0", "id": "929496", "tags": "syysloma tampere stockmann hullutpaivat finland"}, {"datetaken": "2004-10-14 21:42:52", "license": "1", "title": "Appro 1.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929570_826f620b39_o.jpg", "secret": "826f620b39", "media": "photo", "latitude": "0", "id": "929570", "tags": "syysloma tampere turkey h\u00e4meenkadunappro appro h\u00e4meenkatu keskustori finland"}, {"datetaken": "2004-10-14 21:43:24", "license": "1", "title": "Appro 2.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929575_c5c1edbb1a_o.jpg", "secret": "c5c1edbb1a", "media": "photo", "latitude": "0", "id": "929575", "tags": "syysloma tampere turkey h\u00e4meenkadunappro appro h\u00e4meenkatu keskustori finland"}, {"datetaken": "2004-10-14 21:44:01", "license": "1", "title": "Appro 3.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929582_730adcaacb_o.jpg", "secret": "730adcaacb", "media": "photo", "latitude": "0", "id": "929582", "tags": "syysloma tampere turkey h\u00e4meenkadunappro appro h\u00e4meenkatu keskustori finland"}, {"datetaken": "2004-10-14 21:44:14", "license": "1", "title": "Appro 4.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929586_9cbd7b43f8_o.jpg", "secret": "9cbd7b43f8", "media": "photo", "latitude": "0", "id": "929586", "tags": "syysloma tampere turkey h\u00e4meenkadunappro appro h\u00e4meenkatu keskustori finland"}, {"datetaken": "2004-10-14 21:44:34", "license": "1", "title": "Appro 5.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929591_67cc391094_o.jpg", "secret": "67cc391094", "media": "photo", "latitude": "0", "id": "929591", "tags": "syysloma tampere turkey h\u00e4meenkadunappro appro h\u00e4meenkatu keskustori finland"}, {"datetaken": "2004-10-14 21:46:24", "license": "1", "title": "Appro 6.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929594_49bd2646bf_o.jpg", "secret": "49bd2646bf", "media": "photo", "latitude": "0", "id": "929594", "tags": "turkey finland me2 tampere syysloma h\u00e4meenkadunappro appro h\u00e4meenkatu keskustori"}, {"datetaken": "2004-10-14 21:47:13", "license": "1", "title": "Appro 7.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929597_22f4505955_o.jpg", "secret": "22f4505955", "media": "photo", "latitude": "0", "id": "929597", "tags": "turkey finland me2 tampere syysloma h\u00e4meenkadunappro appro h\u00e4meenkatu keskustori"}, {"datetaken": "2004-10-14 21:48:06", "license": "1", "title": "Appro 8.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929600_a0d156446d_o.jpg", "secret": "a0d156446d", "media": "photo", "latitude": "0", "id": "929600", "tags": "syysloma tampere turkey h\u00e4meenkadunappro appro h\u00e4meenkatu keskustori finland"}, {"datetaken": "2004-10-14 21:48:57", "license": "1", "title": "Appro 9.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929605_5d51fc69c3_o.jpg", "secret": "5d51fc69c3", "media": "photo", "latitude": "0", "id": "929605", "tags": "syysloma tampere turkey h\u00e4meenkadunappro appro h\u00e4meenkatu keskustori finland"}, {"datetaken": "2004-10-14 21:50:25", "license": "1", "title": "Appro 10.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929609_59def031e5_o.jpg", "secret": "59def031e5", "media": "photo", "latitude": "0", "id": "929609", "tags": "syysloma tampere turkey h\u00e4meenkadunappro appro h\u00e4meenkatu keskustori finland"}, {"datetaken": "2004-10-14 22:28:45", "license": "1", "title": "Sign Yl\u00f6jarvi.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929635_f88321ea58_o.jpg", "secret": "f88321ea58", "media": "photo", "latitude": "0", "id": "929635", "tags": "tampere yl\u00f6jarvi sign finland"}, {"datetaken": "2004-10-14 22:29:03", "license": "1", "title": "Sign Tampere.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929639_142a11f41b_o.jpg", "secret": "142a11f41b", "media": "photo", "latitude": "0", "id": "929639", "tags": "tampere yl\u00f6jarvi sign finland"}, {"datetaken": "2004-10-15 11:21:32", "license": "1", "title": "Sucuk 1.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929665_68b5197200_o.jpg", "secret": "68b5197200", "media": "photo", "latitude": "0", "id": "929665", "tags": "syysloma tampere turkey sucuk finland"}, {"datetaken": "2004-10-15 11:25:03", "license": "1", "title": "Sucuk 2.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929669_8e00b44a8f_o.jpg", "secret": "8e00b44a8f", "media": "photo", "latitude": "0", "id": "929669", "tags": "syysloma tampere turkey sucuk finland"}, {"datetaken": "2004-10-15 11:27:21", "license": "1", "title": "Sucuk 3.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929673_be1c81e08c_o.jpg", "secret": "be1c81e08c", "media": "photo", "latitude": "0", "id": "929673", "tags": "syysloma tampere turkey sucuk finland"}, {"datetaken": "2004-10-15 11:32:19", "license": "1", "title": "Sucuk 4.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929678_2aa851902d_o.jpg", "secret": "2aa851902d", "media": "photo", "latitude": "0", "id": "929678", "tags": "turkey finland me2 tampere syysloma sucuk"}, {"datetaken": "2004-10-15 11:32:42", "license": "1", "title": "Sucuk 5.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929684_5c0ff62103_o.jpg", "secret": "5c0ff62103", "media": "photo", "latitude": "0", "id": "929684", "tags": "me turkey finland tampere syysloma sucuk"}, {"datetaken": "2004-10-15 11:50:18", "license": "1", "title": "Sucuk 6.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929689_9d3bd310eb_o.jpg", "secret": "9d3bd310eb", "media": "photo", "latitude": "0", "id": "929689", "tags": "syysloma tampere turkey sucuk finland"}, {"datetaken": "2004-10-15 15:14:45", "license": "1", "title": "Hullut P\u00e4iv\u00e4t B1.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929502_e76fa39c01_o.jpg", "secret": "e76fa39c01", "media": "photo", "latitude": "0", "id": "929502", "tags": "syysloma tampere stockmann hullutpaivat finland"}, {"datetaken": "2004-10-15 15:15:49", "license": "1", "title": "Hullut P\u00e4iv\u00e4t B2.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929505_29bfc1b684_o.jpg", "secret": "29bfc1b684", "media": "photo", "latitude": "0", "id": "929505", "tags": "syysloma tampere stockmann hullutpaivat finland"}, {"datetaken": "2004-10-15 15:18:57", "license": "1", "title": "Hullut P\u00e4iv\u00e4t B3.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929506_6262d8423d_o.jpg", "secret": "6262d8423d", "media": "photo", "latitude": "0", "id": "929506", "tags": "syysloma tampere stockmann hullutpaivat finland"}, {"datetaken": "2004-10-15 15:20:12", "license": "1", "title": "Hullut P\u00e4iv\u00e4t B4.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929507_907a26c41d_o.jpg", "secret": "907a26c41d", "media": "photo", "latitude": "0", "id": "929507", "tags": "syysloma tampere stockmann hullutpaivat finland"}, {"datetaken": "2004-10-15 15:21:37", "license": "1", "title": "Hullut P\u00e4iv\u00e4t B5.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929508_8a64671ccb_o.jpg", "secret": "8a64671ccb", "media": "photo", "latitude": "0", "id": "929508", "tags": "syysloma tampere stockmann hullutpaivat finland"}, {"datetaken": "2004-10-15 15:22:48", "license": "1", "title": "Hullut P\u00e4iv\u00e4t B6.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929512_ef219f1300_o.jpg", "secret": "ef219f1300", "media": "photo", "latitude": "0", "id": "929512", "tags": "syysloma tampere stockmann hullutpaivat finland"}, {"datetaken": "2004-10-15 15:22:58", "license": "1", "title": "Hullut P\u00e4iv\u00e4t B7.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929514_faa70a54f4_o.jpg", "secret": "faa70a54f4", "media": "photo", "latitude": "0", "id": "929514", "tags": "syysloma tampere stockmann hullutpaivat finland"}, {"datetaken": "2004-10-15 15:23:06", "license": "1", "title": "Hullut P\u00e4iv\u00e4t B8.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929515_e1cacba669_o.jpg", "secret": "e1cacba669", "media": "photo", "latitude": "0", "id": "929515", "tags": "syysloma tampere stockmann hullutpaivat finland"}, {"datetaken": "2004-10-15 15:24:44", "license": "1", "title": "Hullut P\u00e4iv\u00e4t B9.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929516_7ca97fc545_o.jpg", "secret": "7ca97fc545", "media": "photo", "latitude": "0", "id": "929516", "tags": "syysloma tampere stockmann hullutpaivat finland"}, {"datetaken": "2004-10-15 15:26:05", "license": "1", "title": "Hullut P\u00e4iv\u00e4t B10.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929518_b7b153fa85_o.jpg", "secret": "b7b153fa85", "media": "photo", "latitude": "0", "id": "929518", "tags": "syysloma tampere stockmann hullutpaivat finland"}, {"datetaken": "2004-10-15 15:26:30", "license": "1", "title": "Hullut P\u00e4iv\u00e4t B11.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929520_5c1008b58f_o.jpg", "secret": "5c1008b58f", "media": "photo", "latitude": "0", "id": "929520", "tags": "syysloma tampere stockmann hullutpaivat finland"}, {"datetaken": "2004-10-15 15:30:23", "license": "1", "title": "Hullut P\u00e4iv\u00e4t B12.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929523_bc6bb944b1_o.jpg", "secret": "bc6bb944b1", "media": "photo", "latitude": "0", "id": "929523", "tags": "syysloma tampere stockmann hullutpaivat finland"}, {"datetaken": "2004-10-15 15:31:56", "license": "1", "title": "Hullut P\u00e4iv\u00e4t B13.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929525_5264cf6298_o.jpg", "secret": "5264cf6298", "media": "photo", "latitude": "0", "id": "929525", "tags": "syysloma tampere stockmann hullutpaivat finland"}, {"datetaken": "2004-10-15 15:32:42", "license": "1", "title": "H\u00e4meenkatu 1.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929732_718efb327f_o.jpg", "secret": "718efb327f", "media": "photo", "latitude": "0", "id": "929732", "tags": "syysloma tampere h\u00e4meenkatu finland"}, {"datetaken": "2004-10-15 15:43:36", "license": "1", "title": "H\u00e4meenkatu 2.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929736_c4c40d4721_o.jpg", "secret": "c4c40d4721", "media": "photo", "latitude": "0", "id": "929736", "tags": "syysloma tampere h\u00e4meenkatu turkishfood finland"}, {"datetaken": "2004-10-15 15:43:48", "license": "1", "title": "H\u00e4meenkatu 3.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929739_86124cc80e_o.jpg", "secret": "86124cc80e", "media": "photo", "latitude": "0", "id": "929739", "tags": "syysloma tampere h\u00e4meenkatu turkishfood finland"}, {"datetaken": "2004-10-15 15:44:02", "license": "1", "title": "H\u00e4meenkatu 4.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929741_f0af59204c_o.jpg", "secret": "f0af59204c", "media": "photo", "latitude": "0", "id": "929741", "tags": "syysloma tampere h\u00e4meenkatu turkishfood finland"}, {"datetaken": "2004-10-15 15:50:19", "license": "1", "title": "Keskustori 1.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929747_fd771abf66_o.jpg", "secret": "fd771abf66", "media": "photo", "latitude": "0", "id": "929747", "tags": "syysloma tampere keskustori park church finland"}, {"datetaken": "2004-10-15 15:50:34", "license": "1", "title": "Keskustori 2.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929750_0eada5bb3b_o.jpg", "secret": "0eada5bb3b", "media": "photo", "latitude": "0", "id": "929750", "tags": "syysloma tampere keskustori park church finland"}, {"datetaken": "2004-10-15 15:52:49", "license": "1", "title": "Keskustori 3.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929752_8ac2e981e0_o.jpg", "secret": "8ac2e981e0", "media": "photo", "latitude": "0", "id": "929752", "tags": "syysloma tampere keskustori statue finland"}, {"datetaken": "2004-10-15 15:53:29", "license": "1", "title": "Keskustori 4.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929753_6e499817bc_o.jpg", "secret": "6e499817bc", "media": "photo", "latitude": "0", "id": "929753", "tags": "syysloma tampere keskustori tomb grave finland"}, {"datetaken": "2004-10-15 16:14:34", "license": "1", "title": "H\u00e4meenkatu 5.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929745_cffd3957f5_o.jpg", "secret": "cffd3957f5", "media": "photo", "latitude": "0", "id": "929745", "tags": "syysloma tampere h\u00e4meenkatu finland"}, {"datetaken": "2004-10-15 16:49:54", "license": "1", "title": "Keskustori 5.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929755_4569c938df_o.jpg", "secret": "4569c938df", "media": "photo", "latitude": "0", "id": "929755", "tags": "syysloma tampere keskustori busstop finland"}, {"datetaken": "2004-10-15 17:19:55", "license": "1", "title": "Keskustori 6.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929758_e173371503_o.jpg", "secret": "e173371503", "media": "photo", "latitude": "0", "id": "929758", "tags": "syysloma tampere busstop map finland"}, {"datetaken": "2004-10-15 17:20:08", "license": "1", "title": "Keskustori 7.JPG", "text": "", "album_id": "23927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/929761_64f58c60f9_o.jpg", "secret": "64f58c60f9", "media": "photo", "latitude": "0", "id": "929761", "tags": "syysloma tampere busstop map finland"}, {"datetaken": "2004-12-03 17:01:45", "license": "4", "title": "balloons 006", "text": "", "album_id": "72157601615188284", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1004/1217465798_9d2bf3a313_o.jpg", "secret": "e1bc77ae9c", "media": "photo", "latitude": "0", "id": "1217465798", "tags": "winter balloons hotairballoons battlecreek"}, {"datetaken": "2004-12-03 17:02:04", "license": "4", "title": "balloons 007", "text": "", "album_id": "72157601615188284", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1284/1217465864_fbfc13bfe2_o.jpg", "secret": "05ef50cf80", "media": "photo", "latitude": "0", "id": "1217465864", "tags": "winter balloons hotairballoons battlecreek"}, {"datetaken": "2004-12-03 17:03:54", "license": "4", "title": "balloons 010", "text": "", "album_id": "72157601615188284", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1074/1216600891_5d357c2a60_o.jpg", "secret": "56cf23efc0", "media": "photo", "latitude": "0", "id": "1216600891", "tags": "winter balloons hotairballoons battlecreek"}, {"datetaken": "2004-12-03 17:04:17", "license": "4", "title": "balloons 011", "text": "", "album_id": "72157601615188284", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1399/1217466116_919ee9f886_o.jpg", "secret": "72948140d8", "media": "photo", "latitude": "0", "id": "1217466116", "tags": "winter balloons hotairballoons battlecreek"}, {"datetaken": "2004-12-03 17:04:56", "license": "4", "title": "balloons 013", "text": "", "album_id": "72157601615188284", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1275/1217466252_ad80e5d80a_o.jpg", "secret": "43d340c724", "media": "photo", "latitude": "0", "id": "1217466252", "tags": "winter balloons hotairballoons battlecreek"}, {"datetaken": "2004-12-03 17:05:32", "license": "4", "title": "balloons 015", "text": "", "album_id": "72157601615188284", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1200/1216601225_f792d3769e_o.jpg", "secret": "83f60389cc", "media": "photo", "latitude": "0", "id": "1216601225", "tags": "winter balloons hotairballoons battlecreek"}, {"datetaken": "2004-12-03 17:06:05", "license": "4", "title": "balloons 017", "text": "", "album_id": "72157601615188284", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1051/1217466492_265bd07a89_o.jpg", "secret": "7f4156749b", "media": "photo", "latitude": "0", "id": "1217466492", "tags": "winter balloons hotairballoons battlecreek"}, {"datetaken": "2004-12-03 17:09:22", "license": "4", "title": "balloons 020", "text": "", "album_id": "72157601615188284", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1250/1216601483_f9fe166af6_o.jpg", "secret": "9dbeca1193", "media": "photo", "latitude": "0", "id": "1216601483", "tags": "winter balloons football hotairballoons battlecreek"}, {"datetaken": "2004-12-03 17:10:36", "license": "4", "title": "balloons 022", "text": "", "album_id": "72157601615188284", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1150/1216601585_c2eace8342_o.jpg", "secret": "7849baff6a", "media": "photo", "latitude": "0", "id": "1216601585", "tags": "winter balloons hotairballoons battlecreek"}, {"datetaken": "2004-12-03 17:12:51", "license": "4", "title": "balloons 023", "text": "", "album_id": "72157601615188284", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1166/1217466788_6b0d2b3b0b_o.jpg", "secret": "ff89caaf89", "media": "photo", "latitude": "0", "id": "1217466788", "tags": "winter balloons hotairballoons battlecreek"}, {"datetaken": "2004-12-20 08:19:29", "license": "3", "title": "13_1", "text": "", "album_id": "59650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2370939_e455ee6020_o.jpg", "secret": "e455ee6020", "media": "photo", "latitude": "0", "id": "2370939", "tags": ""}, {"datetaken": "2004-12-20 08:26:43", "license": "3", "title": "13_6", "text": "", "album_id": "59650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2371128_a8503ce1a4_o.jpg", "secret": "a8503ce1a4", "media": "photo", "latitude": "0", "id": "2371128", "tags": ""}, {"datetaken": "2004-12-20 08:26:43", "license": "3", "title": "13_3", "text": "", "album_id": "59650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2371127_366af23ee1_o.jpg", "secret": "366af23ee1", "media": "photo", "latitude": "0", "id": "2371127", "tags": ""}, {"datetaken": "2004-12-20 08:26:43", "license": "3", "title": "13_2", "text": "", "album_id": "59650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2371124_6fb6d8d0b5_o.jpg", "secret": "6fb6d8d0b5", "media": "photo", "latitude": "0", "id": "2371124", "tags": ""}, {"datetaken": "2004-12-20 08:26:43", "license": "3", "title": "13_5", "text": "", "album_id": "59650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2371125_9f0926b05a_o.jpg", "secret": "9f0926b05a", "media": "photo", "latitude": "0", "id": "2371125", "tags": ""}, {"datetaken": "2004-12-20 08:26:43", "license": "3", "title": "13_4", "text": "", "album_id": "59650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2371123_a6a0f1022f_o.jpg", "secret": "a6a0f1022f", "media": "photo", "latitude": "0", "id": "2371123", "tags": ""}, {"datetaken": "2004-12-20 08:26:43", "license": "3", "title": "13", "text": "", "album_id": "59650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2371122_0f80997078_o.jpg", "secret": "0f80997078", "media": "photo", "latitude": "0", "id": "2371122", "tags": ""}, {"datetaken": "2004-12-20 08:31:11", "license": "3", "title": "13_9", "text": "", "album_id": "59650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2371261_e4372d4cca_o.jpg", "secret": "e4372d4cca", "media": "photo", "latitude": "0", "id": "2371261", "tags": ""}, {"datetaken": "2004-12-20 08:31:11", "license": "3", "title": "13_12", "text": "", "album_id": "59650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2371260_ce84dcffc5_o.jpg", "secret": "ce84dcffc5", "media": "photo", "latitude": "0", "id": "2371260", "tags": ""}, {"datetaken": "2004-12-20 08:31:11", "license": "3", "title": "13_11", "text": "", "album_id": "59650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2371258_d3e7f597c4_o.jpg", "secret": "d3e7f597c4", "media": "photo", "latitude": "0", "id": "2371258", "tags": ""}, {"datetaken": "2004-12-20 08:31:11", "license": "3", "title": "13_8", "text": "", "album_id": "59650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2371257_152dcfa3f0_o.jpg", "secret": "152dcfa3f0", "media": "photo", "latitude": "0", "id": "2371257", "tags": ""}, {"datetaken": "2004-12-20 08:31:11", "license": "3", "title": "13_10", "text": "", "album_id": "59650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2371256_91f9dec631_o.jpg", "secret": "91f9dec631", "media": "photo", "latitude": "0", "id": "2371256", "tags": ""}, {"datetaken": "2004-12-20 08:31:11", "license": "3", "title": "13_7", "text": "", "album_id": "59650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2371255_5a3d081e8c_o.jpg", "secret": "5a3d081e8c", "media": "photo", "latitude": "0", "id": "2371255", "tags": ""}, {"datetaken": "2004-12-20 08:42:27", "license": "3", "title": "13_13", "text": "", "album_id": "59650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2371468_bc55a6253e_o.jpg", "secret": "bc55a6253e", "media": "photo", "latitude": "0", "id": "2371468", "tags": ""}, {"datetaken": "2004-12-20 08:42:27", "license": "3", "title": "13_14", "text": "", "album_id": "59650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2371470_217dddfbf4_o.jpg", "secret": "217dddfbf4", "media": "photo", "latitude": "0", "id": "2371470", "tags": ""}, {"datetaken": "2004-12-21 10:02:16", "license": "2", "title": "Morning view from my window", "text": "", "album_id": "60424", "longitude": "5.346093", "url_o": "https://farm1.staticflickr.com/2/2403216_00268013dd_o.jpg", "secret": "00268013dd", "media": "photo", "latitude": "60.375838", "id": "2403216", "tags": "view home snow bergen dayinthelife dilodec04 dilo"}, {"datetaken": "2004-12-21 12:45:07", "license": "2", "title": "I walked to work listening to music", "text": "", "album_id": "60424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2403232_27f8c06672_o.jpg", "secret": "27f8c06672", "media": "photo", "latitude": "0", "id": "2403232", "tags": "bergen dayinthelife ipod dilodec04 dilo"}, {"datetaken": "2004-12-21 13:44:24", "license": "2", "title": "Planning next semester's teaching", "text": "", "album_id": "60424", "longitude": "5.319163", "url_o": "https://farm1.staticflickr.com/2/2403257_5e9882046e_o.jpg", "secret": "5e9882046e", "media": "photo", "latitude": "60.388389", "id": "2403257", "tags": "norway geotagged university meeting plazes bergen uib dayinthelife dilodec04 dilo universityofbergen plazefcfb46a13d1a2b8fd20da2f9317be3b2 geolong53327347714299 geolat6039068686517 plaze53b66837fb3e98101098d2c914d617ce humanitiesbuildinguniversityofbergen geolong531916379928589 geolat603883895095237"}, {"datetaken": "2004-12-21 14:42:38", "license": "2", "title": "Bus stop with Firefox ad", "text": "", "album_id": "60424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2403542_36da8790c5_o.jpg", "secret": "36da8790c5", "media": "photo", "latitude": "0", "id": "2403542", "tags": "bergen dayinthelife firefox busstop dilodec04 dilo"}, {"datetaken": "2004-12-21 15:47:19", "license": "2", "title": "View before sunset", "text": "", "album_id": "60424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2406876_c5597c8885_o.jpg", "secret": "c5597c8885", "media": "photo", "latitude": "0", "id": "2406876", "tags": "view snow bergen dilodec04 dilo"}, {"datetaken": "2004-12-21 17:30:50", "license": "2", "title": "Decadent tulips", "text": "", "album_id": "60424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2406908_1f6190403f_o.jpg", "secret": "1f6190403f", "media": "photo", "latitude": "0", "id": "2406908", "tags": "tulips ripe withered red green dilodec04 dilo"}, {"datetaken": "2004-12-21 17:31:05", "license": "2", "title": "Decadent tulips", "text": "", "album_id": "60424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2406891_b74b50bac7_o.jpg", "secret": "b74b50bac7", "media": "photo", "latitude": "0", "id": "2406891", "tags": "tulips ripe withered red green dilodec04 dilo"}, {"datetaken": "2004-12-21 17:31:44", "license": "2", "title": "View after dark", "text": "", "album_id": "60424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2406863_0bd8573d52_o.jpg", "secret": "0bd8573d52", "media": "photo", "latitude": "0", "id": "2406863", "tags": "view snow bergen night dilodec04 dilo"}, {"datetaken": "2004-12-21 18:37:28", "license": "2", "title": "On the bus to meet Rose", "text": "", "album_id": "60424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2413448_3724daf802_o.jpg", "secret": "3724daf802", "media": "photo", "latitude": "0", "id": "2413448", "tags": "bus bergen gaiatrafikk night dilodec04 dilo"}, {"datetaken": "2004-12-21 19:30:37", "license": "2", "title": "Stained glass window", "text": "", "album_id": "60424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2413443_dc20292bcf_o.jpg", "secret": "dc20292bcf", "media": "photo", "latitude": "0", "id": "2413443", "tags": "skjold kirke bergen window dilodec04 dilo"}, {"datetaken": "2004-12-21 19:52:55", "license": "2", "title": "Julekonsert", "text": "", "album_id": "60424", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2413432_8dc0d3cef6_o.jpg", "secret": "8dc0d3cef6", "media": "photo", "latitude": "0", "id": "2413432", "tags": "skjoldkirke concert singing dilodec04 dilo bergen"}, {"datetaken": "2004-12-28 22:56:48", "license": "2", "title": "Jake Skating Restaurant Row", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2640270_c5ace2d2fb_o.jpg", "secret": "c5ace2d2fb", "media": "photo", "latitude": "0", "id": "2640270", "tags": "cameraphone jake newyork restaurantrow skate"}, {"datetaken": "2004-12-28 22:56:55", "license": "2", "title": "Jake Skating, Restaurant Row", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2640275_80b466e83e_o.jpg", "secret": "80b466e83e", "media": "photo", "latitude": "0", "id": "2640275", "tags": "cameraphone jake newyork restaurantrow skate"}, {"datetaken": "2004-12-28 22:57:07", "license": "2", "title": "Jake, Skateboard, door", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2640282_c8e24feb65_o.jpg", "secret": "c8e24feb65", "media": "photo", "latitude": "0", "id": "2640282", "tags": "cameraphone jake newyork restaurantrow skate"}, {"datetaken": "2004-12-28 22:57:15", "license": "2", "title": "Jake skating in front of church", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2640287_bc9975894d_o.jpg", "secret": "bc9975894d", "media": "photo", "latitude": "0", "id": "2640287", "tags": "cameraphone jake newyork restaurantrow skate"}, {"datetaken": "2004-12-28 22:57:22", "license": "2", "title": "Jake is so fast!", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2640290_224e863096_o.jpg", "secret": "224e863096", "media": "photo", "latitude": "0", "id": "2640290", "tags": "cameraphone jake newyork skate timessquare"}, {"datetaken": "2004-12-28 22:57:29", "license": "2", "title": "Jake, again.", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2640293_fd833956aa_o.jpg", "secret": "fd833956aa", "media": "photo", "latitude": "0", "id": "2640293", "tags": "cameraphone fashion jake newyork skate timessquare"}, {"datetaken": "2004-12-28 22:57:40", "license": "2", "title": "Jake Skating Times Square", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2640305_d39f0d2c66_o.jpg", "secret": "d39f0d2c66", "media": "photo", "latitude": "0", "id": "2640305", "tags": "automotive cameraphone jake newyork skate taxi timessquare"}, {"datetaken": "2004-12-28 22:57:52", "license": "2", "title": "Jake w/ Skate, Times Sq.", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2640319_a04ab4c390_o.jpg", "secret": "a04ab4c390", "media": "photo", "latitude": "0", "id": "2640319", "tags": "cameraphone jake newyork sign skate timessquare"}, {"datetaken": "2004-12-28 22:58:04", "license": "2", "title": "Skating Times Square", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2640338_acb898a2bb_o.jpg", "secret": "acb898a2bb", "media": "photo", "latitude": "0", "id": "2640338", "tags": "cameraphone jake newyork skate timessquare"}, {"datetaken": "2004-12-28 22:58:15", "license": "2", "title": "Me Skating Times Square", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2640349_3e1bb6a042_o.jpg", "secret": "3e1bb6a042", "media": "photo", "latitude": "0", "id": "2640349", "tags": "automotive cameraphone me newyork phil skate taxi timessquare"}, {"datetaken": "2004-12-28 22:58:27", "license": "2", "title": "Jake Skating E. 42nd.", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2640359_901c53bd79_o.jpg", "secret": "901c53bd79", "media": "photo", "latitude": "0", "id": "2640359", "tags": "cameraphone jake newyork skate timessquare"}, {"datetaken": "2004-12-28 22:58:39", "license": "2", "title": "Jake Skating", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2640374_beff3bda8c_o.jpg", "secret": "beff3bda8c", "media": "photo", "latitude": "0", "id": "2640374", "tags": "automotive cameraphone jake newyork skate timessquare"}, {"datetaken": "2004-12-28 22:58:50", "license": "2", "title": "Me, Skate, Library Lion", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2640390_46d775bf98_o.jpg", "secret": "46d775bf98", "media": "photo", "latitude": "0", "id": "2640390", "tags": "6ave cameraphone me newyork phil skate"}, {"datetaken": "2004-12-28 22:59:06", "license": "2", "title": "Just About...", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2640405_7a1c470457_o.jpg", "secret": "7a1c470457", "media": "photo", "latitude": "0", "id": "2640405", "tags": "6ave cameraphone jake newyork skate"}, {"datetaken": "2004-12-28 22:59:29", "license": "2", "title": "to lose it!", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2640431_258698b54b_o.jpg", "secret": "258698b54b", "media": "photo", "latitude": "0", "id": "2640431", "tags": "6ave cameraphone jake newyork skate"}, {"datetaken": "2004-12-28 23:04:54", "license": "2", "title": "Kicking off", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2640629_fbcc616104_o.jpg", "secret": "fbcc616104", "media": "photo", "latitude": "0", "id": "2640629", "tags": "6ave cameraphone jake newyork skate"}, {"datetaken": "2004-12-28 23:05:03", "license": "2", "title": "Over the shoulder", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2640638_893e06ed27_o.jpg", "secret": "893e06ed27", "media": "photo", "latitude": "0", "id": "2640638", "tags": "6ave cameraphone newyork skate"}, {"datetaken": "2004-12-28 23:05:11", "license": "2", "title": "Rough Pavement", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2640646_59258e3ebf_o.jpg", "secret": "59258e3ebf", "media": "photo", "latitude": "0", "id": "2640646", "tags": "6ave cameraphone jake newyork skate"}, {"datetaken": "2004-12-28 23:05:18", "license": "2", "title": "See the snow on Christmas Day?", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2640655_e232f9bdc7_o.jpg", "secret": "e232f9bdc7", "media": "photo", "latitude": "0", "id": "2640655", "tags": "cameraphone jake newyork skate timessquare"}, {"datetaken": "2004-12-28 23:05:25", "license": "2", "title": "Jake on the white line", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2640658_08f0b46e1e_o.jpg", "secret": "08f0b46e1e", "media": "photo", "latitude": "0", "id": "2640658", "tags": "cameraphone jake newyork skate timessquare"}, {"datetaken": "2004-12-28 23:05:33", "license": "2", "title": "Skate Self Portrait", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2640668_7ef2ee9ef7_o.jpg", "secret": "7ef2ee9ef7", "media": "photo", "latitude": "0", "id": "2640668", "tags": "cameraphone me newyork phil skate timessquare"}, {"datetaken": "2004-12-28 23:05:40", "license": "2", "title": "Jake on W. 42nd.", "text": "", "album_id": "66378", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2640673_5d6494679a_o.jpg", "secret": "5d6494679a", "media": "photo", "latitude": "0", "id": "2640673", "tags": "cameraphone jake newyork skate timessquare"}, {"datetaken": "2004-12-11 02:53:36", "license": "3", "title": "Eaglehawk Neck", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2718926_b1ea1d9c91_o.jpg", "secret": "b1ea1d9c91", "media": "photo", "latitude": "0", "id": "2718926", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 02:53:54", "license": "3", "title": "Eaglehawk Neck", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2718979_0dbb48e845_o.jpg", "secret": "0dbb48e845", "media": "photo", "latitude": "0", "id": "2718979", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 04:41:38", "license": "3", "title": "The men's prison - Porth Arthur", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2719097_4e8fcfb5a3_o.jpg", "secret": "4e8fcfb5a3", "media": "photo", "latitude": "0", "id": "2719097", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 04:42:00", "license": "3", "title": "Port Arthur", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2719016_ff8ca839b0_o.jpg", "secret": "ff8ca839b0", "media": "photo", "latitude": "0", "id": "2719016", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 06:04:43", "license": "3", "title": "The men's prison - Port Arthur", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2719114_7cce722a74_o.jpg", "secret": "7cce722a74", "media": "photo", "latitude": "0", "id": "2719114", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 06:05:23", "license": "3", "title": "Tasmania179", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2718971_71aeb759bd_o.jpg", "secret": "71aeb759bd", "media": "photo", "latitude": "0", "id": "2718971", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 06:08:05", "license": "3", "title": "Port Arthur", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2718948_21b988d3f0_o.jpg", "secret": "21b988d3f0", "media": "photo", "latitude": "0", "id": "2718948", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 06:12:46", "license": "3", "title": "Inside a prison cell, men's prison - Porth Arthur", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2719062_017cae63f1_o.jpg", "secret": "017cae63f1", "media": "photo", "latitude": "0", "id": "2719062", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 06:14:26", "license": "3", "title": "Port Arthur", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2718966_fa6c8a043d_o.jpg", "secret": "fa6c8a043d", "media": "photo", "latitude": "0", "id": "2718966", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 06:19:45", "license": "3", "title": "The Hospital - Port Arthur", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2719037_8dac8bea03_o.jpg", "secret": "8dac8bea03", "media": "photo", "latitude": "0", "id": "2719037", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 06:24:40", "license": "3", "title": "The Asylum - Port Arthur", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2718933_a5ff2bccaf_o.jpg", "secret": "a5ff2bccaf", "media": "photo", "latitude": "0", "id": "2718933", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 06:25:37", "license": "3", "title": "The Hospital - Port Arthur", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2719124_9ff9db8b75_o.jpg", "secret": "9ff9db8b75", "media": "photo", "latitude": "0", "id": "2719124", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 06:29:38", "license": "3", "title": "The Asylum - Port Arthur", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2719028_2536bb0732_o.jpg", "secret": "2536bb0732", "media": "photo", "latitude": "0", "id": "2719028", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 06:46:51", "license": "3", "title": "Inside the solitary prison - Port Arthur", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2719135_b9f0fcacf9_o.jpg", "secret": "b9f0fcacf9", "media": "photo", "latitude": "0", "id": "2719135", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 06:48:20", "license": "3", "title": "Chapel at solitary prison - Porth Arthur", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2719088_dffdd04f89_o.jpg", "secret": "dffdd04f89", "media": "photo", "latitude": "0", "id": "2719088", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 06:49:16", "license": "3", "title": "Chapel at solitary prison", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2719010_7d2d57f1d6_o.jpg", "secret": "7d2d57f1d6", "media": "photo", "latitude": "0", "id": "2719010", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 06:57:50", "license": "3", "title": "Church - Port Arthur", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2718956_59460545a0_o.jpg", "secret": "59460545a0", "media": "photo", "latitude": "0", "id": "2718956", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 06:59:00", "license": "3", "title": "Inside the Church - Port Arthur", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2719080_77ed6445ce_o.jpg", "secret": "77ed6445ce", "media": "photo", "latitude": "0", "id": "2719080", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 07:00:53", "license": "3", "title": "Church - Port Arthur", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2718993_d93ad61bd0_o.jpg", "secret": "d93ad61bd0", "media": "photo", "latitude": "0", "id": "2718993", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 07:01:24", "license": "3", "title": "Church Bells", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2718997_74c31517cf_o.jpg", "secret": "74c31517cf", "media": "photo", "latitude": "0", "id": "2718997", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-12-11 07:03:51", "license": "3", "title": "Port Arthur", "text": "", "album_id": "68554", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2719041_c7cc47f92f_o.jpg", "secret": "c7cc47f92f", "media": "photo", "latitude": "0", "id": "2719041", "tags": "australia tasmania portarthur"}, {"datetaken": "2004-09-20 16:00:43", "license": "1", "title": "Barcelona - Top of Las Ramblas", "text": "", "album_id": "76558", "longitude": "2.168598", "url_o": "https://farm1.staticflickr.com/9/12630345_75c10f4f20_o.jpg", "secret": "75c10f4f20", "media": "photo", "latitude": "41.388786", "id": "12630345", "tags": "barcelona spain 2004 barcelones catalunya"}, {"datetaken": "2004-09-20 16:01:09", "license": "1", "title": "Cool building off Las Ramblas Barcelona", "text": "", "album_id": "76558", "longitude": "2.168598", "url_o": "https://farm1.staticflickr.com/9/12630340_cc09102c72_o.jpg", "secret": "cc09102c72", "media": "photo", "latitude": "41.388786", "id": "12630340", "tags": "barcelona spain 2004 barcelones catalunya"}, {"datetaken": "2004-09-20 16:18:10", "license": "1", "title": "Las Ramblas - Barcelona", "text": "", "album_id": "76558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1711494_23242a6663_o.jpg", "secret": "23242a6663", "media": "photo", "latitude": "0", "id": "1711494", "tags": "barcelona animals pets odd life bizarre barcelones catalunya mappr spain"}, {"datetaken": "2004-09-20 16:21:35", "license": "1", "title": "Near the market - Columns", "text": "", "album_id": "76558", "longitude": "2.173919", "url_o": "https://farm1.staticflickr.com/8/12630333_78811a568f_o.jpg", "secret": "78811a568f", "media": "photo", "latitude": "41.381187", "id": "12630333", "tags": "barcelona spain 2004 barcelones catalunya"}, {"datetaken": "2004-09-20 16:24:02", "license": "1", "title": "Great Shop down towards Sea-end of Las Ramblas", "text": "", "album_id": "76558", "longitude": "2.173061", "url_o": "https://farm1.staticflickr.com/10/12630329_32e5916f6b_o.jpg", "secret": "32e5916f6b", "media": "photo", "latitude": "41.378354", "id": "12630329", "tags": "barcelona spain 2004 barcelones catalunya"}, {"datetaken": "2004-09-20 16:55:20", "license": "1", "title": "Christopher Columbus Square Barcelona", "text": "", "album_id": "76558", "longitude": "2.177524", "url_o": "https://farm1.staticflickr.com/8/12630328_640d3d239a_o.jpg", "secret": "640d3d239a", "media": "photo", "latitude": "41.375262", "id": "12630328", "tags": "barcelona spain 2004 barcelones catalunya"}, {"datetaken": "2004-09-20 16:56:59", "license": "1", "title": "Zoom on Cable Car over to Montjuic, Barcelona", "text": "", "album_id": "76558", "longitude": "2.175121", "url_o": "https://farm1.staticflickr.com/11/12630317_3c9328b824_o.jpg", "secret": "3c9328b824", "media": "photo", "latitude": "41.373459", "id": "12630317", "tags": "barcelona spain 2004 barcelones catalunya"}, {"datetaken": "2004-09-21 13:40:08", "license": "1", "title": "Cruise Liner in Barcelona Harbour", "text": "", "album_id": "76558", "longitude": "2.172031", "url_o": "https://farm1.staticflickr.com/8/12630305_e7d2e7259f_o.jpg", "secret": "e7d2e7259f", "media": "photo", "latitude": "41.368177", "id": "12630305", "tags": "barcelona spain 2004 barcelones catalunya"}, {"datetaken": "2004-09-21 13:40:18", "license": "1", "title": "Cruise Liner II in Barcelona Harbour", "text": "", "album_id": "76558", "longitude": "2.172718", "url_o": "https://farm1.staticflickr.com/10/12630299_b8c1a3f03c_o.jpg", "secret": "b8c1a3f03c", "media": "photo", "latitude": "41.370432", "id": "12630299", "tags": "barcelona spain 2004 barcelones catalunya"}, {"datetaken": "2004-09-21 13:41:58", "license": "1", "title": "Zoom on the posh bit of the harbour in Barcelona", "text": "", "album_id": "76558", "longitude": "2.172718", "url_o": "https://farm1.staticflickr.com/10/12630293_fa8ee641d1_o.jpg", "secret": "fa8ee641d1", "media": "photo", "latitude": "41.369337", "id": "12630293", "tags": "barcelona spain 2004 barcelones catalunya"}, {"datetaken": "2004-09-21 13:47:35", "license": "1", "title": "View over to Barcelonetta and the Harbour", "text": "", "album_id": "76558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/12630268_88b4b479aa_o.jpg", "secret": "88b4b479aa", "media": "photo", "latitude": "0", "id": "12630268", "tags": "barcelona spain 2004 barcelones catalunya"}, {"license": "0", "title": "Barcelona Panorama", "farm": "1", "text": "", "album_id": "76558", "secret": "f785084ca8", "longitude": "0", "server": "53", "datetaken": "2004-09-21 13:47:47", "url_m": "https://farm1.staticflickr.com/53/183435424_f785084ca8.jpg", "media": "photo", "latitude": "0", "id": "183435424", "tags": "barcelona panorama montjuic"}, {"datetaken": "2004-09-21 13:48:04", "license": "1", "title": "Sagrada Familia", "text": "", "album_id": "76558", "longitude": "2.169456", "url_o": "https://farm1.staticflickr.com/1/963659_f482d1191f_o.jpg", "secret": "f482d1191f", "media": "photo", "latitude": "41.369143", "id": "963659", "tags": "barcelona sagrada barcelones catalunya mappr spain"}, {"license": "0", "title": "Barcelona - Old and New :-)", "farm": "1", "text": "", "album_id": "76558", "secret": "9d17974844", "longitude": "2.169456", "server": "59", "datetaken": "2004-09-21 13:49:29", "url_m": "https://farm1.staticflickr.com/59/194649906_9d17974844.jpg", "media": "photo", "latitude": "41.369143", "id": "194649906", "tags": "barcelona tag3 taggedout tag2 cityscape tag1 cathedral gothic gherkin montjuic oldandnew gothiccatherdral"}, {"datetaken": "2004-09-21 14:37:39", "license": "1", "title": "Old Roman Walls in Gothic Quarter of Barcelona", "text": "", "album_id": "76558", "longitude": "2.177352", "url_o": "https://farm1.staticflickr.com/9/12630254_5ae70232f2_o.jpg", "secret": "5ae70232f2", "media": "photo", "latitude": "41.388529", "id": "12630254", "tags": "barcelona spain 2004 barcelones catalunya catedral geolat413844 geolong21759 romanwalls"}, {"datetaken": "2004-09-21 14:43:46", "license": "1", "title": "Santa Maria del Pi", "text": "", "album_id": "76558", "longitude": "2.177352", "url_o": "https://farm1.staticflickr.com/11/12630246_844e63d8a2_o.jpg", "secret": "844e63d8a2", "media": "photo", "latitude": "41.388529", "id": "12630246", "tags": "barcelona spain 2004 barcelones catalunya santamariadelpi geolat41383 geolong2182"}, {"datetaken": "2004-09-21 14:43:59", "license": "5", "title": "age & symmetry", "text": "", "album_id": "76558", "longitude": "2.173919", "url_o": "https://farm1.staticflickr.com/2/2279466_37bc327b32_o.jpg", "secret": "37bc327b32", "media": "photo", "latitude": "41.387627", "id": "2279466", "tags": "barcelona window ornate church symmetry square circle barcelones catalunya mappr spain santamariadelpi geolat41383 geolong2182 topv111"}, {"datetaken": "2004-09-21 14:51:09", "license": "1", "title": "Wonderful Market off Las Ramblas", "text": "", "album_id": "76558", "longitude": "2.172203", "url_o": "https://farm1.staticflickr.com/9/12630236_2b6307e41b_o.jpg", "secret": "2b6307e41b", "media": "photo", "latitude": "41.378869", "id": "12630236", "tags": "barcelona spain 2004 barcelones catalunya"}, {"datetaken": "2004-09-21 15:25:03", "license": "1", "title": "Stone & Nature", "text": "", "album_id": "76558", "longitude": "2.174263", "url_o": "https://farm1.staticflickr.com/1/2463208_e37a00ef5a_o.jpg", "secret": "e37a00ef5a", "media": "photo", "latitude": "41.383120", "id": "2463208", "tags": "gothic catherdral barcelona cloisters nature architecture barcelones catalunya mappr spain"}, {"datetaken": "2004-09-21 15:27:59", "license": "1", "title": "The 13 white geese in the gothic cathedral cloisters", "text": "", "album_id": "76558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/12630221_9b22159784_o.jpg", "secret": "9b22159784", "media": "photo", "latitude": "0", "id": "12630221", "tags": "barcelona spain 2004 barcelones catalunya"}, {"license": "0", "title": "In the cloisters of Cathedral La Seu - Barcelona", "farm": "1", "text": "", "album_id": "76558", "secret": "18cb04094f", "longitude": "2.174263", "server": "2", "datetaken": "2004-09-21 15:29:11", "url_m": "https://farm1.staticflickr.com/2/2197047_18cb04094f.jpg", "media": "photo", "latitude": "41.383120", "id": "2197047", "tags": "barcelona light nature fountain beautiful topv111 spain cathedral gothic catalunya mappr barcelones naturepix"}, {"license": "0", "title": "Candles in the Gothic Cathedral in Barcelona", "farm": "1", "text": "", "album_id": "76558", "secret": "9605bd1cc3", "longitude": "2.174263", "server": "2", "datetaken": "2004-09-21 15:31:41", "url_m": "https://farm1.staticflickr.com/2/2021867_9605bd1cc3.jpg", "media": "photo", "latitude": "41.383120", "id": "2021867", "tags": "barcelona 2004 topv111 510fav spain glow candle cathedral gothic candgleam catalunya mappr barcelones"}, {"datetaken": "2004-09-22 14:04:52", "license": "1", "title": "Barcelonetta Beach", "text": "", "album_id": "76558", "longitude": "2.195720", "url_o": "https://farm1.staticflickr.com/9/12630211_b34861ae99_o.jpg", "secret": "b34861ae99", "media": "photo", "latitude": "41.383184", "id": "12630211", "tags": "barcelona spain 2004 barcelones catalunya"}, {"datetaken": "2004-09-22 15:19:00", "license": "1", "title": "Gaudi on Passeig de Gracia Barcelona", "text": "", "album_id": "76558", "longitude": "2.162590", "url_o": "https://farm1.staticflickr.com/1/963658_c2e92e906f_o.jpg", "secret": "c2e92e906f", "media": "photo", "latitude": "41.392650", "id": "963658", "tags": "barcelona 15fav casa cool spain gaudi catalunya casabatll\u00f3 mappr barcelones batll\u00f3"}, {"datetaken": "2004-09-22 15:19:17", "license": "1", "title": "Dragon's Scales", "text": "", "album_id": "76558", "longitude": "2.162590", "url_o": "https://farm1.staticflickr.com/2/1344218_6fbc1c2f24_o.jpg", "secret": "6fbc1c2f24", "media": "photo", "latitude": "41.392650", "id": "1344218", "tags": "barcelona art topv111 casa spain gaudi catalunya casabatll\u00f3 mappr barcelones batllo builings"}, {"datetaken": "2004-09-22 15:27:28", "license": "1", "title": "Gaudi on Passieg de Gracia Barcelona", "text": "", "album_id": "76558", "longitude": "2.162418", "url_o": "https://farm1.staticflickr.com/9/12630206_7df4a85cc0_o.jpg", "secret": "7df4a85cc0", "media": "photo", "latitude": "41.396256", "id": "12630206", "tags": "barcelona spain 2004 gaudi catalunya barcelones barcelon\u00e9s modernisme casamil\u00e0 lapedrera geolat41395 geolong21616 fa\u00e7ada fa\u00e7ade"}, {"datetaken": "2004-09-22 15:27:37", "license": "1", "title": "Gaudi on Passieg de Gracia Barcelona II", "text": "", "album_id": "76558", "longitude": "2.162418", "url_o": "https://farm1.staticflickr.com/9/12630199_7b60f10da9_o.jpg", "secret": "7b60f10da9", "media": "photo", "latitude": "41.396256", "id": "12630199", "tags": "barcelona spain 2004 catalunya gaudi barcelones barcelon\u00e9s modernisme casamil\u00e0 lapedrera geolat41395 geolong21616 fa\u00e7ada fa\u00e7ade"}, {"datetaken": "2005-01-10 19:52:02", "license": "2", "title": "palmacourtyard", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3204983_2110481a4d_o.jpg", "secret": "2110481a4d", "media": "photo", "latitude": "0", "id": "3204983", "tags": "mallorca palma"}, {"datetaken": "2005-01-10 19:52:02", "license": "2", "title": "streetart", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3204976_b6155e9ede_o.jpg", "secret": "b6155e9ede", "media": "photo", "latitude": "0", "id": "3204976", "tags": "mallorca palma"}, {"datetaken": "2005-01-10 19:52:02", "license": "2", "title": "rooftops", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3204975_57d46a6e86_o.jpg", "secret": "57d46a6e86", "media": "photo", "latitude": "0", "id": "3204975", "tags": "mallorca palma"}, {"datetaken": "2005-01-10 19:52:02", "license": "2", "title": "harbourfront", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3204966_2eb0736a91_o.jpg", "secret": "2eb0736a91", "media": "photo", "latitude": "0", "id": "3204966", "tags": "mallorca palma"}, {"datetaken": "2005-01-10 19:52:02", "license": "2", "title": "cathedrallights", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3204964_7cb4269ff7_o.jpg", "secret": "7cb4269ff7", "media": "photo", "latitude": "0", "id": "3204964", "tags": "mallorca palma"}, {"datetaken": "2005-01-10 19:59:42", "license": "2", "title": "placamajor", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3205345_771397f3c9_o.jpg", "secret": "771397f3c9", "media": "photo", "latitude": "0", "id": "3205345", "tags": "mallorca palma"}, {"datetaken": "2005-01-10 21:07:14", "license": "2", "title": "cuberpath", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3207623_efb12a4678_o.jpg", "secret": "efb12a4678", "media": "photo", "latitude": "0", "id": "3207623", "tags": "mallorca cuber walk"}, {"datetaken": "2005-01-10 21:07:14", "license": "2", "title": "clouds", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3207622_623d42888e_o.jpg", "secret": "623d42888e", "media": "photo", "latitude": "0", "id": "3207622", "tags": "mallorca portdesoller walk"}, {"datetaken": "2005-01-10 21:07:14", "license": "2", "title": "badia_de_pollenca", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3207615_1e4eb68aef_o.jpg", "secret": "1e4eb68aef", "media": "photo", "latitude": "0", "id": "3207615", "tags": "mallorca peninsula hike"}, {"datetaken": "2005-01-10 21:07:14", "license": "2", "title": "aboveport", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3207614_3cc7cd35d7_o.jpg", "secret": "3cc7cd35d7", "media": "photo", "latitude": "0", "id": "3207614", "tags": "mallorca portdesoller walk"}, {"datetaken": "2005-01-10 21:07:14", "license": "2", "title": "aliabovecuber", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3207612_b52b3487f5_o.jpg", "secret": "b52b3487f5", "media": "photo", "latitude": "0", "id": "3207612", "tags": "mallorca cuberreservoir walk"}, {"datetaken": "2005-01-10 21:07:14", "license": "2", "title": "abovedeia", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3207611_280c0a2c3a_o.jpg", "secret": "280c0a2c3a", "media": "photo", "latitude": "0", "id": "3207611", "tags": "mallorca deia walk"}, {"datetaken": "2005-01-10 21:18:01", "license": "1", "title": "soller church", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3207899_e4dc52247b_o.jpg", "secret": "e4dc52247b", "media": "photo", "latitude": "0", "id": "3207899", "tags": "newyearseve2004 soller"}, {"datetaken": "2005-01-10 21:18:01", "license": "2", "title": "ses puntes", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3207897_b7504425c0_o.jpg", "secret": "b7504425c0", "media": "photo", "latitude": "0", "id": "3207897", "tags": "mallorca walk"}, {"datetaken": "2005-01-10 21:18:01", "license": "2", "title": "robin on olive", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3207896_9396dba34e_o.jpg", "secret": "9396dba34e", "media": "photo", "latitude": "0", "id": "3207896", "tags": "mallorca walk"}, {"datetaken": "2005-01-10 21:18:01", "license": "2", "title": "illa dragonera", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3207893_f022ecb1bb_o.jpg", "secret": "f022ecb1bb", "media": "photo", "latitude": "0", "id": "3207893", "tags": "mallorca walk"}, {"datetaken": "2005-01-10 21:18:01", "license": "2", "title": "penyaroja", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3207892_b6db608966_o.jpg", "secret": "b6db608966", "media": "photo", "latitude": "0", "id": "3207892", "tags": "mallorca walk"}, {"datetaken": "2005-01-10 21:18:01", "license": "2", "title": "robabovecuber", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/3207891_6f6f2408c1_o.jpg", "secret": "6f6f2408c1", "media": "photo", "latitude": "0", "id": "3207891", "tags": "mallorca walk cuber"}, {"datetaken": "2005-01-10 21:35:17", "license": "1", "title": "soller horse", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/3208452_788d8d115c_o.jpg", "secret": "788d8d115c", "media": "photo", "latitude": "0", "id": "3208452", "tags": "mallorca soller"}, {"datetaken": "2005-01-10 21:35:17", "license": "1", "title": "sollerview", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3208453_1d8230b329_o.jpg", "secret": "1d8230b329", "media": "photo", "latitude": "0", "id": "3208453", "tags": "mallorca soller boxingday2004 snow"}, {"datetaken": "2005-01-10 21:38:19", "license": "1", "title": "sollermoon", "text": "", "album_id": "80381", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/3208569_098fdd7e45_o.jpg", "secret": "098fdd7e45", "media": "photo", "latitude": "0", "id": "3208569", "tags": "mallorca soller"}, {"datetaken": "2007-08-11 16:04:27", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372126730", "longitude": "-122.907707", "url_o": "https://farm2.staticflickr.com/1298/1086052386_9d5efa5959_o.jpg", "secret": "c39b3bfde2", "media": "photo", "latitude": "46.984001", "id": "1086052386", "tags": "2004"}, {"datetaken": "2007-08-11 16:04:28", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372126730", "longitude": "-122.907707", "url_o": "https://farm2.staticflickr.com/1023/1086052516_a7ba72b70d_o.jpg", "secret": "da038977bb", "media": "photo", "latitude": "46.984001", "id": "1086052516", "tags": "2004"}, {"datetaken": "2007-08-11 16:04:28", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372126730", "longitude": "-122.907707", "url_o": "https://farm2.staticflickr.com/1264/1085191223_c980a5774b_o.jpg", "secret": "7e5bac74f7", "media": "photo", "latitude": "46.984001", "id": "1085191223", "tags": "2004"}, {"datetaken": "2007-08-11 16:04:29", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372126730", "longitude": "-122.907707", "url_o": "https://farm2.staticflickr.com/1306/1086052748_02184cbfb0_o.jpg", "secret": "b8e827fdee", "media": "photo", "latitude": "46.984001", "id": "1086052748", "tags": "2004"}, {"datetaken": "2007-08-11 16:04:30", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372126730", "longitude": "-122.907707", "url_o": "https://farm2.staticflickr.com/1104/1086052870_6a9a79740b_o.jpg", "secret": "6b569424b8", "media": "photo", "latitude": "46.984001", "id": "1086052870", "tags": "2004"}, {"datetaken": "2007-08-11 16:04:31", "license": "4", "title": "Oregon Museum", "text": "", "album_id": "72157601372126730", "longitude": "-117.821652", "url_o": "https://farm2.staticflickr.com/1286/1085191591_1bbb7f6e5d_o.jpg", "secret": "8dbb53e0cf", "media": "photo", "latitude": "44.782246", "id": "1085191591", "tags": "2004"}, {"datetaken": "2007-08-11 16:04:31", "license": "4", "title": "Oregon Museum", "text": "", "album_id": "72157601372126730", "longitude": "-117.821652", "url_o": "https://farm2.staticflickr.com/1388/1085191703_1e89b86765_o.jpg", "secret": "bcc17a10d4", "media": "photo", "latitude": "44.782246", "id": "1085191703", "tags": "2004"}, {"datetaken": "2007-08-11 16:04:32", "license": "4", "title": "Oregon Museum", "text": "", "album_id": "72157601372126730", "longitude": "-117.821652", "url_o": "https://farm2.staticflickr.com/1104/1086053240_dd534a36fb_o.jpg", "secret": "9bfcd3b9c7", "media": "photo", "latitude": "44.782246", "id": "1086053240", "tags": "2004"}, {"datetaken": "2007-08-11 16:04:34", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372126730", "longitude": "-122.907707", "url_o": "https://farm2.staticflickr.com/1418/1086053478_c0c3e886a9_o.jpg", "secret": "29824694f3", "media": "photo", "latitude": "46.984001", "id": "1086053478", "tags": "2004"}, {"datetaken": "2007-08-11 16:04:37", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372126730", "longitude": "-122.907707", "url_o": "https://farm2.staticflickr.com/1310/1085192457_ac70d7ed9d_o.jpg", "secret": "083e231082", "media": "photo", "latitude": "46.984001", "id": "1085192457", "tags": "2004"}, {"datetaken": "2007-08-11 16:04:38", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372126730", "longitude": "-122.907707", "url_o": "https://farm2.staticflickr.com/1056/1086054048_3e90587c42_o.jpg", "secret": "de936b4262", "media": "photo", "latitude": "46.984001", "id": "1086054048", "tags": "2004"}, {"datetaken": "2007-08-11 16:04:39", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372126730", "longitude": "-122.907707", "url_o": "https://farm2.staticflickr.com/1226/1085192699_f876c6a6a0_o.jpg", "secret": "6e5d126b86", "media": "photo", "latitude": "46.984001", "id": "1085192699", "tags": "2004"}, {"datetaken": "2007-08-11 16:04:39", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372126730", "longitude": "-122.907707", "url_o": "https://farm2.staticflickr.com/1392/1086054282_bedcd7e4f2_o.jpg", "secret": "4cf2fa2298", "media": "photo", "latitude": "46.984001", "id": "1086054282", "tags": "2004"}, {"datetaken": "2007-08-11 16:04:40", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372126730", "longitude": "-122.907707", "url_o": "https://farm2.staticflickr.com/1427/1086054412_a6b089843b_o.jpg", "secret": "a90760f30d", "media": "photo", "latitude": "46.984001", "id": "1086054412", "tags": "2004"}, {"datetaken": "2007-08-11 16:04:41", "license": "4", "title": "Washington", "text": "", "album_id": "72157601372126730", "longitude": "-122.907707", "url_o": "https://farm2.staticflickr.com/1421/1085193085_b4bf299741_o.jpg", "secret": "a6b3de4fc3", "media": "photo", "latitude": "46.984001", "id": "1085193085", "tags": "2004"}, {"datetaken": "2007-08-11 16:04:42", "license": "4", "title": "St. Luke's Lutheran Church, Mount Vernon, Washington", "text": "", "album_id": "72157601372126730", "longitude": "-122.322677", "url_o": "https://farm2.staticflickr.com/1006/1086054650_f0557a15e7_o.jpg", "secret": "7f46e8af50", "media": "photo", "latitude": "48.406482", "id": "1086054650", "tags": "2004"}, {"datetaken": "2007-08-11 16:04:43", "license": "4", "title": "Emily, David and Bryan", "text": "", "album_id": "72157601372126730", "longitude": "-122.097862", "url_o": "https://farm2.staticflickr.com/1437/1085193319_f9ed7b6e01_o.jpg", "secret": "7befe2e41b", "media": "photo", "latitude": "47.455539", "id": "1085193319", "tags": "david 2004"}, {"datetaken": "2007-08-11 16:04:44", "license": "4", "title": "Emily and David", "text": "", "album_id": "72157601372126730", "longitude": "-122.097862", "url_o": "https://farm2.staticflickr.com/1054/1085193461_be16f1faf1_o.jpg", "secret": "db9588e9fd", "media": "photo", "latitude": "47.455539", "id": "1085193461", "tags": "2004"}, {"datetaken": "2007-08-11 16:04:44", "license": "4", "title": "Emily and David", "text": "", "album_id": "72157601372126730", "longitude": "-122.097862", "url_o": "https://farm2.staticflickr.com/1239/1086054994_8a48c6d1b4_o.jpg", "secret": "7aecbdd10f", "media": "photo", "latitude": "47.455539", "id": "1086054994", "tags": "david 2004"}, {"datetaken": "2007-08-11 16:04:45", "license": "4", "title": "Nathan", "text": "", "album_id": "72157601372126730", "longitude": "-122.702568", "url_o": "https://farm2.staticflickr.com/1059/1086055114_65a3e5e349_o.jpg", "secret": "bccd0b37a8", "media": "photo", "latitude": "47.636039", "id": "1086055114", "tags": "2005"}, {"datetaken": "2007-08-11 16:04:46", "license": "4", "title": "St. Luke Lutheran Church, Mount Vernon, Washington", "text": "", "album_id": "72157601372126730", "longitude": "-122.322677", "url_o": "https://farm2.staticflickr.com/1394/1085193817_962bf77bff_o.jpg", "secret": "833b6fec3c", "media": "photo", "latitude": "48.406482", "id": "1085193817", "tags": "2005"}, {"datetaken": "2005-02-06 10:56:18", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4386992_65fa72632d_o.jpg", "secret": "65fa72632d", "media": "photo", "latitude": "0", "id": "4386992", "tags": ""}, {"datetaken": "2005-02-06 10:56:54", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4386998_7e6f84c89b_o.jpg", "secret": "7e6f84c89b", "media": "photo", "latitude": "0", "id": "4386998", "tags": ""}, {"datetaken": "2005-02-06 11:09:01", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4387005_40eb48c3f2_o.jpg", "secret": "40eb48c3f2", "media": "photo", "latitude": "0", "id": "4387005", "tags": "archbishopfiorenza"}, {"datetaken": "2005-02-06 11:09:15", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4387018_e861461dc3_o.jpg", "secret": "e861461dc3", "media": "photo", "latitude": "0", "id": "4387018", "tags": ""}, {"datetaken": "2005-02-06 11:33:29", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4387037_ab840f03a5_o.jpg", "secret": "ab840f03a5", "media": "photo", "latitude": "0", "id": "4387037", "tags": "archbishopfiorenza"}, {"datetaken": "2005-02-06 11:33:49", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4387046_5992a794aa_o.jpg", "secret": "5992a794aa", "media": "photo", "latitude": "0", "id": "4387046", "tags": "archbishopfiorenza"}, {"datetaken": "2005-02-06 11:56:58", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4387057_47c9c888e1_o.jpg", "secret": "47c9c888e1", "media": "photo", "latitude": "0", "id": "4387057", "tags": ""}, {"datetaken": "2005-02-06 11:57:24", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4387060_3bc4c72b48_o.jpg", "secret": "3bc4c72b48", "media": "photo", "latitude": "0", "id": "4387060", "tags": "archbishopfiorenza"}, {"datetaken": "2005-02-06 11:58:20", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4387065_6d9f21249d_o.jpg", "secret": "6d9f21249d", "media": "photo", "latitude": "0", "id": "4387065", "tags": ""}, {"datetaken": "2005-02-06 11:58:26", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4387077_106b79e2fe_o.jpg", "secret": "106b79e2fe", "media": "photo", "latitude": "0", "id": "4387077", "tags": ""}, {"datetaken": "2005-02-06 12:00:00", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4387086_a514130ee2_o.jpg", "secret": "a514130ee2", "media": "photo", "latitude": "0", "id": "4387086", "tags": "weikei"}, {"datetaken": "2005-02-06 12:00:47", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4387091_9f3649dcb7_o.jpg", "secret": "9f3649dcb7", "media": "photo", "latitude": "0", "id": "4387091", "tags": "archbishopfiorenza"}, {"datetaken": "2005-02-06 12:01:51", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4387105_1ba6099138_o.jpg", "secret": "1ba6099138", "media": "photo", "latitude": "0", "id": "4387105", "tags": "archbishopfiorenza"}, {"datetaken": "2005-02-06 12:02:19", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4387114_415a757058_o.jpg", "secret": "415a757058", "media": "photo", "latitude": "0", "id": "4387114", "tags": "frzee archbishopfiorenza"}, {"datetaken": "2005-02-06 12:04:31", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4387115_5f8a18169e_o.jpg", "secret": "5f8a18169e", "media": "photo", "latitude": "0", "id": "4387115", "tags": ""}, {"datetaken": "2005-02-06 12:05:44", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4387119_053a1e5798_o.jpg", "secret": "053a1e5798", "media": "photo", "latitude": "0", "id": "4387119", "tags": ""}, {"datetaken": "2005-02-06 12:06:28", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4387126_4d7709a341_o.jpg", "secret": "4d7709a341", "media": "photo", "latitude": "0", "id": "4387126", "tags": ""}, {"datetaken": "2005-02-06 12:07:09", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4387132_3d348cd371_o.jpg", "secret": "3d348cd371", "media": "photo", "latitude": "0", "id": "4387132", "tags": ""}, {"datetaken": "2005-02-06 12:07:32", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4387138_0462f77a6d_o.jpg", "secret": "0462f77a6d", "media": "photo", "latitude": "0", "id": "4387138", "tags": "unclepaul"}, {"datetaken": "2005-02-06 12:17:38", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4387142_98787b2b5a_o.jpg", "secret": "98787b2b5a", "media": "photo", "latitude": "0", "id": "4387142", "tags": ""}, {"datetaken": "2005-02-06 12:19:04", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4387149_37580166df_o.jpg", "secret": "37580166df", "media": "photo", "latitude": "0", "id": "4387149", "tags": ""}, {"datetaken": "2005-02-06 13:15:55", "license": "4", "title": "dedication lunch at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4387152_4c3c2c0f9a_o.jpg", "secret": "4c3c2c0f9a", "media": "photo", "latitude": "0", "id": "4387152", "tags": "jerilyn wannie ignatius michael reuben"}, {"datetaken": "2005-02-06 13:38:26", "license": "4", "title": "dedication mass at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4444095_e09008b876_o.jpg", "secret": "e09008b876", "media": "photo", "latitude": "0", "id": "4444095", "tags": "matt janice cecil"}, {"datetaken": "2005-02-06 13:42:13", "license": "4", "title": "dedication lunch at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4387163_034822ea4f_o.jpg", "secret": "034822ea4f", "media": "photo", "latitude": "0", "id": "4387163", "tags": ""}, {"datetaken": "2005-02-06 13:42:46", "license": "4", "title": "dedication lunch at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4387177_11effbb9bc_o.jpg", "secret": "11effbb9bc", "media": "photo", "latitude": "0", "id": "4387177", "tags": "ashley davin carol unclepatrick frzee frpang"}, {"datetaken": "2005-02-06 13:42:53", "license": "4", "title": "dedication lunch at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4387179_3fd57f887b_o.jpg", "secret": "3fd57f887b", "media": "photo", "latitude": "0", "id": "4387179", "tags": ""}, {"datetaken": "2005-02-06 13:43:05", "license": "4", "title": "dedication lunch at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4387187_92bea6513b_o.jpg", "secret": "92bea6513b", "media": "photo", "latitude": "0", "id": "4387187", "tags": ""}, {"datetaken": "2005-02-06 13:48:13", "license": "4", "title": "dedication lunch at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4387198_f5860771a2_o.jpg", "secret": "f5860771a2", "media": "photo", "latitude": "0", "id": "4387198", "tags": "daniel mary tommy"}, {"datetaken": "2005-02-06 13:48:40", "license": "4", "title": "dedication lunch at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4387207_fd6bbbb09b_o.jpg", "secret": "fd6bbbb09b", "media": "photo", "latitude": "0", "id": "4387207", "tags": "daniel ivan mary tommy"}, {"datetaken": "2005-02-06 13:50:50", "license": "4", "title": "dedication lunch at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4387211_d398e4fd97_o.jpg", "secret": "d398e4fd97", "media": "photo", "latitude": "0", "id": "4387211", "tags": "ivan thomas"}, {"datetaken": "2005-02-06 13:51:58", "license": "4", "title": "dedication lunch at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4387221_9277a72ee1_o.jpg", "secret": "9277a72ee1", "media": "photo", "latitude": "0", "id": "4387221", "tags": "ivan marie"}, {"datetaken": "2005-02-06 13:53:03", "license": "4", "title": "dedication lunch at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4387232_c795c1e5d3_o.jpg", "secret": "c795c1e5d3", "media": "photo", "latitude": "0", "id": "4387232", "tags": "maria ivan"}, {"datetaken": "2005-02-06 13:53:51", "license": "4", "title": "dedication lunch at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4387246_f44553af8d_o.jpg", "secret": "f44553af8d", "media": "photo", "latitude": "0", "id": "4387246", "tags": "claire ivan"}, {"datetaken": "2005-02-06 13:57:32", "license": "4", "title": "dedication lunch at ACC", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4387257_0ae13ff353_o.jpg", "secret": "0ae13ff353", "media": "photo", "latitude": "0", "id": "4387257", "tags": "weikei ivan"}, {"datetaken": "2005-02-06 14:29:33", "license": "4", "title": "IMG_0990", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4387268_911be79a79_o.jpg", "secret": "911be79a79", "media": "photo", "latitude": "0", "id": "4387268", "tags": "wannie ivan"}, {"datetaken": "2005-02-06 14:30:36", "license": "4", "title": "IMG_0991", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4387272_604572e14f_o.jpg", "secret": "604572e14f", "media": "photo", "latitude": "0", "id": "4387272", "tags": "ivan jerilyn"}, {"datetaken": "2005-02-06 15:16:08", "license": "4", "title": "IMG_0994", "text": "", "album_id": "1787892", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4387283_01613565bf_o.jpg", "secret": "01613565bf", "media": "photo", "latitude": "0", "id": "4387283", "tags": ""}, {"datetaken": "2005-02-03 01:43:50", "license": "3", "title": "The tower where Joan of Arc was held prisoner", "text": "", "album_id": "72157601220425876", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1030/1012268804_d46f241780_o.jpg", "secret": "d9d25fd228", "media": "photo", "latitude": "0", "id": "1012268804", "tags": "france tower rouen"}, {"datetaken": "2005-02-03 01:59:05", "license": "3", "title": "Todd in spiral staircase in Joan tower", "text": "", "album_id": "72157601220425876", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1277/1012268988_92c0bb1588_o.jpg", "secret": "0fade0b153", "media": "photo", "latitude": "0", "id": "1012268988", "tags": ""}, {"datetaken": "2005-02-03 02:24:56", "license": "3", "title": "Fast food in Rouen", "text": "", "album_id": "72157601220425876", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1209/1012270766_4237e5befc_o.jpg", "secret": "3181cdf186", "media": "photo", "latitude": "0", "id": "1012270766", "tags": ""}, {"datetaken": "2005-02-03 02:50:59", "license": "3", "title": "Altar in Rouen cathedral", "text": "", "album_id": "72157601220425876", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1241/1012271528_b6358f9196_o.jpg", "secret": "bb84869e75", "media": "photo", "latitude": "0", "id": "1012271528", "tags": "france cathedral rouen"}, {"datetaken": "2005-02-03 03:06:24", "license": "3", "title": "Sue in Rouen", "text": "", "album_id": "72157601220425876", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1103/1011410421_cdeb10dc0e_o.jpg", "secret": "31999414a9", "media": "photo", "latitude": "0", "id": "1011410421", "tags": "france rouen"}, {"datetaken": "2005-02-03 03:16:28", "license": "3", "title": "Colorful building in Rouen", "text": "", "album_id": "72157601220425876", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1167/1012269498_247984a783_o.jpg", "secret": "3fb450c443", "media": "photo", "latitude": "0", "id": "1012269498", "tags": "france rouen"}, {"datetaken": "2005-02-03 03:40:53", "license": "3", "title": "Sue enjoys lunch and Normandy cider", "text": "", "album_id": "72157601220425876", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1271/1012269758_df521b9fc5_o.jpg", "secret": "abd58047c1", "media": "photo", "latitude": "0", "id": "1012269758", "tags": "food france rouen"}, {"datetaken": "2005-02-03 04:23:10", "license": "3", "title": "Creperie where we had a great lunch", "text": "", "album_id": "72157601220425876", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1038/1011410901_1b19701284_o.jpg", "secret": "a4eae5e595", "media": "photo", "latitude": "0", "id": "1011410901", "tags": "france rouen"}, {"datetaken": "2005-02-03 04:46:03", "license": "3", "title": "Leaning building in Rouen", "text": "", "album_id": "72157601220425876", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1213/1012269332_234afc54db_o.jpg", "secret": "c6593311c5", "media": "photo", "latitude": "0", "id": "1012269332", "tags": "france rouen"}, {"datetaken": "2005-02-03 04:53:10", "license": "3", "title": "The porcupine is a symbol of Rouen", "text": "", "album_id": "72157601220425876", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1189/1012270276_3419f19ffe_o.jpg", "secret": "5a8108625b", "media": "photo", "latitude": "0", "id": "1012270276", "tags": "france rouen"}, {"datetaken": "2005-02-03 04:57:25", "license": "3", "title": "Bar Tabac sign in Rouen", "text": "", "album_id": "72157601220425876", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1401/1012270446_fdb92a24a3_o.jpg", "secret": "26452350ff", "media": "photo", "latitude": "0", "id": "1012270446", "tags": ""}, {"datetaken": "2005-02-03 05:00:58", "license": "3", "title": "Modern church at the spot Joan was burned", "text": "", "album_id": "72157601220425876", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1226/1011411159_4f734ea69b_o.jpg", "secret": "2af40fb6ec", "media": "photo", "latitude": "0", "id": "1011411159", "tags": "france rouen"}, {"datetaken": "2005-02-03 05:12:03", "license": "3", "title": "Statue of Joan of Arc in church", "text": "", "album_id": "72157601220425876", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1022/1011411309_38e4ffc3dd_o.jpg", "secret": "c42c307dc5", "media": "photo", "latitude": "0", "id": "1011411309", "tags": ""}, {"datetaken": "2005-02-03 06:17:48", "license": "3", "title": "Che lives even in Rouen", "text": "", "album_id": "72157601220425876", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1065/1012270588_636397bcf1_o.jpg", "secret": "9cb25e1dfb", "media": "photo", "latitude": "0", "id": "1012270588", "tags": "che"}, {"datetaken": "2005-02-03 06:40:28", "license": "3", "title": "World War II damage in central Rouen", "text": "", "album_id": "72157601220425876", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1241/1012270952_940765423d_o.jpg", "secret": "c14ce02b00", "media": "photo", "latitude": "0", "id": "1012270952", "tags": "france war rouen"}, {"datetaken": "2005-02-03 07:27:03", "license": "3", "title": "Richard the Lion Heart in his tomb in Rouen cathedral", "text": "", "album_id": "72157601220425876", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1170/1012271290_91d5ad67ed_o.jpg", "secret": "5082020263", "media": "photo", "latitude": "0", "id": "1012271290", "tags": "france rouen"}, {"datetaken": "2005-02-03 07:52:00", "license": "3", "title": "Gargoyles atop Rouen Cathedral", "text": "", "album_id": "72157601220425876", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1027/1012271104_bf0c1588eb_o.jpg", "secret": "09de6e4be7", "media": "photo", "latitude": "0", "id": "1012271104", "tags": "france rouen"}, {"datetaken": "2002-08-24 04:22:32", "license": "6", "title": "A tower that's part of the town wall", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4821404_bb04d6527d_o.jpg", "secret": "bb04d6527d", "media": "photo", "latitude": "0", "id": "4821404", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 04:23:27", "license": "6", "title": "Train station", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821416_db46d73326_o.jpg", "secret": "db46d73326", "media": "photo", "latitude": "0", "id": "4821416", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 04:24:38", "license": "6", "title": "Chainsaw statue", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4821430_4c25c72275_o.jpg", "secret": "4c25c72275", "media": "photo", "latitude": "0", "id": "4821430", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 04:43:05", "license": "6", "title": "Just the guys", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821455_dcfc4bfd45_o.jpg", "secret": "dcfc4bfd45", "media": "photo", "latitude": "0", "id": "4821455", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 04:43:54", "license": "6", "title": "Gothic church", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821459_669c963b1c_o.jpg", "secret": "669c963b1c", "media": "photo", "latitude": "0", "id": "4821459", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 04:43:59", "license": "6", "title": "Gothic church", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4821471_616006806e_o.jpg", "secret": "616006806e", "media": "photo", "latitude": "0", "id": "4821471", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 04:47:50", "license": "6", "title": "Beautiful river", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4821487_47cbfd5b53_o.jpg", "secret": "47cbfd5b53", "media": "photo", "latitude": "0", "id": "4821487", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 04:51:24", "license": "6", "title": "Weird statue", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821494_05d9a61f44_o.jpg", "secret": "05d9a61f44", "media": "photo", "latitude": "0", "id": "4821494", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 04:53:57", "license": "6", "title": "DCP_0329", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4821498_c64fd80071_o.jpg", "secret": "c64fd80071", "media": "photo", "latitude": "0", "id": "4821498", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 04:54:16", "license": "6", "title": "DCP_0330", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4821506_308eee967e_o.jpg", "secret": "308eee967e", "media": "photo", "latitude": "0", "id": "4821506", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 04:56:07", "license": "6", "title": "DCP_0331", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821525_1fc51378aa_o.jpg", "secret": "1fc51378aa", "media": "photo", "latitude": "0", "id": "4821525", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 04:57:58", "license": "6", "title": "DCP_0332", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4821536_10f7de02f8_o.jpg", "secret": "10f7de02f8", "media": "photo", "latitude": "0", "id": "4821536", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 05:08:26", "license": "6", "title": "Bunny art exhibit", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4821543_99616fee7d_o.jpg", "secret": "99616fee7d", "media": "photo", "latitude": "0", "id": "4821543", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 05:12:00", "license": "6", "title": "Kid peeing in snow", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4821547_381ee68793_o.jpg", "secret": "381ee68793", "media": "photo", "latitude": "0", "id": "4821547", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 05:22:51", "license": "6", "title": "DCP_0335", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4821552_aee741fc6b_o.jpg", "secret": "aee741fc6b", "media": "photo", "latitude": "0", "id": "4821552", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 05:25:31", "license": "6", "title": "DCP_0336", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4821558_eb64c639a2_o.jpg", "secret": "eb64c639a2", "media": "photo", "latitude": "0", "id": "4821558", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 05:25:36", "license": "6", "title": "DCP_0337", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821563_ff18fea06e_o.jpg", "secret": "ff18fea06e", "media": "photo", "latitude": "0", "id": "4821563", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 05:37:19", "license": "6", "title": "DCP_0338", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4821568_c853362f83_o.jpg", "secret": "c853362f83", "media": "photo", "latitude": "0", "id": "4821568", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 05:39:43", "license": "6", "title": "DCP_0339", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821585_0f5b25505a_o.jpg", "secret": "0f5b25505a", "media": "photo", "latitude": "0", "id": "4821585", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 05:49:48", "license": "6", "title": "DCP_0340", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821627_d076670ca8_o.jpg", "secret": "d076670ca8", "media": "photo", "latitude": "0", "id": "4821627", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 05:50:11", "license": "6", "title": "DCP_0341", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821645_eb9ba7a75a_o.jpg", "secret": "eb9ba7a75a", "media": "photo", "latitude": "0", "id": "4821645", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 05:50:28", "license": "6", "title": "DCP_0342", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821664_84f9189787_o.jpg", "secret": "84f9189787", "media": "photo", "latitude": "0", "id": "4821664", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 05:52:04", "license": "6", "title": "DCP_0343", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821677_5a98473775_o.jpg", "secret": "5a98473775", "media": "photo", "latitude": "0", "id": "4821677", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 05:52:54", "license": "6", "title": "DCP_0344", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821700_3fa22a9b39_o.jpg", "secret": "3fa22a9b39", "media": "photo", "latitude": "0", "id": "4821700", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 05:58:33", "license": "6", "title": "DCP_0345", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4821713_9f7cc04b82_o.jpg", "secret": "9f7cc04b82", "media": "photo", "latitude": "0", "id": "4821713", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 06:00:19", "license": "6", "title": "DCP_0346", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4821731_ee306ed441_o.jpg", "secret": "ee306ed441", "media": "photo", "latitude": "0", "id": "4821731", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 06:04:49", "license": "6", "title": "DCP_0347", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4821747_990630a868_o.jpg", "secret": "990630a868", "media": "photo", "latitude": "0", "id": "4821747", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 06:05:26", "license": "6", "title": "DCP_0348", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4821750_9aa21293c9_o.jpg", "secret": "9aa21293c9", "media": "photo", "latitude": "0", "id": "4821750", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 06:14:43", "license": "6", "title": "DCP_0349", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821760_0ad590d132_o.jpg", "secret": "0ad590d132", "media": "photo", "latitude": "0", "id": "4821760", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 06:15:48", "license": "6", "title": "DCP_0350", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4821775_db34c386d5_o.jpg", "secret": "db34c386d5", "media": "photo", "latitude": "0", "id": "4821775", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 06:15:59", "license": "6", "title": "DCP_0351", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4821795_11eec1d435_o.jpg", "secret": "11eec1d435", "media": "photo", "latitude": "0", "id": "4821795", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 06:17:14", "license": "6", "title": "DCP_0352", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821819_e4160464f3_o.jpg", "secret": "e4160464f3", "media": "photo", "latitude": "0", "id": "4821819", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 06:18:29", "license": "6", "title": "DCP_0353", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4821838_0ea0cc81bb_o.jpg", "secret": "0ea0cc81bb", "media": "photo", "latitude": "0", "id": "4821838", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 06:21:12", "license": "6", "title": "DCP_0354", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4821849_c62ef3d947_o.jpg", "secret": "c62ef3d947", "media": "photo", "latitude": "0", "id": "4821849", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 06:21:26", "license": "6", "title": "DCP_0355", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821856_97fba647de_o.jpg", "secret": "97fba647de", "media": "photo", "latitude": "0", "id": "4821856", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 06:23:08", "license": "6", "title": "DCP_0356", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821880_51a0609dad_o.jpg", "secret": "51a0609dad", "media": "photo", "latitude": "0", "id": "4821880", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 06:54:56", "license": "6", "title": "DCP_0357", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4821888_93601e07e7_o.jpg", "secret": "93601e07e7", "media": "photo", "latitude": "0", "id": "4821888", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 08:10:55", "license": "6", "title": "Smart car", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821899_37753892de_o.jpg", "secret": "37753892de", "media": "photo", "latitude": "0", "id": "4821899", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 08:15:44", "license": "6", "title": "DCP_0359", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4821906_a8931a4b3d_o.jpg", "secret": "a8931a4b3d", "media": "photo", "latitude": "0", "id": "4821906", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 08:19:18", "license": "6", "title": "DCP_0360", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821918_f58638ebd3_o.jpg", "secret": "f58638ebd3", "media": "photo", "latitude": "0", "id": "4821918", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 08:19:51", "license": "6", "title": "DCP_0361", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4821934_68772d72fd_o.jpg", "secret": "68772d72fd", "media": "photo", "latitude": "0", "id": "4821934", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 08:20:01", "license": "6", "title": "DCP_0362", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4821951_527cf7e3b8_o.jpg", "secret": "527cf7e3b8", "media": "photo", "latitude": "0", "id": "4821951", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 09:36:35", "license": "6", "title": "DCP_0363", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4821964_bdd3e83b32_o.jpg", "secret": "bdd3e83b32", "media": "photo", "latitude": "0", "id": "4821964", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 10:11:55", "license": "6", "title": "DCP_0364", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4821972_e9e08ad913_o.jpg", "secret": "e9e08ad913", "media": "photo", "latitude": "0", "id": "4821972", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 10:14:32", "license": "6", "title": "DCP_0365", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4821997_966b422cae_o.jpg", "secret": "966b422cae", "media": "photo", "latitude": "0", "id": "4821997", "tags": "germany nuremburg"}, {"datetaken": "2002-08-24 13:49:38", "license": "6", "title": "Weird ad", "text": "", "album_id": "121386", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4821397_a076bc622b_o.jpg", "secret": "a076bc622b", "media": "photo", "latitude": "0", "id": "4821397", "tags": "germany nuremburg"}, {"datetaken": "2005-03-02 01:18:22", "license": "1", "title": "hotel", "text": "", "album_id": "143508", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5723333_33b5b11bec_o.jpg", "secret": "33b5b11bec", "media": "photo", "latitude": "0", "id": "5723333", "tags": "maringa parana"}, {"datetaken": "2005-03-02 01:18:58", "license": "1", "title": "igreja2", "text": "", "album_id": "143508", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5723373_f07ac32c97_o.jpg", "secret": "f07ac32c97", "media": "photo", "latitude": "0", "id": "5723373", "tags": "maringa parana church architecture"}, {"datetaken": "2005-03-02 01:19:46", "license": "1", "title": "igreja", "text": "", "album_id": "143508", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5723434_6116a7eeea_o.jpg", "secret": "6116a7eeea", "media": "photo", "latitude": "0", "id": "5723434", "tags": "maringa parana"}, {"datetaken": "2005-03-02 01:20:03", "license": "1", "title": "mirante", "text": "", "album_id": "143508", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5723443_29a1cac428_o.jpg", "secret": "29a1cac428", "media": "photo", "latitude": "0", "id": "5723443", "tags": "maringa parana"}, {"datetaken": "2005-03-02 01:20:34", "license": "1", "title": "parede", "text": "", "album_id": "143508", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5723466_2af75d44bd_o.jpg", "secret": "2af75d44bd", "media": "photo", "latitude": "0", "id": "5723466", "tags": "maringa parana"}, {"datetaken": "2005-03-02 01:20:58", "license": "1", "title": "uvas", "text": "", "album_id": "143508", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5723493_87b3508038_o.jpg", "secret": "87b3508038", "media": "photo", "latitude": "0", "id": "5723493", "tags": "maringa parana"}, {"datetaken": "2005-03-02 01:21:28", "license": "1", "title": "vista", "text": "", "album_id": "143508", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/5723534_ed1bbb6002_o.jpg", "secret": "ed1bbb6002", "media": "photo", "latitude": "0", "id": "5723534", "tags": "maringa parana"}, {"datetaken": "2005-03-02 01:22:13", "license": "1", "title": "vitral", "text": "", "album_id": "143508", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5723582_86d53178fc_o.jpg", "secret": "86d53178fc", "media": "photo", "latitude": "0", "id": "5723582", "tags": "maringa parana"}, {"datetaken": "2005-03-02 01:22:43", "license": "1", "title": "the dead people on the wall", "text": "", "album_id": "143508", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5723606_a4c8a8c2f7_o.jpg", "secret": "a4c8a8c2f7", "media": "photo", "latitude": "0", "id": "5723606", "tags": "maringa parana"}, {"datetaken": "2005-03-02 01:23:01", "license": "1", "title": "carro", "text": "", "album_id": "143508", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5723635_b059d15e60_o.jpg", "secret": "b059d15e60", "media": "photo", "latitude": "0", "id": "5723635", "tags": "maringa parana"}, {"datetaken": "2005-03-02 01:23:16", "license": "1", "title": "inside the church", "text": "", "album_id": "143508", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5723654_fc1a19dde3_o.jpg", "secret": "fc1a19dde3", "media": "photo", "latitude": "0", "id": "5723654", "tags": "maringa parana"}, {"datetaken": "2005-03-02 01:23:20", "license": "1", "title": "inside the church again", "text": "", "album_id": "143508", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5723655_f93fecfe44_o.jpg", "secret": "f93fecfe44", "media": "photo", "latitude": "0", "id": "5723655", "tags": "maringa parana"}, {"datetaken": "2005-03-02 01:23:38", "license": "1", "title": "diziminho", "text": "", "album_id": "143508", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5723680_5df26e2d10_o.jpg", "secret": "5df26e2d10", "media": "photo", "latitude": "0", "id": "5723680", "tags": "maringa parana"}, {"datetaken": "2005-03-02 01:23:50", "license": "1", "title": "escadaria", "text": "", "album_id": "143508", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5723703_9a07fb0222_o.jpg", "secret": "9a07fb0222", "media": "photo", "latitude": "0", "id": "5723703", "tags": "maringa parana stairs church"}, {"datetaken": "2005-03-02 01:24:04", "license": "1", "title": "open road back home", "text": "", "album_id": "143508", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/5723724_8e7f2277eb_o.jpg", "secret": "8e7f2277eb", "media": "photo", "latitude": "0", "id": "5723724", "tags": "maringa parana"}, {"datetaken": "2005-03-02 01:24:26", "license": "1", "title": "three hours behind this!", "text": "", "album_id": "143508", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/5723762_79b2def692_o.jpg", "secret": "79b2def692", "media": "photo", "latitude": "0", "id": "5723762", "tags": "maringa parana"}, {"datetaken": "2008-05-03 23:34:32", "license": "4", "title": "IMG_5371", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3008/2465932551_d0b36e8645_o.jpg", "secret": "b48dd71001", "media": "photo", "latitude": "0", "id": "2465932551", "tags": "food orange jason pancakes oregon portland restaurant mirror cafe ben juice danish scandinavian caryn broder"}, {"datetaken": "2008-05-03 23:34:39", "license": "4", "title": "IMG_5372", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2303/2465933647_4e34db6ec7_o.jpg", "secret": "d6d7118dd9", "media": "photo", "latitude": "0", "id": "2465933647", "tags": "food orange jason pancakes oregon portland restaurant mirror cafe ben juice danish scandinavian caryn broder"}, {"datetaken": "2008-05-03 23:34:53", "license": "4", "title": "IMG_5374", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2325/2465934669_5c8d46c6a3_o.jpg", "secret": "c99d908581", "media": "photo", "latitude": "0", "id": "2465934669", "tags": "carnival food orange jason bike pancakes oregon portland de outside restaurant mirror spring cafe ben eating juice sunday fair bbq riding danish cinco mayo rides scandinavian caryn broder barbequing"}, {"datetaken": "2008-05-03 23:38:39", "license": "4", "title": "IMG_5375", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2116/2466763246_fe57b61bcd_o.jpg", "secret": "cc309ff773", "media": "photo", "latitude": "0", "id": "2466763246", "tags": "food orange jason pancakes oregon portland restaurant mirror cafe ben juice danish scandinavian caryn broder"}, {"datetaken": "2008-05-03 23:40:02", "license": "4", "title": "IMG_5376", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2227/2466764410_da31cd2637_o.jpg", "secret": "5a81d93f92", "media": "photo", "latitude": "0", "id": "2466764410", "tags": "food orange jason pancakes oregon portland restaurant mirror cafe ben juice danish scandinavian caryn broder"}, {"datetaken": "2008-05-03 23:40:29", "license": "4", "title": "IMG_5378", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2211/2465938189_406b499db2_o.jpg", "secret": "a60c19dbfd", "media": "photo", "latitude": "0", "id": "2465938189", "tags": "food orange jason pancakes oregon portland restaurant mirror cafe ben juice danish scandinavian caryn broder"}, {"datetaken": "2008-05-03 23:40:36", "license": "4", "title": "IMG_5379", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3247/2466767286_8198dc0f29_o.jpg", "secret": "ed0ffb9383", "media": "photo", "latitude": "0", "id": "2466767286", "tags": "food orange jason pancakes oregon portland restaurant mirror cafe ben juice danish scandinavian caryn broder"}, {"datetaken": "2008-05-03 23:40:46", "license": "4", "title": "IMG_5380", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3011/2466768690_8ebd6df198_o.jpg", "secret": "9fdbfbcd56", "media": "photo", "latitude": "0", "id": "2466768690", "tags": "carnival food orange jason bike pancakes oregon portland de outside restaurant mirror spring cafe ben eating juice sunday fair bbq riding danish cinco mayo rides scandinavian caryn broder barbequing"}, {"datetaken": "2008-05-03 23:41:05", "license": "4", "title": "IMG_5383", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3019/2465945019_cb3e26aa52_o.jpg", "secret": "b6b65d5a48", "media": "photo", "latitude": "0", "id": "2465945019", "tags": "carnival food orange jason bike pancakes oregon portland de outside restaurant mirror spring cafe ben eating juice sunday fair bbq riding danish cinco mayo rides scandinavian caryn broder barbequing"}, {"datetaken": "2008-05-03 23:41:09", "license": "4", "title": "IMG_5384", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3105/2466773946_f104f505c4_o.jpg", "secret": "481723be62", "media": "photo", "latitude": "0", "id": "2466773946", "tags": "carnival food orange jason bike pancakes oregon portland de outside restaurant mirror spring cafe ben eating juice sunday fair bbq riding danish cinco mayo rides scandinavian caryn broder barbequing"}, {"datetaken": "2008-05-03 23:41:23", "license": "4", "title": "IMG_5387", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2297/2466775466_e92e41b485_o.jpg", "secret": "f09c79463a", "media": "photo", "latitude": "0", "id": "2466775466", "tags": "carnival food orange jason bike pancakes oregon portland de outside restaurant mirror spring cafe ben eating juice sunday fair bbq riding danish cinco mayo rides scandinavian caryn broder barbequing"}, {"datetaken": "2008-05-03 23:42:00", "license": "4", "title": "IMG_5390", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2111/2466777174_994ac9efa8_o.jpg", "secret": "038f4a3e85", "media": "photo", "latitude": "0", "id": "2466777174", "tags": "carnival food orange jason bike pancakes oregon portland de outside restaurant mirror spring cafe ben eating juice sunday fair bbq riding danish cinco mayo rides scandinavian caryn broder barbequing"}, {"datetaken": "2008-05-03 23:42:15", "license": "4", "title": "IMG_5393", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2150/2465952809_2fcbfdb5e7_o.jpg", "secret": "c029cb25b6", "media": "photo", "latitude": "0", "id": "2465952809", "tags": "carnival food orange jason bike pancakes oregon portland de outside restaurant mirror spring cafe ben eating juice sunday fair bbq riding danish cinco mayo rides scandinavian caryn broder barbequing"}, {"datetaken": "2008-05-03 23:42:31", "license": "4", "title": "IMG_5396", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2110/2466782256_bfd68b2896_o.jpg", "secret": "30922db1fe", "media": "photo", "latitude": "0", "id": "2466782256", "tags": "carnival food orange jason bike pancakes oregon portland de outside restaurant mirror spring cafe ben eating juice sunday fair bbq riding danish cinco mayo rides scandinavian caryn broder barbequing"}, {"datetaken": "2008-05-03 23:43:15", "license": "4", "title": "IMG_5397", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2292/2466783880_172e524313_o.jpg", "secret": "b6a9104a77", "media": "photo", "latitude": "0", "id": "2466783880", "tags": "food orange jason pancakes oregon portland restaurant mirror cafe ben juice danish scandinavian caryn broder"}, {"datetaken": "2008-05-03 23:46:25", "license": "4", "title": "125 - Sunday", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2166/2465957897_ef27c809b0_o.jpg", "secret": "f2b423d889", "media": "photo", "latitude": "0", "id": "2465957897", "tags": "carnival food orange jason bike pancakes oregon portland de outside restaurant mirror spring cafe ben eating juice sunday fair bbq riding danish cinco mayo rides scandinavian caryn broder barbequing"}, {"datetaken": "2008-05-03 23:48:34", "license": "4", "title": "broder", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2389/2465959193_a2f18367c2_o.jpg", "secret": "aedde20617", "media": "photo", "latitude": "0", "id": "2465959193", "tags": "carnival food orange jason bike pancakes oregon portland de outside restaurant mirror spring cafe ben eating juice sunday fair bbq riding danish cinco mayo rides scandinavian caryn broder barbequing"}, {"datetaken": "2008-05-03 23:49:23", "license": "4", "title": "IMG_5410", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2079/2465961027_870849bd1c_o.jpg", "secret": "4f62b54bc1", "media": "photo", "latitude": "0", "id": "2465961027", "tags": "carnival food orange jason bike pancakes oregon portland de outside restaurant mirror spring cafe ben eating juice sunday fair bbq riding danish cinco mayo rides scandinavian caryn broder barbequing"}, {"datetaken": "2008-05-04 00:10:56", "license": "4", "title": "Ben Loved These", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3165/2465962961_c630575973_o.jpg", "secret": "7b35905dcc", "media": "photo", "latitude": "0", "id": "2465962961", "tags": "carnival food orange jason bike pancakes oregon portland de outside restaurant mirror spring cafe ben eating juice sunday fair bbq riding danish cinco mayo rides scandinavian caryn broder barbequing"}, {"datetaken": "2008-05-04 00:11:09", "license": "4", "title": "Danish Pancakes", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2236/2466792308_d4cb304da8_o.jpg", "secret": "fe7f014753", "media": "photo", "latitude": "0", "id": "2466792308", "tags": "carnival food orange jason bike pancakes oregon portland de outside restaurant mirror spring cafe ben eating juice sunday fair bbq riding danish cinco mayo rides scandinavian caryn broder barbequing"}, {"datetaken": "2008-05-04 00:11:14", "license": "4", "title": "IMG_5413", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2021/2465966287_1af60f45b2_o.jpg", "secret": "0b2e425b28", "media": "photo", "latitude": "0", "id": "2465966287", "tags": "carnival food orange jason bike pancakes oregon portland de outside restaurant mirror spring cafe ben eating juice sunday fair bbq riding danish cinco mayo rides scandinavian caryn broder barbequing"}, {"datetaken": "2008-05-04 00:11:22", "license": "4", "title": "Broder - Scandinavian Food", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3039/2465968097_760f0df43b_o.jpg", "secret": "15fe0854ca", "media": "photo", "latitude": "0", "id": "2465968097", "tags": "carnival food orange jason bike pancakes oregon portland de outside restaurant mirror spring cafe ben eating juice sunday fair bbq riding danish cinco mayo rides scandinavian caryn broder barbequing"}, {"datetaken": "2008-05-04 00:11:32", "license": "4", "title": "Autumn Board", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3166/2465969845_8f9342f1d6_o.jpg", "secret": "73518a8ece", "media": "photo", "latitude": "0", "id": "2465969845", "tags": "carnival food orange jason bike pancakes oregon portland de outside restaurant mirror spring cafe ben eating juice sunday fair bbq riding danish cinco mayo rides scandinavian caryn broder barbequing"}, {"datetaken": "2008-05-04 00:24:22", "license": "4", "title": "IMG_5418", "text": "", "album_id": "72157604887097332", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2006/2466820008_499381edc2_o.jpg", "secret": "835a8e3c20", "media": "photo", "latitude": "0", "id": "2466820008", "tags": "food orange jason pancakes oregon portland restaurant mirror cafe ben juice danish scandinavian caryn broder"}, {"datetaken": "2007-05-05 10:39:19", "license": "3", "title": "", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/485804963_75d1425a95_o.jpg", "secret": "df907fe458", "media": "photo", "latitude": "0", "id": "485804963", "tags": "tea oj brekkie cherryjam toat 24hoursofflickr 24hourflickr flickr24"}, {"datetaken": "2007-05-05 14:32:22", "license": "3", "title": "rinse", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/209/485804971_2499f8763f_o.jpg", "secret": "4b12d52b46", "media": "photo", "latitude": "0", "id": "485804971", "tags": "red veg cherrytomatoes 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 15:14:11", "license": "3", "title": "", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/193/485805013_6223856783_o.jpg", "secret": "5e9da25cd8", "media": "photo", "latitude": "0", "id": "485805013", "tags": "clouds open bluesky cumulus z redbarn 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 15:20:40", "license": "3", "title": "", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/485857178_d52e9e24ba_o.jpg", "secret": "b5b43b9ccf", "media": "photo", "latitude": "0", "id": "485857178", "tags": "blue roof sky tree clouds 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 15:24:53", "license": "3", "title": "", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/226/485805021_169b886376_o.jpg", "secret": "8ec187e5fa", "media": "photo", "latitude": "0", "id": "485805021", "tags": "grass contrast spiderwort tradescantia 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 15:40:50", "license": "3", "title": "", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/217/485805029_49f5eb9f41_o.jpg", "secret": "405c9d8e5b", "media": "photo", "latitude": "0", "id": "485805029", "tags": "bluesky neighbors myhood 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 15:41:48", "license": "3", "title": "day 263 above", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/222/485804961_688edf57ed_o.jpg", "secret": "30e12b0e4a", "media": "photo", "latitude": "0", "id": "485804961", "tags": "trees woman selfportrait me female outside cloudy sunny blueskies budding 247 day263 selfies 365days 24hoursofflickr flickr24 263365"}, {"datetaken": "2007-05-05 15:53:36", "license": "3", "title": "", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/485803460_6664e38937_o.jpg", "secret": "8239cd3351", "media": "photo", "latitude": "0", "id": "485803460", "tags": "cat ginger kitty purr ginge littlepunk 24hoursofflickr flickr24 tinystinkymonkey"}, {"datetaken": "2007-05-05 15:55:14", "license": "3", "title": "", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/485857210_01d4fdf4a8_o.jpg", "secret": "2bac38ba4a", "media": "photo", "latitude": "0", "id": "485857210", "tags": "sunglasses table sunny shades mundane 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 16:06:52", "license": "3", "title": "", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/210/485857190_b9dba6839c_o.jpg", "secret": "7141234282", "media": "photo", "latitude": "0", "id": "485857190", "tags": "blue sky silhouette clouds cumulus 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 16:24:10", "license": "3", "title": "", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/485857196_5326652911_o.jpg", "secret": "af1279bc28", "media": "photo", "latitude": "0", "id": "485857196", "tags": "tree birch 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 17:01:19", "license": "3", "title": "soon to be roasted veg", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/229/485880110_d40a7f1f66_o.jpg", "secret": "f262cc6b89", "media": "photo", "latitude": "0", "id": "485880110", "tags": "dinner potatoes onions peppers oliveoil veg 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 17:31:54", "license": "3", "title": "", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/190/485803462_912004eec0_o.jpg", "secret": "2d2b558356", "media": "photo", "latitude": "0", "id": "485803462", "tags": "plants green curled hosta furled 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 17:33:26", "license": "3", "title": "the wall", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/485880126_cf9ca98784_o.jpg", "secret": "486bd5e630", "media": "photo", "latitude": "0", "id": "485880126", "tags": "stone moss earth stonewall 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 17:34:04", "license": "3", "title": "bee balm", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/226/485880130_b0368639a7_o.jpg", "secret": "366f3696bd", "media": "photo", "latitude": "0", "id": "485880130", "tags": "plant macro garden weed earth beebalm monarda 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 17:35:46", "license": "3", "title": "", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/485880128_613c61cf46_o.jpg", "secret": "34c282cd13", "media": "photo", "latitude": "0", "id": "485880128", "tags": "table board plank picnictable sunbleached 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 17:50:15", "license": "3", "title": "", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/485803468_30c8794395_o.jpg", "secret": "9c27458e6e", "media": "photo", "latitude": "0", "id": "485803468", "tags": "brown beige shed woodpile 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 17:58:25", "license": "3", "title": "standing there", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/485803478_0a8b5bf7df_o.jpg", "secret": "30fa962be7", "media": "photo", "latitude": "0", "id": "485803478", "tags": "feet me angle standingthere raisedbed 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 19:34:57", "license": "3", "title": "", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/485823804_12d74da270_o.jpg", "secret": "5402d48d21", "media": "photo", "latitude": "0", "id": "485823804", "tags": "trees sunset tree 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 19:38:54", "license": "3", "title": "", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/485880134_d48f741b3d_o.jpg", "secret": "7a57c8b34d", "media": "photo", "latitude": "0", "id": "485880134", "tags": "dusk redbarn pinkish 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 19:44:44", "license": "3", "title": "", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/195/485823814_c429a3fb03_o.jpg", "secret": "dbb1a27115", "media": "photo", "latitude": "0", "id": "485823814", "tags": "shadow ice water glass glow 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 20:28:29", "license": "3", "title": "", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/485823826_34ec4c357d_o.jpg", "secret": "0b3a9f08b8", "media": "photo", "latitude": "0", "id": "485823826", "tags": "cat ginger kitty purr ginge littlepunk 24hoursofflickr flickr24 tinystinkymonkey"}, {"datetaken": "2007-05-05 20:56:53", "license": "3", "title": "", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/213/485823828_d4d8aef2f6_o.jpg", "secret": "278bc7219a", "media": "photo", "latitude": "0", "id": "485823828", "tags": "orange ice beverage salt squaredcircle margarita rim 24hoursofflickr flickr24"}, {"datetaken": "2007-05-05 20:59:07", "license": "3", "title": "salt", "text": "", "album_id": "72157600181308617", "longitude": "0", "url_o": "https://farm1.staticflickr.com/206/485880144_9927f0204d_o.jpg", "secret": "4d0c6d9938", "media": "photo", "latitude": "0", "id": "485880144", "tags": "dish salt round mineral kosher element 24hoursofflickr 24hourflickr flickr24"}, {"datetaken": "2007-05-04 11:03:26", "license": "4", "title": "Alpental local", "text": "", "album_id": "72157600181396082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/224/485828284_5aa7d5d0e7_o.jpg", "secret": "e6e056e829", "media": "photo", "latitude": "0", "id": "485828284", "tags": "snowboarding skiing alpental cincodemayo seattlest 5may2007"}, {"datetaken": "2007-05-04 11:05:44", "license": "4", "title": "The Greencoats of Alpental", "text": "", "album_id": "72157600181396082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/485858829_8e140a8a29_o.jpg", "secret": "f42b2f8c2c", "media": "photo", "latitude": "0", "id": "485858829", "tags": "snowboarding skiing alpental cincodemayo seattlest 5may2007"}, {"datetaken": "2007-05-04 11:07:35", "license": "4", "title": "That is hot", "text": "", "album_id": "72157600181396082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/222/485828442_cc102afc3c_o.jpg", "secret": "0e52e4005f", "media": "photo", "latitude": "0", "id": "485828442", "tags": "snowboarding skiing alpental cincodemayo seattlest 5may2007"}, {"datetaken": "2007-05-04 11:07:39", "license": "4", "title": "Cinco de Mayo, Circa 1988", "text": "", "album_id": "72157600181396082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/485828480_e7217bcecc_o.jpg", "secret": "086b202b2e", "media": "photo", "latitude": "0", "id": "485828480", "tags": "snowboarding skiing alpental cincodemayo seattlest 5may2007"}, {"datetaken": "2007-05-04 11:38:17", "license": "4", "title": "Don't think this guy was dressed up", "text": "", "album_id": "72157600181396082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/198/485828546_7a1420d928_o.jpg", "secret": "5c39eeb35d", "media": "photo", "latitude": "0", "id": "485828546", "tags": "snowboarding skiing alpental cincodemayo seattlest 5may2007"}, {"datetaken": "2007-05-04 12:13:04", "license": "4", "title": "Alpental clown", "text": "", "album_id": "72157600181396082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/215/485859023_874737201d_o.jpg", "secret": "637ce859d1", "media": "photo", "latitude": "0", "id": "485859023", "tags": "snowboarding skiing alpental cincodemayo seattlest 5may2007"}, {"datetaken": "2007-05-04 12:13:05", "license": "4", "title": "Gallager on skis", "text": "", "album_id": "72157600181396082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/225/485828656_47e8666ca4_o.jpg", "secret": "9ec4e32713", "media": "photo", "latitude": "0", "id": "485828656", "tags": "snowboarding skiing alpental cincodemayo seattlest 5may2007"}, {"datetaken": "2007-05-04 12:14:17", "license": "4", "title": "One tequila, two...", "text": "", "album_id": "72157600181396082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/485828704_d76642920a_o.jpg", "secret": "94625f6ab1", "media": "photo", "latitude": "0", "id": "485828704", "tags": "snowboarding skiing alpental cincodemayo seattlest 5may2007"}, {"datetaken": "2007-05-04 12:28:29", "license": "4", "title": "Fat Bat and Jolly Green Giant", "text": "", "album_id": "72157600181396082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/226/485828764_6595fdb233_o.jpg", "secret": "8bf1883616", "media": "photo", "latitude": "0", "id": "485828764", "tags": "snowboarding skiing alpental cincodemayo seattlest 5may2007"}, {"datetaken": "2007-05-04 12:28:36", "license": "4", "title": "Jolly Green", "text": "", "album_id": "72157600181396082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/485828806_ecf4c5d5df_o.jpg", "secret": "a654f071e9", "media": "photo", "latitude": "0", "id": "485828806", "tags": "snowboarding skiing alpental cincodemayo seattlest 5may2007"}, {"datetaken": "2007-05-04 12:28:45", "license": "4", "title": "Needs a theme song", "text": "", "album_id": "72157600181396082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/485859263_5814a698ca_o.jpg", "secret": "cc73ad53f9", "media": "photo", "latitude": "0", "id": "485859263", "tags": "snowboarding skiing alpental cincodemayo seattlest 5may2007"}, {"datetaken": "2007-05-04 12:28:57", "license": "4", "title": "Jolly Green", "text": "", "album_id": "72157600181396082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/208/485828902_15b887ce64_o.jpg", "secret": "64e81c8aa7", "media": "photo", "latitude": "0", "id": "485828902", "tags": "snowboarding skiing alpental cincodemayo seattlest 5may2007"}, {"datetaken": "2007-05-04 13:16:39", "license": "4", "title": "Yeah, this guy again", "text": "", "album_id": "72157600181396082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/191/485828956_41cd349ea1_o.jpg", "secret": "294a592f25", "media": "photo", "latitude": "0", "id": "485828956", "tags": "snowboarding skiing alpental cincodemayo seattlest 5may2007"}, {"datetaken": "2007-05-04 13:17:26", "license": "4", "title": "Someone got the wrong memo", "text": "", "album_id": "72157600181396082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/215/485829006_ca17a5322c_o.jpg", "secret": "96f72e2758", "media": "photo", "latitude": "0", "id": "485829006", "tags": "snowboarding skiing alpental cincodemayo seattlest 5may2007"}, {"datetaken": "2007-05-04 13:38:05", "license": "4", "title": "Bonus points for the moustache", "text": "", "album_id": "72157600181396082", "longitude": "0", "url_o": "https://farm1.staticflickr.com/204/485829066_ae1e534283_o.jpg", "secret": "26209f30de", "media": "photo", "latitude": "0", "id": "485829066", "tags": "snowboarding skiing alpental cincodemayo seattlest 5may2007"}, {"datetaken": "2009-05-05 18:10:03", "license": "3", "title": "Cinco de Mayo Downtown Block Party", "text": "", "album_id": "72157617669726441", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3542/3506360698_5813e81003_o.jpg", "secret": "3c1c7140d9", "media": "photo", "latitude": "0", "id": "3506360698", "tags": "friends austin buddies gabe 5demayo 20mo nilsons may09 shillingtons cincodemayo2009 5demayodowntownblockparty"}, {"datetaken": "2009-05-05 18:15:51", "license": "3", "title": "Cinco de Mayo Downtown Block Party", "text": "", "album_id": "72157617669726441", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3334/3506361880_2de5860c5e_o.jpg", "secret": "e8309098b1", "media": "photo", "latitude": "0", "id": "3506361880", "tags": "friends austin buddies gabe 5demayo 20mo nilsons may09 shillingtons cincodemayo2009 5demayodowntownblockparty"}, {"datetaken": "2009-05-05 18:18:58", "license": "3", "title": "Cinco de Mayo Downtown Block Party", "text": "", "album_id": "72157617669726441", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3334/3506365424_17aa1a0284_o.jpg", "secret": "34a99b0c62", "media": "photo", "latitude": "0", "id": "3506365424", "tags": "friends austin buddies gabe 5demayo 20mo nilsons may09 shillingtons cincodemayo2009 5demayodowntownblockparty"}, {"datetaken": "2009-05-05 18:19:02", "license": "3", "title": "Cinco de Mayo Downtown Block Party", "text": "", "album_id": "72157617669726441", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3349/3506366610_27af53e0c3_o.jpg", "secret": "87a749756b", "media": "photo", "latitude": "0", "id": "3506366610", "tags": "friends austin buddies gabe 5demayo 20mo nilsons may09 shillingtons cincodemayo2009 5demayodowntownblockparty"}, {"datetaken": "2009-05-05 18:31:36", "license": "3", "title": "Cinco de Mayo Downtown Block Party", "text": "", "album_id": "72157617669726441", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3380/3505558493_3fe6b4f45d_o.jpg", "secret": "00241ea9ee", "media": "photo", "latitude": "0", "id": "3505558493", "tags": "friends austin buddies gabe 5demayo 20mo nilsons may09 shillingtons cincodemayo2009 5demayodowntownblockparty"}, {"datetaken": "2009-05-05 18:34:37", "license": "3", "title": "Cinco de Mayo Downtown Block Party", "text": "", "album_id": "72157617669726441", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3603/3505559729_75bb5db133_o.jpg", "secret": "34925e2a4f", "media": "photo", "latitude": "0", "id": "3505559729", "tags": "friends austin buddies gabe 5demayo 20mo nilsons may09 shillingtons cincodemayo2009 5demayodowntownblockparty"}, {"datetaken": "2009-05-05 18:36:36", "license": "3", "title": "Cinco de Mayo Downtown Block Party", "text": "", "album_id": "72157617669726441", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3649/3506370724_687d00d929_o.jpg", "secret": "3aa1aaa0bc", "media": "photo", "latitude": "0", "id": "3506370724", "tags": "friends austin buddies gabe 5demayo 20mo nilsons may09 shillingtons cincodemayo2009 5demayodowntownblockparty"}, {"datetaken": "2009-05-05 18:39:35", "license": "3", "title": "Cinco de Mayo Downtown Block Party", "text": "", "album_id": "72157617669726441", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3593/3506377248_50950652b6_o.jpg", "secret": "e951bee676", "media": "photo", "latitude": "0", "id": "3506377248", "tags": "friends austin buddies gabe 5demayo 20mo nilsons may09 shillingtons cincodemayo2009 5demayodowntownblockparty"}, {"datetaken": "2009-05-05 18:42:45", "license": "3", "title": "Cinco de Mayo Downtown Block Party", "text": "", "album_id": "72157617669726441", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3394/3505568707_f538a830dd_o.jpg", "secret": "a34df311bb", "media": "photo", "latitude": "0", "id": "3505568707", "tags": "friends austin buddies gabe 5demayo 20mo nilsons may09 shillingtons cincodemayo2009 5demayodowntownblockparty"}, {"datetaken": "2009-05-05 18:53:17", "license": "3", "title": "Cinco de Mayo Downtown Block Party", "text": "", "album_id": "72157617669726441", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3411/3505566553_19c11b9df8_o.jpg", "secret": "2ef99ece03", "media": "video", "latitude": "0", "id": "3505566553", "tags": "friends austin buddies gabe 5demayo 20mo nilsons may09 shillingtons cincodemayo2009 5demayodowntownblockparty"}, {"datetaken": "2009-05-05 19:00:47", "license": "3", "title": "Cinco de Mayo Downtown Block Party", "text": "", "album_id": "72157617669726441", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3341/3506394432_820d693836_o.jpg", "secret": "9d650172c1", "media": "video", "latitude": "0", "id": "3506394432", "tags": "friends austin buddies gabe 5demayo 20mo nilsons may09 shillingtons cincodemayo2009 5demayodowntownblockparty"}, {"datetaken": "2009-05-05 19:32:50", "license": "3", "title": "Cinco de Mayo Downtown Block Party", "text": "", "album_id": "72157617669726441", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3619/3505569799_033521e49e_o.jpg", "secret": "07ba45de2d", "media": "photo", "latitude": "0", "id": "3505569799", "tags": "friends austin buddies gabe 5demayo 20mo nilsons may09 shillingtons cincodemayo2009 5demayodowntownblockparty"}, {"datetaken": "2009-05-05 19:37:08", "license": "3", "title": "Cinco de Mayo Downtown Block Party", "text": "", "album_id": "72157617669726441", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3648/3506380834_933df2144c_o.jpg", "secret": "f274ecc57a", "media": "photo", "latitude": "0", "id": "3506380834", "tags": "friends austin buddies gabe 5demayo 20mo nilsons may09 shillingtons cincodemayo2009 5demayodowntownblockparty"}, {"datetaken": "2009-05-05 19:38:20", "license": "3", "title": "Cinco de Mayo Downtown Block Party", "text": "", "album_id": "72157617669726441", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3355/3506382404_3a1f485c0c_o.jpg", "secret": "8e8361fe5e", "media": "photo", "latitude": "0", "id": "3506382404", "tags": "friends austin buddies gabe 5demayo 20mo nilsons may09 shillingtons cincodemayo2009 5demayodowntownblockparty"}, {"datetaken": "2009-05-05 19:40:24", "license": "3", "title": "Cinco de Mayo Downtown Block Party", "text": "", "album_id": "72157617669726441", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3335/3505574145_b6ff783078_o.jpg", "secret": "42d307720b", "media": "photo", "latitude": "0", "id": "3505574145", "tags": "friends austin buddies gabe 5demayo 20mo nilsons may09 shillingtons cincodemayo2009 5demayodowntownblockparty"}, {"datetaken": "2009-05-05 19:40:44", "license": "3", "title": "Cinco de Mayo Downtown Block Party", "text": "", "album_id": "72157617669726441", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3385/3506384924_7397c7641b_o.jpg", "secret": "24fca352a4", "media": "photo", "latitude": "0", "id": "3506384924", "tags": "friends austin buddies gabe 5demayo 20mo nilsons may09 shillingtons cincodemayo2009 5demayodowntownblockparty"}, {"datetaken": "2009-05-05 20:04:54", "license": "3", "title": "Cinco de Mayo Downtown Block Party", "text": "", "album_id": "72157617669726441", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3611/3505585621_942b58bf17_o.jpg", "secret": "c648349668", "media": "photo", "latitude": "0", "id": "3505585621", "tags": "friends austin buddies gabe 5demayo dirtyfeet 20mo nilsons may09 shillingtons cincodemayo2009 5demayodowntownblockparty"}, {"datetaken": "2010-05-04 06:48:35", "license": "1", "title": "David's Office", "text": "", "album_id": "72157623878185185", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4582716835_13b0fb4f2b_o.jpg", "secret": "47226ec8ba", "media": "photo", "latitude": "0", "id": "4582716835", "tags": ""}, {"datetaken": "2010-05-04 17:00:45", "license": "1", "title": "Marge's Office", "text": "", "album_id": "72157623878185185", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4582717019_52f00ab9d1_o.jpg", "secret": "88c7b8d7ff", "media": "photo", "latitude": "0", "id": "4582717019", "tags": ""}, {"datetaken": "2010-05-05 15:06:51", "license": "1", "title": "Todor assembling frames", "text": "", "album_id": "72157623878185185", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4583345906_054b4a740e_o.jpg", "secret": "912e37a502", "media": "photo", "latitude": "0", "id": "4583345906", "tags": ""}, {"datetaken": "2010-05-05 15:08:20", "license": "1", "title": "Team debriefing", "text": "", "album_id": "72157623878185185", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4582717573_f61d920a92_o.jpg", "secret": "0aee68a807", "media": "photo", "latitude": "0", "id": "4582717573", "tags": ""}, {"datetaken": "2010-05-05 17:28:42", "license": "1", "title": "Celebrating Cinco de Mayo", "text": "", "album_id": "72157623878185185", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3322/4583346734_86ece0fabe_o.jpg", "secret": "6e5ba1a33f", "media": "photo", "latitude": "0", "id": "4583346734", "tags": ""}, {"datetaken": "2010-05-05 20:22:07", "license": "1", "title": "Not a creature was stirring\u2026", "text": "", "album_id": "72157623878185185", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4582718299_efed481894_o.jpg", "secret": "1b3d65cff3", "media": "photo", "latitude": "0", "id": "4582718299", "tags": ""}, {"datetaken": "2010-05-05 20:47:49", "license": "1", "title": "Mississippi ma\u00f1ana", "text": "", "album_id": "72157623878185185", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4582718471_2c9b1937bd_o.jpg", "secret": "5cbee54fdb", "media": "photo", "latitude": "0", "id": "4582718471", "tags": ""}, {"datetaken": "2010-05-05 20:48:19", "license": "1", "title": "CA before MS, except\u2026no exceptions!", "text": "", "album_id": "72157623878185185", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4582718691_8120bfb71c_o.jpg", "secret": "08c2276315", "media": "photo", "latitude": "0", "id": "4582718691", "tags": ""}, {"datetaken": "2010-05-05 20:48:38", "license": "1", "title": "Decisions and learnings", "text": "", "album_id": "72157623878185185", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4583346516_30fed00974_o.jpg", "secret": "644ecb3d23", "media": "photo", "latitude": "0", "id": "4583346516", "tags": ""}, {"datetaken": "2010-05-05 20:49:38", "license": "1", "title": "Pico Union, 7 victories, 1 treasure", "text": "", "album_id": "72157623878185185", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4583347564_1a8b8a0e7b_o.jpg", "secret": "a9fbf04980", "media": "photo", "latitude": "0", "id": "4583347564", "tags": ""}, {"datetaken": "2010-05-05 20:50:19", "license": "1", "title": "9:47 CST and all is well", "text": "", "album_id": "72157623878185185", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4583348464_3c04baf197_o.jpg", "secret": "257322fe5d", "media": "photo", "latitude": "0", "id": "4583348464", "tags": ""}, {"datetaken": "2010-05-05 20:51:32", "license": "1", "title": "Still life with fruit", "text": "", "album_id": "72157623878185185", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4582719269_402d4241da_o.jpg", "secret": "09892135ea", "media": "photo", "latitude": "0", "id": "4582719269", "tags": ""}, {"datetaken": "2010-05-05 20:53:13", "license": "1", "title": "Still life with frames", "text": "", "album_id": "72157623878185185", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4582719537_3d2dd150a2_o.jpg", "secret": "43cc086591", "media": "photo", "latitude": "0", "id": "4582719537", "tags": ""}, {"datetaken": "2011-05-05 17:03:53", "license": "2", "title": "Photos: Obama at White House Cinco de Mayo Party!", "text": "", "album_id": "72157626657119476", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5021/5691644571_3e03f86097_o.jpg", "secret": "9b8f944a2f", "media": "photo", "latitude": "0", "id": "5691644571", "tags": ""}, {"datetaken": "2011-05-05 17:08:35", "license": "2", "title": "Photos: Obama at White House Cinco de Mayo Party!", "text": "", "album_id": "72157626657119476", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5186/5691645167_4fc1c9d365_o.jpg", "secret": "ae25e6b574", "media": "photo", "latitude": "0", "id": "5691645167", "tags": ""}, {"datetaken": "2011-05-05 17:08:43", "license": "2", "title": "Photos: Obama at White House Cinco de Mayo Party!", "text": "", "album_id": "72157626657119476", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5304/5692215924_8685ff1fa2_o.jpg", "secret": "2883d9fb5e", "media": "photo", "latitude": "0", "id": "5692215924", "tags": ""}, {"datetaken": "2011-05-05 17:09:42", "license": "2", "title": "Photos: Obama at White House Cinco de Mayo Party!", "text": "", "album_id": "72157626657119476", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5066/5691645459_df903b99a0_o.jpg", "secret": "38d04b4611", "media": "photo", "latitude": "0", "id": "5691645459", "tags": ""}, {"datetaken": "2011-05-05 17:34:47", "license": "2", "title": "Photos: Obama at White House Cinco de Mayo Party!", "text": "", "album_id": "72157626657119476", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5069/5692215112_4c7267ab70_o.jpg", "secret": "03415d07c3", "media": "photo", "latitude": "0", "id": "5692215112", "tags": ""}, {"datetaken": "2011-05-05 17:39:21", "license": "2", "title": "Photos: Obama at White House Cinco de Mayo Party!", "text": "", "album_id": "72157626657119476", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5067/5692215304_7af0412fbe_o.jpg", "secret": "a5a381daa2", "media": "photo", "latitude": "0", "id": "5692215304", "tags": ""}, {"datetaken": "2011-05-05 18:22:32", "license": "2", "title": "Photos: Obama at White House Cinco de Mayo Party!", "text": "", "album_id": "72157626657119476", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5142/5691643229_37cd20324a_o.jpg", "secret": "031e3e6633", "media": "photo", "latitude": "0", "id": "5691643229", "tags": "white house michelle obama cincodemayo barack"}, {"datetaken": "2011-05-05 18:24:41", "license": "2", "title": "Photos: Obama at White House Cinco de Mayo Party!", "text": "", "album_id": "72157626657119476", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5024/5692213832_0b7215f164_o.jpg", "secret": "46125225d5", "media": "photo", "latitude": "0", "id": "5692213832", "tags": "white house michelle obama cincodemayo barack"}, {"datetaken": "2011-05-05 18:34:18", "license": "2", "title": "Photos: Obama at White House Cinco de Mayo Party!", "text": "", "album_id": "72157626657119476", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5190/5692214116_fcdbe56236_o.jpg", "secret": "31d9282993", "media": "photo", "latitude": "0", "id": "5692214116", "tags": "white house michelle obama cincodemayo barack"}, {"datetaken": "2011-05-05 18:51:34", "license": "2", "title": "Photos: Obama at White House Cinco de Mayo Party!", "text": "", "album_id": "72157626657119476", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5266/5691643975_31c27c650e_o.jpg", "secret": "59bcd4cc47", "media": "photo", "latitude": "0", "id": "5691643975", "tags": "white house michelle obama cincodemayo barack"}, {"datetaken": "2011-05-05 19:09:50", "license": "2", "title": "Photos: Obama at White House Cinco de Mayo Party!", "text": "", "album_id": "72157626657119476", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5303/5691644135_1a63b7d96e_o.jpg", "secret": "dc1a20eb3b", "media": "photo", "latitude": "0", "id": "5691644135", "tags": "white house michelle obama cincodemayo barack"}, {"datetaken": "2011-05-05 19:20:40", "license": "2", "title": "Photos: Obama at White House Cinco de Mayo Party!", "text": "", "album_id": "72157626657119476", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5185/5692214740_9cdf325e5c_o.jpg", "secret": "b4d154cc2d", "media": "photo", "latitude": "0", "id": "5692214740", "tags": "white house michelle obama cincodemayo barack"}, {"datetaken": "2013-05-04 16:05:20", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8259/8710625666_6017cab14b_o.jpg", "secret": "00d9aab85f", "media": "photo", "latitude": "0", "id": "8710625666", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:05:27", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8127/8710625694_b4802cd40d_o.jpg", "secret": "fa7396bbd5", "media": "photo", "latitude": "0", "id": "8710625694", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:05:37", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8130/8710625724_5d53bec2fe_o.jpg", "secret": "6c5ba5234e", "media": "photo", "latitude": "0", "id": "8710625724", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:05:48", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8537/8710625806_e8252c717e_o.jpg", "secret": "3100acc810", "media": "photo", "latitude": "0", "id": "8710625806", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:05:57", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8396/8710625758_58b53195b4_o.jpg", "secret": "78bab0e209", "media": "photo", "latitude": "0", "id": "8710625758", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:06:12", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8418/8709503427_84caf4e4dd_o.jpg", "secret": "8a04509d72", "media": "photo", "latitude": "0", "id": "8709503427", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:06:17", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8117/8709503623_ce373faab9_o.jpg", "secret": "74093aed5d", "media": "photo", "latitude": "0", "id": "8709503623", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:09:54", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8403/8709503291_1575b7f434_o.jpg", "secret": "f5bbf2c1a6", "media": "photo", "latitude": "0", "id": "8709503291", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:12:56", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8121/8710625860_553d90b9e5_o.jpg", "secret": "b659620245", "media": "photo", "latitude": "0", "id": "8710625860", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:13:17", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8128/8710625568_827075855c_o.jpg", "secret": "14dd0db979", "media": "photo", "latitude": "0", "id": "8710625568", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:13:54", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8118/8709503539_0bc31cd67b_o.jpg", "secret": "60a13bd1e3", "media": "photo", "latitude": "0", "id": "8709503539", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:14:15", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8554/8709503561_ec1f534d32_o.jpg", "secret": "b4b18124f8", "media": "photo", "latitude": "0", "id": "8709503561", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:16:31", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8253/8709503607_0775caf223_o.jpg", "secret": "5a0747a91b", "media": "photo", "latitude": "0", "id": "8709503607", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:17:25", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8139/8709503667_fdb411f130_o.jpg", "secret": "2530288dcf", "media": "photo", "latitude": "0", "id": "8709503667", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:17:43", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8406/8710625498_0934e0e5a5_o.jpg", "secret": "a616641ab1", "media": "photo", "latitude": "0", "id": "8710625498", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:18:03", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8135/8710626016_8f42d24697_o.jpg", "secret": "2c2b8f52ef", "media": "photo", "latitude": "0", "id": "8710626016", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:18:57", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8552/8710626184_d048b0c20d_o.jpg", "secret": "d72c9b50bb", "media": "photo", "latitude": "0", "id": "8710626184", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:19:11", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8137/8710626092_cd4d4e68e0_o.jpg", "secret": "be6849c225", "media": "photo", "latitude": "0", "id": "8710626092", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:19:41", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8409/8709503869_4f91012f1a_o.jpg", "secret": "ce97397849", "media": "photo", "latitude": "0", "id": "8709503869", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:23:24", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8130/8709503097_57f8dd0377_o.jpg", "secret": "cbbf29856d", "media": "photo", "latitude": "0", "id": "8709503097", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 16:36:48", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8121/8709503821_077e157846_o.jpg", "secret": "748edb58fe", "media": "photo", "latitude": "0", "id": "8709503821", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 17:10:22", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8128/8710626208_ab8cbd976e_o.jpg", "secret": "a963e216cb", "media": "photo", "latitude": "0", "id": "8710626208", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 17:22:19", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8280/8709503905_aacf5f0c7e_o.jpg", "secret": "243ea27276", "media": "photo", "latitude": "0", "id": "8709503905", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 17:23:05", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8130/8709503055_88a8a1156b_o.jpg", "secret": "7779d34ba6", "media": "photo", "latitude": "0", "id": "8709503055", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 17:24:10", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8393/8709503891_17ea066901_o.jpg", "secret": "1f9d6804e1", "media": "photo", "latitude": "0", "id": "8709503891", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 17:24:17", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8131/8710625700_38ac58de78_o.jpg", "secret": "962cb78140", "media": "photo", "latitude": "0", "id": "8710625700", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 17:24:40", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8270/8710625636_624c2af00a_o.jpg", "secret": "1b03b8daa3", "media": "photo", "latitude": "0", "id": "8710625636", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2013-05-04 17:25:02", "license": "2", "title": "Pork Chili Verde", "text": "", "album_id": "72157633408428325", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8120/8710625408_1c766c5d2c_o.jpg", "secret": "84599e5b72", "media": "photo", "latitude": "0", "id": "8710625408", "tags": "food blog chili pork cincodemayo foodblog pulledpork porkchili salsaverde chiliverde ibelieveicanfry porkchiliverde"}, {"datetaken": "2014-08-27 05:41:18", "license": "3", "title": "NSHMBA 2104 Cinco de Mayo Mixer", "text": "", "album_id": "72157649175321582", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3956/15116582453_12f27f604e_o.jpg", "secret": "fbcbf18d6c", "media": "photo", "latitude": "0", "id": "15116582453", "tags": "usa tx houston bamboo networking riceuniversity bla nshmba ronkikuchi nshmbacincodemayo winstonsproductios universityofstthamos busineslatinamerianasociation"}, {"datetaken": "2014-08-27 05:42:36", "license": "3", "title": "NSHMBA 2104 Cinco de Mayo Mixer", "text": "", "album_id": "72157649175321582", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7486/15734045541_6c03b38999_o.jpg", "secret": "175487ef85", "media": "photo", "latitude": "0", "id": "15734045541", "tags": "usa tx houston bamboo networking riceuniversity bla nshmba ronkikuchi nshmbacincodemayo winstonsproductios universityofstthamos busineslatinamerianasociation"}, {"datetaken": "2014-08-27 05:42:47", "license": "3", "title": "NSHMBA 2104 Cinco de Mayo Mixer", "text": "", "album_id": "72157649175321582", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7504/15712255416_47282aba17_o.jpg", "secret": "d159e66973", "media": "photo", "latitude": "0", "id": "15712255416", "tags": "usa tx houston bamboo networking riceuniversity bla nshmba ronkikuchi nshmbacincodemayo winstonsproductios universityofstthamos busineslatinamerianasociation"}, {"datetaken": "2014-08-27 05:43:31", "license": "3", "title": "NSHMBA 2104 Cinco de Mayo Mixer", "text": "", "album_id": "72157649175321582", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7520/15550092659_8bafb62a65_o.jpg", "secret": "82a17bcbe1", "media": "photo", "latitude": "0", "id": "15550092659", "tags": "usa tx houston bamboo networking riceuniversity bla nshmba ronkikuchi nshmbacincodemayo winstonsproductios universityofstthamos busineslatinamerianasociation"}, {"datetaken": "2014-08-27 05:51:46", "license": "3", "title": "NSHMBA 2104 Cinco de Mayo Mixer", "text": "", "album_id": "72157649175321582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5598/15550521388_c8cb1549f9_o.jpg", "secret": "cdaec25eeb", "media": "photo", "latitude": "0", "id": "15550521388", "tags": "usa tx houston bamboo networking riceuniversity bla nshmba ronkikuchi nshmbacincodemayo winstonsproductios universityofstthamos busineslatinamerianasociation"}, {"datetaken": "2014-08-27 05:53:21", "license": "3", "title": "NSHMBA 2104 Cinco de Mayo Mixer", "text": "", "album_id": "72157649175321582", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7465/15737512732_139a9a9000_o.jpg", "secret": "2e255f2ed5", "media": "photo", "latitude": "0", "id": "15737512732", "tags": "usa tx houston bamboo networking riceuniversity bla nshmba ronkikuchi nshmbacincodemayo winstonsproductios universityofstthamos busineslatinamerianasociation"}, {"datetaken": "2014-08-27 05:57:08", "license": "3", "title": "NSHMBA 2104 Cinco de Mayo Mixer", "text": "", "album_id": "72157649175321582", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8549/15550781527_908c49bff9_o.jpg", "secret": "a8b08915cf", "media": "photo", "latitude": "0", "id": "15550781527", "tags": "usa tx houston bamboo networking riceuniversity bla nshmba ronkikuchi nshmbacincodemayo winstonsproductios universityofstthamos busineslatinamerianasociation"}, {"datetaken": "2014-08-27 06:05:49", "license": "3", "title": "NSHMBA 2104 Cinco de Mayo Mixer", "text": "", "album_id": "72157649175321582", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7552/15550781677_ae1d77652f_o.jpg", "secret": "192d9d2648", "media": "photo", "latitude": "0", "id": "15550781677", "tags": "usa tx houston bamboo networking riceuniversity bla nshmba ronkikuchi nshmbacincodemayo winstonsproductios universityofstthamos busineslatinamerianasociation"}, {"datetaken": "2014-08-27 06:06:12", "license": "3", "title": "NSHMBA 2104 Cinco de Mayo Mixer", "text": "", "album_id": "72157649175321582", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7527/15712255666_d4597015c1_o.jpg", "secret": "28e3bebb5b", "media": "photo", "latitude": "0", "id": "15712255666", "tags": "usa tx houston bamboo networking riceuniversity bla nshmba ronkikuchi nshmbacincodemayo winstonsproductios universityofstthamos busineslatinamerianasociation"}, {"datetaken": "2014-08-27 06:08:20", "license": "3", "title": "NSHMBA 2104 Cinco de Mayo Mixer", "text": "", "album_id": "72157649175321582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5614/15116013194_faab53f5f7_o.jpg", "secret": "98ed96f25e", "media": "photo", "latitude": "0", "id": "15116013194", "tags": "usa tx houston bamboo networking riceuniversity bla nshmba ronkikuchi nshmbacincodemayo winstonsproductios universityofstthamos busineslatinamerianasociation"}, {"datetaken": "2014-08-27 06:09:07", "license": "3", "title": "NSHMBA 2104 Cinco de Mayo Mixer", "text": "", "album_id": "72157649175321582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5600/15550521698_4d8c575384_o.jpg", "secret": "fb45a58ebf", "media": "photo", "latitude": "0", "id": "15550521698", "tags": "usa tx houston bamboo networking riceuniversity bla nshmba ronkikuchi nshmbacincodemayo winstonsproductios universityofstthamos busineslatinamerianasociation"}, {"datetaken": "2014-08-27 06:11:25", "license": "3", "title": "NSHMBA 2104 Cinco de Mayo Mixer", "text": "", "album_id": "72157649175321582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5608/15550781777_5e0c346ab4_o.jpg", "secret": "18e36c7948", "media": "photo", "latitude": "0", "id": "15550781777", "tags": "usa tx houston bamboo networking riceuniversity bla nshmba ronkikuchi nshmbacincodemayo winstonsproductios universityofstthamos busineslatinamerianasociation"}, {"datetaken": "2014-08-27 06:12:46", "license": "3", "title": "NSHMBA 2104 Cinco de Mayo Mixer", "text": "", "album_id": "72157649175321582", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3942/15734046061_caa72fcbd9_o.jpg", "secret": "0ef4d17a83", "media": "photo", "latitude": "0", "id": "15734046061", "tags": "usa tx houston bamboo networking riceuniversity bla nshmba ronkikuchi nshmbacincodemayo winstonsproductios universityofstthamos busineslatinamerianasociation"}, {"datetaken": "2014-08-27 06:13:00", "license": "3", "title": "NSHMBA 2104 Cinco de Mayo Mixer", "text": "", "album_id": "72157649175321582", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3941/15734046091_49ddbefc5a_o.jpg", "secret": "88043d8fec", "media": "photo", "latitude": "0", "id": "15734046091", "tags": "usa tx houston bamboo networking riceuniversity bla nshmba ronkikuchi nshmbacincodemayo winstonsproductios universityofstthamos busineslatinamerianasociation"}, {"datetaken": "2014-08-27 06:18:10", "license": "3", "title": "NSHMBA 2104 Cinco de Mayo Mixer", "text": "", "album_id": "72157649175321582", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5597/15737513402_059165d95e_o.jpg", "secret": "95931b39f5", "media": "photo", "latitude": "0", "id": "15737513402", "tags": "usa tx houston bamboo networking riceuniversity bla nshmba ronkikuchi nshmbacincodemayo winstonsproductios universityofstthamos busineslatinamerianasociation"}, {"datetaken": "2014-08-27 06:24:24", "license": "3", "title": "NSHMBA 2104 Cinco de Mayo Mixer", "text": "", "album_id": "72157649175321582", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7558/15116013474_8b0a553ab7_o.jpg", "secret": "1460d04e76", "media": "photo", "latitude": "0", "id": "15116013474", "tags": "usa tx houston bamboo networking riceuniversity bla nshmba ronkikuchi nshmbacincodemayo winstonsproductios universityofstthamos busineslatinamerianasociation"}, {"datetaken": "1980-01-01 00:00:09", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm8.staticflickr.com/7078/7210044142_738aa5caf8_o.jpg", "secret": "9434f05fc9", "media": "photo", "latitude": "27.967777", "id": "7210044142", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:00:11", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm8.staticflickr.com/7074/7210045246_860759fb8d_o.jpg", "secret": "021869e631", "media": "photo", "latitude": "27.967777", "id": "7210045246", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:00:13", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm9.staticflickr.com/8147/7210046174_9cc6dafe07_o.jpg", "secret": "0a9b72d7a5", "media": "photo", "latitude": "27.967777", "id": "7210046174", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:00:15", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm8.staticflickr.com/7229/7210043776_5cd6a0653c_o.jpg", "secret": "4833fdfe5e", "media": "photo", "latitude": "27.967777", "id": "7210043776", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:00:15", "license": "1", "title": "", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm6.staticflickr.com/5458/7210041508_4d30fd7c0b_o.jpg", "secret": "6d36bb7e44", "media": "photo", "latitude": "27.967777", "id": "7210041508", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:00:16", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm8.staticflickr.com/7077/7210047514_29ab1b3527_o.jpg", "secret": "31ea33647c", "media": "photo", "latitude": "27.967777", "id": "7210047514", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:00:18", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm6.staticflickr.com/5320/7210044904_e87e80f9aa_o.jpg", "secret": "2e2001e459", "media": "photo", "latitude": "27.967777", "id": "7210044904", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:00:21", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm9.staticflickr.com/8167/7210042892_8d5956b40f_o.jpg", "secret": "492d4e06da", "media": "photo", "latitude": "27.967777", "id": "7210042892", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:00:27", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm8.staticflickr.com/7231/7210046386_ab7df5c218_o.jpg", "secret": "212933f8f3", "media": "photo", "latitude": "27.967777", "id": "7210046386", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:00:32", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm8.staticflickr.com/7233/7210046716_b37903ebcb_o.jpg", "secret": "731177b883", "media": "photo", "latitude": "27.967777", "id": "7210046716", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:00:35", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm8.staticflickr.com/7078/7210045734_e47da473e5_o.jpg", "secret": "4996c5ab50", "media": "photo", "latitude": "27.967777", "id": "7210045734", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:00:36", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm8.staticflickr.com/7074/7210043106_2b65828ed2_o.jpg", "secret": "ff802175fb", "media": "photo", "latitude": "27.967777", "id": "7210043106", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:00:46", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm6.staticflickr.com/5339/7210045488_34eeff60d7_o.jpg", "secret": "cec1565a9c", "media": "photo", "latitude": "27.967777", "id": "7210045488", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:00:53", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm8.staticflickr.com/7099/7210044490_4a0d678ac1_o.jpg", "secret": "3ecaf8ac73", "media": "photo", "latitude": "27.967777", "id": "7210044490", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:00:53", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm6.staticflickr.com/5457/7210043470_cca2373405_o.jpg", "secret": "8b4d237e9f", "media": "photo", "latitude": "27.967777", "id": "7210043470", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:01:05", "license": "1", "title": "", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm6.staticflickr.com/5350/7210041102_c5cb42bed6_o.jpg", "secret": "653f6c4596", "media": "photo", "latitude": "27.967777", "id": "7210041102", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:01:13", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm9.staticflickr.com/8028/7210042260_91535dc360_o.jpg", "secret": "c43242842e", "media": "photo", "latitude": "27.967777", "id": "7210042260", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:01:24", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm8.staticflickr.com/7216/7210042476_b50ea07c88_o.jpg", "secret": "b95f5f52d0", "media": "photo", "latitude": "27.967777", "id": "7210042476", "tags": "kids youth children library may claudia cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:01:30", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm8.staticflickr.com/7222/7210047206_8911950817_o.jpg", "secret": "134a48acfe", "media": "photo", "latitude": "27.967777", "id": "7210047206", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:02:43", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm8.staticflickr.com/7212/7210046922_2c7c5f0b95_o.jpg", "secret": "cfcb97e32f", "media": "photo", "latitude": "27.967777", "id": "7210046922", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:02:58", "license": "1", "title": "Cinco de Mayo", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm8.staticflickr.com/7088/7210047858_14bbeb71e6_o.jpg", "secret": "065ddec406", "media": "photo", "latitude": "27.967777", "id": "7210047858", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:03:11", "license": "1", "title": "", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm8.staticflickr.com/7240/7210039292_4e43cde68f_o.jpg", "secret": "35c8af1e34", "media": "photo", "latitude": "27.967777", "id": "7210039292", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:03:23", "license": "1", "title": "", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm6.staticflickr.com/5117/7210039634_481f2335d6_o.jpg", "secret": "749c7fb86b", "media": "photo", "latitude": "27.967777", "id": "7210039634", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:03:45", "license": "1", "title": "", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm9.staticflickr.com/8150/7210040406_1d866c19e0_o.jpg", "secret": "390ecc2fb8", "media": "photo", "latitude": "27.967777", "id": "7210040406", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:04:01", "license": "1", "title": "", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm8.staticflickr.com/7071/7210039932_c3fced1d1a_o.jpg", "secret": "2155d89aa0", "media": "photo", "latitude": "27.967777", "id": "7210039932", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:04:16", "license": "1", "title": "IMG_1030", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm9.staticflickr.com/8022/7210040272_b560805142_o.jpg", "secret": "738e8b3e99", "media": "photo", "latitude": "27.967777", "id": "7210040272", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:04:49", "license": "1", "title": "", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm9.staticflickr.com/8020/7210040872_3055420b0f_o.jpg", "secret": "b8ece72443", "media": "photo", "latitude": "27.967777", "id": "7210040872", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "1980-01-01 00:05:12", "license": "1", "title": "", "text": "", "album_id": "72157629757439172", "longitude": "-82.744860", "url_o": "https://farm6.staticflickr.com/5452/7210040548_d0725e9943_o.jpg", "secret": "c89831cc2e", "media": "photo", "latitude": "27.967777", "id": "7210040548", "tags": "kids youth children library may cincodemayo 2012 fifth may5th clearwaterpubliclibrarysystem fifthmay clearwatereastlibrary"}, {"datetaken": "2008-05-04 10:10:59", "license": "1", "title": "Brianna, Andrew, and Jasmine at the Cinco De Mayo Run", "text": "", "album_id": "72157605150885292", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2005/2504432230_a05333ec25_o.jpg", "secret": "cc6397e574", "media": "photo", "latitude": "0", "id": "2504432230", "tags": "family andrew brianna cincodemayorun"}, {"datetaken": "2008-05-04 10:11:11", "license": "1", "title": "Dave after the Cinco De Mayo Run", "text": "", "album_id": "72157605150885292", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2274/2503602273_58b094f395_o.jpg", "secret": "273ee7b4a3", "media": "photo", "latitude": "0", "id": "2503602273", "tags": "dave cincodemayorun"}, {"datetaken": "2008-05-04 10:11:12", "license": "1", "title": "Dave after the Cinco De Mayo Run", "text": "", "album_id": "72157605150885292", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2011/2504436152_987abdc786_o.jpg", "secret": "b48198d0f0", "media": "photo", "latitude": "0", "id": "2504436152", "tags": "dave cincodemayorun"}, {"datetaken": "2008-05-04 10:11:18", "license": "1", "title": "Jen after the Cinco De Mayo Run", "text": "", "album_id": "72157605150885292", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2257/2504438070_f9bc4d6b3e_o.jpg", "secret": "6fbe1c630e", "media": "photo", "latitude": "0", "id": "2504438070", "tags": "jen cincodemayorun"}, {"datetaken": "2008-05-04 10:11:28", "license": "1", "title": "Brianna at the Cinco De Mayo Run", "text": "", "album_id": "72157605150885292", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3031/2503608119_0881c7b6fb_o.jpg", "secret": "a9c2d9d282", "media": "photo", "latitude": "0", "id": "2503608119", "tags": "brianna cincodemayorun"}, {"datetaken": "2008-05-04 10:11:34", "license": "1", "title": "Andrew and Jasmine eating taco salad", "text": "", "album_id": "72157605150885292", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2214/2504442364_01b93af9fb_o.jpg", "secret": "3660850c07", "media": "photo", "latitude": "0", "id": "2504442364", "tags": "family andrew cincodemayorun"}, {"datetaken": "2008-05-04 10:14:49", "license": "1", "title": "Jen after the Cinco De Mayo Run", "text": "", "album_id": "72157605150885292", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2136/2504444754_0a645d5e81_o.jpg", "secret": "33ec087de2", "media": "photo", "latitude": "0", "id": "2504444754", "tags": "jen cincodemayorun"}, {"datetaken": "2008-05-04 10:16:09", "license": "1", "title": "Cinco De Mayo crowd at 1st and Salmon", "text": "", "album_id": "72157605150885292", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3222/2503614979_d37f468e22_o.jpg", "secret": "093401355e", "media": "photo", "latitude": "0", "id": "2503614979", "tags": "oregon portland cincodemayorun"}, {"datetaken": "2008-05-04 10:16:15", "license": "1", "title": "Cinco De Mayo crowd at 1st and Salmon", "text": "", "album_id": "72157605150885292", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2159/2503617293_88566530f2_o.jpg", "secret": "b33006d6ee", "media": "photo", "latitude": "0", "id": "2503617293", "tags": "oregon portland cincodemayorun"}, {"datetaken": "2008-05-04 10:16:25", "license": "1", "title": "Jasmine with the World Trade Center", "text": "", "album_id": "72157605150885292", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2201/2503619381_4049061070_o.jpg", "secret": "025d6b1c26", "media": "photo", "latitude": "0", "id": "2503619381", "tags": "family oregon portland worldtradecenter"}, {"datetaken": "2008-05-04 10:16:35", "license": "1", "title": "KOIN Center", "text": "", "album_id": "72157605150885292", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2379/2504453456_c880ace9ed_o.jpg", "secret": "a60ed959b2", "media": "photo", "latitude": "0", "id": "2504453456", "tags": "building oregon portland center koin"}, {"datetaken": "2008-05-20 13:52:57", "license": "4", "title": "UDEM", "text": "", "album_id": "72157605160411648", "longitude": "-100.319252", "url_o": "https://farm3.staticflickr.com/2258/2509436394_64093d0ed7_o.jpg", "secret": "2fc2d80ec5", "media": "photo", "latitude": "25.686706", "id": "2509436394", "tags": "m\u00e9xico universidad mayo laboratorioenmovimiento"}, {"datetaken": "2008-05-20 13:53:00", "license": "4", "title": "UDEM", "text": "", "album_id": "72157605160411648", "longitude": "-100.319252", "url_o": "https://farm4.staticflickr.com/3109/2508607957_86bb7d7dd8_o.jpg", "secret": "29abf4eb18", "media": "photo", "latitude": "25.686706", "id": "2508607957", "tags": "m\u00e9xico universidad mayo laboratorioenmovimiento agn\u00e8sychimi"}, {"datetaken": "2008-05-20 13:53:01", "license": "4", "title": "Biodiesel en Monterrey", "text": "", "album_id": "72157605160411648", "longitude": "-100.319252", "url_o": "https://farm3.staticflickr.com/2179/2509436570_661138884c_o.jpg", "secret": "64af5776da", "media": "photo", "latitude": "25.686706", "id": "2509436570", "tags": "m\u00e9xico universidad mayo ecoproyecto laboratorioenmovimiento"}, {"datetaken": "2008-05-20 13:53:03", "license": "4", "title": "Lo que ve el Ekeko", "text": "", "album_id": "72157605160411648", "longitude": "-100.664291", "url_o": "https://farm3.staticflickr.com/2221/2509436636_8b364cd474_o.jpg", "secret": "f52608ae01", "media": "photo", "latitude": "25.647097", "id": "2509436636", "tags": "ruta m\u00e9xico mayo ekeko laboratorioenmovimiento"}, {"datetaken": "2008-05-20 13:53:04", "license": "4", "title": "La primera cena", "text": "", "album_id": "72157605160411648", "longitude": "-101.016540", "url_o": "https://farm3.staticflickr.com/2162/2509436690_10eb5d56cd_o.jpg", "secret": "638b679ac9", "media": "photo", "latitude": "23.802936", "id": "2509436690", "tags": "m\u00e9xico comida mayo momentos laboratorioenmovimiento"}, {"datetaken": "2008-05-20 13:53:07", "license": "4", "title": "Papalote", "text": "", "album_id": "72157605160411648", "longitude": "-100.429115", "url_o": "https://farm4.staticflickr.com/3173/2508608217_ccbfd986f4_o.jpg", "secret": "7a7c148371", "media": "photo", "latitude": "25.651739", "id": "2508608217", "tags": "m\u00e9xico mayo ecoproyecto laboratorioenmovimiento"}, {"datetaken": "2008-05-20 13:53:09", "license": "4", "title": "Llenado del tanque... A MANO!", "text": "", "album_id": "72157605160411648", "longitude": "-100.319252", "url_o": "https://farm3.staticflickr.com/2240/2509436906_26bc625cbc_o.jpg", "secret": "67a409005c", "media": "photo", "latitude": "25.686706", "id": "2509436906", "tags": "m\u00e9xico universidad mayo biodiesel ecoproyecto laboratorioenmovimiento"}, {"datetaken": "2008-05-20 13:53:12", "license": "4", "title": "Problemillas t\u00e8cnicos", "text": "", "album_id": "72157605160411648", "longitude": "-100.388259", "url_o": "https://farm3.staticflickr.com/2326/2509437018_7ac7caf7f4_o.jpg", "secret": "b19c01b286", "media": "photo", "latitude": "25.639050", "id": "2509437018", "tags": "ruta m\u00e9xico mayo camioneta laboratorioenmovimiento"}, {"datetaken": "2008-05-20 13:53:14", "license": "4", "title": "De estos encuentros...", "text": "", "album_id": "72157605160411648", "longitude": "-100.329208", "url_o": "https://farm3.staticflickr.com/2322/2508608451_708bf167e6_o.jpg", "secret": "fcea4364ea", "media": "photo", "latitude": "25.658238", "id": "2508608451", "tags": "m\u00e9xico mayo momentos personaje laboratorioenmovimiento"}, {"datetaken": "2008-05-20 13:53:17", "license": "4", "title": "Lo que ve el EKEKO", "text": "", "album_id": "72157605160411648", "longitude": "-100.545501", "url_o": "https://farm4.staticflickr.com/3063/2509437242_a2b3e15931_o.jpg", "secret": "d3d085cd9d", "media": "photo", "latitude": "25.673711", "id": "2509437242", "tags": "ruta m\u00e9xico mayo ekeko laboratorioenmovimiento"}, {"datetaken": "2008-05-20 13:53:18", "license": "4", "title": "Catedral del siglo XXI", "text": "", "album_id": "72157605160411648", "longitude": "-100.329208", "url_o": "https://farm4.staticflickr.com/3262/2509437292_8d3c92cd5c_o.jpg", "secret": "c6ffa5b929", "media": "photo", "latitude": "25.658238", "id": "2509437292", "tags": "m\u00e9xico arquitectura mayo momentos laboratorioenmovimiento"}, {"datetaken": "2008-05-20 13:53:20", "license": "4", "title": "\u00bfLa planta m\u00e0gica?", "text": "", "album_id": "72157605160411648", "longitude": "-100.319252", "url_o": "https://farm4.staticflickr.com/3001/2509437390_1caf933f29_o.jpg", "secret": "30a2aca626", "media": "photo", "latitude": "25.686706", "id": "2509437390", "tags": "m\u00e9xico universidad mayo ecoproyecto laboratorioenmovimiento"}, {"datetaken": "2008-05-20 13:53:23", "license": "4", "title": "Venados en el Campus del ITESM!", "text": "", "album_id": "72157605160411648", "longitude": "-100.319252", "url_o": "https://farm3.staticflickr.com/2071/2508608789_7a7cc492e2_o.jpg", "secret": "36295a768b", "media": "photo", "latitude": "25.686706", "id": "2508608789", "tags": "m\u00e9xico universidad mayo bestias ins\u00f3lito laboratorioenmovimiento"}, {"datetaken": "2008-05-20 13:53:27", "license": "4", "title": "Chimi y Agnes en el bosque encantado", "text": "", "album_id": "72157605160411648", "longitude": "-101.108551", "url_o": "https://farm3.staticflickr.com/2100/2509437612_0bb936042b_o.jpg", "secret": "0cb36e6ebc", "media": "photo", "latitude": "23.260272", "id": "2509437612", "tags": "ruta m\u00e9xico \u00e1rbol mayo momentos laboratorioenmovimiento agn\u00e8sychimi"}, {"datetaken": "2008-05-20 13:53:29", "license": "4", "title": "Los papalotes de la UDEM", "text": "", "album_id": "72157605160411648", "longitude": "-100.319252", "url_o": "https://farm4.staticflickr.com/3113/2509437690_71fb8253d8_o.jpg", "secret": "8701ab4d82", "media": "photo", "latitude": "25.686706", "id": "2509437690", "tags": "m\u00e9xico mayo ecoproyecto laboratorioenmovimiento"}, {"datetaken": "2008-05-20 13:53:30", "license": "4", "title": "El maravilloso mundo del EKEKO", "text": "", "album_id": "72157605160411648", "longitude": "-101.083831", "url_o": "https://farm4.staticflickr.com/3197/2509437742_17d032e5af_o.jpg", "secret": "8d0758e395", "media": "photo", "latitude": "23.480881", "id": "2509437742", "tags": "m\u00e9xico mayo personaje camioneta ekeko laboratorioenmovimiento"}, {"datetaken": "2008-05-20 13:53:32", "license": "4", "title": "Horno 3", "text": "", "album_id": "72157605160411648", "longitude": "-100.319252", "url_o": "https://farm4.staticflickr.com/3007/2508609103_c3fd3fe1a7_o.jpg", "secret": "b015373a36", "media": "photo", "latitude": "25.686706", "id": "2508609103", "tags": "m\u00e9xico arquitectura mayo laboratorioenmovimiento"}, {"datetaken": "2008-05-20 13:53:34", "license": "4", "title": "Fest\u00ecn de medio d\u00eca", "text": "", "album_id": "72157605160411648", "longitude": "-101.016540", "url_o": "https://farm3.staticflickr.com/2270/2509437884_f7a0c46a5c_o.jpg", "secret": "7c73a7d565", "media": "photo", "latitude": "23.802936", "id": "2509437884", "tags": "m\u00e9xico comida mayo laboratorioenmovimiento"}, {"datetaken": "2008-05-20 13:53:37", "license": "4", "title": "Alunecer en Estaci\u00f2n Catorce", "text": "", "album_id": "72157605160411648", "longitude": "-101.016540", "url_o": "https://farm3.staticflickr.com/2026/2509437974_0f66a0388c_o.jpg", "secret": "695155b420", "media": "photo", "latitude": "23.802936", "id": "2509437974", "tags": "ruta m\u00e9xico luna cielo mayo laboratorioenmovimiento"}, {"datetaken": "2008-05-20 13:53:39", "license": "4", "title": "Desayuno con gato negro", "text": "", "album_id": "72157605160411648", "longitude": "-101.016540", "url_o": "https://farm4.staticflickr.com/3003/2509438066_8f5dd46ea0_o.jpg", "secret": "5a8862bce0", "media": "photo", "latitude": "23.802936", "id": "2509438066", "tags": "m\u00e9xico comida mayo bestias laboratorioenmovimiento"}, {"datetaken": "2006-05-05 21:53:13", "license": "1", "title": "Photo-0386.jpg", "text": "", "album_id": "72057594126802223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/141184208_c4581cd068_o.jpg", "secret": "c4581cd068", "media": "photo", "latitude": "0", "id": "141184208", "tags": "samsungt309"}, {"datetaken": "2006-05-05 21:54:52", "license": "1", "title": "Sci Arc parking lot", "text": "", "album_id": "72057594126802223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/141184641_e5faf73e0e_o.jpg", "secret": "e5faf73e0e", "media": "photo", "latitude": "0", "id": "141184641", "tags": "samsungt309"}, {"datetaken": "2006-05-05 21:56:57", "license": "1", "title": "Bunker Hill tunnel", "text": "", "album_id": "72057594126802223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/141185179_ce300002ee_o.jpg", "secret": "ce300002ee", "media": "photo", "latitude": "0", "id": "141185179", "tags": "samsungt309"}, {"datetaken": "2006-05-05 22:02:33", "license": "1", "title": "Walt Disney Concert Hall", "text": "", "album_id": "72057594126802223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/141186737_9ac597a393_o.jpg", "secret": "9ac597a393", "media": "photo", "latitude": "0", "id": "141186737", "tags": "samsungt309"}, {"datetaken": "2006-05-05 22:03:12", "license": "1", "title": "Walt Disney Concert Hall", "text": "", "album_id": "72057594126802223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/141186900_96206677f1_o.jpg", "secret": "96206677f1", "media": "photo", "latitude": "0", "id": "141186900", "tags": "hall concert disney walt samsungt309"}, {"datetaken": "2006-05-05 22:12:32", "license": "1", "title": "Cinco de Mayo Celebration", "text": "", "album_id": "72057594126802223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/141189572_1fde5ed928_o.jpg", "secret": "1fde5ed928", "media": "photo", "latitude": "0", "id": "141189572", "tags": "samsungt309"}, {"datetaken": "2006-05-05 23:26:55", "license": "1", "title": "Taco Stand", "text": "", "album_id": "72057594126802223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/141210689_63c4c66af4_o.jpg", "secret": "63c4c66af4", "media": "photo", "latitude": "0", "id": "141210689", "tags": "tacostand samsungt309"}, {"datetaken": "2006-05-05 23:45:08", "license": "1", "title": "Pepsi", "text": "", "album_id": "72057594126802223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/141215604_c84944130d_o.jpg", "secret": "c84944130d", "media": "photo", "latitude": "0", "id": "141215604", "tags": "samsungt309"}, {"datetaken": "2006-05-05 23:55:28", "license": "1", "title": "Photo-0400.jpg", "text": "", "album_id": "72057594126802223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/141218305_38a2db4bc3_o.jpg", "secret": "38a2db4bc3", "media": "photo", "latitude": "0", "id": "141218305", "tags": "samsungt309"}, {"datetaken": "2006-05-06 00:20:08", "license": "1", "title": "Photo-0403.jpg", "text": "", "album_id": "72057594126802223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/141224496_0521e3ec8e_o.jpg", "secret": "0521e3ec8e", "media": "photo", "latitude": "0", "id": "141224496", "tags": "samsungt309"}, {"datetaken": "2006-05-06 00:22:55", "license": "1", "title": "hummers rock", "text": "", "album_id": "72057594126802223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/141225217_25b1b68935_o.jpg", "secret": "25b1b68935", "media": "photo", "latitude": "0", "id": "141225217", "tags": "fuh2 samsungt309"}, {"datetaken": "2006-05-06 00:27:20", "license": "1", "title": "Photo-0405.jpg", "text": "", "album_id": "72057594126802223", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/141226333_78244c0d02_o.jpg", "secret": "78244c0d02", "media": "photo", "latitude": "0", "id": "141226333", "tags": "samsungt309"}, {"datetaken": "2006-05-05 22:48:20", "license": "3", "title": "Tortilla Philosophy with Kimmie Sue", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/141622174_9ad7ff330d_o.jpg", "secret": "9ad7ff330d", "media": "photo", "latitude": "0", "id": "141622174", "tags": ""}, {"datetaken": "2006-05-05 22:48:27", "license": "3", "title": "Cheeky Leah", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/141614039_2a04238e19_o.jpg", "secret": "2a04238e19", "media": "photo", "latitude": "0", "id": "141614039", "tags": ""}, {"datetaken": "2006-05-05 23:46:34", "license": "3", "title": "My Newest Greyhound", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/141942442_a70da27d7c_o.jpg", "secret": "a70da27d7c", "media": "photo", "latitude": "0", "id": "141942442", "tags": ""}, {"datetaken": "2006-05-06 07:31:58", "license": "3", "title": "Yes Mommy?", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/141619041_4af859ea53_o.jpg", "secret": "ccd8f434aa", "media": "photo", "latitude": "0", "id": "141619041", "tags": ""}, {"datetaken": "2006-05-06 07:32:04", "license": "3", "title": "Hunk Pensive", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/141619406_4b42ff1fc7_o.jpg", "secret": "4b42ff1fc7", "media": "photo", "latitude": "0", "id": "141619406", "tags": ""}, {"datetaken": "2006-05-06 11:31:55", "license": "3", "title": "Ears on Patrol", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/141614141_91a0bdadf5_o.jpg", "secret": "91a0bdadf5", "media": "photo", "latitude": "0", "id": "141614141", "tags": ""}, {"datetaken": "2006-05-06 11:32:04", "license": "3", "title": "Aw, it's not a girl, it's a man...", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/141614305_463d14c736_o.jpg", "secret": "463d14c736", "media": "photo", "latitude": "0", "id": "141614305", "tags": ""}, {"datetaken": "2006-05-06 11:32:21", "license": "3", "title": "Where's Russ?", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/141614881_213c69fbf4_o.jpg", "secret": "213c69fbf4", "media": "photo", "latitude": "0", "id": "141614881", "tags": ""}, {"datetaken": "2006-05-06 11:32:33", "license": "3", "title": "Leah and Russ", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/141615014_81bf7f1df1_o.jpg", "secret": "81bf7f1df1", "media": "photo", "latitude": "0", "id": "141615014", "tags": ""}, {"datetaken": "2006-05-06 11:46:30", "license": "3", "title": "Is that a girl over there?", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/141614611_a7c1c25e3c_o.jpg", "secret": "a7c1c25e3c", "media": "photo", "latitude": "0", "id": "141614611", "tags": ""}, {"datetaken": "2006-05-06 11:46:43", "license": "3", "title": "Hey Neero, come're and look!", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/141614434_d05192edac_o.jpg", "secret": "d05192edac", "media": "photo", "latitude": "0", "id": "141614434", "tags": ""}, {"datetaken": "2006-05-06 11:56:34", "license": "3", "title": "The Neighboring Horse Farm", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/141615128_391d590354_o.jpg", "secret": "391d590354", "media": "photo", "latitude": "0", "id": "141615128", "tags": ""}, {"datetaken": "2006-05-06 11:57:14", "license": "3", "title": "Neighbor Horses", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/141615294_d031d78a1c_o.jpg", "secret": "d031d78a1c", "media": "photo", "latitude": "0", "id": "141615294", "tags": ""}, {"datetaken": "2006-05-06 11:57:20", "license": "3", "title": "Neighbors, close up", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/141615454_76a9455653_o.jpg", "secret": "76a9455653", "media": "photo", "latitude": "0", "id": "141615454", "tags": ""}, {"datetaken": "2006-05-06 12:00:32", "license": "3", "title": "Interloper", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/141615625_fe298a18ac_o.jpg", "secret": "fe298a18ac", "media": "photo", "latitude": "0", "id": "141615625", "tags": ""}, {"datetaken": "2006-05-06 12:19:36", "license": "3", "title": "Yeah, Llama, whatever...zzzzzz", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/141615806_9d5238d7d6_o.jpg", "secret": "9d5238d7d6", "media": "photo", "latitude": "0", "id": "141615806", "tags": ""}, {"datetaken": "2006-05-06 12:26:28", "license": "3", "title": "HEY! You up there!!!", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/141616258_284bddb518_o.jpg", "secret": "284bddb518", "media": "photo", "latitude": "0", "id": "141616258", "tags": ""}, {"datetaken": "2006-05-06 12:26:56", "license": "3", "title": "Feather in Standoffish Pose", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/141616087_8d8af1e8a8_o.jpg", "secret": "8d8af1e8a8", "media": "photo", "latitude": "0", "id": "141616087", "tags": ""}, {"datetaken": "2006-05-06 12:27:34", "license": "3", "title": "Got mah eye on you, lady...", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/141616395_546fd26023_o.jpg", "secret": "546fd26023", "media": "photo", "latitude": "0", "id": "141616395", "tags": ""}, {"datetaken": "2006-05-06 12:28:36", "license": "3", "title": "Feather the Llama", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/141616496_1230169bed_o.jpg", "secret": "1230169bed", "media": "photo", "latitude": "0", "id": "141616496", "tags": ""}, {"datetaken": "2006-05-06 12:29:04", "license": "3", "title": "Feather's lovely face", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/141616762_ad2d86c64b_o.jpg", "secret": "ad2d86c64b", "media": "photo", "latitude": "0", "id": "141616762", "tags": ""}, {"datetaken": "2006-05-06 12:31:39", "license": "3", "title": "Feather", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/141618556_b184bc95c3_o.jpg", "secret": "b184bc95c3", "media": "photo", "latitude": "0", "id": "141618556", "tags": ""}, {"datetaken": "2006-05-06 12:32:20", "license": "3", "title": "Feather the Llama", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/141618765_7afbd76541_o.jpg", "secret": "7afbd76541", "media": "photo", "latitude": "0", "id": "141618765", "tags": ""}, {"datetaken": "2006-05-06 12:33:44", "license": "3", "title": "\"She's letting me feed her!!!\"", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/141618902_d127b21d7a_o.jpg", "secret": "d127b21d7a", "media": "photo", "latitude": "0", "id": "141618902", "tags": ""}, {"datetaken": "2006-05-06 12:48:21", "license": "3", "title": "Clown getting into the spirit of things...", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/141618424_d11983174c_o.jpg", "secret": "d11983174c", "media": "photo", "latitude": "0", "id": "141618424", "tags": ""}, {"datetaken": "2006-05-06 13:05:25", "license": "3", "title": "Russ and his Mom", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/142696231_5009c8b838_o.jpg", "secret": "5009c8b838", "media": "photo", "latitude": "0", "id": "142696231", "tags": ""}, {"datetaken": "2006-05-06 13:05:56", "license": "3", "title": "Hunky in the playpen", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/142696197_916498a2cf_o.jpg", "secret": "916498a2cf", "media": "photo", "latitude": "0", "id": "142696197", "tags": ""}, {"datetaken": "2006-05-06 13:07:29", "license": "3", "title": "The Greeter", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/142696377_f112e6f14d_o.jpg", "secret": "f112e6f14d", "media": "photo", "latitude": "0", "id": "142696377", "tags": ""}, {"datetaken": "2006-05-06 13:21:50", "license": "3", "title": "Man, it's hard to be Hunky", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/142696364_9d416424a3_o.jpg", "secret": "9d416424a3", "media": "photo", "latitude": "0", "id": "142696364", "tags": ""}, {"datetaken": "2006-05-06 13:22:34", "license": "3", "title": "Hunky Hunky Shake!", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/142696333_f44320f547_o.jpg", "secret": "f44320f547", "media": "photo", "latitude": "0", "id": "142696333", "tags": ""}, {"datetaken": "2006-05-06 13:23:19", "license": "3", "title": "Lovely Brindles", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/142696311_0eac095749_o.jpg", "secret": "0eac095749", "media": "photo", "latitude": "0", "id": "142696311", "tags": ""}, {"datetaken": "2006-05-06 13:25:41", "license": "3", "title": "Leah sees an old friend", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/142696290_e1b07a95b8_o.jpg", "secret": "e1b07a95b8", "media": "photo", "latitude": "0", "id": "142696290", "tags": ""}, {"datetaken": "2006-05-06 13:29:59", "license": "3", "title": "La-Llama!", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/142696276_d46a4d3618_o.jpg", "secret": "d46a4d3618", "media": "photo", "latitude": "0", "id": "142696276", "tags": ""}, {"datetaken": "2006-05-06 13:30:42", "license": "3", "title": "She's not a mexican whooping llama...", "text": "", "album_id": "72057594127370852", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/142696253_4c095474bf_o.jpg", "secret": "4c095474bf", "media": "photo", "latitude": "0", "id": "142696253", "tags": ""}, {"datetaken": "2007-05-05 10:08:37", "license": "4", "title": "cell", "text": "", "album_id": "72157600183876481", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/486895365_9001c8bc4d_o.jpg", "secret": "55b711a697", "media": "photo", "latitude": "0", "id": "486895365", "tags": "de cinco 5th 2007 24hoursofflickr 24flickr mayomay"}, {"datetaken": "2007-05-05 12:03:23", "license": "4", "title": "twitter", "text": "", "album_id": "72157600183876481", "longitude": "-118.449718", "url_o": "https://farm1.staticflickr.com/195/486898785_dbc4741e37_o.jpg", "secret": "2e85bb6fb0", "media": "photo", "latitude": "34.014934", "id": "486898785", "tags": "de cinco 5th 2007 24hoursofflickr 24flickr mayomay"}, {"datetaken": "2007-05-05 15:17:04", "license": "4", "title": "mirror", "text": "", "album_id": "72157600183876481", "longitude": "0", "url_o": "https://farm1.staticflickr.com/200/486866028_a1f95d0644_o.jpg", "secret": "9d2c815512", "media": "photo", "latitude": "0", "id": "486866028", "tags": "de cinco 5th 2007 24hoursofflickr 24flickr mayomay"}, {"datetaken": "2007-05-05 15:44:57", "license": "4", "title": "moo cards1", "text": "", "album_id": "72157600183876481", "longitude": "0", "url_o": "https://farm1.staticflickr.com/175/486866230_6264925c25_o.jpg", "secret": "fb10ce3615", "media": "photo", "latitude": "0", "id": "486866230", "tags": "new de cards interestingness cinco 5th greeting mayomay 200724hoursofflickr24flickrmoomoo"}, {"datetaken": "2007-05-05 17:34:53", "license": "4", "title": "lola", "text": "", "album_id": "72157600183876481", "longitude": "0", "url_o": "https://farm1.staticflickr.com/213/486896669_2e69fc0a38_o.jpg", "secret": "8fd997d826", "media": "photo", "latitude": "0", "id": "486896669", "tags": "de interestingness lola cinco 5th 2007 24hoursofflickr 24flickr mayomay"}, {"datetaken": "2007-05-05 17:38:18", "license": "4", "title": "sydney getting ready for bed", "text": "", "album_id": "72157600183876481", "longitude": "0", "url_o": "https://farm1.staticflickr.com/207/486898567_2b84d2dd4e_o.jpg", "secret": "ee882e44cd", "media": "photo", "latitude": "0", "id": "486898567", "tags": "de cinco 5th 2007 24hoursofflickr 24flickr mayomay"}, {"datetaken": "2007-05-05 18:57:51", "license": "4", "title": "make a wish kids art up for auction", "text": "", "album_id": "72157600183876481", "longitude": "-118.449718", "url_o": "https://farm1.staticflickr.com/205/486865602_06d40464f1_o.jpg", "secret": "307e66355d", "media": "photo", "latitude": "34.014934", "id": "486865602", "tags": "cincodemayo 2007 makeawish wineauction 24hoursofflickr 24flickr may5th2007"}, {"datetaken": "2007-05-05 19:08:23", "license": "4", "title": "chopin vodka bar @ make a wish", "text": "", "album_id": "72157600183876481", "longitude": "-118.449718", "url_o": "https://farm1.staticflickr.com/209/486895553_a2173e566f_o.jpg", "secret": "861d209f0b", "media": "photo", "latitude": "34.014934", "id": "486895553", "tags": "cincodemayo 2007 makeawish wineauction 24hoursofflickr 24flickr may5th2007"}, {"datetaken": "2007-05-05 19:21:31", "license": "4", "title": "make a wish cirque", "text": "", "album_id": "72157600183876481", "longitude": "-118.449718", "url_o": "https://farm1.staticflickr.com/214/486897027_b4de973bce_o.jpg", "secret": "25909d8cdd", "media": "photo", "latitude": "34.014934", "id": "486897027", "tags": "cincodemayo 2007 makeawish wineauction 24hoursofflickr 24flickr may5th2007"}, {"datetaken": "2007-05-05 19:24:39", "license": "4", "title": "arnie mortons", "text": "", "album_id": "72157600183876481", "longitude": "-118.449718", "url_o": "https://farm1.staticflickr.com/221/486894595_9e15bc89dd_o.jpg", "secret": "fa7918b64b", "media": "photo", "latitude": "34.014934", "id": "486894595", "tags": "cincodemayo 2007 makeawish wineauction 24hoursofflickr 24flickr may5th2007"}, {"datetaken": "2007-05-05 19:29:11", "license": "4", "title": "make a wish wide-shot", "text": "", "album_id": "72157600183876481", "longitude": "-118.449718", "url_o": "https://farm1.staticflickr.com/226/486865840_bd645c3565_o.jpg", "secret": "3d957dea11", "media": "photo", "latitude": "34.014934", "id": "486865840", "tags": "cincodemayo 2007 makeawish wineauction 24hoursofflickr 24flickr may5th2007"}, {"datetaken": "2007-05-05 19:46:14", "license": "4", "title": "make a wish", "text": "", "album_id": "72157600183876481", "longitude": "-118.449718", "url_o": "https://farm1.staticflickr.com/210/486865272_517017e7f3_o.jpg", "secret": "934396568d", "media": "photo", "latitude": "34.014934", "id": "486865272", "tags": "cincodemayo 2007 makeawish wineauction 24hoursofflickr 24flickr may5th2007"}, {"datetaken": "2007-05-05 20:13:23", "license": "4", "title": "cirque2", "text": "", "album_id": "72157600183876481", "longitude": "-118.449718", "url_o": "https://farm1.staticflickr.com/201/486896037_23a0e648e6_o.jpg", "secret": "1feb0b541f", "media": "photo", "latitude": "34.014934", "id": "486896037", "tags": "cincodemayo 2007 makeawish wineauction 24hoursofflickr 24flickr may5th2007"}, {"datetaken": "2007-05-05 20:24:30", "license": "4", "title": "born to be wild", "text": "", "album_id": "72157600183876481", "longitude": "-118.449718", "url_o": "https://farm1.staticflickr.com/228/486863412_b8d2be06ee_o.jpg", "secret": "7ee9ec0580", "media": "photo", "latitude": "34.014934", "id": "486863412", "tags": "chopper cincodemayo 2007 makeawish wineauction 24hoursofflickr 24flickr may5th2007"}, {"datetaken": "2007-05-05 20:30:59", "license": "4", "title": "PINK's (his & hers)", "text": "", "album_id": "72157600183876481", "longitude": "0", "url_o": "https://farm1.staticflickr.com/229/486862476_975f6c47f9_o.jpg", "secret": "a720738f03", "media": "photo", "latitude": "0", "id": "486862476", "tags": "cincodemayo 2007 pinkshotdogs makeawish wineauction 24hoursofflickr 24flickr may5th2007"}, {"datetaken": "2007-05-05 21:58:59", "license": "4", "title": "brad garrett @ make a wish wine auction", "text": "", "album_id": "72157600183876481", "longitude": "-118.449718", "url_o": "https://farm1.staticflickr.com/211/486895109_b8a7e9aa25_o.jpg", "secret": "0adebb4ff5", "media": "photo", "latitude": "34.014934", "id": "486895109", "tags": "cincodemayo 2007 makeawish wineauction 24hoursofflickr 24flickr may5th2007"}, {"datetaken": "2007-05-05 22:00:37", "license": "4", "title": "brad garrett @ make a wish wine auction detail", "text": "", "album_id": "72157600183876481", "longitude": "-118.449718", "url_o": "https://farm1.staticflickr.com/228/486895251_8e4f1b1600_o.jpg", "secret": "1d8f880037", "media": "photo", "latitude": "34.014934", "id": "486895251", "tags": "cincodemayo 2007 makeawish wineauction 24hoursofflickr 24flickr may5th2007"}, {"datetaken": "2007-05-05 22:17:04", "license": "4", "title": "chopin vodka bar @ make a wish detail", "text": "", "album_id": "72157600183876481", "longitude": "-118.449718", "url_o": "https://farm1.staticflickr.com/180/486895843_62f0766f6e_o.jpg", "secret": "5e850f8ab3", "media": "photo", "latitude": "34.014934", "id": "486895843", "tags": "cincodemayo 2007 makeawish wineauction 24hoursofflickr 24flickr may5th2007"}, {"datetaken": "2007-05-05 22:26:38", "license": "4", "title": "We miss you Dad", "text": "", "album_id": "72157600183876481", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/486862720_089993d581_o.jpg", "secret": "eaafd19e0d", "media": "photo", "latitude": "0", "id": "486862720", "tags": "cincodemayo 2007 makeawish wineauction 24hoursofflickr 24flickr may5th2007 shepardross"}, {"datetaken": "2008-04-01 09:57:07", "license": "1", "title": "2 x Harvest", "text": "", "album_id": "72157604347481145", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3022/2380861412_3f63ed1536_o.jpg", "secret": "a5bd36a58f", "media": "photo", "latitude": "0", "id": "2380861412", "tags": "yarn noellesnoodles"}, {"datetaken": "2008-04-01 09:57:16", "license": "1", "title": "2 x Harvest", "text": "", "album_id": "72157604347481145", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2039/2380861656_c046762b1c_o.jpg", "secret": "378d1471df", "media": "photo", "latitude": "0", "id": "2380861656", "tags": "yarn noellesnoodles"}, {"datetaken": "2008-04-01 09:58:39", "license": "1", "title": "4 X Sakura", "text": "", "album_id": "72157604347481145", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2172/2380026377_0543ed2917_o.jpg", "secret": "fac59a4f24", "media": "photo", "latitude": "0", "id": "2380026377", "tags": "yarn noellesnoodles"}, {"datetaken": "2008-04-01 09:58:54", "license": "1", "title": "4 X Sakura", "text": "", "album_id": "72157604347481145", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2104/2380026571_8f59ff1f48_o.jpg", "secret": "dfeb081daf", "media": "photo", "latitude": "0", "id": "2380026571", "tags": "yarn noellesnoodles"}, {"datetaken": "2008-04-01 10:00:45", "license": "1", "title": "4 x Man with a Guitar", "text": "", "album_id": "72157604347481145", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3186/2380862260_bc4e2f0698_o.jpg", "secret": "926341167a", "media": "photo", "latitude": "0", "id": "2380862260", "tags": "yarn noellesnoodles"}, {"datetaken": "2008-04-01 10:01:14", "license": "1", "title": "4 X Man with a Guitar", "text": "", "album_id": "72157604347481145", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3177/2380026943_25eb662d30_o.jpg", "secret": "04b1283fe2", "media": "photo", "latitude": "0", "id": "2380026943", "tags": "yarn noellesnoodles"}, {"datetaken": "2008-04-01 10:02:07", "license": "1", "title": "4 x First Thaw", "text": "", "album_id": "72157604347481145", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2154/2380862652_beed5a9bc4_o.jpg", "secret": "b8309af757", "media": "photo", "latitude": "0", "id": "2380862652", "tags": "yarn noellesnoodles"}, {"datetaken": "2008-04-01 10:02:29", "license": "1", "title": "4 X First Thaw", "text": "", "album_id": "72157604347481145", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2133/2380027315_b5c57b2deb_o.jpg", "secret": "211800ddf9", "media": "photo", "latitude": "0", "id": "2380027315", "tags": "yarn noellesnoodles"}, {"datetaken": "2008-04-01 10:04:42", "license": "1", "title": "4 X Juicy", "text": "", "album_id": "72157604347481145", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2407/2380027515_32dc0750e3_o.jpg", "secret": "0b899566bc", "media": "photo", "latitude": "0", "id": "2380027515", "tags": "yarn noellesnoodles"}, {"datetaken": "2008-04-01 10:04:48", "license": "1", "title": "4 X Juicy", "text": "", "album_id": "72157604347481145", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2297/2380027677_9e029902c8_o.jpg", "secret": "717def01c9", "media": "photo", "latitude": "0", "id": "2380027677", "tags": "yarn noellesnoodles"}, {"datetaken": "2008-04-01 10:06:17", "license": "1", "title": "4 x River Rocks", "text": "", "album_id": "72157604347481145", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2137/2380863404_f3c21e7f7a_o.jpg", "secret": "1b389ba319", "media": "photo", "latitude": "0", "id": "2380863404", "tags": "yarn noellesnoodles"}, {"datetaken": "2008-04-01 10:06:38", "license": "1", "title": "4 x River Rocks", "text": "", "album_id": "72157604347481145", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3105/2380028073_f77f8b64b2_o.jpg", "secret": "0bcee794f9", "media": "photo", "latitude": "0", "id": "2380028073", "tags": "yarn noellesnoodles"}, {"datetaken": "2008-04-01 10:07:26", "license": "1", "title": "4 X Bollywood", "text": "", "album_id": "72157604347481145", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2198/2380863750_f1bd8937d1_o.jpg", "secret": "0e208e2e0a", "media": "photo", "latitude": "0", "id": "2380863750", "tags": "yarn noellesnoodles"}, {"datetaken": "2008-04-01 10:07:38", "license": "1", "title": "4 X Bollywood", "text": "", "album_id": "72157604347481145", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3073/2380863930_f1dbb1c2a0_o.jpg", "secret": "d26ce650eb", "media": "photo", "latitude": "0", "id": "2380863930", "tags": "yarn noellesnoodles"}, {"datetaken": "2008-04-01 10:08:15", "license": "1", "title": "4 x Cinco de Mayo", "text": "", "album_id": "72157604347481145", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2249/2380864130_07f4e56a2b_o.jpg", "secret": "013e397f39", "media": "photo", "latitude": "0", "id": "2380864130", "tags": "yarn noellesnoodles"}, {"datetaken": "2008-04-01 10:08:22", "license": "1", "title": "4 x Cinco de Mayo", "text": "", "album_id": "72157604347481145", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3234/2380864338_6642bef36b_o.jpg", "secret": "8fb54ae5b0", "media": "photo", "latitude": "0", "id": "2380864338", "tags": "yarn noellesnoodles"}, {"datetaken": "2008-04-01 10:08:43", "license": "1", "title": "wee skeins", "text": "", "album_id": "72157604347481145", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3006/2380029011_a00467623b_o.jpg", "secret": "9fbcb9fba8", "media": "photo", "latitude": "0", "id": "2380029011", "tags": "yarn noellesnoodles"}, {"datetaken": "2009-05-02 10:43:15", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3234/3494004613_3ccf1da94c_o.jpg", "secret": "1ff04d065c", "media": "photo", "latitude": "0", "id": "3494004613", "tags": "minnesota outdoors spring midwest may stpaul alfranken parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 10:43:23", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3411/3494004719_3c3dcb3c09_o.jpg", "secret": "8e74ab0203", "media": "photo", "latitude": "0", "id": "3494004719", "tags": "minnesota outdoors spring midwest may stpaul alfranken parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 10:45:00", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3346/3494004815_e154021871_o.jpg", "secret": "4080307c55", "media": "photo", "latitude": "0", "id": "3494004815", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 10:48:17", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3413/3494822150_425db65121_o.jpg", "secret": "fd5142e499", "media": "photo", "latitude": "0", "id": "3494822150", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 10:49:15", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3081/3494006037_dfa1044f98_o.jpg", "secret": "529a80e87d", "media": "photo", "latitude": "0", "id": "3494006037", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 10:49:20", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3655/3494006201_af6292140b_o.jpg", "secret": "4b01c67642", "media": "photo", "latitude": "0", "id": "3494006201", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 10:49:22", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3622/3494006341_f54487b8cc_o.jpg", "secret": "a6c7d85429", "media": "photo", "latitude": "0", "id": "3494006341", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 10:49:31", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3367/3494823534_4cb4d4bd80_o.jpg", "secret": "5fdb775883", "media": "photo", "latitude": "0", "id": "3494823534", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 10:49:43", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3305/3494823658_7d797d95da_o.jpg", "secret": "532e4c88b4", "media": "photo", "latitude": "0", "id": "3494823658", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 10:51:23", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3348/3494823808_c1435cd57f_o.jpg", "secret": "b94417d120", "media": "photo", "latitude": "0", "id": "3494823808", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 10:51:41", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3557/3494006895_31ea7b140b_o.jpg", "secret": "bd9896e5cc", "media": "photo", "latitude": "0", "id": "3494006895", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 11:03:03", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3663/3494824084_88992821e6_o.jpg", "secret": "6dddff7f31", "media": "photo", "latitude": "0", "id": "3494824084", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 11:03:35", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3412/3494007101_37b313342d_o.jpg", "secret": "4dec246a17", "media": "photo", "latitude": "0", "id": "3494007101", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 11:05:05", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3384/3494007173_de8b9a6f9d_o.jpg", "secret": "991991edce", "media": "photo", "latitude": "0", "id": "3494007173", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 11:06:27", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3314/3494007309_ce7e0d5210_o.jpg", "secret": "b2b735e6c7", "media": "photo", "latitude": "0", "id": "3494007309", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 11:12:17", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3207/3494824460_1b324a5084_o.jpg", "secret": "de43bc7396", "media": "photo", "latitude": "0", "id": "3494824460", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 11:12:38", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3327/3494824560_a6b66a2f8f_o.jpg", "secret": "eaf5dee2aa", "media": "photo", "latitude": "0", "id": "3494824560", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 11:12:41", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3417/3494007609_8d70c6ab96_o.jpg", "secret": "730c9352cd", "media": "photo", "latitude": "0", "id": "3494007609", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 11:13:04", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3352/3494007691_8b190d32eb_o.jpg", "secret": "df4d352f07", "media": "photo", "latitude": "0", "id": "3494007691", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 11:14:59", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3539/3494824844_7733aa0b83_o.jpg", "secret": "faa13b7de6", "media": "photo", "latitude": "0", "id": "3494824844", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 11:16:10", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3587/3494008043_668d584b4e_o.jpg", "secret": "24c2dde895", "media": "photo", "latitude": "0", "id": "3494008043", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 11:16:44", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3305/3494008193_2c26fd50e9_o.jpg", "secret": "afb80da9de", "media": "photo", "latitude": "0", "id": "3494008193", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 11:17:10", "license": "3", "title": "Cinco de Mayo", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3544/3494008287_30fae8a881_o.jpg", "secret": "f0f29ceaa3", "media": "photo", "latitude": "0", "id": "3494008287", "tags": "minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 11:28:44", "license": "3", "title": "now open", "text": "", "album_id": "72157617518821531", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3612/3494017241_1dcda3f880_o.jpg", "secret": "a79af4711c", "media": "photo", "latitude": "0", "id": "3494017241", "tags": "red minnesota outdoors spring midwest may stpaul parade westside twincities saintpaul mn cincodemayo icecreamparlor cincodemayoparade districtdelsol cincodemayo2009"}, {"datetaken": "2009-05-02 10:08:37", "license": "4", "title": "Cinco de Mayo E-Waste (14)", "text": "", "album_id": "72157617601185933", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3306/3500782653_e15d14b203_o.jpg", "secret": "9846f508bd", "media": "photo", "latitude": "0", "id": "3500782653", "tags": ""}, {"datetaken": "2009-05-02 10:27:54", "license": "4", "title": "Cinco de Mayo E-Waste (16)", "text": "", "album_id": "72157617601185933", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3366/3500783741_4422906075_o.jpg", "secret": "45300ea540", "media": "photo", "latitude": "0", "id": "3500783741", "tags": ""}, {"datetaken": "2009-05-02 10:28:05", "license": "4", "title": "Cinco de Mayo E-Waste", "text": "", "album_id": "72157617601185933", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3538/3500783813_27535636d3_o.jpg", "secret": "1c50620a3e", "media": "photo", "latitude": "0", "id": "3500783813", "tags": ""}, {"datetaken": "2009-05-02 10:35:33", "license": "4", "title": "Cinco de Mayo E-Waste (3)", "text": "", "album_id": "72157617601185933", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3311/3500784167_4e1a02480f_o.jpg", "secret": "fe273f6b0e", "media": "photo", "latitude": "0", "id": "3500784167", "tags": ""}, {"datetaken": "2009-05-02 10:38:38", "license": "4", "title": "Cinco de Mayo E-Waste (4)", "text": "", "album_id": "72157617601185933", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3360/3500784437_2be00b1767_o.jpg", "secret": "daf07b838e", "media": "photo", "latitude": "0", "id": "3500784437", "tags": ""}, {"datetaken": "2009-05-02 10:49:14", "license": "4", "title": "Cinco de Mayo E-Waste (5)", "text": "", "album_id": "72157617601185933", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3574/3500782807_7632103c87_o.jpg", "secret": "5d6c5fb2a4", "media": "photo", "latitude": "0", "id": "3500782807", "tags": ""}, {"datetaken": "2009-05-02 11:01:25", "license": "4", "title": "Cinco de Mayo E-Waste (7)", "text": "", "album_id": "72157617601185933", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3651/3500783047_c07090f64c_o.jpg", "secret": "cb11a41561", "media": "photo", "latitude": "0", "id": "3500783047", "tags": ""}, {"datetaken": "2009-05-02 11:04:27", "license": "4", "title": "Cinco de Mayo E-Waste (9)", "text": "", "album_id": "72157617601185933", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3619/3501597950_7e54a26dbf_o.jpg", "secret": "be16440533", "media": "photo", "latitude": "0", "id": "3501597950", "tags": ""}, {"datetaken": "2009-05-02 11:36:28", "license": "4", "title": "Cinco de Mayo E-Waste (11)", "text": "", "album_id": "72157617601185933", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3358/3501598082_bcbdb720ca_o.jpg", "secret": "e11d3c0374", "media": "photo", "latitude": "0", "id": "3501598082", "tags": ""}, {"datetaken": "2009-05-02 11:42:50", "license": "4", "title": "Cinco de Mayo E-Waste (12)", "text": "", "album_id": "72157617601185933", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3356/3501598234_df2442c0ee_o.jpg", "secret": "d96dd16f89", "media": "photo", "latitude": "0", "id": "3501598234", "tags": ""}, {"datetaken": "2009-05-02 11:45:51", "license": "4", "title": "Cinco de Mayo E-Waste (13)", "text": "", "album_id": "72157617601185933", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3401/3500783553_18f4eec77c_o.jpg", "secret": "6f26f921ca", "media": "photo", "latitude": "0", "id": "3500783553", "tags": ""}, {"datetaken": "2011-02-01 12:57:55", "license": "4", "title": "Cinco de Mayo Party", "text": "", "album_id": "72157625956028680", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5176/5408735988_4b70026fd6_o.jpg", "secret": "e19ffe2f8a", "media": "photo", "latitude": "0", "id": "5408735988", "tags": "cincodemayo mexicanparty"}, {"datetaken": "2011-02-01 12:58:01", "license": "4", "title": "Cinco de Mayo Party", "text": "", "album_id": "72157625956028680", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5256/5408736266_0805f49c9b_o.jpg", "secret": "1370ea77cf", "media": "photo", "latitude": "0", "id": "5408736266", "tags": "cincodemayo mexicanparty"}, {"datetaken": "2011-02-01 12:58:10", "license": "4", "title": "Cinco de Mayo Party", "text": "", "album_id": "72157625956028680", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5057/5408127529_900befbb95_o.jpg", "secret": "7290cd4e8a", "media": "photo", "latitude": "0", "id": "5408127529", "tags": "cincodemayo mexicanparty"}, {"datetaken": "2011-02-01 12:58:15", "license": "4", "title": "Cinco de Mayo Party", "text": "", "album_id": "72157625956028680", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5257/5408127755_dd3b0db241_o.jpg", "secret": "e20909caff", "media": "photo", "latitude": "0", "id": "5408127755", "tags": "cincodemayo mexicanparty"}, {"datetaken": "2011-02-01 12:58:23", "license": "4", "title": "Cinco de Mayo Party", "text": "", "album_id": "72157625956028680", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5091/5408737302_bdff4b403d_o.jpg", "secret": "251cc7711d", "media": "photo", "latitude": "0", "id": "5408737302", "tags": "cincodemayo mexicanparty"}, {"datetaken": "2011-02-01 12:58:24", "license": "4", "title": "Cinco de Mayo Party", "text": "", "album_id": "72157625956028680", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5131/5408128183_a1cf41fcc0_o.jpg", "secret": "0141862d65", "media": "photo", "latitude": "0", "id": "5408128183", "tags": "cincodemayo mexicanparty"}, {"datetaken": "2011-02-01 12:58:25", "license": "4", "title": "Cinco de Mayo Party", "text": "", "album_id": "72157625956028680", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5220/5408128263_b3ea388ab2_o.jpg", "secret": "c6f245b5f2", "media": "photo", "latitude": "0", "id": "5408128263", "tags": "cincodemayo mexicanparty"}, {"datetaken": "2011-02-01 12:58:26", "license": "4", "title": "Cinco de Mayo Party", "text": "", "album_id": "72157625956028680", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5020/5408128317_d15e4a77de_o.jpg", "secret": "2fa27d517c", "media": "photo", "latitude": "0", "id": "5408128317", "tags": "cincodemayo mexicanparty"}, {"datetaken": "2011-02-01 12:58:27", "license": "4", "title": "Cinco de Mayo Party", "text": "", "album_id": "72157625956028680", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5096/5408128373_52484c2849_o.jpg", "secret": "838b88cc8e", "media": "photo", "latitude": "0", "id": "5408128373", "tags": "cincodemayo mexicanparty"}, {"datetaken": "2011-02-01 12:58:28", "license": "4", "title": "Cinco de Mayo Party", "text": "", "album_id": "72157625956028680", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5212/5408737534_4bf3db59b2_o.jpg", "secret": "18845784a6", "media": "photo", "latitude": "0", "id": "5408737534", "tags": "cincodemayo mexicanparty"}, {"datetaken": "2011-02-01 12:58:29", "license": "4", "title": "Cinco de Mayo Party", "text": "", "album_id": "72157625956028680", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5020/5408128499_c40385b4ec_o.jpg", "secret": "9e30a0da1c", "media": "photo", "latitude": "0", "id": "5408128499", "tags": "cincodemayo mexicanparty"}, {"datetaken": "2011-02-01 12:58:30", "license": "4", "title": "Cinco de Mayo Party", "text": "", "album_id": "72157625956028680", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5134/5408737636_12b165f0a5_o.jpg", "secret": "b43e099e4d", "media": "photo", "latitude": "0", "id": "5408737636", "tags": "cincodemayo mexicanparty"}, {"datetaken": "2011-02-01 12:58:32", "license": "4", "title": "Cinco de Mayo Party", "text": "", "album_id": "72157625956028680", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5091/5408737700_b916f52aa7_o.jpg", "secret": "9b2a3c5eff", "media": "photo", "latitude": "0", "id": "5408737700", "tags": "cincodemayo mexicanparty"}, {"datetaken": "2011-02-01 12:58:33", "license": "4", "title": "Cinco de Mayo Party", "text": "", "album_id": "72157625956028680", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5252/5408128679_de6d5a3c2c_o.jpg", "secret": "ee580144de", "media": "photo", "latitude": "0", "id": "5408128679", "tags": "cincodemayo mexicanparty"}, {"datetaken": "2011-02-01 12:58:35", "license": "4", "title": "Cinco de Mayo Party", "text": "", "album_id": "72157625956028680", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5214/5408737876_e0bace2c8e_o.jpg", "secret": "70e8b27862", "media": "photo", "latitude": "0", "id": "5408737876", "tags": "cincodemayo mexicanparty"}, {"datetaken": "2011-02-01 12:58:36", "license": "4", "title": "Cinco de Mayo Party", "text": "", "album_id": "72157625956028680", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5058/5408128839_d8dd03445f_o.jpg", "secret": "ec750a5f3f", "media": "photo", "latitude": "0", "id": "5408128839", "tags": "cincodemayo mexicanparty"}, {"datetaken": "2011-02-01 12:58:37", "license": "4", "title": "Cinco de Mayo Party", "text": "", "album_id": "72157625956028680", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5295/5408737964_4225a4d835_o.jpg", "secret": "4386934da8", "media": "photo", "latitude": "0", "id": "5408737964", "tags": "cincodemayo mexicanparty"}, {"datetaken": "2014-05-05 17:43:07", "license": "3", "title": "Cinco_De_Mayo_9A7A9265May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2923/14125898945_b2286dc40f_o.jpg", "secret": "7956e7b633", "media": "photo", "latitude": "0", "id": "14125898945", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 17:44:39", "license": "3", "title": "Cinco_De_Mayo_9A7A9267May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5462/14122579381_4ec2d4b4ed_o.jpg", "secret": "d50fa9d0f5", "media": "photo", "latitude": "0", "id": "14122579381", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 17:44:55", "license": "3", "title": "Cinco_De_Mayo_9A7A9268May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7393/14102719096_e9bdd91a59_o.jpg", "secret": "f2e9c34500", "media": "photo", "latitude": "0", "id": "14102719096", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 17:55:36", "license": "3", "title": "Cinco_De_Mayo_9A7A9271May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2940/13939260570_f05a212bb7_o.jpg", "secret": "55d1d7e493", "media": "photo", "latitude": "0", "id": "13939260570", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 17:55:44", "license": "3", "title": "Cinco_De_Mayo_9A7A9274May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5339/14122578961_9b4b124c18_o.jpg", "secret": "7ea444c82c", "media": "photo", "latitude": "0", "id": "14122578961", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 17:55:56", "license": "3", "title": "Cinco_De_Mayo_9A7A9276May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2902/14122883922_455f6112f3_o.jpg", "secret": "808f6fb16a", "media": "photo", "latitude": "0", "id": "14122883922", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 17:57:45", "license": "3", "title": "Cinco_De_Mayo_9A7A9279May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7417/14145952273_29a0532b1e_o.jpg", "secret": "b3009e827c", "media": "photo", "latitude": "0", "id": "14145952273", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 17:57:59", "license": "3", "title": "Cinco_De_Mayo_9A7A9283May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5488/14122578481_f284667e37_o.jpg", "secret": "36c47a71d6", "media": "photo", "latitude": "0", "id": "14122578481", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 17:58:22", "license": "3", "title": "Cinco_De_Mayo_9A7A9285May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2925/14122578291_8ea09c4427_o.jpg", "secret": "334154fda2", "media": "photo", "latitude": "0", "id": "14122578291", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 17:59:22", "license": "3", "title": "Cinco_De_Mayo_9A7A9288May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7351/14125897715_1c0005b66d_o.jpg", "secret": "25a258d290", "media": "photo", "latitude": "0", "id": "14125897715", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 17:59:31", "license": "3", "title": "Cinco_De_Mayo_9A7A9291May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2930/14126192734_e2c2163d83_o.jpg", "secret": "3b7f198f6d", "media": "photo", "latitude": "0", "id": "14126192734", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 18:31:48", "license": "3", "title": "Cinco_De_Mayo_9A7A9292May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7367/13939221697_0e3fb3f4df_o.jpg", "secret": "877857c72c", "media": "photo", "latitude": "0", "id": "13939221697", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 18:33:06", "license": "3", "title": "Cinco_De_Mayo_9A7A9298May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5196/13939226629_cf4f17dba1_o.jpg", "secret": "7314f75fcf", "media": "photo", "latitude": "0", "id": "13939226629", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 18:33:41", "license": "3", "title": "Cinco_De_Mayo_9A7A9301May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5314/13939226489_ffe3c149bf_o.jpg", "secret": "71f7fca27f", "media": "photo", "latitude": "0", "id": "13939226489", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 18:57:27", "license": "3", "title": "Cinco_De_Mayo_9A7A9304May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5536/13939259210_2a1a79fab7_o.jpg", "secret": "9f4b29ce61", "media": "photo", "latitude": "0", "id": "13939259210", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 18:59:46", "license": "3", "title": "Cinco_De_Mayo_9A7A9308May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7328/14145951153_0de8898d46_o.jpg", "secret": "2445f0c9ef", "media": "photo", "latitude": "0", "id": "14145951153", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 18:59:53", "license": "3", "title": "Cinco_De_Mayo_9A7A9310May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2928/14126192044_daa9c38168_o.jpg", "secret": "eb9149a185", "media": "photo", "latitude": "0", "id": "14126192044", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 19:00:05", "license": "3", "title": "Cinco_De_Mayo_9A7A9312May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7318/14102717116_c3d1554b60_o.jpg", "secret": "8c051f0697", "media": "photo", "latitude": "0", "id": "14102717116", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 19:00:12", "license": "3", "title": "Cinco_De_Mayo_9A7A9315May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7409/14145950803_34a814f28f_o.jpg", "secret": "fe8b4c7270", "media": "photo", "latitude": "0", "id": "14145950803", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 19:00:19", "license": "3", "title": "Cinco_De_Mayo_9A7A9320May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7319/14126191634_0d488ea224_o.jpg", "secret": "be2d339b78", "media": "photo", "latitude": "0", "id": "14126191634", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 19:01:00", "license": "3", "title": "Cinco_De_Mayo_9A7A9327May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5273/14145950623_268f04c062_o.jpg", "secret": "f111bc6fb4", "media": "photo", "latitude": "0", "id": "14145950623", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 19:01:31", "license": "3", "title": "Cinco_De_Mayo_9A7A9331May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7350/13939258440_7337232d5e_o.jpg", "secret": "331bf1339b", "media": "photo", "latitude": "0", "id": "13939258440", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 19:01:54", "license": "3", "title": "Cinco_De_Mayo_9A7A9332May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5575/14145950483_8202a52099_o.jpg", "secret": "04a6ba923d", "media": "photo", "latitude": "0", "id": "14145950483", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 19:03:55", "license": "3", "title": "Cinco_De_Mayo_9A7A9335May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2916/13939258170_1a6d552325_o.jpg", "secret": "f687175aa4", "media": "photo", "latitude": "0", "id": "13939258170", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 19:04:34", "license": "3", "title": "Cinco_De_Mayo_9A7A9338May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2897/14122881572_84ca936b12_o.jpg", "secret": "d058209e4d", "media": "photo", "latitude": "0", "id": "14122881572", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 19:07:26", "license": "3", "title": "Cinco_De_Mayo_9A7A9345May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5115/14126190904_92d33489ba_o.jpg", "secret": "1f14336027", "media": "photo", "latitude": "0", "id": "14126190904", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 19:10:16", "license": "3", "title": "Cinco_De_Mayo_9A7A9354May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2917/14122881322_9db7e7acee_o.jpg", "secret": "0cf87bbea4", "media": "photo", "latitude": "0", "id": "14122881322", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 19:10:35", "license": "3", "title": "Cinco_De_Mayo_9A7A9355May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5317/13939219777_cb6762a939_o.jpg", "secret": "23d450d7b5", "media": "photo", "latitude": "0", "id": "13939219777", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 19:40:00", "license": "3", "title": "Cinco_De_Mayo_9A7A9356May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7348/13939224769_8ee03dcb6c_o.jpg", "secret": "2dabb20e72", "media": "photo", "latitude": "0", "id": "13939224769", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2014-05-05 19:42:17", "license": "3", "title": "Cinco_De_Mayo_9A7A9359May 05, 2014Drew_DeGennaro", "text": "", "album_id": "72157644594336393", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5519/13939219497_2b516b30f7_o.jpg", "secret": "841d8659fb", "media": "photo", "latitude": "0", "id": "13939219497", "tags": "austin photography texas photographer events photojournalism photographers event drewdegennaro drewdvisions drewdvisionscom 72157644594336393"}, {"datetaken": "2015-05-05 19:12:18", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8865/17183271557_a28561c077_o.jpg", "secret": "7ef4a9d3a2", "media": "photo", "latitude": "0", "id": "17183271557", "tags": ""}, {"datetaken": "2015-05-05 19:12:24", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7684/16770441773_1bee33e715_o.jpg", "secret": "20c7d8e008", "media": "photo", "latitude": "0", "id": "16770441773", "tags": ""}, {"datetaken": "2015-05-05 19:13:02", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7683/16770444353_6c3ebec2c0_o.jpg", "secret": "93dd0f76e1", "media": "photo", "latitude": "0", "id": "16770444353", "tags": ""}, {"datetaken": "2015-05-05 19:50:13", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8777/16770442263_ff021dc128_o.jpg", "secret": "6dc73379f3", "media": "photo", "latitude": "0", "id": "16770442263", "tags": ""}, {"datetaken": "2015-05-05 19:50:21", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7662/17183270387_b4ca0bd63c_o.jpg", "secret": "de38c12536", "media": "photo", "latitude": "0", "id": "17183270387", "tags": ""}, {"datetaken": "2015-05-05 19:52:45", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7678/17203136780_db88118200_o.jpg", "secret": "59659b0f50", "media": "photo", "latitude": "0", "id": "17203136780", "tags": ""}, {"datetaken": "2015-05-05 19:56:57", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8846/16770442523_96022ca936_o.jpg", "secret": "b845590af3", "media": "photo", "latitude": "0", "id": "16770442523", "tags": ""}, {"datetaken": "2015-05-05 19:57:09", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8799/17390360561_b9c3cbe704_o.jpg", "secret": "4e7a183fc2", "media": "photo", "latitude": "0", "id": "17390360561", "tags": ""}, {"datetaken": "2015-05-05 19:59:58", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7755/17390360881_0003b434ce_o.jpg", "secret": "8cf05da103", "media": "photo", "latitude": "0", "id": "17390360881", "tags": ""}, {"datetaken": "2015-05-05 20:00:11", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8736/17183270967_4094fd582e_o.jpg", "secret": "cb418d256a", "media": "photo", "latitude": "0", "id": "17183270967", "tags": ""}, {"datetaken": "2015-05-05 20:00:35", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7686/17388737732_bb1512b334_o.jpg", "secret": "10444eec26", "media": "photo", "latitude": "0", "id": "17388737732", "tags": ""}, {"datetaken": "2015-05-05 20:07:53", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8719/17204498059_41479a5d5f_o.jpg", "secret": "a4a8879936", "media": "photo", "latitude": "0", "id": "17204498059", "tags": ""}, {"datetaken": "2015-05-05 20:07:58", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8892/17364754496_18d0316348_o.jpg", "secret": "7a9e33d0a4", "media": "photo", "latitude": "0", "id": "17364754496", "tags": ""}, {"datetaken": "2015-05-05 20:08:27", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8797/17388739492_f8cc14f633_o.jpg", "secret": "fbee9650ea", "media": "photo", "latitude": "0", "id": "17388739492", "tags": ""}, {"datetaken": "2015-05-05 20:08:58", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7710/17390361741_3ea248d6b9_o.jpg", "secret": "230a7a8c58", "media": "photo", "latitude": "0", "id": "17390361741", "tags": ""}, {"datetaken": "2015-05-05 20:09:25", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5326/17390361791_026d1d474e_o.jpg", "secret": "105eea9dbf", "media": "photo", "latitude": "0", "id": "17390361791", "tags": ""}, {"datetaken": "2015-05-05 20:14:42", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8892/17183271927_f4293169e3_o.jpg", "secret": "01ec2f8e17", "media": "photo", "latitude": "0", "id": "17183271927", "tags": ""}, {"datetaken": "2015-05-05 20:15:23", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7702/17204498889_2e5b5a62c4_o.jpg", "secret": "b46618ba06", "media": "photo", "latitude": "0", "id": "17204498889", "tags": ""}, {"datetaken": "2015-05-05 20:15:49", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7739/17364755376_f415515ec7_o.jpg", "secret": "996ca20e11", "media": "photo", "latitude": "0", "id": "17364755376", "tags": ""}, {"datetaken": "2015-05-05 20:25:45", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7768/16768201914_05831ec458_o.jpg", "secret": "9e718df481", "media": "photo", "latitude": "0", "id": "16768201914", "tags": ""}, {"datetaken": "2015-05-05 20:27:06", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7693/17364755586_a8d70086b3_o.jpg", "secret": "ee25f0fab1", "media": "photo", "latitude": "0", "id": "17364755586", "tags": ""}, {"datetaken": "2015-05-05 20:27:48", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7750/17390359351_d11a558c9b_o.jpg", "secret": "c40a362d65", "media": "photo", "latitude": "0", "id": "17390359351", "tags": ""}, {"datetaken": "2015-05-05 20:28:06", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8686/17390362711_aa1f01a5fe_o.jpg", "secret": "3635502e22", "media": "photo", "latitude": "0", "id": "17390362711", "tags": ""}, {"datetaken": "2015-05-05 20:28:44", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7751/17204499549_b5e56042e0_o.jpg", "secret": "9d2f1243d7", "media": "photo", "latitude": "0", "id": "17204499549", "tags": ""}, {"datetaken": "2015-05-05 20:41:21", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5453/17390362951_d39fef8e01_o.jpg", "secret": "3135c2743f", "media": "photo", "latitude": "0", "id": "17390362951", "tags": ""}, {"datetaken": "2015-05-05 20:42:25", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7791/17388735642_08a97aba8c_o.jpg", "secret": "bd7025564f", "media": "photo", "latitude": "0", "id": "17388735642", "tags": ""}, {"datetaken": "2015-05-05 20:56:31", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8843/17390722605_a8e2283559_o.jpg", "secret": "3b733af158", "media": "photo", "latitude": "0", "id": "17390722605", "tags": ""}, {"datetaken": "2015-05-05 20:56:38", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7730/17183269627_d5063671eb_o.jpg", "secret": "4570d43609", "media": "photo", "latitude": "0", "id": "17183269627", "tags": ""}, {"datetaken": "2015-05-05 20:57:06", "license": "3", "title": "Manhattan Elite Event: Manhattan By Sail", "text": "", "album_id": "72157650066498734", "longitude": "0", "url_o": "https://farm8.staticflickr.com/7785/17388739512_a601aa226d_o.jpg", "secret": "5c68185771", "media": "photo", "latitude": "0", "id": "17388739512", "tags": ""}, {"datetaken": "2007-01-26 22:51:48", "license": "1", "title": "", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/379071629_e36a3e3ea2_o.jpg", "secret": "e36a3e3ea2", "media": "photo", "latitude": "0", "id": "379071629", "tags": "birthday japan leticia"}, {"datetaken": "2007-01-26 22:53:50", "license": "1", "title": "", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/379071817_9ba3d4c449_o.jpg", "secret": "9ba3d4c449", "media": "photo", "latitude": "0", "id": "379071817", "tags": "birthday japan leticia"}, {"datetaken": "2007-01-26 23:03:42", "license": "1", "title": "Portrait", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/379072025_fa6d96e315_o.jpg", "secret": "fa6d96e315", "media": "photo", "latitude": "0", "id": "379072025", "tags": "birthday portrait japan leticia"}, {"datetaken": "2007-01-26 23:03:54", "license": "1", "title": "", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/379072240_7be37ffb04_o.jpg", "secret": "7be37ffb04", "media": "photo", "latitude": "0", "id": "379072240", "tags": "birthday portrait eye japan leticia"}, {"datetaken": "2007-01-26 23:04:21", "license": "1", "title": "", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/379072535_b79eb85487_o.jpg", "secret": "b79eb85487", "media": "photo", "latitude": "0", "id": "379072535", "tags": "birthday portrait japan leticia"}, {"datetaken": "2007-01-27 14:17:01", "license": "1", "title": "red coat", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/182/379072730_181981cc4c_o.jpg", "secret": "181981cc4c", "media": "photo", "latitude": "0", "id": "379072730", "tags": "birthday red japan coat leticia"}, {"datetaken": "2007-01-27 14:17:15", "license": "1", "title": "Outing", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/379072974_d8f2ef0b4a_o.jpg", "secret": "d8f2ef0b4a", "media": "photo", "latitude": "0", "id": "379072974", "tags": "birthday bw japan leticia"}, {"datetaken": "2007-01-27 16:06:49", "license": "1", "title": "Rar!", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/379073208_7550409efe_o.jpg", "secret": "7550409efe", "media": "photo", "latitude": "0", "id": "379073208", "tags": "birthday chris animal japan erin hats fukuoka leticia hawkstown"}, {"datetaken": "2007-01-27 17:14:53", "license": "1", "title": "Kyogre", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/379073376_8741b03400_o.jpg", "secret": "8741b03400", "media": "photo", "latitude": "0", "id": "379073376", "tags": "birthday japan stuffedanimal pokemon leticia kyogre"}, {"datetaken": "2007-01-27 17:15:04", "license": "1", "title": "Take me home!", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/379073660_8e6535648d_o.jpg", "secret": "8e6535648d", "media": "photo", "latitude": "0", "id": "379073660", "tags": "birthday japan stuffedanimal pokemon leticia kyogre"}, {"datetaken": "2007-01-27 18:55:53", "license": "1", "title": "You say it's your birthday..", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/379073843_e7fb960dd0_o.jpg", "secret": "e7fb960dd0", "media": "photo", "latitude": "0", "id": "379073843", "tags": "birthday chris cake japan dinner leticia"}, {"datetaken": "2007-01-27 19:51:15", "license": "1", "title": "Birthday Bowling", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/379074036_5dd0afe3d9_o.jpg", "secret": "5dd0afe3d9", "media": "photo", "latitude": "0", "id": "379074036", "tags": "birthday japan bowling leticia"}, {"datetaken": "2007-01-27 20:10:42", "license": "1", "title": "Yatta!", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/379074380_814d59f455_o.jpg", "secret": "814d59f455", "media": "photo", "latitude": "0", "id": "379074380", "tags": "birthday japan bowling leticia"}, {"datetaken": "2007-01-27 20:10:46", "license": "1", "title": "No, the other way!", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/379074616_5daa730162_o.jpg", "secret": "5daa730162", "media": "photo", "latitude": "0", "id": "379074616", "tags": "birthday japan bowling leticia"}, {"datetaken": "2007-01-27 20:15:52", "license": "1", "title": "Surveying the Lanes", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/136/379074808_b65c0efc49_o.jpg", "secret": "b65c0efc49", "media": "photo", "latitude": "0", "id": "379074808", "tags": "birthday me japan notmine blacklight"}, {"datetaken": "2007-01-28 12:43:38", "license": "1", "title": "Chocolate Rose Leaves", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/379075059_797d0ce92e_o.jpg", "secret": "797d0ce92e", "media": "photo", "latitude": "0", "id": "379075059", "tags": "birthday food cooking leaves rose japan chocolate leticia apricottorte"}, {"datetaken": "2007-01-28 12:43:54", "license": "1", "title": "", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/379075295_c59fcde8c1_o.jpg", "secret": "c59fcde8c1", "media": "photo", "latitude": "0", "id": "379075295", "tags": "birthday food cooking leaves rose japan chocolate leticia apricottorte"}, {"datetaken": "2007-01-28 13:50:43", "license": "1", "title": "Apricot Roses", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/379075579_90170d8957_o.jpg", "secret": "90170d8957", "media": "photo", "latitude": "0", "id": "379075579", "tags": "birthday food cooking me rose japan notmine apricot leticia apricottorte"}, {"datetaken": "2007-01-28 13:51:06", "license": "1", "title": "Petals", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/126/379075894_48d8b61920_o.jpg", "secret": "48d8b61920", "media": "photo", "latitude": "0", "id": "379075894", "tags": "birthday food cooking me rose japan notmine hands apricot leticia apricottorte"}, {"datetaken": "2007-01-28 18:11:51", "license": "1", "title": "Nikolai", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/379076129_11a56bd6b3_o.jpg", "secret": "11a56bd6b3", "media": "photo", "latitude": "0", "id": "379076129", "tags": "birthday japan nick leticia"}, {"datetaken": "2007-01-28 18:48:51", "license": "1", "title": "Tetrazinni", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/379076333_2bc58201c7_o.jpg", "secret": "2bc58201c7", "media": "photo", "latitude": "0", "id": "379076333", "tags": "birthday food cooking japan tetrazinni"}, {"datetaken": "2007-01-28 19:20:55", "license": "1", "title": "Apricot Torte", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/379076592_c6523108dd_o.jpg", "secret": "c6523108dd", "media": "photo", "latitude": "0", "id": "379076592", "tags": "birthday food cooking japan apricottorte"}, {"datetaken": "2007-01-28 19:21:05", "license": "1", "title": "Bon Appetit!", "text": "", "album_id": "72157594516747342", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/379076902_625cb33617_o.jpg", "secret": "625cb33617", "media": "photo", "latitude": "0", "id": "379076902", "tags": "birthday food cooking japan apricottorte"}, {"datetaken": "2007-01-06 10:17:36", "license": "3", "title": "IMG_1743.JPG", "text": "", "album_id": "72157594470466768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/352262437_6dedc5e86c_o.jpg", "secret": "6dedc5e86c", "media": "photo", "latitude": "0", "id": "352262437", "tags": "food seaweed cooking dinner fun steve maine gift lobster newyears rachele lobsterrace"}, {"datetaken": "2007-01-06 16:04:33", "license": "3", "title": "IMG_1745.JPG", "text": "", "album_id": "72157594470466768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/352260900_9c7cba12b6_o.jpg", "secret": "9c7cba12b6", "media": "photo", "latitude": "0", "id": "352260900", "tags": "food seaweed cooking dinner fun steve maine gift lobster newyears rachele lobsterrace"}, {"datetaken": "2007-01-06 16:06:13", "license": "3", "title": "IMG_1747.JPG", "text": "", "album_id": "72157594470466768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/352258109_ba66dfdeb9_o.jpg", "secret": "ba66dfdeb9", "media": "photo", "latitude": "0", "id": "352258109", "tags": "food seaweed cooking dinner fun steve maine gift lobster newyears rachele lobsterrace"}, {"datetaken": "2007-01-06 16:08:16", "license": "3", "title": "IMG_1749.JPG", "text": "", "album_id": "72157594470466768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/352255952_c2868c7148_o.jpg", "secret": "c2868c7148", "media": "photo", "latitude": "0", "id": "352255952", "tags": "food seaweed cooking dinner fun steve maine gift lobster newyears rachele lobsterrace"}, {"datetaken": "2007-01-06 16:09:12", "license": "3", "title": "IMG_1750.JPG", "text": "", "album_id": "72157594470466768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/352254483_106a8c991d_o.jpg", "secret": "106a8c991d", "media": "photo", "latitude": "0", "id": "352254483", "tags": "food seaweed cooking dinner fun steve maine gift lobster newyears rachele lobsterrace"}, {"datetaken": "2007-01-06 16:09:16", "license": "3", "title": "IMG_1751.JPG", "text": "", "album_id": "72157594470466768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/352252892_c56c10673a_o.jpg", "secret": "c56c10673a", "media": "photo", "latitude": "0", "id": "352252892", "tags": "lobster maine newyears gift rachele steve lobsterrace seaweed cooking food dinner fun"}, {"datetaken": "2007-01-06 16:09:23", "license": "3", "title": "IMG_1752.JPG", "text": "", "album_id": "72157594470466768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/352251165_773f7ca626_o.jpg", "secret": "773f7ca626", "media": "photo", "latitude": "0", "id": "352251165", "tags": "food seaweed cooking dinner fun steve maine gift lobster newyears rachele lobsterrace"}, {"datetaken": "2007-01-06 17:17:55", "license": "3", "title": "IMG_1755.JPG", "text": "", "album_id": "72157594470466768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/352248369_e98f6cbba9_o.jpg", "secret": "e98f6cbba9", "media": "photo", "latitude": "0", "id": "352248369", "tags": "food seaweed cooking dinner fun steve maine gift lobster newyears rachele lobsterrace"}, {"datetaken": "2007-01-06 17:18:34", "license": "3", "title": "IMG_1757.JPG", "text": "", "album_id": "72157594470466768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/352246880_deb017fdb8_o.jpg", "secret": "deb017fdb8", "media": "photo", "latitude": "0", "id": "352246880", "tags": "food seaweed cooking dinner fun steve maine gift lobster newyears rachele lobsterrace"}, {"datetaken": "2007-01-06 17:19:09", "license": "3", "title": "IMG_1760.JPG", "text": "", "album_id": "72157594470466768", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/352245521_b12baf99e6_o.jpg", "secret": "b12baf99e6", "media": "photo", "latitude": "0", "id": "352245521", "tags": "food seaweed cooking dinner fun steve maine gift lobster newyears rachele lobsterrace"}, {"datetaken": "2005-02-10 18:20:59", "license": "1", "title": "cooking-thai-01", "text": "", "album_id": "117776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4680921_aadadf5c38_o.jpg", "secret": "aadadf5c38", "media": "photo", "latitude": "0", "id": "4680921", "tags": "cooking food thai dinnerparty goingawayparty housewarmingparty thaichilies cilantro knives thaieggplant garlic shallots peanuts"}, {"datetaken": "2005-02-10 18:21:08", "license": "1", "title": "cooking-thai-02", "text": "", "album_id": "117776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4681055_3248d1bed6_o.jpg", "secret": "3248d1bed6", "media": "photo", "latitude": "0", "id": "4681055", "tags": "cooking food thai dinnerparty goingawayparty housewarmingparty thaichilies"}, {"datetaken": "2005-02-10 18:21:23", "license": "1", "title": "cooking-thai-03", "text": "", "album_id": "117776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4681101_7ca889951a_o.jpg", "secret": "7ca889951a", "media": "photo", "latitude": "0", "id": "4681101", "tags": "cooking food thai dinnerparty goingawayparty housewarmingparty"}, {"datetaken": "2005-02-10 18:22:13", "license": "1", "title": "cooking-thai-04", "text": "", "album_id": "117776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4681132_1ebe589559_o.jpg", "secret": "1ebe589559", "media": "photo", "latitude": "0", "id": "4681132", "tags": "cooking food thai dinnerparty goingawayparty housewarmingparty"}, {"datetaken": "2005-02-10 18:23:35", "license": "1", "title": "cooking-thai-05", "text": "", "album_id": "117776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4681168_181b97ce73_o.jpg", "secret": "181b97ce73", "media": "photo", "latitude": "0", "id": "4681168", "tags": "cooking food thai dinnerparty goingawayparty housewarmingparty"}, {"datetaken": "2005-02-10 18:24:08", "license": "1", "title": "cooking-thai-06", "text": "", "album_id": "117776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4681214_2e6ed7e363_o.jpg", "secret": "2e6ed7e363", "media": "photo", "latitude": "0", "id": "4681214", "tags": "cooking food thai dinnerparty goingawayparty housewarmingparty"}, {"datetaken": "2005-02-10 18:24:32", "license": "1", "title": "cooking-thai-07", "text": "", "album_id": "117776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4681245_6703a64975_o.jpg", "secret": "6703a64975", "media": "photo", "latitude": "0", "id": "4681245", "tags": "cooking food thai dinnerparty goingawayparty housewarmingparty"}, {"datetaken": "2005-02-10 19:31:05", "license": "1", "title": "cooking-thai-08", "text": "", "album_id": "117776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4681277_6ac8031c26_o.jpg", "secret": "6ac8031c26", "media": "photo", "latitude": "0", "id": "4681277", "tags": "cooking food thai dinnerparty goingawayparty housewarmingparty"}, {"datetaken": "2005-02-10 19:31:20", "license": "1", "title": "cooking-thai-09", "text": "", "album_id": "117776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4681310_56aa9f8b67_o.jpg", "secret": "56aa9f8b67", "media": "photo", "latitude": "0", "id": "4681310", "tags": "cooking food thai dinnerparty goingawayparty housewarmingparty"}, {"datetaken": "2005-02-10 19:31:43", "license": "1", "title": "cooking-thai-10", "text": "", "album_id": "117776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4681352_02dfac9783_o.jpg", "secret": "02dfac9783", "media": "photo", "latitude": "0", "id": "4681352", "tags": "cooking food thai dinnerparty goingawayparty housewarmingparty wok ricecooker stove"}, {"datetaken": "2005-02-10 19:32:21", "license": "1", "title": "cooking-thai-11", "text": "", "album_id": "117776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4681388_90f292fa75_o.jpg", "secret": "90f292fa75", "media": "photo", "latitude": "0", "id": "4681388", "tags": "cooking food thai dinnerparty goingawayparty housewarmingparty coconutmilk chaokoh ingredients"}, {"datetaken": "2005-02-10 21:01:02", "license": "1", "title": "cooking-thai-12", "text": "", "album_id": "117776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4681425_d8f24089db_o.jpg", "secret": "d8f24089db", "media": "photo", "latitude": "0", "id": "4681425", "tags": "cooking food thai dinnerparty goingawayparty housewarmingparty"}, {"datetaken": "2005-02-10 21:01:06", "license": "1", "title": "cooking-thai-13", "text": "", "album_id": "117776", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/4681448_db61a9f549_o.jpg", "secret": "db61a9f549", "media": "photo", "latitude": "0", "id": "4681448", "tags": "cooking food thai dinnerparty goingawayparty housewarmingparty"}, {"datetaken": "2007-01-07 18:43:43", "license": "3", "title": "Danny cooks dinner", "text": "", "album_id": "72157594478032462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/356472832_3e76bc9287_o.jpg", "secret": "3e76bc9287", "media": "photo", "latitude": "0", "id": "356472832", "tags": "sanfrancisco food"}, {"datetaken": "2007-01-07 18:44:57", "license": "3", "title": "Phil and Danny", "text": "", "album_id": "72157594478032462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/356473647_07bf57b3ca_o.jpg", "secret": "07bf57b3ca", "media": "photo", "latitude": "0", "id": "356473647", "tags": "sanfrancisco phil danny"}, {"datetaken": "2007-01-07 18:45:15", "license": "3", "title": "pork with tomato sauce", "text": "", "album_id": "72157594478032462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/356474330_53ae497581_o.jpg", "secret": "53ae497581", "media": "photo", "latitude": "0", "id": "356474330", "tags": "sanfrancisco food"}, {"datetaken": "2007-01-07 18:45:24", "license": "3", "title": "pork and shrimp", "text": "", "album_id": "72157594478032462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/356474989_6e62d58295_o.jpg", "secret": "6e62d58295", "media": "photo", "latitude": "0", "id": "356474989", "tags": "sanfrancisco food"}, {"datetaken": "2007-01-07 18:45:38", "license": "3", "title": "greens in broth", "text": "", "album_id": "72157594478032462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/356475611_d465985f87_o.jpg", "secret": "d465985f87", "media": "photo", "latitude": "0", "id": "356475611", "tags": "sanfrancisco food"}, {"datetaken": "2007-01-07 19:04:34", "license": "3", "title": "Phil", "text": "", "album_id": "72157594478032462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/356476263_bb536da2a9_o.jpg", "secret": "bb536da2a9", "media": "photo", "latitude": "0", "id": "356476263", "tags": "sanfrancisco phil"}, {"datetaken": "2007-01-07 19:04:37", "license": "3", "title": "Phil", "text": "", "album_id": "72157594478032462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/356477044_f316577ad5_o.jpg", "secret": "f316577ad5", "media": "photo", "latitude": "0", "id": "356477044", "tags": "sanfrancisco phil"}, {"datetaken": "2007-01-07 19:26:44", "license": "3", "title": "Bombay Bazar and Ice Creamery", "text": "", "album_id": "72157594478032462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/356478413_534d235915_o.jpg", "secret": "534d235915", "media": "photo", "latitude": "0", "id": "356478413", "tags": "sanfrancisco bazaar"}, {"datetaken": "2007-01-07 19:27:32", "license": "3", "title": "ice cream", "text": "", "album_id": "72157594478032462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/356479297_c5ff282087_o.jpg", "secret": "c5ff282087", "media": "photo", "latitude": "0", "id": "356479297", "tags": "sanfrancisco food icecream"}, {"datetaken": "2007-01-07 19:27:56", "license": "3", "title": "ice cream", "text": "", "album_id": "72157594478032462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/139/356480123_69cfc8a0ba_o.jpg", "secret": "69cfc8a0ba", "media": "photo", "latitude": "0", "id": "356480123", "tags": "sanfrancisco food icecream"}, {"datetaken": "2007-01-07 19:28:21", "license": "3", "title": "ice cream", "text": "", "album_id": "72157594478032462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/165/356481203_549cbdfe9a_o.jpg", "secret": "549cbdfe9a", "media": "photo", "latitude": "0", "id": "356481203", "tags": "sanfrancisco food icecream"}, {"datetaken": "2007-01-07 19:28:59", "license": "3", "title": "ice cream", "text": "", "album_id": "72157594478032462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/138/356482161_3213bb0a63_o.jpg", "secret": "3213bb0a63", "media": "photo", "latitude": "0", "id": "356482161", "tags": "sanfrancisco food icecream"}, {"datetaken": "2007-01-07 19:32:19", "license": "3", "title": "Star War ice cream", "text": "", "album_id": "72157594478032462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/356483458_c8eefab5da_o.jpg", "secret": "c8eefab5da", "media": "photo", "latitude": "0", "id": "356483458", "tags": "sanfrancisco food icecream"}, {"datetaken": "2007-01-07 19:34:39", "license": "3", "title": "Drew and Danny", "text": "", "album_id": "72157594478032462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/356484490_fedc367fed_o.jpg", "secret": "fedc367fed", "media": "photo", "latitude": "0", "id": "356484490", "tags": "sanfrancisco drew danny"}, {"datetaken": "2007-01-07 19:42:44", "license": "3", "title": "furniture store", "text": "", "album_id": "72157594478032462", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/356485576_eb79f22c48_o.jpg", "secret": "eb79f22c48", "media": "photo", "latitude": "0", "id": "356485576", "tags": "sanfrancisco"}, {"datetaken": "2010-02-19 20:43:18", "license": "3", "title": "Mr. Wunder", "text": "", "album_id": "72157623361190375", "longitude": "-70.224906", "url_o": "https://farm5.staticflickr.com/4036/4378315467_4e3179e188_o.jpg", "secret": "42fe8d393d", "media": "photo", "latitude": "45.086486", "id": "4378315467", "tags": "winter friends mountains cooking beer dinner skiing maine condo sugarloaf"}, {"datetaken": "2010-02-19 20:44:00", "license": "3", "title": "A Shauni smile", "text": "", "album_id": "72157623361190375", "longitude": "-70.224906", "url_o": "https://farm5.staticflickr.com/4042/4379068956_6e44de0edf_o.jpg", "secret": "1032429e31", "media": "photo", "latitude": "45.086486", "id": "4379068956", "tags": "winter mountains hot cooking kitchen smile happy skiing maine sugarloaf"}, {"datetaken": "2010-02-19 22:22:23", "license": "3", "title": "2nd attempt at black and tan", "text": "", "album_id": "72157623361190375", "longitude": "-70.224906", "url_o": "https://farm5.staticflickr.com/4007/4378316651_1a7f37183c_o.jpg", "secret": "528e8842f2", "media": "photo", "latitude": "45.086486", "id": "4378316651", "tags": "winter mountains beer skiing maine delicious sugarloaf"}, {"datetaken": "2010-02-20 10:48:19", "license": "3", "title": "Wunder getting ready for the mountain", "text": "", "album_id": "72157623361190375", "longitude": "-70.224906", "url_o": "https://farm5.staticflickr.com/4006/4378317315_a4b5d693c2_o.jpg", "secret": "70c5e6b48a", "media": "photo", "latitude": "45.086486", "id": "4378317315", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2010-02-20 19:41:49", "license": "3", "title": "The crew at the Shipyard Brewhaus", "text": "", "album_id": "72157623361190375", "longitude": "-70.309517", "url_o": "https://farm5.staticflickr.com/4033/4379070644_c85a509c0a_o.jpg", "secret": "d41905369f", "media": "photo", "latitude": "45.058198", "id": "4379070644", "tags": "winter food mountains skiing maine sugarloaf shipyard brewhaus"}, {"datetaken": "2010-02-20 19:41:57", "license": "3", "title": "Discussing the day ahead", "text": "", "album_id": "72157623361190375", "longitude": "-70.309517", "url_o": "https://farm3.staticflickr.com/2690/4378318645_492ea0d364_o.jpg", "secret": "55ea503d77", "media": "photo", "latitude": "45.058198", "id": "4378318645", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2010-02-21 13:39:56", "license": "3", "title": "Top of Whiffletree lift", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm5.staticflickr.com/4051/4378319223_670517aca3_o.jpg", "secret": "0cf8ef9f18", "media": "photo", "latitude": "45.033137", "id": "4378319223", "tags": "winter snow mountains skiing lift maine trails sugarloaf whiffletree"}, {"datetaken": "2010-02-21 13:40:05", "license": "3", "title": "Looking good", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm3.staticflickr.com/2776/4379072340_5c889d2df7_o.jpg", "secret": "356a7d243f", "media": "photo", "latitude": "45.033137", "id": "4379072340", "tags": "winter snow mountains skiing maine sugarloaf whiffletree"}, {"datetaken": "2010-02-21 13:40:30", "license": "3", "title": "What a crew", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm5.staticflickr.com/4069/4379072850_4d5ee0713b_o.jpg", "secret": "6b64cf3358", "media": "photo", "latitude": "45.033137", "id": "4379072850", "tags": "winter mountains skiing maine sugarloaf whiffletree"}, {"datetaken": "2010-02-21 13:43:30", "license": "3", "title": "Action shot", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm5.staticflickr.com/4048/4378320875_fea7919b8c_o.jpg", "secret": "8c3378fb90", "media": "photo", "latitude": "45.033137", "id": "4378320875", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2010-02-21 13:43:48", "license": "3", "title": "Don't eyeball me, Macasek", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm5.staticflickr.com/4014/4378321451_ee6d08cbd4_o.jpg", "secret": "899a1c5029", "media": "photo", "latitude": "45.033137", "id": "4378321451", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2010-02-21 13:44:13", "license": "3", "title": "Up the mountain", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm5.staticflickr.com/4017/4378322041_f6b2a2b20d_o.jpg", "secret": "277fe60766", "media": "photo", "latitude": "45.033137", "id": "4378322041", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2010-02-21 13:44:38", "license": "3", "title": "Stephanie fights with gravity and loses", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm5.staticflickr.com/4001/4379075162_37a36f1c81_o.jpg", "secret": "766a1f46b3", "media": "photo", "latitude": "45.033137", "id": "4379075162", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2010-02-21 13:46:19", "license": "3", "title": "Shauni, considering going pro", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm5.staticflickr.com/4063/4379075706_87bd439092_o.jpg", "secret": "bae5bb762e", "media": "photo", "latitude": "45.033137", "id": "4379075706", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2010-02-21 13:48:32", "license": "3", "title": "Ladies", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm3.staticflickr.com/2680/4378323853_6901fb5a2e_o.jpg", "secret": "087b6b0515", "media": "photo", "latitude": "45.033137", "id": "4378323853", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2010-02-21 13:48:35", "license": "3", "title": "Relaxed", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm3.staticflickr.com/2729/4378324421_abbcdd37da_o.jpg", "secret": "7aedea437d", "media": "photo", "latitude": "45.033137", "id": "4378324421", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2010-02-21 13:48:50", "license": "3", "title": "Who are you looking at?", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm3.staticflickr.com/2677/4379077626_57b9c120ff_o.jpg", "secret": "b175977af5", "media": "photo", "latitude": "45.033137", "id": "4379077626", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2010-02-21 14:04:35", "license": "3", "title": "Speed!", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm5.staticflickr.com/4016/4378325795_1320266def_o.jpg", "secret": "71a2de3e73", "media": "photo", "latitude": "45.033137", "id": "4378325795", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2010-02-21 14:04:41", "license": "3", "title": "Look at that concentration", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm3.staticflickr.com/2792/4378326295_0847a2329b_o.jpg", "secret": "c2674a483c", "media": "photo", "latitude": "45.033137", "id": "4378326295", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2010-02-21 14:04:58", "license": "3", "title": "Shani did not stop to see how the picture came out", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm5.staticflickr.com/4069/4378326773_de14fc4cef_o.jpg", "secret": "feb2b8dea3", "media": "photo", "latitude": "45.033137", "id": "4378326773", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2010-02-21 14:05:23", "license": "3", "title": "Wunder demonstrating his prowess", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm5.staticflickr.com/4067/4379079646_3dde1b1d2b_o.jpg", "secret": "d0b19843d0", "media": "photo", "latitude": "45.033137", "id": "4379079646", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2010-02-21 14:05:33", "license": "3", "title": "Macasek getting crazy", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm3.staticflickr.com/2693/4379080104_b3e7473078_o.jpg", "secret": "e353c151d9", "media": "photo", "latitude": "45.033137", "id": "4379080104", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2010-02-21 14:28:55", "license": "3", "title": "Wrong direction, buddy", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm5.staticflickr.com/4057/4379080630_23b1982da1_o.jpg", "secret": "985777c3b3", "media": "photo", "latitude": "45.033137", "id": "4379080630", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2010-02-21 14:29:10", "license": "3", "title": "Day's end", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm3.staticflickr.com/2730/4379081236_60ee0454c5_o.jpg", "secret": "3a90828a49", "media": "photo", "latitude": "45.033137", "id": "4379081236", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2010-02-21 15:16:07", "license": "3", "title": "Down the valley", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm5.staticflickr.com/4037/4379081714_f6bae1380c_o.jpg", "secret": "da2aac0ab7", "media": "photo", "latitude": "45.033137", "id": "4379081714", "tags": "winter mountains skiing maine valley sugarloaf carrabassett"}, {"datetaken": "2010-02-21 15:36:51", "license": "3", "title": "West mountain", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm3.staticflickr.com/2687/4379082292_659b188069_o.jpg", "secret": "1d49877ff7", "media": "photo", "latitude": "45.033137", "id": "4379082292", "tags": "winter mountains west skiing maine valley sugarloaf carrabassett"}, {"datetaken": "2010-02-21 15:40:45", "license": "3", "title": "Timberline lift", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm3.staticflickr.com/2787/4379082844_bbd7d9411e_o.jpg", "secret": "a1aa5d617f", "media": "photo", "latitude": "45.033137", "id": "4379082844", "tags": "winter mountains west skiing lift maine valley sugarloaf timberline carrabassett"}, {"datetaken": "2010-02-21 15:51:05", "license": "3", "title": "Day's end", "text": "", "album_id": "72157623361190375", "longitude": "-70.313615", "url_o": "https://farm5.staticflickr.com/4009/4378330891_784a05fa5e_o.jpg", "secret": "6fe806a17d", "media": "photo", "latitude": "45.033137", "id": "4378330891", "tags": "winter mountains skiing maine sugarloaf"}, {"datetaken": "2005-12-25 12:17:13", "license": "2", "title": "Dinner and aftermath", "text": "", "album_id": "1658298", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/77417053_be5d554a05_o.jpg", "secret": "be5d554a05", "media": "photo", "latitude": "0", "id": "77417053", "tags": ""}, {"datetaken": "2005-12-25 12:17:19", "license": "2", "title": "Dinner and aftermath", "text": "", "album_id": "1658298", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/77417090_e5d29df0b8_o.jpg", "secret": "e5d29df0b8", "media": "photo", "latitude": "0", "id": "77417090", "tags": ""}, {"datetaken": "2005-12-25 12:17:26", "license": "2", "title": "Dinner and aftermath", "text": "", "album_id": "1658298", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/77417121_ad04b0fbee_o.jpg", "secret": "ad04b0fbee", "media": "photo", "latitude": "0", "id": "77417121", "tags": ""}, {"datetaken": "2005-12-25 12:17:35", "license": "2", "title": "Dinner and aftermath", "text": "", "album_id": "1658298", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/77417155_6b58160f40_o.jpg", "secret": "6b58160f40", "media": "photo", "latitude": "0", "id": "77417155", "tags": ""}, {"datetaken": "2005-12-25 12:25:11", "license": "2", "title": "Dinner and aftermath", "text": "", "album_id": "1658298", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/77417193_c69f0f8519_o.jpg", "secret": "c69f0f8519", "media": "photo", "latitude": "0", "id": "77417193", "tags": ""}, {"datetaken": "2005-12-25 12:25:20", "license": "2", "title": "Dinner and aftermath", "text": "", "album_id": "1658298", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/77417234_f87a03d325_o.jpg", "secret": "f87a03d325", "media": "photo", "latitude": "0", "id": "77417234", "tags": ""}, {"datetaken": "2005-12-25 14:01:52", "license": "2", "title": "Dinner and aftermath", "text": "", "album_id": "1658298", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/77417275_5dc175e67c_o.jpg", "secret": "5dc175e67c", "media": "photo", "latitude": "0", "id": "77417275", "tags": ""}, {"datetaken": "2005-12-25 14:02:01", "license": "2", "title": "Dinner and aftermath", "text": "", "album_id": "1658298", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/77417309_2f30da0325_o.jpg", "secret": "2f30da0325", "media": "photo", "latitude": "0", "id": "77417309", "tags": ""}, {"datetaken": "2005-12-25 14:02:06", "license": "2", "title": "Dinner and aftermath", "text": "", "album_id": "1658298", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/77417325_55689dac66_o.jpg", "secret": "55689dac66", "media": "photo", "latitude": "0", "id": "77417325", "tags": ""}, {"datetaken": "2005-12-25 15:15:36", "license": "2", "title": "Dinner and aftermath", "text": "", "album_id": "1658298", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/77417372_d652eb3094_o.jpg", "secret": "d652eb3094", "media": "photo", "latitude": "0", "id": "77417372", "tags": ""}, {"datetaken": "2005-12-25 15:15:47", "license": "2", "title": "Dinner and aftermath", "text": "", "album_id": "1658298", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/77417398_c839967d65_o.jpg", "secret": "c839967d65", "media": "photo", "latitude": "0", "id": "77417398", "tags": ""}, {"datetaken": "2005-12-25 15:15:51", "license": "2", "title": "Dinner and aftermath", "text": "", "album_id": "1658298", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/77417428_4c59740ddb_o.jpg", "secret": "4c59740ddb", "media": "photo", "latitude": "0", "id": "77417428", "tags": ""}, {"datetaken": "2005-12-25 15:15:58", "license": "2", "title": "Dinner and aftermath", "text": "", "album_id": "1658298", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/77417456_d620b9a3e4_o.jpg", "secret": "d620b9a3e4", "media": "photo", "latitude": "0", "id": "77417456", "tags": ""}, {"datetaken": "2005-12-25 15:16:12", "license": "2", "title": "Dinner and aftermath", "text": "", "album_id": "1658298", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/77417491_0ad2c94e22_o.jpg", "secret": "0ad2c94e22", "media": "photo", "latitude": "0", "id": "77417491", "tags": ""}, {"datetaken": "2005-12-25 15:16:12", "license": "2", "title": "Dinner and aftermath", "text": "", "album_id": "1658298", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/77417537_921ed3804b_o.jpg", "secret": "921ed3804b", "media": "photo", "latitude": "0", "id": "77417537", "tags": ""}, {"datetaken": "2010-02-27 12:49:50", "license": "1", "title": "Veggies for pea soup", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4394830077_25ecc92017_o.jpg", "secret": "f3363e3581", "media": "photo", "latitude": "0", "id": "4394830077", "tags": "food cooking raw"}, {"datetaken": "2010-02-27 12:50:04", "license": "1", "title": "Carmelizing Veggies for soup", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4394830305_a392014c25_o.jpg", "secret": "d2af10e648", "media": "photo", "latitude": "0", "id": "4394830305", "tags": "food cooking raw"}, {"datetaken": "2010-02-27 19:41:07", "license": "1", "title": "Cooking for Dinner", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4052/4395596820_2e275cfbb3_o.jpg", "secret": "42735c1e55", "media": "photo", "latitude": "0", "id": "4395596820", "tags": "cooking raw"}, {"datetaken": "2010-02-27 19:41:25", "license": "1", "title": "Store bought dipping sauces", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2754/4394830927_a6c34ab012_o.jpg", "secret": "662751a8cf", "media": "photo", "latitude": "0", "id": "4394830927", "tags": "raw"}, {"datetaken": "2010-02-27 19:41:37", "license": "1", "title": "Wine for wine paring", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4395597418_8d4de9f360_o.jpg", "secret": "d4bab6defc", "media": "photo", "latitude": "0", "id": "4395597418", "tags": "raw wine"}, {"datetaken": "2010-02-27 19:42:05", "license": "1", "title": "Chardonnay", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4394831519_3e4bfa0b8f_o.jpg", "secret": "7107c1cd8f", "media": "photo", "latitude": "0", "id": "4394831519", "tags": "raw wine"}, {"datetaken": "2010-02-27 19:42:23", "license": "1", "title": "Cabernet", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2694/4394831827_203a1eb57e_o.jpg", "secret": "15d3a80778", "media": "photo", "latitude": "0", "id": "4394831827", "tags": "raw wine"}, {"datetaken": "2010-02-27 19:45:15", "license": "1", "title": "Wine Food Paring Gathering", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4394832121_1b18197a00_o.jpg", "secret": "a80f7ac613", "media": "photo", "latitude": "0", "id": "4394832121", "tags": "raw"}, {"datetaken": "2010-02-27 20:11:46", "license": "1", "title": "Salad for Wine Paring", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4395598606_15a5bbc918_o.jpg", "secret": "3cc80e2fda", "media": "photo", "latitude": "0", "id": "4395598606", "tags": "food cooking raw"}, {"datetaken": "2010-02-27 20:13:50", "license": "1", "title": "Dressings for Salad", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4395598882_d78ed9a31a_o.jpg", "secret": "b87c4906ef", "media": "photo", "latitude": "0", "id": "4395598882", "tags": "food cooking raw"}, {"datetaken": "2010-02-27 21:23:31", "license": "1", "title": "Rich Chocoalte Cake", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2776/4394833035_106fcde5ec_o.jpg", "secret": "0cb1af4d15", "media": "photo", "latitude": "0", "id": "4394833035", "tags": "food cooking raw"}, {"datetaken": "2010-02-27 21:23:44", "license": "1", "title": "Garlic Mashed Potatoes", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4395599556_ebf5128aec_o.jpg", "secret": "0e7a4380de", "media": "photo", "latitude": "0", "id": "4395599556", "tags": "cooking raw"}, {"datetaken": "2010-02-27 21:23:55", "license": "1", "title": "Leftovers", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4395599846_a84e1482ae_o.jpg", "secret": "1a4163cc6e", "media": "photo", "latitude": "0", "id": "4395599846", "tags": "cooking raw"}, {"datetaken": "2010-02-27 22:07:39", "license": "1", "title": "Wine Food Paring Dessert", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4394833979_ee44ddef22_o.jpg", "secret": "bfd0c8143f", "media": "photo", "latitude": "0", "id": "4394833979", "tags": "raw"}, {"datetaken": "2010-02-27 22:07:52", "license": "1", "title": "Last Wine Food Paring of the night", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4395600438_38d928a9fa_o.jpg", "secret": "3cd490455a", "media": "photo", "latitude": "0", "id": "4395600438", "tags": "raw"}, {"datetaken": "2010-02-27 22:08:20", "license": "1", "title": "The Expert", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4394834593_230c1667a4_o.jpg", "secret": "55b0b36263", "media": "photo", "latitude": "0", "id": "4394834593", "tags": "raw"}, {"datetaken": "2010-02-27 22:08:32", "license": "1", "title": "Rich Chocolate Cake", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4395601052_2194863a03_o.jpg", "secret": "353c843177", "media": "photo", "latitude": "0", "id": "4395601052", "tags": "food cooking raw"}, {"datetaken": "2010-02-27 22:08:32", "license": "1", "title": "Rich Chocolate Cake", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4395632074_4c438db4a0_o.jpg", "secret": "1e54f5db6b", "media": "photo", "latitude": "0", "id": "4395632074", "tags": "food cooking raw"}, {"datetaken": "2010-02-27 22:30:24", "license": "1", "title": "Wine Discussion", "text": "", "album_id": "72157623402304105", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4394835081_56c3b47b0f_o.jpg", "secret": "023b077f96", "media": "photo", "latitude": "0", "id": "4394835081", "tags": "raw"}, {"datetaken": "2007-01-28 00:26:05", "license": "1", "title": "Gastrocast #95", "text": "", "album_id": "72157594511236944", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/375921262_bc44e9d16b_o.jpg", "secret": "bc44e9d16b", "media": "photo", "latitude": "0", "id": "375921262", "tags": "podchef gastrocast rowan englishshepherd"}, {"datetaken": "2007-01-28 00:26:36", "license": "1", "title": "Gastrocast #95", "text": "", "album_id": "72157594511236944", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/375921732_4cf21b16ce_o.jpg", "secret": "4cf21b16ce", "media": "photo", "latitude": "0", "id": "375921732", "tags": "chickens podchef gastrocast"}, {"datetaken": "2007-01-28 00:26:44", "license": "1", "title": "Gastrocast #95", "text": "", "album_id": "72157594511236944", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/375922355_aba082bbb5_o.jpg", "secret": "aba082bbb5", "media": "photo", "latitude": "0", "id": "375922355", "tags": "chickens podchef gastrocast"}, {"datetaken": "2007-01-28 00:26:56", "license": "1", "title": "Gastrocast #95", "text": "", "album_id": "72157594511236944", "longitude": "0", "url_o": "https://farm1.staticflickr.com/130/375922938_906fe88707_o.jpg", "secret": "906fe88707", "media": "photo", "latitude": "0", "id": "375922938", "tags": "puppy podchef gastrocast rowan englishshepherd"}, {"datetaken": "2007-01-28 00:26:58", "license": "1", "title": "Gastrocast #95", "text": "", "album_id": "72157594511236944", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/375923517_2ad55f536a_o.jpg", "secret": "2ad55f536a", "media": "photo", "latitude": "0", "id": "375923517", "tags": "puppy podchef gastrocast rowan englishshepherd"}, {"datetaken": "2007-01-28 00:28:24", "license": "1", "title": "Gastrocast #95", "text": "", "album_id": "72157594511236944", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/375924127_c5f5964255_o.jpg", "secret": "c5f5964255", "media": "photo", "latitude": "0", "id": "375924127", "tags": "puppy podchef gastrocast rowan englishshepherd"}, {"datetaken": "2007-01-28 02:49:47", "license": "1", "title": "Gastrocast #95", "text": "", "album_id": "72157594511236944", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/375924644_42a1ff94f0_o.jpg", "secret": "42a1ff94f0", "media": "photo", "latitude": "0", "id": "375924644", "tags": "cooking dinner podchef gastrocast rootvegetables"}, {"datetaken": "2007-01-28 03:03:09", "license": "1", "title": "Gastrocast #95", "text": "", "album_id": "72157594511236944", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/375925138_b897a88a0d_o.jpg", "secret": "b897a88a0d", "media": "photo", "latitude": "0", "id": "375925138", "tags": "cooking dinner podchef gastrocast rootvegetables"}, {"datetaken": "2007-01-28 03:44:15", "license": "1", "title": "Gastrocast #95", "text": "", "album_id": "72157594511236944", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/375925714_d45ab927d9_o.jpg", "secret": "d45ab927d9", "media": "photo", "latitude": "0", "id": "375925714", "tags": "cooking dinner podchef gastrocast rootvegetables"}, {"datetaken": "2007-01-28 04:10:37", "license": "1", "title": "Gastrocast #95", "text": "", "album_id": "72157594511236944", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/375926250_21b21c9aa3_o.jpg", "secret": "21b21c9aa3", "media": "photo", "latitude": "0", "id": "375926250", "tags": "cooking dinner podchef gastrocast chickenthighs"}, {"datetaken": "2007-01-28 04:18:30", "license": "1", "title": "Gastrocast #95", "text": "", "album_id": "72157594511236944", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/375926666_822e6ad712_o.jpg", "secret": "822e6ad712", "media": "photo", "latitude": "0", "id": "375926666", "tags": "cooking dinner podchef gastrocast chickenthighs"}, {"datetaken": "2007-01-28 04:46:04", "license": "1", "title": "Gastrocast #95", "text": "", "album_id": "72157594511236944", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/375927201_7afc068235_o.jpg", "secret": "7afc068235", "media": "photo", "latitude": "0", "id": "375927201", "tags": "cooking dinner podchef gastrocast chickenthighs"}, {"datetaken": "2007-01-28 04:51:30", "license": "1", "title": "Gastrocast #95", "text": "", "album_id": "72157594511236944", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/375927761_87da973340_o.jpg", "secret": "87da973340", "media": "photo", "latitude": "0", "id": "375927761", "tags": "chicken dinner podchef gastrocast rootvegetables"}, {"datetaken": "2007-01-28 04:52:30", "license": "1", "title": "Gastrocast #95", "text": "", "album_id": "72157594511236944", "longitude": "0", "url_o": "https://farm1.staticflickr.com/149/375928321_43787ee5c5_o.jpg", "secret": "43787ee5c5", "media": "photo", "latitude": "0", "id": "375928321", "tags": "chicken dinner podchef gastrocast rootvegetables"}, {"datetaken": "2007-01-28 04:53:47", "license": "1", "title": "Gastrocast #95", "text": "", "album_id": "72157594511236944", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/375928979_bf8b9dd31c_o.jpg", "secret": "bf8b9dd31c", "media": "photo", "latitude": "0", "id": "375928979", "tags": "chicken dinner podchef gastrocast rootvegetables"}, {"datetaken": "2005-07-10 12:53:16", "license": "1", "title": "169_6959", "text": "", "album_id": "578280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25378249_5c4534a571_o.jpg", "secret": "5c4534a571", "media": "photo", "latitude": "0", "id": "25378249", "tags": "camping hike backpacking highrock"}, {"datetaken": "2005-07-10 12:53:20", "license": "1", "title": "169_6960", "text": "", "album_id": "578280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25378351_a9c7e691f0_o.jpg", "secret": "a9c7e691f0", "media": "photo", "latitude": "0", "id": "25378351", "tags": "camping hike backpacking highrock"}, {"datetaken": "2005-07-10 13:16:53", "license": "1", "title": "169_6961-01", "text": "", "album_id": "578280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25378394_889ea1f4f1_o.jpg", "secret": "889ea1f4f1", "media": "photo", "latitude": "0", "id": "25378394", "tags": "camping hike backpacking highrock"}, {"datetaken": "2005-07-10 13:17:06", "license": "1", "title": "169_6962-01", "text": "", "album_id": "578280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25378423_e7823f3a73_o.jpg", "secret": "e7823f3a73", "media": "photo", "latitude": "0", "id": "25378423", "tags": "camping hike backpacking highrock"}, {"datetaken": "2005-07-10 14:08:21", "license": "1", "title": "169_6963-01", "text": "", "album_id": "578280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25378470_2e97398c24_o.jpg", "secret": "2e97398c24", "media": "photo", "latitude": "0", "id": "25378470", "tags": "camping hike backpacking highrock"}, {"datetaken": "2005-07-10 18:25:46", "license": "1", "title": "169_6965-01", "text": "", "album_id": "578280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25378486_15553a23cd_o.jpg", "secret": "15553a23cd", "media": "photo", "latitude": "0", "id": "25378486", "tags": "camping hike backpacking highrock"}, {"datetaken": "2005-07-10 18:26:09", "license": "1", "title": "169_6966", "text": "", "album_id": "578280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25378510_dd519dd6de_o.jpg", "secret": "dd519dd6de", "media": "photo", "latitude": "0", "id": "25378510", "tags": "camping hike backpacking highrock"}, {"datetaken": "2005-07-10 19:32:18", "license": "1", "title": "169_6967", "text": "", "album_id": "578280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25378555_450942ed75_o.jpg", "secret": "450942ed75", "media": "photo", "latitude": "0", "id": "25378555", "tags": "camping hike backpacking highrock"}, {"datetaken": "2005-07-10 20:27:16", "license": "1", "title": "169_6968-01", "text": "", "album_id": "578280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25378569_2420366b77_o.jpg", "secret": "2420366b77", "media": "photo", "latitude": "0", "id": "25378569", "tags": "camping hike backpacking highrock"}, {"datetaken": "2005-07-10 20:27:28", "license": "1", "title": "169_6969-01", "text": "", "album_id": "578280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25378589_2e2fc9c1e3_o.jpg", "secret": "2e2fc9c1e3", "media": "photo", "latitude": "0", "id": "25378589", "tags": "camping hike backpacking highrock artyfavs"}, {"datetaken": "2005-07-11 07:39:19", "license": "1", "title": "169_6975", "text": "", "album_id": "578280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25378636_a4ea2d4691_o.jpg", "secret": "a4ea2d4691", "media": "photo", "latitude": "0", "id": "25378636", "tags": "camping hike backpacking highrock artyfavs"}, {"datetaken": "2005-07-11 07:39:55", "license": "1", "title": "169_6977-01", "text": "", "album_id": "578280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25378675_c960795d69_o.jpg", "secret": "c960795d69", "media": "photo", "latitude": "0", "id": "25378675", "tags": "camping hike backpacking highrock artyfavs"}, {"datetaken": "2005-07-11 08:02:15", "license": "1", "title": "169_6978", "text": "", "album_id": "578280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/25378747_6dfdffd68c_o.jpg", "secret": "6dfdffd68c", "media": "photo", "latitude": "0", "id": "25378747", "tags": "camping hike backpacking highrock"}, {"datetaken": "2005-07-11 08:02:49", "license": "1", "title": "169_6979", "text": "", "album_id": "578280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/25378797_b0f2b02bd9_o.jpg", "secret": "b0f2b02bd9", "media": "photo", "latitude": "0", "id": "25378797", "tags": "camping hike backpacking highrock"}, {"datetaken": "2005-07-11 10:51:58", "license": "1", "title": "169_6982-01", "text": "", "album_id": "578280", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/25378698_eb072c2eb9_o.jpg", "secret": "eb072c2eb9", "media": "photo", "latitude": "0", "id": "25378698", "tags": "camping hike backpacking highrock"}, {"datetaken": "2004-12-21 14:37:38", "license": "4", "title": "day in the life: hello mr. friendly", "text": "", "album_id": "60991", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/2424770_cc278cb6d5_o.jpg", "secret": "cc278cb6d5", "media": "photo", "latitude": "0", "id": "2424770", "tags": "dilodec04 sanluisobispo california"}, {"datetaken": "2004-12-21 15:41:40", "license": "4", "title": "day in the life: 6:45 am & heather's train pulls away", "text": "", "album_id": "60991", "longitude": "-120.654473", "url_o": "https://farm1.staticflickr.com/1/2418168_f9a327d731_o.jpg", "secret": "f9a327d731", "media": "photo", "latitude": "35.276249", "id": "2418168", "tags": "utatatrain amtrak train dilodec04 sanluisobispo california"}, {"datetaken": "2004-12-21 15:59:02", "license": "4", "title": "day in the life: lunch money", "text": "", "album_id": "60991", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2418695_3600b4cab5_o.jpg", "secret": "3600b4cab5", "media": "photo", "latitude": "0", "id": "2418695", "tags": "california money lunch cash sanluisobispo dilodec04 dilo utatadines"}, {"datetaken": "2004-12-21 16:00:45", "license": "4", "title": "day in the life: mary and carrie", "text": "", "album_id": "60991", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/2418499_4a92c2067c_o.jpg", "secret": "4a92c2067c", "media": "photo", "latitude": "0", "id": "2418499", "tags": "dilo mary carrie bigsky lunch dilodec04 sanluisobispo california womensday05"}, {"datetaken": "2004-12-21 16:09:56", "license": "4", "title": "day in the life: little shrine", "text": "", "album_id": "60991", "longitude": "-120.656817", "url_o": "https://farm1.staticflickr.com/3/2418869_40b128aa45_o.jpg", "secret": "40b128aa45", "media": "photo", "latitude": "35.277511", "id": "2418869", "tags": "shrine dayinthelife dilodec04 sanluisobispo california"}, {"datetaken": "2004-12-21 16:18:13", "license": "4", "title": "day in the life: emdot", "text": "", "album_id": "60991", "longitude": "-120.656817", "url_o": "https://farm1.staticflickr.com/1/2419030_975dcdea73_o.jpg", "secret": "975dcdea73", "media": "photo", "latitude": "35.277511", "id": "2419030", "tags": "california selfportrait me self ofme topv777 marya sanluisobispo dilodec04 emdot"}, {"datetaken": "2004-12-21 20:04:36", "license": "4", "title": "day in the life: chapin on the stairs", "text": "", "album_id": "60991", "longitude": "-120.656817", "url_o": "https://farm1.staticflickr.com/1/2424314_aad732692a_o.jpg", "secret": "aad732692a", "media": "photo", "latitude": "35.277511", "id": "2424314", "tags": "california stairs cat siamese chapin sanluisobispo dilodec04 utatasteps"}, {"datetaken": "2004-12-21 20:06:50", "license": "4", "title": "day in the life: oranges and lights", "text": "", "album_id": "60991", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2424313_90d415a1f5_o.jpg", "secret": "90d415a1f5", "media": "photo", "latitude": "0", "id": "2424313", "tags": "dilodec04 sanluisobispo california"}, {"datetaken": "2004-12-21 20:10:03", "license": "4", "title": "day in the life: downtown brown & a musical frog", "text": "", "album_id": "60991", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/2424311_1e13f56f2d_o.jpg", "secret": "1e13f56f2d", "media": "photo", "latitude": "0", "id": "2424311", "tags": "dilodec04 sanluisobispo california"}, {"datetaken": "2004-12-21 20:12:17", "license": "4", "title": "day in the life: glimpse inside", "text": "", "album_id": "60991", "longitude": "-120.656817", "url_o": "https://farm1.staticflickr.com/2/2424310_7bde4d9aec_o.jpg", "secret": "7bde4d9aec", "media": "photo", "latitude": "35.277511", "id": "2424310", "tags": "dilodec04 sanluisobispo california"}, {"datetaken": "2005-05-28 16:58:59", "license": "2", "title": "takiniteasy", "text": "", "album_id": "629135", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27685329_12fd22f619_o.jpg", "secret": "12fd22f619", "media": "photo", "latitude": "0", "id": "27685329", "tags": "poconos weekend"}, {"datetaken": "2005-05-28 20:11:44", "license": "2", "title": "kebab", "text": "", "album_id": "629135", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27684856_abc1328fd4_o.jpg", "secret": "abc1328fd4", "media": "photo", "latitude": "0", "id": "27684856", "tags": "poconos weekend kebab"}, {"datetaken": "2005-05-28 20:12:01", "license": "2", "title": "cooking catalog", "text": "", "album_id": "629135", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27684529_395be9921a_o.jpg", "secret": "395be9921a", "media": "photo", "latitude": "0", "id": "27684529", "tags": "poconos weekend dinner kebab"}, {"datetaken": "2005-05-28 20:14:21", "license": "2", "title": "bear", "text": "", "album_id": "629135", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27684098_439b16f275_o.jpg", "secret": "d07e3dfa0d", "media": "photo", "latitude": "0", "id": "27684098", "tags": "poconos weekend smile"}, {"datetaken": "2005-05-28 20:28:51", "license": "2", "title": "fire", "text": "", "album_id": "629135", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27684532_f1a3455b76_o.jpg", "secret": "f1a3455b76", "media": "photo", "latitude": "0", "id": "27684532", "tags": "poconos weekend fire"}, {"datetaken": "2005-05-28 21:30:48", "license": "2", "title": "yawn", "text": "", "album_id": "629135", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27685852_1be59b55c1_o.jpg", "secret": "1be59b55c1", "media": "photo", "latitude": "0", "id": "27685852", "tags": "poconos weekend"}, {"datetaken": "2005-05-28 21:47:01", "license": "2", "title": "salad", "text": "", "album_id": "629135", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27685328_699a492d34_o.jpg", "secret": "699a492d34", "media": "photo", "latitude": "0", "id": "27685328", "tags": "poconos weekend salad"}, {"datetaken": "2005-05-29 22:07:32", "license": "2", "title": "falls", "text": "", "album_id": "629135", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/27684531_053d03bf57_o.jpg", "secret": "053d03bf57", "media": "photo", "latitude": "0", "id": "27684531", "tags": "poconos weekend bushkill waterfall"}, {"datetaken": "2005-05-29 22:21:52", "license": "2", "title": "reflection2", "text": "", "album_id": "629135", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27685326_876025d5bb_o.jpg", "secret": "876025d5bb", "media": "photo", "latitude": "0", "id": "27685326", "tags": "poconos weekend reflection"}, {"datetaken": "2005-05-29 22:22:28", "license": "2", "title": "reflection3", "text": "", "album_id": "629135", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/27685327_509d06b8ec_o.jpg", "secret": "509d06b8ec", "media": "photo", "latitude": "0", "id": "27685327", "tags": "poconos weekend reflection"}, {"datetaken": "2005-05-29 22:24:03", "license": "2", "title": "reflection", "text": "", "album_id": "629135", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27685325_fbe0a33ea0_o.jpg", "secret": "fbe0a33ea0", "media": "photo", "latitude": "0", "id": "27685325", "tags": "poconos weekend reflection"}, {"datetaken": "2005-05-29 23:03:53", "license": "2", "title": "forest", "text": "", "album_id": "629135", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/27684533_21ac1bd88d_o.jpg", "secret": "21ac1bd88d", "media": "photo", "latitude": "0", "id": "27684533", "tags": "poconos weekend bushkill"}, {"datetaken": "2005-09-15 09:16:12", "license": "3", "title": "Amanda at Work", "text": "", "album_id": "962616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/43477325_9d214cce2c_o.jpg", "secret": "9d214cce2c", "media": "photo", "latitude": "0", "id": "43477325", "tags": "headphones office work"}, {"datetaken": "2005-09-15 09:17:16", "license": "3", "title": "Liam AKA gigantor", "text": "", "album_id": "962616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/43477456_7ccdc306b2_o.jpg", "secret": "7ccdc306b2", "media": "photo", "latitude": "0", "id": "43477456", "tags": "fight office"}, {"datetaken": "2005-09-15 09:18:27", "license": "3", "title": "Xyn Xu", "text": "", "album_id": "962616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/43477556_e479cfbbfe_o.jpg", "secret": "e479cfbbfe", "media": "photo", "latitude": "0", "id": "43477556", "tags": "computer office bored"}, {"datetaken": "2005-09-15 09:19:29", "license": "3", "title": "Me at Randommedia", "text": "", "album_id": "962616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/43477678_78f350c398_o.jpg", "secret": "78f350c398", "media": "photo", "latitude": "0", "id": "43477678", "tags": "bored work"}, {"datetaken": "2005-09-15 09:20:23", "license": "3", "title": "Being a Dumbass", "text": "", "album_id": "962616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/43477763_a2938d2517_o.jpg", "secret": "a2938d2517", "media": "photo", "latitude": "0", "id": "43477763", "tags": "girl kitchen"}, {"datetaken": "2005-09-15 09:21:27", "license": "3", "title": "Making Dinner", "text": "", "album_id": "962616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/43477889_1cb3c70713_o.jpg", "secret": "1cb3c70713", "media": "photo", "latitude": "0", "id": "43477889", "tags": "kitchen girl cooking"}, {"datetaken": "2005-09-15 09:22:22", "license": "3", "title": "Marit Longshot in Victoria Park", "text": "", "album_id": "962616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/43478013_0c3dedd0ff_o.jpg", "secret": "0c3dedd0ff", "media": "photo", "latitude": "0", "id": "43478013", "tags": "sunset girl london trees park"}, {"datetaken": "2005-09-15 09:23:06", "license": "3", "title": "Marit in Victoria Park", "text": "", "album_id": "962616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/43478096_0b619eaffe_o.jpg", "secret": "0b619eaffe", "media": "photo", "latitude": "0", "id": "43478096", "tags": "sunset girl park london"}, {"datetaken": "2005-09-15 09:25:36", "license": "3", "title": "Victoria Park", "text": "", "album_id": "962616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/43478396_aaf7d93f4d_o.jpg", "secret": "aaf7d93f4d", "media": "photo", "latitude": "0", "id": "43478396", "tags": "park london trees"}, {"datetaken": "2005-09-15 09:26:59", "license": "3", "title": "Marit Photographing me in Victoria Park", "text": "", "album_id": "962616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/43478661_a931ebebd9_o.jpg", "secret": "a931ebebd9", "media": "photo", "latitude": "0", "id": "43478661", "tags": "park london man"}, {"datetaken": "2005-09-15 09:27:42", "license": "3", "title": "Me and M Portrait", "text": "", "album_id": "962616", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/43478785_a110d7886d_o.jpg", "secret": "a110d7886d", "media": "photo", "latitude": "0", "id": "43478785", "tags": "couch"}, {"datetaken": "2005-09-15 18:52:34", "license": "3", "title": "my sunset 1", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/44502171_483a64d45f_o.jpg", "secret": "483a64d45f", "media": "photo", "latitude": "0", "id": "44502171", "tags": "2005 sunset roadtrip lakemichigan upnorth buffalowildwingsandbeckys"}, {"datetaken": "2005-09-15 18:52:47", "license": "3", "title": "my sunset 2", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/44502184_bbaf37d45d_o.jpg", "secret": "bbaf37d45d", "media": "photo", "latitude": "0", "id": "44502184", "tags": "2005 sunset roadtrip lakemichigan upnorth buffalowildwingsandbeckys"}, {"datetaken": "2005-09-15 18:53:40", "license": "3", "title": "my sunset 3", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/44502197_f4c3d2e197_o.jpg", "secret": "f4c3d2e197", "media": "photo", "latitude": "0", "id": "44502197", "tags": "2005 sunset roadtrip lakemichigan upnorth buffalowildwingsandbeckys"}, {"datetaken": "2005-09-15 19:03:43", "license": "3", "title": "my sunset 5", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/44502222_1cb95314a6_o.jpg", "secret": "1cb95314a6", "media": "photo", "latitude": "0", "id": "44502222", "tags": "2005 sunset roadtrip lakemichigan upnorth buffalowildwingsandbeckys amazingmich"}, {"datetaken": "2005-09-15 19:03:51", "license": "3", "title": "my sunset 6", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/44502242_e19129e231_o.jpg", "secret": "e19129e231", "media": "photo", "latitude": "0", "id": "44502242", "tags": "2005 sunset roadtrip lakemichigan upnorth buffalowildwingsandbeckys"}, {"datetaken": "2005-09-15 19:55:33", "license": "3", "title": "sunset 1", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/44502681_969aff3a3b_o.jpg", "secret": "969aff3a3b", "media": "photo", "latitude": "0", "id": "44502681", "tags": "2005 sunset roadtrip lakemichigan upnorth buffalowildwingsandbeckys"}, {"datetaken": "2005-09-15 19:56:02", "license": "3", "title": "sunset 2", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/44502693_b69930d633_o.jpg", "secret": "b69930d633", "media": "photo", "latitude": "0", "id": "44502693", "tags": "2005 sunset roadtrip lakemichigan upnorth buffalowildwingsandbeckys"}, {"datetaken": "2005-09-15 19:56:14", "license": "3", "title": "sunset 3", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/44502707_dfede579b4_o.jpg", "secret": "dfede579b4", "media": "photo", "latitude": "0", "id": "44502707", "tags": "2005 sunset favorite roadtrip lakemichigan upnorth buffalowildwingsandbeckys"}, {"datetaken": "2005-09-15 19:56:38", "license": "3", "title": "sunset 4", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/44502711_f345ca6ad7_o.jpg", "secret": "f345ca6ad7", "media": "photo", "latitude": "0", "id": "44502711", "tags": "2005 sunset roadtrip lakemichigan upnorth buffalowildwingsandbeckys"}, {"datetaken": "2005-09-15 19:57:54", "license": "3", "title": "S and I sunset", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/44502428_3537136331_o.jpg", "secret": "3537136331", "media": "photo", "latitude": "0", "id": "44502428", "tags": "2005 sunset me roadtrip lakemichigan upnorth suzi buffalowildwingsandbeckys"}, {"datetaken": "2005-09-15 19:59:13", "license": "3", "title": "falling silhouette", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/44502047_ec0d2332c2_o.jpg", "secret": "ec0d2332c2", "media": "photo", "latitude": "0", "id": "44502047", "tags": "2005 sunset silhouette roadtrip lakemichigan upnorth suzi buffalowildwingsandbeckys"}, {"datetaken": "2005-09-15 20:00:04", "license": "3", "title": "S sexy silhouette", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/44502472_e498e7a89e_o.jpg", "secret": "e498e7a89e", "media": "photo", "latitude": "0", "id": "44502472", "tags": "2005 sunset silhouette roadtrip lakemichigan upnorth suzi buffalowildwingsandbeckys"}, {"datetaken": "2005-09-15 20:01:56", "license": "3", "title": "me sexy silhouette", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/44502155_86d431e935_o.jpg", "secret": "86d431e935", "media": "photo", "latitude": "0", "id": "44502155", "tags": "2005 sunset me silhouette roadtrip lakemichigan upnorth buffalowildwingsandbeckys"}, {"datetaken": "2005-09-15 20:04:20", "license": "3", "title": "sunset 5", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44502729_ad39327da9_o.jpg", "secret": "ad39327da9", "media": "photo", "latitude": "0", "id": "44502729", "tags": "2005 sunset roadtrip lakemichigan upnorth buffalowildwingsandbeckys"}, {"datetaken": "2005-09-15 20:06:48", "license": "3", "title": "sunset 6", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/44502744_b94b7edfe8_o.jpg", "secret": "b94b7edfe8", "media": "photo", "latitude": "0", "id": "44502744", "tags": "sunset lakemichigan buffalowildwingsandbeckys"}, {"datetaken": "2005-09-16 11:18:25", "license": "3", "title": "pier and land", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/44502285_87887e0bdc_o.jpg", "secret": "87887e0bdc", "media": "photo", "latitude": "0", "id": "44502285", "tags": "2005 roadtrip upnorth lakesuperior marquette buffalowildwingsandbeckys"}, {"datetaken": "2005-09-16 11:18:44", "license": "3", "title": "B and S", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/44501925_71a75f0f0c_o.jpg", "secret": "71a75f0f0c", "media": "photo", "latitude": "0", "id": "44501925", "tags": "2005 roadtrip becky upnorth lakesuperior marquette suzi buffalowildwingsandbeckys"}, {"datetaken": "2005-09-16 11:21:58", "license": "3", "title": "B and S 2", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44501953_610f4f668f_o.jpg", "secret": "610f4f668f", "media": "photo", "latitude": "0", "id": "44501953", "tags": "2005 roadtrip becky upnorth lakesuperior marquette suzi buffalowildwingsandbeckys"}, {"datetaken": "2005-09-16 12:20:06", "license": "3", "title": "B and I on the rocks", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/44501908_ac7f6d0536_o.jpg", "secret": "ac7f6d0536", "media": "photo", "latitude": "0", "id": "44501908", "tags": "2005 me roadtrip becky upnorth lakesuperior marquette buffalowildwingsandbeckys"}, {"datetaken": "2005-09-16 12:25:20", "license": "3", "title": "sitting", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/44502572_e138257386_o.jpg", "secret": "e138257386", "media": "photo", "latitude": "0", "id": "44502572", "tags": "2005 me roadtrip upnorth marquette buffalowildwingsandbeckys"}, {"datetaken": "2005-09-16 12:29:04", "license": "3", "title": "S, me and B on the rocks", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44502503_07027f3500_o.jpg", "secret": "07027f3500", "media": "photo", "latitude": "0", "id": "44502503", "tags": "2005 me roadtrip becky upnorth marquette suzi buffalowildwingsandbeckys"}, {"datetaken": "2005-09-16 12:47:46", "license": "3", "title": "land ho", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/44502109_e12612b863_o.jpg", "secret": "e12612b863", "media": "photo", "latitude": "0", "id": "44502109", "tags": "2005 roadtrip upnorth lakesuperior marquette buffalowildwingsandbeckys"}, {"datetaken": "2005-09-16 12:55:29", "license": "3", "title": "rock and pretty water", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44502328_9a9b331366_o.jpg", "secret": "9a9b331366", "media": "photo", "latitude": "0", "id": "44502328", "tags": "2005 roadtrip upnorth lakesuperior marquette buffalowildwingsandbeckys"}, {"datetaken": "2005-09-16 13:31:54", "license": "3", "title": "S sitting", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44502489_0bd16d64dd_o.jpg", "secret": "0bd16d64dd", "media": "photo", "latitude": "0", "id": "44502489", "tags": "2005 roadtrip upnorth marquette suzi buffalowildwingsandbeckys"}, {"datetaken": "2005-09-16 13:44:18", "license": "3", "title": "B and I in the lean-to", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/44501887_5864c6ff30_o.jpg", "secret": "5864c6ff30", "media": "photo", "latitude": "0", "id": "44501887", "tags": "2005 me roadtrip becky upnorth marquette buffalowildwingsandbeckys"}, {"datetaken": "2005-09-16 20:44:22", "license": "3", "title": "S and B Applebees", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/44502359_cea3ef490a_o.jpg", "secret": "cea3ef490a", "media": "photo", "latitude": "0", "id": "44502359", "tags": "2005 steve roadtrip becky upnorth marquette buffalowildwingsandbeckys"}, {"datetaken": "2005-09-16 20:44:54", "license": "3", "title": "S and I Applebees", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/44502403_f2b92498fe_o.jpg", "secret": "f2b92498fe", "media": "photo", "latitude": "0", "id": "44502403", "tags": "2005 me roadtrip upnorth marquette suzi buffalowildwingsandbeckys"}, {"datetaken": "2005-09-17 01:30:25", "license": "3", "title": "B and S after drinks", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/44501963_89da5580d1_o.jpg", "secret": "89da5580d1", "media": "photo", "latitude": "0", "id": "44501963", "tags": "2005 steve roadtrip becky upnorth marquette buffalowildwingsandbeckys"}, {"datetaken": "2005-09-17 01:31:00", "license": "3", "title": "me and S Friday night", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/44502143_619ab48b72_o.jpg", "secret": "619ab48b72", "media": "photo", "latitude": "0", "id": "44502143", "tags": "2005 me roadtrip upnorth marquette suzi buffalowildwingsandbeckys"}, {"datetaken": "2005-09-17 01:32:31", "license": "3", "title": "S after drinks", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/44502344_46e082a2fd_o.jpg", "secret": "46e082a2fd", "media": "photo", "latitude": "0", "id": "44502344", "tags": "2005 steve roadtrip upnorth marquette buffalowildwingsandbeckys"}, {"datetaken": "2005-09-17 01:32:59", "license": "3", "title": "S, me, B Friday night 2", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/44502535_4ebc9b9127_o.jpg", "secret": "4ebc9b9127", "media": "photo", "latitude": "0", "id": "44502535", "tags": "2005 me roadtrip becky upnorth marquette suzi buffalowildwingsandbeckys"}, {"datetaken": "2005-09-17 14:33:24", "license": "3", "title": "Sugarloaf 1", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44502597_3b59c2c662_o.jpg", "secret": "3b59c2c662", "media": "photo", "latitude": "0", "id": "44502597", "tags": "2005 me roadtrip becky upnorth marquette buffalowildwingsandbeckys"}, {"datetaken": "2005-09-17 14:34:56", "license": "3", "title": "sugarloaf 2", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/44502616_9e14284308_o.jpg", "secret": "9e14284308", "media": "photo", "latitude": "0", "id": "44502616", "tags": "2005 me roadtrip becky upnorth marquette buffalowildwingsandbeckys"}, {"datetaken": "2005-09-17 14:37:26", "license": "3", "title": "sugarloaf 3", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/44502627_fe4da7dd09_o.jpg", "secret": "fe4da7dd09", "media": "photo", "latitude": "0", "id": "44502627", "tags": "2005 me roadtrip upnorth marquette suzi buffalowildwingsandbeckys"}, {"datetaken": "2005-09-17 14:38:35", "license": "3", "title": "sugarloaf 4", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44502660_7a21373320_o.jpg", "secret": "7a21373320", "media": "photo", "latitude": "0", "id": "44502660", "tags": "2005 roadtrip upnorth lakesuperior marquette buffalowildwingsandbeckys"}, {"datetaken": "2005-09-17 16:27:43", "license": "3", "title": "volleyball 1", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/44502815_bf95dd4773_o.jpg", "secret": "bf95dd4773", "media": "photo", "latitude": "0", "id": "44502815", "tags": "2005 roadtrip upnorth buffalowildwingsandbeckys"}, {"datetaken": "2005-09-17 16:40:45", "license": "3", "title": "volleyball 2", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/44501842_05ea24effe_o.jpg", "secret": "05ea24effe", "media": "photo", "latitude": "0", "id": "44501842", "tags": "2005 roadtrip upnorth marquette suzi buffalowildwingsandbeckys"}, {"datetaken": "2005-09-17 17:07:56", "license": "3", "title": "S and B lake superior", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/44502384_3b6e4bf6e7_o.jpg", "secret": "3b6e4bf6e7", "media": "photo", "latitude": "0", "id": "44502384", "tags": "2005 roadtrip becky upnorth lakesuperior marquette suzi buffalowildwingsandbeckys"}, {"datetaken": "2005-09-17 18:25:22", "license": "3", "title": "cooking", "text": "", "album_id": "973208", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/44502027_d094350a2f_o.jpg", "secret": "d094350a2f", "media": "photo", "latitude": "0", "id": "44502027", "tags": "2005 me roadtrip becky upnorth marquette buffalowildwingsandbeckys"}, {"datetaken": "2006-01-23 17:01:57", "license": "5", "title": "Here is the pot...", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/90403808_dd7baeb56f_o.jpg", "secret": "dd7baeb56f", "media": "photo", "latitude": "0", "id": "90403808", "tags": ""}, {"datetaken": "2006-01-23 17:02:14", "license": "5", "title": "The lid is anodized aluminum....", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/37/90403897_f7e6226dfc_o.jpg", "secret": "f7e6226dfc", "media": "photo", "latitude": "0", "id": "90403897", "tags": ""}, {"datetaken": "2006-01-23 17:02:56", "license": "5", "title": "...the bottom is plain ol' aluminum...", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/90404207_c375abbfce_o.jpg", "secret": "c375abbfce", "media": "photo", "latitude": "0", "id": "90404207", "tags": ""}, {"datetaken": "2006-01-23 17:03:17", "license": "5", "title": "...the handle is plastic...", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/90404351_f69855e984_o.jpg", "secret": "f69855e984", "media": "photo", "latitude": "0", "id": "90404351", "tags": ""}, {"datetaken": "2006-01-23 17:03:56", "license": "5", "title": "...my friend chipped the lid...", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/90404563_02d24fbfc8_o.jpg", "secret": "02d24fbfc8", "media": "photo", "latitude": "0", "id": "90404563", "tags": ""}, {"datetaken": "2006-01-23 17:04:23", "license": "5", "title": "...it looks really bad in person...", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/90404709_90140b08b3_o.jpg", "secret": "90140b08b3", "media": "photo", "latitude": "0", "id": "90404709", "tags": ""}, {"datetaken": "2006-01-23 17:05:00", "license": "5", "title": "...I ran it under hot water...", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/90404935_5254d3486c_o.jpg", "secret": "5254d3486c", "media": "photo", "latitude": "0", "id": "90404935", "tags": ""}, {"datetaken": "2006-01-23 17:05:25", "license": "5", "title": "...and kept it there...", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/90405068_74146d63b7_o.jpg", "secret": "74146d63b7", "media": "photo", "latitude": "0", "id": "90405068", "tags": ""}, {"datetaken": "2006-01-23 17:05:59", "license": "5", "title": "...for 30 mins...", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/90405273_d2ea3d6534_o.jpg", "secret": "d2ea3d6534", "media": "photo", "latitude": "0", "id": "90405273", "tags": ""}, {"datetaken": "2006-01-23 17:06:34", "license": "5", "title": "...and on the bottom of the pan...", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/90405515_253ca260be_o.jpg", "secret": "253ca260be", "media": "photo", "latitude": "0", "id": "90405515", "tags": ""}, {"datetaken": "2006-01-23 17:07:05", "license": "5", "title": "...a very very very...", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/90405743_e82eb4e731_o.jpg", "secret": "e82eb4e731", "media": "photo", "latitude": "0", "id": "90405743", "tags": ""}, {"datetaken": "2006-01-23 17:07:43", "license": "5", "title": "...long time...", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/90406026_b0a1e56e59_o.jpg", "secret": "b0a1e56e59", "media": "photo", "latitude": "0", "id": "90406026", "tags": ""}, {"datetaken": "2006-01-23 17:08:14", "license": "5", "title": "...I tried tapping it...", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/90406192_ca98b795a4_o.jpg", "secret": "ca98b795a4", "media": "photo", "latitude": "0", "id": "90406192", "tags": ""}, {"datetaken": "2006-01-23 17:08:42", "license": "5", "title": "...up...", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/90406388_e48906be7a_o.jpg", "secret": "e48906be7a", "media": "photo", "latitude": "0", "id": "90406388", "tags": ""}, {"datetaken": "2006-01-23 17:09:19", "license": "5", "title": "...and down...", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/90406632_6142a4ecfd_o.jpg", "secret": "6142a4ecfd", "media": "photo", "latitude": "0", "id": "90406632", "tags": ""}, {"datetaken": "2006-01-23 17:09:36", "license": "5", "title": "...and still nothing...", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/16/90406754_2edbfe984b_o.jpg", "secret": "2edbfe984b", "media": "photo", "latitude": "0", "id": "90406754", "tags": ""}, {"datetaken": "2006-01-23 17:10:27", "license": "5", "title": "...so I'm soaking it...", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/90407107_640d3d0530_o.jpg", "secret": "640d3d0530", "media": "photo", "latitude": "0", "id": "90407107", "tags": ""}, {"datetaken": "2006-01-23 17:10:46", "license": "5", "title": "...with a towel over to keep the heat...", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/90407243_40fdaefd58_o.jpg", "secret": "40fdaefd58", "media": "photo", "latitude": "0", "id": "90407243", "tags": ""}, {"datetaken": "2006-01-23 17:11:15", "license": "5", "title": "...but nothing. I give up. :(", "text": "", "album_id": "72057594053004564", "longitude": "0", "url_o": "https://farm1.staticflickr.com/15/90407390_4d9f20fd06_o.jpg", "secret": "4d9f20fd06", "media": "photo", "latitude": "0", "id": "90407390", "tags": ""}, {"datetaken": "2006-11-12 18:35:05", "license": "3", "title": "Tofu Skin Roll", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/116/270937725_61c1a0d594_o.jpg", "secret": "61c1a0d594", "media": "photo", "latitude": "0", "id": "270937725", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-11-12 18:35:27", "license": "3", "title": "Jelly Fish", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/109/270937760_830729a5a0_o.jpg", "secret": "830729a5a0", "media": "photo", "latitude": "0", "id": "270937760", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-11-12 18:35:47", "license": "3", "title": "Mixed Green Vegetables", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/270938147_1578ab90b6_o.jpg", "secret": "1578ab90b6", "media": "photo", "latitude": "0", "id": "270938147", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-11-12 18:50:18", "license": "3", "title": "Chive Potstickers", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/116/270937786_1ac6dbb43f_o.jpg", "secret": "1ac6dbb43f", "media": "photo", "latitude": "0", "id": "270937786", "tags": "plaza chinese kansascity pork countryclub chive dumpling potsticker bolings"}, {"datetaken": "2006-11-12 18:50:38", "license": "3", "title": "Sharks Fin Soup", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/111/270937820_4a218fb69e_o.jpg", "secret": "4a218fb69e", "media": "photo", "latitude": "0", "id": "270937820", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-11-12 18:51:01", "license": "3", "title": "Shark Fin Soup", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/96/270937852_25d982e6d5_o.jpg", "secret": "25d982e6d5", "media": "photo", "latitude": "0", "id": "270937852", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-11-12 18:59:06", "license": "3", "title": "\"Imperial Shrimp\"", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/99/270938247_e5c6e643a9_o.jpg", "secret": "e5c6e643a9", "media": "photo", "latitude": "0", "id": "270938247", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-11-12 19:05:41", "license": "3", "title": "Peking Roast Duck", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/101/270937882_06c137d516_o.jpg", "secret": "06c137d516", "media": "photo", "latitude": "0", "id": "270937882", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-11-12 19:05:46", "license": "3", "title": "Peking Roast Duck", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/122/270937903_c82329fdfa_o.jpg", "secret": "c82329fdfa", "media": "photo", "latitude": "0", "id": "270937903", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-11-12 19:07:56", "license": "3", "title": "Wrapping Peking Roast Duck", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/270937696_6471db4483_o.jpg", "secret": "6471db4483", "media": "photo", "latitude": "0", "id": "270937696", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-11-12 19:15:04", "license": "3", "title": "Peking Roast Duck", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/270937925_98cc6d1ff8_o.jpg", "secret": "98cc6d1ff8", "media": "photo", "latitude": "0", "id": "270937925", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-11-12 19:24:48", "license": "3", "title": "Mixed Vegetables", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/112/270937957_b437c1bf0b_o.jpg", "secret": "b437c1bf0b", "media": "photo", "latitude": "0", "id": "270937957", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-11-12 19:25:10", "license": "3", "title": "Sauteed Whole Flounder with Ginger Sauce", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/102/270938044_b89094f48b_o.jpg", "secret": "b89094f48b", "media": "photo", "latitude": "0", "id": "270938044", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-11-12 19:25:18", "license": "3", "title": "Sauteed Whole Flounder with Ginger Sauce", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/86/270938015_243e968124_o.jpg", "secret": "243e968124", "media": "photo", "latitude": "0", "id": "270938015", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-11-12 19:28:23", "license": "3", "title": "Steamed Garlic Shrimp", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/119/270938199_060ba97bd4_o.jpg", "secret": "060ba97bd4", "media": "photo", "latitude": "0", "id": "270938199", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-11-12 19:28:50", "license": "3", "title": "Lamb Scallions with Buns", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/90/270937990_4cca14fa5e_o.jpg", "secret": "4cca14fa5e", "media": "photo", "latitude": "0", "id": "270937990", "tags": "plaza pepper chinese kansascity lamb countryclub celery scallion bolings"}, {"datetaken": "2006-11-12 19:29:04", "license": "3", "title": "Steamed buns for sandwiching lamb and scallions", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/88/270937583_a3cfaf3fc3_o.jpg", "secret": "a3cfaf3fc3", "media": "photo", "latitude": "0", "id": "270937583", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-11-12 19:29:09", "license": "3", "title": "Lamb and scallions with steamed buns", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/97/270938077_1976ec6ae2_o.jpg", "secret": "1976ec6ae2", "media": "photo", "latitude": "0", "id": "270938077", "tags": "plaza pepper chinese kansascity lamb countryclub bellpepper scallion bolings"}, {"datetaken": "2006-11-12 19:36:31", "license": "3", "title": "Bok Choy with Shiitake", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/270938112_169658e6d7_o.jpg", "secret": "169658e6d7", "media": "photo", "latitude": "0", "id": "270938112", "tags": "plaza black mushroom chinese kansascity countryclub bokchoy bolings"}, {"datetaken": "2006-11-12 19:36:48", "license": "3", "title": "Entree Sampling", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/84/270937640_96fb722154_o.jpg", "secret": "96fb722154", "media": "photo", "latitude": "0", "id": "270937640", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-11-12 19:37:18", "license": "3", "title": "Lamb and scallions in steamed buns", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/110/270937611_1a5d34500b_o.jpg", "secret": "1a5d34500b", "media": "photo", "latitude": "0", "id": "270937611", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-11-12 20:03:58", "license": "3", "title": "Red Bean Soup Lotus Nut", "text": "", "album_id": "72157594330358115", "longitude": "0", "url_o": "https://farm1.staticflickr.com/92/270937670_7adaeaa338_o.jpg", "secret": "7adaeaa338", "media": "photo", "latitude": "0", "id": "270937670", "tags": "plaza chinese kansascity countryclub bolings"}, {"datetaken": "2006-12-24 16:34:45", "license": "1", "title": "IMG_1353", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/332616187_192e4528d7_o.jpg", "secret": "192e4528d7", "media": "photo", "latitude": "0", "id": "332616187", "tags": "biged"}, {"datetaken": "2006-12-24 16:34:58", "license": "1", "title": "IMG_1354", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/332616217_552e36b290_o.jpg", "secret": "552e36b290", "media": "photo", "latitude": "0", "id": "332616217", "tags": "biged"}, {"datetaken": "2006-12-24 16:35:07", "license": "1", "title": "IMG_1355", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/332616260_0d5848339e_o.jpg", "secret": "0d5848339e", "media": "photo", "latitude": "0", "id": "332616260", "tags": "biged"}, {"datetaken": "2006-12-24 16:35:19", "license": "1", "title": "IMG_1356", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/332616287_09a30fa94e_o.jpg", "secret": "09a30fa94e", "media": "photo", "latitude": "0", "id": "332616287", "tags": "biged"}, {"datetaken": "2006-12-24 16:35:31", "license": "1", "title": "IMG_1357", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/332616330_5a99aa3935_o.jpg", "secret": "5a99aa3935", "media": "photo", "latitude": "0", "id": "332616330", "tags": "biged"}, {"datetaken": "2006-12-24 16:35:56", "license": "1", "title": "IMG_1359", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/332616366_f9381cba3d_o.jpg", "secret": "f9381cba3d", "media": "photo", "latitude": "0", "id": "332616366", "tags": "biged"}, {"datetaken": "2006-12-24 16:36:21", "license": "1", "title": "IMG_1360", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/132/332616404_de928244a5_o.jpg", "secret": "de928244a5", "media": "photo", "latitude": "0", "id": "332616404", "tags": "biged"}, {"datetaken": "2006-12-24 21:52:40", "license": "1", "title": "IMG_1361", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/161/332616442_87a37ed7e5_o.jpg", "secret": "87a37ed7e5", "media": "photo", "latitude": "0", "id": "332616442", "tags": "biged"}, {"datetaken": "2006-12-24 21:52:52", "license": "1", "title": "IMG_1362", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/332616481_4ebaa0152d_o.jpg", "secret": "4ebaa0152d", "media": "photo", "latitude": "0", "id": "332616481", "tags": "biged"}, {"datetaken": "2006-12-25 05:29:24", "license": "1", "title": "IMG_1364", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/332616506_7ef7c31388_o.jpg", "secret": "7ef7c31388", "media": "photo", "latitude": "0", "id": "332616506", "tags": "biged"}, {"datetaken": "2006-12-25 05:32:04", "license": "1", "title": "IMG_1372", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/332616538_e1fc4410ec_o.jpg", "secret": "e1fc4410ec", "media": "photo", "latitude": "0", "id": "332616538", "tags": "biged"}, {"datetaken": "2006-12-25 05:32:56", "license": "1", "title": "IMG_1374", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/332616561_c694b7eeb4_o.jpg", "secret": "c694b7eeb4", "media": "photo", "latitude": "0", "id": "332616561", "tags": "biged"}, {"datetaken": "2006-12-25 05:33:13", "license": "1", "title": "IMG_1376", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/332616593_c5f528213a_o.jpg", "secret": "c5f528213a", "media": "photo", "latitude": "0", "id": "332616593", "tags": "biged"}, {"datetaken": "2006-12-25 05:33:23", "license": "1", "title": "IMG_1377", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/332616635_b389e530bd_o.jpg", "secret": "b389e530bd", "media": "photo", "latitude": "0", "id": "332616635", "tags": "biged"}, {"datetaken": "2006-12-25 05:33:44", "license": "1", "title": "IMG_1379", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/332616713_70062eee57_o.jpg", "secret": "70062eee57", "media": "photo", "latitude": "0", "id": "332616713", "tags": "biged"}, {"datetaken": "2006-12-25 05:34:13", "license": "1", "title": "IMG_1380", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/332616745_338ec119b0_o.jpg", "secret": "338ec119b0", "media": "photo", "latitude": "0", "id": "332616745", "tags": "biged"}, {"datetaken": "2006-12-25 05:34:59", "license": "1", "title": "IMG_1382", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/151/332616776_3f2fd2e3e7_o.jpg", "secret": "3f2fd2e3e7", "media": "photo", "latitude": "0", "id": "332616776", "tags": "biged"}, {"datetaken": "2006-12-25 07:06:25", "license": "1", "title": "IMG_1383", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/332715064_19b282a665_o.jpg", "secret": "19b282a665", "media": "photo", "latitude": "0", "id": "332715064", "tags": "biged"}, {"datetaken": "2006-12-25 07:06:43", "license": "1", "title": "IMG_1384", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/332715112_a0f7cf58f4_o.jpg", "secret": "a0f7cf58f4", "media": "photo", "latitude": "0", "id": "332715112", "tags": "biged"}, {"datetaken": "2006-12-25 07:26:57", "license": "1", "title": "IMG_1386", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/150/332715143_ad6495dd61_o.jpg", "secret": "ad6495dd61", "media": "photo", "latitude": "0", "id": "332715143", "tags": "biged"}, {"datetaken": "2006-12-25 07:27:11", "license": "1", "title": "IMG_1390", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/332715169_386ffbea6e_o.jpg", "secret": "386ffbea6e", "media": "photo", "latitude": "0", "id": "332715169", "tags": "biged"}, {"datetaken": "2006-12-25 07:27:17", "license": "1", "title": "IMG_1392", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/332715187_490349e94d_o.jpg", "secret": "490349e94d", "media": "photo", "latitude": "0", "id": "332715187", "tags": "biged"}, {"datetaken": "2006-12-25 07:27:29", "license": "1", "title": "IMG_1393", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/332715229_513a6847a5_o.jpg", "secret": "513a6847a5", "media": "photo", "latitude": "0", "id": "332715229", "tags": "biged"}, {"datetaken": "2006-12-25 07:48:35", "license": "1", "title": "IMG_1394", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/332715273_a01b8f38f7_o.jpg", "secret": "a01b8f38f7", "media": "photo", "latitude": "0", "id": "332715273", "tags": "biged"}, {"datetaken": "2006-12-25 07:49:07", "license": "1", "title": "IMG_1396", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/332715318_a9f4df04ed_o.jpg", "secret": "a9f4df04ed", "media": "photo", "latitude": "0", "id": "332715318", "tags": "biged"}, {"datetaken": "2006-12-25 07:50:05", "license": "1", "title": "IMG_1397", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/332715358_6cb1b00ae7_o.jpg", "secret": "6cb1b00ae7", "media": "photo", "latitude": "0", "id": "332715358", "tags": "biged"}, {"datetaken": "2006-12-25 07:51:35", "license": "1", "title": "IMG_1399", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/332715386_8d7d694641_o.jpg", "secret": "8d7d694641", "media": "photo", "latitude": "0", "id": "332715386", "tags": "biged"}, {"datetaken": "2006-12-25 07:51:44", "license": "1", "title": "IMG_1400", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/142/332714836_8cd821bc00_o.jpg", "secret": "8cd821bc00", "media": "photo", "latitude": "0", "id": "332714836", "tags": "biged"}, {"datetaken": "2006-12-25 07:52:55", "license": "1", "title": "IMG_1401", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/163/332714880_6b75000462_o.jpg", "secret": "6b75000462", "media": "photo", "latitude": "0", "id": "332714880", "tags": "biged"}, {"datetaken": "2006-12-25 08:20:28", "license": "1", "title": "IMG_1402", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/332714942_273f2fd6ee_o.jpg", "secret": "273f2fd6ee", "media": "photo", "latitude": "0", "id": "332714942", "tags": "biged"}, {"datetaken": "2006-12-25 08:20:40", "license": "1", "title": "IMG_1403", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/332715003_e33a8437b2_o.jpg", "secret": "e33a8437b2", "media": "photo", "latitude": "0", "id": "332715003", "tags": "biged"}, {"datetaken": "2006-12-25 15:06:05", "license": "1", "title": "IMG_1404", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/143/333120498_fdbd510882_o.jpg", "secret": "fdbd510882", "media": "photo", "latitude": "0", "id": "333120498", "tags": "biged"}, {"datetaken": "2006-12-25 15:34:50", "license": "1", "title": "IMG_1408", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/333120557_a855be47c5_o.jpg", "secret": "a855be47c5", "media": "photo", "latitude": "0", "id": "333120557", "tags": "biged"}, {"datetaken": "2006-12-25 15:35:06", "license": "1", "title": "IMG_1409", "text": "", "album_id": "72157594437338244", "longitude": "0", "url_o": "https://farm1.staticflickr.com/166/333120622_5126e89004_o.jpg", "secret": "5126e89004", "media": "photo", "latitude": "0", "id": "333120622", "tags": "biged"}, {"datetaken": "2007-04-07 16:10:47", "license": "1", "title": "04072007", "text": "", "album_id": "72157600059208575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/449987629_02a1e55b3c_o.jpg", "secret": "c4388b38b1", "media": "photo", "latitude": "0", "id": "449987629", "tags": "shozu"}, {"datetaken": "2007-04-07 16:15:09", "license": "1", "title": "04072007(001)", "text": "", "album_id": "72157600059208575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/237/449990513_721290746d_o.jpg", "secret": "c8254cba31", "media": "photo", "latitude": "0", "id": "449990513", "tags": "cooking shozu dinner pork loin miseenplace mise fetastuffed fetastuffedporkloin"}, {"datetaken": "2007-04-07 16:49:01", "license": "1", "title": "04072007(002)", "text": "", "album_id": "72157600059208575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/222/450006972_b048d95ba5_o.jpg", "secret": "f141bdee8c", "media": "photo", "latitude": "0", "id": "450006972", "tags": "cooking shozu dinner pork loin miseenplace mise fetastuffed fetastuffedporkloin"}, {"datetaken": "2007-04-07 16:52:59", "license": "1", "title": "04072007(003)", "text": "", "album_id": "72157600059208575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/224/450022757_d363757dc8_o.jpg", "secret": "4a691ef2b9", "media": "photo", "latitude": "0", "id": "450022757", "tags": "cooking shozu dinner pork loin miseenplace mise fetastuffed fetastuffedporkloin"}, {"datetaken": "2007-04-07 16:58:35", "license": "1", "title": "04072007(004)", "text": "", "album_id": "72157600059208575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/450015098_89c1f40ece_o.jpg", "secret": "048efa82b1", "media": "photo", "latitude": "0", "id": "450015098", "tags": "cooking shozu dinner pork loin miseenplace mise fetastuffed fetastuffedporkloin"}, {"datetaken": "2007-04-07 18:26:17", "license": "1", "title": "04072007(008)", "text": "", "album_id": "72157600059208575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/248/450087758_fed88b7c6e_o.jpg", "secret": "fe298976aa", "media": "photo", "latitude": "0", "id": "450087758", "tags": "cooking shozu dinner pork loin miseenplace mise chilebraisedlambshanks fetastuffed fetastuffedporkloin"}, {"datetaken": "2007-04-07 19:58:32", "license": "1", "title": "04072007(009)", "text": "", "album_id": "72157600059208575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/450184707_6b34b6457b_o.jpg", "secret": "774540ca50", "media": "photo", "latitude": "0", "id": "450184707", "tags": "cooking shozu dinner pork loin miseenplace mise fetastuffed fetastuffedporkloin"}, {"datetaken": "2007-04-07 20:02:43", "license": "1", "title": "04072007(010)", "text": "", "album_id": "72157600059208575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/450188725_7bb44884f0_o.jpg", "secret": "5401aec701", "media": "photo", "latitude": "0", "id": "450188725", "tags": "cooking shozu dinner pork loin miseenplace mise fetastuffed fetastuffedporkloin"}, {"datetaken": "2007-04-07 20:03:55", "license": "1", "title": "04072007(011)", "text": "", "album_id": "72157600059208575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/242/450191415_6868906513_o.jpg", "secret": "7ffe3b8f74", "media": "photo", "latitude": "0", "id": "450191415", "tags": "cooking shozu dinner pork loin miseenplace mise fetastuffed fetastuffedporkloin"}, {"datetaken": "2007-04-07 20:37:51", "license": "1", "title": "04072007(012)", "text": "", "album_id": "72157600059208575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/247/450219967_918e2d0afc_o.jpg", "secret": "930f2e11c4", "media": "photo", "latitude": "0", "id": "450219967", "tags": "cooking shozu dinner pork loin miseenplace mise fetastuffed fetastuffedporkloin"}, {"datetaken": "2007-04-07 20:45:22", "license": "1", "title": "04072007(013)", "text": "", "album_id": "72157600059208575", "longitude": "0", "url_o": "https://farm1.staticflickr.com/254/450213594_7b8f5b8e24_o.jpg", "secret": "eed3cf558c", "media": "photo", "latitude": "0", "id": "450213594", "tags": "cooking shozu dinner pork loin miseenplace mise fetastuffed fetastuffedporkloin"}, {"datetaken": "2007-06-24 14:59:01", "license": "5", "title": "Roasted Almonds", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1223/626762900_f7337b2ee1_o.jpg", "secret": "5ff36ef956", "media": "photo", "latitude": "0", "id": "626762900", "tags": "friends food cooking almonds dinnerparty mastermaq"}, {"datetaken": "2007-06-24 15:03:30", "license": "5", "title": "Parmesan frico cups", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1393/625900419_8b24e1f68c_o.jpg", "secret": "4297064e13", "media": "photo", "latitude": "0", "id": "625900419", "tags": "friends food cooking dinnerparty mastermaq"}, {"datetaken": "2007-06-24 15:37:43", "license": "5", "title": "The table is set!", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1358/625903425_821a4f3305_o.jpg", "secret": "a0f38f195e", "media": "photo", "latitude": "0", "id": "625903425", "tags": "friends food cooking dinnerparty mastermaq"}, {"datetaken": "2007-06-24 16:11:59", "license": "5", "title": "Preparing the tomatoes", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1091/625905589_ab4986c485_o.jpg", "secret": "3b8164006d", "media": "photo", "latitude": "0", "id": "625905589", "tags": "friends food cooking tomatoes dinnerparty mastermaq"}, {"datetaken": "2007-06-24 16:12:10", "license": "5", "title": "Spinach", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1030/625908201_4c62c186fe_o.jpg", "secret": "838b68c2e6", "media": "photo", "latitude": "0", "id": "625908201", "tags": "friends food cooking dinnerparty spinach mastermaq"}, {"datetaken": "2007-06-24 16:23:50", "license": "5", "title": "Fresh Berries", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1065/625911157_d6eae0bc46_o.jpg", "secret": "922fac5cf8", "media": "photo", "latitude": "0", "id": "625911157", "tags": "friends food cooking berries strawberries dinnerparty blueberries mastermaq"}, {"datetaken": "2007-06-24 16:24:04", "license": "5", "title": "Tomatoes!", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1277/625914311_447cbd5030_o.jpg", "secret": "13c063af93", "media": "photo", "latitude": "0", "id": "625914311", "tags": "friends food cooking tomatoes dinnerparty mastermaq"}, {"datetaken": "2007-06-24 16:40:35", "license": "5", "title": "Preparing the spinach stuffed tomatoes", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1215/625917281_c185d280bb_o.jpg", "secret": "375a92f6a8", "media": "photo", "latitude": "0", "id": "625917281", "tags": "friends food cooking dinnerparty mastermaq"}, {"datetaken": "2007-06-24 16:52:34", "license": "5", "title": "Spinach stuffed tomatoes", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1272/626785564_5a6c062021_o.jpg", "secret": "947e0dff0b", "media": "photo", "latitude": "0", "id": "626785564", "tags": "friends food cooking tomatoes dinnerparty spinach mastermaq"}, {"datetaken": "2007-06-24 16:52:36", "license": "5", "title": "Penne with four cheeses", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1006/625922123_02d1ea490c_o.jpg", "secret": "2e4bbba6df", "media": "photo", "latitude": "0", "id": "625922123", "tags": "friends food cooking pasta dinnerparty mastermaq"}, {"datetaken": "2007-06-24 17:13:47", "license": "5", "title": "Salads", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1354/625924295_856b5d1312_o.jpg", "secret": "bd549c70ab", "media": "photo", "latitude": "0", "id": "625924295", "tags": "friends food cooking dinnerparty mastermaq"}, {"datetaken": "2007-06-24 17:13:58", "license": "5", "title": "Mixed greens with citrus vinaigrette in parmesan frico cups", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1388/626791514_42b133038a_o.jpg", "secret": "11f8e152fb", "media": "photo", "latitude": "0", "id": "626791514", "tags": "friends food cooking dinnerparty mastermaq"}, {"datetaken": "2007-06-24 17:14:29", "license": "5", "title": "Right before dinner...", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1344/625928573_04c3259189_o.jpg", "secret": "375e7394d5", "media": "photo", "latitude": "0", "id": "625928573", "tags": "friends food cooking dinnerparty mastermaq"}, {"datetaken": "2007-06-24 18:04:06", "license": "5", "title": "Dickson & Annie", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1345/626805616_f5e7bd0e24_o.jpg", "secret": "f598fb37a2", "media": "photo", "latitude": "0", "id": "626805616", "tags": "friends food cooking af dinnerparty mastermaq dicksonwong"}, {"datetaken": "2007-06-24 18:04:34", "license": "5", "title": "Fancy setup huh?", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1282/625931457_b8c7dba6a4_o.jpg", "secret": "44ee519055", "media": "photo", "latitude": "0", "id": "625931457", "tags": "friends food cooking dinnerparty mastermaq"}, {"datetaken": "2007-06-24 19:09:43", "license": "5", "title": "Pannacotta with fresh berries", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1299/625933807_b6447b8eff_o.jpg", "secret": "8e32719d86", "media": "photo", "latitude": "0", "id": "625933807", "tags": "friends food cooking dessert dinnerparty pannacotta mastermaq"}, {"datetaken": "2007-06-24 19:10:14", "license": "5", "title": "Ready for dessert!", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1409/626802700_677979f1a8_o.jpg", "secret": "1b5f7a9bbb", "media": "photo", "latitude": "0", "id": "626802700", "tags": "friends food cooking af dinnerparty mastermaq dicksonwong maylin sharonyeo janicefan"}, {"datetaken": "2007-06-24 19:38:37", "license": "5", "title": "Cookies!", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1077/625942225_84cec3e030_o.jpg", "secret": "5959dbf1f4", "media": "photo", "latitude": "0", "id": "625942225", "tags": "friends food cooking cookies dinnerparty shortbread mastermaq"}, {"datetaken": "2007-06-24 20:14:01", "license": "5", "title": "Group Shot", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1259/626810772_d8af9a0925_o.jpg", "secret": "db4e454fa0", "media": "photo", "latitude": "0", "id": "626810772", "tags": "friends food cooking af dinnerparty mastermaq dicksonwong maylin mackmale sharonyeo janicefan"}, {"datetaken": "2007-06-24 20:25:33", "license": "5", "title": "Creepin' on Facebook", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1214/626813570_cee085e064_o.jpg", "secret": "9fba57ab46", "media": "photo", "latitude": "0", "id": "626813570", "tags": "friends food cooking af dinnerparty mastermaq maylin mackmale janicefan"}, {"datetaken": "2007-06-24 20:25:50", "license": "5", "title": "Coffee & Tea", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1080/625950729_7be179f34a_o.jpg", "secret": "55b228c30f", "media": "photo", "latitude": "0", "id": "625950729", "tags": "friends food cooking dinnerparty mastermaq"}, {"datetaken": "2007-06-24 20:26:20", "license": "5", "title": "Dishes", "text": "", "album_id": "72157600490688511", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1094/625953713_dc7a414ef2_o.jpg", "secret": "cc6e35090e", "media": "photo", "latitude": "0", "id": "625953713", "tags": "friends food cooking dishes dinnerparty mastermaq"}, {"datetaken": "2007-05-27 00:43:18", "license": "3", "title": "Adirondacks - Almost ready to go", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1365/561936992_8f9620139a_o.jpg", "secret": "9c7eccddaa", "media": "photo", "latitude": "0", "id": "561936992", "tags": ""}, {"datetaken": "2007-05-27 00:46:01", "license": "3", "title": "Adirondacks - Take a Hike", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1336/562345677_78c401ad5c_o.jpg", "secret": "91412b080e", "media": "photo", "latitude": "0", "id": "562345677", "tags": ""}, {"datetaken": "2007-05-27 01:00:12", "license": "3", "title": "Adirondacks - clover", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1401/582088430_be8907be8a_o.jpg", "secret": "fb59a37478", "media": "photo", "latitude": "0", "id": "582088430", "tags": "adirondacks backpacking"}, {"datetaken": "2007-05-27 01:30:29", "license": "3", "title": "Rock Stackin' in the Adirondacks", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1398/562351561_7d5a2efb69_o.jpg", "secret": "647531b4a9", "media": "photo", "latitude": "0", "id": "562351561", "tags": "adirondacks rockstacking"}, {"datetaken": "2007-05-27 03:05:50", "license": "3", "title": "Adirondacks - wild blueberry plants", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1319/582090328_bac248472f_o.jpg", "secret": "c20f8552b8", "media": "photo", "latitude": "0", "id": "582090328", "tags": "adirondacks backpacking"}, {"datetaken": "2007-05-27 03:10:26", "license": "3", "title": "Adirondacks - Cool Trees", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1281/562359881_647bcf32bf_o.jpg", "secret": "4da5cb54e4", "media": "photo", "latitude": "0", "id": "562359881", "tags": ""}, {"datetaken": "2007-05-27 03:12:20", "license": "3", "title": "Adirondacks (37)", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1027/774361776_89dcfd2d52_o.jpg", "secret": "79be598a2a", "media": "photo", "latitude": "0", "id": "774361776", "tags": "trees adirondacks"}, {"datetaken": "2007-05-27 03:16:40", "license": "3", "title": "Adirondacks (40)", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1291/774344554_1a88973cea_o.jpg", "secret": "d9b3068428", "media": "photo", "latitude": "0", "id": "774344554", "tags": "creek rocks adirondacks"}, {"datetaken": "2007-05-27 03:19:33", "license": "3", "title": "Adirondacks_creekside", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1139/773504195_a129f67959_o.jpg", "secret": "15bb8ef315", "media": "photo", "latitude": "0", "id": "773504195", "tags": "trees creek rocks adirondacks"}, {"datetaken": "2007-05-27 03:28:31", "license": "3", "title": "Adirondacks - woodland knitting", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1306/582096232_87a300ba62_o.jpg", "secret": "6353088741", "media": "photo", "latitude": "0", "id": "582096232", "tags": "adirondacks backpacking"}, {"datetaken": "2007-05-27 03:28:54", "license": "3", "title": "Adirondacks - knitting", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1175/581852081_9cf33f7705_o.jpg", "secret": "5365808dc9", "media": "photo", "latitude": "0", "id": "581852081", "tags": "adirondacks backpacking"}, {"datetaken": "2007-05-27 03:44:08", "license": "3", "title": "Adirondacks - FLIES", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1396/581855413_0fd4dc44ce_o.jpg", "secret": "f857afc943", "media": "photo", "latitude": "0", "id": "581855413", "tags": "adirondacks backpacking"}, {"datetaken": "2007-05-27 06:03:55", "license": "3", "title": "Adirondacks - dinner and dessert", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1129/582108612_5d70e06377_o.jpg", "secret": "c6e7433757", "media": "photo", "latitude": "0", "id": "582108612", "tags": "adirondacks backpacking"}, {"datetaken": "2007-05-27 06:04:01", "license": "3", "title": "Adirondacks - camping cooker", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1350/581860217_f0f383a411_o.jpg", "secret": "de2fd5d1fa", "media": "photo", "latitude": "0", "id": "581860217", "tags": "adirondacks backpacking"}, {"datetaken": "2007-05-27 06:37:20", "license": "3", "title": "Adirondacks - camping brownies", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1140/582116794_81f693fbca_o.jpg", "secret": "912ce202a5", "media": "photo", "latitude": "0", "id": "582116794", "tags": "adirondacks backpacking"}, {"datetaken": "2007-05-27 06:37:28", "license": "3", "title": "Adirondacks - camping brownies 1", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1278/581865407_03e5af9473_o.jpg", "secret": "36c74adb47", "media": "photo", "latitude": "0", "id": "581865407", "tags": "adirondacks backpacking"}, {"datetaken": "2007-05-27 07:12:59", "license": "3", "title": "Adirondacks - Coals", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1113/582124566_3d80b71001_o.jpg", "secret": "dd58f4978a", "media": "photo", "latitude": "0", "id": "582124566", "tags": "adirondacks backpacking"}, {"datetaken": "2007-05-27 07:13:05", "license": "3", "title": "Adirondacks - Coals 2", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1430/582128066_02aa7cda01_o.jpg", "secret": "925b9f448c", "media": "photo", "latitude": "0", "id": "582128066", "tags": "adirondacks backpacking"}, {"datetaken": "2007-05-27 22:05:09", "license": "3", "title": "Adirondacks - Protein Pancakes", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1045/581873445_ce6dcd079c_o.jpg", "secret": "5382206d1c", "media": "photo", "latitude": "0", "id": "581873445", "tags": "adirondacks backpacking"}, {"datetaken": "2007-05-27 22:19:38", "license": "3", "title": "Adirondacks - resting", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1133/582134954_e7f3ced99a_o.jpg", "secret": "cc4306185a", "media": "photo", "latitude": "0", "id": "582134954", "tags": "adirondacks backpacking"}, {"datetaken": "2007-05-27 23:59:50", "license": "3", "title": "Adirondacks - wild violets", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1032/581880627_cd4accdf8c_o.jpg", "secret": "ad283f8a24", "media": "photo", "latitude": "0", "id": "581880627", "tags": "adirondacks backpacking"}, {"datetaken": "2007-05-28 05:02:43", "license": "3", "title": "Adirondacks_wildflower", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1077/774405172_cd8d3e76cd_o.jpg", "secret": "458670049b", "media": "photo", "latitude": "0", "id": "774405172", "tags": "adirondacks raindroplets"}, {"datetaken": "2007-05-28 05:02:51", "license": "3", "title": "Adirondacks_wildflower2", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1179/773542543_9e6f3c06ee_o.jpg", "secret": "305e93116f", "media": "photo", "latitude": "0", "id": "773542543", "tags": "adirondacks raindroplets"}, {"datetaken": "2007-05-28 05:04:02", "license": "3", "title": "Adirondack_whiteWildFlower", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1032/774394788_433565ec2a_o.jpg", "secret": "270b352196", "media": "photo", "latitude": "0", "id": "774394788", "tags": "adirondacks raindroplets"}, {"datetaken": "2007-05-28 05:38:58", "license": "3", "title": "Adirondacks_white", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1318/773510319_171238fa87_o.jpg", "secret": "5b82c26ce2", "media": "photo", "latitude": "0", "id": "773510319", "tags": "white trillium whiteflower adirondacks raindroplets"}, {"datetaken": "2007-05-28 07:53:41", "license": "3", "title": "Adirondacks - Gourmet dinner in the Rain", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1033/581883471_f28ae0d1b3_o.jpg", "secret": "c468654413", "media": "photo", "latitude": "0", "id": "581883471", "tags": "adirondacks backpacking"}, {"datetaken": "2007-05-28 20:51:00", "license": "3", "title": "Adirondacks - Murphy Lake", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1259/582145886_4b514c8c57_o.jpg", "secret": "9ce0a7d364", "media": "photo", "latitude": "0", "id": "582145886", "tags": "adirondacks backpacking"}, {"datetaken": "2007-05-28 21:23:50", "license": "3", "title": "Adirondacks - Orange friends", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1176/562337929_d4cc4b1fc9_o.jpg", "secret": "1f1d4a57cf", "media": "photo", "latitude": "0", "id": "562337929", "tags": ""}, {"datetaken": "2007-05-28 21:39:53", "license": "3", "title": "IMG_9212", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1136/581889389_4bd7a2b1dc_o.jpg", "secret": "88b09cb2ab", "media": "photo", "latitude": "0", "id": "581889389", "tags": "adirondacks backpacking"}, {"datetaken": "2007-05-28 21:39:53", "license": "3", "title": "Adirondacks_burgundy", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1032/774390496_a9fe03b56d_o.jpg", "secret": "b1ebd16647", "media": "photo", "latitude": "0", "id": "774390496", "tags": "trillium adirondacks raindroplets macroflower"}, {"datetaken": "2007-05-28 21:40:19", "license": "3", "title": "IMG_9216", "text": "", "album_id": "72157600392604254", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1404/581891353_e1c980d41d_o.jpg", "secret": "7091bec8b7", "media": "photo", "latitude": "0", "id": "581891353", "tags": "adirondacks backpacking"}, {"datetaken": "2007-01-01 13:22:39", "license": "6", "title": "New Years Day Parade", "text": "", "album_id": "72157594452419233", "longitude": "-0.126632", "url_o": "https://farm1.staticflickr.com/130/341294965_02cac5144d_o.jpg", "secret": "02cac5144d", "media": "photo", "latitude": "51.490615", "id": "341294965", "tags": "london march january parade newyearsday"}, {"datetaken": "2007-01-01 13:29:47", "license": "6", "title": "New Years Day Parade", "text": "", "album_id": "72157594452419233", "longitude": "-0.126632", "url_o": "https://farm1.staticflickr.com/147/341295319_4a7ccecb96_o.jpg", "secret": "4a7ccecb96", "media": "photo", "latitude": "51.490615", "id": "341295319", "tags": "london march january parade newyearsday"}, {"datetaken": "2007-01-01 13:40:09", "license": "6", "title": "New Years Day Parade", "text": "", "album_id": "72157594452419233", "longitude": "-0.126632", "url_o": "https://farm1.staticflickr.com/159/341295566_27245301ae_o.jpg", "secret": "27245301ae", "media": "photo", "latitude": "51.490615", "id": "341295566", "tags": "london march january parade newyearsday"}, {"datetaken": "2007-01-01 13:40:42", "license": "6", "title": "New Years Day Parade", "text": "", "album_id": "72157594452419233", "longitude": "-0.126632", "url_o": "https://farm1.staticflickr.com/127/341296245_4da4407ce7_o.jpg", "secret": "4da4407ce7", "media": "photo", "latitude": "51.490615", "id": "341296245", "tags": "london march january parade newyearsday"}, {"datetaken": "2007-01-01 13:44:26", "license": "6", "title": "New Years Day Parade", "text": "", "album_id": "72157594452419233", "longitude": "-0.126632", "url_o": "https://farm1.staticflickr.com/156/341296454_1b1f5ffccc_o.jpg", "secret": "1b1f5ffccc", "media": "photo", "latitude": "51.490615", "id": "341296454", "tags": "london march january parade newyearsday"}, {"datetaken": "2007-01-01 13:46:40", "license": "6", "title": "New Years Day Parade", "text": "", "album_id": "72157594452419233", "longitude": "-0.126632", "url_o": "https://farm1.staticflickr.com/141/341296586_603d6c4548_o.jpg", "secret": "603d6c4548", "media": "photo", "latitude": "51.490615", "id": "341296586", "tags": "london march january parade newyearsday"}, {"datetaken": "2007-01-01 13:46:57", "license": "6", "title": "New Years Day Parade", "text": "", "album_id": "72157594452419233", "longitude": "-0.126632", "url_o": "https://farm1.staticflickr.com/145/341296824_93e1c632af_o.jpg", "secret": "93e1c632af", "media": "photo", "latitude": "51.490615", "id": "341296824", "tags": "london march january parade newyearsday"}, {"datetaken": "2007-01-01 13:47:09", "license": "6", "title": "January 1st", "text": "", "album_id": "72157594452419233", "longitude": "-0.126632", "url_o": "https://farm1.staticflickr.com/139/341297034_e0f63d7989_o.jpg", "secret": "e0f63d7989", "media": "photo", "latitude": "51.490615", "id": "341297034", "tags": "london march january parade 365 newyearsday"}, {"datetaken": "2007-01-01 13:47:54", "license": "6", "title": "New Years Day Parade", "text": "", "album_id": "72157594452419233", "longitude": "-0.126632", "url_o": "https://farm1.staticflickr.com/159/341297302_b9cbdec19b_o.jpg", "secret": "b9cbdec19b", "media": "photo", "latitude": "51.490615", "id": "341297302", "tags": "london march january parade newyearsday"}, {"datetaken": "2007-01-01 13:48:35", "license": "6", "title": "New Years Day Parade", "text": "", "album_id": "72157594452419233", "longitude": "-0.126632", "url_o": "https://farm1.staticflickr.com/127/341297486_8f65228b91_o.jpg", "secret": "8f65228b91", "media": "photo", "latitude": "51.490615", "id": "341297486", "tags": "london march january parade newyearsday"}, {"datetaken": "2007-01-01 13:49:16", "license": "6", "title": "New Years Day Parade", "text": "", "album_id": "72157594452419233", "longitude": "-0.126632", "url_o": "https://farm1.staticflickr.com/127/341297718_0c017572e7_o.jpg", "secret": "0c017572e7", "media": "photo", "latitude": "51.490615", "id": "341297718", "tags": "london march january parade newyearsday"}, {"datetaken": "2010-05-03 10:02:23", "license": "4", "title": "May Day parade 2010 Wo9odbury Salterton", "text": "", "album_id": "72157623858517317", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3370/4574859668_a0f2078f29_o.jpg", "secret": "43c600ebac", "media": "photo", "latitude": "0", "id": "4574859668", "tags": ""}, {"datetaken": "2010-05-03 10:02:34", "license": "4", "title": "cimg2874.jpg", "text": "", "album_id": "72157623858517317", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3389/4574868028_a56b16f242_o.jpg", "secret": "d3e3568c28", "media": "photo", "latitude": "0", "id": "4574868028", "tags": ""}, {"datetaken": "2010-05-03 10:05:45", "license": "4", "title": "cimg2875.jpg", "text": "", "album_id": "72157623858517317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4574243777_6c62edc4f6_o.jpg", "secret": "99e5a6b06c", "media": "photo", "latitude": "0", "id": "4574243777", "tags": ""}, {"datetaken": "2010-05-03 10:09:56", "license": "4", "title": "cimg2876.jpg", "text": "", "album_id": "72157623858517317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4036/4574885136_ffe0e8130a_o.jpg", "secret": "82725c7a51", "media": "photo", "latitude": "0", "id": "4574885136", "tags": ""}, {"datetaken": "2010-05-03 10:10:17", "license": "4", "title": "cimg2877.jpg", "text": "", "album_id": "72157623858517317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4574260163_612983ff34_o.jpg", "secret": "61c008bf28", "media": "photo", "latitude": "0", "id": "4574260163", "tags": ""}, {"datetaken": "2010-05-03 10:10:26", "license": "4", "title": "cimg2878.jpg", "text": "", "album_id": "72157623858517317", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3303/4574902450_44b40b77a9_o.jpg", "secret": "756da0a2f3", "media": "photo", "latitude": "0", "id": "4574902450", "tags": ""}, {"datetaken": "2010-05-03 10:16:31", "license": "4", "title": "cimg2879.jpg", "text": "", "album_id": "72157623858517317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4574912288_83c502893b_o.jpg", "secret": "f6413d0c8b", "media": "photo", "latitude": "0", "id": "4574912288", "tags": ""}, {"datetaken": "2010-05-03 10:17:17", "license": "4", "title": "cimg2880.jpg", "text": "", "album_id": "72157623858517317", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3327/4574921324_7089b95381_o.jpg", "secret": "f240ed2f87", "media": "photo", "latitude": "0", "id": "4574921324", "tags": ""}, {"datetaken": "2010-05-03 10:17:27", "license": "4", "title": "cimg2881.jpg", "text": "", "album_id": "72157623858517317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4574930236_528fed68e1_o.jpg", "secret": "0804c46f0a", "media": "photo", "latitude": "0", "id": "4574930236", "tags": ""}, {"datetaken": "2010-05-03 10:17:44", "license": "4", "title": "cimg2882.jpg", "text": "", "album_id": "72157623858517317", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3321/4574939748_00a8758dc4_o.jpg", "secret": "705be6fbd0", "media": "photo", "latitude": "0", "id": "4574939748", "tags": ""}, {"datetaken": "2010-05-03 10:19:47", "license": "4", "title": "cimg2883.jpg", "text": "", "album_id": "72157623858517317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4574947880_9312b2a73d_o.jpg", "secret": "0702a6b53b", "media": "photo", "latitude": "0", "id": "4574947880", "tags": ""}, {"datetaken": "2010-05-03 10:19:55", "license": "4", "title": "cimg2884.jpg", "text": "", "album_id": "72157623858517317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4574955958_2cf18af087_o.jpg", "secret": "599b1a4e84", "media": "photo", "latitude": "0", "id": "4574955958", "tags": ""}, {"datetaken": "2010-05-03 10:19:58", "license": "4", "title": "cimg2885.jpg", "text": "", "album_id": "72157623858517317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4574330095_b2246e64e6_o.jpg", "secret": "103f37a938", "media": "photo", "latitude": "0", "id": "4574330095", "tags": ""}, {"datetaken": "2010-05-03 10:20:13", "license": "4", "title": "cimg2886.jpg", "text": "", "album_id": "72157623858517317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4574971768_dcfcca5b1c_o.jpg", "secret": "84ec9ea38e", "media": "photo", "latitude": "0", "id": "4574971768", "tags": ""}, {"datetaken": "2010-05-03 10:20:20", "license": "4", "title": "cimg2887.jpg", "text": "", "album_id": "72157623858517317", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3317/4574980278_b00ab27c27_o.jpg", "secret": "e982bc6a31", "media": "photo", "latitude": "0", "id": "4574980278", "tags": ""}, {"datetaken": "2010-05-03 10:21:15", "license": "4", "title": "cimg2888.jpg", "text": "", "album_id": "72157623858517317", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4574355729_f0df2cd0c8_o.jpg", "secret": "06f2a5b2cb", "media": "photo", "latitude": "0", "id": "4574355729", "tags": ""}, {"datetaken": "2010-05-03 07:12:07", "license": "1", "title": "Pedal Cloud and the Shake Shack", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4574985530_fbce2e1219_o.jpg", "secret": "18c999ef1c", "media": "video", "latitude": "0", "id": "4574985530", "tags": "music cloud bike bicycle rock day drum bass guitar percussion may minneapolis parade shake shack bloomington 33rd mayday avenue mn pedal heartofthebeast hobt powederhorn"}, {"datetaken": "2010-05-03 07:12:25", "license": "1", "title": "Shake that shack", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3359/4574986576_a7257fcab5_o.jpg", "secret": "58c14643f7", "media": "video", "latitude": "0", "id": "4574986576", "tags": "music cloud bike bicycle rock day drum bass guitar percussion may minneapolis parade shake shack bloomington 33rd mayday avenue mn pedal heartofthebeast hobt powederhorn"}, {"datetaken": "2010-05-03 09:53:36", "license": "1", "title": "Start of the parade", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3371/4574477727_a63f008a10_o.jpg", "secret": "75db63c46a", "media": "photo", "latitude": "0", "id": "4574477727", "tags": "cloud bike bicycle day may minneapolis parade shake shack bloomington 33rd mayday avenue mn pedal heartofthebeast hobt powederhorn"}, {"datetaken": "2010-05-03 09:53:38", "license": "1", "title": "crowd at 33rd and Bloomington", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4575111902_3054d168ef_o.jpg", "secret": "92b97c6d15", "media": "photo", "latitude": "0", "id": "4575111902", "tags": "cloud bike bicycle day may minneapolis parade shake shack bloomington 33rd mayday avenue mn pedal heartofthebeast hobt powederhorn"}, {"datetaken": "2010-05-03 09:53:40", "license": "1", "title": "Pedal cloud pulling the shack", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4575112018_44804f62cc_o.jpg", "secret": "7f37fb9225", "media": "photo", "latitude": "0", "id": "4575112018", "tags": "cloud bike bicycle day may minneapolis parade shake shack bloomington 33rd mayday avenue mn pedal heartofthebeast hobt powederhorn"}, {"datetaken": "2010-05-03 09:53:43", "license": "1", "title": "Lilah", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3524/4575112144_b062b92e27_o.jpg", "secret": "cbf07675db", "media": "photo", "latitude": "0", "id": "4575112144", "tags": "cloud dog bike bicycle mutt day may minneapolis parade lilah shake shack bloomington 33rd mayday avenue mn pedal heartofthebeast hobt powederhorn"}, {"datetaken": "2010-05-03 09:53:44", "license": "1", "title": "Tall bike remount", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3358/4574478081_f2c13b8aa4_o.jpg", "secret": "09cab33f49", "media": "photo", "latitude": "0", "id": "4574478081", "tags": "cloud bike bicycle day may minneapolis parade shake shack bloomington 33rd mayday avenue mn pedal heartofthebeast hobt powederhorn"}, {"datetaken": "2010-05-03 09:53:47", "license": "1", "title": "", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4575112380_60ace70d7f_o.jpg", "secret": "91c1729a2a", "media": "photo", "latitude": "0", "id": "4575112380", "tags": "cloud bike bicycle day may minneapolis parade shake shack bloomington 33rd mayday avenue mn pedal heartofthebeast hobt powederhorn"}, {"datetaken": "2010-05-03 09:53:50", "license": "1", "title": "", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4574478411_c6c89f7f32_o.jpg", "secret": "aed5af565a", "media": "photo", "latitude": "0", "id": "4574478411", "tags": "cloud bike bicycle day may minneapolis parade shake shack bloomington 33rd mayday avenue mn pedal heartofthebeast hobt powederhorn"}, {"datetaken": "2010-05-03 09:53:51", "license": "1", "title": "Pedal Cloud and Band", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3355/4575112588_2ca799b9bc_o.jpg", "secret": "5400fb9ff3", "media": "photo", "latitude": "0", "id": "4575112588", "tags": "cloud bike bicycle day may minneapolis parade shake shack bloomington 33rd mayday avenue mn pedal heartofthebeast hobt powederhorn"}, {"datetaken": "2010-05-03 09:53:53", "license": "1", "title": "BLBC tall bikes", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3410/4575112686_cb70e4fd08_o.jpg", "secret": "617b957ed1", "media": "photo", "latitude": "0", "id": "4575112686", "tags": "cloud bike bicycle day may minneapolis parade shake shack bloomington 33rd mayday avenue mn pedal heartofthebeast hobt powederhorn"}, {"datetaken": "2010-05-03 09:53:56", "license": "1", "title": "Train of human power", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3394/4574478715_13926df80b_o.jpg", "secret": "8e55d2db7b", "media": "photo", "latitude": "0", "id": "4574478715", "tags": "cloud bike bicycle day may minneapolis parade shake shack bloomington 33rd mayday avenue mn pedal heartofthebeast hobt powederhorn"}, {"datetaken": "2010-05-03 09:53:57", "license": "1", "title": "Street sign seat", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3348/4574478783_b1745eda23_o.jpg", "secret": "05aa88d053", "media": "photo", "latitude": "0", "id": "4574478783", "tags": "cloud bike bicycle day may minneapolis parade shake shack bloomington 33rd mayday avenue mn pedal heartofthebeast hobt powederhorn"}, {"datetaken": "2010-05-03 09:53:59", "license": "1", "title": "", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4575112944_8a3d7cfc29_o.jpg", "secret": "37463dc072", "media": "photo", "latitude": "0", "id": "4575112944", "tags": "cloud bike bicycle day may minneapolis parade shake shack bloomington 33rd mayday avenue mn pedal heartofthebeast hobt powederhorn"}, {"datetaken": "2010-05-03 09:54:03", "license": "1", "title": "etc", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4574479079_c9b7088a1d_o.jpg", "secret": "c3d8883112", "media": "photo", "latitude": "0", "id": "4574479079", "tags": "cloud bike bicycle day may minneapolis parade shake shack bloomington 33rd mayday avenue mn pedal heartofthebeast hobt powederhorn"}, {"datetaken": "2010-05-03 09:54:06", "license": "1", "title": "Shake Shack", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4574479225_949406a3de_o.jpg", "secret": "b89d55b54e", "media": "photo", "latitude": "0", "id": "4574479225", "tags": "cloud bike bicycle day may minneapolis parade shake shack bloomington 33rd mayday avenue mn pedal heartofthebeast hobt powederhorn"}, {"datetaken": "2010-05-03 09:54:10", "license": "1", "title": "band", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4575113492_e68948dd63_o.jpg", "secret": "c11fa8c994", "media": "photo", "latitude": "0", "id": "4575113492", "tags": "cloud bike bicycle day may minneapolis parade shake shack bloomington 33rd mayday avenue mn pedal heartofthebeast hobt powederhorn"}, {"datetaken": "2010-05-03 09:54:14", "license": "1", "title": "Stupor Bowl card on Chloe's tag-a-long", "text": "", "album_id": "72157623983137974", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3312/4575113680_6f92e70711_o.jpg", "secret": "19702887f6", "media": "photo", "latitude": "0", "id": "4575113680", "tags": "birthday stone race arch anniversary no name 4th minneapolis alleycat"}, {"datetaken": "2010-04-10 16:56:50", "license": "3", "title": "Zombie Parade @ BIFFF 2010-8870", "text": "", "album_id": "72157623705927805", "longitude": "4.353568", "url_o": "https://farm3.staticflickr.com/2413/4510865406_e1c6730ace_o.jpg", "secret": "0d8bb1e651", "media": "photo", "latitude": "50.849977", "id": "4510865406", "tags": "brussels sunshine nikon belgium belgique zombie vince bruxelles parade deadpeople isee d90 bifff zombieday theyareamongstus kmeron vincentphilbert"}, {"datetaken": "2010-04-10 16:58:15", "license": "3", "title": "Zombie Parade @ BIFFF 2010-7301", "text": "", "album_id": "72157623705927805", "longitude": "4.353568", "url_o": "https://farm5.staticflickr.com/4023/4510235231_69a9a01c97_o.jpg", "secret": "b0f873bc5b", "media": "photo", "latitude": "50.849977", "id": "4510235231", "tags": "brussels sunshine nikon belgium belgique zombie vince bruxelles parade deadpeople isee d90 bifff zombieday theyareamongstus kmeron vincentphilbert"}, {"datetaken": "2010-04-10 16:58:20", "license": "3", "title": "Loooping met some Zombies @ Zombie Parade BIFFF 2010-7308", "text": "", "album_id": "72157623705927805", "longitude": "4.353568", "url_o": "https://farm5.staticflickr.com/4069/4510882830_b413a1c516_o.jpg", "secret": "9ce2a48771", "media": "photo", "latitude": "50.849977", "id": "4510882830", "tags": "brussels sunshine nikon belgium belgique zombie vince bruxelles parade deadpeople isee d90 bifff zombieday theyareamongstus kmeron vincentphilbert"}, {"datetaken": "2010-04-10 16:59:28", "license": "3", "title": "Zombie Parade @ BIFFF 2010-8872", "text": "", "album_id": "72157623705927805", "longitude": "4.353568", "url_o": "https://farm3.staticflickr.com/2698/4510890152_56751aef37_o.jpg", "secret": "be39b381d1", "media": "photo", "latitude": "50.849977", "id": "4510890152", "tags": "brussels sunshine nikon belgium belgique zombie vince bruxelles parade deadpeople isee d90 bifff zombieday theyareamongstus kmeron vincentphilbert"}, {"datetaken": "2010-04-10 16:59:43", "license": "3", "title": "Zombie Parade @ BIFFF 2010-8873", "text": "", "album_id": "72157623705927805", "longitude": "4.353568", "url_o": "https://farm3.staticflickr.com/2388/4510894272_cb3ed222a0_o.jpg", "secret": "24a17c822e", "media": "photo", "latitude": "50.849977", "id": "4510894272", "tags": "brussels sunshine nikon belgium belgique zombie vince bruxelles parade deadpeople isee d90 bifff zombieday theyareamongstus kmeron vincentphilbert"}, {"datetaken": "2010-04-10 17:01:21", "license": "3", "title": "Zombie Parade @ Bifff 2010-8887", "text": "", "album_id": "72157623705927805", "longitude": "4.348633", "url_o": "https://farm5.staticflickr.com/4020/4523043404_75ebaa26f6_o.jpg", "secret": "0aa24884a2", "media": "photo", "latitude": "50.847227", "id": "4523043404", "tags": "brussels zombie bifff zombieparade"}, {"datetaken": "2010-04-10 17:01:23", "license": "3", "title": "Zombie Parade @ Bifff 2010-8889", "text": "", "album_id": "72157623705927805", "longitude": "4.348633", "url_o": "https://farm5.staticflickr.com/4029/4522410229_67a65be63d_o.jpg", "secret": "d642f01647", "media": "photo", "latitude": "50.847227", "id": "4522410229", "tags": "brussels zombie bifff zombieparade"}, {"datetaken": "2010-04-10 17:02:16", "license": "3", "title": "Zombie Parade @ Bifff 2010-8891", "text": "", "album_id": "72157623705927805", "longitude": "4.348633", "url_o": "https://farm5.staticflickr.com/4028/4522410905_ca9db869f0_o.jpg", "secret": "f8dfb3886c", "media": "photo", "latitude": "50.847227", "id": "4522410905", "tags": "brussels zombie bifff zombieparade"}, {"datetaken": "2010-04-10 17:04:55", "license": "3", "title": "Zombie Parade @ Bifff 2010-8893", "text": "", "album_id": "72157623705927805", "longitude": "4.348633", "url_o": "https://farm3.staticflickr.com/2715/4522411475_3b841c71a6_o.jpg", "secret": "0ece8af28d", "media": "photo", "latitude": "50.847227", "id": "4522411475", "tags": "brussels zombie bifff zombieparade"}, {"datetaken": "2010-04-10 17:36:29", "license": "3", "title": "Loooping had a drink with a friend after the Zombie Parade @ Bifff Brussels -Belgium-", "text": "", "album_id": "72157623705927805", "longitude": "4.348633", "url_o": "https://farm3.staticflickr.com/2727/4523045464_f42c588ff1_o.jpg", "secret": "123c0514d4", "media": "photo", "latitude": "50.847227", "id": "4523045464", "tags": "brussels zombie bifff zombieparade"}, {"datetaken": "2010-03-14 00:41:20", "license": "0", "title": "St. Patrick's Day River Dyeing 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4432163226_789bf0afff_o.jpg", "secret": "733ba40933", "media": "photo", "latitude": "0", "id": "4432163226", "tags": "chicago stpatricksday 2010 riverdyeing"}, {"datetaken": "2010-03-14 00:42:21", "license": "1", "title": "St. Patrick's Day River Dyeing 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2745/4431393063_150dfc57d3_o.jpg", "secret": "db9f972d43", "media": "photo", "latitude": "0", "id": "4431393063", "tags": "chicago stpatricksday 2010 riverdyeing"}, {"datetaken": "2010-03-14 00:42:35", "license": "1", "title": "St. Patrick's Day River Dyeing 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2728/4432163302_8ba1e38cc0_o.jpg", "secret": "f1fb2f017f", "media": "photo", "latitude": "0", "id": "4432163302", "tags": "chicago stpatricksday 2010 riverdyeing"}, {"datetaken": "2010-03-14 01:06:53", "license": "1", "title": "St. Patrick's Day River Dyeing 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4432153496_4e3a5f9755_o.jpg", "secret": "dc7346e0d1", "media": "photo", "latitude": "0", "id": "4432153496", "tags": "chicago stpatricksday 2010 riverdyeing"}, {"datetaken": "2010-03-14 01:15:18", "license": "1", "title": "St. Patrick's Day River Dyeing 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4431382405_bd37d06d75_o.jpg", "secret": "b908b5755e", "media": "photo", "latitude": "0", "id": "4431382405", "tags": "chicago stpatricksday 2010 riverdyeing"}, {"datetaken": "2010-03-14 01:17:32", "license": "1", "title": "St. Patrick's Day River Dyeing 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4431382715_cfb6a82e5c_o.jpg", "secret": "d41d5f7655", "media": "photo", "latitude": "0", "id": "4431382715", "tags": "chicago stpatricksday 2010 riverdyeing"}, {"datetaken": "2010-03-14 01:18:11", "license": "1", "title": "St. Patrick's Day River Dyeing 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4431373759_0d938711ea_o.jpg", "secret": "e7ae08c1b9", "media": "photo", "latitude": "0", "id": "4431373759", "tags": "chicago stpatricksday 2010 riverdyeing"}, {"datetaken": "2010-03-14 01:23:00", "license": "1", "title": "St. Patrick's Day River Dyeing 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4431372971_e795f112b8_o.jpg", "secret": "80c0c927d0", "media": "photo", "latitude": "0", "id": "4431372971", "tags": "chicago stpatricksday 2010 riverdyeing"}, {"datetaken": "2010-03-14 01:25:52", "license": "0", "title": "St. Patrick's Day River Dyeing 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2784/4431374119_4abca24458_o.jpg", "secret": "5e284aec74", "media": "photo", "latitude": "0", "id": "4431374119", "tags": "chicago stpatricksday 2010 riverdyeing"}, {"datetaken": "2010-03-14 01:31:54", "license": "1", "title": "St. Patrick's Day River Dyeing 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4432089786_04bb323675_o.jpg", "secret": "5fc816824f", "media": "photo", "latitude": "0", "id": "4432089786", "tags": "chicago stpatricksday 2010 riverdyeing"}, {"datetaken": "2010-03-14 01:32:04", "license": "1", "title": "St. Patrick's Day River Dyeing 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4431319579_f7b2c97d35_o.jpg", "secret": "d07d48037d", "media": "photo", "latitude": "0", "id": "4431319579", "tags": "chicago stpatricksday 2010 riverdyeing"}, {"datetaken": "2010-03-14 01:36:26", "license": "1", "title": "St. Patrick's Day River Dyeing 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4431298011_7eb721e7ee_o.jpg", "secret": "39229b1db0", "media": "photo", "latitude": "0", "id": "4431298011", "tags": "chicago stpatricksday 2010 dyeingriver"}, {"datetaken": "2010-03-14 01:37:09", "license": "1", "title": "St. Patrick's Day River Dyeing 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4432053494_79a8ae12b4_o.jpg", "secret": "9bed3d340d", "media": "photo", "latitude": "0", "id": "4432053494", "tags": "chicago stpatricksday 2010 riverdyeing"}, {"datetaken": "2010-03-14 01:38:37", "license": "1", "title": "St. Patrick's Day River Dyeing 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4431282653_cea9826030_o.jpg", "secret": "2c523d2688", "media": "photo", "latitude": "0", "id": "4431282653", "tags": "chicago stpatricksday 2010 riverdyeing"}, {"datetaken": "2010-03-14 01:39:29", "license": "1", "title": "St. Patrick's Day River Dyeing 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2798/4431282985_e920e5db7f_o.jpg", "secret": "9a54c1067d", "media": "photo", "latitude": "0", "id": "4431282985", "tags": "chicago stpatricksday 2010 riverdyeing"}, {"datetaken": "2010-03-14 01:46:47", "license": "0", "title": "St. Patrick's Day River Dyeing 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2778/4432054066_81055eaeb7_o.jpg", "secret": "f10942ab9d", "media": "photo", "latitude": "0", "id": "4432054066", "tags": "chicago stpatricksday 2010 riverdyeing"}, {"datetaken": "2010-03-14 01:54:57", "license": "0", "title": "St. Patrick's Day Parade 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2782/4431283245_d013b6503e_o.jpg", "secret": "9a489359c8", "media": "photo", "latitude": "0", "id": "4431283245", "tags": "chicago stpatricksday 2010 riverdyeing"}, {"datetaken": "2010-03-14 01:55:20", "license": "0", "title": "St. Patrick's Day Parade 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2727/4432040664_f9385586e8_o.jpg", "secret": "6d8ef884db", "media": "photo", "latitude": "0", "id": "4432040664", "tags": "chicago stpatricksday 2010"}, {"datetaken": "2010-03-14 03:10:12", "license": "0", "title": "St. Patrick's Day Parade 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4432040768_cfc1f18dc9_o.jpg", "secret": "6451b29b8b", "media": "photo", "latitude": "0", "id": "4432040768", "tags": "chicago stpatricksday 2010"}, {"datetaken": "2010-03-14 03:11:08", "license": "0", "title": "St. Patrick's Day Parade 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4432041080_6d92bf67bb_o.jpg", "secret": "72904c0f4e", "media": "photo", "latitude": "0", "id": "4432041080", "tags": "chicago stpatricksday 2010"}, {"datetaken": "2010-03-14 03:20:06", "license": "1", "title": "St. Patrick's Day Parade 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2758/4432041334_0637d7166d_o.jpg", "secret": "ba2ddaec56", "media": "photo", "latitude": "0", "id": "4432041334", "tags": "chicago stpatricksday 2010"}, {"datetaken": "2010-03-14 03:26:26", "license": "1", "title": "St. Patrick's Day Parade 2010", "text": "", "album_id": "72157623492642401", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4432041434_104a0a37ae_o.jpg", "secret": "5ed6347738", "media": "photo", "latitude": "0", "id": "4432041434", "tags": "chicago stpatricksday 2010"}, {"datetaken": "2010-03-14 08:31:41", "license": "5", "title": "\u4eac\u90fd\u9d28\u5ddd", "text": "", "album_id": "72157623493517207", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2723/4432412662_976785c2f0_o.jpg", "secret": "d4cdce4bff", "media": "photo", "latitude": "0", "id": "4432412662", "tags": "camera 35mm river iso100 kyoto ace pinhole \u4eac\u90fd fujifilm reala kamogawa \u9d28\u5ddd f130 psharan"}, {"datetaken": "2010-03-14 08:31:44", "license": "5", "title": "", "text": "", "album_id": "72157623493517207", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2729/4431642327_5f5fc29b44_o.jpg", "secret": "fc7a0ab771", "media": "photo", "latitude": "0", "id": "4431642327", "tags": "camera 35mm river iso100 kyoto ace pinhole \u4eac\u90fd fujifilm reala kamogawa \u9d28\u5ddd f130 psharan"}, {"datetaken": "2010-03-14 08:31:48", "license": "5", "title": "\u4eac\u90fd\u9d28\u5ddd", "text": "", "album_id": "72157623493517207", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4431642465_56242febb3_o.jpg", "secret": "c39dfd43ed", "media": "photo", "latitude": "0", "id": "4431642465", "tags": "camera 35mm river iso100 kyoto ace pinhole \u4eac\u90fd fujifilm reala kamogawa \u9d28\u5ddd f130 psharan"}, {"datetaken": "2010-03-14 08:31:52", "license": "5", "title": "\u4eac\u90fd\u4e09\u6761\u5927\u6a4b", "text": "", "album_id": "72157623493517207", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4432413110_a8ef2d9253_o.jpg", "secret": "14e7dfc5b0", "media": "photo", "latitude": "0", "id": "4432413110", "tags": "camera 35mm river iso100 kyoto ace central perspective pinhole \u4eac\u90fd fujifilm reala kamogawa \u9d28\u5ddd f130 psharan"}, {"datetaken": "2010-03-14 08:31:55", "license": "5", "title": "picture of the sun", "text": "", "album_id": "72157623493517207", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4432413222_a6a296a15e_o.jpg", "secret": "20eff7bce5", "media": "photo", "latitude": "0", "id": "4432413222", "tags": "camera 35mm river iso100 kyoto ace pinhole \u4eac\u90fd fujifilm reala kamogawa \u9d28\u5ddd f130 psharan"}, {"datetaken": "2010-03-14 08:31:59", "license": "5", "title": "", "text": "", "album_id": "72157623493517207", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2716/4432413368_9d3ba37261_o.jpg", "secret": "27c1d2edc6", "media": "photo", "latitude": "0", "id": "4432413368", "tags": "camera 35mm river iso100 kyoto ace pinhole \u4eac\u90fd fujifilm reala kamogawa \u9d28\u5ddd f130 psharan"}, {"datetaken": "2010-03-14 08:32:02", "license": "5", "title": "St. Patrick's Day, Kyoto", "text": "", "album_id": "72157623493517207", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2685/4432413526_4575ebb001_o.jpg", "secret": "2355b13fc8", "media": "photo", "latitude": "0", "id": "4432413526", "tags": "camera 35mm river iso100 kyoto ace pinhole \u4eac\u90fd fujifilm reala kamogawa \u9d28\u5ddd f130 psharan"}, {"datetaken": "2010-03-14 08:32:05", "license": "5", "title": "St. Patrick's Day Parade, Kyoto", "text": "", "album_id": "72157623493517207", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2791/4432413644_79df922198_o.jpg", "secret": "e15c347ef3", "media": "photo", "latitude": "0", "id": "4432413644", "tags": "camera 35mm river iso100 kyoto ace pinhole \u4eac\u90fd fujifilm reala kamogawa \u9d28\u5ddd f130 psharan"}, {"datetaken": "2010-03-14 08:32:09", "license": "5", "title": "St. Patrick's Day Parade, Kyoto", "text": "", "album_id": "72157623493517207", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4432413814_fff8a9cb4b_o.jpg", "secret": "cda6a0208b", "media": "photo", "latitude": "0", "id": "4432413814", "tags": "camera 35mm river iso100 kyoto ace pinhole \u4eac\u90fd fujifilm reala kamogawa \u9d28\u5ddd f130 psharan"}, {"datetaken": "2010-03-14 08:32:13", "license": "5", "title": "St. Patrick's Day Parade, Kyoto", "text": "", "album_id": "72157623493517207", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4431643539_e41f9822f8_o.jpg", "secret": "7cd04e49a2", "media": "photo", "latitude": "0", "id": "4431643539", "tags": "camera 35mm river iso100 kyoto ace pinhole \u4eac\u90fd fujifilm reala kamogawa \u9d28\u5ddd f130 psharan"}, {"datetaken": "2010-03-14 08:32:16", "license": "5", "title": "St. Patrick's Day Parade, Kyoto", "text": "", "album_id": "72157623493517207", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4431643663_7cb50d7fe7_o.jpg", "secret": "7f221944f3", "media": "photo", "latitude": "0", "id": "4431643663", "tags": "camera 35mm river iso100 kyoto ace pinhole \u4eac\u90fd fujifilm reala kamogawa \u9d28\u5ddd f130 psharan"}, {"datetaken": "2010-03-14 08:32:20", "license": "5", "title": "", "text": "", "album_id": "72157623493517207", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4432414244_0540a58308_o.jpg", "secret": "c3d49b30e0", "media": "photo", "latitude": "0", "id": "4432414244", "tags": "camera 35mm river iso100 kyoto ace pinhole \u4eac\u90fd fujifilm reala kamogawa \u9d28\u5ddd f130 psharan"}, {"datetaken": "2010-03-13 12:03:45", "license": "2", "title": "Tesla", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4432860432_4a9728eeaf_o.jpg", "secret": "30ac58f905", "media": "photo", "latitude": "0", "id": "4432860432", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 12:10:02", "license": "2", "title": "", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4432860642_b2236b9474_o.jpg", "secret": "505f52e90c", "media": "photo", "latitude": "0", "id": "4432860642", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 12:22:13", "license": "2", "title": "", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4432087887_57aea0d6bc_o.jpg", "secret": "1dbd16c223", "media": "photo", "latitude": "0", "id": "4432087887", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 12:24:05", "license": "2", "title": "", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4432861026_4bbaf3c089_o.jpg", "secret": "69779c3a07", "media": "photo", "latitude": "0", "id": "4432861026", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 12:26:57", "license": "2", "title": "HSU Lumber Jacks", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4432861318_f7e6b9af20_o.jpg", "secret": "61e88c2b43", "media": "photo", "latitude": "0", "id": "4432861318", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 12:41:13", "license": "2", "title": "Senator Mark Leno", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4035/4432861594_b7a8999b3c_o.jpg", "secret": "0ea619fa77", "media": "photo", "latitude": "0", "id": "4432861594", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 12:51:52", "license": "2", "title": "Rose of Tralee", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4432088895_f2683754f8_o.jpg", "secret": "01ff32ae41", "media": "photo", "latitude": "0", "id": "4432088895", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 12:59:06", "license": "2", "title": "HSU Lumber Jacks", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4432862148_41c32e9af7_o.jpg", "secret": "84f11c3250", "media": "photo", "latitude": "0", "id": "4432862148", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 12:59:45", "license": "2", "title": "Mini Bart", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4432862494_fdc3217923_o.jpg", "secret": "39a3fff579", "media": "photo", "latitude": "0", "id": "4432862494", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 13:03:42", "license": "2", "title": "A Girl and Her Irish Wolfhound", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4432862936_57c954896b_o.jpg", "secret": "1025ace817", "media": "photo", "latitude": "0", "id": "4432862936", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 13:08:55", "license": "2", "title": "", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2742/4432090443_a91528d899_o.jpg", "secret": "38bff6812a", "media": "photo", "latitude": "0", "id": "4432090443", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 13:19:44", "license": "2", "title": "1948 Taxi", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4432090805_60e4779033_o.jpg", "secret": "2fd973bbb5", "media": "photo", "latitude": "0", "id": "4432090805", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 13:24:13", "license": "2", "title": "Miss San Francisco", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4432091037_11bdebf08a_o.jpg", "secret": "511591b480", "media": "photo", "latitude": "0", "id": "4432091037", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 13:24:51", "license": "2", "title": "", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2718/4432091521_f4456a4525_o.jpg", "secret": "ff1b13d7e9", "media": "photo", "latitude": "0", "id": "4432091521", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 13:34:38", "license": "2", "title": "", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4432092007_b8de54248b_o.jpg", "secret": "fce38ca4a6", "media": "photo", "latitude": "0", "id": "4432092007", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 13:37:10", "license": "2", "title": "", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2752/4432865178_28d6e059a1_o.jpg", "secret": "db06936d0f", "media": "photo", "latitude": "0", "id": "4432865178", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 13:37:33", "license": "2", "title": "Dodge Power Wagon", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4432092657_725bba1325_o.jpg", "secret": "e36e8b96db", "media": "photo", "latitude": "0", "id": "4432092657", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 13:44:51", "license": "2", "title": "", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2757/4432092995_733cb93255_o.jpg", "secret": "312c610e4a", "media": "photo", "latitude": "0", "id": "4432092995", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 13:47:31", "license": "2", "title": "", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4432093385_6d6fba5071_o.jpg", "secret": "9cd81a65e8", "media": "photo", "latitude": "0", "id": "4432093385", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 14:44:47", "license": "2", "title": "Lefty O Doul's", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4432866692_85ee4ee977_o.jpg", "secret": "1ef0ee1fb3", "media": "photo", "latitude": "0", "id": "4432866692", "tags": "saint patricks day parade 2010 san francisco sf california ca"}, {"datetaken": "2010-03-13 16:04:16", "license": "2", "title": "San Francisco Irish Piper", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4432094139_2bf6d67694_o.jpg", "secret": "69415dfbcc", "media": "photo", "latitude": "0", "id": "4432094139", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 16:05:14", "license": "2", "title": "Bushmills", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4432867424_2a30372d1a_o.jpg", "secret": "09d2880953", "media": "photo", "latitude": "0", "id": "4432867424", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 16:13:53", "license": "2", "title": "Wicked", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4432095095_97a42c6d2b_o.jpg", "secret": "edda01ff07", "media": "photo", "latitude": "0", "id": "4432095095", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 16:15:41", "license": "2", "title": "Blondie's Pizza", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4432095535_5074dc779b_o.jpg", "secret": "375f376da7", "media": "photo", "latitude": "0", "id": "4432095535", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 16:55:44", "license": "2", "title": "Mime", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4432095923_f2258c7e7e_o.jpg", "secret": "7dcf48b062", "media": "photo", "latitude": "0", "id": "4432095923", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-03-13 16:58:53", "license": "2", "title": "Bride and Bride", "text": "", "album_id": "72157623619034418", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4432868988_37602f3db8_o.jpg", "secret": "9f6a7d87a4", "media": "photo", "latitude": "0", "id": "4432868988", "tags": "sf california ca saint san francisco day parade patricks 2010"}, {"datetaken": "2010-04-17 12:12:28", "license": "3", "title": "Jewel of the Thames", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4530591962_740a683f89_o.jpg", "secret": "7c1faace9d", "media": "photo", "latitude": "0", "id": "4530591962", "tags": "blue music castle yellow bells dance spring folk oxford morris mound 2010 folkfestival handkerchiefs"}, {"datetaken": "2010-04-17 12:15:27", "license": "3", "title": "Oxford Folk Festival 2010", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4528364906_4d42d0085c_o.jpg", "secret": "d28679786f", "media": "photo", "latitude": "0", "id": "4528364906", "tags": "music tower dance spring folk border parade oxford morris 2010 folkfestival nuffield"}, {"datetaken": "2010-04-17 12:29:06", "license": "3", "title": "The Green Man comes to Oxford", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4528366404_e74cc74165_o.jpg", "secret": "baafbf0a5d", "media": "photo", "latitude": "0", "id": "4528366404", "tags": "life wood music dance spring folk spirit oxford morris pagan greenman 2010 folkfestival"}, {"datetaken": "2010-04-17 12:40:32", "license": "3", "title": "Lord of the Dance", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4529960569_9cedab34da_o.jpg", "secret": "accf56cf46", "media": "photo", "latitude": "0", "id": "4529960569", "tags": "shadow music dance spring folk oxford morris greenman 2010 folkfestival cornmarket"}, {"datetaken": "2010-04-17 12:44:06", "license": "3", "title": "Dancing on Cornmarket II", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4527734073_9e2707ae4d_o.jpg", "secret": "b3beed0e5c", "media": "photo", "latitude": "0", "id": "4527734073", "tags": "red music black gold dance spring folk oxford morris hoops 2010 folkfestival cornmarket"}, {"datetaken": "2010-04-17 12:50:05", "license": "3", "title": "Festival Banner", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4528365658_f128362479_o.jpg", "secret": "3d54ae6226", "media": "photo", "latitude": "0", "id": "4528365658", "tags": "music dance spring folk border banner oxford morris 2010 folkfestival"}, {"datetaken": "2010-04-17 13:17:05", "license": "3", "title": "Another Green Man", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4533445013_9d1d6073b7_o.jpg", "secret": "37ff371c18", "media": "photo", "latitude": "0", "id": "4533445013", "tags": "music dance spring folk oxford morris 2010 folkfestival"}, {"datetaken": "2010-04-17 13:17:44", "license": "3", "title": "Smash", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2749/4538978748_1836df2c9b_o.jpg", "secret": "25ed82c8eb", "media": "photo", "latitude": "0", "id": "4538978748", "tags": "music dance spring folk oxford morris 2010 folkfestival"}, {"datetaken": "2010-04-17 13:20:10", "license": "3", "title": "Flag Dance", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2690/4538348969_e31cd7cc19_o.jpg", "secret": "2e06bb3001", "media": "photo", "latitude": "0", "id": "4538348969", "tags": "music dance spring folk oxford morris 2010 folkfestival"}, {"datetaken": "2010-04-17 13:20:39", "license": "3", "title": "Harberton Navy", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4530595362_798f670683_o.jpg", "secret": "0f92788c7e", "media": "photo", "latitude": "0", "id": "4530595362", "tags": "music dance spring folk flag oxford morris 2010 folkfestival harbertonnavy"}, {"datetaken": "2010-04-17 13:24:16", "license": "3", "title": "Sarum Morris", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4530590916_d270a329c0_o.jpg", "secret": "34d96dc939", "media": "photo", "latitude": "0", "id": "4530590916", "tags": "music dance spring jump folk oxford morris leap 2010 folkfestival handkerchiefs sarummorris"}, {"datetaken": "2010-04-17 14:07:01", "license": "3", "title": "Dancing on Cornmarket", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4528365980_6fc3bbb72f_o.jpg", "secret": "5ddbe38480", "media": "photo", "latitude": "0", "id": "4528365980", "tags": "music dance spring folk oxford morris handkerchief 2010 folkfestival cotswold cornmarket nonesuchmorris"}, {"datetaken": "2010-04-17 14:11:50", "license": "3", "title": "Lumbawakk stars", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4530595112_abf6ffc50b_o.jpg", "secret": "a2a857ff47", "media": "photo", "latitude": "0", "id": "4530595112", "tags": "music dance spring folk oxford sword morris 2010 folkfestival"}, {"datetaken": "2010-04-17 14:25:24", "license": "3", "title": "Oxford Busker", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4046/4533445753_5317cb0a43_o.jpg", "secret": "f39a65634f", "media": "photo", "latitude": "0", "id": "4533445753", "tags": "music tower spring folk oxford tightrope stmichaels busking violinist 2010 folkfestival cornmarket"}, {"datetaken": "2010-04-18 15:56:05", "license": "3", "title": "Orange", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4533443877_6057dbeeb5_o.jpg", "secret": "998061a6b1", "media": "photo", "latitude": "0", "id": "4533443877", "tags": "music dance spring folk oxford morris 2010 folkfestival"}, {"datetaken": "2010-04-18 16:09:28", "license": "3", "title": "Windsor Catch", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4533446311_1d75214c7c_o.jpg", "secret": "cd30797249", "media": "photo", "latitude": "0", "id": "4533446311", "tags": "music dance spring folk oxford morris 2010 folkfestival"}, {"datetaken": "2010-04-18 16:15:23", "license": "3", "title": "Morris Dancing at the Castle", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4531759564_a732edf44c_o.jpg", "secret": "9a7c919b6a", "media": "photo", "latitude": "0", "id": "4531759564", "tags": "music dance spring folk oxford morris 2010 folkfestival"}, {"datetaken": "2010-04-18 16:15:58", "license": "3", "title": "Berkshire Bedlam leap", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2543/4531127453_24dcbc19be_o.jpg", "secret": "14b15d5430", "media": "photo", "latitude": "0", "id": "4531127453", "tags": "music dance spring folk oxford morris 2010 folkfestival"}, {"datetaken": "2010-04-18 16:16:07", "license": "3", "title": "Coconuts Clap", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4534082326_e938207b87_o.jpg", "secret": "a698755a3e", "media": "photo", "latitude": "0", "id": "4534082326", "tags": "music dance spring folk oxford morris 2010 folkfestival"}, {"datetaken": "2010-04-18 16:37:00", "license": "3", "title": "Morris Dancers in Oxford", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2768/4531763298_27c27a724a_o.jpg", "secret": "fc5d11c86e", "media": "photo", "latitude": "0", "id": "4531763298", "tags": "music dance spring folk oxford morris 2010 folkfestival"}, {"datetaken": "2010-04-18 16:53:43", "license": "3", "title": "Leaping Dragons", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2747/4531756430_92243c79f3_o.jpg", "secret": "47bf02f513", "media": "photo", "latitude": "0", "id": "4531756430", "tags": "music dance spring folk oxford morris 2010 folkfestival"}, {"datetaken": "2010-04-18 17:01:54", "license": "3", "title": "Border Aggression", "text": "", "album_id": "72157623750513157", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2682/4531764086_1cd32d981a_o.jpg", "secret": "5877594a1c", "media": "photo", "latitude": "0", "id": "4531764086", "tags": "music dance spring folk oxford morris 2010 folkfestival borderlinemorris"}, {"datetaken": "2010-05-18 01:34:57", "license": "3", "title": "Reference - May 2010", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3324/4616356296_d518244249_o.jpg", "secret": "27b4c5e6e4", "media": "photo", "latitude": "0", "id": "4616356296", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-05-18 01:36:51", "license": "3", "title": "Story Collection - May 2010", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4616359626_d30a095cf2_o.jpg", "secret": "1644b7ebda", "media": "photo", "latitude": "0", "id": "4616359626", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-05-18 01:37:32", "license": "3", "title": "Graphic Novels - May 2010", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4615748139_7d2a7c9dbb_o.jpg", "secret": "0f6bb424c5", "media": "photo", "latitude": "0", "id": "4615748139", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-05-18 01:39:38", "license": "3", "title": "Nonfiction 800s- May 2010", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4615749949_78979aee4f_o.jpg", "secret": "f57fa4825c", "media": "photo", "latitude": "0", "id": "4615749949", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-05-18 01:41:10", "license": "3", "title": "Nonfiction 500s- May 2010", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4616366890_d64b93c080_o.jpg", "secret": "eabdf336bf", "media": "photo", "latitude": "0", "id": "4616366890", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-05-18 01:41:51", "license": "3", "title": "Nonfiction 100s - May 2010", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4616369144_569e0098cc_o.jpg", "secret": "efec7da4b5", "media": "photo", "latitude": "0", "id": "4616369144", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-05-18 01:42:38", "license": "3", "title": "DSC01928 007", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4615756927_5a3b3053cb_o.jpg", "secret": "e8107a6308", "media": "photo", "latitude": "0", "id": "4615756927", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-05-18 01:47:19", "license": "3", "title": "Fiction - May 2010", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4615758957_927e3d1e16_o.jpg", "secret": "b86e45f9c6", "media": "photo", "latitude": "0", "id": "4615758957", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-05-18 01:48:22", "license": "3", "title": "Fiction - Classics repurchased - May 2010", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4615760859_3a1872ab72_o.jpg", "secret": "4ff3d8efc6", "media": "photo", "latitude": "0", "id": "4615760859", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-05-18 01:50:54", "license": "3", "title": "Fiction by Cory Doctorow - May 2010", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3311/4616378110_b8aeba8744_o.jpg", "secret": "75eb8d071e", "media": "photo", "latitude": "0", "id": "4616378110", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-05-18 01:52:46", "license": "3", "title": "Juvenile Ficiton - May 2010", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4616380598_81576e6719_o.jpg", "secret": "9634ae1141", "media": "photo", "latitude": "0", "id": "4616380598", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-05-18 01:54:38", "license": "3", "title": "Juvenile Easy Readers - May 2010", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4615767361_8ca38cbc49_o.jpg", "secret": "cdb7c22eb6", "media": "photo", "latitude": "0", "id": "4615767361", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-05-18 01:57:12", "license": "3", "title": "Juvenile - Environment - May 2010", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3402/4616384974_a777198119_o.jpg", "secret": "7a64a123e2", "media": "photo", "latitude": "0", "id": "4616384974", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-05-18 01:58:36", "license": "3", "title": "Nonfiction 300s - May 2010", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3347/4615772845_e497ec445f_o.jpg", "secret": "93165b2873", "media": "photo", "latitude": "0", "id": "4615772845", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-05-18 02:00:09", "license": "3", "title": "Juvenile Fiction - May 2010", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3337/4616390336_c7eaaf7721_o.jpg", "secret": "6af5e6d3d5", "media": "photo", "latitude": "0", "id": "4616390336", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-05-18 02:01:00", "license": "3", "title": "Juvenile Non-fiction - May 2010", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4616399034_a958ce1599_o.jpg", "secret": "ee1b37136f", "media": "photo", "latitude": "0", "id": "4616399034", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-05-18 02:02:10", "license": "3", "title": "DVD Fiction - May 2010", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4615777257_1269085bd4_o.jpg", "secret": "712a7f6504", "media": "photo", "latitude": "0", "id": "4615777257", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-05-18 02:02:50", "license": "3", "title": "DVD Nonfiction - May 2010", "text": "", "album_id": "72157624081009722", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4615781071_53924cccb5_o.jpg", "secret": "e93779d840", "media": "photo", "latitude": "0", "id": "4615781071", "tags": "schoollibrary peskylibrary pescosolidolibrary byfieldma thegovernor\u2019sacademy"}, {"datetaken": "2010-03-17 11:47:12", "license": "2", "title": "Paddy Day: Hijab", "text": "", "album_id": "72157623646900546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2768/4444204136_20338bdc09_o.jpg", "secret": "fc04ebcc20", "media": "photo", "latitude": "0", "id": "4444204136", "tags": "street ireland girls people dublin"}, {"datetaken": "2010-03-17 11:50:13", "license": "2", "title": "Paddy Day Ganguro or Something", "text": "", "album_id": "72157623646900546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4444208156_ab2c38cf3f_o.jpg", "secret": "376251be4d", "media": "photo", "latitude": "0", "id": "4444208156", "tags": "street ireland girls people dublin"}, {"datetaken": "2010-03-17 11:51:59", "license": "0", "title": "Young Lady with Painted Face", "text": "", "album_id": "72157623646900546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2679/4444209116_41f268b5f9_o.jpg", "secret": "a463dc7aa8", "media": "photo", "latitude": "0", "id": "4444209116", "tags": "street ireland girls people dublin"}, {"datetaken": "2010-03-17 12:08:01", "license": "0", "title": "Paddy Day Beauties", "text": "", "album_id": "72157623646900546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4443439079_f2952d5acf_o.jpg", "secret": "965667be14", "media": "photo", "latitude": "0", "id": "4443439079", "tags": "street ireland girls people dublin"}, {"datetaken": "2010-03-17 12:09:33", "license": "0", "title": "St Patrick Day Parade: Crowd", "text": "", "album_id": "72157623646900546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4444211032_e57afb6d24_o.jpg", "secret": "83638a3ace", "media": "photo", "latitude": "0", "id": "4444211032", "tags": "street ireland people dublin"}, {"datetaken": "2010-03-17 12:10:43", "license": "0", "title": "St Patrick Day Parade: Crowd", "text": "", "album_id": "72157623646900546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4444211972_46a7db45f4_o.jpg", "secret": "3c4472609f", "media": "photo", "latitude": "0", "id": "4444211972", "tags": "street ireland people dublin"}, {"datetaken": "2010-03-17 12:29:35", "license": "2", "title": "Leprechaun", "text": "", "album_id": "72157623646900546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4444212646_fbb22a558f_o.jpg", "secret": "08fa07e98e", "media": "photo", "latitude": "0", "id": "4444212646", "tags": "street ireland people dublin"}, {"datetaken": "2010-03-17 12:33:01", "license": "2", "title": "Paddy Day Reflection", "text": "", "album_id": "72157623646900546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4444213366_ffceaf3bcf_o.jpg", "secret": "ec73b9f06c", "media": "photo", "latitude": "0", "id": "4444213366", "tags": "street ireland people dublin"}, {"datetaken": "2010-03-17 13:12:43", "license": "0", "title": "St Patrick Himself", "text": "", "album_id": "72157623646900546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4444214550_3806710648_o.jpg", "secret": "09a11c94f4", "media": "photo", "latitude": "0", "id": "4444214550", "tags": "street ireland people dublin"}, {"datetaken": "2010-03-17 13:16:12", "license": "0", "title": "St Patrick Day Parade: Chicken Theme", "text": "", "album_id": "72157623646900546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4444215702_97a133a604_o.jpg", "secret": "bbed057534", "media": "photo", "latitude": "0", "id": "4444215702", "tags": "street ireland people dublin"}, {"datetaken": "2010-03-17 13:33:19", "license": "0", "title": "St Patrick Day Parade: The Craziest Costume", "text": "", "album_id": "72157623646900546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4444306390_886f77e7e2_o.jpg", "secret": "48c63297d5", "media": "photo", "latitude": "0", "id": "4444306390", "tags": "street ireland people dublin"}, {"datetaken": "2010-03-17 13:33:33", "license": "2", "title": "St Patrick Day Parade: Touching the Crowd", "text": "", "album_id": "72157623646900546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4444307388_ce2c5c9f5b_o.jpg", "secret": "34826535d2", "media": "photo", "latitude": "0", "id": "4444307388", "tags": "street ireland girls people dublin"}, {"datetaken": "2010-03-17 13:36:38", "license": "0", "title": "St Patrick Day Parade: Violinist", "text": "", "album_id": "72157623646900546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2778/4443537795_25cd821197_o.jpg", "secret": "3f31f568f1", "media": "photo", "latitude": "0", "id": "4443537795", "tags": "street ireland people dublin"}, {"datetaken": "2010-03-17 13:50:10", "license": "0", "title": "St Patrick Day Parade: Drummers", "text": "", "album_id": "72157623646900546", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2714/4444310054_2c4f61b2fd_o.jpg", "secret": "e81900b502", "media": "photo", "latitude": "0", "id": "4444310054", "tags": "street ireland girls people dublin"}, {"datetaken": "2010-03-17 14:04:34", "license": "0", "title": "Paddy Day Photographer", "text": "", "album_id": "72157623646900546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4443540315_0a6967b476_o.jpg", "secret": "1780c3004a", "media": "photo", "latitude": "0", "id": "4443540315", "tags": "street ireland girls people dublin"}, {"datetaken": "2010-03-17 14:26:32", "license": "2", "title": "Paddy Day: Lady Outside Pub", "text": "", "album_id": "72157623646900546", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4444312732_3ed07fa820_o.jpg", "secret": "172239c60f", "media": "photo", "latitude": "0", "id": "4444312732", "tags": "street ireland girls people dublin"}, {"datetaken": "2010-06-20 13:11:38", "license": "1", "title": "Manchester Day Parade", "text": "", "album_id": "72157624194495907", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4718223731_f02f9693c7_o.jpg", "secret": "83d75cf4cc", "media": "photo", "latitude": "0", "id": "4718223731", "tags": "manchester parade manchesterday"}, {"datetaken": "2010-06-20 13:12:50", "license": "1", "title": "Manchester Day Parade", "text": "", "album_id": "72157624194495907", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4718874080_46de3ffef2_o.jpg", "secret": "483cae2c00", "media": "photo", "latitude": "0", "id": "4718874080", "tags": "manchester parade manchesterday"}, {"datetaken": "2010-06-20 13:13:08", "license": "1", "title": "Manchester Day Parade", "text": "", "album_id": "72157624194495907", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4718228909_3651e195cd_o.jpg", "secret": "7ed0bfb201", "media": "photo", "latitude": "0", "id": "4718228909", "tags": "manchester parade manchesterday"}, {"datetaken": "2010-06-20 13:13:19", "license": "1", "title": "Manchester Day Parade", "text": "", "album_id": "72157624194495907", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4718879606_c71445f7dc_o.jpg", "secret": "e72e315cd7", "media": "photo", "latitude": "0", "id": "4718879606", "tags": "manchester parade manchesterday"}, {"datetaken": "2010-06-20 13:13:37", "license": "1", "title": "Manchester Day Parade", "text": "", "album_id": "72157624194495907", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4718234807_c3ecb18bfd_o.jpg", "secret": "48ee2331e7", "media": "photo", "latitude": "0", "id": "4718234807", "tags": "manchester parade manchesterday"}, {"datetaken": "2010-06-20 13:14:44", "license": "1", "title": "Manchester Day Parade", "text": "", "album_id": "72157624194495907", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4718884042_cfe4ec7be0_o.jpg", "secret": "6071ea8c93", "media": "photo", "latitude": "0", "id": "4718884042", "tags": "manchester parade manchesterday"}, {"datetaken": "2010-06-20 13:15:11", "license": "1", "title": "Manchester Day Parade", "text": "", "album_id": "72157624194495907", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4718238609_5a111c0d71_o.jpg", "secret": "3f20a726e6", "media": "photo", "latitude": "0", "id": "4718238609", "tags": "manchester parade manchesterday"}, {"datetaken": "2010-06-20 13:15:17", "license": "1", "title": "Manchester Day Parade", "text": "", "album_id": "72157624194495907", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4718241509_eea106085e_o.jpg", "secret": "6cc273dbea", "media": "photo", "latitude": "0", "id": "4718241509", "tags": "manchester parade manchesterday"}, {"datetaken": "2010-06-20 13:15:38", "license": "1", "title": "Manchester Day Parade", "text": "", "album_id": "72157624194495907", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4718894600_fda5173df1_o.jpg", "secret": "af3d746527", "media": "photo", "latitude": "0", "id": "4718894600", "tags": "manchester parade manchesterday"}, {"datetaken": "2010-06-20 13:15:58", "license": "1", "title": "Manchester Day Parade", "text": "", "album_id": "72157624194495907", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4029/4718898366_a2d83a0717_o.jpg", "secret": "53749b69d3", "media": "photo", "latitude": "0", "id": "4718898366", "tags": "manchester parade manchesterday"}, {"datetaken": "2010-06-20 13:16:08", "license": "1", "title": "Manchester Day Parade", "text": "", "album_id": "72157624194495907", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4718900926_1903b47df0_o.jpg", "secret": "3464093f34", "media": "photo", "latitude": "0", "id": "4718900926", "tags": "manchester parade manchesterday"}, {"datetaken": "2010-06-20 13:16:34", "license": "1", "title": "Manchester Day Parade", "text": "", "album_id": "72157624194495907", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4718903108_73c32140a2_o.jpg", "secret": "3222afbe08", "media": "photo", "latitude": "0", "id": "4718903108", "tags": "manchester parade manchesterday"}, {"datetaken": "2010-06-18 13:25:20", "license": "1", "title": "IMG_0213.JPG", "text": "", "album_id": "72157624200620737", "longitude": "-75.694856", "url_o": "https://farm5.staticflickr.com/4062/4719268384_d0c53549ce_o.jpg", "secret": "7c6ba6c706", "media": "photo", "latitude": "45.423184", "id": "4719268384", "tags": "ottawa eyefi pab2010"}, {"datetaken": "2010-06-18 14:25:15", "license": "1", "title": "IMG_0214.JPG", "text": "", "album_id": "72157624200620737", "longitude": "-75.694816", "url_o": "https://farm5.staticflickr.com/4014/4719271878_7c6e241529_o.jpg", "secret": "199b964206", "media": "photo", "latitude": "45.423069", "id": "4719271878", "tags": "canada ottawa eyefi pab2010"}, {"datetaken": "2010-06-18 14:34:18", "license": "1", "title": "Getting things Started", "text": "", "album_id": "72157624200620737", "longitude": "-75.694816", "url_o": "https://farm5.staticflickr.com/4024/4719275514_fcfc769e74_o.jpg", "secret": "4650f99fea", "media": "photo", "latitude": "45.423069", "id": "4719275514", "tags": "canada ottawa eyefi pab2010"}, {"datetaken": "2010-06-18 14:37:28", "license": "1", "title": "Watching the Opening", "text": "", "album_id": "72157624200620737", "longitude": "-75.694786", "url_o": "https://farm5.staticflickr.com/4017/4718632901_69c8eaa371_o.jpg", "secret": "225d26a784", "media": "photo", "latitude": "45.423084", "id": "4718632901", "tags": "canada ottawa eyefi pab2010"}, {"datetaken": "2010-06-18 18:25:23", "license": "1", "title": "IMG_0220.JPG", "text": "", "album_id": "72157624200620737", "longitude": "-75.694786", "url_o": "https://farm5.staticflickr.com/4024/4718641987_17a62b4be5_o.jpg", "secret": "5bc08b6190", "media": "photo", "latitude": "45.423084", "id": "4718641987", "tags": "canada ottawa eyefi pab2010"}, {"datetaken": "2010-06-18 18:43:50", "license": "1", "title": "Barry McLoughlin", "text": "", "album_id": "72157624200620737", "longitude": "-75.694786", "url_o": "https://farm5.staticflickr.com/4058/4718654687_b235caf19c_o.jpg", "secret": "2723a5bbe1", "media": "photo", "latitude": "45.423084", "id": "4718654687", "tags": "canada keynote eyefi pab2010 barrymcloughlin"}, {"datetaken": "2010-06-18 20:16:05", "license": "1", "title": "IMG_0223.JPG", "text": "", "album_id": "72157624200620737", "longitude": "-75.694856", "url_o": "https://farm5.staticflickr.com/4062/4719305822_5e10b610e6_o.jpg", "secret": "0f5aa01573", "media": "photo", "latitude": "45.423184", "id": "4719305822", "tags": "ottawa eyefi pab2010"}, {"datetaken": "2010-06-18 21:53:19", "license": "1", "title": "IMG_0224.JPG", "text": "", "album_id": "72157624200620737", "longitude": "-75.694046", "url_o": "https://farm5.staticflickr.com/4017/4718660711_2cc39b155c_o.jpg", "secret": "dfb5dcef32", "media": "photo", "latitude": "45.425701", "id": "4718660711", "tags": "canada ottawa eyefi pab2010"}, {"datetaken": "2010-06-19 11:09:18", "license": "1", "title": "IMG_0232.JPG", "text": "", "album_id": "72157624200620737", "longitude": "-75.692512", "url_o": "https://farm5.staticflickr.com/4049/4719329048_e8878a89ec_o.jpg", "secret": "5d4e7e6ec3", "media": "photo", "latitude": "45.424263", "id": "4719329048", "tags": "canada ottawa eyefi pab2010"}, {"datetaken": "2010-06-19 11:09:23", "license": "1", "title": "Lunch", "text": "", "album_id": "72157624200620737", "longitude": "-75.692512", "url_o": "https://farm5.staticflickr.com/4069/4719325640_6b41f5fe37_o.jpg", "secret": "258ba539c1", "media": "photo", "latitude": "45.424263", "id": "4719325640", "tags": "canada eyefi pab2010"}, {"datetaken": "2010-06-19 16:48:16", "license": "1", "title": "Watching the Parade", "text": "", "album_id": "72157624200620737", "longitude": "-75.694856", "url_o": "https://farm5.staticflickr.com/4054/4718697859_7e1b1119bc_o.jpg", "secret": "1f7fe7364c", "media": "photo", "latitude": "45.423184", "id": "4718697859", "tags": "eyefi pab2010"}, {"datetaken": "2010-06-19 18:44:40", "license": "1", "title": "Canada War Memorial", "text": "", "album_id": "72157624200620737", "longitude": "-75.694856", "url_o": "https://farm5.staticflickr.com/4030/4718710183_2cb3508c53_o.jpg", "secret": "414d828eff", "media": "photo", "latitude": "45.423184", "id": "4718710183", "tags": "ottawa eyefi"}, {"datetaken": "2010-06-19 18:50:29", "license": "1", "title": "Fairmont and Rideau Canal", "text": "", "album_id": "72157624200620737", "longitude": "-75.703353", "url_o": "https://farm5.staticflickr.com/4016/4718726519_7d72e9f0f7_o.jpg", "secret": "8fc2b540e4", "media": "photo", "latitude": "45.436285", "id": "4718726519", "tags": "ottawa fairmont rideaucanal eyefi"}, {"datetaken": "2010-06-19 18:53:12", "license": "1", "title": "Canadian Gallery", "text": "", "album_id": "72157624200620737", "longitude": "-75.703353", "url_o": "https://farm5.staticflickr.com/4071/4719388308_9e26ac0b3e_o.jpg", "secret": "0259e3160c", "media": "photo", "latitude": "45.436285", "id": "4719388308", "tags": "ottawa eyefi"}, {"datetaken": "2010-06-19 18:53:20", "license": "1", "title": "Statue of Champlain", "text": "", "album_id": "72157624200620737", "longitude": "-75.703353", "url_o": "https://farm5.staticflickr.com/4016/4718743549_656e16b522_o.jpg", "secret": "b0022aeee0", "media": "photo", "latitude": "45.436285", "id": "4718743549", "tags": "run champlain eyefi pab2010"}, {"datetaken": "2010-06-19 18:53:30", "license": "1", "title": "Empress of Ottawa", "text": "", "album_id": "72157624200620737", "longitude": "-75.703353", "url_o": "https://farm5.staticflickr.com/4017/4718746607_f5bda455e8_o.jpg", "secret": "2c09b4f4fd", "media": "photo", "latitude": "45.436285", "id": "4718746607", "tags": "cruise ottawa eyefi pab2010"}, {"datetaken": "2010-06-19 19:13:30", "license": "1", "title": "Fearless Leaders", "text": "", "album_id": "72157624200620737", "longitude": "-75.703353", "url_o": "https://farm5.staticflickr.com/4056/4719404998_65245f4afd_o.jpg", "secret": "df94deba61", "media": "photo", "latitude": "45.436285", "id": "4719404998", "tags": "eyefi pab2010"}, {"datetaken": "2010-06-19 19:14:09", "license": "1", "title": "Parliament and PABsters", "text": "", "album_id": "72157624200620737", "longitude": "-75.703353", "url_o": "https://farm5.staticflickr.com/4029/4719425970_c75b2695fa_o.jpg", "secret": "256044a5a9", "media": "photo", "latitude": "45.436285", "id": "4719425970", "tags": "eyefi pab2010"}, {"datetaken": "2010-06-19 19:17:28", "license": "1", "title": "Parliament and Library", "text": "", "album_id": "72157624200620737", "longitude": "-75.703353", "url_o": "https://farm5.staticflickr.com/4035/4719446776_f98e5ba8d3_o.jpg", "secret": "5e2f375198", "media": "photo", "latitude": "45.436285", "id": "4719446776", "tags": "ottawa parliament eyefi senatelibrary"}, {"datetaken": "2010-06-19 19:21:42", "license": "1", "title": "Parliament and Boat", "text": "", "album_id": "72157624200620737", "longitude": "-75.703353", "url_o": "https://farm5.staticflickr.com/4070/4719472674_a03f4eb9ff_o.jpg", "secret": "c05e0094f9", "media": "photo", "latitude": "45.436285", "id": "4719472674", "tags": "canada river boat ottawa parliament eyefi"}, {"datetaken": "2010-06-19 19:33:33", "license": "1", "title": "Ottawa River Sunset", "text": "", "album_id": "72157624200620737", "longitude": "-75.703353", "url_o": "https://farm5.staticflickr.com/4019/4719526798_dd28cbe9f7_o.jpg", "secret": "5ba100e7cc", "media": "photo", "latitude": "45.436285", "id": "4719526798", "tags": "cruise sunset river ottawa eyefi"}, {"datetaken": "2010-06-19 19:34:54", "license": "1", "title": "IMG_0288.JPG", "text": "", "album_id": "72157624200620737", "longitude": "-75.703353", "url_o": "https://farm5.staticflickr.com/4060/4719542178_e3f06d3b96_o.jpg", "secret": "25aa181059", "media": "photo", "latitude": "45.436285", "id": "4719542178", "tags": "eyefi pab2010"}, {"datetaken": "2010-06-19 19:39:02", "license": "1", "title": "Rideau Falls", "text": "", "album_id": "72157624200620737", "longitude": "-75.703353", "url_o": "https://farm5.staticflickr.com/4057/4719565692_a79df2a657_o.jpg", "secret": "c08bf58050", "media": "photo", "latitude": "45.436285", "id": "4719565692", "tags": "ottawa rideaufalls eyefi"}, {"datetaken": "2010-06-19 19:42:14", "license": "1", "title": "24 Sussex Drive", "text": "", "album_id": "72157624200620737", "longitude": "-75.703353", "url_o": "https://farm5.staticflickr.com/4019/4718937243_d9e3ce3ddf_o.jpg", "secret": "2ee83e8ab7", "media": "photo", "latitude": "45.436285", "id": "4718937243", "tags": "cruise ottawa 24sussex eyefi"}, {"datetaken": "2010-06-19 20:37:20", "license": "1", "title": "IMG_0300.JPG", "text": "", "album_id": "72157624200620737", "longitude": "-75.703353", "url_o": "https://farm5.staticflickr.com/4015/4718938991_7b3d511301_o.jpg", "secret": "95f020d7ee", "media": "photo", "latitude": "45.436285", "id": "4718938991", "tags": "eyefi pab2010"}, {"datetaken": "2010-06-19 20:37:29", "license": "1", "title": "Too Many Beers", "text": "", "album_id": "72157624200620737", "longitude": "-75.703353", "url_o": "https://farm5.staticflickr.com/4018/4718942381_a27d746bb9_o.jpg", "secret": "20d942ba03", "media": "photo", "latitude": "45.436285", "id": "4718942381", "tags": "eyefi pab2010"}, {"datetaken": "2010-06-19 20:47:02", "license": "1", "title": "IMG_0306.JPG", "text": "", "album_id": "72157624200620737", "longitude": "-75.703353", "url_o": "https://farm2.staticflickr.com/1282/4719641824_57fab7b043_o.jpg", "secret": "c81f1242a4", "media": "photo", "latitude": "45.436285", "id": "4719641824", "tags": "ottawa ottawariver eyefi"}, {"datetaken": "2010-06-19 23:14:18", "license": "1", "title": "Regrouping", "text": "", "album_id": "72157624200620737", "longitude": "-75.694885", "url_o": "https://farm5.staticflickr.com/4028/4719633786_9c39965569_o.jpg", "secret": "ab1028a076", "media": "photo", "latitude": "45.423393", "id": "4719633786", "tags": "canada eyefi"}, {"datetaken": "2010-06-21 10:23:13", "license": "1", "title": "Paradegoers exiting Pico Blue Line Station", "text": "", "album_id": "72157624206659243", "longitude": "-118.267564", "url_o": "https://farm2.staticflickr.com/1355/4724122814_5ce8340763_o.jpg", "secret": "1edb3fe73f", "media": "photo", "latitude": "34.041372", "id": "4724122814", "tags": "california sports basketball sport losangeles publictransit publictransportation blueline metro transportation transit mta masstransit southerncalifornia lightrail nba lakers flowerstreet summersolstice downtownlosangeles masstransportation losangelescounty lacmta losangeleslakers picostation picoboulevard sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 10:26:45", "license": "1", "title": "A small sampling of the crowds", "text": "", "album_id": "72157624206659243", "longitude": "-118.267564", "url_o": "https://farm2.staticflickr.com/1177/4724123752_d1d3a5e8f9_o.jpg", "secret": "8526aa2217", "media": "photo", "latitude": "34.041372", "id": "4724123752", "tags": "california sports basketball sport losangeles southerncalifornia nba lakers summersolstice staplescenter downtownlosangeles losangelescounty losangelesconventioncenter losangeleslakers picoboulevard figueroastreet jwmarriotthotel sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 10:35:07", "license": "1", "title": "Great moments in traffic light jackassery", "text": "", "album_id": "72157624206659243", "longitude": "-118.267564", "url_o": "https://farm2.staticflickr.com/1089/4724124620_7b0171a119_o.jpg", "secret": "5beaa97482", "media": "photo", "latitude": "34.041372", "id": "4724124620", "tags": "california sports basketball sport trafficlight losangeles southerncalifornia nba lakers trafficsignal jackass summersolstice downtownlosangeles losangelescounty losangeleslakers picoboulevard figueroastreet sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 10:36:40", "license": "1", "title": "Great moments in traffic light jackassery, Part II", "text": "", "album_id": "72157624206659243", "longitude": "-118.267564", "url_o": "https://farm2.staticflickr.com/1232/4724125510_a179bf3a9d_o.jpg", "secret": "1b8bf757d5", "media": "photo", "latitude": "34.041372", "id": "4724125510", "tags": "california sports basketball sport trafficlight losangeles flag southerncalifornia nba lakers trafficsignal jackass summersolstice downtownlosangeles losangelescounty losangeleslakers picoboulevard figueroastreet sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 10:38:46", "license": "1", "title": "Mildly pornographic moments in traffic light jackassery", "text": "", "album_id": "72157624206659243", "longitude": "-118.267564", "url_o": "https://farm2.staticflickr.com/1076/4723473527_6d70e425bf_o.jpg", "secret": "85d4d9e4f1", "media": "photo", "latitude": "34.041372", "id": "4723473527", "tags": "california woman sports basketball sport trafficlight losangeles femme southerncalifornia nba lakers trafficsignal jackass summersolstice downtownlosangeles losangelescounty losangeleslakers picoboulevard figueroastreet hyna sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 10:41:16", "license": "1", "title": "Back 2 Back without Shaq", "text": "", "album_id": "72157624206659243", "longitude": "-118.267564", "url_o": "https://farm2.staticflickr.com/1212/4724127110_2f12b6e2e4_o.jpg", "secret": "cb230094eb", "media": "photo", "latitude": "34.041372", "id": "4724127110", "tags": "california sports basketball sport losangeles tshirt southerncalifornia nba lakers summersolstice downtownlosangeles losangelescounty trashtalk losangeleslakers shaquilleoneal figueroastreet sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 10:57:45", "license": "1", "title": "Laker girls riding L.A. fire truck", "text": "", "album_id": "72157624206659243", "longitude": "-118.267564", "url_o": "https://farm2.staticflickr.com/1190/4724127986_3a996876a5_o.jpg", "secret": "e4c677a976", "media": "photo", "latitude": "34.041372", "id": "4724127986", "tags": "california sports basketball sport losangeles cheerleaders firetruck fireengine southerncalifornia nba lakergirls lakers summersolstice downtownlosangeles losangelescounty losangeleslakers losangelesfiredepartment sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 11:00:21", "license": "1", "title": "The champs", "text": "", "album_id": "72157624206659243", "longitude": "-118.267564", "url_o": "https://farm2.staticflickr.com/1076/4723476245_3ec98c6420_o.jpg", "secret": "370b3c4dd4", "media": "photo", "latitude": "34.041372", "id": "4723476245", "tags": "california sports basketball sport losangeles southerncalifornia nba lakers doubledeckerbus summersolstice downtownlosangeles losangelescounty losangeleslakers sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 11:00:40", "license": "1", "title": "Closeup of the champs", "text": "", "album_id": "72157624206659243", "longitude": "-118.267564", "url_o": "https://farm2.staticflickr.com/1322/4724129724_28d71a3184_o.jpg", "secret": "2c71688160", "media": "photo", "latitude": "34.041372", "id": "4724129724", "tags": "california sports basketball sport losangeles southerncalifornia nba lakers doubledeckerbus summersolstice downtownlosangeles losangelescounty losangeleslakers kobebryant jordanfarmar sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 11:00:50", "license": "1", "title": "Championship trophy", "text": "", "album_id": "72157624206659243", "longitude": "-118.267564", "url_o": "https://farm2.staticflickr.com/1184/4723477987_b1dffb0d11_o.jpg", "secret": "8d3b507a9f", "media": "photo", "latitude": "34.041372", "id": "4723477987", "tags": "california sports basketball sport losangeles trophy southerncalifornia nba lakers summersolstice downtownlosangeles losangelescounty losangeleslakers sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 11:02:25", "license": "1", "title": "Kareem in the legend bus", "text": "", "album_id": "72157624206659243", "longitude": "-118.267564", "url_o": "https://farm2.staticflickr.com/1392/4724131508_db2d1323ce_o.jpg", "secret": "c635bcd926", "media": "photo", "latitude": "34.041372", "id": "4724131508", "tags": "california sports basketball sport losangeles southerncalifornia nba lakers kareemabduljabbar summersolstice downtownlosangeles losangelescounty losangeleslakers lewalcindor sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 11:03:13", "license": "1", "title": "FlyAway, the sixth man", "text": "", "album_id": "72157624206659243", "longitude": "-118.267564", "url_o": "https://farm2.staticflickr.com/1370/4723479985_172942804e_o.jpg", "secret": "5dd38d9149", "media": "photo", "latitude": "34.041372", "id": "4723479985", "tags": "california sports basketball sport losangeles southerncalifornia nba lakers summersolstice motorcoach mci flyaway downtownlosangeles losangelescounty losangeleslakers sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 11:06:45", "license": "1", "title": "LAPD and LABSM keep the streets clean", "text": "", "album_id": "72157624206659243", "longitude": "-118.267564", "url_o": "https://farm2.staticflickr.com/1200/4723480971_60129b7fa0_o.jpg", "secret": "dec9ab2038", "media": "photo", "latitude": "34.041372", "id": "4723480971", "tags": "california sports basketball sport losangeles police sterling elgin southerncalifornia nba lakers summersolstice streetsweeper staplescenter lapd downtownlosangeles losangelescounty losangeleslakers losangelespolicedepartment sports1 lakerparade labsm june212010 2010nbachampions bureauofstreetmaintenance"}, {"datetaken": "2010-06-21 11:11:17", "license": "1", "title": "Vic the Brick", "text": "", "album_id": "72157624206659243", "longitude": "-118.267564", "url_o": "https://farm2.staticflickr.com/1021/4723481933_74ddf07eba_o.jpg", "secret": "7ef3cd13b4", "media": "photo", "latitude": "34.041372", "id": "4723481933", "tags": "california sports basketball sport losangeles southerncalifornia nba lakers summersolstice downtownlosangeles losangelescounty losangeleslakers figueroastreet sports1 victhebrickjacobs vicjacobs victhebrick lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 11:12:24", "license": "1", "title": "Adaptive reuse: Abandoned car dealer becomes viewing perch", "text": "", "album_id": "72157624206659243", "longitude": "-118.267564", "url_o": "https://farm2.staticflickr.com/1438/4723482853_4e29ccff93_o.jpg", "secret": "35a53267cb", "media": "photo", "latitude": "34.041372", "id": "4723482853", "tags": "california ford abandoned sports basketball sport losangeles southerncalifornia cardealership nba lakers summersolstice downtownlosangeles losangelescounty losangeleslakers picoboulevard figueroastreet sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 11:32:30", "license": "1", "title": "Adaptive reuse: Top of bus shelter becomes viewing perch", "text": "", "album_id": "72157624206659243", "longitude": "-118.265268", "url_o": "https://farm2.staticflickr.com/1121/4724136478_0aba87aa6b_o.jpg", "secret": "3e59da63e3", "media": "photo", "latitude": "34.043819", "id": "4724136478", "tags": "california sports basketball sport losangeles busstop busshelter southerncalifornia nba lakers summersolstice downtownlosangeles losangelescounty losangeleslakers figueroastreet sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 11:32:51", "license": "1", "title": "Back 2 Back without Shaq/This is Kobe's town", "text": "", "album_id": "72157624206659243", "longitude": "-118.265268", "url_o": "https://farm2.staticflickr.com/1145/4724137324_7408a223b0_o.jpg", "secret": "3f485c7e4c", "media": "photo", "latitude": "34.043819", "id": "4724137324", "tags": "california signs sports basketball sport losangeles southerncalifornia nba lakers summersolstice downtownlosangeles losangelescounty trashtalk losangeleslakers kobebryant sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 11:35:20", "license": "1", "title": "Beauty and the beast", "text": "", "album_id": "72157624206659243", "longitude": "-118.265268", "url_o": "https://farm2.staticflickr.com/1352/4723485557_f1b5fa8eef_o.jpg", "secret": "7904752e55", "media": "photo", "latitude": "34.043819", "id": "4723485557", "tags": "california woman sports beautiful beauty basketball sport losangeles femme attractive southerncalifornia nba lakers summersolstice shortskirt downtownlosangeles losangelescounty losangeleslakers chickensuit figueroastreet hyna sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 11:48:52", "license": "1", "title": "Where my dogs at?", "text": "", "album_id": "72157624206659243", "longitude": "-118.261889", "url_o": "https://farm2.staticflickr.com/1014/4724139042_666fa73d32_o.jpg", "secret": "cc4d45be8a", "media": "photo", "latitude": "34.047332", "id": "4724139042", "tags": "california dog dogs sports basketball sport puppy losangeles puppies southerncalifornia cockerspaniel nba lakers summersolstice downtownlosangeles losangelescounty losangeleslakers figueroastreet sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 11:53:10", "license": "1", "title": "Sign of a true fan: Lakers van", "text": "", "album_id": "72157624206659243", "longitude": "-118.261889", "url_o": "https://farm2.staticflickr.com/1439/4723487241_d6d0599d37_o.jpg", "secret": "d953e391d2", "media": "photo", "latitude": "34.047332", "id": "4723487241", "tags": "california sports basketball sport losangeles dodge van southerncalifornia nba lakers summersolstice downtownlosangeles losangelescounty losangeleslakers dodgesprinter olympicboulevard figueroastreet sports1 lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 12:13:06", "license": "1", "title": "Line for Metro begins here", "text": "", "album_id": "72157624206659243", "longitude": "-118.259947", "url_o": "https://farm2.staticflickr.com/1378/4724140702_75ff5aaa2e_o.jpg", "secret": "c8e8721646", "media": "photo", "latitude": "34.049530", "id": "4724140702", "tags": "california sports basketball sport subway losangeles publictransit publictransportation blueline metro transportation transit mta masstransit southerncalifornia lightrail redline nba lakers purpleline summersolstice downtownlosangeles masstransportation losangelescounty lacmta losangeleslakers figueroastreet sports1 7thstreetmetrocenter lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-06-21 12:14:36", "license": "1", "title": "Line for Metro ends here", "text": "", "album_id": "72157624206659243", "longitude": "-118.259292", "url_o": "https://farm2.staticflickr.com/1125/4724141552_961b89e4c4_o.jpg", "secret": "5917a57598", "media": "photo", "latitude": "34.050097", "id": "4724141552", "tags": "california sports basketball sport subway losangeles publictransit publictransportation blueline metro transportation transit mta masstransit southerncalifornia lightrail redline nba lakers purpleline summersolstice downtownlosangeles masstransportation losangelescounty lacmta losangeleslakers sports1 7thstreetmetrocenter lakerparade june212010 2010nbachampions"}, {"datetaken": "2010-04-25 13:33:08", "license": "3", "title": "Our Leaders", "text": "", "album_id": "72157623805508451", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4551565562_83504b979b_o.jpg", "secret": "d07cfee355", "media": "photo", "latitude": "0", "id": "4551565562", "tags": "scouts enfield stgeorgesdayparade"}, {"datetaken": "2010-04-25 13:33:32", "license": "3", "title": "Police", "text": "", "album_id": "72157623805508451", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4551571676_81b49896f0_o.jpg", "secret": "566f1b5138", "media": "photo", "latitude": "0", "id": "4551571676", "tags": "scouts enfield stgeorgesdayparade"}, {"datetaken": "2010-04-25 13:38:08", "license": "3", "title": "Medieval Stig?", "text": "", "album_id": "72157623805508451", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4551580030_a08d5e2745_o.jpg", "secret": "d8f6f6f46e", "media": "photo", "latitude": "0", "id": "4551580030", "tags": "scouts enfield stgeorgesdayparade"}, {"datetaken": "2010-04-25 13:43:38", "license": "3", "title": "Colin", "text": "", "album_id": "72157623805508451", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4552049468_c4d6c13741_o.jpg", "secret": "ba73000e8b", "media": "photo", "latitude": "0", "id": "4552049468", "tags": "scouts enfield stgeorgesdayparade"}, {"datetaken": "2010-04-25 13:55:28", "license": "3", "title": "The Band", "text": "", "album_id": "72157623805508451", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1276/4552055168_e0bebf54f1_o.jpg", "secret": "3b9b92471b", "media": "photo", "latitude": "0", "id": "4552055168", "tags": "scouts enfield stgeorgesdayparade"}, {"datetaken": "2010-04-25 13:57:15", "license": "3", "title": "Girls in the Lead", "text": "", "album_id": "72157623805508451", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1174/4552067078_617fde4f7a_o.jpg", "secret": "d06b8d0f13", "media": "photo", "latitude": "0", "id": "4552067078", "tags": "scouts guides enfield stgeorgesdayparade"}, {"datetaken": "2010-04-25 13:57:25", "license": "3", "title": "Today's Guide", "text": "", "album_id": "72157623805508451", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3248/4551432139_4a80765e11_o.jpg", "secret": "8870c1aae7", "media": "photo", "latitude": "0", "id": "4551432139", "tags": "scouts guides enfield stgeorgesdayparade"}, {"datetaken": "2010-04-25 14:04:56", "license": "3", "title": "Had enough?", "text": "", "album_id": "72157623805508451", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1315/4552079846_35de001823_o.jpg", "secret": "14da24cd2c", "media": "photo", "latitude": "0", "id": "4552079846", "tags": "scouts enfield stgeorgesdayparade"}, {"datetaken": "2010-04-25 14:12:12", "license": "3", "title": "Up the Town", "text": "", "album_id": "72157623805508451", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4552087996_d8255fa6f4_o.jpg", "secret": "effbe2b665", "media": "photo", "latitude": "0", "id": "4552087996", "tags": "scouts enfield stgeorgesdayparade"}, {"datetaken": "2010-04-25 14:26:58", "license": "3", "title": "Standard Bearers", "text": "", "album_id": "72157623805508451", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1238/4552104872_224d7883cc_o.jpg", "secret": "90a3493bd6", "media": "photo", "latitude": "0", "id": "4552104872", "tags": "scouts enfield stgeorgesdayparade"}, {"datetaken": "2010-04-25 14:38:19", "license": "3", "title": "Graham & Jaz", "text": "", "album_id": "72157623805508451", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3453/4552108424_663b49f1db_o.jpg", "secret": "fef99d5802", "media": "photo", "latitude": "0", "id": "4552108424", "tags": "scouts enfield stgeorgesdayparade"}, {"datetaken": "2010-04-25 14:41:16", "license": "3", "title": "Happy Birthday to You", "text": "", "album_id": "72157623805508451", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1099/4552116786_b7fb889887_o.jpg", "secret": "cc12c5104e", "media": "photo", "latitude": "0", "id": "4552116786", "tags": "scouts enfield stgeorgesdayparade"}, {"datetaken": "2010-04-25 17:44:07", "license": "3", "title": "Everyone", "text": "", "album_id": "72157623805508451", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4550920883_0e166588dc_o.jpg", "secret": "e955a62d21", "media": "photo", "latitude": "0", "id": "4550920883", "tags": "scouts enfield stgeorgesdayparade"}, {"datetaken": "2010-04-24 11:11:02", "license": "5", "title": "Chief", "text": "", "album_id": "72157623926298846", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3647/4552478819_a441ff1133_o.jpg", "secret": "d6ed331292", "media": "photo", "latitude": "0", "id": "4552478819", "tags": "parade fireengine oakharbor hollanddays2010"}, {"datetaken": "2010-04-24 11:11:12", "license": "5", "title": "81", "text": "", "album_id": "72157623926298846", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4020/4552480387_88da562035_o.jpg", "secret": "d5b7cd0ccb", "media": "photo", "latitude": "0", "id": "4552480387", "tags": "parade fireengine oakharbor hollanddays2010"}, {"datetaken": "2010-04-24 11:11:31", "license": "5", "title": "Ladder 81", "text": "", "album_id": "72157623926298846", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4549754591_74c84649cb_o.jpg", "secret": "cd0924052a", "media": "photo", "latitude": "0", "id": "4549754591", "tags": "picnik ladder81"}, {"datetaken": "2010-04-24 11:11:49", "license": "5", "title": "Handing out Candy", "text": "", "album_id": "72157623926298846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1210/4553120576_377f2172bb_o.jpg", "secret": "c6b30e7a2b", "media": "photo", "latitude": "0", "id": "4553120576", "tags": "parade fireengine firemen oakharbor hollanddays2010"}, {"datetaken": "2010-04-24 11:12:06", "license": "5", "title": "Big Suckers", "text": "", "album_id": "72157623926298846", "longitude": "0", "url_o": "https://farm1.staticflickr.com/111/4553122158_1095f76aa4_o.jpg", "secret": "a654e98bb8", "media": "photo", "latitude": "0", "id": "4553122158", "tags": "parade fireengine oakharbor hollanddays2010"}, {"datetaken": "2010-04-24 11:12:09", "license": "5", "title": "Taking care of business", "text": "", "album_id": "72157623926298846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1412/4553124036_d030ca4638_o.jpg", "secret": "398f4d20cf", "media": "photo", "latitude": "0", "id": "4553124036", "tags": "parade fireengine oakharbor hollanddays2010"}, {"datetaken": "2010-04-24 11:13:12", "license": "5", "title": "Red Fire Engines Go Vroom", "text": "", "album_id": "72157623926298846", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4553125786_64e047fc76_o.jpg", "secret": "1ffd3f03b7", "media": "photo", "latitude": "0", "id": "4553125786", "tags": "parade fireengine picnik oakharbor hollanddays2010"}, {"datetaken": "2010-04-24 11:47:48", "license": "5", "title": "Tuba Players", "text": "", "album_id": "72157623926298846", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2751/4553102276_62974652ea_o.jpg", "secret": "27027f1c6d", "media": "photo", "latitude": "0", "id": "4553102276", "tags": ""}, {"datetaken": "2010-04-24 11:49:00", "license": "5", "title": "Mustang", "text": "", "album_id": "72157623926298846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1344/4552468499_5669a2d66c_o.jpg", "secret": "397fa76aae", "media": "photo", "latitude": "0", "id": "4552468499", "tags": ""}, {"datetaken": "2010-04-24 11:49:35", "license": "5", "title": "candyAppleRedMustang", "text": "", "album_id": "72157623926298846", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1051/4552472311_28a4d321a7_o.jpg", "secret": "47fd25c3eb", "media": "photo", "latitude": "0", "id": "4552472311", "tags": ""}, {"datetaken": "2010-05-29 15:42:46", "license": "3", "title": "Gringos para Justicia Inmigrante", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4656169204_14eedb1c1a_o.jpg", "secret": "0f2a54f653", "media": "photo", "latitude": "0", "id": "4656169204", "tags": "arizona phoenix sign poster outside outdoors bill downtown political rally crowd protest az social parade rights illegal immigration sb immigrant senate protestors gringos 1070 287g sb1070"}, {"datetaken": "2010-05-29 15:42:58", "license": "3", "title": "Standing on the Side of Love", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4655549623_51411216b9_o.jpg", "secret": "d6df9ed9cd", "media": "photo", "latitude": "0", "id": "4655549623", "tags": "arizona church phoenix sign poster outside outdoors bill downtown political rally crowd protest az social parade illegal immigration sb senate protestors uu 1070 unitarianuniversalist 287g sb1070"}, {"datetaken": "2010-05-29 15:44:14", "license": "3", "title": "Phoenix Immigration Rally", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4655550667_6948383f6d_o.jpg", "secret": "2e6c924b8e", "media": "photo", "latitude": "0", "id": "4655550667", "tags": "arizona phoenix outside outdoors bill downtown political rally crowd protest az social parade illegal immigration sb senate protestors 1070 287g sb1070"}, {"datetaken": "2010-05-29 15:44:22", "license": "3", "title": "Legalizacion o No Re-Election", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4655551717_3868522af8_o.jpg", "secret": "6832eba8bb", "media": "photo", "latitude": "0", "id": "4655551717", "tags": "arizona phoenix outside outdoors bill downtown political rally crowd protest az social parade illegal immigration sb senate protestors 1070 287g sb1070"}, {"datetaken": "2010-05-29 15:44:37", "license": "3", "title": "Phoenix Immigration Rally", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4656173410_c2d478f673_o.jpg", "secret": "28460ea041", "media": "photo", "latitude": "0", "id": "4656173410", "tags": "arizona phoenix outside outdoors bill downtown political rally crowd protest dream az social parade illegal immigration sb act senate protestors 1070 287g sb1070"}, {"datetaken": "2010-05-29 15:45:28", "license": "3", "title": "Phoenix Police", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4655553519_e50a9573a6_o.jpg", "secret": "cccb500df2", "media": "photo", "latitude": "0", "id": "4655553519", "tags": "arizona phoenix car outside outdoors bill downtown political rally crowd protest police az social parade illegal cruiser immigration sb patrol senate officers 1070 287g sb1070"}, {"datetaken": "2010-05-29 15:48:43", "license": "3", "title": "Phoenix Police", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4024/4656175206_65ef40310a_o.jpg", "secret": "9dfdb455d7", "media": "photo", "latitude": "0", "id": "4656175206", "tags": "arizona men phoenix car truck outside outdoors bill downtown political rally protest police az social parade illegal cruiser immigration sb patrol senate officers 1070 287g sb1070"}, {"datetaken": "2010-05-29 15:49:13", "license": "3", "title": "Phoenix Immigration Rally", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4655555459_d96437a8df_o.jpg", "secret": "a085b25ffb", "media": "photo", "latitude": "0", "id": "4655555459", "tags": "arizona signs phoenix outside outdoors bill downtown political rally crowd protest az social parade posters illegal immigration sb senate protestors 1070 287g sb1070"}, {"datetaken": "2010-05-29 15:49:22", "license": "3", "title": "Phoenix Immigration Rally", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4656177582_bd55836fdb_o.jpg", "secret": "ce9f2f4f71", "media": "photo", "latitude": "0", "id": "4656177582", "tags": "arizona signs phoenix outside outdoors bill downtown political rally crowd protest az social parade posters illegal immigration sb senate protestors 1070 287g sb1070"}, {"datetaken": "2010-05-29 15:51:36", "license": "3", "title": "Joe Arpaio Terrorist", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4655557607_2aa8be3b09_o.jpg", "secret": "8babdd8d4e", "media": "photo", "latitude": "0", "id": "4655557607", "tags": "arizona phoenix sign poster outside outdoors bill downtown cross political rally crowd protest terrorist az social joe parade burning ku illegal kkk immigration sb senate protestors klan 1070 klux arpaio klansman 287g sb1070"}, {"datetaken": "2010-05-29 15:53:48", "license": "3", "title": "We Are Human", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4656179760_15810283a9_o.jpg", "secret": "a2867eb7ee", "media": "photo", "latitude": "0", "id": "4656179760", "tags": "arizona portrait man phoenix sign poster outside outdoors bill downtown political rally crowd protest az social parade human illegal alto immigration sb senate protestors 1070 287g sb1070"}, {"datetaken": "2010-05-29 15:55:10", "license": "3", "title": "Police Cycles", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4655559883_1d0c4dcf53_o.jpg", "secret": "135acbd025", "media": "photo", "latitude": "0", "id": "4655559883", "tags": "arizona phoenix bike outside outdoors bill downtown political rally crowd group protest police bikes az social parade bicycles illegal immigration sb senate protestors officers 1070 287g sb1070"}, {"datetaken": "2010-05-29 15:55:16", "license": "3", "title": "Phoenix Immigration Rally", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4656182226_9620a6568b_o.jpg", "secret": "bdff166e0f", "media": "photo", "latitude": "0", "id": "4656182226", "tags": "arizona phoenix outside outdoors bill downtown political rally crowd protest az social parade illegal immigration sb senate protestors 1070 287g sb1070"}, {"datetaken": "2010-05-29 15:56:33", "license": "3", "title": "Phoenix Immigration Rally", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4655562937_ee8ca35fbf_o.jpg", "secret": "53995d0686", "media": "photo", "latitude": "0", "id": "4655562937", "tags": "arizona phoenix outside outdoors bill downtown political rally crowd protest az social parade illegal immigration sb senate protestors 1070 287g sb1070"}, {"datetaken": "2010-05-29 15:58:08", "license": "3", "title": "Pull Me Over", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4016/4655564087_ca523c499d_o.jpg", "secret": "1d11c1ee92", "media": "photo", "latitude": "0", "id": "4655564087", "tags": "auto arizona window phoenix car outside outdoors bill downtown painted political rally protest az social parade illegal immigration sb senate 1070 287g sb1070"}, {"datetaken": "2010-05-29 15:58:23", "license": "3", "title": "Protester's Car", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4656185922_d6a7d1c450_o.jpg", "secret": "7c0d725a86", "media": "photo", "latitude": "0", "id": "4656185922", "tags": "auto arizona window phoenix car outside outdoors bill downtown painted political rally protest az social parade illegal immigration sb senate 1070 287g sb1070"}, {"datetaken": "2010-05-29 16:00:00", "license": "3", "title": "God Has Granted Us All Equal Rights", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4656187022_1eb099f306_o.jpg", "secret": "176d868c93", "media": "photo", "latitude": "0", "id": "4656187022", "tags": "arizona phoenix sign poster outside outdoors bill downtown political rally crowd banner protest az social parade illegal immigration sb senate protestors 1070 287g sb1070"}, {"datetaken": "2010-05-29 16:01:27", "license": "3", "title": "Call for Boycott", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4655567411_a2f738f8e2_o.jpg", "secret": "6d9d88efb8", "media": "photo", "latitude": "0", "id": "4655567411", "tags": "arizona phoenix outside outdoors bill downtown political rally crowd protest az social parade illegal immigration sb senate protestors 1070 287g sb1070"}, {"datetaken": "2010-05-29 16:03:47", "license": "3", "title": "We Are Indigenous", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4656189176_e5bea51dbb_o.jpg", "secret": "92b360c109", "media": "photo", "latitude": "0", "id": "4656189176", "tags": "arizona phoenix outside outdoors bill downtown political rally crowd protest az social parade illegal immigration sb senate protestors 1070 287g sb1070"}, {"datetaken": "2010-05-29 16:06:51", "license": "3", "title": "Support for Sheriff Joe", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4656189756_eb55374335_o.jpg", "secret": "c6e03ec053", "media": "photo", "latitude": "0", "id": "4656189756", "tags": "arizona bw phoenix sticker downtown az joe hero decal sheriff arapio"}, {"datetaken": "2010-05-29 16:24:09", "license": "3", "title": "DHS Police Officer", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4655569775_3d919c25b8_o.jpg", "secret": "a4627a2f2c", "media": "photo", "latitude": "0", "id": "4655569775", "tags": "arizona bw man phoenix walking outside outdoors bill downtown political rally crowd protest police az social parade illegal dhs immigration sb officer senate protestors 1070 287g sb1070"}, {"datetaken": "2010-05-29 16:30:57", "license": "3", "title": "Phoenix Police", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4655570851_71e5cdcecc_o.jpg", "secret": "e5aa6710a2", "media": "photo", "latitude": "0", "id": "4655570851", "tags": "road arizona cars phoenix outside outdoors bill closed downtown traffic political rally crowd protest police az social parade blocked illegal immigration sb patrol cruisers senate cones protestors 1070 287g sb1070"}, {"datetaken": "2010-05-29 16:31:21", "license": "3", "title": "Phoenix Police Cars", "text": "", "album_id": "72157624048603143", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4655571679_bd3d31bbc5_o.jpg", "secret": "ac7251c8b5", "media": "photo", "latitude": "0", "id": "4655571679", "tags": "arizona bw cars phoenix outside outdoors bill downtown political rally crowd protest police az social parade illegal immigration sb patrol cruisers senate protestors 1070 287g sb1070"}, {"datetaken": "2010-04-17 16:32:55", "license": "2", "title": "Crowd shot - Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4037/4655732902_32f352e71a_o.jpg", "secret": "bc2c0276ea", "media": "photo", "latitude": "-27.614056", "id": "4655732902", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:35:07", "license": "2", "title": "Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4060/4657930866_88a471427b_o.jpg", "secret": "ddefa96bb6", "media": "photo", "latitude": "-27.614056", "id": "4657930866", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:36:13", "license": "2", "title": "Love the kilt! - Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4008/4657937480_1e2a1bec9b_o.jpg", "secret": "8ac1382acb", "media": "photo", "latitude": "-27.614056", "id": "4657937480", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:38:23", "license": "2", "title": "Festival Parade - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm2.staticflickr.com/1183/4602160841_ec843867cc_o.jpg", "secret": "ea7d2ce14d", "media": "photo", "latitude": "-27.614056", "id": "4602160841", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:38:31", "license": "2", "title": "Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4029/4657937488_c4b24652eb_o.jpg", "secret": "4f073cd0d7", "media": "photo", "latitude": "-27.614056", "id": "4657937488", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:39:36", "license": "2", "title": "Another crowd shot - Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm2.staticflickr.com/1297/4657937490_2a2213d4c7_o.jpg", "secret": "e2e308ca89", "media": "photo", "latitude": "-27.614056", "id": "4657937490", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:40:55", "license": "2", "title": "Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4045/4657953616_3acc933010_o.jpg", "secret": "3d3c117985", "media": "photo", "latitude": "-27.614056", "id": "4657953616", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:41:32", "license": "2", "title": "RAAF - Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4026/4657953624_479a26a853_o.jpg", "secret": "9679f7288d", "media": "photo", "latitude": "-27.614056", "id": "4657953624", "tags": "street city light color building festival architecture australia queensland manmade raaf ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:41:54", "license": "2", "title": "RAAF - Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4019/4657958752_6a5f323427_o.jpg", "secret": "29bee00567", "media": "photo", "latitude": "-27.614056", "id": "4657958752", "tags": "street city light color building festival architecture australia queensland manmade raaf ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:42:48", "license": "2", "title": "More RAAF - Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4059/4657958758_9b523d0437_o.jpg", "secret": "ff15203599", "media": "photo", "latitude": "-27.614056", "id": "4657958758", "tags": "street city light color building festival architecture australia queensland manmade raaf ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:43:16", "license": "2", "title": "RAAF with dogs - Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4023/4657342847_422119a5f6_o.jpg", "secret": "c1e6b59f91", "media": "photo", "latitude": "-27.614056", "id": "4657342847", "tags": "street city light color building festival australia queensland manmade raaf ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:43:52", "license": "2", "title": "Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm2.staticflickr.com/1299/4657342855_0c3177200a_o.jpg", "secret": "349da464cd", "media": "photo", "latitude": "-27.614056", "id": "4657342855", "tags": "street city light color building festival architecture australia queensland manmade raaf ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:45:15", "license": "2", "title": "Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4052/4657969044_b92ceab07a_o.jpg", "secret": "f8b53b7045", "media": "photo", "latitude": "-27.614056", "id": "4657969044", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:46:27", "license": "2", "title": "Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4004/4657969056_98285a773e_o.jpg", "secret": "b6d8f6b5dd", "media": "photo", "latitude": "-27.614056", "id": "4657969056", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:49:38", "license": "2", "title": "Giraffe on a ute...", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4004/4655000871_b80ecf0691_o.jpg", "secret": "a57496a050", "media": "photo", "latitude": "-27.614056", "id": "4655000871", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:50:00", "license": "2", "title": "Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4008/4657972688_962350196a_o.jpg", "secret": "9c234db4e7", "media": "photo", "latitude": "-27.614056", "id": "4657972688", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:51:14", "license": "2", "title": "Street performer", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4026/4649154306_e53f20b2a6_o.jpg", "secret": "79cedf4748", "media": "photo", "latitude": "-27.614056", "id": "4649154306", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:51:35", "license": "2", "title": "Clowning around", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4037/4649146554_50964d293c_o.jpg", "secret": "fdf7622d72", "media": "photo", "latitude": "-27.614056", "id": "4649146554", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:52:56", "license": "2", "title": "Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4002/4657972690_5bccf1deaf_o.jpg", "secret": "c41de50741", "media": "photo", "latitude": "-27.614056", "id": "4657972690", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:53:18", "license": "2", "title": "Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4018/4657357185_764f4ff45c_o.jpg", "secret": "c82bc1f5c5", "media": "photo", "latitude": "-27.614056", "id": "4657357185", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:57:13", "license": "2", "title": "Ipswich West Special School Float", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4050/4655623508_4c26634164_o.jpg", "secret": "76767c0768", "media": "photo", "latitude": "-27.614056", "id": "4655623508", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:57:32", "license": "2", "title": "Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4046/4657357193_10e0882456_o.jpg", "secret": "e28ccc9cf1", "media": "photo", "latitude": "-27.614056", "id": "4657357193", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:57:53", "license": "2", "title": "Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4051/4657904706_f3c38d7b3a_o.jpg", "secret": "3324b27e3c", "media": "photo", "latitude": "-27.614056", "id": "4657904706", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:59:41", "license": "2", "title": "Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4035/4657904714_4fef1ee2f8_o.jpg", "secret": "a82eb12442", "media": "photo", "latitude": "-27.614056", "id": "4657904714", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 16:59:45", "license": "2", "title": "Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4029/4657983028_a0e007ef1a_o.jpg", "secret": "9cf4c6bcc8", "media": "photo", "latitude": "-27.614056", "id": "4657983028", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 17:00:12", "license": "2", "title": "Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4037/4657983036_0cc36ac835_o.jpg", "secret": "e570c067fd", "media": "photo", "latitude": "-27.614056", "id": "4657983036", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 17:02:30", "license": "2", "title": "Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4007/4657991980_df2009e050_o.jpg", "secret": "9698cf1702", "media": "photo", "latitude": "-27.614056", "id": "4657991980", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-04-17 17:05:27", "license": "2", "title": "Time to go home - Festival Parade 2010 - Ipswich, Qld", "text": "", "album_id": "72157624049959648", "longitude": "152.758240", "url_o": "https://farm5.staticflickr.com/4022/4657991986_e301bff23c_o.jpg", "secret": "037ba74c0f", "media": "photo", "latitude": "-27.614056", "id": "4657991986", "tags": "street city light color building festival architecture australia queensland manmade ipswich 2010 d60 brisbanestreet ipswichqueensland festivalparade ipswichqld modernculture ipswichfestivalparade ipswichfestival"}, {"datetaken": "2010-05-31 10:19:31", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 03", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4004/4657335694_7efc9d0f2f_o.jpg", "secret": "7208056ba7", "media": "photo", "latitude": "42.656196", "id": "4657335694", "tags": "usa ny may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010 missnewyorkteen2009 taylorgildersleeve"}, {"datetaken": "2010-05-31 10:21:04", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 12", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4013/4656709093_02626ecee9_o.jpg", "secret": "3b3b4c8832", "media": "photo", "latitude": "42.656196", "id": "4656709093", "tags": "usa ny mayor may parade albany memorialday jennings 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:21:25", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 14", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4005/4657329104_cc30294f4c_o.jpg", "secret": "0150084d1b", "media": "photo", "latitude": "42.656196", "id": "4657329104", "tags": "usa ny flag may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:21:39", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 04", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4059/4656721319_a3e86a97ee_o.jpg", "secret": "b4a16c67d9", "media": "photo", "latitude": "42.656196", "id": "4656721319", "tags": "usa ny rifle may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:21:59", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 16", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4030/4656705621_01771495d7_o.jpg", "secret": "4f5cb5e936", "media": "photo", "latitude": "42.656196", "id": "4656705621", "tags": "usa ny may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:22:27", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 17", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4064/4656704579_6a5545376c_o.jpg", "secret": "804eb87099", "media": "photo", "latitude": "42.656196", "id": "4656704579", "tags": "usa ny may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:22:50", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 19", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4021/4657324400_e481e3060e_o.jpg", "secret": "d7ceafe3aa", "media": "photo", "latitude": "42.656196", "id": "4657324400", "tags": "usa ny may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:24:22", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 18", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4026/4656703815_e5647d0c7e_o.jpg", "secret": "c81817ea20", "media": "photo", "latitude": "42.656196", "id": "4656703815", "tags": "usa ny may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:25:07", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 20", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4057/4657323222_1c6314bcfb_o.jpg", "secret": "5c94527deb", "media": "photo", "latitude": "42.656196", "id": "4657323222", "tags": "usa ny may parade motorcycle albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:25:30", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 21", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4069/4657321876_4595ce4672_o.jpg", "secret": "a68da39131", "media": "photo", "latitude": "42.656196", "id": "4657321876", "tags": "usa ny may parade motorcycle albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:25:38", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 10", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4044/4657332544_8f20039821_o.jpg", "secret": "a753c65861", "media": "photo", "latitude": "42.656196", "id": "4657332544", "tags": "usa ny may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:27:51", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 15", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4064/4657328066_17f10e724a_o.jpg", "secret": "35788e7870", "media": "photo", "latitude": "42.656196", "id": "4657328066", "tags": "usa ny may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:29:26", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 22", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4038/4656699265_25a35b6284_o.jpg", "secret": "d7417151f6", "media": "photo", "latitude": "42.656196", "id": "4656699265", "tags": "usa ny may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:29:37", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 09", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4002/4657333300_8a61ac450b_o.jpg", "secret": "aaf0f80af7", "media": "photo", "latitude": "42.656196", "id": "4657333300", "tags": "usa ny may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:31:56", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 23", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4023/4657319606_f71e63cb0d_o.jpg", "secret": "45f43d9ee8", "media": "photo", "latitude": "42.656196", "id": "4657319606", "tags": "usa ny may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:35:03", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 24", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4011/4656696793_3fdc49af1d_o.jpg", "secret": "e97c818bb3", "media": "photo", "latitude": "42.656196", "id": "4656696793", "tags": "usa ny flag may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:35:27", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 08", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4024/4657340106_5be216dbe8_o.jpg", "secret": "afb074676f", "media": "photo", "latitude": "42.656196", "id": "4657340106", "tags": "usa ny may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:36:11", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 05", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4066/4656720639_035d3a9fc3_o.jpg", "secret": "91cf0c3e1f", "media": "photo", "latitude": "42.656196", "id": "4656720639", "tags": "usa ny may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:36:16", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 25", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4066/4656695915_dbabe1965d_o.jpg", "secret": "a293b7203e", "media": "photo", "latitude": "42.656196", "id": "4656695915", "tags": "usa ny may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:39:28", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 07", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4067/4657334344_4d3245e998_o.jpg", "secret": "875ec9ec8a", "media": "photo", "latitude": "42.656196", "id": "4657334344", "tags": "usa ny may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:40:26", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 26", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4039/4657316538_7dbb0cfcba_o.jpg", "secret": "e6396962f8", "media": "photo", "latitude": "42.656196", "id": "4657316538", "tags": "usa ny may parade albany widow memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:40:38", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 11", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4026/4656710337_f2ef35b5c1_o.jpg", "secret": "90e829d645", "media": "photo", "latitude": "42.656196", "id": "4656710337", "tags": "usa ny may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:41:22", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 06", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4049/4656719841_b769255379_o.jpg", "secret": "6c4bed5b24", "media": "photo", "latitude": "42.656196", "id": "4656719841", "tags": "usa ny flag may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:41:27", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 13", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4012/4657329786_3744c24e5d_o.jpg", "secret": "7538519c5b", "media": "photo", "latitude": "42.656196", "id": "4657329786", "tags": "usa ny flag may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:45:33", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 01", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4016/4657337520_166873897c_o.jpg", "secret": "547a8a01b4", "media": "photo", "latitude": "42.656196", "id": "4657337520", "tags": "usa ny flag may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:45:35", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 02", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4029/4656722103_0fcfabe573_o.jpg", "secret": "46fbf03452", "media": "photo", "latitude": "42.656196", "id": "4656722103", "tags": "usa ny flag may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 10:46:03", "license": "1", "title": "Memorial Day Parade - Albany, NY - 10, May - 27", "text": "", "album_id": "72157624051027337", "longitude": "-73.761391", "url_o": "https://farm5.staticflickr.com/4006/4657314628_68c95805b1_o.jpg", "secret": "f37bcabbf6", "media": "photo", "latitude": "42.656196", "id": "4657314628", "tags": "usa ny may parade albany memorialday 2010 memorialdayparade altuwa memorialdayparade2010"}, {"datetaken": "2010-05-31 08:45:51", "license": "4", "title": "Antioch Brass Quintet", "text": "", "album_id": "72157624174262988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4656710282_e9e9c9b1f3_o.jpg", "secret": "6bec040839", "media": "photo", "latitude": "0", "id": "4656710282", "tags": "band parade brass"}, {"datetaken": "2010-05-31 08:46:01", "license": "4", "title": "Antioch Brass Quintet", "text": "", "album_id": "72157624174262988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4069/4656091789_f504de9f72_o.jpg", "secret": "343a0d1660", "media": "photo", "latitude": "0", "id": "4656091789", "tags": "band parade brass"}, {"datetaken": "2010-05-31 08:46:24", "license": "4", "title": "U.S. Air Force", "text": "", "album_id": "72157624174262988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4656719840_4dbdfb42f9_o.jpg", "secret": "8cc0465fce", "media": "photo", "latitude": "0", "id": "4656719840", "tags": "parade airforce"}, {"datetaken": "2010-05-31 08:46:33", "license": "4", "title": "U.S. Navy", "text": "", "album_id": "72157624174262988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4656101457_0d0abe27a9_o.jpg", "secret": "9ecb8de2c6", "media": "photo", "latitude": "0", "id": "4656101457", "tags": "navy parade"}, {"datetaken": "2010-05-31 08:47:00", "license": "4", "title": "Memorial Day Parade", "text": "", "album_id": "72157624174262988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4656104159_1f65e4728f_o.jpg", "secret": "6c788a85d5", "media": "photo", "latitude": "0", "id": "4656104159", "tags": "parade"}, {"datetaken": "2010-05-31 08:47:10", "license": "4", "title": "U.S. Coast Guard", "text": "", "album_id": "72157624174262988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4656108807_0f61392f10_o.jpg", "secret": "c9f5aeb9cc", "media": "photo", "latitude": "0", "id": "4656108807", "tags": "coastguard parade"}, {"datetaken": "2010-05-31 08:54:21", "license": "4", "title": "Memorial Day Parade", "text": "", "album_id": "72157624174262988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4656106521_4b9132e273_o.jpg", "secret": "95699e1139", "media": "photo", "latitude": "0", "id": "4656106521", "tags": "parade"}, {"datetaken": "2010-05-31 08:54:52", "license": "4", "title": "Wells Fargo & Company", "text": "", "album_id": "72157624174262988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4656111299_19c243053f_o.jpg", "secret": "f9916816ef", "media": "photo", "latitude": "0", "id": "4656111299", "tags": "horses parade stagecoach"}, {"datetaken": "2010-05-31 09:06:33", "license": "4", "title": "Day 151: Memorial Day Parade", "text": "", "album_id": "72157624174262988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4017/4656127227_8dc7401dff_o.jpg", "secret": "4a601cd43c", "media": "photo", "latitude": "0", "id": "4656127227", "tags": "band parade marchingband"}, {"datetaken": "2010-05-31 09:07:37", "license": "4", "title": "Iron Dukes Steel Drum Band", "text": "", "album_id": "72157624174262988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4656758760_9636a88b3c_o.jpg", "secret": "3203a2ff9a", "media": "photo", "latitude": "0", "id": "4656758760", "tags": "parade"}, {"datetaken": "2010-05-31 09:07:49", "license": "4", "title": "Iron Dukes Fun", "text": "", "album_id": "72157624174262988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4656136197_20909c8ba4_o.jpg", "secret": "755578aa2c", "media": "photo", "latitude": "0", "id": "4656136197", "tags": "drums steel parade steeldrums"}, {"datetaken": "2010-05-31 09:07:54", "license": "4", "title": "Iron Dukes Steel Drum Band", "text": "", "album_id": "72157624174262988", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4656753902_bb16705ced_o.jpg", "secret": "e104cda230", "media": "photo", "latitude": "0", "id": "4656753902", "tags": "drum steel parade steeldrums"}, {"datetaken": "2010-05-31 09:56:47", "license": "4", "title": "Raising the Flag", "text": "", "album_id": "72157624176200742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4657301244_a9f587c19a_o.jpg", "secret": "32fc4b084a", "media": "photo", "latitude": "0", "id": "4657301244", "tags": ""}, {"datetaken": "2010-05-31 10:10:39", "license": "4", "title": "Fighter Jets Overhead", "text": "", "album_id": "72157624176200742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4657301302_c9cecdf6ef_o.jpg", "secret": "ba30af1cda", "media": "photo", "latitude": "0", "id": "4657301302", "tags": ""}, {"datetaken": "2010-05-31 10:16:52", "license": "4", "title": "Red, White and Blue", "text": "", "album_id": "72157624176200742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4657301402_dc8fda0c6c_o.jpg", "secret": "0b020e4f8c", "media": "photo", "latitude": "0", "id": "4657301402", "tags": ""}, {"datetaken": "2010-05-31 10:19:49", "license": "4", "title": "Searching for Planes", "text": "", "album_id": "72157624176200742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4656679711_68a93849db_o.jpg", "secret": "a11e449233", "media": "photo", "latitude": "0", "id": "4656679711", "tags": ""}, {"datetaken": "2010-05-31 10:22:49", "license": "4", "title": "Landing on Broadway", "text": "", "album_id": "72157624176200742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4049/4656679847_f58e127309_o.jpg", "secret": "13b47840c3", "media": "photo", "latitude": "0", "id": "4656679847", "tags": ""}, {"datetaken": "2010-05-31 10:25:47", "license": "4", "title": "High Fives for the Kids", "text": "", "album_id": "72157624176200742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4657301802_ec8c50be02_o.jpg", "secret": "e1be577737", "media": "photo", "latitude": "0", "id": "4657301802", "tags": ""}, {"datetaken": "2010-05-31 10:35:45", "license": "4", "title": "Bagpiping Begins", "text": "", "album_id": "72157624176200742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4656680183_6cde11bbff_o.jpg", "secret": "c06b4fb138", "media": "photo", "latitude": "0", "id": "4656680183", "tags": ""}, {"datetaken": "2010-05-31 10:37:33", "license": "4", "title": "A Thankful Audience", "text": "", "album_id": "72157624176200742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4657302116_4458979a0a_o.jpg", "secret": "d712036611", "media": "photo", "latitude": "0", "id": "4657302116", "tags": ""}, {"datetaken": "2010-05-31 10:38:33", "license": "4", "title": "Veteran Salute", "text": "", "album_id": "72157624176200742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4656680363_90bf91b0ff_o.jpg", "secret": "b1df6476bb", "media": "photo", "latitude": "0", "id": "4656680363", "tags": ""}, {"datetaken": "2010-05-31 10:40:00", "license": "4", "title": "Shriner Race Cars", "text": "", "album_id": "72157624176200742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4657302366_5f2c35f3ff_o.jpg", "secret": "3e444599ba", "media": "photo", "latitude": "0", "id": "4657302366", "tags": ""}, {"datetaken": "2010-05-31 10:43:54", "license": "4", "title": "A Young Spectator", "text": "", "album_id": "72157624176200742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4656680703_309a43a210_o.jpg", "secret": "4a88b330f0", "media": "photo", "latitude": "0", "id": "4656680703", "tags": ""}, {"datetaken": "2010-05-31 10:47:34", "license": "4", "title": "Rock Bridge Band", "text": "", "album_id": "72157624176200742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4657302666_75a0ceeb71_o.jpg", "secret": "75ae6e0518", "media": "photo", "latitude": "0", "id": "4657302666", "tags": ""}, {"datetaken": "2010-05-31 10:48:54", "license": "4", "title": "Boy Scouts", "text": "", "album_id": "72157624176200742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4656681059_4f7b4d44f0_o.jpg", "secret": "aec3e3f6f2", "media": "photo", "latitude": "0", "id": "4656681059", "tags": ""}, {"datetaken": "2010-05-31 10:53:56", "license": "4", "title": "Oakland Junior High Trombones", "text": "", "album_id": "72157624176200742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4657302974_0a1f157728_o.jpg", "secret": "bc52857162", "media": "photo", "latitude": "0", "id": "4657302974", "tags": ""}, {"datetaken": "2010-05-31 10:55:42", "license": "4", "title": "Parade Goers Express Gratitude", "text": "", "album_id": "72157624176200742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4656681331_81a6293559_o.jpg", "secret": "d673e8c577", "media": "photo", "latitude": "0", "id": "4656681331", "tags": ""}, {"datetaken": "2010-05-31 10:58:53", "license": "4", "title": "WWII Veteran", "text": "", "album_id": "72157624176200742", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4656681439_8a805050d6_o.jpg", "secret": "2eab214ff8", "media": "photo", "latitude": "0", "id": "4656681439", "tags": ""}, {"datetaken": "2010-05-21 17:06:32", "license": "3", "title": "Pho Viet Doors", "text": "", "album_id": "72157624177089384", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4657509195_6e150b903d_o.jpg", "secret": "5143bc987f", "media": "photo", "latitude": "0", "id": "4657509195", "tags": "seattle elephant mural vietnameserestaurant phoviet"}, {"datetaken": "2010-05-22 09:32:38", "license": "3", "title": "control, the refuge of red flowers", "text": "", "album_id": "72157624177089384", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4657511843_ef4e628304_o.jpg", "secret": "b93f94a1a1", "media": "photo", "latitude": "0", "id": "4657511843", "tags": "vietnamese may22 hinghaypark"}, {"datetaken": "2010-05-22 09:33:01", "license": "3", "title": "A birthday in the branches of the tree", "text": "", "album_id": "72157624177089384", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4658135022_bc30c92461_o.jpg", "secret": "4a10301cd1", "media": "photo", "latitude": "0", "id": "4658135022", "tags": "vietnamese may22 hinghaypark"}, {"datetaken": "2010-05-22 09:34:44", "license": "3", "title": "Pickup Dharmachakra", "text": "", "album_id": "72157624177089384", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4657516235_af8d2c90e1_o.jpg", "secret": "bff1b4a5ba", "media": "photo", "latitude": "0", "id": "4657516235", "tags": "vietnamese may22 hinghaypark"}, {"datetaken": "2010-05-22 09:34:55", "license": "3", "title": "parade route", "text": "", "album_id": "72157624177089384", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4657519113_3081a4e5e5_o.jpg", "secret": "94d99ffbee", "media": "photo", "latitude": "0", "id": "4657519113", "tags": "vietnamese may22 hinghaypark"}, {"datetaken": "2010-05-22 09:35:06", "license": "3", "title": "ribbons for the words", "text": "", "album_id": "72157624177089384", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1287/4657523163_12bf8ff98b_o.jpg", "secret": "5bc5aaf814", "media": "photo", "latitude": "0", "id": "4657523163", "tags": "vietnamese may22 hinghaypark"}, {"datetaken": "2010-05-22 09:35:38", "license": "3", "title": "celebrating Veitnam", "text": "", "album_id": "72157624177089384", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4658147806_d241b2f63f_o.jpg", "secret": "b9102b4033", "media": "photo", "latitude": "0", "id": "4658147806", "tags": "vietnamese may22 hinghaypark"}, {"datetaken": "2010-05-22 09:36:39", "license": "3", "title": "the stray", "text": "", "album_id": "72157624177089384", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4658150850_43d83882bd_o.jpg", "secret": "1142e7d943", "media": "photo", "latitude": "0", "id": "4658150850", "tags": "vietnamese may22 hinghaypark"}, {"datetaken": "2010-05-22 09:37:57", "license": "3", "title": "the duty of decorations", "text": "", "album_id": "72157624177089384", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1303/4658153284_755d82ff54_o.jpg", "secret": "ef13663fcf", "media": "photo", "latitude": "0", "id": "4658153284", "tags": "vietnamese may22 hinghaypark"}, {"datetaken": "2010-05-22 09:38:31", "license": "3", "title": "the monks", "text": "", "album_id": "72157624177089384", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4658155840_3b62d02c7a_o.jpg", "secret": "4e59112a93", "media": "photo", "latitude": "0", "id": "4658155840", "tags": "vietnamese may22 hinghaypark"}, {"datetaken": "2010-05-22 09:40:14", "license": "3", "title": "flags and banners", "text": "", "album_id": "72157624177089384", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4658158890_07cdced3be_o.jpg", "secret": "dd9d2afe2c", "media": "photo", "latitude": "0", "id": "4658158890", "tags": "vietnamese may22 hinghaypark"}, {"datetaken": "2010-05-22 09:40:36", "license": "3", "title": "ringlets of gold", "text": "", "album_id": "72157624177089384", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4658161554_4cbc160bc8_o.jpg", "secret": "8168d1a13e", "media": "photo", "latitude": "0", "id": "4658161554", "tags": "vietnamese may22 hinghaypark"}, {"datetaken": "2010-05-22 09:42:02", "license": "3", "title": "the beginning of the day", "text": "", "album_id": "72157624177089384", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4658163314_2853609372_o.jpg", "secret": "b4256546f8", "media": "photo", "latitude": "0", "id": "4658163314", "tags": "portrait vietnamese may22 hinghaypark"}, {"datetaken": "2003-08-16 15:34:57", "license": "3", "title": "DSCN2594", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17569954_0275d71778_o.jpg", "secret": "0275d71778", "media": "photo", "latitude": "0", "id": "17569954", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:37:01", "license": "3", "title": "DSCN2595", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17570008_ae2b6c925f_o.jpg", "secret": "ae2b6c925f", "media": "photo", "latitude": "0", "id": "17570008", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:38:38", "license": "3", "title": "DSCN2596", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17570043_49ecf47be3_o.jpg", "secret": "49ecf47be3", "media": "photo", "latitude": "0", "id": "17570043", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:38:47", "license": "3", "title": "DSCN2597", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17570082_4cc458907c_o.jpg", "secret": "4cc458907c", "media": "photo", "latitude": "0", "id": "17570082", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:39:09", "license": "3", "title": "DSCN2598", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17570120_09bc64e539_o.jpg", "secret": "09bc64e539", "media": "photo", "latitude": "0", "id": "17570120", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:40:36", "license": "3", "title": "DSCN2599", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17570159_6c95b9dd2c_o.jpg", "secret": "6c95b9dd2c", "media": "photo", "latitude": "0", "id": "17570159", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:40:55", "license": "3", "title": "DSCN2600", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17570197_c84977a171_o.jpg", "secret": "c84977a171", "media": "photo", "latitude": "0", "id": "17570197", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:41:30", "license": "3", "title": "DSCN2601", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17570231_4ba611e0c1_o.jpg", "secret": "4ba611e0c1", "media": "photo", "latitude": "0", "id": "17570231", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:41:38", "license": "3", "title": "DSCN2602", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17570272_2105ed777f_o.jpg", "secret": "2105ed777f", "media": "photo", "latitude": "0", "id": "17570272", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:41:54", "license": "3", "title": "DSCN2603", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17570320_d95a698106_o.jpg", "secret": "d95a698106", "media": "photo", "latitude": "0", "id": "17570320", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:42:39", "license": "3", "title": "DSCN2604", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17570370_d52b7abb61_o.jpg", "secret": "d52b7abb61", "media": "photo", "latitude": "0", "id": "17570370", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:42:49", "license": "3", "title": "DSCN2605", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17570410_cfa7796cd9_o.jpg", "secret": "cfa7796cd9", "media": "photo", "latitude": "0", "id": "17570410", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:42:57", "license": "3", "title": "DSCN2606", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17570445_58c630c4f2_o.jpg", "secret": "58c630c4f2", "media": "photo", "latitude": "0", "id": "17570445", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:43:13", "license": "3", "title": "DSCN2607", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17570477_13c1a944eb_o.jpg", "secret": "13c1a944eb", "media": "photo", "latitude": "0", "id": "17570477", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:44:02", "license": "3", "title": "DSCN2608", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17570523_b47ce5778f_o.jpg", "secret": "b47ce5778f", "media": "photo", "latitude": "0", "id": "17570523", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:44:29", "license": "3", "title": "DSCN2609", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17570553_02e3fffc91_o.jpg", "secret": "02e3fffc91", "media": "photo", "latitude": "0", "id": "17570553", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:44:38", "license": "3", "title": "DSCN2610", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17570604_d6ad0331a9_o.jpg", "secret": "d6ad0331a9", "media": "photo", "latitude": "0", "id": "17570604", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:44:48", "license": "3", "title": "DSCN2611", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17570630_b7e1ec4f36_o.jpg", "secret": "b7e1ec4f36", "media": "photo", "latitude": "0", "id": "17570630", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:46:00", "license": "3", "title": "DSCN2612", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17570664_29ed037c26_o.jpg", "secret": "29ed037c26", "media": "photo", "latitude": "0", "id": "17570664", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:46:11", "license": "3", "title": "DSCN2613", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17570710_27081dd312_o.jpg", "secret": "27081dd312", "media": "photo", "latitude": "0", "id": "17570710", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:46:28", "license": "3", "title": "DSCN2614", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17570755_72bc950325_o.jpg", "secret": "72bc950325", "media": "photo", "latitude": "0", "id": "17570755", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:46:53", "license": "3", "title": "DSCN2615", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17570800_ee974beebd_o.jpg", "secret": "ee974beebd", "media": "photo", "latitude": "0", "id": "17570800", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:47:03", "license": "3", "title": "DSCN2616", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17570862_1386e5d541_o.jpg", "secret": "1386e5d541", "media": "photo", "latitude": "0", "id": "17570862", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:47:23", "license": "3", "title": "DSCN2617", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17570892_9735ccbdf2_o.jpg", "secret": "9735ccbdf2", "media": "photo", "latitude": "0", "id": "17570892", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:47:35", "license": "3", "title": "DSCN2618", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17570932_b6fdba2987_o.jpg", "secret": "b6fdba2987", "media": "photo", "latitude": "0", "id": "17570932", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:48:22", "license": "3", "title": "DSCN2619", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17570967_c54227a920_o.jpg", "secret": "c54227a920", "media": "photo", "latitude": "0", "id": "17570967", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:49:07", "license": "3", "title": "DSCN2621", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17571018_a8b6941a15_o.jpg", "secret": "a8b6941a15", "media": "photo", "latitude": "0", "id": "17571018", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:49:49", "license": "3", "title": "DSCN2622", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17571067_acb329f4b7_o.jpg", "secret": "acb329f4b7", "media": "photo", "latitude": "0", "id": "17571067", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:57:03", "license": "3", "title": "DSCN2635", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17571563_0dc95fcaf5_o.jpg", "secret": "0dc95fcaf5", "media": "photo", "latitude": "0", "id": "17571563", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:57:16", "license": "3", "title": "DSCN2636", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17571623_7e67b65e35_o.jpg", "secret": "7e67b65e35", "media": "photo", "latitude": "0", "id": "17571623", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:57:51", "license": "3", "title": "DSCN2638", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17571718_0a82f284ca_o.jpg", "secret": "0a82f284ca", "media": "photo", "latitude": "0", "id": "17571718", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 15:58:37", "license": "3", "title": "DSCN2639", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17571769_c44a9ad091_o.jpg", "secret": "c44a9ad091", "media": "photo", "latitude": "0", "id": "17571769", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 16:26:36", "license": "3", "title": "DSCN2641", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/17571874_1c49f0892d_o.jpg", "secret": "1c49f0892d", "media": "photo", "latitude": "0", "id": "17571874", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 16:27:10", "license": "3", "title": "DSCN2643", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17571997_edce39cc8c_o.jpg", "secret": "edce39cc8c", "media": "photo", "latitude": "0", "id": "17571997", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 16:36:09", "license": "3", "title": "DSCN2646", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17572048_7ad3d5a22c_o.jpg", "secret": "7ad3d5a22c", "media": "photo", "latitude": "0", "id": "17572048", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 16:49:08", "license": "3", "title": "DSCN2648", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17572090_a983e99dd5_o.jpg", "secret": "a983e99dd5", "media": "photo", "latitude": "0", "id": "17572090", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 16:49:22", "license": "3", "title": "DSCN2649", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/17572132_ed85f2d8a4_o.jpg", "secret": "ed85f2d8a4", "media": "photo", "latitude": "0", "id": "17572132", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 16:50:12", "license": "3", "title": "DSCN2650", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/17572176_939df9d964_o.jpg", "secret": "939df9d964", "media": "photo", "latitude": "0", "id": "17572176", "tags": "gay pride copenhagen"}, {"datetaken": "2003-08-16 16:50:33", "license": "3", "title": "DSCN2651", "text": "", "album_id": "417126", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/17572221_a18fb04e16_o.jpg", "secret": "a18fb04e16", "media": "photo", "latitude": "0", "id": "17572221", "tags": "gay pride copenhagen"}, {"datetaken": "2006-03-11 10:19:04", "license": "3", "title": "Two books take a breather by the River", "text": "", "album_id": "72057594080532069", "longitude": "-2.355226", "url_o": "https://farm1.staticflickr.com/46/111459219_e680aec3c7_o.jpg", "secret": "e680aec3c7", "media": "photo", "latitude": "51.381035", "id": "111459219", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath wildreleases"}, {"datetaken": "2006-03-11 10:19:15", "license": "3", "title": "View of the Avon, looking towards Pulteney Bridge", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/19/111459324_23ac3831e9_o.jpg", "secret": "23ac3831e9", "media": "photo", "latitude": "0", "id": "111459324", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-11 10:20:24", "license": "3", "title": "View of the Helphire Stand at the Rec", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/111459543_2ac79a0ba2_o.jpg", "secret": "2ac79a0ba2", "media": "photo", "latitude": "0", "id": "111459543", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-11 10:22:58", "license": "3", "title": "Sign for the Bath Literary Festival", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/111459678_67a1d3f5b3_o.jpg", "secret": "67a1d3f5b3", "media": "photo", "latitude": "0", "id": "111459678", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-11 10:29:24", "license": "3", "title": "Random photo of a sex shop", "text": "", "album_id": "72057594080532069", "longitude": "-2.360032", "url_o": "https://farm1.staticflickr.com/42/111459837_027b7c9821_o.jpg", "secret": "027b7c9821", "media": "photo", "latitude": "51.380526", "id": "111459837", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath wildreleases"}, {"datetaken": "2006-03-11 10:38:18", "license": "3", "title": "100_0527", "text": "", "album_id": "72057594080532069", "longitude": "-2.359528", "url_o": "https://farm1.staticflickr.com/56/111459902_1251ee88cf_o.jpg", "secret": "1251ee88cf", "media": "photo", "latitude": "51.380868", "id": "111459902", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath wildreleases"}, {"datetaken": "2006-03-11 10:38:37", "license": "3", "title": "Bath Abbey", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/111459979_1aada82944_o.jpg", "secret": "1aada82944", "media": "photo", "latitude": "0", "id": "111459979", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-11 10:40:22", "license": "3", "title": "The Cadburys Cocoa House", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/111460144_dd268b77b4_o.jpg", "secret": "dd268b77b4", "media": "photo", "latitude": "0", "id": "111460144", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-11 14:18:19", "license": "3", "title": "Ruck 'n' roll! (sorry)", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/111465995_ec0c4f545b_o.jpg", "secret": "ec0c4f545b", "media": "photo", "latitude": "0", "id": "111465995", "tags": "bath rugby daysout newcastlefalcons rugbyunion guinnesspremiership playingtourist weekendinbath"}, {"datetaken": "2006-03-11 14:42:50", "license": "3", "title": "Burkey prepares to kick", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/111466072_c699c5f4d0_o.jpg", "secret": "c699c5f4d0", "media": "photo", "latitude": "0", "id": "111466072", "tags": "bath rugby daysout newcastlefalcons rugbyunion guinnesspremiership playingtourist weekendinbath"}, {"datetaken": "2006-03-12 07:08:14", "license": "3", "title": "Snow in Bath", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/111460526_9111bd1e45_o.jpg", "secret": "9111bd1e45", "media": "photo", "latitude": "0", "id": "111460526", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-12 07:08:36", "license": "3", "title": "Snow in the garden next door to the B&B", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/111460632_bd13ba26cb_o.jpg", "secret": "bd13ba26cb", "media": "photo", "latitude": "0", "id": "111460632", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-12 09:10:04", "license": "3", "title": "Flopsy gazes out on the snow", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/111460801_94d4a179ec_o.jpg", "secret": "94d4a179ec", "media": "photo", "latitude": "0", "id": "111460801", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-12 10:43:34", "license": "3", "title": "Sulis Minerva", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/111460906_3f79eb050e_o.jpg", "secret": "3f79eb050e", "media": "photo", "latitude": "0", "id": "111460906", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-12 10:51:56", "license": "3", "title": "Pulteney Bridge", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/111460999_23934f1bb9_o.jpg", "secret": "23934f1bb9", "media": "photo", "latitude": "0", "id": "111460999", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-12 12:08:45", "license": "3", "title": "The Roman Baths", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/111461067_e37751a0e4_o.jpg", "secret": "e37751a0e4", "media": "photo", "latitude": "0", "id": "111461067", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-12 12:09:05", "license": "3", "title": "The Roman Baths", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/111461128_f1b29add95_o.jpg", "secret": "f1b29add95", "media": "photo", "latitude": "0", "id": "111461128", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-12 12:09:30", "license": "3", "title": "The Roman Baths", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/111461172_a33427ba20_o.jpg", "secret": "a33427ba20", "media": "photo", "latitude": "0", "id": "111461172", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-12 12:10:04", "license": "3", "title": "Roman God overlooking the baths", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/111461218_45ad55b7e1_o.jpg", "secret": "45ad55b7e1", "media": "photo", "latitude": "0", "id": "111461218", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-12 12:10:40", "license": "3", "title": "The Roman Baths", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/38/111461328_743e12cbeb_o.jpg", "secret": "743e12cbeb", "media": "photo", "latitude": "0", "id": "111461328", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-12 12:10:57", "license": "3", "title": "The Roman Baths", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/111461404_3ce5b50fe1_o.jpg", "secret": "3ce5b50fe1", "media": "photo", "latitude": "0", "id": "111461404", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-12 12:11:18", "license": "3", "title": "The Roman Baths", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/111461458_037fdb0a15_o.jpg", "secret": "037fdb0a15", "media": "photo", "latitude": "0", "id": "111461458", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-12 12:12:10", "license": "3", "title": "The Roman Baths", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/111461563_e8d0bfa624_o.jpg", "secret": "e8d0bfa624", "media": "photo", "latitude": "0", "id": "111461563", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2006-03-12 12:12:22", "license": "3", "title": "The Roman Baths", "text": "", "album_id": "72057594080532069", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/111461628_6a64b5830e_o.jpg", "secret": "6a64b5830e", "media": "photo", "latitude": "0", "id": "111461628", "tags": "bath bookcrossing daysout riveravon playingtourist weekendinbath"}, {"datetaken": "2007-03-31 22:18:25", "license": "1", "title": "DSC09817.JPG", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/443028551_a7b6ff1b46_o.jpg", "secret": "5b007e7fcd", "media": "photo", "latitude": "0", "id": "443028551", "tags": ""}, {"datetaken": "2007-03-31 22:19:26", "license": "1", "title": "", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/196/443024546_ca11435530_o.jpg", "secret": "8e38985ba6", "media": "photo", "latitude": "0", "id": "443024546", "tags": "me beer dark meg"}, {"datetaken": "2007-03-31 22:19:46", "license": "1", "title": "", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/190/443026417_30dbc376c8_o.jpg", "secret": "a5b47072ac", "media": "photo", "latitude": "0", "id": "443026417", "tags": ""}, {"datetaken": "2007-03-31 22:38:23", "license": "1", "title": "", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/443046642_51a705a8b5_o.jpg", "secret": "a1d98f344d", "media": "photo", "latitude": "0", "id": "443046642", "tags": ""}, {"datetaken": "2007-03-31 23:12:58", "license": "1", "title": "easter decor chez nico", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/443046765_48dcc72912_o.jpg", "secret": "82d5a4709d", "media": "photo", "latitude": "0", "id": "443046765", "tags": ""}, {"datetaken": "2007-04-01 00:09:30", "license": "1", "title": "sarah", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/443045853_6d7a05ff5b_o.jpg", "secret": "6f1e8b4297", "media": "photo", "latitude": "0", "id": "443045853", "tags": ""}, {"datetaken": "2007-04-01 00:11:09", "license": "1", "title": "why did i cover my face?", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/443079894_2bb4fbb6fb_o.jpg", "secret": "6fcffdb5d0", "media": "photo", "latitude": "0", "id": "443079894", "tags": "minneapolis latenight mn tarzhaychante"}, {"datetaken": "2007-04-01 00:17:58", "license": "1", "title": "", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/194/443042870_05e574e004_o.jpg", "secret": "5459689637", "media": "photo", "latitude": "0", "id": "443042870", "tags": ""}, {"datetaken": "2007-04-01 00:19:14", "license": "1", "title": "", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/184/443042182_f3e452e2e5_o.jpg", "secret": "433846a1f1", "media": "photo", "latitude": "0", "id": "443042182", "tags": "me the90s meandcherie wrapdressfromtarzhay"}, {"datetaken": "2007-04-01 00:20:00", "license": "1", "title": "i was trying to take a picture of a guy without a shirt", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/443043475_c9e834769c_o.jpg", "secret": "bb08010d6a", "media": "photo", "latitude": "0", "id": "443043475", "tags": ""}, {"datetaken": "2007-04-01 00:21:35", "license": "1", "title": "", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/189/443042807_d3f5d3ad23_o.jpg", "secret": "e7223ef200", "media": "photo", "latitude": "0", "id": "443042807", "tags": ""}, {"datetaken": "2007-04-01 00:23:52", "license": "1", "title": "", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/443042469_4e1c3c8e0d_o.jpg", "secret": "c9224e921c", "media": "photo", "latitude": "0", "id": "443042469", "tags": ""}, {"datetaken": "2007-04-01 00:24:07", "license": "1", "title": "working my target bracelet", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/443039520_16e0f6aebd_o.jpg", "secret": "72cbfa1f11", "media": "photo", "latitude": "0", "id": "443039520", "tags": ""}, {"datetaken": "2007-04-01 01:38:07", "license": "1", "title": "cherie and me", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/172/443040885_bcd90dceaa_o.jpg", "secret": "9f56db3337", "media": "photo", "latitude": "0", "id": "443040885", "tags": "me nightlife cherie"}, {"datetaken": "2007-04-01 01:38:45", "license": "1", "title": "", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/196/443037982_54ce777a37_o.jpg", "secret": "cee07eb8fc", "media": "photo", "latitude": "0", "id": "443037982", "tags": ""}, {"datetaken": "2007-04-01 01:39:11", "license": "1", "title": "", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/203/443037290_73c831b42a_o.jpg", "secret": "f62e1c5324", "media": "photo", "latitude": "0", "id": "443037290", "tags": ""}, {"datetaken": "2007-04-01 02:35:07", "license": "1", "title": "", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/209/443079014_d6bdbdc0c8_o.jpg", "secret": "17efba4d77", "media": "photo", "latitude": "0", "id": "443079014", "tags": "minneapolis latenight mn"}, {"datetaken": "2007-04-01 02:35:42", "license": "1", "title": "", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/178/443081003_618af974d4_o.jpg", "secret": "7bafba874a", "media": "photo", "latitude": "0", "id": "443081003", "tags": "minneapolis latenight mn"}, {"datetaken": "2007-04-01 02:37:32", "license": "1", "title": "", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/191/443079993_6a7b2e027f_o.jpg", "secret": "7c62f7ee96", "media": "photo", "latitude": "0", "id": "443079993", "tags": "minneapolis latenight mn"}, {"datetaken": "2007-04-01 02:40:27", "license": "1", "title": "", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/169/443079041_51515f03ce_o.jpg", "secret": "8fbc806042", "media": "photo", "latitude": "0", "id": "443079041", "tags": "minneapolis latenight mn"}, {"datetaken": "2007-04-01 02:41:44", "license": "1", "title": "", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/443078627_39f88481fb_o.jpg", "secret": "cf53f2310a", "media": "photo", "latitude": "0", "id": "443078627", "tags": "minneapolis latenight mn"}, {"datetaken": "2007-04-01 02:42:17", "license": "1", "title": "waiting", "text": "", "album_id": "72157600041652858", "longitude": "0", "url_o": "https://farm1.staticflickr.com/191/443078219_77aa03bf7f_o.jpg", "secret": "51c80c93c2", "media": "photo", "latitude": "0", "id": "443078219", "tags": "minneapolis latenight mn"}, {"datetaken": "2011-03-22 15:32:41", "license": "4", "title": "", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5230/5580480016_9b1e3cca0c_o.jpg", "secret": "48fdac2e9a", "media": "photo", "latitude": "0", "id": "5580480016", "tags": ""}, {"datetaken": "2011-03-22 15:37:15", "license": "4", "title": "Double delight", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5028/5579884161_488d9b022d_o.jpg", "secret": "c57ab5ce84", "media": "photo", "latitude": "0", "id": "5579884161", "tags": ""}, {"datetaken": "2011-03-22 15:51:23", "license": "4", "title": "Wedding splendor", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5579884497_d4eaf985ce_o.jpg", "secret": "1131a87a1e", "media": "photo", "latitude": "0", "id": "5579884497", "tags": ""}, {"datetaken": "2011-03-22 15:55:06", "license": "4", "title": "Shimmering Sterling", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5023/5580472728_d83a1c08aa_o.jpg", "secret": "20580bd2c0", "media": "photo", "latitude": "0", "id": "5580472728", "tags": ""}, {"datetaken": "2011-03-22 15:58:50", "license": "4", "title": "", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5051/5580473208_56a8e2e9b6_o.jpg", "secret": "e84574f0be", "media": "photo", "latitude": "0", "id": "5580473208", "tags": ""}, {"datetaken": "2011-03-22 16:05:02", "license": "4", "title": "A tisket a tasket", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5108/5579885743_4f9f99f204_o.jpg", "secret": "031fbb5f1e", "media": "photo", "latitude": "0", "id": "5579885743", "tags": ""}, {"datetaken": "2011-03-22 16:05:56", "license": "4", "title": "", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5141/5579886293_54f06e03c2_o.jpg", "secret": "c8876f2e78", "media": "photo", "latitude": "0", "id": "5579886293", "tags": ""}, {"datetaken": "2011-03-22 16:27:32", "license": "4", "title": "For chocolate lovers", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5065/5580474586_3a928bc1b8_o.jpg", "secret": "7266a56b88", "media": "photo", "latitude": "0", "id": "5580474586", "tags": ""}, {"datetaken": "2011-03-22 16:28:00", "license": "4", "title": "", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5175/5579886971_8dfa4a2d91_o.jpg", "secret": "35a5e9cca2", "media": "photo", "latitude": "0", "id": "5579886971", "tags": ""}, {"datetaken": "2011-03-22 16:40:50", "license": "4", "title": "Dazzling", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5295/5579887675_abcf94331e_o.jpg", "secret": "cb1fb091ac", "media": "photo", "latitude": "0", "id": "5579887675", "tags": ""}, {"datetaken": "2011-03-22 16:45:34", "license": "4", "title": "Mary Kay for men", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5135/5579888055_80f8b4544f_o.jpg", "secret": "74bbec7e2f", "media": "photo", "latitude": "0", "id": "5579888055", "tags": ""}, {"datetaken": "2011-03-23 16:08:02", "license": "4", "title": "Carry on", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5107/5580476430_5fdc0dfa49_o.jpg", "secret": "dbe0f6d417", "media": "photo", "latitude": "0", "id": "5580476430", "tags": ""}, {"datetaken": "2011-03-23 16:15:47", "license": "4", "title": "", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5263/5580476954_97930c6546_o.jpg", "secret": "b0a045068d", "media": "photo", "latitude": "0", "id": "5580476954", "tags": ""}, {"datetaken": "2011-03-23 16:16:36", "license": "4", "title": "", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5262/5579889395_132c620da0_o.jpg", "secret": "e136a5a171", "media": "photo", "latitude": "0", "id": "5579889395", "tags": ""}, {"datetaken": "2011-03-23 16:18:07", "license": "4", "title": "", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5133/5579889831_e51bdfb48b_o.jpg", "secret": "817824184f", "media": "photo", "latitude": "0", "id": "5579889831", "tags": ""}, {"datetaken": "2011-03-23 16:44:33", "license": "4", "title": "", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5184/5580478400_8ea435ab7b_o.jpg", "secret": "ea19f447a4", "media": "photo", "latitude": "0", "id": "5580478400", "tags": ""}, {"datetaken": "2011-03-23 16:44:41", "license": "4", "title": "Cardz and Stuff", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5252/5579890043_f8b271a2ac_o.jpg", "secret": "caa92da7dc", "media": "photo", "latitude": "0", "id": "5579890043", "tags": ""}, {"datetaken": "2011-03-23 16:49:56", "license": "4", "title": "", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5098/5580478838_85caa20f0c_o.jpg", "secret": "64e330b4fc", "media": "photo", "latitude": "0", "id": "5580478838", "tags": ""}, {"datetaken": "2011-03-23 16:53:49", "license": "4", "title": "Custom delivery", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5309/5579891167_fb5c802c6d_o.jpg", "secret": "4f65f9db05", "media": "photo", "latitude": "0", "id": "5579891167", "tags": ""}, {"datetaken": "2011-03-23 17:23:15", "license": "4", "title": "And the winner is ...", "text": "", "album_id": "72157626407600218", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5056/5579891555_cbe9f0a937_o.jpg", "secret": "58cee275fb", "media": "photo", "latitude": "0", "id": "5579891555", "tags": ""}, {"datetaken": "2010-04-03 06:17:12", "license": "1", "title": "Easter Saturday Dawn-0.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2714/4485737863_2f68bcc313_o.jpg", "secret": "21301bb08e", "media": "photo", "latitude": "0", "id": "4485737863", "tags": ""}, {"datetaken": "2010-04-03 06:21:43", "license": "1", "title": "Easter Saturday Dawn-1.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4486393226_7d40814966_o.jpg", "secret": "cdfa6801b7", "media": "photo", "latitude": "0", "id": "4486393226", "tags": ""}, {"datetaken": "2010-04-03 06:25:32", "license": "1", "title": "Easter Saturday Dawn-2.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4485742829_f58021ffc1_o.jpg", "secret": "ea849db006", "media": "photo", "latitude": "0", "id": "4485742829", "tags": ""}, {"datetaken": "2010-04-03 06:25:41", "license": "1", "title": "Easter Saturday Dawn-3.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4485745271_fc03789b2d_o.jpg", "secret": "7b053181d1", "media": "photo", "latitude": "0", "id": "4485745271", "tags": ""}, {"datetaken": "2010-04-03 06:25:54", "license": "1", "title": "Easter Saturday Dawn-4.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4485747561_022129a773_o.jpg", "secret": "23af3a6324", "media": "photo", "latitude": "0", "id": "4485747561", "tags": ""}, {"datetaken": "2010-04-03 06:26:41", "license": "1", "title": "Easter Saturday Dawn-5.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4485749765_96db21b430_o.jpg", "secret": "1f0a1d5eca", "media": "photo", "latitude": "0", "id": "4485749765", "tags": ""}, {"datetaken": "2010-04-03 06:27:19", "license": "1", "title": "Easter Saturday Dawn-6.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4485752507_eee1e555c1_o.jpg", "secret": "044d766845", "media": "photo", "latitude": "0", "id": "4485752507", "tags": ""}, {"datetaken": "2010-04-03 06:27:22", "license": "1", "title": "Easter Saturday Dawn-7.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2778/4485755269_3575de0b93_o.jpg", "secret": "d9d14b13c4", "media": "photo", "latitude": "0", "id": "4485755269", "tags": ""}, {"datetaken": "2010-04-03 06:27:54", "license": "1", "title": "Easter Saturday Dawn-8.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4485757887_2a7027c4ec_o.jpg", "secret": "67cf4b4c2b", "media": "photo", "latitude": "0", "id": "4485757887", "tags": ""}, {"datetaken": "2010-04-03 06:28:20", "license": "1", "title": "Easter Saturday Dawn-9.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4485760449_7de8616c1f_o.jpg", "secret": "6641e9d1b1", "media": "photo", "latitude": "0", "id": "4485760449", "tags": ""}, {"datetaken": "2010-04-03 06:28:31", "license": "1", "title": "Easter Saturday Dawn-10.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4013/4485762961_fa0738c131_o.jpg", "secret": "2b5bb31740", "media": "photo", "latitude": "0", "id": "4485762961", "tags": ""}, {"datetaken": "2010-04-03 06:29:25", "license": "1", "title": "Easter Saturday Dawn-11.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4485766321_a250cef08b_o.jpg", "secret": "9713796f5a", "media": "photo", "latitude": "0", "id": "4485766321", "tags": ""}, {"datetaken": "2010-04-03 06:30:36", "license": "1", "title": "Easter Saturday Dawn-12.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4486421710_0faf9aa60f_o.jpg", "secret": "7db2a9de5c", "media": "photo", "latitude": "0", "id": "4486421710", "tags": ""}, {"datetaken": "2010-04-03 06:34:01", "license": "1", "title": "Easter Saturday Dawn-13.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4486424570_e5a7b9c68b_o.jpg", "secret": "f5f06cfda2", "media": "photo", "latitude": "0", "id": "4486424570", "tags": ""}, {"datetaken": "2010-04-03 06:34:33", "license": "1", "title": "Easter Saturday Dawn-14.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4486427602_5ac67b44a0_o.jpg", "secret": "1c5f7439f0", "media": "photo", "latitude": "0", "id": "4486427602", "tags": ""}, {"datetaken": "2010-04-03 06:35:20", "license": "1", "title": "Easter Saturday Dawn-15.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2706/4486430180_d2fb29e714_o.jpg", "secret": "e28bf7349c", "media": "photo", "latitude": "0", "id": "4486430180", "tags": ""}, {"datetaken": "2010-04-03 06:35:21", "license": "1", "title": "Easter Saturday Dawn-16.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4485780629_7c07d841c8_o.jpg", "secret": "e9a4484738", "media": "photo", "latitude": "0", "id": "4485780629", "tags": ""}, {"datetaken": "2010-04-03 06:38:43", "license": "1", "title": "Easter Saturday Dawn-17.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4486435910_f06e444a09_o.jpg", "secret": "dd2936c64c", "media": "photo", "latitude": "0", "id": "4486435910", "tags": ""}, {"datetaken": "2010-04-03 06:38:44", "license": "1", "title": "Easter Saturday Dawn-18.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4485787003_6f513e2636_o.jpg", "secret": "4de22b18b5", "media": "photo", "latitude": "0", "id": "4485787003", "tags": ""}, {"datetaken": "2010-04-03 06:40:52", "license": "1", "title": "Easter Saturday Dawn-19.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2725/4485790017_b3bee1a0a7_o.jpg", "secret": "8a07fc4ab7", "media": "photo", "latitude": "0", "id": "4485790017", "tags": ""}, {"datetaken": "2010-04-03 06:41:47", "license": "1", "title": "Easter Saturday Dawn-20.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4485793427_9b513d4002_o.jpg", "secret": "f2c40c2e54", "media": "photo", "latitude": "0", "id": "4485793427", "tags": ""}, {"datetaken": "2010-04-03 06:42:09", "license": "1", "title": "Easter Saturday Dawn-21.jpg", "text": "", "album_id": "72157623635304297", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4485795631_4e528e015a_o.jpg", "secret": "57bf97e8b8", "media": "photo", "latitude": "0", "id": "4485795631", "tags": ""}, {"datetaken": "2010-04-02 21:07:43", "license": "2", "title": "dog and puppies", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4486930793_e6878643f3_o.jpg", "secret": "bc58630360", "media": "photo", "latitude": "0", "id": "4486930793", "tags": ""}, {"datetaken": "2010-04-02 21:08:00", "license": "2", "title": "Big snow", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4486930799_c99da3c93a_o.jpg", "secret": "eb4d1f3a7f", "media": "photo", "latitude": "0", "id": "4486930799", "tags": ""}, {"datetaken": "2010-04-02 21:12:29", "license": "2", "title": "Horses at Uncle Don's", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4001/4486930805_8a1eb8b6bd_o.jpg", "secret": "cc051d618a", "media": "photo", "latitude": "0", "id": "4486930805", "tags": ""}, {"datetaken": "2010-04-02 21:12:46", "license": "2", "title": "Drilling a well", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2747/4486930809_b21a1471b9_o.jpg", "secret": "8be8021a6b", "media": "photo", "latitude": "0", "id": "4486930809", "tags": ""}, {"datetaken": "2010-04-02 21:15:33", "license": "2", "title": "Easter Lily at Grammy Crockett's", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4486930811_fc14c5e09f_o.jpg", "secret": "dfc9894c86", "media": "photo", "latitude": "0", "id": "4486930811", "tags": ""}, {"datetaken": "2010-04-02 21:17:24", "license": "2", "title": "Grammy's living room", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2765/4486930817_e6025e84df_o.jpg", "secret": "41a5795e3c", "media": "photo", "latitude": "0", "id": "4486930817", "tags": ""}, {"datetaken": "2010-04-02 21:17:47", "license": "2", "title": "Aunt Toots & Jerry?", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4487586326_bf12b2d633_o.jpg", "secret": "42745633b3", "media": "photo", "latitude": "0", "id": "4487586326", "tags": ""}, {"datetaken": "2010-04-02 21:32:12", "license": "2", "title": "Horse and colt (Gary?)", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4487586334_c6827dbcc4_o.jpg", "secret": "d36b00f627", "media": "photo", "latitude": "0", "id": "4487586334", "tags": ""}, {"datetaken": "2010-04-03 06:59:50", "license": "2", "title": "Aunt Toots and Jerry?", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4487586336_ff7383dde9_o.jpg", "secret": "a996c85ceb", "media": "photo", "latitude": "0", "id": "4487586336", "tags": ""}, {"datetaken": "2010-04-03 07:16:36", "license": "2", "title": "Dog and Puppies", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4487586340_193386b30e_o.jpg", "secret": "fd6b12de06", "media": "photo", "latitude": "0", "id": "4487586340", "tags": ""}, {"datetaken": "2010-04-03 07:21:47", "license": "2", "title": "Grampa Olan?", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4487586344_e2b241e42e_o.jpg", "secret": "66dbb4f8f9", "media": "photo", "latitude": "0", "id": "4487586344", "tags": ""}, {"datetaken": "2010-04-03 07:22:00", "license": "2", "title": "Car, there must be a story", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4487586346_8272b7e701_o.jpg", "secret": "51e237ca5b", "media": "photo", "latitude": "0", "id": "4487586346", "tags": ""}, {"datetaken": "2010-04-03 07:40:13", "license": "2", "title": "scan0068", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4487591962_83bc918b8f_o.jpg", "secret": "7d07fea2e4", "media": "photo", "latitude": "0", "id": "4487591962", "tags": ""}, {"datetaken": "2010-04-03 07:40:31", "license": "2", "title": "Puppy ?", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2763/4487591966_bfa30dbd59_o.jpg", "secret": "f51721d6b7", "media": "photo", "latitude": "0", "id": "4487591966", "tags": ""}, {"datetaken": "2010-04-03 07:52:31", "license": "2", "title": "scan0072", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2785/4487591978_4f06614bac_o.jpg", "secret": "7edb201983", "media": "photo", "latitude": "0", "id": "4487591978", "tags": ""}, {"datetaken": "2010-04-03 08:15:55", "license": "2", "title": "Beagle ?", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2783/4487591980_bcf9d5147d_o.jpg", "secret": "566ed45001", "media": "photo", "latitude": "0", "id": "4487591980", "tags": ""}, {"datetaken": "2010-04-03 08:28:00", "license": "2", "title": "Sweet Peas at Grammy Crockett's", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4487591984_fff921b35a_o.jpg", "secret": "e491ece3c9", "media": "photo", "latitude": "0", "id": "4487591984", "tags": ""}, {"datetaken": "2010-04-03 08:31:47", "license": "2", "title": "scan0102", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4487672916_aaa074f4ae_o.jpg", "secret": "d33612cc68", "media": "photo", "latitude": "0", "id": "4487672916", "tags": ""}, {"datetaken": "2010-04-03 08:32:00", "license": "2", "title": "Uncle Don and some pulling ponies", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2753/4487672948_cb4329d7a7_o.jpg", "secret": "a8b47c242b", "media": "photo", "latitude": "0", "id": "4487672948", "tags": ""}, {"datetaken": "2010-04-03 09:25:47", "license": "2", "title": "Original Barker house?", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4487631300_7f13136752_o.jpg", "secret": "5de6a0e53e", "media": "photo", "latitude": "0", "id": "4487631300", "tags": ""}, {"datetaken": "2010-04-03 09:39:33", "license": "2", "title": "Hazy Sun and Cole house", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2723/4487591990_db68fd0db9_o.jpg", "secret": "49115b7648", "media": "photo", "latitude": "0", "id": "4487591990", "tags": ""}, {"datetaken": "2010-04-03 09:54:58", "license": "2", "title": "Snow?", "text": "", "album_id": "72157623762355456", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2765/4486946575_e25dc900d9_o.jpg", "secret": "40a3cc608e", "media": "photo", "latitude": "0", "id": "4486946575", "tags": ""}, {"datetaken": "2010-03-04 10:59:23", "license": "3", "title": "Fakenham Market", "text": "", "album_id": "72157623430267951", "longitude": "0.847921", "url_o": "https://farm3.staticflickr.com/2775/4406362511_337d52a413_o.jpg", "secret": "55ce2d22a5", "media": "photo", "latitude": "52.830345", "id": "4406362511", "tags": ""}, {"datetaken": "2010-03-04 11:00:22", "license": "3", "title": "Fakenham Market", "text": "", "album_id": "72157623430267951", "longitude": "0.847921", "url_o": "https://farm5.staticflickr.com/4069/4406364923_33307cd8cb_o.jpg", "secret": "d0a3c04415", "media": "photo", "latitude": "52.830345", "id": "4406364923", "tags": ""}, {"datetaken": "2010-03-04 11:02:00", "license": "3", "title": "Fakenham Market", "text": "", "album_id": "72157623430267951", "longitude": "0.847921", "url_o": "https://farm5.staticflickr.com/4059/4406373555_3a6fbe0330_o.jpg", "secret": "4152a43ca8", "media": "photo", "latitude": "52.830345", "id": "4406373555", "tags": ""}, {"datetaken": "2010-03-04 11:02:51", "license": "3", "title": "Fakenham Market", "text": "", "album_id": "72157623430267951", "longitude": "0.847921", "url_o": "https://farm5.staticflickr.com/4024/4407153364_0cb649d1bb_o.jpg", "secret": "56795527a7", "media": "photo", "latitude": "52.830345", "id": "4407153364", "tags": ""}, {"datetaken": "2010-03-04 11:03:29", "license": "3", "title": "Fakenham Market", "text": "", "album_id": "72157623430267951", "longitude": "0.847921", "url_o": "https://farm3.staticflickr.com/2787/4406392583_32ac297426_o.jpg", "secret": "7dab1420f9", "media": "photo", "latitude": "52.830345", "id": "4406392583", "tags": ""}, {"datetaken": "2010-03-04 11:06:06", "license": "3", "title": "Fakenham Market", "text": "", "album_id": "72157623430267951", "longitude": "0.847921", "url_o": "https://farm5.staticflickr.com/4015/4407216098_a189ea4c5b_o.jpg", "secret": "e3b1fb6766", "media": "photo", "latitude": "52.830345", "id": "4407216098", "tags": ""}, {"datetaken": "2010-03-04 11:07:55", "license": "3", "title": "Fakenham Market", "text": "", "album_id": "72157623430267951", "longitude": "0.847921", "url_o": "https://farm5.staticflickr.com/4053/4407221670_9050948738_o.jpg", "secret": "f618b7b17b", "media": "photo", "latitude": "52.830345", "id": "4407221670", "tags": ""}, {"datetaken": "2010-03-04 11:09:18", "license": "3", "title": "Fakenham Market", "text": "", "album_id": "72157623430267951", "longitude": "0.847921", "url_o": "https://farm5.staticflickr.com/4066/4407234432_664d8bd0ba_o.jpg", "secret": "e73e172b78", "media": "photo", "latitude": "52.830345", "id": "4407234432", "tags": ""}, {"datetaken": "2010-03-04 11:09:52", "license": "3", "title": "Fakenham Market", "text": "", "album_id": "72157623430267951", "longitude": "0.847921", "url_o": "https://farm3.staticflickr.com/2716/4406470907_8c9361e751_o.jpg", "secret": "51166352b8", "media": "photo", "latitude": "52.830345", "id": "4406470907", "tags": ""}, {"datetaken": "2010-03-04 11:12:12", "license": "3", "title": "Fakenham Market", "text": "", "album_id": "72157623430267951", "longitude": "0.847921", "url_o": "https://farm3.staticflickr.com/2684/4407239152_bec1514bd9_o.jpg", "secret": "54ed564931", "media": "photo", "latitude": "52.830345", "id": "4407239152", "tags": ""}, {"datetaken": "2001-04-15 06:33:50", "license": "5", "title": "P4150322.JPG", "text": "", "album_id": "72157594477699038", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/347353294_8c87768bdd_o.jpg", "secret": "8c87768bdd", "media": "photo", "latitude": "0", "id": "347353294", "tags": "easter jeremy josh 5wadsworth"}, {"datetaken": "2001-04-15 06:34:10", "license": "5", "title": "P4150323.JPG", "text": "", "album_id": "72157594477699038", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/347353434_0cbc3c7c6a_o.jpg", "secret": "0cbc3c7c6a", "media": "photo", "latitude": "0", "id": "347353434", "tags": "easter jeremy 5wadsworth"}, {"datetaken": "2001-04-15 06:35:07", "license": "5", "title": "P4150324.JPG", "text": "", "album_id": "72157594477699038", "longitude": "0", "url_o": "https://farm1.staticflickr.com/162/347353555_80aa39ef4e_o.jpg", "secret": "80aa39ef4e", "media": "photo", "latitude": "0", "id": "347353555", "tags": "easter jeremy josh 5wadsworth"}, {"datetaken": "2001-04-15 06:42:12", "license": "5", "title": "P4150326.JPG", "text": "", "album_id": "72157594477699038", "longitude": "0", "url_o": "https://farm1.staticflickr.com/134/347353673_dd83ef43fa_o.jpg", "secret": "dd83ef43fa", "media": "photo", "latitude": "0", "id": "347353673", "tags": "easter jeremy entertainmentcenter 5wadsworth"}, {"datetaken": "2001-04-15 06:42:23", "license": "5", "title": "P4150327.JPG", "text": "", "album_id": "72157594477699038", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/347353795_c1e3f3ef3b_o.jpg", "secret": "c1e3f3ef3b", "media": "photo", "latitude": "0", "id": "347353795", "tags": "easter jeremy 5wadsworth"}, {"datetaken": "2001-04-15 06:47:30", "license": "5", "title": "P4150328.JPG", "text": "", "album_id": "72157594477699038", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/347353947_968d1991c4_o.jpg", "secret": "968d1991c4", "media": "photo", "latitude": "0", "id": "347353947", "tags": "easter jeremy 5wadsworth"}, {"datetaken": "2001-04-15 06:47:41", "license": "5", "title": "P4150329.JPG", "text": "", "album_id": "72157594477699038", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/347354082_84501db8e0_o.jpg", "secret": "84501db8e0", "media": "photo", "latitude": "0", "id": "347354082", "tags": "easter jeremy josh 5wadsworth"}, {"datetaken": "2001-04-15 06:48:26", "license": "5", "title": "P4150330.JPG", "text": "", "album_id": "72157594477699038", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/347354210_124e373498_o.jpg", "secret": "124e373498", "media": "photo", "latitude": "0", "id": "347354210", "tags": "easter josh 5wadsworth"}, {"datetaken": "2001-04-15 08:07:36", "license": "5", "title": "P4150332.JPG", "text": "", "album_id": "72157594477699038", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/347354324_5cb2f2a688_o.jpg", "secret": "5cb2f2a688", "media": "photo", "latitude": "0", "id": "347354324", "tags": "alex easter jeremy 5wadsworth"}, {"datetaken": "2001-04-15 08:08:08", "license": "5", "title": "P4150335.JPG", "text": "", "album_id": "72157594477699038", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/347354424_a5ac0b6153_o.jpg", "secret": "a5ac0b6153", "media": "photo", "latitude": "0", "id": "347354424", "tags": "easter jeremy 5wadsworth"}, {"datetaken": "2001-04-15 08:08:25", "license": "5", "title": "P4150337.JPG", "text": "", "album_id": "72157594477699038", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/347354551_15c60679dd_o.jpg", "secret": "15c60679dd", "media": "photo", "latitude": "0", "id": "347354551", "tags": "easter jeremy 5wadsworth"}, {"datetaken": "2001-04-15 08:08:44", "license": "5", "title": "P4150338.JPG", "text": "", "album_id": "72157594477699038", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/347354674_883e98ecaf_o.jpg", "secret": "883e98ecaf", "media": "photo", "latitude": "0", "id": "347354674", "tags": "alex easter 5wadsworth"}, {"datetaken": "2001-04-15 08:09:54", "license": "5", "title": "P4150341.JPG", "text": "", "album_id": "72157594477699038", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/347354786_0eb8800509_o.jpg", "secret": "0eb8800509", "media": "photo", "latitude": "0", "id": "347354786", "tags": "easter 5wadsworth"}, {"datetaken": "2007-04-01 05:31:27", "license": "3", "title": "south peeps", "text": "", "album_id": "72157600050270086", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/447649799_6240276971_o.jpg", "secret": "2dcfe9d2c7", "media": "photo", "latitude": "0", "id": "447649799", "tags": "chicken los angeles lovefingers"}, {"datetaken": "2007-04-01 05:34:24", "license": "3", "title": "peeps", "text": "", "album_id": "72157600050270086", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/447643120_255238de8d_o.jpg", "secret": "41319572e3", "media": "photo", "latitude": "0", "id": "447643120", "tags": "chicken los angeles lovefingers"}, {"datetaken": "2007-04-01 06:00:46", "license": "3", "title": "but who is the chicekn? really", "text": "", "album_id": "72157600050270086", "longitude": "0", "url_o": "https://farm1.staticflickr.com/220/447645683_9eac568f5f_o.jpg", "secret": "ac1ff18bb9", "media": "photo", "latitude": "0", "id": "447645683", "tags": "chicken los angeles lovefingers"}, {"datetaken": "2007-04-01 07:50:18", "license": "3", "title": "easter buddies", "text": "", "album_id": "72157600050270086", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/447646449_7e02c9decc_o.jpg", "secret": "e2ac12a5cc", "media": "photo", "latitude": "0", "id": "447646449", "tags": "chicken los angeles lovefingers"}, {"datetaken": "2007-04-01 07:57:32", "license": "3", "title": "ram&cr", "text": "", "album_id": "72157600050270086", "longitude": "0", "url_o": "https://farm1.staticflickr.com/212/447643124_bb753a7b18_o.jpg", "secret": "2e50af175e", "media": "photo", "latitude": "0", "id": "447643124", "tags": "chicken los angeles lovefingers"}, {"datetaken": "2007-04-01 08:01:23", "license": "3", "title": "jr's generosity", "text": "", "album_id": "72157600050270086", "longitude": "0", "url_o": "https://farm1.staticflickr.com/196/447647299_ae571a4ade_o.jpg", "secret": "67750fa2ca", "media": "photo", "latitude": "0", "id": "447647299", "tags": "chicken los angeles lovefingers"}, {"datetaken": "2007-04-01 08:28:24", "license": "3", "title": "chicken", "text": "", "album_id": "72157600050270086", "longitude": "0", "url_o": "https://farm1.staticflickr.com/229/447645703_e80369f641_o.jpg", "secret": "502714e1aa", "media": "photo", "latitude": "0", "id": "447645703", "tags": "chicken los angeles lovefingers"}, {"datetaken": "2007-04-01 08:28:38", "license": "3", "title": "chicken dead by disco", "text": "", "album_id": "72157600050270086", "longitude": "0", "url_o": "https://farm1.staticflickr.com/227/447645689_34ea183780_o.jpg", "secret": "8539860f7d", "media": "photo", "latitude": "0", "id": "447645689", "tags": "chicken los angeles lovefingers"}, {"datetaken": "2007-04-01 08:56:45", "license": "3", "title": "la", "text": "", "album_id": "72157600050270086", "longitude": "0", "url_o": "https://farm1.staticflickr.com/195/447647303_3d89f5054e_o.jpg", "secret": "dfe8b9cb14", "media": "photo", "latitude": "0", "id": "447647303", "tags": "chicken los angeles lovefingers"}, {"datetaken": "2007-04-01 08:56:56", "license": "3", "title": "ladies are nice", "text": "", "album_id": "72157600050270086", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/447643102_7c9167d3e3_o.jpg", "secret": "87437d7a31", "media": "photo", "latitude": "0", "id": "447643102", "tags": "chicken los angeles lovefingers"}, {"datetaken": "2007-04-01 09:39:19", "license": "3", "title": "caged one", "text": "", "album_id": "72157600050270086", "longitude": "0", "url_o": "https://farm1.staticflickr.com/189/447645685_ea631d2709_o.jpg", "secret": "c6a7de1500", "media": "photo", "latitude": "0", "id": "447645685", "tags": "chicken los angeles lovefingers"}, {"datetaken": "2007-04-01 09:59:49", "license": "3", "title": "loafah love", "text": "", "album_id": "72157600050270086", "longitude": "0", "url_o": "https://farm1.staticflickr.com/222/447643110_19563d0855_o.jpg", "secret": "062dfa32a7", "media": "photo", "latitude": "0", "id": "447643110", "tags": "chicken los angeles lovefingers"}, {"datetaken": "2007-04-01 10:00:21", "license": "3", "title": "the Loafa lives", "text": "", "album_id": "72157600050270086", "longitude": "0", "url_o": "https://farm1.staticflickr.com/248/447649803_04cb0fc3a1_o.jpg", "secret": "56d345ed73", "media": "photo", "latitude": "0", "id": "447649803", "tags": "chicken los angeles lovefingers"}, {"datetaken": "2007-04-01 10:17:00", "license": "3", "title": "Kim", "text": "", "album_id": "72157600050270086", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/447647301_8de5475e04_o.jpg", "secret": "07391c9f8d", "media": "photo", "latitude": "0", "id": "447647301", "tags": "chicken los angeles lovefingers"}, {"datetaken": "2007-04-01 10:17:17", "license": "3", "title": "Woolfy&Kimb", "text": "", "album_id": "72157600050270086", "longitude": "0", "url_o": "https://farm1.staticflickr.com/238/447649811_3f6122a1ca_o.jpg", "secret": "216fea97ac", "media": "photo", "latitude": "0", "id": "447649811", "tags": "chicken los angeles lovefingers"}, {"datetaken": "2006-04-13 13:41:45", "license": "5", "title": "A lovely day for a baseball game", "text": "", "album_id": "72057594126419846", "longitude": "-76.971850", "url_o": "https://farm1.staticflickr.com/51/140991026_c89ad08d34_o.jpg", "secret": "c89ad08d34", "media": "photo", "latitude": "38.889366", "id": "140991026", "tags": "washingtondc baseball mets nats rfkstadium mlb newyorkmets washingtonnationals"}, {"datetaken": "2006-04-13 13:42:02", "license": "5", "title": "Zambrano's wind-up", "text": "", "album_id": "72057594126419846", "longitude": "-76.971850", "url_o": "https://farm1.staticflickr.com/46/140991017_6c7bbf520c_o.jpg", "secret": "6c7bbf520c", "media": "photo", "latitude": "38.889366", "id": "140991017", "tags": "washingtondc baseball mets nats rfkstadium mlb newyorkmets washingtonnationals victorzambrano"}, {"datetaken": "2006-04-13 13:42:04", "license": "5", "title": "Zambrano's pitch...", "text": "", "album_id": "72057594126419846", "longitude": "-76.971850", "url_o": "https://farm1.staticflickr.com/45/140991000_658da02d5b_o.jpg", "secret": "658da02d5b", "media": "photo", "latitude": "38.889366", "id": "140991000", "tags": "washingtondc baseball mets pitching nats rfkstadium mlb newyorkmets washingtonnationals victorzambrano"}, {"datetaken": "2006-04-13 13:42:24", "license": "5", "title": "Back to the dugout", "text": "", "album_id": "72057594126419846", "longitude": "-76.971850", "url_o": "https://farm1.staticflickr.com/49/140990990_ccff363a69_o.jpg", "secret": "ccff363a69", "media": "photo", "latitude": "38.889366", "id": "140990990", "tags": "washingtondc baseball mets nats rfkstadium mlb newyorkmets washingtonnationals"}, {"datetaken": "2006-04-13 13:43:36", "license": "5", "title": "Livan Hernandez warms up", "text": "", "album_id": "72057594126419846", "longitude": "-76.971850", "url_o": "https://farm1.staticflickr.com/47/140990968_746e9f26bd_o.jpg", "secret": "746e9f26bd", "media": "photo", "latitude": "38.889366", "id": "140990968", "tags": "washingtondc baseball mets nats rfkstadium mlb newyorkmets washingtonnationals livanhernandez"}, {"datetaken": "2006-04-13 13:49:10", "license": "5", "title": "Livan delivers to Floyd...", "text": "", "album_id": "72057594126419846", "longitude": "-76.971850", "url_o": "https://farm1.staticflickr.com/56/140990955_04bad0ae22_o.jpg", "secret": "04bad0ae22", "media": "photo", "latitude": "38.889366", "id": "140990955", "tags": "washingtondc baseball clifffloyd mets nats rfkstadium mlb newyorkmets washingtonnationals livanhernandez"}, {"datetaken": "2006-04-13 13:49:11", "license": "5", "title": "Called strike!", "text": "", "album_id": "72057594126419846", "longitude": "-76.971850", "url_o": "https://farm1.staticflickr.com/45/140990940_51e107af48_o.jpg", "secret": "51e107af48", "media": "photo", "latitude": "38.889366", "id": "140990940", "tags": "washingtondc baseball clifffloyd mets nats rfkstadium mlb newyorkmets washingtonnationals livanhernandez"}, {"datetaken": "2006-04-13 13:49:29", "license": "5", "title": "Floyd swings....", "text": "", "album_id": "72057594126419846", "longitude": "-76.971850", "url_o": "https://farm1.staticflickr.com/55/140990923_afb000479b_o.jpg", "secret": "afb000479b", "media": "photo", "latitude": "38.889366", "id": "140990923", "tags": "washingtondc baseball clifffloyd mets nats rfkstadium mlb newyorkmets washingtonnationals livanhernandez"}, {"datetaken": "2006-04-13 14:54:20", "license": "5", "title": "Nats on the field", "text": "", "album_id": "72057594126419846", "longitude": "-76.971850", "url_o": "https://farm1.staticflickr.com/56/140990900_56e97730b9_o.jpg", "secret": "56e97730b9", "media": "photo", "latitude": "38.889366", "id": "140990900", "tags": "washingtondc baseball mets nats rfkstadium mlb newyorkmets washingtonnationals"}, {"datetaken": "2006-04-13 14:58:15", "license": "5", "title": "Alfonso Soriano", "text": "", "album_id": "72057594126419846", "longitude": "-76.971850", "url_o": "https://farm1.staticflickr.com/54/142565952_548efe6f9b_o.jpg", "secret": "548efe6f9b", "media": "photo", "latitude": "38.889366", "id": "142565952", "tags": "washingtondc baseball nationals mets nats rfkstadium mlb newyorkmets washingtonnationals alfonsosoriano"}, {"datetaken": "2006-04-13 14:58:38", "license": "5", "title": "Joey Eischen", "text": "", "album_id": "72057594126419846", "longitude": "-76.971850", "url_o": "https://farm1.staticflickr.com/53/142564261_feabdcf04a_o.jpg", "secret": "feabdcf04a", "media": "photo", "latitude": "38.889366", "id": "142564261", "tags": "washingtondc baseball nationals mets nats rfkstadium mlb newyorkmets washingtonnationals joeyeischen"}, {"datetaken": "2006-04-13 14:59:20", "license": "5", "title": "David Wright swings", "text": "", "album_id": "72057594126419846", "longitude": "-76.971850", "url_o": "https://farm1.staticflickr.com/48/142563450_e7de58a4ea_o.jpg", "secret": "e7de58a4ea", "media": "photo", "latitude": "38.889366", "id": "142563450", "tags": "washingtondc baseball nationals mets nats rfkstadium mlb newyorkmets washingtonnationals davidwright"}, {"datetaken": "2006-04-13 15:02:10", "license": "5", "title": "RFK vista", "text": "", "album_id": "72057594126419846", "longitude": "-76.971850", "url_o": "https://farm1.staticflickr.com/50/142564707_b159619b5e_o.jpg", "secret": "b159619b5e", "media": "photo", "latitude": "38.889366", "id": "142564707", "tags": "washingtondc baseball nationals mets nats rfkstadium mlb newyorkmets washingtonnationals"}, {"datetaken": "2006-04-13 15:02:57", "license": "5", "title": "Cliff Floyd swings...", "text": "", "album_id": "72057594126419846", "longitude": "-76.971850", "url_o": "https://farm1.staticflickr.com/49/142565169_9696eb738f_o.jpg", "secret": "9696eb738f", "media": "photo", "latitude": "38.889366", "id": "142565169", "tags": "washingtondc baseball clifffloyd nationals mets nats rfkstadium mlb newyorkmets washingtonnationals"}, {"datetaken": "2006-04-13 15:03:32", "license": "5", "title": "Nick Johnson covers first", "text": "", "album_id": "72057594126419846", "longitude": "-76.971850", "url_o": "https://farm1.staticflickr.com/53/142565601_81a35c08f6_o.jpg", "secret": "81a35c08f6", "media": "photo", "latitude": "38.889366", "id": "142565601", "tags": "washingtondc baseball nationals mets nats rfkstadium mlb newyorkmets washingtonnationals nickjohnson"}, {"datetaken": "2006-04-13 15:04:26", "license": "5", "title": "Nady connects", "text": "", "album_id": "72057594126419846", "longitude": "-76.971850", "url_o": "https://farm1.staticflickr.com/47/142563919_7146bbbe8f_o.jpg", "secret": "7146bbbe8f", "media": "photo", "latitude": "38.889366", "id": "142563919", "tags": "washingtondc baseball nationals mets nats rfkstadium mlb newyorkmets washingtonnationals xaviernady"}, {"datetaken": "2010-02-06 16:58:51", "license": "4", "title": "Peeps Dark Chocolate Covered Marshmallow", "text": "", "album_id": "72157623242343043", "longitude": "-73.980903", "url_o": "https://farm5.staticflickr.com/4041/4336007642_8d8b9c8826_o.jpg", "secret": "0fba82965f", "media": "photo", "latitude": "40.742087", "id": "4336007642", "tags": "easter candy chocolate peeps"}, {"datetaken": "2010-02-06 17:00:02", "license": "4", "title": "Peeps Dark Chocolate Covered Marshmallow", "text": "", "album_id": "72157623242343043", "longitude": "-73.980903", "url_o": "https://farm5.staticflickr.com/4042/4335270465_989d25f89e_o.jpg", "secret": "3c1af963fb", "media": "photo", "latitude": "40.742087", "id": "4335270465", "tags": "easter candy chocolate peeps"}, {"datetaken": "2010-02-06 17:00:13", "license": "4", "title": "Peeps Dark Chocolate Covered Marshmallow", "text": "", "album_id": "72157623242343043", "longitude": "-73.980903", "url_o": "https://farm5.staticflickr.com/4039/4335275573_058509365d_o.jpg", "secret": "a3a64e2bf4", "media": "photo", "latitude": "40.742087", "id": "4335275573", "tags": "easter candy chocolate peeps"}, {"datetaken": "2010-02-06 17:00:23", "license": "4", "title": "Peeps Dark Chocolate Covered Marshmallow", "text": "", "album_id": "72157623242343043", "longitude": "-73.980903", "url_o": "https://farm5.staticflickr.com/4062/4336025524_d00baba704_o.jpg", "secret": "9968b6e9a0", "media": "photo", "latitude": "40.742087", "id": "4336025524", "tags": "easter candy chocolate peeps"}, {"datetaken": "2010-02-06 17:00:49", "license": "4", "title": "Peeps Dark Chocolate Covered Marshmallow", "text": "", "album_id": "72157623242343043", "longitude": "-73.980903", "url_o": "https://farm5.staticflickr.com/4047/4336032058_c43b84dc8d_o.jpg", "secret": "b74e34f744", "media": "photo", "latitude": "40.742087", "id": "4336032058", "tags": "easter candy chocolate peeps"}, {"datetaken": "2010-02-06 17:01:45", "license": "4", "title": "Peeps Dark Chocolate Covered Marshmallow", "text": "", "album_id": "72157623242343043", "longitude": "-73.980903", "url_o": "https://farm3.staticflickr.com/2697/4336037246_39bd505113_o.jpg", "secret": "535ef2d5e7", "media": "photo", "latitude": "40.742087", "id": "4336037246", "tags": "easter candy chocolate peeps"}, {"datetaken": "2010-02-06 17:02:40", "license": "4", "title": "Peeps Dark Chocolate Covered Marshmallow", "text": "", "album_id": "72157623242343043", "longitude": "-73.980903", "url_o": "https://farm3.staticflickr.com/2730/4335297411_86a77c470e_o.jpg", "secret": "4a90c46e24", "media": "photo", "latitude": "40.742087", "id": "4335297411", "tags": "easter candy chocolate peeps"}, {"datetaken": "2010-02-06 17:02:50", "license": "4", "title": "Peeps Dark Chocolate Covered Marshmallow", "text": "", "album_id": "72157623242343043", "longitude": "-73.980903", "url_o": "https://farm5.staticflickr.com/4071/4335300497_6d73395b6d_o.jpg", "secret": "e4d032c7f4", "media": "photo", "latitude": "40.742087", "id": "4335300497", "tags": "easter candy chocolate peeps"}, {"datetaken": "2010-02-06 17:04:39", "license": "4", "title": "Peeps Dark Chocolate Covered Marshmallow", "text": "", "album_id": "72157623242343043", "longitude": "-73.980903", "url_o": "https://farm5.staticflickr.com/4072/4336049082_e1f14c0cda_o.jpg", "secret": "2bde4db7a9", "media": "photo", "latitude": "40.742087", "id": "4336049082", "tags": "easter candy chocolate peeps"}, {"datetaken": "2010-02-06 17:04:54", "license": "4", "title": "Peeps Dark Chocolate Covered Marshmallow", "text": "", "album_id": "72157623242343043", "longitude": "-73.980903", "url_o": "https://farm5.staticflickr.com/4049/4336053052_c84743e588_o.jpg", "secret": "7b0c22dd40", "media": "photo", "latitude": "40.742087", "id": "4336053052", "tags": "easter candy chocolate peeps"}, {"datetaken": "2010-02-06 17:05:16", "license": "4", "title": "Peeps Dark Chocolate Covered Marshmallow", "text": "", "album_id": "72157623242343043", "longitude": "-73.980903", "url_o": "https://farm5.staticflickr.com/4024/4336059180_95750ee7d9_o.jpg", "secret": "341c0b994c", "media": "photo", "latitude": "40.742087", "id": "4336059180", "tags": "easter candy chocolate peeps"}, {"datetaken": "2007-04-07 11:21:33", "license": "5", "title": "IMG_1666", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/246/449677547_33f44b8bda_o.jpg", "secret": "d164d4b87f", "media": "photo", "latitude": "0", "id": "449677547", "tags": "easter"}, {"datetaken": "2007-04-07 11:21:43", "license": "5", "title": "IMG_1668", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/234/449678561_7772bf31bd_o.jpg", "secret": "cc00fa31bd", "media": "photo", "latitude": "0", "id": "449678561", "tags": "easter"}, {"datetaken": "2007-04-07 11:21:54", "license": "5", "title": "IMG_1670", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/189/449671334_553a5826d9_o.jpg", "secret": "05a9974135", "media": "photo", "latitude": "0", "id": "449671334", "tags": "easter"}, {"datetaken": "2007-04-07 11:22:20", "license": "5", "title": "IMG_1673", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/225/449681505_cd97fa1fea_o.jpg", "secret": "258c7346fd", "media": "photo", "latitude": "0", "id": "449681505", "tags": "easter"}, {"datetaken": "2007-04-07 11:22:26", "license": "5", "title": "IMG_1674", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/189/449682491_df3f1ae41c_o.jpg", "secret": "b7534bce01", "media": "photo", "latitude": "0", "id": "449682491", "tags": "easter"}, {"datetaken": "2007-04-07 11:22:53", "license": "5", "title": "IMG_1676", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/449674698_115f0cc472_o.jpg", "secret": "c19a544bfc", "media": "photo", "latitude": "0", "id": "449674698", "tags": "easter"}, {"datetaken": "2007-04-07 11:23:06", "license": "5", "title": "IMG_1677", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/214/449685417_c43cab4f7b_o.jpg", "secret": "babb224e70", "media": "photo", "latitude": "0", "id": "449685417", "tags": "easter"}, {"datetaken": "2007-04-07 11:23:11", "license": "5", "title": "IMG_1678", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/232/449677426_d6da7bba95_o.jpg", "secret": "54bb1a8916", "media": "photo", "latitude": "0", "id": "449677426", "tags": "easter"}, {"datetaken": "2007-04-07 11:23:49", "license": "5", "title": "IMG_1680", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/244/449688395_d736bb44b9_o.jpg", "secret": "3a564776a6", "media": "photo", "latitude": "0", "id": "449688395", "tags": "easter"}, {"datetaken": "2007-04-07 11:24:04", "license": "5", "title": "IMG_1682", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/243/449680384_e83cfafa2c_o.jpg", "secret": "21ec5bc036", "media": "photo", "latitude": "0", "id": "449680384", "tags": "easter"}, {"datetaken": "2007-04-07 11:24:11", "license": "5", "title": "IMG_1683", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/230/449691013_836a8ecb8b_o.jpg", "secret": "2b01c93fed", "media": "photo", "latitude": "0", "id": "449691013", "tags": "easter"}, {"datetaken": "2007-04-07 11:25:01", "license": "5", "title": "IMG_1686", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/245/449682930_2faa44f437_o.jpg", "secret": "70565f4f16", "media": "photo", "latitude": "0", "id": "449682930", "tags": "easter"}, {"datetaken": "2007-04-07 11:26:35", "license": "5", "title": "IMG_1690", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/219/449684318_84f9c8d8d4_o.jpg", "secret": "4a11590108", "media": "photo", "latitude": "0", "id": "449684318", "tags": "easter"}, {"datetaken": "2007-04-07 11:27:27", "license": "5", "title": "IMG_1692", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/199/449695439_2cf38b2fb9_o.jpg", "secret": "89c154322d", "media": "photo", "latitude": "0", "id": "449695439", "tags": "easter"}, {"datetaken": "2007-04-07 11:28:52", "license": "5", "title": "IMG_1697", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/170/449687026_3caaba885c_o.jpg", "secret": "123cf30f37", "media": "photo", "latitude": "0", "id": "449687026", "tags": "easter"}, {"datetaken": "2007-04-07 11:29:11", "license": "5", "title": "IMG_1698", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/203/449697913_cf7cfb6ae3_o.jpg", "secret": "b3a12077ff", "media": "photo", "latitude": "0", "id": "449697913", "tags": "easter"}, {"datetaken": "2007-04-07 11:29:26", "license": "5", "title": "IMG_1699", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/242/449699063_2570c14e03_o.jpg", "secret": "9928942040", "media": "photo", "latitude": "0", "id": "449699063", "tags": "easter"}, {"datetaken": "2007-04-07 11:29:47", "license": "5", "title": "IMG_1700", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/236/449700695_dd1e8809f8_o.jpg", "secret": "5b65439976", "media": "photo", "latitude": "0", "id": "449700695", "tags": "easter"}, {"datetaken": "2007-04-07 11:37:11", "license": "5", "title": "IMG_1705", "text": "", "album_id": "72157600054101036", "longitude": "0", "url_o": "https://farm1.staticflickr.com/171/449692528_69e2ac3848_o.jpg", "secret": "020f3ca5ca", "media": "photo", "latitude": "0", "id": "449692528", "tags": "easter"}, {"datetaken": "2007-04-07 15:08:43", "license": "5", "title": "DSC02974", "text": "", "album_id": "72157600054176148", "longitude": "0", "url_o": "https://farm1.staticflickr.com/243/449744933_ce083e1717_o.jpg", "secret": "88411f7a9c", "media": "photo", "latitude": "0", "id": "449744933", "tags": "easter greenpoint wielkanoc ozonepark wielkanocwnowymjorku"}, {"datetaken": "2007-04-07 15:09:02", "license": "5", "title": "DSC02972", "text": "", "album_id": "72157600054176148", "longitude": "0", "url_o": "https://farm1.staticflickr.com/189/449745271_f5a8ef1561_o.jpg", "secret": "1ff6a36429", "media": "photo", "latitude": "0", "id": "449745271", "tags": "easter greenpoint wielkanoc ozonepark wielkanocwnowymjorku"}, {"datetaken": "2007-04-07 15:09:23", "license": "5", "title": "DSC02969", "text": "", "album_id": "72157600054176148", "longitude": "0", "url_o": "https://farm1.staticflickr.com/238/449745601_56e3a7c5cf_o.jpg", "secret": "901458ed38", "media": "photo", "latitude": "0", "id": "449745601", "tags": "easter greenpoint wielkanoc ozonepark wielkanocwnowymjorku"}, {"datetaken": "2007-04-07 15:09:51", "license": "5", "title": "DSC02968", "text": "", "album_id": "72157600054176148", "longitude": "0", "url_o": "https://farm1.staticflickr.com/211/449746067_2073750e35_o.jpg", "secret": "0cf7246407", "media": "photo", "latitude": "0", "id": "449746067", "tags": "easter greenpoint wielkanoc ozonepark wielkanocwnowymjorku"}, {"datetaken": "2007-04-07 15:10:12", "license": "5", "title": "DSC02965", "text": "", "album_id": "72157600054176148", "longitude": "0", "url_o": "https://farm1.staticflickr.com/237/449736650_570dbb5081_o.jpg", "secret": "7c08ad5260", "media": "photo", "latitude": "0", "id": "449736650", "tags": "easter greenpoint wielkanoc ozonepark wielkanocwnowymjorku"}, {"datetaken": "2007-04-07 15:10:23", "license": "5", "title": "DSC02963", "text": "", "album_id": "72157600054176148", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/449746661_1615fc201f_o.jpg", "secret": "fcfdeb7bff", "media": "photo", "latitude": "0", "id": "449746661", "tags": "easter greenpoint wielkanoc ozonepark wielkanocwnowymjorku"}, {"datetaken": "2007-04-07 15:10:35", "license": "5", "title": "DSC02962", "text": "", "album_id": "72157600054176148", "longitude": "0", "url_o": "https://farm1.staticflickr.com/218/449737090_561688a73b_o.jpg", "secret": "4822355fe4", "media": "photo", "latitude": "0", "id": "449737090", "tags": "easter greenpoint wielkanoc ozonepark wielkanocwnowymjorku"}, {"datetaken": "2007-04-07 15:10:49", "license": "5", "title": "DSC02976", "text": "", "album_id": "72157600054176148", "longitude": "0", "url_o": "https://farm1.staticflickr.com/215/449747123_aaadcf5a58_o.jpg", "secret": "59e6254cf4", "media": "photo", "latitude": "0", "id": "449747123", "tags": "easter greenpoint wielkanoc ozonepark wielkanocwnowymjorku"}, {"datetaken": "2007-04-07 15:11:04", "license": "5", "title": "DSC02981", "text": "", "album_id": "72157600054176148", "longitude": "0", "url_o": "https://farm1.staticflickr.com/181/449737612_17676fe637_o.jpg", "secret": "01e9cce542", "media": "photo", "latitude": "0", "id": "449737612", "tags": "easter greenpoint wielkanoc ozonepark wielkanocwnowymjorku"}, {"datetaken": "2007-04-07 15:11:20", "license": "5", "title": "DSC02980", "text": "", "album_id": "72157600054176148", "longitude": "0", "url_o": "https://farm1.staticflickr.com/210/449737948_575a38118c_o.jpg", "secret": "7bb64e5817", "media": "photo", "latitude": "0", "id": "449737948", "tags": "easter greenpoint wielkanoc ozonepark wielkanocwnowymjorku"}, {"datetaken": "2007-04-07 15:11:30", "license": "5", "title": "DSC02978", "text": "", "album_id": "72157600054176148", "longitude": "0", "url_o": "https://farm1.staticflickr.com/208/449738112_13d9719886_o.jpg", "secret": "3251705fd3", "media": "photo", "latitude": "0", "id": "449738112", "tags": "easter greenpoint wielkanoc ozonepark wielkanocwnowymjorku"}, {"datetaken": "2007-04-07 15:10:33", "license": "3", "title": "P\u00e5skafton", "text": "", "album_id": "72157600054248575", "longitude": "14.605636", "url_o": "https://farm1.staticflickr.com/198/449834359_d95e7872b9_o.jpg", "secret": "c0e6bf44d1", "media": "photo", "latitude": "63.216498", "id": "449834359", "tags": "winter ice easter sweden jetty landing april j\u00e4mtland 2007 \u00d6stersund brygga p\u00e5sk storsj\u00f6n lugnvik p\u00e5skafton"}, {"datetaken": "2007-04-07 15:13:51", "license": "3", "title": "P\u00e5skafton", "text": "", "album_id": "72157600054248575", "longitude": "14.605636", "url_o": "https://farm1.staticflickr.com/195/449836847_7787662df3_o.jpg", "secret": "6a2c5e2ecb", "media": "photo", "latitude": "63.216498", "id": "449836847", "tags": "winter ice easter sweden jetty landing april j\u00e4mtland 2007 \u00d6stersund p\u00e5sk storsj\u00f6n borell lugnvik p\u00e5skafton"}, {"datetaken": "2007-04-07 15:23:02", "license": "3", "title": "P\u00e5skafton", "text": "", "album_id": "72157600054248575", "longitude": "14.605636", "url_o": "https://farm1.staticflickr.com/195/449827530_b549235da4_o.jpg", "secret": "d2f1406715", "media": "photo", "latitude": "63.216498", "id": "449827530", "tags": "winter ice easter sweden april j\u00e4mtland 2007 \u00d6stersund p\u00e5sk storsj\u00f6n lugnvik p\u00e5skafton fr\u00f6s\u00f6berget"}, {"datetaken": "2007-04-07 16:23:09", "license": "3", "title": "P\u00e5skafton", "text": "", "album_id": "72157600054248575", "longitude": "14.605636", "url_o": "https://farm1.staticflickr.com/189/449828710_c75e840ffd_o.jpg", "secret": "e4a16e6315", "media": "photo", "latitude": "63.216498", "id": "449828710", "tags": "easter sweden april j\u00e4mtland 2007 \u00d6stersund p\u00e5sk borell lugnvik p\u00e5skafton"}, {"datetaken": "2007-04-07 17:10:27", "license": "3", "title": "P\u00e5skafton", "text": "", "album_id": "72157600054248575", "longitude": "14.605636", "url_o": "https://farm1.staticflickr.com/247/449845527_8eb5fa0a94_o.jpg", "secret": "9ea7fef933", "media": "photo", "latitude": "63.216498", "id": "449845527", "tags": "easter sweden april j\u00e4mtland 2007 \u00d6stersund p\u00e5sk borell lugnvik p\u00e5skafton"}, {"datetaken": "2007-04-07 17:46:58", "license": "3", "title": "P\u00e5skafton", "text": "", "album_id": "72157600054248575", "longitude": "14.605636", "url_o": "https://farm1.staticflickr.com/228/449849691_3c6d9576f3_o.jpg", "secret": "8fc874d1cf", "media": "photo", "latitude": "63.216498", "id": "449849691", "tags": "easter sweden april j\u00e4mtland 2007 \u00d6stersund p\u00e5sk lugnvik p\u00e5skafton"}, {"datetaken": "2007-04-07 17:49:59", "license": "3", "title": "P\u00e5skafton", "text": "", "album_id": "72157600054248575", "longitude": "14.605636", "url_o": "https://farm1.staticflickr.com/173/449839374_3113ffdfe5_o.jpg", "secret": "1a04c0432a", "media": "photo", "latitude": "63.216498", "id": "449839374", "tags": "easter sweden april j\u00e4mtland 2007 \u00d6stersund p\u00e5sk borell lugnvik p\u00e5skafton"}, {"datetaken": "2007-04-07 17:51:52", "license": "3", "title": "P\u00e5skafton", "text": "", "album_id": "72157600054248575", "longitude": "14.605636", "url_o": "https://farm1.staticflickr.com/186/449852665_746d2c1369_o.jpg", "secret": "4f70cc1d4f", "media": "photo", "latitude": "63.216498", "id": "449852665", "tags": "winter ice easter sweden jetty landing april j\u00e4mtland 2007 \u00d6stersund brygga p\u00e5sk storsj\u00f6n lugnvik p\u00e5skafton"}, {"datetaken": "2007-04-07 18:26:41", "license": "3", "title": "P\u00e5skafton", "text": "", "album_id": "72157600054248575", "longitude": "14.605636", "url_o": "https://farm1.staticflickr.com/192/449843952_9b19345e61_o.jpg", "secret": "35e2b2df54", "media": "photo", "latitude": "63.216498", "id": "449843952", "tags": "easter sweden april 2007 \u00d6stersund p\u00e5sk borell lugnvik p\u00e5skafton"}, {"datetaken": "2007-04-07 18:54:56", "license": "3", "title": "P\u00e5skafton", "text": "", "album_id": "72157600054248575", "longitude": "14.605636", "url_o": "https://farm1.staticflickr.com/202/449860225_ebec54e726_o.jpg", "secret": "6a61512714", "media": "photo", "latitude": "63.216498", "id": "449860225", "tags": "easter sweden april j\u00e4mtland 2007 \u00d6stersund p\u00e5sk lugnvik p\u00e5skafton"}, {"datetaken": "2007-02-07 10:56:26", "license": "2", "title": "Primiive Heart Tree on Spool", "text": "", "album_id": "72157594524008673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/383477920_bc81c25943_o.jpg", "secret": "bc81c25943", "media": "photo", "latitude": "0", "id": "383477920", "tags": "irishroseprims"}, {"datetaken": "2007-02-07 10:59:58", "license": "2", "title": "Primitive Wool Heart Make Do Plain", "text": "", "album_id": "72157594524008673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/383388415_cede7d97dc_o.jpg", "secret": "cede7d97dc", "media": "photo", "latitude": "0", "id": "383388415", "tags": "love wool make felted do heart valentine prim primitive irishroseprims"}, {"datetaken": "2007-02-07 11:01:19", "license": "2", "title": "Watch Face Pin", "text": "", "album_id": "72157594524008673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/383388418_5d25b206aa_o.jpg", "secret": "5d25b206aa", "media": "photo", "latitude": "0", "id": "383388418", "tags": "shells clock gold handmade watch lapelpin irishroseprims"}, {"datetaken": "2007-02-07 11:04:22", "license": "2", "title": "Primitive Wool Heart Make Do with Pin", "text": "", "album_id": "72157594524008673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/156/383388412_090a610eb2_o.jpg", "secret": "090a610eb2", "media": "photo", "latitude": "0", "id": "383388412", "tags": "love wool felted heart time valentine primitive irishroseprims"}, {"datetaken": "2007-02-07 11:06:31", "license": "2", "title": "Primitive Heart Pin Cushion Front 3", "text": "", "album_id": "72157594524008673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/383477921_a47f117231_o.jpg", "secret": "a47f117231", "media": "photo", "latitude": "0", "id": "383477921", "tags": "irishroseprims"}, {"datetaken": "2007-02-07 11:06:40", "license": "2", "title": "Primitive Heart Pin Cushion Front 2", "text": "", "album_id": "72157594524008673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/383388424_3e91bc4518_o.jpg", "secret": "3e91bc4518", "media": "photo", "latitude": "0", "id": "383388424", "tags": "love wool interestingness heart sewing craft felt valentine explore stitching pincushion crafty prim primitive interestingness446 i500 makedo explore446 irishroseprims"}, {"datetaken": "2007-02-07 11:07:04", "license": "2", "title": "Primitive Heart Pin Cushion Front 1", "text": "", "album_id": "72157594524008673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/154/383477924_a2fcc850f9_o.jpg", "secret": "a2fcc850f9", "media": "photo", "latitude": "0", "id": "383477924", "tags": "irishroseprims"}, {"datetaken": "2007-02-07 11:09:13", "license": "2", "title": "Prim HandmadeTrio", "text": "", "album_id": "72157594524008673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/83/383388420_1acd94ee71_o.jpg", "secret": "1acd94ee71", "media": "photo", "latitude": "0", "id": "383388420", "tags": "irishroseprims"}, {"datetaken": "2007-02-07 11:14:21", "license": "2", "title": "Primitive Heart Pin Cushion Back", "text": "", "album_id": "72157594524008673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/133/383388427_c8bcdecf10_o.jpg", "secret": "c8bcdecf10", "media": "photo", "latitude": "0", "id": "383388427", "tags": "star heart embroidery 1857 prims irishroseprims primitivemakedo"}, {"datetaken": "2007-02-07 11:31:57", "license": "2", "title": "Hand Cut Aged Heart Hang Tag", "text": "", "album_id": "72157594524008673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/383477926_cfbc32ad4d_o.jpg", "secret": "cfbc32ad4d", "media": "photo", "latitude": "0", "id": "383477926", "tags": "irishroseprims"}, {"datetaken": "2007-02-07 11:34:09", "license": "2", "title": "Primitive Cow Hang Tags", "text": "", "album_id": "72157594524008673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/183/383477928_c8b1561f9d_o.jpg", "secret": "c8b1561f9d", "media": "photo", "latitude": "0", "id": "383477928", "tags": "irishroseprims"}, {"datetaken": "2007-02-07 11:36:11", "license": "2", "title": "Black Heart Aged Hang Tag", "text": "", "album_id": "72157594524008673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/125/383477929_b69a82cb1b_o.jpg", "secret": "b69a82cb1b", "media": "photo", "latitude": "0", "id": "383477929", "tags": "irishroseprims"}, {"datetaken": "2007-02-07 11:37:37", "license": "2", "title": "Primitive Brown Heart Hang Tag", "text": "", "album_id": "72157594524008673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/383513246_bdbc5c3f52_o.jpg", "secret": "bdbc5c3f52", "media": "photo", "latitude": "0", "id": "383513246", "tags": "irishroseprims"}, {"datetaken": "2007-02-07 11:40:03", "license": "2", "title": "Prim Little Easter Tags", "text": "", "album_id": "72157594524008673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/383513247_c3448a0849_o.jpg", "secret": "c3448a0849", "media": "photo", "latitude": "0", "id": "383513247", "tags": "irishroseprims"}, {"datetaken": "2007-02-07 11:40:58", "license": "2", "title": "Prim Little Gardening Tags", "text": "", "album_id": "72157594524008673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/129/383513250_afac495e96_o.jpg", "secret": "afac495e96", "media": "photo", "latitude": "0", "id": "383513250", "tags": "irishroseprims"}, {"datetaken": "2007-02-07 11:42:45", "license": "2", "title": "Prim Aged Tags Set 2", "text": "", "album_id": "72157594524008673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/159/383513258_d154f548e3_o.jpg", "secret": "d154f548e3", "media": "photo", "latitude": "0", "id": "383513258", "tags": "irishroseprims"}, {"datetaken": "2007-02-07 11:43:32", "license": "2", "title": "Prim Aged Tags Set 1", "text": "", "album_id": "72157594524008673", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/383513265_1d13232890_o.jpg", "secret": "1d13232890", "media": "photo", "latitude": "0", "id": "383513265", "tags": "irishroseprims"}, {"datetaken": "2005-03-27 13:19:51", "license": "2", "title": "Mom", "text": "", "album_id": "72057594078189875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/109945246_2cc6809cd9_o.jpg", "secret": "2cc6809cd9", "media": "photo", "latitude": "0", "id": "109945246", "tags": "easter mom marissa"}, {"datetaken": "2005-03-27 15:04:51", "license": "2", "title": "Alyssa and Lola", "text": "", "album_id": "72057594078189875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/109949829_e9f583379e_o.jpg", "secret": "e9f583379e", "media": "photo", "latitude": "0", "id": "109949829", "tags": "marina easter alyssa lola"}, {"datetaken": "2005-03-27 15:06:55", "license": "2", "title": "Easter Egg Hunt Group", "text": "", "album_id": "72057594078189875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/109950727_9289381add_o.jpg", "secret": "9289381add", "media": "photo", "latitude": "0", "id": "109950727", "tags": "marina easter virginia alyssa lola angelita josalynn jerikah auntievirgie auntielita"}, {"datetaken": "2005-03-27 15:06:56", "license": "2", "title": "Easter Egg Hunt Group", "text": "", "album_id": "72057594078189875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/109951172_410ad15e40_o.jpg", "secret": "410ad15e40", "media": "photo", "latitude": "0", "id": "109951172", "tags": "marina easter virginia alyssa lola angelita josalynn jerikah auntievirgie auntielita"}, {"datetaken": "2005-03-27 15:06:56", "license": "2", "title": "Easter Egg Hunt Group", "text": "", "album_id": "72057594078189875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/109951727_38cc171c2e_o.jpg", "secret": "38cc171c2e", "media": "photo", "latitude": "0", "id": "109951727", "tags": "marina easter virginia alyssa lola angelita josalynn jerikah auntievirgie auntielita"}, {"datetaken": "2005-03-27 15:24:13", "license": "2", "title": "Tricia's Birthday Cake", "text": "", "album_id": "72057594078189875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/43/109953550_946e3a9f96_o.jpg", "secret": "946e3a9f96", "media": "photo", "latitude": "0", "id": "109953550", "tags": "cakes easter triciasbirthday"}, {"datetaken": "2005-03-27 15:26:02", "license": "2", "title": "Tricia's Birthday Cake", "text": "", "album_id": "72057594078189875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/109953908_001851bbd0_o.jpg", "secret": "001851bbd0", "media": "photo", "latitude": "0", "id": "109953908", "tags": "cakes easter alyssa jennifer jenn tricia triciasbirthday jerikah"}, {"datetaken": "2005-03-27 15:26:04", "license": "2", "title": "Tricia's Birthday Cake", "text": "", "album_id": "72057594078189875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/109954315_de146533f3_o.jpg", "secret": "de146533f3", "media": "photo", "latitude": "0", "id": "109954315", "tags": "cakes easter alyssa jennifer jenn tricia triciasbirthday jerikah"}, {"datetaken": "2005-03-27 15:26:20", "license": "2", "title": "Derrick Eats", "text": "", "album_id": "72057594078189875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/41/109954607_9f0289c062_o.jpg", "secret": "9f0289c062", "media": "photo", "latitude": "0", "id": "109954607", "tags": "easter albert derrick"}, {"datetaken": "2005-03-27 15:28:23", "license": "2", "title": "Husky", "text": "", "album_id": "72057594078189875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/109954965_a7c4966010_o.jpg", "secret": "a7c4966010", "media": "photo", "latitude": "0", "id": "109954965", "tags": "easter husky"}, {"datetaken": "2005-03-27 15:34:08", "license": "2", "title": "Mari and David", "text": "", "album_id": "72057594078189875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/109955369_f503fc5d08_o.jpg", "secret": "f503fc5d08", "media": "photo", "latitude": "0", "id": "109955369", "tags": "david easter mari"}, {"datetaken": "2005-03-27 17:07:01", "license": "2", "title": "Derrick Sings", "text": "", "album_id": "72057594078189875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/42/109955697_a1068f0029_o.jpg", "secret": "a1068f0029", "media": "photo", "latitude": "0", "id": "109955697", "tags": "easter derrick"}, {"datetaken": "2005-03-27 18:07:50", "license": "2", "title": "Jos and Simon", "text": "", "album_id": "72057594078189875", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/109956101_6adc46f363_o.jpg", "secret": "6adc46f363", "media": "photo", "latitude": "0", "id": "109956101", "tags": "simon easter josalynn"}, {"datetaken": "2011-03-07 16:55:23", "license": "4", "title": "DSC01140", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5053/5510200609_6bab45fae4_o.jpg", "secret": "4240f04321", "media": "photo", "latitude": "0", "id": "5510200609", "tags": ""}, {"datetaken": "2011-03-07 17:05:39", "license": "4", "title": "DSC01150", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5131/5510802148_f424e16fdd_o.jpg", "secret": "f54eaa6e46", "media": "photo", "latitude": "0", "id": "5510802148", "tags": ""}, {"datetaken": "2011-03-07 17:06:46", "license": "4", "title": "DSC01152", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5136/5510802362_c357a366b6_o.jpg", "secret": "59888fc327", "media": "photo", "latitude": "0", "id": "5510802362", "tags": ""}, {"datetaken": "2011-03-07 17:58:40", "license": "4", "title": "DSC01159", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5136/5510802524_1a54713d6e_o.jpg", "secret": "1f639b5120", "media": "photo", "latitude": "0", "id": "5510802524", "tags": ""}, {"datetaken": "2011-03-07 18:38:45", "license": "4", "title": "DSC01175", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5056/5510201277_e031c97532_o.jpg", "secret": "606143100f", "media": "photo", "latitude": "0", "id": "5510201277", "tags": ""}, {"datetaken": "2011-03-07 19:32:31", "license": "4", "title": "DSC01177", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5017/5510802808_aba29079f9_o.jpg", "secret": "c7b29e2a9d", "media": "photo", "latitude": "0", "id": "5510802808", "tags": ""}, {"datetaken": "2011-03-07 19:59:17", "license": "4", "title": "DSC01185", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5257/5510201567_f96dd8a492_o.jpg", "secret": "5417905976", "media": "photo", "latitude": "0", "id": "5510201567", "tags": ""}, {"datetaken": "2011-03-07 19:59:32", "license": "4", "title": "DSC01187", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5176/5510201835_20c6656610_o.jpg", "secret": "64146ca11b", "media": "photo", "latitude": "0", "id": "5510201835", "tags": ""}, {"datetaken": "2011-03-07 20:01:02", "license": "4", "title": "DSC01190", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5012/5510803374_c420e8e5de_o.jpg", "secret": "557a77fa28", "media": "photo", "latitude": "0", "id": "5510803374", "tags": ""}, {"datetaken": "2011-03-07 20:52:59", "license": "4", "title": "DSC01192", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5176/5510202059_07a888db27_o.jpg", "secret": "7ff0038f32", "media": "photo", "latitude": "0", "id": "5510202059", "tags": ""}, {"datetaken": "2011-03-08 08:52:19", "license": "4", "title": "DSC01199", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5510202209_9c1a310956_o.jpg", "secret": "c4057959d2", "media": "photo", "latitude": "0", "id": "5510202209", "tags": ""}, {"datetaken": "2011-03-08 09:35:37", "license": "4", "title": "DSC01215", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5220/5510804100_712ca595fe_o.jpg", "secret": "19eba41142", "media": "photo", "latitude": "0", "id": "5510804100", "tags": ""}, {"datetaken": "2011-03-08 09:35:45", "license": "4", "title": "DSC01216", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5510804214_6a7a1cbbe7_o.jpg", "secret": "0eb520897b", "media": "photo", "latitude": "0", "id": "5510804214", "tags": ""}, {"datetaken": "2011-03-08 09:44:01", "license": "4", "title": "DSC01221", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5060/5510203025_9a4957df25_o.jpg", "secret": "bf250ba94d", "media": "photo", "latitude": "0", "id": "5510203025", "tags": ""}, {"datetaken": "2011-03-08 10:10:23", "license": "4", "title": "DSC01228", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5295/5510804750_088ef69fdb_o.jpg", "secret": "0eb5b0eb79", "media": "photo", "latitude": "0", "id": "5510804750", "tags": ""}, {"datetaken": "2011-03-08 10:22:55", "license": "4", "title": "DSC01231", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5178/5510203353_fef97bd71a_o.jpg", "secret": "08c93daef5", "media": "photo", "latitude": "0", "id": "5510203353", "tags": ""}, {"datetaken": "2011-03-08 10:25:54", "license": "4", "title": "DSC01234", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5510805038_023d9af0f7_o.jpg", "secret": "ff49a034f3", "media": "photo", "latitude": "0", "id": "5510805038", "tags": ""}, {"datetaken": "2011-03-08 10:27:54", "license": "4", "title": "DSC01240", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5098/5510805236_93d377c090_o.jpg", "secret": "323624d1f5", "media": "photo", "latitude": "0", "id": "5510805236", "tags": ""}, {"datetaken": "2011-03-08 10:28:04", "license": "4", "title": "DSC01241", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5297/5510203871_d402b174cf_o.jpg", "secret": "2eb3fa9505", "media": "photo", "latitude": "0", "id": "5510203871", "tags": ""}, {"datetaken": "2011-03-08 10:29:58", "license": "4", "title": "DSC01245", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5297/5510204061_3a76cfe07e_o.jpg", "secret": "dbb0fa1efc", "media": "photo", "latitude": "0", "id": "5510204061", "tags": ""}, {"datetaken": "2011-03-08 10:33:00", "license": "4", "title": "DSC01249", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5052/5510204269_b4d22062a9_o.jpg", "secret": "8c727384b3", "media": "photo", "latitude": "0", "id": "5510204269", "tags": ""}, {"datetaken": "2011-03-08 10:39:25", "license": "4", "title": "DSC01256", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5011/5510204615_5f5bf5e96e_o.jpg", "secret": "368df23114", "media": "photo", "latitude": "0", "id": "5510204615", "tags": ""}, {"datetaken": "2011-03-08 10:39:33", "license": "4", "title": "DSC01262", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5052/5510204847_fde4a4ebc6_o.jpg", "secret": "1694ec1c73", "media": "photo", "latitude": "0", "id": "5510204847", "tags": ""}, {"datetaken": "2011-03-08 10:41:44", "license": "4", "title": "DSC01263", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5053/5510806426_749852f2b9_o.jpg", "secret": "ca21dd9565", "media": "photo", "latitude": "0", "id": "5510806426", "tags": ""}, {"datetaken": "2011-03-08 10:44:20", "license": "4", "title": "DSC01281", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5214/5510205257_ef439b3df1_o.jpg", "secret": "fbdcaf73ff", "media": "photo", "latitude": "0", "id": "5510205257", "tags": ""}, {"datetaken": "2011-03-08 10:48:30", "license": "4", "title": "DSC01293", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5139/5510806816_d195b2316f_o.jpg", "secret": "874b41a6db", "media": "photo", "latitude": "0", "id": "5510806816", "tags": ""}, {"datetaken": "2011-03-08 11:46:02", "license": "4", "title": "DSC01295", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5255/5510205597_78a15d6489_o.jpg", "secret": "531414cbac", "media": "photo", "latitude": "0", "id": "5510205597", "tags": ""}, {"datetaken": "2011-03-08 13:09:04", "license": "4", "title": "DSC01301", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5215/5510205751_5612db24d8_o.jpg", "secret": "9bace66179", "media": "photo", "latitude": "0", "id": "5510205751", "tags": ""}, {"datetaken": "2011-03-08 13:13:20", "license": "4", "title": "DSC01307", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5171/5510807312_3209b88a0d_o.jpg", "secret": "c72df681e4", "media": "photo", "latitude": "0", "id": "5510807312", "tags": ""}, {"datetaken": "2011-03-08 13:15:46", "license": "4", "title": "DSC01308", "text": "", "album_id": "72157626101447711", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5094/5510206123_dccf2ba566_o.jpg", "secret": "a6b78e2ef9", "media": "photo", "latitude": "0", "id": "5510206123", "tags": ""}, {"datetaken": "2007-04-08 17:34:41", "license": "3", "title": "on the beach", "text": "", "album_id": "72157600058403612", "longitude": "0", "url_o": "https://farm1.staticflickr.com/247/452183874_b7b594cfa1_o.jpg", "secret": "1c90d097c7", "media": "photo", "latitude": "0", "id": "452183874", "tags": "beach easter oz koala"}, {"datetaken": "2007-04-08 17:34:52", "license": "3", "title": "on the beach", "text": "", "album_id": "72157600058403612", "longitude": "0", "url_o": "https://farm1.staticflickr.com/169/452199449_5e90d0d499_o.jpg", "secret": "3fbc7d94c2", "media": "photo", "latitude": "0", "id": "452199449", "tags": "beach easter oz koala"}, {"datetaken": "2007-04-08 17:46:34", "license": "3", "title": "sun setting on beach - westbeach, SA", "text": "", "album_id": "72157600058403612", "longitude": "0", "url_o": "https://farm1.staticflickr.com/247/452198831_6ed0d63ba4_o.jpg", "secret": "769b64bee7", "media": "photo", "latitude": "0", "id": "452198831", "tags": "beach easter oz koala"}, {"datetaken": "2007-04-08 17:46:50", "license": "3", "title": ", westbeach SA", "text": "", "album_id": "72157600058403612", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/452198903_342c163d41_o.jpg", "secret": "288055af18", "media": "photo", "latitude": "0", "id": "452198903", "tags": "beach easter oz koala"}, {"datetaken": "2007-04-08 17:47:02", "license": "3", "title": "sleepy", "text": "", "album_id": "72157600058403612", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/452183540_86f289d787_o.jpg", "secret": "ae35011dc1", "media": "photo", "latitude": "0", "id": "452183540", "tags": "beach easter oz koala"}, {"datetaken": "2007-04-09 14:52:24", "license": "3", "title": "Koala 5", "text": "", "album_id": "72157600058403612", "longitude": "0", "url_o": "https://farm1.staticflickr.com/251/452183630_8102b4be62_o.jpg", "secret": "a051198a94", "media": "photo", "latitude": "0", "id": "452183630", "tags": "beach easter oz koala"}, {"datetaken": "2007-04-09 14:53:03", "license": "3", "title": "Koala 4", "text": "", "album_id": "72157600058403612", "longitude": "0", "url_o": "https://farm1.staticflickr.com/236/452183690_32571a8ce0_o.jpg", "secret": "251711e806", "media": "photo", "latitude": "0", "id": "452183690", "tags": "beach easter oz koala"}, {"datetaken": "2007-04-09 14:53:30", "license": "3", "title": "Koala 3", "text": "", "album_id": "72157600058403612", "longitude": "0", "url_o": "https://farm1.staticflickr.com/169/452183792_8c9e0c6949_o.jpg", "secret": "be57c61571", "media": "photo", "latitude": "0", "id": "452183792", "tags": "beach easter oz koala"}, {"datetaken": "2007-04-09 15:20:49", "license": "3", "title": "Koala2", "text": "", "album_id": "72157600058403612", "longitude": "0", "url_o": "https://farm1.staticflickr.com/201/452184056_c3220afc29_o.jpg", "secret": "5abfbc6b5d", "media": "photo", "latitude": "0", "id": "452184056", "tags": "beach easter oz koala"}, {"datetaken": "2007-04-09 15:21:06", "license": "3", "title": "Koala1", "text": "", "album_id": "72157600058403612", "longitude": "0", "url_o": "https://farm1.staticflickr.com/201/452184118_18859769f4_o.jpg", "secret": "3840420f6a", "media": "photo", "latitude": "0", "id": "452184118", "tags": "beach easter oz koala"}, {"datetaken": "2007-04-09 15:24:49", "license": "3", "title": "me and koala", "text": "", "album_id": "72157600058403612", "longitude": "0", "url_o": "https://farm1.staticflickr.com/205/452182938_87317fa4f2_o.jpg", "secret": "23ce04d36c", "media": "photo", "latitude": "0", "id": "452182938", "tags": "beach easter oz koala"}, {"datetaken": "2007-04-09 15:25:19", "license": "3", "title": "Koala 7", "text": "", "album_id": "72157600058403612", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/452183060_d4be2b9096_o.jpg", "secret": "1c712e7856", "media": "photo", "latitude": "0", "id": "452183060", "tags": "beach easter oz koala"}, {"datetaken": "2007-04-09 15:31:09", "license": "3", "title": "funny looking tree!", "text": "", "album_id": "72157600058403612", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/452183242_cc004eb87e_o.jpg", "secret": "3a39252fc3", "media": "photo", "latitude": "0", "id": "452183242", "tags": "beach easter oz koala"}, {"datetaken": "2007-04-09 15:53:21", "license": "3", "title": "Koala 6", "text": "", "album_id": "72157600058403612", "longitude": "0", "url_o": "https://farm1.staticflickr.com/220/452198769_99956f337c_o.jpg", "secret": "8e64a90c9b", "media": "photo", "latitude": "0", "id": "452198769", "tags": "beach easter oz koala"}, {"datetaken": "2007-04-08 13:30:59", "license": "1", "title": "IMG_0670", "text": "", "album_id": "72157600060361468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/452390393_2f13950401_o.jpg", "secret": "ff37efe0c0", "media": "photo", "latitude": "0", "id": "452390393", "tags": "easter 2007 easter2007"}, {"datetaken": "2007-04-08 13:31:36", "license": "1", "title": "IMG_0672", "text": "", "album_id": "72157600060361468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/229/452391877_7ebd1f6067_o.jpg", "secret": "3c31c9e02d", "media": "photo", "latitude": "0", "id": "452391877", "tags": "easter 2007 easter2007"}, {"datetaken": "2007-04-08 13:31:45", "license": "1", "title": "IMG_0673", "text": "", "album_id": "72157600060361468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/226/452392405_94bd804902_o.jpg", "secret": "2a9694d8ce", "media": "photo", "latitude": "0", "id": "452392405", "tags": "easter 2007 easter2007"}, {"datetaken": "2007-04-08 13:34:44", "license": "1", "title": "IMG_0676", "text": "", "album_id": "72157600060361468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/452394805_fb30742c70_o.jpg", "secret": "5eb01a737a", "media": "photo", "latitude": "0", "id": "452394805", "tags": "easter 2007 easter2007"}, {"datetaken": "2007-04-08 13:36:22", "license": "1", "title": "IMG_0677", "text": "", "album_id": "72157600060361468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/247/452395567_ca038112a6_o.jpg", "secret": "07f9e5617a", "media": "photo", "latitude": "0", "id": "452395567", "tags": "easter 2007 easter2007"}, {"datetaken": "2007-04-08 13:36:30", "license": "1", "title": "pasta salad for Easter", "text": "", "album_id": "72157600060361468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/452396285_d9532216e0_o.jpg", "secret": "8ef57ea2ea", "media": "photo", "latitude": "0", "id": "452396285", "tags": "easter 2007 pastasalad easter2007"}, {"datetaken": "2007-04-08 13:41:00", "license": "1", "title": "IMG_0685", "text": "", "album_id": "72157600060361468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/452382594_50af93b163_o.jpg", "secret": "6c26f15000", "media": "photo", "latitude": "0", "id": "452382594", "tags": "easter 2007 easter2007"}, {"datetaken": "2007-04-08 13:41:36", "license": "1", "title": "IMG_0686", "text": "", "album_id": "72157600060361468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/199/452401591_4063522177_o.jpg", "secret": "4adf458cb4", "media": "photo", "latitude": "0", "id": "452401591", "tags": "easter 2007 easter2007"}, {"datetaken": "2007-04-08 13:42:15", "license": "1", "title": "IMG_0687", "text": "", "album_id": "72157600060361468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/228/452402479_e6a6c4c125_o.jpg", "secret": "584de4242f", "media": "photo", "latitude": "0", "id": "452402479", "tags": "easter 2007 easter2007"}, {"datetaken": "2007-04-08 13:42:23", "license": "1", "title": "IMG_0688", "text": "", "album_id": "72157600060361468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/190/452384510_ec619f598f_o.jpg", "secret": "dd7792be87", "media": "photo", "latitude": "0", "id": "452384510", "tags": "easter 2007 easter2007"}, {"datetaken": "2007-04-08 13:42:29", "license": "1", "title": "IMG_0689", "text": "", "album_id": "72157600060361468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/186/452403769_21c6883869_o.jpg", "secret": "73ac7929cb", "media": "photo", "latitude": "0", "id": "452403769", "tags": "easter 2007 easter2007"}, {"datetaken": "2007-04-08 13:58:10", "license": "1", "title": "IMG_0690", "text": "", "album_id": "72157600060361468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/253/452404379_f96cfc815b_o.jpg", "secret": "a416204ad1", "media": "photo", "latitude": "0", "id": "452404379", "tags": "easter 2007 easter2007"}, {"datetaken": "2007-04-08 13:58:20", "license": "1", "title": "IMG_0691", "text": "", "album_id": "72157600060361468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/219/452386616_99621c1d47_o.jpg", "secret": "fb4f8c0aba", "media": "photo", "latitude": "0", "id": "452386616", "tags": "easter 2007 easter2007"}, {"datetaken": "2007-04-08 13:58:26", "license": "1", "title": "IMG_0692", "text": "", "album_id": "72157600060361468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/226/452387544_d2d2731280_o.jpg", "secret": "28cc8f867b", "media": "photo", "latitude": "0", "id": "452387544", "tags": "easter 2007 easter2007"}, {"datetaken": "2007-04-08 13:58:30", "license": "1", "title": "IMG_0693", "text": "", "album_id": "72157600060361468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/218/452406869_6c431dd568_o.jpg", "secret": "fa9cc767f2", "media": "photo", "latitude": "0", "id": "452406869", "tags": "easter 2007 easter2007"}, {"datetaken": "2007-04-08 13:58:37", "license": "1", "title": "IMG_0694", "text": "", "album_id": "72157600060361468", "longitude": "0", "url_o": "https://farm1.staticflickr.com/223/452389170_42708addb2_o.jpg", "secret": "721925db7c", "media": "photo", "latitude": "0", "id": "452389170", "tags": "easter 2007 easter2007"}, {"datetaken": "2007-04-07 20:43:47", "license": "1", "title": "DSC00009.jpg", "text": "", "album_id": "72157600059377320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/220/452761880_bf57cf9959_o.jpg", "secret": "207d93c743", "media": "photo", "latitude": "0", "id": "452761880", "tags": "easter boroo"}, {"datetaken": "2007-04-08 11:59:21", "license": "1", "title": "DSC00012.jpg", "text": "", "album_id": "72157600059377320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/192/452780853_9853d942a9_o.jpg", "secret": "c325b0113f", "media": "photo", "latitude": "0", "id": "452780853", "tags": "easter boroo"}, {"datetaken": "2007-04-08 13:29:56", "license": "1", "title": "IMG_1939.JPG", "text": "", "album_id": "72157600059377320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/452757571_d9fcd42f71_o.jpg", "secret": "78a35e68cf", "media": "photo", "latitude": "0", "id": "452757571", "tags": "easter devils mcwilliams njdevils boroo"}, {"datetaken": "2007-04-08 13:30:18", "license": "1", "title": "IMG_1940.JPG", "text": "", "album_id": "72157600059377320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/187/452757689_001fd26659_o.jpg", "secret": "e4cd61c061", "media": "photo", "latitude": "0", "id": "452757689", "tags": "easter devils mcwilliams njdevils boroo"}, {"datetaken": "2007-04-08 15:19:49", "license": "1", "title": "IMG_1941.JPG", "text": "", "album_id": "72157600059377320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/251/452757775_673185b4b6_o.jpg", "secret": "d9e44b576d", "media": "photo", "latitude": "0", "id": "452757775", "tags": "easter devils mcwilliams njdevils boroo"}, {"datetaken": "2007-04-08 15:19:55", "license": "1", "title": "IMG_1942.JPG", "text": "", "album_id": "72157600059377320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/247/452738754_9c1081a1b0_o.jpg", "secret": "4185028b08", "media": "photo", "latitude": "0", "id": "452738754", "tags": "easter devils mcwilliams njdevils boroo"}, {"datetaken": "2007-04-08 15:20:02", "license": "1", "title": "IMG_1943.JPG", "text": "", "album_id": "72157600059377320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/217/452757961_2ff0210a22_o.jpg", "secret": "d447d50dd7", "media": "photo", "latitude": "0", "id": "452757961", "tags": "easter devils mcwilliams njdevils boroo"}, {"datetaken": "2007-04-08 15:20:34", "license": "1", "title": "IMG_1944.JPG", "text": "", "album_id": "72157600059377320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/452758069_9854954220_o.jpg", "secret": "85a59f12b2", "media": "photo", "latitude": "0", "id": "452758069", "tags": "easter devils mcwilliams njdevils boroo"}, {"datetaken": "2007-04-08 15:20:44", "license": "1", "title": "IMG_1945.JPG", "text": "", "album_id": "72157600059377320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/215/452758143_95e518f87b_o.jpg", "secret": "e27b4c76ae", "media": "photo", "latitude": "0", "id": "452758143", "tags": "easter devils mcwilliams njdevils boroo"}, {"datetaken": "2007-04-08 15:22:23", "license": "1", "title": "IMG_1946.JPG", "text": "", "album_id": "72157600059377320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/247/452739066_e454448dd1_o.jpg", "secret": "4428ea5a8c", "media": "photo", "latitude": "0", "id": "452739066", "tags": "easter devils mcwilliams njdevils boroo"}, {"datetaken": "2007-04-08 16:13:20", "license": "1", "title": "IMG_1948.JPG", "text": "", "album_id": "72157600059377320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/190/452758421_dd3fb71bb6_o.jpg", "secret": "27e83951be", "media": "photo", "latitude": "0", "id": "452758421", "tags": "easter devils mcwilliams njdevils boroo"}, {"datetaken": "2007-04-08 16:13:33", "license": "1", "title": "IMG_1949.JPG", "text": "", "album_id": "72157600059377320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/215/452758529_71764746f8_o.jpg", "secret": "14292e1f52", "media": "photo", "latitude": "0", "id": "452758529", "tags": "easter devils mcwilliams njdevils boroo"}, {"datetaken": "2007-04-08 16:39:43", "license": "1", "title": "IMG_1950.JPG", "text": "", "album_id": "72157600059377320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/189/452739334_cde029f74b_o.jpg", "secret": "214abdb1b8", "media": "photo", "latitude": "0", "id": "452739334", "tags": "easter devils mcwilliams njdevils boroo"}, {"datetaken": "2007-04-08 16:39:54", "license": "1", "title": "IMG_1951.JPG", "text": "", "album_id": "72157600059377320", "longitude": "0", "url_o": "https://farm1.staticflickr.com/230/452739438_c88b8d4aa8_o.jpg", "secret": "25bf830374", "media": "photo", "latitude": "0", "id": "452739438", "tags": "easter devils mcwilliams njdevils boroo"}, {"datetaken": "2007-04-08 13:56:37", "license": "2", "title": "The Countryside", "text": "", "album_id": "72157600059516022", "longitude": "0", "url_o": "https://farm1.staticflickr.com/245/452778841_19a17d996c_o.jpg", "secret": "a1f5de1d16", "media": "photo", "latitude": "0", "id": "452778841", "tags": "blue sky green countryside spring district derbyshire peak hills 2007"}, {"datetaken": "2007-04-08 14:21:02", "license": "2", "title": "Derbyshire", "text": "", "album_id": "72157600059516022", "longitude": "0", "url_o": "https://farm1.staticflickr.com/188/452762442_d72d2d678d_o.jpg", "secret": "34b972d0bb", "media": "photo", "latitude": "0", "id": "452762442", "tags": "blue sky green countryside spring district derbyshire peak hills 2007"}, {"datetaken": "2007-04-08 14:21:05", "license": "2", "title": "Derbyshire", "text": "", "album_id": "72157600059516022", "longitude": "0", "url_o": "https://farm1.staticflickr.com/246/452782777_e2deb8e0ba_o.jpg", "secret": "b82bbcca00", "media": "photo", "latitude": "0", "id": "452782777", "tags": "blue sky green countryside spring district derbyshire peak hills 2007"}, {"datetaken": "2007-04-08 14:27:07", "license": "2", "title": "The Countryside", "text": "", "album_id": "72157600059516022", "longitude": "-1.625289", "url_o": "https://farm1.staticflickr.com/223/452783741_6a2237c831_o.jpg", "secret": "af0c0e94a4", "media": "photo", "latitude": "53.188499", "id": "452783741", "tags": "blue sky green countryside district derbyshire peak hills 2007"}, {"datetaken": "2007-04-08 14:44:58", "license": "2", "title": "The Plantation", "text": "", "album_id": "72157600059516022", "longitude": "-1.625289", "url_o": "https://farm1.staticflickr.com/191/452765968_69693375f1_o.jpg", "secret": "d979563eb7", "media": "photo", "latitude": "53.188499", "id": "452765968", "tags": "2007"}, {"datetaken": "2007-04-08 15:08:21", "license": "2", "title": "Chatsworth", "text": "", "album_id": "72157600059516022", "longitude": "-1.617736", "url_o": "https://farm1.staticflickr.com/228/452786217_96e6543b60_o.jpg", "secret": "93b212378b", "media": "photo", "latitude": "53.224329", "id": "452786217", "tags": "park district derbyshire peak chatsworth 2007"}, {"datetaken": "2007-04-08 15:10:54", "license": "2", "title": "Adrian", "text": "", "album_id": "72157600059516022", "longitude": "-1.617736", "url_o": "https://farm1.staticflickr.com/227/452787247_39f491be48_o.jpg", "secret": "5ee3600690", "media": "photo", "latitude": "53.224329", "id": "452787247", "tags": "park district derbyshire peak chatsworth 2007"}, {"datetaken": "2007-04-08 15:17:16", "license": "2", "title": "Adrian & Gav", "text": "", "album_id": "72157600059516022", "longitude": "-1.617736", "url_o": "https://farm1.staticflickr.com/181/452770360_34cf2804ef_o.jpg", "secret": "7b19f807b5", "media": "photo", "latitude": "53.224329", "id": "452770360", "tags": "park district derbyshire peak chatsworth 2007"}, {"datetaken": "2007-04-08 15:17:33", "license": "2", "title": "What's so funny...", "text": "", "album_id": "72157600059516022", "longitude": "-1.617736", "url_o": "https://farm1.staticflickr.com/240/452772902_d6a75a157a_o.jpg", "secret": "cca6e451f2", "media": "photo", "latitude": "53.224329", "id": "452772902", "tags": "park district derbyshire peak chatsworth 2007"}, {"datetaken": "2007-04-08 15:18:18", "license": "2", "title": "Chatsworth", "text": "", "album_id": "72157600059516022", "longitude": "-1.617736", "url_o": "https://farm1.staticflickr.com/212/452775452_a746528c81_o.jpg", "secret": "2575b3a371", "media": "photo", "latitude": "53.224329", "id": "452775452", "tags": "park river district derwent derbyshire peak chatsworth weir 2007"}, {"datetaken": "2007-04-08 15:19:50", "license": "2", "title": "Chatsworth Trees", "text": "", "album_id": "72157600059516022", "longitude": "-1.617736", "url_o": "https://farm1.staticflickr.com/240/452778364_8946786bcb_o.jpg", "secret": "9069181eeb", "media": "photo", "latitude": "53.224329", "id": "452778364", "tags": "park district derbyshire peak chatsworth 2007"}, {"datetaken": "2007-04-08 15:23:05", "license": "2", "title": "Dewent River at Chatsworth Park", "text": "", "album_id": "72157600059516022", "longitude": "-1.617736", "url_o": "https://farm1.staticflickr.com/236/452800829_f5eb444166_o.jpg", "secret": "e3ef576bb8", "media": "photo", "latitude": "53.224329", "id": "452800829", "tags": "park district derbyshire peak chatsworth 2007"}, {"datetaken": "2007-04-08 15:30:57", "license": "2", "title": "Chatsworth House", "text": "", "album_id": "72157600059516022", "longitude": "-1.617736", "url_o": "https://farm1.staticflickr.com/193/452802667_9cd94cacf9_o.jpg", "secret": "c47eaa2790", "media": "photo", "latitude": "53.224329", "id": "452802667", "tags": "park district derbyshire peak chatsworth 2007"}, {"datetaken": "2007-04-08 15:55:11", "license": "2", "title": "Converted Stables at Chatsworth", "text": "", "album_id": "72157600059516022", "longitude": "-1.613616", "url_o": "https://farm1.staticflickr.com/177/452806249_6bb9727d40_o.jpg", "secret": "943112f776", "media": "photo", "latitude": "53.227309", "id": "452806249", "tags": "park sky clouds district derbyshire peak chatsworth 2007"}, {"datetaken": "2007-04-08 15:55:21", "license": "2", "title": "Converted Stables at Chatsworth", "text": "", "album_id": "72157600059516022", "longitude": "-1.613616", "url_o": "https://farm1.staticflickr.com/221/452809167_4bd15a8271_o.jpg", "secret": "522645acf5", "media": "photo", "latitude": "53.227309", "id": "452809167", "tags": "park sky clouds district derbyshire peak chatsworth 2007"}, {"datetaken": "2007-04-08 15:58:41", "license": "2", "title": "Converted Stables at Chatsworth", "text": "", "album_id": "72157600059516022", "longitude": "-1.613616", "url_o": "https://farm1.staticflickr.com/214/452812373_c0959140b4_o.jpg", "secret": "a3e6934d72", "media": "photo", "latitude": "53.227309", "id": "452812373", "tags": "park district derbyshire peak chatsworth 2007 stables"}, {"datetaken": "2007-04-08 16:00:03", "license": "2", "title": "Stones", "text": "", "album_id": "72157600059516022", "longitude": "-1.613616", "url_o": "https://farm1.staticflickr.com/249/452816691_bbf25ce846_o.jpg", "secret": "7689710c7f", "media": "photo", "latitude": "53.227309", "id": "452816691", "tags": "park brick stone district derbyshire peak chatsworth 2007"}, {"datetaken": "2007-04-08 16:03:03", "license": "2", "title": "The Stables at Chatsworth", "text": "", "album_id": "72157600059516022", "longitude": "-1.613616", "url_o": "https://farm1.staticflickr.com/252/452801068_304028e6e8_o.jpg", "secret": "f1d9ad4f4f", "media": "photo", "latitude": "53.227309", "id": "452801068", "tags": "park district derbyshire peak chatsworth 2007"}, {"datetaken": "2007-04-08 16:04:26", "license": "2", "title": "Mark - The Duke of Chatsworth", "text": "", "album_id": "72157600059516022", "longitude": "-1.613616", "url_o": "https://farm1.staticflickr.com/220/452821283_0bdb3d688e_o.jpg", "secret": "46c37561c3", "media": "photo", "latitude": "53.227309", "id": "452821283", "tags": "park hat district derbyshire peak chatsworth 2007"}, {"datetaken": "2007-04-08 16:05:04", "license": "2", "title": "Converted Stables", "text": "", "album_id": "72157600059516022", "longitude": "-1.613616", "url_o": "https://farm1.staticflickr.com/183/452823429_dfb60054b8_o.jpg", "secret": "95da8fbeb5", "media": "photo", "latitude": "53.227309", "id": "452823429", "tags": "park shop district derbyshire peak gift chatsworth 2007 stables"}, {"datetaken": "2007-04-08 16:07:28", "license": "2", "title": "Converted Stables", "text": "", "album_id": "72157600059516022", "longitude": "-1.613616", "url_o": "https://farm1.staticflickr.com/189/452825795_c4125cd200_o.jpg", "secret": "147d3eabb5", "media": "photo", "latitude": "53.227309", "id": "452825795", "tags": "park tea district room derbyshire peak chatsworth 2007 stables"}, {"datetaken": "2007-04-08 16:53:02", "license": "2", "title": "Tree", "text": "", "album_id": "72157600059516022", "longitude": "-1.617736", "url_o": "https://farm1.staticflickr.com/172/452829079_23491f9b54_o.jpg", "secret": "95e8af0305", "media": "photo", "latitude": "53.224329", "id": "452829079", "tags": "park sun sunlight tree silhouette district derbyshire peak chatsworth 2007"}, {"datetaken": "2007-04-08 17:03:52", "license": "2", "title": "IMG_9818", "text": "", "album_id": "72157600059516022", "longitude": "-1.617736", "url_o": "https://farm1.staticflickr.com/192/452814708_456f7338f2_o.jpg", "secret": "5dd4f5b53b", "media": "photo", "latitude": "53.224329", "id": "452814708", "tags": "park district derbyshire peak chatsworth 2007"}, {"datetaken": "2007-04-08 18:06:45", "license": "2", "title": "Petals", "text": "", "album_id": "72157600059516022", "longitude": "-1.559972", "url_o": "https://farm1.staticflickr.com/218/452833651_2f00e5193b_o.jpg", "secret": "4ceac5b963", "media": "photo", "latitude": "53.115228", "id": "452833651", "tags": "colour square petals rainbow wind colourful vane 2007"}, {"datetaken": "2007-04-08 18:06:50", "license": "2", "title": "I'm a sucker for a rainbow", "text": "", "album_id": "72157600059516022", "longitude": "-1.559972", "url_o": "https://farm1.staticflickr.com/224/452817762_77cdc70659_o.jpg", "secret": "ad79b6cd08", "media": "photo", "latitude": "53.115228", "id": "452817762", "tags": "colours circles colourful 2007"}, {"datetaken": "2007-04-08 18:07:53", "license": "2", "title": "Matlock Bath", "text": "", "album_id": "72157600059516022", "longitude": "-1.559972", "url_o": "https://farm1.staticflickr.com/245/452819418_fcf31141e3_o.jpg", "secret": "b6f6299124", "media": "photo", "latitude": "53.115228", "id": "452819418", "tags": "bath district derbyshire peak matlock 2007"}, {"datetaken": "2007-04-08 19:29:49", "license": "2", "title": "Easter Sunset", "text": "", "album_id": "72157600059516022", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/452837859_b7dd601e6e_o.jpg", "secret": "0bdc4f9ca1", "media": "photo", "latitude": "0", "id": "452837859", "tags": "sunset sky cloud skyline easter district peak april 2007"}, {"datetaken": "2002-12-26 13:17:35", "license": "3", "title": "Disneyland 001", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9166645_a8e379cdfa_o.jpg", "secret": "a8e379cdfa", "media": "photo", "latitude": "0", "id": "9166645", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 13:17:41", "license": "3", "title": "Disneyland 002", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9166653_d696cab59a_o.jpg", "secret": "d696cab59a", "media": "photo", "latitude": "0", "id": "9166653", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 13:18:18", "license": "3", "title": "Disneyland 003", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9166655_2c3cbe88b3_o.jpg", "secret": "2c3cbe88b3", "media": "photo", "latitude": "0", "id": "9166655", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 13:19:01", "license": "3", "title": "Disneyland 005", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9166670_ac5d97e24c_o.jpg", "secret": "ac5d97e24c", "media": "photo", "latitude": "0", "id": "9166670", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 13:20:09", "license": "3", "title": "Disneyland 004", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9166661_65d3fb2f06_o.jpg", "secret": "65d3fb2f06", "media": "photo", "latitude": "0", "id": "9166661", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 13:27:33", "license": "3", "title": "Disneyland 006", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9166672_074980aaa0_o.jpg", "secret": "074980aaa0", "media": "photo", "latitude": "0", "id": "9166672", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 13:57:14", "license": "3", "title": "Disneyland 008", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9166676_f3efe04d2b_o.jpg", "secret": "f3efe04d2b", "media": "photo", "latitude": "0", "id": "9166676", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 13:57:35", "license": "3", "title": "Disneyland 009", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9166681_30188df212_o.jpg", "secret": "30188df212", "media": "photo", "latitude": "0", "id": "9166681", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 14:00:33", "license": "3", "title": "Disneyland 011", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9166683_ccc94b86d8_o.jpg", "secret": "ccc94b86d8", "media": "photo", "latitude": "0", "id": "9166683", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 14:01:13", "license": "3", "title": "Disneyland 012", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9166687_a8fb871d9b_o.jpg", "secret": "a8fb871d9b", "media": "photo", "latitude": "0", "id": "9166687", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 14:03:01", "license": "3", "title": "Disneyland 014", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9166689_8396c7e72d_o.jpg", "secret": "8396c7e72d", "media": "photo", "latitude": "0", "id": "9166689", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 14:43:49", "license": "3", "title": "Disneyland 015", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9166693_4d7704724b_o.jpg", "secret": "4d7704724b", "media": "photo", "latitude": "0", "id": "9166693", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 14:45:24", "license": "3", "title": "Disneyland 016", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/9166696_52194d827f_o.jpg", "secret": "52194d827f", "media": "photo", "latitude": "0", "id": "9166696", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 14:45:40", "license": "3", "title": "Disneyland 017", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9166698_a7218748ed_o.jpg", "secret": "a7218748ed", "media": "photo", "latitude": "0", "id": "9166698", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 14:46:35", "license": "3", "title": "Disneyland 018", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9166701_32ec932a7f_o.jpg", "secret": "32ec932a7f", "media": "photo", "latitude": "0", "id": "9166701", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 14:50:23", "license": "3", "title": "Disneyland 019", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9166706_3c92719287_o.jpg", "secret": "3c92719287", "media": "photo", "latitude": "0", "id": "9166706", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 15:31:43", "license": "3", "title": "Disneyland 020", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9166710_919b329694_o.jpg", "secret": "919b329694", "media": "photo", "latitude": "0", "id": "9166710", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 15:32:43", "license": "3", "title": "Disneyland 021", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9166718_f6256a6a0e_o.jpg", "secret": "f6256a6a0e", "media": "photo", "latitude": "0", "id": "9166718", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 15:32:54", "license": "3", "title": "Disneyland 022", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9166722_8fa1053a73_o.jpg", "secret": "8fa1053a73", "media": "photo", "latitude": "0", "id": "9166722", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 15:34:21", "license": "3", "title": "Disneyland 023", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9166728_6668f7df72_o.jpg", "secret": "6668f7df72", "media": "photo", "latitude": "0", "id": "9166728", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 15:34:40", "license": "3", "title": "Disneyland 024", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9166734_7d6e46a336_o.jpg", "secret": "7d6e46a336", "media": "photo", "latitude": "0", "id": "9166734", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 15:35:54", "license": "3", "title": "Disneyland 025", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9166739_55fddf655c_o.jpg", "secret": "55fddf655c", "media": "photo", "latitude": "0", "id": "9166739", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 15:36:23", "license": "3", "title": "Disneyland 026", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9166748_c3332676c7_o.jpg", "secret": "c3332676c7", "media": "photo", "latitude": "0", "id": "9166748", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 15:39:18", "license": "3", "title": "Disneyland 029", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9166760_9cebcb431f_o.jpg", "secret": "9cebcb431f", "media": "photo", "latitude": "0", "id": "9166760", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 15:39:26", "license": "3", "title": "Disneyland 030", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/9166762_c6ea7e3966_o.jpg", "secret": "c6ea7e3966", "media": "photo", "latitude": "0", "id": "9166762", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 15:40:18", "license": "3", "title": "Disneyland 031", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9166765_f5422e42a7_o.jpg", "secret": "f5422e42a7", "media": "photo", "latitude": "0", "id": "9166765", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 15:41:12", "license": "3", "title": "Disneyland 032", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9166767_043678ce05_o.jpg", "secret": "043678ce05", "media": "photo", "latitude": "0", "id": "9166767", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 15:41:48", "license": "3", "title": "Disneyland 033", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/9166769_8df9f1cac9_o.jpg", "secret": "8df9f1cac9", "media": "photo", "latitude": "0", "id": "9166769", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 15:42:01", "license": "3", "title": "Disneyland 034", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/9166770_30d3e8aef8_o.jpg", "secret": "30d3e8aef8", "media": "photo", "latitude": "0", "id": "9166770", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2002-12-26 15:43:56", "license": "3", "title": "Disneyland 035", "text": "", "album_id": "226949", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/9166771_aebd188626_o.jpg", "secret": "aebd188626", "media": "photo", "latitude": "0", "id": "9166771", "tags": "family washingtondc friends newyork easter"}, {"datetaken": "2006-04-11 18:01:38", "license": "3", "title": "best", "text": "", "album_id": "72057594104930436", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/127220205_28f50506b4_o.jpg", "secret": "28f50506b4", "media": "photo", "latitude": "0", "id": "127220205", "tags": "bunnies easter mail ducks postcards eggs"}, {"datetaken": "2006-04-11 18:01:40", "license": "3", "title": "chick", "text": "", "album_id": "72057594104930436", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/127220217_b2d39693b3_o.jpg", "secret": "b2d39693b3", "media": "photo", "latitude": "0", "id": "127220217", "tags": "bunnies easter mail ducks postcards eggs"}, {"datetaken": "2006-04-11 18:01:41", "license": "3", "title": "duck", "text": "", "album_id": "72057594104930436", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/127220228_0ac8bda269_o.jpg", "secret": "0ac8bda269", "media": "photo", "latitude": "0", "id": "127220228", "tags": "bunnies easter mail ducks postcards eggs"}, {"datetaken": "2006-04-11 18:01:43", "license": "3", "title": "greet", "text": "", "album_id": "72057594104930436", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/127220235_cbb4e2cd92_o.jpg", "secret": "cbb4e2cd92", "media": "photo", "latitude": "0", "id": "127220235", "tags": "bunnies easter mail ducks postcards eggs"}, {"datetaken": "2006-04-11 18:01:44", "license": "3", "title": "happiness", "text": "", "album_id": "72057594104930436", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/127220242_e9e198a272_o.jpg", "secret": "e9e198a272", "media": "photo", "latitude": "0", "id": "127220242", "tags": "bunnies easter mail ducks postcards eggs"}, {"datetaken": "2006-04-11 18:01:45", "license": "3", "title": "happy", "text": "", "album_id": "72057594104930436", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/127220252_ddf3e6b707_o.jpg", "secret": "ddf3e6b707", "media": "photo", "latitude": "0", "id": "127220252", "tags": "bunnies easter mail ducks postcards eggs"}, {"datetaken": "2006-04-11 18:01:47", "license": "3", "title": "joy", "text": "", "album_id": "72057594104930436", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/127220267_06002ca31c_o.jpg", "secret": "06002ca31c", "media": "photo", "latitude": "0", "id": "127220267", "tags": "bunnies easter mail ducks postcards eggs"}, {"datetaken": "2006-04-11 18:01:48", "license": "3", "title": "joyful", "text": "", "album_id": "72057594104930436", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/127220270_ee0b741eba_o.jpg", "secret": "ee0b741eba", "media": "photo", "latitude": "0", "id": "127220270", "tags": "bunnies easter mail ducks postcards eggs"}, {"datetaken": "2006-04-11 18:01:50", "license": "3", "title": "joys", "text": "", "album_id": "72057594104930436", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/127220272_98b1e973c1_o.jpg", "secret": "98b1e973c1", "media": "photo", "latitude": "0", "id": "127220272", "tags": "bunnies easter mail ducks postcards eggs"}, {"datetaken": "2006-04-11 18:01:51", "license": "3", "title": "morning", "text": "", "album_id": "72057594104930436", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/127220280_e4b8445624_o.jpg", "secret": "e4b8445624", "media": "photo", "latitude": "0", "id": "127220280", "tags": "bunnies easter mail ducks postcards eggs"}, {"datetaken": "2006-04-11 18:01:52", "license": "3", "title": "vishing", "text": "", "album_id": "72057594104930436", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/127220285_7906f32b70_o.jpg", "secret": "7906f32b70", "media": "photo", "latitude": "0", "id": "127220285", "tags": "bunnies easter mail ducks postcards eggs"}, {"datetaken": "2006-04-11 18:01:53", "license": "3", "title": "wishes", "text": "", "album_id": "72057594104930436", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/127220293_41225ef879_o.jpg", "secret": "41225ef879", "media": "photo", "latitude": "0", "id": "127220293", "tags": "bunnies easter mail ducks postcards eggs"}, {"datetaken": "2011-04-12 07:15:30", "license": "3", "title": "Dawn storm clouds 12-4-2011", "text": "", "album_id": "72157626353824175", "longitude": "138.887314", "url_o": "https://farm6.staticflickr.com/5270/5610888017_304b775e3a_o.jpg", "secret": "e5c38b9be8", "media": "photo", "latitude": "-35.544658", "id": "5610888017", "tags": "storm water clouds dawn australia podcaster hindmarshisland fleurieu 12of12"}, {"datetaken": "2011-04-12 07:37:05", "license": "3", "title": "Pre-sunrise in the storm clouds", "text": "", "album_id": "72157626353824175", "longitude": "138.882143", "url_o": "https://farm6.staticflickr.com/5302/5611540750_df7be6f4d6_o.jpg", "secret": "1b72dfdb7f", "media": "photo", "latitude": "-35.544832", "id": "5611540750", "tags": "water australia podcaster hindmarshisland fleurieu 12of12"}, {"datetaken": "2011-04-12 07:40:29", "license": "3", "title": "White-faced Heron", "text": "", "album_id": "72157626353824175", "longitude": "138.882143", "url_o": "https://farm5.staticflickr.com/4109/5611547600_d5a5a89276_o.jpg", "secret": "6a087e1c06", "media": "photo", "latitude": "-35.544832", "id": "5611547600", "tags": "bird heron australia podcaster hindmarshisland fleurieu 12of12"}, {"datetaken": "2011-04-12 08:24:46", "license": "3", "title": "Sunrise 12-4-2011", "text": "", "album_id": "72157626353824175", "longitude": "138.882143", "url_o": "https://farm6.staticflickr.com/5261/5610962973_1cdeee5086_o.jpg", "secret": "41b27437d5", "media": "photo", "latitude": "-35.544832", "id": "5610962973", "tags": "sun australia podcaster hindmarshisland fleurieu 12of12"}, {"datetaken": "2011-04-12 08:27:23", "license": "3", "title": "Pelican", "text": "", "album_id": "72157626353824175", "longitude": "138.882143", "url_o": "https://farm6.staticflickr.com/5185/5610970267_b79444640f_o.jpg", "secret": "4b85450c8f", "media": "photo", "latitude": "-35.544832", "id": "5610970267", "tags": "bird australia pelican podcaster hindmarshisland fleurieu 12of12"}, {"datetaken": "2011-04-12 14:49:47", "license": "3", "title": "View up the channel", "text": "", "album_id": "72157626353824175", "longitude": "138.881671", "url_o": "https://farm6.staticflickr.com/5305/5612004167_4f7bb448c1_o.jpg", "secret": "3c295b9d9f", "media": "photo", "latitude": "-35.542929", "id": "5612004167", "tags": "water australia channel coorong hindmarshisland fleurieu 12of12 podcacher"}, {"datetaken": "2011-04-12 14:58:12", "license": "3", "title": "Information boards", "text": "", "album_id": "72157626353824175", "longitude": "138.881585", "url_o": "https://farm6.staticflickr.com/5147/5612014867_4a5599099f_o.jpg", "secret": "5a65e9ddb0", "media": "photo", "latitude": "-35.543174", "id": "5612014867", "tags": "dog signs australia ceri hindmarshisland fleurieu 12of12 podcacher"}, {"datetaken": "2011-04-12 15:39:37", "license": "3", "title": "Hot Cross buns", "text": "", "album_id": "72157626353824175", "longitude": "138.882583", "url_o": "https://farm6.staticflickr.com/5023/5611966075_98e9cba70c_o.jpg", "secret": "4b9497b6fc", "media": "photo", "latitude": "-35.544762", "id": "5611966075", "tags": "coffee easter cross buns podcaster 12of12"}, {"datetaken": "2011-04-12 16:01:55", "license": "3", "title": "Feijoas", "text": "", "album_id": "72157626353824175", "longitude": "138.882583", "url_o": "https://farm6.staticflickr.com/5063/5612583090_51732475db_o.jpg", "secret": "fe67569b66", "media": "photo", "latitude": "-35.544762", "id": "5612583090", "tags": "green fruit feijoa 12of12 podcacher"}, {"datetaken": "2011-04-12 16:08:46", "license": "3", "title": "Ceri", "text": "", "album_id": "72157626353824175", "longitude": "138.881628", "url_o": "https://farm6.staticflickr.com/5143/5612013437_ff0d0cb6e5_o.jpg", "secret": "d2b5c78937", "media": "photo", "latitude": "-35.542702", "id": "5612013437", "tags": "dog water jetty australia ceri hindmarshisland fleurieu 12of12 podcacher"}, {"datetaken": "2011-04-12 18:45:40", "license": "3", "title": "Texas BBQ for tea", "text": "", "album_id": "72157626353824175", "longitude": "138.799102", "url_o": "https://farm6.staticflickr.com/5228/5612962984_efcd583677_o.jpg", "secret": "c1efef1d7b", "media": "photo", "latitude": "-35.513103", "id": "5612962984", "tags": "corn potato steak meal ribs bones hindmarshisland 12of12 podcacher"}, {"datetaken": "2011-04-12 19:13:13", "license": "3", "title": "Rib remains!", "text": "", "album_id": "72157626353824175", "longitude": "138.799016", "url_o": "https://farm6.staticflickr.com/5187/5612385009_1233306a03_o.jpg", "secret": "e8f1ecf582", "media": "photo", "latitude": "-35.513155", "id": "5612385009", "tags": "steak meal bones hindmarshisland 12of12 podcacher"}, {"datetaken": "2010-02-12 14:25:19", "license": "3", "title": "huge_icicles_1", "text": "", "album_id": "72157623297975725", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2699/4351578735_dea8f60bd8_o.jpg", "secret": "ef624ca0e3", "media": "photo", "latitude": "0", "id": "4351578735", "tags": "icicles noreasters2010"}, {"datetaken": "2010-02-12 14:25:39", "license": "3", "title": "huge_icicles_2", "text": "", "album_id": "72157623297975725", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4351578743_8d6fcf1063_o.jpg", "secret": "6e8c089822", "media": "photo", "latitude": "0", "id": "4351578743", "tags": "icicles noreasters2010"}, {"datetaken": "2010-02-12 14:26:00", "license": "3", "title": "huge_icicles_3", "text": "", "album_id": "72157623297975725", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4351578751_5b21b44341_o.jpg", "secret": "b9eaa104d3", "media": "photo", "latitude": "0", "id": "4351578751", "tags": "icicles noreasters2010"}, {"datetaken": "2010-02-12 16:56:45", "license": "3", "title": "huge_icicles_4", "text": "", "album_id": "72157623297975725", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4351613263_a4b0bb364b_o.jpg", "secret": "523f157105", "media": "photo", "latitude": "0", "id": "4351613263", "tags": "ice noreasters2010"}, {"datetaken": "2010-02-12 16:57:31", "license": "3", "title": "more_shovelling", "text": "", "album_id": "72157623297975725", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4351613461_a62284737c_o.jpg", "secret": "ff12e986b2", "media": "photo", "latitude": "0", "id": "4351613461", "tags": "ice noreasters2010"}, {"datetaken": "2010-02-12 16:58:00", "license": "3", "title": "what_we_had_2_shovel", "text": "", "album_id": "72157623297975725", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2768/4351613625_0b456df9b4_o.jpg", "secret": "cc8d15e407", "media": "photo", "latitude": "0", "id": "4351613625", "tags": "snow ice noreasters2010"}, {"datetaken": "2010-02-12 16:58:24", "license": "3", "title": "what_is_left", "text": "", "album_id": "72157623297975725", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2751/4352360078_b15dee35bd_o.jpg", "secret": "dd340bb5eb", "media": "photo", "latitude": "0", "id": "4352360078", "tags": "snow ice noreasters2010"}, {"datetaken": "2010-02-12 16:58:42", "license": "3", "title": "snow_as_high_as_my_car", "text": "", "album_id": "72157623297975725", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2784/4352360192_4e2ba5d64c_o.jpg", "secret": "dc1596de0a", "media": "photo", "latitude": "0", "id": "4352360192", "tags": "snow ice noreasters2010"}, {"datetaken": "2010-02-12 17:00:02", "license": "3", "title": "huge_icicles_5", "text": "", "album_id": "72157623297975725", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2703/4351614149_3f3ab3cbe0_o.jpg", "secret": "52f7e98816", "media": "photo", "latitude": "0", "id": "4351614149", "tags": "icicles noreasters2010"}, {"datetaken": "2010-02-12 17:00:28", "license": "3", "title": "huge_icicles_6", "text": "", "album_id": "72157623297975725", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4351614275_979a925a0f_o.jpg", "secret": "713229b3fa", "media": "photo", "latitude": "0", "id": "4351614275", "tags": "icicles noreasters2010"}, {"datetaken": "2010-02-12 17:01:32", "license": "3", "title": "ice_filled_gutter", "text": "", "album_id": "72157623297975725", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4351614461_cdf90a64c8_o.jpg", "secret": "3984959b57", "media": "photo", "latitude": "0", "id": "4351614461", "tags": "ice noreasters2010"}, {"datetaken": "2005-03-26 14:22:56", "license": "1", "title": "dekorasjoner", "text": "", "album_id": "72157594198925729", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/86924607_7c3adeffc3_o.jpg", "secret": "7c3adeffc3", "media": "photo", "latitude": "0", "id": "86924607", "tags": "red orange art decoration p\u00e5ske \u00e5lesundtur"}, {"datetaken": "2005-03-26 15:29:53", "license": "1", "title": "Kaf\u00e9en vi endte p\u00e5", "text": "", "album_id": "72157594198925729", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/189433748_dcc4b57347_o.jpg", "secret": "dcc4b57347", "media": "photo", "latitude": "0", "id": "189433748", "tags": "caf\u00e9 p\u00e5ske \u00c5lesundtur"}, {"datetaken": "2005-03-26 15:34:03", "license": "1", "title": "Fint bygg", "text": "", "album_id": "72157594198925729", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/189433749_bcf5d9c3d7_o.jpg", "secret": "bcf5d9c3d7", "media": "photo", "latitude": "0", "id": "189433749", "tags": "building hus p\u00e5ske \u00c5lesundtur"}, {"datetaken": "2005-03-26 15:36:34", "license": "1", "title": "hus", "text": "", "album_id": "72157594198925729", "longitude": "0", "url_o": "https://farm1.staticflickr.com/39/86929566_b2d8ce3b23_o.jpg", "secret": "b2d8ce3b23", "media": "photo", "latitude": "0", "id": "86929566", "tags": "\u00e5lesundtur p\u00e5ske hus"}, {"datetaken": "2005-03-26 15:52:25", "license": "1", "title": "skygge over stentrappen", "text": "", "album_id": "72157594198925729", "longitude": "0", "url_o": "https://farm1.staticflickr.com/40/86929569_f87783c0de_o.jpg", "secret": "f87783c0de", "media": "photo", "latitude": "0", "id": "86929569", "tags": "shadow stone stairs p\u00e5ske \u00e5lesundtur"}, {"datetaken": "2005-03-26 15:53:45", "license": "1", "title": "opp trappen", "text": "", "album_id": "72157594198925729", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/86929568_7dc691652e_o.jpg", "secret": "7dc691652e", "media": "photo", "latitude": "0", "id": "86929568", "tags": "people stairs cecilia camilla p\u00e5ske \u00e5lesundtur"}, {"datetaken": "2005-03-26 15:55:47", "license": "1", "title": "God utsikt", "text": "", "album_id": "72157594198925729", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/189437806_25af87503c_o.jpg", "secret": "25af87503c", "media": "photo", "latitude": "0", "id": "189437806", "tags": "easter view cecilia camilla p\u00e5ske \u00c5lesundtur"}, {"datetaken": "2005-03-26 15:55:49", "license": "1", "title": "God utsikt II", "text": "", "album_id": "72157594198925729", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/189437807_b291a9f8fe_o.jpg", "secret": "b291a9f8fe", "media": "photo", "latitude": "0", "id": "189437807", "tags": "easter view cecilia camilla p\u00e5ske \u00c5lesundtur"}, {"datetaken": "2005-03-26 15:58:04", "license": "1", "title": "God utsikt III", "text": "", "album_id": "72157594198925729", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/189437809_ea9b9c2d75_o.jpg", "secret": "ea9b9c2d75", "media": "photo", "latitude": "0", "id": "189437809", "tags": "easter view barbara cecilia sylvia p\u00e5ske \u00c5lesundtur"}, {"datetaken": "2005-03-26 15:59:09", "license": "1", "title": "P\u00e5 vei opp I", "text": "", "album_id": "72157594198925729", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/189437812_364d26a74f_o.jpg", "secret": "364d26a74f", "media": "photo", "latitude": "0", "id": "189437812", "tags": "stairs easter barbara cecilia viewpoint sylvia p\u00e5ske \u00c5lesundtur"}, {"datetaken": "2005-03-26 16:50:27", "license": "1", "title": "Meg og Rollon", "text": "", "album_id": "72157594198925729", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/189445880_e00fde62d3_o.jpg", "secret": "e00fde62d3", "media": "photo", "latitude": "0", "id": "189445880", "tags": "statue camilla p\u00e5ske rollon \u00c5lesundtur"}, {"datetaken": "2005-03-26 16:50:59", "license": "1", "title": "Rollon", "text": "", "album_id": "72157594198925729", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/189445882_f22e143faf_o.jpg", "secret": "f22e143faf", "media": "photo", "latitude": "0", "id": "189445882", "tags": "statue p\u00e5ske rollon \u00c5lesundtur"}, {"datetaken": "2005-03-26 16:56:30", "license": "1", "title": "Trapp", "text": "", "album_id": "72157594198925729", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/189445887_a0a91797a8_o.jpg", "secret": "a0a91797a8", "media": "photo", "latitude": "0", "id": "189445887", "tags": "stairs pattern steps p\u00e5ske \u00c5lesundtur"}, {"datetaken": "2005-03-26 17:09:17", "license": "1", "title": "Hus", "text": "", "album_id": "72157594198925729", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/189445889_24fe849cb7_o.jpg", "secret": "24fe849cb7", "media": "photo", "latitude": "0", "id": "189445889", "tags": "house reflection water hus p\u00e5ske \u00c5lesundtur"}, {"datetaken": "2006-06-16 21:37:41", "license": "4", "title": "x-mas '61", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/168688116_3a630dfe0f_o.jpg", "secret": "3a630dfe0f", "media": "photo", "latitude": "0", "id": "168688116", "tags": "wales dad"}, {"datetaken": "2006-06-16 21:39:05", "license": "4", "title": "After Darren's Christening", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/168688642_0137236cb8_o.jpg", "secret": "0137236cb8", "media": "photo", "latitude": "0", "id": "168688642", "tags": "wales dad"}, {"datetaken": "2006-06-16 21:40:27", "license": "4", "title": "Ali", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/168689089_1e9638b9a3_o.jpg", "secret": "1e9638b9a3", "media": "photo", "latitude": "0", "id": "168689089", "tags": "wales dad"}, {"datetaken": "2006-06-16 21:42:14", "license": "4", "title": "Badminton 1952", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/168689651_38f70e83b2_o.jpg", "secret": "38f70e83b2", "media": "photo", "latitude": "0", "id": "168689651", "tags": "wales dad"}, {"datetaken": "2006-06-16 21:43:41", "license": "4", "title": "Baker's Sept 1 - '68", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/168690176_23e4a1d498_o.jpg", "secret": "23e4a1d498", "media": "photo", "latitude": "0", "id": "168690176", "tags": "wales dad"}, {"datetaken": "2006-06-16 21:45:18", "license": "4", "title": "David 1956 - Market Lucern", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/168690856_a11dd35e74_o.jpg", "secret": "a11dd35e74", "media": "photo", "latitude": "0", "id": "168690856", "tags": "wales dad"}, {"datetaken": "2006-06-16 21:46:43", "license": "4", "title": "Glenys & Richard", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/168691345_36f6f00202_o.jpg", "secret": "36f6f00202", "media": "photo", "latitude": "0", "id": "168691345", "tags": "wales dad"}, {"datetaken": "2006-06-16 21:48:02", "license": "4", "title": "Glenys & Richard 1962", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/168691753_2866dac1b0_o.jpg", "secret": "2866dac1b0", "media": "photo", "latitude": "0", "id": "168691753", "tags": "wales dad"}, {"datetaken": "2006-06-16 21:49:17", "license": "4", "title": "Glenys & Richard Walters' Wedding", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/168692163_c06a3f6ad5_o.jpg", "secret": "c06a3f6ad5", "media": "photo", "latitude": "0", "id": "168692163", "tags": "wales dad"}, {"datetaken": "2006-06-16 21:50:38", "license": "4", "title": "Glenys X-mas '62", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/168692659_c091747098_o.jpg", "secret": "c091747098", "media": "photo", "latitude": "0", "id": "168692659", "tags": "wales dad"}, {"datetaken": "2006-06-16 21:52:23", "license": "4", "title": "Granddad, Marg & Cousin Linda", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/168693340_ba149fe1d9_o.jpg", "secret": "ba149fe1d9", "media": "photo", "latitude": "0", "id": "168693340", "tags": "wales dad"}, {"datetaken": "2006-06-16 21:53:47", "license": "4", "title": "Jean in Halifax", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/168693953_a06b57e6aa_o.jpg", "secret": "a06b57e6aa", "media": "photo", "latitude": "0", "id": "168693953", "tags": "wales dad"}, {"datetaken": "2006-06-16 21:55:03", "license": "4", "title": "Mr. & Mrs. Lewis in Victoria '66", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/168694570_fae7e62d97_o.jpg", "secret": "fae7e62d97", "media": "photo", "latitude": "0", "id": "168694570", "tags": "wales dad"}, {"datetaken": "2006-06-16 21:56:24", "license": "4", "title": "Paella Cooks & Easters 1968", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/168695216_a866abee2c_o.jpg", "secret": "a866abee2c", "media": "photo", "latitude": "0", "id": "168695216", "tags": "wales dad"}, {"datetaken": "2006-06-16 21:57:44", "license": "4", "title": "scan0003", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/168695759_1e5554f32d_o.jpg", "secret": "1e5554f32d", "media": "photo", "latitude": "0", "id": "168695759", "tags": "wales dad"}, {"datetaken": "2006-06-16 21:59:03", "license": "4", "title": "scan0004", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/168696235_a401a6f94c_o.jpg", "secret": "a401a6f94c", "media": "photo", "latitude": "0", "id": "168696235", "tags": "wales dad"}, {"datetaken": "2006-06-16 22:00:44", "license": "4", "title": "scan0005", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/168696983_0b361c7775_o.jpg", "secret": "0b361c7775", "media": "photo", "latitude": "0", "id": "168696983", "tags": "wales dad"}, {"datetaken": "2006-06-16 22:02:07", "license": "4", "title": "scan0008", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/76/168697695_06e35eeb14_o.jpg", "secret": "06e35eeb14", "media": "photo", "latitude": "0", "id": "168697695", "tags": "wales dad"}, {"datetaken": "2006-06-16 22:03:24", "license": "4", "title": "scan0011", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/168698262_316925897d_o.jpg", "secret": "316925897d", "media": "photo", "latitude": "0", "id": "168698262", "tags": "wales dad"}, {"datetaken": "2006-06-16 22:04:46", "license": "4", "title": "scan0016", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/168698817_89a63f0d29_o.jpg", "secret": "89a63f0d29", "media": "photo", "latitude": "0", "id": "168698817", "tags": "wales dad"}, {"datetaken": "2006-06-16 22:06:00", "license": "4", "title": "Steve Case, Dave Good, Steve Shelley, Dad - 1966 St. Anne", "text": "", "album_id": "72157594168153856", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/168699402_3b7f0840eb_o.jpg", "secret": "3b7f0840eb", "media": "photo", "latitude": "0", "id": "168699402", "tags": "wales dad"}, {"datetaken": "2006-07-15 19:15:05", "license": "3", "title": "IMG_1073", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/190838268_4e0c9c3f0c_o.jpg", "secret": "4e0c9c3f0c", "media": "photo", "latitude": "0", "id": "190838268", "tags": "russell ferrari"}, {"datetaken": "2006-07-15 19:17:05", "license": "3", "title": "IMG_1074", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/190838378_55bb3873e2_o.jpg", "secret": "55bb3873e2", "media": "photo", "latitude": "0", "id": "190838378", "tags": "russell"}, {"datetaken": "2006-07-15 19:17:18", "license": "3", "title": "IMG_1075", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/190838467_036c233196_o.jpg", "secret": "036c233196", "media": "photo", "latitude": "0", "id": "190838467", "tags": "russell"}, {"datetaken": "2006-07-15 19:17:33", "license": "3", "title": "IMG_1076", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/58/190838559_6c0aaccef1_o.jpg", "secret": "6c0aaccef1", "media": "photo", "latitude": "0", "id": "190838559", "tags": "russell"}, {"datetaken": "2006-07-15 19:18:35", "license": "3", "title": "IMG_1077", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/190838655_2b4be4bf48_o.jpg", "secret": "2b4be4bf48", "media": "photo", "latitude": "0", "id": "190838655", "tags": "russell"}, {"datetaken": "2006-07-15 19:20:02", "license": "3", "title": "IMG_1078", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/190838732_fade300a16_o.jpg", "secret": "fade300a16", "media": "photo", "latitude": "0", "id": "190838732", "tags": "russell"}, {"datetaken": "2006-07-15 19:21:37", "license": "3", "title": "IMG_1079", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/190838824_9d4dd4e243_o.jpg", "secret": "9d4dd4e243", "media": "photo", "latitude": "0", "id": "190838824", "tags": "russell"}, {"datetaken": "2006-07-15 19:27:55", "license": "3", "title": "IMG_1080", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/190839010_6b9584cc2a_o.jpg", "secret": "6b9584cc2a", "media": "photo", "latitude": "0", "id": "190839010", "tags": "flowers russell"}, {"datetaken": "2006-07-15 19:30:45", "license": "3", "title": "IMG_1081", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/190839090_d55e007da7_o.jpg", "secret": "d55e007da7", "media": "photo", "latitude": "0", "id": "190839090", "tags": "russell"}, {"datetaken": "2006-07-15 19:35:49", "license": "3", "title": "IMG_1083", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/70/190839164_60df1533a7_o.jpg", "secret": "60df1533a7", "media": "photo", "latitude": "0", "id": "190839164", "tags": "russell"}, {"datetaken": "2006-07-15 19:36:33", "license": "3", "title": "IMG_1085", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/63/190839234_5577dc9eb4_o.jpg", "secret": "5577dc9eb4", "media": "photo", "latitude": "0", "id": "190839234", "tags": "russell"}, {"datetaken": "2006-07-15 19:37:40", "license": "3", "title": "IMG_1086", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/190839297_600a4c899e_o.jpg", "secret": "600a4c899e", "media": "photo", "latitude": "0", "id": "190839297", "tags": "flowers russell"}, {"datetaken": "2006-07-15 19:38:28", "license": "3", "title": "IMG_1087", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/190839372_78341be331_o.jpg", "secret": "78341be331", "media": "photo", "latitude": "0", "id": "190839372", "tags": "flowers russell"}, {"datetaken": "2006-07-15 20:15:51", "license": "3", "title": "IMG_1088", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/190839449_b9fb811a93_o.jpg", "secret": "b9fb811a93", "media": "photo", "latitude": "0", "id": "190839449", "tags": "russell"}, {"datetaken": "2006-07-15 20:16:01", "license": "3", "title": "IMG_1089", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/190839519_1073a7b234_o.jpg", "secret": "1073a7b234", "media": "photo", "latitude": "0", "id": "190839519", "tags": "russell"}, {"datetaken": "2006-07-15 20:31:21", "license": "3", "title": "IMG_1092", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/71/190839714_3916096776_o.jpg", "secret": "3916096776", "media": "photo", "latitude": "0", "id": "190839714", "tags": "russell ferrari"}, {"datetaken": "2006-07-15 20:31:30", "license": "3", "title": "IMG_1093", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/190837351_a5d16bb19a_o.jpg", "secret": "a5d16bb19a", "media": "photo", "latitude": "0", "id": "190837351", "tags": "russell ferrari"}, {"datetaken": "2006-07-15 20:31:40", "license": "3", "title": "IMG_1094", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/75/190837414_8cab6cee98_o.jpg", "secret": "8cab6cee98", "media": "photo", "latitude": "0", "id": "190837414", "tags": "russell ferrari"}, {"datetaken": "2006-07-15 20:31:53", "license": "3", "title": "IMG_1095", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/190837465_403820bada_o.jpg", "secret": "403820bada", "media": "photo", "latitude": "0", "id": "190837465", "tags": "russell ferrari"}, {"datetaken": "2006-07-15 20:32:05", "license": "3", "title": "IMG_1096", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/59/190837516_d3fe6e8e65_o.jpg", "secret": "d3fe6e8e65", "media": "photo", "latitude": "0", "id": "190837516", "tags": "russell ferrari"}, {"datetaken": "2006-07-15 20:32:15", "license": "3", "title": "IMG_1097", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/64/190837569_ae95612fd2_o.jpg", "secret": "ae95612fd2", "media": "photo", "latitude": "0", "id": "190837569", "tags": "russell ferrari"}, {"datetaken": "2006-07-15 20:32:26", "license": "3", "title": "IMG_1098", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/68/190837640_9c9ef18b64_o.jpg", "secret": "9c9ef18b64", "media": "photo", "latitude": "0", "id": "190837640", "tags": "russell ferrari"}, {"datetaken": "2006-07-15 20:32:33", "license": "3", "title": "IMG_1099", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/190837672_650c0f3b6f_o.jpg", "secret": "650c0f3b6f", "media": "photo", "latitude": "0", "id": "190837672", "tags": "russell ferrari"}, {"datetaken": "2006-07-15 20:32:43", "license": "3", "title": "IMG_1100", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/190837743_f9ba285fe6_o.jpg", "secret": "f9ba285fe6", "media": "photo", "latitude": "0", "id": "190837743", "tags": "russell ferrari"}, {"datetaken": "2006-07-15 21:02:38", "license": "3", "title": "IMG_1101", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/190837839_72a98bf79c_o.jpg", "secret": "72a98bf79c", "media": "photo", "latitude": "0", "id": "190837839", "tags": "russell claudette caricatureroom"}, {"datetaken": "2006-07-15 21:02:45", "license": "3", "title": "IMG_1102", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/190837946_b58e571a17_o.jpg", "secret": "b58e571a17", "media": "photo", "latitude": "0", "id": "190837946", "tags": "russell claudette caricatureroom"}, {"datetaken": "2006-07-15 21:02:54", "license": "3", "title": "IMG_1103", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/190838033_2b13d3a2c5_o.jpg", "secret": "2b13d3a2c5", "media": "photo", "latitude": "0", "id": "190838033", "tags": "russell claudette caricatureroom"}, {"datetaken": "2006-07-15 21:03:01", "license": "3", "title": "IMG_1104", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/190838105_3ef54b2ee7_o.jpg", "secret": "3ef54b2ee7", "media": "photo", "latitude": "0", "id": "190838105", "tags": "russell claudette caricatureroom"}, {"datetaken": "2006-07-15 21:05:06", "license": "3", "title": "IMG_1105", "text": "", "album_id": "72157594200971706", "longitude": "0", "url_o": "https://farm1.staticflickr.com/57/190838154_3553d29a7b_o.jpg", "secret": "3553d29a7b", "media": "photo", "latitude": "0", "id": "190838154", "tags": "russell claudette caricatureroom"}, {"datetaken": "2006-04-16 02:30:54", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/129831312_f1f256a96a_o.jpg", "secret": "f1f256a96a", "media": "photo", "latitude": "0", "id": "129831312", "tags": "easter"}, {"datetaken": "2006-04-16 02:31:00", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/129831313_feffb1e157_o.jpg", "secret": "feffb1e157", "media": "photo", "latitude": "0", "id": "129831313", "tags": "easter"}, {"datetaken": "2006-04-16 02:32:39", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/129902658_a517e2bbf1_o.jpg", "secret": "a517e2bbf1", "media": "photo", "latitude": "0", "id": "129902658", "tags": "easter"}, {"datetaken": "2006-04-16 02:33:31", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/130052707_fe80e7cab3_o.jpg", "secret": "fe80e7cab3", "media": "photo", "latitude": "0", "id": "130052707", "tags": "easter"}, {"datetaken": "2006-04-16 02:36:54", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/129831314_e2a43277eb_o.jpg", "secret": "e2a43277eb", "media": "photo", "latitude": "0", "id": "129831314", "tags": "easter"}, {"datetaken": "2006-04-16 02:36:58", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/129831315_c073d82159_o.jpg", "secret": "c073d82159", "media": "photo", "latitude": "0", "id": "129831315", "tags": "easter"}, {"datetaken": "2006-04-16 02:39:14", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/129831316_1c4adab267_o.jpg", "secret": "1c4adab267", "media": "photo", "latitude": "0", "id": "129831316", "tags": "easter"}, {"datetaken": "2006-04-16 02:39:27", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/129907752_caf4298c13_o.jpg", "secret": "caf4298c13", "media": "photo", "latitude": "0", "id": "129907752", "tags": "easter"}, {"datetaken": "2006-04-16 02:40:06", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/130419361_48ec5fd420_o.jpg", "secret": "48ec5fd420", "media": "photo", "latitude": "0", "id": "130419361", "tags": "easter"}, {"datetaken": "2006-04-16 03:06:47", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/129902659_624c285c83_o.jpg", "secret": "624c285c83", "media": "photo", "latitude": "0", "id": "129902659", "tags": "easter"}, {"datetaken": "2006-04-16 03:07:01", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/129902660_3cf51c6d47_o.jpg", "secret": "3cf51c6d47", "media": "photo", "latitude": "0", "id": "129902660", "tags": "easter"}, {"datetaken": "2006-04-16 03:07:06", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/129902663_6eef8f2027_o.jpg", "secret": "6eef8f2027", "media": "photo", "latitude": "0", "id": "129902663", "tags": "easter"}, {"datetaken": "2006-04-16 03:07:11", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/129902662_5fbee219a4_o.jpg", "secret": "5fbee219a4", "media": "photo", "latitude": "0", "id": "129902662", "tags": "easter"}, {"datetaken": "2006-04-16 03:16:42", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/129903955_f7b5a29b60_o.jpg", "secret": "f7b5a29b60", "media": "photo", "latitude": "0", "id": "129903955", "tags": "easter"}, {"datetaken": "2006-04-16 03:16:48", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/130052709_f3be2d4a79_o.jpg", "secret": "f3be2d4a79", "media": "photo", "latitude": "0", "id": "130052709", "tags": "easter"}, {"datetaken": "2006-04-16 04:21:16", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/130052710_e837130e48_o.jpg", "secret": "e837130e48", "media": "photo", "latitude": "0", "id": "130052710", "tags": "easter"}, {"datetaken": "2006-04-16 04:24:14", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/130052711_d8abde1b3c_o.jpg", "secret": "d8abde1b3c", "media": "photo", "latitude": "0", "id": "130052711", "tags": "easter"}, {"datetaken": "2006-04-16 04:38:16", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/129907753_6d8bfa6108_o.jpg", "secret": "6d8bfa6108", "media": "photo", "latitude": "0", "id": "129907753", "tags": "easter"}, {"datetaken": "2006-04-16 04:38:22", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/129907754_01cd33f085_o.jpg", "secret": "01cd33f085", "media": "photo", "latitude": "0", "id": "129907754", "tags": "easter"}, {"datetaken": "2006-04-16 04:38:32", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/130052712_c7bd2deab7_o.jpg", "secret": "c7bd2deab7", "media": "photo", "latitude": "0", "id": "130052712", "tags": "easter"}, {"datetaken": "2006-04-16 06:19:41", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/129903953_e1d03189e7_o.jpg", "secret": "e1d03189e7", "media": "photo", "latitude": "0", "id": "129903953", "tags": "easter"}, {"datetaken": "2006-04-16 06:21:57", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/129903951_ee0d0d803e_o.jpg", "secret": "ee0d0d803e", "media": "photo", "latitude": "0", "id": "129903951", "tags": "easter"}, {"datetaken": "2006-04-16 06:30:37", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/129907755_0ac377da1c_o.jpg", "secret": "0ac377da1c", "media": "photo", "latitude": "0", "id": "129907755", "tags": "easter"}, {"datetaken": "2006-04-16 06:57:41", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/129902664_c3e6820222_o.jpg", "secret": "c3e6820222", "media": "photo", "latitude": "0", "id": "129902664", "tags": "easter"}, {"datetaken": "2006-04-16 06:57:59", "license": "3", "title": "Easter '06", "text": "", "album_id": "72057594109105597", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/129903952_140d096dcd_o.jpg", "secret": "140d096dcd", "media": "photo", "latitude": "0", "id": "129903952", "tags": "easter"}, {"datetaken": "2006-04-15 10:41:22", "license": "1", "title": "April 2006 002", "text": "", "album_id": "72057594109474817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/130161527_39e24773c1_o.jpg", "secret": "39e24773c1", "media": "photo", "latitude": "0", "id": "130161527", "tags": "easter"}, {"datetaken": "2006-04-15 10:41:54", "license": "1", "title": "April 2006 003", "text": "", "album_id": "72057594109474817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/130161573_a8521fef0c_o.jpg", "secret": "a8521fef0c", "media": "photo", "latitude": "0", "id": "130161573", "tags": "easter"}, {"datetaken": "2006-04-15 18:27:35", "license": "1", "title": "April 2006 031", "text": "", "album_id": "72057594109474817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/130161613_1f0b5797e4_o.jpg", "secret": "1f0b5797e4", "media": "photo", "latitude": "0", "id": "130161613", "tags": "easter"}, {"datetaken": "2006-04-15 18:27:38", "license": "1", "title": "April 2006 032", "text": "", "album_id": "72057594109474817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/130161676_ab64566acc_o.jpg", "secret": "ab64566acc", "media": "photo", "latitude": "0", "id": "130161676", "tags": "easter"}, {"datetaken": "2006-04-16 06:13:23", "license": "1", "title": "April 2006 037", "text": "", "album_id": "72057594109474817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/130161704_c0837dd2cc_o.jpg", "secret": "c0837dd2cc", "media": "photo", "latitude": "0", "id": "130161704", "tags": "easter"}, {"datetaken": "2006-04-16 06:14:10", "license": "1", "title": "April 2006 039", "text": "", "album_id": "72057594109474817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/130161760_b5ea4f0c8e_o.jpg", "secret": "b5ea4f0c8e", "media": "photo", "latitude": "0", "id": "130161760", "tags": "easter"}, {"datetaken": "2006-04-16 06:14:47", "license": "1", "title": "April 2006 041", "text": "", "album_id": "72057594109474817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/130161780_aa9d18ef40_o.jpg", "secret": "aa9d18ef40", "media": "photo", "latitude": "0", "id": "130161780", "tags": "easter"}, {"datetaken": "2006-04-16 06:15:58", "license": "1", "title": "April 2006 044", "text": "", "album_id": "72057594109474817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/130161797_b0fc6640bb_o.jpg", "secret": "b0fc6640bb", "media": "photo", "latitude": "0", "id": "130161797", "tags": "easter"}, {"datetaken": "2006-04-16 06:24:46", "license": "1", "title": "April 2006 067", "text": "", "album_id": "72057594109474817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/130161830_9002d55abd_o.jpg", "secret": "9002d55abd", "media": "photo", "latitude": "0", "id": "130161830", "tags": "easter"}, {"datetaken": "2006-04-16 13:25:59", "license": "1", "title": "April 2006 086", "text": "", "album_id": "72057594109474817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/130161934_2e0e0d2f0c_o.jpg", "secret": "2e0e0d2f0c", "media": "photo", "latitude": "0", "id": "130161934", "tags": "easter"}, {"datetaken": "2006-04-16 13:26:19", "license": "1", "title": "April 2006 089", "text": "", "album_id": "72057594109474817", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/130162012_8beac413bf_o.jpg", "secret": "8beac413bf", "media": "photo", "latitude": "0", "id": "130162012", "tags": "easter"}, {"datetaken": "2006-04-14 21:43:13", "license": "1", "title": "1600P4140055", "text": "", "album_id": "72057594109571993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/130215968_c97701b90a_o.jpg", "secret": "c97701b90a", "media": "photo", "latitude": "0", "id": "130215968", "tags": "easter manchester goodfriday manchesterpassion"}, {"datetaken": "2006-04-14 21:43:24", "license": "1", "title": "1600P4140056", "text": "", "album_id": "72057594109571993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/130215969_baa30b5966_o.jpg", "secret": "baa30b5966", "media": "photo", "latitude": "0", "id": "130215969", "tags": "easter manchester manchesterpassion"}, {"datetaken": "2006-04-14 21:43:56", "license": "1", "title": "1200P4140058", "text": "", "album_id": "72057594109571993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/130218413_3bd6fe0df9_o.jpg", "secret": "3bd6fe0df9", "media": "photo", "latitude": "0", "id": "130218413", "tags": "easter manchester goodfriday manchesterpassion"}, {"datetaken": "2006-04-14 21:45:32", "license": "1", "title": "1600P4140064", "text": "", "album_id": "72057594109571993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/36/130215970_fd154010f0_o.jpg", "secret": "fd154010f0", "media": "photo", "latitude": "0", "id": "130215970", "tags": "easter manchester goodfriday manchesterpassion"}, {"datetaken": "2006-04-14 21:47:57", "license": "1", "title": "1600P4140070", "text": "", "album_id": "72057594109571993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/130218414_c5b0c8be25_o.jpg", "secret": "c5b0c8be25", "media": "photo", "latitude": "0", "id": "130218414", "tags": "easter manchester goodfriday manchesterpassion"}, {"datetaken": "2006-04-15 15:06:16", "license": "1", "title": "1600P4150077", "text": "", "album_id": "72057594109571993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/130224440_eda0f49e3a_o.jpg", "secret": "eda0f49e3a", "media": "photo", "latitude": "0", "id": "130224440", "tags": "england liverpool"}, {"datetaken": "2006-04-15 16:23:18", "license": "1", "title": "1600P4150079", "text": "", "album_id": "72057594109571993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/130224455_26322e3afe_o.jpg", "secret": "26322e3afe", "media": "photo", "latitude": "0", "id": "130224455", "tags": "england liverpool"}, {"datetaken": "2006-04-15 17:10:59", "license": "1", "title": "1600P4150085", "text": "", "album_id": "72057594109571993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/130224461_49812e0d28_o.jpg", "secret": "49812e0d28", "media": "photo", "latitude": "0", "id": "130224461", "tags": "england liverpool"}, {"datetaken": "2006-04-15 17:30:54", "license": "1", "title": "1600P4150088", "text": "", "album_id": "72057594109571993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/130222286_37f7812106_o.jpg", "secret": "37f7812106", "media": "photo", "latitude": "0", "id": "130222286", "tags": "england liverpool chinatown"}, {"datetaken": "2006-04-15 17:31:46", "license": "1", "title": "1600P4150089", "text": "", "album_id": "72057594109571993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/130222287_af4494a499_o.jpg", "secret": "af4494a499", "media": "photo", "latitude": "0", "id": "130222287", "tags": "england liverpool chinatown"}, {"datetaken": "2006-04-15 17:37:42", "license": "1", "title": "1600P4150090", "text": "", "album_id": "72057594109571993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/133539058_38662f59c2_o.jpg", "secret": "38662f59c2", "media": "photo", "latitude": "0", "id": "133539058", "tags": "england liverpool"}, {"datetaken": "2006-04-15 17:38:05", "license": "1", "title": "800P4150091", "text": "", "album_id": "72057594109571993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/130432417_638acd748a_o.jpg", "secret": "638acd748a", "media": "photo", "latitude": "0", "id": "130432417", "tags": "england signs beer liverpool"}, {"datetaken": "2006-04-16 16:54:19", "license": "1", "title": "1170P4160095", "text": "", "album_id": "72057594109571993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/133536115_07373bf9fa_o.jpg", "secret": "07373bf9fa", "media": "photo", "latitude": "0", "id": "133536115", "tags": "england manchester"}, {"datetaken": "2006-04-16 17:01:01", "license": "1", "title": "1600m-castlefieldP4160096", "text": "", "album_id": "72057594109571993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/130224416_4cac8748d1_o.jpg", "secret": "4cac8748d1", "media": "photo", "latitude": "0", "id": "130224416", "tags": "england manchester"}, {"datetaken": "2006-04-16 17:22:49", "license": "1", "title": "1000P4160101", "text": "", "album_id": "72057594109571993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/130224393_90e8f218d8_o.jpg", "secret": "90e8f218d8", "media": "photo", "latitude": "0", "id": "130224393", "tags": ""}, {"datetaken": "2006-04-16 21:06:06", "license": "1", "title": "1010P4160105", "text": "", "album_id": "72057594109571993", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/133543198_75cbb4bfcc_o.jpg", "secret": "75cbb4bfcc", "media": "photo", "latitude": "0", "id": "133543198", "tags": "england manchester chinatown"}, {"datetaken": "2006-04-16 14:33:02", "license": "6", "title": "B Rosen", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/130591626_400184f365_o.jpg", "secret": "400184f365", "media": "photo", "latitude": "0", "id": "130591626", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 14:34:47", "license": "6", "title": "B Rosen", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/130594939_d2e75680f6_o.jpg", "secret": "d2e75680f6", "media": "photo", "latitude": "0", "id": "130594939", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 14:36:56", "license": "6", "title": "BB Rosen", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/130587905_9de82d099c_o.jpg", "secret": "9de82d099c", "media": "photo", "latitude": "0", "id": "130587905", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 14:39:25", "license": "6", "title": "Resivoir Dog", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/130594289_7b7e94561f_o.jpg", "secret": "7b7e94561f", "media": "photo", "latitude": "0", "id": "130594289", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 14:39:56", "license": "6", "title": "B Rosen", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/130592846_90773f699a_o.jpg", "secret": "90773f699a", "media": "photo", "latitude": "0", "id": "130592846", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 14:40:57", "license": "6", "title": "B Rosen", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/130589287_bc6187e08a_o.jpg", "secret": "bc6187e08a", "media": "photo", "latitude": "0", "id": "130589287", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 14:44:30", "license": "6", "title": "B Rosen", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/130595484_ebd052c16e_o.jpg", "secret": "ebd052c16e", "media": "photo", "latitude": "0", "id": "130595484", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 14:45:21", "license": "6", "title": "B Rosen", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/130595960_253014bda6_o.jpg", "secret": "253014bda6", "media": "photo", "latitude": "0", "id": "130595960", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 14:46:00", "license": "6", "title": "B Rosen", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/130588288_db97a43b81_o.jpg", "secret": "db97a43b81", "media": "photo", "latitude": "0", "id": "130588288", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 14:46:29", "license": "6", "title": "B Rosen", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/130593435_4f1da8fd0f_o.jpg", "secret": "4f1da8fd0f", "media": "photo", "latitude": "0", "id": "130593435", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 14:49:12", "license": "6", "title": "B Rosen", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/130588686_f1e7383cc8_o.jpg", "secret": "f1e7383cc8", "media": "photo", "latitude": "0", "id": "130588686", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 14:50:30", "license": "6", "title": "B Rosen", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/130586213_b2e0ae3845_o.jpg", "secret": "b2e0ae3845", "media": "photo", "latitude": "0", "id": "130586213", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 14:51:06", "license": "6", "title": "B Rosen", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/130586432_65abf2f925_o.jpg", "secret": "65abf2f925", "media": "photo", "latitude": "0", "id": "130586432", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 14:52:40", "license": "6", "title": "B Rosen", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/130592125_478e28d44b_o.jpg", "secret": "478e28d44b", "media": "photo", "latitude": "0", "id": "130592125", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 14:55:19", "license": "6", "title": "Slow Day", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/130586675_8336bba614_o.jpg", "secret": "8336bba614", "media": "photo", "latitude": "0", "id": "130586675", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 14:56:07", "license": "6", "title": "Slow Day", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/130587045_716d784b92_o.jpg", "secret": "716d784b92", "media": "photo", "latitude": "0", "id": "130587045", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 14:57:09", "license": "6", "title": "B Rosen", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/130587315_90e6977116_o.jpg", "secret": "90e6977116", "media": "photo", "latitude": "0", "id": "130587315", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 14:59:24", "license": "6", "title": "B Rosen", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/130590438_18d35fd437_o.jpg", "secret": "18d35fd437", "media": "photo", "latitude": "0", "id": "130590438", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 15:00:57", "license": "6", "title": "B Rosen", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/130589744_368f594d86_o.jpg", "secret": "368f594d86", "media": "photo", "latitude": "0", "id": "130589744", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 15:01:45", "license": "6", "title": "B Rosen", "text": "", "album_id": "72057594110127650", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/130591045_bf39deeece_o.jpg", "secret": "bf39deeece", "media": "photo", "latitude": "0", "id": "130591045", "tags": "sunlight selfportrait me sunglasses myself easter outside outdoors cord autoportrait redsox jacket narcicists"}, {"datetaken": "2006-04-16 13:02:03", "license": "1", "title": "IMGP6306", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/130638214_40a25a4717_o.jpg", "secret": "40a25a4717", "media": "photo", "latitude": "0", "id": "130638214", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:34:45", "license": "1", "title": "IMGP6309", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/130638468_cfd89f59ae_o.jpg", "secret": "cfd89f59ae", "media": "photo", "latitude": "0", "id": "130638468", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:34:52", "license": "1", "title": "IMGP6310", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/130638576_a28fb30e2d_o.jpg", "secret": "a28fb30e2d", "media": "photo", "latitude": "0", "id": "130638576", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:34:58", "license": "1", "title": "IMGP6311", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/130638660_16cdf3136c_o.jpg", "secret": "16cdf3136c", "media": "photo", "latitude": "0", "id": "130638660", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:47:01", "license": "1", "title": "IMGP6330", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/130640411_9c302cfcac_o.jpg", "secret": "9c302cfcac", "media": "photo", "latitude": "0", "id": "130640411", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:47:07", "license": "1", "title": "IMGP6331", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/130640508_adc542f07a_o.jpg", "secret": "adc542f07a", "media": "photo", "latitude": "0", "id": "130640508", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:47:16", "license": "1", "title": "IMGP6332", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/130640560_78c829ed71_o.jpg", "secret": "78c829ed71", "media": "photo", "latitude": "0", "id": "130640560", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:47:50", "license": "1", "title": "IMGP6333", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/130640657_ee4a0264b5_o.jpg", "secret": "ee4a0264b5", "media": "photo", "latitude": "0", "id": "130640657", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:47:56", "license": "1", "title": "IMGP6334", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/130640800_e8bca71c16_o.jpg", "secret": "e8bca71c16", "media": "photo", "latitude": "0", "id": "130640800", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:48:11", "license": "1", "title": "IMGP6335", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/130640866_40d5ebd5db_o.jpg", "secret": "40d5ebd5db", "media": "photo", "latitude": "0", "id": "130640866", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:48:16", "license": "1", "title": "IMGP6336", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/130640957_006005267c_o.jpg", "secret": "006005267c", "media": "photo", "latitude": "0", "id": "130640957", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:48:21", "license": "1", "title": "IMGP6337", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/130641031_420f2cf5ae_o.jpg", "secret": "420f2cf5ae", "media": "photo", "latitude": "0", "id": "130641031", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:48:29", "license": "1", "title": "IMGP6338", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/130641085_0feddcb4c6_o.jpg", "secret": "0feddcb4c6", "media": "photo", "latitude": "0", "id": "130641085", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:48:43", "license": "1", "title": "IMGP6339", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/130641167_0710960bb0_o.jpg", "secret": "0710960bb0", "media": "photo", "latitude": "0", "id": "130641167", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:48:58", "license": "1", "title": "IMGP6340", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/130641301_36696409c4_o.jpg", "secret": "36696409c4", "media": "photo", "latitude": "0", "id": "130641301", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:49:18", "license": "1", "title": "IMGP6341", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/130641396_bcdcc3ee49_o.jpg", "secret": "bcdcc3ee49", "media": "photo", "latitude": "0", "id": "130641396", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:49:49", "license": "1", "title": "IMGP6343", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/130641624_47ff0608ab_o.jpg", "secret": "47ff0608ab", "media": "photo", "latitude": "0", "id": "130641624", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:50:00", "license": "1", "title": "IMGP6345", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/130641758_9dac0ace4f_o.jpg", "secret": "9dac0ace4f", "media": "photo", "latitude": "0", "id": "130641758", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:50:07", "license": "1", "title": "IMGP6346", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/130641868_ac1a7a5e53_o.jpg", "secret": "ac1a7a5e53", "media": "photo", "latitude": "0", "id": "130641868", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:50:31", "license": "1", "title": "IMGP6347", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/130641940_f84839162c_o.jpg", "secret": "f84839162c", "media": "photo", "latitude": "0", "id": "130641940", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 13:50:37", "license": "1", "title": "IMGP6348", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/130641997_58ba514a14_o.jpg", "secret": "58ba514a14", "media": "photo", "latitude": "0", "id": "130641997", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 14:59:30", "license": "1", "title": "IMGP6349", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/130644091_345c8f2abf_o.jpg", "secret": "345c8f2abf", "media": "photo", "latitude": "0", "id": "130644091", "tags": "easter 2006 easter2006"}, {"datetaken": "2006-04-16 16:13:47", "license": "1", "title": "cake", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/130643890_516027d094_o.jpg", "secret": "516027d094", "media": "photo", "latitude": "0", "id": "130643890", "tags": "easter strawberry 2006 easter2006 alienyarn ayseq2 aynameapril"}, {"datetaken": "2006-04-16 16:15:57", "license": "1", "title": "Easter lilies", "text": "", "album_id": "72057594110194999", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/130643998_22b5eb4ba8_o.jpg", "secret": "22b5eb4ba8", "media": "photo", "latitude": "0", "id": "130643998", "tags": "easter 2006 lilies easter2006 alienyarn ayseq1 aynameapril"}, {"datetaken": "2011-04-15 14:15:32", "license": "3", "title": "IMG_0821", "text": "", "album_id": "72157626392699829", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5226/5627553339_70c5ffe03c_o.jpg", "secret": "27e74d8cf7", "media": "photo", "latitude": "0", "id": "5627553339", "tags": "grenada"}, {"datetaken": "2011-04-15 15:43:10", "license": "3", "title": "IMG_0829", "text": "", "album_id": "72157626392699829", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5064/5627556253_442d07e367_o.jpg", "secret": "16beba5719", "media": "photo", "latitude": "0", "id": "5627556253", "tags": "grenada"}, {"datetaken": "2011-04-15 15:43:29", "license": "3", "title": "IMG_0830", "text": "", "album_id": "72157626392699829", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5068/5627560007_111ed7b875_o.jpg", "secret": "3a3c2e61d1", "media": "photo", "latitude": "0", "id": "5627560007", "tags": "grenada"}, {"datetaken": "2011-04-15 15:50:32", "license": "3", "title": "IMG_0836", "text": "", "album_id": "72157626392699829", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5265/5628147972_63c7ea5ef3_o.jpg", "secret": "6790c01d86", "media": "photo", "latitude": "0", "id": "5628147972", "tags": "grenada"}, {"datetaken": "2011-04-15 15:52:52", "license": "3", "title": "IMG_0839", "text": "", "album_id": "72157626392699829", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5221/5628150288_42806b04eb_o.jpg", "secret": "3a35270e7d", "media": "photo", "latitude": "0", "id": "5628150288", "tags": "grenada"}, {"datetaken": "2011-04-15 15:55:20", "license": "3", "title": "IMG_0841", "text": "", "album_id": "72157626392699829", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5067/5627567993_65c5e7d06e_o.jpg", "secret": "6b09864e85", "media": "photo", "latitude": "0", "id": "5627567993", "tags": "grenada"}, {"datetaken": "2011-04-15 15:57:26", "license": "3", "title": "IMG_0842", "text": "", "album_id": "72157626392699829", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5145/5628155704_4313fc4699_o.jpg", "secret": "27b4a4b3fc", "media": "photo", "latitude": "0", "id": "5628155704", "tags": "grenada"}, {"datetaken": "2011-04-15 15:57:31", "license": "3", "title": "En Vogue Couture", "text": "", "album_id": "72157626392699829", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5263/5628158332_30a000ae76_o.jpg", "secret": "fa15e826b6", "media": "photo", "latitude": "0", "id": "5628158332", "tags": "grenada"}, {"datetaken": "2011-04-15 15:59:23", "license": "3", "title": "IMG_0844", "text": "", "album_id": "72157626392699829", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5188/5627576365_fb60f51211_o.jpg", "secret": "246805e63c", "media": "photo", "latitude": "0", "id": "5627576365", "tags": "grenada"}, {"datetaken": "2011-04-15 16:31:17", "license": "3", "title": "IMG_0846", "text": "", "album_id": "72157626392699829", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5183/5627578775_82f7cc44f9_o.jpg", "secret": "bcdbe2e0fe", "media": "photo", "latitude": "0", "id": "5627578775", "tags": "grenada"}, {"datetaken": "2011-04-15 19:21:48", "license": "3", "title": "IMG_0849", "text": "", "album_id": "72157626392699829", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5062/5628165726_f5fc6c3f70_o.jpg", "secret": "88a63a1a30", "media": "photo", "latitude": "0", "id": "5628165726", "tags": "grenada"}, {"datetaken": "2011-04-15 19:22:28", "license": "3", "title": "IMG_0852", "text": "", "album_id": "72157626392699829", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5227/5627583361_cb72bdcefb_o.jpg", "secret": "c80885fdb9", "media": "photo", "latitude": "0", "id": "5627583361", "tags": "grenada"}, {"datetaken": "2011-04-15 19:25:59", "license": "3", "title": "pirated movie", "text": "", "album_id": "72157626392699829", "longitude": "0", "url_o": "https://farm6.staticflickr.com/5024/5627585231_2a48cf80ab_o.jpg", "secret": "58ce276a8b", "media": "photo", "latitude": "0", "id": "5627585231", "tags": "grenada"}, {"datetaken": "2005-05-25 15:20:38", "license": "3", "title": "cory-adin", "text": "", "album_id": "377577", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15685768_71e750c966_o.jpg", "secret": "71e750c966", "media": "photo", "latitude": "0", "id": "15685768", "tags": "cory brother"}, {"datetaken": "2005-05-25 15:20:38", "license": "3", "title": "fishing", "text": "", "album_id": "377577", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15685765_4e71a3be77_o.jpg", "secret": "4e71a3be77", "media": "photo", "latitude": "0", "id": "15685765", "tags": "cory brother"}, {"datetaken": "2005-05-25 15:20:40", "license": "3", "title": "Cory-xmas", "text": "", "album_id": "377577", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15685775_7d7ade2936_o.jpg", "secret": "7d7ade2936", "media": "photo", "latitude": "0", "id": "15685775", "tags": "cory brother"}, {"datetaken": "2005-05-25 15:20:40", "license": "3", "title": "cory-sf", "text": "", "album_id": "377577", "longitude": "0", "url_o": "https://farm1.staticflickr.com/11/15685774_1c457f57f5_o.jpg", "secret": "1c457f57f5", "media": "photo", "latitude": "0", "id": "15685774", "tags": "cory brother"}, {"datetaken": "2005-05-25 15:20:40", "license": "3", "title": "cory-n-brian", "text": "", "album_id": "377577", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/15685773_9cbaf9e9ff_o.jpg", "secret": "9cbaf9e9ff", "media": "photo", "latitude": "0", "id": "15685773", "tags": "cory brother"}, {"datetaken": "2005-05-25 15:20:41", "license": "3", "title": "Xmas", "text": "", "album_id": "377577", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/15685776_9f93da8198_o.jpg", "secret": "9f93da8198", "media": "photo", "latitude": "0", "id": "15685776", "tags": "cory brother"}, {"datetaken": "2005-05-25 15:20:44", "license": "3", "title": "Cory-xmas-wow", "text": "", "album_id": "377577", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15685795_2810d97df9_o.jpg", "secret": "2810d97df9", "media": "photo", "latitude": "0", "id": "15685795", "tags": "cory brother"}, {"datetaken": "2005-05-25 15:20:45", "license": "3", "title": "family-easter", "text": "", "album_id": "377577", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/15685798_ddbaf35ec9_o.jpg", "secret": "ddbaf35ec9", "media": "photo", "latitude": "0", "id": "15685798", "tags": "cory brother"}, {"datetaken": "2005-05-25 15:20:46", "license": "3", "title": "football-1", "text": "", "album_id": "377577", "longitude": "0", "url_o": "https://farm1.staticflickr.com/13/15685806_3d84fd5b0b_o.jpg", "secret": "3d84fd5b0b", "media": "photo", "latitude": "0", "id": "15685806", "tags": "cory brother"}, {"datetaken": "2005-05-25 15:20:46", "license": "3", "title": "autopia", "text": "", "album_id": "377577", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/15685801_c0e393b064_o.jpg", "secret": "c0e393b064", "media": "photo", "latitude": "0", "id": "15685801", "tags": "cory brother"}, {"datetaken": "2005-05-25 15:20:47", "license": "3", "title": "football-3", "text": "", "album_id": "377577", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/15685810_c7be8db58f_o.jpg", "secret": "c7be8db58f", "media": "photo", "latitude": "0", "id": "15685810", "tags": "cory brother"}, {"datetaken": "2005-05-25 15:20:47", "license": "3", "title": "football-2", "text": "", "album_id": "377577", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/15685807_fe1fa77236_o.jpg", "secret": "fe1fa77236", "media": "photo", "latitude": "0", "id": "15685807", "tags": "cory brother"}, {"datetaken": "2005-05-25 15:20:48", "license": "3", "title": "swim-1", "text": "", "album_id": "377577", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/15685812_df07f0a2cd_o.jpg", "secret": "df07f0a2cd", "media": "photo", "latitude": "0", "id": "15685812", "tags": "cory brother"}, {"datetaken": "2005-05-25 15:20:49", "license": "3", "title": "t-ball", "text": "", "album_id": "377577", "longitude": "0", "url_o": "https://farm1.staticflickr.com/12/15685815_6ba3f3e79c_o.jpg", "secret": "6ba3f3e79c", "media": "photo", "latitude": "0", "id": "15685815", "tags": "cory brother"}, {"datetaken": "2005-05-25 15:34:15", "license": "3", "title": "cory-car", "text": "", "album_id": "377577", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/15687911_34dbcdbad9_o.jpg", "secret": "34dbcdbad9", "media": "photo", "latitude": "0", "id": "15687911", "tags": "cory brother"}, {"datetaken": "2006-09-27 00:50:44", "license": "1", "title": "palestinianprotest2", "text": "", "album_id": "72157594301564931", "longitude": "12.498321", "url_o": "https://farm1.staticflickr.com/79/253857903_f137b14ce4_o.jpg", "secret": "f137b14ce4", "media": "photo", "latitude": "41.892566", "id": "253857903", "tags": "2001 vacation holiday vatican rome protestmarch"}, {"datetaken": "2006-09-27 00:50:48", "license": "1", "title": "popemass3", "text": "", "album_id": "72157594301564931", "longitude": "12.498321", "url_o": "https://farm1.staticflickr.com/96/253857923_84ca8cd93c_o.jpg", "secret": "84ca8cd93c", "media": "photo", "latitude": "41.892566", "id": "253857923", "tags": "2001 vacation holiday vatican rome stpeterssquare"}, {"datetaken": "2006-09-27 00:51:34", "license": "1", "title": "popemass2", "text": "", "album_id": "72157594301564931", "longitude": "12.498321", "url_o": "https://farm1.staticflickr.com/96/253858230_7b00818f47_o.jpg", "secret": "7b00818f47", "media": "photo", "latitude": "41.892566", "id": "253858230", "tags": "2001 vacation holiday vatican rome sunday mass stpeterssquare"}, {"datetaken": "2006-09-27 00:51:40", "license": "1", "title": "Pope_Mass_Rome5", "text": "", "album_id": "72157594301564931", "longitude": "12.498321", "url_o": "https://farm1.staticflickr.com/108/253858276_df1d2e0082_o.jpg", "secret": "df1d2e0082", "media": "photo", "latitude": "41.892566", "id": "253858276", "tags": "2001 vacation holiday pope vatican rome balcony sunday mass stpeterssquare"}, {"datetaken": "2006-09-27 00:51:44", "license": "1", "title": "popemass", "text": "", "album_id": "72157594301564931", "longitude": "12.498321", "url_o": "https://farm1.staticflickr.com/93/253858299_5384c23cd0_o.jpg", "secret": "5384c23cd0", "media": "photo", "latitude": "41.892566", "id": "253858299", "tags": "2001 vacation holiday pope vatican rome balcony sunday mass stpeterssquare"}, {"datetaken": "2006-09-27 00:52:09", "license": "1", "title": "popemassjenny", "text": "", "album_id": "72157594301564931", "longitude": "12.498321", "url_o": "https://farm1.staticflickr.com/84/253858470_d87e25baef_o.jpg", "secret": "d87e25baef", "media": "photo", "latitude": "41.892566", "id": "253858470", "tags": "2001 vacation holiday vatican rome sunday jenny mass stpeterssquare"}, {"datetaken": "2006-09-27 00:52:14", "license": "1", "title": "spanishstepsadam", "text": "", "album_id": "72157594301564931", "longitude": "12.498321", "url_o": "https://farm1.staticflickr.com/94/253858513_b2c8c92069_o.jpg", "secret": "b2c8c92069", "media": "photo", "latitude": "41.892566", "id": "253858513", "tags": "2001 vacation holiday vatican rome adam spanishsteps"}, {"datetaken": "2006-09-27 00:52:40", "license": "1", "title": "villabarberiniadam", "text": "", "album_id": "72157594301564931", "longitude": "12.498321", "url_o": "https://farm1.staticflickr.com/101/253858692_570a05fd10_o.jpg", "secret": "570a05fd10", "media": "photo", "latitude": "41.892566", "id": "253858692", "tags": "2001 vacation holiday vatican rome adam villabarberini"}, {"datetaken": "2006-09-27 00:52:47", "license": "1", "title": "villabarberinijenny", "text": "", "album_id": "72157594301564931", "longitude": "12.498321", "url_o": "https://farm1.staticflickr.com/80/253858728_16611b4e4b_o.jpg", "secret": "16611b4e4b", "media": "photo", "latitude": "41.892566", "id": "253858728", "tags": "2001 vacation holiday vatican rome garden jenny villabarberini"}, {"datetaken": "2006-09-27 00:53:13", "license": "1", "title": "adam_Rome-Italy_forum", "text": "", "album_id": "72157594301564931", "longitude": "12.498321", "url_o": "https://farm1.staticflickr.com/107/253858937_718299d08e_o.jpg", "secret": "718299d08e", "media": "photo", "latitude": "41.892566", "id": "253858937", "tags": "2001 vacation holiday vatican rome adam forum"}, {"datetaken": "2006-09-27 00:53:19", "license": "1", "title": "Adam-Tiny_Giant-Pyramid_Rome-Italy", "text": "", "album_id": "72157594301564931", "longitude": "12.498321", "url_o": "https://farm1.staticflickr.com/106/253858973_db1e4dafc7_o.jpg", "secret": "db1e4dafc7", "media": "photo", "latitude": "41.892566", "id": "253858973", "tags": "2001 vacation holiday vatican rome adam pyramid"}, {"datetaken": "2006-09-27 00:53:43", "license": "1", "title": "adamvaticanmuseumcone", "text": "", "album_id": "72157594301564931", "longitude": "12.498321", "url_o": "https://farm1.staticflickr.com/88/253859128_dbf295027b_o.jpg", "secret": "dbf295027b", "media": "photo", "latitude": "41.892566", "id": "253859128", "tags": "2001 vacation holiday vatican rome adam museum cone sarcophagus"}, {"datetaken": "2006-09-27 00:54:21", "license": "1", "title": "capuchin", "text": "", "album_id": "72157594301564931", "longitude": "12.498321", "url_o": "https://farm1.staticflickr.com/79/253859396_b624643b95_o.jpg", "secret": "b624643b95", "media": "photo", "latitude": "41.892566", "id": "253859396", "tags": "2001 vacation holiday vatican rome skulls tomb monks bones skeletons cimiterodeicappuccin"}, {"datetaken": "2006-09-27 00:54:26", "license": "1", "title": "Jenny_Rome-Italy_Forum", "text": "", "album_id": "72157594301564931", "longitude": "12.498321", "url_o": "https://farm1.staticflickr.com/86/253859426_a92365a080_o.jpg", "secret": "a92365a080", "media": "photo", "latitude": "41.892566", "id": "253859426", "tags": "2001 vacation holiday vatican rome forum jenny"}, {"datetaken": "2006-09-27 00:54:51", "license": "1", "title": "JennyStPeters", "text": "", "album_id": "72157594301564931", "longitude": "12.498321", "url_o": "https://farm1.staticflickr.com/89/253859589_303bd845b7_o.jpg", "secret": "303bd845b7", "media": "photo", "latitude": "41.892566", "id": "253859589", "tags": "2001 vacation holiday vatican rome jenny stpeterssquare"}, {"datetaken": "2006-09-27 00:54:56", "license": "1", "title": "jennyvaticanmuseumcone", "text": "", "album_id": "72157594301564931", "longitude": "12.498321", "url_o": "https://farm1.staticflickr.com/92/253859620_be382cf849_o.jpg", "secret": "be382cf849", "media": "photo", "latitude": "41.892566", "id": "253859620", "tags": "2001 vacation holiday vatican rome museum jenny"}, {"datetaken": "2006-09-27 00:55:01", "license": "1", "title": "palestinianprotest1", "text": "", "album_id": "72157594301564931", "longitude": "12.498321", "url_o": "https://farm1.staticflickr.com/96/253859644_f42466302b_o.jpg", "secret": "f42466302b", "media": "photo", "latitude": "41.892566", "id": "253859644", "tags": "2001 vacation holiday vatican rome protestmarch"}, {"datetaken": "2002-03-31 23:49:06", "license": "3", "title": "sunshine plaza...", "text": "", "album_id": "72157594503852049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/127/371625873_86528c448e_o.jpg", "secret": "86528c448e", "media": "photo", "latitude": "0", "id": "371625873", "tags": "easter eastersunday march312002 sherismith"}, {"datetaken": "2002-03-31 23:49:08", "license": "3", "title": "sheri helps steve load the car...", "text": "", "album_id": "72157594503852049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/141/371625899_c2a6e2bfd8_o.jpg", "secret": "c2a6e2bfd8", "media": "photo", "latitude": "0", "id": "371625899", "tags": "easter eastersunday march312002 sherismith"}, {"datetaken": "2002-03-31 23:49:10", "license": "3", "title": "sheri continues helping...", "text": "", "album_id": "72157594503852049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/103/371625911_cdfaa9208f_o.jpg", "secret": "cdfaa9208f", "media": "photo", "latitude": "0", "id": "371625911", "tags": "easter eastersunday march312002 sherismith"}, {"datetaken": "2002-03-31 23:49:12", "license": "3", "title": "sheri in the car...", "text": "", "album_id": "72157594503852049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/371628059_853ff320b2_o.jpg", "secret": "853ff320b2", "media": "photo", "latitude": "0", "id": "371628059", "tags": "easter eastersunday march312002 sherismith"}, {"datetaken": "2002-03-31 23:49:13", "license": "3", "title": "sheri: more laughing!", "text": "", "album_id": "72157594503852049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/152/371625935_9b3ff40d92_o.jpg", "secret": "9b3ff40d92", "media": "photo", "latitude": "0", "id": "371625935", "tags": "easter eastersunday march312002 sherismith"}, {"datetaken": "2002-03-31 23:49:15", "license": "3", "title": "sheri: laughing in the garage...", "text": "", "album_id": "72157594503852049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/121/371625956_897c7ed160_o.jpg", "secret": "897c7ed160", "media": "photo", "latitude": "0", "id": "371625956", "tags": "easter eastersunday march312002 sherismith"}, {"datetaken": "2002-03-31 23:49:16", "license": "3", "title": "sheri takes a picture of steve...", "text": "", "album_id": "72157594503852049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/371625969_05e7436221_o.jpg", "secret": "05e7436221", "media": "photo", "latitude": "0", "id": "371625969", "tags": "easter eastersunday march312002 sherismith"}, {"datetaken": "2002-03-31 23:49:18", "license": "3", "title": "another picture of steve...", "text": "", "album_id": "72157594503852049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/110/371625985_53627bb26f_o.jpg", "secret": "53627bb26f", "media": "photo", "latitude": "0", "id": "371625985", "tags": "easter eastersunday march312002 sherismith"}, {"datetaken": "2002-03-31 23:49:19", "license": "3", "title": "sheri & steve... (part 1)", "text": "", "album_id": "72157594503852049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/371625993_ba65bfe283_o.jpg", "secret": "ba65bfe283", "media": "photo", "latitude": "0", "id": "371625993", "tags": "easter eastersunday march312002 sherismith"}, {"datetaken": "2002-03-31 23:49:21", "license": "3", "title": "sheri & steve... (part 2)", "text": "", "album_id": "72157594503852049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/371626018_ce3f5e63b5_o.jpg", "secret": "ce3f5e63b5", "media": "photo", "latitude": "0", "id": "371626018", "tags": "easter kiss kisses eastersunday stevenlee march312002 steveleenow sherismith"}, {"datetaken": "2002-03-31 23:49:22", "license": "3", "title": "sheri & steve... (part 3)", "text": "", "album_id": "72157594503852049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/371626032_714b4f246d_o.jpg", "secret": "714b4f246d", "media": "photo", "latitude": "0", "id": "371626032", "tags": "easter eastersunday stevenlee march312002 steveleenow sherismith"}, {"datetaken": "2002-03-31 23:49:24", "license": "3", "title": "sheri & steve... (part 4)", "text": "", "album_id": "72157594503852049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/160/371626042_ee96e66c8c_o.jpg", "secret": "ee96e66c8c", "media": "photo", "latitude": "0", "id": "371626042", "tags": "easter eastersunday stevenlee march312002 steveleenow sherismith"}, {"datetaken": "2002-03-31 23:49:26", "license": "3", "title": "sheri & steve... (part 5)", "text": "", "album_id": "72157594503852049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/371626070_b2929850fb_o.jpg", "secret": "b2929850fb", "media": "photo", "latitude": "0", "id": "371626070", "tags": "easter eastersunday stevenlee march312002 steveleenow sherismith"}, {"datetaken": "2002-03-31 23:49:27", "license": "3", "title": "sheri & the bunny...", "text": "", "album_id": "72157594503852049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/371626082_62513cd665_o.jpg", "secret": "62513cd665", "media": "photo", "latitude": "0", "id": "371626082", "tags": "easter eastersunday march312002 sherismith"}, {"datetaken": "2002-03-31 23:49:28", "license": "3", "title": "steve & the bunny...", "text": "", "album_id": "72157594503852049", "longitude": "0", "url_o": "https://farm1.staticflickr.com/177/371626096_390ff6f3d1_o.jpg", "secret": "390ff6f3d1", "media": "photo", "latitude": "0", "id": "371626096", "tags": "bunny easter eastersunday stevenlee march312002 steveleenow sherismith"}, {"datetaken": "2010-03-25 15:34:26", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4470351654_3c31052a0c_o.jpg", "secret": "5ff6420dd5", "media": "photo", "latitude": "0", "id": "4470351654", "tags": "busstop haar veterinarycentre smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:34:32", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4469572517_36e8e0f944_o.jpg", "secret": "625f9a91c2", "media": "photo", "latitude": "0", "id": "4469572517", "tags": "busstop haar veterinarycentre smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:35:13", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4470350822_af8a6ebd75_o.jpg", "secret": "f8de081266", "media": "photo", "latitude": "0", "id": "4470350822", "tags": "busstop haar veterinarycentre smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:35:38", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2709/4469571779_b83fb34331_o.jpg", "secret": "d684eab2d8", "media": "photo", "latitude": "0", "id": "4469571779", "tags": "busstop haar veterinarycentre smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:36:10", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4470350376_0b46b88366_o.jpg", "secret": "b278788f4b", "media": "photo", "latitude": "0", "id": "4470350376", "tags": "busstop haar veterinarycentre smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:36:22", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2774/4470350084_35659c6fdf_o.jpg", "secret": "a34118b8cd", "media": "photo", "latitude": "0", "id": "4470350084", "tags": "busstop haar veterinarycentre smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:43:39", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4469544991_b27461c4a5_o.jpg", "secret": "6ae475065a", "media": "photo", "latitude": "0", "id": "4469544991", "tags": "trees busstop midlothian haar veterinarycentre dickvet smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:43:42", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4469544477_a1ed5c041a_o.jpg", "secret": "9be65737dd", "media": "photo", "latitude": "0", "id": "4469544477", "tags": "trees busstop midlothian haar veterinarycentre dickvet smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:44:06", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4470322832_2fbb324a2e_o.jpg", "secret": "c100ae8f7f", "media": "photo", "latitude": "0", "id": "4470322832", "tags": "trees busstop midlothian haar veterinarycentre dickvet smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:44:17", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4470322272_e1c6965dde_o.jpg", "secret": "69fa761565", "media": "photo", "latitude": "0", "id": "4470322272", "tags": "trees busstop midlothian haar veterinarycentre dickvet smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:44:28", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4470321916_93c6db546e_o.jpg", "secret": "9522ecd77e", "media": "photo", "latitude": "0", "id": "4470321916", "tags": "trees busstop midlothian haar veterinarycentre dickvet smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:44:36", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4470321388_03b4b261ae_o.jpg", "secret": "628648958a", "media": "photo", "latitude": "0", "id": "4470321388", "tags": "trees busstop midlothian haar veterinarycentre dickvet smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:44:47", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4469541857_cbb98874b8_o.jpg", "secret": "af8f857479", "media": "photo", "latitude": "0", "id": "4469541857", "tags": "trees busstop midlothian haar veterinarycentre dickvet smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:44:53", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4469541423_562c3aeee0_o.jpg", "secret": "dc0f93b841", "media": "photo", "latitude": "0", "id": "4469541423", "tags": "trees busstop midlothian haar veterinarycentre dickvet smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:45:04", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2740/4469540689_a5fdcc02b3_o.jpg", "secret": "75f6c5e320", "media": "photo", "latitude": "0", "id": "4469540689", "tags": "trees busstop midlothian haar veterinarycentre dickvet smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:45:12", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4470318786_aa9fee6a83_o.jpg", "secret": "b7d0ee0b13", "media": "photo", "latitude": "0", "id": "4470318786", "tags": "trees busstop midlothian haar veterinarycentre dickvet smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:45:18", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2794/4469539865_2329981c52_o.jpg", "secret": "2524e35c1d", "media": "photo", "latitude": "0", "id": "4469539865", "tags": "trees busstop midlothian haar veterinarycentre dickvet smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:45:25", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4469539345_477240e128_o.jpg", "secret": "e0ddf51df1", "media": "photo", "latitude": "0", "id": "4469539345", "tags": "trees busstop midlothian haar veterinarycentre dickvet smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:45:36", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2732/4469538963_3e042425f4_o.jpg", "secret": "0e5c549db9", "media": "photo", "latitude": "0", "id": "4469538963", "tags": "trees busstop midlothian haar veterinarycentre dickvet smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:46:07", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4469537983_8d6799ffab_o.jpg", "secret": "a63fdab432", "media": "photo", "latitude": "0", "id": "4469537983", "tags": "trees busstop midlothian haar veterinarycentre dickvet smallanimalhospital easterbush"}, {"datetaken": "2010-03-25 15:46:25", "license": "5", "title": "Lothian Lothlorien", "text": "", "album_id": "72157623595652263", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4469537713_087b2bc923_o.jpg", "secret": "e6c74f4477", "media": "photo", "latitude": "0", "id": "4469537713", "tags": "trees busstop midlothian haar veterinarycentre dickvet smallanimalhospital easterbush"}, {"datetaken": "2010-03-26 23:00:46", "license": "5", "title": "Easter Petits", "text": "", "album_id": "72157623720758318", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4470536398_771709fa0b_o.jpg", "secret": "ba3e76d259", "media": "photo", "latitude": "0", "id": "4470536398", "tags": "easter dessert pastel foodporn petitfour d40 teamcake"}, {"datetaken": "2010-03-26 23:05:24", "license": "5", "title": "Easter Petits", "text": "", "album_id": "72157623720758318", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4469758435_c7af88cde5_o.jpg", "secret": "a52f1e5a14", "media": "photo", "latitude": "0", "id": "4469758435", "tags": "easter dessert pastel foodporn petitfour d40 teamcake"}, {"datetaken": "2010-03-26 23:08:16", "license": "5", "title": "Easter Petits", "text": "", "album_id": "72157623720758318", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4070/4470537640_92a7e43d07_o.jpg", "secret": "065fee1e64", "media": "photo", "latitude": "0", "id": "4470537640", "tags": "easter dessert pastel foodporn petitfour d40 teamcake"}, {"datetaken": "2010-03-26 23:08:23", "license": "5", "title": "Easter Petits", "text": "", "album_id": "72157623720758318", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4470538384_3faec3a282_o.jpg", "secret": "8330c3c522", "media": "photo", "latitude": "0", "id": "4470538384", "tags": "easter dessert pastel foodporn petitfour d40 teamcake"}, {"datetaken": "2010-03-27 12:43:34", "license": "5", "title": "Easter Petits", "text": "", "album_id": "72157623720758318", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2698/4470539056_bbfb9fe6e1_o.jpg", "secret": "3b97c34fe2", "media": "photo", "latitude": "0", "id": "4470539056", "tags": "easter dessert pastel foodporn petitfour d40 teamcake"}, {"datetaken": "2010-03-27 12:46:08", "license": "5", "title": "Easter Petits", "text": "", "album_id": "72157623720758318", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4469761069_efe21ac6ab_o.jpg", "secret": "bbfed9ee52", "media": "photo", "latitude": "0", "id": "4469761069", "tags": "easter dessert pastel foodporn petitfour d40 teamcake"}, {"datetaken": "2010-03-27 12:47:49", "license": "5", "title": "Easter Petits", "text": "", "album_id": "72157623720758318", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4469761711_63b0646891_o.jpg", "secret": "9c01bb8836", "media": "photo", "latitude": "0", "id": "4469761711", "tags": "easter dessert pastel foodporn petitfour d40 teamcake"}, {"datetaken": "2010-03-27 12:51:27", "license": "5", "title": "Easter Petits", "text": "", "album_id": "72157623720758318", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4470540630_a2e7e55585_o.jpg", "secret": "8da5002cd8", "media": "photo", "latitude": "0", "id": "4470540630", "tags": "easter dessert pastel foodporn petitfour d40 teamcake"}, {"datetaken": "2010-03-27 12:52:39", "license": "5", "title": "Easter Petits", "text": "", "album_id": "72157623720758318", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4469762933_40ce98eabc_o.jpg", "secret": "cb28cdc379", "media": "photo", "latitude": "0", "id": "4469762933", "tags": "easter dessert pastel foodporn petitfour d40 teamcake"}, {"datetaken": "2010-03-27 12:56:16", "license": "5", "title": "Easter Petits", "text": "", "album_id": "72157623720758318", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4470541914_d66d09bb4c_o.jpg", "secret": "71c0bce8f1", "media": "photo", "latitude": "0", "id": "4470541914", "tags": "easter dessert pastel foodporn petitfour d40 teamcake"}, {"datetaken": "2010-03-27 12:58:57", "license": "5", "title": "Easter Petits", "text": "", "album_id": "72157623720758318", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2683/4469763951_6c8dbf8773_o.jpg", "secret": "c3e6b2a998", "media": "photo", "latitude": "0", "id": "4469763951", "tags": "easter dessert pastel foodporn petitfour d40 teamcake"}, {"datetaken": "2010-03-27 13:00:26", "license": "5", "title": "Easter Petits", "text": "", "album_id": "72157623720758318", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4470542888_0c8739a835_o.jpg", "secret": "7e3b7ecd94", "media": "photo", "latitude": "0", "id": "4470542888", "tags": "easter dessert pastel foodporn petitfour d40 teamcake"}, {"datetaken": "2010-03-27 13:00:55", "license": "5", "title": "Easter Petits", "text": "", "album_id": "72157623720758318", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2804/4470543584_f1602ae338_o.jpg", "secret": "fb89bbd682", "media": "photo", "latitude": "0", "id": "4470543584", "tags": "easter dessert pastel foodporn petitfour d40 teamcake"}, {"datetaken": "2010-03-27 13:01:28", "license": "5", "title": "Easter Petits", "text": "", "album_id": "72157623720758318", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4060/4470544274_6d667a5400_o.jpg", "secret": "ef42c4b46f", "media": "photo", "latitude": "0", "id": "4470544274", "tags": "easter dessert pastel foodporn petitfour d40 teamcake"}, {"datetaken": "2010-03-27 13:03:11", "license": "5", "title": "Easter Petits", "text": "", "album_id": "72157623720758318", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2690/4470544762_41299dbda0_o.jpg", "secret": "3973900995", "media": "photo", "latitude": "0", "id": "4470544762", "tags": "easter dessert pastel foodporn petitfour d40 teamcake"}, {"datetaken": "2010-03-27 13:06:34", "license": "5", "title": "Easter Petits", "text": "", "album_id": "72157623720758318", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4469766689_d4de08a2b6_o.jpg", "secret": "62cd128085", "media": "photo", "latitude": "0", "id": "4469766689", "tags": "easter dessert pastel foodporn petitfour d40 teamcake"}, {"datetaken": "2010-03-27 13:08:01", "license": "5", "title": "Easter Petits", "text": "", "album_id": "72157623720758318", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4030/4469767345_b5eab0a901_o.jpg", "secret": "9940218fd7", "media": "photo", "latitude": "0", "id": "4469767345", "tags": "easter dessert pastel foodporn petitfour d40 teamcake"}, {"datetaken": "2010-03-27 09:43:30", "license": "5", "title": "Big easter eggs", "text": "", "album_id": "72157623721595050", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4470109979_ddb0f6d47a_o.jpg", "secret": "20fd86eda5", "media": "photo", "latitude": "0", "id": "4470109979", "tags": "easter potsdamerplatz colourful shoppingcenter ostern lilli dekoration berlinmitte 27march2010"}, {"datetaken": "2010-03-27 09:44:01", "license": "5", "title": "*~~*", "text": "", "album_id": "72157623721595050", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4470894972_7cb26f7cbe_o.jpg", "secret": "ab6d300c10", "media": "photo", "latitude": "0", "id": "4470894972", "tags": "easter potsdamerplatz colourful shoppingcenter ostern lilli dekoration berlinmitte 27march2010"}, {"datetaken": "2010-03-27 09:44:12", "license": "5", "title": "Ei, Ei..", "text": "", "album_id": "72157623721595050", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2693/4470899316_4a847799a9_o.jpg", "secret": "1bb1b0efb7", "media": "photo", "latitude": "0", "id": "4470899316", "tags": "easter potsdamerplatz colourful shoppingcenter ostern lilli dekoration berlinmitte 27march2010"}, {"datetaken": "2010-03-27 09:55:26", "license": "5", "title": "Those eyes", "text": "", "album_id": "72157623721595050", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4470124395_1dcf0e4e8c_o.jpg", "secret": "1b384f0835", "media": "photo", "latitude": "0", "id": "4470124395", "tags": "easter potsdamerplatz colourful shoppingcenter ostern lilli dekoration berlinmitte 27march2010"}, {"datetaken": "2010-03-27 09:57:47", "license": "5", "title": "Hortensien", "text": "", "album_id": "72157623721595050", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2715/4470129875_ea23c5a579_o.jpg", "secret": "45a02ccb2b", "media": "photo", "latitude": "0", "id": "4470129875", "tags": "easter potsdamerplatz colourful shoppingcenter ostern lilli dekoration berlinmitte 27march2010 carmeninberlin"}, {"datetaken": "2010-03-27 09:58:39", "license": "5", "title": "Baumwoll Deko", "text": "", "album_id": "72157623721595050", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4470134253_067c552180_o.jpg", "secret": "1d06ebb1bb", "media": "photo", "latitude": "0", "id": "4470134253", "tags": "easter potsdamerplatz colourful shoppingcenter ostern lilli dekoration berlinmitte 27march2010"}, {"datetaken": "2010-03-27 09:59:56", "license": "5", "title": "*~*", "text": "", "album_id": "72157623721595050", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4470139241_f2b21f174a_o.jpg", "secret": "8da4e114d4", "media": "photo", "latitude": "0", "id": "4470139241", "tags": "easter potsdamerplatz colourful shoppingcenter ostern lilli dekoration berlinmitte 27march2010 carmeninberlin"}, {"datetaken": "2010-03-27 10:00:03", "license": "5", "title": "Ei Deko", "text": "", "album_id": "72157623721595050", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2696/4470923598_65fe820313_o.jpg", "secret": "4dbbbb137a", "media": "photo", "latitude": "0", "id": "4470923598", "tags": "easter potsdamerplatz colourful shoppingcenter ostern lilli dekoration berlinmitte 27march2010"}, {"datetaken": "2010-03-27 10:01:29", "license": "5", "title": "Osterei", "text": "", "album_id": "72157623721595050", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4470928760_14bf47e567_o.jpg", "secret": "3fbde91cfe", "media": "photo", "latitude": "0", "id": "4470928760", "tags": "easter potsdamerplatz colourful shoppingcenter ostern lilli dekoration berlinmitte 27march2010"}, {"datetaken": "2010-03-27 10:01:45", "license": "5", "title": "Ei", "text": "", "album_id": "72157623721595050", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4470933078_c828c14303_o.jpg", "secret": "dbf071cc93", "media": "photo", "latitude": "0", "id": "4470933078", "tags": "friends easter big potsdamerplatz colourful shoppingcenter ostern lilli easteregg dekoration berlinmitte 27march2010"}, {"datetaken": "2010-03-27 10:02:30", "license": "5", "title": "Oster Deko", "text": "", "album_id": "72157623721595050", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4470159151_ce2756ed39_o.jpg", "secret": "fdd97fbb71", "media": "photo", "latitude": "0", "id": "4470159151", "tags": "easter potsdamerplatz colourful shoppingcenter ostern lilli dekoration berlinmitte 27march2010"}, {"datetaken": "2010-03-27 10:02:50", "license": "5", "title": "Osterdekoration", "text": "", "album_id": "72157623721595050", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4470941288_96fefeb452_o.jpg", "secret": "6fef4efe62", "media": "photo", "latitude": "0", "id": "4470941288", "tags": "easter potsdamerplatz colourful shoppingcenter ostern lilli dekoration berlinmitte 27march2010"}, {"datetaken": "2005-03-26 22:16:02", "license": "3", "title": "IMG_0001_1", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7787974_36afd73472_o.jpg", "secret": "36afd73472", "media": "photo", "latitude": "0", "id": "7787974", "tags": "easter"}, {"datetaken": "2005-03-27 10:28:50", "license": "3", "title": "IMG_0002_1", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7787977_47a13b0aec_o.jpg", "secret": "47a13b0aec", "media": "photo", "latitude": "0", "id": "7787977", "tags": "easter"}, {"datetaken": "2005-03-27 10:29:22", "license": "3", "title": "IMG_0003_1", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7787980_9c5decbe6d_o.jpg", "secret": "9c5decbe6d", "media": "photo", "latitude": "0", "id": "7787980", "tags": "easter"}, {"datetaken": "2005-03-27 12:13:03", "license": "3", "title": "IMG_0004_1", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7787983_7af19a61b4_o.jpg", "secret": "7af19a61b4", "media": "photo", "latitude": "0", "id": "7787983", "tags": "easter"}, {"datetaken": "2005-03-27 12:15:03", "license": "3", "title": "IMG_0005_1", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7787985_f0d2e9e292_o.jpg", "secret": "f0d2e9e292", "media": "photo", "latitude": "0", "id": "7787985", "tags": "easter"}, {"datetaken": "2005-03-27 12:15:47", "license": "3", "title": "IMG_0006_1", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7787989_44ba186687_o.jpg", "secret": "44ba186687", "media": "photo", "latitude": "0", "id": "7787989", "tags": "easter"}, {"datetaken": "2005-03-27 12:18:24", "license": "3", "title": "IMG_0007_1", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7787999_19925218c8_o.jpg", "secret": "19925218c8", "media": "photo", "latitude": "0", "id": "7787999", "tags": "easter"}, {"datetaken": "2005-03-27 12:18:53", "license": "3", "title": "IMG_0008_1", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7788001_a10f6cda27_o.jpg", "secret": "a10f6cda27", "media": "photo", "latitude": "0", "id": "7788001", "tags": "easter"}, {"datetaken": "2005-03-27 12:19:16", "license": "3", "title": "IMG_0009_1", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7788003_7c46e20ed9_o.jpg", "secret": "7c46e20ed9", "media": "photo", "latitude": "0", "id": "7788003", "tags": "easter"}, {"datetaken": "2005-03-27 12:37:50", "license": "3", "title": "IMG_0010_1", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7788004_d9e873ad68_o.jpg", "secret": "d9e873ad68", "media": "photo", "latitude": "0", "id": "7788004", "tags": "easter"}, {"datetaken": "2005-03-27 12:40:32", "license": "3", "title": "IMG_0011_1", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7788006_778dd8e57d_o.jpg", "secret": "778dd8e57d", "media": "photo", "latitude": "0", "id": "7788006", "tags": "easter"}, {"datetaken": "2005-03-27 12:40:45", "license": "3", "title": "IMG_0012_1", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7788010_1e937dab9c_o.jpg", "secret": "1e937dab9c", "media": "photo", "latitude": "0", "id": "7788010", "tags": "easter"}, {"datetaken": "2005-03-27 12:41:29", "license": "3", "title": "IMG_0013_1", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7788030_d48f143bf7_o.jpg", "secret": "d48f143bf7", "media": "photo", "latitude": "0", "id": "7788030", "tags": "easter"}, {"datetaken": "2005-03-27 12:41:39", "license": "3", "title": "IMG_0014", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7788032_e27565658a_o.jpg", "secret": "e27565658a", "media": "photo", "latitude": "0", "id": "7788032", "tags": "easter"}, {"datetaken": "2005-03-27 12:41:53", "license": "3", "title": "IMG_0015", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7788036_d92f379256_o.jpg", "secret": "d92f379256", "media": "photo", "latitude": "0", "id": "7788036", "tags": "easter"}, {"datetaken": "2005-03-27 12:42:02", "license": "3", "title": "IMG_0016", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7788042_60144c8955_o.jpg", "secret": "60144c8955", "media": "photo", "latitude": "0", "id": "7788042", "tags": "easter"}, {"datetaken": "2005-03-27 12:42:11", "license": "3", "title": "IMG_0017", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7788055_57e14512f9_o.jpg", "secret": "57e14512f9", "media": "photo", "latitude": "0", "id": "7788055", "tags": "easter"}, {"datetaken": "2005-03-27 12:42:41", "license": "3", "title": "IMG_0018", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7788057_5cc3890178_o.jpg", "secret": "5cc3890178", "media": "photo", "latitude": "0", "id": "7788057", "tags": "easter"}, {"datetaken": "2005-03-27 13:45:00", "license": "3", "title": "IMG_0019", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7898448_2fb6d9cbf3_o.jpg", "secret": "2fb6d9cbf3", "media": "photo", "latitude": "0", "id": "7898448", "tags": "easter"}, {"datetaken": "2005-03-27 14:27:16", "license": "3", "title": "IMG_0020", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7788069_5dc9b510cb_o.jpg", "secret": "5dc9b510cb", "media": "photo", "latitude": "0", "id": "7788069", "tags": "easter"}, {"datetaken": "2005-03-27 14:27:30", "license": "3", "title": "IMG_0021", "text": "", "album_id": "196227", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7788081_bf5962b2dc_o.jpg", "secret": "bf5962b2dc", "media": "photo", "latitude": "0", "id": "7788081", "tags": "easter"}, {"datetaken": "2010-03-25 17:49:12", "license": "2", "title": "Heidi and James", "text": "", "album_id": "72157623609477127", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4475611071_422c37bfba_o.jpg", "secret": "e30f1229fa", "media": "photo", "latitude": "0", "id": "4475611071", "tags": "baby heidi"}, {"datetaken": "2010-03-25 18:05:38", "license": "2", "title": "Heidi", "text": "", "album_id": "72157623609477127", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4056/4480983095_96c94c030f_o.jpg", "secret": "231f00d6ae", "media": "photo", "latitude": "0", "id": "4480983095", "tags": ""}, {"datetaken": "2010-03-25 18:07:54", "license": "2", "title": "Where's the USB port?", "text": "", "album_id": "72157623609477127", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4475611991_4d6cca19fa_o.jpg", "secret": "be522f1e4d", "media": "photo", "latitude": "0", "id": "4475611991", "tags": "baby heidi"}, {"datetaken": "2010-03-25 18:20:22", "license": "2", "title": "Easter Baby", "text": "", "album_id": "72157623609477127", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4475612435_2908685972_o.jpg", "secret": "cc3042833c", "media": "photo", "latitude": "0", "id": "4475612435", "tags": "baby heidi"}, {"datetaken": "2010-03-25 18:23:19", "license": "2", "title": "Pam and Heidi", "text": "", "album_id": "72157623609477127", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2632/4476390018_9c2186f09f_o.jpg", "secret": "211ab02fac", "media": "photo", "latitude": "0", "id": "4476390018", "tags": "baby heidi"}, {"datetaken": "2010-03-25 18:47:33", "license": "2", "title": "Family", "text": "", "album_id": "72157623609477127", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4475614043_0daa774a64_o.jpg", "secret": "66c7e341b2", "media": "photo", "latitude": "0", "id": "4475614043", "tags": "baby heidi james pam"}, {"datetaken": "2010-03-25 18:51:10", "license": "2", "title": "James, Pam and Heidi", "text": "", "album_id": "72157623609477127", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4476391688_503dfcf70b_o.jpg", "secret": "b86790aa83", "media": "photo", "latitude": "0", "id": "4476391688", "tags": "baby heidi james pam"}, {"datetaken": "2010-03-25 18:54:44", "license": "2", "title": "Heidi with her Easter clothes", "text": "", "album_id": "72157623609477127", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4476392036_661496a4e6_o.jpg", "secret": "f6db6b3e2c", "media": "photo", "latitude": "0", "id": "4476392036", "tags": "baby heidi"}, {"datetaken": "2010-03-25 18:56:34", "license": "2", "title": "Heidi and Pam", "text": "", "album_id": "72157623609477127", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4480983803_e6b8341371_o.jpg", "secret": "c64bf4de85", "media": "photo", "latitude": "0", "id": "4480983803", "tags": ""}, {"datetaken": "2010-03-25 18:58:02", "license": "2", "title": "Family", "text": "", "album_id": "72157623609477127", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4476392662_17457964ba_o.jpg", "secret": "f8fc5184e1", "media": "photo", "latitude": "0", "id": "4476392662", "tags": "baby heidi james pam"}, {"datetaken": "2010-03-25 19:00:01", "license": "2", "title": "Helping Hands", "text": "", "album_id": "72157623609477127", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2733/4475616109_9eb4b6e997_o.jpg", "secret": "88983ba416", "media": "photo", "latitude": "0", "id": "4475616109", "tags": "baby heidi"}, {"datetaken": "2010-03-25 19:03:00", "license": "2", "title": "Family", "text": "", "album_id": "72157623609477127", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2735/4475616563_f219dac09b_o.jpg", "secret": "a652bd7459", "media": "photo", "latitude": "0", "id": "4475616563", "tags": "baby heidi james pam"}, {"datetaken": "2010-03-25 19:05:34", "license": "2", "title": "Floating", "text": "", "album_id": "72157623609477127", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4476393960_b3cbd98e50_o.jpg", "secret": "ff46f6614f", "media": "photo", "latitude": "0", "id": "4476393960", "tags": "baby heidi"}, {"datetaken": "2010-03-25 19:13:50", "license": "2", "title": "Closeup", "text": "", "album_id": "72157623609477127", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4476394404_883a0b5265_o.jpg", "secret": "3bb2a96460", "media": "photo", "latitude": "0", "id": "4476394404", "tags": "baby heidi"}, {"datetaken": "2010-03-25 19:21:10", "license": "2", "title": "2010-03-25_Heidi_015", "text": "", "album_id": "72157623609477127", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2760/4476394888_d54aa223db_o.jpg", "secret": "11a8376179", "media": "photo", "latitude": "0", "id": "4476394888", "tags": "baby heidi"}, {"datetaken": "2010-03-25 19:34:31", "license": "2", "title": "Heidi", "text": "", "album_id": "72157623609477127", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4480984691_baac879dee_o.jpg", "secret": "c58e48b58f", "media": "photo", "latitude": "0", "id": "4480984691", "tags": ""}, {"datetaken": "2010-03-25 19:35:54", "license": "2", "title": "Heidi and Pam", "text": "", "album_id": "72157623609477127", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2751/4476390638_9d4fe88a5c_o.jpg", "secret": "29249c21b2", "media": "photo", "latitude": "0", "id": "4476390638", "tags": "baby heidi"}, {"datetaken": "2005-03-26 10:54:12", "license": "4", "title": "IMG_1538", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7575165_f50f4697ac_o.jpg", "secret": "f50f4697ac", "media": "photo", "latitude": "0", "id": "7575165", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 10:54:24", "license": "4", "title": "IMG_1539", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7575230_77d831b65d_o.jpg", "secret": "77d831b65d", "media": "photo", "latitude": "0", "id": "7575230", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 10:55:16", "license": "4", "title": "IMG_1541", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7575281_c5b85d68c9_o.jpg", "secret": "c5b85d68c9", "media": "photo", "latitude": "0", "id": "7575281", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 10:55:38", "license": "4", "title": "IMG_1542", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7575305_d60c95c4a9_o.jpg", "secret": "d60c95c4a9", "media": "photo", "latitude": "0", "id": "7575305", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 10:55:59", "license": "4", "title": "IMG_1544", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7575364_29e3acd14c_o.jpg", "secret": "29e3acd14c", "media": "photo", "latitude": "0", "id": "7575364", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 10:56:07", "license": "4", "title": "IMG_1545", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7575424_884adedeb8_o.jpg", "secret": "884adedeb8", "media": "photo", "latitude": "0", "id": "7575424", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 10:56:14", "license": "4", "title": "IMG_1546", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7573917_51a5c0469b_o.jpg", "secret": "51a5c0469b", "media": "photo", "latitude": "0", "id": "7573917", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 10:56:42", "license": "4", "title": "IMG_1547", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7573964_b8db66a95d_o.jpg", "secret": "b8db66a95d", "media": "photo", "latitude": "0", "id": "7573964", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 11:00:05", "license": "4", "title": "IMG_1549", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7573998_45d6073081_o.jpg", "secret": "45d6073081", "media": "photo", "latitude": "0", "id": "7573998", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 11:00:15", "license": "4", "title": "IMG_1550", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7574052_f5a774aace_o.jpg", "secret": "f5a774aace", "media": "photo", "latitude": "0", "id": "7574052", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 11:02:40", "license": "4", "title": "IMG_1552", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7574131_76bfa11bfc_o.jpg", "secret": "76bfa11bfc", "media": "photo", "latitude": "0", "id": "7574131", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 11:03:50", "license": "4", "title": "Jessie", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7574296_4824aa1483_o.jpg", "secret": "4824aa1483", "media": "photo", "latitude": "0", "id": "7574296", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 14:21:36", "license": "4", "title": "IMG_1557", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7574346_104e89a7a1_o.jpg", "secret": "104e89a7a1", "media": "photo", "latitude": "0", "id": "7574346", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 14:21:47", "license": "4", "title": "IMG_1558", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7574368_a15c14a0bb_o.jpg", "secret": "a15c14a0bb", "media": "photo", "latitude": "0", "id": "7574368", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 14:46:01", "license": "4", "title": "IMG_1565", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7574395_c2d6497a97_o.jpg", "secret": "c2d6497a97", "media": "photo", "latitude": "0", "id": "7574395", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 14:46:30", "license": "4", "title": "Playing dressup", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7574452_88af728125_o.jpg", "secret": "88af728125", "media": "photo", "latitude": "0", "id": "7574452", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 14:46:43", "license": "4", "title": "IMG_1568", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7574495_4f7e9f2776_o.jpg", "secret": "4f7e9f2776", "media": "photo", "latitude": "0", "id": "7574495", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 14:57:35", "license": "4", "title": "IMG_1571", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7574574_77b67a8f1a_o.jpg", "secret": "77b67a8f1a", "media": "photo", "latitude": "0", "id": "7574574", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 15:00:59", "license": "4", "title": "IMG_1572", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7574622_09ee0137ca_o.jpg", "secret": "09ee0137ca", "media": "photo", "latitude": "0", "id": "7574622", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 15:01:10", "license": "4", "title": "IMG_1573", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7574677_0289bf7477_o.jpg", "secret": "0289bf7477", "media": "photo", "latitude": "0", "id": "7574677", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 15:02:08", "license": "4", "title": "IMG_1575", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7574757_68727d4359_o.jpg", "secret": "68727d4359", "media": "photo", "latitude": "0", "id": "7574757", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 15:02:22", "license": "4", "title": "IMG_1576", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7574801_2f0d5b9acc_o.jpg", "secret": "2f0d5b9acc", "media": "photo", "latitude": "0", "id": "7574801", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 15:02:37", "license": "4", "title": "IMG_1577", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7574867_10f6fe4b47_o.jpg", "secret": "10f6fe4b47", "media": "photo", "latitude": "0", "id": "7574867", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 15:53:27", "license": "4", "title": "Dressed up", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7574931_b4ae7ed1ff_o.jpg", "secret": "b4ae7ed1ff", "media": "photo", "latitude": "0", "id": "7574931", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 15:53:37", "license": "4", "title": "Dressed up for Easter", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7574986_0fbcd3e7ef_o.jpg", "secret": "0fbcd3e7ef", "media": "photo", "latitude": "0", "id": "7574986", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-26 15:53:45", "license": "4", "title": "IMG_1581", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7575047_a1aa34d801_o.jpg", "secret": "a1aa34d801", "media": "photo", "latitude": "0", "id": "7575047", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-27 09:38:42", "license": "4", "title": "IMG_1583", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7575443_661803b149_o.jpg", "secret": "661803b149", "media": "photo", "latitude": "0", "id": "7575443", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-27 09:39:17", "license": "4", "title": "IMG_1585", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7575463_f1a56feac7_o.jpg", "secret": "f1a56feac7", "media": "photo", "latitude": "0", "id": "7575463", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-27 09:39:52", "license": "4", "title": "IMG_1586", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7575510_1eee36514c_o.jpg", "secret": "1eee36514c", "media": "photo", "latitude": "0", "id": "7575510", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-27 09:40:23", "license": "4", "title": "IMG_1587", "text": "", "album_id": "189170", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7575568_0bb2b7e449_o.jpg", "secret": "0bb2b7e449", "media": "photo", "latitude": "0", "id": "7575568", "tags": "easter 2005 dkaz"}, {"datetaken": "2005-03-29 08:26:39", "license": "4", "title": "1982 Rosa Family", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7785016_8e0a665be2_o.jpg", "secret": "8e0a665be2", "media": "photo", "latitude": "0", "id": "7785016", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:26:40", "license": "4", "title": "1900 Sebastiano & Lucina Marcella", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7785018_4674df9537_o.jpg", "secret": "4674df9537", "media": "photo", "latitude": "0", "id": "7785018", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:26:41", "license": "4", "title": "1930 Angelo & Lugia Rosa (Ning)", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7785020_56170b5e01_o.jpg", "secret": "56170b5e01", "media": "photo", "latitude": "0", "id": "7785020", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:26:43", "license": "4", "title": "1951 Tony & Janette", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7785024_9af0461548_o.jpg", "secret": "9af0461548", "media": "photo", "latitude": "0", "id": "7785024", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:26:43", "license": "4", "title": "1940 Sebastiano & Lucina Marcella", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7785022_99f71c07a9_o.jpg", "secret": "99f71c07a9", "media": "photo", "latitude": "0", "id": "7785022", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:26:44", "license": "4", "title": "1951 Lugia Rosa & Tom Cross", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7785026_923e8881af_o.jpg", "secret": "923e8881af", "media": "photo", "latitude": "0", "id": "7785026", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:26:45", "license": "4", "title": "1951 Matt & Jannette", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7785028_717171b388_o.jpg", "secret": "717171b388", "media": "photo", "latitude": "0", "id": "7785028", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:26:46", "license": "4", "title": "1951 Tony & Jan Wedding Cake", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7785032_de7081b439_o.jpg", "secret": "de7081b439", "media": "photo", "latitude": "0", "id": "7785032", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:26:47", "license": "4", "title": "1951 Tony, Janette Konopka Wedding", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7785037_9078548ebe_o.jpg", "secret": "9078548ebe", "media": "photo", "latitude": "0", "id": "7785037", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:26:49", "license": "4", "title": "1954 Evy & Sisters", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7785039_659bc795be_o.jpg", "secret": "659bc795be", "media": "photo", "latitude": "0", "id": "7785039", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:26:50", "license": "4", "title": "1954 Rosa Family", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7785041_cc4e4d10b2_o.jpg", "secret": "cc4e4d10b2", "media": "photo", "latitude": "0", "id": "7785041", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:26:51", "license": "4", "title": "1955 Rosa Family", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7785044_9281a1cf24_o.jpg", "secret": "9281a1cf24", "media": "photo", "latitude": "0", "id": "7785044", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:26:52", "license": "4", "title": "1958 Nancy Konopka", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7785046_481da84d03_o.jpg", "secret": "481da84d03", "media": "photo", "latitude": "0", "id": "7785046", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:26:53", "license": "4", "title": "1958 Rosa Family", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7785047_c274f099a3_o.jpg", "secret": "c274f099a3", "media": "photo", "latitude": "0", "id": "7785047", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:26:56", "license": "4", "title": "1962 Carol Cross,Nancy & Amy Konopka", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7785058_88c600a322_o.jpg", "secret": "88c600a322", "media": "photo", "latitude": "0", "id": "7785058", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:26:56", "license": "4", "title": "1961 Rosa Family, Aunts & Uncles", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7785050_1975b423cf_o.jpg", "secret": "1975b423cf", "media": "photo", "latitude": "0", "id": "7785050", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:26:58", "license": "4", "title": "1962 Easter at Grandmoms", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7785062_16cd85aeaa_o.jpg", "secret": "16cd85aeaa", "media": "photo", "latitude": "0", "id": "7785062", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:27:00", "license": "4", "title": "1962 Tony, Jan, Mom, Evy & Nita", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7785067_72e164d1ff_o.jpg", "secret": "72e164d1ff", "media": "photo", "latitude": "0", "id": "7785067", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:27:02", "license": "4", "title": "1968 Camp Dundo, Virginia", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7785075_0241b67327_o.jpg", "secret": "0241b67327", "media": "photo", "latitude": "0", "id": "7785075", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:27:03", "license": "4", "title": "1968 Hungry Mother", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7785078_e92ef3a8a4_o.jpg", "secret": "e92ef3a8a4", "media": "photo", "latitude": "0", "id": "7785078", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:27:04", "license": "4", "title": "1970 Fort at St Augustine, Fl", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7785080_f32e720234_o.jpg", "secret": "f32e720234", "media": "photo", "latitude": "0", "id": "7785080", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:27:05", "license": "4", "title": "1970 Girls at Key West", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7785088_fcd07d7366_o.jpg", "secret": "fcd07d7366", "media": "photo", "latitude": "0", "id": "7785088", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:27:06", "license": "4", "title": "1973 Jan, Lena, Evy & Louise", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/7785089_99e2675025_o.jpg", "secret": "99e2675025", "media": "photo", "latitude": "0", "id": "7785089", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:27:08", "license": "4", "title": "1976 Six Rosa Girls", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7785090_5ed0d6ef94_o.jpg", "secret": "5ed0d6ef94", "media": "photo", "latitude": "0", "id": "7785090", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:27:09", "license": "4", "title": "1980 Konopka Family", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7785092_ebeef82e89_o.jpg", "secret": "ebeef82e89", "media": "photo", "latitude": "0", "id": "7785092", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:27:10", "license": "4", "title": "1981 Evy & Nancy", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7785094_05fea236e6_o.jpg", "secret": "05fea236e6", "media": "photo", "latitude": "0", "id": "7785094", "tags": "rosafamily"}, {"datetaken": "2005-03-29 08:27:11", "license": "4", "title": "1981 Nancy & Bob's Wedding", "text": "", "album_id": "194334", "longitude": "0", "url_o": "https://farm1.staticflickr.com/6/7785096_22853b0fa4_o.jpg", "secret": "22853b0fa4", "media": "photo", "latitude": "0", "id": "7785096", "tags": "rosafamily"}, {"datetaken": "2005-03-25 11:46:59", "license": "4", "title": "IMG_0753.JPG", "text": "", "album_id": "386051", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7975226_bce3e4f1a4_o.jpg", "secret": "bce3e4f1a4", "media": "photo", "latitude": "0", "id": "7975226", "tags": "easter egg"}, {"datetaken": "2005-03-25 11:48:10", "license": "4", "title": "IMG_0757.JPG", "text": "", "album_id": "386051", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7975355_0514e2a3ca_o.jpg", "secret": "0514e2a3ca", "media": "photo", "latitude": "0", "id": "7975355", "tags": "easter egg"}, {"datetaken": "2005-03-25 11:48:21", "license": "4", "title": "IMG_0758.JPG", "text": "", "album_id": "386051", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7975396_10382187af_o.jpg", "secret": "10382187af", "media": "photo", "latitude": "0", "id": "7975396", "tags": "easter egg"}, {"datetaken": "2005-03-25 11:48:37", "license": "4", "title": "IMG_0759.JPG", "text": "", "album_id": "386051", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7975438_c11447df2c_o.jpg", "secret": "c11447df2c", "media": "photo", "latitude": "0", "id": "7975438", "tags": "easter egg"}, {"datetaken": "2005-03-25 11:49:20", "license": "4", "title": "IMG_0761.JPG", "text": "", "album_id": "386051", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7975601_3626f4d133_o.jpg", "secret": "3626f4d133", "media": "photo", "latitude": "0", "id": "7975601", "tags": "easter egg"}, {"datetaken": "2005-03-25 11:49:42", "license": "4", "title": "IMG_0762.JPG", "text": "", "album_id": "386051", "longitude": "0", "url_o": "https://farm1.staticflickr.com/7/7975658_952dc9c6b8_o.jpg", "secret": "952dc9c6b8", "media": "photo", "latitude": "0", "id": "7975658", "tags": "easter eggs words seesomethingsaysomething"}, {"datetaken": "2005-03-25 11:49:49", "license": "4", "title": "say something if", "text": "", "album_id": "386051", "longitude": "0", "url_o": "https://farm1.staticflickr.com/8/7975722_1860fd0113_o.jpg", "secret": "1860fd0113", "media": "photo", "latitude": "0", "id": "7975722", "tags": "easter eggs words seesomethingsaysomething"}, {"datetaken": "2005-03-25 11:50:39", "license": "4", "title": "IMG_0765.JPG", "text": "", "album_id": "386051", "longitude": "0", "url_o": "https://farm1.staticflickr.com/5/7975871_a1afd6a969_o.jpg", "secret": "a1afd6a969", "media": "photo", "latitude": "0", "id": "7975871", "tags": "easter egg"}, {"datetaken": "2005-03-25 11:53:15", "license": "4", "title": "finalists", "text": "", "album_id": "386051", "longitude": "0", "url_o": "https://farm1.staticflickr.com/14/16091177_b25bed818e_o.jpg", "secret": "b25bed818e", "media": "photo", "latitude": "0", "id": "16091177", "tags": "easter eggs"}, {"datetaken": "2005-03-25 12:02:29", "license": "4", "title": "wonder", "text": "", "album_id": "386051", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16091005_bc94e66ea8_o.jpg", "secret": "bc94e66ea8", "media": "photo", "latitude": "0", "id": "16091005", "tags": "easter eggs"}, {"datetaken": "2005-03-25 12:02:50", "license": "4", "title": "kandinsky", "text": "", "album_id": "386051", "longitude": "0", "url_o": "https://farm1.staticflickr.com/9/16091243_59b4f87920_o.jpg", "secret": "59b4f87920", "media": "photo", "latitude": "0", "id": "16091243", "tags": "easter eggs"}, {"datetaken": "2005-03-25 12:03:05", "license": "4", "title": "moose?", "text": "", "album_id": "386051", "longitude": "0", "url_o": "https://farm1.staticflickr.com/10/16091033_f921416f04_o.jpg", "secret": "f921416f04", "media": "photo", "latitude": "0", "id": "16091033", "tags": "easter eggs"}, {"datetaken": "2006-04-16 06:48:21", "license": "4", "title": "Sunrise Service at Arlington Cemetary", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/53/129376338_feab213880_o.jpg", "secret": "feab213880", "media": "photo", "latitude": "38.876601", "id": "129376338", "tags": "church sunrise easter dc 2006 va dcist amphitheater arlingtoncemetary"}, {"datetaken": "2006-04-16 06:48:31", "license": "4", "title": "IMG_2064", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/45/129376448_4daff9857e_o.jpg", "secret": "4daff9857e", "media": "photo", "latitude": "38.876601", "id": "129376448", "tags": "church sunrise easter dc 2006 va amphitheater arlingtoncemetary"}, {"datetaken": "2006-04-16 06:48:46", "license": "4", "title": "IMG_2065", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/54/129376530_9d56519f05_o.jpg", "secret": "9d56519f05", "media": "photo", "latitude": "38.876601", "id": "129376530", "tags": "church sunrise easter dc 2006 va amphitheater arlingtoncemetary"}, {"datetaken": "2006-04-16 06:48:55", "license": "4", "title": "IMG_2066", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/51/129376605_466da621d9_o.jpg", "secret": "466da621d9", "media": "photo", "latitude": "38.876601", "id": "129376605", "tags": "church sunrise easter dc 2006 va amphitheater arlingtoncemetary"}, {"datetaken": "2006-04-16 07:27:44", "license": "4", "title": "IMG_2067", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/44/129376736_72f834ef28_o.jpg", "secret": "72f834ef28", "media": "photo", "latitude": "38.876601", "id": "129376736", "tags": "church sunrise easter dc 2006 va amphitheater arlingtoncemetary usarmychorus"}, {"datetaken": "2006-04-16 07:27:50", "license": "4", "title": "IMG_2068", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/48/129376824_72da579f5a_o.jpg", "secret": "72da579f5a", "media": "photo", "latitude": "38.876601", "id": "129376824", "tags": "church sunrise easter dc 2006 va amphitheater arlingtoncemetary"}, {"datetaken": "2006-04-16 07:27:59", "license": "4", "title": "IMG_2069", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/47/129376925_ab0072ca15_o.jpg", "secret": "ab0072ca15", "media": "photo", "latitude": "38.876601", "id": "129376925", "tags": "church sunrise easter dc 2006 va amphitheater arlingtoncemetary"}, {"datetaken": "2006-04-16 07:34:43", "license": "4", "title": "IMG_2070", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/45/129377023_96b9c5470f_o.jpg", "secret": "96b9c5470f", "media": "photo", "latitude": "38.876601", "id": "129377023", "tags": "church sunrise easter dc 2006 va amphitheater arlingtoncemetary usarmyband"}, {"datetaken": "2006-04-16 07:34:51", "license": "4", "title": "IMG_2071", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/54/129377148_9ed7f38703_o.jpg", "secret": "9ed7f38703", "media": "photo", "latitude": "38.876601", "id": "129377148", "tags": "church sunrise easter dc 2006 va amphitheater arlingtoncemetary usarmyband"}, {"datetaken": "2006-04-16 07:34:59", "license": "4", "title": "IMG_2072", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/55/129377266_eaf4965770_o.jpg", "secret": "eaf4965770", "media": "photo", "latitude": "38.876601", "id": "129377266", "tags": "church sunrise easter dc 2006 va amphitheater arlingtoncemetary usarmyband"}, {"datetaken": "2006-04-16 07:38:35", "license": "4", "title": "IMG_2073", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/47/129377372_97f9907703_o.jpg", "secret": "97f9907703", "media": "photo", "latitude": "38.876601", "id": "129377372", "tags": "sunrise dc crowd 2006 va changingoftheguard tomboftheunknownsoldier arlingtoncemetary"}, {"datetaken": "2006-04-16 07:38:48", "license": "4", "title": "changing of the guard", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/46/129377471_bd12e927a3_o.jpg", "secret": "bd12e927a3", "media": "photo", "latitude": "38.876601", "id": "129377471", "tags": "sunrise dc 2006 va changingoftheguard tomboftheunknownsoldier arlingtoncemetary"}, {"datetaken": "2006-04-16 07:42:48", "license": "4", "title": "IMG_2075", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/50/129377554_c11ad36ba4_o.jpg", "secret": "c11ad36ba4", "media": "photo", "latitude": "38.876601", "id": "129377554", "tags": "dc 2006 va tomboftheunknownsoldier arlingtoncemetary"}, {"datetaken": "2006-04-16 07:42:57", "license": "4", "title": "IMG_2076", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/46/129377672_2fc32b6187_o.jpg", "secret": "2fc32b6187", "media": "photo", "latitude": "38.876601", "id": "129377672", "tags": "dc 2006 va tomboftheunknownsoldier arlingtoncemetary"}, {"datetaken": "2006-04-16 07:43:32", "license": "4", "title": "IMG_2077", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/50/129377761_d642ca0034_o.jpg", "secret": "d642ca0034", "media": "photo", "latitude": "38.876601", "id": "129377761", "tags": "sunrise dc 2006 va tomboftheunknownsoldier arlingtoncemetary"}, {"datetaken": "2006-04-16 07:43:40", "license": "4", "title": "IMG_2078", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/47/129377855_17417eb802_o.jpg", "secret": "17417eb802", "media": "photo", "latitude": "38.876601", "id": "129377855", "tags": "dc 2006 va tomboftheunknownsoldier arlingtoncemetary"}, {"datetaken": "2006-04-16 07:43:48", "license": "4", "title": "IMG_2079", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/44/129377939_03fe8f08ee_o.jpg", "secret": "03fe8f08ee", "media": "photo", "latitude": "38.876601", "id": "129377939", "tags": "dc 2006 va tomboftheunknownsoldier arlingtoncemetary"}, {"datetaken": "2006-04-16 07:44:46", "license": "4", "title": "IMG_2080", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/49/129378050_98a66d0a09_o.jpg", "secret": "98a66d0a09", "media": "photo", "latitude": "38.876601", "id": "129378050", "tags": "sunrise dc 2006 va tomboftheunknownsoldier arlingtoncemetary"}, {"datetaken": "2006-04-16 07:46:03", "license": "4", "title": "IMG_2081", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/47/129378110_d50b45c1a6_o.jpg", "secret": "d50b45c1a6", "media": "photo", "latitude": "38.876601", "id": "129378110", "tags": "sunrise dc 2006 va arlingtoncemetary"}, {"datetaken": "2006-04-16 07:46:23", "license": "4", "title": "IMG_2082", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/46/129378188_952c205a1c_o.jpg", "secret": "952c205a1c", "media": "photo", "latitude": "38.876601", "id": "129378188", "tags": "sunrise dc 2006 va arlingtoncemetary"}, {"datetaken": "2006-04-16 07:46:33", "license": "4", "title": "IMG_2084", "text": "", "album_id": "72057594108360039", "longitude": "-77.072439", "url_o": "https://farm1.staticflickr.com/52/129378342_b0b12b8d17_o.jpg", "secret": "b0b12b8d17", "media": "photo", "latitude": "38.876601", "id": "129378342", "tags": "dc 2006 va arlingtoncemetary"}, {"datetaken": "2006-04-14 22:21:06", "license": "1", "title": "With Grandma", "text": "", "album_id": "72057594108488177", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/129467178_b8f59021d5_o.jpg", "secret": "b8f59021d5", "media": "photo", "latitude": "0", "id": "129467178", "tags": "alex easter cousins egg saturday hunt"}, {"datetaken": "2006-04-14 22:29:14", "license": "1", "title": "Dino boy.", "text": "", "album_id": "72057594108488177", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/129467223_1cf9d8e0fd_o.jpg", "secret": "1cf9d8e0fd", "media": "photo", "latitude": "0", "id": "129467223", "tags": "alex easter cousins egg saturday hunt"}, {"datetaken": "2006-04-14 22:29:24", "license": "1", "title": "I model Savanna's fur shrug.", "text": "", "album_id": "72057594108488177", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/129467249_549044a0aa_o.jpg", "secret": "549044a0aa", "media": "photo", "latitude": "0", "id": "129467249", "tags": "alex easter cousins egg saturday hunt"}, {"datetaken": "2006-04-14 22:30:20", "license": "1", "title": "Alex and cousin Charlie", "text": "", "album_id": "72057594108488177", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/129467294_5c8086a094_o.jpg", "secret": "5c8086a094", "media": "photo", "latitude": "0", "id": "129467294", "tags": "alex easter cousins egg saturday hunt"}, {"datetaken": "2006-04-14 23:08:18", "license": "1", "title": "Dave models a new outfit for Baby Sister.", "text": "", "album_id": "72057594108488177", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/129467334_8f4b557944_o.jpg", "secret": "8f4b557944", "media": "photo", "latitude": "0", "id": "129467334", "tags": "alex easter cousins egg saturday hunt"}, {"datetaken": "2006-04-15 00:34:29", "license": "1", "title": "The Easter Bunny came!", "text": "", "album_id": "72057594108488177", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/129467376_c8e7849fe8_o.jpg", "secret": "c8e7849fe8", "media": "photo", "latitude": "0", "id": "129467376", "tags": "alex easter cousins egg saturday hunt"}, {"datetaken": "2006-04-15 00:34:43", "license": "1", "title": "Obligatory pre-hunt photo op", "text": "", "album_id": "72057594108488177", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/129467478_2300420f8c_o.jpg", "secret": "2300420f8c", "media": "photo", "latitude": "0", "id": "129467478", "tags": "alex easter cousins egg saturday hunt"}, {"datetaken": "2006-04-15 00:35:48", "license": "1", "title": "Savanna and Alex", "text": "", "album_id": "72057594108488177", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/129467553_563943e868_o.jpg", "secret": "563943e868", "media": "photo", "latitude": "0", "id": "129467553", "tags": "alex easter cousins egg saturday hunt"}, {"datetaken": "2006-04-15 00:37:56", "license": "1", "title": "Hunting", "text": "", "album_id": "72057594108488177", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/129467651_4cc751a603_o.jpg", "secret": "4cc751a603", "media": "photo", "latitude": "0", "id": "129467651", "tags": "alex easter cousins egg saturday hunt"}, {"datetaken": "2006-04-15 00:41:51", "license": "1", "title": "Smile!", "text": "", "album_id": "72057594108488177", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/129467698_47f9ea304d_o.jpg", "secret": "47f9ea304d", "media": "photo", "latitude": "0", "id": "129467698", "tags": "alex easter cousins egg saturday hunt"}, {"datetaken": "2006-04-15 00:41:52", "license": "1", "title": "His egg stash", "text": "", "album_id": "72057594108488177", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/129467735_57a82deab3_o.jpg", "secret": "57a82deab3", "media": "photo", "latitude": "0", "id": "129467735", "tags": "alex easter cousins egg saturday hunt"}, {"datetaken": "2006-04-15 00:42:30", "license": "1", "title": "Happy Dooder", "text": "", "album_id": "72057594108488177", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/129467778_04eac69d96_o.jpg", "secret": "04eac69d96", "media": "photo", "latitude": "0", "id": "129467778", "tags": "alex easter cousins egg saturday hunt"}, {"datetaken": "2006-04-15 00:47:58", "license": "1", "title": "SCORE!", "text": "", "album_id": "72057594108488177", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/129467817_df557ac4f1_o.jpg", "secret": "df557ac4f1", "media": "photo", "latitude": "0", "id": "129467817", "tags": "alex easter candy cousins egg saturday hunt"}, {"datetaken": "2006-04-15 00:48:14", "license": "1", "title": "Choco Mush", "text": "", "album_id": "72057594108488177", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/129467845_effd56b191_o.jpg", "secret": "effd56b191", "media": "photo", "latitude": "0", "id": "129467845", "tags": "alex easter candy egg saturday hunt"}, {"datetaken": "2006-04-15 01:14:49", "license": "1", "title": "Watching Dan's wedding video", "text": "", "album_id": "72057594108488177", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/129467888_47aa35401b_o.jpg", "secret": "47aa35401b", "media": "photo", "latitude": "0", "id": "129467888", "tags": "easter saturday"}, {"datetaken": "2006-04-15 10:34:30", "license": "1", "title": "So. Totally. Stoked.", "text": "", "album_id": "72057594108488177", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/129467413_58bb912ee7_o.jpg", "secret": "58bb912ee7", "media": "photo", "latitude": "0", "id": "129467413", "tags": "alex easter cousins egg saturday hunt"}, {"datetaken": "2006-04-16 10:30:44", "license": "6", "title": "Eggy", "text": "", "album_id": "72057594108529533", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/129494564_ae7d12cf01_o.jpg", "secret": "ae7d12cf01", "media": "photo", "latitude": "0", "id": "129494564", "tags": "food easter 2006"}, {"datetaken": "2006-04-16 10:34:01", "license": "6", "title": "Some of the stash", "text": "", "album_id": "72057594108529533", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/129494565_fd9b227514_o.jpg", "secret": "fd9b227514", "media": "photo", "latitude": "0", "id": "129494565", "tags": "easter candy 2006"}, {"datetaken": "2006-04-16 10:35:45", "license": "6", "title": "Peep Bunnies", "text": "", "album_id": "72057594108529533", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/129494566_02e5d21806_o.jpg", "secret": "02e5d21806", "media": "photo", "latitude": "0", "id": "129494566", "tags": "easter candy 2006"}, {"datetaken": "2006-04-16 12:40:13", "license": "6", "title": "POCKY!", "text": "", "album_id": "72057594108529533", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/129494567_383a3cb2df_o.jpg", "secret": "383a3cb2df", "media": "photo", "latitude": "0", "id": "129494567", "tags": "easter japanese candy 2006"}, {"datetaken": "2006-04-16 12:41:57", "license": "6", "title": "\u304a\u83d3\u5b50", "text": "", "album_id": "72057594108529533", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/129494568_3bf588dec4_o.jpg", "secret": "3bf588dec4", "media": "photo", "latitude": "0", "id": "129494568", "tags": "easter japanese candy 2006"}, {"datetaken": "2006-04-16 15:18:24", "license": "6", "title": "Po-ta-to", "text": "", "album_id": "72057594108529533", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/129833766_08c084515e_o.jpg", "secret": "08c084515e", "media": "photo", "latitude": "0", "id": "129833766", "tags": "food easter 2006"}, {"datetaken": "2006-04-16 15:18:46", "license": "6", "title": "How about some HAM?", "text": "", "album_id": "72057594108529533", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/129833767_4e1b87b380_o.jpg", "secret": "4e1b87b380", "media": "photo", "latitude": "0", "id": "129833767", "tags": "food easter 2006"}, {"datetaken": "2006-04-16 15:19:01", "license": "6", "title": "On a ROLL", "text": "", "album_id": "72057594108529533", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/129833768_a31bb143ce_o.jpg", "secret": "a31bb143ce", "media": "photo", "latitude": "0", "id": "129833768", "tags": "food easter 2006"}, {"datetaken": "2006-04-16 15:21:26", "license": "6", "title": "Full plate", "text": "", "album_id": "72057594108529533", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/129833769_01ac706bfb_o.jpg", "secret": "01ac706bfb", "media": "photo", "latitude": "0", "id": "129833769", "tags": "food easter 2006"}, {"datetaken": "2006-04-16 15:23:38", "license": "6", "title": "Dining with friends", "text": "", "album_id": "72057594108529533", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/129833770_67bfa5e45e_o.jpg", "secret": "67bfa5e45e", "media": "photo", "latitude": "0", "id": "129833770", "tags": "family friends food easter 2006"}, {"datetaken": "2006-04-16 15:59:18", "license": "6", "title": "HAM...PART TWO", "text": "", "album_id": "72057594108529533", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/129833771_59d81e15ca_o.jpg", "secret": "59d81e15ca", "media": "photo", "latitude": "0", "id": "129833771", "tags": "food easter 2006"}, {"datetaken": "2006-04-16 16:41:06", "license": "6", "title": "Creampuff Shuffle", "text": "", "album_id": "72057594108529533", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/129841059_807eaf660e_o.jpg", "secret": "807eaf660e", "media": "photo", "latitude": "0", "id": "129841059", "tags": "food easter 2006"}, {"datetaken": "2006-04-16 16:45:44", "license": "6", "title": "Before I ate him...", "text": "", "album_id": "72057594108529533", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/129841061_f896f233b3_o.jpg", "secret": "f896f233b3", "media": "photo", "latitude": "0", "id": "129841061", "tags": "food easter 2006"}, {"datetaken": "2006-04-16 16:46:46", "license": "6", "title": "Italian Easter Bread", "text": "", "album_id": "72057594108529533", "longitude": "0", "url_o": "https://farm1.staticflickr.com/53/129841062_c802e9ca96_o.jpg", "secret": "c802e9ca96", "media": "photo", "latitude": "0", "id": "129841062", "tags": "food easter 2006"}, {"datetaken": "2006-04-13 21:35:23", "license": "4", "title": "DSC01929", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/129495896_db8672974b_o.jpg", "secret": "db8672974b", "media": "photo", "latitude": "0", "id": "129495896", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 21:40:53", "license": "4", "title": "DSC01934", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/129496475_2d09406027_o.jpg", "secret": "2d09406027", "media": "photo", "latitude": "0", "id": "129496475", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 21:41:01", "license": "4", "title": "DSC01935", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/129497175_51ba5a7867_o.jpg", "secret": "51ba5a7867", "media": "photo", "latitude": "0", "id": "129497175", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 21:41:23", "license": "4", "title": "DSC01936", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/129497975_2a178f3f5e_o.jpg", "secret": "2a178f3f5e", "media": "photo", "latitude": "0", "id": "129497975", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 21:43:01", "license": "4", "title": "DSC01941", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/129499012_0f22131219_o.jpg", "secret": "0f22131219", "media": "photo", "latitude": "0", "id": "129499012", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 21:48:56", "license": "4", "title": "DSC01947", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/129499736_126eb6a900_o.jpg", "secret": "126eb6a900", "media": "photo", "latitude": "0", "id": "129499736", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 21:56:07", "license": "4", "title": "DSC01948", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/129500699_bd3e7008e2_o.jpg", "secret": "bd3e7008e2", "media": "photo", "latitude": "0", "id": "129500699", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 21:57:02", "license": "4", "title": "DSC01953", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/129501362_12059357c5_o.jpg", "secret": "12059357c5", "media": "photo", "latitude": "0", "id": "129501362", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 21:59:29", "license": "4", "title": "DSC01957", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/129502266_153548a768_o.jpg", "secret": "153548a768", "media": "photo", "latitude": "0", "id": "129502266", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 22:17:17", "license": "4", "title": "DSC01966", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/129503145_a462a60a98_o.jpg", "secret": "a462a60a98", "media": "photo", "latitude": "0", "id": "129503145", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 22:17:56", "license": "4", "title": "DSC01967", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/129503874_566476af37_o.jpg", "secret": "566476af37", "media": "photo", "latitude": "0", "id": "129503874", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 22:18:21", "license": "4", "title": "DSC01968", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/35/129504723_39ca2ea457_o.jpg", "secret": "39ca2ea457", "media": "photo", "latitude": "0", "id": "129504723", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 22:18:46", "license": "4", "title": "DSC01969", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/129505358_d21f185f6a_o.jpg", "secret": "d21f185f6a", "media": "photo", "latitude": "0", "id": "129505358", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 22:20:20", "license": "4", "title": "DSC01971", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/129506036_2aef6f916c_o.jpg", "secret": "2aef6f916c", "media": "photo", "latitude": "0", "id": "129506036", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 22:20:30", "license": "4", "title": "DSC01972", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/129506650_d27422eafa_o.jpg", "secret": "d27422eafa", "media": "photo", "latitude": "0", "id": "129506650", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 22:21:01", "license": "4", "title": "DSC01974", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/129507404_7917086e0e_o.jpg", "secret": "7917086e0e", "media": "photo", "latitude": "0", "id": "129507404", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 22:27:47", "license": "4", "title": "DSC01979", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/129508591_9317d66c22_o.jpg", "secret": "9317d66c22", "media": "photo", "latitude": "0", "id": "129508591", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 22:30:39", "license": "4", "title": "DSC01980", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/129509409_abf29c07bf_o.jpg", "secret": "abf29c07bf", "media": "photo", "latitude": "0", "id": "129509409", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 22:33:38", "license": "4", "title": "DSC01983", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/129510497_dff1c8c689_o.jpg", "secret": "dff1c8c689", "media": "photo", "latitude": "0", "id": "129510497", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2006-04-13 22:34:33", "license": "4", "title": "DSC01985", "text": "", "album_id": "72057594108549896", "longitude": "0", "url_o": "https://farm1.staticflickr.com/54/129511060_4f17346b7e_o.jpg", "secret": "4f17346b7e", "media": "photo", "latitude": "0", "id": "129511060", "tags": "mississippi easter egg madison hunt mra"}, {"datetaken": "2007-01-16 22:40:57", "license": "2", "title": "Bath Baby", "text": "", "album_id": "72157594484327927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/360307030_855ef2874d_o.jpg", "secret": "855ef2874d", "media": "photo", "latitude": "0", "id": "360307030", "tags": "baby bath toddler julie little towels earlydays underone"}, {"datetaken": "2007-01-16 22:42:12", "license": "2", "title": "May I Have This Dance?", "text": "", "album_id": "72157594484327927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/363671877_00d5adb491_o.jpg", "secret": "00d5adb491", "media": "photo", "latitude": "0", "id": "363671877", "tags": "wedding love home dance dad julie dancing 1980s"}, {"datetaken": "2007-01-16 22:42:51", "license": "2", "title": "True Love", "text": "", "album_id": "72157594484327927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/361076669_ecceda0391_o.jpg", "secret": "ecceda0391", "media": "photo", "latitude": "0", "id": "361076669", "tags": "dog pet love beagle julie little young supper earlydays"}, {"datetaken": "2007-01-16 22:45:51", "license": "2", "title": "Bumble Bees", "text": "", "album_id": "72157594484327927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/153/361076430_9d22b236c3_o.jpg", "secret": "9d22b236c3", "media": "photo", "latitude": "0", "id": "361076430", "tags": "dance julie little young recital bee bumble auntmary earlydays"}, {"datetaken": "2007-01-16 22:46:36", "license": "2", "title": "Grandpa's Hair", "text": "", "album_id": "72157594484327927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/158/361076758_a977ab502e_o.jpg", "secret": "a977ab502e", "media": "photo", "latitude": "0", "id": "361076758", "tags": "pool hair julie little young brush grandpa comb sunbathing earlydays"}, {"datetaken": "2007-01-16 22:47:28", "license": "2", "title": "The Falls", "text": "", "album_id": "72157594484327927", "longitude": "-79.067573", "url_o": "https://farm1.staticflickr.com/148/361076793_3974c2713f_o.jpg", "secret": "3974c2713f", "media": "photo", "latitude": "43.088964", "id": "361076793", "tags": "waterfall julie little niagrafalls young earlydays"}, {"datetaken": "2007-01-16 22:47:48", "license": "2", "title": "Sleeping", "text": "", "album_id": "72157594484327927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/146/361076559_228a8880c7_o.jpg", "secret": "228a8880c7", "media": "photo", "latitude": "0", "id": "361076559", "tags": "love dad nap julie little sleep young earlydays"}, {"datetaken": "2007-01-16 22:48:15", "license": "2", "title": "Sailin with Mom", "text": "", "album_id": "72157594484327927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/128/361076624_c5c55f3729_o.jpg", "secret": "c5c55f3729", "media": "photo", "latitude": "0", "id": "361076624", "tags": "love mom boat julie little young earlydays"}, {"datetaken": "2007-01-16 22:49:59", "license": "2", "title": "First Halloween", "text": "", "album_id": "72157594484327927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/157/360306891_9f1eb055a6_o.jpg", "secret": "9f1eb055a6", "media": "photo", "latitude": "0", "id": "360306891", "tags": "baby halloween julie little clown earlydays underone"}, {"datetaken": "2007-01-16 22:50:08", "license": "2", "title": "New Orleans Pidgeons", "text": "", "album_id": "72157594484327927", "longitude": "-90.062881", "url_o": "https://farm1.staticflickr.com/126/360306856_cd3966f299_o.jpg", "secret": "cd3966f299", "media": "photo", "latitude": "29.957416", "id": "360306856", "tags": "baby mom julie little neworleans buggy pidgeon earlydays underone"}, {"datetaken": "2007-01-16 22:50:31", "license": "2", "title": "One Month Old", "text": "", "album_id": "72157594484327927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/137/360306815_798b016550_o.jpg", "secret": "798b016550", "media": "photo", "latitude": "0", "id": "360306815", "tags": "baby mom dad julie little stephanie unclejoe earlydays auntgeri underone dziadzu"}, {"datetaken": "2007-01-16 22:54:32", "license": "2", "title": "First Haircut!", "text": "", "album_id": "72157594484327927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/124/360306831_b53c16b137_o.jpg", "secret": "b53c16b137", "media": "photo", "latitude": "0", "id": "360306831", "tags": "baby haircut julie little earlydays auntgeri underone"}, {"datetaken": "2007-01-16 22:54:37", "license": "2", "title": "Racin'", "text": "", "album_id": "72157594484327927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/144/360306907_17717af25f_o.jpg", "secret": "17717af25f", "media": "photo", "latitude": "0", "id": "360306907", "tags": "carnival baby racecar julie little earlydays underone"}, {"datetaken": "2007-01-16 22:54:39", "license": "2", "title": "Parade in Philly", "text": "", "album_id": "72157594484327927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/155/360306923_42f846f2f1_o.jpg", "secret": "42f846f2f1", "media": "photo", "latitude": "0", "id": "360306923", "tags": "baby rain umbrella julie little earlydays underone"}, {"datetaken": "2007-01-16 22:54:39", "license": "2", "title": "First \"Do\"", "text": "", "album_id": "72157594484327927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/360306942_b8372eb620_o.jpg", "secret": "b8372eb620", "media": "photo", "latitude": "0", "id": "360306942", "tags": "baby julie little earlydays underone"}, {"datetaken": "2007-01-16 22:54:42", "license": "2", "title": "Second Easter", "text": "", "album_id": "72157594484327927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/147/360306961_dadf762822_o.jpg", "secret": "dadf762822", "media": "photo", "latitude": "0", "id": "360306961", "tags": "baby bunny easter julie basket little eggs earlydays underone"}, {"datetaken": "2007-01-16 22:54:43", "license": "2", "title": "Helping Paint", "text": "", "album_id": "72157594484327927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/131/360306981_93d5791d56_o.jpg", "secret": "93d5791d56", "media": "photo", "latitude": "0", "id": "360306981", "tags": "baby painting julie little earlydays underone"}, {"datetaken": "2007-01-16 22:54:45", "license": "2", "title": "My First Birthday", "text": "", "album_id": "72157594484327927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/164/360306999_72849517e2_o.jpg", "secret": "72849517e2", "media": "photo", "latitude": "0", "id": "360306999", "tags": "birthday baby cake one bigbird dad julie little earlydays underone"}, {"datetaken": "2007-01-17 17:04:39", "license": "2", "title": "Second Dance Recital", "text": "", "album_id": "72157594484327927", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/361076466_64721168d6_o.jpg", "secret": "64721168d6", "media": "photo", "latitude": "0", "id": "361076466", "tags": "dance julie little rehearsal young recital tap leotard earlydays"}, {"datetaken": "2007-02-07 17:39:41", "license": "4", "title": "_MG_6158.jpg", "text": "", "album_id": "72157594523668593", "longitude": "0", "url_o": "https://farm1.staticflickr.com/185/383190357_f7110ea0d9_o.jpg", "secret": "f7110ea0d9", "media": "photo", "latitude": "0", "id": "383190357", "tags": "secret easteregg wiisports wiitennis"}, {"datetaken": "2007-02-07 17:40:19", "license": "4", "title": "_MG_6160.jpg", "text": "", "album_id": "72157594523668593", "longitude": "0", "url_o": "https://farm1.staticflickr.com/140/383190434_b319bd0232_o.jpg", "secret": "b319bd0232", "media": "photo", "latitude": "0", "id": "383190434", "tags": "secret easteregg wiisports wiitennis"}, {"datetaken": "2007-02-07 17:43:40", "license": "4", "title": "_MG_6175.jpg", "text": "", "album_id": "72157594523668593", "longitude": "0", "url_o": "https://farm1.staticflickr.com/169/383190614_baf334ecdb_o.jpg", "secret": "baf334ecdb", "media": "photo", "latitude": "0", "id": "383190614", "tags": "secret easteregg wiisports wiitennis"}, {"datetaken": "2007-02-07 17:43:47", "license": "4", "title": "_MG_6176.jpg", "text": "", "album_id": "72157594523668593", "longitude": "0", "url_o": "https://farm1.staticflickr.com/169/383190816_d21fbe733b_o.jpg", "secret": "d21fbe733b", "media": "photo", "latitude": "0", "id": "383190816", "tags": "secret easteregg wiisports wiitennis"}, {"datetaken": "2007-02-07 17:43:59", "license": "4", "title": "_MG_6177.jpg", "text": "", "album_id": "72157594523668593", "longitude": "0", "url_o": "https://farm1.staticflickr.com/123/383190957_38f98ff83f_o.jpg", "secret": "38f98ff83f", "media": "photo", "latitude": "0", "id": "383190957", "tags": "secret easteregg wiisports wiitennis"}, {"datetaken": "2007-02-07 17:44:02", "license": "4", "title": "_MG_6178.jpg", "text": "", "album_id": "72157594523668593", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/383191077_38ce1400de_o.jpg", "secret": "38ce1400de", "media": "photo", "latitude": "0", "id": "383191077", "tags": "secret easteregg wiisports wiitennis"}, {"datetaken": "2007-02-07 17:44:03", "license": "4", "title": "_MG_6179.jpg", "text": "", "album_id": "72157594523668593", "longitude": "0", "url_o": "https://farm1.staticflickr.com/173/383191153_19f15a95aa_o.jpg", "secret": "19f15a95aa", "media": "photo", "latitude": "0", "id": "383191153", "tags": "secret easteregg wiisports wiitennis"}, {"datetaken": "2007-02-07 17:44:14", "license": "4", "title": "_MG_6182.jpg", "text": "", "album_id": "72157594523668593", "longitude": "0", "url_o": "https://farm1.staticflickr.com/169/383191341_5e5e4a8f55_o.jpg", "secret": "5e5e4a8f55", "media": "photo", "latitude": "0", "id": "383191341", "tags": "secret easteregg wiisports wiitennis"}, {"datetaken": "2007-02-07 17:44:19", "license": "4", "title": "_MG_6183.jpg", "text": "", "album_id": "72157594523668593", "longitude": "0", "url_o": "https://farm1.staticflickr.com/148/383191541_b127a3b26b_o.jpg", "secret": "b127a3b26b", "media": "photo", "latitude": "0", "id": "383191541", "tags": "secret easteregg wiisports wiitennis"}, {"datetaken": "2007-02-07 17:44:20", "license": "4", "title": "_MG_6184.jpg", "text": "", "album_id": "72157594523668593", "longitude": "0", "url_o": "https://farm1.staticflickr.com/180/383191697_5ee643957e_o.jpg", "secret": "5ee643957e", "media": "photo", "latitude": "0", "id": "383191697", "tags": "secret easteregg wiisports wiitennis"}, {"datetaken": "2007-02-07 17:44:30", "license": "4", "title": "_MG_6185.jpg", "text": "", "album_id": "72157594523668593", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/383191893_a2833522e8_o.jpg", "secret": "a2833522e8", "media": "photo", "latitude": "0", "id": "383191893", "tags": "secret easteregg wiisports wiitennis"}, {"datetaken": "2007-02-07 17:44:36", "license": "4", "title": "_MG_6186.jpg", "text": "", "album_id": "72157594523668593", "longitude": "0", "url_o": "https://farm1.staticflickr.com/98/383192026_ea96b9c477_o.jpg", "secret": "ea96b9c477", "media": "photo", "latitude": "0", "id": "383192026", "tags": "secret easteregg wiisports wiitennis"}, {"datetaken": "2007-02-07 17:44:37", "license": "4", "title": "_MG_6187.jpg", "text": "", "album_id": "72157594523668593", "longitude": "0", "url_o": "https://farm1.staticflickr.com/174/383192171_ae22c142a4_o.jpg", "secret": "ae22c142a4", "media": "photo", "latitude": "0", "id": "383192171", "tags": "secret easteregg wiisports wiitennis"}, {"datetaken": "2007-02-07 17:44:38", "license": "4", "title": "_MG_6188.jpg", "text": "", "album_id": "72157594523668593", "longitude": "0", "url_o": "https://farm1.staticflickr.com/179/383192287_7c4c34e699_o.jpg", "secret": "7c4c34e699", "media": "photo", "latitude": "0", "id": "383192287", "tags": "secret easteregg wiisports wiitennis"}, {"datetaken": "2007-02-07 17:45:04", "license": "4", "title": "_MG_6189.jpg", "text": "", "album_id": "72157594523668593", "longitude": "0", "url_o": "https://farm1.staticflickr.com/145/383192470_c0b1910592_o.jpg", "secret": "c0b1910592", "media": "photo", "latitude": "0", "id": "383192470", "tags": "secret easteregg wiisports wiitennis"}, {"datetaken": "2007-02-07 17:45:13", "license": "4", "title": "_MG_6190.jpg", "text": "", "album_id": "72157594523668593", "longitude": "0", "url_o": "https://farm1.staticflickr.com/168/383192620_182b027fe9_o.jpg", "secret": "182b027fe9", "media": "photo", "latitude": "0", "id": "383192620", "tags": "secret easteregg wiisports wiitennis"}, {"datetaken": "2007-03-31 13:01:30", "license": "4", "title": "The boys \"fishing\"", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/174/441286588_9a7df931a5_o.jpg", "secret": "a0821e54fb", "media": "photo", "latitude": "33.474301", "id": "441286588", "tags": ""}, {"datetaken": "2007-03-31 13:06:33", "license": "4", "title": "The boys \"fishing\"", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/180/441289963_31001804a3_o.jpg", "secret": "2152187eb0", "media": "photo", "latitude": "33.474301", "id": "441289963", "tags": ""}, {"datetaken": "2007-03-31 13:06:41", "license": "4", "title": "Jack \"fishing\"", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/188/441289326_39688577d5_o.jpg", "secret": "a55e3bf9a3", "media": "photo", "latitude": "33.474301", "id": "441289326", "tags": ""}, {"datetaken": "2007-03-31 13:06:56", "license": "4", "title": "William \"fishing\"", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/179/441290506_2d351cecd3_o.jpg", "secret": "c672a16780", "media": "photo", "latitude": "33.474301", "id": "441290506", "tags": ""}, {"datetaken": "2007-03-31 13:06:59", "license": "4", "title": "The boys are \"fishing\"", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/205/441291802_140dbcd925_o.jpg", "secret": "ab3ad3f238", "media": "photo", "latitude": "33.474301", "id": "441291802", "tags": ""}, {"datetaken": "2007-03-31 13:07:07", "license": "4", "title": "The boys are \"fishing\"", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/208/441295063_b8c110492d_o.jpg", "secret": "89a86f48d2", "media": "photo", "latitude": "33.474301", "id": "441295063", "tags": ""}, {"datetaken": "2007-03-31 13:08:01", "license": "4", "title": "Grandma Phyllis coordinating things", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/185/441293290_da550f2b47_o.jpg", "secret": "93fad1f5d4", "media": "photo", "latitude": "33.474301", "id": "441293290", "tags": ""}, {"datetaken": "2007-03-31 13:08:05", "license": "4", "title": "Grandma Phyliss coordinating things", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/183/441296123_e1b1229b1e_o.jpg", "secret": "2d8144a3e6", "media": "photo", "latitude": "33.474301", "id": "441296123", "tags": ""}, {"datetaken": "2007-03-31 13:18:36", "license": "4", "title": "Lovejoy UMC Lunch", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/186/441298387_a4ebf99b7b_o.jpg", "secret": "10faa1040a", "media": "photo", "latitude": "33.474301", "id": "441298387", "tags": ""}, {"datetaken": "2007-03-31 13:18:40", "license": "4", "title": "Lovejoy UMC Lunch", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/204/441300129_5d8267c2b8_o.jpg", "secret": "5cf93c8848", "media": "photo", "latitude": "33.474301", "id": "441300129", "tags": ""}, {"datetaken": "2007-03-31 13:18:51", "license": "4", "title": "Lovejoy UMC Lunch", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/201/441299242_1be4e59988_o.jpg", "secret": "3cf09181ab", "media": "photo", "latitude": "33.474301", "id": "441299242", "tags": ""}, {"datetaken": "2007-03-31 13:20:47", "license": "4", "title": "Lovejoy UMC Lunch", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/208/441303637_68caf2ce83_o.jpg", "secret": "97cd13b831", "media": "photo", "latitude": "33.474301", "id": "441303637", "tags": ""}, {"datetaken": "2007-03-31 13:41:13", "license": "4", "title": "Over-exposed motion", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/170/441304627_5be164df02_o.jpg", "secret": "810e997ab3", "media": "photo", "latitude": "33.474301", "id": "441304627", "tags": ""}, {"datetaken": "2007-03-31 13:41:28", "license": "4", "title": "Over-exposed motion", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/175/441303176_0c8ebfd885_o.jpg", "secret": "98140c3959", "media": "photo", "latitude": "33.474301", "id": "441303176", "tags": ""}, {"datetaken": "2007-03-31 13:42:08", "license": "4", "title": "Over-exposed motion", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/184/441306325_bddf432a63_o.jpg", "secret": "e940940da4", "media": "photo", "latitude": "33.474301", "id": "441306325", "tags": ""}, {"datetaken": "2007-03-31 13:47:13", "license": "4", "title": "Jawiphi Easter 2007", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/177/441305632_5e1f8c5cce_o.jpg", "secret": "7be5f5cfd5", "media": "photo", "latitude": "33.474301", "id": "441305632", "tags": ""}, {"datetaken": "2007-03-31 13:47:14", "license": "4", "title": "Jawiphi Easter 2007", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/171/441307012_c2a4d96636_o.jpg", "secret": "ba77f0d0bb", "media": "photo", "latitude": "33.474301", "id": "441307012", "tags": "johnstop27honorablemention"}, {"datetaken": "2007-03-31 13:47:52", "license": "4", "title": "Jawiphi Easter 2007", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/202/441308276_2d736b7b8a_o.jpg", "secret": "bd4cfadc3c", "media": "photo", "latitude": "33.474301", "id": "441308276", "tags": ""}, {"datetaken": "2007-03-31 13:49:11", "license": "4", "title": "Okra planted", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/189/441309490_02fc996d0e_o.jpg", "secret": "d5ef211893", "media": "photo", "latitude": "33.474301", "id": "441309490", "tags": ""}, {"datetaken": "2007-03-31 13:49:29", "license": "4", "title": "Squash planted", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/184/441310710_3525c6d22e_o.jpg", "secret": "55ffe11dd7", "media": "photo", "latitude": "33.474301", "id": "441310710", "tags": ""}, {"datetaken": "2007-03-31 13:54:29", "license": "4", "title": "A busy bee", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/170/441313209_e140f20a38_o.jpg", "secret": "923dcc7649", "media": "photo", "latitude": "33.474301", "id": "441313209", "tags": ""}, {"datetaken": "2007-03-31 13:55:23", "license": "4", "title": "Phillip \"fishing\"", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/182/441313522_b139d6e51c_o.jpg", "secret": "203b637795", "media": "photo", "latitude": "33.474301", "id": "441313522", "tags": ""}, {"datetaken": "2007-03-31 13:55:51", "license": "4", "title": "Phillip having fun", "text": "", "album_id": "72157600198842710", "longitude": "-83.849008", "url_o": "https://farm1.staticflickr.com/178/441314097_0295d6f329_o.jpg", "secret": "34daf323b4", "media": "photo", "latitude": "33.474301", "id": "441314097", "tags": ""}, {"datetaken": "2007-03-31 17:17:54", "license": "4", "title": "Newton County Pinwheels", "text": "", "album_id": "72157600198842710", "longitude": "-83.859951", "url_o": "https://farm1.staticflickr.com/185/441324709_068f981ae2_o.jpg", "secret": "11488aaa1a", "media": "photo", "latitude": "33.596654", "id": "441324709", "tags": ""}, {"datetaken": "2007-03-31 17:19:10", "license": "4", "title": "William is interested in the memorial", "text": "", "album_id": "72157600198842710", "longitude": "-83.859951", "url_o": "https://farm1.staticflickr.com/198/441269296_037dee67fd_o.jpg", "secret": "642b873b99", "media": "photo", "latitude": "33.596654", "id": "441269296", "tags": ""}, {"datetaken": "2007-03-31 19:56:00", "license": "4", "title": "Azalea at Sunset", "text": "", "album_id": "72157600198842710", "longitude": "-84.417550", "url_o": "https://farm1.staticflickr.com/206/441444144_32fcd09526_o.jpg", "secret": "d82cbc7d97", "media": "photo", "latitude": "34.096751", "id": "441444144", "tags": "adayinatlanta atlanta20070331 atlanta2007033120"}, {"datetaken": "2012-10-26 03:49:56", "license": "3", "title": "Heading to prayer", "text": "", "album_id": "72157631857762354", "longitude": "51.528561", "url_o": "https://farm9.staticflickr.com/8052/8124978986_a06b27d18b_o.jpg", "secret": "334863b083", "media": "photo", "latitude": "25.289278", "id": "8124978986", "tags": "morning worship islam prayer religion eid mosque muslims salat masjid doha qatar sheikhs aladha musheireb"}, {"datetaken": "2012-10-26 03:50:26", "license": "3", "title": "A Doha Eid", "text": "", "album_id": "72157631857762354", "longitude": "51.528561", "url_o": "https://farm9.staticflickr.com/8049/8124960557_ba29b9b258_o.jpg", "secret": "01df12ede8", "media": "photo", "latitude": "25.289278", "id": "8124960557", "tags": "morning worship islam prayer religion eid mosque muslims salat masjid doha qatar sheikhs aladha musheireb"}, {"datetaken": "2012-10-26 03:51:56", "license": "3", "title": "The Sheikhs' Mosque", "text": "", "album_id": "72157631857762354", "longitude": "51.528561", "url_o": "https://farm9.staticflickr.com/8190/8124961907_6ee987a005_o.jpg", "secret": "be4a7e7a7e", "media": "photo", "latitude": "25.289278", "id": "8124961907", "tags": "morning worship islam prayer religion eid mosque muslims salat masjid doha qatar sheikhs aladha musheireb"}, {"datetaken": "2012-10-26 03:52:53", "license": "3", "title": "Praying on Eid", "text": "", "album_id": "72157631857762354", "longitude": "51.528561", "url_o": "https://farm9.staticflickr.com/8194/8124981732_e039522233_o.jpg", "secret": "8f56cc40a6", "media": "photo", "latitude": "25.289278", "id": "8124981732", "tags": "morning worship islam prayer religion eid mosque muslims salat masjid doha qatar sheikhs aladha musheireb"}, {"datetaken": "2012-10-26 04:00:24", "license": "3", "title": "Outdoor worship", "text": "", "album_id": "72157631857762354", "longitude": "51.528561", "url_o": "https://farm9.staticflickr.com/8056/8124982294_04c6175cc5_o.jpg", "secret": "38fab92d63", "media": "photo", "latitude": "25.289278", "id": "8124982294", "tags": "morning worship islam prayer religion eid mosque muslims salat masjid doha qatar sheikhs aladha musheireb"}, {"datetaken": "2012-10-26 04:03:37", "license": "3", "title": "A Grand Mosque", "text": "", "album_id": "72157631857762354", "longitude": "51.528561", "url_o": "https://farm9.staticflickr.com/8475/8124963817_98ea6d9d2e_o.jpg", "secret": "0479a77d6a", "media": "photo", "latitude": "25.289278", "id": "8124963817", "tags": "morning worship islam prayer religion eid mosque muslims salat masjid doha qatar sheikhs aladha musheireb"}, {"datetaken": "2012-10-26 04:05:02", "license": "3", "title": "Inside the mosque", "text": "", "album_id": "72157631857762354", "longitude": "51.528561", "url_o": "https://farm9.staticflickr.com/8187/8124964491_6b0994d6a0_o.jpg", "secret": "375d8b0ff4", "media": "photo", "latitude": "25.289278", "id": "8124964491", "tags": "morning worship islam prayer religion eid mosque muslims salat masjid doha qatar sheikhs aladha musheireb"}, {"datetaken": "2012-10-26 04:16:27", "license": "3", "title": "Prayer completed", "text": "", "album_id": "72157631857762354", "longitude": "51.528561", "url_o": "https://farm9.staticflickr.com/8467/8124984454_a7da1bf9b8_o.jpg", "secret": "0376690d30", "media": "photo", "latitude": "25.289278", "id": "8124984454", "tags": "morning worship islam prayer religion eid mosque muslims salat masjid doha qatar sheikhs aladha musheireb"}, {"datetaken": "2012-10-26 04:19:47", "license": "3", "title": "Eid Mubarak", "text": "", "album_id": "72157631857762354", "longitude": "51.528561", "url_o": "https://farm9.staticflickr.com/8194/8124985140_b07d11cc8a_o.jpg", "secret": "d5e53aa3f1", "media": "photo", "latitude": "25.289278", "id": "8124985140", "tags": "morning worship islam prayer religion eid mosque muslims salat masjid doha qatar sheikhs aladha musheireb"}, {"datetaken": "2012-10-26 04:21:12", "license": "3", "title": "Happy Eid", "text": "", "album_id": "72157631857762354", "longitude": "51.528561", "url_o": "https://farm9.staticflickr.com/8187/8124966235_4f21bd5e11_o.jpg", "secret": "0dd1c61a62", "media": "photo", "latitude": "25.289278", "id": "8124966235", "tags": "morning worship islam prayer religion eid mosque muslims salat masjid doha qatar sheikhs aladha musheireb"}, {"datetaken": "2012-10-26 07:10:46", "license": "1", "title": "Eid al-Adha Gifts (1)", "text": "", "album_id": "72157631906545378", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8049/8146316914_41ab2d7d7d_o.jpg", "secret": "977b189fd0", "media": "photo", "latitude": "0", "id": "8146316914", "tags": "refugee iraq eid amman jordan"}, {"datetaken": "2012-10-26 07:41:50", "license": "1", "title": "Eid al-Adha Gifts (2)", "text": "", "album_id": "72157631906545378", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8323/8146284009_d1aaf325ee_o.jpg", "secret": "9c823b6ea6", "media": "photo", "latitude": "0", "id": "8146284009", "tags": "refugee iraq eid amman jordan"}, {"datetaken": "2012-10-26 08:01:41", "license": "1", "title": "Eid al-Adha Gifts (3)", "text": "", "album_id": "72157631906545378", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8192/8146284059_d1d6758c2e_o.jpg", "secret": "8b7111280c", "media": "photo", "latitude": "0", "id": "8146284059", "tags": "refugee iraq eid amman jordan"}, {"datetaken": "2012-10-26 12:46:59", "license": "1", "title": "Eid al-Adha Gifts (4)", "text": "", "album_id": "72157631906545378", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8052/8146284103_62c7dd47d9_o.jpg", "secret": "9868283911", "media": "photo", "latitude": "0", "id": "8146284103", "tags": "refugee iraq eid amman jordan"}, {"datetaken": "2012-10-26 12:47:45", "license": "1", "title": "Eid al-Adha Gifts (5)", "text": "", "album_id": "72157631906545378", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8045/8146317100_0c4f6a11f8_o.jpg", "secret": "5e655f5f34", "media": "photo", "latitude": "0", "id": "8146317100", "tags": "refugee iraq eid amman jordan"}, {"datetaken": "2012-10-26 13:13:37", "license": "1", "title": "Eid al-Adha Gifts (6)", "text": "", "album_id": "72157631906545378", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8185/8146317150_cdbfd68039_o.jpg", "secret": "d9bdb794c4", "media": "photo", "latitude": "0", "id": "8146317150", "tags": "refugee iraq eid amman jordan"}, {"datetaken": "2012-10-26 13:18:08", "license": "1", "title": "Eid al-Adha Gifts (7)", "text": "", "album_id": "72157631906545378", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8195/8146284249_506ec11e30_o.jpg", "secret": "d3a5099b4c", "media": "photo", "latitude": "0", "id": "8146284249", "tags": "refugee iraq eid amman jordan"}, {"datetaken": "2012-10-26 13:31:43", "license": "1", "title": "Eid al-Adha Gifts (8)", "text": "", "album_id": "72157631906545378", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8055/8146317268_4215085e14_o.jpg", "secret": "ff3ca23aa0", "media": "photo", "latitude": "0", "id": "8146317268", "tags": "refugee iraq eid amman jordan"}, {"datetaken": "2012-10-26 14:28:49", "license": "1", "title": "Eid al-Adha Gifts (9)", "text": "", "album_id": "72157631906545378", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8468/8146317320_bcbe16518b_o.jpg", "secret": "cdbd07b65a", "media": "photo", "latitude": "0", "id": "8146317320", "tags": "refugee iraq eid amman jordan"}, {"datetaken": "2012-10-26 14:36:32", "license": "1", "title": "Eid al-Adha Gifts (10)", "text": "", "album_id": "72157631906545378", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8044/8146317386_46382bf266_o.jpg", "secret": "9136b25d68", "media": "photo", "latitude": "0", "id": "8146317386", "tags": "refugee iraq eid amman jordan"}, {"datetaken": "2012-10-27 08:46:25", "license": "1", "title": "Eid al-Adha Gifts (11)", "text": "", "album_id": "72157631906545378", "longitude": "0", "url_o": "https://farm9.staticflickr.com/8188/8146284439_82efdb2af3_o.jpg", "secret": "c91712585e", "media": "photo", "latitude": "0", "id": "8146284439", "tags": "refugee iraq eid amman jordan"}, {"datetaken": "2005-11-03 18:17:08", "license": "1", "title": "Supper Table", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/66426214_e7255080dc_o.jpg", "secret": "e7255080dc", "media": "photo", "latitude": "0", "id": "66426214", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 18:18:36", "license": "1", "title": "Supper Table", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/66426757_65a94a2cb5_o.jpg", "secret": "65a94a2cb5", "media": "photo", "latitude": "0", "id": "66426757", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 18:19:27", "license": "1", "title": "New Friends", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66427323_c94b60f991_o.jpg", "secret": "c94b60f991", "media": "photo", "latitude": "0", "id": "66427323", "tags": "hui 2005 china changzhou people party kids eidalfitr"}, {"datetaken": "2005-11-03 18:20:12", "license": "1", "title": "New Friends", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/66427670_7afc1d2f0b_o.jpg", "secret": "7afc1d2f0b", "media": "photo", "latitude": "0", "id": "66427670", "tags": "hui 2005 china changzhou people party kids eidalfitr"}, {"datetaken": "2005-11-03 18:21:37", "license": "1", "title": "Qi Wei Long and Smallman", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/66427990_8f6cea9370_o.jpg", "secret": "8f6cea9370", "media": "photo", "latitude": "0", "id": "66427990", "tags": "hui 2005 china changzhou people party kids eidalfitr"}, {"datetaken": "2005-11-03 18:27:50", "license": "1", "title": "New Friends", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66428296_c2026bc760_o.jpg", "secret": "c2026bc760", "media": "photo", "latitude": "0", "id": "66428296", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 18:28:51", "license": "1", "title": "Ma Hua (\u9ebb\u82b1)", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/66428914_804e3a04cc_o.jpg", "secret": "804e3a04cc", "media": "photo", "latitude": "0", "id": "66428914", "tags": "hui 2005 china changzhou eidalfitr"}, {"datetaken": "2005-11-03 18:29:27", "license": "1", "title": "Zhi Ma You Bing (\u829d\u9ebb\u6cb9\u997c)", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/66429504_1ffa711ed6_o.jpg", "secret": "1ffa711ed6", "media": "photo", "latitude": "0", "id": "66429504", "tags": "hui 2005 china changzhou eidalfitr"}, {"datetaken": "2005-11-03 18:29:57", "license": "1", "title": "The Underboss", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/66429779_fed8dca6ed_o.jpg", "secret": "fed8dca6ed", "media": "photo", "latitude": "0", "id": "66429779", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 18:30:02", "license": "1", "title": "The Underboss", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66430022_66d5133e15_o.jpg", "secret": "66d5133e15", "media": "photo", "latitude": "0", "id": "66430022", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 18:35:47", "license": "1", "title": "New Friends", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66430395_81230c9f2a_o.jpg", "secret": "81230c9f2a", "media": "photo", "latitude": "0", "id": "66430395", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 18:36:36", "license": "1", "title": "Jeanne and a New Friend", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66430861_b51090d85f_o.jpg", "secret": "b51090d85f", "media": "photo", "latitude": "0", "id": "66430861", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 18:38:44", "license": "1", "title": "New Friends", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/66431103_f9317132cb_o.jpg", "secret": "f9317132cb", "media": "photo", "latitude": "0", "id": "66431103", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 19:06:11", "license": "1", "title": "Old Friends", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/34/66431347_e1f0d63feb_o.jpg", "secret": "e1f0d63feb", "media": "photo", "latitude": "0", "id": "66431347", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 19:11:57", "license": "1", "title": "Old Friends", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66431559_382fd4aad0_o.jpg", "secret": "382fd4aad0", "media": "photo", "latitude": "0", "id": "66431559", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 19:13:06", "license": "1", "title": "New Friends", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/66431842_bbc01e3aa5_o.jpg", "secret": "bbc01e3aa5", "media": "photo", "latitude": "0", "id": "66431842", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 19:14:28", "license": "1", "title": "Noodlemasters", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/66432269_8de32f085d_o.jpg", "secret": "8de32f085d", "media": "photo", "latitude": "0", "id": "66432269", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 19:15:11", "license": "1", "title": "Jeanne Poses with Friends", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/66432755_28e4ad28b2_o.jpg", "secret": "28e4ad28b2", "media": "photo", "latitude": "0", "id": "66432755", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 19:16:56", "license": "1", "title": "Fatima and Da Moussah", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/66433307_c06c816384_o.jpg", "secret": "c06c816384", "media": "photo", "latitude": "0", "id": "66433307", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 19:17:01", "license": "1", "title": "Fatima and Da Moussah", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/66433563_5501d924c4_o.jpg", "secret": "5501d924c4", "media": "photo", "latitude": "0", "id": "66433563", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 19:18:15", "license": "1", "title": "New Friends", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/66433799_2333c849b7_o.jpg", "secret": "2333c849b7", "media": "photo", "latitude": "0", "id": "66433799", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 19:18:38", "license": "1", "title": "New Friends", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/66434408_e9bfc817b3_o.jpg", "secret": "e9bfc817b3", "media": "photo", "latitude": "0", "id": "66434408", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 19:30:22", "license": "1", "title": "Qi Wei Long", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/66434806_7213142890_o.jpg", "secret": "7213142890", "media": "photo", "latitude": "0", "id": "66434806", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 19:36:07", "license": "1", "title": "Fatima", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/66435263_4aa40b1231_o.jpg", "secret": "4aa40b1231", "media": "photo", "latitude": "0", "id": "66435263", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 19:37:14", "license": "1", "title": "Hajija (\u9a6c\u7389\u6885)", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/66435777_d7a578db2d_o.jpg", "secret": "d7a578db2d", "media": "photo", "latitude": "0", "id": "66435777", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 19:39:11", "license": "1", "title": "Karim (\u9a6c\u91d1\u56fd) and Hajija (\u9a6c\u7389\u6885)", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/66436183_29c0c3a3c7_o.jpg", "secret": "29c0c3a3c7", "media": "photo", "latitude": "0", "id": "66436183", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 19:42:12", "license": "1", "title": "Jeanne and Xiao Moussah", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/66436424_66a2d2a0cc_o.jpg", "secret": "66a2d2a0cc", "media": "photo", "latitude": "0", "id": "66436424", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2005-11-03 19:45:46", "license": "1", "title": "Harbi", "text": "", "album_id": "1433463", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/66437104_b5f10f0034_o.jpg", "secret": "b5f10f0034", "media": "photo", "latitude": "0", "id": "66437104", "tags": "hui 2005 china changzhou people party eidalfitr"}, {"datetaken": "2008-12-18 15:20:21", "license": "4", "title": "Diwali table", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3247/3121996182_38c37535cc_o.jpg", "secret": "9898a1ff0e", "media": "photo", "latitude": "0", "id": "3121996182", "tags": "office colorful culture diversity sweets presentation diwali"}, {"datetaken": "2008-12-18 15:20:58", "license": "4", "title": "Henna artist at work", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3113/3121171305_1b88e3b24a_o.jpg", "secret": "c3b1dac55d", "media": "photo", "latitude": "0", "id": "3121171305", "tags": "tattoo office artist hand culture diversity presentation henna diwali"}, {"datetaken": "2008-12-18 15:23:00", "license": "4", "title": "Story of Diwali", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3286/3122001116_17b9147db7_o.jpg", "secret": "da277340a5", "media": "photo", "latitude": "0", "id": "3122001116", "tags": "office board culture diversity sweets presentation diwali"}, {"datetaken": "2008-12-18 15:26:55", "license": "4", "title": "Ireland, celebrating Halloween", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3213/3121176889_e9aba74028_o.jpg", "secret": "27b4c0969e", "media": "photo", "latitude": "0", "id": "3121176889", "tags": "halloween office culture diversity presentation"}, {"datetaken": "2008-12-18 15:27:30", "license": "4", "title": "Bobbing for apples", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3212/3121179285_2597227a66_o.jpg", "secret": "0f47627ba3", "media": "photo", "latitude": "0", "id": "3121179285", "tags": "halloween office culture diversity apples presentation bobbing"}, {"datetaken": "2008-12-18 15:28:22", "license": "4", "title": "New Years around the world", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3233/3122009568_0284e1052b_o.jpg", "secret": "0169ed59e0", "media": "photo", "latitude": "0", "id": "3122009568", "tags": "food office culture diversity newyear celebrations presentation"}, {"datetaken": "2008-12-18 15:29:34", "license": "4", "title": "Israel, celebrating Hanukkah", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3201/3122012296_fc73abaa2e_o.jpg", "secret": "88b0cfec2a", "media": "photo", "latitude": "0", "id": "3122012296", "tags": "office candles culture diversity presentation menorah hannukah channukah dreidels"}, {"datetaken": "2008-12-18 15:30:47", "license": "4", "title": "Scandinavia and Germany, celebrating Christmas", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3236/3122015084_243324313f_o.jpg", "secret": "4b8d94bcf1", "media": "photo", "latitude": "0", "id": "3122015084", "tags": "office culture diversity presentation"}, {"datetaken": "2008-12-18 15:32:29", "license": "4", "title": "New Orleans, celebrating Mardi Gras", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3125/3122017758_4608c75f0b_o.jpg", "secret": "4fed3756ba", "media": "photo", "latitude": "0", "id": "3122017758", "tags": "beads office colorful culture diversity gras presentation mardi catalogs"}, {"datetaken": "2008-12-18 15:35:39", "license": "4", "title": "Dia de los Muertos", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3132/3122020264_bf04f344c6_o.jpg", "secret": "aa09435d84", "media": "photo", "latitude": "0", "id": "3122020264", "tags": "holiday dayofthedead mexico office colorful culture diversity photographs diadelosmuertos presentation"}, {"datetaken": "2008-12-18 15:36:27", "license": "4", "title": "Dubai, celebrating Eid al-Fitr, End of Ramadan", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3211/3122023136_f55bc2f764_o.jpg", "secret": "87ca342225", "media": "photo", "latitude": "0", "id": "3122023136", "tags": "office dubai peace culture diversity presentation"}, {"datetaken": "2008-12-18 15:38:11", "license": "4", "title": "Europe", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3106/3121199491_1f73de6f6d_o.jpg", "secret": "e935b03f0b", "media": "photo", "latitude": "0", "id": "3121199491", "tags": "office map culture diversity pins presentation"}, {"datetaken": "2008-12-18 15:38:40", "license": "4", "title": "Cultural map", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3108/3121202601_0f61c8bdb1_o.jpg", "secret": "41ba511525", "media": "photo", "latitude": "0", "id": "3121202601", "tags": "office map culture diversity pins presentation"}, {"datetaken": "2008-12-18 15:41:15", "license": "4", "title": "Henna artist", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3257/3122033408_5c3e0b8ea6_o.jpg", "secret": "a8d1f44666", "media": "photo", "latitude": "0", "id": "3122033408", "tags": "tattoo office artist culture diversity presentation henna diwali mela"}, {"datetaken": "2008-12-18 15:47:46", "license": "4", "title": "Boxing Day in Guyana", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3208/3121209055_ec343e730a_o.jpg", "secret": "ed15c97a8e", "media": "photo", "latitude": "0", "id": "3121209055", "tags": "food office boxingday culture diversity guyana presentation"}, {"datetaken": "2008-12-18 15:49:28", "license": "4", "title": "Henna tattoo", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3129/3122038290_eb056884a0_o.jpg", "secret": "8e76c1ba1a", "media": "photo", "latitude": "0", "id": "3122038290", "tags": "office culture diversity presentation"}, {"datetaken": "2008-12-18 15:54:15", "license": "4", "title": "Garland", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3222/3121213619_6df84e37d0_o.jpg", "secret": "f9d9242885", "media": "photo", "latitude": "0", "id": "3121213619", "tags": "office culture diversity presentation diwali puja"}, {"datetaken": "2008-12-18 15:54:37", "license": "4", "title": "Lakshmi and fruit", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3251/3122043072_d38215e523_o.jpg", "secret": "54d10f4234", "media": "photo", "latitude": "0", "id": "3122043072", "tags": "fruit office lakshmi culture diversity presentation diwali puja"}, {"datetaken": "2008-12-18 15:55:28", "license": "4", "title": "Diwali puja", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3105/3121219155_d1621d31ef_o.jpg", "secret": "908b7d7c8c", "media": "photo", "latitude": "0", "id": "3121219155", "tags": "office colorful lakshmi culture diversity presentation diwali puja"}, {"datetaken": "2008-12-18 16:07:49", "license": "4", "title": "Really old colleague", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3127/3121222577_57cd537a0a_o.jpg", "secret": "8272b4a12e", "media": "photo", "latitude": "0", "id": "3121222577", "tags": "halloween skeleton office culture diversity presentation"}, {"datetaken": "2008-12-18 16:09:09", "license": "4", "title": "Halloween room", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3196/3122052532_2f7dc90492_o.jpg", "secret": "2fce39f1f0", "media": "photo", "latitude": "0", "id": "3122052532", "tags": "halloween office rat rip tombstone culture diversity presentation"}, {"datetaken": "2008-12-18 16:13:07", "license": "4", "title": "Halloween haunted house", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3218/3122054720_3c9e7ebed2_o.jpg", "secret": "7d21a6d384", "media": "photo", "latitude": "0", "id": "3122054720", "tags": "halloween office ghost culture diversity presentation ghoul"}, {"datetaken": "2008-12-18 16:18:34", "license": "4", "title": "Mardi Gras float", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3262/3122057372_351bb91e43_o.jpg", "secret": "60507624db", "media": "photo", "latitude": "0", "id": "3122057372", "tags": "office culture diversity parade presentation mardigras float recession"}, {"datetaken": "2008-12-18 16:19:50", "license": "4", "title": "Mardi Gras mask", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3121/3121233289_22838b8b75_o.jpg", "secret": "623457112a", "media": "photo", "latitude": "0", "id": "3121233289", "tags": "office mask feather culture diversity presentation mardigras"}, {"datetaken": "2008-12-18 16:34:19", "license": "4", "title": "My henna tattoo", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3197/3121236209_a7ca400e9c_o.jpg", "secret": "303c1c7e8c", "media": "photo", "latitude": "0", "id": "3121236209", "tags": "tattoo office hand culture diversity presentation henna"}, {"datetaken": "2008-12-18 16:47:21", "license": "4", "title": "Pastorela angel Mary", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3258/3121155365_6c10e8be1a_o.jpg", "secret": "eb49c1c32f", "media": "photo", "latitude": "0", "id": "3121155365", "tags": "show office play performance culture diversity presentation nativity pastorela"}, {"datetaken": "2008-12-18 16:51:47", "license": "4", "title": "Pastorela devil realtor", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3227/3121985704_a6d077f765_o.jpg", "secret": "7ba56f2c0e", "media": "photo", "latitude": "0", "id": "3121985704", "tags": "show office play performance culture diversity presentation nativity pastorela"}, {"datetaken": "2008-12-18 16:54:12", "license": "4", "title": "Pastorela tourists", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3113/3121989634_b7daab7202_o.jpg", "secret": "68762c41f0", "media": "photo", "latitude": "0", "id": "3121989634", "tags": "show office play performance culture diversity presentation nativity pastorela"}, {"datetaken": "2008-12-18 16:59:20", "license": "4", "title": "Pastorela curtain call", "text": "", "album_id": "72157611363181075", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3244/3121993548_ca7065a6bb_o.jpg", "secret": "31eae1aa4c", "media": "photo", "latitude": "0", "id": "3121993548", "tags": "show office play performance culture diversity presentation nativity pastorela"}, {"datetaken": "2009-09-20 09:33:29", "license": "2", "title": "SSPX0053", "text": "", "album_id": "72157622299140565", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3534/3940227597_ba4603e92a_o.jpg", "secret": "3b42b375c5", "media": "photo", "latitude": "0", "id": "3940227597", "tags": "holiday georgia islam eid augusta muslims alfitr"}, {"datetaken": "2009-09-20 09:34:22", "license": "2", "title": "SSPX0055", "text": "", "album_id": "72157622299140565", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2421/3941007064_3f1a95cf03_o.jpg", "secret": "fdb2fdf5ee", "media": "photo", "latitude": "0", "id": "3941007064", "tags": "holiday georgia islam eid augusta muslims alfitr"}, {"datetaken": "2009-09-20 09:35:28", "license": "2", "title": "SSPX0056", "text": "", "album_id": "72157622299140565", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2621/3940227729_695db8a9fd_o.jpg", "secret": "0b4ac04c14", "media": "photo", "latitude": "0", "id": "3940227729", "tags": "holiday georgia islam eid augusta muslims alfitr"}, {"datetaken": "2009-09-20 09:36:42", "license": "2", "title": "SSPX0057", "text": "", "album_id": "72157622299140565", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2548/3941007238_df2b74b795_o.jpg", "secret": "7d5a88aa0e", "media": "photo", "latitude": "0", "id": "3941007238", "tags": "holiday georgia islam eid augusta muslims alfitr"}, {"datetaken": "2009-09-20 09:37:10", "license": "2", "title": "SSPX0058", "text": "", "album_id": "72157622299140565", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2675/3941007306_75e232deca_o.jpg", "secret": "250cecceab", "media": "photo", "latitude": "0", "id": "3941007306", "tags": "holiday georgia islam eid augusta muslims alfitr"}, {"datetaken": "2009-09-20 09:39:40", "license": "2", "title": "SSPX0059", "text": "", "album_id": "72157622299140565", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2524/3941007364_537374c272_o.jpg", "secret": "b6b21dfe98", "media": "photo", "latitude": "0", "id": "3941007364", "tags": "holiday georgia islam eid augusta muslims alfitr"}, {"datetaken": "2009-09-20 09:41:29", "license": "2", "title": "SSPX0060", "text": "", "album_id": "72157622299140565", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2467/3941007464_fc55da57d5_o.jpg", "secret": "b7bf0fa599", "media": "photo", "latitude": "0", "id": "3941007464", "tags": "holiday georgia islam eid augusta muslims alfitr"}, {"datetaken": "2009-09-20 09:44:01", "license": "2", "title": "SSPX0061", "text": "", "album_id": "72157622299140565", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2515/3940228109_2393c017a6_o.jpg", "secret": "dfffd5ae8c", "media": "photo", "latitude": "0", "id": "3940228109", "tags": "holiday georgia islam eid augusta muslims alfitr"}, {"datetaken": "2009-09-20 09:46:18", "license": "2", "title": "SSPX0062", "text": "", "album_id": "72157622299140565", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2435/3940228227_30bbd027a2_o.jpg", "secret": "cb75687b8f", "media": "photo", "latitude": "0", "id": "3940228227", "tags": "holiday georgia islam eid augusta muslims alfitr"}, {"datetaken": "2009-09-20 09:49:10", "license": "2", "title": "SSPX0063", "text": "", "album_id": "72157622299140565", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2554/3941007784_7bdd1b8c85_o.jpg", "secret": "4d9683f887", "media": "photo", "latitude": "0", "id": "3941007784", "tags": "holiday georgia islam eid augusta muslims alfitr"}, {"datetaken": "2009-09-20 09:49:57", "license": "2", "title": "SSPX0064", "text": "", "album_id": "72157622299140565", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2664/3940228509_635829fb5b_o.jpg", "secret": "eb6976fc6c", "media": "photo", "latitude": "0", "id": "3940228509", "tags": "holiday georgia islam eid augusta muslims alfitr"}, {"datetaken": "2009-09-20 09:52:16", "license": "2", "title": "SSPX0065", "text": "", "album_id": "72157622299140565", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3525/3941007946_69a063e84f_o.jpg", "secret": "fb6ef784e9", "media": "photo", "latitude": "0", "id": "3941007946", "tags": "holiday georgia islam eid augusta muslims alfitr"}, {"datetaken": "2009-09-20 09:57:42", "license": "2", "title": "SSPX0066", "text": "", "album_id": "72157622299140565", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3438/3941008034_e4dfc0f391_o.jpg", "secret": "3bd0867c09", "media": "photo", "latitude": "0", "id": "3941008034", "tags": "holiday georgia islam eid augusta muslims alfitr"}, {"datetaken": "2009-09-20 09:59:02", "license": "2", "title": "SSPX0067", "text": "", "album_id": "72157622299140565", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2621/3941008176_fcc96b243e_o.jpg", "secret": "d447061d66", "media": "photo", "latitude": "0", "id": "3941008176", "tags": "holiday georgia islam eid augusta muslims alfitr"}, {"datetaken": "2009-09-20 10:54:36", "license": "2", "title": "SSPX0068", "text": "", "album_id": "72157622299140565", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2639/3941008264_2694c2e8b3_o.jpg", "secret": "dd2d6c1ae5", "media": "photo", "latitude": "0", "id": "3941008264", "tags": "holiday georgia islam eid augusta muslims alfitr"}, {"datetaken": "2009-09-20 10:54:52", "license": "2", "title": "SSPX0069", "text": "", "album_id": "72157622299140565", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2508/3941008316_b3285fca19_o.jpg", "secret": "a1db3fa995", "media": "photo", "latitude": "0", "id": "3941008316", "tags": "holiday georgia islam eid augusta muslims alfitr"}, {"datetaken": "2009-12-31 13:22:59", "license": "6", "title": "Hantaran #4", "text": "", "album_id": "72157623116920892", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4234761943_0fa2677818_o.jpg", "secret": "5772f0c5e4", "media": "photo", "latitude": "0", "id": "4234761943", "tags": "events"}, {"datetaken": "2009-12-31 13:23:47", "license": "6", "title": "Hantaran #3", "text": "", "album_id": "72157623116920892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2782/4235543554_e0bb77ed03_o.jpg", "secret": "8b1b5db6ca", "media": "photo", "latitude": "0", "id": "4235543554", "tags": "events"}, {"datetaken": "2009-12-31 13:26:03", "license": "6", "title": "Hantaran #2", "text": "", "album_id": "72157623116920892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2762/4234776675_87fdaba5d1_o.jpg", "secret": "9ecd90a1f0", "media": "photo", "latitude": "0", "id": "4234776675", "tags": "events"}, {"datetaken": "2009-12-31 13:31:27", "license": "6", "title": "Hantaran #1", "text": "", "album_id": "72157623116920892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2643/4235558990_f6b5d48d33_o.jpg", "secret": "12e629f997", "media": "photo", "latitude": "0", "id": "4235558990", "tags": "events"}, {"datetaken": "2010-01-01 21:02:38", "license": "6", "title": "_DSC1078", "text": "", "album_id": "72157623116920892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4235670416_3f239c850b_o.jpg", "secret": "ac10443c96", "media": "photo", "latitude": "0", "id": "4235670416", "tags": "engagement events"}, {"datetaken": "2010-01-01 21:03:09", "license": "6", "title": "_DSC1079", "text": "", "album_id": "72157623116920892", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4039/4234888091_5dec6ef948_o.jpg", "secret": "97b5bb1c9f", "media": "photo", "latitude": "0", "id": "4234888091", "tags": "engagement events"}, {"datetaken": "2010-01-01 21:05:33", "license": "6", "title": "_DSC1081", "text": "", "album_id": "72157623116920892", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4234881609_6baa14db6a_o.jpg", "secret": "8bba816abc", "media": "photo", "latitude": "0", "id": "4234881609", "tags": "engagement events"}, {"datetaken": "2010-01-01 21:07:31", "license": "6", "title": "_DSC1083", "text": "", "album_id": "72157623116920892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2754/4234877321_82b9ede783_o.jpg", "secret": "2504c8db4a", "media": "photo", "latitude": "0", "id": "4234877321", "tags": "engagement events"}, {"datetaken": "2010-01-01 21:14:19", "license": "6", "title": "_DSC1094", "text": "", "album_id": "72157623116920892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2596/4234872713_3a6656795b_o.jpg", "secret": "c47320d266", "media": "photo", "latitude": "0", "id": "4234872713", "tags": "engagement events"}, {"datetaken": "2010-01-01 21:20:02", "license": "6", "title": "_DSC1098", "text": "", "album_id": "72157623116920892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2642/4235638692_d8c749cffa_o.jpg", "secret": "aa9501419a", "media": "photo", "latitude": "0", "id": "4235638692", "tags": "engagement events"}, {"datetaken": "2010-01-01 21:29:00", "license": "6", "title": "_DSC1105", "text": "", "album_id": "72157623116920892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2776/4234855019_9cb02722ba_o.jpg", "secret": "f0f3e81c9c", "media": "photo", "latitude": "0", "id": "4234855019", "tags": "engagement events"}, {"datetaken": "2010-01-01 21:36:09", "license": "6", "title": "_DSC1113", "text": "", "album_id": "72157623116920892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4234839415_0887f1c78a_o.jpg", "secret": "bc6e0e3d5c", "media": "photo", "latitude": "0", "id": "4234839415", "tags": "engagement events"}, {"datetaken": "2010-01-01 21:45:04", "license": "6", "title": "_DSC1115", "text": "", "album_id": "72157623116920892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2769/4235621130_2bb15b9b37_o.jpg", "secret": "ed7e061187", "media": "photo", "latitude": "0", "id": "4235621130", "tags": "engagement events"}, {"datetaken": "2010-01-01 21:47:14", "license": "6", "title": "_DSC1117", "text": "", "album_id": "72157623116920892", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2687/4235604108_303ed0ec97_o.jpg", "secret": "fd0c9aa42b", "media": "photo", "latitude": "0", "id": "4235604108", "tags": "engagement events"}, {"datetaken": "2008-11-01 11:45:32", "license": "1", "title": "Garden of the Pine Wind", "text": "", "album_id": "72157608607868619", "longitude": "-93.048620", "url_o": "https://farm4.staticflickr.com/3142/3001639104_8afaca82c2_o.jpg", "secret": "ae7731ab2e", "media": "photo", "latitude": "34.435478", "id": "3001639104", "tags": "arkansas hotsprings"}, {"datetaken": "2008-11-01 11:45:47", "license": "1", "title": "Full Moon Bridge engagement photo", "text": "", "album_id": "72157608607868619", "longitude": "-93.048620", "url_o": "https://farm4.staticflickr.com/3072/2997301851_cf8e57a226_o.jpg", "secret": "da873fb19c", "media": "photo", "latitude": "34.435478", "id": "2997301851", "tags": "arkansas hotsprings"}, {"datetaken": "2008-11-01 11:48:41", "license": "1", "title": "Garden of the Pine Wind koi fish", "text": "", "album_id": "72157608607868619", "longitude": "-93.048620", "url_o": "https://farm4.staticflickr.com/3152/2997301449_ca156b5422_o.jpg", "secret": "e758d8d5d3", "media": "photo", "latitude": "34.435478", "id": "2997301449", "tags": "arkansas hotsprings"}, {"datetaken": "2008-11-01 11:49:09", "license": "1", "title": "From Sunrise Bridge", "text": "", "album_id": "72157608607868619", "longitude": "-93.048620", "url_o": "https://farm4.staticflickr.com/3007/3001638732_28744ba3a0_o.jpg", "secret": "b4569b6473", "media": "photo", "latitude": "34.435478", "id": "3001638732", "tags": "arkansas hotsprings"}, {"datetaken": "2008-11-01 11:49:39", "license": "1", "title": "Garden of the Pine Wind pool", "text": "", "album_id": "72157608607868619", "longitude": "-93.048620", "url_o": "https://farm4.staticflickr.com/3245/2997192945_2dc4149c1b_o.jpg", "secret": "881e7bb740", "media": "photo", "latitude": "34.435478", "id": "2997192945", "tags": "arkansas hotsprings"}, {"datetaken": "2008-11-01 11:50:19", "license": "1", "title": "Garden of the Pine Wind waterfall", "text": "", "album_id": "72157608607868619", "longitude": "-93.048620", "url_o": "https://farm4.staticflickr.com/3281/2997193287_2dc2a0ca89_o.jpg", "secret": "3ceacbb8d4", "media": "photo", "latitude": "34.435478", "id": "2997193287", "tags": "arkansas hotsprings"}, {"datetaken": "2008-11-01 11:52:25", "license": "1", "title": "Full Moon Bridge", "text": "", "album_id": "72157608607868619", "longitude": "-93.048620", "url_o": "https://farm4.staticflickr.com/3220/3000801839_7508702022_o.jpg", "secret": "f24114215f", "media": "photo", "latitude": "34.435478", "id": "3000801839", "tags": "arkansas hotsprings"}, {"datetaken": "2008-11-01 12:02:50", "license": "1", "title": "Garvan Gardens Singing Springs", "text": "", "album_id": "72157608607868619", "longitude": "-93.048620", "url_o": "https://farm4.staticflickr.com/3019/2998036488_93d98f9f65_o.jpg", "secret": "b316b568bd", "media": "photo", "latitude": "34.435478", "id": "2998036488", "tags": "arkansas hotsprings"}, {"datetaken": "2008-11-01 12:17:02", "license": "1", "title": "singing Springs from Canopy Bridge", "text": "", "album_id": "72157608607868619", "longitude": "-93.048620", "url_o": "https://farm4.staticflickr.com/3072/2998080722_64cba59294_o.jpg", "secret": "c19ee89d12", "media": "photo", "latitude": "34.435478", "id": "2998080722", "tags": "arkansas hotsprings"}, {"datetaken": "2008-11-01 12:17:37", "license": "1", "title": "Singing Springs also from Canopy Bridge", "text": "", "album_id": "72157608607868619", "longitude": "-93.048620", "url_o": "https://farm4.staticflickr.com/3287/2997238739_902ffc7fbc_o.jpg", "secret": "28032e9aab", "media": "photo", "latitude": "34.435478", "id": "2997238739", "tags": "arkansas hotsprings"}, {"datetaken": "2008-11-01 12:35:47", "license": "1", "title": "Model Train Garden", "text": "", "album_id": "72157608607868619", "longitude": "-93.048620", "url_o": "https://farm4.staticflickr.com/3018/2997239151_582fc8e4e2_o.jpg", "secret": "ee861dd113", "media": "photo", "latitude": "34.435478", "id": "2997239151", "tags": "arkansas hotsprings"}, {"datetaken": "2008-11-01 13:10:06", "license": "1", "title": "Red Maple", "text": "", "album_id": "72157608607868619", "longitude": "-93.048620", "url_o": "https://farm4.staticflickr.com/3026/2997239519_2749df49af_o.jpg", "secret": "8d880213bb", "media": "photo", "latitude": "34.435478", "id": "2997239519", "tags": "arkansas hotsprings"}, {"datetaken": "2008-11-01 13:18:03", "license": "1", "title": "Garven Gardens wedding party", "text": "", "album_id": "72157608607868619", "longitude": "-93.048620", "url_o": "https://farm4.staticflickr.com/3239/2997192575_c2a8309400_o.jpg", "secret": "77ca550197", "media": "photo", "latitude": "34.435478", "id": "2997192575", "tags": "arkansas hotsprings"}, {"datetaken": "2008-11-01 13:18:50", "license": "1", "title": "Anthony Family Carillion", "text": "", "album_id": "72157608607868619", "longitude": "-93.048620", "url_o": "https://farm4.staticflickr.com/3023/2997192091_e054164aac_o.jpg", "secret": "8c9334595c", "media": "photo", "latitude": "34.435478", "id": "2997192091", "tags": "arkansas hotsprings"}, {"datetaken": "2008-11-01 13:19:51", "license": "1", "title": "Anthony Chapel", "text": "", "album_id": "72157608607868619", "longitude": "-93.048620", "url_o": "https://farm4.staticflickr.com/3185/2997191703_0888d5050b_o.jpg", "secret": "50463432b3", "media": "photo", "latitude": "34.435478", "id": "2997191703", "tags": "arkansas hotsprings"}, {"datetaken": "2008-12-05 22:25:35", "license": "2", "title": "Nan sportin' the tee", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3035/3086999017_8d2f4a9798_o.jpg", "secret": "09f382bb85", "media": "photo", "latitude": "0", "id": "3086999017", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-05 23:33:27", "license": "2", "title": "Sarah two-fisting", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3152/3087000995_208bdec112_o.jpg", "secret": "1967aeca21", "media": "photo", "latitude": "0", "id": "3087000995", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-05 23:33:32", "license": "2", "title": "Ashley and Erica", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3188/3087838046_1fe7a6bde2_o.jpg", "secret": "33280e2944", "media": "photo", "latitude": "0", "id": "3087838046", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-05 23:33:46", "license": "2", "title": "Ashley and Erica", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3147/3087838812_f2fc771084_o.jpg", "secret": "33eeac1901", "media": "photo", "latitude": "0", "id": "3087838812", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-05 23:37:20", "license": "2", "title": "Lindsey, Ashley, Erica and sweet T", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3111/3087003913_a1081b5d76_o.jpg", "secret": "ab5a98e84a", "media": "photo", "latitude": "0", "id": "3087003913", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-05 23:37:57", "license": "2", "title": "Laura & Lindsey", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3126/3087841014_1ea6b4dab3_o.jpg", "secret": "3fa9a21cae", "media": "photo", "latitude": "0", "id": "3087841014", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-05 23:39:51", "license": "2", "title": "Lindsey & Chad", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3118/3087841650_c9c73ca937_o.jpg", "secret": "333ae88db9", "media": "photo", "latitude": "0", "id": "3087841650", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-05 23:41:41", "license": "2", "title": "Brandon & Erica", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3040/3087842364_c641f9c6d2_o.jpg", "secret": "7d98c54d04", "media": "photo", "latitude": "0", "id": "3087842364", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-05 23:45:41", "license": "2", "title": "St. Michael", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3221/3087009227_98295a3614_o.jpg", "secret": "f2e7bff214", "media": "photo", "latitude": "0", "id": "3087009227", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-05 23:49:34", "license": "2", "title": "Lindsey and Nan", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3118/3087847278_aa1e91ce38_o.jpg", "secret": "2db3d3986e", "media": "photo", "latitude": "0", "id": "3087847278", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-05 23:50:15", "license": "2", "title": "Let him eat cake", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3240/3087847844_51245a9b69_o.jpg", "secret": "ec80d96fdc", "media": "photo", "latitude": "0", "id": "3087847844", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-05 23:52:11", "license": "2", "title": "No, I will not have cake", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3246/3087012239_da45420ff3_o.jpg", "secret": "fd6fa37641", "media": "photo", "latitude": "0", "id": "3087012239", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-05 23:53:39", "license": "2", "title": "Yes, you will have cake", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3126/3087014765_34e0687ae8_o.jpg", "secret": "56e8cc797a", "media": "photo", "latitude": "0", "id": "3087014765", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-06 00:22:14", "license": "2", "title": "Sisters to be", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3233/3087865592_f534aeb4ab_o.jpg", "secret": "985aebd04b", "media": "photo", "latitude": "0", "id": "3087865592", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-06 00:32:17", "license": "2", "title": "Sisters Ashley, Lindsey", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3129/3087876094_f90cf55cdd_o.jpg", "secret": "819a80e7dd", "media": "photo", "latitude": "0", "id": "3087876094", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-06 00:47:49", "license": "2", "title": "Grooms in arms", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3189/3087041175_abc911ab05_o.jpg", "secret": "1c07ff7759", "media": "photo", "latitude": "0", "id": "3087041175", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-06 01:19:59", "license": "2", "title": "T & Me", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3254/3087046425_14ddd40d29_o.jpg", "secret": "45a54d3fc4", "media": "photo", "latitude": "0", "id": "3087046425", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-06 01:23:14", "license": "2", "title": "Chad and Lindsey", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3088/3087888270_d48a5f4cae_o.jpg", "secret": "6b4cf769fc", "media": "photo", "latitude": "0", "id": "3087888270", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-06 01:23:34", "license": "2", "title": "on your mark, get set...", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3274/3087889724_82c5ecea79_o.jpg", "secret": "c02941fdb3", "media": "photo", "latitude": "0", "id": "3087889724", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-06 01:29:00", "license": "2", "title": "Newlyweds", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3239/3087057223_40f3292987_o.jpg", "secret": "883f1afac9", "media": "photo", "latitude": "0", "id": "3087057223", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-06 01:40:00", "license": "2", "title": "Damn you 1 ball!", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3069/3087895330_32a8a85ee2_o.jpg", "secret": "be7fab7098", "media": "photo", "latitude": "0", "id": "3087895330", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-06 01:43:22", "license": "2", "title": "Annie and sad face", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3284/3087897166_b3e763f86b_o.jpg", "secret": "fb9faedf17", "media": "photo", "latitude": "0", "id": "3087897166", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-06 02:05:21", "license": "2", "title": "Holdin' up Stosh", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3146/3087065401_a034eab757_o.jpg", "secret": "7b87e0d02b", "media": "photo", "latitude": "0", "id": "3087065401", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-06 02:13:48", "license": "2", "title": "Don't let go of that beer", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3192/3087070183_425ea51053_o.jpg", "secret": "c531781847", "media": "photo", "latitude": "0", "id": "3087070183", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-06 02:14:43", "license": "2", "title": "Land ho", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3155/3087906730_e5167ca58b_o.jpg", "secret": "d969ab7837", "media": "photo", "latitude": "0", "id": "3087906730", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-06 02:31:59", "license": "2", "title": "Otherwise engaged", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3158/3087908650_191beee186_o.jpg", "secret": "c394dec872", "media": "photo", "latitude": "0", "id": "3087908650", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-12-06 02:33:14", "license": "2", "title": "Our waitress", "text": "", "album_id": "72157610754478453", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3060/3087909954_06067ef44f_o.jpg", "secret": "fdffe99562", "media": "photo", "latitude": "0", "id": "3087909954", "tags": "ballard nightlife belmar engagementparty"}, {"datetaken": "2008-06-13 16:01:43", "license": "2", "title": "blog-009-veronica-thomas-09.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3074/2575191434_f81829c4c0_o.jpg", "secret": "26d620c7f1", "media": "photo", "latitude": "0", "id": "2575191434", "tags": "bride engagement hku simonthephoto"}, {"datetaken": "2008-06-13 16:02:06", "license": "2", "title": "blog-010-veronica-thomas-10.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3182/2574368049_7d5705e4fd_o.jpg", "secret": "92e1295caa", "media": "photo", "latitude": "0", "id": "2574368049", "tags": "light bride engagement hku simonthephoto"}, {"datetaken": "2008-06-13 16:07:16", "license": "2", "title": "blog-001-veronica-thomas-01.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3122/2574367229_e2dd39c810_o.jpg", "secret": "07f148337d", "media": "photo", "latitude": "0", "id": "2574367229", "tags": "reflection engagement hku brideandgroom simonthephoto"}, {"datetaken": "2008-06-13 16:07:22", "license": "2", "title": "blog-002-veronica-thomas-02.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3188/2574367357_6970d123b1_o.jpg", "secret": "48eb35010e", "media": "photo", "latitude": "0", "id": "2574367357", "tags": "engagement central brideandgroom simonthephoto"}, {"datetaken": "2008-06-13 16:07:27", "license": "2", "title": "blog-003-veronica-thomas-03.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3073/2574367471_d73cc2b754_o.jpg", "secret": "585d7b21e6", "media": "photo", "latitude": "0", "id": "2574367471", "tags": "engagement central simonthephoto"}, {"datetaken": "2008-06-13 16:07:31", "license": "2", "title": "blog-004-veronica-thomas-04.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3194/2575191010_be3b763eb3_o.jpg", "secret": "e3d9d0592a", "media": "photo", "latitude": "0", "id": "2575191010", "tags": "light engagement central brideandgroom simonthephoto"}, {"datetaken": "2008-06-13 16:07:35", "license": "2", "title": "blog-005-veronica-thomas-05.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3178/2574367613_038a1b5e13_o.jpg", "secret": "a928173310", "media": "photo", "latitude": "0", "id": "2574367613", "tags": "engagement central brideandgroom simonthephoto"}, {"datetaken": "2008-06-13 16:07:40", "license": "2", "title": "blog-006-veronica-thomas-06.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3035/2575191192_b9689c724e_o.jpg", "secret": "9d76d96b72", "media": "photo", "latitude": "0", "id": "2575191192", "tags": "engagement central brideandgroom simonthephoto"}, {"datetaken": "2008-06-13 16:07:43", "license": "2", "title": "blog-007-veronica-thomas-07.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3068/2575191260_7d05451bdb_o.jpg", "secret": "8dd3ba7165", "media": "photo", "latitude": "0", "id": "2575191260", "tags": "bride engagement central simonthephoto"}, {"datetaken": "2008-06-13 16:07:48", "license": "2", "title": "blog-008-veronica-thomas-08.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3005/2575191332_7f828b5627_o.jpg", "secret": "e31819970c", "media": "photo", "latitude": "0", "id": "2575191332", "tags": "engagement central brideandgroom simonthephoto"}, {"datetaken": "2008-06-13 16:08:01", "license": "2", "title": "blog-011-veronica-thomas-11.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3278/2574368145_e36b277124_o.jpg", "secret": "378068fa26", "media": "photo", "latitude": "0", "id": "2574368145", "tags": "color engagement sheko simonthephoto"}, {"datetaken": "2008-06-13 16:08:06", "license": "2", "title": "blog-012-veronica-thomas-12.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3059/2574368227_162d28e2f9_o.jpg", "secret": "c0212e47b1", "media": "photo", "latitude": "0", "id": "2574368227", "tags": "color engagement sheko simonthephoto"}, {"datetaken": "2008-06-13 16:08:10", "license": "2", "title": "blog-013-veronica-thomas-13-2.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3014/2574368319_c0c5ab556c_o.jpg", "secret": "735e1a222b", "media": "photo", "latitude": "0", "id": "2574368319", "tags": "beach engagement simonthephoto"}, {"datetaken": "2008-06-13 16:08:15", "license": "2", "title": "blog-014-veronica-thomas-14.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3151/2575191908_e1b0883dc8_o.jpg", "secret": "ea0fe47265", "media": "photo", "latitude": "0", "id": "2575191908", "tags": "beach engagement simonthephoto"}, {"datetaken": "2008-06-13 16:08:19", "license": "2", "title": "blog-015-veronica-thomas-15.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3259/2575191996_89c7c68b9d_o.jpg", "secret": "a030558836", "media": "photo", "latitude": "0", "id": "2575191996", "tags": "beach engagement simonthephoto"}, {"datetaken": "2008-06-13 16:08:24", "license": "2", "title": "blog-016-veronica-thomas-16.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3105/2575192106_1a269809a9_o.jpg", "secret": "04bbab008b", "media": "photo", "latitude": "0", "id": "2575192106", "tags": "engagement simonthephoto"}, {"datetaken": "2008-06-13 16:08:26", "license": "2", "title": "blog-017-veronica-thomas-17.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3108/2574368615_ac8f328eea_o.jpg", "secret": "1bf2b0d1b0", "media": "photo", "latitude": "0", "id": "2574368615", "tags": "light bride engagement simonthephoto"}, {"datetaken": "2008-06-13 16:08:31", "license": "2", "title": "blog-018-veronica-thomas-18.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3168/2575192282_b53bee8d23_o.jpg", "secret": "d430040703", "media": "photo", "latitude": "0", "id": "2575192282", "tags": "light bride engagement central simonthephoto"}, {"datetaken": "2008-06-13 16:08:36", "license": "2", "title": "blog-019-veronica-thomas-19.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3174/2575192416_820871746f_o.jpg", "secret": "00c5ef51ff", "media": "photo", "latitude": "0", "id": "2575192416", "tags": "light bride engagement central simonthephoto"}, {"datetaken": "2008-06-13 16:08:42", "license": "2", "title": "blog-020-veronica-thomas-23.jpg", "text": "", "album_id": "72157605584003494", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3151/2575192514_8ebb4492c6_o.jpg", "secret": "4a1960a6ea", "media": "photo", "latitude": "0", "id": "2575192514", "tags": "light engagement central simonthephoto"}, {"datetaken": "2008-09-13 11:43:17", "license": "3", "title": "Jack on 'the myth of engagement' at #bathcamp", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3048/2853135142_49b4abd3e7_o.jpg", "secret": "09d77ac395", "media": "photo", "latitude": "0", "id": "2853135142", "tags": "bar bath geek event camop bathcamp08 bathcamp digitalheritageevents"}, {"datetaken": "2008-09-13 11:47:06", "license": "3", "title": "Jack's slides on 'the myth of engagement' at #bathcamp", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3068/2853148632_3fa84005cc_o.jpg", "secret": "c9d6d0d5f2", "media": "photo", "latitude": "0", "id": "2853148632", "tags": "camp bar bath geek event slides barcamp bathcamp08 upcoming:event=691452 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-13 11:51:32", "license": "3", "title": "Jack's slides on 'the myth of engagement' at #bathcamp", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3033/2852301007_b320cb4f1c_o.jpg", "secret": "4b84ce44ea", "media": "photo", "latitude": "0", "id": "2852301007", "tags": "camp bar bath geek event slides barcamp bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-13 12:58:08", "license": "3", "title": "Session board at #bathcamp", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3279/2852402171_60b0fc50b5_o.jpg", "secret": "fa65678455", "media": "photo", "latitude": "0", "id": "2852402171", "tags": "camp bar bath geek event barcamp bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-13 13:04:28", "license": "3", "title": "Laura on Social Learning at #bathcamp", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3071/2852381963_13e47db5d4_o.jpg", "secret": "0260c53aa7", "media": "photo", "latitude": "0", "id": "2852381963", "tags": "camp bar bath geek event slides barcamp sociallearning bathcamp08 upcoming:event=691452 bathcamp digitalheritageevents"}, {"datetaken": "2008-09-13 13:12:15", "license": "3", "title": "Slide for further information on social learning at #bathcamp", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3279/2852393515_1623870323_o.jpg", "secret": "040c825751", "media": "photo", "latitude": "0", "id": "2852393515", "tags": "camp bar bath geek social event learning slides barcamp bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-13 13:14:30", "license": "3", "title": "Question time in session on Social Learning, #bathcamp", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3218/2852395799_9605ed643d_o.jpg", "secret": "d168f85059", "media": "photo", "latitude": "0", "id": "2852395799", "tags": "camp people bar bath geek event questions barcamp bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-13 13:16:52", "license": "3", "title": "Question time in session on Social Learning, #bathcamp", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3075/2853232314_362909c577_o.jpg", "secret": "cd803ee4cd", "media": "photo", "latitude": "0", "id": "2853232314", "tags": "camp people bar bath geek event questions barcamp bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-13 14:07:26", "license": "3", "title": "The bath at #bathcamp", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3236/2852470399_27ba7a209d_o.jpg", "secret": "01bbc5091a", "media": "photo", "latitude": "0", "id": "2852470399", "tags": "camp bar duck bath geek batch event duckie barcamp bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-13 17:13:24", "license": "3", "title": "Espresso tasting session at #bathcamp", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3167/2855749620_26e543cd9b_o.jpg", "secret": "f928d38afb", "media": "photo", "latitude": "0", "id": "2855749620", "tags": "camp bar bath geek geekery barcamp unconference bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-13 17:13:43", "license": "3", "title": "Espresso tasting session at #bathcamp", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3139/2854917843_d66f630770_o.jpg", "secret": "7b3972fc9e", "media": "photo", "latitude": "0", "id": "2854917843", "tags": "camp bar bath geek geekery barcamp unconference bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-13 20:00:04", "license": "3", "title": "Tub quiz - visual round at #bathcamp", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3078/2855752486_98a3845145_o.jpg", "secret": "6c85d8624d", "media": "photo", "latitude": "0", "id": "2855752486", "tags": "camp bar bath geek geekery barcamp unconference bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-14 00:13:26", "license": "3", "title": "Burgers from Schwartz's", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3092/2855754140_47955f3433_o.jpg", "secret": "14cda45776", "media": "photo", "latitude": "0", "id": "2855754140", "tags": "camp bar bath geek geekery barcamp unconference bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-14 00:13:40", "license": "3", "title": "Burgers from Schwartz's - the lucky ticket", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3113/2854922045_376bc332db_o.jpg", "secret": "27eb48b29e", "media": "photo", "latitude": "0", "id": "2854922045", "tags": "camp bar bath geek geekery barcamp unconference bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-14 00:19:25", "license": "3", "title": "Burgers from Schwartz's", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3133/2854923965_0f78822131_o.jpg", "secret": "77fb78b0d1", "media": "photo", "latitude": "0", "id": "2854923965", "tags": "camp bar bath geek geekery barcamp unconference bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-14 00:19:39", "license": "3", "title": "Burgers from Schwartz's", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3095/2855760104_2666161a2d_o.jpg", "secret": "f8e2591072", "media": "photo", "latitude": "0", "id": "2855760104", "tags": "camp bar bath geek geekery barcamp unconference bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-14 00:22:17", "license": "3", "title": "Burgers from Schwartz's", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3159/2855762544_c2b63b2bb5_o.jpg", "secret": "314ac21df4", "media": "photo", "latitude": "0", "id": "2855762544", "tags": "camp bar bath geek geekery barcamp unconference bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-14 00:22:30", "license": "3", "title": "Burgers from Schwartz's", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3198/2854934137_97870a8a2d_o.jpg", "secret": "c34da0032e", "media": "photo", "latitude": "0", "id": "2854934137", "tags": "camp bar bath geek geekery barcamp unconference bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-14 00:22:41", "license": "3", "title": "Burgers from Schwartz's", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3247/2855769960_fde1c72822_o.jpg", "secret": "740962d892", "media": "photo", "latitude": "0", "id": "2855769960", "tags": "camp bar bath geek geekery rotateme barcamp unconference bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-14 00:27:14", "license": "3", "title": "Burgers from Schwartz's", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3180/2855771768_2f93297a30_o.jpg", "secret": "31c1002636", "media": "photo", "latitude": "0", "id": "2855771768", "tags": "camp bar bath geek geekery barcamp unconference bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-14 00:27:25", "license": "3", "title": "Burgers from Schwartz's", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3082/2855773934_86162cea85_o.jpg", "secret": "48b223bd2d", "media": "photo", "latitude": "0", "id": "2855773934", "tags": "camp bar bath geek geekery barcamp unconference bathcamp08 bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-14 12:32:48", "license": "3", "title": "#bathcamp video addresses", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3202/2875439476_099830b800_o.jpg", "secret": "947d9858d9", "media": "photo", "latitude": "0", "id": "2875439476", "tags": "camp bar video bath geekery barcamp unconference bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2008-09-14 12:54:19", "license": "3", "title": "The end of #bathcamp", "text": "", "album_id": "72157607260816188", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3040/2874614045_ecbfc30c86_o.jpg", "secret": "02234befee", "media": "photo", "latitude": "0", "id": "2874614045", "tags": "camp bar bath geekery barcamp unconference bathcamp digitalheritageevents digitalheritagevents"}, {"datetaken": "2007-07-06 13:13:02", "license": "1", "title": "Girten 6", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1101/741734452_055ff1b650_o.jpg", "secret": "227c986d67", "media": "photo", "latitude": "0", "id": "741734452", "tags": ""}, {"datetaken": "2007-07-06 13:13:03", "license": "1", "title": "Randy 14", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1025/741734560_322c9e9246_o.jpg", "secret": "091badb1e0", "media": "photo", "latitude": "0", "id": "741734560", "tags": ""}, {"datetaken": "2007-07-06 13:13:04", "license": "1", "title": "Randy 17", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1083/741734710_eebd826d20_o.jpg", "secret": "6ed2835a0f", "media": "photo", "latitude": "0", "id": "741734710", "tags": ""}, {"datetaken": "2007-07-06 13:13:05", "license": "1", "title": "Randy 6", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1100/741734818_573efc329a_o.jpg", "secret": "91ba8fdd93", "media": "photo", "latitude": "0", "id": "741734818", "tags": ""}, {"datetaken": "2007-07-06 13:13:06", "license": "1", "title": "Randy and Kayla at Kings", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1347/740870575_d2125a1a3d_o.jpg", "secret": "6e69b0e479", "media": "photo", "latitude": "0", "id": "740870575", "tags": ""}, {"datetaken": "2007-07-06 13:13:07", "license": "1", "title": "randy and kerrie", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1139/741735004_c2fb6bb50a_o.jpg", "secret": "dae91fe148", "media": "photo", "latitude": "0", "id": "741735004", "tags": ""}, {"datetaken": "2007-07-06 13:13:07", "license": "1", "title": "randy and quaid", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1257/741735094_a997c2629c_o.jpg", "secret": "1b246a8fcc", "media": "photo", "latitude": "0", "id": "741735094", "tags": ""}, {"datetaken": "2007-07-06 13:13:08", "license": "1", "title": "randy and staci af", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1074/740870827_33a70d5450_o.jpg", "secret": "9f441cbe9a", "media": "photo", "latitude": "0", "id": "740870827", "tags": ""}, {"datetaken": "2007-07-06 13:13:08", "license": "1", "title": "randy as a baby", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1318/741735228_a0edffc656_o.jpg", "secret": "9b66894361", "media": "photo", "latitude": "0", "id": "741735228", "tags": ""}, {"datetaken": "2007-07-06 13:13:09", "license": "1", "title": "randy peace sign", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1314/740870995_89bbc37e09_o.jpg", "secret": "6def9249e9", "media": "photo", "latitude": "0", "id": "740870995", "tags": ""}, {"datetaken": "2007-07-06 13:13:10", "license": "1", "title": "Staci and Randy Engagement", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1248/741735398_3478632ce6_o.jpg", "secret": "89e10bb6f1", "media": "photo", "latitude": "0", "id": "741735398", "tags": ""}, {"datetaken": "2007-07-06 13:13:11", "license": "1", "title": "santa and randy and kim", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1377/740871187_3aa4dfe146_o.jpg", "secret": "8675f824f7", "media": "photo", "latitude": "0", "id": "740871187", "tags": ""}, {"datetaken": "2007-07-06 13:13:11", "license": "1", "title": "L Randy Rick and Brenda", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1203/740871297_d796d91b59_o.jpg", "secret": "0660aa3696", "media": "photo", "latitude": "0", "id": "740871297", "tags": ""}, {"datetaken": "2007-07-06 13:13:12", "license": "1", "title": "L. Randy 1", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1262/741735694_fb6f0be9e1_o.jpg", "secret": "d8f5e4f3f4", "media": "photo", "latitude": "0", "id": "741735694", "tags": ""}, {"datetaken": "2007-07-06 13:13:13", "license": "1", "title": "L. Randy 2", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1354/740871437_2e869445ec_o.jpg", "secret": "f2526916a9", "media": "photo", "latitude": "0", "id": "740871437", "tags": ""}, {"datetaken": "2007-07-06 13:13:13", "license": "1", "title": "L. Randy 3", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1266/740871531_7846a9c059_o.jpg", "secret": "799602613d", "media": "photo", "latitude": "0", "id": "740871531", "tags": ""}, {"datetaken": "2007-07-06 13:13:14", "license": "1", "title": "L. Randy 4", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1424/741735932_31cbf5c656_o.jpg", "secret": "b57570a9d0", "media": "photo", "latitude": "0", "id": "741735932", "tags": ""}, {"datetaken": "2007-07-06 13:13:15", "license": "1", "title": "L. Randy and Staci 1", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1351/740871721_0c3292f170_o.jpg", "secret": "9880998543", "media": "photo", "latitude": "0", "id": "740871721", "tags": ""}, {"datetaken": "2007-07-06 13:13:16", "license": "1", "title": "L-1. Randy and Staci 3", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1026/741736160_885277c455_o.jpg", "secret": "78448597c0", "media": "photo", "latitude": "0", "id": "741736160", "tags": ""}, {"datetaken": "2007-07-06 13:13:16", "license": "1", "title": "L. Randy and Staci 5", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1097/741736256_94d0106bd7_o.jpg", "secret": "148f9ec9b9", "media": "photo", "latitude": "0", "id": "741736256", "tags": ""}, {"datetaken": "2007-07-06 13:13:17", "license": "1", "title": "L. Randy Blue and White shirt", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1033/741736342_0cf5b84ea5_o.jpg", "secret": "05c2626c27", "media": "photo", "latitude": "0", "id": "741736342", "tags": ""}, {"datetaken": "2007-07-06 13:13:17", "license": "1", "title": "L. Randy staci dayrha jr", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1236/740872051_f93cae785c_o.jpg", "secret": "c3dedd95db", "media": "photo", "latitude": "0", "id": "740872051", "tags": ""}, {"datetaken": "2007-07-06 13:13:18", "license": "1", "title": "L. Randy staci kerrie kayla", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1356/741736496_9575187397_o.jpg", "secret": "60e5ef4d0b", "media": "photo", "latitude": "0", "id": "741736496", "tags": ""}, {"datetaken": "2007-07-06 13:13:19", "license": "1", "title": "L. Randy Staci Lora and Charlie", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1115/741736550_22cf2ef9cd_o.jpg", "secret": "6379633604", "media": "photo", "latitude": "0", "id": "741736550", "tags": ""}, {"datetaken": "2007-07-06 13:13:19", "license": "1", "title": "L.Randy and Staci 2", "text": "", "album_id": "72157600688151685", "longitude": "0", "url_o": "https://farm2.staticflickr.com/1347/741736664_b0a6a2758c_o.jpg", "secret": "b343a6aa74", "media": "photo", "latitude": "0", "id": "741736664", "tags": ""}, {"datetaken": "2008-10-07 18:03:08", "license": "1", "title": "Becky and Matt", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3182/2945981298_29c9ec0b4c_o.jpg", "secret": "d5b6b79655", "media": "photo", "latitude": "0", "id": "2945981298", "tags": "green matt engagement photos becky brookings sylvan"}, {"datetaken": "2008-10-07 18:03:33", "license": "1", "title": "Becky and Matt", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3057/2945117815_7cc8605502_o.jpg", "secret": "ce344deda9", "media": "photo", "latitude": "0", "id": "2945117815", "tags": "green matt engagement photos becky brookings sylvan"}, {"datetaken": "2008-10-07 18:03:38", "license": "1", "title": "Becky and Matt", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3035/2945120325_40e6e11733_o.jpg", "secret": "c20c405a56", "media": "photo", "latitude": "0", "id": "2945120325", "tags": "green matt engagement photos becky brookings sylvan"}, {"datetaken": "2008-10-07 18:05:39", "license": "1", "title": "Becky and Matt", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3281/2945985746_6c8c15a810_o.jpg", "secret": "7e88008be9", "media": "photo", "latitude": "0", "id": "2945985746", "tags": "green matt engagement photos becky brookings sylvan"}, {"datetaken": "2008-10-07 18:06:36", "license": "1", "title": "Becky and Matt", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3069/2945986802_c644e9612c_o.jpg", "secret": "ed6457113e", "media": "photo", "latitude": "0", "id": "2945986802", "tags": "green matt engagement photos becky brookings sylvan"}, {"datetaken": "2008-10-07 18:06:51", "license": "1", "title": "Becky and Matt", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3003/2945987806_9d743bba00_o.jpg", "secret": "5146d77eb5", "media": "photo", "latitude": "0", "id": "2945987806", "tags": "green matt engagement photos becky brookings sylvan"}, {"datetaken": "2008-10-07 18:07:52", "license": "1", "title": "Becky and Matt", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3144/2945124201_982da29e0d_o.jpg", "secret": "5f80f0f997", "media": "photo", "latitude": "0", "id": "2945124201", "tags": "green matt engagement photos becky brookings sylvan"}, {"datetaken": "2008-10-07 18:07:59", "license": "1", "title": "Becky and Matt", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3248/2945989518_da9424a434_o.jpg", "secret": "8ff81b5256", "media": "photo", "latitude": "0", "id": "2945989518", "tags": "green matt engagement photos becky brookings sylvan"}, {"datetaken": "2008-10-07 18:08:13", "license": "1", "title": "Becky and Matt", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3196/2945990476_f840529dec_o.jpg", "secret": "38e7bcf39f", "media": "photo", "latitude": "0", "id": "2945990476", "tags": "green matt engagement photos becky brookings sylvan"}, {"datetaken": "2008-10-07 18:08:21", "license": "1", "title": "Becky and Matt", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3279/2945126909_355a466f12_o.jpg", "secret": "fe47ffbb9d", "media": "photo", "latitude": "0", "id": "2945126909", "tags": "green matt engagement photos becky brookings sylvan"}, {"datetaken": "2008-10-07 18:09:08", "license": "1", "title": "Becky and Matt", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3152/2945992012_35c89b39cf_o.jpg", "secret": "f74ed39941", "media": "photo", "latitude": "0", "id": "2945992012", "tags": "green matt engagement photos becky brookings sylvan"}, {"datetaken": "2008-10-07 18:09:14", "license": "1", "title": "Becky and Matt", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3178/2945128617_1aaa740b12_o.jpg", "secret": "f091c871d5", "media": "photo", "latitude": "0", "id": "2945128617", "tags": "green matt engagement photos becky brookings sylvan"}, {"datetaken": "2008-10-07 18:09:52", "license": "1", "title": "Becky and Matt", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3146/2945130203_814cb86151_o.jpg", "secret": "79512829db", "media": "photo", "latitude": "0", "id": "2945130203", "tags": "green matt engagement photos becky brookings sylvan"}, {"datetaken": "2008-10-07 18:14:18", "license": "1", "title": "Becky and Matt", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3189/2945130985_c4d8315682_o.jpg", "secret": "f6fa35297b", "media": "photo", "latitude": "0", "id": "2945130985", "tags": "green matt engagement photos becky brookings sylvan"}, {"datetaken": "2008-10-07 18:14:54", "license": "1", "title": "Becky and Matt", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3169/2945996068_7220e2b6e7_o.jpg", "secret": "037835ace9", "media": "photo", "latitude": "0", "id": "2945996068", "tags": "green matt engagement photos becky brookings sylvan"}, {"datetaken": "2008-10-07 18:15:20", "license": "1", "title": "Becky and Matt", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3033/2945132655_372ed1865f_o.jpg", "secret": "a311141eb3", "media": "photo", "latitude": "0", "id": "2945132655", "tags": "green matt engagement photos becky brookings sylvan"}, {"datetaken": "2008-10-07 18:17:02", "license": "1", "title": "Flower buds", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3173/2945997806_b43667316c_o.jpg", "secret": "20b5b2ed2b", "media": "photo", "latitude": "0", "id": "2945997806", "tags": "flower bud"}, {"datetaken": "2008-10-07 18:21:15", "license": "1", "title": "Ghost Becky", "text": "", "album_id": "72157608062240202", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3296/2945998744_0a5acdc7b5_o.jpg", "secret": "432f5c3ca5", "media": "photo", "latitude": "0", "id": "2945998744", "tags": "reflection becky"}, {"datetaken": "2008-04-06 14:06:31", "license": "3", "title": "Bad Abbie", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2221/2404694628_1e4915f171_o.jpg", "secret": "7536486faf", "media": "photo", "latitude": "0", "id": "2404694628", "tags": "abbie pooping balto"}, {"datetaken": "2008-04-06 14:08:57", "license": "3", "title": "Reflection of me", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3192/2404694632_69fde28b50_o.jpg", "secret": "ab36381258", "media": "photo", "latitude": "0", "id": "2404694632", "tags": "reflection me redhead freckles balto"}, {"datetaken": "2008-04-06 14:16:28", "license": "3", "title": "Faces", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2036/2404694636_3ce7201ac6_o.jpg", "secret": "048bf73521", "media": "photo", "latitude": "0", "id": "2404694636", "tags": "art face balto thelabyrinthattheamaranthinemuseuminbaltimore"}, {"datetaken": "2008-04-06 14:18:48", "license": "3", "title": "Split", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2087/2416128673_4daa505ff3_o.jpg", "secret": "51989d5337", "media": "photo", "latitude": "0", "id": "2416128673", "tags": "balto lesharris thelabyrinth amaranthinemuseum"}, {"datetaken": "2008-04-06 14:24:52", "license": "3", "title": "Picture frame", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3230/2416128681_ca6ef51f48_o.jpg", "secret": "241bcc8cb9", "media": "photo", "latitude": "0", "id": "2416128681", "tags": "balto lesharris thelabyrinth amaranthinemuseum"}, {"datetaken": "2008-04-06 14:25:42", "license": "3", "title": "Looking Through", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2021/2416128693_86b786ffc4_o.jpg", "secret": "c399fe15ee", "media": "photo", "latitude": "0", "id": "2416128693", "tags": "balto lesharris thelabyrinth amaranthinemuseum"}, {"datetaken": "2008-04-06 14:38:14", "license": "3", "title": "points", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2339/2416128717_e64f0dcbbb_o.jpg", "secret": "00c2af729b", "media": "photo", "latitude": "0", "id": "2416128717", "tags": "balto lesharris thelabyrinth amaranthinemuseum"}, {"datetaken": "2008-04-06 14:40:30", "license": "3", "title": "Tree Stencil", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3080/2416128739_8c8824ffaf_o.jpg", "secret": "c9dcb492fe", "media": "photo", "latitude": "0", "id": "2416128739", "tags": "balto lesharris thelabyrinth amaranthinemuseum"}, {"datetaken": "2008-04-06 14:42:25", "license": "3", "title": "Rollers", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2206/2416128751_95bddd008c_o.jpg", "secret": "cfeb6b8f90", "media": "photo", "latitude": "0", "id": "2416128751", "tags": "balto lesharris thelabyrinth amaranthinemuseum"}, {"datetaken": "2008-04-06 14:43:44", "license": "3", "title": "stained glass", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2159/2416547513_03a2f443c7_o.jpg", "secret": "553c2cddf9", "media": "photo", "latitude": "0", "id": "2416547513", "tags": "baltimore balto lesharris thelabyrinth amaranthinemuseum"}, {"datetaken": "2008-04-06 14:58:00", "license": "3", "title": "red plate", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2285/2416547519_b4c2bf6147_o.jpg", "secret": "5c75bff002", "media": "photo", "latitude": "0", "id": "2416547519", "tags": "baltimore balto lesharris thelabyrinth amaranthinemuseum"}, {"datetaken": "2008-04-06 15:01:03", "license": "3", "title": "Thing broke", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2140/2416547523_68f6943b22_o.jpg", "secret": "137d74fc87", "media": "photo", "latitude": "0", "id": "2416547523", "tags": "baltimore balto lesharris thelabyrinth amaranthinemuseum"}, {"datetaken": "2008-04-06 15:07:33", "license": "3", "title": "Frames", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2093/2416547531_a5ef356f54_o.jpg", "secret": "6a7d2f7e57", "media": "photo", "latitude": "0", "id": "2416547531", "tags": "baltimore balto lesharris thelabyrinth amaranthinemuseum"}, {"datetaken": "2008-04-06 15:32:49", "license": "3", "title": "cherry blossom", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2135/2416547563_f737dd96c3_o.jpg", "secret": "be3d0f5ca4", "media": "photo", "latitude": "0", "id": "2416547563", "tags": "baltimore balto lesharris thelabyrinth amaranthinemuseum"}, {"datetaken": "2008-04-06 19:50:54", "license": "3", "title": "mmmm gelato", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3025/2419843608_63a8cbe5fb_o.jpg", "secret": "e615325e37", "media": "photo", "latitude": "0", "id": "2419843608", "tags": "baltimore delicious gelato balto pitango"}, {"datetaken": "2008-04-06 20:03:54", "license": "3", "title": "", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2001/2419843614_3c8b95e783_o.jpg", "secret": "46dd99f59c", "media": "photo", "latitude": "0", "id": "2419843614", "tags": "baltimore delicious gelato balto pitango"}, {"datetaken": "2008-04-06 20:05:56", "license": "3", "title": "Pitango", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2394/2419843616_891e411693_o.jpg", "secret": "e7f2837874", "media": "photo", "latitude": "0", "id": "2419843616", "tags": "baltimore delicious gelato balto kindablurry eatberthasmussels pitango"}, {"datetaken": "2008-04-06 20:43:18", "license": "3", "title": "Domino Sugars", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3023/2419043761_6cb716b415_o.jpg", "secret": "c7a246e186", "media": "photo", "latitude": "0", "id": "2419043761", "tags": "sign baltimore balto dominosugars firsttimetryingalongexposure happyitookmygorillapod"}, {"datetaken": "2008-04-06 20:47:24", "license": "3", "title": "Engagement Pic", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2344/2419058473_10562d7cb0_o.jpg", "secret": "944f723007", "media": "photo", "latitude": "0", "id": "2419058473", "tags": "longexposure baltimore abbie federalhill balto eatai"}, {"datetaken": "2008-04-06 20:58:59", "license": "3", "title": "group shot", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2178/2419058481_7e4f11c080_o.jpg", "secret": "cab2f546bc", "media": "photo", "latitude": "0", "id": "2419058481", "tags": "longexposure me paige baltimore abbie federalhill balto eatai"}, {"datetaken": "2008-04-06 21:52:40", "license": "3", "title": "Cuppa tea", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3275/2532381575_de3eabe837_o.jpg", "secret": "f089c384aa", "media": "photo", "latitude": "0", "id": "2532381575", "tags": "motion tea strong producer cuppa brownian imissaustralia maybeillgobackonceimanurse thatisafterivisitfra"}, {"datetaken": "2008-04-06 21:53:49", "license": "3", "title": "Cuppa", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3435/3207620211_225a39a20b_o.jpg", "secret": "913b14f01a", "media": "photo", "latitude": "0", "id": "3207620211", "tags": "tea"}, {"datetaken": "2008-04-07 13:56:57", "license": "3", "title": "sisters", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3477/3207619937_91ed82fdd2_o.jpg", "secret": "55f3482aac", "media": "photo", "latitude": "0", "id": "3207619937", "tags": "me sister april abbie balto"}, {"datetaken": "2008-04-07 14:06:56", "license": "3", "title": "Flowers and the church", "text": "", "album_id": "72157604474354874", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2272/2533201484_85afdd7fcc_o.jpg", "secret": "543f54e994", "media": "photo", "latitude": "0", "id": "2533201484", "tags": "church baltimore cherryblossoms"}, {"datetaken": "2002-10-12 10:41:14", "license": "3", "title": "Bailey", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/35426390_e6729c2cfc_o.jpg", "secret": "e6729c2cfc", "media": "photo", "latitude": "0", "id": "35426390", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 10:41:37", "license": "3", "title": "Attack!", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/35426398_808ce4d20e_o.jpg", "secret": "808ce4d20e", "media": "photo", "latitude": "0", "id": "35426398", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 10:43:30", "license": "3", "title": "Bailey", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/35426405_9754eb074a_o.jpg", "secret": "9754eb074a", "media": "photo", "latitude": "0", "id": "35426405", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 13:57:40", "license": "3", "title": "Bus tour of philly", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/35426410_f7cb9ad4ba_o.jpg", "secret": "f7cb9ad4ba", "media": "photo", "latitude": "0", "id": "35426410", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 14:05:34", "license": "3", "title": "Bus tour of philly", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/35426418_1cf050d355_o.jpg", "secret": "1cf050d355", "media": "photo", "latitude": "0", "id": "35426418", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 14:05:46", "license": "3", "title": "Bus tour of philly", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/35426424_866022c80e_o.jpg", "secret": "866022c80e", "media": "photo", "latitude": "0", "id": "35426424", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 14:09:31", "license": "3", "title": "Bus tour of philly", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/35426430_9b2ad6e5b4_o.jpg", "secret": "9b2ad6e5b4", "media": "photo", "latitude": "0", "id": "35426430", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 14:12:25", "license": "3", "title": "Bus tour of philly", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/35426439_244c16a03c_o.jpg", "secret": "244c16a03c", "media": "photo", "latitude": "0", "id": "35426439", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 14:22:35", "license": "3", "title": "Bus tour of philly", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/35426445_682fb809a0_o.jpg", "secret": "682fb809a0", "media": "photo", "latitude": "0", "id": "35426445", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 14:25:26", "license": "3", "title": "Bus tour of philly", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/35426459_732e299139_o.jpg", "secret": "732e299139", "media": "photo", "latitude": "0", "id": "35426459", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 14:26:34", "license": "3", "title": "Bus tour of philly", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/35426471_12bd042963_o.jpg", "secret": "12bd042963", "media": "photo", "latitude": "0", "id": "35426471", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 14:26:58", "license": "3", "title": "Bus tour of philly", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/35426480_22fafd9992_o.jpg", "secret": "22fafd9992", "media": "photo", "latitude": "0", "id": "35426480", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 14:27:15", "license": "3", "title": "Bus tour of philly", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/35426488_f967473441_o.jpg", "secret": "f967473441", "media": "photo", "latitude": "0", "id": "35426488", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 14:35:25", "license": "3", "title": "Bus tour of philly", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/35426494_ba0a41dfd8_o.jpg", "secret": "ba0a41dfd8", "media": "photo", "latitude": "0", "id": "35426494", "tags": "red philadelphia church doors philly"}, {"datetaken": "2002-10-12 14:42:51", "license": "3", "title": "The Thinker", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/28/35426505_6136373239_o.jpg", "secret": "6136373239", "media": "photo", "latitude": "0", "id": "35426505", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 14:46:07", "license": "3", "title": "Bus tour of philly", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/35426516_101cc25fd1_o.jpg", "secret": "101cc25fd1", "media": "photo", "latitude": "0", "id": "35426516", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 14:50:12", "license": "3", "title": "Bus tour of philly", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/35426521_88b522de80_o.jpg", "secret": "88b522de80", "media": "photo", "latitude": "0", "id": "35426521", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 14:52:28", "license": "3", "title": "Bus tour of philly", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/35426525_da4e107d20_o.jpg", "secret": "da4e107d20", "media": "photo", "latitude": "0", "id": "35426525", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 15:04:31", "license": "3", "title": "Bus tour of philly", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/35426348_306f6a2699_o.jpg", "secret": "306f6a2699", "media": "photo", "latitude": "0", "id": "35426348", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 16:25:53", "license": "3", "title": "", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/35426353_81446bba27_o.jpg", "secret": "81446bba27", "media": "photo", "latitude": "0", "id": "35426353", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 16:26:11", "license": "3", "title": "", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/35426360_913669a340_o.jpg", "secret": "913669a340", "media": "photo", "latitude": "0", "id": "35426360", "tags": "philly philadelphia"}, {"datetaken": "2002-10-12 16:36:45", "license": "3", "title": "Laura", "text": "", "album_id": "783955", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/35426376_9e6abc3ee6_o.jpg", "secret": "9e6abc3ee6", "media": "photo", "latitude": "0", "id": "35426376", "tags": "philly philadelphia"}, {"datetaken": "2008-06-22 19:58:33", "license": "3", "title": "Stacy & Andrew engagement party", "text": "", "album_id": "72157605866485628", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3093/2619752878_45b8d8454f_o.jpg", "secret": "4096791b4e", "media": "photo", "latitude": "0", "id": "2619752878", "tags": "cassidy"}, {"datetaken": "2008-06-22 19:58:33", "license": "3", "title": "Stacy & Andrew engagement party", "text": "", "album_id": "72157605866485628", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3074/2621748150_3c6ef84429_o.jpg", "secret": "2773195af5", "media": "photo", "latitude": "0", "id": "2621748150", "tags": ""}, {"datetaken": "2008-06-22 19:58:40", "license": "3", "title": "Stacy & Andrew engagement party", "text": "", "album_id": "72157605866485628", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3124/2618931337_a85c296536_o.jpg", "secret": "1ace5ae340", "media": "photo", "latitude": "0", "id": "2618931337", "tags": "cassidy janet smed"}, {"datetaken": "2008-06-22 19:58:48", "license": "3", "title": "Stacy & Andrew engagement party", "text": "", "album_id": "72157605866485628", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3043/2619755802_12ae2e434a_o.jpg", "secret": "951c2f77bb", "media": "photo", "latitude": "0", "id": "2619755802", "tags": "amanda cassidy"}, {"datetaken": "2008-06-22 19:59:52", "license": "3", "title": "Stacy & Andrew engagement party", "text": "", "album_id": "72157605866485628", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3040/2618934145_50a9fde58c_o.jpg", "secret": "95702b85a1", "media": "photo", "latitude": "0", "id": "2618934145", "tags": "stacy andrew"}, {"datetaken": "2008-06-22 20:00:21", "license": "3", "title": "Stacy & Andrew engagement party", "text": "", "album_id": "72157605866485628", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3143/2618935065_9533223a6c_o.jpg", "secret": "c1633eed1c", "media": "photo", "latitude": "0", "id": "2618935065", "tags": "jayce"}, {"datetaken": "2008-06-22 20:12:59", "license": "3", "title": "Stacy & Andrew engagement party", "text": "", "album_id": "72157605866485628", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2051/2618935433_92c9435cb8_o.jpg", "secret": "0b90bb9ccf", "media": "photo", "latitude": "0", "id": "2618935433", "tags": "zach"}, {"datetaken": "2008-06-22 20:13:11", "license": "3", "title": "Stacy & Andrew engagement party", "text": "", "album_id": "72157605866485628", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3093/2618935947_dc43fcabc6_o.jpg", "secret": "05ed6700f4", "media": "photo", "latitude": "0", "id": "2618935947", "tags": "zach"}, {"datetaken": "2008-06-22 20:13:17", "license": "3", "title": "Stacy & Andrew engagement party", "text": "", "album_id": "72157605866485628", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3073/2619759026_6124509f6f_o.jpg", "secret": "f6d7a921d2", "media": "photo", "latitude": "0", "id": "2619759026", "tags": "micah"}, {"datetaken": "2008-06-22 20:13:23", "license": "3", "title": "Stacy & Andrew engagement party", "text": "", "album_id": "72157605866485628", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3105/2618936893_4919e703de_o.jpg", "secret": "fb2d981d17", "media": "photo", "latitude": "0", "id": "2618936893", "tags": ""}, {"datetaken": "2008-06-22 20:13:33", "license": "3", "title": "Stacy & Andrew engagement party", "text": "", "album_id": "72157605866485628", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3016/2619760190_d04952a894_o.jpg", "secret": "a7e3879d1e", "media": "photo", "latitude": "0", "id": "2619760190", "tags": ""}, {"datetaken": "2008-06-22 20:13:37", "license": "3", "title": "Stacy & Andrew engagement party", "text": "", "album_id": "72157605866485628", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3228/2619760602_a5018266e2_o.jpg", "secret": "04eb3152c8", "media": "photo", "latitude": "0", "id": "2619760602", "tags": ""}, {"datetaken": "2008-06-22 20:13:54", "license": "3", "title": "Stacy & Andrew engagement party", "text": "", "album_id": "72157605866485628", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3001/2619761084_06c9371111_o.jpg", "secret": "d40c678f73", "media": "photo", "latitude": "0", "id": "2619761084", "tags": ""}, {"datetaken": "2008-06-22 20:14:00", "license": "3", "title": "Stacy & Andrew engagement party", "text": "", "album_id": "72157605866485628", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3132/2619761690_bdf826d1a7_o.jpg", "secret": "b6164426eb", "media": "photo", "latitude": "0", "id": "2619761690", "tags": ""}, {"datetaken": "2008-06-22 20:14:04", "license": "3", "title": "Stacy & Andrew engagement party", "text": "", "album_id": "72157605866485628", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3005/2618939145_636d20f5a7_o.jpg", "secret": "6bb4e3200e", "media": "photo", "latitude": "0", "id": "2618939145", "tags": "george"}, {"datetaken": "2008-06-22 20:14:09", "license": "3", "title": "Stacy & Andrew engagement party", "text": "", "album_id": "72157605866485628", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3220/2619762650_944e43770c_o.jpg", "secret": "ba69b41d3a", "media": "photo", "latitude": "0", "id": "2619762650", "tags": "george"}, {"datetaken": "2008-06-22 20:14:14", "license": "3", "title": "Stacy & Andrew engagement party", "text": "", "album_id": "72157605866485628", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3071/2618940473_9c8f5d699e_o.jpg", "secret": "5e62606e0d", "media": "photo", "latitude": "0", "id": "2618940473", "tags": "nabil"}, {"datetaken": "2005-08-27 16:37:00", "license": "4", "title": "Geoff and Natasha at their engagement party", "text": "", "album_id": "848373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/38478000_59c5c76ff4_o.jpg", "secret": "59c5c76ff4", "media": "photo", "latitude": "0", "id": "38478000", "tags": "mi hija"}, {"datetaken": "2005-08-27 16:58:24", "license": "4", "title": "Matt and Natasha", "text": "", "album_id": "848373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/38482286_736472ed7f_o.jpg", "secret": "736472ed7f", "media": "photo", "latitude": "0", "id": "38482286", "tags": "mi hija"}, {"datetaken": "2005-08-27 17:00:29", "license": "4", "title": "Natasha's little brother...", "text": "", "album_id": "848373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/38486396_67a27c4259_o.jpg", "secret": "67a27c4259", "media": "photo", "latitude": "0", "id": "38486396", "tags": "mi hija"}, {"datetaken": "2005-08-27 17:20:41", "license": "4", "title": "the kids played horseshoes", "text": "", "album_id": "848373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/38480773_2238164338_o.jpg", "secret": "2238164338", "media": "photo", "latitude": "0", "id": "38480773", "tags": "mi hija"}, {"datetaken": "2005-08-27 17:38:32", "license": "4", "title": "The official plates and napkins", "text": "", "album_id": "848373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/38478001_dc1cf3563e_o.jpg", "secret": "dc1cf3563e", "media": "photo", "latitude": "0", "id": "38478001", "tags": "mi hija"}, {"datetaken": "2005-08-27 17:38:37", "license": "4", "title": "more food", "text": "", "album_id": "848373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/38486397_cb10bc7494_o.jpg", "secret": "cb10bc7494", "media": "photo", "latitude": "0", "id": "38486397", "tags": "mi hija"}, {"datetaken": "2005-08-27 18:24:26", "license": "4", "title": "more of the family", "text": "", "album_id": "848373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/38480774_4a5ff6752b_o.jpg", "secret": "4a5ff6752b", "media": "photo", "latitude": "0", "id": "38480774", "tags": "mi hija"}, {"datetaken": "2005-08-27 18:25:04", "license": "4", "title": "Natasha and her mom", "text": "", "album_id": "848373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/38480775_1ef4017308_o.jpg", "secret": "1ef4017308", "media": "photo", "latitude": "0", "id": "38480775", "tags": "mi hija"}, {"datetaken": "2005-08-27 18:25:43", "license": "4", "title": "Ellie, Natasha and Zeke", "text": "", "album_id": "848373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/38482284_d6a0dfd1d2_o.jpg", "secret": "d6a0dfd1d2", "media": "photo", "latitude": "0", "id": "38482284", "tags": "mi hija"}, {"datetaken": "2005-08-27 18:27:56", "license": "4", "title": "Geoff, his future mother-in-law, and Natasha :D", "text": "", "album_id": "848373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/38480772_49ac4f6712_o.jpg", "secret": "49ac4f6712", "media": "photo", "latitude": "0", "id": "38480772", "tags": "mi hija"}, {"datetaken": "2005-08-27 18:29:08", "license": "4", "title": "the lucky couple!", "text": "", "album_id": "848373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/32/38486398_0556fef2ce_o.jpg", "secret": "0556fef2ce", "media": "photo", "latitude": "0", "id": "38486398", "tags": "mi hija"}, {"datetaken": "2005-08-27 18:31:16", "license": "4", "title": "one more pic of the little brother in action", "text": "", "album_id": "848373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/38486400_7226bf2b0c_o.jpg", "secret": "7226bf2b0c", "media": "photo", "latitude": "0", "id": "38486400", "tags": "mi hija"}, {"datetaken": "2005-08-27 18:35:59", "license": "4", "title": "Brook proposes a toast...", "text": "", "album_id": "848373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/38486399_12b142d38f_o.jpg", "secret": "12b142d38f", "media": "photo", "latitude": "0", "id": "38486399", "tags": "mi hija"}, {"datetaken": "2005-08-27 19:59:16", "license": "4", "title": "CJ, Natasha and Autumn", "text": "", "album_id": "848373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/38482287_295c6d9b7a_o.jpg", "secret": "295c6d9b7a", "media": "photo", "latitude": "0", "id": "38482287", "tags": "mi hija"}, {"datetaken": "2005-08-27 20:04:34", "license": "4", "title": "mi hija y su hermana", "text": "", "album_id": "848373", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/38482285_228c54a5a8_o.jpg", "secret": "228c54a5a8", "media": "photo", "latitude": "0", "id": "38482285", "tags": "mi hija"}, {"datetaken": "2008-09-29 18:51:21", "license": "1", "title": "Molly at Ugly Mugs!", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3104/2901281578_c98ec61643_o.jpg", "secret": "b02530f2d7", "media": "photo", "latitude": "0", "id": "2901281578", "tags": "coffee work computer nashville laptop couch nashvillest uglymugs"}, {"datetaken": "2008-09-29 18:53:47", "license": "1", "title": "Sigh...", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3177/2900442075_673ef7454a_o.jpg", "secret": "290448a19b", "media": "photo", "latitude": "0", "id": "2900442075", "tags": "foot"}, {"datetaken": "2008-09-29 18:54:12", "license": "1", "title": "Computing on Couching", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3163/2901287854_3138290459_o.jpg", "secret": "d19d006d3a", "media": "photo", "latitude": "0", "id": "2901287854", "tags": ""}, {"datetaken": "2008-09-29 18:55:47", "license": "1", "title": "Lounging at Ugly Mugs", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3035/2900446065_08dd59e28f_o.jpg", "secret": "222d17b54c", "media": "photo", "latitude": "0", "id": "2900446065", "tags": "coffee nashville tea nashvillest uglymugs"}, {"datetaken": "2008-09-29 19:37:08", "license": "1", "title": "Jessie!", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3182/2900447401_d58311e9d3_o.jpg", "secret": "20185ce928", "media": "photo", "latitude": "0", "id": "2900447401", "tags": ""}, {"datetaken": "2008-09-29 19:37:17", "license": "1", "title": "Wes and Molly at Ugly Mugs", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3166/2901294984_4f6a5ed9e3_o.jpg", "secret": "730822f712", "media": "photo", "latitude": "0", "id": "2901294984", "tags": ""}, {"datetaken": "2008-09-29 19:37:42", "license": "1", "title": "Facebook Profile", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3022/2900452121_01d070b30d_o.jpg", "secret": "c608823077", "media": "photo", "latitude": "0", "id": "2900452121", "tags": ""}, {"datetaken": "2008-09-29 19:40:59", "license": "1", "title": "Engagement Ring Fist Pound", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3228/2901296940_fc789e325a_o.jpg", "secret": "62b4f28989", "media": "photo", "latitude": "0", "id": "2901296940", "tags": "wedding engagement hand marriage ring fist pound nashvillest"}, {"datetaken": "2008-09-29 19:42:11", "license": "1", "title": "Nate so SEXY at Ugly Mugs", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3176/2901298074_f08a6759d3_o.jpg", "secret": "1893f1fac2", "media": "photo", "latitude": "0", "id": "2901298074", "tags": "coffee uglymugs"}, {"datetaken": "2008-09-29 19:46:46", "license": "1", "title": "Jessie", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3252/2900455847_3b8c37112b_o.jpg", "secret": "4812075836", "media": "photo", "latitude": "0", "id": "2900455847", "tags": ""}, {"datetaken": "2008-09-29 19:47:21", "license": "1", "title": "The beautiful Jessie", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3282/2901300824_b52556029d_o.jpg", "secret": "d0bfa47283", "media": "photo", "latitude": "0", "id": "2901300824", "tags": ""}, {"datetaken": "2008-09-29 19:49:20", "license": "1", "title": "Ugly Mugs", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3228/2900459787_c474e23c09_o.jpg", "secret": "6e20da1c5b", "media": "photo", "latitude": "0", "id": "2900459787", "tags": "coffee nashville uglymugs"}, {"datetaken": "2008-09-29 19:50:22", "license": "1", "title": "Lee", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3095/2900461265_36fed54e35_o.jpg", "secret": "dac0491dab", "media": "photo", "latitude": "0", "id": "2900461265", "tags": ""}, {"datetaken": "2008-09-29 19:53:16", "license": "1", "title": "Luke's first day at Ugly Mugs", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3108/2901306332_bfa842341c_o.jpg", "secret": "df8e884993", "media": "photo", "latitude": "0", "id": "2901306332", "tags": "sexy cup coffee mouth kiss nashville tea coffeecup lips coffeemug nashvillest uglymugs"}, {"datetaken": "2008-09-29 19:53:30", "license": "1", "title": "Luke at Ugly Mugs", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3123/2901307884_2bf5c1feaa_o.jpg", "secret": "8dd3a360de", "media": "photo", "latitude": "0", "id": "2901307884", "tags": "cup coffee nashville tea coffeecup coffeemug nashvillest uglymugs"}, {"datetaken": "2008-09-29 19:53:39", "license": "1", "title": "Gingerly", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3149/2901309218_b82dc981da_o.jpg", "secret": "1fe12e4c0d", "media": "photo", "latitude": "0", "id": "2901309218", "tags": "coffee nashville nashvillest uglymugs"}, {"datetaken": "2008-09-29 19:53:54", "license": "1", "title": "Luke first day at Ugly Mugs", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3103/2900467111_b22cb60cb4_o.jpg", "secret": "792d98beff", "media": "photo", "latitude": "0", "id": "2900467111", "tags": "coffee nashville tea nashvillest uglymugs"}, {"datetaken": "2008-09-29 19:54:23", "license": "1", "title": "Luke reaching out an empty cup at Ugly Mugs", "text": "", "album_id": "72157607595711983", "longitude": "0", "url_o": "https://farm4.staticflickr.com/3118/2901312124_46e2d97bd7_o.jpg", "secret": "92b88c5f26", "media": "photo", "latitude": "0", "id": "2901312124", "tags": "coffee nashville tea nashvillest uglymugs"}, {"datetaken": "2005-01-29 22:15:58", "license": "2", "title": "kenko, jennyb", "text": "", "album_id": "101221", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4012867_014a6bb53b_o.jpg", "secret": "014a6bb53b", "media": "photo", "latitude": "0", "id": "4012867", "tags": "metafilter meetup mefi chicago hopleaf konak bar"}, {"datetaken": "2005-01-29 22:16:04", "license": "2", "title": "corpse, Slack-a-gogo", "text": "", "album_id": "101221", "longitude": "0", "url_o": "https://farm1.staticflickr.com/1/4026204_b523d335cc_o.jpg", "secret": "b523d335cc", "media": "photo", "latitude": "0", "id": "4026204", "tags": "metafilter meetup mefi chicago hopleaf bar"}, {"datetaken": "2005-01-29 22:16:31", "license": "2", "title": "corpse, kenko", "text": "", "album_id": "101221", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4026215_800fc2231a_o.jpg", "secret": "800fc2231a", "media": "photo", "latitude": "0", "id": "4026215", "tags": "metafilter meetup mefi chicago hopleaf konak bar"}, {"datetaken": "2005-01-29 22:17:27", "license": "2", "title": "me3dia, Slack-a-gogo", "text": "", "album_id": "101221", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4012868_0ab1f56f65_o.jpg", "secret": "0ab1f56f65", "media": "photo", "latitude": "0", "id": "4012868", "tags": "metafilter meetup mefi chicago hopleaf konak bar"}, {"datetaken": "2005-01-29 22:20:18", "license": "2", "title": "trharlan", "text": "", "album_id": "101221", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4026216_9660ffa6b5_o.jpg", "secret": "9660ffa6b5", "media": "photo", "latitude": "0", "id": "4026216", "tags": "metafilter meetup mefi chicago hopleaf bar"}, {"datetaken": "2005-01-29 22:59:05", "license": "2", "title": "jennyb, trharlan", "text": "", "album_id": "101221", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4012869_04f05b7962_o.jpg", "secret": "04f05b7962", "media": "photo", "latitude": "0", "id": "4012869", "tags": "metafilter meetup mefi chicago hopleaf konak bar"}, {"datetaken": "2005-01-29 22:59:14", "license": "2", "title": "Steve_at_Linnwood", "text": "", "album_id": "101221", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4012876_01e2e1e4c8_o.jpg", "secret": "01e2e1e4c8", "media": "photo", "latitude": "0", "id": "4012876", "tags": "metafilter meetup mefi chicago hopleaf konak bar"}, {"datetaken": "2005-01-29 23:48:54", "license": "2", "title": "S@L, trharlan, kenko", "text": "", "album_id": "101221", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4026206_8ef80b9d06_o.jpg", "secret": "8ef80b9d06", "media": "photo", "latitude": "0", "id": "4026206", "tags": "metafilter meetup mefi chicago konak bar"}, {"datetaken": "2005-01-29 23:49:04", "license": "2", "title": "jennyb, corpse", "text": "", "album_id": "101221", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4013306_d653b65a97_o.jpg", "secret": "d653b65a97", "media": "photo", "latitude": "0", "id": "4013306", "tags": "metafilter meetup mefi chicago konak bar"}, {"datetaken": "2005-01-29 23:50:48", "license": "2", "title": "S@L, trharlan, kenko", "text": "", "album_id": "101221", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4026205_1dca2197a3_o.jpg", "secret": "1dca2197a3", "media": "photo", "latitude": "0", "id": "4026205", "tags": "metafilter meetup mefi chicago konak bar"}, {"datetaken": "2005-01-30 01:04:12", "license": "2", "title": "me3dia, Slack-a-gogo", "text": "", "album_id": "101221", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4012877_96b3c3bf6c_o.jpg", "secret": "96b3c3bf6c", "media": "photo", "latitude": "0", "id": "4012877", "tags": "metafilter meetup mefi chicago konak bar"}, {"datetaken": "2005-01-30 01:04:47", "license": "2", "title": "corpse, jennyb", "text": "", "album_id": "101221", "longitude": "0", "url_o": "https://farm1.staticflickr.com/3/4026203_d101ff213b_o.jpg", "secret": "d101ff213b", "media": "photo", "latitude": "0", "id": "4026203", "tags": "metafilter meetup mefi chicago konak bar"}, {"datetaken": "2005-01-30 01:05:21", "license": "2", "title": "jennyb", "text": "", "album_id": "101221", "longitude": "0", "url_o": "https://farm1.staticflickr.com/4/4012881_9ce976079d_o.jpg", "secret": "9ce976079d", "media": "photo", "latitude": "0", "id": "4012881", "tags": "metafilter meetup mefi chicago konak bar"}, {"datetaken": "2005-08-02 18:04:28", "license": "1", "title": "Mike", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30722272_e25c815afb_o.jpg", "secret": "e25c815afb", "media": "photo", "latitude": "0", "id": "30722272", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:04:32", "license": "1", "title": "Kara and Charlie, redux", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30722288_0b08dc0512_o.jpg", "secret": "0b08dc0512", "media": "photo", "latitude": "0", "id": "30722288", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:04:36", "license": "1", "title": "Kara and Charlie", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30722296_5f946be35c_o.jpg", "secret": "5f946be35c", "media": "photo", "latitude": "0", "id": "30722296", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:04:40", "license": "1", "title": "Andy and Nicholas", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30722307_8c6510ebc6_o.jpg", "secret": "8c6510ebc6", "media": "photo", "latitude": "0", "id": "30722307", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:04:43", "license": "1", "title": "Really Mike?", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30722323_0206dfea5a_o.jpg", "secret": "0206dfea5a", "media": "photo", "latitude": "0", "id": "30722323", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:04:47", "license": "1", "title": "La Belle est Arriv\u00e9", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30722331_37dc0c8b51_o.jpg", "secret": "37dc0c8b51", "media": "photo", "latitude": "0", "id": "30722331", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:04:51", "license": "1", "title": "Matt, and a curious caterer", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30722345_141d0cc5c8_o.jpg", "secret": "141d0cc5c8", "media": "photo", "latitude": "0", "id": "30722345", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:04:54", "license": "1", "title": "He'll never make it", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30722362_1f2d2a7cc6_o.jpg", "secret": "1f2d2a7cc6", "media": "photo", "latitude": "0", "id": "30722362", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:04:58", "license": "1", "title": "This is how Grandma played", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30722386_c7eacea663_o.jpg", "secret": "c7eacea663", "media": "photo", "latitude": "0", "id": "30722386", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:05:04", "license": "1", "title": "A worse lie", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30722409_0e64043359_o.jpg", "secret": "0e64043359", "media": "photo", "latitude": "0", "id": "30722409", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:05:08", "license": "1", "title": "Not a good lie", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30722420_166aa771a1_o.jpg", "secret": "166aa771a1", "media": "photo", "latitude": "0", "id": "30722420", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:05:12", "license": "1", "title": "Should I lay up?", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30722441_fab985420a_o.jpg", "secret": "fab985420a", "media": "photo", "latitude": "0", "id": "30722441", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:05:16", "license": "1", "title": "The Wicket, Nexus of the Universe", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30722456_b1b7c7b5f8_o.jpg", "secret": "b1b7c7b5f8", "media": "photo", "latitude": "0", "id": "30722456", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:05:19", "license": "1", "title": "What do we do with this?", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30722473_9c6ab8cc1b_o.jpg", "secret": "9c6ab8cc1b", "media": "photo", "latitude": "0", "id": "30722473", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:05:23", "license": "1", "title": "Mr. Slo", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30722482_67e6e9ab8d_o.jpg", "secret": "67e6e9ab8d", "media": "photo", "latitude": "0", "id": "30722482", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:05:27", "license": "1", "title": "\"Sending\" was the order of the day", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30722489_5dad896288_o.jpg", "secret": "5dad896288", "media": "photo", "latitude": "0", "id": "30722489", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:05:31", "license": "1", "title": "Is this your ball?", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30722502_387ebc5baa_o.jpg", "secret": "387ebc5baa", "media": "photo", "latitude": "0", "id": "30722502", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:05:35", "license": "1", "title": "No calls on the field, sir.", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30722529_0ec2159e90_o.jpg", "secret": "0ec2159e90", "media": "photo", "latitude": "0", "id": "30722529", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:05:46", "license": "1", "title": "Carrie's Challenge", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30722552_dec7d1be1a_o.jpg", "secret": "dec7d1be1a", "media": "photo", "latitude": "0", "id": "30722552", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:05:50", "license": "1", "title": "You're so cute...", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30722569_c9f1c79fe0_o.jpg", "secret": "c9f1c79fe0", "media": "photo", "latitude": "0", "id": "30722569", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:05:54", "license": "1", "title": "Good thing we're practicing", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30722576_731c2be0d6_o.jpg", "secret": "731c2be0d6", "media": "photo", "latitude": "0", "id": "30722576", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:05:58", "license": "1", "title": "Mr. Salerno and a captive audience", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30722595_7b11926608_o.jpg", "secret": "7b11926608", "media": "photo", "latitude": "0", "id": "30722595", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:06:08", "license": "1", "title": "The Happy Couple", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30722617_94a4d9a576_o.jpg", "secret": "94a4d9a576", "media": "photo", "latitude": "0", "id": "30722617", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:06:12", "license": "1", "title": "Mike and Kara Cut the Cake", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30722625_4353d9ed25_o.jpg", "secret": "4353d9ed25", "media": "photo", "latitude": "0", "id": "30722625", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:06:16", "license": "1", "title": "Andy, Megan and Matt, waiting for cake", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30722635_2c6d7df9c5_o.jpg", "secret": "2c6d7df9c5", "media": "photo", "latitude": "0", "id": "30722635", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:06:19", "license": "1", "title": "Is this breakable?", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30722652_55a89aca62_o.jpg", "secret": "55a89aca62", "media": "photo", "latitude": "0", "id": "30722652", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:06:23", "license": "1", "title": "Sugar high!", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/23/30722668_fb88d9e21e_o.jpg", "secret": "fb88d9e21e", "media": "photo", "latitude": "0", "id": "30722668", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:06:27", "license": "1", "title": "More sugar!", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/22/30722683_ec2bffbf2d_o.jpg", "secret": "ec2bffbf2d", "media": "photo", "latitude": "0", "id": "30722683", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:06:30", "license": "1", "title": "Megan", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30722693_abfd179b29_o.jpg", "secret": "abfd179b29", "media": "photo", "latitude": "0", "id": "30722693", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-08-02 18:06:34", "license": "1", "title": "Charlie", "text": "", "album_id": "686901", "longitude": "0", "url_o": "https://farm1.staticflickr.com/21/30722710_55bd4284d3_o.jpg", "secret": "55bd4284d3", "media": "photo", "latitude": "0", "id": "30722710", "tags": "mike kara engagement newjersey 2005 friends"}, {"datetaken": "2005-10-29 22:18:16", "license": "5", "title": "100_2973", "text": "", "album_id": "1257558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/58111342_8e518b01e3_o.jpg", "secret": "8e518b01e3", "media": "photo", "latitude": "0", "id": "58111342", "tags": "engagement party"}, {"datetaken": "2005-10-29 22:19:31", "license": "5", "title": "100_2974", "text": "", "album_id": "1257558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58111343_085ed8661f_o.jpg", "secret": "085ed8661f", "media": "photo", "latitude": "0", "id": "58111343", "tags": "engagement party"}, {"datetaken": "2005-10-29 22:22:33", "license": "5", "title": "100_2977", "text": "", "album_id": "1257558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58111344_57e7743101_o.jpg", "secret": "57e7743101", "media": "photo", "latitude": "0", "id": "58111344", "tags": "engagement party"}, {"datetaken": "2005-10-29 23:14:47", "license": "5", "title": "100_2978", "text": "", "album_id": "1257558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/58111345_6b3e353e83_o.jpg", "secret": "6b3e353e83", "media": "photo", "latitude": "0", "id": "58111345", "tags": "engagement party"}, {"datetaken": "2005-10-29 23:15:27", "license": "5", "title": "100_2979", "text": "", "album_id": "1257558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/58111346_f7380fde4d_o.jpg", "secret": "f7380fde4d", "media": "photo", "latitude": "0", "id": "58111346", "tags": "engagement party"}, {"datetaken": "2005-10-29 23:20:25", "license": "5", "title": "100_2980", "text": "", "album_id": "1257558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/31/58111347_4f988f4f70_o.jpg", "secret": "4f988f4f70", "media": "photo", "latitude": "0", "id": "58111347", "tags": "engagement party"}, {"datetaken": "2005-10-29 23:22:41", "license": "5", "title": "100_2986", "text": "", "album_id": "1257558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/58112047_1204d25a7a_o.jpg", "secret": "1204d25a7a", "media": "photo", "latitude": "0", "id": "58112047", "tags": "engagement party"}, {"datetaken": "2005-10-29 23:23:30", "license": "5", "title": "100_2988", "text": "", "album_id": "1257558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58112048_1f28e0502b_o.jpg", "secret": "1f28e0502b", "media": "photo", "latitude": "0", "id": "58112048", "tags": "engagement party"}, {"datetaken": "2005-10-29 23:27:02", "license": "5", "title": "100_2990", "text": "", "album_id": "1257558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/24/58112050_87f2512caf_o.jpg", "secret": "87f2512caf", "media": "photo", "latitude": "0", "id": "58112050", "tags": "engagement party blurry"}, {"datetaken": "2005-10-29 23:30:18", "license": "5", "title": "100_2998", "text": "", "album_id": "1257558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/30/58112051_dfaece3906_o.jpg", "secret": "dfaece3906", "media": "photo", "latitude": "0", "id": "58112051", "tags": "engagement party"}, {"datetaken": "2005-10-29 23:33:37", "license": "5", "title": "100_3004", "text": "", "album_id": "1257558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/25/58112055_3e74a7366d_o.jpg", "secret": "3e74a7366d", "media": "photo", "latitude": "0", "id": "58112055", "tags": "engagement party blurry"}, {"datetaken": "2005-10-30 00:07:02", "license": "5", "title": "100_3016", "text": "", "album_id": "1257558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/27/58112059_531adb77a1_o.jpg", "secret": "531adb77a1", "media": "photo", "latitude": "0", "id": "58112059", "tags": "engagement party blurry"}, {"datetaken": "2005-10-30 00:12:51", "license": "5", "title": "100_3018", "text": "", "album_id": "1257558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/58112726_aa536184e4_o.jpg", "secret": "aa536184e4", "media": "photo", "latitude": "0", "id": "58112726", "tags": "engagement party"}, {"datetaken": "2005-10-30 00:20:22", "license": "5", "title": "100_3020", "text": "", "album_id": "1257558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/33/58112727_cfff537e47_o.jpg", "secret": "cfff537e47", "media": "photo", "latitude": "0", "id": "58112727", "tags": "engagement party"}, {"datetaken": "2005-10-30 00:57:10", "license": "5", "title": "100_3021", "text": "", "album_id": "1257558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/29/58112729_e51770f409_o.jpg", "secret": "e51770f409", "media": "photo", "latitude": "0", "id": "58112729", "tags": "engagement party"}, {"datetaken": "2005-10-30 01:13:12", "license": "5", "title": "100_3031", "text": "", "album_id": "1257558", "longitude": "0", "url_o": "https://farm1.staticflickr.com/26/58112731_8e57fcf8e4_o.jpg", "secret": "8e57fcf8e4", "media": "photo", "latitude": "0", "id": "58112731", "tags": "engagement party"}, {"datetaken": "2006-04-29 07:04:18", "license": "1", "title": "Coffee Good 1", "text": "", "album_id": "72157594196991409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/138573899_d4adb3f1b1_o.jpg", "secret": "d4adb3f1b1", "media": "photo", "latitude": "0", "id": "138573899", "tags": "fair scarborough kilts renaissance"}, {"datetaken": "2006-04-29 07:50:21", "license": "1", "title": "Inventory 2", "text": "", "album_id": "72157594196991409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/138573903_59344fe550_o.jpg", "secret": "59344fe550", "media": "photo", "latitude": "0", "id": "138573903", "tags": "fair scarborough kilts renaissance"}, {"datetaken": "2006-04-29 09:28:11", "license": "1", "title": "We Three 2", "text": "", "album_id": "72157594196991409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/138575277_817e42a7a1_o.jpg", "secret": "817e42a7a1", "media": "photo", "latitude": "0", "id": "138575277", "tags": "fair scarborough kilts renaissance"}, {"datetaken": "2006-04-29 09:57:18", "license": "1", "title": "Dude, you're gettin' a kilt", "text": "", "album_id": "72157594196991409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/138573901_9d9f2fa74f_o.jpg", "secret": "9d9f2fa74f", "media": "photo", "latitude": "0", "id": "138573901", "tags": "fair scarborough kilts renaissance"}, {"datetaken": "2006-04-29 13:34:39", "license": "1", "title": "Utilikiltarians 2", "text": "", "album_id": "72157594196991409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/51/138573909_48344c3d02_o.jpg", "secret": "48344c3d02", "media": "photo", "latitude": "0", "id": "138573909", "tags": "fair scarborough kilts renaissance"}, {"datetaken": "2006-04-29 15:25:37", "license": "1", "title": "Pants DOWN!", "text": "", "album_id": "72157594196991409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/138573907_34013040e0_o.jpg", "secret": "34013040e0", "media": "photo", "latitude": "0", "id": "138573907", "tags": "fair scarborough kilts renaissance"}, {"datetaken": "2006-04-29 17:49:25", "license": "1", "title": "Yeah, baby", "text": "", "album_id": "72157594196991409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/138575278_bfd62609b4_o.jpg", "secret": "bfd62609b4", "media": "photo", "latitude": "0", "id": "138575278", "tags": "fair scarborough kilts renaissance"}, {"datetaken": "2006-04-29 18:07:35", "license": "1", "title": "Kilties 4", "text": "", "album_id": "72157594196991409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/55/138573906_28c7a67703_o.jpg", "secret": "28c7a67703", "media": "photo", "latitude": "0", "id": "138573906", "tags": "fair scarborough kilts renaissance"}, {"datetaken": "2006-04-30 11:10:54", "license": "1", "title": "Kilted Father", "text": "", "album_id": "72157594196991409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/140804068_22bc4fad6b_o.jpg", "secret": "22bc4fad6b", "media": "photo", "latitude": "0", "id": "140804068", "tags": "fair scarborough kilts renaissance"}, {"datetaken": "2006-04-30 13:10:14", "license": "1", "title": "Matt checks a tag", "text": "", "album_id": "72157594196991409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/140804069_c92be4da17_o.jpg", "secret": "c92be4da17", "media": "photo", "latitude": "0", "id": "140804069", "tags": "fair scarborough kilts renaissance"}, {"datetaken": "2006-04-30 13:10:24", "license": "1", "title": "Big men in kilts", "text": "", "album_id": "72157594196991409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/56/140803318_f1b1463ac2_o.jpg", "secret": "f1b1463ac2", "media": "photo", "latitude": "0", "id": "140803318", "tags": "fair scarborough kilts renaissance"}, {"datetaken": "2006-04-30 13:10:37", "license": "1", "title": "Big men in kilts 2", "text": "", "album_id": "72157594196991409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/140803317_305508aca5_o.jpg", "secret": "305508aca5", "media": "photo", "latitude": "0", "id": "140803317", "tags": "fair scarborough kilts renaissance"}, {"datetaken": "2006-04-30 13:21:11", "license": "1", "title": "Brisk Business", "text": "", "album_id": "72157594196991409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/44/140803319_e6ae23cdaf_o.jpg", "secret": "e6ae23cdaf", "media": "photo", "latitude": "0", "id": "140803319", "tags": "fair scarborough kilts renaissance"}, {"datetaken": "2006-04-30 14:12:47", "license": "1", "title": "Engagement", "text": "", "album_id": "72157594196991409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/140803321_e92bc2a37c_o.jpg", "secret": "e92bc2a37c", "media": "photo", "latitude": "0", "id": "140803321", "tags": "fair scarborough kilts renaissance"}, {"datetaken": "2006-04-30 14:45:54", "license": "1", "title": "Interested Scots 2", "text": "", "album_id": "72157594196991409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/48/140803322_3cb92fb11c_o.jpg", "secret": "3cb92fb11c", "media": "photo", "latitude": "0", "id": "140803322", "tags": "fair scarborough kilts renaissance"}, {"datetaken": "2006-04-30 14:50:50", "license": "1", "title": "Denim", "text": "", "album_id": "72157594196991409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/46/140803320_79631020c9_o.jpg", "secret": "79631020c9", "media": "photo", "latitude": "0", "id": "140803320", "tags": "fair scarborough kilts renaissance"}, {"datetaken": "2006-04-30 17:29:12", "license": "1", "title": "Tribal", "text": "", "album_id": "72157594196991409", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/140804071_e327cb3bb5_o.jpg", "secret": "e327cb3bb5", "media": "photo", "latitude": "0", "id": "140804071", "tags": "fair scarborough kilts renaissance"}, {"datetaken": "2006-05-31 05:48:15", "license": "4", "title": "Bonnie.Dave hands", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/157781531_eb7a0b66db_o.jpg", "secret": "eb7a0b66db", "media": "photo", "latitude": "0", "id": "157781531", "tags": "dave engagement bonnie"}, {"datetaken": "2006-05-31 05:48:59", "license": "4", "title": "Bonnie.Dave closeup (1)_ps", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/157781485_fc5acefa30_o.jpg", "secret": "fc5acefa30", "media": "photo", "latitude": "0", "id": "157781485", "tags": "dave engagement bonnie"}, {"datetaken": "2006-05-31 05:56:32", "license": "4", "title": "BD2_ps2", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/69/159554739_1687feb110_o.jpg", "secret": "1687feb110", "media": "photo", "latitude": "0", "id": "159554739", "tags": "dave engagement bonnie"}, {"datetaken": "2006-05-31 05:56:32", "license": "4", "title": "BD2_ps1", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/159554687_dbc1a38906_o.jpg", "secret": "dbc1a38906", "media": "photo", "latitude": "0", "id": "159554687", "tags": "dave engagement bonnie"}, {"datetaken": "2006-05-31 05:56:32", "license": "4", "title": "BD2_ps3", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/66/159554632_0d7952a302_o.jpg", "secret": "0d7952a302", "media": "photo", "latitude": "0", "id": "159554632", "tags": "dave engagement bonnie"}, {"datetaken": "2006-05-31 05:56:32", "license": "4", "title": "Bonnie.Dave prom (10)", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/72/159560221_9f8153d969_o.jpg", "secret": "9f8153d969", "media": "photo", "latitude": "0", "id": "159560221", "tags": "dave engagement bonnie bd2"}, {"datetaken": "2006-05-31 05:56:32", "license": "4", "title": "Bonnie.Dave prom (10)_ps", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/77/159568589_5a1e4899ae_o.jpg", "secret": "5a1e4899ae", "media": "photo", "latitude": "0", "id": "159568589", "tags": "dave engagement bonnie bd2"}, {"datetaken": "2006-05-31 06:43:20", "license": "4", "title": "Bonnie.Dave_ps", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/158483231_ec1e634bd4_o.jpg", "secret": "ec1e634bd4", "media": "photo", "latitude": "0", "id": "158483231", "tags": "dave engagement bonnie"}, {"datetaken": "2006-05-31 06:47:16", "license": "4", "title": "Bonnie.Dave reflection (5)", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/157781739_3e93a444e0_o.jpg", "secret": "3e93a444e0", "media": "photo", "latitude": "0", "id": "157781739", "tags": "dave engagement bonnie"}, {"datetaken": "2006-05-31 06:49:14", "license": "4", "title": "Bonnie.Dave leaning", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/45/157781595_8324d62aa9_o.jpg", "secret": "8324d62aa9", "media": "photo", "latitude": "0", "id": "157781595", "tags": "dave engagement bonnie"}, {"datetaken": "2006-05-31 06:52:36", "license": "4", "title": "IMG_0817", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/73/157781206_cc517d8733_o.jpg", "secret": "cc517d8733", "media": "photo", "latitude": "0", "id": "157781206", "tags": "dave engagement bonnie"}, {"datetaken": "2006-05-31 06:57:15", "license": "4", "title": "Bonnie.Dave peeking (1)_ps", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/47/157781677_2b2c121665_o.jpg", "secret": "2b2c121665", "media": "photo", "latitude": "0", "id": "157781677", "tags": "dave engagement bonnie"}, {"datetaken": "2006-05-31 07:00:00", "license": "4", "title": "Bonnie.Dave walkaway (6)", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/74/157781816_5e5c02b0b1_o.jpg", "secret": "5e5c02b0b1", "media": "photo", "latitude": "0", "id": "157781816", "tags": "dave engagement bonnie"}, {"datetaken": "2006-05-31 07:02:09", "license": "4", "title": "Bonnie.Dave piggyback (2)", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/67/157781958_91563676da_o.jpg", "secret": "91563676da", "media": "photo", "latitude": "0", "id": "157781958", "tags": "dave engagement bonnie"}, {"datetaken": "2006-05-31 07:02:09", "license": "4", "title": "Bonnie.Dave piggyback_ps", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/62/158483420_f3a4b9486a_o.jpg", "secret": "f3a4b9486a", "media": "photo", "latitude": "0", "id": "158483420", "tags": "dave engagement bonnie"}, {"datetaken": "2006-05-31 07:02:09", "license": "4", "title": "Bonnie.Dave piggyback_ps1", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/78/158483319_fff0ab3cd3_o.jpg", "secret": "fff0ab3cd3", "media": "photo", "latitude": "0", "id": "158483319", "tags": "dave engagement bonnie"}, {"datetaken": "2006-05-31 07:02:16", "license": "4", "title": "Bonnie.Dave piggyback (4)", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/60/157781884_c4124a383b_o.jpg", "secret": "c4124a383b", "media": "photo", "latitude": "0", "id": "157781884", "tags": "dave engagement bonnie"}, {"datetaken": "2006-05-31 07:05:01", "license": "4", "title": "Bonnie.Dave breakout (1)", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/52/157781274_7fa2e99c6b_o.jpg", "secret": "7fa2e99c6b", "media": "photo", "latitude": "0", "id": "157781274", "tags": "dave engagement bonnie"}, {"datetaken": "2006-05-31 07:05:06", "license": "4", "title": "Bonnie.Dave breakout (2)", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/50/157781349_d513d65edb_o.jpg", "secret": "d513d65edb", "media": "photo", "latitude": "0", "id": "157781349", "tags": "dave engagement bonnie"}, {"datetaken": "2006-05-31 07:05:56", "license": "4", "title": "Bonnie.Dave breakout", "text": "", "album_id": "72157594151770983", "longitude": "0", "url_o": "https://farm1.staticflickr.com/49/157781415_7cc5c05dde_o.jpg", "secret": "7cc5c05dde", "media": "photo", "latitude": "0", "id": "157781415", "tags": "dave engagement bonnie"}, {"datetaken": "2010-02-25 06:30:25", "license": "3", "title": "2/25/10 Meet Your Farmers", "text": "", "album_id": "72157623555139014", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4406399565_6d77c6da6d_o.jpg", "secret": "98634db653", "media": "photo", "latitude": "0", "id": "4406399565", "tags": "osu wexner csa wexnercenter waywardseed alexkotran"}, {"datetaken": "2010-02-25 06:31:15", "license": "3", "title": "2/25/10 Meet Your Farmers", "text": "", "album_id": "72157623555139014", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4032/4406407625_9ed96f2469_o.jpg", "secret": "114af27185", "media": "photo", "latitude": "0", "id": "4406407625", "tags": "osu wexner csa wexnercenter waywardseed alexkotran"}, {"datetaken": "2010-02-25 06:31:54", "license": "3", "title": "2/25/10 Meet Your Farmers", "text": "", "album_id": "72157623555139014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2760/4406414029_723177ba46_o.jpg", "secret": "e9d8bf9827", "media": "photo", "latitude": "0", "id": "4406414029", "tags": "osu wexner csa wexnercenter waywardseed alexkotran"}, {"datetaken": "2010-02-25 06:32:01", "license": "3", "title": "2/25/10 Meet Your Farmers", "text": "", "album_id": "72157623555139014", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4406422223_b0c66ae410_o.jpg", "secret": "d9a5f50f15", "media": "photo", "latitude": "0", "id": "4406422223", "tags": "osu wexner csa wexnercenter waywardseed alexkotran"}, {"datetaken": "2010-02-25 06:34:15", "license": "3", "title": "2/25/10 Meet Your Farmers", "text": "", "album_id": "72157623555139014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4407156630_0b8f0a89a5_o.jpg", "secret": "f847ea7508", "media": "photo", "latitude": "0", "id": "4407156630", "tags": "osu wexner csa wexnercenter waywardseed alexkotran"}, {"datetaken": "2010-02-25 06:36:21", "license": "3", "title": "2/25/10 Meet Your Farmers", "text": "", "album_id": "72157623555139014", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4407231046_fa4a99acc9_o.jpg", "secret": "05b18a2b9b", "media": "photo", "latitude": "0", "id": "4407231046", "tags": "osu wexner csa wexnercenter waywardseed alexkotran"}, {"datetaken": "2010-02-25 06:36:41", "license": "3", "title": "2/25/10 Meet Your Farmers", "text": "", "album_id": "72157623555139014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2694/4407222948_8e2899dfb2_o.jpg", "secret": "6cbd84153c", "media": "photo", "latitude": "0", "id": "4407222948", "tags": "osu wexner csa wexnercenter waywardseed alexkotran"}, {"datetaken": "2010-02-25 06:40:50", "license": "3", "title": "2/25/10 Meet Your Farmers", "text": "", "album_id": "72157623555139014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4407213606_d2e3554951_o.jpg", "secret": "b2a7913a65", "media": "photo", "latitude": "0", "id": "4407213606", "tags": "osu wexner csa wexnercenter waywardseed alexkotran"}, {"datetaken": "2010-02-25 06:41:09", "license": "3", "title": "2/25/10 Meet Your Farmers", "text": "", "album_id": "72157623555139014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2748/4406437643_220108197c_o.jpg", "secret": "299d0a6e30", "media": "photo", "latitude": "0", "id": "4406437643", "tags": "osu wexner csa wexnercenter waywardseed alexkotran"}, {"datetaken": "2010-02-25 06:44:27", "license": "3", "title": "2/25/10 Meet Your Farmers", "text": "", "album_id": "72157623555139014", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2729/4406430073_4d51d759cb_o.jpg", "secret": "a6e12a4bd6", "media": "photo", "latitude": "0", "id": "4406430073", "tags": "osu wexner csa wexnercenter waywardseed alexkotran"}, {"datetaken": "2010-02-25 06:45:47", "license": "3", "title": "2/25/10 Meet Your Farmers", "text": "", "album_id": "72157623555139014", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4407191596_e7734e4324_o.jpg", "secret": "d0a9bf8966", "media": "photo", "latitude": "0", "id": "4407191596", "tags": "osu wexner csa wexnercenter waywardseed alexkotran"}, {"datetaken": "2010-02-06 17:41:42", "license": "2", "title": "IMG_3001", "text": "", "album_id": "72157623367722036", "longitude": "-0.155353", "url_o": "https://farm3.staticflickr.com/2736/4336367682_5de544848c_o.jpg", "secret": "e623a49c3f", "media": "photo", "latitude": "51.522282", "id": "4336367682", "tags": "kinetica kineticaartfair2010"}, {"datetaken": "2010-02-06 17:41:57", "license": "2", "title": "IMG_3003", "text": "", "album_id": "72157623367722036", "longitude": "-0.155353", "url_o": "https://farm3.staticflickr.com/2741/4336367956_89f707a762_o.jpg", "secret": "37f1a2b850", "media": "photo", "latitude": "51.522282", "id": "4336367956", "tags": "kinetica kineticaartfair2010"}, {"datetaken": "2010-02-06 17:50:06", "license": "2", "title": "IMG_3009", "text": "", "album_id": "72157623367722036", "longitude": "-0.155353", "url_o": "https://farm5.staticflickr.com/4058/4335622593_8cf40fefa1_o.jpg", "secret": "0ef4572a70", "media": "photo", "latitude": "51.522282", "id": "4335622593", "tags": "kinetica kineticaartfair2010"}, {"datetaken": "2010-02-06 17:50:32", "license": "2", "title": "IMG_3012", "text": "", "album_id": "72157623367722036", "longitude": "-0.155353", "url_o": "https://farm3.staticflickr.com/2687/4335622789_859facedbe_o.jpg", "secret": "449447f741", "media": "photo", "latitude": "51.522282", "id": "4335622789", "tags": "kinetica kineticaartfair2010"}, {"datetaken": "2010-02-06 17:50:40", "license": "2", "title": "IMG_3013", "text": "", "album_id": "72157623367722036", "longitude": "-0.155353", "url_o": "https://farm3.staticflickr.com/2685/4335623053_dd4635f52a_o.jpg", "secret": "34a80f20c9", "media": "photo", "latitude": "51.522282", "id": "4335623053", "tags": "kinetica kineticaartfair2010"}, {"datetaken": "2010-02-06 17:51:59", "license": "2", "title": "IMG_3015", "text": "", "album_id": "72157623367722036", "longitude": "-0.155353", "url_o": "https://farm5.staticflickr.com/4058/4335623371_9620119953_o.jpg", "secret": "8ca7362ddd", "media": "photo", "latitude": "51.522282", "id": "4335623371", "tags": "kinetica kineticaartfair2010"}, {"datetaken": "2010-02-06 17:54:22", "license": "2", "title": "Aftertrace", "text": "", "album_id": "72157623367722036", "longitude": "-0.155353", "url_o": "https://farm5.staticflickr.com/4036/4336369254_1a1fbe10bb_o.jpg", "secret": "303f828cd5", "media": "photo", "latitude": "51.522282", "id": "4336369254", "tags": "kinetica kineticaartfair2010 georgiachatzivasileiadi"}, {"datetaken": "2010-02-06 17:59:06", "license": "2", "title": "IMG_3023", "text": "", "album_id": "72157623367722036", "longitude": "-0.155353", "url_o": "https://farm5.staticflickr.com/4030/4335624151_b693b328d7_o.jpg", "secret": "a0669c871a", "media": "photo", "latitude": "51.522282", "id": "4335624151", "tags": "kinetica kineticaartfair2010"}, {"datetaken": "2010-02-06 18:00:34", "license": "2", "title": "IMG_3025", "text": "", "album_id": "72157623367722036", "longitude": "-0.155353", "url_o": "https://farm3.staticflickr.com/2684/4336370200_530b18a090_o.jpg", "secret": "8709e41819", "media": "photo", "latitude": "51.522282", "id": "4336370200", "tags": "kinetica kineticaartfair2010"}, {"datetaken": "2010-02-06 18:00:56", "license": "2", "title": "Homos Luminos", "text": "", "album_id": "72157623367722036", "longitude": "-0.155353", "url_o": "https://farm5.staticflickr.com/4048/4335625115_0a57bafaf9_o.jpg", "secret": "18cb5c47c9", "media": "photo", "latitude": "51.522282", "id": "4335625115", "tags": "kinetica kineticaartfair2010 rosalinedethelin"}, {"datetaken": "2010-02-06 18:24:21", "license": "2", "title": "IMG_3047", "text": "", "album_id": "72157623367722036", "longitude": "-0.155353", "url_o": "https://farm3.staticflickr.com/2741/4336371068_f82566ec36_o.jpg", "secret": "78c1f733f0", "media": "photo", "latitude": "51.522282", "id": "4336371068", "tags": "kinetica kineticaartfair2010"}, {"datetaken": "2010-02-06 18:24:34", "license": "2", "title": "The Tree", "text": "", "album_id": "72157623367722036", "longitude": "-0.155353", "url_o": "https://farm3.staticflickr.com/2778/4335626063_97bb09ea6a_o.jpg", "secret": "2836079d8f", "media": "photo", "latitude": "51.522282", "id": "4335626063", "tags": "kinetica kineticaartfair2010 margaretmichel"}, {"datetaken": "2010-02-06 18:38:22", "license": "2", "title": "IMG_3064", "text": "", "album_id": "72157623367722036", "longitude": "-0.155353", "url_o": "https://farm5.staticflickr.com/4037/4336372118_b775d242cd_o.jpg", "secret": "d6d3e6f083", "media": "photo", "latitude": "51.522282", "id": "4336372118", "tags": "kinetica kineticaartfair2010"}, {"datetaken": "2010-02-06 13:15:57", "license": "5", "title": "Nagano Prefecture, 2010/02/06", "text": "", "album_id": "72157623377229572", "longitude": "138.160952", "url_o": "https://farm5.staticflickr.com/4043/4333385077_fd18d88a93_o.jpg", "secret": "f43228c98b", "media": "photo", "latitude": "36.097241", "id": "4333385077", "tags": "ski japan windy \u65e5\u672c mana seiko nagano 3c osamu iphone tateshina yamabiko naganoprefecture \u9577\u91ce \u30b9\u30ad\u30fc\u5834 \u30b9\u30ad\u30fc weatherbug \u84fc\u79d1 kirigamine takuto \u3084\u307e\u3073\u3053 \u9727\u30f6\u5cf0 \u304a\u3084\u3058\u306e\u4f1a airme"}, {"datetaken": "2010-02-06 13:19:37", "license": "5", "title": "Nagano Prefecture, 2010/02/06", "text": "", "album_id": "72157623377229572", "longitude": "138.160670", "url_o": "https://farm3.staticflickr.com/2766/4333390263_394d6fa3f9_o.jpg", "secret": "53ccd13364", "media": "photo", "latitude": "36.097154", "id": "4333390263", "tags": "ski japan windy \u65e5\u672c mana seiko nagano 3c osamu iphone tateshina yamabiko naganoprefecture \u9577\u91ce \u30b9\u30ad\u30fc\u5834 \u30b9\u30ad\u30fc weatherbug \u84fc\u79d1 kirigamine takuto \u3084\u307e\u3073\u3053 \u9727\u30f6\u5cf0 \u304a\u3084\u3058\u306e\u4f1a airme"}, {"datetaken": "2010-02-06 17:28:47", "license": "5", "title": "Nagano Prefecture, 2010/02/06", "text": "", "album_id": "72157623377229572", "longitude": "138.161890", "url_o": "https://farm3.staticflickr.com/2790/4334441576_1219450bec_o.jpg", "secret": "5729108606", "media": "photo", "latitude": "36.098093", "id": "4334441576", "tags": "ski japan \u65e5\u672c mana seiko nagano osamu iphone tateshina yamabiko naganoprefecture \u9577\u91ce \u30b9\u30ad\u30fc\u5834 \u30b9\u30ad\u30fc weatherbug \u84fc\u79d1 kirigamine takuto \u3084\u307e\u3073\u3053 \u9727\u30f6\u5cf0 \u304a\u3084\u3058\u306e\u4f1a airme"}, {"datetaken": "2010-02-07 06:59:18", "license": "5", "title": "Nagano Prefecture, 2010/02/07", "text": "", "album_id": "72157623377229572", "longitude": "138.161755", "url_o": "https://farm3.staticflickr.com/2796/4335924136_f1ac17bb9d_o.jpg", "secret": "f07ebbe6e8", "media": "photo", "latitude": "36.098263", "id": "4335924136", "tags": "ski japan fair \u65e5\u672c mana seiko nagano osamu iphone tateshina yamabiko naganoprefecture 1c \u9577\u91ce \u30b9\u30ad\u30fc\u5834 \u30b9\u30ad\u30fc weatherbug \u84fc\u79d1 kirigamine takuto \u3084\u307e\u3073\u3053 \u9727\u30f6\u5cf0 \u304a\u3084\u3058\u306e\u4f1a airme"}, {"datetaken": "2010-02-07 09:21:40", "license": "5", "title": "Nagano Prefecture, 2010/02/07", "text": "", "album_id": "72157623377229572", "longitude": "138.161597", "url_o": "https://farm5.staticflickr.com/4060/4335514877_b4c61051bc_o.jpg", "secret": "5a2c416ee4", "media": "photo", "latitude": "36.098054", "id": "4335514877", "tags": "ski rain japan \u65e5\u672c mana seiko nagano osamu iphone tateshina yamabiko naganoprefecture \u9577\u91ce \u30b9\u30ad\u30fc\u5834 4c \u30b9\u30ad\u30fc weatherbug \u84fc\u79d1 kirigamine takuto \u3084\u307e\u3073\u3053 \u9727\u30f6\u5cf0 \u304a\u3084\u3058\u306e\u4f1a airme"}, {"datetaken": "2010-02-07 13:08:33", "license": "5", "title": "Okitamachi 1 Chome, 2010/02/07", "text": "", "album_id": "72157623377229572", "longitude": "138.135951", "url_o": "https://farm5.staticflickr.com/4030/4336734316_42d53f0c4e_o.jpg", "secret": "fe54622fe7", "media": "photo", "latitude": "36.014663", "id": "4336734316", "tags": "ski japan fair \u65e5\u672c mana seiko nagano osamu iphone tateshina yamabiko naganoprefecture \u9577\u91ce \u30b9\u30ad\u30fc\u5834 8c \u30b9\u30ad\u30fc weatherbug \u84fc\u79d1 kirigamine takuto \u3084\u307e\u3073\u3053 \u9727\u30f6\u5cf0 \u304a\u3084\u3058\u306e\u4f1a airme suwashi okitamachi1chome"}, {"datetaken": "2010-02-07 13:09:31", "license": "5", "title": "Okitamachi 1 Chome, 2010/02/07", "text": "", "album_id": "72157623377229572", "longitude": "138.135951", "url_o": "https://farm3.staticflickr.com/2710/4335990071_d136005b86_o.jpg", "secret": "a968cf3389", "media": "photo", "latitude": "36.014663", "id": "4335990071", "tags": "ski japan fair \u65e5\u672c mana seiko nagano osamu iphone tateshina yamabiko naganoprefecture \u9577\u91ce \u30b9\u30ad\u30fc\u5834 8c \u30b9\u30ad\u30fc weatherbug \u84fc\u79d1 kirigamine takuto \u3084\u307e\u3073\u3053 \u9727\u30f6\u5cf0 \u304a\u3084\u3058\u306e\u4f1a airme suwashi okitamachi1chome"}, {"datetaken": "2010-02-07 13:10:10", "license": "5", "title": "Okitamachi 1 Chome, 2010/02/07", "text": "", "album_id": "72157623377229572", "longitude": "138.135951", "url_o": "https://farm5.staticflickr.com/4022/4336737422_f0e08ea011_o.jpg", "secret": "64b082b890", "media": "photo", "latitude": "36.014663", "id": "4336737422", "tags": "ski japan fair \u65e5\u672c mana seiko nagano osamu iphone tateshina yamabiko naganoprefecture \u9577\u91ce \u30b9\u30ad\u30fc\u5834 8c \u30b9\u30ad\u30fc weatherbug \u84fc\u79d1 kirigamine takuto \u3084\u307e\u3073\u3053 \u9727\u30f6\u5cf0 \u304a\u3084\u3058\u306e\u4f1a airme suwashi okitamachi1chome"}, {"datetaken": "2010-02-07 13:10:44", "license": "5", "title": "Okitamachi 1 Chome, 2010/02/07", "text": "", "album_id": "72157623377229572", "longitude": "138.135951", "url_o": "https://farm5.staticflickr.com/4062/4336738554_fffca0d68e_o.jpg", "secret": "b4e74d5073", "media": "photo", "latitude": "36.014663", "id": "4336738554", "tags": "ski japan fair \u65e5\u672c mana seiko nagano osamu iphone tateshina yamabiko naganoprefecture \u9577\u91ce \u30b9\u30ad\u30fc\u5834 8c \u30b9\u30ad\u30fc weatherbug \u84fc\u79d1 kirigamine takuto \u3084\u307e\u3073\u3053 \u9727\u30f6\u5cf0 \u304a\u3084\u3058\u306e\u4f1a airme suwashi okitamachi1chome"}, {"datetaken": "2010-02-07 13:14:13", "license": "5", "title": "Okitamachi 1 Chome, 2010/02/07", "text": "", "album_id": "72157623377229572", "longitude": "138.127147", "url_o": "https://farm3.staticflickr.com/2535/4335999759_4a753e12d4_o.jpg", "secret": "3e9eacc4a9", "media": "photo", "latitude": "36.017339", "id": "4335999759", "tags": "ski japan fair \u65e5\u672c mana seiko nagano osamu iphone tateshina yamabiko naganoprefecture \u9577\u91ce \u30b9\u30ad\u30fc\u5834 8c \u30b9\u30ad\u30fc weatherbug \u84fc\u79d1 kirigamine takuto \u3084\u307e\u3073\u3053 \u9727\u30f6\u5cf0 \u304a\u3084\u3058\u306e\u4f1a airme suwashi okitamachi1chome"}, {"datetaken": "2010-02-07 13:16:19", "license": "5", "title": "Okitamachi 1 Chome, 2010/02/07", "text": "", "album_id": "72157623377229572", "longitude": "138.127147", "url_o": "https://farm5.staticflickr.com/4003/4336004069_6ebd10da25_o.jpg", "secret": "8d815c5ce5", "media": "photo", "latitude": "36.017339", "id": "4336004069", "tags": "ski japan fair \u65e5\u672c mana seiko nagano osamu iphone tateshina yamabiko naganoprefecture \u9577\u91ce \u30b9\u30ad\u30fc\u5834 8c \u30b9\u30ad\u30fc weatherbug \u84fc\u79d1 kirigamine takuto \u3084\u307e\u3073\u3053 \u9727\u30f6\u5cf0 \u304a\u3084\u3058\u306e\u4f1a airme suwashi okitamachi1chome"}, {"datetaken": "2010-02-07 13:17:12", "license": "5", "title": "Okitamachi 1 Chome, 2010/02/07", "text": "", "album_id": "72157623377229572", "longitude": "138.135709", "url_o": "https://farm5.staticflickr.com/4070/4336005943_2116d475d7_o.jpg", "secret": "10c55810ee", "media": "photo", "latitude": "36.014840", "id": "4336005943", "tags": "ski japan sunny \u65e5\u672c mana seiko nagano osamu iphone tateshina yamabiko naganoprefecture 2c \u9577\u91ce \u30b9\u30ad\u30fc\u5834 \u30b9\u30ad\u30fc weatherbug \u84fc\u79d1 kirigamine takuto \u3084\u307e\u3073\u3053 \u9727\u30f6\u5cf0 \u304a\u3084\u3058\u306e\u4f1a airme suwashi okitamachi1chome"}, {"datetaken": "2010-02-07 13:47:19", "license": "5", "title": "Okitamachi 1 Chome, 2010/02/07", "text": "", "album_id": "72157623377229572", "longitude": "138.134825", "url_o": "https://farm3.staticflickr.com/2735/4336813014_89c849baca_o.jpg", "secret": "265ab7b9f2", "media": "photo", "latitude": "36.010578", "id": "4336813014", "tags": "ski japan fair \u65e5\u672c mana seiko nagano osamu iphone tateshina yamabiko naganoprefecture 2c \u9577\u91ce \u30b9\u30ad\u30fc\u5834 \u30b9\u30ad\u30fc weatherbug \u84fc\u79d1 kirigamine takuto \u3084\u307e\u3073\u3053 \u9727\u30f6\u5cf0 \u304a\u3084\u3058\u306e\u4f1a airme suwashi okitamachi1chome"}, {"datetaken": "2010-03-05 15:26:56", "license": "1", "title": "P3050739", "text": "", "album_id": "72157623565659140", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4411298134_b5e068fe9b_o.jpg", "secret": "e6fa4a0636", "media": "photo", "latitude": "0", "id": "4411298134", "tags": "teens jobfair mattapan"}, {"datetaken": "2010-03-05 15:27:11", "license": "1", "title": "P3050740", "text": "", "album_id": "72157623565659140", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4061/4411298276_7463b08399_o.jpg", "secret": "5ecea36402", "media": "photo", "latitude": "0", "id": "4411298276", "tags": "teens jobfair mattapan"}, {"datetaken": "2010-03-05 15:30:58", "license": "1", "title": "P3050741", "text": "", "album_id": "72157623565659140", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4410531327_c359a9bace_o.jpg", "secret": "031d07e1ff", "media": "photo", "latitude": "0", "id": "4410531327", "tags": "teens jobfair mattapan"}, {"datetaken": "2010-03-05 15:32:49", "license": "1", "title": "P3050742", "text": "", "album_id": "72157623565659140", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2739/4410531479_9d1167ed34_o.jpg", "secret": "77b25d479a", "media": "photo", "latitude": "0", "id": "4410531479", "tags": "teens jobfair mattapan"}, {"datetaken": "2010-03-05 16:12:18", "license": "1", "title": "P3050743", "text": "", "album_id": "72157623565659140", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4410531611_b1301f2dd7_o.jpg", "secret": "9fe831a374", "media": "photo", "latitude": "0", "id": "4410531611", "tags": "teens jobfair mattapan"}, {"datetaken": "2010-03-05 16:12:28", "license": "1", "title": "P3050744", "text": "", "album_id": "72157623565659140", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4411298962_a7a48fb6e6_o.jpg", "secret": "28cf4956d5", "media": "photo", "latitude": "0", "id": "4411298962", "tags": "teens yancey jobfair mattapan"}, {"datetaken": "2010-03-05 16:12:35", "license": "1", "title": "P3050745", "text": "", "album_id": "72157623565659140", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2736/4411299052_1cf189ff7c_o.jpg", "secret": "bef6f271e3", "media": "photo", "latitude": "0", "id": "4411299052", "tags": "teens yancey jobfair mattapan"}, {"datetaken": "2010-03-05 16:12:50", "license": "1", "title": "P3050746", "text": "", "album_id": "72157623565659140", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2712/4411299140_87f0666d3d_o.jpg", "secret": "49b4dc64d7", "media": "photo", "latitude": "0", "id": "4411299140", "tags": "teens yancey jobfair mattapan"}, {"datetaken": "2010-03-05 16:14:23", "license": "1", "title": "P3050747", "text": "", "album_id": "72157623565659140", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2739/4411299260_465fe5cf14_o.jpg", "secret": "bf31a04412", "media": "photo", "latitude": "0", "id": "4411299260", "tags": "teens ann yancey jobfair mattapan"}, {"datetaken": "2010-03-05 16:14:32", "license": "1", "title": "P3050748", "text": "", "album_id": "72157623565659140", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4411299470_4928c21702_o.jpg", "secret": "caa371f4b7", "media": "photo", "latitude": "0", "id": "4411299470", "tags": "teens ann yancey jobfair mattapan"}, {"datetaken": "2010-03-05 16:15:31", "license": "1", "title": "P3050749", "text": "", "album_id": "72157623565659140", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4411299658_33fe29a4f6_o.jpg", "secret": "faa0592de4", "media": "photo", "latitude": "0", "id": "4411299658", "tags": "teens yancey jobfair mattapan"}, {"datetaken": "2010-03-05 16:15:41", "license": "1", "title": "P3050750", "text": "", "album_id": "72157623565659140", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4411299812_13889e8288_o.jpg", "secret": "386a31e755", "media": "photo", "latitude": "0", "id": "4411299812", "tags": "teens yancey jobfair mattapan"}, {"datetaken": "2010-03-05 16:15:58", "license": "1", "title": "P3050751", "text": "", "album_id": "72157623565659140", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4033/4411300004_58c6e28cef_o.jpg", "secret": "b7927737e9", "media": "photo", "latitude": "0", "id": "4411300004", "tags": "teens yancey jobfair mattapan"}, {"datetaken": "2010-03-05 16:16:06", "license": "1", "title": "P3050752", "text": "", "album_id": "72157623565659140", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2746/4411300190_5d09b7e4f3_o.jpg", "secret": "75b5e7174b", "media": "photo", "latitude": "0", "id": "4411300190", "tags": "clayton teens yancey jobfair mattapan"}, {"datetaken": "2010-02-08 07:42:06", "license": "1", "title": "MVI_0369", "text": "", "album_id": "72157623379045494", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2803/4341065704_cb2b686721_o.jpg", "secret": "91d9369996", "media": "video", "latitude": "0", "id": "4341065704", "tags": "lockie kcds"}, {"datetaken": "2010-02-08 08:14:52", "license": "1", "title": "", "text": "", "album_id": "72157623379045494", "longitude": "-85.538993", "url_o": "https://farm5.staticflickr.com/4065/4340981890_6b574d9868_o.jpg", "secret": "397b68999e", "media": "photo", "latitude": "42.230262", "id": "4340981890", "tags": "geotagged scouts lockie kcds"}, {"datetaken": "2010-02-08 08:15:03", "license": "1", "title": "", "text": "", "album_id": "72157623379045494", "longitude": "-85.538993", "url_o": "https://farm5.staticflickr.com/4052/4340982672_65cb1a91fd_o.jpg", "secret": "43b3c561c4", "media": "photo", "latitude": "42.230262", "id": "4340982672", "tags": "geotagged scouts lockie kcds"}, {"datetaken": "2010-02-08 08:21:24", "license": "1", "title": "", "text": "", "album_id": "72157623379045494", "longitude": "-85.538993", "url_o": "https://farm5.staticflickr.com/4012/4340983942_fbce332487_o.jpg", "secret": "af80dc33d3", "media": "photo", "latitude": "42.230262", "id": "4340983942", "tags": "geotagged kcds janeo"}, {"datetaken": "2010-02-08 08:25:34", "license": "1", "title": "", "text": "", "album_id": "72157623379045494", "longitude": "-85.538993", "url_o": "https://farm3.staticflickr.com/2762/4340984742_666f8625ca_o.jpg", "secret": "bdfa319d82", "media": "photo", "latitude": "42.230262", "id": "4340984742", "tags": "geotagged lockie kcds"}, {"datetaken": "2010-02-08 08:28:39", "license": "1", "title": "", "text": "", "album_id": "72157623379045494", "longitude": "-85.538993", "url_o": "https://farm3.staticflickr.com/2684/4340241795_323bca0100_o.jpg", "secret": "e5d9258407", "media": "photo", "latitude": "42.230262", "id": "4340241795", "tags": "geotagged kcds elizabethc"}, {"datetaken": "2010-02-08 08:31:17", "license": "1", "title": "", "text": "", "album_id": "72157623379045494", "longitude": "-85.538993", "url_o": "https://farm3.staticflickr.com/2789/4340243087_bfc153720d_o.jpg", "secret": "d3a2910915", "media": "photo", "latitude": "42.230262", "id": "4340243087", "tags": "geotagged kcds"}, {"datetaken": "2010-02-08 08:35:38", "license": "1", "title": "39/365", "text": "", "album_id": "72157623379045494", "longitude": "-85.538993", "url_o": "https://farm5.staticflickr.com/4025/4340988286_38d3d8d0c3_o.jpg", "secret": "b71ffa85aa", "media": "photo", "latitude": "42.230262", "id": "4340988286", "tags": "geotagged wendy lockie kcds"}, {"datetaken": "2010-02-08 08:36:35", "license": "1", "title": "", "text": "", "album_id": "72157623379045494", "longitude": "-85.538993", "url_o": "https://farm5.staticflickr.com/4029/4340989394_700f4d55a3_o.jpg", "secret": "676b24c14f", "media": "photo", "latitude": "42.230262", "id": "4340989394", "tags": "geotagged lockie kcds"}, {"datetaken": "2010-02-08 08:43:02", "license": "1", "title": "", "text": "", "album_id": "72157623379045494", "longitude": "-85.538993", "url_o": "https://farm5.staticflickr.com/4052/4340990342_50e36106ec_o.jpg", "secret": "e5a90c9fe1", "media": "photo", "latitude": "42.230262", "id": "4340990342", "tags": "geotagged kcds elizabethc"}, {"datetaken": "2010-02-08 08:43:23", "license": "1", "title": "", "text": "", "album_id": "72157623379045494", "longitude": "-85.538993", "url_o": "https://farm3.staticflickr.com/2688/4340247469_e13521e2b7_o.jpg", "secret": "d54484860e", "media": "photo", "latitude": "42.230262", "id": "4340247469", "tags": "geotagged kcds elizabethc"}, {"datetaken": "2010-02-08 08:49:12", "license": "1", "title": "", "text": "", "album_id": "72157623379045494", "longitude": "-85.538993", "url_o": "https://farm3.staticflickr.com/2747/4340249213_e2f952cfbc_o.jpg", "secret": "a3e5e3acf2", "media": "photo", "latitude": "42.230262", "id": "4340249213", "tags": "geotagged scouts lockie kcds"}, {"datetaken": "2010-02-08 08:49:59", "license": "1", "title": "", "text": "", "album_id": "72157623379045494", "longitude": "-85.538993", "url_o": "https://farm5.staticflickr.com/4047/4340250607_b325befd0d_o.jpg", "secret": "586c649a7e", "media": "photo", "latitude": "42.230262", "id": "4340250607", "tags": "geotagged scouts lockie kcds"}, {"datetaken": "2010-02-09 19:36:41", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2756/4345187173_91dfa32d87_o.jpg", "secret": "a1b78daec3", "media": "photo", "latitude": "0", "id": "4345187173", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 19:36:43", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2804/4345928050_c20337985f_o.jpg", "secret": "9b49b1d09c", "media": "photo", "latitude": "0", "id": "4345928050", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 19:38:08", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4006/4345183043_31d662f738_o.jpg", "secret": "52d6644d57", "media": "photo", "latitude": "0", "id": "4345183043", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 19:38:36", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4345923848_68968fdaea_o.jpg", "secret": "d0033b13f7", "media": "photo", "latitude": "0", "id": "4345923848", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 19:39:36", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2731/4345921700_cd33e0f549_o.jpg", "secret": "bce02703bc", "media": "photo", "latitude": "0", "id": "4345921700", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 19:40:17", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4345176979_a8d921ebde_o.jpg", "secret": "ec1f141338", "media": "photo", "latitude": "0", "id": "4345176979", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 19:40:57", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2704/4345917780_c38b6be8f1_o.jpg", "secret": "7a3b17ca54", "media": "photo", "latitude": "0", "id": "4345917780", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 19:42:16", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2799/4345172953_cbb90b2205_o.jpg", "secret": "877d13a9b5", "media": "photo", "latitude": "0", "id": "4345172953", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 19:42:37", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4345913226_8e5f05eeff_o.jpg", "secret": "00a5d7e2cd", "media": "photo", "latitude": "0", "id": "4345913226", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 19:43:58", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2729/4345168653_09c37fd605_o.jpg", "secret": "aee6e59349", "media": "photo", "latitude": "0", "id": "4345168653", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 19:46:38", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4345166927_2c6556347d_o.jpg", "secret": "158b895465", "media": "photo", "latitude": "0", "id": "4345166927", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 19:46:44", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4345908092_dffa95f87b_o.jpg", "secret": "4ed96592b8", "media": "photo", "latitude": "0", "id": "4345908092", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 19:47:48", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4050/4345164085_a32a3852ce_o.jpg", "secret": "7a05f1eeed", "media": "photo", "latitude": "0", "id": "4345164085", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 19:49:29", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4057/4345162185_e5b3780ab9_o.jpg", "secret": "2c54eca5c2", "media": "photo", "latitude": "0", "id": "4345162185", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 19:51:14", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4072/4345902978_eee80afa62_o.jpg", "secret": "8528a49620", "media": "photo", "latitude": "0", "id": "4345902978", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 19:52:55", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2775/4345158917_c63007a99f_o.jpg", "secret": "3e65555a4e", "media": "photo", "latitude": "0", "id": "4345158917", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 20:07:07", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4345157025_d72c22bc41_o.jpg", "secret": "04a1c1fd79", "media": "photo", "latitude": "0", "id": "4345157025", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 20:07:19", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2763/4345155159_a34e8701bd_o.jpg", "secret": "2f6f1f8f04", "media": "photo", "latitude": "0", "id": "4345155159", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 20:07:34", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4003/4345153379_6b2a0987e1_o.jpg", "secret": "4d264e34f7", "media": "photo", "latitude": "0", "id": "4345153379", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 20:07:41", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4345894216_a681d6567e_o.jpg", "secret": "93a3da200f", "media": "photo", "latitude": "0", "id": "4345894216", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 20:07:48", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4028/4345892708_13560b59f8_o.jpg", "secret": "b35fd4bab4", "media": "photo", "latitude": "0", "id": "4345892708", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 20:08:31", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4345891088_3c3acaa509_o.jpg", "secret": "9196d5a3aa", "media": "photo", "latitude": "0", "id": "4345891088", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 20:09:00", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4345889308_a71e384d28_o.jpg", "secret": "0ae6dbbdb5", "media": "photo", "latitude": "0", "id": "4345889308", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-09 20:09:16", "license": "5", "title": "", "text": "", "album_id": "72157623272811295", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2723/4345887692_9da838c960_o.jpg", "secret": "be6fcbd964", "media": "photo", "latitude": "0", "id": "4345887692", "tags": "st fair pizza missouri acm rolla umr career pizzainn"}, {"datetaken": "2010-02-06 11:22:34", "license": "1", "title": "Dallas Art Fair Symposium: Finding Frida", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4423681221_614db47a91_o.jpg", "secret": "589d491d67", "media": "photo", "latitude": "0", "id": "4423681221", "tags": "dallas dallasartfair findingfrida"}, {"datetaken": "2010-02-06 11:22:54", "license": "1", "title": "Dallas Art Fair Symposium: Finding Frida", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4042/4423681339_49873f1b0c_o.jpg", "secret": "081aeec840", "media": "photo", "latitude": "0", "id": "4423681339", "tags": "dallas dallasartfair findingfrida"}, {"datetaken": "2010-02-06 11:46:58", "license": "1", "title": "Dallas Art Fair Symposium: Finding Frida", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4424446376_8b467eb977_o.jpg", "secret": "ba33e28327", "media": "photo", "latitude": "0", "id": "4424446376", "tags": "dallas dallasartfair findingfrida"}, {"datetaken": "2010-02-06 12:08:12", "license": "1", "title": "Dallas Art Fair Symposium: Finding Frida", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4031/4424446534_4c1c829036_o.jpg", "secret": "5b80fe211d", "media": "photo", "latitude": "0", "id": "4424446534", "tags": "dallas dallasartfair findingfrida"}, {"datetaken": "2010-02-06 12:17:57", "license": "1", "title": "Dallas Art Fair Symposium: Finding Frida", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4424446686_45a242d8fe_o.jpg", "secret": "18b9672c6f", "media": "photo", "latitude": "0", "id": "4424446686", "tags": "dallas dallasartfair findingfrida"}, {"datetaken": "2010-02-06 13:05:51", "license": "1", "title": "Dallas Art Fair Symposium: Finding Frida", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2702/4423681875_7ffcb64520_o.jpg", "secret": "1f4a481bf2", "media": "photo", "latitude": "0", "id": "4423681875", "tags": "dallas dallasartfair findingfrida"}, {"datetaken": "2010-02-06 13:06:18", "license": "1", "title": "Dallas Art Fair Symposium: Finding Frida", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4423682063_dbc071e439_o.jpg", "secret": "01fef504a5", "media": "photo", "latitude": "0", "id": "4423682063", "tags": "dallas dallasartfair findingfrida"}, {"datetaken": "2010-02-06 13:27:14", "license": "1", "title": "Dallas Art Fair Symposium: Finding Frida", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2782/4423682253_21b536a717_o.jpg", "secret": "715c2b0e00", "media": "photo", "latitude": "0", "id": "4423682253", "tags": "dallas dallasartfair findingfrida"}, {"datetaken": "2010-02-06 13:27:37", "license": "1", "title": "Dallas Art Fair Symposium: Finding Frida", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2779/4423682363_ab700cc8c4_o.jpg", "secret": "d31752910a", "media": "photo", "latitude": "0", "id": "4423682363", "tags": "dallas dallasartfair findingfrida"}, {"datetaken": "2010-02-06 13:28:28", "license": "1", "title": "Dallas Art Fair Symposium: Finding Frida", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2767/4423682511_42cb84022c_o.jpg", "secret": "50d98cf2da", "media": "photo", "latitude": "0", "id": "4423682511", "tags": "dallas dallasartfair findingfrida"}, {"datetaken": "2010-02-06 13:28:47", "license": "1", "title": "Dallas Art Fair Symposium: Finding Frida", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4423682811_3f0a40cce1_o.jpg", "secret": "95ba41dc8e", "media": "photo", "latitude": "0", "id": "4423682811", "tags": "dallas dallasartfair findingfrida"}, {"datetaken": "2010-02-06 13:29:27", "license": "1", "title": "Dallas Art Fair Symposium: Finding Frida", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4054/4424447800_1c8e15d871_o.jpg", "secret": "3db6a83856", "media": "photo", "latitude": "0", "id": "4424447800", "tags": "dallas dallasartfair findingfrida"}, {"datetaken": "2010-02-06 13:30:13", "license": "1", "title": "Dallas Art Fair Symposium: Finding Frida", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4045/4423683063_b64a93bc79_o.jpg", "secret": "173ca5d93e", "media": "photo", "latitude": "0", "id": "4423683063", "tags": "dallas dallasartfair findingfrida"}, {"datetaken": "2010-02-06 13:30:32", "license": "1", "title": "Dallas Art Fair Symposium: Finding Frida", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4423683249_e915b35dfd_o.jpg", "secret": "3aaf7796d6", "media": "photo", "latitude": "0", "id": "4423683249", "tags": "dallas dallasartfair findingfrida"}, {"datetaken": "2010-02-06 13:35:36", "license": "1", "title": "Dallas Art Fair Symposium: Finding Frida", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2724/4423683375_a86e13056b_o.jpg", "secret": "d2b01bef17", "media": "photo", "latitude": "0", "id": "4423683375", "tags": "dallas dallasartfair findingfrida"}, {"datetaken": "2010-02-06 15:14:58", "license": "1", "title": "Dallas Art Fair 2010", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2701/4423683469_246875439a_o.jpg", "secret": "6ac09a61f4", "media": "photo", "latitude": "0", "id": "4423683469", "tags": "dallas dallasartfair"}, {"datetaken": "2010-02-06 15:18:31", "license": "1", "title": "Dallas Art Fair 2010", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4423683551_e4cd5aa4c7_o.jpg", "secret": "40e626c3db", "media": "photo", "latitude": "0", "id": "4423683551", "tags": "dallas dallasartfair"}, {"datetaken": "2010-02-06 15:38:44", "license": "1", "title": "Dallas Art Fair 2010", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4423683637_57be1df4c8_o.jpg", "secret": "28ce304704", "media": "photo", "latitude": "0", "id": "4423683637", "tags": "dallas dallasartfair"}, {"datetaken": "2010-02-06 15:45:33", "license": "1", "title": "Dallas Art Fair 2010", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4424448634_f30cf60def_o.jpg", "secret": "d9591f4908", "media": "photo", "latitude": "0", "id": "4424448634", "tags": "dallas dallasartfair"}, {"datetaken": "2010-02-06 16:00:08", "license": "1", "title": "Dallas Art Fair 2010", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2678/4424448742_b6f38b60b7_o.jpg", "secret": "744b1430c1", "media": "photo", "latitude": "0", "id": "4424448742", "tags": "dallas dallasartfair"}, {"datetaken": "2010-02-06 16:28:30", "license": "1", "title": "Dallas Art Fair 2010", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4019/4423683975_1691333347_o.jpg", "secret": "e5c878c679", "media": "photo", "latitude": "0", "id": "4423683975", "tags": "dallas dallasartfair"}, {"datetaken": "2010-02-06 16:32:13", "license": "1", "title": "Dallas Art Fair 2010", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4424448998_43545ae916_o.jpg", "secret": "c37d769d4a", "media": "photo", "latitude": "0", "id": "4424448998", "tags": "dallas dallasartfair"}, {"datetaken": "2010-02-06 16:33:37", "license": "1", "title": "Dallas Art Fair 2010", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2782/4424449140_f32070c821_o.jpg", "secret": "d93fa47f45", "media": "photo", "latitude": "0", "id": "4424449140", "tags": "dallas dallasartfair"}, {"datetaken": "2010-02-06 16:42:41", "license": "1", "title": "Dallas Art Fair 2010", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4423684317_1083f1a2b9_o.jpg", "secret": "0107db6916", "media": "photo", "latitude": "0", "id": "4423684317", "tags": "dallas raw dallasartfair"}, {"datetaken": "2010-02-06 16:52:47", "license": "1", "title": "Dallas Art Fair 2010", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2763/4424449386_81d5552b8a_o.jpg", "secret": "2ca556a41a", "media": "photo", "latitude": "0", "id": "4424449386", "tags": "dallas raw dallasartfair"}, {"datetaken": "2010-02-06 16:52:57", "license": "1", "title": "Dallas Art Fair 2010", "text": "", "album_id": "72157623473359603", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4423684769_6193dc5c79_o.jpg", "secret": "6fa0c12188", "media": "photo", "latitude": "0", "id": "4423684769", "tags": "dallas raw dallasartfair"}, {"datetaken": "2010-03-07 17:24:13", "license": "3", "title": "Red Dot art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4034/4415420943_89f34d98cc_o.jpg", "secret": "926fb17ec9", "media": "photo", "latitude": "0", "id": "4415420943", "tags": "show nyc girls red party people sculpture ny newyork art fashion collage painting print fun photography sketch video graphics women artist gallery legs drawing manhattan assemblage crowd drinking culture style fair scene dot event reception alcohol installation trendy gathering booze opening hip cultural artfair 2010 jno nytcap nytcapblogspotcom"}, {"datetaken": "2010-03-07 17:25:31", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4422560216_7761c9c38c_o.jpg", "secret": "5a43425b90", "media": "photo", "latitude": "0", "id": "4422560216", "tags": "art dot fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol"}, {"datetaken": "2010-03-07 17:26:01", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4421794909_bab9fbee9b_o.jpg", "secret": "a779505de2", "media": "photo", "latitude": "0", "id": "4421794909", "tags": "art dot yorkmanhattannynycjnoshowgalleryopeningreceptionred fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol"}, {"datetaken": "2010-03-07 17:26:11", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2751/4422560610_8a77b731a7_o.jpg", "secret": "214bac9b99", "media": "photo", "latitude": "0", "id": "4422560610", "tags": "art dot fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol"}, {"datetaken": "2010-03-07 17:26:49", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2770/4422560784_5179d70782_o.jpg", "secret": "bf2171a211", "media": "photo", "latitude": "0", "id": "4422560784", "tags": "art dot yorkmanhattannynycjnoshowgalleryopeningreceptionred fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol"}, {"datetaken": "2010-03-07 17:34:01", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2762/4422560914_e083554b0d_o.jpg", "secret": "a5c53a6075", "media": "photo", "latitude": "0", "id": "4422560914", "tags": "art dot yorkmanhattannynycjnoshowgalleryopeningreceptionred fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol"}, {"datetaken": "2010-03-07 17:34:34", "license": "3", "title": "Red Dot art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4004/4416188294_3c0c59fbc5_o.jpg", "secret": "b77ea3fb31", "media": "photo", "latitude": "0", "id": "4416188294", "tags": "show nyc girls red party people sculpture ny newyork art fashion collage painting print fun photography sketch video graphics women artist gallery legs drawing manhattan assemblage crowd drinking culture style fair scene dot event reception alcohol installation trendy gathering booze opening hip cultural artfair 2010 jno nytcap nytcapblogspotcom"}, {"datetaken": "2010-03-07 17:34:44", "license": "3", "title": "Red Dot art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2697/4416188534_d1f239642f_o.jpg", "secret": "2a768db706", "media": "photo", "latitude": "0", "id": "4416188534", "tags": "show nyc girls red party people sculpture ny newyork art fashion collage painting print fun photography sketch video graphics women artist gallery legs drawing manhattan assemblage crowd drinking culture style fair scene dot event reception alcohol installation trendy gathering booze opening hip cultural artfair 2010 jno nytcap nytcapblogspotcom"}, {"datetaken": "2010-03-07 17:35:24", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4422561064_0f58053c23_o.jpg", "secret": "40e769b13f", "media": "photo", "latitude": "0", "id": "4422561064", "tags": "art dot yorkmanhattannynycjnoshowgalleryopeningreceptionred fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol"}, {"datetaken": "2010-03-07 17:40:26", "license": "3", "title": "Red Dot art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2700/4416188704_8f13730cb9_o.jpg", "secret": "8f438f0583", "media": "photo", "latitude": "0", "id": "4416188704", "tags": "show nyc girls red party people sculpture ny newyork art fashion collage painting print fun photography sketch video graphics women artist gallery legs drawing manhattan assemblage crowd drinking culture style fair scene dot event reception alcohol installation trendy gathering booze opening hip cultural artfair 2010 jno nytcap nytcapblogspotcom"}, {"datetaken": "2010-03-07 17:45:03", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2739/4422561210_2df1d36d42_o.jpg", "secret": "0b97135aaf", "media": "photo", "latitude": "0", "id": "4422561210", "tags": "art fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol yorkmanhattannynycjnoshowgalleryopeningreceptionred dot"}, {"datetaken": "2010-03-07 17:45:54", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2754/4422561384_824f30a7c1_o.jpg", "secret": "cd86e436bf", "media": "photo", "latitude": "0", "id": "4422561384", "tags": "art dot yorkmanhattannynycjnoshowgalleryopeningreceptionred fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol"}, {"datetaken": "2010-03-07 17:48:05", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2757/4422561556_159802f825_o.jpg", "secret": "7d1ea69484", "media": "photo", "latitude": "0", "id": "4422561556", "tags": "art dot yorkmanhattannynycjnoshowgalleryopeningreceptionred fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol"}, {"datetaken": "2010-03-07 17:49:36", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2768/4422561802_a443eec369_o.jpg", "secret": "a4b60d2340", "media": "photo", "latitude": "0", "id": "4422561802", "tags": "art dot yorkmanhattannynycjnoshowgalleryopeningreceptionred fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol"}, {"datetaken": "2010-03-07 17:49:46", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2677/4421796455_d8e0490089_o.jpg", "secret": "1db5f8b8ce", "media": "photo", "latitude": "0", "id": "4421796455", "tags": "art dot yorkmanhattannynycjnoshowgalleryopeningreceptionred fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol"}, {"datetaken": "2010-03-07 17:50:08", "license": "3", "title": "Red Dot art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4416189048_2d2c3201b6_o.jpg", "secret": "288d4435bc", "media": "photo", "latitude": "0", "id": "4416189048", "tags": "show nyc girls red party people sculpture ny newyork art fashion collage painting print fun photography sketch video graphics women artist gallery legs drawing manhattan assemblage crowd drinking culture style fair scene dot event reception alcohol installation trendy gathering booze opening hip cultural artfair 2010 jno nytcap nytcapblogspotcom"}, {"datetaken": "2010-03-07 17:57:11", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4026/4422562102_0ceec4130b_o.jpg", "secret": "a4d3543637", "media": "photo", "latitude": "0", "id": "4422562102", "tags": "art dot yorkmanhattannynycjnoshowgalleryopeningreceptionred fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol"}, {"datetaken": "2010-03-07 17:59:04", "license": "3", "title": "Red Dot art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2765/4416189172_c38be7b25f_o.jpg", "secret": "f4df6c0c3c", "media": "photo", "latitude": "0", "id": "4416189172", "tags": "show nyc girls red party people sculpture ny newyork art fashion collage painting print fun photography sketch video graphics women artist gallery legs drawing manhattan assemblage crowd drinking culture style fair scene dot event reception alcohol installation trendy gathering booze opening hip cultural artfair 2010 jno nytcap nytcapblogspotcom"}, {"datetaken": "2010-03-07 18:01:24", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4421796703_cf33aa0530_o.jpg", "secret": "2e9304f6fc", "media": "photo", "latitude": "0", "id": "4421796703", "tags": "art dot yorkmanhattannynycjnoshowgalleryopeningreceptionred fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol"}, {"datetaken": "2010-03-07 18:06:07", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2786/4422562404_8215431a82_o.jpg", "secret": "2e373ca5de", "media": "photo", "latitude": "0", "id": "4422562404", "tags": "art dot yorkmanhattannynycjnoshowgalleryopeningreceptionred fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol"}, {"datetaken": "2010-03-07 18:06:27", "license": "3", "title": "Red Dot art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2801/4415422399_13a1cbb8f6_o.jpg", "secret": "474d3d31fe", "media": "photo", "latitude": "0", "id": "4415422399", "tags": "show nyc girls red party people sculpture ny newyork art fashion collage painting print fun photography sketch video graphics women artist gallery legs drawing manhattan assemblage crowd drinking culture style fair scene dot event reception alcohol installation trendy gathering booze opening hip cultural artfair 2010 jno nytcap nytcapblogspotcom"}, {"datetaken": "2010-03-07 18:07:15", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2489/4421797157_a04d71b5f5_o.jpg", "secret": "e48c026877", "media": "photo", "latitude": "0", "id": "4421797157", "tags": "art dot yorkmanhattannynycjnoshowgalleryopeningreceptionred fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol"}, {"datetaken": "2010-03-07 18:08:52", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2790/4422562762_a0d3d102e1_o.jpg", "secret": "f38b1f9a73", "media": "photo", "latitude": "0", "id": "4422562762", "tags": "art dot yorkmanhattannynycjnoshowgalleryopeningreceptionred fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol"}, {"datetaken": "2010-03-07 18:11:45", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4421797475_9f9a20c252_o.jpg", "secret": "e2e183c231", "media": "photo", "latitude": "0", "id": "4421797475", "tags": "art dot yorkmanhattannynycjnoshowgalleryopeningreceptionred fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol"}, {"datetaken": "2010-03-07 18:12:57", "license": "3", "title": "Red Dot art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4066/4416189592_dd655b3a99_o.jpg", "secret": "d851cee0c7", "media": "photo", "latitude": "0", "id": "4416189592", "tags": "red dot art fair 2010 artfair nytcap nytcapblogspotcom culture cultural artist drawing sketch print collage assemblage installation sculpture painting graphics photography video fun gathering event party crowd women girls legs fashion scene trendy people drinking booze alcohol style hip newyork manhattan ny nyc jno show gallery opening reception"}, {"datetaken": "2010-03-07 18:13:38", "license": "3", "title": "Red Dot NY art fair 2010", "text": "", "album_id": "72157623576462226", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4421797667_992189d29e_o.jpg", "secret": "0e34d02f21", "media": "photo", "latitude": "0", "id": "4421797667", "tags": "art dot yorkmanhattannynycjnoshowgalleryopeningreceptionred fairnytcapnytcapblogspotcomcultureculturalartistdrawingsketchprintcollageassemblageinstallationsculpturepaintinggraphicsphotographyvideofungatheringeventpartycrowdwomengirlslegsfashionscenetrendypeopledrinkingboozealcohol"}, {"datetaken": "2010-01-27 11:32:18", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4309548391_ab2ae00142_o.jpg", "secret": "cc304587a8", "media": "photo", "latitude": "0", "id": "4309548391", "tags": "interiorsexhibition interiors2010 interiorsbirmingham2010 designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 11:32:59", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4309551421_f6951cc430_o.jpg", "secret": "f756cc0b41", "media": "photo", "latitude": "0", "id": "4309551421", "tags": "interiorsexhibition interiors2010 interiorsbirmingham2010 designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 11:43:03", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4309530245_c69dc3d953_o.jpg", "secret": "a56e2eaee9", "media": "photo", "latitude": "0", "id": "4309530245", "tags": "furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 11:43:28", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4310270246_b89cc0830e_o.jpg", "secret": "47e3044185", "media": "photo", "latitude": "0", "id": "4310270246", "tags": "furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 11:44:26", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4063/4309554929_9a0eb342aa_o.jpg", "secret": "58c3b2fb1d", "media": "photo", "latitude": "0", "id": "4309554929", "tags": "interiorsexhibition interiors2010 interiorsbirmingham2010 designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 11:47:19", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4310294478_6e40884beb_o.jpg", "secret": "0b45d6eaea", "media": "photo", "latitude": "0", "id": "4310294478", "tags": "interiorsexhibition interiors2010 interiorsbirmingham2010 designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 11:55:01", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4310297252_4da13e5c83_o.jpg", "secret": "f212eed031", "media": "photo", "latitude": "0", "id": "4310297252", "tags": "interiorsexhibition interiors2010 interiorsbirmingham2010 designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 12:13:38", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "-1.718158", "url_o": "https://farm3.staticflickr.com/2790/4309536995_a2ff89f9f4_o.jpg", "secret": "145e43157e", "media": "photo", "latitude": "52.454911", "id": "4309536995", "tags": "furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 12:18:31", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4310277388_5c709fe3a9_o.jpg", "secret": "4469a3aa86", "media": "photo", "latitude": "0", "id": "4310277388", "tags": "furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 12:19:00", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2721/4309544077_15633e717f_o.jpg", "secret": "236f0dffc4", "media": "photo", "latitude": "0", "id": "4309544077", "tags": "interiorsexhibition interiors2010 interiorsbirmingham2010 designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 12:19:44", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "-1.718158", "url_o": "https://farm5.staticflickr.com/4003/4309469705_402061e3e1_o.jpg", "secret": "bff04a8fc5", "media": "photo", "latitude": "52.454911", "id": "4309469705", "tags": "furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 12:20:02", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "-1.718158", "url_o": "https://farm5.staticflickr.com/4015/4310214986_c3fc06ec48_o.jpg", "secret": "f515934b6e", "media": "photo", "latitude": "52.454911", "id": "4310214986", "tags": "furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 12:23:49", "license": "1", "title": "Interiors 2010 - work by Birmingham City University students", "text": "", "album_id": "72157623176008591", "longitude": "-1.718158", "url_o": "https://farm5.staticflickr.com/4050/4309490385_37b7a066ff_o.jpg", "secret": "142791c017", "media": "photo", "latitude": "52.454911", "id": "4309490385", "tags": "studentwork furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham workbydesignstudents"}, {"datetaken": "2010-01-27 12:24:13", "license": "1", "title": "Interiors 2010 - work by Birmingham City University students", "text": "", "album_id": "72157623176008591", "longitude": "-1.718158", "url_o": "https://farm5.staticflickr.com/4048/4310240342_37b4fae672_o.jpg", "secret": "79d394aa51", "media": "photo", "latitude": "52.454911", "id": "4310240342", "tags": "furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 13:30:24", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "-1.718158", "url_o": "https://farm5.staticflickr.com/4058/4310249850_854d8be761_o.jpg", "secret": "f580c0b067", "media": "photo", "latitude": "52.454911", "id": "4310249850", "tags": "furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 13:32:55", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "-1.718158", "url_o": "https://farm3.staticflickr.com/2713/4310153900_244a727165_o.jpg", "secret": "38d6475f6f", "media": "photo", "latitude": "52.454911", "id": "4310153900", "tags": "furniturefair designevent kellyhoppen furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 13:33:28", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "-1.718158", "url_o": "https://farm3.staticflickr.com/2683/4310162850_d9cd7e187e_o.jpg", "secret": "223d2d8730", "media": "photo", "latitude": "52.454911", "id": "4310162850", "tags": "furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 13:40:20", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "-1.718158", "url_o": "https://farm3.staticflickr.com/2770/4309436389_b29dd49f70_o.jpg", "secret": "93aabf9bfa", "media": "photo", "latitude": "52.454911", "id": "4309436389", "tags": "furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 14:02:57", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "-1.718158", "url_o": "https://farm3.staticflickr.com/2790/4309444909_3e84d80886_o.jpg", "secret": "b26bd8fe7d", "media": "photo", "latitude": "52.454911", "id": "4309444909", "tags": "furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 14:06:58", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "-1.718158", "url_o": "https://farm5.staticflickr.com/4025/4309454149_6e1345150f_o.jpg", "secret": "a4ff894ed1", "media": "photo", "latitude": "52.454911", "id": "4309454149", "tags": "furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 14:08:11", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "-1.718158", "url_o": "https://farm3.staticflickr.com/2690/4309368555_77245ee148_o.jpg", "secret": "2d86b3f6e0", "media": "photo", "latitude": "52.454911", "id": "4309368555", "tags": "furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 14:35:34", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "-1.718158", "url_o": "https://farm3.staticflickr.com/2747/4309375019_d337ed2036_o.jpg", "secret": "34431a9596", "media": "photo", "latitude": "52.454911", "id": "4309375019", "tags": "furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 15:05:38", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "-1.718158", "url_o": "https://farm5.staticflickr.com/4037/4309381769_32c88c8942_o.jpg", "secret": "3e35ae6e80", "media": "photo", "latitude": "52.454911", "id": "4309381769", "tags": "furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 15:06:45", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4047/4310127472_47e6d6ec3e_o.jpg", "secret": "92fb068083", "media": "photo", "latitude": "0", "id": "4310127472", "tags": "furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-01-27 15:31:46", "license": "1", "title": "Interiors 2010", "text": "", "album_id": "72157623176008591", "longitude": "-1.718158", "url_o": "https://farm3.staticflickr.com/2718/4309403965_ce22a6db99_o.jpg", "secret": "3679dfe8e9", "media": "photo", "latitude": "52.454911", "id": "4309403965", "tags": "furniturefair designevent furnitureexhibition interiorsexhibition interiorsevent interiors2010 interiorsbirmingham2010 eventfordesigners designerexhibition exhibitionfordesigners designeventinbirmingham"}, {"datetaken": "2010-02-27 15:02:05", "license": "1", "title": "Masks", "text": "", "album_id": "72157623531666234", "longitude": "-122.437210", "url_o": "https://farm5.staticflickr.com/4060/4397833102_9b9d56dc3e_o.jpg", "secret": "8875fa7084", "media": "photo", "latitude": "47.247379", "id": "4397833102", "tags": "washingtonstatehistorymuseum iconsofwashingtonhistory missplume"}, {"datetaken": "2010-02-27 15:09:22", "license": "1", "title": "Bigfoot Skull!", "text": "", "album_id": "72157623531666234", "longitude": "-122.437210", "url_o": "https://farm3.staticflickr.com/2710/4397069737_25e0ca6f56_o.jpg", "secret": "3f917af91a", "media": "photo", "latitude": "47.247379", "id": "4397069737", "tags": "skulls bigfoot washingtonstatehistorymuseum iconsofwashingtonhistory"}, {"datetaken": "2010-02-27 15:12:29", "license": "1", "title": "Cryptids!", "text": "", "album_id": "72157623531666234", "longitude": "-122.437210", "url_o": "https://farm3.staticflickr.com/2795/4397072201_1fc080795b_o.jpg", "secret": "ebf55a01d1", "media": "photo", "latitude": "47.247379", "id": "4397072201", "tags": "lochnessmonster sasquatch washingtonstatehistorymuseum cryptids iconsofwashingtonhistory"}, {"datetaken": "2010-02-27 15:41:03", "license": "1", "title": "Time hath brought me hither", "text": "", "album_id": "72157623531666234", "longitude": "-122.437210", "url_o": "https://farm3.staticflickr.com/2687/4397841234_f72f0efe59_o.jpg", "secret": "de4a435032", "media": "photo", "latitude": "47.247379", "id": "4397841234", "tags": "washingtonstatehistorymuseum iconsofwashingtonhistory"}, {"datetaken": "2010-02-27 15:50:19", "license": "1", "title": "Breadline on Western Avenue", "text": "", "album_id": "72157623531666234", "longitude": "-122.437210", "url_o": "https://farm3.staticflickr.com/2760/4397843682_625a2de588_o.jpg", "secret": "e06083bfe2", "media": "photo", "latitude": "47.247379", "id": "4397843682", "tags": "seattle westernavenue washingtonstatehistorymuseum breadline iconsofwashingtonhistory"}, {"datetaken": "2010-02-27 15:50:39", "license": "1", "title": "The Depression. Longshoremen and Seamen's Silent Parade", "text": "", "album_id": "72157623531666234", "longitude": "-122.437210", "url_o": "https://farm5.staticflickr.com/4007/4397846172_9dee6f2c0b_o.jpg", "secret": "9714a7092c", "media": "photo", "latitude": "47.247379", "id": "4397846172", "tags": "longshoremen wobblies washingtonstatehistorymuseum bloodythursday ronalddebsginther waterfrontstrike iconsofwashingtonhistory"}, {"datetaken": "2010-02-27 15:55:17", "license": "1", "title": "Chief Seattle", "text": "", "album_id": "72157623531666234", "longitude": "-122.437210", "url_o": "https://farm3.staticflickr.com/2794/4397857690_9a514fdfca_o.jpg", "secret": "81b8a135b7", "media": "photo", "latitude": "47.247379", "id": "4397857690", "tags": "chiefseattle washingtonstatehistorymuseum iconsofwashingtonhistory"}, {"datetaken": "2010-02-27 15:56:01", "license": "1", "title": "Ezra frelling Meeker's frelling wagon", "text": "", "album_id": "72157623531666234", "longitude": "-122.437210", "url_o": "https://farm3.staticflickr.com/2798/4397860422_26cc207f45_o.jpg", "secret": "bb763aba74", "media": "photo", "latitude": "47.247379", "id": "4397860422", "tags": "wagon washingtonstatehistorymuseum ezrameeker iconsofwashingtonhistory"}, {"datetaken": "2010-02-27 15:57:36", "license": "1", "title": "Rainier Beer!", "text": "", "album_id": "72157623531666234", "longitude": "-122.437210", "url_o": "https://farm5.staticflickr.com/4063/4397863346_dc64dc95b0_o.jpg", "secret": "f63eee334d", "media": "photo", "latitude": "47.247379", "id": "4397863346", "tags": "rainierbeer washingtonstatehistorymuseum iconsofwashingtonhistory"}, {"datetaken": "2010-02-27 16:11:29", "license": "1", "title": "Washington State Seal", "text": "", "album_id": "72157623531666234", "longitude": "-122.437210", "url_o": "https://farm5.staticflickr.com/4025/4397099181_546ae965fa_o.jpg", "secret": "997ccbe384", "media": "photo", "latitude": "47.247379", "id": "4397099181", "tags": "elderberries washingtonstatehistorymuseum washingtonstateseal iconsofwashingtonhistory"}, {"datetaken": "2010-02-27 16:23:20", "license": "1", "title": "Wheedle on the Needle", "text": "", "album_id": "72157623531666234", "longitude": "-122.437210", "url_o": "https://farm3.staticflickr.com/2727/4397868500_22902b41c7_o.jpg", "secret": "edf7ffc3bc", "media": "photo", "latitude": "47.247379", "id": "4397868500", "tags": "stuffedanimals spaceneedle washingtonstatehistorymuseum wheedle wheedleontheneedle iconsofwashingtonhistory"}, {"datetaken": "2010-03-28 10:42:01", "license": "1", "title": "Mushroom Family", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4040/4469399261_7ff0eefe45_o.jpg", "secret": "ee360a26fb", "media": "photo", "latitude": "0", "id": "4469399261", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 10:47:24", "license": "1", "title": "Retrogaming", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2684/4470180544_1e03987847_o.jpg", "secret": "0d85cf00a7", "media": "photo", "latitude": "0", "id": "4470180544", "tags": "anime toys cosplay manga amiga floppy commodore gadgets monkeyisland reenacting cartoomics"}, {"datetaken": "2010-03-28 11:03:49", "license": "1", "title": "Ies Uichen", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2682/4470183200_0fd4777900_o.jpg", "secret": "7fdd244ec4", "media": "photo", "latitude": "0", "id": "4470183200", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 11:08:13", "license": "1", "title": "What!?", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4015/4469406707_41800409f1_o.jpg", "secret": "abbb69fb88", "media": "photo", "latitude": "0", "id": "4469406707", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 11:09:25", "license": "1", "title": "Magic Gadgets", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4043/4470188834_76d78036a3_o.jpg", "secret": "223d835a75", "media": "photo", "latitude": "0", "id": "4470188834", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 11:09:35", "license": "1", "title": "Lost Dharma", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2729/4470192600_ea8c3e5f10_o.jpg", "secret": "b3b33b3b23", "media": "photo", "latitude": "0", "id": "4470192600", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 11:10:04", "license": "1", "title": "Aku Aku & Uka Uka", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4470195296_ca5e9bf5f6_o.jpg", "secret": "a4b54ef20b", "media": "photo", "latitude": "0", "id": "4470195296", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 11:16:15", "license": "1", "title": "Lost Characters", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4018/4469419759_553df9af45_o.jpg", "secret": "d0b1e91f52", "media": "photo", "latitude": "0", "id": "4469419759", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 11:16:47", "license": "1", "title": "One Piece Sabaody", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4065/4470201774_8e1fd9d275_o.jpg", "secret": "386e0d0c21", "media": "photo", "latitude": "0", "id": "4470201774", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 11:36:41", "license": "1", "title": "Soldiers", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4470205180_7216ba3bce_o.jpg", "secret": "2d4517258e", "media": "photo", "latitude": "0", "id": "4470205180", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 11:43:09", "license": "1", "title": "Ghostbusters", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2795/4469429593_2c3c6a6eab_o.jpg", "secret": "4cb522d992", "media": "photo", "latitude": "0", "id": "4469429593", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 11:43:18", "license": "1", "title": "Darth Vader", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4011/4470210720_337628645d_o.jpg", "secret": "428a09507c", "media": "photo", "latitude": "0", "id": "4470210720", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 11:43:33", "license": "1", "title": "Anakin Skywalker", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4044/4470213698_49e5d9d7d6_o.jpg", "secret": "91288073f6", "media": "photo", "latitude": "0", "id": "4470213698", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 12:31:54", "license": "1", "title": "The Dharma Initiative", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2698/4470216348_b922e88501_o.jpg", "secret": "96f6143057", "media": "photo", "latitude": "0", "id": "4470216348", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 12:53:37", "license": "1", "title": "Lightning & Vanille", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4055/4469440171_df76aa666b_o.jpg", "secret": "1858c61fbb", "media": "photo", "latitude": "0", "id": "4469440171", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 12:53:44", "license": "1", "title": "Star Wars", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2737/4470220820_e86c1ebc00_o.jpg", "secret": "a0e04faf02", "media": "photo", "latitude": "0", "id": "4470220820", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 12:54:01", "license": "1", "title": "Darth Maul", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4469444741_dc06b82f74_o.jpg", "secret": "3b68013d8d", "media": "photo", "latitude": "0", "id": "4469444741", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 13:14:01", "license": "1", "title": "Star Wars", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4469447477_3549d13d2b_o.jpg", "secret": "602418191d", "media": "photo", "latitude": "0", "id": "4469447477", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 14:10:42", "license": "1", "title": "Star Wars", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4010/4470228538_00f53be529_o.jpg", "secret": "400a925e90", "media": "photo", "latitude": "0", "id": "4470228538", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 14:13:01", "license": "1", "title": "Sheena & Zelos", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4470231306_a39a52ea07_o.jpg", "secret": "54f794dd8b", "media": "photo", "latitude": "0", "id": "4470231306", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 14:15:19", "license": "1", "title": "Zack Fair", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4021/4470233130_0346452d51_o.jpg", "secret": "5fe8b9ce6d", "media": "photo", "latitude": "0", "id": "4470233130", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 14:17:08", "license": "1", "title": "Revy Two-Hands", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4008/4470235016_7c651259a9_o.jpg", "secret": "d1300147f6", "media": "photo", "latitude": "0", "id": "4470235016", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 14:17:34", "license": "1", "title": "Random cosplay", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4022/4469458569_4eb7e57cd5_o.jpg", "secret": "edc2491e9a", "media": "photo", "latitude": "0", "id": "4469458569", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 14:18:40", "license": "1", "title": "Random cosplay", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2720/4469460677_971bff1cc5_o.jpg", "secret": "6780ace58a", "media": "photo", "latitude": "0", "id": "4469460677", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 14:20:02", "license": "1", "title": "Umbrella Italian Division", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4027/4469463205_4033432827_o.jpg", "secret": "b7185483d0", "media": "photo", "latitude": "0", "id": "4469463205", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 14:20:19", "license": "1", "title": "Umbrella Italian Division", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2766/4470244750_8caaed4957_o.jpg", "secret": "f3beb2e0d1", "media": "photo", "latitude": "0", "id": "4470244750", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 14:20:47", "license": "1", "title": "Umbrella Italian Division", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4068/4470247792_b01916aa55_o.jpg", "secret": "9de2419cc5", "media": "photo", "latitude": "0", "id": "4470247792", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 14:21:28", "license": "1", "title": "Umbrella Italian Division", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4051/4470250384_e5d421fccc_o.jpg", "secret": "54435d40a7", "media": "photo", "latitude": "0", "id": "4470250384", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-03-28 14:27:40", "license": "1", "title": "\"Mr. & Mrs\" Ivankov", "text": "", "album_id": "72157623720905266", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2757/4469474355_6ebbe8f45c_o.jpg", "secret": "7f1ab9364f", "media": "photo", "latitude": "0", "id": "4469474355", "tags": "anime toys cosplay manga gadgets reenacting cartoomics"}, {"datetaken": "2010-01-29 15:49:44", "license": "2", "title": "We all like reading!", "text": "", "album_id": "72157623200777503", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2708/4320941459_246639c734_o.jpg", "secret": "149b45b28b", "media": "photo", "latitude": "0", "id": "4320941459", "tags": "books bookfair nasik indianpublishers prathambooks indianlanguagebooks"}, {"datetaken": "2010-01-29 15:53:21", "license": "2", "title": "Informal reading sessions", "text": "", "album_id": "72157623200777503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4025/4321674534_5fb5a9b0dd_o.jpg", "secret": "f5f4c48476", "media": "photo", "latitude": "0", "id": "4321674534", "tags": "books bookfair nasik indianpublishers prathambooks indianlanguagebooks"}, {"datetaken": "2010-01-29 15:55:26", "license": "2", "title": "'Smile Please' and 'Chulbul's Tail' reach some eager readers", "text": "", "album_id": "72157623200777503", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2688/4321675270_8cd8c0884a_o.jpg", "secret": "2a827814ab", "media": "photo", "latitude": "0", "id": "4321675270", "tags": "books bookfair nasik indianpublishers prathambooks indianlanguagebooks"}, {"datetaken": "2010-01-29 16:30:00", "license": "2", "title": "Kids checking out the books at our stall", "text": "", "album_id": "72157623200777503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4062/4321674908_5515e00e1d_o.jpg", "secret": "9f77008cdd", "media": "photo", "latitude": "0", "id": "4321674908", "tags": "books bookfair nasik indianpublishers prathambooks indianlanguagebooks"}, {"datetaken": "2010-01-29 16:31:34", "license": "2", "title": "Kids checking out the books at our stall", "text": "", "album_id": "72157623200777503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4002/4320941047_d3fe536a8a_o.jpg", "secret": "e4ebc908c3", "media": "photo", "latitude": "0", "id": "4320941047", "tags": "books bookfair nasik indianpublishers prathambooks indianlanguagebooks"}, {"datetaken": "2010-01-30 11:52:08", "license": "2", "title": "The Pratham Books Stall", "text": "", "album_id": "72157623200777503", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2735/4321673646_486e73f57b_o.jpg", "secret": "b9503d9115", "media": "photo", "latitude": "0", "id": "4321673646", "tags": "books bookfair nasik indianpublishers prathambooks indianlanguagebooks"}, {"datetaken": "2010-01-30 11:54:47", "license": "2", "title": "Kids checking out the books at our stall", "text": "", "album_id": "72157623200777503", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2751/4320940387_c591092e11_o.jpg", "secret": "e29121977a", "media": "photo", "latitude": "0", "id": "4320940387", "tags": "books bookfair nasik indianpublishers prathambooks indianlanguagebooks"}, {"datetaken": "2010-01-30 11:56:22", "license": "2", "title": "Kids checking out the books at our stall", "text": "", "album_id": "72157623200777503", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2771/4320940573_4478face3f_o.jpg", "secret": "6feef606da", "media": "photo", "latitude": "0", "id": "4320940573", "tags": "books bookfair nasik indianpublishers prathambooks indianlanguagebooks"}, {"datetaken": "2010-01-30 11:57:26", "license": "2", "title": "Reading ...and more reading", "text": "", "album_id": "72157623200777503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4048/4321673312_4d9d810b98_o.jpg", "secret": "6e26f991fd", "media": "photo", "latitude": "0", "id": "4321673312", "tags": "books bookfair nasik indianpublishers prathambooks indianlanguagebooks"}, {"datetaken": "2010-01-30 12:18:25", "license": "2", "title": "Teehee! This books are nice", "text": "", "album_id": "72157623200777503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4059/4321673790_8d80373590_o.jpg", "secret": "a6b28b7991", "media": "photo", "latitude": "0", "id": "4321673790", "tags": "books bookfair nasik indianpublishers prathambooks indianlanguagebooks"}, {"datetaken": "2010-01-30 12:22:25", "license": "2", "title": "Kids crowd around a book and read it together", "text": "", "album_id": "72157623200777503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4038/4321673136_e231cc5d86_o.jpg", "secret": "ce3927d1b9", "media": "photo", "latitude": "0", "id": "4321673136", "tags": "books bookfair nasik indianpublishers prathambooks indianlanguagebooks"}, {"datetaken": "2010-01-30 12:22:56", "license": "2", "title": "Let me read a story for you", "text": "", "album_id": "72157623200777503", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4071/4320939771_d65ae687c9_o.jpg", "secret": "fe8b3bcab8", "media": "photo", "latitude": "0", "id": "4320939771", "tags": "books bookfair nasik indianpublishers prathambooks indianlanguagebooks"}, {"datetaken": "2010-01-30 12:36:27", "license": "2", "title": "Informal reading sessions", "text": "", "album_id": "72157623200777503", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4321674396_bf8c7df839_o.jpg", "secret": "78d1f1b2f6", "media": "photo", "latitude": "0", "id": "4321674396", "tags": "books bookfair nasik indianpublishers prathambooks indianlanguagebooks"}, {"datetaken": "2010-01-30 07:54:03", "license": "3", "title": "ice reflection", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2520/4318496070_2080463873_o.jpg", "secret": "1d53d47abd", "media": "photo", "latitude": "0", "id": "4318496070", "tags": "awertz"}, {"datetaken": "2010-01-30 08:21:09", "license": "3", "title": "civic pride (huckster panache)", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4014/4318495616_db53e45921_o.jpg", "secret": "f7caebd52b", "media": "photo", "latitude": "0", "id": "4318495616", "tags": "awertz"}, {"datetaken": "2010-01-30 08:21:34", "license": "3", "title": "morning laundry frame", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4023/4318495976_6979913b28_o.jpg", "secret": "cb635de41f", "media": "photo", "latitude": "0", "id": "4318495976", "tags": "awertz"}, {"datetaken": "2010-01-30 08:22:44", "license": "3", "title": "george white front", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2797/4318495934_0e95341a03_o.jpg", "secret": "15d84c7d47", "media": "photo", "latitude": "0", "id": "4318495934", "tags": "awertz"}, {"datetaken": "2010-01-30 08:23:17", "license": "3", "title": "studio detail 2/3", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4041/4317763781_2cc5dee0ab_o.jpg", "secret": "dacc4287eb", "media": "photo", "latitude": "0", "id": "4317763781", "tags": "awertz"}, {"datetaken": "2010-01-30 08:23:34", "license": "3", "title": "3/3", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2642/4318495840_92da25738b_o.jpg", "secret": "0231fae33d", "media": "photo", "latitude": "0", "id": "4318495840", "tags": "awertz"}, {"datetaken": "2010-01-30 08:24:18", "license": "3", "title": "76'ers B _R", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4067/4318496024_08077b371b_o.jpg", "secret": "918bd82652", "media": "photo", "latitude": "0", "id": "4318496024", "tags": "awertz"}, {"datetaken": "2010-01-30 08:28:07", "license": "3", "title": "ocu marine '77", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4058/4318495798_dd3be13dc6_o.jpg", "secret": "a2255426c3", "media": "photo", "latitude": "0", "id": "4318495798", "tags": "awertz"}, {"datetaken": "2010-01-30 08:48:32", "license": "3", "title": "gothic revival mansion (with cupola?)", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2794/4317763531_c545145b68_o.jpg", "secret": "a9d172b159", "media": "photo", "latitude": "0", "id": "4317763531", "tags": "awertz"}, {"datetaken": "2010-01-30 09:06:08", "license": "3", "title": "block forms red/off white", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4064/4317763671_dd6ec0c57f_o.jpg", "secret": "df84d19945", "media": "photo", "latitude": "0", "id": "4317763671", "tags": "awertz"}, {"datetaken": "2010-01-30 09:12:48", "license": "3", "title": "villa apts", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2773/4318495732_72d039c92c_o.jpg", "secret": "60cd35ce6d", "media": "photo", "latitude": "0", "id": "4318495732", "tags": "awertz"}, {"datetaken": "2010-01-30 09:19:12", "license": "3", "title": "residence 36", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2737/4317763595_6edaa5a142_o.jpg", "secret": "47514b04a3", "media": "photo", "latitude": "0", "id": "4317763595", "tags": "awertz"}, {"datetaken": "2010-01-30 09:58:43", "license": "3", "title": "pilot", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2683/4317763579_3d638d59d6_o.jpg", "secret": "83fcb9dfc3", "media": "photo", "latitude": "0", "id": "4317763579", "tags": "awertz"}, {"datetaken": "2010-01-30 10:33:49", "license": "3", "title": "Guadalupana", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2744/4317763497_af4e64f597_o.jpg", "secret": "1d42da5fff", "media": "photo", "latitude": "0", "id": "4317763497", "tags": "awertz"}, {"datetaken": "2010-01-30 10:35:19", "license": "3", "title": "amodeo gargantua", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2487/4317763461_8c75a6bb09_o.jpg", "secret": "8d8bd73c91", "media": "photo", "latitude": "0", "id": "4317763461", "tags": "awertz"}, {"datetaken": "2010-01-30 10:36:46", "license": "3", "title": "vacants", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4318495464_9698beb54c_o.jpg", "secret": "1d9b9e254e", "media": "photo", "latitude": "0", "id": "4318495464", "tags": "awertz"}, {"datetaken": "2010-01-30 10:39:48", "license": "3", "title": "Family Barber Shop", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2751/4317763367_deddc1b98a_o.jpg", "secret": "b22b37945c", "media": "photo", "latitude": "0", "id": "4317763367", "tags": "awertz"}, {"datetaken": "2010-01-30 10:40:47", "license": "3", "title": "sat morning bathrobe (duck and cover)", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4012/4318495370_36ca42bdfe_o.jpg", "secret": "478e5cf779", "media": "photo", "latitude": "0", "id": "4318495370", "tags": "awertz"}, {"datetaken": "2010-01-30 11:05:45", "license": "3", "title": "since 1932 (sign since early 40's)", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2804/4317763315_bba31617e6_o.jpg", "secret": "d8834c9398", "media": "photo", "latitude": "0", "id": "4317763315", "tags": "awertz"}, {"datetaken": "2010-01-30 11:11:41", "license": "3", "title": "only uphill", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2707/4318495318_41eb089a80_o.jpg", "secret": "59a4c5dea5", "media": "photo", "latitude": "0", "id": "4318495318", "tags": "awertz"}, {"datetaken": "2010-01-30 11:32:32", "license": "3", "title": "apartments for ....", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4005/4318495298_df2c88d5e0_o.jpg", "secret": "122aa854fa", "media": "photo", "latitude": "0", "id": "4318495298", "tags": "awertz"}, {"datetaken": "2010-01-30 11:51:13", "license": "3", "title": "all win s here", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4007/4318495240_63a343e078_o.jpg", "secret": "a5423490f0", "media": "photo", "latitude": "0", "id": "4318495240", "tags": "awertz"}, {"datetaken": "2010-01-30 11:52:21", "license": "3", "title": "Rick's American-Chinese Cafe", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2690/4318495210_e05979564f_o.jpg", "secret": "9be998d2c0", "media": "photo", "latitude": "0", "id": "4318495210", "tags": "newyorkstate awertz newyorkstatehv"}, {"datetaken": "2010-01-30 12:34:49", "license": "3", "title": "suburban shangri-la", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4009/4317763117_4d0b879ae0_o.jpg", "secret": "f5a3c9c9f1", "media": "photo", "latitude": "0", "id": "4317763117", "tags": "awertz"}, {"datetaken": "2010-01-30 12:53:08", "license": "3", "title": "vestigal bridge", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2599/4317763069_ce7accf4d9_o.jpg", "secret": "a098e9aa02", "media": "photo", "latitude": "0", "id": "4317763069", "tags": "awertz"}, {"datetaken": "2010-01-30 13:19:58", "license": "3", "title": "Flying A pump", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2761/4318495094_3ec3d5b092_o.jpg", "secret": "657c9f0392", "media": "photo", "latitude": "0", "id": "4318495094", "tags": "awertz"}, {"datetaken": "2010-01-30 13:37:09", "license": "3", "title": "roadside relief", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm3.staticflickr.com/2726/4318495062_9f30bfd991_o.jpg", "secret": "0583ab08da", "media": "photo", "latitude": "0", "id": "4318495062", "tags": "awertz"}, {"datetaken": "2010-01-30 13:51:41", "license": "3", "title": "omen", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4053/4317762923_f534032fc8_o.jpg", "secret": "d9f081c4b4", "media": "photo", "latitude": "0", "id": "4317762923", "tags": "awertz"}, {"datetaken": "2010-01-30 14:00:47", "license": "3", "title": "Gallon Measure (roadside coffee can)", "text": "", "album_id": "72157623318117000", "longitude": "0", "url_o": "https://farm5.staticflickr.com/4037/4318494992_3fa9966749_o.jpg", "secret": "2280e76227", "media": "photo", "latitude": "0", "id": "4318494992", "tags": "awertz"}, {"datetaken": "2004-11-06 16:01:11", "license": "2", "title": "goswells", "text": "", "album_id": "35302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1381973_14970bd21a_o.jpg", "secret": "14970bd21a", "media": "photo", "latitude": "0", "id": "1381973", "tags": "breathingjuice"}, {"datetaken": "2004-11-06 16:01:58", "license": "2", "title": "roll over", "text": "", "album_id": "35302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1382021_6e586aecb3_o.jpg", "secret": "6e586aecb3", "media": "photo", "latitude": "0", "id": "1382021", "tags": "breathingjuice"}, {"datetaken": "2004-11-06 16:10:15", "license": "2", "title": "prawns aus style", "text": "", "album_id": "35302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1382011_394edec77b_o.jpg", "secret": "394edec77b", "media": "photo", "latitude": "0", "id": "1382011", "tags": "breathingjuice"}, {"datetaken": "2004-11-06 17:09:21", "license": "2", "title": "barbie", "text": "", "album_id": "35302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1381962_219e60bd10_o.jpg", "secret": "219e60bd10", "media": "photo", "latitude": "0", "id": "1381962", "tags": "breathingjuice"}, {"datetaken": "2004-11-06 17:09:28", "license": "2", "title": "the fight is on", "text": "", "album_id": "35302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1382040_3f6efa108a_o.jpg", "secret": "3f6efa108a", "media": "photo", "latitude": "0", "id": "1382040", "tags": "breathingjuice"}, {"datetaken": "2004-11-06 17:09:41", "license": "2", "title": "hostess with the mostess", "text": "", "album_id": "35302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1381975_1774e74372_o.jpg", "secret": "1774e74372", "media": "photo", "latitude": "0", "id": "1381975", "tags": "breathingjuice"}, {"datetaken": "2004-11-06 17:13:51", "license": "2", "title": "oysters kilpatrick are noice", "text": "", "album_id": "35302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1381997_9a7b9d5abd_o.jpg", "secret": "9a7b9d5abd", "media": "photo", "latitude": "0", "id": "1381997", "tags": "breathingjuice"}, {"datetaken": "2004-11-06 17:15:04", "license": "2", "title": "try it you might just like it!", "text": "", "album_id": "35302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1382046_891bce45bc_o.jpg", "secret": "891bce45bc", "media": "photo", "latitude": "0", "id": "1382046", "tags": "barbie newcastle oysters paul los"}, {"datetaken": "2004-11-06 17:16:02", "license": "2", "title": "bless", "text": "", "album_id": "35302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1381966_8cfc8c65ee_o.jpg", "secret": "8cfc8c65ee", "media": "photo", "latitude": "0", "id": "1381966", "tags": "breathingjuice"}, {"datetaken": "2004-11-06 17:16:10", "license": "2", "title": "strewth fair dinkum", "text": "", "album_id": "35302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1382030_b34c8f5c47_o.jpg", "secret": "b34c8f5c47", "media": "photo", "latitude": "0", "id": "1382030", "tags": "breathingjuice"}, {"datetaken": "2004-11-07 11:42:23", "license": "2", "title": "leave IT", "text": "", "album_id": "35302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1381977_eeda50bc35_o.jpg", "secret": "eeda50bc35", "media": "photo", "latitude": "0", "id": "1381977", "tags": "breathingjuice"}, {"datetaken": "2004-11-07 11:42:37", "license": "2", "title": "come 'ere", "text": "", "album_id": "35302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1381969_0f067692ee_o.jpg", "secret": "0f067692ee", "media": "photo", "latitude": "0", "id": "1381969", "tags": "breathingjuice"}, {"datetaken": "2004-11-07 11:43:03", "license": "2", "title": "taz the hoon", "text": "", "album_id": "35302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1382038_92d9e5b670_o.jpg", "secret": "92d9e5b670", "media": "photo", "latitude": "0", "id": "1382038", "tags": "breathingjuice"}, {"datetaken": "2004-11-07 11:51:41", "license": "2", "title": "mum & john", "text": "", "album_id": "35302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1381990_d050f245d6_o.jpg", "secret": "d050f245d6", "media": "photo", "latitude": "0", "id": "1381990", "tags": "breathingjuice"}, {"datetaken": "2004-11-07 12:37:30", "license": "2", "title": "feckin awesome", "text": "", "album_id": "35302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1381972_cfb56572e1_o.jpg", "secret": "cfb56572e1", "media": "photo", "latitude": "0", "id": "1381972", "tags": "breathingjuice"}, {"datetaken": "2004-11-07 12:38:16", "license": "2", "title": "you looking at me", "text": "", "album_id": "35302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1382049_e2753011ca_o.jpg", "secret": "e2753011ca", "media": "photo", "latitude": "0", "id": "1382049", "tags": "handgliding merewether"}, {"datetaken": "2004-11-07 18:22:11", "license": "2", "title": "sun set", "text": "", "album_id": "35302", "longitude": "0", "url_o": "https://farm1.staticflickr.com/2/1382032_30e815573b_o.jpg", "secret": "30e815573b", "media": "photo", "latitude": "0", "id": "1382032", "tags": "breathingjuice"}], "info": "SIND v1.0", "albums": [{"description": "Bubba burgers, beer and BBQ make for a great Fourth of July", "title": "Fourth of July 2007", "farm": "2", "date_update": "1301274687", "primary": "694227468", "server": "1125", "date_create": "1183374254", "photos": "15", "secret": "0745b37a62", "owner": "67332546@N00", "vist_label": "4th_of_july", "id": "72157600601428727"}, {"description": "", "title": "WMATA - WDC - 04 July 2007", "farm": "2", "date_update": "1405499691", "primary": "1001024065", "server": "1232", "date_create": "1186184563", "photos": "14", "secret": "a94d3a3421", "owner": "95413346@N00", "vist_label": "4th_of_july", "id": "72157601202851033"}, {"description": "July 4th images from Brandon parade and fireworks.", "title": "Brandon FL 7/4/2006", "farm": "1", "date_update": "1302557802", "primary": "181867214", "server": "47", "date_create": "1152047499", "photos": "23", "secret": "caf9c1bea6", "owner": "21135772@N00", "vist_label": "4th_of_july", "id": "72157594187408667"}, {"description": "Fireworks and friends!", "title": "2006 July 4th", "farm": "1", "date_update": "1388247559", "primary": "213243314", "server": "94", "date_create": "1155399002", "photos": "13", "secret": "3cbe91ad37", "owner": "91177782@N00", "vist_label": "4th_of_july", "id": "72157594234060064"}, {"description": "just a glimpse into the happenings on and around the day to celebrate our National Independence!", "title": "Hometown 4th", "farm": "2", "date_update": "1356221118", "primary": "720284567", "server": "1099", "date_create": "1183597398", "photos": "12", "secret": "473a1402eb", "owner": "84213819@N00", "vist_label": "4th_of_july", "id": "72157600650275265"}, {"description": "", "title": "Fire Truck Rides at the Grange", "farm": "2", "date_update": "1356915586", "primary": "721177400", "server": "1392", "date_create": "1183597652", "photos": "25", "secret": "d319106395", "owner": "64304061@N00", "vist_label": "4th_of_july", "id": "72157600650711694"}, {"description": "", "title": "4th of July Eve Soiree", "farm": "2", "date_update": "1304460144", "primary": "722482102", "server": "1027", "date_create": "1183606587", "photos": "22", "secret": "07916a2a2b", "owner": "52606151@N00", "vist_label": "4th_of_july", "id": "72157600652875158"}, {"description": "", "title": "July 4, 2007", "farm": "2", "date_update": "1323068014", "primary": "723766974", "server": "1262", "date_create": "1183616374", "photos": "18", "secret": "cb014fcefd", "owner": "48889125832@N01", "vist_label": "4th_of_july", "id": "72157600654732083"}, {"description": "", "title": "Albuquerque to Taos", "farm": "1", "date_update": "1304804677", "primary": "234382583", "server": "96", "date_create": "1157418480", "photos": "20", "secret": "8fbf94d9b3", "owner": "95476701@N00", "vist_label": "4th_of_july", "id": "72157594269296716"}, {"description": "", "title": "Fireworks", "farm": "4", "date_update": "1297568206", "primary": "2638459839", "server": "3061", "date_create": "1215269035", "photos": "27", "secret": "fbf8667163", "owner": "14690351@N07", "vist_label": "4th_of_july", "id": "72157605992804699"}, {"description": "Pool Party at Alex's house", "title": "July 4th", "farm": "2", "date_update": "1356407972", "primary": "743462166", "server": "1130", "date_create": "1183768142", "photos": "14", "secret": "0420a52910", "owner": "18875888@N00", "vist_label": "4th_of_july", "id": "72157600691710127"}, {"description": "We went down to the springs for the 4th this year and went to a party with a bunch of old friends. A few people decided they wanted to try the whole Coke and Mentos thing too, so that made it lots of fun! Their house had a great view of the Springs. ", "title": "4th of July 2006", "farm": "1", "date_update": "1356202077", "primary": "184961974", "server": "74", "date_create": "1152390406", "photos": "26", "secret": "476bbd367e", "owner": "88025397@N00", "vist_label": "4th_of_july", "id": "72157594192023605"}, {"description": "2007 Provo Utah's Freedom Festival Parade for Kids on Saturday prior to July 4th. Oscar and Lily had a great time in the parade. They loved it.", "title": "Freedom Festival Kid's Parade", "farm": "2", "date_update": "1356289346", "primary": "754908604", "server": "1258", "date_create": "1183911081", "photos": "15", "secret": "dee483fa8d", "owner": "97803271@N00", "vist_label": "4th_of_july", "id": "72157600715772999"}, {"description": "Camping Smarter at Mt. Townsend and Silver Lake", "title": "Camp Carly III", "farm": "2", "date_update": "1303699043", "primary": "757369989", "server": "1385", "date_create": "1183945137", "photos": "28", "secret": "6d178367c6", "owner": "92735999@N00", "vist_label": "4th_of_july", "id": "72157600723120795"}, {"description": "", "title": "07 - 4th of July Pool Party", "farm": "2", "date_update": "1300662534", "primary": "759595806", "server": "1008", "date_create": "1183959821", "photos": "13", "secret": "007fb9b851", "owner": "59504749@N00", "vist_label": "4th_of_july", "id": "72157600725398448"}, {"description": "", "title": "4th of July 2007", "farm": "2", "date_update": "1347313392", "primary": "813072196", "server": "1331", "date_create": "1184455822", "photos": "25", "secret": "de440c3b55", "owner": "66264555@N00", "vist_label": "4th_of_july", "id": "72157600824581776"}, {"description": "", "title": "Independence Day 2007", "farm": "2", "date_update": "1356226795", "primary": "812625073", "server": "1282", "date_create": "1184459324", "photos": "18", "secret": "7ff031912c", "owner": "14379422@N00", "vist_label": "4th_of_july", "id": "72157600826173639"}, {"description": "Civil war Veterans", "title": "Fawn Creek Cemetery, Montgomery Co., Kansas", "farm": "2", "date_update": "1296172876", "primary": "1193034237", "server": "1114", "date_create": "1187700497", "photos": "16", "secret": "94eec8b62d", "owner": "9167196@N07", "vist_label": "4th_of_july", "id": "72157601588947079"}, {"description": "Arthur, IL for the 4th of July", "title": "4th of July", "farm": "1", "date_update": "1347313392", "primary": "223349860", "server": "91", "date_create": "1156386104", "photos": "17", "secret": "fb752f85a4", "owner": "66264555@N00", "vist_label": "4th_of_july", "id": "72157594249154972"}, {"description": "", "title": "Dan McGeorge (Men at Work - Capper Carrollsburg)", "farm": "1", "date_update": "1376804965", "primary": "199367649", "server": "62", "date_create": "1153980543", "photos": "12", "secret": "e16ba65706", "owner": "95413346@N00", "vist_label": "4th_of_july", "id": "72157594213492353"}, {"description": "4th of July party at Avery's place on Lake Union", "title": "Imperialism Party 2007", "farm": "2", "date_update": "1300838706", "primary": "929011071", "server": "1342", "date_create": "1185642017", "photos": "11", "secret": "4f0db3bc62", "owner": "8614238@N03", "vist_label": "4th_of_july", "id": "72157601060548201"}, {"description": "", "title": "Deep Impact at UMD", "farm": "1", "date_update": "1297752867", "primary": "23608047", "server": "18", "date_create": "611801", "photos": "18", "secret": "8b6b417208", "owner": "56708806@N00", "vist_label": "4th_of_july", "id": "611801"}, {"description": "", "title": "Fireworks, Turner Field, July 4th 2005", "farm": "1", "date_update": "1356145428", "primary": "23764667", "server": "8", "date_create": "545050", "photos": "13", "secret": "d340a3928d", "owner": "41894166111@N01", "vist_label": "4th_of_july", "id": "545050"}, {"description": "4 July Celebrations, Boston & Cambridge, Massachusetts", "title": "4 July", "farm": "1", "date_update": "1356186808", "primary": "23938448", "server": "18", "date_create": "548541", "photos": "20", "secret": "b5d40e54f9", "owner": "35034354137@N01", "vist_label": "4th_of_july", "id": "548541"}, {"description": "07.04.05\nKris and I went down to Coney Island for 4th of July to try to catch the Nathan's Hot Dog Eating Contest, as well as to just get out to Coney Island because summer isn't summer without it.", "title": "Coney Island on 4th of July", "farm": "1", "date_update": "1421626716", "primary": "23949853", "server": "18", "date_create": "548676", "photos": "20", "secret": "e600ddbd80", "owner": "30952578@N00", "vist_label": "4th_of_july", "id": "548676"}, {"description": "", "title": "July 4th, Scout Niblett, Potluck, DoS, Etc.", "farm": "1", "date_update": "1356309674", "primary": "23991274", "server": "18", "date_create": "549537", "photos": "16", "secret": "066ecb7a5c", "owner": "49106234@N00", "vist_label": "4th_of_july", "id": "549537"}, {"description": "", "title": "2005 4th of July Fireworks", "farm": "1", "date_update": "1305323911", "primary": "45997713", "server": "26", "date_create": "1005013", "photos": "14", "secret": "564c8f1ed3", "owner": "40686307@N00", "vist_label": "4th_of_july", "id": "1005013"}, {"description": "", "title": "4th July, Mt Tamalpais", "farm": "1", "date_update": "1345067193", "primary": "54918694", "server": "28", "date_create": "1130016017", "photos": "11", "secret": "440e02b5a7", "owner": "71269553@N00", "vist_label": "4th_of_july", "id": "1190991"}, {"description": "Consequently one of the best & worst days of my life. ", "title": "Niagara Falls: July 4th, 2005", "farm": "1", "date_update": "1356916213", "primary": "38959592", "server": "31", "date_create": "852521", "photos": "32", "secret": "a55520de68", "owner": "20544000@N00", "vist_label": "4th_of_july", "id": "852521"}, {"description": "", "title": "4th Of July Weekend, 2006", "farm": "1", "date_update": "1321132649", "primary": "180756036", "server": "52", "date_create": "1151943505", "photos": "24", "secret": "0d728f581a", "owner": "48600108710@N01", "vist_label": "4th_of_july", "id": "72157594185853788"}, {"description": "", "title": "July Party at the Farm", "farm": "1", "date_update": "1297705561", "primary": "181083921", "server": "63", "date_create": "1151966324", "photos": "23", "secret": "806ccfc332", "owner": "83133577@N00", "vist_label": "4th_of_july", "id": "72157594186295029"}, {"description": "", "title": "4th of July - 2006", "farm": "1", "date_update": "1356203281", "primary": "181273625", "server": "45", "date_create": "1151987967", "photos": "25", "secret": "1cd3ed46bd", "owner": "17566414@N00", "vist_label": "4th_of_july", "id": "72157594186590538"}, {"description": "colorful sparkles, hot dogs, and the like. cross reference over here", "title": "4th of de Julio", "farm": "1", "date_update": "1409791126", "primary": "182755838", "server": "77", "date_create": "1152137412", "photos": "30", "secret": "e2d1c925a3", "owner": "27162342@N00", "vist_label": "4th_of_july", "id": "72157594188721965"}, {"description": "Fireworks from Nicollet Island, Minneapolis, MN 7.4.2006", "title": "Minneapolis Fireworks, July 4, 2006", "farm": "1", "date_update": "1405467880", "primary": "183048839", "server": "69", "date_create": "1152158254", "photos": "27", "secret": "41de78f33e", "owner": "62978610@N00", "vist_label": "4th_of_july", "id": "72157594189076963"}, {"description": "", "title": "1999 - 07/04 - 4th of July", "farm": "1", "date_update": "1356266210", "primary": "407245649", "server": "181", "date_create": "1172791580", "photos": "14", "secret": "cbb38b15aa", "owner": "89393797@N00", "vist_label": "4th_of_july", "id": "72157594564504027"}, {"description": "", "title": "Weidner Burial Lot: Oley, PA", "farm": "4", "date_update": "1343815095", "primary": "2384235925", "server": "3027", "date_create": "1207215809", "photos": "10", "secret": "7a270ff112", "owner": "7984969@N04", "vist_label": "4th_of_july", "id": "72157604364629870"}, {"description": "A band founded in 1995 on the premise of \u201cwhy not, it might just work,\u201d The Crawdaddies infuse Cajun, Zydeco, Blues, Ska, Roots, Rock and Reggae into an incomparable, groove-laden sound that is unquestionably its own.\n \n \nClick the photo above for a larger image. The Crawdaddies are, Kraig Greff, accordion, piano; Chris Huntington, guitar, vocals; Kenny Jones, vocals, guitar, washboard; Bob Hill, drums, vocals and Chris Sellman, bass, vocals. Each road-seasoned member hosts an impressive and diverse musical / performance resume, most notably, Greff who toured with Della Reese, Barry White, Joe Williams and Diana Ross. \n \nConsummate headliners, the eclectic, good-time spirit of their set has allowed The Crawdaddies to share the stage with a wide range of artists including: Etta James, Charlie Daniels, Buddy Guy, The Old 97s, The Radiators, Jimmy Cliff, Carbon Leaf, CJ Chenier, John Eddie, Joan Jett, The Spinners, Kid Creole and the Coconuts, Terrance Simien, G. E. Smith, Marcia Ball, Marshall Crenshaw, The Young Dubliners, Buckwheat Zydeco, and Reel Big Fish. \n\nThe band continues to tour the USA and is a regular fixture on the national college, festival and theater circuits. In 2005 The Crawdaddies had a great live performance recorded at the famous WC Handy Blues Festival in Kentucky for the popular PBS music program \u201cJubilee\u201d and this show can now be seen nationally in most PBS markets. The band has been selected to showcase mainstage at three NACA (National Association of Campus Activities) conferences and has showcased the prestigious NACA national convention in Nashville, TN. In 2006 AOL Citiguide chose The Crawdaddies as \u201ceditor\u2019s pick\u201d for best entertainment in Baltimore, MD. \n\nThe Crawdaddies\u2019 three CDs, "Keep Lookin\u2019 Up," "Accordions Are Cool" and "Spice it Up," are in regular rotation on college radio, Internet radio and broad-format \u201ctriple A\u201d radio stations world wide. The Crawdaddies' song \u201cGimme Some\u201d can now be heard in over 13 million homes on the popular NESN (New England Sports Network) program \u201cPort-O-Call\u201d. In July, 2007, the song "Gimme Some" also landed in the top 20 of the Unisong International Song Contest Category: AAA / Americana. The music video for the song "The Life of Riley" won an award at the 2007 BVA Film Festival. \nThe Crawdaddies' most recent release "Keep Lookin' Up" (Louddust Recordings) was nominated for a Wammie award by the Washington Area Music Association and CD "Spice it Up" won awards in two categories at the 2006 Just Plain Folks Music Awards, Santa Anna, California!\n\nFor additional information or to contact The Crawdaddies, call 410-903-8634 or visit www.thecrawdaddies.com\n \n", "title": "Crawdaddies", "farm": "4", "date_update": "1396642674", "primary": "2591096189", "server": "3253", "date_create": "1213843680", "photos": "27", "secret": "f0d3f6dd51", "owner": "7791881@N04", "vist_label": "4th_of_july", "id": "72157605694985211"}, {"description": "Interior photos, architectural details. June 2008.", "title": "Charleston Interiors", "farm": "4", "date_update": "1417293041", "primary": "2635251087", "server": "3192", "date_create": "1219462354", "photos": "13", "secret": "24e6b015ce", "owner": "21957530@N07", "vist_label": "4th_of_july", "id": "72157606896569656"}, {"description": "Clipper City Brewing staff at Camden Yards. Hugh Sisson, owner of Clipper City Brewing Company threw out the ceremonial first pitch, Wednesday 2 July 2008. The Baltimore Orioles defeated the Kansas City Royals 5-2.\n\nPhotos and story by www.yoursforgoodfermentables.com/2008/07/first-pitch.html.", "title": "2008.07.02_Clipper City goes to the ballpark", "farm": "4", "date_update": "1431884903", "primary": "2633048429", "server": "3136", "date_create": "1215088093", "photos": "23", "secret": "54899a3277", "owner": "75714412@N00", "vist_label": "4th_of_july", "id": "72157605952704278"}, {"description": "Celebrating the 4th of July Independence Day Holiday with fireworks", "title": "4th of July - Independence Day 2008 Fireworks", "farm": "4", "date_update": "1363049243", "primary": "2636315469", "server": "3157", "date_create": "1215195297", "photos": "19", "secret": "8624c47a44", "owner": "26788153@N00", "vist_label": "4th_of_july", "id": "72157605978703055"}, {"description": "Avondale Pattillo UMC at the 2008 July 4th parade, Avondale Estates, Georgia.", "title": "July 4th parade 2008", "farm": "4", "date_update": "1304657735", "primary": "2637493846", "server": "3048", "date_create": "1215204717", "photos": "14", "secret": "c61bb59a0f", "owner": "18163609@N00", "vist_label": "4th_of_july", "id": "72157605976016098"}, {"description": "Village of Bolingbrook - All American Celebration - Bolingbrook Golf Course", "title": "4th of July - 2008", "farm": "4", "date_update": "1416198120", "primary": "2638311392", "server": "3274", "date_create": "1215230956", "photos": "26", "secret": "16da330592", "owner": "8856461@N08", "vist_label": "4th_of_july", "id": "72157605985973667"}, {"description": "", "title": "Fourth of July 2008", "farm": "4", "date_update": "1302192379", "primary": "2638589344", "server": "3276", "date_create": "1215237726", "photos": "22", "secret": "487e229ce3", "owner": "83204829@N00", "vist_label": "4th_of_july", "id": "72157605987288353"}, {"description": "Known by the locals as the Del Mar Fair.", "title": "San Diego County Fair 4th of July", "farm": "4", "date_update": "1356229828", "primary": "2637709751", "server": "3089", "date_create": "1215239244", "photos": "27", "secret": "82e8a78224", "owner": "76095793@N00", "vist_label": "4th_of_july", "id": "72157605987531003"}, {"description": "After trying to charge me $20 to backcountry camp in Rocky Mountain National Park, I decided to camp for free (uh...duh!) in the nearby Roosevelt National Forest. Approximately 10 miles from Estes Park, this region doesn't have the same high peaks, but the scenery is just as nice. And at just over 10,500 feet, the temperatures were chily enough at around 20 degrees overnight while camping.", "title": "Roosevelt National Forest - Comanche Peaks Wilderness", "farm": "1", "date_update": "1307730481", "primary": "49262588", "server": "25", "date_create": "1069648", "photos": "20", "secret": "48c3fc5671", "owner": "27825999@N00", "vist_label": "MISC", "id": "1069648"}, {"description": "", "title": "Wanadoo Christmas party 2005", "farm": "1", "date_update": "1379431233", "primary": "90603463", "server": "33", "date_create": "1138100346", "photos": "10", "secret": "8034b00fb4", "owner": "36574363@N00", "vist_label": "MISC", "id": "72057594053238890"}, {"description": "My camera phone doesn't take the best pictures, but unfortunately I don't always have my real camera handy. I found all this pics after finally cleaning out my camera phone one weekend.", "title": "Kamera Fone", "farm": "1", "date_update": "1369271692", "primary": "111477495", "server": "43", "date_create": "1142192533", "photos": "11", "secret": "dc5e355409", "owner": "73007102@N00", "vist_label": "MISC", "id": "72057594080562623"}, {"description": "Shots taken from a few sessions of the archdiocese's summer ministry to young adults.", "title": "Theology on Tap '05", "farm": "1", "date_update": "1338316688", "primary": "40505647", "server": "23", "date_create": "1144500038", "photos": "13", "secret": "d261532e99", "owner": "44124275750@N01", "vist_label": "MISC", "id": "72057594101742181"}, {"description": "Macmo's birthday + Cinco de Mayo = Best party ever!", "title": "Cinco de Macmo", "farm": "1", "date_update": "1305588516", "primary": "141082368", "server": "45", "date_create": "1146873420", "photos": "11", "secret": "0dce0f4a95", "owner": "83636630@N00", "vist_label": "MISC", "id": "72057594126576216"}, {"description": "A trip to Canobie Lake Park in New Hampshire with Rob, Vanessa, Keri, and Jeremy on May 28, 2006.", "title": "Canobie Lake Park", "farm": "1", "date_update": "1297502525", "primary": "157957577", "server": "75", "date_create": "1149192011", "photos": "15", "secret": "b8b7aa6304", "owner": "88423371@N00", "vist_label": "MISC", "id": "72157594152362026"}, {"description": "", "title": "2006 Blueberry Festival", "farm": "1", "date_update": "1357099283", "primary": "234517981", "server": "89", "date_create": "1157423461", "photos": "13", "secret": "67d06846e4", "owner": "55569174@N00", "vist_label": "MISC", "id": "72157594269423279"}, {"description": "", "title": "Katie's 5th Birthday Party", "farm": "1", "date_update": "1383669134", "primary": "369214097", "server": "162", "date_create": "1169758228", "photos": "16", "secret": "aa51465356", "owner": "43952263@N00", "vist_label": "MISC", "id": "72157594499779961"}, {"description": "", "title": "Jake in Montr\u00e9al", "farm": "1", "date_update": "1358881451", "primary": "165686585", "server": "59", "date_create": "1176354742", "photos": "18", "secret": "2e9a7eb16f", "owner": "50642338@N00", "vist_label": "MISC", "id": "72157600068118513"}, {"description": "What a fun evening hanging out in Huntingdon Beach!", "title": "Sushi Night April 2007", "farm": "1", "date_update": "1325471576", "primary": "477206819", "server": "226", "date_create": "1177875641", "photos": "12", "secret": "60469f0a1b", "owner": "77206904@N00", "vist_label": "MISC", "id": "72157600156777650"}, {"description": "Yup, it's pix of John 'n Pam's trip to Kauai.", "title": "John ' n Pam - Kauai '07", "farm": "1", "date_update": "1306455415", "primary": "479151792", "server": "175", "date_create": "1177993635", "photos": "16", "secret": "9d8b021040", "owner": "8052252@N07", "vist_label": "MISC", "id": "72157600162822909"}, {"description": "Dada and Dadi convinced us that it was possible to have an enjoyable walk in Eb\u00e8ne and we confirm that this is true...", "title": "Ebene Walk", "farm": "1", "date_update": "1356289759", "primary": "514780186", "server": "213", "date_create": "1180196459", "photos": "16", "secret": "004ea284a9", "owner": "46981478@N00", "vist_label": "MISC", "id": "72157600268882910"}, {"description": "BHC club walk to Carrauntoohil during September 2002.", "title": "Carrauntoohil walk - Sept 2002", "farm": "2", "date_update": "1349131135", "primary": "565970800", "server": "1391", "date_create": "1182202083", "photos": "17", "secret": "abc8a0a838", "owner": "8799006@N03", "vist_label": "MISC", "id": "72157600393566786"}, {"description": "Reason Magazine hosted a Happy Hour at the 18th Street Lounge to celebrate their July issue.", "title": "Reason Happy Hour in June '07", "farm": "2", "date_update": "1315152205", "primary": "573135413", "server": "1252", "date_create": "1182310441", "photos": "19", "secret": "051c4923ba", "owner": "21108933@N00", "vist_label": "MISC", "id": "72157600405640069"}, {"description": "", "title": "Gulf Coast 2007 trip", "farm": "2", "date_update": "1356840922", "primary": "891079464", "server": "1280", "date_create": "1185544856", "photos": "13", "secret": "0bb53f859c", "owner": "11878866@N00", "vist_label": "MISC", "id": "72157601037036892"}, {"description": "Happy Christmas, everyone! We spend a quiet day with family and friends in the flat at Observatory Gardens.", "title": "London 2005 Day 4: 12/25/05", "farm": "2", "date_update": "1300844238", "primary": "1019589679", "server": "1219", "date_create": "1186340607", "photos": "15", "secret": "93de0941d2", "owner": "76283046@N00", "vist_label": "MISC", "id": "72157601239865861"}, {"description": "Pitt vs Eastern Michigan State", "title": "Alumni Band Day 2007", "farm": "2", "date_update": "1356157481", "primary": "1384074398", "server": "1183", "date_create": "1189818765", "photos": "14", "secret": "44c035e174", "owner": "8374861@N06", "vist_label": "MISC", "id": "72157602020431905"}, {"description": "", "title": "Holiday Letter 2007", "farm": "3", "date_update": "1306271097", "primary": "2139319372", "server": "2092", "date_create": "1198701159", "photos": "13", "secret": "f08a12f1c5", "owner": "8213419@N05", "vist_label": "MISC", "id": "72157603549502790"}, {"description": "Christmas morning 2007 with Rain and Eden.", "title": "Christmas 2007", "farm": "4", "date_update": "1305627488", "primary": "2287623946", "server": "3176", "date_create": "1203823791", "photos": "12", "secret": "e0c53b23e0", "owner": "95575138@N00", "vist_label": "MISC", "id": "72157603974201983"}, {"description": "I went to IRAN for 2 weeks in March. I visited Tehran, Isfahan, Persepolis, and Shiraz. Although I was alone and/or without a camera for much of my trip, I'm sure there is enough here to bore you. \n\nNowruz - the Persian New Year - is celebrated in IRAN beginning on March 21st, with celebrations lasting for weeks. It is the most significant holiday in Iran (equivalent to Christmas in Canada) and has been celebrated in Persia in one form or another for almost 3000 years. It has a profound impact on the people, and therefore would have a profound impact on my trip. ", "title": "Tehran, IRAN (part 1)", "farm": "4", "date_update": "1300513762", "primary": "2388573710", "server": "3257", "date_create": "1207346604", "photos": "15", "secret": "d1079dc29a", "owner": "72493467@N00", "vist_label": "MISC", "id": "72157604389344705"}, {"description": "If you have ever watched the Discovery Channel or Animal Planet you have probably seen shots of brown bears feasting on salmon. We travled to that most photographed place and it was beautiful!", "title": "Brooks Falls", "farm": "4", "date_update": "1311563393", "primary": "2612631014", "server": "3175", "date_create": "1214455761", "photos": "15", "secret": "c65c56f535", "owner": "20780037@N04", "vist_label": "MISC", "id": "72157605819211940"}, {"description": "", "title": "Rocks and Shoals", "farm": "1", "date_update": "1303320570", "primary": "201868813", "server": "61", "date_create": "1217207340", "photos": "14", "secret": "b1c96a9dbd", "owner": "55814792@N00", "vist_label": "MISC", "id": "72157606406078666"}, {"description": "", "title": "South Haven at sunset on Labor Day", "farm": "4", "date_update": "1435632175", "primary": "2825231721", "server": "3114", "date_create": "1220473214", "photos": "19", "secret": "6b17d4279f", "owner": "98227537@N00", "vist_label": "MISC", "id": "72157607096603441"}, {"description": "Watching President Obama's Inauguration in Washington, DC on the National Mall.", "title": "President Obama Inauguration 2009", "farm": "4", "date_update": "1361630773", "primary": "3213825438", "server": "3096", "date_create": "1232486140", "photos": "20", "secret": "28ec36f3f8", "owner": "91317579@N00", "vist_label": "MISC", "id": "72157612752002335"}, {"description": "", "title": "20090215 Corbett Cleanup", "farm": "4", "date_update": "1321761542", "primary": "3283708938", "server": "3615", "date_create": "1234756711", "photos": "20", "secret": "7f25a0631a", "owner": "10353707@N02", "vist_label": "MISC", "id": "72157613872112100"}, {"description": "Taking a walk around the Jack Pine Trail", "title": "Snow Day", "farm": "4", "date_update": "1296919632", "primary": "3286105569", "server": "3349", "date_create": "1234843585", "photos": "16", "secret": "e458fc03ac", "owner": "98059401@N00", "vist_label": "MISC", "id": "72157613984385744"}, {"description": "", "title": "Circuit Assembly 4/18/09", "farm": "4", "date_update": "1356165833", "primary": "3454594754", "server": "3571", "date_create": "1240109632", "photos": "20", "secret": "38fa5b0924", "owner": "35997630@N05", "vist_label": "MISC", "id": "72157616930463907"}, {"description": "", "title": "Glenbrook day trip - April 2009", "farm": "4", "date_update": "1304856148", "primary": "3475727519", "server": "3369", "date_create": "1240839008", "photos": "16", "secret": "42ca71cf46", "owner": "95579708@N00", "vist_label": "MISC", "id": "72157617295647509"}, {"description": "", "title": "Memorial Day Weekend", "farm": "4", "date_update": "1389328310", "primary": "3564292529", "server": "3580", "date_create": "1243299036", "photos": "16", "secret": "30ecb3f5be", "owner": "95922884@N00", "vist_label": "MISC", "id": "72157618713479185"}, {"description": "recording at peppermint park studios in hannover, show in wurzburg, show in nurnburg. then travel home from dresden.", "title": "mahjongg tour 09", "farm": "4", "date_update": "1356209326", "primary": "3642670856", "server": "3312", "date_create": "1245497716", "photos": "11", "secret": "6c3eba044d", "owner": "85222832@N00", "vist_label": "MISC", "id": "72157619898337387"}, {"description": "", "title": "Evening Seminary Walks", "farm": "4", "date_update": "1356154820", "primary": "3718775593", "server": "3519", "date_create": "1247544922", "photos": "11", "secret": "d8f28070db", "owner": "27734999@N03", "vist_label": "MISC", "id": "72157621420245574"}, {"description": "This happened on August 1st and 2nd, 2009 at East Park in Hull. The photos in this set are from the first day (I didn't go to the second).", "title": "Veterans' Weekend 2009", "farm": "3", "date_update": "1356140076", "primary": "3786933954", "server": "2450", "date_create": "1249340301", "photos": "19", "secret": "dd1d40db0b", "owner": "46124960@N00", "vist_label": "MISC", "id": "72157621937352502"}, {"description": "May 2009", "title": "San Francisco Giants", "farm": "3", "date_update": "1312029497", "primary": "3896379605", "server": "2622", "date_create": "1252342840", "photos": "18", "secret": "d90bc81500", "owner": "23936403@N06", "vist_label": "MISC", "id": "72157622163497425"}, {"description": "I took Monday afternoon and Tuesday morning off from work and biked myself out to Champoeg State Park to sleep in the woods for a night. 72 miles roundtrip.", "title": "Champoeg Overnight Bike Trip", "farm": "4", "date_update": "1356392447", "primary": "3973876318", "server": "3455", "date_create": "1254461206", "photos": "11", "secret": "ed7951f2fe", "owner": "35583255@N00", "vist_label": "MISC", "id": "72157622498721594"}, {"description": "Around Koh Samui 2003 when I walk around the coast in 5 days and crossed the mountains north to South. Plus pictures of Bell", "title": "Koh Samui ", "farm": "3", "date_update": "1304627772", "primary": "4149083193", "server": "2800", "date_create": "1259656801", "photos": "16", "secret": "2dc36283c7", "owner": "28433263@N03", "vist_label": "MISC", "id": "72157622911625354"}, {"description": "Dune buggy I'm selling. Based on a shortened vw bug pan. 90-95% complete. and has most of the parts needed to complete it included. \n*pics with the diamond plate panels on and seats in are to show you the look of it, they aren't mounted currently. There are some mounting holes drilled already tho.\n\nAndrew\nliquidman@gmail.com\n772-643-2253", "title": "Sand Rail (for sale)", "farm": "3", "date_update": "1296185055", "primary": "4220398412", "server": "2740", "date_create": "1261954473", "photos": "17", "secret": "7bc7e0de87", "owner": "86533684@N00", "vist_label": "MISC", "id": "72157623082288698"}, {"description": "", "title": "progressive kotg 10", "farm": "3", "date_update": "1304639537", "primary": "4315384260", "server": "2715", "date_create": "1264825946", "photos": "16", "secret": "d1057f6130", "owner": "39074259@N08", "vist_label": "MISC", "id": "72157623186393217"}, {"description": "", "title": "2010 Bryan Tourney", "farm": "5", "date_update": "1336912828", "primary": "4377792275", "server": "4016", "date_create": "1266813310", "photos": "18", "secret": "014d42c261", "owner": "37083797@N00", "vist_label": "MISC", "id": "72157623359162097"}, {"description": "driving the old tractor trailer rig around the farm.", "title": "1968 Ford F750", "farm": "3", "date_update": "1368244661", "primary": "4472103024", "server": "2704", "date_create": "1269828098", "photos": "17", "secret": "1b6be81494", "owner": "46255555@N00", "vist_label": "MISC", "id": "72157623599428613"}, {"description": "", "title": "Big Tree Park August 2010", "farm": "5", "date_update": "1308362018", "primary": "4893643895", "server": "4118", "date_create": "1281885535", "photos": "15", "secret": "4da1e3e04f", "owner": "24949973@N06", "vist_label": "MISC", "id": "72157624605142767"}, {"description": "yeah last wednesday (28.7.2010) after 9 days long journey, he's finally arrived : D", "title": "My Tom Kaulitz doll", "farm": "5", "date_update": "1305199199", "primary": "4846585236", "server": "4147", "date_create": "1280588329", "photos": "11", "secret": "9fb22a5bfe", "owner": "52562727@N05", "vist_label": "MISC", "id": "72157624622215754"}, {"description": "", "title": "Hua Hin ", "farm": "5", "date_update": "1305103878", "primary": "5019105693", "server": "4133", "date_create": "1285307088", "photos": "17", "secret": "fd4db76ff2", "owner": "53962624@N05", "vist_label": "MISC", "id": "72157624897656365"}, {"description": "", "title": "Fiesta Musical", "farm": "5", "date_update": "1327627910", "primary": "5012962957", "server": "4086", "date_create": "1285203243", "photos": "14", "secret": "aace9e8f6d", "owner": "12743646@N08", "vist_label": "MISC", "id": "72157625014375302"}, {"description": "Voyageur Provincial Park is about an hour east of Orl\u00e9ans, just past Hawkesbury near the Ontario-Qu\u00e9bec border. Despite it being so close, however, we didn't like it very much. We're used to much more "remote" camping than this.", "title": "Camping at Voyageur (July 30-Aug 2, 2010)", "farm": "5", "date_update": "1299050162", "primary": "5088453626", "server": "4110", "date_create": "1287286952", "photos": "18", "secret": "19c6f32c9f", "owner": "92438061@N00", "vist_label": "MISC", "id": "72157625054604693"}, {"description": "", "title": "Nate's 30th Birthday weekend.", "farm": "2", "date_update": "1299044665", "primary": "5159494260", "server": "1227", "date_create": "1289252324", "photos": "15", "secret": "5f436dd2da", "owner": "29164588@N04", "vist_label": "MISC", "id": "72157625217544357"}, {"description": "A walk around the dam with Mom", "title": "Greasbrough, Wentworth Park and Greasbrough Dam", "farm": "6", "date_update": "1299620959", "primary": "5509896733", "server": "5260", "date_create": "1299620724", "photos": "18", "secret": "66e17f19b9", "owner": "82345111@N00", "vist_label": "MISC", "id": "72157626225931816"}, {"description": "We went to a Forage SF Dinner in San Francisco. This one featured lots of foraged ingredients that can be found around the San Francisco Bay area in the spring. Yum!\n\nWild Caught Local Caviar Blinis\n\nSlow Roasted Wild Boar \nPicked Abalone Mushrooms\nGreen Garlic Herb Pistou\n\nWild Nettle Soup\nCowgirl Creme Fraiche\nWild Onion\n\nLocal Wild Caught Night Smelt\nWild Onion Aioli\n\nBlack Trumpet Mushroom Braised Rabbit\nOven Baked New Potatoes\n\nWild Caught Local Halibut\nFiddleheads\nSriracha Baked Polenta\n\nSalad of Miners Lettuce, Wild Raddish Flowers, and Roasted Beets\n\nGoat Cheese Trifle\nWild Fennel Pollen\nWild Hucklebery Compote", "title": "Forage SF Dinner", "farm": "6", "date_update": "1344233272", "primary": "5629428764", "server": "5107", "date_create": "1303082185", "photos": "13", "secret": "7d6e2108e5", "owner": "83052216@N00", "vist_label": "MISC", "id": "72157626395315207"}, {"description": "This was the combined total of service given to those receiving a medal.\n\nDad was too ill to attend, lying immobile in a home. Mum (in blue) received the medal on his behalf.", "title": "Four Centuries Of Service. Cross Manufacturing Celebrating 50 Years Long Service", "farm": "6", "date_update": "1435958528", "primary": "5590008911", "server": "5110", "date_create": "1302026668", "photos": "19", "secret": "548d779319", "owner": "39249944@N04", "vist_label": "MISC", "id": "72157626435910098"}, {"description": "Dinger's Birthday!", "title": "Rivercats - July 17, 2011", "farm": "7", "date_update": "1310963249", "primary": "5949364930", "server": "6147", "date_create": "1310962206", "photos": "20", "secret": "2533ab23f9", "owner": "11567854@N00", "vist_label": "MISC", "id": "72157627095995795"}, {"description": "", "title": "Chicago, 2011", "farm": "7", "date_update": "1397925199", "primary": "5991117344", "server": "6146", "date_create": "1312044494", "photos": "11", "secret": "4ba79bc993", "owner": "49859529@N02", "vist_label": "MISC", "id": "72157627315889932"}, {"description": "I walked from the South side of the Golden Gate, as close to the coast as I could, down along the Great Highway. I had planned to go all the way to the zoo, but I gave up when I could catch the N line at Judah.\nAugust 22, 2011", "title": "Hiking the Pacific Coast.", "farm": "7", "date_update": "1335672390", "primary": "6075631914", "server": "6068", "date_create": "1314159798", "photos": "18", "secret": "547ceb14d2", "owner": "36411430@N03", "vist_label": "MISC", "id": "72157627505772422"}, {"description": "", "title": "I zoologisk have med Christina, Lasse & Frede", "farm": "7", "date_update": "1356889579", "primary": "6383524351", "server": "6219", "date_create": "1321976630", "photos": "15", "secret": "3bfa3679ba", "owner": "21210835@N04", "vist_label": "MISC", "id": "72157628097425285"}, {"description": "A weekend in Boxted away with friends to celebrate New Year's Eve 2011.", "title": "NYE 2011-12", "farm": "8", "date_update": "1356178722", "primary": "6611594571", "server": "7034", "date_create": "1325413768", "photos": "17", "secret": "9d188a6479", "owner": "56553246@N00", "vist_label": "MISC", "id": "72157628661122851"}, {"description": "Beautiful beach pictures off the east coast of Mexico.", "title": "Mexico - beach", "farm": "8", "date_update": "1336592166", "primary": "7165669812", "server": "7087", "date_create": "1336592160", "photos": "16", "secret": "9fd7d84164", "owner": "78264667@N08", "vist_label": "MISC", "id": "72157629655017828"}, {"description": "Region 3 Championship Day 4", "title": "Region 3 Championship Day 4", "farm": "9", "date_update": "1342325149", "primary": "7572199252", "server": "8009", "date_create": "1342324271", "photos": "17", "secret": "7cc24281d3", "owner": "28429325@N03", "vist_label": "MISC", "id": "72157630580346866"}, {"description": "", "title": "old photos", "farm": "1", "date_update": "1423926996", "primary": "323150309", "server": "133", "date_create": "1349622491", "photos": "19", "secret": "e0cc1a07ff", "owner": "27152235@N00", "vist_label": "MISC", "id": "72157631712541139"}, {"description": "Christmas Day, Tuileries, Christmas Market", "title": "Day 10", "farm": "9", "date_update": "1358537289", "primary": "8365300691", "server": "8476", "date_create": "1358537286", "photos": "11", "secret": "420b018b60", "owner": "28601691@N00", "vist_label": "MISC", "id": "72157632550793835"}, {"description": "Jerry Garcia Amphitheater / McLaren Park\n45 John F. Shelley Drive \nExcelsior District - San Francisco, CA 94112", "title": "Jerry Day 2012", "farm": "8", "date_update": "1371360401", "primary": "7720956560", "server": "7262", "date_create": "1371356707", "photos": "19", "secret": "0624979aae", "owner": "59698703@N05", "vist_label": "MISC", "id": "72157634147267999"}, {"description": "", "title": "Tearoom Photos", "farm": "8", "date_update": "1384253591", "primary": "10817183294", "server": "7450", "date_create": "1384253577", "photos": "8", "secret": "7b7d1b7646", "owner": "108459336@N06", "vist_label": "MISC", "id": "72157637589780155"}, {"description": "For his birthday this year, Tavi decided he wanted to celebrate at his favorite Seattle museum, MOHAI (Museum of History And Industry). I was stoked because it's a genuinely awesome museum, so the kids could run around having fun while the adults sauntered and soaked up Seattle historical information. \n\nThere were 6 kids and about 15 adults, and I'm happy to say that NO ONE cried all day, which is pretty much a major accomplishment for a 4 year old's birthday.", "title": "Tavi's 4th Birthday", "farm": "3", "date_update": "1385351406", "primary": "11042248234", "server": "2834", "date_create": "1385351404", "photos": "16", "secret": "3b4896756f", "owner": "48889089289@N01", "vist_label": "MISC", "id": "72157638030736484"}, {"description": "Novoro\u010dn\u00ed oh\u0148ostroj v Praze.", "title": "Oh\u0148ostroj 31.12.2006", "farm": "1", "date_update": "1305593864", "primary": "341281360", "server": "161", "date_create": "1167686154", "photos": "27", "secret": "841ed44784", "owner": "24304717@N00", "vist_label": "amusement_park", "id": "72157594452428108"}, {"description": "I find them strangely beautiful", "title": "Tilt-Ups of Silicon Valley", "farm": "1", "date_update": "1357158509", "primary": "341573101", "server": "141", "date_create": "1167696854", "photos": "15", "secret": "6084941d6e", "owner": "60449310@N00", "vist_label": "amusement_park", "id": "72157594452834832"}, {"description": "Fireworks with friends in Amsterdam", "title": "New Year's Eve 2010", "farm": "5", "date_update": "1356166708", "primary": "4232882823", "server": "4004", "date_create": "1262350610", "photos": "24", "secret": "d6afa056cb", "owner": "84428807@N00", "vist_label": "amusement_park", "id": "72157622988158689"}, {"description": "", "title": "warszafka p\u0142onie", "farm": "5", "date_update": "1360833081", "primary": "4233433479", "server": "4061", "date_create": "1262365812", "photos": "17", "secret": "cf0a69f54b", "owner": "9532859@N02", "vist_label": "amusement_park", "id": "72157622989404053"}, {"description": "January 1, 2010. 41 degrees air, 45 degrees water. Nina and Joel go for a swim.\n\nWe are recovering nicely.", "title": "2010 Coney Island Polar Bear Swim", "farm": "3", "date_update": "1377459534", "primary": "4235717626", "server": "2674", "date_create": "1262396204", "photos": "24", "secret": "67a0988afd", "owner": "19481970@N00", "vist_label": "amusement_park", "id": "72157622992647403"}, {"description": "", "title": "Doodle Street, Chongqing, China", "farm": "8", "date_update": "1385908793", "primary": "6613013833", "server": "7148", "date_create": "1325434921", "photos": "28", "secret": "2cfd2f2382", "owner": "41134793@N05", "vist_label": "amusement_park", "id": "72157628664816691"}, {"description": "", "title": "New Year 2011/12", "farm": "8", "date_update": "1393777944", "primary": "6613765525", "server": "7015", "date_create": "1325441314", "photos": "15", "secret": "85c8f3ed8e", "owner": "42385801@N00", "vist_label": "amusement_park", "id": "72157628666284151"}, {"description": "", "title": "\u9ad8\u96c4", "farm": "5", "date_update": "1298138580", "primary": "5137208587", "server": "4152", "date_create": "1288651437", "photos": "26", "secret": "ed803d2168", "owner": "55304206@N05", "vist_label": "amusement_park", "id": "72157625167335671"}, {"description": "Sibos, of course!", "title": "Amsterdam - October 2010", "farm": "2", "date_update": "1368331532", "primary": "5122194593", "server": "1199", "date_create": "1288247735", "photos": "24", "secret": "3f23141484", "owner": "83555001@N00", "vist_label": "amusement_park", "id": "72157625257917460"}, {"description": "The fireworks display in my town.", "title": "Fireworks", "farm": "5", "date_update": "1356923308", "primary": "4756853130", "server": "4121", "date_create": "1278132051", "photos": "18", "secret": "e488b547b6", "owner": "28725326@N07", "vist_label": "amusement_park", "id": "72157624285494115"}, {"description": "", "title": "CAST: New York Day 2", "farm": "5", "date_update": "1318493413", "primary": "4952768189", "server": "4086", "date_create": "1283487993", "photos": "28", "secret": "15611be3f4", "owner": "40555539@N00", "vist_label": "amusement_park", "id": "72157624867779066"}, {"description": "September 2009", "title": "Chicago's Navy Pier", "farm": "3", "date_update": "1356150353", "primary": "4243500696", "server": "2536", "date_create": "1262577514", "photos": "11", "secret": "b949e3d9d3", "owner": "8913547@N06", "vist_label": "amusement_park", "id": "72157623009486621"}, {"description": "Hogmanay in the snowy Scottish capital (2009/2010)", "title": "Edinburgh", "farm": "5", "date_update": "1356163618", "primary": "4242499638", "server": "4021", "date_create": "1262557344", "photos": "16", "secret": "d560a98406", "owner": "36101699310@N01", "vist_label": "amusement_park", "id": "72157623131846364"}, {"description": "New Year's Eve from Singapore", "title": "Happy New Year 1.1.2012", "farm": "8", "date_update": "1325618925", "primary": "6629729019", "server": "7167", "date_create": "1325618764", "photos": "17", "secret": "248ac93034", "owner": "61498428@N02", "vist_label": "amusement_park", "id": "72157628702947021"}, {"description": "", "title": "London South Bank", "farm": "5", "date_update": "1356506660", "primary": "4486083553", "server": "4021", "date_create": "1270298940", "photos": "16", "secret": "5d65ac2d9e", "owner": "8374005@N02", "vist_label": "amusement_park", "id": "72157623635972701"}, {"description": "", "title": "Wayne County Lightfest - iPhone", "farm": "6", "date_update": "1433713527", "primary": "5230912714", "server": "5247", "date_create": "1291441177", "photos": "22", "secret": "1e688e8afa", "owner": "47051377@N00", "vist_label": "amusement_park", "id": "72157625399309581"}, {"description": " Posted via email from 90-Day Weekend ", "title": "Los Angeles!", "farm": "5", "date_update": "1312490910", "primary": "5052899208", "server": "4130", "date_create": "1286237901", "photos": "11", "secret": "28257ee299", "owner": "57225509@N00", "vist_label": "amusement_park", "id": "72157625097215656"}, {"description": "", "title": "Singapour", "farm": "5", "date_update": "1304650717", "primary": "4494207418", "server": "4065", "date_create": "1270488487", "photos": "15", "secret": "0f879290b5", "owner": "49036435@N02", "vist_label": "amusement_park", "id": "72157623775938136"}, {"description": "reclaimedhome.com/2010/08/05/meet-the-new-coney/", "title": "Coney Island 2010", "farm": "5", "date_update": "1297030559", "primary": "4863313172", "server": "4093", "date_create": "1281017833", "photos": "19", "secret": "c38018fe1a", "owner": "79005576@N00", "vist_label": "amusement_park", "id": "72157624659225102"}, {"description": "", "title": "Baltimore June 2010", "farm": "5", "date_update": "1356142740", "primary": "4676911985", "server": "4046", "date_create": "1275880520", "photos": "21", "secret": "214fb3fa09", "owner": "37637658@N08", "vist_label": "amusement_park", "id": "72157624220238674"}, {"description": "", "title": "Aloha Tower Fireworks 2010", "farm": "5", "date_update": "1416303103", "primary": "4766646061", "server": "4081", "date_create": "1278400194", "photos": "15", "secret": "44eefb56d3", "owner": "55254782@N00", "vist_label": "amusement_park", "id": "72157624433258760"}, {"description": "", "title": "Nuit Blanche", "farm": "5", "date_update": "1412447034", "primary": "5058454607", "server": "4144", "date_create": "1286097977", "photos": "17", "secret": "4ebb99ee1b", "owner": "83868369@N00", "vist_label": "amusement_park", "id": "72157624959568461"}, {"description": "", "title": "Spain", "farm": "5", "date_update": "1410177894", "primary": "5051250998", "server": "4131", "date_create": "1286202298", "photos": "30", "secret": "8c9c6d1496", "owner": "35516567@N04", "vist_label": "amusement_park", "id": "72157625093480132"}, {"description": "", "title": "2011 - EDA New Year Party", "farm": "8", "date_update": "1379431814", "primary": "6657753501", "server": "7157", "date_create": "1326005094", "photos": "26", "secret": "cd85e7b516", "owner": "35205288@N03", "vist_label": "amusement_park", "id": "72157628771568153"}, {"description": "", "title": "Kuhmoinen", "farm": "5", "date_update": "1369594321", "primary": "4499829760", "server": "4043", "date_create": "1270638333", "photos": "28", "secret": "2849b405b4", "owner": "39049383@N00", "vist_label": "amusement_park", "id": "72157623669724045"}, {"description": "August 6 2010 people made cranes, sang songs, and launched lanterns on the reflecting pool in Nathan Phillips Square.", "title": "Hiroshima Day 2010", "farm": "5", "date_update": "1321804547", "primary": "4868947089", "server": "4099", "date_create": "1281205365", "photos": "19", "secret": "a7016e458d", "owner": "15731869@N05", "vist_label": "amusement_park", "id": "72157624548986959"}, {"description": "", "title": "2012-02 Brooklyn Botanic Garden", "farm": "8", "date_update": "1356800403", "primary": "6844394329", "server": "7207", "date_create": "1328756188", "photos": "15", "secret": "66eed01428", "owner": "30756344@N08", "vist_label": "amusement_park", "id": "72157629238847537"}, {"description": "", "title": "06.06.2010 - suvepiknik", "farm": "5", "date_update": "1297888858", "primary": "4681933088", "server": "4006", "date_create": "1275993371", "photos": "19", "secret": "26d82f92be", "owner": "20724655@N07", "vist_label": "amusement_park", "id": "72157624105513515"}, {"description": "", "title": "Royal Adelaide Show, 2010", "farm": "5", "date_update": "1296524322", "primary": "4970965424", "server": "4130", "date_create": "1283982117", "photos": "25", "secret": "300f95b34f", "owner": "26768348@N00", "vist_label": "amusement_park", "id": "72157624786772363"}, {"description": "", "title": "nyc street view", "farm": "5", "date_update": "1304244512", "primary": "4874647961", "server": "4120", "date_create": "1281346271", "photos": "10", "secret": "8e050a6294", "owner": "22384336@N07", "vist_label": "amusement_park", "id": "72157624561489565"}, {"description": "travel Japan", "title": "Otaru", "farm": "1", "date_update": "1321154145", "primary": "417245400", "server": "159", "date_create": "1173599544", "photos": "24", "secret": "c136c55b7a", "owner": "76967548@N00", "vist_label": "amusement_park", "id": "72157594581684061"}, {"description": "We decided to head out to Coney Island and take a walk on the boardwalk. The air was chilly and a welcome retreat from the heat and humidity of the city.", "title": "coney island, brooklyn, ny", "farm": "1", "date_update": "1356140214", "primary": "18541677", "server": "12", "date_create": "437931", "photos": "24", "secret": "88e3c5cbc3", "owner": "51035796924@N01", "vist_label": "amusement_park", "id": "437931"}, {"description": "", "title": "Harbourside", "farm": "5", "date_update": "1296638470", "primary": "4688728771", "server": "4006", "date_create": "1276207635", "photos": "11", "secret": "01c144a8c3", "owner": "48359493@N05", "vist_label": "amusement_park", "id": "72157624123266255"}, {"description": "", "title": "Mirapoint: en concierto (09/09/10)", "farm": "5", "date_update": "1350229303", "primary": "4979037041", "server": "4104", "date_create": "1284148942", "photos": "22", "secret": "e1869f6677", "owner": "57681882@N00", "vist_label": "amusement_park", "id": "72157624801640073"}, {"description": "", "title": "Fireworks Event at Ichinomiya, Japan (2010/08/07)", "farm": "5", "date_update": "1301287425", "primary": "4881963363", "server": "4138", "date_create": "1281539009", "photos": "17", "secret": "585a3c751f", "owner": "10404250@N00", "vist_label": "amusement_park", "id": "72157624702740430"}, {"description": "", "title": "London - December 2010", "farm": "6", "date_update": "1356285710", "primary": "5251685370", "server": "5044", "date_create": "1292080951", "photos": "14", "secret": "680a47d495", "owner": "35127116@N02", "vist_label": "amusement_park", "id": "72157625449982651"}, {"description": "Coney Island, Brooklyn, New York", "title": "Coney Island", "farm": "1", "date_update": "1356731129", "primary": "18984677", "server": "12", "date_create": "446814", "photos": "17", "secret": "0d704b1b04", "owner": "37665276@N00", "vist_label": "amusement_park", "id": "446814"}, {"description": "", "title": "Santa Monica, CA - October 2010.", "farm": "5", "date_update": "1338952552", "primary": "5077457904", "server": "4125", "date_create": "1286941819", "photos": "14", "secret": "bf79304fd6", "owner": "83148571@N00", "vist_label": "amusement_park", "id": "72157625028749543"}, {"description": "Photos from Denmark", "title": "Denmark", "farm": "2", "date_update": "1356169627", "primary": "4603678797", "server": "1205", "date_create": "1273765762", "photos": "12", "secret": "abef357dcc", "owner": "62737452@N00", "vist_label": "amusement_park", "id": "72157624053396502"}, {"description": "Besuch des Phantasialandes mit guten Freunden", "title": "Phantasialand (2010-09-11)", "farm": "5", "date_update": "1356823122", "primary": "4991078820", "server": "4133", "date_create": "1284491699", "photos": "15", "secret": "1a1908a187", "owner": "57974319@N00", "vist_label": "amusement_park", "id": "72157624832147385"}, {"description": "elevation: 1716 ft\n\nNOTE: The gate to the radio/cell/fire towers is locked with TEN locks. DO NOT TRESPASS. We had explicit permission from a telecommunications company to access this area for work. ", "title": "Chimney Peak Summit, Jacksonville, AL", "farm": "8", "date_update": "1402665143", "primary": "6705139029", "server": "7020", "date_create": "1326678600", "photos": "12", "secret": "a2838657b8", "owner": "65428595@N00", "vist_label": "amusement_park", "id": "72157628888719557"}, {"description": "Spring break and we did the tourist thing. Virginia was beautiful. It was sunny and warm. ", "title": "Colonial Williamsburg & Jamestown", "farm": "3", "date_update": "1297430564", "primary": "2123419438", "server": "2357", "date_create": "1176688718", "photos": "28", "secret": "fbd5377108", "owner": "54115632@N00", "vist_label": "amusement_park", "id": "72157600081021746"}, {"description": "", "title": "Santa Cruz", "farm": "5", "date_update": "1356147176", "primary": "4896706988", "server": "4073", "date_create": "1281931073", "photos": "25", "secret": "e8eeee697c", "owner": "88508495@N00", "vist_label": "amusement_park", "id": "72157624609963959"}, {"description": "", "title": "Youth Olympic Games 2010", "farm": "5", "date_update": "1297936443", "primary": "4893724687", "server": "4098", "date_create": "1281882543", "photos": "24", "secret": "4bf077dbf3", "owner": "33469713@N05", "vist_label": "amusement_park", "id": "72157624729268764"}, {"description": "", "title": "Balsa Man 2010 photoshoot", "farm": "5", "date_update": "1388374173", "primary": "4896031980", "server": "4099", "date_create": "1281917505", "photos": "11", "secret": "a9d5cb8969", "owner": "77782794@N00", "vist_label": "amusement_park", "id": "72157624733113830"}, {"description": "\u7bc9\u6e2f\u81e8\u6d77\u516c\u5712\u4ed8\u8fd1\u304b\u3089\u306e\u64ae\u5f71\u3002F\u5024\u306f5\u301c8\u524d\u5f8c\u3067\u3059\u3002otaru", "title": "\u30a6\u30a4\u30f3\u30b0\u30d9\u30a4\u306e\u591c\u666f", "farm": "5", "date_update": "1311822180", "primary": "5086282222", "server": "4084", "date_create": "1287230461", "photos": "12", "secret": "0865c1fa7f", "owner": "50463420@N06", "vist_label": "amusement_park", "id": "72157625049799293"}, {"description": "Near the 'Ben Bernake Interchange', South of the Border has been a major eye-sight landmark in South Carolina for the many many people that have journeyed down i-95 to the Beaches and to Florida. When I was there it was bitter cold and the skies were intensely clear and cloud free. I would have done more work here, but, my hands were freezing. This captures only a bit of how strange and surreal it is at South of the Border. Its sort of shocking what was appropriate in terms of racial stereotypes at the time this place was constructed. The owner was a paranoid recluse and throughout the buildings of the compound you can find many hidden passages and secured apartments. Inside one of the shops a pentecostal sermon was being broadcasted. I asked the woman sipping a coffee from a styrofoam cup working at one of the registers, what exactly was playing and she told me that the shop manager put it on the radio when the staff couldn't be in Church, and believe her (the girl with the coffee, wearing a home star runner sweatshirt) she did not want to be there. Believe me, I wanted to spirit her to Washington! An interesting note -- Ben Bernake worked here!!!", "title": "South of the Border '10", "farm": "5", "date_update": "1323288016", "primary": "4282420359", "server": "4069", "date_create": "1263767690", "photos": "14", "secret": "65e91f457d", "owner": "28769489@N04", "vist_label": "amusement_park", "id": "72157623230626204"}, {"description": "On the way back from Anna's cabin by Sudbury/Georgian Bay, we stopped in here.", "title": "Uncle Rick's Flea Market", "farm": "1", "date_update": "1356139588", "primary": "9706640", "server": "6", "date_create": "240060", "photos": "22", "secret": "a621ba3841", "owner": "35034346160@N01", "vist_label": "amusement_park", "id": "240060"}, {"description": " Posted via email from comer's posterous ", "title": "\u5929\u6d25", "farm": "5", "date_update": "1356163236", "primary": "4617020203", "server": "4049", "date_create": "1274150295", "photos": "11", "secret": "5d3103465e", "owner": "45473270@N00", "vist_label": "amusement_park", "id": "72157624083813322"}, {"description": "", "title": "20101217 \u30df\u30e5\u30f3\u30d8\u30f3\u30af\u30ea\u30b9\u30de\u30b9\u5e02", "farm": "6", "date_update": "1312944878", "primary": "5268251141", "server": "5087", "date_create": "1292594225", "photos": "10", "secret": "25e7d4270e", "owner": "22757878@N00", "vist_label": "amusement_park", "id": "72157625491301953"}, {"description": "", "title": "Disneyland 12-7-2010", "farm": "6", "date_update": "1356148543", "primary": "5267768843", "server": "5282", "date_create": "1292575430", "photos": "26", "secret": "b4340d163a", "owner": "10899777@N02", "vist_label": "amusement_park", "id": "72157625615827438"}, {"description": "Summer of 2008", "title": "Iran - Shiraz (\u0634\u06cc\u0631\u0627\u0632)", "farm": "5", "date_update": "1298002906", "primary": "4369488922", "server": "4063", "date_create": "1266545372", "photos": "28", "secret": "81b7739ecd", "owner": "33907858@N05", "vist_label": "amusement_park", "id": "72157623463687412"}, {"description": "", "title": "Santa Cruz County Fair 2010", "farm": "5", "date_update": "1356343121", "primary": "5002527254", "server": "4110", "date_create": "1284846125", "photos": "18", "secret": "c2d1b8eb8e", "owner": "35718061@N06", "vist_label": "amusement_park", "id": "72157624983879722"}, {"description": "", "title": "Coney Island, NY - Labor Day Weekend 2010", "farm": "5", "date_update": "1398565331", "primary": "5003381000", "server": "4144", "date_create": "1284876176", "photos": "25", "secret": "988fb692f5", "owner": "97091300@N00", "vist_label": "amusement_park", "id": "72157624986160830"}, {"description": "Aug '10", "title": "London 2010", "farm": "5", "date_update": "1299565927", "primary": "4907081296", "server": "4143", "date_create": "1282206156", "photos": "19", "secret": "135de9b39c", "owner": "25688992@N00", "vist_label": "amusement_park", "id": "72157624758314534"}, {"description": "Winter olympics 2010 at vancouver", "title": "vancouver2010", "farm": "5", "date_update": "1297232307", "primary": "4371599587", "server": "4037", "date_create": "1266646629", "photos": "12", "secret": "c0214176ab", "owner": "22535384@N00", "vist_label": "amusement_park", "id": "72157623346252133"}, {"description": "", "title": "The Brunel Fancy Fair", "farm": "3", "date_update": "1301531998", "primary": "4447625218", "server": "2765", "date_create": "1269079503", "photos": "14", "secret": "5d76ffaa25", "owner": "73465815@N00", "vist_label": "amusement_park", "id": "72157623531002447"}, {"description": "Manchester's version of the London Eye - ferris wheel for viewing the city of Manchester, UK", "title": "The Wheel of Manchester", "farm": "5", "date_update": "1434467319", "primary": "4448994659", "server": "4022", "date_create": "1269142295", "photos": "17", "secret": "1cec6b7a6f", "owner": "26686573@N00", "vist_label": "amusement_park", "id": "72157623660497540"}, {"description": "", "title": "Myrtle Beach, South Carolina", "farm": "5", "date_update": "1312117895", "primary": "4718533368", "server": "4054", "date_create": "1277065170", "photos": "12", "secret": "0920edbc53", "owner": "50592079@N05", "vist_label": "amusement_park", "id": "72157624193885719"}, {"description": "Levine, Berez & Foster's\n6-19-10", "title": "Bergen County Zoo - Van Saun Park", "farm": "5", "date_update": "1361322415", "primary": "4719617374", "server": "4066", "date_create": "1277086182", "photos": "18", "secret": "92351fa897", "owner": "34579818@N00", "vist_label": "amusement_park", "id": "72157624320734786"}, {"description": "", "title": "2010-07-17~\u7fa9\u5927\u4e16\u754c", "farm": "5", "date_update": "1383354063", "primary": "4812798162", "server": "4139", "date_create": "1279643514", "photos": "25", "secret": "36cdef2801", "owner": "69301193@N00", "vist_label": "amusement_park", "id": "72157624420153669"}, {"description": "", "title": "London with iPhone ProHDR", "farm": "5", "date_update": "1359120906", "primary": "5007069063", "server": "4132", "date_create": "1284967387", "photos": "12", "secret": "26a220b136", "owner": "92692151@N00", "vist_label": "amusement_park", "id": "72157624994501472"}, {"description": "", "title": "Sechsel\u00e4uten 2010", "farm": "3", "date_update": "1297167411", "primary": "4541945370", "server": "2785", "date_create": "1271888390", "photos": "14", "secret": "abebeca90c", "owner": "30523851@N00", "vist_label": "amusement_park", "id": "72157623781391871"}, {"description": "", "title": "201008 St Ninian's, Mar Lodge, Aberdeenshire", "farm": "5", "date_update": "1425237238", "primary": "4912592194", "server": "4077", "date_create": "1282376666", "photos": "17", "secret": "fa243d1609", "owner": "16915761@N08", "vist_label": "amusement_park", "id": "72157624771807666"}, {"description": "", "title": "201012 stanley park", "farm": "6", "date_update": "1366842763", "primary": "5279922716", "server": "5082", "date_create": "1292921371", "photos": "18", "secret": "6161037450", "owner": "30923616@N00", "vist_label": "amusement_park", "id": "72157625518410203"}, {"description": "", "title": "Event - Calgary Stampede - 2010", "farm": "5", "date_update": "1356149102", "primary": "4796069011", "server": "4073", "date_create": "1279208606", "photos": "15", "secret": "fb2e8eefeb", "owner": "54083733@N00", "vist_label": "amusement_park", "id": "72157624375756953"}, {"description": "", "title": "Newcastle-upon-Tyne 2012", "farm": "8", "date_update": "1327327462", "primary": "6748858569", "server": "7005", "date_create": "1327326855", "photos": "28", "secret": "3ec72f0d7d", "owner": "39052554@N00", "vist_label": "amusement_park", "id": "72157628996836227"}, {"description": "", "title": "John Mayer", "farm": "5", "date_update": "1379827371", "primary": "4918889103", "server": "4098", "date_create": "1282551421", "photos": "12", "secret": "f6e9e5ff5a", "owner": "37459868@N07", "vist_label": "amusement_park", "id": "72157624787675250"}, {"description": "Hundreds of Santas on Display - Cheyenne Children's Park exhibition hall - 12-23-2010", "title": "1000 Santas", "farm": "6", "date_update": "1366209698", "primary": "5286861765", "server": "5127", "date_create": "1293170336", "photos": "13", "secret": "bb2eed4ca5", "owner": "75218757@N00", "vist_label": "amusement_park", "id": "72157625537196801"}, {"description": "", "title": "1881 HERITAGE", "farm": "6", "date_update": "1356195016", "primary": "5285624722", "server": "5125", "date_create": "1293111840", "photos": "14", "secret": "c0e2372695", "owner": "35729722@N07", "vist_label": "amusement_park", "id": "72157625658238134"}, {"description": "a fun, filled afternoon of culture for Asian Fest at the office. ", "title": "Asian Festival", "farm": "5", "date_update": "1396630828", "primary": "4396635765", "server": "4054", "date_create": "1267501825", "photos": "11", "secret": "72cdc212b6", "owner": "20978349@N00", "vist_label": "amusement_park", "id": "72157623537919024"}, {"description": "", "title": "Dokmaideng Playland", "farm": "1", "date_update": "1345566606", "primary": "432392301", "server": "166", "date_create": "1174971550", "photos": "27", "secret": "ed0dd0b6ff", "owner": "22245341@N00", "vist_label": "amusement_park", "id": "72157600029750956"}, {"description": "", "title": "Montreal", "farm": "5", "date_update": "1353200900", "primary": "4913806861", "server": "4098", "date_create": "1282398451", "photos": "23", "secret": "ba766a9787", "owner": "25919479@N05", "vist_label": "amusement_park", "id": "72157624773266840"}, {"description": "the Weekend in New York City", "title": "Sarah's 20th - NYC", "farm": "5", "date_update": "1296581108", "primary": "4303548215", "server": "4069", "date_create": "1264440024", "photos": "11", "secret": "1cd3d05650", "owner": "25316876@N00", "vist_label": "amusement_park", "id": "72157623157578979"}, {"description": "", "title": "Around Soho at Night", "farm": "5", "date_update": "1356210488", "primary": "4464577012", "server": "4031", "date_create": "1269596554", "photos": "14", "secret": "e39190e01c", "owner": "18567238@N00", "vist_label": "amusement_park", "id": "72157623706412802"}, {"description": "Some pictures from the 2005 parade", "title": "Coney Island & Mermaid Parade 2005", "farm": "1", "date_update": "1311431676", "primary": "21794897", "server": "17", "date_create": "506155", "photos": "15", "secret": "7b86e0e709", "owner": "59333029@N00", "vist_label": "amusement_park", "id": "506155"}, {"description": "", "title": "Modern Art Museum of Ft. Worth & Six Flags trip", "farm": "5", "date_update": "1323466893", "primary": "5025729915", "server": "4104", "date_create": "1285513701", "photos": "12", "secret": "f07700e993", "owner": "11627115@N00", "vist_label": "amusement_park", "id": "72157625037470792"}, {"description": "Jz club", "title": "2010-0528 \u4e0a\u6d77snap", "farm": "5", "date_update": "1435035685", "primary": "4645326929", "server": "4018", "date_create": "1274991783", "photos": "22", "secret": "f9aa3c1994", "owner": "59833768@N00", "vist_label": "amusement_park", "id": "72157624025208221"}, {"description": "", "title": "Tem\u00e1ticas", "farm": "5", "date_update": "1317447765", "primary": "4644548973", "server": "4047", "date_create": "1278611932", "photos": "20", "secret": "f20a36f1e9", "owner": "48954637@N02", "vist_label": "amusement_park", "id": "72157624451319642"}, {"description": "", "title": "En dag vid hjulet", "farm": "5", "date_update": "1356640223", "primary": "4833103265", "server": "4149", "date_create": "1280214825", "photos": "20", "secret": "78c0b98c36", "owner": "8151834@N04", "vist_label": "amusement_park", "id": "72157624467440699"}, {"description": "Coney Island. Brooklyn, NYC.", "title": "Coney Island", "farm": "5", "date_update": "1426384159", "primary": "4933197530", "server": "4119", "date_create": "1284829243", "photos": "10", "secret": "eb37924ce9", "owner": "27917561@N00", "vist_label": "amusement_park", "id": "72157624857633031"}, {"description": "2010\u5e748\u670828\u65e5\n\u590f\u4f11\u307f\u306e\u6700\u5f8c\u3001\n\u9be8\u3092\u4e2d\u5fc3\u3068\u3057\u305f\u5927\u578b\u54fa\u4e73\u985e\u5c55\u304b\u306a\n\u96fb\u8eca\u3067", "title": "2010/08/28 \u56fd\u7acb\u79d1\u5b66\u535a\u7269\u9928 1\u56de\u76ee", "farm": "5", "date_update": "1298110685", "primary": "4934223920", "server": "4074", "date_create": "1298020791", "photos": "15", "secret": "87e4b52825", "owner": "35233656@N03", "vist_label": "amusement_park", "id": "72157625954089295"}, {"description": "", "title": "\u5143\u5bb5\u70ae", "farm": "3", "date_update": "1298765191", "primary": "4394047471", "server": "2709", "date_create": "1267357749", "photos": "25", "secret": "6fd99e51f1", "owner": "96652705@N00", "vist_label": "amusement_park", "id": "72157623400467385"}, {"description": "", "title": "Carna\u00faba dos Dantas - Voo do Bacurau", "farm": "5", "date_update": "1296808856", "primary": "5032710209", "server": "4131", "date_create": "1285682971", "photos": "20", "secret": "2ee218c6c4", "owner": "52579657@N06", "vist_label": "amusement_park", "id": "72157625052672144"}, {"description": "", "title": "Fisherman's Wharf", "farm": "8", "date_update": "1356213172", "primary": "6787658251", "server": "7162", "date_create": "1327903131", "photos": "29", "secret": "a4662a34f5", "owner": "77015846@N00", "vist_label": "amusement_park", "id": "72157629094219953"}, {"description": "", "title": "Bath in Lights", "farm": "5", "date_update": "1358594466", "primary": "4650080225", "server": "4027", "date_create": "1275157511", "photos": "25", "secret": "1eb7bf0d12", "owner": "43522654@N05", "vist_label": "amusement_park", "id": "72157624161118434"}, {"description": "We headed down to Navy Pier to see the Tall Ships on 29 Aug 2010.", "title": "Tall Ship Festival - Navy Pier - Chicago", "farm": "5", "date_update": "1298749290", "primary": "4939777832", "server": "4123", "date_create": "1283123693", "photos": "26", "secret": "c41015cefc", "owner": "14104829@N07", "vist_label": "amusement_park", "id": "72157624711578491"}, {"description": "", "title": "Today 30-07-10", "farm": "5", "date_update": "1356878227", "primary": "4843541976", "server": "4128", "date_create": "1280489677", "photos": "15", "secret": "26edddf0e9", "owner": "59143072@N00", "vist_label": "amusement_park", "id": "72157624490271763"}, {"description": "", "title": "Lalbaug Flower show < Bangalore -Jan 2010", "farm": "3", "date_update": "1297734183", "primary": "4321473408", "server": "2781", "date_create": "1264999897", "photos": "26", "secret": "e8f8d05863", "owner": "8471420@N05", "vist_label": "amusement_park", "id": "72157623200307257"}, {"description": "Luna Park - Carpi (MO)", "title": "Alla fiera dell'Ovest", "farm": "5", "date_update": "1346054816", "primary": "4641101703", "server": "4025", "date_create": "1274871630", "photos": "14", "secret": "3e2719f871", "owner": "12215612@N06", "vist_label": "amusement_park", "id": "72157624015502957"}, {"description": "", "title": "Road Scholars embark on 14th annual bus trip", "farm": "5", "date_update": "1430511246", "primary": "4946502269", "server": "4131", "date_create": "1287618364", "photos": "12", "secret": "30f83d4ea9", "owner": "53130103@N05", "vist_label": "amusement_park", "id": "72157625207409772"}, {"description": "", "title": "Hershey Park", "farm": "1", "date_update": "1361276250", "primary": "1931787", "server": "2", "date_create": "48904", "photos": "23", "secret": "28facd9422", "owner": "97962272@N00", "vist_label": "amusement_park", "id": "48904"}, {"description": "Ardwick, Manchester, UK.\n\nUse the image notes to navigate.", "title": "Yellow Wall", "farm": "1", "date_update": "1338992935", "primary": "21155629", "server": "17", "date_create": "492675", "photos": "10", "secret": "f984e8cfa4", "owner": "54304913@N00", "vist_label": "amusement_park", "id": "492675"}, {"description": "", "title": "Coney Island", "farm": "1", "date_update": "1426557579", "primary": "28085751", "server": "21", "date_create": "634575", "photos": "18", "secret": "91f74ba830", "owner": "43675529@N00", "vist_label": "amusement_park", "id": "634575"}, {"description": "My attempt to capture fireworks (hanabi) in Toyama City.", "title": "Hanabi", "farm": "1", "date_update": "1336417940", "primary": "30615523", "server": "23", "date_create": "688603", "photos": "16", "secret": "00b0653b35", "owner": "20697369@N00", "vist_label": "amusement_park", "id": "688603"}, {"description": "", "title": "Photowalk Jan 2, 2011", "farm": "6", "date_update": "1356143274", "primary": "5318407038", "server": "5004", "date_create": "1294018329", "photos": "29", "secret": "abdfbe2f1f", "owner": "34206154@N02", "vist_label": "amusement_park", "id": "72157625732993716"}, {"description": "Taking standard pictures of fireworks gets a little dull the second year around, I found. So, to while away the time, I tried a little non-standard panning and zooming as well...", "title": "Wildfire", "farm": "6", "date_update": "1297848621", "primary": "5353071713", "server": "5288", "date_create": "1294974227", "photos": "24", "secret": "beb1e48251", "owner": "84499034@N00", "vist_label": "amusement_park", "id": "72157625818675128"}, {"description": "\u00a9Stefano Grasso", "title": "Csi 2009 - dettagli", "farm": "6", "date_update": "1350912867", "primary": "5354409816", "server": "5005", "date_create": "1295005209", "photos": "20", "secret": "2f27389f04", "owner": "50933520@N03", "vist_label": "amusement_park", "id": "72157625820834578"}, {"description": "Fotos tomadas en el concierto de Grandmaster Flash con Beat Junkies (Dj Babu, Dj Rhettmatic y Dj Shortkut con Rakaa de Dilated Peoples invitado) del 13/01/2011 en la sala Heieneken (Madrid).\n\nLa cr\u00f3nica del evento en feiticeirA", "title": "110113 - Grandmaster Flash - Sala Heineken (Madrid)", "farm": "6", "date_update": "1368518913", "primary": "5353887557", "server": "5166", "date_create": "1295009168", "photos": "21", "secret": "cd9dff5914", "owner": "13459975@N00", "vist_label": "amusement_park", "id": "72157625821127582"}, {"description": "Respaldo al presidente Correa por parte de multitudinaria asistencia de Pi\u00f1as en la ciudad de Machala", "title": "Respaldo al presidente Correa por parte de multitudinaria asistencia de Pi\u00f1as en la ciudad de Machala", "farm": "6", "date_update": "1382039867", "primary": "5363829894", "server": "5126", "date_create": "1295272065", "photos": "20", "secret": "91eb08632d", "owner": "45783535@N05", "vist_label": "amusement_park", "id": "72157625843862492"}, {"description": "", "title": "Zap Props Chicago", "farm": "6", "date_update": "1356195517", "primary": "5365137567", "server": "5124", "date_create": "1295313874", "photos": "29", "secret": "12bf64dc52", "owner": "74929452@N00", "vist_label": "amusement_park", "id": "72157625849089400"}, {"description": "Macau, January 2011", "title": "Macau", "farm": "6", "date_update": "1356716112", "primary": "5387123991", "server": "5212", "date_create": "1295969487", "photos": "28", "secret": "1751d088cb", "owner": "78932936@N00", "vist_label": "amusement_park", "id": "72157625778278283"}, {"description": "", "title": "Motomachi Chukagai (\u5143\u753a\u4e2d\u83ef\u8857)", "farm": "6", "date_update": "1357209385", "primary": "5390091900", "server": "5011", "date_create": "1296040199", "photos": "19", "secret": "771ae7e905", "owner": "11813651@N03", "vist_label": "amusement_park", "id": "72157625909589808"}, {"description": "The stars arriving on the red carpet for The BRIT Awards 2012 nominations ceremony.", "title": "The BRIT Awards 2012 nominations", "farm": "8", "date_update": "1326443459", "primary": "6688731219", "server": "7014", "date_create": "1326443436", "photos": "12", "secret": "542ffbb2c6", "owner": "53004883@N02", "vist_label": "award_ceremony", "id": "72157628848654209"}, {"description": "", "title": "LLGA 2010 Ceremony 15 photos", "farm": "3", "date_update": "1321282856", "primary": "4356926331", "server": "2723", "date_create": "1321282346", "photos": "15", "secret": "41ac71b976", "owner": "54513922@N00", "vist_label": "award_ceremony", "id": "72157628126323778"}, {"description": "Jake and Christian each had their hockey awards events on the same day. Jake had his after one final game while Christian's season had ended a week before.", "title": "2010 Hockey Awards", "farm": "3", "date_update": "1435210258", "primary": "4432273061", "server": "2432", "date_create": "1268593804", "photos": "12", "secret": "d24412f4b1", "owner": "95251552@N00", "vist_label": "award_ceremony", "id": "72157623494873967"}, {"description": "The Capitol Steps' Synchronized Skating Competition, Lowell, MA", "title": "Sylvia's Skating Competition", "farm": "1", "date_update": "1328759245", "primary": "363122498", "server": "164", "date_create": "1169269004", "photos": "17", "secret": "42fc8d8010", "owner": "24269177@N00", "vist_label": "award_ceremony", "id": "72157594489449430"}, {"description": "The National Military Academy of Afghanistan (NMAA) awarded its first honorary degree to U.S. Ambassador Karl Eikenberry in a ceremony attended by almost 2,000 cadets and instructors. ", "title": "Ambassador Eikenberry Receives Honorary Degree at NMAA", "farm": "2", "date_update": "1297830661", "primary": "4729784870", "server": "1236", "date_create": "1277362129", "photos": "23", "secret": "5168b0a96d", "owner": "34956641@N03", "vist_label": "award_ceremony", "id": "72157624220760067"}, {"description": "iCrossing was named the 2009 Search Agency of the Year by OMMA magazine.", "title": "2009 OMMA Agency of the Year Awards Ceremony", "farm": "5", "date_update": "1353104235", "primary": "4465493082", "server": "4002", "date_create": "1269629454", "photos": "10", "secret": "5ecf466f8c", "owner": "8316084@N08", "vist_label": "award_ceremony", "id": "72157623708804154"}, {"description": "Library Volunteers Christmas Morning Tea was held in the Dunningham Suite on Floor 4 of the City Library on Tuesday 14 December 2011. \n\nBernie Hawke, Library Services Manager was the master of ceremonies and introduced the Launch of the Catalogue of Early Bibles, Liturgies and Prayer Books from the Alfred and Isabel Reed Collection.\n\nMary Ronnie spoke about the Catalogue.\n\nCr Bill Acklin then awarded the 2011 Library Citation to Jennifer June Hodgkinson and Jill Beverly Hulme.\n\nJenny and Jill in partnership with Dunedin Public Libraries have organised and run a monthly Book Club for residents of Frances Hodgkins Retirement Village since 2003.\n\nThis is a fantastic service which is highly valued by residents, rest home and library staff alike. Jenny and Jill\u2019s commitment to lifelong learning and enriching the lives of elderly people in society deserves to be acknowledged and celebrated.", "title": "Christmas Morning Tea 11", "farm": "8", "date_update": "1327893014", "primary": "6786557703", "server": "7012", "date_create": "1327893011", "photos": "17", "secret": "a6a8a08550", "owner": "21939212@N03", "vist_label": "award_ceremony", "id": "72157629092555811"}, {"description": "", "title": "Rocky 2006", "farm": "1", "date_update": "1353249477", "primary": "153156598", "server": "67", "date_create": "1148579548", "photos": "12", "secret": "a5e79bbfc9", "owner": "50529517@N00", "vist_label": "award_ceremony", "id": "72157594145019718"}, {"description": "At the last day of our indoor football tournament 2008 twelve teams played. Afterwards there was an awards ceremony with the head of KAS, the mayor and others.", "title": "Indoor football tournament 2008 - winners", "farm": "3", "date_update": "1310288699", "primary": "2201979270", "server": "2233", "date_create": "1200669851", "photos": "25", "secret": "0c3fac1603", "owner": "10284276@N00", "vist_label": "award_ceremony", "id": "72157603745341181"}, {"description": "", "title": "Award Ceremony", "farm": "3", "date_update": "1300725306", "primary": "2489831316", "server": "2013", "date_create": "1210690294", "photos": "13", "secret": "5ba14a5efb", "owner": "93049950@N00", "vist_label": "award_ceremony", "id": "72157605038747377"}, {"description": "zo vadzig de mensch,\nzo rank de ree,\nzo vlijtig de bever....\nwie biesboscht er mee?", "title": "biesbosch", "farm": "3", "date_update": "1340387297", "primary": "2514065157", "server": "2276", "date_create": "1211493036", "photos": "21", "secret": "e8c9761a8c", "owner": "55048160@N00", "vist_label": "award_ceremony", "id": "72157605198166226"}, {"description": "all photos taken by lorna white", "title": "peabody awards", "farm": "3", "date_update": "1336157718", "primary": "2588097062", "server": "2294", "date_create": "1213728077", "photos": "24", "secret": "94d992e811", "owner": "61806676@N00", "vist_label": "award_ceremony", "id": "72157605669695765"}, {"description": "", "title": "CAUBO in Winnipeg", "farm": "4", "date_update": "1345033857", "primary": "2757885067", "server": "3093", "date_create": "1218596260", "photos": "15", "secret": "41639fbbe2", "owner": "57587298@N00", "vist_label": "award_ceremony", "id": "72157606699672205"}, {"description": "9th September 2008: stage 3 - Chard to Burnham On Sea", "title": "Tour Of Britain 2008", "farm": "4", "date_update": "1342400073", "primary": "2843706584", "server": "3211", "date_create": "1220982843", "photos": "23", "secret": "b520714cdb", "owner": "18604259@N00", "vist_label": "award_ceremony", "id": "72157607202685229"}, {"description": "Photos taken at the British Legion parade for Jack Cornwell, 3rd June 2007.", "title": "Jack Cornwell VC", "farm": "4", "date_update": "1296725987", "primary": "2870392421", "server": "3230", "date_create": "1221856934", "photos": "19", "secret": "6f5ec169ff", "owner": "39542700@N00", "vist_label": "award_ceremony", "id": "72157607377451810"}, {"description": "The first annual videoblogging awards, held by PodTech in San Francisco, on Nov. 4, 2006.", "title": "Vloggies", "farm": "1", "date_update": "1356221978", "primary": "289682614", "server": "107", "date_create": "1162753207", "photos": "19", "secret": "6cc6d44c38", "owner": "36521958135@N01", "vist_label": "award_ceremony", "id": "72157594362014751"}, {"description": "", "title": "Kristi and Kris's Baby Shower", "farm": "1", "date_update": "1356149839", "primary": "414830410", "server": "146", "date_create": "1173383068", "photos": "23", "secret": "2ca263acfd", "owner": "26197615@N00", "vist_label": "baby_shower", "id": "72157594577527947"}, {"description": "", "title": "baby shower for Phoebe Genevieve", "farm": "1", "date_update": "1326292128", "primary": "500045288", "server": "202", "date_create": "1179268613", "photos": "14", "secret": "58caf2f395", "owner": "68288285@N00", "vist_label": "baby_shower", "id": "72157600219203602"}, {"description": "", "title": "The Grape Baby Shower", "farm": "1", "date_update": "1303881696", "primary": "500132456", "server": "206", "date_create": "1179274936", "photos": "21", "secret": "171f2e555e", "owner": "31266237@N00", "vist_label": "baby_shower", "id": "72157600219430352"}, {"description": "Our Saturday was spent with Rob and Kara at the EVP at North Ave Beach, at JoElen's baby shower, a party at Trisha and Alex's house, and finally out for Brian's birthday! A FULL day!", "title": "August 11, 2007", "farm": "2", "date_update": "1374843791", "primary": "1132353718", "server": "1205", "date_create": "1187276199", "photos": "14", "secret": "174f43ab55", "owner": "89665467@N00", "vist_label": "baby_shower", "id": "72157601477183170"}, {"description": "", "title": "David's Baby Shower", "farm": "6", "date_update": "1359436332", "primary": "7085880269", "server": "5192", "date_create": "1334626977", "photos": "10", "secret": "778fb8e237", "owner": "33909090@N00", "vist_label": "baby_shower", "id": "72157629834766341"}, {"description": "", "title": "Wedding Open House, January 2014", "farm": "6", "date_update": "1389795173", "primary": "11964674534", "server": "5536", "date_create": "1389795154", "photos": "50", "secret": "b51704427b", "owner": "58476919@N02", "vist_label": "bar_mitzvah", "id": "72157639797726335"}, {"description": "Me, Caryn, Jason and Chrissy went to the CMA for a presentation on "The Art of Puppetry & Storytelling", part of a series on the work of Jim Henson. It was presented by Bonnie Erickson, former Design Director for The Jim Henson Company. \nThat evening was a surprise party for an Aunt on my Dad's side at some place in Berea, I forget the name. \nHappy 49th (wink wink nudge nudge) Aunt Reggie!!!", "title": "Jim Henson Event at CMA, Surprise Party, 01/05/08", "farm": "3", "date_update": "1391439762", "primary": "2185567002", "server": "2319", "date_create": "1200061639", "photos": "17", "secret": "2352204cbb", "owner": "22324943@N00", "vist_label": "bar_mitzvah", "id": "72157603692536161"}, {"description": "Sunny spring skiing at its finest...T-shirt weather the whole way.\n\nHighlights of the day include hoola-hoop skiing, meade, bbq, and pinkies...", "title": "Steven's 04/12/08", "farm": "3", "date_update": "1430079909", "primary": "2408214539", "server": "2180", "date_create": "1208046716", "photos": "29", "secret": "b41ba9e458", "owner": "62929416@N00", "vist_label": "bar_mitzvah", "id": "72157604508466643"}, {"description": "Live at the Church Divinity School of the Pacific Refectory, Berkeley CA - April 14, 2010\n\nExcerpts from the Harvey Pekar/Dan Plonsey jazz opera, "Leave Me Alone," a conversation between Harvey Pekar and Dan Schifrin, and sneak previews of "Dan Plonsey's Bar Mitzvah" with Dandelion Dancetheater and Dan Plonsey's Bar Mitzvah Band", "title": "Harvey Pekar, Dan Plonsey, and Dandelion Dancetheater", "farm": "5", "date_update": "1431912305", "primary": "4525724253", "server": "4051", "date_create": "1271438936", "photos": "22", "secret": "7e0005ddf6", "owner": "82847947@N00", "vist_label": "bar_mitzvah", "id": "72157623869982062"}, {"description": "", "title": "Jeremy's Bar Mitzvah", "farm": "3", "date_update": "1428281432", "primary": "4122127033", "server": "2678", "date_create": "1258833002", "photos": "31", "secret": "22e20fdb5e", "owner": "55323595@N00", "vist_label": "bar_mitzvah", "id": "72157622848916576"}, {"description": "Images from Volume 1 of This is Us by Eugene Berman", "title": "Volume 1 of \"This is Us\" By Eugene Berman", "farm": "3", "date_update": "1299503849", "primary": "4205432686", "server": "2674", "date_create": "1261456047", "photos": "45", "secret": "752fc3a64e", "owner": "45702628@N02", "vist_label": "bar_mitzvah", "id": "72157623047950842"}, {"description": "", "title": "Line Tiyul 2013", "farm": "9", "date_update": "1432058537", "primary": "8549959711", "server": "8242", "date_create": "1363067213", "photos": "19", "secret": "408aa04d38", "owner": "14028151@N04", "vist_label": "bar_mitzvah", "id": "72157632973805375"}, {"description": "Wilshire near Western, Los Angeles. An art deco synagogue from 1929. Just lovingly restored.", "title": "Wilshire Boulevard Temple", "farm": "8", "date_update": "1380155603", "primary": "9940552406", "server": "7366", "date_create": "1380145488", "photos": "12", "secret": "caba83ef48", "owner": "56832361@N00", "vist_label": "bar_mitzvah", "id": "72157635893140555"}, {"description": "Avital's Bat Mitzvah", "title": "Breakfast", "farm": "6", "date_update": "1305654625", "primary": "5731039744", "server": "5188", "date_create": "1305654580", "photos": "14", "secret": "09ab63e5cd", "owner": "8655796@N08", "vist_label": "bat_mitzvah", "id": "72157626743522490"}, {"description": "", "title": "2006-04-01 Rosenfeld Banot Mitzvah", "farm": "1", "date_update": "1380083701", "primary": "131506731", "server": "48", "date_create": "1145478370", "photos": "44", "secret": "6435e0db49", "owner": "61512563@N00", "vist_label": "bat_mitzvah", "id": "72057594111606077"}, {"description": "", "title": "06-12-2006 Exploring the North Shore (Monday)", "farm": "4", "date_update": "1416150588", "primary": "2808890903", "server": "3145", "date_create": "1220045401", "photos": "12", "secret": "b0e048f0b1", "owner": "22038195@N07", "vist_label": "beach", "id": "72157607016012045"}, {"description": "", "title": "05-28-2007 Day 3 - Monday (Tybee Island & Savannah, Georgia)", "farm": "4", "date_update": "1416150587", "primary": "2810320110", "server": "3125", "date_create": "1220064679", "photos": "20", "secret": "8d64604686", "owner": "22038195@N07", "vist_label": "beach", "id": "72157607019124715"}, {"description": "", "title": "11-2006 Bill & Jean come to visit", "farm": "4", "date_update": "1416150588", "primary": "2810379186", "server": "3164", "date_create": "1220066546", "photos": "49", "secret": "e97255f92b", "owner": "22038195@N07", "vist_label": "beach", "id": "72157607019353399"}, {"description": "", "title": "Brittany 2002", "farm": "1", "date_update": "1305585285", "primary": "341145747", "server": "162", "date_create": "1167680261", "photos": "15", "secret": "ba73148dec", "owner": "72015637@N00", "vist_label": "beach", "id": "72157594452196120"}, {"description": "el 1\u00ba del 2007 lo "celebramos" en un paseo todo el d\u00eda a pabell\u00f3n de pica", "title": "paseo a pabell\u00f3n de pica", "farm": "1", "date_update": "1356738447", "primary": "341635886", "server": "158", "date_create": "1167699988", "photos": "15", "secret": "71554557dc", "owner": "56321543@N00", "vist_label": "beach", "id": "72157594452943974"}, {"description": "", "title": "Eagle Island", "farm": "5", "date_update": "1300964173", "primary": "4233721412", "server": "4008", "date_create": "1262353050", "photos": "18", "secret": "5f00308698", "owner": "45833675@N03", "vist_label": "beach", "id": "72157622988313891"}, {"description": "We went for a drive from Hervey Bay to Rainbow Beach via Maroom, Boonaroo, Poona, Tin Can Bay and Cooloola Cove. I forgot to take photos in Maroom and Tin Can Bay though.", "title": "Rainbow Beach 2009", "farm": "3", "date_update": "1331036910", "primary": "4234367635", "server": "2734", "date_create": "1262383876", "photos": "24", "secret": "6351e568c7", "owner": "41107941@N00", "vist_label": "beach", "id": "72157623116016116"}, {"description": "", "title": "New Year's Eve Party, Enk\u00f6ping, 2009-12-31", "farm": "5", "date_update": "1375726980", "primary": "4235676298", "server": "4011", "date_create": "1262395587", "photos": "15", "secret": "fa5418abae", "owner": "45074090@N00", "vist_label": "beach", "id": "72157622992588937"}, {"description": "2010\u5e74\u3000\u521d\u65e5\u306e\u51fa\u3092\u4eca\u5e74\u304a\u4e16\u8a71\u306b\u306a\u308b\u30ab\u30e1\u30e9\u306b\u7d0d\u3081\u307e\u3057\u305f", "title": "2010 Sunrise / iPhone / K-7 / GRD2 / E-300/", "farm": "3", "date_update": "1371359556", "primary": "4235800567", "server": "2739", "date_create": "1262417026", "photos": "24", "secret": "2f83c39059", "owner": "7274020@N06", "vist_label": "beach", "id": "72157622994356223"}, {"description": "Played at All England Lawn Tennis and Croquet Club in Wimbledon, London, England", "title": "2011 Wimbledon Championships", "farm": "4", "date_update": "1434403396", "primary": "5870033556", "server": "3020", "date_create": "1320196158", "photos": "30", "secret": "bd8629f716", "owner": "57511216@N04", "vist_label": "beach", "id": "72157628032378538"}, {"description": "", "title": "Redfish Lake, Idaho; October, 2011 ", "farm": "8", "date_update": "1325741342", "primary": "6613712189", "server": "7031", "date_create": "1325442196", "photos": "20", "secret": "3490b58251", "owner": "73223325@N07", "vist_label": "beach", "id": "72157628666487199"}, {"description": "San Francisco - was f\u00fcr eine tolle Stadt. In Castro, dem ber\u00fcchtigten Schwulen-Viertel, verbrachten wir Sylvester.", "title": "04 San Francisco", "farm": "3", "date_update": "1308589980", "primary": "1618136471", "server": "2229", "date_create": "1192728423", "photos": "25", "secret": "ef4d6e2f29", "owner": "14143122@N05", "vist_label": "beach", "id": "72157602497828530"}, {"description": "", "title": "Flight to Alberta", "farm": "1", "date_update": "1356147953", "primary": "4174425", "server": "4", "date_create": "1173989199", "photos": "30", "secret": "e67134ef6d", "owner": "48889116964@N01", "vist_label": "beach", "id": "72157600001651295"}, {"description": "Matara is in the south of Sri Lanka, near Galle. This gallery documents a visit to the Sarvodaya District headquarters and 3 villages where Sarvodaya has had a long-term presences. On this day Sarvodaya provided household kits comprising pots, pans, brooms, etc and met villagers", "title": "Visit to Matara", "farm": "1", "date_update": "1320053526", "primary": "4102490", "server": "3", "date_create": "103529", "photos": "50", "secret": "45ac167fb8", "owner": "49268158@N00", "vist_label": "beach", "id": "103529"}, {"description": "", "title": "200501 Brisbane", "farm": "1", "date_update": "1434885285", "primary": "17048014", "server": "14", "date_create": "406244", "photos": "25", "secret": "4fbaacbb83", "owner": "67664335@N00", "vist_label": "beach", "id": "406244"}, {"description": "I love the ocean, especially when it is angry.", "title": "angry sea", "farm": "1", "date_update": "1310628976", "primary": "17138641", "server": "12", "date_create": "409687", "photos": "14", "secret": "7ccd9c95c1", "owner": "69325665@N00", "vist_label": "beach", "id": "409687"}, {"description": "", "title": "Brighton 2005", "farm": "1", "date_update": "1389571333", "primary": "17126421", "server": "11", "date_create": "1172443447", "photos": "40", "secret": "f3166f17ef", "owner": "82414749@N00", "vist_label": "beach", "id": "72157594556564196"}, {"description": "3 hours south of Jakarta.", "title": "Pelabuhan Ratu", "farm": "1", "date_update": "1356214994", "primary": "23020095", "server": "17", "date_create": "1173988613", "photos": "46", "secret": "181f081860", "owner": "94416001@N00", "vist_label": "beach", "id": "72157600001637343"}, {"description": "", "title": "Mykonos, Greece", "farm": "1", "date_update": "1369119425", "primary": "1873006", "server": "2", "date_create": "47498", "photos": "18", "secret": "d35c54f035", "owner": "83609650@N00", "vist_label": "beach", "id": "47498"}, {"description": "", "title": "New Year's on O'ahu", "farm": "1", "date_update": "1381515034", "primary": "344903958", "server": "157", "date_create": "1167881570", "photos": "22", "secret": "874ae06b95", "owner": "39412604@N00", "vist_label": "beach", "id": "72157594458084619"}, {"description": "", "title": "Arrowtown to Oamaru via Moeraki", "farm": "3", "date_update": "1356300346", "primary": "4240293210", "server": "2715", "date_create": "1262509776", "photos": "25", "secret": "a2557f58ae", "owner": "36819111@N00", "vist_label": "beach", "id": "72157623002404999"}, {"description": "Hest Bank foreshore walk and views of Morecambe Bay", "title": "Hest Bank and Morecambe - 3.1.10", "farm": "3", "date_update": "1366410673", "primary": "4241432634", "server": "2729", "date_create": "1262538674", "photos": "11", "secret": "47777b14eb", "owner": "58428615@N00", "vist_label": "beach", "id": "72157623004900719"}, {"description": "", "title": "PuertoRico", "farm": "3", "date_update": "1305145014", "primary": "4241217369", "server": "2761", "date_create": "1262548590", "photos": "23", "secret": "000677b1b6", "owner": "34089177@N05", "vist_label": "beach", "id": "72157623130756986"}, {"description": "Parry Sound - Dec 31 / Jan 3rd", "title": "R\u00e9veillon 2010", "farm": "5", "date_update": "1356638231", "primary": "4242401564", "server": "4047", "date_create": "1262555536", "photos": "13", "secret": "03a419856c", "owner": "25970113@N08", "vist_label": "beach", "id": "72157623131625252"}, {"description": "The House That Washed Away", "title": "The Half House", "farm": "5", "date_update": "1357092757", "primary": "4243326338", "server": "4029", "date_create": "1262572537", "photos": "18", "secret": "e5f19e93c3", "owner": "64583309@N00", "vist_label": "beach", "id": "72157623133577892"}, {"description": "", "title": "February 2004", "farm": "1", "date_update": "1323816827", "primary": "8344813", "server": "4", "date_create": "1269719471", "photos": "13", "secret": "2ad818787a", "owner": "35475341@N00", "vist_label": "beach", "id": "72157623714990818"}, {"description": "", "title": "Australie 2004", "farm": "1", "date_update": "1377076365", "primary": "4143371", "server": "3", "date_create": "104243", "photos": "23", "secret": "c6810cc13d", "owner": "41918157@N00", "vist_label": "beach", "id": "104243"}, {"description": "", "title": "Wadi Rum - Jordan", "farm": "1", "date_update": "1434881309", "primary": "4273405", "server": "4", "date_create": "107977", "photos": "24", "secret": "d4d6762b40", "owner": "44921934@N00", "vist_label": "beach", "id": "107977"}, {"description": "extended weekend getaway to the beautiful pulau tioman", "title": "malaysia - pulau tioman", "farm": "1", "date_update": "1356181870", "primary": "23461367", "server": "17", "date_create": "1136568355", "photos": "17", "secret": "2a2250a2d9", "owner": "93884954@N00", "vist_label": "beach", "id": "1773586"}, {"description": "2005 marked my first ever Fourth of July at the beach (not just any beach - the powedery sands of Siesta Key near Sarasota, FL)aaaaa", "title": "Independence Day 2005", "farm": "1", "date_update": "1297165136", "primary": "23664144", "server": "17", "date_create": "543257", "photos": "19", "secret": "d30aea30d0", "owner": "72516959@N00", "vist_label": "beach", "id": "543257"}, {"description": "NYC - Amsterdam - Berlin / March 2004", "title": "To Germany", "farm": "1", "date_update": "1398058206", "primary": "1263531", "server": "1", "date_create": "32331", "photos": "25", "secret": "51ee4df656", "owner": "43169829@N00", "vist_label": "beach", "id": "32331"}, {"description": "", "title": "Dec 26, 2009", "farm": "3", "date_update": "1371738085", "primary": "4249299143", "server": "2686", "date_create": "1262748108", "photos": "13", "secret": "ea824f09b2", "owner": "37733967@N00", "vist_label": "beach", "id": "72157623149307698"}, {"description": "A record of Kirsten's six week residency in the wheatbelt of WA", "title": "2005/03 IASKA residency", "farm": "1", "date_update": "1362371241", "primary": "8501447", "server": "8", "date_create": "211102", "photos": "22", "secret": "a9144fbf9b", "owner": "69961849@N00", "vist_label": "beach", "id": "211102"}, {"description": "Panther Beach, Santa Cruz.", "title": "Panther Beach", "farm": "1", "date_update": "1356210123", "primary": "12443361", "server": "10", "date_create": "303758", "photos": "25", "secret": "902b2281d9", "owner": "52179512@N00", "vist_label": "beach", "id": "303758"}, {"description": "", "title": "Audley End & Hedingham Castle with parents - 13th June '04", "farm": "1", "date_update": "1356350479", "primary": "12539210", "server": "9", "date_create": "307435", "photos": "17", "secret": "333e6f00b3", "owner": "78291274@N00", "vist_label": "beach", "id": "307435"}, {"description": "", "title": "Look Out Trouts!", "farm": "3", "date_update": "1302607771", "primary": "4249802907", "server": "2753", "date_create": "1262763189", "photos": "15", "secret": "e13a73b8d5", "owner": "25036906@N02", "vist_label": "beach", "id": "72157623025884131"}, {"description": "Pictures from our Trip to the beach, and dinner on Jan 6th 2010", "title": "Jan 6th 2010", "farm": "5", "date_update": "1382990892", "primary": "4253602144", "server": "4060", "date_create": "1262853758", "photos": "16", "secret": "3443aa6ed1", "owner": "25095063@N04", "vist_label": "beach", "id": "72157623033403863"}, {"description": "", "title": "J&J's Wedding", "farm": "1", "date_update": "1356285582", "primary": "4488998", "server": "3", "date_create": "122372", "photos": "31", "secret": "913d31a0c4", "owner": "89338458@N00", "vist_label": "beach", "id": "122372"}, {"description": "", "title": "Lake Superior, Winter, 2005", "farm": "1", "date_update": "1356633219", "primary": "6167449", "server": "4", "date_create": "154229", "photos": "31", "secret": "8f7bbc4428", "owner": "41894185893@N01", "vist_label": "beach", "id": "154229"}, {"description": "Day trip to Holy Island, off the coast of Northumberland. The island is reached by a causeway that gets swamped by high tide. (Tide tables displayed by side of road, highly recommend writing down tide times.)", "title": "Lindisfarne", "farm": "1", "date_update": "1398793344", "primary": "18198349", "server": "13", "date_create": "430423", "photos": "16", "secret": "f7114cf443", "owner": "18154735@N00", "vist_label": "beach", "id": "430423"}, {"description": "Cefalu is a beautiful tourist town about 40 mins along the coast from Palermo by train.", "title": "Sicily: Cefalu Apr 05", "farm": "2", "date_update": "1429980795", "primary": "635627901", "server": "1303", "date_create": "1182917912", "photos": "25", "secret": "c154d90e8f", "owner": "52049496@N00", "vist_label": "beach", "id": "72157600510977980"}, {"description": "pictures are from a trip down the coast. they are from a picture cd from the local photo shop, and the quality isn't too good...", "title": "oregon 2004", "farm": "1", "date_update": "1416121404", "primary": "143605461", "server": "46", "date_create": "1147208522", "photos": "18", "secret": "cae39739b7", "owner": "97551727@N00", "vist_label": "beach", "id": "72057594130383918"}, {"description": "Boom Festival, Idanha-a-Nova, 26-31/August/2004", "title": "Boom Festival", "farm": "1", "date_update": "1356301818", "primary": "384706", "server": "1", "date_create": "8956", "photos": "12", "secret": "205e0386cd", "owner": "44124472747@N01", "vist_label": "beach", "id": "8956"}, {"description": "", "title": "Sardinia 2003", "farm": "1", "date_update": "1347792556", "primary": "4590481", "server": "3", "date_create": "115611", "photos": "49", "secret": "efbd5d9b2e", "owner": "87983375@N00", "vist_label": "beach", "id": "115611"}, {"description": "As a prestigous national natural reserve, Paracas is a perfect combination of sand and the ocean.\nthere are thousands of wild life vigorously living on this seemingly lifeless peninsula, and sometimes, you just have to marvel at the wonder of nature, and the variety of life.", "title": "Paracas,Peru", "farm": "1", "date_update": "1332135702", "primary": "6243994", "server": "3", "date_create": "155832", "photos": "36", "secret": "e5e1689981", "owner": "80866212@N00", "vist_label": "beach", "id": "155832"}, {"description": "Along the seawall in West Vancouver. June 10, 2005", "title": "Ambleside", "farm": "1", "date_update": "1347943899", "primary": "18628090", "server": "12", "date_create": "439641", "photos": "20", "secret": "df5bd77ae0", "owner": "98583937@N00", "vist_label": "beach", "id": "439641"}, {"description": "", "title": "july 4 weekend 2005", "farm": "1", "date_update": "1357490983", "primary": "24943644", "server": "22", "date_create": "569682", "photos": "40", "secret": "44a1101a07", "owner": "56983131@N00", "vist_label": "beach", "id": "569682"}, {"description": "A day out with my work colleagues at Walberswick, Suffolk", "title": "Crabbing and Kite flying...", "farm": "1", "date_update": "1310320529", "primary": "24943156", "server": "21", "date_create": "569733", "photos": "33", "secret": "a60238bb76", "owner": "52506636@N00", "vist_label": "beach", "id": "569733"}, {"description": "", "title": "Kaikoura", "farm": "1", "date_update": "1310532085", "primary": "14032702", "server": "11", "date_create": "1178363965", "photos": "32", "secret": "8e542c2015", "owner": "86864054@N00", "vist_label": "beach", "id": "72157600179222297"}, {"description": "", "title": "Zambia Safari", "farm": "2", "date_update": "1299088622", "primary": "730283550", "server": "1038", "date_create": "1183666456", "photos": "35", "secret": "c5938e30d4", "owner": "51035727608@N01", "vist_label": "beach", "id": "72157600667854365"}, {"description": "", "title": "Ria Formosa", "farm": "5", "date_update": "1296712634", "primary": "4265837922", "server": "4016", "date_create": "1263207681", "photos": "15", "secret": "413021afa6", "owner": "40538286@N00", "vist_label": "beach", "id": "72157623187187220"}, {"description": "Matarangie Beach and back to Whitianga", "title": "Matarangi Beach", "farm": "3", "date_update": "1305835221", "primary": "4265117180", "server": "2750", "date_create": "1263183003", "photos": "11", "secret": "6ed0298495", "owner": "44066848@N02", "vist_label": "beach", "id": "72157623185538744"}, {"description": "Featuring the Dom Kirke, the final resting place of many Danish royalty, and the Viking Ship Museum, where exhumed Viking ships are studied and replicas built.", "title": "Roskilde, DK October, 2002", "farm": "1", "date_update": "1356395184", "primary": "9170639", "server": "6", "date_create": "1181722048", "photos": "45", "secret": "c2db59a4c7", "owner": "57413424@N00", "vist_label": "beach", "id": "72157600347386579"}, {"description": "This was my first day in South Africa! Totally amazing to see a colony of penguins and the deep blue sea.", "title": "penguins at boulders beach", "farm": "1", "date_update": "1356229892", "primary": "13498213", "server": "9", "date_create": "327855", "photos": "21", "secret": "e96e43d69b", "owner": "51035671176@N01", "vist_label": "beach", "id": "327855"}, {"description": "", "title": "st kilda", "farm": "1", "date_update": "1418352582", "primary": "18826870", "server": "12", "date_create": "447066", "photos": "29", "secret": "2f6bb65d00", "owner": "31331368@N00", "vist_label": "beach", "id": "447066"}, {"description": "July 9/10, 2005\n\n", "title": "Steep Ravine", "farm": "1", "date_update": "1368269177", "primary": "25497520", "server": "23", "date_create": "580901", "photos": "46", "secret": "dbfb2fd4f8", "owner": "80284579@N00", "vist_label": "beach", "id": "580901"}, {"description": "", "title": "Mancora", "farm": "5", "date_update": "1296890126", "primary": "4270999615", "server": "4071", "date_create": "1263391939", "photos": "11", "secret": "7245100365", "owner": "28772817@N08", "vist_label": "beach", "id": "72157623077581621"}, {"description": "", "title": "Miami in January", "farm": "3", "date_update": "1308425337", "primary": "4272118200", "server": "2537", "date_create": "1263402924", "photos": "10", "secret": "d15388019f", "owner": "10324304@N00", "vist_label": "beach", "id": "72157623078574347"}, {"description": "", "title": "Sundowners @La Med", "farm": "3", "date_update": "1341403454", "primary": "4272419044", "server": "2710", "date_create": "1263411453", "photos": "17", "secret": "46a95b475a", "owner": "38955530@N00", "vist_label": "beach", "id": "72157623079379785"}, {"description": "On the way to ballet...", "title": "Sledging to Ashwell - Jan 10", "farm": "5", "date_update": "1419800325", "primary": "4271992929", "server": "4014", "date_create": "1263421546", "photos": "14", "secret": "fba3d21c69", "owner": "43556229@N07", "vist_label": "beach", "id": "72157623080334209"}, {"description": "This was my first trip overseas with my girlfriend and her parents. Really enjoyed myself there!", "title": "Australia Trip'04", "farm": "1", "date_update": "1298851969", "primary": "9358916", "server": "6", "date_create": "765227", "photos": "47", "secret": "31676d92b5", "owner": "19292838@N00", "vist_label": "beach", "id": "765227"}, {"description": "My Aunt and Uncle, Wendy and Kelly Armstrong, came to visit. We ate a big brunch and then took a walk by the tide pools. Paul stopped by, but we missed Greg.", "title": "Armstrongs come to visit.", "farm": "1", "date_update": "1297483858", "primary": "4780257", "server": "4", "date_create": "122401", "photos": "19", "secret": "c8e6df8c3e", "owner": "88114232@N00", "vist_label": "beach", "id": "122401"}, {"description": "", "title": "set 1", "farm": "1", "date_update": "1306175808", "primary": "19271926", "server": "13", "date_create": "452960", "photos": "21", "secret": "228a4416b0", "owner": "22973755@N00", "vist_label": "beach", "id": "452960"}, {"description": "", "title": "Sunshine Coast", "farm": "1", "date_update": "1300601308", "primary": "19377603", "server": "15", "date_create": "454993", "photos": "11", "secret": "e3ed897202", "owner": "98895123@N00", "vist_label": "beach", "id": "454993"}, {"description": "Day three had me waking up in Paihia, a city I'd never heard of before the day before. I'd hiked a ride with Rachel, a travelling Brit. She was headed to the 'burbs of Auckland, so she dropped me off in a city near Auckland. We talked a lot during the drive...", "title": "NZ Trip - Day Three - 22 Feb 05", "farm": "1", "date_update": "1356711339", "primary": "26046089", "server": "21", "date_create": "594941", "photos": "16", "secret": "42b27a6448", "owner": "56184052@N00", "vist_label": "beach", "id": "594941"}, {"description": "Trip to the Basque Country November 2004", "title": "Basque Country", "farm": "1", "date_update": "1356555161", "primary": "1471039", "server": "2", "date_create": "37463", "photos": "35", "secret": "27d234fbf0", "owner": "44124420772@N01", "vist_label": "beach", "id": "37463"}, {"description": "", "title": "James's Birthday Party in Port Elgin", "farm": "1", "date_update": "1356147953", "primary": "3386971", "server": "3", "date_create": "1173986401", "photos": "10", "secret": "bd3bd301f7", "owner": "48889116964@N01", "vist_label": "beach", "id": "72157600001577480"}, {"description": "", "title": "Cote d'Azur", "farm": "5", "date_update": "1301614909", "primary": "4276742351", "server": "4005", "date_create": "1263661024", "photos": "19", "secret": "572595e7e5", "owner": "46514086@N07", "vist_label": "beach", "id": "72157623097130441"}, {"description": "A scenic but cold ride on the ferry to gorge ourselves on Sri Lankan food.", "title": "Staten Island (Dec 09)", "farm": "5", "date_update": "1349999431", "primary": "4277289556", "server": "4003", "date_create": "1263584232", "photos": "10", "secret": "d0afe33914", "owner": "49503100920@N01", "vist_label": "beach", "id": "72157623216453276"}, {"description": "", "title": "Diana Pics", "farm": "5", "date_update": "1319439880", "primary": "4278060654", "server": "4025", "date_create": "1263608599", "photos": "26", "secret": "311f3a334b", "owner": "79559567@N00", "vist_label": "beach", "id": "72157623218395020"}, {"description": "", "title": "The Happy Couple", "farm": "2", "date_update": "1356240734", "primary": "614441313", "server": "1423", "date_create": "1152716096", "photos": "24", "secret": "cbc4d4d9ef", "owner": "27547988@N00", "vist_label": "beach", "id": "72157600469787138"}, {"description": "www.rutlandfree.org/falltour.html", "title": "Vermont Library and Leaf Peeping Tour - Leaves!", "farm": "1", "date_update": "1356219275", "primary": "888215", "server": "1", "date_create": "22863", "photos": "17", "secret": "a8e65ffcbf", "owner": "78199693@N00", "vist_label": "beach", "id": "22863"}, {"description": "", "title": "Santa Cruz", "farm": "1", "date_update": "1356615051", "primary": "26478559", "server": "23", "date_create": "601575", "photos": "16", "secret": "0f7182300d", "owner": "38829991@N00", "vist_label": "beach", "id": "601575"}, {"description": "Christine, Brian, Evan and I took a nice little trip to Panther Beach. All pictures are taken by Chistine.", "title": "Panther Beach Fun in the Sun", "farm": "1", "date_update": "1356210122", "primary": "26455720", "server": "23", "date_create": "604048", "photos": "23", "secret": "d9a9b381be", "owner": "52179512@N00", "vist_label": "beach", "id": "604048"}, {"description": "Une ballade entre St Malo & Dinard, une vingtaine de km entre plage, mer & sous bois", "title": "Un samedi \u00e0 St Malo / Dinard - \u00e9t\u00e9 2005", "farm": "1", "date_update": "1297957651", "primary": "26370689", "server": "21", "date_create": "599274", "photos": "45", "secret": "990bf11728", "owner": "85949953@N00", "vist_label": "beach", "id": "599274"}, {"description": "Dec 31: We went to the City of Gold Coast - one of my favourite places to be! And, we went back to the Valley to have Tibetan. It was truly an awesome cuisine!", "title": "QLD Trip Day 3: Gold Coast (Dec 2009)", "farm": "5", "date_update": "1328441585", "primary": "4280985325", "server": "4056", "date_create": "1263735332", "photos": "14", "secret": "c797eb873d", "owner": "78681550@N00", "vist_label": "beach", "id": "72157623227106842"}, {"description": "", "title": "Photowalk Marseille #1", "farm": "5", "date_update": "1303937477", "primary": "4282579024", "server": "4030", "date_create": "1263754948", "photos": "20", "secret": "412f17e4bc", "owner": "40542804@N06", "vist_label": "beach", "id": "72157623229175918"}, {"description": "San Jose Beach, Guatemala", "title": "XL Party", "farm": "5", "date_update": "1301506791", "primary": "4282705304", "server": "4007", "date_create": "1263757933", "photos": "11", "secret": "91723feeb8", "owner": "36206368@N02", "vist_label": "beach", "id": "72157623229527416"}, {"description": "", "title": "Castarra Bay", "farm": "3", "date_update": "1330138631", "primary": "4282287061", "server": "2698", "date_create": "1263763805", "photos": "11", "secret": "0737afa180", "owner": "24681202@N08", "vist_label": "beach", "id": "72157623230196572"}, {"description": "", "title": "Kaikoura, NZ 2009", "farm": "5", "date_update": "1356182240", "primary": "4283661054", "server": "4057", "date_create": "1266672979", "photos": "26", "secret": "a1a079110f", "owner": "9074713@N06", "vist_label": "beach", "id": "72157623472187146"}, {"description": "", "title": "street", "farm": "5", "date_update": "1297751784", "primary": "4283562079", "server": "4003", "date_create": "1263794130", "photos": "14", "secret": "f541e48d37", "owner": "12210096@N03", "vist_label": "beach", "id": "72157623108347441"}, {"description": "", "title": "Dawn Patrol 11610", "farm": "5", "date_update": "1300963935", "primary": "4283274263", "server": "4030", "date_create": "1263786906", "photos": "19", "secret": "d652864f6b", "owner": "15943429@N07", "vist_label": "beach", "id": "72157623232423090"}, {"description": "", "title": "venetsialaiset kokkola 28/08/04", "farm": "1", "date_update": "1300614634", "primary": "913092", "server": "1", "date_create": "23536", "photos": "29", "secret": "7133059c73", "owner": "49503178415@N01", "vist_label": "beach", "id": "23536"}, {"description": "", "title": "San Diego", "farm": "1", "date_update": "1317651094", "primary": "20159765", "server": "15", "date_create": "471463", "photos": "17", "secret": "99186e9089", "owner": "68336408@N00", "vist_label": "beach", "id": "471463"}, {"description": "", "title": "National Juniors Canoeing Championships 2005", "farm": "1", "date_update": "1356290494", "primary": "20159814", "server": "16", "date_create": "471474", "photos": "35", "secret": "7870ef6970", "owner": "65933365@N00", "vist_label": "beach", "id": "471474"}, {"description": "Photos from my mother's house in rural Ireland", "title": "Cleendra", "farm": "1", "date_update": "1305580788", "primary": "26871802", "server": "23", "date_create": "609127", "photos": "14", "secret": "7e8603005b", "owner": "54072008@N00", "vist_label": "beach", "id": "609127"}, {"description": "A day out at Swanage Railway and on Swanage beach. I get my birthday present - to drive engine no. 80078!", "title": "Swanage Railway Day Out", "farm": "1", "date_update": "1297739645", "primary": "26903189", "server": "23", "date_create": "612755", "photos": "41", "secret": "93088eed0d", "owner": "46117056@N00", "vist_label": "beach", "id": "612755"}, {"description": "", "title": "SF Trip August 2000", "farm": "2", "date_update": "1299088622", "primary": "730316440", "server": "1059", "date_create": "1183666464", "photos": "13", "secret": "b1252e2c5e", "owner": "51035727608@N01", "vist_label": "beach", "id": "72157600667942012"}, {"description": "Jalisco, Mexico", "title": "Puerto Vallarta", "farm": "5", "date_update": "1434223261", "primary": "4287133465", "server": "4055", "date_create": "1263901086", "photos": "20", "secret": "d5b8c0c7bd", "owner": "61266278@N00", "vist_label": "beach", "id": "72157623116815517"}, {"description": "Pictures from a lovely walk on the beach on a sunny winter Sunday. ", "title": "Lulworth Cove", "farm": "5", "date_update": "1301700530", "primary": "4288055371", "server": "4054", "date_create": "1263931551", "photos": "19", "secret": "4c2cfab172", "owner": "46727432@N06", "vist_label": "beach", "id": "72157623119427437"}, {"description": "", "title": "\u63ee\u5225\u8cb3\u62fe\u53c3\u6b72\u751f\u65e5 @ 2010/01/19", "farm": "3", "date_update": "1432695053", "primary": "4287230839", "server": "2749", "date_create": "1263905383", "photos": "10", "secret": "9a8fc3ca26", "owner": "79363739@N00", "vist_label": "beach", "id": "72157623241725680"}, {"description": "another day of big waves.", "title": "Point Lobos - 100119", "farm": "3", "date_update": "1392248798", "primary": "4289681500", "server": "2782", "date_create": "1263955255", "photos": "19", "secret": "a7a19058f4", "owner": "19756080@N00", "vist_label": "beach", "id": "72157623246073176"}, {"description": "I was lucky enough to see an elephant seal mother give birth at Ano Nuevo State Reserve. It's seriously amazing that you can go see things like this in the state parks. ", "title": "A pup is born!", "farm": "5", "date_update": "1297175471", "primary": "4289279615", "server": "4035", "date_create": "1263968187", "photos": "11", "secret": "41b2322d95", "owner": "56525796@N00", "vist_label": "beach", "id": "72157623246970818"}, {"description": "The three Towers of Paine in southern Chile are gigantic granite monoliths shaped by the forces of glacial ice. They are located in Patagonia, 400 km north of Punta Arenas, and about 2,500 km south of the capital Santiago.\n\n\n\nThe Torres del Paine National Park, declared Biosphere Reserve by the UNESCO in 1978, is located there.", "title": "Torres del Paine, Chile", "farm": "1", "date_update": "1356586527", "primary": "10036853", "server": "5", "date_create": "248083", "photos": "25", "secret": "89eafaa42c", "owner": "16863501@N00", "vist_label": "beach", "id": "248083"}, {"description": "Myrtle Beach, SC", "title": "Harley Davidson Bike Week 2005", "farm": "1", "date_update": "1356478527", "primary": "14520438", "server": "14", "date_create": "351482", "photos": "18", "secret": "6197130ba2", "owner": "43836957@N00", "vist_label": "beach", "id": "351482"}, {"description": "Some snaps from Gerard's 30th birthday celebrations at Coldingham Sands, taken with a Lomo and a telephone.", "title": "Coldingham Sands", "farm": "1", "date_update": "1356179486", "primary": "14636731", "server": "12", "date_create": "354054", "photos": "15", "secret": "98ec787520", "owner": "35034349972@N01", "vist_label": "beach", "id": "354054"}, {"description": "", "title": "olympic peninsula", "farm": "1", "date_update": "1300540298", "primary": "5204595", "server": "4", "date_create": "129924", "photos": "27", "secret": "a58326ac97", "owner": "37996595541@N01", "vist_label": "beach", "id": "129924"}, {"description": "Photos Taken along the Great Ocean Road in Victoria, Australia", "title": "Melbourne - Great Ocean Road", "farm": "1", "date_update": "1303790357", "primary": "5148614", "server": "3", "date_create": "134248", "photos": "39", "secret": "8a1f55b2da", "owner": "76384935@N00", "vist_label": "beach", "id": "134248"}, {"description": "Wherein the author is exposed to a display of non-whitebread-cracker culture.", "title": "Carnivale Marseille, 3/05", "farm": "1", "date_update": "1297595570", "primary": "6940034", "server": "6", "date_create": "173123", "photos": "21", "secret": "8276a564d3", "owner": "32985424@N00", "vist_label": "beach", "id": "173123"}, {"description": "Heimgesucht wurde erst die MacExpo (von den Kerlen) und die Innenstadt (von den Damen), danach ging es gemeinsam in den Beach Club.", "title": "Roadtrip nach K\u00f6ln", "farm": "1", "date_update": "1300599563", "primary": "20203333", "server": "17", "date_create": "476835", "photos": "19", "secret": "a598910a13", "owner": "26233790@N00", "vist_label": "beach", "id": "476835"}, {"description": "The gang from David Lloyd Woking having fun in Eastbourne, June 18-19, 2005", "title": "Eastbourne Weekend 2005", "farm": "1", "date_update": "1297270602", "primary": "20578351", "server": "16", "date_create": "480134", "photos": "17", "secret": "71e6148237", "owner": "36868568@N00", "vist_label": "beach", "id": "480134"}, {"description": "Palm Beach, Florida", "title": "Summer Associates' Retreat", "farm": "1", "date_update": "1299836427", "primary": "20620700", "server": "17", "date_create": "481194", "photos": "16", "secret": "ad3e0c5839", "owner": "44124468195@N01", "vist_label": "beach", "id": "481194"}, {"description": "Free Kayaking Day in Hoboken, Frank Sinatra Park. Father's Day, 2005", "title": "Hoboken Day 6/19/2005", "farm": "1", "date_update": "1300590013", "primary": "20511182", "server": "17", "date_create": "483252", "photos": "17", "secret": "554fdc8c2b", "owner": "88629109@N00", "vist_label": "beach", "id": "483252"}, {"description": "", "title": "Pre-Courtney Honeymoon", "farm": "5", "date_update": "1419884806", "primary": "4293833081", "server": "4051", "date_create": "1287536313", "photos": "12", "secret": "9175f645bb", "owner": "51405222@N00", "vist_label": "beach", "id": "72157625201285824"}, {"description": "March 21, 2005 -- the vernal equinox. This was my day.", "title": "DILO (a Day In the Life Of)", "farm": "1", "date_update": "1322969879", "primary": "7129377", "server": "6", "date_create": "177863", "photos": "20", "secret": "4c94e681d1", "owner": "49503179907@N01", "vist_label": "beach", "id": "177863"}, {"description": "Narisa goes to Kauai for the first time.\nJanuary 2005", "title": "Kauai, Hawaii 2005", "farm": "1", "date_update": "1346486336", "primary": "7147386", "server": "7", "date_create": "177893", "photos": "41", "secret": "448653bcab", "owner": "61682420@N00", "vist_label": "beach", "id": "177893"}, {"description": "My day started okay, with my usual fortnightly delivery of frozen food, then a wandered round the garden. I had plans to go out in the afternoon but I didn\u2019t feel too good, lay on my bed and fell asleep! I took a few pics of what I could see from my bed, although didn\u2019t have much hope for anything more as the skies were overcast and I had hoped to get a sunset - however, in the early evening a few gaps appeared in the clouds and so I drove to the coast (just 15 minutes away) and got some nice shots from the top of the cliffs, which made up for my wasted afternoon!", "title": "DILO JUNE 2005", "farm": "1", "date_update": "1403995883", "primary": "20888350", "server": "16", "date_create": "486823", "photos": "37", "secret": "63105e3fa8", "owner": "21222992@N00", "vist_label": "beach", "id": "486823"}, {"description": "", "title": "Lac de Gen\u00e8ve", "farm": "3", "date_update": "1369130635", "primary": "4298462736", "server": "2756", "date_create": "1264276086", "photos": "17", "secret": "0890a44bed", "owner": "41924163@N08", "vist_label": "beach", "id": "72157623144364569"}, {"description": "My first visit to see Tracy!", "title": "San Diego!", "farm": "5", "date_update": "1356495099", "primary": "4299419212", "server": "4017", "date_create": "1264300745", "photos": "19", "secret": "1b623ff4ff", "owner": "46079587@N00", "vist_label": "beach", "id": "72157623146402789"}, {"description": "It was just like "Sideways"--sort of.", "title": "Central Coast Road Trip", "farm": "1", "date_update": "1335968431", "primary": "15206655", "server": "12", "date_create": "369229", "photos": "14", "secret": "61358d3394", "owner": "41894166582@N01", "vist_label": "beach", "id": "369229"}, {"description": "otago international student excursion", "title": "peninsula trip", "farm": "1", "date_update": "1339090492", "primary": "5372169", "server": "6", "date_create": "140057", "photos": "27", "secret": "117c7b780e", "owner": "14427076@N00", "vist_label": "beach", "id": "140057"}, {"description": "A visit to Camp Echo, run by Jessica and Jordan Coleman (see also this set of Blobbing photos)", "title": "Camp Echo Visit", "farm": "1", "date_update": "1426557579", "primary": "28070297", "server": "23", "date_create": "634359", "photos": "28", "secret": "9dbfd93a40", "owner": "43675529@N00", "vist_label": "beach", "id": "634359"}, {"description": "", "title": "2005 Andy Rice's Birthday", "farm": "2", "date_update": "1356282608", "primary": "582919857", "server": "1008", "date_create": "1182466863", "photos": "11", "secret": "772acd1cfa", "owner": "97768382@N00", "vist_label": "beach", "id": "72157600422228599"}, {"description": "Camping in the June 2005.", "title": "Camping 2005", "farm": "1", "date_update": "1356194743", "primary": "28280873", "server": "23", "date_create": "638588", "photos": "32", "secret": "2413b36826", "owner": "54827565@N00", "vist_label": "beach", "id": "638588"}, {"description": "", "title": "nc beach vacation 2004", "farm": "1", "date_update": "1300046834", "primary": "240203", "server": "1", "date_create": "4614", "photos": "16", "secret": "6e862d7af8", "owner": "36521958928@N01", "vist_label": "beach", "id": "4614"}, {"description": "The Holocaust Memorial on Miami Beach is a Holocaust memorial in Miami Beach, Florida. It was conceived by a committee of Holocaust survivors in 1984, formally established in 1985 as the Holocaust Memorial Committee, a non-profit organization. It was designed by Kenneth Treister on a site designated by the City of Miami Beach Commission at Meridian Avenue and Dade Boulevard. The Memorial was opened on Sunday, February 4, 1990, with Nobel laureate Elie Wiesel as guest speaker at the dedication ceremonies.", "title": "Holocaust Memorial Miami Beach", "farm": "3", "date_update": "1297489793", "primary": "4304259490", "server": "2596", "date_create": "1264439116", "photos": "10", "secret": "565fb09fb0", "owner": "50016673@N00", "vist_label": "beach", "id": "72157623282120964"}, {"description": "", "title": "Blue Lagoon", "farm": "3", "date_update": "1356349722", "primary": "4305617544", "server": "2698", "date_create": "1264473978", "photos": "14", "secret": "3a12189417", "owner": "54955309@N00", "vist_label": "beach", "id": "72157623160806783"}, {"description": "", "title": "1/24/2010", "farm": "5", "date_update": "1356146695", "primary": "4304343232", "server": "4001", "date_create": "1264441138", "photos": "13", "secret": "708f5b0f00", "owner": "35294562@N00", "vist_label": "beach", "id": "72157623282319186"}, {"description": "Jan 2010.", "title": "Thillai Trees at Pichavaram", "farm": "5", "date_update": "1428333008", "primary": "4303801857", "server": "4045", "date_create": "1264446838", "photos": "21", "secret": "46a8767da5", "owner": "64924693@N00", "vist_label": "beach", "id": "72157623282877426"}, {"description": "", "title": "Praia da Aguda #1", "farm": "5", "date_update": "1356566687", "primary": "4305121264", "server": "4019", "date_create": "1264460683", "photos": "26", "secret": "c55cc72340", "owner": "15954193@N08", "vist_label": "beach", "id": "72157623284292918"}, {"description": "A short trip to Southern California. All pics taken with my iPhone, touched up and cropped as needed in iPhoto.", "title": "Southern California", "farm": "5", "date_update": "1297249973", "primary": "4305395951", "server": "4062", "date_create": "1264490479", "photos": "27", "secret": "5542c9c2f3", "owner": "37913642@N00", "vist_label": "beach", "id": "72157623286602552"}, {"description": "An homage of sorts to flickr.com/photos/sirio/' "a day at the\u2026" sets. One morning was spent making heart-shaped waffles on Manitou beach.", "title": "A morning at the beach", "farm": "1", "date_update": "1356240546", "primary": "10706255", "server": "5", "date_create": "264258", "photos": "16", "secret": "a4ea852cad", "owner": "48889110751@N01", "vist_label": "beach", "id": "264258"}, {"description": "we went for a walk in bethel this weekend", "title": "autumn sets in", "farm": "1", "date_update": "1399216260", "primary": "569026", "server": "1", "date_create": "14100", "photos": "14", "secret": "3f8e483d8d", "owner": "35034353562@N01", "vist_label": "beach", "id": "14100"}, {"description": "Christmas in June with the old crew.", "title": "Pittwater YHA", "farm": "1", "date_update": "1298003320", "primary": "21608375", "server": "15", "date_create": "502422", "photos": "17", "secret": "08038b02b7", "owner": "50318385@N00", "vist_label": "beach", "id": "502422"}, {"description": "", "title": "Rehobeth Beach 2005", "farm": "1", "date_update": "1297550609", "primary": "21711926", "server": "15", "date_create": "504451", "photos": "16", "secret": "9b5ee037b2", "owner": "85051801@N00", "vist_label": "beach", "id": "504451"}, {"description": "", "title": "dungeness & camber", "farm": "1", "date_update": "1296383821", "primary": "21740325", "server": "15", "date_create": "1145391237", "photos": "15", "secret": "5af7cd3131", "owner": "35152502@N00", "vist_label": "beach", "id": "72057594110710155"}, {"description": "", "title": "Memorial Day Weekend 2005, Lancaster County", "farm": "1", "date_update": "1424914200", "primary": "21811433", "server": "17", "date_create": "506402", "photos": "38", "secret": "eeb486c467", "owner": "49503135631@N01", "vist_label": "beach", "id": "506402"}, {"description": "jack and i did a metric century, which involved going to the US border (amongst other things ;)", "title": "Ride to the border with Jack", "farm": "1", "date_update": "1296857526", "primary": "21721394", "server": "15", "date_create": "504084", "photos": "46", "secret": "08d7abc278", "owner": "93452626@N00", "vist_label": "beach", "id": "504084"}, {"description": "London to the beach in Suffolk, overnight on bikes", "title": "Dunwich Dynamo July 05", "farm": "1", "date_update": "1301541647", "primary": "28429170", "server": "22", "date_create": "641223", "photos": "12", "secret": "e919c35f06", "owner": "40333608@N00", "vist_label": "beach", "id": "641223"}, {"description": "City Island is just like a New England village but it's in New York City. It was actually part of Pelham 100 years ago. Now it's part of Bronx, and is bikable from Pelham.\n\u6709\u8a31\u591a\u7fa9\u5927\u5229\u6d77\u9bae\u9910\u5ef3\u5728\u5cf6\u4e0a", "title": "City Island, NYC", "farm": "1", "date_update": "1299283126", "primary": "16026056", "server": "14", "date_create": "385029", "photos": "14", "secret": "0cec682443", "owner": "14481478@N00", "vist_label": "beach", "id": "385029"}, {"description": "Day trip to the beach 2/27/05. Walking on glass. Pattern waves. Returning naked to the sea.", "title": "Oregon Coast", "farm": "1", "date_update": "1322795407", "primary": "5575953", "server": "5", "date_create": "140462", "photos": "10", "secret": "9ee4fecdbd", "owner": "11939556@N00", "vist_label": "beach", "id": "140462"}, {"description": "feb 25-27, 2005\n\n\n\nsome pics from a weekend cabin trip up in Whidbey Island, WA\n\n\n\nmore here", "title": "whidbey island", "farm": "1", "date_update": "1356155018", "primary": "5645538", "server": "3", "date_create": "141905", "photos": "31", "secret": "829146c0ec", "owner": "20645801@N00", "vist_label": "beach", "id": "141905"}, {"description": "Some photos from the honeymoon", "title": "Australia", "farm": "1", "date_update": "1305741257", "primary": "29299804", "server": "22", "date_create": "659687", "photos": "13", "secret": "2375b7bbc2", "owner": "37525819@N00", "vist_label": "beach", "id": "659687"}, {"description": "", "title": "Polihale State Park, Day 2", "farm": "5", "date_update": "1351566022", "primary": "4315389478", "server": "4036", "date_create": "1264824986", "photos": "17", "secret": "80b350e937", "owner": "79627696@N00", "vist_label": "beach", "id": "72157623186332497"}, {"description": "I didn't get near as many good photos as I would have liked, but it was a great experience. My niece, brother and I went to Mavericks and a few other beaches along the 101 on a particularly stormy day. It's so beautiful out there, and I had no idea it was so close to the city. Planning on doing that again when it's nice out!", "title": "Photowalk B - Mavericks and Ocean Beaches", "farm": "3", "date_update": "1356474889", "primary": "4313742163", "server": "2772", "date_create": "1264792350", "photos": "14", "secret": "7cd87d19fc", "owner": "32193516@N00", "vist_label": "beach", "id": "72157623308486442"}, {"description": "Pictures from a holiday at Rhodes Greece, July 2004", "title": "Rhodes", "farm": "1", "date_update": "1356191529", "primary": "629430", "server": "1", "date_create": "15812", "photos": "14", "secret": "24ef7f6547", "owner": "33538127@N00", "vist_label": "beach", "id": "15812"}, {"description": "", "title": "Tijuana", "farm": "1", "date_update": "1297145740", "primary": "22737787", "server": "18", "date_create": "681760", "photos": "41", "secret": "c71fa93968", "owner": "58056007@N00", "vist_label": "beach", "id": "681760"}, {"description": "Rhossili, on the Gower peninsula, Wales, is spectacular. Joana and I took Megadog there one summer. Enjoy.", "title": "Rhossili Joana Trip 06/04", "farm": "1", "date_update": "1421128946", "primary": "4058726", "server": "3", "date_create": "102283", "photos": "21", "secret": "d72bbd215e", "owner": "13019485@N00", "vist_label": "beach", "id": "102283"}, {"description": "Our trip to the Pinnacles, Hahei & surrounding areas in the Coromandel from 29 January 2005", "title": "The Pinnacles", "farm": "1", "date_update": "1415091944", "primary": "4036207", "server": "3", "date_create": "262948", "photos": "39", "secret": "e65f139dd9", "owner": "63709829@N00", "vist_label": "beach", "id": "262948"}, {"description": "Begin mei gingen alle Chirogroepen van Gewest Lach een dagje naar zee.", "title": "Gewestdag 2005", "farm": "1", "date_update": "1297284783", "primary": "16636052", "server": "14", "date_create": "397604", "photos": "24", "secret": "1781e4aa25", "owner": "55793620@N00", "vist_label": "beach", "id": "397604"}, {"description": "", "title": "Argyll and Bute", "farm": "1", "date_update": "1356169962", "primary": "16657949", "server": "14", "date_create": "1296501826", "photos": "13", "secret": "239e48e32c", "owner": "13566646@N00", "vist_label": "beach", "id": "72157625822567905"}, {"description": "", "title": "Avenir-Mattancherry-Vypin-Trip", "farm": "2", "date_update": "1300303682", "primary": "742950858", "server": "1152", "date_create": "1183763546", "photos": "13", "secret": "65799b03e1", "owner": "51211570@N00", "vist_label": "beach", "id": "72157600690249881"}, {"description": "", "title": "Holidays-Australia-Fraser Island", "farm": "1", "date_update": "1297348916", "primary": "550213852", "server": "221", "date_create": "1066213589", "photos": "33", "secret": "bdd2d90b21", "owner": "23872627@N00", "vist_label": "beach", "id": "72157600361089862"}, {"description": "\u00a9\u00f32004\u00a4\u00b8\u00a5\u00b9,\u00b6V\u00af\u00c5\u00acD\u00be\u00d4\u00abn\u00b4\u00f2\u00a4j\u00a4s,\u00a8\u00ab\u00a6V\u00a7\u00da\u00aa\u00ba\u00b2\u00c4\u00a5|\u00ad\u00d3\u00a6\u00ca\u00a9\u00a8...", "title": "2004 \u5143\u65e6\uff0c\u5357\u6e56\u5927\u5c71", "farm": "2", "date_update": "1356144569", "primary": "740982677", "server": "1322", "date_create": "1183753997", "photos": "36", "secret": "76c4fbf2b9", "owner": "61234066@N00", "vist_label": "beach", "id": "72157600688361277"}, {"description": "", "title": "2004 Spring Break- California part 2", "farm": "2", "date_update": "1311171734", "primary": "1016834124", "server": "1143", "date_create": "1186312219", "photos": "46", "secret": "63ca4d120d", "owner": "16919780@N00", "vist_label": "beach", "id": "72157601233565483"}, {"description": "", "title": "Tolleybean", "farm": "2", "date_update": "1435524053", "primary": "844679966", "server": "1084", "date_create": "1184770491", "photos": "24", "secret": "4bb3f4df0a", "owner": "66999112@N00", "vist_label": "beach", "id": "72157600883720089"}, {"description": "", "title": "Ireland", "farm": "2", "date_update": "1296666625", "primary": "1417822317", "server": "1262", "date_create": "1190393872", "photos": "19", "secret": "04fdb32c73", "owner": "87376165@N00", "vist_label": "beach", "id": "72157602100596844"}, {"description": "26-28 November trip down the Hawkesbury on a houseboat", "title": "Wallamba - Hawkesbury river trip", "farm": "1", "date_update": "1296688058", "primary": "1751518", "server": "2", "date_create": "44488", "photos": "35", "secret": "9487df5eda", "owner": "23872627@N00", "vist_label": "beach", "id": "44488"}, {"description": "This is the second annual retreat to the beach for Thansgiving. This year, the house was even bigger!", "title": "Thanksgiving 2004 Emerald Isle", "farm": "1", "date_update": "1356492959", "primary": "1798486", "server": "2", "date_create": "45594", "photos": "27", "secret": "db20de1a2f", "owner": "51035730657@N01", "vist_label": "beach", "id": "45594"}, {"description": "Pictures from the Pushkar Camel Mela in Pushkar, Rajasthan, India.", "title": "Pushkar", "farm": "1", "date_update": "1356405358", "primary": "2057066", "server": "2", "date_create": "51698", "photos": "24", "secret": "b537e2ce80", "owner": "51035675954@N01", "vist_label": "beach", "id": "51698"}, {"description": "A lot of these shots are actually done by my mate on my camera but I like them a lot so I decided to stick them up here anyway. \n\nIt was one of our days off and the weather was great so we went for a ride down the jump track up near the windmill in Wellington.", "title": "Making the Most of a Sunny Day", "farm": "8", "date_update": "1356149829", "primary": "6805896217", "server": "7010", "date_create": "1328216979", "photos": "25", "secret": "fa5d38f78f", "owner": "66373163@N08", "vist_label": "bike_race", "id": "72157629147970635"}, {"description": "", "title": "Stupor Bowl 13", "farm": "3", "date_update": "1427812951", "primary": "4342673086", "server": "2773", "date_create": "1265686212", "photos": "16", "secret": "902a6205ca", "owner": "32195144@N00", "vist_label": "bike_race", "id": "72157623260159343"}, {"description": "", "title": "things to do in January", "farm": "1", "date_update": "1300570641", "primary": "351828543", "server": "131", "date_create": "1168363584", "photos": "13", "secret": "248164c630", "owner": "45011053@N00", "vist_label": "bike_race", "id": "72157594469687683"}, {"description": "", "title": "Pescadero RR (unselected/unprocessed)", "farm": "1", "date_update": "1356200654", "primary": "354305634", "server": "123", "date_create": "1168842555", "photos": "13", "secret": "2370f64535", "owner": "36101700372@N01", "vist_label": "bike_race", "id": "72157594480294603"}, {"description": "16th edition of the annual race on New Year's Day in Merseburg.\nWinners:\n- 1.7km (female category): Nathalie Schupeck (7.06 mins).\n- 1.7km (male): Gerhard Hoffmann (5.44)\n- 5.1km (female): Saskia Mangold (19.56)\n- 5.1km (male): Julius Lawnik (15.51)\n- My time: 9.30 (1.7km)\n- Total number of participants: 550.", "title": "16. Merseburger Neujahrslauf", "farm": "8", "date_update": "1413150642", "primary": "6679166943", "server": "7145", "date_create": "1326317976", "photos": "14", "secret": "93ab50edd6", "owner": "42589835@N03", "vist_label": "bike_race", "id": "72157628828831189"}, {"description": "These are some of the photos taken for the Momentum Magazine CCX article", "title": "Momentum CCX Article", "farm": "1", "date_update": "1303259518", "primary": "356624143", "server": "140", "date_create": "1168758064", "photos": "16", "secret": "f468ac70f5", "owner": "72141071@N00", "vist_label": "bike_race", "id": "72157594478267519"}, {"description": "Prova de rua no circuito do Anhembi.\n\nS\u00e3o Paulo, 13 e 14 de mar\u00e7o de 2010.", "title": "S\u00e3o Paulo Indy 300", "farm": "5", "date_update": "1415105701", "primary": "4429469765", "server": "4043", "date_create": "1268511722", "photos": "30", "secret": "d4e28b0b8c", "owner": "40463436@N00", "vist_label": "bike_race", "id": "72157623488622261"}, {"description": "an Airstreamforums rally at Topsail Hill Reservation State Park in January 2006", "title": "\"Can Opener Rally\" 2007", "farm": "1", "date_update": "1321902602", "primary": "358611370", "server": "138", "date_create": "1168894599", "photos": "13", "secret": "3621833ced", "owner": "73175288@N00", "vist_label": "bike_race", "id": "72157594481468253"}, {"description": "Uvas South Bay Triathlon - 3/4 Mile Swim, 16 Mile Bike, 5 Mile Run, 5/14/05", "title": "2005 South Bay", "farm": "1", "date_update": "1302434220", "primary": "14046279", "server": "9", "date_create": "339963", "photos": "23", "secret": "695134463c", "owner": "60123379@N00", "vist_label": "bike_race", "id": "339963"}, {"description": "Photos from the Feb. 21, 2010 Cyclo Frost cyclocross race in downtown Madison, WI - part of the Madison Winter Festival.", "title": "Cyclo Frost 2010", "farm": "5", "date_update": "1356373759", "primary": "4380137370", "server": "4056", "date_create": "1266869773", "photos": "14", "secret": "e367113569", "owner": "90428457@N00", "vist_label": "bike_race", "id": "72157623363773341"}, {"description": "The last race on Tuesdayevening.\nJuniors, nieuweling, amB and stayers.\nWith podium stayercompetition 2009 - 2010\nAll those pictures made in Sportpaleis Alkmaar.\nDate: 23 feb. 2010", "title": "AOD-23feb-2010-and-Stayers", "farm": "3", "date_update": "1424537866", "primary": "4384692091", "server": "2693", "date_create": "1267036024", "photos": "18", "secret": "f497a7d440", "owner": "8749006@N06", "vist_label": "bike_race", "id": "72157623501489774"}, {"description": "Photos taken from the middle of the final climb on Stage 10 of the 2005 Tour de France.", "title": "Tour de France - Courcheval", "farm": "1", "date_update": "1296936231", "primary": "25995015", "server": "22", "date_create": "591459", "photos": "38", "secret": "af757dc68b", "owner": "30523851@N00", "vist_label": "bike_race", "id": "591459"}, {"description": "Photos from the 2005 Tour De Gastown - with a twist! I developed some of these photos in a 15% solution of tonic water at 1:100 Rodinal concentration. Also I put the film through a rinse of alternating hot and cold water. It was "interesting"", "title": "2005 Tour De Gastown", "farm": "1", "date_update": "1356144938", "primary": "46337703", "server": "31", "date_create": "1011990", "photos": "18", "secret": "585e3ebc95", "owner": "91041780@N00", "vist_label": "bike_race", "id": "1011990"}, {"description": "Thanks to Andrea for taking the pictures!\nAnnual Bike Race (30 km offroad) in St. Catherines, ON.", "title": "Squeezer 2005", "farm": "1", "date_update": "1356969754", "primary": "47111408", "server": "28", "date_create": "1027128", "photos": "16", "secret": "a77373b758", "owner": "34067077@N00", "vist_label": "bike_race", "id": "1027128"}, {"description": "Bike drag races on open roads in Oakland, PA. Also skid & track stand competitions.\n\nUnfortunately, I don't have many pictures of the races themselves. I didn't start shooting until my heats were done. Apologies also for the graininess & bluriness; not wanting to blind cyclist sprinting through cars at 30 mph, I skipped the flash.\n\nWe were racing 3 man heats. I finished inches behind Nathan in the first heat to advance to the wildcard round where was second by a few bike lengths to Zak and was out. Better luck next time I guess.", "title": "Drag City!", "farm": "1", "date_update": "1417285295", "primary": "50669751", "server": "28", "date_create": "1128889147", "photos": "27", "secret": "45973e54ae", "owner": "12583853@N00", "vist_label": "bike_race", "id": "1104109"}, {"description": "A photo record of a bike ride along the Leeds Liverpool canal in Lancashire from Hindley to Adlington. 12 miles of muddy hell. Most of these photos were taken by Bethen on the new gizmo. She's not bad!", "title": "First Bike Ride of 2006", "farm": "1", "date_update": "1301524419", "primary": "89291266", "server": "33", "date_create": "1137859953", "photos": "22", "secret": "29198ab5c8", "owner": "48167453@N00", "vist_label": "bike_race", "id": "72057594051661797"}, {"description": "Photos from stage 3 of the Tour of California (Individual Time Trial)", "title": "Tour of California: Stage 3", "farm": "1", "date_update": "1356200612", "primary": "103190846", "server": "40", "date_create": "1140650243", "photos": "39", "secret": "6cbe6149cc", "owner": "36101700372@N01", "vist_label": "bike_race", "id": "72057594068779588"}, {"description": "", "title": "Act IV", "farm": "1", "date_update": "1356369548", "primary": "152727922", "server": "76", "date_create": "1148513969", "photos": "36", "secret": "e73db419f5", "owner": "21837226@N00", "vist_label": "bike_race", "id": "72157594144379059"}, {"description": "", "title": "06 June Bedsfattrax Chicksands 4x mountain bike racing", "farm": "1", "date_update": "1297265116", "primary": "160283909", "server": "44", "date_create": "1149456051", "photos": "39", "secret": "1b9083581a", "owner": "84613938@N00", "vist_label": "bike_race", "id": "72157594155491723"}, {"description": "Flying from Copenhagen to Dulles to Denver to Santa Barbara.", "title": "CPH to IAD to DEN to SBA", "farm": "1", "date_update": "1297047593", "primary": "162363485", "server": "62", "date_create": "1149687229", "photos": "49", "secret": "5cd8908aa6", "owner": "52614599@N00", "vist_label": "bike_race", "id": "72157594158582516"}, {"description": "Ironman 70.3 Buffalo Springs Lake near Lubbock Texas.", "title": "Buffalo Springs", "farm": "1", "date_update": "1296512551", "primary": "177110753", "server": "55", "date_create": "1152358101", "photos": "38", "secret": "6100aae45b", "owner": "81425939@N00", "vist_label": "bike_race", "id": "72157594191594416"}, {"description": "", "title": "E at the moon walk and rides", "farm": "1", "date_update": "1306433614", "primary": "18787100", "server": "12", "date_create": "442373", "photos": "16", "secret": "6742fcbadc", "owner": "94258075@N00", "vist_label": "bike_race", "id": "442373"}, {"description": "Uvas South Bay Triathlon - 2006", "title": "2006 South Bay", "farm": "1", "date_update": "1301006475", "primary": "150736556", "server": "49", "date_create": "1148252930", "photos": "26", "secret": "1756cc9e2c", "owner": "60123379@N00", "vist_label": "bike_race", "id": "72057594141428750"}, {"description": "", "title": "Dumfies & Galloway biking '06", "farm": "1", "date_update": "1325093398", "primary": "155406138", "server": "67", "date_create": "1149079669", "photos": "11", "secret": "c79beb5183", "owner": "44124406151@N01", "vist_label": "bike_race", "id": "72157594150856962"}, {"description": "Photos from the Race for Life in Oxford, UK on Sunday 4th June 2006", "title": "Race for Life 2006", "farm": "1", "date_update": "1357076846", "primary": "160180965", "server": "76", "date_create": "1149448114", "photos": "15", "secret": "494e8adb43", "owner": "22352091@N00", "vist_label": "bike_race", "id": "72157594155344623"}, {"description": "21st Annual Law Enforcement Torch Run . Special Olympics of the District of Columbia . en route to Fort McNair . 4/M, SW . WDC . Friday morning, 9 June 2006\n__________\nI would first capture the annual Law Enforcement Special Olympics Torch Relay on 13 June 1997 at the US Capitol during the 12th Annual Law Enforcement Special Olympics Torch Relay. See www.flickr.com/photos/perspective/tags/12lesotr13jun97/.\n\nElvert Xavier Barnes Photography ", "title": "Special Olympics / DC 21st Law Enforcement Torch Run 2006 / Washington DC", "farm": "1", "date_update": "1376804965", "primary": "163727832", "server": "67", "date_create": "1149877667", "photos": "24", "secret": "befcbe4af3", "owner": "95413346@N00", "vist_label": "bike_race", "id": "72157594160746917"}, {"description": "June 15, 2006- Nonsense News Service - Andrea Luey\n \nThe second Barbie Bike Olympic games was held on June 12, 2006 at the University of Victoria. These games featured two time trials (the short track, and the challenging grass/pavement course), as well as an exhibition event in the Fountain.\n \nThe defending champion, Andrea Luey was back in action. Absent from the competition was past silver medalist Tony Geluch, who was apparently working for the Man in Vancouver. His presence was sorely missed, but his spirit was not forgotten. Despite this gap, the addition as a competitor of the official BBO photographer, Melinda, as well as Mr Barbie Bike himself, Robert Shirkey set the stage for what many spectators thought would be a tight three-way race. The end results, however, showed Mr. Shirkey with a clear win over Luey and Skeels. Despite the obvious disadvantage of being the only competitor wearing flip-flops, as well as a very ill-timed laugh-attack that literally took her breath away, Luey's effort and passion reminded many in the audience what this competition is all about. Unfortunately, her passion was not enough to post strong results. Skeels, still recovering from a recent BB accident in which she broke both a rib and her laptop, displayed grit and determination that would make everyone in the BB co-op proud. Not surprisingly, her injury impeded her success and her times were simply not up to par. However, Skeels' performance will be remembered as feisty and inspiring, proving that a broken rib does not mean a broken spirit.\n \nMeanwhile, Shirkey put in nearly flawless performances which placed him comfortably at the top of the standings in both events. His comfort and familiarity with the BB (despite its recent tune-up) were obvious advtanages for him, which he combined with a strong degree of preparation and focus to easily win the competition.\n \nDespite having very important things to do after the games, the competitors were available for quick comment. Both Luey and Shirkey confirmed that they will now call Toronto home and thus will not be around the BB for some time. Skeels added that she is the present caretaker of the BB and will treat it with the high level respect that it is due, as well as ensure that others do the same. Luey dreamily mentioned that she hopes to find a sister BB in Toronto so that the values that the BB represents--community, sharing and foolishness--can grow stronger in a city where people sometimes take themselves a little too seriously. Before rushing off to other shennanigans, Luey stated quite simply: "The world needs more Barbie BIkes."", "title": "Barbie-Bike Olympics Round II", "farm": "1", "date_update": "1356152960", "primary": "169098364", "server": "71", "date_create": "1150575716", "photos": "27", "secret": "616d7307dd", "owner": "25497144@N00", "vist_label": "bike_race", "id": "72157594168728431"}, {"description": "", "title": "Madison's First Keirin Race", "farm": "1", "date_update": "1341513323", "primary": "175673815", "server": "77", "date_create": "1151374916", "photos": "21", "secret": "59708545a4", "owner": "61518827@N00", "vist_label": "bike_race", "id": "72157594178770280"}, {"description": "", "title": "N\u00fcrburgring July 2006", "farm": "1", "date_update": "1356177389", "primary": "181069792", "server": "67", "date_create": "1151965120", "photos": "12", "secret": "5180105b0d", "owner": "63519570@N00", "vist_label": "bike_race", "id": "72157594186275466"}, {"description": "", "title": "07-2004 San Jacinto Park", "farm": "4", "date_update": "1416150588", "primary": "2809160018", "server": "3250", "date_create": "1220028807", "photos": "15", "secret": "c1c3c8ba0d", "owner": "22038195@N07", "vist_label": "birthday", "id": "72157607009196210"}, {"description": "", "title": "07-2007 Jared's Birthday Party", "farm": "4", "date_update": "1416150587", "primary": "2809425215", "server": "3196", "date_create": "1220063190", "photos": "13", "secret": "8959757612", "owner": "22038195@N07", "vist_label": "birthday", "id": "72157607015477072"}, {"description": "Jeff's Birthday is December 12, and Gary's is December 11, so my mom had a nice little celebration for them at her house on the 10th. ", "title": "Gary and Jeff's Birthday", "farm": "1", "date_update": "1356246327", "primary": "341895033", "server": "149", "date_create": "1167711915", "photos": "11", "secret": "62db6b2c9f", "owner": "56394555@N00", "vist_label": "birthday", "id": "72157594453346147"}, {"description": "", "title": "49 and counting", "farm": "8", "date_update": "1356787553", "primary": "6614838197", "server": "7143", "date_create": "1325451823", "photos": "16", "secret": "05729c0acd", "owner": "98038348@N00", "vist_label": "birthday", "id": "72157628668713213"}, {"description": "I had a great dinner at "$" in London for my 39th Birthday.", "title": "My Birthday Dinner - London 2004", "farm": "1", "date_update": "1410687110", "primary": "8096311", "server": "6", "date_create": "201820", "photos": "14", "secret": "e3350a55f2", "owner": "50092654@N00", "vist_label": "birthday", "id": "201820"}, {"description": "", "title": "2000-Home, Friends, and Family", "farm": "2", "date_update": "1307446619", "primary": "1479800945", "server": "1332", "date_create": "1191462972", "photos": "29", "secret": "d4ff3905e0", "owner": "80698640@N00", "vist_label": "birthday", "id": "72157602258046251"}, {"description": "Students in Mrs. Ringquist's third grade classroom celebrated Dr. Seuss's birthday, also known as Read Across America Day, by immersing themselves in all things Seuss.\n\nAs part of their celebration, they enjoyed a Skype conversation with a fourth grade class from Alabama. The Alabama fourth-graders read a Dr. Seuss poem; Mrs. Ringquist's third graders shared some quiz questions about the life of Mr. Seuss.", "title": "Mrs. Ringquist's class: Read Across America Day", "farm": "5", "date_update": "1326486906", "primary": "4402378176", "server": "4042", "date_create": "1267564510", "photos": "12", "secret": "784c3590fb", "owner": "45716980@N00", "vist_label": "birthday", "id": "72157623418136791"}, {"description": "Ernest is the brother to Charles Coulter, Doug's grandfather. Ernest's wife was Libby and they had one daughter Dorothy who married Lewis Laursen. They had one son, Russell", "title": "Ernest \"Skinny\" Coulter Family", "farm": "5", "date_update": "1304115828", "primary": "4401839319", "server": "4014", "date_create": "1267570674", "photos": "20", "secret": "3f94f84dd9", "owner": "43507350@N00", "vist_label": "birthday", "id": "72157623418728631"}, {"description": "Dinner for a friend's birthday at Efes One Turkish Restaurant, 293 Sandgate Rd, Albion, Brisbane, Queensland, Australia.\n\nHighly yummy and recommended. Phone (07) 3862 4599 \n(+617 3862 4599)\n\nSet includes photos from the walk from the train station, and from sitting out the front having a cigarette", "title": "Dinner at Efes One Turkish Restaurant, Albion, Queensland, Australia", "farm": "1", "date_update": "1356145566", "primary": "344673774", "server": "134", "date_create": "1167867772", "photos": "18", "secret": "0aed3fa227", "owner": "58301516@N00", "vist_label": "birthday", "id": "72157594457718293"}, {"description": "December 2009", "title": "Melinda & Mark's Birthday", "farm": "5", "date_update": "1357261089", "primary": "4242266897", "server": "4041", "date_create": "1262569248", "photos": "17", "secret": "5821c4773f", "owner": "94343895@N00", "vist_label": "birthday", "id": "72157623008608029"}, {"description": "", "title": "aedyn's 1st birthday party", "farm": "5", "date_update": "1425959103", "primary": "4243543272", "server": "4031", "date_create": "1262574591", "photos": "25", "secret": "8cc8b0c731", "owner": "10581108@N00", "vist_label": "birthday", "id": "72157623009191443"}, {"description": "", "title": "Grandpa's Birthday", "farm": "8", "date_update": "1356145464", "primary": "6626735987", "server": "7172", "date_create": "1325580977", "photos": "23", "secret": "cb14b42a74", "owner": "43053584@N00", "vist_label": "birthday", "id": "72157628695299483"}, {"description": "", "title": "iPad Frenzy\u2122", "farm": "5", "date_update": "1296780980", "primary": "4486978629", "server": "4011", "date_create": "1270322117", "photos": "15", "secret": "41c284c066", "owner": "64528316@N00", "vist_label": "birthday", "id": "72157623637962265"}, {"description": "So much fun, I wish I had gotten more pictures.a", "title": "Dani and Martijn's Birthday Bash", "farm": "1", "date_update": "1301733723", "primary": "4287803", "server": "3", "date_create": "108359", "photos": "13", "secret": "dea0b18d7c", "owner": "36521956509@N01", "vist_label": "birthday", "id": "108359"}, {"description": "I'm There: A Birthday Celebration for the City of Chicago\n\npresented by Chicago Art Department", "title": "CAD: Happy Birthday Chicago", "farm": "5", "date_update": "1395557489", "primary": "4408005024", "server": "4069", "date_create": "1267759131", "photos": "12", "secret": "2df1ec247c", "owner": "60258967@N00", "vist_label": "birthday", "id": "72157623557127596"}, {"description": "Cousin Alyssa Kayatani's fifth birthday at Chuck E. Cheese's.", "title": "Alyssa's Party", "farm": "1", "date_update": "1431931487", "primary": "1926768", "server": "2", "date_create": "55663", "photos": "11", "secret": "36e1de0d30", "owner": "35034363370@N01", "vist_label": "birthday", "id": "55663"}, {"description": "Great party on the charter boat CELEBRATION -- BJ's 70th birthday party", "title": "BJ Birthday and Prados citizenship", "farm": "3", "date_update": "1383431973", "primary": "4336639468", "server": "2756", "date_create": "1265512900", "photos": "11", "secret": "0b87fe5fdb", "owner": "10753294@N05", "vist_label": "birthday", "id": "72157623368307608"}, {"description": "", "title": "Megan's Second Birthday", "farm": "5", "date_update": "1423059054", "primary": "4410413261", "server": "4063", "date_create": "1267964605", "photos": "12", "secret": "f814dea5b8", "owner": "93178668@N00", "vist_label": "birthday", "id": "72157623570949068"}, {"description": "", "title": "Guinness Storehouse", "farm": "3", "date_update": "1304991973", "primary": "4412172240", "server": "2707", "date_create": "1267914201", "photos": "25", "secret": "477fec34b4", "owner": "47466832@N02", "vist_label": "birthday", "id": "72157623443117787"}, {"description": "January 6, 2007\n\nSince Amelia's birthday was on Tuesday and Grandma and Grandpa had to drive up to L.A. on Sunday, we had a small dinner together at Cec and Mike's house for Amelia's 1st birthday. I gave her a TMX Elmo - 1 of 2 that Francis/Jay and I bought at Wal-Mart a week before Christmas.", "title": "Amelia's 1st Birthday: January 2007", "farm": "1", "date_update": "1306443709", "primary": "349122557", "server": "165", "date_create": "1168198607", "photos": "28", "secret": "fa4fbf89b8", "owner": "23238799@N00", "vist_label": "birthday", "id": "72157594465502864"}, {"description": "", "title": "In Self Defense of Freedom", "farm": "5", "date_update": "1352932172", "primary": "4417897821", "server": "4017", "date_create": "1268094310", "photos": "30", "secret": "3f454d504b", "owner": "27729739@N05", "vist_label": "birthday", "id": "72157623457889593"}, {"description": "2005.04.09 - dogwood festival, then take-out from harry's and son's, and cake at mark's", "title": "Birthday @ dogwood/mark's", "farm": "1", "date_update": "1369789348", "primary": "24603548", "server": "23", "date_create": "562456", "photos": "26", "secret": "a1f0b731c6", "owner": "22962125@N00", "vist_label": "birthday", "id": "562456"}, {"description": "My sister's (Tanya) 30th birthday party at the Queen Marys Boat Club", "title": "Tanya's 30th Birthday", "farm": "1", "date_update": "1344255946", "primary": "24554550", "server": "23", "date_create": "563409", "photos": "17", "secret": "b964987af9", "owner": "50071788@N00", "vist_label": "birthday", "id": "563409"}, {"description": "Part of a series I did for a friend of mine. She inspired herself in Lady Gaga for a picture to be included in the invitation for a birthday party she's throwing.\nParte de una serie que hice para una amiga. Se inspir\u00f3 en Lady Gaga para una foto que se incluir\u00eda en la invitaci\u00f3n para su fiesta de cumplea\u00f1os.", "title": "Manu Gaga", "farm": "5", "date_update": "1310989912", "primary": "4423618832", "server": "4008", "date_create": "1268331488", "photos": "10", "secret": "7c6181bc6f", "owner": "45367669@N07", "vist_label": "birthday", "id": "72157623600718190"}, {"description": "", "title": "Tom's 36th Birthday 2006", "farm": "5", "date_update": "1299882636", "primary": "4266867996", "server": "4067", "date_create": "1263236107", "photos": "10", "secret": "a38053429d", "owner": "10371811@N06", "vist_label": "birthday", "id": "72157623189816622"}, {"description": "", "title": "Richard's 18th Birthday 2008", "farm": "5", "date_update": "1299883185", "primary": "4267571866", "server": "4019", "date_create": "1263253058", "photos": "19", "secret": "1d53b7de34", "owner": "10371811@N06", "vist_label": "birthday", "id": "72157623191664192"}, {"description": "", "title": "Roy Voragen's Birthday Party", "farm": "5", "date_update": "1356155997", "primary": "4350435671", "server": "4027", "date_create": "1265974732", "photos": "21", "secret": "5d9f7d7b73", "owner": "99111030@N00", "vist_label": "birthday", "id": "72157623417353008"}, {"description": "Slate's venerable Political Gabfest came to New York City, and I came along to shoot it, as ever. Delightful to have such familiar sounds echoing out only a few stops away from our apartment.\n\nThey were even more delightfully raucous with the addition of a drinking game, and afterwards there were beers with Dana Stevens and other Slate NYC luminaries. Huzzah, what an evening! ", "title": "the big city \u2019fest", "farm": "5", "date_update": "1356288128", "primary": "4427594721", "server": "4067", "date_create": "1268439096", "photos": "28", "secret": "20f13ba3c3", "owner": "72324736@N00", "vist_label": "birthday", "id": "72157623608444838"}, {"description": "Dinner in the wine room at Antonio's. I'm still waiting for the mariachis to show up and play Smoke on the Water.", "title": "Dan's Birthday Dinner 2010", "farm": "5", "date_update": "1327428909", "primary": "4271066033", "server": "4065", "date_create": "1263393850", "photos": "13", "secret": "261b0e6e99", "owner": "45254765@N00", "vist_label": "birthday", "id": "72157623077743059"}, {"description": "", "title": "Birthday 2010", "farm": "5", "date_update": "1435362615", "primary": "4270785890", "server": "4006", "date_create": "1263353324", "photos": "20", "secret": "688b99dc9c", "owner": "48889052497@N01", "vist_label": "birthday", "id": "72157623199658422"}, {"description": "", "title": "Fred and Michelle's birthday party", "farm": "1", "date_update": "1356277460", "primary": "9355143", "server": "8", "date_create": "234980", "photos": "28", "secret": "e046870bcd", "owner": "79833656@N00", "vist_label": "birthday", "id": "234980"}, {"description": "", "title": "1990's Del and Murm Family", "farm": "3", "date_update": "1299431029", "primary": "4434267712", "server": "2691", "date_create": "1268625697", "photos": "16", "secret": "b438f35655", "owner": "43507350@N00", "vist_label": "birthday", "id": "72157623622591484"}, {"description": "A glimpse into Matt's 21st birthday festivities", "title": "Matt's 21st Birthday Party", "farm": "1", "date_update": "1356140548", "primary": "3395355", "server": "3", "date_create": "85112", "photos": "15", "secret": "a565cc3578", "owner": "44124434485@N01", "vist_label": "birthday", "id": "85112"}, {"description": "OTC Funk at Bangkok Blues on January 14, 2010.\n\nLiam Voth\nAlex Ben-Abdullah\nStephen Strickler\nAndrew Clark\n\nPlay that funky music, white boys.", "title": "OTC Funk in concert (Jan. 14, 2010)", "farm": "3", "date_update": "1432297421", "primary": "4276298067", "server": "2502", "date_create": "1263577910", "photos": "16", "secret": "8e12da020a", "owner": "23680544@N07", "vist_label": "birthday", "id": "72157623091374699"}, {"description": "Traveling to Ashdod to a real Russian restaurant in order to celebrate Misha's 25th birthday!\n", "title": "Authentic Russian Birthday Party", "farm": "3", "date_update": "1297041040", "primary": "4363036100", "server": "2762", "date_create": "1266341402", "photos": "12", "secret": "be2c16d080", "owner": "49929269@N00", "vist_label": "birthday", "id": "72157623323161887"}, {"description": "To celebrate my 30th, I went on my own personal bar crawl. I have to say, I had a lot of fun.", "title": "My \"30 Rocks\" Tour", "farm": "3", "date_update": "1357191218", "primary": "4363992270", "server": "2724", "date_create": "1266365659", "photos": "15", "secret": "d2b634b1fc", "owner": "9563690@N03", "vist_label": "birthday", "id": "72157623325553883"}, {"description": "", "title": "Beth's 31st Birtday Party at Standard Tap", "farm": "5", "date_update": "1356550375", "primary": "4362613984", "server": "4057", "date_create": "1266330129", "photos": "11", "secret": "624e9e5490", "owner": "34589965@N00", "vist_label": "birthday", "id": "72157623446666698"}, {"description": "Movie night expedition to celebrate Zoe, Jill, Star and Amy's birthdays.", "title": "Birthday-aroke at McGillan's", "farm": "1", "date_update": "1300881039", "primary": "19680294", "server": "16", "date_create": "461589", "photos": "18", "secret": "5755a60f84", "owner": "69491656@N00", "vist_label": "birthday", "id": "461589"}, {"description": "", "title": "Consol Suncenter", "farm": "2", "date_update": "1401189830", "primary": "1416374857", "server": "1186", "date_create": "1190839517", "photos": "21", "secret": "385abc83d8", "owner": "98137912@N00", "vist_label": "birthday", "id": "72157602164004338"}, {"description": "We celebrated at Teddy's. Pixels took an amnesty day from no-booze January.", "title": "Jim's 30th Birthday", "farm": "5", "date_update": "1431315301", "primary": "4283467506", "server": "4042", "date_create": "1264918682", "photos": "19", "secret": "08a214c56d", "owner": "35034360223@N01", "vist_label": "birthday", "id": "72157623317546850"}, {"description": "", "title": "Nicholas Birthday", "farm": "3", "date_update": "1297500343", "primary": "4283751535", "server": "2702", "date_create": "1263800511", "photos": "10", "secret": "2b15139ed0", "owner": "21629700@N06", "vist_label": "birthday", "id": "72157623233370074"}, {"description": "Brian turned one, and hilarity ensued.", "title": "2005.05.16 Brian's First Birthday", "farm": "1", "date_update": "1297316932", "primary": "14372726", "server": "10", "date_create": "347887", "photos": "20", "secret": "dd0b6348c6", "owner": "44124367235@N01", "vist_label": "birthday", "id": "347887"}, {"description": "", "title": "Roe's First Birthday", "farm": "5", "date_update": "1318305349", "primary": "4367655489", "server": "4014", "date_create": "1266513620", "photos": "16", "secret": "ed7f034dd5", "owner": "40814689@N00", "vist_label": "birthday", "id": "72157623460934854"}, {"description": "Alanna's 18th birthday.", "title": "Birthday Girl", "farm": "1", "date_update": "1305580598", "primary": "20178166", "server": "16", "date_create": "471782", "photos": "12", "secret": "10bb51ecde", "owner": "97795893@N00", "vist_label": "birthday", "id": "471782"}, {"description": "Shelley's birthday party at The Mint karaoke lounge, March 18, 2008. ", "title": "Shelley's birthday - Karaoke at the Mint", "farm": "4", "date_update": "1424455501", "primary": "2345757611", "server": "3139", "date_create": "1205972388", "photos": "19", "secret": "e3ffc78499", "owner": "74173260@N00", "vist_label": "birthday", "id": "72157604170148809"}, {"description": "", "title": "SXSW Day 5", "farm": "4", "date_update": "1367574612", "primary": "2346414739", "server": "3253", "date_create": "1206001602", "photos": "17", "secret": "e521f8c143", "owner": "12058031@N00", "vist_label": "birthday", "id": "72157604169706376"}, {"description": "", "title": "Family Photos (Special) - Madeleine's Birthday party 2010", "farm": "3", "date_update": "1356142265", "primary": "4375273896", "server": "2781", "date_create": "1266736589", "photos": "24", "secret": "74341dc5eb", "owner": "18775660@N00", "vist_label": "birthday", "id": "72157623477392752"}, {"description": "", "title": "Birthdays", "farm": "1", "date_update": "1356699110", "primary": "6931898", "server": "4", "date_create": "172811", "photos": "28", "secret": "27b3eea92e", "owner": "18126540@N00", "vist_label": "birthday", "id": "172811"}, {"description": "", "title": "Science Museum birthday party", "farm": "5", "date_update": "1330278337", "primary": "4449084456", "server": "4037", "date_create": "1269123677", "photos": "21", "secret": "312cc9a4f4", "owner": "49503124519@N01", "vist_label": "birthday", "id": "72157623534565419"}, {"description": "", "title": "Mr E's Birthday Party", "farm": "1", "date_update": "1369484044", "primary": "20488389", "server": "15", "date_create": "478052", "photos": "11", "secret": "83f2ace1b0", "owner": "66878236@N00", "vist_label": "birthday", "id": "478052"}, {"description": "A surprise party to celebrate Pop Pop's 90th!", "title": "Pop's 90th Birthday", "farm": "5", "date_update": "1311189548", "primary": "4293798775", "server": "4020", "date_create": "1264126275", "photos": "14", "secret": "1b3534d3da", "owner": "10508828@N03", "vist_label": "birthday", "id": "72157623134066795"}, {"description": "Brynna had a great birthday party on Sunday, two days shy of her birthday (Feb. 23). Thanks to Marijke, Lisa, Sebastian, Joanna, Vicky, Jocelyn, Dean and Hudson for coming to her party!", "title": "Baby B's 1st B-day Party", "farm": "5", "date_update": "1375980225", "primary": "4378565316", "server": "4051", "date_create": "1266824587", "photos": "40", "secret": "ea7ab0c2f4", "owner": "46972477@N00", "vist_label": "birthday", "id": "72157623359981459"}, {"description": "", "title": "Grandpa C's Birthday", "farm": "3", "date_update": "1320198826", "primary": "4379024544", "server": "2772", "date_create": "1267209502", "photos": "12", "secret": "e760fe3168", "owner": "8046295@N02", "vist_label": "birthday", "id": "72157623514098462"}, {"description": "", "title": "LA Pileup", "farm": "1", "date_update": "1325828088", "primary": "1638956", "server": "2", "date_create": "41661", "photos": "19", "secret": "6c413e8e9e", "owner": "35468154678@N01", "vist_label": "birthday", "id": "41661"}, {"description": "seven years! whoo-hoo! ", "title": "a birthday for the boy a-go-go", "farm": "3", "date_update": "1408671778", "primary": "4298072552", "server": "2721", "date_create": "1264264655", "photos": "24", "secret": "45c0880fe9", "owner": "84411153@N00", "vist_label": "birthday", "id": "72157623143289975"}, {"description": "We met up with Jackson, Amy and Kenny at Grammy and Grampy's house to celebrate River's birthday (one day early.) ", "title": "River's First Birthday", "farm": "3", "date_update": "1356818299", "primary": "4298922574", "server": "2685", "date_create": "1264286332", "photos": "14", "secret": "e66deea17e", "owner": "21891638@N00", "vist_label": "birthday", "id": "72157623145280167"}, {"description": "", "title": "Ryan Suenaga's Birthday Tweetup", "farm": "5", "date_update": "1416303103", "primary": "4297465252", "server": "4011", "date_create": "1264240489", "photos": "23", "secret": "a6c0ee4359", "owner": "55254782@N00", "vist_label": "birthday", "id": "72157623266299104"}, {"description": "", "title": "Laney 8", "farm": "3", "date_update": "1392563100", "primary": "2354785346", "server": "2234", "date_create": "1206282226", "photos": "17", "secret": "060a0b79bc", "owner": "74446879@N00", "vist_label": "birthday", "id": "72157604210838444"}, {"description": "Bowery Poetry Club, March 10, 2008.", "title": "Bob Holman's 60th Birthday Party", "farm": "4", "date_update": "1356277956", "primary": "2356503030", "server": "3146", "date_create": "1206320275", "photos": "24", "secret": "e484ca5dca", "owner": "78049399@N00", "vist_label": "birthday", "id": "72157604222780993"}, {"description": "", "title": "Laura's B-day", "farm": "3", "date_update": "1299040020", "primary": "2368279632", "server": "2055", "date_create": "1206680627", "photos": "13", "secret": "50a3e5391e", "owner": "45695345@N00", "vist_label": "birthday", "id": "72157604277912088"}, {"description": "", "title": "Stamps", "farm": "1", "date_update": "1356303904", "primary": "15425818", "server": "9", "date_create": "371259", "photos": "15", "secret": "3ab6354727", "owner": "55057853@N00", "vist_label": "birthday", "id": "371259"}, {"description": "", "title": "Baltimore", "farm": "3", "date_update": "1303957331", "primary": "4461695788", "server": "2798", "date_create": "1269486673", "photos": "16", "secret": "5282250487", "owner": "46054832@N04", "vist_label": "birthday", "id": "72157623688452862"}, {"description": "March 21 - 22, 2008: On York University's campus members of the media, musicians and others came from all over Canada to play some hockey. The games were fun, and it was great to hang out in Toronto for the weekend. ", "title": "Exclaim Cup, March 21-22, 2008", "farm": "3", "date_update": "1380065947", "primary": "2362257433", "server": "2325", "date_create": "1206500181", "photos": "12", "secret": "d33a96aed2", "owner": "37027740@N00", "vist_label": "birthday", "id": "72157604254258819"}, {"description": "", "title": "South Padre Island 2001", "farm": "1", "date_update": "1302153177", "primary": "5453258", "server": "6", "date_create": "137338", "photos": "21", "secret": "a84110a03e", "owner": "37615286@N00", "vist_label": "birthday", "id": "137338"}, {"description": "Pics n' Scans. ", "title": "Scan-dalous!", "farm": "1", "date_update": "1380414411", "primary": "7526591", "server": "5", "date_create": "188185", "photos": "14", "secret": "74166f916b", "owner": "83234981@N00", "vist_label": "birthday", "id": "188185"}, {"description": "a surprise birthday for our friend's 75th birthday.", "title": "Richard's Birthday", "farm": "1", "date_update": "1356367555", "primary": "21693064", "server": "17", "date_create": "503982", "photos": "11", "secret": "bbe69c45b4", "owner": "11399912@N00", "vist_label": "birthday", "id": "503982"}, {"description": "", "title": "2005 02 15 - Rob's Birthday", "farm": "3", "date_update": "1356405048", "primary": "4309920073", "server": "2698", "date_create": "1264645009", "photos": "10", "secret": "08d75fd94f", "owner": "22173388@N04", "vist_label": "birthday", "id": "72157623298392548"}, {"description": "", "title": "2010-01-23 David's Birthday Party", "farm": "5", "date_update": "1327374768", "primary": "4309904833", "server": "4031", "date_create": "1264977747", "photos": "27", "secret": "1a3e3f3511", "owner": "8896423@N04", "vist_label": "birthday", "id": "72157623322705020"}, {"description": "We went to Chifa Restaurant on 02/27 for Erin's birthday dinner! Noms!\n\nFeaturing the work of Iron Chef Garces.\n\nWe got the "Chef's Tasting", which was something like 8 different dishes selected by the chef (as in, we had no idea what we would get), served tapas style, each with enough for all 7 of us to get a taste. Most of the dishes aren't represented here, though, because people couldn't keep their grubby paws off of it long enough for me to take pictures.\n\nThe final bill, including our adult beverages, was incredible, but so was the food and the experience! We were going to head over to Eulogy afterwards for drinks, but the manager offered to buy us a drink at the bar to get us to leave the table ("You're not overstaying your welcome, it's just that a party of old people showed up an hour before their reservation."), and after that we were all ready to call it a night.", "title": "Chifa Restaurant, Philadelphia", "farm": "5", "date_update": "1356275518", "primary": "4395162281", "server": "4029", "date_create": "1267384926", "photos": "12", "secret": "fc9181bea8", "owner": "45277752@N00", "vist_label": "birthday", "id": "72157623527635470"}, {"description": "Adrianne's a year older. She through a proper celebration with a yacht party at the Bayview Hunter's Point Yacht Club. Friday, Anti-Valentines weekend in SF.", "title": "AQUARIUS*RISING", "farm": "5", "date_update": "1296774366", "primary": "4397629390", "server": "4028", "date_create": "1267422426", "photos": "11", "secret": "32da7f03ff", "owner": "8107300@N03", "vist_label": "birthday", "id": "72157623406612971"}, {"description": "", "title": "03/26/2010 TWO: Dad's Birthday Dinner", "farm": "5", "date_update": "1297924494", "primary": "4471651446", "server": "4028", "date_create": "1269817938", "photos": "14", "secret": "a294810bda", "owner": "43042496@N04", "vist_label": "birthday", "id": "72157623598513373"}, {"description": "Growing up so fast!", "title": "20100328_Layla's 3rd birthday", "farm": "5", "date_update": "1357113317", "primary": "4471774027", "server": "4047", "date_create": "1269838590", "photos": "10", "secret": "7e4de0ecc6", "owner": "60352106@N00", "vist_label": "birthday", "id": "72157623724885850"}, {"description": "Photos from the event at the Skiff, January 2010", "title": "Brighton Robotics 1st Birthday", "farm": "3", "date_update": "1298129304", "primary": "4313354127", "server": "2791", "date_create": "1264780474", "photos": "12", "secret": "bb00697000", "owner": "13160083@N07", "vist_label": "birthday", "id": "72157623307460200"}, {"description": "Nick's 32nd birthday, Jamaica Plain, MA", "title": "Nick's 32nd birthday", "farm": "1", "date_update": "1356186808", "primary": "4079831", "server": "3", "date_create": "103266", "photos": "22", "secret": "e41f24a901", "owner": "35034354137@N01", "vist_label": "birthday", "id": "103266"}, {"description": "Our friend Andrew won a free open bar night. We drank much too much and danced on stripper poles.", "title": "Funk Groove Club", "farm": "5", "date_update": "1327546323", "primary": "4320652527", "server": "4070", "date_create": "1264997176", "photos": "20", "secret": "236841d9f5", "owner": "22901150@N00", "vist_label": "birthday", "id": "72157623200087819"}, {"description": "drinks at Seven Grand", "title": "27th Birthday", "farm": "5", "date_update": "1356276040", "primary": "4318660451", "server": "4036", "date_create": "1264958687", "photos": "24", "secret": "7e1ee6a92b", "owner": "88787599@N00", "vist_label": "birthday", "id": "72157623320533820"}, {"description": "January 30, 2009", "title": "Hayes' First Birthday", "farm": "5", "date_update": "1370843116", "primary": "4320108364", "server": "4007", "date_create": "1264970884", "photos": "27", "secret": "5f124fac11", "owner": "50943997@N00", "vist_label": "birthday", "id": "72157623321908226"}, {"description": "V4 + Studenterhuset, 30.01.10\n\nPlease respect my creative rights // galimathies.dk", "title": "Nitusind.nu Birthday Party", "farm": "5", "date_update": "1399215851", "primary": "4319958239", "server": "4049", "date_create": "1264984482", "photos": "28", "secret": "7721ff7606", "owner": "92666428@N00", "vist_label": "birthday", "id": "72157623323399630"}, {"description": "Went to Estonia's National Opera and celebrated modestly my birthday in 2002", "title": "EE: Birthday 2002", "farm": "2", "date_update": "1314708389", "primary": "1414229246", "server": "1414", "date_create": "1190316135", "photos": "10", "secret": "47f738281a", "owner": "81894727@N00", "vist_label": "birthday", "id": "72157602098301059"}, {"description": "", "title": "PinoyMac Turns One", "farm": "1", "date_update": "1296822697", "primary": "394749", "server": "1", "date_create": "14334", "photos": "10", "secret": "34849539e8", "owner": "60318404@N00", "vist_label": "birthday", "id": "14334"}, {"description": "We missed Evan's after party of bingo and drinkies, but we did get to the dinner. First Friday of the month, 10th & Quebec, mark it on your calendar.", "title": "Ukrainian Church Dinner and Evan's B-Day", "farm": "1", "date_update": "1356139588", "primary": "694585", "server": "1", "date_create": "17631", "photos": "11", "secret": "adef6b8760", "owner": "35034346160@N01", "vist_label": "birthday", "id": "17631"}, {"description": "Dusk in the Colorado mountains. Okay, maybe a little bit past dusk. All on my birthday. And a shooting star to boot! Magical.", "title": "Birthday skies over Tabernash", "farm": "1", "date_update": "1326319283", "primary": "1629365", "server": "2", "date_create": "41385", "photos": "11", "secret": "caac9c29aa", "owner": "35034347309@N01", "vist_label": "birthday", "id": "41385"}, {"description": "", "title": "Christmas | 2003", "farm": "1", "date_update": "1411962573", "primary": "1443503", "server": "2", "date_create": "560450", "photos": "35", "secret": "80929afc70", "owner": "35237095252@N01", "vist_label": "birthday", "id": "560450"}, {"description": "FIve-mile hike into Longleaf Pine forest", "title": "Florida Scenic Trail at Eglin AFB", "farm": "1", "date_update": "1301238491", "primary": "2336137", "server": "1", "date_create": "58685", "photos": "17", "secret": "51060a6152", "owner": "49503177985@N01", "vist_label": "birthday", "id": "58685"}, {"description": "A day in a life of project, December 21st 2004. See: www.flickr.com/groups/adayinthelife/", "title": "Dilo, December 2004", "farm": "1", "date_update": "1413996553", "primary": "2409898", "server": "2", "date_create": "60622", "photos": "32", "secret": "5843acadb9", "owner": "45581782@N00", "vist_label": "birthday", "id": "60622"}, {"description": "1/3/78 \nat Milon, NYC", "title": "my 27th birthday", "farm": "1", "date_update": "1356189845", "primary": "2930944", "server": "3", "date_create": "73269", "photos": "34", "secret": "ec3dd7c1ea", "owner": "86624720@N00", "vist_label": "birthday", "id": "73269"}, {"description": "Dinner Party, School Street, Brookline, MA", "title": "Jason's 25th birthday", "farm": "1", "date_update": "1356186808", "primary": "4076798", "server": "4", "date_create": "102806", "photos": "32", "secret": "67af24feb2", "owner": "35034354137@N01", "vist_label": "birthday", "id": "102806"}, {"description": "", "title": "2006.12.14 Hubu Birthday Party", "farm": "1", "date_update": "1356212004", "primary": "341323166", "server": "165", "date_create": "1167687007", "photos": "16", "secret": "b652c3ec7f", "owner": "97263867@N00", "vist_label": "birthday_party", "id": "72157594452459464"}, {"description": "\u628a\u8056\u8a95\u548c\u65b0\u5e74\u6df7\u5728\u4e00\u8d77\u7684\u751f\u65e5\u6d3b\u52d5\uff0c\u4e0d\u662f\u5e74\u5e74\u6709\uff0c\u7e3d\u6bd4\u6c92\u6709\u66f4\u597d\uff0c\u4e0d\u904e\u6709\u5c31\u7e3d\u6703\u958b\u5fc3\u7684\u3002", "title": "2009-12-25 \u8056\u8a95Party '09", "farm": "5", "date_update": "1356144237", "primary": "4240783841", "server": "4059", "date_create": "1262540957", "photos": "17", "secret": "50f6532f9e", "owner": "71904160@N00", "vist_label": "birthday_party", "id": "72157623129800106"}, {"description": "", "title": "Moka's Surprise Party", "farm": "3", "date_update": "1329109693", "primary": "4242399861", "server": "2640", "date_create": "1262570427", "photos": "44", "secret": "01c4aef67c", "owner": "22323031@N03", "vist_label": "birthday_party", "id": "72157623008747073"}, {"description": "Talia's birthday party at Dave and Buster's. My first time there, and oh-so-magical.", "title": "talia's birthday", "farm": "3", "date_update": "1434334291", "primary": "4265627659", "server": "2730", "date_create": "1263223983", "photos": "19", "secret": "1866b65a98", "owner": "67682666@N00", "vist_label": "birthday_party", "id": "72157623188540742"}, {"description": "", "title": "Filipino Birthday", "farm": "5", "date_update": "1297131392", "primary": "4273501306", "server": "4050", "date_create": "1263621037", "photos": "18", "secret": "e6e2f4f347", "owner": "8453096@N08", "vist_label": "birthday_party", "id": "72157623094607697"}, {"description": "", "title": "Brittonie\u2019s birthday", "farm": "1", "date_update": "1356212863", "primary": "358739312", "server": "125", "date_create": "1168902136", "photos": "19", "secret": "4fe19fe0f5", "owner": "37996586171@N01", "vist_label": "birthday_party", "id": "72157594481722609"}, {"description": "On Spooky Ruben's birthday 20 01 12 the comrades from Projecktor Images and Sound formerly located at 272 Carlaw Ave in Toronto reunited at The Magpie on Dundas St W to play songs from their glory days as a rock and roll band called Misha Forke", "title": "Misha Forke, Spooky Ruben, 20Jan12", "farm": "8", "date_update": "1356458908", "primary": "6736972051", "server": "7165", "date_create": "1327168266", "photos": "17", "secret": "0f3ca2c79d", "owner": "17683992@N06", "vist_label": "birthday_party", "id": "72157628969115453"}, {"description": "", "title": "Lara's 40th Birthday @ Estia", "farm": "8", "date_update": "1327982143", "primary": "6738264559", "server": "7020", "date_create": "1327182080", "photos": "16", "secret": "349615a5a6", "owner": "16947047@N00", "vist_label": "birthday_party", "id": "72157628971956713"}, {"description": "", "title": "St. Louis December 2011", "farm": "8", "date_update": "1327866830", "primary": "6784155347", "server": "7014", "date_create": "1327866437", "photos": "23", "secret": "d507219707", "owner": "26582481@N08", "vist_label": "birthday_party", "id": "72157629086801019"}, {"description": "Pictures of my godchild.", "title": "Zac", "farm": "1", "date_update": "1356139043", "primary": "516068", "server": "1", "date_create": "531002", "photos": "15", "secret": "730c53624f", "owner": "37996599088@N01", "vist_label": "birthday_party", "id": "531002"}, {"description": "Pictures developed May 13, 2003", "title": "May 13, 2003", "farm": "2", "date_update": "1303801528", "primary": "1085997048", "server": "1230", "date_create": "1186867965", "photos": "24", "secret": "abc5964b31", "owner": "11280582@N02", "vist_label": "birthday_party", "id": "72157601372125902"}, {"description": "To celebrate her 27th birthday, Susan Pinkster organized a secret party at squatters place Kongsi, with some great bands. We vs Death were the most eagerly awaited for. Other acts included Green Concorde, Daan and the debut of The Debbies.", "title": "Susan's secret birthday party at Kongsi, Enschede", "farm": "1", "date_update": "1297082527", "primary": "1969925", "server": "2", "date_create": "49712", "photos": "12", "secret": "478b396f91", "owner": "92086632@N00", "vist_label": "birthday_party", "id": "49712"}, {"description": "", "title": "Joke's birhday party - 2004", "farm": "1", "date_update": "1356187664", "primary": "2364732", "server": "2", "date_create": "59450", "photos": "43", "secret": "0531e7d4d2", "owner": "27818524@N00", "vist_label": "birthday_party", "id": "59450"}, {"description": "Blast Off!", "title": "Josh's 26th Birthday Party", "farm": "1", "date_update": "1336832942", "primary": "3217314", "server": "3", "date_create": "80673", "photos": "47", "secret": "f931dc3dc7", "owner": "31852867@N00", "vist_label": "birthday_party", "id": "80673"}, {"description": "Azmi's treat - dinner at Golconda Chimney", "title": "Azmi's 23rd birthday", "farm": "1", "date_update": "1297840991", "primary": "5568930", "server": "5", "date_create": "140280", "photos": "12", "secret": "8e7ee2cd3a", "owner": "61289010@N00", "vist_label": "birthday_party", "id": "140280"}, {"description": "2.19.05\nThis was Lindsay's first birthday with us in NY and I don't think it could have been much better. Presents, cupcakes, dancing, and drinks....I bet you wish it was your birthday party!", "title": "Lindsay's Birthday Party", "farm": "1", "date_update": "1421626716", "primary": "5128798", "server": "4", "date_create": "129153", "photos": "34", "secret": "4919ea7e06", "owner": "30952578@N00", "vist_label": "birthday_party", "id": "129153"}, {"description": "Old photos I scanned Easter weekend 2005.", "title": "1980s and Classics", "farm": "1", "date_update": "1357144033", "primary": "7647008", "server": "4", "date_create": "190837", "photos": "34", "secret": "44d2157164", "owner": "51035717541@N01", "vist_label": "birthday_party", "id": "190837"}, {"description": "These photos are from Alex and Joie's combined birthday party. Family and friends gathered round to help them celebrate the start of another year\n\n.It was also the first time I got to meet Rocky, the new puppy. She was wonderfully sweet and I'm going to enjoy seeing her in the future.", "title": "Alex and Joie's Birthday Party", "farm": "1", "date_update": "1308703679", "primary": "8554840", "server": "6", "date_create": "212315", "photos": "24", "secret": "dd99d36675", "owner": "54494252@N00", "vist_label": "birthday_party", "id": "212315"}, {"description": "Photos from Mom's birthday gathering.", "title": "Mom's 81st Birthday", "farm": "1", "date_update": "1308703679", "primary": "9908992", "server": "7", "date_create": "244660", "photos": "13", "secret": "198072b76e", "owner": "54494252@N00", "vist_label": "birthday_party", "id": "244660"}, {"description": "this was my birthday.", "title": "25th Birthday", "farm": "1", "date_update": "1356962260", "primary": "4023530", "server": "4", "date_create": "101475", "photos": "10", "secret": "46b573f636", "owner": "35574630@N00", "vist_label": "birthday_party", "id": "101475"}, {"description": "", "title": "Tel-Aviv support demo Free Gaza flotilla", "farm": "5", "date_update": "1297424900", "primary": "4663208603", "server": "4052", "date_create": "1275496500", "photos": "12", "secret": "eb6d495ffe", "owner": "39360504@N02", "vist_label": "breaking_up", "id": "72157624189455880"}, {"description": "These are shots from a short outing tonight (Mon Apr 02, 2007) with my friend, Mark.\n\nWe drove south of town to some sandstone rock outcropings that I've driven by on the interstate for over 30 years without stopping.\n\nThey look amazing from the road, and up close they are carved or painted everywhere with names, cities, etc. Recently vandals are using paint. \n\nThere are layers of broken bottles from parties held here, and if there are stories to tell, they are not good ones.\n\nThe windmills are on a parallel road about 5 miles east of the rock outcroppings and were really fun to shoot...\n\nAll are test shots so I'll be revisiting them throughout the summer, both at sunrise and sunset for dramatic light.", "title": "Rocks & Windmills", "farm": "1", "date_update": "1366209699", "primary": "444669209", "server": "247", "date_create": "1175586811", "photos": "12", "secret": "a9bcbf9d17", "owner": "75218757@N00", "vist_label": "breaking_up", "id": "72157600044694535"}, {"description": "Our 12-mile hike into the Ohlone Wilderness, from Lake Del Valle to Murietta Falls in Del Valle Regional Park.", "title": "Ohlone Wilderness Trail, April 2005", "farm": "1", "date_update": "1409934265", "primary": "12265426", "server": "11", "date_create": "301242", "photos": "10", "secret": "81ebe58c15", "owner": "51035602148@N01", "vist_label": "breaking_up", "id": "301242"}, {"description": "More at www.dannychoo.com", "title": "Japan Service Area", "farm": "5", "date_update": "1357097106", "primary": "4574572107", "server": "4020", "date_create": "1272900289", "photos": "17", "secret": "4b0589d94c", "owner": "88444437@N00", "vist_label": "breaking_up", "id": "72157623858970227"}, {"description": "Pics from a trip to Oxford on 3rd May 2010. Mostly from the Ashmolean, with a small handful from the local environs.\n\nIf you are ever in Oxford then make time to visit the Ashmolean. It is worth at least an hour of your time, though taking longer would be much better. Plenty of good eats and drinks nearby too if the prices in the museum put you off.", "title": "Ashmolean Museum trip, May 2010", "farm": "5", "date_update": "1314132710", "primary": "4576058960", "server": "4032", "date_create": "1272916537", "photos": "28", "secret": "068954ff9d", "owner": "61956003@N00", "vist_label": "breaking_up", "id": "72157623860856945"}, {"description": "Summer, 2012. Walkways and guard rails at Desert View Point are currently being refurbished by Grand Canyon's Trail Crew. The goal is to make the area more aesthetically pleasing, and to bring footpaths up to current ADA standards. \n\nAt any given time, the crew is made up of of 3-5 employees. Work on the project began off site. Mason Ross Marshall and his crew built a "mockup" of a stone planter that would ultimately be installed just southeast of Desert View Watchtower. The planter was then broken down and transported to Desert View, where it was reassembled in place. Trail Crew is also working to refurbish liner stone around existing walkways and viewpoints, raise the current level of hand/guard rails by 6 inches; then repave the entire area around the Watchtower and Desert View Overlook. Construction is expected to continue through the end of July, 2012. NPS Photos by Kristen M Caldon.", "title": "Refurbishing Desert View Point 2012", "farm": "9", "date_update": "1375141768", "primary": "7498707646", "server": "8165", "date_create": "1341373191", "photos": "16", "secret": "afbc61c2fa", "owner": "50693818@N08", "vist_label": "breaking_up", "id": "72157630413349622"}, {"description": "Some pics with the Nikon Coolpix S7c taken at church.", "title": "The Rock Church - Dec. 3, 2006", "farm": "1", "date_update": "1428273298", "primary": "313089008", "server": "110", "date_create": "1165170914", "photos": "16", "secret": "9c40654d57", "owner": "83955435@N00", "vist_label": "breaking_up", "id": "72157594403688419"}, {"description": "A bicycle ride around the Bale mountains of Southern Ethiopia", "title": "Ethiopia", "farm": "1", "date_update": "1425843460", "primary": "95292586", "server": "33", "date_create": "1138977673", "photos": "48", "secret": "e1eb5df0b1", "owner": "89826095@N00", "vist_label": "breaking_up", "id": "72057594058524733"}, {"description": "The last few days of December, as well as New Year's weekend, have been bitter-cold in New York City (and many other parts of the country, as I've been able to see on TV). Consequently, people bundle up and cover themselves from head to toe with coats, hats, scarves, mufflers, gloves, leggings, and anything else they can think of. It doesn't leave much exposed, from a photographic perspective. Also, it's a lot harder to take any photographs, when you're shivering from the cold and being buffeted by the wind...\n\nNevertheless, I decided to venture out into the cold during my lunch break a couple times last week, to see what might be worthy of a quick photo. I had my gloves on, so there was no opportunity for fine-tuned adjustments to my camera; basically, all I could do was focus and shoot...\n\nAll I could think of, as I took these photos was: all of this will look much more interesting in the summer!\n\nP.S. these photos were all taken on the corner of Broadway & 96th, and also Broadway & 97th Street, in the neighborhood where I live...", "title": "Cold winter day, Dec 2009", "farm": "5", "date_update": "1434107679", "primary": "4248010548", "server": "4017", "date_create": "1262610422", "photos": "29", "secret": "089ee9c4fb", "owner": "72098626@N00", "vist_label": "breaking_up", "id": "72157623136469278"}, {"description": "Scenes of Rehoboth Beach, Delaware on a biting winter day.", "title": "Rehoboth Beach Off Season", "farm": "1", "date_update": "1297251898", "primary": "426078326", "server": "149", "date_create": "1174268407", "photos": "23", "secret": "06477c8225", "owner": "15719834@N00", "vist_label": "breaking_up", "id": "72157600007959053"}, {"description": "", "title": "wineglass and teapot", "farm": "1", "date_update": "1356168882", "primary": "121930966", "server": "38", "date_create": "1188633802", "photos": "16", "secret": "79c852edcc", "owner": "32751486@N00", "vist_label": "breaking_up", "id": "72157601794221996"}, {"description": "Dec 9, 2006", "title": "Surfing", "farm": "1", "date_update": "1322715935", "primary": "318273282", "server": "142", "date_create": "1165723590", "photos": "21", "secret": "f3726917e8", "owner": "42471262@N00", "vist_label": "breaking_up", "id": "72157594413051895"}, {"description": "Some of Australia\u2019s highest profile employers have come out in support of a ground-breaking program which aims to make workplaces more responsive to the needs of gay, lesbian, bisexual and transgender (LGBT) people.\n\nCalled Pride In Diversity, the new program has been created by ACON \u2013 Australia\u2019s largest community-based LGBT health organisation \u2013 in partnership with Diversity Council Australia \u2013 the independent, not-for-profit diversity advisor to business \u2013 and London-based LGBT advocacy group Stonewall UK.\n\nOfficially launched today in Sydney by the Hon. Michael Kirby, the importance of the initiative has already been recognised by a broad range of leading Australian employers which have signed up as foundation members of the program. These include IBM, KPMG, ING Australia, Goldman Sachs JBWere, Lend Lease, the Department of Defence, the Australian Federal Police and Telstra.\n\nwww.prideindiversity.com.au", "title": "Pride in Diversity Launch", "farm": "3", "date_update": "1360739346", "primary": "4347685590", "server": "2741", "date_create": "1265850634", "photos": "30", "secret": "713236d8ba", "owner": "30157527@N02", "vist_label": "breaking_up", "id": "72157623404737542"}, {"description": "I went with my friend Mike to Porsche so he could pick up his new car. I love Porsches :)", "title": "A Saturday Afternoon @ Porsche Melbourne", "farm": "3", "date_update": "1356209781", "primary": "4512637352", "server": "2697", "date_create": "1271024281", "photos": "20", "secret": "0ac763df43", "owner": "88955553@N00", "vist_label": "breaking_up", "id": "72157623834155822"}, {"description": "Remembrance Day ceremonies in New Westminter.\n\nAt the going down of the sun and in the morning, we will remember them.", "title": "Lest We Forget", "farm": "1", "date_update": "1298554329", "primary": "294808865", "server": "115", "date_create": "1163285673", "photos": "33", "secret": "dcf1de0bf0", "owner": "98755122@N00", "vist_label": "breaking_up", "id": "72157594370938633"}, {"description": "After reading about Pirate Girl's summit of Agua Caliente Hill in December (azpirategirl.blogspot.com/2011/12/my-summit-of-agua-calie...) we had it in the back of our minds to do this hike again! We had done it years ago but had only made it to the false summit - this time I made it. I ran as much of the trail as I could (even if my 'running' pace was at times maybe walking pace...) and walked the steep stuff I did not have it for - great hike/run! The hike/run: connect.garmin.com/activity/149254881", "title": "2012 Feb Agua Caliente Hill", "farm": "8", "date_update": "1329107393", "primary": "6867320533", "server": "7184", "date_create": "1329105471", "photos": "13", "secret": "7975d7e90a", "owner": "96641330@N00", "vist_label": "breaking_up", "id": "72157629295879759"}, {"description": "These pictures show the normal level of maintenance the DCR affords the stairs and walkways of the famous Longfellow Bridge between Cambridge and Boston after a typical Massachusetts snow event of a few inches.\n\nThe footprints of the many pedestrians who depend on the bridge show that it receives a lot of foot traffic, even in bad weather.\n\nPedestrians headed towards Boston face the choice of walking on the ice into the lane of oncoming traffic, or navigating down the icy granite steps and taking a "make your own" path through the snow towards Charles Circle. Again, the footprints reveal how many people depend on this critical route.\n\nSomeone from the DCR did run a plow down the length of the main walkway across the bridge, but they left the edges under the iron railings with an accumulation which, via a few freeze-thaw cycles, helps to break up the concrete at the edge of the bridge that the railings are mounted on, and is contributing to their tilting outward towards the river.", "title": "Longfellow Bridge DCR Normal Snow Removal", "farm": "3", "date_update": "1300288995", "primary": "4356074779", "server": "2751", "date_create": "1266171083", "photos": "21", "secret": "0af84d5215", "owner": "28343934@N08", "vist_label": "breaking_up", "id": "72157623433806636"}, {"description": "", "title": "va bin parade", "farm": "5", "date_update": "1326361685", "primary": "4357328256", "server": "4047", "date_create": "1266564992", "photos": "21", "secret": "0d57f8e29f", "owner": "40389521@N08", "vist_label": "breaking_up", "id": "72157623464889932"}, {"description": "Los Hooligans and the Aggrolites live at the Phoenix Theatre in Petaluma, CA.", "title": "Phoenix 03/12/2005", "farm": "1", "date_update": "1297839561", "primary": "6561252", "server": "5", "date_create": "163689", "photos": "12", "secret": "8cc309fb4a", "owner": "77154962@N00", "vist_label": "breaking_up", "id": "163689"}, {"description": "Heather, Dani, Rubin, and I dyed the hairs.", "title": "20070216 - Hair Dying", "farm": "1", "date_update": "1417335638", "primary": "392712112", "server": "160", "date_create": "1171697452", "photos": "15", "secret": "0f8bb73478", "owner": "77866964@N00", "vist_label": "breaking_up", "id": "72157594540186551"}, {"description": "Day in the life thing", "title": "Wednesday Drive", "farm": "1", "date_update": "1297423481", "primary": "6683092", "server": "4", "date_create": "166789", "photos": "10", "secret": "03aa942737", "owner": "96743315@N00", "vist_label": "breaking_up", "id": "166789"}, {"description": "Laxenburg in February", "title": "20070218_Laxenburg", "farm": "1", "date_update": "1404067056", "primary": "394115176", "server": "172", "date_create": "1171814573", "photos": "21", "secret": "ee5b6d5e2f", "owner": "69487900@N00", "vist_label": "breaking_up", "id": "72157594542419706"}, {"description": "A record of the Backpacker's Club Meet 13th.- 15th. April 20121. Our leader: Gaz Holt, we meet at Snake Inn and move to Edale for the second of our two nights out.\nOn Saturday we logged about 14 good upland Derbyshire miles with approximately another eight on Sunday.", "title": "DARK PEAK", "farm": "8", "date_update": "1356209513", "primary": "6943966526", "server": "7049", "date_create": "1334745954", "photos": "27", "secret": "106dc82bcf", "owner": "8521690@N02", "vist_label": "breaking_up", "id": "72157629844736843"}, {"description": "Several long sections of SR 104 near Lake Forest Park received an asphalt overlay in areas where the pavement was deteriorating. Traffic and repeated freeze and thaw cycles during the Seattle winters were taking their toll on the road. \n\nWSDOT maintenance crews went to work during the week of July 16, preparing the pavement and carefully spreading the new asphalt. An overlay like this should last many years but it's still a bandaid that will only hold the road together for so long. ", "title": "Asphalt overlay on SR 104/Ballinger Way", "farm": "9", "date_update": "1374512999", "primary": "7605631012", "server": "8012", "date_create": "1342732704", "photos": "15", "secret": "b5a1454dd2", "owner": "7821771@N05", "vist_label": "breaking_up", "id": "72157630657169438"}, {"description": "jean georges shanghai \nchef de cuisine eric johnson\n3 on the bund \nshanghai, china\n\ndinner: 7 course "jean georges tasting" (788 rmb, approx. $100), 6 course "seasonal tasting" (658 rmb, approx. $87).\n\nfirst visit: mid-august, 2006", "title": "jean georges shanghai (2006)", "farm": "1", "date_update": "1435679336", "primary": "219580103", "server": "87", "date_create": "1156039120", "photos": "22", "secret": "c95e276e6b", "owner": "13329406@N00", "vist_label": "breaking_up", "id": "72157594243600344"}, {"description": "Photos taken on Kangaroo Island, South Australia", "title": "Kangaroo Island", "farm": "1", "date_update": "1305740120", "primary": "5146679", "server": "5", "date_create": "134270", "photos": "27", "secret": "7adda37946", "owner": "76384935@N00", "vist_label": "breaking_up", "id": "134270"}, {"description": "The Alaska Native Heritage Center (ANHC) invited Randy and I over to teach their kids how to flint knap. Randy did most of the talking and is hands down better than I at this, but I can still help with the basics.", "title": "Flint Knapping at the ANHC", "farm": "3", "date_update": "1318822437", "primary": "4449847550", "server": "2797", "date_create": "1269144281", "photos": "30", "secret": "59b6c3cc2d", "owner": "51378257@N00", "vist_label": "breaking_up", "id": "72157623660642342"}, {"description": "These are pictures that I took back in my film days. Most of these are from the 1970's and 1980's. At the time I was getting my BA at Penn State (1971-1975), and then a MS at Drexel University (1977-1978). ", "title": "Old Slides & Prints", "farm": "5", "date_update": "1325361701", "primary": "4712741911", "server": "4056", "date_create": "1276913751", "photos": "14", "secret": "7a30b5900a", "owner": "21578454@N00", "vist_label": "breaking_up", "id": "72157624181353093"}, {"description": "This was my first trip outside of Anchorage since Aaron left me.", "title": "Portage", "farm": "1", "date_update": "1318822438", "primary": "275967330", "server": "84", "date_create": "1161503848", "photos": "19", "secret": "51fb226801", "owner": "51378257@N00", "vist_label": "breaking_up", "id": "72157594339263061"}, {"description": "December 2005\nChristmas in Perth", "title": "Australia 5: Western Australia", "farm": "1", "date_update": "1356478911", "primary": "366416047", "server": "156", "date_create": "1169512264", "photos": "13", "secret": "b990aa55bb", "owner": "77351046@N00", "vist_label": "breaking_up", "id": "72157594494831674"}, {"description": "Carolyn Gernand and Anstr Davidson explore the 10 mile loop south from the Visitors Center in the Massanuttens.", "title": "Bird Knob-Browns Hollow-April 2010", "farm": "5", "date_update": "1337735762", "primary": "4546210985", "server": "4051", "date_create": "1272060442", "photos": "23", "secret": "7f61e9188e", "owner": "45648925@N00", "vist_label": "breaking_up", "id": "72157623793801177"}, {"description": "", "title": "Mel Brooks' The Producers Rehearsals", "farm": "5", "date_update": "1341931607", "primary": "4920625436", "server": "4079", "date_create": "1282581770", "photos": "21", "secret": "dd05f92c00", "owner": "39322536@N04", "vist_label": "breaking_up", "id": "72157624790448284"}, {"description": "Photos from the 2010 Parada del Sol Rodeo at Westworld in Scottsdale arranged by Interestingness. Here are some photos from 2009 www.flickr.com/photos/7202153@N03/sets/72157614942788266/\n\nSet automatically created by dopiaza's set generator on 22nd June 2015 at 2:57pm BST", "title": "Parada del Sol Rodeo 2010", "farm": "3", "date_update": "1434981504", "primary": "4407461053", "server": "2741", "date_create": "1267828514", "photos": "19", "secret": "ec2b675f41", "owner": "7202153@N03", "vist_label": "breaking_up", "id": "72157623561879278"}, {"description": "Lu Ann Curtis visited Southern California, and invited various friends to gather at the Purple Orchid.", "title": "Kailua74 gathering at the Purple Orchid", "farm": "5", "date_update": "1401153056", "primary": "4302776081", "server": "4058", "date_create": "1264412309", "photos": "19", "secret": "f7c13c7ae9", "owner": "99525316@N00", "vist_label": "breaking_up", "id": "72157623280003178"}, {"description": "The Swell Season @ Ancienne Belgique, Bruxelles | 24.02.2010", "title": "The Swell Season @ Ancienne Belgique, Bruxelles | 24.02.2010", "farm": "3", "date_update": "1404336218", "primary": "4390164316", "server": "2682", "date_create": "1267201265", "photos": "15", "secret": "8f6568a4e7", "owner": "17562308@N02", "vist_label": "breaking_up", "id": "72157623388795231"}, {"description": "The Round Mountain Wild Fire - Big Thompson Canyon - Colorado www.Striking-Photography.com ", "title": "Round Mountain Wild Fire 2010", "farm": "5", "date_update": "1366907617", "primary": "4735621819", "server": "4138", "date_create": "1277573990", "photos": "18", "secret": "49e29315db", "owner": "48896557@N00", "vist_label": "breaking_up", "id": "72157624237676879"}, {"description": "Pas toujours que des etudiants... Ma marche de chez moi a chez moi a travers tout le bordel...", "title": "My walk: 28 mars 2006 Manif CPE", "farm": "1", "date_update": "1338210814", "primary": "119431103", "server": "52", "date_create": "1143575848", "photos": "27", "secret": "fc1bb2571e", "owner": "93323136@N00", "vist_label": "breaking_up", "id": "72057594092941459"}, {"description": "", "title": "The Dirtbombs & more - Noise Pop", "farm": "1", "date_update": "1356489859", "primary": "120222405", "server": "38", "date_create": "1143714613", "photos": "12", "secret": "bccc4da44e", "owner": "51035767928@N01", "vist_label": "breaking_up", "id": "72057594094192882"}, {"description": "Yesterday we had a company picnic on Shark Island, which is in the middle of Sydney Harbour.\n\nWe had the island to ouselves and despite the average weather, there was much food, wine, cricket and frivolty.\n\nThere's a more detailed story of the day's events here.", "title": "Dubs Day Out", "farm": "1", "date_update": "1296182579", "primary": "35513919", "server": "26", "date_create": "785756", "photos": "23", "secret": "4d8f8c17fc", "owner": "89864780@N00", "vist_label": "breaking_up", "id": "785756"}, {"description": "The massive explosion at Buncefield Depot as seen from my window 500yds away", "title": "Buncefield Burner", "farm": "1", "date_update": "1296660556", "primary": "72418125", "server": "20", "date_create": "1134317187", "photos": "14", "secret": "3ec9296461", "owner": "96886463@N00", "vist_label": "breaking_up", "id": "1556396"}, {"description": "Casey and I head to the Motor City for a backstage with Iron & Wine and Calexico. Rock!", "title": "Iron & Wine/Calexico - Detroit 2005", "farm": "1", "date_update": "1356298290", "primary": "73003867", "server": "34", "date_create": "1134433881", "photos": "15", "secret": "c2c9816e41", "owner": "26765414@N00", "vist_label": "breaking_up", "id": "1567926"}, {"description": "Eat, drink and Be Mary had a Little Lamb", "title": "NY Flickr - Holiday Meet-up", "farm": "1", "date_update": "1356313054", "primary": "74157616", "server": "36", "date_create": "1134760181", "photos": "25", "secret": "52aa910e29", "owner": "41297282@N00", "vist_label": "breaking_up", "id": "1592772"}, {"description": "A misty to cloudy day gives lots of interesting natural effects...and a chance to become familiar with my new camera.", "title": "Mist & Clouds & Little Boys at the Beach", "farm": "1", "date_update": "1353991962", "primary": "86141960", "server": "6", "date_create": "1137180070", "photos": "10", "secret": "7dac90821c", "owner": "77422575@N00", "vist_label": "breaking_up", "id": "72057594047318559"}, {"description": "", "title": "Saratoga County, New York", "farm": "1", "date_update": "1430585572", "primary": "66932414", "server": "30", "date_create": "1141371650", "photos": "19", "secret": "8770b07b76", "owner": "75683070@N00", "vist_label": "breaking_up", "id": "72057594073873411"}, {"description": "Spescom Software, Inc.\nHalloween Party 2005", "title": "Halloween Party", "farm": "1", "date_update": "1430101435", "primary": "58281169", "server": "25", "date_create": "1130811690", "photos": "32", "secret": "02a20ddd9d", "owner": "85979850@N00", "vist_label": "breaking_up", "id": "1261627"}, {"description": "Let's start by saying that this was the oddest venue I've EVER seen a show at -- it was basically a sheet metal garage with concrete floors and huge brewing vats all over. About a hundred people allowed in, although the garage door (!) was opened after the first song so the people outside could get to hear the show. \n\nThis was the eleventh time we've seen the band this year, and frankly, it doesn't get better than this. Taking everything in stride, the band played a show that was incredible. \n\nAnd not one taper there. A decade from now, people will mention this show with reverence. It was that special. \n\nSet 1: \n\nCold Water \nOld Dangerfield \nChains \nStillwater Getaway \nMourning Flies \nThe Cuckoo Bird \nElko \n\nLittle Rabbit was on the setlist to close the set, but they didn't play it until the encore. \n\nSet 2: \nLong Way To Go \nBird In A House \nLike A Buddha \nCrossing the Gap \nBlack Bear (not on the setlist, but Grubb started playing it anyway) \nWaterfountain Quicksand \nI Am A Mess* \nDo The Dog* \nStorms \n\nEncore: \nLittle Rabbit \n\n* Brady Rymer, bass player of From Good Homes on electric bass \n\nMonster show. Set 1 was great, and clocked in around 50 minutes. Set 2, however, was around 100 minutes or so. Buddha was great as always, and I really liked the new Tim song, Crossing the Gap. Then Grubb just started the bass line for Black Bear and the magic really began. I love this song and this was as good as I've heard them play, either in person or on tape. WFQS was incredible, and then Brady came up onstage (we saw him at set break) and the band launched into the absolute best I Am A Mess that I've EVER heard. Todd's solo was incredible and Timmy played on top of it at the end -- MIND blowing. Then out came Do the Dog, another old FGH song that had the place roaring. A gorgeous Storms ended the set and the Little Rabbit encore was HUGE. Timmy started it at the speed of the second round, and they played it out five times instead of the normal four. \n\nI've never heard them play faster or tighter. \n\nFor me, there isn't a better band out there than what we saw and heard tonight. \n\nEdit: 12.21.09: heh, dorky review.", "title": "Railroad Earth, 11/11/05, Blue Point Brewery", "farm": "1", "date_update": "1324057605", "primary": "62507215", "server": "31", "date_create": "1131823511", "photos": "34", "secret": "1618bc89b4", "owner": "70925600@N00", "vist_label": "breaking_up", "id": "1350286"}, {"description": "Dude, it was *totally* worth standing on line for 3 hours, just to see the Penis Cover", "title": "De Young Opening", "farm": "1", "date_update": "1298308761", "primary": "65349242", "server": "30", "date_create": "1132543344", "photos": "38", "secret": "aa1dd288cb", "owner": "88815727@N00", "vist_label": "breaking_up", "id": "1410139"}, {"description": "Paris, near Eiffel Tower, rain", "title": "1 january 2006", "farm": "1", "date_update": "1435319932", "primary": "80483023", "server": "41", "date_create": "1136155214", "photos": "43", "secret": "e0ffdd44c1", "owner": "32323502@N00", "vist_label": "breaking_up", "id": "1719783"}, {"description": "The Reverse Ring class of 2006 prior to the start of the run.", "title": "Reverse Ring 2006", "farm": "1", "date_update": "1337735764", "primary": "108588558", "server": "53", "date_create": "1141623629", "photos": "28", "secret": "90182454fc", "owner": "45648925@N00", "vist_label": "breaking_up", "id": "72057594076000817"}, {"description": "In response to the Russian ban on Georgian wine, a group of expats set up a supra - a traditional Georgian feast complete with lots of local wine - across from the Russian Embassy in Tbilisi. ", "title": "Tbilisi Wine Protest", "farm": "1", "date_update": "1299802000", "primary": "137621753", "server": "51", "date_create": "1146639826", "photos": "19", "secret": "3814b7ca03", "owner": "15975620@N00", "vist_label": "breaking_up", "id": "72057594124033657"}, {"description": "The Woodwards/Robbins celebrated the aging of the patriarch... with croquet and cake and cats.", "title": "Ringoes, N.J. - July 8, 2006", "farm": "1", "date_update": "1356153980", "primary": "186165120", "server": "61", "date_create": "1152508307", "photos": "24", "secret": "e98a1cd1d3", "owner": "65142556@N00", "vist_label": "breaking_up", "id": "72157594193672439"}, {"description": "Saint Joseph's\nMontreal 2006", "title": "Way of the Cross", "farm": "1", "date_update": "1398095153", "primary": "213361738", "server": "77", "date_create": "1155410134", "photos": "16", "secret": "fa0d1fdf94", "owner": "17816202@N00", "vist_label": "breaking_up", "id": "72157594234258731"}, {"description": "Thanks to so many of you - we produced our first dance experiment with kids! "Chalat" means smart in Thai and this is what we're up to in Thailand!\n\nWe had an exciting day and it was followed by a spontaneous afterparty creating a space for Chalip, Moo, and Puoh to get to know each other and be excited about meeting again on the dance floor - the vision of our work! Be sure to check out of our video!", "title": "Dance Chalat #1 (27 Aug 06)", "farm": "1", "date_update": "1392527132", "primary": "227117649", "server": "84", "date_create": "1160803466", "photos": "19", "secret": "37afeebf46", "owner": "98973695@N00", "vist_label": "breaking_up", "id": "72157594327252982"}, {"description": "Offline Sport Games 7, Budapest", "title": "OSG7", "farm": "1", "date_update": "1357012070", "primary": "233103860", "server": "90", "date_create": "1157318616", "photos": "50", "secret": "ecba7ebd1e", "owner": "64078260@N00", "vist_label": "breaking_up", "id": "72157594267140001"}, {"description": "", "title": "Fred Armisen, Simon Dawes, Chad VanGaalen, Band of Horses @ Webster Hall 09/10/06", "farm": "1", "date_update": "1381882082", "primary": "240574208", "server": "89", "date_create": "1157987894", "photos": "46", "secret": "f24c825921", "owner": "13595617@N00", "vist_label": "breaking_up", "id": "72157594279469584"}, {"description": "", "title": "Elizabeth Furnace", "farm": "1", "date_update": "1356232438", "primary": "279607097", "server": "94", "date_create": "1161840464", "photos": "20", "secret": "7b9e9c94d0", "owner": "44068323@N00", "vist_label": "breaking_up", "id": "72157594345357482"}, {"description": "", "title": "11.06.2006 broken social scene concert", "farm": "1", "date_update": "1356194599", "primary": "299267876", "server": "113", "date_create": "1163748626", "photos": "30", "secret": "45832e87b0", "owner": "19879224@N00", "vist_label": "breaking_up", "id": "72157594379665028"}, {"description": "", "title": "Lake Louise / Tunnel Mountain", "farm": "1", "date_update": "1306448026", "primary": "291667450", "server": "102", "date_create": "1163012771", "photos": "49", "secret": "4f8781294f", "owner": "28781741@N00", "vist_label": "breaking_up", "id": "72157594366762375"}, {"description": "Riverside Park near 151st Street", "title": "Day In the Park", "farm": "1", "date_update": "1356391581", "primary": "306880443", "server": "99", "date_create": "1164573588", "photos": "20", "secret": "67e29de08f", "owner": "72758504@N00", "vist_label": "breaking_up", "id": "72157594393064919"}, {"description": "", "title": "Club Five -- DC", "farm": "1", "date_update": "1356200758", "primary": "332082680", "server": "162", "date_create": "1166991895", "photos": "28", "secret": "a967124722", "owner": "82705783@N00", "vist_label": "breaking_up", "id": "72157594436525255"}, {"description": "", "title": "Chinatown Bus", "farm": "1", "date_update": "1376804965", "primary": "342899714", "server": "159", "date_create": "1167783277", "photos": "18", "secret": "e498a5fe4b", "owner": "95413346@N00", "vist_label": "breaking_up", "id": "72157594455403320"}, {"description": "A glitzy and memorable evening at the W Hotel Union Square, following the marriage of Kev and Steph. Good food, good friends, great dancing.", "title": "Wedding: Kevin and Stephanie", "farm": "1", "date_update": "1331855590", "primary": "328293485", "server": "129", "date_create": "1166636828", "photos": "34", "secret": "8f401d224e", "owner": "78493611@N00", "vist_label": "breaking_up", "id": "72157594430120465"}, {"description": "Estrella,Corazon & her friends...", "title": "Tamsui with Jeffrey,Estrealla", "farm": "1", "date_update": "1299751259", "primary": "386838243", "server": "181", "date_create": "1171217146", "photos": "29", "secret": "04e9bdd5fb", "owner": "30638694@N00", "vist_label": "breaking_up", "id": "72157594529919590"}, {"description": "", "title": "P. Tour Eiffel at night.", "farm": "1", "date_update": "1378793105", "primary": "427347732", "server": "155", "date_create": "1174668143", "photos": "13", "secret": "9a0a77067d", "owner": "81654918@N00", "vist_label": "breaking_up", "id": "72157600018126769"}, {"description": "Thursday Walk 51", "title": "Spring Snow - Thursday Walk 51", "farm": "1", "date_update": "1396727560", "primary": "447188350", "server": "203", "date_create": "1175781549", "photos": "23", "secret": "319d49436b", "owner": "20197422@N00", "vist_label": "breaking_up", "id": "72157600049163823"}, {"description": "Group ride organized by the Hog Blog to see the tulips in Skagit Valley (April, 14 2007)", "title": "Tulip Ride 2007", "farm": "1", "date_update": "1356192930", "primary": "459393421", "server": "196", "date_create": "1176608009", "photos": "29", "secret": "3ce196e335", "owner": "49233110@N00", "vist_label": "breaking_up", "id": "72157600077565147"}, {"description": "April 1, 2007 - Snowshoeing trip to Dam Mountain next to Grouse Mountain.\n\nCheck out the video here www.youtube.com/watch?v=FLj03hgU3XA", "title": "Dam Mountain Snowshoeing 2007", "farm": "1", "date_update": "1435200212", "primary": "450948389", "server": "234", "date_create": "1238646530", "photos": "27", "secret": "1755c752e8", "owner": "34962573@N00", "vist_label": "breaking_up", "id": "72157616248069156"}, {"description": "w/ wet confetti!", "title": "the thermals 4-6-07", "farm": "1", "date_update": "1431783626", "primary": "449222567", "server": "199", "date_create": "1175935586", "photos": "43", "secret": "32703d6ac7", "owner": "60991646@N00", "vist_label": "breaking_up", "id": "72157600053262184"}, {"description": "An excursion with the Leeds Flickr group to Bolton Abbey in the Yorkshire Dales for a day of photo takin'", "title": "Leeds Flickr Outing - Bolton Abbey", "farm": "1", "date_update": "1356183783", "primary": "469157550", "server": "198", "date_create": "1177315533", "photos": "18", "secret": "57a6b5d638", "owner": "81851211@N00", "vist_label": "breaking_up", "id": "72157600113173792"}, {"description": "In the Sycamore Creek Wilderness Area, Coconino Forest. Kim and I brought my mom here for Mother's Day. \n\nRead more about the outing.", "title": "Parsons Trail, Sycamore Canyon Wilderness", "farm": "1", "date_update": "1313054690", "primary": "497366395", "server": "177", "date_create": "1179115629", "photos": "37", "secret": "68656928dd", "owner": "22691745@N00", "vist_label": "breaking_up", "id": "72157600212596308"}, {"description": "Knoxville, TN, June 2, 2007.", "title": "Adventure Con 2007", "farm": "2", "date_update": "1326909724", "primary": "532598988", "server": "1350", "date_create": "1181100057", "photos": "26", "secret": "da50d6f214", "owner": "92596048@N00", "vist_label": "breaking_up", "id": "72157600317384882"}, {"description": "", "title": "Grand Canyon", "farm": "2", "date_update": "1356139753", "primary": "539155502", "server": "1384", "date_create": "1181505371", "photos": "16", "secret": "1d505e5543", "owner": "8867673@N08", "vist_label": "breaking_up", "id": "72157600335924630"}, {"description": "The second part of our trip to Valdez over the Memorial Day weekend directed us to the Copper and Chitina Rivers with a few other stops on the way.", "title": "Copper & Chitina Rivers", "farm": "1", "date_update": "1318822438", "primary": "522233662", "server": "214", "date_create": "1180566117", "photos": "40", "secret": "28915550a5", "owner": "51378257@N00", "vist_label": "breaking_up", "id": "72157600288475643"}, {"description": "We celebrated the Canada Day long weekend by working in the backyard.", "title": "Backyard...", "farm": "2", "date_update": "1297160930", "primary": "687133339", "server": "1021", "date_create": "1183382309", "photos": "35", "secret": "d13118ac04", "owner": "28123480@N00", "vist_label": "breaking_up", "id": "72157600602891697"}, {"description": "Sunday road trip. Sunny and hot. Massive storm damage to riverbanks from the November 2006 storm.", "title": "Mount Rainier National Park - June 2007", "farm": "2", "date_update": "1422418864", "primary": "532663012", "server": "1073", "date_create": "1181103240", "photos": "42", "secret": "2ae01e6ab7", "owner": "51035716498@N01", "vist_label": "breaking_up", "id": "72157600317528182"}, {"description": "", "title": "Sarah's Hen Night", "farm": "2", "date_update": "1356290515", "primary": "953852663", "server": "1391", "date_create": "1185823843", "photos": "18", "secret": "711ad94fd0", "owner": "55919472@N00", "vist_label": "breaking_up", "id": "72157601103516248"}, {"description": " Carol Franze has organized a volunteer effort to replant our urban marshland in Orleans Parish. NOSCB was there to help in 2007. ", "title": "Replanting Marsh on the shores of Lake Pontchartrain", "farm": "2", "date_update": "1304090101", "primary": "1012439511", "server": "1390", "date_create": "1186499812", "photos": "19", "secret": "98606525d1", "owner": "75792625@N00", "vist_label": "breaking_up", "id": "72157601282747831"}, {"description": "\u041d\u043e\u0447\u043d\u044b\u0435 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u0433\u043e\u0440\u043e\u0434\u0430 \u0420\u0430\u043d\u0435\u043d\u0431\u0443\u0440\u0433\u0430 (\u0427\u0430\u043f\u043b\u044b\u0433\u0438\u043d\u0430) \u041b\u0438\u043f\u0435\u0446\u043a\u043e\u0439 \u043e\u0431\u043b\u0430\u0441\u0442\u0438, \u043f\u0440\u043e\u0433\u0443\u043b\u043a\u0430 \u0440\u0430\u043d\u043d\u0438\u043c \u0443\u0442\u0440\u043e\u043c 27 \u044f\u043d\u0432\u0430\u0440\u044f 2007 \u0433\u043e\u0434\u0430, \u0434\u043e \u043f\u043e\u043b\u043e\u043c\u043a\u0438 \u043e\u0431\u044a\u0435\u043a\u0442\u0438\u0432\u0430.\nNight photos of Ranenburg (Chaplygin), Lipetsk region, Russia, walk 27.01.2007, until the lens had broken.", "title": "Ranenburg-2007", "farm": "1", "date_update": "1296226086", "primary": "377399189", "server": "174", "date_create": "1170422599", "photos": "24", "secret": "e83c6140e4", "owner": "79215947@N00", "vist_label": "building_a_house", "id": "72157594513823620"}, {"description": "Driving home from dropping off my daughter in CT, I stumbled on this wonderfully historic town full of typical New England architecture. Take a stroll with me to explore this beautiful little town outside the state capital.", "title": "Wethersfield, Connecticutt", "farm": "1", "date_update": "1396727560", "primary": "81895292", "server": "37", "date_create": "1136471850", "photos": "34", "secret": "162669ea54", "owner": "20197422@N00", "vist_label": "building_a_house", "id": "1763049"}, {"description": "Byblos is about a 40 minute drive north of Beirut along the Mediterranean sea. The first inhabitants of Byblos came in the 7th century B.C., so the archeological site contains remnants of most of the major civilizations that controlled the town.", "title": "Byblos 2010", "farm": "5", "date_update": "1379915685", "primary": "4244037506", "server": "4022", "date_create": "1262764892", "photos": "21", "secret": "3dd47e7ed8", "owner": "97719890@N00", "vist_label": "building_a_house", "id": "72157623150525078"}, {"description": "Trip to Oxford for NYE 2011", "title": "Oxford 2011", "farm": "8", "date_update": "1402336510", "primary": "6629857747", "server": "7156", "date_create": "1325623507", "photos": "20", "secret": "6e832b87e2", "owner": "88654826@N00", "vist_label": "building_a_house", "id": "72157628704102171"}, {"description": "Pictures of my visit with my family in Monterrey in September 2005.", "title": "September visit to Monterrey, Mexico", "farm": "1", "date_update": "1304100959", "primary": "69744937", "server": "20", "date_create": "1133635046", "photos": "31", "secret": "79dc6f0d6f", "owner": "24657869@N00", "vist_label": "building_a_house", "id": "1501705"}, {"description": "Making a night of it, I took my camera and several of Volkmar Wentzel's works from Washington by Night, I set to the task to recreate a number of his photos. At a glance many of them appear unchanged. Upon further notice I began to realize how many minor things have changed over the year and most of all, the lighting in the city has changed dramatically since Volkmar's photos 70 years ago. Here are several of those photos as I have recreated them. The first four I have recreated some of his photos that are still possible. Those after I carried on with Volkmar's style.", "title": "Imitating Volkmar Wentzel", "farm": "1", "date_update": "1356154180", "primary": "379514844", "server": "98", "date_create": "1170614505", "photos": "13", "secret": "d44bfe7c54", "owner": "67707562@N00", "vist_label": "building_a_house", "id": "72157594517390554"}, {"description": "On the road from the Periyar Wildlife Reserve to Ernakulum (Kochi-Kerala)", "title": "Periyar to Ernakulum", "farm": "1", "date_update": "1434251000", "primary": "149261248", "server": "55", "date_create": "1148047794", "photos": "27", "secret": "dc36ded401", "owner": "13484951@N00", "vist_label": "building_a_house", "id": "72057594139279785"}, {"description": "", "title": "Massandra (2005)", "farm": "1", "date_update": "1296993285", "primary": "238316439", "server": "85", "date_create": "1157390208", "photos": "35", "secret": "ad9dec620a", "owner": "97189870@N00", "vist_label": "building_a_house", "id": "72157594268530948"}, {"description": "Needin' to build multi-time...gave Sarah Lerma a call and off we went to go enjoy some lunch in Sedona...stopped in Payson on the way back", "title": "Thunder Chicken Trip (10-5-05)", "farm": "1", "date_update": "1391231942", "primary": "50152110", "server": "28", "date_create": "1128665689", "photos": "11", "secret": "2587aca4a6", "owner": "27801060@N00", "vist_label": "building_a_house", "id": "1088519"}, {"description": "Newlands Forest is incorporated within the Table Mountain National Park. The forest is a popular outdoor recreation area and includes historic sites including the Woodcutter's Cottage and Lady Anne Barnard's Path.", "title": "Newlands Forest walk", "farm": "5", "date_update": "1358985049", "primary": "4260010448", "server": "4029", "date_create": "1263058661", "photos": "27", "secret": "aa805a3013", "owner": "51035677132@N01", "vist_label": "building_a_house", "id": "72157623174042056"}, {"description": "5-7 grudnia 2011 r.\nDecember 5-7, 2011", "title": "Siegen", "farm": "8", "date_update": "1429471397", "primary": "6487595937", "server": "7160", "date_create": "1323544158", "photos": "21", "secret": "f505607cb1", "owner": "8704943@N07", "vist_label": "building_a_house", "id": "72157628361619059"}, {"description": "A Christian missionary to the country of Albania spoke at The Rock Church www.therockvaldosta.org/ today. He had a display of items from Albania.\n\nMy Internet research tells me that a wonderful Albanian Christian was Mother Teresa. Praise God!", "title": "Albanian Artifacts", "farm": "1", "date_update": "1428273298", "primary": "126078727", "server": "54", "date_create": "1144611078", "photos": "19", "secret": "760fb3ca35", "owner": "83955435@N00", "vist_label": "building_a_house", "id": "72057594102843715"}, {"description": "A nice visit to the islands of Suomenlinna, an old maritime fortress, on the ferry.\n\nA wedding, a reception, a picnic, a nice lunch, and lots of walking around later, we departed.", "title": "Suomenlinna, 10th June 2006", "farm": "1", "date_update": "1356171899", "primary": "164265238", "server": "66", "date_create": "1149972312", "photos": "40", "secret": "d617035d42", "owner": "91034415@N00", "vist_label": "building_a_house", "id": "72157594161728799"}, {"description": "", "title": "Sewickley Area Homes", "farm": "8", "date_update": "1326397998", "primary": "6679058467", "server": "7165", "date_create": "1326296041", "photos": "14", "secret": "52752c2958", "owner": "92934406@N00", "vist_label": "building_a_house", "id": "72157628824235691"}, {"description": "", "title": "Shanghai, 2001", "farm": "1", "date_update": "1306437033", "primary": "144738578", "server": "47", "date_create": "1147456437", "photos": "14", "secret": "f93aab6b9d", "owner": "53752290@N00", "vist_label": "building_a_house", "id": "72057594132919444"}, {"description": "A few shots from our tour of Chicago during the ABCT conference. Mainly Anish Kapoor's Cloud Gate sculpture in Millennium Park and a selection of early Frank Lloyd Wright houses in Oak Park.", "title": "Chicago 2006", "farm": "5", "date_update": "1299476211", "primary": "4277779628", "server": "4044", "date_create": "1263598867", "photos": "12", "secret": "e656159652", "owner": "17669664@N05", "vist_label": "building_a_house", "id": "72157623093190087"}, {"description": "If you search flickr for "iowacity" and "tornado" you come up with many, many of pictures of the destruction left in the wake of the tornado that hit the night of the 13th, and many of them are a lot better than mine, but I still had to post my own.", "title": "Tornado Damage '06", "farm": "1", "date_update": "1356151779", "primary": "128963612", "server": "50", "date_create": "1145123128", "photos": "34", "secret": "516e294770", "owner": "51035641446@N01", "vist_label": "building_a_house", "id": "72057594107766165"}, {"description": "I'm scheduled to be in St. Louis on October 18, 2006 for the inaugural St. Louis Collaboratory workshop, so I decided to visit other folks while I'm in town. These are pictures from the first leg of my trip -- October 13-14, 2006. I covered four states in these two days -- Illinois (Chicago), Indiana (South Bend), Ohio (Toledo), and Michigan (Saline).", "title": "Midwest Adventures, Part 1", "farm": "1", "date_update": "1435457517", "primary": "271654609", "server": "88", "date_create": "1161035764", "photos": "37", "secret": "ee8b951c65", "owner": "63669472@N00", "vist_label": "building_a_house", "id": "72157594331657010"}, {"description": "Rock Hall of Fame and the house from A Christmas Story.", "title": "Cleveland 11/06", "farm": "1", "date_update": "1356377631", "primary": "325675509", "server": "135", "date_create": "1166417559", "photos": "13", "secret": "60ce146f4d", "owner": "50816637@N00", "vist_label": "building_a_house", "id": "72157594425735153"}, {"description": "In the Spring of 2001, we took a canal boat trip from London to Oxford", "title": "By boat to Oxford", "farm": "1", "date_update": "1356367556", "primary": "6788435", "server": "7", "date_create": "169315", "photos": "47", "secret": "9d57dbd66e", "owner": "11399912@N00", "vist_label": "building_a_house", "id": "169315"}, {"description": "Shots taken on a walk between Ribblehead and Dent in the Yorkshire Dales.", "title": "Ribblehead to Dent, Yorkshire Dales", "farm": "1", "date_update": "1356183783", "primary": "169167498", "server": "47", "date_create": "1150584430", "photos": "21", "secret": "ea08fc443e", "owner": "81851211@N00", "vist_label": "building_a_house", "id": "72157594168841526"}, {"description": "", "title": "Quebec", "farm": "1", "date_update": "1296786298", "primary": "273652776", "server": "104", "date_create": "1161235406", "photos": "17", "secret": "a37afe5b2f", "owner": "20023175@N00", "vist_label": "building_a_house", "id": "72157594335219262"}, {"description": "", "title": "Robe, South Australia", "farm": "5", "date_update": "1413635826", "primary": "4287137011", "server": "4066", "date_create": "1263901298", "photos": "27", "secret": "fba03f5fd7", "owner": "10559879@N00", "vist_label": "building_a_house", "id": "72157623116827597"}, {"description": "I drove through Trinity County when I was very young and next visited the county in August 2006. The canyon drives between the central valley and the coast are spectacular. The county is abundant with rivers and forest, as well as some interesting gold rush and logging towns. ", "title": "Trinity County, California", "farm": "1", "date_update": "1430585570", "primary": "219274760", "server": "95", "date_create": "1155963022", "photos": "16", "secret": "2e33eb8823", "owner": "75683070@N00", "vist_label": "building_a_house", "id": "72157594242632054"}, {"description": "", "title": "Hastings 2006", "farm": "1", "date_update": "1312199578", "primary": "219307569", "server": "92", "date_create": "1156021362", "photos": "36", "secret": "538b9f7036", "owner": "16549191@N00", "vist_label": "building_a_house", "id": "72157594243355383"}, {"description": "", "title": "Philadelphia", "farm": "1", "date_update": "1297308253", "primary": "85816214", "server": "36", "date_create": "1137365639", "photos": "14", "secret": "3a565f0296", "owner": "48494538@N00", "vist_label": "building_a_house", "id": "72057594048895602"}, {"description": "throughtheselines.com.au/research/etretat\nthroughtheselines.com.au/research/elsie-tranter", "title": "\u00c9tretat", "farm": "8", "date_update": "1330840979", "primary": "6734775353", "server": "7154", "date_create": "1327129925", "photos": "27", "secret": "7678e429ea", "owner": "62811324@N02", "vist_label": "building_a_house", "id": "72157628963057265"}, {"description": "Abandoned by my Dutch travel companion in this northern spa town I was still able to see some pretty amazing stuff.\n\nDay 1 - blogged.\nDay 2 - blogged.", "title": "T\u00fcrkiye: Bursa 12/17/05", "farm": "1", "date_update": "1434498824", "primary": "75852009", "server": "6", "date_create": "1189080649", "photos": "14", "secret": "1e00f80aa2", "owner": "99658898@N00", "vist_label": "building_a_house", "id": "72157601887425868"}, {"description": "We went to the Keukenhof again and passed the bulb fields of the "groen hart" along the way.", "title": "Dutch Bulb Fields, Lisse, The Netherlands", "farm": "1", "date_update": "1300605730", "primary": "133639964", "server": "52", "date_create": "1145820380", "photos": "17", "secret": "0897f872b7", "owner": "51439131@N00", "vist_label": "building_a_house", "id": "72057594114925840"}, {"description": "I had two hours to kill close to the SLC airport, so I road over to the Temple Square and took the express tour. ", "title": "SLC - Temple Square", "farm": "1", "date_update": "1356276076", "primary": "46259083", "server": "29", "date_create": "1016196", "photos": "45", "secret": "623edd7edd", "owner": "19541915@N00", "vist_label": "building_a_house", "id": "1016196"}, {"description": "", "title": "TURKIYE", "farm": "1", "date_update": "1354140472", "primary": "98919329", "server": "35", "date_create": "1139899916", "photos": "19", "secret": "d21697734b", "owner": "35188692@N00", "vist_label": "building_a_house", "id": "72057594064205885"}, {"description": "Think: Upper Canada Village", "title": "OAMOJFM", "farm": "1", "date_update": "1329315511", "primary": "66720221", "server": "27", "date_create": "1132907564", "photos": "11", "secret": "3d8c2361e5", "owner": "77502875@N00", "vist_label": "building_a_house", "id": "1439397"}, {"description": "These are photos taken during a suprise trip for the family to Gatlinburg, TN. Thanks to some friends who unfortunately couldn't enjoy the trip themselves my family was able to take some time to rest.", "title": "March 2006 - Gatlinburg, TN", "farm": "1", "date_update": "1297002826", "primary": "119498781", "server": "38", "date_create": "1143578120", "photos": "19", "secret": "57801e76ee", "owner": "45734014@N00", "vist_label": "building_a_house", "id": "72057594092966449"}, {"description": "After a quick overnight in Stockholm, we took the train out to Uppsala to visit Jennifer and Carles, friends of ours and researchers at the university.", "title": "visiting jennifer and carles", "farm": "1", "date_update": "1434086608", "primary": "47385755", "server": "32", "date_create": "1032916", "photos": "39", "secret": "36ceee8880", "owner": "99357189@N00", "vist_label": "building_a_house", "id": "1032916"}, {"description": "Gent/Gand/Ghent", "title": "Ghent", "farm": "1", "date_update": "1328821768", "primary": "254790754", "server": "89", "date_create": "1159443303", "photos": "24", "secret": "2c60f9236c", "owner": "72429561@N00", "vist_label": "building_a_house", "id": "72157594303148181"}, {"description": "", "title": "Day 3 - The Grand Canyon", "farm": "1", "date_update": "1401153056", "primary": "136775305", "server": "44", "date_create": "1156654001", "photos": "35", "secret": "f74dca0f4f", "owner": "99525316@N00", "vist_label": "building_a_house", "id": "72157594252899464"}, {"description": "", "title": "Brookline", "farm": "8", "date_update": "1332609401", "primary": "6798577163", "server": "7018", "date_create": "1328062980", "photos": "15", "secret": "a95cddbd55", "owner": "99846197@N00", "vist_label": "building_a_house", "id": "72157629122884021"}, {"description": "Memorial Day Weekend 2006 trip to Centralia, PA", "title": "Centralia", "farm": "1", "date_update": "1343076788", "primary": "157519618", "server": "56", "date_create": "1149116803", "photos": "26", "secret": "1519375820", "owner": "16553466@N00", "vist_label": "building_a_house", "id": "72157594151411212"}, {"description": "A small night walk in Shibuya. Nothing special.\n\nA blog entry can be found here: clemens-and.nihongonauts.com/?p=322", "title": "2006/5/31, Nightwalk at Shibuya", "farm": "1", "date_update": "1368542780", "primary": "157247221", "server": "65", "date_create": "1149089312", "photos": "31", "secret": "6310157995", "owner": "80072069@N00", "vist_label": "building_a_house", "id": "72157594150994426"}, {"description": "Random images from my visit to London with Benitha in January 2005.", "title": "London (January 2005)", "farm": "1", "date_update": "1356163789", "primary": "4959098", "server": "4", "date_create": "126117", "photos": "48", "secret": "1331841c1c", "owner": "35034348751@N01", "vist_label": "building_a_house", "id": "126117"}, {"description": "In partnership with Holcim (cement) and the FFSL (Football Federation) Sarvodaya is rebuilding 35 houses in Dikwella. These are photos from an auspicious day when Dr. Ariyaratne and representatives of Holcim visited the sites and familes to commence the construction.", "title": "Holcim Fund Reconstruction", "farm": "1", "date_update": "1320053526", "primary": "6321981", "server": "5", "date_create": "157909", "photos": "34", "secret": "42f94c8c1b", "owner": "49268158@N00", "vist_label": "building_a_house", "id": "157909"}, {"description": "A visit to my folks in Boulder City", "title": "Boulder City April 2005", "farm": "1", "date_update": "1336909280", "primary": "10624696", "server": "5", "date_create": "262424", "photos": "28", "secret": "e26eb7765c", "owner": "26015483@N00", "vist_label": "building_a_house", "id": "262424"}, {"description": "Pictures taken when I went on my daughter's class trip.", "title": "Columbia, SC", "farm": "1", "date_update": "1356359795", "primary": "15852415", "server": "10", "date_create": "381318", "photos": "16", "secret": "c395134c38", "owner": "44124414469@N01", "vist_label": "building_a_house", "id": "381318"}, {"description": "Pictures taken on Ahmedabad Heritage Walk", "title": "Old Ahmedabad", "farm": "1", "date_update": "1300382960", "primary": "19654552", "server": "17", "date_create": "461497", "photos": "24", "secret": "2d68e2c47e", "owner": "17155762@N00", "vist_label": "building_a_house", "id": "461497"}, {"description": "click on the photos at the right for a larger view and to see descriptions and notes.", "title": "Ron's and Leah's house", "farm": "1", "date_update": "1356139596", "primary": "20492088", "server": "15", "date_create": "478119", "photos": "27", "secret": "77cd07e800", "owner": "27977949@N00", "vist_label": "building_a_house", "id": "478119"}, {"description": "Caulker Caye photos from a trip in March, 2005. Belize is a Caribbean contry just South of Mexico's Yucatan Peninsula.", "title": "Belize - Caulker Caye, Mar 2005", "farm": "1", "date_update": "1356373015", "primary": "18408506", "server": "14", "date_create": "866852", "photos": "15", "secret": "7e5c0325b4", "owner": "36259387380@N01", "vist_label": "building_a_house", "id": "866852"}, {"description": "Photos from my trip to the Bahamas with TED.", "title": "Bahamas", "farm": "1", "date_update": "1334389113", "primary": "24928284", "server": "21", "date_create": "569233", "photos": "22", "secret": "81ad264256", "owner": "32729426@N00", "vist_label": "building_a_house", "id": "569233"}, {"description": "Aftermath of the tornado that hit South Birmingham 28th July 2005\n", "title": "Tornado hits Balsall Heath", "farm": "1", "date_update": "1296639485", "primary": "29447977", "server": "22", "date_create": "663795", "photos": "17", "secret": "0f55ee4739", "owner": "20614133@N00", "vist_label": "building_a_house", "id": "663795"}, {"description": "A trip to James Deering's winter estate Vizcaya in Miami, FL. August 24, 2005", "title": "2005-08 Vizcaya", "farm": "1", "date_update": "1396281218", "primary": "36998148", "server": "30", "date_create": "817228", "photos": "31", "secret": "a4c690c9d2", "owner": "87092635@N00", "vist_label": "building_a_house", "id": "817228"}, {"description": "CRM in Helensburgh", "title": "Hill House", "farm": "1", "date_update": "1356216294", "primary": "39171403", "server": "22", "date_create": "862633", "photos": "16", "secret": "96dfb59672", "owner": "86523742@N00", "vist_label": "building_a_house", "id": "862633"}, {"description": "There are lots more pics for this collection. I'll add them when I have time.", "title": "Aug. 17 - Budapest, Hungary", "farm": "1", "date_update": "1356995841", "primary": "39932933", "server": "32", "date_create": "877968", "photos": "20", "secret": "7a0602428a", "owner": "87221579@N00", "vist_label": "building_a_house", "id": "877968"}, {"description": "Selections from the 2005 Historic Station tour hosted by Graham Garfield of Chicago-L.org.", "title": "Chicago-L.org 2005 Historic Station Tour", "farm": "1", "date_update": "1356294740", "primary": "53435575", "server": "32", "date_create": "1129568696", "photos": "42", "secret": "b652ad524d", "owner": "19425637@N00", "vist_label": "building_a_house", "id": "1158466"}, {"description": "I spent four days in Holland, it's a lovely land that I would like to live in and/or re-visit. I forgot to bring my larger SD card so I only have a few photos. Look at Megan's Flickr page for many more\nwww.flickr.com/photos/moemegan/", "title": "Amsterdam", "farm": "1", "date_update": "1336146847", "primary": "60384594", "server": "30", "date_create": "1131284642", "photos": "11", "secret": "d3767dbc5b", "owner": "84085158@N00", "vist_label": "building_a_house", "id": "1304590"}, {"description": "Visited:\n\nMarch 2004", "title": "Hot Springs NP", "farm": "1", "date_update": "1430585569", "primary": "66090624", "server": "34", "date_create": "1132728558", "photos": "47", "secret": "7630626c64", "owner": "75683070@N00", "vist_label": "building_a_house", "id": "1426064"}, {"description": "Conimbriga is about 15 kilometer south of Coimbra. Archeological evidence shows the area was inhabited at least since the 9th century B.C. and until the 7th or 8th century A.D. The Romans arrived in the middle of the 1st century B.C. The city was sacked in the 3rd century A.D. and was eventually consecrated as a national monument in 1910.\n\nThe name dates from te 10th century B.C. Kon - denoting a high or rocky place, and Briga, added later and of Celtic origin, meaning fortified settlement.\n\nThe Pousada at which we stayed was near these ruins, in the town of Condexia.\n\n\nSee also Tracey's Photos.", "title": "Portugal 2005 - Conimbriga", "farm": "1", "date_update": "1324396712", "primary": "70095514", "server": "20", "date_create": "1133716817", "photos": "23", "secret": "0b81db54f0", "owner": "12699118@N00", "vist_label": "building_a_house", "id": "1508632"}, {"description": "", "title": "Nashua Holiday Stroll 2005", "farm": "1", "date_update": "1396727560", "primary": "69595089", "server": "9", "date_create": "1228066886", "photos": "29", "secret": "aca6545d67", "owner": "20197422@N00", "vist_label": "building_a_house", "id": "72157610510017132"}, {"description": "Dr. Soontorn Boonyatikarn is a revolutionary green architect based in Thailand.", "title": "Dr. Soontorn and his Amazing Biosolar House", "farm": "1", "date_update": "1311740199", "primary": "97034445", "server": "23", "date_create": "1139375120", "photos": "14", "secret": "6ae09c215b", "owner": "95976276@N00", "vist_label": "building_a_house", "id": "72057594061086267"}, {"description": "Pictures taken on a trip to Osaka, Japan in 2000 to visit friends.", "title": "Osaka 2000", "farm": "1", "date_update": "1296490980", "primary": "98276976", "server": "30", "date_create": "904406", "photos": "23", "secret": "e686666187", "owner": "28941743@N00", "vist_label": "building_a_house", "id": "904406"}, {"description": "Jen and I visited the Netherlands to see my brother Matt and his family, February 2006.", "title": "Netherlands 2006", "farm": "1", "date_update": "1301188347", "primary": "101722452", "server": "33", "date_create": "1139412938", "photos": "27", "secret": "f282dc6650", "owner": "37996647372@N01", "vist_label": "building_a_house", "id": "72057594061253839"}, {"description": "An expansive indoor and outdoor garden, formerly the summer estate of the DuPont family. Adam took me here for my birthday!", "title": "2006 Longwood Gardens", "farm": "1", "date_update": "1302006999", "primary": "124411581", "server": "44", "date_create": "1144365770", "photos": "30", "secret": "2c3d6e0c69", "owner": "51035702550@N01", "vist_label": "building_a_house", "id": "72057594100640639"}, {"description": "Scandinavia House (interiors, exterior) and Murray Hill neighborhood environs.", "title": "Scandinavia Hizzouse", "farm": "1", "date_update": "1435502963", "primary": "128543349", "server": "49", "date_create": "1145048707", "photos": "21", "secret": "fb252b42bc", "owner": "48889052497@N01", "vist_label": "building_a_house", "id": "72057594107162271"}, {"description": "Spring has begun, so my trusty assistant and I return to The Edge to investigate mysteries and moss.", "title": "Return to The Edge", "farm": "1", "date_update": "1356166274", "primary": "126582547", "server": "48", "date_create": "1144705302", "photos": "37", "secret": "97d54114cb", "owner": "93001633@N00", "vist_label": "building_a_house", "id": "72057594103927268"}, {"description": "This small town about 25 km south of Moncton is one of the prettiest around. I have been biking there; all part of the recovery process. Photos from Saturday, March 13, 2006.", "title": "Hillsborough, NB", "farm": "1", "date_update": "1425707400", "primary": "146139175", "server": "44", "date_create": "1147616601", "photos": "25", "secret": "adc354cd36", "owner": "35034352186@N01", "vist_label": "building_a_house", "id": "72057594134422604"}, {"description": "In early October 2005 I attended two days of data modelling training in the city.", "title": "Training in the city (October 2005)", "farm": "1", "date_update": "1404189491", "primary": "150229326", "server": "51", "date_create": "1148194299", "photos": "10", "secret": "81c8ae5951", "owner": "52952793@N00", "vist_label": "building_a_house", "id": "72057594140720580"}, {"description": "All of the usual touristy stuff.", "title": "Washington Day 1 - Downtown", "farm": "1", "date_update": "1297673312", "primary": "153757759", "server": "55", "date_create": "1148671916", "photos": "15", "secret": "5d6f781903", "owner": "33389938@N00", "vist_label": "building_a_house", "id": "72157594145992252"}, {"description": "For more photos of Greece, see these albums:\n\nAthens\nMykonos\nDelos\nSantorini\n", "title": "Greece - Delphi", "farm": "1", "date_update": "1432723020", "primary": "153822385", "server": "47", "date_create": "1148680534", "photos": "25", "secret": "e02dc900c5", "owner": "70323761@N00", "vist_label": "building_a_house", "id": "72157594146094534"}, {"description": "I made a visit to \u65b0\u7530\u795e\u793e and another small shrine near my place", "title": "2006/1/29 - visit to \u65b0\u7530\u795e\u793e", "farm": "1", "date_update": "1368542780", "primary": "156527897", "server": "73", "date_create": "1149008977", "photos": "27", "secret": "4557768c7c", "owner": "80072069@N00", "vist_label": "building_a_house", "id": "72157594149943607"}, {"description": "", "title": "Skagway", "farm": "1", "date_update": "1301828688", "primary": "164840594", "server": "51", "date_create": "1150034780", "photos": "26", "secret": "d9e63f42d3", "owner": "76567465@N00", "vist_label": "building_a_house", "id": "72157594162352251"}, {"description": "", "title": "Next Wave festival, Melbourne March 2006", "farm": "1", "date_update": "1298662186", "primary": "176771475", "server": "57", "date_create": "1151664628", "photos": "18", "secret": "36f76d0414", "owner": "66917096@N00", "vist_label": "building_a_house", "id": "72157594182341605"}, {"description": "", "title": "Post-Katrina tour", "farm": "1", "date_update": "1357237113", "primary": "181336152", "server": "56", "date_create": "1152561347", "photos": "12", "secret": "ad56299a5d", "owner": "60133523@N00", "vist_label": "building_a_house", "id": "72157594194526377"}, {"description": "A photo-story of the annual visit by survivors and families of the missing to the site of the notorious Serb-run camp at the Omarska mine complex, where hundreds (possibly thousands) were killed and many more tortured.\n\nSee headgroups.com/display/om for information about how you can help survivors who are campaigning for the right to commemorate the camp with a proper memorial on the site.", "title": "Commemorating Omarska, 2006", "farm": "1", "date_update": "1356449593", "primary": "210355049", "server": "79", "date_create": "1155070513", "photos": "40", "secret": "c50ec7ea6c", "owner": "35034351368@N01", "vist_label": "building_a_house", "id": "72157594229610644"}, {"description": "", "title": "Budapest", "farm": "1", "date_update": "1376948358", "primary": "215061156", "server": "67", "date_create": "1155565576", "photos": "14", "secret": "61c1d0830c", "owner": "67614763@N00", "vist_label": "building_a_house", "id": "72157594236594374"}, {"description": "I visited Hull.", "title": "Hull", "farm": "1", "date_update": "1391074719", "primary": "221300364", "server": "64", "date_create": "1156189290", "photos": "23", "secret": "6f7cd54896", "owner": "46315235@N00", "vist_label": "building_a_house", "id": "72157594246009271"}, {"description": "", "title": "australia 2006", "farm": "1", "date_update": "1324565020", "primary": "233138021", "server": "94", "date_create": "1175722626", "photos": "14", "secret": "eecbbd6b23", "owner": "10551456@N00", "vist_label": "building_a_house", "id": "72157600047957959"}, {"description": "Home: William B. Tracy House & Garage, Normandy Park (Seattle), Washington by Frank Lloyd Wright, 1956\n\nI visited the Tracy House with the owners in 2001, it's just south of Seattle, WA. The amazing thing is that Wright sent the plans to the owners, who cast every single concrete block themselves (only being able to make about 12 a day as I recall) and built the entire house by hand.", "title": "William B. Tracy House", "farm": "1", "date_update": "1356839195", "primary": "215221524", "server": "88", "date_create": "1194683688", "photos": "20", "secret": "6f1c27c203", "owner": "86431397@N00", "vist_label": "building_a_house", "id": "72157603052890435"}, {"description": "A collection of snapshots taken inside Lincoln Cathedral in early September 2006. Taken using entirely natural light (no flash).", "title": "Lincoln Cathedral", "farm": "1", "date_update": "1296684584", "primary": "232560070", "server": "82", "date_create": "1157278547", "photos": "37", "secret": "b22ce26f91", "owner": "61519109@N00", "vist_label": "building_a_house", "id": "72157594266207564"}, {"description": "", "title": "Shirley Windmill", "farm": "1", "date_update": "1408897880", "primary": "245600662", "server": "84", "date_create": "1158515723", "photos": "24", "secret": "8534a6287d", "owner": "16613114@N00", "vist_label": "building_a_house", "id": "72157594288057267"}, {"description": "Labour Day weekend in the tourist destinations of Goderich and Bayfield, Ontario, on the shore of Lake Huron.", "title": "Goderich & Bayfield", "farm": "1", "date_update": "1323695075", "primary": "238474420", "server": "81", "date_create": "1157820132", "photos": "40", "secret": "2588a5e9d5", "owner": "60942443@N00", "vist_label": "building_a_house", "id": "72157594276309542"}, {"description": "On my way from Melbourne back to Sydney, I stopped through Canberra to visit two old lovers of mine: Jon and Crazy Bexta! Most of the photos are from APH, though, fodder for userpics!", "title": "Canberra", "farm": "1", "date_update": "1300703163", "primary": "352658789", "server": "140", "date_create": "1168428971", "photos": "15", "secret": "98dfdcee71", "owner": "56384399@N00", "vist_label": "building_a_house", "id": "72157594471131188"}, {"description": "", "title": "Bassein Fort", "farm": "1", "date_update": "1384508555", "primary": "365699613", "server": "155", "date_create": "1177487290", "photos": "33", "secret": "eb9808e0f1", "owner": "16342542@N00", "vist_label": "building_a_house", "id": "72157600124866471"}, {"description": "", "title": "Paris in the the springtime", "farm": "1", "date_update": "1415680030", "primary": "381119705", "server": "154", "date_create": "1170708174", "photos": "21", "secret": "6decb58f70", "owner": "44124366920@N01", "vist_label": "building_a_house", "id": "72157594519705399"}, {"description": "Some film shots when I was just experimenting, back in the nineties.Mostly made on a vintage Konika.", "title": "Nineties Carleton Place", "farm": "1", "date_update": "1421863743", "primary": "385872656", "server": "161", "date_create": "1171144028", "photos": "29", "secret": "cb4cfd324a", "owner": "10248165@N00", "vist_label": "building_a_house", "id": "72157594528410844"}, {"description": "Museu del Ferrocarril, Vilanova i la Geltr\u00fa, Barcelona (Spain).", "title": "Reportaje - Museu del Ferrocarril", "farm": "1", "date_update": "1433713402", "primary": "392254359", "server": "180", "date_create": "1173108531", "photos": "13", "secret": "4224f245d0", "owner": "52971398@N00", "vist_label": "building_a_house", "id": "72157594571416820"}, {"description": "", "title": "Charleston/Folly Island - March 2007", "farm": "1", "date_update": "1341054631", "primary": "408736835", "server": "157", "date_create": "1172933301", "photos": "21", "secret": "e34ada364c", "owner": "62359756@N00", "vist_label": "building_a_house", "id": "72157594567134249"}, {"description": "", "title": "A Wander in Port Credit", "farm": "1", "date_update": "1297426494", "primary": "416031704", "server": "187", "date_create": "1173491119", "photos": "28", "secret": "791c813157", "owner": "72815849@N00", "vist_label": "building_a_house", "id": "72157594579686302"}, {"description": "", "title": "Tanilba Bay, NSW Australia", "farm": "1", "date_update": "1298475403", "primary": "405172136", "server": "129", "date_create": "1172624149", "photos": "23", "secret": "093fb38e70", "owner": "85001226@N00", "vist_label": "building_a_house", "id": "72157594560924652"}, {"description": "08-11 Febbraio 2007 \n\nFesta, raduno, congressi, convention per sua Maest\u00e0 il Maiale!\n\nSono stufo, sono offeso\nmi fanno prender peso, \nmi metton sotto sale \npoi mi chiamano "maiale".\nDi me si raccontan assurdit\u00e0\ne la prima \u00e8 questa qua:\nche io sono un tipo sporco\ne perci\u00f2 mi dicon "porco".\nnon voglio venire allevato\nper poi essere ingiuriato:\nadesso intendo scioperare\nnon star\u00f2 certo a guardare.\nIo protesto e soprattutto\nmai pi\u00f9 far\u00f2 il prosciutto.", "title": "Porky's Convention Five Minori (Sa)", "farm": "1", "date_update": "1377568284", "primary": "418136858", "server": "131", "date_create": "1173661086", "photos": "36", "secret": "203aab2460", "owner": "31441103@N00", "vist_label": "building_a_house", "id": "72157594583189777"}, {"description": "", "title": "housing and materials", "farm": "1", "date_update": "1305644193", "primary": "421207435", "server": "160", "date_create": "1174336674", "photos": "32", "secret": "96e66fb6ed", "owner": "31266144@N00", "vist_label": "building_a_house", "id": "72157600009734330"}, {"description": "", "title": "Drew's BP", "farm": "1", "date_update": "1371355682", "primary": "432105226", "server": "182", "date_create": "1174841815", "photos": "16", "secret": "793e4e89d9", "owner": "52928371@N00", "vist_label": "building_a_house", "id": "72157600026263209"}, {"description": "", "title": "Galvaston, TX", "farm": "1", "date_update": "1317333023", "primary": "443142940", "server": "209", "date_create": "1176047408", "photos": "28", "secret": "904e60741e", "owner": "80832371@N00", "vist_label": "building_a_house", "id": "72157600056004952"}, {"description": "Hell of swank model house that's approximately what Yoss's will look like.", "title": "Pre-Viewing Yoss's New House", "farm": "1", "date_update": "1414953759", "primary": "434018856", "server": "173", "date_create": "1174854199", "photos": "37", "secret": "a1440baf50", "owner": "42798669@N00", "vist_label": "building_a_house", "id": "72157600026423432"}, {"description": "Torino (Turin) is a town in the northern Italy from which on a good day you can see the Alps. Unfortunately it was a bit hazy the whole time we where there, but we got an outline of the great moutains in the distance, for a moment. At the end we did have an amazing view of them from the plane. Torino is also known as the hometown of the Juventus football club, the birthplace of solid chocolate, the location of the infamous Shroud of Turin, and the hometown of the international companies Lavazza and Fiat. Turin has hosted many events including the 2006 Winter Olympics as well as a yearly chocolate festival. The original solid chocolates, created by a man called Gianduja, were a mixture of cocoa and the much cheaper hazelnut resulting in one of the best combinations of flavours, ever. Although we didn't have the chance to try the Gianduja chocolates while in Turin (they were unreasonably priced at the airport), I did have a taste of the Gianduja gelato, which was heavenly. Like a creamy, cold, soft nutella. ", "title": "Torino", "farm": "1", "date_update": "1298014752", "primary": "458443781", "server": "188", "date_create": "1176531551", "photos": "22", "secret": "6af3b71387", "owner": "23471612@N00", "vist_label": "building_a_house", "id": "72157600074809393"}, {"description": "", "title": "Northern France", "farm": "1", "date_update": "1383338099", "primary": "475717591", "server": "214", "date_create": "1177780809", "photos": "28", "secret": "e2579d8e2f", "owner": "82116632@N00", "vist_label": "building_a_house", "id": "72157600149414215"}, {"description": "A day in South Tirol (Braies, Toblach, Innichen, Lienz)", "title": "South Tirol", "farm": "1", "date_update": "1357083921", "primary": "452982925", "server": "207", "date_create": "1187303832", "photos": "33", "secret": "8ff6994d90", "owner": "12897447@N00", "vist_label": "building_a_house", "id": "72157601485890764"}, {"description": "I found the windows at the catalyst building, and the views through them, to be fascinating. I ended up taking picture of the views through the windows, instead of taking pictures of the art. ", "title": "Art all night - Lawrenceville, PA", "farm": "1", "date_update": "1329030506", "primary": "477434535", "server": "192", "date_create": "1177885600", "photos": "15", "secret": "1f7c25cd99", "owner": "44521275@N00", "vist_label": "building_a_house", "id": "72157600157344812"}, {"description": "We went to San Francisco, CA for a few days after CHI in San Jose, CA to hang out with my aunt and cousin, check out San Fran and the wine farms in CA. ", "title": "Wine route near San Fran, CA", "farm": "1", "date_update": "1341403454", "primary": "491894889", "server": "210", "date_create": "1178757950", "photos": "19", "secret": "642a137319", "owner": "38955530@N00", "vist_label": "building_a_house", "id": "72157600198530541"}, {"description": "Inspired by my friend Jen's photos of her Walk to Work, here are some taken on my way HOME from work. I missed some great possibilities because, well, I was driving at the time.", "title": "Anne Goes Home from Work", "farm": "1", "date_update": "1296732919", "primary": "483713618", "server": "179", "date_create": "1178278940", "photos": "33", "secret": "188901170e", "owner": "65695366@N00", "vist_label": "building_a_house", "id": "72157600175552277"}, {"description": "", "title": "Doors Open Hamilton 2007", "farm": "1", "date_update": "1356148927", "primary": "485554029", "server": "194", "date_create": "1178402353", "photos": "34", "secret": "28f33a1689", "owner": "44884279@N00", "vist_label": "building_a_house", "id": "72157600180662376"}, {"description": "Fiesta at Swell Surf Camp for new years 2009", "title": "New years 2009", "farm": "5", "date_update": "1320867753", "primary": "4233761597", "server": "4054", "date_create": "1262371900", "photos": "23", "secret": "7e7f0a4504", "owner": "37917987@N08", "vist_label": "camping", "id": "72157622990054453"}, {"description": "", "title": "Carnivals", "farm": "6", "date_update": "1345424383", "primary": "5313842840", "server": "5090", "date_create": "1293923959", "photos": "31", "secret": "107dbc172c", "owner": "37025592@N00", "vist_label": "carnival", "id": "72157625597943685"}, {"description": "Altsasuko inauterietako pertsonaiak, Momotxorroak, akerra, Juan Tranposo eta abar herriko pilotaleku ondoan jantzi eta han dagoen barrika batetatik, txerri odolez zikintzen dira. Denak prest daudenean Altsasuko kaleak hartzen ditu momotxorroen konpartsak. Jotzen edo beldurtzen saiatzen dira uneoro. Noizbehinka txarangak lagunduta dantza egin ohi dute ordea, eta hau da unerik lasaiena. Herriko plazara heltzean sutzar bat erretzen dute, sua momotxorroz inguratua dagoen bitartean. Argazkiak: Jon Iraola. Altsasu, 2011-03-08.", "title": "Altsasu: Inauteriak 2011", "farm": "6", "date_update": "1301648916", "primary": "5579246250", "server": "5226", "date_create": "1301648592", "photos": "50", "secret": "1977df851b", "owner": "29103672@N00", "vist_label": "carnival", "id": "72157626404221424"}, {"description": "2010", "title": "gerber baby food festival", "farm": "5", "date_update": "1415822791", "primary": "4822621025", "server": "4099", "date_create": "1279952889", "photos": "12", "secret": "e9a7b04441", "owner": "14609664@N06", "vist_label": "carnival", "id": "72157624444689467"}, {"description": "Founded 23 years ago Aquarela is one of the oldest samba schools in France. The band consists of 40 musicians and dancers and is inspired by the Rio Carnival. Aquarela participate in carnivals in all around Europe and Brazil.", "title": "Aquarela De Paris", "farm": "5", "date_update": "1357214009", "primary": "4647847643", "server": "4068", "date_create": "1275555528", "photos": "19", "secret": "13537274d7", "owner": "15951997@N03", "vist_label": "carnival", "id": "72157624194258186"}, {"description": "Mandinga Arts is owned by the British-Columbian couple Charles Beauchamp and Julieta Rubio. Through the last 20 years they have been working with carnival costumes, floats, face painting, masks, workshops and much more.\nAt Aalborg Carnival they performed with students from the school "Hasseris Gymnasium" .", "title": "Mandinga Arts - Hasseris Gymnasium", "farm": "5", "date_update": "1357214012", "primary": "4662909006", "server": "4033", "date_create": "1275557263", "photos": "25", "secret": "b654da1247", "owner": "15951997@N03", "vist_label": "carnival", "id": "72157624194353776"}, {"description": "ZinnekeParade 22-05-2010 @ la Grand(Place / Grote Markt, Bruxelles / Brussel / Brussels - on the theme \u00ab ! A Table ! Aan Tafel ! \u00bb\n* \nMore photos @ www.bruxel.org/zinneke", "title": "10| Diverse \u00ac Zinneke", "farm": "5", "date_update": "1435065567", "primary": "4776185941", "server": "4139", "date_create": "1278661863", "photos": "31", "secret": "0d7a735c9d", "owner": "36699339@N00", "vist_label": "carnival", "id": "72157624455335016"}, {"description": "December 2011. Cool city!", "title": "Berlin", "farm": "6", "date_update": "1299242714", "primary": "5496829050", "server": "5019", "date_create": "1299238469", "photos": "13", "secret": "0024db7423", "owner": "54164729@N06", "vist_label": "carnival", "id": "72157626193593404"}, {"description": "July 4, 2010, Webster Groves, MO, Henskes with Tina and Lucy Robbins", "title": "Webster Groves Carnival", "farm": "5", "date_update": "1301697509", "primary": "4762365603", "server": "4080", "date_create": "1278331778", "photos": "10", "secret": "ce5b62ac8d", "owner": "28698026@N05", "vist_label": "carnival", "id": "72157624300939949"}, {"description": "Gallier Hall is a historic building on St. Charles Avenue in New Orleans, Louisiana. It is the former New Orleans city hall. It is currently a convention center, reception hall, and home of The Ty Tracy Theatre, named for the late Artistic Director who ran the New Orleans Recreational Department Theatre. Today, The Ty Tracy Theatre is home to Julie Condy's Crescent City Lights Youth Theatre.\n\nGallier Hall is located on St. Charles Avenue at Lafeyette Square in the Central Business District. The building was originally designed to be the city hall of New Orleans by the noted architect, James Gallier, Sr.. Construction began in 1845, and the building was dedicated on 10 May 1853. Gallier Hall is a three-story marble structure fronted by two rows of fluted Ionic columns in the Neoclassical style. It is one of the most important structures built during the ante-bellum period of the city.\n\nAfter its dedication in 1853, Gallier Hall remained the city hall for just over a century. Many important events during the Civil War, Reconstruction, and the era of Louisiana governor Huey Long took place at Gallier Hall. Today, it is best known as a place of honor during Mardi Gras. Viewing galleries in front of the hall are reserved for Mardi Gras royalty, and parades on the St. Charles route pause in front them. Marching bands typically perform shows here during the parades.", "title": "Mardi Gras Thursday Gallier Hall", "farm": "5", "date_update": "1305928020", "primary": "4247774341", "server": "4063", "date_create": "1262711941", "photos": "32", "secret": "8931ba370a", "owner": "17281186@N00", "vist_label": "carnival", "id": "72157623145768674"}, {"description": "Simpsonville, SC", "title": "2010 Freedom Weekend Aloft", "farm": "5", "date_update": "1297841448", "primary": "4865146200", "server": "4101", "date_create": "1281064238", "photos": "36", "secret": "04654c62d8", "owner": "31851937@N00", "vist_label": "carnival", "id": "72157624538698347"}, {"description": "2010 Crown Oaks Day at Flemington Racecourse, Melbourne, Australia\n4th November 2010\n\nYou're welcome to use these images in sim horse games. Its not compulsory, but I'd like to hear where you're using them if you are a flickr member. Just comment on the photo used.", "title": "La Vie En Rose Vase", "farm": "5", "date_update": "1296711289", "primary": "5150765562", "server": "4066", "date_create": "1289046304", "photos": "40", "secret": "457478fbe6", "owner": "55526150@N02", "vist_label": "carnival", "id": "72157625323525250"}, {"description": "A few pictures of Bergen op Zoom today, including a few pics from the Vastenavond (Carnival)", "title": "2011-03-06 Krabbegat", "farm": "6", "date_update": "1299446372", "primary": "5503334447", "server": "5135", "date_create": "1299444945", "photos": "27", "secret": "088e9dda1b", "owner": "10088554@N07", "vist_label": "carnival", "id": "72157626210430218"}, {"description": "", "title": "Carnaval 2011 - Olinda", "farm": "6", "date_update": "1355910182", "primary": "5504450918", "server": "5059", "date_create": "1299456173", "photos": "26", "secret": "36e2295dcc", "owner": "19081401@N00", "vist_label": "carnival", "id": "72157626211720512"}, {"description": "Carnival day parades on Magazine Street, Uptown New Orleans, the Sunday before Mardi Gras. Okeanos, Mid-City, and Thoth Parades.", "title": "Magazine Street Sunday Day Parades 2011", "farm": "6", "date_update": "1424369418", "primary": "5503959593", "server": "5215", "date_create": "1299458560", "photos": "37", "secret": "d2ac651788", "owner": "29350288@N06", "vist_label": "carnival", "id": "72157626211952048"}, {"description": "carnival der kulturen 2010 in bielefeld", "title": "carnival der kulturen 2010", "farm": "5", "date_update": "1356719929", "primary": "4673792319", "server": "4032", "date_create": "1275751301", "photos": "29", "secret": "002758beff", "owner": "16372641@N00", "vist_label": "carnival", "id": "72157624208773032"}, {"description": "", "title": "labor day parade 2011", "farm": "7", "date_update": "1315879221", "primary": "6120330094", "server": "6087", "date_create": "1315313228", "photos": "42", "secret": "061183596a", "owner": "43043178@N02", "vist_label": "carnival", "id": "72157627607253006"}, {"description": "June 2008", "title": "Mainz", "farm": "5", "date_update": "1356140860", "primary": "4867885098", "server": "4138", "date_create": "1281150818", "photos": "10", "secret": "343fbae7a2", "owner": "24723059@N00", "vist_label": "carnival", "id": "72157624545184951"}, {"description": "Carnival Tuesday 2011 in Heidelberg.\nThe sun was shining faithful over the parade.\nTemperature was at least 11,11\u00b0C.\n\n", "title": "Heidelberg Fasching 2011-03-08", "farm": "6", "date_update": "1299606686", "primary": "5509108549", "server": "5218", "date_create": "1299601865", "photos": "45", "secret": "43c5967967", "owner": "54945070@N07", "vist_label": "carnival", "id": "72157626098619757"}, {"description": " Posted via email from divine word lutheran church ", "title": "Mardi Gras Carnival Feast photos!", "farm": "6", "date_update": "1391166593", "primary": "5511406608", "server": "5172", "date_create": "1299645889", "photos": "36", "secret": "91de093b4c", "owner": "14678786@N00", "vist_label": "carnival", "id": "72157626228068442"}, {"description": "I've picked these up over the years as gifts or souvenirs from my (limited) travels.", "title": "Shot Glass Collection", "farm": "5", "date_update": "1356143325", "primary": "4780822672", "server": "4141", "date_create": "1278788665", "photos": "37", "secret": "05e87bdcaa", "owner": "84018923@N00", "vist_label": "carnival", "id": "72157624340134097"}, {"description": "To give my new D7000 a reasonable test drive I popped along to see the dog show and car show at Calthorpe Park in Fleet today.\n\nThis set comprises a few shots I took during the dog show.", "title": "Fleet Carnival Dog Show 2011", "farm": "7", "date_update": "1379362088", "primary": "5922881329", "server": "6148", "date_create": "1310328263", "photos": "27", "secret": "97f2b626c5", "owner": "8752533@N04", "vist_label": "carnival", "id": "72157627038584781"}, {"description": "2011", "title": "Winter Carnival Parade", "farm": "6", "date_update": "1297578997", "primary": "5440081627", "server": "5217", "date_create": "1297577961", "photos": "21", "secret": "d106f96391", "owner": "47269870@N06", "vist_label": "carnival", "id": "72157626036703040"}, {"description": "Sheppey Summer Carnival, 21 August 2010", "title": "Sheppey Summer Carnival, 21 August 2010", "farm": "6", "date_update": "1401313655", "primary": "5439921634", "server": "5140", "date_create": "1297549096", "photos": "36", "secret": "789f5c1af9", "owner": "28784726@N06", "vist_label": "carnival", "id": "72157625908803155"}, {"description": "Strates Carnival Train in W. Columbia and Cayce, South Carolina headed down the R-Line to Augusta, Georgia", "title": "Strates Carnival Train", "farm": "5", "date_update": "1297826884", "primary": "5075228699", "server": "4086", "date_create": "1286902124", "photos": "24", "secret": "c52b8f6c0f", "owner": "38291609@N04", "vist_label": "carnival", "id": "72157625149674570"}, {"description": "Photowalk durch K\u00f6ln statt Karneval feiern. // Photowalk through Cologne instead of celebrating carnival.", "title": "Photowalk 2010-11-11", "farm": "2", "date_update": "1429622699", "primary": "5184593736", "server": "1350", "date_create": "1336325051", "photos": "34", "secret": "86fc51316c", "owner": "55155274@N03", "vist_label": "carnival", "id": "72157629615318518"}, {"description": "Some pics from our Macau-Hong Kong Trip last December", "title": "Macau Trip", "farm": "5", "date_update": "1304657020", "primary": "4355790811", "server": "4040", "date_create": "1266160626", "photos": "21", "secret": "a3cbeb8693", "owner": "34995012@N05", "vist_label": "carnival", "id": "72157623432780770"}, {"description": "a Berlin weekend trip , for the Wax Treatment / Version party in Horst Krzbrg Club. And also Karneval der Kulturen street party in Kreuzberg ", "title": "Berlin Dub 2011", "farm": "3", "date_update": "1356279482", "primary": "5832398830", "server": "2599", "date_create": "1308576472", "photos": "37", "secret": "e25f6c944b", "owner": "59328597@N00", "vist_label": "carnival", "id": "72157626880438645"}, {"description": "", "title": "Pentax MX", "farm": "7", "date_update": "1356303686", "primary": "5934414925", "server": "6126", "date_create": "1310592466", "photos": "13", "secret": "3dfe91cf22", "owner": "54232610@N08", "vist_label": "carnival", "id": "72157627188517330"}, {"description": "On Sunday, February 14, 2010 Ambassador Gutman was invited to a reception hosted by the mayor of Aalst Ilse Uyttersprot at the Town Hall. It marked the start of the yearly carnival.", "title": "Aalst Carnival Reception", "farm": "5", "date_update": "1331217488", "primary": "4361796593", "server": "4021", "date_create": "1266332018", "photos": "31", "secret": "954b85904e", "owner": "42254258@N05", "vist_label": "carnival", "id": "72157623446826118"}, {"description": "Buggy race snaps at spring carnival here in CMU.", "title": "spring Carnival", "farm": "5", "date_update": "1356455676", "primary": "4528926214", "server": "4057", "date_create": "1271528297", "photos": "24", "secret": "542c5e8fbd", "owner": "9474286@N05", "vist_label": "carnival", "id": "72157623751775927"}, {"description": "", "title": "Royal Naval Dockyard", "farm": "6", "date_update": "1357333924", "primary": "5627812516", "server": "5146", "date_create": "1303069337", "photos": "38", "secret": "18ca01714f", "owner": "91396833@N00", "vist_label": "carnival", "id": "72157626393855041"}, {"description": "See Zeon's Concert Set - www.flickr.com/photos/mrzeon/sets/72157624094078272/", "title": "Vinila von Bismark & The Lucky Dados", "farm": "5", "date_update": "1305493675", "primary": "4615924631", "server": "4068", "date_create": "1274125700", "photos": "13", "secret": "6a7a671608", "owner": "40077566@N00", "vist_label": "carnival", "id": "72157623956990589"}, {"description": "I had the chance to check out the Carnevale in Venice in February 2010 - what a blast - this is always an incredible experience. On the first Sunday of the Carnevale there is a Grand Parade in the Piazza di San Marco. It is definitely crowded and not easy to shot in with people elbowing each other out of the way - true Italian chaos! These aren't my best shots of the Carnevale but they fall into the "not bad" category.", "title": "Carnevale 2010 in Venice Grand Parade", "farm": "5", "date_update": "1433427522", "primary": "4903158595", "server": "4079", "date_create": "1282162129", "photos": "36", "secret": "9704abc90f", "owner": "72213316@N00", "vist_label": "carnival", "id": "72157624754625440"}, {"description": "", "title": "Capturing the Carnival", "farm": "5", "date_update": "1305103659", "primary": "4804677684", "server": "4082", "date_create": "1279454031", "photos": "28", "secret": "fce6beb74e", "owner": "45714642@N07", "vist_label": "carnival", "id": "72157624526951968"}, {"description": "", "title": "ViareggiO CarnevalE_2010", "farm": "5", "date_update": "1333316171", "primary": "4365958591", "server": "4036", "date_create": "1266703474", "photos": "14", "secret": "2b3ac24e1b", "owner": "24191526@N05", "vist_label": "carnival", "id": "72157623350425121"}, {"description": "Winter Carnival in Saint Paul, MN (USA)\nIce sculptures competition.", "title": "Sait Paul Winter Carnival (2011-01-28)", "farm": "6", "date_update": "1335951122", "primary": "5462367607", "server": "5095", "date_create": "1298238374", "photos": "14", "secret": "7c50d0f2a1", "owner": "36561341@N04", "vist_label": "carnival", "id": "72157625971712783"}, {"description": "", "title": "Krewe du Vieux 2011: February 19th, 2011", "farm": "6", "date_update": "1433474502", "primary": "5463275761", "server": "5219", "date_create": "1298259603", "photos": "30", "secret": "f04457bb11", "owner": "62346357@N00", "vist_label": "carnival", "id": "72157625973841677"}, {"description": "western Caribbean cruise first day leaving port of Tampa Florida", "title": "carnival legend day one", "farm": "5", "date_update": "1300950813", "primary": "4455401709", "server": "4036", "date_create": "1269308708", "photos": "18", "secret": "7d28548011", "owner": "86014582@N00", "vist_label": "carnival", "id": "72157623550329501"}, {"description": "Inauterien azkenaurreko asteburuan irteten dira zomorroak Aranon. Goizean goiz herriko plazan geratu eta baserriz baserri joaten dira fandango eta arin-arina dantzatuz giro ederrean. Puska-biltzea egin ostean, elkartean bazkaldu eta zagi-dantza egin ohi dute arratsaldean. Argazkietan, goizeko puska-biltzea ikus dezakezue. Argazkiak: Jon Iraola. Arano, 2011-02-26.", "title": "Arano: Zomorroak 2011", "farm": "6", "date_update": "1300787135", "primary": "5549198371", "server": "5016", "date_create": "1300787038", "photos": "25", "secret": "4c7f1aea7e", "owner": "29103672@N00", "vist_label": "carnival", "id": "72157626199302945"}, {"description": "This was V's first trip to the Disneyland Resort in Anaheim. We visited California Adventure the first day and Disneyland the second day. Not pictured are our wanderings through Downtown Disney or the Grand Californian (where we stayed).\n\nVisiting the park with an infant gave me a whole new perspective. It was unlike any Disney trip I had taken before -- in many good ways and a few bad ways as well.\n\nI'm looking forward to when V is older and she (and we) can enjoy more of what Disneyland has to offer.", "title": "Disneyland Resort - 5-6 March 2011", "farm": "6", "date_update": "1356470641", "primary": "5552321500", "server": "5180", "date_create": "1300854398", "photos": "16", "secret": "050f81580a", "owner": "81232363@N00", "vist_label": "carnival", "id": "72157626205521785"}, {"description": "", "title": "Saratoga County Fair", "farm": "5", "date_update": "1312917878", "primary": "4819447157", "server": "4073", "date_create": "1279852385", "photos": "16", "secret": "faf8bfba20", "owner": "39261420@N07", "vist_label": "carnival", "id": "72157624437222413"}, {"description": "I did not eat one bit of corn.", "title": "Brentwood Cornfest (July 9, 2011)", "farm": "7", "date_update": "1357042029", "primary": "5965146741", "server": "6028", "date_create": "1311380718", "photos": "17", "secret": "d3172f24cc", "owner": "97863854@N00", "vist_label": "carnival", "id": "72157627258198124"}, {"description": "Kind of spur of the moment, Jesse and Vail decided to throw a bit of an art party. Those of us who made it had the chance to putter around with acrylic paints on some very different canvases. The next day, some of us hit up the Arlington fair.\n\nThe pics here are all straight from whatever camera took them--or the app that used the camera. Any special effects were done in-camera, so, technically, everything is still, as usual, straight from the camera.", "title": "A Wild Weekend at the Inverted Ark (and Elsewhere)", "farm": "5", "date_update": "1298391757", "primary": "4922582010", "server": "4082", "date_create": "1282622978", "photos": "34", "secret": "48844960f9", "owner": "77713253@N00", "vist_label": "carnival", "id": "72157624794808792"}, {"description": "22-05-2010, Bruxelles / Brussel / Brussels :: ZinnekeParade 2010 on the theme \u00ab ! A Table ! Aan Tafel ! \u00bb | Zinnode [20] \u00abLe grand restaurant is going Bananaz !\u00bb\n*\nMore photos @ www.bruxel.org/zinneke", "title": "10| Bananaz \u00ac Zinneke", "farm": "5", "date_update": "1435065567", "primary": "4823466956", "server": "4079", "date_create": "1279700056", "photos": "33", "secret": "915e6ce5dc", "owner": "36699339@N00", "vist_label": "carnival", "id": "72157624424890861"}, {"description": "", "title": "2.17.10 Cerquilho Carnival", "farm": "5", "date_update": "1374437096", "primary": "4824847072", "server": "4123", "date_create": "1280002619", "photos": "42", "secret": "244f94912b", "owner": "49547254@N03", "vist_label": "carnival", "id": "72157624573082652"}, {"description": "Saint Paul, Minnesota\nJaunary 23, 2010\n\nCatch up with the Securian Frozen 5k & Half Marathon on facebook.\n\nIf you see yourself in one of these photos, please leave a note!", "title": "2010 Securian Frozen 5k and Half Marathon", "farm": "5", "date_update": "1433028804", "primary": "4301181854", "server": "4040", "date_create": "1264355886", "photos": "14", "secret": "0523cb7010", "owner": "70267096@N00", "vist_label": "carnival", "id": "72157623150381213"}, {"description": "Photos of the medieval carnival in St. Goarshausen, taken on the easter sunday 2011. The photos are mainly taken from the free-flight raptors demonstration of the falconry being present there.\n\nLinks to the falconry and the market, you find with the photos.", "title": "St. Goarshausen, Easter 2011", "farm": "6", "date_update": "1325979003", "primary": "5653299456", "server": "5028", "date_create": "1303723898", "photos": "16", "secret": "64c0a34059", "owner": "53748166@N05", "vist_label": "carnival", "id": "72157626448373295"}, {"description": "", "title": "Barbados", "farm": "5", "date_update": "1362346051", "primary": "4638964014", "server": "4048", "date_create": "1274792653", "photos": "12", "secret": "3057f4373c", "owner": "92921037@N00", "vist_label": "carnival", "id": "72157624133373744"}, {"description": "", "title": "Indietracks 2010", "farm": "5", "date_update": "1297336186", "primary": "4830215816", "server": "4117", "date_create": "1280130759", "photos": "44", "secret": "f2be6d139d", "owner": "38755023@N06", "vist_label": "carnival", "id": "72157624584252424"}, {"description": "", "title": "County Fair in Hillsdale, MI", "farm": "5", "date_update": "1348934501", "primary": "5029012818", "server": "4152", "date_create": "1285590443", "photos": "27", "secret": "827f49226e", "owner": "52349296@N08", "vist_label": "carnival", "id": "72157624919770219"}, {"description": "Gracias por visitar y comentar\nthanks for visit and comment\nVisita mi Web de Fotografias\nwww.elcoleccionistadeinstantes.com/\n\nEl crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.\nEl AIDAsol atrac\u00f3 en el Muelle de Santa Catalina en Las Palmas de Gran Canaria en la nueva temporada de cruceros, con sus 2.200 pasajeros, y 630 tripulantes\n\n\nEmbarcaci\u00f3n de bandera italiana del armador Aida Cruises (grupo Carnival), fue botado en abril del presente a\u00f1o en los astilleros Meyer Werft (Kiel).\n\nTiene un tonelaje de 71.304 GT, eslora de 252 metros, manga de 32,2 m y calado de 7,2 metros. Est\u00e1 consignado por Berg\u00e9 Mar\u00edtima.\n\nEste crucero cuenta con catorce cubiertas; una escalera de 40 metros; teatro, casino, cine, tres piscinas, cuatro jacuzzis, siete restaurantes, 13 bares, Spa, gimnasio y cancha de baloncesto y una f\u00e1brica propia de cerveza que se elabora en el buque.\n\nM\u00e1s informaci\u00f3n aqui : www.aida.de/kreuzfahrt/reisen-mit-aida/schiffe/aidasol.21...", "title": "El crucero AIDAsol en el Muelle de Santa Catalina del Puerto de La Luz y de Las Palmas en Gran Canaria Islas Canarias Espa\u00f1a.", "farm": "7", "date_update": "1374160300", "primary": "6193229914", "server": "6177", "date_create": "1317242357", "photos": "21", "secret": "e82872a5ed", "owner": "31195974@N05", "vist_label": "carnival", "id": "72157627775152040"}, {"description": "", "title": "Summer Carnival, Rotterdam / NL, 2011", "farm": "7", "date_update": "1312041822", "primary": "5990958176", "server": "6016", "date_create": "1312040406", "photos": "32", "secret": "b47d55ea1c", "owner": "27788004@N02", "vist_label": "carnival", "id": "72157627191217319"}, {"description": "", "title": "Gillingham Carnival - Oct 2010", "farm": "2", "date_update": "1424624400", "primary": "5129945560", "server": "1216", "date_create": "1288475922", "photos": "14", "secret": "0f6b1d10ee", "owner": "48152104@N03", "vist_label": "carnival", "id": "72157625150547327"}, {"description": "35th Annual, in conjunction with St. Paul's Winter Carnival.", "title": "2011 Saintly City Cat Show ", "farm": "6", "date_update": "1422233255", "primary": "5403027666", "server": "5098", "date_create": "1296434253", "photos": "15", "secret": "15607e5b14", "owner": "49503124519@N01", "vist_label": "carnival", "id": "72157625816691809"}, {"description": "", "title": "Animadness 1/2012", "farm": "8", "date_update": "1435341877", "primary": "6698570041", "server": "7009", "date_create": "1326597059", "photos": "19", "secret": "a557a27692", "owner": "23460440@N02", "vist_label": "carnival", "id": "72157628873534519"}, {"description": "A visit on 27Jan2012 to the Frans Hals Museum in Haarlem, an exhibition "Celebrating in the Golden Age".", "title": "Frans Hals Museum - Haarlem jan.12", "farm": "8", "date_update": "1327695331", "primary": "6772393277", "server": "7018", "date_create": "1327695244", "photos": "15", "secret": "6ef0cb4279", "owner": "72605979@N00", "vist_label": "carnival", "id": "72157629058171635"}, {"description": "", "title": "2012 Guangzhou Flower Carnival", "farm": "8", "date_update": "1356145380", "primary": "6731512175", "server": "7161", "date_create": "1327072744", "photos": "48", "secret": "774122159e", "owner": "13523064@N03", "vist_label": "carnival", "id": "72157628953763131"}, {"description": "March 3rd was sunny and cool (about 10-15 degrees): Perfect for the Ceremonial Start of the Iditarod: 82 teams of musher, handler and iditarod pulled by full dog teams taking a tour through Anchorage.", "title": "Iditarod 2007", "farm": "1", "date_update": "1296842854", "primary": "409647607", "server": "155", "date_create": "1173001169", "photos": "24", "secret": "b7ab302e17", "owner": "13437324@N00", "vist_label": "car_accident", "id": "72157594568652210"}, {"description": "Memphis, Tn & Hot Springs Ar", "title": "Vacation May 10", "farm": "5", "date_update": "1316814237", "primary": "4674836012", "server": "4058", "date_create": "1275830007", "photos": "18", "secret": "befe7f79bd", "owner": "55506154@N00", "vist_label": "car_accident", "id": "72157624090366033"}, {"description": "", "title": "Mutual Aid to Bear River Sept. 2112", "farm": "9", "date_update": "1347194567", "primary": "7962045718", "server": "8439", "date_create": "1347194560", "photos": "18", "secret": "bc3104be8d", "owner": "8344848@N06", "vist_label": "car_accident", "id": "72157631479821792"}, {"description": "I went for a hike in Sudbury while Laura-Lee was writing an exam. I also picked up a few blueberries....", "title": "Hike in Sudbury", "farm": "1", "date_update": "1356147953", "primary": "3339218", "server": "3", "date_create": "1173986062", "photos": "12", "secret": "1036a5d70e", "owner": "48889116964@N01", "vist_label": "car_accident", "id": "72157600001571637"}, {"description": "Photos of my car after I was hit head on by a Cadillac Escalade in Turlock, California. August, 2005.", "title": "Plymouth Acclaim", "farm": "1", "date_update": "1392314158", "primary": "37107706", "server": "28", "date_create": "1392314154", "photos": "34", "secret": "173589b70b", "owner": "41894193248@N01", "vist_label": "car_accident", "id": "72157640932870314"}, {"description": "", "title": "C'est arriv\u00e9 pr\u00e8s de chez vous", "farm": "5", "date_update": "1367274877", "primary": "4465513007", "server": "4008", "date_create": "1269656465", "photos": "30", "secret": "b64008156d", "owner": "21649179@N00", "vist_label": "car_accident", "id": "72157623586324463"}, {"description": "September 29th, 2012\n03:10am\nBy Kevin Gebhardt\n\nAround 1AM this morning, a driver crashed his vehicle taking out a light pole, CTA Bus sign and damaged a planter on Wacker Drive.\n\nWhen officers and fire fighters arrived on scene they found the vehicle empty. Witnesses told officers on scene the man left his vehicle and appeared to be drunk.\n\nPolice are investigating.\n\n@kevingebhardt", "title": "Wacker/Franklin car accident 09/29/2012", "farm": "9", "date_update": "1356503607", "primary": "8035054479", "server": "8455", "date_create": "1348906247", "photos": "17", "secret": "251df9eb71", "owner": "31545680@N03", "vist_label": "car_accident", "id": "72157631648117970"}, {"description": "Trip to visit Nick, Chris G. came too. 6/24", "title": "Albany", "farm": "1", "date_update": "1297839931", "primary": "22048073", "server": "17", "date_create": "511252", "photos": "10", "secret": "1d2a7720f2", "owner": "17979617@N00", "vist_label": "car_accident", "id": "511252"}, {"description": "Targa: Tarmac Rally Racing. Originally out of Tasmania, this is a collection of shots from the first Targa West rally in 2005.", "title": "Targa West Rally 2005", "farm": "1", "date_update": "1356145127", "primary": "42370189", "server": "33", "date_create": "928240", "photos": "35", "secret": "a10dee337e", "owner": "59874422@N00", "vist_label": "car_accident", "id": "928240"}, {"description": "", "title": "Guangzhou", "farm": "1", "date_update": "1297643810", "primary": "41862874", "server": "24", "date_create": "918138", "photos": "46", "secret": "c4abb89c8b", "owner": "81635051@N00", "vist_label": "car_accident", "id": "918138"}, {"description": "", "title": "2006 MS Bike Tour", "farm": "1", "date_update": "1306869127", "primary": "214386674", "server": "34", "date_create": "1155504970", "photos": "25", "secret": "c57f26264d", "owner": "77839200@N00", "vist_label": "car_accident", "id": "72157594235652647"}, {"description": "Had a little mishap on Saturday 8-19-2006.\n\nThe first three are from my cell phone camera. I always wondered if they were worth anything.", "title": "A lovely Saturday evening", "farm": "1", "date_update": "1356318429", "primary": "222245611", "server": "86", "date_create": "1156123309", "photos": "13", "secret": "8f32531b4d", "owner": "44124442807@N01", "vist_label": "car_accident", "id": "72157594244928126"}, {"description": "I was in two car accidents within the space of an hour on December 17, 2006. Everyone involved walked away from both accidents. We were all very blessed. With damage to both the front and rear bumpers and the frame, my car was totalled. You can read the entire account of both accidents here.", "title": "Joey's car accident December 2006", "farm": "1", "date_update": "1377395133", "primary": "339132127", "server": "139", "date_create": "1167531299", "photos": "12", "secret": "cba7ab3ed1", "owner": "76967796@N00", "vist_label": "car_accident", "id": "72157594449129340"}, {"description": "I brought my bike to Doug's house to do a little work on it. After breakfast I changed the oil and washed it. Then Doug changed his oil and installed a center-stand onto his Nighthawk. In the middle I snapped a few pics with my new camera.", "title": "Tech | Oil Change Day", "farm": "1", "date_update": "1296787727", "primary": "432968761", "server": "161", "date_create": "1174797787", "photos": "31", "secret": "dbd2be8a34", "owner": "95368991@N00", "vist_label": "car_accident", "id": "72157600025352333"}, {"description": "", "title": "Japan Day @ Central Park", "farm": "2", "date_update": "1298453705", "primary": "530984788", "server": "1126", "date_create": "1181044914", "photos": "21", "secret": "8e67122198", "owner": "96279986@N00", "vist_label": "car_accident", "id": "72157600314040670"}, {"description": "", "title": "Wreck on Montana Ave", "farm": "2", "date_update": "1356573425", "primary": "833828964", "server": "1174", "date_create": "1184642363", "photos": "20", "secret": "7fae8e1578", "owner": "52957375@N00", "vist_label": "car_accident", "id": "72157600864119133"}, {"description": "I've had more than my fair share of car accidents and I thought by now I was done with them. I thought wrong.\n\n11/30/07", "title": "Quickly going through my 9 Lives", "farm": "3", "date_update": "1356433360", "primary": "2077570540", "server": "2097", "date_create": "1196488733", "photos": "10", "secret": "122e3f4238", "owner": "99102785@N00", "vist_label": "car_accident", "id": "72157603340612894"}, {"description": "While waiting in the car line to drop B off at school this morning, my car got sideswiped by a Durham County Public School bus and half pulled my bumper off.\n\nThe first five pictures are from the accident scene and the rest are in my driveway at home.", "title": "Car hit by bus", "farm": "3", "date_update": "1356209758", "primary": "2086962990", "server": "2308", "date_create": "1196784462", "photos": "14", "secret": "1c47125167", "owner": "50466740@N00", "vist_label": "car_accident", "id": "72157603372039550"}, {"description": "Verizon FIOS Home 2.0 event, Yardley PA", "title": "home 2.0", "farm": "2", "date_update": "1335658157", "primary": "1389043736", "server": "1344", "date_create": "1189898784", "photos": "36", "secret": "ce0a7dfa24", "owner": "23768136@N00", "vist_label": "car_accident", "id": "72157602034452349"}, {"description": "Once again, a vast array of automobiles from the past, present and future made their way to the Dallas Convention Center for all to see. Enjoy!", "title": "2008 Dallas Auto Show", "farm": "4", "date_update": "1356196052", "primary": "2389948539", "server": "3024", "date_create": "1207431391", "photos": "49", "secret": "8dd72f6105", "owner": "8138941@N06", "vist_label": "car_accident", "id": "72157604402356983"}, {"description": "Photos from our accident 2/4/06, see rmrmu.blogspot.com for more details.", "title": "Accident 2/4/06", "farm": "1", "date_update": "1297206261", "primary": "96136293", "server": "34", "date_create": "1139201674", "photos": "26", "secret": "ba73f5cfc4", "owner": "38017341@N00", "vist_label": "car_accident", "id": "72057594059979766"}, {"description": "", "title": "Ambulance Historical Society of Victoria Museum", "farm": "6", "date_update": "1356221503", "primary": "5331804756", "server": "5087", "date_create": "1313409260", "photos": "21", "secret": "9acc8119f9", "owner": "50415738@N04", "vist_label": "car_accident", "id": "72157627438102718"}, {"description": "This photo set depicts the dedication of the Vaillancourt-Schneck Memorial Nature Trail at Huron Wetland Management District. ", "title": "Vaillancourt-Schneck Memorial Nature Trail at Huron WMD", "farm": "6", "date_update": "1375399459", "primary": "5416912306", "server": "5133", "date_create": "1375399458", "photos": "14", "secret": "63d09124fd", "owner": "51986662@N05", "vist_label": "car_accident", "id": "72157634895669438"}, {"description": "Kim Kardashian And Khloe Get David Jones Tills Ringing, Chaos\n\nAmerican reality television celebrity Kim Kardashian was once again the cause of a mass of humanity (and massive traffic jams in the Sydney CBD), described by many as complete "chaos".\n\nCoincidence or not, emergency vehicle sirens could be heard roaring through Sydney's CBD district, with car accidents and fan barricades at bursting point, all while mother nature delivered a torrential downpour of rain.\n\nInside David Jones sirens of a different kind - media and fan heat seekers Kim Kardashian and sister Khloe promoted their wares - new handbags dubbed the Kardashian Kollection. The bags kept cash tills ringing, although a purchase of a handbag did not 100% guarantee an autograph or photo.\n\nThe massive queue to see the celebs went from inside the department store on Castlereagh Street and around many city blocks, with teeny poppers forming the most part of of the crowd.\n\n"I love the Kardashians" said Tori Rudolph, 13, who skipped school. The influenced teen had been been waiting in the city since 10pm on Wednesday night - well past bed time. Five other school friends had joined her.\n\nKim, 31, was fresh off a divorce filing from NBA player Kris Humphries on Monday, citing "irreconcilable differences."\n\nPolice officers in yellow vests and numerous security guards patrolled the outside of the popular store as the dynamic duo promoted their wares to a captive audience.\n\nKardashian - continuing to put the business in show business, be it Hollywood or Australia.\n\nWebsites\n\nKeeping Up With The Kardashian's\nau.eonline.com/on/shows/kardashians/index.html\n\nKim Kardashian official web blog\nwww.kimkardashian.celebuzz.com\n\nDavid Jones\nwww.davidjones.com.au\n\nEva Rinaldi Photography Flickr\nwww.flickr.com/evarinaldiphotography\n\nEva Rinaldi Photography\nwww.evarinaldi.com\n", "title": "Kim and Khloe Kardashian ", "farm": "7", "date_update": "1398368710", "primary": "6307608171", "server": "6035", "date_create": "1320290164", "photos": "25", "secret": "832605f0f2", "owner": "58820009@N05", "vist_label": "car_accident", "id": "72157627916134333"}, {"description": "Leeds", "title": "Golden Acre Park, 19.Nov.2011", "farm": "8", "date_update": "1327426948", "primary": "6755825667", "server": "7002", "date_create": "1327426807", "photos": "19", "secret": "138bac56d9", "owner": "48587703@N00", "vist_label": "car_accident", "id": "72157629014416869"}, {"description": "Manatee County is a county in the U.S. state of Florida. As of the 2010 census, the population was 322,833. Its county seat and largest city is Bradenton. The county was created in 1855. It was named for the Florida manatee (commonly called a "sea cow" and distantly related to the elephant), which is endangered and Florida's official marine mammal.", "title": "Manatee County", "farm": "6", "date_update": "1409527477", "primary": "14912766160", "server": "5592", "date_create": "1409527463", "photos": "25", "secret": "068f744ea4", "owner": "69094753@N05", "vist_label": "car_accident", "id": "72157646679583188"}, {"description": "", "title": "12-2006 Christmas Preparations", "farm": "4", "date_update": "1416150588", "primary": "2810386190", "server": "3091", "date_create": "1220066848", "photos": "29", "secret": "6d1d549991", "owner": "22038195@N07", "vist_label": "christmas", "id": "72157607015984014"}, {"description": "Christmas with the Venable family, Troy and Lisa, Bill, and Kathleen", "title": "Christmas 09", "farm": "3", "date_update": "1330259674", "primary": "4233528813", "server": "2514", "date_create": "1262368043", "photos": "26", "secret": "233ea4a1d4", "owner": "22235701@N00", "vist_label": "christmas", "id": "72157623114269494"}, {"description": "", "title": "Christmas 2010", "farm": "6", "date_update": "1297039305", "primary": "5312412682", "server": "5246", "date_create": "1293895109", "photos": "17", "secret": "212788a3a2", "owner": "39726889@N00", "vist_label": "christmas", "id": "72157625594761301"}, {"description": "", "title": "2010 Swarthmore Christmas Fest", "farm": "6", "date_update": "1326053407", "primary": "5312201279", "server": "5041", "date_create": "1293900234", "photos": "18", "secret": "78473040a5", "owner": "94608875@N00", "vist_label": "christmas", "id": "72157625595266327"}, {"description": "", "title": "Fairfield Christmas Classic Tournaments", "farm": "6", "date_update": "1325984003", "primary": "5312790772", "server": "5123", "date_create": "1293905107", "photos": "50", "secret": "091bf33b45", "owner": "55059430@N05", "vist_label": "christmas", "id": "72157625721263440"}, {"description": "", "title": "Christmas 2010", "farm": "6", "date_update": "1324406132", "primary": "5312944827", "server": "5166", "date_create": "1293915469", "photos": "29", "secret": "56e415ae42", "owner": "13963635@N00", "vist_label": "christmas", "id": "72157625596979281"}, {"description": "", "title": "Disneyland:2010", "farm": "6", "date_update": "1298996685", "primary": "5314223998", "server": "5046", "date_create": "1293946440", "photos": "35", "secret": "b312b26b3d", "owner": "58326585@N00", "vist_label": "christmas", "id": "72157625600077845"}, {"description": "", "title": "Christmas 2010", "farm": "6", "date_update": "1336324792", "primary": "5314902600", "server": "5010", "date_create": "1294808574", "photos": "25", "secret": "6a70734a14", "owner": "7195929@N04", "vist_label": "christmas", "id": "72157625679317163"}, {"description": "", "title": "2003-11 Christmas Tree Hunt", "farm": "3", "date_update": "1356204516", "primary": "1930332785", "server": "2203", "date_create": "1194598638", "photos": "23", "secret": "f97f4b242a", "owner": "65217332@N00", "vist_label": "christmas", "id": "72157603031133447"}, {"description": "Ho, ho, ho!", "title": "Christmas 2004", "farm": "1", "date_update": "1308703679", "primary": "8555947", "server": "6", "date_create": "212372", "photos": "23", "secret": "7b00c8bfe3", "owner": "54494252@N00", "vist_label": "christmas", "id": "212372"}, {"description": "Dawn and I track down the perfect tree.", "title": "Christmas tree, 2004", "farm": "1", "date_update": "1356150281", "primary": "1987644", "server": "2", "date_create": "50154", "photos": "15", "secret": "038ace794b", "owner": "51035606344@N01", "vist_label": "christmas", "id": "50154"}, {"description": "", "title": "Michigan - MN trip (January, 2005)", "farm": "2", "date_update": "1309306752", "primary": "1227210204", "server": "1325", "date_create": "1188003737", "photos": "20", "secret": "566d870696", "owner": "16648050@N00", "vist_label": "christmas", "id": "72157601643672229"}, {"description": "Photos taken with Chiara on 12/19/2004", "title": "Shoreline at Mountain View", "farm": "1", "date_update": "1431951890", "primary": "2383583", "server": "2", "date_create": "59962", "photos": "24", "secret": "6a47c05e43", "owner": "15013772@N00", "vist_label": "christmas", "id": "59962"}, {"description": "", "title": "Christmas 2004", "farm": "1", "date_update": "1369182641", "primary": "2575087", "server": "1", "date_create": "64557", "photos": "14", "secret": "6c2d39f702", "owner": "44124421772@N01", "vist_label": "christmas", "id": "64557"}, {"description": "", "title": "1998-Christmas", "farm": "2", "date_update": "1307446618", "primary": "1479780427", "server": "1335", "date_create": "1191462944", "photos": "14", "secret": "7715359b90", "owner": "80698640@N00", "vist_label": "christmas", "id": "72157602251536026"}, {"description": "Christmas Day 2004, in Illinois with the Biavatis", "title": "Christmas 2004, Rockford", "farm": "1", "date_update": "1417556863", "primary": "2631416", "server": "2", "date_create": "66119", "photos": "26", "secret": "48571a5b59", "owner": "54806507@N00", "vist_label": "christmas", "id": "66119"}, {"description": "Photos taken while Christmas shopping in Leeds", "title": "Christmas shopping in Leeds", "farm": "1", "date_update": "1298083173", "primary": "1736551", "server": "2", "date_create": "44126", "photos": "13", "secret": "2b4bf05338", "owner": "41894148532@N01", "vist_label": "christmas", "id": "44126"}, {"description": "12-04-2004, Downtown Boston, MA", "title": "12 Bars of Christmas Charity Pub Crawl", "farm": "1", "date_update": "1356186808", "primary": "1956073", "server": "2", "date_create": "49396", "photos": "18", "secret": "32a28cf8e3", "owner": "35034354137@N01", "vist_label": "christmas", "id": "49396"}, {"description": "I only wish I had more money and place of my own to fill with all the goodness ... and no, I do NOT work for them or BuzzAgent.", "title": "Union Square Holiday Fair 2004", "farm": "1", "date_update": "1356240073", "primary": "1957625", "server": "2", "date_create": "49513", "photos": "15", "secret": "a976555276", "owner": "51035734296@N01", "vist_label": "christmas", "id": "49513"}, {"description": "teletubbies and the shit log", "title": "Caga tio", "farm": "1", "date_update": "1356172038", "primary": "2480075", "server": "1", "date_create": "62362", "photos": "15", "secret": "5a616f819e", "owner": "44124395634@N01", "vist_label": "christmas", "id": "62362"}, {"description": "", "title": "02-2006 To Doyle's Church", "farm": "4", "date_update": "1416150588", "primary": "2809388860", "server": "3106", "date_create": "1220035350", "photos": "10", "secret": "e1d1bb678c", "owner": "22038195@N07", "vist_label": "church", "id": "72157607013992421"}, {"description": "", "title": "Urban Portraits Workshop - Jerusalem ", "farm": "3", "date_update": "1434294725", "primary": "4234291572", "server": "2558", "date_create": "1262367022", "photos": "12", "secret": "97f3afc610", "owner": "37873897@N06", "vist_label": "church", "id": "72157623114161836"}, {"description": "Some pictures from the lame new year's celebrations in my home town Merseburg. This year, there were neither great official firework show, nor many privately organised firework actions, nor many people celebrating in the streets or participating in the 1st January annual foot race or any riots.", "title": "The new year in Merseburg", "farm": "5", "date_update": "1413150643", "primary": "4233458723", "server": "4054", "date_create": "1262367118", "photos": "10", "secret": "9e16c0d168", "owner": "42589835@N03", "vist_label": "church", "id": "72157623114171494"}, {"description": "", "title": "[city] Olinda", "farm": "5", "date_update": "1370821918", "primary": "4325783052", "server": "4019", "date_create": "1265126943", "photos": "12", "secret": "ec814fe96d", "owner": "21822352@N02", "vist_label": "church", "id": "72157623210398901"}, {"description": "Photos from McDonough, New York.", "title": "McDonough, New York", "farm": "3", "date_update": "1298257881", "primary": "4325215698", "server": "2748", "date_create": "1265113890", "photos": "10", "secret": "b8d53ff190", "owner": "7327243@N05", "vist_label": "church", "id": "72157623333774676"}, {"description": "It doesn't get much bleaker than this.", "title": "Boxing Day, December 2006", "farm": "1", "date_update": "1435307583", "primary": "343956200", "server": "157", "date_create": "1167827081", "photos": "10", "secret": "694ba5accb", "owner": "60179301@N00", "vist_label": "church", "id": "72157594456493069"}, {"description": "", "title": "london2006", "farm": "1", "date_update": "1349024437", "primary": "344072429", "server": "150", "date_create": "1169138400", "photos": "14", "secret": "91b63d987d", "owner": "74713354@N00", "vist_label": "church", "id": "72157594486753058"}, {"description": "", "title": "Bristol New Year's", "farm": "3", "date_update": "1356198518", "primary": "4239723429", "server": "2504", "date_create": "1262531234", "photos": "17", "secret": "d0f98018e5", "owner": "12383598@N00", "vist_label": "church", "id": "72157623004060365"}, {"description": "In 1708 the medieval church was destroyed by the Tower falling into the nave. A contemporary style church replaced it but was largely altered and extended in the mid 19th century. ", "title": "St. Peter, Chalfont St. Peter", "farm": "5", "date_update": "1300293067", "primary": "4329871263", "server": "4026", "date_create": "1265301201", "photos": "15", "secret": "1c700dee2c", "owner": "12608538@N03", "vist_label": "church", "id": "72157623225771765"}, {"description": "", "title": "Shot with Film", "farm": "5", "date_update": "1401008361", "primary": "4245252977", "server": "4022", "date_create": "1262641267", "photos": "19", "secret": "cee918413e", "owner": "10070485@N08", "vist_label": "church", "id": "72157623139776636"}, {"description": "", "title": "Giengen, 31.12.2006", "farm": "1", "date_update": "1310416065", "primary": "349411691", "server": "149", "date_create": "1168202537", "photos": "24", "secret": "d21531f289", "owner": "78042364@N00", "vist_label": "church", "id": "72157594465639903"}, {"description": "", "title": "Ulm, 2.1.2007", "farm": "1", "date_update": "1310416065", "primary": "349435220", "server": "136", "date_create": "1168203542", "photos": "25", "secret": "f55c8ba6ff", "owner": "78042364@N00", "vist_label": "church", "id": "72157594465679052"}, {"description": "", "title": "St. ann's church yard Poplar", "farm": "1", "date_update": "1300185679", "primary": "349477028", "server": "164", "date_create": "1168206482", "photos": "22", "secret": "061383a9ec", "owner": "18384248@N00", "vist_label": "church", "id": "72157594465789785"}, {"description": "", "title": "Cornwall December 2006", "farm": "1", "date_update": "1360618206", "primary": "349643431", "server": "143", "date_create": "1168214489", "photos": "21", "secret": "b117e14b84", "owner": "69037413@N00", "vist_label": "church", "id": "72157594466065461"}, {"description": "Here are so more pics from around Co Offaly & Co Westmeath", "title": "Winter in Ireland 09/10", "farm": "5", "date_update": "1341020690", "primary": "4258224143", "server": "4017", "date_create": "1263031128", "photos": "17", "secret": "6dae5c1a5b", "owner": "11962130@N08", "vist_label": "church", "id": "72157623047266387"}, {"description": "", "title": "florence", "farm": "5", "date_update": "1434983205", "primary": "4332841692", "server": "4056", "date_create": "1265386480", "photos": "10", "secret": "a1dec28656", "owner": "15467186@N00", "vist_label": "church", "id": "72157623357797204"}, {"description": "Bloomery Presbyterian Church and Cemetery (1825)\n\nBloomery Pike (West Virginia Route 127)\nBloomery, West Virginia\n\nWikimedia Commons Category", "title": "Bloomery Presbyterian Church and Cemetery", "farm": "5", "date_update": "1412642358", "primary": "4347469618", "server": "4058", "date_create": "1267191028", "photos": "10", "secret": "b04b023811", "owner": "41220666@N08", "vist_label": "church", "id": "72157623512500536"}, {"description": "", "title": "Western Wall 2005", "farm": "3", "date_update": "1356313210", "primary": "4266817981", "server": "2721", "date_create": "1263252857", "photos": "14", "secret": "6d8e18a2de", "owner": "10298101@N05", "vist_label": "church", "id": "72157623191645770"}, {"description": "", "title": "St. Martin's Church, Ruislip", "farm": "5", "date_update": "1298033476", "primary": "4350645809", "server": "4072", "date_create": "1265983449", "photos": "18", "secret": "ccfda2d810", "owner": "12608538@N03", "vist_label": "church", "id": "72157623293893311"}, {"description": "", "title": "Wylie Winter Wonderland", "farm": "5", "date_update": "1338847283", "primary": "4351469147", "server": "4039", "date_create": "1266009049", "photos": "18", "secret": "6172363282", "owner": "37170275@N04", "vist_label": "church", "id": "72157623297756599"}, {"description": "Taken during a weekend trip to Novgorod, a historic city four hours from St. Petersburg.", "title": "\u041d\u043e\u0432\u0433\u043e\u0440\u043e\u0434 / Novgorod", "farm": "3", "date_update": "1297490833", "primary": "4356445377", "server": "2738", "date_create": "1275931934", "photos": "16", "secret": "bd423867df", "owner": "37598713@N00", "vist_label": "church", "id": "72157624100258505"}, {"description": "", "title": "Haiti Relief Concert - Feb 14 2010", "farm": "3", "date_update": "1296662017", "primary": "4358448882", "server": "2704", "date_create": "1266205547", "photos": "23", "secret": "30284a37a9", "owner": "8176731@N03", "vist_label": "church", "id": "72157623312407191"}, {"description": "Brothers of John the Steadfast annual conference in Naperville, Illinois ~ February 2010\n\n"Light from Light" blog post on the 2010 conference", "title": "BJS 2010 conference", "farm": "5", "date_update": "1404927494", "primary": "4357865895", "server": "4058", "date_create": "1266210157", "photos": "27", "secret": "3bca8d9d99", "owner": "26210978@N03", "vist_label": "church", "id": "72157623437349544"}, {"description": "", "title": "Nesscliffe, Great and Little Ness", "farm": "5", "date_update": "1310803196", "primary": "4282123446", "server": "4021", "date_create": "1263745842", "photos": "15", "secret": "31828b2945", "owner": "32281279@N04", "vist_label": "church", "id": "72157623103617851"}, {"description": "Nobody can be quite certain of the date of Aldenham\u2019s first church. However the presence of large quantities of Hertfordshire Puddingstone in the present building may indicate that it rests on the site of some kind of pre-Christian worship. Christopher Webbe\u2019s wonderfully designed East Window includes a panel showing the 8th century King Offa holding a Saxon Church, and an 11th century Norman window, probably from an earlier building, can be seen at the west end of our south aisle.\n\nThe earliest available document to mention the present church relates to the appointment of a Vicar and is dated 1267, so it would seem fair to assess the origins of this building as the mid-13th century. The lower part of the tower, the font and a large part of the Lady Chapel date from this period, while the south and north aisles date from the 14th and 15th centuries respectively. To the 15th century too belong the wonderfully decorated oak ceiling in the nave, the painted oak Lady Chapel screen and the upper tower, diagonal buttresses and stair turret. In the 16th century the chancel was widened and a vestry added. These additions and improvements seem to have been made without regard to the overall symmetry of the building, which remains quaintly asymmetrical to this day.\n\nVarious 19th century renovations culminated in a major overhaul and improvement project in 1882, instigated by the merchant banker and part-compiler of the first Oxford Dictionary, Henry Hucks Gibbs. This included complete reseating of the Nave in oak, supplying a new organ and removing and replacing many years of decayed plaster, under which some early features of the church were discovered, including a rood passage, an original painted screen and the original Priest's door into the Sanctuary.\n\nIn 1940 several bombs fell in the churchyard, damaging the spire and tower and several windows. The damage could not be made good until 1946.\n\nThe building is a Grade 1 listed building", "title": "St. John the Baptist, Aldenham", "farm": "5", "date_update": "1298574843", "primary": "4281245221", "server": "4013", "date_create": "1263742219", "photos": "20", "secret": "5321db398b", "owner": "12608538@N03", "vist_label": "church", "id": "72157623227783082"}, {"description": "", "title": "Martin Luther King, Jr., Day Service at the Christ Episcopal Church", "farm": "5", "date_update": "1304132023", "primary": "4287518911", "server": "4051", "date_create": "1263925878", "photos": "25", "secret": "2d64bf5999", "owner": "44724992@N07", "vist_label": "church", "id": "72157623243524150"}, {"description": "", "title": "MageeMS", "farm": "5", "date_update": "1297619757", "primary": "4299026274", "server": "4021", "date_create": "1264288700", "photos": "12", "secret": "81504dd906", "owner": "26519181@N06", "vist_label": "church", "id": "72157623145474461"}, {"description": "", "title": "Pots 'n' Pans Boxing Day walk", "farm": "5", "date_update": "1298208416", "primary": "4297198725", "server": "4027", "date_create": "1264260489", "photos": "24", "secret": "a3e6ea6641", "owner": "54741099@N00", "vist_label": "church", "id": "72157623267583604"}, {"description": "St Etheldreda is Hatfield's Parish Church. This building, although steeped in England's history, is not a museum. It is a meeting place for a thriving Christian community. The congregation on a Sunday ranges from babes in arms to grandparents.\n\nTheir link with St Etheldreda, a Saxon Princess, is through the Bishops of Ely, who owned the manor of Hatfield from about 930 until 1538.\n\nThe present church dates from the 13th century, although little remains of the mediaeval building. During the 15th century the Tower was constructed by Cardinal Morton and later the Brocket Chapel was added. The Salisbury Chapel was built during the 17th century; shortly after the completion of Hatfield House, which stands nearby. Finally during the 19th century there was major reconstruction of the Nave and Roof, necessitated by the poor state of the fabric. The Tower was restored 20 years ago.\n\nWhen I visited the church the Rector had the builders in. The pews were out and the nave was being scaffolded so I didn't manage to record all the windows. It was very dusty and movement was limited.\n\nI may revisit when the work is completed at Easter.\n\nThe church dates back over 900 years and is attached to Hatfield house seat of the Earl of Salisbury. ", "title": "St. Etheldreda, Old Hatfield", "farm": "3", "date_update": "1300954871", "primary": "4313859951", "server": "2679", "date_create": "1264796216", "photos": "11", "secret": "8a814ec08d", "owner": "12608538@N03", "vist_label": "church", "id": "72157623308808136"}, {"description": "", "title": "Manila 12/99", "farm": "2", "date_update": "1296959148", "primary": "758416524", "server": "1042", "date_create": "1183947350", "photos": "32", "secret": "4b24c06c4c", "owner": "40578100@N00", "vist_label": "church", "id": "72157600723477055"}, {"description": "", "title": "Prudential Skywalk", "farm": "1", "date_update": "1420285075", "primary": "219684", "server": "1", "date_create": "5078", "photos": "12", "secret": "725a50ebe7", "owner": "51035639266@N01", "vist_label": "church", "id": "5078"}, {"description": "", "title": "my photos", "farm": "2", "date_update": "1298574821", "primary": "760160015", "server": "1011", "date_create": "1183981356", "photos": "13", "secret": "65e7f250af", "owner": "47861610@N00", "vist_label": "church", "id": "72157600728836530"}, {"description": "", "title": "Harvard", "farm": "1", "date_update": "1420285075", "primary": "256397", "server": "1", "date_create": "5185", "photos": "34", "secret": "5eec50274e", "owner": "51035639266@N01", "vist_label": "church", "id": "5185"}, {"description": "a trip from 1999 or 2000", "title": "Praha", "farm": "2", "date_update": "1326904500", "primary": "658667809", "server": "1062", "date_create": "1183112461", "photos": "31", "secret": "782a97bccd", "owner": "42526103@N00", "vist_label": "church", "id": "72157600548193895"}, {"description": "second part of my fall holiday, with my turkish friends in tampere.", "title": "syysloma tamperella 14/10/04", "farm": "1", "date_update": "1300618085", "primary": "929490", "server": "1", "date_create": "23927", "photos": "47", "secret": "207ccb5231", "owner": "49503178415@N01", "vist_label": "church", "id": "23927"}, {"description": "", "title": "balloons in winter", "farm": "2", "date_update": "1356442858", "primary": "1217465798", "server": "1004", "date_create": "1187907799", "photos": "10", "secret": "e1bc77ae9c", "owner": "90859240@N00", "vist_label": "church", "id": "72157601615188284"}, {"description": "Kunming", "title": "Day 2", "farm": "1", "date_update": "1305740256", "primary": "2370939", "server": "1", "date_create": "59650", "photos": "15", "secret": "e455ee6020", "owner": "19105464@N00", "vist_label": "church", "id": "59650"}, {"description": "A Day in the Life: compulsive photography throughout a day. December 21.", "title": "Winter solstice", "farm": "1", "date_update": "1356261068", "primary": "2403216", "server": "2", "date_create": "60424", "photos": "11", "secret": "00268013dd", "owner": "35034358497@N01", "vist_label": "church", "id": "60424"}, {"description": "A little Christmas skate in NYC.", "title": "Phil and Jake Skate Times Square", "farm": "1", "date_update": "1298910081", "primary": "2640431", "server": "1", "date_create": "66378", "photos": "22", "secret": "258698b54b", "owner": "51035766041@N01", "vist_label": "church", "id": "66378"}, {"description": "Port Arthur", "title": "Tasmania day 3", "farm": "1", "date_update": "1310702562", "primary": "2719080", "server": "3", "date_create": "68554", "photos": "21", "secret": "77ed6445ce", "owner": "86174736@N00", "vist_label": "church", "id": "68554"}, {"description": "Visited in September 04 - Buisness Trip but some free time!", "title": "Barcelona", "farm": "1", "date_update": "1356599489", "primary": "2021867", "server": "2", "date_create": "76558", "photos": "27", "secret": "9605bd1cc3", "owner": "17177260@N00", "vist_label": "church", "id": "76558"}, {"description": "", "title": "Mallorca", "farm": "1", "date_update": "1299514520", "primary": "3208569", "server": "1", "date_create": "80381", "photos": "21", "secret": "098fdd7e45", "owner": "56566998@N00", "vist_label": "church", "id": "80381"}, {"description": "Pictures developed January 28, 2005", "title": "January 28, 2005", "farm": "2", "date_update": "1304747701", "primary": "1086052386", "server": "1298", "date_create": "1186867969", "photos": "21", "secret": "c39b3bfde2", "owner": "11280582@N02", "vist_label": "church", "id": "72157601372126730"}, {"description": "02.06.2005", "title": "dedication mass", "farm": "1", "date_update": "1357292151", "primary": "4387207", "server": "3", "date_create": "1136700003", "photos": "37", "secret": "fd6bbbb09b", "owner": "51035657958@N01", "vist_label": "church", "id": "1787892"}, {"description": "", "title": "Rouen, France", "farm": "2", "date_update": "1384722364", "primary": "1012271528", "server": "1241", "date_create": "1186272805", "photos": "17", "secret": "bb84869e75", "owner": "37118615@N00", "vist_label": "church", "id": "72157601220425876"}, {"description": "These were all taken in Nuremburg, Germany during the summer of 2002.", "title": "Nuremburg", "farm": "1", "date_update": "1356822288", "primary": "4821997", "server": "4", "date_create": "121386", "photos": "46", "secret": "966b422cae", "owner": "25418996@N00", "vist_label": "church", "id": "121386"}, {"description": "we went there. We loved the place.", "title": "Maring\u00e1", "farm": "1", "date_update": "1301610162", "primary": "5723582", "server": "4", "date_create": "143508", "photos": "16", "secret": "86d53178fc", "owner": "16601865@N00", "vist_label": "church", "id": "143508"}, {"description": "2508 SE Clinton St\nPortland, OR 97202\n(503) 736-3333\n\nThis is my new favorite breakfast place in Portland. We ate here this morning for the first time and I've been thinking about it all day. It was seriously amazing. The food was unique and really incredible. The atmosphere was really nice and the service was good. No vegan options - few vegetarian ones.", "title": "Broder - Scandinavian Food", "farm": "4", "date_update": "1396802396", "primary": "2465968097", "server": "3039", "date_create": "1209963875", "photos": "24", "secret": "15fe0854ca", "owner": "8566600@N07", "vist_label": "cinco_de_mayo", "id": "72157604887097332"}, {"description": "24 hours of flickr", "title": "24 hours of flickr", "farm": "1", "date_update": "1309659709", "primary": "485804963", "server": "182", "date_create": "1178418866", "photos": "24", "secret": "df907fe458", "owner": "59089068@N00", "vist_label": "cinco_de_mayo", "id": "72157600181308617"}, {"description": "", "title": "Cinco de Alpental, 2007", "farm": "1", "date_update": "1297856581", "primary": "485828480", "server": "177", "date_create": "1178421195", "photos": "15", "secret": "086b202b2e", "owner": "63265679@N00", "vist_label": "cinco_de_mayo", "id": "72157600181396082"}, {"description": "", "title": "Cinco de Mayo Downtown Block Party", "farm": "4", "date_update": "1428111782", "primary": "3506360698", "server": "3542", "date_create": "1241575748", "photos": "17", "secret": "3c1c7140d9", "owner": "19406267@N00", "vist_label": "cinco_de_mayo", "id": "72157617669726441"}, {"description": "", "title": "Wed, May 5, Wk I", "farm": "5", "date_update": "1341196193", "primary": "4582717573", "server": "4070", "date_create": "1273118810", "photos": "13", "secret": "0aee68a807", "owner": "14099028@N06", "vist_label": "cinco_de_mayo", "id": "72157623878185185"}, {"description": "Full post at Design Notes + Photos", "title": "Photos: Obama at White House Cinco de Mayo Party!", "farm": "6", "date_update": "1304648150", "primary": "5691643229", "server": "5142", "date_create": "1304648082", "photos": "12", "secret": "031e3e6633", "owner": "23504336@N08", "vist_label": "cinco_de_mayo", "id": "72157626657119476"}, {"description": "click for recipe...", "title": "Pork Chili Verde", "farm": "9", "date_update": "1402665142", "primary": "8710625408", "server": "8120", "date_create": "1367761522", "photos": "28", "secret": "84599e5b72", "owner": "65428595@N00", "vist_label": "cinco_de_mayo", "id": "72157633408428325"}, {"description": "Photos from various Rice University's NSHMBA ( Nat'l Assoc. of Hispanic MBA's) events over the past few years", "title": "NSHMBA", "farm": "6", "date_update": "1428268396", "primary": "15737513402", "server": "5597", "date_create": "1415415138", "photos": "7", "secret": "95931b39f5", "owner": "48396537@N06", "vist_label": "cinco_de_mayo", "id": "72157649175321582"}, {"description": "", "title": "East: Cinco de Mayo - 2012", "farm": "8", "date_update": "1427074272", "primary": "7210047858", "server": "7088", "date_create": "1337184546", "photos": "28", "secret": "065ddec406", "owner": "7988353@N04", "vist_label": "cinco_de_mayo", "id": "72157629757439172"}, {"description": "", "title": "Cinco De Mayo Run", "farm": "3", "date_update": "1336324793", "primary": "2504453456", "server": "2379", "date_create": "1211261315", "photos": "11", "secret": "a60ed959b2", "owner": "7195929@N04", "vist_label": "cinco_de_mayo", "id": "72157605150885292"}, {"description": "Nos fuimos de San Luis con la firme intenci\u00f3n de regresar, quedarnos m\u00e1s tiempo con Javier y Sara que nos recibieron brazos y corazones abiertos, conocer el desierto...La estancia en Monterrey fue emocionante. Llev\u00e1bamos un a\u00f1o con esta fantas\u00eda de conocer el Tec de Monterrey porque es de las pocas plantas de biodiesel en M\u00e9xico, y traen unos proyectos de investigaci\u00f3n sobre biodiesel de segunda generaci\u00f3n (a partir de Jatropha Curcas) re-chingones. Y bueno, la realidad de estos universitarios arrastr\u00f3 con lo que hab\u00edamos previsto. Nos metimos en un bullicio de investigaciones geniales, unos pirot\u00e9cnicos intelectuales que nos dieron viento en popa, adem\u00e1s de ser unos tipazos (y tipaza). El campus del TEC es el lugar m\u00e1s ins\u00f3lito y m\u00e1s adecuado para la locura universitaria: hay plantas de jatropha en el jard\u00edn, pavos reales, venados, y unos laboratorios que por fin me parecen congruentes: pocas m\u00e1quinas, muchos papeles, mucha discusi\u00f3n, semillas, manchas de aceite, y miradas chispeantes. Misma efervescencia en la UDEM, donde inventaron EL TOPE INTELIGENTE que merece el inter\u00e9s de la comunidad internacional. Pasamos del bullicio al lugar m\u00e1s improbable del pa\u00eds, Estaci\u00f3n Catorce, un oasis con tren y gato, donde me promet\u00ed regresar a acabar tareas pendientes... el Ekeko sigue firme, abriendo caminos inesperados...\nmail@laboratorioenmovimiento.com", "title": "3. M\u00e9xico / en el bullicio norte\u00f1o", "farm": "3", "date_update": "1323477309", "primary": "2509437974", "server": "2026", "date_create": "1211309792", "photos": "20", "secret": "695155b420", "owner": "26630539@N04", "vist_label": "cinco_de_mayo", "id": "72157605160411648"}, {"description": "Yet another RIDE-ARC themed bike ride. This time around we were lectured about immigration throughout a hilly 16 mile bike ride that took us past "Historic" Filipinotown, the Dodger stadium, Echo Park, and Koreatown.", "title": "Ride ARC - Cinco De Mayo", "farm": "1", "date_update": "1393314940", "primary": "141185179", "server": "48", "date_create": "1146904101", "photos": "12", "secret": "ce300002ee", "owner": "48522343@N00", "vist_label": "cinco_de_mayo", "id": "72057594126802223"}, {"description": "On 5 May 2006 Hunky and I headed north to have a slumber party with his Auntie Leah and Auntie Kimmie! A good time was had by all, including Gabe, the Blue-Eyed Tattooing god...", "title": "Slumber Party /Cinco de Mayo 2006", "farm": "1", "date_update": "1358994946", "primary": "142696377", "server": "55", "date_create": "1146958607", "photos": "34", "secret": "f112e6f14d", "owner": "38603531@N00", "vist_label": "cinco_de_mayo", "id": "72057594127370852"}, {"description": "", "title": "24 Hours on Flickr", "farm": "1", "date_update": "1304028224", "primary": "486895365", "server": "177", "date_create": "1178477983", "photos": "19", "secret": "55b711a697", "owner": "61237118@N00", "vist_label": "cinco_de_mayo", "id": "72157600183876481"}, {"description": "Yarn for Eat. Sleep. Knit. dot com in April", "title": "ESK April Update", "farm": "4", "date_update": "1302226703", "primary": "2380029011", "server": "3006", "date_create": "1207073198", "photos": "17", "secret": "9fbcb9fba8", "owner": "43411679@N00", "vist_label": "cinco_de_mayo", "id": "72157604347481145"}, {"description": "In my neighborhood.", "title": "Cinco de Mayo Parade", "farm": "4", "date_update": "1330278337", "primary": "3494017241", "server": "3612", "date_create": "1241298553", "photos": "24", "secret": "a79af4711c", "owner": "49503124519@N01", "vist_label": "cinco_de_mayo", "id": "72157617518821531"}, {"description": "On May 2, CTEP members had a booth in the Wellness Village and answered questions on electronic waste to more than 1000 people. CTEP members were joined by youth from the Science Museum who had created three costumes that members wore to generate interest about electronic waste.", "title": "Cinco de Mayo", "farm": "4", "date_update": "1427926802", "primary": "3500784437", "server": "3360", "date_create": "1241455465", "photos": "11", "secret": "daf07b838e", "owner": "21501626@N03", "vist_label": "cinco_de_mayo", "id": "72157617601185933"}, {"description": "Every year, Curtis Webb would chef our Cinqo De Mayo party and we would dress up.", "title": "Cinco de Mayo 2002", "farm": "6", "date_update": "1296594043", "primary": "5408735988", "server": "5176", "date_create": "1296593881", "photos": "17", "secret": "e19ffe2f8a", "owner": "70116881@N00", "vist_label": "cinco_de_mayo", "id": "72157625956028680"}, {"description": "", "title": "2nd Annual Cinco de Drinko", "farm": "3", "date_update": "1399414821", "primary": "14125898945", "server": "2923", "date_create": "1399414803", "photos": "30", "secret": "7956e7b633", "owner": "58530249@N04", "vist_label": "cinco_de_mayo", "id": "72157644594336393"}, {"description": "Manhattan Yelpers celebrated Cinco de Mayo aboard the Clipper City sailboat with Manhattan By Sail. ", "title": "Manhattan Elite Event: Manhattan By Sail", "farm": "9", "date_update": "1435027522", "primary": "17183271557", "server": "8865", "date_create": "1430919792", "photos": "29", "secret": "7ef4a9d3a2", "owner": "71606984@N00", "vist_label": "cinco_de_mayo", "id": "72157650066498734"}, {"description": "Otanjobi omedeto!", "title": "Leticia's Birthday Weekend", "farm": "1", "date_update": "1356186189", "primary": "379076592", "server": "162", "date_create": "1170589989", "photos": "23", "secret": "c6523108dd", "owner": "96914291@N00", "vist_label": "cooking_dinner", "id": "72157594516747342"}, {"description": "", "title": "Lobster Pellegrino", "farm": "1", "date_update": "1356202565", "primary": "352245521", "server": "155", "date_create": "1168392094", "photos": "10", "secret": "b12baf99e6", "owner": "66496615@N00", "vist_label": "cooking_dinner", "id": "72157594470466768"}, {"description": "A combination housewarming, grad-school-applications-complete celebration, and going-away party.", "title": "Cooking Thai", "farm": "1", "date_update": "1296684049", "primary": "4681132", "server": "3", "date_create": "117776", "photos": "13", "secret": "1ebe589559", "owner": "49503166766@N01", "vist_label": "cooking_dinner", "id": "117776"}, {"description": "", "title": "2007.0107 Dinner then Bombay Ice Creamery with Danny, Phil, and Drew", "farm": "1", "date_update": "1425874185", "primary": "356483458", "server": "158", "date_create": "1168745779", "photos": "15", "secret": "c8eefab5da", "owner": "14469908@N00", "vist_label": "cooking_dinner", "id": "72157594478032462"}, {"description": "", "title": "Early 2010", "farm": "5", "date_update": "1410646705", "primary": "4378315467", "server": "4036", "date_create": "1266843989", "photos": "28", "secret": "42fe8d393d", "owner": "56716140@N00", "vist_label": "cooking_dinner", "id": "72157623361190375"}, {"description": "", "title": "Christmas 2005", "farm": "1", "date_update": "1301721079", "primary": "77417053", "server": "37", "date_create": "1135569168", "photos": "15", "secret": "be5d554a05", "owner": "55631425@N00", "vist_label": "cooking_dinner", "id": "1658298"}, {"description": "A wine food paring event we donated to raise money for the Children's Hospital of Orange County. Nick provided the wine and the education, our wives provided the organization and service, and I did the cooking. A great time was had by all.", "title": "Wine Food Paring Event", "farm": "5", "date_update": "1296560859", "primary": "4394831519", "server": "4063", "date_create": "1267377749", "photos": "19", "secret": "7107c1cd8f", "owner": "11284224@N00", "vist_label": "cooking_dinner", "id": "72157623402304105"}, {"description": "Winter looking to spring: Braised Chicken Thighs on Arugula with Roasted Root Vegetable Slaw. \n\nAlso on this episode of the Gastrocast--healthy eating, chicken troubles, Rowan the wonder pup, and the new curse--sulfuryl flouride.\n\nFind out more by visiting: gastrocasttv.com/blog/2007/02/01/gastrocast-95/\n", "title": "Gastrocast #95", "farm": "1", "date_update": "1356409309", "primary": "375928321", "server": "149", "date_create": "1170284749", "photos": "15", "secret": "43787ee5c5", "owner": "86571141@N00", "vist_label": "cooking_dinner", "id": "72157594511236944"}, {"description": "7/10/5-7/11/5, Franconia Falls off of the Pemigawasset River in NH", "title": "Greatness of God Retreat", "farm": "1", "date_update": "1318568109", "primary": "25378675", "server": "23", "date_create": "578280", "photos": "15", "secret": "c960795d69", "owner": "94021754@N00", "vist_label": "cooking_dinner", "id": "578280"}, {"description": "", "title": "day in the life: december 21, 2004", "farm": "1", "date_update": "1392009456", "primary": "2418695", "server": "2", "date_create": "60991", "photos": "10", "secret": "3600b4cab5", "owner": "35237093637@N01", "vist_label": "cooking_dinner", "id": "60991"}, {"description": "", "title": "Poconos", "farm": "1", "date_update": "1356244818", "primary": "27684533", "server": "21", "date_create": "629135", "photos": "12", "secret": "21ac1bd88d", "owner": "45174624@N00", "vist_label": "cooking_dinner", "id": "629135"}, {"description": "Playing around with my new(old)Medium Format camera", "title": "1st Roll of Medium Format", "farm": "1", "date_update": "1301542787", "primary": "43478785", "server": "30", "date_create": "962616", "photos": "11", "secret": "a110d7886d", "owner": "15254479@N00", "vist_label": "cooking_dinner", "id": "962616"}, {"description": "September 15-18th. Suzi and I made a road trip to visit Becky!", "title": "Road trip to Marquette", "farm": "1", "date_update": "1351911158", "primary": "44502222", "server": "30", "date_create": "973208", "photos": "39", "secret": "1cb95314a6", "owner": "39498110@N00", "vist_label": "cooking_dinner", "id": "973208"}, {"description": "Haiku:\n\nA friend cooked dinner.\nSadly, He used the wrong lid. \nNow, the food is stuck.\n\n~Spec\n\nBlog post here.", "title": "Pot is the Problem, not the Solution. LOL.", "farm": "1", "date_update": "1356178398", "primary": "90403808", "server": "39", "date_create": "1138058280", "photos": "19", "secret": "dd7baeb56f", "owner": "56056153@N00", "vist_label": "cooking_dinner", "id": "72057594053004564"}, {"description": "bo ling's\ncountry club plaza\n4800 main street \nkansas city, missouri 64112\n816.753.1718\n\ntenth visit: private dinner arragement\nmid-october, 2006\n\nclick here to see the entire bo ling's set.", "title": "bo ling's (2006)", "farm": "1", "date_update": "1435273225", "primary": "270938247", "server": "99", "date_create": "1160970175", "photos": "22", "secret": "e5c6e643a9", "owner": "13329406@N00", "vist_label": "cooking_dinner", "id": "72157594330358115"}, {"description": "Christmas Eve and Morning at the Stites'", "title": "X-Mass 2006", "farm": "1", "date_update": "1306185838", "primary": "332616635", "server": "137", "date_create": "1167043868", "photos": "34", "secret": "b389e530bd", "owner": "55767727@N00", "vist_label": "cooking_dinner", "id": "72157594437338244"}, {"description": "", "title": "Feta-Stuffed Pork Loin", "farm": "1", "date_update": "1306619300", "primary": "450213594", "server": "254", "date_create": "1176144025", "photos": "11", "secret": "eed3cf558c", "owner": "48889110136@N01", "vist_label": "cooking_dinner", "id": "72157600059208575"}, {"description": "A dinner party organized by Sharon and hosted by me!", "title": "Dinner Party June 2007", "farm": "2", "date_update": "1356327358", "primary": "625931457", "server": "1282", "date_create": "1182825271", "photos": "22", "secret": "44ee519055", "owner": "24311648@N00", "vist_label": "cooking_dinner", "id": "72157600490688511"}, {"description": "", "title": "Adirondacks - Backpacking weekend", "farm": "2", "date_update": "1299001742", "primary": "562345677", "server": "1336", "date_create": "1182193202", "photos": "31", "secret": "91412b080e", "owner": "37136335@N00", "vist_label": "cooking_dinner", "id": "72157600392604254"}, {"description": "", "title": "New Years Day Parade (2007)", "farm": "1", "date_update": "1297964111", "primary": "341296824", "server": "145", "date_create": "1167685927", "photos": "11", "secret": "93e1c632af", "owner": "28091303@N00", "vist_label": "day_parade", "id": "72157594452419233"}, {"description": "", "title": "May Day Parade Woodbury Salterton 2010", "farm": "5", "date_update": "1297166936", "primary": "4574355729", "server": "4066", "date_create": "1272896293", "photos": "16", "secret": "06f2a5b2cb", "owner": "95101869@N00", "vist_label": "day_parade", "id": "72157623858517317"}, {"description": "A few shots, mostly of the bikes, that made the Mayday parade so awesome this year.\n\nCheck out the videos of the Pedal Cloud.", "title": "Mayday Parade 2010", "farm": "5", "date_update": "1356280429", "primary": "4574479225", "server": "4067", "date_create": "1272898776", "photos": "18", "secret": "b89d55b54e", "owner": "67426263@N00", "vist_label": "day_parade", "id": "72157623983137974"}, {"description": "100410 Zombie Parade @ BIFFF", "title": "100410 Zombie Parade @ BIFFF", "farm": "5", "date_update": "1404336218", "primary": "4510882830", "server": "4069", "date_create": "1270990466", "photos": "10", "secret": "9ce2a48771", "owner": "17562308@N02", "vist_label": "day_parade", "id": "72157623705927805"}, {"description": "", "title": "St. Patrick's Day 2010", "farm": "5", "date_update": "1356139472", "primary": "4431382405", "server": "4049", "date_create": "1268570958", "photos": "22", "secret": "b908b5755e", "owner": "82262114@N00", "vist_label": "day_parade", "id": "72157623492642401"}, {"description": "\nWorkshop on the P-Sharan pinhole camera, led by Suzuki-sensei of Suzuki-shoten. Held at Media Shop, Kyoto, March 14th, 2010. Picture taking session at the Kamo-gawa.", "title": "P-Sharan Workshop", "farm": "5", "date_update": "1356245460", "primary": "4432414244", "server": "4009", "date_create": "1268580972", "photos": "12", "secret": "c3d49b30e0", "owner": "59731892@N00", "vist_label": "day_parade", "id": "72157623493517207"}, {"description": "", "title": "2010 03 13 San Francisco", "farm": "5", "date_update": "1400385868", "primary": "4432860432", "server": "4050", "date_create": "1268590029", "photos": "26", "secret": "30ac58f905", "owner": "62707789@N00", "vist_label": "day_parade", "id": "72157623619034418"}, {"description": "One of my annual highlights is the Oxford Folk Festival which takes place in Spring. Once again, this weekend of 16 - 18 April, the weather was glorious and music and revelry filled the streets of the city.\n", "title": "Oxford Folk Festival 2010", "farm": "5", "date_update": "1415546432", "primary": "4529960569", "server": "4024", "date_create": "1271514054", "photos": "22", "secret": "accf56cf46", "owner": "35409814@N00", "vist_label": "day_parade", "id": "72157623750513157"}, {"description": "", "title": "Acquisitions - May 2010", "farm": "4", "date_update": "1435066486", "primary": "4616356296", "server": "3324", "date_create": "1274123301", "photos": "18", "secret": "27b4c5e6e4", "owner": "43805361@N00", "vist_label": "day_parade", "id": "72157624081009722"}, {"description": "", "title": "St Patrick Day Parade in Dublin 2010", "farm": "3", "date_update": "1308151413", "primary": "4444204136", "server": "2768", "date_create": "1268947631", "photos": "16", "secret": "fc04ebcc20", "owner": "39841243@N00", "vist_label": "day_parade", "id": "72157623646900546"}, {"description": "", "title": "Manchester Day Parade", "farm": "5", "date_update": "1296157635", "primary": "4718223731", "server": "4024", "date_create": "1277070551", "photos": "12", "secret": "83d75cf4cc", "owner": "35468152754@N01", "vist_label": "day_parade", "id": "72157624194495907"}, {"description": "", "title": "Podcasters Across Borders 2010", "farm": "5", "date_update": "1356147955", "primary": "4719425970", "server": "4029", "date_create": "1277138239", "photos": "28", "secret": "256044a5a9", "owner": "48889116964@N01", "vist_label": "day_parade", "id": "72157624200620737"}, {"description": "Lakers won their second championship in a row in 2010, beating the Boston Celtics in 7 games.\n\nHere is the celebration.", "title": "Lakers 2010 Championship Celebration", "farm": "2", "date_update": "1297158811", "primary": "4724129724", "server": "1322", "date_create": "1277204122", "photos": "22", "secret": "2c71688160", "owner": "23630476@N06", "vist_label": "day_parade", "id": "72157624206659243"}, {"description": "", "title": "St Georges 2010", "farm": "4", "date_update": "1296776045", "primary": "4551432139", "server": "3248", "date_create": "1272222852", "photos": "13", "secret": "8870c1aae7", "owner": "27008470@N00", "vist_label": "day_parade", "id": "72157623805508451"}, {"description": "", "title": "Oak Harbor Holland Days", "farm": "5", "date_update": "1365618851", "primary": "4549754591", "server": "4049", "date_create": "1272179417", "photos": "10", "secret": "cd0924052a", "owner": "7918907@N05", "vist_label": "day_parade", "id": "72157623926298846"}, {"description": "Tens of thousands of people descended on Phoenix, AZ on 5-29-2010 to rally against Arizona Senate Bill 1070 (SB 1070) "Support Our Law Enforcement and Safe Neighborhoods Act" which makes it a state misdemeanor crime for an illegal alien to be in Arizona.\n\nI was in Arizona for the first time and went to downtown Phoenix to tour the city and take photos. I did not know about the rally until I ran right into it. Coming from a small city in Ohio, this was a unique opportunity for me as I don't see things like this where I live, and I happened to have my camera with me. These are some of the photos I took that day.\n\nI am presenting these photos only as record of what happened that day, I am not intending to show support or non-support for what the rally stood for. I do not live in Arizona and am not well-informed enough of the issues on either side to comment.\n\nMore information:\n\nen.wikipedia.org/wiki/SB_1070", "title": "Phoenix Immigration Rally 5-29-2010", "farm": "5", "date_update": "1356232036", "primary": "4656169204", "server": "4072", "date_create": "1275311465", "photos": "23", "secret": "0f2a54f653", "owner": "52195472@N00", "vist_label": "day_parade", "id": "72157624048603143"}, {"description": "", "title": "Festival Parade - Ipswich, Qld - 2010", "farm": "5", "date_update": "1296491768", "primary": "4655000871", "server": "4004", "date_create": "1273712847", "photos": "28", "secret": "a57496a050", "owner": "38679013@N04", "vist_label": "day_parade", "id": "72157624049959648"}, {"description": "[New to Flickr? Please check the Slideshow for full-size photos on black, or try the Detail view for larger thumbnails and captions]\n\nHappy Memorial Day! (blogged)", "title": "Memorial Day Parade 2010", "farm": "5", "date_update": "1356212444", "primary": "4657337520", "server": "4016", "date_create": "1275334112", "photos": "27", "secret": "547a8a01b4", "owner": "99706198@N00", "vist_label": "day_parade", "id": "72157624051027337"}, {"description": "", "title": "Elmhurst Memorial Day Parade", "farm": "5", "date_update": "1298732707", "primary": "4656127227", "server": "4017", "date_create": "1275324412", "photos": "12", "secret": "4a601cd43c", "owner": "32460232@N02", "vist_label": "day_parade", "id": "72157624174262988"}, {"description": "The Memorial Day Parade in Columbia brought people of all ages who showed support and appreciation for U.S. Troops. ", "title": "Memorial Day Parade", "farm": "5", "date_update": "1356141321", "primary": "4656681439", "server": "4054", "date_create": "1275341331", "photos": "16", "secret": "2eab214ff8", "owner": "12801018@N00", "vist_label": "day_parade", "id": "72157624176200742"}, {"description": "May 22 - a parade brews in Hing Hay Park, Seattle.", "title": "Parade Preparations", "farm": "5", "date_update": "1391233293", "primary": "4658135022", "server": "4058", "date_create": "1275350165", "photos": "13", "secret": "4a10301cd1", "owner": "63919710@N00", "vist_label": "day_parade", "id": "72157624177089384"}, {"description": "Mermaid Pride in Copenhagen, 2003", "title": "Mermaid Pride", "farm": "1", "date_update": "1408800013", "primary": "17570320", "server": "13", "date_create": "417126", "photos": "39", "secret": "d95a698106", "owner": "97815501@N00", "vist_label": "day_parade", "id": "417126"}, {"description": "I went to Bath for the rugby and Jane Austen connection. What more could a girl want from a weekend break?", "title": "Weekend in Bath, 10-12 March 2006", "farm": "1", "date_update": "1301875557", "primary": "111459979", "server": "49", "date_create": "1142190071", "photos": "24", "secret": "1aada82944", "owner": "32172174@N00", "vist_label": "day_parade", "id": "72057594080532069"}, {"description": "", "title": "s-a-t-u-r-d-a-y night", "farm": "1", "date_update": "1308335467", "primary": "443046642", "server": "187", "date_create": "1175484764", "photos": "22", "secret": "a1d98f344d", "owner": "90847750@N00", "vist_label": "easter", "id": "72157600041652858"}, {"description": "The two-day Spring Bazaar at the Aberdeen North Recreation Center drew hundreds of shoppers getting the jump on season purchases. The Directorate of Family and Morale, Welfare and Recreation hosted the event which followed the success of its 2010 Fall and Holiday bazaars. Arts and crafts products, jewelry, sweet treats, photography and more were offered by more than 30 vendors, many of whom donated gifts for a raffle drawing. Winners of the grand prizes included Edith Guess, a personnel specialist who won a Kindle wireless reading device and four others won tickets to the LYNYRD SKYNYRD / DOOBIE BROTHERS concert to be held on Shine Sports Field Aug. 20. Visit www.apgmwr.com to purchase tickets or for more information.\nGrammy-nominated flutist David Young performed music from his latest CD \u201cRomantic Moments,\u201d throughout the event. See more about the Young, who has performed with the likes of Paul McCartney, on his website at www.davidyoungmusic.com.\n\u201cThe Spring Bazaar was a huge success,\u201d said Rhonda Little, who co-organized the event with MWR senior special events coordinator Earlene Allen. \u201cFeedback has been very positive,\u201d Little added. \u201cPeople have already been asking for more.\u201d\nVendors displayed their top-of-the-line wares for APG customers. Many, independent distributors, like Angela Bowers, with her Silpada Sterling Silver handmade jewelry display, said they are available for home demonstrations. \nJoan Betzold of Partnership Crafts weaved baskets while shoppers checked out her themed designs. Betzold says she takes custom orders for tea crafts, antiques and other unique items.\nBrooksanne Benites, a legal technician with the Office of the Staff Judge Advocate, brought a \u2018stair\u2019 basket. \u201cBecause it\u2019s shaped like stairs, you can set it on the stairs, put thing inside it that need to go upstairs, and then take them when you go, and vice versa,\u201d Benites said. \u201cI just thought it was unique.\u201d \nCrafts included \u201cGodly Greetings\u201d cards by Renee Main of MWR, an amateur photographer who creates calendars, artwork and greeting cards from her photographs; and Cardz and Stuff by Elaine Garrity, an APG Garrison retiree with a special order greeting home business. \n\u2018It\u2019s just something to do in my retirement,\u201d Garrity said as she showed an array of bread tile warmers, thank-you notes and painted dominoes. \nOther Food vendors included Dawn Reals, an independent "chocolatier" with Chocolate Discoveries Dove chocolate desserts; and Sandy Shefcheck of Tastefully Simple who also displayed her \u201c31 Bags\u201d business of tote bags for everything from lunch to tools. ; \nOther jewelers included Deonn Hjelm with Premiere Designs.\nSee more photos about the MWR Spring Bazaar at flickr.com/photos/usagapg; facebook.com/APGmd; and apg.armylive.dodlive.mil. \n", "title": "Spring Bazaar gives shoppers seasonal options", "farm": "6", "date_update": "1432901191", "primary": "5580480016", "server": "5230", "date_create": "1301690519", "photos": "20", "secret": "48fdac2e9a", "owner": "46262306@N04", "vist_label": "easter", "id": "72157626407600218"}, {"description": "Dawn on Easter Saturday 2010 on Beeston Hill, Sheringham, Norfolk.\n\nEvery year, local parishioners erect a cross on Good Friday for a week.", "title": "Easter Saturday at Dawn", "farm": "5", "date_update": "1356178446", "primary": "4485795631", "server": "4071", "date_create": "1270287081", "photos": "22", "secret": "57bf97e8b8", "owner": "32306155@N00", "vist_label": "easter", "id": "72157623635304297"}, {"description": "Misc. stuff at Grammy's house in South Lincoln", "title": "At Grammy's House", "farm": "3", "date_update": "1304983347", "primary": "4487672948", "server": "2753", "date_create": "1270323698", "photos": "22", "secret": "a8b47c242b", "owner": "9357207@N07", "vist_label": "easter", "id": "72157623762355456"}, {"description": "", "title": "Fakenham Market", "farm": "3", "date_update": "1356088623", "primary": "4406362511", "server": "2775", "date_create": "1267730634", "photos": "10", "secret": "55ce2d22a5", "owner": "23000678@N05", "vist_label": "easter", "id": "72157623430267951"}, {"description": "", "title": "2001 - 04/15 - Easter AM", "farm": "1", "date_update": "1356266211", "primary": "347354082", "server": "127", "date_create": "1168730732", "photos": "13", "secret": "84501db8e0", "owner": "89393797@N00", "vist_label": "easter", "id": "72157594477699038"}, {"description": "", "title": "AfterParty LB1", "farm": "1", "date_update": "1350440686", "primary": "447649811", "server": "238", "date_create": "1175811127", "photos": "15", "secret": "216fea97ac", "owner": "32829641@N00", "vist_label": "easter", "id": "72157600050270086"}, {"description": "The Mets won, 13-4.", "title": "Mets vs. Nats - 13 April 2006", "farm": "1", "date_update": "1384473171", "primary": "140991026", "server": "51", "date_create": "1146859363", "photos": "16", "secret": "c89ad08d34", "owner": "96463101@N00", "vist_label": "easter", "id": "72057594126419846"}, {"description": "Digging into a box of new chocolate covered marshmallow Peeps - a fun Easter preview", "title": "Dark Chocolate Covered Marshmallow Peeps Unboxing", "farm": "5", "date_update": "1296611586", "primary": "4336007642", "server": "4041", "date_create": "1265495652", "photos": "11", "secret": "0fba82965f", "owner": "25897810@N00", "vist_label": "easter", "id": "72157623242343043"}, {"description": "A day early and well below average temps.", "title": "Easter Egg Hunt 2007", "farm": "1", "date_update": "1356154037", "primary": "449692528", "server": "171", "date_create": "1175970573", "photos": "19", "secret": "020f3ca5ca", "owner": "88478656@N00", "vist_label": "easter", "id": "72157600054101036"}, {"description": "", "title": "Easter 2007", "farm": "1", "date_update": "1300719334", "primary": "449738112", "server": "208", "date_create": "1175973094", "photos": "11", "secret": "3251705fd3", "owner": "23788518@N00", "vist_label": "easter", "id": "72157600054176148"}, {"description": "", "title": "2007 P\u00e5skafton", "farm": "1", "date_update": "1370778244", "primary": "449860225", "server": "202", "date_create": "1175979746", "photos": "10", "secret": "6a61512714", "owner": "97449017@N00", "vist_label": "easter", "id": "72157600054248575"}, {"description": "These are my sister's handmade primitive make dos, tags and other things she likes.", "title": "Irish Rose Prims", "farm": "1", "date_update": "1299700386", "primary": "383388424", "server": "154", "date_create": "1170911137", "photos": "17", "secret": "3e91bc4518", "owner": "85966598@N00", "vist_label": "easter", "id": "72157594524008673"}, {"description": "2005-03-27\nChris & Jerry's Place\nThen Over to Auntie Lita & Virgie's House", "title": "Easter 2005", "farm": "1", "date_update": "1356228943", "primary": "109945246", "server": "24", "date_create": "1141881778", "photos": "13", "secret": "2cc6809cd9", "owner": "23117685@N00", "vist_label": "easter", "id": "72057594078189875"}, {"description": "", "title": "Mardi Gras Day 2011", "farm": "6", "date_update": "1317860604", "primary": "5510204615", "server": "5011", "date_create": "1299628699", "photos": "30", "secret": "368df23114", "owner": "37309275@N00", "vist_label": "easter", "id": "72157626101447711"}, {"description": "", "title": "Easter weekend in oz", "farm": "1", "date_update": "1304402379", "primary": "452184118", "server": "201", "date_create": "1176116632", "photos": "14", "secret": "3840420f6a", "owner": "44633546@N00", "vist_label": "easter", "id": "72157600058403612"}, {"description": "", "title": "Easter Brunch 2007", "farm": "1", "date_update": "1356558796", "primary": "452394805", "server": "185", "date_create": "1176164874", "photos": "16", "secret": "5eb01a737a", "owner": "48600101146@N01", "vist_label": "easter", "id": "72157600060361468"}, {"description": "Bo-roo, McWilliams, & Devil", "title": "Easter Devils 2007", "farm": "1", "date_update": "1356232659", "primary": "452739438", "server": "230", "date_create": "1176143605", "photos": "14", "secret": "25bf830374", "owner": "37912375854@N01", "vist_label": "easter", "id": "72157600059377320"}, {"description": "A day out in Derbyshire.", "title": "Easter Walk", "farm": "1", "date_update": "1356209256", "primary": "452837859", "server": "185", "date_create": "1176147026", "photos": "27", "secret": "0bdc4f9ca1", "owner": "98894117@N00", "vist_label": "easter", "id": "72157600059516022"}, {"description": "The Disneyland Trip", "title": "Disneyland", "farm": "1", "date_update": "1356153135", "primary": "9166645", "server": "6", "date_create": "226949", "photos": "30", "secret": "a8e379cdfa", "owner": "97331332@N00", "vist_label": "easter", "id": "226949"}, {"description": "", "title": "easter", "farm": "1", "date_update": "1356791430", "primary": "127220272", "server": "52", "date_create": "1144803886", "photos": "12", "secret": "98b1e973c1", "owner": "85057326@N00", "vist_label": "easter", "id": "72057594104930436"}, {"description": "Take 12 photos on the 12th day of the month. This is my day on 12th April 2011. \n\nThis is a project by Chad Darnell\nchaddarnell.typepad.com/runchadrun2/12_of_12/\n\nAnd is adopted and promoted by Podcacher.com\npodcacher.com", "title": "12 of the 12th April 2011", "farm": "6", "date_update": "1373618266", "primary": "5610888017", "server": "5270", "date_create": "1302561490", "photos": "12", "secret": "e5c38b9be8", "owner": "62168549@N00", "vist_label": "easter", "id": "72157626353824175"}, {"description": "Pictures of the result of the 2 Nor'Easters that hit around the Southeastern Pennsylvania region.", "title": "Nor'Easters 2010", "farm": "5", "date_update": "1297193916", "primary": "4351578751", "server": "4030", "date_create": "1266011548", "photos": "11", "secret": "b9eaa104d3", "owner": "7784840@N07", "vist_label": "easter", "id": "72157623297975725"}, {"description": "26. mars 2005", "title": "\u00c5lesund p\u00e5sken 2005", "farm": "1", "date_update": "1299257351", "primary": "86929568", "server": "36", "date_create": "1152888229", "photos": "14", "secret": "7dc691652e", "owner": "53571489@N00", "vist_label": "easter", "id": "72157594198925729"}, {"description": "", "title": "Old Slides: Dad's Random", "farm": "1", "date_update": "1428106038", "primary": "168690856", "server": "77", "date_create": "1150520762", "photos": "21", "secret": "a11dd35e74", "owner": "50169083@N00", "vist_label": "easter", "id": "72157594168153856"}, {"description": "", "title": "Jim's 50th", "farm": "1", "date_update": "1375980225", "primary": "190839714", "server": "71", "date_create": "1153067382", "photos": "29", "secret": "3916096776", "owner": "46972477@N00", "vist_label": "easter", "id": "72157594200971706"}, {"description": "Easter '06 in River Falls, WI.", "title": "Easter", "farm": "1", "date_update": "1307128033", "primary": "129902658", "server": "44", "date_create": "1145249683", "photos": "25", "secret": "a517e2bbf1", "owner": "10595000@N00", "vist_label": "easter", "id": "72057594109105597"}, {"description": "April 16, 2006", "title": "Easter 2006", "farm": "1", "date_update": "1312576250", "primary": "130162012", "server": "47", "date_create": "1145287827", "photos": "11", "secret": "8beac413bf", "owner": "12472288@N00", "vist_label": "easter", "id": "72057594109474817"}, {"description": "April 2006", "title": "England", "farm": "1", "date_update": "1356333809", "primary": "130222286", "server": "46", "date_create": "1145294200", "photos": "16", "secret": "37f7812106", "owner": "70177321@N00", "vist_label": "easter", "id": "72057594109571993"}, {"description": "Some self's i took on 4.16.06\n\nI'm offically for hire for headshots and photo airbrush/retouching. ", "title": "Self Portrait | Cord Jacket", "farm": "1", "date_update": "1356337619", "primary": "130595960", "server": "31", "date_create": "1145334284", "photos": "20", "secret": "253014bda6", "owner": "82763263@N00", "vist_label": "easter", "id": "72057594110127650"}, {"description": "", "title": "Easter 2006", "farm": "1", "date_update": "1356558796", "primary": "130643998", "server": "54", "date_create": "1145341341", "photos": "24", "secret": "22b5eb4ba8", "owner": "48600101146@N01", "vist_label": "easter", "id": "72057594110194999"}, {"description": "Wilder spent (most of) the night at the neighbor's house so Matthew and walked to get bbq takeout, squeezed some key limes and took in a (pirated) movie.", "title": "date night!", "farm": "6", "date_update": "1429643060", "primary": "5627583361", "server": "5227", "date_create": "1303059285", "photos": "13", "secret": "c80885fdb9", "owner": "24216579@N05", "vist_label": "easter", "id": "72157626392699829"}, {"description": "Pics of my little brother, Cory.", "title": "My Brother", "farm": "1", "date_update": "1326908705", "primary": "15685775", "server": "13", "date_create": "377577", "photos": "15", "secret": "7d7ade2936", "owner": "81287431@N00", "vist_label": "easter", "id": "377577"}, {"description": "At least I think it was March 2001.....Jen and I flew to Rome for 10 days - still my favourite city :)", "title": "Rome - 2001", "farm": "1", "date_update": "1385514233", "primary": "253859396", "server": "79", "date_create": "1159332906", "photos": "17", "secret": "b624643b95", "owner": "29753028@N00", "vist_label": "easter", "id": "72157594301564931"}, {"description": "easter sunday with sheri smith\n\nThese photos were originally posted on my website, with the following text...\n\nOriginally Posted: April 2002\n\n\n\nSheri Smith!\n\nMy Bestest GirlFriend & Deeply Heartfelt Co-Life Explorer, Sheri Anna-Leah Smith!\n\nRelationship RIP: March 1, 2002 - July 28, 2002\n\nI had the pleasure of dating Sheri Smith for a number of months in 2002, and I will never forget the time I spent with her. There will always be a huge place in my heart for Sheri, and a part of her will always be with me.\n\nPhotosets 1 through 5 make references that sound as if me and Sheri are still dating simply because they were posted while we were dating. I've essentially left them as I originally posted them because they do reflect a moment in time when we were dating and I cherish the fact that they document those times and how we felt.\n\nBut even though our romantic relationship came to an end, I'm very glad to say that we are still good friends. As such, the more recent photosets document that continuing friendship. In short, I will always be there for Sheri, no matter what.\n\n- Steve =)", "title": "FRIENDS: March 31, 2002 easter sunday", "farm": "1", "date_update": "1436756275", "primary": "371626096", "server": "177", "date_create": "1169970571", "photos": "15", "secret": "390ff6f3d1", "owner": "70985827@N00", "vist_label": "easter", "id": "72157594503852049"}, {"description": "Midlothian.", "title": "Lothian Lothlorien", "farm": "5", "date_update": "1296913771", "primary": "4470321916", "server": "4053", "date_create": "1269791185", "photos": "21", "secret": "9522ecd77e", "owner": "28262934@N00", "vist_label": "easter", "id": "72157623595652263"}, {"description": "Easter Petit Fours. Nom.", "title": "Easter Petits", "farm": "5", "date_update": "1323218682", "primary": "4469766689", "server": "4021", "date_create": "1269796314", "photos": "17", "secret": "62cd128085", "owner": "80775449@N00", "vist_label": "easter", "id": "72157623720758318"}, {"description": "Shoppingcenter Potsdamer Platz in Berlin - colorful Easter decoration!", "title": "Easter comes!", "farm": "5", "date_update": "1296915179", "primary": "4470933078", "server": "4025", "date_create": "1269803940", "photos": "12", "secret": "dbf071cc93", "owner": "37621034@N02", "vist_label": "easter", "id": "72157623721595050"}, {"description": "", "title": "Easter 2005", "farm": "1", "date_update": "1306433080", "primary": "7788069", "server": "5", "date_create": "196227", "photos": "21", "secret": "5dc9b510cb", "owner": "94258075@N00", "vist_label": "easter", "id": "196227"}, {"description": "James and Pam's new baby, Heidi at one month old. Finally had an opportunity to try out my new white backdrop. :-)", "title": "Heidi, 1 mo old", "farm": "5", "date_update": "1435325480", "primary": "4475612435", "server": "4047", "date_create": "1269954902", "photos": "17", "secret": "cc3042833c", "owner": "98227537@N00", "vist_label": "easter", "id": "72157623609477127"}, {"description": "", "title": "Easter Weekend", "farm": "1", "date_update": "1374099249", "primary": "7574574", "server": "6", "date_create": "189170", "photos": "30", "secret": "77b67a8f1a", "owner": "11721791@N00", "vist_label": "easter", "id": "189170"}, {"description": "I got these photos from Hal Cross.", "title": "Rosa Family Photos", "farm": "1", "date_update": "1298555636", "primary": "7785016", "server": "5", "date_create": "194334", "photos": "27", "secret": "8e0a665be2", "owner": "76567465@N00", "vist_label": "easter", "id": "194334"}, {"description": "easter eggs inspired by mta posters, paul klee, and white bread", "title": "easter eggs", "farm": "1", "date_update": "1308076901", "primary": "7975396", "server": "8", "date_create": "386051", "photos": "12", "secret": "10382187af", "owner": "36521975405@N01", "vist_label": "easter", "id": "386051"}, {"description": "", "title": "Easter Sunrise at Arlington Cemetary", "farm": "1", "date_update": "1318133625", "primary": "129376925", "server": "47", "date_create": "1145191313", "photos": "21", "secret": "ab0072ca15", "owner": "24792396@N00", "vist_label": "easter", "id": "72057594108360039"}, {"description": "At my parent's house. It wasn't particularly sunny, but it did stop raining long enough for an egg hunt.", "title": "Easter Saturday", "farm": "1", "date_update": "1357158509", "primary": "129467888", "server": "52", "date_create": "1145203145", "photos": "16", "secret": "47aa35401b", "owner": "60449310@N00", "vist_label": "easter", "id": "72057594108488177"}, {"description": "Photos from Easter, 2006!", "title": "Easter 2006", "farm": "1", "date_update": "1336393436", "primary": "129494566", "server": "55", "date_create": "1145206484", "photos": "14", "secret": "02e5d21806", "owner": "63032898@N00", "vist_label": "easter", "id": "72057594108529533"}, {"description": "", "title": "MRA Easter Egg Hunt", "farm": "1", "date_update": "1306178853", "primary": "129511060", "server": "54", "date_create": "1145207998", "photos": "20", "secret": "4f17346b7e", "owner": "19517696@N00", "vist_label": "easter", "id": "72057594108549896"}, {"description": "", "title": "Early Days", "farm": "1", "date_update": "1300434390", "primary": "360306942", "server": "131", "date_create": "1169016876", "photos": "19", "secret": "b8372eb620", "owner": "68295962@N00", "vist_label": "easter", "id": "72157594484327927"}, {"description": "I was surprised that I haven't seen this documented anywhere, so I posted this info to Gamefaqs, and will put it out there for others.\n\nThe basic information is: start a Wii-tennis game with four computer players, and then you can control the camera with the digital pad. You can move the camera into the audience stands if you want.", "title": "Wii Tennis Easter Egg", "farm": "1", "date_update": "1301293104", "primary": "383191153", "server": "173", "date_create": "1170893821", "photos": "16", "secret": "19f15a95aa", "owner": "50527177@N00", "vist_label": "easter", "id": "72157594523668593"}, {"description": "", "title": "Spring", "farm": "1", "date_update": "1356235127", "primary": "441444144", "server": "206", "date_create": "1178760959", "photos": "26", "secret": "d82cbc7d97", "owner": "59158146@N00", "vist_label": "easter", "id": "72157600198842710"}, {"description": "Thousands of people turned out for Eid prayer this morning at some 270 mosques and prayer grounds across Qatar, including the Sheikhs’ Mosque in Musheireb.", "title": "Eid al-Adha 2012", "farm": "9", "date_update": "1356336528", "primary": "8124966235", "server": "8187", "date_create": "1351263831", "photos": "10", "secret": "0dd1c61a62", "owner": "53285566@N00", "vist_label": "eid_al-adha", "id": "72157631857762354"}, {"description": "For more information, visit iraqistories.wordpress.com/2012/10/29/joy-on-eid-al-adha/", "title": "Eid al-Adha Gifts, 1434 AH, 2012 CE", "farm": "9", "date_update": "1351818656", "primary": "8146316914", "server": "8049", "date_create": "1351815805", "photos": "11", "secret": "977b189fd0", "owner": "53363419@N00", "vist_label": "eid_al-adha", "id": "72157631906545378"}, {"description": "", "title": "Eid al-Fitr (2005)", "farm": "1", "date_update": "1305053082", "primary": "66426214", "server": "24", "date_create": "1132828944", "photos": "28", "secret": "e7255080dc", "owner": "41029574@N00", "vist_label": "eid_al-fitr", "id": "1433463"}, {"description": "December 18, 2008", "title": "Celebrating Diversity", "farm": "4", "date_update": "1356370145", "primary": "3121199491", "server": "3106", "date_create": "1229744997", "photos": "29", "secret": "e935b03f0b", "owner": "21484712@N00", "vist_label": "eid_al-fitr", "id": "72157611363181075"}, {"description": "I took these pictures on the day of Eid al-Fitr in Augusta, GA, USA.", "title": "20090920 Eid al-Fitr Augusta, GA, USA", "farm": "4", "date_update": "1299043773", "primary": "3940227597", "server": "3534", "date_create": "1253533219", "photos": "16", "secret": "3b42b375c5", "owner": "53363419@N00", "vist_label": "eid_al-fitr", "id": "72157622299140565"}, {"description": "", "title": "2010.01.01 Nora's Engagement Ceremony", "farm": "5", "date_update": "1300967676", "primary": "4234761943", "server": "4009", "date_create": "1262392630", "photos": "14", "secret": "5772f0c5e4", "owner": "8995365@N02", "vist_label": "engagement", "id": "72157623116920892"}, {"description": "Verna Garvan donated her land on Lake Hamilton to the University of Arkansas. It has now become of the attractions of Hot Springs, and arguably, its most beautiful place. ", "title": "Garvan Woodland Gardens at Hot Springs", "farm": "4", "date_update": "1388365204", "primary": "2997191703", "server": "3185", "date_create": "1225679243", "photos": "15", "secret": "50463432b3", "owner": "73246356@N00", "vist_label": "engagement", "id": "72157608607868619"}, {"description": "Chad-Lindsey, Stosh-Nan at Bel-Mar", "title": "Surprise Double-Engagement Party", "farm": "4", "date_update": "1356981815", "primary": "3087908650", "server": "3158", "date_create": "1228598737", "photos": "27", "secret": "c394dec872", "owner": "83085197@N00", "vist_label": "engagement", "id": "72157610754478453"}, {"description": "", "title": "e-session - veronica and thomas", "farm": "4", "date_update": "1323531284", "primary": "2574367229", "server": "3122", "date_create": "1213344446", "photos": "20", "secret": "07f148337d", "owner": "10168383@N08", "vist_label": "engagement", "id": "72157605584003494"}, {"description": "www.bathcamp.org for more. Will try to upload photos live from sessions.\n\nbathcamp: a barcamp. in bath, September 12 - 13, 2008.\n\nI'm going to try and blog my notes (almost) as it happens at openobjects.blogspot.com/search/label/bathcamp\n\nIf you liked this you may also like digitalheritage.ning.com/", "title": "Bathcamp", "farm": "4", "date_update": "1356198520", "primary": "2852470399", "server": "3236", "date_create": "1221303809", "photos": "23", "secret": "01bbc5091a", "owner": "12383598@N00", "vist_label": "engagement", "id": "72157607260816188"}, {"description": "", "title": "My Photos-Randy", "farm": "2", "date_update": "1372891853", "primary": "741735228", "server": "1318", "date_create": "1183752860", "photos": "17", "secret": "9b66894361", "owner": "9774638@N04", "vist_label": "engagement", "id": "72157600688151685"}, {"description": "Trying a few engagement pictures for Becky and Matt in Brookings.", "title": "Becky and Matt", "farm": "4", "date_update": "1403097811", "primary": "2945981298", "server": "3182", "date_create": "1224118005", "photos": "19", "secret": "d5b6b79655", "owner": "67502676@N00", "vist_label": "engagement", "id": "72157608062240202"}, {"description": "", "title": "Balto April 2008", "farm": "3", "date_update": "1356762398", "primary": "2404694628", "server": "2221", "date_create": "1207877107", "photos": "24", "secret": "7536486faf", "owner": "86165466@N00", "vist_label": "engagement", "id": "72157604474354874"}, {"description": "", "title": "Visiting Laura in Philly 2002", "farm": "1", "date_update": "1302006999", "primary": "35426525", "server": "22", "date_create": "783955", "photos": "22", "secret": "da4e107d20", "owner": "51035702550@N01", "vist_label": "engagement", "id": "783955"}, {"description": "", "title": "Stacy & Andrew engagement party", "farm": "4", "date_update": "1343184548", "primary": "2618935065", "server": "3143", "date_create": "1214696796", "photos": "17", "secret": "c1633eed1c", "owner": "97281671@N00", "vist_label": "engagement", "id": "72157605866485628"}, {"description": "Congratulations, Natasha and Geoff!", "title": "mi hija is getting married!", "farm": "1", "date_update": "1312230551", "primary": "38486398", "server": "32", "date_create": "848373", "photos": "15", "secret": "0556fef2ce", "owner": "68982768@N00", "vist_label": "engagement", "id": "848373"}, {"description": "Ugly Mugs is a new coffee shop in East Nashville.\n\n1886 Eastland Ave, Nashville, TN 37206\n\nLuke started working there today! Go visit him! It is swanky...", "title": "Ugly Mugs", "farm": "4", "date_update": "1348401444", "primary": "2901306332", "server": "3108", "date_create": "1222750978", "photos": "18", "secret": "df8e884993", "owner": "69047426@N00", "vist_label": "engagement", "id": "72157607595711983"}, {"description": "MetaFilter Meetup Chicago 1/29/05.\nAt Hopleaf and Konak\nIn attendance: me3dia, kenko, Slack-a-gogo, jennyb, corpse, trharlan, steve_at_linnwood", "title": "MeFiChi", "farm": "1", "date_update": "1356230646", "primary": "4012867", "server": "3", "date_create": "101221", "photos": "13", "secret": "014a6bb53b", "owner": "51035597898@N01", "vist_label": "engagement", "id": "101221"}, {"description": "", "title": "Mike and Kara's Engagement Party", "farm": "1", "date_update": "1310842084", "primary": "30722625", "server": "22", "date_create": "686901", "photos": "30", "secret": "4353d9ed25", "owner": "10622160@N00", "vist_label": "engagement", "id": "686901"}, {"description": "Please excuse the quality of these pictures. The photographer was drunk, the editor was too lazy to do red eye correction and the uploader didn't feel like adding tags.", "title": "whitney & scott's engagement party", "farm": "1", "date_update": "1356319669", "primary": "58112729", "server": "29", "date_create": "1130782249", "photos": "16", "secret": "e51770f409", "owner": "55107041@N00", "vist_label": "engagement", "id": "1257558"}, {"description": "Mostly taken at Scarborough Faire in Waxahatchie, TX.", "title": "Kilts", "farm": "1", "date_update": "1347907109", "primary": "140804071", "server": "45", "date_create": "1152727304", "photos": "17", "secret": "e327cb3bb5", "owner": "12882543@N00", "vist_label": "engagement", "id": "72157594196991409"}, {"description": "", "title": "2006 Bonnie & Dave Photos", "farm": "1", "date_update": "1296676895", "primary": "157781958", "server": "67", "date_create": "1149145232", "photos": "20", "secret": "91563676da", "owner": "14422530@N00", "vist_label": "engagement", "id": "72157594151770983"}, {"description": "Meet Your Farmers: CSA Fair\nFeb 25, 2010\nWexner Center for the Arts \nPhotos by Alex Kotran \nThe Ohio State University", "title": "Meet Your Farmers: CSA Fair | Feb 25, 2010", "farm": "3", "date_update": "1383251056", "primary": "4407156630", "server": "2700", "date_create": "1267734141", "photos": "11", "secret": "f847ea7508", "owner": "7315911@N02", "vist_label": "fair", "id": "72157623555139014"}, {"description": "", "title": "Kinetica Art Fair 2010", "farm": "3", "date_update": "1344605167", "primary": "4336367682", "server": "2736", "date_create": "1265505070", "photos": "13", "secret": "e623a49c3f", "owner": "93384183@N00", "vist_label": "fair", "id": "72157623367722036"}, {"description": "", "title": "\u3084\u307e\u3073\u3053\u30b9\u30ad\u30fc2010", "farm": "5", "date_update": "1335034898", "primary": "4333385077", "server": "4043", "date_create": "1265620866", "photos": "13", "secret": "f43228c98b", "owner": "26775981@N05", "vist_label": "fair", "id": "72157623377229572"}, {"description": "", "title": "Teen Job Fair", "farm": "5", "date_update": "1301700597", "primary": "4411298134", "server": "4055", "date_create": "1267890950", "photos": "14", "secret": "e6fa4a0636", "owner": "11591650@N03", "vist_label": "fair", "id": "72157623565659140"}, {"description": "Awards were presented at Monday morning assembly for the annual KCDS science fair where Lockie placed 1st for 5th grade! It was also "Dare to wear" day to celebrate Boy Scouts 100th year anniversary.", "title": "KCDS 2010 Science Fair", "farm": "5", "date_update": "1297567491", "primary": "4340981890", "server": "4065", "date_create": "1265641645", "photos": "13", "secret": "397b68999e", "owner": "45846686@N00", "vist_label": "fair", "id": "72157623379045494"}, {"description": "", "title": "ACM Career Fair Dinner, Spring 2010", "farm": "3", "date_update": "1297078547", "primary": "4345887692", "server": "2723", "date_create": "1265793885", "photos": "24", "secret": "be6fcbd964", "owner": "44724992@N07", "vist_label": "fair", "id": "72157623272811295"}, {"description": "These were taken at the 2010 Dallas Art Fair and Symposium. \n\n(CC) Licensed under a creative commons share-alike. Use freely but give attribution to Jennifer Conley and www.iliveindallas.com.", "title": "Dallas Art Fair & Symposium 2010", "farm": "5", "date_update": "1360528265", "primary": "4423684317", "server": "4023", "date_create": "1268291473", "photos": "26", "secret": "0107db6916", "owner": "11637454@N04", "vist_label": "fair", "id": "72157623473359603"}, {"description": "", "title": "Red Dot art fair 2010", "farm": "5", "date_update": "1388097932", "primary": "4415420943", "server": "4034", "date_create": "1268021537", "photos": "26", "secret": "926fb17ec9", "owner": "45638810@N00", "vist_label": "fair", "id": "72157623576462226"}, {"description": "I was lucky enough to visit one of UBM's biggests shows at the NEC this week. There's always going to be plenty to photograph including traditional chairs, like Parker Knoll, student work and high profile designer Kelly Hoppen.", "title": "Interiors 2010", "farm": "5", "date_update": "1296653393", "primary": "4309554929", "server": "4063", "date_create": "1264683546", "photos": "25", "secret": "58c3b2fb1d", "owner": "28646466@N02", "vist_label": "fair", "id": "72157623176008591"}, {"description": "", "title": "Washington State History Museum", "farm": "3", "date_update": "1356299685", "primary": "4397868500", "server": "2727", "date_create": "1267430167", "photos": "11", "secret": "edf7ffc3bc", "owner": "13166745@N07", "vist_label": "fair", "id": "72157623531666234"}, {"description": "Fieramilanocity, Cartoomics 28/03/2010", "title": "Cartoomics 2010", "farm": "5", "date_update": "1316390258", "primary": "4469399261", "server": "4040", "date_create": "1269797705", "photos": "29", "secret": "ee360a26fb", "owner": "26927605@N04", "vist_label": "fair", "id": "72157623720905266"}, {"description": "29th- 31st January, 2010", "title": " Bal Kumar Sammelan, Nasik", "farm": "5", "date_update": "1296782543", "primary": "4321673136", "server": "4038", "date_create": "1265006432", "photos": "13", "secret": "ce3927d1b9", "owner": "35026043@N03", "vist_label": "fair", "id": "72157623200777503"}, {"description": "", "title": "Newburgh - Hudson RV - points departing", "farm": "5", "date_update": "1430374485", "primary": "4317763671", "server": "4064", "date_create": "1264929439", "photos": "29", "secret": "df84d19945", "owner": "34340888@N07", "vist_label": "fair", "id": "72157623318117000"}, {"description": "what a great weekend!", "title": "newcastle gathering of families", "farm": "1", "date_update": "1329229081", "primary": "1382011", "server": "2", "date_create": "35302", "photos": "17", "secret": "394edec77b", "owner": "77144411@N00", "vist_label": "fair", "id": "35302"}], "type": "story-in-sequence", "annotations": [[{"original_text": "My sister arrived early to help me with the family Bar BQ.", "album_id": "72157600601428727", "photo_flickr_id": "693397887", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40470", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister arrived early to help me with the family bar bq .", "storylet_id": "202350"}], [{"original_text": "Every one else arrived soon after.", "album_id": "72157600601428727", "photo_flickr_id": "695160730", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40470", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "every one else arrived soon after .", "storylet_id": "202351"}], [{"original_text": "Dad manned the grill.", "album_id": "72157600601428727", "photo_flickr_id": "694227508", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40470", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad manned the grill .", "storylet_id": "202352"}], [{"original_text": "There was so much food and it was all delicious.", "album_id": "72157600601428727", "photo_flickr_id": "693397865", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40470", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was so much food and it was all delicious .", "storylet_id": "202353"}], [{"original_text": "We ended the day shooting off some fireworks.", "album_id": "72157600601428727", "photo_flickr_id": "694227468", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40470", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the day shooting off some fireworks .", "storylet_id": "202354"}], [{"original_text": "We gathered up some fire works to set off at dark.", "album_id": "72157600601428727", "photo_flickr_id": "694227468", "setting": "first-2-pick-and-tell", "worker_id": "JMDW0JEM22M6238", "story_id": "40471", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we gathered up some fire works to set off at dark .", "storylet_id": "202355"}], [{"original_text": "We grilled some burgers that were oddly shaped.", "album_id": "72157600601428727", "photo_flickr_id": "694227412", "setting": "first-2-pick-and-tell", "worker_id": "JMDW0JEM22M6238", "story_id": "40471", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we grilled some burgers that were oddly shaped .", "storylet_id": "202356"}], [{"original_text": "Our friends trickled in one by one!", "album_id": "72157600601428727", "photo_flickr_id": "694227488", "setting": "first-2-pick-and-tell", "worker_id": "JMDW0JEM22M6238", "story_id": "40471", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our friends trickled in one by one !", "storylet_id": "202357"}], [{"original_text": "We got all the food on the grill to cook and ready to eat.", "album_id": "72157600601428727", "photo_flickr_id": "694227508", "setting": "first-2-pick-and-tell", "worker_id": "JMDW0JEM22M6238", "story_id": "40471", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got all the food on the grill to cook and ready to eat .", "storylet_id": "202358"}], [{"original_text": "The sunset was amazing that night! ", "album_id": "72157600601428727", "photo_flickr_id": "693413687", "setting": "first-2-pick-and-tell", "worker_id": "JMDW0JEM22M6238", "story_id": "40471", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sunset was amazing that night !", "storylet_id": "202359"}], [{"original_text": "I took some pictures from my family's bbq last weekend. ", "album_id": "72157600601428727", "photo_flickr_id": "694227468", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "40472", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took some pictures from my family 's bbq last weekend .", "storylet_id": "202360"}], [{"original_text": "We made hamburgers into little star shapes. ", "album_id": "72157600601428727", "photo_flickr_id": "694227412", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "40472", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made hamburgers into little star shapes .", "storylet_id": "202361"}], [{"original_text": "My wife is ready for the attack!", "album_id": "72157600601428727", "photo_flickr_id": "694227488", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "40472", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my wife is ready for the attack !", "storylet_id": "202362"}], [{"original_text": "My dad is trying to touch my food. Don't touch!!", "album_id": "72157600601428727", "photo_flickr_id": "694227508", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "40472", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my dad is trying to touch my food . do n't touch ! !", "storylet_id": "202363"}], [{"original_text": "The sunset afterwards was so beautiful. ", "album_id": "72157600601428727", "photo_flickr_id": "693413687", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "40472", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sunset afterwards was so beautiful .", "storylet_id": "202364"}], [{"original_text": "People started to arrive for the cookout around 2 in the afternoon.", "album_id": "72157600601428727", "photo_flickr_id": "693397887", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40473", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people started to arrive for the cookout around 2 in the afternoon .", "storylet_id": "202365"}], [{"original_text": "It was good to get the friends and family together for fun and food and drinks.", "album_id": "72157600601428727", "photo_flickr_id": "695160730", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40473", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was good to get the friends and family together for fun and food and drinks .", "storylet_id": "202366"}], [{"original_text": "Dad enjoyed a glass of wine while he manned the grill.", "album_id": "72157600601428727", "photo_flickr_id": "694227508", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40473", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad enjoyed a glass of wine while he manned the grill .", "storylet_id": "202367"}], [{"original_text": "The burgers and sausages were delicious.", "album_id": "72157600601428727", "photo_flickr_id": "693397865", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40473", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the burgers and sausages were delicious .", "storylet_id": "202368"}], [{"original_text": "But of course, everyone was most looking forward to setting off the fireworks when the sun went down.", "album_id": "72157600601428727", "photo_flickr_id": "694227468", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40473", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but of course , everyone was most looking forward to setting off the fireworks when the sun went down .", "storylet_id": "202369"}], [{"original_text": "The fireworks are a great addition, ", "album_id": "72157600601428727", "photo_flickr_id": "694227468", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "40474", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fireworks are a great addition ,", "storylet_id": "202370"}], [{"original_text": "to the annual celebration. ", "album_id": "72157600601428727", "photo_flickr_id": "694227412", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "40474", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to the annual celebration .", "storylet_id": "202371"}], [{"original_text": "Rachel is holding up her meat on sticks,", "album_id": "72157600601428727", "photo_flickr_id": "694227488", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "40474", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] is holding up her meat on sticks ,", "storylet_id": "202372"}], [{"original_text": "while her uncle cooks on the grill. ", "album_id": "72157600601428727", "photo_flickr_id": "694227508", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "40474", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while her uncle cooks on the grill .", "storylet_id": "202373"}], [{"original_text": "The view was breathtaking. ", "album_id": "72157600601428727", "photo_flickr_id": "693413687", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "40474", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view was breathtaking .", "storylet_id": "202374"}], [{"original_text": "The old man was riding the escalator.", "album_id": "72157601202851033", "photo_flickr_id": "727540815", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40475", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old man was riding the escalator .", "storylet_id": "202375"}], [{"original_text": "He was almost to the top.", "album_id": "72157601202851033", "photo_flickr_id": "727540891", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40475", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was almost to the top .", "storylet_id": "202376"}], [{"original_text": "His kids were already at the top.", "album_id": "72157601202851033", "photo_flickr_id": "727541051", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40475", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his kids were already at the top .", "storylet_id": "202377"}], [{"original_text": "Some police were at the top. It was a train station.", "album_id": "72157601202851033", "photo_flickr_id": "727541139", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40475", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some police were at the top . it was a train station .", "storylet_id": "202378"}], [{"original_text": "They then got on the bus.", "album_id": "72157601202851033", "photo_flickr_id": "1003969962", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40475", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they then got on the bus .", "storylet_id": "202379"}], [{"original_text": "They arrived to the station on the 4th of July.", "album_id": "72157601202851033", "photo_flickr_id": "1001024065", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40476", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they arrived to the station on the 4th of july .", "storylet_id": "202380"}], [{"original_text": "Then they rode the escalator down to the station.", "album_id": "72157601202851033", "photo_flickr_id": "727540815", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40476", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then they rode the escalator down to the station .", "storylet_id": "202381"}], [{"original_text": "First they came to an advertisement for four wheelers.", "album_id": "72157601202851033", "photo_flickr_id": "1003892224", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40476", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "first they came to an advertisement for four wheelers .", "storylet_id": "202382"}], [{"original_text": "Then they came to an advertisement for West Virgina.", "album_id": "72157601202851033", "photo_flickr_id": "1003969962", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40476", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they came to an advertisement for location location .", "storylet_id": "202383"}], [{"original_text": "Finally when they got out of the station, they came to a group of police.", "album_id": "72157601202851033", "photo_flickr_id": "727541139", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40476", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally when they got out of the station , they came to a group of police .", "storylet_id": "202384"}], [{"original_text": "We got into Washington on July 4th.", "album_id": "72157601202851033", "photo_flickr_id": "1001024065", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40477", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got into location on july 4th .", "storylet_id": "202385"}], [{"original_text": "We had to ride these long escalators to get to the exit.", "album_id": "72157601202851033", "photo_flickr_id": "727540815", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40477", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to ride these long escalators to get to the exit .", "storylet_id": "202386"}], [{"original_text": "Some of the advertisements in the terminal caught our eye, in particular this one for the tourism board...", "album_id": "72157601202851033", "photo_flickr_id": "1003892224", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40477", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the advertisements in the terminal caught our eye , in particular this one for the tourism board ...", "storylet_id": "202387"}], [{"original_text": "And this one advertising the beauty of Greenbrier County.", "album_id": "72157601202851033", "photo_flickr_id": "1003969962", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40477", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and this one advertising the beauty of location location .", "storylet_id": "202388"}], [{"original_text": "As we left, these friendly police officers wished us a good vacation!", "album_id": "72157601202851033", "photo_flickr_id": "727541139", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40477", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as we left , these friendly police officers wished us a good vacation !", "storylet_id": "202389"}], [{"original_text": "Shoppers riding the escalator at the mall.", "album_id": "72157601202851033", "photo_flickr_id": "727540815", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "40478", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "shoppers riding the escalator at the mall .", "storylet_id": "202390"}], [{"original_text": "So many people are shopping today.", "album_id": "72157601202851033", "photo_flickr_id": "727540891", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "40478", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so many people are shopping today .", "storylet_id": "202391"}], [{"original_text": "Two friends going into the mall for the great sales.", "album_id": "72157601202851033", "photo_flickr_id": "727541051", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "40478", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two friends going into the mall for the great sales .", "storylet_id": "202392"}], [{"original_text": "Three men in yellow vest outside the mall.", "album_id": "72157601202851033", "photo_flickr_id": "727541139", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "40478", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "three men in yellow vest outside the mall .", "storylet_id": "202393"}], [{"original_text": "Picture of the old home we will visit on vacation.", "album_id": "72157601202851033", "photo_flickr_id": "1003969962", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "40478", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "picture of the old home we will visit on vacation .", "storylet_id": "202394"}], [{"original_text": "I traveled to Washington on the 4th of July.", "album_id": "72157601202851033", "photo_flickr_id": "1001024065", "setting": "last-3-pick-old-and-tell", "worker_id": "2FG6UTKGNGJMN6N", "story_id": "40479", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i traveled to location on the 4th of july .", "storylet_id": "202395"}], [{"original_text": "After getting off the plane, I took the escalator to get my luggage.", "album_id": "72157601202851033", "photo_flickr_id": "727540815", "setting": "last-3-pick-old-and-tell", "worker_id": "2FG6UTKGNGJMN6N", "story_id": "40479", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after getting off the plane , i took the escalator to get my luggage .", "storylet_id": "202396"}], [{"original_text": "There was a video monitor and I watched some motorbike racing while I waited for my luggage.", "album_id": "72157601202851033", "photo_flickr_id": "1003892224", "setting": "last-3-pick-old-and-tell", "worker_id": "2FG6UTKGNGJMN6N", "story_id": "40479", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a video monitor and i watched some motorbike racing while i waited for my luggage .", "storylet_id": "202397"}], [{"original_text": "I looked at advertisements for visiting the White House.", "album_id": "72157601202851033", "photo_flickr_id": "1003969962", "setting": "last-3-pick-old-and-tell", "worker_id": "2FG6UTKGNGJMN6N", "story_id": "40479", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i looked at advertisements for visiting the location location .", "storylet_id": "202398"}], [{"original_text": "I began my tour of Washington DC at a glass and concrete building.", "album_id": "72157601202851033", "photo_flickr_id": "727541139", "setting": "last-3-pick-old-and-tell", "worker_id": "2FG6UTKGNGJMN6N", "story_id": "40479", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i began my tour of location location at a glass and concrete building .", "storylet_id": "202399"}], [{"original_text": "The parade started with the local JROTC team.", "album_id": "72157594187408667", "photo_flickr_id": "181866901", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40480", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parade started with the local jrotc team .", "storylet_id": "202400"}], [{"original_text": "Then there were clowns on funny bikes.", "album_id": "72157594187408667", "photo_flickr_id": "181866941", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40480", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then there were clowns on funny bikes .", "storylet_id": "202401"}], [{"original_text": "After that there were soldiers marching down the street.", "album_id": "72157594187408667", "photo_flickr_id": "181867013", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40480", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that there were soldiers marching down the street .", "storylet_id": "202402"}], [{"original_text": "There was a large red fire truck at the parade.", "album_id": "72157594187408667", "photo_flickr_id": "181867104", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40480", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a large red fire truck at the parade .", "storylet_id": "202403"}], [{"original_text": "Finally there were so cool cars in the parade.", "album_id": "72157594187408667", "photo_flickr_id": "181867214", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40480", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally there were so cool cars in the parade .", "storylet_id": "202404"}], [{"original_text": "The adventure started with a tour of statues", "album_id": "72157594187408667", "photo_flickr_id": "181866882", "setting": "first-2-pick-and-tell", "worker_id": "N0PMWAFE0BQ0PTM", "story_id": "40481", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the adventure started with a tour of statues", "storylet_id": "202405"}], [{"original_text": "this one in particular startled the attendees ", "album_id": "72157594187408667", "photo_flickr_id": "181866901", "setting": "first-2-pick-and-tell", "worker_id": "N0PMWAFE0BQ0PTM", "story_id": "40481", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one in particular startled the attendees", "storylet_id": "202406"}], [{"original_text": "then they went to a building with interesting things inside ", "album_id": "72157594187408667", "photo_flickr_id": "181866941", "setting": "first-2-pick-and-tell", "worker_id": "N0PMWAFE0BQ0PTM", "story_id": "40481", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they went to a building with interesting things inside", "storylet_id": "202407"}], [{"original_text": "the outside of the building proved equally as interesting", "album_id": "72157594187408667", "photo_flickr_id": "181866969", "setting": "first-2-pick-and-tell", "worker_id": "N0PMWAFE0BQ0PTM", "story_id": "40481", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the outside of the building proved equally as interesting", "storylet_id": "202408"}], [{"original_text": "The building with the floating heads were the icing on the cake", "album_id": "72157594187408667", "photo_flickr_id": "181867131", "setting": "first-2-pick-and-tell", "worker_id": "N0PMWAFE0BQ0PTM", "story_id": "40481", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the building with the floating heads were the icing on the cake", "storylet_id": "202409"}], [{"original_text": "The parade was going through main street.", "album_id": "72157594187408667", "photo_flickr_id": "181866882", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "40482", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parade was going through main street .", "storylet_id": "202410"}], [{"original_text": "This highschool band had been preparing their song for a few weeks.", "album_id": "72157594187408667", "photo_flickr_id": "181866901", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "40482", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this highschool band had been preparing their song for a few weeks .", "storylet_id": "202411"}], [{"original_text": "This clown was enjoying showing off his clown talents.", "album_id": "72157594187408667", "photo_flickr_id": "181866941", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "40482", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this clown was enjoying showing off his clown talents .", "storylet_id": "202412"}], [{"original_text": "The civil war soldiers even showed up to re-enact marching. ", "album_id": "72157594187408667", "photo_flickr_id": "181866969", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "40482", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the civil war soldiers even showed up to re-enact marching .", "storylet_id": "202413"}], [{"original_text": "The firefighters brought their firetruck through the parade and everyone had a good time. ", "album_id": "72157594187408667", "photo_flickr_id": "181867131", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "40482", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the firefighters brought their firetruck through the parade and everyone had a good time .", "storylet_id": "202414"}], [{"original_text": "We went to the local parade this weekend.", "album_id": "72157594187408667", "photo_flickr_id": "181866901", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "40483", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the local parade this weekend .", "storylet_id": "202415"}], [{"original_text": "There were funny clowns on mini motorcycles.", "album_id": "72157594187408667", "photo_flickr_id": "181866941", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "40483", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were funny clowns on mini motorcycles .", "storylet_id": "202416"}], [{"original_text": "Our veterans were also represented by a few people.", "album_id": "72157594187408667", "photo_flickr_id": "181867013", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "40483", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our veterans were also represented by a few people .", "storylet_id": "202417"}], [{"original_text": "The local fire department decked out their truck in flags.", "album_id": "72157594187408667", "photo_flickr_id": "181867104", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "40483", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the local fire department decked out their truck in flags .", "storylet_id": "202418"}], [{"original_text": "We had a good time, everyone was happy and all smiles.", "album_id": "72157594187408667", "photo_flickr_id": "181867214", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "40483", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a good time , everyone was happy and all smiles .", "storylet_id": "202419"}], [{"original_text": "There was a parade in this small town today.", "album_id": "72157594187408667", "photo_flickr_id": "181866901", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "40484", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a parade in this small town today .", "storylet_id": "202420"}], [{"original_text": "There was even a clown on a small bike.", "album_id": "72157594187408667", "photo_flickr_id": "181866941", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "40484", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was even a clown on a small bike .", "storylet_id": "202421"}], [{"original_text": "There were soldiers and police cars all over.", "album_id": "72157594187408667", "photo_flickr_id": "181867013", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "40484", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were soldiers and police cars all over .", "storylet_id": "202422"}], [{"original_text": "There was a decorated fire truck as well.", "album_id": "72157594187408667", "photo_flickr_id": "181867104", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "40484", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a decorated fire truck as well .", "storylet_id": "202423"}], [{"original_text": "People were holding American flags.", "album_id": "72157594187408667", "photo_flickr_id": "181867214", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "40484", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people were holding american flags .", "storylet_id": "202424"}], [{"original_text": "The kids were playing with fireworks.", "album_id": "72157594234060064", "photo_flickr_id": "213243079", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40485", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids were playing with fireworks .", "storylet_id": "202425"}], [{"original_text": "The boy put a bottle rocket in the bottle.", "album_id": "72157594234060064", "photo_flickr_id": "213243117", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40485", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boy put a bottle rocket in the bottle .", "storylet_id": "202426"}], [{"original_text": "The other boy was playing with a different kind of firework.", "album_id": "72157594234060064", "photo_flickr_id": "213243141", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40485", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the other boy was playing with a different kind of firework .", "storylet_id": "202427"}], [{"original_text": "It was cone shaped.", "album_id": "72157594234060064", "photo_flickr_id": "213243282", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40485", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was cone shaped .", "storylet_id": "202428"}], [{"original_text": "It let off a large jet of colorful flames.", "album_id": "72157594234060064", "photo_flickr_id": "213243295", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40485", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it let off a large jet of colorful flames .", "storylet_id": "202429"}], [{"original_text": "When the family got together for the 4th of July, the kids had so much fun setting off fireworks. ", "album_id": "72157594234060064", "photo_flickr_id": "213243079", "setting": "first-2-pick-and-tell", "worker_id": "JASGFI8ZJGZ2UMQ", "story_id": "40486", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when the family got together for the 4th of july , the kids had so much fun setting off fireworks .", "storylet_id": "202430"}], [{"original_text": "The kids were so excited when they first saw the wide variety of fireworks. ", "album_id": "72157594234060064", "photo_flickr_id": "213243240", "setting": "first-2-pick-and-tell", "worker_id": "JASGFI8ZJGZ2UMQ", "story_id": "40486", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids were so excited when they first saw the wide variety of fireworks .", "storylet_id": "202431"}], [{"original_text": "This was a cone that they set off that emitted a beautiful show. ", "album_id": "72157594234060064", "photo_flickr_id": "213243314", "setting": "first-2-pick-and-tell", "worker_id": "JASGFI8ZJGZ2UMQ", "story_id": "40486", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was a cone that they set off that emitted a beautiful show .", "storylet_id": "202432"}], [{"original_text": "The parents were hanging out enjoying the festivities at the pool. ", "album_id": "72157594234060064", "photo_flickr_id": "182048582", "setting": "first-2-pick-and-tell", "worker_id": "JASGFI8ZJGZ2UMQ", "story_id": "40486", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the parents were hanging out enjoying the festivities at the pool .", "storylet_id": "202433"}], [{"original_text": "When the kids were done with the fireworks, they enjoyed a night swim to end the exciting night. ", "album_id": "72157594234060064", "photo_flickr_id": "182101957", "setting": "first-2-pick-and-tell", "worker_id": "JASGFI8ZJGZ2UMQ", "story_id": "40486", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the kids were done with the fireworks , they enjoyed a night swim to end the exciting night .", "storylet_id": "202434"}], [{"original_text": "Some of the neighborhood kids came by to watch the fireworks. ", "album_id": "72157594234060064", "photo_flickr_id": "213243079", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "40487", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some of the neighborhood kids came by to watch the fireworks .", "storylet_id": "202435"}], [{"original_text": "One of my friend's kids have fire crackers. ", "album_id": "72157594234060064", "photo_flickr_id": "213243117", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "40487", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of my friend 's kids have fire crackers .", "storylet_id": "202436"}], [{"original_text": "There they go! Everybody run!", "album_id": "72157594234060064", "photo_flickr_id": "213243141", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "40487", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there they go ! everybody run !", "storylet_id": "202437"}], [{"original_text": "Wow they looked so neat on camera.", "album_id": "72157594234060064", "photo_flickr_id": "213243282", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "40487", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "wow they looked so neat on camera .", "storylet_id": "202438"}], [{"original_text": "This shot came out really good. ", "album_id": "72157594234060064", "photo_flickr_id": "213243295", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "40487", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this shot came out really good .", "storylet_id": "202439"}], [{"original_text": "Several children gathered together at their friend's house during the summer to celebrate the 4th of July with small firecrackers.", "album_id": "72157594234060064", "photo_flickr_id": "213243079", "setting": "last-3-pick-old-and-tell", "worker_id": "NFK1JR7DHIBGPLO", "story_id": "40488", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "several children gathered together at their friend 's house during the summer to celebrate the 4th of july with small firecrackers .", "storylet_id": "202440"}], [{"original_text": "They picked from a box of several different fireworks.", "album_id": "72157594234060064", "photo_flickr_id": "213243240", "setting": "last-3-pick-old-and-tell", "worker_id": "NFK1JR7DHIBGPLO", "story_id": "40488", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they picked from a box of several different fireworks .", "storylet_id": "202441"}], [{"original_text": "They set off bottlerockets in the street as the sun set.", "album_id": "72157594234060064", "photo_flickr_id": "213243314", "setting": "last-3-pick-old-and-tell", "worker_id": "NFK1JR7DHIBGPLO", "story_id": "40488", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they set off bottlerockets in the street as the sun set .", "storylet_id": "202442"}], [{"original_text": "Some of the parents gathered in the backyard to supervise other children who wanted to swim.", "album_id": "72157594234060064", "photo_flickr_id": "182048582", "setting": "last-3-pick-old-and-tell", "worker_id": "NFK1JR7DHIBGPLO", "story_id": "40488", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the parents gathered in the backyard to supervise other children who wanted to swim .", "storylet_id": "202443"}], [{"original_text": "They children were having so much fun, they continued to swim well into the evening, after the moon came out.", "album_id": "72157594234060064", "photo_flickr_id": "182101957", "setting": "last-3-pick-old-and-tell", "worker_id": "NFK1JR7DHIBGPLO", "story_id": "40488", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they children were having so much fun , they continued to swim well into the evening , after the moon came out .", "storylet_id": "202444"}], [{"original_text": "The kids gather around the small firework.", "album_id": "72157594234060064", "photo_flickr_id": "213243079", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "40489", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids gather around the small firework .", "storylet_id": "202445"}], [{"original_text": "They look through the box to see what they want to light next.", "album_id": "72157594234060064", "photo_flickr_id": "213243240", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "40489", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they look through the box to see what they want to light next .", "storylet_id": "202446"}], [{"original_text": "This firework sprays sparks everywhere.", "album_id": "72157594234060064", "photo_flickr_id": "213243314", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "40489", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this firework sprays sparks everywhere .", "storylet_id": "202447"}], [{"original_text": "The parents stand on the pool deck and watch the kids swim.", "album_id": "72157594234060064", "photo_flickr_id": "182048582", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "40489", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the parents stand on the pool deck and watch the kids swim .", "storylet_id": "202448"}], [{"original_text": "The night has come and the kids are in the swimming pool.", "album_id": "72157594234060064", "photo_flickr_id": "182101957", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "40489", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night has come and the kids are in the swimming pool .", "storylet_id": "202449"}], [{"original_text": "Today we had our Scottish festival and parade.", "album_id": "72157600650275265", "photo_flickr_id": "721154856", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40490", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we had our scottish festival and parade .", "storylet_id": "202450"}], [{"original_text": "I played the bagpipes as we marched.", "album_id": "72157600650275265", "photo_flickr_id": "721157208", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40490", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i played the bagpipes as we marched .", "storylet_id": "202451"}], [{"original_text": "My friend carried the American flag.", "album_id": "72157600650275265", "photo_flickr_id": "720284567", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40490", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend carried the american flag .", "storylet_id": "202452"}], [{"original_text": "At the end of the day we lit some sparklers.", "album_id": "72157600650275265", "photo_flickr_id": "758130375", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40490", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the end of the day we lit some sparklers .", "storylet_id": "202453"}], [{"original_text": "Then we took photos of the designs they made.", "album_id": "72157600650275265", "photo_flickr_id": "758990096", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40490", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we took photos of the designs they made .", "storylet_id": "202454"}], [{"original_text": "The people had fun at the parade.", "album_id": "72157600650275265", "photo_flickr_id": "758130375", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "40491", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people had fun at the parade .", "storylet_id": "202455"}], [{"original_text": "They waved twirlers around.", "album_id": "72157600650275265", "photo_flickr_id": "758988826", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "40491", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they waved twirlers around .", "storylet_id": "202456"}], [{"original_text": "They marched with signs.", "album_id": "72157600650275265", "photo_flickr_id": "721154856", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "40491", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they marched with signs .", "storylet_id": "202457"}], [{"original_text": "They waved our nation's flag with pride.", "album_id": "72157600650275265", "photo_flickr_id": "720284567", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "40491", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they waved our nation 's flag with pride .", "storylet_id": "202458"}], [{"original_text": "At the end, they cleaned up their supplies.", "album_id": "72157600650275265", "photo_flickr_id": "720147971", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "40491", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , they cleaned up their supplies .", "storylet_id": "202459"}], [{"original_text": "People out walking with a sign in a parade.", "album_id": "72157600650275265", "photo_flickr_id": "721154856", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "40492", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people out walking with a sign in a parade .", "storylet_id": "202460"}], [{"original_text": "A man is playing a instrument while walking down.", "album_id": "72157600650275265", "photo_flickr_id": "721157208", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "40492", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a man is playing a instrument while walking down .", "storylet_id": "202461"}], [{"original_text": "Another man is walking down holding the flag.", "album_id": "72157600650275265", "photo_flickr_id": "720284567", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "40492", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another man is walking down holding the flag .", "storylet_id": "202462"}], [{"original_text": "Then some people are doing sparks fireworks.", "album_id": "72157600650275265", "photo_flickr_id": "758130375", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "40492", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then some people are doing sparks fireworks .", "storylet_id": "202463"}], [{"original_text": "Other people are making designs with their fireworks. ", "album_id": "72157600650275265", "photo_flickr_id": "758990096", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "40492", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "other people are making designs with their fireworks .", "storylet_id": "202464"}], [{"original_text": "I was excited the for the parade today.", "album_id": "72157600650275265", "photo_flickr_id": "721154856", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "40493", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was excited the for the parade today .", "storylet_id": "202465"}], [{"original_text": "I even designed my bestfriends' kilt.", "album_id": "72157600650275265", "photo_flickr_id": "721157208", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "40493", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i even designed my bestfriends ' kilt .", "storylet_id": "202466"}], [{"original_text": "I was so proud to carry the the flag.", "album_id": "72157600650275265", "photo_flickr_id": "720284567", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "40493", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was so proud to carry the the flag .", "storylet_id": "202467"}], [{"original_text": "We couldn't wait to start the fireworks.", "album_id": "72157600650275265", "photo_flickr_id": "758130375", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "40493", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we could n't wait to start the fireworks .", "storylet_id": "202468"}], [{"original_text": "People has a really good time playing with the sparklers.", "album_id": "72157600650275265", "photo_flickr_id": "758990096", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "40493", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people has a really good time playing with the sparklers .", "storylet_id": "202469"}], [{"original_text": "We marched in this years Scottish-American pride parade.", "album_id": "72157600650275265", "photo_flickr_id": "721154856", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "40494", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we marched in this years scottish-american pride parade .", "storylet_id": "202470"}], [{"original_text": "One of us played the bagpipes.", "album_id": "72157600650275265", "photo_flickr_id": "721157208", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "40494", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of us played the bagpipes .", "storylet_id": "202471"}], [{"original_text": "Another friend carried the American flag.", "album_id": "72157600650275265", "photo_flickr_id": "720284567", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "40494", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another friend carried the american flag .", "storylet_id": "202472"}], [{"original_text": "Once night fell, we had a party.", "album_id": "72157600650275265", "photo_flickr_id": "758130375", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "40494", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once night fell , we had a party .", "storylet_id": "202473"}], [{"original_text": "Somebody brought sparklers.", "album_id": "72157600650275265", "photo_flickr_id": "758990096", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "40494", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "somebody brought sparklers .", "storylet_id": "202474"}], [{"original_text": "We had our fire station reunion last weekend.", "album_id": "72157600650711694", "photo_flickr_id": "720272837", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40495", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had our fire station reunion last weekend .", "storylet_id": "202475"}], [{"original_text": "We started the day with a prayer.", "album_id": "72157600650711694", "photo_flickr_id": "720279415", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40495", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started the day with a prayer .", "storylet_id": "202476"}], [{"original_text": "Then we brought out the old firetruck.", "album_id": "72157600650711694", "photo_flickr_id": "721169002", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40495", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we brought out the old firetruck .", "storylet_id": "202477"}], [{"original_text": "The kids loved getting to go inside the truck.", "album_id": "72157600650711694", "photo_flickr_id": "720358365", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40495", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids loved getting to go inside the truck .", "storylet_id": "202478"}], [{"original_text": "A great time was had by all.", "album_id": "72157600650711694", "photo_flickr_id": "720333951", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40495", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a great time was had by all .", "storylet_id": "202479"}], [{"original_text": "Baby Tony looks on as His dad and brother get ready to ride the truck.", "album_id": "72157600650711694", "photo_flickr_id": "721230020", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "40496", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] [male] looks on as his dad and brother get ready to ride the truck .", "storylet_id": "202480"}], [{"original_text": "The firefighters say stop and pause for the Star Spangled Banner before the parade.", "album_id": "72157600650711694", "photo_flickr_id": "721220422", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "40496", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the firefighters say stop and pause for the star spangled banner before the parade .", "storylet_id": "202481"}], [{"original_text": "The firefighters and their children ride the truck for the parade.", "album_id": "72157600650711694", "photo_flickr_id": "720333951", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "40496", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the firefighters and their children ride the truck for the parade .", "storylet_id": "202482"}], [{"original_text": "Katie and Jimmy watch and wave to John on the truck.", "album_id": "72157600650711694", "photo_flickr_id": "720295649", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "40496", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and [male] watch and wave to [male] on the truck .", "storylet_id": "202483"}], [{"original_text": "The firefighters pose for a shot after the parade.", "album_id": "72157600650711694", "photo_flickr_id": "720272837", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "40496", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the firefighters pose for a shot after the parade .", "storylet_id": "202484"}], [{"original_text": "This is my son from last weekend at the parade.", "album_id": "72157600650711694", "photo_flickr_id": "721230020", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "40497", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my son from last weekend at the parade .", "storylet_id": "202485"}], [{"original_text": "The firemen saluted for the National Anthem.", "album_id": "72157600650711694", "photo_flickr_id": "721220422", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "40497", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the firemen saluted for the organization organization .", "storylet_id": "202486"}], [{"original_text": "Here go on the ride! All the kids were excited. ", "album_id": "72157600650711694", "photo_flickr_id": "720333951", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "40497", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here go on the ride ! all the kids were excited .", "storylet_id": "202487"}], [{"original_text": "Here's one boy waving goodbye. See you later!", "album_id": "72157600650711694", "photo_flickr_id": "720295649", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "40497", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's one boy waving goodbye . see you later !", "storylet_id": "202488"}], [{"original_text": "Here's the whole firefighters crew. ", "album_id": "72157600650711694", "photo_flickr_id": "720272837", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "40497", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's the whole firefighters crew .", "storylet_id": "202489"}], [{"original_text": "Everyone came out today, ", "album_id": "72157600650711694", "photo_flickr_id": "721230020", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "40498", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone came out today ,", "storylet_id": "202490"}], [{"original_text": "for the annual festival.", "album_id": "72157600650711694", "photo_flickr_id": "721220422", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "40498", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "for the annual festival .", "storylet_id": "202491"}], [{"original_text": "The family's were ready to celebrate together. ", "album_id": "72157600650711694", "photo_flickr_id": "720333951", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "40498", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family 's were ready to celebrate together .", "storylet_id": "202492"}], [{"original_text": "Everyone wore their blue and red and white stripes. ", "album_id": "72157600650711694", "photo_flickr_id": "720295649", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "40498", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone wore their blue and red and white stripes .", "storylet_id": "202493"}], [{"original_text": "The crew had a great time together. ", "album_id": "72157600650711694", "photo_flickr_id": "720272837", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "40498", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the crew had a great time together .", "storylet_id": "202494"}], [{"original_text": "Before the firefighter's family fair, the unit gathered for a group photo.", "album_id": "72157600650711694", "photo_flickr_id": "720272837", "setting": "last-3-pick-old-and-tell", "worker_id": "DI1NOM0EZFTVZP3", "story_id": "40499", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before the firefighter 's family fair , the unit gathered for a group photo .", "storylet_id": "202495"}], [{"original_text": "After the photo, fair responsibilities were assigned. ", "album_id": "72157600650711694", "photo_flickr_id": "720279415", "setting": "last-3-pick-old-and-tell", "worker_id": "DI1NOM0EZFTVZP3", "story_id": "40499", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after the photo , fair responsibilities were assigned .", "storylet_id": "202496"}], [{"original_text": "It was my job to take kids on a quick drive in the fire engine.", "album_id": "72157600650711694", "photo_flickr_id": "721169002", "setting": "last-3-pick-old-and-tell", "worker_id": "DI1NOM0EZFTVZP3", "story_id": "40499", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was my job to take kids on a quick drive in the fire engine .", "storylet_id": "202497"}], [{"original_text": "My daughters relaxed inside with some gear.", "album_id": "72157600650711694", "photo_flickr_id": "720358365", "setting": "last-3-pick-old-and-tell", "worker_id": "DI1NOM0EZFTVZP3", "story_id": "40499", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my daughters relaxed inside with some gear .", "storylet_id": "202498"}], [{"original_text": "Outside, fathers and sons took a seat on a stack of fire hoses.", "album_id": "72157600650711694", "photo_flickr_id": "720333951", "setting": "last-3-pick-old-and-tell", "worker_id": "DI1NOM0EZFTVZP3", "story_id": "40499", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "outside , fathers and sons took a seat on a stack of fire hoses .", "storylet_id": "202499"}], [{"original_text": "We were ready for our annual get together.", "album_id": "72157600652875158", "photo_flickr_id": "721591745", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40500", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were ready for our annual get together .", "storylet_id": "202500"}], [{"original_text": "A lot if friends showed up.", "album_id": "72157600652875158", "photo_flickr_id": "721598385", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40500", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot if friends showed up .", "storylet_id": "202501"}], [{"original_text": "The food was prepared.", "album_id": "72157600652875158", "photo_flickr_id": "721594867", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40500", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food was prepared .", "storylet_id": "202502"}], [{"original_text": "The drinks were mixed.", "album_id": "72157600652875158", "photo_flickr_id": "721593897", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40500", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the drinks were mixed .", "storylet_id": "202503"}], [{"original_text": "Then we danced the night away.", "album_id": "72157600652875158", "photo_flickr_id": "722482102", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40500", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we danced the night away .", "storylet_id": "202504"}], [{"original_text": "A bunch of us went to a party.", "album_id": "72157600652875158", "photo_flickr_id": "721591745", "setting": "first-2-pick-and-tell", "worker_id": "G88ZDHQI0FAL2D7", "story_id": "40501", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a bunch of us went to a party .", "storylet_id": "202505"}], [{"original_text": "These two dorks wore the same shirt.", "album_id": "72157600652875158", "photo_flickr_id": "722466596", "setting": "first-2-pick-and-tell", "worker_id": "G88ZDHQI0FAL2D7", "story_id": "40501", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these two dorks wore the same shirt .", "storylet_id": "202506"}], [{"original_text": "Here's the alcoholic of the group.", "album_id": "72157600652875158", "photo_flickr_id": "721593423", "setting": "first-2-pick-and-tell", "worker_id": "G88ZDHQI0FAL2D7", "story_id": "40501", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's the alcoholic of the group .", "storylet_id": "202507"}], [{"original_text": "Alcohol and fire do not mix.", "album_id": "72157600652875158", "photo_flickr_id": "721594867", "setting": "first-2-pick-and-tell", "worker_id": "G88ZDHQI0FAL2D7", "story_id": "40501", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "alcohol and fire do not mix .", "storylet_id": "202508"}], [{"original_text": "Alcohol and cameras don't mix either, you get blurry pics.", "album_id": "72157600652875158", "photo_flickr_id": "721600769", "setting": "first-2-pick-and-tell", "worker_id": "G88ZDHQI0FAL2D7", "story_id": "40501", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "alcohol and cameras do n't mix either , you get blurry pics .", "storylet_id": "202509"}], [{"original_text": "My group of friends and I had a party!", "album_id": "72157600652875158", "photo_flickr_id": "721591745", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40502", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my group of friends and i had a party !", "storylet_id": "202510"}], [{"original_text": "There was plenty of dancing!", "album_id": "72157600652875158", "photo_flickr_id": "721598385", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40502", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was plenty of dancing !", "storylet_id": "202511"}], [{"original_text": "We also had food, which the guys decided to cook on the burners.", "album_id": "72157600652875158", "photo_flickr_id": "721594867", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40502", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also had food , which the guys decided to cook on the burners .", "storylet_id": "202512"}], [{"original_text": "I was in charge of mixing the drinks!", "album_id": "72157600652875158", "photo_flickr_id": "721593897", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40502", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was in charge of mixing the drinks !", "storylet_id": "202513"}], [{"original_text": "Everyone else was busy dancing in the living room!", "album_id": "72157600652875158", "photo_flickr_id": "722482102", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40502", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone else was busy dancing in the living room !", "storylet_id": "202514"}], [{"original_text": "Friends having fun at the party.", "album_id": "72157600652875158", "photo_flickr_id": "721591745", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40503", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends having fun at the party .", "storylet_id": "202515"}], [{"original_text": "Dancing in the living room.", "album_id": "72157600652875158", "photo_flickr_id": "721598385", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40503", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dancing in the living room .", "storylet_id": "202516"}], [{"original_text": "Then they prepared a snack.", "album_id": "72157600652875158", "photo_flickr_id": "721594867", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40503", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they prepared a snack .", "storylet_id": "202517"}], [{"original_text": "And blended drinks.", "album_id": "72157600652875158", "photo_flickr_id": "721593897", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40503", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and blended drinks .", "storylet_id": "202518"}], [{"original_text": "And they went back dancing.", "album_id": "72157600652875158", "photo_flickr_id": "722482102", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40503", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they went back dancing .", "storylet_id": "202519"}], [{"original_text": "I held a party at my apartment today.", "album_id": "72157600652875158", "photo_flickr_id": "721591745", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "40504", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i held a party at my apartment today .", "storylet_id": "202520"}], [{"original_text": "Many of my friends and family arrived.", "album_id": "72157600652875158", "photo_flickr_id": "721598385", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "40504", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of my friends and family arrived .", "storylet_id": "202521"}], [{"original_text": "We took the time to make some food together.", "album_id": "72157600652875158", "photo_flickr_id": "721594867", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "40504", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took the time to make some food together .", "storylet_id": "202522"}], [{"original_text": "We even had some brewed beer to serve.", "album_id": "72157600652875158", "photo_flickr_id": "721593897", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "40504", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even had some brewed beer to serve .", "storylet_id": "202523"}], [{"original_text": "Overall, everyone had an amazing day.", "album_id": "72157600652875158", "photo_flickr_id": "722482102", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "40504", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall , everyone had an amazing day .", "storylet_id": "202524"}], [{"original_text": "The little girl got a hold of the garden hose.", "album_id": "72157600654732083", "photo_flickr_id": "722889351", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40505", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the little girl got a hold of the garden hose .", "storylet_id": "202525"}], [{"original_text": "Uh oh, what will she do. She's already spraying ii.", "album_id": "72157600654732083", "photo_flickr_id": "723761948", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40505", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "uh oh , what will she do . she 's already spraying ii .", "storylet_id": "202526"}], [{"original_text": "She started spraying the glass door.", "album_id": "72157600654732083", "photo_flickr_id": "722890243", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40505", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she started spraying the glass door .", "storylet_id": "202527"}], [{"original_text": "Then she sprayed some plants.", "album_id": "72157600654732083", "photo_flickr_id": "723762726", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40505", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then she sprayed some plants .", "storylet_id": "202528"}], [{"original_text": "She went back spraying the door trying to get the person on the other side.", "album_id": "72157600654732083", "photo_flickr_id": "723762938", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40505", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she went back spraying the door trying to get the person on the other side .", "storylet_id": "202529"}], [{"original_text": "Today my family wanted to play outside, the AC was broken and the hose outside provided us with a cooling mist.", "album_id": "72157600654732083", "photo_flickr_id": "722889351", "setting": "first-2-pick-and-tell", "worker_id": "OV0Q8MU89VAME66", "story_id": "40506", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today my family wanted to play outside , the organization was broken and the hose outside provided us with a cooling mist .", "storylet_id": "202530"}], [{"original_text": "My mom thought it was so cute when i ran around \"cooling\" everyone with the hose.", "album_id": "72157600654732083", "photo_flickr_id": "722891599", "setting": "first-2-pick-and-tell", "worker_id": "OV0Q8MU89VAME66", "story_id": "40506", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my mom thought it was so cute when i ran around `` cooling '' everyone with the hose .", "storylet_id": "202531"}], [{"original_text": "My dad and my mom move the couch outside so granny could sit. She couldn't stand for long but she played with me as best as she could.", "album_id": "72157600654732083", "photo_flickr_id": "722892459", "setting": "first-2-pick-and-tell", "worker_id": "OV0Q8MU89VAME66", "story_id": "40506", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my dad and my mom move the couch outside so granny could sit . she could n't stand for long but she played with me as best as she could .", "storylet_id": "202532"}], [{"original_text": "I love being outside. I especially love when my sis pushes the swing for me!", "album_id": "72157600654732083", "photo_flickr_id": "722892963", "setting": "first-2-pick-and-tell", "worker_id": "OV0Q8MU89VAME66", "story_id": "40506", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love being outside . i especially love when my sis pushes the swing for me !", "storylet_id": "202533"}], [{"original_text": "After a long day we drove granny back to her own home, she wasn't able to drive due to her bad knee... ", "album_id": "72157600654732083", "photo_flickr_id": "723766974", "setting": "first-2-pick-and-tell", "worker_id": "OV0Q8MU89VAME66", "story_id": "40506", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long day we drove granny back to her own home , she was n't able to drive due to her bad knee ...", "storylet_id": "202534"}], [{"original_text": "My little niece came to visit last week.", "album_id": "72157600654732083", "photo_flickr_id": "722889351", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "40507", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my little niece came to visit last week .", "storylet_id": "202535"}], [{"original_text": "Her mom was looking good as she always does.", "album_id": "72157600654732083", "photo_flickr_id": "722891599", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "40507", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her mom was looking good as she always does .", "storylet_id": "202536"}], [{"original_text": "I had a blast playing ball with her.", "album_id": "72157600654732083", "photo_flickr_id": "722892459", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "40507", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a blast playing ball with her .", "storylet_id": "202537"}], [{"original_text": "When we put her in the indoor swing she became very excited.", "album_id": "72157600654732083", "photo_flickr_id": "722892963", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "40507", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we put her in the indoor swing she became very excited .", "storylet_id": "202538"}], [{"original_text": "The road was gloomy as they headed back home.", "album_id": "72157600654732083", "photo_flickr_id": "723766974", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "40507", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the road was gloomy as they headed back home .", "storylet_id": "202539"}], [{"original_text": "girl is holding a water hose in hands", "album_id": "72157600654732083", "photo_flickr_id": "722889351", "setting": "last-3-pick-old-and-tell", "worker_id": "0WDDXNS8V8GMM6L", "story_id": "40508", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "girl is holding a water hose in hands", "storylet_id": "202540"}], [{"original_text": "and is now turning the water on ", "album_id": "72157600654732083", "photo_flickr_id": "723761948", "setting": "last-3-pick-old-and-tell", "worker_id": "0WDDXNS8V8GMM6L", "story_id": "40508", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and is now turning the water on", "storylet_id": "202541"}], [{"original_text": " she is using it to cleaning the glass door ", "album_id": "72157600654732083", "photo_flickr_id": "722890243", "setting": "last-3-pick-old-and-tell", "worker_id": "0WDDXNS8V8GMM6L", "story_id": "40508", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she is using it to cleaning the glass door", "storylet_id": "202542"}], [{"original_text": "I believe she is suppose to water the pot behind her. ", "album_id": "72157600654732083", "photo_flickr_id": "723762726", "setting": "last-3-pick-old-and-tell", "worker_id": "0WDDXNS8V8GMM6L", "story_id": "40508", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i believe she is suppose to water the pot behind her .", "storylet_id": "202543"}], [{"original_text": "now she's cleaning the whole window", "album_id": "72157600654732083", "photo_flickr_id": "723762938", "setting": "last-3-pick-old-and-tell", "worker_id": "0WDDXNS8V8GMM6L", "story_id": "40508", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now she 's cleaning the whole window", "storylet_id": "202544"}], [{"original_text": "A young girl plays with a hose.", "album_id": "72157600654732083", "photo_flickr_id": "722889351", "setting": "last-3-pick-old-and-tell", "worker_id": "CMH4NKRJ0V83ITW", "story_id": "40509", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a young girl plays with a hose .", "storylet_id": "202545"}], [{"original_text": "This is her mother.", "album_id": "72157600654732083", "photo_flickr_id": "722891599", "setting": "last-3-pick-old-and-tell", "worker_id": "CMH4NKRJ0V83ITW", "story_id": "40509", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is her mother .", "storylet_id": "202546"}], [{"original_text": "Her grandmother plays ball with her brother.", "album_id": "72157600654732083", "photo_flickr_id": "722892459", "setting": "last-3-pick-old-and-tell", "worker_id": "CMH4NKRJ0V83ITW", "story_id": "40509", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her grandmother plays ball with her brother .", "storylet_id": "202547"}], [{"original_text": "The boy is now on the swing being pushed my his older cousin.", "album_id": "72157600654732083", "photo_flickr_id": "722892963", "setting": "last-3-pick-old-and-tell", "worker_id": "CMH4NKRJ0V83ITW", "story_id": "40509", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boy is now on the swing being pushed my his older cousin .", "storylet_id": "202548"}], [{"original_text": "Grandmother is now driving home after a day of visiting with her family.", "album_id": "72157600654732083", "photo_flickr_id": "723766974", "setting": "last-3-pick-old-and-tell", "worker_id": "CMH4NKRJ0V83ITW", "story_id": "40509", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandmother is now driving home after a day of visiting with her family .", "storylet_id": "202549"}], [{"original_text": "The city hosted an annual 4th of July parade.", "album_id": "72157594269296716", "photo_flickr_id": "234381129", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40510", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city hosted an annual 4th of july parade .", "storylet_id": "202550"}], [{"original_text": "A fire truck passed by watering the crowd to not suffer from the hot weather.", "album_id": "72157594269296716", "photo_flickr_id": "234381359", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40510", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a fire truck passed by watering the crowd to not suffer from the hot weather .", "storylet_id": "202551"}], [{"original_text": "A few friends met up with us at the parade.", "album_id": "72157594269296716", "photo_flickr_id": "234381816", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40510", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few friends met up with us at the parade .", "storylet_id": "202552"}], [{"original_text": "After the parade, we decided to have a party at our house.", "album_id": "72157594269296716", "photo_flickr_id": "234382398", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40510", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the parade , we decided to have a party at our house .", "storylet_id": "202553"}], [{"original_text": "At night, we were able to see the fireworks show. ", "album_id": "72157594269296716", "photo_flickr_id": "234382583", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40510", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night , we were able to see the fireworks show .", "storylet_id": "202554"}], [{"original_text": "My first motorcycle trip took me through Colorado.", "album_id": "72157594269296716", "photo_flickr_id": "234380696", "setting": "first-2-pick-and-tell", "worker_id": "PXQ8EWCYMFLGDP4", "story_id": "40511", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my first motorcycle trip took me through location .", "storylet_id": "202555"}], [{"original_text": "I went through a town that was having a celebration for the holiday weekend.", "album_id": "72157594269296716", "photo_flickr_id": "234381129", "setting": "first-2-pick-and-tell", "worker_id": "PXQ8EWCYMFLGDP4", "story_id": "40511", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went through a town that was having a celebration for the holiday weekend .", "storylet_id": "202556"}], [{"original_text": "It got too out of hand and the fire department was called to clear the streets.", "album_id": "72157594269296716", "photo_flickr_id": "234381359", "setting": "first-2-pick-and-tell", "worker_id": "PXQ8EWCYMFLGDP4", "story_id": "40511", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it got too out of hand and the fire department was called to clear the streets .", "storylet_id": "202557"}], [{"original_text": "I took that as my cue to head out and go back to the hacienda.", "album_id": "72157594269296716", "photo_flickr_id": "234382235", "setting": "first-2-pick-and-tell", "worker_id": "PXQ8EWCYMFLGDP4", "story_id": "40511", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i took that as my cue to head out and go back to the hacienda .", "storylet_id": "202558"}], [{"original_text": "Where I met up with my fellow bikers to plan our next road trip. ", "album_id": "72157594269296716", "photo_flickr_id": "234382312", "setting": "first-2-pick-and-tell", "worker_id": "PXQ8EWCYMFLGDP4", "story_id": "40511", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "where i met up with my fellow bikers to plan our next road trip .", "storylet_id": "202559"}], [{"original_text": "There was a parade going on.", "album_id": "72157594269296716", "photo_flickr_id": "234381129", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40512", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a parade going on .", "storylet_id": "202560"}], [{"original_text": "The first thing up was a fire truck.", "album_id": "72157594269296716", "photo_flickr_id": "234381359", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40512", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first thing up was a fire truck .", "storylet_id": "202561"}], [{"original_text": "A man watched on.", "album_id": "72157594269296716", "photo_flickr_id": "234381816", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40512", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man watched on .", "storylet_id": "202562"}], [{"original_text": "Later on there was a street party.", "album_id": "72157594269296716", "photo_flickr_id": "234382398", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40512", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later on there was a street party .", "storylet_id": "202563"}], [{"original_text": "It ended with a big fireworks show.", "album_id": "72157594269296716", "photo_flickr_id": "234382583", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40512", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it ended with a big fireworks show .", "storylet_id": "202564"}], [{"original_text": "The Fourth of July this year was a blast!", "album_id": "72157594269296716", "photo_flickr_id": "234381129", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "40513", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fourth of july this year was a blast !", "storylet_id": "202565"}], [{"original_text": "There was a parade, complete with firetruck!", "album_id": "72157594269296716", "photo_flickr_id": "234381359", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "40513", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a parade , complete with firetruck !", "storylet_id": "202566"}], [{"original_text": "Everyone was there.", "album_id": "72157594269296716", "photo_flickr_id": "234381816", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "40513", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was there .", "storylet_id": "202567"}], [{"original_text": "Afterwards, we had a party.", "album_id": "72157594269296716", "photo_flickr_id": "234382398", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "40513", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards , we had a party .", "storylet_id": "202568"}], [{"original_text": "And of course, there were fireworks!", "album_id": "72157594269296716", "photo_flickr_id": "234382583", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "40513", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and of course , there were fireworks !", "storylet_id": "202569"}], [{"original_text": "The people are gathering for the parade.", "album_id": "72157594269296716", "photo_flickr_id": "234381129", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40514", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people are gathering for the parade .", "storylet_id": "202570"}], [{"original_text": "The fire truck is coming through.", "album_id": "72157594269296716", "photo_flickr_id": "234381359", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40514", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fire truck is coming through .", "storylet_id": "202571"}], [{"original_text": "The parade is over.", "album_id": "72157594269296716", "photo_flickr_id": "234381816", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40514", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the parade is over .", "storylet_id": "202572"}], [{"original_text": "They are celebrating independence day together.", "album_id": "72157594269296716", "photo_flickr_id": "234382398", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40514", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they are celebrating independence day together .", "storylet_id": "202573"}], [{"original_text": "and later fired fireworks in the sky.", "album_id": "72157594269296716", "photo_flickr_id": "234382583", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40514", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and later fired fireworks in the sky .", "storylet_id": "202574"}], [{"original_text": "There were a lot of fireworks that night.", "album_id": "72157605992804699", "photo_flickr_id": "2638462487", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40515", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of fireworks that night .", "storylet_id": "202575"}], [{"original_text": "Some of them were single colored.", "album_id": "72157605992804699", "photo_flickr_id": "2638459839", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40515", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of them were single colored .", "storylet_id": "202576"}], [{"original_text": "Others were multi colored.", "album_id": "72157605992804699", "photo_flickr_id": "2638462417", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40515", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others were multi colored .", "storylet_id": "202577"}], [{"original_text": "Some of them were very bright.", "album_id": "72157605992804699", "photo_flickr_id": "2638459931", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40515", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of them were very bright .", "storylet_id": "202578"}], [{"original_text": "Others made huge explosions.", "album_id": "72157605992804699", "photo_flickr_id": "2638460957", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40515", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "others made huge explosions .", "storylet_id": "202579"}], [{"original_text": "The July 4th fireworks show is always fun to watch.", "album_id": "72157605992804699", "photo_flickr_id": "2639291000", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "40516", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the july 4th fireworks show is always fun to watch .", "storylet_id": "202580"}], [{"original_text": "Thousands of people show up to see the show.", "album_id": "72157605992804699", "photo_flickr_id": "2638460683", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "40516", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "thousands of people show up to see the show .", "storylet_id": "202581"}], [{"original_text": "There is usually a nice variety of fireworks.", "album_id": "72157605992804699", "photo_flickr_id": "2639290060", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "40516", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is usually a nice variety of fireworks .", "storylet_id": "202582"}], [{"original_text": "The music that accompanies the show is also nice.", "album_id": "72157605992804699", "photo_flickr_id": "2639292130", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "40516", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the music that accompanies the show is also nice .", "storylet_id": "202583"}], [{"original_text": "The finale is always our favorite part of the night.", "album_id": "72157605992804699", "photo_flickr_id": "2638460359", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "40516", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finale is always our favorite part of the night .", "storylet_id": "202584"}], [{"original_text": "The fireworks show started on the ground.", "album_id": "72157605992804699", "photo_flickr_id": "2638462487", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "40517", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fireworks show started on the ground .", "storylet_id": "202585"}], [{"original_text": "They then put off some colorful ones in the sky.", "album_id": "72157605992804699", "photo_flickr_id": "2638459839", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "40517", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they then put off some colorful ones in the sky .", "storylet_id": "202586"}], [{"original_text": "Some were very large.", "album_id": "72157605992804699", "photo_flickr_id": "2638462417", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "40517", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some were very large .", "storylet_id": "202587"}], [{"original_text": "Some were very bright. ", "album_id": "72157605992804699", "photo_flickr_id": "2638459931", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "40517", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some were very bright .", "storylet_id": "202588"}], [{"original_text": "They were all very pretty.", "album_id": "72157605992804699", "photo_flickr_id": "2638460957", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "40517", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were all very pretty .", "storylet_id": "202589"}], [{"original_text": "someone in my neighborhood decided to shoot off some fireworks", "album_id": "72157605992804699", "photo_flickr_id": "2638462487", "setting": "last-3-pick-old-and-tell", "worker_id": "VUN8GF9XFZ5U5JZ", "story_id": "40518", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "someone in my neighborhood decided to shoot off some fireworks", "storylet_id": "202590"}], [{"original_text": "they were really pretty but they were very loud", "album_id": "72157605992804699", "photo_flickr_id": "2638459839", "setting": "last-3-pick-old-and-tell", "worker_id": "VUN8GF9XFZ5U5JZ", "story_id": "40518", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were really pretty but they were very loud", "storylet_id": "202591"}], [{"original_text": "my dog got very upset because of the noise", "album_id": "72157605992804699", "photo_flickr_id": "2638462417", "setting": "last-3-pick-old-and-tell", "worker_id": "VUN8GF9XFZ5U5JZ", "story_id": "40518", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my dog got very upset because of the noise", "storylet_id": "202592"}], [{"original_text": "I tried to tell my dog that these fireworks were pretty and to ignore the noise", "album_id": "72157605992804699", "photo_flickr_id": "2638459931", "setting": "last-3-pick-old-and-tell", "worker_id": "VUN8GF9XFZ5U5JZ", "story_id": "40518", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i tried to tell my dog that these fireworks were pretty and to ignore the noise", "storylet_id": "202593"}], [{"original_text": "I really enjoyed the fireworks even though my dog did not. ", "album_id": "72157605992804699", "photo_flickr_id": "2638460957", "setting": "last-3-pick-old-and-tell", "worker_id": "VUN8GF9XFZ5U5JZ", "story_id": "40518", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i really enjoyed the fireworks even though my dog did not .", "storylet_id": "202594"}], [{"original_text": "This was last 4th of July when we went to a fireworks show.", "album_id": "72157605992804699", "photo_flickr_id": "2638462487", "setting": "last-3-pick-old-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "40519", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was last 4th of july when we went to a fireworks show .", "storylet_id": "202595"}], [{"original_text": "They started off with these smaller ones that were very colorful.", "album_id": "72157605992804699", "photo_flickr_id": "2638459839", "setting": "last-3-pick-old-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "40519", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they started off with these smaller ones that were very colorful .", "storylet_id": "202596"}], [{"original_text": "Then the really big ones started coming out.", "album_id": "72157605992804699", "photo_flickr_id": "2638462417", "setting": "last-3-pick-old-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "40519", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the really big ones started coming out .", "storylet_id": "202597"}], [{"original_text": "It seemed like the whole sky was lit up at times.", "album_id": "72157605992804699", "photo_flickr_id": "2638459931", "setting": "last-3-pick-old-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "40519", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it seemed like the whole sky was lit up at times .", "storylet_id": "202598"}], [{"original_text": "This was the grand finale that really made it a spectacular night.", "album_id": "72157605992804699", "photo_flickr_id": "2638460957", "setting": "last-3-pick-old-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "40519", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the grand finale that really made it a spectacular night .", "storylet_id": "202599"}], [{"original_text": "It was time for our family reunion at Mom and Dad's.", "album_id": "72157600691710127", "photo_flickr_id": "742574323", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40520", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was time for our family reunion at mom and dad 's .", "storylet_id": "202600"}], [{"original_text": "The girl's arrived first and were ready to tan.", "album_id": "72157600691710127", "photo_flickr_id": "742628413", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40520", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girl 's arrived first and were ready to tan .", "storylet_id": "202601"}], [{"original_text": "Then the boys showed up with the beer.", "album_id": "72157600691710127", "photo_flickr_id": "742584521", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40520", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the boys showed up with the beer .", "storylet_id": "202602"}], [{"original_text": "We swam most of the afternoon.", "album_id": "72157600691710127", "photo_flickr_id": "742618535", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40520", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we swam most of the afternoon .", "storylet_id": "202603"}], [{"original_text": "Then we played poker into the wee hours of the morning.", "album_id": "72157600691710127", "photo_flickr_id": "743433008", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40520", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we played poker into the wee hours of the morning .", "storylet_id": "202604"}], [{"original_text": "The pool party was a fun tradition.", "album_id": "72157600691710127", "photo_flickr_id": "742613483", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "40521", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the pool party was a fun tradition .", "storylet_id": "202605"}], [{"original_text": "All of our friends would gather to swim and have a good time.", "album_id": "72157600691710127", "photo_flickr_id": "742628413", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "40521", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of our friends would gather to swim and have a good time .", "storylet_id": "202606"}], [{"original_text": "the boys started drinking alot.", "album_id": "72157600691710127", "photo_flickr_id": "742584521", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "40521", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boys started drinking alot .", "storylet_id": "202607"}], [{"original_text": "They drank too much and ended up kissing.", "album_id": "72157600691710127", "photo_flickr_id": "742589253", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "40521", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they drank too much and ended up kissing .", "storylet_id": "202608"}], [{"original_text": "The night ended with a friendly poker game.", "album_id": "72157600691710127", "photo_flickr_id": "743433008", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "40521", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night ended with a friendly poker game .", "storylet_id": "202609"}], [{"original_text": "All ready for a nice summer cook out and swim! Mom, Dad and daughter.", "album_id": "72157600691710127", "photo_flickr_id": "742574323", "setting": "last-3-pick-old-and-tell", "worker_id": "HWYU2JXLJIXZN3I", "story_id": "40522", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all ready for a nice summer cook out and swim ! mom , dad and daughter .", "storylet_id": "202610"}], [{"original_text": "Lots of girls ready to hit the water and get some sun!", "album_id": "72157600691710127", "photo_flickr_id": "742628413", "setting": "last-3-pick-old-and-tell", "worker_id": "HWYU2JXLJIXZN3I", "story_id": "40522", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of girls ready to hit the water and get some sun !", "storylet_id": "202611"}], [{"original_text": "We cant forget the guys! I bet they are eager to hit the water after them nice cold brews.", "album_id": "72157600691710127", "photo_flickr_id": "742584521", "setting": "last-3-pick-old-and-tell", "worker_id": "HWYU2JXLJIXZN3I", "story_id": "40522", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we cant forget the guys ! i bet they are eager to hit the water after them nice cold brews .", "storylet_id": "202612"}], [{"original_text": "These 2 are having a blast playing dodge ball in the pool. ", "album_id": "72157600691710127", "photo_flickr_id": "742618535", "setting": "last-3-pick-old-and-tell", "worker_id": "HWYU2JXLJIXZN3I", "story_id": "40522", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these 2 are having a blast playing dodge ball in the pool .", "storylet_id": "202613"}], [{"original_text": "After the nice pool party and cookout, the family and friends ended the night with a intense game of poker.", "album_id": "72157600691710127", "photo_flickr_id": "743433008", "setting": "last-3-pick-old-and-tell", "worker_id": "HWYU2JXLJIXZN3I", "story_id": "40522", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the nice pool party and cookout , the family and friends ended the night with a intense game of poker .", "storylet_id": "202614"}], [{"original_text": "Uncle Dan went around with his weird mustache and glasses and took pics with everyone. ", "album_id": "72157600691710127", "photo_flickr_id": "742574323", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "40523", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "uncle [male] went around with his weird mustache and glasses and took pics with everyone .", "storylet_id": "202615"}], [{"original_text": "My sisters, both biological and foster came to the party. ", "album_id": "72157600691710127", "photo_flickr_id": "742628413", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "40523", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my sisters , both biological and foster came to the party .", "storylet_id": "202616"}], [{"original_text": "Two of my brothers also came, we had a rather large immediate family. ", "album_id": "72157600691710127", "photo_flickr_id": "742584521", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "40523", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two of my brothers also came , we had a rather large immediate family .", "storylet_id": "202617"}], [{"original_text": "We played pool volleyball which is definitely not my forte. ", "album_id": "72157600691710127", "photo_flickr_id": "742618535", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "40523", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we played pool volleyball which is definitely not my forte .", "storylet_id": "202618"}], [{"original_text": "However, high stakes poker is; I cleaned all these suckers out.", "album_id": "72157600691710127", "photo_flickr_id": "743433008", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "40523", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , high stakes poker is ; i cleaned all these suckers out .", "storylet_id": "202619"}], [{"original_text": "Always great when we can shoot some hoops in the pool.", "album_id": "72157600691710127", "photo_flickr_id": "742613483", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40524", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "always great when we can shoot some hoops in the pool .", "storylet_id": "202620"}], [{"original_text": "All the girls taking a great picture.", "album_id": "72157600691710127", "photo_flickr_id": "742628413", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40524", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the girls taking a great picture .", "storylet_id": "202621"}], [{"original_text": "And the guys return in kind", "album_id": "72157600691710127", "photo_flickr_id": "742584521", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40524", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the guys return in kind", "storylet_id": "202622"}], [{"original_text": "The guys are always being silly", "album_id": "72157600691710127", "photo_flickr_id": "742589253", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40524", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guys are always being silly", "storylet_id": "202623"}], [{"original_text": "After the pool, it's time for some poker", "album_id": "72157600691710127", "photo_flickr_id": "743433008", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40524", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the pool , it 's time for some poker", "storylet_id": "202624"}], [{"original_text": "We work hard at preparing our night's festivities.", "album_id": "72157594192023605", "photo_flickr_id": "184952541", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40525", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we work hard at preparing our night 's festivities .", "storylet_id": "202625"}], [{"original_text": "Even as the city in the distance begins their own show, we are working.", "album_id": "72157594192023605", "photo_flickr_id": "184958561", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40525", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even as the city in the distance begins their own show , we are working .", "storylet_id": "202626"}], [{"original_text": "Having set up our own entertainment, we start.", "album_id": "72157594192023605", "photo_flickr_id": "184968319", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40525", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "having set up our own entertainment , we start .", "storylet_id": "202627"}], [{"original_text": "Most watch the techniques being used with wry amusement, and plan their own strategies.", "album_id": "72157594192023605", "photo_flickr_id": "184969230", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40525", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "most watch the techniques being used with wry amusement , and plan their own strategies .", "storylet_id": "202628"}], [{"original_text": "Some experiments are more successful than others.", "album_id": "72157594192023605", "photo_flickr_id": "184969707", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40525", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some experiments are more successful than others .", "storylet_id": "202629"}], [{"original_text": "We waited for the sun to go down to see the fireworks.", "album_id": "72157594192023605", "photo_flickr_id": "184954004", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40526", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we waited for the sun to go down to see the fireworks .", "storylet_id": "202630"}], [{"original_text": "First, we lit some sparklers and waved them around.", "album_id": "72157594192023605", "photo_flickr_id": "184964524", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40526", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first , we lit some sparklers and waved them around .", "storylet_id": "202631"}], [{"original_text": "Then we got to see the fireworks going off over the city.", "album_id": "72157594192023605", "photo_flickr_id": "184954090", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40526", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we got to see the fireworks going off over the city .", "storylet_id": "202632"}], [{"original_text": "We saw different shapes and colors in the sky.", "album_id": "72157594192023605", "photo_flickr_id": "184957188", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40526", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw different shapes and colors in the sky .", "storylet_id": "202633"}], [{"original_text": "After that we mixed soda and Mentos to watch it shoot into the air.", "album_id": "72157594192023605", "photo_flickr_id": "184969707", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40526", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that we mixed soda and mentos to watch it shoot into the air .", "storylet_id": "202634"}], [{"original_text": "Two men set up a firecracker outside", "album_id": "72157594192023605", "photo_flickr_id": "184952541", "setting": "last-3-pick-old-and-tell", "worker_id": "WQD7VHB9KXYWHFU", "story_id": "40527", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two men set up a firecracker outside", "storylet_id": "202635"}], [{"original_text": "on the fourth of July in a big city", "album_id": "72157594192023605", "photo_flickr_id": "184958561", "setting": "last-3-pick-old-and-tell", "worker_id": "WQD7VHB9KXYWHFU", "story_id": "40527", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on the fourth of july in a big city", "storylet_id": "202636"}], [{"original_text": "They watch the fireworks go off", "album_id": "72157594192023605", "photo_flickr_id": "184968319", "setting": "last-3-pick-old-and-tell", "worker_id": "WQD7VHB9KXYWHFU", "story_id": "40527", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they watch the fireworks go off", "storylet_id": "202637"}], [{"original_text": "Then head inside for some partying", "album_id": "72157594192023605", "photo_flickr_id": "184969230", "setting": "last-3-pick-old-and-tell", "worker_id": "WQD7VHB9KXYWHFU", "story_id": "40527", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then head inside for some partying", "storylet_id": "202638"}], [{"original_text": "After some partying they go outside and have some more fun with fireworks", "album_id": "72157594192023605", "photo_flickr_id": "184969707", "setting": "last-3-pick-old-and-tell", "worker_id": "WQD7VHB9KXYWHFU", "story_id": "40527", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after some partying they go outside and have some more fun with fireworks", "storylet_id": "202639"}], [{"original_text": "They are experience with cokes and mentor.", "album_id": "72157594192023605", "photo_flickr_id": "184952541", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40528", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they are experience with cokes and mentor .", "storylet_id": "202640"}], [{"original_text": "And watching fireworks at a distance.", "album_id": "72157594192023605", "photo_flickr_id": "184958561", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40528", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and watching fireworks at a distance .", "storylet_id": "202641"}], [{"original_text": "What a beautiful show.", "album_id": "72157594192023605", "photo_flickr_id": "184968319", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40528", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what a beautiful show .", "storylet_id": "202642"}], [{"original_text": "Then they watched a movie together.", "album_id": "72157594192023605", "photo_flickr_id": "184969230", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40528", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they watched a movie together .", "storylet_id": "202643"}], [{"original_text": "and went back outside at midnight.", "album_id": "72157594192023605", "photo_flickr_id": "184969707", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40528", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and went back outside at midnight .", "storylet_id": "202644"}], [{"original_text": "Went out for the night with my friends for fireworks!", "album_id": "72157594192023605", "photo_flickr_id": "184954004", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "40529", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went out for the night with my friends for fireworks !", "storylet_id": "202645"}], [{"original_text": "We had a great time waiting for the fireworks itself.", "album_id": "72157594192023605", "photo_flickr_id": "184964524", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "40529", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a great time waiting for the fireworks itself .", "storylet_id": "202646"}], [{"original_text": "The fireworks from our view were fantastic and really cool.", "album_id": "72157594192023605", "photo_flickr_id": "184954090", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "40529", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fireworks from our view were fantastic and really cool .", "storylet_id": "202647"}], [{"original_text": "We were far away, but the city in the background with the fireworks made it look even better.", "album_id": "72157594192023605", "photo_flickr_id": "184957188", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "40529", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were far away , but the city in the background with the fireworks made it look even better .", "storylet_id": "202648"}], [{"original_text": "We had a really great time together.", "album_id": "72157594192023605", "photo_flickr_id": "184969707", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "40529", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a really great time together .", "storylet_id": "202649"}], [{"original_text": "All of the families got together for a walk.", "album_id": "72157600715772999", "photo_flickr_id": "754910676", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40530", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all of the families got together for a walk .", "storylet_id": "202650"}], [{"original_text": "Some of the kids got to ride in strollers for the walk.", "album_id": "72157600715772999", "photo_flickr_id": "754913460", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40530", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the kids got to ride in strollers for the walk .", "storylet_id": "202651"}], [{"original_text": "One of the kids got to relax in some shade.", "album_id": "72157600715772999", "photo_flickr_id": "754914834", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40530", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the kids got to relax in some shade .", "storylet_id": "202652"}], [{"original_text": "After that they saw some girls riding a small boat.", "album_id": "72157600715772999", "photo_flickr_id": "754068619", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40530", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that they saw some girls riding a small boat .", "storylet_id": "202653"}], [{"original_text": "Then there were some children that wanted to walk instead.", "album_id": "72157600715772999", "photo_flickr_id": "754075515", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40530", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then there were some children that wanted to walk instead .", "storylet_id": "202654"}], [{"original_text": "Here we are getting ready for our town's annual Bike Tyke Parade.", "album_id": "72157600715772999", "photo_flickr_id": "754910676", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "40531", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are getting ready for our town 's annual bike tyke parade .", "storylet_id": "202655"}], [{"original_text": "The kids really look forward to being in the parade each year.", "album_id": "72157600715772999", "photo_flickr_id": "754059687", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "40531", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids really look forward to being in the parade each year .", "storylet_id": "202656"}], [{"original_text": "All types of bikes participate.", "album_id": "72157600715772999", "photo_flickr_id": "754908604", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "40531", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all types of bikes participate .", "storylet_id": "202657"}], [{"original_text": "And some boats on wheels too!", "album_id": "72157600715772999", "photo_flickr_id": "754068619", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "40531", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and some boats on wheels too !", "storylet_id": "202658"}], [{"original_text": "The parade is so cute. We always have a great time!", "album_id": "72157600715772999", "photo_flickr_id": "754073523", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "40531", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the parade is so cute . we always have a great time !", "storylet_id": "202659"}], [{"original_text": "People gathering together to go bike riding.", "album_id": "72157600715772999", "photo_flickr_id": "754910676", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "40532", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people gathering together to go bike riding .", "storylet_id": "202660"}], [{"original_text": "The kids are ready and exited to ride.", "album_id": "72157600715772999", "photo_flickr_id": "754059687", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "40532", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids are ready and exited to ride .", "storylet_id": "202661"}], [{"original_text": "A father and his kids are enjoying the beautiful day.", "album_id": "72157600715772999", "photo_flickr_id": "754908604", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "40532", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a father and his kids are enjoying the beautiful day .", "storylet_id": "202662"}], [{"original_text": "Some kids are riding a float made of a boat.", "album_id": "72157600715772999", "photo_flickr_id": "754068619", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "40532", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some kids are riding a float made of a boat .", "storylet_id": "202663"}], [{"original_text": "A small parade is moving along down the street.", "album_id": "72157600715772999", "photo_flickr_id": "754073523", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "40532", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a small parade is moving along down the street .", "storylet_id": "202664"}], [{"original_text": "Today was the annual New England bikathon. ", "album_id": "72157600715772999", "photo_flickr_id": "754910676", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "40533", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the annual location location bikathon .", "storylet_id": "202665"}], [{"original_text": "We had Sally's cart attached to my bike. ", "album_id": "72157600715772999", "photo_flickr_id": "754913460", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "40533", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had [female] 's cart attached to my bike .", "storylet_id": "202666"}], [{"original_text": "Angela had her own overhead cover to protect from the heat. ", "album_id": "72157600715772999", "photo_flickr_id": "754914834", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "40533", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] had her own overhead cover to protect from the heat .", "storylet_id": "202667"}], [{"original_text": "I saw some kids in a trolly resembling a boat. ", "album_id": "72157600715772999", "photo_flickr_id": "754068619", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "40533", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i saw some kids in a trolly resembling a boat .", "storylet_id": "202668"}], [{"original_text": "This kid had no bike. Pretty sad sight. ", "album_id": "72157600715772999", "photo_flickr_id": "754075515", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "40533", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this kid had no bike . pretty sad sight .", "storylet_id": "202669"}], [{"original_text": "The family is in a bike race today.", "album_id": "72157600715772999", "photo_flickr_id": "754910676", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40534", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family is in a bike race today .", "storylet_id": "202670"}], [{"original_text": "Kelly just gets to ride along.", "album_id": "72157600715772999", "photo_flickr_id": "754913460", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40534", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] just gets to ride along .", "storylet_id": "202671"}], [{"original_text": "So does Joan, in the back relaxing.", "album_id": "72157600715772999", "photo_flickr_id": "754914834", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40534", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so does [female] , in the back relaxing .", "storylet_id": "202672"}], [{"original_text": "There is also a parade going on.", "album_id": "72157600715772999", "photo_flickr_id": "754068619", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40534", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there is also a parade going on .", "storylet_id": "202673"}], [{"original_text": "John wants to walk, not ride in the boat.", "album_id": "72157600715772999", "photo_flickr_id": "754075515", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40534", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] wants to walk , not ride in the boat .", "storylet_id": "202674"}], [{"original_text": "A couple of friends decided to go to the mountains for the summer.", "album_id": "72157600723120795", "photo_flickr_id": "758223198", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40535", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple of friends decided to go to the mountains for the summer .", "storylet_id": "202675"}], [{"original_text": "We made it a little below the top of the mountain.", "album_id": "72157600723120795", "photo_flickr_id": "758222438", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40535", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made it a little below the top of the mountain .", "storylet_id": "202676"}], [{"original_text": "Many beautiful flowers could be seen on the mountain.", "album_id": "72157600723120795", "photo_flickr_id": "757463065", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40535", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many beautiful flowers could be seen on the mountain .", "storylet_id": "202677"}], [{"original_text": "A couple of friends gathered sticks to make a fire.", "album_id": "72157600723120795", "photo_flickr_id": "758320622", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40535", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a couple of friends gathered sticks to make a fire .", "storylet_id": "202678"}], [{"original_text": "The other half of the group put the camping tents up while the other group was gathering sticks. ", "album_id": "72157600723120795", "photo_flickr_id": "758328156", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40535", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the other half of the group put the camping tents up while the other group was gathering sticks .", "storylet_id": "202679"}], [{"original_text": "We traveled to the mountains for a camp out last weekend.", "album_id": "72157600723120795", "photo_flickr_id": "757467689", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40536", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we traveled to the mountains for a camp out last weekend .", "storylet_id": "202680"}], [{"original_text": "First we set up our tent and camping area.", "album_id": "72157600723120795", "photo_flickr_id": "758328156", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40536", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we set up our tent and camping area .", "storylet_id": "202681"}], [{"original_text": "Then we went on a hike. The mountain flowers were beautiful.", "album_id": "72157600723120795", "photo_flickr_id": "757467987", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40536", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we went on a hike . the mountain flowers were beautiful .", "storylet_id": "202682"}], [{"original_text": "We then passed by the lake. It was so calm.", "album_id": "72157600723120795", "photo_flickr_id": "758319428", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40536", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we then passed by the lake . it was so calm .", "storylet_id": "202683"}], [{"original_text": "After our hike we just relaxed and enjoyed the beautiful view.", "album_id": "72157600723120795", "photo_flickr_id": "757469763", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40536", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after our hike we just relaxed and enjoyed the beautiful view .", "storylet_id": "202684"}], [{"original_text": "The camp site was up on a hill.", "album_id": "72157600723120795", "photo_flickr_id": "757467689", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40537", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the camp site was up on a hill .", "storylet_id": "202685"}], [{"original_text": "They had a lot of tents.", "album_id": "72157600723120795", "photo_flickr_id": "758328156", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40537", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a lot of tents .", "storylet_id": "202686"}], [{"original_text": "Flowers were nearby the campsite.", "album_id": "72157600723120795", "photo_flickr_id": "757467987", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40537", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "flowers were nearby the campsite .", "storylet_id": "202687"}], [{"original_text": "In the distance a lake could be seen.", "album_id": "72157600723120795", "photo_flickr_id": "758319428", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40537", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the distance a lake could be seen .", "storylet_id": "202688"}], [{"original_text": "The camper took a rest to enjoy the scenery. ", "album_id": "72157600723120795", "photo_flickr_id": "757469763", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40537", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the camper took a rest to enjoy the scenery .", "storylet_id": "202689"}], [{"original_text": "The camping trip was very nice. ", "album_id": "72157600723120795", "photo_flickr_id": "757467689", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "40538", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the camping trip was very nice .", "storylet_id": "202690"}], [{"original_text": "We set up our tents at the top of the mountain. ", "album_id": "72157600723120795", "photo_flickr_id": "758328156", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "40538", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we set up our tents at the top of the mountain .", "storylet_id": "202691"}], [{"original_text": "The flowers were beautiful in the fields. ", "album_id": "72157600723120795", "photo_flickr_id": "757467987", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "40538", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the flowers were beautiful in the fields .", "storylet_id": "202692"}], [{"original_text": "The lake was just serene. ", "album_id": "72157600723120795", "photo_flickr_id": "758319428", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "40538", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lake was just serene .", "storylet_id": "202693"}], [{"original_text": "We enjoyed our time off in this relaxing place.", "album_id": "72157600723120795", "photo_flickr_id": "757469763", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "40538", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we enjoyed our time off in this relaxing place .", "storylet_id": "202694"}], [{"original_text": "Went on a long walk today on our trip.", "album_id": "72157600723120795", "photo_flickr_id": "758223198", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "40539", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went on a long walk today on our trip .", "storylet_id": "202695"}], [{"original_text": "We saw some pretty awesome views from the top of the hills.", "album_id": "72157600723120795", "photo_flickr_id": "758222438", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "40539", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw some pretty awesome views from the top of the hills .", "storylet_id": "202696"}], [{"original_text": "There was a lot of cool plants iv'e never seen before.", "album_id": "72157600723120795", "photo_flickr_id": "757463065", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "40539", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a lot of cool plants iv'e never seen before .", "storylet_id": "202697"}], [{"original_text": "Butterflies were everywhere out here.", "album_id": "72157600723120795", "photo_flickr_id": "758320622", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "40539", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "butterflies were everywhere out here .", "storylet_id": "202698"}], [{"original_text": "Camping out in nature is the best thing ever!", "album_id": "72157600723120795", "photo_flickr_id": "758328156", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "40539", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "camping out in nature is the best thing ever !", "storylet_id": "202699"}], [{"original_text": "We got the pool ready today for my young daughter's swimming lesson.", "album_id": "72157600725398448", "photo_flickr_id": "758733395", "setting": "first-2-pick-and-tell", "worker_id": "CFLATANNZ1GXODF", "story_id": "40540", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got the pool ready today for my young daughter 's swimming lesson .", "storylet_id": "202700"}], [{"original_text": "She started out by wearing her life jacket.", "album_id": "72157600725398448", "photo_flickr_id": "758733977", "setting": "first-2-pick-and-tell", "worker_id": "CFLATANNZ1GXODF", "story_id": "40540", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she started out by wearing her life jacket .", "storylet_id": "202701"}], [{"original_text": "She enjoyed spending some time with grandpa in the pool.", "album_id": "72157600725398448", "photo_flickr_id": "758736591", "setting": "first-2-pick-and-tell", "worker_id": "CFLATANNZ1GXODF", "story_id": "40540", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she enjoyed spending some time with grandpa in the pool .", "storylet_id": "202702"}], [{"original_text": "Later, the life jacket came off and I gave her some swimming lessons.", "album_id": "72157600725398448", "photo_flickr_id": "759588592", "setting": "first-2-pick-and-tell", "worker_id": "CFLATANNZ1GXODF", "story_id": "40540", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later , the life jacket came off and i gave her some swimming lessons .", "storylet_id": "202703"}], [{"original_text": "By that evening, she was a very happy young girl.", "album_id": "72157600725398448", "photo_flickr_id": "759595154", "setting": "first-2-pick-and-tell", "worker_id": "CFLATANNZ1GXODF", "story_id": "40540", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by that evening , she was a very happy young girl .", "storylet_id": "202704"}], [{"original_text": "It's a fun time for this young boy as he leaps off the diving board into the backyard swimming pool!", "album_id": "72157600725398448", "photo_flickr_id": "758733395", "setting": "first-2-pick-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "40541", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a fun time for this young boy as he leaps off the diving board into the backyard swimming pool !", "storylet_id": "202705"}], [{"original_text": "A young girl holds on to her float as she hangs out in the whirlpool with her grandfather.", "album_id": "72157600725398448", "photo_flickr_id": "758736591", "setting": "first-2-pick-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "40541", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a young girl holds on to her float as she hangs out in the whirlpool with her grandfather .", "storylet_id": "202706"}], [{"original_text": "Dad is shown with his daughters in the whirlpool as he helps one put on her arm flotation devices.", "album_id": "72157600725398448", "photo_flickr_id": "758739863", "setting": "first-2-pick-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "40541", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad is shown with his daughters in the whirlpool as he helps one put on her arm flotation devices .", "storylet_id": "202707"}], [{"original_text": "Two young kids gaze at each other across the bubbling water in a whirlpool.", "album_id": "72157600725398448", "photo_flickr_id": "758740533", "setting": "first-2-pick-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "40541", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two young kids gaze at each other across the bubbling water in a whirlpool .", "storylet_id": "202708"}], [{"original_text": "Grandma is all grins as she holds her granddaughter after a day of swimming.", "album_id": "72157600725398448", "photo_flickr_id": "759595806", "setting": "first-2-pick-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "40541", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandma is all grins as she holds her granddaughter after a day of swimming .", "storylet_id": "202709"}], [{"original_text": "The kids spent the day at grandpa's pool.", "album_id": "72157600725398448", "photo_flickr_id": "758733395", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40542", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids spent the day at grandpa 's pool .", "storylet_id": "202710"}], [{"original_text": "It was Lacy's first time in the water.", "album_id": "72157600725398448", "photo_flickr_id": "758733977", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40542", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was [female] 's first time in the water .", "storylet_id": "202711"}], [{"original_text": "She sat with grandpa in the hot tub.", "album_id": "72157600725398448", "photo_flickr_id": "758736591", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40542", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she sat with grandpa in the hot tub .", "storylet_id": "202712"}], [{"original_text": "I also swam with her.", "album_id": "72157600725398448", "photo_flickr_id": "759588592", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40542", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also swam with her .", "storylet_id": "202713"}], [{"original_text": "She wanted to wear her red white and blue shirt later.", "album_id": "72157600725398448", "photo_flickr_id": "759595154", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40542", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she wanted to wear her red white and blue shirt later .", "storylet_id": "202714"}], [{"original_text": "The little boy shows his sisters how to do a cannon ball.", "album_id": "72157600725398448", "photo_flickr_id": "758733395", "setting": "last-3-pick-old-and-tell", "worker_id": "VGSVCZSCB0V64QK", "story_id": "40543", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the little boy shows his sisters how to do a cannon ball .", "storylet_id": "202715"}], [{"original_text": "She looks on excitedly.", "album_id": "72157600725398448", "photo_flickr_id": "758733977", "setting": "last-3-pick-old-and-tell", "worker_id": "VGSVCZSCB0V64QK", "story_id": "40543", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she looks on excitedly .", "storylet_id": "202716"}], [{"original_text": "She tells her grand-pa that she wants to jump from the diving board too.", "album_id": "72157600725398448", "photo_flickr_id": "758736591", "setting": "last-3-pick-old-and-tell", "worker_id": "VGSVCZSCB0V64QK", "story_id": "40543", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she tells her grand-pa that she wants to jump from the diving board too .", "storylet_id": "202717"}], [{"original_text": "Dad says that she and her sister need to practice swimming before they can jump into the deep end.", "album_id": "72157600725398448", "photo_flickr_id": "759588592", "setting": "last-3-pick-old-and-tell", "worker_id": "VGSVCZSCB0V64QK", "story_id": "40543", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dad says that she and her sister need to practice swimming before they can jump into the deep end .", "storylet_id": "202718"}], [{"original_text": "She really enjoyed her day in the pool, swimming with her family.", "album_id": "72157600725398448", "photo_flickr_id": "759595154", "setting": "last-3-pick-old-and-tell", "worker_id": "VGSVCZSCB0V64QK", "story_id": "40543", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she really enjoyed her day in the pool , swimming with her family .", "storylet_id": "202719"}], [{"original_text": "The kid is jumping in the pool", "album_id": "72157600725398448", "photo_flickr_id": "758733395", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "40544", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kid is jumping in the pool", "storylet_id": "202720"}], [{"original_text": "and the girl is nervous", "album_id": "72157600725398448", "photo_flickr_id": "758733977", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "40544", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the girl is nervous", "storylet_id": "202721"}], [{"original_text": "about her grandpa getting in.", "album_id": "72157600725398448", "photo_flickr_id": "758736591", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "40544", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "about her grandpa getting in .", "storylet_id": "202722"}], [{"original_text": "Her dad holds her", "album_id": "72157600725398448", "photo_flickr_id": "759588592", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "40544", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her dad holds her", "storylet_id": "202723"}], [{"original_text": "and she is happy.", "album_id": "72157600725398448", "photo_flickr_id": "759595154", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "40544", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and she is happy .", "storylet_id": "202724"}], [{"original_text": "We took Jayden to great park to celebrate his birthday along with the 4th of July.", "album_id": "72157600824581776", "photo_flickr_id": "813055542", "setting": "first-2-pick-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "40545", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took [male] to great park to celebrate his birthday along with the 4th of july .", "storylet_id": "202725"}], [{"original_text": "I couldn't resist this cute face with the beautiful park in the background.", "album_id": "72157600824581776", "photo_flickr_id": "812181679", "setting": "first-2-pick-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "40545", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i could n't resist this cute face with the beautiful park in the background .", "storylet_id": "202726"}], [{"original_text": "Jayden made sure to call grandpa over to get a picture with him.", "album_id": "72157600824581776", "photo_flickr_id": "813072196", "setting": "first-2-pick-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "40545", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] made sure to call grandpa over to get a picture with him .", "storylet_id": "202727"}], [{"original_text": "Waiting for the fun to start, Jayden is watching intently as granda sets up his new birthday toy.", "album_id": "72157600824581776", "photo_flickr_id": "812187301", "setting": "first-2-pick-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "40545", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "waiting for the fun to start , [male] is watching intently as granda sets up his new birthday toy .", "storylet_id": "202728"}], [{"original_text": "Before the fireworks started we took Jayden into this awesome bubble house that was at the park.", "album_id": "72157600824581776", "photo_flickr_id": "813063258", "setting": "first-2-pick-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "40545", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before the fireworks started we took [male] into this awesome bubble house that was at the park .", "storylet_id": "202729"}], [{"original_text": "My father took our son to the park.", "album_id": "72157600824581776", "photo_flickr_id": "813072196", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40546", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my father took our son to the park .", "storylet_id": "202730"}], [{"original_text": "He played with him at the park.", "album_id": "72157600824581776", "photo_flickr_id": "813066680", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40546", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he played with him at the park .", "storylet_id": "202731"}], [{"original_text": "I was in charge of preparing the food for the family picnic at the park. ", "album_id": "72157600824581776", "photo_flickr_id": "812174833", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40546", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was in charge of preparing the food for the family picnic at the park .", "storylet_id": "202732"}], [{"original_text": "After visiting the park, my father and son visited the small fun house.", "album_id": "72157600824581776", "photo_flickr_id": "812179063", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40546", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after visiting the park , my father and son visited the small fun house .", "storylet_id": "202733"}], [{"original_text": "My son got his face painted.", "album_id": "72157600824581776", "photo_flickr_id": "813061012", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40546", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my son got his face painted .", "storylet_id": "202734"}], [{"original_text": "Derek was so excited to go to the park for the 4th of July celebration.", "album_id": "72157600824581776", "photo_flickr_id": "813055542", "setting": "last-3-pick-old-and-tell", "worker_id": "7EUH6GBKF2PFICQ", "story_id": "40547", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was so excited to go to the park for the 4th of july celebration .", "storylet_id": "202735"}], [{"original_text": "I had to grab my camera for this cute smile. Pure happiness!", "album_id": "72157600824581776", "photo_flickr_id": "812181679", "setting": "last-3-pick-old-and-tell", "worker_id": "7EUH6GBKF2PFICQ", "story_id": "40547", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had to grab my camera for this cute smile . pure happiness !", "storylet_id": "202736"}], [{"original_text": "Granddad and Derek played around by the big tree.", "album_id": "72157600824581776", "photo_flickr_id": "813072196", "setting": "last-3-pick-old-and-tell", "worker_id": "7EUH6GBKF2PFICQ", "story_id": "40547", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "granddad and [male] played around by the big tree .", "storylet_id": "202737"}], [{"original_text": "After playing at the tree, granddad showed Derek how to play with the toy.", "album_id": "72157600824581776", "photo_flickr_id": "812187301", "setting": "last-3-pick-old-and-tell", "worker_id": "7EUH6GBKF2PFICQ", "story_id": "40547", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after playing at the tree , granddad showed [male] how to play with the toy .", "storylet_id": "202738"}], [{"original_text": "We later went inside the park building and Derek learned how to make gigantic bubbles.", "album_id": "72157600824581776", "photo_flickr_id": "813063258", "setting": "last-3-pick-old-and-tell", "worker_id": "7EUH6GBKF2PFICQ", "story_id": "40547", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we later went inside the park building and [male] learned how to make gigantic bubbles .", "storylet_id": "202739"}], [{"original_text": "Family having fun at the park on the 4th of July.", "album_id": "72157600824581776", "photo_flickr_id": "813055542", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "40548", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family having fun at the park on the 4th of july .", "storylet_id": "202740"}], [{"original_text": "Young boy smiles with happiness at the celebration.", "album_id": "72157600824581776", "photo_flickr_id": "812181679", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "40548", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "young boy smiles with happiness at the celebration .", "storylet_id": "202741"}], [{"original_text": "Little Tommy sitting on the limb of a tree with his grandfather standing by his side.", "album_id": "72157600824581776", "photo_flickr_id": "813072196", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "40548", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "little [male] sitting on the limb of a tree with his grandfather standing by his side .", "storylet_id": "202742"}], [{"original_text": "The grandfather is helping Tommy with his new toy.", "album_id": "72157600824581776", "photo_flickr_id": "812187301", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "40548", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the grandfather is helping [male] with his new toy .", "storylet_id": "202743"}], [{"original_text": "Great fun playing with a giant bubble wand.", "album_id": "72157600824581776", "photo_flickr_id": "813063258", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "40548", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "great fun playing with a giant bubble wand .", "storylet_id": "202744"}], [{"original_text": "Kevin was so happy.", "album_id": "72157600824581776", "photo_flickr_id": "813055542", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40549", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was so happy .", "storylet_id": "202745"}], [{"original_text": "He loved days he got to spend with his Dad.", "album_id": "72157600824581776", "photo_flickr_id": "812181679", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40549", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he loved days he got to spend with his dad .", "storylet_id": "202746"}], [{"original_text": "His Dad took him to the park today.", "album_id": "72157600824581776", "photo_flickr_id": "813072196", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40549", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his dad took him to the park today .", "storylet_id": "202747"}], [{"original_text": "He even got him a new toy to play with.", "album_id": "72157600824581776", "photo_flickr_id": "812187301", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40549", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he even got him a new toy to play with .", "storylet_id": "202748"}], [{"original_text": "After they went to the Children's Museum to explore.", "album_id": "72157600824581776", "photo_flickr_id": "813063258", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40549", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after they went to the organization organization organization to explore .", "storylet_id": "202749"}], [{"original_text": "The friends were hanging out outside.", "album_id": "72157600826173639", "photo_flickr_id": "812625073", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40550", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends were hanging out outside .", "storylet_id": "202750"}], [{"original_text": "They sat around talking.", "album_id": "72157600826173639", "photo_flickr_id": "813506212", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40550", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they sat around talking .", "storylet_id": "202751"}], [{"original_text": "The couple took a picture.", "album_id": "72157600826173639", "photo_flickr_id": "812622637", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40550", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the couple took a picture .", "storylet_id": "202752"}], [{"original_text": "They then started playing with fireworks.", "album_id": "72157600826173639", "photo_flickr_id": "812621917", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40550", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they then started playing with fireworks .", "storylet_id": "202753"}], [{"original_text": "Soon they had a fountain going off.", "album_id": "72157600826173639", "photo_flickr_id": "812619945", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "40550", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "soon they had a fountain going off .", "storylet_id": "202754"}], [{"original_text": "We gathered at the neighbor's to watch the fireworks.", "album_id": "72157600826173639", "photo_flickr_id": "812625073", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40551", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we gathered at the neighbor 's to watch the fireworks .", "storylet_id": "202755"}], [{"original_text": "We all waited with anticipation for the show to begin.", "album_id": "72157600826173639", "photo_flickr_id": "813506212", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40551", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all waited with anticipation for the show to begin .", "storylet_id": "202756"}], [{"original_text": "Then the first firework started it's upward climb.", "album_id": "72157600826173639", "photo_flickr_id": "812612097", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40551", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the first firework started it 's upward climb .", "storylet_id": "202757"}], [{"original_text": "It lit up the dark sky with it's colors.", "album_id": "72157600826173639", "photo_flickr_id": "813493268", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40551", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it lit up the dark sky with it 's colors .", "storylet_id": "202758"}], [{"original_text": "The cat was not too impressed though.", "album_id": "72157600826173639", "photo_flickr_id": "813489878", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40551", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cat was not too impressed though .", "storylet_id": "202759"}], [{"original_text": "So we were all hanging out a friends backyard BBQ the other night and something odd happened.", "album_id": "72157600826173639", "photo_flickr_id": "812625073", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "40552", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so we were all hanging out a friends backyard bbq the other night and something odd happened .", "storylet_id": "202760"}], [{"original_text": "We all had been drinking and one tends to do at these type of things.", "album_id": "72157600826173639", "photo_flickr_id": "813506212", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "40552", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all had been drinking and one tends to do at these type of things .", "storylet_id": "202761"}], [{"original_text": "When out of the sky this bright light shown bright", "album_id": "72157600826173639", "photo_flickr_id": "812612097", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "40552", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when out of the sky this bright light shown bright", "storylet_id": "202762"}], [{"original_text": "and then explode as we watched the thing parachute to the ground. ", "album_id": "72157600826173639", "photo_flickr_id": "813493268", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "40552", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and then explode as we watched the thing parachute to the ground .", "storylet_id": "202763"}], [{"original_text": "attached to the parachute was a alien kitty, We left after that.", "album_id": "72157600826173639", "photo_flickr_id": "813489878", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "40552", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "attached to the parachute was a alien kitty , we left after that .", "storylet_id": "202764"}], [{"original_text": "We all gathered at Bill's house when it got dark", "album_id": "72157600826173639", "photo_flickr_id": "812625073", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40553", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all gathered at [male] 's house when it got dark", "storylet_id": "202765"}], [{"original_text": "Somebody got a little camera shy!", "album_id": "72157600826173639", "photo_flickr_id": "813506212", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40553", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "somebody got a little camera shy !", "storylet_id": "202766"}], [{"original_text": "Bill and his wife posing for a great photo", "album_id": "72157600826173639", "photo_flickr_id": "812622637", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40553", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and his wife posing for a great photo", "storylet_id": "202767"}], [{"original_text": "Got this blurry shot of the fireworks just starting.", "album_id": "72157600826173639", "photo_flickr_id": "812621917", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40553", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "got this blurry shot of the fireworks just starting .", "storylet_id": "202768"}], [{"original_text": "The show started and we were all wowed", "album_id": "72157600826173639", "photo_flickr_id": "812619945", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40553", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the show started and we were all wowed", "storylet_id": "202769"}], [{"original_text": "Some friends get together for a night of fun and drinking.", "album_id": "72157600826173639", "photo_flickr_id": "812625073", "setting": "last-3-pick-old-and-tell", "worker_id": "WQD7VHB9KXYWHFU", "story_id": "40554", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some friends get together for a night of fun and drinking .", "storylet_id": "202770"}], [{"original_text": "They all are having a great time and enjoying each others company.", "album_id": "72157600826173639", "photo_flickr_id": "813506212", "setting": "last-3-pick-old-and-tell", "worker_id": "WQD7VHB9KXYWHFU", "story_id": "40554", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all are having a great time and enjoying each others company .", "storylet_id": "202771"}], [{"original_text": "Some of them pose for pictures together.", "album_id": "72157600826173639", "photo_flickr_id": "812622637", "setting": "last-3-pick-old-and-tell", "worker_id": "WQD7VHB9KXYWHFU", "story_id": "40554", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them pose for pictures together .", "storylet_id": "202772"}], [{"original_text": "As the night goes on the pull out some fire works", "album_id": "72157600826173639", "photo_flickr_id": "812621917", "setting": "last-3-pick-old-and-tell", "worker_id": "WQD7VHB9KXYWHFU", "story_id": "40554", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the night goes on the pull out some fire works", "storylet_id": "202773"}], [{"original_text": "and start to light them.", "album_id": "72157600826173639", "photo_flickr_id": "812619945", "setting": "last-3-pick-old-and-tell", "worker_id": "WQD7VHB9KXYWHFU", "story_id": "40554", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and start to light them .", "storylet_id": "202774"}], [{"original_text": "Spent a day walking and taking pictures at a very old graveyard.", "album_id": "72157601588947079", "photo_flickr_id": "1193024201", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "40555", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "spent a day walking and taking pictures at a very old graveyard .", "storylet_id": "202775"}], [{"original_text": "Some tombstones were so old they were hard to read.", "album_id": "72157601588947079", "photo_flickr_id": "1193015283", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "40555", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some tombstones were so old they were hard to read .", "storylet_id": "202776"}], [{"original_text": "This one had the earliest date I could find....1834", "album_id": "72157601588947079", "photo_flickr_id": "1193032581", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "40555", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one had the earliest date i could find ... .1834", "storylet_id": "202777"}], [{"original_text": "Many of the headstones were parents or husband and wife.", "album_id": "72157601588947079", "photo_flickr_id": "1193895058", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "40555", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many of the headstones were parents or husband and wife .", "storylet_id": "202778"}], [{"original_text": "Was a very thoughtful day....have to wonder if any family still visits these graves", "album_id": "72157601588947079", "photo_flickr_id": "1193034237", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "40555", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "was a very thoughtful day ... .have to wonder if any family still visits these graves", "storylet_id": "202779"}], [{"original_text": "Our class is learning all about stone rubbing.", "album_id": "72157601588947079", "photo_flickr_id": "1193015283", "setting": "first-2-pick-and-tell", "worker_id": "JGGENVF7GDJVJRA", "story_id": "40556", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our class is learning all about stone rubbing .", "storylet_id": "202780"}], [{"original_text": "So we went on a field trip to the cemetery.", "album_id": "72157601588947079", "photo_flickr_id": "1193881414", "setting": "first-2-pick-and-tell", "worker_id": "JGGENVF7GDJVJRA", "story_id": "40556", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so we went on a field trip to the cemetery .", "storylet_id": "202781"}], [{"original_text": "We each could choose up to 3 headstones to copy", "album_id": "72157601588947079", "photo_flickr_id": "1193893644", "setting": "first-2-pick-and-tell", "worker_id": "JGGENVF7GDJVJRA", "story_id": "40556", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we each could choose up to 3 headstones to copy", "storylet_id": "202782"}], [{"original_text": "We had to choose wisely because some were easier to work with than others.", "album_id": "72157601588947079", "photo_flickr_id": "1193896526", "setting": "first-2-pick-and-tell", "worker_id": "JGGENVF7GDJVJRA", "story_id": "40556", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had to choose wisely because some were easier to work with than others .", "storylet_id": "202783"}], [{"original_text": "This was one of the headstones that I chose. ", "album_id": "72157601588947079", "photo_flickr_id": "1193034237", "setting": "first-2-pick-and-tell", "worker_id": "JGGENVF7GDJVJRA", "story_id": "40556", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was one of the headstones that i chose .", "storylet_id": "202784"}], [{"original_text": "We visited the oldest part of the graveyard.", "album_id": "72157601588947079", "photo_flickr_id": "1193015283", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40557", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited the oldest part of the graveyard .", "storylet_id": "202785"}], [{"original_text": "Some of them we couldn't even read.", "album_id": "72157601588947079", "photo_flickr_id": "1193881414", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40557", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of them we could n't even read .", "storylet_id": "202786"}], [{"original_text": "The headstones were so worn.", "album_id": "72157601588947079", "photo_flickr_id": "1193893644", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40557", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the headstones were so worn .", "storylet_id": "202787"}], [{"original_text": "Some of them were people I had heard of in the past.", "album_id": "72157601588947079", "photo_flickr_id": "1193896526", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40557", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of them were people i had heard of in the past .", "storylet_id": "202788"}], [{"original_text": "It was interesting to see how old they were when they died.", "album_id": "72157601588947079", "photo_flickr_id": "1193034237", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40557", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was interesting to see how old they were when they died .", "storylet_id": "202789"}], [{"original_text": "This is a cemetery that we visited a few weeks ago.", "album_id": "72157601588947079", "photo_flickr_id": "1193024201", "setting": "last-3-pick-old-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "40558", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a cemetery that we visited a few weeks ago .", "storylet_id": "202790"}], [{"original_text": "This grave looked like it had been there for many years.", "album_id": "72157601588947079", "photo_flickr_id": "1193015283", "setting": "last-3-pick-old-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "40558", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this grave looked like it had been there for many years .", "storylet_id": "202791"}], [{"original_text": "This was my grandmother's grave from a few years ago.", "album_id": "72157601588947079", "photo_flickr_id": "1193032581", "setting": "last-3-pick-old-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "40558", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was my grandmother 's grave from a few years ago .", "storylet_id": "202792"}], [{"original_text": "This was a neighbor's grave that we visited while we were there.", "album_id": "72157601588947079", "photo_flickr_id": "1193895058", "setting": "last-3-pick-old-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "40558", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was a neighbor 's grave that we visited while we were there .", "storylet_id": "202793"}], [{"original_text": "This was a very old grave that we saw as we were leaving.", "album_id": "72157601588947079", "photo_flickr_id": "1193034237", "setting": "last-3-pick-old-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "40558", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was a very old grave that we saw as we were leaving .", "storylet_id": "202794"}], [{"original_text": "Here I am at Fawn Creek graveyard. Today should be fun.", "album_id": "72157601588947079", "photo_flickr_id": "1193024201", "setting": "last-3-pick-old-and-tell", "worker_id": "YDQTI6JSZJT0R6K", "story_id": "40559", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here i am at location location graveyard . today should be fun .", "storylet_id": "202795"}], [{"original_text": "Dirty old grave here. I wonder how old it is?", "album_id": "72157601588947079", "photo_flickr_id": "1193015283", "setting": "last-3-pick-old-and-tell", "worker_id": "YDQTI6JSZJT0R6K", "story_id": "40559", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dirty old grave here . i wonder how old it is ?", "storylet_id": "202796"}], [{"original_text": "So much history here.", "album_id": "72157601588947079", "photo_flickr_id": "1193032581", "setting": "last-3-pick-old-and-tell", "worker_id": "YDQTI6JSZJT0R6K", "story_id": "40559", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so much history here .", "storylet_id": "202797"}], [{"original_text": "These gravestones are very fancy for their time.", "album_id": "72157601588947079", "photo_flickr_id": "1193895058", "setting": "last-3-pick-old-and-tell", "worker_id": "YDQTI6JSZJT0R6K", "story_id": "40559", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these gravestones are very fancy for their time .", "storylet_id": "202798"}], [{"original_text": "This one is unique looking. What an interesting day.", "album_id": "72157601588947079", "photo_flickr_id": "1193034237", "setting": "last-3-pick-old-and-tell", "worker_id": "YDQTI6JSZJT0R6K", "story_id": "40559", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this one is unique looking . what an interesting day .", "storylet_id": "202799"}], [{"original_text": "Our children wanted to go to the park.", "album_id": "72157594249154972", "photo_flickr_id": "223349549", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40560", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our children wanted to go to the park .", "storylet_id": "202800"}], [{"original_text": "My wife took care of one of the kids.", "album_id": "72157594249154972", "photo_flickr_id": "223349665", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40560", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my wife took care of one of the kids .", "storylet_id": "202801"}], [{"original_text": "I looked after our daughter.", "album_id": "72157594249154972", "photo_flickr_id": "223349718", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40560", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i looked after our daughter .", "storylet_id": "202802"}], [{"original_text": "My daughter met a small boy. They played with bubbles.", "album_id": "72157594249154972", "photo_flickr_id": "223349781", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40560", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my daughter met a small boy . they played with bubbles .", "storylet_id": "202803"}], [{"original_text": "The boy's family invited us to share strawberry shortcake. ", "album_id": "72157594249154972", "photo_flickr_id": "223349842", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40560", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boy 's family invited us to share strawberry shortcake .", "storylet_id": "202804"}], [{"original_text": "My dad took us to the 4th of July picnic.", "album_id": "72157594249154972", "photo_flickr_id": "223349718", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "40561", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my dad took us to the 4th of july picnic .", "storylet_id": "202805"}], [{"original_text": "I get to blow bubbles. What fun!", "album_id": "72157594249154972", "photo_flickr_id": "223349531", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "40561", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i get to blow bubbles . what fun !", "storylet_id": "202806"}], [{"original_text": "My brother is getting frustrated trying to get the bubbles into the air.", "album_id": "72157594249154972", "photo_flickr_id": "223349586", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "40561", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brother is getting frustrated trying to get the bubbles into the air .", "storylet_id": "202807"}], [{"original_text": "My little brother and I are seeing who can get the most bubbles.", "album_id": "72157594249154972", "photo_flickr_id": "223349781", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "40561", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my little brother and i are seeing who can get the most bubbles .", "storylet_id": "202808"}], [{"original_text": "We brought a cake to enjoy eating later. It's really colorful.", "album_id": "72157594249154972", "photo_flickr_id": "223349842", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "40561", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we brought a cake to enjoy eating later . it 's really colorful .", "storylet_id": "202809"}], [{"original_text": "The kids really enjoyed the 4th of July picnic.", "album_id": "72157594249154972", "photo_flickr_id": "223349718", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40562", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids really enjoyed the 4th of july picnic .", "storylet_id": "202810"}], [{"original_text": "Sara had fun blowing bubbles.", "album_id": "72157594249154972", "photo_flickr_id": "223349531", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40562", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] had fun blowing bubbles .", "storylet_id": "202811"}], [{"original_text": "Sean didn't get the hang of it quite as quickly, though.", "album_id": "72157594249154972", "photo_flickr_id": "223349586", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40562", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] did n't get the hang of it quite as quickly , though .", "storylet_id": "202812"}], [{"original_text": "Sara ended up making a friend.", "album_id": "72157594249154972", "photo_flickr_id": "223349781", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40562", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] ended up making a friend .", "storylet_id": "202813"}], [{"original_text": "At the end of the day we shared a patriotic cake.", "album_id": "72157594249154972", "photo_flickr_id": "223349842", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40562", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day we shared a patriotic cake .", "storylet_id": "202814"}], [{"original_text": "The kids playing on the 4th of July", "album_id": "72157594249154972", "photo_flickr_id": "223349549", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40563", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids playing on the 4th of july", "storylet_id": "202815"}], [{"original_text": "Baby and mom on a blanket waiting for the fireworks", "album_id": "72157594249154972", "photo_flickr_id": "223349665", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40563", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] and mom on a blanket waiting for the fireworks", "storylet_id": "202816"}], [{"original_text": "She kept asking when the fireworks were supposed to start!", "album_id": "72157594249154972", "photo_flickr_id": "223349718", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40563", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she kept asking when the fireworks were supposed to start !", "storylet_id": "202817"}], [{"original_text": "The kids blowing bubbles to pass the time", "album_id": "72157594249154972", "photo_flickr_id": "223349781", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40563", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids blowing bubbles to pass the time", "storylet_id": "202818"}], [{"original_text": "Nothing more patriotic than a delicious dessert", "album_id": "72157594249154972", "photo_flickr_id": "223349842", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40563", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "nothing more patriotic than a delicious dessert", "storylet_id": "202819"}], [{"original_text": "Little Tommy and Jamie are having such fun together!", "album_id": "72157594249154972", "photo_flickr_id": "223349549", "setting": "last-3-pick-old-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "40564", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "little [male] and [female] are having such fun together !", "storylet_id": "202820"}], [{"original_text": "My sister Mary watched the little kids like a hawk, so grateful for that.", "album_id": "72157594249154972", "photo_flickr_id": "223349665", "setting": "last-3-pick-old-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "40564", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my sister [female] watched the little kids like a hawk , so grateful for that .", "storylet_id": "202821"}], [{"original_text": "Jamie loves her uncle Jim to death! He tells the best jokes.", "album_id": "72157594249154972", "photo_flickr_id": "223349718", "setting": "last-3-pick-old-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "40564", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] loves her uncle [male] to death ! he tells the best jokes .", "storylet_id": "202822"}], [{"original_text": "Ryan looked a little upset with the snacks, but I'm sure he'll warm up.", "album_id": "72157594249154972", "photo_flickr_id": "223349781", "setting": "last-3-pick-old-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "40564", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] looked a little upset with the snacks , but i 'm sure he 'll warm up .", "storylet_id": "202823"}], [{"original_text": "The cake looked amazing! I can't thank Amy enough for her bakery!", "album_id": "72157594249154972", "photo_flickr_id": "223349842", "setting": "last-3-pick-old-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "40564", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cake looked amazing ! i ca n't thank [female] enough for her bakery !", "storylet_id": "202824"}], [{"original_text": "Hank was starting some home repairs that he's put off for too long.", "album_id": "72157594213492353", "photo_flickr_id": "199339680", "setting": "first-2-pick-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "40565", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hank was starting some home repairs that he 's put off for too long .", "storylet_id": "202825"}], [{"original_text": "While working on the door frame, he noticed that his equipment wasn't working properly.", "album_id": "72157594213492353", "photo_flickr_id": "199361519", "setting": "first-2-pick-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "40565", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while working on the door frame , he noticed that his equipment was n't working properly .", "storylet_id": "202826"}], [{"original_text": "He shook it and tried to fix it but nothing seemed to work.", "album_id": "72157594213492353", "photo_flickr_id": "199364496", "setting": "first-2-pick-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "40565", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he shook it and tried to fix it but nothing seemed to work .", "storylet_id": "202827"}], [{"original_text": "He took a real close look and realized his mistake.", "album_id": "72157594213492353", "photo_flickr_id": "199367649", "setting": "first-2-pick-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "40565", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he took a real close look and realized his mistake .", "storylet_id": "202828"}], [{"original_text": "Hank was holding it the wrong way and went back to working on the door.", "album_id": "72157594213492353", "photo_flickr_id": "199339678", "setting": "first-2-pick-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "40565", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "hank was holding it the wrong way and went back to working on the door .", "storylet_id": "202829"}], [{"original_text": "Dad decided it was time to do some home improvement.", "album_id": "72157594213492353", "photo_flickr_id": "199367649", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40566", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dad decided it was time to do some home improvement .", "storylet_id": "202830"}], [{"original_text": "First he got out his trusty caulk gun.", "album_id": "72157594213492353", "photo_flickr_id": "199364494", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40566", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first he got out his trusty caulk gun .", "storylet_id": "202831"}], [{"original_text": "Then he applied the caulk to the piece of wood.", "album_id": "72157594213492353", "photo_flickr_id": "199361518", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40566", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then he applied the caulk to the piece of wood .", "storylet_id": "202832"}], [{"original_text": "He carefully climbed the ladder.", "album_id": "72157594213492353", "photo_flickr_id": "199339680", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40566", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he carefully climbed the ladder .", "storylet_id": "202833"}], [{"original_text": "He then placed the wood around the door frame.", "album_id": "72157594213492353", "photo_flickr_id": "199339678", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40566", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he then placed the wood around the door frame .", "storylet_id": "202834"}], [{"original_text": "The man climbs the ladder. He then gets the silicone gun ready.", "album_id": "72157594213492353", "photo_flickr_id": "199339680", "setting": "last-3-pick-old-and-tell", "worker_id": "P41PSI8NFH612I2", "story_id": "40567", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man climbs the ladder . he then gets the silicone gun ready .", "storylet_id": "202835"}], [{"original_text": "First he loads the tube of silicone into the silicone gun. ", "album_id": "72157594213492353", "photo_flickr_id": "199361519", "setting": "last-3-pick-old-and-tell", "worker_id": "P41PSI8NFH612I2", "story_id": "40567", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first he loads the tube of silicone into the silicone gun .", "storylet_id": "202836"}], [{"original_text": "Then he turns the handle of the gun until it tightens against the tube. ", "album_id": "72157594213492353", "photo_flickr_id": "199364496", "setting": "last-3-pick-old-and-tell", "worker_id": "P41PSI8NFH612I2", "story_id": "40567", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then he turns the handle of the gun until it tightens against the tube .", "storylet_id": "202837"}], [{"original_text": "Then he uses the silicone gun to apply the silicone to the wood door frame.", "album_id": "72157594213492353", "photo_flickr_id": "199367649", "setting": "last-3-pick-old-and-tell", "worker_id": "P41PSI8NFH612I2", "story_id": "40567", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then he uses the silicone gun to apply the silicone to the wood door frame .", "storylet_id": "202838"}], [{"original_text": "Once he has put the silicone on the door frame, he then attaches the door frame to the door. ", "album_id": "72157594213492353", "photo_flickr_id": "199339678", "setting": "last-3-pick-old-and-tell", "worker_id": "P41PSI8NFH612I2", "story_id": "40567", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once he has put the silicone on the door frame , he then attaches the door frame to the door .", "storylet_id": "202839"}], [{"original_text": "We hired someone to fix our house.", "album_id": "72157594213492353", "photo_flickr_id": "199367649", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40568", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we hired someone to fix our house .", "storylet_id": "202840"}], [{"original_text": "He had to caulk some stuff.", "album_id": "72157594213492353", "photo_flickr_id": "199364494", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40568", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he had to caulk some stuff .", "storylet_id": "202841"}], [{"original_text": "He was pretty good at it.", "album_id": "72157594213492353", "photo_flickr_id": "199361518", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40568", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was pretty good at it .", "storylet_id": "202842"}], [{"original_text": "He was fixing our door frame first.", "album_id": "72157594213492353", "photo_flickr_id": "199339680", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40568", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was fixing our door frame first .", "storylet_id": "202843"}], [{"original_text": "I'm glad we hired him.", "album_id": "72157594213492353", "photo_flickr_id": "199339678", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40568", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm glad we hired him .", "storylet_id": "202844"}], [{"original_text": "Hard at work, it's always important to maintain focus", "album_id": "72157594213492353", "photo_flickr_id": "199367649", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40569", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hard at work , it 's always important to maintain focus", "storylet_id": "202845"}], [{"original_text": "A very useful tool for applying glue", "album_id": "72157594213492353", "photo_flickr_id": "199364494", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40569", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a very useful tool for applying glue", "storylet_id": "202846"}], [{"original_text": "You must make sure to apply the glue carefully and evenly", "album_id": "72157594213492353", "photo_flickr_id": "199361518", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40569", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you must make sure to apply the glue carefully and evenly", "storylet_id": "202847"}], [{"original_text": "Be sure to use caution on the ladder", "album_id": "72157594213492353", "photo_flickr_id": "199339680", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40569", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "be sure to use caution on the ladder", "storylet_id": "202848"}], [{"original_text": "Apply the wood with glue to the proper place and apply pressure", "album_id": "72157594213492353", "photo_flickr_id": "199339678", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "40569", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "apply the wood with glue to the proper place and apply pressure", "storylet_id": "202849"}], [{"original_text": "The bay was filling up with boats, everyone wanted the best spot to watch the fireworks.", "album_id": "72157601060548201", "photo_flickr_id": "929855078", "setting": "first-2-pick-and-tell", "worker_id": "WDPF8T2H1PMMUR8", "story_id": "40570", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bay was filling up with boats , everyone wanted the best spot to watch the fireworks .", "storylet_id": "202850"}], [{"original_text": "The fur children were not as excited.", "album_id": "72157601060548201", "photo_flickr_id": "929854832", "setting": "first-2-pick-and-tell", "worker_id": "WDPF8T2H1PMMUR8", "story_id": "40570", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fur children were not as excited .", "storylet_id": "202851"}], [{"original_text": "We invited friends over for a casual party.", "album_id": "72157601060548201", "photo_flickr_id": "929008965", "setting": "first-2-pick-and-tell", "worker_id": "WDPF8T2H1PMMUR8", "story_id": "40570", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we invited friends over for a casual party .", "storylet_id": "202852"}], [{"original_text": "The balcony provided a great view.", "album_id": "72157601060548201", "photo_flickr_id": "929854352", "setting": "first-2-pick-and-tell", "worker_id": "WDPF8T2H1PMMUR8", "story_id": "40570", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the balcony provided a great view .", "storylet_id": "202853"}], [{"original_text": "The fireworks were beautiful, especially since we didn't have to brave the crowds.", "album_id": "72157601060548201", "photo_flickr_id": "929855466", "setting": "first-2-pick-and-tell", "worker_id": "WDPF8T2H1PMMUR8", "story_id": "40570", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fireworks were beautiful , especially since we did n't have to brave the crowds .", "storylet_id": "202854"}], [{"original_text": "The group of friends got ready for the 4th of July.", "album_id": "72157601060548201", "photo_flickr_id": "929008965", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40571", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group of friends got ready for the 4th of july .", "storylet_id": "202855"}], [{"original_text": "As the sun was going down they traveled down to the lake.", "album_id": "72157601060548201", "photo_flickr_id": "929855078", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40571", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the sun was going down they traveled down to the lake .", "storylet_id": "202856"}], [{"original_text": "Then it was time for the fireworks to begin.", "album_id": "72157601060548201", "photo_flickr_id": "929010235", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40571", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then it was time for the fireworks to begin .", "storylet_id": "202857"}], [{"original_text": "They were able to see many different colors and shapes over the lake.", "album_id": "72157601060548201", "photo_flickr_id": "929855466", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40571", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were able to see many different colors and shapes over the lake .", "storylet_id": "202858"}], [{"original_text": "During the grand finale, they had all kinds of bright white ones.", "album_id": "72157601060548201", "photo_flickr_id": "929011071", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40571", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "during the grand finale , they had all kinds of bright white ones .", "storylet_id": "202859"}], [{"original_text": "We loved the view of the city.", "album_id": "72157601060548201", "photo_flickr_id": "929855078", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40572", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we loved the view of the city .", "storylet_id": "202860"}], [{"original_text": "Our amazing cat looked suave as always!", "album_id": "72157601060548201", "photo_flickr_id": "929854832", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40572", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our amazing cat looked suave as always !", "storylet_id": "202861"}], [{"original_text": "We all had fun hanging out at our house.", "album_id": "72157601060548201", "photo_flickr_id": "929008965", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40572", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all had fun hanging out at our house .", "storylet_id": "202862"}], [{"original_text": "We invited a large group over to hang out.", "album_id": "72157601060548201", "photo_flickr_id": "929854352", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40572", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we invited a large group over to hang out .", "storylet_id": "202863"}], [{"original_text": "The night was culminated with the firework display!", "album_id": "72157601060548201", "photo_flickr_id": "929855466", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40572", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night was culminated with the firework display !", "storylet_id": "202864"}], [{"original_text": "Friend spending time together.", "album_id": "72157601060548201", "photo_flickr_id": "929008965", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40573", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friend spending time together .", "storylet_id": "202865"}], [{"original_text": "The view from the apartment.", "album_id": "72157601060548201", "photo_flickr_id": "929855078", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40573", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view from the apartment .", "storylet_id": "202866"}], [{"original_text": "The show has started.", "album_id": "72157601060548201", "photo_flickr_id": "929010235", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40573", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the show has started .", "storylet_id": "202867"}], [{"original_text": "Fireworks going up the sky.", "album_id": "72157601060548201", "photo_flickr_id": "929855466", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40573", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fireworks going up the sky .", "storylet_id": "202868"}], [{"original_text": "The grand finale.", "album_id": "72157601060548201", "photo_flickr_id": "929011071", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40573", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the grand finale .", "storylet_id": "202869"}], [{"original_text": "My friends and I met up for the 4th of july.", "album_id": "72157601060548201", "photo_flickr_id": "929008965", "setting": "last-3-pick-old-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40574", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i met up for the 4th of july .", "storylet_id": "202870"}], [{"original_text": "We went into the city to see the fireworks show. ", "album_id": "72157601060548201", "photo_flickr_id": "929855078", "setting": "last-3-pick-old-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40574", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went into the city to see the fireworks show .", "storylet_id": "202871"}], [{"original_text": "We could see some of the fireworks over the harbor. ", "album_id": "72157601060548201", "photo_flickr_id": "929010235", "setting": "last-3-pick-old-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40574", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we could see some of the fireworks over the harbor .", "storylet_id": "202872"}], [{"original_text": "The finale was pretty intense. ", "album_id": "72157601060548201", "photo_flickr_id": "929855466", "setting": "last-3-pick-old-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40574", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the finale was pretty intense .", "storylet_id": "202873"}], [{"original_text": "The final firework was pretty big. ", "album_id": "72157601060548201", "photo_flickr_id": "929011071", "setting": "last-3-pick-old-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40574", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the final firework was pretty big .", "storylet_id": "202874"}], [{"original_text": "I'm so excited to tell you my story, the story of deep impact! (I'd like to note I was NOT the one to come up with the name for this program)", "album_id": "611801", "photo_flickr_id": "23608259", "setting": "first-2-pick-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "40575", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 'm so excited to tell you my story , the story of deep impact ! ( i 'd like to note i was not the one to come up with the name for this program )", "storylet_id": "202875"}], [{"original_text": "Today we've put together a meeting with other kids in the astronaut program.", "album_id": "611801", "photo_flickr_id": "23608239", "setting": "first-2-pick-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "40575", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today we 've put together a meeting with other kids in the astronaut program .", "storylet_id": "202876"}], [{"original_text": "I get to share with them photos from my last trip to the moon.", "album_id": "611801", "photo_flickr_id": "23608047", "setting": "first-2-pick-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "40575", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i get to share with them photos from my last trip to the moon .", "storylet_id": "202877"}], [{"original_text": "The craters were my favorite part to show them, I told them the biggest crater pictured housed an alien family who treated me to dinner.", "album_id": "611801", "photo_flickr_id": "23608095", "setting": "first-2-pick-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "40575", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the craters were my favorite part to show them , i told them the biggest crater pictured housed an alien family who treated me to dinner .", "storylet_id": "202878"}], [{"original_text": "Big mistake since I had to finish up the meeting with Q&A's, 99% of the questions were about the Blorts (my alien family).", "album_id": "611801", "photo_flickr_id": "23608138", "setting": "first-2-pick-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "40575", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "big mistake since i had to finish up the meeting with q & a 's , 99 % of the questions were about the blorts ( my alien family ) .", "storylet_id": "202879"}], [{"original_text": "The mission was deep impact. It was an attempt to crash into an asteroid.", "album_id": "611801", "photo_flickr_id": "23608259", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "40576", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the mission was deep impact . it was an attempt to crash into an asteroid .", "storylet_id": "202880"}], [{"original_text": "The scientists gathered to see the results.", "album_id": "611801", "photo_flickr_id": "23608111", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "40576", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the scientists gathered to see the results .", "storylet_id": "202881"}], [{"original_text": "The scientists made their presentation.", "album_id": "611801", "photo_flickr_id": "23608138", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "40576", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the scientists made their presentation .", "storylet_id": "202882"}], [{"original_text": "Then it was time to see if their hard work had payed off.", "album_id": "611801", "photo_flickr_id": "23608031", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "40576", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then it was time to see if their hard work had payed off .", "storylet_id": "202883"}], [{"original_text": "The video was good and the mission was a success.", "album_id": "611801", "photo_flickr_id": "23608095", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "40576", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the video was good and the mission was a success .", "storylet_id": "202884"}], [{"original_text": "The spokesperson from NASA had a patch on his jacket.", "album_id": "611801", "photo_flickr_id": "23608259", "setting": "last-3-pick-old-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "40577", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the spokesperson from organization had a patch on his jacket .", "storylet_id": "202885"}], [{"original_text": "A large screen was above the podium.", "album_id": "611801", "photo_flickr_id": "23608239", "setting": "last-3-pick-old-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "40577", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a large screen was above the podium .", "storylet_id": "202886"}], [{"original_text": "It showed images from space.", "album_id": "611801", "photo_flickr_id": "23608047", "setting": "last-3-pick-old-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "40577", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it showed images from space .", "storylet_id": "202887"}], [{"original_text": "There was a close-up of the moon.", "album_id": "611801", "photo_flickr_id": "23608095", "setting": "last-3-pick-old-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "40577", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a close-up of the moon .", "storylet_id": "202888"}], [{"original_text": "He later took questions from the audience.", "album_id": "611801", "photo_flickr_id": "23608138", "setting": "last-3-pick-old-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "40577", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he later took questions from the audience .", "storylet_id": "202889"}], [{"original_text": "Mr. Staple, a former astronaut, put on a presentation for a class.", "album_id": "611801", "photo_flickr_id": "23608259", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "40578", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mr. staple , a former astronaut , put on a presentation for a class .", "storylet_id": "202890"}], [{"original_text": "The class was eager to learn from Mr. Staple.", "album_id": "611801", "photo_flickr_id": "23608239", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "40578", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the class was eager to learn from mr. staple .", "storylet_id": "202891"}], [{"original_text": "He showed the class pictures he took while in space.", "album_id": "611801", "photo_flickr_id": "23608047", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "40578", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he showed the class pictures he took while in space .", "storylet_id": "202892"}], [{"original_text": "He showed some fascinating pictures of the moon that wowed the class.", "album_id": "611801", "photo_flickr_id": "23608095", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "40578", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he showed some fascinating pictures of the moon that wowed the class .", "storylet_id": "202893"}], [{"original_text": "Mr. Staple put on an interesting presentation and the class learned a whole lot from him.", "album_id": "611801", "photo_flickr_id": "23608138", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "40578", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mr. staple put on an interesting presentation and the class learned a whole lot from him .", "storylet_id": "202894"}], [{"original_text": "The astrology lecture was eagerly anticipated by the enthusiasts.", "album_id": "611801", "photo_flickr_id": "23608259", "setting": "last-3-pick-old-and-tell", "worker_id": "MLD2V2296233PNW", "story_id": "40579", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the astrology lecture was eagerly anticipated by the enthusiasts .", "storylet_id": "202895"}], [{"original_text": "Everyone was interested to see the latest slides.", "album_id": "611801", "photo_flickr_id": "23608111", "setting": "last-3-pick-old-and-tell", "worker_id": "MLD2V2296233PNW", "story_id": "40579", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was interested to see the latest slides .", "storylet_id": "202896"}], [{"original_text": "Though there was one glitch during the presentation.", "album_id": "611801", "photo_flickr_id": "23608138", "setting": "last-3-pick-old-and-tell", "worker_id": "MLD2V2296233PNW", "story_id": "40579", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "though there was one glitch during the presentation .", "storylet_id": "202897"}], [{"original_text": "It was an interesting lecture.", "album_id": "611801", "photo_flickr_id": "23608031", "setting": "last-3-pick-old-and-tell", "worker_id": "MLD2V2296233PNW", "story_id": "40579", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was an interesting lecture .", "storylet_id": "202898"}], [{"original_text": "This was by far my favorite slide.", "album_id": "611801", "photo_flickr_id": "23608095", "setting": "last-3-pick-old-and-tell", "worker_id": "MLD2V2296233PNW", "story_id": "40579", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was by far my favorite slide .", "storylet_id": "202899"}], [{"original_text": "I once had a dream, my dream was to grow from a small little firecracker, to a big firework like my daddy.", "album_id": "545050", "photo_flickr_id": "23765037", "setting": "first-2-pick-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "40580", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i once had a dream , my dream was to grow from a small little firecracker , to a big firework like my daddy .", "storylet_id": "202900"}], [{"original_text": "Then it actually happened! This magical day in early July I got all packed up and sent out to do work!", "album_id": "545050", "photo_flickr_id": "23765095", "setting": "first-2-pick-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "40580", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then it actually happened ! this magical day in early july i got all packed up and sent out to do work !", "storylet_id": "202901"}], [{"original_text": "I started as a dim red light, slowly glowing brighter and brighter. My friend rainbow cracker even joined me in the festivities!", "album_id": "545050", "photo_flickr_id": "23765415", "setting": "first-2-pick-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "40580", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i started as a dim red light , slowly glowing brighter and brighter . my friend rainbow cracker even joined me in the festivities !", "storylet_id": "202902"}], [{"original_text": "We grew and grew, we could hear people cheering in the distance, I had finally made it!", "album_id": "545050", "photo_flickr_id": "23765514", "setting": "first-2-pick-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "40580", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we grew and grew , we could hear people cheering in the distance , i had finally made it !", "storylet_id": "202903"}], [{"original_text": "But then something weird happened, I started to fade out and fall to the ground, I feel this may be my final journal entry..fading more dim..I hope dad is pro.... RIP little red firecracker 7/4/15", "album_id": "545050", "photo_flickr_id": "23764755", "setting": "first-2-pick-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "40580", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but then something weird happened , i started to fade out and fall to the ground , i feel this may be my final journal entry..fading more dim..i hope dad is pro ... . rip little red firecracker 7/4/15", "storylet_id": "202904"}], [{"original_text": "We went to the airport to watch the fireworks this year. ", "album_id": "545050", "photo_flickr_id": "23764538", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "40581", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the airport to watch the fireworks this year .", "storylet_id": "202905"}], [{"original_text": "There was a jumbo television there where entertainers sang. ", "album_id": "545050", "photo_flickr_id": "23765037", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "40581", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a jumbo television there where entertainers sang .", "storylet_id": "202906"}], [{"original_text": "Visions of the country accompanied the fireworks, too. ", "album_id": "545050", "photo_flickr_id": "23765095", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "40581", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "visions of the country accompanied the fireworks , too .", "storylet_id": "202907"}], [{"original_text": "They even broadcast the military at attention and the national anthem played. ", "album_id": "545050", "photo_flickr_id": "23765415", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "40581", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even broadcast the military at attention and the national anthem played .", "storylet_id": "202908"}], [{"original_text": "The patriotic finale came with broadcast images of the flag waving as the fireworks faded away. ", "album_id": "545050", "photo_flickr_id": "23764979", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "40581", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the patriotic finale came with broadcast images of the flag waving as the fireworks faded away .", "storylet_id": "202909"}], [{"original_text": "The fireworks show started with a bang.", "album_id": "545050", "photo_flickr_id": "23765037", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40582", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fireworks show started with a bang .", "storylet_id": "202910"}], [{"original_text": "It gradually got even louder.", "album_id": "545050", "photo_flickr_id": "23765095", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40582", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it gradually got even louder .", "storylet_id": "202911"}], [{"original_text": "Then it got even more colorful.", "album_id": "545050", "photo_flickr_id": "23765415", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40582", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then it got even more colorful .", "storylet_id": "202912"}], [{"original_text": "After that they started shooting several at a time.", "album_id": "545050", "photo_flickr_id": "23765514", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40582", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that they started shooting several at a time .", "storylet_id": "202913"}], [{"original_text": "The finale was amazing.", "album_id": "545050", "photo_flickr_id": "23764755", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40582", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finale was amazing .", "storylet_id": "202914"}], [{"original_text": "I watched the entire fireworks show this year.", "album_id": "545050", "photo_flickr_id": "23764538", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40583", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i watched the entire fireworks show this year .", "storylet_id": "202915"}], [{"original_text": "It was very long.", "album_id": "545050", "photo_flickr_id": "23765037", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40583", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was very long .", "storylet_id": "202916"}], [{"original_text": "I stayed there for about half an hour.", "album_id": "545050", "photo_flickr_id": "23765095", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40583", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i stayed there for about half an hour .", "storylet_id": "202917"}], [{"original_text": "When it was over there was a lot of smoke.", "album_id": "545050", "photo_flickr_id": "23765415", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40583", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when it was over there was a lot of smoke .", "storylet_id": "202918"}], [{"original_text": "I took many pictures.", "album_id": "545050", "photo_flickr_id": "23764979", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40583", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i took many pictures .", "storylet_id": "202919"}], [{"original_text": "Today is the fourth of July. The fireworks are just starting. ", "album_id": "545050", "photo_flickr_id": "23765037", "setting": "last-3-pick-old-and-tell", "worker_id": "EKDHCLOYDWCPPBW", "story_id": "40584", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is the fourth of july . the fireworks are just starting .", "storylet_id": "202920"}], [{"original_text": "They are so loud because we are so close. ", "album_id": "545050", "photo_flickr_id": "23765095", "setting": "last-3-pick-old-and-tell", "worker_id": "EKDHCLOYDWCPPBW", "story_id": "40584", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are so loud because we are so close .", "storylet_id": "202921"}], [{"original_text": "Look how beautiful they are!", "album_id": "545050", "photo_flickr_id": "23765415", "setting": "last-3-pick-old-and-tell", "worker_id": "EKDHCLOYDWCPPBW", "story_id": "40584", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look how beautiful they are !", "storylet_id": "202922"}], [{"original_text": "Sitting in the baseball field was the perfect stop to watch them. ", "album_id": "545050", "photo_flickr_id": "23765514", "setting": "last-3-pick-old-and-tell", "worker_id": "EKDHCLOYDWCPPBW", "story_id": "40584", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sitting in the baseball field was the perfect stop to watch them .", "storylet_id": "202923"}], [{"original_text": "This was the best fourth of July I've ever had. ", "album_id": "545050", "photo_flickr_id": "23764755", "setting": "last-3-pick-old-and-tell", "worker_id": "EKDHCLOYDWCPPBW", "story_id": "40584", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the best fourth of july i 've ever had .", "storylet_id": "202924"}], [{"original_text": "Anyone want some burgers?", "album_id": "548541", "photo_flickr_id": "23935430", "setting": "first-2-pick-and-tell", "worker_id": "PLJO3GXFSQMAP4T", "story_id": "40585", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "anyone want some burgers ?", "storylet_id": "202925"}], [{"original_text": "Na man, I'm just gunna take some of these oranges.", "album_id": "548541", "photo_flickr_id": "23935077", "setting": "first-2-pick-and-tell", "worker_id": "PLJO3GXFSQMAP4T", "story_id": "40585", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "na man , i 'm just gunna take some of these oranges .", "storylet_id": "202926"}], [{"original_text": "I can't believe u stole her oranges, you're a horrible person.", "album_id": "548541", "photo_flickr_id": "23935805", "setting": "first-2-pick-and-tell", "worker_id": "PLJO3GXFSQMAP4T", "story_id": "40585", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i ca n't believe u stole her oranges , you 're a horrible person .", "storylet_id": "202927"}], [{"original_text": "Come on guys lets leave. We shouldn't condone orange stealing.", "album_id": "548541", "photo_flickr_id": "23936540", "setting": "first-2-pick-and-tell", "worker_id": "PLJO3GXFSQMAP4T", "story_id": "40585", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "come on guys lets leave . we should n't condone orange stealing .", "storylet_id": "202928"}], [{"original_text": "Our groups much happier with out orange theives.", "album_id": "548541", "photo_flickr_id": "23939582", "setting": "first-2-pick-and-tell", "worker_id": "PLJO3GXFSQMAP4T", "story_id": "40585", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our groups much happier with out orange theives .", "storylet_id": "202929"}], [{"original_text": "Had a bunch of family over for the 4th of July.", "album_id": "548541", "photo_flickr_id": "23935077", "setting": "first-2-pick-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "40586", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "had a bunch of family over for the 4th of july .", "storylet_id": "202930"}], [{"original_text": "We barbequed and everything!", "album_id": "548541", "photo_flickr_id": "23935430", "setting": "first-2-pick-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "40586", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we barbequed and everything !", "storylet_id": "202931"}], [{"original_text": "Then it was time to walk down by the lake for fireworks.", "album_id": "548541", "photo_flickr_id": "23936540", "setting": "first-2-pick-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "40586", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then it was time to walk down by the lake for fireworks .", "storylet_id": "202932"}], [{"original_text": "That fireworks were awesome!", "album_id": "548541", "photo_flickr_id": "23937960", "setting": "first-2-pick-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "40586", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that fireworks were awesome !", "storylet_id": "202933"}], [{"original_text": "But the best part was the grand finale!", "album_id": "548541", "photo_flickr_id": "23938662", "setting": "first-2-pick-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "40586", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the best part was the grand finale !", "storylet_id": "202934"}], [{"original_text": "Before we went to the fireworks, we grilled burgers.", "album_id": "548541", "photo_flickr_id": "23935430", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "40587", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before we went to the fireworks , we grilled burgers .", "storylet_id": "202935"}], [{"original_text": "Our friends had a great time snacking.", "album_id": "548541", "photo_flickr_id": "23935077", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "40587", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our friends had a great time snacking .", "storylet_id": "202936"}], [{"original_text": "It was a beautiful day for lounging around.", "album_id": "548541", "photo_flickr_id": "23935805", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "40587", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a beautiful day for lounging around .", "storylet_id": "202937"}], [{"original_text": "We went to the park and found a spot to stand.", "album_id": "548541", "photo_flickr_id": "23936540", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "40587", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went to the park and found a spot to stand .", "storylet_id": "202938"}], [{"original_text": "All of us were very happy with the kinship.", "album_id": "548541", "photo_flickr_id": "23939582", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "40587", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of us were very happy with the kinship .", "storylet_id": "202939"}], [{"original_text": "I invited all my friends to my barbecue tonight.", "album_id": "548541", "photo_flickr_id": "23935430", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40588", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i invited all my friends to my barbecue tonight .", "storylet_id": "202940"}], [{"original_text": "We had some fruit.", "album_id": "548541", "photo_flickr_id": "23935077", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40588", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had some fruit .", "storylet_id": "202941"}], [{"original_text": "We spent hours sitting out on the porch drinking beer.", "album_id": "548541", "photo_flickr_id": "23935805", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40588", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we spent hours sitting out on the porch drinking beer .", "storylet_id": "202942"}], [{"original_text": "Afterward we went for a walk.", "album_id": "548541", "photo_flickr_id": "23936540", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40588", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we went for a walk .", "storylet_id": "202943"}], [{"original_text": "We took some pictures at night.", "album_id": "548541", "photo_flickr_id": "23939582", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40588", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took some pictures at night .", "storylet_id": "202944"}], [{"original_text": "Friends gather for a cook out for the 4th of July.", "album_id": "548541", "photo_flickr_id": "23935077", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "40589", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends gather for a cook out for the 4th of july .", "storylet_id": "202945"}], [{"original_text": "The gentleman is in charge of the burgers and dogs.", "album_id": "548541", "photo_flickr_id": "23935430", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "40589", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the gentleman is in charge of the burgers and dogs .", "storylet_id": "202946"}], [{"original_text": "Friends gather to watch the fireworks.", "album_id": "548541", "photo_flickr_id": "23936540", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "40589", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "friends gather to watch the fireworks .", "storylet_id": "202947"}], [{"original_text": "The fireworks seen the from the bridge.", "album_id": "548541", "photo_flickr_id": "23937960", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "40589", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fireworks seen the from the bridge .", "storylet_id": "202948"}], [{"original_text": "The grand finale for the holiday fireworks.", "album_id": "548541", "photo_flickr_id": "23938662", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "40589", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the grand finale for the holiday fireworks .", "storylet_id": "202949"}], [{"original_text": "We visited Nathan's for a hot dog!", "album_id": "548676", "photo_flickr_id": "23943122", "setting": "first-2-pick-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "40590", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited [male] 's for a hot dog !", "storylet_id": "202950"}], [{"original_text": "A lot of people were in line ahead of us.", "album_id": "548676", "photo_flickr_id": "23943559", "setting": "first-2-pick-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "40590", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of people were in line ahead of us .", "storylet_id": "202951"}], [{"original_text": "The baby didn't care one way or the other.", "album_id": "548676", "photo_flickr_id": "23947894", "setting": "first-2-pick-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "40590", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the baby did n't care one way or the other .", "storylet_id": "202952"}], [{"original_text": "Big sign advertising their hot dogs.", "album_id": "548676", "photo_flickr_id": "23949853", "setting": "first-2-pick-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "40590", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "big sign advertising their hot dogs .", "storylet_id": "202953"}], [{"original_text": "She winks because she knows we will get in eventually.", "album_id": "548676", "photo_flickr_id": "23952799", "setting": "first-2-pick-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "40590", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she winks because she knows we will get in eventually .", "storylet_id": "202954"}], [{"original_text": "We went into the city to get lunch that day.", "album_id": "548676", "photo_flickr_id": "23943122", "setting": "first-2-pick-and-tell", "worker_id": "2O9Z1NRHQC3WZL1", "story_id": "40591", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went into the city to get lunch that day .", "storylet_id": "202955"}], [{"original_text": "We really wanted hot dogs, so that's what we sought out.", "album_id": "548676", "photo_flickr_id": "23949853", "setting": "first-2-pick-and-tell", "worker_id": "2O9Z1NRHQC3WZL1", "story_id": "40591", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we really wanted hot dogs , so that 's what we sought out .", "storylet_id": "202956"}], [{"original_text": "We had a short picnic, and we all had hot dogs.", "album_id": "548676", "photo_flickr_id": "23943559", "setting": "first-2-pick-and-tell", "worker_id": "2O9Z1NRHQC3WZL1", "story_id": "40591", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a short picnic , and we all had hot dogs .", "storylet_id": "202957"}], [{"original_text": "We saw a short parade, so we all got ready to look at it.", "album_id": "548676", "photo_flickr_id": "23948177", "setting": "first-2-pick-and-tell", "worker_id": "2O9Z1NRHQC3WZL1", "story_id": "40591", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw a short parade , so we all got ready to look at it .", "storylet_id": "202958"}], [{"original_text": "Afterwards, we even got time to play some tennis.", "album_id": "548676", "photo_flickr_id": "23952336", "setting": "first-2-pick-and-tell", "worker_id": "2O9Z1NRHQC3WZL1", "story_id": "40591", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , we even got time to play some tennis .", "storylet_id": "202959"}], [{"original_text": "One Sunday, my friends and I decided to go to the boardwalk.", "album_id": "548676", "photo_flickr_id": "23943122", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "40592", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one sunday , my friends and i decided to go to the boardwalk .", "storylet_id": "202960"}], [{"original_text": "We saw the original Nathan's Famous, and stood in line for a hot dog.", "album_id": "548676", "photo_flickr_id": "23949853", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "40592", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw the original [male] 's famous , and stood in line for a hot dog .", "storylet_id": "202961"}], [{"original_text": "We sat around after eating our hot dogs to allow our food to digest.", "album_id": "548676", "photo_flickr_id": "23943559", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "40592", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we sat around after eating our hot dogs to allow our food to digest .", "storylet_id": "202962"}], [{"original_text": "Over to the side there was a volleyball match going on, which we enjoyed.", "album_id": "548676", "photo_flickr_id": "23948177", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "40592", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "over to the side there was a volleyball match going on , which we enjoyed .", "storylet_id": "202963"}], [{"original_text": "Finally, we wandered off down the street to see what else there was around.", "album_id": "548676", "photo_flickr_id": "23952336", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "40592", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , we wandered off down the street to see what else there was around .", "storylet_id": "202964"}], [{"original_text": "I went down to the market yesterday.", "album_id": "548676", "photo_flickr_id": "23943122", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40593", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went down to the market yesterday .", "storylet_id": "202965"}], [{"original_text": "I bought a huge hot dog while I was there.", "album_id": "548676", "photo_flickr_id": "23949853", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40593", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i bought a huge hot dog while i was there .", "storylet_id": "202966"}], [{"original_text": "There were a ton of other people there as well.", "album_id": "548676", "photo_flickr_id": "23943559", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40593", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a ton of other people there as well .", "storylet_id": "202967"}], [{"original_text": "I walked by some kind of presentation while I was there.", "album_id": "548676", "photo_flickr_id": "23948177", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40593", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i walked by some kind of presentation while i was there .", "storylet_id": "202968"}], [{"original_text": "There were some people playing tennis as well.", "album_id": "548676", "photo_flickr_id": "23952336", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40593", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were some people playing tennis as well .", "storylet_id": "202969"}], [{"original_text": "We arrived at the hot dog restaurant.", "album_id": "548676", "photo_flickr_id": "23943122", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "40594", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at the hot dog restaurant .", "storylet_id": "202970"}], [{"original_text": "We anxiously awaited for our hot dogs.", "album_id": "548676", "photo_flickr_id": "23943559", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "40594", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we anxiously awaited for our hot dogs .", "storylet_id": "202971"}], [{"original_text": "The youngest of us was nervous about trying the food.", "album_id": "548676", "photo_flickr_id": "23947894", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "40594", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the youngest of us was nervous about trying the food .", "storylet_id": "202972"}], [{"original_text": "Once we saw the hot dog sign, we all started to get hungry.", "album_id": "548676", "photo_flickr_id": "23949853", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "40594", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once we saw the hot dog sign , we all started to get hungry .", "storylet_id": "202973"}], [{"original_text": "My sister had to use a pacifier to keep her hunger in check.", "album_id": "548676", "photo_flickr_id": "23952799", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "40594", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my sister had to use a pacifier to keep her hunger in check .", "storylet_id": "202974"}], [{"original_text": "Went out to the bar to check out Vibe a really good local band.", "album_id": "549537", "photo_flickr_id": "23991482", "setting": "first-2-pick-and-tell", "worker_id": "55O109C912PNYBI", "story_id": "40595", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went out to the bar to check out vibe a really good local band .", "storylet_id": "202975"}], [{"original_text": "Check put Dave on the drums.", "album_id": "549537", "photo_flickr_id": "23991359", "setting": "first-2-pick-and-tell", "worker_id": "55O109C912PNYBI", "story_id": "40595", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "check put [male] on the drums .", "storylet_id": "202976"}], [{"original_text": "They talked Jenny into playing a song with the band,", "album_id": "549537", "photo_flickr_id": "23992302", "setting": "first-2-pick-and-tell", "worker_id": "55O109C912PNYBI", "story_id": "40595", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they talked [female] into playing a song with the band ,", "storylet_id": "202977"}], [{"original_text": "She went all out.", "album_id": "549537", "photo_flickr_id": "23992111", "setting": "first-2-pick-and-tell", "worker_id": "55O109C912PNYBI", "story_id": "40595", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she went all out .", "storylet_id": "202978"}], [{"original_text": "We were shocked. She did an excellent job.", "album_id": "549537", "photo_flickr_id": "23992941", "setting": "first-2-pick-and-tell", "worker_id": "55O109C912PNYBI", "story_id": "40595", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were shocked . she did an excellent job .", "storylet_id": "202979"}], [{"original_text": "Our first time playing at the club and it was packed. ", "album_id": "549537", "photo_flickr_id": "23992111", "setting": "first-2-pick-and-tell", "worker_id": "5E07LSY091ZAYYU", "story_id": "40596", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our first time playing at the club and it was packed .", "storylet_id": "202980"}], [{"original_text": "Our new lead singer knocked 'em dead!", "album_id": "549537", "photo_flickr_id": "23992302", "setting": "first-2-pick-and-tell", "worker_id": "5E07LSY091ZAYYU", "story_id": "40596", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our new lead singer knocked 'em dead !", "storylet_id": "202981"}], [{"original_text": "I don't know who stapled the parachute to the ceiling but it was awesome.", "album_id": "549537", "photo_flickr_id": "23991627", "setting": "first-2-pick-and-tell", "worker_id": "5E07LSY091ZAYYU", "story_id": "40596", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i do n't know who stapled the parachute to the ceiling but it was awesome .", "storylet_id": "202982"}], [{"original_text": "Then it was my time to do a guitar solo. Of course I picked Hendrixs' Voodoo Chile.", "album_id": "549537", "photo_flickr_id": "23991482", "setting": "first-2-pick-and-tell", "worker_id": "5E07LSY091ZAYYU", "story_id": "40596", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then it was my time to do a guitar solo . of course i picked hendrixs ' voodoo location .", "storylet_id": "202983"}], [{"original_text": "By the end of my solo my fingers were pretty much raw. And the crowd loved it! ", "album_id": "549537", "photo_flickr_id": "23991359", "setting": "first-2-pick-and-tell", "worker_id": "5E07LSY091ZAYYU", "story_id": "40596", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of my solo my fingers were pretty much raw . and the crowd loved it !", "storylet_id": "202984"}], [{"original_text": "We went down to the local bar for a concert.", "album_id": "549537", "photo_flickr_id": "23991482", "setting": "last-3-pick-old-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "40597", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went down to the local bar for a concert .", "storylet_id": "202985"}], [{"original_text": "The band was really good and entertaining ", "album_id": "549537", "photo_flickr_id": "23991359", "setting": "last-3-pick-old-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "40597", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the band was really good and entertaining", "storylet_id": "202986"}], [{"original_text": "They had on fun outfits and sang well ", "album_id": "549537", "photo_flickr_id": "23992302", "setting": "last-3-pick-old-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "40597", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had on fun outfits and sang well", "storylet_id": "202987"}], [{"original_text": "We were really glad we were able to see them", "album_id": "549537", "photo_flickr_id": "23992111", "setting": "last-3-pick-old-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "40597", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were really glad we were able to see them", "storylet_id": "202988"}], [{"original_text": "Our friends all loved it too and we had a great time", "album_id": "549537", "photo_flickr_id": "23992941", "setting": "last-3-pick-old-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "40597", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our friends all loved it too and we had a great time", "storylet_id": "202989"}], [{"original_text": "I went to the concert last week.", "album_id": "549537", "photo_flickr_id": "23991482", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40598", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the concert last week .", "storylet_id": "202990"}], [{"original_text": "The music they were playing was great.", "album_id": "549537", "photo_flickr_id": "23991359", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40598", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the music they were playing was great .", "storylet_id": "202991"}], [{"original_text": "They had decorated the entire place with Christmas lights.", "album_id": "549537", "photo_flickr_id": "23992302", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40598", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had decorated the entire place with christmas lights .", "storylet_id": "202992"}], [{"original_text": "The singer was very talented.", "album_id": "549537", "photo_flickr_id": "23992111", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40598", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the singer was very talented .", "storylet_id": "202993"}], [{"original_text": "I spent all night there with my friends.", "album_id": "549537", "photo_flickr_id": "23992941", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40598", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i spent all night there with my friends .", "storylet_id": "202994"}], [{"original_text": "Through the haze of memory, we can remember the spectacular night. ", "album_id": "549537", "photo_flickr_id": "23991482", "setting": "last-3-pick-old-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40599", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "through the haze of memory , we can remember the spectacular night .", "storylet_id": "202995"}], [{"original_text": "There was wonderful music provided. ", "album_id": "549537", "photo_flickr_id": "23991359", "setting": "last-3-pick-old-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40599", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was wonderful music provided .", "storylet_id": "202996"}], [{"original_text": "Beautiful songs were sung as well. ", "album_id": "549537", "photo_flickr_id": "23992302", "setting": "last-3-pick-old-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40599", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "beautiful songs were sung as well .", "storylet_id": "202997"}], [{"original_text": "The experience lasted long into the night. ", "album_id": "549537", "photo_flickr_id": "23992111", "setting": "last-3-pick-old-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40599", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the experience lasted long into the night .", "storylet_id": "202998"}], [{"original_text": "And though the memories aren't quite crystal clear, the remembrance of fun never fades.", "album_id": "549537", "photo_flickr_id": "23992941", "setting": "last-3-pick-old-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40599", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and though the memories are n't quite crystal clear , the remembrance of fun never fades .", "storylet_id": "202999"}], [{"original_text": "We went to the local firework Show", "album_id": "1005013", "photo_flickr_id": "45997713", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "40600", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the local firework show", "storylet_id": "203000"}], [{"original_text": "They were so big and loud", "album_id": "1005013", "photo_flickr_id": "45997729", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "40600", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were so big and loud", "storylet_id": "203001"}], [{"original_text": "Some of them were all different colors", "album_id": "1005013", "photo_flickr_id": "45997749", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "40600", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them were all different colors", "storylet_id": "203002"}], [{"original_text": "This one was one of our favorites", "album_id": "1005013", "photo_flickr_id": "45997848", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "40600", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one was one of our favorites", "storylet_id": "203003"}], [{"original_text": "And it all ended with a huge display", "album_id": "1005013", "photo_flickr_id": "45997859", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "40600", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and it all ended with a huge display", "storylet_id": "203004"}], [{"original_text": "The fireworks over the city were amazing.", "album_id": "1005013", "photo_flickr_id": "45997713", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "40601", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fireworks over the city were amazing .", "storylet_id": "203005"}], [{"original_text": "They light up the city and sky.", "album_id": "1005013", "photo_flickr_id": "45997749", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "40601", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they light up the city and sky .", "storylet_id": "203006"}], [{"original_text": "This one was really cool..red, white and blue.", "album_id": "1005013", "photo_flickr_id": "45997814", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "40601", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one was really cool..red , white and blue .", "storylet_id": "203007"}], [{"original_text": "I liked this one. It was so pretty.", "album_id": "1005013", "photo_flickr_id": "45997848", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "40601", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i liked this one . it was so pretty .", "storylet_id": "203008"}], [{"original_text": "Oh wait, I think this one is my favorite.", "album_id": "1005013", "photo_flickr_id": "45997859", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "40601", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "oh wait , i think this one is my favorite .", "storylet_id": "203009"}], [{"original_text": "There were a lot of fireworks in the sky last night.", "album_id": "1005013", "photo_flickr_id": "45997713", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40602", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of fireworks in the sky last night .", "storylet_id": "203010"}], [{"original_text": "I didn't know what holiday they were celebrating.", "album_id": "1005013", "photo_flickr_id": "45997729", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40602", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i did n't know what holiday they were celebrating .", "storylet_id": "203011"}], [{"original_text": "They had a wonderful show.", "album_id": "1005013", "photo_flickr_id": "45997749", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40602", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a wonderful show .", "storylet_id": "203012"}], [{"original_text": "There were many different types of fireworks.", "album_id": "1005013", "photo_flickr_id": "45997848", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40602", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many different types of fireworks .", "storylet_id": "203013"}], [{"original_text": "It lasted for almost half an hour before it ended.", "album_id": "1005013", "photo_flickr_id": "45997859", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40602", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it lasted for almost half an hour before it ended .", "storylet_id": "203014"}], [{"original_text": "When the sun went down, it was time for the fireworks display.", "album_id": "1005013", "photo_flickr_id": "45997713", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40603", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when the sun went down , it was time for the fireworks display .", "storylet_id": "203015"}], [{"original_text": "There was red and white fireworks.", "album_id": "1005013", "photo_flickr_id": "45997749", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40603", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was red and white fireworks .", "storylet_id": "203016"}], [{"original_text": "Then there were blue fireworks.", "album_id": "1005013", "photo_flickr_id": "45997814", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40603", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then there were blue fireworks .", "storylet_id": "203017"}], [{"original_text": "After that there was white ones coming from the ground.", "album_id": "1005013", "photo_flickr_id": "45997848", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40603", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that there was white ones coming from the ground .", "storylet_id": "203018"}], [{"original_text": "Finally, there were a lot of red ones going off.", "album_id": "1005013", "photo_flickr_id": "45997859", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40603", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , there were a lot of red ones going off .", "storylet_id": "203019"}], [{"original_text": "The fireworks were bright", "album_id": "1005013", "photo_flickr_id": "45997713", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "40604", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fireworks were bright", "storylet_id": "203020"}], [{"original_text": "and many different colors.", "album_id": "1005013", "photo_flickr_id": "45997749", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "40604", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and many different colors .", "storylet_id": "203021"}], [{"original_text": "they were blues", "album_id": "1005013", "photo_flickr_id": "45997814", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "40604", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were blues", "storylet_id": "203022"}], [{"original_text": "and purples", "album_id": "1005013", "photo_flickr_id": "45997848", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "40604", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and purples", "storylet_id": "203023"}], [{"original_text": "and they were huge in the sky.", "album_id": "1005013", "photo_flickr_id": "45997859", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "40604", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they were huge in the sky .", "storylet_id": "203024"}], [{"original_text": "Today I marveled at the beauty of the sunrise.", "album_id": "1190991", "photo_flickr_id": "54918635", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40605", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i marveled at the beauty of the sunrise .", "storylet_id": "203025"}], [{"original_text": "I was amazed at how man could build the Golden Gate Bridge.", "album_id": "1190991", "photo_flickr_id": "54918484", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40605", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was amazed at how man could build the location location location .", "storylet_id": "203026"}], [{"original_text": "I looked out over the bay and counted my blessings.", "album_id": "1190991", "photo_flickr_id": "54918705", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40605", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i looked out over the bay and counted my blessings .", "storylet_id": "203027"}], [{"original_text": "The sun set over the mountains was glorious.", "album_id": "1190991", "photo_flickr_id": "54918694", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40605", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sun set over the mountains was glorious .", "storylet_id": "203028"}], [{"original_text": "Then I watched as night crawled in.", "album_id": "1190991", "photo_flickr_id": "54918677", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40605", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then i watched as night crawled in .", "storylet_id": "203029"}], [{"original_text": "I just got my geologist degree and I need to go find my rock on. ", "album_id": "1190991", "photo_flickr_id": "54918533", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "40606", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i just got my geologist degree and i need to go find my rock on .", "storylet_id": "203030"}], [{"original_text": "I first started here and thought this was interesting. ", "album_id": "1190991", "photo_flickr_id": "54918568", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "40606", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i first started here and thought this was interesting .", "storylet_id": "203031"}], [{"original_text": "I then crossed the bridge to get to the other side and see what geologically was over there. ", "album_id": "1190991", "photo_flickr_id": "54918484", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "40606", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i then crossed the bridge to get to the other side and see what geologically was over there .", "storylet_id": "203032"}], [{"original_text": "I climbed to the top of the mountain for some interesting geological structures. ", "album_id": "1190991", "photo_flickr_id": "54918705", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "40606", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i climbed to the top of the mountain for some interesting geological structures .", "storylet_id": "203033"}], [{"original_text": "I then drove home very fastly. ", "album_id": "1190991", "photo_flickr_id": "54918719", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "40606", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i then drove home very fastly .", "storylet_id": "203034"}], [{"original_text": "On our vacation we found something in the dirt we had to take a picture of.", "album_id": "1190991", "photo_flickr_id": "54918533", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40607", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our vacation we found something in the dirt we had to take a picture of .", "storylet_id": "203035"}], [{"original_text": "We aren't really sure what is was.", "album_id": "1190991", "photo_flickr_id": "54918568", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40607", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are n't really sure what is was .", "storylet_id": "203036"}], [{"original_text": "We made our way across the golden gate bridge.", "album_id": "1190991", "photo_flickr_id": "54918484", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40607", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we made our way across the golden gate bridge .", "storylet_id": "203037"}], [{"original_text": "We got to the top of the mountain", "album_id": "1190991", "photo_flickr_id": "54918705", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40607", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got to the top of the mountain", "storylet_id": "203038"}], [{"original_text": "and on the way back we took of picture of the bridge that was over exposed.", "album_id": "1190991", "photo_flickr_id": "54918719", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40607", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and on the way back we took of picture of the bridge that was over exposed .", "storylet_id": "203039"}], [{"original_text": "It is going to be a great day today, up bright and early.", "album_id": "1190991", "photo_flickr_id": "54918635", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "40608", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is going to be a great day today , up bright and early .", "storylet_id": "203040"}], [{"original_text": "We are taking a road trip, time to cross the bridge.", "album_id": "1190991", "photo_flickr_id": "54918484", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "40608", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are taking a road trip , time to cross the bridge .", "storylet_id": "203041"}], [{"original_text": "We are headed over to go for a nice hike.", "album_id": "1190991", "photo_flickr_id": "54918705", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "40608", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are headed over to go for a nice hike .", "storylet_id": "203042"}], [{"original_text": "We made it pretty high up, what a great view.", "album_id": "1190991", "photo_flickr_id": "54918694", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "40608", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we made it pretty high up , what a great view .", "storylet_id": "203043"}], [{"original_text": "It is getting a bit cloudy, we can even see the clouds over the hills.", "album_id": "1190991", "photo_flickr_id": "54918677", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "40608", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is getting a bit cloudy , we can even see the clouds over the hills .", "storylet_id": "203044"}], [{"original_text": "The view of the sunset was beautiful.", "album_id": "1190991", "photo_flickr_id": "54918635", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40609", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the view of the sunset was beautiful .", "storylet_id": "203045"}], [{"original_text": "We decided to get back on the road before it got too dark.", "album_id": "1190991", "photo_flickr_id": "54918484", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40609", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided to get back on the road before it got too dark .", "storylet_id": "203046"}], [{"original_text": "When we hopped on the plane we could see the entire landscape.", "album_id": "1190991", "photo_flickr_id": "54918705", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40609", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we hopped on the plane we could see the entire landscape .", "storylet_id": "203047"}], [{"original_text": "The view of the sunset was beautiful from the plane.", "album_id": "1190991", "photo_flickr_id": "54918694", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40609", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view of the sunset was beautiful from the plane .", "storylet_id": "203048"}], [{"original_text": "I had a great time.", "album_id": "1190991", "photo_flickr_id": "54918677", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40609", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time .", "storylet_id": "203049"}], [{"original_text": "I went on vacation last year.", "album_id": "852521", "photo_flickr_id": "38959590", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40610", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on vacation last year .", "storylet_id": "203050"}], [{"original_text": "I brought my entire family with us.", "album_id": "852521", "photo_flickr_id": "38959588", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40610", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i brought my entire family with us .", "storylet_id": "203051"}], [{"original_text": "We took a lot of pictures of the giant waterfall.", "album_id": "852521", "photo_flickr_id": "38957179", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40610", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took a lot of pictures of the giant waterfall .", "storylet_id": "203052"}], [{"original_text": "It was very cold there.", "album_id": "852521", "photo_flickr_id": "38957178", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40610", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was very cold there .", "storylet_id": "203053"}], [{"original_text": "We stayed at a nearby hotel.", "album_id": "852521", "photo_flickr_id": "38924577", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "40610", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we stayed at a nearby hotel .", "storylet_id": "203054"}], [{"original_text": "It's a sun-shiny day and everyone is set to enjoy it.", "album_id": "852521", "photo_flickr_id": "38957181", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40611", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a sun-shiny day and everyone is set to enjoy it .", "storylet_id": "203055"}], [{"original_text": "The water is beautiful, reflecting rainbows.", "album_id": "852521", "photo_flickr_id": "38959587", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40611", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water is beautiful , reflecting rainbows .", "storylet_id": "203056"}], [{"original_text": "Everyone enjoys it as they look on.", "album_id": "852521", "photo_flickr_id": "38957182", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40611", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone enjoys it as they look on .", "storylet_id": "203057"}], [{"original_text": "Mist is cast high into the air from the churning waters, and everyone must realize an important fact of being so near.", "album_id": "852521", "photo_flickr_id": "38957179", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40611", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mist is cast high into the air from the churning waters , and everyone must realize an important fact of being so near .", "storylet_id": "203058"}], [{"original_text": "You better be prepared to get wet!", "album_id": "852521", "photo_flickr_id": "38941597", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40611", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you better be prepared to get wet !", "storylet_id": "203059"}], [{"original_text": "Getting ready to see the Falls!", "album_id": "852521", "photo_flickr_id": "38957181", "setting": "last-3-pick-old-and-tell", "worker_id": "0TMN6SXOQ0G0V5U", "story_id": "40612", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting ready to see the falls !", "storylet_id": "203060"}], [{"original_text": "Rainbows streaking through the water ", "album_id": "852521", "photo_flickr_id": "38959587", "setting": "last-3-pick-old-and-tell", "worker_id": "0TMN6SXOQ0G0V5U", "story_id": "40612", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "rainbows streaking through the water", "storylet_id": "203061"}], [{"original_text": "Just a few people lining up to see Niagara. The Amish love it!", "album_id": "852521", "photo_flickr_id": "38957182", "setting": "last-3-pick-old-and-tell", "worker_id": "0TMN6SXOQ0G0V5U", "story_id": "40612", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "just a few people lining up to see location . the amish love it !", "storylet_id": "203062"}], [{"original_text": "Two falls making a whole lot of mist.", "album_id": "852521", "photo_flickr_id": "38957179", "setting": "last-3-pick-old-and-tell", "worker_id": "0TMN6SXOQ0G0V5U", "story_id": "40612", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two falls making a whole lot of mist .", "storylet_id": "203063"}], [{"original_text": "Rocking the poncho! That was intense!", "album_id": "852521", "photo_flickr_id": "38941597", "setting": "last-3-pick-old-and-tell", "worker_id": "0TMN6SXOQ0G0V5U", "story_id": "40612", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "rocking the poncho ! that was intense !", "storylet_id": "203064"}], [{"original_text": "Kathy and MArissa posing for a picture ", "album_id": "852521", "photo_flickr_id": "38957181", "setting": "last-3-pick-old-and-tell", "worker_id": "6I5IDK2GHYSGG2W", "story_id": "40613", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and marissa posing for a picture", "storylet_id": "203065"}], [{"original_text": "The water rushed heavily.", "album_id": "852521", "photo_flickr_id": "38959587", "setting": "last-3-pick-old-and-tell", "worker_id": "6I5IDK2GHYSGG2W", "story_id": "40613", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water rushed heavily .", "storylet_id": "203066"}], [{"original_text": "Amish people looked over the falls..", "album_id": "852521", "photo_flickr_id": "38957182", "setting": "last-3-pick-old-and-tell", "worker_id": "6I5IDK2GHYSGG2W", "story_id": "40613", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "amish people looked over the falls..", "storylet_id": "203067"}], [{"original_text": "The falls are beautiful,", "album_id": "852521", "photo_flickr_id": "38957179", "setting": "last-3-pick-old-and-tell", "worker_id": "6I5IDK2GHYSGG2W", "story_id": "40613", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the falls are beautiful ,", "storylet_id": "203068"}], [{"original_text": "Kathy looks happy", "album_id": "852521", "photo_flickr_id": "38941597", "setting": "last-3-pick-old-and-tell", "worker_id": "6I5IDK2GHYSGG2W", "story_id": "40613", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] looks happy", "storylet_id": "203069"}], [{"original_text": "They were near a waterfall", "album_id": "852521", "photo_flickr_id": "38959590", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "40614", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were near a waterfall", "storylet_id": "203070"}], [{"original_text": "when they saw religious people", "album_id": "852521", "photo_flickr_id": "38959588", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "40614", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when they saw religious people", "storylet_id": "203071"}], [{"original_text": "looking on.", "album_id": "852521", "photo_flickr_id": "38957179", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "40614", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looking on .", "storylet_id": "203072"}], [{"original_text": "She did not know what to say ", "album_id": "852521", "photo_flickr_id": "38957178", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "40614", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she did not know what to say", "storylet_id": "203073"}], [{"original_text": "about the amount of people.", "album_id": "852521", "photo_flickr_id": "38924577", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "40614", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "about the amount of people .", "storylet_id": "203074"}], [{"original_text": "The family gathered to celebrate the 4th of July.", "album_id": "72157594185853788", "photo_flickr_id": "180756710", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40615", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family gathered to celebrate the 4th of july .", "storylet_id": "203075"}], [{"original_text": "We made dinner and built a gun firing range.", "album_id": "72157594185853788", "photo_flickr_id": "180761371", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40615", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made dinner and built a gun firing range .", "storylet_id": "203076"}], [{"original_text": "My husband showed his rifle gun accuracy.", "album_id": "72157594185853788", "photo_flickr_id": "180768750", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40615", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my husband showed his rifle gun accuracy .", "storylet_id": "203077"}], [{"original_text": "One of our family members brought a flame thrower.", "album_id": "72157594185853788", "photo_flickr_id": "180770151", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40615", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of our family members brought a flame thrower .", "storylet_id": "203078"}], [{"original_text": "During the night, we watched the fireworks from our backyard. ", "album_id": "72157594185853788", "photo_flickr_id": "180772051", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40615", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "during the night , we watched the fireworks from our backyard .", "storylet_id": "203079"}], [{"original_text": "Everything was ready for the 4th of July.", "album_id": "72157594185853788", "photo_flickr_id": "180757809", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40616", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everything was ready for the 4th of july .", "storylet_id": "203080"}], [{"original_text": "They all had some beer to keep cool.", "album_id": "72157594185853788", "photo_flickr_id": "180756710", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40616", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all had some beer to keep cool .", "storylet_id": "203081"}], [{"original_text": "Then they made a shooting range out in the yard.", "album_id": "72157594185853788", "photo_flickr_id": "180764308", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40616", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they made a shooting range out in the yard .", "storylet_id": "203082"}], [{"original_text": "After that, they all took turns shooting at the bottles.", "album_id": "72157594185853788", "photo_flickr_id": "180763486", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40616", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that , they all took turns shooting at the bottles .", "storylet_id": "203083"}], [{"original_text": "When the sun went down, it was time to start lighting the fireworks.", "album_id": "72157594185853788", "photo_flickr_id": "180770151", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40616", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the sun went down , it was time to start lighting the fireworks .", "storylet_id": "203084"}], [{"original_text": "Today I had a party for myself! I drank Texas pop and smoked cigarettes! ", "album_id": "72157594185853788", "photo_flickr_id": "180757809", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "40617", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i had a party for myself ! i drank location pop and smoked cigarettes !", "storylet_id": "203085"}], [{"original_text": "I even drank a beer! I got so drunk off that beer that I decided I wanted to shoot something! ", "album_id": "72157594185853788", "photo_flickr_id": "180756710", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "40617", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i even drank a beer ! i got so drunk off that beer that i decided i wanted to shoot something !", "storylet_id": "203086"}], [{"original_text": "I set up a lot of boards and bottles and a propane tank! Why? Because I'm a badass! ", "album_id": "72157594185853788", "photo_flickr_id": "180764308", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "40617", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i set up a lot of boards and bottles and a propane tank ! why ? because i 'm a badass !", "storylet_id": "203087"}], [{"original_text": "I got out my husband's rifle. The husband who forgot my birthday and didn't come home! I shot all those damn cans off the poles. ", "album_id": "72157594185853788", "photo_flickr_id": "180763486", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "40617", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i got out my husband 's rifle . the husband who forgot my birthday and did n't come home ! i shot all those damn cans off the poles .", "storylet_id": "203088"}], [{"original_text": "Then I shot the propane tank! KABOOM! I caught my whole yard on fire and the house! Happy effing birthday to me!", "album_id": "72157594185853788", "photo_flickr_id": "180770151", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "40617", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then i shot the propane tank ! kaboom ! i caught my whole yard on fire and the house ! happy effing birthday to me !", "storylet_id": "203089"}], [{"original_text": "We had a little shoot out for my wife's birthday this week.", "album_id": "72157594185853788", "photo_flickr_id": "180757809", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "40618", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a little shoot out for my wife 's birthday this week .", "storylet_id": "203090"}], [{"original_text": "There was plenty of beer for everyone.", "album_id": "72157594185853788", "photo_flickr_id": "180756710", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "40618", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was plenty of beer for everyone .", "storylet_id": "203091"}], [{"original_text": "We set up an elaborate shooting range for my wife,", "album_id": "72157594185853788", "photo_flickr_id": "180764308", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "40618", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we set up an elaborate shooting range for my wife ,", "storylet_id": "203092"}], [{"original_text": "and gave her the gun, loaded with explosive rounds as a joke.", "album_id": "72157594185853788", "photo_flickr_id": "180763486", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "40618", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and gave her the gun , loaded with explosive rounds as a joke .", "storylet_id": "203093"}], [{"original_text": "She shot and blew up the whole range, it scared her really bad!", "album_id": "72157594185853788", "photo_flickr_id": "180770151", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "40618", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she shot and blew up the whole range , it scared her really bad !", "storylet_id": "203094"}], [{"original_text": "There favorite beer.", "album_id": "72157594185853788", "photo_flickr_id": "180756710", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40619", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there favorite beer .", "storylet_id": "203095"}], [{"original_text": "Making a home made shooting range.", "album_id": "72157594185853788", "photo_flickr_id": "180761371", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40619", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "making a home made shooting range .", "storylet_id": "203096"}], [{"original_text": "Practicing and firing shots.", "album_id": "72157594185853788", "photo_flickr_id": "180768750", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40619", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "practicing and firing shots .", "storylet_id": "203097"}], [{"original_text": "Fire exploding in the backyard.", "album_id": "72157594185853788", "photo_flickr_id": "180770151", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40619", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fire exploding in the backyard .", "storylet_id": "203098"}], [{"original_text": "The firework show is starting.", "album_id": "72157594185853788", "photo_flickr_id": "180772051", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40619", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the firework show is starting .", "storylet_id": "203099"}], [{"original_text": "Today is a good day to invite family over.", "album_id": "72157594186295029", "photo_flickr_id": "180884943", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "40620", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is a good day to invite family over .", "storylet_id": "203100"}], [{"original_text": "It is such a nice day today, and we finished cleaning up the yard.", "album_id": "72157594186295029", "photo_flickr_id": "180885560", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "40620", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is such a nice day today , and we finished cleaning up the yard .", "storylet_id": "203101"}], [{"original_text": "We should water all the grass before people come over.", "album_id": "72157594186295029", "photo_flickr_id": "181084265", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "40620", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we should water all the grass before people come over .", "storylet_id": "203102"}], [{"original_text": "Some of the guests made a campfire to cook some of the food.", "album_id": "72157594186295029", "photo_flickr_id": "181084048", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "40620", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the guests made a campfire to cook some of the food .", "storylet_id": "203103"}], [{"original_text": "Everyone is having a great time, the meal was great today.", "album_id": "72157594186295029", "photo_flickr_id": "181084544", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "40620", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone is having a great time , the meal was great today .", "storylet_id": "203104"}], [{"original_text": "I look so serious with a selfie shot before my camping trip.", "album_id": "72157594186295029", "photo_flickr_id": "181084581", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "40621", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i look so serious with a selfie shot before my camping trip .", "storylet_id": "203105"}], [{"original_text": "This is the front of the park where I am staying tonight.", "album_id": "72157594186295029", "photo_flickr_id": "181078167", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "40621", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the front of the park where i am staying tonight .", "storylet_id": "203106"}], [{"original_text": "I rake out the fire pit before I start a new one.", "album_id": "72157594186295029", "photo_flickr_id": "181084523", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "40621", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i rake out the fire pit before i start a new one .", "storylet_id": "203107"}], [{"original_text": "Nice dry wood is available to split and use.", "album_id": "72157594186295029", "photo_flickr_id": "181084091", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "40621", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "nice dry wood is available to split and use .", "storylet_id": "203108"}], [{"original_text": "The glowing embers of a campfire are so relaxing.", "album_id": "72157594186295029", "photo_flickr_id": "181084048", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "40621", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the glowing embers of a campfire are so relaxing .", "storylet_id": "203109"}], [{"original_text": "Today I am going to have a bonfire and I am excited.", "album_id": "72157594186295029", "photo_flickr_id": "181084581", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "40622", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i am going to have a bonfire and i am excited .", "storylet_id": "203110"}], [{"original_text": "We set up the are for those who might not want to be near the fires.", "album_id": "72157594186295029", "photo_flickr_id": "181078167", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "40622", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we set up the are for those who might not want to be near the fires .", "storylet_id": "203111"}], [{"original_text": "Time to get the fire going.", "album_id": "72157594186295029", "photo_flickr_id": "181084523", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "40622", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "time to get the fire going .", "storylet_id": "203112"}], [{"original_text": "I hope this is enough wood.", "album_id": "72157594186295029", "photo_flickr_id": "181084091", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "40622", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i hope this is enough wood .", "storylet_id": "203113"}], [{"original_text": "Yes! The fire is up and now its time to party.", "album_id": "72157594186295029", "photo_flickr_id": "181084048", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "40622", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "yes ! the fire is up and now its time to party .", "storylet_id": "203114"}], [{"original_text": "We got a lot of people out to help with the new outbuilding on the farm.", "album_id": "72157594186295029", "photo_flickr_id": "180884943", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40623", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got a lot of people out to help with the new outbuilding on the farm .", "storylet_id": "203115"}], [{"original_text": "The garden got some long needed attention.", "album_id": "72157594186295029", "photo_flickr_id": "180885560", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40623", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the garden got some long needed attention .", "storylet_id": "203116"}], [{"original_text": "Mike was good enough to water the vegetables.", "album_id": "72157594186295029", "photo_flickr_id": "181084265", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40623", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was good enough to water the vegetables .", "storylet_id": "203117"}], [{"original_text": "As the day wound down we sat around a campfire and talked before dinner.", "album_id": "72157594186295029", "photo_flickr_id": "181084048", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40623", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the day wound down we sat around a campfire and talked before dinner .", "storylet_id": "203118"}], [{"original_text": "To thank everyone for coming out, we cooked some burgers on the grill and had drinks.", "album_id": "72157594186295029", "photo_flickr_id": "181084544", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40623", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to thank everyone for coming out , we cooked some burgers on the grill and had drinks .", "storylet_id": "203119"}], [{"original_text": "Saturday we all went to Ralph's to help him build his shed. ", "album_id": "72157594186295029", "photo_flickr_id": "180884943", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "40624", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "saturday we all went to [male] 's to help him build his shed .", "storylet_id": "203120"}], [{"original_text": "He lives out in the middle of nowhere, and it's pretty cool. ", "album_id": "72157594186295029", "photo_flickr_id": "180885560", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "40624", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he lives out in the middle of nowhere , and it 's pretty cool .", "storylet_id": "203121"}], [{"original_text": "He has a little trouble with water at times because it comes from a well. ", "album_id": "72157594186295029", "photo_flickr_id": "181084265", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "40624", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he has a little trouble with water at times because it comes from a well .", "storylet_id": "203122"}], [{"original_text": "After we built the shed, we had a big bonfire. ", "album_id": "72157594186295029", "photo_flickr_id": "181084048", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "40624", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after we built the shed , we had a big bonfire .", "storylet_id": "203123"}], [{"original_text": "Then everyone ate until they couldn't eat anymore. ", "album_id": "72157594186295029", "photo_flickr_id": "181084544", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "40624", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then everyone ate until they could n't eat anymore .", "storylet_id": "203124"}], [{"original_text": "A family has fun while decorating the yard for a Fourth of July celebration at their house.", "album_id": "72157594186590538", "photo_flickr_id": "181274566", "setting": "first-2-pick-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "40625", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a family has fun while decorating the yard for a fourth of july celebration at their house .", "storylet_id": "203125"}], [{"original_text": "Guests gather on the deck, chatting and enjoying drinks.", "album_id": "72157594186590538", "photo_flickr_id": "181277250", "setting": "first-2-pick-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "40625", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "guests gather on the deck , chatting and enjoying drinks .", "storylet_id": "203126"}], [{"original_text": "Inside, a girl holds a puppy while a man peers inside the garage.", "album_id": "72157594186590538", "photo_flickr_id": "181283550", "setting": "first-2-pick-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "40625", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "inside , a girl holds a puppy while a man peers inside the garage .", "storylet_id": "203127"}], [{"original_text": "It's night time now and several people sit on a fallen log watching fireworks.", "album_id": "72157594186590538", "photo_flickr_id": "181286205", "setting": "first-2-pick-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "40625", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's night time now and several people sit on a fallen log watching fireworks .", "storylet_id": "203128"}], [{"original_text": "One guy stands out on the cement and holds a sparkler as it flares brightly.", "album_id": "72157594186590538", "photo_flickr_id": "181292717", "setting": "first-2-pick-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "40625", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one guy stands out on the cement and holds a sparkler as it flares brightly .", "storylet_id": "203129"}], [{"original_text": "The friends got together to celebrate the 4th of July.", "album_id": "72157594186590538", "photo_flickr_id": "181277250", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40626", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends got together to celebrate the 4th of july .", "storylet_id": "203130"}], [{"original_text": "They set off a long string of loud fireworks.", "album_id": "72157594186590538", "photo_flickr_id": "181273625", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40626", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they set off a long string of loud fireworks .", "storylet_id": "203131"}], [{"original_text": "Then they lit some sparklers at night time.", "album_id": "72157594186590538", "photo_flickr_id": "181281663", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40626", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they lit some sparklers at night time .", "storylet_id": "203132"}], [{"original_text": "After that, they set off the small fireworks on the ground.", "album_id": "72157594186590538", "photo_flickr_id": "181286936", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40626", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that , they set off the small fireworks on the ground .", "storylet_id": "203133"}], [{"original_text": "At the end, they shot off the large fireworks that shoot up into the sky.", "album_id": "72157594186590538", "photo_flickr_id": "181287886", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40626", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , they shot off the large fireworks that shoot up into the sky .", "storylet_id": "203134"}], [{"original_text": "People get together for a bbq.", "album_id": "72157594186590538", "photo_flickr_id": "181274566", "setting": "last-3-pick-old-and-tell", "worker_id": "WQD7VHB9KXYWHFU", "story_id": "40627", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people get together for a bbq .", "storylet_id": "203135"}], [{"original_text": "They all hang out on patio until dark.", "album_id": "72157594186590538", "photo_flickr_id": "181277250", "setting": "last-3-pick-old-and-tell", "worker_id": "WQD7VHB9KXYWHFU", "story_id": "40627", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all hang out on patio until dark .", "storylet_id": "203136"}], [{"original_text": "At dark they go inside and relax.", "album_id": "72157594186590538", "photo_flickr_id": "181283550", "setting": "last-3-pick-old-and-tell", "worker_id": "WQD7VHB9KXYWHFU", "story_id": "40627", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at dark they go inside and relax .", "storylet_id": "203137"}], [{"original_text": "After some time inside the decide to go hang out some more outside.", "album_id": "72157594186590538", "photo_flickr_id": "181286205", "setting": "last-3-pick-old-and-tell", "worker_id": "WQD7VHB9KXYWHFU", "story_id": "40627", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after some time inside the decide to go hang out some more outside .", "storylet_id": "203138"}], [{"original_text": "While outside one of the people lights some fireworks.", "album_id": "72157594186590538", "photo_flickr_id": "181292717", "setting": "last-3-pick-old-and-tell", "worker_id": "WQD7VHB9KXYWHFU", "story_id": "40627", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while outside one of the people lights some fireworks .", "storylet_id": "203139"}], [{"original_text": "Everyone was having fun at the family reunion. ", "album_id": "72157594186590538", "photo_flickr_id": "181274566", "setting": "last-3-pick-old-and-tell", "worker_id": "1Z0H5X4KZYPPO3J", "story_id": "40628", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was having fun at the family reunion .", "storylet_id": "203140"}], [{"original_text": "One irritating thing: father kept bothering everyone about the fireworks he was going to set off.", "album_id": "72157594186590538", "photo_flickr_id": "181277250", "setting": "last-3-pick-old-and-tell", "worker_id": "1Z0H5X4KZYPPO3J", "story_id": "40628", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one irritating thing : father kept bothering everyone about the fireworks he was going to set off .", "storylet_id": "203141"}], [{"original_text": "He'd corner some poor soul and talk about where he got them, how much he paid, how wonderful they would be.", "album_id": "72157594186590538", "photo_flickr_id": "181283550", "setting": "last-3-pick-old-and-tell", "worker_id": "1Z0H5X4KZYPPO3J", "story_id": "40628", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he 'd corner some poor soul and talk about where he got them , how much he paid , how wonderful they would be .", "storylet_id": "203142"}], [{"original_text": "When night came, we all prepared ourselves for the big show.", "album_id": "72157594186590538", "photo_flickr_id": "181286205", "setting": "last-3-pick-old-and-tell", "worker_id": "1Z0H5X4KZYPPO3J", "story_id": "40628", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when night came , we all prepared ourselves for the big show .", "storylet_id": "203143"}], [{"original_text": "It was entertaining, I'll admit, watching dad holding the sputtering duds in his hands.", "album_id": "72157594186590538", "photo_flickr_id": "181292717", "setting": "last-3-pick-old-and-tell", "worker_id": "1Z0H5X4KZYPPO3J", "story_id": "40628", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was entertaining , i 'll admit , watching dad holding the sputtering duds in his hands .", "storylet_id": "203144"}], [{"original_text": "The family got together for the celebration", "album_id": "72157594186590538", "photo_flickr_id": "181277250", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "40629", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family got together for the celebration", "storylet_id": "203145"}], [{"original_text": "They had fun gathering all the fireworks.", "album_id": "72157594186590538", "photo_flickr_id": "181273625", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "40629", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had fun gathering all the fireworks .", "storylet_id": "203146"}], [{"original_text": "They had sparklers for those who were less inclined to blow their fingers off.", "album_id": "72157594186590538", "photo_flickr_id": "181281663", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "40629", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had sparklers for those who were less inclined to blow their fingers off .", "storylet_id": "203147"}], [{"original_text": "They set off the first one on the ground.", "album_id": "72157594186590538", "photo_flickr_id": "181286936", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "40629", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they set off the first one on the ground .", "storylet_id": "203148"}], [{"original_text": "They ended the show with the ones high up in the air.", "album_id": "72157594186590538", "photo_flickr_id": "181287886", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "40629", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ended the show with the ones high up in the air .", "storylet_id": "203149"}], [{"original_text": "I had a great Fourth of July celebration with everyone.", "album_id": "72157594188721965", "photo_flickr_id": "182752662", "setting": "first-2-pick-and-tell", "worker_id": "D92KWTAYY7RJIV7", "story_id": "40630", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great fourth of july celebration with everyone .", "storylet_id": "203150"}], [{"original_text": "It was the perfect time to chill and relax in the pool.", "album_id": "72157594188721965", "photo_flickr_id": "182749227", "setting": "first-2-pick-and-tell", "worker_id": "D92KWTAYY7RJIV7", "story_id": "40630", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was the perfect time to chill and relax in the pool .", "storylet_id": "203151"}], [{"original_text": "And of course my brother got a bit too excited with the fireworks.", "album_id": "72157594188721965", "photo_flickr_id": "182755829", "setting": "first-2-pick-and-tell", "worker_id": "D92KWTAYY7RJIV7", "story_id": "40630", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and of course my brother got a bit too excited with the fireworks .", "storylet_id": "203152"}], [{"original_text": "My dad also had fun playing with sparklers too.", "album_id": "72157594188721965", "photo_flickr_id": "182755835", "setting": "first-2-pick-and-tell", "worker_id": "D92KWTAYY7RJIV7", "story_id": "40630", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my dad also had fun playing with sparklers too .", "storylet_id": "203153"}], [{"original_text": "I had a wonderful time seeing my friends and family this summer.", "album_id": "72157594188721965", "photo_flickr_id": "182755830", "setting": "first-2-pick-and-tell", "worker_id": "D92KWTAYY7RJIV7", "story_id": "40630", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a wonderful time seeing my friends and family this summer .", "storylet_id": "203154"}], [{"original_text": "They cooled off by sitting in the small pool.", "album_id": "72157594188721965", "photo_flickr_id": "182749227", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40631", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they cooled off by sitting in the small pool .", "storylet_id": "203155"}], [{"original_text": "Then they all sat down to have some food and drinks.", "album_id": "72157594188721965", "photo_flickr_id": "182752662", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40631", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then they all sat down to have some food and drinks .", "storylet_id": "203156"}], [{"original_text": "After that they set off fireworks in the pool.", "album_id": "72157594188721965", "photo_flickr_id": "182752668", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40631", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that they set off fireworks in the pool .", "storylet_id": "203157"}], [{"original_text": "They had some more drinks after the sun went down.", "album_id": "72157594188721965", "photo_flickr_id": "182749214", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40631", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had some more drinks after the sun went down .", "storylet_id": "203158"}], [{"original_text": "At the end of the night, they had watermelon eating contests.", "album_id": "72157594188721965", "photo_flickr_id": "182754458", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40631", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , they had watermelon eating contests .", "storylet_id": "203159"}], [{"original_text": "The pool party has finally begun.", "album_id": "72157594188721965", "photo_flickr_id": "182749227", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "40632", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the pool party has finally begun .", "storylet_id": "203160"}], [{"original_text": "It was so many that cam out today.", "album_id": "72157594188721965", "photo_flickr_id": "182752662", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "40632", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was so many that cam out today .", "storylet_id": "203161"}], [{"original_text": "Woah! I think it is a whole in the pool.", "album_id": "72157594188721965", "photo_flickr_id": "182752668", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "40632", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "woah ! i think it is a whole in the pool .", "storylet_id": "203162"}], [{"original_text": "As it got later the drinks came out and my girl friends was just chilling.", "album_id": "72157594188721965", "photo_flickr_id": "182749214", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "40632", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as it got later the drinks came out and my girl friends was just chilling .", "storylet_id": "203163"}], [{"original_text": "Dylan was being silly with the watermelon. He was so drunk that we all decided to talk him home and than go home our self and go to bed.", "album_id": "72157594188721965", "photo_flickr_id": "182754458", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "40632", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was being silly with the watermelon . he was so drunk that we all decided to talk him home and than go home our self and go to bed .", "storylet_id": "203164"}], [{"original_text": "We invited people over for a cook out.", "album_id": "72157594188721965", "photo_flickr_id": "182749227", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40633", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we invited people over for a cook out .", "storylet_id": "203165"}], [{"original_text": "We didn't have much of a pool, but it was fun.", "album_id": "72157594188721965", "photo_flickr_id": "182752662", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40633", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we did n't have much of a pool , but it was fun .", "storylet_id": "203166"}], [{"original_text": "They lit fireworks in the pool.", "album_id": "72157594188721965", "photo_flickr_id": "182752668", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40633", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they lit fireworks in the pool .", "storylet_id": "203167"}], [{"original_text": "We had some drinks, too.", "album_id": "72157594188721965", "photo_flickr_id": "182749214", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40633", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had some drinks , too .", "storylet_id": "203168"}], [{"original_text": "The guys were goofing off with watermelon.", "album_id": "72157594188721965", "photo_flickr_id": "182754458", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40633", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the guys were goofing off with watermelon .", "storylet_id": "203169"}], [{"original_text": "having fun at the barbecue.", "album_id": "72157594188721965", "photo_flickr_id": "182752662", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40634", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "having fun at the barbecue .", "storylet_id": "203170"}], [{"original_text": "Laying in the pool.", "album_id": "72157594188721965", "photo_flickr_id": "182749227", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40634", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "laying in the pool .", "storylet_id": "203171"}], [{"original_text": "Time for the firework.", "album_id": "72157594188721965", "photo_flickr_id": "182755829", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40634", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "time for the firework .", "storylet_id": "203172"}], [{"original_text": "Playing with lights.", "album_id": "72157594188721965", "photo_flickr_id": "182755835", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40634", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "playing with lights .", "storylet_id": "203173"}], [{"original_text": "Family get together continuation.", "album_id": "72157594188721965", "photo_flickr_id": "182755830", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40634", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "family get together continuation .", "storylet_id": "203174"}], [{"original_text": "Many were scared that it the city would be too bright to see the fireworks.", "album_id": "72157594189076963", "photo_flickr_id": "183058478", "setting": "first-2-pick-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "40635", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many were scared that it the city would be too bright to see the fireworks .", "storylet_id": "203175"}], [{"original_text": "As night fell, the city's lights seemed to dim enough to see the dark sky.", "album_id": "72157594189076963", "photo_flickr_id": "183048839", "setting": "first-2-pick-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "40635", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as night fell , the city 's lights seemed to dim enough to see the dark sky .", "storylet_id": "203176"}], [{"original_text": "But others were worried that the cities manufacturers had caused too much smog to see the fireworks.", "album_id": "72157594189076963", "photo_flickr_id": "183059451", "setting": "first-2-pick-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "40635", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but others were worried that the cities manufacturers had caused too much smog to see the fireworks .", "storylet_id": "203177"}], [{"original_text": "When the fireworks celebration started the rockets seemed to function normally and it seems everyone worried for nothing.", "album_id": "72157594189076963", "photo_flickr_id": "183072988", "setting": "first-2-pick-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "40635", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the fireworks celebration started the rockets seemed to function normally and it seems everyone worried for nothing .", "storylet_id": "203178"}], [{"original_text": "However, the smog had caused most of the rockets to have an odd reddish hue the entire celebration.", "album_id": "72157594189076963", "photo_flickr_id": "183071467", "setting": "first-2-pick-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "40635", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , the smog had caused most of the rockets to have an odd reddish hue the entire celebration .", "storylet_id": "203179"}], [{"original_text": "Went to New York City to celebrate the Fourth of July! ", "album_id": "72157594189076963", "photo_flickr_id": "183058478", "setting": "first-2-pick-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "40636", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went to location location location to celebrate the fourth of july !", "storylet_id": "203180"}], [{"original_text": "New York looks so amazing at night. ", "album_id": "72157594189076963", "photo_flickr_id": "183048839", "setting": "first-2-pick-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "40636", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "location location looks so amazing at night .", "storylet_id": "203181"}], [{"original_text": "The fireworks started just after 9pm. ", "album_id": "72157594189076963", "photo_flickr_id": "183060096", "setting": "first-2-pick-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "40636", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fireworks started just after 9pm .", "storylet_id": "203182"}], [{"original_text": "It was so awesome seeing all the different colored fireworks in the sky. ", "album_id": "72157594189076963", "photo_flickr_id": "183071467", "setting": "first-2-pick-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "40636", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was so awesome seeing all the different colored fireworks in the sky .", "storylet_id": "203183"}], [{"original_text": "The grand finale of fireworks ended a glorious night in the city. ", "album_id": "72157594189076963", "photo_flickr_id": "183074868", "setting": "first-2-pick-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "40636", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the grand finale of fireworks ended a glorious night in the city .", "storylet_id": "203184"}], [{"original_text": "Mary spent the evening along the river.", "album_id": "72157594189076963", "photo_flickr_id": "183058478", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40637", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] spent the evening along the river .", "storylet_id": "203185"}], [{"original_text": "She stayed until it grew dark.", "album_id": "72157594189076963", "photo_flickr_id": "183048839", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40637", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she stayed until it grew dark .", "storylet_id": "203186"}], [{"original_text": "That is when the fireworks began.", "album_id": "72157594189076963", "photo_flickr_id": "183060096", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40637", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that is when the fireworks began .", "storylet_id": "203187"}], [{"original_text": "They exploded with color along the night sky.", "album_id": "72157594189076963", "photo_flickr_id": "183071467", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40637", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they exploded with color along the night sky .", "storylet_id": "203188"}], [{"original_text": "The finale was fantastic and exciting.", "album_id": "72157594189076963", "photo_flickr_id": "183074868", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40637", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finale was fantastic and exciting .", "storylet_id": "203189"}], [{"original_text": "We took a city trip this weekend, it was really nice.", "album_id": "72157594189076963", "photo_flickr_id": "183058478", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "40638", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a city trip this weekend , it was really nice .", "storylet_id": "203190"}], [{"original_text": "We took many pictures of the skyline, it was really majestic.", "album_id": "72157594189076963", "photo_flickr_id": "183048839", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "40638", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took many pictures of the skyline , it was really majestic .", "storylet_id": "203191"}], [{"original_text": "The smoke stacks from the chimneys were also impressive.", "album_id": "72157594189076963", "photo_flickr_id": "183059451", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "40638", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the smoke stacks from the chimneys were also impressive .", "storylet_id": "203192"}], [{"original_text": "At the end of the day, we also attended the fireworks show.", "album_id": "72157594189076963", "photo_flickr_id": "183072988", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "40638", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the end of the day , we also attended the fireworks show .", "storylet_id": "203193"}], [{"original_text": "It was really loud because we were right below it.", "album_id": "72157594189076963", "photo_flickr_id": "183071467", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "40638", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was really loud because we were right below it .", "storylet_id": "203194"}], [{"original_text": "I decided to go on an adventure to a city I had never been to before.", "album_id": "72157594189076963", "photo_flickr_id": "183058478", "setting": "last-3-pick-old-and-tell", "worker_id": "EJJCFNU6H5LINWW", "story_id": "40639", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to go on an adventure to a city i had never been to before .", "storylet_id": "203195"}], [{"original_text": "It was getting dark when I came into town and the city was brightly lit.", "album_id": "72157594189076963", "photo_flickr_id": "183048839", "setting": "last-3-pick-old-and-tell", "worker_id": "EJJCFNU6H5LINWW", "story_id": "40639", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was getting dark when i came into town and the city was brightly lit .", "storylet_id": "203196"}], [{"original_text": "There were many strange tubes sticking up from the ground in this city.", "album_id": "72157594189076963", "photo_flickr_id": "183059451", "setting": "last-3-pick-old-and-tell", "worker_id": "EJJCFNU6H5LINWW", "story_id": "40639", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many strange tubes sticking up from the ground in this city .", "storylet_id": "203197"}], [{"original_text": "I must have arrived on an important day as there were fireworks.", "album_id": "72157594189076963", "photo_flickr_id": "183072988", "setting": "last-3-pick-old-and-tell", "worker_id": "EJJCFNU6H5LINWW", "story_id": "40639", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i must have arrived on an important day as there were fireworks .", "storylet_id": "203198"}], [{"original_text": "The fireworks were actually pretty annoying. They were too loud and there was too much traffic when they stopped.", "album_id": "72157594189076963", "photo_flickr_id": "183071467", "setting": "last-3-pick-old-and-tell", "worker_id": "EJJCFNU6H5LINWW", "story_id": "40639", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fireworks were actually pretty annoying . they were too loud and there was too much traffic when they stopped .", "storylet_id": "203199"}], [{"original_text": "The family went to the park for 4th of July.", "album_id": "72157594564504027", "photo_flickr_id": "407245190", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40640", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went to the park for 4th of july .", "storylet_id": "203200"}], [{"original_text": "The city hosted an annual parade. They had a clown that made balloons for children.", "album_id": "72157594564504027", "photo_flickr_id": "407244768", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40640", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city hosted an annual parade . they had a clown that made balloons for children .", "storylet_id": "203201"}], [{"original_text": "A few veterans walked throughout the parade.", "album_id": "72157594564504027", "photo_flickr_id": "407244914", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40640", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few veterans walked throughout the parade .", "storylet_id": "203202"}], [{"original_text": "The mayor greeted the people who attended the parade.", "album_id": "72157594564504027", "photo_flickr_id": "407245053", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40640", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the mayor greeted the people who attended the parade .", "storylet_id": "203203"}], [{"original_text": "We saw a fireworks show right after the parade. ", "album_id": "72157594564504027", "photo_flickr_id": "407245649", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40640", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we saw a fireworks show right after the parade .", "storylet_id": "203204"}], [{"original_text": "There was a local parade for Dole and his campaign for Mayor.", "album_id": "72157594564504027", "photo_flickr_id": "407244272", "setting": "first-2-pick-and-tell", "worker_id": "C6QIESC8OYLB66Z", "story_id": "40641", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a local parade for dole and his campaign for mayor .", "storylet_id": "203205"}], [{"original_text": "The parade was very colorful and funny.", "album_id": "72157594564504027", "photo_flickr_id": "407244768", "setting": "first-2-pick-and-tell", "worker_id": "C6QIESC8OYLB66Z", "story_id": "40641", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the parade was very colorful and funny .", "storylet_id": "203206"}], [{"original_text": "Dole was actually at the parade and greeted the town.", "album_id": "72157594564504027", "photo_flickr_id": "407244914", "setting": "first-2-pick-and-tell", "worker_id": "C6QIESC8OYLB66Z", "story_id": "40641", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dole was actually at the parade and greeted the town .", "storylet_id": "203207"}], [{"original_text": "Dole was very nice and shook everyone's hand.", "album_id": "72157594564504027", "photo_flickr_id": "407245053", "setting": "first-2-pick-and-tell", "worker_id": "C6QIESC8OYLB66Z", "story_id": "40641", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dole was very nice and shook everyone 's hand .", "storylet_id": "203208"}], [{"original_text": "Former President Bush was there as well. He is a big Dole Supporter. ", "album_id": "72157594564504027", "photo_flickr_id": "407244498", "setting": "first-2-pick-and-tell", "worker_id": "C6QIESC8OYLB66Z", "story_id": "40641", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "former president bush was there as well . he is a big dole supporter .", "storylet_id": "203209"}], [{"original_text": "The boys had cotton candy while waiting for the parade to begin.", "album_id": "72157594564504027", "photo_flickr_id": "407245190", "setting": "last-3-pick-old-and-tell", "worker_id": "3FF43JMUZ1RMVBU", "story_id": "40642", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boys had cotton candy while waiting for the parade to begin .", "storylet_id": "203210"}], [{"original_text": "The parade started off with clowns.", "album_id": "72157594564504027", "photo_flickr_id": "407244768", "setting": "last-3-pick-old-and-tell", "worker_id": "3FF43JMUZ1RMVBU", "story_id": "40642", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the parade started off with clowns .", "storylet_id": "203211"}], [{"original_text": "Many area politicians also marched.", "album_id": "72157594564504027", "photo_flickr_id": "407244914", "setting": "last-3-pick-old-and-tell", "worker_id": "3FF43JMUZ1RMVBU", "story_id": "40642", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many area politicians also marched .", "storylet_id": "203212"}], [{"original_text": "Politicians shook hands with the crowd.", "album_id": "72157594564504027", "photo_flickr_id": "407245053", "setting": "last-3-pick-old-and-tell", "worker_id": "3FF43JMUZ1RMVBU", "story_id": "40642", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "politicians shook hands with the crowd .", "storylet_id": "203213"}], [{"original_text": "And later that night, we enjoyed the firework display.", "album_id": "72157594564504027", "photo_flickr_id": "407245649", "setting": "last-3-pick-old-and-tell", "worker_id": "3FF43JMUZ1RMVBU", "story_id": "40642", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and later that night , we enjoyed the firework display .", "storylet_id": "203214"}], [{"original_text": "The kids enjoyed the Independence day parade.", "album_id": "72157594564504027", "photo_flickr_id": "407245190", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40643", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids enjoyed the independence day parade .", "storylet_id": "203215"}], [{"original_text": "There were clowns.", "album_id": "72157594564504027", "photo_flickr_id": "407244768", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40643", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were clowns .", "storylet_id": "203216"}], [{"original_text": "Local business marched as well.", "album_id": "72157594564504027", "photo_flickr_id": "407244914", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40643", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "local business marched as well .", "storylet_id": "203217"}], [{"original_text": "Politicians were out in droves.", "album_id": "72157594564504027", "photo_flickr_id": "407245053", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40643", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "politicians were out in droves .", "storylet_id": "203218"}], [{"original_text": "The fireworks were great at the end.", "album_id": "72157594564504027", "photo_flickr_id": "407245649", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40643", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fireworks were great at the end .", "storylet_id": "203219"}], [{"original_text": "The boys excited about the parade.", "album_id": "72157594564504027", "photo_flickr_id": "407245190", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40644", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boys excited about the parade .", "storylet_id": "203220"}], [{"original_text": "A clown selling toys.", "album_id": "72157594564504027", "photo_flickr_id": "407244768", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40644", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a clown selling toys .", "storylet_id": "203221"}], [{"original_text": "Walking with her campaign.", "album_id": "72157594564504027", "photo_flickr_id": "407244914", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40644", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "walking with her campaign .", "storylet_id": "203222"}], [{"original_text": "The mayor shaking peoples hands.", "album_id": "72157594564504027", "photo_flickr_id": "407245053", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40644", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the mayor shaking peoples hands .", "storylet_id": "203223"}], [{"original_text": "The firework show is starting.", "album_id": "72157594564504027", "photo_flickr_id": "407245649", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40644", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the firework show is starting .", "storylet_id": "203224"}], [{"original_text": "I love to visit Weidner's Burial Lot.", "album_id": "72157604364629870", "photo_flickr_id": "2384235925", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40645", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love to visit weidner 's burial lot .", "storylet_id": "203225"}], [{"original_text": "It's just a tiny little plot with some very old graves.", "album_id": "72157604364629870", "photo_flickr_id": "2385068616", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40645", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's just a tiny little plot with some very old graves .", "storylet_id": "203226"}], [{"original_text": "The markings on the headstones are beautiful.", "album_id": "72157604364629870", "photo_flickr_id": "2385111632", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40645", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the markings on the headstones are beautiful .", "storylet_id": "203227"}], [{"original_text": "I like to imagine what these people were like in life.", "album_id": "72157604364629870", "photo_flickr_id": "2385111220", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40645", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i like to imagine what these people were like in life .", "storylet_id": "203228"}], [{"original_text": "Someone still cares enough to place a flag on one of the headstones.", "album_id": "72157604364629870", "photo_flickr_id": "2385067106", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "40645", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someone still cares enough to place a flag on one of the headstones .", "storylet_id": "203229"}], [{"original_text": "We took a trip to the old cemetery to see the grave stones.", "album_id": "72157604364629870", "photo_flickr_id": "2384281403", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40646", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to the old cemetery to see the grave stones .", "storylet_id": "203230"}], [{"original_text": "The grave stones look like they had been there a really long time.", "album_id": "72157604364629870", "photo_flickr_id": "2385111220", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40646", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the grave stones look like they had been there a really long time .", "storylet_id": "203231"}], [{"original_text": "Then we saw a plaque that gave some information about the burial plot.", "album_id": "72157604364629870", "photo_flickr_id": "2384235925", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40646", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we saw a plaque that gave some information about the burial plot .", "storylet_id": "203232"}], [{"original_text": "After that we came to a grave that had an American flag on it.", "album_id": "72157604364629870", "photo_flickr_id": "2385067106", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40646", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that we came to a grave that had an american flag on it .", "storylet_id": "203233"}], [{"original_text": "One of the graves was extremely old.", "album_id": "72157604364629870", "photo_flickr_id": "2385111632", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40646", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of the graves was extremely old .", "storylet_id": "203234"}], [{"original_text": "We visited Weidners Burial Lot.", "album_id": "72157604364629870", "photo_flickr_id": "2384235925", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40647", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited organization organization organization .", "storylet_id": "203235"}], [{"original_text": "There were a lot of old graves there.", "album_id": "72157604364629870", "photo_flickr_id": "2385068616", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40647", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of old graves there .", "storylet_id": "203236"}], [{"original_text": "I saw my relatives graves from the 1800s.", "album_id": "72157604364629870", "photo_flickr_id": "2385111632", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40647", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i saw my relatives graves from the 1800s .", "storylet_id": "203237"}], [{"original_text": "Some of them were so old you couldn't read them.", "album_id": "72157604364629870", "photo_flickr_id": "2385111220", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40647", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of them were so old you could n't read them .", "storylet_id": "203238"}], [{"original_text": "But one was remembered with an American flag.", "album_id": "72157604364629870", "photo_flickr_id": "2385067106", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40647", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but one was remembered with an american flag .", "storylet_id": "203239"}], [{"original_text": "This weekend we visited a cemetery.", "album_id": "72157604364629870", "photo_flickr_id": "2384281403", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "40648", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this weekend we visited a cemetery .", "storylet_id": "203240"}], [{"original_text": "We saw many old, worn out graves.", "album_id": "72157604364629870", "photo_flickr_id": "2385111220", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "40648", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw many old , worn out graves .", "storylet_id": "203241"}], [{"original_text": "We were at Weidner's Burial Lot, which is beautiful in the fall.", "album_id": "72157604364629870", "photo_flickr_id": "2384235925", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "40648", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were at organization 's burial lot , which is beautiful in the fall .", "storylet_id": "203242"}], [{"original_text": "There were many American flags strewn about.", "album_id": "72157604364629870", "photo_flickr_id": "2385067106", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "40648", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many american flags strewn about .", "storylet_id": "203243"}], [{"original_text": "I even found my great, great grandfather's grave!", "album_id": "72157604364629870", "photo_flickr_id": "2385111632", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "40648", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i even found my great , great grandfather 's grave !", "storylet_id": "203244"}], [{"original_text": "Visiting Weidners burial lot.", "album_id": "72157604364629870", "photo_flickr_id": "2384235925", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40649", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visiting weidners burial lot .", "storylet_id": "203245"}], [{"original_text": "there is a lot of tombstones.", "album_id": "72157604364629870", "photo_flickr_id": "2385068616", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40649", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is a lot of tombstones .", "storylet_id": "203246"}], [{"original_text": "Weidners tomb stone.", "album_id": "72157604364629870", "photo_flickr_id": "2385111632", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40649", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "weidners tomb stone .", "storylet_id": "203247"}], [{"original_text": "The families lot.", "album_id": "72157604364629870", "photo_flickr_id": "2385111220", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40649", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the families lot .", "storylet_id": "203248"}], [{"original_text": "With an american flag on the ground.", "album_id": "72157604364629870", "photo_flickr_id": "2385067106", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40649", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with an american flag on the ground .", "storylet_id": "203249"}], [{"original_text": "Getting ready for dancing and music on the docks!", "album_id": "72157605694985211", "photo_flickr_id": "2591925022", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "40650", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting ready for dancing and music on the docks !", "storylet_id": "203250"}], [{"original_text": "The band's warming up!", "album_id": "72157605694985211", "photo_flickr_id": "2591081855", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "40650", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the band 's warming up !", "storylet_id": "203251"}], [{"original_text": "Cool shot of the band rocking out!", "album_id": "72157605694985211", "photo_flickr_id": "2591098065", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "40650", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "cool shot of the band rocking out !", "storylet_id": "203252"}], [{"original_text": "The necessary close up of the singer jamming!", "album_id": "72157605694985211", "photo_flickr_id": "2591927234", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "40650", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the necessary close up of the singer jamming !", "storylet_id": "203253"}], [{"original_text": "Getting late and quiet! Time to call it a night..", "album_id": "72157605694985211", "photo_flickr_id": "2591919314", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "40650", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "getting late and quiet ! time to call it a night..", "storylet_id": "203254"}], [{"original_text": "We setup for our gig that evening. ", "album_id": "72157605694985211", "photo_flickr_id": "2591925022", "setting": "first-2-pick-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40651", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we setup for our gig that evening .", "storylet_id": "203255"}], [{"original_text": "We had a sound test before the gig. ", "album_id": "72157605694985211", "photo_flickr_id": "2591081855", "setting": "first-2-pick-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40651", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a sound test before the gig .", "storylet_id": "203256"}], [{"original_text": "Our rhythm section was really on fire that night. ", "album_id": "72157605694985211", "photo_flickr_id": "2591923716", "setting": "first-2-pick-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40651", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our rhythm section was really on fire that night .", "storylet_id": "203257"}], [{"original_text": "Me and our lead guitar player played really fun songs that the audience loved. ", "album_id": "72157605694985211", "photo_flickr_id": "2591093549", "setting": "first-2-pick-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40651", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "me and our lead guitar player played really fun songs that the audience loved .", "storylet_id": "203258"}], [{"original_text": "At the end we pulled out an accordion for our last song. ", "album_id": "72157605694985211", "photo_flickr_id": "2591931238", "setting": "first-2-pick-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40651", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end we pulled out an accordion for our last song .", "storylet_id": "203259"}], [{"original_text": "People are coming to the band while they play their song.", "album_id": "72157605694985211", "photo_flickr_id": "2591925022", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "40652", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people are coming to the band while they play their song .", "storylet_id": "203260"}], [{"original_text": "They are going to start to perform their song.", "album_id": "72157605694985211", "photo_flickr_id": "2591081855", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "40652", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are going to start to perform their song .", "storylet_id": "203261"}], [{"original_text": "Then they start and play they guitar as they sing.", "album_id": "72157605694985211", "photo_flickr_id": "2591098065", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "40652", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they start and play they guitar as they sing .", "storylet_id": "203262"}], [{"original_text": "One person out the group is into his song while singing it.", "album_id": "72157605694985211", "photo_flickr_id": "2591927234", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "40652", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one person out the group is into his song while singing it .", "storylet_id": "203263"}], [{"original_text": "The sun is setting and everyone is sitting out watching them perform.", "album_id": "72157605694985211", "photo_flickr_id": "2591919314", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "40652", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sun is setting and everyone is sitting out watching them perform .", "storylet_id": "203264"}], [{"original_text": "I was a little disappointed that not many turned out to see Mark's band play, but they put on a great show.", "album_id": "72157605694985211", "photo_flickr_id": "2591925022", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40653", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was a little disappointed that not many turned out to see [male] 's band play , but they put on a great show .", "storylet_id": "203265"}], [{"original_text": "As it got later, more people did start to turn out, but nothing was going to keep the band from putting on a great show.", "album_id": "72157605694985211", "photo_flickr_id": "2591081855", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40653", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as it got later , more people did start to turn out , but nothing was going to keep the band from putting on a great show .", "storylet_id": "203266"}], [{"original_text": "This was their bassist's first gig with the band, but he did a fantastic job.", "album_id": "72157605694985211", "photo_flickr_id": "2591098065", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40653", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was their bassist 's first gig with the band , but he did a fantastic job .", "storylet_id": "203267"}], [{"original_text": "Mark himself put everything into it.", "album_id": "72157605694985211", "photo_flickr_id": "2591927234", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40653", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] himself put everything into it .", "storylet_id": "203268"}], [{"original_text": "In the end, even though the weather wasn't great and turnout could've been better, everyone who came had a really good time seeing them play.", "album_id": "72157605694985211", "photo_flickr_id": "2591919314", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40653", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , even though the weather was n't great and turnout could 've been better , everyone who came had a really good time seeing them play .", "storylet_id": "203269"}], [{"original_text": "There was a large gathering planned for our band today!", "album_id": "72157605694985211", "photo_flickr_id": "2591925022", "setting": "last-3-pick-old-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "40654", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a large gathering planned for our band today !", "storylet_id": "203270"}], [{"original_text": "Such a great night out. We thought it was going to rain, but thankfully didn't.", "album_id": "72157605694985211", "photo_flickr_id": "2591081855", "setting": "last-3-pick-old-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "40654", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "such a great night out . we thought it was going to rain , but thankfully did n't .", "storylet_id": "203271"}], [{"original_text": "Jim was belting his heart out on the songs throughout the night.", "album_id": "72157605694985211", "photo_flickr_id": "2591098065", "setting": "last-3-pick-old-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "40654", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was belting his heart out on the songs throughout the night .", "storylet_id": "203272"}], [{"original_text": "Jim looked really great with his outfit.", "album_id": "72157605694985211", "photo_flickr_id": "2591927234", "setting": "last-3-pick-old-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "40654", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] looked really great with his outfit .", "storylet_id": "203273"}], [{"original_text": "At the end of the night, we thought it was a successful outing. ", "album_id": "72157605694985211", "photo_flickr_id": "2591919314", "setting": "last-3-pick-old-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "40654", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , we thought it was a successful outing .", "storylet_id": "203274"}], [{"original_text": "This is the base for the fire place that we want to use in the house", "album_id": "72157606896569656", "photo_flickr_id": "2635247119", "setting": "first-2-pick-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "40655", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the base for the fire place that we want to use in the house", "storylet_id": "203275"}], [{"original_text": "In lining up the front on the fire place we noticed that the walls around it will need a lot of work", "album_id": "72157606896569656", "photo_flickr_id": "2636072814", "setting": "first-2-pick-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "40655", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in lining up the front on the fire place we noticed that the walls around it will need a lot of work", "storylet_id": "203276"}], [{"original_text": "Layer on that day we noticed that the areas near the edges of the widow frames would need a lot of work as", "album_id": "72157606896569656", "photo_flickr_id": "2636073084", "setting": "first-2-pick-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "40655", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "layer on that day we noticed that the areas near the edges of the widow frames would need a lot of work as", "storylet_id": "203277"}], [{"original_text": "We noticed a lot of chips, dents and faded paint. ", "album_id": "72157606896569656", "photo_flickr_id": "2635247905", "setting": "first-2-pick-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "40655", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we noticed a lot of chips , dents and faded paint .", "storylet_id": "203278"}], [{"original_text": "E also noticed that some of the frames go up higher towards the ceiling the the one right next to ot", "album_id": "72157606896569656", "photo_flickr_id": "2636073652", "setting": "first-2-pick-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "40655", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "e also noticed that some of the frames go up higher towards the ceiling the the one right next to ot", "storylet_id": "203279"}], [{"original_text": "Before fixing a fire place's molding you must have the right tools first.", "album_id": "72157606896569656", "photo_flickr_id": "2635247119", "setting": "first-2-pick-and-tell", "worker_id": "C6QIESC8OYLB66Z", "story_id": "40656", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before fixing a fire place 's molding you must have the right tools first .", "storylet_id": "203280"}], [{"original_text": "Then you need to inspect the fireplace in sections.", "album_id": "72157606896569656", "photo_flickr_id": "2635249849", "setting": "first-2-pick-and-tell", "worker_id": "C6QIESC8OYLB66Z", "story_id": "40656", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then you need to inspect the fireplace in sections .", "storylet_id": "203281"}], [{"original_text": "I start inspecting from the top of the fireplace because it is the most noticeable.", "album_id": "72157606896569656", "photo_flickr_id": "2636075634", "setting": "first-2-pick-and-tell", "worker_id": "C6QIESC8OYLB66Z", "story_id": "40656", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i start inspecting from the top of the fireplace because it is the most noticeable .", "storylet_id": "203282"}], [{"original_text": "Then I work my way during the inspection from the side of the fireplace down.", "album_id": "72157606896569656", "photo_flickr_id": "2636075934", "setting": "first-2-pick-and-tell", "worker_id": "C6QIESC8OYLB66Z", "story_id": "40656", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then i work my way during the inspection from the side of the fireplace down .", "storylet_id": "203283"}], [{"original_text": "For this particular job, the problem lies at the bottom of the fireplace. This damage is due to the flames from the fireplace. ", "album_id": "72157606896569656", "photo_flickr_id": "2636076234", "setting": "first-2-pick-and-tell", "worker_id": "C6QIESC8OYLB66Z", "story_id": "40656", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for this particular job , the problem lies at the bottom of the fireplace . this damage is due to the flames from the fireplace .", "storylet_id": "203284"}], [{"original_text": "We bought an old house.", "album_id": "72157606896569656", "photo_flickr_id": "2635247119", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40657", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we bought an old house .", "storylet_id": "203285"}], [{"original_text": "It needed a lot of work.", "album_id": "72157606896569656", "photo_flickr_id": "2636072814", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40657", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it needed a lot of work .", "storylet_id": "203286"}], [{"original_text": "The walls were listing.", "album_id": "72157606896569656", "photo_flickr_id": "2636073084", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40657", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the walls were listing .", "storylet_id": "203287"}], [{"original_text": "The paint was pealed off.", "album_id": "72157606896569656", "photo_flickr_id": "2635247905", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40657", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the paint was pealed off .", "storylet_id": "203288"}], [{"original_text": "There were bugs coming in?", "album_id": "72157606896569656", "photo_flickr_id": "2636073652", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40657", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were bugs coming in ?", "storylet_id": "203289"}], [{"original_text": "The man was redoing his house.", "album_id": "72157606896569656", "photo_flickr_id": "2635247119", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40658", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man was redoing his house .", "storylet_id": "203290"}], [{"original_text": "They wanted to repaint things and fix it up real nice.", "album_id": "72157606896569656", "photo_flickr_id": "2636072814", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40658", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they wanted to repaint things and fix it up real nice .", "storylet_id": "203291"}], [{"original_text": "There is so much work for him to do.", "album_id": "72157606896569656", "photo_flickr_id": "2636073084", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40658", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is so much work for him to do .", "storylet_id": "203292"}], [{"original_text": "He doesn't even know where to start.", "album_id": "72157606896569656", "photo_flickr_id": "2635247905", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40658", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he does n't even know where to start .", "storylet_id": "203293"}], [{"original_text": "He decides he needs to repaint that room.", "album_id": "72157606896569656", "photo_flickr_id": "2636073652", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40658", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he decides he needs to repaint that room .", "storylet_id": "203294"}], [{"original_text": "The old fireplace had so much potential!", "album_id": "72157606896569656", "photo_flickr_id": "2635247119", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "40659", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old fireplace had so much potential !", "storylet_id": "203295"}], [{"original_text": "Here are all the supplies I needed to restore it to it's former beauty.", "album_id": "72157606896569656", "photo_flickr_id": "2635249849", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "40659", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here are all the supplies i needed to restore it to it 's former beauty .", "storylet_id": "203296"}], [{"original_text": "I just love these design features!", "album_id": "72157606896569656", "photo_flickr_id": "2636075634", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "40659", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i just love these design features !", "storylet_id": "203297"}], [{"original_text": "I love the ribbon motif!", "album_id": "72157606896569656", "photo_flickr_id": "2636075934", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "40659", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love the ribbon motif !", "storylet_id": "203298"}], [{"original_text": "There was a lot of water damage from the flooding, as you can see here.", "album_id": "72157606896569656", "photo_flickr_id": "2636076234", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "40659", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a lot of water damage from the flooding , as you can see here .", "storylet_id": "203299"}], [{"original_text": "Hi, this is me and my dad John.", "album_id": "72157605952704278", "photo_flickr_id": "2635641453", "setting": "first-2-pick-and-tell", "worker_id": "YL1IFXGGHFYNN6T", "story_id": "40660", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hi , this is me and my dad [male] .", "storylet_id": "203300"}], [{"original_text": "This is my Mom Ellen.", "album_id": "72157605952704278", "photo_flickr_id": "2635644801", "setting": "first-2-pick-and-tell", "worker_id": "YL1IFXGGHFYNN6T", "story_id": "40660", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is my mom [female] .", "storylet_id": "203301"}], [{"original_text": "My family loves the Orioles. My parents actually met at a game.", "album_id": "72157605952704278", "photo_flickr_id": "2635543976", "setting": "first-2-pick-and-tell", "worker_id": "YL1IFXGGHFYNN6T", "story_id": "40660", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my family loves the organization . my parents actually met at a game .", "storylet_id": "203302"}], [{"original_text": "My mom sold my dad a beer. It was love at first sight.", "album_id": "72157605952704278", "photo_flickr_id": "2633892294", "setting": "first-2-pick-and-tell", "worker_id": "YL1IFXGGHFYNN6T", "story_id": "40660", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my mom sold my dad a beer . it was love at first sight .", "storylet_id": "203303"}], [{"original_text": "Now we live here on this street. Happily ever after. GO ORIOLES!", "album_id": "72157605952704278", "photo_flickr_id": "2635639365", "setting": "first-2-pick-and-tell", "worker_id": "YL1IFXGGHFYNN6T", "story_id": "40660", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now we live here on this street . happily ever after . go orioles !", "storylet_id": "203304"}], [{"original_text": "It's summertime and summertime means baseball season!", "album_id": "72157605952704278", "photo_flickr_id": "2633048429", "setting": "first-2-pick-and-tell", "worker_id": "PTXLIK3JM7F1KO9", "story_id": "40661", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's summertime and summertime means baseball season !", "storylet_id": "203305"}], [{"original_text": "My friends and I were able to get a ticket for the Baltimore Orioles versus the Kansas City Royals.", "album_id": "72157605952704278", "photo_flickr_id": "2635543976", "setting": "first-2-pick-and-tell", "worker_id": "PTXLIK3JM7F1KO9", "story_id": "40661", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friends and i were able to get a ticket for the organization organization versus the organization organization organization .", "storylet_id": "203306"}], [{"original_text": "The opening ceremony was conducted with the Baltimore bird mascot.", "album_id": "72157605952704278", "photo_flickr_id": "2633870718", "setting": "first-2-pick-and-tell", "worker_id": "PTXLIK3JM7F1KO9", "story_id": "40661", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the opening ceremony was conducted with the location bird mascot .", "storylet_id": "203307"}], [{"original_text": "The Baltimore Orioles mascot was game and even went to the stands to toy around with the fans.", "album_id": "72157605952704278", "photo_flickr_id": "2635648431", "setting": "first-2-pick-and-tell", "worker_id": "PTXLIK3JM7F1KO9", "story_id": "40661", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the organization organization mascot was game and even went to the stands to toy around with the fans .", "storylet_id": "203308"}], [{"original_text": "It was a night of fun and drinking with my friends while we watched the Orioles win the game.", "album_id": "72157605952704278", "photo_flickr_id": "2636469228", "setting": "first-2-pick-and-tell", "worker_id": "PTXLIK3JM7F1KO9", "story_id": "40661", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a night of fun and drinking with my friends while we watched the organization win the game .", "storylet_id": "203309"}], [{"original_text": "Dad and I had a great time at the Orioles game on Wednesday.", "album_id": "72157605952704278", "photo_flickr_id": "2635641453", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40662", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dad and i had a great time at the organization game on wednesday .", "storylet_id": "203310"}], [{"original_text": "Even mom enjoyed herself after a beer, though we couldn't get her to admit it later.", "album_id": "72157605952704278", "photo_flickr_id": "2635644801", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40662", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even mom enjoyed herself after a beer , though we could n't get her to admit it later .", "storylet_id": "203311"}], [{"original_text": "Here's the ticket my work comped for us.", "album_id": "72157605952704278", "photo_flickr_id": "2635543976", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40662", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's the ticket my work comped for us .", "storylet_id": "203312"}], [{"original_text": "I had a beer myself, because what's a baseball game without it?", "album_id": "72157605952704278", "photo_flickr_id": "2633892294", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40662", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had a beer myself , because what 's a baseball game without it ?", "storylet_id": "203313"}], [{"original_text": "Downtown was surprisingly quiet after the game, so we stopped for an early dinner at Muggsy's.", "album_id": "72157605952704278", "photo_flickr_id": "2635639365", "setting": "last-3-pick-old-and-tell", "worker_id": "YOCYTBDMDAJA003", "story_id": "40662", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "downtown was surprisingly quiet after the game , so we stopped for an early dinner at location 's .", "storylet_id": "203314"}], [{"original_text": "The ball game was a hit! Jim and rich line up for a photo.", "album_id": "72157605952704278", "photo_flickr_id": "2635641453", "setting": "last-3-pick-old-and-tell", "worker_id": "B9RQJQ2OB6JE1L0", "story_id": "40663", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ball game was a hit ! [male] and rich line up for a photo .", "storylet_id": "203315"}], [{"original_text": "Sally, Mark and Rich watch intently as the batter comes up to the plate.", "album_id": "72157605952704278", "photo_flickr_id": "2635644801", "setting": "last-3-pick-old-and-tell", "worker_id": "B9RQJQ2OB6JE1L0", "story_id": "40663", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] , [male] and rich watch intently as the batter comes up to the plate .", "storylet_id": "203316"}], [{"original_text": "The Kansas City Royals July 2nd 2008, I will never forget this day.", "album_id": "72157605952704278", "photo_flickr_id": "2635543976", "setting": "last-3-pick-old-and-tell", "worker_id": "B9RQJQ2OB6JE1L0", "story_id": "40663", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the organization organization organization july 2nd 2008 , i will never forget this day .", "storylet_id": "203317"}], [{"original_text": "Although I may not remember some parts too.", "album_id": "72157605952704278", "photo_flickr_id": "2633892294", "setting": "last-3-pick-old-and-tell", "worker_id": "B9RQJQ2OB6JE1L0", "story_id": "40663", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "although i may not remember some parts too .", "storylet_id": "203318"}], [{"original_text": "Afterwards we decided to get another drink and some food.", "album_id": "72157605952704278", "photo_flickr_id": "2635639365", "setting": "last-3-pick-old-and-tell", "worker_id": "B9RQJQ2OB6JE1L0", "story_id": "40663", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards we decided to get another drink and some food .", "storylet_id": "203319"}], [{"original_text": "The family went to a baseball game.", "album_id": "72157605952704278", "photo_flickr_id": "2635641453", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40664", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went to a baseball game .", "storylet_id": "203320"}], [{"original_text": "We had a lot of fun together.", "album_id": "72157605952704278", "photo_flickr_id": "2635644801", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40664", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a lot of fun together .", "storylet_id": "203321"}], [{"original_text": "It was our first time watching the Orioles.", "album_id": "72157605952704278", "photo_flickr_id": "2635543976", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40664", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was our first time watching the organization .", "storylet_id": "203322"}], [{"original_text": "We kept our souvenir mug.", "album_id": "72157605952704278", "photo_flickr_id": "2633892294", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40664", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we kept our souvenir mug .", "storylet_id": "203323"}], [{"original_text": "Then we went to the bar after.", "album_id": "72157605952704278", "photo_flickr_id": "2635639365", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40664", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we went to the bar after .", "storylet_id": "203324"}], [{"original_text": "That night we decided to watch the fireworks.", "album_id": "72157605978703055", "photo_flickr_id": "2637138898", "setting": "first-2-pick-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40665", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "that night we decided to watch the fireworks .", "storylet_id": "203325"}], [{"original_text": "They shot the fireworks over the river. ", "album_id": "72157605978703055", "photo_flickr_id": "2637138670", "setting": "first-2-pick-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40665", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they shot the fireworks over the river .", "storylet_id": "203326"}], [{"original_text": "The reflections on the water were really pretty. ", "album_id": "72157605978703055", "photo_flickr_id": "2637139100", "setting": "first-2-pick-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40665", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the reflections on the water were really pretty .", "storylet_id": "203327"}], [{"original_text": "some of the fireworks went really really high into the air. ", "album_id": "72157605978703055", "photo_flickr_id": "2637139796", "setting": "first-2-pick-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40665", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the fireworks went really really high into the air .", "storylet_id": "203328"}], [{"original_text": "The finale consisted of some really large fireworks. ", "album_id": "72157605978703055", "photo_flickr_id": "2636315069", "setting": "first-2-pick-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40665", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finale consisted of some really large fireworks .", "storylet_id": "203329"}], [{"original_text": "Reflections on the water are a truly beauty enhancing experience when it comes to fireworks.", "album_id": "72157605978703055", "photo_flickr_id": "2637138394", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40666", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "reflections on the water are a truly beauty enhancing experience when it comes to fireworks .", "storylet_id": "203330"}], [{"original_text": "As the lights flash overhead they are mirrored in the water belong. ", "album_id": "72157605978703055", "photo_flickr_id": "2637138670", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40666", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the lights flash overhead they are mirrored in the water belong .", "storylet_id": "203331"}], [{"original_text": "Looking like a firefly swarm raining down on the earth, joining with another rising from the water's depths. ", "album_id": "72157605978703055", "photo_flickr_id": "2637139190", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40666", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looking like a firefly swarm raining down on the earth , joining with another rising from the water 's depths .", "storylet_id": "203332"}], [{"original_text": "It's a welcome to a new world, one in which it's almost possible that fairy tales are real.", "album_id": "72157605978703055", "photo_flickr_id": "2636314897", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40666", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's a welcome to a new world , one in which it 's almost possible that fairy tales are real .", "storylet_id": "203333"}], [{"original_text": "So sit back and enjoy the pretty lights as they ripple across the surface.", "album_id": "72157605978703055", "photo_flickr_id": "2636315469", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40666", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so sit back and enjoy the pretty lights as they ripple across the surface .", "storylet_id": "203334"}], [{"original_text": "Firework show is beginning and the boy sits and watches.", "album_id": "72157605978703055", "photo_flickr_id": "2637138898", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "40667", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "firework show is beginning and the boy sits and watches .", "storylet_id": "203335"}], [{"original_text": "The different type of fireworks are starting .", "album_id": "72157605978703055", "photo_flickr_id": "2637138670", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "40667", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the different type of fireworks are starting .", "storylet_id": "203336"}], [{"original_text": "Different type of colors and designs.", "album_id": "72157605978703055", "photo_flickr_id": "2637139100", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "40667", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "different type of colors and designs .", "storylet_id": "203337"}], [{"original_text": "More and more of the different fireworks.", "album_id": "72157605978703055", "photo_flickr_id": "2637139796", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "40667", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more and more of the different fireworks .", "storylet_id": "203338"}], [{"original_text": "Then the final big firework went off.", "album_id": "72157605978703055", "photo_flickr_id": "2636315069", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "40667", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then the final big firework went off .", "storylet_id": "203339"}], [{"original_text": "Out in the horizon, I saw a spark.", "album_id": "72157605978703055", "photo_flickr_id": "2637138898", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40668", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "out in the horizon , i saw a spark .", "storylet_id": "203340"}], [{"original_text": "I was confused at first, but another one exploded in the air.", "album_id": "72157605978703055", "photo_flickr_id": "2637138670", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40668", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was confused at first , but another one exploded in the air .", "storylet_id": "203341"}], [{"original_text": "Oh! They were fireworks!", "album_id": "72157605978703055", "photo_flickr_id": "2637139100", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40668", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "oh ! they were fireworks !", "storylet_id": "203342"}], [{"original_text": "Someone far away was setting out fireworks in the distance.", "album_id": "72157605978703055", "photo_flickr_id": "2637139796", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40668", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someone far away was setting out fireworks in the distance .", "storylet_id": "203343"}], [{"original_text": "It was quite a beautiful view by the lake.", "album_id": "72157605978703055", "photo_flickr_id": "2636315069", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40668", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was quite a beautiful view by the lake .", "storylet_id": "203344"}], [{"original_text": "We stood outside and looked up at the dark sky.", "album_id": "72157605978703055", "photo_flickr_id": "2637138898", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "40669", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we stood outside and looked up at the dark sky .", "storylet_id": "203345"}], [{"original_text": "There were fireworks in the distance above the bridge.", "album_id": "72157605978703055", "photo_flickr_id": "2637138670", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "40669", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were fireworks in the distance above the bridge .", "storylet_id": "203346"}], [{"original_text": "They were bright and beautiful above the water at night.", "album_id": "72157605978703055", "photo_flickr_id": "2637139100", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "40669", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were bright and beautiful above the water at night .", "storylet_id": "203347"}], [{"original_text": "They shot up into the air like a big ball.", "album_id": "72157605978703055", "photo_flickr_id": "2637139796", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "40669", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they shot up into the air like a big ball .", "storylet_id": "203348"}], [{"original_text": "The final ones were amazing, and they seemed to light up the entire sky with color.", "album_id": "72157605978703055", "photo_flickr_id": "2636315069", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "40669", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the final ones were amazing , and they seemed to light up the entire sky with color .", "storylet_id": "203349"}], [{"original_text": "The family gathered to support my husband and son. They participated in the city 4th of July parade.", "album_id": "72157605976016098", "photo_flickr_id": "2636670785", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40670", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family gathered to support my husband and son . they participated in the city 4th of july parade .", "storylet_id": "203350"}], [{"original_text": "My son and husband decorated a tractor full of American memorabilia.", "album_id": "72157605976016098", "photo_flickr_id": "2637493958", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40670", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my son and husband decorated a tractor full of american memorabilia .", "storylet_id": "203351"}], [{"original_text": "A few balloons were also use to decorate the tractor. ", "album_id": "72157605976016098", "photo_flickr_id": "2636669889", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40670", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few balloons were also use to decorate the tractor .", "storylet_id": "203352"}], [{"original_text": "We had a lot of water to stay hydrated during the parade.", "album_id": "72157605976016098", "photo_flickr_id": "2636670937", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40670", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a lot of water to stay hydrated during the parade .", "storylet_id": "203353"}], [{"original_text": "The family was proud to watch the tractor my son and husband built pass by in the parade. ", "album_id": "72157605976016098", "photo_flickr_id": "2636670467", "setting": "first-2-pick-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "40670", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family was proud to watch the tractor my son and husband built pass by in the parade .", "storylet_id": "203354"}], [{"original_text": "It was the annual Fourth of July parade!", "album_id": "72157605976016098", "photo_flickr_id": "2637495282", "setting": "first-2-pick-and-tell", "worker_id": "YL1IFXGGHFYNN6T", "story_id": "40671", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the annual fourth of july parade !", "storylet_id": "203355"}], [{"original_text": "There were floats and booths and music and dancing.", "album_id": "72157605976016098", "photo_flickr_id": "2637493846", "setting": "first-2-pick-and-tell", "worker_id": "YL1IFXGGHFYNN6T", "story_id": "40671", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were floats and booths and music and dancing .", "storylet_id": "203356"}], [{"original_text": "People were dressed up in their favorite red, white, and blue.", "album_id": "72157605976016098", "photo_flickr_id": "2636669693", "setting": "first-2-pick-and-tell", "worker_id": "YL1IFXGGHFYNN6T", "story_id": "40671", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people were dressed up in their favorite red , white , and blue .", "storylet_id": "203357"}], [{"original_text": "Even our teachers were having fun.", "album_id": "72157605976016098", "photo_flickr_id": "2636670113", "setting": "first-2-pick-and-tell", "worker_id": "YL1IFXGGHFYNN6T", "story_id": "40671", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even our teachers were having fun .", "storylet_id": "203358"}], [{"original_text": "But not everyone was thrilled to be there.", "album_id": "72157605976016098", "photo_flickr_id": "2636670007", "setting": "first-2-pick-and-tell", "worker_id": "YL1IFXGGHFYNN6T", "story_id": "40671", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but not everyone was thrilled to be there .", "storylet_id": "203359"}], [{"original_text": "Aunt May and aunt June sat waiting for the parade to start.", "album_id": "72157605976016098", "photo_flickr_id": "2636670785", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "40672", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "aunt [female] and aunt [female] sat waiting for the parade to start .", "storylet_id": "203360"}], [{"original_text": "Her son and grandson were going to be on a float in the parade.", "album_id": "72157605976016098", "photo_flickr_id": "2637493958", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "40672", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her son and grandson were going to be on a float in the parade .", "storylet_id": "203361"}], [{"original_text": "They had their balloons of all shapes and colors.", "album_id": "72157605976016098", "photo_flickr_id": "2636669889", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "40672", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had their balloons of all shapes and colors .", "storylet_id": "203362"}], [{"original_text": "Also hats and water when it got hot.", "album_id": "72157605976016098", "photo_flickr_id": "2636670937", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "40672", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "also hats and water when it got hot .", "storylet_id": "203363"}], [{"original_text": "This was an exciting day for the town.", "album_id": "72157605976016098", "photo_flickr_id": "2636670467", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "40672", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was an exciting day for the town .", "storylet_id": "203364"}], [{"original_text": "We decorated the truck for the parade.", "album_id": "72157605976016098", "photo_flickr_id": "2637495282", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40673", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decorated the truck for the parade .", "storylet_id": "203365"}], [{"original_text": "We dressed up too.", "album_id": "72157605976016098", "photo_flickr_id": "2637493846", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40673", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we dressed up too .", "storylet_id": "203366"}], [{"original_text": "Grandma went all out for the parade.", "album_id": "72157605976016098", "photo_flickr_id": "2636669693", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40673", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandma went all out for the parade .", "storylet_id": "203367"}], [{"original_text": "We made pom poms for everyone.", "album_id": "72157605976016098", "photo_flickr_id": "2636670113", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40673", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we made pom poms for everyone .", "storylet_id": "203368"}], [{"original_text": "There were hats and balloons for everyone.", "album_id": "72157605976016098", "photo_flickr_id": "2636670007", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40673", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were hats and balloons for everyone .", "storylet_id": "203369"}], [{"original_text": "We decorated the truck with a banner and drove it to the parade.", "album_id": "72157605976016098", "photo_flickr_id": "2637495282", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "40674", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decorated the truck with a banner and drove it to the parade .", "storylet_id": "203370"}], [{"original_text": "People were all dressed in red, white, and blue and had all sorts of floats ready.", "album_id": "72157605976016098", "photo_flickr_id": "2637493846", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "40674", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people were all dressed in red , white , and blue and had all sorts of floats ready .", "storylet_id": "203371"}], [{"original_text": "One lady even had a red, white, and blue wig!", "album_id": "72157605976016098", "photo_flickr_id": "2636669693", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "40674", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one lady even had a red , white , and blue wig !", "storylet_id": "203372"}], [{"original_text": "Other people just waved colored pom poms or flags.", "album_id": "72157605976016098", "photo_flickr_id": "2636670113", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "40674", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other people just waved colored pom poms or flags .", "storylet_id": "203373"}], [{"original_text": "A few people wore tall flag colored hats, and had balloons and other things to celebrate.", "album_id": "72157605976016098", "photo_flickr_id": "2636670007", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "40674", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a few people wore tall flag colored hats , and had balloons and other things to celebrate .", "storylet_id": "203374"}], [{"original_text": "We got a great view for the fireworks tonight.", "album_id": "72157605985973667", "photo_flickr_id": "2638288732", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "40675", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got a great view for the fireworks tonight .", "storylet_id": "203375"}], [{"original_text": "The colors look amazing from this distance.", "album_id": "72157605985973667", "photo_flickr_id": "2638280986", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "40675", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the colors look amazing from this distance .", "storylet_id": "203376"}], [{"original_text": "It is really amazing how many they can fire at the same time.", "album_id": "72157605985973667", "photo_flickr_id": "2637452219", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "40675", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is really amazing how many they can fire at the same time .", "storylet_id": "203377"}], [{"original_text": "They even have streaks of sparklers to show off.", "album_id": "72157605985973667", "photo_flickr_id": "2638275192", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "40675", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even have streaks of sparklers to show off .", "storylet_id": "203378"}], [{"original_text": "The grand finale was really a big spectacular.", "album_id": "72157605985973667", "photo_flickr_id": "2638311392", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "40675", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the grand finale was really a big spectacular .", "storylet_id": "203379"}], [{"original_text": "After the sun went down, it was time for the fireworks to begin.", "album_id": "72157605985973667", "photo_flickr_id": "2638279414", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40676", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after the sun went down , it was time for the fireworks to begin .", "storylet_id": "203380"}], [{"original_text": "They had large red ones go off in the sky.", "album_id": "72157605985973667", "photo_flickr_id": "2638286174", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40676", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had large red ones go off in the sky .", "storylet_id": "203381"}], [{"original_text": "Then there was some blue ones that were added.", "album_id": "72157605985973667", "photo_flickr_id": "2638283522", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40676", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then there was some blue ones that were added .", "storylet_id": "203382"}], [{"original_text": "After that there was some bright white lights in the sky.", "album_id": "72157605985973667", "photo_flickr_id": "2638288732", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40676", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that there was some bright white lights in the sky .", "storylet_id": "203383"}], [{"original_text": "At the end, they had many fireworks up in the sky.", "album_id": "72157605985973667", "photo_flickr_id": "2637490301", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "40676", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , they had many fireworks up in the sky .", "storylet_id": "203384"}], [{"original_text": "There was a fireworks show this weekend.", "album_id": "72157605985973667", "photo_flickr_id": "2638279414", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "40677", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a fireworks show this weekend .", "storylet_id": "203385"}], [{"original_text": "They started off firing a lto at once.", "album_id": "72157605985973667", "photo_flickr_id": "2638286174", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "40677", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they started off firing a lto at once .", "storylet_id": "203386"}], [{"original_text": "Then they slowed down a bit gradually.", "album_id": "72157605985973667", "photo_flickr_id": "2638283522", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "40677", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they slowed down a bit gradually .", "storylet_id": "203387"}], [{"original_text": "There was one that looked like a flower from afar.", "album_id": "72157605985973667", "photo_flickr_id": "2638288732", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "40677", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was one that looked like a flower from afar .", "storylet_id": "203388"}], [{"original_text": "At the end, they set off so many at once!", "album_id": "72157605985973667", "photo_flickr_id": "2637490301", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "40677", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , they set off so many at once !", "storylet_id": "203389"}], [{"original_text": "It's 4th of July and everyone is celebrating. ", "album_id": "72157605985973667", "photo_flickr_id": "2638288732", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "40678", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's 4th of july and everyone is celebrating .", "storylet_id": "203390"}], [{"original_text": "These fireworks can be seen from a hill on the edge of town. ", "album_id": "72157605985973667", "photo_flickr_id": "2638280986", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "40678", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these fireworks can be seen from a hill on the edge of town .", "storylet_id": "203391"}], [{"original_text": "The show lasts for over an hour. ", "album_id": "72157605985973667", "photo_flickr_id": "2637452219", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "40678", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the show lasts for over an hour .", "storylet_id": "203392"}], [{"original_text": "Someone in the crowd set this one off and was quickly arrested. ", "album_id": "72157605985973667", "photo_flickr_id": "2638275192", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "40678", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someone in the crowd set this one off and was quickly arrested .", "storylet_id": "203393"}], [{"original_text": "Finally comes the grand finale for the end of another great holiday. ", "album_id": "72157605985973667", "photo_flickr_id": "2638311392", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "40678", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally comes the grand finale for the end of another great holiday .", "storylet_id": "203394"}], [{"original_text": "Lots of fireworks in the distance tonight.", "album_id": "72157605985973667", "photo_flickr_id": "2638288732", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40679", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "lots of fireworks in the distance tonight .", "storylet_id": "203395"}], [{"original_text": "The family observes them from a far.", "album_id": "72157605985973667", "photo_flickr_id": "2638280986", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40679", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family observes them from a far .", "storylet_id": "203396"}], [{"original_text": "The kids ask to get closer but the parents say no.", "album_id": "72157605985973667", "photo_flickr_id": "2637452219", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40679", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids ask to get closer but the parents say no .", "storylet_id": "203397"}], [{"original_text": "They decide to light sparklers close by instead.", "album_id": "72157605985973667", "photo_flickr_id": "2638275192", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40679", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they decide to light sparklers close by instead .", "storylet_id": "203398"}], [{"original_text": "In the distance the grand finale starts.", "album_id": "72157605985973667", "photo_flickr_id": "2638311392", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40679", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the distance the grand finale starts .", "storylet_id": "203399"}], [{"original_text": "We took a trip to chicago for the fourth of july weekend. ", "album_id": "72157605987288353", "photo_flickr_id": "2638513958", "setting": "first-2-pick-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40680", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to chicago for the fourth of july weekend .", "storylet_id": "203400"}], [{"original_text": "We road on a quad bike for most of the early day. ", "album_id": "72157605987288353", "photo_flickr_id": "2638510562", "setting": "first-2-pick-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40680", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we road on a quad bike for most of the early day .", "storylet_id": "203401"}], [{"original_text": "We went to a festival during the day time. ", "album_id": "72157605987288353", "photo_flickr_id": "2637682067", "setting": "first-2-pick-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40680", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went to a festival during the day time .", "storylet_id": "203402"}], [{"original_text": "They shot off some fireworks over the bay. ", "album_id": "72157605987288353", "photo_flickr_id": "2637755063", "setting": "first-2-pick-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40680", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they shot off some fireworks over the bay .", "storylet_id": "203403"}], [{"original_text": "At the end of the night we spent most of our time looking at the skyline. ", "album_id": "72157605987288353", "photo_flickr_id": "2637762777", "setting": "first-2-pick-and-tell", "worker_id": "CLY89F3VC7W2TQE", "story_id": "40680", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night we spent most of our time looking at the skyline .", "storylet_id": "203404"}], [{"original_text": "Today was the day their plane arrived in the big city.", "album_id": "72157605987288353", "photo_flickr_id": "2638513958", "setting": "first-2-pick-and-tell", "worker_id": "03BH1L4PWX2QANO", "story_id": "40681", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day their plane arrived in the big city .", "storylet_id": "203405"}], [{"original_text": "When they got out of the airport they could not believe how crowded it really was. ", "album_id": "72157605987288353", "photo_flickr_id": "2637682067", "setting": "first-2-pick-and-tell", "worker_id": "03BH1L4PWX2QANO", "story_id": "40681", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when they got out of the airport they could not believe how crowded it really was .", "storylet_id": "203406"}], [{"original_text": "They rented a cart. They wanted to enjoy the sights before they fireworks this evening. ", "album_id": "72157605987288353", "photo_flickr_id": "2638510562", "setting": "first-2-pick-and-tell", "worker_id": "03BH1L4PWX2QANO", "story_id": "40681", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they rented a cart . they wanted to enjoy the sights before they fireworks this evening .", "storylet_id": "203407"}], [{"original_text": "After a full day of sightseeing they found a perfect spot to view the fireworks. ", "album_id": "72157605987288353", "photo_flickr_id": "2638555840", "setting": "first-2-pick-and-tell", "worker_id": "03BH1L4PWX2QANO", "story_id": "40681", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a full day of sightseeing they found a perfect spot to view the fireworks .", "storylet_id": "203408"}], [{"original_text": "They even made their early morning flight back home on time. The vie of the city at night from the air was amazing. ", "album_id": "72157605987288353", "photo_flickr_id": "2637762777", "setting": "first-2-pick-and-tell", "worker_id": "03BH1L4PWX2QANO", "story_id": "40681", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even made their early morning flight back home on time . the vie of the city at night from the air was amazing .", "storylet_id": "203409"}], [{"original_text": "As we approach the city, we got to see what a beautiful skyline it has.", "album_id": "72157605987288353", "photo_flickr_id": "2638513958", "setting": "last-3-pick-old-and-tell", "worker_id": "2TR59E3R8SYYWY0", "story_id": "40682", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as we approach the city , we got to see what a beautiful skyline it has .", "storylet_id": "203410"}], [{"original_text": "The city was very active. We spotter two kids having lots of fun a cart of some sort.", "album_id": "72157605987288353", "photo_flickr_id": "2638510562", "setting": "last-3-pick-old-and-tell", "worker_id": "2TR59E3R8SYYWY0", "story_id": "40682", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city was very active . we spotter two kids having lots of fun a cart of some sort .", "storylet_id": "203411"}], [{"original_text": "Headed downtown it was very crowded. Everyone wanted to see the firework show.", "album_id": "72157605987288353", "photo_flickr_id": "2637682067", "setting": "last-3-pick-old-and-tell", "worker_id": "2TR59E3R8SYYWY0", "story_id": "40682", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "headed downtown it was very crowded . everyone wanted to see the firework show .", "storylet_id": "203412"}], [{"original_text": "The fireworks were worth the wait. They were magnificent.", "album_id": "72157605987288353", "photo_flickr_id": "2637755063", "setting": "last-3-pick-old-and-tell", "worker_id": "2TR59E3R8SYYWY0", "story_id": "40682", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fireworks were worth the wait . they were magnificent .", "storylet_id": "203413"}], [{"original_text": "As we were leaving that night, we got one more glance at the beautiful skyline at night.", "album_id": "72157605987288353", "photo_flickr_id": "2637762777", "setting": "last-3-pick-old-and-tell", "worker_id": "2TR59E3R8SYYWY0", "story_id": "40682", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as we were leaving that night , we got one more glance at the beautiful skyline at night .", "storylet_id": "203414"}], [{"original_text": "The city was buzzing today.", "album_id": "72157605987288353", "photo_flickr_id": "2638513958", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40683", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city was buzzing today .", "storylet_id": "203415"}], [{"original_text": "Everyone was going somewhere on this nice summer day.", "album_id": "72157605987288353", "photo_flickr_id": "2638510562", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40683", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was going somewhere on this nice summer day .", "storylet_id": "203416"}], [{"original_text": "Lots of people were hanging out at a nearby carnival.", "album_id": "72157605987288353", "photo_flickr_id": "2637682067", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40683", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lots of people were hanging out at a nearby carnival .", "storylet_id": "203417"}], [{"original_text": "The fireworks started going off", "album_id": "72157605987288353", "photo_flickr_id": "2637755063", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40683", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fireworks started going off", "storylet_id": "203418"}], [{"original_text": "It was a great day in the city.", "album_id": "72157605987288353", "photo_flickr_id": "2637762777", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "40683", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great day in the city .", "storylet_id": "203419"}], [{"original_text": "The city background was dull.", "album_id": "72157605987288353", "photo_flickr_id": "2638513958", "setting": "last-3-pick-old-and-tell", "worker_id": "TYG4FZOGLRFMP0W", "story_id": "40684", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city background was dull .", "storylet_id": "203420"}], [{"original_text": "The people were full of gloom.", "album_id": "72157605987288353", "photo_flickr_id": "2638510562", "setting": "last-3-pick-old-and-tell", "worker_id": "TYG4FZOGLRFMP0W", "story_id": "40684", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the people were full of gloom .", "storylet_id": "203421"}], [{"original_text": "The people walked together off a cliff.", "album_id": "72157605987288353", "photo_flickr_id": "2637682067", "setting": "last-3-pick-old-and-tell", "worker_id": "TYG4FZOGLRFMP0W", "story_id": "40684", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people walked together off a cliff .", "storylet_id": "203422"}], [{"original_text": "They exploded when they fell off.", "album_id": "72157605987288353", "photo_flickr_id": "2637755063", "setting": "last-3-pick-old-and-tell", "worker_id": "TYG4FZOGLRFMP0W", "story_id": "40684", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they exploded when they fell off .", "storylet_id": "203423"}], [{"original_text": "The city was dieing and nobody cared.", "album_id": "72157605987288353", "photo_flickr_id": "2637762777", "setting": "last-3-pick-old-and-tell", "worker_id": "TYG4FZOGLRFMP0W", "story_id": "40684", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the city was dieing and nobody cared .", "storylet_id": "203424"}], [{"original_text": "The experiences of a fair are many and varied. ", "album_id": "72157605987531003", "photo_flickr_id": "2637709751", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40685", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the experiences of a fair are many and varied .", "storylet_id": "203425"}], [{"original_text": "There are animals to see and observe.", "album_id": "72157605987531003", "photo_flickr_id": "2637688503", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40685", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are animals to see and observe .", "storylet_id": "203426"}], [{"original_text": "Sometimes even animals to pet!", "album_id": "72157605987531003", "photo_flickr_id": "2638520292", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40685", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sometimes even animals to pet !", "storylet_id": "203427"}], [{"original_text": "There are color varieties of plants to become acquainted with.", "album_id": "72157605987531003", "photo_flickr_id": "2637697871", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40685", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are color varieties of plants to become acquainted with .", "storylet_id": "203428"}], [{"original_text": "And nature aside, there are always vast arrays of artistic projects to view and have broaden minds.", "album_id": "72157605987531003", "photo_flickr_id": "2638530726", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "40685", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and nature aside , there are always vast arrays of artistic projects to view and have broaden minds .", "storylet_id": "203429"}], [{"original_text": "When we arrived to the fair this guy was the first thing we saw. A little creepy if I do say so myself.", "album_id": "72157605987531003", "photo_flickr_id": "2638539972", "setting": "first-2-pick-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "40686", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when we arrived to the fair this guy was the first thing we saw . a little creepy if i do say so myself .", "storylet_id": "203430"}], [{"original_text": "Ivan and I were very excited about the horse show at the fair today.", "album_id": "72157605987531003", "photo_flickr_id": "2637709751", "setting": "first-2-pick-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "40686", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] and i were very excited about the horse show at the fair today .", "storylet_id": "203431"}], [{"original_text": "After the show we decided to walk around the animal sanctuary and ran into this cute guy.", "album_id": "72157605987531003", "photo_flickr_id": "2637688503", "setting": "first-2-pick-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "40686", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the show we decided to walk around the animal sanctuary and ran into this cute guy .", "storylet_id": "203432"}], [{"original_text": "There were so many beautiful flowers all around the fair.", "album_id": "72157605987531003", "photo_flickr_id": "2638533792", "setting": "first-2-pick-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "40686", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were so many beautiful flowers all around the fair .", "storylet_id": "203433"}], [{"original_text": "It wouldn't be a day at the fair without crazy food options!", "album_id": "72157605987531003", "photo_flickr_id": "2637706847", "setting": "first-2-pick-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "40686", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it would n't be a day at the fair without crazy food options !", "storylet_id": "203434"}], [{"original_text": "The couple took a trip to the ranch.", "album_id": "72157605987531003", "photo_flickr_id": "2637709751", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40687", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple took a trip to the ranch .", "storylet_id": "203435"}], [{"original_text": "The stopped by the petting zoo.", "album_id": "72157605987531003", "photo_flickr_id": "2637688503", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40687", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the stopped by the petting zoo .", "storylet_id": "203436"}], [{"original_text": "They were able to touch several animals.", "album_id": "72157605987531003", "photo_flickr_id": "2638520292", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40687", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were able to touch several animals .", "storylet_id": "203437"}], [{"original_text": "They also enjoyed the flowers and plants.", "album_id": "72157605987531003", "photo_flickr_id": "2637697871", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40687", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also enjoyed the flowers and plants .", "storylet_id": "203438"}], [{"original_text": "There was even an art exhibit.", "album_id": "72157605987531003", "photo_flickr_id": "2638530726", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40687", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was even an art exhibit .", "storylet_id": "203439"}], [{"original_text": "The fair was a lot of fun to go to this year.", "album_id": "72157605987531003", "photo_flickr_id": "2638539972", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40688", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fair was a lot of fun to go to this year .", "storylet_id": "203440"}], [{"original_text": "We watched some bands while sitting on the hay bales.", "album_id": "72157605987531003", "photo_flickr_id": "2637709751", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40688", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we watched some bands while sitting on the hay bales .", "storylet_id": "203441"}], [{"original_text": "The petting zoo was fun for the kids.", "album_id": "72157605987531003", "photo_flickr_id": "2637688503", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40688", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the petting zoo was fun for the kids .", "storylet_id": "203442"}], [{"original_text": "We went and saw the prize winning flowers.", "album_id": "72157605987531003", "photo_flickr_id": "2638533792", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40688", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went and saw the prize winning flowers .", "storylet_id": "203443"}], [{"original_text": "Of course we had to eat some fair food.", "album_id": "72157605987531003", "photo_flickr_id": "2637706847", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "40688", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of course we had to eat some fair food .", "storylet_id": "203444"}], [{"original_text": "The fair was featuring many attractions and events.", "album_id": "72157605987531003", "photo_flickr_id": "2638539972", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6XMW8ZIZCTZBE", "story_id": "40689", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fair was featuring many attractions and events .", "storylet_id": "203445"}], [{"original_text": "The people were resting after seeing the attractions.", "album_id": "72157605987531003", "photo_flickr_id": "2637709751", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6XMW8ZIZCTZBE", "story_id": "40689", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the people were resting after seeing the attractions .", "storylet_id": "203446"}], [{"original_text": "The animals are too resting after a long day.", "album_id": "72157605987531003", "photo_flickr_id": "2637688503", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6XMW8ZIZCTZBE", "story_id": "40689", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the animals are too resting after a long day .", "storylet_id": "203447"}], [{"original_text": "As the people exist they witness some flowring plants.", "album_id": "72157605987531003", "photo_flickr_id": "2638533792", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6XMW8ZIZCTZBE", "story_id": "40689", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the people exist they witness some flowring plants .", "storylet_id": "203448"}], [{"original_text": "And proceed to eat some junk food as it is customary.", "album_id": "72157605987531003", "photo_flickr_id": "2637706847", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6XMW8ZIZCTZBE", "story_id": "40689", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and proceed to eat some junk food as it is customary .", "storylet_id": "203449"}], [{"original_text": "Upon arrival, we decided to take a picture when we seen the Estes Park sign.", "album_id": "1069648", "photo_flickr_id": "49262351", "setting": "first-2-pick-and-tell", "worker_id": "Q0JQMD55T51UZS8", "story_id": "40690", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "upon arrival , we decided to take a picture when we seen the estes park sign .", "storylet_id": "203450"}], [{"original_text": "After arrival, we decided to go ahead and set up camp.", "album_id": "1069648", "photo_flickr_id": "49262360", "setting": "first-2-pick-and-tell", "worker_id": "Q0JQMD55T51UZS8", "story_id": "40690", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after arrival , we decided to go ahead and set up camp .", "storylet_id": "203451"}], [{"original_text": "The camp site was now for a nights stay.", "album_id": "1069648", "photo_flickr_id": "49262380", "setting": "first-2-pick-and-tell", "worker_id": "Q0JQMD55T51UZS8", "story_id": "40690", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the camp site was now for a nights stay .", "storylet_id": "203452"}], [{"original_text": "We walked about 150 feet from our campsite to scope out a mountain for tomorrows hike.", "album_id": "1069648", "photo_flickr_id": "49262309", "setting": "first-2-pick-and-tell", "worker_id": "Q0JQMD55T51UZS8", "story_id": "40690", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we walked about 150 feet from our campsite to scope out a mountain for tomorrows hike .", "storylet_id": "203453"}], [{"original_text": "Finally, we wrapped up the day by setting up a picnic for the three of us.", "album_id": "1069648", "photo_flickr_id": "49262409", "setting": "first-2-pick-and-tell", "worker_id": "Q0JQMD55T51UZS8", "story_id": "40690", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , we wrapped up the day by setting up a picnic for the three of us .", "storylet_id": "203454"}], [{"original_text": "Heading to the mountains for a nice weekend.", "album_id": "1069648", "photo_flickr_id": "49262291", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40691", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "heading to the mountains for a nice weekend .", "storylet_id": "203455"}], [{"original_text": "We are almost at the mountains.", "album_id": "1069648", "photo_flickr_id": "49262339", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40691", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are almost at the mountains .", "storylet_id": "203456"}], [{"original_text": "We have finally arrived at the park.", "album_id": "1069648", "photo_flickr_id": "49262351", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40691", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we have finally arrived at the park .", "storylet_id": "203457"}], [{"original_text": "Setting up the tent for the night.", "album_id": "1069648", "photo_flickr_id": "49262380", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40691", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "setting up the tent for the night .", "storylet_id": "203458"}], [{"original_text": "The mountains were lovely but its time to head home.", "album_id": "1069648", "photo_flickr_id": "49262559", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40691", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the mountains were lovely but its time to head home .", "storylet_id": "203459"}], [{"original_text": "We took a long drive up into the mountains to a beautiful park.", "album_id": "1069648", "photo_flickr_id": "49262351", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "40692", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a long drive up into the mountains to a beautiful park .", "storylet_id": "203460"}], [{"original_text": "As evening fell, we decided to pitch a tent and settle in for the night.", "album_id": "1069648", "photo_flickr_id": "49262360", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "40692", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as evening fell , we decided to pitch a tent and settle in for the night .", "storylet_id": "203461"}], [{"original_text": "Inside the tent, we told scary stories and ate snacks.", "album_id": "1069648", "photo_flickr_id": "49262380", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "40692", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "inside the tent , we told scary stories and ate snacks .", "storylet_id": "203462"}], [{"original_text": "In the morning, we realized the scenery was perfect for taking pictures, and dreamed of what it would be like to climb to the very top of the mountain.", "album_id": "1069648", "photo_flickr_id": "49262309", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "40692", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the morning , we realized the scenery was perfect for taking pictures , and dreamed of what it would be like to climb to the very top of the mountain .", "storylet_id": "203463"}], [{"original_text": "We took a hike and enjoyed the nearby scenery, like the trees whose leaves were changing color for Fall.", "album_id": "1069648", "photo_flickr_id": "49262409", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "40692", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took a hike and enjoyed the nearby scenery , like the trees whose leaves were changing color for fall .", "storylet_id": "203464"}], [{"original_text": "We spent the day driving through the mountains.", "album_id": "1069648", "photo_flickr_id": "49262291", "setting": "last-3-pick-old-and-tell", "worker_id": "GEWG1D0L4ZAFAT9", "story_id": "40693", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we spent the day driving through the mountains .", "storylet_id": "203465"}], [{"original_text": "Even when we got closer to them, they still looked far away!", "album_id": "1069648", "photo_flickr_id": "49262339", "setting": "last-3-pick-old-and-tell", "worker_id": "GEWG1D0L4ZAFAT9", "story_id": "40693", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even when we got closer to them , they still looked far away !", "storylet_id": "203466"}], [{"original_text": "We drove through Estes Park and decided to stay there for the night.", "album_id": "1069648", "photo_flickr_id": "49262351", "setting": "last-3-pick-old-and-tell", "worker_id": "GEWG1D0L4ZAFAT9", "story_id": "40693", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we drove through location location and decided to stay there for the night .", "storylet_id": "203467"}], [{"original_text": "Our campsite didn't look like much, but at least we all got some sleep.", "album_id": "1069648", "photo_flickr_id": "49262380", "setting": "last-3-pick-old-and-tell", "worker_id": "GEWG1D0L4ZAFAT9", "story_id": "40693", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our campsite did n't look like much , but at least we all got some sleep .", "storylet_id": "203468"}], [{"original_text": "We were back on the road in the morning and, before I knew it, the mountains were far away again.", "album_id": "1069648", "photo_flickr_id": "49262559", "setting": "last-3-pick-old-and-tell", "worker_id": "GEWG1D0L4ZAFAT9", "story_id": "40693", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were back on the road in the morning and , before i knew it , the mountains were far away again .", "storylet_id": "203469"}], [{"original_text": "The drive to the campsite was long.", "album_id": "1069648", "photo_flickr_id": "49262351", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "40694", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the drive to the campsite was long .", "storylet_id": "203470"}], [{"original_text": "Pedro was there already, shining the light through the fabric of the tent.", "album_id": "1069648", "photo_flickr_id": "49262360", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "40694", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was there already , shining the light through the fabric of the tent .", "storylet_id": "203471"}], [{"original_text": "The campsite was secluded.", "album_id": "1069648", "photo_flickr_id": "49262380", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "40694", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the campsite was secluded .", "storylet_id": "203472"}], [{"original_text": "After a quite morning, the sun came out and lit up the mountains.", "album_id": "1069648", "photo_flickr_id": "49262309", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "40694", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a quite morning , the sun came out and lit up the mountains .", "storylet_id": "203473"}], [{"original_text": "Perfect time for a hike.", "album_id": "1069648", "photo_flickr_id": "49262409", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "40694", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "perfect time for a hike .", "storylet_id": "203474"}], [{"original_text": "Michelle was ready to hit the party with her friends.", "album_id": "72057594053238890", "photo_flickr_id": "90603310", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40705", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was ready to hit the party with her friends .", "storylet_id": "203525"}], [{"original_text": "Ashley enjoyed a snack at the party.", "album_id": "72057594053238890", "photo_flickr_id": "90603419", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40705", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] enjoyed a snack at the party .", "storylet_id": "203526"}], [{"original_text": "Jacob and Michelle took selfie's together", "album_id": "72057594053238890", "photo_flickr_id": "90603423", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40705", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and [female] took selfie 's together", "storylet_id": "203527"}], [{"original_text": "Jacob taking a selfie with a cigar in his mouth.", "album_id": "72057594053238890", "photo_flickr_id": "90603471", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40705", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] taking a selfie with a cigar in his mouth .", "storylet_id": "203528"}], [{"original_text": "All of the friend enjoyed the party and took lots of selfies.", "album_id": "72057594053238890", "photo_flickr_id": "90603483", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40705", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of the friend enjoyed the party and took lots of selfies .", "storylet_id": "203529"}], [{"original_text": "It's a fun night out and this guy just wants to have fun.", "album_id": "72057594053238890", "photo_flickr_id": "90603395", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40706", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a fun night out and this guy just wants to have fun .", "storylet_id": "203530"}], [{"original_text": "He meets with his friend who looks very disinterested in hanging out.", "album_id": "72057594053238890", "photo_flickr_id": "90603419", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40706", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he meets with his friend who looks very disinterested in hanging out .", "storylet_id": "203531"}], [{"original_text": "He meets someone else who shows more interest in hanging with him.", "album_id": "72057594053238890", "photo_flickr_id": "90603428", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40706", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he meets someone else who shows more interest in hanging with him .", "storylet_id": "203532"}], [{"original_text": "He pops a cigar in his mouth and smiles.", "album_id": "72057594053238890", "photo_flickr_id": "90603471", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40706", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he pops a cigar in his mouth and smiles .", "storylet_id": "203533"}], [{"original_text": "Time for a group picture while continuing to smoke his cigar. ", "album_id": "72057594053238890", "photo_flickr_id": "90603483", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40706", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time for a group picture while continuing to smoke his cigar .", "storylet_id": "203534"}], [{"original_text": "A group of friends got together for a birthday party.", "album_id": "72057594053238890", "photo_flickr_id": "90603310", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "40707", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends got together for a birthday party .", "storylet_id": "203535"}], [{"original_text": "Some of the guest didn't enjoy the music.", "album_id": "72057594053238890", "photo_flickr_id": "90603419", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "40707", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the guest did n't enjoy the music .", "storylet_id": "203536"}], [{"original_text": "Others got a chance to see each other for the first time in years.", "album_id": "72057594053238890", "photo_flickr_id": "90603423", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "40707", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others got a chance to see each other for the first time in years .", "storylet_id": "203537"}], [{"original_text": "The guest of honor was having a great time.", "album_id": "72057594053238890", "photo_flickr_id": "90603471", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "40707", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guest of honor was having a great time .", "storylet_id": "203538"}], [{"original_text": "His friends all had a night to remember. ", "album_id": "72057594053238890", "photo_flickr_id": "90603483", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "40707", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his friends all had a night to remember .", "storylet_id": "203539"}], [{"original_text": "We went out to the bar to celebrate the end of the work week.", "album_id": "72057594053238890", "photo_flickr_id": "90603395", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "40708", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went out to the bar to celebrate the end of the work week .", "storylet_id": "203540"}], [{"original_text": "Jamie told us that we had to try the sushi at the restaurant.", "album_id": "72057594053238890", "photo_flickr_id": "90603419", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "40708", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] told us that we had to try the sushi at the restaurant .", "storylet_id": "203541"}], [{"original_text": "Here's Bob and Sky taking a selfie after they stole my phone.", "album_id": "72057594053238890", "photo_flickr_id": "90603428", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "40708", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's [male] and sky taking a selfie after they stole my phone .", "storylet_id": "203542"}], [{"original_text": "Then, Bob decided to get another set of cigars for the group.", "album_id": "72057594053238890", "photo_flickr_id": "90603471", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "40708", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , [male] decided to get another set of cigars for the group .", "storylet_id": "203543"}], [{"original_text": "We all appreciated bob for that.", "album_id": "72057594053238890", "photo_flickr_id": "90603483", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "40708", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all appreciated bob for that .", "storylet_id": "203544"}], [{"original_text": "Smoking a cigar. ", "album_id": "72057594053238890", "photo_flickr_id": "90603395", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40709", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "smoking a cigar .", "storylet_id": "203545"}], [{"original_text": "Friend taking food, about to eat. ", "album_id": "72057594053238890", "photo_flickr_id": "90603419", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40709", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "friend taking food , about to eat .", "storylet_id": "203546"}], [{"original_text": "Picture with girlfriend. ", "album_id": "72057594053238890", "photo_flickr_id": "90603428", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40709", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "picture with girlfriend .", "storylet_id": "203547"}], [{"original_text": "having fun and smoking a cigar. ", "album_id": "72057594053238890", "photo_flickr_id": "90603471", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40709", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "having fun and smoking a cigar .", "storylet_id": "203548"}], [{"original_text": "Picture of friends having fun together and smoking cigars. ", "album_id": "72057594053238890", "photo_flickr_id": "90603483", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40709", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "picture of friends having fun together and smoking cigars .", "storylet_id": "203549"}], [{"original_text": "Here I am reviewing some notes before my next test at school.", "album_id": "72057594080562623", "photo_flickr_id": "111477493", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40715", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here i am reviewing some notes before my next test at school .", "storylet_id": "203575"}], [{"original_text": "The party is on and our brother is caught in the mix!", "album_id": "72057594080562623", "photo_flickr_id": "111477492", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40715", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the party is on and our brother is caught in the mix !", "storylet_id": "203576"}], [{"original_text": "He poses for the camera with the flower he picked out for his girl.", "album_id": "72057594080562623", "photo_flickr_id": "111477490", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40715", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he poses for the camera with the flower he picked out for his girl .", "storylet_id": "203577"}], [{"original_text": "Here we are having fun on the ping pong table.", "album_id": "72057594080562623", "photo_flickr_id": "111483162", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40715", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here we are having fun on the ping pong table .", "storylet_id": "203578"}], [{"original_text": "Here I am making a funny face for my selfie.", "album_id": "72057594080562623", "photo_flickr_id": "111483158", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40715", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here i am making a funny face for my selfie .", "storylet_id": "203579"}], [{"original_text": "This is my city. It is beautiful and broad. It's rainy from time to time, but we try to stay dry.", "album_id": "72057594080562623", "photo_flickr_id": "111483160", "setting": "first-2-pick-and-tell", "worker_id": "GZ5479DLEFEC7OK", "story_id": "40716", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my city . it is beautiful and broad . it 's rainy from time to time , but we try to stay dry .", "storylet_id": "203580"}], [{"original_text": "Sometimes it rains so hard, that we need to wear a towel indoors. The rain drips from the ceilings at times, so it helps us cover our head from the insecticides that run off from the roof.", "album_id": "72057594080562623", "photo_flickr_id": "111483158", "setting": "first-2-pick-and-tell", "worker_id": "GZ5479DLEFEC7OK", "story_id": "40716", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sometimes it rains so hard , that we need to wear a towel indoors . the rain drips from the ceilings at times , so it helps us cover our head from the insecticides that run off from the roof .", "storylet_id": "203581"}], [{"original_text": "I remember when it all started. Before the thirtieth anniversary of our favorite television show Spongebob Squarepants, we decided to throw a party for us and the kids. Unfortunately, this party would be our last.", "album_id": "72057594080562623", "photo_flickr_id": "111477492", "setting": "first-2-pick-and-tell", "worker_id": "GZ5479DLEFEC7OK", "story_id": "40716", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i remember when it all started . before the thirtieth anniversary of our favorite television show spongebob squarepants , we decided to throw a party for us and the kids . unfortunately , this party would be our last .", "storylet_id": "203582"}], [{"original_text": "Hailstorms and light trails began to scour the earth. We ran into our quarters, and looked on the internet to see if we could find why this torment was occurring in nature.", "album_id": "72057594080562623", "photo_flickr_id": "111477488", "setting": "first-2-pick-and-tell", "worker_id": "GZ5479DLEFEC7OK", "story_id": "40716", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "hailstorms and light trails began to scour the location . we ran into our quarters , and looked on the internet to see if we could find why this torment was occurring in nature .", "storylet_id": "203583"}], [{"original_text": "We realized it was caused by the local Trappist monk who was reading Harry Potter books. He would strap a wrist protector in order to defend himself from the shingles. It worked, but this was the last time we would see him.", "album_id": "72057594080562623", "photo_flickr_id": "111477493", "setting": "first-2-pick-and-tell", "worker_id": "GZ5479DLEFEC7OK", "story_id": "40716", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we realized it was caused by the local trappist monk who was reading [male] potter books . he would strap a wrist protector in order to defend himself from the shingles . it worked , but this was the last time we would see him .", "storylet_id": "203584"}], [{"original_text": "It looks like rain today so we better get started.", "album_id": "72057594080562623", "photo_flickr_id": "111483160", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40717", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it looks like rain today so we better get started .", "storylet_id": "203585"}], [{"original_text": "I wanted to get a quick swim in before the showers approached us.", "album_id": "72057594080562623", "photo_flickr_id": "111483158", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40717", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i wanted to get a quick swim in before the showers approached us .", "storylet_id": "203586"}], [{"original_text": "When I got to the pool I could see that there were other people there.", "album_id": "72057594080562623", "photo_flickr_id": "111477492", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40717", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when i got to the pool i could see that there were other people there .", "storylet_id": "203587"}], [{"original_text": "Because there were so many people I decided to go into my computer room to play some games.", "album_id": "72057594080562623", "photo_flickr_id": "111477488", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40717", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "because there were so many people i decided to go into my computer room to play some games .", "storylet_id": "203588"}], [{"original_text": "While I was playing games I remembered that I had a paper due for school.", "album_id": "72057594080562623", "photo_flickr_id": "111477493", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40717", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while i was playing games i remembered that i had a paper due for school .", "storylet_id": "203589"}], [{"original_text": "Planning out the wonderful day ahead.", "album_id": "72057594080562623", "photo_flickr_id": "111477493", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40718", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "planning out the wonderful day ahead .", "storylet_id": "203590"}], [{"original_text": "All the friends chilling by the bool", "album_id": "72057594080562623", "photo_flickr_id": "111477492", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40718", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the friends chilling by the bool", "storylet_id": "203591"}], [{"original_text": "Being silly with a flower before teh event", "album_id": "72057594080562623", "photo_flickr_id": "111477490", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40718", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "being silly with a flower before teh event", "storylet_id": "203592"}], [{"original_text": "I lost a bet", "album_id": "72057594080562623", "photo_flickr_id": "111483162", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40718", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i lost a bet", "storylet_id": "203593"}], [{"original_text": "I have now become a jedi", "album_id": "72057594080562623", "photo_flickr_id": "111483158", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40718", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i have now become a jedi", "storylet_id": "203594"}], [{"original_text": "My frat brothers came to visit this week.", "album_id": "72057594080562623", "photo_flickr_id": "111483160", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEGGXWL1QCC2L22", "story_id": "40719", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my frat brothers came to visit this week .", "storylet_id": "203595"}], [{"original_text": "I had some serious flashbacks to college binge drinking.", "album_id": "72057594080562623", "photo_flickr_id": "111483158", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEGGXWL1QCC2L22", "story_id": "40719", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had some serious flashbacks to college binge drinking .", "storylet_id": "203596"}], [{"original_text": "We always did know how to get the girls.", "album_id": "72057594080562623", "photo_flickr_id": "111477492", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEGGXWL1QCC2L22", "story_id": "40719", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we always did know how to get the girls .", "storylet_id": "203597"}], [{"original_text": "My office was the only room that didn't get trashed.", "album_id": "72057594080562623", "photo_flickr_id": "111477488", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEGGXWL1QCC2L22", "story_id": "40719", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my office was the only room that did n't get trashed .", "storylet_id": "203598"}], [{"original_text": "I sure had a good time seeing all the guys, but I'm glad things are back to normal!", "album_id": "72057594080562623", "photo_flickr_id": "111477493", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEGGXWL1QCC2L22", "story_id": "40719", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i sure had a good time seeing all the guys , but i 'm glad things are back to normal !", "storylet_id": "203599"}], [{"original_text": "Friends were gathering together for an outdoor/indoor fundraiser.", "album_id": "72057594101742181", "photo_flickr_id": "40503170", "setting": "first-2-pick-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40720", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends were gathering together for an outdoor/indoor fundraiser .", "storylet_id": "203600"}], [{"original_text": "The fundraiser was sponsored by Budweiser.", "album_id": "72057594101742181", "photo_flickr_id": "40503167", "setting": "first-2-pick-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40720", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fundraiser was sponsored by budweiser .", "storylet_id": "203601"}], [{"original_text": "Everyone is inside paying for some items.", "album_id": "72057594101742181", "photo_flickr_id": "40505644", "setting": "first-2-pick-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40720", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone is inside paying for some items .", "storylet_id": "203602"}], [{"original_text": "At the fundraiser, two friends are enjoying themselves.", "album_id": "72057594101742181", "photo_flickr_id": "40505647", "setting": "first-2-pick-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40720", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the fundraiser , two friends are enjoying themselves .", "storylet_id": "203603"}], [{"original_text": "The guy made the day with his impressive unicycle skills", "album_id": "72057594101742181", "photo_flickr_id": "40509482", "setting": "first-2-pick-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40720", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the guy made the day with his impressive unicycle skills", "storylet_id": "203604"}], [{"original_text": "The volunteers were happy to have a booth where they could give out information on a product they love.", "album_id": "72057594101742181", "photo_flickr_id": "40503169", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40721", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the volunteers were happy to have a booth where they could give out information on a product they love .", "storylet_id": "203605"}], [{"original_text": "The two men shake hands after being reunited years after they went to college together.", "album_id": "72057594101742181", "photo_flickr_id": "40503168", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40721", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the two men shake hands after being reunited years after they went to college together .", "storylet_id": "203606"}], [{"original_text": "This couple is happy to help out in this outdoors service event.", "album_id": "72057594101742181", "photo_flickr_id": "40503170", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40721", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this couple is happy to help out in this outdoors service event .", "storylet_id": "203607"}], [{"original_text": "The two girls are sitting at a booth where they tell people where to go.", "album_id": "72057594101742181", "photo_flickr_id": "40503166", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40721", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the two girls are sitting at a booth where they tell people where to go .", "storylet_id": "203608"}], [{"original_text": "The group is happy that for their volunteer work, they won a budweiser award.", "album_id": "72057594101742181", "photo_flickr_id": "40503167", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40721", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the group is happy that for their volunteer work , they won a budweiser award .", "storylet_id": "203609"}], [{"original_text": "the couples posed for a picture in the crowd", "album_id": "72057594101742181", "photo_flickr_id": "40503170", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40722", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couples posed for a picture in the crowd", "storylet_id": "203610"}], [{"original_text": "many of the couples gathered to celebrate achievements in the community ", "album_id": "72057594101742181", "photo_flickr_id": "40503167", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40722", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of the couples gathered to celebrate achievements in the community", "storylet_id": "203611"}], [{"original_text": "they all gathered inside to socialize ", "album_id": "72057594101742181", "photo_flickr_id": "40505644", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40722", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all gathered inside to socialize", "storylet_id": "203612"}], [{"original_text": "many pictures were taken between friends", "album_id": "72057594101742181", "photo_flickr_id": "40505647", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40722", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many pictures were taken between friends", "storylet_id": "203613"}], [{"original_text": "and also solo pictures were taken ", "album_id": "72057594101742181", "photo_flickr_id": "40509482", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40722", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and also solo pictures were taken", "storylet_id": "203614"}], [{"original_text": "The bingo party was going well at the school function!", "album_id": "72057594101742181", "photo_flickr_id": "40503169", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40723", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bingo party was going well at the school function !", "storylet_id": "203615"}], [{"original_text": "The staff members even pretended to be friendly for pictures when they really all hated each other!", "album_id": "72057594101742181", "photo_flickr_id": "40503168", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40723", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the staff members even pretended to be friendly for pictures when they really all hated each other !", "storylet_id": "203616"}], [{"original_text": "Mothers and fathers could only really cope with being at the function through alcohol.", "album_id": "72057594101742181", "photo_flickr_id": "40503170", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40723", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mothers and fathers could only really cope with being at the function through alcohol .", "storylet_id": "203617"}], [{"original_text": "The kids were having fun though, even if they didn't want to be there in the first place.", "album_id": "72057594101742181", "photo_flickr_id": "40503166", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40723", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids were having fun though , even if they did n't want to be there in the first place .", "storylet_id": "203618"}], [{"original_text": "The spelling Bee went well! The school took first place!", "album_id": "72057594101742181", "photo_flickr_id": "40503167", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40723", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the spelling bee went well ! the school took first place !", "storylet_id": "203619"}], [{"original_text": "The community is gathering for a festival.", "album_id": "72057594101742181", "photo_flickr_id": "40503169", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40724", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the community is gathering for a festival .", "storylet_id": "203620"}], [{"original_text": "Many people come together to make it work.", "album_id": "72057594101742181", "photo_flickr_id": "40503168", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40724", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people come together to make it work .", "storylet_id": "203621"}], [{"original_text": "This couple is enjoying the day.", "album_id": "72057594101742181", "photo_flickr_id": "40503170", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40724", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this couple is enjoying the day .", "storylet_id": "203622"}], [{"original_text": "These volunteers pose happily for a picture.", "album_id": "72057594101742181", "photo_flickr_id": "40503166", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40724", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these volunteers pose happily for a picture .", "storylet_id": "203623"}], [{"original_text": "Every gets together to thank Budweiser for making the festival a sucess.", "album_id": "72057594101742181", "photo_flickr_id": "40503167", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40724", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "every gets together to thank budweiser for making the festival a sucess .", "storylet_id": "203624"}], [{"original_text": "Nachos and cheese!", "album_id": "72057594126576216", "photo_flickr_id": "141082369", "setting": "first-2-pick-and-tell", "worker_id": "WVGR7JH2ECG6M0P", "story_id": "40725", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "nachos and cheese !", "storylet_id": "203625"}], [{"original_text": "Everyone gathering enjoying the food.", "album_id": "72057594126576216", "photo_flickr_id": "141082370", "setting": "first-2-pick-and-tell", "worker_id": "WVGR7JH2ECG6M0P", "story_id": "40725", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone gathering enjoying the food .", "storylet_id": "203626"}], [{"original_text": "Sombrero to block all this sun", "album_id": "72057594126576216", "photo_flickr_id": "141083253", "setting": "first-2-pick-and-tell", "worker_id": "WVGR7JH2ECG6M0P", "story_id": "40725", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sombrero to block all this sun", "storylet_id": "203627"}], [{"original_text": "And the pinata is almost in two pieces. ", "album_id": "72057594126576216", "photo_flickr_id": "141083255", "setting": "first-2-pick-and-tell", "worker_id": "WVGR7JH2ECG6M0P", "story_id": "40725", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the pinata is almost in two pieces .", "storylet_id": "203628"}], [{"original_text": "May I have a Dr. Pepper?", "album_id": "72057594126576216", "photo_flickr_id": "141083258", "setting": "first-2-pick-and-tell", "worker_id": "WVGR7JH2ECG6M0P", "story_id": "40725", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] i have a dr. pepper ?", "storylet_id": "203629"}], [{"original_text": "Some friends hung out together on Cinco de Mayo.", "album_id": "72057594126576216", "photo_flickr_id": "141082367", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40726", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some friends hung out together on cinco de mayo .", "storylet_id": "203630"}], [{"original_text": "They all bought huge sombreros to wear. ", "album_id": "72057594126576216", "photo_flickr_id": "141082368", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40726", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all bought huge sombreros to wear .", "storylet_id": "203631"}], [{"original_text": "They enjoyed some delicious nachos dipped in cheese.", "album_id": "72057594126576216", "photo_flickr_id": "141082369", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40726", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they enjoyed some delicious nachos dipped in cheese .", "storylet_id": "203632"}], [{"original_text": "Finally they took a swing at a pinata.", "album_id": "72057594126576216", "photo_flickr_id": "141083256", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40726", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally they took a swing at a pinata .", "storylet_id": "203633"}], [{"original_text": "They broke it open and scrambled for the candy!", "album_id": "72057594126576216", "photo_flickr_id": "141083255", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40726", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they broke it open and scrambled for the candy !", "storylet_id": "203634"}], [{"original_text": "The class celebrated Cinco de Mayo.", "album_id": "72057594126576216", "photo_flickr_id": "141082367", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40727", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the class celebrated organization organization organization .", "storylet_id": "203635"}], [{"original_text": "Hats were popular fashion choices.", "album_id": "72057594126576216", "photo_flickr_id": "141082368", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40727", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "hats were popular fashion choices .", "storylet_id": "203636"}], [{"original_text": "Chips and dip were some examples of the food served.", "album_id": "72057594126576216", "photo_flickr_id": "141082369", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40727", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "chips and dip were some examples of the food served .", "storylet_id": "203637"}], [{"original_text": "Games were played.", "album_id": "72057594126576216", "photo_flickr_id": "141083256", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40727", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "games were played .", "storylet_id": "203638"}], [{"original_text": "And lots of prizes were won.", "album_id": "72057594126576216", "photo_flickr_id": "141083255", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40727", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and lots of prizes were won .", "storylet_id": "203639"}], [{"original_text": "My friends and I went to this great party with these killer nachos.", "album_id": "72057594126576216", "photo_flickr_id": "141082369", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40728", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i went to this great party with these killer nachos .", "storylet_id": "203640"}], [{"original_text": "Block style outside in the beautiful sun.", "album_id": "72057594126576216", "photo_flickr_id": "141082370", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40728", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "block style outside in the beautiful sun .", "storylet_id": "203641"}], [{"original_text": "My hat protected me from getting burnt. ", "album_id": "72057594126576216", "photo_flickr_id": "141083253", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40728", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my hat protected me from getting burnt .", "storylet_id": "203642"}], [{"original_text": "I think we may have had a few too many Coronas.", "album_id": "72057594126576216", "photo_flickr_id": "141083255", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40728", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i think we may have had a few too many coronas .", "storylet_id": "203643"}], [{"original_text": "Eventually the cops came to break it all up. ", "album_id": "72057594126576216", "photo_flickr_id": "141083258", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40728", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually the cops came to break it all up .", "storylet_id": "203644"}], [{"original_text": "The car is decorated with a sign to celebrate the day.", "album_id": "72057594126576216", "photo_flickr_id": "141082367", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "40729", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the car is decorated with a sign to celebrate the day .", "storylet_id": "203645"}], [{"original_text": "It`s a mexican holiday that is widely celebrated. That`s what these people are doing.", "album_id": "72057594126576216", "photo_flickr_id": "141082368", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "40729", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it`s a mexican holiday that is widely celebrated . that`s what these people are doing .", "storylet_id": "203646"}], [{"original_text": "They eat tacos and a lot of other ethnic foods.", "album_id": "72057594126576216", "photo_flickr_id": "141082369", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "40729", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they eat tacos and a lot of other ethnic foods .", "storylet_id": "203647"}], [{"original_text": "People are coming together to be with each other to have fun.", "album_id": "72057594126576216", "photo_flickr_id": "141083256", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "40729", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people are coming together to be with each other to have fun .", "storylet_id": "203648"}], [{"original_text": "They try to make up activities to express themselves.", "album_id": "72057594126576216", "photo_flickr_id": "141083255", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "40729", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they try to make up activities to express themselves .", "storylet_id": "203649"}], [{"original_text": "We are excited for a day at the amusement park.", "album_id": "72157594152362026", "photo_flickr_id": "157957582", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "40730", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are excited for a day at the amusement park .", "storylet_id": "203650"}], [{"original_text": "The rides where all excited.", "album_id": "72157594152362026", "photo_flickr_id": "157957577", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "40730", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rides where all excited .", "storylet_id": "203651"}], [{"original_text": "I love roller coasters!", "album_id": "72157594152362026", "photo_flickr_id": "157957578", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "40730", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i love roller coasters !", "storylet_id": "203652"}], [{"original_text": "I also really like shooting games.", "album_id": "72157594152362026", "photo_flickr_id": "158100258", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "40730", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also really like shooting games .", "storylet_id": "203653"}], [{"original_text": "It was a great day.", "album_id": "72157594152362026", "photo_flickr_id": "158100261", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "40730", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great day .", "storylet_id": "203654"}], [{"original_text": "We decided to go to the fair today.", "album_id": "72157594152362026", "photo_flickr_id": "157957582", "setting": "first-2-pick-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "40731", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go to the fair today .", "storylet_id": "203655"}], [{"original_text": "We rode on several rides including the swings.", "album_id": "72157594152362026", "photo_flickr_id": "157957577", "setting": "first-2-pick-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "40731", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we rode on several rides including the swings .", "storylet_id": "203656"}], [{"original_text": "The roller coaster was a lot of fun, but also really scary.", "album_id": "72157594152362026", "photo_flickr_id": "157957581", "setting": "first-2-pick-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "40731", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the roller coaster was a lot of fun , but also really scary .", "storylet_id": "203657"}], [{"original_text": "We tried to win a few prizes at the games too.", "album_id": "72157594152362026", "photo_flickr_id": "158100258", "setting": "first-2-pick-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "40731", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we tried to win a few prizes at the games too .", "storylet_id": "203658"}], [{"original_text": "We were there late into the night.", "album_id": "72157594152362026", "photo_flickr_id": "158100264", "setting": "first-2-pick-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "40731", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were there late into the night .", "storylet_id": "203659"}], [{"original_text": "We finally made it to the theme park!", "album_id": "72157594152362026", "photo_flickr_id": "157957582", "setting": "last-3-pick-old-and-tell", "worker_id": "PFM8SCY4M3DKNA9", "story_id": "40732", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we finally made it to the theme park !", "storylet_id": "203660"}], [{"original_text": "Even though I hate heights we took a ride in the chairs.", "album_id": "72157594152362026", "photo_flickr_id": "157957577", "setting": "last-3-pick-old-and-tell", "worker_id": "PFM8SCY4M3DKNA9", "story_id": "40732", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even though i hate heights we took a ride in the chairs .", "storylet_id": "203661"}], [{"original_text": "This ride was more my style . ", "album_id": "72157594152362026", "photo_flickr_id": "157957578", "setting": "last-3-pick-old-and-tell", "worker_id": "PFM8SCY4M3DKNA9", "story_id": "40732", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this ride was more my style .", "storylet_id": "203662"}], [{"original_text": "After going on so many rides, we took aim at some games instead. ", "album_id": "72157594152362026", "photo_flickr_id": "158100258", "setting": "last-3-pick-old-and-tell", "worker_id": "PFM8SCY4M3DKNA9", "story_id": "40732", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after going on so many rides , we took aim at some games instead .", "storylet_id": "203663"}], [{"original_text": "There were so many lights and cool things to see at the park. ", "album_id": "72157594152362026", "photo_flickr_id": "158100261", "setting": "last-3-pick-old-and-tell", "worker_id": "PFM8SCY4M3DKNA9", "story_id": "40732", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were so many lights and cool things to see at the park .", "storylet_id": "203664"}], [{"original_text": "Here we are for a fun day at the church carnival held every year.", "album_id": "72157594152362026", "photo_flickr_id": "157957582", "setting": "last-3-pick-old-and-tell", "worker_id": "POXGW9EXPF58T09", "story_id": "40733", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are for a fun day at the church carnival held every year .", "storylet_id": "203665"}], [{"original_text": "This is certainly higher than mom and dad swung us when we were little.", "album_id": "72157594152362026", "photo_flickr_id": "157957577", "setting": "last-3-pick-old-and-tell", "worker_id": "POXGW9EXPF58T09", "story_id": "40733", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is certainly higher than mom and dad swung us when we were little .", "storylet_id": "203666"}], [{"original_text": "This is really pretty safe; look-no hands!", "album_id": "72157594152362026", "photo_flickr_id": "157957578", "setting": "last-3-pick-old-and-tell", "worker_id": "POXGW9EXPF58T09", "story_id": "40733", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is really pretty safe ; look-no hands !", "storylet_id": "203667"}], [{"original_text": "You can get some practice shooting if you give them enough quarters.", "album_id": "72157594152362026", "photo_flickr_id": "158100258", "setting": "last-3-pick-old-and-tell", "worker_id": "POXGW9EXPF58T09", "story_id": "40733", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you can get some practice shooting if you give them enough quarters .", "storylet_id": "203668"}], [{"original_text": "Everyone is spinning around on the beautifully lit whirlybird.", "album_id": "72157594152362026", "photo_flickr_id": "158100261", "setting": "last-3-pick-old-and-tell", "worker_id": "POXGW9EXPF58T09", "story_id": "40733", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone is spinning around on the beautifully lit whirlybird .", "storylet_id": "203669"}], [{"original_text": "We were ready for our fun to begin.", "album_id": "72157594152362026", "photo_flickr_id": "157957582", "setting": "last-3-pick-old-and-tell", "worker_id": "Z11OU0PB0H7A59T", "story_id": "40734", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were ready for our fun to begin .", "storylet_id": "203670"}], [{"original_text": "A ride on the swings was exhilarating. ", "album_id": "72157594152362026", "photo_flickr_id": "157957577", "setting": "last-3-pick-old-and-tell", "worker_id": "Z11OU0PB0H7A59T", "story_id": "40734", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a ride on the swings was exhilarating .", "storylet_id": "203671"}], [{"original_text": "A little thrill from the roller coaster was just what we needed.", "album_id": "72157594152362026", "photo_flickr_id": "157957581", "setting": "last-3-pick-old-and-tell", "worker_id": "Z11OU0PB0H7A59T", "story_id": "40734", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a little thrill from the roller coaster was just what we needed .", "storylet_id": "203672"}], [{"original_text": "Of course, we still had time to test out our shooting skills.", "album_id": "72157594152362026", "photo_flickr_id": "158100258", "setting": "last-3-pick-old-and-tell", "worker_id": "Z11OU0PB0H7A59T", "story_id": "40734", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course , we still had time to test out our shooting skills .", "storylet_id": "203673"}], [{"original_text": "We had so much fun that we made sure to stay into the evening.", "album_id": "72157594152362026", "photo_flickr_id": "158100264", "setting": "last-3-pick-old-and-tell", "worker_id": "Z11OU0PB0H7A59T", "story_id": "40734", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had so much fun that we made sure to stay into the evening .", "storylet_id": "203674"}], [{"original_text": "What sort of magic is this?", "album_id": "72157594269423279", "photo_flickr_id": "234515480", "setting": "first-2-pick-and-tell", "worker_id": "D62QRK73E32UBH1", "story_id": "40740", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what sort of magic is this ?", "storylet_id": "203700"}], [{"original_text": "Yummy, yum yum.", "album_id": "72157594269423279", "photo_flickr_id": "234516339", "setting": "first-2-pick-and-tell", "worker_id": "D62QRK73E32UBH1", "story_id": "40740", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "yummy , yum yum .", "storylet_id": "203701"}], [{"original_text": "How many does this one make?", "album_id": "72157594269423279", "photo_flickr_id": "234517659", "setting": "first-2-pick-and-tell", "worker_id": "D62QRK73E32UBH1", "story_id": "40740", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "how many does this one make ?", "storylet_id": "203702"}], [{"original_text": "Diet, we don't need no stinking diet.", "album_id": "72157594269423279", "photo_flickr_id": "234516851", "setting": "first-2-pick-and-tell", "worker_id": "D62QRK73E32UBH1", "story_id": "40740", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "diet , we do n't need no stinking diet .", "storylet_id": "203703"}], [{"original_text": "Can't move, ate too much.", "album_id": "72157594269423279", "photo_flickr_id": "234514985", "setting": "first-2-pick-and-tell", "worker_id": "D62QRK73E32UBH1", "story_id": "40740", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ca n't move , ate too much .", "storylet_id": "203704"}], [{"original_text": "The cat was playful on the carpet.", "album_id": "72157594269423279", "photo_flickr_id": "234512947", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40741", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cat was playful on the carpet .", "storylet_id": "203705"}], [{"original_text": "The couple were tail gating before the game.", "album_id": "72157594269423279", "photo_flickr_id": "234513320", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40741", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the couple were tail gating before the game .", "storylet_id": "203706"}], [{"original_text": "The deep fried candy bars stand.", "album_id": "72157594269423279", "photo_flickr_id": "234515480", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40741", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the deep fried candy bars stand .", "storylet_id": "203707"}], [{"original_text": "The lady was munching on a corn dog.", "album_id": "72157594269423279", "photo_flickr_id": "234516851", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40741", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lady was munching on a corn dog .", "storylet_id": "203708"}], [{"original_text": "The man was in love with the deep fried dessert.", "album_id": "72157594269423279", "photo_flickr_id": "234517271", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40741", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the man was in love with the deep fried dessert .", "storylet_id": "203709"}], [{"original_text": "Our cat simba was a little upset he could not go to the fair with us.", "album_id": "72157594269423279", "photo_flickr_id": "234512947", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40742", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our cat simba was a little upset he could not go to the fair with us .", "storylet_id": "203710"}], [{"original_text": "W got there early and changed our kid in the back.", "album_id": "72157594269423279", "photo_flickr_id": "234513320", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40742", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "w got there early and changed our kid in the back .", "storylet_id": "203711"}], [{"original_text": "This was the sign that really let us know we were there.", "album_id": "72157594269423279", "photo_flickr_id": "234515480", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40742", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was the sign that really let us know we were there .", "storylet_id": "203712"}], [{"original_text": "My wife trying something fried, still not sure what it was.", "album_id": "72157594269423279", "photo_flickr_id": "234516851", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40742", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my wife trying something fried , still not sure what it was .", "storylet_id": "203713"}], [{"original_text": "My brother got some kind of fried treat and really enjoyed it.", "album_id": "72157594269423279", "photo_flickr_id": "234517271", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40742", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my brother got some kind of fried treat and really enjoyed it .", "storylet_id": "203714"}], [{"original_text": "We made it to the festivities where there is plenty of food to choose from.", "album_id": "72157594269423279", "photo_flickr_id": "234515480", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40743", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we made it to the festivities where there is plenty of food to choose from .", "storylet_id": "203715"}], [{"original_text": "She really seemed to like the taste of this.", "album_id": "72157594269423279", "photo_flickr_id": "234516339", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40743", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she really seemed to like the taste of this .", "storylet_id": "203716"}], [{"original_text": "The taste of this deep fried candy bar really brought a smile to his face.", "album_id": "72157594269423279", "photo_flickr_id": "234517659", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40743", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the taste of this deep fried candy bar really brought a smile to his face .", "storylet_id": "203717"}], [{"original_text": "There were many different things to enjoy.", "album_id": "72157594269423279", "photo_flickr_id": "234516851", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40743", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many different things to enjoy .", "storylet_id": "203718"}], [{"original_text": "Every once in a while we would just sit down and talk.", "album_id": "72157594269423279", "photo_flickr_id": "234514985", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40743", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "every once in a while we would just sit down and talk .", "storylet_id": "203719"}], [{"original_text": "The couple decided to go to the fair!", "album_id": "72157594269423279", "photo_flickr_id": "234515480", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40744", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple decided to go to the fair !", "storylet_id": "203720"}], [{"original_text": "The woman was enjoying her food.", "album_id": "72157594269423279", "photo_flickr_id": "234516339", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40744", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the woman was enjoying her food .", "storylet_id": "203721"}], [{"original_text": "So was the man.", "album_id": "72157594269423279", "photo_flickr_id": "234517659", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40744", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so was the man .", "storylet_id": "203722"}], [{"original_text": "She had a corn dog next.", "album_id": "72157594269423279", "photo_flickr_id": "234516851", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40744", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she had a corn dog next .", "storylet_id": "203723"}], [{"original_text": "Then they sat down in the park to relax.", "album_id": "72157594269423279", "photo_flickr_id": "234514985", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40744", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then they sat down in the park to relax .", "storylet_id": "203724"}], [{"original_text": "Mom made such a beautiful cake with lots of decorations.", "album_id": "72157594499779961", "photo_flickr_id": "369214091", "setting": "first-2-pick-and-tell", "worker_id": "GC937TGDCIU7PPS", "story_id": "40745", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom made such a beautiful cake with lots of decorations .", "storylet_id": "203725"}], [{"original_text": "But the girls tore into it. It must have been yummy.", "album_id": "72157594499779961", "photo_flickr_id": "369214097", "setting": "first-2-pick-and-tell", "worker_id": "GC937TGDCIU7PPS", "story_id": "40745", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but the girls tore into it . it must have been yummy .", "storylet_id": "203726"}], [{"original_text": "Aww yeah! Today's Katie's birthday. Smile! The cake gave her a blue tongue.", "album_id": "72157594499779961", "photo_flickr_id": "369224911", "setting": "first-2-pick-and-tell", "worker_id": "GC937TGDCIU7PPS", "story_id": "40745", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "aww yeah ! today 's [female] 's birthday . smile ! the cake gave her a blue tongue .", "storylet_id": "203727"}], [{"original_text": "Later, there were presents.", "album_id": "72157594499779961", "photo_flickr_id": "369224919", "setting": "first-2-pick-and-tell", "worker_id": "GC937TGDCIU7PPS", "story_id": "40745", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later , there were presents .", "storylet_id": "203728"}], [{"original_text": "And afterwards, we made a bomb out of diet coke and Mentos! It was a spectacular day!", "album_id": "72157594499779961", "photo_flickr_id": "369221017", "setting": "first-2-pick-and-tell", "worker_id": "GC937TGDCIU7PPS", "story_id": "40745", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and afterwards , we made a bomb out of diet coke and mentos ! it was a spectacular day !", "storylet_id": "203729"}], [{"original_text": "Katie's fifth birthday party was a big success.", "album_id": "72157594499779961", "photo_flickr_id": "369214091", "setting": "first-2-pick-and-tell", "worker_id": "64Z57ZRBVZF0WQ3", "story_id": "40746", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] 's fifth birthday party was a big success .", "storylet_id": "203730"}], [{"original_text": "Katie likes flowers, and wanted to eat all of the flowers on her cake.", "album_id": "72157594499779961", "photo_flickr_id": "369214095", "setting": "first-2-pick-and-tell", "worker_id": "64Z57ZRBVZF0WQ3", "story_id": "40746", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] likes flowers , and wanted to eat all of the flowers on her cake .", "storylet_id": "203731"}], [{"original_text": "She said her cake tasted even better than it looked.", "album_id": "72157594499779961", "photo_flickr_id": "369214097", "setting": "first-2-pick-and-tell", "worker_id": "64Z57ZRBVZF0WQ3", "story_id": "40746", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she said her cake tasted even better than it looked .", "storylet_id": "203732"}], [{"original_text": "I think I should have done the Mentos/diet Coke trick outside! ", "album_id": "72157594499779961", "photo_flickr_id": "369221017", "setting": "first-2-pick-and-tell", "worker_id": "64Z57ZRBVZF0WQ3", "story_id": "40746", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i think i should have done the mentos/diet coke trick outside !", "storylet_id": "203733"}], [{"original_text": "Katie had a great day and loved all of her gifts.", "album_id": "72157594499779961", "photo_flickr_id": "369224919", "setting": "first-2-pick-and-tell", "worker_id": "64Z57ZRBVZF0WQ3", "story_id": "40746", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] had a great day and loved all of her gifts .", "storylet_id": "203734"}], [{"original_text": "We had a ball celebrating Katie's 5th birthday!", "album_id": "72157594499779961", "photo_flickr_id": "369214091", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40747", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a ball celebrating [female] 's 5th birthday !", "storylet_id": "203735"}], [{"original_text": "I think she was a little sad we had to cut the cake.", "album_id": "72157594499779961", "photo_flickr_id": "369214095", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40747", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i think she was a little sad we had to cut the cake .", "storylet_id": "203736"}], [{"original_text": "She was all smiles once she tasted it though!", "album_id": "72157594499779961", "photo_flickr_id": "369214097", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40747", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was all smiles once she tasted it though !", "storylet_id": "203737"}], [{"original_text": "Somebody shook up the cola and accidentally caused some excitement.", "album_id": "72157594499779961", "photo_flickr_id": "369221017", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40747", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "somebody shook up the cola and accidentally caused some excitement .", "storylet_id": "203738"}], [{"original_text": "The celebration ended with the kids sitting on the floor and giving the birthday girl her gifts!", "album_id": "72157594499779961", "photo_flickr_id": "369224919", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40747", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the celebration ended with the kids sitting on the floor and giving the birthday girl her gifts !", "storylet_id": "203739"}], [{"original_text": "Katie is turning 5 today! She loved birthdays!", "album_id": "72157594499779961", "photo_flickr_id": "369214091", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40748", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is turning 5 today ! she loved birthdays !", "storylet_id": "203740"}], [{"original_text": "Katie loves the caker her mommy made for her!", "album_id": "72157594499779961", "photo_flickr_id": "369214097", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40748", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] loves the caker her mommy made for her !", "storylet_id": "203741"}], [{"original_text": "Allison however wanted to show off and be the center of attention.", "album_id": "72157594499779961", "photo_flickr_id": "369224911", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40748", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] however wanted to show off and be the center of attention .", "storylet_id": "203742"}], [{"original_text": "They devised a plan to put Allison in her place so she wouldn't be so needy.", "album_id": "72157594499779961", "photo_flickr_id": "369224919", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40748", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they devised a plan to put [female] in her place so she would n't be so needy .", "storylet_id": "203743"}], [{"original_text": "Katie shook the coke bottle, and asked Allison to get her a glass. The fun was about to begin.", "album_id": "72157594499779961", "photo_flickr_id": "369221017", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40748", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] shook the coke bottle , and asked [female] to get her a glass . the fun was about to begin .", "storylet_id": "203744"}], [{"original_text": "Katie's 5th birthday cake. ", "album_id": "72157594499779961", "photo_flickr_id": "369214091", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40749", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] 's 5th birthday cake .", "storylet_id": "203745"}], [{"original_text": "Singing happy birthday to Katie. ", "album_id": "72157594499779961", "photo_flickr_id": "369214095", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40749", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "singing happy birthday to [female] .", "storylet_id": "203746"}], [{"original_text": "Katie eating her birthday cake and loving it. ", "album_id": "72157594499779961", "photo_flickr_id": "369214097", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40749", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] eating her birthday cake and loving it .", "storylet_id": "203747"}], [{"original_text": "The bar and the snacks. ", "album_id": "72157594499779961", "photo_flickr_id": "369221017", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40749", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bar and the snacks .", "storylet_id": "203748"}], [{"original_text": "Katie is opening her birthday presents. ", "album_id": "72157594499779961", "photo_flickr_id": "369224919", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40749", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] is opening her birthday presents .", "storylet_id": "203749"}], [{"original_text": "The clouds were a bit ominous the day of the festival.", "album_id": "72157600068118513", "photo_flickr_id": "165689273", "setting": "first-2-pick-and-tell", "worker_id": "0ZG8DWF2JK1DSB9", "story_id": "40760", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the clouds were a bit ominous the day of the festival .", "storylet_id": "203800"}], [{"original_text": "So we brought an umbrella just to be safe. ", "album_id": "72157600068118513", "photo_flickr_id": "165689813", "setting": "first-2-pick-and-tell", "worker_id": "0ZG8DWF2JK1DSB9", "story_id": "40760", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so we brought an umbrella just to be safe .", "storylet_id": "203801"}], [{"original_text": "I went walking around to see what was going on", "album_id": "72157600068118513", "photo_flickr_id": "165689101", "setting": "first-2-pick-and-tell", "worker_id": "0ZG8DWF2JK1DSB9", "story_id": "40760", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i went walking around to see what was going on", "storylet_id": "203802"}], [{"original_text": "and I found some break dancers. The audience applauded them.", "album_id": "72157600068118513", "photo_flickr_id": "165687323", "setting": "first-2-pick-and-tell", "worker_id": "0ZG8DWF2JK1DSB9", "story_id": "40760", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and i found some break dancers . the audience applauded them .", "storylet_id": "203803"}], [{"original_text": "I ran into my friend Jen after lunch. Her hair was blue! Like us, she was having a good time.", "album_id": "72157600068118513", "photo_flickr_id": "165690289", "setting": "first-2-pick-and-tell", "worker_id": "0ZG8DWF2JK1DSB9", "story_id": "40760", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ran into my friend jen after lunch . her hair was blue ! like us , she was having a good time .", "storylet_id": "203804"}], [{"original_text": "Kate and Tim went on a date to the local community event.", "album_id": "72157600068118513", "photo_flickr_id": "165690572", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40761", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [male] went on a date to the local community event .", "storylet_id": "203805"}], [{"original_text": "Their friend Jennifer also decided to tag along as a third wheel.", "album_id": "72157600068118513", "photo_flickr_id": "165689991", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40761", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their friend [female] also decided to tag along as a third wheel .", "storylet_id": "203806"}], [{"original_text": "There was a fighting event and", "album_id": "72157600068118513", "photo_flickr_id": "165687593", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40761", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a fighting event and", "storylet_id": "203807"}], [{"original_text": "Tim tried out some ribbon dancing.", "album_id": "72157600068118513", "photo_flickr_id": "165688846", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40761", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] tried out some ribbon dancing .", "storylet_id": "203808"}], [{"original_text": "The lovey-dovey couple had to call it quits early when it began to rain.", "album_id": "72157600068118513", "photo_flickr_id": "165689813", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40761", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lovey-dovey couple had to call it quits early when it began to rain .", "storylet_id": "203809"}], [{"original_text": "We went to see fiends in New York on spring break.", "album_id": "72157600068118513", "photo_flickr_id": "165689273", "setting": "last-3-pick-old-and-tell", "worker_id": "BIHJUM968YSZGHY", "story_id": "40762", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to see fiends in location location on spring break .", "storylet_id": "203810"}], [{"original_text": "We had a blast at the beauiful parks and got lots of fresh air.", "album_id": "72157600068118513", "photo_flickr_id": "165689813", "setting": "last-3-pick-old-and-tell", "worker_id": "BIHJUM968YSZGHY", "story_id": "40762", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a blast at the beauiful parks and got lots of fresh air .", "storylet_id": "203811"}], [{"original_text": "My skin is so white I had to protect it form the hot sun.", "album_id": "72157600068118513", "photo_flickr_id": "165689101", "setting": "last-3-pick-old-and-tell", "worker_id": "BIHJUM968YSZGHY", "story_id": "40762", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my skin is so white i had to protect it form the hot sun .", "storylet_id": "203812"}], [{"original_text": "Later we took a fighting class so much fun.", "album_id": "72157600068118513", "photo_flickr_id": "165687323", "setting": "last-3-pick-old-and-tell", "worker_id": "BIHJUM968YSZGHY", "story_id": "40762", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later we took a fighting class so much fun .", "storylet_id": "203813"}], [{"original_text": "My the end of our vist I had my hair dyed blue.", "album_id": "72157600068118513", "photo_flickr_id": "165690289", "setting": "last-3-pick-old-and-tell", "worker_id": "BIHJUM968YSZGHY", "story_id": "40762", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my the end of our vist i had my hair dyed blue .", "storylet_id": "203814"}], [{"original_text": "The festival was really fun, our friends met us there.", "album_id": "72157600068118513", "photo_flickr_id": "165690572", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40763", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the festival was really fun , our friends met us there .", "storylet_id": "203815"}], [{"original_text": "She dyed her hair just for this, it looked great.", "album_id": "72157600068118513", "photo_flickr_id": "165689991", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40763", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she dyed her hair just for this , it looked great .", "storylet_id": "203816"}], [{"original_text": "There was a choreography contest going on, it was unique.", "album_id": "72157600068118513", "photo_flickr_id": "165687593", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40763", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a choreography contest going on , it was unique .", "storylet_id": "203817"}], [{"original_text": "The streamers were always fun, they made the day different.", "album_id": "72157600068118513", "photo_flickr_id": "165688846", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40763", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the streamers were always fun , they made the day different .", "storylet_id": "203818"}], [{"original_text": "The umbrella kept the heat and sun off of us, we probably should not of worn black.", "album_id": "72157600068118513", "photo_flickr_id": "165689813", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40763", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the umbrella kept the heat and sun off of us , we probably should not of worn black .", "storylet_id": "203819"}], [{"original_text": "You was beautiful do we decided to make the best of it.", "album_id": "72157600068118513", "photo_flickr_id": "165690572", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEGGXWL1QCC2L22", "story_id": "40764", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "you was beautiful do we decided to make the best of it .", "storylet_id": "203820"}], [{"original_text": "We went the same ones to have that idea.", "album_id": "72157600068118513", "photo_flickr_id": "165689991", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEGGXWL1QCC2L22", "story_id": "40764", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went the same ones to have that idea .", "storylet_id": "203821"}], [{"original_text": "We didn't know there was a celebration going on that included material arts demonstrations.", "album_id": "72157600068118513", "photo_flickr_id": "165687593", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEGGXWL1QCC2L22", "story_id": "40764", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we did n't know there was a celebration going on that included material arts demonstrations .", "storylet_id": "203822"}], [{"original_text": "This guy used the ribbons like done act out of Cirqu du Soleil.", "album_id": "72157600068118513", "photo_flickr_id": "165688846", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEGGXWL1QCC2L22", "story_id": "40764", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this guy used the ribbons like done act out of location du soleil .", "storylet_id": "203823"}], [{"original_text": "I'm glad r device to make the most of the nice weather.", "album_id": "72157600068118513", "photo_flickr_id": "165689813", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEGGXWL1QCC2L22", "story_id": "40764", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm glad r device to make the most of the nice weather .", "storylet_id": "203824"}], [{"original_text": "They went to a sushi restaurant to celebrate her promotion.", "album_id": "72157600156777650", "photo_flickr_id": "477188422", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40765", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they went to a sushi restaurant to celebrate her promotion .", "storylet_id": "203825"}], [{"original_text": "Everyone enjoyed the food and conversation.", "album_id": "72157600156777650", "photo_flickr_id": "477188628", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40765", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone enjoyed the food and conversation .", "storylet_id": "203826"}], [{"original_text": "It was a noisy gathering, with lots of happy chatter.", "album_id": "72157600156777650", "photo_flickr_id": "477188844", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40765", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a noisy gathering , with lots of happy chatter .", "storylet_id": "203827"}], [{"original_text": "She was very pleased with everyone showing up in her honor.", "album_id": "72157600156777650", "photo_flickr_id": "477206819", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40765", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was very pleased with everyone showing up in her honor .", "storylet_id": "203828"}], [{"original_text": "Her boyfriend was very proud of her.", "album_id": "72157600156777650", "photo_flickr_id": "477188700", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40765", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her boyfriend was very proud of her .", "storylet_id": "203829"}], [{"original_text": "Here are our two favorite girls at dinner.", "album_id": "72157600156777650", "photo_flickr_id": "477188562", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40766", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here are our two favorite girls at dinner .", "storylet_id": "203830"}], [{"original_text": "Here our two friends smile for the camera after dinner.", "album_id": "72157600156777650", "photo_flickr_id": "477206637", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40766", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here our two friends smile for the camera after dinner .", "storylet_id": "203831"}], [{"original_text": "We were happy to be together again.", "album_id": "72157600156777650", "photo_flickr_id": "477206819", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40766", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were happy to be together again .", "storylet_id": "203832"}], [{"original_text": "The meal was outstanding as it was artwork as well as delicious.", "album_id": "72157600156777650", "photo_flickr_id": "477188380", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40766", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the meal was outstanding as it was artwork as well as delicious .", "storylet_id": "203833"}], [{"original_text": "Here is the happy couple together.", "album_id": "72157600156777650", "photo_flickr_id": "477188700", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40766", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is the happy couple together .", "storylet_id": "203834"}], [{"original_text": "The food at the banquet I attended was amazing.", "album_id": "72157600156777650", "photo_flickr_id": "477188422", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40767", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the food at the banquet i attended was amazing .", "storylet_id": "203835"}], [{"original_text": "Everyone that attended had a wonderful time eating this delicious food.", "album_id": "72157600156777650", "photo_flickr_id": "477188628", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40767", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone that attended had a wonderful time eating this delicious food .", "storylet_id": "203836"}], [{"original_text": "We all talked up and down the long tables while eating.", "album_id": "72157600156777650", "photo_flickr_id": "477188844", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40767", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all talked up and down the long tables while eating .", "storylet_id": "203837"}], [{"original_text": "I even got to see some old friends at the banquet.", "album_id": "72157600156777650", "photo_flickr_id": "477206819", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40767", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i even got to see some old friends at the banquet .", "storylet_id": "203838"}], [{"original_text": "At the end of the banquet, I ran into a pal of mine and we talked for hours.", "album_id": "72157600156777650", "photo_flickr_id": "477188700", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40767", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the banquet , i ran into a pal of mine and we talked for hours .", "storylet_id": "203839"}], [{"original_text": "Our meal began with this delicious sushi rolls.", "album_id": "72157600156777650", "photo_flickr_id": "477188422", "setting": "last-3-pick-old-and-tell", "worker_id": "1HY4C14HV8MC9L5", "story_id": "40768", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our meal began with this delicious sushi rolls .", "storylet_id": "203840"}], [{"original_text": "We all ate our food and discussed what is new with our lives.", "album_id": "72157600156777650", "photo_flickr_id": "477188628", "setting": "last-3-pick-old-and-tell", "worker_id": "1HY4C14HV8MC9L5", "story_id": "40768", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all ate our food and discussed what is new with our lives .", "storylet_id": "203841"}], [{"original_text": "Here everyone can be seen relaxing and talking about their day.", "album_id": "72157600156777650", "photo_flickr_id": "477188844", "setting": "last-3-pick-old-and-tell", "worker_id": "1HY4C14HV8MC9L5", "story_id": "40768", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here everyone can be seen relaxing and talking about their day .", "storylet_id": "203842"}], [{"original_text": "The three of us friends together again.", "album_id": "72157600156777650", "photo_flickr_id": "477206819", "setting": "last-3-pick-old-and-tell", "worker_id": "1HY4C14HV8MC9L5", "story_id": "40768", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the three of us friends together again .", "storylet_id": "203843"}], [{"original_text": "A picture of us after we had some delicious sushi!", "album_id": "72157600156777650", "photo_flickr_id": "477188700", "setting": "last-3-pick-old-and-tell", "worker_id": "1HY4C14HV8MC9L5", "story_id": "40768", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a picture of us after we had some delicious sushi !", "storylet_id": "203844"}], [{"original_text": "Everyone got together for sushi. Look how amazing the food came out!", "album_id": "72157600156777650", "photo_flickr_id": "477188422", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40769", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone got together for sushi . look how amazing the food came out !", "storylet_id": "203845"}], [{"original_text": "Everyone was clamoring for food and enjoying themselves immensely.", "album_id": "72157600156777650", "photo_flickr_id": "477188628", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40769", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was clamoring for food and enjoying themselves immensely .", "storylet_id": "203846"}], [{"original_text": "See how huge the table was to fit everyone! We got our plates cleaned up and started talking.", "album_id": "72157600156777650", "photo_flickr_id": "477188844", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40769", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "see how huge the table was to fit everyone ! we got our plates cleaned up and started talking .", "storylet_id": "203847"}], [{"original_text": "Then we started going around to talk to people on the other side of the table.", "album_id": "72157600156777650", "photo_flickr_id": "477206819", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40769", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we started going around to talk to people on the other side of the table .", "storylet_id": "203848"}], [{"original_text": "It was great catching up with people we hadn't seen in a long time.", "album_id": "72157600156777650", "photo_flickr_id": "477188700", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40769", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was great catching up with people we had n't seen in a long time .", "storylet_id": "203849"}], [{"original_text": "Here is the relaxing tropical sunset we enjoyed so much!", "album_id": "72157600162822909", "photo_flickr_id": "479151794", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40770", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is the relaxing tropical sunset we enjoyed so much !", "storylet_id": "203850"}], [{"original_text": "The waves crashed ashore here!", "album_id": "72157600162822909", "photo_flickr_id": "479151802", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40770", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the waves crashed ashore here !", "storylet_id": "203851"}], [{"original_text": "The strong bird was exploring the land in front of our eyes!", "album_id": "72157600162822909", "photo_flickr_id": "479151804", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40770", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the strong bird was exploring the land in front of our eyes !", "storylet_id": "203852"}], [{"original_text": "Here the woman dances by the shore.", "album_id": "72157600162822909", "photo_flickr_id": "479209865", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40770", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here the woman dances by the shore .", "storylet_id": "203853"}], [{"original_text": "The fire show was extraordinary and a pleasure to see.", "album_id": "72157600162822909", "photo_flickr_id": "479334347", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40770", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fire show was extraordinary and a pleasure to see .", "storylet_id": "203854"}], [{"original_text": "Our vacation in paradise started with beautiful weather.", "album_id": "72157600162822909", "photo_flickr_id": "479151792", "setting": "first-2-pick-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40771", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our vacation in paradise started with beautiful weather .", "storylet_id": "203855"}], [{"original_text": "I strutted my new beachwear while we strolled the beach.", "album_id": "72157600162822909", "photo_flickr_id": "479209865", "setting": "first-2-pick-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40771", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i strutted my new beachwear while we strolled the beach .", "storylet_id": "203856"}], [{"original_text": "We made our way to the concert at the big tiki. It was good music.", "album_id": "72157600162822909", "photo_flickr_id": "479274696", "setting": "first-2-pick-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40771", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we made our way to the concert at the big tiki . it was good music .", "storylet_id": "203857"}], [{"original_text": "Then at night time they set up the stage for the fire dancers.", "album_id": "72157600162822909", "photo_flickr_id": "479334347", "setting": "first-2-pick-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40771", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then at night time they set up the stage for the fire dancers .", "storylet_id": "203858"}], [{"original_text": "After that we spent the whole rest of the vacation evenings lying on the beach watching the sun set.", "album_id": "72157600162822909", "photo_flickr_id": "479151794", "setting": "first-2-pick-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40771", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that we spent the whole rest of the vacation evenings lying on the beach watching the sun set .", "storylet_id": "203859"}], [{"original_text": "Our vacation featured great views of the beach.", "album_id": "72157600162822909", "photo_flickr_id": "479151792", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "40772", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our vacation featured great views of the beach .", "storylet_id": "203860"}], [{"original_text": "She kicked off her shoes for a stroll through the grass.", "album_id": "72157600162822909", "photo_flickr_id": "479209865", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "40772", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she kicked off her shoes for a stroll through the grass .", "storylet_id": "203861"}], [{"original_text": "We were entertained by the local band.", "album_id": "72157600162822909", "photo_flickr_id": "479274696", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "40772", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were entertained by the local band .", "storylet_id": "203862"}], [{"original_text": "The fire handlers were very exciting to watch.", "album_id": "72157600162822909", "photo_flickr_id": "479334347", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "40772", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fire handlers were very exciting to watch .", "storylet_id": "203863"}], [{"original_text": "The day has set on our vacation, but the memories last forever.", "album_id": "72157600162822909", "photo_flickr_id": "479151794", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "40772", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day has set on our vacation , but the memories last forever .", "storylet_id": "203864"}], [{"original_text": "We took our honeymoon vacation in Hawaii.", "album_id": "72157600162822909", "photo_flickr_id": "479151792", "setting": "last-3-pick-old-and-tell", "worker_id": "UJPBMZBST8MT2FA", "story_id": "40773", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took our honeymoon vacation in location .", "storylet_id": "203865"}], [{"original_text": "We stayed at a beautiful hotel that had authentic hulu dancing.", "album_id": "72157600162822909", "photo_flickr_id": "479209865", "setting": "last-3-pick-old-and-tell", "worker_id": "UJPBMZBST8MT2FA", "story_id": "40773", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stayed at a beautiful hotel that had authentic hulu dancing .", "storylet_id": "203866"}], [{"original_text": "There was live music throughout the day was well.", "album_id": "72157600162822909", "photo_flickr_id": "479274696", "setting": "last-3-pick-old-and-tell", "worker_id": "UJPBMZBST8MT2FA", "story_id": "40773", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was live music throughout the day was well .", "storylet_id": "203867"}], [{"original_text": "At night fire dancers provided live entertainment.", "album_id": "72157600162822909", "photo_flickr_id": "479334347", "setting": "last-3-pick-old-and-tell", "worker_id": "UJPBMZBST8MT2FA", "story_id": "40773", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at night fire dancers provided live entertainment .", "storylet_id": "203868"}], [{"original_text": "Every morning, we woke up to a beautiful sunrise and a wonderful day of adventures ahead.", "album_id": "72157600162822909", "photo_flickr_id": "479151794", "setting": "last-3-pick-old-and-tell", "worker_id": "UJPBMZBST8MT2FA", "story_id": "40773", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "every morning , we woke up to a beautiful sunrise and a wonderful day of adventures ahead .", "storylet_id": "203869"}], [{"original_text": "Hawaii is a beautiful island to visit.", "album_id": "72157600162822909", "photo_flickr_id": "479151794", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40774", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location is a beautiful island to visit .", "storylet_id": "203870"}], [{"original_text": "you can see the ocean crash into the land.", "album_id": "72157600162822909", "photo_flickr_id": "479151802", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40774", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you can see the ocean crash into the land .", "storylet_id": "203871"}], [{"original_text": "You might even see a chicken.", "album_id": "72157600162822909", "photo_flickr_id": "479151804", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40774", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you might even see a chicken .", "storylet_id": "203872"}], [{"original_text": "The culture is also very important.", "album_id": "72157600162822909", "photo_flickr_id": "479209865", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40774", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the culture is also very important .", "storylet_id": "203873"}], [{"original_text": "To celebrate visit a luau and enjoy the local foods.", "album_id": "72157600162822909", "photo_flickr_id": "479334347", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40774", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to celebrate visit a luau and enjoy the local foods .", "storylet_id": "203874"}], [{"original_text": "Here the family walks to the playground for outdoor fun.", "album_id": "72157600268882910", "photo_flickr_id": "514807379", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40775", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here the family walks to the playground for outdoor fun .", "storylet_id": "203875"}], [{"original_text": "The building we stayed at was taller than we expected!", "album_id": "72157600268882910", "photo_flickr_id": "514807741", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40775", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the building we stayed at was taller than we expected !", "storylet_id": "203876"}], [{"original_text": "The happy relatives stroll through town with each other exploring.", "album_id": "72157600268882910", "photo_flickr_id": "514808017", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40775", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the happy relatives stroll through town with each other exploring .", "storylet_id": "203877"}], [{"original_text": "The playground was newly constructed and looked great.", "album_id": "72157600268882910", "photo_flickr_id": "514808191", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40775", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the playground was newly constructed and looked great .", "storylet_id": "203878"}], [{"original_text": "Our little girl after coming down the slide.", "album_id": "72157600268882910", "photo_flickr_id": "514808431", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40775", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our little girl after coming down the slide .", "storylet_id": "203879"}], [{"original_text": "My family and I took a trip into the city for New Years.", "album_id": "72157600268882910", "photo_flickr_id": "514807241", "setting": "first-2-pick-and-tell", "worker_id": "2XT3EL7YU0YVNPI", "story_id": "40776", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family and i took a trip into the city for new years .", "storylet_id": "203880"}], [{"original_text": "They city has a lot of beautiful buildings.", "album_id": "72157600268882910", "photo_flickr_id": "514807625", "setting": "first-2-pick-and-tell", "worker_id": "2XT3EL7YU0YVNPI", "story_id": "40776", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they city has a lot of beautiful buildings .", "storylet_id": "203881"}], [{"original_text": "One of the coolest was the hotel we were staying at.", "album_id": "72157600268882910", "photo_flickr_id": "514807741", "setting": "first-2-pick-and-tell", "worker_id": "2XT3EL7YU0YVNPI", "story_id": "40776", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the coolest was the hotel we were staying at .", "storylet_id": "203882"}], [{"original_text": "Before heading back to the hotel we found a park and the kids played for a little while.", "album_id": "72157600268882910", "photo_flickr_id": "514808537", "setting": "first-2-pick-and-tell", "worker_id": "2XT3EL7YU0YVNPI", "story_id": "40776", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "before heading back to the hotel we found a park and the kids played for a little while .", "storylet_id": "203883"}], [{"original_text": "I bought my wife flowers to commemorate the new year.", "album_id": "72157600268882910", "photo_flickr_id": "514809043", "setting": "first-2-pick-and-tell", "worker_id": "2XT3EL7YU0YVNPI", "story_id": "40776", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i bought my wife flowers to commemorate the new year .", "storylet_id": "203884"}], [{"original_text": "the family took a picture in the plaza parking lot", "album_id": "72157600268882910", "photo_flickr_id": "514807241", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40777", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family took a picture in the plaza parking lot", "storylet_id": "203885"}], [{"original_text": "it was getting darker outside", "album_id": "72157600268882910", "photo_flickr_id": "514807625", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40777", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was getting darker outside", "storylet_id": "203886"}], [{"original_text": "they visited many big buildings downtown ", "album_id": "72157600268882910", "photo_flickr_id": "514807741", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40777", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they visited many big buildings downtown", "storylet_id": "203887"}], [{"original_text": "the kids played when the sun went down", "album_id": "72157600268882910", "photo_flickr_id": "514808537", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40777", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids played when the sun went down", "storylet_id": "203888"}], [{"original_text": "a beautiful flower was left in a vase ", "album_id": "72157600268882910", "photo_flickr_id": "514809043", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40777", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a beautiful flower was left in a vase", "storylet_id": "203889"}], [{"original_text": "Taking a walk with her grandfather and her grandmother. ", "album_id": "72157600268882910", "photo_flickr_id": "514807379", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40778", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "taking a walk with her grandfather and her grandmother .", "storylet_id": "203890"}], [{"original_text": "On their way to the park they saw a beautiful building. ", "album_id": "72157600268882910", "photo_flickr_id": "514807741", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40778", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on their way to the park they saw a beautiful building .", "storylet_id": "203891"}], [{"original_text": "Family picture with mom, dad, and son. ", "album_id": "72157600268882910", "photo_flickr_id": "514808017", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40778", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "family picture with mom , dad , and son .", "storylet_id": "203892"}], [{"original_text": "Finally made it to the playground. ", "album_id": "72157600268882910", "photo_flickr_id": "514808191", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40778", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally made it to the playground .", "storylet_id": "203893"}], [{"original_text": "And she is finally happy and played a lot on the slides. ", "album_id": "72157600268882910", "photo_flickr_id": "514808431", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40778", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and she is finally happy and played a lot on the slides .", "storylet_id": "203894"}], [{"original_text": "The family has not seen each other in some time.", "album_id": "72157600268882910", "photo_flickr_id": "514807379", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40779", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family has not seen each other in some time .", "storylet_id": "203895"}], [{"original_text": "They are visiting a relative in the hospital.", "album_id": "72157600268882910", "photo_flickr_id": "514807741", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40779", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are visiting a relative in the hospital .", "storylet_id": "203896"}], [{"original_text": "They pose for pictures because they do not know when they will see each other. ", "album_id": "72157600268882910", "photo_flickr_id": "514808017", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40779", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they pose for pictures because they do not know when they will see each other .", "storylet_id": "203897"}], [{"original_text": "They also find a playground to entertain the young girl.", "album_id": "72157600268882910", "photo_flickr_id": "514808191", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40779", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also find a playground to entertain the young girl .", "storylet_id": "203898"}], [{"original_text": "She especially loves the slide.", "album_id": "72157600268882910", "photo_flickr_id": "514808431", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40779", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she especially loves the slide .", "storylet_id": "203899"}], [{"original_text": "The goal was to reach the top of this mountain with group by mid-day.", "album_id": "72157600393566786", "photo_flickr_id": "566308803", "setting": "first-2-pick-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "40780", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the goal was to reach the top of this mountain with group by mid-day .", "storylet_id": "203900"}], [{"original_text": "There were about 20 of us following our guide and it was a tough uphill climb", "album_id": "72157600393566786", "photo_flickr_id": "566308811", "setting": "first-2-pick-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "40780", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were about 20 of us following our guide and it was a tough uphill climb", "storylet_id": "203901"}], [{"original_text": "At the top, we had a breathtaking view, it's like we could touch the clouds.", "album_id": "72157600393566786", "photo_flickr_id": "565949524", "setting": "first-2-pick-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "40780", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the top , we had a breathtaking view , it 's like we could touch the clouds .", "storylet_id": "203902"}], [{"original_text": "We all stopped and had lunch under a large cross near the top.", "album_id": "72157600393566786", "photo_flickr_id": "565949528", "setting": "first-2-pick-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "40780", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all stopped and had lunch under a large cross near the top .", "storylet_id": "203903"}], [{"original_text": "We had a great time wandering around a nearby river and just admiring the scenery.", "album_id": "72157600393566786", "photo_flickr_id": "565970790", "setting": "first-2-pick-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "40780", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time wandering around a nearby river and just admiring the scenery .", "storylet_id": "203904"}], [{"original_text": "The beginning of our hike up the mountain.", "album_id": "72157600393566786", "photo_flickr_id": "565970800", "setting": "first-2-pick-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40781", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beginning of our hike up the mountain .", "storylet_id": "203905"}], [{"original_text": "Half way there enjoying the water in the bowl", "album_id": "72157600393566786", "photo_flickr_id": "565970794", "setting": "first-2-pick-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40781", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "half way there enjoying the water in the bowl", "storylet_id": "203906"}], [{"original_text": "continuing the hike in a line up the mountain", "album_id": "72157600393566786", "photo_flickr_id": "566308811", "setting": "first-2-pick-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40781", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "continuing the hike in a line up the mountain", "storylet_id": "203907"}], [{"original_text": "we made it the top of the mountain", "album_id": "72157600393566786", "photo_flickr_id": "565949524", "setting": "first-2-pick-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40781", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we made it the top of the mountain", "storylet_id": "203908"}], [{"original_text": "oddly there was a cross up at the top.", "album_id": "72157600393566786", "photo_flickr_id": "565949528", "setting": "first-2-pick-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40781", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "oddly there was a cross up at the top .", "storylet_id": "203909"}], [{"original_text": "The mountain we had to conquer stood directly in front of us. ", "album_id": "72157600393566786", "photo_flickr_id": "566308803", "setting": "last-3-pick-old-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "40782", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the mountain we had to conquer stood directly in front of us .", "storylet_id": "203910"}], [{"original_text": "Our group started our trek up the mountain. ", "album_id": "72157600393566786", "photo_flickr_id": "566308811", "setting": "last-3-pick-old-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "40782", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our group started our trek up the mountain .", "storylet_id": "203911"}], [{"original_text": "The higher we got, the better the views were.", "album_id": "72157600393566786", "photo_flickr_id": "565949524", "setting": "last-3-pick-old-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "40782", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the higher we got , the better the views were .", "storylet_id": "203912"}], [{"original_text": "We finally reached one of our checkpoints, a large cross atop the mountain. ", "album_id": "72157600393566786", "photo_flickr_id": "565949528", "setting": "last-3-pick-old-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "40782", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we finally reached one of our checkpoints , a large cross atop the mountain .", "storylet_id": "203913"}], [{"original_text": "After a long hike some of us wanted to cool down in the creek. ", "album_id": "72157600393566786", "photo_flickr_id": "565970790", "setting": "last-3-pick-old-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "40782", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long hike some of us wanted to cool down in the creek .", "storylet_id": "203914"}], [{"original_text": "Looking at the mountain it looked like nothing special.", "album_id": "72157600393566786", "photo_flickr_id": "566308803", "setting": "last-3-pick-old-and-tell", "worker_id": "KHPOPD4DW8492P0", "story_id": "40783", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "looking at the mountain it looked like nothing special .", "storylet_id": "203915"}], [{"original_text": "But, as our group climbed the anticipation grew stronger.", "album_id": "72157600393566786", "photo_flickr_id": "566308811", "setting": "last-3-pick-old-and-tell", "worker_id": "KHPOPD4DW8492P0", "story_id": "40783", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but , as our group climbed the anticipation grew stronger .", "storylet_id": "203916"}], [{"original_text": "At the top, the terrain became much rockier and less grassy.", "album_id": "72157600393566786", "photo_flickr_id": "565949524", "setting": "last-3-pick-old-and-tell", "worker_id": "KHPOPD4DW8492P0", "story_id": "40783", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the top , the terrain became much rockier and less grassy .", "storylet_id": "203917"}], [{"original_text": "Then, we saw the cross. Many people were touched by the experience.", "album_id": "72157600393566786", "photo_flickr_id": "565949528", "setting": "last-3-pick-old-and-tell", "worker_id": "KHPOPD4DW8492P0", "story_id": "40783", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , we saw the cross . many people were touched by the experience .", "storylet_id": "203918"}], [{"original_text": "After traveling down the mountain some people were baptized in the river.", "album_id": "72157600393566786", "photo_flickr_id": "565970790", "setting": "last-3-pick-old-and-tell", "worker_id": "KHPOPD4DW8492P0", "story_id": "40783", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after traveling down the mountain some people were baptized in the river .", "storylet_id": "203919"}], [{"original_text": "We were all excited to go hiking!", "album_id": "72157600393566786", "photo_flickr_id": "565970800", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "40784", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were all excited to go hiking !", "storylet_id": "203920"}], [{"original_text": "We stopped by a stream to take a break.", "album_id": "72157600393566786", "photo_flickr_id": "565970794", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "40784", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped by a stream to take a break .", "storylet_id": "203921"}], [{"original_text": "We met up with a bunch of other people!", "album_id": "72157600393566786", "photo_flickr_id": "566308811", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "40784", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we met up with a bunch of other people !", "storylet_id": "203922"}], [{"original_text": "Here is one of the highest points we reached.", "album_id": "72157600393566786", "photo_flickr_id": "565949524", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "40784", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is one of the highest points we reached .", "storylet_id": "203923"}], [{"original_text": "There was a cross here at the other peak.", "album_id": "72157600393566786", "photo_flickr_id": "565949528", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "40784", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a cross here at the other peak .", "storylet_id": "203924"}], [{"original_text": "Everyone began to arrive at the party and the gossiping ensued.", "album_id": "72157600405640069", "photo_flickr_id": "1394569329", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "40790", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone began to arrive at the party and the gossiping ensued .", "storylet_id": "203950"}], [{"original_text": "Michael had just finished his last college exam and was eager to party.", "album_id": "72157600405640069", "photo_flickr_id": "1395463252", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "40790", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] had just finished his last college exam and was eager to party .", "storylet_id": "203951"}], [{"original_text": "Everyone gathered around, sharing drinks and laughter.", "album_id": "72157600405640069", "photo_flickr_id": "1395469782", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "40790", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone gathered around , sharing drinks and laughter .", "storylet_id": "203952"}], [{"original_text": "The guys plotted as to how they were going to pick up girl's later on in the night.", "album_id": "72157600405640069", "photo_flickr_id": "1394585675", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "40790", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guys plotted as to how they were going to pick up girl 's later on in the night .", "storylet_id": "203953"}], [{"original_text": "Jason managed to score a face rub from one of the girl's he had his eyes set on.", "album_id": "72157600405640069", "photo_flickr_id": "573135413", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "40790", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] managed to score a face rub from one of the girl 's he had his eyes set on .", "storylet_id": "203954"}], [{"original_text": "It is a party with people from a company.", "album_id": "72157600405640069", "photo_flickr_id": "1394569329", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40791", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is a party with people from a company .", "storylet_id": "203955"}], [{"original_text": "Martha is really getting into the party with a glass of wine.", "album_id": "72157600405640069", "photo_flickr_id": "1394573341", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40791", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] is really getting into the party with a glass of wine .", "storylet_id": "203956"}], [{"original_text": "The co workers sit down to eat.", "album_id": "72157600405640069", "photo_flickr_id": "1395468558", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40791", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the co workers sit down to eat .", "storylet_id": "203957"}], [{"original_text": "Mark is in the kitchen whipping up delicious food.", "album_id": "72157600405640069", "photo_flickr_id": "1395471464", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40791", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is in the kitchen whipping up delicious food .", "storylet_id": "203958"}], [{"original_text": "Fun at the after party.", "album_id": "72157600405640069", "photo_flickr_id": "573135413", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40791", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fun at the after party .", "storylet_id": "203959"}], [{"original_text": "There was once a business party.", "album_id": "72157600405640069", "photo_flickr_id": "1394569329", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40792", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was once a business party .", "storylet_id": "203960"}], [{"original_text": "There were a lot of people there.", "album_id": "72157600405640069", "photo_flickr_id": "1395463252", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40792", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people there .", "storylet_id": "203961"}], [{"original_text": "There were refreshments and every one was flocking to them.", "album_id": "72157600405640069", "photo_flickr_id": "1395469782", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40792", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were refreshments and every one was flocking to them .", "storylet_id": "203962"}], [{"original_text": "There was plenty of small talk between groups.", "album_id": "72157600405640069", "photo_flickr_id": "1394585675", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40792", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was plenty of small talk between groups .", "storylet_id": "203963"}], [{"original_text": "And maybe even a budding romance?", "album_id": "72157600405640069", "photo_flickr_id": "573135413", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40792", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and maybe even a budding romance ?", "storylet_id": "203964"}], [{"original_text": "We had all finally gathered together to make the plan come true.", "album_id": "72157600405640069", "photo_flickr_id": "1394569329", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "40793", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had all finally gathered together to make the plan come true .", "storylet_id": "203965"}], [{"original_text": "All of our history we talked about. we knew what needed to be done, but instead of somberness we found joy in the tasks.", "album_id": "72157600405640069", "photo_flickr_id": "1394573341", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "40793", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of our history we talked about . we knew what needed to be done , but instead of somberness we found joy in the tasks .", "storylet_id": "203966"}], [{"original_text": "we sat together for the last time for the last meal we would have with each other.", "album_id": "72157600405640069", "photo_flickr_id": "1395468558", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "40793", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we sat together for the last time for the last meal we would have with each other .", "storylet_id": "203967"}], [{"original_text": "Henry was helping with the cooking tonight. His job was to make sure the special ingredient was added.", "album_id": "72157600405640069", "photo_flickr_id": "1395471464", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "40793", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was helping with the cooking tonight . his job was to make sure the special ingredient was added .", "storylet_id": "203968"}], [{"original_text": "after eating we all knew the end was coming. Sarah touched my face, and we kissed the kiss of the damned.", "album_id": "72157600405640069", "photo_flickr_id": "573135413", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "40793", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after eating we all knew the end was coming . [female] touched my face , and we kissed the kiss of the damned .", "storylet_id": "203969"}], [{"original_text": "I was hosting a sweet party earlier today. Everyone knew how awesome it was going to be", "album_id": "72157600405640069", "photo_flickr_id": "1394569329", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40794", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was hosting a sweet party earlier today . everyone knew how awesome it was going to be", "storylet_id": "203970"}], [{"original_text": "I may have been a dork in high school. But now was my chance to show Melissa I am boyfriend material.", "album_id": "72157600405640069", "photo_flickr_id": "1395463252", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40794", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i may have been a dork in high school . but now was my chance to show [female] i am boyfriend material .", "storylet_id": "203971"}], [{"original_text": "I always thought that was as a kid, it never dawned on me that I was normal though", "album_id": "72157600405640069", "photo_flickr_id": "1395469782", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40794", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i always thought that was as a kid , it never dawned on me that i was normal though", "storylet_id": "203972"}], [{"original_text": "The teachers even decided that I was too cool for school", "album_id": "72157600405640069", "photo_flickr_id": "1394585675", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40794", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the teachers even decided that i was too cool for school", "storylet_id": "203973"}], [{"original_text": "Now Melissa wants me in more ways than one. Party is over guys, off to the bedroom.", "album_id": "72157600405640069", "photo_flickr_id": "573135413", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40794", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now [female] wants me in more ways than one . party is over guys , off to the bedroom .", "storylet_id": "203974"}], [{"original_text": "Please meet Rosie. She is a happy little girl.", "album_id": "72157601037036892", "photo_flickr_id": "891139244", "setting": "first-2-pick-and-tell", "worker_id": "2YNWNYKZX8Q3JVL", "story_id": "40795", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "please meet [female] . she is a happy little girl .", "storylet_id": "203975"}], [{"original_text": "Daddy took Rosie swimming.", "album_id": "72157601037036892", "photo_flickr_id": "891079482", "setting": "first-2-pick-and-tell", "worker_id": "2YNWNYKZX8Q3JVL", "story_id": "40795", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "daddy took [female] swimming .", "storylet_id": "203976"}], [{"original_text": "She loves swimming so she kicked back and relaxed.", "album_id": "72157601037036892", "photo_flickr_id": "891079464", "setting": "first-2-pick-and-tell", "worker_id": "2YNWNYKZX8Q3JVL", "story_id": "40795", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she loves swimming so she kicked back and relaxed .", "storylet_id": "203977"}], [{"original_text": "Once home, mommy read her a book. ", "album_id": "72157601037036892", "photo_flickr_id": "891169396", "setting": "first-2-pick-and-tell", "worker_id": "2YNWNYKZX8Q3JVL", "story_id": "40795", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once home , mommy read her a book .", "storylet_id": "203978"}], [{"original_text": "All the activity of the day made her ready for nap time.", "album_id": "72157601037036892", "photo_flickr_id": "891169406", "setting": "first-2-pick-and-tell", "worker_id": "2YNWNYKZX8Q3JVL", "story_id": "40795", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the activity of the day made her ready for nap time .", "storylet_id": "203979"}], [{"original_text": "The baby got her suit on and was ready to swim.", "album_id": "72157601037036892", "photo_flickr_id": "891079176", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "40796", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the baby got her suit on and was ready to swim .", "storylet_id": "203980"}], [{"original_text": "Her dad brought her into the water.", "album_id": "72157601037036892", "photo_flickr_id": "891079482", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "40796", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her dad brought her into the water .", "storylet_id": "203981"}], [{"original_text": "After her swim she played in the play area.", "album_id": "72157601037036892", "photo_flickr_id": "891139244", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "40796", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after her swim she played in the play area .", "storylet_id": "203982"}], [{"original_text": "She had a good time with the puzzles.", "album_id": "72157601037036892", "photo_flickr_id": "891139316", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "40796", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she had a good time with the puzzles .", "storylet_id": "203983"}], [{"original_text": "By the end of the eventful day she was very tied.", "album_id": "72157601037036892", "photo_flickr_id": "891169406", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "40796", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of the eventful day she was very tied .", "storylet_id": "203984"}], [{"original_text": "We got our baby was getting ready for her first day swimming in the pool.", "album_id": "72157601037036892", "photo_flickr_id": "891139244", "setting": "last-3-pick-old-and-tell", "worker_id": "0R6YX16N8DTGGB9", "story_id": "40797", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got our baby was getting ready for her first day swimming in the pool .", "storylet_id": "203985"}], [{"original_text": "I held my baby in the water and she really loved it.", "album_id": "72157601037036892", "photo_flickr_id": "891079482", "setting": "last-3-pick-old-and-tell", "worker_id": "0R6YX16N8DTGGB9", "story_id": "40797", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i held my baby in the water and she really loved it .", "storylet_id": "203986"}], [{"original_text": "She floated in an inner tube in her cute pink bathing suit.", "album_id": "72157601037036892", "photo_flickr_id": "891079464", "setting": "last-3-pick-old-and-tell", "worker_id": "0R6YX16N8DTGGB9", "story_id": "40797", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she floated in an inner tube in her cute pink bathing suit .", "storylet_id": "203987"}], [{"original_text": "After our swim, my wife held our baby and we relaxed.", "album_id": "72157601037036892", "photo_flickr_id": "891169396", "setting": "last-3-pick-old-and-tell", "worker_id": "0R6YX16N8DTGGB9", "story_id": "40797", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after our swim , my wife held our baby and we relaxed .", "storylet_id": "203988"}], [{"original_text": "Our baby had a great first day swimming!", "album_id": "72157601037036892", "photo_flickr_id": "891169406", "setting": "last-3-pick-old-and-tell", "worker_id": "0R6YX16N8DTGGB9", "story_id": "40797", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our baby had a great first day swimming !", "storylet_id": "203989"}], [{"original_text": "Here's the little one posing in a little jungle.", "album_id": "72157601037036892", "photo_flickr_id": "891139244", "setting": "last-3-pick-old-and-tell", "worker_id": "JRP2L6B521OWXOI", "story_id": "40798", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here 's the little one posing in a little jungle .", "storylet_id": "203990"}], [{"original_text": "Baby girl is taking a dip in the pool with her loving daddy.", "album_id": "72157601037036892", "photo_flickr_id": "891079482", "setting": "last-3-pick-old-and-tell", "worker_id": "JRP2L6B521OWXOI", "story_id": "40798", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] girl is taking a dip in the pool with her loving daddy .", "storylet_id": "203991"}], [{"original_text": "She likes to lounge in the pool after a hard day.", "album_id": "72157601037036892", "photo_flickr_id": "891079464", "setting": "last-3-pick-old-and-tell", "worker_id": "JRP2L6B521OWXOI", "story_id": "40798", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she likes to lounge in the pool after a hard day .", "storylet_id": "203992"}], [{"original_text": "Sweet mommy and the little on are having quality time together. ", "album_id": "72157601037036892", "photo_flickr_id": "891169396", "setting": "last-3-pick-old-and-tell", "worker_id": "JRP2L6B521OWXOI", "story_id": "40798", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sweet mommy and the little on are having quality time together .", "storylet_id": "203993"}], [{"original_text": "She is such a little ham when the camera is around. ", "album_id": "72157601037036892", "photo_flickr_id": "891169406", "setting": "last-3-pick-old-and-tell", "worker_id": "JRP2L6B521OWXOI", "story_id": "40798", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she is such a little ham when the camera is around .", "storylet_id": "203994"}], [{"original_text": "First, we went to the park.", "album_id": "72157601037036892", "photo_flickr_id": "891139244", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "40799", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "first , we went to the park .", "storylet_id": "203995"}], [{"original_text": "Then we went swimming.", "album_id": "72157601037036892", "photo_flickr_id": "891079482", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "40799", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we went swimming .", "storylet_id": "203996"}], [{"original_text": "I looked cool in my glasses at the pool", "album_id": "72157601037036892", "photo_flickr_id": "891079464", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "40799", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i looked cool in my glasses at the pool", "storylet_id": "203997"}], [{"original_text": "Later, we went to visit mommy.", "album_id": "72157601037036892", "photo_flickr_id": "891169396", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "40799", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later , we went to visit mommy .", "storylet_id": "203998"}], [{"original_text": "We played dress up.", "album_id": "72157601037036892", "photo_flickr_id": "891169406", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "40799", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we played dress up .", "storylet_id": "203999"}], [{"original_text": "I got a chance to bring my daughter over to my friend's house the other day.", "album_id": "72157601239865861", "photo_flickr_id": "1020441176", "setting": "first-2-pick-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "40800", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got a chance to bring my daughter over to my friend 's house the other day .", "storylet_id": "204000"}], [{"original_text": "We made sure to bring over a bunch of her toys so that she keeps busy and doesn't get too bored.", "album_id": "72157601239865861", "photo_flickr_id": "1020443646", "setting": "first-2-pick-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "40800", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made sure to bring over a bunch of her toys so that she keeps busy and does n't get too bored .", "storylet_id": "204001"}], [{"original_text": "Overall, our time was focused having fun with our child.", "album_id": "72157601239865861", "photo_flickr_id": "1020444296", "setting": "first-2-pick-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "40800", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "overall , our time was focused having fun with our child .", "storylet_id": "204002"}], [{"original_text": "Our friend usually likes to go through books with her.", "album_id": "72157601239865861", "photo_flickr_id": "1020448260", "setting": "first-2-pick-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "40800", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our friend usually likes to go through books with her .", "storylet_id": "204003"}], [{"original_text": "But in the end, her favorite toy is her stuffed kitten. ", "album_id": "72157601239865861", "photo_flickr_id": "1019588833", "setting": "first-2-pick-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "40800", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but in the end , her favorite toy is her stuffed kitten .", "storylet_id": "204004"}], [{"original_text": "Mom and Dad made supper before Gram arrived. Gram lives in Europe so we don't see her often.", "album_id": "72157601239865861", "photo_flickr_id": "1019580857", "setting": "first-2-pick-and-tell", "worker_id": "1AWZ7KVMSIM2FQA", "story_id": "40801", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom and dad made supper before gram arrived . gram lives in location so we do n't see her often .", "storylet_id": "204005"}], [{"original_text": "After supper Gram had presents for me. It was just like my birthday. ", "album_id": "72157601239865861", "photo_flickr_id": "1020443646", "setting": "first-2-pick-and-tell", "worker_id": "1AWZ7KVMSIM2FQA", "story_id": "40801", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after supper gram had presents for me . it was just like my birthday .", "storylet_id": "204006"}], [{"original_text": "I opened all the presents, examining each carefully. I made a mess with the wrapping paper.", "album_id": "72157601239865861", "photo_flickr_id": "1020445120", "setting": "first-2-pick-and-tell", "worker_id": "1AWZ7KVMSIM2FQA", "story_id": "40801", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i opened all the presents , examining each carefully . i made a mess with the wrapping paper .", "storylet_id": "204007"}], [{"original_text": "The last package contained a stuffed animal. I really like stuffed animals. Gram was happy to see that I liked all my presents.", "album_id": "72157601239865861", "photo_flickr_id": "1019588145", "setting": "first-2-pick-and-tell", "worker_id": "1AWZ7KVMSIM2FQA", "story_id": "40801", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the last package contained a stuffed animal . i really like stuffed animals . gram was happy to see that i liked all my presents .", "storylet_id": "204008"}], [{"original_text": "Aster all the gifts were opened, Gram and I cleaned up the mess and it was bedtime for me. I took my new animal to bed with me.", "album_id": "72157601239865861", "photo_flickr_id": "1020451160", "setting": "first-2-pick-and-tell", "worker_id": "1AWZ7KVMSIM2FQA", "story_id": "40801", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "aster all the gifts were opened , gram and i cleaned up the mess and it was bedtime for me . i took my new animal to bed with me .", "storylet_id": "204009"}], [{"original_text": "Spending time with family is what this kid likes best.", "album_id": "72157601239865861", "photo_flickr_id": "1020441176", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40802", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "spending time with family is what this kid likes best .", "storylet_id": "204010"}], [{"original_text": "There were so many presents to open.", "album_id": "72157601239865861", "photo_flickr_id": "1020443646", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40802", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many presents to open .", "storylet_id": "204011"}], [{"original_text": "There are too many things to open and people to greet.", "album_id": "72157601239865861", "photo_flickr_id": "1020444296", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40802", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are too many things to open and people to greet .", "storylet_id": "204012"}], [{"original_text": "The new book was read as soon as possible as it was a favorite.", "album_id": "72157601239865861", "photo_flickr_id": "1020448260", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40802", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the new book was read as soon as possible as it was a favorite .", "storylet_id": "204013"}], [{"original_text": "The stuffed animal was also on the top list of presents.", "album_id": "72157601239865861", "photo_flickr_id": "1019588833", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40802", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the stuffed animal was also on the top list of presents .", "storylet_id": "204014"}], [{"original_text": "Mom an dad were busy in the kitchen making food for a party.", "album_id": "72157601239865861", "photo_flickr_id": "1019580857", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40803", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom an dad were busy in the kitchen making food for a party .", "storylet_id": "204015"}], [{"original_text": " There were presents because it was Julies birthday.", "album_id": "72157601239865861", "photo_flickr_id": "1020443646", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40803", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were presents because it was julies birthday .", "storylet_id": "204016"}], [{"original_text": "She enjoyed the colors of the wrapping paper.", "album_id": "72157601239865861", "photo_flickr_id": "1020445120", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40803", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she enjoyed the colors of the wrapping paper .", "storylet_id": "204017"}], [{"original_text": "She had much more fun seeing what was inside and showing it around.", "album_id": "72157601239865861", "photo_flickr_id": "1019588145", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40803", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she had much more fun seeing what was inside and showing it around .", "storylet_id": "204018"}], [{"original_text": "Julie played with her new toys all day.", "album_id": "72157601239865861", "photo_flickr_id": "1020451160", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40803", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] played with her new toys all day .", "storylet_id": "204019"}], [{"original_text": "The family gathered together for Kayla's birthday party.", "album_id": "72157601239865861", "photo_flickr_id": "1020441176", "setting": "last-3-pick-old-and-tell", "worker_id": "KUN74NWQ386YYJN", "story_id": "40804", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family gathered together for [female] 's birthday party .", "storylet_id": "204020"}], [{"original_text": "Her mom and dad helped her unwrap her presents.", "album_id": "72157601239865861", "photo_flickr_id": "1020443646", "setting": "last-3-pick-old-and-tell", "worker_id": "KUN74NWQ386YYJN", "story_id": "40804", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her mom and dad helped her unwrap her presents .", "storylet_id": "204021"}], [{"original_text": "Kayla was overwhelmed with the number of gifts given to her by her family.", "album_id": "72157601239865861", "photo_flickr_id": "1020444296", "setting": "last-3-pick-old-and-tell", "worker_id": "KUN74NWQ386YYJN", "story_id": "40804", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] was overwhelmed with the number of gifts given to her by her family .", "storylet_id": "204022"}], [{"original_text": "Grandma sat with her and read her one of her favorite books she got her.", "album_id": "72157601239865861", "photo_flickr_id": "1020448260", "setting": "last-3-pick-old-and-tell", "worker_id": "KUN74NWQ386YYJN", "story_id": "40804", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandma sat with her and read her one of her favorite books she got her .", "storylet_id": "204023"}], [{"original_text": "Kayla enjoyed all of her gifts, however, her favorite was her stuffed animal!", "album_id": "72157601239865861", "photo_flickr_id": "1019588833", "setting": "last-3-pick-old-and-tell", "worker_id": "KUN74NWQ386YYJN", "story_id": "40804", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] enjoyed all of her gifts , however , her favorite was her stuffed animal !", "storylet_id": "204024"}], [{"original_text": "Excitement was palpable on the day of the big game.", "album_id": "72157602020431905", "photo_flickr_id": "1383149101", "setting": "first-2-pick-and-tell", "worker_id": "GC27DN74NWFE3AY", "story_id": "40810", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "excitement was palpable on the day of the big game .", "storylet_id": "204050"}], [{"original_text": "Fans young and old couldn't wait to take their seats for the pre-game show.", "album_id": "72157602020431905", "photo_flickr_id": "1383162243", "setting": "first-2-pick-and-tell", "worker_id": "GC27DN74NWFE3AY", "story_id": "40810", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fans young and old could n't wait to take their seats for the pre-game show .", "storylet_id": "204051"}], [{"original_text": "The home team's marching band gave a stellar, crowd-pleasing performance.", "album_id": "72157602020431905", "photo_flickr_id": "1384052524", "setting": "first-2-pick-and-tell", "worker_id": "GC27DN74NWFE3AY", "story_id": "40810", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the home team 's marching band gave a stellar , crowd-pleasing performance .", "storylet_id": "204052"}], [{"original_text": "Before the game began, a special tribute was given as an award was bestowed upon a retiring coach.", "album_id": "72157602020431905", "photo_flickr_id": "1384061774", "setting": "first-2-pick-and-tell", "worker_id": "GC27DN74NWFE3AY", "story_id": "40810", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "before the game began , a special tribute was given as an award was bestowed upon a retiring coach .", "storylet_id": "204053"}], [{"original_text": "As the sun set and the team ran onto the field, fireworks surprised and delighted the crowd.", "album_id": "72157602020431905", "photo_flickr_id": "1384071768", "setting": "first-2-pick-and-tell", "worker_id": "GC27DN74NWFE3AY", "story_id": "40810", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the sun set and the team ran onto the field , fireworks surprised and delighted the crowd .", "storylet_id": "204054"}], [{"original_text": "We went to watch our favorite team win the game.", "album_id": "72157602020431905", "photo_flickr_id": "1383149101", "setting": "first-2-pick-and-tell", "worker_id": "X44C9KRYY4EZROY", "story_id": "40811", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to watch our favorite team win the game .", "storylet_id": "204055"}], [{"original_text": "Here comes our team.", "album_id": "72157602020431905", "photo_flickr_id": "1384047116", "setting": "first-2-pick-and-tell", "worker_id": "X44C9KRYY4EZROY", "story_id": "40811", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here comes our team .", "storylet_id": "204056"}], [{"original_text": "This little guy decided to find a better seat.", "album_id": "72157602020431905", "photo_flickr_id": "1383162243", "setting": "first-2-pick-and-tell", "worker_id": "X44C9KRYY4EZROY", "story_id": "40811", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this little guy decided to find a better seat .", "storylet_id": "204057"}], [{"original_text": "We won the game, time for ice cream.", "album_id": "72157602020431905", "photo_flickr_id": "1384069050", "setting": "first-2-pick-and-tell", "worker_id": "X44C9KRYY4EZROY", "story_id": "40811", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we won the game , time for ice cream .", "storylet_id": "204058"}], [{"original_text": "The fireworks were just beautiful and really made the night.", "album_id": "72157602020431905", "photo_flickr_id": "1384071768", "setting": "first-2-pick-and-tell", "worker_id": "X44C9KRYY4EZROY", "story_id": "40811", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fireworks were just beautiful and really made the night .", "storylet_id": "204059"}], [{"original_text": "We worked the game that day.", "album_id": "72157602020431905", "photo_flickr_id": "1383149101", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40812", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we worked the game that day .", "storylet_id": "204060"}], [{"original_text": "The crowd was so excited for the team.", "album_id": "72157602020431905", "photo_flickr_id": "1383162243", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40812", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd was so excited for the team .", "storylet_id": "204061"}], [{"original_text": "The show at halftime was entertaining.", "album_id": "72157602020431905", "photo_flickr_id": "1384052524", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40812", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the show at halftime was entertaining .", "storylet_id": "204062"}], [{"original_text": "The marcee displayed many important players for the event.", "album_id": "72157602020431905", "photo_flickr_id": "1384061774", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40812", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the marcee displayed many important players for the event .", "storylet_id": "204063"}], [{"original_text": "The evening ended with fireworks.", "album_id": "72157602020431905", "photo_flickr_id": "1384071768", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40812", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the evening ended with fireworks .", "storylet_id": "204064"}], [{"original_text": "We were going to a game at Hienz Field.", "album_id": "72157602020431905", "photo_flickr_id": "1383149101", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40813", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were going to a game at location location .", "storylet_id": "204065"}], [{"original_text": "The little buy was oddly impressed by the chairs. ", "album_id": "72157602020431905", "photo_flickr_id": "1383162243", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40813", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the little buy was oddly impressed by the chairs .", "storylet_id": "204066"}], [{"original_text": "The band played at halftime.", "album_id": "72157602020431905", "photo_flickr_id": "1384052524", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40813", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band played at halftime .", "storylet_id": "204067"}], [{"original_text": "There was also a humanitarian award ceremony.", "album_id": "72157602020431905", "photo_flickr_id": "1384061774", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40813", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also a humanitarian award ceremony .", "storylet_id": "204068"}], [{"original_text": "Then when it got dark they shot some fireworks as a crowd treat. ", "album_id": "72157602020431905", "photo_flickr_id": "1384071768", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40813", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then when it got dark they shot some fireworks as a crowd treat .", "storylet_id": "204069"}], [{"original_text": "The family went to the stadium to watch the game.", "album_id": "72157602020431905", "photo_flickr_id": "1383149101", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40814", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went to the stadium to watch the game .", "storylet_id": "204070"}], [{"original_text": "The family got to watch the players enter the field.", "album_id": "72157602020431905", "photo_flickr_id": "1384047116", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40814", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family got to watch the players enter the field .", "storylet_id": "204071"}], [{"original_text": "The child thought the stadium seats were fun to play with.", "album_id": "72157602020431905", "photo_flickr_id": "1383162243", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40814", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the child thought the stadium seats were fun to play with .", "storylet_id": "204072"}], [{"original_text": "In the stadium there were lots of people and advertisements.", "album_id": "72157602020431905", "photo_flickr_id": "1384069050", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40814", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the stadium there were lots of people and advertisements .", "storylet_id": "204073"}], [{"original_text": "At the end of the game they had stunning fireworks.", "album_id": "72157602020431905", "photo_flickr_id": "1384071768", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40814", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the game they had stunning fireworks .", "storylet_id": "204074"}], [{"original_text": "It's graduation day and the new graduate poses for a picture with her proud parents.", "album_id": "72157603549502790", "photo_flickr_id": "2138538945", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40820", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's graduation day and the new graduate poses for a picture with her proud parents .", "storylet_id": "204100"}], [{"original_text": "The family enjoys time together in celebration of the graduation.", "album_id": "72157603549502790", "photo_flickr_id": "2139318786", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40820", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family enjoys time together in celebration of the graduation .", "storylet_id": "204101"}], [{"original_text": "The new graduate went on a trip and got to hang out at the beach, a new experience for her.", "album_id": "72157603549502790", "photo_flickr_id": "2138539521", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40820", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the new graduate went on a trip and got to hang out at the beach , a new experience for her .", "storylet_id": "204102"}], [{"original_text": "She also spends time with her girlfriends, celebrating their accomplishments.", "album_id": "72157603549502790", "photo_flickr_id": "2138539581", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40820", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she also spends time with her girlfriends , celebrating their accomplishments .", "storylet_id": "204103"}], [{"original_text": "Now that it is summer and the graduation is long over, it is time for vacation and tourism.", "album_id": "72157603549502790", "photo_flickr_id": "2138539727", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40820", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now that it is summer and the graduation is long over , it is time for vacation and tourism .", "storylet_id": "204104"}], [{"original_text": "A girl celebrated her college graduation with her parents.", "album_id": "72157603549502790", "photo_flickr_id": "2138538945", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40821", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a girl celebrated her college graduation with her parents .", "storylet_id": "204105"}], [{"original_text": "She and her friends were so excited!", "album_id": "72157603549502790", "photo_flickr_id": "2138539023", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40821", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she and her friends were so excited !", "storylet_id": "204106"}], [{"original_text": "Afterwards she went to relax at the beach.", "album_id": "72157603549502790", "photo_flickr_id": "2138539521", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40821", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards she went to relax at the beach .", "storylet_id": "204107"}], [{"original_text": "That night she went out to celebrate with her friends.", "album_id": "72157603549502790", "photo_flickr_id": "2138539581", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40821", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that night she went out to celebrate with her friends .", "storylet_id": "204108"}], [{"original_text": "It was time to say goodbye to college!", "album_id": "72157603549502790", "photo_flickr_id": "2139319372", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40821", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was time to say goodbye to college !", "storylet_id": "204109"}], [{"original_text": "Getting ready for graduation with her mother and father.", "album_id": "72157603549502790", "photo_flickr_id": "2138538945", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "40822", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting ready for graduation with her mother and father .", "storylet_id": "204110"}], [{"original_text": "The girls are wearing their caps and gowns ready to walk.", "album_id": "72157603549502790", "photo_flickr_id": "2138539023", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "40822", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girls are wearing their caps and gowns ready to walk .", "storylet_id": "204111"}], [{"original_text": "The weather is perfect for a walk on the beach.", "album_id": "72157603549502790", "photo_flickr_id": "2138539521", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "40822", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the weather is perfect for a walk on the beach .", "storylet_id": "204112"}], [{"original_text": "These girls are having a good time together, out on the town.", "album_id": "72157603549502790", "photo_flickr_id": "2138539581", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "40822", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these girls are having a good time together , out on the town .", "storylet_id": "204113"}], [{"original_text": "This is a brand new building with a nice manicured lawn.", "album_id": "72157603549502790", "photo_flickr_id": "2139319372", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "40822", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a brand new building with a nice manicured lawn .", "storylet_id": "204114"}], [{"original_text": "Me any the parents at graduation.", "album_id": "72157603549502790", "photo_flickr_id": "2138538945", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40823", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me any the parents at graduation .", "storylet_id": "204115"}], [{"original_text": "dinner with the family after graduation", "album_id": "72157603549502790", "photo_flickr_id": "2139318786", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40823", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dinner with the family after graduation", "storylet_id": "204116"}], [{"original_text": "at the beach with friends to celebrate graduation", "album_id": "72157603549502790", "photo_flickr_id": "2138539521", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40823", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the beach with friends to celebrate graduation", "storylet_id": "204117"}], [{"original_text": "eating dinner with the friends after we hit up the beach", "album_id": "72157603549502790", "photo_flickr_id": "2138539581", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40823", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "eating dinner with the friends after we hit up the beach", "storylet_id": "204118"}], [{"original_text": "We also took a look at a beautiful historical building that was right on the beach", "album_id": "72157603549502790", "photo_flickr_id": "2138539727", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40823", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also took a look at a beautiful historical building that was right on the beach", "storylet_id": "204119"}], [{"original_text": "Kelly was excited to finally graduate!", "album_id": "72157603549502790", "photo_flickr_id": "2138538945", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40824", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was excited to finally graduate !", "storylet_id": "204120"}], [{"original_text": "She and her friend were ecstatic to start college.", "album_id": "72157603549502790", "photo_flickr_id": "2138539023", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40824", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she and her friend were ecstatic to start college .", "storylet_id": "204121"}], [{"original_text": "Kelly decided to take a vacation after school, so she could relax a bit.", "album_id": "72157603549502790", "photo_flickr_id": "2138539521", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40824", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] decided to take a vacation after school , so she could relax a bit .", "storylet_id": "204122"}], [{"original_text": "Her friends came along too! They all had a lot of fun.", "album_id": "72157603549502790", "photo_flickr_id": "2138539581", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40824", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her friends came along too ! they all had a lot of fun .", "storylet_id": "204123"}], [{"original_text": "After the vacation it was off to college!", "album_id": "72157603549502790", "photo_flickr_id": "2139319372", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40824", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the vacation it was off to college !", "storylet_id": "204124"}], [{"original_text": "it was finally Christmas morning!", "album_id": "72157603974201983", "photo_flickr_id": "2287626484", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40825", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was finally christmas morning !", "storylet_id": "204125"}], [{"original_text": "little Jacob couldn't believe Santa had really came to his house!", "album_id": "72157603974201983", "photo_flickr_id": "2286838605", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40825", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "little [male] could n't believe location had really came to his house !", "storylet_id": "204126"}], [{"original_text": "he played with his new chair toy Santa brought him", "album_id": "72157603974201983", "photo_flickr_id": "2287625374", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40825", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he played with his new chair toy location brought him", "storylet_id": "204127"}], [{"original_text": "Jacob played with his little brother Dan on Christmas morning", "album_id": "72157603974201983", "photo_flickr_id": "2287623946", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40825", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] played with his little brother [male] on christmas morning", "storylet_id": "204128"}], [{"original_text": "they were so happy and excited Santa brought them lots of toys!", "album_id": "72157603974201983", "photo_flickr_id": "2286837173", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40825", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were so happy and excited location brought them lots of toys !", "storylet_id": "204129"}], [{"original_text": "Yay Christmas morning is finally here!", "album_id": "72157603974201983", "photo_flickr_id": "2287626484", "setting": "first-2-pick-and-tell", "worker_id": "5263NIUITCMQH9X", "story_id": "40826", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yay christmas morning is finally here !", "storylet_id": "204130"}], [{"original_text": "We watched out young boy open his presents.", "album_id": "72157603974201983", "photo_flickr_id": "2286838605", "setting": "first-2-pick-and-tell", "worker_id": "5263NIUITCMQH9X", "story_id": "40826", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we watched out young boy open his presents .", "storylet_id": "204131"}], [{"original_text": "He got new trains! Oh, how he loves his trains!", "album_id": "72157603974201983", "photo_flickr_id": "2287624466", "setting": "first-2-pick-and-tell", "worker_id": "5263NIUITCMQH9X", "story_id": "40826", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he got new trains ! oh , how he loves his trains !", "storylet_id": "204132"}], [{"original_text": "His brother really seemed to enjoy his new chair also!", "album_id": "72157603974201983", "photo_flickr_id": "2287625374", "setting": "first-2-pick-and-tell", "worker_id": "5263NIUITCMQH9X", "story_id": "40826", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his brother really seemed to enjoy his new chair also !", "storylet_id": "204133"}], [{"original_text": "Him and his brother played with their new toys all day together.", "album_id": "72157603974201983", "photo_flickr_id": "2287624720", "setting": "first-2-pick-and-tell", "worker_id": "5263NIUITCMQH9X", "story_id": "40826", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "him and his brother played with their new toys all day together .", "storylet_id": "204134"}], [{"original_text": "It was Christmas morning at the family home.", "album_id": "72157603974201983", "photo_flickr_id": "2287626484", "setting": "last-3-pick-old-and-tell", "worker_id": "UEHB64OWOR7YR1S", "story_id": "40827", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was christmas morning at the family home .", "storylet_id": "204135"}], [{"original_text": "The children opened their gifts.", "album_id": "72157603974201983", "photo_flickr_id": "2286838605", "setting": "last-3-pick-old-and-tell", "worker_id": "UEHB64OWOR7YR1S", "story_id": "40827", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children opened their gifts .", "storylet_id": "204136"}], [{"original_text": "Gift unwrapping eventually commenced.", "album_id": "72157603974201983", "photo_flickr_id": "2287625374", "setting": "last-3-pick-old-and-tell", "worker_id": "UEHB64OWOR7YR1S", "story_id": "40827", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "gift unwrapping eventually commenced .", "storylet_id": "204137"}], [{"original_text": "The children played with the building set they were gifted.", "album_id": "72157603974201983", "photo_flickr_id": "2287623946", "setting": "last-3-pick-old-and-tell", "worker_id": "UEHB64OWOR7YR1S", "story_id": "40827", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the children played with the building set they were gifted .", "storylet_id": "204138"}], [{"original_text": "The children cooperated with each other in their building endeavors. ", "album_id": "72157603974201983", "photo_flickr_id": "2286837173", "setting": "last-3-pick-old-and-tell", "worker_id": "UEHB64OWOR7YR1S", "story_id": "40827", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the children cooperated with each other in their building endeavors .", "storylet_id": "204139"}], [{"original_text": "Its christmas morning and the tree is packed with presents all around.", "album_id": "72157603974201983", "photo_flickr_id": "2287626484", "setting": "last-3-pick-old-and-tell", "worker_id": "PLJO3GXFSQMAP4T", "story_id": "40828", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "its christmas morning and the tree is packed with presents all around .", "storylet_id": "204140"}], [{"original_text": "Its baby brothers first present.", "album_id": "72157603974201983", "photo_flickr_id": "2286838605", "setting": "last-3-pick-old-and-tell", "worker_id": "PLJO3GXFSQMAP4T", "story_id": "40828", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "its baby brothers first present .", "storylet_id": "204141"}], [{"original_text": "He was so excited to play with his new toys.", "album_id": "72157603974201983", "photo_flickr_id": "2287624466", "setting": "last-3-pick-old-and-tell", "worker_id": "PLJO3GXFSQMAP4T", "story_id": "40828", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was so excited to play with his new toys .", "storylet_id": "204142"}], [{"original_text": "Big brother tried to sit in little brothers chair but he may have been too big.", "album_id": "72157603974201983", "photo_flickr_id": "2287625374", "setting": "last-3-pick-old-and-tell", "worker_id": "PLJO3GXFSQMAP4T", "story_id": "40828", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "big brother tried to sit in little brothers chair but he may have been too big .", "storylet_id": "204143"}], [{"original_text": "The brothers played together the rest of the day.", "album_id": "72157603974201983", "photo_flickr_id": "2287624720", "setting": "last-3-pick-old-and-tell", "worker_id": "PLJO3GXFSQMAP4T", "story_id": "40828", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the brothers played together the rest of the day .", "storylet_id": "204144"}], [{"original_text": "It was Christmas morning and the kids were excited.", "album_id": "72157603974201983", "photo_flickr_id": "2287626484", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40829", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was christmas morning and the kids were excited .", "storylet_id": "204145"}], [{"original_text": "They could not wait to get their gifts opened.", "album_id": "72157603974201983", "photo_flickr_id": "2286838605", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40829", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they could not wait to get their gifts opened .", "storylet_id": "204146"}], [{"original_text": "I believe that he enjoyed his new seat.", "album_id": "72157603974201983", "photo_flickr_id": "2287625374", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40829", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i believe that he enjoyed his new seat .", "storylet_id": "204147"}], [{"original_text": "They got many new toys and played nicely together.", "album_id": "72157603974201983", "photo_flickr_id": "2287623946", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40829", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they got many new toys and played nicely together .", "storylet_id": "204148"}], [{"original_text": "They were happy with all they received and played for hours.", "album_id": "72157603974201983", "photo_flickr_id": "2286837173", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40829", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were happy with all they received and played for hours .", "storylet_id": "204149"}], [{"original_text": "On our trip to Seattle, we found ourselves in a great vantage point.", "album_id": "72157604389344705", "photo_flickr_id": "2387743669", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40830", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our trip to location , we found ourselves in a great vantage point .", "storylet_id": "204150"}], [{"original_text": "We could see the Space Needle!", "album_id": "72157604389344705", "photo_flickr_id": "2388573536", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40830", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we could see the space needle !", "storylet_id": "204151"}], [{"original_text": "We could sit and relax while watching the city lights below.", "album_id": "72157604389344705", "photo_flickr_id": "2387745199", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40830", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we could sit and relax while watching the city lights below .", "storylet_id": "204152"}], [{"original_text": "We were joined by friends.", "album_id": "72157604389344705", "photo_flickr_id": "2387745433", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40830", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were joined by friends .", "storylet_id": "204153"}], [{"original_text": "We all enjoyed the hookah.", "album_id": "72157604389344705", "photo_flickr_id": "2387745649", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40830", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all enjoyed the hookah .", "storylet_id": "204154"}], [{"original_text": "Meet Mark.", "album_id": "72157604389344705", "photo_flickr_id": "2388573710", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "40831", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "meet [male] .", "storylet_id": "204155"}], [{"original_text": "Meet Jack.", "album_id": "72157604389344705", "photo_flickr_id": "2388573882", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "40831", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "meet [male] .", "storylet_id": "204156"}], [{"original_text": "They both live in this beautiful city you see before you.", "album_id": "72157604389344705", "photo_flickr_id": "2387743669", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "40831", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they both live in this beautiful city you see before you .", "storylet_id": "204157"}], [{"original_text": "They have a special hang out where they go their friends to unravel and have good vibes.", "album_id": "72157604389344705", "photo_flickr_id": "2387745433", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "40831", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they have a special hang out where they go their friends to unravel and have good vibes .", "storylet_id": "204158"}], [{"original_text": "Illuminated by the lights you can tell this city means everything to Mark and Jack.", "album_id": "72157604389344705", "photo_flickr_id": "2387745199", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "40831", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "illuminated by the lights you can tell this city means everything to [male] and [male] .", "storylet_id": "204159"}], [{"original_text": "David moved to a new state and got an apartment with a great view of the city.", "album_id": "72157604389344705", "photo_flickr_id": "2387743669", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40832", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] moved to a new state and got an apartment with a great view of the city .", "storylet_id": "204160"}], [{"original_text": "From his window he could see the tower in the distance.", "album_id": "72157604389344705", "photo_flickr_id": "2388573536", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40832", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from his window he could see the tower in the distance .", "storylet_id": "204161"}], [{"original_text": "At night he could sit on his deck and enjoy the air.", "album_id": "72157604389344705", "photo_flickr_id": "2387745199", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40832", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at night he could sit on his deck and enjoy the air .", "storylet_id": "204162"}], [{"original_text": "He had friends over to celebrate his new abode.", "album_id": "72157604389344705", "photo_flickr_id": "2387745433", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40832", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he had friends over to celebrate his new abode .", "storylet_id": "204163"}], [{"original_text": "He even got to try using the local smoking paraphernalia.", "album_id": "72157604389344705", "photo_flickr_id": "2387745649", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40832", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he even got to try using the local smoking paraphernalia .", "storylet_id": "204164"}], [{"original_text": "We spent the day climbing the mountain.", "album_id": "72157604389344705", "photo_flickr_id": "2388573710", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40833", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we spent the day climbing the mountain .", "storylet_id": "204165"}], [{"original_text": "By the end of the day we were ready for a break.", "album_id": "72157604389344705", "photo_flickr_id": "2388573882", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40833", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "by the end of the day we were ready for a break .", "storylet_id": "204166"}], [{"original_text": "The next morning we spent some time taking in the sights.", "album_id": "72157604389344705", "photo_flickr_id": "2387743669", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40833", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next morning we spent some time taking in the sights .", "storylet_id": "204167"}], [{"original_text": "That evening we stopped off at a place that had a great view of the mountain.", "album_id": "72157604389344705", "photo_flickr_id": "2387745433", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40833", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that evening we stopped off at a place that had a great view of the mountain .", "storylet_id": "204168"}], [{"original_text": "At night time when all the lights are on you can see the absolutely amazing view.", "album_id": "72157604389344705", "photo_flickr_id": "2387745199", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40833", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night time when all the lights are on you can see the absolutely amazing view .", "storylet_id": "204169"}], [{"original_text": "At my brothers new place he has a great view of the big city.", "album_id": "72157604389344705", "photo_flickr_id": "2387743669", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "40834", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at my brothers new place he has a great view of the big city .", "storylet_id": "204170"}], [{"original_text": "He lives in a wooded area but is so close to the city.", "album_id": "72157604389344705", "photo_flickr_id": "2388573536", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "40834", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he lives in a wooded area but is so close to the city .", "storylet_id": "204171"}], [{"original_text": "I got to sit under the lights at a local stop place.", "album_id": "72157604389344705", "photo_flickr_id": "2387745199", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "40834", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got to sit under the lights at a local stop place .", "storylet_id": "204172"}], [{"original_text": "We enjoyed the night air while smoking a little bit.", "album_id": "72157604389344705", "photo_flickr_id": "2387745433", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "40834", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we enjoyed the night air while smoking a little bit .", "storylet_id": "204173"}], [{"original_text": "I normally do not smoke but it was my birthday so I did.", "album_id": "72157604389344705", "photo_flickr_id": "2387745649", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "40834", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i normally do not smoke but it was my birthday so i did .", "storylet_id": "204174"}], [{"original_text": "We had a plane bring us to our vacation spot", "album_id": "72157605819211940", "photo_flickr_id": "2612631014", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "40840", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a plane bring us to our vacation spot", "storylet_id": "204200"}], [{"original_text": "We were staying at a national park", "album_id": "72157605819211940", "photo_flickr_id": "2612637462", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "40840", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were staying at a national park", "storylet_id": "204201"}], [{"original_text": "We were right next to a river with a waterfall.", "album_id": "72157605819211940", "photo_flickr_id": "2611811297", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "40840", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were right next to a river with a waterfall .", "storylet_id": "204202"}], [{"original_text": "We also had very good look at the mountains in the distance.", "album_id": "72157605819211940", "photo_flickr_id": "2612648202", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "40840", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also had very good look at the mountains in the distance .", "storylet_id": "204203"}], [{"original_text": "We also got to spend many hours fishing.", "album_id": "72157605819211940", "photo_flickr_id": "2612655876", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "40840", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also got to spend many hours fishing .", "storylet_id": "204204"}], [{"original_text": "Here it was: our plane that would transport us around.", "album_id": "72157605819211940", "photo_flickr_id": "2612631014", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "40841", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here it was : our plane that would transport us around .", "storylet_id": "204205"}], [{"original_text": "The first stop on the trip was Katmai National Park. ", "album_id": "72157605819211940", "photo_flickr_id": "2612637462", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "40841", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first stop on the trip was location location location .", "storylet_id": "204206"}], [{"original_text": "We visited a small waterfall in the park where salmon could be found.", "album_id": "72157605819211940", "photo_flickr_id": "2611811297", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "40841", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we visited a small waterfall in the park where salmon could be found .", "storylet_id": "204207"}], [{"original_text": "We set up shop and decided to do some fly fishing.", "album_id": "72157605819211940", "photo_flickr_id": "2612655876", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "40841", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we set up shop and decided to do some fly fishing .", "storylet_id": "204208"}], [{"original_text": "After a long day we sat down by the banks and looked out for the bald eagle.", "album_id": "72157605819211940", "photo_flickr_id": "2611821625", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "40841", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long day we sat down by the banks and looked out for the bald eagle .", "storylet_id": "204209"}], [{"original_text": "Here is the plane that we took to the National Park! How cool is that?", "album_id": "72157605819211940", "photo_flickr_id": "2612631014", "setting": "last-3-pick-old-and-tell", "worker_id": "ZNWW0E6EW0UJZ26", "story_id": "40842", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is the plane that we took to the national park ! how cool is that ?", "storylet_id": "204210"}], [{"original_text": "We arrived safely at Katmai National Park, and were excited to start our trip.", "album_id": "72157605819211940", "photo_flickr_id": "2612637462", "setting": "last-3-pick-old-and-tell", "worker_id": "ZNWW0E6EW0UJZ26", "story_id": "40842", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we arrived safely at location location location , and were excited to start our trip .", "storylet_id": "204211"}], [{"original_text": "Here is a beautiful little waterfall. ", "album_id": "72157605819211940", "photo_flickr_id": "2611811297", "setting": "last-3-pick-old-and-tell", "worker_id": "ZNWW0E6EW0UJZ26", "story_id": "40842", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is a beautiful little waterfall .", "storylet_id": "204212"}], [{"original_text": "The views were so spectacular! Look at those mountains!", "album_id": "72157605819211940", "photo_flickr_id": "2612648202", "setting": "last-3-pick-old-and-tell", "worker_id": "ZNWW0E6EW0UJZ26", "story_id": "40842", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the views were so spectacular ! look at those mountains !", "storylet_id": "204213"}], [{"original_text": "We got some great fly-fishing in. We had such a memorable, fun trip.", "album_id": "72157605819211940", "photo_flickr_id": "2612655876", "setting": "last-3-pick-old-and-tell", "worker_id": "ZNWW0E6EW0UJZ26", "story_id": "40842", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we got some great fly-fishing in . we had such a memorable , fun trip .", "storylet_id": "204214"}], [{"original_text": "Here is the great source of joy for our family, the plane!", "album_id": "72157605819211940", "photo_flickr_id": "2612631014", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40843", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is the great source of joy for our family , the plane !", "storylet_id": "204215"}], [{"original_text": "Here marks the spot of our family adventure.", "album_id": "72157605819211940", "photo_flickr_id": "2612637462", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40843", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here marks the spot of our family adventure .", "storylet_id": "204216"}], [{"original_text": "The water was gorgeous as it was located in paradise.", "album_id": "72157605819211940", "photo_flickr_id": "2611811297", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40843", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water was gorgeous as it was located in paradise .", "storylet_id": "204217"}], [{"original_text": "Here we are doing our best to catch dinner!", "album_id": "72157605819211940", "photo_flickr_id": "2612655876", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40843", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here we are doing our best to catch dinner !", "storylet_id": "204218"}], [{"original_text": "The great bald eagle in the sky gave me good feelings to witness.", "album_id": "72157605819211940", "photo_flickr_id": "2611821625", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "40843", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the great bald eagle in the sky gave me good feelings to witness .", "storylet_id": "204219"}], [{"original_text": "The friends were arriving by plane to achieve a lifelong dream.", "album_id": "72157605819211940", "photo_flickr_id": "2612631014", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40844", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends were arriving by plane to achieve a lifelong dream .", "storylet_id": "204220"}], [{"original_text": "They excitedly arrive in the Katmai National Park and Preserve.", "album_id": "72157605819211940", "photo_flickr_id": "2612637462", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40844", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they excitedly arrive in the location location location and preserve .", "storylet_id": "204221"}], [{"original_text": "They visit thunderous rivers and waterfalls.", "album_id": "72157605819211940", "photo_flickr_id": "2611811297", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40844", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they visit thunderous rivers and waterfalls .", "storylet_id": "204222"}], [{"original_text": "They take in the gorgeous views of the mountains. ", "album_id": "72157605819211940", "photo_flickr_id": "2612648202", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40844", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they take in the gorgeous views of the mountains .", "storylet_id": "204223"}], [{"original_text": "Then finish the day quietly fishing in a calm area in the middle of nowhere.", "album_id": "72157605819211940", "photo_flickr_id": "2612655876", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40844", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then finish the day quietly fishing in a calm area in the middle of nowhere .", "storylet_id": "204224"}], [{"original_text": "Sandy and Joe are vacationing in San Francisco ", "album_id": "72157606406078666", "photo_flickr_id": "201868815", "setting": "first-2-pick-and-tell", "worker_id": "8MGRY7E2NROOQDA", "story_id": "40845", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [male] are vacationing in location location", "storylet_id": "204225"}], [{"original_text": "They are actually visiting with some friends who are planning a BBQ on the beach", "album_id": "72157606406078666", "photo_flickr_id": "201879107", "setting": "first-2-pick-and-tell", "worker_id": "8MGRY7E2NROOQDA", "story_id": "40845", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are actually visiting with some friends who are planning a bbq on the beach", "storylet_id": "204226"}], [{"original_text": "Sandy and Joe are really enjoying their time. Joe is enjoying his first beer of the day", "album_id": "72157606406078666", "photo_flickr_id": "201868813", "setting": "first-2-pick-and-tell", "worker_id": "8MGRY7E2NROOQDA", "story_id": "40845", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] and [male] are really enjoying their time . [male] is enjoying his first beer of the day", "storylet_id": "204227"}], [{"original_text": "Later in the day Joe enjoys some football before the BBQ", "album_id": "72157606406078666", "photo_flickr_id": "201879104", "setting": "first-2-pick-and-tell", "worker_id": "8MGRY7E2NROOQDA", "story_id": "40845", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later in the day [male] enjoys some football before the bbq", "storylet_id": "204228"}], [{"original_text": "Joe enjoyed the delicious BBQ but is not ready to reenact some scenes from a play his was in ", "album_id": "72157606406078666", "photo_flickr_id": "201879105", "setting": "first-2-pick-and-tell", "worker_id": "8MGRY7E2NROOQDA", "story_id": "40845", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] enjoyed the delicious bbq but is not ready to reenact some scenes from a play his was in", "storylet_id": "204229"}], [{"original_text": "Best buds.", "album_id": "72157606406078666", "photo_flickr_id": "201879103", "setting": "first-2-pick-and-tell", "worker_id": "D62QRK73E32UBH1", "story_id": "40846", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "best buds .", "storylet_id": "204230"}], [{"original_text": "We decided to spent the day in the park with this magnificent view.", "album_id": "72157606406078666", "photo_flickr_id": "201868815", "setting": "first-2-pick-and-tell", "worker_id": "D62QRK73E32UBH1", "story_id": "40846", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided to spent the day in the park with this magnificent view .", "storylet_id": "204231"}], [{"original_text": "There, see it, right there, cool huh?", "album_id": "72157606406078666", "photo_flickr_id": "201868816", "setting": "first-2-pick-and-tell", "worker_id": "D62QRK73E32UBH1", "story_id": "40846", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there , see it , right there , cool huh ?", "storylet_id": "204232"}], [{"original_text": "Sweetie we love you too but you're squishing us, can't breathe.", "album_id": "72157606406078666", "photo_flickr_id": "201879109", "setting": "first-2-pick-and-tell", "worker_id": "D62QRK73E32UBH1", "story_id": "40846", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sweetie we love you too but you 're squishing us , ca n't breathe .", "storylet_id": "204233"}], [{"original_text": "Got something to say Mr. watermelon, didn't think so.", "album_id": "72157606406078666", "photo_flickr_id": "201879105", "setting": "first-2-pick-and-tell", "worker_id": "D62QRK73E32UBH1", "story_id": "40846", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "got something to say mr. watermelon , did n't think so .", "storylet_id": "204234"}], [{"original_text": "During a cloudy day we all took a trip to the beach.", "album_id": "72157606406078666", "photo_flickr_id": "201868815", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40847", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during a cloudy day we all took a trip to the beach .", "storylet_id": "204235"}], [{"original_text": "All our friends posed for a few photos", "album_id": "72157606406078666", "photo_flickr_id": "201879107", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40847", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all our friends posed for a few photos", "storylet_id": "204236"}], [{"original_text": "and drank some beers.", "album_id": "72157606406078666", "photo_flickr_id": "201868813", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40847", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and drank some beers .", "storylet_id": "204237"}], [{"original_text": "We threw the football around for a while", "album_id": "72157606406078666", "photo_flickr_id": "201879104", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40847", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we threw the football around for a while", "storylet_id": "204238"}], [{"original_text": "and john posed with his new sword.", "album_id": "72157606406078666", "photo_flickr_id": "201879105", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40847", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and john posed with his new sword .", "storylet_id": "204239"}], [{"original_text": "This view was our whole reason for coming here.", "album_id": "72157606406078666", "photo_flickr_id": "201868815", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40848", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this view was our whole reason for coming here .", "storylet_id": "204240"}], [{"original_text": "Everyone was finally together so we made sure to get a picture.", "album_id": "72157606406078666", "photo_flickr_id": "201879107", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40848", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was finally together so we made sure to get a picture .", "storylet_id": "204241"}], [{"original_text": "We all had a great time together.", "album_id": "72157606406078666", "photo_flickr_id": "201868813", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40848", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all had a great time together .", "storylet_id": "204242"}], [{"original_text": "We played some football to help the time pass.", "album_id": "72157606406078666", "photo_flickr_id": "201879104", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40848", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we played some football to help the time pass .", "storylet_id": "204243"}], [{"original_text": "Some of us shared with the group the things that interest us the most.", "album_id": "72157606406078666", "photo_flickr_id": "201879105", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40848", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of us shared with the group the things that interest us the most .", "storylet_id": "204244"}], [{"original_text": "We made a trip out to visit the Golden Gate bridge in San Francisco. ", "album_id": "72157606406078666", "photo_flickr_id": "201868815", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40849", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we made a trip out to visit the location location bridge in location location .", "storylet_id": "204245"}], [{"original_text": "Our friends from back home also came along with us on the trip. ", "album_id": "72157606406078666", "photo_flickr_id": "201879107", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40849", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our friends from back home also came along with us on the trip .", "storylet_id": "204246"}], [{"original_text": "We had drinks on the beach.", "album_id": "72157606406078666", "photo_flickr_id": "201868813", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40849", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had drinks on the beach .", "storylet_id": "204247"}], [{"original_text": "And played football and catch as well.", "album_id": "72157606406078666", "photo_flickr_id": "201879104", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40849", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and played football and catch as well .", "storylet_id": "204248"}], [{"original_text": "Everyone had a good time at the beach that day.", "album_id": "72157606406078666", "photo_flickr_id": "201879105", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40849", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a good time at the beach that day .", "storylet_id": "204249"}], [{"original_text": "Dad took our entire family to the beach for summer vacation.", "album_id": "72157607096603441", "photo_flickr_id": "2826064354", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40850", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dad took our entire family to the beach for summer vacation .", "storylet_id": "204250"}], [{"original_text": "We went sailing which was pretty cool.", "album_id": "72157607096603441", "photo_flickr_id": "2826056456", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40850", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went sailing which was pretty cool .", "storylet_id": "204251"}], [{"original_text": "Mom was complaining about how hungry she was and was super happy to reach the shore.", "album_id": "72157607096603441", "photo_flickr_id": "2825227771", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40850", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom was complaining about how hungry she was and was super happy to reach the shore .", "storylet_id": "204252"}], [{"original_text": "I thought she was going to catch and eat a seagull alive.", "album_id": "72157607096603441", "photo_flickr_id": "2825220673", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40850", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i thought she was going to catch and eat a seagull alive .", "storylet_id": "204253"}], [{"original_text": "We ended up walking along the boardwalk to look for a place to eat.", "album_id": "72157607096603441", "photo_flickr_id": "2826063024", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40850", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended up walking along the boardwalk to look for a place to eat .", "storylet_id": "204254"}], [{"original_text": "Some friends spent a fun day out on their sailboat.", "album_id": "72157607096603441", "photo_flickr_id": "2826056456", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40851", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some friends spent a fun day out on their sailboat .", "storylet_id": "204255"}], [{"original_text": "Later they went back to the beach and fed some seagulls.", "album_id": "72157607096603441", "photo_flickr_id": "2825220673", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40851", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "later they went back to the beach and fed some seagulls .", "storylet_id": "204256"}], [{"original_text": "They had a nice dinner on the beach.", "album_id": "72157607096603441", "photo_flickr_id": "2826064354", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40851", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a nice dinner on the beach .", "storylet_id": "204257"}], [{"original_text": "They watched the beautiful sunset together.", "album_id": "72157607096603441", "photo_flickr_id": "2826075136", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40851", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they watched the beautiful sunset together .", "storylet_id": "204258"}], [{"original_text": "The boyfriend and girlfriend shared a romantic kiss in front of the sunset.", "album_id": "72157607096603441", "photo_flickr_id": "2825234881", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40851", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boyfriend and girlfriend shared a romantic kiss in front of the sunset .", "storylet_id": "204259"}], [{"original_text": "This family decided to spend the day at the beach.", "album_id": "72157607096603441", "photo_flickr_id": "2826064354", "setting": "last-3-pick-old-and-tell", "worker_id": "PLJO3GXFSQMAP4T", "story_id": "40852", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this family decided to spend the day at the beach .", "storylet_id": "204260"}], [{"original_text": "They rented a sailboat.", "album_id": "72157607096603441", "photo_flickr_id": "2826056456", "setting": "last-3-pick-old-and-tell", "worker_id": "PLJO3GXFSQMAP4T", "story_id": "40852", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they rented a sailboat .", "storylet_id": "204261"}], [{"original_text": "Mom decided to pose for a picture.", "album_id": "72157607096603441", "photo_flickr_id": "2825227771", "setting": "last-3-pick-old-and-tell", "worker_id": "PLJO3GXFSQMAP4T", "story_id": "40852", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom decided to pose for a picture .", "storylet_id": "204262"}], [{"original_text": "Shortly after she chased some seagulls.", "album_id": "72157607096603441", "photo_flickr_id": "2825220673", "setting": "last-3-pick-old-and-tell", "worker_id": "PLJO3GXFSQMAP4T", "story_id": "40852", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "shortly after she chased some seagulls .", "storylet_id": "204263"}], [{"original_text": "At the end of the day they watched the sunset together.", "album_id": "72157607096603441", "photo_flickr_id": "2826063024", "setting": "last-3-pick-old-and-tell", "worker_id": "PLJO3GXFSQMAP4T", "story_id": "40852", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day they watched the sunset together .", "storylet_id": "204264"}], [{"original_text": "A group of friends took a trip to the beach.", "album_id": "72157607096603441", "photo_flickr_id": "2826064354", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40853", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends took a trip to the beach .", "storylet_id": "204265"}], [{"original_text": "A few of us took an excursion on a sailboat.", "album_id": "72157607096603441", "photo_flickr_id": "2826056456", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40853", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a few of us took an excursion on a sailboat .", "storylet_id": "204266"}], [{"original_text": "After we frolicked on the beach", "album_id": "72157607096603441", "photo_flickr_id": "2825227771", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40853", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after we frolicked on the beach", "storylet_id": "204267"}], [{"original_text": "and chased some seagulls.", "album_id": "72157607096603441", "photo_flickr_id": "2825220673", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40853", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and chased some seagulls .", "storylet_id": "204268"}], [{"original_text": "After we watched the sunset at the end of the day.", "album_id": "72157607096603441", "photo_flickr_id": "2826063024", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "40853", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we watched the sunset at the end of the day .", "storylet_id": "204269"}], [{"original_text": "The family arrived at their beach for their vacation.", "album_id": "72157607096603441", "photo_flickr_id": "2826056456", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40854", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family arrived at their beach for their vacation .", "storylet_id": "204270"}], [{"original_text": "Jenn was the most excited.", "album_id": "72157607096603441", "photo_flickr_id": "2825220673", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40854", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "jenn was the most excited .", "storylet_id": "204271"}], [{"original_text": "The four of them spent a lot of quality time together.", "album_id": "72157607096603441", "photo_flickr_id": "2826064354", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40854", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the four of them spent a lot of quality time together .", "storylet_id": "204272"}], [{"original_text": "The view was absolutely breathtaking.", "album_id": "72157607096603441", "photo_flickr_id": "2826075136", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40854", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view was absolutely breathtaking .", "storylet_id": "204273"}], [{"original_text": "Jenn and her husband Dan celebrated their love and happiness.", "album_id": "72157607096603441", "photo_flickr_id": "2825234881", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40854", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "jenn and her husband [male] celebrated their love and happiness .", "storylet_id": "204274"}], [{"original_text": "Adam visited Washington mall to see the president speak.", "album_id": "72157612752002335", "photo_flickr_id": "3213825438", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40855", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] visited location mall to see the president speak .", "storylet_id": "204275"}], [{"original_text": "There was a large crowd of people.", "album_id": "72157612752002335", "photo_flickr_id": "3212979575", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40855", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a large crowd of people .", "storylet_id": "204276"}], [{"original_text": "Almost as far as the eye can see.", "album_id": "72157612752002335", "photo_flickr_id": "3213816598", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40855", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "almost as far as the eye can see .", "storylet_id": "204277"}], [{"original_text": "There were even people from Canada there.", "album_id": "72157612752002335", "photo_flickr_id": "3213815716", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40855", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were even people from location there .", "storylet_id": "204278"}], [{"original_text": "There were TV screens to make it easier to view the president.", "album_id": "72157612752002335", "photo_flickr_id": "3212966573", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40855", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were tv screens to make it easier to view the president .", "storylet_id": "204279"}], [{"original_text": "Adam is ready to visit all the sights in the DC area.", "album_id": "72157612752002335", "photo_flickr_id": "3213825438", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40856", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is ready to visit all the sights in the location area .", "storylet_id": "204280"}], [{"original_text": "Walking along the street with his friends adam makes his way to the sights.", "album_id": "72157612752002335", "photo_flickr_id": "3212979575", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40856", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "walking along the street with his friends adam makes his way to the sights .", "storylet_id": "204281"}], [{"original_text": "Adam finally arrives at his first landmark in DC.", "album_id": "72157612752002335", "photo_flickr_id": "3213820980", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40856", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] finally arrives at his first landmark in dc .", "storylet_id": "204282"}], [{"original_text": "Adam takes pictures of the Washington monument.", "album_id": "72157612752002335", "photo_flickr_id": "3213817674", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40856", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] takes pictures of the location monument .", "storylet_id": "204283"}], [{"original_text": "Time to go home after a busy day in DC.", "album_id": "72157612752002335", "photo_flickr_id": "3213805430", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40856", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time to go home after a busy day in dc .", "storylet_id": "204284"}], [{"original_text": "Once upon a time, Adam went to a rally.", "album_id": "72157612752002335", "photo_flickr_id": "3213825438", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "40857", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "once upon a time , [male] went to a rally .", "storylet_id": "204285"}], [{"original_text": "He was surprised at how many people were there!", "album_id": "72157612752002335", "photo_flickr_id": "3212979575", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "40857", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was surprised at how many people were there !", "storylet_id": "204286"}], [{"original_text": "But he was also excited when he saw famous buildings", "album_id": "72157612752002335", "photo_flickr_id": "3213820980", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "40857", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but he was also excited when he saw famous buildings", "storylet_id": "204287"}], [{"original_text": "and even famous monuments!", "album_id": "72157612752002335", "photo_flickr_id": "3213817674", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "40857", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and even famous monuments !", "storylet_id": "204288"}], [{"original_text": "The rally was great, but at the end of the day, Adam had to get back on the bus and go home. ", "album_id": "72157612752002335", "photo_flickr_id": "3213805430", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "40857", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the rally was great , but at the end of the day , [male] had to get back on the bus and go home .", "storylet_id": "204289"}], [{"original_text": "The rally was something that I knew we would remember for a long time to come.", "album_id": "72157612752002335", "photo_flickr_id": "3213825438", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40858", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the rally was something that i knew we would remember for a long time to come .", "storylet_id": "204290"}], [{"original_text": "It was important to me that we be part of it.", "album_id": "72157612752002335", "photo_flickr_id": "3212979575", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40858", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was important to me that we be part of it .", "storylet_id": "204291"}], [{"original_text": "There were many people there yelling and screaming.", "album_id": "72157612752002335", "photo_flickr_id": "3213816598", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40858", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many people there yelling and screaming .", "storylet_id": "204292"}], [{"original_text": "There were many beautiful sights to see.", "album_id": "72157612752002335", "photo_flickr_id": "3213815716", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40858", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many beautiful sights to see .", "storylet_id": "204293"}], [{"original_text": "There were flags flying around everywhere.", "album_id": "72157612752002335", "photo_flickr_id": "3212966573", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "40858", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were flags flying around everywhere .", "storylet_id": "204294"}], [{"original_text": "Adam attended a rally in Washington DV", "album_id": "72157612752002335", "photo_flickr_id": "3213825438", "setting": "last-3-pick-old-and-tell", "worker_id": "KIWKES9KT640HYP", "story_id": "40859", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] attended a rally in location dv", "storylet_id": "204295"}], [{"original_text": "People flooded the streets in DC", "album_id": "72157612752002335", "photo_flickr_id": "3212979575", "setting": "last-3-pick-old-and-tell", "worker_id": "KIWKES9KT640HYP", "story_id": "40859", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people flooded the streets in dc", "storylet_id": "204296"}], [{"original_text": "The national mall was full of people", "album_id": "72157612752002335", "photo_flickr_id": "3213820980", "setting": "last-3-pick-old-and-tell", "worker_id": "KIWKES9KT640HYP", "story_id": "40859", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the national mall was full of people", "storylet_id": "204297"}], [{"original_text": "flat stanley was on the national mall", "album_id": "72157612752002335", "photo_flickr_id": "3213817674", "setting": "last-3-pick-old-and-tell", "worker_id": "KIWKES9KT640HYP", "story_id": "40859", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "flat stanley was on the national mall", "storylet_id": "204298"}], [{"original_text": "a line of coach buses lined the streets", "album_id": "72157612752002335", "photo_flickr_id": "3213805430", "setting": "last-3-pick-old-and-tell", "worker_id": "KIWKES9KT640HYP", "story_id": "40859", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a line of coach buses lined the streets", "storylet_id": "204299"}], [{"original_text": "We were all going to volunteer to clean up the swamp today.", "album_id": "72157613872112100", "photo_flickr_id": "3282890025", "setting": "first-2-pick-and-tell", "worker_id": "I8NXUTG94XXGAI3", "story_id": "40860", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were all going to volunteer to clean up the swamp today .", "storylet_id": "204300"}], [{"original_text": "My brother swiftly throwing away all waste that was not recyclable.", "album_id": "72157613872112100", "photo_flickr_id": "3282904849", "setting": "first-2-pick-and-tell", "worker_id": "I8NXUTG94XXGAI3", "story_id": "40860", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my brother swiftly throwing away all waste that was not recyclable .", "storylet_id": "204301"}], [{"original_text": "These nice people helped volunteer to clean up the swamp and also brought along their dog.", "album_id": "72157613872112100", "photo_flickr_id": "3282909281", "setting": "first-2-pick-and-tell", "worker_id": "I8NXUTG94XXGAI3", "story_id": "40860", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these nice people helped volunteer to clean up the swamp and also brought along their dog .", "storylet_id": "204302"}], [{"original_text": "Delicious hot dogs were grilled for the volunteers to appreciate all their hard work.", "album_id": "72157613872112100", "photo_flickr_id": "3282915495", "setting": "first-2-pick-and-tell", "worker_id": "I8NXUTG94XXGAI3", "story_id": "40860", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "delicious hot dogs were grilled for the volunteers to appreciate all their hard work .", "storylet_id": "204303"}], [{"original_text": "A final group photo was taken of the many organizers and volunteers during this event.", "album_id": "72157613872112100", "photo_flickr_id": "3282918745", "setting": "first-2-pick-and-tell", "worker_id": "I8NXUTG94XXGAI3", "story_id": "40860", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a final group photo was taken of the many organizers and volunteers during this event .", "storylet_id": "204304"}], [{"original_text": "We're getting ready for the camping trip this weekend. ", "album_id": "72157613872112100", "photo_flickr_id": "3282907467", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "40861", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 're getting ready for the camping trip this weekend .", "storylet_id": "204305"}], [{"original_text": "Posing for a group shot after an amazing afternoon in the sun. ", "album_id": "72157613872112100", "photo_flickr_id": "3282909281", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "40861", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "posing for a group shot after an amazing afternoon in the sun .", "storylet_id": "204306"}], [{"original_text": "Our cars are ready for the adventure. ", "album_id": "72157613872112100", "photo_flickr_id": "3282913815", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "40861", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our cars are ready for the adventure .", "storylet_id": "204307"}], [{"original_text": "The camp director making yummy lunch for everyone. ", "album_id": "72157613872112100", "photo_flickr_id": "3282915495", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "40861", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the camp director making yummy lunch for everyone .", "storylet_id": "204308"}], [{"original_text": "The gang all together after a great day hanging out. ", "album_id": "72157613872112100", "photo_flickr_id": "3282918745", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "40861", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the gang all together after a great day hanging out .", "storylet_id": "204309"}], [{"original_text": "This is a local swamp that we all volunteered to help clean up one Saturday.", "album_id": "72157613872112100", "photo_flickr_id": "3282890025", "setting": "last-3-pick-old-and-tell", "worker_id": "VAMT7AJR6R5JQJ3", "story_id": "40862", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a local swamp that we all volunteered to help clean up one saturday .", "storylet_id": "204310"}], [{"original_text": "By the end of the cleanup, we had tons of trash to put into the dumpsters.", "album_id": "72157613872112100", "photo_flickr_id": "3282904849", "setting": "last-3-pick-old-and-tell", "worker_id": "VAMT7AJR6R5JQJ3", "story_id": "40862", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "by the end of the cleanup , we had tons of trash to put into the dumpsters .", "storylet_id": "204311"}], [{"original_text": "Now it was time for a nice cookout, to reward ourseleves for the hard work we did to clean our community.", "album_id": "72157613872112100", "photo_flickr_id": "3282909281", "setting": "last-3-pick-old-and-tell", "worker_id": "VAMT7AJR6R5JQJ3", "story_id": "40862", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now it was time for a nice cookout , to reward ourseleves for the hard work we did to clean our community .", "storylet_id": "204312"}], [{"original_text": "Mr. Roberts is a master griller!", "album_id": "72157613872112100", "photo_flickr_id": "3282915495", "setting": "last-3-pick-old-and-tell", "worker_id": "VAMT7AJR6R5JQJ3", "story_id": "40862", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mr. roberts is a master griller !", "storylet_id": "204313"}], [{"original_text": "With full hearts and full bellies, we all pose for a picture at the end of a very rewarding day.", "album_id": "72157613872112100", "photo_flickr_id": "3282918745", "setting": "last-3-pick-old-and-tell", "worker_id": "VAMT7AJR6R5JQJ3", "story_id": "40862", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with full hearts and full bellies , we all pose for a picture at the end of a very rewarding day .", "storylet_id": "204314"}], [{"original_text": "The annual Jeep Club BBQ was a busy day.", "album_id": "72157613872112100", "photo_flickr_id": "3282907467", "setting": "last-3-pick-old-and-tell", "worker_id": "OMNBZ0BSF70NIQQ", "story_id": "40863", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the annual jeep club bbq was a busy day .", "storylet_id": "204315"}], [{"original_text": "It was good to see everyone after a whole year!", "album_id": "72157613872112100", "photo_flickr_id": "3282909281", "setting": "last-3-pick-old-and-tell", "worker_id": "OMNBZ0BSF70NIQQ", "story_id": "40863", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was good to see everyone after a whole year !", "storylet_id": "204316"}], [{"original_text": "Here are our babies lined up in a row.", "album_id": "72157613872112100", "photo_flickr_id": "3282913815", "setting": "last-3-pick-old-and-tell", "worker_id": "OMNBZ0BSF70NIQQ", "story_id": "40863", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here are our babies lined up in a row .", "storylet_id": "204317"}], [{"original_text": "Jim at the BBQ as head chef.", "album_id": "72157613872112100", "photo_flickr_id": "3282915495", "setting": "last-3-pick-old-and-tell", "worker_id": "OMNBZ0BSF70NIQQ", "story_id": "40863", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] at the bbq as head chef .", "storylet_id": "204318"}], [{"original_text": "Here's our 2015 Club Photo.", "album_id": "72157613872112100", "photo_flickr_id": "3282918745", "setting": "last-3-pick-old-and-tell", "worker_id": "OMNBZ0BSF70NIQQ", "story_id": "40863", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's our 2015 club photo .", "storylet_id": "204319"}], [{"original_text": "Everyone came to help clean up the swamp.", "album_id": "72157613872112100", "photo_flickr_id": "3282890025", "setting": "last-3-pick-old-and-tell", "worker_id": "QGJA25EM6G2L276", "story_id": "40864", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone came to help clean up the swamp .", "storylet_id": "204320"}], [{"original_text": "Even Jethro, the most bitter participant of them all, helped out.", "album_id": "72157613872112100", "photo_flickr_id": "3282904849", "setting": "last-3-pick-old-and-tell", "worker_id": "QGJA25EM6G2L276", "story_id": "40864", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even jethro , the most bitter participant of them all , helped out .", "storylet_id": "204321"}], [{"original_text": "It was a good chance to catch up with family.", "album_id": "72157613872112100", "photo_flickr_id": "3282909281", "setting": "last-3-pick-old-and-tell", "worker_id": "QGJA25EM6G2L276", "story_id": "40864", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a good chance to catch up with family .", "storylet_id": "204322"}], [{"original_text": "Everyone ate hot dogs.", "album_id": "72157613872112100", "photo_flickr_id": "3282915495", "setting": "last-3-pick-old-and-tell", "worker_id": "QGJA25EM6G2L276", "story_id": "40864", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone ate hot dogs .", "storylet_id": "204323"}], [{"original_text": "They all worked together and had a good time. ", "album_id": "72157613872112100", "photo_flickr_id": "3282918745", "setting": "last-3-pick-old-and-tell", "worker_id": "QGJA25EM6G2L276", "story_id": "40864", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all worked together and had a good time .", "storylet_id": "204324"}], [{"original_text": "Today we went walking in the woods, looking for wildlife.", "album_id": "72157613984385744", "photo_flickr_id": "3286107515", "setting": "first-2-pick-and-tell", "worker_id": "5263NIUITCMQH9X", "story_id": "40865", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went walking in the woods , looking for wildlife .", "storylet_id": "204325"}], [{"original_text": "Johnny got tired so he climbed on daddy's back.", "album_id": "72157613984385744", "photo_flickr_id": "3286948446", "setting": "first-2-pick-and-tell", "worker_id": "5263NIUITCMQH9X", "story_id": "40865", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] got tired so he climbed on daddy 's back .", "storylet_id": "204326"}], [{"original_text": "We searched the trees for any signs of birds.", "album_id": "72157613984385744", "photo_flickr_id": "3286148811", "setting": "first-2-pick-and-tell", "worker_id": "5263NIUITCMQH9X", "story_id": "40865", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we searched the trees for any signs of birds .", "storylet_id": "204327"}], [{"original_text": "Finally we found one and got to hand feed it!", "album_id": "72157613984385744", "photo_flickr_id": "3286941350", "setting": "first-2-pick-and-tell", "worker_id": "5263NIUITCMQH9X", "story_id": "40865", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally we found one and got to hand feed it !", "storylet_id": "204328"}], [{"original_text": "We also noticed this curious creature prancing through the snow!", "album_id": "72157613984385744", "photo_flickr_id": "3286954912", "setting": "first-2-pick-and-tell", "worker_id": "5263NIUITCMQH9X", "story_id": "40865", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also noticed this curious creature prancing through the snow !", "storylet_id": "204329"}], [{"original_text": "The family went out for a walk in the snow.", "album_id": "72157613984385744", "photo_flickr_id": "3286927328", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40866", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went out for a walk in the snow .", "storylet_id": "204330"}], [{"original_text": "Timmy found a stick that he liked to play with.", "album_id": "72157613984385744", "photo_flickr_id": "3286107515", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40866", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] found a stick that he liked to play with .", "storylet_id": "204331"}], [{"original_text": "He had fun climbing in a tree.", "album_id": "72157613984385744", "photo_flickr_id": "3286140021", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40866", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had fun climbing in a tree .", "storylet_id": "204332"}], [{"original_text": "The family even got to feed a bird!", "album_id": "72157613984385744", "photo_flickr_id": "3286125905", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40866", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family even got to feed a bird !", "storylet_id": "204333"}], [{"original_text": "After a while Timmy got tired and rode on his dad's back.", "album_id": "72157613984385744", "photo_flickr_id": "3286948446", "setting": "first-2-pick-and-tell", "worker_id": "0XUPOQIV7NO70WF", "story_id": "40866", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a while [male] got tired and rode on his dad 's back .", "storylet_id": "204334"}], [{"original_text": "The family went on a snowy hike.", "album_id": "72157613984385744", "photo_flickr_id": "3286927328", "setting": "last-3-pick-old-and-tell", "worker_id": "6BU9KQ5AQQXTMA0", "story_id": "40867", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went on a snowy hike .", "storylet_id": "204335"}], [{"original_text": "The youngest child was having fun, dressed in red.", "album_id": "72157613984385744", "photo_flickr_id": "3286107515", "setting": "last-3-pick-old-and-tell", "worker_id": "6BU9KQ5AQQXTMA0", "story_id": "40867", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the youngest child was having fun , dressed in red .", "storylet_id": "204336"}], [{"original_text": "He explored the trees in the brisk air.", "album_id": "72157613984385744", "photo_flickr_id": "3286140021", "setting": "last-3-pick-old-and-tell", "worker_id": "6BU9KQ5AQQXTMA0", "story_id": "40867", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he explored the trees in the brisk air .", "storylet_id": "204337"}], [{"original_text": "They held their hands out with sunflower seeds to feed the birds.", "album_id": "72157613984385744", "photo_flickr_id": "3286125905", "setting": "last-3-pick-old-and-tell", "worker_id": "6BU9KQ5AQQXTMA0", "story_id": "40867", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they held their hands out with sunflower seeds to feed the birds .", "storylet_id": "204338"}], [{"original_text": "Later, the young boy hitched a ride on the dads back.", "album_id": "72157613984385744", "photo_flickr_id": "3286948446", "setting": "last-3-pick-old-and-tell", "worker_id": "6BU9KQ5AQQXTMA0", "story_id": "40867", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later , the young boy hitched a ride on the dads back .", "storylet_id": "204339"}], [{"original_text": "Let's go on a walk through the snowy woods with mom and dad.", "album_id": "72157613984385744", "photo_flickr_id": "3286107515", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40868", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "let 's go on a walk through the snowy woods with mom and dad .", "storylet_id": "204340"}], [{"original_text": "The way in is so mysterious and pretty. Mom and dad know the way, you could get easy lost in all the trees.", "album_id": "72157613984385744", "photo_flickr_id": "3286948446", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40868", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the way in is so mysterious and pretty . mom and dad know the way , you could get easy lost in all the trees .", "storylet_id": "204341"}], [{"original_text": "I like the trees, the branches criss cross everywhere. They give a unique cover to the place.", "album_id": "72157613984385744", "photo_flickr_id": "3286148811", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40868", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i like the trees , the branches criss cross everywhere . they give a unique cover to the place .", "storylet_id": "204342"}], [{"original_text": "Mom brought special seeds to attract the birds. They come to her like Cinderella.", "album_id": "72157613984385744", "photo_flickr_id": "3286941350", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40868", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom brought special seeds to attract the birds . they come to her like cinderella .", "storylet_id": "204343"}], [{"original_text": "We got to lead the way back, we had to search the snow for the trail and our footprints.", "album_id": "72157613984385744", "photo_flickr_id": "3286954912", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40868", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we got to lead the way back , we had to search the snow for the trail and our footprints .", "storylet_id": "204344"}], [{"original_text": "It was a wonderful day for a winter hike in the woods with the kids.", "album_id": "72157613984385744", "photo_flickr_id": "3286927328", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "40869", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a wonderful day for a winter hike in the woods with the kids .", "storylet_id": "204345"}], [{"original_text": "As beginning hikers, the kids are making use of their walking sticks.", "album_id": "72157613984385744", "photo_flickr_id": "3286107515", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "40869", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as beginning hikers , the kids are making use of their walking sticks .", "storylet_id": "204346"}], [{"original_text": "The little boy was having fun climbing around the birch trees. ", "album_id": "72157613984385744", "photo_flickr_id": "3286140021", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "40869", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the little boy was having fun climbing around the birch trees .", "storylet_id": "204347"}], [{"original_text": "At one point, the mother held out her hand with some seeds and caught a sparrow.", "album_id": "72157613984385744", "photo_flickr_id": "3286125905", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "40869", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at one point , the mother held out her hand with some seeds and caught a sparrow .", "storylet_id": "204348"}], [{"original_text": "As the day got longer, the children grew tired and dad carried one of them on his back.", "album_id": "72157613984385744", "photo_flickr_id": "3286948446", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "40869", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the day got longer , the children grew tired and dad carried one of them on his back .", "storylet_id": "204349"}], [{"original_text": "It's time for a big conference event. All the family is gathered together for the event.", "album_id": "72157616930463907", "photo_flickr_id": "3454592378", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40870", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's time for a big conference event . all the family is gathered together for the event .", "storylet_id": "204350"}], [{"original_text": "Friends get lunch together at the conference. They are glad they could meet up.", "album_id": "72157616930463907", "photo_flickr_id": "3454592972", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40870", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "friends get lunch together at the conference . they are glad they could meet up .", "storylet_id": "204351"}], [{"original_text": "The lunch is a little disappointing though. Look at that sandwich!", "album_id": "72157616930463907", "photo_flickr_id": "3454593538", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40870", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lunch is a little disappointing though . look at that sandwich !", "storylet_id": "204352"}], [{"original_text": "Before speaking, one of the speakers poses with her friends for a picture.", "album_id": "72157616930463907", "photo_flickr_id": "3454594002", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40870", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "before speaking , one of the speakers poses with her friends for a picture .", "storylet_id": "204353"}], [{"original_text": "Finally, she gives her speech, awing all that listen.", "album_id": "72157616930463907", "photo_flickr_id": "3454594500", "setting": "first-2-pick-and-tell", "worker_id": "JYSV2J7G06D6DQI", "story_id": "40870", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , she gives her speech , awing all that listen .", "storylet_id": "204354"}], [{"original_text": "Many people gathered around to see the press confrence.", "album_id": "72157616930463907", "photo_flickr_id": "3454589494", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40871", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people gathered around to see the press confrence .", "storylet_id": "204355"}], [{"original_text": "Here is mike checking his phone while the conference is going on.", "album_id": "72157616930463907", "photo_flickr_id": "3453775835", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40871", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is mike checking his phone while the conference is going on .", "storylet_id": "204356"}], [{"original_text": "Mike then posed for a picture with his buddy Andrew.", "album_id": "72157616930463907", "photo_flickr_id": "3454591532", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40871", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] then posed for a picture with his buddy [male] .", "storylet_id": "204357"}], [{"original_text": "A picture of Mike's Sand which he ate at the conference.", "album_id": "72157616930463907", "photo_flickr_id": "3454593538", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40871", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a picture of [male] 's sand which he ate at the conference .", "storylet_id": "204358"}], [{"original_text": "The group took a photo at the end of the press conference.", "album_id": "72157616930463907", "photo_flickr_id": "3454594002", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40871", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the group took a photo at the end of the press conference .", "storylet_id": "204359"}], [{"original_text": "It's always special for the whole family gets together.", "album_id": "72157616930463907", "photo_flickr_id": "3454592378", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "40872", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's always special for the whole family gets together .", "storylet_id": "204360"}], [{"original_text": "We met for a quick lunch before the event.", "album_id": "72157616930463907", "photo_flickr_id": "3454592972", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "40872", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we met for a quick lunch before the event .", "storylet_id": "204361"}], [{"original_text": "They brought us sandwiches and fruit.", "album_id": "72157616930463907", "photo_flickr_id": "3454593538", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "40872", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they brought us sandwiches and fruit .", "storylet_id": "204362"}], [{"original_text": "The younger family members were just as supportive.", "album_id": "72157616930463907", "photo_flickr_id": "3454594002", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "40872", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the younger family members were just as supportive .", "storylet_id": "204363"}], [{"original_text": "When she started to speak pride welled up in all of us.", "album_id": "72157616930463907", "photo_flickr_id": "3454594500", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "40872", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when she started to speak pride welled up in all of us .", "storylet_id": "204364"}], [{"original_text": "The convention that the family attended was for members of the Asian American communities.", "album_id": "72157616930463907", "photo_flickr_id": "3454592378", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40873", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the convention that the family attended was for members of the asian american communities .", "storylet_id": "204365"}], [{"original_text": "There were many people who represented different areas of Asia.", "album_id": "72157616930463907", "photo_flickr_id": "3454592972", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40873", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many people who represented different areas of location .", "storylet_id": "204366"}], [{"original_text": "For lunch there was a delicious sandwich and strawberries.", "album_id": "72157616930463907", "photo_flickr_id": "3454593538", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40873", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "for lunch there was a delicious sandwich and strawberries .", "storylet_id": "204367"}], [{"original_text": "The kids also had a good time at the event.", "album_id": "72157616930463907", "photo_flickr_id": "3454594002", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40873", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids also had a good time at the event .", "storylet_id": "204368"}], [{"original_text": "The woman speakers were very informative and poignant. ", "album_id": "72157616930463907", "photo_flickr_id": "3454594500", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40873", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the woman speakers were very informative and poignant .", "storylet_id": "204369"}], [{"original_text": "Family portrait before the baptism ", "album_id": "72157616930463907", "photo_flickr_id": "3454592378", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40874", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family portrait before the baptism", "storylet_id": "204370"}], [{"original_text": "mom, grandmother and aunt eating breakfast. ", "album_id": "72157616930463907", "photo_flickr_id": "3454592972", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40874", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom , grandmother and aunt eating breakfast .", "storylet_id": "204371"}], [{"original_text": "Salami sandwich and a strawberry for breakfast. ", "album_id": "72157616930463907", "photo_flickr_id": "3454593538", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40874", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "salami sandwich and a strawberry for breakfast .", "storylet_id": "204372"}], [{"original_text": "Cousins and uncle taking a picture together. ", "album_id": "72157616930463907", "photo_flickr_id": "3454594002", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40874", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cousins and uncle taking a picture together .", "storylet_id": "204373"}], [{"original_text": "Cousin singing. ", "album_id": "72157616930463907", "photo_flickr_id": "3454594500", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40874", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "cousin singing .", "storylet_id": "204374"}], [{"original_text": "Gina and her family went hiking together", "album_id": "72157617295647509", "photo_flickr_id": "3475714727", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40875", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and her family went hiking together", "storylet_id": "204375"}], [{"original_text": "The took pictures of the beautiful mountains.", "album_id": "72157617295647509", "photo_flickr_id": "3476529624", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40875", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the took pictures of the beautiful mountains .", "storylet_id": "204376"}], [{"original_text": "Little Jeff wonders around on the mountain top.", "album_id": "72157617295647509", "photo_flickr_id": "3476531780", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40875", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "little [male] wonders around on the mountain top .", "storylet_id": "204377"}], [{"original_text": "Gina and her family take a photo atop the mountains.", "album_id": "72157617295647509", "photo_flickr_id": "3476479750", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40875", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and her family take a photo atop the mountains .", "storylet_id": "204378"}], [{"original_text": "They took one last picture as they headed down.", "album_id": "72157617295647509", "photo_flickr_id": "3475694839", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40875", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they took one last picture as they headed down .", "storylet_id": "204379"}], [{"original_text": "It's hike with your kid day. Glad to see alot of people showed up.", "album_id": "72157617295647509", "photo_flickr_id": "3475714727", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40876", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's hike with your kid day . glad to see alot of people showed up .", "storylet_id": "204380"}], [{"original_text": "What beautiful rocks. Love this.", "album_id": "72157617295647509", "photo_flickr_id": "3476529624", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40876", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "what beautiful rocks . love this .", "storylet_id": "204381"}], [{"original_text": "met some nice people along the way. They took this picture of us.", "album_id": "72157617295647509", "photo_flickr_id": "3476479750", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40876", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "met some nice people along the way . they took this picture of us .", "storylet_id": "204382"}], [{"original_text": "These are our new friends.", "album_id": "72157617295647509", "photo_flickr_id": "3475679813", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40876", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these are our new friends .", "storylet_id": "204383"}], [{"original_text": "Here we are, saying goodbye til next year.", "album_id": "72157617295647509", "photo_flickr_id": "3475692103", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40876", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here we are , saying goodbye til next year .", "storylet_id": "204384"}], [{"original_text": "We had to take a break from all the hiking.", "album_id": "72157617295647509", "photo_flickr_id": "3475714727", "setting": "last-3-pick-old-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "40877", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had to take a break from all the hiking .", "storylet_id": "204385"}], [{"original_text": "But the view was so amazing at the top of the mountain.", "album_id": "72157617295647509", "photo_flickr_id": "3476529624", "setting": "last-3-pick-old-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "40877", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but the view was so amazing at the top of the mountain .", "storylet_id": "204386"}], [{"original_text": "Mom was nervous about the overlook with the kids.", "album_id": "72157617295647509", "photo_flickr_id": "3476479750", "setting": "last-3-pick-old-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "40877", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom was nervous about the overlook with the kids .", "storylet_id": "204387"}], [{"original_text": "So Daddy put the baby on his back and we hiked back.", "album_id": "72157617295647509", "photo_flickr_id": "3475679813", "setting": "last-3-pick-old-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "40877", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so daddy put the baby on his back and we hiked back .", "storylet_id": "204388"}], [{"original_text": "On the way down, we stopped for another picture.", "album_id": "72157617295647509", "photo_flickr_id": "3475692103", "setting": "last-3-pick-old-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "40877", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the way down , we stopped for another picture .", "storylet_id": "204389"}], [{"original_text": "Mom, my brother, and myself pose for a pic at the National Park. ", "album_id": "72157617295647509", "photo_flickr_id": "3475714727", "setting": "last-3-pick-old-and-tell", "worker_id": "8458P4HFXJAZ6U5", "story_id": "40878", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom , my brother , and myself pose for a pic at the location location .", "storylet_id": "204390"}], [{"original_text": "I got to take a photo all by myself! ", "album_id": "72157617295647509", "photo_flickr_id": "3476529624", "setting": "last-3-pick-old-and-tell", "worker_id": "8458P4HFXJAZ6U5", "story_id": "40878", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got to take a photo all by myself !", "storylet_id": "204391"}], [{"original_text": "I liked the part when we were at the highest part of the mountain. ", "album_id": "72157617295647509", "photo_flickr_id": "3476479750", "setting": "last-3-pick-old-and-tell", "worker_id": "8458P4HFXJAZ6U5", "story_id": "40878", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i liked the part when we were at the highest part of the mountain .", "storylet_id": "204392"}], [{"original_text": "We even took a pic with my dad. ", "album_id": "72157617295647509", "photo_flickr_id": "3475679813", "setting": "last-3-pick-old-and-tell", "worker_id": "8458P4HFXJAZ6U5", "story_id": "40878", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even took a pic with my dad .", "storylet_id": "204393"}], [{"original_text": "But my favorite part was when me and mom spent time alone together. ", "album_id": "72157617295647509", "photo_flickr_id": "3475692103", "setting": "last-3-pick-old-and-tell", "worker_id": "8458P4HFXJAZ6U5", "story_id": "40878", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but my favorite part was when me and mom spent time alone together .", "storylet_id": "204394"}], [{"original_text": "Our family loves nature, so we went on a hike.", "album_id": "72157617295647509", "photo_flickr_id": "3475714727", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40879", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family loves nature , so we went on a hike .", "storylet_id": "204395"}], [{"original_text": "The views were great, we had to stay close.", "album_id": "72157617295647509", "photo_flickr_id": "3476529624", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40879", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the views were great , we had to stay close .", "storylet_id": "204396"}], [{"original_text": "Although we got to break off and explore a little bit.", "album_id": "72157617295647509", "photo_flickr_id": "3476531780", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40879", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "although we got to break off and explore a little bit .", "storylet_id": "204397"}], [{"original_text": "Here we are up near the top. It was a long way for little legs.", "album_id": "72157617295647509", "photo_flickr_id": "3476479750", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40879", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here we are up near the top . it was a long way for little legs .", "storylet_id": "204398"}], [{"original_text": "At the very top is a super amazing view, but its a little bit scary too. Our whole family loves doing these hikes.", "album_id": "72157617295647509", "photo_flickr_id": "3475694839", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40879", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the very top is a super amazing view , but its a little bit scary too . our whole family loves doing these hikes .", "storylet_id": "204399"}], [{"original_text": "Jeff and dan were going to the capitol building for fireworks.", "album_id": "72157618713479185", "photo_flickr_id": "3565037324", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40880", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and dan were going to the capitol building for fireworks .", "storylet_id": "204400"}], [{"original_text": "They enjoyed board games as they wait for nightfall ", "album_id": "72157618713479185", "photo_flickr_id": "3564292193", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40880", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they enjoyed board games as they wait for nightfall", "storylet_id": "204401"}], [{"original_text": "many others gathered around waiting for the fireworks", "album_id": "72157618713479185", "photo_flickr_id": "3564292529", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40880", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many others gathered around waiting for the fireworks", "storylet_id": "204402"}], [{"original_text": "Dan taking a selfie as they wait for the night to come", "album_id": "72157618713479185", "photo_flickr_id": "3564293091", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40880", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] taking a selfie as they wait for the night to come", "storylet_id": "204403"}], [{"original_text": "The night falls and the crowd is eager for the fireworks", "album_id": "72157618713479185", "photo_flickr_id": "3565112714", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40880", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night falls and the crowd is eager for the fireworks", "storylet_id": "204404"}], [{"original_text": "The family is in Washington DC seeing the sites.", "album_id": "72157618713479185", "photo_flickr_id": "3565019692", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40881", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family is in location location seeing the sites .", "storylet_id": "204405"}], [{"original_text": "The family taking a walk around the Washington Monument", "album_id": "72157618713479185", "photo_flickr_id": "3564215563", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40881", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family taking a walk around the location monument", "storylet_id": "204406"}], [{"original_text": "Riding on a motorcycle after seeing the monument ", "album_id": "72157618713479185", "photo_flickr_id": "3565038150", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40881", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "riding on a motorcycle after seeing the monument", "storylet_id": "204407"}], [{"original_text": "Dave is excited to see the white house.", "album_id": "72157618713479185", "photo_flickr_id": "3564293091", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40881", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is excited to see the white house .", "storylet_id": "204408"}], [{"original_text": "Hanging out at the United states capitol building.", "album_id": "72157618713479185", "photo_flickr_id": "3565112714", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40881", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "hanging out at the location location location location .", "storylet_id": "204409"}], [{"original_text": "Washington DC is so beautiful", "album_id": "72157618713479185", "photo_flickr_id": "3565019692", "setting": "last-3-pick-old-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "40882", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location location is so beautiful", "storylet_id": "204410"}], [{"original_text": "We saw many memorials and museums", "album_id": "72157618713479185", "photo_flickr_id": "3564215563", "setting": "last-3-pick-old-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "40882", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw many memorials and museums", "storylet_id": "204411"}], [{"original_text": "And the crowds began to ride in for the celebration.", "album_id": "72157618713479185", "photo_flickr_id": "3565038150", "setting": "last-3-pick-old-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "40882", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the crowds began to ride in for the celebration .", "storylet_id": "204412"}], [{"original_text": "He was exhausted from the day out on the town", "album_id": "72157618713479185", "photo_flickr_id": "3564293091", "setting": "last-3-pick-old-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "40882", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was exhausted from the day out on the town", "storylet_id": "204413"}], [{"original_text": "But we all gathered together as the sky turned dark.", "album_id": "72157618713479185", "photo_flickr_id": "3565112714", "setting": "last-3-pick-old-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "40882", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but we all gathered together as the sky turned dark .", "storylet_id": "204414"}], [{"original_text": "On Friday evening, we visited Washington DC, and our first stop was the Lincoln Memorial.", "album_id": "72157618713479185", "photo_flickr_id": "3565019692", "setting": "last-3-pick-old-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "40883", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on friday evening , we visited location location , and our first stop was the organization organization .", "storylet_id": "204415"}], [{"original_text": "After leaving the memorial, we saw a beautiful view of the Washington Monument.", "album_id": "72157618713479185", "photo_flickr_id": "3564215563", "setting": "last-3-pick-old-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "40883", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after leaving the memorial , we saw a beautiful view of the location monument .", "storylet_id": "204416"}], [{"original_text": "Our friends, Buck and Sue, brought their motorcycle as it was a beautiful evening.", "album_id": "72157618713479185", "photo_flickr_id": "3565038150", "setting": "last-3-pick-old-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "40883", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our friends , buck and [female] , brought their motorcycle as it was a beautiful evening .", "storylet_id": "204417"}], [{"original_text": "Before the sun fully set, we were gathered on the lawn, anxiously awaiting a rally by a Presidential hopeful.", "album_id": "72157618713479185", "photo_flickr_id": "3564293091", "setting": "last-3-pick-old-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "40883", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "before the sun fully set , we were gathered on the lawn , anxiously awaiting a rally by a presidential hopeful .", "storylet_id": "204418"}], [{"original_text": "There was a great crowd for the rally. The setting was perfect, as the Capitol building was right behind us.", "album_id": "72157618713479185", "photo_flickr_id": "3565112714", "setting": "last-3-pick-old-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "40883", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a great crowd for the rally . the setting was perfect , as the location building was right behind us .", "storylet_id": "204419"}], [{"original_text": "Everyone was really excited to go to Washington, D.C. to see the next President's acceptance speech.", "album_id": "72157618713479185", "photo_flickr_id": "3565037324", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "40884", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was really excited to go to location , location to see the next president 's acceptance speech .", "storylet_id": "204420"}], [{"original_text": "After driving all day, they camped out on the great lawn outside the capital and spent hours killing time by playing games and chatting.", "album_id": "72157618713479185", "photo_flickr_id": "3564292193", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "40884", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after driving all day , they camped out on the great lawn outside the capital and spent hours killing time by playing games and chatting .", "storylet_id": "204421"}], [{"original_text": "The lawn was crowded with so many people waiting anxiously.", "album_id": "72157618713479185", "photo_flickr_id": "3564292529", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "40884", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lawn was crowded with so many people waiting anxiously .", "storylet_id": "204422"}], [{"original_text": "Everyone was really happy to be there even though they had to wait a long time.", "album_id": "72157618713479185", "photo_flickr_id": "3564293091", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "40884", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was really happy to be there even though they had to wait a long time .", "storylet_id": "204423"}], [{"original_text": "As day turned to night, the moment finally arrived and everyone became alert as they were about to witness history.", "album_id": "72157618713479185", "photo_flickr_id": "3565112714", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "40884", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as day turned to night , the moment finally arrived and everyone became alert as they were about to witness history .", "storylet_id": "204424"}], [{"original_text": "This is the band room. This is there way of plugging up everything, can you say fire hazard?", "album_id": "72157619898337387", "photo_flickr_id": "3641852701", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40885", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the band room . this is there way of plugging up everything , can you say fire hazard ?", "storylet_id": "204425"}], [{"original_text": "This is the keyboard.", "album_id": "72157619898337387", "photo_flickr_id": "3641851527", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40885", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the keyboard .", "storylet_id": "204426"}], [{"original_text": "This is our drummer, drumming.", "album_id": "72157619898337387", "photo_flickr_id": "3642660342", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40885", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is our drummer , drumming .", "storylet_id": "204427"}], [{"original_text": "Another view of our big bandroom", "album_id": "72157619898337387", "photo_flickr_id": "3642661514", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40885", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another view of our big bandroom", "storylet_id": "204428"}], [{"original_text": "Cool building hah, this is the outside.", "album_id": "72157619898337387", "photo_flickr_id": "3642668848", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40885", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "cool building hah , this is the outside .", "storylet_id": "204429"}], [{"original_text": "My band was getting ready for our concert.", "album_id": "72157619898337387", "photo_flickr_id": "3641852701", "setting": "first-2-pick-and-tell", "worker_id": "MWT8DH7A4OK6IYT", "story_id": "40886", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my band was getting ready for our concert .", "storylet_id": "204430"}], [{"original_text": "We had the piano nearly set up.", "album_id": "72157619898337387", "photo_flickr_id": "3641851527", "setting": "first-2-pick-and-tell", "worker_id": "MWT8DH7A4OK6IYT", "story_id": "40886", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had the piano nearly set up .", "storylet_id": "204431"}], [{"original_text": "Ringo was warming up on the drums.", "album_id": "72157619898337387", "photo_flickr_id": "3642660342", "setting": "first-2-pick-and-tell", "worker_id": "MWT8DH7A4OK6IYT", "story_id": "40886", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "ringo was warming up on the drums .", "storylet_id": "204432"}], [{"original_text": "And George was testing the sound system.", "album_id": "72157619898337387", "photo_flickr_id": "3641857371", "setting": "first-2-pick-and-tell", "worker_id": "MWT8DH7A4OK6IYT", "story_id": "40886", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and [male] was testing the sound system .", "storylet_id": "204433"}], [{"original_text": "The concert hall was no Sydney Opera house or Le Zenith, but it was ours.", "album_id": "72157619898337387", "photo_flickr_id": "3642668848", "setting": "first-2-pick-and-tell", "worker_id": "MWT8DH7A4OK6IYT", "story_id": "40886", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the concert hall was no location location house or organization organization , but it was ours .", "storylet_id": "204434"}], [{"original_text": "Dont' worry I know which wire goes where...now was that red to green or green to black?", "album_id": "72157619898337387", "photo_flickr_id": "3641852701", "setting": "last-3-pick-old-and-tell", "worker_id": "SWZG7TSVZ5M7M9D", "story_id": "40887", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dont ' worry i know which wire goes where ... now was that red to green or green to black ?", "storylet_id": "204435"}], [{"original_text": "I swear these things multiply in the case", "album_id": "72157619898337387", "photo_flickr_id": "3641851527", "setting": "last-3-pick-old-and-tell", "worker_id": "SWZG7TSVZ5M7M9D", "story_id": "40887", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i swear these things multiply in the case", "storylet_id": "204436"}], [{"original_text": "Finally able to find my rhythm ", "album_id": "72157619898337387", "photo_flickr_id": "3642660342", "setting": "last-3-pick-old-and-tell", "worker_id": "SWZG7TSVZ5M7M9D", "story_id": "40887", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally able to find my rhythm", "storylet_id": "204437"}], [{"original_text": "Ok I think we are finally ready to rock", "album_id": "72157619898337387", "photo_flickr_id": "3642661514", "setting": "last-3-pick-old-and-tell", "worker_id": "SWZG7TSVZ5M7M9D", "story_id": "40887", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "ok i think we are finally ready to rock", "storylet_id": "204438"}], [{"original_text": "Honey are our seats in the pyramid, the igloo or the rubiks cube?", "album_id": "72157619898337387", "photo_flickr_id": "3642668848", "setting": "last-3-pick-old-and-tell", "worker_id": "SWZG7TSVZ5M7M9D", "story_id": "40887", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "honey are our seats in the pyramid , the igloo or the rubiks cube ?", "storylet_id": "204439"}], [{"original_text": "As we geared up for the first annual battle of the one man bands, it became clear our power supply was going to be stretched to the limit. ", "album_id": "72157619898337387", "photo_flickr_id": "3641852701", "setting": "last-3-pick-old-and-tell", "worker_id": "QPFM7XX9494Y1EH", "story_id": "40888", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as we geared up for the first annual battle of the one man bands , it became clear our power supply was going to be stretched to the limit .", "storylet_id": "204440"}], [{"original_text": "A wide variety of pianos began to be unfolded and set up on the floor. ", "album_id": "72157619898337387", "photo_flickr_id": "3641851527", "setting": "last-3-pick-old-and-tell", "worker_id": "QPFM7XX9494Y1EH", "story_id": "40888", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a wide variety of pianos began to be unfolded and set up on the floor .", "storylet_id": "204441"}], [{"original_text": "The first band, called Unitard rocked out and started playing all their big songs. ", "album_id": "72157619898337387", "photo_flickr_id": "3642660342", "setting": "last-3-pick-old-and-tell", "worker_id": "QPFM7XX9494Y1EH", "story_id": "40888", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first band , called unitard rocked out and started playing all their big songs .", "storylet_id": "204442"}], [{"original_text": "The next band that played was called Halfduo. This band was pretty poor compared to Unitard. ", "album_id": "72157619898337387", "photo_flickr_id": "3642661514", "setting": "last-3-pick-old-and-tell", "worker_id": "QPFM7XX9494Y1EH", "story_id": "40888", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next band that played was called halfduo . this band was pretty poor compared to unitard .", "storylet_id": "204443"}], [{"original_text": "All two people in attendance at a great time and enjoyed the show. ", "album_id": "72157619898337387", "photo_flickr_id": "3642668848", "setting": "last-3-pick-old-and-tell", "worker_id": "QPFM7XX9494Y1EH", "story_id": "40888", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all two people in attendance at a great time and enjoyed the show .", "storylet_id": "204444"}], [{"original_text": "All the chords setup to practice music.", "album_id": "72157619898337387", "photo_flickr_id": "3641852701", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40889", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all the chords setup to practice music .", "storylet_id": "204445"}], [{"original_text": "The keyboard setup that john likes to get wild on.", "album_id": "72157619898337387", "photo_flickr_id": "3641851527", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40889", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the keyboard setup that john likes to get wild on .", "storylet_id": "204446"}], [{"original_text": "Me playing the drums before everyone else got there", "album_id": "72157619898337387", "photo_flickr_id": "3642660342", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40889", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "me playing the drums before everyone else got there", "storylet_id": "204447"}], [{"original_text": "We use these contolls to make everything sound real funky", "album_id": "72157619898337387", "photo_flickr_id": "3641857371", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40889", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we use these contolls to make everything sound real funky", "storylet_id": "204448"}], [{"original_text": "What the studio looks like from the outside", "album_id": "72157619898337387", "photo_flickr_id": "3642668848", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "40889", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what the studio looks like from the outside", "storylet_id": "204449"}], [{"original_text": "The man took his dog to the park on a sunny day.", "album_id": "72157621420245574", "photo_flickr_id": "3718775635", "setting": "first-2-pick-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40890", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man took his dog to the park on a sunny day .", "storylet_id": "204450"}], [{"original_text": "The dog ran fast to retrieve the stick.", "album_id": "72157621420245574", "photo_flickr_id": "3719590166", "setting": "first-2-pick-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40890", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dog ran fast to retrieve the stick .", "storylet_id": "204451"}], [{"original_text": "The man decided to play fetch with his dog.", "album_id": "72157621420245574", "photo_flickr_id": "3718776367", "setting": "first-2-pick-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40890", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man decided to play fetch with his dog .", "storylet_id": "204452"}], [{"original_text": "The dog was tired by the time it found the stick.", "album_id": "72157621420245574", "photo_flickr_id": "3719590428", "setting": "first-2-pick-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40890", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dog was tired by the time it found the stick .", "storylet_id": "204453"}], [{"original_text": "A small brown rabbit stared at the dog.", "album_id": "72157621420245574", "photo_flickr_id": "3719590506", "setting": "first-2-pick-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "40890", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a small brown rabbit stared at the dog .", "storylet_id": "204454"}], [{"original_text": "I visited the public library with my dog today, on this beautiful sunny day.", "album_id": "72157621420245574", "photo_flickr_id": "3718775593", "setting": "first-2-pick-and-tell", "worker_id": "EW0P8I0EY9QBY97", "story_id": "40891", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i visited the public library with my dog today , on this beautiful sunny day .", "storylet_id": "204455"}], [{"original_text": "My Maltese puppy is so cute and follows me around without a leash.", "album_id": "72157621420245574", "photo_flickr_id": "3718775635", "setting": "first-2-pick-and-tell", "worker_id": "EW0P8I0EY9QBY97", "story_id": "40891", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my maltese puppy is so cute and follows me around without a leash .", "storylet_id": "204456"}], [{"original_text": "Here she is learning to fetch, with a stick that's as long as her!", "album_id": "72157621420245574", "photo_flickr_id": "3719590166", "setting": "first-2-pick-and-tell", "worker_id": "EW0P8I0EY9QBY97", "story_id": "40891", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here she is learning to fetch , with a stick that 's as long as her !", "storylet_id": "204457"}], [{"original_text": "This fetch game continued for the entire afternoon.", "album_id": "72157621420245574", "photo_flickr_id": "3718776367", "setting": "first-2-pick-and-tell", "worker_id": "EW0P8I0EY9QBY97", "story_id": "40891", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this fetch game continued for the entire afternoon .", "storylet_id": "204458"}], [{"original_text": "By evening, she was almost entirely pooped out, so we went back home.", "album_id": "72157621420245574", "photo_flickr_id": "3719590428", "setting": "first-2-pick-and-tell", "worker_id": "EW0P8I0EY9QBY97", "story_id": "40891", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by evening , she was almost entirely pooped out , so we went back home .", "storylet_id": "204459"}], [{"original_text": "The man took his puppy to the park so they could both get some much-needed exercise.", "album_id": "72157621420245574", "photo_flickr_id": "3718775635", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "40892", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man took his puppy to the park so they could both get some much-needed exercise .", "storylet_id": "204460"}], [{"original_text": "They played fetch, and they both had a lot of fun.", "album_id": "72157621420245574", "photo_flickr_id": "3719590166", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "40892", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they played fetch , and they both had a lot of fun .", "storylet_id": "204461"}], [{"original_text": "The man threw the toy very far, and the dog started to get tired.", "album_id": "72157621420245574", "photo_flickr_id": "3718776367", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "40892", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man threw the toy very far , and the dog started to get tired .", "storylet_id": "204462"}], [{"original_text": "So the puppy plopped down in the grass to rest for a while.", "album_id": "72157621420245574", "photo_flickr_id": "3719590428", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "40892", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so the puppy plopped down in the grass to rest for a while .", "storylet_id": "204463"}], [{"original_text": "Before they left, they noticed that an adorable bunny had joined their fun too.", "album_id": "72157621420245574", "photo_flickr_id": "3719590506", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "40892", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before they left , they noticed that an adorable bunny had joined their fun too .", "storylet_id": "204464"}], [{"original_text": "Once while I was n vacation in this nice brick hotel.", "album_id": "72157621420245574", "photo_flickr_id": "3718775593", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40893", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "once while i was n vacation in this nice brick hotel .", "storylet_id": "204465"}], [{"original_text": "I woke up and took my dog Trixie for a walk.", "album_id": "72157621420245574", "photo_flickr_id": "3718775635", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40893", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i woke up and took my dog trixie for a walk .", "storylet_id": "204466"}], [{"original_text": "Trixie ran around and enjoyed the fresh air.", "album_id": "72157621420245574", "photo_flickr_id": "3719590166", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40893", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "trixie ran around and enjoyed the fresh air .", "storylet_id": "204467"}], [{"original_text": "We had lots of fun playing fetch together.", "album_id": "72157621420245574", "photo_flickr_id": "3718776367", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40893", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had lots of fun playing fetch together .", "storylet_id": "204468"}], [{"original_text": "After a while she got tired and had to take a rest.", "album_id": "72157621420245574", "photo_flickr_id": "3719590428", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "40893", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a while she got tired and had to take a rest .", "storylet_id": "204469"}], [{"original_text": "I love visiting the park with my dog Scruffy. ", "album_id": "72157621420245574", "photo_flickr_id": "3718775593", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "40894", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love visiting the park with my dog scruffy .", "storylet_id": "204470"}], [{"original_text": "When we arrived Scruffy started running around immediately. ", "album_id": "72157621420245574", "photo_flickr_id": "3718775635", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "40894", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we arrived scruffy started running around immediately .", "storylet_id": "204471"}], [{"original_text": "Scruffy quickly found a stick and brought it to me.", "album_id": "72157621420245574", "photo_flickr_id": "3719590166", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "40894", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "scruffy quickly found a stick and brought it to me .", "storylet_id": "204472"}], [{"original_text": "I threw the stick as far as I could. ", "album_id": "72157621420245574", "photo_flickr_id": "3718776367", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "40894", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i threw the stick as far as i could .", "storylet_id": "204473"}], [{"original_text": "Scruffy brought it back and we relaxed for the rest of the day. ", "album_id": "72157621420245574", "photo_flickr_id": "3719590428", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "40894", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "scruffy brought it back and we relaxed for the rest of the day .", "storylet_id": "204474"}], [{"original_text": "It was a beautiful day at the fair.", "album_id": "72157621937352502", "photo_flickr_id": "3786233301", "setting": "first-2-pick-and-tell", "worker_id": "UCID401MD3MPFV3", "story_id": "40900", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful day at the fair .", "storylet_id": "204500"}], [{"original_text": "You could see a lot of busy people preparing the area.", "album_id": "72157621937352502", "photo_flickr_id": "3786197577", "setting": "first-2-pick-and-tell", "worker_id": "UCID401MD3MPFV3", "story_id": "40900", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you could see a lot of busy people preparing the area .", "storylet_id": "204501"}], [{"original_text": "Today there's a reenactment of a cowboy shot-out.", "album_id": "72157621937352502", "photo_flickr_id": "3786113285", "setting": "first-2-pick-and-tell", "worker_id": "UCID401MD3MPFV3", "story_id": "40900", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "today there 's a reenactment of a cowboy shot-out .", "storylet_id": "204502"}], [{"original_text": "Many shots where fired between the bandits and the cowboys. ", "album_id": "72157621937352502", "photo_flickr_id": "3786933954", "setting": "first-2-pick-and-tell", "worker_id": "UCID401MD3MPFV3", "story_id": "40900", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many shots where fired between the bandits and the cowboys .", "storylet_id": "204503"}], [{"original_text": "At last the bandit fell. ", "album_id": "72157621937352502", "photo_flickr_id": "3786916330", "setting": "first-2-pick-and-tell", "worker_id": "UCID401MD3MPFV3", "story_id": "40900", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at last the bandit fell .", "storylet_id": "204504"}], [{"original_text": "The community holds an annual car show, hosted by fellow car enthusiasts.", "album_id": "72157621937352502", "photo_flickr_id": "3786251435", "setting": "first-2-pick-and-tell", "worker_id": "0YRVNDXUO1LJ0E9", "story_id": "40901", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the community holds an annual car show , hosted by fellow car enthusiasts .", "storylet_id": "204505"}], [{"original_text": "All sorts of cars are on display and everyone enjoys walking around viewing them.", "album_id": "72157621937352502", "photo_flickr_id": "3786989368", "setting": "first-2-pick-and-tell", "worker_id": "0YRVNDXUO1LJ0E9", "story_id": "40901", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all sorts of cars are on display and everyone enjoys walking around viewing them .", "storylet_id": "204506"}], [{"original_text": "Some people even show the components and machinery off in their vehicles to represent their hobby.", "album_id": "72157621937352502", "photo_flickr_id": "3786193179", "setting": "first-2-pick-and-tell", "worker_id": "0YRVNDXUO1LJ0E9", "story_id": "40901", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people even show the components and machinery off in their vehicles to represent their hobby .", "storylet_id": "204507"}], [{"original_text": "They even have rides to keep the kids entertained so you can bring the whole family along!", "album_id": "72157621937352502", "photo_flickr_id": "3786233301", "setting": "first-2-pick-and-tell", "worker_id": "0YRVNDXUO1LJ0E9", "story_id": "40901", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even have rides to keep the kids entertained so you can bring the whole family along !", "storylet_id": "204508"}], [{"original_text": "At the end, everyone waits around for the finals, where the best cars line up and receive awards.", "album_id": "72157621937352502", "photo_flickr_id": "3786275645", "setting": "first-2-pick-and-tell", "worker_id": "0YRVNDXUO1LJ0E9", "story_id": "40901", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , everyone waits around for the finals , where the best cars line up and receive awards .", "storylet_id": "204509"}], [{"original_text": "Our family business carnival first day setting up in Spencer,MA. ", "album_id": "72157621937352502", "photo_flickr_id": "3786233301", "setting": "last-3-pick-old-and-tell", "worker_id": "7S04APLWA81A9E6", "story_id": "40902", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family business carnival first day setting up in location , location .", "storylet_id": "204510"}], [{"original_text": "Cousin Wayne fixing some of the tent poles. ", "album_id": "72157621937352502", "photo_flickr_id": "3786197577", "setting": "last-3-pick-old-and-tell", "worker_id": "7S04APLWA81A9E6", "story_id": "40902", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "cousin [male] fixing some of the tent poles .", "storylet_id": "204511"}], [{"original_text": "There's Wayne day two tent poles fixed. Tents are set up for us too sleep.", "album_id": "72157621937352502", "photo_flickr_id": "3786113285", "setting": "last-3-pick-old-and-tell", "worker_id": "7S04APLWA81A9E6", "story_id": "40902", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there 's [male] day two tent poles fixed . tents are set up for us too sleep .", "storylet_id": "204512"}], [{"original_text": "The guys playing a music note or two.", "album_id": "72157621937352502", "photo_flickr_id": "3786933954", "setting": "last-3-pick-old-and-tell", "worker_id": "7S04APLWA81A9E6", "story_id": "40902", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guys playing a music note or two .", "storylet_id": "204513"}], [{"original_text": "The time to pack up and go to the next town. Last day, the young lads passed out after a long day of work.", "album_id": "72157621937352502", "photo_flickr_id": "3786916330", "setting": "last-3-pick-old-and-tell", "worker_id": "7S04APLWA81A9E6", "story_id": "40902", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the time to pack up and go to the next town . last day , the young lads passed out after a long day of work .", "storylet_id": "204514"}], [{"original_text": "We went to a carnival and battle reenactment.", "album_id": "72157621937352502", "photo_flickr_id": "3786233301", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40903", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a carnival and battle reenactment .", "storylet_id": "204515"}], [{"original_text": "The reenactment was still being set up when we arrived.", "album_id": "72157621937352502", "photo_flickr_id": "3786197577", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40903", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the reenactment was still being set up when we arrived .", "storylet_id": "204516"}], [{"original_text": "We were able to take photos of the actors.", "album_id": "72157621937352502", "photo_flickr_id": "3786113285", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40903", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were able to take photos of the actors .", "storylet_id": "204517"}], [{"original_text": "We watched the actors fire their weapons at each other.", "album_id": "72157621937352502", "photo_flickr_id": "3786933954", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40903", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we watched the actors fire their weapons at each other .", "storylet_id": "204518"}], [{"original_text": "This actor did a very convincing dead man.", "album_id": "72157621937352502", "photo_flickr_id": "3786916330", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40903", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this actor did a very convincing dead man .", "storylet_id": "204519"}], [{"original_text": "At the fair ready to have a good time.", "album_id": "72157621937352502", "photo_flickr_id": "3786233301", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40904", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the fair ready to have a good time .", "storylet_id": "204520"}], [{"original_text": "Worker is preparing the tents. ", "album_id": "72157621937352502", "photo_flickr_id": "3786197577", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40904", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "worker is preparing the tents .", "storylet_id": "204521"}], [{"original_text": "Actor seating down in front of tent putting on a show. ", "album_id": "72157621937352502", "photo_flickr_id": "3786113285", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40904", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "actor seating down in front of tent putting on a show .", "storylet_id": "204522"}], [{"original_text": "About to shoot, ready to shoot. ", "album_id": "72157621937352502", "photo_flickr_id": "3786933954", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40904", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "about to shoot , ready to shoot .", "storylet_id": "204523"}], [{"original_text": "He has been killed, actor is playing dead. ", "album_id": "72157621937352502", "photo_flickr_id": "3786916330", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40904", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he has been killed , actor is playing dead .", "storylet_id": "204524"}], [{"original_text": "My first tip to a ballpark was on opening day.", "album_id": "72157622163497425", "photo_flickr_id": "3897152606", "setting": "first-2-pick-and-tell", "worker_id": "SR7HLDQGG7B8XDS", "story_id": "40905", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my first tip to a ballpark was on opening day .", "storylet_id": "204525"}], [{"original_text": "There were many people in line to get in.", "album_id": "72157622163497425", "photo_flickr_id": "3897151258", "setting": "first-2-pick-and-tell", "worker_id": "SR7HLDQGG7B8XDS", "story_id": "40905", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many people in line to get in .", "storylet_id": "204526"}], [{"original_text": "The stands were packed all around the stadium.", "album_id": "72157622163497425", "photo_flickr_id": "3897155234", "setting": "first-2-pick-and-tell", "worker_id": "SR7HLDQGG7B8XDS", "story_id": "40905", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the stands were packed all around the stadium .", "storylet_id": "204527"}], [{"original_text": "I even got to enjoy some ice cream.", "album_id": "72157622163497425", "photo_flickr_id": "3897160212", "setting": "first-2-pick-and-tell", "worker_id": "SR7HLDQGG7B8XDS", "story_id": "40905", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i even got to enjoy some ice cream .", "storylet_id": "204528"}], [{"original_text": "This was the best first date I have ever had!", "album_id": "72157622163497425", "photo_flickr_id": "3896383395", "setting": "first-2-pick-and-tell", "worker_id": "SR7HLDQGG7B8XDS", "story_id": "40905", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the best first date i have ever had !", "storylet_id": "204529"}], [{"original_text": "It was opening day and the crowd was lining up to cheer their team on", "album_id": "72157622163497425", "photo_flickr_id": "3897151258", "setting": "first-2-pick-and-tell", "worker_id": "LKA3MHLOY07JNRK", "story_id": "40906", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was opening day and the crowd was lining up to cheer their team on", "storylet_id": "204530"}], [{"original_text": "The new stadium was a great undertaking but it came out looking really good", "album_id": "72157622163497425", "photo_flickr_id": "3897152606", "setting": "first-2-pick-and-tell", "worker_id": "LKA3MHLOY07JNRK", "story_id": "40906", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the new stadium was a great undertaking but it came out looking really good", "storylet_id": "204531"}], [{"original_text": "It was a sold out ball game for the opening day and the weather was beautiful", "album_id": "72157622163497425", "photo_flickr_id": "3896376995", "setting": "first-2-pick-and-tell", "worker_id": "LKA3MHLOY07JNRK", "story_id": "40906", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a sold out ball game for the opening day and the weather was beautiful", "storylet_id": "204532"}], [{"original_text": "The crowd roared as the first pitch was thrown", "album_id": "72157622163497425", "photo_flickr_id": "3896381541", "setting": "first-2-pick-and-tell", "worker_id": "LKA3MHLOY07JNRK", "story_id": "40906", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowd roared as the first pitch was thrown", "storylet_id": "204533"}], [{"original_text": "After the ball game the crowd quickly dispersed to their local watering holes", "album_id": "72157622163497425", "photo_flickr_id": "3897165568", "setting": "first-2-pick-and-tell", "worker_id": "LKA3MHLOY07JNRK", "story_id": "40906", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the ball game the crowd quickly dispersed to their local watering holes", "storylet_id": "204534"}], [{"original_text": "We went to the new AT&T park across the street!", "album_id": "72157622163497425", "photo_flickr_id": "3897152606", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40907", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the new at & t park across the street !", "storylet_id": "204535"}], [{"original_text": "Everyone in line was picketing, because there wasn't any cell service.", "album_id": "72157622163497425", "photo_flickr_id": "3897151258", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40907", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone in line was picketing , because there was n't any cell service .", "storylet_id": "204536"}], [{"original_text": "We decided to go to a baseball game instead.", "album_id": "72157622163497425", "photo_flickr_id": "3897155234", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40907", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we decided to go to a baseball game instead .", "storylet_id": "204537"}], [{"original_text": "The baseball game hadn't started yet, so we got some smoothies and ice cream!", "album_id": "72157622163497425", "photo_flickr_id": "3897160212", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40907", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the baseball game had n't started yet , so we got some smoothies and ice cream !", "storylet_id": "204538"}], [{"original_text": "We had a blast at the ballpark! There still isn't any cell service though.", "album_id": "72157622163497425", "photo_flickr_id": "3896383395", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40907", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a blast at the ballpark ! there still is n't any cell service though .", "storylet_id": "204539"}], [{"original_text": "It's a beautiful day at the AT&T park.", "album_id": "72157622163497425", "photo_flickr_id": "3897152606", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40908", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a beautiful day at the at & t park .", "storylet_id": "204540"}], [{"original_text": "Many people gather outside.", "album_id": "72157622163497425", "photo_flickr_id": "3897151258", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40908", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people gather outside .", "storylet_id": "204541"}], [{"original_text": "The stadium is also full.", "album_id": "72157622163497425", "photo_flickr_id": "3897155234", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40908", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the stadium is also full .", "storylet_id": "204542"}], [{"original_text": "It's hot so many indulge in ice cream.", "album_id": "72157622163497425", "photo_flickr_id": "3897160212", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40908", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's hot so many indulge in ice cream .", "storylet_id": "204543"}], [{"original_text": "This couple is having a great day so they take a selfie.", "album_id": "72157622163497425", "photo_flickr_id": "3896383395", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40908", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this couple is having a great day so they take a selfie .", "storylet_id": "204544"}], [{"original_text": "We got to the stadium with tickets in hand; we were excited.", "album_id": "72157622163497425", "photo_flickr_id": "3897152606", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40909", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got to the stadium with tickets in hand ; we were excited .", "storylet_id": "204545"}], [{"original_text": "There was quite a crowd outside that we had to get through.", "album_id": "72157622163497425", "photo_flickr_id": "3897151258", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40909", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was quite a crowd outside that we had to get through .", "storylet_id": "204546"}], [{"original_text": "Our seats were high up.. but at least we had a good view of the stadium.", "album_id": "72157622163497425", "photo_flickr_id": "3897155234", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40909", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our seats were high up.. but at least we had a good view of the stadium .", "storylet_id": "204547"}], [{"original_text": "The girls all got this great ice cream sundae they had there.", "album_id": "72157622163497425", "photo_flickr_id": "3897160212", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40909", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the girls all got this great ice cream sundae they had there .", "storylet_id": "204548"}], [{"original_text": "And me and my girl had an amazing time watching the game even if they lost.", "album_id": "72157622163497425", "photo_flickr_id": "3896383395", "setting": "last-3-pick-old-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "40909", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and me and my girl had an amazing time watching the game even if they lost .", "storylet_id": "204549"}], [{"original_text": "This is the bike path I rode down to get to my campsite.", "album_id": "72157622498721594", "photo_flickr_id": "3973876646", "setting": "first-2-pick-and-tell", "worker_id": "KIEMT85RKS4IZNR", "story_id": "40910", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the bike path i rode down to get to my campsite .", "storylet_id": "204550"}], [{"original_text": "I arrived at my site and just took a moment to enjoy the quiet.", "album_id": "72157622498721594", "photo_flickr_id": "3973876318", "setting": "first-2-pick-and-tell", "worker_id": "KIEMT85RKS4IZNR", "story_id": "40910", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i arrived at my site and just took a moment to enjoy the quiet .", "storylet_id": "204551"}], [{"original_text": "Tent set up, making myself at home.", "album_id": "72157622498721594", "photo_flickr_id": "3973109129", "setting": "first-2-pick-and-tell", "worker_id": "KIEMT85RKS4IZNR", "story_id": "40910", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "tent set up , making myself at home .", "storylet_id": "204552"}], [{"original_text": "It is time for an early dinner.", "album_id": "72157622498721594", "photo_flickr_id": "3973875988", "setting": "first-2-pick-and-tell", "worker_id": "KIEMT85RKS4IZNR", "story_id": "40910", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is time for an early dinner .", "storylet_id": "204553"}], [{"original_text": "Thought I would share some of my dinner with the ducks. ", "album_id": "72157622498721594", "photo_flickr_id": "3973108465", "setting": "first-2-pick-and-tell", "worker_id": "KIEMT85RKS4IZNR", "story_id": "40910", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thought i would share some of my dinner with the ducks. & # 13 ;", "storylet_id": "204554"}], [{"original_text": "This morning my sister and I decided to go on a bike trip to our favorite campground, on the way we rode past a flock of geese.", "album_id": "72157622498721594", "photo_flickr_id": "3973108465", "setting": "first-2-pick-and-tell", "worker_id": "MWT8DH7A4OK6IYT", "story_id": "40911", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this morning my sister and i decided to go on a bike trip to our favorite campground , on the way we rode past a flock of geese .", "storylet_id": "204555"}], [{"original_text": "We rode past this town on our way and stopped to take a picture of it.", "album_id": "72157622498721594", "photo_flickr_id": "3973108833", "setting": "first-2-pick-and-tell", "worker_id": "MWT8DH7A4OK6IYT", "story_id": "40911", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we rode past this town on our way and stopped to take a picture of it .", "storylet_id": "204556"}], [{"original_text": "We stopped at a pick nick table at the campground and decided to have lunch.", "album_id": "72157622498721594", "photo_flickr_id": "3973876318", "setting": "first-2-pick-and-tell", "worker_id": "MWT8DH7A4OK6IYT", "story_id": "40911", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stopped at a pick nick table at the campground and decided to have lunch .", "storylet_id": "204557"}], [{"original_text": "We ate macaroni and cheese and a baguette we'd packed before we'd left this morning.", "album_id": "72157622498721594", "photo_flickr_id": "3973875988", "setting": "first-2-pick-and-tell", "worker_id": "MWT8DH7A4OK6IYT", "story_id": "40911", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we ate macaroni and cheese and a baguette we 'd packed before we 'd left this morning .", "storylet_id": "204558"}], [{"original_text": "After lunch we set up our tent and then went for a short hike.", "album_id": "72157622498721594", "photo_flickr_id": "3973109129", "setting": "first-2-pick-and-tell", "worker_id": "MWT8DH7A4OK6IYT", "story_id": "40911", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after lunch we set up our tent and then went for a short hike .", "storylet_id": "204559"}], [{"original_text": "The boys took a trip in the woods.", "album_id": "72157622498721594", "photo_flickr_id": "3973876646", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40912", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boys took a trip in the woods .", "storylet_id": "204560"}], [{"original_text": "They rode their bikes to a camp ground.", "album_id": "72157622498721594", "photo_flickr_id": "3973876318", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40912", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they rode their bikes to a camp ground .", "storylet_id": "204561"}], [{"original_text": "At the camp ground they pitched their tent.", "album_id": "72157622498721594", "photo_flickr_id": "3973109129", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40912", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the camp ground they pitched their tent .", "storylet_id": "204562"}], [{"original_text": "They had macaroni and cheese and bread for dinner.", "album_id": "72157622498721594", "photo_flickr_id": "3973875988", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40912", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had macaroni and cheese and bread for dinner .", "storylet_id": "204563"}], [{"original_text": "Before bed they watched the geese at the pond.", "album_id": "72157622498721594", "photo_flickr_id": "3973108465", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40912", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before bed they watched the geese at the pond .", "storylet_id": "204564"}], [{"original_text": "Today, we went on a bike and camping trip.", "album_id": "72157622498721594", "photo_flickr_id": "3973876646", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "40913", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , we went on a bike and camping trip .", "storylet_id": "204565"}], [{"original_text": "We found a remote part of the park.", "album_id": "72157622498721594", "photo_flickr_id": "3973876318", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "40913", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we found a remote part of the park .", "storylet_id": "204566"}], [{"original_text": "So, we set up our tents for the day.", "album_id": "72157622498721594", "photo_flickr_id": "3973109129", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "40913", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so , we set up our tents for the day .", "storylet_id": "204567"}], [{"original_text": "Of course, we got only the best gourmet camp food.", "album_id": "72157622498721594", "photo_flickr_id": "3973875988", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "40913", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course , we got only the best gourmet camp food .", "storylet_id": "204568"}], [{"original_text": "We walked for a little around our camp ground and found some animals, too.", "album_id": "72157622498721594", "photo_flickr_id": "3973108465", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "40913", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we walked for a little around our camp ground and found some animals , too .", "storylet_id": "204569"}], [{"original_text": "The man took a solo camping trip.", "album_id": "72157622498721594", "photo_flickr_id": "3973876646", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40914", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man took a solo camping trip .", "storylet_id": "204570"}], [{"original_text": "He found a nice area where he parked his bike and unpacked.", "album_id": "72157622498721594", "photo_flickr_id": "3973876318", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40914", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he found a nice area where he parked his bike and unpacked .", "storylet_id": "204571"}], [{"original_text": "The man setup his tent for the night.", "album_id": "72157622498721594", "photo_flickr_id": "3973109129", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40914", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man setup his tent for the night .", "storylet_id": "204572"}], [{"original_text": "He also made himself a meal with some bread.", "album_id": "72157622498721594", "photo_flickr_id": "3973875988", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40914", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he also made himself a meal with some bread .", "storylet_id": "204573"}], [{"original_text": "He shared his leftover bread with the birds.", "album_id": "72157622498721594", "photo_flickr_id": "3973108465", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40914", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he shared his leftover bread with the birds .", "storylet_id": "204574"}], [{"original_text": "Orale, holmes, I look like I just out of San Quentin.", "album_id": "72157622911625354", "photo_flickr_id": "4149081835", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40915", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "orale , holmes , i look like i just out of location location .", "storylet_id": "204575"}], [{"original_text": "But I can afford to travel to awesome places!", "album_id": "72157622911625354", "photo_flickr_id": "4149081915", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40915", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but i can afford to travel to awesome places !", "storylet_id": "204576"}], [{"original_text": "What a beautiful road to travel.", "album_id": "72157622911625354", "photo_flickr_id": "4149841234", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40915", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what a beautiful road to travel .", "storylet_id": "204577"}], [{"original_text": "Almost nobody else here.", "album_id": "72157622911625354", "photo_flickr_id": "4149082403", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40915", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "almost nobody else here .", "storylet_id": "204578"}], [{"original_text": "We've gout our own private paradise.", "album_id": "72157622911625354", "photo_flickr_id": "4149841998", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40915", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we 've gout our own private paradise .", "storylet_id": "204579"}], [{"original_text": "Our wedding was amazing and we could not wait to start our lives together. ", "album_id": "72157622911625354", "photo_flickr_id": "4149740192", "setting": "first-2-pick-and-tell", "worker_id": "Y01576O2WX1C4XM", "story_id": "40916", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our wedding was amazing and we could not wait to start our lives together .", "storylet_id": "204580"}], [{"original_text": "Our honeymoon was full of lots of historical temples and sights. ", "album_id": "72157622911625354", "photo_flickr_id": "4149841130", "setting": "first-2-pick-and-tell", "worker_id": "Y01576O2WX1C4XM", "story_id": "40916", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our honeymoon was full of lots of historical temples and sights .", "storylet_id": "204581"}], [{"original_text": "Every night we would take a walk along the beach before dinner. ", "album_id": "72157622911625354", "photo_flickr_id": "4149082311", "setting": "first-2-pick-and-tell", "worker_id": "Y01576O2WX1C4XM", "story_id": "40916", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "every night we would take a walk along the beach before dinner .", "storylet_id": "204582"}], [{"original_text": "Getting ready for our dinner out on the beach. ", "album_id": "72157622911625354", "photo_flickr_id": "4149841750", "setting": "first-2-pick-and-tell", "worker_id": "Y01576O2WX1C4XM", "story_id": "40916", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "getting ready for our dinner out on the beach .", "storylet_id": "204583"}], [{"original_text": "We spent a lot of time relaxing on the beach and swimming in the beautiful blue water. ", "album_id": "72157622911625354", "photo_flickr_id": "4149841998", "setting": "first-2-pick-and-tell", "worker_id": "Y01576O2WX1C4XM", "story_id": "40916", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we spent a lot of time relaxing on the beach and swimming in the beautiful blue water .", "storylet_id": "204584"}], [{"original_text": "We went to Hawaii for my cousin's wedding. Doesn't she look beautiful? ", "album_id": "72157622911625354", "photo_flickr_id": "4149740192", "setting": "last-3-pick-old-and-tell", "worker_id": "GEWG1D0L4ZAFAT9", "story_id": "40917", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to location for my cousin 's wedding . does n't she look beautiful ?", "storylet_id": "204585"}], [{"original_text": "We had time to see the sights while we were there. I thought this statue was interesting!", "album_id": "72157622911625354", "photo_flickr_id": "4149841130", "setting": "last-3-pick-old-and-tell", "worker_id": "GEWG1D0L4ZAFAT9", "story_id": "40917", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had time to see the sights while we were there . i thought this statue was interesting !", "storylet_id": "204586"}], [{"original_text": "The views of the ocean were amazing!", "album_id": "72157622911625354", "photo_flickr_id": "4149082311", "setting": "last-3-pick-old-and-tell", "worker_id": "GEWG1D0L4ZAFAT9", "story_id": "40917", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the views of the ocean were amazing !", "storylet_id": "204587"}], [{"original_text": "After a day at the beach, my dad insisted on taking this picture with me! ", "album_id": "72157622911625354", "photo_flickr_id": "4149841750", "setting": "last-3-pick-old-and-tell", "worker_id": "GEWG1D0L4ZAFAT9", "story_id": "40917", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a day at the beach , my dad insisted on taking this picture with me !", "storylet_id": "204588"}], [{"original_text": "And then we watched people out in the ocean from our hotel balcony.", "album_id": "72157622911625354", "photo_flickr_id": "4149841998", "setting": "last-3-pick-old-and-tell", "worker_id": "GEWG1D0L4ZAFAT9", "story_id": "40917", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then we watched people out in the ocean from our hotel balcony .", "storylet_id": "204589"}], [{"original_text": "Here we are on the first day of our trip to the beach.", "album_id": "72157622911625354", "photo_flickr_id": "4149081835", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "40918", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are on the first day of our trip to the beach .", "storylet_id": "204590"}], [{"original_text": "We were so excited that we both had to take pictures.", "album_id": "72157622911625354", "photo_flickr_id": "4149081915", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "40918", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were so excited that we both had to take pictures .", "storylet_id": "204591"}], [{"original_text": "We took a short break from the beach, but we got lost.", "album_id": "72157622911625354", "photo_flickr_id": "4149841234", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "40918", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took a short break from the beach , but we got lost .", "storylet_id": "204592"}], [{"original_text": "However, we found more beach and it was more peaceful.", "album_id": "72157622911625354", "photo_flickr_id": "4149082403", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "40918", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "however , we found more beach and it was more peaceful .", "storylet_id": "204593"}], [{"original_text": "We finally got in the water after a while.", "album_id": "72157622911625354", "photo_flickr_id": "4149841998", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "40918", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finally got in the water after a while .", "storylet_id": "204594"}], [{"original_text": "A great photo of this young couple just married", "album_id": "72157622911625354", "photo_flickr_id": "4149740192", "setting": "last-3-pick-old-and-tell", "worker_id": "1RU6Y2V453O905C", "story_id": "40919", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a great photo of this young couple just married", "storylet_id": "204595"}], [{"original_text": "That statue is known as the best clown ever statue", "album_id": "72157622911625354", "photo_flickr_id": "4149841130", "setting": "last-3-pick-old-and-tell", "worker_id": "1RU6Y2V453O905C", "story_id": "40919", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that statue is known as the best clown ever statue", "storylet_id": "204596"}], [{"original_text": "Fiji Island in the morning, right before breakfast", "album_id": "72157622911625354", "photo_flickr_id": "4149082311", "setting": "last-3-pick-old-and-tell", "worker_id": "1RU6Y2V453O905C", "story_id": "40919", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "location location in the morning , right before breakfast", "storylet_id": "204597"}], [{"original_text": "Robert takes a picture with a local girl. He is loving his vacation.", "album_id": "72157622911625354", "photo_flickr_id": "4149841750", "setting": "last-3-pick-old-and-tell", "worker_id": "1RU6Y2V453O905C", "story_id": "40919", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] takes a picture with a local girl . he is loving his vacation .", "storylet_id": "204598"}], [{"original_text": "You can see early morning the locals taking a swim in the warm water", "album_id": "72157622911625354", "photo_flickr_id": "4149841998", "setting": "last-3-pick-old-and-tell", "worker_id": "1RU6Y2V453O905C", "story_id": "40919", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you can see early morning the locals taking a swim in the warm water", "storylet_id": "204599"}], [{"original_text": "During the restoration project, the first thing that had to be replaced was the engine.", "album_id": "72157623082288698", "photo_flickr_id": "4219644907", "setting": "first-2-pick-and-tell", "worker_id": "0YRVNDXUO1LJ0E9", "story_id": "40920", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during the restoration project , the first thing that had to be replaced was the engine .", "storylet_id": "204600"}], [{"original_text": "After that, new control panels were added as well as a new dash board.", "album_id": "72157623082288698", "photo_flickr_id": "4220399408", "setting": "first-2-pick-and-tell", "worker_id": "0YRVNDXUO1LJ0E9", "story_id": "40920", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after that , new control panels were added as well as a new dash board .", "storylet_id": "204601"}], [{"original_text": "Custom racing seats were ordered and when they arrived, the fit nicely.", "album_id": "72157623082288698", "photo_flickr_id": "4220404132", "setting": "first-2-pick-and-tell", "worker_id": "0YRVNDXUO1LJ0E9", "story_id": "40920", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "custom racing seats were ordered and when they arrived , the fit nicely .", "storylet_id": "204602"}], [{"original_text": "Finally, the new tires and rims were put on.", "album_id": "72157623082288698", "photo_flickr_id": "4219644053", "setting": "first-2-pick-and-tell", "worker_id": "0YRVNDXUO1LJ0E9", "story_id": "40920", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally , the new tires and rims were put on .", "storylet_id": "204603"}], [{"original_text": "After all that hard work, the project was complete and the car was fully restored.", "album_id": "72157623082288698", "photo_flickr_id": "4219642351", "setting": "first-2-pick-and-tell", "worker_id": "0YRVNDXUO1LJ0E9", "story_id": "40920", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after all that hard work , the project was complete and the car was fully restored .", "storylet_id": "204604"}], [{"original_text": "The deadline for the automobile competition was nearing.", "album_id": "72157623082288698", "photo_flickr_id": "4220398684", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40921", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the deadline for the automobile competition was nearing .", "storylet_id": "204605"}], [{"original_text": "Our team was getting nervous because we had nothing but the basic framework completed.", "album_id": "72157623082288698", "photo_flickr_id": "4220402618", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40921", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our team was getting nervous because we had nothing but the basic framework completed .", "storylet_id": "204606"}], [{"original_text": "We then added seats and", "album_id": "72157623082288698", "photo_flickr_id": "4220404132", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40921", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we then added seats and", "storylet_id": "204607"}], [{"original_text": "tested the traction of different tires.", "album_id": "72157623082288698", "photo_flickr_id": "4219642351", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40921", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "tested the traction of different tires .", "storylet_id": "204608"}], [{"original_text": "Afterward we worked on the engine before calling it a day.", "album_id": "72157623082288698", "photo_flickr_id": "4219644907", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40921", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we worked on the engine before calling it a day .", "storylet_id": "204609"}], [{"original_text": "My current project is this old dune buggy.", "album_id": "72157623082288698", "photo_flickr_id": "4220398684", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "40922", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my current project is this old dune buggy .", "storylet_id": "204610"}], [{"original_text": "I work on it in the garage on my spare time.", "album_id": "72157623082288698", "photo_flickr_id": "4220402618", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "40922", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i work on it in the garage on my spare time .", "storylet_id": "204611"}], [{"original_text": "I'm already put in new seats and flooring.", "album_id": "72157623082288698", "photo_flickr_id": "4220404132", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "40922", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i 'm already put in new seats and flooring .", "storylet_id": "204612"}], [{"original_text": "The orange suspension system is new, too.", "album_id": "72157623082288698", "photo_flickr_id": "4219642351", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "40922", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the orange suspension system is new , too .", "storylet_id": "204613"}], [{"original_text": "The next thing I'm working on is the engine.", "album_id": "72157623082288698", "photo_flickr_id": "4219644907", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "40922", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the next thing i 'm working on is the engine .", "storylet_id": "204614"}], [{"original_text": "I wanted to build a dune buggy with this engine I had laying around.", "album_id": "72157623082288698", "photo_flickr_id": "4219644907", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "40923", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i wanted to build a dune buggy with this engine i had laying around .", "storylet_id": "204615"}], [{"original_text": "I assembled the speedometer and other gauges for the dash area.", "album_id": "72157623082288698", "photo_flickr_id": "4220399408", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "40923", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i assembled the speedometer and other gauges for the dash area .", "storylet_id": "204616"}], [{"original_text": "Some comfortable seating was added.", "album_id": "72157623082288698", "photo_flickr_id": "4220404132", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "40923", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some comfortable seating was added .", "storylet_id": "204617"}], [{"original_text": "Now I just need to add these tires to it.", "album_id": "72157623082288698", "photo_flickr_id": "4219644053", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "40923", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now i just need to add these tires to it .", "storylet_id": "204618"}], [{"original_text": "Viola! Now I can go have some fun!", "album_id": "72157623082288698", "photo_flickr_id": "4219642351", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "40923", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] ! now i can go have some fun !", "storylet_id": "204619"}], [{"original_text": "Included in this buggy is this newly rebuilt motor. This will rev up your fun while off roading.", "album_id": "72157623082288698", "photo_flickr_id": "4219644907", "setting": "last-3-pick-old-and-tell", "worker_id": "STQDLUCO6IDHQOY", "story_id": "40924", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "included in this buggy is this newly rebuilt motor . this will rev up your fun while off roading .", "storylet_id": "204620"}], [{"original_text": "Stamped aluminum surrounds the gauges giving it a nice finished look.", "album_id": "72157623082288698", "photo_flickr_id": "4220399408", "setting": "last-3-pick-old-and-tell", "worker_id": "STQDLUCO6IDHQOY", "story_id": "40924", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "stamped aluminum surrounds the gauges giving it a nice finished look .", "storylet_id": "204621"}], [{"original_text": "The buggy seats two, with form-fitting seat, and a four-point rollbar.", "album_id": "72157623082288698", "photo_flickr_id": "4220404132", "setting": "last-3-pick-old-and-tell", "worker_id": "STQDLUCO6IDHQOY", "story_id": "40924", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the buggy seats two , with form-fitting seat , and a four-point rollbar .", "storylet_id": "204622"}], [{"original_text": "Two extra wheels and tires will allow for quick repairs while out in the field.", "album_id": "72157623082288698", "photo_flickr_id": "4219644053", "setting": "last-3-pick-old-and-tell", "worker_id": "STQDLUCO6IDHQOY", "story_id": "40924", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two extra wheels and tires will allow for quick repairs while out in the field .", "storylet_id": "204623"}], [{"original_text": "As buggies go, this one is awesome. It even includes headlights for nighttime fun.", "album_id": "72157623082288698", "photo_flickr_id": "4219642351", "setting": "last-3-pick-old-and-tell", "worker_id": "STQDLUCO6IDHQOY", "story_id": "40924", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as buggies go , this one is awesome . it even includes headlights for nighttime fun .", "storylet_id": "204624"}], [{"original_text": "The brothers loved skating.", "album_id": "72157623186393217", "photo_flickr_id": "4315384260", "setting": "first-2-pick-and-tell", "worker_id": "KYLDKF7FDWYV4KB", "story_id": "40925", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the brothers loved skating .", "storylet_id": "204625"}], [{"original_text": "They'd skate for hours every day.", "album_id": "72157623186393217", "photo_flickr_id": "4314646439", "setting": "first-2-pick-and-tell", "worker_id": "KYLDKF7FDWYV4KB", "story_id": "40925", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they 'd skate for hours every day .", "storylet_id": "204626"}], [{"original_text": "One day, their friend told them he had tickets to go see their favorite professional skater: Chuck.", "album_id": "72157623186393217", "photo_flickr_id": "4315383316", "setting": "first-2-pick-and-tell", "worker_id": "KYLDKF7FDWYV4KB", "story_id": "40925", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one day , their friend told them he had tickets to go see their favorite professional skater : [male] .", "storylet_id": "204627"}], [{"original_text": "The boys went to the skating show and had a great time.", "album_id": "72157623186393217", "photo_flickr_id": "4314647527", "setting": "first-2-pick-and-tell", "worker_id": "KYLDKF7FDWYV4KB", "story_id": "40925", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boys went to the skating show and had a great time .", "storylet_id": "204628"}], [{"original_text": "The best part was the photo they got with Chuck.", "album_id": "72157623186393217", "photo_flickr_id": "4315382338", "setting": "first-2-pick-and-tell", "worker_id": "KYLDKF7FDWYV4KB", "story_id": "40925", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part was the photo they got with [male] .", "storylet_id": "204629"}], [{"original_text": "The convict visits with neighborhood children, to share exciting stories about prison.", "album_id": "72157623186393217", "photo_flickr_id": "4315382338", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "40926", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the convict visits with neighborhood children , to share exciting stories about prison .", "storylet_id": "204630"}], [{"original_text": "He demonstrates how to tear down a scooter to use it as a make-shift weapon.", "album_id": "72157623186393217", "photo_flickr_id": "4315382778", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "40926", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he demonstrates how to tear down a scooter to use it as a make-shift weapon .", "storylet_id": "204631"}], [{"original_text": "The man takes a break from the festivities to pose with a client.", "album_id": "72157623186393217", "photo_flickr_id": "4314646825", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "40926", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man takes a break from the festivities to pose with a client .", "storylet_id": "204632"}], [{"original_text": "He tells the children it's okay to make fun of other cultures, if they're all dead and can't complain.", "album_id": "72157623186393217", "photo_flickr_id": "4315383458", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "40926", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he tells the children it 's okay to make fun of other cultures , if they 're all dead and ca n't complain .", "storylet_id": "204633"}], [{"original_text": "The children show off their cool tats, letting the man know they've been listening, and are ready to embark on a life of mayhem and madness.", "album_id": "72157623186393217", "photo_flickr_id": "4315384260", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "40926", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the children show off their cool tats , letting the man know they 've been listening , and are ready to embark on a life of mayhem and madness .", "storylet_id": "204634"}], [{"original_text": "The two brothers decided to go out today.", "album_id": "72157623186393217", "photo_flickr_id": "4315384260", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40927", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the two brothers decided to go out today .", "storylet_id": "204635"}], [{"original_text": "The went to a skateboard gym.", "album_id": "72157623186393217", "photo_flickr_id": "4314646439", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40927", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the went to a skateboard gym .", "storylet_id": "204636"}], [{"original_text": "They even got to meet some of the skateboarders in person.", "album_id": "72157623186393217", "photo_flickr_id": "4315383316", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40927", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even got to meet some of the skateboarders in person .", "storylet_id": "204637"}], [{"original_text": "The skateboarders had a Rally to raise funds for the track.", "album_id": "72157623186393217", "photo_flickr_id": "4314647527", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40927", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the skateboarders had a rally to raise funds for the track .", "storylet_id": "204638"}], [{"original_text": "The boys had a lot of fun meeting everyone.", "album_id": "72157623186393217", "photo_flickr_id": "4315382338", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "40927", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boys had a lot of fun meeting everyone .", "storylet_id": "204639"}], [{"original_text": "Picture of two boys doing a cool handshake and showing of tattoos. ", "album_id": "72157623186393217", "photo_flickr_id": "4315384260", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40928", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "picture of two boys doing a cool handshake and showing of tattoos .", "storylet_id": "204640"}], [{"original_text": "Skating and doing tricks. ", "album_id": "72157623186393217", "photo_flickr_id": "4314646439", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40928", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "skating and doing tricks .", "storylet_id": "204641"}], [{"original_text": "Picture of best friend having fun. ", "album_id": "72157623186393217", "photo_flickr_id": "4315383316", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40928", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "picture of best friend having fun .", "storylet_id": "204642"}], [{"original_text": "the kids are seating down and listening to instructions. ", "album_id": "72157623186393217", "photo_flickr_id": "4314647527", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40928", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids are seating down and listening to instructions .", "storylet_id": "204643"}], [{"original_text": "Kid taking a picture with older brother and showing of his arm. ", "album_id": "72157623186393217", "photo_flickr_id": "4315382338", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40928", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "kid taking a picture with older brother and showing of his arm .", "storylet_id": "204644"}], [{"original_text": "Getting together with my friends at the skate park was awesome. Me and my best friend got tattoos.", "album_id": "72157623186393217", "photo_flickr_id": "4315384260", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "40929", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting together with my friends at the skate park was awesome . me and my best friend got tattoos .", "storylet_id": "204645"}], [{"original_text": "We watched our friend do awesome skate tricks to impress everyone there.", "album_id": "72157623186393217", "photo_flickr_id": "4314646439", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "40929", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we watched our friend do awesome skate tricks to impress everyone there .", "storylet_id": "204646"}], [{"original_text": "All of my closest friends showed up for the good time.", "album_id": "72157623186393217", "photo_flickr_id": "4315383316", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "40929", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of my closest friends showed up for the good time .", "storylet_id": "204647"}], [{"original_text": "There was a massive audience there as well for the entertainment.", "album_id": "72157623186393217", "photo_flickr_id": "4314647527", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "40929", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a massive audience there as well for the entertainment .", "storylet_id": "204648"}], [{"original_text": "A professional showed up and my friend showed him his tattoos.", "album_id": "72157623186393217", "photo_flickr_id": "4315382338", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "40929", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a professional showed up and my friend showed him his tattoos .", "storylet_id": "204649"}], [{"original_text": "It was the semi-finals round of the baseball season. The tension is high and we are trying to take out this team.", "album_id": "72157623359162097", "photo_flickr_id": "4377792275", "setting": "first-2-pick-and-tell", "worker_id": "WGD8SF5H79WOVF7", "story_id": "40930", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the semi-finals round of the baseball season . the tension is high and we are trying to take out this team .", "storylet_id": "204650"}], [{"original_text": "A curve ball was pitched to get this batter out as quickly as possible. ", "album_id": "72157623359162097", "photo_flickr_id": "4377946031", "setting": "first-2-pick-and-tell", "worker_id": "WGD8SF5H79WOVF7", "story_id": "40930", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a curve ball was pitched to get this batter out as quickly as possible .", "storylet_id": "204651"}], [{"original_text": "Oops! It seems like a home run.", "album_id": "72157623359162097", "photo_flickr_id": "4377948499", "setting": "first-2-pick-and-tell", "worker_id": "WGD8SF5H79WOVF7", "story_id": "40930", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "oops ! it seems like a home run .", "storylet_id": "204652"}], [{"original_text": "She better hurry before she doesn't make it in time.", "album_id": "72157623359162097", "photo_flickr_id": "4378710298", "setting": "first-2-pick-and-tell", "worker_id": "WGD8SF5H79WOVF7", "story_id": "40930", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she better hurry before she does n't make it in time .", "storylet_id": "204653"}], [{"original_text": "Wow! That was a close one but it seems that she made it.", "album_id": "72157623359162097", "photo_flickr_id": "4378710542", "setting": "first-2-pick-and-tell", "worker_id": "WGD8SF5H79WOVF7", "story_id": "40930", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "wow ! that was a close one but it seems that she made it .", "storylet_id": "204654"}], [{"original_text": "The game didn't start too well for us as we lost a great numbers of balls.", "album_id": "72157623359162097", "photo_flickr_id": "4378693162", "setting": "first-2-pick-and-tell", "worker_id": "XSJPBUTY6MXM4I6", "story_id": "40931", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the game did n't start too well for us as we lost a great numbers of balls .", "storylet_id": "204655"}], [{"original_text": "We started catching up thanks to our batters skills.", "album_id": "72157623359162097", "photo_flickr_id": "4377948499", "setting": "first-2-pick-and-tell", "worker_id": "XSJPBUTY6MXM4I6", "story_id": "40931", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started catching up thanks to our batters skills .", "storylet_id": "204656"}], [{"original_text": "Our team running abilities also started to make a real difference. ", "album_id": "72157623359162097", "photo_flickr_id": "4377951469", "setting": "first-2-pick-and-tell", "worker_id": "XSJPBUTY6MXM4I6", "story_id": "40931", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our team running abilities also started to make a real difference .", "storylet_id": "204657"}], [{"original_text": "The outfielders also picked up the pace before the end of the game.", "album_id": "72157623359162097", "photo_flickr_id": "4377954159", "setting": "first-2-pick-and-tell", "worker_id": "XSJPBUTY6MXM4I6", "story_id": "40931", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the outfielders also picked up the pace before the end of the game .", "storylet_id": "204658"}], [{"original_text": "In the end, we won the game by a large margin!", "album_id": "72157623359162097", "photo_flickr_id": "4377960993", "setting": "first-2-pick-and-tell", "worker_id": "XSJPBUTY6MXM4I6", "story_id": "40931", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , we won the game by a large margin !", "storylet_id": "204659"}], [{"original_text": "the girls were playing a softball game", "album_id": "72157623359162097", "photo_flickr_id": "4377792275", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40932", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girls were playing a softball game", "storylet_id": "204660"}], [{"original_text": "she delivered the pitch off the mound ", "album_id": "72157623359162097", "photo_flickr_id": "4377946031", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40932", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she delivered the pitch off the mound", "storylet_id": "204661"}], [{"original_text": "she swung for the fences with this hit", "album_id": "72157623359162097", "photo_flickr_id": "4377948499", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40932", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she swung for the fences with this hit", "storylet_id": "204662"}], [{"original_text": "she slides in just safe into third base", "album_id": "72157623359162097", "photo_flickr_id": "4378710298", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40932", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she slides in just safe into third base", "storylet_id": "204663"}], [{"original_text": "the game was hard fought for both teams ", "album_id": "72157623359162097", "photo_flickr_id": "4378710542", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40932", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the game was hard fought for both teams", "storylet_id": "204664"}], [{"original_text": "Jessica is playing softball for her school's team. ", "album_id": "72157623359162097", "photo_flickr_id": "4377792275", "setting": "last-3-pick-old-and-tell", "worker_id": "8MGRY7E2NROOQDA", "story_id": "40933", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is playing softball for her school 's team .", "storylet_id": "204665"}], [{"original_text": "Jessica throws the balls to the batter", "album_id": "72157623359162097", "photo_flickr_id": "4377946031", "setting": "last-3-pick-old-and-tell", "worker_id": "8MGRY7E2NROOQDA", "story_id": "40933", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] throws the balls to the batter", "storylet_id": "204666"}], [{"original_text": "The batter hits the balls", "album_id": "72157623359162097", "photo_flickr_id": "4377948499", "setting": "last-3-pick-old-and-tell", "worker_id": "8MGRY7E2NROOQDA", "story_id": "40933", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the batter hits the balls", "storylet_id": "204667"}], [{"original_text": "The batter is able to slide to first base", "album_id": "72157623359162097", "photo_flickr_id": "4378710298", "setting": "last-3-pick-old-and-tell", "worker_id": "8MGRY7E2NROOQDA", "story_id": "40933", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the batter is able to slide to first base", "storylet_id": "204668"}], [{"original_text": "When no one is looking the batter is able to make it to second base", "album_id": "72157623359162097", "photo_flickr_id": "4378710542", "setting": "last-3-pick-old-and-tell", "worker_id": "8MGRY7E2NROOQDA", "story_id": "40933", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when no one is looking the batter is able to make it to second base", "storylet_id": "204669"}], [{"original_text": "Yep, diving for the ball is a good way of playing to show any Scouts out there that I play to win.", "album_id": "72157623359162097", "photo_flickr_id": "4378693162", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "40934", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yep , diving for the ball is a good way of playing to show any scouts out there that i play to win .", "storylet_id": "204670"}], [{"original_text": "I also want to show them that I am a good hitter.", "album_id": "72157623359162097", "photo_flickr_id": "4377948499", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "40934", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i also want to show them that i am a good hitter .", "storylet_id": "204671"}], [{"original_text": "And of course I must show them that I can slide into any base.", "album_id": "72157623359162097", "photo_flickr_id": "4377951469", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "40934", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and of course i must show them that i can slide into any base .", "storylet_id": "204672"}], [{"original_text": "Although, sometimes it seems that I am afraid of the ball, but be assured that I am not!", "album_id": "72157623359162097", "photo_flickr_id": "4377954159", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "40934", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "although , sometimes it seems that i am afraid of the ball , but be assured that i am not !", "storylet_id": "204673"}], [{"original_text": "Look at me go, I can connect the bat to the ball every time I at bat. Go me!", "album_id": "72157623359162097", "photo_flickr_id": "4377960993", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "40934", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "look at me go , i can connect the bat to the ball every time i at bat . go me !", "storylet_id": "204674"}], [{"original_text": "Today we got a call from Uncle Jim.", "album_id": "72157623599428613", "photo_flickr_id": "4471326253", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40935", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we got a call from uncle [male] .", "storylet_id": "204675"}], [{"original_text": "His truck had stopped working and he needed some help.", "album_id": "72157623599428613", "photo_flickr_id": "4472103024", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40935", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his truck had stopped working and he needed some help .", "storylet_id": "204676"}], [{"original_text": "When we drove over, we found trying to get the truck working.", "album_id": "72157623599428613", "photo_flickr_id": "4472103164", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40935", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we drove over , we found trying to get the truck working .", "storylet_id": "204677"}], [{"original_text": "After jump-starting the truck, it worked!", "album_id": "72157623599428613", "photo_flickr_id": "4472104274", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40935", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after jump-starting the truck , it worked !", "storylet_id": "204678"}], [{"original_text": "We had a nice leisure ride in it before returning home.", "album_id": "72157623599428613", "photo_flickr_id": "4472103696", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "40935", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a nice leisure ride in it before returning home .", "storylet_id": "204679"}], [{"original_text": "What a sweet old truck.", "album_id": "72157623599428613", "photo_flickr_id": "4472103024", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40936", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what a sweet old truck .", "storylet_id": "204680"}], [{"original_text": "Jethro loves driving his old Ford.", "album_id": "72157623599428613", "photo_flickr_id": "4472103164", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40936", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "jethro loves driving his old organization .", "storylet_id": "204681"}], [{"original_text": "She runs like a kitten still, even down these old dirt roads.", "album_id": "72157623599428613", "photo_flickr_id": "4471325311", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40936", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she runs like a kitten still , even down these old dirt roads .", "storylet_id": "204682"}], [{"original_text": "Me and Jethro posing for a break.", "album_id": "72157623599428613", "photo_flickr_id": "4472104080", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40936", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "me and jethro posing for a break .", "storylet_id": "204683"}], [{"original_text": "Wow, what house that is.", "album_id": "72157623599428613", "photo_flickr_id": "4471326253", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40936", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "wow , what house that is .", "storylet_id": "204684"}], [{"original_text": "they were building a small house out in the country", "album_id": "72157623599428613", "photo_flickr_id": "4471326253", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40937", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were building a small house out in the country", "storylet_id": "204685"}], [{"original_text": "it took big trucks to get the job down", "album_id": "72157623599428613", "photo_flickr_id": "4472103024", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40937", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it took big trucks to get the job down", "storylet_id": "204686"}], [{"original_text": "and lots of long hours of work", "album_id": "72157623599428613", "photo_flickr_id": "4472103164", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40937", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and lots of long hours of work", "storylet_id": "204687"}], [{"original_text": "they played around a little", "album_id": "72157623599428613", "photo_flickr_id": "4472104274", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40937", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they played around a little", "storylet_id": "204688"}], [{"original_text": "and took pictures together ", "album_id": "72157623599428613", "photo_flickr_id": "4472103696", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40937", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and took pictures together", "storylet_id": "204689"}], [{"original_text": "Family restoring the old cabin and preparing a mini barbecue. ", "album_id": "72157623599428613", "photo_flickr_id": "4471326253", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40938", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family restoring the old cabin and preparing a mini barbecue .", "storylet_id": "204690"}], [{"original_text": "Driving the truck through the field. ", "album_id": "72157623599428613", "photo_flickr_id": "4472103024", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40938", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "driving the truck through the field .", "storylet_id": "204691"}], [{"original_text": "Uncle attempt to drive the truck ", "album_id": "72157623599428613", "photo_flickr_id": "4472103164", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40938", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "uncle attempt to drive the truck", "storylet_id": "204692"}], [{"original_text": "Having fun and hanging from the door. ", "album_id": "72157623599428613", "photo_flickr_id": "4472104274", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40938", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "having fun and hanging from the door .", "storylet_id": "204693"}], [{"original_text": "Driving back home after a long day in the field. ", "album_id": "72157623599428613", "photo_flickr_id": "4472103696", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40938", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "driving back home after a long day in the field .", "storylet_id": "204694"}], [{"original_text": "These people have decided to get back to work on the old farm.", "album_id": "72157623599428613", "photo_flickr_id": "4471326253", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40939", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these people have decided to get back to work on the old farm .", "storylet_id": "204695"}], [{"original_text": "They buy the truck.", "album_id": "72157623599428613", "photo_flickr_id": "4472103024", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40939", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they buy the truck .", "storylet_id": "204696"}], [{"original_text": "One person shows everyone how to get it going.", "album_id": "72157623599428613", "photo_flickr_id": "4472103164", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40939", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one person shows everyone how to get it going .", "storylet_id": "204697"}], [{"original_text": "They patrol the fields.", "album_id": "72157623599428613", "photo_flickr_id": "4472104274", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40939", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they patrol the fields .", "storylet_id": "204698"}], [{"original_text": "They also take a selfie to commemorate the beginning of what's to come.", "album_id": "72157623599428613", "photo_flickr_id": "4472103696", "setting": "last-3-pick-old-and-tell", "worker_id": "4K3DJ03BIDVTOTX", "story_id": "40939", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they also take a selfie to commemorate the beginning of what 's to come .", "storylet_id": "204699"}], [{"original_text": "Hi, my name is Emily and I adore nature.", "album_id": "72157624605142767", "photo_flickr_id": "4893643895", "setting": "first-2-pick-and-tell", "worker_id": "VGOC77GRE8W7PA5", "story_id": "40940", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hi , my name is [female] and i adore nature .", "storylet_id": "204700"}], [{"original_text": "I love the texture of these leaves, so soft in my hand.", "album_id": "72157624605142767", "photo_flickr_id": "4894239594", "setting": "first-2-pick-and-tell", "worker_id": "VGOC77GRE8W7PA5", "story_id": "40940", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love the texture of these leaves , so soft in my hand .", "storylet_id": "204701"}], [{"original_text": "Natures can really make anything beautiful. ", "album_id": "72157624605142767", "photo_flickr_id": "4893650029", "setting": "first-2-pick-and-tell", "worker_id": "VGOC77GRE8W7PA5", "story_id": "40940", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "natures can really make anything beautiful .", "storylet_id": "204702"}], [{"original_text": "We met people that shared our interests.", "album_id": "72157624605142767", "photo_flickr_id": "4894250114", "setting": "first-2-pick-and-tell", "worker_id": "VGOC77GRE8W7PA5", "story_id": "40940", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we met people that shared our interests .", "storylet_id": "204703"}], [{"original_text": "We cleaned up the trail, keeping it nice and peaceful.", "album_id": "72157624605142767", "photo_flickr_id": "4893654513", "setting": "first-2-pick-and-tell", "worker_id": "VGOC77GRE8W7PA5", "story_id": "40940", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we cleaned up the trail , keeping it nice and peaceful .", "storylet_id": "204704"}], [{"original_text": "On our nature walk we explored nature on a wooden bridge.", "album_id": "72157624605142767", "photo_flickr_id": "4894238262", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "40941", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our nature walk we explored nature on a wooden bridge .", "storylet_id": "204705"}], [{"original_text": "The beautiful greenery covered a bright sunshine.", "album_id": "72157624605142767", "photo_flickr_id": "4893649125", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "40941", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the beautiful greenery covered a bright sunshine .", "storylet_id": "204706"}], [{"original_text": "Fences had ivy growing up them, and were noticed surrounding the park.", "album_id": "72157624605142767", "photo_flickr_id": "4893653375", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "40941", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "fences had ivy growing up them , and were noticed surrounding the park .", "storylet_id": "204707"}], [{"original_text": "We had treasures to take home from our nature walk.", "album_id": "72157624605142767", "photo_flickr_id": "4894247086", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "40941", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had treasures to take home from our nature walk .", "storylet_id": "204708"}], [{"original_text": "I picked some plants to bring home and place in to my garden.", "album_id": "72157624605142767", "photo_flickr_id": "4894250114", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "40941", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i picked some plants to bring home and place in to my garden .", "storylet_id": "204709"}], [{"original_text": "Our youth grofence.up volunteered to clean up the nature preserve.", "album_id": "72157624605142767", "photo_flickr_id": "4893643895", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "40942", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our youth grofence.up volunteered to clean up the nature preserve .", "storylet_id": "204710"}], [{"original_text": "Here are some of the endangered plants that actually thrive in this area.", "album_id": "72157624605142767", "photo_flickr_id": "4894239594", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "40942", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here are some of the endangered plants that actually thrive in this area .", "storylet_id": "204711"}], [{"original_text": "We are going to try to remove all the growth on the fence.", "album_id": "72157624605142767", "photo_flickr_id": "4893650029", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "40942", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are going to try to remove all the growth on the fence .", "storylet_id": "204712"}], [{"original_text": "Our leader is thrilled to be here helping.", "album_id": "72157624605142767", "photo_flickr_id": "4894250114", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "40942", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our leader is thrilled to be here helping .", "storylet_id": "204713"}], [{"original_text": "We filled the car with trash we picked up!", "album_id": "72157624605142767", "photo_flickr_id": "4893654513", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "40942", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we filled the car with trash we picked up !", "storylet_id": "204714"}], [{"original_text": "We took out daughter out hiking one day.", "album_id": "72157624605142767", "photo_flickr_id": "4893643895", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40943", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took out daughter out hiking one day .", "storylet_id": "204715"}], [{"original_text": "She liked all of the plants and foliage.", "album_id": "72157624605142767", "photo_flickr_id": "4894239594", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40943", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she liked all of the plants and foliage .", "storylet_id": "204716"}], [{"original_text": "The park was partly deserted, but still had the greenish charm.", "album_id": "72157624605142767", "photo_flickr_id": "4893650029", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40943", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the park was partly deserted , but still had the greenish charm .", "storylet_id": "204717"}], [{"original_text": "Her mother went with us too of course. She had a lot of fun as well.", "album_id": "72157624605142767", "photo_flickr_id": "4894250114", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40943", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her mother went with us too of course . she had a lot of fun as well .", "storylet_id": "204718"}], [{"original_text": "Another day has ended with a successful hike.", "album_id": "72157624605142767", "photo_flickr_id": "4893654513", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40943", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "another day has ended with a successful hike .", "storylet_id": "204719"}], [{"original_text": "The frist day of the event. they start to travel into the jungle", "album_id": "72157624605142767", "photo_flickr_id": "4894238262", "setting": "last-3-pick-old-and-tell", "worker_id": "1RU6Y2V453O905C", "story_id": "40944", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the frist day of the event . they start to travel into the jungle", "storylet_id": "204720"}], [{"original_text": "The travelers see how amazing the sights can be.", "album_id": "72157624605142767", "photo_flickr_id": "4893649125", "setting": "last-3-pick-old-and-tell", "worker_id": "1RU6Y2V453O905C", "story_id": "40944", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the travelers see how amazing the sights can be .", "storylet_id": "204721"}], [{"original_text": "Here is an wall covered in vines its been there since 1949", "album_id": "72157624605142767", "photo_flickr_id": "4893653375", "setting": "last-3-pick-old-and-tell", "worker_id": "1RU6Y2V453O905C", "story_id": "40944", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is an wall covered in vines its been there since 1949", "storylet_id": "204722"}], [{"original_text": "The brave young girls get ready to set off on their journey through the woods", "album_id": "72157624605142767", "photo_flickr_id": "4894247086", "setting": "last-3-pick-old-and-tell", "worker_id": "1RU6Y2V453O905C", "story_id": "40944", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the brave young girls get ready to set off on their journey through the woods", "storylet_id": "204723"}], [{"original_text": "A woman laughs as she takes a look into the wilderness", "album_id": "72157624605142767", "photo_flickr_id": "4894250114", "setting": "last-3-pick-old-and-tell", "worker_id": "1RU6Y2V453O905C", "story_id": "40944", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a woman laughs as she takes a look into the wilderness", "storylet_id": "204724"}], [{"original_text": "One day a new toy doll arrived in mail. ", "album_id": "72157624622215754", "photo_flickr_id": "4845967233", "setting": "first-2-pick-and-tell", "worker_id": "X6NBOFKZ7UPHXYC", "story_id": "40945", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one day a new toy doll arrived in mail .", "storylet_id": "204725"}], [{"original_text": "The new doll was so sad she did not know where she was. ", "album_id": "72157624622215754", "photo_flickr_id": "4845968169", "setting": "first-2-pick-and-tell", "worker_id": "X6NBOFKZ7UPHXYC", "story_id": "40945", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the new doll was so sad she did not know where she was .", "storylet_id": "204726"}], [{"original_text": "She sat by herself so lonely.", "album_id": "72157624622215754", "photo_flickr_id": "4845970097", "setting": "first-2-pick-and-tell", "worker_id": "X6NBOFKZ7UPHXYC", "story_id": "40945", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she sat by herself so lonely .", "storylet_id": "204727"}], [{"original_text": "Then the cat came to introduce himself to the new doll.", "album_id": "72157624622215754", "photo_flickr_id": "4845970993", "setting": "first-2-pick-and-tell", "worker_id": "X6NBOFKZ7UPHXYC", "story_id": "40945", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then the cat came to introduce himself to the new doll .", "storylet_id": "204728"}], [{"original_text": "The cat and doll became good friends. ", "album_id": "72157624622215754", "photo_flickr_id": "4845969115", "setting": "first-2-pick-and-tell", "worker_id": "X6NBOFKZ7UPHXYC", "story_id": "40945", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cat and doll became good friends .", "storylet_id": "204729"}], [{"original_text": "I had a photo session with my favorite doll.", "album_id": "72157624622215754", "photo_flickr_id": "4846585236", "setting": "first-2-pick-and-tell", "worker_id": "2XT3EL7YU0YVNPI", "story_id": "40946", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a photo session with my favorite doll .", "storylet_id": "204730"}], [{"original_text": "She is so philosophical sometimes, gazing out the window, lost in thought.", "album_id": "72157624622215754", "photo_flickr_id": "4845968169", "setting": "first-2-pick-and-tell", "worker_id": "2XT3EL7YU0YVNPI", "story_id": "40946", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she is so philosophical sometimes , gazing out the window , lost in thought .", "storylet_id": "204731"}], [{"original_text": "The cat likes her too, they were having a good time.", "album_id": "72157624622215754", "photo_flickr_id": "4845969115", "setting": "first-2-pick-and-tell", "worker_id": "2XT3EL7YU0YVNPI", "story_id": "40946", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cat likes her too , they were having a good time .", "storylet_id": "204732"}], [{"original_text": "The cat really likes her, he even gave her a kiss!", "album_id": "72157624622215754", "photo_flickr_id": "4845970993", "setting": "first-2-pick-and-tell", "worker_id": "2XT3EL7YU0YVNPI", "story_id": "40946", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cat really likes her , he even gave her a kiss !", "storylet_id": "204733"}], [{"original_text": "She finished the session posing with her guitar, she's such a good musician.", "album_id": "72157624622215754", "photo_flickr_id": "4845974771", "setting": "first-2-pick-and-tell", "worker_id": "2XT3EL7YU0YVNPI", "story_id": "40946", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she finished the session posing with her guitar , she 's such a good musician .", "storylet_id": "204734"}], [{"original_text": "Miss Teen Doll was excited about receiving her package in the mail.", "album_id": "72157624622215754", "photo_flickr_id": "4846585236", "setting": "last-3-pick-old-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "40947", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "miss teen doll was excited about receiving her package in the mail .", "storylet_id": "204735"}], [{"original_text": "She had been waiting for weeks, watching at the window everyday for the mailman to arrive.", "album_id": "72157624622215754", "photo_flickr_id": "4845968169", "setting": "last-3-pick-old-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "40947", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had been waiting for weeks , watching at the window everyday for the mailman to arrive .", "storylet_id": "204736"}], [{"original_text": "She had passed the time by hanging out with Mr. Fluffy Kitty.", "album_id": "72157624622215754", "photo_flickr_id": "4845969115", "setting": "last-3-pick-old-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "40947", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she had passed the time by hanging out with mr. fluffy kitty .", "storylet_id": "204737"}], [{"original_text": "Mrs. Fluffy Kitty was jealous and demanded attention.", "album_id": "72157624622215754", "photo_flickr_id": "4845970993", "setting": "last-3-pick-old-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "40947", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mrs. fluffy kitty was jealous and demanded attention .", "storylet_id": "204738"}], [{"original_text": "Miss Teen Doll took her new guitar out of the package and sat down to jam.", "album_id": "72157624622215754", "photo_flickr_id": "4845974771", "setting": "last-3-pick-old-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "40947", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "miss teen doll took her new guitar out of the package and sat down to jam .", "storylet_id": "204739"}], [{"original_text": "The doll was put in a pose to pretend that she was mailing a package. ", "album_id": "72157624622215754", "photo_flickr_id": "4846585236", "setting": "last-3-pick-old-and-tell", "worker_id": "U4CSLILUVFCADJM", "story_id": "40948", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the doll was put in a pose to pretend that she was mailing a package .", "storylet_id": "204740"}], [{"original_text": "The doll seemed to be curious to what was going on outside the window. ", "album_id": "72157624622215754", "photo_flickr_id": "4845968169", "setting": "last-3-pick-old-and-tell", "worker_id": "U4CSLILUVFCADJM", "story_id": "40948", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the doll seemed to be curious to what was going on outside the window .", "storylet_id": "204741"}], [{"original_text": "The cat seemed to like the doll's company. ", "album_id": "72157624622215754", "photo_flickr_id": "4845969115", "setting": "last-3-pick-old-and-tell", "worker_id": "U4CSLILUVFCADJM", "story_id": "40948", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cat seemed to like the doll 's company .", "storylet_id": "204742"}], [{"original_text": "The cat and the doll were playing together. ", "album_id": "72157624622215754", "photo_flickr_id": "4845970993", "setting": "last-3-pick-old-and-tell", "worker_id": "U4CSLILUVFCADJM", "story_id": "40948", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cat and the doll were playing together .", "storylet_id": "204743"}], [{"original_text": "Not only can the doll play with a cat, but it can play a guitar as well. ", "album_id": "72157624622215754", "photo_flickr_id": "4845974771", "setting": "last-3-pick-old-and-tell", "worker_id": "U4CSLILUVFCADJM", "story_id": "40948", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "not only can the doll play with a cat , but it can play a guitar as well .", "storylet_id": "204744"}], [{"original_text": "Angela la chola is chilling on some boxes.", "album_id": "72157624622215754", "photo_flickr_id": "4845967233", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40949", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] la chola is chilling on some boxes .", "storylet_id": "204745"}], [{"original_text": "She then peaks outside to see if her homegirls are around.", "album_id": "72157624622215754", "photo_flickr_id": "4845968169", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40949", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she then peaks outside to see if her homegirls are around .", "storylet_id": "204746"}], [{"original_text": "Not being able to find her homegirls she sits down.", "album_id": "72157624622215754", "photo_flickr_id": "4845970097", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40949", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not being able to find her homegirls she sits down .", "storylet_id": "204747"}], [{"original_text": "A huge cat comes and gets all up in Angelas face.", "album_id": "72157624622215754", "photo_flickr_id": "4845970993", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40949", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a huge cat comes and gets all up in location face .", "storylet_id": "204748"}], [{"original_text": "Angela then starts chilling with the cat.", "album_id": "72157624622215754", "photo_flickr_id": "4845969115", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40949", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] then starts chilling with the cat .", "storylet_id": "204749"}], [{"original_text": "The employees went on a company retreat.", "album_id": "72157624897656365", "photo_flickr_id": "5019660074", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40950", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the employees went on a company retreat .", "storylet_id": "204750"}], [{"original_text": "The spent the day hiking along a scenic trail.", "album_id": "72157624897656365", "photo_flickr_id": "5019672366", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40950", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the spent the day hiking along a scenic trail .", "storylet_id": "204751"}], [{"original_text": "At one point, they decided to investigate the creek below.", "album_id": "72157624897656365", "photo_flickr_id": "5019069875", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40950", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at one point , they decided to investigate the creek below .", "storylet_id": "204752"}], [{"original_text": "The coworkers later relaxed in a lounge, lamenting the day's activities.", "album_id": "72157624897656365", "photo_flickr_id": "5019070933", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40950", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the coworkers later relaxed in a lounge , lamenting the day 's activities .", "storylet_id": "204753"}], [{"original_text": "The day ended with a barbecue, where the employees could enjoy a hot meal and each others' company.", "album_id": "72157624897656365", "photo_flickr_id": "5019689420", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "40950", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day ended with a barbecue , where the employees could enjoy a hot meal and each others ' company .", "storylet_id": "204754"}], [{"original_text": "The group decided to go on a hike in the forest.", "album_id": "72157624897656365", "photo_flickr_id": "5019672366", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40951", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group decided to go on a hike in the forest .", "storylet_id": "204755"}], [{"original_text": "They began too get a little hot and decided to take a dip in the water.", "album_id": "72157624897656365", "photo_flickr_id": "5019069875", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40951", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they began too get a little hot and decided to take a dip in the water .", "storylet_id": "204756"}], [{"original_text": "But in order to really cool off, they went to the beach.", "album_id": "72157624897656365", "photo_flickr_id": "5019677164", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40951", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but in order to really cool off , they went to the beach .", "storylet_id": "204757"}], [{"original_text": "The ran into many people selling interesting items on the beach.", "album_id": "72157624897656365", "photo_flickr_id": "5019689420", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40951", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ran into many people selling interesting items on the beach .", "storylet_id": "204758"}], [{"original_text": "They finally arrived back home to their house.", "album_id": "72157624897656365", "photo_flickr_id": "5019104201", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40951", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they finally arrived back home to their house .", "storylet_id": "204759"}], [{"original_text": "Our annual trip with friends was in hawaii.", "album_id": "72157624897656365", "photo_flickr_id": "5019660074", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40952", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our annual trip with friends was in hawaii .", "storylet_id": "204760"}], [{"original_text": "Some of the locations we found like this bridge were so nice.", "album_id": "72157624897656365", "photo_flickr_id": "5019672366", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40952", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the locations we found like this bridge were so nice .", "storylet_id": "204761"}], [{"original_text": "We had some fun by the lake under the bridge.", "album_id": "72157624897656365", "photo_flickr_id": "5019069875", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40952", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had some fun by the lake under the bridge .", "storylet_id": "204762"}], [{"original_text": "It was good to have everyone together again at dinner that night.", "album_id": "72157624897656365", "photo_flickr_id": "5019070933", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40952", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was good to have everyone together again at dinner that night .", "storylet_id": "204763"}], [{"original_text": "We found some interesting food as well on the street corners.", "album_id": "72157624897656365", "photo_flickr_id": "5019689420", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40952", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we found some interesting food as well on the street corners .", "storylet_id": "204764"}], [{"original_text": "The family arrived at the natural trail on their vacation.", "album_id": "72157624897656365", "photo_flickr_id": "5019660074", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40953", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family arrived at the natural trail on their vacation .", "storylet_id": "204765"}], [{"original_text": "They took a break halfway down the trail.", "album_id": "72157624897656365", "photo_flickr_id": "5019672366", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40953", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took a break halfway down the trail .", "storylet_id": "204766"}], [{"original_text": "A few members of the family tried to climb into the water.", "album_id": "72157624897656365", "photo_flickr_id": "5019069875", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40953", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few members of the family tried to climb into the water .", "storylet_id": "204767"}], [{"original_text": "After the trail they all went out for lunch.", "album_id": "72157624897656365", "photo_flickr_id": "5019070933", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40953", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the trail they all went out for lunch .", "storylet_id": "204768"}], [{"original_text": "They decided to make it a picnic.", "album_id": "72157624897656365", "photo_flickr_id": "5019689420", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40953", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they decided to make it a picnic .", "storylet_id": "204769"}], [{"original_text": "This is my volunteer group. We vacationed together in Thailand. ", "album_id": "72157624897656365", "photo_flickr_id": "5019660074", "setting": "last-3-pick-old-and-tell", "worker_id": "TT5VFFZYTEG1PNA", "story_id": "40954", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my volunteer group . we vacationed together in location .", "storylet_id": "204770"}], [{"original_text": "Here we are taking a nature walk through the forest. ", "album_id": "72157624897656365", "photo_flickr_id": "5019672366", "setting": "last-3-pick-old-and-tell", "worker_id": "TT5VFFZYTEG1PNA", "story_id": "40954", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we are taking a nature walk through the forest .", "storylet_id": "204771"}], [{"original_text": "Some of us like a little danger in our lives. She dropped her shoe of the bridge and tried to retrieve it with a stick.", "album_id": "72157624897656365", "photo_flickr_id": "5019069875", "setting": "last-3-pick-old-and-tell", "worker_id": "TT5VFFZYTEG1PNA", "story_id": "40954", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of us like a little danger in our lives . she dropped her shoe of the bridge and tried to retrieve it with a stick .", "storylet_id": "204772"}], [{"original_text": "Here we are taking a ride in a boat across the lake. ", "album_id": "72157624897656365", "photo_flickr_id": "5019070933", "setting": "last-3-pick-old-and-tell", "worker_id": "TT5VFFZYTEG1PNA", "story_id": "40954", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here we are taking a ride in a boat across the lake .", "storylet_id": "204773"}], [{"original_text": "Can't visit Thailand without tasting the street food. It was different but really good. ", "album_id": "72157624897656365", "photo_flickr_id": "5019689420", "setting": "last-3-pick-old-and-tell", "worker_id": "TT5VFFZYTEG1PNA", "story_id": "40954", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ca n't visit location without tasting the street food . it was different but really good .", "storylet_id": "204774"}], [{"original_text": "We arrived at the parade and immediately spotted a man in a bright hat leading the way. ", "album_id": "72157625014375302", "photo_flickr_id": "5012962957", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "40955", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at the parade and immediately spotted a man in a bright hat leading the way .", "storylet_id": "204775"}], [{"original_text": "The parade began moving past as women dressed in vibrant colors danced in a wild trance. ", "album_id": "72157625014375302", "photo_flickr_id": "5012963069", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "40955", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the parade began moving past as women dressed in vibrant colors danced in a wild trance .", "storylet_id": "204776"}], [{"original_text": "Everyone from the largest man to the smallest child was decked out in bright attire. ", "album_id": "72157625014375302", "photo_flickr_id": "5013568792", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "40955", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone from the largest man to the smallest child was decked out in bright attire .", "storylet_id": "204777"}], [{"original_text": "The sound of pounding drums filled our ears as skilled drummers began marching past in a procession. ", "album_id": "72157625014375302", "photo_flickr_id": "5012963669", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "40955", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sound of pounding drums filled our ears as skilled drummers began marching past in a procession .", "storylet_id": "204778"}], [{"original_text": "We couldn't believe how amazing this unique culture was, we had a great day watching the rest of the parade. ", "album_id": "72157625014375302", "photo_flickr_id": "5013569312", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "40955", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we could n't believe how amazing this unique culture was , we had a great day watching the rest of the parade .", "storylet_id": "204779"}], [{"original_text": "Dressed in a fancy colorful hat.", "album_id": "72157625014375302", "photo_flickr_id": "5012962957", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40956", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dressed in a fancy colorful hat .", "storylet_id": "204780"}], [{"original_text": "The baby dressed up in a colorful outfit.", "album_id": "72157625014375302", "photo_flickr_id": "5013568792", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40956", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the baby dressed up in a colorful outfit .", "storylet_id": "204781"}], [{"original_text": "The kid is celebrating the parade.", "album_id": "72157625014375302", "photo_flickr_id": "5013568922", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40956", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kid is celebrating the parade .", "storylet_id": "204782"}], [{"original_text": "The drums are played through the streets.", "album_id": "72157625014375302", "photo_flickr_id": "5012963499", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40956", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the drums are played through the streets .", "storylet_id": "204783"}], [{"original_text": "The drums are played for the rest of the day.", "album_id": "72157625014375302", "photo_flickr_id": "5012963669", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40956", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the drums are played for the rest of the day .", "storylet_id": "204784"}], [{"original_text": "a beautiful unique design of a hat from a foreign land", "album_id": "72157625014375302", "photo_flickr_id": "5012962957", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40957", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a beautiful unique design of a hat from a foreign land", "storylet_id": "204785"}], [{"original_text": "beautiful abstract colors seen here ", "album_id": "72157625014375302", "photo_flickr_id": "5012963069", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40957", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "beautiful abstract colors seen here", "storylet_id": "204786"}], [{"original_text": "the child was standing there wearing their unique and colorful outfit", "album_id": "72157625014375302", "photo_flickr_id": "5013568792", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40957", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the child was standing there wearing their unique and colorful outfit", "storylet_id": "204787"}], [{"original_text": "they played the traditional instruments", "album_id": "72157625014375302", "photo_flickr_id": "5012963669", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40957", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they played the traditional instruments", "storylet_id": "204788"}], [{"original_text": "they enjoyed the celebration from a distance land", "album_id": "72157625014375302", "photo_flickr_id": "5013569312", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40957", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they enjoyed the celebration from a distance land", "storylet_id": "204789"}], [{"original_text": "The beads swayed with each step she took down the street", "album_id": "72157625014375302", "photo_flickr_id": "5012962957", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "40958", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beads swayed with each step she took down the street", "storylet_id": "204790"}], [{"original_text": "the little boy in his costume watch his mother while she talked to her lover.", "album_id": "72157625014375302", "photo_flickr_id": "5013568792", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "40958", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the little boy in his costume watch his mother while she talked to her lover .", "storylet_id": "204791"}], [{"original_text": "The child looked at me with intent. I did not know how he saw me, but we met eyes none the less.", "album_id": "72157625014375302", "photo_flickr_id": "5013568922", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "40958", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the child looked at me with intent . i did not know how he saw me , but we met eyes none the less .", "storylet_id": "204792"}], [{"original_text": "The drums played to the beat of the soul. I felt it deep inside of me while I watched the sticks pound the drums.", "album_id": "72157625014375302", "photo_flickr_id": "5012963499", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "40958", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the drums played to the beat of the soul . i felt it deep inside of me while i watched the sticks pound the drums .", "storylet_id": "204793"}], [{"original_text": "It was a lively day. The drummers played with such love for their craft that we all started dancing in the streets.", "album_id": "72157625014375302", "photo_flickr_id": "5012963669", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "40958", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a lively day . the drummers played with such love for their craft that we all started dancing in the streets .", "storylet_id": "204794"}], [{"original_text": "I will be wearing my special hat to take my family to see the parade.", "album_id": "72157625014375302", "photo_flickr_id": "5012962957", "setting": "last-3-pick-old-and-tell", "worker_id": "PPITB4UC1ASYGNO", "story_id": "40959", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i will be wearing my special hat to take my family to see the parade .", "storylet_id": "204795"}], [{"original_text": "As I look around I see all the decorations. The town is ready for a celebration.", "album_id": "72157625014375302", "photo_flickr_id": "5012963069", "setting": "last-3-pick-old-and-tell", "worker_id": "PPITB4UC1ASYGNO", "story_id": "40959", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as i look around i see all the decorations . the town is ready for a celebration .", "storylet_id": "204796"}], [{"original_text": "My son is looking very dapper in his outfit for the parade.", "album_id": "72157625014375302", "photo_flickr_id": "5013568792", "setting": "last-3-pick-old-and-tell", "worker_id": "PPITB4UC1ASYGNO", "story_id": "40959", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my son is looking very dapper in his outfit for the parade .", "storylet_id": "204797"}], [{"original_text": "The drummers are warming up before they head down the street.", "album_id": "72157625014375302", "photo_flickr_id": "5012963669", "setting": "last-3-pick-old-and-tell", "worker_id": "PPITB4UC1ASYGNO", "story_id": "40959", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the drummers are warming up before they head down the street .", "storylet_id": "204798"}], [{"original_text": "What a great feeling of accomplishment. The crowd was so happy to hear us.", "album_id": "72157625014375302", "photo_flickr_id": "5013569312", "setting": "last-3-pick-old-and-tell", "worker_id": "PPITB4UC1ASYGNO", "story_id": "40959", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what a great feeling of accomplishment . the crowd was so happy to hear us .", "storylet_id": "204799"}], [{"original_text": "Arrived at the camp grounds, everything is going alright.", "album_id": "72157625054604693", "photo_flickr_id": "5088462292", "setting": "first-2-pick-and-tell", "worker_id": "VGOC77GRE8W7PA5", "story_id": "40960", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "arrived at the camp grounds , everything is going alright .", "storylet_id": "204800"}], [{"original_text": "We pitched the tent, not a trouble in sight.", "album_id": "72157625054604693", "photo_flickr_id": "5088461488", "setting": "first-2-pick-and-tell", "worker_id": "VGOC77GRE8W7PA5", "story_id": "40960", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we pitched the tent , not a trouble in sight .", "storylet_id": "204801"}], [{"original_text": "The fire is set to light up the evening.", "album_id": "72157625054604693", "photo_flickr_id": "5088460150", "setting": "first-2-pick-and-tell", "worker_id": "VGOC77GRE8W7PA5", "story_id": "40960", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fire is set to light up the evening .", "storylet_id": "204802"}], [{"original_text": "Dinner was cooked and kept fresh thanks my friend Steven. ", "album_id": "72157625054604693", "photo_flickr_id": "5087861639", "setting": "first-2-pick-and-tell", "worker_id": "VGOC77GRE8W7PA5", "story_id": "40960", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dinner was cooked and kept fresh thanks my friend [male] .", "storylet_id": "204803"}], [{"original_text": "While Max sat under a table heavy with breathing. ", "album_id": "72157625054604693", "photo_flickr_id": "5087862673", "setting": "first-2-pick-and-tell", "worker_id": "VGOC77GRE8W7PA5", "story_id": "40960", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while [male] sat under a table heavy with breathing .", "storylet_id": "204804"}], [{"original_text": "The family went to the woods to go camping.", "album_id": "72157625054604693", "photo_flickr_id": "5088462292", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40961", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went to the woods to go camping .", "storylet_id": "204805"}], [{"original_text": "They even brought along their dog.", "album_id": "72157625054604693", "photo_flickr_id": "5087862673", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40961", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they even brought along their dog .", "storylet_id": "204806"}], [{"original_text": "Grandpa came too and was in charge of the fire.", "album_id": "72157625054604693", "photo_flickr_id": "5088460150", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40961", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandpa came too and was in charge of the fire .", "storylet_id": "204807"}], [{"original_text": "They are watermelon and oat meal.", "album_id": "72157625054604693", "photo_flickr_id": "5087861639", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40961", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they are watermelon and oat meal .", "storylet_id": "204808"}], [{"original_text": "Afterwards they took a hike in the woods.", "album_id": "72157625054604693", "photo_flickr_id": "5088455100", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "40961", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards they took a hike in the woods .", "storylet_id": "204809"}], [{"original_text": "Sometimes you just need to get away for the weekend.", "album_id": "72157625054604693", "photo_flickr_id": "5088462292", "setting": "last-3-pick-old-and-tell", "worker_id": "3QPU1AB5FZ6Q53B", "story_id": "40962", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sometimes you just need to get away for the weekend .", "storylet_id": "204810"}], [{"original_text": "This is what we called home for a weekend.", "album_id": "72157625054604693", "photo_flickr_id": "5088461488", "setting": "last-3-pick-old-and-tell", "worker_id": "3QPU1AB5FZ6Q53B", "story_id": "40962", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is what we called home for a weekend .", "storylet_id": "204811"}], [{"original_text": "It had everything you could ask for. Especially peace and quite.", "album_id": "72157625054604693", "photo_flickr_id": "5088460150", "setting": "last-3-pick-old-and-tell", "worker_id": "3QPU1AB5FZ6Q53B", "story_id": "40962", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it had everything you could ask for . especially peace and quite .", "storylet_id": "204812"}], [{"original_text": "There was plenty of delicious food.", "album_id": "72157625054604693", "photo_flickr_id": "5087861639", "setting": "last-3-pick-old-and-tell", "worker_id": "3QPU1AB5FZ6Q53B", "story_id": "40962", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was plenty of delicious food .", "storylet_id": "204813"}], [{"original_text": "Our furry friend particularly enjoyed our little getaway.", "album_id": "72157625054604693", "photo_flickr_id": "5087862673", "setting": "last-3-pick-old-and-tell", "worker_id": "3QPU1AB5FZ6Q53B", "story_id": "40962", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our furry friend particularly enjoyed our little getaway .", "storylet_id": "204814"}], [{"original_text": "They camped in a secluded drive.", "album_id": "72157625054604693", "photo_flickr_id": "5088462292", "setting": "last-3-pick-old-and-tell", "worker_id": "7526QOJ1PPBU01V", "story_id": "40963", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they camped in a secluded drive .", "storylet_id": "204815"}], [{"original_text": "They had tents and room for all.", "album_id": "72157625054604693", "photo_flickr_id": "5088461488", "setting": "last-3-pick-old-and-tell", "worker_id": "7526QOJ1PPBU01V", "story_id": "40963", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had tents and room for all .", "storylet_id": "204816"}], [{"original_text": "They built a fire.", "album_id": "72157625054604693", "photo_flickr_id": "5088460150", "setting": "last-3-pick-old-and-tell", "worker_id": "7526QOJ1PPBU01V", "story_id": "40963", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they built a fire .", "storylet_id": "204817"}], [{"original_text": "They ate a great meal complete with watermelon.", "album_id": "72157625054604693", "photo_flickr_id": "5087861639", "setting": "last-3-pick-old-and-tell", "worker_id": "7526QOJ1PPBU01V", "story_id": "40963", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they ate a great meal complete with watermelon .", "storylet_id": "204818"}], [{"original_text": "They even brought the family dog along for the fun.", "album_id": "72157625054604693", "photo_flickr_id": "5087862673", "setting": "last-3-pick-old-and-tell", "worker_id": "7526QOJ1PPBU01V", "story_id": "40963", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even brought the family dog along for the fun .", "storylet_id": "204819"}], [{"original_text": "Once a year, we go on an annual camping trip up to the woods.", "album_id": "72157625054604693", "photo_flickr_id": "5088462292", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "40964", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "once a year , we go on an annual camping trip up to the woods .", "storylet_id": "204820"}], [{"original_text": "We pitch a tent on the grass and set some chairs up so we can have a nice evening", "album_id": "72157625054604693", "photo_flickr_id": "5088461488", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "40964", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we pitch a tent on the grass and set some chairs up so we can have a nice evening", "storylet_id": "204821"}], [{"original_text": "We make a campfire and spend time talking and relaxing.", "album_id": "72157625054604693", "photo_flickr_id": "5088460150", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "40964", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we make a campfire and spend time talking and relaxing .", "storylet_id": "204822"}], [{"original_text": "This year we had watermelon and soup with some iced tea for supper.", "album_id": "72157625054604693", "photo_flickr_id": "5087861639", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "40964", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this year we had watermelon and soup with some iced tea for supper .", "storylet_id": "204823"}], [{"original_text": "Even the dog had a great time at this year's camping trip! ", "album_id": "72157625054604693", "photo_flickr_id": "5087862673", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "40964", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the dog had a great time at this year 's camping trip !", "storylet_id": "204824"}], [{"original_text": "Today was our Dad's 30th Birthday.", "album_id": "72157625217544357", "photo_flickr_id": "5159494260", "setting": "first-2-pick-and-tell", "worker_id": "TOPPXN96TLITOY1", "story_id": "40965", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was our dad 's 30th birthday .", "storylet_id": "204825"}], [{"original_text": "We surprised him with a cake.", "album_id": "72157625217544357", "photo_flickr_id": "5159494604", "setting": "first-2-pick-and-tell", "worker_id": "TOPPXN96TLITOY1", "story_id": "40965", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we surprised him with a cake .", "storylet_id": "204826"}], [{"original_text": "We sang Happy Birthday to him.", "album_id": "72157625217544357", "photo_flickr_id": "5158887881", "setting": "first-2-pick-and-tell", "worker_id": "TOPPXN96TLITOY1", "story_id": "40965", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we sang happy birthday to him .", "storylet_id": "204827"}], [{"original_text": "He made a wish and blew out the candles.", "album_id": "72157625217544357", "photo_flickr_id": "5158888921", "setting": "first-2-pick-and-tell", "worker_id": "TOPPXN96TLITOY1", "story_id": "40965", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he made a wish and blew out the candles .", "storylet_id": "204828"}], [{"original_text": "After eating cake, we all went out to play.", "album_id": "72157625217544357", "photo_flickr_id": "5158890041", "setting": "first-2-pick-and-tell", "worker_id": "TOPPXN96TLITOY1", "story_id": "40965", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after eating cake , we all went out to play .", "storylet_id": "204829"}], [{"original_text": "David poses for a picture with his son Andrew on his birthday.", "album_id": "72157625217544357", "photo_flickr_id": "5158900373", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40966", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] poses for a picture with his son [male] on his birthday .", "storylet_id": "204830"}], [{"original_text": "David and his family go for a family walk in the neighborhood ", "album_id": "72157625217544357", "photo_flickr_id": "5158890041", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40966", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] and his family go for a family walk in the neighborhood", "storylet_id": "204831"}], [{"original_text": "Jennifer taking a picture with davids daughter dawn.", "album_id": "72157625217544357", "photo_flickr_id": "5158891829", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40966", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] taking a picture with davids daughter dawn .", "storylet_id": "204832"}], [{"original_text": "David's 30th birthday cake.", "album_id": "72157625217544357", "photo_flickr_id": "5159494260", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40966", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] 's 30th birthday cake .", "storylet_id": "204833"}], [{"original_text": "David celebrating the first 30 years of his life with his family!", "album_id": "72157625217544357", "photo_flickr_id": "5159494604", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40966", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] celebrating the first 30 years of his life with his family !", "storylet_id": "204834"}], [{"original_text": "Here is the cake for his 30th birthday party.", "album_id": "72157625217544357", "photo_flickr_id": "5159494260", "setting": "last-3-pick-old-and-tell", "worker_id": "IMIVJGTLZ97UI8G", "story_id": "40967", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is the cake for his 30th birthday party .", "storylet_id": "204835"}], [{"original_text": "The candles are lit.", "album_id": "72157625217544357", "photo_flickr_id": "5159494604", "setting": "last-3-pick-old-and-tell", "worker_id": "IMIVJGTLZ97UI8G", "story_id": "40967", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the candles are lit .", "storylet_id": "204836"}], [{"original_text": "Time to finish lighting the candles.", "album_id": "72157625217544357", "photo_flickr_id": "5158887881", "setting": "last-3-pick-old-and-tell", "worker_id": "IMIVJGTLZ97UI8G", "story_id": "40967", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "time to finish lighting the candles .", "storylet_id": "204837"}], [{"original_text": "He is blowing out the candles.", "album_id": "72157625217544357", "photo_flickr_id": "5158888921", "setting": "last-3-pick-old-and-tell", "worker_id": "IMIVJGTLZ97UI8G", "story_id": "40967", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he is blowing out the candles .", "storylet_id": "204838"}], [{"original_text": "Time to go outside and play with the kids.", "album_id": "72157625217544357", "photo_flickr_id": "5158890041", "setting": "last-3-pick-old-and-tell", "worker_id": "IMIVJGTLZ97UI8G", "story_id": "40967", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time to go outside and play with the kids .", "storylet_id": "204839"}], [{"original_text": "It was daddy's 30th birthday, and mommy made an awesome birthday cake for him.", "album_id": "72157625217544357", "photo_flickr_id": "5159494260", "setting": "last-3-pick-old-and-tell", "worker_id": "0V3GWNV1KYMYII4", "story_id": "40968", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was daddy 's 30th birthday , and mommy made an awesome birthday cake for him .", "storylet_id": "204840"}], [{"original_text": "Daddy loved the cake, and was so surprised!", "album_id": "72157625217544357", "photo_flickr_id": "5159494604", "setting": "last-3-pick-old-and-tell", "worker_id": "0V3GWNV1KYMYII4", "story_id": "40968", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "daddy loved the cake , and was so surprised !", "storylet_id": "204841"}], [{"original_text": "There was even thirty candles on the cake!", "album_id": "72157625217544357", "photo_flickr_id": "5158887881", "setting": "last-3-pick-old-and-tell", "worker_id": "0V3GWNV1KYMYII4", "story_id": "40968", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was even thirty candles on the cake !", "storylet_id": "204842"}], [{"original_text": "Daddy blew the candles out and made a wish.", "album_id": "72157625217544357", "photo_flickr_id": "5158888921", "setting": "last-3-pick-old-and-tell", "worker_id": "0V3GWNV1KYMYII4", "story_id": "40968", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "daddy blew the candles out and made a wish .", "storylet_id": "204843"}], [{"original_text": "After having some cake, the whole family went for a nice walk.", "album_id": "72157625217544357", "photo_flickr_id": "5158890041", "setting": "last-3-pick-old-and-tell", "worker_id": "0V3GWNV1KYMYII4", "story_id": "40968", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after having some cake , the whole family went for a nice walk .", "storylet_id": "204844"}], [{"original_text": "The man is celebrating is 30th birthday today.", "album_id": "72157625217544357", "photo_flickr_id": "5159494260", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40969", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man is celebrating is 30th birthday today .", "storylet_id": "204845"}], [{"original_text": "His wife lights all the candles on his cake.", "album_id": "72157625217544357", "photo_flickr_id": "5159494604", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40969", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his wife lights all the candles on his cake .", "storylet_id": "204846"}], [{"original_text": "His friends and family sing happy birthday to him.", "album_id": "72157625217544357", "photo_flickr_id": "5158887881", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40969", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his friends and family sing happy birthday to him .", "storylet_id": "204847"}], [{"original_text": "He blew out his candles.", "album_id": "72157625217544357", "photo_flickr_id": "5158888921", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40969", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he blew out his candles .", "storylet_id": "204848"}], [{"original_text": "Afterwards they all go outside to spend time together.", "album_id": "72157625217544357", "photo_flickr_id": "5158890041", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40969", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards they all go outside to spend time together .", "storylet_id": "204849"}], [{"original_text": "When grandmother got mad, she would take off and travel.", "album_id": "72157626225931816", "photo_flickr_id": "5509902283", "setting": "first-2-pick-and-tell", "worker_id": "0YRVNDXUO1LJ0E9", "story_id": "40970", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when grandmother got mad , she would take off and travel .", "storylet_id": "204850"}], [{"original_text": "We never knew where she was but often the locals would take a photo for us so we would know she was safe.", "album_id": "72157626225931816", "photo_flickr_id": "5510499054", "setting": "first-2-pick-and-tell", "worker_id": "0YRVNDXUO1LJ0E9", "story_id": "40970", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we never knew where she was but often the locals would take a photo for us so we would know she was safe .", "storylet_id": "204851"}], [{"original_text": "In this photo, she is enjoying a beer a her favorite pub.", "album_id": "72157626225931816", "photo_flickr_id": "5509896733", "setting": "first-2-pick-and-tell", "worker_id": "0YRVNDXUO1LJ0E9", "story_id": "40970", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in this photo , she is enjoying a beer a her favorite pub .", "storylet_id": "204852"}], [{"original_text": "After a visit to the pub, she always takes a walk to the bus stop.", "album_id": "72157626225931816", "photo_flickr_id": "5509897289", "setting": "first-2-pick-and-tell", "worker_id": "0YRVNDXUO1LJ0E9", "story_id": "40970", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a visit to the pub , she always takes a walk to the bus stop .", "storylet_id": "204853"}], [{"original_text": "She always comes back home and says how horrible it was and that she walked the whole way home, but we always know better.", "album_id": "72157626225931816", "photo_flickr_id": "5510506784", "setting": "first-2-pick-and-tell", "worker_id": "0YRVNDXUO1LJ0E9", "story_id": "40970", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she always comes back home and says how horrible it was and that she walked the whole way home , but we always know better .", "storylet_id": "204854"}], [{"original_text": "Susan spent the day visiting her grandmother in the village where she lives.", "album_id": "72157626225931816", "photo_flickr_id": "5509904003", "setting": "first-2-pick-and-tell", "worker_id": "AYLEEA2AQGD8IM4", "story_id": "40971", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] spent the day visiting her grandmother in the village where she lives .", "storylet_id": "204855"}], [{"original_text": "Her grandma has always lived in the same village.", "album_id": "72157626225931816", "photo_flickr_id": "5510507478", "setting": "first-2-pick-and-tell", "worker_id": "AYLEEA2AQGD8IM4", "story_id": "40971", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her grandma has always lived in the same village .", "storylet_id": "204856"}], [{"original_text": "She lived right next to a farm where the owner raises pigs.", "album_id": "72157626225931816", "photo_flickr_id": "5510500884", "setting": "first-2-pick-and-tell", "worker_id": "AYLEEA2AQGD8IM4", "story_id": "40971", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she lived right next to a farm where the owner raises pigs .", "storylet_id": "204857"}], [{"original_text": "Every morning she strolls through the village and greets her friends.", "album_id": "72157626225931816", "photo_flickr_id": "5509897289", "setting": "first-2-pick-and-tell", "worker_id": "AYLEEA2AQGD8IM4", "story_id": "40971", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "every morning she strolls through the village and greets her friends .", "storylet_id": "204858"}], [{"original_text": "Susan and her grandma always chat over a glass of wine or a beer when she visits.", "album_id": "72157626225931816", "photo_flickr_id": "5509896733", "setting": "first-2-pick-and-tell", "worker_id": "AYLEEA2AQGD8IM4", "story_id": "40971", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] and her grandma always chat over a glass of wine or a beer when she visits .", "storylet_id": "204859"}], [{"original_text": "Grandma is on her way to visit her grandchildren.", "album_id": "72157626225931816", "photo_flickr_id": "5509902283", "setting": "last-3-pick-old-and-tell", "worker_id": "PFB7ZY4ONW7QIZ4", "story_id": "40972", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandma is on her way to visit her grandchildren .", "storylet_id": "204860"}], [{"original_text": "She has to travel two hours to reach her grandchildren.", "album_id": "72157626225931816", "photo_flickr_id": "5510499054", "setting": "last-3-pick-old-and-tell", "worker_id": "PFB7ZY4ONW7QIZ4", "story_id": "40972", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she has to travel two hours to reach her grandchildren .", "storylet_id": "204861"}], [{"original_text": "She gets a drink at the local pub. ", "album_id": "72157626225931816", "photo_flickr_id": "5509896733", "setting": "last-3-pick-old-and-tell", "worker_id": "PFB7ZY4ONW7QIZ4", "story_id": "40972", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she gets a drink at the local pub .", "storylet_id": "204862"}], [{"original_text": "She takes the walk past this building.", "album_id": "72157626225931816", "photo_flickr_id": "5509897289", "setting": "last-3-pick-old-and-tell", "worker_id": "PFB7ZY4ONW7QIZ4", "story_id": "40972", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she takes the walk past this building .", "storylet_id": "204863"}], [{"original_text": "She sits on the bench waiting for the bus.", "album_id": "72157626225931816", "photo_flickr_id": "5510506784", "setting": "last-3-pick-old-and-tell", "worker_id": "PFB7ZY4ONW7QIZ4", "story_id": "40972", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she sits on the bench waiting for the bus .", "storylet_id": "204864"}], [{"original_text": "Kelly wanted nothing more than to go on the water!", "album_id": "72157626225931816", "photo_flickr_id": "5509904003", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40973", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] wanted nothing more than to go on the water !", "storylet_id": "204865"}], [{"original_text": "Unfortunately she got very old and was unable to get her wish.", "album_id": "72157626225931816", "photo_flickr_id": "5510507478", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40973", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "unfortunately she got very old and was unable to get her wish .", "storylet_id": "204866"}], [{"original_text": "However a magical pig told her if she released him, she could get back her youth!", "album_id": "72157626225931816", "photo_flickr_id": "5510500884", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40973", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however a magical pig told her if she released him , she could get back her youth !", "storylet_id": "204867"}], [{"original_text": "Kelly immediately released him and she was given her youth forever.", "album_id": "72157626225931816", "photo_flickr_id": "5509897289", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40973", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] immediately released him and she was given her youth forever .", "storylet_id": "204868"}], [{"original_text": "Kelly has been alive for over 500 years now. She still hasn't gone on the water.", "album_id": "72157626225931816", "photo_flickr_id": "5509896733", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "40973", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] has been alive for over 500 years now . she still has n't gone on the water .", "storylet_id": "204869"}], [{"original_text": "I went on trip to the country!", "album_id": "72157626225931816", "photo_flickr_id": "5509904003", "setting": "last-3-pick-old-and-tell", "worker_id": "F583IFYP2R4DJJU", "story_id": "40974", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on trip to the country !", "storylet_id": "204870"}], [{"original_text": "I took my grandma with me!", "album_id": "72157626225931816", "photo_flickr_id": "5510507478", "setting": "last-3-pick-old-and-tell", "worker_id": "F583IFYP2R4DJJU", "story_id": "40974", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i took my grandma with me !", "storylet_id": "204871"}], [{"original_text": "There we saw all sorts or animals including pigs.", "album_id": "72157626225931816", "photo_flickr_id": "5510500884", "setting": "last-3-pick-old-and-tell", "worker_id": "F583IFYP2R4DJJU", "story_id": "40974", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there we saw all sorts or animals including pigs .", "storylet_id": "204872"}], [{"original_text": "After a long day in the country, we decided to visit the shops and pub in the village.", "album_id": "72157626225931816", "photo_flickr_id": "5509897289", "setting": "last-3-pick-old-and-tell", "worker_id": "F583IFYP2R4DJJU", "story_id": "40974", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a long day in the country , we decided to visit the shops and pub in the village .", "storylet_id": "204873"}], [{"original_text": "We decided to end the day with a drink at the village pub.", "album_id": "72157626225931816", "photo_flickr_id": "5509896733", "setting": "last-3-pick-old-and-tell", "worker_id": "F583IFYP2R4DJJU", "story_id": "40974", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to end the day with a drink at the village pub .", "storylet_id": "204874"}], [{"original_text": "It was about time we treated ourselves to a nice dinner", "album_id": "72157626395315207", "photo_flickr_id": "5629428764", "setting": "first-2-pick-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "40975", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was about time we treated ourselves to a nice dinner", "storylet_id": "204875"}], [{"original_text": "The Menu wasn't large, although it offered some classy options", "album_id": "72157626395315207", "photo_flickr_id": "5628850613", "setting": "first-2-pick-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "40975", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the menu was n't large , although it offered some classy options", "storylet_id": "204876"}], [{"original_text": "The lighting was ideal, and the food looked great.", "album_id": "72157626395315207", "photo_flickr_id": "5629444792", "setting": "first-2-pick-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "40975", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lighting was ideal , and the food looked great .", "storylet_id": "204877"}], [{"original_text": "The presentation of food was typical fancy restaurant style where there was more plate than food", "album_id": "72157626395315207", "photo_flickr_id": "5629449410", "setting": "first-2-pick-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "40975", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the presentation of food was typical fancy restaurant style where there was more plate than food", "storylet_id": "204878"}], [{"original_text": "And last of all, we tried a new kind of dessert ", "album_id": "72157626395315207", "photo_flickr_id": "5628874095", "setting": "first-2-pick-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "40975", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and last of all , we tried a new kind of dessert", "storylet_id": "204879"}], [{"original_text": "I took my wife out for our anniversary dinner.", "album_id": "72157626395315207", "photo_flickr_id": "5629428764", "setting": "first-2-pick-and-tell", "worker_id": "2ZBJYKCZD17FJTI", "story_id": "40976", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took my wife out for our anniversary dinner .", "storylet_id": "204880"}], [{"original_text": "Our first course was a light but delicious salad.", "album_id": "72157626395315207", "photo_flickr_id": "5629451824", "setting": "first-2-pick-and-tell", "worker_id": "2ZBJYKCZD17FJTI", "story_id": "40976", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our first course was a light but delicious salad .", "storylet_id": "204881"}], [{"original_text": "Following our salad we had squash bisque. ", "album_id": "72157626395315207", "photo_flickr_id": "5629440578", "setting": "first-2-pick-and-tell", "worker_id": "2ZBJYKCZD17FJTI", "story_id": "40976", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "following our salad we had squash bisque .", "storylet_id": "204882"}], [{"original_text": "For our main course we had a beautifully plated salmon.", "album_id": "72157626395315207", "photo_flickr_id": "5629449410", "setting": "first-2-pick-and-tell", "worker_id": "2ZBJYKCZD17FJTI", "story_id": "40976", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "for our main course we had a beautifully plated salmon .", "storylet_id": "204883"}], [{"original_text": "To end our wonderful night we had a parfait for dessert.", "album_id": "72157626395315207", "photo_flickr_id": "5628874095", "setting": "first-2-pick-and-tell", "worker_id": "2ZBJYKCZD17FJTI", "story_id": "40976", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to end our wonderful night we had a parfait for dessert .", "storylet_id": "204884"}], [{"original_text": "Smiling while awaiting her meal. ", "album_id": "72157626395315207", "photo_flickr_id": "5629428764", "setting": "last-3-pick-old-and-tell", "worker_id": "M9AUSHP1ECTG4HD", "story_id": "40977", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "smiling while awaiting her meal .", "storylet_id": "204885"}], [{"original_text": "The menu filled with our meal options. ", "album_id": "72157626395315207", "photo_flickr_id": "5628850613", "setting": "last-3-pick-old-and-tell", "worker_id": "M9AUSHP1ECTG4HD", "story_id": "40977", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the menu filled with our meal options .", "storylet_id": "204886"}], [{"original_text": "Showing off her first course. ", "album_id": "72157626395315207", "photo_flickr_id": "5629444792", "setting": "last-3-pick-old-and-tell", "worker_id": "M9AUSHP1ECTG4HD", "story_id": "40977", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "showing off her first course .", "storylet_id": "204887"}], [{"original_text": "The main course is served. ", "album_id": "72157626395315207", "photo_flickr_id": "5629449410", "setting": "last-3-pick-old-and-tell", "worker_id": "M9AUSHP1ECTG4HD", "story_id": "40977", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the main course is served .", "storylet_id": "204888"}], [{"original_text": "Last but not least, dessert is served. ", "album_id": "72157626395315207", "photo_flickr_id": "5628874095", "setting": "last-3-pick-old-and-tell", "worker_id": "M9AUSHP1ECTG4HD", "story_id": "40977", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last but not least , dessert is served .", "storylet_id": "204889"}], [{"original_text": "A woman and her husband went out to eat to celebrate their anniversary.", "album_id": "72157626395315207", "photo_flickr_id": "5629428764", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40978", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a woman and her husband went out to eat to celebrate their anniversary .", "storylet_id": "204890"}], [{"original_text": "The first course was a yummy salad.", "album_id": "72157626395315207", "photo_flickr_id": "5629451824", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40978", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first course was a yummy salad .", "storylet_id": "204891"}], [{"original_text": "The next course was a pallet cleanser.", "album_id": "72157626395315207", "photo_flickr_id": "5629440578", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40978", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next course was a pallet cleanser .", "storylet_id": "204892"}], [{"original_text": "After that she had a delicious main course.", "album_id": "72157626395315207", "photo_flickr_id": "5629449410", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40978", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that she had a delicious main course .", "storylet_id": "204893"}], [{"original_text": "They ended the evening with yummy dessert.", "album_id": "72157626395315207", "photo_flickr_id": "5628874095", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "40978", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ended the evening with yummy dessert .", "storylet_id": "204894"}], [{"original_text": "Last night I went out to dinner with my wife.", "album_id": "72157626395315207", "photo_flickr_id": "5629428764", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "40979", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night i went out to dinner with my wife .", "storylet_id": "204895"}], [{"original_text": "Looking at the menu I was not sure this was the place for me.", "album_id": "72157626395315207", "photo_flickr_id": "5628850613", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "40979", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "looking at the menu i was not sure this was the place for me .", "storylet_id": "204896"}], [{"original_text": "My wife got her food before me and seemed to really enjoy it.", "album_id": "72157626395315207", "photo_flickr_id": "5629444792", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "40979", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my wife got her food before me and seemed to really enjoy it .", "storylet_id": "204897"}], [{"original_text": "The dish I got was in small proportions and I was not satisfied.", "album_id": "72157626395315207", "photo_flickr_id": "5629449410", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "40979", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dish i got was in small proportions and i was not satisfied .", "storylet_id": "204898"}], [{"original_text": "I then got dessert and was much more pleased with what I got.", "album_id": "72157626395315207", "photo_flickr_id": "5628874095", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "40979", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i then got dessert and was much more pleased with what i got .", "storylet_id": "204899"}], [{"original_text": "The event made the breaking news of the local newspaper.", "album_id": "72157626435910098", "photo_flickr_id": "5590008911", "setting": "first-2-pick-and-tell", "worker_id": "XSJPBUTY6MXM4I6", "story_id": "40980", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the event made the breaking news of the local newspaper .", "storylet_id": "204900"}], [{"original_text": "The long awaited certificate was presented in the most formal way.", "album_id": "72157626435910098", "photo_flickr_id": "5592076765", "setting": "first-2-pick-and-tell", "worker_id": "XSJPBUTY6MXM4I6", "story_id": "40980", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the long awaited certificate was presented in the most formal way .", "storylet_id": "204901"}], [{"original_text": "I still remember the style of the building.", "album_id": "72157626435910098", "photo_flickr_id": "5592685704", "setting": "first-2-pick-and-tell", "worker_id": "XSJPBUTY6MXM4I6", "story_id": "40980", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i still remember the style of the building .", "storylet_id": "204902"}], [{"original_text": "The box got misplaced before the ceremony, but was found in the nick of time.", "album_id": "72157626435910098", "photo_flickr_id": "5592687094", "setting": "first-2-pick-and-tell", "worker_id": "XSJPBUTY6MXM4I6", "story_id": "40980", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the box got misplaced before the ceremony , but was found in the nick of time .", "storylet_id": "204903"}], [{"original_text": "Everything ended with a diner prepared by our local caterer.", "album_id": "72157626435910098", "photo_flickr_id": "5592698196", "setting": "first-2-pick-and-tell", "worker_id": "XSJPBUTY6MXM4I6", "story_id": "40980", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everything ended with a diner prepared by our local caterer .", "storylet_id": "204904"}], [{"original_text": "Our business was very proud.", "album_id": "72157626435910098", "photo_flickr_id": "5590008911", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "40981", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our business was very proud .", "storylet_id": "204905"}], [{"original_text": "We had quite a party!", "album_id": "72157626435910098", "photo_flickr_id": "5592067083", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "40981", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had quite a party !", "storylet_id": "204906"}], [{"original_text": "We all love posing for that picture.", "album_id": "72157626435910098", "photo_flickr_id": "5592076765", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "40981", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all love posing for that picture .", "storylet_id": "204907"}], [{"original_text": "That was quite the dinner.", "album_id": "72157626435910098", "photo_flickr_id": "5592082593", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "40981", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that was quite the dinner .", "storylet_id": "204908"}], [{"original_text": "I will never forget this day.", "album_id": "72157626435910098", "photo_flickr_id": "5592677602", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "40981", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i will never forget this day .", "storylet_id": "204909"}], [{"original_text": "this was a family reunion of working together", "album_id": "72157626435910098", "photo_flickr_id": "5590008911", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40982", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was a family reunion of working together", "storylet_id": "204910"}], [{"original_text": "they all met and posed for a picture", "album_id": "72157626435910098", "photo_flickr_id": "5592076765", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40982", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all met and posed for a picture", "storylet_id": "204911"}], [{"original_text": "and then they took another group photo on the staircase ", "album_id": "72157626435910098", "photo_flickr_id": "5592685704", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40982", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and then they took another group photo on the staircase", "storylet_id": "204912"}], [{"original_text": "they exchanged gifts as well", "album_id": "72157626435910098", "photo_flickr_id": "5592687094", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40982", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they exchanged gifts as well", "storylet_id": "204913"}], [{"original_text": "then they sat down and enjoyed dinner together", "album_id": "72157626435910098", "photo_flickr_id": "5592698196", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40982", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then they sat down and enjoyed dinner together", "storylet_id": "204914"}], [{"original_text": "The story ends with an article, but it started long before.", "album_id": "72157626435910098", "photo_flickr_id": "5590008911", "setting": "last-3-pick-old-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "40983", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the story ends with an article , but it started long before .", "storylet_id": "204915"}], [{"original_text": "This woman won a major award.", "album_id": "72157626435910098", "photo_flickr_id": "5592076765", "setting": "last-3-pick-old-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "40983", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this woman won a major award .", "storylet_id": "204916"}], [{"original_text": "Her friends and family were there to witness the event.", "album_id": "72157626435910098", "photo_flickr_id": "5592685704", "setting": "last-3-pick-old-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "40983", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her friends and family were there to witness the event .", "storylet_id": "204917"}], [{"original_text": "The award was presented by her best friend. ", "album_id": "72157626435910098", "photo_flickr_id": "5592687094", "setting": "last-3-pick-old-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "40983", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the award was presented by her best friend .", "storylet_id": "204918"}], [{"original_text": "After the ceremony, they enjoyed a wonderful dinner. ", "album_id": "72157626435910098", "photo_flickr_id": "5592698196", "setting": "last-3-pick-old-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "40983", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the ceremony , they enjoyed a wonderful dinner .", "storylet_id": "204919"}], [{"original_text": "I was so proud that all of our hard work was finally being recognized by the local paper.", "album_id": "72157626435910098", "photo_flickr_id": "5590008911", "setting": "last-3-pick-old-and-tell", "worker_id": "BX3BZTB2WA0X2EW", "story_id": "40984", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was so proud that all of our hard work was finally being recognized by the local paper .", "storylet_id": "204920"}], [{"original_text": "They were there to cover the special award we were given.", "album_id": "72157626435910098", "photo_flickr_id": "5592076765", "setting": "last-3-pick-old-and-tell", "worker_id": "BX3BZTB2WA0X2EW", "story_id": "40984", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were there to cover the special award we were given .", "storylet_id": "204921"}], [{"original_text": "And they made sure to get a shot of our whole group together.", "album_id": "72157626435910098", "photo_flickr_id": "5592685704", "setting": "last-3-pick-old-and-tell", "worker_id": "BX3BZTB2WA0X2EW", "story_id": "40984", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and they made sure to get a shot of our whole group together .", "storylet_id": "204922"}], [{"original_text": "Afterward we enjoyed some relaxing time socializing with our friends.", "album_id": "72157626435910098", "photo_flickr_id": "5592687094", "setting": "last-3-pick-old-and-tell", "worker_id": "BX3BZTB2WA0X2EW", "story_id": "40984", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we enjoyed some relaxing time socializing with our friends .", "storylet_id": "204923"}], [{"original_text": "And finally we all sat down to a delicious meal together to celebrate.", "album_id": "72157626435910098", "photo_flickr_id": "5592698196", "setting": "last-3-pick-old-and-tell", "worker_id": "BX3BZTB2WA0X2EW", "story_id": "40984", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and finally we all sat down to a delicious meal together to celebrate .", "storylet_id": "204924"}], [{"original_text": "The couple attended their first baseball game ever.", "album_id": "72157627095995795", "photo_flickr_id": "5949358788", "setting": "first-2-pick-and-tell", "worker_id": "SB635RXMSARZVB0", "story_id": "40985", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple attended their first baseball game ever .", "storylet_id": "204925"}], [{"original_text": "She was so excited to be there she tried to meet every mascot.", "album_id": "72157627095995795", "photo_flickr_id": "5949360376", "setting": "first-2-pick-and-tell", "worker_id": "SB635RXMSARZVB0", "story_id": "40985", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was so excited to be there she tried to meet every mascot .", "storylet_id": "204926"}], [{"original_text": "She even convinced him to be in a few pictures too.", "album_id": "72157627095995795", "photo_flickr_id": "5948805493", "setting": "first-2-pick-and-tell", "worker_id": "SB635RXMSARZVB0", "story_id": "40985", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she even convinced him to be in a few pictures too .", "storylet_id": "204927"}], [{"original_text": "They even got to see someone from the team they were rooting for hit a home run.", "album_id": "72157627095995795", "photo_flickr_id": "5949364224", "setting": "first-2-pick-and-tell", "worker_id": "SB635RXMSARZVB0", "story_id": "40985", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even got to see someone from the team they were rooting for hit a home run .", "storylet_id": "204928"}], [{"original_text": "It was a great game, and their team won. They have officially become baseball fans.", "album_id": "72157627095995795", "photo_flickr_id": "5948812711", "setting": "first-2-pick-and-tell", "worker_id": "SB635RXMSARZVB0", "story_id": "40985", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great game , and their team won . they have officially become baseball fans .", "storylet_id": "204929"}], [{"original_text": "What a perfect day for a ballgame!", "album_id": "72157627095995795", "photo_flickr_id": "5949358788", "setting": "first-2-pick-and-tell", "worker_id": "843XIX1F9C23WOY", "story_id": "40986", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what a perfect day for a ballgame !", "storylet_id": "204930"}], [{"original_text": "I love Herky the mascot! ", "album_id": "72157627095995795", "photo_flickr_id": "5949360376", "setting": "first-2-pick-and-tell", "worker_id": "843XIX1F9C23WOY", "story_id": "40986", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love herky the mascot !", "storylet_id": "204931"}], [{"original_text": "Johnny Smith hit a ball out of the park!! It was the final run of the game!!", "album_id": "72157627095995795", "photo_flickr_id": "5948807017", "setting": "first-2-pick-and-tell", "worker_id": "843XIX1F9C23WOY", "story_id": "40986", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] smith hit a ball out of the park ! ! it was the final run of the game ! !", "storylet_id": "204932"}], [{"original_text": "We won the game 12 to 6! What a day!", "album_id": "72157627095995795", "photo_flickr_id": "5948812375", "setting": "first-2-pick-and-tell", "worker_id": "843XIX1F9C23WOY", "story_id": "40986", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we won the game 12 to 6 ! what a day !", "storylet_id": "204933"}], [{"original_text": "Good memories were made at Raley Field today. Can't wait to come back!", "album_id": "72157627095995795", "photo_flickr_id": "5949367158", "setting": "first-2-pick-and-tell", "worker_id": "843XIX1F9C23WOY", "story_id": "40986", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "good memories were made at location location today . ca n't wait to come back !", "storylet_id": "204934"}], [{"original_text": "I went to a River Cat's game with my family at Raley Field.", "album_id": "72157627095995795", "photo_flickr_id": "5949358788", "setting": "last-3-pick-old-and-tell", "worker_id": "0R6YX16N8DTGGB9", "story_id": "40987", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a [male] cat 's game with my family at location location .", "storylet_id": "204935"}], [{"original_text": "I posed with a mascot.", "album_id": "72157627095995795", "photo_flickr_id": "5949360376", "setting": "last-3-pick-old-and-tell", "worker_id": "0R6YX16N8DTGGB9", "story_id": "40987", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i posed with a mascot .", "storylet_id": "204936"}], [{"original_text": "My son and I took a picture with Scooter.", "album_id": "72157627095995795", "photo_flickr_id": "5948805493", "setting": "last-3-pick-old-and-tell", "worker_id": "0R6YX16N8DTGGB9", "story_id": "40987", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my son and i took a picture with scooter .", "storylet_id": "204937"}], [{"original_text": "Here is the view from behind the catcher.", "album_id": "72157627095995795", "photo_flickr_id": "5949364224", "setting": "last-3-pick-old-and-tell", "worker_id": "0R6YX16N8DTGGB9", "story_id": "40987", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is the view from behind the catcher .", "storylet_id": "204938"}], [{"original_text": "It was a great game and the River Cats won.", "album_id": "72157627095995795", "photo_flickr_id": "5948812711", "setting": "last-3-pick-old-and-tell", "worker_id": "0R6YX16N8DTGGB9", "story_id": "40987", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great game and the organization organization won .", "storylet_id": "204939"}], [{"original_text": "We always enjoy a ball game at the field. Nothing like a day in the sun watching the game. ", "album_id": "72157627095995795", "photo_flickr_id": "5949358788", "setting": "last-3-pick-old-and-tell", "worker_id": "U2GKCYPK7EM4TF8", "story_id": "40988", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we always enjoy a ball game at the field . nothing like a day in the sun watching the game .", "storylet_id": "204940"}], [{"original_text": "My wife is a big fan of the mascot. They seemed to spend a lot of time together ...", "album_id": "72157627095995795", "photo_flickr_id": "5949360376", "setting": "last-3-pick-old-and-tell", "worker_id": "U2GKCYPK7EM4TF8", "story_id": "40988", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my wife is a big fan of the mascot . they seemed to spend a lot of time together ...", "storylet_id": "204941"}], [{"original_text": "But I got into the picture as well .. I'm on the right. The tall guy is yet another mascot. My wife is a mascot magnet! ", "album_id": "72157627095995795", "photo_flickr_id": "5948805493", "setting": "last-3-pick-old-and-tell", "worker_id": "U2GKCYPK7EM4TF8", "story_id": "40988", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but i got into the picture as well .. i 'm on the right . the tall guy is yet another mascot . my wife is a mascot magnet !", "storylet_id": "204942"}], [{"original_text": "The game was great. The kids had a fantastic time and our guys won. We always have a fun time cheering them on. ", "album_id": "72157627095995795", "photo_flickr_id": "5949364224", "setting": "last-3-pick-old-and-tell", "worker_id": "U2GKCYPK7EM4TF8", "story_id": "40988", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the game was great . the kids had a fantastic time and our guys won . we always have a fun time cheering them on .", "storylet_id": "204943"}], [{"original_text": "The other team didn't stick around after we won big! Maybe next time. ", "album_id": "72157627095995795", "photo_flickr_id": "5948812711", "setting": "last-3-pick-old-and-tell", "worker_id": "U2GKCYPK7EM4TF8", "story_id": "40988", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the other team did n't stick around after we won big ! maybe next time .", "storylet_id": "204944"}], [{"original_text": "Gwen got a free ticket to her favorite baseball team.", "album_id": "72157627095995795", "photo_flickr_id": "5949358788", "setting": "last-3-pick-old-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "40989", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] got a free ticket to her favorite baseball team .", "storylet_id": "204945"}], [{"original_text": "She got to meet the team's mascot.", "album_id": "72157627095995795", "photo_flickr_id": "5949360376", "setting": "last-3-pick-old-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "40989", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she got to meet the team 's mascot .", "storylet_id": "204946"}], [{"original_text": "She and her boyfriend took bunch of pictures together.", "album_id": "72157627095995795", "photo_flickr_id": "5948805493", "setting": "last-3-pick-old-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "40989", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she and her boyfriend took bunch of pictures together .", "storylet_id": "204947"}], [{"original_text": "She enjoys watching her home team play.", "album_id": "72157627095995795", "photo_flickr_id": "5949364224", "setting": "last-3-pick-old-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "40989", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she enjoys watching her home team play .", "storylet_id": "204948"}], [{"original_text": "It got really exciting when her home team won.", "album_id": "72157627095995795", "photo_flickr_id": "5948812711", "setting": "last-3-pick-old-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "40989", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it got really exciting when her home team won .", "storylet_id": "204949"}], [{"original_text": "Decided to go around town taking pictures. This is just silly.", "album_id": "72157627315889932", "photo_flickr_id": "5990557061", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40990", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "decided to go around town taking pictures . this is just silly .", "storylet_id": "204950"}], [{"original_text": "Look she's got big hands. Thanks for your donation to my picture taking.", "album_id": "72157627315889932", "photo_flickr_id": "5991115588", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40990", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look she 's got big hands . thanks for your donation to my picture taking .", "storylet_id": "204951"}], [{"original_text": "These flowers are dead but pretty at the same time.", "album_id": "72157627315889932", "photo_flickr_id": "5991116414", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40990", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these flowers are dead but pretty at the same time .", "storylet_id": "204952"}], [{"original_text": "What a wonderful waterfall.", "album_id": "72157627315889932", "photo_flickr_id": "5990559889", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40990", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what a wonderful waterfall .", "storylet_id": "204953"}], [{"original_text": "Wait, what a better wonderful waterfall.", "album_id": "72157627315889932", "photo_flickr_id": "5991117344", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "40990", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "wait , what a better wonderful waterfall .", "storylet_id": "204954"}], [{"original_text": "I am a photographer that likes to show a different perspective of a familiar city.", "album_id": "72157627315889932", "photo_flickr_id": "5990559615", "setting": "first-2-pick-and-tell", "worker_id": "SIDJRTU8RIIXRVJ", "story_id": "40991", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am a photographer that likes to show a different perspective of a familiar city .", "storylet_id": "204955"}], [{"original_text": "While most cities have statues, this modern take of the happy face intrigues me.", "album_id": "72157627315889932", "photo_flickr_id": "5990557061", "setting": "first-2-pick-and-tell", "worker_id": "SIDJRTU8RIIXRVJ", "story_id": "40991", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while most cities have statues , this modern take of the happy face intrigues me .", "storylet_id": "204956"}], [{"original_text": "From this perspective, the ferris wheel becomes an interesting monument reaching for the sky.", "album_id": "72157627315889932", "photo_flickr_id": "5991114764", "setting": "first-2-pick-and-tell", "worker_id": "SIDJRTU8RIIXRVJ", "story_id": "40991", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "from this perspective , the ferris wheel becomes an interesting monument reaching for the sky .", "storylet_id": "204957"}], [{"original_text": "With this shot, I can imagine living in a domed city.", "album_id": "72157627315889932", "photo_flickr_id": "5991115884", "setting": "first-2-pick-and-tell", "worker_id": "SIDJRTU8RIIXRVJ", "story_id": "40991", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with this shot , i can imagine living in a domed city .", "storylet_id": "204958"}], [{"original_text": "A moment of curiosity between a woman and her reflection. ", "album_id": "72157627315889932", "photo_flickr_id": "5991115304", "setting": "first-2-pick-and-tell", "worker_id": "SIDJRTU8RIIXRVJ", "story_id": "40991", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a moment of curiosity between a woman and her reflection .", "storylet_id": "204959"}], [{"original_text": "The park is a great place to view the city.", "album_id": "72157627315889932", "photo_flickr_id": "5990559615", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40992", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the park is a great place to view the city .", "storylet_id": "204960"}], [{"original_text": "There are lots of monuments and other exiting landmarks.", "album_id": "72157627315889932", "photo_flickr_id": "5990557061", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40992", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are lots of monuments and other exiting landmarks .", "storylet_id": "204961"}], [{"original_text": "The rides are fun for adults and kids alike.", "album_id": "72157627315889932", "photo_flickr_id": "5991114764", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40992", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the rides are fun for adults and kids alike .", "storylet_id": "204962"}], [{"original_text": "This photo provides an interesting way to view the city.", "album_id": "72157627315889932", "photo_flickr_id": "5991115884", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40992", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this photo provides an interesting way to view the city .", "storylet_id": "204963"}], [{"original_text": "Parents and kids love to spend all day here.", "album_id": "72157627315889932", "photo_flickr_id": "5991115304", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "40992", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "parents and kids love to spend all day here .", "storylet_id": "204964"}], [{"original_text": "The new city square was really nice and fun, it was definitely worth the wait.", "album_id": "72157627315889932", "photo_flickr_id": "5990559615", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40993", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the new city square was really nice and fun , it was definitely worth the wait .", "storylet_id": "204965"}], [{"original_text": "This statue was so unique that we had to take a picture of it.", "album_id": "72157627315889932", "photo_flickr_id": "5990557061", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40993", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this statue was so unique that we had to take a picture of it .", "storylet_id": "204966"}], [{"original_text": "This building was still being constructed, but its getting there.", "album_id": "72157627315889932", "photo_flickr_id": "5991114764", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40993", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this building was still being constructed , but its getting there .", "storylet_id": "204967"}], [{"original_text": "The new designs outside was unique, but much needed.", "album_id": "72157627315889932", "photo_flickr_id": "5991115884", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40993", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the new designs outside was unique , but much needed .", "storylet_id": "204968"}], [{"original_text": "This giant mirror ball was awesome, and provided a great photo.", "album_id": "72157627315889932", "photo_flickr_id": "5991115304", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "40993", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this giant mirror ball was awesome , and provided a great photo .", "storylet_id": "204969"}], [{"original_text": "A green statue appears in town.", "album_id": "72157627315889932", "photo_flickr_id": "5990557061", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40994", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a green statue appears in town .", "storylet_id": "204970"}], [{"original_text": "Francine has to see it and decides to go downtown to see it.", "album_id": "72157627315889932", "photo_flickr_id": "5991115588", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40994", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] has to see it and decides to go downtown to see it .", "storylet_id": "204971"}], [{"original_text": "After viewing the statue she looks and takes a picture of the pretty flowers.", "album_id": "72157627315889932", "photo_flickr_id": "5991116414", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40994", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after viewing the statue she looks and takes a picture of the pretty flowers .", "storylet_id": "204972"}], [{"original_text": "Returning to the park she takes another photo of this fountain.", "album_id": "72157627315889932", "photo_flickr_id": "5990559889", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40994", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "returning to the park she takes another photo of this fountain .", "storylet_id": "204973"}], [{"original_text": "She takes another picture of the famous water fountain in Chicago.", "album_id": "72157627315889932", "photo_flickr_id": "5991117344", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "40994", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she takes another picture of the famous water fountain in location .", "storylet_id": "204974"}], [{"original_text": "They planned out their trip to San Francisco.", "album_id": "72157627505772422", "photo_flickr_id": "6075631914", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40995", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they planned out their trip to location location .", "storylet_id": "204975"}], [{"original_text": "They first went to the golden gate bridge it was very foggy.", "album_id": "72157627505772422", "photo_flickr_id": "6075116773", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40995", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they first went to the golden gate bridge it was very foggy .", "storylet_id": "204976"}], [{"original_text": "They then visited Lands' End up close ", "album_id": "72157627505772422", "photo_flickr_id": "6075134865", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40995", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they then visited lands ' end up close", "storylet_id": "204977"}], [{"original_text": "As they drove away they snapped another picture of the golden gate bridge.", "album_id": "72157627505772422", "photo_flickr_id": "6075675310", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40995", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as they drove away they snapped another picture of the golden gate bridge .", "storylet_id": "204978"}], [{"original_text": "They finished the trip with a nice dinner in San Francisco.", "album_id": "72157627505772422", "photo_flickr_id": "6075164717", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "40995", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they finished the trip with a nice dinner in location location .", "storylet_id": "204979"}], [{"original_text": "The beautiful flowers survived the horrible storm.", "album_id": "72157627505772422", "photo_flickr_id": "6075673104", "setting": "first-2-pick-and-tell", "worker_id": "RTJXLW3RGUESH0R", "story_id": "40996", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beautiful flowers survived the horrible storm .", "storylet_id": "204980"}], [{"original_text": "The beautiful bridge, and the beautiful water I've always loved this view ", "album_id": "72157627505772422", "photo_flickr_id": "6075675310", "setting": "first-2-pick-and-tell", "worker_id": "RTJXLW3RGUESH0R", "story_id": "40996", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the beautiful bridge , and the beautiful water i 've always loved this view", "storylet_id": "204981"}], [{"original_text": "This little bird is a happy little bird, he flew over to me when I was walking. He's looking out at the sea.", "album_id": "72157627505772422", "photo_flickr_id": "6075153499", "setting": "first-2-pick-and-tell", "worker_id": "RTJXLW3RGUESH0R", "story_id": "40996", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this little bird is a happy little bird , he flew over to me when i was walking . he 's looking out at the sea .", "storylet_id": "204982"}], [{"original_text": "A beautiful view of this beautiful bridge. One of my favorite pictures.", "album_id": "72157627505772422", "photo_flickr_id": "6075159511", "setting": "first-2-pick-and-tell", "worker_id": "RTJXLW3RGUESH0R", "story_id": "40996", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a beautiful view of this beautiful bridge . one of my favorite pictures .", "storylet_id": "204983"}], [{"original_text": "This was my yummy plate of food one of the best meals I've ever had, made me feel good", "album_id": "72157627505772422", "photo_flickr_id": "6075164717", "setting": "first-2-pick-and-tell", "worker_id": "RTJXLW3RGUESH0R", "story_id": "40996", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was my yummy plate of food one of the best meals i 've ever had , made me feel good", "storylet_id": "204984"}], [{"original_text": "We didn't expect such beauty outdoors.", "album_id": "72157627505772422", "photo_flickr_id": "6075673104", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "40997", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we did n't expect such beauty outdoors .", "storylet_id": "204985"}], [{"original_text": "The bridge was all I thought it would be.", "album_id": "72157627505772422", "photo_flickr_id": "6075675310", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "40997", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bridge was all i thought it would be .", "storylet_id": "204986"}], [{"original_text": "The view of the water were amazing.", "album_id": "72157627505772422", "photo_flickr_id": "6075153499", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "40997", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the view of the water were amazing .", "storylet_id": "204987"}], [{"original_text": "The bridge was breath taking. ", "album_id": "72157627505772422", "photo_flickr_id": "6075159511", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "40997", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bridge was breath taking .", "storylet_id": "204988"}], [{"original_text": "We all agreed the food was fantastic.", "album_id": "72157627505772422", "photo_flickr_id": "6075164717", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "40997", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all agreed the food was fantastic .", "storylet_id": "204989"}], [{"original_text": "map of where we are planning to visit on our road trip. ", "album_id": "72157627505772422", "photo_flickr_id": "6075631914", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40998", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "map of where we are planning to visit on our road trip .", "storylet_id": "204990"}], [{"original_text": "San francisco bay Golden gate bridge. ", "album_id": "72157627505772422", "photo_flickr_id": "6075116773", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40998", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "location location location location gate bridge .", "storylet_id": "204991"}], [{"original_text": "picture of the Golden Gate Lands End. ", "album_id": "72157627505772422", "photo_flickr_id": "6075134865", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40998", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "picture of the golden gate lands end .", "storylet_id": "204992"}], [{"original_text": "The Golden Gate bridge from afar. ", "album_id": "72157627505772422", "photo_flickr_id": "6075675310", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40998", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the location location bridge from afar .", "storylet_id": "204993"}], [{"original_text": "After we stopped for dinner. ", "album_id": "72157627505772422", "photo_flickr_id": "6075164717", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "40998", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we stopped for dinner .", "storylet_id": "204994"}], [{"original_text": "Before leaving, we mapped out the road trip and all the landmarks. ", "album_id": "72157627505772422", "photo_flickr_id": "6075631914", "setting": "last-3-pick-old-and-tell", "worker_id": "320L9WS0RY3TPQI", "story_id": "40999", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before leaving , we mapped out the road trip and all the landmarks .", "storylet_id": "204995"}], [{"original_text": "First we stopped at the Golden Gate Bridge. ", "album_id": "72157627505772422", "photo_flickr_id": "6075116773", "setting": "last-3-pick-old-and-tell", "worker_id": "320L9WS0RY3TPQI", "story_id": "40999", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we stopped at the location location location .", "storylet_id": "204996"}], [{"original_text": "Next we visited Lands End National Park.", "album_id": "72157627505772422", "photo_flickr_id": "6075134865", "setting": "last-3-pick-old-and-tell", "worker_id": "320L9WS0RY3TPQI", "story_id": "40999", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next we visited location location location location .", "storylet_id": "204997"}], [{"original_text": "The park had some lovely photo opportunities. ", "album_id": "72157627505772422", "photo_flickr_id": "6075675310", "setting": "last-3-pick-old-and-tell", "worker_id": "320L9WS0RY3TPQI", "story_id": "40999", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the park had some lovely photo opportunities .", "storylet_id": "204998"}], [{"original_text": "All the walking in the park got us hungry, so we stopped for dinner.", "album_id": "72157627505772422", "photo_flickr_id": "6075164717", "setting": "last-3-pick-old-and-tell", "worker_id": "320L9WS0RY3TPQI", "story_id": "40999", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the walking in the park got us hungry , so we stopped for dinner .", "storylet_id": "204999"}], [{"original_text": "Today we took a trip to the zoo.", "album_id": "72157628097425285", "photo_flickr_id": "6383524351", "setting": "first-2-pick-and-tell", "worker_id": "2XT3EL7YU0YVNPI", "story_id": "41000", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we took a trip to the zoo .", "storylet_id": "205000"}], [{"original_text": "We saw exciting architecture, this place has wonderful buildings.", "album_id": "72157628097425285", "photo_flickr_id": "6383542995", "setting": "first-2-pick-and-tell", "worker_id": "2XT3EL7YU0YVNPI", "story_id": "41000", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw exciting architecture , this place has wonderful buildings .", "storylet_id": "205001"}], [{"original_text": "We saw a penguin at the zoo, such an interesting animal.", "album_id": "72157628097425285", "photo_flickr_id": "6383547491", "setting": "first-2-pick-and-tell", "worker_id": "2XT3EL7YU0YVNPI", "story_id": "41000", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw a penguin at the zoo , such an interesting animal .", "storylet_id": "205002"}], [{"original_text": "We also saw a polar bear, one of my favorite animals.", "album_id": "72157628097425285", "photo_flickr_id": "6383554577", "setting": "first-2-pick-and-tell", "worker_id": "2XT3EL7YU0YVNPI", "story_id": "41000", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also saw a polar bear , one of my favorite animals .", "storylet_id": "205003"}], [{"original_text": "They even had fun head in hole boards. Look at the face he's making, he's so goofy.", "album_id": "72157628097425285", "photo_flickr_id": "6383570567", "setting": "first-2-pick-and-tell", "worker_id": "2XT3EL7YU0YVNPI", "story_id": "41000", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even had fun head in hole boards . look at the face he 's making , he 's so goofy .", "storylet_id": "205004"}], [{"original_text": "We gathered the troops up for Kyle's first time at the Zoo", "album_id": "72157628097425285", "photo_flickr_id": "6383524351", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "41001", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we gathered the troops up for [male] 's first time at the zoo", "storylet_id": "205005"}], [{"original_text": "We all eagerly waited for our trip to the zoo.", "album_id": "72157628097425285", "photo_flickr_id": "6383568673", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "41001", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all eagerly waited for our trip to the zoo .", "storylet_id": "205006"}], [{"original_text": "Our first stop was the penguins. They're such a goofy bird.", "album_id": "72157628097425285", "photo_flickr_id": "6383547491", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "41001", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our first stop was the penguins . they 're such a goofy bird .", "storylet_id": "205007"}], [{"original_text": "We continued down the Antarctic and found some polar bears to look at.", "album_id": "72157628097425285", "photo_flickr_id": "6383554577", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "41001", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we continued down the location and found some polar bears to look at .", "storylet_id": "205008"}], [{"original_text": "Of course after visited the Antarctic, all we could think about was getting some ice cream.", "album_id": "72157628097425285", "photo_flickr_id": "6383559753", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "41001", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of course after visited the location , all we could think about was getting some ice cream .", "storylet_id": "205009"}], [{"original_text": "My mom, grandpa, and I went on a day trip to the zoo.", "album_id": "72157628097425285", "photo_flickr_id": "6383524351", "setting": "last-3-pick-old-and-tell", "worker_id": "F3ZD7H00UKQKAJP", "story_id": "41002", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my mom , grandpa , and i went on a day trip to the zoo .", "storylet_id": "205010"}], [{"original_text": "We stopped at this tower restaurant for breakfast first.", "album_id": "72157628097425285", "photo_flickr_id": "6383542995", "setting": "last-3-pick-old-and-tell", "worker_id": "F3ZD7H00UKQKAJP", "story_id": "41002", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped at this tower restaurant for breakfast first .", "storylet_id": "205011"}], [{"original_text": "My favorite exhibit was the penguins.", "album_id": "72157628097425285", "photo_flickr_id": "6383547491", "setting": "last-3-pick-old-and-tell", "worker_id": "F3ZD7H00UKQKAJP", "story_id": "41002", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my favorite exhibit was the penguins .", "storylet_id": "205012"}], [{"original_text": "I couldn't believe how big the polar bears are!", "album_id": "72157628097425285", "photo_flickr_id": "6383554577", "setting": "last-3-pick-old-and-tell", "worker_id": "F3ZD7H00UKQKAJP", "story_id": "41002", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i could n't believe how big the polar bears are !", "storylet_id": "205013"}], [{"original_text": "I tried getting my picture taken as a kangaroo, but this guy wouldn't move out of the way.", "album_id": "72157628097425285", "photo_flickr_id": "6383570567", "setting": "last-3-pick-old-and-tell", "worker_id": "F3ZD7H00UKQKAJP", "story_id": "41002", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i tried getting my picture taken as a kangaroo , but this guy would n't move out of the way .", "storylet_id": "205014"}], [{"original_text": "Our trip to the zoo.", "album_id": "72157628097425285", "photo_flickr_id": "6383524351", "setting": "last-3-pick-old-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41003", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip to the zoo .", "storylet_id": "205015"}], [{"original_text": "This huge watchtower over us.", "album_id": "72157628097425285", "photo_flickr_id": "6383542995", "setting": "last-3-pick-old-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41003", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this huge watchtower over us .", "storylet_id": "205016"}], [{"original_text": "Look at the cute little penguin.", "album_id": "72157628097425285", "photo_flickr_id": "6383547491", "setting": "last-3-pick-old-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41003", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at the cute little penguin .", "storylet_id": "205017"}], [{"original_text": "\"Huh? Who's there\"", "album_id": "72157628097425285", "photo_flickr_id": "6383554577", "setting": "last-3-pick-old-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41003", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "`` huh ? who 's there ''", "storylet_id": "205018"}], [{"original_text": "Guess what I am.", "album_id": "72157628097425285", "photo_flickr_id": "6383570567", "setting": "last-3-pick-old-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41003", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "guess what i am .", "storylet_id": "205019"}], [{"original_text": "Mom dad and I went to the zoo today", "album_id": "72157628097425285", "photo_flickr_id": "6383524351", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41004", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom dad and i went to the zoo today", "storylet_id": "205020"}], [{"original_text": "We saw neat looking towers as high as the sky", "album_id": "72157628097425285", "photo_flickr_id": "6383542995", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41004", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw neat looking towers as high as the sky", "storylet_id": "205021"}], [{"original_text": "We saw little penguins as cute as buttons", "album_id": "72157628097425285", "photo_flickr_id": "6383547491", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41004", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw little penguins as cute as buttons", "storylet_id": "205022"}], [{"original_text": "We saw polar bears that looked as fierce as the stories say", "album_id": "72157628097425285", "photo_flickr_id": "6383554577", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41004", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw polar bears that looked as fierce as the stories say", "storylet_id": "205023"}], [{"original_text": "But the old man did nothing but stare at me.", "album_id": "72157628097425285", "photo_flickr_id": "6383570567", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41004", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the old man did nothing but stare at me .", "storylet_id": "205024"}], [{"original_text": "We drove up the driveway towards the English Manor, our new summer home.", "album_id": "72157628661122851", "photo_flickr_id": "6611594571", "setting": "first-2-pick-and-tell", "worker_id": "O66487PSODL3PME", "story_id": "41005", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we drove up the driveway towards the english manor , our new summer home .", "storylet_id": "205025"}], [{"original_text": "The manor is a big tan house with a white picket fence.", "album_id": "72157628661122851", "photo_flickr_id": "6611629527", "setting": "first-2-pick-and-tell", "worker_id": "O66487PSODL3PME", "story_id": "41005", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the manor is a big tan house with a white picket fence .", "storylet_id": "205026"}], [{"original_text": "We were met outside by my uncle Ken and his husband John.", "album_id": "72157628661122851", "photo_flickr_id": "6611655419", "setting": "first-2-pick-and-tell", "worker_id": "O66487PSODL3PME", "story_id": "41005", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were met outside by my uncle [male] and his husband [male] .", "storylet_id": "205027"}], [{"original_text": "We went inside for refreshing drinks, and talked the night away.", "album_id": "72157628661122851", "photo_flickr_id": "6614950801", "setting": "first-2-pick-and-tell", "worker_id": "O66487PSODL3PME", "story_id": "41005", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went inside for refreshing drinks , and talked the night away .", "storylet_id": "205028"}], [{"original_text": "But the whole time, we had no clue that there were two peacocks on the roof, eavesdropping on every word.", "album_id": "72157628661122851", "photo_flickr_id": "6614976239", "setting": "first-2-pick-and-tell", "worker_id": "O66487PSODL3PME", "story_id": "41005", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the whole time , we had no clue that there were two peacocks on the roof , eavesdropping on every word .", "storylet_id": "205029"}], [{"original_text": "We drove through the village to get to the historic inn.", "album_id": "72157628661122851", "photo_flickr_id": "6614915933", "setting": "first-2-pick-and-tell", "worker_id": "0ZG8DWF2JK1DSB9", "story_id": "41006", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we drove through the village to get to the historic inn .", "storylet_id": "205030"}], [{"original_text": "The roads outside the village were quiet, green, and damp.", "album_id": "72157628661122851", "photo_flickr_id": "6611594571", "setting": "first-2-pick-and-tell", "worker_id": "0ZG8DWF2JK1DSB9", "story_id": "41006", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the roads outside the village were quiet , green , and damp .", "storylet_id": "205031"}], [{"original_text": "Eventually we saw a mossy gate and knew we were there.", "album_id": "72157628661122851", "photo_flickr_id": "6611611509", "setting": "first-2-pick-and-tell", "worker_id": "0ZG8DWF2JK1DSB9", "story_id": "41006", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "eventually we saw a mossy gate and knew we were there .", "storylet_id": "205032"}], [{"original_text": "The inn rose majestically behind a big lawn.", "album_id": "72157628661122851", "photo_flickr_id": "6611629527", "setting": "first-2-pick-and-tell", "worker_id": "0ZG8DWF2JK1DSB9", "story_id": "41006", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the inn rose majestically behind a big lawn .", "storylet_id": "205033"}], [{"original_text": "Once we got inside, we settled in for a well-deserved beer.", "album_id": "72157628661122851", "photo_flickr_id": "6614950801", "setting": "first-2-pick-and-tell", "worker_id": "0ZG8DWF2JK1DSB9", "story_id": "41006", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once we got inside , we settled in for a well-deserved beer .", "storylet_id": "205034"}], [{"original_text": "We took a drive to a local village.", "album_id": "72157628661122851", "photo_flickr_id": "6611594571", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41007", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a drive to a local village .", "storylet_id": "205035"}], [{"original_text": "We stopped at this historic house", "album_id": "72157628661122851", "photo_flickr_id": "6611629527", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41007", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped at this historic house", "storylet_id": "205036"}], [{"original_text": "and posed for a picture with the owners.", "album_id": "72157628661122851", "photo_flickr_id": "6611655419", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41007", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and posed for a picture with the owners .", "storylet_id": "205037"}], [{"original_text": "We stopped and had some drinks in the house", "album_id": "72157628661122851", "photo_flickr_id": "6614950801", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41007", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped and had some drinks in the house", "storylet_id": "205038"}], [{"original_text": "and saw some peacocks on top of the house.", "album_id": "72157628661122851", "photo_flickr_id": "6614976239", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41007", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and saw some peacocks on top of the house .", "storylet_id": "205039"}], [{"original_text": "My friends loved to have get togethers on the weekend. ", "album_id": "72157628661122851", "photo_flickr_id": "6611594571", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "41008", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends loved to have get togethers on the weekend .", "storylet_id": "205040"}], [{"original_text": "My uncle lived in a great house in a great little village.", "album_id": "72157628661122851", "photo_flickr_id": "6611629527", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "41008", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my uncle lived in a great house in a great little village .", "storylet_id": "205041"}], [{"original_text": "My father met us there frequently as well.", "album_id": "72157628661122851", "photo_flickr_id": "6611655419", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "41008", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my father met us there frequently as well .", "storylet_id": "205042"}], [{"original_text": "My brother had already been at the pub and ordered us all drinks.", "album_id": "72157628661122851", "photo_flickr_id": "6614950801", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "41008", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my brother had already been at the pub and ordered us all drinks .", "storylet_id": "205043"}], [{"original_text": "Before I stepped in I found these beautiful birds on the roof.", "album_id": "72157628661122851", "photo_flickr_id": "6614976239", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "41008", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before i stepped in i found these beautiful birds on the roof .", "storylet_id": "205044"}], [{"original_text": "We have finally made it to our destination.", "album_id": "72157628661122851", "photo_flickr_id": "6611594571", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41009", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we have finally made it to our destination .", "storylet_id": "205045"}], [{"original_text": "The view was pretty spectacular.", "album_id": "72157628661122851", "photo_flickr_id": "6611629527", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41009", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view was pretty spectacular .", "storylet_id": "205046"}], [{"original_text": "We made some good friends along the way.", "album_id": "72157628661122851", "photo_flickr_id": "6611655419", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41009", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we made some good friends along the way .", "storylet_id": "205047"}], [{"original_text": "We shared drinks and stories into the evening.", "album_id": "72157628661122851", "photo_flickr_id": "6614950801", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41009", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we shared drinks and stories into the evening .", "storylet_id": "205048"}], [{"original_text": "We even got to see some very pretty animals.", "album_id": "72157628661122851", "photo_flickr_id": "6614976239", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41009", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even got to see some very pretty animals .", "storylet_id": "205049"}], [{"original_text": "Kay and Bob celebrated their fiftieth wedding anniversary by taking a dream vacation.", "album_id": "72157629655017828", "photo_flickr_id": "7165671004", "setting": "first-2-pick-and-tell", "worker_id": "GC27DN74NWFE3AY", "story_id": "41015", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [male] celebrated their fiftieth wedding anniversary by taking a dream vacation .", "storylet_id": "205075"}], [{"original_text": "For ten days, they lived right on the beach in the most beautiful of locales.", "album_id": "72157629655017828", "photo_flickr_id": "7165671294", "setting": "first-2-pick-and-tell", "worker_id": "GC27DN74NWFE3AY", "story_id": "41015", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "for ten days , they lived right on the beach in the most beautiful of locales .", "storylet_id": "205076"}], [{"original_text": "The sounds of the ocean serenaded them day and night.", "album_id": "72157629655017828", "photo_flickr_id": "7165671722", "setting": "first-2-pick-and-tell", "worker_id": "GC27DN74NWFE3AY", "story_id": "41015", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sounds of the ocean serenaded them day and night .", "storylet_id": "205077"}], [{"original_text": "When they weren't swimming or sunbathing, Kay and Bob enjoyed exploring in a sailboat.", "album_id": "72157629655017828", "photo_flickr_id": "7165670216", "setting": "first-2-pick-and-tell", "worker_id": "GC27DN74NWFE3AY", "story_id": "41015", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when they were n't swimming or sunbathing , [female] and [male] enjoyed exploring in a sailboat .", "storylet_id": "205078"}], [{"original_text": "This vacation was a dream come true and a wonderful way for them to celebrate fifty years of marriage.", "album_id": "72157629655017828", "photo_flickr_id": "7165670444", "setting": "first-2-pick-and-tell", "worker_id": "GC27DN74NWFE3AY", "story_id": "41015", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this vacation was a dream come true and a wonderful way for them to celebrate fifty years of marriage .", "storylet_id": "205079"}], [{"original_text": "It's a nice day at the beach.", "album_id": "72157629655017828", "photo_flickr_id": "7165669984", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "41016", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a nice day at the beach .", "storylet_id": "205080"}], [{"original_text": "The sun starts to shine over the water.", "album_id": "72157629655017828", "photo_flickr_id": "7165670316", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "41016", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sun starts to shine over the water .", "storylet_id": "205081"}], [{"original_text": "The clouds start to cover up the sun.", "album_id": "72157629655017828", "photo_flickr_id": "7165670444", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "41016", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the clouds start to cover up the sun .", "storylet_id": "205082"}], [{"original_text": "The sun is shining bright in sky and clouds are not around.", "album_id": "72157629655017828", "photo_flickr_id": "7165671004", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "41016", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sun is shining bright in sky and clouds are not around .", "storylet_id": "205083"}], [{"original_text": "Someone decides to sail away on this beautiful day.", "album_id": "72157629655017828", "photo_flickr_id": "7165671968", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "41016", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someone decides to sail away on this beautiful day .", "storylet_id": "205084"}], [{"original_text": "Early morning at the beach with the boats getting ready to head out.", "album_id": "72157629655017828", "photo_flickr_id": "7165669984", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "41017", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "early morning at the beach with the boats getting ready to head out .", "storylet_id": "205085"}], [{"original_text": "a beauttiful sunrise on the beach to start the day.", "album_id": "72157629655017828", "photo_flickr_id": "7165670316", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "41017", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a beauttiful sunrise on the beach to start the day .", "storylet_id": "205086"}], [{"original_text": "another shot of the sunrise that makes it look like a heaven above", "album_id": "72157629655017828", "photo_flickr_id": "7165670444", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "41017", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another shot of the sunrise that makes it look like a heaven above", "storylet_id": "205087"}], [{"original_text": "where we spent most of our time", "album_id": "72157629655017828", "photo_flickr_id": "7165671004", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "41017", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "where we spent most of our time", "storylet_id": "205088"}], [{"original_text": "I wish we had a boat", "album_id": "72157629655017828", "photo_flickr_id": "7165671968", "setting": "last-3-pick-old-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "41017", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i wish we had a boat", "storylet_id": "205089"}], [{"original_text": "Went on vacation Hawaii.", "album_id": "72157629655017828", "photo_flickr_id": "7165671004", "setting": "last-3-pick-old-and-tell", "worker_id": "U1OXJ7XBLAETPNH", "story_id": "41018", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went on vacation location .", "storylet_id": "205090"}], [{"original_text": "Stayed in a beautiful beach hut.", "album_id": "72157629655017828", "photo_flickr_id": "7165671294", "setting": "last-3-pick-old-and-tell", "worker_id": "U1OXJ7XBLAETPNH", "story_id": "41018", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "stayed in a beautiful beach hut .", "storylet_id": "205091"}], [{"original_text": "The water was warm and beautiful.", "album_id": "72157629655017828", "photo_flickr_id": "7165671722", "setting": "last-3-pick-old-and-tell", "worker_id": "U1OXJ7XBLAETPNH", "story_id": "41018", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water was warm and beautiful .", "storylet_id": "205092"}], [{"original_text": "Went sailing right after sunset.", "album_id": "72157629655017828", "photo_flickr_id": "7165670216", "setting": "last-3-pick-old-and-tell", "worker_id": "U1OXJ7XBLAETPNH", "story_id": "41018", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "went sailing right after sunset .", "storylet_id": "205093"}], [{"original_text": "Woke up to the sun rising above the mountains.", "album_id": "72157629655017828", "photo_flickr_id": "7165670444", "setting": "last-3-pick-old-and-tell", "worker_id": "U1OXJ7XBLAETPNH", "story_id": "41018", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "woke up to the sun rising above the mountains .", "storylet_id": "205094"}], [{"original_text": "\"I finally made it to my vacation!\" Lilly thought as she pulled up to her beach house.", "album_id": "72157629655017828", "photo_flickr_id": "7165671004", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41019", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "`` i finally made it to my vacation ! '' [female] thought as she pulled up to her beach house .", "storylet_id": "205095"}], [{"original_text": "\"Could this be anymore perfect?\" She asked her husband, as they put their feet into the sand.", "album_id": "72157629655017828", "photo_flickr_id": "7165671294", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41019", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "`` could this be anymore perfect ? '' she asked her husband , as they put their feet into the sand .", "storylet_id": "205096"}], [{"original_text": "\"And the water, it's so clear!\" She couldn't believe it, that this place could be real.", "album_id": "72157629655017828", "photo_flickr_id": "7165671722", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41019", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "`` and the water , it 's so clear ! '' she could n't believe it , that this place could be real .", "storylet_id": "205097"}], [{"original_text": "Later the two of them went out for a romantic sale.", "album_id": "72157629655017828", "photo_flickr_id": "7165670216", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41019", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later the two of them went out for a romantic sale .", "storylet_id": "205098"}], [{"original_text": "\"Oh no the clouds are coming in!\" She said, seeing a big cloud come, \"let's get inside!\"", "album_id": "72157629655017828", "photo_flickr_id": "7165670444", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41019", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "`` oh no the clouds are coming in ! '' she said , seeing a big cloud come , `` let 's get inside ! ''", "storylet_id": "205099"}], [{"original_text": "The daughter loved her horse.", "album_id": "72157630580346866", "photo_flickr_id": "7572199252", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "41020", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the daughter loved her horse .", "storylet_id": "205100"}], [{"original_text": "So did her mother.", "album_id": "72157630580346866", "photo_flickr_id": "7572199448", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "41020", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so did her mother .", "storylet_id": "205101"}], [{"original_text": "Everyone got to perform with their horses.", "album_id": "72157630580346866", "photo_flickr_id": "7572199936", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "41020", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone got to perform with their horses .", "storylet_id": "205102"}], [{"original_text": "Everyone was very impressed.", "album_id": "72157630580346866", "photo_flickr_id": "7572200040", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "41020", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was very impressed .", "storylet_id": "205103"}], [{"original_text": "But eventually it got late and the fun had to end. The stands cleared out.", "album_id": "72157630580346866", "photo_flickr_id": "7572200558", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "41020", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but eventually it got late and the fun had to end . the stands cleared out .", "storylet_id": "205104"}], [{"original_text": "We'd won ribbons before - we kept them around to inspire us. ", "album_id": "72157630580346866", "photo_flickr_id": "7572199818", "setting": "first-2-pick-and-tell", "worker_id": "NEIZDNZXS0NNI58", "story_id": "41021", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 'd won ribbons before - we kept them around to inspire us .", "storylet_id": "205105"}], [{"original_text": "A little treat for the horse helped pep her up for the big day too. ", "album_id": "72157630580346866", "photo_flickr_id": "7572200290", "setting": "first-2-pick-and-tell", "worker_id": "NEIZDNZXS0NNI58", "story_id": "41021", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a little treat for the horse helped pep her up for the big day too .", "storylet_id": "205106"}], [{"original_text": "Finally, it was time to go! ", "album_id": "72157630580346866", "photo_flickr_id": "7572199936", "setting": "first-2-pick-and-tell", "worker_id": "NEIZDNZXS0NNI58", "story_id": "41021", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally , it was time to go !", "storylet_id": "205107"}], [{"original_text": "The judging unfolded in a blur. ", "album_id": "72157630580346866", "photo_flickr_id": "7572200558", "setting": "first-2-pick-and-tell", "worker_id": "NEIZDNZXS0NNI58", "story_id": "41021", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the judging unfolded in a blur .", "storylet_id": "205108"}], [{"original_text": "After a successful show, it was time for a relaxing, refreshing treat!", "album_id": "72157630580346866", "photo_flickr_id": "7572199580", "setting": "first-2-pick-and-tell", "worker_id": "NEIZDNZXS0NNI58", "story_id": "41021", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a successful show , it was time for a relaxing , refreshing treat !", "storylet_id": "205109"}], [{"original_text": "The bridles and reins were all ready for the rodeo.", "album_id": "72157630580346866", "photo_flickr_id": "7572199818", "setting": "last-3-pick-old-and-tell", "worker_id": "YL21ZX6TICSCRWY", "story_id": "41022", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bridles and reins were all ready for the rodeo .", "storylet_id": "205110"}], [{"original_text": "The horses were fed to get ready.", "album_id": "72157630580346866", "photo_flickr_id": "7572200290", "setting": "last-3-pick-old-and-tell", "worker_id": "YL21ZX6TICSCRWY", "story_id": "41022", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the horses were fed to get ready .", "storylet_id": "205111"}], [{"original_text": "The first contestant led his horse around the ring.", "album_id": "72157630580346866", "photo_flickr_id": "7572199936", "setting": "last-3-pick-old-and-tell", "worker_id": "YL21ZX6TICSCRWY", "story_id": "41022", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first contestant led his horse around the ring .", "storylet_id": "205112"}], [{"original_text": "After everyone had competed, awards were given.", "album_id": "72157630580346866", "photo_flickr_id": "7572200558", "setting": "last-3-pick-old-and-tell", "worker_id": "YL21ZX6TICSCRWY", "story_id": "41022", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after everyone had competed , awards were given .", "storylet_id": "205113"}], [{"original_text": "The contestants celebrated after the rodeo with popsicles.", "album_id": "72157630580346866", "photo_flickr_id": "7572199580", "setting": "last-3-pick-old-and-tell", "worker_id": "YL21ZX6TICSCRWY", "story_id": "41022", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the contestants celebrated after the rodeo with popsicles .", "storylet_id": "205114"}], [{"original_text": "The stable was full of horse gear. ", "album_id": "72157630580346866", "photo_flickr_id": "7572199818", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "41023", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stable was full of horse gear .", "storylet_id": "205115"}], [{"original_text": "Maria fed the horses their oats. ", "album_id": "72157630580346866", "photo_flickr_id": "7572200290", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "41023", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] fed the horses their oats .", "storylet_id": "205116"}], [{"original_text": "As part of the show, horses had to be led around the stadium. ", "album_id": "72157630580346866", "photo_flickr_id": "7572199936", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "41023", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as part of the show , horses had to be led around the stadium .", "storylet_id": "205117"}], [{"original_text": "The show was pretty busy this season. ", "album_id": "72157630580346866", "photo_flickr_id": "7572200558", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "41023", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the show was pretty busy this season .", "storylet_id": "205118"}], [{"original_text": "This rider makes some last minute adjustments to her costume.", "album_id": "72157630580346866", "photo_flickr_id": "7572199580", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "41023", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this rider makes some last minute adjustments to her costume .", "storylet_id": "205119"}], [{"original_text": "The girls were excited for the rodeo to show of the horses.", "album_id": "72157630580346866", "photo_flickr_id": "7572199252", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "41024", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girls were excited for the rodeo to show of the horses .", "storylet_id": "205120"}], [{"original_text": "The horses were also excited for the show.", "album_id": "72157630580346866", "photo_flickr_id": "7572199448", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "41024", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the horses were also excited for the show .", "storylet_id": "205121"}], [{"original_text": "They were shown off to the crowd.", "album_id": "72157630580346866", "photo_flickr_id": "7572199936", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "41024", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were shown off to the crowd .", "storylet_id": "205122"}], [{"original_text": "There were all types of different breeds and sizes.", "album_id": "72157630580346866", "photo_flickr_id": "7572200040", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "41024", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were all types of different breeds and sizes .", "storylet_id": "205123"}], [{"original_text": "They had a good time at the horse show.", "album_id": "72157630580346866", "photo_flickr_id": "7572200558", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "41024", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had a good time at the horse show .", "storylet_id": "205124"}], [{"original_text": "The start to a good vacation is history.", "album_id": "72157631712541139", "photo_flickr_id": "323138703", "setting": "first-2-pick-and-tell", "worker_id": "HY46HR6AGJ19QYJ", "story_id": "41025", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the start to a good vacation is history .", "storylet_id": "205125"}], [{"original_text": "The sunsets are amazing back at home.", "album_id": "72157631712541139", "photo_flickr_id": "323142180", "setting": "first-2-pick-and-tell", "worker_id": "HY46HR6AGJ19QYJ", "story_id": "41025", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sunsets are amazing back at home .", "storylet_id": "205126"}], [{"original_text": "Wow! Let's look for the pot of gold!", "album_id": "72157631712541139", "photo_flickr_id": "323142183", "setting": "first-2-pick-and-tell", "worker_id": "HY46HR6AGJ19QYJ", "story_id": "41025", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "wow ! let 's look for the pot of gold !", "storylet_id": "205127"}], [{"original_text": "The little ones are putting on a great show.", "album_id": "72157631712541139", "photo_flickr_id": "323145930", "setting": "first-2-pick-and-tell", "worker_id": "HY46HR6AGJ19QYJ", "story_id": "41025", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the little ones are putting on a great show .", "storylet_id": "205128"}], [{"original_text": "It is always hard to leave...", "album_id": "72157631712541139", "photo_flickr_id": "323150295", "setting": "first-2-pick-and-tell", "worker_id": "HY46HR6AGJ19QYJ", "story_id": "41025", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is always hard to leave ...", "storylet_id": "205129"}], [{"original_text": "Stephanie and Kristen, who have been best friends since 2nd grade, decide to go on vacation together.", "album_id": "72157631712541139", "photo_flickr_id": "323145933", "setting": "first-2-pick-and-tell", "worker_id": "O5O50UETTSG4R0Z", "story_id": "41026", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [female] , who have been best friends since 2nd grade , decide to go on vacation together .", "storylet_id": "205130"}], [{"original_text": "While traveling they see many amazing sights.", "album_id": "72157631712541139", "photo_flickr_id": "323142183", "setting": "first-2-pick-and-tell", "worker_id": "O5O50UETTSG4R0Z", "story_id": "41026", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while traveling they see many amazing sights .", "storylet_id": "205131"}], [{"original_text": "They also meet many interesting people.", "album_id": "72157631712541139", "photo_flickr_id": "323150293", "setting": "first-2-pick-and-tell", "worker_id": "O5O50UETTSG4R0Z", "story_id": "41026", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also meet many interesting people .", "storylet_id": "205132"}], [{"original_text": "They immerse themselves in the local culture and activities.", "album_id": "72157631712541139", "photo_flickr_id": "323145931", "setting": "first-2-pick-and-tell", "worker_id": "O5O50UETTSG4R0Z", "story_id": "41026", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they immerse themselves in the local culture and activities .", "storylet_id": "205133"}], [{"original_text": "Finally, they get on the bus and head back home.", "album_id": "72157631712541139", "photo_flickr_id": "323150295", "setting": "first-2-pick-and-tell", "worker_id": "O5O50UETTSG4R0Z", "story_id": "41026", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , they get on the bus and head back home .", "storylet_id": "205134"}], [{"original_text": "It was lat afternoon when we arrived at the beautiful lake.", "album_id": "72157631712541139", "photo_flickr_id": "323138703", "setting": "last-3-pick-old-and-tell", "worker_id": "YL21ZX6TICSCRWY", "story_id": "41027", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was lat afternoon when we arrived at the beautiful lake .", "storylet_id": "205135"}], [{"original_text": "We watched the sun set over the water.", "album_id": "72157631712541139", "photo_flickr_id": "323142180", "setting": "last-3-pick-old-and-tell", "worker_id": "YL21ZX6TICSCRWY", "story_id": "41027", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we watched the sun set over the water .", "storylet_id": "205136"}], [{"original_text": "The next morning there was a gorgeous rainbow.", "album_id": "72157631712541139", "photo_flickr_id": "323142183", "setting": "last-3-pick-old-and-tell", "worker_id": "YL21ZX6TICSCRWY", "story_id": "41027", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next morning there was a gorgeous rainbow .", "storylet_id": "205137"}], [{"original_text": "We then went to an Irish dance competition and watched kids perform.", "album_id": "72157631712541139", "photo_flickr_id": "323145930", "setting": "last-3-pick-old-and-tell", "worker_id": "YL21ZX6TICSCRWY", "story_id": "41027", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we then went to an irish dance competition and watched kids perform .", "storylet_id": "205138"}], [{"original_text": "We said goodbye as the school bus drove the dancers away.", "album_id": "72157631712541139", "photo_flickr_id": "323150295", "setting": "last-3-pick-old-and-tell", "worker_id": "YL21ZX6TICSCRWY", "story_id": "41027", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we said goodbye as the school bus drove the dancers away .", "storylet_id": "205139"}], [{"original_text": "Two girls from my class (Carrie Olson and Linda Halverson) pose in front of a Power's Whiskey, Ireland's best! ", "album_id": "72157631712541139", "photo_flickr_id": "323145933", "setting": "last-3-pick-old-and-tell", "worker_id": "DMFVS13XVXD5UCK", "story_id": "41028", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two girls from my class ( [female] olson and [female] halverson ) pose in front of a power 's whiskey , location 's best !", "storylet_id": "205140"}], [{"original_text": "Lucky Charms is magically delicious and so is this beautiful valley just south of Dublin, Ireland.", "album_id": "72157631712541139", "photo_flickr_id": "323142183", "setting": "last-3-pick-old-and-tell", "worker_id": "DMFVS13XVXD5UCK", "story_id": "41028", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lucky charms is magically delicious and so is this beautiful valley just south of location , location .", "storylet_id": "205141"}], [{"original_text": "After finally arriving at the World's Fair our group's first stop was the horticulture section and this local Irish fellow was so nice to pose for me.", "album_id": "72157631712541139", "photo_flickr_id": "323150293", "setting": "last-3-pick-old-and-tell", "worker_id": "DMFVS13XVXD5UCK", "story_id": "41028", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after finally arriving at the world 's fair our group 's first stop was the horticulture section and this local irish fellow was so nice to pose for me .", "storylet_id": "205142"}], [{"original_text": "Sometimes the animals like this huge sheep (I think) need some serious prodding and man handling to move them along.", "album_id": "72157631712541139", "photo_flickr_id": "323145931", "setting": "last-3-pick-old-and-tell", "worker_id": "DMFVS13XVXD5UCK", "story_id": "41028", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes the animals like this huge sheep ( i think ) need some serious prodding and man handling to move them along .", "storylet_id": "205143"}], [{"original_text": "This is the other bus our group was riding in ahead of us on our way back to Dublin after a long but fun day.", "album_id": "72157631712541139", "photo_flickr_id": "323150295", "setting": "last-3-pick-old-and-tell", "worker_id": "DMFVS13XVXD5UCK", "story_id": "41028", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the other bus our group was riding in ahead of us on our way back to location after a long but fun day .", "storylet_id": "205144"}], [{"original_text": "Two sisters went on an adventure together", "album_id": "72157631712541139", "photo_flickr_id": "323145933", "setting": "last-3-pick-old-and-tell", "worker_id": "U5I6229A7IQ9IPG", "story_id": "41029", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two sisters went on an adventure together", "storylet_id": "205145"}], [{"original_text": "The weather during the trip started out a bit wet but ended with a beautiful rainbow", "album_id": "72157631712541139", "photo_flickr_id": "323142183", "setting": "last-3-pick-old-and-tell", "worker_id": "U5I6229A7IQ9IPG", "story_id": "41029", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the weather during the trip started out a bit wet but ended with a beautiful rainbow", "storylet_id": "205146"}], [{"original_text": "They met a guy who raised cows.", "album_id": "72157631712541139", "photo_flickr_id": "323150293", "setting": "last-3-pick-old-and-tell", "worker_id": "U5I6229A7IQ9IPG", "story_id": "41029", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they met a guy who raised cows .", "storylet_id": "205147"}], [{"original_text": "They went with him to the county fair.", "album_id": "72157631712541139", "photo_flickr_id": "323145931", "setting": "last-3-pick-old-and-tell", "worker_id": "U5I6229A7IQ9IPG", "story_id": "41029", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they went with him to the county fair .", "storylet_id": "205148"}], [{"original_text": "They took the bus home.", "album_id": "72157631712541139", "photo_flickr_id": "323150295", "setting": "last-3-pick-old-and-tell", "worker_id": "U5I6229A7IQ9IPG", "story_id": "41029", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they took the bus home .", "storylet_id": "205149"}], [{"original_text": "The bridge is a lovely part of the city.", "album_id": "72157632550793835", "photo_flickr_id": "8365300691", "setting": "first-2-pick-and-tell", "worker_id": "K9DXBTAGPHGWQ7S", "story_id": "41030", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bridge is a lovely part of the city .", "storylet_id": "205150"}], [{"original_text": "People show their love by placing locks on the bridge.", "album_id": "72157632550793835", "photo_flickr_id": "8366371986", "setting": "first-2-pick-and-tell", "worker_id": "K9DXBTAGPHGWQ7S", "story_id": "41030", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people show their love by placing locks on the bridge .", "storylet_id": "205151"}], [{"original_text": "People from all over like to pose in front of local art work.", "album_id": "72157632550793835", "photo_flickr_id": "8366373944", "setting": "first-2-pick-and-tell", "worker_id": "K9DXBTAGPHGWQ7S", "story_id": "41030", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people from all over like to pose in front of local art work .", "storylet_id": "205152"}], [{"original_text": "Statues are always a welcome sight for tourists. ", "album_id": "72157632550793835", "photo_flickr_id": "8366374512", "setting": "first-2-pick-and-tell", "worker_id": "K9DXBTAGPHGWQ7S", "story_id": "41030", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "statues are always a welcome sight for tourists. & # 13 ;", "storylet_id": "205153"}], [{"original_text": "Ice skating is a wonderful time for many.", "album_id": "72157632550793835", "photo_flickr_id": "8365305737", "setting": "first-2-pick-and-tell", "worker_id": "K9DXBTAGPHGWQ7S", "story_id": "41030", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ice skating is a wonderful time for many .", "storylet_id": "205154"}], [{"original_text": "The two women started their trip with a look at the beautiful bridge.", "album_id": "72157632550793835", "photo_flickr_id": "8365301167", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "41031", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the two women started their trip with a look at the beautiful bridge .", "storylet_id": "205155"}], [{"original_text": "Next they visited the park and watched some dogs play.", "album_id": "72157632550793835", "photo_flickr_id": "8366373388", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "41031", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next they visited the park and watched some dogs play .", "storylet_id": "205156"}], [{"original_text": "After that they visited some art.", "album_id": "72157632550793835", "photo_flickr_id": "8366373944", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "41031", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that they visited some art .", "storylet_id": "205157"}], [{"original_text": "Next the women went to the market to do some shopping.", "album_id": "72157632550793835", "photo_flickr_id": "8365304681", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "41031", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next the women went to the market to do some shopping .", "storylet_id": "205158"}], [{"original_text": "After that they took a walk through the busy town.", "album_id": "72157632550793835", "photo_flickr_id": "8365305737", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "41031", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that they took a walk through the busy town .", "storylet_id": "205159"}], [{"original_text": "it was a beautiful day on the east side of town", "album_id": "72157632550793835", "photo_flickr_id": "8365301167", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41032", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful day on the east side of town", "storylet_id": "205160"}], [{"original_text": "the dogs and people were playing in the park", "album_id": "72157632550793835", "photo_flickr_id": "8366373388", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41032", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dogs and people were playing in the park", "storylet_id": "205161"}], [{"original_text": "the girls decided to take a picture next to the statue ", "album_id": "72157632550793835", "photo_flickr_id": "8366373944", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41032", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girls decided to take a picture next to the statue", "storylet_id": "205162"}], [{"original_text": "the Christmas festivals begin outside", "album_id": "72157632550793835", "photo_flickr_id": "8365304681", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41032", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the christmas festivals begin outside", "storylet_id": "205163"}], [{"original_text": "they all gathered around to enjoy the festivals ", "album_id": "72157632550793835", "photo_flickr_id": "8365305737", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41032", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all gathered around to enjoy the festivals", "storylet_id": "205164"}], [{"original_text": "They were so excited to finally make it to the statue walk. Michael bought tickets for it months on advance. ", "album_id": "72157632550793835", "photo_flickr_id": "8365300691", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "41033", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were so excited to finally make it to the statue walk . [male] bought tickets for it months on advance .", "storylet_id": "205165"}], [{"original_text": "The first stop was the lock installation at the bike shop.", "album_id": "72157632550793835", "photo_flickr_id": "8366371986", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "41033", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first stop was the lock installation at the bike shop .", "storylet_id": "205166"}], [{"original_text": "Next, The statues outside the French Embassy.", "album_id": "72157632550793835", "photo_flickr_id": "8366373944", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "41033", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next , the statues outside the organization organization .", "storylet_id": "205167"}], [{"original_text": "Then the art near the fountain in the park, where they stopped for lunch.", "album_id": "72157632550793835", "photo_flickr_id": "8366374512", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "41033", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then the art near the fountain in the park , where they stopped for lunch .", "storylet_id": "205168"}], [{"original_text": "Finally, the coup de grace, the ice sculptures in the garden. What a wonderful day of walking!", "album_id": "72157632550793835", "photo_flickr_id": "8365305737", "setting": "last-3-pick-old-and-tell", "worker_id": "2OTW4VF1ICIJKO6", "story_id": "41033", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , the coup de grace , the ice sculptures in the garden . what a wonderful day of walking !", "storylet_id": "205169"}], [{"original_text": "The outdoor scenery in the city was beautiful.", "album_id": "72157632550793835", "photo_flickr_id": "8365301167", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "41034", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the outdoor scenery in the city was beautiful .", "storylet_id": "205170"}], [{"original_text": "There lots of parks were dogs were playing.", "album_id": "72157632550793835", "photo_flickr_id": "8366373388", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "41034", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there lots of parks were dogs were playing .", "storylet_id": "205171"}], [{"original_text": "As well as historical statues.", "album_id": "72157632550793835", "photo_flickr_id": "8366373944", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "41034", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as well as historical statues .", "storylet_id": "205172"}], [{"original_text": "There was a large group of people gathered around an area.", "album_id": "72157632550793835", "photo_flickr_id": "8365304681", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "41034", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a large group of people gathered around an area .", "storylet_id": "205173"}], [{"original_text": "It appeared there was some type of ice skating event going on.", "album_id": "72157632550793835", "photo_flickr_id": "8365305737", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "41034", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it appeared there was some type of ice skating event going on .", "storylet_id": "205174"}], [{"original_text": "We joked about hippies back in the day not having cell phones. We had to take a picture.", "album_id": "72157634147267999", "photo_flickr_id": "7729276182", "setting": "first-2-pick-and-tell", "worker_id": "A98MS9M1R2UR6SC", "story_id": "41035", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we joked about hippies back in the day not having cell phones . we had to take a picture .", "storylet_id": "205175"}], [{"original_text": "Hippies young and old showed up.", "album_id": "72157634147267999", "photo_flickr_id": "7758932900", "setting": "first-2-pick-and-tell", "worker_id": "A98MS9M1R2UR6SC", "story_id": "41035", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "hippies young and old showed up .", "storylet_id": "205176"}], [{"original_text": "This guys bubble blowing skills were great as well as colorful.", "album_id": "72157634147267999", "photo_flickr_id": "7750438184", "setting": "first-2-pick-and-tell", "worker_id": "A98MS9M1R2UR6SC", "story_id": "41035", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this guys bubble blowing skills were great as well as colorful .", "storylet_id": "205177"}], [{"original_text": "The young lady spoke about the dangers of domestic abuse.", "album_id": "72157634147267999", "photo_flickr_id": "7758931186", "setting": "first-2-pick-and-tell", "worker_id": "A98MS9M1R2UR6SC", "story_id": "41035", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the young lady spoke about the dangers of domestic abuse .", "storylet_id": "205178"}], [{"original_text": "They played blues music at the festival and this fellow was quite a hoot.", "album_id": "72157634147267999", "photo_flickr_id": "7798468608", "setting": "first-2-pick-and-tell", "worker_id": "A98MS9M1R2UR6SC", "story_id": "41035", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they played blues music at the festival and this fellow was quite a hoot .", "storylet_id": "205179"}], [{"original_text": "Cool day at the rainbow parade.", "album_id": "72157634147267999", "photo_flickr_id": "7720956560", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41036", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "cool day at the rainbow parade .", "storylet_id": "205180"}], [{"original_text": "What's he looking at?", "album_id": "72157634147267999", "photo_flickr_id": "7750438914", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41036", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "what 's he looking at ?", "storylet_id": "205181"}], [{"original_text": "Look it's Harold and Maude, they came again.", "album_id": "72157634147267999", "photo_flickr_id": "7720956256", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41036", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look it 's [male] and [female] , they came again .", "storylet_id": "205182"}], [{"original_text": "Some of the local bands.", "album_id": "72157634147267999", "photo_flickr_id": "7720955930", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41036", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the local bands .", "storylet_id": "205183"}], [{"original_text": "A unique bubble just flying through the air.", "album_id": "72157634147267999", "photo_flickr_id": "7750439036", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41036", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a unique bubble just flying through the air .", "storylet_id": "205184"}], [{"original_text": "My grandparents always loved going to the jazz fest down town.", "album_id": "72157634147267999", "photo_flickr_id": "7720956560", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "41037", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my grandparents always loved going to the jazz fest down town .", "storylet_id": "205185"}], [{"original_text": "This stranger loved the music apparently.", "album_id": "72157634147267999", "photo_flickr_id": "7750438914", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "41037", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this stranger loved the music apparently .", "storylet_id": "205186"}], [{"original_text": "Out grandparents were old school hippies as well.", "album_id": "72157634147267999", "photo_flickr_id": "7720956256", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "41037", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "out grandparents were old school hippies as well .", "storylet_id": "205187"}], [{"original_text": "My grand father knew this man, he was a good on the guitar.", "album_id": "72157634147267999", "photo_flickr_id": "7720955930", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "41037", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my grand father knew this man , he was a good on the guitar .", "storylet_id": "205188"}], [{"original_text": "My brother took this photo and I am not sure how he did but it was cool to look at.", "album_id": "72157634147267999", "photo_flickr_id": "7750439036", "setting": "last-3-pick-old-and-tell", "worker_id": "YVLJ0RUBT0WMJDI", "story_id": "41037", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my brother took this photo and i am not sure how he did but it was cool to look at .", "storylet_id": "205189"}], [{"original_text": "Many different people turned out for the festivities.", "album_id": "72157634147267999", "photo_flickr_id": "7720956560", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41038", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many different people turned out for the festivities .", "storylet_id": "205190"}], [{"original_text": "Some were wearing some funny looking clothes.", "album_id": "72157634147267999", "photo_flickr_id": "7750438914", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41038", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some were wearing some funny looking clothes .", "storylet_id": "205191"}], [{"original_text": "There were many people there enjoying the day with conversations and laughter.", "album_id": "72157634147267999", "photo_flickr_id": "7720956256", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41038", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many people there enjoying the day with conversations and laughter .", "storylet_id": "205192"}], [{"original_text": "There was some live music that people were dancing to.", "album_id": "72157634147267999", "photo_flickr_id": "7720955930", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41038", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was some live music that people were dancing to .", "storylet_id": "205193"}], [{"original_text": "Kids were blowing bubbles and enjoying the day as well.", "album_id": "72157634147267999", "photo_flickr_id": "7750439036", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41038", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "kids were blowing bubbles and enjoying the day as well .", "storylet_id": "205194"}], [{"original_text": "There was once a young man who decided to go to a local community concert.", "album_id": "72157634147267999", "photo_flickr_id": "7729276182", "setting": "last-3-pick-old-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41039", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was once a young man who decided to go to a local community concert .", "storylet_id": "205195"}], [{"original_text": "He saw plenty of old people dancing and talking to the music, and just enjoying themselves.", "album_id": "72157634147267999", "photo_flickr_id": "7758932900", "setting": "last-3-pick-old-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41039", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he saw plenty of old people dancing and talking to the music , and just enjoying themselves .", "storylet_id": "205196"}], [{"original_text": "He also saw hipsters blowing bubbles and drinking beer as they watched the entertainment.", "album_id": "72157634147267999", "photo_flickr_id": "7750438184", "setting": "last-3-pick-old-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41039", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he also saw hipsters blowing bubbles and drinking beer as they watched the entertainment .", "storylet_id": "205197"}], [{"original_text": "He favorite performer was a young lady, who sand a song that reminded him of home.", "album_id": "72157634147267999", "photo_flickr_id": "7758931186", "setting": "last-3-pick-old-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41039", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he favorite performer was a young lady , who sand a song that reminded him of home .", "storylet_id": "205198"}], [{"original_text": "However, the crowd favorite seemed to be the old man that rocked out to classic 80's rock music.", "album_id": "72157634147267999", "photo_flickr_id": "7798468608", "setting": "last-3-pick-old-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41039", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , the crowd favorite seemed to be the old man that rocked out to classic 80 's rock music .", "storylet_id": "205199"}], [{"original_text": "This is grandma's cafe from outside. It's beautifully decorated by grandma's plants and wooden entrance grandpa made.", "album_id": "72157637589780155", "photo_flickr_id": "10817183294", "setting": "first-2-pick-and-tell", "worker_id": "Q2BL4HHTKELFBQJ", "story_id": "41045", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is grandma 's cafe from outside . it 's beautifully decorated by grandma 's plants and wooden entrance grandpa made .", "storylet_id": "205225"}], [{"original_text": "grandma is pouring a cup of coffee to a neighborhood friend who stopped by to get delicious cup of our family traditional coffee ", "album_id": "72157637589780155", "photo_flickr_id": "10817188514", "setting": "first-2-pick-and-tell", "worker_id": "Q2BL4HHTKELFBQJ", "story_id": "41045", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma is pouring a cup of coffee to a neighborhood friend who stopped by to get delicious cup of our family traditional coffee", "storylet_id": "205226"}], [{"original_text": "This is the cafe gramda owns. No one is here because the cafe isn't open yet but usually it's packed!", "album_id": "72157637589780155", "photo_flickr_id": "10817061935", "setting": "first-2-pick-and-tell", "worker_id": "Q2BL4HHTKELFBQJ", "story_id": "41045", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the cafe gramda owns . no one is here because the cafe is n't open yet but usually it 's packed !", "storylet_id": "205227"}], [{"original_text": "grandma's delicious baked goods that she offers at her cafe. They are baked fresh daily.", "album_id": "72157637589780155", "photo_flickr_id": "10817078636", "setting": "first-2-pick-and-tell", "worker_id": "Q2BL4HHTKELFBQJ", "story_id": "41045", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandma 's delicious baked goods that she offers at her cafe . they are baked fresh daily .", "storylet_id": "205228"}], [{"original_text": "grandma was teaching mommy how to make proper coffee using traditional family recipe", "album_id": "72157637589780155", "photo_flickr_id": "10817097105", "setting": "first-2-pick-and-tell", "worker_id": "Q2BL4HHTKELFBQJ", "story_id": "41045", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandma was teaching mommy how to make proper coffee using traditional family recipe", "storylet_id": "205229"}], [{"original_text": "A customer comes into the store to get some food.", "album_id": "72157637589780155", "photo_flickr_id": "10817188514", "setting": "first-2-pick-and-tell", "worker_id": "LHF65XRO3NGQIK2", "story_id": "41046", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a customer comes into the store to get some food .", "storylet_id": "205230"}], [{"original_text": "The waitress, after putting in the order, gladly gets the food for the customer.", "album_id": "72157637589780155", "photo_flickr_id": "10817205774", "setting": "first-2-pick-and-tell", "worker_id": "LHF65XRO3NGQIK2", "story_id": "41046", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the waitress , after putting in the order , gladly gets the food for the customer .", "storylet_id": "205231"}], [{"original_text": "She also gets some drinks because the customer is very thirsty.", "album_id": "72157637589780155", "photo_flickr_id": "10817090566", "setting": "first-2-pick-and-tell", "worker_id": "LHF65XRO3NGQIK2", "story_id": "41046", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she also gets some drinks because the customer is very thirsty .", "storylet_id": "205232"}], [{"original_text": "The customer sits down to have a meal with their companion.", "album_id": "72157637589780155", "photo_flickr_id": "10817219234", "setting": "first-2-pick-and-tell", "worker_id": "LHF65XRO3NGQIK2", "story_id": "41046", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the customer sits down to have a meal with their companion .", "storylet_id": "205233"}], [{"original_text": "The customer is still thirsty so the waitress gets another drink.", "album_id": "72157637589780155", "photo_flickr_id": "10817097105", "setting": "first-2-pick-and-tell", "worker_id": "LHF65XRO3NGQIK2", "story_id": "41046", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the customer is still thirsty so the waitress gets another drink .", "storylet_id": "205234"}], [{"original_text": "it was a great day to get some work done", "album_id": "72157637589780155", "photo_flickr_id": "10817183294", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41047", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a great day to get some work done", "storylet_id": "205235"}], [{"original_text": "they opened up and served customers right away", "album_id": "72157637589780155", "photo_flickr_id": "10817188514", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41047", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they opened up and served customers right away", "storylet_id": "205236"}], [{"original_text": "they waited for more customers to come in ", "album_id": "72157637589780155", "photo_flickr_id": "10817061935", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41047", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they waited for more customers to come in", "storylet_id": "205237"}], [{"original_text": "they offered many treats and snacks ", "album_id": "72157637589780155", "photo_flickr_id": "10817078636", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41047", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they offered many treats and snacks", "storylet_id": "205238"}], [{"original_text": "here the boss is teaching the new employee how to work the machines ", "album_id": "72157637589780155", "photo_flickr_id": "10817097105", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41047", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here the boss is teaching the new employee how to work the machines", "storylet_id": "205239"}], [{"original_text": "This is a nice, country style diner. ", "album_id": "72157637589780155", "photo_flickr_id": "10817183294", "setting": "last-3-pick-old-and-tell", "worker_id": "MPFZPPZS595V883", "story_id": "41048", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a nice , country style diner .", "storylet_id": "205240"}], [{"original_text": "A woman inside attends to a customer.", "album_id": "72157637589780155", "photo_flickr_id": "10817188514", "setting": "last-3-pick-old-and-tell", "worker_id": "MPFZPPZS595V883", "story_id": "41048", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a woman inside attends to a customer .", "storylet_id": "205241"}], [{"original_text": "The restaurant's country interior holds many people.", "album_id": "72157637589780155", "photo_flickr_id": "10817061935", "setting": "last-3-pick-old-and-tell", "worker_id": "MPFZPPZS595V883", "story_id": "41048", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the restaurant 's country interior holds many people .", "storylet_id": "205242"}], [{"original_text": "The restaurant serves many different styles of dishes.", "album_id": "72157637589780155", "photo_flickr_id": "10817078636", "setting": "last-3-pick-old-and-tell", "worker_id": "MPFZPPZS595V883", "story_id": "41048", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the restaurant serves many different styles of dishes .", "storylet_id": "205243"}], [{"original_text": "The employees of the restaurant serve hot coffee.", "album_id": "72157637589780155", "photo_flickr_id": "10817097105", "setting": "last-3-pick-old-and-tell", "worker_id": "MPFZPPZS595V883", "story_id": "41048", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the employees of the restaurant serve hot coffee .", "storylet_id": "205244"}], [{"original_text": "We visited a local cafe", "album_id": "72157637589780155", "photo_flickr_id": "10817183294", "setting": "last-3-pick-old-and-tell", "worker_id": "OMNBZ0BSF70NIQQ", "story_id": "41049", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited a local cafe", "storylet_id": "205245"}], [{"original_text": "It was nice and bright inside and the service was excellent", "album_id": "72157637589780155", "photo_flickr_id": "10817188514", "setting": "last-3-pick-old-and-tell", "worker_id": "OMNBZ0BSF70NIQQ", "story_id": "41049", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was nice and bright inside and the service was excellent", "storylet_id": "205246"}], [{"original_text": "We had the run of the whole place", "album_id": "72157637589780155", "photo_flickr_id": "10817061935", "setting": "last-3-pick-old-and-tell", "worker_id": "OMNBZ0BSF70NIQQ", "story_id": "41049", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had the run of the whole place", "storylet_id": "205247"}], [{"original_text": "There were coffee and pastries for sale", "album_id": "72157637589780155", "photo_flickr_id": "10817078636", "setting": "last-3-pick-old-and-tell", "worker_id": "OMNBZ0BSF70NIQQ", "story_id": "41049", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were coffee and pastries for sale", "storylet_id": "205248"}], [{"original_text": "The coffee was excellent and I ordered an espresso", "album_id": "72157637589780155", "photo_flickr_id": "10817097105", "setting": "last-3-pick-old-and-tell", "worker_id": "OMNBZ0BSF70NIQQ", "story_id": "41049", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the coffee was excellent and i ordered an espresso", "storylet_id": "205249"}], [{"original_text": "This is Aiden with his mom, and today is his fourth birthday!", "album_id": "72157638030736484", "photo_flickr_id": "11042109595", "setting": "first-2-pick-and-tell", "worker_id": "EDAAR7GF09VCQ92", "story_id": "41050", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is [male] with his mom , and today is his fourth birthday !", "storylet_id": "205250"}], [{"original_text": "His grandparents came in all the way from Canada and got him trading cards for the game Aiden loves to play.", "album_id": "72157638030736484", "photo_flickr_id": "11042288353", "setting": "first-2-pick-and-tell", "worker_id": "EDAAR7GF09VCQ92", "story_id": "41050", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his grandparents came in all the way from location and got him trading cards for the game [male] loves to play .", "storylet_id": "205251"}], [{"original_text": "Even all of Aiden's friends from pre-school came over for his party.", "album_id": "72157638030736484", "photo_flickr_id": "11042289903", "setting": "first-2-pick-and-tell", "worker_id": "EDAAR7GF09VCQ92", "story_id": "41050", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even all of [male] 's friends from pre-school came over for his party .", "storylet_id": "205252"}], [{"original_text": "Aiden is in love with tractors and construction vehicles, so we decided to get him a cake that represented that.", "album_id": "72157638030736484", "photo_flickr_id": "11042086335", "setting": "first-2-pick-and-tell", "worker_id": "EDAAR7GF09VCQ92", "story_id": "41050", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is in love with tractors and construction vehicles , so we decided to get him a cake that represented that .", "storylet_id": "205253"}], [{"original_text": "Aiden had a great time at his party and said it was his best birthday ever! That means we'll have to work harder next year in order to top this one.", "album_id": "72157638030736484", "photo_flickr_id": "11042248234", "setting": "first-2-pick-and-tell", "worker_id": "EDAAR7GF09VCQ92", "story_id": "41050", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] had a great time at his party and said it was his best birthday ever ! that means we 'll have to work harder next year in order to top this one .", "storylet_id": "205254"}], [{"original_text": "Welcome to my birthday! We were ready and waiting for everyone to show up.", "album_id": "72157638030736484", "photo_flickr_id": "11042203806", "setting": "first-2-pick-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "41051", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "welcome to my birthday ! we were ready and waiting for everyone to show up .", "storylet_id": "205255"}], [{"original_text": "We had so many activities planned. Crafts and snacks for all.", "album_id": "72157638030736484", "photo_flickr_id": "11042188066", "setting": "first-2-pick-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "41051", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had so many activities planned . crafts and snacks for all .", "storylet_id": "205256"}], [{"original_text": "Grandma and grandpa helped do activities too. Everyone had fun and liked my crown.", "album_id": "72157638030736484", "photo_flickr_id": "11042288353", "setting": "first-2-pick-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "41051", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandma and grandpa helped do activities too . everyone had fun and liked my crown .", "storylet_id": "205257"}], [{"original_text": "Next was time for the cake! Chocolate cake being bulldozed was so creative.", "album_id": "72157638030736484", "photo_flickr_id": "11042083575", "setting": "first-2-pick-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "41051", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next was time for the cake ! chocolate cake being bulldozed was so creative .", "storylet_id": "205258"}], [{"original_text": "Goodbye everyone, thanks so much for coming to my birthday party today!", "album_id": "72157638030736484", "photo_flickr_id": "11042109595", "setting": "first-2-pick-and-tell", "worker_id": "MVJH2AZYDH55HY7", "story_id": "41051", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "goodbye everyone , thanks so much for coming to my birthday party today !", "storylet_id": "205259"}], [{"original_text": "It was a very special birthday for Tavi this year.", "album_id": "72157638030736484", "photo_flickr_id": "11042203806", "setting": "last-3-pick-old-and-tell", "worker_id": "2791W4O702VA8XR", "story_id": "41052", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a very special birthday for tavi this year .", "storylet_id": "205260"}], [{"original_text": "He and his friends had some snacks while waiting for everyone to arrive.", "album_id": "72157638030736484", "photo_flickr_id": "11042188066", "setting": "last-3-pick-old-and-tell", "worker_id": "2791W4O702VA8XR", "story_id": "41052", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he and his friends had some snacks while waiting for everyone to arrive .", "storylet_id": "205261"}], [{"original_text": "Then came the gifts, each exiting him more.", "album_id": "72157638030736484", "photo_flickr_id": "11042288353", "setting": "last-3-pick-old-and-tell", "worker_id": "2791W4O702VA8XR", "story_id": "41052", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then came the gifts , each exiting him more .", "storylet_id": "205262"}], [{"original_text": "And what birthday would be complete without a cake!", "album_id": "72157638030736484", "photo_flickr_id": "11042083575", "setting": "last-3-pick-old-and-tell", "worker_id": "2791W4O702VA8XR", "story_id": "41052", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and what birthday would be complete without a cake !", "storylet_id": "205263"}], [{"original_text": "At the end of the party he reminds us he is now 4.", "album_id": "72157638030736484", "photo_flickr_id": "11042109595", "setting": "last-3-pick-old-and-tell", "worker_id": "2791W4O702VA8XR", "story_id": "41052", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the party he reminds us he is now 4 .", "storylet_id": "205264"}], [{"original_text": "For his fourth birthday, we had a birthday party for our son. ", "album_id": "72157638030736484", "photo_flickr_id": "11042109595", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41053", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for his fourth birthday , we had a birthday party for our son .", "storylet_id": "205265"}], [{"original_text": "A lot of people were invited and attended including our son's grandparents.", "album_id": "72157638030736484", "photo_flickr_id": "11042288353", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41053", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of people were invited and attended including our son 's grandparents .", "storylet_id": "205266"}], [{"original_text": "Making a special appearance were some of our son's friends from pre-school.", "album_id": "72157638030736484", "photo_flickr_id": "11042289903", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41053", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "making a special appearance were some of our son 's friends from pre-school .", "storylet_id": "205267"}], [{"original_text": "Our son is obsessed with construction machinery, so we made him a chocolate cake with some of his favorite machines.", "album_id": "72157638030736484", "photo_flickr_id": "11042086335", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41053", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our son is obsessed with construction machinery , so we made him a chocolate cake with some of his favorite machines .", "storylet_id": "205268"}], [{"original_text": "At the end of the party, our son was thrilled. ", "album_id": "72157638030736484", "photo_flickr_id": "11042248234", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41053", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the party , our son was thrilled .", "storylet_id": "205269"}], [{"original_text": "Tavi had a great fourth birthday.", "album_id": "72157638030736484", "photo_flickr_id": "11042109595", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEGGXWL1QCC2L22", "story_id": "41054", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "tavi had a great fourth birthday .", "storylet_id": "205270"}], [{"original_text": "He played games.", "album_id": "72157638030736484", "photo_flickr_id": "11042288353", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEGGXWL1QCC2L22", "story_id": "41054", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he played games .", "storylet_id": "205271"}], [{"original_text": "And learned a few things too!", "album_id": "72157638030736484", "photo_flickr_id": "11042289903", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEGGXWL1QCC2L22", "story_id": "41054", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and learned a few things too !", "storylet_id": "205272"}], [{"original_text": "Of course no birthday is complete without cake.", "album_id": "72157638030736484", "photo_flickr_id": "11042086335", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEGGXWL1QCC2L22", "story_id": "41054", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course no birthday is complete without cake .", "storylet_id": "205273"}], [{"original_text": "It was a great day!", "album_id": "72157638030736484", "photo_flickr_id": "11042248234", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEGGXWL1QCC2L22", "story_id": "41054", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great day !", "storylet_id": "205274"}], [{"original_text": "Our family always does a fireworks display for the 4th of July.", "album_id": "72157594452428108", "photo_flickr_id": "341274025", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41060", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family always does a fireworks display for the 4th of july .", "storylet_id": "205300"}], [{"original_text": "My brother shot one off of the balcony that nearly caught the house on fire.", "album_id": "72157594452428108", "photo_flickr_id": "341274629", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41060", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my brother shot one off of the balcony that nearly caught the house on fire .", "storylet_id": "205301"}], [{"original_text": "We finally got the hang of it by the third shot fired.", "album_id": "72157594452428108", "photo_flickr_id": "341279191", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41060", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we finally got the hang of it by the third shot fired .", "storylet_id": "205302"}], [{"original_text": "They lit the sky up in magnificent beauty.", "album_id": "72157594452428108", "photo_flickr_id": "341281360", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41060", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they lit the sky up in magnificent beauty .", "storylet_id": "205303"}], [{"original_text": "I had to be careful though because the fireworks were a bit faulty and were not wanting to burn right all night long.", "album_id": "72157594452428108", "photo_flickr_id": "341299278", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41060", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had to be careful though because the fireworks were a bit faulty and were not wanting to burn right all night long .", "storylet_id": "205304"}], [{"original_text": "We were able to see the fireworks display from our backyard.", "album_id": "72157594452428108", "photo_flickr_id": "341261863", "setting": "first-2-pick-and-tell", "worker_id": "O1LZJ1MROIVO5D6", "story_id": "41061", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were able to see the fireworks display from our backyard .", "storylet_id": "205305"}], [{"original_text": " There were many different types of fireworks.", "album_id": "72157594452428108", "photo_flickr_id": "341260306", "setting": "first-2-pick-and-tell", "worker_id": "O1LZJ1MROIVO5D6", "story_id": "41061", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many different types of fireworks .", "storylet_id": "205306"}], [{"original_text": "The finale of the fireworks show was extravagant.", "album_id": "72157594452428108", "photo_flickr_id": "341279191", "setting": "first-2-pick-and-tell", "worker_id": "O1LZJ1MROIVO5D6", "story_id": "41061", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the finale of the fireworks show was extravagant .", "storylet_id": "205307"}], [{"original_text": "We decided to do some of our own fireworks in our porch.", "album_id": "72157594452428108", "photo_flickr_id": "341274629", "setting": "first-2-pick-and-tell", "worker_id": "O1LZJ1MROIVO5D6", "story_id": "41061", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we decided to do some of our own fireworks in our porch .", "storylet_id": "205308"}], [{"original_text": "It was not a good idea to do our own fireworks because a small fire almost started.", "album_id": "72157594452428108", "photo_flickr_id": "341299278", "setting": "first-2-pick-and-tell", "worker_id": "O1LZJ1MROIVO5D6", "story_id": "41061", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was not a good idea to do our own fireworks because a small fire almost started .", "storylet_id": "205309"}], [{"original_text": "This firework is original in that the different colored lights snake out from the center.", "album_id": "72157594452428108", "photo_flickr_id": "341261863", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "41062", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this firework is original in that the different colored lights snake out from the center .", "storylet_id": "205310"}], [{"original_text": "When several fireworks go off at the same time, it's hard to appreciate the beauty of each one.", "album_id": "72157594452428108", "photo_flickr_id": "341260306", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "41062", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when several fireworks go off at the same time , it 's hard to appreciate the beauty of each one .", "storylet_id": "205311"}], [{"original_text": "Sometimes the fireworks can be so brilliant they almost resemble the sun.", "album_id": "72157594452428108", "photo_flickr_id": "341279191", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "41062", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sometimes the fireworks can be so brilliant they almost resemble the sun .", "storylet_id": "205312"}], [{"original_text": "After the show, we decided to set off the small personal fireworks we purchased.", "album_id": "72157594452428108", "photo_flickr_id": "341274629", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "41062", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the show , we decided to set off the small personal fireworks we purchased .", "storylet_id": "205313"}], [{"original_text": "Unfortunately, this firework was a dud and didn't produce anything too spectacular.", "album_id": "72157594452428108", "photo_flickr_id": "341299278", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "41062", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "unfortunately , this firework was a dud and did n't produce anything too spectacular .", "storylet_id": "205314"}], [{"original_text": "The 4th of July fireworks got off to a great start. ", "album_id": "72157594452428108", "photo_flickr_id": "341261863", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41063", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the 4th of july fireworks got off to a great start .", "storylet_id": "205315"}], [{"original_text": "Some of the fireworks could be seen from a great distance. ", "album_id": "72157594452428108", "photo_flickr_id": "341260306", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41063", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the fireworks could be seen from a great distance .", "storylet_id": "205316"}], [{"original_text": "Up close, some of the fireworks were powerful and very loud. ", "album_id": "72157594452428108", "photo_flickr_id": "341279191", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41063", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "up close , some of the fireworks were powerful and very loud .", "storylet_id": "205317"}], [{"original_text": "There was a brief scare when one of the fireworks failed to launch. ", "album_id": "72157594452428108", "photo_flickr_id": "341274629", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41063", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a brief scare when one of the fireworks failed to launch .", "storylet_id": "205318"}], [{"original_text": "Thankfully, the fire on the fireworks platform was quickly extinguished. ", "album_id": "72157594452428108", "photo_flickr_id": "341299278", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41063", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thankfully , the fire on the fireworks platform was quickly extinguished .", "storylet_id": "205319"}], [{"original_text": "When the fireworks started, no-one was thinking much about fireworks safety.", "album_id": "72157594452428108", "photo_flickr_id": "341274025", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41064", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when the fireworks started , no-one was thinking much about fireworks safety .", "storylet_id": "205320"}], [{"original_text": "It did seem like the fireworks were being set off a bit close to buildings.", "album_id": "72157594452428108", "photo_flickr_id": "341274629", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41064", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it did seem like the fireworks were being set off a bit close to buildings .", "storylet_id": "205321"}], [{"original_text": "But they were so beautiful, no-one wanted them to stop.", "album_id": "72157594452428108", "photo_flickr_id": "341279191", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41064", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but they were so beautiful , no-one wanted them to stop .", "storylet_id": "205322"}], [{"original_text": "One of the last bursts filled the sky, and made everyone gasp.", "album_id": "72157594452428108", "photo_flickr_id": "341281360", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41064", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the last bursts filled the sky , and made everyone gasp .", "storylet_id": "205323"}], [{"original_text": "Then---disaster struck. A flaming ember bit paper on the porch, and the house caught fire and was eventually destroyed.", "album_id": "72157594452428108", "photo_flickr_id": "341299278", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41064", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then -- -disaster struck . a flaming ember bit paper on the porch , and the house caught fire and was eventually destroyed .", "storylet_id": "205324"}], [{"original_text": "The building was so plain.", "album_id": "72157594452834832", "photo_flickr_id": "341572877", "setting": "first-2-pick-and-tell", "worker_id": "PQ0AJ8U8F5XVA2M", "story_id": "41065", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the building was so plain .", "storylet_id": "205325"}], [{"original_text": "i wanted to give it some pizazz.", "album_id": "72157594452834832", "photo_flickr_id": "341572155", "setting": "first-2-pick-and-tell", "worker_id": "PQ0AJ8U8F5XVA2M", "story_id": "41065", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i wanted to give it some pizazz .", "storylet_id": "205326"}], [{"original_text": "It took a while.", "album_id": "72157594452834832", "photo_flickr_id": "341572718", "setting": "first-2-pick-and-tell", "worker_id": "PQ0AJ8U8F5XVA2M", "story_id": "41065", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it took a while .", "storylet_id": "205327"}], [{"original_text": "Finally after days of piecing it together, I the look I wanted.", "album_id": "72157594452834832", "photo_flickr_id": "341571668", "setting": "first-2-pick-and-tell", "worker_id": "PQ0AJ8U8F5XVA2M", "story_id": "41065", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally after days of piecing it together , i the look i wanted .", "storylet_id": "205328"}], [{"original_text": "Now it's beautiful.", "album_id": "72157594452834832", "photo_flickr_id": "341573101", "setting": "first-2-pick-and-tell", "worker_id": "PQ0AJ8U8F5XVA2M", "story_id": "41065", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now it 's beautiful .", "storylet_id": "205329"}], [{"original_text": "We got to visit a structure with a really neat design.", "album_id": "72157594452834832", "photo_flickr_id": "341570736", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41066", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got to visit a structure with a really neat design .", "storylet_id": "205330"}], [{"original_text": "The building was small, but really stood out.", "album_id": "72157594452834832", "photo_flickr_id": "341572877", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41066", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the building was small , but really stood out .", "storylet_id": "205331"}], [{"original_text": "Who ever took the time to do this really had their heart in it.", "album_id": "72157594452834832", "photo_flickr_id": "341573101", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41066", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "who ever took the time to do this really had their heart in it .", "storylet_id": "205332"}], [{"original_text": "The building design was very neat to look at and gave us some ideas on things we could try.", "album_id": "72157594452834832", "photo_flickr_id": "341571192", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41066", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the building design was very neat to look at and gave us some ideas on things we could try .", "storylet_id": "205333"}], [{"original_text": "As you can see in the picture whoever did this really took their time with it.", "album_id": "72157594452834832", "photo_flickr_id": "341572415", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41066", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as you can see in the picture whoever did this really took their time with it .", "storylet_id": "205334"}], [{"original_text": "An artist bought a building to turn into his gallery.", "album_id": "72157594452834832", "photo_flickr_id": "341572877", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41067", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an artist bought a building to turn into his gallery .", "storylet_id": "205335"}], [{"original_text": "He first made a design on the wall, resembling a firework at first.", "album_id": "72157594452834832", "photo_flickr_id": "341572155", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41067", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he first made a design on the wall , resembling a firework at first .", "storylet_id": "205336"}], [{"original_text": "Each day he added more and more pieces filling out the wall.", "album_id": "72157594452834832", "photo_flickr_id": "341572718", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41067", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each day he added more and more pieces filling out the wall .", "storylet_id": "205337"}], [{"original_text": "Finally one day the while wall was full of the design.", "album_id": "72157594452834832", "photo_flickr_id": "341571668", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41067", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally one day the while wall was full of the design .", "storylet_id": "205338"}], [{"original_text": "When it was finished, he showed off his artwork to the public.", "album_id": "72157594452834832", "photo_flickr_id": "341573101", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41067", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when it was finished , he showed off his artwork to the public .", "storylet_id": "205339"}], [{"original_text": "On the side of this building they are planning on building a beautiful mural design.", "album_id": "72157594452834832", "photo_flickr_id": "341572877", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41068", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on the side of this building they are planning on building a beautiful mural design .", "storylet_id": "205340"}], [{"original_text": "They have begun to put the mural together.", "album_id": "72157594452834832", "photo_flickr_id": "341572155", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41068", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they have begun to put the mural together .", "storylet_id": "205341"}], [{"original_text": "With each passing day, more and more work is done on it.", "album_id": "72157594452834832", "photo_flickr_id": "341572718", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41068", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "with each passing day , more and more work is done on it .", "storylet_id": "205342"}], [{"original_text": "All the pieces for the mural are finally glued together.", "album_id": "72157594452834832", "photo_flickr_id": "341571668", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41068", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all the pieces for the mural are finally glued together .", "storylet_id": "205343"}], [{"original_text": "The finished picture looks great on the side of the building. ", "album_id": "72157594452834832", "photo_flickr_id": "341573101", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41068", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finished picture looks great on the side of the building .", "storylet_id": "205344"}], [{"original_text": "Starting a project on the wall of a building.", "album_id": "72157594452834832", "photo_flickr_id": "341572877", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41069", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "starting a project on the wall of a building .", "storylet_id": "205345"}], [{"original_text": "Step one laying down the stones.", "album_id": "72157594452834832", "photo_flickr_id": "341572155", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41069", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "step one laying down the stones .", "storylet_id": "205346"}], [{"original_text": "Step two choosing a pattern.", "album_id": "72157594452834832", "photo_flickr_id": "341572718", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41069", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "step two choosing a pattern .", "storylet_id": "205347"}], [{"original_text": "Final step of the project, letting it dry. ", "album_id": "72157594452834832", "photo_flickr_id": "341571668", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41069", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "final step of the project , letting it dry .", "storylet_id": "205348"}], [{"original_text": "The facade is all done. ", "album_id": "72157594452834832", "photo_flickr_id": "341573101", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41069", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the facade is all done .", "storylet_id": "205349"}], [{"original_text": "It was their first American 4th of July party.", "album_id": "72157622988158689", "photo_flickr_id": "4232882823", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41070", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was their first american 4th of july party .", "storylet_id": "205350"}], [{"original_text": "The fireworks were blowing up in full force.", "album_id": "72157622988158689", "photo_flickr_id": "4232880681", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41070", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fireworks were blowing up in full force .", "storylet_id": "205351"}], [{"original_text": "They lit the sky up beautifully.", "album_id": "72157622988158689", "photo_flickr_id": "4233648040", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41070", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they lit the sky up beautifully .", "storylet_id": "205352"}], [{"original_text": "The little ones loved the sparklers.", "album_id": "72157622988158689", "photo_flickr_id": "4232869543", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41070", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the little ones loved the sparklers .", "storylet_id": "205353"}], [{"original_text": "The night ended well with lots of drinks flowing all night long.", "album_id": "72157622988158689", "photo_flickr_id": "4233635204", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41070", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night ended well with lots of drinks flowing all night long .", "storylet_id": "205354"}], [{"original_text": "We had so much fun at the New Years party.", "album_id": "72157622988158689", "photo_flickr_id": "4232882823", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41071", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had so much fun at the new years party .", "storylet_id": "205355"}], [{"original_text": "There were a lot of fireworks.", "album_id": "72157622988158689", "photo_flickr_id": "4233648040", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41071", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of fireworks .", "storylet_id": "205356"}], [{"original_text": "The fireworks were so pretty to watch in the sky.", "album_id": "72157622988158689", "photo_flickr_id": "4233647002", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41071", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fireworks were so pretty to watch in the sky .", "storylet_id": "205357"}], [{"original_text": "Afterwards the streets cleared out pretty quickly.", "album_id": "72157622988158689", "photo_flickr_id": "4232868489", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41071", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards the streets cleared out pretty quickly .", "storylet_id": "205358"}], [{"original_text": "It was as if no one had ever been there.", "album_id": "72157622988158689", "photo_flickr_id": "4232867481", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41071", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was as if no one had ever been there .", "storylet_id": "205359"}], [{"original_text": "Together, we raise our sparklers in celebration of the new year. ", "album_id": "72157622988158689", "photo_flickr_id": "4232882823", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "41072", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "together , we raise our sparklers in celebration of the new year .", "storylet_id": "205360"}], [{"original_text": "The light trails seem magical in the night. ", "album_id": "72157622988158689", "photo_flickr_id": "4232880681", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "41072", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the light trails seem magical in the night .", "storylet_id": "205361"}], [{"original_text": "The fireworks look like a flock of magical sparkling butterflies.", "album_id": "72157622988158689", "photo_flickr_id": "4233648040", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "41072", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fireworks look like a flock of magical sparkling butterflies .", "storylet_id": "205362"}], [{"original_text": "She lights the roman candle to say farewell to the old, and bring in the new year.", "album_id": "72157622988158689", "photo_flickr_id": "4232869543", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "41072", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she lights the roman candle to say farewell to the old , and bring in the new year .", "storylet_id": "205363"}], [{"original_text": "In the aftermath of the New Years celebration, the Champagne seemed to flow freely.", "album_id": "72157622988158689", "photo_flickr_id": "4233635204", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "41072", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the aftermath of the new years celebration , the champagne seemed to flow freely .", "storylet_id": "205364"}], [{"original_text": "Lots of people gathered for the celebration.", "album_id": "72157622988158689", "photo_flickr_id": "4232882823", "setting": "last-3-pick-old-and-tell", "worker_id": "EOOPJSRH22UAYQO", "story_id": "41073", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "lots of people gathered for the celebration .", "storylet_id": "205365"}], [{"original_text": "There were fireworks.", "album_id": "72157622988158689", "photo_flickr_id": "4232880681", "setting": "last-3-pick-old-and-tell", "worker_id": "EOOPJSRH22UAYQO", "story_id": "41073", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were fireworks .", "storylet_id": "205366"}], [{"original_text": "The fireworks lasted for a long time.", "album_id": "72157622988158689", "photo_flickr_id": "4233648040", "setting": "last-3-pick-old-and-tell", "worker_id": "EOOPJSRH22UAYQO", "story_id": "41073", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fireworks lasted for a long time .", "storylet_id": "205367"}], [{"original_text": "People loved the sparklers.", "album_id": "72157622988158689", "photo_flickr_id": "4232869543", "setting": "last-3-pick-old-and-tell", "worker_id": "EOOPJSRH22UAYQO", "story_id": "41073", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people loved the sparklers .", "storylet_id": "205368"}], [{"original_text": "After the celebration, there was a mess to clean up the next day.", "album_id": "72157622988158689", "photo_flickr_id": "4233635204", "setting": "last-3-pick-old-and-tell", "worker_id": "EOOPJSRH22UAYQO", "story_id": "41073", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the celebration , there was a mess to clean up the next day .", "storylet_id": "205369"}], [{"original_text": "Here's the girls with sparklers on 4th of July.", "album_id": "72157622988158689", "photo_flickr_id": "4232882823", "setting": "last-3-pick-old-and-tell", "worker_id": "6PE5Q7Z999ABH5H", "story_id": "41074", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here 's the girls with sparklers on 4th of july .", "storylet_id": "205370"}], [{"original_text": "Watching the big fireworks show was exciting.", "album_id": "72157622988158689", "photo_flickr_id": "4233648040", "setting": "last-3-pick-old-and-tell", "worker_id": "6PE5Q7Z999ABH5H", "story_id": "41074", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "watching the big fireworks show was exciting .", "storylet_id": "205371"}], [{"original_text": "...more fireworks in the sky...", "album_id": "72157622988158689", "photo_flickr_id": "4233647002", "setting": "last-3-pick-old-and-tell", "worker_id": "6PE5Q7Z999ABH5H", "story_id": "41074", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "... more fireworks in the sky ...", "storylet_id": "205372"}], [{"original_text": "After the fireworks show we headed home. Look at all the smoke in the city.", "album_id": "72157622988158689", "photo_flickr_id": "4232868489", "setting": "last-3-pick-old-and-tell", "worker_id": "6PE5Q7Z999ABH5H", "story_id": "41074", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the fireworks show we headed home . look at all the smoke in the city .", "storylet_id": "205373"}], [{"original_text": "We decided to hang out a little longer, cuz there was still a crowd.", "album_id": "72157622988158689", "photo_flickr_id": "4232867481", "setting": "last-3-pick-old-and-tell", "worker_id": "6PE5Q7Z999ABH5H", "story_id": "41074", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to hang out a little longer , cuz there was still a crowd .", "storylet_id": "205374"}], [{"original_text": "From these buildings you can see the firework display.", "album_id": "72157622989404053", "photo_flickr_id": "4234202030", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41075", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "from these buildings you can see the firework display .", "storylet_id": "205375"}], [{"original_text": "The colors are magnificent and reach over the buildings.", "album_id": "72157622989404053", "photo_flickr_id": "4234203662", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41075", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the colors are magnificent and reach over the buildings .", "storylet_id": "205376"}], [{"original_text": "When taking pictures of you have a slower shutter and fast aperture you can get a picture full of colors.", "album_id": "72157622989404053", "photo_flickr_id": "4234205370", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41075", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when taking pictures of you have a slower shutter and fast aperture you can get a picture full of colors .", "storylet_id": "205377"}], [{"original_text": "Fireworks keep going long into the night in some cities.", "album_id": "72157622989404053", "photo_flickr_id": "4233433243", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41075", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fireworks keep going long into the night in some cities .", "storylet_id": "205378"}], [{"original_text": "The fireworks are sent up all over the city in honor of the Fourth of July.", "album_id": "72157622989404053", "photo_flickr_id": "4233433479", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41075", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fireworks are sent up all over the city in honor of the fourth of july .", "storylet_id": "205379"}], [{"original_text": "Today we arrived at the hotel. We had a nice evening once we settled in. ", "album_id": "72157622989404053", "photo_flickr_id": "4234202030", "setting": "first-2-pick-and-tell", "worker_id": "7A6EIMOLMCSPYZ1", "story_id": "41076", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we arrived at the hotel . we had a nice evening once we settled in .", "storylet_id": "205380"}], [{"original_text": "Through our window while having cocktails we noticed a great surprise. The sky started to flicker and change different colors.", "album_id": "72157622989404053", "photo_flickr_id": "4234203274", "setting": "first-2-pick-and-tell", "worker_id": "7A6EIMOLMCSPYZ1", "story_id": "41076", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "through our window while having cocktails we noticed a great surprise . the sky started to flicker and change different colors .", "storylet_id": "205381"}], [{"original_text": "There were Fountain Fun-Dip fireworks, Cherry Rainbow Blasters, and Moon Rockets lighting up the sky. ", "album_id": "72157622989404053", "photo_flickr_id": "4234205100", "setting": "first-2-pick-and-tell", "worker_id": "7A6EIMOLMCSPYZ1", "story_id": "41076", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were fountain fun-dip fireworks , [female] rainbow blasters , and organization organization lighting up the sky .", "storylet_id": "205382"}], [{"original_text": "We enjoyed the show for a great part of the night right from the window. It went on for several hours. ", "album_id": "72157622989404053", "photo_flickr_id": "4234206076", "setting": "first-2-pick-and-tell", "worker_id": "7A6EIMOLMCSPYZ1", "story_id": "41076", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we enjoyed the show for a great part of the night right from the window . it went on for several hours .", "storylet_id": "205383"}], [{"original_text": "The show finally came to a close at midnight at which time we were ready to head to bed. What a bonus! We got to see a free show right from the hotel.", "album_id": "72157622989404053", "photo_flickr_id": "4234202394", "setting": "first-2-pick-and-tell", "worker_id": "7A6EIMOLMCSPYZ1", "story_id": "41076", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the show finally came to a close at midnight at which time we were ready to head to bed . what a bonus ! we got to see a free show right from the hotel .", "storylet_id": "205384"}], [{"original_text": "It was warm night waiting for the fireworks to start.", "album_id": "72157622989404053", "photo_flickr_id": "4234202030", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "41077", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was warm night waiting for the fireworks to start .", "storylet_id": "205385"}], [{"original_text": "The first one was really low and close to the buildings, I hope the get up higher.", "album_id": "72157622989404053", "photo_flickr_id": "4234203662", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "41077", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first one was really low and close to the buildings , i hope the get up higher .", "storylet_id": "205386"}], [{"original_text": "Opps, I think I excited and moved on that last one.", "album_id": "72157622989404053", "photo_flickr_id": "4234205370", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "41077", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "opps , i think i excited and moved on that last one .", "storylet_id": "205387"}], [{"original_text": "These get getting better and better, glad I got this awesome view from my friends building.", "album_id": "72157622989404053", "photo_flickr_id": "4233433243", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "41077", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these get getting better and better , glad i got this awesome view from my friends building .", "storylet_id": "205388"}], [{"original_text": "Well that was the last of them, great times, not back to the drinking.", "album_id": "72157622989404053", "photo_flickr_id": "4233433479", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "41077", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "well that was the last of them , great times , not back to the drinking .", "storylet_id": "205389"}], [{"original_text": "Last night we were at home minding our own business.", "album_id": "72157622989404053", "photo_flickr_id": "4234202030", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41078", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night we were at home minding our own business .", "storylet_id": "205390"}], [{"original_text": "I had just finished making some food to eat when we heard a loud noise.", "album_id": "72157622989404053", "photo_flickr_id": "4234203274", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41078", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had just finished making some food to eat when we heard a loud noise .", "storylet_id": "205391"}], [{"original_text": "There were fireworks going off our building!", "album_id": "72157622989404053", "photo_flickr_id": "4234205100", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41078", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were fireworks going off our building !", "storylet_id": "205392"}], [{"original_text": "They went on for about five minutes!", "album_id": "72157622989404053", "photo_flickr_id": "4234206076", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41078", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they went on for about five minutes !", "storylet_id": "205393"}], [{"original_text": "It was a surprising event!", "album_id": "72157622989404053", "photo_flickr_id": "4234202394", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41078", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a surprising event !", "storylet_id": "205394"}], [{"original_text": "The hotel we were staying at had a perfect view of the firework show", "album_id": "72157622989404053", "photo_flickr_id": "4234202030", "setting": "last-3-pick-old-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "41079", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the hotel we were staying at had a perfect view of the firework show", "storylet_id": "205395"}], [{"original_text": "we were excited as the show started", "album_id": "72157622989404053", "photo_flickr_id": "4234203274", "setting": "last-3-pick-old-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "41079", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were excited as the show started", "storylet_id": "205396"}], [{"original_text": "the first one to go off was amazing", "album_id": "72157622989404053", "photo_flickr_id": "4234205100", "setting": "last-3-pick-old-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "41079", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first one to go off was amazing", "storylet_id": "205397"}], [{"original_text": "then the show continued and we were really enjoying it", "album_id": "72157622989404053", "photo_flickr_id": "4234206076", "setting": "last-3-pick-old-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "41079", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then the show continued and we were really enjoying it", "storylet_id": "205398"}], [{"original_text": "when it was over, we were still amazed", "album_id": "72157622989404053", "photo_flickr_id": "4234202394", "setting": "last-3-pick-old-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "41079", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when it was over , we were still amazed", "storylet_id": "205399"}], [{"original_text": "This is an event to raise money by people jumping in the water when it is freezing.", "album_id": "72157622992647403", "photo_flickr_id": "4235717208", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41080", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is an event to raise money by people jumping in the water when it is freezing .", "storylet_id": "205400"}], [{"original_text": "A father and daughter did it and they are laughing with excitement.", "album_id": "72157622992647403", "photo_flickr_id": "4235717626", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41080", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a father and daughter did it and they are laughing with excitement .", "storylet_id": "205401"}], [{"original_text": "Drying off and warming up afterwards is the best part.", "album_id": "72157622992647403", "photo_flickr_id": "4234942901", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41080", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "drying off and warming up afterwards is the best part .", "storylet_id": "205402"}], [{"original_text": "They get an certificate and tshirt after they are done and the money goes to a good cause.", "album_id": "72157622992647403", "photo_flickr_id": "4234946941", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41080", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they get an certificate and tshirt after they are done and the money goes to a good cause .", "storylet_id": "205403"}], [{"original_text": "Afterwards, the father and daughter enjoy a bite to eat.", "album_id": "72157622992647403", "photo_flickr_id": "4234948619", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41080", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , the father and daughter enjoy a bite to eat .", "storylet_id": "205404"}], [{"original_text": "Today was the day to take the frigid plunge.", "album_id": "72157622992647403", "photo_flickr_id": "4234940699", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41081", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day to take the frigid plunge .", "storylet_id": "205405"}], [{"original_text": "There were many people lined up to partake in this event.", "album_id": "72157622992647403", "photo_flickr_id": "4235717208", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41081", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many people lined up to partake in this event .", "storylet_id": "205406"}], [{"original_text": "Afterwards it was very cold so I made sure to get dressed immediately into warmer clothes.", "album_id": "72157622992647403", "photo_flickr_id": "4234942901", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41081", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards it was very cold so i made sure to get dressed immediately into warmer clothes .", "storylet_id": "205407"}], [{"original_text": "There were carnival rides and food stands set up.", "album_id": "72157622992647403", "photo_flickr_id": "4234946483", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41081", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were carnival rides and food stands set up .", "storylet_id": "205408"}], [{"original_text": "I received a shirt as well as an award for completing the task.", "album_id": "72157622992647403", "photo_flickr_id": "4234946941", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41081", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i received a shirt as well as an award for completing the task .", "storylet_id": "205409"}], [{"original_text": "In the middle of winter, the Polar Bear Club takes a swim in the ocean.", "album_id": "72157622992647403", "photo_flickr_id": "4235717208", "setting": "last-3-pick-old-and-tell", "worker_id": "TOPPXN96TLITOY1", "story_id": "41082", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the middle of winter , the organization organization organization takes a swim in the ocean .", "storylet_id": "205410"}], [{"original_text": "Luke and Mary took the plunge this year. It was freezing.", "album_id": "72157622992647403", "photo_flickr_id": "4235717626", "setting": "last-3-pick-old-and-tell", "worker_id": "TOPPXN96TLITOY1", "story_id": "41082", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] and [female] took the plunge this year . it was freezing .", "storylet_id": "205411"}], [{"original_text": "Luke wrapped a towel around himself immediately. ", "album_id": "72157622992647403", "photo_flickr_id": "4234942901", "setting": "last-3-pick-old-and-tell", "worker_id": "TOPPXN96TLITOY1", "story_id": "41082", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] wrapped a towel around himself immediately .", "storylet_id": "205412"}], [{"original_text": "Luke and Mary got awards for being so brave.", "album_id": "72157622992647403", "photo_flickr_id": "4234946941", "setting": "last-3-pick-old-and-tell", "worker_id": "TOPPXN96TLITOY1", "story_id": "41082", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and [female] got awards for being so brave .", "storylet_id": "205413"}], [{"original_text": "They went and celebrated in a warm restaurant for lunch.", "album_id": "72157622992647403", "photo_flickr_id": "4234948619", "setting": "last-3-pick-old-and-tell", "worker_id": "TOPPXN96TLITOY1", "story_id": "41082", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they went and celebrated in a warm restaurant for lunch .", "storylet_id": "205414"}], [{"original_text": "I went for a charity swim on the beach today with my daughter.", "album_id": "72157622992647403", "photo_flickr_id": "4234940699", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41083", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a charity swim on the beach today with my daughter .", "storylet_id": "205415"}], [{"original_text": "The water was extremely cold.", "album_id": "72157622992647403", "photo_flickr_id": "4235717208", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41083", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water was extremely cold .", "storylet_id": "205416"}], [{"original_text": "My daughter took a picture of me because I look so much taller then everyone else on the beach.", "album_id": "72157622992647403", "photo_flickr_id": "4234942901", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41083", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my daughter took a picture of me because i look so much taller then everyone else on the beach .", "storylet_id": "205417"}], [{"original_text": "From where we're standing on the beach, you can see the ferris wheel beautifully.", "album_id": "72157622992647403", "photo_flickr_id": "4234946483", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41083", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "from where we 're standing on the beach , you can see the ferris wheel beautifully .", "storylet_id": "205418"}], [{"original_text": "They gave us a shirt and certificate for diving into the cold water.", "album_id": "72157622992647403", "photo_flickr_id": "4234946941", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41083", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they gave us a shirt and certificate for diving into the cold water .", "storylet_id": "205419"}], [{"original_text": "An annual even in town is the polar plunge, where people run into the freezing cold ice water.", "album_id": "72157622992647403", "photo_flickr_id": "4234940699", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41084", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an annual even in town is the polar plunge , where people run into the freezing cold ice water .", "storylet_id": "205420"}], [{"original_text": "The brave people are in the water!", "album_id": "72157622992647403", "photo_flickr_id": "4235717208", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41084", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the brave people are in the water !", "storylet_id": "205421"}], [{"original_text": "After they come out, they quickly dry off with towels.", "album_id": "72157622992647403", "photo_flickr_id": "4234942901", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41084", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after they come out , they quickly dry off with towels .", "storylet_id": "205422"}], [{"original_text": "There are many people watching this event from the beach.", "album_id": "72157622992647403", "photo_flickr_id": "4234946483", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41084", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are many people watching this event from the beach .", "storylet_id": "205423"}], [{"original_text": "To the participants of this event, they receive a t shirt and certificate indicating that they did it. ", "album_id": "72157622992647403", "photo_flickr_id": "4234946941", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41084", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to the participants of this event , they receive a t shirt and certificate indicating that they did it .", "storylet_id": "205424"}], [{"original_text": "These men are touring the town and find many unique things.", "album_id": "72157628664816691", "photo_flickr_id": "6613066021", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41085", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these men are touring the town and find many unique things .", "storylet_id": "205425"}], [{"original_text": "There are many fresh markets available on the streets.", "album_id": "72157628664816691", "photo_flickr_id": "6613073537", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41085", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are many fresh markets available on the streets .", "storylet_id": "205426"}], [{"original_text": "The buildings are very colorful.", "album_id": "72157628664816691", "photo_flickr_id": "6613082213", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41085", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the buildings are very colorful .", "storylet_id": "205427"}], [{"original_text": "Most buildings are full of paintings, graffiti and art which makes the city full of expression.", "album_id": "72157628664816691", "photo_flickr_id": "6613083557", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41085", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "most buildings are full of paintings , graffiti and art which makes the city full of expression .", "storylet_id": "205428"}], [{"original_text": "Their are little characters set in the street by one artist that adds character and something different.", "album_id": "72157628664816691", "photo_flickr_id": "6613091143", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41085", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their are little characters set in the street by one artist that adds character and something different .", "storylet_id": "205429"}], [{"original_text": "There once was a city in utter disrepair from a lot of gang violence.", "album_id": "72157628664816691", "photo_flickr_id": "6613018299", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41086", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there once was a city in utter disrepair from a lot of gang violence .", "storylet_id": "205430"}], [{"original_text": "The people of the neighborhood, took pride in their work and wanted to regain their community to reflect their pride.", "album_id": "72157628664816691", "photo_flickr_id": "6613074667", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41086", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the people of the neighborhood , took pride in their work and wanted to regain their community to reflect their pride .", "storylet_id": "205431"}], [{"original_text": "So they began to redecorate the city with colorful vibrant artwork all over the buildings.", "album_id": "72157628664816691", "photo_flickr_id": "6613085141", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41086", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so they began to redecorate the city with colorful vibrant artwork all over the buildings .", "storylet_id": "205432"}], [{"original_text": "They even decorated the streets and sidewalks with artwork. ", "album_id": "72157628664816691", "photo_flickr_id": "6613091143", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41086", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even decorated the streets and sidewalks with artwork .", "storylet_id": "205433"}], [{"original_text": "Within no time their city reflected the pride the citizens had within themselves, and they began to flourish as a tourist town.", "album_id": "72157628664816691", "photo_flickr_id": "6613066021", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41086", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "within no time their city reflected the pride the citizens had within themselves , and they began to flourish as a tourist town .", "storylet_id": "205434"}], [{"original_text": "First, we went to the market to shop for meat.", "album_id": "72157628664816691", "photo_flickr_id": "6613066021", "setting": "last-3-pick-old-and-tell", "worker_id": "1EA0OMX6MVZ6FKQ", "story_id": "41087", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "first , we went to the market to shop for meat .", "storylet_id": "205435"}], [{"original_text": "The we got busy cooking it.", "album_id": "72157628664816691", "photo_flickr_id": "6613073537", "setting": "last-3-pick-old-and-tell", "worker_id": "1EA0OMX6MVZ6FKQ", "story_id": "41087", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the we got busy cooking it .", "storylet_id": "205436"}], [{"original_text": "We ate on the balcony.", "album_id": "72157628664816691", "photo_flickr_id": "6613082213", "setting": "last-3-pick-old-and-tell", "worker_id": "1EA0OMX6MVZ6FKQ", "story_id": "41087", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we ate on the balcony .", "storylet_id": "205437"}], [{"original_text": "Afterwards, we went for a walk to see the neighborhood sights, like this graffiti-covered apartment building.", "album_id": "72157628664816691", "photo_flickr_id": "6613083557", "setting": "last-3-pick-old-and-tell", "worker_id": "1EA0OMX6MVZ6FKQ", "story_id": "41087", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards , we went for a walk to see the neighborhood sights , like this graffiti-covered apartment building .", "storylet_id": "205438"}], [{"original_text": "In a common area, we wondered where all these carefully arranged figurines came from.", "album_id": "72157628664816691", "photo_flickr_id": "6613091143", "setting": "last-3-pick-old-and-tell", "worker_id": "1EA0OMX6MVZ6FKQ", "story_id": "41087", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in a common area , we wondered where all these carefully arranged figurines came from .", "storylet_id": "205439"}], [{"original_text": "My friend and I went traveling around Brazil last summer.", "album_id": "72157628664816691", "photo_flickr_id": "6613066021", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41088", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend and i went traveling around location last summer .", "storylet_id": "205440"}], [{"original_text": "We walked through the market and met a man selling meat.", "album_id": "72157628664816691", "photo_flickr_id": "6613073537", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41088", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we walked through the market and met a man selling meat .", "storylet_id": "205441"}], [{"original_text": "We stayed in this dumpy hotel.", "album_id": "72157628664816691", "photo_flickr_id": "6613082213", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41088", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stayed in this dumpy hotel .", "storylet_id": "205442"}], [{"original_text": "The view from the hotel was a graffitied out abandoned building.", "album_id": "72157628664816691", "photo_flickr_id": "6613083557", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41088", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view from the hotel was a graffitied out abandoned building .", "storylet_id": "205443"}], [{"original_text": "There was an artist who set up toys on the ground outside our hotel.", "album_id": "72157628664816691", "photo_flickr_id": "6613091143", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41088", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was an artist who set up toys on the ground outside our hotel .", "storylet_id": "205444"}], [{"original_text": "We were told this food stand has the very best meals in the whole city.", "album_id": "72157628664816691", "photo_flickr_id": "6613066021", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41089", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were told this food stand has the very best meals in the whole city .", "storylet_id": "205445"}], [{"original_text": "This man is preparing food for the dinner rush.", "album_id": "72157628664816691", "photo_flickr_id": "6613073537", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41089", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this man is preparing food for the dinner rush .", "storylet_id": "205446"}], [{"original_text": "After dinner we walk around the town, we can see many tall apartment buildings.", "album_id": "72157628664816691", "photo_flickr_id": "6613082213", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41089", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after dinner we walk around the town , we can see many tall apartment buildings .", "storylet_id": "205447"}], [{"original_text": "Some of the buildings look run down and abandoned.", "album_id": "72157628664816691", "photo_flickr_id": "6613083557", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41089", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the buildings look run down and abandoned .", "storylet_id": "205448"}], [{"original_text": "One unique thing to this town is the figurines lined neatly along the streets. ", "album_id": "72157628664816691", "photo_flickr_id": "6613091143", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41089", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one unique thing to this town is the figurines lined neatly along the streets .", "storylet_id": "205449"}], [{"original_text": " This was Grandpa driving up to get me to go to the carnival. I wasn't very excited to be honest. ", "album_id": "72157628666284151", "photo_flickr_id": "6613765525", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41090", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was grandpa driving up to get me to go to the carnival . i was n't very excited to be honest .", "storylet_id": "205450"}], [{"original_text": "It was almost dark when we got there. There were so many cool lights all over the place. ", "album_id": "72157628666284151", "photo_flickr_id": "6613814091", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41090", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was almost dark when we got there . there were so many cool lights all over the place .", "storylet_id": "205451"}], [{"original_text": "This was my favorite display of lights. I could stand under it and look up and imagine I was in huge arm fulls of lights hugging me. ", "album_id": "72157628666284151", "photo_flickr_id": "6613800681", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41090", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was my favorite display of lights . i could stand under it and look up and imagine i was in huge arm fulls of lights hugging me .", "storylet_id": "205452"}], [{"original_text": "As It got darker the lights looked even cooler. This was the back of a building. I hung out here most of the night to escape my family. ", "album_id": "72157628666284151", "photo_flickr_id": "6613824213", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41090", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as it got darker the lights looked even cooler . this was the back of a building . i hung out here most of the night to escape my family .", "storylet_id": "205453"}], [{"original_text": "A selfie of me in the dark. This one really captures my mood. Hiding behind the colorful building in the dark. I can't wait to go home. ", "album_id": "72157628666284151", "photo_flickr_id": "6613838251", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41090", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a selfie of me in the dark . this one really captures my mood . hiding behind the colorful building in the dark . i ca n't wait to go home .", "storylet_id": "205454"}], [{"original_text": "It was almost night time and that meant it was time to have some fun.", "album_id": "72157628666284151", "photo_flickr_id": "6613797907", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41091", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was almost night time and that meant it was time to have some fun .", "storylet_id": "205455"}], [{"original_text": "We are going to the festival today.", "album_id": "72157628666284151", "photo_flickr_id": "6613800681", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41091", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are going to the festival today .", "storylet_id": "205456"}], [{"original_text": "There are many rides and games as well as other things to see.", "album_id": "72157628666284151", "photo_flickr_id": "6613811263", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41091", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are many rides and games as well as other things to see .", "storylet_id": "205457"}], [{"original_text": "There were a lot of people there as well.", "album_id": "72157628666284151", "photo_flickr_id": "6613814091", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41091", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of people there as well .", "storylet_id": "205458"}], [{"original_text": "There were many games, all of which I did not do so well at.", "album_id": "72157628666284151", "photo_flickr_id": "6613824213", "setting": "first-2-pick-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "41091", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were many games , all of which i did not do so well at .", "storylet_id": "205459"}], [{"original_text": "It was getting dark, about time to get inside and see the tree lighting. ", "album_id": "72157628666284151", "photo_flickr_id": "6613765525", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "41092", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was getting dark , about time to get inside and see the tree lighting .", "storylet_id": "205460"}], [{"original_text": "As we went inside we saw the group of people waiting excitably for the switch to be flipped.", "album_id": "72157628666284151", "photo_flickr_id": "6613814091", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "41092", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as we went inside we saw the group of people waiting excitably for the switch to be flipped .", "storylet_id": "205461"}], [{"original_text": "WOW! Yelled the kids. That is one huge tree said John. How many presents do you think Santa will put under that one, ask Sam.", "album_id": "72157628666284151", "photo_flickr_id": "6613800681", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "41092", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "wow ! yelled the kids . that is one huge tree said [male] . how many presents do you think location will put under that one , ask [male] .", "storylet_id": "205462"}], [{"original_text": "Jill's favorite was the hanging curtain lights. ", "album_id": "72157628666284151", "photo_flickr_id": "6613824213", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "41092", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] 's favorite was the hanging curtain lights .", "storylet_id": "205463"}], [{"original_text": "As the moon came up it was time to go home.", "album_id": "72157628666284151", "photo_flickr_id": "6613838251", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "41092", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the moon came up it was time to go home .", "storylet_id": "205464"}], [{"original_text": "The family parked under the big tree this year at the Christmas Festival.", "album_id": "72157628666284151", "photo_flickr_id": "6613797907", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "41093", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family parked under the big tree this year at the christmas festival .", "storylet_id": "205465"}], [{"original_text": "It was late but all the lights were on.", "album_id": "72157628666284151", "photo_flickr_id": "6613800681", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "41093", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was late but all the lights were on .", "storylet_id": "205466"}], [{"original_text": "The lighting was really well done and looked great.", "album_id": "72157628666284151", "photo_flickr_id": "6613811263", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "41093", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lighting was really well done and looked great .", "storylet_id": "205467"}], [{"original_text": "Even at night there were still a ton of people there.", "album_id": "72157628666284151", "photo_flickr_id": "6613814091", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "41093", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even at night there were still a ton of people there .", "storylet_id": "205468"}], [{"original_text": "When we got home we rushed to turn on our own Christmas lights.", "album_id": "72157628666284151", "photo_flickr_id": "6613824213", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "41093", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we got home we rushed to turn on our own christmas lights .", "storylet_id": "205469"}], [{"original_text": "We arrived at dusk to see the festival of lights.", "album_id": "72157628666284151", "photo_flickr_id": "6613797907", "setting": "last-3-pick-old-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "41094", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at dusk to see the festival of lights .", "storylet_id": "205470"}], [{"original_text": "The main attraction was a Christmas tree made of lights.", "album_id": "72157628666284151", "photo_flickr_id": "6613800681", "setting": "last-3-pick-old-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "41094", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the main attraction was a christmas tree made of lights .", "storylet_id": "205471"}], [{"original_text": "From underneath the strung lights, the view was amazing.", "album_id": "72157628666284151", "photo_flickr_id": "6613811263", "setting": "last-3-pick-old-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "41094", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "from underneath the strung lights , the view was amazing .", "storylet_id": "205472"}], [{"original_text": "More people began to arrive for the festivities.", "album_id": "72157628666284151", "photo_flickr_id": "6613814091", "setting": "last-3-pick-old-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "41094", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more people began to arrive for the festivities .", "storylet_id": "205473"}], [{"original_text": "Even the outside of buildings were adorned with lights.", "album_id": "72157628666284151", "photo_flickr_id": "6613824213", "setting": "last-3-pick-old-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "41094", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the outside of buildings were adorned with lights .", "storylet_id": "205474"}], [{"original_text": "Perspective affects the mood of your photograph.", "album_id": "72157625167335671", "photo_flickr_id": "5137209219", "setting": "first-2-pick-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41095", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "perspective affects the mood of your photograph .", "storylet_id": "205475"}], [{"original_text": "This Ferris wheel could be huge; for perspective, bring more of the adjacent building into your photo.", "album_id": "72157625167335671", "photo_flickr_id": "5137213595", "setting": "first-2-pick-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41095", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this ferris wheel could be huge ; for perspective , bring more of the adjacent building into your photo .", "storylet_id": "205476"}], [{"original_text": "You could indicate motion on this escalator.", "album_id": "72157625167335671", "photo_flickr_id": "5137821928", "setting": "first-2-pick-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41095", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you could indicate motion on this escalator .", "storylet_id": "205477"}], [{"original_text": "With a close-up, even a small token appears large.", "album_id": "72157625167335671", "photo_flickr_id": "5137220331", "setting": "first-2-pick-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41095", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with a close-up , even a small token appears large .", "storylet_id": "205478"}], [{"original_text": "The city looks like a model from the air.", "album_id": "72157625167335671", "photo_flickr_id": "5137828588", "setting": "first-2-pick-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41095", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the city looks like a model from the air .", "storylet_id": "205479"}], [{"original_text": "I recently took a trip to the big city. ", "album_id": "72157625167335671", "photo_flickr_id": "5137208587", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "41096", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i recently took a trip to the big city .", "storylet_id": "205480"}], [{"original_text": "I was excited to ride the ferris wheel at night. ", "album_id": "72157625167335671", "photo_flickr_id": "5137213595", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "41096", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was excited to ride the ferris wheel at night .", "storylet_id": "205481"}], [{"original_text": "After the ferris wheel I went down the stairs to the tram. ", "album_id": "72157625167335671", "photo_flickr_id": "5137821928", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "41096", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the ferris wheel i went down the stairs to the tram .", "storylet_id": "205482"}], [{"original_text": "I purchased a coin to ride the train. ", "album_id": "72157625167335671", "photo_flickr_id": "5137220331", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "41096", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i purchased a coin to ride the train .", "storylet_id": "205483"}], [{"original_text": "I then went to the wall and read the graffiti until it was time to get on the train. ", "album_id": "72157625167335671", "photo_flickr_id": "5137222237", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "41096", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i then went to the wall and read the graffiti until it was time to get on the train .", "storylet_id": "205484"}], [{"original_text": "Took a trip to a new city by myself.", "album_id": "72157625167335671", "photo_flickr_id": "5137209219", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41097", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "took a trip to a new city by myself .", "storylet_id": "205485"}], [{"original_text": "Seen the sites early in the morning.", "album_id": "72157625167335671", "photo_flickr_id": "5137213595", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41097", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "seen the sites early in the morning .", "storylet_id": "205486"}], [{"original_text": "And visited the mall when it got too hot.", "album_id": "72157625167335671", "photo_flickr_id": "5137821928", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41097", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and visited the mall when it got too hot .", "storylet_id": "205487"}], [{"original_text": "Bought a casino chip at a local casino.", "album_id": "72157625167335671", "photo_flickr_id": "5137220331", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41097", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "bought a casino chip at a local casino .", "storylet_id": "205488"}], [{"original_text": "And checked the traffic on a local gps before venturing out again.", "album_id": "72157625167335671", "photo_flickr_id": "5137828588", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41097", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and checked the traffic on a local gps before venturing out again .", "storylet_id": "205489"}], [{"original_text": "I took the fenced line footpath to the fair.", "album_id": "72157625167335671", "photo_flickr_id": "5137209219", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41098", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took the fenced line footpath to the fair .", "storylet_id": "205490"}], [{"original_text": "They had a beautiful ferris wheel there.", "album_id": "72157625167335671", "photo_flickr_id": "5137213595", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41098", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a beautiful ferris wheel there .", "storylet_id": "205491"}], [{"original_text": "I went inside the exhibition hall and rode the escalator down.", "album_id": "72157625167335671", "photo_flickr_id": "5137821928", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41098", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i went inside the exhibition hall and rode the escalator down .", "storylet_id": "205492"}], [{"original_text": "I had to buy a token to get in.", "album_id": "72157625167335671", "photo_flickr_id": "5137220331", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41098", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had to buy a token to get in .", "storylet_id": "205493"}], [{"original_text": "The displays were all about city planning to improve the city.", "album_id": "72157625167335671", "photo_flickr_id": "5137828588", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41098", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the displays were all about city planning to improve the city .", "storylet_id": "205494"}], [{"original_text": "We decided to take a day off with the family to see a model of the city.", "album_id": "72157625167335671", "photo_flickr_id": "5137209219", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41099", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to take a day off with the family to see a model of the city .", "storylet_id": "205495"}], [{"original_text": "We were able to ride on a ferris wheel before we went.", "album_id": "72157625167335671", "photo_flickr_id": "5137213595", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41099", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were able to ride on a ferris wheel before we went .", "storylet_id": "205496"}], [{"original_text": "It was now finally time to go see.", "album_id": "72157625167335671", "photo_flickr_id": "5137821928", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41099", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was now finally time to go see .", "storylet_id": "205497"}], [{"original_text": "We were presented with a blue coin for entrance.", "album_id": "72157625167335671", "photo_flickr_id": "5137220331", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41099", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were presented with a blue coin for entrance .", "storylet_id": "205498"}], [{"original_text": "We finally were able to see the play model of the city.", "album_id": "72157625167335671", "photo_flickr_id": "5137828588", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41099", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finally were able to see the play model of the city .", "storylet_id": "205499"}], [{"original_text": "My vacation was so much fun.", "album_id": "72157625257917460", "photo_flickr_id": "5122194361", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41100", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my vacation was so much fun .", "storylet_id": "205500"}], [{"original_text": "We went to a local park", "album_id": "72157625257917460", "photo_flickr_id": "5122194865", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41100", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to a local park", "storylet_id": "205501"}], [{"original_text": "We even road a roller coaster.", "album_id": "72157625257917460", "photo_flickr_id": "5124823109", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41100", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even road a roller coaster .", "storylet_id": "205502"}], [{"original_text": "Later we visited the red light district.", "album_id": "72157625257917460", "photo_flickr_id": "5128182520", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41100", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later we visited the red light district .", "storylet_id": "205503"}], [{"original_text": "We also went to a local \"coffeeshop\". ", "album_id": "72157625257917460", "photo_flickr_id": "5127590425", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41100", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also went to a local `` coffeeshop '' .", "storylet_id": "205504"}], [{"original_text": "Our vacation photo albums from Amsterdam. ", "album_id": "72157625257917460", "photo_flickr_id": "5122194865", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "41101", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our vacation photo albums from location .", "storylet_id": "205505"}], [{"original_text": "We took the kids to a carnival the first day ", "album_id": "72157625257917460", "photo_flickr_id": "5125429400", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "41101", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took the kids to a carnival the first day", "storylet_id": "205506"}], [{"original_text": "Then at night the adults toured sexy Amsterdam ", "album_id": "72157625257917460", "photo_flickr_id": "5128182520", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "41101", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then at night the adults toured sexy location", "storylet_id": "205507"}], [{"original_text": "The next day wee toured Bulldog candy factory ", "album_id": "72157625257917460", "photo_flickr_id": "5127590803", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "41101", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next day wee toured bulldog candy factory", "storylet_id": "205508"}], [{"original_text": "And went to the green light district as well ", "album_id": "72157625257917460", "photo_flickr_id": "5131721538", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "41101", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and went to the green light district as well", "storylet_id": "205509"}], [{"original_text": "There was a sign announcing when you had passed into the red light district of Amsterdam.", "album_id": "72157625257917460", "photo_flickr_id": "5122194865", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41102", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a sign announcing when you had passed into the red light district of location .", "storylet_id": "205510"}], [{"original_text": "On one side, there was a ferris wheel.", "album_id": "72157625257917460", "photo_flickr_id": "5125429400", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41102", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on one side , there was a ferris wheel .", "storylet_id": "205511"}], [{"original_text": "On the other side were sex shops.", "album_id": "72157625257917460", "photo_flickr_id": "5128182520", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41102", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on the other side were sex shops .", "storylet_id": "205512"}], [{"original_text": "There were wall murals near the ferris wheel.", "album_id": "72157625257917460", "photo_flickr_id": "5127590803", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41102", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were wall murals near the ferris wheel .", "storylet_id": "205513"}], [{"original_text": "It also had a restaurant called the green light district. We ate there before heading into the red light district.", "album_id": "72157625257917460", "photo_flickr_id": "5131721538", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41102", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it also had a restaurant called the green light district . we ate there before heading into the red light district .", "storylet_id": "205514"}], [{"original_text": "Bicycles are a great way to get around town, seems a lot of people like to ride bikes to lots of places.", "album_id": "72157625257917460", "photo_flickr_id": "5122194361", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "41103", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "bicycles are a great way to get around town , seems a lot of people like to ride bikes to lots of places .", "storylet_id": "205515"}], [{"original_text": "We rode our bikes to a nearby amusement park.", "album_id": "72157625257917460", "photo_flickr_id": "5122194865", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "41103", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we rode our bikes to a nearby amusement park .", "storylet_id": "205516"}], [{"original_text": "After locking them in the bike rack, we spent the day having fun on the amusement park rides.", "album_id": "72157625257917460", "photo_flickr_id": "5124823109", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "41103", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after locking them in the bike rack , we spent the day having fun on the amusement park rides .", "storylet_id": "205517"}], [{"original_text": "On our way home from the park, we were tempted to stop here and see what all those other bikers found so interesting.", "album_id": "72157625257917460", "photo_flickr_id": "5128182520", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "41103", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on our way home from the park , we were tempted to stop here and see what all those other bikers found so interesting .", "storylet_id": "205518"}], [{"original_text": "Instead, we enjoyed a cup of coffee at The Bulldog and talked about the fun we had on the amusement park rides.", "album_id": "72157625257917460", "photo_flickr_id": "5127590425", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "41103", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "instead , we enjoyed a cup of coffee at the bulldog and talked about the fun we had on the amusement park rides .", "storylet_id": "205519"}], [{"original_text": "Bikes sit on the edge of an Amsterdam area.", "album_id": "72157625257917460", "photo_flickr_id": "5122194361", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41104", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "bikes sit on the edge of an location area .", "storylet_id": "205520"}], [{"original_text": "A sign in Dutch saying Rondvaart Reedery P Kooy.", "album_id": "72157625257917460", "photo_flickr_id": "5122194865", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41104", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a sign in dutch saying rondvaart reedery p kooy .", "storylet_id": "205521"}], [{"original_text": "People enjoy a thrill on the carnival rides.", "album_id": "72157625257917460", "photo_flickr_id": "5124823109", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41104", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people enjoy a thrill on the carnival rides .", "storylet_id": "205522"}], [{"original_text": "Bikes parked outside of sexy amsterdam brothel.", "album_id": "72157625257917460", "photo_flickr_id": "5128182520", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41104", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "bikes parked outside of sexy amsterdam brothel .", "storylet_id": "205523"}], [{"original_text": "The original Amsterdam coffee shop The Bull Dog.", "album_id": "72157625257917460", "photo_flickr_id": "5127590425", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41104", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the original location coffee shop the bull dog .", "storylet_id": "205524"}], [{"original_text": "The firework show was amazing.", "album_id": "72157624285494115", "photo_flickr_id": "4756853412", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41105", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the firework show was amazing .", "storylet_id": "205525"}], [{"original_text": "This one had two blooms.", "album_id": "72157624285494115", "photo_flickr_id": "4756216069", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41105", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one had two blooms .", "storylet_id": "205526"}], [{"original_text": "The colors are stunning. ", "album_id": "72157624285494115", "photo_flickr_id": "4756856030", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41105", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the colors are stunning .", "storylet_id": "205527"}], [{"original_text": "The all white ones are really cool. ", "album_id": "72157624285494115", "photo_flickr_id": "4756218907", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41105", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the all white ones are really cool .", "storylet_id": "205528"}], [{"original_text": "The final shot had three blooms. ", "album_id": "72157624285494115", "photo_flickr_id": "4756859290", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41105", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the final shot had three blooms .", "storylet_id": "205529"}], [{"original_text": "I love to see and photograph fireworks.", "album_id": "72157624285494115", "photo_flickr_id": "4756853412", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41106", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love to see and photograph fireworks .", "storylet_id": "205530"}], [{"original_text": "There are so many different kinds with different lights.", "album_id": "72157624285494115", "photo_flickr_id": "4756854206", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41106", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are so many different kinds with different lights .", "storylet_id": "205531"}], [{"original_text": "I have to photograph every one I see.", "album_id": "72157624285494115", "photo_flickr_id": "4756855768", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41106", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i have to photograph every one i see .", "storylet_id": "205532"}], [{"original_text": "All of the different designs are so pretty.", "album_id": "72157624285494115", "photo_flickr_id": "4756856978", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41106", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the different designs are so pretty .", "storylet_id": "205533"}], [{"original_text": "The way they light up the night sky makes me so inspired!", "album_id": "72157624285494115", "photo_flickr_id": "4756858618", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41106", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the way they light up the night sky makes me so inspired !", "storylet_id": "205534"}], [{"original_text": "I saw some fireworks while on vacation.", "album_id": "72157624285494115", "photo_flickr_id": "4756853412", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41107", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i saw some fireworks while on vacation .", "storylet_id": "205535"}], [{"original_text": "I like it when they fire several at a time.", "album_id": "72157624285494115", "photo_flickr_id": "4756854206", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41107", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i like it when they fire several at a time .", "storylet_id": "205536"}], [{"original_text": "This is your typical firework.", "album_id": "72157624285494115", "photo_flickr_id": "4756855768", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41107", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is your typical firework .", "storylet_id": "205537"}], [{"original_text": "I prefer the more unusual ones.", "album_id": "72157624285494115", "photo_flickr_id": "4756856978", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41107", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i prefer the more unusual ones .", "storylet_id": "205538"}], [{"original_text": "I especially like the grand finale.", "album_id": "72157624285494115", "photo_flickr_id": "4756858618", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41107", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i especially like the grand finale .", "storylet_id": "205539"}], [{"original_text": "The fireworks show was outstanding.", "album_id": "72157624285494115", "photo_flickr_id": "4756853412", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41108", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fireworks show was outstanding .", "storylet_id": "205540"}], [{"original_text": "There were many different colored explosions.", "album_id": "72157624285494115", "photo_flickr_id": "4756216069", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41108", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many different colored explosions .", "storylet_id": "205541"}], [{"original_text": "The sky lit up so much.", "album_id": "72157624285494115", "photo_flickr_id": "4756856030", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41108", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sky lit up so much .", "storylet_id": "205542"}], [{"original_text": "There were many fantastic firework effects.", "album_id": "72157624285494115", "photo_flickr_id": "4756218907", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41108", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many fantastic firework effects .", "storylet_id": "205543"}], [{"original_text": "The ending consisted of red, green, and orange fireworks. ", "album_id": "72157624285494115", "photo_flickr_id": "4756859290", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41108", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ending consisted of red , green , and orange fireworks .", "storylet_id": "205544"}], [{"original_text": "Our family went to a new venue for 4th of July fireworks this year.", "album_id": "72157624285494115", "photo_flickr_id": "4756853412", "setting": "last-3-pick-old-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "41109", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family went to a new venue for 4th of july fireworks this year .", "storylet_id": "205545"}], [{"original_text": "The show was spectacular.", "album_id": "72157624285494115", "photo_flickr_id": "4756854206", "setting": "last-3-pick-old-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "41109", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the show was spectacular .", "storylet_id": "205546"}], [{"original_text": "We had very close seats with a perfect view.", "album_id": "72157624285494115", "photo_flickr_id": "4756855768", "setting": "last-3-pick-old-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "41109", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had very close seats with a perfect view .", "storylet_id": "205547"}], [{"original_text": "This one looked like an amoeba!", "album_id": "72157624285494115", "photo_flickr_id": "4756856978", "setting": "last-3-pick-old-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "41109", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one looked like an amoeba !", "storylet_id": "205548"}], [{"original_text": "The finale was awesome!", "album_id": "72157624285494115", "photo_flickr_id": "4756858618", "setting": "last-3-pick-old-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "41109", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finale was awesome !", "storylet_id": "205549"}], [{"original_text": "We went to the amusement park together Today.", "album_id": "72157624867779066", "photo_flickr_id": "4952779021", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41110", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the amusement park together today .", "storylet_id": "205550"}], [{"original_text": "We tried out a lot of rides, they were awesome!", "album_id": "72157624867779066", "photo_flickr_id": "4953374142", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41110", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we tried out a lot of rides , they were awesome !", "storylet_id": "205551"}], [{"original_text": "The weird ones were especially fun and interesting.", "album_id": "72157624867779066", "photo_flickr_id": "4952781953", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41110", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the weird ones were especially fun and interesting .", "storylet_id": "205552"}], [{"original_text": "We ended up finishing the way at the roller coasters.", "album_id": "72157624867779066", "photo_flickr_id": "4952783431", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41110", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we ended up finishing the way at the roller coasters .", "storylet_id": "205553"}], [{"original_text": "Wish we could have taken this funny fish home!", "album_id": "72157624867779066", "photo_flickr_id": "4953370912", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41110", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "wish we could have taken this funny fish home !", "storylet_id": "205554"}], [{"original_text": "Brighton Beach was the preferred destination for Cindy. ", "album_id": "72157624867779066", "photo_flickr_id": "4952768189", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41111", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location location was the preferred destination for [female] .", "storylet_id": "205555"}], [{"original_text": "She was excited to go exploring with her friends, that she was supposed to meet at a popular restaurant. ", "album_id": "72157624867779066", "photo_flickr_id": "4953362122", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41111", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was excited to go exploring with her friends , that she was supposed to meet at a popular restaurant .", "storylet_id": "205556"}], [{"original_text": "After waiting for a while she didn't see them. ", "album_id": "72157624867779066", "photo_flickr_id": "4952772771", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41111", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after waiting for a while she did n't see them .", "storylet_id": "205557"}], [{"original_text": "So she decided to call them and look for them on her own.", "album_id": "72157624867779066", "photo_flickr_id": "4953366420", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41111", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so she decided to call them and look for them on her own .", "storylet_id": "205558"}], [{"original_text": "She was having a hard time finding them and was getting worried. ", "album_id": "72157624867779066", "photo_flickr_id": "4952775175", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41111", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was having a hard time finding them and was getting worried .", "storylet_id": "205559"}], [{"original_text": "Me and my brother took a trip to the carnival today.", "album_id": "72157624867779066", "photo_flickr_id": "4952779021", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41112", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and my brother took a trip to the carnival today .", "storylet_id": "205560"}], [{"original_text": "There were quite a few rides but the rollercoaster was our favorite", "album_id": "72157624867779066", "photo_flickr_id": "4953374142", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41112", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were quite a few rides but the rollercoaster was our favorite", "storylet_id": "205561"}], [{"original_text": "This one was looked fun but i had no idea what it was.", "album_id": "72157624867779066", "photo_flickr_id": "4952781953", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41112", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one was looked fun but i had no idea what it was .", "storylet_id": "205562"}], [{"original_text": "The Big Spin was a blast as well and almost made me puke.", "album_id": "72157624867779066", "photo_flickr_id": "4952783431", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41112", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the big spin was a blast as well and almost made me puke .", "storylet_id": "205563"}], [{"original_text": "Took one last picture of this funny fish face before leaving.", "album_id": "72157624867779066", "photo_flickr_id": "4953370912", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41112", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "took one last picture of this funny fish face before leaving .", "storylet_id": "205564"}], [{"original_text": "The couple arrived at the park in good spirits.", "album_id": "72157624867779066", "photo_flickr_id": "4952779021", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41113", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple arrived at the park in good spirits .", "storylet_id": "205565"}], [{"original_text": "The rollercoaster was one of their favorite rides.", "album_id": "72157624867779066", "photo_flickr_id": "4953374142", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41113", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rollercoaster was one of their favorite rides .", "storylet_id": "205566"}], [{"original_text": "The met two, fun-loving, Asian men who had never been to the park before.", "album_id": "72157624867779066", "photo_flickr_id": "4952781953", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41113", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the met two , fun-loving , asian men who had never been to the park before .", "storylet_id": "205567"}], [{"original_text": "The Electro Spin was one of the most popular rides at the park.", "album_id": "72157624867779066", "photo_flickr_id": "4952783431", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41113", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the electro spin was one of the most popular rides at the park .", "storylet_id": "205568"}], [{"original_text": "There was a giant, ominous fish present beside all the bathrooms. ", "album_id": "72157624867779066", "photo_flickr_id": "4953370912", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41113", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a giant , ominous fish present beside all the bathrooms .", "storylet_id": "205569"}], [{"original_text": "The friends are posing next to the ferris wheel.", "album_id": "72157624867779066", "photo_flickr_id": "4952779021", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41114", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends are posing next to the ferris wheel .", "storylet_id": "205570"}], [{"original_text": "The rollercoaster banks around a corner.", "album_id": "72157624867779066", "photo_flickr_id": "4953374142", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41114", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rollercoaster banks around a corner .", "storylet_id": "205571"}], [{"original_text": "They take sometime to ride the kid ride and to share a laugh.", "album_id": "72157624867779066", "photo_flickr_id": "4952781953", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41114", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they take sometime to ride the kid ride and to share a laugh .", "storylet_id": "205572"}], [{"original_text": "The tilt o wirl is given a try.", "album_id": "72157624867779066", "photo_flickr_id": "4952783431", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41114", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the tilt o wirl is given a try .", "storylet_id": "205573"}], [{"original_text": "A closeup of a large plastic blue fish is taken.", "album_id": "72157624867779066", "photo_flickr_id": "4953370912", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41114", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a closeup of a large plastic blue fish is taken .", "storylet_id": "205574"}], [{"original_text": "The trip to the city was so much fun.", "album_id": "72157623009486621", "photo_flickr_id": "4243500696", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41115", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the trip to the city was so much fun .", "storylet_id": "205575"}], [{"original_text": "We got to explore the hands on museum.", "album_id": "72157623009486621", "photo_flickr_id": "4243511292", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41115", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to explore the hands on museum .", "storylet_id": "205576"}], [{"original_text": "They had the crazy mirrors that make you look funny.", "album_id": "72157623009486621", "photo_flickr_id": "4242748029", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41115", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had the crazy mirrors that make you look funny .", "storylet_id": "205577"}], [{"original_text": "We enjoyed the life like paintings that look like real images when you look at them.", "album_id": "72157623009486621", "photo_flickr_id": "4243522816", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41115", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we enjoyed the life like paintings that look like real images when you look at them .", "storylet_id": "205578"}], [{"original_text": "I enjoyed the giant anchor swing for the first time ever.", "album_id": "72157623009486621", "photo_flickr_id": "4242752221", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41115", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i enjoyed the giant anchor swing for the first time ever .", "storylet_id": "205579"}], [{"original_text": "There was a mother and her two children touring a new city for the day.", "album_id": "72157623009486621", "photo_flickr_id": "4242748029", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41116", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a mother and her two children touring a new city for the day .", "storylet_id": "205580"}], [{"original_text": "The kids wanted to spend the day in the colorful arcade.", "album_id": "72157623009486621", "photo_flickr_id": "4242743443", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41116", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids wanted to spend the day in the colorful arcade .", "storylet_id": "205581"}], [{"original_text": "But their mother decided to bring them to the pier for a little while.", "album_id": "72157623009486621", "photo_flickr_id": "4242752221", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41116", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but their mother decided to bring them to the pier for a little while .", "storylet_id": "205582"}], [{"original_text": "While at the pier the kids found another colorful arcade to play in.", "album_id": "72157623009486621", "photo_flickr_id": "4243514188", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41116", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while at the pier the kids found another colorful arcade to play in .", "storylet_id": "205583"}], [{"original_text": "The mom decided to bargain with her children, if she let them play in the arcade they will have to end the day by riding on the Ferris wheel with her.", "album_id": "72157623009486621", "photo_flickr_id": "4242736553", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41116", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the mom decided to bargain with her children , if she let them play in the arcade they will have to end the day by riding on the ferris wheel with her .", "storylet_id": "205584"}], [{"original_text": "Smile, as mom takes your photo!", "album_id": "72157623009486621", "photo_flickr_id": "4242748029", "setting": "last-3-pick-old-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41117", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "smile , as mom takes your photo !", "storylet_id": "205585"}], [{"original_text": "Funky lights make this hallway fun.", "album_id": "72157623009486621", "photo_flickr_id": "4242743443", "setting": "last-3-pick-old-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41117", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "funky lights make this hallway fun .", "storylet_id": "205586"}], [{"original_text": "Anchors away!", "album_id": "72157623009486621", "photo_flickr_id": "4242752221", "setting": "last-3-pick-old-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41117", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "anchors away !", "storylet_id": "205587"}], [{"original_text": "Poor exposure makes bad photos.", "album_id": "72157623009486621", "photo_flickr_id": "4243514188", "setting": "last-3-pick-old-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41117", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "poor exposure makes bad photos .", "storylet_id": "205588"}], [{"original_text": "Let's get stuck at the top!", "album_id": "72157623009486621", "photo_flickr_id": "4242736553", "setting": "last-3-pick-old-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41117", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "let 's get stuck at the top !", "storylet_id": "205589"}], [{"original_text": "Yesterday was my birthday and we went out to walk down by the dock.", "album_id": "72157623009486621", "photo_flickr_id": "4242748029", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41118", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday was my birthday and we went out to walk down by the dock .", "storylet_id": "205590"}], [{"original_text": "There was a lot of traffic downtown but we eventually found a parking garage.", "album_id": "72157623009486621", "photo_flickr_id": "4242743443", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41118", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of traffic downtown but we eventually found a parking garage .", "storylet_id": "205591"}], [{"original_text": "There was a large boat anchor down there.", "album_id": "72157623009486621", "photo_flickr_id": "4242752221", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41118", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a large boat anchor down there .", "storylet_id": "205592"}], [{"original_text": "We swung by a club for a few minutes.", "album_id": "72157623009486621", "photo_flickr_id": "4243514188", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41118", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we swung by a club for a few minutes .", "storylet_id": "205593"}], [{"original_text": "Then we decided to ride on the Ferris wheel.", "album_id": "72157623009486621", "photo_flickr_id": "4242736553", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41118", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we decided to ride on the organization wheel .", "storylet_id": "205594"}], [{"original_text": "My family went to Chicago for a summer vacation.", "album_id": "72157623009486621", "photo_flickr_id": "4243500696", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41119", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family went to location for a summer vacation .", "storylet_id": "205595"}], [{"original_text": "My children really loved the arcade downtown.", "album_id": "72157623009486621", "photo_flickr_id": "4243511292", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41119", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my children really loved the arcade downtown .", "storylet_id": "205596"}], [{"original_text": "There were funny mirrors in the halls of the arcade my son liked to take pictures at.", "album_id": "72157623009486621", "photo_flickr_id": "4242748029", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41119", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were funny mirrors in the halls of the arcade my son liked to take pictures at .", "storylet_id": "205597"}], [{"original_text": "We walked to the pier to get a better view of the light house looking out on Lake Michigan.", "album_id": "72157623009486621", "photo_flickr_id": "4243522816", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41119", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we walked to the pier to get a better view of the light house looking out on location location .", "storylet_id": "205598"}], [{"original_text": "My daughter wanted to stop at the huge anchor for a picture on our way to the light house.", "album_id": "72157623009486621", "photo_flickr_id": "4242752221", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41119", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my daughter wanted to stop at the huge anchor for a picture on our way to the light house .", "storylet_id": "205599"}], [{"original_text": "This is a few pictures from my trip to Moscow. This is the road I entered on. ", "album_id": "72157623131846364", "photo_flickr_id": "4241748533", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41120", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a few pictures from my trip to location . this is the road i entered on .", "storylet_id": "205600"}], [{"original_text": "A large town square full of ornate statues and really neat buildings. ", "album_id": "72157623131846364", "photo_flickr_id": "4242522410", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41120", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a large town square full of ornate statues and really neat buildings .", "storylet_id": "205601"}], [{"original_text": "I found some really neat rooftops and mountainside. It's so cold here. ", "album_id": "72157623131846364", "photo_flickr_id": "4241826715", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41120", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i found some really neat rooftops and mountainside . it 's so cold here .", "storylet_id": "205602"}], [{"original_text": "After driving around for about an hour we found this really neat spot. The road is angled so high. We drove clear to the top. ", "album_id": "72157623131846364", "photo_flickr_id": "4241727789", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41120", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after driving around for about an hour we found this really neat spot . the road is angled so high . we drove clear to the top .", "storylet_id": "205603"}], [{"original_text": "When we got to the top we saw this beautiful picturesque view of Moscow. It was breathtaking! ", "album_id": "72157623131846364", "photo_flickr_id": "4241782561", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41120", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we got to the top we saw this beautiful picturesque view of location . it was breathtaking !", "storylet_id": "205604"}], [{"original_text": "There was once a city that had been buried under snow for everyday and night for forty-seven years.", "album_id": "72157623131846364", "photo_flickr_id": "4241785693", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41121", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was once a city that had been buried under snow for everyday and night for forty-seven years .", "storylet_id": "205605"}], [{"original_text": "From the hilltops to the city street, the bitter cold surrounded the city.", "album_id": "72157623131846364", "photo_flickr_id": "4242602020", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41121", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from the hilltops to the city street , the bitter cold surrounded the city .", "storylet_id": "205606"}], [{"original_text": "Finally the citizens of the city were frustrated, and decided to pray for the snow to melt.", "album_id": "72157623131846364", "photo_flickr_id": "4241827643", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41121", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally the citizens of the city were frustrated , and decided to pray for the snow to melt .", "storylet_id": "205607"}], [{"original_text": "The next morning, to their surprise they saw that the snow had begun to melt.", "album_id": "72157623131846364", "photo_flickr_id": "4241727789", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41121", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next morning , to their surprise they saw that the snow had begun to melt .", "storylet_id": "205608"}], [{"original_text": "By the afternoon everyone was happily astonished that all the snow had melted and everyone was free to roam the city once again.", "album_id": "72157623131846364", "photo_flickr_id": "4242522410", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41121", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the afternoon everyone was happily astonished that all the snow had melted and everyone was free to roam the city once again .", "storylet_id": "205609"}], [{"original_text": "The spectacular mountain side village was enourmous!", "album_id": "72157623131846364", "photo_flickr_id": "4241785693", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "41122", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the spectacular mountain side village was enourmous !", "storylet_id": "205610"}], [{"original_text": "We enjoyed exploring the town everyday!", "album_id": "72157623131846364", "photo_flickr_id": "4242602020", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "41122", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we enjoyed exploring the town everyday !", "storylet_id": "205611"}], [{"original_text": "The festivities were unlike any others we have experienced.", "album_id": "72157623131846364", "photo_flickr_id": "4241827643", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "41122", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the festivities were unlike any others we have experienced .", "storylet_id": "205612"}], [{"original_text": "The town as special and we saw it all!", "album_id": "72157623131846364", "photo_flickr_id": "4241727789", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "41122", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the town as special and we saw it all !", "storylet_id": "205613"}], [{"original_text": "Viewing the architecture was an enjoyable way to explore the city during our vacation. ", "album_id": "72157623131846364", "photo_flickr_id": "4242522410", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "41122", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "viewing the architecture was an enjoyable way to explore the city during our vacation .", "storylet_id": "205614"}], [{"original_text": "Last weekend I was on vacation in Europe.", "album_id": "72157623131846364", "photo_flickr_id": "4241748533", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41123", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last weekend i was on vacation in location .", "storylet_id": "205615"}], [{"original_text": "I saw many wonderful buildings.", "album_id": "72157623131846364", "photo_flickr_id": "4242522410", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41123", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw many wonderful buildings .", "storylet_id": "205616"}], [{"original_text": "The entire city looked so old.", "album_id": "72157623131846364", "photo_flickr_id": "4241826715", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41123", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the entire city looked so old .", "storylet_id": "205617"}], [{"original_text": "It was winter time when I went.", "album_id": "72157623131846364", "photo_flickr_id": "4241727789", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41123", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was winter time when i went .", "storylet_id": "205618"}], [{"original_text": "There was snow covering the ground in a lot of places.", "album_id": "72157623131846364", "photo_flickr_id": "4241782561", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41123", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was snow covering the ground in a lot of places .", "storylet_id": "205619"}], [{"original_text": "During the morning, the streets are empty.", "album_id": "72157623131846364", "photo_flickr_id": "4241748533", "setting": "last-3-pick-old-and-tell", "worker_id": "S15C3ARCL11LCHI", "story_id": "41124", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during the morning , the streets are empty .", "storylet_id": "205620"}], [{"original_text": "As people start to wake up, so does the city.", "album_id": "72157623131846364", "photo_flickr_id": "4242522410", "setting": "last-3-pick-old-and-tell", "worker_id": "S15C3ARCL11LCHI", "story_id": "41124", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as people start to wake up , so does the city .", "storylet_id": "205621"}], [{"original_text": "It's going to be a beautiful day in the city.", "album_id": "72157623131846364", "photo_flickr_id": "4241826715", "setting": "last-3-pick-old-and-tell", "worker_id": "S15C3ARCL11LCHI", "story_id": "41124", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's going to be a beautiful day in the city .", "storylet_id": "205622"}], [{"original_text": "The rail system is getting ready for a busy day.", "album_id": "72157623131846364", "photo_flickr_id": "4241727789", "setting": "last-3-pick-old-and-tell", "worker_id": "S15C3ARCL11LCHI", "story_id": "41124", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rail system is getting ready for a busy day .", "storylet_id": "205623"}], [{"original_text": "The sun wakes up the city.", "album_id": "72157623131846364", "photo_flickr_id": "4241782561", "setting": "last-3-pick-old-and-tell", "worker_id": "S15C3ARCL11LCHI", "story_id": "41124", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sun wakes up the city .", "storylet_id": "205624"}], [{"original_text": "The city looked beautiful a few hours before the the sun set.", "album_id": "72157628702947021", "photo_flickr_id": "6629730789", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "41125", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city looked beautiful a few hours before the the sun set .", "storylet_id": "205625"}], [{"original_text": "One the sun had set the city was illuminated with beautiful lights.", "album_id": "72157628702947021", "photo_flickr_id": "6629735811", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "41125", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one the sun had set the city was illuminated with beautiful lights .", "storylet_id": "205626"}], [{"original_text": "The fireworks were now underway.", "album_id": "72157628702947021", "photo_flickr_id": "6629738449", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "41125", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fireworks were now underway .", "storylet_id": "205627"}], [{"original_text": "It was a beautiful show and the grand finale was especially great.", "album_id": "72157628702947021", "photo_flickr_id": "6629764713", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "41125", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a beautiful show and the grand finale was especially great .", "storylet_id": "205628"}], [{"original_text": "After the show a cloud of smoke hovered over the illuminated city.", "album_id": "72157628702947021", "photo_flickr_id": "6629732525", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "41125", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the show a cloud of smoke hovered over the illuminated city .", "storylet_id": "205629"}], [{"original_text": "The city had reached its centennial celebration by surviving wars, epidemics, and famine.", "album_id": "72157628702947021", "photo_flickr_id": "6629730789", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41126", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city had reached its centennial celebration by surviving wars , epidemics , and famine .", "storylet_id": "205630"}], [{"original_text": "All the citizens decided to celebrate with a spectacular fireworks celebration that same night.", "album_id": "72157628702947021", "photo_flickr_id": "6629734055", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41126", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the citizens decided to celebrate with a spectacular fireworks celebration that same night .", "storylet_id": "205631"}], [{"original_text": "Hundreds of fireworks lite up the sky all around the city.", "album_id": "72157628702947021", "photo_flickr_id": "6629738449", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41126", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "hundreds of fireworks lite up the sky all around the city .", "storylet_id": "205632"}], [{"original_text": "There was even a big colorful finish right above the city center.", "album_id": "72157628702947021", "photo_flickr_id": "6629762643", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41126", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was even a big colorful finish right above the city center .", "storylet_id": "205633"}], [{"original_text": "When the fireworks finally ended everyone looked up at wonder at their beautiful strong city building lights.", "album_id": "72157628702947021", "photo_flickr_id": "6629732525", "setting": "first-2-pick-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41126", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the fireworks finally ended everyone looked up at wonder at their beautiful strong city building lights .", "storylet_id": "205634"}], [{"original_text": "The city truly had an amazing skyline.", "album_id": "72157628702947021", "photo_flickr_id": "6629730789", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "41127", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city truly had an amazing skyline .", "storylet_id": "205635"}], [{"original_text": "That night the family went out to see the fireworks.", "album_id": "72157628702947021", "photo_flickr_id": "6629735811", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "41127", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that night the family went out to see the fireworks .", "storylet_id": "205636"}], [{"original_text": "They were only a few hundred feet away.", "album_id": "72157628702947021", "photo_flickr_id": "6629738449", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "41127", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were only a few hundred feet away .", "storylet_id": "205637"}], [{"original_text": "And truly amazing too watch.", "album_id": "72157628702947021", "photo_flickr_id": "6629764713", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "41127", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and truly amazing too watch .", "storylet_id": "205638"}], [{"original_text": "Everyone had a great time there.", "album_id": "72157628702947021", "photo_flickr_id": "6629732525", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "41127", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time there .", "storylet_id": "205639"}], [{"original_text": "I was so excited to go to the city for the fireworks display.", "album_id": "72157628702947021", "photo_flickr_id": "6629730789", "setting": "last-3-pick-old-and-tell", "worker_id": "OA2433YXN5KX89S", "story_id": "41128", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was so excited to go to the city for the fireworks display .", "storylet_id": "205640"}], [{"original_text": "The buildings were all lit up with blue and red lights. The night was amazing.", "album_id": "72157628702947021", "photo_flickr_id": "6629734055", "setting": "last-3-pick-old-and-tell", "worker_id": "OA2433YXN5KX89S", "story_id": "41128", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the buildings were all lit up with blue and red lights . the night was amazing .", "storylet_id": "205641"}], [{"original_text": "The show was great. So many big bursts of fireworks and lights.", "album_id": "72157628702947021", "photo_flickr_id": "6629738449", "setting": "last-3-pick-old-and-tell", "worker_id": "OA2433YXN5KX89S", "story_id": "41128", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the show was great . so many big bursts of fireworks and lights .", "storylet_id": "205642"}], [{"original_text": "The finale was pink and lit up the whole sky.", "album_id": "72157628702947021", "photo_flickr_id": "6629762643", "setting": "last-3-pick-old-and-tell", "worker_id": "OA2433YXN5KX89S", "story_id": "41128", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the finale was pink and lit up the whole sky .", "storylet_id": "205643"}], [{"original_text": "The smoke took a while to clear above the buildings from all of the fireworks. ", "album_id": "72157628702947021", "photo_flickr_id": "6629732525", "setting": "last-3-pick-old-and-tell", "worker_id": "OA2433YXN5KX89S", "story_id": "41128", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the smoke took a while to clear above the buildings from all of the fireworks .", "storylet_id": "205644"}], [{"original_text": "The city was very quiet in the day.", "album_id": "72157628702947021", "photo_flickr_id": "6629730789", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41129", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city was very quiet in the day .", "storylet_id": "205645"}], [{"original_text": "But at night everyone was preparing for the big fireworks event.", "album_id": "72157628702947021", "photo_flickr_id": "6629735811", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41129", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but at night everyone was preparing for the big fireworks event .", "storylet_id": "205646"}], [{"original_text": "When it started it lit up the entire sky.", "album_id": "72157628702947021", "photo_flickr_id": "6629738449", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41129", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when it started it lit up the entire sky .", "storylet_id": "205647"}], [{"original_text": "The fireworks were coordinated and beautiful.", "album_id": "72157628702947021", "photo_flickr_id": "6629764713", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41129", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fireworks were coordinated and beautiful .", "storylet_id": "205648"}], [{"original_text": "Afterward there was a lot of smoke in the air.", "album_id": "72157628702947021", "photo_flickr_id": "6629732525", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41129", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward there was a lot of smoke in the air .", "storylet_id": "205649"}], [{"original_text": "Big Ben is a large monument.", "album_id": "72157623635972701", "photo_flickr_id": "4486725422", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41130", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "big [male] is a large monument .", "storylet_id": "205650"}], [{"original_text": "Londoners see Big Ben every day.", "album_id": "72157623635972701", "photo_flickr_id": "4486726786", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41130", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "londoners see big [male] every day .", "storylet_id": "205651"}], [{"original_text": "The birds sometimes perch on the large monument.", "album_id": "72157623635972701", "photo_flickr_id": "4486730928", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41130", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the birds sometimes perch on the large monument .", "storylet_id": "205652"}], [{"original_text": "There are a lot of statues surrounding Big Ben", "album_id": "72157623635972701", "photo_flickr_id": "4486731982", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41130", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are a lot of statues surrounding big [male]", "storylet_id": "205653"}], [{"original_text": "All Londoners love looking at Big Ben.", "album_id": "72157623635972701", "photo_flickr_id": "4486740774", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41130", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all londoners love looking at big [male] .", "storylet_id": "205654"}], [{"original_text": "I went to see the clock Big Ben on vacation.", "album_id": "72157623635972701", "photo_flickr_id": "4486072701", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41131", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to see the clock big [male] on vacation .", "storylet_id": "205655"}], [{"original_text": "The clock was massive and intricately detailed.", "album_id": "72157623635972701", "photo_flickr_id": "4486726786", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41131", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the clock was massive and intricately detailed .", "storylet_id": "205656"}], [{"original_text": "I also saw a statue that stood close to the clock.", "album_id": "72157623635972701", "photo_flickr_id": "4486731982", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41131", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also saw a statue that stood close to the clock .", "storylet_id": "205657"}], [{"original_text": "To my disbelief there was a ferris wheel close to Big Ben that people could ride.", "album_id": "72157623635972701", "photo_flickr_id": "4486084417", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41131", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to my disbelief there was a ferris wheel close to big [male] that people could ride .", "storylet_id": "205658"}], [{"original_text": "I had to ride the ferris wheel before I left and it was every bit as fun as I'd hoped it would be.", "album_id": "72157623635972701", "photo_flickr_id": "4486085647", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41131", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had to ride the ferris wheel before i left and it was every bit as fun as i 'd hoped it would be .", "storylet_id": "205659"}], [{"original_text": "A trip to London to see the sights.", "album_id": "72157623635972701", "photo_flickr_id": "4486725422", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41132", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a trip to location to see the sights .", "storylet_id": "205660"}], [{"original_text": "Big Ben of course.", "album_id": "72157623635972701", "photo_flickr_id": "4486726786", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41132", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "big [male] of course .", "storylet_id": "205661"}], [{"original_text": "Didn't catch a glimpse of Loch Ness but did see this bird.", "album_id": "72157623635972701", "photo_flickr_id": "4486730928", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41132", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "did n't catch a glimpse of loch ness but did see this bird .", "storylet_id": "205662"}], [{"original_text": "And the many stautes.", "album_id": "72157623635972701", "photo_flickr_id": "4486731982", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41132", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the many stautes .", "storylet_id": "205663"}], [{"original_text": "And war relics.", "album_id": "72157623635972701", "photo_flickr_id": "4486740774", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41132", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and war relics .", "storylet_id": "205664"}], [{"original_text": "The face of the clock was huge!", "album_id": "72157623635972701", "photo_flickr_id": "4486072701", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "41133", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the face of the clock was huge !", "storylet_id": "205665"}], [{"original_text": "Aw heck: the whole clock tower was huge!", "album_id": "72157623635972701", "photo_flickr_id": "4486726786", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "41133", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "aw heck : the whole clock tower was huge !", "storylet_id": "205666"}], [{"original_text": "Gargoyles!", "album_id": "72157623635972701", "photo_flickr_id": "4486731982", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "41133", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "gargoyles !", "storylet_id": "205667"}], [{"original_text": "The Ferris Wheel!", "album_id": "72157623635972701", "photo_flickr_id": "4486084417", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "41133", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ferris wheel !", "storylet_id": "205668"}], [{"original_text": "Biggest Ferris wheel I have ever seen!", "album_id": "72157623635972701", "photo_flickr_id": "4486085647", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "41133", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "biggest ferris wheel i have ever seen !", "storylet_id": "205669"}], [{"original_text": "This is the clock in the clock tower.", "album_id": "72157623635972701", "photo_flickr_id": "4486072701", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41134", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the clock in the clock tower .", "storylet_id": "205670"}], [{"original_text": "The clock tower is huge.", "album_id": "72157623635972701", "photo_flickr_id": "4486726786", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41134", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the clock tower is huge .", "storylet_id": "205671"}], [{"original_text": "There were some sculptures at the base of the clock tower.", "album_id": "72157623635972701", "photo_flickr_id": "4486731982", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41134", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some sculptures at the base of the clock tower .", "storylet_id": "205672"}], [{"original_text": "There was also a huge ferris wheel.", "album_id": "72157623635972701", "photo_flickr_id": "4486084417", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41134", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also a huge ferris wheel .", "storylet_id": "205673"}], [{"original_text": "The cars were on the outside of the ferris wheel.", "album_id": "72157623635972701", "photo_flickr_id": "4486085647", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41134", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cars were on the outside of the ferris wheel .", "storylet_id": "205674"}], [{"original_text": "We love to drive around and see all the lights during Christmas time.", "album_id": "72157625399309581", "photo_flickr_id": "5230912714", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41135", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we love to drive around and see all the lights during christmas time .", "storylet_id": "205675"}], [{"original_text": "The city puts up many different lights.", "album_id": "72157625399309581", "photo_flickr_id": "5230913908", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41135", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city puts up many different lights .", "storylet_id": "205676"}], [{"original_text": "We like driving around to see them all.", "album_id": "72157625399309581", "photo_flickr_id": "5230914266", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41135", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we like driving around to see them all .", "storylet_id": "205677"}], [{"original_text": "They look so pretty all lit up.", "album_id": "72157625399309581", "photo_flickr_id": "5230915060", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41135", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they look so pretty all lit up .", "storylet_id": "205678"}], [{"original_text": "We have such a great time seeing the lights as a family.", "album_id": "72157625399309581", "photo_flickr_id": "5230323155", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41135", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we have such a great time seeing the lights as a family .", "storylet_id": "205679"}], [{"original_text": "It's Christmas and finally time for the Wayne County Lightfest. ", "album_id": "72157625399309581", "photo_flickr_id": "5230913562", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "41136", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's christmas and finally time for the location location location .", "storylet_id": "205680"}], [{"original_text": "Homes and buildings all decorate in fun colors. ", "album_id": "72157625399309581", "photo_flickr_id": "5230914266", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "41136", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "homes and buildings all decorate in fun colors .", "storylet_id": "205681"}], [{"original_text": "This is a hair shop that sells a lot of handmade hair ribbons. ", "album_id": "72157625399309581", "photo_flickr_id": "5230322171", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "41136", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a hair shop that sells a lot of handmade hair ribbons .", "storylet_id": "205682"}], [{"original_text": "This display is on someones front lawn. ", "album_id": "72157625399309581", "photo_flickr_id": "5230322997", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "41136", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this display is on someones front lawn .", "storylet_id": "205683"}], [{"original_text": "At the end, the cars drive through this tunnel of lights and back to the main highway. ", "album_id": "72157625399309581", "photo_flickr_id": "5230322685", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "41136", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , the cars drive through this tunnel of lights and back to the main highway .", "storylet_id": "205684"}], [{"original_text": "Lit up display is seen as they drive down the road at night.", "album_id": "72157625399309581", "photo_flickr_id": "5230912714", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41137", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "lit up display is seen as they drive down the road at night .", "storylet_id": "205685"}], [{"original_text": "Bows and ribbons light up the highway.", "album_id": "72157625399309581", "photo_flickr_id": "5230913908", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41137", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "bows and ribbons light up the highway .", "storylet_id": "205686"}], [{"original_text": "Some red and green flowers light up the night.", "album_id": "72157625399309581", "photo_flickr_id": "5230914266", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41137", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some red and green flowers light up the night .", "storylet_id": "205687"}], [{"original_text": "Some closer photos of the bows are seen.", "album_id": "72157625399309581", "photo_flickr_id": "5230915060", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41137", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some closer photos of the bows are seen .", "storylet_id": "205688"}], [{"original_text": "From a distance there are some toy block light displays.", "album_id": "72157625399309581", "photo_flickr_id": "5230323155", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41137", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "from a distance there are some toy block light displays .", "storylet_id": "205689"}], [{"original_text": "The lights were big", "album_id": "72157625399309581", "photo_flickr_id": "5230912714", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41138", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lights were big", "storylet_id": "205690"}], [{"original_text": "and near the highway.", "album_id": "72157625399309581", "photo_flickr_id": "5230913908", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41138", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and near the highway .", "storylet_id": "205691"}], [{"original_text": "There were flowers", "album_id": "72157625399309581", "photo_flickr_id": "5230914266", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41138", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were flowers", "storylet_id": "205692"}], [{"original_text": "and a big ribbon", "album_id": "72157625399309581", "photo_flickr_id": "5230915060", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41138", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and a big ribbon", "storylet_id": "205693"}], [{"original_text": "that people could see.", "album_id": "72157625399309581", "photo_flickr_id": "5230323155", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41138", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that people could see .", "storylet_id": "205694"}], [{"original_text": "It was Christmas Eve and we got the family into the car and headed over to the Wayne County Lightfest.", "album_id": "72157625399309581", "photo_flickr_id": "5230912714", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "41139", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was christmas eve and we got the family into the car and headed over to the location location location .", "storylet_id": "205695"}], [{"original_text": "An annual tradition, the Lightfest has to be seen to be believed. ", "album_id": "72157625399309581", "photo_flickr_id": "5230913908", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "41139", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "an annual tradition , the location has to be seen to be believed .", "storylet_id": "205696"}], [{"original_text": "Thousands of lights are displayed while passengers in their cars drive through to see them.", "album_id": "72157625399309581", "photo_flickr_id": "5230914266", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "41139", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "thousands of lights are displayed while passengers in their cars drive through to see them .", "storylet_id": "205697"}], [{"original_text": "My family likes to sing Christmas carols as we drive through the amazing and festive holiday show.", "album_id": "72157625399309581", "photo_flickr_id": "5230915060", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "41139", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my family likes to sing christmas carols as we drive through the amazing and festive holiday show .", "storylet_id": "205698"}], [{"original_text": "This year, they even made a light display of an MP3 player. It was definitely a sight. We can't wait to go again next year.", "album_id": "72157625399309581", "photo_flickr_id": "5230323155", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "41139", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this year , they even made a light display of an mp3 player . it was definitely a sight . we ca n't wait to go again next year .", "storylet_id": "205699"}], [{"original_text": "Jill and Bob were planning a trip.", "album_id": "72157625097215656", "photo_flickr_id": "5052282239", "setting": "first-2-pick-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "41140", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [male] were planning a trip .", "storylet_id": "205700"}], [{"original_text": "They rented a motor home and headed west. ", "album_id": "72157625097215656", "photo_flickr_id": "5052903858", "setting": "first-2-pick-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "41140", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they rented a motor home and headed west .", "storylet_id": "205701"}], [{"original_text": "They saw the famous hollywood sign, ", "album_id": "72157625097215656", "photo_flickr_id": "5052900232", "setting": "first-2-pick-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "41140", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they saw the famous hollywood sign ,", "storylet_id": "205702"}], [{"original_text": "and LA. But both of them loved something even more.", "album_id": "72157625097215656", "photo_flickr_id": "5052282729", "setting": "first-2-pick-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "41140", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and location . but both of them loved something even more .", "storylet_id": "205703"}], [{"original_text": "The loved Santa Monica yacht Harbor best.", "album_id": "72157625097215656", "photo_flickr_id": "5052284897", "setting": "first-2-pick-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "41140", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the loved location location location location best .", "storylet_id": "205704"}], [{"original_text": "A couple took a vacation to Hollywood.", "album_id": "72157625097215656", "photo_flickr_id": "5052900232", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41141", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple took a vacation to location .", "storylet_id": "205705"}], [{"original_text": "The couple was very pleased with the weather during their trip.", "album_id": "72157625097215656", "photo_flickr_id": "5052282239", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41141", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the couple was very pleased with the weather during their trip .", "storylet_id": "205706"}], [{"original_text": "They were amazed at how gorgeous the city view was.", "album_id": "72157625097215656", "photo_flickr_id": "5052282729", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41141", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were amazed at how gorgeous the city view was .", "storylet_id": "205707"}], [{"original_text": "They loved all the palm trees around the city.", "album_id": "72157625097215656", "photo_flickr_id": "5052284291", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41141", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they loved all the palm trees around the city .", "storylet_id": "205708"}], [{"original_text": "At night, they decided to visit Santa Monica to get some dinner and drinks.", "album_id": "72157625097215656", "photo_flickr_id": "5052284897", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41141", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night , they decided to visit location location to get some dinner and drinks .", "storylet_id": "205709"}], [{"original_text": "Couple sets out on a California tour.", "album_id": "72157625097215656", "photo_flickr_id": "5052282239", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "41142", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "couple sets out on a location tour .", "storylet_id": "205710"}], [{"original_text": "This RV was rented to reduce hotel issues, and wear and tear on their car. ", "album_id": "72157625097215656", "photo_flickr_id": "5052903858", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "41142", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this rv was rented to reduce hotel issues , and wear and tear on their car .", "storylet_id": "205711"}], [{"original_text": "First stop iconic hollywood. Houses of the stars, etc.", "album_id": "72157625097215656", "photo_flickr_id": "5052900232", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "41142", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "first stop iconic hollywood . houses of the stars , etc .", "storylet_id": "205712"}], [{"original_text": "Looking down on the endless sprawl of LA ", "album_id": "72157625097215656", "photo_flickr_id": "5052282729", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "41142", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "looking down on the endless sprawl of location", "storylet_id": "205713"}], [{"original_text": "Next they will return the RV and take a house boat out from this Marina. ", "album_id": "72157625097215656", "photo_flickr_id": "5052284897", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "41142", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "next they will return the rv and take a house boat out from this location .", "storylet_id": "205714"}], [{"original_text": "On our family vacation we went to Hollywood.", "album_id": "72157625097215656", "photo_flickr_id": "5052900232", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41143", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our family vacation we went to location .", "storylet_id": "205715"}], [{"original_text": "Here is a great picture of my husband and I. What a wonderful day.", "album_id": "72157625097215656", "photo_flickr_id": "5052282239", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41143", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is a great picture of my husband and i . what a wonderful day .", "storylet_id": "205716"}], [{"original_text": "This is the view we saw at the top of the mountain.", "album_id": "72157625097215656", "photo_flickr_id": "5052282729", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41143", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the view we saw at the top of the mountain .", "storylet_id": "205717"}], [{"original_text": "This is the street that we stayed on. I love the palm trees.", "album_id": "72157625097215656", "photo_flickr_id": "5052284291", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41143", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the street that we stayed on . i love the palm trees .", "storylet_id": "205718"}], [{"original_text": "I loved fishing at night and being in the boat. It was very relaxing.", "album_id": "72157625097215656", "photo_flickr_id": "5052284897", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41143", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i loved fishing at night and being in the boat . it was very relaxing .", "storylet_id": "205719"}], [{"original_text": "The Hollywood sign could be seen from miles away.", "album_id": "72157625097215656", "photo_flickr_id": "5052900232", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41144", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the hollywood sign could be seen from miles away .", "storylet_id": "205720"}], [{"original_text": "We got a view of the entire city. ", "album_id": "72157625097215656", "photo_flickr_id": "5052282239", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41144", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got a view of the entire city .", "storylet_id": "205721"}], [{"original_text": "The only things you could see in the horizon were buildings.", "album_id": "72157625097215656", "photo_flickr_id": "5052282729", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41144", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the only things you could see in the horizon were buildings .", "storylet_id": "205722"}], [{"original_text": "The streets were empty.", "album_id": "72157625097215656", "photo_flickr_id": "5052284291", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41144", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the streets were empty .", "storylet_id": "205723"}], [{"original_text": "We went to dinner and a walk at Santa Monica Yacht Harbor.", "album_id": "72157625097215656", "photo_flickr_id": "5052284897", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41144", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we went to dinner and a walk at location location location location .", "storylet_id": "205724"}], [{"original_text": "I went for a walk while I was on vacation.", "album_id": "72157623775938136", "photo_flickr_id": "4494207850", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41145", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a walk while i was on vacation .", "storylet_id": "205725"}], [{"original_text": "There were many other tourists there.", "album_id": "72157623775938136", "photo_flickr_id": "4494208442", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41145", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many other tourists there .", "storylet_id": "205726"}], [{"original_text": "We had a great time and we took a lot of pictures.", "album_id": "72157623775938136", "photo_flickr_id": "4494215074", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41145", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a great time and we took a lot of pictures .", "storylet_id": "205727"}], [{"original_text": "There were a ton of people.", "album_id": "72157623775938136", "photo_flickr_id": "4494216734", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41145", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a ton of people .", "storylet_id": "205728"}], [{"original_text": "I hope I can go back soon.", "album_id": "72157623775938136", "photo_flickr_id": "4493580169", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41145", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope i can go back soon .", "storylet_id": "205729"}], [{"original_text": "Everyone was patiently waiting for the bus, but as time passed, it was obvious that it was late. ", "album_id": "72157623775938136", "photo_flickr_id": "4494210706", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41146", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was patiently waiting for the bus , but as time passed , it was obvious that it was late .", "storylet_id": "205730"}], [{"original_text": "I could not belive that there was an escalator entrance to the dollar store. ", "album_id": "72157623775938136", "photo_flickr_id": "4494207418", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41146", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i could not belive that there was an escalator entrance to the dollar store .", "storylet_id": "205731"}], [{"original_text": "It amazes me how people seem to read the paper while walking on a crowded sidewalk. ", "album_id": "72157623775938136", "photo_flickr_id": "4494207850", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41146", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it amazes me how people seem to read the paper while walking on a crowded sidewalk .", "storylet_id": "205732"}], [{"original_text": "The taxi seemed to be incognito begins the bush. ", "album_id": "72157623775938136", "photo_flickr_id": "4493570335", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41146", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the taxi seemed to be incognito begins the bush .", "storylet_id": "205733"}], [{"original_text": "The way the street is designed it seems like artwork. ", "album_id": "72157623775938136", "photo_flickr_id": "4494209690", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41146", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the way the street is designed it seems like artwork .", "storylet_id": "205734"}], [{"original_text": "Today started off like an ordinary work day. Little did I know that today would be different than all the rest!", "album_id": "72157623775938136", "photo_flickr_id": "4494207850", "setting": "last-3-pick-old-and-tell", "worker_id": "LUPX14WM3ZZVB35", "story_id": "41147", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today started off like an ordinary work day . little did i know that today would be different than all the rest !", "storylet_id": "205735"}], [{"original_text": "I walked along the crowded New York streets until I came to my office building. I went in and started to work.", "album_id": "72157623775938136", "photo_flickr_id": "4494208442", "setting": "last-3-pick-old-and-tell", "worker_id": "LUPX14WM3ZZVB35", "story_id": "41147", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i walked along the crowded location location streets until i came to my office building . i went in and started to work .", "storylet_id": "205736"}], [{"original_text": "At the end of the day, I finally got the courage to ask my coworker out. We walked the town and talked a lot.", "album_id": "72157623775938136", "photo_flickr_id": "4494215074", "setting": "last-3-pick-old-and-tell", "worker_id": "LUPX14WM3ZZVB35", "story_id": "41147", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the end of the day , i finally got the courage to ask my coworker out . we walked the town and talked a lot .", "storylet_id": "205737"}], [{"original_text": "We had a great dinner in a restaurant here. We really hit it off.", "album_id": "72157623775938136", "photo_flickr_id": "4494216734", "setting": "last-3-pick-old-and-tell", "worker_id": "LUPX14WM3ZZVB35", "story_id": "41147", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a great dinner in a restaurant here . we really hit it off .", "storylet_id": "205738"}], [{"original_text": "We talked until dawn, and then I walked her home to her apartment. I can't wait to see her again!", "album_id": "72157623775938136", "photo_flickr_id": "4493580169", "setting": "last-3-pick-old-and-tell", "worker_id": "LUPX14WM3ZZVB35", "story_id": "41147", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we talked until dawn , and then i walked her home to her apartment . i ca n't wait to see her again !", "storylet_id": "205739"}], [{"original_text": "It was interesting to see people reading while they walked.", "album_id": "72157623775938136", "photo_flickr_id": "4494207850", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41148", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was interesting to see people reading while they walked .", "storylet_id": "205740"}], [{"original_text": "The city was busy during the morning commute.", "album_id": "72157623775938136", "photo_flickr_id": "4494208442", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41148", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city was busy during the morning commute .", "storylet_id": "205741"}], [{"original_text": "The buildings made a great backdrop at night when they lit up.", "album_id": "72157623775938136", "photo_flickr_id": "4494215074", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41148", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the buildings made a great backdrop at night when they lit up .", "storylet_id": "205742"}], [{"original_text": "The buildings were some of the tallest in the world. ", "album_id": "72157623775938136", "photo_flickr_id": "4494216734", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41148", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the buildings were some of the tallest in the world .", "storylet_id": "205743"}], [{"original_text": "The buildings could be seen for miles and miles away. ", "album_id": "72157623775938136", "photo_flickr_id": "4493580169", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41148", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the buildings could be seen for miles and miles away .", "storylet_id": "205744"}], [{"original_text": "The front of the mall was somewhat crowded.", "album_id": "72157623775938136", "photo_flickr_id": "4494210706", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "41149", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the front of the mall was somewhat crowded .", "storylet_id": "205745"}], [{"original_text": "I ran past them and took the escalator down.", "album_id": "72157623775938136", "photo_flickr_id": "4494207418", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "41149", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i ran past them and took the escalator down .", "storylet_id": "205746"}], [{"original_text": "After shopping for a few hours, I returned to the street.", "album_id": "72157623775938136", "photo_flickr_id": "4494207850", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "41149", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after shopping for a few hours , i returned to the street .", "storylet_id": "205747"}], [{"original_text": "I tried to catch a cab but a bush blocked me.", "album_id": "72157623775938136", "photo_flickr_id": "4493570335", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "41149", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i tried to catch a cab but a bush blocked me .", "storylet_id": "205748"}], [{"original_text": "I decided to just walk back to my hotel.", "album_id": "72157623775938136", "photo_flickr_id": "4494209690", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "41149", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to just walk back to my hotel .", "storylet_id": "205749"}], [{"original_text": "Our day at the fair always starts with the Tickler. It's the coolest ride!", "album_id": "72157624659225102", "photo_flickr_id": "4862690653", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41150", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our day at the fair always starts with the tickler . it 's the coolest ride !", "storylet_id": "205750"}], [{"original_text": "Then, the one that takes you put in the air and then drops you. I like how it makes my stomach feel!", "album_id": "72157624659225102", "photo_flickr_id": "4862690379", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41150", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then , the one that takes you put in the air and then drops you . i like how it makes my stomach feel !", "storylet_id": "205751"}], [{"original_text": "The high up swings are scary but so, so cool!", "album_id": "72157624659225102", "photo_flickr_id": "4863312400", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41150", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the high up swings are scary but so , so cool !", "storylet_id": "205752"}], [{"original_text": "I took the kids to play that game where you try to fill up a clown.", "album_id": "72157624659225102", "photo_flickr_id": "4863311566", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41150", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i took the kids to play that game where you try to fill up a clown .", "storylet_id": "205753"}], [{"original_text": "It was funny watching some littler kids try to do the Whack-a-Mole!", "album_id": "72157624659225102", "photo_flickr_id": "4862690009", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41150", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was funny watching some littler kids try to do the whack-a-mole !", "storylet_id": "205754"}], [{"original_text": "Today we went to the fair. ", "album_id": "72157624659225102", "photo_flickr_id": "4863313172", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "41151", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to the fair .", "storylet_id": "205755"}], [{"original_text": "They have so many rides to choose from.", "album_id": "72157624659225102", "photo_flickr_id": "4862690653", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "41151", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they have so many rides to choose from .", "storylet_id": "205756"}], [{"original_text": "This one was my favorite ride to ride on.", "album_id": "72157624659225102", "photo_flickr_id": "4862690785", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "41151", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one was my favorite ride to ride on .", "storylet_id": "205757"}], [{"original_text": "We all had so much fun together.", "album_id": "72157624659225102", "photo_flickr_id": "4862690867", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "41151", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all had so much fun together .", "storylet_id": "205758"}], [{"original_text": "There were even too many rides to ride all in one day!", "album_id": "72157624659225102", "photo_flickr_id": "4863313070", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "41151", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were even too many rides to ride all in one day !", "storylet_id": "205759"}], [{"original_text": "Who names a ride 'the tickler'? It's a terrifying thought.", "album_id": "72157624659225102", "photo_flickr_id": "4862690653", "setting": "last-3-pick-old-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "41152", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "who names a ride 'the tickler ' ? it 's a terrifying thought .", "storylet_id": "205760"}], [{"original_text": "But there I was, strapped into it all the same, ready to be...tickled, whatever that means.", "album_id": "72157624659225102", "photo_flickr_id": "4862690379", "setting": "last-3-pick-old-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "41152", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but there i was , strapped into it all the same , ready to be ... tickled , whatever that means .", "storylet_id": "205761"}], [{"original_text": "Needless to say, I soon regretted my decision to go on the ride as it span me around in the air for a very long time. The only thing that felt like it was being tickled was the back of my throat was the bile rose and rose.", "album_id": "72157624659225102", "photo_flickr_id": "4863312400", "setting": "last-3-pick-old-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "41152", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "needless to say , i soon regretted my decision to go on the ride as it span me around in the air for a very long time . the only thing that felt like it was being tickled was the back of my throat was the bile rose and rose .", "storylet_id": "205762"}], [{"original_text": "Some unsuspecting children wearing yellow shirts were about to be the recipient of my horrible, chunky vomit.", "album_id": "72157624659225102", "photo_flickr_id": "4863311566", "setting": "last-3-pick-old-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "41152", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some unsuspecting children wearing yellow shirts were about to be the recipient of my horrible , chunky vomit .", "storylet_id": "205763"}], [{"original_text": "Thankfully, few noticed it arriving, as every child was moe involved in their own games rather than looking to the sky. I suppose it's good they didn't.", "album_id": "72157624659225102", "photo_flickr_id": "4862690009", "setting": "last-3-pick-old-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "41152", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thankfully , few noticed it arriving , as every child was moe involved in their own games rather than looking to the sky . i suppose it 's good they did n't .", "storylet_id": "205764"}], [{"original_text": " I went to an amusement park while visiting Asia.", "album_id": "72157624659225102", "photo_flickr_id": "4862690653", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41153", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to an amusement park while visiting location .", "storylet_id": "205765"}], [{"original_text": "I liked the rides that seat several because the lines move quicker.", "album_id": "72157624659225102", "photo_flickr_id": "4862690379", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41153", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i liked the rides that seat several because the lines move quicker .", "storylet_id": "205766"}], [{"original_text": "This ride was extremely tall.", "album_id": "72157624659225102", "photo_flickr_id": "4863312400", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41153", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this ride was extremely tall .", "storylet_id": "205767"}], [{"original_text": "We also played some games.", "album_id": "72157624659225102", "photo_flickr_id": "4863311566", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41153", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also played some games .", "storylet_id": "205768"}], [{"original_text": "I won a stuffed animal at this one.", "album_id": "72157624659225102", "photo_flickr_id": "4862690009", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41153", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i won a stuffed animal at this one .", "storylet_id": "205769"}], [{"original_text": "Our favorite time of the year, family vacation at the amusement parks!", "album_id": "72157624659225102", "photo_flickr_id": "4862690653", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41154", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our favorite time of the year , family vacation at the amusement parks !", "storylet_id": "205770"}], [{"original_text": "Here are some family members ready to go up in the air and come flying back down! Don't get scared.", "album_id": "72157624659225102", "photo_flickr_id": "4862690379", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41154", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here are some family members ready to go up in the air and come flying back down ! do n't get scared .", "storylet_id": "205771"}], [{"original_text": "It was an awesome ride and great view. I'm afraid of heights until after I ride a few rides.", "album_id": "72157624659225102", "photo_flickr_id": "4863312400", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41154", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was an awesome ride and great view . i 'm afraid of heights until after i ride a few rides .", "storylet_id": "205772"}], [{"original_text": "Here are some of the kids playing games. I wonder who will win.", "album_id": "72157624659225102", "photo_flickr_id": "4863311566", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41154", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here are some of the kids playing games . i wonder who will win .", "storylet_id": "205773"}], [{"original_text": "The girls would rather play whack a mole. They are ready to go.", "album_id": "72157624659225102", "photo_flickr_id": "4862690009", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41154", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girls would rather play whack a mole . they are ready to go .", "storylet_id": "205774"}], [{"original_text": "My husband and some friends came with me to the baseball game.", "album_id": "72157624220238674", "photo_flickr_id": "4677544274", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41155", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband and some friends came with me to the baseball game .", "storylet_id": "205775"}], [{"original_text": "They got to take pictures on the field. ", "album_id": "72157624220238674", "photo_flickr_id": "4677552192", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41155", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got to take pictures on the field .", "storylet_id": "205776"}], [{"original_text": "We weren't the only ones attending the game, I saw plenty of my coworkers.", "album_id": "72157624220238674", "photo_flickr_id": "4677551122", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41155", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were n't the only ones attending the game , i saw plenty of my coworkers .", "storylet_id": "205777"}], [{"original_text": "The game started off slow in the beginning.", "album_id": "72157624220238674", "photo_flickr_id": "4676923009", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41155", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the game started off slow in the beginning .", "storylet_id": "205778"}], [{"original_text": "But soon it picked up and we were all hyped up on adrenaline, hoping our favorite team won. ", "album_id": "72157624220238674", "photo_flickr_id": "4677554104", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41155", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but soon it picked up and we were all hyped up on adrenaline , hoping our favorite team won .", "storylet_id": "205779"}], [{"original_text": "Sally and Jim went to the Red Sox Game.", "album_id": "72157624220238674", "photo_flickr_id": "4676912691", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41156", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [male] went to the organization organization game .", "storylet_id": "205780"}], [{"original_text": "The stadium was filled with fans.", "album_id": "72157624220238674", "photo_flickr_id": "4677551122", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41156", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the stadium was filled with fans .", "storylet_id": "205781"}], [{"original_text": "The game was off to a great start.", "album_id": "72157624220238674", "photo_flickr_id": "4677553140", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41156", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the game was off to a great start .", "storylet_id": "205782"}], [{"original_text": "There was plenty of action.", "album_id": "72157624220238674", "photo_flickr_id": "4676923009", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41156", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was plenty of action .", "storylet_id": "205783"}], [{"original_text": "Later Sally met a friend at the river.", "album_id": "72157624220238674", "photo_flickr_id": "4676924743", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41156", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later [female] met a friend at the river .", "storylet_id": "205784"}], [{"original_text": "Today my family and I went to a Red Sox Game.", "album_id": "72157624220238674", "photo_flickr_id": "4677544274", "setting": "last-3-pick-old-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "41157", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today my family and i went to a organization organization game .", "storylet_id": "205785"}], [{"original_text": "We posed for pictures.", "album_id": "72157624220238674", "photo_flickr_id": "4677552192", "setting": "last-3-pick-old-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "41157", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we posed for pictures .", "storylet_id": "205786"}], [{"original_text": "I was amazed at how big the stands were.", "album_id": "72157624220238674", "photo_flickr_id": "4677551122", "setting": "last-3-pick-old-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "41157", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was amazed at how big the stands were .", "storylet_id": "205787"}], [{"original_text": "The players began to warm up.", "album_id": "72157624220238674", "photo_flickr_id": "4676923009", "setting": "last-3-pick-old-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "41157", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the players began to warm up .", "storylet_id": "205788"}], [{"original_text": "Game time.", "album_id": "72157624220238674", "photo_flickr_id": "4677554104", "setting": "last-3-pick-old-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "41157", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "game time .", "storylet_id": "205789"}], [{"original_text": "We tailgated with one of our favorite couples.", "album_id": "72157624220238674", "photo_flickr_id": "4677544274", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41158", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we tailgated with one of our favorite couples .", "storylet_id": "205790"}], [{"original_text": "We were in our Red Sox gear in full support of our team.", "album_id": "72157624220238674", "photo_flickr_id": "4677552192", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41158", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were in our organization organization gear in full support of our team .", "storylet_id": "205791"}], [{"original_text": "Camden Yards is a great baseball venue.", "album_id": "72157624220238674", "photo_flickr_id": "4677551122", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41158", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "organization organization is a great baseball venue .", "storylet_id": "205792"}], [{"original_text": "The Red Sox players warming up.", "album_id": "72157624220238674", "photo_flickr_id": "4676923009", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41158", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the organization organization players warming up .", "storylet_id": "205793"}], [{"original_text": "Once the game started, we had a great view. ", "album_id": "72157624220238674", "photo_flickr_id": "4677554104", "setting": "last-3-pick-old-and-tell", "worker_id": "WRYJD4Y5N9D8NVT", "story_id": "41158", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once the game started , we had a great view .", "storylet_id": "205794"}], [{"original_text": "Our friends and us went to our first game of the season.", "album_id": "72157624220238674", "photo_flickr_id": "4677544274", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41159", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our friends and us went to our first game of the season .", "storylet_id": "205795"}], [{"original_text": "Here is a great picture of my niece and her boyfriend.", "album_id": "72157624220238674", "photo_flickr_id": "4677552192", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41159", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is a great picture of my niece and her boyfriend .", "storylet_id": "205796"}], [{"original_text": "We had good seats, just looking at all the people there.", "album_id": "72157624220238674", "photo_flickr_id": "4677551122", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41159", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had good seats , just looking at all the people there .", "storylet_id": "205797"}], [{"original_text": "The baseball players getting warmed up for the game.", "album_id": "72157624220238674", "photo_flickr_id": "4676923009", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41159", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the baseball players getting warmed up for the game .", "storylet_id": "205798"}], [{"original_text": "It's game time! I hope we win.", "album_id": "72157624220238674", "photo_flickr_id": "4677554104", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41159", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's game time ! i hope we win .", "storylet_id": "205799"}], [{"original_text": "The kids are impatiently waiting for it to get dark so we can watch fireworks.", "album_id": "72157624433258760", "photo_flickr_id": "4767284630", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "41160", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids are impatiently waiting for it to get dark so we can watch fireworks .", "storylet_id": "205800"}], [{"original_text": "Finally! Watching from across the lake makes them look even better.", "album_id": "72157624433258760", "photo_flickr_id": "4766645723", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "41160", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "finally ! watching from across the lake makes them look even better .", "storylet_id": "205801"}], [{"original_text": "This one looks like it belongs in the yard.", "album_id": "72157624433258760", "photo_flickr_id": "4766646409", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "41160", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one looks like it belongs in the yard .", "storylet_id": "205802"}], [{"original_text": "The kids are oohhing and awwing over every single one.", "album_id": "72157624433258760", "photo_flickr_id": "4766646679", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "41160", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids are oohhing and awwing over every single one .", "storylet_id": "205803"}], [{"original_text": "The finale was neat. They lit off a bunch at one time lighting up the entire lake.", "album_id": "72157624433258760", "photo_flickr_id": "4767290660", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "41160", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finale was neat . they lit off a bunch at one time lighting up the entire lake .", "storylet_id": "205804"}], [{"original_text": "It was the fourth of July and we waited for the sun to set so the fireworks could begin.", "album_id": "72157624433258760", "photo_flickr_id": "4767284630", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41161", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the fourth of july and we waited for the sun to set so the fireworks could begin .", "storylet_id": "205805"}], [{"original_text": "There were many different types of fireworks.", "album_id": "72157624433258760", "photo_flickr_id": "4766645723", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41161", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many different types of fireworks .", "storylet_id": "205806"}], [{"original_text": "Some were in different shapes.", "album_id": "72157624433258760", "photo_flickr_id": "4767287616", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41161", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some were in different shapes .", "storylet_id": "205807"}], [{"original_text": "Others were rainbow colored.", "album_id": "72157624433258760", "photo_flickr_id": "4766649229", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41161", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others were rainbow colored .", "storylet_id": "205808"}], [{"original_text": "The 'grand finale' was spectacular. ", "album_id": "72157624433258760", "photo_flickr_id": "4767290660", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41161", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the 'grand finale ' was spectacular .", "storylet_id": "205809"}], [{"original_text": "Yesterday my family and I joined before sunset to watch fireworks.", "album_id": "72157624433258760", "photo_flickr_id": "4767284630", "setting": "last-3-pick-old-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "41162", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday my family and i joined before sunset to watch fireworks .", "storylet_id": "205810"}], [{"original_text": "We picked a spot right by the lake.", "album_id": "72157624433258760", "photo_flickr_id": "4766645723", "setting": "last-3-pick-old-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "41162", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we picked a spot right by the lake .", "storylet_id": "205811"}], [{"original_text": "The reflection of the fireworks on the water was beautiful.", "album_id": "72157624433258760", "photo_flickr_id": "4766646409", "setting": "last-3-pick-old-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "41162", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the reflection of the fireworks on the water was beautiful .", "storylet_id": "205812"}], [{"original_text": "I think we will pick this spot again next year.", "album_id": "72157624433258760", "photo_flickr_id": "4766646679", "setting": "last-3-pick-old-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "41162", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i think we will pick this spot again next year .", "storylet_id": "205813"}], [{"original_text": "It was a great fourth of July.", "album_id": "72157624433258760", "photo_flickr_id": "4767290660", "setting": "last-3-pick-old-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "41162", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great fourth of july .", "storylet_id": "205814"}], [{"original_text": "I couldn't wait for the sun to go down so we could watch the fireworks show.", "album_id": "72157624433258760", "photo_flickr_id": "4767284630", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41163", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i could n't wait for the sun to go down so we could watch the fireworks show .", "storylet_id": "205815"}], [{"original_text": "Once the sun went down the show started.", "album_id": "72157624433258760", "photo_flickr_id": "4766645723", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41163", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once the sun went down the show started .", "storylet_id": "205816"}], [{"original_text": "I was amazed at how beautiful it looked across the water.", "album_id": "72157624433258760", "photo_flickr_id": "4766646409", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41163", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was amazed at how beautiful it looked across the water .", "storylet_id": "205817"}], [{"original_text": "I didn't want it to end.", "album_id": "72157624433258760", "photo_flickr_id": "4766646679", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41163", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i did n't want it to end .", "storylet_id": "205818"}], [{"original_text": "But when the end came I was astonished.", "album_id": "72157624433258760", "photo_flickr_id": "4767290660", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41163", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but when the end came i was astonished .", "storylet_id": "205819"}], [{"original_text": "As the sun began to set, the gathering crowd knew fireworks were on their way.", "album_id": "72157624433258760", "photo_flickr_id": "4767284630", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41164", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as the sun began to set , the gathering crowd knew fireworks were on their way .", "storylet_id": "205820"}], [{"original_text": " The first burst came with red explosions.", "album_id": "72157624433258760", "photo_flickr_id": "4766645723", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41164", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first burst came with red explosions .", "storylet_id": "205821"}], [{"original_text": "The next burst was yellow.", "album_id": "72157624433258760", "photo_flickr_id": "4766646409", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41164", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next burst was yellow .", "storylet_id": "205822"}], [{"original_text": "Soon after came a green and blue batch.", "album_id": "72157624433258760", "photo_flickr_id": "4766646679", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41164", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "soon after came a green and blue batch .", "storylet_id": "205823"}], [{"original_text": "The finale presented numerous explosions blasting in coordinated succession.", "album_id": "72157624433258760", "photo_flickr_id": "4767290660", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41164", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finale presented numerous explosions blasting in coordinated succession .", "storylet_id": "205824"}], [{"original_text": "local art museum to host children's art,", "album_id": "72157624959568461", "photo_flickr_id": "5059069608", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41165", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "local art museum to host children 's art ,", "storylet_id": "205825"}], [{"original_text": "artwork done by 5th grader that reminded her of spring.", "album_id": "72157624959568461", "photo_flickr_id": "5059065326", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41165", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "artwork done by 5th grader that reminded her of spring .", "storylet_id": "205826"}], [{"original_text": "8th grade student created sculptures to capture winter's ice.", "album_id": "72157624959568461", "photo_flickr_id": "5059066864", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41165", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "8th grade student created sculptures to capture winter 's ice .", "storylet_id": "205827"}], [{"original_text": "12th grade student converted moms van into a shaded oasis and a great view of hills.", "album_id": "72157624959568461", "photo_flickr_id": "5059068650", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41165", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "12th grade student converted moms van into a shaded oasis and a great view of hills .", "storylet_id": "205828"}], [{"original_text": "10th grader who was amazed by organisms in the body, drew this for health class.", "album_id": "72157624959568461", "photo_flickr_id": "5058459803", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41165", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "10th grader who was amazed by organisms in the body , drew this for health class .", "storylet_id": "205829"}], [{"original_text": "There are so many things to see around the city at night.", "album_id": "72157624959568461", "photo_flickr_id": "5059068650", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41166", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are so many things to see around the city at night .", "storylet_id": "205830"}], [{"original_text": "Everything looks so different all lit up at night.", "album_id": "72157624959568461", "photo_flickr_id": "5059070520", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41166", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything looks so different all lit up at night .", "storylet_id": "205831"}], [{"original_text": "Exploring the city at night is a wonderful experience.", "album_id": "72157624959568461", "photo_flickr_id": "5058459355", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41166", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "exploring the city at night is a wonderful experience .", "storylet_id": "205832"}], [{"original_text": "The city looks so pretty with all of it's lights.", "album_id": "72157624959568461", "photo_flickr_id": "5059074280", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41166", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the city looks so pretty with all of it 's lights .", "storylet_id": "205833"}], [{"original_text": "We really live in such a wonderful city!", "album_id": "72157624959568461", "photo_flickr_id": "5046315483", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41166", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we really live in such a wonderful city !", "storylet_id": "205834"}], [{"original_text": "Last night my friend and I went on a tour of New York.", "album_id": "72157624959568461", "photo_flickr_id": "5059068650", "setting": "last-3-pick-old-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "41167", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night my friend and i went on a tour of location location .", "storylet_id": "205835"}], [{"original_text": "There was beautiful artwork everywhere.", "album_id": "72157624959568461", "photo_flickr_id": "5059070520", "setting": "last-3-pick-old-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "41167", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was beautiful artwork everywhere .", "storylet_id": "205836"}], [{"original_text": "There were even lighted art pieces littering the streets.", "album_id": "72157624959568461", "photo_flickr_id": "5058459355", "setting": "last-3-pick-old-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "41167", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were even lighted art pieces littering the streets .", "storylet_id": "205837"}], [{"original_text": "The lights of the big city were dizzying.", "album_id": "72157624959568461", "photo_flickr_id": "5059074280", "setting": "last-3-pick-old-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "41167", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lights of the big city were dizzying .", "storylet_id": "205838"}], [{"original_text": "I love New York.", "album_id": "72157624959568461", "photo_flickr_id": "5046315483", "setting": "last-3-pick-old-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "41167", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love location location .", "storylet_id": "205839"}], [{"original_text": "The back window of this van was an amazing way to start our sight seeing.", "album_id": "72157624959568461", "photo_flickr_id": "5059068650", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41168", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the back window of this van was an amazing way to start our sight seeing .", "storylet_id": "205840"}], [{"original_text": "Here we are traveling through the city streets.", "album_id": "72157624959568461", "photo_flickr_id": "5059070520", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41168", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we are traveling through the city streets .", "storylet_id": "205841"}], [{"original_text": "These lights were even more impressive close up.", "album_id": "72157624959568461", "photo_flickr_id": "5058459355", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41168", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these lights were even more impressive close up .", "storylet_id": "205842"}], [{"original_text": "So much activity in the city at night time.", "album_id": "72157624959568461", "photo_flickr_id": "5059074280", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41168", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so much activity in the city at night time .", "storylet_id": "205843"}], [{"original_text": "This pictures speaks volumes on how our trip turned out.", "album_id": "72157624959568461", "photo_flickr_id": "5046315483", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41168", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this pictures speaks volumes on how our trip turned out .", "storylet_id": "205844"}], [{"original_text": "Such a wonderful place to be!", "album_id": "72157624959568461", "photo_flickr_id": "5059069608", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41169", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "such a wonderful place to be !", "storylet_id": "205845"}], [{"original_text": "This design looks just amazing!", "album_id": "72157624959568461", "photo_flickr_id": "5059065326", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41169", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this design looks just amazing !", "storylet_id": "205846"}], [{"original_text": "So much beauty in one picture!", "album_id": "72157624959568461", "photo_flickr_id": "5059066864", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41169", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so much beauty in one picture !", "storylet_id": "205847"}], [{"original_text": "This was a great place to park!", "album_id": "72157624959568461", "photo_flickr_id": "5059068650", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41169", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was a great place to park !", "storylet_id": "205848"}], [{"original_text": "What a gorgeous design!", "album_id": "72157624959568461", "photo_flickr_id": "5058459803", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41169", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what a gorgeous design !", "storylet_id": "205849"}], [{"original_text": "Kelly got to go to the beach in France with her boyfriend.", "album_id": "72157625093480132", "photo_flickr_id": "5062073112", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41170", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] got to go to the beach in location with her boyfriend .", "storylet_id": "205850"}], [{"original_text": "While they were walking they came across a funny looking sign.", "album_id": "72157625093480132", "photo_flickr_id": "5063916885", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41170", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while they were walking they came across a funny looking sign .", "storylet_id": "205851"}], [{"original_text": "The hotel they stayed in was unlike anything they had ever seen before.", "album_id": "72157625093480132", "photo_flickr_id": "5071272300", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41170", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the hotel they stayed in was unlike anything they had ever seen before .", "storylet_id": "205852"}], [{"original_text": "Inside of the hotel it was just as spectacular as the outside.", "album_id": "72157625093480132", "photo_flickr_id": "5074171593", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41170", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "inside of the hotel it was just as spectacular as the outside .", "storylet_id": "205853"}], [{"original_text": "Before the couple returned home they visited a mall to purchase some things to remember the trip by.", "album_id": "72157625093480132", "photo_flickr_id": "5083685510", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41170", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before the couple returned home they visited a mall to purchase some things to remember the trip by .", "storylet_id": "205854"}], [{"original_text": "We started our vacation with a sight seeing tour- here's a castle the guide pointed out. ", "album_id": "72157625093480132", "photo_flickr_id": "5056820154", "setting": "first-2-pick-and-tell", "worker_id": "GP6V1JZF941U7AO", "story_id": "41171", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started our vacation with a sight seeing tour- here 's a castle the guide pointed out .", "storylet_id": "205855"}], [{"original_text": "The Arc D'Triumph? Not quite, but still an impressive site!", "album_id": "72157625093480132", "photo_flickr_id": "5059511048", "setting": "first-2-pick-and-tell", "worker_id": "GP6V1JZF941U7AO", "story_id": "41171", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the arc d'triumph ? not quite , but still an impressive site !", "storylet_id": "205856"}], [{"original_text": "Head at the history museum, kind of creepy but cool!", "album_id": "72157625093480132", "photo_flickr_id": "5074768618", "setting": "first-2-pick-and-tell", "worker_id": "GP6V1JZF941U7AO", "story_id": "41171", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "head at the history museum , kind of creepy but cool !", "storylet_id": "205857"}], [{"original_text": "We went to the beach the next day and got our tan on.", "album_id": "72157625093480132", "photo_flickr_id": "5062073112", "setting": "first-2-pick-and-tell", "worker_id": "GP6V1JZF941U7AO", "story_id": "41171", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went to the beach the next day and got our tan on .", "storylet_id": "205858"}], [{"original_text": "Night out on the town, check out this awesome fountain!", "album_id": "72157625093480132", "photo_flickr_id": "5071272300", "setting": "first-2-pick-and-tell", "worker_id": "GP6V1JZF941U7AO", "story_id": "41171", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "night out on the town , check out this awesome fountain !", "storylet_id": "205859"}], [{"original_text": "Today was the best day of my life.", "album_id": "72157625093480132", "photo_flickr_id": "5062073112", "setting": "last-3-pick-old-and-tell", "worker_id": "VAIIS80K1047AV4", "story_id": "41172", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the best day of my life .", "storylet_id": "205860"}], [{"original_text": "I saw this wacky sign at the beach.", "album_id": "72157625093480132", "photo_flickr_id": "5063916885", "setting": "last-3-pick-old-and-tell", "worker_id": "VAIIS80K1047AV4", "story_id": "41172", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw this wacky sign at the beach .", "storylet_id": "205861"}], [{"original_text": "I wonder how they do that.", "album_id": "72157625093480132", "photo_flickr_id": "5071272300", "setting": "last-3-pick-old-and-tell", "worker_id": "VAIIS80K1047AV4", "story_id": "41172", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i wonder how they do that .", "storylet_id": "205862"}], [{"original_text": "The displays were stunning.", "album_id": "72157625093480132", "photo_flickr_id": "5074171593", "setting": "last-3-pick-old-and-tell", "worker_id": "VAIIS80K1047AV4", "story_id": "41172", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the displays were stunning .", "storylet_id": "205863"}], [{"original_text": "I wasn't sure what was going on.", "album_id": "72157625093480132", "photo_flickr_id": "5083685510", "setting": "last-3-pick-old-and-tell", "worker_id": "VAIIS80K1047AV4", "story_id": "41172", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was n't sure what was going on .", "storylet_id": "205864"}], [{"original_text": "We saw lots of sights while we were on vacation. There was even a castle.", "album_id": "72157625093480132", "photo_flickr_id": "5056820154", "setting": "last-3-pick-old-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "41173", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we saw lots of sights while we were on vacation . there was even a castle .", "storylet_id": "205865"}], [{"original_text": "It was so amazing to see all the big arches up close.", "album_id": "72157625093480132", "photo_flickr_id": "5059511048", "setting": "last-3-pick-old-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "41173", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was so amazing to see all the big arches up close .", "storylet_id": "205866"}], [{"original_text": "The museum was a favorite stop on our journey and had many amazing things to see.", "album_id": "72157625093480132", "photo_flickr_id": "5074768618", "setting": "last-3-pick-old-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "41173", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the museum was a favorite stop on our journey and had many amazing things to see .", "storylet_id": "205867"}], [{"original_text": "One of my favorite parts of the trip was getting to relax on the beach.", "album_id": "72157625093480132", "photo_flickr_id": "5062073112", "setting": "last-3-pick-old-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "41173", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of my favorite parts of the trip was getting to relax on the beach .", "storylet_id": "205868"}], [{"original_text": "After dark we got to see all the fountains lit up and working.", "album_id": "72157625093480132", "photo_flickr_id": "5071272300", "setting": "last-3-pick-old-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "41173", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after dark we got to see all the fountains lit up and working .", "storylet_id": "205869"}], [{"original_text": "I decided to escape to the beach for my vacation. ", "album_id": "72157625093480132", "photo_flickr_id": "5062073112", "setting": "last-3-pick-old-and-tell", "worker_id": "7VYXLND55LWVDUT", "story_id": "41174", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to escape to the beach for my vacation .", "storylet_id": "205870"}], [{"original_text": "The beach was pristine and not very crowded.", "album_id": "72157625093480132", "photo_flickr_id": "5063916885", "setting": "last-3-pick-old-and-tell", "worker_id": "7VYXLND55LWVDUT", "story_id": "41174", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the beach was pristine and not very crowded .", "storylet_id": "205871"}], [{"original_text": "The fountain show downtown starts every hour on the hour.", "album_id": "72157625093480132", "photo_flickr_id": "5071272300", "setting": "last-3-pick-old-and-tell", "worker_id": "7VYXLND55LWVDUT", "story_id": "41174", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fountain show downtown starts every hour on the hour .", "storylet_id": "205872"}], [{"original_text": "The local art museum had a special exhibition.", "album_id": "72157625093480132", "photo_flickr_id": "5074171593", "setting": "last-3-pick-old-and-tell", "worker_id": "7VYXLND55LWVDUT", "story_id": "41174", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the local art museum had a special exhibition .", "storylet_id": "205873"}], [{"original_text": "Before returning home, I made a purchase at the duty free shop at the airport.", "album_id": "72157625093480132", "photo_flickr_id": "5083685510", "setting": "last-3-pick-old-and-tell", "worker_id": "7VYXLND55LWVDUT", "story_id": "41174", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before returning home , i made a purchase at the duty free shop at the airport .", "storylet_id": "205874"}], [{"original_text": "Security was at an all time high for the celebration.", "album_id": "72157628771568153", "photo_flickr_id": "6657742157", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41175", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "security was at an all time high for the celebration .", "storylet_id": "205875"}], [{"original_text": "Visitors were filling the hotels to max capacity.", "album_id": "72157628771568153", "photo_flickr_id": "6657745889", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41175", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "visitors were filling the hotels to max capacity .", "storylet_id": "205876"}], [{"original_text": "They all wanted to be one of the first to ride the ferris wheel.", "album_id": "72157628771568153", "photo_flickr_id": "6657747203", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41175", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all wanted to be one of the first to ride the ferris wheel .", "storylet_id": "205877"}], [{"original_text": "Lines can become quite long for this so people line up hours ahead of time.", "album_id": "72157628771568153", "photo_flickr_id": "6657753501", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41175", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "lines can become quite long for this so people line up hours ahead of time .", "storylet_id": "205878"}], [{"original_text": "After the ride is over many will take in the sights that surround it.", "album_id": "72157628771568153", "photo_flickr_id": "6657754225", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41175", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the ride is over many will take in the sights that surround it .", "storylet_id": "205879"}], [{"original_text": "We saw a large neon lite ferris looking wheel in the distance.", "album_id": "72157628771568153", "photo_flickr_id": "6657742891", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "41176", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we saw a large neon lite ferris looking wheel in the distance .", "storylet_id": "205880"}], [{"original_text": "We headed through the city toward it.", "album_id": "72157628771568153", "photo_flickr_id": "6657745207", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "41176", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we headed through the city toward it .", "storylet_id": "205881"}], [{"original_text": "It looked even better up close.", "album_id": "72157628771568153", "photo_flickr_id": "6657747203", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "41176", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it looked even better up close .", "storylet_id": "205882"}], [{"original_text": "We then noticed the large group of people that were attending a gathering near it.", "album_id": "72157628771568153", "photo_flickr_id": "6657756743", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "41176", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we then noticed the large group of people that were attending a gathering near it .", "storylet_id": "205883"}], [{"original_text": "There was a great concert happening and we stayed until it finished.", "album_id": "72157628771568153", "photo_flickr_id": "6657757295", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "41176", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a great concert happening and we stayed until it finished .", "storylet_id": "205884"}], [{"original_text": "We went to a festival in Japan", "album_id": "72157628771568153", "photo_flickr_id": "6657742157", "setting": "last-3-pick-old-and-tell", "worker_id": "K3835000BNMDSJ9", "story_id": "41177", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a festival in location", "storylet_id": "205885"}], [{"original_text": "We stayed in a beautiful Hotel.", "album_id": "72157628771568153", "photo_flickr_id": "6657745889", "setting": "last-3-pick-old-and-tell", "worker_id": "K3835000BNMDSJ9", "story_id": "41177", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stayed in a beautiful hotel .", "storylet_id": "205886"}], [{"original_text": "They light everything up in neon in Japan.", "album_id": "72157628771568153", "photo_flickr_id": "6657747203", "setting": "last-3-pick-old-and-tell", "worker_id": "K3835000BNMDSJ9", "story_id": "41177", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they light everything up in neon in location .", "storylet_id": "205887"}], [{"original_text": "It was quite the ever-changing display.", "album_id": "72157628771568153", "photo_flickr_id": "6657753501", "setting": "last-3-pick-old-and-tell", "worker_id": "K3835000BNMDSJ9", "story_id": "41177", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was quite the ever-changing display .", "storylet_id": "205888"}], [{"original_text": "The crowd was huge and the lights lit up the night so it seemed to be day.", "album_id": "72157628771568153", "photo_flickr_id": "6657754225", "setting": "last-3-pick-old-and-tell", "worker_id": "K3835000BNMDSJ9", "story_id": "41177", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the crowd was huge and the lights lit up the night so it seemed to be day .", "storylet_id": "205889"}], [{"original_text": "The festival tents lines the perimeter of the party area.", "album_id": "72157628771568153", "photo_flickr_id": "6657742157", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41178", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the festival tents lines the perimeter of the party area .", "storylet_id": "205890"}], [{"original_text": "All lights were on in the street where the festival was held. ", "album_id": "72157628771568153", "photo_flickr_id": "6657745889", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41178", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all lights were on in the street where the festival was held .", "storylet_id": "205891"}], [{"original_text": "Ther centerpiece was a large circular light installation on top of a building. ", "album_id": "72157628771568153", "photo_flickr_id": "6657747203", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41178", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "ther centerpiece was a large circular light installation on top of a building .", "storylet_id": "205892"}], [{"original_text": "The installation changed color and pattern.", "album_id": "72157628771568153", "photo_flickr_id": "6657753501", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41178", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the installation changed color and pattern .", "storylet_id": "205893"}], [{"original_text": "Other buildings were similarly illuminated and hypnotic. ", "album_id": "72157628771568153", "photo_flickr_id": "6657754225", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41178", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "other buildings were similarly illuminated and hypnotic .", "storylet_id": "205894"}], [{"original_text": "We parked our car in the parking lot, there were many security guards present for the event.", "album_id": "72157628771568153", "photo_flickr_id": "6657742157", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41179", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we parked our car in the parking lot , there were many security guards present for the event .", "storylet_id": "205895"}], [{"original_text": "The hotel where the event is taking place is a very tall building with many floors.", "album_id": "72157628771568153", "photo_flickr_id": "6657745889", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41179", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the hotel where the event is taking place is a very tall building with many floors .", "storylet_id": "205896"}], [{"original_text": "On top of the building there is a big circle display of lights.", "album_id": "72157628771568153", "photo_flickr_id": "6657747203", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41179", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on top of the building there is a big circle display of lights .", "storylet_id": "205897"}], [{"original_text": "The display changes patterns of the light constantly.", "album_id": "72157628771568153", "photo_flickr_id": "6657753501", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41179", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the display changes patterns of the light constantly .", "storylet_id": "205898"}], [{"original_text": "From the roof of the building, we can see a very nice view of the city all lighted up.", "album_id": "72157628771568153", "photo_flickr_id": "6657754225", "setting": "last-3-pick-old-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41179", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "from the roof of the building , we can see a very nice view of the city all lighted up .", "storylet_id": "205899"}], [{"original_text": "I went hiking by myself the other day.", "album_id": "72157623669724045", "photo_flickr_id": "4499174733", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41180", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went hiking by myself the other day .", "storylet_id": "205900"}], [{"original_text": "The first thing I did was step in mud and dirty my shoes.", "album_id": "72157623669724045", "photo_flickr_id": "4499811154", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41180", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first thing i did was step in mud and dirty my shoes .", "storylet_id": "205901"}], [{"original_text": "There were even rotting plants in the bushes.", "album_id": "72157623669724045", "photo_flickr_id": "4499817070", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41180", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were even rotting plants in the bushes .", "storylet_id": "205902"}], [{"original_text": "I finally found the cabin on the road.", "album_id": "72157623669724045", "photo_flickr_id": "4499824748", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41180", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i finally found the cabin on the road .", "storylet_id": "205903"}], [{"original_text": "There was even a tower nearby.", "album_id": "72157623669724045", "photo_flickr_id": "4499830016", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41180", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was even a tower nearby .", "storylet_id": "205904"}], [{"original_text": "We were very excited to explore the nearby forest.", "album_id": "72157623669724045", "photo_flickr_id": "4499193875", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "41181", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were very excited to explore the nearby forest .", "storylet_id": "205905"}], [{"original_text": "We entered the field and ran quickly to the forest edge.", "album_id": "72157623669724045", "photo_flickr_id": "4499174733", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "41181", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we entered the field and ran quickly to the forest edge .", "storylet_id": "205906"}], [{"original_text": "We stopped at a river in the woods and watched the fish go past.", "album_id": "72157623669724045", "photo_flickr_id": "4499811646", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "41181", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stopped at a river in the woods and watched the fish go past .", "storylet_id": "205907"}], [{"original_text": "Mike thought he saw a bear in the woods but I don't think so.", "album_id": "72157623669724045", "photo_flickr_id": "4499179147", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "41181", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] thought he saw a bear in the woods but i do n't think so .", "storylet_id": "205908"}], [{"original_text": "We even found an abandoned house that was full of old pictures. We had a great time that day. ", "album_id": "72157623669724045", "photo_flickr_id": "4499824748", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "41181", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even found an abandoned house that was full of old pictures . we had a great time that day .", "storylet_id": "205909"}], [{"original_text": "Went hiking yesterday.", "album_id": "72157623669724045", "photo_flickr_id": "4499174733", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "41182", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went hiking yesterday .", "storylet_id": "205910"}], [{"original_text": "I went off the trail.", "album_id": "72157623669724045", "photo_flickr_id": "4499811154", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "41182", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went off the trail .", "storylet_id": "205911"}], [{"original_text": "This was cool looking.", "album_id": "72157623669724045", "photo_flickr_id": "4499817070", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "41182", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was cool looking .", "storylet_id": "205912"}], [{"original_text": "Found an old barn.It had an ancient tractor in it.", "album_id": "72157623669724045", "photo_flickr_id": "4499824748", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "41182", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "found an old barn.it had an ancient tractor in it .", "storylet_id": "205913"}], [{"original_text": "I guess they do not want anyone climbing this tower!", "album_id": "72157623669724045", "photo_flickr_id": "4499830016", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "41182", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i guess they do not want anyone climbing this tower !", "storylet_id": "205914"}], [{"original_text": "While on a hike we ran into this sign.", "album_id": "72157623669724045", "photo_flickr_id": "4499193875", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41183", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while on a hike we ran into this sign .", "storylet_id": "205915"}], [{"original_text": "I couldn't read the sign so we kept walking.", "album_id": "72157623669724045", "photo_flickr_id": "4499174733", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41183", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i could n't read the sign so we kept walking .", "storylet_id": "205916"}], [{"original_text": "We ran across a creek.", "album_id": "72157623669724045", "photo_flickr_id": "4499811646", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41183", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we ran across a creek .", "storylet_id": "205917"}], [{"original_text": "We followed the creek uphill.", "album_id": "72157623669724045", "photo_flickr_id": "4499179147", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41183", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we followed the creek uphill .", "storylet_id": "205918"}], [{"original_text": " Finally we ran into this old barn.", "album_id": "72157623669724045", "photo_flickr_id": "4499824748", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41183", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally we ran into this old barn .", "storylet_id": "205919"}], [{"original_text": "I decided to go for a hike.", "album_id": "72157623669724045", "photo_flickr_id": "4499174733", "setting": "last-3-pick-old-and-tell", "worker_id": "HAX4EHVZ37N5TNZ", "story_id": "41184", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to go for a hike .", "storylet_id": "205920"}], [{"original_text": "I wasn't familiar with the area, so I paid a lot of attention to where I was putting my feet. ", "album_id": "72157623669724045", "photo_flickr_id": "4499811154", "setting": "last-3-pick-old-and-tell", "worker_id": "HAX4EHVZ37N5TNZ", "story_id": "41184", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was n't familiar with the area , so i paid a lot of attention to where i was putting my feet .", "storylet_id": "205921"}], [{"original_text": "At one point, I almost stepped on a giant mushroom. It was slimy and gross. It smelled a little odd, too.", "album_id": "72157623669724045", "photo_flickr_id": "4499817070", "setting": "last-3-pick-old-and-tell", "worker_id": "HAX4EHVZ37N5TNZ", "story_id": "41184", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at one point , i almost stepped on a giant mushroom . it was slimy and gross . it smelled a little odd , too .", "storylet_id": "205922"}], [{"original_text": "The trail I was walking led to a small cabin in a clearing.", "album_id": "72157623669724045", "photo_flickr_id": "4499824748", "setting": "last-3-pick-old-and-tell", "worker_id": "HAX4EHVZ37N5TNZ", "story_id": "41184", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the trail i was walking led to a small cabin in a clearing .", "storylet_id": "205923"}], [{"original_text": "The cabin looked old, but it was actually a new building designed to look old. It served as a mechanical room for a cell tower.", "album_id": "72157623669724045", "photo_flickr_id": "4499830016", "setting": "last-3-pick-old-and-tell", "worker_id": "HAX4EHVZ37N5TNZ", "story_id": "41184", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cabin looked old , but it was actually a new building designed to look old . it served as a mechanical room for a cell tower .", "storylet_id": "205924"}], [{"original_text": "Such a great tradition.", "album_id": "72157624548986959", "photo_flickr_id": "4868947089", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41185", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "such a great tradition .", "storylet_id": "205925"}], [{"original_text": "So many years.", "album_id": "72157624548986959", "photo_flickr_id": "4868947391", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41185", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so many years .", "storylet_id": "205926"}], [{"original_text": "Such a catharsis.", "album_id": "72157624548986959", "photo_flickr_id": "4869561582", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41185", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "such a catharsis .", "storylet_id": "205927"}], [{"original_text": "I love the symbolism.", "album_id": "72157624548986959", "photo_flickr_id": "4869562000", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41185", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love the symbolism .", "storylet_id": "205928"}], [{"original_text": "It was a wonderful experience.", "album_id": "72157624548986959", "photo_flickr_id": "4869562344", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41185", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a wonderful experience .", "storylet_id": "205929"}], [{"original_text": "A single paper lantern floating on the water marks the start.", "album_id": "72157624548986959", "photo_flickr_id": "4868947089", "setting": "first-2-pick-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "41186", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a single paper lantern floating on the water marks the start .", "storylet_id": "205930"}], [{"original_text": "One by one each takes its place.", "album_id": "72157624548986959", "photo_flickr_id": "4869562716", "setting": "first-2-pick-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "41186", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one by one each takes its place .", "storylet_id": "205931"}], [{"original_text": "A floating parade of somber light.", "album_id": "72157624548986959", "photo_flickr_id": "4868949519", "setting": "first-2-pick-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "41186", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a floating parade of somber light .", "storylet_id": "205932"}], [{"original_text": "While the crowd ponders in reflection.", "album_id": "72157624548986959", "photo_flickr_id": "4869564172", "setting": "first-2-pick-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "41186", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while the crowd ponders in reflection .", "storylet_id": "205933"}], [{"original_text": "As the bells toll.", "album_id": "72157624548986959", "photo_flickr_id": "4869566922", "setting": "first-2-pick-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "41186", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the bells toll .", "storylet_id": "205934"}], [{"original_text": "The skyline reflected in the water was pretty, but I'm not great at nighttime photos.", "album_id": "72157624548986959", "photo_flickr_id": "4868947089", "setting": "last-3-pick-old-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "41187", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the skyline reflected in the water was pretty , but i 'm not great at nighttime photos .", "storylet_id": "205935"}], [{"original_text": "Here is the gang of us all together at the water's edge. Too dark to see us clearly.", "album_id": "72157624548986959", "photo_flickr_id": "4869562716", "setting": "last-3-pick-old-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "41187", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is the gang of us all together at the water 's edge . too dark to see us clearly .", "storylet_id": "205936"}], [{"original_text": "This is a closer shot of the guests of honor for our reunion.", "album_id": "72157624548986959", "photo_flickr_id": "4868949519", "setting": "last-3-pick-old-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "41187", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a closer shot of the guests of honor for our reunion .", "storylet_id": "205937"}], [{"original_text": "The skyline in the early evening is the best shot I took all weekend.", "album_id": "72157624548986959", "photo_flickr_id": "4869564172", "setting": "last-3-pick-old-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "41187", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the skyline in the early evening is the best shot i took all weekend .", "storylet_id": "205938"}], [{"original_text": "This is one of the few daytime pictures I have of the city where our reunion was held. I called the clock \"Little Ben.\"", "album_id": "72157624548986959", "photo_flickr_id": "4869566922", "setting": "last-3-pick-old-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "41187", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is one of the few daytime pictures i have of the city where our reunion was held . i called the clock `` little [male] . ''", "storylet_id": "205939"}], [{"original_text": "The river was pretty silent and serene as we walked along it. It reflected lights from the houses.", "album_id": "72157624548986959", "photo_flickr_id": "4868947089", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41188", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the river was pretty silent and serene as we walked along it . it reflected lights from the houses .", "storylet_id": "205940"}], [{"original_text": "We met up with the rest of the town at the assigned meeting spot.", "album_id": "72157624548986959", "photo_flickr_id": "4868947391", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41188", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we met up with the rest of the town at the assigned meeting spot .", "storylet_id": "205941"}], [{"original_text": "The major made a speech and then she lit a lantern.", "album_id": "72157624548986959", "photo_flickr_id": "4869561582", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41188", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the major made a speech and then she lit a lantern .", "storylet_id": "205942"}], [{"original_text": "She then placed it into the river and watched it as it floated away.", "album_id": "72157624548986959", "photo_flickr_id": "4869562000", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41188", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she then placed it into the river and watched it as it floated away .", "storylet_id": "205943"}], [{"original_text": "Others started lighting up lanterns and it was the start of our annual floating lanterns festival.", "album_id": "72157624548986959", "photo_flickr_id": "4869562344", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41188", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "others started lighting up lanterns and it was the start of our annual floating lanterns festival .", "storylet_id": "205944"}], [{"original_text": "The water was so calm this morning. ", "album_id": "72157624548986959", "photo_flickr_id": "4868947089", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "41189", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the water was so calm this morning .", "storylet_id": "205945"}], [{"original_text": "The festival brought out a lot of nice people. ", "album_id": "72157624548986959", "photo_flickr_id": "4869562716", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "41189", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the festival brought out a lot of nice people .", "storylet_id": "205946"}], [{"original_text": "Aunt Mary started singing old folk songs. ", "album_id": "72157624548986959", "photo_flickr_id": "4868949519", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "41189", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "aunt [female] started singing old folk songs .", "storylet_id": "205947"}], [{"original_text": "The city lit up when the sun went down. ", "album_id": "72157624548986959", "photo_flickr_id": "4869564172", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "41189", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the city lit up when the sun went down .", "storylet_id": "205948"}], [{"original_text": "The morning after, we went for a picnic in the park.", "album_id": "72157624548986959", "photo_flickr_id": "4869566922", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "41189", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the morning after , we went for a picnic in the park .", "storylet_id": "205949"}], [{"original_text": "A house with a lake in front it.", "album_id": "72157629238847537", "photo_flickr_id": "6844405595", "setting": "first-2-pick-and-tell", "worker_id": "F1M0F48F3E4J0WA", "story_id": "41190", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a house with a lake in front it .", "storylet_id": "205950"}], [{"original_text": "A lake with the sun shinning in it.", "album_id": "72157629238847537", "photo_flickr_id": "6844401755", "setting": "first-2-pick-and-tell", "worker_id": "F1M0F48F3E4J0WA", "story_id": "41190", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lake with the sun shinning in it .", "storylet_id": "205951"}], [{"original_text": "A long road to a little city.", "album_id": "72157629238847537", "photo_flickr_id": "6844409785", "setting": "first-2-pick-and-tell", "worker_id": "F1M0F48F3E4J0WA", "story_id": "41190", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a long road to a little city .", "storylet_id": "205952"}], [{"original_text": "A forest and the leaves are on the ground.", "album_id": "72157629238847537", "photo_flickr_id": "6844414515", "setting": "first-2-pick-and-tell", "worker_id": "F1M0F48F3E4J0WA", "story_id": "41190", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a forest and the leaves are on the ground .", "storylet_id": "205953"}], [{"original_text": "A duck in the lake.", "album_id": "72157629238847537", "photo_flickr_id": "6844418765", "setting": "first-2-pick-and-tell", "worker_id": "F1M0F48F3E4J0WA", "story_id": "41190", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a duck in the lake .", "storylet_id": "205954"}], [{"original_text": "We visited a park during the winter.", "album_id": "72157629238847537", "photo_flickr_id": "6844405595", "setting": "first-2-pick-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "41191", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited a park during the winter .", "storylet_id": "205955"}], [{"original_text": "The path was clear and easy to walk on.", "album_id": "72157629238847537", "photo_flickr_id": "6844409785", "setting": "first-2-pick-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "41191", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the path was clear and easy to walk on .", "storylet_id": "205956"}], [{"original_text": "Ducks swam in the chilly pond.", "album_id": "72157629238847537", "photo_flickr_id": "6844418765", "setting": "first-2-pick-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "41191", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "ducks swam in the chilly pond .", "storylet_id": "205957"}], [{"original_text": "Views of the pond were breathtaking. ", "album_id": "72157629238847537", "photo_flickr_id": "6844427615", "setting": "first-2-pick-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "41191", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "views of the pond were breathtaking .", "storylet_id": "205958"}], [{"original_text": "A fence surrounded the park.", "album_id": "72157629238847537", "photo_flickr_id": "6844432121", "setting": "first-2-pick-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "41191", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a fence surrounded the park .", "storylet_id": "205959"}], [{"original_text": "The great flood had reached our house.", "album_id": "72157629238847537", "photo_flickr_id": "6844405595", "setting": "last-3-pick-old-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41192", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the great flood had reached our house .", "storylet_id": "205960"}], [{"original_text": "We drove into the city on the one dry road remaining.", "album_id": "72157629238847537", "photo_flickr_id": "6844409785", "setting": "last-3-pick-old-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41192", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we drove into the city on the one dry road remaining .", "storylet_id": "205961"}], [{"original_text": "Ducks swam up to overtake our village.", "album_id": "72157629238847537", "photo_flickr_id": "6844418765", "setting": "last-3-pick-old-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41192", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "ducks swam up to overtake our village .", "storylet_id": "205962"}], [{"original_text": "The river swelled its banks.", "album_id": "72157629238847537", "photo_flickr_id": "6844427615", "setting": "last-3-pick-old-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41192", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the river swelled its banks .", "storylet_id": "205963"}], [{"original_text": "The city walls were built high and strong to keep out the floodwaters.", "album_id": "72157629238847537", "photo_flickr_id": "6844432121", "setting": "last-3-pick-old-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41192", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the city walls were built high and strong to keep out the floodwaters .", "storylet_id": "205964"}], [{"original_text": "John decided to take a walk in the woods one Sunday.", "album_id": "72157629238847537", "photo_flickr_id": "6844405595", "setting": "last-3-pick-old-and-tell", "worker_id": "TOPPXN96TLITOY1", "story_id": "41193", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] decided to take a walk in the woods one sunday .", "storylet_id": "205965"}], [{"original_text": "John walked around the lake first.", "album_id": "72157629238847537", "photo_flickr_id": "6844401755", "setting": "last-3-pick-old-and-tell", "worker_id": "TOPPXN96TLITOY1", "story_id": "41193", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] walked around the lake first .", "storylet_id": "205966"}], [{"original_text": "He then took the path towards the forest.", "album_id": "72157629238847537", "photo_flickr_id": "6844409785", "setting": "last-3-pick-old-and-tell", "worker_id": "TOPPXN96TLITOY1", "story_id": "41193", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he then took the path towards the forest .", "storylet_id": "205967"}], [{"original_text": "In the forest he enjoyed the fall trees.", "album_id": "72157629238847537", "photo_flickr_id": "6844414515", "setting": "last-3-pick-old-and-tell", "worker_id": "TOPPXN96TLITOY1", "story_id": "41193", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the forest he enjoyed the fall trees .", "storylet_id": "205968"}], [{"original_text": "John took one more lap around the lake before he headed home.", "album_id": "72157629238847537", "photo_flickr_id": "6844418765", "setting": "last-3-pick-old-and-tell", "worker_id": "TOPPXN96TLITOY1", "story_id": "41193", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] took one more lap around the lake before he headed home .", "storylet_id": "205969"}], [{"original_text": "I went on a trip to Europe last fall.", "album_id": "72157629238847537", "photo_flickr_id": "6844405595", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41194", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on a trip to location last fall .", "storylet_id": "205970"}], [{"original_text": "There was a creek running through the city.", "album_id": "72157629238847537", "photo_flickr_id": "6844401755", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41194", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a creek running through the city .", "storylet_id": "205971"}], [{"original_text": "Down the only street in the city was one large building.", "album_id": "72157629238847537", "photo_flickr_id": "6844409785", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41194", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "down the only street in the city was one large building .", "storylet_id": "205972"}], [{"original_text": "Because its the fall, none of the trees have leaves, making gorgeous shadows on the ground.", "album_id": "72157629238847537", "photo_flickr_id": "6844414515", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41194", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "because its the fall , none of the trees have leaves , making gorgeous shadows on the ground .", "storylet_id": "205973"}], [{"original_text": "I became friends with a duck, I call him Larry, who was always in the creek.", "album_id": "72157629238847537", "photo_flickr_id": "6844418765", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41194", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i became friends with a duck , i call him [male] , who was always in the creek .", "storylet_id": "205974"}], [{"original_text": "big family get together at the park. The kids want to go ride rides.", "album_id": "72157624105513515", "photo_flickr_id": "4681304689", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "41195", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "big family get together at the park . the kids want to go ride rides .", "storylet_id": "205975"}], [{"original_text": "Look at all the people already. Going to have to push our way through to get where we want to go.", "album_id": "72157624105513515", "photo_flickr_id": "4681962196", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "41195", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look at all the people already . going to have to push our way through to get where we want to go .", "storylet_id": "205976"}], [{"original_text": "Billy is really ready to get on some rides. Grandma is pushing people out of the way.", "album_id": "72157624105513515", "photo_flickr_id": "4681332517", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "41195", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] is really ready to get on some rides . grandma is pushing people out of the way .", "storylet_id": "205977"}], [{"original_text": "The roller coaster was totally awesome. The kids didn't want to ride it.", "album_id": "72157624105513515", "photo_flickr_id": "4681966076", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "41195", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the roller coaster was totally awesome . the kids did n't want to ride it .", "storylet_id": "205978"}], [{"original_text": "They rode this one though. It was a great day even with Grandma acting like a crazy lady pushing people all day.", "album_id": "72157624105513515", "photo_flickr_id": "4681967970", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "41195", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they rode this one though . it was a great day even with grandma acting like a crazy lady pushing people all day .", "storylet_id": "205979"}], [{"original_text": "The family gathered for the picnic.", "album_id": "72157624105513515", "photo_flickr_id": "4681304689", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41196", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family gathered for the picnic .", "storylet_id": "205980"}], [{"original_text": "Even the grandparent's made the trip.", "album_id": "72157624105513515", "photo_flickr_id": "4681309233", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41196", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the grandparent 's made the trip .", "storylet_id": "205981"}], [{"original_text": "The pre-teens didn't seem to being having too great of a time...", "album_id": "72157624105513515", "photo_flickr_id": "4681949854", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41196", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the pre-teens did n't seem to being having too great of a time ...", "storylet_id": "205982"}], [{"original_text": "However, the little ones, like Jimmy, and his best friend..", "album_id": "72157624105513515", "photo_flickr_id": "4681951388", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41196", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "however , the little ones , like [male] , and his best friend..", "storylet_id": "205983"}], [{"original_text": "Tommy were having the times of their lives.", "album_id": "72157624105513515", "photo_flickr_id": "4681333727", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41196", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] were having the times of their lives .", "storylet_id": "205984"}], [{"original_text": "We set up for a relaxing picnic.", "album_id": "72157624105513515", "photo_flickr_id": "4681304689", "setting": "last-3-pick-old-and-tell", "worker_id": "Q6C6W0X7QIZGVW5", "story_id": "41197", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we set up for a relaxing picnic .", "storylet_id": "205985"}], [{"original_text": "There were many other people around.", "album_id": "72157624105513515", "photo_flickr_id": "4681962196", "setting": "last-3-pick-old-and-tell", "worker_id": "Q6C6W0X7QIZGVW5", "story_id": "41197", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many other people around .", "storylet_id": "205986"}], [{"original_text": "We were excited to go on many different rides.", "album_id": "72157624105513515", "photo_flickr_id": "4681332517", "setting": "last-3-pick-old-and-tell", "worker_id": "Q6C6W0X7QIZGVW5", "story_id": "41197", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were excited to go on many different rides .", "storylet_id": "205987"}], [{"original_text": "Some brought you high into the air.", "album_id": "72157624105513515", "photo_flickr_id": "4681966076", "setting": "last-3-pick-old-and-tell", "worker_id": "Q6C6W0X7QIZGVW5", "story_id": "41197", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some brought you high into the air .", "storylet_id": "205988"}], [{"original_text": "Others moved very fast.", "album_id": "72157624105513515", "photo_flickr_id": "4681967970", "setting": "last-3-pick-old-and-tell", "worker_id": "Q6C6W0X7QIZGVW5", "story_id": "41197", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "others moved very fast .", "storylet_id": "205989"}], [{"original_text": "The Brown family held their annual reunion at the amusement park. The picnic was fun for all ages!", "album_id": "72157624105513515", "photo_flickr_id": "4681304689", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "41198", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the brown family held their annual reunion at the amusement park . the picnic was fun for all ages !", "storylet_id": "205990"}], [{"original_text": "Along the midway, there were so many games to play and goodies to eat.", "album_id": "72157624105513515", "photo_flickr_id": "4681962196", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "41198", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "along the midway , there were so many games to play and goodies to eat .", "storylet_id": "205991"}], [{"original_text": "Grandma and Aunt Louise went everywhere Brady wanted to go -- what good sports!", "album_id": "72157624105513515", "photo_flickr_id": "4681332517", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "41198", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandma and aunt [female] went everywhere [male] wanted to go -- what good sports !", "storylet_id": "205992"}], [{"original_text": "This roller coaster was very popular, but it's much too high for me.", "album_id": "72157624105513515", "photo_flickr_id": "4681966076", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "41198", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this roller coaster was very popular , but it 's much too high for me .", "storylet_id": "205993"}], [{"original_text": "I thought this one would be more relaxing, but it had some scary twists and turns that surprised me. Still, I loved it!", "album_id": "72157624105513515", "photo_flickr_id": "4681967970", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "41198", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i thought this one would be more relaxing , but it had some scary twists and turns that surprised me . still , i loved it !", "storylet_id": "205994"}], [{"original_text": "A group of family friends gathered for a picnic.", "album_id": "72157624105513515", "photo_flickr_id": "4681304689", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41199", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of family friends gathered for a picnic .", "storylet_id": "205995"}], [{"original_text": "Everyone present grabbed a comfy spot on the blankets to start eating.,", "album_id": "72157624105513515", "photo_flickr_id": "4681309233", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41199", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone present grabbed a comfy spot on the blankets to start eating. ,", "storylet_id": "205996"}], [{"original_text": "Some of the kids became restless as they waited to go to the amusement park afterward.", "album_id": "72157624105513515", "photo_flickr_id": "4681949854", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41199", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the kids became restless as they waited to go to the amusement park afterward .", "storylet_id": "205997"}], [{"original_text": "One kid became so cranky that he started to cry before his mother picked him up.", "album_id": "72157624105513515", "photo_flickr_id": "4681951388", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41199", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one kid became so cranky that he started to cry before his mother picked him up .", "storylet_id": "205998"}], [{"original_text": "His tears all dried when they found themselves at the amusement park!", "album_id": "72157624105513515", "photo_flickr_id": "4681333727", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41199", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his tears all dried when they found themselves at the amusement park !", "storylet_id": "205999"}], [{"original_text": "The fair was finally in town!", "album_id": "72157624786772363", "photo_flickr_id": "4971028220", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41200", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fair was finally in town !", "storylet_id": "206000"}], [{"original_text": "And, the Llama returned to much chagrin.", "album_id": "72157624786772363", "photo_flickr_id": "4970976280", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41200", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and , the llama returned to much chagrin .", "storylet_id": "206001"}], [{"original_text": "They brought the large ferris wheel and we enjoyed the ride...", "album_id": "72157624786772363", "photo_flickr_id": "4970986830", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41200", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they brought the large ferris wheel and we enjoyed the ride ...", "storylet_id": "206002"}], [{"original_text": "However, the cloud was incredibly weird.", "album_id": "72157624786772363", "photo_flickr_id": "4971093252", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41200", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "however , the cloud was incredibly weird .", "storylet_id": "206003"}], [{"original_text": "So, we left and rode the swings and called it a night.", "album_id": "72157624786772363", "photo_flickr_id": "4970665845", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41200", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so , we left and rode the swings and called it a night .", "storylet_id": "206004"}], [{"original_text": "As we began the day at the fare the high school band played us in.", "album_id": "72157624786772363", "photo_flickr_id": "4971069282", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41201", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as we began the day at the fare the high school band played us in .", "storylet_id": "206005"}], [{"original_text": "My parents join together for a family photo before embarking on our fun afternoon.", "album_id": "72157624786772363", "photo_flickr_id": "4970965424", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41201", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my parents join together for a family photo before embarking on our fun afternoon .", "storylet_id": "206006"}], [{"original_text": "As I wait in line to pet the goats my daughter Rebecca seems unsure if they like her or not.", "album_id": "72157624786772363", "photo_flickr_id": "4970359257", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41201", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as i wait in line to pet the goats my daughter [female] seems unsure if they like her or not .", "storylet_id": "206007"}], [{"original_text": "As I approach the goats I run into this clown statue that seems a little to happy.", "album_id": "72157624786772363", "photo_flickr_id": "4971093252", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41201", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as i approach the goats i run into this clown statue that seems a little to happy .", "storylet_id": "206008"}], [{"original_text": "Before long it's night time at the fare and it's lite up like the forth of July. ", "album_id": "72157624786772363", "photo_flickr_id": "4970660841", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41201", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before long it 's night time at the fare and it 's lite up like the forth of july .", "storylet_id": "206009"}], [{"original_text": "The line into the fair was very long.", "album_id": "72157624786772363", "photo_flickr_id": "4971028220", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41202", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the line into the fair was very long .", "storylet_id": "206010"}], [{"original_text": "They had a llama.", "album_id": "72157624786772363", "photo_flickr_id": "4970976280", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41202", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a llama .", "storylet_id": "206011"}], [{"original_text": "The rides were amazing but standard.", "album_id": "72157624786772363", "photo_flickr_id": "4970986830", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41202", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the rides were amazing but standard .", "storylet_id": "206012"}], [{"original_text": "I found the sculpture of the clown scary.", "album_id": "72157624786772363", "photo_flickr_id": "4971093252", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41202", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i found the sculpture of the clown scary .", "storylet_id": "206013"}], [{"original_text": "At night, the rides were lit up.", "album_id": "72157624786772363", "photo_flickr_id": "4970665845", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41202", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night , the rides were lit up .", "storylet_id": "206014"}], [{"original_text": "Our downtown high school parade was today, featuring this girl.", "album_id": "72157624786772363", "photo_flickr_id": "4971028220", "setting": "last-3-pick-old-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "41203", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our downtown high school parade was today , featuring this girl .", "storylet_id": "206015"}], [{"original_text": "The parade also brought animals, such as this llama. ", "album_id": "72157624786772363", "photo_flickr_id": "4970976280", "setting": "last-3-pick-old-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "41203", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the parade also brought animals , such as this llama .", "storylet_id": "206016"}], [{"original_text": "There was also a fair and rides for the kids.", "album_id": "72157624786772363", "photo_flickr_id": "4970986830", "setting": "last-3-pick-old-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "41203", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was also a fair and rides for the kids .", "storylet_id": "206017"}], [{"original_text": "One of the booths at the fair was kind of creepy, so we moved on.", "album_id": "72157624786772363", "photo_flickr_id": "4971093252", "setting": "last-3-pick-old-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "41203", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the booths at the fair was kind of creepy , so we moved on .", "storylet_id": "206018"}], [{"original_text": "At night, the rides were lit up and beautiful. Not bad!", "album_id": "72157624786772363", "photo_flickr_id": "4970665845", "setting": "last-3-pick-old-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "41203", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night , the rides were lit up and beautiful . not bad !", "storylet_id": "206019"}], [{"original_text": "This girl is happy and beautiful!", "album_id": "72157624786772363", "photo_flickr_id": "4971028220", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41204", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this girl is happy and beautiful !", "storylet_id": "206020"}], [{"original_text": "This llama looks crazy!", "album_id": "72157624786772363", "photo_flickr_id": "4970976280", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41204", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this llama looks crazy !", "storylet_id": "206021"}], [{"original_text": "What a great time at the fair!", "album_id": "72157624786772363", "photo_flickr_id": "4970986830", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41204", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what a great time at the fair !", "storylet_id": "206022"}], [{"original_text": "This clown is so funny and entertaining!", "album_id": "72157624786772363", "photo_flickr_id": "4971093252", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41204", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this clown is so funny and entertaining !", "storylet_id": "206023"}], [{"original_text": "What a beautiful and lit up sight!", "album_id": "72157624786772363", "photo_flickr_id": "4970665845", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41204", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what a beautiful and lit up sight !", "storylet_id": "206024"}], [{"original_text": "The city is fascinating place.", "album_id": "72157624561489565", "photo_flickr_id": "4875515936", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41205", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city is fascinating place .", "storylet_id": "206025"}], [{"original_text": "We stopped and got the best hot dogs.", "album_id": "72157624561489565", "photo_flickr_id": "4874720535", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41205", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped and got the best hot dogs .", "storylet_id": "206026"}], [{"original_text": "There were many tall buildings.", "album_id": "72157624561489565", "photo_flickr_id": "4875328420", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41205", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many tall buildings .", "storylet_id": "206027"}], [{"original_text": "We got a ride in pedi cab. ", "album_id": "72157624561489565", "photo_flickr_id": "4875329484", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41205", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got a ride in pedi cab .", "storylet_id": "206028"}], [{"original_text": "And then took a ride in a taxi cab.", "album_id": "72157624561489565", "photo_flickr_id": "4874647961", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41205", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then took a ride in a taxi cab .", "storylet_id": "206029"}], [{"original_text": "We were very excited for our trip to New York city.", "album_id": "72157624561489565", "photo_flickr_id": "4875328420", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "41206", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were very excited for our trip to location location city .", "storylet_id": "206030"}], [{"original_text": "We walked around and the streets were bustling with sellers peddling their wares. ", "album_id": "72157624561489565", "photo_flickr_id": "4875515936", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "41206", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we walked around and the streets were bustling with sellers peddling their wares .", "storylet_id": "206031"}], [{"original_text": "We stopped at a monument and made sure to take lots of photos together.", "album_id": "72157624561489565", "photo_flickr_id": "4874721689", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "41206", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stopped at a monument and made sure to take lots of photos together .", "storylet_id": "206032"}], [{"original_text": "We were hungry so we stopped for lunch at a street food car.", "album_id": "72157624561489565", "photo_flickr_id": "4874720535", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "41206", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were hungry so we stopped for lunch at a street food car .", "storylet_id": "206033"}], [{"original_text": "We saw all sorts of unique signs but this national debt sign was our favorite. The trip was just amazing! ", "album_id": "72157624561489565", "photo_flickr_id": "4875255982", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "41206", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we saw all sorts of unique signs but this national debt sign was our favorite . the trip was just amazing !", "storylet_id": "206034"}], [{"original_text": "On our vacation we saw a lot of different buildings.", "album_id": "72157624561489565", "photo_flickr_id": "4875328420", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41207", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our vacation we saw a lot of different buildings .", "storylet_id": "206035"}], [{"original_text": "People have their businesses outside on nice days.", "album_id": "72157624561489565", "photo_flickr_id": "4875515936", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41207", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people have their businesses outside on nice days .", "storylet_id": "206036"}], [{"original_text": "Here is a guy that was famous in the town. They have a memorial in his memory.", "album_id": "72157624561489565", "photo_flickr_id": "4874721689", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41207", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is a guy that was famous in the town . they have a memorial in his memory .", "storylet_id": "206037"}], [{"original_text": "They are also hot dog stands everywhere.", "album_id": "72157624561489565", "photo_flickr_id": "4874720535", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41207", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they are also hot dog stands everywhere .", "storylet_id": "206038"}], [{"original_text": "Look at the national debt keep climbing, won't be long they'll need a bigger board.", "album_id": "72157624561489565", "photo_flickr_id": "4875255982", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41207", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "look at the national debt keep climbing , wo n't be long they 'll need a bigger board .", "storylet_id": "206039"}], [{"original_text": "Being from the country, we weren't used to buildings like this.", "album_id": "72157624561489565", "photo_flickr_id": "4875328420", "setting": "last-3-pick-old-and-tell", "worker_id": "PFE1D8HO1B73ZE1", "story_id": "41208", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "being from the country , we were n't used to buildings like this .", "storylet_id": "206040"}], [{"original_text": "It seemed strange that people were just selling things on the street.", "album_id": "72157624561489565", "photo_flickr_id": "4875515936", "setting": "last-3-pick-old-and-tell", "worker_id": "PFE1D8HO1B73ZE1", "story_id": "41208", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it seemed strange that people were just selling things on the street .", "storylet_id": "206041"}], [{"original_text": "We made sure to stop by and see some history.", "album_id": "72157624561489565", "photo_flickr_id": "4874721689", "setting": "last-3-pick-old-and-tell", "worker_id": "PFE1D8HO1B73ZE1", "story_id": "41208", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we made sure to stop by and see some history .", "storylet_id": "206042"}], [{"original_text": "We even took in some of the local food.", "album_id": "72157624561489565", "photo_flickr_id": "4874720535", "setting": "last-3-pick-old-and-tell", "worker_id": "PFE1D8HO1B73ZE1", "story_id": "41208", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even took in some of the local food .", "storylet_id": "206043"}], [{"original_text": "Some sights were less pleasant than others.", "album_id": "72157624561489565", "photo_flickr_id": "4875255982", "setting": "last-3-pick-old-and-tell", "worker_id": "PFE1D8HO1B73ZE1", "story_id": "41208", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some sights were less pleasant than others .", "storylet_id": "206044"}], [{"original_text": "We got to the big city and checked out all the sales.", "album_id": "72157624561489565", "photo_flickr_id": "4875515936", "setting": "last-3-pick-old-and-tell", "worker_id": "UMQ0H39B1O5LTA7", "story_id": "41209", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got to the big city and checked out all the sales .", "storylet_id": "206045"}], [{"original_text": "We wanted lunch so we checked out some food trucks.", "album_id": "72157624561489565", "photo_flickr_id": "4874720535", "setting": "last-3-pick-old-and-tell", "worker_id": "UMQ0H39B1O5LTA7", "story_id": "41209", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we wanted lunch so we checked out some food trucks .", "storylet_id": "206046"}], [{"original_text": "We took a look at all the enormous skyscrapers.", "album_id": "72157624561489565", "photo_flickr_id": "4875328420", "setting": "last-3-pick-old-and-tell", "worker_id": "UMQ0H39B1O5LTA7", "story_id": "41209", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took a look at all the enormous skyscrapers .", "storylet_id": "206047"}], [{"original_text": "We even road in a bicycle cab.", "album_id": "72157624561489565", "photo_flickr_id": "4875329484", "setting": "last-3-pick-old-and-tell", "worker_id": "UMQ0H39B1O5LTA7", "story_id": "41209", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even road in a bicycle cab .", "storylet_id": "206048"}], [{"original_text": "A man reads the paper while waiting for his cab in NYC.", "album_id": "72157624561489565", "photo_flickr_id": "4874647961", "setting": "last-3-pick-old-and-tell", "worker_id": "UMQ0H39B1O5LTA7", "story_id": "41209", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a man reads the paper while waiting for his cab in nyc .", "storylet_id": "206049"}], [{"original_text": "My trip to cheddar bay! The weather was cloudy and miserable yesterday. ", "album_id": "72157594581684061", "photo_flickr_id": "417241930", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41210", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my trip to cheddar bay ! the weather was cloudy and miserable yesterday .", "storylet_id": "206050"}], [{"original_text": "Walking around the large streets I came across this cool clock. It was so big. ", "album_id": "72157594581684061", "photo_flickr_id": "417245400", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41210", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "walking around the large streets i came across this cool clock . it was so big .", "storylet_id": "206051"}], [{"original_text": "I wandered into the town square. This is where I tried to take a selfie and slipped and fell on my butt. That woman with the umbrella laughed at me and farted. ", "album_id": "72157594581684061", "photo_flickr_id": "417246090", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41210", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i wandered into the town square . this is where i tried to take a selfie and slipped and fell on my butt . that woman with the umbrella laughed at me and farted .", "storylet_id": "206052"}], [{"original_text": "I found a melon stand and bought 5 cantaloupes!! I didn't know where to put them!! ", "album_id": "72157594581684061", "photo_flickr_id": "417247617", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41210", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i found a melon stand and bought 5 cantaloupes ! ! i did n't know where to put them ! !", "storylet_id": "206053"}], [{"original_text": "After walking for 3 hours holding 5 cantaloupes I saw this really cool ferris wheel. I wanted to ride it but due to the weather it was shut down. I took my cantaloupes and went home. ", "album_id": "72157594581684061", "photo_flickr_id": "417248924", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41210", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after walking for 3 hours holding 5 cantaloupes i saw this really cool ferris wheel . i wanted to ride it but due to the weather it was shut down . i took my cantaloupes and went home .", "storylet_id": "206054"}], [{"original_text": "A rainy day in a city.", "album_id": "72157594581684061", "photo_flickr_id": "417242247", "setting": "first-2-pick-and-tell", "worker_id": "F1M0F48F3E4J0WA", "story_id": "41211", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a rainy day in a city .", "storylet_id": "206055"}], [{"original_text": "A big building on a rainy day.", "album_id": "72157594581684061", "photo_flickr_id": "417242558", "setting": "first-2-pick-and-tell", "worker_id": "F1M0F48F3E4J0WA", "story_id": "41211", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a big building on a rainy day .", "storylet_id": "206056"}], [{"original_text": "People going into a building.", "album_id": "72157594581684061", "photo_flickr_id": "417242866", "setting": "first-2-pick-and-tell", "worker_id": "F1M0F48F3E4J0WA", "story_id": "41211", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people going into a building .", "storylet_id": "206057"}], [{"original_text": "A big party in a big building.", "album_id": "72157594581684061", "photo_flickr_id": "417243985", "setting": "first-2-pick-and-tell", "worker_id": "F1M0F48F3E4J0WA", "story_id": "41211", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a big party in a big building .", "storylet_id": "206058"}], [{"original_text": "A big place with tables of food.", "album_id": "72157594581684061", "photo_flickr_id": "417244261", "setting": "first-2-pick-and-tell", "worker_id": "F1M0F48F3E4J0WA", "story_id": "41211", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a big place with tables of food .", "storylet_id": "206059"}], [{"original_text": "So nice to finally get away for awhile, even if it is a working getaway.", "album_id": "72157594581684061", "photo_flickr_id": "417242247", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "41212", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so nice to finally get away for awhile , even if it is a working getaway .", "storylet_id": "206060"}], [{"original_text": "The meeting was held on the second floor here.", "album_id": "72157594581684061", "photo_flickr_id": "417242558", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "41212", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the meeting was held on the second floor here .", "storylet_id": "206061"}], [{"original_text": "The rain did not deter us any, go team!", "album_id": "72157594581684061", "photo_flickr_id": "417242866", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "41212", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the rain did not deter us any , go team !", "storylet_id": "206062"}], [{"original_text": "After the meeting, they treated us to a delicious banquet!", "album_id": "72157594581684061", "photo_flickr_id": "417243985", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "41212", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the meeting , they treated us to a delicious banquet !", "storylet_id": "206063"}], [{"original_text": "Then individual group brain storming sessions before loading up to go home.", "album_id": "72157594581684061", "photo_flickr_id": "417244261", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "41212", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then individual group brain storming sessions before loading up to go home .", "storylet_id": "206064"}], [{"original_text": "Our tour of the city started with the bridge.", "album_id": "72157594581684061", "photo_flickr_id": "417241930", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "41213", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our tour of the city started with the bridge .", "storylet_id": "206065"}], [{"original_text": "The town clock tower was the second stop.", "album_id": "72157594581684061", "photo_flickr_id": "417245400", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "41213", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the town clock tower was the second stop .", "storylet_id": "206066"}], [{"original_text": "The replica of the lighthouse could have been turned on as it was overcast.", "album_id": "72157594581684061", "photo_flickr_id": "417246090", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "41213", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the replica of the lighthouse could have been turned on as it was overcast .", "storylet_id": "206067"}], [{"original_text": "We stopped at the farmers market to see the sale items.", "album_id": "72157594581684061", "photo_flickr_id": "417247617", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "41213", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped at the farmers market to see the sale items .", "storylet_id": "206068"}], [{"original_text": "The last stop was the famous ferris wheel.", "album_id": "72157594581684061", "photo_flickr_id": "417248924", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "41213", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last stop was the famous ferris wheel .", "storylet_id": "206069"}], [{"original_text": "It was an overcast day on the canal. ", "album_id": "72157594581684061", "photo_flickr_id": "417242247", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41214", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was an overcast day on the canal .", "storylet_id": "206070"}], [{"original_text": "Everybody who was out had an umbrella to stay dry. ", "album_id": "72157594581684061", "photo_flickr_id": "417242558", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41214", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everybody who was out had an umbrella to stay dry .", "storylet_id": "206071"}], [{"original_text": "People filtered into the building to escape the rain. ", "album_id": "72157594581684061", "photo_flickr_id": "417242866", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41214", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people filtered into the building to escape the rain .", "storylet_id": "206072"}], [{"original_text": "Their destination was a bazaar and exposition. ", "album_id": "72157594581684061", "photo_flickr_id": "417243985", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41214", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their destination was a bazaar and exposition .", "storylet_id": "206073"}], [{"original_text": "The majestic rooms of the building made everyone forget the weather outside. ", "album_id": "72157594581684061", "photo_flickr_id": "417244261", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41214", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the majestic rooms of the building made everyone forget the weather outside .", "storylet_id": "206074"}], [{"original_text": "Saturday we went to a carnival.", "album_id": "437931", "photo_flickr_id": "18540720", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41215", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "saturday we went to a carnival .", "storylet_id": "206075"}], [{"original_text": "They had lots of different food vendors there.", "album_id": "437931", "photo_flickr_id": "18541381", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41215", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had lots of different food vendors there .", "storylet_id": "206076"}], [{"original_text": "We got to ride the Ferris Wheel.", "album_id": "437931", "photo_flickr_id": "18541150", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41215", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got to ride the organization organization .", "storylet_id": "206077"}], [{"original_text": "We also played lots of games.", "album_id": "437931", "photo_flickr_id": "18541185", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41215", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also played lots of games .", "storylet_id": "206078"}], [{"original_text": "At the end of the day we stopped at a grill to get something to eat.", "album_id": "437931", "photo_flickr_id": "18541901", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41215", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day we stopped at a grill to get something to eat .", "storylet_id": "206079"}], [{"original_text": "Today after church we decided to go to the park.", "album_id": "437931", "photo_flickr_id": "18541342", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41216", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today after church we decided to go to the park .", "storylet_id": "206080"}], [{"original_text": "We got really hungry and decided to get some food first.", "album_id": "437931", "photo_flickr_id": "18541381", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41216", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got really hungry and decided to get some food first .", "storylet_id": "206081"}], [{"original_text": "Then Bradley wanted to go to the game shop to buy a new game", "album_id": "437931", "photo_flickr_id": "18541185", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41216", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then [male] wanted to go to the game shop to buy a new game", "storylet_id": "206082"}], [{"original_text": "We finally made it to the park! But due to all the detours the park was closed.", "album_id": "437931", "photo_flickr_id": "18541120", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41216", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we finally made it to the park ! but due to all the detours the park was closed .", "storylet_id": "206083"}], [{"original_text": "It's okay though! We are going to the park tomorrow instead.", "album_id": "437931", "photo_flickr_id": "18541579", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41216", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's okay though ! we are going to the park tomorrow instead .", "storylet_id": "206084"}], [{"original_text": "The state fair came to town today and everyone is enjoying the fun.", "album_id": "437931", "photo_flickr_id": "18540720", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41217", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the state fair came to town today and everyone is enjoying the fun .", "storylet_id": "206085"}], [{"original_text": "The Italian sausages are always a big hit.The food fair is one of the best parts of the event.", "album_id": "437931", "photo_flickr_id": "18541381", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41217", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the italian sausages are always a big hit.the food fair is one of the best parts of the event .", "storylet_id": "206086"}], [{"original_text": "Lights from the fair rides light up the night. The ferris wheel added a sense of time less amusement.", "album_id": "437931", "photo_flickr_id": "18541150", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41217", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lights from the fair rides light up the night . the ferris wheel added a sense of time less amusement .", "storylet_id": "206087"}], [{"original_text": "Of course playing the fair games and winning the prizes is always fun.", "album_id": "437931", "photo_flickr_id": "18541185", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41217", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course playing the fair games and winning the prizes is always fun .", "storylet_id": "206088"}], [{"original_text": "The night ended with the smell of tempting foods and music in the air.", "album_id": "437931", "photo_flickr_id": "18541901", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41217", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night ended with the smell of tempting foods and music in the air .", "storylet_id": "206089"}], [{"original_text": "This family loves to go to Coney Island.", "album_id": "437931", "photo_flickr_id": "18540720", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "41218", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this family loves to go to location location .", "storylet_id": "206090"}], [{"original_text": "They always eat Italian Sausage sandwiches for lunch,", "album_id": "437931", "photo_flickr_id": "18541381", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "41218", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they always eat italian sausage sandwiches for lunch ,", "storylet_id": "206091"}], [{"original_text": "ride the Ferris wheel,", "album_id": "437931", "photo_flickr_id": "18541150", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "41218", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "ride the ferris wheel ,", "storylet_id": "206092"}], [{"original_text": "and play games when they go.", "album_id": "437931", "photo_flickr_id": "18541185", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "41218", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and play games when they go .", "storylet_id": "206093"}], [{"original_text": "Sometimes they even stop for supper at the Grill House.", "album_id": "437931", "photo_flickr_id": "18541901", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "41218", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sometimes they even stop for supper at the organization organization .", "storylet_id": "206094"}], [{"original_text": "Family first time in amusement park.", "album_id": "437931", "photo_flickr_id": "18540720", "setting": "last-3-pick-old-and-tell", "worker_id": "3JDWK1C8JVSTTER", "story_id": "41219", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family first time in amusement park .", "storylet_id": "206095"}], [{"original_text": "Nice food to eat by the park after long walk", "album_id": "437931", "photo_flickr_id": "18541381", "setting": "last-3-pick-old-and-tell", "worker_id": "3JDWK1C8JVSTTER", "story_id": "41219", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "nice food to eat by the park after long walk", "storylet_id": "206096"}], [{"original_text": "Scary ride on the sky wheel ", "album_id": "437931", "photo_flickr_id": "18541150", "setting": "last-3-pick-old-and-tell", "worker_id": "3JDWK1C8JVSTTER", "story_id": "41219", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "scary ride on the sky wheel", "storylet_id": "206097"}], [{"original_text": "We won a stuff toy from this game store", "album_id": "437931", "photo_flickr_id": "18541185", "setting": "last-3-pick-old-and-tell", "worker_id": "3JDWK1C8JVSTTER", "story_id": "41219", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we won a stuff toy from this game store", "storylet_id": "206098"}], [{"original_text": "Walking by the food stands and restaurant.", "album_id": "437931", "photo_flickr_id": "18541901", "setting": "last-3-pick-old-and-tell", "worker_id": "3JDWK1C8JVSTTER", "story_id": "41219", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "walking by the food stands and restaurant .", "storylet_id": "206099"}], [{"original_text": "the best vacation spot ever, if you want to visit a carnival.", "album_id": "72157624123266255", "photo_flickr_id": "4688728771", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41220", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the best vacation spot ever , if you want to visit a carnival .", "storylet_id": "206100"}], [{"original_text": "this famous bridge, you must cross to enter the fun zone. ", "album_id": "72157624123266255", "photo_flickr_id": "4689363990", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41220", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this famous bridge , you must cross to enter the fun zone .", "storylet_id": "206101"}], [{"original_text": "our brightly lit face will welcome you into the park.", "album_id": "72157624123266255", "photo_flickr_id": "4689364590", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41220", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our brightly lit face will welcome you into the park .", "storylet_id": "206102"}], [{"original_text": "the next things you will see is an enormous Ferris wheel for only the brave!", "album_id": "72157624123266255", "photo_flickr_id": "4689366436", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41220", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next things you will see is an enormous ferris wheel for only the brave !", "storylet_id": "206103"}], [{"original_text": "Enter if you dare to see lions, tigers, and bears. Oh My! ", "album_id": "72157624123266255", "photo_flickr_id": "4688734343", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41220", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "enter if you dare to see lions , tigers , and bears . oh my !", "storylet_id": "206104"}], [{"original_text": "Everyone said that when we were in Sydney, we had to go by Luna park. ", "album_id": "72157624123266255", "photo_flickr_id": "4688730871", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "41221", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone said that when we were in location , we had to go by [female] park .", "storylet_id": "206105"}], [{"original_text": "So we did, and man, is Luna Park Sydney weird. The gate itself is enough to freak you out. ", "album_id": "72157624123266255", "photo_flickr_id": "4689364590", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "41221", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so we did , and man , is location location location weird . the gate itself is enough to freak you out .", "storylet_id": "206106"}], [{"original_text": "But once you get through, it's a great park. ", "album_id": "72157624123266255", "photo_flickr_id": "4689366436", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "41221", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but once you get through , it 's a great park .", "storylet_id": "206107"}], [{"original_text": "And even though it's in Australia. it reminds me of parks in the USA. ", "album_id": "72157624123266255", "photo_flickr_id": "4688734343", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "41221", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and even though it 's in location . it reminds me of parks in the location .", "storylet_id": "206108"}], [{"original_text": "Actually though I was kinda glad to get out of there and take a walk down by the pier to chill out. ", "album_id": "72157624123266255", "photo_flickr_id": "4688735041", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "41221", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "actually though i was kinda glad to get out of there and take a walk down by the pier to chill out .", "storylet_id": "206109"}], [{"original_text": "The night sky is really remarkable when lit by the city.", "album_id": "72157624123266255", "photo_flickr_id": "4688728771", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41222", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the night sky is really remarkable when lit by the city .", "storylet_id": "206110"}], [{"original_text": "The bridge also has a wonderful lighting layout.", "album_id": "72157624123266255", "photo_flickr_id": "4689363990", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41222", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bridge also has a wonderful lighting layout .", "storylet_id": "206111"}], [{"original_text": "I was a bit scared by the entrance to the circus.", "album_id": "72157624123266255", "photo_flickr_id": "4689364590", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41222", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was a bit scared by the entrance to the circus .", "storylet_id": "206112"}], [{"original_text": "Up close, I really enjoyed the work of the artist.", "album_id": "72157624123266255", "photo_flickr_id": "4689366436", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41222", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "up close , i really enjoyed the work of the artist .", "storylet_id": "206113"}], [{"original_text": "The buildings were decorated a bit in this neighborhood.", "album_id": "72157624123266255", "photo_flickr_id": "4688734343", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41222", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the buildings were decorated a bit in this neighborhood .", "storylet_id": "206114"}], [{"original_text": "Night city lights were amazing and was reflected off the river below.", "album_id": "72157624123266255", "photo_flickr_id": "4688728771", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41223", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "night city lights were amazing and was reflected off the river below .", "storylet_id": "206115"}], [{"original_text": "The bridge leading into town was also lit up.", "album_id": "72157624123266255", "photo_flickr_id": "4689363990", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41223", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bridge leading into town was also lit up .", "storylet_id": "206116"}], [{"original_text": "I turned around and started my way into the fairground. It had giant face at the front of the entrance.", "album_id": "72157624123266255", "photo_flickr_id": "4689364590", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41223", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i turned around and started my way into the fairground . it had giant face at the front of the entrance .", "storylet_id": "206117"}], [{"original_text": "It looked really scary at night.", "album_id": "72157624123266255", "photo_flickr_id": "4689366436", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41223", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looked really scary at night .", "storylet_id": "206118"}], [{"original_text": "Inside, it had really old attractions from the 50's.", "album_id": "72157624123266255", "photo_flickr_id": "4688734343", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41223", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "inside , it had really old attractions from the 50 's .", "storylet_id": "206119"}], [{"original_text": "I love viewing the lights at night.", "album_id": "72157624123266255", "photo_flickr_id": "4688728771", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41224", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love viewing the lights at night .", "storylet_id": "206120"}], [{"original_text": "This was actually a very calming scene.", "album_id": "72157624123266255", "photo_flickr_id": "4689363990", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41224", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was actually a very calming scene .", "storylet_id": "206121"}], [{"original_text": "This, however, scared me a bit.", "album_id": "72157624123266255", "photo_flickr_id": "4689364590", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41224", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this , however , scared me a bit .", "storylet_id": "206122"}], [{"original_text": "It didn't seem very inviting to me.", "album_id": "72157624123266255", "photo_flickr_id": "4689366436", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41224", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it did n't seem very inviting to me .", "storylet_id": "206123"}], [{"original_text": "This was the perfect way to calm down.", "album_id": "72157624123266255", "photo_flickr_id": "4688734343", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41224", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the perfect way to calm down .", "storylet_id": "206124"}], [{"original_text": "I went to a concert last night.", "album_id": "72157624801640073", "photo_flickr_id": "4979646846", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41225", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a concert last night .", "storylet_id": "206125"}], [{"original_text": "The band playing was jamming a good tune.", "album_id": "72157624801640073", "photo_flickr_id": "4979031959", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41225", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the band playing was jamming a good tune .", "storylet_id": "206126"}], [{"original_text": "The singer of the other band was great.", "album_id": "72157624801640073", "photo_flickr_id": "4977794262", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41225", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the singer of the other band was great .", "storylet_id": "206127"}], [{"original_text": "The men on the drum set were very talented.", "album_id": "72157624801640073", "photo_flickr_id": "4977778194", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41225", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the men on the drum set were very talented .", "storylet_id": "206128"}], [{"original_text": "I felt very entertained by this band.", "album_id": "72157624801640073", "photo_flickr_id": "4977165603", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41225", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i felt very entertained by this band .", "storylet_id": "206129"}], [{"original_text": "The band was playing their first concert.", "album_id": "72157624801640073", "photo_flickr_id": "4977765182", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41226", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the band was playing their first concert .", "storylet_id": "206130"}], [{"original_text": "The lead singer had never been in front of a crown before.", "album_id": "72157624801640073", "photo_flickr_id": "4977794262", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41226", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lead singer had never been in front of a crown before .", "storylet_id": "206131"}], [{"original_text": "The background singer sang his best. ", "album_id": "72157624801640073", "photo_flickr_id": "4977177451", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41226", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the background singer sang his best .", "storylet_id": "206132"}], [{"original_text": "The bass player kept the jam going.", "album_id": "72157624801640073", "photo_flickr_id": "4977788472", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41226", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bass player kept the jam going .", "storylet_id": "206133"}], [{"original_text": "Everyone in the band had fun at their first concert.", "album_id": "72157624801640073", "photo_flickr_id": "4977160507", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41226", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone in the band had fun at their first concert .", "storylet_id": "206134"}], [{"original_text": "The local town band starts doing mic checks to test out the equipment.", "album_id": "72157624801640073", "photo_flickr_id": "4979646846", "setting": "last-3-pick-old-and-tell", "worker_id": "GY6UBD644ZFRUG3", "story_id": "41227", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the local town band starts doing mic checks to test out the equipment .", "storylet_id": "206135"}], [{"original_text": "The band starts playing as the singer starts singing.", "album_id": "72157624801640073", "photo_flickr_id": "4979031959", "setting": "last-3-pick-old-and-tell", "worker_id": "GY6UBD644ZFRUG3", "story_id": "41227", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the band starts playing as the singer starts singing .", "storylet_id": "206136"}], [{"original_text": "Now the singer is really into the performance and starts showing his vocal range.", "album_id": "72157624801640073", "photo_flickr_id": "4977794262", "setting": "last-3-pick-old-and-tell", "worker_id": "GY6UBD644ZFRUG3", "story_id": "41227", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now the singer is really into the performance and starts showing his vocal range .", "storylet_id": "206137"}], [{"original_text": "The drummer beats along to the music getting ready for his solo.", "album_id": "72157624801640073", "photo_flickr_id": "4977778194", "setting": "last-3-pick-old-and-tell", "worker_id": "GY6UBD644ZFRUG3", "story_id": "41227", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the drummer beats along to the music getting ready for his solo .", "storylet_id": "206138"}], [{"original_text": "The crowd cheers on the drummer as he goes off on his drum solo leaving the crowd happy.", "album_id": "72157624801640073", "photo_flickr_id": "4977165603", "setting": "last-3-pick-old-and-tell", "worker_id": "GY6UBD644ZFRUG3", "story_id": "41227", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the crowd cheers on the drummer as he goes off on his drum solo leaving the crowd happy .", "storylet_id": "206139"}], [{"original_text": "The band was excited and a bit anxious to start their first performance.", "album_id": "72157624801640073", "photo_flickr_id": "4979646846", "setting": "last-3-pick-old-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "41228", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the band was excited and a bit anxious to start their first performance .", "storylet_id": "206140"}], [{"original_text": "After a few mic checks and nervous introductions, the band got in position to play their favorite song.", "album_id": "72157624801640073", "photo_flickr_id": "4979031959", "setting": "last-3-pick-old-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "41228", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after a few mic checks and nervous introductions , the band got in position to play their favorite song .", "storylet_id": "206141"}], [{"original_text": "It was only a minute into the song when the lead singer got enough courage to really start giving his all in the performance.", "album_id": "72157624801640073", "photo_flickr_id": "4977794262", "setting": "last-3-pick-old-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "41228", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was only a minute into the song when the lead singer got enough courage to really start giving his all in the performance .", "storylet_id": "206142"}], [{"original_text": "Inspired by the singers enthusiasm, the drummer and bassist both got really into the song and played harder.", "album_id": "72157624801640073", "photo_flickr_id": "4977778194", "setting": "last-3-pick-old-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "41228", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "inspired by the singers enthusiasm , the drummer and bassist both got really into the song and played harder .", "storylet_id": "206143"}], [{"original_text": "The drummer may have gone overboard when he began to play a ten minute drum solo at the end of the band's performance.", "album_id": "72157624801640073", "photo_flickr_id": "4977165603", "setting": "last-3-pick-old-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "41228", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the drummer may have gone overboard when he began to play a ten minute drum solo at the end of the band 's performance .", "storylet_id": "206144"}], [{"original_text": "I went to a local concert today to support a small town band.", "album_id": "72157624801640073", "photo_flickr_id": "4979646846", "setting": "last-3-pick-old-and-tell", "worker_id": "PGYCTH7CZYT5RTN", "story_id": "41229", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a local concert today to support a small town band .", "storylet_id": "206145"}], [{"original_text": "I like them and have their first two albums.", "album_id": "72157624801640073", "photo_flickr_id": "4979031959", "setting": "last-3-pick-old-and-tell", "worker_id": "PGYCTH7CZYT5RTN", "story_id": "41229", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i like them and have their first two albums .", "storylet_id": "206146"}], [{"original_text": "Eddie is the lead singer, I went to high school with him.", "album_id": "72157624801640073", "photo_flickr_id": "4977794262", "setting": "last-3-pick-old-and-tell", "worker_id": "PGYCTH7CZYT5RTN", "story_id": "41229", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] is the lead singer , i went to high school with him .", "storylet_id": "206147"}], [{"original_text": "My buddy Mark is on the drums.", "album_id": "72157624801640073", "photo_flickr_id": "4977778194", "setting": "last-3-pick-old-and-tell", "worker_id": "PGYCTH7CZYT5RTN", "story_id": "41229", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my buddy [male] is on the drums .", "storylet_id": "206148"}], [{"original_text": "He has a killer drum set!", "album_id": "72157624801640073", "photo_flickr_id": "4977165603", "setting": "last-3-pick-old-and-tell", "worker_id": "PGYCTH7CZYT5RTN", "story_id": "41229", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he has a killer drum set !", "storylet_id": "206149"}], [{"original_text": "The fireworks show was spectacular.", "album_id": "72157624702740430", "photo_flickr_id": "4881961279", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41230", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fireworks show was spectacular .", "storylet_id": "206150"}], [{"original_text": "There were so many colors.", "album_id": "72157624702740430", "photo_flickr_id": "4881961407", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41230", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many colors .", "storylet_id": "206151"}], [{"original_text": "I had a great time watching.", "album_id": "72157624702740430", "photo_flickr_id": "4881962141", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41230", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time watching .", "storylet_id": "206152"}], [{"original_text": "Some were very unique.", "album_id": "72157624702740430", "photo_flickr_id": "4881962257", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41230", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some were very unique .", "storylet_id": "206153"}], [{"original_text": "Afterward we went back home.", "album_id": "72157624702740430", "photo_flickr_id": "4882568952", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41230", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we went back home .", "storylet_id": "206154"}], [{"original_text": "The firework show is very bright, some of the fireworks are bright red.", "album_id": "72157624702740430", "photo_flickr_id": "4881961179", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41231", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the firework show is very bright , some of the fireworks are bright red .", "storylet_id": "206155"}], [{"original_text": "Some fireworks go off at the same time and there are many fireworks in the sky.", "album_id": "72157624702740430", "photo_flickr_id": "4881961407", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41231", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some fireworks go off at the same time and there are many fireworks in the sky .", "storylet_id": "206156"}], [{"original_text": "There are also blue fireworks.", "album_id": "72157624702740430", "photo_flickr_id": "4881961501", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41231", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are also blue fireworks .", "storylet_id": "206157"}], [{"original_text": "Some of the prettiest fireworks are bright green.", "album_id": "72157624702740430", "photo_flickr_id": "4881962257", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41231", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the prettiest fireworks are bright green .", "storylet_id": "206158"}], [{"original_text": "Sometimes three fireworks can be seen in the sky. ", "album_id": "72157624702740430", "photo_flickr_id": "4881962769", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41231", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sometimes three fireworks can be seen in the sky .", "storylet_id": "206159"}], [{"original_text": "Who doesn't love fireworks? This one looks like a firey palm tree!", "album_id": "72157624702740430", "photo_flickr_id": "4881961279", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41232", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "who does n't love fireworks ? this one looks like a firey palm tree !", "storylet_id": "206160"}], [{"original_text": "Although beautiful, it's a bit scary when they fire off too close to the ground.", "album_id": "72157624702740430", "photo_flickr_id": "4881961407", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41232", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "although beautiful , it 's a bit scary when they fire off too close to the ground .", "storylet_id": "206161"}], [{"original_text": "This one reminds me of a Christmas ornament!", "album_id": "72157624702740430", "photo_flickr_id": "4881962141", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41232", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one reminds me of a christmas ornament !", "storylet_id": "206162"}], [{"original_text": "When they break apart, they look like little crawly bugs.", "album_id": "72157624702740430", "photo_flickr_id": "4881962257", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41232", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when they break apart , they look like little crawly bugs .", "storylet_id": "206163"}], [{"original_text": "The big red In Your Face fireworks are the best!", "album_id": "72157624702740430", "photo_flickr_id": "4882568952", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41232", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the big red in your face fireworks are the best !", "storylet_id": "206164"}], [{"original_text": "Last night's fireworks show blew me away. This red flower type burst was amazing. It filled the sky.", "album_id": "72157624702740430", "photo_flickr_id": "4881961179", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41233", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night 's fireworks show blew me away . this red flower type burst was amazing . it filled the sky .", "storylet_id": "206165"}], [{"original_text": "I liked these lower down dual color displays, too.", "album_id": "72157624702740430", "photo_flickr_id": "4881961407", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41233", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i liked these lower down dual color displays , too .", "storylet_id": "206166"}], [{"original_text": "This one looked like a big lolly pop in the sky.", "album_id": "72157624702740430", "photo_flickr_id": "4881961501", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41233", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one looked like a big lolly pop in the sky .", "storylet_id": "206167"}], [{"original_text": "This green one reminded me of trailing ivy.", "album_id": "72157624702740430", "photo_flickr_id": "4881962257", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41233", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this green one reminded me of trailing ivy .", "storylet_id": "206168"}], [{"original_text": "And these subtle bursts were great. It was a top notch show.", "album_id": "72157624702740430", "photo_flickr_id": "4881962769", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41233", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and these subtle bursts were great . it was a top notch show .", "storylet_id": "206169"}], [{"original_text": "Bursts of fire reminded the crowd of what the 4th was about.", "album_id": "72157624702740430", "photo_flickr_id": "4881961279", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41234", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "bursts of fire reminded the crowd of what the 4th was about .", "storylet_id": "206170"}], [{"original_text": "The explosions sounded like cannon explosions.", "album_id": "72157624702740430", "photo_flickr_id": "4881961407", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41234", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the explosions sounded like cannon explosions .", "storylet_id": "206171"}], [{"original_text": "Those explosions reminded people that battles has occurred to ensure their freedom.", "album_id": "72157624702740430", "photo_flickr_id": "4881962141", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41234", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "those explosions reminded people that battles has occurred to ensure their freedom .", "storylet_id": "206172"}], [{"original_text": "Small, quieter explosions seems almost somber given the context.", "album_id": "72157624702740430", "photo_flickr_id": "4881962257", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41234", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "small , quieter explosions seems almost somber given the context .", "storylet_id": "206173"}], [{"original_text": "A large final display reminded the crowd of the pride that the citizens of the USA had in their history.", "album_id": "72157624702740430", "photo_flickr_id": "4882568952", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41234", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a large final display reminded the crowd of the pride that the citizens of the location had in their history .", "storylet_id": "206174"}], [{"original_text": "This river is home to many wildlife.", "album_id": "72157625449982651", "photo_flickr_id": "5251078179", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41235", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this river is home to many wildlife .", "storylet_id": "206175"}], [{"original_text": "This stork lives at the river.", "album_id": "72157625449982651", "photo_flickr_id": "5251078569", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41235", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this stork lives at the river .", "storylet_id": "206176"}], [{"original_text": "Her entire family lives at the river.", "album_id": "72157625449982651", "photo_flickr_id": "5251683426", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41235", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her entire family lives at the river .", "storylet_id": "206177"}], [{"original_text": "They all live outside.", "album_id": "72157625449982651", "photo_flickr_id": "5251079453", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41235", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they all live outside .", "storylet_id": "206178"}], [{"original_text": "This stork loves her way of life outside. ", "album_id": "72157625449982651", "photo_flickr_id": "5251684240", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41235", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this stork loves her way of life outside .", "storylet_id": "206179"}], [{"original_text": "We decided to take the boat out on the water today, it was a nice day for boating. ", "album_id": "72157625449982651", "photo_flickr_id": "5251078179", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41236", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to take the boat out on the water today , it was a nice day for boating .", "storylet_id": "206180"}], [{"original_text": "This pelican I am convinced has ate alot, or pretty soon will be expecting some baby pelicans. ", "album_id": "72157625449982651", "photo_flickr_id": "5251078569", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41236", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this pelican i am convinced has ate alot , or pretty soon will be expecting some baby pelicans .", "storylet_id": "206181"}], [{"original_text": "This duck seems to be used to humans feeding it, as it walked right up to me when I had my hand full of bread. ", "album_id": "72157625449982651", "photo_flickr_id": "5251684590", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41236", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this duck seems to be used to humans feeding it , as it walked right up to me when i had my hand full of bread .", "storylet_id": "206182"}], [{"original_text": "As we sailed along, the view of the church was simply breathtaking. ", "album_id": "72157625449982651", "photo_flickr_id": "5251080649", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41236", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as we sailed along , the view of the church was simply breathtaking .", "storylet_id": "206183"}], [{"original_text": "The ferris wheel looked like it was going to touch the water. ", "album_id": "72157625449982651", "photo_flickr_id": "5251686832", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41236", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ferris wheel looked like it was going to touch the water .", "storylet_id": "206184"}], [{"original_text": "We took a lovely trip in the river while on vacation.", "album_id": "72157625449982651", "photo_flickr_id": "5251078179", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41237", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a lovely trip in the river while on vacation .", "storylet_id": "206185"}], [{"original_text": "We saw a bunch of different animals. Look at the long beck.", "album_id": "72157625449982651", "photo_flickr_id": "5251078569", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41237", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw a bunch of different animals . look at the long beck .", "storylet_id": "206186"}], [{"original_text": "A duck is sitting in the grass taking a rest.", "album_id": "72157625449982651", "photo_flickr_id": "5251684590", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41237", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a duck is sitting in the grass taking a rest .", "storylet_id": "206187"}], [{"original_text": "A lot of different looking buildings. They are beautiful. ", "album_id": "72157625449982651", "photo_flickr_id": "5251080649", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41237", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a lot of different looking buildings . they are beautiful .", "storylet_id": "206188"}], [{"original_text": "I loved the ferris wheel ride along side the river. You could also see the building wonderfully.", "album_id": "72157625449982651", "photo_flickr_id": "5251686832", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41237", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i loved the ferris wheel ride along side the river . you could also see the building wonderfully .", "storylet_id": "206189"}], [{"original_text": "Took a ride down the river over the weekend.", "album_id": "72157625449982651", "photo_flickr_id": "5251078179", "setting": "last-3-pick-old-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "41238", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "took a ride down the river over the weekend .", "storylet_id": "206190"}], [{"original_text": "While we were out we saw a bird sitting on a bank.", "album_id": "72157625449982651", "photo_flickr_id": "5251078569", "setting": "last-3-pick-old-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "41238", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while we were out we saw a bird sitting on a bank .", "storylet_id": "206191"}], [{"original_text": "Once we got closer we realized there were two birds.", "album_id": "72157625449982651", "photo_flickr_id": "5251683426", "setting": "last-3-pick-old-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "41238", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once we got closer we realized there were two birds .", "storylet_id": "206192"}], [{"original_text": "One was pink and was just sitting in the sand. We thought it might be hurt.", "album_id": "72157625449982651", "photo_flickr_id": "5251079453", "setting": "last-3-pick-old-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "41238", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one was pink and was just sitting in the sand . we thought it might be hurt .", "storylet_id": "206193"}], [{"original_text": "The other bird was more white and would not let us even get close to see if the other was injured or not.", "album_id": "72157625449982651", "photo_flickr_id": "5251684240", "setting": "last-3-pick-old-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "41238", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the other bird was more white and would not let us even get close to see if the other was injured or not .", "storylet_id": "206194"}], [{"original_text": "Today was the first day of our trip to England!", "album_id": "72157625449982651", "photo_flickr_id": "5251078179", "setting": "last-3-pick-old-and-tell", "worker_id": "PGYCTH7CZYT5RTN", "story_id": "41239", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the first day of our trip to location !", "storylet_id": "206195"}], [{"original_text": "We were able to get up close to the local wildlife.", "album_id": "72157625449982651", "photo_flickr_id": "5251078569", "setting": "last-3-pick-old-and-tell", "worker_id": "PGYCTH7CZYT5RTN", "story_id": "41239", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were able to get up close to the local wildlife .", "storylet_id": "206196"}], [{"original_text": "They have really interesting birds in England.", "album_id": "72157625449982651", "photo_flickr_id": "5251684590", "setting": "last-3-pick-old-and-tell", "worker_id": "PGYCTH7CZYT5RTN", "story_id": "41239", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they have really interesting birds in location .", "storylet_id": "206197"}], [{"original_text": "Afterwords we did a little sight seeing.", "album_id": "72157625449982651", "photo_flickr_id": "5251080649", "setting": "last-3-pick-old-and-tell", "worker_id": "PGYCTH7CZYT5RTN", "story_id": "41239", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwords we did a little sight seeing .", "storylet_id": "206198"}], [{"original_text": "We ended the day with a ride on the Ferris Wheel.", "album_id": "72157625449982651", "photo_flickr_id": "5251686832", "setting": "last-3-pick-old-and-tell", "worker_id": "PGYCTH7CZYT5RTN", "story_id": "41239", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the day with a ride on the organization organization .", "storylet_id": "206199"}], [{"original_text": "The day at Jersey Shore for the Jones' started with the Tilt-a-Whirl. ", "album_id": "446814", "photo_flickr_id": "18982793", "setting": "first-2-pick-and-tell", "worker_id": "IGOYP8FDG8YFVL3", "story_id": "41240", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day at location location for the jones ' started with the tilt-a-whirl .", "storylet_id": "206200"}], [{"original_text": "Next they went on the Cyclone, a famous coaster that set the dad's teeth on edge.", "album_id": "446814", "photo_flickr_id": "18982797", "setting": "first-2-pick-and-tell", "worker_id": "IGOYP8FDG8YFVL3", "story_id": "41240", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next they went on the cyclone , a famous coaster that set the dad 's teeth on edge .", "storylet_id": "206201"}], [{"original_text": "The kids begged to go on the drop dive, which delivers a sheer drop from 70 feet.", "album_id": "446814", "photo_flickr_id": "18983793", "setting": "first-2-pick-and-tell", "worker_id": "IGOYP8FDG8YFVL3", "story_id": "41240", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids begged to go on the drop dive , which delivers a sheer drop from 70 feet .", "storylet_id": "206202"}], [{"original_text": "Tired, they searched for a bathroom but all were out of order.", "album_id": "446814", "photo_flickr_id": "18984674", "setting": "first-2-pick-and-tell", "worker_id": "IGOYP8FDG8YFVL3", "story_id": "41240", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "tired , they searched for a bathroom but all were out of order .", "storylet_id": "206203"}], [{"original_text": "Finally, they found some public restrooms near the beach, and settled in for the afternoon.", "album_id": "446814", "photo_flickr_id": "18982794", "setting": "first-2-pick-and-tell", "worker_id": "IGOYP8FDG8YFVL3", "story_id": "41240", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , they found some public restrooms near the beach , and settled in for the afternoon .", "storylet_id": "206204"}], [{"original_text": "Today we took the family to Astroland park!", "album_id": "446814", "photo_flickr_id": "18982795", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "41241", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we took the family to location park !", "storylet_id": "206205"}], [{"original_text": "There was plenty of entertainment for the kids.", "album_id": "446814", "photo_flickr_id": "18983793", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "41241", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was plenty of entertainment for the kids .", "storylet_id": "206206"}], [{"original_text": "As well as some more grown up activities for the adults.", "album_id": "446814", "photo_flickr_id": "18983794", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "41241", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as well as some more grown up activities for the adults .", "storylet_id": "206207"}], [{"original_text": "The turn out was massive with thousands upon thousands of people.", "album_id": "446814", "photo_flickr_id": "18984677", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "41241", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the turn out was massive with thousands upon thousands of people .", "storylet_id": "206208"}], [{"original_text": "We ended the day with a nice dip in the ocean at the beach aross the street.", "album_id": "446814", "photo_flickr_id": "18982794", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "41241", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the day with a nice dip in the ocean at the beach aross the street .", "storylet_id": "206209"}], [{"original_text": "Today we went to Astroland park. A cool amusement park by the ocean.", "album_id": "446814", "photo_flickr_id": "18982795", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41242", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to location park . a cool amusement park by the ocean .", "storylet_id": "206210"}], [{"original_text": "The rides were fun. Groups of children had come to join in the festivities.", "album_id": "446814", "photo_flickr_id": "18983793", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41242", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rides were fun . groups of children had come to join in the festivities .", "storylet_id": "206211"}], [{"original_text": "There was also a freak show which was very interesting.", "album_id": "446814", "photo_flickr_id": "18983794", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41242", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was also a freak show which was very interesting .", "storylet_id": "206212"}], [{"original_text": "A lot of people crowded the beach. It was a hot day but cool by the water.", "album_id": "446814", "photo_flickr_id": "18984677", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41242", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a lot of people crowded the beach . it was a hot day but cool by the water .", "storylet_id": "206213"}], [{"original_text": "This was a great day.It will be remembered forever.", "album_id": "446814", "photo_flickr_id": "18982794", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41242", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was a great day.it will be remembered forever .", "storylet_id": "206214"}], [{"original_text": "I visited a theme park this summer.", "album_id": "446814", "photo_flickr_id": "18982795", "setting": "last-3-pick-old-and-tell", "worker_id": "9DVTRRG39HMPD0L", "story_id": "41243", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i visited a theme park this summer .", "storylet_id": "206215"}], [{"original_text": "They had some smaller thrill rides.", "album_id": "446814", "photo_flickr_id": "18983793", "setting": "last-3-pick-old-and-tell", "worker_id": "9DVTRRG39HMPD0L", "story_id": "41243", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had some smaller thrill rides .", "storylet_id": "206216"}], [{"original_text": "They also had some carnival games.", "album_id": "446814", "photo_flickr_id": "18983794", "setting": "last-3-pick-old-and-tell", "worker_id": "9DVTRRG39HMPD0L", "story_id": "41243", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also had some carnival games .", "storylet_id": "206217"}], [{"original_text": "The park was in a large city with many big buildings.", "album_id": "446814", "photo_flickr_id": "18984677", "setting": "last-3-pick-old-and-tell", "worker_id": "9DVTRRG39HMPD0L", "story_id": "41243", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the park was in a large city with many big buildings .", "storylet_id": "206218"}], [{"original_text": "It was also near a rather crowded beach.", "album_id": "446814", "photo_flickr_id": "18982794", "setting": "last-3-pick-old-and-tell", "worker_id": "9DVTRRG39HMPD0L", "story_id": "41243", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was also near a rather crowded beach .", "storylet_id": "206219"}], [{"original_text": "We started the day with my favorite ride.", "album_id": "446814", "photo_flickr_id": "18982793", "setting": "last-3-pick-old-and-tell", "worker_id": "5F7MBRZSAKX77KN", "story_id": "41244", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started the day with my favorite ride .", "storylet_id": "206220"}], [{"original_text": "I love roller coasters too.", "album_id": "446814", "photo_flickr_id": "18982797", "setting": "last-3-pick-old-and-tell", "worker_id": "5F7MBRZSAKX77KN", "story_id": "41244", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love roller coasters too .", "storylet_id": "206221"}], [{"original_text": "Sometimes we had to sit down & rest.", "album_id": "446814", "photo_flickr_id": "18983793", "setting": "last-3-pick-old-and-tell", "worker_id": "5F7MBRZSAKX77KN", "story_id": "41244", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sometimes we had to sit down & rest .", "storylet_id": "206222"}], [{"original_text": "We were not happy to see this sign.", "album_id": "446814", "photo_flickr_id": "18984674", "setting": "last-3-pick-old-and-tell", "worker_id": "5F7MBRZSAKX77KN", "story_id": "41244", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were not happy to see this sign .", "storylet_id": "206223"}], [{"original_text": "So it was off to the beach where we didn't need a bathroom & no one noticed.", "album_id": "446814", "photo_flickr_id": "18982794", "setting": "last-3-pick-old-and-tell", "worker_id": "5F7MBRZSAKX77KN", "story_id": "41244", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so it was off to the beach where we did n't need a bathroom & no one noticed .", "storylet_id": "206224"}], [{"original_text": "I had a great time at the beach.", "album_id": "72157625028749543", "photo_flickr_id": "5077458796", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41245", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the beach .", "storylet_id": "206225"}], [{"original_text": "There were a ton of people out on the beach walking around.", "album_id": "72157625028749543", "photo_flickr_id": "5077461574", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41245", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a ton of people out on the beach walking around .", "storylet_id": "206226"}], [{"original_text": "I went to a restaurant at night.", "album_id": "72157625028749543", "photo_flickr_id": "5077517338", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41245", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i went to a restaurant at night .", "storylet_id": "206227"}], [{"original_text": "Then I did a little shopping.", "album_id": "72157625028749543", "photo_flickr_id": "5076924955", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41245", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then i did a little shopping .", "storylet_id": "206228"}], [{"original_text": "I bought some sweets as well.", "album_id": "72157625028749543", "photo_flickr_id": "5077519552", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41245", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i bought some sweets as well .", "storylet_id": "206229"}], [{"original_text": "We had a great time on the 4th hanging with some friends out by the Santa Monica Pier. ", "album_id": "72157625028749543", "photo_flickr_id": "5077458796", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "41246", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great time on the 4th hanging with some friends out by the location location location .", "storylet_id": "206230"}], [{"original_text": "The pier was bustling with people, but we managed to go on a few of the rides. ", "album_id": "72157625028749543", "photo_flickr_id": "5076866495", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "41246", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pier was bustling with people , but we managed to go on a few of the rides .", "storylet_id": "206231"}], [{"original_text": "As you can imagine, the beach was a zoo, but it sure beat the valley heat. ", "album_id": "72157625028749543", "photo_flickr_id": "5077461574", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "41246", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as you can imagine , the beach was a zoo , but it sure beat the valley heat .", "storylet_id": "206232"}], [{"original_text": "Once the sun went down, everything cooled off, and soon the fireworks show began. ", "album_id": "72157625028749543", "photo_flickr_id": "5077515500", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "41246", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once the sun went down , everything cooled off , and soon the fireworks show began .", "storylet_id": "206233"}], [{"original_text": "The pier is also a really happening place for entertainment, and you'll always be sure to find many street performers. ", "album_id": "72157625028749543", "photo_flickr_id": "5077521512", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "41246", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the pier is also a really happening place for entertainment , and you 'll always be sure to find many street performers .", "storylet_id": "206234"}], [{"original_text": "I revisited places from my childhood. Like the bench that I sat on next to the beach as I listened to music.", "album_id": "72157625028749543", "photo_flickr_id": "5077458796", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41247", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i revisited places from my childhood . like the bench that i sat on next to the beach as i listened to music .", "storylet_id": "206235"}], [{"original_text": "There was the ferris wheel nearby, which I rode on so many times.", "album_id": "72157625028749543", "photo_flickr_id": "5076866495", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41247", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was the ferris wheel nearby , which i rode on so many times .", "storylet_id": "206236"}], [{"original_text": "I next went down to the beach and got my feet wet.", "album_id": "72157625028749543", "photo_flickr_id": "5077461574", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41247", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i next went down to the beach and got my feet wet .", "storylet_id": "206237"}], [{"original_text": "I returned to the bench and watched the sun set over the city skyline.", "album_id": "72157625028749543", "photo_flickr_id": "5077515500", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41247", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i returned to the bench and watched the sun set over the city skyline .", "storylet_id": "206238"}], [{"original_text": "I then went to work and started busking for a living.", "album_id": "72157625028749543", "photo_flickr_id": "5077521512", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41247", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i then went to work and started busking for a living .", "storylet_id": "206239"}], [{"original_text": "My day to start with some relaxing on a bench while enjoying the view.", "album_id": "72157625028749543", "photo_flickr_id": "5077458796", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41248", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my day to start with some relaxing on a bench while enjoying the view .", "storylet_id": "206240"}], [{"original_text": "Then I plan to go to the beach to relax some more.", "album_id": "72157625028749543", "photo_flickr_id": "5077461574", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41248", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then i plan to go to the beach to relax some more .", "storylet_id": "206241"}], [{"original_text": "Then we will head here for a nice quiet dinner.", "album_id": "72157625028749543", "photo_flickr_id": "5077517338", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41248", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we will head here for a nice quiet dinner .", "storylet_id": "206242"}], [{"original_text": "Followed by a little shopping.", "album_id": "72157625028749543", "photo_flickr_id": "5076924955", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41248", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "followed by a little shopping .", "storylet_id": "206243"}], [{"original_text": "Ending this great, relaxing day with a treat.", "album_id": "72157625028749543", "photo_flickr_id": "5077519552", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41248", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ending this great , relaxing day with a treat .", "storylet_id": "206244"}], [{"original_text": "The family took a nice trip to the beach.", "album_id": "72157625028749543", "photo_flickr_id": "5077458796", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "41249", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family took a nice trip to the beach .", "storylet_id": "206245"}], [{"original_text": "They saw an enormous Ferris Wheel.", "album_id": "72157625028749543", "photo_flickr_id": "5076866495", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "41249", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they saw an enormous organization organization .", "storylet_id": "206246"}], [{"original_text": "They even got to see all the people on the beach.", "album_id": "72157625028749543", "photo_flickr_id": "5077461574", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "41249", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even got to see all the people on the beach .", "storylet_id": "206247"}], [{"original_text": "When the sun fell, they could see the beautiful colors on the skyline.", "album_id": "72157625028749543", "photo_flickr_id": "5077515500", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "41249", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the sun fell , they could see the beautiful colors on the skyline .", "storylet_id": "206248"}], [{"original_text": "They traveled to the shops and thought about the great day they had.", "album_id": "72157625028749543", "photo_flickr_id": "5077521512", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "41249", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they traveled to the shops and thought about the great day they had .", "storylet_id": "206249"}], [{"original_text": "We took the train going anywhere. It was great.", "album_id": "72157624053396502", "photo_flickr_id": "4603685099", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "41250", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took the train going anywhere . it was great .", "storylet_id": "206250"}], [{"original_text": "The fountain square was neat to see up close.", "album_id": "72157624053396502", "photo_flickr_id": "4603683205", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "41250", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fountain square was neat to see up close .", "storylet_id": "206251"}], [{"original_text": "This dragon is on the side of the fountain. Off to another adventure.", "album_id": "72157624053396502", "photo_flickr_id": "4603679959", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "41250", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this dragon is on the side of the fountain . off to another adventure .", "storylet_id": "206252"}], [{"original_text": "Going to go tour this area and see what we can find.", "album_id": "72157624053396502", "photo_flickr_id": "4603682119", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "41250", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "going to go tour this area and see what we can find .", "storylet_id": "206253"}], [{"original_text": "This angel is overlooking the square. She's a little weird.", "album_id": "72157624053396502", "photo_flickr_id": "4606901935", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "41250", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this angel is overlooking the square . she 's a little weird .", "storylet_id": "206254"}], [{"original_text": "On my trip in Europe, we took the tram.", "album_id": "72157624053396502", "photo_flickr_id": "4603685099", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "41251", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on my trip in location , we took the tram .", "storylet_id": "206255"}], [{"original_text": "There were a lot of signs.", "album_id": "72157624053396502", "photo_flickr_id": "4604299420", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "41251", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of signs .", "storylet_id": "206256"}], [{"original_text": "In this city, we loved the statues!", "album_id": "72157624053396502", "photo_flickr_id": "4603684261", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "41251", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in this city , we loved the statues !", "storylet_id": "206257"}], [{"original_text": "The architecture was amazing, too.", "album_id": "72157624053396502", "photo_flickr_id": "4604294828", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "41251", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the architecture was amazing , too .", "storylet_id": "206258"}], [{"original_text": "A lot of the statues were beautiful.", "album_id": "72157624053396502", "photo_flickr_id": "4606901935", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "41251", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a lot of the statues were beautiful .", "storylet_id": "206259"}], [{"original_text": "Our mini vacation took us on some rail rides. Neither one of us had ever been on any commuter or passenger trains.", "album_id": "72157624053396502", "photo_flickr_id": "4603685099", "setting": "last-3-pick-old-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "41252", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our mini vacation took us on some rail rides . neither one of us had ever been on any commuter or passenger trains .", "storylet_id": "206260"}], [{"original_text": "I liked the sign that translates \"Discover the World\" because that was what we were doing on our mini vacation.", "album_id": "72157624053396502", "photo_flickr_id": "4604299420", "setting": "last-3-pick-old-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "41252", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i liked the sign that translates `` discover the world '' because that was what we were doing on our mini vacation .", "storylet_id": "206261"}], [{"original_text": "The angel statues were incredibly lifelike, but all I could think was about those Dr. Who episodes of the angels that attack you.", "album_id": "72157624053396502", "photo_flickr_id": "4603684261", "setting": "last-3-pick-old-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "41252", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the angel statues were incredibly lifelike , but all i could think was about those dr. who episodes of the angels that attack you .", "storylet_id": "206262"}], [{"original_text": "The architecture was old and grand. We spent hours exploring the biggest buildings.", "album_id": "72157624053396502", "photo_flickr_id": "4604294828", "setting": "last-3-pick-old-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "41252", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the architecture was old and grand . we spent hours exploring the biggest buildings .", "storylet_id": "206263"}], [{"original_text": "This angel statue looked lonely and somewhat ominous set against the background of the steel gray sky.", "album_id": "72157624053396502", "photo_flickr_id": "4606901935", "setting": "last-3-pick-old-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "41252", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this angel statue looked lonely and somewhat ominous set against the background of the steel gray sky .", "storylet_id": "206264"}], [{"original_text": "We went on a train to visit a local place.", "album_id": "72157624053396502", "photo_flickr_id": "4603685099", "setting": "last-3-pick-old-and-tell", "worker_id": "D4GYA6HT5QIT2AL", "story_id": "41253", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on a train to visit a local place .", "storylet_id": "206265"}], [{"original_text": "We got off the stop and looked around the city.", "album_id": "72157624053396502", "photo_flickr_id": "4603683205", "setting": "last-3-pick-old-and-tell", "worker_id": "D4GYA6HT5QIT2AL", "story_id": "41253", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got off the stop and looked around the city .", "storylet_id": "206266"}], [{"original_text": "We hung around a famous fountain.", "album_id": "72157624053396502", "photo_flickr_id": "4603679959", "setting": "last-3-pick-old-and-tell", "worker_id": "D4GYA6HT5QIT2AL", "story_id": "41253", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we hung around a famous fountain .", "storylet_id": "206267"}], [{"original_text": "We decided to check out the local temple.", "album_id": "72157624053396502", "photo_flickr_id": "4603682119", "setting": "last-3-pick-old-and-tell", "worker_id": "D4GYA6HT5QIT2AL", "story_id": "41253", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we decided to check out the local temple .", "storylet_id": "206268"}], [{"original_text": "We took a photo of the city's most famous statue as our final stop.", "album_id": "72157624053396502", "photo_flickr_id": "4606901935", "setting": "last-3-pick-old-and-tell", "worker_id": "D4GYA6HT5QIT2AL", "story_id": "41253", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took a photo of the city 's most famous statue as our final stop .", "storylet_id": "206269"}], [{"original_text": "A train tour offered the chance to get a look at many different locales.", "album_id": "72157624053396502", "photo_flickr_id": "4603685099", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41254", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a train tour offered the chance to get a look at many different locales .", "storylet_id": "206270"}], [{"original_text": "Here, the travelers spotted a beautiful old fountain.", "album_id": "72157624053396502", "photo_flickr_id": "4603683205", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41254", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here , the travelers spotted a beautiful old fountain .", "storylet_id": "206271"}], [{"original_text": "The detailing on the carvings was unbelievable.", "album_id": "72157624053396502", "photo_flickr_id": "4603679959", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41254", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the detailing on the carvings was unbelievable .", "storylet_id": "206272"}], [{"original_text": "They eventually came to their intended destination.", "album_id": "72157624053396502", "photo_flickr_id": "4603682119", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41254", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they eventually came to their intended destination .", "storylet_id": "206273"}], [{"original_text": "They made time to observe one final intricate statue before moving on with their day.", "album_id": "72157624053396502", "photo_flickr_id": "4606901935", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41254", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they made time to observe one final intricate statue before moving on with their day .", "storylet_id": "206274"}], [{"original_text": "Arriving at the estate, we were greeted by a beautiful water feature.", "album_id": "72157624832147385", "photo_flickr_id": "4991015678", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "41255", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "arriving at the estate , we were greeted by a beautiful water feature .", "storylet_id": "206275"}], [{"original_text": "We had to take the Wonka Kart all the way from one side of the estate to the other.", "album_id": "72157624832147385", "photo_flickr_id": "4990446741", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "41255", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to take the location location all the way from one side of the estate to the other .", "storylet_id": "206276"}], [{"original_text": "Slowly we traveled along the lonely rail.", "album_id": "72157624832147385", "photo_flickr_id": "4990449903", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "41255", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "slowly we traveled along the lonely rail .", "storylet_id": "206277"}], [{"original_text": "Midway, we had to stop for a few minutes for pictures and a refuel.", "album_id": "72157624832147385", "photo_flickr_id": "4991057862", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "41255", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "midway , we had to stop for a few minutes for pictures and a refuel .", "storylet_id": "206278"}], [{"original_text": "Down below in the garden, everything was ready for our arrival.", "album_id": "72157624832147385", "photo_flickr_id": "4991085072", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "41255", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "down below in the garden , everything was ready for our arrival .", "storylet_id": "206279"}], [{"original_text": "A family decided to go to the local amusement park. ", "album_id": "72157624832147385", "photo_flickr_id": "4991012886", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41256", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a family decided to go to the local amusement park .", "storylet_id": "206280"}], [{"original_text": "The amusement park was becoming crowded.", "album_id": "72157624832147385", "photo_flickr_id": "4991033424", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41256", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the amusement park was becoming crowded .", "storylet_id": "206281"}], [{"original_text": "There were a lot of rides.", "album_id": "72157624832147385", "photo_flickr_id": "4991057862", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41256", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of rides .", "storylet_id": "206282"}], [{"original_text": "The family rode the roller coaster together.", "album_id": "72157624832147385", "photo_flickr_id": "4990455173", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41256", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family rode the roller coaster together .", "storylet_id": "206283"}], [{"original_text": "The park was surrounded by a beautiful waterfall. ", "album_id": "72157624832147385", "photo_flickr_id": "4990461695", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41256", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the park was surrounded by a beautiful waterfall .", "storylet_id": "206284"}], [{"original_text": "An easy way to get around the park was to use transportation.", "album_id": "72157624832147385", "photo_flickr_id": "4991015678", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41257", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an easy way to get around the park was to use transportation .", "storylet_id": "206285"}], [{"original_text": "This ride took fans from one side to the other.", "album_id": "72157624832147385", "photo_flickr_id": "4990446741", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41257", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this ride took fans from one side to the other .", "storylet_id": "206286"}], [{"original_text": "Slowly it climbed as it crossed roads and passersby below.", "album_id": "72157624832147385", "photo_flickr_id": "4990449903", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41257", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "slowly it climbed as it crossed roads and passersby below .", "storylet_id": "206287"}], [{"original_text": "The ornate detailing of the car made it fun to be in.", "album_id": "72157624832147385", "photo_flickr_id": "4991057862", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41257", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ornate detailing of the car made it fun to be in .", "storylet_id": "206288"}], [{"original_text": "It ended with a large sculpture indicating they'd reached the end.", "album_id": "72157624832147385", "photo_flickr_id": "4991085072", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41257", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it ended with a large sculpture indicating they 'd reached the end .", "storylet_id": "206289"}], [{"original_text": "The family arrived at their hotel.", "album_id": "72157624832147385", "photo_flickr_id": "4991015678", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41258", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family arrived at their hotel .", "storylet_id": "206290"}], [{"original_text": "\"and best of all,\" said the dad \"there is a roller coaster in our hotel\"", "album_id": "72157624832147385", "photo_flickr_id": "4990446741", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41258", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "`` and best of all , '' said the dad `` there is a roller coaster in our hotel ''", "storylet_id": "206291"}], [{"original_text": "The kids cheered and ran off to ride it.", "album_id": "72157624832147385", "photo_flickr_id": "4990449903", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41258", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids cheered and ran off to ride it .", "storylet_id": "206292"}], [{"original_text": "They yelled and screamed the whole way.", "album_id": "72157624832147385", "photo_flickr_id": "4991057862", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41258", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they yelled and screamed the whole way .", "storylet_id": "206293"}], [{"original_text": "And when they saw the big monster at the end, they screamed and hid.", "album_id": "72157624832147385", "photo_flickr_id": "4991085072", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41258", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and when they saw the big monster at the end , they screamed and hid .", "storylet_id": "206294"}], [{"original_text": "We arrived at the amusement park early in the morning. ", "album_id": "72157624832147385", "photo_flickr_id": "4991012886", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "41259", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at the amusement park early in the morning .", "storylet_id": "206295"}], [{"original_text": "We wanted to get there early so we wouldn't have to wait on long lines to get on the rides.", "album_id": "72157624832147385", "photo_flickr_id": "4991033424", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "41259", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we wanted to get there early so we would n't have to wait on long lines to get on the rides .", "storylet_id": "206296"}], [{"original_text": "We rode on a pretty neat steampunk-inspired tram that took us from one end of the park to another.", "album_id": "72157624832147385", "photo_flickr_id": "4991057862", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "41259", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we rode on a pretty neat steampunk-inspired tram that took us from one end of the park to another .", "storylet_id": "206297"}], [{"original_text": "Then it was time to get on a rollercoaster in the shape of a train. It was so scary.", "album_id": "72157624832147385", "photo_flickr_id": "4990455173", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "41259", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then it was time to get on a rollercoaster in the shape of a train . it was so scary .", "storylet_id": "206298"}], [{"original_text": "The coaster went under a waterfall and we all got wet. We decided to get some food and take a break for an hour to dry off. It was a good day.", "album_id": "72157624832147385", "photo_flickr_id": "4990461695", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "41259", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the coaster went under a waterfall and we all got wet . we decided to get some food and take a break for an hour to dry off . it was a good day .", "storylet_id": "206299"}], [{"original_text": "The observatory hadn't been used in a while.", "album_id": "72157628888719557", "photo_flickr_id": "6705141567", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41260", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the observatory had n't been used in a while .", "storylet_id": "206300"}], [{"original_text": "Most people go to the lookout tower.", "album_id": "72157628888719557", "photo_flickr_id": "6705144047", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41260", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "most people go to the lookout tower .", "storylet_id": "206301"}], [{"original_text": "After looking up I quickly decided to stay on the ground.", "album_id": "72157628888719557", "photo_flickr_id": "6705142435", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41260", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after looking up i quickly decided to stay on the ground .", "storylet_id": "206302"}], [{"original_text": "The sun was beginning to set and soon we would be able to enjoy the night starts.", "album_id": "72157628888719557", "photo_flickr_id": "6705140493", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41260", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sun was beginning to set and soon we would be able to enjoy the night starts .", "storylet_id": "206303"}], [{"original_text": "The beauty we were about to see was introduced by the beauty of this sunset.", "album_id": "72157628888719557", "photo_flickr_id": "6705139327", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41260", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the beauty we were about to see was introduced by the beauty of this sunset .", "storylet_id": "206304"}], [{"original_text": "While we were traveling we came across a strange building and went to investigate.", "album_id": "72157628888719557", "photo_flickr_id": "6705141567", "setting": "first-2-pick-and-tell", "worker_id": "2TAHA68WOWWOYN4", "story_id": "41261", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while we were traveling we came across a strange building and went to investigate .", "storylet_id": "206305"}], [{"original_text": "We saw a large observation tower in the back.", "album_id": "72157628888719557", "photo_flickr_id": "6705144047", "setting": "first-2-pick-and-tell", "worker_id": "2TAHA68WOWWOYN4", "story_id": "41261", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw a large observation tower in the back .", "storylet_id": "206306"}], [{"original_text": "We decided to take a closer look and see if we can reach the top.", "album_id": "72157628888719557", "photo_flickr_id": "6705143447", "setting": "first-2-pick-and-tell", "worker_id": "2TAHA68WOWWOYN4", "story_id": "41261", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we decided to take a closer look and see if we can reach the top .", "storylet_id": "206307"}], [{"original_text": "After some debate we climbed to the top for a better view.", "album_id": "72157628888719557", "photo_flickr_id": "6705141957", "setting": "first-2-pick-and-tell", "worker_id": "2TAHA68WOWWOYN4", "story_id": "41261", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after some debate we climbed to the top for a better view .", "storylet_id": "206308"}], [{"original_text": "At the top we witnessed a very beautiful sunset. ", "album_id": "72157628888719557", "photo_flickr_id": "6705139327", "setting": "first-2-pick-and-tell", "worker_id": "2TAHA68WOWWOYN4", "story_id": "41261", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the top we witnessed a very beautiful sunset .", "storylet_id": "206309"}], [{"original_text": "Today we visited a special place of my parents'.", "album_id": "72157628888719557", "photo_flickr_id": "6705141567", "setting": "last-3-pick-old-and-tell", "worker_id": "ZBZKKQ1UD2BDLLA", "story_id": "41262", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we visited a special place of my parents ' .", "storylet_id": "206310"}], [{"original_text": "After walking through the gates, we saw a huge tower in the distance.", "album_id": "72157628888719557", "photo_flickr_id": "6705144047", "setting": "last-3-pick-old-and-tell", "worker_id": "ZBZKKQ1UD2BDLLA", "story_id": "41262", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after walking through the gates , we saw a huge tower in the distance .", "storylet_id": "206311"}], [{"original_text": "The tower seemed to grow taller as we got closer.", "album_id": "72157628888719557", "photo_flickr_id": "6705143447", "setting": "last-3-pick-old-and-tell", "worker_id": "ZBZKKQ1UD2BDLLA", "story_id": "41262", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tower seemed to grow taller as we got closer .", "storylet_id": "206312"}], [{"original_text": "We saw that it had a million steps to get to the top.", "album_id": "72157628888719557", "photo_flickr_id": "6705141957", "setting": "last-3-pick-old-and-tell", "worker_id": "ZBZKKQ1UD2BDLLA", "story_id": "41262", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw that it had a million steps to get to the top .", "storylet_id": "206313"}], [{"original_text": "After climbing the steps, we stayed and watched the sunset.", "album_id": "72157628888719557", "photo_flickr_id": "6705139327", "setting": "last-3-pick-old-and-tell", "worker_id": "ZBZKKQ1UD2BDLLA", "story_id": "41262", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after climbing the steps , we stayed and watched the sunset .", "storylet_id": "206314"}], [{"original_text": "Visiting the local observatory was quite a treat.", "album_id": "72157628888719557", "photo_flickr_id": "6705141567", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "41263", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visiting the local observatory was quite a treat .", "storylet_id": "206315"}], [{"original_text": "These communication towers towered over the landscape.", "album_id": "72157628888719557", "photo_flickr_id": "6705144047", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "41263", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these communication towers towered over the landscape .", "storylet_id": "206316"}], [{"original_text": "It took a lot of steps to get to the top of this tower.", "album_id": "72157628888719557", "photo_flickr_id": "6705142435", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "41263", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it took a lot of steps to get to the top of this tower .", "storylet_id": "206317"}], [{"original_text": "As the sun set the sky was aflame with beauty.", "album_id": "72157628888719557", "photo_flickr_id": "6705140493", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "41263", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the sun set the sky was aflame with beauty .", "storylet_id": "206318"}], [{"original_text": "There is no better way to end a day than with a sight like this.", "album_id": "72157628888719557", "photo_flickr_id": "6705139327", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "41263", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is no better way to end a day than with a sight like this .", "storylet_id": "206319"}], [{"original_text": "We explored the observatory this afternoon.", "album_id": "72157628888719557", "photo_flickr_id": "6705141567", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41264", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we explored the observatory this afternoon .", "storylet_id": "206320"}], [{"original_text": "Since it was daylight, we approached a tower to see the sky.", "album_id": "72157628888719557", "photo_flickr_id": "6705144047", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41264", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "since it was daylight , we approached a tower to see the sky .", "storylet_id": "206321"}], [{"original_text": "As we got closer we saw how tall it was.", "album_id": "72157628888719557", "photo_flickr_id": "6705143447", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41264", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as we got closer we saw how tall it was .", "storylet_id": "206322"}], [{"original_text": "When we were at the base, we saw how rickety it looked.", "album_id": "72157628888719557", "photo_flickr_id": "6705141957", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41264", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we were at the base , we saw how rickety it looked .", "storylet_id": "206323"}], [{"original_text": "However, the view and sunset was breataking.", "album_id": "72157628888719557", "photo_flickr_id": "6705139327", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41264", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , the view and sunset was breataking .", "storylet_id": "206324"}], [{"original_text": "We decided to visit College Creek in Virginia.", "album_id": "72157600081021746", "photo_flickr_id": "460843189", "setting": "first-2-pick-and-tell", "worker_id": "CLEPR82ZY0PTXPS", "story_id": "41265", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to visit location location in location .", "storylet_id": "206325"}], [{"original_text": "When we first arrived, we walked through the town and saw how people used to live.", "album_id": "72157600081021746", "photo_flickr_id": "460857935", "setting": "first-2-pick-and-tell", "worker_id": "CLEPR82ZY0PTXPS", "story_id": "41265", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we first arrived , we walked through the town and saw how people used to live .", "storylet_id": "206326"}], [{"original_text": "We also spent some time walking through several of the beautiful gardens.", "album_id": "72157600081021746", "photo_flickr_id": "460864749", "setting": "first-2-pick-and-tell", "worker_id": "CLEPR82ZY0PTXPS", "story_id": "41265", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also spent some time walking through several of the beautiful gardens .", "storylet_id": "206327"}], [{"original_text": "There was a very old ship that was docked in the harbor and we got to take a guided tour of it.", "album_id": "72157600081021746", "photo_flickr_id": "460849280", "setting": "first-2-pick-and-tell", "worker_id": "CLEPR82ZY0PTXPS", "story_id": "41265", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a very old ship that was docked in the harbor and we got to take a guided tour of it .", "storylet_id": "206328"}], [{"original_text": "It was amazing to see everything that was on display throughout the town. It was a great day learning about the history of College Creek.", "album_id": "72157600081021746", "photo_flickr_id": "460855708", "setting": "first-2-pick-and-tell", "worker_id": "CLEPR82ZY0PTXPS", "story_id": "41265", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was amazing to see everything that was on display throughout the town . it was a great day learning about the history of organization organization .", "storylet_id": "206329"}], [{"original_text": "When we got to the city, we took a picture of the town sign.", "album_id": "72157600081021746", "photo_flickr_id": "460843189", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41266", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when we got to the city , we took a picture of the town sign .", "storylet_id": "206330"}], [{"original_text": "Down the sand road, we saw the water.", "album_id": "72157600081021746", "photo_flickr_id": "460845411", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41266", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "down the sand road , we saw the water .", "storylet_id": "206331"}], [{"original_text": "Near the road, there was a home where we would be staying for the weekend.", "album_id": "72157600081021746", "photo_flickr_id": "460843852", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41266", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "near the road , there was a home where we would be staying for the weekend .", "storylet_id": "206332"}], [{"original_text": "The carriages were so classy.", "album_id": "72157600081021746", "photo_flickr_id": "460857935", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41266", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the carriages were so classy .", "storylet_id": "206333"}], [{"original_text": "They led us down this beautiful forest road.", "album_id": "72157600081021746", "photo_flickr_id": "460866235", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41266", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they led us down this beautiful forest road .", "storylet_id": "206334"}], [{"original_text": "Today was the day the family learned some American History at College creek.", "album_id": "72157600081021746", "photo_flickr_id": "460843189", "setting": "last-3-pick-old-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "41267", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day the family learned some american history at college creek .", "storylet_id": "206335"}], [{"original_text": "They had replicas of everything, ready for a reenactment at the drop of a hat.", "album_id": "72157600081021746", "photo_flickr_id": "460857935", "setting": "last-3-pick-old-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "41267", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had replicas of everything , ready for a reenactment at the drop of a hat .", "storylet_id": "206336"}], [{"original_text": "I love the way the grass was cut, it looked like there were tiny rows in the lawns. ", "album_id": "72157600081021746", "photo_flickr_id": "460864749", "setting": "last-3-pick-old-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "41267", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i love the way the grass was cut , it looked like there were tiny rows in the lawns .", "storylet_id": "206337"}], [{"original_text": "There wasn't any water around, so they built a replica of a ship that was used during the time, but a little smaller.", "album_id": "72157600081021746", "photo_flickr_id": "460849280", "setting": "last-3-pick-old-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "41267", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was n't any water around , so they built a replica of a ship that was used during the time , but a little smaller .", "storylet_id": "206338"}], [{"original_text": "Last of all, we got to see some of the guns that were used buy the revolutionaries!", "album_id": "72157600081021746", "photo_flickr_id": "460855708", "setting": "last-3-pick-old-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "41267", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last of all , we got to see some of the guns that were used buy the revolutionaries !", "storylet_id": "206339"}], [{"original_text": "The day started with a trip to College Creek.There was a tour starting at the main house.", "album_id": "72157600081021746", "photo_flickr_id": "460843189", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41268", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day started with a trip to college creek.there was a tour starting at the main house .", "storylet_id": "206340"}], [{"original_text": "We rode a horse and wagon throughout the quaint village.", "album_id": "72157600081021746", "photo_flickr_id": "460857935", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41268", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we rode a horse and wagon throughout the quaint village .", "storylet_id": "206341"}], [{"original_text": "The gardens were peaceful and beautiful. Surrounded by a white gate.", "album_id": "72157600081021746", "photo_flickr_id": "460864749", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41268", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the gardens were peaceful and beautiful . surrounded by a white gate .", "storylet_id": "206342"}], [{"original_text": "The highlight of the tour was the actual tour of a ship docked on College Creek.", "album_id": "72157600081021746", "photo_flickr_id": "460849280", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41268", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the highlight of the tour was the actual tour of a ship docked on location location .", "storylet_id": "206343"}], [{"original_text": "Inside the ship was exciting. Lots of historical objects including a collection of muskets.Can't wait to go back.", "album_id": "72157600081021746", "photo_flickr_id": "460855708", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41268", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "inside the ship was exciting . lots of historical objects including a collection of muskets.ca n't wait to go back .", "storylet_id": "206344"}], [{"original_text": "On a recent road trip, I discovered a town called College Creek ", "album_id": "72157600081021746", "photo_flickr_id": "460843189", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "41269", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on a recent road trip , i discovered a town called location location", "storylet_id": "206345"}], [{"original_text": "where they live like it is the 1700's with horses and wagons", "album_id": "72157600081021746", "photo_flickr_id": "460857935", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "41269", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "where they live like it is the 1700 's with horses and wagons", "storylet_id": "206346"}], [{"original_text": "and organic crops tended by hand.", "album_id": "72157600081021746", "photo_flickr_id": "460864749", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "41269", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and organic crops tended by hand .", "storylet_id": "206347"}], [{"original_text": "My favorite part though was seeing the sailing ships they used for transportation and ", "album_id": "72157600081021746", "photo_flickr_id": "460849280", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "41269", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my favorite part though was seeing the sailing ships they used for transportation and", "storylet_id": "206348"}], [{"original_text": "viewing their armory.", "album_id": "72157600081021746", "photo_flickr_id": "460855708", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "41269", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "viewing their armory .", "storylet_id": "206349"}], [{"original_text": "It was a beautiful day for trip to the beach.", "album_id": "72157624609963959", "photo_flickr_id": "4896112641", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "41270", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful day for trip to the beach .", "storylet_id": "206350"}], [{"original_text": "When I had first arrived there are only a couple people th", "album_id": "72157624609963959", "photo_flickr_id": "4896707230", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "41270", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when i had first arrived there are only a couple people th", "storylet_id": "206351"}], [{"original_text": "After a few hours of playing in the ocean and building sandcastles at the beach started to fill up.", "album_id": "72157624609963959", "photo_flickr_id": "4896707494", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "41270", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after a few hours of playing in the ocean and building sandcastles at the beach started to fill up .", "storylet_id": "206352"}], [{"original_text": "As I walk the beach I couldn't help but notice the beautiful sale goes out in the ocean.", "album_id": "72157624609963959", "photo_flickr_id": "4896114977", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "41270", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as i walk the beach i could n't help but notice the beautiful sale goes out in the ocean .", "storylet_id": "206353"}], [{"original_text": "When we were all done at the beach we decided to hit the local amusement park for some extra fun.", "album_id": "72157624609963959", "photo_flickr_id": "4896118021", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "41270", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we were all done at the beach we decided to hit the local amusement park for some extra fun .", "storylet_id": "206354"}], [{"original_text": "We went to the beach today.", "album_id": "72157624609963959", "photo_flickr_id": "4896706988", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41271", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the beach today .", "storylet_id": "206355"}], [{"original_text": "We had a great time being down by the water.", "album_id": "72157624609963959", "photo_flickr_id": "4896707230", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41271", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a great time being down by the water .", "storylet_id": "206356"}], [{"original_text": "So many people were they having such a good time.", "album_id": "72157624609963959", "photo_flickr_id": "4896707494", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41271", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so many people were they having such a good time .", "storylet_id": "206357"}], [{"original_text": "It was a very bright day, i'm glad I had my hat!", "album_id": "72157624609963959", "photo_flickr_id": "4896112641", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41271", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a very bright day , i 'm glad i had my hat !", "storylet_id": "206358"}], [{"original_text": "I had so much fun in the sand. I love the beach!", "album_id": "72157624609963959", "photo_flickr_id": "4896116901", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41271", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had so much fun in the sand . i love the beach !", "storylet_id": "206359"}], [{"original_text": "I am so happy to be at the beach today.", "album_id": "72157624609963959", "photo_flickr_id": "4896112641", "setting": "last-3-pick-old-and-tell", "worker_id": "QE5I51VSDMB0MUV", "story_id": "41272", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am so happy to be at the beach today .", "storylet_id": "206360"}], [{"original_text": "Clear skies mean there will be plenty of sunshine.", "album_id": "72157624609963959", "photo_flickr_id": "4896707230", "setting": "last-3-pick-old-and-tell", "worker_id": "QE5I51VSDMB0MUV", "story_id": "41272", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "clear skies mean there will be plenty of sunshine .", "storylet_id": "206361"}], [{"original_text": "It looks like a lot of people decided to come enjoy the water today.", "album_id": "72157624609963959", "photo_flickr_id": "4896707494", "setting": "last-3-pick-old-and-tell", "worker_id": "QE5I51VSDMB0MUV", "story_id": "41272", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it looks like a lot of people decided to come enjoy the water today .", "storylet_id": "206362"}], [{"original_text": "There are a couple of boats to watch while I relax on the sand.", "album_id": "72157624609963959", "photo_flickr_id": "4896114977", "setting": "last-3-pick-old-and-tell", "worker_id": "QE5I51VSDMB0MUV", "story_id": "41272", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are a couple of boats to watch while i relax on the sand .", "storylet_id": "206363"}], [{"original_text": "I am definitely riding that ride before I leave. ", "album_id": "72157624609963959", "photo_flickr_id": "4896118021", "setting": "last-3-pick-old-and-tell", "worker_id": "QE5I51VSDMB0MUV", "story_id": "41272", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am definitely riding that ride before i leave .", "storylet_id": "206364"}], [{"original_text": "Yesterday we took a trip to our local beach.", "album_id": "72157624609963959", "photo_flickr_id": "4896112641", "setting": "last-3-pick-old-and-tell", "worker_id": "18BPEHYD2YUHXVQ", "story_id": "41273", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday we took a trip to our local beach .", "storylet_id": "206365"}], [{"original_text": "We spent a while playing in the coast's warm waters.", "album_id": "72157624609963959", "photo_flickr_id": "4896707230", "setting": "last-3-pick-old-and-tell", "worker_id": "18BPEHYD2YUHXVQ", "story_id": "41273", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we spent a while playing in the coast 's warm waters .", "storylet_id": "206366"}], [{"original_text": "The beach was crowded, but we still had a great time.", "album_id": "72157624609963959", "photo_flickr_id": "4896707494", "setting": "last-3-pick-old-and-tell", "worker_id": "18BPEHYD2YUHXVQ", "story_id": "41273", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beach was crowded , but we still had a great time .", "storylet_id": "206367"}], [{"original_text": "There were a lot of people out boating that we could see from the shore.", "album_id": "72157624609963959", "photo_flickr_id": "4896114977", "setting": "last-3-pick-old-and-tell", "worker_id": "18BPEHYD2YUHXVQ", "story_id": "41273", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of people out boating that we could see from the shore .", "storylet_id": "206368"}], [{"original_text": "Eventually, we called it a day and headed to the Giant Dipper.", "album_id": "72157624609963959", "photo_flickr_id": "4896118021", "setting": "last-3-pick-old-and-tell", "worker_id": "18BPEHYD2YUHXVQ", "story_id": "41273", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually , we called it a day and headed to the organization organization .", "storylet_id": "206369"}], [{"original_text": "On vacation at the beach down in Santa Cruz with my wife!", "album_id": "72157624609963959", "photo_flickr_id": "4896112641", "setting": "last-3-pick-old-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "41274", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on vacation at the beach down in location location with my wife !", "storylet_id": "206370"}], [{"original_text": "We hit the beach first, and there weren't many people there, fortunately.", "album_id": "72157624609963959", "photo_flickr_id": "4896707230", "setting": "last-3-pick-old-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "41274", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we hit the beach first , and there were n't many people there , fortunately .", "storylet_id": "206371"}], [{"original_text": "Later on, the crowds came, and we decided it was too much for us.", "album_id": "72157624609963959", "photo_flickr_id": "4896707494", "setting": "last-3-pick-old-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "41274", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "later on , the crowds came , and we decided it was too much for us .", "storylet_id": "206372"}], [{"original_text": "We left and took a small boat across the water.", "album_id": "72157624609963959", "photo_flickr_id": "4896114977", "setting": "last-3-pick-old-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "41274", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we left and took a small boat across the water .", "storylet_id": "206373"}], [{"original_text": "We ended up at this place in Santa Cruz. Not sure what it is, but it's the start of our adventure!", "album_id": "72157624609963959", "photo_flickr_id": "4896118021", "setting": "last-3-pick-old-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "41274", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended up at this place in location location . not sure what it is , but it 's the start of our adventure !", "storylet_id": "206374"}], [{"original_text": "We walked through the city to see what stores were there.", "album_id": "72157624729268764", "photo_flickr_id": "4893557055", "setting": "first-2-pick-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "41275", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we walked through the city to see what stores were there .", "storylet_id": "206375"}], [{"original_text": "Some of the building signs were in English.", "album_id": "72157624729268764", "photo_flickr_id": "4893602971", "setting": "first-2-pick-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "41275", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the building signs were in english .", "storylet_id": "206376"}], [{"original_text": "We took pictures of the city from the water.", "album_id": "72157624729268764", "photo_flickr_id": "4893623769", "setting": "first-2-pick-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "41275", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took pictures of the city from the water .", "storylet_id": "206377"}], [{"original_text": "We were in awe of the beautiful lights radiating from the city.", "album_id": "72157624729268764", "photo_flickr_id": "4893657359", "setting": "first-2-pick-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "41275", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were in awe of the beautiful lights radiating from the city .", "storylet_id": "206378"}], [{"original_text": "At the end of the night, we enjoyed the fireworks.", "album_id": "72157624729268764", "photo_flickr_id": "4894262962", "setting": "first-2-pick-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "41275", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , we enjoyed the fireworks .", "storylet_id": "206379"}], [{"original_text": "This sign typifies the attitude that I have been taking since we arrived in this strange country.", "album_id": "72157624729268764", "photo_flickr_id": "4894157970", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "41276", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this sign typifies the attitude that i have been taking since we arrived in this strange country .", "storylet_id": "206380"}], [{"original_text": "Coming in on a small boat, this three-building mass was an unexpected sight.", "album_id": "72157624729268764", "photo_flickr_id": "4894202588", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "41276", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "coming in on a small boat , this three-building mass was an unexpected sight .", "storylet_id": "206381"}], [{"original_text": "Just off the coast of the mainland, this is where the evil emperor lives.", "album_id": "72157624729268764", "photo_flickr_id": "4893623769", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "41276", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "just off the coast of the mainland , this is where the evil emperor lives .", "storylet_id": "206382"}], [{"original_text": "At night, the lights become fantastic -- dimly lit 24 hours a day by the strange energies down below.", "album_id": "72157624729268764", "photo_flickr_id": "4893633717", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "41276", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at night , the lights become fantastic -- dimly lit 24 hours a day by the strange energies down below .", "storylet_id": "206383"}], [{"original_text": "And at midnight, the emperor zaps lasers at all his enemies!", "album_id": "72157624729268764", "photo_flickr_id": "4893724687", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "41276", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and at midnight , the emperor zaps lasers at all his enemies !", "storylet_id": "206384"}], [{"original_text": "We set up the fireworks display at the tallest building in town.", "album_id": "72157624729268764", "photo_flickr_id": "4893557055", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41277", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we set up the fireworks display at the tallest building in town .", "storylet_id": "206385"}], [{"original_text": "We also did one at another location across from the first building.", "album_id": "72157624729268764", "photo_flickr_id": "4893602971", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41277", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we also did one at another location across from the first building .", "storylet_id": "206386"}], [{"original_text": "We then sat back across the river and waited.", "album_id": "72157624729268764", "photo_flickr_id": "4893623769", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41277", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we then sat back across the river and waited .", "storylet_id": "206387"}], [{"original_text": "When night came, all the lights on the buildings came on.", "album_id": "72157624729268764", "photo_flickr_id": "4893657359", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41277", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when night came , all the lights on the buildings came on .", "storylet_id": "206388"}], [{"original_text": "We started the fireworks display.", "album_id": "72157624729268764", "photo_flickr_id": "4894262962", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41277", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we started the fireworks display .", "storylet_id": "206389"}], [{"original_text": "My job has me take pictures of various buildings.", "album_id": "72157624729268764", "photo_flickr_id": "4893557055", "setting": "last-3-pick-old-and-tell", "worker_id": "NGE6LTND2HANLVO", "story_id": "41278", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my job has me take pictures of various buildings .", "storylet_id": "206390"}], [{"original_text": "Here is one of my hotel I will be staying at for the night.", "album_id": "72157624729268764", "photo_flickr_id": "4893602971", "setting": "last-3-pick-old-and-tell", "worker_id": "NGE6LTND2HANLVO", "story_id": "41278", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is one of my hotel i will be staying at for the night .", "storylet_id": "206391"}], [{"original_text": "I've been tasked with taking pictures of this tomorrow night for the festival.", "album_id": "72157624729268764", "photo_flickr_id": "4893623769", "setting": "last-3-pick-old-and-tell", "worker_id": "NGE6LTND2HANLVO", "story_id": "41278", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i 've been tasked with taking pictures of this tomorrow night for the festival .", "storylet_id": "206392"}], [{"original_text": "The city looks wonderful at night and things are about to get started.", "album_id": "72157624729268764", "photo_flickr_id": "4893657359", "setting": "last-3-pick-old-and-tell", "worker_id": "NGE6LTND2HANLVO", "story_id": "41278", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the city looks wonderful at night and things are about to get started .", "storylet_id": "206393"}], [{"original_text": "What a wonderful firework show the festival had at the very end.", "album_id": "72157624729268764", "photo_flickr_id": "4894262962", "setting": "last-3-pick-old-and-tell", "worker_id": "NGE6LTND2HANLVO", "story_id": "41278", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what a wonderful firework show the festival had at the very end .", "storylet_id": "206394"}], [{"original_text": "A person spent the day in the city on the 4th of July.", "album_id": "72157624729268764", "photo_flickr_id": "4893557055", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41279", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a person spent the day in the city on the 4th of july .", "storylet_id": "206395"}], [{"original_text": "The person admired the architecture of the nearby buildings.", "album_id": "72157624729268764", "photo_flickr_id": "4893602971", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41279", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the person admired the architecture of the nearby buildings .", "storylet_id": "206396"}], [{"original_text": "A small abandoned pier made for a scenic picture.", "album_id": "72157624729268764", "photo_flickr_id": "4893623769", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41279", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a small abandoned pier made for a scenic picture .", "storylet_id": "206397"}], [{"original_text": "As the sun set, the city came alive with color.", "album_id": "72157624729268764", "photo_flickr_id": "4893657359", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41279", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the sun set , the city came alive with color .", "storylet_id": "206398"}], [{"original_text": "Shortly thereafter, a large display of fireworks was shown.", "album_id": "72157624729268764", "photo_flickr_id": "4894262962", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41279", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "shortly thereafter , a large display of fireworks was shown .", "storylet_id": "206399"}], [{"original_text": "The wooden creature man I created from the chest up.", "album_id": "72157624733113830", "photo_flickr_id": "4896032398", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41280", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wooden creature man i created from the chest up .", "storylet_id": "206400"}], [{"original_text": "Here I am holding my creation on a beautiful day.", "album_id": "72157624733113830", "photo_flickr_id": "4896033626", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41280", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here i am holding my creation on a beautiful day .", "storylet_id": "206401"}], [{"original_text": "The full body of my creation appears to be floating.", "album_id": "72157624733113830", "photo_flickr_id": "4896034214", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41280", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the full body of my creation appears to be floating .", "storylet_id": "206402"}], [{"original_text": "The details of my creation are seen here in a close up picture.", "album_id": "72157624733113830", "photo_flickr_id": "4896034872", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41280", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the details of my creation are seen here in a close up picture .", "storylet_id": "206403"}], [{"original_text": "The wooden creation man's head is lit up perfectly behind the sun.", "album_id": "72157624733113830", "photo_flickr_id": "4895439927", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41280", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the wooden creation man 's head is lit up perfectly behind the sun .", "storylet_id": "206404"}], [{"original_text": "The giant stick man will conquer all the humans.", "album_id": "72157624733113830", "photo_flickr_id": "4896031980", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41281", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the giant stick man will conquer all the humans .", "storylet_id": "206405"}], [{"original_text": "He stands mightily on his mound of pixels. ", "album_id": "72157624733113830", "photo_flickr_id": "4895437583", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41281", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he stands mightily on his mound of pixels .", "storylet_id": "206406"}], [{"original_text": "This forceful center is the source all of his power. ", "album_id": "72157624733113830", "photo_flickr_id": "4896034872", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41281", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this forceful center is the source all of his power .", "storylet_id": "206407"}], [{"original_text": "All hail the giant stick creature!", "album_id": "72157624733113830", "photo_flickr_id": "4895439927", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41281", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all hail the giant stick creature !", "storylet_id": "206408"}], [{"original_text": "It is really just atoll created by this girl. ", "album_id": "72157624733113830", "photo_flickr_id": "4896033626", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41281", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is really just atoll created by this girl .", "storylet_id": "206409"}], [{"original_text": "Entered my first sculpture into the local art gallery.", "album_id": "72157624733113830", "photo_flickr_id": "4896032398", "setting": "last-3-pick-old-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "41282", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "entered my first sculpture into the local art gallery .", "storylet_id": "206410"}], [{"original_text": "It was a statue made of wood.", "album_id": "72157624733113830", "photo_flickr_id": "4896033626", "setting": "last-3-pick-old-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "41282", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a statue made of wood .", "storylet_id": "206411"}], [{"original_text": "I put a lot of effort into building it.", "album_id": "72157624733113830", "photo_flickr_id": "4896034214", "setting": "last-3-pick-old-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "41282", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i put a lot of effort into building it .", "storylet_id": "206412"}], [{"original_text": "It was time consuming to cut and fit each piece perfectly together. ", "album_id": "72157624733113830", "photo_flickr_id": "4896034872", "setting": "last-3-pick-old-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "41282", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was time consuming to cut and fit each piece perfectly together .", "storylet_id": "206413"}], [{"original_text": "But after 4 long months I finally had it finished and just in time to enter it.", "album_id": "72157624733113830", "photo_flickr_id": "4895439927", "setting": "last-3-pick-old-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "41282", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but after 4 long months i finally had it finished and just in time to enter it .", "storylet_id": "206414"}], [{"original_text": "They had driven out to Illinois just for this!", "album_id": "72157624733113830", "photo_flickr_id": "4896032398", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41283", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they had driven out to location just for this !", "storylet_id": "206415"}], [{"original_text": "Meghan posed with it, pretending to hold the legs.", "album_id": "72157624733113830", "photo_flickr_id": "4896033626", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41283", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] posed with it , pretending to hold the legs .", "storylet_id": "206416"}], [{"original_text": "They admired the feat of creating something so large.", "album_id": "72157624733113830", "photo_flickr_id": "4896034214", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41283", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they admired the feat of creating something so large .", "storylet_id": "206417"}], [{"original_text": "But wondered what the intent of it really was.", "album_id": "72157624733113830", "photo_flickr_id": "4896034872", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41283", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but wondered what the intent of it really was .", "storylet_id": "206418"}], [{"original_text": "Either way, it looked cool!", "album_id": "72157624733113830", "photo_flickr_id": "4895439927", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41283", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "either way , it looked cool !", "storylet_id": "206419"}], [{"original_text": "Tina had to build a puppet for school project.", "album_id": "72157624733113830", "photo_flickr_id": "4896032398", "setting": "last-3-pick-old-and-tell", "worker_id": "70Z7P4YBJNXMWAV", "story_id": "41284", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] had to build a puppet for school project .", "storylet_id": "206420"}], [{"original_text": "She was very proud about it when she finished.", "album_id": "72157624733113830", "photo_flickr_id": "4896033626", "setting": "last-3-pick-old-and-tell", "worker_id": "70Z7P4YBJNXMWAV", "story_id": "41284", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was very proud about it when she finished .", "storylet_id": "206421"}], [{"original_text": "She used wood sticks and built a 3d puppet.", "album_id": "72157624733113830", "photo_flickr_id": "4896034214", "setting": "last-3-pick-old-and-tell", "worker_id": "70Z7P4YBJNXMWAV", "story_id": "41284", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she used wood sticks and built a 3d puppet .", "storylet_id": "206422"}], [{"original_text": "Her design was slick and the end result was professional.", "album_id": "72157624733113830", "photo_flickr_id": "4896034872", "setting": "last-3-pick-old-and-tell", "worker_id": "70Z7P4YBJNXMWAV", "story_id": "41284", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her design was slick and the end result was professional .", "storylet_id": "206423"}], [{"original_text": "Tina received a special mention for her fantastic 3d model puppet.", "album_id": "72157624733113830", "photo_flickr_id": "4895439927", "setting": "last-3-pick-old-and-tell", "worker_id": "70Z7P4YBJNXMWAV", "story_id": "41284", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] received a special mention for her fantastic 3d model puppet .", "storylet_id": "206424"}], [{"original_text": "Okay, I was a little intoxicated when I decided to ride this Ferris Wheel. ", "album_id": "72157625049799293", "photo_flickr_id": "5085686631", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41285", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "okay , i was a little intoxicated when i decided to ride this organization organization .", "storylet_id": "206425"}], [{"original_text": "I soon figured out that this was a bad idea. I decided to hop off the thing, and head straight out. ", "album_id": "72157625049799293", "photo_flickr_id": "5085686429", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41285", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i soon figured out that this was a bad idea . i decided to hop off the thing , and head straight out .", "storylet_id": "206426"}], [{"original_text": "I found a taxi to take me home, and told them to take the fastest route out. ", "album_id": "72157625049799293", "photo_flickr_id": "5086283392", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41285", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i found a taxi to take me home , and told them to take the fastest route out .", "storylet_id": "206427"}], [{"original_text": "I looked back at the Wheel in the sky, while it grew smaller in the distance. ", "album_id": "72157625049799293", "photo_flickr_id": "5086282222", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41285", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i looked back at the wheel in the sky , while it grew smaller in the distance .", "storylet_id": "206428"}], [{"original_text": "Some day I may return to you Ferris Wheel. Until then, we had our moment. ", "album_id": "72157625049799293", "photo_flickr_id": "5086284790", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41285", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some day i may return to you organization organization . until then , we had our moment .", "storylet_id": "206429"}], [{"original_text": "From far away the ferris wheel looked simply incredible. ", "album_id": "72157625049799293", "photo_flickr_id": "5086282222", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41286", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "from far away the ferris wheel looked simply incredible .", "storylet_id": "206430"}], [{"original_text": "Even though the first color scheme was impressive, as our boat drew closer it displayed an even cooler color scheme. ", "album_id": "72157625049799293", "photo_flickr_id": "5085686429", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41286", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even though the first color scheme was impressive , as our boat drew closer it displayed an even cooler color scheme .", "storylet_id": "206431"}], [{"original_text": "As the boat rounded the harbor I was able to get a full shot of all of the buildings, their surfaces lite up now from street lights.", "album_id": "72157625049799293", "photo_flickr_id": "5085686851", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41286", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as the boat rounded the harbor i was able to get a full shot of all of the buildings , their surfaces lite up now from street lights .", "storylet_id": "206432"}], [{"original_text": "As we were leaving the harbor once more the ferris wheel turned a welcoming blue color, as if to make my depressed mood as it faded away.", "album_id": "72157625049799293", "photo_flickr_id": "5086284636", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41286", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as we were leaving the harbor once more the ferris wheel turned a welcoming blue color , as if to make my depressed mood as it faded away .", "storylet_id": "206433"}], [{"original_text": "I said goodbye to the lovely peer, our ferry now chugging on into the night. ", "album_id": "72157625049799293", "photo_flickr_id": "5086284790", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41286", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i said goodbye to the lovely peer , our ferry now chugging on into the night .", "storylet_id": "206434"}], [{"original_text": "The blue light on the wheel was mesmerizing.", "album_id": "72157625049799293", "photo_flickr_id": "5086282222", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41287", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the blue light on the wheel was mesmerizing .", "storylet_id": "206435"}], [{"original_text": "When the light turned green I was completely speechless.", "album_id": "72157625049799293", "photo_flickr_id": "5085686429", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41287", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when the light turned green i was completely speechless .", "storylet_id": "206436"}], [{"original_text": "The city at night time is jaw dropping.", "album_id": "72157625049799293", "photo_flickr_id": "5085686851", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41287", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the city at night time is jaw dropping .", "storylet_id": "206437"}], [{"original_text": "The reflection on the lake made the scene really unique.", "album_id": "72157625049799293", "photo_flickr_id": "5086284636", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41287", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the reflection on the lake made the scene really unique .", "storylet_id": "206438"}], [{"original_text": "I decided to make the last photo my screensaver.", "album_id": "72157625049799293", "photo_flickr_id": "5086284790", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41287", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to make the last photo my screensaver .", "storylet_id": "206439"}], [{"original_text": "The ferris wheel shone bright over the water.", "album_id": "72157625049799293", "photo_flickr_id": "5085686631", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41288", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ferris wheel shone bright over the water .", "storylet_id": "206440"}], [{"original_text": "Kevin and Jenny kissed in front of it, and a stranger snapped their picture.", "album_id": "72157625049799293", "photo_flickr_id": "5085686429", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41288", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] and [female] kissed in front of it , and a stranger snapped their picture .", "storylet_id": "206441"}], [{"original_text": "They looked out across the lake, feeling happy and content.", "album_id": "72157625049799293", "photo_flickr_id": "5086283392", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41288", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they looked out across the lake , feeling happy and content .", "storylet_id": "206442"}], [{"original_text": "They had a big day exploring and were ready to get home.", "album_id": "72157625049799293", "photo_flickr_id": "5086282222", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41288", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had a big day exploring and were ready to get home .", "storylet_id": "206443"}], [{"original_text": "So off they went towards their hotel.", "album_id": "72157625049799293", "photo_flickr_id": "5086284790", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41288", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so off they went towards their hotel .", "storylet_id": "206444"}], [{"original_text": "At night the ferris wheel came alive.", "album_id": "72157625049799293", "photo_flickr_id": "5085686631", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41289", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at night the ferris wheel came alive .", "storylet_id": "206445"}], [{"original_text": "The colors drew the attention of crowds from all over the area.", "album_id": "72157625049799293", "photo_flickr_id": "5085686429", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41289", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the colors drew the attention of crowds from all over the area .", "storylet_id": "206446"}], [{"original_text": "The ride fluctuated in color throughout the night, changing from one to another and back again.", "album_id": "72157625049799293", "photo_flickr_id": "5086283392", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41289", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ride fluctuated in color throughout the night , changing from one to another and back again .", "storylet_id": "206447"}], [{"original_text": "The reflection on the water appeared almost magical.", "album_id": "72157625049799293", "photo_flickr_id": "5086282222", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41289", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the reflection on the water appeared almost magical .", "storylet_id": "206448"}], [{"original_text": "The rest of the cityscape was not to be discounted either!", "album_id": "72157625049799293", "photo_flickr_id": "5086284790", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41289", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the rest of the cityscape was not to be discounted either !", "storylet_id": "206449"}], [{"original_text": "This was the sign welcoming us into Fort Pedro.", "album_id": "72157623230626204", "photo_flickr_id": "4282409651", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "41290", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the sign welcoming us into location location .", "storylet_id": "206450"}], [{"original_text": "Fort Pedro had the most unique water tower!", "album_id": "72157623230626204", "photo_flickr_id": "4282415917", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "41290", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "location location had the most unique water tower !", "storylet_id": "206451"}], [{"original_text": "This is where we decided to stop and eat; they had the best tamales!", "album_id": "72157623230626204", "photo_flickr_id": "4282414007", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "41290", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is where we decided to stop and eat ; they had the best tamales !", "storylet_id": "206452"}], [{"original_text": "After lunch we had ice cream at this little shop.", "album_id": "72157623230626204", "photo_flickr_id": "4282411931", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "41290", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after lunch we had ice cream at this little shop .", "storylet_id": "206453"}], [{"original_text": "This souveneer shop had the friendliest workers, but not a very big selection.", "album_id": "72157623230626204", "photo_flickr_id": "4283150716", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "41290", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this souveneer shop had the friendliest workers , but not a very big selection .", "storylet_id": "206454"}], [{"original_text": "Fort Pedro is the best place to stop on a road trip for snacks.", "album_id": "72157623230626204", "photo_flickr_id": "4282409651", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41291", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location location is the best place to stop on a road trip for snacks .", "storylet_id": "206455"}], [{"original_text": "We are sure to get ice cream first. When you are on vacation, you get to eat dessert first.", "album_id": "72157623230626204", "photo_flickr_id": "4283157226", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41291", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are sure to get ice cream first . when you are on vacation , you get to eat dessert first .", "storylet_id": "206456"}], [{"original_text": "After that is hot dogs and soda and fries.", "album_id": "72157623230626204", "photo_flickr_id": "4282417107", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41291", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that is hot dogs and soda and fries .", "storylet_id": "206457"}], [{"original_text": "The adults get a shot of coffee for the long drive.", "album_id": "72157623230626204", "photo_flickr_id": "4283162438", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41291", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the adults get a shot of coffee for the long drive .", "storylet_id": "206458"}], [{"original_text": "And we always get a picture with Pedro before we leave.", "album_id": "72157623230626204", "photo_flickr_id": "4283163604", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41291", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and we always get a picture with [male] before we leave .", "storylet_id": "206459"}], [{"original_text": "Old town Fort Pedro has finally opened to the public.", "album_id": "72157623230626204", "photo_flickr_id": "4282409651", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41292", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "old town location location has finally opened to the public .", "storylet_id": "206460"}], [{"original_text": "There is a sombrero drop ride in the parking lot. ", "album_id": "72157623230626204", "photo_flickr_id": "4282415917", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41292", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is a sombrero drop ride in the parking lot .", "storylet_id": "206461"}], [{"original_text": "And a Hot Tamal's restaurant for visitors to eat.", "album_id": "72157623230626204", "photo_flickr_id": "4282414007", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41292", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and a hot tamal 's restaurant for visitors to eat .", "storylet_id": "206462"}], [{"original_text": "Another option for food is the ice cream shop.", "album_id": "72157623230626204", "photo_flickr_id": "4282411931", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41292", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another option for food is the ice cream shop .", "storylet_id": "206463"}], [{"original_text": "A T-shirt shop is also in the parking lot for visitors to shop before leaving.", "album_id": "72157623230626204", "photo_flickr_id": "4283150716", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41292", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a t-shirt shop is also in the parking lot for visitors to shop before leaving .", "storylet_id": "206464"}], [{"original_text": "For summer we went to Fort Pedro which is a neat park.", "album_id": "72157623230626204", "photo_flickr_id": "4282409651", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41293", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for summer we went to location location which is a neat park .", "storylet_id": "206465"}], [{"original_text": "There were many neat looking things to see.", "album_id": "72157623230626204", "photo_flickr_id": "4282415917", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41293", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many neat looking things to see .", "storylet_id": "206466"}], [{"original_text": "There was a place to get Hot tamales which were delicious!", "album_id": "72157623230626204", "photo_flickr_id": "4282414007", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41293", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a place to get hot tamales which were delicious !", "storylet_id": "206467"}], [{"original_text": "We got ice cream next, considering the tamales were so hot.", "album_id": "72157623230626204", "photo_flickr_id": "4282411931", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41293", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got ice cream next , considering the tamales were so hot .", "storylet_id": "206468"}], [{"original_text": "Afterwards we got T-shirts and decided that we were done for the day!", "album_id": "72157623230626204", "photo_flickr_id": "4283150716", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41293", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards we got t-shirts and decided that we were done for the day !", "storylet_id": "206469"}], [{"original_text": "Their was once a family traveling across the country to relocate.", "album_id": "72157623230626204", "photo_flickr_id": "4282409651", "setting": "last-3-pick-old-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41294", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "their was once a family traveling across the country to relocate .", "storylet_id": "206470"}], [{"original_text": "As they drove they saw many wonderful sights of colorful structures.", "album_id": "72157623230626204", "photo_flickr_id": "4282415917", "setting": "last-3-pick-old-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41294", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as they drove they saw many wonderful sights of colorful structures .", "storylet_id": "206471"}], [{"original_text": "They also saw signs for several popular restaurants.", "album_id": "72157623230626204", "photo_flickr_id": "4282414007", "setting": "last-3-pick-old-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41294", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also saw signs for several popular restaurants .", "storylet_id": "206472"}], [{"original_text": "But to the parent's dismay all the children wanted to eat was ice cream.", "album_id": "72157623230626204", "photo_flickr_id": "4282411931", "setting": "last-3-pick-old-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41294", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but to the parent 's dismay all the children wanted to eat was ice cream .", "storylet_id": "206473"}], [{"original_text": "The parents declined their children's requests, but stated that they could get souvenirs from local t-shirt shops along the way.", "album_id": "72157623230626204", "photo_flickr_id": "4283150716", "setting": "last-3-pick-old-and-tell", "worker_id": "KK1WVZDEAAVM337", "story_id": "41294", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the parents declined their children 's requests , but stated that they could get souvenirs from local t-shirt shops along the way .", "storylet_id": "206474"}], [{"original_text": "Today we finally went and checked out Uncle Ricks Flea Market.", "album_id": "240060", "photo_flickr_id": "9706726", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "41295", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we finally went and checked out uncle ricks flea market .", "storylet_id": "206475"}], [{"original_text": "As expected there was tons of junk on top of junk.", "album_id": "240060", "photo_flickr_id": "9706668", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "41295", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as expected there was tons of junk on top of junk .", "storylet_id": "206476"}], [{"original_text": "But thats not to say there wasnt some hidin gems in the rubble.", "album_id": "240060", "photo_flickr_id": "9706640", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "41295", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but thats not to say there wasnt some hidin gems in the rubble .", "storylet_id": "206477"}], [{"original_text": "Aswell as some really weird unmentionables.", "album_id": "240060", "photo_flickr_id": "9706906", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "41295", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "aswell as some really weird unmentionables .", "storylet_id": "206478"}], [{"original_text": "My wife even got to hold a parrot on her shoulder. We will be returning.", "album_id": "240060", "photo_flickr_id": "9706913", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "41295", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my wife even got to hold a parrot on her shoulder . we will be returning .", "storylet_id": "206479"}], [{"original_text": "We went to a flea market last weekend that was really neat.", "album_id": "240060", "photo_flickr_id": "9706650", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "41296", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a flea market last weekend that was really neat .", "storylet_id": "206480"}], [{"original_text": "This lady was the owner and she had a really pretty bird.", "album_id": "240060", "photo_flickr_id": "9706913", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "41296", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this lady was the owner and she had a really pretty bird .", "storylet_id": "206481"}], [{"original_text": "She had a lot of horseshoes and other old stuff.", "album_id": "240060", "photo_flickr_id": "9706700", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "41296", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she had a lot of horseshoes and other old stuff .", "storylet_id": "206482"}], [{"original_text": "She kept a lot of these cases in back with surprises inside of them for people who bought them.", "album_id": "240060", "photo_flickr_id": "9706755", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "41296", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she kept a lot of these cases in back with surprises inside of them for people who bought them .", "storylet_id": "206483"}], [{"original_text": "We bought a few of these paintings before going back home that day.", "album_id": "240060", "photo_flickr_id": "9706921", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "41296", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we bought a few of these paintings before going back home that day .", "storylet_id": "206484"}], [{"original_text": "Uncle Rick's Flea Market was a great place to visit today.", "album_id": "240060", "photo_flickr_id": "9706726", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41297", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "uncle [male] 's flea market was a great place to visit today .", "storylet_id": "206485"}], [{"original_text": "The vintage buses were cool to see.Every where one looks is a treasure to behold.", "album_id": "240060", "photo_flickr_id": "9706668", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41297", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the vintage buses were cool to see.every where one looks is a treasure to behold .", "storylet_id": "206486"}], [{"original_text": "Bikes,Tables,Tires,n more can all be found at this store.", "album_id": "240060", "photo_flickr_id": "9706640", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41297", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "bikes , tables , tires , n more can all be found at this store .", "storylet_id": "206487"}], [{"original_text": "The small gnome lamps were a favorite.", "album_id": "240060", "photo_flickr_id": "9706906", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41297", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the small gnome lamps were a favorite .", "storylet_id": "206488"}], [{"original_text": "The thing i left with was this parrot that talked. Good memories at the flea market today.", "album_id": "240060", "photo_flickr_id": "9706913", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "41297", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the thing i left with was this parrot that talked . good memories at the flea market today .", "storylet_id": "206489"}], [{"original_text": "Today, I decided to go to the flea market.", "album_id": "240060", "photo_flickr_id": "9706726", "setting": "last-3-pick-old-and-tell", "worker_id": "9ACUA1AXEG79AX0", "story_id": "41298", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , i decided to go to the flea market .", "storylet_id": "206490"}], [{"original_text": "There were all kinds of things.", "album_id": "240060", "photo_flickr_id": "9706668", "setting": "last-3-pick-old-and-tell", "worker_id": "9ACUA1AXEG79AX0", "story_id": "41298", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were all kinds of things .", "storylet_id": "206491"}], [{"original_text": "An old red bike like the one I used to have.", "album_id": "240060", "photo_flickr_id": "9706640", "setting": "last-3-pick-old-and-tell", "worker_id": "9ACUA1AXEG79AX0", "story_id": "41298", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "an old red bike like the one i used to have .", "storylet_id": "206492"}], [{"original_text": "I even remember this from my childhood!", "album_id": "240060", "photo_flickr_id": "9706906", "setting": "last-3-pick-old-and-tell", "worker_id": "9ACUA1AXEG79AX0", "story_id": "41298", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i even remember this from my childhood !", "storylet_id": "206493"}], [{"original_text": "I even found a parrot that wanted to stay with me.", "album_id": "240060", "photo_flickr_id": "9706913", "setting": "last-3-pick-old-and-tell", "worker_id": "9ACUA1AXEG79AX0", "story_id": "41298", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i even found a parrot that wanted to stay with me .", "storylet_id": "206494"}], [{"original_text": "Last Sunday, we all packed into the minivan to go visit our local swap shop, Uncle Rick's Flea Market.", "album_id": "240060", "photo_flickr_id": "9706726", "setting": "last-3-pick-old-and-tell", "worker_id": "RCBNYEEP7INFQUU", "story_id": "41299", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last sunday , we all packed into the minivan to go visit our local swap shop , uncle [male] 's flea market .", "storylet_id": "206495"}], [{"original_text": "There were tons of treasures to dig through! We went through the indoor portion, and then to the outdoor portion, which even had a bus full of items that you could walk through and shop for!", "album_id": "240060", "photo_flickr_id": "9706668", "setting": "last-3-pick-old-and-tell", "worker_id": "RCBNYEEP7INFQUU", "story_id": "41299", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were tons of treasures to dig through ! we went through the indoor portion , and then to the outdoor portion , which even had a bus full of items that you could walk through and shop for !", "storylet_id": "206496"}], [{"original_text": "We each found something special to bring home. Brandon found this great bike, for only $20!", "album_id": "240060", "photo_flickr_id": "9706640", "setting": "last-3-pick-old-and-tell", "worker_id": "RCBNYEEP7INFQUU", "story_id": "41299", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we each found something special to bring home . [male] found this great bike , for only $ 20 !", "storylet_id": "206497"}], [{"original_text": "Little Mary brought home this lamp. I tried to talk her into getting something else, since this lamp didn't have a lampshade, but she insisted that this was her treasure to bring home for the day!", "album_id": "240060", "photo_flickr_id": "9706906", "setting": "last-3-pick-old-and-tell", "worker_id": "RCBNYEEP7INFQUU", "story_id": "41299", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "little [female] brought home this lamp . i tried to talk her into getting something else , since this lamp did n't have a lampshade , but she insisted that this was her treasure to bring home for the day !", "storylet_id": "206498"}], [{"original_text": "But nobody had as special of a purchase as Linda, who bought a talking parrot! Now we have another chatty family member to talk to on the weekends!", "album_id": "240060", "photo_flickr_id": "9706913", "setting": "last-3-pick-old-and-tell", "worker_id": "RCBNYEEP7INFQUU", "story_id": "41299", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but nobody had as special of a purchase as [female] , who bought a talking parrot ! now we have another chatty family member to talk to on the weekends !", "storylet_id": "206499"}], [{"original_text": "The city is a wonderful pace.", "album_id": "72157624083813322", "photo_flickr_id": "4617020203", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41300", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city is a wonderful pace .", "storylet_id": "206500"}], [{"original_text": "You can't around on the water.", "album_id": "72157624083813322", "photo_flickr_id": "4617020781", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41300", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you ca n't around on the water .", "storylet_id": "206501"}], [{"original_text": "This building is wonderful.", "album_id": "72157624083813322", "photo_flickr_id": "4617021181", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41300", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this building is wonderful .", "storylet_id": "206502"}], [{"original_text": "Nature is also beautiful in a city. ", "album_id": "72157624083813322", "photo_flickr_id": "4617021895", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41300", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "nature is also beautiful in a city .", "storylet_id": "206503"}], [{"original_text": "The trees are in full bloom.", "album_id": "72157624083813322", "photo_flickr_id": "4617636400", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41300", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the trees are in full bloom .", "storylet_id": "206504"}], [{"original_text": "The view of the opera house from the ocean is real spectacular. ", "album_id": "72157624083813322", "photo_flickr_id": "4617020203", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41301", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the view of the opera house from the ocean is real spectacular .", "storylet_id": "206505"}], [{"original_text": "The ferris wheel looks like it is going to spin in the water. ", "album_id": "72157624083813322", "photo_flickr_id": "4617634816", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41301", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ferris wheel looks like it is going to spin in the water .", "storylet_id": "206506"}], [{"original_text": "I told my husband that I would love the experience of taking a tour on that boat. ", "album_id": "72157624083813322", "photo_flickr_id": "4617020781", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41301", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i told my husband that i would love the experience of taking a tour on that boat .", "storylet_id": "206507"}], [{"original_text": "This building is beautifully, and artistically designed. ", "album_id": "72157624083813322", "photo_flickr_id": "4617020979", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41301", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this building is beautifully , and artistically designed .", "storylet_id": "206508"}], [{"original_text": "This building reminded me of a building that my art teacher made us draw in art class. ", "album_id": "72157624083813322", "photo_flickr_id": "4617021181", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41301", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this building reminded me of a building that my art teacher made us draw in art class .", "storylet_id": "206509"}], [{"original_text": "The group got to take a trip around the city.", "album_id": "72157624083813322", "photo_flickr_id": "4617020203", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "41302", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group got to take a trip around the city .", "storylet_id": "206510"}], [{"original_text": "They saw a large Ferris Wheel on the shoreline.", "album_id": "72157624083813322", "photo_flickr_id": "4617634816", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "41302", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they saw a large location location on the shoreline .", "storylet_id": "206511"}], [{"original_text": "They even got to take a boat ride.", "album_id": "72157624083813322", "photo_flickr_id": "4617020781", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "41302", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even got to take a boat ride .", "storylet_id": "206512"}], [{"original_text": "They saw enormous buildings that looked gorgeous.", "album_id": "72157624083813322", "photo_flickr_id": "4617020979", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "41302", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they saw enormous buildings that looked gorgeous .", "storylet_id": "206513"}], [{"original_text": "At the end of the day, they saw everything that they wanted to see.", "album_id": "72157624083813322", "photo_flickr_id": "4617021181", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "41302", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , they saw everything that they wanted to see .", "storylet_id": "206514"}], [{"original_text": "We were almost at the city.", "album_id": "72157624083813322", "photo_flickr_id": "4617020203", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "41303", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were almost at the city .", "storylet_id": "206515"}], [{"original_text": "Our boat docked next to the city.", "album_id": "72157624083813322", "photo_flickr_id": "4617020781", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "41303", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our boat docked next to the city .", "storylet_id": "206516"}], [{"original_text": "A few minutes later we were in the city.", "album_id": "72157624083813322", "photo_flickr_id": "4617021181", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "41303", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few minutes later we were in the city .", "storylet_id": "206517"}], [{"original_text": "A red tree clocked our view.", "album_id": "72157624083813322", "photo_flickr_id": "4617021895", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "41303", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a red tree clocked our view .", "storylet_id": "206518"}], [{"original_text": "I gave up and decided just to enjoy the tree.", "album_id": "72157624083813322", "photo_flickr_id": "4617636400", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "41303", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i gave up and decided just to enjoy the tree .", "storylet_id": "206519"}], [{"original_text": "We headed out to see the town.", "album_id": "72157624083813322", "photo_flickr_id": "4617020203", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41304", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we headed out to see the town .", "storylet_id": "206520"}], [{"original_text": "We took a boat ride first to get to know the area.", "album_id": "72157624083813322", "photo_flickr_id": "4617020781", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41304", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a boat ride first to get to know the area .", "storylet_id": "206521"}], [{"original_text": "Then we went to go see some of the main sites.", "album_id": "72157624083813322", "photo_flickr_id": "4617021181", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41304", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we went to go see some of the main sites .", "storylet_id": "206522"}], [{"original_text": "We walked through the gardens for a bit.", "album_id": "72157624083813322", "photo_flickr_id": "4617021895", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41304", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we walked through the gardens for a bit .", "storylet_id": "206523"}], [{"original_text": "The plants and trees where beautiful.", "album_id": "72157624083813322", "photo_flickr_id": "4617636400", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41304", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the plants and trees where beautiful .", "storylet_id": "206524"}], [{"original_text": "it was a great night full of lights", "album_id": "72157625491301953", "photo_flickr_id": "5268189657", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41305", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a great night full of lights", "storylet_id": "206525"}], [{"original_text": "the night shined bright throughout the city", "album_id": "72157625491301953", "photo_flickr_id": "5268814744", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41305", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the night shined bright throughout the city", "storylet_id": "206526"}], [{"original_text": "the buildings were amazing to look at", "album_id": "72157625491301953", "photo_flickr_id": "5268835130", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41305", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the buildings were amazing to look at", "storylet_id": "206527"}], [{"original_text": "and the food was just as good", "album_id": "72157625491301953", "photo_flickr_id": "5268251141", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41305", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the food was just as good", "storylet_id": "206528"}], [{"original_text": "this was the perfect night for a night out ", "album_id": "72157625491301953", "photo_flickr_id": "5268866052", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41305", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the perfect night for a night out", "storylet_id": "206529"}], [{"original_text": "I love the lights.", "album_id": "72157625491301953", "photo_flickr_id": "5268189657", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41306", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love the lights .", "storylet_id": "206530"}], [{"original_text": "Such pretty colors.", "album_id": "72157625491301953", "photo_flickr_id": "5268196759", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41306", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "such pretty colors .", "storylet_id": "206531"}], [{"original_text": "So much to see.", "album_id": "72157625491301953", "photo_flickr_id": "5268814744", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41306", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so much to see .", "storylet_id": "206532"}], [{"original_text": "So much to do.", "album_id": "72157625491301953", "photo_flickr_id": "5268214145", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41306", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so much to do .", "storylet_id": "206533"}], [{"original_text": "And hot dogs!!!", "album_id": "72157625491301953", "photo_flickr_id": "5268251141", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41306", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and hot dogs ! ! !", "storylet_id": "206534"}], [{"original_text": "at night when the place is all lit up it feels like a different world.", "album_id": "72157625491301953", "photo_flickr_id": "5268189657", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41307", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at night when the place is all lit up it feels like a different world .", "storylet_id": "206535"}], [{"original_text": "all of the shops have little things that make them different than the next place.", "album_id": "72157625491301953", "photo_flickr_id": "5268814744", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41307", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the shops have little things that make them different than the next place .", "storylet_id": "206536"}], [{"original_text": "the way all of the buildings are lit up make you feel like magic is in the air.", "album_id": "72157625491301953", "photo_flickr_id": "5268835130", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41307", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the way all of the buildings are lit up make you feel like magic is in the air .", "storylet_id": "206537"}], [{"original_text": "we had food there as well. it was everything that i could have hoped for.", "album_id": "72157625491301953", "photo_flickr_id": "5268251141", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41307", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had food there as well . it was everything that i could have hoped for .", "storylet_id": "206538"}], [{"original_text": "all of the little shops where what i needed to see.", "album_id": "72157625491301953", "photo_flickr_id": "5268866052", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41307", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of the little shops where what i needed to see .", "storylet_id": "206539"}], [{"original_text": "We got to the center of the city and started looking for some food.", "album_id": "72157625491301953", "photo_flickr_id": "5268189657", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41308", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got to the center of the city and started looking for some food .", "storylet_id": "206540"}], [{"original_text": "We went by a couple of restaurants to see what we could find.", "album_id": "72157625491301953", "photo_flickr_id": "5268814744", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41308", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went by a couple of restaurants to see what we could find .", "storylet_id": "206541"}], [{"original_text": "The lights in the city around us where amazing.", "album_id": "72157625491301953", "photo_flickr_id": "5268835130", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41308", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lights in the city around us where amazing .", "storylet_id": "206542"}], [{"original_text": "We finally stopped off and got some food.", "album_id": "72157625491301953", "photo_flickr_id": "5268251141", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41308", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we finally stopped off and got some food .", "storylet_id": "206543"}], [{"original_text": "We ate and conversed for a few hours after.", "album_id": "72157625491301953", "photo_flickr_id": "5268866052", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41308", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ate and conversed for a few hours after .", "storylet_id": "206544"}], [{"original_text": "The city's modern art displays always get Tom's attention.", "album_id": "72157625491301953", "photo_flickr_id": "5268189657", "setting": "last-3-pick-old-and-tell", "worker_id": "70Z7P4YBJNXMWAV", "story_id": "41309", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city 's modern art displays always get [male] 's attention .", "storylet_id": "206545"}], [{"original_text": "Locals and tourists alike admire it and enjoy wandering around.", "album_id": "72157625491301953", "photo_flickr_id": "5268814744", "setting": "last-3-pick-old-and-tell", "worker_id": "70Z7P4YBJNXMWAV", "story_id": "41309", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "locals and tourists alike admire it and enjoy wandering around .", "storylet_id": "206546"}], [{"original_text": "Some of the light sculptures are gigantic.", "album_id": "72157625491301953", "photo_flickr_id": "5268835130", "setting": "last-3-pick-old-and-tell", "worker_id": "70Z7P4YBJNXMWAV", "story_id": "41309", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the light sculptures are gigantic .", "storylet_id": "206547"}], [{"original_text": "As usual Tom stops for a snack. This time it included sausages.", "album_id": "72157625491301953", "photo_flickr_id": "5268251141", "setting": "last-3-pick-old-and-tell", "worker_id": "70Z7P4YBJNXMWAV", "story_id": "41309", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as usual [male] stops for a snack . this time it included sausages .", "storylet_id": "206548"}], [{"original_text": "He then continues his journey with a happy stomach.", "album_id": "72157625491301953", "photo_flickr_id": "5268866052", "setting": "last-3-pick-old-and-tell", "worker_id": "70Z7P4YBJNXMWAV", "story_id": "41309", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he then continues his journey with a happy stomach .", "storylet_id": "206549"}], [{"original_text": "A field trip to the North Pole was not as boring as I thought it would be.", "album_id": "72157625615827438", "photo_flickr_id": "5267771989", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41310", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a field trip to the north pole was not as boring as i thought it would be .", "storylet_id": "206550"}], [{"original_text": "I saw the tallest tree I have ever seen before,", "album_id": "72157625615827438", "photo_flickr_id": "5267768843", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41310", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw the tallest tree i have ever seen before ,", "storylet_id": "206551"}], [{"original_text": "At the base of the tree there were gifts for all the kids who believe in Santa.", "album_id": "72157625615827438", "photo_flickr_id": "5267783555", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41310", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the base of the tree there were gifts for all the kids who believe in location .", "storylet_id": "206552"}], [{"original_text": "I saw the prettiest ornament that was made of glass.", "album_id": "72157625615827438", "photo_flickr_id": "5268436954", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41310", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i saw the prettiest ornament that was made of glass .", "storylet_id": "206553"}], [{"original_text": "My present was a ornament that lit up when on a tree.", "album_id": "72157625615827438", "photo_flickr_id": "5268387328", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41310", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my present was a ornament that lit up when on a tree .", "storylet_id": "206554"}], [{"original_text": "Last weekend we went to Disneyland.", "album_id": "72157625615827438", "photo_flickr_id": "5268379262", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41311", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last weekend we went to organization .", "storylet_id": "206555"}], [{"original_text": "Our favorite characters from Finding Nemo were there!", "album_id": "72157625615827438", "photo_flickr_id": "5267775219", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41311", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our favorite characters from finding nemo were there !", "storylet_id": "206556"}], [{"original_text": "There were also great big roller coasters that we went on.", "album_id": "72157625615827438", "photo_flickr_id": "5267778825", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41311", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were also great big roller coasters that we went on .", "storylet_id": "206557"}], [{"original_text": "We bought little gifts at the gift shop to.", "album_id": "72157625615827438", "photo_flickr_id": "5268436954", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41311", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we bought little gifts at the gift shop to .", "storylet_id": "206558"}], [{"original_text": "At the end, we enjoyed the lights at night.", "album_id": "72157625615827438", "photo_flickr_id": "5268402096", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41311", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , we enjoyed the lights at night .", "storylet_id": "206559"}], [{"original_text": "The sign was helpful and fun, letting us know where the \"Northpole began.\"", "album_id": "72157625615827438", "photo_flickr_id": "5267771989", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41312", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sign was helpful and fun , letting us know where the `` northpole began . ''", "storylet_id": "206560"}], [{"original_text": "The trees were beautiful and large, stretching toward the sky.", "album_id": "72157625615827438", "photo_flickr_id": "5267768843", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41312", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the trees were beautiful and large , stretching toward the sky .", "storylet_id": "206561"}], [{"original_text": "The presents themselves were all beautifully arranged. ", "album_id": "72157625615827438", "photo_flickr_id": "5267783555", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41312", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the presents themselves were all beautifully arranged .", "storylet_id": "206562"}], [{"original_text": "I really wanted the Mickey Mouse snow globe for myself.", "album_id": "72157625615827438", "photo_flickr_id": "5268436954", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41312", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i really wanted the organization organization snow globe for myself .", "storylet_id": "206563"}], [{"original_text": "I wanted to be sure our last message of the day was a positive one.", "album_id": "72157625615827438", "photo_flickr_id": "5268387328", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41312", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i wanted to be sure our last message of the day was a positive one .", "storylet_id": "206564"}], [{"original_text": "The Northpole has become a family tradition for us.", "album_id": "72157625615827438", "photo_flickr_id": "5267771989", "setting": "last-3-pick-old-and-tell", "worker_id": "ULIF6VMF7OHZYDI", "story_id": "41313", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the northpole has become a family tradition for us .", "storylet_id": "206565"}], [{"original_text": "Each year my sister, brother, and I bring our families. ", "album_id": "72157625615827438", "photo_flickr_id": "5267768843", "setting": "last-3-pick-old-and-tell", "worker_id": "ULIF6VMF7OHZYDI", "story_id": "41313", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each year my sister , brother , and i bring our families .", "storylet_id": "206566"}], [{"original_text": "The beautifully decorated trees bring nostalgic smiles to our faces.", "album_id": "72157625615827438", "photo_flickr_id": "5267783555", "setting": "last-3-pick-old-and-tell", "worker_id": "ULIF6VMF7OHZYDI", "story_id": "41313", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beautifully decorated trees bring nostalgic smiles to our faces .", "storylet_id": "206567"}], [{"original_text": "The ornaments seem become more complex each year.", "album_id": "72157625615827438", "photo_flickr_id": "5268436954", "setting": "last-3-pick-old-and-tell", "worker_id": "ULIF6VMF7OHZYDI", "story_id": "41313", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ornaments seem become more complex each year .", "storylet_id": "206568"}], [{"original_text": "The trip puts our families in the Christmas spirit and kick off the holiday season for us.", "album_id": "72157625615827438", "photo_flickr_id": "5268387328", "setting": "last-3-pick-old-and-tell", "worker_id": "ULIF6VMF7OHZYDI", "story_id": "41313", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the trip puts our families in the christmas spirit and kick off the holiday season for us .", "storylet_id": "206569"}], [{"original_text": "The sign was colored", "album_id": "72157625615827438", "photo_flickr_id": "5267771989", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41314", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sign was colored", "storylet_id": "206570"}], [{"original_text": "and the tree was big.", "album_id": "72157625615827438", "photo_flickr_id": "5267768843", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41314", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the tree was big .", "storylet_id": "206571"}], [{"original_text": "There were many presents", "album_id": "72157625615827438", "photo_flickr_id": "5267783555", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41314", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many presents", "storylet_id": "206572"}], [{"original_text": "and ornaments.", "album_id": "72157625615827438", "photo_flickr_id": "5268436954", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41314", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and ornaments .", "storylet_id": "206573"}], [{"original_text": "The sign was nice.", "album_id": "72157625615827438", "photo_flickr_id": "5268387328", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41314", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sign was nice .", "storylet_id": "206574"}], [{"original_text": "Our family went on a trip to enjoy the beautiful architecture. ", "album_id": "72157623463687412", "photo_flickr_id": "4369490190", "setting": "first-2-pick-and-tell", "worker_id": "XKR8X3T7I07WDCN", "story_id": "41315", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family went on a trip to enjoy the beautiful architecture .", "storylet_id": "206575"}], [{"original_text": "From the simple streets...", "album_id": "72157623463687412", "photo_flickr_id": "4368740843", "setting": "first-2-pick-and-tell", "worker_id": "XKR8X3T7I07WDCN", "story_id": "41315", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from the simple streets ...", "storylet_id": "206576"}], [{"original_text": "To the beautiful aquaducts. ", "album_id": "72157623463687412", "photo_flickr_id": "4369489630", "setting": "first-2-pick-and-tell", "worker_id": "XKR8X3T7I07WDCN", "story_id": "41315", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "to the beautiful aquaducts .", "storylet_id": "206577"}], [{"original_text": "The amazing mosaics that framed he gigantic walls. ", "album_id": "72157623463687412", "photo_flickr_id": "4369489854", "setting": "first-2-pick-and-tell", "worker_id": "XKR8X3T7I07WDCN", "story_id": "41315", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the amazing mosaics that framed he gigantic walls .", "storylet_id": "206578"}], [{"original_text": "Even the grounds were so beautifully sculpted. ", "album_id": "72157623463687412", "photo_flickr_id": "4369489956", "setting": "first-2-pick-and-tell", "worker_id": "XKR8X3T7I07WDCN", "story_id": "41315", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the grounds were so beautifully sculpted .", "storylet_id": "206579"}], [{"original_text": "The tour group is visiting some local ruins on their tour.", "album_id": "72157623463687412", "photo_flickr_id": "4369490190", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41316", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tour group is visiting some local ruins on their tour .", "storylet_id": "206580"}], [{"original_text": "This statue is either a dragon or a cat, they can't decide.", "album_id": "72157623463687412", "photo_flickr_id": "4368742159", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41316", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this statue is either a dragon or a cat , they ca n't decide .", "storylet_id": "206581"}], [{"original_text": "The group decides to explore the local ruins.", "album_id": "72157623463687412", "photo_flickr_id": "4368741893", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41316", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the group decides to explore the local ruins .", "storylet_id": "206582"}], [{"original_text": "After the dry dusty desert it is time to look at a local garden.", "album_id": "72157623463687412", "photo_flickr_id": "4369488922", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41316", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the dry dusty desert it is time to look at a local garden .", "storylet_id": "206583"}], [{"original_text": "It is amazing that you can have an oasis in the middle of the desert.", "album_id": "72157623463687412", "photo_flickr_id": "4368740365", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41316", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is amazing that you can have an oasis in the middle of the desert .", "storylet_id": "206584"}], [{"original_text": "Giant pillars reach for the heavens.", "album_id": "72157623463687412", "photo_flickr_id": "4369490190", "setting": "last-3-pick-old-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41317", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "giant pillars reach for the heavens .", "storylet_id": "206585"}], [{"original_text": "An ancient stone rocking horse found in the desert.", "album_id": "72157623463687412", "photo_flickr_id": "4368742159", "setting": "last-3-pick-old-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41317", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "an ancient stone rocking horse found in the desert .", "storylet_id": "206586"}], [{"original_text": "This is the entrance to the instance.", "album_id": "72157623463687412", "photo_flickr_id": "4368741893", "setting": "last-3-pick-old-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41317", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the entrance to the instance .", "storylet_id": "206587"}], [{"original_text": "Rich people take advantage of an oasis.", "album_id": "72157623463687412", "photo_flickr_id": "4369488922", "setting": "last-3-pick-old-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41317", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "rich people take advantage of an oasis .", "storylet_id": "206588"}], [{"original_text": "Their gardens bloom beautifully.", "album_id": "72157623463687412", "photo_flickr_id": "4368740365", "setting": "last-3-pick-old-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41317", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their gardens bloom beautifully .", "storylet_id": "206589"}], [{"original_text": "Last summer I went on vacation to another country.", "album_id": "72157623463687412", "photo_flickr_id": "4369490190", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41318", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last summer i went on vacation to another country .", "storylet_id": "206590"}], [{"original_text": "I saw all kinds of different architecture over there.", "album_id": "72157623463687412", "photo_flickr_id": "4368740843", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41318", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw all kinds of different architecture over there .", "storylet_id": "206591"}], [{"original_text": "It was very beautiful.", "album_id": "72157623463687412", "photo_flickr_id": "4369489630", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41318", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was very beautiful .", "storylet_id": "206592"}], [{"original_text": "There were so many religious buildings.", "album_id": "72157623463687412", "photo_flickr_id": "4369489854", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41318", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were so many religious buildings .", "storylet_id": "206593"}], [{"original_text": "And their gardens were beautiful despite it being so dry.", "album_id": "72157623463687412", "photo_flickr_id": "4369489956", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41318", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and their gardens were beautiful despite it being so dry .", "storylet_id": "206594"}], [{"original_text": "During vacation, we saw many Persian columns.", "album_id": "72157623463687412", "photo_flickr_id": "4369490190", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41319", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during vacation , we saw many persian columns .", "storylet_id": "206595"}], [{"original_text": "We saw weird statues.", "album_id": "72157623463687412", "photo_flickr_id": "4368742159", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41319", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw weird statues .", "storylet_id": "206596"}], [{"original_text": "We even got to explore ruined temples.", "album_id": "72157623463687412", "photo_flickr_id": "4368741893", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41319", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even got to explore ruined temples .", "storylet_id": "206597"}], [{"original_text": "Each day we stayed at a beautiful resort.", "album_id": "72157623463687412", "photo_flickr_id": "4369488922", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41319", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "each day we stayed at a beautiful resort .", "storylet_id": "206598"}], [{"original_text": "It's rose gardens were beautiful.", "album_id": "72157623463687412", "photo_flickr_id": "4368740365", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41319", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's rose gardens were beautiful .", "storylet_id": "206599"}], [{"original_text": "The food art show was very interesting.", "album_id": "72157624983879722", "photo_flickr_id": "5001916365", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41320", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the food art show was very interesting .", "storylet_id": "206600"}], [{"original_text": "This watermelon was made into a puffer fish.", "album_id": "72157624983879722", "photo_flickr_id": "5002527254", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41320", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this watermelon was made into a puffer fish .", "storylet_id": "206601"}], [{"original_text": "These two are really cute. ", "album_id": "72157624983879722", "photo_flickr_id": "5002529708", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41320", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these two are really cute .", "storylet_id": "206602"}], [{"original_text": "The pets came to see the food. ", "album_id": "72157624983879722", "photo_flickr_id": "5002542872", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41320", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pets came to see the food .", "storylet_id": "206603"}], [{"original_text": "The goats love to eat the hay after the show.", "album_id": "72157624983879722", "photo_flickr_id": "5002549174", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41320", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the goats love to eat the hay after the show .", "storylet_id": "206604"}], [{"original_text": "I like decorative vegetables.", "album_id": "72157624983879722", "photo_flickr_id": "5001916365", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41321", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i like decorative vegetables .", "storylet_id": "206605"}], [{"original_text": "Like this watermelon.", "album_id": "72157624983879722", "photo_flickr_id": "5002527254", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41321", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "like this watermelon .", "storylet_id": "206606"}], [{"original_text": "And this guys.", "album_id": "72157624983879722", "photo_flickr_id": "5002529708", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41321", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and this guys .", "storylet_id": "206607"}], [{"original_text": "Or this funny bloke.", "album_id": "72157624983879722", "photo_flickr_id": "5001927373", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41321", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "or this funny bloke .", "storylet_id": "206608"}], [{"original_text": "And this unrelated dolphin!", "album_id": "72157624983879722", "photo_flickr_id": "5001928513", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41321", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and this unrelated dolphin !", "storylet_id": "206609"}], [{"original_text": "My children and I had fun playing with our foods. We made faces from the different veggies.", "album_id": "72157624983879722", "photo_flickr_id": "5001916365", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41322", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my children and i had fun playing with our foods . we made faces from the different veggies .", "storylet_id": "206610"}], [{"original_text": "My son made a porcupine.", "album_id": "72157624983879722", "photo_flickr_id": "5002527254", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41322", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my son made a porcupine .", "storylet_id": "206611"}], [{"original_text": "I made a girl and my wife made a little boy.", "album_id": "72157624983879722", "photo_flickr_id": "5002529708", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41322", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i made a girl and my wife made a little boy .", "storylet_id": "206612"}], [{"original_text": "We then fed them to the pigs.", "album_id": "72157624983879722", "photo_flickr_id": "5002542872", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41322", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we then fed them to the pigs .", "storylet_id": "206613"}], [{"original_text": "We fed the goats while we were there too.", "album_id": "72157624983879722", "photo_flickr_id": "5002549174", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41322", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we fed the goats while we were there too .", "storylet_id": "206614"}], [{"original_text": "My grandchildren's school had an art show where foods made into animals was a category.", "album_id": "72157624983879722", "photo_flickr_id": "5001916365", "setting": "last-3-pick-old-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "41323", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my grandchildren 's school had an art show where foods made into animals was a category .", "storylet_id": "206615"}], [{"original_text": "We made this porcupine out of a watermelon.", "album_id": "72157624983879722", "photo_flickr_id": "5002527254", "setting": "last-3-pick-old-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "41323", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made this porcupine out of a watermelon .", "storylet_id": "206616"}], [{"original_text": "This was a first place very creative entry.", "album_id": "72157624983879722", "photo_flickr_id": "5002529708", "setting": "last-3-pick-old-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "41323", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was a first place very creative entry .", "storylet_id": "206617"}], [{"original_text": "This was an interesting alligator.", "album_id": "72157624983879722", "photo_flickr_id": "5001927373", "setting": "last-3-pick-old-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "41323", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was an interesting alligator .", "storylet_id": "206618"}], [{"original_text": "There was also a contest for drawings which my granddaughter won a prize in!", "album_id": "72157624983879722", "photo_flickr_id": "5001928513", "setting": "last-3-pick-old-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "41323", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was also a contest for drawings which my granddaughter won a prize in !", "storylet_id": "206619"}], [{"original_text": "The creature was green", "album_id": "72157624983879722", "photo_flickr_id": "5001916365", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41324", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the creature was green", "storylet_id": "206620"}], [{"original_text": "and had a face.", "album_id": "72157624983879722", "photo_flickr_id": "5002527254", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41324", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and had a face .", "storylet_id": "206621"}], [{"original_text": "There were many designs", "album_id": "72157624983879722", "photo_flickr_id": "5002529708", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41324", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many designs", "storylet_id": "206622"}], [{"original_text": "out of vegetables", "album_id": "72157624983879722", "photo_flickr_id": "5001927373", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41324", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "out of vegetables", "storylet_id": "206623"}], [{"original_text": "and even a drawing.", "album_id": "72157624983879722", "photo_flickr_id": "5001928513", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41324", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and even a drawing .", "storylet_id": "206624"}], [{"original_text": "Nothing like a carnival on a beach, it is the most fun you could have.", "album_id": "72157624986160830", "photo_flickr_id": "5003390380", "setting": "first-2-pick-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "41325", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "nothing like a carnival on a beach , it is the most fun you could have .", "storylet_id": "206625"}], [{"original_text": "When you are not at the carnival you might enjoy a walk on the beach.", "album_id": "72157624986160830", "photo_flickr_id": "5002803601", "setting": "first-2-pick-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "41325", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when you are not at the carnival you might enjoy a walk on the beach .", "storylet_id": "206626"}], [{"original_text": "A lot of people like riding the Ferris wheel, it is one of the biggest attractions.", "album_id": "72157624986160830", "photo_flickr_id": "5003408940", "setting": "first-2-pick-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "41325", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lot of people like riding the ferris wheel , it is one of the biggest attractions .", "storylet_id": "206627"}], [{"original_text": "After the carnival on the beach you never know what to expect. Maybe a wedding at a baseball game.", "album_id": "72157624986160830", "photo_flickr_id": "5003419804", "setting": "first-2-pick-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "41325", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the carnival on the beach you never know what to expect . maybe a wedding at a baseball game .", "storylet_id": "206628"}], [{"original_text": "And to top the night off why not a couple mascots acting silly at the game.", "album_id": "72157624986160830", "photo_flickr_id": "5002817133", "setting": "first-2-pick-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "41325", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and to top the night off why not a couple mascots acting silly at the game .", "storylet_id": "206629"}], [{"original_text": "The boardwalk is so crowded today. Are we sure we want to go?", "album_id": "72157624986160830", "photo_flickr_id": "5003390380", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41326", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boardwalk is so crowded today . are we sure we want to go ?", "storylet_id": "206630"}], [{"original_text": "Have to ride the Cyclone. It's always a must.", "album_id": "72157624986160830", "photo_flickr_id": "5003404730", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41326", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "have to ride the cyclone . it 's always a must .", "storylet_id": "206631"}], [{"original_text": "Let's ride one more time. ", "album_id": "72157624986160830", "photo_flickr_id": "5002799343", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41326", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "let 's ride one more time .", "storylet_id": "206632"}], [{"original_text": "The beach is so warm and I'm going swimming before we go to the ballgame.", "album_id": "72157624986160830", "photo_flickr_id": "5002802211", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41326", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beach is so warm and i 'm going swimming before we go to the ballgame .", "storylet_id": "206633"}], [{"original_text": "What a surprise..a wedding before the ballgame. That was a really cool way to get married.", "album_id": "72157624986160830", "photo_flickr_id": "5003419804", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41326", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what a surprise..a wedding before the ballgame . that was a really cool way to get married .", "storylet_id": "206634"}], [{"original_text": "The beach was crowded, even early in the morning.", "album_id": "72157624986160830", "photo_flickr_id": "5003390380", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41327", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beach was crowded , even early in the morning .", "storylet_id": "206635"}], [{"original_text": "Luckily, there was room to play in the sand.", "album_id": "72157624986160830", "photo_flickr_id": "5002803601", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41327", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "luckily , there was room to play in the sand .", "storylet_id": "206636"}], [{"original_text": "They'd even sat up rides for the crowd.", "album_id": "72157624986160830", "photo_flickr_id": "5003408940", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41327", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they 'd even sat up rides for the crowd .", "storylet_id": "206637"}], [{"original_text": "After the beach, we decided to go to a baseball game.", "album_id": "72157624986160830", "photo_flickr_id": "5003419804", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41327", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the beach , we decided to go to a baseball game .", "storylet_id": "206638"}], [{"original_text": "It lasted long enough to be our last event, but it was worth it.", "album_id": "72157624986160830", "photo_flickr_id": "5002817133", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41327", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it lasted long enough to be our last event , but it was worth it .", "storylet_id": "206639"}], [{"original_text": "The fair is in town today", "album_id": "72157624986160830", "photo_flickr_id": "5003390380", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41328", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fair is in town today", "storylet_id": "206640"}], [{"original_text": "and it is right off of the beach. What a beautiful day.", "album_id": "72157624986160830", "photo_flickr_id": "5002803601", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41328", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and it is right off of the beach . what a beautiful day .", "storylet_id": "206641"}], [{"original_text": "The view from the Ferris Wheel is breathtaking. ", "album_id": "72157624986160830", "photo_flickr_id": "5003408940", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41328", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the view from the organization organization is breathtaking .", "storylet_id": "206642"}], [{"original_text": "Not far from the fair, a couple is taking pictures in a baseball field.", "album_id": "72157624986160830", "photo_flickr_id": "5003419804", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41328", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "not far from the fair , a couple is taking pictures in a baseball field .", "storylet_id": "206643"}], [{"original_text": "Overall, the good weather brings people out and about. It was a good day.", "album_id": "72157624986160830", "photo_flickr_id": "5002817133", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41328", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall , the good weather brings people out and about . it was a good day .", "storylet_id": "206644"}], [{"original_text": "During our trip to our friends' marriage, we decided to stop at the beach.", "album_id": "72157624986160830", "photo_flickr_id": "5003390380", "setting": "last-3-pick-old-and-tell", "worker_id": "PFE1D8HO1B73ZE1", "story_id": "41329", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during our trip to our friends ' marriage , we decided to stop at the beach .", "storylet_id": "206645"}], [{"original_text": "There was an amusement park there that we took part in.", "album_id": "72157624986160830", "photo_flickr_id": "5003404730", "setting": "last-3-pick-old-and-tell", "worker_id": "PFE1D8HO1B73ZE1", "story_id": "41329", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was an amusement park there that we took part in .", "storylet_id": "206646"}], [{"original_text": "The rollercoaster looked especially fun.", "album_id": "72157624986160830", "photo_flickr_id": "5002799343", "setting": "last-3-pick-old-and-tell", "worker_id": "PFE1D8HO1B73ZE1", "story_id": "41329", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the rollercoaster looked especially fun .", "storylet_id": "206647"}], [{"original_text": "The beach was very relaxing, just busy enough to not be too busy.", "album_id": "72157624986160830", "photo_flickr_id": "5002802211", "setting": "last-3-pick-old-and-tell", "worker_id": "PFE1D8HO1B73ZE1", "story_id": "41329", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beach was very relaxing , just busy enough to not be too busy .", "storylet_id": "206648"}], [{"original_text": "The marriage was wonderful to attend. They had it at a baseball park.", "album_id": "72157624986160830", "photo_flickr_id": "5003419804", "setting": "last-3-pick-old-and-tell", "worker_id": "PFE1D8HO1B73ZE1", "story_id": "41329", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the marriage was wonderful to attend . they had it at a baseball park .", "storylet_id": "206649"}], [{"original_text": "We went to go visit the Buckingham Palace in England.", "album_id": "72157624758314534", "photo_flickr_id": "4906491205", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41330", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to go visit the location location in location .", "storylet_id": "206650"}], [{"original_text": "There were guards patrolling the building.", "album_id": "72157624758314534", "photo_flickr_id": "4907080060", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41330", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were guards patrolling the building .", "storylet_id": "206651"}], [{"original_text": "There were also lots of tourists looking.", "album_id": "72157624758314534", "photo_flickr_id": "4906492249", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41330", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were also lots of tourists looking .", "storylet_id": "206652"}], [{"original_text": "The front of the building was amazing.", "album_id": "72157624758314534", "photo_flickr_id": "4906492657", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41330", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the front of the building was amazing .", "storylet_id": "206653"}], [{"original_text": "Afterward, we ended the day with a ferris wheel ride.", "album_id": "72157624758314534", "photo_flickr_id": "4906493873", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41330", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward , we ended the day with a ferris wheel ride .", "storylet_id": "206654"}], [{"original_text": "The church was in the middle of town.", "album_id": "72157624758314534", "photo_flickr_id": "4907079736", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41331", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the church was in the middle of town .", "storylet_id": "206655"}], [{"original_text": "The townspeople liked the old church.", "album_id": "72157624758314534", "photo_flickr_id": "4906492389", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41331", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the townspeople liked the old church .", "storylet_id": "206656"}], [{"original_text": "The church had a lot of history. ", "album_id": "72157624758314534", "photo_flickr_id": "4906492657", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41331", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the church had a lot of history .", "storylet_id": "206657"}], [{"original_text": "You could see it from the Ferris wheel.", "album_id": "72157624758314534", "photo_flickr_id": "4906493873", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41331", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you could see it from the ferris wheel .", "storylet_id": "206658"}], [{"original_text": "Everyone in the town appreciated the history of the old church.", "album_id": "72157624758314534", "photo_flickr_id": "4907082044", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41331", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone in the town appreciated the history of the old church .", "storylet_id": "206659"}], [{"original_text": "We went sightseeing while in Britain. The old architecture is so artistic.", "album_id": "72157624758314534", "photo_flickr_id": "4906491205", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41332", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went sightseeing while in location . the old architecture is so artistic .", "storylet_id": "206660"}], [{"original_text": "A guard makes his rounds, quietly, I'm sure.", "album_id": "72157624758314534", "photo_flickr_id": "4907080060", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41332", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a guard makes his rounds , quietly , i 'm sure .", "storylet_id": "206661"}], [{"original_text": "This building is another that we came across. It's is also a testament to their artful nature.", "album_id": "72157624758314534", "photo_flickr_id": "4906492249", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41332", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this building is another that we came across . it 's is also a testament to their artful nature .", "storylet_id": "206662"}], [{"original_text": "Old Gothic cathedrals always capture the attention with their beauty.", "album_id": "72157624758314534", "photo_flickr_id": "4906492657", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41332", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "old gothic cathedrals always capture the attention with their beauty .", "storylet_id": "206663"}], [{"original_text": "We considered going on the London Eye Ferris wheel. That is also fantastic architecture.", "album_id": "72157624758314534", "photo_flickr_id": "4906493873", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41332", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we considered going on the location location location wheel . that is also fantastic architecture .", "storylet_id": "206664"}], [{"original_text": "We took a trip to London this past week.", "album_id": "72157624758314534", "photo_flickr_id": "4906491205", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41333", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to location this past week .", "storylet_id": "206665"}], [{"original_text": "We were able to see the famous soldiers with the furry black hats.", "album_id": "72157624758314534", "photo_flickr_id": "4907080060", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41333", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were able to see the famous soldiers with the furry black hats .", "storylet_id": "206666"}], [{"original_text": "Unfortunately, it was raining.", "album_id": "72157624758314534", "photo_flickr_id": "4906492249", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41333", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "unfortunately , it was raining .", "storylet_id": "206667"}], [{"original_text": "We saw many historical buildings.", "album_id": "72157624758314534", "photo_flickr_id": "4906492657", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41333", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw many historical buildings .", "storylet_id": "206668"}], [{"original_text": "There was even a giant ferris wheel.", "album_id": "72157624758314534", "photo_flickr_id": "4906493873", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41333", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was even a giant ferris wheel .", "storylet_id": "206669"}], [{"original_text": "The gate was large", "album_id": "72157624758314534", "photo_flickr_id": "4906491205", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41334", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the gate was large", "storylet_id": "206670"}], [{"original_text": "near the building.", "album_id": "72157624758314534", "photo_flickr_id": "4907080060", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41334", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "near the building .", "storylet_id": "206671"}], [{"original_text": "They visited the castle", "album_id": "72157624758314534", "photo_flickr_id": "4906492249", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41334", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they visited the castle", "storylet_id": "206672"}], [{"original_text": "that had a big gate", "album_id": "72157624758314534", "photo_flickr_id": "4906492657", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41334", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that had a big gate", "storylet_id": "206673"}], [{"original_text": "with a ferris wheel.", "album_id": "72157624758314534", "photo_flickr_id": "4906493873", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41334", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with a ferris wheel .", "storylet_id": "206674"}], [{"original_text": "The Orpheum was hosting an amazing concert.", "album_id": "72157623346252133", "photo_flickr_id": "4371599587", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "41335", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the orpheum was hosting an amazing concert .", "storylet_id": "206675"}], [{"original_text": "The crowd was filling the streets.", "album_id": "72157623346252133", "photo_flickr_id": "4372353070", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "41335", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd was filling the streets .", "storylet_id": "206676"}], [{"original_text": "The band was amazing and blew everyone away.", "album_id": "72157623346252133", "photo_flickr_id": "4371604001", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "41335", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band was amazing and blew everyone away .", "storylet_id": "206677"}], [{"original_text": "In the final song they sang everyone favorite song.", "album_id": "72157623346252133", "photo_flickr_id": "4372356542", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "41335", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the final song they sang everyone favorite song .", "storylet_id": "206678"}], [{"original_text": "The venue was beautiful and everyone had a good time.", "album_id": "72157623346252133", "photo_flickr_id": "4374623418", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "41335", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the venue was beautiful and everyone had a good time .", "storylet_id": "206679"}], [{"original_text": "We are in Canada for the opening ceremonies for the Olympics.", "album_id": "72157623346252133", "photo_flickr_id": "4374615378", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41336", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are in location for the opening ceremonies for the olympics .", "storylet_id": "206680"}], [{"original_text": "It's a Mom, Dad, and their daughter. The daughter is warned not to get lost in the crowd.", "album_id": "72157623346252133", "photo_flickr_id": "4371605033", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41336", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's a mom , dad , and their daughter . the daughter is warned not to get lost in the crowd .", "storylet_id": "206681"}], [{"original_text": "Once they get in the building it is a little less crowded and more manageable.", "album_id": "72157623346252133", "photo_flickr_id": "4372356542", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41336", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once they get in the building it is a little less crowded and more manageable .", "storylet_id": "206682"}], [{"original_text": "The family sits down for the performance.", "album_id": "72157623346252133", "photo_flickr_id": "4374623418", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41336", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family sits down for the performance .", "storylet_id": "206683"}], [{"original_text": "The light show and fireworks is just the spectacle that they were hoping for.", "album_id": "72157623346252133", "photo_flickr_id": "4373860945", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41336", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the light show and fireworks is just the spectacle that they were hoping for .", "storylet_id": "206684"}], [{"original_text": "went Ice Skating in Canada.", "album_id": "72157623346252133", "photo_flickr_id": "4374615378", "setting": "last-3-pick-old-and-tell", "worker_id": "K3835000BNMDSJ9", "story_id": "41337", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went ice skating in location .", "storylet_id": "206685"}], [{"original_text": "The crowd was extremely large. ", "album_id": "72157623346252133", "photo_flickr_id": "4371605033", "setting": "last-3-pick-old-and-tell", "worker_id": "K3835000BNMDSJ9", "story_id": "41337", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd was extremely large .", "storylet_id": "206686"}], [{"original_text": "They seem to take this sport very seriously there.", "album_id": "72157623346252133", "photo_flickr_id": "4372356542", "setting": "last-3-pick-old-and-tell", "worker_id": "K3835000BNMDSJ9", "story_id": "41337", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they seem to take this sport very seriously there .", "storylet_id": "206687"}], [{"original_text": "I could not believe how beautiful the rink was. ", "album_id": "72157623346252133", "photo_flickr_id": "4374623418", "setting": "last-3-pick-old-and-tell", "worker_id": "K3835000BNMDSJ9", "story_id": "41337", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i could not believe how beautiful the rink was .", "storylet_id": "206688"}], [{"original_text": "We also went to a rock concert.", "album_id": "72157623346252133", "photo_flickr_id": "4373860945", "setting": "last-3-pick-old-and-tell", "worker_id": "K3835000BNMDSJ9", "story_id": "41337", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also went to a rock concert .", "storylet_id": "206689"}], [{"original_text": "We vacationed in Canada last month.", "album_id": "72157623346252133", "photo_flickr_id": "4374615378", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41338", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we vacationed in location last month .", "storylet_id": "206690"}], [{"original_text": "We attended large events.", "album_id": "72157623346252133", "photo_flickr_id": "4371605033", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41338", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we attended large events .", "storylet_id": "206691"}], [{"original_text": "We went ice skating.", "album_id": "72157623346252133", "photo_flickr_id": "4372356542", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41338", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went ice skating .", "storylet_id": "206692"}], [{"original_text": "We saw beautiful buildings.", "album_id": "72157623346252133", "photo_flickr_id": "4374623418", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41338", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw beautiful buildings .", "storylet_id": "206693"}], [{"original_text": "We even saw a festival!", "album_id": "72157623346252133", "photo_flickr_id": "4373860945", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41338", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even saw a festival !", "storylet_id": "206694"}], [{"original_text": "On our way to a concert", "album_id": "72157623346252133", "photo_flickr_id": "4374615378", "setting": "last-3-pick-old-and-tell", "worker_id": "30USX5LLLIRAJOU", "story_id": "41339", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our way to a concert", "storylet_id": "206695"}], [{"original_text": "getting ready for the concert", "album_id": "72157623346252133", "photo_flickr_id": "4371605033", "setting": "last-3-pick-old-and-tell", "worker_id": "30USX5LLLIRAJOU", "story_id": "41339", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "getting ready for the concert", "storylet_id": "206696"}], [{"original_text": "wow they pulled someone up on stage", "album_id": "72157623346252133", "photo_flickr_id": "4372356542", "setting": "last-3-pick-old-and-tell", "worker_id": "30USX5LLLIRAJOU", "story_id": "41339", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "wow they pulled someone up on stage", "storylet_id": "206697"}], [{"original_text": "rocking out to music", "album_id": "72157623346252133", "photo_flickr_id": "4374623418", "setting": "last-3-pick-old-and-tell", "worker_id": "30USX5LLLIRAJOU", "story_id": "41339", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "rocking out to music", "storylet_id": "206698"}], [{"original_text": "fantastic fireworks at end", "album_id": "72157623346252133", "photo_flickr_id": "4373860945", "setting": "last-3-pick-old-and-tell", "worker_id": "30USX5LLLIRAJOU", "story_id": "41339", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fantastic fireworks at end", "storylet_id": "206699"}], [{"original_text": "We went to see the circus performance in town this week.", "album_id": "72157623531002447", "photo_flickr_id": "4447625494", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41340", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to see the circus performance in town this week .", "storylet_id": "206700"}], [{"original_text": "They had many people in crazy outfits.", "album_id": "72157623531002447", "photo_flickr_id": "4447626310", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41340", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had many people in crazy outfits .", "storylet_id": "206701"}], [{"original_text": "And interesting places to eat.", "album_id": "72157623531002447", "photo_flickr_id": "4446850801", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41340", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and interesting places to eat .", "storylet_id": "206702"}], [{"original_text": "These guys drew the most attention due to their crazy stunts.", "album_id": "72157623531002447", "photo_flickr_id": "4446851553", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41340", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these guys drew the most attention due to their crazy stunts .", "storylet_id": "206703"}], [{"original_text": "My favorite were the people dressed in old outfits, they look like they came right from the 1800s.", "album_id": "72157623531002447", "photo_flickr_id": "4446871885", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41340", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite were the people dressed in old outfits , they look like they came right from the 1800s .", "storylet_id": "206704"}], [{"original_text": "The outdoor circus comes to town every winter and we never miss it/", "album_id": "72157623531002447", "photo_flickr_id": "4446850157", "setting": "first-2-pick-and-tell", "worker_id": "MLD2V2296233PNW", "story_id": "41341", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the outdoor circus comes to town every winter and we never miss it/", "storylet_id": "206705"}], [{"original_text": "We enjoy all the different attractions.", "album_id": "72157623531002447", "photo_flickr_id": "4447625494", "setting": "first-2-pick-and-tell", "worker_id": "MLD2V2296233PNW", "story_id": "41341", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we enjoy all the different attractions .", "storylet_id": "206706"}], [{"original_text": "I really like the silly ones, they really make me laugh.", "album_id": "72157623531002447", "photo_flickr_id": "4447626310", "setting": "first-2-pick-and-tell", "worker_id": "MLD2V2296233PNW", "story_id": "41341", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i really like the silly ones , they really make me laugh .", "storylet_id": "206707"}], [{"original_text": "These guys never fail to astonish me with the things they can do.", "album_id": "72157623531002447", "photo_flickr_id": "4446851553", "setting": "first-2-pick-and-tell", "worker_id": "MLD2V2296233PNW", "story_id": "41341", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these guys never fail to astonish me with the things they can do .", "storylet_id": "206708"}], [{"original_text": "But if you wait too late, it's hard to get a good seat for the main attraction.", "album_id": "72157623531002447", "photo_flickr_id": "4447649692", "setting": "first-2-pick-and-tell", "worker_id": "MLD2V2296233PNW", "story_id": "41341", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but if you wait too late , it 's hard to get a good seat for the main attraction .", "storylet_id": "206709"}], [{"original_text": "The fair is a fun place for everyone.", "album_id": "72157623531002447", "photo_flickr_id": "4447625494", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41342", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fair is a fun place for everyone .", "storylet_id": "206710"}], [{"original_text": "You can meet strong men,", "album_id": "72157623531002447", "photo_flickr_id": "4447626310", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41342", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you can meet strong men ,", "storylet_id": "206711"}], [{"original_text": "you can meet new people,", "album_id": "72157623531002447", "photo_flickr_id": "4446850801", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41342", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you can meet new people ,", "storylet_id": "206712"}], [{"original_text": "you can see the amazing carnival people performing fun acts.", "album_id": "72157623531002447", "photo_flickr_id": "4446851553", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41342", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you can see the amazing carnival people performing fun acts .", "storylet_id": "206713"}], [{"original_text": "Overall, the fair is a great place to spend time with others.", "album_id": "72157623531002447", "photo_flickr_id": "4446871885", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41342", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall , the fair is a great place to spend time with others .", "storylet_id": "206714"}], [{"original_text": "Going to the big circus tonight what fun!!", "album_id": "72157623531002447", "photo_flickr_id": "4447625494", "setting": "last-3-pick-old-and-tell", "worker_id": "CN6FDW3SNVCMMOS", "story_id": "41343", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going to the big circus tonight what fun ! !", "storylet_id": "206715"}], [{"original_text": "The performers were entertaining to watch", "album_id": "72157623531002447", "photo_flickr_id": "4447626310", "setting": "last-3-pick-old-and-tell", "worker_id": "CN6FDW3SNVCMMOS", "story_id": "41343", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the performers were entertaining to watch", "storylet_id": "206716"}], [{"original_text": "Taking a break for some carnival snacks yum!!", "album_id": "72157623531002447", "photo_flickr_id": "4446850801", "setting": "last-3-pick-old-and-tell", "worker_id": "CN6FDW3SNVCMMOS", "story_id": "41343", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "taking a break for some carnival snacks yum ! !", "storylet_id": "206717"}], [{"original_text": "Wow, How brave they are to perform this and not be scared.", "album_id": "72157623531002447", "photo_flickr_id": "4446851553", "setting": "last-3-pick-old-and-tell", "worker_id": "CN6FDW3SNVCMMOS", "story_id": "41343", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "wow , how brave they are to perform this and not be scared .", "storylet_id": "206718"}], [{"original_text": "Some people were dressed in period costumes.", "album_id": "72157623531002447", "photo_flickr_id": "4446871885", "setting": "last-3-pick-old-and-tell", "worker_id": "CN6FDW3SNVCMMOS", "story_id": "41343", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people were dressed in period costumes .", "storylet_id": "206719"}], [{"original_text": "The crisp fall night gives way to the bright lights of a carnival and the man and monkey who greet you at the gate.", "album_id": "72157623531002447", "photo_flickr_id": "4447625494", "setting": "last-3-pick-old-and-tell", "worker_id": "ULIF6VMF7OHZYDI", "story_id": "41344", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crisp fall night gives way to the bright lights of a carnival and the man and monkey who greet you at the gate .", "storylet_id": "206720"}], [{"original_text": "Two strong men in striped suits perform feats for the crowds. ", "album_id": "72157623531002447", "photo_flickr_id": "4447626310", "setting": "last-3-pick-old-and-tell", "worker_id": "ULIF6VMF7OHZYDI", "story_id": "41344", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "two strong men in striped suits perform feats for the crowds .", "storylet_id": "206721"}], [{"original_text": "Visitors pack into small eating areas to warm up.", "album_id": "72157623531002447", "photo_flickr_id": "4446850801", "setting": "last-3-pick-old-and-tell", "worker_id": "ULIF6VMF7OHZYDI", "story_id": "41344", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "visitors pack into small eating areas to warm up .", "storylet_id": "206722"}], [{"original_text": "The performers however don't seem to feel the cold as they go about their nights performing their practiced routines.", "album_id": "72157623531002447", "photo_flickr_id": "4446851553", "setting": "last-3-pick-old-and-tell", "worker_id": "ULIF6VMF7OHZYDI", "story_id": "41344", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the performers however do n't seem to feel the cold as they go about their nights performing their practiced routines .", "storylet_id": "206723"}], [{"original_text": "Some of the people in attendance are difficult to place as actors in period clothing, guests wearing costumes, or victims of the carnival's experimentation in time traveling. Their good moods don't leave you especially curious regardless.", "album_id": "72157623531002447", "photo_flickr_id": "4446871885", "setting": "last-3-pick-old-and-tell", "worker_id": "ULIF6VMF7OHZYDI", "story_id": "41344", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the people in attendance are difficult to place as actors in period clothing , guests wearing costumes , or victims of the carnival 's experimentation in time traveling . their good moods do n't leave you especially curious regardless .", "storylet_id": "206724"}], [{"original_text": "On vacation i couldn't help wondering where all the people were because it was a blank street.", "album_id": "72157623660497540", "photo_flickr_id": "4449006041", "setting": "first-2-pick-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "41345", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on vacation i could n't help wondering where all the people were because it was a blank street .", "storylet_id": "206725"}], [{"original_text": " I walked up upon a large massive Ferris wheel and i have to admit i just wanted to sit high on it.", "album_id": "72157623660497540", "photo_flickr_id": "4448994659", "setting": "first-2-pick-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "41345", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i walked up upon a large massive ferris wheel and i have to admit i just wanted to sit high on it .", "storylet_id": "206726"}], [{"original_text": " I noticed when i walked up to it that it was titled the Wheel of Manchester.", "album_id": "72157623660497540", "photo_flickr_id": "4449782954", "setting": "first-2-pick-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "41345", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i noticed when i walked up to it that it was titled the wheel of location .", "storylet_id": "206727"}], [{"original_text": "I continued on my trip and clipped a very great picture of a dome room on top a chapel. ", "album_id": "72157623660497540", "photo_flickr_id": "4449009633", "setting": "first-2-pick-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "41345", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i continued on my trip and clipped a very great picture of a dome room on top a chapel .", "storylet_id": "206728"}], [{"original_text": "At the end of the day i needed to spend the time to over look everything on top of the roof tops.", "album_id": "72157623660497540", "photo_flickr_id": "4449011071", "setting": "first-2-pick-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "41345", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day i needed to spend the time to over look everything on top of the roof tops .", "storylet_id": "206729"}], [{"original_text": "The ferris wheel in the city was towering over.", "album_id": "72157623660497540", "photo_flickr_id": "4448994659", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41346", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ferris wheel in the city was towering over .", "storylet_id": "206730"}], [{"original_text": "The view of the city with many old historic buildings.", "album_id": "72157623660497540", "photo_flickr_id": "4449011071", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41346", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view of the city with many old historic buildings .", "storylet_id": "206731"}], [{"original_text": "The corner building with a single bus in front was interesting.", "album_id": "72157623660497540", "photo_flickr_id": "4449012337", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41346", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the corner building with a single bus in front was interesting .", "storylet_id": "206732"}], [{"original_text": "The view of the historic building provided a memorable photograph.", "album_id": "72157623660497540", "photo_flickr_id": "4449014927", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41346", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view of the historic building provided a memorable photograph .", "storylet_id": "206733"}], [{"original_text": "The view from high above of the historic restaurant.", "album_id": "72157623660497540", "photo_flickr_id": "4449791878", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41346", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view from high above of the historic restaurant .", "storylet_id": "206734"}], [{"original_text": "On my vacation I rode the Ferris wheel. ", "album_id": "72157623660497540", "photo_flickr_id": "4448994659", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "41347", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on my vacation i rode the ferris wheel .", "storylet_id": "206735"}], [{"original_text": "This is in main city I stayed in, it was so busy. ", "album_id": "72157623660497540", "photo_flickr_id": "4449011071", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "41347", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is in main city i stayed in , it was so busy .", "storylet_id": "206736"}], [{"original_text": "There was a lot of traffic, but it was easy to get around. ", "album_id": "72157623660497540", "photo_flickr_id": "4449012337", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "41347", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a lot of traffic , but it was easy to get around .", "storylet_id": "206737"}], [{"original_text": "My favorite day was when I went to this old church. ", "album_id": "72157623660497540", "photo_flickr_id": "4449014927", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "41347", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my favorite day was when i went to this old church .", "storylet_id": "206738"}], [{"original_text": "I was able to take this stunning picture from a hot air balloon ride. ", "album_id": "72157623660497540", "photo_flickr_id": "4449791878", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "41347", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was able to take this stunning picture from a hot air balloon ride .", "storylet_id": "206739"}], [{"original_text": "The first thing we did was take the train into the city and this is where we got off of the train.", "album_id": "72157623660497540", "photo_flickr_id": "4449006041", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41348", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the first thing we did was take the train into the city and this is where we got off of the train .", "storylet_id": "206740"}], [{"original_text": "This is the biggest Ferris wheel any of us have ever seen!", "album_id": "72157623660497540", "photo_flickr_id": "4448994659", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41348", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the biggest ferris wheel any of us have ever seen !", "storylet_id": "206741"}], [{"original_text": "Here is a sign that gave us some information about the huge Ferris wheel.", "album_id": "72157623660497540", "photo_flickr_id": "4449782954", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41348", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is a sign that gave us some information about the huge ferris wheel .", "storylet_id": "206742"}], [{"original_text": "We especially loved this beautiful old bell tower.", "album_id": "72157623660497540", "photo_flickr_id": "4449009633", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41348", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we especially loved this beautiful old bell tower .", "storylet_id": "206743"}], [{"original_text": "The mixture of different architectural styles was really interesting here.", "album_id": "72157623660497540", "photo_flickr_id": "4449011071", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41348", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the mixture of different architectural styles was really interesting here .", "storylet_id": "206744"}], [{"original_text": "It was finally our turn to ride the ferris wheel.", "album_id": "72157623660497540", "photo_flickr_id": "4448994659", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41349", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was finally our turn to ride the ferris wheel .", "storylet_id": "206745"}], [{"original_text": "We were able to see the whole city from above.", "album_id": "72157623660497540", "photo_flickr_id": "4449011071", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41349", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were able to see the whole city from above .", "storylet_id": "206746"}], [{"original_text": "We could even see the busier sides of the town.", "album_id": "72157623660497540", "photo_flickr_id": "4449012337", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41349", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we could even see the busier sides of the town .", "storylet_id": "206747"}], [{"original_text": "We saw many buildings and cars.", "album_id": "72157623660497540", "photo_flickr_id": "4449014927", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41349", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw many buildings and cars .", "storylet_id": "206748"}], [{"original_text": "We also saw a mini farmers market.", "album_id": "72157623660497540", "photo_flickr_id": "4449791878", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41349", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also saw a mini farmers market .", "storylet_id": "206749"}], [{"original_text": "We began the day with seeing how lovely the sunrise was.", "album_id": "72157624193885719", "photo_flickr_id": "4717888313", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41350", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we began the day with seeing how lovely the sunrise was .", "storylet_id": "206750"}], [{"original_text": "We went to the fair and saw a gorgeous lion.", "album_id": "72157624193885719", "photo_flickr_id": "4718530746", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41350", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to the fair and saw a gorgeous lion .", "storylet_id": "206751"}], [{"original_text": "Then at midday, we saw a pretty rainbow.", "album_id": "72157624193885719", "photo_flickr_id": "4718531412", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41350", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then at midday , we saw a pretty rainbow .", "storylet_id": "206752"}], [{"original_text": "The sunset was especially beautiful and orange.", "album_id": "72157624193885719", "photo_flickr_id": "4717887941", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41350", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sunset was especially beautiful and orange .", "storylet_id": "206753"}], [{"original_text": "We ended the night with a ride on the ferris wheel.", "album_id": "72157624193885719", "photo_flickr_id": "4717888719", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41350", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the night with a ride on the ferris wheel .", "storylet_id": "206754"}], [{"original_text": "Red sky at night sailors delight.", "album_id": "72157624193885719", "photo_flickr_id": "4717887941", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "41351", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "red sky at night sailors delight .", "storylet_id": "206755"}], [{"original_text": "It was a beautiful morning.", "album_id": "72157624193885719", "photo_flickr_id": "4717888313", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "41351", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a beautiful morning .", "storylet_id": "206756"}], [{"original_text": "It was a great night for a Ferris wheel ride.", "album_id": "72157624193885719", "photo_flickr_id": "4717888719", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "41351", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a great night for a organization wheel ride .", "storylet_id": "206757"}], [{"original_text": "Be careful near the water.", "album_id": "72157624193885719", "photo_flickr_id": "4718529816", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "41351", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "be careful near the water .", "storylet_id": "206758"}], [{"original_text": "The tiger cooled off in the water.", "album_id": "72157624193885719", "photo_flickr_id": "4717887439", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "41351", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the tiger cooled off in the water .", "storylet_id": "206759"}], [{"original_text": "On our vacation we had the chance to sit at the lake and watch the sun go down.", "album_id": "72157624193885719", "photo_flickr_id": "4717887941", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "41352", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our vacation we had the chance to sit at the lake and watch the sun go down .", "storylet_id": "206760"}], [{"original_text": "Here we are watching the sun come up.", "album_id": "72157624193885719", "photo_flickr_id": "4717888313", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "41352", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we are watching the sun come up .", "storylet_id": "206761"}], [{"original_text": "The night we headed to the fair in town to get on the ferris wheel we kept seeing.", "album_id": "72157624193885719", "photo_flickr_id": "4717888719", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "41352", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the night we headed to the fair in town to get on the ferris wheel we kept seeing .", "storylet_id": "206762"}], [{"original_text": "A sign we saw and thought oh my. We won't be hitting the water.", "album_id": "72157624193885719", "photo_flickr_id": "4718529816", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "41352", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a sign we saw and thought oh my . we wo n't be hitting the water .", "storylet_id": "206763"}], [{"original_text": "Cute fella that watched us closely at the zoo.", "album_id": "72157624193885719", "photo_flickr_id": "4717887439", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "41352", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "cute fella that watched us closely at the zoo .", "storylet_id": "206764"}], [{"original_text": "Loving the beautiful sunset over the ocean.", "album_id": "72157624193885719", "photo_flickr_id": "4717888313", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41353", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "loving the beautiful sunset over the ocean .", "storylet_id": "206765"}], [{"original_text": "Beautiful tiger sitting down getting some rest.", "album_id": "72157624193885719", "photo_flickr_id": "4718530746", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41353", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "beautiful tiger sitting down getting some rest .", "storylet_id": "206766"}], [{"original_text": "Loving the rainbow over the boat in the ocean.", "album_id": "72157624193885719", "photo_flickr_id": "4718531412", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41353", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "loving the rainbow over the boat in the ocean .", "storylet_id": "206767"}], [{"original_text": "Beautiful cloudy evening, watching the flags in the water.", "album_id": "72157624193885719", "photo_flickr_id": "4717887941", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41353", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "beautiful cloudy evening , watching the flags in the water .", "storylet_id": "206768"}], [{"original_text": "Time to wind down the busy day with a ferris wheel ride at night.", "album_id": "72157624193885719", "photo_flickr_id": "4717888719", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41353", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time to wind down the busy day with a ferris wheel ride at night .", "storylet_id": "206769"}], [{"original_text": "Beautiful night to go the boardwalk.", "album_id": "72157624193885719", "photo_flickr_id": "4717887941", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41354", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "beautiful night to go the boardwalk .", "storylet_id": "206770"}], [{"original_text": "The setting sun over the ocean was obstructed by clouds. It'll be dark soon anyway.", "album_id": "72157624193885719", "photo_flickr_id": "4717888313", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41354", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the setting sun over the ocean was obstructed by clouds . it 'll be dark soon anyway .", "storylet_id": "206771"}], [{"original_text": "I love the boardwalk at night because the of the ferris wheel lights.", "album_id": "72157624193885719", "photo_flickr_id": "4717888719", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41354", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i love the boardwalk at night because the of the ferris wheel lights .", "storylet_id": "206772"}], [{"original_text": "Arrived at the beach the next morning and decided not to swim -jellyfish warning.", "album_id": "72157624193885719", "photo_flickr_id": "4718529816", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41354", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "arrived at the beach the next morning and decided not to swim -jellyfish warning .", "storylet_id": "206773"}], [{"original_text": "There is now an animal exhibit on the boardwalk. I don't think tigers like being near the water.", "album_id": "72157624193885719", "photo_flickr_id": "4717887439", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41354", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is now an animal exhibit on the boardwalk . i do n't think tigers like being near the water .", "storylet_id": "206774"}], [{"original_text": "I went to the fair with my kids last weekend.", "album_id": "72157624320734786", "photo_flickr_id": "4718968637", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41355", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the fair with my kids last weekend .", "storylet_id": "206775"}], [{"original_text": "There were a lot of people there.", "album_id": "72157624320734786", "photo_flickr_id": "4718969003", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41355", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people there .", "storylet_id": "206776"}], [{"original_text": "They also had a barn.", "album_id": "72157624320734786", "photo_flickr_id": "4719617106", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41355", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also had a barn .", "storylet_id": "206777"}], [{"original_text": "We got to see a lot of animals.", "album_id": "72157624320734786", "photo_flickr_id": "4718972931", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41355", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got to see a lot of animals .", "storylet_id": "206778"}], [{"original_text": "We can't wait to go back later.", "album_id": "72157624320734786", "photo_flickr_id": "4719621118", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41355", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ca n't wait to go back later .", "storylet_id": "206779"}], [{"original_text": "Family day down at the petting zoo! Off to see all kinds of animals.", "album_id": "72157624320734786", "photo_flickr_id": "4719624738", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41356", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family day down at the petting zoo ! off to see all kinds of animals .", "storylet_id": "206780"}], [{"original_text": "From a distance, we saw a goat reclining against a door. We had a few snacks, and the goat grew curious. ", "album_id": "72157624320734786", "photo_flickr_id": "4719617106", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41356", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from a distance , we saw a goat reclining against a door . we had a few snacks , and the goat grew curious .", "storylet_id": "206781"}], [{"original_text": "The goat said hello, may I have a snack, and we said of course! ", "album_id": "72157624320734786", "photo_flickr_id": "4719617374", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41356", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the goat said hello , may i have a snack , and we said of course !", "storylet_id": "206782"}], [{"original_text": "Later we observed a very contemplative monkey, pondering amazing and deep things. ", "album_id": "72157624320734786", "photo_flickr_id": "4719617640", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41356", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later we observed a very contemplative monkey , pondering amazing and deep things .", "storylet_id": "206783"}], [{"original_text": "Family day proved a success, with many new sights and sounds for the kids! ", "album_id": "72157624320734786", "photo_flickr_id": "4718971591", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41356", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "family day proved a success , with many new sights and sounds for the kids !", "storylet_id": "206784"}], [{"original_text": "The child was having so much fun on the carousel.", "album_id": "72157624320734786", "photo_flickr_id": "4718968637", "setting": "last-3-pick-old-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "41357", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the child was having so much fun on the carousel .", "storylet_id": "206785"}], [{"original_text": "His mother came to support her son, but he was distracted by a onlooker nearby.", "album_id": "72157624320734786", "photo_flickr_id": "4718969003", "setting": "last-3-pick-old-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "41357", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his mother came to support her son , but he was distracted by a onlooker nearby .", "storylet_id": "206786"}], [{"original_text": "Hidden in the shed a goat spied on the child and made him uneasy.", "album_id": "72157624320734786", "photo_flickr_id": "4719617106", "setting": "last-3-pick-old-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "41357", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "hidden in the shed a goat spied on the child and made him uneasy .", "storylet_id": "206787"}], [{"original_text": "Startled by the goat the grandmother decided to take the child far away from the scary looking goat.", "album_id": "72157624320734786", "photo_flickr_id": "4718972931", "setting": "last-3-pick-old-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "41357", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "startled by the goat the grandmother decided to take the child far away from the scary looking goat .", "storylet_id": "206788"}], [{"original_text": "The mother and her son began to have more fun. So long as they stay away from the goat.", "album_id": "72157624320734786", "photo_flickr_id": "4719621118", "setting": "last-3-pick-old-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "41357", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the mother and her son began to have more fun . so long as they stay away from the goat .", "storylet_id": "206789"}], [{"original_text": "We took an impromptu visit to the zoo with my son.", "album_id": "72157624320734786", "photo_flickr_id": "4719624738", "setting": "last-3-pick-old-and-tell", "worker_id": "ABY32YU0MG0CSPG", "story_id": "41358", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took an impromptu visit to the zoo with my son .", "storylet_id": "206790"}], [{"original_text": "This goat was not in the mood to come out at all.", "album_id": "72157624320734786", "photo_flickr_id": "4719617106", "setting": "last-3-pick-old-and-tell", "worker_id": "ABY32YU0MG0CSPG", "story_id": "41358", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this goat was not in the mood to come out at all .", "storylet_id": "206791"}], [{"original_text": "This one was a lot more friendly and posed for a picture!", "album_id": "72157624320734786", "photo_flickr_id": "4719617374", "setting": "last-3-pick-old-and-tell", "worker_id": "ABY32YU0MG0CSPG", "story_id": "41358", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one was a lot more friendly and posed for a picture !", "storylet_id": "206792"}], [{"original_text": "This monkey was chilling and trying to stay away from the heat.", "album_id": "72157624320734786", "photo_flickr_id": "4719617640", "setting": "last-3-pick-old-and-tell", "worker_id": "ABY32YU0MG0CSPG", "story_id": "41358", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this monkey was chilling and trying to stay away from the heat .", "storylet_id": "206793"}], [{"original_text": "The day was perfect and my little man was very pleased with seeing all the animals.", "album_id": "72157624320734786", "photo_flickr_id": "4718971591", "setting": "last-3-pick-old-and-tell", "worker_id": "ABY32YU0MG0CSPG", "story_id": "41358", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day was perfect and my little man was very pleased with seeing all the animals .", "storylet_id": "206794"}], [{"original_text": "Ben was ready for his first visit to the petting zoo, ", "album_id": "72157624320734786", "photo_flickr_id": "4719624738", "setting": "last-3-pick-old-and-tell", "worker_id": "40AX84MUBFGEB2T", "story_id": "41359", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was ready for his first visit to the petting zoo ,", "storylet_id": "206795"}], [{"original_text": "The barn was open and ready for Ben. ", "album_id": "72157624320734786", "photo_flickr_id": "4719617106", "setting": "last-3-pick-old-and-tell", "worker_id": "40AX84MUBFGEB2T", "story_id": "41359", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the barn was open and ready for [male] .", "storylet_id": "206796"}], [{"original_text": "Ben was scared of this goat. ", "album_id": "72157624320734786", "photo_flickr_id": "4719617374", "setting": "last-3-pick-old-and-tell", "worker_id": "40AX84MUBFGEB2T", "story_id": "41359", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was scared of this goat .", "storylet_id": "206797"}], [{"original_text": "The monkey was relaxing not caring about what was going on. ", "album_id": "72157624320734786", "photo_flickr_id": "4719617640", "setting": "last-3-pick-old-and-tell", "worker_id": "40AX84MUBFGEB2T", "story_id": "41359", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the monkey was relaxing not caring about what was going on .", "storylet_id": "206798"}], [{"original_text": "Ben loved looking at all the animals ", "album_id": "72157624320734786", "photo_flickr_id": "4718971591", "setting": "last-3-pick-old-and-tell", "worker_id": "40AX84MUBFGEB2T", "story_id": "41359", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] loved looking at all the animals", "storylet_id": "206799"}], [{"original_text": "it was a great night at the plaza", "album_id": "72157624420153669", "photo_flickr_id": "4812798162", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41360", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a great night at the plaza", "storylet_id": "206800"}], [{"original_text": "the rooms lit up the night sky", "album_id": "72157624420153669", "photo_flickr_id": "4812803102", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41360", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rooms lit up the night sky", "storylet_id": "206801"}], [{"original_text": "and everyone wanted to be at the plaza", "album_id": "72157624420153669", "photo_flickr_id": "4812186979", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41360", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and everyone wanted to be at the plaza", "storylet_id": "206802"}], [{"original_text": "their were gift shops where you could buy stuff too", "album_id": "72157624420153669", "photo_flickr_id": "4812231363", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41360", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their were gift shops where you could buy stuff too", "storylet_id": "206803"}], [{"original_text": "it was a wonderful time to stay at the hotel ", "album_id": "72157624420153669", "photo_flickr_id": "4812891652", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41360", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a wonderful time to stay at the hotel", "storylet_id": "206804"}], [{"original_text": "We went on vacation and stayed at the Crowne Plaza hotel. ", "album_id": "72157624420153669", "photo_flickr_id": "4812803102", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "41361", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on vacation and stayed at the location location hotel .", "storylet_id": "206805"}], [{"original_text": "The outside of the building was very impressive.", "album_id": "72157624420153669", "photo_flickr_id": "4812182775", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "41361", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the outside of the building was very impressive .", "storylet_id": "206806"}], [{"original_text": "We couldn't believe they had a Ferris wheel.", "album_id": "72157624420153669", "photo_flickr_id": "4812815300", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "41361", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we could n't believe they had a organization wheel .", "storylet_id": "206807"}], [{"original_text": "The inside of the hotel was even more impressive then the outside.", "album_id": "72157624420153669", "photo_flickr_id": "4812218645", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "41361", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the inside of the hotel was even more impressive then the outside .", "storylet_id": "206808"}], [{"original_text": "We had never been to such a luxurious hotel. ", "album_id": "72157624420153669", "photo_flickr_id": "4812847490", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "41361", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had never been to such a luxurious hotel .", "storylet_id": "206809"}], [{"original_text": "The Crowne Plaza is a beautiful building.", "album_id": "72157624420153669", "photo_flickr_id": "4812803102", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41362", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowne plaza is a beautiful building .", "storylet_id": "206810"}], [{"original_text": "The building is lit up and can be seen for miles.", "album_id": "72157624420153669", "photo_flickr_id": "4812182775", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41362", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the building is lit up and can be seen for miles .", "storylet_id": "206811"}], [{"original_text": "It has a colorful Ferris Wheel with a breathtaking view.", "album_id": "72157624420153669", "photo_flickr_id": "4812815300", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41362", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it has a colorful organization organization with a breathtaking view .", "storylet_id": "206812"}], [{"original_text": "The interior of the building is a another story.", "album_id": "72157624420153669", "photo_flickr_id": "4812218645", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41362", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the interior of the building is a another story .", "storylet_id": "206813"}], [{"original_text": "It is nice to see buildings that are beautiful. ", "album_id": "72157624420153669", "photo_flickr_id": "4812847490", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41362", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is nice to see buildings that are beautiful .", "storylet_id": "206814"}], [{"original_text": "A smart part of the outside of the hotel that we stayed in on vacation.", "album_id": "72157624420153669", "photo_flickr_id": "4812803102", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41363", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a smart part of the outside of the hotel that we stayed in on vacation .", "storylet_id": "206815"}], [{"original_text": "I love the nights that we had there, wonderful food and great atmosphere. ", "album_id": "72157624420153669", "photo_flickr_id": "4812182775", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41363", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love the nights that we had there , wonderful food and great atmosphere .", "storylet_id": "206816"}], [{"original_text": "Enjoying a night ride on the ferris wheel.", "album_id": "72157624420153669", "photo_flickr_id": "4812815300", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41363", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "enjoying a night ride on the ferris wheel .", "storylet_id": "206817"}], [{"original_text": "Our hotel lobby that we stayed at.", "album_id": "72157624420153669", "photo_flickr_id": "4812218645", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41363", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our hotel lobby that we stayed at .", "storylet_id": "206818"}], [{"original_text": "Just some of the different views that we saw the past couple days.", "album_id": "72157624420153669", "photo_flickr_id": "4812847490", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41363", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "just some of the different views that we saw the past couple days .", "storylet_id": "206819"}], [{"original_text": "There was a big ferris wheel", "album_id": "72157624420153669", "photo_flickr_id": "4812798162", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41364", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a big ferris wheel", "storylet_id": "206820"}], [{"original_text": "near Crowne Plaza.", "album_id": "72157624420153669", "photo_flickr_id": "4812803102", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41364", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "near location location .", "storylet_id": "206821"}], [{"original_text": "The building was huge", "album_id": "72157624420153669", "photo_flickr_id": "4812186979", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41364", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the building was huge", "storylet_id": "206822"}], [{"original_text": "and people had nice shirts.", "album_id": "72157624420153669", "photo_flickr_id": "4812231363", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41364", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and people had nice shirts .", "storylet_id": "206823"}], [{"original_text": "There was a nice building near.", "album_id": "72157624420153669", "photo_flickr_id": "4812891652", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41364", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a nice building near .", "storylet_id": "206824"}], [{"original_text": "Today was the day.", "album_id": "72157624994501472", "photo_flickr_id": "5007062861", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41365", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day .", "storylet_id": "206825"}], [{"original_text": "The big trip.", "album_id": "72157624994501472", "photo_flickr_id": "5007063737", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41365", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the big trip .", "storylet_id": "206826"}], [{"original_text": "There were buildings.", "album_id": "72157624994501472", "photo_flickr_id": "5007673754", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41365", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were buildings .", "storylet_id": "206827"}], [{"original_text": "Crowded public places.", "album_id": "72157624994501472", "photo_flickr_id": "5007065229", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41365", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "crowded public places .", "storylet_id": "206828"}], [{"original_text": "And a fountain.", "album_id": "72157624994501472", "photo_flickr_id": "5007065863", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41365", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and a fountain .", "storylet_id": "206829"}], [{"original_text": "The city was filled with old historic buildings and this one was amazing.", "album_id": "72157624994501472", "photo_flickr_id": "5007062861", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41366", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city was filled with old historic buildings and this one was amazing .", "storylet_id": "206830"}], [{"original_text": "The people were gathered around the square to enjoy the city.", "album_id": "72157624994501472", "photo_flickr_id": "5007065229", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41366", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the people were gathered around the square to enjoy the city .", "storylet_id": "206831"}], [{"original_text": "The center fountain was an attraction for all.", "album_id": "72157624994501472", "photo_flickr_id": "5007065863", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41366", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the center fountain was an attraction for all .", "storylet_id": "206832"}], [{"original_text": "The statues near the building were amazing.", "album_id": "72157624994501472", "photo_flickr_id": "5007068279", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41366", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the statues near the building were amazing .", "storylet_id": "206833"}], [{"original_text": "The building was a bright colorful orange with great attention to detail.", "album_id": "72157624994501472", "photo_flickr_id": "5007069063", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41366", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the building was a bright colorful orange with great attention to detail .", "storylet_id": "206834"}], [{"original_text": "The outside of the building looked like a beautifully aged photograph. ", "album_id": "72157624994501472", "photo_flickr_id": "5007062861", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41367", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the outside of the building looked like a beautifully aged photograph .", "storylet_id": "206835"}], [{"original_text": "So I was surprised to see how beautifully colored the inside was.", "album_id": "72157624994501472", "photo_flickr_id": "5007063737", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41367", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so i was surprised to see how beautifully colored the inside was .", "storylet_id": "206836"}], [{"original_text": "Even the somewhat gray buildings had brilliant splashes of red. ", "album_id": "72157624994501472", "photo_flickr_id": "5007673754", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41367", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the somewhat gray buildings had brilliant splashes of red .", "storylet_id": "206837"}], [{"original_text": "We finally joined the crowed around the stage.", "album_id": "72157624994501472", "photo_flickr_id": "5007065229", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41367", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we finally joined the crowed around the stage .", "storylet_id": "206838"}], [{"original_text": "Finally, I took a few minutes to enjoy the waterfall outside the building itself.", "album_id": "72157624994501472", "photo_flickr_id": "5007065863", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41367", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , i took a few minutes to enjoy the waterfall outside the building itself .", "storylet_id": "206839"}], [{"original_text": "To understand who we were as a society it is important to visit historic locations.", "album_id": "72157624994501472", "photo_flickr_id": "5007062861", "setting": "last-3-pick-old-and-tell", "worker_id": "4O9FBEAD1CN6I4D", "story_id": "41368", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "to understand who we were as a society it is important to visit historic locations .", "storylet_id": "206840"}], [{"original_text": "Each location has a timeless story to be told", "album_id": "72157624994501472", "photo_flickr_id": "5007063737", "setting": "last-3-pick-old-and-tell", "worker_id": "4O9FBEAD1CN6I4D", "story_id": "41368", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each location has a timeless story to be told", "storylet_id": "206841"}], [{"original_text": "or an important event that started a movement.", "album_id": "72157624994501472", "photo_flickr_id": "5007673754", "setting": "last-3-pick-old-and-tell", "worker_id": "4O9FBEAD1CN6I4D", "story_id": "41368", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "or an important event that started a movement .", "storylet_id": "206842"}], [{"original_text": "To acknowledge the past opens up opportunities for the future. ", "album_id": "72157624994501472", "photo_flickr_id": "5007065229", "setting": "last-3-pick-old-and-tell", "worker_id": "4O9FBEAD1CN6I4D", "story_id": "41368", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to acknowledge the past opens up opportunities for the future .", "storylet_id": "206843"}], [{"original_text": "Not to mention, taking in such locations can be equally as entertaining as learning about the location itself.", "album_id": "72157624994501472", "photo_flickr_id": "5007065863", "setting": "last-3-pick-old-and-tell", "worker_id": "4O9FBEAD1CN6I4D", "story_id": "41368", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "not to mention , taking in such locations can be equally as entertaining as learning about the location itself .", "storylet_id": "206844"}], [{"original_text": "Loren was on a sightseeing tour for the first time.", "album_id": "72157624994501472", "photo_flickr_id": "5007062861", "setting": "last-3-pick-old-and-tell", "worker_id": "70Z7P4YBJNXMWAV", "story_id": "41369", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was on a sightseeing tour for the first time .", "storylet_id": "206845"}], [{"original_text": "Europe is a place full of history.", "album_id": "72157624994501472", "photo_flickr_id": "5007065229", "setting": "last-3-pick-old-and-tell", "worker_id": "70Z7P4YBJNXMWAV", "story_id": "41369", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "location is a place full of history .", "storylet_id": "206846"}], [{"original_text": "She loved taking pictures of the fountains.", "album_id": "72157624994501472", "photo_flickr_id": "5007065863", "setting": "last-3-pick-old-and-tell", "worker_id": "70Z7P4YBJNXMWAV", "story_id": "41369", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she loved taking pictures of the fountains .", "storylet_id": "206847"}], [{"original_text": "Some of the sculptures also caught her eye.", "album_id": "72157624994501472", "photo_flickr_id": "5007068279", "setting": "last-3-pick-old-and-tell", "worker_id": "70Z7P4YBJNXMWAV", "story_id": "41369", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the sculptures also caught her eye .", "storylet_id": "206848"}], [{"original_text": "The architecture was fantastic. She had a wonderful time during her trip.", "album_id": "72157624994501472", "photo_flickr_id": "5007069063", "setting": "last-3-pick-old-and-tell", "worker_id": "70Z7P4YBJNXMWAV", "story_id": "41369", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the architecture was fantastic . she had a wonderful time during her trip .", "storylet_id": "206849"}], [{"original_text": "Testing out my new camera downtown.", "album_id": "72157623781391871", "photo_flickr_id": "4541316669", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41370", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "testing out my new camera downtown .", "storylet_id": "206850"}], [{"original_text": "This is Canada. Everybody here is so nice.", "album_id": "72157623781391871", "photo_flickr_id": "4541316341", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41370", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is location . everybody here is so nice .", "storylet_id": "206851"}], [{"original_text": "The quality of this new Camera is amazing.", "album_id": "72157623781391871", "photo_flickr_id": "4541316043", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41370", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the quality of this new camera is amazing .", "storylet_id": "206852"}], [{"original_text": "Not sure what parade today is but this guy is all dressed up.", "album_id": "72157623781391871", "photo_flickr_id": "4541313585", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41370", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "not sure what parade today is but this guy is all dressed up .", "storylet_id": "206853"}], [{"original_text": "The color of this picture has to be the best picture I've ever taken.", "album_id": "72157623781391871", "photo_flickr_id": "4541946036", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41370", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the color of this picture has to be the best picture i 've ever taken .", "storylet_id": "206854"}], [{"original_text": "A couple take a trip to a town to have a vacation.", "album_id": "72157623781391871", "photo_flickr_id": "4541316341", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41371", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple take a trip to a town to have a vacation .", "storylet_id": "206855"}], [{"original_text": "There are people in the streets that play music.", "album_id": "72157623781391871", "photo_flickr_id": "4541948966", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41371", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are people in the streets that play music .", "storylet_id": "206856"}], [{"original_text": "There are boaters and also boats that give boat rides.", "album_id": "72157623781391871", "photo_flickr_id": "4541948308", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41371", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are boaters and also boats that give boat rides .", "storylet_id": "206857"}], [{"original_text": "There are attractions like ferris wheels to ride and other things to do to entertain.", "album_id": "72157623781391871", "photo_flickr_id": "4541946480", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41371", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are attractions like ferris wheels to ride and other things to do to entertain .", "storylet_id": "206858"}], [{"original_text": "There are palaces and buildings you can go in and explore. There are many things to see.", "album_id": "72157623781391871", "photo_flickr_id": "4541946036", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41371", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are palaces and buildings you can go in and explore . there are many things to see .", "storylet_id": "206859"}], [{"original_text": "We attended the local festivities and were treated to a lot of local color and flair.", "album_id": "72157623781391871", "photo_flickr_id": "4541316669", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41372", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we attended the local festivities and were treated to a lot of local color and flair .", "storylet_id": "206860"}], [{"original_text": "This street performer captured our attention for a while.", "album_id": "72157623781391871", "photo_flickr_id": "4541316341", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41372", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this street performer captured our attention for a while .", "storylet_id": "206861"}], [{"original_text": "The crowds loved this performer and took a lot of photos.", "album_id": "72157623781391871", "photo_flickr_id": "4541316043", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41372", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowds loved this performer and took a lot of photos .", "storylet_id": "206862"}], [{"original_text": "Of course the festival would not have been complete without a Tricorn hat.", "album_id": "72157623781391871", "photo_flickr_id": "4541313585", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41372", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course the festival would not have been complete without a tricorn hat .", "storylet_id": "206863"}], [{"original_text": "No matter where you are you have to stop and admire the architecture.", "album_id": "72157623781391871", "photo_flickr_id": "4541946036", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41372", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "no matter where you are you have to stop and admire the architecture .", "storylet_id": "206864"}], [{"original_text": "Went to our State's Fair this year and it was great. Give the man in white 5 dollars and he'll sing for you.", "album_id": "72157623781391871", "photo_flickr_id": "4541316341", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41373", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went to our state 's fair this year and it was great . give the man in white 5 dollars and he 'll sing for you .", "storylet_id": "206865"}], [{"original_text": "This was one of the local bands playing. We really had a good time.", "album_id": "72157623781391871", "photo_flickr_id": "4541948966", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41373", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was one of the local bands playing . we really had a good time .", "storylet_id": "206866"}], [{"original_text": "We rented a tour of the city boat.", "album_id": "72157623781391871", "photo_flickr_id": "4541948308", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41373", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we rented a tour of the city boat .", "storylet_id": "206867"}], [{"original_text": "We road the ferris wheel.", "album_id": "72157623781391871", "photo_flickr_id": "4541946480", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41373", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we road the ferris wheel .", "storylet_id": "206868"}], [{"original_text": "This is how far we had to walk to get to it. Nice walk though.", "album_id": "72157623781391871", "photo_flickr_id": "4541946036", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41373", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is how far we had to walk to get to it . nice walk though .", "storylet_id": "206869"}], [{"original_text": "The park today was a good choice, ", "album_id": "72157623781391871", "photo_flickr_id": "4541316341", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41374", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the park today was a good choice ,", "storylet_id": "206870"}], [{"original_text": "This guy is always playing the same song.", "album_id": "72157623781391871", "photo_flickr_id": "4541948966", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41374", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this guy is always playing the same song .", "storylet_id": "206871"}], [{"original_text": "We saw some people in a boat and quickly became jealous.", "album_id": "72157623781391871", "photo_flickr_id": "4541948308", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41374", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw some people in a boat and quickly became jealous .", "storylet_id": "206872"}], [{"original_text": "He said don't even think of getting on the ferris wheel.", "album_id": "72157623781391871", "photo_flickr_id": "4541946480", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41374", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he said do n't even think of getting on the ferris wheel .", "storylet_id": "206873"}], [{"original_text": "So we, just went inside.", "album_id": "72157623781391871", "photo_flickr_id": "4541946036", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41374", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so we , just went inside .", "storylet_id": "206874"}], [{"original_text": "I had a great time at the church.", "album_id": "72157624771807666", "photo_flickr_id": "4911989399", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41375", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the church .", "storylet_id": "206875"}], [{"original_text": "There were many beautiful windows.", "album_id": "72157624771807666", "photo_flickr_id": "4911990115", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41375", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many beautiful windows .", "storylet_id": "206876"}], [{"original_text": "It was a small building.", "album_id": "72157624771807666", "photo_flickr_id": "4911998579", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41375", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a small building .", "storylet_id": "206877"}], [{"original_text": "The church was great.", "album_id": "72157624771807666", "photo_flickr_id": "4912604114", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41375", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the church was great .", "storylet_id": "206878"}], [{"original_text": "Everything was very old.", "album_id": "72157624771807666", "photo_flickr_id": "4912604642", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41375", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everything was very old .", "storylet_id": "206879"}], [{"original_text": "We visited a local Church that was being renovated this weekend.", "album_id": "72157624771807666", "photo_flickr_id": "4912600990", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41376", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited a local church that was being renovated this weekend .", "storylet_id": "206880"}], [{"original_text": "The building is fairly small but has lots of detail.", "album_id": "72157624771807666", "photo_flickr_id": "4911998579", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41376", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the building is fairly small but has lots of detail .", "storylet_id": "206881"}], [{"original_text": "We especially liked the front door, complete with antique key.", "album_id": "72157624771807666", "photo_flickr_id": "4912604642", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41376", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we especially liked the front door , complete with antique key .", "storylet_id": "206882"}], [{"original_text": "The stained glass was also impressive.", "album_id": "72157624771807666", "photo_flickr_id": "4912597592", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41376", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the stained glass was also impressive .", "storylet_id": "206883"}], [{"original_text": "The interior looked like new, this was a great restoration and we will certainly visit again.", "album_id": "72157624771807666", "photo_flickr_id": "4912604114", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41376", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the interior looked like new , this was a great restoration and we will certainly visit again .", "storylet_id": "206884"}], [{"original_text": "Traveled with mom to visit this church. We were amazed by the art.", "album_id": "72157624771807666", "photo_flickr_id": "4911989399", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "41377", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "traveled with mom to visit this church . we were amazed by the art .", "storylet_id": "206885"}], [{"original_text": "A closer look at the art inside the church.", "album_id": "72157624771807666", "photo_flickr_id": "4911990115", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "41377", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a closer look at the art inside the church .", "storylet_id": "206886"}], [{"original_text": "The church mom wanted to tour on a trip.", "album_id": "72157624771807666", "photo_flickr_id": "4911998579", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "41377", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the church mom wanted to tour on a trip .", "storylet_id": "206887"}], [{"original_text": "The inside of the church is absolutely amazing. What was really astonishing was the lack of windows. It was a layer of a church inside a layer.", "album_id": "72157624771807666", "photo_flickr_id": "4912604114", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "41377", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the inside of the church is absolutely amazing . what was really astonishing was the lack of windows . it was a layer of a church inside a layer .", "storylet_id": "206888"}], [{"original_text": "Who olds the key to the church. You really do not want to get locked in.", "album_id": "72157624771807666", "photo_flickr_id": "4912604642", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "41377", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "who olds the key to the church . you really do not want to get locked in .", "storylet_id": "206889"}], [{"original_text": "I felt compelled to document these stained glass windows.", "album_id": "72157624771807666", "photo_flickr_id": "4911989399", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41378", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i felt compelled to document these stained glass windows .", "storylet_id": "206890"}], [{"original_text": "Here is the glass over the alter.", "album_id": "72157624771807666", "photo_flickr_id": "4911990115", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41378", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is the glass over the alter .", "storylet_id": "206891"}], [{"original_text": "This little church is not far from my house.", "album_id": "72157624771807666", "photo_flickr_id": "4911998579", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41378", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this little church is not far from my house .", "storylet_id": "206892"}], [{"original_text": "My parent's were married here long ago.", "album_id": "72157624771807666", "photo_flickr_id": "4912604114", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41378", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my parent 's were married here long ago .", "storylet_id": "206893"}], [{"original_text": "Even the door hardware is beautiful at this church.", "album_id": "72157624771807666", "photo_flickr_id": "4912604642", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41378", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the door hardware is beautiful at this church .", "storylet_id": "206894"}], [{"original_text": "Stained glass was a love, a passion even. ", "album_id": "72157624771807666", "photo_flickr_id": "4911989399", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41379", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "stained glass was a love , a passion even .", "storylet_id": "206895"}], [{"original_text": "Known for being an excellent stained glass artist she was often called upon for restoration work. ", "album_id": "72157624771807666", "photo_flickr_id": "4911990115", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41379", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "known for being an excellent stained glass artist she was often called upon for restoration work .", "storylet_id": "206896"}], [{"original_text": "She did it all from her small cottage. ", "album_id": "72157624771807666", "photo_flickr_id": "4911998579", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41379", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she did it all from her small cottage .", "storylet_id": "206897"}], [{"original_text": "Churches, homes, businesses, she even did a dog house window once. ", "album_id": "72157624771807666", "photo_flickr_id": "4912604114", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41379", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "churches , homes , businesses , she even did a dog house window once .", "storylet_id": "206898"}], [{"original_text": "Her husband did iron work. ", "album_id": "72157624771807666", "photo_flickr_id": "4912604642", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41379", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her husband did iron work .", "storylet_id": "206899"}], [{"original_text": "Every year we go to an outdoor Christmas event. ", "album_id": "72157625518410203", "photo_flickr_id": "5279922716", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "41380", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every year we go to an outdoor christmas event .", "storylet_id": "206900"}], [{"original_text": "The entire neighborhood is lit with lights. ", "album_id": "72157625518410203", "photo_flickr_id": "5279318313", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "41380", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the entire neighborhood is lit with lights .", "storylet_id": "206901"}], [{"original_text": "There are even some indoor displays. ", "album_id": "72157625518410203", "photo_flickr_id": "5279925812", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "41380", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are even some indoor displays .", "storylet_id": "206902"}], [{"original_text": "A miniature train ride takes kids around the park. ", "album_id": "72157625518410203", "photo_flickr_id": "5279339095", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "41380", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a miniature train ride takes kids around the park .", "storylet_id": "206903"}], [{"original_text": "Sarah and I like to walk with hot chocolate and check out the lights. ", "album_id": "72157625518410203", "photo_flickr_id": "5279939836", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "41380", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] and i like to walk with hot chocolate and check out the lights .", "storylet_id": "206904"}], [{"original_text": "We always drive around to see the lights for Christmas.", "album_id": "72157625518410203", "photo_flickr_id": "5279318313", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41381", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we always drive around to see the lights for christmas .", "storylet_id": "206905"}], [{"original_text": "We love seeing how the houses decorate.", "album_id": "72157625518410203", "photo_flickr_id": "5279932374", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41381", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we love seeing how the houses decorate .", "storylet_id": "206906"}], [{"original_text": "People put up such pretty displays.", "album_id": "72157625518410203", "photo_flickr_id": "5279327951", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41381", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people put up such pretty displays .", "storylet_id": "206907"}], [{"original_text": "Many people put up different kinds of lights.", "album_id": "72157625518410203", "photo_flickr_id": "5279936298", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41381", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many people put up different kinds of lights .", "storylet_id": "206908"}], [{"original_text": "We have such a good time driving around each year!", "album_id": "72157625518410203", "photo_flickr_id": "5279937582", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41381", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we have such a good time driving around each year !", "storylet_id": "206909"}], [{"original_text": "The festival of lights started off with lots of santas on the lawns.", "album_id": "72157625518410203", "photo_flickr_id": "5279922716", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41382", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the festival of lights started off with lots of santas on the lawns .", "storylet_id": "206910"}], [{"original_text": "The trees were draped in lights and there was even a Canadian flag.", "album_id": "72157625518410203", "photo_flickr_id": "5279318313", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41382", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the trees were draped in lights and there was even a canadian flag .", "storylet_id": "206911"}], [{"original_text": "There were also non-lighted displays that you had to get closer to see.", "album_id": "72157625518410203", "photo_flickr_id": "5279925812", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41382", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were also non-lighted displays that you had to get closer to see .", "storylet_id": "206912"}], [{"original_text": "The walkway had arches with lights on them to show you the way.", "album_id": "72157625518410203", "photo_flickr_id": "5279339095", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41382", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the walkway had arches with lights on them to show you the way .", "storylet_id": "206913"}], [{"original_text": "My girlfriend and I enjoyed ourselves.", "album_id": "72157625518410203", "photo_flickr_id": "5279939836", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41382", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my girlfriend and i enjoyed ourselves .", "storylet_id": "206914"}], [{"original_text": "The christmas lights event was a blast. ", "album_id": "72157625518410203", "photo_flickr_id": "5279922716", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41383", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the christmas lights event was a blast .", "storylet_id": "206915"}], [{"original_text": "The Canadian flag was lit up in the sky. ", "album_id": "72157625518410203", "photo_flickr_id": "5279318313", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41383", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the canadian flag was lit up in the sky .", "storylet_id": "206916"}], [{"original_text": "There were little objects to buy, ", "album_id": "72157625518410203", "photo_flickr_id": "5279925812", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41383", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were little objects to buy ,", "storylet_id": "206917"}], [{"original_text": "and more lights to see as the night went on.", "album_id": "72157625518410203", "photo_flickr_id": "5279339095", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41383", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and more lights to see as the night went on .", "storylet_id": "206918"}], [{"original_text": "We had a great time.", "album_id": "72157625518410203", "photo_flickr_id": "5279939836", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41383", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time .", "storylet_id": "206919"}], [{"original_text": "To get into Christmas cheer I went to a light presentation.", "album_id": "72157625518410203", "photo_flickr_id": "5279318313", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41384", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "to get into christmas cheer i went to a light presentation .", "storylet_id": "206920"}], [{"original_text": "This gingerbread house looked adorable and yummy.", "album_id": "72157625518410203", "photo_flickr_id": "5279932374", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41384", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this gingerbread house looked adorable and yummy .", "storylet_id": "206921"}], [{"original_text": "Lights lit up the sky.", "album_id": "72157625518410203", "photo_flickr_id": "5279327951", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41384", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lights lit up the sky .", "storylet_id": "206922"}], [{"original_text": "The polar bear looked cool but menacing.", "album_id": "72157625518410203", "photo_flickr_id": "5279936298", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41384", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the polar bear looked cool but menacing .", "storylet_id": "206923"}], [{"original_text": "I wish Santa would come and bring me some presents.", "album_id": "72157625518410203", "photo_flickr_id": "5279937582", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41384", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i wish location would come and bring me some presents .", "storylet_id": "206924"}], [{"original_text": "We headed down to the rodeo to see what was going on with the fair. ", "album_id": "72157624375756953", "photo_flickr_id": "4819680297", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41385", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we headed down to the rodeo to see what was going on with the fair .", "storylet_id": "206925"}], [{"original_text": "We ended up catching a young country band, that wasn't half bad. ", "album_id": "72157624375756953", "photo_flickr_id": "4796069147", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41385", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we ended up catching a young country band , that was n't half bad .", "storylet_id": "206926"}], [{"original_text": "Later we wandered to see a few bike races. Was a little boring until the acrobatics started up. ", "album_id": "72157624375756953", "photo_flickr_id": "4819679953", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41385", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "later we wandered to see a few bike races . was a little boring until the acrobatics started up .", "storylet_id": "206927"}], [{"original_text": "Some of the bike riders did amazing in the air stunts! ", "album_id": "72157624375756953", "photo_flickr_id": "4820301380", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41385", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the bike riders did amazing in the air stunts !", "storylet_id": "206928"}], [{"original_text": "We ended the evening with a ride on the Ferris Wheel. What a great evening. ", "album_id": "72157624375756953", "photo_flickr_id": "4820301538", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41385", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the evening with a ride on the organization organization . what a great evening .", "storylet_id": "206929"}], [{"original_text": "There was a carnival in town today.", "album_id": "72157624375756953", "photo_flickr_id": "4820301100", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41386", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a carnival in town today .", "storylet_id": "206930"}], [{"original_text": "They even had bands playing.", "album_id": "72157624375756953", "photo_flickr_id": "4796069147", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41386", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they even had bands playing .", "storylet_id": "206931"}], [{"original_text": "It was fun walking around and seeing everything there.", "album_id": "72157624375756953", "photo_flickr_id": "4819679671", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41386", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was fun walking around and seeing everything there .", "storylet_id": "206932"}], [{"original_text": "They had a bike show too. It was amazing!", "album_id": "72157624375756953", "photo_flickr_id": "4820301380", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41386", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had a bike show too . it was amazing !", "storylet_id": "206933"}], [{"original_text": "We ended the day with the ferris wheel and we could see the whole park!", "album_id": "72157624375756953", "photo_flickr_id": "4820301538", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "41386", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the day with the ferris wheel and we could see the whole park !", "storylet_id": "206934"}], [{"original_text": "Everyone was so excited for the fair.", "album_id": "72157624375756953", "photo_flickr_id": "4819680297", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "41387", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was so excited for the fair .", "storylet_id": "206935"}], [{"original_text": "They got to see the musicians play.", "album_id": "72157624375756953", "photo_flickr_id": "4796069147", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "41387", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got to see the musicians play .", "storylet_id": "206936"}], [{"original_text": "Every one was dressed for the occasion.", "album_id": "72157624375756953", "photo_flickr_id": "4819679953", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "41387", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "every one was dressed for the occasion .", "storylet_id": "206937"}], [{"original_text": "At the end of the night, they even got to see the motorbike riders.", "album_id": "72157624375756953", "photo_flickr_id": "4820301380", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "41387", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the end of the night , they even got to see the motorbike riders .", "storylet_id": "206938"}], [{"original_text": "The Ferris Wheel spun and spun, no one wanted to go home.", "album_id": "72157624375756953", "photo_flickr_id": "4820301538", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "41387", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the organization organization spun and spun , no one wanted to go home .", "storylet_id": "206939"}], [{"original_text": "We went to a local fair.", "album_id": "72157624375756953", "photo_flickr_id": "4820301100", "setting": "last-3-pick-old-and-tell", "worker_id": "D4GYA6HT5QIT2AL", "story_id": "41388", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a local fair .", "storylet_id": "206940"}], [{"original_text": "There was a free concert that we watched for an hour.", "album_id": "72157624375756953", "photo_flickr_id": "4796069147", "setting": "last-3-pick-old-and-tell", "worker_id": "D4GYA6HT5QIT2AL", "story_id": "41388", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a free concert that we watched for an hour .", "storylet_id": "206941"}], [{"original_text": "We went around the fair and played some of the games.", "album_id": "72157624375756953", "photo_flickr_id": "4819679671", "setting": "last-3-pick-old-and-tell", "worker_id": "D4GYA6HT5QIT2AL", "story_id": "41388", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went around the fair and played some of the games .", "storylet_id": "206942"}], [{"original_text": "We watched a show involving dirt bikes. It was a lot of fun.", "album_id": "72157624375756953", "photo_flickr_id": "4820301380", "setting": "last-3-pick-old-and-tell", "worker_id": "D4GYA6HT5QIT2AL", "story_id": "41388", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we watched a show involving dirt bikes . it was a lot of fun .", "storylet_id": "206943"}], [{"original_text": "The last thing we did was take a ride on the ferris wheel.", "album_id": "72157624375756953", "photo_flickr_id": "4820301538", "setting": "last-3-pick-old-and-tell", "worker_id": "D4GYA6HT5QIT2AL", "story_id": "41388", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last thing we did was take a ride on the ferris wheel .", "storylet_id": "206944"}], [{"original_text": "There as a local festival today.", "album_id": "72157624375756953", "photo_flickr_id": "4820301100", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41389", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there as a local festival today .", "storylet_id": "206945"}], [{"original_text": "There was a band playing.", "album_id": "72157624375756953", "photo_flickr_id": "4796069147", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41389", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a band playing .", "storylet_id": "206946"}], [{"original_text": "There were also booths where you were able to win games.", "album_id": "72157624375756953", "photo_flickr_id": "4819679671", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41389", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were also booths where you were able to win games .", "storylet_id": "206947"}], [{"original_text": "We were also able to witness a motorcycle stunt act.", "album_id": "72157624375756953", "photo_flickr_id": "4820301380", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41389", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were also able to witness a motorcycle stunt act .", "storylet_id": "206948"}], [{"original_text": "There was a ferris wheel in the middle of the festival.", "album_id": "72157624375756953", "photo_flickr_id": "4820301538", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41389", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a ferris wheel in the middle of the festival .", "storylet_id": "206949"}], [{"original_text": "Took my mom on a wondering vacation and she was so happy.", "album_id": "72157628996836227", "photo_flickr_id": "6748860365", "setting": "first-2-pick-and-tell", "worker_id": "LOM88EK7VLP2KP7", "story_id": "41390", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "took my mom on a wondering vacation and she was so happy .", "storylet_id": "206950"}], [{"original_text": "The kids wanted to take a photo standing next to this amazing sculpture.", "album_id": "72157628996836227", "photo_flickr_id": "6748902155", "setting": "first-2-pick-and-tell", "worker_id": "LOM88EK7VLP2KP7", "story_id": "41390", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids wanted to take a photo standing next to this amazing sculpture .", "storylet_id": "206951"}], [{"original_text": "This building was my favorite. I love photographing huge old buildings with tower clocks.", "album_id": "72157628996836227", "photo_flickr_id": "6748867351", "setting": "first-2-pick-and-tell", "worker_id": "LOM88EK7VLP2KP7", "story_id": "41390", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this building was my favorite . i love photographing huge old buildings with tower clocks .", "storylet_id": "206952"}], [{"original_text": "This bridge had a wonderful rainbow glow that was beautiful.", "album_id": "72157628996836227", "photo_flickr_id": "6748858569", "setting": "first-2-pick-and-tell", "worker_id": "LOM88EK7VLP2KP7", "story_id": "41390", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this bridge had a wonderful rainbow glow that was beautiful .", "storylet_id": "206953"}], [{"original_text": "I took this amazing photo with the fisheye lens.", "album_id": "72157628996836227", "photo_flickr_id": "6748876809", "setting": "first-2-pick-and-tell", "worker_id": "LOM88EK7VLP2KP7", "story_id": "41390", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i took this amazing photo with the fisheye lens .", "storylet_id": "206954"}], [{"original_text": "The clock tower glistens in the foreground.", "album_id": "72157628996836227", "photo_flickr_id": "6748867351", "setting": "first-2-pick-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41391", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the clock tower glistens in the foreground .", "storylet_id": "206955"}], [{"original_text": "A woman wearing a scarf stands on the bridge for a picture.", "album_id": "72157628996836227", "photo_flickr_id": "6748860365", "setting": "first-2-pick-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41391", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a woman wearing a scarf stands on the bridge for a picture .", "storylet_id": "206956"}], [{"original_text": "The bridge has a curved shaped right over the water.", "album_id": "72157628996836227", "photo_flickr_id": "6748891671", "setting": "first-2-pick-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41391", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bridge has a curved shaped right over the water .", "storylet_id": "206957"}], [{"original_text": "This monument marks the entry to Chinatown.", "album_id": "72157628996836227", "photo_flickr_id": "6748884141", "setting": "first-2-pick-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41391", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this monument marks the entry to location .", "storylet_id": "206958"}], [{"original_text": "The building is the train station and is relatively empty. ", "album_id": "72157628996836227", "photo_flickr_id": "6748875211", "setting": "first-2-pick-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41391", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the building is the train station and is relatively empty .", "storylet_id": "206959"}], [{"original_text": "We started our tour of the city here on the bridge where we had to stop and pose for a picture because the cityscape was so beautiful.", "album_id": "72157628996836227", "photo_flickr_id": "6748860365", "setting": "last-3-pick-old-and-tell", "worker_id": "N3LWAG5CZHHWRSA", "story_id": "41392", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started our tour of the city here on the bridge where we had to stop and pose for a picture because the cityscape was so beautiful .", "storylet_id": "206960"}], [{"original_text": "There we so many art installations on the boardwalk that everyone loved. ", "album_id": "72157628996836227", "photo_flickr_id": "6748902155", "setting": "last-3-pick-old-and-tell", "worker_id": "N3LWAG5CZHHWRSA", "story_id": "41392", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there we so many art installations on the boardwalk that everyone loved .", "storylet_id": "206961"}], [{"original_text": "The architecture was so different of street to street that it was amazing because you never knew if you were going to see a skyscraper or an ancient cathedral like this one.", "album_id": "72157628996836227", "photo_flickr_id": "6748867351", "setting": "last-3-pick-old-and-tell", "worker_id": "N3LWAG5CZHHWRSA", "story_id": "41392", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the architecture was so different of street to street that it was amazing because you never knew if you were going to see a skyscraper or an ancient cathedral like this one .", "storylet_id": "206962"}], [{"original_text": "After an incredible day of sight seeing we were so tuckered out, but we stopped back by the bridge in order to take a picture from the other side of the water.", "album_id": "72157628996836227", "photo_flickr_id": "6748858569", "setting": "last-3-pick-old-and-tell", "worker_id": "N3LWAG5CZHHWRSA", "story_id": "41392", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after an incredible day of sight seeing we were so tuckered out , but we stopped back by the bridge in order to take a picture from the other side of the water .", "storylet_id": "206963"}], [{"original_text": "The next day, even though we were exhausted from our trip around town yesterday, we were so excited to start the journey all over again.", "album_id": "72157628996836227", "photo_flickr_id": "6748876809", "setting": "last-3-pick-old-and-tell", "worker_id": "N3LWAG5CZHHWRSA", "story_id": "41392", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the next day , even though we were exhausted from our trip around town yesterday , we were so excited to start the journey all over again .", "storylet_id": "206964"}], [{"original_text": "Here is mom at the start of our long a waited family vacation", "album_id": "72157628996836227", "photo_flickr_id": "6748860365", "setting": "last-3-pick-old-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "41393", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is mom at the start of our long a waited family vacation", "storylet_id": "206965"}], [{"original_text": "Here is my brother and sister standing in front of a unique statue.", "album_id": "72157628996836227", "photo_flickr_id": "6748902155", "setting": "last-3-pick-old-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "41393", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is my brother and sister standing in front of a unique statue .", "storylet_id": "206966"}], [{"original_text": "This is such a neat old time church that I can't wait to see the inside of.", "album_id": "72157628996836227", "photo_flickr_id": "6748867351", "setting": "last-3-pick-old-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "41393", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is such a neat old time church that i ca n't wait to see the inside of .", "storylet_id": "206967"}], [{"original_text": "This is the most awsome night picture that the lighting takes your breath away.", "album_id": "72157628996836227", "photo_flickr_id": "6748858569", "setting": "last-3-pick-old-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "41393", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the most awsome night picture that the lighting takes your breath away .", "storylet_id": "206968"}], [{"original_text": "Here is dad trying some fancy picture taking of some old buildings.", "album_id": "72157628996836227", "photo_flickr_id": "6748876809", "setting": "last-3-pick-old-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "41393", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is dad trying some fancy picture taking of some old buildings .", "storylet_id": "206969"}], [{"original_text": "We gathered at night to take some photos and get together", "album_id": "72157628996836227", "photo_flickr_id": "6748860365", "setting": "last-3-pick-old-and-tell", "worker_id": "MJCA15VWE1PWXPK", "story_id": "41394", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we gathered at night to take some photos and get together", "storylet_id": "206970"}], [{"original_text": "This is a very interesting sculpture. We had to take a photo by it!", "album_id": "72157628996836227", "photo_flickr_id": "6748902155", "setting": "last-3-pick-old-and-tell", "worker_id": "MJCA15VWE1PWXPK", "story_id": "41394", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a very interesting sculpture . we had to take a photo by it !", "storylet_id": "206971"}], [{"original_text": "This is a great old cathedral. The photo does not do it justice!", "album_id": "72157628996836227", "photo_flickr_id": "6748867351", "setting": "last-3-pick-old-and-tell", "worker_id": "MJCA15VWE1PWXPK", "story_id": "41394", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a great old cathedral . the photo does not do it justice !", "storylet_id": "206972"}], [{"original_text": "The river at night is quite beautiful!!", "album_id": "72157628996836227", "photo_flickr_id": "6748858569", "setting": "last-3-pick-old-and-tell", "worker_id": "MJCA15VWE1PWXPK", "story_id": "41394", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the river at night is quite beautiful ! !", "storylet_id": "206973"}], [{"original_text": "This fish-eye photo is cool. you can see the reflection in the piece of metal.", "album_id": "72157628996836227", "photo_flickr_id": "6748876809", "setting": "last-3-pick-old-and-tell", "worker_id": "MJCA15VWE1PWXPK", "story_id": "41394", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this fish-eye photo is cool . you can see the reflection in the piece of metal .", "storylet_id": "206974"}], [{"original_text": "The band was playing to a jam packed crowd at the event.", "album_id": "72157624787675250", "photo_flickr_id": "4918894951", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41395", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the band was playing to a jam packed crowd at the event .", "storylet_id": "206975"}], [{"original_text": "The stage had great colors around the band.", "album_id": "72157624787675250", "photo_flickr_id": "4919494178", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41395", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the stage had great colors around the band .", "storylet_id": "206976"}], [{"original_text": "The band member was jamming on his guitar.", "album_id": "72157624787675250", "photo_flickr_id": "4919496348", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41395", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band member was jamming on his guitar .", "storylet_id": "206977"}], [{"original_text": "At times the lights went out which created more mystery to the show.", "album_id": "72157624787675250", "photo_flickr_id": "4918926421", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41395", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at times the lights went out which created more mystery to the show .", "storylet_id": "206978"}], [{"original_text": "The band member rejoiced to the crowd as they applauded.", "album_id": "72157624787675250", "photo_flickr_id": "4918928451", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41395", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the band member rejoiced to the crowd as they applauded .", "storylet_id": "206979"}], [{"original_text": "At a rock concert", "album_id": "72157624787675250", "photo_flickr_id": "4919494178", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41396", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at a rock concert", "storylet_id": "206980"}], [{"original_text": "Singing their number one hit.", "album_id": "72157624787675250", "photo_flickr_id": "4918930493", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41396", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "singing their number one hit .", "storylet_id": "206981"}], [{"original_text": "Playing a guitar solo. ", "album_id": "72157624787675250", "photo_flickr_id": "4918889103", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41396", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "playing a guitar solo .", "storylet_id": "206982"}], [{"original_text": "Playing a Guitar solo with his dad. ", "album_id": "72157624787675250", "photo_flickr_id": "4919502552", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41396", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "playing a guitar solo with his dad .", "storylet_id": "206983"}], [{"original_text": "Thanking his fans for their support. ", "album_id": "72157624787675250", "photo_flickr_id": "4918928451", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41396", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thanking his fans for their support .", "storylet_id": "206984"}], [{"original_text": "I am so pumped up for this night!", "album_id": "72157624787675250", "photo_flickr_id": "4918894951", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41397", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am so pumped up for this night !", "storylet_id": "206985"}], [{"original_text": "The screen sure helps to see because I'm a little far back.", "album_id": "72157624787675250", "photo_flickr_id": "4919494178", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41397", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the screen sure helps to see because i 'm a little far back .", "storylet_id": "206986"}], [{"original_text": "This seems like a better view, and I'm having a great time!", "album_id": "72157624787675250", "photo_flickr_id": "4919496348", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41397", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this seems like a better view , and i 'm having a great time !", "storylet_id": "206987"}], [{"original_text": "Could this get any cooler?", "album_id": "72157624787675250", "photo_flickr_id": "4918926421", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41397", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "could this get any cooler ?", "storylet_id": "206988"}], [{"original_text": "I felt the same as everybody else and the performers that were having such a great time!", "album_id": "72157624787675250", "photo_flickr_id": "4918928451", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41397", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i felt the same as everybody else and the performers that were having such a great time !", "storylet_id": "206989"}], [{"original_text": "The concert started with a video, ", "album_id": "72157624787675250", "photo_flickr_id": "4918894951", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41398", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the concert started with a video ,", "storylet_id": "206990"}], [{"original_text": "it went on throughout the concert, ", "album_id": "72157624787675250", "photo_flickr_id": "4919494178", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41398", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it went on throughout the concert ,", "storylet_id": "206991"}], [{"original_text": "the music blared all around the room.", "album_id": "72157624787675250", "photo_flickr_id": "4919496348", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41398", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the music blared all around the room .", "storylet_id": "206992"}], [{"original_text": "Then they turned the lights down, ", "album_id": "72157624787675250", "photo_flickr_id": "4918926421", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41398", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they turned the lights down ,", "storylet_id": "206993"}], [{"original_text": "and started the real show.", "album_id": "72157624787675250", "photo_flickr_id": "4918928451", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41398", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and started the real show .", "storylet_id": "206994"}], [{"original_text": "Came to the ampa theater to see my favorite band play.", "album_id": "72157624787675250", "photo_flickr_id": "4919494178", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41399", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "came to the ampa theater to see my favorite band play .", "storylet_id": "206995"}], [{"original_text": "This is him, playing his heart out. I try to imagine he's singing just to me.", "album_id": "72157624787675250", "photo_flickr_id": "4918930493", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41399", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is him , playing his heart out . i try to imagine he 's singing just to me .", "storylet_id": "206996"}], [{"original_text": "Sing on, hear those pretty lyrics.", "album_id": "72157624787675250", "photo_flickr_id": "4918889103", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41399", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sing on , hear those pretty lyrics .", "storylet_id": "206997"}], [{"original_text": "two guitars are better than one in this duet.", "album_id": "72157624787675250", "photo_flickr_id": "4919502552", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41399", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two guitars are better than one in this duet .", "storylet_id": "206998"}], [{"original_text": "A final song just for me, I'm glad I came to this concert.", "album_id": "72157624787675250", "photo_flickr_id": "4918928451", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41399", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a final song just for me , i 'm glad i came to this concert .", "storylet_id": "206999"}], [{"original_text": "Santa's village was ready for visitors.", "album_id": "72157625537196801", "photo_flickr_id": "5286861765", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41400", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location 's village was ready for visitors .", "storylet_id": "207000"}], [{"original_text": "There were many Santa ornaments.", "album_id": "72157625537196801", "photo_flickr_id": "5286862095", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41400", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many location ornaments .", "storylet_id": "207001"}], [{"original_text": "Two full cabinets full.", "album_id": "72157625537196801", "photo_flickr_id": "5287464262", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41400", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two full cabinets full .", "storylet_id": "207002"}], [{"original_text": "This Santa is playing music. ", "album_id": "72157625537196801", "photo_flickr_id": "5286862265", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41400", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this location is playing music .", "storylet_id": "207003"}], [{"original_text": "Sant has hung it up for the day", "album_id": "72157625537196801", "photo_flickr_id": "5286862435", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41400", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sant has hung it up for the day", "storylet_id": "207004"}], [{"original_text": "We had made it to the Children's Village!", "album_id": "72157625537196801", "photo_flickr_id": "5286861765", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41401", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had made it to the children 's village !", "storylet_id": "207005"}], [{"original_text": "The flowers in the village area were beautiful.", "album_id": "72157625537196801", "photo_flickr_id": "5286861995", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41401", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flowers in the village area were beautiful .", "storylet_id": "207006"}], [{"original_text": "Some of the Santa figurines were inside of a cabinet ", "album_id": "72157625537196801", "photo_flickr_id": "5286862095", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41401", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the location figurines were inside of a cabinet", "storylet_id": "207007"}], [{"original_text": "More of the Santa figurines were displayed on the table. That's a lot of Santas.", "album_id": "72157625537196801", "photo_flickr_id": "5287464340", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41401", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more of the location figurines were displayed on the table . that 's a lot of santas .", "storylet_id": "207008"}], [{"original_text": "The Christmas tree was filled with colorful ornaments.", "album_id": "72157625537196801", "photo_flickr_id": "5286862311", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41401", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the christmas tree was filled with colorful ornaments .", "storylet_id": "207009"}], [{"original_text": "The little bridge that went over the road was pretty cool.", "album_id": "72157625537196801", "photo_flickr_id": "5286861765", "setting": "last-3-pick-old-and-tell", "worker_id": "8VDIOFYC9Y1XCOF", "story_id": "41402", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the little bridge that went over the road was pretty cool .", "storylet_id": "207010"}], [{"original_text": "Just look at these beautiful flowers!", "album_id": "72157625537196801", "photo_flickr_id": "5286861995", "setting": "last-3-pick-old-and-tell", "worker_id": "8VDIOFYC9Y1XCOF", "story_id": "41402", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "just look at these beautiful flowers !", "storylet_id": "207011"}], [{"original_text": "This is an awesome stash of Christmas toys and stuff.", "album_id": "72157625537196801", "photo_flickr_id": "5286862095", "setting": "last-3-pick-old-and-tell", "worker_id": "8VDIOFYC9Y1XCOF", "story_id": "41402", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is an awesome stash of christmas toys and stuff .", "storylet_id": "207012"}], [{"original_text": "Look at all the little Santa Clauses.", "album_id": "72157625537196801", "photo_flickr_id": "5287464340", "setting": "last-3-pick-old-and-tell", "worker_id": "8VDIOFYC9Y1XCOF", "story_id": "41402", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look at all the little location location .", "storylet_id": "207013"}], [{"original_text": "This is one amazing Christmas tree.", "album_id": "72157625537196801", "photo_flickr_id": "5286862311", "setting": "last-3-pick-old-and-tell", "worker_id": "8VDIOFYC9Y1XCOF", "story_id": "41402", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is one amazing christmas tree .", "storylet_id": "207014"}], [{"original_text": "We started at the botanical gardens.", "album_id": "72157625537196801", "photo_flickr_id": "5286861765", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41403", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started at the botanical gardens .", "storylet_id": "207015"}], [{"original_text": "There where a lot of nice plants there.", "album_id": "72157625537196801", "photo_flickr_id": "5286861995", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41403", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there where a lot of nice plants there .", "storylet_id": "207016"}], [{"original_text": "Next, we moved on to the Christmas dolls.", "album_id": "72157625537196801", "photo_flickr_id": "5286862095", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41403", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next , we moved on to the christmas dolls .", "storylet_id": "207017"}], [{"original_text": "The collections where pretty impressive.", "album_id": "72157625537196801", "photo_flickr_id": "5287464340", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41403", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the collections where pretty impressive .", "storylet_id": "207018"}], [{"original_text": "We stopped by the tree before heading out.", "album_id": "72157625537196801", "photo_flickr_id": "5286862311", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41403", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we stopped by the tree before heading out .", "storylet_id": "207019"}], [{"original_text": "We attended a Christmas Village today.", "album_id": "72157625537196801", "photo_flickr_id": "5286861765", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41404", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we attended a christmas village today .", "storylet_id": "207020"}], [{"original_text": "There were many stores.", "album_id": "72157625537196801", "photo_flickr_id": "5286862095", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41404", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many stores .", "storylet_id": "207021"}], [{"original_text": "The stores sold many Santa Claus dolls.", "album_id": "72157625537196801", "photo_flickr_id": "5287464262", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41404", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the stores sold many location location dolls .", "storylet_id": "207022"}], [{"original_text": "There was one of Santa Claus playing the violin.", "album_id": "72157625537196801", "photo_flickr_id": "5286862265", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41404", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was one of santa claus playing the violin .", "storylet_id": "207023"}], [{"original_text": "They even sold his outfits!", "album_id": "72157625537196801", "photo_flickr_id": "5286862435", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41404", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even sold his outfits !", "storylet_id": "207024"}], [{"original_text": "Every year we travel around to see all the Christmas lights.", "album_id": "72157625658238134", "photo_flickr_id": "5285628798", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41405", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every year we travel around to see all the christmas lights .", "storylet_id": "207025"}], [{"original_text": "This tree looks so much different than when it is light up.", "album_id": "72157625658238134", "photo_flickr_id": "5285029821", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41405", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this tree looks so much different than when it is light up .", "storylet_id": "207026"}], [{"original_text": "The decorations lining the streets were so pretty and different.", "album_id": "72157625658238134", "photo_flickr_id": "5285027807", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41405", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the decorations lining the streets were so pretty and different .", "storylet_id": "207027"}], [{"original_text": "Every lamp post was decorated in bright wreaths.", "album_id": "72157625658238134", "photo_flickr_id": "5285624722", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41405", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "every lamp post was decorated in bright wreaths .", "storylet_id": "207028"}], [{"original_text": "Out of all the lights at Christmas time, I liked this one the most.", "album_id": "72157625658238134", "photo_flickr_id": "5285026771", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41405", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "out of all the lights at christmas time , i liked this one the most .", "storylet_id": "207029"}], [{"original_text": "christmas is a wonderful time of year", "album_id": "72157625658238134", "photo_flickr_id": "5285628798", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41406", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "christmas is a wonderful time of year", "storylet_id": "207030"}], [{"original_text": "all the lights are beautiful ", "album_id": "72157625658238134", "photo_flickr_id": "5285030903", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41406", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the lights are beautiful", "storylet_id": "207031"}], [{"original_text": "and the holiday cheer makes for incredible nights", "album_id": "72157625658238134", "photo_flickr_id": "5285028369", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41406", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the holiday cheer makes for incredible nights", "storylet_id": "207032"}], [{"original_text": "the malls get into the season", "album_id": "72157625658238134", "photo_flickr_id": "5285027807", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41406", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the malls get into the season", "storylet_id": "207033"}], [{"original_text": "because they want more sales", "album_id": "72157625658238134", "photo_flickr_id": "5285624722", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41406", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "because they want more sales", "storylet_id": "207034"}], [{"original_text": "Christmas is a wonderful celebration.", "album_id": "72157625658238134", "photo_flickr_id": "5285628798", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41407", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "christmas is a wonderful celebration .", "storylet_id": "207035"}], [{"original_text": "Usually, you can see Christmas trees all over.", "album_id": "72157625658238134", "photo_flickr_id": "5285030903", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41407", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "usually , you can see christmas trees all over .", "storylet_id": "207036"}], [{"original_text": "Sometimes they show up in malls or town centers. They are usually decorated with lights", "album_id": "72157625658238134", "photo_flickr_id": "5285028369", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41407", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sometimes they show up in malls or town centers . they are usually decorated with lights", "storylet_id": "207037"}], [{"original_text": "and sometimes with colorful ornaments.", "album_id": "72157625658238134", "photo_flickr_id": "5285027807", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41407", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and sometimes with colorful ornaments .", "storylet_id": "207038"}], [{"original_text": "Christmas is a special time of each year, decorations and all.", "album_id": "72157625658238134", "photo_flickr_id": "5285624722", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41407", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "christmas is a special time of each year , decorations and all .", "storylet_id": "207039"}], [{"original_text": "It was my favorite time of year, Christmas.", "album_id": "72157625658238134", "photo_flickr_id": "5285628798", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41408", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was my favorite time of year , christmas .", "storylet_id": "207040"}], [{"original_text": "The blue tree was very pretty this year, we all enjoyed seeing it.", "album_id": "72157625658238134", "photo_flickr_id": "5285030903", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41408", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the blue tree was very pretty this year , we all enjoyed seeing it .", "storylet_id": "207041"}], [{"original_text": "Looking down on the tree and all the lights makes one feel the spirit of Christmas more.", "album_id": "72157625658238134", "photo_flickr_id": "5285028369", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41408", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looking down on the tree and all the lights makes one feel the spirit of christmas more .", "storylet_id": "207042"}], [{"original_text": "The different color balls were festive.", "album_id": "72157625658238134", "photo_flickr_id": "5285027807", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41408", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the different color balls were festive .", "storylet_id": "207043"}], [{"original_text": "All the shops had decorations on the walls.", "album_id": "72157625658238134", "photo_flickr_id": "5285624722", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41408", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the shops had decorations on the walls .", "storylet_id": "207044"}], [{"original_text": "The pyramid was blue", "album_id": "72157625658238134", "photo_flickr_id": "5285628798", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41409", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the pyramid was blue", "storylet_id": "207045"}], [{"original_text": "and there were pretty lights", "album_id": "72157625658238134", "photo_flickr_id": "5285029821", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41409", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and there were pretty lights", "storylet_id": "207046"}], [{"original_text": "with the ornaments.", "album_id": "72157625658238134", "photo_flickr_id": "5285027807", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41409", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "with the ornaments .", "storylet_id": "207047"}], [{"original_text": "The lights were bright", "album_id": "72157625658238134", "photo_flickr_id": "5285624722", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41409", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lights were bright", "storylet_id": "207048"}], [{"original_text": "in the lamps.", "album_id": "72157625658238134", "photo_flickr_id": "5285026771", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41409", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the lamps .", "storylet_id": "207049"}], [{"original_text": "The chinese dragon was used on New Years.", "album_id": "72157623537919024", "photo_flickr_id": "4396632173", "setting": "first-2-pick-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41410", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the chinese dragon was used on new years .", "storylet_id": "207050"}], [{"original_text": "This is a chinese umbrella used to shield against UV rays.", "album_id": "72157623537919024", "photo_flickr_id": "4386003291", "setting": "first-2-pick-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41410", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a chinese umbrella used to shield against uv rays .", "storylet_id": "207051"}], [{"original_text": "The budda statue gives happiness.", "album_id": "72157623537919024", "photo_flickr_id": "4396633393", "setting": "first-2-pick-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41410", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the budda statue gives happiness .", "storylet_id": "207052"}], [{"original_text": "The pink peony is beautiful and compliments the room.", "album_id": "72157623537919024", "photo_flickr_id": "4381604055", "setting": "first-2-pick-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41410", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pink peony is beautiful and compliments the room .", "storylet_id": "207053"}], [{"original_text": "The yellow flower carries delicate petals.", "album_id": "72157623537919024", "photo_flickr_id": "4381604475", "setting": "first-2-pick-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41410", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the yellow flower carries delicate petals .", "storylet_id": "207054"}], [{"original_text": "We decided to go to out on the market yesterday and we found these wonderful flowers.", "album_id": "72157623537919024", "photo_flickr_id": "4382350968", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41411", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go to out on the market yesterday and we found these wonderful flowers .", "storylet_id": "207055"}], [{"original_text": "While out at the market we saw many interesting antiques.", "album_id": "72157623537919024", "photo_flickr_id": "4396632173", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41411", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while out at the market we saw many interesting antiques .", "storylet_id": "207056"}], [{"original_text": "The owner of one of the antique shops explained the importance of this piece.", "album_id": "72157623537919024", "photo_flickr_id": "4396633393", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41411", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the owner of one of the antique shops explained the importance of this piece .", "storylet_id": "207057"}], [{"original_text": "He also said this piece is a rare artifact that can not be found anywhere.", "album_id": "72157623537919024", "photo_flickr_id": "4397400722", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41411", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he also said this piece is a rare artifact that can not be found anywhere .", "storylet_id": "207058"}], [{"original_text": "We saw so many beautiful flowers that day. It brightened up the mood.", "album_id": "72157623537919024", "photo_flickr_id": "4381604475", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41411", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we saw so many beautiful flowers that day . it brightened up the mood .", "storylet_id": "207059"}], [{"original_text": "The flowers look ready to bloom fully. ", "album_id": "72157623537919024", "photo_flickr_id": "4382350968", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41412", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the flowers look ready to bloom fully .", "storylet_id": "207060"}], [{"original_text": "The colors of the dragon for the Chinese New Year Parade are astounding. ", "album_id": "72157623537919024", "photo_flickr_id": "4396632173", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41412", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the colors of the dragon for the chinese new year parade are astounding .", "storylet_id": "207061"}], [{"original_text": "The figurine looks very life like. ", "album_id": "72157623537919024", "photo_flickr_id": "4396633393", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41412", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the figurine looks very life like .", "storylet_id": "207062"}], [{"original_text": "This figurine captures the pleasure of happiness fully. ", "album_id": "72157623537919024", "photo_flickr_id": "4397400722", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41412", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this figurine captures the pleasure of happiness fully .", "storylet_id": "207063"}], [{"original_text": "This is a close up of a flower getting ready to bloom fully. ", "album_id": "72157623537919024", "photo_flickr_id": "4381604475", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41412", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a close up of a flower getting ready to bloom fully .", "storylet_id": "207064"}], [{"original_text": "I saw a Chinese lion yesterday.", "album_id": "72157623537919024", "photo_flickr_id": "4396632173", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41413", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i saw a chinese lion yesterday .", "storylet_id": "207065"}], [{"original_text": "It was almost as colorful as my umbrella.", "album_id": "72157623537919024", "photo_flickr_id": "4386003291", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41413", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was almost as colorful as my umbrella .", "storylet_id": "207066"}], [{"original_text": "I also bought some statues.", "album_id": "72157623537919024", "photo_flickr_id": "4396633393", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41413", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also bought some statues .", "storylet_id": "207067"}], [{"original_text": "I finished the day by visiting fields of pink", "album_id": "72157623537919024", "photo_flickr_id": "4381604055", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41413", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i finished the day by visiting fields of pink", "storylet_id": "207068"}], [{"original_text": "and yellow flowers.", "album_id": "72157623537919024", "photo_flickr_id": "4381604475", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41413", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and yellow flowers .", "storylet_id": "207069"}], [{"original_text": "A man went to the market and bought a cute stuffed toy for his wife.", "album_id": "72157623537919024", "photo_flickr_id": "4396632173", "setting": "last-3-pick-old-and-tell", "worker_id": "2DO9LQ7S3270920", "story_id": "41414", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a man went to the market and bought a cute stuffed toy for his wife .", "storylet_id": "207070"}], [{"original_text": "While there he bought an umbrella.", "album_id": "72157623537919024", "photo_flickr_id": "4386003291", "setting": "last-3-pick-old-and-tell", "worker_id": "2DO9LQ7S3270920", "story_id": "41414", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while there he bought an umbrella .", "storylet_id": "207071"}], [{"original_text": "He also bought a Chinese figurine.", "album_id": "72157623537919024", "photo_flickr_id": "4396633393", "setting": "last-3-pick-old-and-tell", "worker_id": "2DO9LQ7S3270920", "story_id": "41414", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he also bought a chinese figurine .", "storylet_id": "207072"}], [{"original_text": "The man then went to buy beautiful flowers for is wife.", "album_id": "72157623537919024", "photo_flickr_id": "4381604055", "setting": "last-3-pick-old-and-tell", "worker_id": "2DO9LQ7S3270920", "story_id": "41414", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man then went to buy beautiful flowers for is wife .", "storylet_id": "207073"}], [{"original_text": "He found yellow flowers that were just as beautiful and bought those also.", "album_id": "72157623537919024", "photo_flickr_id": "4381604475", "setting": "last-3-pick-old-and-tell", "worker_id": "2DO9LQ7S3270920", "story_id": "41414", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he found yellow flowers that were just as beautiful and bought those also .", "storylet_id": "207074"}], [{"original_text": "Have you ever wondered what happens to a local amusement park when it gets shut down.", "album_id": "72157600029750956", "photo_flickr_id": "432386846", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41415", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "have you ever wondered what happens to a local amusement park when it gets shut down .", "storylet_id": "207075"}], [{"original_text": "Most of the time the rides are just left where they are to gather dust.", "album_id": "72157600029750956", "photo_flickr_id": "432340856", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41415", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "most of the time the rides are just left where they are to gather dust .", "storylet_id": "207076"}], [{"original_text": "The carousel horses are taken down and stored.", "album_id": "72157600029750956", "photo_flickr_id": "432358100", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41415", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the carousel horses are taken down and stored .", "storylet_id": "207077"}], [{"original_text": "They remove the statues in parts and put them undercover.", "album_id": "72157600029750956", "photo_flickr_id": "432369409", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41415", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they remove the statues in parts and put them undercover .", "storylet_id": "207078"}], [{"original_text": "The Ferris wheel stands vigilance over the lonely park remembering its bygone days of providing fun and laughter for the crowd.", "album_id": "72157600029750956", "photo_flickr_id": "432374596", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41415", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ferris wheel stands vigilance over the lonely park remembering its bygone days of providing fun and laughter for the crowd .", "storylet_id": "207079"}], [{"original_text": "This is an abandoned amusement park.", "album_id": "72157600029750956", "photo_flickr_id": "432330481", "setting": "first-2-pick-and-tell", "worker_id": "I26RE83ALY1RD7H", "story_id": "41416", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is an abandoned amusement park .", "storylet_id": "207080"}], [{"original_text": "There is dirt and debris everywhere,", "album_id": "72157600029750956", "photo_flickr_id": "432334895", "setting": "first-2-pick-and-tell", "worker_id": "I26RE83ALY1RD7H", "story_id": "41416", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is dirt and debris everywhere ,", "storylet_id": "207081"}], [{"original_text": "even on the bumper cars.", "album_id": "72157600029750956", "photo_flickr_id": "432337536", "setting": "first-2-pick-and-tell", "worker_id": "I26RE83ALY1RD7H", "story_id": "41416", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even on the bumper cars .", "storylet_id": "207082"}], [{"original_text": "It is really spooky.", "album_id": "72157600029750956", "photo_flickr_id": "432369409", "setting": "first-2-pick-and-tell", "worker_id": "I26RE83ALY1RD7H", "story_id": "41416", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is really spooky .", "storylet_id": "207083"}], [{"original_text": "No one is here accept the cats.", "album_id": "72157600029750956", "photo_flickr_id": "432382438", "setting": "first-2-pick-and-tell", "worker_id": "I26RE83ALY1RD7H", "story_id": "41416", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "no one is here accept the cats .", "storylet_id": "207084"}], [{"original_text": "The entrance to the old amusement park. ", "album_id": "72157600029750956", "photo_flickr_id": "432386846", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "41417", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the entrance to the old amusement park .", "storylet_id": "207085"}], [{"original_text": "The rides just looked aban doned. Like no one cares.", "album_id": "72157600029750956", "photo_flickr_id": "432340856", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "41417", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rides just looked aban doned . like no one cares .", "storylet_id": "207086"}], [{"original_text": "Perhaps someone can come along and bring this back to life. ", "album_id": "72157600029750956", "photo_flickr_id": "432358100", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "41417", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "perhaps someone can come along and bring this back to life .", "storylet_id": "207087"}], [{"original_text": "You wonder how many kids had fun here over the years. ", "album_id": "72157600029750956", "photo_flickr_id": "432369409", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "41417", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you wonder how many kids had fun here over the years .", "storylet_id": "207088"}], [{"original_text": "I wish I could ride the Ferris wheel. Perhaps there is a switch somewhere?", "album_id": "72157600029750956", "photo_flickr_id": "432374596", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "41417", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i wish i could ride the ferris wheel . perhaps there is a switch somewhere ?", "storylet_id": "207089"}], [{"original_text": "We took a trip to visit the old fair grounds.", "album_id": "72157600029750956", "photo_flickr_id": "432386846", "setting": "last-3-pick-old-and-tell", "worker_id": "LUPX14WM3ZZVB35", "story_id": "41418", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to visit the old fair grounds .", "storylet_id": "207090"}], [{"original_text": "It was a little creepy walking around the abandoned bumper car track.", "album_id": "72157600029750956", "photo_flickr_id": "432340856", "setting": "last-3-pick-old-and-tell", "worker_id": "LUPX14WM3ZZVB35", "story_id": "41418", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a little creepy walking around the abandoned bumper car track .", "storylet_id": "207091"}], [{"original_text": "The child's horse was left off to the side of a carousel.", "album_id": "72157600029750956", "photo_flickr_id": "432358100", "setting": "last-3-pick-old-and-tell", "worker_id": "LUPX14WM3ZZVB35", "story_id": "41418", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the child 's horse was left off to the side of a carousel .", "storylet_id": "207092"}], [{"original_text": "This dusty Batman ride-on figure was still attached to the carousel.", "album_id": "72157600029750956", "photo_flickr_id": "432369409", "setting": "last-3-pick-old-and-tell", "worker_id": "LUPX14WM3ZZVB35", "story_id": "41418", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this dusty batman ride-on figure was still attached to the carousel .", "storylet_id": "207093"}], [{"original_text": "Wow, this trip was interesting and ended in an appropriate shot of the old ferris wheel in the twilight.", "album_id": "72157600029750956", "photo_flickr_id": "432374596", "setting": "last-3-pick-old-and-tell", "worker_id": "LUPX14WM3ZZVB35", "story_id": "41418", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "wow , this trip was interesting and ended in an appropriate shot of the old ferris wheel in the twilight .", "storylet_id": "207094"}], [{"original_text": "We recently traveled to an abandoned carnival.", "album_id": "72157600029750956", "photo_flickr_id": "432386846", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "41419", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we recently traveled to an abandoned carnival .", "storylet_id": "207095"}], [{"original_text": "The bumper cars, long abandoned, have collected dust over time.", "album_id": "72157600029750956", "photo_flickr_id": "432340856", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "41419", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bumper cars , long abandoned , have collected dust over time .", "storylet_id": "207096"}], [{"original_text": "This giraffe speaks of an era long past.", "album_id": "72157600029750956", "photo_flickr_id": "432358100", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "41419", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this giraffe speaks of an era long past .", "storylet_id": "207097"}], [{"original_text": "Batman is as popular today as he was long ago, although he has had a face lift.", "album_id": "72157600029750956", "photo_flickr_id": "432369409", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "41419", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "batman is as popular today as he was long ago , although he has had a face lift .", "storylet_id": "207098"}], [{"original_text": "One can only imagine the screaming, giggling patrons of this abandoned carnival ride.", "album_id": "72157600029750956", "photo_flickr_id": "432374596", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "41419", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one can only imagine the screaming , giggling patrons of this abandoned carnival ride .", "storylet_id": "207099"}], [{"original_text": "Art finds many forms.", "album_id": "72157624773266840", "photo_flickr_id": "4913813179", "setting": "first-2-pick-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41420", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "art finds many forms .", "storylet_id": "207100"}], [{"original_text": "Art expresses so many emotions.", "album_id": "72157624773266840", "photo_flickr_id": "4915263669", "setting": "first-2-pick-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41420", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "art expresses so many emotions .", "storylet_id": "207101"}], [{"original_text": "Art represents ideals of beauty.", "album_id": "72157624773266840", "photo_flickr_id": "4915269021", "setting": "first-2-pick-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41420", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "art represents ideals of beauty .", "storylet_id": "207102"}], [{"original_text": "Art can be fierce.", "album_id": "72157624773266840", "photo_flickr_id": "4922310793", "setting": "first-2-pick-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41420", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "art can be fierce .", "storylet_id": "207103"}], [{"original_text": "Art can be adorable.", "album_id": "72157624773266840", "photo_flickr_id": "4913122970", "setting": "first-2-pick-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "41420", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "art can be adorable .", "storylet_id": "207104"}], [{"original_text": "Everything is painted in this town.", "album_id": "72157624773266840", "photo_flickr_id": "4913813179", "setting": "first-2-pick-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "41421", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everything is painted in this town .", "storylet_id": "207105"}], [{"original_text": "Would you know this town was covered in graffiti?", "album_id": "72157624773266840", "photo_flickr_id": "4919305094", "setting": "first-2-pick-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "41421", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "would you know this town was covered in graffiti ?", "storylet_id": "207106"}], [{"original_text": "Cute graffiti? Look at these little shoe prints.", "album_id": "72157624773266840", "photo_flickr_id": "4913806861", "setting": "first-2-pick-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "41421", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "cute graffiti ? look at these little shoe prints .", "storylet_id": "207107"}], [{"original_text": "Intense graffiti? Realistic and impressive.", "album_id": "72157624773266840", "photo_flickr_id": "4915263669", "setting": "first-2-pick-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "41421", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "intense graffiti ? realistic and impressive .", "storylet_id": "207108"}], [{"original_text": "So much art. So much talent. I loved walking through the streets, admiring the decor by taggers.", "album_id": "72157624773266840", "photo_flickr_id": "4915273721", "setting": "first-2-pick-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "41421", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so much art . so much talent . i loved walking through the streets , admiring the decor by taggers .", "storylet_id": "207109"}], [{"original_text": "Our city is really a lovely place.", "album_id": "72157624773266840", "photo_flickr_id": "4913813179", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41422", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our city is really a lovely place .", "storylet_id": "207110"}], [{"original_text": "Even the graffiti is done in good taste.", "album_id": "72157624773266840", "photo_flickr_id": "4915263669", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41422", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the graffiti is done in good taste .", "storylet_id": "207111"}], [{"original_text": "Paintings on the building depicting beautiful people.", "album_id": "72157624773266840", "photo_flickr_id": "4915269021", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41422", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "paintings on the building depicting beautiful people .", "storylet_id": "207112"}], [{"original_text": "And gorgeous statues.", "album_id": "72157624773266840", "photo_flickr_id": "4922310793", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41422", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and gorgeous statues .", "storylet_id": "207113"}], [{"original_text": "And who could resist the baby penguin named Summer?", "album_id": "72157624773266840", "photo_flickr_id": "4913122970", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41422", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and who could resist the baby penguin named [female] ?", "storylet_id": "207114"}], [{"original_text": "A parking meter is decorated in pink.", "album_id": "72157624773266840", "photo_flickr_id": "4913813179", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41423", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a parking meter is decorated in pink .", "storylet_id": "207115"}], [{"original_text": "The skyline of the city is beautiful against the sky and river.", "album_id": "72157624773266840", "photo_flickr_id": "4919305094", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41423", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the skyline of the city is beautiful against the sky and river .", "storylet_id": "207116"}], [{"original_text": "Foot steps of various colors adorn the boardwalk.", "album_id": "72157624773266840", "photo_flickr_id": "4913806861", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41423", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "foot steps of various colors adorn the boardwalk .", "storylet_id": "207117"}], [{"original_text": "Some art is seen on the walls.", "album_id": "72157624773266840", "photo_flickr_id": "4915263669", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41423", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some art is seen on the walls .", "storylet_id": "207118"}], [{"original_text": "Some different charachter art is seen.", "album_id": "72157624773266840", "photo_flickr_id": "4915273721", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41423", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some different charachter art is seen .", "storylet_id": "207119"}], [{"original_text": "We took a trip through the city of Quebec to see the artwork.", "album_id": "72157624773266840", "photo_flickr_id": "4913813179", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41424", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip through the city of location to see the artwork .", "storylet_id": "207120"}], [{"original_text": "The view from up high was amazing.", "album_id": "72157624773266840", "photo_flickr_id": "4919305094", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41424", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view from up high was amazing .", "storylet_id": "207121"}], [{"original_text": "Then we came to some artwork on the ground.", "album_id": "72157624773266840", "photo_flickr_id": "4913806861", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41424", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we came to some artwork on the ground .", "storylet_id": "207122"}], [{"original_text": "There was many different types of murals on the walls.", "album_id": "72157624773266840", "photo_flickr_id": "4915263669", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41424", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was many different types of murals on the walls .", "storylet_id": "207123"}], [{"original_text": "We saw so many different artist's work.", "album_id": "72157624773266840", "photo_flickr_id": "4915273721", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41424", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we saw so many different artist 's work .", "storylet_id": "207124"}], [{"original_text": "We were excited about our trip to the amusement park.", "album_id": "72157623157578979", "photo_flickr_id": "4303548503", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "41425", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were excited about our trip to the amusement park .", "storylet_id": "207125"}], [{"original_text": "One of the first things you see getting into the park is the massive ferris wheel.", "album_id": "72157623157578979", "photo_flickr_id": "4303551519", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "41425", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of the first things you see getting into the park is the massive ferris wheel .", "storylet_id": "207126"}], [{"original_text": "We went into this weird side show.", "album_id": "72157623157578979", "photo_flickr_id": "4303548215", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "41425", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went into this weird side show .", "storylet_id": "207127"}], [{"original_text": "Here is an odd mask I found in one of the gift shops.", "album_id": "72157623157578979", "photo_flickr_id": "4302844158", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "41425", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is an odd mask i found in one of the gift shops .", "storylet_id": "207128"}], [{"original_text": "We had an awesome time at the fair.", "album_id": "72157623157578979", "photo_flickr_id": "4302843860", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "41425", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had an awesome time at the fair .", "storylet_id": "207129"}], [{"original_text": "Enjoy now graffiti at the train station. ", "album_id": "72157623157578979", "photo_flickr_id": "4304292998", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41426", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "enjoy now graffiti at the train station .", "storylet_id": "207130"}], [{"original_text": "Friends on their way to the fair.", "album_id": "72157623157578979", "photo_flickr_id": "4303548503", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41426", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "friends on their way to the fair .", "storylet_id": "207131"}], [{"original_text": "About to get on the ferris wheel. ", "album_id": "72157623157578979", "photo_flickr_id": "4303551519", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41426", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "about to get on the ferris wheel .", "storylet_id": "207132"}], [{"original_text": "best friends having fun after the ferris wheel ride. ", "album_id": "72157623157578979", "photo_flickr_id": "4302843860", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41426", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "best friends having fun after the ferris wheel ride .", "storylet_id": "207133"}], [{"original_text": "After the fair the friends had fun playing card games. ", "album_id": "72157623157578979", "photo_flickr_id": "4302094475", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41426", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the fair the friends had fun playing card games .", "storylet_id": "207134"}], [{"original_text": "Sherry hopped on the train to meet her friends at the carnival.", "album_id": "72157623157578979", "photo_flickr_id": "4303548503", "setting": "last-3-pick-old-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "41427", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] hopped on the train to meet her friends at the carnival .", "storylet_id": "207135"}], [{"original_text": "Her first stop HAD to be the Ferris Wheel; it was her favorite ride!", "album_id": "72157623157578979", "photo_flickr_id": "4303551519", "setting": "last-3-pick-old-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "41427", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her first stop had to be the organization organization ; it was her favorite ride !", "storylet_id": "207136"}], [{"original_text": "Afterwards, she wanted to see a show.", "album_id": "72157623157578979", "photo_flickr_id": "4303548215", "setting": "last-3-pick-old-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "41427", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards , she wanted to see a show .", "storylet_id": "207137"}], [{"original_text": "She was so happy to find a great party mask!", "album_id": "72157623157578979", "photo_flickr_id": "4302844158", "setting": "last-3-pick-old-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "41427", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was so happy to find a great party mask !", "storylet_id": "207138"}], [{"original_text": "The best part of the night, though, was good times with her friends.", "album_id": "72157623157578979", "photo_flickr_id": "4302843860", "setting": "last-3-pick-old-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "41427", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part of the night , though , was good times with her friends .", "storylet_id": "207139"}], [{"original_text": "A short subway ride to the fair, can't wait to get there!", "album_id": "72157623157578979", "photo_flickr_id": "4303548503", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "41428", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a short subway ride to the fair , ca n't wait to get there !", "storylet_id": "207140"}], [{"original_text": "Ferris wheels are my favorite ride. I love the view from up there. ", "album_id": "72157623157578979", "photo_flickr_id": "4303551519", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "41428", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "ferris wheels are my favorite ride . i love the view from up there .", "storylet_id": "207141"}], [{"original_text": "We have to go into the strangest show on earth, who could resist. ", "album_id": "72157623157578979", "photo_flickr_id": "4303548215", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "41428", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we have to go into the strangest show on earth , who could resist .", "storylet_id": "207142"}], [{"original_text": "It was strange but I expected it to be more scary. ", "album_id": "72157623157578979", "photo_flickr_id": "4302844158", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "41428", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was strange but i expected it to be more scary .", "storylet_id": "207143"}], [{"original_text": "A fun day is almost over. Back to the subway!", "album_id": "72157623157578979", "photo_flickr_id": "4302843860", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "41428", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a fun day is almost over . back to the subway !", "storylet_id": "207144"}], [{"original_text": "Today we took the train into the city.", "album_id": "72157623157578979", "photo_flickr_id": "4303548503", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41429", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we took the train into the city .", "storylet_id": "207145"}], [{"original_text": "We hung out at the amusement park.", "album_id": "72157623157578979", "photo_flickr_id": "4303551519", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41429", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we hung out at the amusement park .", "storylet_id": "207146"}], [{"original_text": "We saw a freak show.", "album_id": "72157623157578979", "photo_flickr_id": "4303548215", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41429", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw a freak show .", "storylet_id": "207147"}], [{"original_text": "We even got to try on the performers' costumes.", "album_id": "72157623157578979", "photo_flickr_id": "4302844158", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41429", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even got to try on the performers ' costumes .", "storylet_id": "207148"}], [{"original_text": "We made sure to take lots of group photos.", "album_id": "72157623157578979", "photo_flickr_id": "4302843860", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41429", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we made sure to take lots of group photos .", "storylet_id": "207149"}], [{"original_text": "The toen was ready for entertainment.", "album_id": "72157623706412802", "photo_flickr_id": "4464577012", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41430", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the toen was ready for entertainment .", "storylet_id": "207150"}], [{"original_text": "The play was ready to start,", "album_id": "72157623706412802", "photo_flickr_id": "4463800037", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41430", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the play was ready to start ,", "storylet_id": "207151"}], [{"original_text": "The girls were dressed and ready.", "album_id": "72157623706412802", "photo_flickr_id": "4464577278", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41430", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girls were dressed and ready .", "storylet_id": "207152"}], [{"original_text": "The lights make the building look good.", "album_id": "72157623706412802", "photo_flickr_id": "4464577888", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41430", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lights make the building look good .", "storylet_id": "207153"}], [{"original_text": "Night time in a city is amazing.", "album_id": "72157623706412802", "photo_flickr_id": "4464578136", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41430", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "night time in a city is amazing .", "storylet_id": "207154"}], [{"original_text": "this is an amazing little city", "album_id": "72157623706412802", "photo_flickr_id": "4464577012", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41431", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is an amazing little city", "storylet_id": "207155"}], [{"original_text": "even the mannequins are hot ", "album_id": "72157623706412802", "photo_flickr_id": "4464577278", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41431", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the mannequins are hot", "storylet_id": "207156"}], [{"original_text": "the town center is all lit up", "album_id": "72157623706412802", "photo_flickr_id": "4464577532", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41431", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the town center is all lit up", "storylet_id": "207157"}], [{"original_text": "there is an ambiance of township", "album_id": "72157623706412802", "photo_flickr_id": "4463800657", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41431", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there is an ambiance of township", "storylet_id": "207158"}], [{"original_text": "and the coolest lighting you will ever see", "album_id": "72157623706412802", "photo_flickr_id": "4464577888", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41431", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the coolest lighting you will ever see", "storylet_id": "207159"}], [{"original_text": "I went to see Priscilla this weekend.", "album_id": "72157623706412802", "photo_flickr_id": "4464577012", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41432", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to see [female] this weekend .", "storylet_id": "207160"}], [{"original_text": "Priscilla has made many many albums.", "album_id": "72157623706412802", "photo_flickr_id": "4464577278", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41432", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] has made many many albums .", "storylet_id": "207161"}], [{"original_text": "Afterwards we drove around town.", "album_id": "72157623706412802", "photo_flickr_id": "4464577532", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41432", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards we drove around town .", "storylet_id": "207162"}], [{"original_text": "This is my little gas saving car.", "album_id": "72157623706412802", "photo_flickr_id": "4463800657", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41432", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is my little gas saving car .", "storylet_id": "207163"}], [{"original_text": "There were very colorful buildings being lit up in lights.", "album_id": "72157623706412802", "photo_flickr_id": "4464577888", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41432", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were very colorful buildings being lit up in lights .", "storylet_id": "207164"}], [{"original_text": "There was nothing like a live performance. ", "album_id": "72157623706412802", "photo_flickr_id": "4464577012", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41433", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was nothing like a live performance .", "storylet_id": "207165"}], [{"original_text": "Broadway had always been a favorite. ", "album_id": "72157623706412802", "photo_flickr_id": "4463800037", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41433", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "location had always been a favorite .", "storylet_id": "207166"}], [{"original_text": "After a show, she would often window show. ", "album_id": "72157623706412802", "photo_flickr_id": "4464577278", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41433", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after a show , she would often window show .", "storylet_id": "207167"}], [{"original_text": "She loved the lights. ", "album_id": "72157623706412802", "photo_flickr_id": "4464577888", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41433", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she loved the lights .", "storylet_id": "207168"}], [{"original_text": "It was a nice to stroll along the city streets and reflect on the show, the performers, the music. ", "album_id": "72157623706412802", "photo_flickr_id": "4464578136", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41433", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a nice to stroll along the city streets and reflect on the show , the performers , the music .", "storylet_id": "207169"}], [{"original_text": "We were headed to see les miserables!", "album_id": "72157623706412802", "photo_flickr_id": "4464577012", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41434", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were headed to see les miserables !", "storylet_id": "207170"}], [{"original_text": "This is the beautiful building where the play will be shown!", "album_id": "72157623706412802", "photo_flickr_id": "4463800037", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41434", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the beautiful building where the play will be shown !", "storylet_id": "207171"}], [{"original_text": "She looks so amazing and pretty!", "album_id": "72157623706412802", "photo_flickr_id": "4464577278", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41434", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she looks so amazing and pretty !", "storylet_id": "207172"}], [{"original_text": "Afterwards we checked out the sites of the city!", "album_id": "72157623706412802", "photo_flickr_id": "4464577888", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41434", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards we checked out the sites of the city !", "storylet_id": "207173"}], [{"original_text": "The city was so amazing and beautiful! We had fun!", "album_id": "72157623706412802", "photo_flickr_id": "4464578136", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41434", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the city was so amazing and beautiful ! we had fun !", "storylet_id": "207174"}], [{"original_text": "This is a festival that I went to the other day.", "album_id": "506155", "photo_flickr_id": "21796552", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "41435", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a festival that i went to the other day .", "storylet_id": "207175"}], [{"original_text": "There were a lot of floats and interesting things to see.", "album_id": "506155", "photo_flickr_id": "21794972", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "41435", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of floats and interesting things to see .", "storylet_id": "207176"}], [{"original_text": "We met these people who wanted to hang out with us.", "album_id": "506155", "photo_flickr_id": "21794933", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "41435", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we met these people who wanted to hang out with us .", "storylet_id": "207177"}], [{"original_text": "We saw these girls that were doing all kinds of weird things.", "album_id": "506155", "photo_flickr_id": "21795014", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "41435", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw these girls that were doing all kinds of weird things .", "storylet_id": "207178"}], [{"original_text": "We took this last picture right before we went home.", "album_id": "506155", "photo_flickr_id": "21797284", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "41435", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took this last picture right before we went home .", "storylet_id": "207179"}], [{"original_text": "We went to an odd park today. Maybe it was a circus?", "album_id": "506155", "photo_flickr_id": "21794972", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41436", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to an odd park today . maybe it was a circus ?", "storylet_id": "207180"}], [{"original_text": "There were roller coasters and a lot of other rides.", "album_id": "506155", "photo_flickr_id": "21797337", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41436", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were roller coasters and a lot of other rides .", "storylet_id": "207181"}], [{"original_text": "There were even some attractive women in skimpy outfits.", "album_id": "506155", "photo_flickr_id": "21795014", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41436", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were even some attractive women in skimpy outfits .", "storylet_id": "207182"}], [{"original_text": "A lot of people really liked the park.", "album_id": "506155", "photo_flickr_id": "21795049", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41436", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a lot of people really liked the park .", "storylet_id": "207183"}], [{"original_text": "I lost it at the dunk tanks though. Those poor people. I'm not coming back to this park", "album_id": "506155", "photo_flickr_id": "21797268", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41436", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i lost it at the dunk tanks though . those poor people . i 'm not coming back to this park", "storylet_id": "207184"}], [{"original_text": "A large crowd turned out for the NY state fair.", "album_id": "506155", "photo_flickr_id": "21796552", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "41437", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a large crowd turned out for the location state fair .", "storylet_id": "207185"}], [{"original_text": "Games and rides were abundant for kids and adults alike. ", "album_id": "506155", "photo_flickr_id": "21794972", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "41437", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "games and rides were abundant for kids and adults alike .", "storylet_id": "207186"}], [{"original_text": "Some fair goers came dressed up for the festivities.", "album_id": "506155", "photo_flickr_id": "21794933", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "41437", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some fair goers came dressed up for the festivities .", "storylet_id": "207187"}], [{"original_text": "Others came less dressed to soak in the sun.", "album_id": "506155", "photo_flickr_id": "21795014", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "41437", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others came less dressed to soak in the sun .", "storylet_id": "207188"}], [{"original_text": "On this ride you can see the entire fair and the massive amount of people.", "album_id": "506155", "photo_flickr_id": "21797284", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "41437", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on this ride you can see the entire fair and the massive amount of people .", "storylet_id": "207189"}], [{"original_text": "Everyone came out to watch the parade.", "album_id": "506155", "photo_flickr_id": "21796552", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41438", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone came out to watch the parade .", "storylet_id": "207190"}], [{"original_text": "They watched the crazy floats go by, ", "album_id": "506155", "photo_flickr_id": "21794972", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41438", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they watched the crazy floats go by ,", "storylet_id": "207191"}], [{"original_text": "and took pictures of the people wearing interesting costumes. ", "album_id": "506155", "photo_flickr_id": "21794933", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41438", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and took pictures of the people wearing interesting costumes .", "storylet_id": "207192"}], [{"original_text": "Some costumes were less costumes than they were lingerie.", "album_id": "506155", "photo_flickr_id": "21795014", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41438", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some costumes were less costumes than they were lingerie .", "storylet_id": "207193"}], [{"original_text": "But a good time was still had by all as they flooded the beach to celebrate the event. ", "album_id": "506155", "photo_flickr_id": "21797284", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41438", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but a good time was still had by all as they flooded the beach to celebrate the event .", "storylet_id": "207194"}], [{"original_text": "this years fair was a rather odd affair. so many people showed up this time.", "album_id": "506155", "photo_flickr_id": "21796552", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41439", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this years fair was a rather odd affair . so many people showed up this time .", "storylet_id": "207195"}], [{"original_text": "there where many odd things going around like this odd looking pig made from paper.", "album_id": "506155", "photo_flickr_id": "21794972", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41439", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there where many odd things going around like this odd looking pig made from paper .", "storylet_id": "207196"}], [{"original_text": "so many people showing off their skin this year. I have to admit that it took me off guard.", "album_id": "506155", "photo_flickr_id": "21794933", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41439", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so many people showing off their skin this year . i have to admit that it took me off guard .", "storylet_id": "207197"}], [{"original_text": "I had no idea what was going on here, but the ladies looked really nice this year.", "album_id": "506155", "photo_flickr_id": "21795014", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41439", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had no idea what was going on here , but the ladies looked really nice this year .", "storylet_id": "207198"}], [{"original_text": "i was in a cage ride. at the time i thought it was a good idea to take a picture, but i lost handle of my camera and almost broke it.", "album_id": "506155", "photo_flickr_id": "21797284", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41439", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was in a cage ride . at the time i thought it was a good idea to take a picture , but i lost handle of my camera and almost broke it .", "storylet_id": "207199"}], [{"original_text": "I went to the fair last week.", "album_id": "72157625037470792", "photo_flickr_id": "5025709477", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41440", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the fair last week .", "storylet_id": "207200"}], [{"original_text": "I ate a lot of snacks.", "album_id": "72157625037470792", "photo_flickr_id": "5025710599", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41440", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i ate a lot of snacks .", "storylet_id": "207201"}], [{"original_text": "There were many roller coasters there.", "album_id": "72157625037470792", "photo_flickr_id": "5025712125", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41440", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many roller coasters there .", "storylet_id": "207202"}], [{"original_text": "I had a great time.", "album_id": "72157625037470792", "photo_flickr_id": "5025713321", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41440", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had a great time .", "storylet_id": "207203"}], [{"original_text": "Afterward we left to eat some dinner.", "album_id": "72157625037470792", "photo_flickr_id": "5025720169", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41440", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we left to eat some dinner .", "storylet_id": "207204"}], [{"original_text": "Buddy decided ice cream was a good decision. Hot summer day. ", "album_id": "72157625037470792", "photo_flickr_id": "5025709477", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41441", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] decided ice cream was a good decision . hot summer day .", "storylet_id": "207205"}], [{"original_text": "His sister Marsha looked on, and said nothing. She knew. ", "album_id": "72157625037470792", "photo_flickr_id": "5025718937", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41441", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his sister [female] looked on , and said nothing . she knew .", "storylet_id": "207206"}], [{"original_text": "He continued eating his ice cream, oblivious, determined. ", "album_id": "72157625037470792", "photo_flickr_id": "5025710599", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41441", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he continued eating his ice cream , oblivious , determined .", "storylet_id": "207207"}], [{"original_text": "Marsha decided to let it go, go for a ride at the carnivale, and give her brother Buddy a thumbs up. ", "album_id": "72157625037470792", "photo_flickr_id": "5025713321", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41441", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] decided to let it go , go for a ride at the carnivale , and give her brother [male] a thumbs up .", "storylet_id": "207208"}], [{"original_text": "Buddy's girlfriend, who knows Buddy is diabetic, looked on, with disapproval. ", "album_id": "72157625037470792", "photo_flickr_id": "5025717729", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41441", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] 's girlfriend , who knows organization is diabetic , looked on , with disapproval .", "storylet_id": "207209"}], [{"original_text": "My friend eating an ice cream cone.", "album_id": "72157625037470792", "photo_flickr_id": "5025709477", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41442", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend eating an ice cream cone .", "storylet_id": "207210"}], [{"original_text": "Still eating the cone, just from a different view.", "album_id": "72157625037470792", "photo_flickr_id": "5025710599", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41442", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "still eating the cone , just from a different view .", "storylet_id": "207211"}], [{"original_text": "Here comes a big roller coaster that we will be on next.", "album_id": "72157625037470792", "photo_flickr_id": "5025712125", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41442", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here comes a big roller coaster that we will be on next .", "storylet_id": "207212"}], [{"original_text": "Here I am waiting to go up on the swings.", "album_id": "72157625037470792", "photo_flickr_id": "5025713321", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41442", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here i am waiting to go up on the swings .", "storylet_id": "207213"}], [{"original_text": "Time to relax for awhile and go back to the room.", "album_id": "72157625037470792", "photo_flickr_id": "5025720169", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "41442", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time to relax for awhile and go back to the room .", "storylet_id": "207214"}], [{"original_text": "We stopped and got some ice cream at the fair.", "album_id": "72157625037470792", "photo_flickr_id": "5025709477", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41443", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we stopped and got some ice cream at the fair .", "storylet_id": "207215"}], [{"original_text": "We finished that and went to the rides.", "album_id": "72157625037470792", "photo_flickr_id": "5025710599", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41443", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we finished that and went to the rides .", "storylet_id": "207216"}], [{"original_text": "We first rode the roller coaster.", "album_id": "72157625037470792", "photo_flickr_id": "5025712125", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41443", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we first rode the roller coaster .", "storylet_id": "207217"}], [{"original_text": "Then moved on to the large swings.", "album_id": "72157625037470792", "photo_flickr_id": "5025713321", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41443", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then moved on to the large swings .", "storylet_id": "207218"}], [{"original_text": "We had fun for a bit then headed back home.", "album_id": "72157625037470792", "photo_flickr_id": "5025720169", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41443", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had fun for a bit then headed back home .", "storylet_id": "207219"}], [{"original_text": "Not another ice cream, she said. ", "album_id": "72157625037470792", "photo_flickr_id": "5025709477", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41444", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "not another ice cream , she said .", "storylet_id": "207220"}], [{"original_text": "You're gonna get fat if you don't watch it she told him. ", "album_id": "72157625037470792", "photo_flickr_id": "5025718937", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41444", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you 're gon na get fat if you do n't watch it she told him .", "storylet_id": "207221"}], [{"original_text": "It's just an ice cream he said. ", "album_id": "72157625037470792", "photo_flickr_id": "5025710599", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41444", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's just an ice cream he said .", "storylet_id": "207222"}], [{"original_text": "Okay, okay, hurry up and finish it so we can get on a ride. ", "album_id": "72157625037470792", "photo_flickr_id": "5025713321", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41444", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "okay , okay , hurry up and finish it so we can get on a ride .", "storylet_id": "207223"}], [{"original_text": "So he wolfed it down and didn't tell her about the brain freeze it gave him. ", "album_id": "72157625037470792", "photo_flickr_id": "5025717729", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41444", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so he wolfed it down and did n't tell her about the brain freeze it gave him .", "storylet_id": "207224"}], [{"original_text": "The bar was littered with souls ready to sing along tonight.", "album_id": "72157624025208221", "photo_flickr_id": "4645872412", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41445", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bar was littered with souls ready to sing along tonight .", "storylet_id": "207225"}], [{"original_text": "The drinks were flowing and flowing...", "album_id": "72157624025208221", "photo_flickr_id": "4645874110", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41445", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the drinks were flowing and flowing ...", "storylet_id": "207226"}], [{"original_text": "And the band played in the background.", "album_id": "72157624025208221", "photo_flickr_id": "4645875854", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41445", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the band played in the background .", "storylet_id": "207227"}], [{"original_text": "There wasn't a gloomy picture in the entire room...", "album_id": "72157624025208221", "photo_flickr_id": "4645321359", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41445", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was n't a gloomy picture in the entire room ...", "storylet_id": "207228"}], [{"original_text": "And, folks danced the night away.", "album_id": "72157624025208221", "photo_flickr_id": "4645326929", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41445", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , folks danced the night away .", "storylet_id": "207229"}], [{"original_text": "I was on vacation last weekend.", "album_id": "72157624025208221", "photo_flickr_id": "4645250893", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41446", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was on vacation last weekend .", "storylet_id": "207230"}], [{"original_text": "There were a ton of decorations.", "album_id": "72157624025208221", "photo_flickr_id": "4645867314", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41446", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a ton of decorations .", "storylet_id": "207231"}], [{"original_text": "Everything was beautiful.", "album_id": "72157624025208221", "photo_flickr_id": "4645869014", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41446", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everything was beautiful .", "storylet_id": "207232"}], [{"original_text": "The restaurants had a very nice atmosphere.", "album_id": "72157624025208221", "photo_flickr_id": "4645877828", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41446", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the restaurants had a very nice atmosphere .", "storylet_id": "207233"}], [{"original_text": "I really enjoyed it.", "album_id": "72157624025208221", "photo_flickr_id": "4645321359", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41446", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i really enjoyed it .", "storylet_id": "207234"}], [{"original_text": "We decided to go to a nightclub and listen to some live music.", "album_id": "72157624025208221", "photo_flickr_id": "4645872412", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41447", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go to a nightclub and listen to some live music .", "storylet_id": "207235"}], [{"original_text": "Here's my lovely drink!", "album_id": "72157624025208221", "photo_flickr_id": "4645874110", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41447", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's my lovely drink !", "storylet_id": "207236"}], [{"original_text": "The musicians were amazingly talented and enjoyable to listen to!", "album_id": "72157624025208221", "photo_flickr_id": "4645875854", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41447", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the musicians were amazingly talented and enjoyable to listen to !", "storylet_id": "207237"}], [{"original_text": "I loved the pretty little lamps on all of the tables.", "album_id": "72157624025208221", "photo_flickr_id": "4645321359", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41447", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i loved the pretty little lamps on all of the tables .", "storylet_id": "207238"}], [{"original_text": "We caught mom and dad enjoying a dance!", "album_id": "72157624025208221", "photo_flickr_id": "4645326929", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41447", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we caught mom and dad enjoying a dance !", "storylet_id": "207239"}], [{"original_text": "The couple decided to go to the bar for their anniversary.", "album_id": "72157624025208221", "photo_flickr_id": "4645872412", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41448", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple decided to go to the bar for their anniversary .", "storylet_id": "207240"}], [{"original_text": "They enjoyed a few drinks together.", "album_id": "72157624025208221", "photo_flickr_id": "4645874110", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41448", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they enjoyed a few drinks together .", "storylet_id": "207241"}], [{"original_text": "The music was very nice that night.", "album_id": "72157624025208221", "photo_flickr_id": "4645875854", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41448", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the music was very nice that night .", "storylet_id": "207242"}], [{"original_text": "They liked the lighting of the place.", "album_id": "72157624025208221", "photo_flickr_id": "4645321359", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41448", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they liked the lighting of the place .", "storylet_id": "207243"}], [{"original_text": "They danced the night away, very much in love with each other.", "album_id": "72157624025208221", "photo_flickr_id": "4645326929", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41448", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they danced the night away , very much in love with each other .", "storylet_id": "207244"}], [{"original_text": "The people were at the party", "album_id": "72157624025208221", "photo_flickr_id": "4645872412", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41449", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people were at the party", "storylet_id": "207245"}], [{"original_text": "and having a drink.", "album_id": "72157624025208221", "photo_flickr_id": "4645874110", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41449", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and having a drink .", "storylet_id": "207246"}], [{"original_text": "They were listening to music", "album_id": "72157624025208221", "photo_flickr_id": "4645875854", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41449", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were listening to music", "storylet_id": "207247"}], [{"original_text": "and they had a romantic night", "album_id": "72157624025208221", "photo_flickr_id": "4645321359", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41449", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and they had a romantic night", "storylet_id": "207248"}], [{"original_text": "kissing each other.", "album_id": "72157624025208221", "photo_flickr_id": "4645326929", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41449", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "kissing each other .", "storylet_id": "207249"}], [{"original_text": "Visiting Aztec in Mexico with the whole family.", "album_id": "72157624451319642", "photo_flickr_id": "4644547797", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41450", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visiting aztec in location with the whole family .", "storylet_id": "207250"}], [{"original_text": "The Mayan ruins. They said it hasn't been touched but I can tell they remodeled it.", "album_id": "72157624451319642", "photo_flickr_id": "4645164472", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41450", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the mayan ruins . they said it has n't been touched but i can tell they remodeled it .", "storylet_id": "207251"}], [{"original_text": "Some of the old buildings that the Mayans used to live in.", "album_id": "72157624451319642", "photo_flickr_id": "4644547169", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41450", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the old buildings that the mayans used to live in .", "storylet_id": "207252"}], [{"original_text": "Some bananas in our room. Still waiting for them to ripe. ", "album_id": "72157624451319642", "photo_flickr_id": "4645165226", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41450", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some bananas in our room . still waiting for them to ripe .", "storylet_id": "207253"}], [{"original_text": "Downtown. Not very Mayan like. ", "album_id": "72157624451319642", "photo_flickr_id": "4644548973", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41450", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "downtown . not very mayan like .", "storylet_id": "207254"}], [{"original_text": "The historic stone building architecture is simply amazing.", "album_id": "72157624451319642", "photo_flickr_id": "4644547797", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41451", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the historic stone building architecture is simply amazing .", "storylet_id": "207255"}], [{"original_text": "The pyramid was picturesque with the stairs and trees.", "album_id": "72157624451319642", "photo_flickr_id": "4645164472", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41451", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pyramid was picturesque with the stairs and trees .", "storylet_id": "207256"}], [{"original_text": "The waterway underneath the rocks was quite amazing.", "album_id": "72157624451319642", "photo_flickr_id": "4645164796", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41451", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the waterway underneath the rocks was quite amazing .", "storylet_id": "207257"}], [{"original_text": "The historic blue round building is a masterpiece.", "album_id": "72157624451319642", "photo_flickr_id": "4645165120", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41451", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the historic blue round building is a masterpiece .", "storylet_id": "207258"}], [{"original_text": "The historic building is beautiful still to this date.", "album_id": "72157624451319642", "photo_flickr_id": "4645165332", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41451", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the historic building is beautiful still to this date .", "storylet_id": "207259"}], [{"original_text": "I could tell the age of the building just by looking.", "album_id": "72157624451319642", "photo_flickr_id": "4644547797", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41452", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i could tell the age of the building just by looking .", "storylet_id": "207260"}], [{"original_text": "I couldn't believe I was in front of a pyramid. ", "album_id": "72157624451319642", "photo_flickr_id": "4645164472", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41452", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i could n't believe i was in front of a pyramid .", "storylet_id": "207261"}], [{"original_text": "But it seemed like I had to climb a lot to get anywhere. ", "album_id": "72157624451319642", "photo_flickr_id": "4644547169", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41452", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but it seemed like i had to climb a lot to get anywhere .", "storylet_id": "207262"}], [{"original_text": "The fruits and things they had growing surprised me.", "album_id": "72157624451319642", "photo_flickr_id": "4645165226", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41452", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fruits and things they had growing surprised me .", "storylet_id": "207263"}], [{"original_text": "I hope I'll get to see more places with just as much history.", "album_id": "72157624451319642", "photo_flickr_id": "4644548973", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41452", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope i 'll get to see more places with just as much history .", "storylet_id": "207264"}], [{"original_text": "Old cities tell stories.", "album_id": "72157624451319642", "photo_flickr_id": "4644547797", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41453", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "old cities tell stories .", "storylet_id": "207265"}], [{"original_text": "Their stories may sometimes be very mysterious,", "album_id": "72157624451319642", "photo_flickr_id": "4645164472", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41453", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their stories may sometimes be very mysterious ,", "storylet_id": "207266"}], [{"original_text": "but extraordinary either way.", "album_id": "72157624451319642", "photo_flickr_id": "4644547169", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41453", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but extraordinary either way .", "storylet_id": "207267"}], [{"original_text": "Old cities remind us how life might have been back then", "album_id": "72157624451319642", "photo_flickr_id": "4645165226", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41453", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "old cities remind us how life might have been back then", "storylet_id": "207268"}], [{"original_text": "and how far we've come. It is always good to remember our progress as a people.", "album_id": "72157624451319642", "photo_flickr_id": "4644548973", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41453", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and how far we 've come . it is always good to remember our progress as a people .", "storylet_id": "207269"}], [{"original_text": "The buildings were old", "album_id": "72157624451319642", "photo_flickr_id": "4644547797", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41454", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the buildings were old", "storylet_id": "207270"}], [{"original_text": "and so was the pyramid", "album_id": "72157624451319642", "photo_flickr_id": "4645164472", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41454", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and so was the pyramid", "storylet_id": "207271"}], [{"original_text": "in the old city.", "album_id": "72157624451319642", "photo_flickr_id": "4644547169", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41454", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in the old city .", "storylet_id": "207272"}], [{"original_text": "There were bananas", "album_id": "72157624451319642", "photo_flickr_id": "4645165226", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41454", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were bananas", "storylet_id": "207273"}], [{"original_text": "sold at the local store.", "album_id": "72157624451319642", "photo_flickr_id": "4644548973", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41454", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sold at the local store .", "storylet_id": "207274"}], [{"original_text": "Getting ready to ride the tallest ride in town!", "album_id": "72157624467440699", "photo_flickr_id": "4833744160", "setting": "first-2-pick-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "41455", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting ready to ride the tallest ride in town !", "storylet_id": "207275"}], [{"original_text": "Here is a picture from the VERY top!", "album_id": "72157624467440699", "photo_flickr_id": "4833743586", "setting": "first-2-pick-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "41455", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is a picture from the very top !", "storylet_id": "207276"}], [{"original_text": "Up this high you get a great picture of the bay.", "album_id": "72157624467440699", "photo_flickr_id": "4833743664", "setting": "first-2-pick-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "41455", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "up this high you get a great picture of the bay .", "storylet_id": "207277"}], [{"original_text": "Matt is calm and relaxed.", "album_id": "72157624467440699", "photo_flickr_id": "4833744670", "setting": "first-2-pick-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "41455", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is calm and relaxed .", "storylet_id": "207278"}], [{"original_text": "We are so high!!", "album_id": "72157624467440699", "photo_flickr_id": "4833133937", "setting": "first-2-pick-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "41455", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we are so high ! !", "storylet_id": "207279"}], [{"original_text": "Watching the group we couldn't have been more proud.", "album_id": "72157624467440699", "photo_flickr_id": "4833744160", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41456", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "watching the group we could n't have been more proud .", "storylet_id": "207280"}], [{"original_text": "The flag waved beautifully as they stood.", "album_id": "72157624467440699", "photo_flickr_id": "4833744238", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41456", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flag waved beautifully as they stood .", "storylet_id": "207281"}], [{"original_text": "They were so orderly.", "album_id": "72157624467440699", "photo_flickr_id": "4833743586", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41456", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were so orderly .", "storylet_id": "207282"}], [{"original_text": "The greeting was special.", "album_id": "72157624467440699", "photo_flickr_id": "4833133357", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41456", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the greeting was special .", "storylet_id": "207283"}], [{"original_text": "She gave a great speech.", "album_id": "72157624467440699", "photo_flickr_id": "4833744670", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41456", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she gave a great speech .", "storylet_id": "207284"}], [{"original_text": "The ferris wheel offers folks a chance to see a new vantage.", "album_id": "72157624467440699", "photo_flickr_id": "4833744160", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41457", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ferris wheel offers folks a chance to see a new vantage .", "storylet_id": "207285"}], [{"original_text": "Some models are on the table.", "album_id": "72157624467440699", "photo_flickr_id": "4833744238", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41457", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some models are on the table .", "storylet_id": "207286"}], [{"original_text": "The people look like little bugs from such a high altitude.", "album_id": "72157624467440699", "photo_flickr_id": "4833743586", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41457", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people look like little bugs from such a high altitude .", "storylet_id": "207287"}], [{"original_text": "He looks a bit concerned over being so high in the air.", "album_id": "72157624467440699", "photo_flickr_id": "4833133357", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41457", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he looks a bit concerned over being so high in the air .", "storylet_id": "207288"}], [{"original_text": "The other man is somewhat relaxed.", "album_id": "72157624467440699", "photo_flickr_id": "4833744670", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41457", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the other man is somewhat relaxed .", "storylet_id": "207289"}], [{"original_text": "We rode the ferris wheel.", "album_id": "72157624467440699", "photo_flickr_id": "4833744160", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41458", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we rode the ferris wheel .", "storylet_id": "207290"}], [{"original_text": "It took us really high up in the air.", "album_id": "72157624467440699", "photo_flickr_id": "4833743586", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41458", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it took us really high up in the air .", "storylet_id": "207291"}], [{"original_text": "We got to see all the boats in the water.", "album_id": "72157624467440699", "photo_flickr_id": "4833743664", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41458", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got to see all the boats in the water .", "storylet_id": "207292"}], [{"original_text": "It was so much fun.", "album_id": "72157624467440699", "photo_flickr_id": "4833744670", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41458", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was so much fun .", "storylet_id": "207293"}], [{"original_text": "Then we saw the buildings in the city from up high.", "album_id": "72157624467440699", "photo_flickr_id": "4833133937", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41458", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we saw the buildings in the city from up high .", "storylet_id": "207294"}], [{"original_text": "The ferris wheel was big", "album_id": "72157624467440699", "photo_flickr_id": "4833744160", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41459", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ferris wheel was big", "storylet_id": "207295"}], [{"original_text": "and there was a map", "album_id": "72157624467440699", "photo_flickr_id": "4833744238", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41459", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and there was a map", "storylet_id": "207296"}], [{"original_text": "of the big city.", "album_id": "72157624467440699", "photo_flickr_id": "4833743586", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41459", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of the big city .", "storylet_id": "207297"}], [{"original_text": "The man was happy", "album_id": "72157624467440699", "photo_flickr_id": "4833133357", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41459", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man was happy", "storylet_id": "207298"}], [{"original_text": "as they were riding.", "album_id": "72157624467440699", "photo_flickr_id": "4833744670", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41459", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as they were riding .", "storylet_id": "207299"}], [{"original_text": "I love the roller coaster.", "album_id": "72157624857633031", "photo_flickr_id": "4930573882", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41460", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love the roller coaster .", "storylet_id": "207300"}], [{"original_text": "And the beach.", "album_id": "72157624857633031", "photo_flickr_id": "4932604515", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41460", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the beach .", "storylet_id": "207301"}], [{"original_text": "Even if I can't swim.", "album_id": "72157624857633031", "photo_flickr_id": "4929984201", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41460", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even if i ca n't swim .", "storylet_id": "207302"}], [{"original_text": "I went on the water anyhow.", "album_id": "72157624857633031", "photo_flickr_id": "4933197942", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41460", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i went on the water anyhow .", "storylet_id": "207303"}], [{"original_text": "Then I saw a tower.", "album_id": "72157624857633031", "photo_flickr_id": "4946000811", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41460", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then i saw a tower .", "storylet_id": "207304"}], [{"original_text": "A family went to the beach and walked along the boardwalk.", "album_id": "72157624857633031", "photo_flickr_id": "4933197254", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41461", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a family went to the beach and walked along the boardwalk .", "storylet_id": "207305"}], [{"original_text": "They played boardwalk games. ", "album_id": "72157624857633031", "photo_flickr_id": "4933197530", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41461", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they played boardwalk games .", "storylet_id": "207306"}], [{"original_text": "They rode on the roller coasters.", "album_id": "72157624857633031", "photo_flickr_id": "4930573882", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41461", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they rode on the roller coasters .", "storylet_id": "207307"}], [{"original_text": "There were tons of seagulls on the beach when they got there. ", "album_id": "72157624857633031", "photo_flickr_id": "4932604515", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41461", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were tons of seagulls on the beach when they got there .", "storylet_id": "207308"}], [{"original_text": "A lot of people were swimming because the weather was so nice. ", "album_id": "72157624857633031", "photo_flickr_id": "4929984201", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41461", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a lot of people were swimming because the weather was so nice .", "storylet_id": "207309"}], [{"original_text": "I came for the rollercoasters. I could ride them all day long.", "album_id": "72157624857633031", "photo_flickr_id": "4930573882", "setting": "last-3-pick-old-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "41462", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i came for the rollercoasters . i could ride them all day long .", "storylet_id": "207310"}], [{"original_text": "My wife wanted time at the beach. I can only take so much of that.", "album_id": "72157624857633031", "photo_flickr_id": "4932604515", "setting": "last-3-pick-old-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "41462", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my wife wanted time at the beach . i can only take so much of that .", "storylet_id": "207311"}], [{"original_text": "Beaches with no swimming signs and lots of people in the water do not make much sense.", "album_id": "72157624857633031", "photo_flickr_id": "4929984201", "setting": "last-3-pick-old-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "41462", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "beaches with no swimming signs and lots of people in the water do not make much sense .", "storylet_id": "207312"}], [{"original_text": "I like the view offshore looking back at the city.", "album_id": "72157624857633031", "photo_flickr_id": "4933197942", "setting": "last-3-pick-old-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "41462", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i like the view offshore looking back at the city .", "storylet_id": "207313"}], [{"original_text": "This is a really cool ride. You can see for miles and miles!", "album_id": "72157624857633031", "photo_flickr_id": "4946000811", "setting": "last-3-pick-old-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "41462", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a really cool ride . you can see for miles and miles !", "storylet_id": "207314"}], [{"original_text": "Beaches can be fun!", "album_id": "72157624857633031", "photo_flickr_id": "4930573882", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41463", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "beaches can be fun !", "storylet_id": "207315"}], [{"original_text": "There is always a lot of fun to be had in the sand.", "album_id": "72157624857633031", "photo_flickr_id": "4932604515", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41463", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is always a lot of fun to be had in the sand .", "storylet_id": "207316"}], [{"original_text": "Even when swimming isn't permitted due to danger,", "album_id": "72157624857633031", "photo_flickr_id": "4929984201", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41463", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even when swimming is n't permitted due to danger ,", "storylet_id": "207317"}], [{"original_text": "it is always nice to relax and soak up the sun.", "album_id": "72157624857633031", "photo_flickr_id": "4933197942", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41463", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is always nice to relax and soak up the sun .", "storylet_id": "207318"}], [{"original_text": "If you are in to thrill, this beach has rides to suit your needs.", "album_id": "72157624857633031", "photo_flickr_id": "4946000811", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41463", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "if you are in to thrill , this beach has rides to suit your needs .", "storylet_id": "207319"}], [{"original_text": "The boardwalk was surprisingly empty when they arrived.", "album_id": "72157624857633031", "photo_flickr_id": "4933197254", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "41464", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boardwalk was surprisingly empty when they arrived .", "storylet_id": "207320"}], [{"original_text": "There were some odd sideshows along the street.", "album_id": "72157624857633031", "photo_flickr_id": "4933197530", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "41464", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were some odd sideshows along the street .", "storylet_id": "207321"}], [{"original_text": "The classic rollercoaster were already up and running.", "album_id": "72157624857633031", "photo_flickr_id": "4930573882", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "41464", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the classic rollercoaster were already up and running .", "storylet_id": "207322"}], [{"original_text": "The seagulls were running the beach. Hopefully you brought some breadcrumbs to keep them at bay.", "album_id": "72157624857633031", "photo_flickr_id": "4932604515", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "41464", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the seagulls were running the beach . hopefully you brought some breadcrumbs to keep them at bay .", "storylet_id": "207323"}], [{"original_text": "It was obvious that not a single soul here, had read this sign.", "album_id": "72157624857633031", "photo_flickr_id": "4929984201", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "41464", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was obvious that not a single soul here , had read this sign .", "storylet_id": "207324"}], [{"original_text": "We were so excited about the natural history museam. ", "album_id": "72157625954089295", "photo_flickr_id": "4934223920", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41465", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were so excited about the natural history museam .", "storylet_id": "207325"}], [{"original_text": "We got to see all the Dinosaur skeletons.", "album_id": "72157625954089295", "photo_flickr_id": "4933631785", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41465", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to see all the dinosaur skeletons .", "storylet_id": "207326"}], [{"original_text": "Then we looked at the polar bear.", "album_id": "72157625954089295", "photo_flickr_id": "4933632965", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41465", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we looked at the polar bear .", "storylet_id": "207327"}], [{"original_text": "One of the exhibits showed us how the earth looked millions of years ago. ", "album_id": "72157625954089295", "photo_flickr_id": "4933633189", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41465", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the exhibits showed us how the earth looked millions of years ago .", "storylet_id": "207328"}], [{"original_text": "We even got to see a real space shuttle.", "album_id": "72157625954089295", "photo_flickr_id": "4933633979", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41465", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even got to see a real space shuttle .", "storylet_id": "207329"}], [{"original_text": "After the fair we went to the museum.", "album_id": "72157625954089295", "photo_flickr_id": "4933625915", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41466", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after the fair we went to the museum .", "storylet_id": "207330"}], [{"original_text": "There were a ton of skeletons there.", "album_id": "72157625954089295", "photo_flickr_id": "4934226294", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41466", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a ton of skeletons there .", "storylet_id": "207331"}], [{"original_text": "I had a great time there. ", "album_id": "72157625954089295", "photo_flickr_id": "4933632579", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41466", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time there .", "storylet_id": "207332"}], [{"original_text": "There were some polar bears too.", "album_id": "72157625954089295", "photo_flickr_id": "4933632965", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41466", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were some polar bears too .", "storylet_id": "207333"}], [{"original_text": "There was also a nature exhibit.", "album_id": "72157625954089295", "photo_flickr_id": "4933633189", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41466", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was also a nature exhibit .", "storylet_id": "207334"}], [{"original_text": "Natural world museums give us the chance to see life that we wouldn't normally get to see.", "album_id": "72157625954089295", "photo_flickr_id": "4933625915", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41467", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "natural world museums give us the chance to see life that we would n't normally get to see .", "storylet_id": "207335"}], [{"original_text": "This museum shows us what different creatures bones structures were like.", "album_id": "72157625954089295", "photo_flickr_id": "4934226294", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41467", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this museum shows us what different creatures bones structures were like .", "storylet_id": "207336"}], [{"original_text": "Some animals were massive. It's hard to imagine how big this creature was when it was alive.", "album_id": "72157625954089295", "photo_flickr_id": "4933632579", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41467", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some animals were massive . it 's hard to imagine how big this creature was when it was alive .", "storylet_id": "207337"}], [{"original_text": "Some creatures still exist, yet sometimes we forget how big they are.", "album_id": "72157625954089295", "photo_flickr_id": "4933632965", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41467", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some creatures still exist , yet sometimes we forget how big they are .", "storylet_id": "207338"}], [{"original_text": "Museums are very educational and fun to visit.", "album_id": "72157625954089295", "photo_flickr_id": "4933633189", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41467", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "museums are very educational and fun to visit .", "storylet_id": "207339"}], [{"original_text": "I went to a museum yesterday.", "album_id": "72157625954089295", "photo_flickr_id": "4933625915", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41468", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a museum yesterday .", "storylet_id": "207340"}], [{"original_text": "There were displays of massive creatures.", "album_id": "72157625954089295", "photo_flickr_id": "4934226294", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41468", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were displays of massive creatures .", "storylet_id": "207341"}], [{"original_text": "I can't imagine swimming with this creature.", "album_id": "72157625954089295", "photo_flickr_id": "4933632579", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41468", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i ca n't imagine swimming with this creature .", "storylet_id": "207342"}], [{"original_text": "This polar bear looked pretty tough.", "album_id": "72157625954089295", "photo_flickr_id": "4933632965", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41468", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this polar bear looked pretty tough .", "storylet_id": "207343"}], [{"original_text": "There was even a garden with live animals in it.", "album_id": "72157625954089295", "photo_flickr_id": "4933633189", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41468", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was even a garden with live animals in it .", "storylet_id": "207344"}], [{"original_text": "The kids went to the zoo.", "album_id": "72157625954089295", "photo_flickr_id": "4934223920", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "41469", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids went to the zoo .", "storylet_id": "207345"}], [{"original_text": "It also was a museum.", "album_id": "72157625954089295", "photo_flickr_id": "4933631785", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "41469", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it also was a museum .", "storylet_id": "207346"}], [{"original_text": "There were all kinds of exhibits about far away animals.", "album_id": "72157625954089295", "photo_flickr_id": "4933632965", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "41469", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were all kinds of exhibits about far away animals .", "storylet_id": "207347"}], [{"original_text": "The exotic birds were a favorite.", "album_id": "72157625954089295", "photo_flickr_id": "4933633189", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "41469", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the exotic birds were a favorite .", "storylet_id": "207348"}], [{"original_text": "The building was very tall.", "album_id": "72157625954089295", "photo_flickr_id": "4933633979", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "41469", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the building was very tall .", "storylet_id": "207349"}], [{"original_text": "Aliens were attacking earth today.", "album_id": "72157623400467385", "photo_flickr_id": "4394817108", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41470", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "aliens were attacking earth today .", "storylet_id": "207350"}], [{"original_text": "Everybody was looking in the air scared at all of the aliens", "album_id": "72157623400467385", "photo_flickr_id": "4394048781", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41470", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everybody was looking in the air scared at all of the aliens", "storylet_id": "207351"}], [{"original_text": "The aliens kept attacking earth damaging everything in sight.", "album_id": "72157623400467385", "photo_flickr_id": "4394817850", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41470", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the aliens kept attacking earth damaging everything in sight .", "storylet_id": "207352"}], [{"original_text": "We tried to destroy the aliens using fireworks! finally fighting back!", "album_id": "72157623400467385", "photo_flickr_id": "4394055171", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41470", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we tried to destroy the aliens using fireworks ! finally fighting back !", "storylet_id": "207353"}], [{"original_text": "unfortunately it did nothing. Earth was destroyed.", "album_id": "72157623400467385", "photo_flickr_id": "4394820410", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "41470", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "unfortunately it did nothing . earth was destroyed .", "storylet_id": "207354"}], [{"original_text": "The street is filling up with people to see the show.", "album_id": "72157623400467385", "photo_flickr_id": "4394813916", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "41471", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the street is filling up with people to see the show .", "storylet_id": "207355"}], [{"original_text": "The first firework bust in the sky as we all watch. ", "album_id": "72157623400467385", "photo_flickr_id": "4394814578", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "41471", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first firework bust in the sky as we all watch .", "storylet_id": "207356"}], [{"original_text": "People are starting to set off their own fireworks and crackers. ", "album_id": "72157623400467385", "photo_flickr_id": "4394816402", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "41471", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people are starting to set off their own fireworks and crackers .", "storylet_id": "207357"}], [{"original_text": "Shooting upwards these ones make a loud noise!", "album_id": "72157623400467385", "photo_flickr_id": "4394817108", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "41471", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "shooting upwards these ones make a loud noise !", "storylet_id": "207358"}], [{"original_text": "The real fireworks are blowing up brilliantly in the sky above us. ", "album_id": "72157623400467385", "photo_flickr_id": "4394055833", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "41471", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the real fireworks are blowing up brilliantly in the sky above us .", "storylet_id": "207359"}], [{"original_text": "The street was crowded with people. ", "album_id": "72157623400467385", "photo_flickr_id": "4394813916", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41472", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the street was crowded with people .", "storylet_id": "207360"}], [{"original_text": "We walked in a bright strip.", "album_id": "72157623400467385", "photo_flickr_id": "4394814578", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41472", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we walked in a bright strip .", "storylet_id": "207361"}], [{"original_text": "Fireworks began to erupt nearby.", "album_id": "72157623400467385", "photo_flickr_id": "4394816402", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41472", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "fireworks began to erupt nearby .", "storylet_id": "207362"}], [{"original_text": "Many men and women joined in.", "album_id": "72157623400467385", "photo_flickr_id": "4394817108", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41472", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many men and women joined in .", "storylet_id": "207363"}], [{"original_text": "Fireworks in the city was a marvelous sight. ", "album_id": "72157623400467385", "photo_flickr_id": "4394055833", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41472", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fireworks in the city was a marvelous sight .", "storylet_id": "207364"}], [{"original_text": "new years again. i always get excited when i see the lights and explosions.", "album_id": "72157623400467385", "photo_flickr_id": "4394817108", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41473", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "new years again . i always get excited when i see the lights and explosions .", "storylet_id": "207365"}], [{"original_text": "here is tom trying to take pictures of people. every year i try to tell him it is about the lights, but he never listens.", "album_id": "72157623400467385", "photo_flickr_id": "4394048781", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41473", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is tom trying to take pictures of people . every year i try to tell him it is about the lights , but he never listens .", "storylet_id": "207366"}], [{"original_text": "so much smoke from the explosions. we hear the fire trucks in the distance, but paid then no mind.", "album_id": "72157623400467385", "photo_flickr_id": "4394817850", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41473", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so much smoke from the explosions . we hear the fire trucks in the distance , but paid then no mind .", "storylet_id": "207367"}], [{"original_text": "some the the fireworks did not even go higher than the buildings around us.", "album_id": "72157623400467385", "photo_flickr_id": "4394055171", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41473", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some the the fireworks did not even go higher than the buildings around us .", "storylet_id": "207368"}], [{"original_text": "on of the rockets fell down and flew into this building. we had such a blast till the cops came.", "album_id": "72157623400467385", "photo_flickr_id": "4394820410", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41473", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on of the rockets fell down and flew into this building . we had such a blast till the cops came .", "storylet_id": "207369"}], [{"original_text": "Starting the fire work show. ", "album_id": "72157623400467385", "photo_flickr_id": "4394817108", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41474", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "starting the fire work show .", "storylet_id": "207370"}], [{"original_text": "Setting up and taking pictures of the show. ", "album_id": "72157623400467385", "photo_flickr_id": "4394048781", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41474", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "setting up and taking pictures of the show .", "storylet_id": "207371"}], [{"original_text": "There were fireworks debris on the floor everywhere. ", "album_id": "72157623400467385", "photo_flickr_id": "4394817850", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41474", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were fireworks debris on the floor everywhere .", "storylet_id": "207372"}], [{"original_text": "The show started above our head. ", "album_id": "72157623400467385", "photo_flickr_id": "4394055171", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41474", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the show started above our head .", "storylet_id": "207373"}], [{"original_text": "At the end there were smoke and everyone went home. ", "album_id": "72157623400467385", "photo_flickr_id": "4394820410", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41474", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end there were smoke and everyone went home .", "storylet_id": "207374"}], [{"original_text": "The man was giving a speech for the crowd that lovely day.", "album_id": "72157625052672144", "photo_flickr_id": "5032710857", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41475", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man was giving a speech for the crowd that lovely day .", "storylet_id": "207375"}], [{"original_text": "The crowd was gathered around the speaker listening intently.", "album_id": "72157625052672144", "photo_flickr_id": "5032714799", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41475", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd was gathered around the speaker listening intently .", "storylet_id": "207376"}], [{"original_text": "A man is seen on a bike next to the crowd and helicopter.", "album_id": "72157625052672144", "photo_flickr_id": "5033337736", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41475", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man is seen on a bike next to the crowd and helicopter .", "storylet_id": "207377"}], [{"original_text": "The man is waving good bye as he prepares to exit.", "album_id": "72157625052672144", "photo_flickr_id": "5033342536", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41475", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man is waving good bye as he prepares to exit .", "storylet_id": "207378"}], [{"original_text": "The man is preparing to get into the helicopter to his destination.", "album_id": "72157625052672144", "photo_flickr_id": "5033350192", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41475", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the man is preparing to get into the helicopter to his destination .", "storylet_id": "207379"}], [{"original_text": "Mario was speaking to the people.", "album_id": "72157625052672144", "photo_flickr_id": "5032710857", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41476", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was speaking to the people .", "storylet_id": "207380"}], [{"original_text": "They were ready for change.", "album_id": "72157625052672144", "photo_flickr_id": "5033331104", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41476", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were ready for change .", "storylet_id": "207381"}], [{"original_text": "The city needed to change or it would die.", "album_id": "72157625052672144", "photo_flickr_id": "5032712107", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41476", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the city needed to change or it would die .", "storylet_id": "207382"}], [{"original_text": "They knew how important this was, because they loved the city.", "album_id": "72157625052672144", "photo_flickr_id": "5033342536", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41476", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they knew how important this was , because they loved the city .", "storylet_id": "207383"}], [{"original_text": "After his speech, his people greeted him.", "album_id": "72157625052672144", "photo_flickr_id": "5032724309", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "41476", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after his speech , his people greeted him .", "storylet_id": "207384"}], [{"original_text": "The candidate gave a speech.", "album_id": "72157625052672144", "photo_flickr_id": "5032710857", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41477", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the candidate gave a speech .", "storylet_id": "207385"}], [{"original_text": "There was a small crowd there to hear him.", "album_id": "72157625052672144", "photo_flickr_id": "5032714799", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41477", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a small crowd there to hear him .", "storylet_id": "207386"}], [{"original_text": "Some came by bike.", "album_id": "72157625052672144", "photo_flickr_id": "5033337736", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41477", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some came by bike .", "storylet_id": "207387"}], [{"original_text": "He waved to the crowd.", "album_id": "72157625052672144", "photo_flickr_id": "5033342536", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41477", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he waved to the crowd .", "storylet_id": "207388"}], [{"original_text": "Then he left on a helicopter.", "album_id": "72157625052672144", "photo_flickr_id": "5033350192", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41477", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then he left on a helicopter .", "storylet_id": "207389"}], [{"original_text": "The speaker stood high above the crowd to be heard.", "album_id": "72157625052672144", "photo_flickr_id": "5032710857", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "41478", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the speaker stood high above the crowd to be heard .", "storylet_id": "207390"}], [{"original_text": "The crowd turned and listened with interest.", "album_id": "72157625052672144", "photo_flickr_id": "5032714799", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "41478", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd turned and listened with interest .", "storylet_id": "207391"}], [{"original_text": "Some of those gathered had traveled there by bicycle.", "album_id": "72157625052672144", "photo_flickr_id": "5033337736", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "41478", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of those gathered had traveled there by bicycle .", "storylet_id": "207392"}], [{"original_text": "The speaker waved to the crowd before departing. ", "album_id": "72157625052672144", "photo_flickr_id": "5033342536", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "41478", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the speaker waved to the crowd before departing .", "storylet_id": "207393"}], [{"original_text": "A helicopter was waiting to take him to the next location.", "album_id": "72157625052672144", "photo_flickr_id": "5033350192", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "41478", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a helicopter was waiting to take him to the next location .", "storylet_id": "207394"}], [{"original_text": "There was a rally event today at the park.", "album_id": "72157625052672144", "photo_flickr_id": "5032710857", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41479", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a rally event today at the park .", "storylet_id": "207395"}], [{"original_text": "Many people attended.", "album_id": "72157625052672144", "photo_flickr_id": "5032714799", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41479", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people attended .", "storylet_id": "207396"}], [{"original_text": "Some even showed up on bicycles.", "album_id": "72157625052672144", "photo_flickr_id": "5033337736", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41479", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some even showed up on bicycles .", "storylet_id": "207397"}], [{"original_text": "There was a large crowd.", "album_id": "72157625052672144", "photo_flickr_id": "5033342536", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41479", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a large crowd .", "storylet_id": "207398"}], [{"original_text": "There was even a helicopter.", "album_id": "72157625052672144", "photo_flickr_id": "5033350192", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41479", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was even a helicopter .", "storylet_id": "207399"}], [{"original_text": "The bakery had a selection of pastries.", "album_id": "72157629094219953", "photo_flickr_id": "6787614239", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "41480", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bakery had a selection of pastries .", "storylet_id": "207400"}], [{"original_text": "Some items were shaped into figures.", "album_id": "72157629094219953", "photo_flickr_id": "6787624645", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "41480", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some items were shaped into figures .", "storylet_id": "207401"}], [{"original_text": "There's always freshly baked items for sale daily.", "album_id": "72157629094219953", "photo_flickr_id": "6787627035", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "41480", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there 's always freshly baked items for sale daily .", "storylet_id": "207402"}], [{"original_text": "The bakers come in early every morning.", "album_id": "72157629094219953", "photo_flickr_id": "6787635135", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "41480", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bakers come in early every morning .", "storylet_id": "207403"}], [{"original_text": "The sign is recognizable even on a dimly lit street.", "album_id": "72157629094219953", "photo_flickr_id": "6787647639", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "41480", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sign is recognizable even on a dimly lit street .", "storylet_id": "207404"}], [{"original_text": "There were a lot of popular seafood restaurants in town to choose from.", "album_id": "72157629094219953", "photo_flickr_id": "6787602615", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41481", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of popular seafood restaurants in town to choose from .", "storylet_id": "207405"}], [{"original_text": "They all used bright, neon signs on the outside of the buildings.", "album_id": "72157629094219953", "photo_flickr_id": "6787604921", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41481", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all used bright , neon signs on the outside of the buildings .", "storylet_id": "207406"}], [{"original_text": "Some seemed classier than others say as Boudin.", "album_id": "72157629094219953", "photo_flickr_id": "6787614239", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41481", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some seemed classier than others say as boudin .", "storylet_id": "207407"}], [{"original_text": "Franciscan was considered a high class restaurant.", "album_id": "72157629094219953", "photo_flickr_id": "6787645383", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41481", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "franciscan was considered a high class restaurant .", "storylet_id": "207408"}], [{"original_text": "Eat at Joe's was definitely the most popular choice among tourists.", "album_id": "72157629094219953", "photo_flickr_id": "6787669253", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41481", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eat at [male] 's was definitely the most popular choice among tourists .", "storylet_id": "207409"}], [{"original_text": "We walked into Boudin, ready for a night on the town.", "album_id": "72157629094219953", "photo_flickr_id": "6787614239", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "41482", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we walked into boudin , ready for a night on the town .", "storylet_id": "207410"}], [{"original_text": "The breads were amazing, and we, unfortunately, filled up on them.", "album_id": "72157629094219953", "photo_flickr_id": "6787624645", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "41482", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the breads were amazing , and we , unfortunately , filled up on them .", "storylet_id": "207411"}], [{"original_text": "I hadn't had hot cross buns since I was a kid, so I had to buy a few of those.", "album_id": "72157629094219953", "photo_flickr_id": "6787627035", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "41482", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had n't had hot cross buns since i was a kid , so i had to buy a few of those .", "storylet_id": "207412"}], [{"original_text": "After our heavy spending, the wait staff was nice enough to let us snap a few pictures of the kitchen.", "album_id": "72157629094219953", "photo_flickr_id": "6787635135", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "41482", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after our heavy spending , the wait staff was nice enough to let us snap a few pictures of the kitchen .", "storylet_id": "207413"}], [{"original_text": "We probably spent too much, but this was a nice start to a decent night out. ", "album_id": "72157629094219953", "photo_flickr_id": "6787647639", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "41482", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we probably spent too much , but this was a nice start to a decent night out .", "storylet_id": "207414"}], [{"original_text": "We were so hungry we stopped at the first place we saw where we could eat.", "album_id": "72157629094219953", "photo_flickr_id": "6787614239", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41483", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were so hungry we stopped at the first place we saw where we could eat .", "storylet_id": "207415"}], [{"original_text": "It turned out to be a nice looking bakery.", "album_id": "72157629094219953", "photo_flickr_id": "6787624645", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41483", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it turned out to be a nice looking bakery .", "storylet_id": "207416"}], [{"original_text": "The food was not that expensive.", "album_id": "72157629094219953", "photo_flickr_id": "6787627035", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41483", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food was not that expensive .", "storylet_id": "207417"}], [{"original_text": "They were making the bread where all of the customers could see it.", "album_id": "72157629094219953", "photo_flickr_id": "6787635135", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41483", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were making the bread where all of the customers could see it .", "storylet_id": "207418"}], [{"original_text": "It was a great bakery and I'm going to recommend it to all of my friends.", "album_id": "72157629094219953", "photo_flickr_id": "6787647639", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41483", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great bakery and i 'm going to recommend it to all of my friends .", "storylet_id": "207419"}], [{"original_text": "One of my favorite eateries from vacation this year was Boudin. This bakery is found in many locations in the US.", "album_id": "72157629094219953", "photo_flickr_id": "6787614239", "setting": "last-3-pick-old-and-tell", "worker_id": "KHPOPD4DW8492P0", "story_id": "41484", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one of my favorite eateries from vacation this year was boudin . this bakery is found in many locations in the location .", "storylet_id": "207420"}], [{"original_text": "Sculpted bread is a favorite, especially with our kids! Look at the cute turtle.", "album_id": "72157629094219953", "photo_flickr_id": "6787624645", "setting": "last-3-pick-old-and-tell", "worker_id": "KHPOPD4DW8492P0", "story_id": "41484", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sculpted bread is a favorite , especially with our kids ! look at the cute turtle .", "storylet_id": "207421"}], [{"original_text": "The breads are made from sourdough, hearth breads, and other specialties and the prices are reasonable.", "album_id": "72157629094219953", "photo_flickr_id": "6787627035", "setting": "last-3-pick-old-and-tell", "worker_id": "KHPOPD4DW8492P0", "story_id": "41484", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the breads are made from sourdough , hearth breads , and other specialties and the prices are reasonable .", "storylet_id": "207422"}], [{"original_text": "We even had the opportunity to watch the bakers in action.", "album_id": "72157629094219953", "photo_flickr_id": "6787635135", "setting": "last-3-pick-old-and-tell", "worker_id": "KHPOPD4DW8492P0", "story_id": "41484", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even had the opportunity to watch the bakers in action .", "storylet_id": "207423"}], [{"original_text": "If you visit a town with a Boudin Bakery & Cafe, be sure to stop in!", "album_id": "72157629094219953", "photo_flickr_id": "6787647639", "setting": "last-3-pick-old-and-tell", "worker_id": "KHPOPD4DW8492P0", "story_id": "41484", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "if you visit a town with a organization organization organization organization , be sure to stop in !", "storylet_id": "207424"}], [{"original_text": "The lights show started near dusk.", "album_id": "72157624161118434", "photo_flickr_id": "4650071803", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41485", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lights show started near dusk .", "storylet_id": "207425"}], [{"original_text": "As the sun set, the beautiful lights began to shine.", "album_id": "72157624161118434", "photo_flickr_id": "4650689718", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41485", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the sun set , the beautiful lights began to shine .", "storylet_id": "207426"}], [{"original_text": "Each building had it's own unique light set up. My friends and I were impressed.", "album_id": "72157624161118434", "photo_flickr_id": "4650690478", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41485", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each building had it 's own unique light set up . my friends and i were impressed .", "storylet_id": "207427"}], [{"original_text": "In the dead of night, they let off fireworks to accompany the lit buildings.", "album_id": "72157624161118434", "photo_flickr_id": "4650076075", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41485", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the dead of night , they let off fireworks to accompany the lit buildings .", "storylet_id": "207428"}], [{"original_text": "We decided to take countless photos to remember the night of the beautiful lights. ", "album_id": "72157624161118434", "photo_flickr_id": "4650697518", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41485", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to take countless photos to remember the night of the beautiful lights .", "storylet_id": "207429"}], [{"original_text": "As the sun fades the plain arches start to change.", "album_id": "72157624161118434", "photo_flickr_id": "4650071803", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "41486", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as the sun fades the plain arches start to change .", "storylet_id": "207430"}], [{"original_text": "First we see a small splash of blue.", "album_id": "72157624161118434", "photo_flickr_id": "4650689718", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "41486", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we see a small splash of blue .", "storylet_id": "207431"}], [{"original_text": "Then it spreads into a pool.", "album_id": "72157624161118434", "photo_flickr_id": "4650072581", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "41486", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then it spreads into a pool .", "storylet_id": "207432"}], [{"original_text": "It is soon joined by a beautiful pink.", "album_id": "72157624161118434", "photo_flickr_id": "4650693382", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "41486", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is soon joined by a beautiful pink .", "storylet_id": "207433"}], [{"original_text": "It ends with a beautiful fuchsia! My senses are filled.", "album_id": "72157624161118434", "photo_flickr_id": "4650080225", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "41486", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it ends with a beautiful fuchsia ! my senses are filled .", "storylet_id": "207434"}], [{"original_text": "The colors from the lights radiate across the buildings.", "album_id": "72157624161118434", "photo_flickr_id": "4650071803", "setting": "last-3-pick-old-and-tell", "worker_id": "GY6UBD644ZFRUG3", "story_id": "41487", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the colors from the lights radiate across the buildings .", "storylet_id": "207435"}], [{"original_text": "The lights continue to change bring new ways to see a building in a different color.", "album_id": "72157624161118434", "photo_flickr_id": "4650689718", "setting": "last-3-pick-old-and-tell", "worker_id": "GY6UBD644ZFRUG3", "story_id": "41487", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lights continue to change bring new ways to see a building in a different color .", "storylet_id": "207436"}], [{"original_text": "The castle is lit up with lights to help set the mood for the celebration.", "album_id": "72157624161118434", "photo_flickr_id": "4650690478", "setting": "last-3-pick-old-and-tell", "worker_id": "GY6UBD644ZFRUG3", "story_id": "41487", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the castle is lit up with lights to help set the mood for the celebration .", "storylet_id": "207437"}], [{"original_text": "If the lights weren't enough fireworks help light up the night sky bringing even more color to the area.", "album_id": "72157624161118434", "photo_flickr_id": "4650076075", "setting": "last-3-pick-old-and-tell", "worker_id": "GY6UBD644ZFRUG3", "story_id": "41487", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "if the lights were n't enough fireworks help light up the night sky bringing even more color to the area .", "storylet_id": "207438"}], [{"original_text": "The family takes a group photo to save some memories of there great trip.", "album_id": "72157624161118434", "photo_flickr_id": "4650697518", "setting": "last-3-pick-old-and-tell", "worker_id": "GY6UBD644ZFRUG3", "story_id": "41487", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family takes a group photo to save some memories of there great trip .", "storylet_id": "207439"}], [{"original_text": "Today the group of friends visits a unique town.", "album_id": "72157624161118434", "photo_flickr_id": "4650071803", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41488", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today the group of friends visits a unique town .", "storylet_id": "207440"}], [{"original_text": "The town is historic and lit up special for a celebratory occasion.", "album_id": "72157624161118434", "photo_flickr_id": "4650689718", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41488", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the town is historic and lit up special for a celebratory occasion .", "storylet_id": "207441"}], [{"original_text": "The lights add drama and a certain hint of beauty to the occasion", "album_id": "72157624161118434", "photo_flickr_id": "4650690478", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41488", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lights add drama and a certain hint of beauty to the occasion", "storylet_id": "207442"}], [{"original_text": "and the fireworks just top it all off.", "album_id": "72157624161118434", "photo_flickr_id": "4650076075", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41488", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the fireworks just top it all off .", "storylet_id": "207443"}], [{"original_text": "The friends had a wonderful time viewing the beautiful sights together.", "album_id": "72157624161118434", "photo_flickr_id": "4650697518", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41488", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the friends had a wonderful time viewing the beautiful sights together .", "storylet_id": "207444"}], [{"original_text": "The couple found a great spot to watch the fireworks.", "album_id": "72157624161118434", "photo_flickr_id": "4650071803", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "41489", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple found a great spot to watch the fireworks .", "storylet_id": "207445"}], [{"original_text": "They sat down to enjoy the show.", "album_id": "72157624161118434", "photo_flickr_id": "4650689718", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "41489", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they sat down to enjoy the show .", "storylet_id": "207446"}], [{"original_text": "The fireworks lit up the whole town.", "album_id": "72157624161118434", "photo_flickr_id": "4650690478", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "41489", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fireworks lit up the whole town .", "storylet_id": "207447"}], [{"original_text": "It was a beautiful show.", "album_id": "72157624161118434", "photo_flickr_id": "4650076075", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "41489", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a beautiful show .", "storylet_id": "207448"}], [{"original_text": "Afterwords they met up with some friends.", "album_id": "72157624161118434", "photo_flickr_id": "4650697518", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "41489", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwords they met up with some friends .", "storylet_id": "207449"}], [{"original_text": "I went to the dock today.", "album_id": "72157624711578491", "photo_flickr_id": "4939200405", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41490", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the dock today .", "storylet_id": "207450"}], [{"original_text": "I wanted to see the boats.", "album_id": "72157624711578491", "photo_flickr_id": "4939786142", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41490", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i wanted to see the boats .", "storylet_id": "207451"}], [{"original_text": "They were very beautiful.", "album_id": "72157624711578491", "photo_flickr_id": "4939786952", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41490", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were very beautiful .", "storylet_id": "207452"}], [{"original_text": "Some of them were sailing boats.", "album_id": "72157624711578491", "photo_flickr_id": "4939794824", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41490", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of them were sailing boats .", "storylet_id": "207453"}], [{"original_text": "There were some that were very big.", "album_id": "72157624711578491", "photo_flickr_id": "4939796252", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41490", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were some that were very big .", "storylet_id": "207454"}], [{"original_text": "A beautiful flag flying on a gorgeous day.", "album_id": "72157624711578491", "photo_flickr_id": "4939777832", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41491", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a beautiful flag flying on a gorgeous day .", "storylet_id": "207455"}], [{"original_text": "The city skyline was seen in the background.", "album_id": "72157624711578491", "photo_flickr_id": "4939203307", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41491", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city skyline was seen in the background .", "storylet_id": "207456"}], [{"original_text": "A unique sailboat was docked at the pier.", "album_id": "72157624711578491", "photo_flickr_id": "4939792080", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41491", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a unique sailboat was docked at the pier .", "storylet_id": "207457"}], [{"original_text": "The tickets were being sold to the event.", "album_id": "72157624711578491", "photo_flickr_id": "4939211961", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41491", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the tickets were being sold to the event .", "storylet_id": "207458"}], [{"original_text": "The night ended with a beautiful firework display above the pier.", "album_id": "72157624711578491", "photo_flickr_id": "4939216581", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41491", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night ended with a beautiful firework display above the pier .", "storylet_id": "207459"}], [{"original_text": "A day ride around the harbor on a ship is always a fun day.", "album_id": "72157624711578491", "photo_flickr_id": "4939200405", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41492", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a day ride around the harbor on a ship is always a fun day .", "storylet_id": "207460"}], [{"original_text": "Of course, flying the American flag is always a must.", "album_id": "72157624711578491", "photo_flickr_id": "4939786142", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41492", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "of course , flying the american flag is always a must .", "storylet_id": "207461"}], [{"original_text": "The ship was a grand vessel which carried a lot of people.", "album_id": "72157624711578491", "photo_flickr_id": "4939786952", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41492", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ship was a grand vessel which carried a lot of people .", "storylet_id": "207462"}], [{"original_text": "The mast always seems bigger when you are under it looking up.", "album_id": "72157624711578491", "photo_flickr_id": "4939794824", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41492", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the mast always seems bigger when you are under it looking up .", "storylet_id": "207463"}], [{"original_text": "Everyone enjoyed the ride on this great little ship.", "album_id": "72157624711578491", "photo_flickr_id": "4939796252", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41492", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone enjoyed the ride on this great little ship .", "storylet_id": "207464"}], [{"original_text": "There is the American Flag blowing in the wind.", "album_id": "72157624711578491", "photo_flickr_id": "4939777832", "setting": "last-3-pick-old-and-tell", "worker_id": "8VDIOFYC9Y1XCOF", "story_id": "41493", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is the american flag blowing in the wind .", "storylet_id": "207465"}], [{"original_text": "The buildings in the background are gorgeous!", "album_id": "72157624711578491", "photo_flickr_id": "4939203307", "setting": "last-3-pick-old-and-tell", "worker_id": "8VDIOFYC9Y1XCOF", "story_id": "41493", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the buildings in the background are gorgeous !", "storylet_id": "207466"}], [{"original_text": "What a beautiful morning with the sun coming up.", "album_id": "72157624711578491", "photo_flickr_id": "4939792080", "setting": "last-3-pick-old-and-tell", "worker_id": "8VDIOFYC9Y1XCOF", "story_id": "41493", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what a beautiful morning with the sun coming up .", "storylet_id": "207467"}], [{"original_text": "This looks like the place to get some tickets.", "album_id": "72157624711578491", "photo_flickr_id": "4939211961", "setting": "last-3-pick-old-and-tell", "worker_id": "8VDIOFYC9Y1XCOF", "story_id": "41493", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this looks like the place to get some tickets .", "storylet_id": "207468"}], [{"original_text": "The fireworks in the night time were spectacular!", "album_id": "72157624711578491", "photo_flickr_id": "4939216581", "setting": "last-3-pick-old-and-tell", "worker_id": "8VDIOFYC9Y1XCOF", "story_id": "41493", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fireworks in the night time were spectacular !", "storylet_id": "207469"}], [{"original_text": "The flag flies proudly over the ship in port.", "album_id": "72157624711578491", "photo_flickr_id": "4939777832", "setting": "last-3-pick-old-and-tell", "worker_id": "NPCC867CBR5NFH1", "story_id": "41494", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the flag flies proudly over the ship in port .", "storylet_id": "207470"}], [{"original_text": "This grand old ship has sailed into town for the celebration.", "album_id": "72157624711578491", "photo_flickr_id": "4939203307", "setting": "last-3-pick-old-and-tell", "worker_id": "NPCC867CBR5NFH1", "story_id": "41494", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this grand old ship has sailed into town for the celebration .", "storylet_id": "207471"}], [{"original_text": "Masts of the ships stand proud in the setting sun.", "album_id": "72157624711578491", "photo_flickr_id": "4939792080", "setting": "last-3-pick-old-and-tell", "worker_id": "NPCC867CBR5NFH1", "story_id": "41494", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "masts of the ships stand proud in the setting sun .", "storylet_id": "207472"}], [{"original_text": "Now it is time to have some fun at the festival.", "album_id": "72157624711578491", "photo_flickr_id": "4939211961", "setting": "last-3-pick-old-and-tell", "worker_id": "NPCC867CBR5NFH1", "story_id": "41494", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now it is time to have some fun at the festival .", "storylet_id": "207473"}], [{"original_text": "Fireworks and lighted ships are a perfect way to end the day.", "album_id": "72157624711578491", "photo_flickr_id": "4939216581", "setting": "last-3-pick-old-and-tell", "worker_id": "NPCC867CBR5NFH1", "story_id": "41494", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fireworks and lighted ships are a perfect way to end the day .", "storylet_id": "207474"}], [{"original_text": "I decided to spend a night out on the town with me and my camera.", "album_id": "72157624490271763", "photo_flickr_id": "4844522185", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41495", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to spend a night out on the town with me and my camera .", "storylet_id": "207475"}], [{"original_text": "I went around to all of the grandiose buildings and photographed their artistry. ", "album_id": "72157624490271763", "photo_flickr_id": "4843059479", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41495", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went around to all of the grandiose buildings and photographed their artistry .", "storylet_id": "207476"}], [{"original_text": "Eventually, I stumbled upon some boats and shot them too. ", "album_id": "72157624490271763", "photo_flickr_id": "4843710078", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41495", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "eventually , i stumbled upon some boats and shot them too .", "storylet_id": "207477"}], [{"original_text": "Deciding to take a break, I had some drinks in a bar. ", "album_id": "72157624490271763", "photo_flickr_id": "4844089468", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41495", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "deciding to take a break , i had some drinks in a bar .", "storylet_id": "207478"}], [{"original_text": "Then I went to a late night museum to get more inspiration for my photos. ", "album_id": "72157624490271763", "photo_flickr_id": "4843577126", "setting": "first-2-pick-and-tell", "worker_id": "BLAR45OHGZC4NMG", "story_id": "41495", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then i went to a late night museum to get more inspiration for my photos .", "storylet_id": "207479"}], [{"original_text": "We attended my Aunt's wedding at this famous bulding, where the couple had met.", "album_id": "72157624490271763", "photo_flickr_id": "4843454899", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41496", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we attended my aunt 's wedding at this famous bulding , where the couple had met .", "storylet_id": "207480"}], [{"original_text": "On the way to the Harbor i saw so many boats, yachts, and even ships.", "album_id": "72157624490271763", "photo_flickr_id": "4843964926", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41496", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on the way to the harbor i saw so many boats , yachts , and even ships .", "storylet_id": "207481"}], [{"original_text": "This is the ship that my aunt rented for her wedding reception.", "album_id": "72157624490271763", "photo_flickr_id": "4843757962", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41496", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the ship that my aunt rented for her wedding reception .", "storylet_id": "207482"}], [{"original_text": "even from a higher altitude, the ship looked massive.", "album_id": "72157624490271763", "photo_flickr_id": "4843710078", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41496", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even from a higher altitude , the ship looked massive .", "storylet_id": "207483"}], [{"original_text": "When the ship reached this perfect spot, the couple paused for photos.", "album_id": "72157624490271763", "photo_flickr_id": "4844522185", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41496", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the ship reached this perfect spot , the couple paused for photos .", "storylet_id": "207484"}], [{"original_text": "The city always comes alive when its night time.", "album_id": "72157624490271763", "photo_flickr_id": "4844522185", "setting": "last-3-pick-old-and-tell", "worker_id": "2WEM5A9USOFOALT", "story_id": "41497", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city always comes alive when its night time .", "storylet_id": "207485"}], [{"original_text": "Everything that you see at night takes on a whole new look", "album_id": "72157624490271763", "photo_flickr_id": "4843059479", "setting": "last-3-pick-old-and-tell", "worker_id": "2WEM5A9USOFOALT", "story_id": "41497", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything that you see at night takes on a whole new look", "storylet_id": "207486"}], [{"original_text": "I Often look around and wonder where are people going in the am what are they preparing for", "album_id": "72157624490271763", "photo_flickr_id": "4843710078", "setting": "last-3-pick-old-and-tell", "worker_id": "2WEM5A9USOFOALT", "story_id": "41497", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i often look around and wonder where are people going in the am what are they preparing for", "storylet_id": "207487"}], [{"original_text": "I notice detail in store fronts and wonder when was the building first built what was the city like back then", "album_id": "72157624490271763", "photo_flickr_id": "4844089468", "setting": "last-3-pick-old-and-tell", "worker_id": "2WEM5A9USOFOALT", "story_id": "41497", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i notice detail in store fronts and wonder when was the building first built what was the city like back then", "storylet_id": "207488"}], [{"original_text": "So beautiful and so regal its almost breathtaking", "album_id": "72157624490271763", "photo_flickr_id": "4843577126", "setting": "last-3-pick-old-and-tell", "worker_id": "2WEM5A9USOFOALT", "story_id": "41497", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so beautiful and so regal its almost breathtaking", "storylet_id": "207489"}], [{"original_text": "The city was very scary at night with just a few lamps lighting it.", "album_id": "72157624490271763", "photo_flickr_id": "4843454899", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41498", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city was very scary at night with just a few lamps lighting it .", "storylet_id": "207490"}], [{"original_text": "We made our way to the marina to the waiting cruise ship.", "album_id": "72157624490271763", "photo_flickr_id": "4843964926", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41498", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made our way to the marina to the waiting cruise ship .", "storylet_id": "207491"}], [{"original_text": "It was on the water and lit.", "album_id": "72157624490271763", "photo_flickr_id": "4843757962", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41498", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was on the water and lit .", "storylet_id": "207492"}], [{"original_text": "We got on board.", "album_id": "72157624490271763", "photo_flickr_id": "4843710078", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41498", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got on board .", "storylet_id": "207493"}], [{"original_text": "It took us on a tour of the waterfront.", "album_id": "72157624490271763", "photo_flickr_id": "4844522185", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41498", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it took us on a tour of the waterfront .", "storylet_id": "207494"}], [{"original_text": "It was my first trip to New York City!", "album_id": "72157624490271763", "photo_flickr_id": "4844522185", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "41499", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was my first trip to location location location !", "storylet_id": "207495"}], [{"original_text": "The architecture on some of the buildings was astounding.", "album_id": "72157624490271763", "photo_flickr_id": "4843059479", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "41499", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the architecture on some of the buildings was astounding .", "storylet_id": "207496"}], [{"original_text": "We saw this huge boat at the river. It's the biggest I've ever seen!", "album_id": "72157624490271763", "photo_flickr_id": "4843710078", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "41499", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw this huge boat at the river . it 's the biggest i 've ever seen !", "storylet_id": "207497"}], [{"original_text": "We stopped at this local cafe for lunch.", "album_id": "72157624490271763", "photo_flickr_id": "4844089468", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "41499", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped at this local cafe for lunch .", "storylet_id": "207498"}], [{"original_text": "Even the cafe had some incredible architecture!", "album_id": "72157624490271763", "photo_flickr_id": "4843577126", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "41499", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the cafe had some incredible architecture !", "storylet_id": "207499"}], [{"original_text": "We went to the botanical gardens on a beautiful spring day.", "album_id": "72157623200307257", "photo_flickr_id": "4321466450", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41500", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the botanical gardens on a beautiful spring day .", "storylet_id": "207500"}], [{"original_text": "All of the flowers were in full bloom.", "album_id": "72157623200307257", "photo_flickr_id": "4321469250", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41500", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the flowers were in full bloom .", "storylet_id": "207501"}], [{"original_text": "There were beautiful structures to relax in when you got tired.", "album_id": "72157623200307257", "photo_flickr_id": "4321472140", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41500", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were beautiful structures to relax in when you got tired .", "storylet_id": "207502"}], [{"original_text": "The decor was amazing and worldly.", "album_id": "72157623200307257", "photo_flickr_id": "4336570467", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41500", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the decor was amazing and worldly .", "storylet_id": "207503"}], [{"original_text": "The flowers were definitely the star of the show though, and seemed to bloom in every color.", "album_id": "72157623200307257", "photo_flickr_id": "4336574905", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41500", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the flowers were definitely the star of the show though , and seemed to bloom in every color .", "storylet_id": "207504"}], [{"original_text": "Where are all the leaves?", "album_id": "72157623200307257", "photo_flickr_id": "4321465234", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41501", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "where are all the leaves ?", "storylet_id": "207505"}], [{"original_text": "Oh, they're by the flowers!", "album_id": "72157623200307257", "photo_flickr_id": "4321469250", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41501", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "oh , they 're by the flowers !", "storylet_id": "207506"}], [{"original_text": "I like flowers.", "album_id": "72157623200307257", "photo_flickr_id": "4320733871", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41501", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i like flowers .", "storylet_id": "207507"}], [{"original_text": "But not as much as I like this petal.", "album_id": "72157623200307257", "photo_flickr_id": "4336569927", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41501", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but not as much as i like this petal .", "storylet_id": "207508"}], [{"original_text": "I like it so much, I took its photo twice!", "album_id": "72157623200307257", "photo_flickr_id": "4336569621", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41501", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i like it so much , i took its photo twice !", "storylet_id": "207509"}], [{"original_text": "This weekend we went to a peace garden.", "album_id": "72157623200307257", "photo_flickr_id": "4321466450", "setting": "last-3-pick-old-and-tell", "worker_id": "6LIW4XI8A7C8M3T", "story_id": "41502", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this weekend we went to a peace garden .", "storylet_id": "207510"}], [{"original_text": "The colorful flowers were beautiful, and smelled wonderful.", "album_id": "72157623200307257", "photo_flickr_id": "4321469250", "setting": "last-3-pick-old-and-tell", "worker_id": "6LIW4XI8A7C8M3T", "story_id": "41502", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the colorful flowers were beautiful , and smelled wonderful .", "storylet_id": "207511"}], [{"original_text": "The gazebo was quiet and peaceful, it was relaxing to sit in the shade!", "album_id": "72157623200307257", "photo_flickr_id": "4321472140", "setting": "last-3-pick-old-and-tell", "worker_id": "6LIW4XI8A7C8M3T", "story_id": "41502", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the gazebo was quiet and peaceful , it was relaxing to sit in the shade !", "storylet_id": "207512"}], [{"original_text": "There was a religious garden for meditation. ", "album_id": "72157623200307257", "photo_flickr_id": "4336570467", "setting": "last-3-pick-old-and-tell", "worker_id": "6LIW4XI8A7C8M3T", "story_id": "41502", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a religious garden for meditation .", "storylet_id": "207513"}], [{"original_text": "The bright and colorful flowers were breathtaking. ", "album_id": "72157623200307257", "photo_flickr_id": "4336574905", "setting": "last-3-pick-old-and-tell", "worker_id": "6LIW4XI8A7C8M3T", "story_id": "41502", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bright and colorful flowers were breathtaking .", "storylet_id": "207514"}], [{"original_text": "I took a long stroll through the park today.", "album_id": "72157623200307257", "photo_flickr_id": "4321466450", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41503", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a long stroll through the park today .", "storylet_id": "207515"}], [{"original_text": "I made sure to smell every flower I saw.", "album_id": "72157623200307257", "photo_flickr_id": "4321469250", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41503", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i made sure to smell every flower i saw .", "storylet_id": "207516"}], [{"original_text": "I sat for about an hour under the gazebo.", "album_id": "72157623200307257", "photo_flickr_id": "4321472140", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41503", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i sat for about an hour under the gazebo .", "storylet_id": "207517"}], [{"original_text": "I examined all of the woodwork carvings that can be found throughout the park.", "album_id": "72157623200307257", "photo_flickr_id": "4336570467", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41503", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i examined all of the woodwork carvings that can be found throughout the park .", "storylet_id": "207518"}], [{"original_text": "The flowers smelled so good.", "album_id": "72157623200307257", "photo_flickr_id": "4336574905", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41503", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the flowers smelled so good .", "storylet_id": "207519"}], [{"original_text": "To get the perfect flower picture this spring we went to the park.", "album_id": "72157623200307257", "photo_flickr_id": "4321466450", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "41504", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "to get the perfect flower picture this spring we went to the park .", "storylet_id": "207520"}], [{"original_text": "The pinks, whites, and reds, were beautiful, but not quite what we wanted.", "album_id": "72157623200307257", "photo_flickr_id": "4321469250", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "41504", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pinks , whites , and reds , were beautiful , but not quite what we wanted .", "storylet_id": "207521"}], [{"original_text": "We spent time in the gazebo and looked around for inspiration.", "album_id": "72157623200307257", "photo_flickr_id": "4321472140", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "41504", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we spent time in the gazebo and looked around for inspiration .", "storylet_id": "207522"}], [{"original_text": "We found a deity statue that was just about the perfect color.", "album_id": "72157623200307257", "photo_flickr_id": "4336570467", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "41504", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found a deity statue that was just about the perfect color .", "storylet_id": "207523"}], [{"original_text": "Finally we found the orange and yellow hues we wanted and took our perfect flower picture.", "album_id": "72157623200307257", "photo_flickr_id": "4336574905", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "41504", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally we found the orange and yellow hues we wanted and took our perfect flower picture .", "storylet_id": "207524"}], [{"original_text": "Their was a local scary fair that came to our area.", "album_id": "72157624015502957", "photo_flickr_id": "4650370280", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "41505", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "their was a local scary fair that came to our area .", "storylet_id": "207525"}], [{"original_text": "All of the rides were meant to scare the youngins ", "album_id": "72157624015502957", "photo_flickr_id": "4937365270", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "41505", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the rides were meant to scare the youngins", "storylet_id": "207526"}], [{"original_text": "The Ferris wheel was even all lit up ", "album_id": "72157624015502957", "photo_flickr_id": "4650871359", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "41505", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ferris wheel was even all lit up", "storylet_id": "207527"}], [{"original_text": "We stopped at the Tripicana bar for some delicious drinks.", "album_id": "72157624015502957", "photo_flickr_id": "4651511552", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "41505", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped at the location bar for some delicious drinks .", "storylet_id": "207528"}], [{"original_text": "We finished it off by going on the crazy UFO wheel", "album_id": "72157624015502957", "photo_flickr_id": "4641101703", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "41505", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finished it off by going on the crazy ufo wheel", "storylet_id": "207529"}], [{"original_text": "We went to the carnival.", "album_id": "72157624015502957", "photo_flickr_id": "4648418237", "setting": "first-2-pick-and-tell", "worker_id": "KESG6N5MCW2GFQX", "story_id": "41506", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the carnival .", "storylet_id": "207530"}], [{"original_text": "There were lots of interesting rides.", "album_id": "72157624015502957", "photo_flickr_id": "4650370280", "setting": "first-2-pick-and-tell", "worker_id": "KESG6N5MCW2GFQX", "story_id": "41506", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were lots of interesting rides .", "storylet_id": "207531"}], [{"original_text": "Many people were waiting for some of the rides.", "album_id": "72157624015502957", "photo_flickr_id": "4650885873", "setting": "first-2-pick-and-tell", "worker_id": "KESG6N5MCW2GFQX", "story_id": "41506", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many people were waiting for some of the rides .", "storylet_id": "207532"}], [{"original_text": "This ride was my favorite.", "album_id": "72157624015502957", "photo_flickr_id": "4651511552", "setting": "first-2-pick-and-tell", "worker_id": "KESG6N5MCW2GFQX", "story_id": "41506", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this ride was my favorite .", "storylet_id": "207533"}], [{"original_text": "This ride was particularly scary!", "album_id": "72157624015502957", "photo_flickr_id": "4641100667", "setting": "first-2-pick-and-tell", "worker_id": "KESG6N5MCW2GFQX", "story_id": "41506", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this ride was particularly scary !", "storylet_id": "207534"}], [{"original_text": "The haunted fair was in town.", "album_id": "72157624015502957", "photo_flickr_id": "4650370280", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41507", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the haunted fair was in town .", "storylet_id": "207535"}], [{"original_text": "We looked at the creepy ads and headed in.", "album_id": "72157624015502957", "photo_flickr_id": "4937365270", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41507", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we looked at the creepy ads and headed in .", "storylet_id": "207536"}], [{"original_text": "It had some standard rides of course.", "album_id": "72157624015502957", "photo_flickr_id": "4650871359", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41507", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it had some standard rides of course .", "storylet_id": "207537"}], [{"original_text": "We went down the line, one after the other.", "album_id": "72157624015502957", "photo_flickr_id": "4651511552", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41507", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went down the line , one after the other .", "storylet_id": "207538"}], [{"original_text": "Then we finished our night at the biggest ride there and headed home.", "album_id": "72157624015502957", "photo_flickr_id": "4641101703", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41507", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we finished our night at the biggest ride there and headed home .", "storylet_id": "207539"}], [{"original_text": "Saw this cute live action puppet show called Vampiria. ", "album_id": "72157624015502957", "photo_flickr_id": "4650370280", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "41508", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "saw this cute live action puppet show called location .", "storylet_id": "207540"}], [{"original_text": "I swear the skeletons from the show were from R.L Stine.", "album_id": "72157624015502957", "photo_flickr_id": "4937365270", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "41508", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i swear the skeletons from the show were from r.l stine .", "storylet_id": "207541"}], [{"original_text": "Even the ferris wheel resembled something out of Frankenstein. ", "album_id": "72157624015502957", "photo_flickr_id": "4650871359", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "41508", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the ferris wheel resembled something out of frankenstein .", "storylet_id": "207542"}], [{"original_text": "They even had a show based off the popular orange juice brand. ", "album_id": "72157624015502957", "photo_flickr_id": "4651511552", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "41508", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even had a show based off the popular orange juice brand .", "storylet_id": "207543"}], [{"original_text": "But by far the most harrowing ride was the ferris wheel of death. It looked like something that could kill you! ", "album_id": "72157624015502957", "photo_flickr_id": "4641101703", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "41508", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but by far the most harrowing ride was the ferris wheel of death . it looked like something that could kill you !", "storylet_id": "207544"}], [{"original_text": "The castle had lights", "album_id": "72157624015502957", "photo_flickr_id": "4650370280", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41509", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the castle had lights", "storylet_id": "207545"}], [{"original_text": "and a skull picture.", "album_id": "72157624015502957", "photo_flickr_id": "4937365270", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41509", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and a skull picture .", "storylet_id": "207546"}], [{"original_text": "There was a big ferris wheel", "album_id": "72157624015502957", "photo_flickr_id": "4650871359", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41509", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a big ferris wheel", "storylet_id": "207547"}], [{"original_text": "with lights around", "album_id": "72157624015502957", "photo_flickr_id": "4651511552", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41509", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with lights around", "storylet_id": "207548"}], [{"original_text": "and a spinning ride.", "album_id": "72157624015502957", "photo_flickr_id": "4641101703", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41509", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and a spinning ride .", "storylet_id": "207549"}], [{"original_text": "I went the presentation yesterday.", "album_id": "72157625207409772", "photo_flickr_id": "4946500811", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41510", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went the presentation yesterday .", "storylet_id": "207550"}], [{"original_text": "I took a bus there.", "album_id": "72157625207409772", "photo_flickr_id": "4946501169", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41510", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i took a bus there .", "storylet_id": "207551"}], [{"original_text": "There were many people speaking.", "album_id": "72157625207409772", "photo_flickr_id": "4946501631", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41510", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many people speaking .", "storylet_id": "207552"}], [{"original_text": "The building was very nice.", "album_id": "72157625207409772", "photo_flickr_id": "4947092672", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41510", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the building was very nice .", "storylet_id": "207553"}], [{"original_text": "Afterward we were allowed to ask questions.", "album_id": "72157625207409772", "photo_flickr_id": "4946504047", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41510", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we were allowed to ask questions .", "storylet_id": "207554"}], [{"original_text": "While vacationing in Florida, we were abducted by a time share company, that just wanted a few hours of our time. ", "album_id": "72157625207409772", "photo_flickr_id": "4946501169", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41511", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while vacationing in location , we were abducted by a time share company , that just wanted a few hours of our time .", "storylet_id": "207555"}], [{"original_text": "It turns out Penn State and this time share company are working together, and they had a great deal. ", "album_id": "72157625207409772", "photo_flickr_id": "4946501631", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41511", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it turns out organization organization and this time share company are working together , and they had a great deal .", "storylet_id": "207556"}], [{"original_text": "They showed us slides of ducks, water, and great buildings to live in. ", "album_id": "72157625207409772", "photo_flickr_id": "4947090896", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41511", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they showed us slides of ducks , water , and great buildings to live in .", "storylet_id": "207557"}], [{"original_text": "After a bit too long, the crowd became restless, and wanted their freedom. ", "album_id": "72157625207409772", "photo_flickr_id": "4946503433", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41511", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a bit too long , the crowd became restless , and wanted their freedom .", "storylet_id": "207558"}], [{"original_text": "Finally officer William busted down the door and freed the captive audience. We were grateful. ", "album_id": "72157625207409772", "photo_flickr_id": "4947093188", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "41511", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally officer [male] busted down the door and freed the captive audience . we were grateful .", "storylet_id": "207559"}], [{"original_text": "The presentation took place before we let for the event.", "album_id": "72157625207409772", "photo_flickr_id": "4946500811", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41512", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the presentation took place before we let for the event .", "storylet_id": "207560"}], [{"original_text": "We got on the bus afterwards to head out.", "album_id": "72157625207409772", "photo_flickr_id": "4946501169", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41512", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got on the bus afterwards to head out .", "storylet_id": "207561"}], [{"original_text": "When we go there, people spoke and made claims.", "album_id": "72157625207409772", "photo_flickr_id": "4946501631", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41512", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we go there , people spoke and made claims .", "storylet_id": "207562"}], [{"original_text": "The building itself was just an average school.", "album_id": "72157625207409772", "photo_flickr_id": "4947092672", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41512", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the building itself was just an average school .", "storylet_id": "207563"}], [{"original_text": "Afterwards, we all got up and went on our ways.", "album_id": "72157625207409772", "photo_flickr_id": "4946504047", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41512", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , we all got up and went on our ways .", "storylet_id": "207564"}], [{"original_text": "What a long day of sitting and watching a lecture today.", "album_id": "72157625207409772", "photo_flickr_id": "4946500811", "setting": "last-3-pick-old-and-tell", "worker_id": "CN6FDW3SNVCMMOS", "story_id": "41513", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what a long day of sitting and watching a lecture today .", "storylet_id": "207565"}], [{"original_text": "Getting ready to take a tour around and see the sights.", "album_id": "72157625207409772", "photo_flickr_id": "4946501169", "setting": "last-3-pick-old-and-tell", "worker_id": "CN6FDW3SNVCMMOS", "story_id": "41513", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "getting ready to take a tour around and see the sights .", "storylet_id": "207566"}], [{"original_text": "What an interesting lecture PennState gave today.", "album_id": "72157625207409772", "photo_flickr_id": "4946501631", "setting": "last-3-pick-old-and-tell", "worker_id": "CN6FDW3SNVCMMOS", "story_id": "41513", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what an interesting lecture organization gave today .", "storylet_id": "207567"}], [{"original_text": "The grounds are so well kept.", "album_id": "72157625207409772", "photo_flickr_id": "4947092672", "setting": "last-3-pick-old-and-tell", "worker_id": "CN6FDW3SNVCMMOS", "story_id": "41513", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the grounds are so well kept .", "storylet_id": "207568"}], [{"original_text": "Finally it's over, getting ready to go.", "album_id": "72157625207409772", "photo_flickr_id": "4946504047", "setting": "last-3-pick-old-and-tell", "worker_id": "CN6FDW3SNVCMMOS", "story_id": "41513", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally it 's over , getting ready to go .", "storylet_id": "207569"}], [{"original_text": "I attended an important meeting at Penn State.", "album_id": "72157625207409772", "photo_flickr_id": "4946500811", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "41514", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i attended an important meeting at organization organization .", "storylet_id": "207570"}], [{"original_text": "My coach announced the president of the school will be hosting the meeting. ", "album_id": "72157625207409772", "photo_flickr_id": "4946501169", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "41514", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my coach announced the president of the school will be hosting the meeting .", "storylet_id": "207571"}], [{"original_text": "And low and behold there she was, a very important female in power", "album_id": "72157625207409772", "photo_flickr_id": "4946501631", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "41514", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and low and behold there she was , a very important female in power", "storylet_id": "207572"}], [{"original_text": "Penn State is one of the most prestigious schools though it has a conservative look. ", "album_id": "72157625207409772", "photo_flickr_id": "4947092672", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "41514", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "organization organization is one of the most prestigious schools though it has a conservative look .", "storylet_id": "207573"}], [{"original_text": "We took a tour around the school and I'm considering transferring here!", "album_id": "72157625207409772", "photo_flickr_id": "4946504047", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "41514", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took a tour around the school and i 'm considering transferring here !", "storylet_id": "207574"}], [{"original_text": "In the front of the park, there was this pleasant statue.", "album_id": "48904", "photo_flickr_id": "1931787", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41515", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the front of the park , there was this pleasant statue .", "storylet_id": "207575"}], [{"original_text": "We rode a rollercoaster after seeing the statue.", "album_id": "48904", "photo_flickr_id": "1931795", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41515", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we rode a rollercoaster after seeing the statue .", "storylet_id": "207576"}], [{"original_text": "My coworkers were having so much fine.", "album_id": "48904", "photo_flickr_id": "1931814", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41515", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my coworkers were having so much fine .", "storylet_id": "207577"}], [{"original_text": "I took a picture of this insane coaster incline.", "album_id": "48904", "photo_flickr_id": "1931819", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41515", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i took a picture of this insane coaster incline .", "storylet_id": "207578"}], [{"original_text": "The last coaster we rode on was the most thrilling.", "album_id": "48904", "photo_flickr_id": "1931852", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41515", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last coaster we rode on was the most thrilling .", "storylet_id": "207579"}], [{"original_text": "The amusement park was packed today, we couldnt wait to get on some rides.", "album_id": "48904", "photo_flickr_id": "1931787", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41516", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the amusement park was packed today , we couldnt wait to get on some rides .", "storylet_id": "207580"}], [{"original_text": "The park had some pretty nice views, that water looked pretty dirty though.", "album_id": "48904", "photo_flickr_id": "1931798", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41516", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the park had some pretty nice views , that water looked pretty dirty though .", "storylet_id": "207581"}], [{"original_text": "We couldnt wait to ride this bad boy, it was huge!", "album_id": "48904", "photo_flickr_id": "1931802", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41516", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we couldnt wait to ride this bad boy , it was huge !", "storylet_id": "207582"}], [{"original_text": "The turns were intense, hard to keep your hand up.", "album_id": "48904", "photo_flickr_id": "1931852", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41516", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the turns were intense , hard to keep your hand up .", "storylet_id": "207583"}], [{"original_text": "After the ride we were relieved it was over but couldnt wait to get on another!", "album_id": "48904", "photo_flickr_id": "1931881", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41516", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the ride we were relieved it was over but couldnt wait to get on another !", "storylet_id": "207584"}], [{"original_text": "The family planned for weeks to go to the amusement park.", "album_id": "48904", "photo_flickr_id": "1931787", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "41517", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family planned for weeks to go to the amusement park .", "storylet_id": "207585"}], [{"original_text": "The first thing they did together was go on each ride.", "album_id": "48904", "photo_flickr_id": "1931795", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "41517", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first thing they did together was go on each ride .", "storylet_id": "207586"}], [{"original_text": "With all of the roller coasters in the park, this was going to take up most of their time. ", "album_id": "48904", "photo_flickr_id": "1931814", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "41517", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "with all of the roller coasters in the park , this was going to take up most of their time .", "storylet_id": "207587"}], [{"original_text": "Their last ride was going to be on the monstrous Hill Climber roller coaster. ", "album_id": "48904", "photo_flickr_id": "1931819", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "41517", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their last ride was going to be on the monstrous hill climber roller coaster .", "storylet_id": "207588"}], [{"original_text": "After riding one of the tallest coasters on the east coast, the family completed their plan to ride every coaster in the park.", "album_id": "48904", "photo_flickr_id": "1931852", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "41517", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after riding one of the tallest coasters on the east coast , the family completed their plan to ride every coaster in the park .", "storylet_id": "207589"}], [{"original_text": "Our day started by looking at a statue in a fountain. ", "album_id": "48904", "photo_flickr_id": "1931787", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41518", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our day started by looking at a statue in a fountain .", "storylet_id": "207590"}], [{"original_text": "Rob had a lot of fun on the roller coaster. ", "album_id": "48904", "photo_flickr_id": "1931795", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41518", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "rob had a lot of fun on the roller coaster .", "storylet_id": "207591"}], [{"original_text": "The one that straps you in like this is the most scary. ", "album_id": "48904", "photo_flickr_id": "1931814", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41518", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the one that straps you in like this is the most scary .", "storylet_id": "207592"}], [{"original_text": "I rode the tallest rollercoaster in the state. ", "album_id": "48904", "photo_flickr_id": "1931819", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41518", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i rode the tallest rollercoaster in the state .", "storylet_id": "207593"}], [{"original_text": "I rode the same coaster three times in a row before I left the park. ", "album_id": "48904", "photo_flickr_id": "1931852", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41518", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i rode the same coaster three times in a row before i left the park .", "storylet_id": "207594"}], [{"original_text": "We came across this beautiful fountain with a statue in the middle.", "album_id": "48904", "photo_flickr_id": "1931787", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41519", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we came across this beautiful fountain with a statue in the middle .", "storylet_id": "207595"}], [{"original_text": "We rode the really fast roller coaster and had so much fun.", "album_id": "48904", "photo_flickr_id": "1931795", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41519", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we rode the really fast roller coaster and had so much fun .", "storylet_id": "207596"}], [{"original_text": "Our friends was so excited to ride another roller coaster.", "album_id": "48904", "photo_flickr_id": "1931814", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41519", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our friends was so excited to ride another roller coaster .", "storylet_id": "207597"}], [{"original_text": "The red roller coaster was almost too scary for us to ride. ", "album_id": "48904", "photo_flickr_id": "1931819", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41519", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the red roller coaster was almost too scary for us to ride .", "storylet_id": "207598"}], [{"original_text": "At the end of the day we watched our friends ride different rides.", "album_id": "48904", "photo_flickr_id": "1931852", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41519", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day we watched our friends ride different rides .", "storylet_id": "207599"}], [{"original_text": "The compound had many defenses against intruders. ", "album_id": "492675", "photo_flickr_id": "21162824", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41520", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the compound had many defenses against intruders .", "storylet_id": "207600"}], [{"original_text": "The windows had outside bar grids. No one could get in or out of the windows. ", "album_id": "492675", "photo_flickr_id": "21157312", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41520", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the windows had outside bar grids . no one could get in or out of the windows .", "storylet_id": "207601"}], [{"original_text": "Barbed wire was rolled and lined the top of the cement block wall that surrounded the compound. ", "album_id": "492675", "photo_flickr_id": "21156285", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41520", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "barbed wire was rolled and lined the top of the cement block wall that surrounded the compound .", "storylet_id": "207602"}], [{"original_text": "What was the compound keeping out? Or was it keeping something inside? Questions would be asked. ", "album_id": "492675", "photo_flickr_id": "21191842", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41520", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what was the compound keeping out ? or was it keeping something inside ? questions would be asked .", "storylet_id": "207603"}], [{"original_text": "No answers were ever received. The sharp blades on the wire only intensified the defensive nature of the compound. ", "album_id": "492675", "photo_flickr_id": "21196728", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41520", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "no answers were ever received . the sharp blades on the wire only intensified the defensive nature of the compound .", "storylet_id": "207604"}], [{"original_text": "There was bob wire along the roof line of the building.", "album_id": "492675", "photo_flickr_id": "21155629", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "41521", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was bob wire along the roof line of the building .", "storylet_id": "207605"}], [{"original_text": "Iron bars were welded to the inside window sills.", "album_id": "492675", "photo_flickr_id": "21155918", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "41521", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "iron bars were welded to the inside window sills .", "storylet_id": "207606"}], [{"original_text": "There was also iron bars on the outside of the windows.", "album_id": "492675", "photo_flickr_id": "21157312", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "41521", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was also iron bars on the outside of the windows .", "storylet_id": "207607"}], [{"original_text": "The security of the building was intense.", "album_id": "492675", "photo_flickr_id": "21162824", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "41521", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the security of the building was intense .", "storylet_id": "207608"}], [{"original_text": "There was also barb wire along the surrounding fence of the building. No one was getting in or out.", "album_id": "492675", "photo_flickr_id": "21191842", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "41521", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was also barb wire along the surrounding fence of the building . no one was getting in or out .", "storylet_id": "207609"}], [{"original_text": "I bought an old house in the city, and went to look it over this weekend.", "album_id": "492675", "photo_flickr_id": "21162824", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41522", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i bought an old house in the city , and went to look it over this weekend .", "storylet_id": "207610"}], [{"original_text": "The building was in good shape, but there were a lot of signs of needed security components.", "album_id": "492675", "photo_flickr_id": "21157312", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41522", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the building was in good shape , but there were a lot of signs of needed security components .", "storylet_id": "207611"}], [{"original_text": "The building was surrounded by a wall with barbed wire on top.", "album_id": "492675", "photo_flickr_id": "21156285", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41522", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the building was surrounded by a wall with barbed wire on top .", "storylet_id": "207612"}], [{"original_text": "The wire was razor sharp, and was of the new type of wire.", "album_id": "492675", "photo_flickr_id": "21191842", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41522", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wire was razor sharp , and was of the new type of wire .", "storylet_id": "207613"}], [{"original_text": "This wire could keep anyone from getting in or out.", "album_id": "492675", "photo_flickr_id": "21196728", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41522", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this wire could keep anyone from getting in or out .", "storylet_id": "207614"}], [{"original_text": "When passing by a build, we noticed it had barbed wire on the top.", "album_id": "492675", "photo_flickr_id": "21155629", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41523", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when passing by a build , we noticed it had barbed wire on the top .", "storylet_id": "207615"}], [{"original_text": "Then we noticed the vents for the air conditioner.", "album_id": "492675", "photo_flickr_id": "21155918", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41523", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we noticed the vents for the air conditioner .", "storylet_id": "207616"}], [{"original_text": "All the windows had bars on them.", "album_id": "492675", "photo_flickr_id": "21157312", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41523", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the windows had bars on them .", "storylet_id": "207617"}], [{"original_text": "After that we noticed some windows that didn't have any bars.", "album_id": "492675", "photo_flickr_id": "21162824", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41523", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that we noticed some windows that did n't have any bars .", "storylet_id": "207618"}], [{"original_text": "Upon looking closer, the barbed wire looked sharp.", "album_id": "492675", "photo_flickr_id": "21191842", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41523", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "upon looking closer , the barbed wire looked sharp .", "storylet_id": "207619"}], [{"original_text": "The abandoned prison on the outside of town is still standing.", "album_id": "492675", "photo_flickr_id": "21162824", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "41524", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the abandoned prison on the outside of town is still standing .", "storylet_id": "207620"}], [{"original_text": "The methods use to keep the prisoners inside are still view able, like this barred windows.", "album_id": "492675", "photo_flickr_id": "21157312", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "41524", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the methods use to keep the prisoners inside are still view able , like this barred windows .", "storylet_id": "207621"}], [{"original_text": "Even thought the prison was very tall, they even put razor wire on the roof to stop prisoners from jumping off.", "album_id": "492675", "photo_flickr_id": "21156285", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "41524", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even thought the prison was very tall , they even put razor wire on the roof to stop prisoners from jumping off .", "storylet_id": "207622"}], [{"original_text": "The razor wire was super sharp, and a great deterrent.", "album_id": "492675", "photo_flickr_id": "21191842", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "41524", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the razor wire was super sharp , and a great deterrent .", "storylet_id": "207623"}], [{"original_text": "Prisoners would always think twice before trying to cross over this deadly wire.", "album_id": "492675", "photo_flickr_id": "21196728", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "41524", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "prisoners would always think twice before trying to cross over this deadly wire .", "storylet_id": "207624"}], [{"original_text": "We went to Coney Island today.", "album_id": "634575", "photo_flickr_id": "28085615", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41525", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to location location today .", "storylet_id": "207625"}], [{"original_text": "They had a boardwalk.", "album_id": "634575", "photo_flickr_id": "28086212", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41525", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a boardwalk .", "storylet_id": "207626"}], [{"original_text": "The boardwalk overlooked the lake.", "album_id": "634575", "photo_flickr_id": "28086193", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41525", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boardwalk overlooked the lake .", "storylet_id": "207627"}], [{"original_text": "We went on the quiet rides first.", "album_id": "634575", "photo_flickr_id": "28085975", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41525", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went on the quiet rides first .", "storylet_id": "207628"}], [{"original_text": "After we rode all the quiet rides, we rode the crazy ones, like this roller coaster.", "album_id": "634575", "photo_flickr_id": "28085651", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41525", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we rode all the quiet rides , we rode the crazy ones , like this roller coaster .", "storylet_id": "207629"}], [{"original_text": "Our day at Coney Island before it became no more. ", "album_id": "634575", "photo_flickr_id": "28085615", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "41526", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our day at location location before it became no more .", "storylet_id": "207630"}], [{"original_text": "The roller coaster we came for- the famous cyclone.", "album_id": "634575", "photo_flickr_id": "28085651", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "41526", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the roller coaster we came for- the famous cyclone .", "storylet_id": "207631"}], [{"original_text": "The wonder wheel made us wonder why we went on that ride. We didnt feel so good after that one.", "album_id": "634575", "photo_flickr_id": "28085751", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "41526", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the wonder wheel made us wonder why we went on that ride . we didnt feel so good after that one .", "storylet_id": "207632"}], [{"original_text": "No trip would be complete without a feris wheel ride.", "album_id": "634575", "photo_flickr_id": "28085792", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "41526", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "no trip would be complete without a feris wheel ride .", "storylet_id": "207633"}], [{"original_text": "The day ended with a walk along the beach.", "album_id": "634575", "photo_flickr_id": "28086053", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "41526", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day ended with a walk along the beach .", "storylet_id": "207634"}], [{"original_text": "I went with some friends to visit the amusement park at Coney Island.", "album_id": "634575", "photo_flickr_id": "28085615", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41527", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went with some friends to visit the amusement park at location location .", "storylet_id": "207635"}], [{"original_text": "We walked down the old boardwalk to the rides.", "album_id": "634575", "photo_flickr_id": "28086212", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41527", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we walked down the old boardwalk to the rides .", "storylet_id": "207636"}], [{"original_text": "The boardwalk juts out over the water at the pier.", "album_id": "634575", "photo_flickr_id": "28086193", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41527", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boardwalk juts out over the water at the pier .", "storylet_id": "207637"}], [{"original_text": "My friend insisted on riding the old Ferris wheel.", "album_id": "634575", "photo_flickr_id": "28085975", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41527", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friend insisted on riding the old ferris wheel .", "storylet_id": "207638"}], [{"original_text": "I was personally excited about riding the Cyclone, one of the oldest roller coasters in the world.", "album_id": "634575", "photo_flickr_id": "28085651", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41527", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was personally excited about riding the cyclone , one of the oldest roller coasters in the world .", "storylet_id": "207639"}], [{"original_text": "We went down to the amusement parks by the ocean.", "album_id": "634575", "photo_flickr_id": "28085615", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41528", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went down to the amusement parks by the ocean .", "storylet_id": "207640"}], [{"original_text": "We walked down all the boardwalks.", "album_id": "634575", "photo_flickr_id": "28086212", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41528", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we walked down all the boardwalks .", "storylet_id": "207641"}], [{"original_text": "Then we looked out into the water.", "album_id": "634575", "photo_flickr_id": "28086193", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41528", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we looked out into the water .", "storylet_id": "207642"}], [{"original_text": "After that we rode the large ferris wheel.", "album_id": "634575", "photo_flickr_id": "28085975", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41528", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that we rode the large ferris wheel .", "storylet_id": "207643"}], [{"original_text": "We ended the day by riding a scary roller coaster.", "album_id": "634575", "photo_flickr_id": "28085651", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41528", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the day by riding a scary roller coaster .", "storylet_id": "207644"}], [{"original_text": "On our first trip to New York, we had to take a day trip to Coney Island.", "album_id": "634575", "photo_flickr_id": "28085615", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "41529", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our first trip to location location , we had to take a day trip to location location .", "storylet_id": "207645"}], [{"original_text": "We had heard stories about the Cyclone for years, and wanted to experience it ourselves.", "album_id": "634575", "photo_flickr_id": "28085651", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "41529", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had heard stories about the cyclone for years , and wanted to experience it ourselves .", "storylet_id": "207646"}], [{"original_text": "The huge Wonder Wheel was our next target, and it did not disappoint.", "album_id": "634575", "photo_flickr_id": "28085751", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "41529", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the huge wonder wheel was our next target , and it did not disappoint .", "storylet_id": "207647"}], [{"original_text": "This was one of the coolest ferris wheels we had ever been on.", "album_id": "634575", "photo_flickr_id": "28085792", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "41529", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was one of the coolest ferris wheels we had ever been on .", "storylet_id": "207648"}], [{"original_text": "We ended the day with a walk on the beach beside the rides. What an awesome place.", "album_id": "634575", "photo_flickr_id": "28086053", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "41529", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the day with a walk on the beach beside the rides . what an awesome place .", "storylet_id": "207649"}], [{"original_text": "The friends gathered in a field for the annual Fourth of July fire works show.", "album_id": "688603", "photo_flickr_id": "30614545", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41530", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends gathered in a field for the annual fourth of july fire works show .", "storylet_id": "207650"}], [{"original_text": "They sat and watched as the show began.", "album_id": "688603", "photo_flickr_id": "30614674", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41530", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they sat and watched as the show began .", "storylet_id": "207651"}], [{"original_text": "Then, with loud explosions, the show started with full force.", "album_id": "688603", "photo_flickr_id": "30614796", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41530", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then , with loud explosions , the show started with full force .", "storylet_id": "207652"}], [{"original_text": "The friends were amazed by the lights.", "album_id": "688603", "photo_flickr_id": "30615139", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41530", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the friends were amazed by the lights .", "storylet_id": "207653"}], [{"original_text": "They spent the evening watching the explosions in the sky.", "album_id": "688603", "photo_flickr_id": "30615948", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41530", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they spent the evening watching the explosions in the sky .", "storylet_id": "207654"}], [{"original_text": "A crowd gathered for a fireworks display.", "album_id": "688603", "photo_flickr_id": "30614545", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "41531", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a crowd gathered for a fireworks display .", "storylet_id": "207655"}], [{"original_text": "There were classic one-color fireworks.", "album_id": "688603", "photo_flickr_id": "30614901", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "41531", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were classic one-color fireworks .", "storylet_id": "207656"}], [{"original_text": "Some fireworks were multicolored.", "album_id": "688603", "photo_flickr_id": "30615354", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "41531", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some fireworks were multicolored .", "storylet_id": "207657"}], [{"original_text": "Another set of fireworks created shapes of light, such as hearts.", "album_id": "688603", "photo_flickr_id": "30615523", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "41531", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another set of fireworks created shapes of light , such as hearts .", "storylet_id": "207658"}], [{"original_text": "The crowd enjoyed the display.", "album_id": "688603", "photo_flickr_id": "30614674", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "41531", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the crowd enjoyed the display .", "storylet_id": "207659"}], [{"original_text": "A lot of families came together to sit on the grass and watch the 4th of July fireworks.", "album_id": "688603", "photo_flickr_id": "30614545", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41532", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a lot of families came together to sit on the grass and watch the 4th of july fireworks .", "storylet_id": "207660"}], [{"original_text": "They sat together and ooh-ed and ahh-ed as the fireworks went off.", "album_id": "688603", "photo_flickr_id": "30614674", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41532", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they sat together and ooh-ed and ahh-ed as the fireworks went off .", "storylet_id": "207661"}], [{"original_text": "One firework looked just like a Christmas tree.", "album_id": "688603", "photo_flickr_id": "30614796", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41532", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one firework looked just like a christmas tree .", "storylet_id": "207662"}], [{"original_text": "Another resembled a large fiery ball as it exploded over the crowd.", "album_id": "688603", "photo_flickr_id": "30615139", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41532", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another resembled a large fiery ball as it exploded over the crowd .", "storylet_id": "207663"}], [{"original_text": "At the end, the people putting on the show shot off a lot of big ones for the finale.", "album_id": "688603", "photo_flickr_id": "30615948", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41532", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , the people putting on the show shot off a lot of big ones for the finale .", "storylet_id": "207664"}], [{"original_text": "The crowd gathered around to watch the fireworks.", "album_id": "688603", "photo_flickr_id": "30614545", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41533", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowd gathered around to watch the fireworks .", "storylet_id": "207665"}], [{"original_text": "The fireworks were large and very loud.", "album_id": "688603", "photo_flickr_id": "30614901", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41533", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fireworks were large and very loud .", "storylet_id": "207666"}], [{"original_text": "Then they had fireworks that had many colors.", "album_id": "688603", "photo_flickr_id": "30615354", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41533", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they had fireworks that had many colors .", "storylet_id": "207667"}], [{"original_text": "After that they had fireworks that were just red and blue.", "album_id": "688603", "photo_flickr_id": "30615523", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41533", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that they had fireworks that were just red and blue .", "storylet_id": "207668"}], [{"original_text": "Everyone enjoyed the fireworks.", "album_id": "688603", "photo_flickr_id": "30614674", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41533", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone enjoyed the fireworks .", "storylet_id": "207669"}], [{"original_text": "We gathered at the State park for the annual fireworks show.", "album_id": "688603", "photo_flickr_id": "30614545", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41534", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we gathered at the state park for the annual fireworks show .", "storylet_id": "207670"}], [{"original_text": "It started with a bang! Literally.", "album_id": "688603", "photo_flickr_id": "30614901", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41534", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it started with a bang ! literally .", "storylet_id": "207671"}], [{"original_text": "The show was breathtaking. The kids loved every minute.", "album_id": "688603", "photo_flickr_id": "30615354", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41534", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the show was breathtaking . the kids loved every minute .", "storylet_id": "207672"}], [{"original_text": "Is that a heart in there? I think it was supposed to be.", "album_id": "688603", "photo_flickr_id": "30615523", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41534", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "is that a heart in there ? i think it was supposed to be .", "storylet_id": "207673"}], [{"original_text": "All the oohs and aahs finally came to an end. The kids wanted more!", "album_id": "688603", "photo_flickr_id": "30614674", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41534", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the oohs and aahs finally came to an end . the kids wanted more !", "storylet_id": "207674"}], [{"original_text": "We decorated our house for Christmas the other day.", "album_id": "72157625732993716", "photo_flickr_id": "5318493048", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41535", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decorated our house for christmas the other day .", "storylet_id": "207675"}], [{"original_text": "We went all out this year and will be the most festive house in the neighborhood.", "album_id": "72157625732993716", "photo_flickr_id": "5317904267", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41535", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went all out this year and will be the most festive house in the neighborhood .", "storylet_id": "207676"}], [{"original_text": "The decorations went all around the house and all through the yard.", "album_id": "72157625732993716", "photo_flickr_id": "5318507136", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41535", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the decorations went all around the house and all through the yard .", "storylet_id": "207677"}], [{"original_text": "The noel sign was the newest decoration we had.", "album_id": "72157625732993716", "photo_flickr_id": "5318503754", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41535", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the noel sign was the newest decoration we had .", "storylet_id": "207678"}], [{"original_text": "At night with all of the lights lit up it was a merry sight.", "album_id": "72157625732993716", "photo_flickr_id": "5317900729", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41535", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night with all of the lights lit up it was a merry sight .", "storylet_id": "207679"}], [{"original_text": "It was the holiday season, and a family decided to drive to see holiday lights.", "album_id": "72157625732993716", "photo_flickr_id": "5317889331", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41536", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the holiday season , and a family decided to drive to see holiday lights .", "storylet_id": "207680"}], [{"original_text": "On their drive, they passed by a couple of neighborhoods that were run down and full of graffiti. ", "album_id": "72157625732993716", "photo_flickr_id": "5317893187", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41536", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on their drive , they passed by a couple of neighborhoods that were run down and full of graffiti .", "storylet_id": "207681"}], [{"original_text": "They arrived at their destination to see the Christmas lights.", "album_id": "72157625732993716", "photo_flickr_id": "5317904267", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41536", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they arrived at their destination to see the christmas lights .", "storylet_id": "207682"}], [{"original_text": "After looking at a few homes, they felt guilty about seeing the run down neighborhood and decided to do something about it.", "album_id": "72157625732993716", "photo_flickr_id": "5318503754", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41536", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after looking at a few homes , they felt guilty about seeing the run down neighborhood and decided to do something about it .", "storylet_id": "207683"}], [{"original_text": "They went to their local food bank and donated some food in the holiday spirit.", "album_id": "72157625732993716", "photo_flickr_id": "5318511670", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "41536", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they went to their local food bank and donated some food in the holiday spirit .", "storylet_id": "207684"}], [{"original_text": "We took our annual drive around town to see the Christmas lights.", "album_id": "72157625732993716", "photo_flickr_id": "5318493048", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41537", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took our annual drive around town to see the christmas lights .", "storylet_id": "207685"}], [{"original_text": "This house was very colorful and beautiful.", "album_id": "72157625732993716", "photo_flickr_id": "5317904267", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41537", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this house was very colorful and beautiful .", "storylet_id": "207686"}], [{"original_text": "These people went to a lot of expense and time to entertain us!", "album_id": "72157625732993716", "photo_flickr_id": "5318507136", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41537", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these people went to a lot of expense and time to entertain us !", "storylet_id": "207687"}], [{"original_text": "We always appreciate the people who decorate for our entertainment.", "album_id": "72157625732993716", "photo_flickr_id": "5318503754", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41537", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we always appreciate the people who decorate for our entertainment .", "storylet_id": "207688"}], [{"original_text": "This house is full of life, colorful and fantastic.", "album_id": "72157625732993716", "photo_flickr_id": "5317900729", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41537", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this house is full of life , colorful and fantastic .", "storylet_id": "207689"}], [{"original_text": "Their neighborhood had a house that loved to decorate for Christmas.", "album_id": "72157625732993716", "photo_flickr_id": "5318493048", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41538", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "their neighborhood had a house that loved to decorate for christmas .", "storylet_id": "207690"}], [{"original_text": "This year the owners decided to enter a contest.", "album_id": "72157625732993716", "photo_flickr_id": "5317904267", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41538", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this year the owners decided to enter a contest .", "storylet_id": "207691"}], [{"original_text": "The contest had a grand prize for the best decorated house.", "album_id": "72157625732993716", "photo_flickr_id": "5318507136", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41538", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the contest had a grand prize for the best decorated house .", "storylet_id": "207692"}], [{"original_text": "They went all out and decorated everything they could see.", "album_id": "72157625732993716", "photo_flickr_id": "5318503754", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41538", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they went all out and decorated everything they could see .", "storylet_id": "207693"}], [{"original_text": "The house ended up winning because of every little detail that was put into it.", "album_id": "72157625732993716", "photo_flickr_id": "5317900729", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41538", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the house ended up winning because of every little detail that was put into it .", "storylet_id": "207694"}], [{"original_text": "The Christmas celebration near my home was magical.", "album_id": "72157625732993716", "photo_flickr_id": "5318493048", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41539", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the christmas celebration near my home was magical .", "storylet_id": "207695"}], [{"original_text": "There were so many lights to behold.", "album_id": "72157625732993716", "photo_flickr_id": "5317904267", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41539", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many lights to behold .", "storylet_id": "207696"}], [{"original_text": "I could not stop snapping pictures.", "album_id": "72157625732993716", "photo_flickr_id": "5318507136", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41539", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i could not stop snapping pictures .", "storylet_id": "207697"}], [{"original_text": "A closeup reveals the word noel with candies all around.", "album_id": "72157625732993716", "photo_flickr_id": "5318503754", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41539", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a closeup reveals the word noel with candies all around .", "storylet_id": "207698"}], [{"original_text": "I will definitely do this again next year.", "album_id": "72157625732993716", "photo_flickr_id": "5317900729", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41539", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i will definitely do this again next year .", "storylet_id": "207699"}], [{"original_text": "Watching fireworks show for the 4th of july.", "album_id": "72157625818675128", "photo_flickr_id": "5353688906", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41540", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "watching fireworks show for the 4th of july .", "storylet_id": "207700"}], [{"original_text": "A firework going up the sky.", "album_id": "72157625818675128", "photo_flickr_id": "5353073301", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41540", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a firework going up the sky .", "storylet_id": "207701"}], [{"original_text": "This was a huge one.", "album_id": "72157625818675128", "photo_flickr_id": "5353073693", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41540", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was a huge one .", "storylet_id": "207702"}], [{"original_text": "Huge explosion over our heads.", "album_id": "72157625818675128", "photo_flickr_id": "5353694748", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41540", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "huge explosion over our heads .", "storylet_id": "207703"}], [{"original_text": "God bless America and the home of the brave.", "album_id": "72157625818675128", "photo_flickr_id": "5353071713", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41540", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "god bless location and the home of the brave .", "storylet_id": "207704"}], [{"original_text": "I was watching the fireworks last weekend.", "album_id": "72157625818675128", "photo_flickr_id": "5353686056", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41541", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was watching the fireworks last weekend .", "storylet_id": "207705"}], [{"original_text": "There were a ton of them.", "album_id": "72157625818675128", "photo_flickr_id": "5353073301", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41541", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a ton of them .", "storylet_id": "207706"}], [{"original_text": "I really enjoyed them all.", "album_id": "72157625818675128", "photo_flickr_id": "5353073693", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41541", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i really enjoyed them all .", "storylet_id": "207707"}], [{"original_text": "The pictures came out great.", "album_id": "72157625818675128", "photo_flickr_id": "5353690492", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41541", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pictures came out great .", "storylet_id": "207708"}], [{"original_text": "I can't wait for next time.", "album_id": "72157625818675128", "photo_flickr_id": "5353079039", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41541", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ca n't wait for next time .", "storylet_id": "207709"}], [{"original_text": "This was my first New Year's Eve with Elka.", "album_id": "72157625818675128", "photo_flickr_id": "5353688906", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "41542", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was my first new year 's eve with organization .", "storylet_id": "207710"}], [{"original_text": "It was amazing, and we saw so many red and white fireworks.", "album_id": "72157625818675128", "photo_flickr_id": "5353073301", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "41542", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was amazing , and we saw so many red and white fireworks .", "storylet_id": "207711"}], [{"original_text": "This year, they decided to have bigger ones than several.", "album_id": "72157625818675128", "photo_flickr_id": "5353073693", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "41542", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this year , they decided to have bigger ones than several .", "storylet_id": "207712"}], [{"original_text": "This one reminded me of a spider.", "album_id": "72157625818675128", "photo_flickr_id": "5353694748", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "41542", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one reminded me of a spider .", "storylet_id": "207713"}], [{"original_text": "This was the finale, unfortunately rain was on the way.", "album_id": "72157625818675128", "photo_flickr_id": "5353071713", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "41542", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the finale , unfortunately rain was on the way .", "storylet_id": "207714"}], [{"original_text": "The fireworks started blasting away.", "album_id": "72157625818675128", "photo_flickr_id": "5353688906", "setting": "last-3-pick-old-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "41543", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fireworks started blasting away .", "storylet_id": "207715"}], [{"original_text": "Some went high in the sky.", "album_id": "72157625818675128", "photo_flickr_id": "5353073301", "setting": "last-3-pick-old-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "41543", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some went high in the sky .", "storylet_id": "207716"}], [{"original_text": "Others blew up in a wide display.", "album_id": "72157625818675128", "photo_flickr_id": "5353073693", "setting": "last-3-pick-old-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "41543", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others blew up in a wide display .", "storylet_id": "207717"}], [{"original_text": "Some of them were gold.", "album_id": "72157625818675128", "photo_flickr_id": "5353694748", "setting": "last-3-pick-old-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "41543", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of them were gold .", "storylet_id": "207718"}], [{"original_text": "Some of them had a variety of colors.", "album_id": "72157625818675128", "photo_flickr_id": "5353071713", "setting": "last-3-pick-old-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "41543", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of them had a variety of colors .", "storylet_id": "207719"}], [{"original_text": "Fireworks and the 4th of July and it's beautiful. ", "album_id": "72157625818675128", "photo_flickr_id": "5353688906", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "41544", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "fireworks and the 4th of july and it 's beautiful .", "storylet_id": "207720"}], [{"original_text": "The different colors and shapes and sizes were amusing. ", "album_id": "72157625818675128", "photo_flickr_id": "5353073301", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "41544", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the different colors and shapes and sizes were amusing .", "storylet_id": "207721"}], [{"original_text": "This one is my favorite because of how big it was. ", "album_id": "72157625818675128", "photo_flickr_id": "5353073693", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "41544", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one is my favorite because of how big it was .", "storylet_id": "207722"}], [{"original_text": "The meaning of the fireworks are symbolic and have my respect. ", "album_id": "72157625818675128", "photo_flickr_id": "5353694748", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "41544", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the meaning of the fireworks are symbolic and have my respect .", "storylet_id": "207723"}], [{"original_text": "There was a big bang at the end and I loved it. ", "album_id": "72157625818675128", "photo_flickr_id": "5353071713", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "41544", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a big bang at the end and i loved it .", "storylet_id": "207724"}], [{"original_text": "Testing out my new Nikon camera that I got for my birthday.", "album_id": "72157625820834578", "photo_flickr_id": "5353795597", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41545", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "testing out my new organization camera that i got for my birthday .", "storylet_id": "207725"}], [{"original_text": "Shot in motion. No blur. Perfect. Color is a little off.", "album_id": "72157625820834578", "photo_flickr_id": "5353795325", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41545", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "shot in motion . no blur . perfect . color is a little off .", "storylet_id": "207726"}], [{"original_text": "Black and white feature is added on the camera.", "album_id": "72157625820834578", "photo_flickr_id": "5353795175", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41545", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "black and white feature is added on the camera .", "storylet_id": "207727"}], [{"original_text": "Timelaspe shot of people moving. Color still off.", "album_id": "72157625820834578", "photo_flickr_id": "5353795053", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41545", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "timelaspe shot of people moving . color still off .", "storylet_id": "207728"}], [{"original_text": "Close up shot of the horse. Color seems off.", "album_id": "72157625820834578", "photo_flickr_id": "5354409850", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "41545", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "close up shot of the horse . color seems off .", "storylet_id": "207729"}], [{"original_text": "Going to the horse show is an awesome experience!", "album_id": "72157625820834578", "photo_flickr_id": "5353795143", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "41546", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going to the horse show is an awesome experience !", "storylet_id": "207730"}], [{"original_text": "They are groomed to perfection.", "album_id": "72157625820834578", "photo_flickr_id": "5353795423", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "41546", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are groomed to perfection .", "storylet_id": "207731"}], [{"original_text": "Then perform there finest tricks.", "album_id": "72157625820834578", "photo_flickr_id": "5353795457", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "41546", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then perform there finest tricks .", "storylet_id": "207732"}], [{"original_text": "The power when they are jumping is amazing.", "album_id": "72157625820834578", "photo_flickr_id": "5353794979", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "41546", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the power when they are jumping is amazing .", "storylet_id": "207733"}], [{"original_text": "There is no more noble creature on earth than the horse.", "album_id": "72157625820834578", "photo_flickr_id": "5354409850", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "41546", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is no more noble creature on earth than the horse .", "storylet_id": "207734"}], [{"original_text": "Many people were helping cleanup in preparation for the horse riding competition.", "album_id": "72157625820834578", "photo_flickr_id": "5353795597", "setting": "last-3-pick-old-and-tell", "worker_id": "X5LAJG4V0KRODQZ", "story_id": "41547", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people were helping cleanup in preparation for the horse riding competition .", "storylet_id": "207735"}], [{"original_text": "The rider started the competition with a bang by jumping over the hurdles with his horse easily.", "album_id": "72157625820834578", "photo_flickr_id": "5353795325", "setting": "last-3-pick-old-and-tell", "worker_id": "X5LAJG4V0KRODQZ", "story_id": "41547", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rider started the competition with a bang by jumping over the hurdles with his horse easily .", "storylet_id": "207736"}], [{"original_text": "He ended up winning the competition.", "album_id": "72157625820834578", "photo_flickr_id": "5353795175", "setting": "last-3-pick-old-and-tell", "worker_id": "X5LAJG4V0KRODQZ", "story_id": "41547", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he ended up winning the competition .", "storylet_id": "207737"}], [{"original_text": "The owner went to see the horse to check up on it.", "album_id": "72157625820834578", "photo_flickr_id": "5353795053", "setting": "last-3-pick-old-and-tell", "worker_id": "X5LAJG4V0KRODQZ", "story_id": "41547", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the owner went to see the horse to check up on it .", "storylet_id": "207738"}], [{"original_text": "Looking majestic, the horse posed for the camera.", "album_id": "72157625820834578", "photo_flickr_id": "5354409850", "setting": "last-3-pick-old-and-tell", "worker_id": "X5LAJG4V0KRODQZ", "story_id": "41547", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "looking majestic , the horse posed for the camera .", "storylet_id": "207739"}], [{"original_text": "We prepared for the big equestrian event today.", "album_id": "72157625820834578", "photo_flickr_id": "5353795597", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "41548", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we prepared for the big equestrian event today .", "storylet_id": "207740"}], [{"original_text": "The horses were really amazing, running through the course with ease.", "album_id": "72157625820834578", "photo_flickr_id": "5353795325", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "41548", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the horses were really amazing , running through the course with ease .", "storylet_id": "207741"}], [{"original_text": "Here is one of the competitors just before it's his turn.", "album_id": "72157625820834578", "photo_flickr_id": "5353795175", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "41548", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is one of the competitors just before it 's his turn .", "storylet_id": "207742"}], [{"original_text": "Everyone had a really great time at the event.", "album_id": "72157625820834578", "photo_flickr_id": "5353795053", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "41548", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone had a really great time at the event .", "storylet_id": "207743"}], [{"original_text": "This is the horse that won the event. He was a really nice horse!", "album_id": "72157625820834578", "photo_flickr_id": "5354409850", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "41548", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the horse that won the event . he was a really nice horse !", "storylet_id": "207744"}], [{"original_text": "I am tasked with cleaning the track before one of the biggest horse races in the world, The Kentucky Derby.", "album_id": "72157625820834578", "photo_flickr_id": "5353795597", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "41549", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am tasked with cleaning the track before one of the biggest horse races in the world , the kentucky derby .", "storylet_id": "207745"}], [{"original_text": "This year's Derby had some events that I hadn't seen before, like the hurdles. ", "album_id": "72157625820834578", "photo_flickr_id": "5353795325", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "41549", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this year 's location had some events that i had n't seen before , like the hurdles .", "storylet_id": "207746"}], [{"original_text": "This horse, Fireball, was my favorite, even though she didn't really live up to her name.", "album_id": "72157625820834578", "photo_flickr_id": "5353795175", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "41549", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this horse , fireball , was my favorite , even though she did n't really live up to her name .", "storylet_id": "207747"}], [{"original_text": "After the big race we walked over to the infield to meet some of the horses and their jockeys. ", "album_id": "72157625820834578", "photo_flickr_id": "5353795053", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "41549", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the big race we walked over to the infield to meet some of the horses and their jockeys .", "storylet_id": "207748"}], [{"original_text": "It was there that I got to come face-to-face with Fireball.", "album_id": "72157625820834578", "photo_flickr_id": "5354409850", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "41549", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was there that i got to come face-to-face with fireball .", "storylet_id": "207749"}], [{"original_text": "The performers were ready to rock it out that night at the concert.", "album_id": "72157625821127582", "photo_flickr_id": "5354501082", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41550", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the performers were ready to rock it out that night at the concert .", "storylet_id": "207750"}], [{"original_text": "The man is seen getting ready to start the music.", "album_id": "72157625821127582", "photo_flickr_id": "5354501188", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41550", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man is seen getting ready to start the music .", "storylet_id": "207751"}], [{"original_text": "The man is focused intensely on playing the right beats.", "album_id": "72157625821127582", "photo_flickr_id": "5353886733", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41550", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man is focused intensely on playing the right beats .", "storylet_id": "207752"}], [{"original_text": "The man is seen performing to the crowd in his hat.", "album_id": "72157625821127582", "photo_flickr_id": "5354501610", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41550", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man is seen performing to the crowd in his hat .", "storylet_id": "207753"}], [{"original_text": "The backup vocal man is seen performing to the crowd.", "album_id": "72157625821127582", "photo_flickr_id": "5354501722", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41550", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the backup vocal man is seen performing to the crowd .", "storylet_id": "207754"}], [{"original_text": "I had never been to an EDM concert before, and I finally got my chance Friday night. ", "album_id": "72157625821127582", "photo_flickr_id": "5354501082", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "41551", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had never been to an edm concert before , and i finally got my chance friday night .", "storylet_id": "207755"}], [{"original_text": "DJ LowBlow was there and started everything off. ", "album_id": "72157625821127582", "photo_flickr_id": "5354501134", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "41551", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dj lowblow was there and started everything off .", "storylet_id": "207756"}], [{"original_text": "After his set, DJ Jackknife took over and really got the crowd going. ", "album_id": "72157625821127582", "photo_flickr_id": "5354501490", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "41551", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after his set , dj jackknife took over and really got the crowd going .", "storylet_id": "207757"}], [{"original_text": "But everyone was waiting for DJ Belladona who took the place by storm. ", "album_id": "72157625821127582", "photo_flickr_id": "5354502038", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "41551", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but everyone was waiting for dj belladona who took the place by storm .", "storylet_id": "207758"}], [{"original_text": "He was so good that I knew this would not be my last EDM event by a longshot. ", "album_id": "72157625821127582", "photo_flickr_id": "5354502164", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "41551", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was so good that i knew this would not be my last edm event by a longshot .", "storylet_id": "207759"}], [{"original_text": "The concert was great.", "album_id": "72157625821127582", "photo_flickr_id": "5354501082", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41552", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the concert was great .", "storylet_id": "207760"}], [{"original_text": "DJ Phat played a great set.", "album_id": "72157625821127582", "photo_flickr_id": "5354501188", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41552", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dj phat played a great set .", "storylet_id": "207761"}], [{"original_text": "He then threw on a record and the rappers came up on stage.", "album_id": "72157625821127582", "photo_flickr_id": "5353886733", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41552", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he then threw on a record and the rappers came up on stage .", "storylet_id": "207762"}], [{"original_text": "The first one was one of the Originators.", "album_id": "72157625821127582", "photo_flickr_id": "5354501610", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41552", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the first one was one of the originators .", "storylet_id": "207763"}], [{"original_text": "They kept it real and kept the energy up all night long.", "album_id": "72157625821127582", "photo_flickr_id": "5354501722", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41552", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they kept it real and kept the energy up all night long .", "storylet_id": "207764"}], [{"original_text": "The DJ is prepping his tables.", "album_id": "72157625821127582", "photo_flickr_id": "5354501082", "setting": "last-3-pick-old-and-tell", "worker_id": "S15C3ARCL11LCHI", "story_id": "41553", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dj is prepping his tables .", "storylet_id": "207765"}], [{"original_text": "Now he is testing his mics.", "album_id": "72157625821127582", "photo_flickr_id": "5354501188", "setting": "last-3-pick-old-and-tell", "worker_id": "S15C3ARCL11LCHI", "story_id": "41553", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "now he is testing his mics .", "storylet_id": "207766"}], [{"original_text": "Looks like his headphones are ready to go.", "album_id": "72157625821127582", "photo_flickr_id": "5353886733", "setting": "last-3-pick-old-and-tell", "worker_id": "S15C3ARCL11LCHI", "story_id": "41553", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looks like his headphones are ready to go .", "storylet_id": "207767"}], [{"original_text": "The first act takes the stage.", "album_id": "72157625821127582", "photo_flickr_id": "5354501610", "setting": "last-3-pick-old-and-tell", "worker_id": "S15C3ARCL11LCHI", "story_id": "41553", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the first act takes the stage .", "storylet_id": "207768"}], [{"original_text": "The backup singer sounds great!", "album_id": "72157625821127582", "photo_flickr_id": "5354501722", "setting": "last-3-pick-old-and-tell", "worker_id": "S15C3ARCL11LCHI", "story_id": "41553", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the backup singer sounds great !", "storylet_id": "207769"}], [{"original_text": "We got to the show and the music began.", "album_id": "72157625821127582", "photo_flickr_id": "5354501082", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41554", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got to the show and the music began .", "storylet_id": "207770"}], [{"original_text": "The DJ's there where awesome.", "album_id": "72157625821127582", "photo_flickr_id": "5354501134", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41554", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dj 's there where awesome .", "storylet_id": "207771"}], [{"original_text": "There where a bunch of them, all going on after the other.", "album_id": "72157625821127582", "photo_flickr_id": "5354501490", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41554", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there where a bunch of them , all going on after the other .", "storylet_id": "207772"}], [{"original_text": "It was crazy and fun.", "album_id": "72157625821127582", "photo_flickr_id": "5354502038", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41554", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was crazy and fun .", "storylet_id": "207773"}], [{"original_text": "The show ended with famous DJ's before calling it a night.", "album_id": "72157625821127582", "photo_flickr_id": "5354502164", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41554", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the show ended with famous dj 's before calling it a night .", "storylet_id": "207774"}], [{"original_text": "I celebrated our national pride day this weekend.", "album_id": "72157625843862492", "photo_flickr_id": "5363216663", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "41555", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i celebrated our national pride day this weekend .", "storylet_id": "207775"}], [{"original_text": "We marched from our local community til we reached donwtown.", "album_id": "72157625843862492", "photo_flickr_id": "5363829128", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "41555", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we marched from our local community til we reached donwtown .", "storylet_id": "207776"}], [{"original_text": "We ended at the local outdoor theatre.", "album_id": "72157625843862492", "photo_flickr_id": "5363830540", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "41555", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we ended at the local outdoor theatre .", "storylet_id": "207777"}], [{"original_text": "We were joined by almost eveyone in the community.", "album_id": "72157625843862492", "photo_flickr_id": "5363831008", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "41555", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were joined by almost eveyone in the community .", "storylet_id": "207778"}], [{"original_text": "We then got to enjoy a concert that was by a local band that was enjoyed by all.", "album_id": "72157625843862492", "photo_flickr_id": "5363221945", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "41555", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we then got to enjoy a concert that was by a local band that was enjoyed by all .", "storylet_id": "207779"}], [{"original_text": "Preparing the buses to bring the fans to the concert.. ", "album_id": "72157625843862492", "photo_flickr_id": "5363215827", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41556", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "preparing the buses to bring the fans to the concert..", "storylet_id": "207780"}], [{"original_text": "Already getting in long lines. ", "album_id": "72157625843862492", "photo_flickr_id": "5363215505", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41556", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "already getting in long lines .", "storylet_id": "207781"}], [{"original_text": "Arriving with the flags waving in the air. ", "album_id": "72157625843862492", "photo_flickr_id": "5363216663", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41556", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "arriving with the flags waving in the air .", "storylet_id": "207782"}], [{"original_text": "Pinas el oro in Ecuador. ", "album_id": "72157625843862492", "photo_flickr_id": "5363833494", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41556", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "pinas el oro in location .", "storylet_id": "207783"}], [{"original_text": "Waiting for the concert to start.", "album_id": "72157625843862492", "photo_flickr_id": "5363221945", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41556", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "waiting for the concert to start .", "storylet_id": "207784"}], [{"original_text": "The crowd headed down to the stadium.", "album_id": "72157625843862492", "photo_flickr_id": "5363216663", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "41557", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowd headed down to the stadium .", "storylet_id": "207785"}], [{"original_text": "They held flags and signs. They were so excited!", "album_id": "72157625843862492", "photo_flickr_id": "5363829128", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "41557", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they held flags and signs . they were so excited !", "storylet_id": "207786"}], [{"original_text": "The stadium was packed.", "album_id": "72157625843862492", "photo_flickr_id": "5363830540", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "41557", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the stadium was packed .", "storylet_id": "207787"}], [{"original_text": "The stands were full of supporters.", "album_id": "72157625843862492", "photo_flickr_id": "5363831008", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "41557", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the stands were full of supporters .", "storylet_id": "207788"}], [{"original_text": "It was a great show of support.", "album_id": "72157625843862492", "photo_flickr_id": "5363221945", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "41557", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great show of support .", "storylet_id": "207789"}], [{"original_text": "These were some shots I grabbed during a parade. ", "album_id": "72157625843862492", "photo_flickr_id": "5363216663", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "41558", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these were some shots i grabbed during a parade .", "storylet_id": "207790"}], [{"original_text": "The people in the city looked so happy.", "album_id": "72157625843862492", "photo_flickr_id": "5363829128", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "41558", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the people in the city looked so happy .", "storylet_id": "207791"}], [{"original_text": "Everyone getting wet by the hoses. It felt great in the hot weather.", "album_id": "72157625843862492", "photo_flickr_id": "5363830540", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "41558", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone getting wet by the hoses . it felt great in the hot weather .", "storylet_id": "207792"}], [{"original_text": "The signs were really inspirational. ", "album_id": "72157625843862492", "photo_flickr_id": "5363831008", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "41558", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the signs were really inspirational .", "storylet_id": "207793"}], [{"original_text": "The game is ready to begin!", "album_id": "72157625843862492", "photo_flickr_id": "5363221945", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "41558", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the game is ready to begin !", "storylet_id": "207794"}], [{"original_text": "We were on the bus and ready to have some fun!", "album_id": "72157625843862492", "photo_flickr_id": "5363215827", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41559", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were on the bus and ready to have some fun !", "storylet_id": "207795"}], [{"original_text": "We waited in line, but only for a little while!", "album_id": "72157625843862492", "photo_flickr_id": "5363215505", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41559", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we waited in line , but only for a little while !", "storylet_id": "207796"}], [{"original_text": "It was time to go and enjoy ourselves!", "album_id": "72157625843862492", "photo_flickr_id": "5363216663", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41559", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was time to go and enjoy ourselves !", "storylet_id": "207797"}], [{"original_text": "While in the stadium, we gazed at all of the awesome sites!", "album_id": "72157625843862492", "photo_flickr_id": "5363833494", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41559", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while in the stadium , we gazed at all of the awesome sites !", "storylet_id": "207798"}], [{"original_text": "The field was huge and beautiful! We had fun!", "album_id": "72157625843862492", "photo_flickr_id": "5363221945", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "41559", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the field was huge and beautiful ! we had fun !", "storylet_id": "207799"}], [{"original_text": "I searched online for a antique store who offered a variety of items. ", "album_id": "72157625849089400", "photo_flickr_id": "5365138641", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41560", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i searched online for a antique store who offered a variety of items .", "storylet_id": "207800"}], [{"original_text": "the online site boasted about vintage oil cans from many different manufactures. ", "album_id": "72157625849089400", "photo_flickr_id": "5365138745", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41560", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the online site boasted about vintage oil cans from many different manufactures .", "storylet_id": "207801"}], [{"original_text": "Newspaper's were distributed in several types of machines. ", "album_id": "72157625849089400", "photo_flickr_id": "5365752360", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41560", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "newspaper 's were distributed in several types of machines .", "storylet_id": "207802"}], [{"original_text": "This place had assortments of fans that you could get parts that no one else would carry. ", "album_id": "72157625849089400", "photo_flickr_id": "5365140653", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41560", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this place had assortments of fans that you could get parts that no one else would carry .", "storylet_id": "207803"}], [{"original_text": "When I saw this collection of phones, I found out that my family owns this place.", "album_id": "72157625849089400", "photo_flickr_id": "5365142537", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41560", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when i saw this collection of phones , i found out that my family owns this place .", "storylet_id": "207804"}], [{"original_text": "Mike visits an antiques shop.", "album_id": "72157625849089400", "photo_flickr_id": "5365751090", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "41561", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] visits an antiques shop .", "storylet_id": "207805"}], [{"original_text": "He finds some old signs and stuff.", "album_id": "72157625849089400", "photo_flickr_id": "5365753640", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "41561", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he finds some old signs and stuff .", "storylet_id": "207806"}], [{"original_text": "He glances over and sees some typewriters that he really likes.", "album_id": "72157625849089400", "photo_flickr_id": "5365141783", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "41561", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he glances over and sees some typewriters that he really likes .", "storylet_id": "207807"}], [{"original_text": "Continuing to look around at the typewriters he is debating weather to buy one or not. ", "album_id": "72157625849089400", "photo_flickr_id": "5365755238", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "41561", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "continuing to look around at the typewriters he is debating weather to buy one or not .", "storylet_id": "207808"}], [{"original_text": "He quickly learns that none of the items are for sale and it makes him really sad.", "album_id": "72157625849089400", "photo_flickr_id": "5365143123", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "41561", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he quickly learns that none of the items are for sale and it makes him really sad .", "storylet_id": "207809"}], [{"original_text": "Look what I have found at the Collectors Place !!! 1930's casino machines !!!", "album_id": "72157625849089400", "photo_flickr_id": "5365138641", "setting": "last-3-pick-old-and-tell", "worker_id": "UVYNJHEUTKWXWUX", "story_id": "41562", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "look what i have found at the collectors place ! ! ! 1930 's casino machines ! ! !", "storylet_id": "207810"}], [{"original_text": "There were some old signs in one corner. ", "album_id": "72157625849089400", "photo_flickr_id": "5365138745", "setting": "last-3-pick-old-and-tell", "worker_id": "UVYNJHEUTKWXWUX", "story_id": "41562", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were some old signs in one corner .", "storylet_id": "207811"}], [{"original_text": "Old newspaper vending machines were also there at this place. ", "album_id": "72157625849089400", "photo_flickr_id": "5365752360", "setting": "last-3-pick-old-and-tell", "worker_id": "UVYNJHEUTKWXWUX", "story_id": "41562", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "old newspaper vending machines were also there at this place .", "storylet_id": "207812"}], [{"original_text": "A huge collection of table fans from 1920-1980 was amazing. ", "album_id": "72157625849089400", "photo_flickr_id": "5365140653", "setting": "last-3-pick-old-and-tell", "worker_id": "UVYNJHEUTKWXWUX", "story_id": "41562", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a huge collection of table fans from 1920-1980 was amazing .", "storylet_id": "207813"}], [{"original_text": "This place also has rotary dial phones collected over past 45 years. ", "album_id": "72157625849089400", "photo_flickr_id": "5365142537", "setting": "last-3-pick-old-and-tell", "worker_id": "UVYNJHEUTKWXWUX", "story_id": "41562", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this place also has rotary dial phones collected over past 45 years .", "storylet_id": "207814"}], [{"original_text": "Upon looking to buy some old items, we found some old roulette wheels.", "album_id": "72157625849089400", "photo_flickr_id": "5365138641", "setting": "last-3-pick-old-and-tell", "worker_id": "SYJ9961L6Z9A7EQ", "story_id": "41563", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "upon looking to buy some old items , we found some old roulette wheels .", "storylet_id": "207815"}], [{"original_text": "Then we saw a bunch of junk and small bottles.", "album_id": "72157625849089400", "photo_flickr_id": "5365138745", "setting": "last-3-pick-old-and-tell", "worker_id": "SYJ9961L6Z9A7EQ", "story_id": "41563", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we saw a bunch of junk and small bottles .", "storylet_id": "207816"}], [{"original_text": "My favorite part was the old newspaper boxes.", "album_id": "72157625849089400", "photo_flickr_id": "5365752360", "setting": "last-3-pick-old-and-tell", "worker_id": "SYJ9961L6Z9A7EQ", "story_id": "41563", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my favorite part was the old newspaper boxes .", "storylet_id": "207817"}], [{"original_text": "And the old fans were pretty cool; too bad most did not work.", "album_id": "72157625849089400", "photo_flickr_id": "5365140653", "setting": "last-3-pick-old-and-tell", "worker_id": "SYJ9961L6Z9A7EQ", "story_id": "41563", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the old fans were pretty cool ; too bad most did not work .", "storylet_id": "207818"}], [{"original_text": "Last but not least, I was told all of the phones were hooked up to ring at once!", "album_id": "72157625849089400", "photo_flickr_id": "5365142537", "setting": "last-3-pick-old-and-tell", "worker_id": "SYJ9961L6Z9A7EQ", "story_id": "41563", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last but not least , i was told all of the phones were hooked up to ring at once !", "storylet_id": "207819"}], [{"original_text": "We visited an antique shop jam packed with historical items.", "album_id": "72157625849089400", "photo_flickr_id": "5365138641", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41564", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited an antique shop jam packed with historical items .", "storylet_id": "207820"}], [{"original_text": "I love Americana and they had it all.", "album_id": "72157625849089400", "photo_flickr_id": "5365138745", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41564", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love americana and they had it all .", "storylet_id": "207821"}], [{"original_text": "They even had a newspaper dispenser from decades ago.", "album_id": "72157625849089400", "photo_flickr_id": "5365752360", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41564", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even had a newspaper dispenser from decades ago .", "storylet_id": "207822"}], [{"original_text": "Rows and rows of shelves with so many things.", "album_id": "72157625849089400", "photo_flickr_id": "5365140653", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41564", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "rows and rows of shelves with so many things .", "storylet_id": "207823"}], [{"original_text": "I remember rotary phones. I guess that means I'm old.", "album_id": "72157625849089400", "photo_flickr_id": "5365142537", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41564", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i remember rotary phones . i guess that means i 'm old .", "storylet_id": "207824"}], [{"original_text": "It is great to take a vacation to Macau!", "album_id": "72157625778278283", "photo_flickr_id": "5387123209", "setting": "first-2-pick-and-tell", "worker_id": "8B7LUW8D5TRK1OJ", "story_id": "41565", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is great to take a vacation to location !", "storylet_id": "207825"}], [{"original_text": "Casino Lisboa is really great if you don't mind losing a little money.", "album_id": "72157625778278283", "photo_flickr_id": "5389811553", "setting": "first-2-pick-and-tell", "worker_id": "8B7LUW8D5TRK1OJ", "story_id": "41565", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "casino lisboa is really great if you do n't mind losing a little money .", "storylet_id": "207826"}], [{"original_text": "Lots of tourists love come to see this pool. The lights look great.", "album_id": "72157625778278283", "photo_flickr_id": "5389812795", "setting": "first-2-pick-and-tell", "worker_id": "8B7LUW8D5TRK1OJ", "story_id": "41565", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lots of tourists love come to see this pool . the lights look great .", "storylet_id": "207827"}], [{"original_text": "This is one of the best bakeries in Macau.", "album_id": "72157625778278283", "photo_flickr_id": "5390422194", "setting": "first-2-pick-and-tell", "worker_id": "8B7LUW8D5TRK1OJ", "story_id": "41565", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is one of the best bakeries in location .", "storylet_id": "207828"}], [{"original_text": "Three slices of cheese cake. Better have a strong stomach if you plan on eating all of it.", "album_id": "72157625778278283", "photo_flickr_id": "5389815921", "setting": "first-2-pick-and-tell", "worker_id": "8B7LUW8D5TRK1OJ", "story_id": "41565", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "three slices of cheese cake . better have a strong stomach if you plan on eating all of it .", "storylet_id": "207829"}], [{"original_text": "The entrance way to the building on the hill with many rocks.", "album_id": "72157625778278283", "photo_flickr_id": "5387726188", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41566", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the entrance way to the building on the hill with many rocks .", "storylet_id": "207830"}], [{"original_text": "Here I am in front of the city skylines on a cold day.", "album_id": "72157625778278283", "photo_flickr_id": "5387123209", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41566", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here i am in front of the city skylines on a cold day .", "storylet_id": "207831"}], [{"original_text": "The building reflected magically off the sky.", "album_id": "72157625778278283", "photo_flickr_id": "5390416998", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41566", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the building reflected magically off the sky .", "storylet_id": "207832"}], [{"original_text": "The Casino Lisbon lit up at night was beautiful.", "album_id": "72157625778278283", "photo_flickr_id": "5389811553", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41566", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the casino location lit up at night was beautiful .", "storylet_id": "207833"}], [{"original_text": "The lit up building is a beautiful piece of architecture.", "album_id": "72157625778278283", "photo_flickr_id": "5390418934", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41566", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lit up building is a beautiful piece of architecture .", "storylet_id": "207834"}], [{"original_text": "We had great fun on our walking tour around the city.", "album_id": "72157625778278283", "photo_flickr_id": "5387726188", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41567", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had great fun on our walking tour around the city .", "storylet_id": "207835"}], [{"original_text": "My husband loved this shot with the cityscape behind him.", "album_id": "72157625778278283", "photo_flickr_id": "5387123209", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41567", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my husband loved this shot with the cityscape behind him .", "storylet_id": "207836"}], [{"original_text": "The architecture here is wonderful and glows in the soft sunlight.", "album_id": "72157625778278283", "photo_flickr_id": "5390416998", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41567", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the architecture here is wonderful and glows in the soft sunlight .", "storylet_id": "207837"}], [{"original_text": "The lights at night turn the city into a fun colorful place.", "album_id": "72157625778278283", "photo_flickr_id": "5389811553", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41567", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lights at night turn the city into a fun colorful place .", "storylet_id": "207838"}], [{"original_text": "The new architecture here is also a sight to see, with its great form and color.", "album_id": "72157625778278283", "photo_flickr_id": "5390418934", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41567", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the new architecture here is also a sight to see , with its great form and color .", "storylet_id": "207839"}], [{"original_text": "Wow, what a great place he told them. ", "album_id": "72157625778278283", "photo_flickr_id": "5387123209", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41568", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "wow , what a great place he told them .", "storylet_id": "207840"}], [{"original_text": "Casino'. ", "album_id": "72157625778278283", "photo_flickr_id": "5389811553", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41568", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "casino ' .", "storylet_id": "207841"}], [{"original_text": "Live entertainment. ", "album_id": "72157625778278283", "photo_flickr_id": "5389812795", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41568", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "live entertainment .", "storylet_id": "207842"}], [{"original_text": "Excellent libraries. ", "album_id": "72157625778278283", "photo_flickr_id": "5390422194", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41568", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "excellent libraries .", "storylet_id": "207843"}], [{"original_text": "And exotic foods. ", "album_id": "72157625778278283", "photo_flickr_id": "5389815921", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41568", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and exotic foods .", "storylet_id": "207844"}], [{"original_text": "The building was dirty", "album_id": "72157625778278283", "photo_flickr_id": "5387726188", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41569", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the building was dirty", "storylet_id": "207845"}], [{"original_text": "but the guy took a photo near it.", "album_id": "72157625778278283", "photo_flickr_id": "5387123209", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41569", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but the guy took a photo near it .", "storylet_id": "207846"}], [{"original_text": "The hotel was large", "album_id": "72157625778278283", "photo_flickr_id": "5390416998", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41569", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the hotel was large", "storylet_id": "207847"}], [{"original_text": "and had a casino", "album_id": "72157625778278283", "photo_flickr_id": "5389811553", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41569", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and had a casino", "storylet_id": "207848"}], [{"original_text": "that had pretty lights.", "album_id": "72157625778278283", "photo_flickr_id": "5390418934", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41569", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that had pretty lights .", "storylet_id": "207849"}], [{"original_text": "China may be a mysterious, beautiful place, but it is also fun to shop there, and we do. ", "album_id": "72157625909589808", "photo_flickr_id": "5390091900", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "41570", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location may be a mysterious , beautiful place , but it is also fun to shop there , and we do .", "storylet_id": "207850"}], [{"original_text": "You see signs everywhere in English which really helps us out a lot. ", "album_id": "72157625909589808", "photo_flickr_id": "5389486897", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "41570", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you see signs everywhere in english which really helps us out a lot .", "storylet_id": "207851"}], [{"original_text": "Betty bought almost an entire rack of dresses and we all had to carry them. ", "album_id": "72157625909589808", "photo_flickr_id": "5389487009", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "41570", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] bought almost an entire rack of dresses and we all had to carry them .", "storylet_id": "207852"}], [{"original_text": "And I was kind of amazed to see Sponge Bob in amongst the charter balloons. ", "album_id": "72157625909589808", "photo_flickr_id": "5389487079", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "41570", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and i was kind of amazed to see sponge [male] in amongst the charter balloons .", "storylet_id": "207853"}], [{"original_text": "We even bought some cool Chinese pepper ornaments for the tree back home. ", "album_id": "72157625909589808", "photo_flickr_id": "5390092272", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "41570", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even bought some cool chinese pepper ornaments for the tree back home .", "storylet_id": "207854"}], [{"original_text": "China town has many different things happening.", "album_id": "72157625909589808", "photo_flickr_id": "5390092214", "setting": "first-2-pick-and-tell", "worker_id": "UP4AC6DLAW47K0H", "story_id": "41571", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location town has many different things happening .", "storylet_id": "207855"}], [{"original_text": "Funny balloons with cartoons on them.", "album_id": "72157625909589808", "photo_flickr_id": "5389487079", "setting": "first-2-pick-and-tell", "worker_id": "UP4AC6DLAW47K0H", "story_id": "41571", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "funny balloons with cartoons on them .", "storylet_id": "207856"}], [{"original_text": "Great black and white pictures.", "album_id": "72157625909589808", "photo_flickr_id": "5389487239", "setting": "first-2-pick-and-tell", "worker_id": "UP4AC6DLAW47K0H", "story_id": "41571", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "great black and white pictures .", "storylet_id": "207857"}], [{"original_text": "Places to worship.", "album_id": "72157625909589808", "photo_flickr_id": "5390092436", "setting": "first-2-pick-and-tell", "worker_id": "UP4AC6DLAW47K0H", "story_id": "41571", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "places to worship .", "storylet_id": "207858"}], [{"original_text": "And a exciting nightlife.", "album_id": "72157625909589808", "photo_flickr_id": "5389487985", "setting": "first-2-pick-and-tell", "worker_id": "UP4AC6DLAW47K0H", "story_id": "41571", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and a exciting nightlife .", "storylet_id": "207859"}], [{"original_text": "I have never been to a Chinese market before.", "album_id": "72157625909589808", "photo_flickr_id": "5390091900", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "41572", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have never been to a chinese market before .", "storylet_id": "207860"}], [{"original_text": "Everything looked like it was on sale that I could see.", "album_id": "72157625909589808", "photo_flickr_id": "5389486897", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "41572", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything looked like it was on sale that i could see .", "storylet_id": "207861"}], [{"original_text": "Look at these beautiful dresses.", "album_id": "72157625909589808", "photo_flickr_id": "5389487009", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "41572", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at these beautiful dresses .", "storylet_id": "207862"}], [{"original_text": "And here's some eternal balloons. They never go flag.", "album_id": "72157625909589808", "photo_flickr_id": "5389487079", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "41572", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and here 's some eternal balloons . they never go flag .", "storylet_id": "207863"}], [{"original_text": "These are ribbons for hair. I bought 100 of them in different colors.", "album_id": "72157625909589808", "photo_flickr_id": "5390092272", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "41572", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these are ribbons for hair . i bought 100 of them in different colors .", "storylet_id": "207864"}], [{"original_text": "There are a lot of shops on this street.", "album_id": "72157625909589808", "photo_flickr_id": "5390091900", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41573", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are a lot of shops on this street .", "storylet_id": "207865"}], [{"original_text": "People sell good of all kinds to people visiting the city.", "album_id": "72157625909589808", "photo_flickr_id": "5389486897", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41573", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people sell good of all kinds to people visiting the city .", "storylet_id": "207866"}], [{"original_text": "You can even buy dresses.", "album_id": "72157625909589808", "photo_flickr_id": "5389487009", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41573", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you can even buy dresses .", "storylet_id": "207867"}], [{"original_text": "These balloons are popular with kids.", "album_id": "72157625909589808", "photo_flickr_id": "5389487079", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41573", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these balloons are popular with kids .", "storylet_id": "207868"}], [{"original_text": "The main street shops are a great way for the locals for make money.", "album_id": "72157625909589808", "photo_flickr_id": "5390092272", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41573", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the main street shops are a great way for the locals for make money .", "storylet_id": "207869"}], [{"original_text": "We finally found the marketplace in Asia were had heard about.", "album_id": "72157625909589808", "photo_flickr_id": "5390091900", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41574", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we finally found the marketplace in location were had heard about .", "storylet_id": "207870"}], [{"original_text": "I can't travel anywhere without doing some shopping.", "album_id": "72157625909589808", "photo_flickr_id": "5389486897", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41574", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i ca n't travel anywhere without doing some shopping .", "storylet_id": "207871"}], [{"original_text": "The clothes were so beautiful, I couldn't resist making a purchase.", "album_id": "72157625909589808", "photo_flickr_id": "5389487009", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41574", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the clothes were so beautiful , i could n't resist making a purchase .", "storylet_id": "207872"}], [{"original_text": "I was tempted to buy gifts for all my nieces and nephews.", "album_id": "72157625909589808", "photo_flickr_id": "5389487079", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41574", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was tempted to buy gifts for all my nieces and nephews .", "storylet_id": "207873"}], [{"original_text": "But didn't want to carry too much on the plane trip home.", "album_id": "72157625909589808", "photo_flickr_id": "5390092272", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41574", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but did n't want to carry too much on the plane trip home .", "storylet_id": "207874"}], [{"original_text": "Everyone was at the big premiere!", "album_id": "72157628848654209", "photo_flickr_id": "6688731477", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41575", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was at the big premiere !", "storylet_id": "207875"}], [{"original_text": "Like this guy in the black jacket.", "album_id": "72157628848654209", "photo_flickr_id": "6688731753", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41575", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "like this guy in the black jacket .", "storylet_id": "207876"}], [{"original_text": "And this hottie in purple.", "album_id": "72157628848654209", "photo_flickr_id": "6688731665", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41575", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and this hottie in purple .", "storylet_id": "207877"}], [{"original_text": "Not to mention the girl in green.", "album_id": "72157628848654209", "photo_flickr_id": "6688732151", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41575", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "not to mention the girl in green .", "storylet_id": "207878"}], [{"original_text": "And these two fools showed up too.", "album_id": "72157628848654209", "photo_flickr_id": "6688731893", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41575", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and these two fools showed up too .", "storylet_id": "207879"}], [{"original_text": "The award show tonight showed us some of the best and worst fashions of the year; many women preferred sheer clothing.", "album_id": "72157628848654209", "photo_flickr_id": "6688731665", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41576", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the award show tonight showed us some of the best and worst fashions of the year ; many women preferred sheer clothing .", "storylet_id": "207880"}], [{"original_text": "Some of the men showed up dressed very casually.", "album_id": "72157628848654209", "photo_flickr_id": "6688731893", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41576", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the men showed up dressed very casually .", "storylet_id": "207881"}], [{"original_text": "Tight and sleek was another favorable option that many women chose.", "album_id": "72157628848654209", "photo_flickr_id": "6688731971", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41576", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "tight and sleek was another favorable option that many women chose .", "storylet_id": "207882"}], [{"original_text": "Many of the men still preferred to dress nice yet casual.", "album_id": "72157628848654209", "photo_flickr_id": "6688731219", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41576", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many of the men still preferred to dress nice yet casual .", "storylet_id": "207883"}], [{"original_text": "Very few men wore ties, preferring the casualness of a jacket over a solid colored tee shirt.", "album_id": "72157628848654209", "photo_flickr_id": "6688731563", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41576", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "very few men wore ties , preferring the casualness of a jacket over a solid colored tee shirt .", "storylet_id": "207884"}], [{"original_text": "For this event she chose the perfect dress.", "album_id": "72157628848654209", "photo_flickr_id": "6688731665", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41577", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for this event she chose the perfect dress .", "storylet_id": "207885"}], [{"original_text": "These two young men came very underdressed considering the way others were dressed.", "album_id": "72157628848654209", "photo_flickr_id": "6688731893", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41577", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these two young men came very underdressed considering the way others were dressed .", "storylet_id": "207886"}], [{"original_text": "This woman came to this award event completely ready.", "album_id": "72157628848654209", "photo_flickr_id": "6688731971", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41577", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this woman came to this award event completely ready .", "storylet_id": "207887"}], [{"original_text": "These young british men are dressed dapper and neat.", "album_id": "72157628848654209", "photo_flickr_id": "6688731219", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41577", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these young british men are dressed dapper and neat .", "storylet_id": "207888"}], [{"original_text": "It looks like he snagged himself an award.", "album_id": "72157628848654209", "photo_flickr_id": "6688731563", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41577", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it looks like he snagged himself an award .", "storylet_id": "207889"}], [{"original_text": "A pretty lady is the first person on the red carpet.", "album_id": "72157628848654209", "photo_flickr_id": "6688731665", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41578", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a pretty lady is the first person on the red carpet .", "storylet_id": "207890"}], [{"original_text": "Two rappers are the next in line to be photographed.", "album_id": "72157628848654209", "photo_flickr_id": "6688731893", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41578", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "two rappers are the next in line to be photographed .", "storylet_id": "207891"}], [{"original_text": "Another pretty lady poses for the camera.", "album_id": "72157628848654209", "photo_flickr_id": "6688731971", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41578", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another pretty lady poses for the camera .", "storylet_id": "207892"}], [{"original_text": "A handsome foursome stops for the photographers.", "album_id": "72157628848654209", "photo_flickr_id": "6688731219", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41578", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a handsome foursome stops for the photographers .", "storylet_id": "207893"}], [{"original_text": "James Cordon shows off the award he won at the ceremony.", "album_id": "72157628848654209", "photo_flickr_id": "6688731563", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41578", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] cordon shows off the award he won at the ceremony .", "storylet_id": "207894"}], [{"original_text": "Local British personalities were lining up for the Brit Awards.", "album_id": "72157628848654209", "photo_flickr_id": "6688731477", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41579", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "local british personalities were lining up for the brit awards .", "storylet_id": "207895"}], [{"original_text": "Actors showed up, ", "album_id": "72157628848654209", "photo_flickr_id": "6688731753", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41579", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "actors showed up ,", "storylet_id": "207896"}], [{"original_text": "models showed up,", "album_id": "72157628848654209", "photo_flickr_id": "6688731665", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41579", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "models showed up ,", "storylet_id": "207897"}], [{"original_text": "announcers showed up,", "album_id": "72157628848654209", "photo_flickr_id": "6688732151", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41579", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "announcers showed up ,", "storylet_id": "207898"}], [{"original_text": "and even Billboard musical artists!", "album_id": "72157628848654209", "photo_flickr_id": "6688731893", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41579", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and even billboard musical artists !", "storylet_id": "207899"}], [{"original_text": "Outside the convention center.", "album_id": "72157628126323778", "photo_flickr_id": "4356914191", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41580", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "outside the convention center .", "storylet_id": "207900"}], [{"original_text": "Many people came to the convention.", "album_id": "72157628126323778", "photo_flickr_id": "4356914851", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41580", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people came to the convention .", "storylet_id": "207901"}], [{"original_text": "Many handouts were taken.", "album_id": "72157628126323778", "photo_flickr_id": "4359573357", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41580", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many handouts were taken .", "storylet_id": "207902"}], [{"original_text": "The presentations were very popular.", "album_id": "72157628126323778", "photo_flickr_id": "4356918567", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41580", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the presentations were very popular .", "storylet_id": "207903"}], [{"original_text": "Many people came to see them.", "album_id": "72157628126323778", "photo_flickr_id": "4356936605", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41580", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many people came to see them .", "storylet_id": "207904"}], [{"original_text": "Everyone entered the room, ready for the presentation.", "album_id": "72157628126323778", "photo_flickr_id": "4356914851", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "41581", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone entered the room , ready for the presentation .", "storylet_id": "207905"}], [{"original_text": "There were great speakers, who provided good education. ", "album_id": "72157628126323778", "photo_flickr_id": "4357666870", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "41581", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were great speakers , who provided good education .", "storylet_id": "207906"}], [{"original_text": "The camera man made sure to document the important event. ", "album_id": "72157628126323778", "photo_flickr_id": "4357667606", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "41581", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the camera man made sure to document the important event .", "storylet_id": "207907"}], [{"original_text": "The audience enjoyed the presentation and company of others.", "album_id": "72157628126323778", "photo_flickr_id": "4357669744", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "41581", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the audience enjoyed the presentation and company of others .", "storylet_id": "207908"}], [{"original_text": "They were satisfied with the material presented.", "album_id": "72157628126323778", "photo_flickr_id": "4356936605", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "41581", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were satisfied with the material presented .", "storylet_id": "207909"}], [{"original_text": "This is the building where the event is being held.", "album_id": "72157628126323778", "photo_flickr_id": "4356914191", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41582", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the building where the event is being held .", "storylet_id": "207910"}], [{"original_text": "There are quite a number of people attending this event.", "album_id": "72157628126323778", "photo_flickr_id": "4356914851", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41582", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are quite a number of people attending this event .", "storylet_id": "207911"}], [{"original_text": "This event is about your market for mobility.", "album_id": "72157628126323778", "photo_flickr_id": "4359573357", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41582", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this event is about your market for mobility .", "storylet_id": "207912"}], [{"original_text": "These two people are displaying a product for your mobility needs.", "album_id": "72157628126323778", "photo_flickr_id": "4356918567", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41582", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these two people are displaying a product for your mobility needs .", "storylet_id": "207913"}], [{"original_text": "The people seem pleased with what is being said.", "album_id": "72157628126323778", "photo_flickr_id": "4356936605", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41582", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the people seem pleased with what is being said .", "storylet_id": "207914"}], [{"original_text": "The people are getting ready to enter the hall.", "album_id": "72157628126323778", "photo_flickr_id": "4356914851", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41583", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people are getting ready to enter the hall .", "storylet_id": "207915"}], [{"original_text": "The first speaker engages the crowd with a funny story.", "album_id": "72157628126323778", "photo_flickr_id": "4357666870", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41583", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first speaker engages the crowd with a funny story .", "storylet_id": "207916"}], [{"original_text": "A camera man films the speakers.", "album_id": "72157628126323778", "photo_flickr_id": "4357667606", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41583", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a camera man films the speakers .", "storylet_id": "207917"}], [{"original_text": "A couple of the crowd members discuss what the speaker just talked about.", "album_id": "72157628126323778", "photo_flickr_id": "4357669744", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41583", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a couple of the crowd members discuss what the speaker just talked about .", "storylet_id": "207918"}], [{"original_text": "The crowd applauds when the speaker finishes.", "album_id": "72157628126323778", "photo_flickr_id": "4356936605", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41583", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the crowd applauds when the speaker finishes .", "storylet_id": "207919"}], [{"original_text": "A conference was held for businesses to introduce products and share achievements.", "album_id": "72157628126323778", "photo_flickr_id": "4356914191", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41584", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a conference was held for businesses to introduce products and share achievements .", "storylet_id": "207920"}], [{"original_text": "All the biggest names were lining up.", "album_id": "72157628126323778", "photo_flickr_id": "4356914851", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41584", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the biggest names were lining up .", "storylet_id": "207921"}], [{"original_text": "The theme this year was \"Your market for mobility\".", "album_id": "72157628126323778", "photo_flickr_id": "4359573357", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41584", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the theme this year was `` your market for mobility '' .", "storylet_id": "207922"}], [{"original_text": "The award ceremony was first on the list.", "album_id": "72157628126323778", "photo_flickr_id": "4356918567", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41584", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the award ceremony was first on the list .", "storylet_id": "207923"}], [{"original_text": "Everyone was eager to see who won such prestigious awards this year.", "album_id": "72157628126323778", "photo_flickr_id": "4356936605", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41584", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was eager to see who won such prestigious awards this year .", "storylet_id": "207924"}], [{"original_text": "Today was a ceremony for the junior hockey league.", "album_id": "72157623494873967", "photo_flickr_id": "4432271397", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41585", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was a ceremony for the junior hockey league .", "storylet_id": "207925"}], [{"original_text": "I received an award for my performance.", "album_id": "72157623494873967", "photo_flickr_id": "4433046922", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41585", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i received an award for my performance .", "storylet_id": "207926"}], [{"original_text": "All of us together after the ceremony.", "album_id": "72157623494873967", "photo_flickr_id": "4433219892", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41585", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of us together after the ceremony .", "storylet_id": "207927"}], [{"original_text": "At home showing my award to friends and family.", "album_id": "72157623494873967", "photo_flickr_id": "4433222092", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41585", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at home showing my award to friends and family .", "storylet_id": "207928"}], [{"original_text": "Everyone was really proud of me today.", "album_id": "72157623494873967", "photo_flickr_id": "4432447621", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41585", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was really proud of me today .", "storylet_id": "207929"}], [{"original_text": "Hockey Coaches talking to their team", "album_id": "72157623494873967", "photo_flickr_id": "4432271397", "setting": "first-2-pick-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "41586", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hockey coaches talking to their team", "storylet_id": "207930"}], [{"original_text": "Number 6 is giving his medal that he deserves", "album_id": "72157623494873967", "photo_flickr_id": "4433046922", "setting": "first-2-pick-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "41586", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "number 6 is giving his medal that he deserves", "storylet_id": "207931"}], [{"original_text": "He poses for the camera in his game play form", "album_id": "72157623494873967", "photo_flickr_id": "4432273061", "setting": "first-2-pick-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "41586", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he poses for the camera in his game play form", "storylet_id": "207932"}], [{"original_text": "The boy poses with his teammates at the end of the ceremony.", "album_id": "72157623494873967", "photo_flickr_id": "4433048316", "setting": "first-2-pick-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "41586", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boy poses with his teammates at the end of the ceremony .", "storylet_id": "207933"}], [{"original_text": "The boy gets another honor and poses with his proud dad. ", "album_id": "72157623494873967", "photo_flickr_id": "4432466851", "setting": "first-2-pick-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "41586", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boy gets another honor and poses with his proud dad .", "storylet_id": "207934"}], [{"original_text": "The coach lets the team know how proud of them he is.", "album_id": "72157623494873967", "photo_flickr_id": "4432271397", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41587", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the coach lets the team know how proud of them he is .", "storylet_id": "207935"}], [{"original_text": "The assistant coach helps hand out medals.", "album_id": "72157623494873967", "photo_flickr_id": "4433046922", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41587", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the assistant coach helps hand out medals .", "storylet_id": "207936"}], [{"original_text": "After getting their medals the team poses for a group picture.", "album_id": "72157623494873967", "photo_flickr_id": "4433219892", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41587", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after getting their medals the team poses for a group picture .", "storylet_id": "207937"}], [{"original_text": "After the boys change out of their uniforms the trophies are given out.", "album_id": "72157623494873967", "photo_flickr_id": "4433222092", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41587", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the boys change out of their uniforms the trophies are given out .", "storylet_id": "207938"}], [{"original_text": "Lastly, the coach hands out the trophy for the MVP.", "album_id": "72157623494873967", "photo_flickr_id": "4432447621", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41587", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , the coach hands out the trophy for the mvp .", "storylet_id": "207939"}], [{"original_text": "The local junior hockey team was assembling today.", "album_id": "72157623494873967", "photo_flickr_id": "4432271397", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41588", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the local junior hockey team was assembling today .", "storylet_id": "207940"}], [{"original_text": "Each member received their uniform. ", "album_id": "72157623494873967", "photo_flickr_id": "4433046922", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41588", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each member received their uniform .", "storylet_id": "207941"}], [{"original_text": "They also took their group photo today.", "album_id": "72157623494873967", "photo_flickr_id": "4433219892", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41588", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also took their group photo today .", "storylet_id": "207942"}], [{"original_text": "Jim was ecstatic to be part of the team.", "album_id": "72157623494873967", "photo_flickr_id": "4433222092", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41588", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was ecstatic to be part of the team .", "storylet_id": "207943"}], [{"original_text": "He hoped to win as many trophies as his father did when he was his age.", "album_id": "72157623494873967", "photo_flickr_id": "4432447621", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41588", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he hoped to win as many trophies as his father did when he was his age .", "storylet_id": "207944"}], [{"original_text": "Dad brought me to the hockey rink for the big game.", "album_id": "72157623494873967", "photo_flickr_id": "4432271397", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "41589", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dad brought me to the hockey rink for the big game .", "storylet_id": "207945"}], [{"original_text": "I got all dressed up and ready. This person helped me put on my hat.", "album_id": "72157623494873967", "photo_flickr_id": "4433046922", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "41589", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got all dressed up and ready . this person helped me put on my hat .", "storylet_id": "207946"}], [{"original_text": "I did exercises to get stretched out.", "album_id": "72157623494873967", "photo_flickr_id": "4432273061", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "41589", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i did exercises to get stretched out .", "storylet_id": "207947"}], [{"original_text": "The whole team showed up and played our best.", "album_id": "72157623494873967", "photo_flickr_id": "4433048316", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "41589", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole team showed up and played our best .", "storylet_id": "207948"}], [{"original_text": "We ended up winning, and my dad was very proud!", "album_id": "72157623494873967", "photo_flickr_id": "4432466851", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "41589", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended up winning , and my dad was very proud !", "storylet_id": "207949"}], [{"original_text": "The skating team were practicing their routine.", "album_id": "72157594489449430", "photo_flickr_id": "363122420", "setting": "first-2-pick-and-tell", "worker_id": "JQ0UBLYBLA1PKLZ", "story_id": "41590", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the skating team were practicing their routine .", "storylet_id": "207950"}], [{"original_text": "As the girls competed, the spectators watched.", "album_id": "72157594489449430", "photo_flickr_id": "363122542", "setting": "first-2-pick-and-tell", "worker_id": "JQ0UBLYBLA1PKLZ", "story_id": "41590", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the girls competed , the spectators watched .", "storylet_id": "207951"}], [{"original_text": "It wasn't all skating, there was sometime for picture taking. Don't they look great.", "album_id": "72157594489449430", "photo_flickr_id": "363122651", "setting": "first-2-pick-and-tell", "worker_id": "JQ0UBLYBLA1PKLZ", "story_id": "41590", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was n't all skating , there was sometime for picture taking . do n't they look great .", "storylet_id": "207952"}], [{"original_text": "After they competed they got to be spectators, like everyone else. They needed the erst.", "album_id": "72157594489449430", "photo_flickr_id": "363122737", "setting": "first-2-pick-and-tell", "worker_id": "JQ0UBLYBLA1PKLZ", "story_id": "41590", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after they competed they got to be spectators , like everyone else . they needed the erst .", "storylet_id": "207953"}], [{"original_text": "After all the work, it paid off and the team had won first place. They looked so proud with the trophy.", "album_id": "72157594489449430", "photo_flickr_id": "363122894", "setting": "first-2-pick-and-tell", "worker_id": "JQ0UBLYBLA1PKLZ", "story_id": "41590", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after all the work , it paid off and the team had won first place . they looked so proud with the trophy .", "storylet_id": "207954"}], [{"original_text": "My daughter and her skating team participated in a big competition over the weekend.", "album_id": "72157594489449430", "photo_flickr_id": "363122281", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41591", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my daughter and her skating team participated in a big competition over the weekend .", "storylet_id": "207955"}], [{"original_text": "They were in perfect sync with one another and did really well.", "album_id": "72157594489449430", "photo_flickr_id": "363122542", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41591", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were in perfect sync with one another and did really well .", "storylet_id": "207956"}], [{"original_text": "After the competition they were asked to take a team photo to remember the event.", "album_id": "72157594489449430", "photo_flickr_id": "363122651", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41591", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the competition they were asked to take a team photo to remember the event .", "storylet_id": "207957"}], [{"original_text": "They were also given awards for their great effort.", "album_id": "72157594489449430", "photo_flickr_id": "363122894", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41591", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were also given awards for their great effort .", "storylet_id": "207958"}], [{"original_text": "The coaches could not have been more proud of the girls.", "album_id": "72157594489449430", "photo_flickr_id": "363123111", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41591", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the coaches could not have been more proud of the girls .", "storylet_id": "207959"}], [{"original_text": "The young girl ice skaters are in a line formation.", "album_id": "72157594489449430", "photo_flickr_id": "363122281", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41592", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the young girl ice skaters are in a line formation .", "storylet_id": "207960"}], [{"original_text": "The girls are performing as a group, together.", "album_id": "72157594489449430", "photo_flickr_id": "363122542", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41592", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girls are performing as a group , together .", "storylet_id": "207961"}], [{"original_text": "At the end of the performance the girls posed for a picture.", "album_id": "72157594489449430", "photo_flickr_id": "363122651", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41592", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the end of the performance the girls posed for a picture .", "storylet_id": "207962"}], [{"original_text": "They were all happy to receive an award for their performance.", "album_id": "72157594489449430", "photo_flickr_id": "363122894", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41592", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were all happy to receive an award for their performance .", "storylet_id": "207963"}], [{"original_text": "The girls took one more picture with their coach and an affiliate of the event. ", "album_id": "72157594489449430", "photo_flickr_id": "363123111", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41592", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girls took one more picture with their coach and an affiliate of the event .", "storylet_id": "207964"}], [{"original_text": "The girls skated onto the ice in one big group.", "album_id": "72157594489449430", "photo_flickr_id": "363122420", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41593", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girls skated onto the ice in one big group .", "storylet_id": "207965"}], [{"original_text": "They formed a circle to end their routine.", "album_id": "72157594489449430", "photo_flickr_id": "363122542", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41593", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they formed a circle to end their routine .", "storylet_id": "207966"}], [{"original_text": "After they left the ice they posed for a group photo.", "album_id": "72157594489449430", "photo_flickr_id": "363122651", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41593", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after they left the ice they posed for a group photo .", "storylet_id": "207967"}], [{"original_text": "They watched the other teams perform.", "album_id": "72157594489449430", "photo_flickr_id": "363122737", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41593", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they watched the other teams perform .", "storylet_id": "207968"}], [{"original_text": "After all the teams perfomed they were declared the winners.", "album_id": "72157594489449430", "photo_flickr_id": "363122894", "setting": "last-3-pick-old-and-tell", "worker_id": "PZRV371XM2ZEPVY", "story_id": "41593", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after all the teams perfomed they were declared the winners .", "storylet_id": "207969"}], [{"original_text": "Our figure skating team had been practicing for the whole season.", "album_id": "72157594489449430", "photo_flickr_id": "363122420", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "41594", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our figure skating team had been practicing for the whole season .", "storylet_id": "207970"}], [{"original_text": "We went to a competition in front of a panel of judges.", "album_id": "72157594489449430", "photo_flickr_id": "363122542", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "41594", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to a competition in front of a panel of judges .", "storylet_id": "207971"}], [{"original_text": "I think we did very well, and we were proud.", "album_id": "72157594489449430", "photo_flickr_id": "363122651", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "41594", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i think we did very well , and we were proud .", "storylet_id": "207972"}], [{"original_text": "After we competed, we watched the other competitors.", "album_id": "72157594489449430", "photo_flickr_id": "363122737", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "41594", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after we competed , we watched the other competitors .", "storylet_id": "207973"}], [{"original_text": "We all got medals for participating!", "album_id": "72157594489449430", "photo_flickr_id": "363122894", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "41594", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all got medals for participating !", "storylet_id": "207974"}], [{"original_text": "The soldiers were getting acquainted before the speech.", "album_id": "72157624220760067", "photo_flickr_id": "4729796204", "setting": "first-2-pick-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "41595", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the soldiers were getting acquainted before the speech .", "storylet_id": "207975"}], [{"original_text": "The ambassador greets the military commanders.", "album_id": "72157624220760067", "photo_flickr_id": "4729796210", "setting": "first-2-pick-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "41595", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ambassador greets the military commanders .", "storylet_id": "207976"}], [{"original_text": "The ambassador is briefed on the agenda of the day.", "album_id": "72157624220760067", "photo_flickr_id": "4729803544", "setting": "first-2-pick-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "41595", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ambassador is briefed on the agenda of the day .", "storylet_id": "207977"}], [{"original_text": "The ambassador delivers the speech and emphasizes his commitment.", "album_id": "72157624220760067", "photo_flickr_id": "4729784872", "setting": "first-2-pick-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "41595", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ambassador delivers the speech and emphasizes his commitment .", "storylet_id": "207978"}], [{"original_text": "He tries to gain their support for helping his nation as well.", "album_id": "72157624220760067", "photo_flickr_id": "4729166175", "setting": "first-2-pick-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "41595", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he tries to gain their support for helping his nation as well .", "storylet_id": "207979"}], [{"original_text": "The soldiers greeted each other.", "album_id": "72157624220760067", "photo_flickr_id": "4729796204", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "41596", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the soldiers greeted each other .", "storylet_id": "207980"}], [{"original_text": "It was a way to recognize all of the soldiers from both countries.", "album_id": "72157624220760067", "photo_flickr_id": "4729784870", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "41596", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a way to recognize all of the soldiers from both countries .", "storylet_id": "207981"}], [{"original_text": "The host discussed how the worked together to solve the problem.", "album_id": "72157624220760067", "photo_flickr_id": "4729784872", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "41596", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the host discussed how the worked together to solve the problem .", "storylet_id": "207982"}], [{"original_text": "The men were honored.", "album_id": "72157624220760067", "photo_flickr_id": "4729784874", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "41596", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the men were honored .", "storylet_id": "207983"}], [{"original_text": "Then they brought in the students that were rescued.", "album_id": "72157624220760067", "photo_flickr_id": "4729796196", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "41596", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then they brought in the students that were rescued .", "storylet_id": "207984"}], [{"original_text": "Friends can be friends no matter where you go.", "album_id": "72157624220760067", "photo_flickr_id": "4729796204", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41597", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends can be friends no matter where you go .", "storylet_id": "207985"}], [{"original_text": "These men are showing their respect.", "album_id": "72157624220760067", "photo_flickr_id": "4729796210", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41597", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these men are showing their respect .", "storylet_id": "207986"}], [{"original_text": "Plans are being made for the day.", "album_id": "72157624220760067", "photo_flickr_id": "4729803544", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41597", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "plans are being made for the day .", "storylet_id": "207987"}], [{"original_text": "Men respectfully listening to the man speaking to them.", "album_id": "72157624220760067", "photo_flickr_id": "4729784872", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41597", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "men respectfully listening to the man speaking to them .", "storylet_id": "207988"}], [{"original_text": "A very important message is being delivered.", "album_id": "72157624220760067", "photo_flickr_id": "4729166175", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "41597", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a very important message is being delivered .", "storylet_id": "207989"}], [{"original_text": "A top secret military event hapTening. ", "album_id": "72157624220760067", "photo_flickr_id": "4729796204", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "41598", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a top secret military event haptening .", "storylet_id": "207990"}], [{"original_text": "I was able to attend because I knew one of the Generals. ", "album_id": "72157624220760067", "photo_flickr_id": "4729796210", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "41598", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was able to attend because i knew one of the generals .", "storylet_id": "207991"}], [{"original_text": "No one minded that I was here, I just stood up straight and smiled. ", "album_id": "72157624220760067", "photo_flickr_id": "4729803544", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "41598", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "no one minded that i was here , i just stood up straight and smiled .", "storylet_id": "207992"}], [{"original_text": "The event had a lot of interesting conversation. ", "album_id": "72157624220760067", "photo_flickr_id": "4729784872", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "41598", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the event had a lot of interesting conversation .", "storylet_id": "207993"}], [{"original_text": "This man talked about the war in the middle east", "album_id": "72157624220760067", "photo_flickr_id": "4729166175", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "41598", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this man talked about the war in the location location", "storylet_id": "207994"}], [{"original_text": "The military got together.", "album_id": "72157624220760067", "photo_flickr_id": "4729796204", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "41599", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the military got together .", "storylet_id": "207995"}], [{"original_text": "They were waiting for awrds.", "album_id": "72157624220760067", "photo_flickr_id": "4729784870", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "41599", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were waiting for awrds .", "storylet_id": "207996"}], [{"original_text": "Everyone listened to a speach.", "album_id": "72157624220760067", "photo_flickr_id": "4729784872", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "41599", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone listened to a speach .", "storylet_id": "207997"}], [{"original_text": "Many army guyscame.", "album_id": "72157624220760067", "photo_flickr_id": "4729784874", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "41599", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many army guyscame .", "storylet_id": "207998"}], [{"original_text": "The woman were there too.", "album_id": "72157624220760067", "photo_flickr_id": "4729796196", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "41599", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the woman were there too .", "storylet_id": "207999"}], [{"original_text": "A large group of them arrived for the ceremony together.", "album_id": "72157623708804154", "photo_flickr_id": "4465493082", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41600", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a large group of them arrived for the ceremony together .", "storylet_id": "208000"}], [{"original_text": "Once inside split up to socialize.", "album_id": "72157623708804154", "photo_flickr_id": "4464716335", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41600", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once inside split up to socialize .", "storylet_id": "208001"}], [{"original_text": "When it was time for the event to begin, they realized there was no way they could all share a table.", "album_id": "72157623708804154", "photo_flickr_id": "4464716419", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41600", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when it was time for the event to begin , they realized there was no way they could all share a table .", "storylet_id": "208002"}], [{"original_text": "So they split into two groups.", "album_id": "72157623708804154", "photo_flickr_id": "4464716437", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41600", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so they split into two groups .", "storylet_id": "208003"}], [{"original_text": "The first speaker took the stage and the crowd became silent.", "album_id": "72157623708804154", "photo_flickr_id": "4465493288", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "41600", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the first speaker took the stage and the crowd became silent .", "storylet_id": "208004"}], [{"original_text": "We all got together for the award ceremony and had a great time.", "album_id": "72157623708804154", "photo_flickr_id": "4464716297", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41601", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all got together for the award ceremony and had a great time .", "storylet_id": "208005"}], [{"original_text": "I got to see my old college friends for the first time in years.", "album_id": "72157623708804154", "photo_flickr_id": "4464716335", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41601", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got to see my old college friends for the first time in years .", "storylet_id": "208006"}], [{"original_text": "My parents and brother were also there for the big moment.", "album_id": "72157623708804154", "photo_flickr_id": "4465493196", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41601", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my parents and brother were also there for the big moment .", "storylet_id": "208007"}], [{"original_text": "It was nice to also have all of my aunts, uncles and cousins there.", "album_id": "72157623708804154", "photo_flickr_id": "4464716437", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41601", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was nice to also have all of my aunts , uncles and cousins there .", "storylet_id": "208008"}], [{"original_text": "My uncle gave a great speech to end the night for the Agency of the Year.", "album_id": "72157623708804154", "photo_flickr_id": "4465493288", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41601", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my uncle gave a great speech to end the night for the agency of the year .", "storylet_id": "208009"}], [{"original_text": "I received my award and couldn't believe the amount of support surrounding me.", "album_id": "72157623708804154", "photo_flickr_id": "4464716297", "setting": "last-3-pick-old-and-tell", "worker_id": "7H9MCFF3DEZ8BHB", "story_id": "41602", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i received my award and could n't believe the amount of support surrounding me .", "storylet_id": "208010"}], [{"original_text": "We took pictures after the award ceremony with our bestfriends throughout the entire time!", "album_id": "72157623708804154", "photo_flickr_id": "4464716335", "setting": "last-3-pick-old-and-tell", "worker_id": "7H9MCFF3DEZ8BHB", "story_id": "41602", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took pictures after the award ceremony with our bestfriends throughout the entire time !", "storylet_id": "208011"}], [{"original_text": "And of course there were the other trio of friends gathered next to us..", "album_id": "72157623708804154", "photo_flickr_id": "4465493196", "setting": "last-3-pick-old-and-tell", "worker_id": "7H9MCFF3DEZ8BHB", "story_id": "41602", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and of course there were the other trio of friends gathered next to us..", "storylet_id": "208012"}], [{"original_text": "The guys and girls at the table were awesome and we loved spending time with them.", "album_id": "72157623708804154", "photo_flickr_id": "4464716437", "setting": "last-3-pick-old-and-tell", "worker_id": "7H9MCFF3DEZ8BHB", "story_id": "41602", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guys and girls at the table were awesome and we loved spending time with them .", "storylet_id": "208013"}], [{"original_text": "And finally the final ceremony was wrapped up and he gave his speech so elegantly!", "album_id": "72157623708804154", "photo_flickr_id": "4465493288", "setting": "last-3-pick-old-and-tell", "worker_id": "7H9MCFF3DEZ8BHB", "story_id": "41602", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and finally the final ceremony was wrapped up and he gave his speech so elegantly !", "storylet_id": "208014"}], [{"original_text": "It was a night to celebrate great accomplishments.", "album_id": "72157623708804154", "photo_flickr_id": "4464716297", "setting": "last-3-pick-old-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41603", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a night to celebrate great accomplishments .", "storylet_id": "208015"}], [{"original_text": "People had a great time together.", "album_id": "72157623708804154", "photo_flickr_id": "4464716335", "setting": "last-3-pick-old-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41603", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people had a great time together .", "storylet_id": "208016"}], [{"original_text": "Lost relationships were rekindled.", "album_id": "72157623708804154", "photo_flickr_id": "4465493196", "setting": "last-3-pick-old-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41603", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lost relationships were rekindled .", "storylet_id": "208017"}], [{"original_text": "Many fun stories were told.", "album_id": "72157623708804154", "photo_flickr_id": "4464716437", "setting": "last-3-pick-old-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41603", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many fun stories were told .", "storylet_id": "208018"}], [{"original_text": "And a great speech was heard by all.", "album_id": "72157623708804154", "photo_flickr_id": "4465493288", "setting": "last-3-pick-old-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41603", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and a great speech was heard by all .", "storylet_id": "208019"}], [{"original_text": "There was a company party held, with everyone in attendance.", "album_id": "72157623708804154", "photo_flickr_id": "4465493082", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "41604", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a company party held , with everyone in attendance .", "storylet_id": "208020"}], [{"original_text": "The owners of the company were there, too.", "album_id": "72157623708804154", "photo_flickr_id": "4464716335", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "41604", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the owners of the company were there , too .", "storylet_id": "208021"}], [{"original_text": "The top salespeople had their own table.", "album_id": "72157623708804154", "photo_flickr_id": "4464716419", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "41604", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the top salespeople had their own table .", "storylet_id": "208022"}], [{"original_text": "The people from the shipping department got their own table as well.", "album_id": "72157623708804154", "photo_flickr_id": "4464716437", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "41604", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people from the shipping department got their own table as well .", "storylet_id": "208023"}], [{"original_text": "The highlight of the night was when the CEO made his speech.", "album_id": "72157623708804154", "photo_flickr_id": "4465493288", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "41604", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the highlight of the night was when the ceo made his speech .", "storylet_id": "208024"}], [{"original_text": "the party was set to begin as the glasses sat on the table", "album_id": "72157629092555811", "photo_flickr_id": "6786558199", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41605", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party was set to begin as the glasses sat on the table", "storylet_id": "208025"}], [{"original_text": "all the people gathered around the party", "album_id": "72157629092555811", "photo_flickr_id": "6786559115", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41605", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the people gathered around the party", "storylet_id": "208026"}], [{"original_text": "they gave speeches about there golden days", "album_id": "72157629092555811", "photo_flickr_id": "6786562839", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41605", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they gave speeches about there golden days", "storylet_id": "208027"}], [{"original_text": "they even got interviewed about the party by the local media", "album_id": "72157629092555811", "photo_flickr_id": "6786564465", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41605", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even got interviewed about the party by the local media", "storylet_id": "208028"}], [{"original_text": "and showed off all of there life's work ", "album_id": "72157629092555811", "photo_flickr_id": "6786564701", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41605", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and showed off all of there life 's work", "storylet_id": "208029"}], [{"original_text": "The preparations for the event were just about complete.", "album_id": "72157629092555811", "photo_flickr_id": "6786558199", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41606", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the preparations for the event were just about complete .", "storylet_id": "208030"}], [{"original_text": "Everyone was anxiously waiting for it to start.", "album_id": "72157629092555811", "photo_flickr_id": "6786559581", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41606", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was anxiously waiting for it to start .", "storylet_id": "208031"}], [{"original_text": "Finally it opened and everybody could eat.", "album_id": "72157629092555811", "photo_flickr_id": "6786558655", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41606", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally it opened and everybody could eat .", "storylet_id": "208032"}], [{"original_text": "There were some speakers during concession.", "album_id": "72157629092555811", "photo_flickr_id": "6786562839", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41606", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were some speakers during concession .", "storylet_id": "208033"}], [{"original_text": "Everybody continued to mingle throughout the event.", "album_id": "72157629092555811", "photo_flickr_id": "6786559115", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41606", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everybody continued to mingle throughout the event .", "storylet_id": "208034"}], [{"original_text": "The table is set for a fabulous retirement party for two sisters.", "album_id": "72157629092555811", "photo_flickr_id": "6786558199", "setting": "last-3-pick-old-and-tell", "worker_id": "LB7C8N2FSSESSCG", "story_id": "41607", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the table is set for a fabulous retirement party for two sisters .", "storylet_id": "208035"}], [{"original_text": "Everybody from work showed up and they were in high spirits.", "album_id": "72157629092555811", "photo_flickr_id": "6786559115", "setting": "last-3-pick-old-and-tell", "worker_id": "LB7C8N2FSSESSCG", "story_id": "41607", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everybody from work showed up and they were in high spirits .", "storylet_id": "208036"}], [{"original_text": "The manager talked about the past accomplishments of the sisters.", "album_id": "72157629092555811", "photo_flickr_id": "6786562839", "setting": "last-3-pick-old-and-tell", "worker_id": "LB7C8N2FSSESSCG", "story_id": "41607", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the manager talked about the past accomplishments of the sisters .", "storylet_id": "208037"}], [{"original_text": "Even the local press showed up and gave them an interview which aired on the news that night.", "album_id": "72157629092555811", "photo_flickr_id": "6786564465", "setting": "last-3-pick-old-and-tell", "worker_id": "LB7C8N2FSSESSCG", "story_id": "41607", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the local press showed up and gave them an interview which aired on the news that night .", "storylet_id": "208038"}], [{"original_text": "The gala wrapped up with a presentation of an achievement award for both. ", "album_id": "72157629092555811", "photo_flickr_id": "6786564701", "setting": "last-3-pick-old-and-tell", "worker_id": "LB7C8N2FSSESSCG", "story_id": "41607", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the gala wrapped up with a presentation of an achievement award for both .", "storylet_id": "208039"}], [{"original_text": "Much celebrating was about to come.", "album_id": "72157629092555811", "photo_flickr_id": "6786558199", "setting": "last-3-pick-old-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41608", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "much celebrating was about to come .", "storylet_id": "208040"}], [{"original_text": "Everyone gathered for the big event.", "album_id": "72157629092555811", "photo_flickr_id": "6786559115", "setting": "last-3-pick-old-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41608", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone gathered for the big event .", "storylet_id": "208041"}], [{"original_text": "The guest of honor was brought in front of the crowd.", "album_id": "72157629092555811", "photo_flickr_id": "6786562839", "setting": "last-3-pick-old-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41608", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guest of honor was brought in front of the crowd .", "storylet_id": "208042"}], [{"original_text": "Many kind words were shared.", "album_id": "72157629092555811", "photo_flickr_id": "6786564465", "setting": "last-3-pick-old-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41608", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many kind words were shared .", "storylet_id": "208043"}], [{"original_text": "She enjoyed this day so much.", "album_id": "72157629092555811", "photo_flickr_id": "6786564701", "setting": "last-3-pick-old-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41608", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she enjoyed this day so much .", "storylet_id": "208044"}], [{"original_text": "There was a special event held, with different types of wine available.", "album_id": "72157629092555811", "photo_flickr_id": "6786558199", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "41609", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a special event held , with different types of wine available .", "storylet_id": "208045"}], [{"original_text": "The turnout was fantastic!", "album_id": "72157629092555811", "photo_flickr_id": "6786559581", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "41609", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the turnout was fantastic !", "storylet_id": "208046"}], [{"original_text": "Not only was there wine, but a ton of great food as well.", "album_id": "72157629092555811", "photo_flickr_id": "6786558655", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "41609", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not only was there wine , but a ton of great food as well .", "storylet_id": "208047"}], [{"original_text": "The highlight of the event was the speech given by the oldest residents in town.", "album_id": "72157629092555811", "photo_flickr_id": "6786562839", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "41609", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the highlight of the event was the speech given by the oldest residents in town .", "storylet_id": "208048"}], [{"original_text": "After the speech, everyone mingled and had a great time.", "album_id": "72157629092555811", "photo_flickr_id": "6786559115", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "41609", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the speech , everyone mingled and had a great time .", "storylet_id": "208049"}], [{"original_text": "My sister and I went camping in Florida last weekend.", "album_id": "72157594145019718", "photo_flickr_id": "153156083", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41610", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister and i went camping in location last weekend .", "storylet_id": "208050"}], [{"original_text": "She's not an outdoor person but she handled it pretty well when it started raining.", "album_id": "72157594145019718", "photo_flickr_id": "153155127", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41610", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she 's not an outdoor person but she handled it pretty well when it started raining .", "storylet_id": "208051"}], [{"original_text": "When it started raining, the alligators came up out of the water.", "album_id": "72157594145019718", "photo_flickr_id": "153155563", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41610", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when it started raining , the alligators came up out of the water .", "storylet_id": "208052"}], [{"original_text": "One of them bit her foot so they rushed her to the visitor kiosk.", "album_id": "72157594145019718", "photo_flickr_id": "153155316", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41610", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of them bit her foot so they rushed her to the visitor kiosk .", "storylet_id": "208053"}], [{"original_text": "Lucky for her, she had leather boots on and only got a red mark from the whole ordeal.", "album_id": "72157594145019718", "photo_flickr_id": "153156598", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41610", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lucky for her , she had leather boots on and only got a red mark from the whole ordeal .", "storylet_id": "208054"}], [{"original_text": "Alligators? Why are we here?", "album_id": "72157594145019718", "photo_flickr_id": "153155563", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "41611", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "alligators ? why are we here ?", "storylet_id": "208055"}], [{"original_text": "That's right! We're going to race!", "album_id": "72157594145019718", "photo_flickr_id": "153155316", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "41611", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that 's right ! we 're going to race !", "storylet_id": "208056"}], [{"original_text": "Winning time: 23 hours, 26 minutes and 15 seconds. We out-ran the alligators!", "album_id": "72157594145019718", "photo_flickr_id": "153156321", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "41611", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "winning time : 23 hours , 26 minutes and 15 seconds . we out-ran the alligators !", "storylet_id": "208057"}], [{"original_text": "Well, most of us out-ran the alligators. :)", "album_id": "72157594145019718", "photo_flickr_id": "153156457", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "41611", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "well , most of us out-ran the alligators . : )", "storylet_id": "208058"}], [{"original_text": "Ouch! 100 mile Trail Run -- I'm gonna beat you next year!", "album_id": "72157594145019718", "photo_flickr_id": "153156598", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "41611", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ouch ! 100 mile trail run -- i 'm gon na beat you next year !", "storylet_id": "208059"}], [{"original_text": "The annual Alligator Ally race was about to begin and Mark and Susan were excited.", "album_id": "72157594145019718", "photo_flickr_id": "153155563", "setting": "last-3-pick-old-and-tell", "worker_id": "P6N2APHS1PBRNAH", "story_id": "41612", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the annual alligator ally race was about to begin and [male] and [female] were excited .", "storylet_id": "208060"}], [{"original_text": "All of the runners from around the county gathered at the starting line with them.", "album_id": "72157594145019718", "photo_flickr_id": "153155316", "setting": "last-3-pick-old-and-tell", "worker_id": "P6N2APHS1PBRNAH", "story_id": "41612", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the runners from around the county gathered at the starting line with them .", "storylet_id": "208061"}], [{"original_text": "It was a long distance race and would take multiple hours to complete but they had been training for months. ", "album_id": "72157594145019718", "photo_flickr_id": "153156321", "setting": "last-3-pick-old-and-tell", "worker_id": "P6N2APHS1PBRNAH", "story_id": "41612", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a long distance race and would take multiple hours to complete but they had been training for months .", "storylet_id": "208062"}], [{"original_text": "Finally Mark and Susan crossed the finish line together.", "album_id": "72157594145019718", "photo_flickr_id": "153156457", "setting": "last-3-pick-old-and-tell", "worker_id": "P6N2APHS1PBRNAH", "story_id": "41612", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally [male] and [female] crossed the finish line together .", "storylet_id": "208063"}], [{"original_text": "All was well besides the state of Mark's feet, but the pain was worth the reward. ", "album_id": "72157594145019718", "photo_flickr_id": "153156598", "setting": "last-3-pick-old-and-tell", "worker_id": "P6N2APHS1PBRNAH", "story_id": "41612", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all was well besides the state of [male] 's feet , but the pain was worth the reward .", "storylet_id": "208064"}], [{"original_text": "The runners are getting prepared to start the race. ", "album_id": "72157594145019718", "photo_flickr_id": "153156083", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41613", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the runners are getting prepared to start the race .", "storylet_id": "208065"}], [{"original_text": "I take a picture before starting the race. ", "album_id": "72157594145019718", "photo_flickr_id": "153155127", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41613", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i take a picture before starting the race .", "storylet_id": "208066"}], [{"original_text": "This is a sign along the race path, should I be scared.", "album_id": "72157594145019718", "photo_flickr_id": "153155563", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41613", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a sign along the race path , should i be scared .", "storylet_id": "208067"}], [{"original_text": "As the rain falls, the racers, line up under the tarp, prior to the race starting. ", "album_id": "72157594145019718", "photo_flickr_id": "153155316", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41613", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the rain falls , the racers , line up under the tarp , prior to the race starting .", "storylet_id": "208068"}], [{"original_text": "These are my feet after running such a grueling race. ", "album_id": "72157594145019718", "photo_flickr_id": "153156598", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "41613", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these are my feet after running such a grueling race .", "storylet_id": "208069"}], [{"original_text": "The run was taking place in a Florida park, the members of the run noted the sign about the aligators but didn't think much about it.", "album_id": "72157594145019718", "photo_flickr_id": "153155563", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41614", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the run was taking place in a location park , the members of the run noted the sign about the aligators but did n't think much about it .", "storylet_id": "208070"}], [{"original_text": "Everyone assembled for the start of the race.", "album_id": "72157594145019718", "photo_flickr_id": "153155316", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41614", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone assembled for the start of the race .", "storylet_id": "208071"}], [{"original_text": "23 minutes in and people were started to get tired.", "album_id": "72157594145019718", "photo_flickr_id": "153156321", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41614", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "23 minutes in and people were started to get tired .", "storylet_id": "208072"}], [{"original_text": "Jenny, who was supposed to run the race, had broke her ankle last week. Kevin carried her across the finish line.", "album_id": "72157594145019718", "photo_flickr_id": "153156457", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41614", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] , who was supposed to run the race , had broke her ankle last week . [male] carried her across the finish line .", "storylet_id": "208073"}], [{"original_text": "He looked at his feet later that night and noticed they had swollen to twice their size!", "album_id": "72157594145019718", "photo_flickr_id": "153156598", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41614", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he looked at his feet later that night and noticed they had swollen to twice their size !", "storylet_id": "208074"}], [{"original_text": "The teachers and coaches began the soccer awards.", "album_id": "72157603745341181", "photo_flickr_id": "2202693147", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "41615", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the teachers and coaches began the soccer awards .", "storylet_id": "208075"}], [{"original_text": "They showed off some of their soccer skills, before announcing the MVP players.", "album_id": "72157603745341181", "photo_flickr_id": "2201979270", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "41615", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they showed off some of their soccer skills , before announcing the mvp players .", "storylet_id": "208076"}], [{"original_text": "The winners came up, and took their awards. Some wore funny hats to celebrate the festivities.", "album_id": "72157603745341181", "photo_flickr_id": "2203486476", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "41615", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the winners came up , and took their awards . some wore funny hats to celebrate the festivities .", "storylet_id": "208077"}], [{"original_text": "The rest of the team watched the ceremony, supporting their fellow players.", "album_id": "72157603745341181", "photo_flickr_id": "2202692857", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "41615", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rest of the team watched the ceremony , supporting their fellow players .", "storylet_id": "208078"}], [{"original_text": "After the MVP awards, the team gathered for their team picture. A great season of soccer had been celebrated.", "album_id": "72157603745341181", "photo_flickr_id": "2201979480", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "41615", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the mvp awards , the team gathered for their team picture . a great season of soccer had been celebrated .", "storylet_id": "208079"}], [{"original_text": "The faculty of the school were on hand to hand out awards to the different teams.", "album_id": "72157603745341181", "photo_flickr_id": "2201191033", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41616", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the faculty of the school were on hand to hand out awards to the different teams .", "storylet_id": "208080"}], [{"original_text": "Each team member was awarded a certificate for their participation.", "album_id": "72157603745341181", "photo_flickr_id": "2201979480", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41616", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each team member was awarded a certificate for their participation .", "storylet_id": "208081"}], [{"original_text": "They also did team photos for the yearbook and to give to each member of the teams.", "album_id": "72157603745341181", "photo_flickr_id": "2201188677", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41616", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also did team photos for the yearbook and to give to each member of the teams .", "storylet_id": "208082"}], [{"original_text": "The kids were so proud of their hard work.", "album_id": "72157603745341181", "photo_flickr_id": "2201188903", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41616", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids were so proud of their hard work .", "storylet_id": "208083"}], [{"original_text": "Even the younger ones shared in the excitement of the day.", "album_id": "72157603745341181", "photo_flickr_id": "2201189131", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41616", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the younger ones shared in the excitement of the day .", "storylet_id": "208084"}], [{"original_text": "Everyone was so excited to finally get their team picture in the yearbook.", "album_id": "72157603745341181", "photo_flickr_id": "2202693147", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "41617", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was so excited to finally get their team picture in the yearbook .", "storylet_id": "208085"}], [{"original_text": "The coaches stood around congratulating each other.", "album_id": "72157603745341181", "photo_flickr_id": "2201979270", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "41617", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the coaches stood around congratulating each other .", "storylet_id": "208086"}], [{"original_text": "They also congratulated our team.", "album_id": "72157603745341181", "photo_flickr_id": "2203486476", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "41617", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also congratulated our team .", "storylet_id": "208087"}], [{"original_text": "The team lined up to take their group shot.", "album_id": "72157603745341181", "photo_flickr_id": "2202692857", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "41617", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the team lined up to take their group shot .", "storylet_id": "208088"}], [{"original_text": "The picture came out really well.", "album_id": "72157603745341181", "photo_flickr_id": "2201979480", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "41617", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the picture came out really well .", "storylet_id": "208089"}], [{"original_text": "there was an after school sports activity", "album_id": "72157603745341181", "photo_flickr_id": "2201191033", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41618", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an after school sports activity", "storylet_id": "208090"}], [{"original_text": "the teams each posed for a picture", "album_id": "72157603745341181", "photo_flickr_id": "2201979480", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41618", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the teams each posed for a picture", "storylet_id": "208091"}], [{"original_text": "each team consisted of boys and girls", "album_id": "72157603745341181", "photo_flickr_id": "2201188677", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41618", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each team consisted of boys and girls", "storylet_id": "208092"}], [{"original_text": "there was yellow and black teams", "album_id": "72157603745341181", "photo_flickr_id": "2201188903", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41618", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was yellow and black teams", "storylet_id": "208093"}], [{"original_text": "and they all posed together one last time they had a great time", "album_id": "72157603745341181", "photo_flickr_id": "2201189131", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41618", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they all posed together one last time they had a great time", "storylet_id": "208094"}], [{"original_text": "Today, we had a celebration fro the hockey teams.", "album_id": "72157603745341181", "photo_flickr_id": "2201191033", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "41619", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , we had a celebration fro the hockey teams .", "storylet_id": "208095"}], [{"original_text": "Here are the pictures from each of the teams.", "album_id": "72157603745341181", "photo_flickr_id": "2201979480", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "41619", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here are the pictures from each of the teams .", "storylet_id": "208096"}], [{"original_text": "Each team was proud of their own team.", "album_id": "72157603745341181", "photo_flickr_id": "2201188677", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "41619", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each team was proud of their own team .", "storylet_id": "208097"}], [{"original_text": "Even though the season was over, they still wanted to play.", "album_id": "72157603745341181", "photo_flickr_id": "2201188903", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "41619", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even though the season was over , they still wanted to play .", "storylet_id": "208098"}], [{"original_text": "At the end, we just took a picture of all the kids supporting the teams.", "album_id": "72157603745341181", "photo_flickr_id": "2201189131", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "41619", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , we just took a picture of all the kids supporting the teams .", "storylet_id": "208099"}], [{"original_text": "There were a lot of different lights piled up.", "album_id": "72157605038747377", "photo_flickr_id": "2489831316", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "41620", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of different lights piled up .", "storylet_id": "208100"}], [{"original_text": "The ceremony had begun and everyone was having a good time.", "album_id": "72157605038747377", "photo_flickr_id": "2489832076", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "41620", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ceremony had begun and everyone was having a good time .", "storylet_id": "208101"}], [{"original_text": "We got a kick out of this girls costume.", "album_id": "72157605038747377", "photo_flickr_id": "2489834976", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "41620", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got a kick out of this girls costume .", "storylet_id": "208102"}], [{"original_text": "This guy was awesome and ripped for his age.", "album_id": "72157605038747377", "photo_flickr_id": "2489839180", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "41620", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this guy was awesome and ripped for his age .", "storylet_id": "208103"}], [{"original_text": "One of my favorite people posing with a bouquet of roses", "album_id": "72157605038747377", "photo_flickr_id": "2489023447", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "41620", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of my favorite people posing with a bouquet of roses", "storylet_id": "208104"}], [{"original_text": "I cant wait to see these lights in action at the concert later.", "album_id": "72157605038747377", "photo_flickr_id": "2489831316", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "41621", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i cant wait to see these lights in action at the concert later .", "storylet_id": "208105"}], [{"original_text": "These guys dressed as the Village People for the talent show.", "album_id": "72157605038747377", "photo_flickr_id": "2489834320", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "41621", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these guys dressed as the village people for the talent show .", "storylet_id": "208106"}], [{"original_text": "I think this guy was supposed to be Madonna?", "album_id": "72157605038747377", "photo_flickr_id": "2489834976", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "41621", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i think this guy was supposed to be madonna ?", "storylet_id": "208107"}], [{"original_text": "These two ladies were crazy, I think the picture speaks for itself.", "album_id": "72157605038747377", "photo_flickr_id": "2489021889", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "41621", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these two ladies were crazy , i think the picture speaks for itself .", "storylet_id": "208108"}], [{"original_text": "This young lady won first prize in the talent show for her rendition of \"Candle in the Wind\".", "album_id": "72157605038747377", "photo_flickr_id": "2489023447", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "41621", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this young lady won first prize in the talent show for her rendition of `` candle in the wind '' .", "storylet_id": "208109"}], [{"original_text": "Today is a fun filled day of events.", "album_id": "72157605038747377", "photo_flickr_id": "2489831316", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "41622", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is a fun filled day of events .", "storylet_id": "208110"}], [{"original_text": "Singers are all around and they even have a best costume contest.", "album_id": "72157605038747377", "photo_flickr_id": "2489832076", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "41622", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "singers are all around and they even have a best costume contest .", "storylet_id": "208111"}], [{"original_text": "Some of the people get to sing while dressed in their costume.", "album_id": "72157605038747377", "photo_flickr_id": "2489834976", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "41622", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the people get to sing while dressed in their costume .", "storylet_id": "208112"}], [{"original_text": "The fun part is meeting all the people and getting to see their neat costumes.", "album_id": "72157605038747377", "photo_flickr_id": "2489839180", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "41622", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fun part is meeting all the people and getting to see their neat costumes .", "storylet_id": "208113"}], [{"original_text": "And the winner walks away with a set of beautiful roses.", "album_id": "72157605038747377", "photo_flickr_id": "2489023447", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "41622", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the winner walks away with a set of beautiful roses .", "storylet_id": "208114"}], [{"original_text": "It's odd to see a modern piece of art nowadays.", "album_id": "72157605038747377", "photo_flickr_id": "2489831316", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41623", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's odd to see a modern piece of art nowadays .", "storylet_id": "208115"}], [{"original_text": "The microphones worked great and reached far back into the audience.", "album_id": "72157605038747377", "photo_flickr_id": "2489832076", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41623", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the microphones worked great and reached far back into the audience .", "storylet_id": "208116"}], [{"original_text": "A stranger took the microphone and asserted that clams are taking over the world.", "album_id": "72157605038747377", "photo_flickr_id": "2489834976", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41623", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a stranger took the microphone and asserted that clams are taking over the world .", "storylet_id": "208117"}], [{"original_text": "The fourth of July came a few days early, it seems.", "album_id": "72157605038747377", "photo_flickr_id": "2489839180", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41623", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fourth of july came a few days early , it seems .", "storylet_id": "208118"}], [{"original_text": "Tricia ripped a giant plant out of the ground and laughed all the way home. ", "album_id": "72157605038747377", "photo_flickr_id": "2489023447", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41623", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] ripped a giant plant out of the ground and laughed all the way home .", "storylet_id": "208119"}], [{"original_text": "When you see the Wall of Fancy Circles, you know you're almost at the Wild Days celebration!", "album_id": "72157605038747377", "photo_flickr_id": "2489831316", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41624", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when you see the wall of fancy circles , you know you 're almost at the wild days celebration !", "storylet_id": "208120"}], [{"original_text": "There's some terrific acts on stage for free.", "album_id": "72157605038747377", "photo_flickr_id": "2489832076", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41624", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there 's some terrific acts on stage for free .", "storylet_id": "208121"}], [{"original_text": "The cool part is that most of them are non-professionals!", "album_id": "72157605038747377", "photo_flickr_id": "2489834976", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41624", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cool part is that most of them are non-professionals !", "storylet_id": "208122"}], [{"original_text": "People dress up crazily. It's not really a 4th of July thing, but it's held around that time, so there's a lot of patriotic costumes.", "album_id": "72157605038747377", "photo_flickr_id": "2489839180", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41624", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people dress up crazily . it 's not really a 4th of july thing , but it 's held around that time , so there 's a lot of patriotic costumes .", "storylet_id": "208123"}], [{"original_text": "The winner of the talent show get the big rose bouquet!", "album_id": "72157605038747377", "photo_flickr_id": "2489023447", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41624", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the winner of the talent show get the big rose bouquet !", "storylet_id": "208124"}], [{"original_text": "Here is everyone getting on the boat. They are eager to start their journey across the water.", "album_id": "72157605198166226", "photo_flickr_id": "2514063511", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "41625", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is everyone getting on the boat . they are eager to start their journey across the water .", "storylet_id": "208125"}], [{"original_text": "This lake area is very polluted, but the trees and shrubs look very nice.", "album_id": "72157605198166226", "photo_flickr_id": "2514889764", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "41625", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this lake area is very polluted , but the trees and shrubs look very nice .", "storylet_id": "208126"}], [{"original_text": "This person is looking at the bridge and enjoying the view while on the boat.", "album_id": "72157605198166226", "photo_flickr_id": "2514064433", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "41625", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this person is looking at the bridge and enjoying the view while on the boat .", "storylet_id": "208127"}], [{"original_text": "These people are gathering on the grass and telling stories to each other.", "album_id": "72157605198166226", "photo_flickr_id": "2514064859", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "41625", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these people are gathering on the grass and telling stories to each other .", "storylet_id": "208128"}], [{"original_text": "A furry animal emerges. He is looking for food and entertainment. He hopes to make new friends.", "album_id": "72157605198166226", "photo_flickr_id": "2514065157", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "41625", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a furry animal emerges . he is looking for food and entertainment . he hopes to make new friends .", "storylet_id": "208129"}], [{"original_text": "Everybody is preparing for an awesome day at sea!", "album_id": "72157605198166226", "photo_flickr_id": "2514063333", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "41626", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everybody is preparing for an awesome day at sea !", "storylet_id": "208130"}], [{"original_text": "Here are Tommy and Jessica. They don't look too happy at the moment, maybe sea sickness?", "album_id": "72157605198166226", "photo_flickr_id": "2514889354", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "41626", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here are [male] and [female] . they do n't look too happy at the moment , maybe sea sickness ?", "storylet_id": "208131"}], [{"original_text": "My mom looks so wonderful today. I'm really glad that she planned this get together.", "album_id": "72157605198166226", "photo_flickr_id": "2514064079", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "41626", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my mom looks so wonderful today . i 'm really glad that she planned this get together .", "storylet_id": "208132"}], [{"original_text": "Ah, such a beautiful view. I just couldn't help taking my sandals off and breathing in the fresh air.", "album_id": "72157605198166226", "photo_flickr_id": "2514064433", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "41626", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "ah , such a beautiful view . i just could n't help taking my sandals off and breathing in the fresh air .", "storylet_id": "208133"}], [{"original_text": "Afterwards, we all got together for a small meal. Everyone was exhausted by this point.", "album_id": "72157605198166226", "photo_flickr_id": "2514064771", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "41626", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , we all got together for a small meal . everyone was exhausted by this point .", "storylet_id": "208134"}], [{"original_text": "We went for a boating holiday on the river last week.", "album_id": "72157605198166226", "photo_flickr_id": "2514063511", "setting": "last-3-pick-old-and-tell", "worker_id": "WE5YB25CE3Y2JLB", "story_id": "41627", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went for a boating holiday on the river last week .", "storylet_id": "208135"}], [{"original_text": "It was incredibly relaxing just floating along enjoying the beauty of nature.", "album_id": "72157605198166226", "photo_flickr_id": "2514889764", "setting": "last-3-pick-old-and-tell", "worker_id": "WE5YB25CE3Y2JLB", "story_id": "41627", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was incredibly relaxing just floating along enjoying the beauty of nature .", "storylet_id": "208136"}], [{"original_text": "Janice even let the sun see her legs!", "album_id": "72157605198166226", "photo_flickr_id": "2514064433", "setting": "last-3-pick-old-and-tell", "worker_id": "WE5YB25CE3Y2JLB", "story_id": "41627", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] even let the sun see her legs !", "storylet_id": "208137"}], [{"original_text": "We stopped for a picnic on the banks of the river. It was fantastic.", "album_id": "72157605198166226", "photo_flickr_id": "2514064859", "setting": "last-3-pick-old-and-tell", "worker_id": "WE5YB25CE3Y2JLB", "story_id": "41627", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped for a picnic on the banks of the river . it was fantastic .", "storylet_id": "208138"}], [{"original_text": "We joked that this was a duck billed platypus. The first one seen in this country in the wild!", "album_id": "72157605198166226", "photo_flickr_id": "2514065157", "setting": "last-3-pick-old-and-tell", "worker_id": "WE5YB25CE3Y2JLB", "story_id": "41627", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we joked that this was a duck billed platypus . the first one seen in this country in the wild !", "storylet_id": "208139"}], [{"original_text": "This was the beginning of our trip down the river.", "album_id": "72157605198166226", "photo_flickr_id": "2514063511", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "41628", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the beginning of our trip down the river .", "storylet_id": "208140"}], [{"original_text": "The quiet of nature was wonderful.", "album_id": "72157605198166226", "photo_flickr_id": "2514889764", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "41628", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the quiet of nature was wonderful .", "storylet_id": "208141"}], [{"original_text": "We were all excited to just relax and enjoy the water.", "album_id": "72157605198166226", "photo_flickr_id": "2514064433", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "41628", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were all excited to just relax and enjoy the water .", "storylet_id": "208142"}], [{"original_text": "Of course, we stopped for a quick picnic. ", "album_id": "72157605198166226", "photo_flickr_id": "2514064859", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "41628", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course , we stopped for a quick picnic .", "storylet_id": "208143"}], [{"original_text": "Someone brought this guy along with us on the river, but we all thought it was a blast.", "album_id": "72157605198166226", "photo_flickr_id": "2514065157", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "41628", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someone brought this guy along with us on the river , but we all thought it was a blast .", "storylet_id": "208144"}], [{"original_text": "The family decided it was a great day to spend at the lake. ", "album_id": "72157605198166226", "photo_flickr_id": "2514063333", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41629", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family decided it was a great day to spend at the lake .", "storylet_id": "208145"}], [{"original_text": "They had a boat in a rented slip there. ", "album_id": "72157605198166226", "photo_flickr_id": "2514889354", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41629", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a boat in a rented slip there .", "storylet_id": "208146"}], [{"original_text": "They took fishing gear. ", "album_id": "72157605198166226", "photo_flickr_id": "2514064079", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41629", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they took fishing gear .", "storylet_id": "208147"}], [{"original_text": "Although not everyone had their swimsuits, they still enjoyed the sun and beautiful sky. ", "album_id": "72157605198166226", "photo_flickr_id": "2514064433", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41629", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "although not everyone had their swimsuits , they still enjoyed the sun and beautiful sky .", "storylet_id": "208148"}], [{"original_text": "Afterward, the entire family enjoyed a cook out in the back yard. ", "album_id": "72157605198166226", "photo_flickr_id": "2514064771", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41629", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward , the entire family enjoyed a cook out in the back yard .", "storylet_id": "208149"}], [{"original_text": "Holding up the program for the peabody awards.", "album_id": "72157605669695765", "photo_flickr_id": "2588096430", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "41630", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "holding up the program for the peabody awards .", "storylet_id": "208150"}], [{"original_text": "These two men must have been talking about something interesting.", "album_id": "72157605669695765", "photo_flickr_id": "2588094688", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "41630", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these two men must have been talking about something interesting .", "storylet_id": "208151"}], [{"original_text": "The peabody awards were about to start!", "album_id": "72157605669695765", "photo_flickr_id": "2588096776", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "41630", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the peabody awards were about to start !", "storylet_id": "208152"}], [{"original_text": "Everyone lining up to receive their awards.", "album_id": "72157605669695765", "photo_flickr_id": "2588095362", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "41630", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone lining up to receive their awards .", "storylet_id": "208153"}], [{"original_text": "People posed for pictures after the ceremony had finished.", "album_id": "72157605669695765", "photo_flickr_id": "2588243136", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "41630", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people posed for pictures after the ceremony had finished .", "storylet_id": "208154"}], [{"original_text": "There was a big award ceremony for my grandfather's lifetime achievement award.", "album_id": "72157605669695765", "photo_flickr_id": "2588242942", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "41631", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a big award ceremony for my grandfather 's lifetime achievement award .", "storylet_id": "208155"}], [{"original_text": "Here he is talking to his best friend, Jimmy. He was congratulating him.", "album_id": "72157605669695765", "photo_flickr_id": "2588094688", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "41631", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here he is talking to his best friend , [male] . he was congratulating him .", "storylet_id": "208156"}], [{"original_text": "Mary had lots of great things to say about my grandfather.", "album_id": "72157605669695765", "photo_flickr_id": "2587259493", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "41631", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] had lots of great things to say about my grandfather .", "storylet_id": "208157"}], [{"original_text": "Here is my grandfather, posing with all of his esteemed colleagues while presenting the award.", "album_id": "72157605669695765", "photo_flickr_id": "2588243136", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "41631", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is my grandfather , posing with all of his esteemed colleagues while presenting the award .", "storylet_id": "208158"}], [{"original_text": "Here we are after a big day. I'm so glad that everyone had such a great time!", "album_id": "72157605669695765", "photo_flickr_id": "2587261065", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "41631", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here we are after a big day . i 'm so glad that everyone had such a great time !", "storylet_id": "208159"}], [{"original_text": "The author was so excited to be honored that evening.", "album_id": "72157605669695765", "photo_flickr_id": "2588096430", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "41632", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the author was so excited to be honored that evening .", "storylet_id": "208160"}], [{"original_text": "There were people everywhere talking about his new book.", "album_id": "72157605669695765", "photo_flickr_id": "2588094688", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "41632", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were people everywhere talking about his new book .", "storylet_id": "208161"}], [{"original_text": "There were even projections of one of his covers.", "album_id": "72157605669695765", "photo_flickr_id": "2588096776", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "41632", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were even projections of one of his covers .", "storylet_id": "208162"}], [{"original_text": "His honoring was a small ceremony.", "album_id": "72157605669695765", "photo_flickr_id": "2588095362", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "41632", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his honoring was a small ceremony .", "storylet_id": "208163"}], [{"original_text": "However, everyone had a lot of fun. ", "album_id": "72157605669695765", "photo_flickr_id": "2588243136", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "41632", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , everyone had a lot of fun .", "storylet_id": "208164"}], [{"original_text": "Frank wanted to show off his drawing.", "album_id": "72157605669695765", "photo_flickr_id": "2588096430", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41633", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] wanted to show off his drawing .", "storylet_id": "208165"}], [{"original_text": "A business meeting occurred between two gentlemen. ", "album_id": "72157605669695765", "photo_flickr_id": "2588094688", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41633", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a business meeting occurred between two gentlemen .", "storylet_id": "208166"}], [{"original_text": "The guests watched a presentation.", "album_id": "72157605669695765", "photo_flickr_id": "2588096776", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41633", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guests watched a presentation .", "storylet_id": "208167"}], [{"original_text": "A short award ceremony began after the presentation.", "album_id": "72157605669695765", "photo_flickr_id": "2588095362", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41633", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a short award ceremony began after the presentation .", "storylet_id": "208168"}], [{"original_text": "Five people won awards that night and everyone was happy. ", "album_id": "72157605669695765", "photo_flickr_id": "2588243136", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41633", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "five people won awards that night and everyone was happy .", "storylet_id": "208169"}], [{"original_text": "If you work in radio and do a good job, you've probably been invited to our awards night.", "album_id": "72157605669695765", "photo_flickr_id": "2588096430", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41634", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "if you work in radio and do a good job , you 've probably been invited to our awards night .", "storylet_id": "208170"}], [{"original_text": "There are some real legends that show up every year.", "album_id": "72157605669695765", "photo_flickr_id": "2588094688", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41634", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are some real legends that show up every year .", "storylet_id": "208171"}], [{"original_text": "I loved meeting the cast of \"Wait, Wait, Don't Tell me!\" What a thrill!", "album_id": "72157605669695765", "photo_flickr_id": "2588096776", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41634", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i loved meeting the cast of `` wait , wait , do n't tell me ! '' what a thrill !", "storylet_id": "208172"}], [{"original_text": "There's a lot of meeting and greeting time too---it's a good networking opportunity.", "album_id": "72157605669695765", "photo_flickr_id": "2588095362", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41634", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there 's a lot of meeting and greeting time too -- -it 's a good networking opportunity .", "storylet_id": "208173"}], [{"original_text": "The coveted Golden Radio award is always the highlight of the night.", "album_id": "72157605669695765", "photo_flickr_id": "2588243136", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41634", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the coveted golden radio award is always the highlight of the night .", "storylet_id": "208174"}], [{"original_text": "taking a walk to the new library. Here we go with a corridor of trees.", "album_id": "72157606699672205", "photo_flickr_id": "2757885073", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41635", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "taking a walk to the new library . here we go with a corridor of trees .", "storylet_id": "208175"}], [{"original_text": "almost there! Short walk.", "album_id": "72157606699672205", "photo_flickr_id": "2758754706", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41635", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "almost there ! short walk .", "storylet_id": "208176"}], [{"original_text": "There is the beautiful building.", "album_id": "72157606699672205", "photo_flickr_id": "2757885067", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41635", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is the beautiful building .", "storylet_id": "208177"}], [{"original_text": "here is the front doors.", "album_id": "72157606699672205", "photo_flickr_id": "2758754716", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41635", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is the front doors .", "storylet_id": "208178"}], [{"original_text": "Here we are, welcome to the library.", "album_id": "72157606699672205", "photo_flickr_id": "2757963137", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41635", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here we are , welcome to the library .", "storylet_id": "208179"}], [{"original_text": "The marathon was on a fall Saturday.", "album_id": "72157606699672205", "photo_flickr_id": "2758835622", "setting": "first-2-pick-and-tell", "worker_id": "DX1XX31HJ1PPCKK", "story_id": "41636", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the marathon was on a fall saturday .", "storylet_id": "208180"}], [{"original_text": "Teams competed to raise money for different causes and the spectators could vote on the best presentation. ", "album_id": "72157606699672205", "photo_flickr_id": "2757963159", "setting": "first-2-pick-and-tell", "worker_id": "DX1XX31HJ1PPCKK", "story_id": "41636", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "teams competed to raise money for different causes and the spectators could vote on the best presentation .", "storylet_id": "208181"}], [{"original_text": "The race started at the center of campus.", "album_id": "72157606699672205", "photo_flickr_id": "2757885067", "setting": "first-2-pick-and-tell", "worker_id": "DX1XX31HJ1PPCKK", "story_id": "41636", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the race started at the center of campus .", "storylet_id": "208182"}], [{"original_text": "One part of the marathon circled the campus lake.", "album_id": "72157606699672205", "photo_flickr_id": "2758754674", "setting": "first-2-pick-and-tell", "worker_id": "DX1XX31HJ1PPCKK", "story_id": "41636", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one part of the marathon circled the campus lake .", "storylet_id": "208183"}], [{"original_text": "The winner of the charity drive was announced after the race was over.", "album_id": "72157606699672205", "photo_flickr_id": "2757963261", "setting": "first-2-pick-and-tell", "worker_id": "DX1XX31HJ1PPCKK", "story_id": "41636", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the winner of the charity drive was announced after the race was over .", "storylet_id": "208184"}], [{"original_text": "I walked down a narrow road between fresh trees.", "album_id": "72157606699672205", "photo_flickr_id": "2757885073", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41637", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i walked down a narrow road between fresh trees .", "storylet_id": "208185"}], [{"original_text": "The local library looked nice with a giant tree in front.", "album_id": "72157606699672205", "photo_flickr_id": "2758754706", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41637", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the local library looked nice with a giant tree in front .", "storylet_id": "208186"}], [{"original_text": "The government building looked just like the ones in DC.", "album_id": "72157606699672205", "photo_flickr_id": "2757885067", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41637", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the government building looked just like the ones in location .", "storylet_id": "208187"}], [{"original_text": "I approached the library from the front.", "album_id": "72157606699672205", "photo_flickr_id": "2758754716", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41637", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i approached the library from the front .", "storylet_id": "208188"}], [{"original_text": "I took one more photo before I went in the library and read a couple books. ", "album_id": "72157606699672205", "photo_flickr_id": "2757963137", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41637", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i took one more photo before i went in the library and read a couple books .", "storylet_id": "208189"}], [{"original_text": "I've worked at our college library since I was 25, which means I've walked this wooded path to work for 30 years now.", "album_id": "72157606699672205", "photo_flickr_id": "2757885073", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41638", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 've worked at our college library since i was 25 , which means i 've walked this wooded path to work for 30 years now .", "storylet_id": "208190"}], [{"original_text": "I can say almost every day of work has been a happy one.", "album_id": "72157606699672205", "photo_flickr_id": "2758754706", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41638", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i can say almost every day of work has been a happy one .", "storylet_id": "208191"}], [{"original_text": "I love the beauty of our campus.", "album_id": "72157606699672205", "photo_flickr_id": "2757885067", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41638", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i love the beauty of our campus .", "storylet_id": "208192"}], [{"original_text": "The Elizabeth Dafoe Library is one of the best college libraries in the midwest.", "album_id": "72157606699672205", "photo_flickr_id": "2758754716", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41638", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the organization organization organization is one of the best college libraries in the midwest .", "storylet_id": "208193"}], [{"original_text": "I'd like to think my employment has played just a little part in that being the case.", "album_id": "72157606699672205", "photo_flickr_id": "2757963137", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41638", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'd like to think my employment has played just a little part in that being the case .", "storylet_id": "208194"}], [{"original_text": "There was a marathon going on around the city today.", "album_id": "72157606699672205", "photo_flickr_id": "2758835622", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41639", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a marathon going on around the city today .", "storylet_id": "208195"}], [{"original_text": "These were the fliers that explained the marathon.", "album_id": "72157606699672205", "photo_flickr_id": "2757963159", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41639", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these were the fliers that explained the marathon .", "storylet_id": "208196"}], [{"original_text": "This building was where the marathon was going to run past.", "album_id": "72157606699672205", "photo_flickr_id": "2757885067", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41639", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this building was where the marathon was going to run past .", "storylet_id": "208197"}], [{"original_text": "You would also be able to see this lake on your marathon track.", "album_id": "72157606699672205", "photo_flickr_id": "2758754674", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41639", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you would also be able to see this lake on your marathon track .", "storylet_id": "208198"}], [{"original_text": "At the end of the race, you will be presented with an award.", "album_id": "72157606699672205", "photo_flickr_id": "2757963261", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41639", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the race , you will be presented with an award .", "storylet_id": "208199"}], [{"original_text": "Our family went up to a bike race this last week.", "album_id": "72157607202685229", "photo_flickr_id": "2842903955", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "41640", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family went up to a bike race this last week .", "storylet_id": "208200"}], [{"original_text": "Here was the bike I used.", "album_id": "72157607202685229", "photo_flickr_id": "2843706584", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "41640", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here was the bike i used .", "storylet_id": "208201"}], [{"original_text": "Throughout the race, photographers took shots of the racers like this one!", "album_id": "72157607202685229", "photo_flickr_id": "2843698812", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "41640", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "throughout the race , photographers took shots of the racers like this one !", "storylet_id": "208202"}], [{"original_text": "Here's my brother finishing the race.", "album_id": "72157607202685229", "photo_flickr_id": "2843717014", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "41640", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's my brother finishing the race .", "storylet_id": "208203"}], [{"original_text": "Although we weren't up on the podium like this guy, that's what we're going for next time!", "album_id": "72157607202685229", "photo_flickr_id": "2843735724", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "41640", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "although we were n't up on the podium like this guy , that 's what we 're going for next time !", "storylet_id": "208204"}], [{"original_text": "We went to watch a bike race yesterday.", "album_id": "72157607202685229", "photo_flickr_id": "2843696522", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41641", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to watch a bike race yesterday .", "storylet_id": "208205"}], [{"original_text": "The bikes were very sleek and fast looking.", "album_id": "72157607202685229", "photo_flickr_id": "2843706584", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41641", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bikes were very sleek and fast looking .", "storylet_id": "208206"}], [{"original_text": "We saw the winner cross the finish line.", "album_id": "72157607202685229", "photo_flickr_id": "2843717014", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41641", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw the winner cross the finish line .", "storylet_id": "208207"}], [{"original_text": "We had a big celebration as the champ got his trophy. ", "album_id": "72157607202685229", "photo_flickr_id": "2843735724", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41641", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a big celebration as the champ got his trophy .", "storylet_id": "208208"}], [{"original_text": "At the end, everyone packed up there bike and went home.", "album_id": "72157607202685229", "photo_flickr_id": "2843738478", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41641", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , everyone packed up there bike and went home .", "storylet_id": "208209"}], [{"original_text": "I knew I needed to pace myself during the race so I stayed mid pack for most of the way.", "album_id": "72157607202685229", "photo_flickr_id": "2843696522", "setting": "last-3-pick-old-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "41642", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i knew i needed to pace myself during the race so i stayed mid pack for most of the way .", "storylet_id": "208210"}], [{"original_text": "I wanted to use this bike, but I won a few races with it already. It's time to retire it.", "album_id": "72157607202685229", "photo_flickr_id": "2843706584", "setting": "last-3-pick-old-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "41642", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i wanted to use this bike , but i won a few races with it already . it 's time to retire it .", "storylet_id": "208211"}], [{"original_text": "It was a tough and long race but I made it to the finish line, and was the first one to do so.", "album_id": "72157607202685229", "photo_flickr_id": "2843717014", "setting": "last-3-pick-old-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "41642", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a tough and long race but i made it to the finish line , and was the first one to do so .", "storylet_id": "208212"}], [{"original_text": "They congratulated me with a trophy, flowers, and a check.", "album_id": "72157607202685229", "photo_flickr_id": "2843735724", "setting": "last-3-pick-old-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "41642", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they congratulated me with a trophy , flowers , and a check .", "storylet_id": "208213"}], [{"original_text": "I was beat and I needed to get back home. I strapped my backup bikes to the roof of my car and went on my way", "album_id": "72157607202685229", "photo_flickr_id": "2843738478", "setting": "last-3-pick-old-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "41642", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was beat and i needed to get back home . i strapped my backup bikes to the roof of my car and went on my way", "storylet_id": "208214"}], [{"original_text": "We arrived for the big bike race very early in the morning.", "album_id": "72157607202685229", "photo_flickr_id": "2842903955", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41643", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived for the big bike race very early in the morning .", "storylet_id": "208215"}], [{"original_text": "I had bought a new bike for the race. I didn't tell my wife how much it cost.", "album_id": "72157607202685229", "photo_flickr_id": "2843706584", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41643", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had bought a new bike for the race . i did n't tell my wife how much it cost .", "storylet_id": "208216"}], [{"original_text": "The race was challenging. The route was gorgeous, though.", "album_id": "72157607202685229", "photo_flickr_id": "2843698812", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41643", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the race was challenging . the route was gorgeous , though .", "storylet_id": "208217"}], [{"original_text": "I realized a little bit from the finish line that I was going to win.", "album_id": "72157607202685229", "photo_flickr_id": "2843717014", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41643", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i realized a little bit from the finish line that i was going to win .", "storylet_id": "208218"}], [{"original_text": "The moment of getting my trophy was truly one of the best moments of my life.", "album_id": "72157607202685229", "photo_flickr_id": "2843735724", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "41643", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the moment of getting my trophy was truly one of the best moments of my life .", "storylet_id": "208219"}], [{"original_text": "Everyone was getting ready for the bike marathon.", "album_id": "72157607202685229", "photo_flickr_id": "2842903955", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41644", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was getting ready for the bike marathon .", "storylet_id": "208220"}], [{"original_text": "This was one of the many bikes that were present at the race.", "album_id": "72157607202685229", "photo_flickr_id": "2843706584", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41644", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was one of the many bikes that were present at the race .", "storylet_id": "208221"}], [{"original_text": "The bikers were in full force as they raced toward the finish line.", "album_id": "72157607202685229", "photo_flickr_id": "2843698812", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41644", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bikers were in full force as they raced toward the finish line .", "storylet_id": "208222"}], [{"original_text": "Many approached the finish line while others were still trying to get there.", "album_id": "72157607202685229", "photo_flickr_id": "2843717014", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41644", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many approached the finish line while others were still trying to get there .", "storylet_id": "208223"}], [{"original_text": "In the end, the winner received a special trophy.", "album_id": "72157607202685229", "photo_flickr_id": "2843735724", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41644", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , the winner received a special trophy .", "storylet_id": "208224"}], [{"original_text": "It was a formal ceremony with different branches of the military present.", "album_id": "72157607377451810", "photo_flickr_id": "2870397437", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "41645", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a formal ceremony with different branches of the military present .", "storylet_id": "208225"}], [{"original_text": "First there was a speaker who addressed the audience.", "album_id": "72157607377451810", "photo_flickr_id": "2871225648", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "41645", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first there was a speaker who addressed the audience .", "storylet_id": "208226"}], [{"original_text": "Dignitaries were there to give out awards.", "album_id": "72157607377451810", "photo_flickr_id": "2871228302", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "41645", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dignitaries were there to give out awards .", "storylet_id": "208227"}], [{"original_text": "There were civilian awards given, as well.", "album_id": "72157607377451810", "photo_flickr_id": "2871228032", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "41645", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were civilian awards given , as well .", "storylet_id": "208228"}], [{"original_text": "Everyone got a their picture taken at the end.", "album_id": "72157607377451810", "photo_flickr_id": "2871224874", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "41645", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone got a their picture taken at the end .", "storylet_id": "208229"}], [{"original_text": "Unfortunately, my uncle Bob had passed away. He was a marine for the united states.", "album_id": "72157607377451810", "photo_flickr_id": "2870397437", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "41646", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "unfortunately , my uncle [male] had passed away . he was a marine for the united states .", "storylet_id": "208230"}], [{"original_text": "A few marines salute my uncle's grave. It was very solemn.", "album_id": "72157607377451810", "photo_flickr_id": "2871228032", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "41646", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a few marines salute my uncle 's grave . it was very solemn .", "storylet_id": "208231"}], [{"original_text": "They held a small parade in his honor. Lots of people were in attendance.", "album_id": "72157607377451810", "photo_flickr_id": "2870395821", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "41646", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they held a small parade in his honor . lots of people were in attendance .", "storylet_id": "208232"}], [{"original_text": "There was a silent prayer being said. It was very beautiful, and brought me to tears.", "album_id": "72157607377451810", "photo_flickr_id": "2870392771", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "41646", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a silent prayer being said . it was very beautiful , and brought me to tears .", "storylet_id": "208233"}], [{"original_text": "Here are some of the junior members for the local marine core. They looked very dapper.", "album_id": "72157607377451810", "photo_flickr_id": "2870395023", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "41646", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here are some of the junior members for the local marine core . they looked very dapper .", "storylet_id": "208234"}], [{"original_text": "The soldiers were somber as they celebrated their fallen comrade.", "album_id": "72157607377451810", "photo_flickr_id": "2870397437", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "41647", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the soldiers were somber as they celebrated their fallen comrade .", "storylet_id": "208235"}], [{"original_text": "They stood proud as they waited for further instruction.", "album_id": "72157607377451810", "photo_flickr_id": "2871228032", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "41647", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they stood proud as they waited for further instruction .", "storylet_id": "208236"}], [{"original_text": "The then proceeded through the streets, carrying flags.", "album_id": "72157607377451810", "photo_flickr_id": "2870395821", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "41647", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the then proceeded through the streets , carrying flags .", "storylet_id": "208237"}], [{"original_text": "The day was one of sadness and great pride.", "album_id": "72157607377451810", "photo_flickr_id": "2870392771", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "41647", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the day was one of sadness and great pride .", "storylet_id": "208238"}], [{"original_text": "They served our country and the soldiers were honoring them.", "album_id": "72157607377451810", "photo_flickr_id": "2870395023", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "41647", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they served our country and the soldiers were honoring them .", "storylet_id": "208239"}], [{"original_text": "A Marine laid a wreath at a Marine's grave.", "album_id": "72157607377451810", "photo_flickr_id": "2870397437", "setting": "last-3-pick-old-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "41648", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a marine laid a wreath at a marine 's grave .", "storylet_id": "208240"}], [{"original_text": "The Honor Guard stood by as one of the men from the Marines unit paid his respects.", "album_id": "72157607377451810", "photo_flickr_id": "2871225648", "setting": "last-3-pick-old-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "41648", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the honor guard stood by as one of the men from the organization unit paid his respects .", "storylet_id": "208241"}], [{"original_text": "There were several people there to honor the Marine.", "album_id": "72157607377451810", "photo_flickr_id": "2871228302", "setting": "last-3-pick-old-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "41648", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were several people there to honor the marine .", "storylet_id": "208242"}], [{"original_text": "All of the Marines and the Honor Guard thanked each other for their service.", "album_id": "72157607377451810", "photo_flickr_id": "2871228032", "setting": "last-3-pick-old-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "41648", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the organization and the honor guard thanked each other for their service .", "storylet_id": "208243"}], [{"original_text": "We should all take the time to thank our fallen soldiers for their service and pay our respects. ", "album_id": "72157607377451810", "photo_flickr_id": "2871224874", "setting": "last-3-pick-old-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "41648", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we should all take the time to thank our fallen soldiers for their service and pay our respects .", "storylet_id": "208244"}], [{"original_text": "This was a funeral for one of the fallen soldiers.", "album_id": "72157607377451810", "photo_flickr_id": "2870397437", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41649", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was a funeral for one of the fallen soldiers .", "storylet_id": "208245"}], [{"original_text": "Many people attended including friends and family.", "album_id": "72157607377451810", "photo_flickr_id": "2871228032", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41649", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people attended including friends and family .", "storylet_id": "208246"}], [{"original_text": "They marched across the street honoring this soldier.", "album_id": "72157607377451810", "photo_flickr_id": "2870395821", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41649", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they marched across the street honoring this soldier .", "storylet_id": "208247"}], [{"original_text": "Many people were in attendance and special speeches were given in honor of him.", "album_id": "72157607377451810", "photo_flickr_id": "2870392771", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41649", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many people were in attendance and special speeches were given in honor of him .", "storylet_id": "208248"}], [{"original_text": "Many men and even kids were in attendance that day.", "album_id": "72157607377451810", "photo_flickr_id": "2870395023", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41649", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many men and even kids were in attendance that day .", "storylet_id": "208249"}], [{"original_text": "I won free tickets to attend The Vloggies Awards.", "album_id": "72157594362014751", "photo_flickr_id": "289683548", "setting": "first-2-pick-and-tell", "worker_id": "GI1GYGWF3OOS5L0", "story_id": "41650", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i won free tickets to attend the vloggies awards .", "storylet_id": "208250"}], [{"original_text": "This is me on the right, and my best friend who I chose to bring with me.", "album_id": "72157594362014751", "photo_flickr_id": "289683363", "setting": "first-2-pick-and-tell", "worker_id": "GI1GYGWF3OOS5L0", "story_id": "41650", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is me on the right , and my best friend who i chose to bring with me .", "storylet_id": "208251"}], [{"original_text": "Here's a photo of some of our favorite Vloggers.", "album_id": "72157594362014751", "photo_flickr_id": "289697198", "setting": "first-2-pick-and-tell", "worker_id": "GI1GYGWF3OOS5L0", "story_id": "41650", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's a photo of some of our favorite vloggers .", "storylet_id": "208252"}], [{"original_text": "Bunny and her pet bunny Carrot were there too!", "album_id": "72157594362014751", "photo_flickr_id": "289704895", "setting": "first-2-pick-and-tell", "worker_id": "GI1GYGWF3OOS5L0", "story_id": "41650", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "bunny and her pet bunny carrot were there too !", "storylet_id": "208253"}], [{"original_text": "At the end of the night a cash award was given to the top voted Vlogger.", "album_id": "72157594362014751", "photo_flickr_id": "289665856", "setting": "first-2-pick-and-tell", "worker_id": "GI1GYGWF3OOS5L0", "story_id": "41650", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night a cash award was given to the top voted vlogger .", "storylet_id": "208254"}], [{"original_text": "It was the night of the 1st annual \"Vloggies\" awards dinner.", "album_id": "72157594362014751", "photo_flickr_id": "289683548", "setting": "first-2-pick-and-tell", "worker_id": "GZ5FNG4K4UMQC1T", "story_id": "41651", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the night of the 1st annual `` vloggies '' awards dinner .", "storylet_id": "208255"}], [{"original_text": "Every serious vlogger was invited: human or not.", "album_id": "72157594362014751", "photo_flickr_id": "289704895", "setting": "first-2-pick-and-tell", "worker_id": "GZ5FNG4K4UMQC1T", "story_id": "41651", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "every serious vlogger was invited : human or not .", "storylet_id": "208256"}], [{"original_text": "Everyone was dressed to the 9s in their Sunday best.", "album_id": "72157594362014751", "photo_flickr_id": "289682614", "setting": "first-2-pick-and-tell", "worker_id": "GZ5FNG4K4UMQC1T", "story_id": "41651", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was dressed to the 9s in their sunday best .", "storylet_id": "208257"}], [{"original_text": "That night, they were presenting a giant check for $2000 to the best Vlogger.", "album_id": "72157594362014751", "photo_flickr_id": "289665856", "setting": "first-2-pick-and-tell", "worker_id": "GZ5FNG4K4UMQC1T", "story_id": "41651", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that night , they were presenting a giant check for $ 2000 to the best vlogger .", "storylet_id": "208258"}], [{"original_text": "The winner was interviewed by \"Mr Quackers\" from the \"Click Clack Quick Quack\" vlog.", "album_id": "72157594362014751", "photo_flickr_id": "289704748", "setting": "first-2-pick-and-tell", "worker_id": "GZ5FNG4K4UMQC1T", "story_id": "41651", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the winner was interviewed by `` mr quackers '' from the `` click clack quick quack '' vlog .", "storylet_id": "208259"}], [{"original_text": "It's time for the Vloggies, an award ceremony celebrating vlogs.", "album_id": "72157594362014751", "photo_flickr_id": "289683548", "setting": "last-3-pick-old-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "41652", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's time for the vloggies , an award ceremony celebrating vlogs .", "storylet_id": "208260"}], [{"original_text": "Many people came by to support the cause, some came dressed in ethnic attire.", "album_id": "72157594362014751", "photo_flickr_id": "289704895", "setting": "last-3-pick-old-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "41652", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people came by to support the cause , some came dressed in ethnic attire .", "storylet_id": "208261"}], [{"original_text": "Others came in in crazy striped purple suits.", "album_id": "72157594362014751", "photo_flickr_id": "289682614", "setting": "last-3-pick-old-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "41652", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others came in in crazy striped purple suits .", "storylet_id": "208262"}], [{"original_text": "At the end of the day a winner was awarded with a check.", "album_id": "72157594362014751", "photo_flickr_id": "289665856", "setting": "last-3-pick-old-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "41652", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the end of the day a winner was awarded with a check .", "storylet_id": "208263"}], [{"original_text": "Afterwards, people had a blast with socializing with mascots and others.", "album_id": "72157594362014751", "photo_flickr_id": "289704748", "setting": "last-3-pick-old-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "41652", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , people had a blast with socializing with mascots and others .", "storylet_id": "208264"}], [{"original_text": "It was the vloggies! A day that vloggers look forward to.", "album_id": "72157594362014751", "photo_flickr_id": "289683548", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41653", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the vloggies ! a day that vloggers look forward to .", "storylet_id": "208265"}], [{"original_text": "Jean brought in the gifts to be given out.", "album_id": "72157594362014751", "photo_flickr_id": "289704895", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41653", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] brought in the gifts to be given out .", "storylet_id": "208266"}], [{"original_text": "And Tony had put on his best suit. ", "album_id": "72157594362014751", "photo_flickr_id": "289682614", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41653", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and [male] had put on his best suit .", "storylet_id": "208267"}], [{"original_text": "A group of people got up to award a organizaion some money for all the work they did with vlogggers.", "album_id": "72157594362014751", "photo_flickr_id": "289665856", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41653", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a group of people got up to award a organizaion some money for all the work they did with vlogggers .", "storylet_id": "208268"}], [{"original_text": "And Joey hung out with the duck. I'd call it a successful night!", "album_id": "72157594362014751", "photo_flickr_id": "289704748", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41653", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and [male] hung out with the duck . i 'd call it a successful night !", "storylet_id": "208269"}], [{"original_text": "we got together at the annual awards banquet ", "album_id": "72157594362014751", "photo_flickr_id": "289683548", "setting": "last-3-pick-old-and-tell", "worker_id": "TK8Y8OKWVF1YM52", "story_id": "41654", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got together at the annual awards banquet", "storylet_id": "208270"}], [{"original_text": "as I arrive with my best friend ", "album_id": "72157594362014751", "photo_flickr_id": "289683363", "setting": "last-3-pick-old-and-tell", "worker_id": "TK8Y8OKWVF1YM52", "story_id": "41654", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as i arrive with my best friend", "storylet_id": "208271"}], [{"original_text": "we seen behind us the fun goofy co-workers ", "album_id": "72157594362014751", "photo_flickr_id": "289697198", "setting": "last-3-pick-old-and-tell", "worker_id": "TK8Y8OKWVF1YM52", "story_id": "41654", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we seen behind us the fun goofy co-workers", "storylet_id": "208272"}], [{"original_text": "and we had to thank ming for bringing the 2nd prize ", "album_id": "72157594362014751", "photo_flickr_id": "289704895", "setting": "last-3-pick-old-and-tell", "worker_id": "TK8Y8OKWVF1YM52", "story_id": "41654", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and we had to thank ming for bringing the 2nd prize", "storylet_id": "208273"}], [{"original_text": "then it was time for the awards we were so glad to win it was really unexpected", "album_id": "72157594362014751", "photo_flickr_id": "289665856", "setting": "last-3-pick-old-and-tell", "worker_id": "TK8Y8OKWVF1YM52", "story_id": "41654", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then it was time for the awards we were so glad to win it was really unexpected", "storylet_id": "208274"}], [{"original_text": "Guess who's having a baby?", "album_id": "72157594577527947", "photo_flickr_id": "414830410", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41655", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "guess who 's having a baby ?", "storylet_id": "208275"}], [{"original_text": "Her older sister isn't happy because she likes being the only kid in the family.", "album_id": "72157594577527947", "photo_flickr_id": "414828909", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41655", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her older sister is n't happy because she likes being the only kid in the family .", "storylet_id": "208276"}], [{"original_text": "Mama is opening lots of different presents.", "album_id": "72157594577527947", "photo_flickr_id": "414827731", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41655", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mama is opening lots of different presents .", "storylet_id": "208277"}], [{"original_text": "Her favorite presents are all the cute outfits that she is getting.", "album_id": "72157594577527947", "photo_flickr_id": "414826155", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41655", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her favorite presents are all the cute outfits that she is getting .", "storylet_id": "208278"}], [{"original_text": "At the end of the party, Daddy thanks everyone for coming and helping to celebrate the birth of their new child.", "album_id": "72157594577527947", "photo_flickr_id": "414825107", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41655", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the party , daddy thanks everyone for coming and helping to celebrate the birth of their new child .", "storylet_id": "208279"}], [{"original_text": "Jess is pregnant and having a baby shower. ", "album_id": "72157594577527947", "photo_flickr_id": "414830410", "setting": "first-2-pick-and-tell", "worker_id": "00BM2KDCWS63DAU", "story_id": "41656", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is pregnant and having a baby shower .", "storylet_id": "208280"}], [{"original_text": "Her first gift looks like a big one. ", "album_id": "72157594577527947", "photo_flickr_id": "414830063", "setting": "first-2-pick-and-tell", "worker_id": "00BM2KDCWS63DAU", "story_id": "41656", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her first gift looks like a big one .", "storylet_id": "208281"}], [{"original_text": "There's an ABC book in it. ", "album_id": "72157594577527947", "photo_flickr_id": "414826511", "setting": "first-2-pick-and-tell", "worker_id": "00BM2KDCWS63DAU", "story_id": "41656", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there 's an organization book in it .", "storylet_id": "208282"}], [{"original_text": "She also pulls out a onesie.", "album_id": "72157594577527947", "photo_flickr_id": "414826155", "setting": "first-2-pick-and-tell", "worker_id": "00BM2KDCWS63DAU", "story_id": "41656", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she also pulls out a onesie .", "storylet_id": "208283"}], [{"original_text": "And finally, some little hand booties so the baby does not scratch their cheeks. ", "album_id": "72157594577527947", "photo_flickr_id": "414825804", "setting": "first-2-pick-and-tell", "worker_id": "00BM2KDCWS63DAU", "story_id": "41656", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and finally , some little hand booties so the baby does not scratch their cheeks .", "storylet_id": "208284"}], [{"original_text": "Baby shower time for the mom to be.", "album_id": "72157594577527947", "photo_flickr_id": "414830410", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41657", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] shower time for the mom to be .", "storylet_id": "208285"}], [{"original_text": "She was so happy to get her parents, no matter the size.", "album_id": "72157594577527947", "photo_flickr_id": "414830063", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41657", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was so happy to get her parents , no matter the size .", "storylet_id": "208286"}], [{"original_text": "There were books to read for her future baby.", "album_id": "72157594577527947", "photo_flickr_id": "414826511", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41657", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were books to read for her future baby .", "storylet_id": "208287"}], [{"original_text": "As well as clothes for the baby too.", "album_id": "72157594577527947", "photo_flickr_id": "414826155", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41657", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as well as clothes for the baby too .", "storylet_id": "208288"}], [{"original_text": "She even loved the booties she got, it was a great shower.", "album_id": "72157594577527947", "photo_flickr_id": "414825804", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41657", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she even loved the booties she got , it was a great shower .", "storylet_id": "208289"}], [{"original_text": "This beautiful glowing woman has a bun in the oven.", "album_id": "72157594577527947", "photo_flickr_id": "414830410", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41658", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this beautiful glowing woman has a bun in the oven .", "storylet_id": "208290"}], [{"original_text": "This must be baby number two.", "album_id": "72157594577527947", "photo_flickr_id": "414828909", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41658", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this must be baby number two .", "storylet_id": "208291"}], [{"original_text": "Nice gifts for the baby.", "album_id": "72157594577527947", "photo_flickr_id": "414827731", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41658", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nice gifts for the baby .", "storylet_id": "208292"}], [{"original_text": "These types of garments are so needed when the baby is born.", "album_id": "72157594577527947", "photo_flickr_id": "414826155", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41658", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these types of garments are so needed when the baby is born .", "storylet_id": "208293"}], [{"original_text": "Having fun showing what is being given.", "album_id": "72157594577527947", "photo_flickr_id": "414825107", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41658", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "having fun showing what is being given .", "storylet_id": "208294"}], [{"original_text": "Looking ready to pop! Had such fun at the baby shower.", "album_id": "72157594577527947", "photo_flickr_id": "414830410", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41659", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "looking ready to pop ! had such fun at the baby shower .", "storylet_id": "208295"}], [{"original_text": "Such a cute little girl. She was the star of the show today. ", "album_id": "72157594577527947", "photo_flickr_id": "414828909", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41659", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "such a cute little girl . she was the star of the show today .", "storylet_id": "208296"}], [{"original_text": "I received so many thoughtful gifts.", "album_id": "72157594577527947", "photo_flickr_id": "414827731", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41659", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i received so many thoughtful gifts .", "storylet_id": "208297"}], [{"original_text": "Another beautiful outfit we received. ", "album_id": "72157594577527947", "photo_flickr_id": "414826155", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41659", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another beautiful outfit we received .", "storylet_id": "208298"}], [{"original_text": "Even the guys had fun at the baby shower!", "album_id": "72157594577527947", "photo_flickr_id": "414825107", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41659", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the guys had fun at the baby shower !", "storylet_id": "208299"}], [{"original_text": "A few friends gathered for dinner one day.", "album_id": "72157600219203602", "photo_flickr_id": "500045136", "setting": "first-2-pick-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "41660", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a few friends gathered for dinner one day .", "storylet_id": "208300"}], [{"original_text": "We had an entree of fish. It was really tasty!", "album_id": "72157600219203602", "photo_flickr_id": "500091931", "setting": "first-2-pick-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "41660", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had an entree of fish . it was really tasty !", "storylet_id": "208301"}], [{"original_text": "One of the friends brought over a salad, which we had with the fish.", "album_id": "72157600219203602", "photo_flickr_id": "500045048", "setting": "first-2-pick-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "41660", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the friends brought over a salad , which we had with the fish .", "storylet_id": "208302"}], [{"original_text": "For dessert they either had a choice of fresh fruit or strawberry pie.", "album_id": "72157600219203602", "photo_flickr_id": "500092009", "setting": "first-2-pick-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "41660", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "for dessert they either had a choice of fresh fruit or strawberry pie .", "storylet_id": "208303"}], [{"original_text": "They chose the strawbeery pie, which was the overwhelming favorite! It was a great dinner!", "album_id": "72157600219203602", "photo_flickr_id": "500044988", "setting": "first-2-pick-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "41660", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they chose the strawbeery pie , which was the overwhelming favorite ! it was a great dinner !", "storylet_id": "208304"}], [{"original_text": "I went to a friends house for dinner.", "album_id": "72157600219203602", "photo_flickr_id": "500044762", "setting": "first-2-pick-and-tell", "worker_id": "00BM2KDCWS63DAU", "story_id": "41661", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a friends house for dinner .", "storylet_id": "208305"}], [{"original_text": "She had fish. ", "album_id": "72157600219203602", "photo_flickr_id": "500091931", "setting": "first-2-pick-and-tell", "worker_id": "00BM2KDCWS63DAU", "story_id": "41661", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had fish .", "storylet_id": "208306"}], [{"original_text": "I brought fruit salad. ", "album_id": "72157600219203602", "photo_flickr_id": "500092009", "setting": "first-2-pick-and-tell", "worker_id": "00BM2KDCWS63DAU", "story_id": "41661", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i brought fruit salad .", "storylet_id": "208307"}], [{"original_text": "He daughter made a cheesecake. ", "album_id": "72157600219203602", "photo_flickr_id": "500044988", "setting": "first-2-pick-and-tell", "worker_id": "00BM2KDCWS63DAU", "story_id": "41661", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he daughter made a cheesecake .", "storylet_id": "208308"}], [{"original_text": "Her spouse made macaroni. ", "album_id": "72157600219203602", "photo_flickr_id": "500045048", "setting": "first-2-pick-and-tell", "worker_id": "00BM2KDCWS63DAU", "story_id": "41661", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her spouse made macaroni .", "storylet_id": "208309"}], [{"original_text": "Having a get together with some friends.", "album_id": "72157600219203602", "photo_flickr_id": "500045136", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41662", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "having a get together with some friends .", "storylet_id": "208310"}], [{"original_text": "We are having lunch and it starts with fish.", "album_id": "72157600219203602", "photo_flickr_id": "500091931", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41662", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are having lunch and it starts with fish .", "storylet_id": "208311"}], [{"original_text": "There is also macaroni salad and it looks delicious.", "album_id": "72157600219203602", "photo_flickr_id": "500045048", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41662", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is also macaroni salad and it looks delicious .", "storylet_id": "208312"}], [{"original_text": "A mango strawberry salad will be a great desert.", "album_id": "72157600219203602", "photo_flickr_id": "500092009", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41662", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a mango strawberry salad will be a great desert .", "storylet_id": "208313"}], [{"original_text": "There might not be any room left for this lovely desert.", "album_id": "72157600219203602", "photo_flickr_id": "500044988", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41662", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there might not be any room left for this lovely desert .", "storylet_id": "208314"}], [{"original_text": "The food for the party turned out perfectly!", "album_id": "72157600219203602", "photo_flickr_id": "500044762", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41663", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the food for the party turned out perfectly !", "storylet_id": "208315"}], [{"original_text": "Not sure I would like these, but they were so good!", "album_id": "72157600219203602", "photo_flickr_id": "500091931", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41663", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "not sure i would like these , but they were so good !", "storylet_id": "208316"}], [{"original_text": "A fresh fruit salad. It was beautiful, healthy, and delicious.", "album_id": "72157600219203602", "photo_flickr_id": "500092009", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41663", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a fresh fruit salad . it was beautiful , healthy , and delicious .", "storylet_id": "208317"}], [{"original_text": "This tart was so delicious. I could have eaten the whole thing.", "album_id": "72157600219203602", "photo_flickr_id": "500044988", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41663", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this tart was so delicious . i could have eaten the whole thing .", "storylet_id": "208318"}], [{"original_text": "Another favorite was this pasta salad. I need the recipe for it now!", "album_id": "72157600219203602", "photo_flickr_id": "500045048", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41663", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "another favorite was this pasta salad . i need the recipe for it now !", "storylet_id": "208319"}], [{"original_text": "The family all gathered to have a nice dinner together. First, they socialized.", "album_id": "72157600219203602", "photo_flickr_id": "500045136", "setting": "last-3-pick-old-and-tell", "worker_id": "PNUG1JQ45H6BR3G", "story_id": "41664", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family all gathered to have a nice dinner together . first , they socialized .", "storylet_id": "208320"}], [{"original_text": "Then, the first course was a fish dish.", "album_id": "72157600219203602", "photo_flickr_id": "500091931", "setting": "last-3-pick-old-and-tell", "worker_id": "PNUG1JQ45H6BR3G", "story_id": "41664", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then , the first course was a fish dish .", "storylet_id": "208321"}], [{"original_text": "The second course was a delicious pasta.", "album_id": "72157600219203602", "photo_flickr_id": "500045048", "setting": "last-3-pick-old-and-tell", "worker_id": "PNUG1JQ45H6BR3G", "story_id": "41664", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the second course was a delicious pasta .", "storylet_id": "208322"}], [{"original_text": "After the pasta, the family had fruit salad.", "album_id": "72157600219203602", "photo_flickr_id": "500092009", "setting": "last-3-pick-old-and-tell", "worker_id": "PNUG1JQ45H6BR3G", "story_id": "41664", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the pasta , the family had fruit salad .", "storylet_id": "208323"}], [{"original_text": "For dessert, they ate a colorful fruit torte.", "album_id": "72157600219203602", "photo_flickr_id": "500044988", "setting": "last-3-pick-old-and-tell", "worker_id": "PNUG1JQ45H6BR3G", "story_id": "41664", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for dessert , they ate a colorful fruit torte .", "storylet_id": "208324"}], [{"original_text": "I recently attended a bridal shower with my best friend.", "album_id": "72157600219430352", "photo_flickr_id": "500131996", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "41665", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i recently attended a bridal shower with my best friend .", "storylet_id": "208325"}], [{"original_text": "This is a picture of her with her sister.", "album_id": "72157600219430352", "photo_flickr_id": "500133000", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "41665", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of her with her sister .", "storylet_id": "208326"}], [{"original_text": "This was her mother and mother-in-law to be.", "album_id": "72157600219430352", "photo_flickr_id": "500133558", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "41665", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was her mother and mother-in-law to be .", "storylet_id": "208327"}], [{"original_text": "We also had a great dinner that evening.", "album_id": "72157600219430352", "photo_flickr_id": "500139362", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "41665", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also had a great dinner that evening .", "storylet_id": "208328"}], [{"original_text": "I got a picture with myself, the birde to be and her mother, it was a great day.", "album_id": "72157600219430352", "photo_flickr_id": "500187021", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "41665", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i got a picture with myself , the birde to be and her mother , it was a great day .", "storylet_id": "208329"}], [{"original_text": "The sisters are having drinks to celebrate. ", "album_id": "72157600219430352", "photo_flickr_id": "500177137", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41666", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sisters are having drinks to celebrate .", "storylet_id": "208330"}], [{"original_text": "It's our little sister's baby shower and she's looking at the gifts. ", "album_id": "72157600219430352", "photo_flickr_id": "500135480", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41666", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's our little sister 's baby shower and she 's looking at the gifts .", "storylet_id": "208331"}], [{"original_text": "She opened the present to find it's a gift for a baby toy. ", "album_id": "72157600219430352", "photo_flickr_id": "500181195", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41666", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she opened the present to find it 's a gift for a baby toy .", "storylet_id": "208332"}], [{"original_text": "Another present is a baby's outfit. ", "album_id": "72157600219430352", "photo_flickr_id": "500181903", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41666", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another present is a baby 's outfit .", "storylet_id": "208333"}], [{"original_text": "Everyone is gathered around the table to watch her open her gifts. ", "album_id": "72157600219430352", "photo_flickr_id": "500139362", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41666", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone is gathered around the table to watch her open her gifts .", "storylet_id": "208334"}], [{"original_text": "Together once again, this time celebrate our friends baby shower.", "album_id": "72157600219430352", "photo_flickr_id": "500177137", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41667", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "together once again , this time celebrate our friends baby shower .", "storylet_id": "208335"}], [{"original_text": "She loved all her presents just as im sure the baby will too.", "album_id": "72157600219430352", "photo_flickr_id": "500135480", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41667", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she loved all her presents just as im sure the baby will too .", "storylet_id": "208336"}], [{"original_text": "Everybody couldnt wait to show off what they gave her such as this baby tub.", "album_id": "72157600219430352", "photo_flickr_id": "500181195", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41667", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everybody couldnt wait to show off what they gave her such as this baby tub .", "storylet_id": "208337"}], [{"original_text": "She loved this gorgeous white jacket. Lets hope it fits.", "album_id": "72157600219430352", "photo_flickr_id": "500181903", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41667", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she loved this gorgeous white jacket . lets hope it fits .", "storylet_id": "208338"}], [{"original_text": "The whole family was there to celebrate, baby showers are the best.", "album_id": "72157600219430352", "photo_flickr_id": "500139362", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41667", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the whole family was there to celebrate , baby showers are the best .", "storylet_id": "208339"}], [{"original_text": "Friends and family are gathering for the baby shower.", "album_id": "72157600219430352", "photo_flickr_id": "500177137", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41668", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends and family are gathering for the baby shower .", "storylet_id": "208340"}], [{"original_text": "Mom to be is opening the gifts that are being given.", "album_id": "72157600219430352", "photo_flickr_id": "500135480", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41668", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom to be is opening the gifts that are being given .", "storylet_id": "208341"}], [{"original_text": "She is getting things she needs to help her through the early years.", "album_id": "72157600219430352", "photo_flickr_id": "500181195", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41668", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she is getting things she needs to help her through the early years .", "storylet_id": "208342"}], [{"original_text": "Everyone is very happy to be sharing in this event.", "album_id": "72157600219430352", "photo_flickr_id": "500181903", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41668", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone is very happy to be sharing in this event .", "storylet_id": "208343"}], [{"original_text": "Now its time to eat and have some good food and cake.", "album_id": "72157600219430352", "photo_flickr_id": "500139362", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41668", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now its time to eat and have some good food and cake .", "storylet_id": "208344"}], [{"original_text": "Sister make the best friends. ", "album_id": "72157600219430352", "photo_flickr_id": "500131996", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41669", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sister make the best friends .", "storylet_id": "208345"}], [{"original_text": "Best friends forever.", "album_id": "72157600219430352", "photo_flickr_id": "500133000", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41669", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "best friends forever .", "storylet_id": "208346"}], [{"original_text": "These two were the life of the party.", "album_id": "72157600219430352", "photo_flickr_id": "500133558", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41669", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these two were the life of the party .", "storylet_id": "208347"}], [{"original_text": "What a great group of gals. We had a blast together. ", "album_id": "72157600219430352", "photo_flickr_id": "500139362", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41669", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what a great group of gals . we had a blast together .", "storylet_id": "208348"}], [{"original_text": "So happy to spend time with these wonderful women. ", "album_id": "72157600219430352", "photo_flickr_id": "500187021", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41669", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so happy to spend time with these wonderful women .", "storylet_id": "208349"}], [{"original_text": "I took a selfie when my husband and I went to the beach.", "album_id": "72157601477183170", "photo_flickr_id": "1131502491", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41670", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a selfie when my husband and i went to the beach .", "storylet_id": "208350"}], [{"original_text": "He made the decision to play pool after the beach.", "album_id": "72157601477183170", "photo_flickr_id": "1132356776", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41670", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he made the decision to play pool after the beach .", "storylet_id": "208351"}], [{"original_text": "I didn't realize how well he played and he picked a great bar to play at.", "album_id": "72157601477183170", "photo_flickr_id": "1132346396", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41670", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i did n't realize how well he played and he picked a great bar to play at .", "storylet_id": "208352"}], [{"original_text": "We had a good time laughing and playing.", "album_id": "72157601477183170", "photo_flickr_id": "1132353718", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41670", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a good time laughing and playing .", "storylet_id": "208353"}], [{"original_text": "I took another selfie at the end of the day because I was so happy with the time I had.", "album_id": "72157601477183170", "photo_flickr_id": "1089251066", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41670", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i took another selfie at the end of the day because i was so happy with the time i had .", "storylet_id": "208354"}], [{"original_text": "After a long day of hanging out at the beach we decided to head back into town.", "album_id": "72157601477183170", "photo_flickr_id": "1132334306", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41671", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after a long day of hanging out at the beach we decided to head back into town .", "storylet_id": "208355"}], [{"original_text": "We stopped in to see a live show in a bar.", "album_id": "72157601477183170", "photo_flickr_id": "1088831264", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41671", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped in to see a live show in a bar .", "storylet_id": "208356"}], [{"original_text": "Then we spent a couple hours drinking and playing pool.", "album_id": "72157601477183170", "photo_flickr_id": "1132350284", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41671", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we spent a couple hours drinking and playing pool .", "storylet_id": "208357"}], [{"original_text": "We had a lot of fun.", "album_id": "72157601477183170", "photo_flickr_id": "1132353718", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41671", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a lot of fun .", "storylet_id": "208358"}], [{"original_text": "It was a long day and I'm eager to get to sleep.", "album_id": "72157601477183170", "photo_flickr_id": "1088608953", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41671", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a long day and i 'm eager to get to sleep .", "storylet_id": "208359"}], [{"original_text": "This man is having a nice time on the beach.", "album_id": "72157601477183170", "photo_flickr_id": "1132334306", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41672", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this man is having a nice time on the beach .", "storylet_id": "208360"}], [{"original_text": "Then off to see a cool band playing in a nice club.", "album_id": "72157601477183170", "photo_flickr_id": "1088831264", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41672", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then off to see a cool band playing in a nice club .", "storylet_id": "208361"}], [{"original_text": "A game of pool is always fun no matter who`s playing.", "album_id": "72157601477183170", "photo_flickr_id": "1132350284", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41672", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a game of pool is always fun no matter who`s playing .", "storylet_id": "208362"}], [{"original_text": "This is a nice attractive woman to talk to, and play with.", "album_id": "72157601477183170", "photo_flickr_id": "1132353718", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41672", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a nice attractive woman to talk to , and play with .", "storylet_id": "208363"}], [{"original_text": "A quick selfie in the bathroom is always a thing to do.", "album_id": "72157601477183170", "photo_flickr_id": "1088608953", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41672", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a quick selfie in the bathroom is always a thing to do .", "storylet_id": "208364"}], [{"original_text": "Our first day of vacation. We didn't waste time hitting the beach.", "album_id": "72157601477183170", "photo_flickr_id": "1131502491", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41673", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our first day of vacation . we did n't waste time hitting the beach .", "storylet_id": "208365"}], [{"original_text": "We enjoyed a night on the town playing pool. ", "album_id": "72157601477183170", "photo_flickr_id": "1132356776", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41673", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we enjoyed a night on the town playing pool .", "storylet_id": "208366"}], [{"original_text": "Here is the pool shark in action.", "album_id": "72157601477183170", "photo_flickr_id": "1132346396", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41673", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is the pool shark in action .", "storylet_id": "208367"}], [{"original_text": "Another shot of him dominating the game.", "album_id": "72157601477183170", "photo_flickr_id": "1132353718", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41673", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another shot of him dominating the game .", "storylet_id": "208368"}], [{"original_text": "I escaped for a second to take a bathroom selfie!", "album_id": "72157601477183170", "photo_flickr_id": "1089251066", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41673", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i escaped for a second to take a bathroom selfie !", "storylet_id": "208369"}], [{"original_text": "We spent the day at the beach.", "album_id": "72157601477183170", "photo_flickr_id": "1131502491", "setting": "last-3-pick-old-and-tell", "worker_id": "0XQVYQ9A9NAO1UF", "story_id": "41674", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we spent the day at the beach .", "storylet_id": "208370"}], [{"original_text": "And the nights at the pool hall. ", "album_id": "72157601477183170", "photo_flickr_id": "1132356776", "setting": "last-3-pick-old-and-tell", "worker_id": "0XQVYQ9A9NAO1UF", "story_id": "41674", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the nights at the pool hall .", "storylet_id": "208371"}], [{"original_text": "If I bank it off the right side, I'll sink that 8 ball. ", "album_id": "72157601477183170", "photo_flickr_id": "1132346396", "setting": "last-3-pick-old-and-tell", "worker_id": "0XQVYQ9A9NAO1UF", "story_id": "41674", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "if i bank it off the right side , i 'll sink that 8 ball .", "storylet_id": "208372"}], [{"original_text": "And he told me he never played pool. ", "album_id": "72157601477183170", "photo_flickr_id": "1132353718", "setting": "last-3-pick-old-and-tell", "worker_id": "0XQVYQ9A9NAO1UF", "story_id": "41674", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and he told me he never played pool .", "storylet_id": "208373"}], [{"original_text": "Selfie time. I'm going to share my friends. ", "album_id": "72157601477183170", "photo_flickr_id": "1089251066", "setting": "last-3-pick-old-and-tell", "worker_id": "0XQVYQ9A9NAO1UF", "story_id": "41674", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "selfie time . i 'm going to share my friends .", "storylet_id": "208374"}], [{"original_text": "It was a big day for Baby David. ", "album_id": "72157629834766341", "photo_flickr_id": "6939790028", "setting": "first-2-pick-and-tell", "worker_id": "K46R26U0WY48QKN", "story_id": "41675", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a big day for [male] [male] .", "storylet_id": "208375"}], [{"original_text": "Mom, dad, and aunt sherry all came to celebrate. ", "album_id": "72157629834766341", "photo_flickr_id": "7085866137", "setting": "first-2-pick-and-tell", "worker_id": "K46R26U0WY48QKN", "story_id": "41675", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom , dad , and aunt sherry all came to celebrate .", "storylet_id": "208376"}], [{"original_text": "Aunt lucy and cousin mark were there as well, both got a chance to hold Baby David.", "album_id": "72157629834766341", "photo_flickr_id": "6939801966", "setting": "first-2-pick-and-tell", "worker_id": "K46R26U0WY48QKN", "story_id": "41675", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "aunt lucy and cousin mark were there as well , both got a chance to hold [male] [male] .", "storylet_id": "208377"}], [{"original_text": "Everyone wanted to get into the photos with Baby David!", "album_id": "72157629834766341", "photo_flickr_id": "7085880269", "setting": "first-2-pick-and-tell", "worker_id": "K46R26U0WY48QKN", "story_id": "41675", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone wanted to get into the photos with [male] [male] !", "storylet_id": "208378"}], [{"original_text": "There was a delicious cake to celebrate. Mazal Tov to Baby David! ", "album_id": "72157629834766341", "photo_flickr_id": "6939809904", "setting": "first-2-pick-and-tell", "worker_id": "K46R26U0WY48QKN", "story_id": "41675", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a delicious cake to celebrate . mazal tov to [male] [male] !", "storylet_id": "208379"}], [{"original_text": "The mohel and grandfather discuss the upcoming ceremony.", "album_id": "72157629834766341", "photo_flickr_id": "7085893661", "setting": "first-2-pick-and-tell", "worker_id": "9QCHKIS1KKGTH0S", "story_id": "41676", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the mohel and grandfather discuss the upcoming ceremony .", "storylet_id": "208380"}], [{"original_text": "Here is the little guy who is the center of the ceremony today. ", "album_id": "72157629834766341", "photo_flickr_id": "7085880269", "setting": "first-2-pick-and-tell", "worker_id": "9QCHKIS1KKGTH0S", "story_id": "41676", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is the little guy who is the center of the ceremony today .", "storylet_id": "208381"}], [{"original_text": "The baby boy involved has no idea what is about to happen.", "album_id": "72157629834766341", "photo_flickr_id": "6939785684", "setting": "first-2-pick-and-tell", "worker_id": "9QCHKIS1KKGTH0S", "story_id": "41676", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the baby boy involved has no idea what is about to happen .", "storylet_id": "208382"}], [{"original_text": "When it is over the appropriate forms are filled out.", "album_id": "72157629834766341", "photo_flickr_id": "6939790028", "setting": "first-2-pick-and-tell", "worker_id": "9QCHKIS1KKGTH0S", "story_id": "41676", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when it is over the appropriate forms are filled out .", "storylet_id": "208383"}], [{"original_text": "Everyone, except the little guy, get to celebrate with cake. ", "album_id": "72157629834766341", "photo_flickr_id": "6939809904", "setting": "first-2-pick-and-tell", "worker_id": "9QCHKIS1KKGTH0S", "story_id": "41676", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone , except the little guy , get to celebrate with cake .", "storylet_id": "208384"}], [{"original_text": "Heres a certificate for our baby, told ya mom he was real!", "album_id": "72157629834766341", "photo_flickr_id": "6939790028", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41677", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "heres a certificate for our baby , told ya mom he was real !", "storylet_id": "208385"}], [{"original_text": "The whole family met to celebrate, generations all under one roof.", "album_id": "72157629834766341", "photo_flickr_id": "7085866137", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41677", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the whole family met to celebrate , generations all under one roof .", "storylet_id": "208386"}], [{"original_text": "Mom loves taking pictures with us, she cant let go of the baby.", "album_id": "72157629834766341", "photo_flickr_id": "6939801966", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41677", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom loves taking pictures with us , she cant let go of the baby .", "storylet_id": "208387"}], [{"original_text": "Grandma too had to have some pictures. We didnt mind though, we are one big happy family.", "album_id": "72157629834766341", "photo_flickr_id": "7085880269", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41677", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandma too had to have some pictures . we didnt mind though , we are one big happy family .", "storylet_id": "208388"}], [{"original_text": "Baby David might be too young for his cake but we all loved it for him.", "album_id": "72157629834766341", "photo_flickr_id": "6939809904", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "41677", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] [male] might be too young for his cake but we all loved it for him .", "storylet_id": "208389"}], [{"original_text": "A beautiful certificate we were presented with for his bris. ", "album_id": "72157629834766341", "photo_flickr_id": "6939790028", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41678", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a beautiful certificate we were presented with for his bris .", "storylet_id": "208390"}], [{"original_text": "Thankful to all that were able to come celebrate.", "album_id": "72157629834766341", "photo_flickr_id": "7085866137", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41678", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "thankful to all that were able to come celebrate .", "storylet_id": "208391"}], [{"original_text": "Mom, dad, baby and grandma.", "album_id": "72157629834766341", "photo_flickr_id": "6939801966", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41678", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom , dad , baby and grandma .", "storylet_id": "208392"}], [{"original_text": "great grandma with mom, dad, and baby. ", "album_id": "72157629834766341", "photo_flickr_id": "7085880269", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41678", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "great grandma with mom , dad , and baby .", "storylet_id": "208393"}], [{"original_text": "This cake was so cute, and so so tasty. ", "album_id": "72157629834766341", "photo_flickr_id": "6939809904", "setting": "last-3-pick-old-and-tell", "worker_id": "Y53GNUESTA57FBP", "story_id": "41678", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this cake was so cute , and so so tasty .", "storylet_id": "208394"}], [{"original_text": "A picture of the certificate for baby David's event.", "album_id": "72157629834766341", "photo_flickr_id": "6939790028", "setting": "last-3-pick-old-and-tell", "worker_id": "ZBZKKQ1UD2BDLLA", "story_id": "41679", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a picture of the certificate for baby [male] 's event .", "storylet_id": "208395"}], [{"original_text": "The proud grandparents took a nice photo together.", "album_id": "72157629834766341", "photo_flickr_id": "7085866137", "setting": "last-3-pick-old-and-tell", "worker_id": "ZBZKKQ1UD2BDLLA", "story_id": "41679", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the proud grandparents took a nice photo together .", "storylet_id": "208396"}], [{"original_text": "The happy couple with baby and his Auntie.", "album_id": "72157629834766341", "photo_flickr_id": "6939801966", "setting": "last-3-pick-old-and-tell", "worker_id": "ZBZKKQ1UD2BDLLA", "story_id": "41679", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the happy couple with baby and his auntie .", "storylet_id": "208397"}], [{"original_text": "Here is the happy couple again with great grandma.", "album_id": "72157629834766341", "photo_flickr_id": "7085880269", "setting": "last-3-pick-old-and-tell", "worker_id": "ZBZKKQ1UD2BDLLA", "story_id": "41679", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is the happy couple again with great grandma .", "storylet_id": "208398"}], [{"original_text": "A picture of the lovely cake for baby David's special day.", "album_id": "72157629834766341", "photo_flickr_id": "6939809904", "setting": "last-3-pick-old-and-tell", "worker_id": "ZBZKKQ1UD2BDLLA", "story_id": "41679", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a picture of the lovely cake for baby [male] 's special day .", "storylet_id": "208399"}], [{"original_text": "Could this be Dessert Heaven?", "album_id": "72157639797726335", "photo_flickr_id": "11964674534", "setting": "first-2-pick-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "41680", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "could this be dessert [female] ?", "storylet_id": "208400"}], [{"original_text": "There are so many yummy foods here ", "album_id": "72157639797726335", "photo_flickr_id": "11964239745", "setting": "first-2-pick-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "41680", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are so many yummy foods here", "storylet_id": "208401"}], [{"original_text": "Especially the sweet ones ", "album_id": "72157639797726335", "photo_flickr_id": "11965076246", "setting": "first-2-pick-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "41680", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "especially the sweet ones", "storylet_id": "208402"}], [{"original_text": "the place settings are elegant ", "album_id": "72157639797726335", "photo_flickr_id": "11964529503", "setting": "first-2-pick-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "41680", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the place settings are elegant", "storylet_id": "208403"}], [{"original_text": "This place is classy.", "album_id": "72157639797726335", "photo_flickr_id": "11964663614", "setting": "first-2-pick-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "41680", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this place is classy .", "storylet_id": "208404"}], [{"original_text": "I ate a lot of dessert today.", "album_id": "72157639797726335", "photo_flickr_id": "11964533133", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41681", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i ate a lot of dessert today .", "storylet_id": "208405"}], [{"original_text": "They had a huge selection.", "album_id": "72157639797726335", "photo_flickr_id": "11964673874", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41681", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a huge selection .", "storylet_id": "208406"}], [{"original_text": "I also ate some fruit afterward.", "album_id": "72157639797726335", "photo_flickr_id": "11965076246", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41681", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also ate some fruit afterward .", "storylet_id": "208407"}], [{"original_text": "I went to the event.", "album_id": "72157639797726335", "photo_flickr_id": "11965074856", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41681", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i went to the event .", "storylet_id": "208408"}], [{"original_text": "There was a sign telling me to find my own seat.", "album_id": "72157639797726335", "photo_flickr_id": "11964531313", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41681", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a sign telling me to find my own seat .", "storylet_id": "208409"}], [{"original_text": "Lots of good food at the event, ", "album_id": "72157639797726335", "photo_flickr_id": "11964674534", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41682", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "lots of good food at the event ,", "storylet_id": "208410"}], [{"original_text": "the cake was beautiful ", "album_id": "72157639797726335", "photo_flickr_id": "11964239745", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41682", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cake was beautiful", "storylet_id": "208411"}], [{"original_text": "and the fruits were a nice healthy touch. ", "album_id": "72157639797726335", "photo_flickr_id": "11965076246", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41682", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the fruits were a nice healthy touch .", "storylet_id": "208412"}], [{"original_text": "All the dishes were clean, ", "album_id": "72157639797726335", "photo_flickr_id": "11964529503", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41682", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all the dishes were clean ,", "storylet_id": "208413"}], [{"original_text": "and the tables were ready to receive guests. ", "album_id": "72157639797726335", "photo_flickr_id": "11964663614", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "41682", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the tables were ready to receive guests .", "storylet_id": "208414"}], [{"original_text": "we went to this awesome food convention.", "album_id": "72157639797726335", "photo_flickr_id": "11964674534", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41683", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to this awesome food convention .", "storylet_id": "208415"}], [{"original_text": "there where so many different chefs there from all over.", "album_id": "72157639797726335", "photo_flickr_id": "11964239745", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41683", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there where so many different chefs there from all over .", "storylet_id": "208416"}], [{"original_text": "some showed what they where working with.", "album_id": "72157639797726335", "photo_flickr_id": "11965076246", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41683", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some showed what they where working with .", "storylet_id": "208417"}], [{"original_text": "others showed what they like to serve on.", "album_id": "72157639797726335", "photo_flickr_id": "11964529503", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41683", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others showed what they like to serve on .", "storylet_id": "208418"}], [{"original_text": "but all of them cooked amazingly. ", "album_id": "72157639797726335", "photo_flickr_id": "11964663614", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41683", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but all of them cooked amazingly .", "storylet_id": "208419"}], [{"original_text": "The catering company blew away the bride with their presentation and plating.", "album_id": "72157639797726335", "photo_flickr_id": "11964674534", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41684", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the catering company blew away the bride with their presentation and plating .", "storylet_id": "208420"}], [{"original_text": "The wedding cake was all she ever wanted and more.", "album_id": "72157639797726335", "photo_flickr_id": "11964239745", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41684", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wedding cake was all she ever wanted and more .", "storylet_id": "208421"}], [{"original_text": "As an appetizer the guests were served fresh fruits, but", "album_id": "72157639797726335", "photo_flickr_id": "11965076246", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41684", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as an appetizer the guests were served fresh fruits , but", "storylet_id": "208422"}], [{"original_text": "everyone waited eagerly for food to ruin their perfectly set plates and silverware.", "album_id": "72157639797726335", "photo_flickr_id": "11964529503", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41684", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone waited eagerly for food to ruin their perfectly set plates and silverware .", "storylet_id": "208423"}], [{"original_text": "The catering company presented an Asian themed buffet.", "album_id": "72157639797726335", "photo_flickr_id": "11964663614", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "41684", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the catering company presented an asian themed buffet .", "storylet_id": "208424"}], [{"original_text": "John wanted to go to his favorite restaurant for his birthday.", "album_id": "72157603692536161", "photo_flickr_id": "2185557320", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "41685", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] wanted to go to his favorite restaurant for his birthday .", "storylet_id": "208425"}], [{"original_text": "The family gathered for the meal. They were happy to spend time together.", "album_id": "72157603692536161", "photo_flickr_id": "2184771379", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "41685", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family gathered for the meal . they were happy to spend time together .", "storylet_id": "208426"}], [{"original_text": "the baby was not happy so Mom had to walk her around.", "album_id": "72157603692536161", "photo_flickr_id": "2185558994", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "41685", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the baby was not happy so mom had to walk her around .", "storylet_id": "208427"}], [{"original_text": "Then it was time for the cake, so the family sang happy birthday.", "album_id": "72157603692536161", "photo_flickr_id": "2184772413", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "41685", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then it was time for the cake , so the family sang happy birthday .", "storylet_id": "208428"}], [{"original_text": "The cake was chocolate and he was very happy to eat it. He enjoyed his party very much.", "album_id": "72157603692536161", "photo_flickr_id": "2184773131", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "41685", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cake was chocolate and he was very happy to eat it . he enjoyed his party very much .", "storylet_id": "208429"}], [{"original_text": "Every year around Ash Wednesday my family and I get together for pizza.", "album_id": "72157603692536161", "photo_flickr_id": "2184771559", "setting": "first-2-pick-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "41686", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every year around ash wednesday my family and i get together for pizza .", "storylet_id": "208430"}], [{"original_text": "We have a great time laughing and telling jokes.", "album_id": "72157603692536161", "photo_flickr_id": "2184771379", "setting": "first-2-pick-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "41686", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we have a great time laughing and telling jokes .", "storylet_id": "208431"}], [{"original_text": "Even my brother's ex-wife allowed him to bring his son!", "album_id": "72157603692536161", "photo_flickr_id": "2185557956", "setting": "first-2-pick-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "41686", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even my brother 's ex-wife allowed him to bring his son !", "storylet_id": "208432"}], [{"original_text": "We have a big family so its always a barrel of laughs!", "album_id": "72157603692536161", "photo_flickr_id": "2184772091", "setting": "first-2-pick-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "41686", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we have a big family so its always a barrel of laughs !", "storylet_id": "208433"}], [{"original_text": "But the best time of all is hanging with my two favorite cousins that I have grown up with and hardly ever see!", "album_id": "72157603692536161", "photo_flickr_id": "2185558860", "setting": "first-2-pick-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "41686", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the best time of all is hanging with my two favorite cousins that i have grown up with and hardly ever see !", "storylet_id": "208434"}], [{"original_text": "Cold winter was outside. ", "album_id": "72157603692536161", "photo_flickr_id": "2185557320", "setting": "last-3-pick-old-and-tell", "worker_id": "H2C4S5QDMZNMNX9", "story_id": "41687", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "cold winter was outside .", "storylet_id": "208435"}], [{"original_text": "Warm and fun food was inside.", "album_id": "72157603692536161", "photo_flickr_id": "2184771379", "setting": "last-3-pick-old-and-tell", "worker_id": "H2C4S5QDMZNMNX9", "story_id": "41687", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "warm and fun food was inside .", "storylet_id": "208436"}], [{"original_text": "Somebody brought a baby at a party, and he constantly cried.", "album_id": "72157603692536161", "photo_flickr_id": "2185558994", "setting": "last-3-pick-old-and-tell", "worker_id": "H2C4S5QDMZNMNX9", "story_id": "41687", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "somebody brought a baby at a party , and he constantly cried .", "storylet_id": "208437"}], [{"original_text": "Adults loudly talk and laughed despite of it. ", "album_id": "72157603692536161", "photo_flickr_id": "2184772413", "setting": "last-3-pick-old-and-tell", "worker_id": "H2C4S5QDMZNMNX9", "story_id": "41687", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "adults loudly talk and laughed despite of it .", "storylet_id": "208438"}], [{"original_text": "The baby liked a cake a lot, but he was too small to eat it.", "album_id": "72157603692536161", "photo_flickr_id": "2184773131", "setting": "last-3-pick-old-and-tell", "worker_id": "H2C4S5QDMZNMNX9", "story_id": "41687", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the baby liked a cake a lot , but he was too small to eat it .", "storylet_id": "208439"}], [{"original_text": "A snowy day makes for a gray sky.", "album_id": "72157603692536161", "photo_flickr_id": "2185557320", "setting": "last-3-pick-old-and-tell", "worker_id": "XZ36IJFPJS5EQFH", "story_id": "41688", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a snowy day makes for a gray sky .", "storylet_id": "208440"}], [{"original_text": "Friends gather for pizza and drinks.", "album_id": "72157603692536161", "photo_flickr_id": "2184771379", "setting": "last-3-pick-old-and-tell", "worker_id": "XZ36IJFPJS5EQFH", "story_id": "41688", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "friends gather for pizza and drinks .", "storylet_id": "208441"}], [{"original_text": "A friend brings her baby to the table and shows off.", "album_id": "72157603692536161", "photo_flickr_id": "2185558994", "setting": "last-3-pick-old-and-tell", "worker_id": "XZ36IJFPJS5EQFH", "story_id": "41688", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a friend brings her baby to the table and shows off .", "storylet_id": "208442"}], [{"original_text": "Pictures of the family are taken to remember the evening.", "album_id": "72157603692536161", "photo_flickr_id": "2184772413", "setting": "last-3-pick-old-and-tell", "worker_id": "XZ36IJFPJS5EQFH", "story_id": "41688", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "pictures of the family are taken to remember the evening .", "storylet_id": "208443"}], [{"original_text": "Deserts are served and eaten by the kids.", "album_id": "72157603692536161", "photo_flickr_id": "2184773131", "setting": "last-3-pick-old-and-tell", "worker_id": "XZ36IJFPJS5EQFH", "story_id": "41688", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "deserts are served and eaten by the kids .", "storylet_id": "208444"}], [{"original_text": "Eating at the mama Santa pizzeria . ", "album_id": "72157603692536161", "photo_flickr_id": "2184771559", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41689", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "eating at the mama location location .", "storylet_id": "208445"}], [{"original_text": "Pizza night with the family. ", "album_id": "72157603692536161", "photo_flickr_id": "2184771379", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41689", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "pizza night with the family .", "storylet_id": "208446"}], [{"original_text": "Son and dad eating pizza and drinking juice. ", "album_id": "72157603692536161", "photo_flickr_id": "2185557956", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41689", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "son and dad eating pizza and drinking juice .", "storylet_id": "208447"}], [{"original_text": "Watching the game on TV.", "album_id": "72157603692536161", "photo_flickr_id": "2184772091", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41689", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "watching the game on tv .", "storylet_id": "208448"}], [{"original_text": "Having fun with the family. ", "album_id": "72157603692536161", "photo_flickr_id": "2185558860", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41689", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "having fun with the family .", "storylet_id": "208449"}], [{"original_text": "Friends spending a day skiing.", "album_id": "72157604508466643", "photo_flickr_id": "2408189997", "setting": "first-2-pick-and-tell", "worker_id": "68TCR5LVGDCAQCH", "story_id": "41690", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends spending a day skiing .", "storylet_id": "208450"}], [{"original_text": "Taken in the view of the mountainous landscape.", "album_id": "72157604508466643", "photo_flickr_id": "2408190605", "setting": "first-2-pick-and-tell", "worker_id": "68TCR5LVGDCAQCH", "story_id": "41690", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "taken in the view of the mountainous landscape .", "storylet_id": "208451"}], [{"original_text": "Friends having fun while skiing", "album_id": "72157604508466643", "photo_flickr_id": "2409022866", "setting": "first-2-pick-and-tell", "worker_id": "68TCR5LVGDCAQCH", "story_id": "41690", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "friends having fun while skiing", "storylet_id": "208452"}], [{"original_text": "After a long day of skiing,lunch.", "album_id": "72157604508466643", "photo_flickr_id": "2408223659", "setting": "first-2-pick-and-tell", "worker_id": "68TCR5LVGDCAQCH", "story_id": "41690", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a long day of skiing , lunch .", "storylet_id": "208453"}], [{"original_text": "Wash the lunch down with a glass of wine.", "album_id": "72157604508466643", "photo_flickr_id": "2409051104", "setting": "first-2-pick-and-tell", "worker_id": "68TCR5LVGDCAQCH", "story_id": "41690", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "wash the lunch down with a glass of wine .", "storylet_id": "208454"}], [{"original_text": "I went to the reptile zoo a few days ago.", "album_id": "72157604508466643", "photo_flickr_id": "2409062032", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "41691", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the reptile zoo a few days ago .", "storylet_id": "208455"}], [{"original_text": "It had a bus that you could sit on to eat.", "album_id": "72157604508466643", "photo_flickr_id": "2408227277", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "41691", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it had a bus that you could sit on to eat .", "storylet_id": "208456"}], [{"original_text": "We went up to the window to get our food.", "album_id": "72157604508466643", "photo_flickr_id": "2408223659", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "41691", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went up to the window to get our food .", "storylet_id": "208457"}], [{"original_text": "As you can see, it was very good BBQ food.", "album_id": "72157604508466643", "photo_flickr_id": "2408226307", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "41691", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as you can see , it was very good bbq food .", "storylet_id": "208458"}], [{"original_text": "We had a few drinks and then went home to sleep.", "album_id": "72157604508466643", "photo_flickr_id": "2409051104", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "41691", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a few drinks and then went home to sleep .", "storylet_id": "208459"}], [{"original_text": "The slopes were well traveled that day.", "album_id": "72157604508466643", "photo_flickr_id": "2408189997", "setting": "last-3-pick-old-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "41692", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the slopes were well traveled that day .", "storylet_id": "208460"}], [{"original_text": "He was ready to go skiing.", "album_id": "72157604508466643", "photo_flickr_id": "2408190605", "setting": "last-3-pick-old-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "41692", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was ready to go skiing .", "storylet_id": "208461"}], [{"original_text": "They rode the lift to the top of the slope.", "album_id": "72157604508466643", "photo_flickr_id": "2409022866", "setting": "last-3-pick-old-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "41692", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they rode the lift to the top of the slope .", "storylet_id": "208462"}], [{"original_text": "After skiing, they found a food truck.", "album_id": "72157604508466643", "photo_flickr_id": "2408223659", "setting": "last-3-pick-old-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "41692", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after skiing , they found a food truck .", "storylet_id": "208463"}], [{"original_text": "And washed it down with some drinks.", "album_id": "72157604508466643", "photo_flickr_id": "2409051104", "setting": "last-3-pick-old-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "41692", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and washed it down with some drinks .", "storylet_id": "208464"}], [{"original_text": "We went to ski last weekend.", "album_id": "72157604508466643", "photo_flickr_id": "2408189997", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "41693", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to ski last weekend .", "storylet_id": "208465"}], [{"original_text": "It was a perfect day for it.", "album_id": "72157604508466643", "photo_flickr_id": "2408190605", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "41693", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a perfect day for it .", "storylet_id": "208466"}], [{"original_text": "I had great company too.", "album_id": "72157604508466643", "photo_flickr_id": "2409022866", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "41693", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had great company too .", "storylet_id": "208467"}], [{"original_text": "Afterwards we had a bite to eat.", "album_id": "72157604508466643", "photo_flickr_id": "2408223659", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "41693", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards we had a bite to eat .", "storylet_id": "208468"}], [{"original_text": "Of course we had to have a few adult beverages too.", "album_id": "72157604508466643", "photo_flickr_id": "2409051104", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "41693", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of course we had to have a few adult beverages too .", "storylet_id": "208469"}], [{"original_text": "I went for a walk yesterday.", "album_id": "72157604508466643", "photo_flickr_id": "2409062032", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41694", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a walk yesterday .", "storylet_id": "208470"}], [{"original_text": "I had a great time on the bus.", "album_id": "72157604508466643", "photo_flickr_id": "2408227277", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41694", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had a great time on the bus .", "storylet_id": "208471"}], [{"original_text": "When we got off there was some food.", "album_id": "72157604508466643", "photo_flickr_id": "2408223659", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41694", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we got off there was some food .", "storylet_id": "208472"}], [{"original_text": "It was delicious.", "album_id": "72157604508466643", "photo_flickr_id": "2408226307", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41694", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was delicious .", "storylet_id": "208473"}], [{"original_text": "I also had something to drink.", "album_id": "72157604508466643", "photo_flickr_id": "2409051104", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41694", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i also had something to drink .", "storylet_id": "208474"}], [{"original_text": "Doug was in charge of band rehearsal.", "album_id": "72157623869982062", "photo_flickr_id": "4526354014", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41695", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was in charge of band rehearsal .", "storylet_id": "208475"}], [{"original_text": "Nick was not enthusiastic about the band rehearsal.", "album_id": "72157623869982062", "photo_flickr_id": "4526354326", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41695", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was not enthusiastic about the band rehearsal .", "storylet_id": "208476"}], [{"original_text": "Doug pleaded with everyone to liven up and get ready to rehearse.", "album_id": "72157623869982062", "photo_flickr_id": "4526354480", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41695", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] pleaded with everyone to liven up and get ready to rehearse .", "storylet_id": "208477"}], [{"original_text": "Finally the band started rehearsing and they actually played pretty good.", "album_id": "72157623869982062", "photo_flickr_id": "4525726573", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41695", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally the band started rehearsing and they actually played pretty good .", "storylet_id": "208478"}], [{"original_text": "Doug was content with the way the band performed.", "album_id": "72157623869982062", "photo_flickr_id": "4526355226", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41695", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was content with the way the band performed .", "storylet_id": "208479"}], [{"original_text": "Visiting my local comedy club this often has gotten me used to some pretty impressive performances.", "album_id": "72157623869982062", "photo_flickr_id": "4526354480", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41696", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visiting my local comedy club this often has gotten me used to some pretty impressive performances .", "storylet_id": "208480"}], [{"original_text": "Such as a performance where to comedians bring a lot of satire while sitting on a couch and talking as if they are in your living room. ", "album_id": "72157623869982062", "photo_flickr_id": "4525724853", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41696", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "such as a performance where to comedians bring a lot of satire while sitting on a couch and talking as if they are in your living room .", "storylet_id": "208481"}], [{"original_text": "Or instances where a bunch of different comedians pretend to be at a party, each thing of random things about the other.", "album_id": "72157623869982062", "photo_flickr_id": "4526355836", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41696", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "or instances where a bunch of different comedians pretend to be at a party , each thing of random things about the other .", "storylet_id": "208482"}], [{"original_text": "Of course you also get instances were two comedians go at it, not just with words, but physical humor.", "album_id": "72157623869982062", "photo_flickr_id": "4525726013", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41696", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course you also get instances were two comedians go at it , not just with words , but physical humor .", "storylet_id": "208483"}], [{"original_text": "Last but not least however; are those comedians who can play well and tell great jokes to. ", "album_id": "72157623869982062", "photo_flickr_id": "4525726573", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41696", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last but not least however ; are those comedians who can play well and tell great jokes to .", "storylet_id": "208484"}], [{"original_text": "I am just sitting here waiting for the show to begin.", "album_id": "72157623869982062", "photo_flickr_id": "4526354014", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "41697", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am just sitting here waiting for the show to begin .", "storylet_id": "208485"}], [{"original_text": "The musicians are tuning up their instruments.", "album_id": "72157623869982062", "photo_flickr_id": "4526354326", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "41697", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the musicians are tuning up their instruments .", "storylet_id": "208486"}], [{"original_text": "The show is finally getting started.", "album_id": "72157623869982062", "photo_flickr_id": "4526354480", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "41697", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the show is finally getting started .", "storylet_id": "208487"}], [{"original_text": "What a great job they are doing playing with such enthusiasm.", "album_id": "72157623869982062", "photo_flickr_id": "4525726573", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "41697", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what a great job they are doing playing with such enthusiasm .", "storylet_id": "208488"}], [{"original_text": "The announcer is doing a great job as well.", "album_id": "72157623869982062", "photo_flickr_id": "4526355226", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "41697", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the announcer is doing a great job as well .", "storylet_id": "208489"}], [{"original_text": "Today we waited patiently for the music audition.", "album_id": "72157623869982062", "photo_flickr_id": "4526354014", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41698", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we waited patiently for the music audition .", "storylet_id": "208490"}], [{"original_text": "My friend played saxophone when it was his turn to audition", "album_id": "72157623869982062", "photo_flickr_id": "4526354326", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41698", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend played saxophone when it was his turn to audition", "storylet_id": "208491"}], [{"original_text": "The we got up for our singing part and sang our hearts out.", "album_id": "72157623869982062", "photo_flickr_id": "4526354480", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41698", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the we got up for our singing part and sang our hearts out .", "storylet_id": "208492"}], [{"original_text": "Then another got up to play his electric guitar.", "album_id": "72157623869982062", "photo_flickr_id": "4525726573", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41698", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then another got up to play his electric guitar .", "storylet_id": "208493"}], [{"original_text": "We got the part and thanked the judges.", "album_id": "72157623869982062", "photo_flickr_id": "4526355226", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41698", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we got the part and thanked the judges .", "storylet_id": "208494"}], [{"original_text": "The singer of the band sits and reviews his lyrics", "album_id": "72157623869982062", "photo_flickr_id": "4526354014", "setting": "last-3-pick-old-and-tell", "worker_id": "CMH4NKRJ0V83ITW", "story_id": "41699", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the singer of the band sits and reviews his lyrics", "storylet_id": "208495"}], [{"original_text": "The guitarist practices his solo.", "album_id": "72157623869982062", "photo_flickr_id": "4526354326", "setting": "last-3-pick-old-and-tell", "worker_id": "CMH4NKRJ0V83ITW", "story_id": "41699", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guitarist practices his solo .", "storylet_id": "208496"}], [{"original_text": "The singer sings the song he just wrote for the first time.", "album_id": "72157623869982062", "photo_flickr_id": "4526354480", "setting": "last-3-pick-old-and-tell", "worker_id": "CMH4NKRJ0V83ITW", "story_id": "41699", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the singer sings the song he just wrote for the first time .", "storylet_id": "208497"}], [{"original_text": "The other guitarist takes a break while the others practice the new song.", "album_id": "72157623869982062", "photo_flickr_id": "4525726573", "setting": "last-3-pick-old-and-tell", "worker_id": "CMH4NKRJ0V83ITW", "story_id": "41699", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the other guitarist takes a break while the others practice the new song .", "storylet_id": "208498"}], [{"original_text": "The singer is frustrated because something is missing from the song.", "album_id": "72157623869982062", "photo_flickr_id": "4526355226", "setting": "last-3-pick-old-and-tell", "worker_id": "CMH4NKRJ0V83ITW", "story_id": "41699", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the singer is frustrated because something is missing from the song .", "storylet_id": "208499"}], [{"original_text": "I went to my friend's party last night.", "album_id": "72157622848916576", "photo_flickr_id": "4122907370", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41700", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to my friend 's party last night .", "storylet_id": "208500"}], [{"original_text": "Some of the guest were dressed up.", "album_id": "72157622848916576", "photo_flickr_id": "4122168679", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41700", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the guest were dressed up .", "storylet_id": "208501"}], [{"original_text": "I had a lot of fun talking to everyone there.", "album_id": "72157622848916576", "photo_flickr_id": "4122177197", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41700", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a lot of fun talking to everyone there .", "storylet_id": "208502"}], [{"original_text": "We spent some time playing games in the living room.", "album_id": "72157622848916576", "photo_flickr_id": "4122972534", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41700", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we spent some time playing games in the living room .", "storylet_id": "208503"}], [{"original_text": "After a few hours everyone was very tired.", "album_id": "72157622848916576", "photo_flickr_id": "4122976804", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41700", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a few hours everyone was very tired .", "storylet_id": "208504"}], [{"original_text": "Jeff and his girlfriend Mary were shocked to realized the mysterious man in a strange suit crashed their party.", "album_id": "72157622848916576", "photo_flickr_id": "4122953086", "setting": "first-2-pick-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "41701", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and his girlfriend [female] were shocked to realized the mysterious man in a strange suit crashed their party .", "storylet_id": "208505"}], [{"original_text": "The mystery man soon became the life of the party telling hilarious jokes.", "album_id": "72157622848916576", "photo_flickr_id": "4122168679", "setting": "first-2-pick-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "41701", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the mystery man soon became the life of the party telling hilarious jokes .", "storylet_id": "208506"}], [{"original_text": "The mystery man was shy about taking photos even though you couldn't make out his face.", "album_id": "72157622848916576", "photo_flickr_id": "4123009158", "setting": "first-2-pick-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "41701", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the mystery man was shy about taking photos even though you could n't make out his face .", "storylet_id": "208507"}], [{"original_text": "Soon, Jeff and Mary began to figure out who the mystery man was after he grabbed a certain friends favorite red drink.", "album_id": "72157622848916576", "photo_flickr_id": "4123001668", "setting": "first-2-pick-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "41701", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "soon , [male] and [female] began to figure out who the mystery man was after he grabbed a certain friends favorite red drink .", "storylet_id": "208508"}], [{"original_text": "Jeff ripped off the mystery man's suit and knew that the clever prankster Paul was the one who was inside the crazy costume.", "album_id": "72157622848916576", "photo_flickr_id": "4122959932", "setting": "first-2-pick-and-tell", "worker_id": "WX8AT6SBQPA9C5Q", "story_id": "41701", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] ripped off the mystery man 's suit and knew that the clever prankster [male] was the one who was inside the crazy costume .", "storylet_id": "208509"}], [{"original_text": "We arrived at the party. ", "album_id": "72157622848916576", "photo_flickr_id": "4122907370", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41702", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at the party .", "storylet_id": "208510"}], [{"original_text": "John was up to his goofy self dressed in a green screen suit.", "album_id": "72157622848916576", "photo_flickr_id": "4122168679", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41702", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was up to his goofy self dressed in a green screen suit .", "storylet_id": "208511"}], [{"original_text": "Jake and his new girlfriend jokes around.", "album_id": "72157622848916576", "photo_flickr_id": "4122177197", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41702", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and his new girlfriend jokes around .", "storylet_id": "208512"}], [{"original_text": "We all sat around drinking and chatting.", "album_id": "72157622848916576", "photo_flickr_id": "4122972534", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41702", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all sat around drinking and chatting .", "storylet_id": "208513"}], [{"original_text": "As the night went on, some got too tipsy and passed out on the floor.", "album_id": "72157622848916576", "photo_flickr_id": "4122976804", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41702", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the night went on , some got too tipsy and passed out on the floor .", "storylet_id": "208514"}], [{"original_text": "The calm before what will be a crazy night.", "album_id": "72157622848916576", "photo_flickr_id": "4122907370", "setting": "last-3-pick-old-and-tell", "worker_id": "TMPQ5B9SH7SSPTO", "story_id": "41703", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the calm before what will be a crazy night .", "storylet_id": "208515"}], [{"original_text": "Suddenly, a wild green man appears.", "album_id": "72157622848916576", "photo_flickr_id": "4122168679", "setting": "last-3-pick-old-and-tell", "worker_id": "TMPQ5B9SH7SSPTO", "story_id": "41703", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "suddenly , a wild green man appears .", "storylet_id": "208516"}], [{"original_text": "Two friends share a picture together.", "album_id": "72157622848916576", "photo_flickr_id": "4122177197", "setting": "last-3-pick-old-and-tell", "worker_id": "TMPQ5B9SH7SSPTO", "story_id": "41703", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two friends share a picture together .", "storylet_id": "208517"}], [{"original_text": "Everyone sits down and shares their funny stories.", "album_id": "72157622848916576", "photo_flickr_id": "4122972534", "setting": "last-3-pick-old-and-tell", "worker_id": "TMPQ5B9SH7SSPTO", "story_id": "41703", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone sits down and shares their funny stories .", "storylet_id": "208518"}], [{"original_text": "Then everyone passes out drunk.", "album_id": "72157622848916576", "photo_flickr_id": "4122976804", "setting": "last-3-pick-old-and-tell", "worker_id": "TMPQ5B9SH7SSPTO", "story_id": "41703", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then everyone passes out drunk .", "storylet_id": "208519"}], [{"original_text": "I held a friendly get together at my house today.", "album_id": "72157622848916576", "photo_flickr_id": "4122907370", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41704", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i held a friendly get together at my house today .", "storylet_id": "208520"}], [{"original_text": "Some people dressed up in funny costumes.", "album_id": "72157622848916576", "photo_flickr_id": "4122168679", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41704", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some people dressed up in funny costumes .", "storylet_id": "208521"}], [{"original_text": "Others just dressed normally.", "album_id": "72157622848916576", "photo_flickr_id": "4122177197", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41704", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others just dressed normally .", "storylet_id": "208522"}], [{"original_text": "We had a lot of fun just chatting and catching up.", "album_id": "72157622848916576", "photo_flickr_id": "4122972534", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41704", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a lot of fun just chatting and catching up .", "storylet_id": "208523"}], [{"original_text": "Overall, it was a fun party but everyone was tired.", "album_id": "72157622848916576", "photo_flickr_id": "4122976804", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41704", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall , it was a fun party but everyone was tired .", "storylet_id": "208524"}], [{"original_text": "I was going through an old album last week.", "album_id": "72157623047950842", "photo_flickr_id": "4205437510", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41705", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was going through an old album last week .", "storylet_id": "208525"}], [{"original_text": "There were so many old pieces of memorabilia in there.", "album_id": "72157623047950842", "photo_flickr_id": "4205439006", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41705", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many old pieces of memorabilia in there .", "storylet_id": "208526"}], [{"original_text": "I had a lot of fun looking at all of the old photos.", "album_id": "72157623047950842", "photo_flickr_id": "4205440014", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41705", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a lot of fun looking at all of the old photos .", "storylet_id": "208527"}], [{"original_text": "They all reminded me of good times.", "album_id": "72157623047950842", "photo_flickr_id": "4205440360", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41705", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they all reminded me of good times .", "storylet_id": "208528"}], [{"original_text": "I was very happy to have found the album in the attic.", "album_id": "72157623047950842", "photo_flickr_id": "4204683035", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41705", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was very happy to have found the album in the attic .", "storylet_id": "208529"}], [{"original_text": "Hi there. We are a Go-Getters, a small group of business people.", "album_id": "72157623047950842", "photo_flickr_id": "4205440014", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "41706", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hi there . we are a go-getters , a small group of business people .", "storylet_id": "208530"}], [{"original_text": "One day our CEO, Job had a perfect idea.", "album_id": "72157623047950842", "photo_flickr_id": "4205440160", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "41706", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one day our ceo , job had a perfect idea .", "storylet_id": "208531"}], [{"original_text": "He said lets release an recruitment ad so we can increase our numbers and take over the world.", "album_id": "72157623047950842", "photo_flickr_id": "4204676621", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "41706", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he said lets release an recruitment ad so we can increase our numbers and take over the world .", "storylet_id": "208532"}], [{"original_text": "He was right. After the ad dropped people started coming out of no where to join us.", "album_id": "72157623047950842", "photo_flickr_id": "4204685279", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "41706", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was right . after the ad dropped people started coming out of no where to join us .", "storylet_id": "208533"}], [{"original_text": "Now were are the Go-Getters, a large group about to take over the world.", "album_id": "72157623047950842", "photo_flickr_id": "4205442748", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "41706", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now were are the go-getters , a large group about to take over the world .", "storylet_id": "208534"}], [{"original_text": "I spent some time going through old boxes and found old papers.", "album_id": "72157623047950842", "photo_flickr_id": "4205437510", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41707", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spent some time going through old boxes and found old papers .", "storylet_id": "208535"}], [{"original_text": "I found an invite to a bar mitzvah.", "album_id": "72157623047950842", "photo_flickr_id": "4205439006", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41707", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i found an invite to a bar mitzvah .", "storylet_id": "208536"}], [{"original_text": "I found photos of grandmas family.", "album_id": "72157623047950842", "photo_flickr_id": "4205440014", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41707", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i found photos of grandmas family .", "storylet_id": "208537"}], [{"original_text": "I also found grandmas school photo.", "album_id": "72157623047950842", "photo_flickr_id": "4205440360", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41707", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also found grandmas school photo .", "storylet_id": "208538"}], [{"original_text": "And photos from her wedding.", "album_id": "72157623047950842", "photo_flickr_id": "4204683035", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "41707", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and photos from her wedding .", "storylet_id": "208539"}], [{"original_text": "An old photo of the family.", "album_id": "72157623047950842", "photo_flickr_id": "4205440014", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "41708", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an old photo of the family .", "storylet_id": "208540"}], [{"original_text": "Here is another one of the members of the family in a cool and black white photo.", "album_id": "72157623047950842", "photo_flickr_id": "4205440160", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "41708", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is another one of the members of the family in a cool and black white photo .", "storylet_id": "208541"}], [{"original_text": "Rummaging through more stuff along with the old photos we found this old newspaper", "album_id": "72157623047950842", "photo_flickr_id": "4204676621", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "41708", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "rummaging through more stuff along with the old photos we found this old newspaper", "storylet_id": "208542"}], [{"original_text": "Here is a more recent photo of the family, and they look great.", "album_id": "72157623047950842", "photo_flickr_id": "4204685279", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "41708", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is a more recent photo of the family , and they look great .", "storylet_id": "208543"}], [{"original_text": "Yet another pic of the old family from a few years back. Not as old as the first but still a good look back in time.", "album_id": "72157623047950842", "photo_flickr_id": "4205442748", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "41708", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "yet another pic of the old family from a few years back . not as old as the first but still a good look back in time .", "storylet_id": "208544"}], [{"original_text": "I love my collection of posters.", "album_id": "72157623047950842", "photo_flickr_id": "4205437510", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "41709", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love my collection of posters .", "storylet_id": "208545"}], [{"original_text": "I have a musical one.", "album_id": "72157623047950842", "photo_flickr_id": "4205439006", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "41709", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i have a musical one .", "storylet_id": "208546"}], [{"original_text": "I have some old photos that are very cool.", "album_id": "72157623047950842", "photo_flickr_id": "4205440014", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "41709", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i have some old photos that are very cool .", "storylet_id": "208547"}], [{"original_text": "There is one of children and teachers in black and white", "album_id": "72157623047950842", "photo_flickr_id": "4205440360", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "41709", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there is one of children and teachers in black and white", "storylet_id": "208548"}], [{"original_text": "I like the one where people are around a table.", "album_id": "72157623047950842", "photo_flickr_id": "4204683035", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "41709", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i like the one where people are around a table .", "storylet_id": "208549"}], [{"original_text": "We went to the city today.", "album_id": "72157632973805375", "photo_flickr_id": "8549959711", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "41710", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the city today .", "storylet_id": "208550"}], [{"original_text": "There was a lot of cool things to see.", "album_id": "72157632973805375", "photo_flickr_id": "8549960859", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "41710", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of cool things to see .", "storylet_id": "208551"}], [{"original_text": "There is a lot of old buildings there.", "album_id": "72157632973805375", "photo_flickr_id": "8551064534", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "41710", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is a lot of old buildings there .", "storylet_id": "208552"}], [{"original_text": "We saw lots of different animals.", "album_id": "72157632973805375", "photo_flickr_id": "8549966757", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "41710", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw lots of different animals .", "storylet_id": "208553"}], [{"original_text": "Just outside we could see large rolling hills.", "album_id": "72157632973805375", "photo_flickr_id": "8551068064", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "41710", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "just outside we could see large rolling hills .", "storylet_id": "208554"}], [{"original_text": "In the garden of the mansion, there are statues of lions spurting out water.", "album_id": "72157632973805375", "photo_flickr_id": "8549959711", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41711", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the garden of the mansion , there are statues of lions spurting out water .", "storylet_id": "208555"}], [{"original_text": "There are also statues of birds.", "album_id": "72157632973805375", "photo_flickr_id": "8549960859", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41711", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are also statues of birds .", "storylet_id": "208556"}], [{"original_text": "Little kids walk around in groups during their class trip.", "album_id": "72157632973805375", "photo_flickr_id": "8551063816", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41711", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "little kids walk around in groups during their class trip .", "storylet_id": "208557"}], [{"original_text": "The mansion is very impressive to look at, it's very tall and big.", "album_id": "72157632973805375", "photo_flickr_id": "8551064534", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41711", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the mansion is very impressive to look at , it 's very tall and big .", "storylet_id": "208558"}], [{"original_text": "There is also a beautiful garden with purple flowers. ", "album_id": "72157632973805375", "photo_flickr_id": "8551774353", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "41711", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is also a beautiful garden with purple flowers .", "storylet_id": "208559"}], [{"original_text": "The statues stared blankly at the people passing by.", "album_id": "72157632973805375", "photo_flickr_id": "8549959711", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41712", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the statues stared blankly at the people passing by .", "storylet_id": "208560"}], [{"original_text": "There were so many statues in this city,", "album_id": "72157632973805375", "photo_flickr_id": "8549960859", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41712", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many statues in this city ,", "storylet_id": "208561"}], [{"original_text": "but the architecture was gorgeous.", "album_id": "72157632973805375", "photo_flickr_id": "8551064534", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41712", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but the architecture was gorgeous .", "storylet_id": "208562"}], [{"original_text": "The only way to get around was by riding a camel,", "album_id": "72157632973805375", "photo_flickr_id": "8549966757", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41712", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the only way to get around was by riding a camel ,", "storylet_id": "208563"}], [{"original_text": "and so people would ride camels up and over the hills all day long. ", "album_id": "72157632973805375", "photo_flickr_id": "8551068064", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41712", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and so people would ride camels up and over the hills all day long .", "storylet_id": "208564"}], [{"original_text": "The trip to Egypt was very interesting. ", "album_id": "72157632973805375", "photo_flickr_id": "8549959711", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "41713", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the trip to location was very interesting .", "storylet_id": "208565"}], [{"original_text": "There was so many interesting sculptures.", "album_id": "72157632973805375", "photo_flickr_id": "8549960859", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "41713", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was so many interesting sculptures .", "storylet_id": "208566"}], [{"original_text": "It was fun to watch the kids play on the sidewalk.", "album_id": "72157632973805375", "photo_flickr_id": "8551063816", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "41713", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was fun to watch the kids play on the sidewalk .", "storylet_id": "208567"}], [{"original_text": "The architecture was outstanding. ", "album_id": "72157632973805375", "photo_flickr_id": "8551064534", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "41713", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the architecture was outstanding .", "storylet_id": "208568"}], [{"original_text": "Egypt even had pretty flowers. ", "album_id": "72157632973805375", "photo_flickr_id": "8551774353", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "41713", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "location even had pretty flowers .", "storylet_id": "208569"}], [{"original_text": "We took a trip to the Middle East.", "album_id": "72157632973805375", "photo_flickr_id": "8549959711", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41714", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to the location location .", "storylet_id": "208570"}], [{"original_text": "We came across all kinds of statues.", "album_id": "72157632973805375", "photo_flickr_id": "8549960859", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41714", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we came across all kinds of statues .", "storylet_id": "208571"}], [{"original_text": "Then we found kids out playing.", "album_id": "72157632973805375", "photo_flickr_id": "8551063816", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41714", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we found kids out playing .", "storylet_id": "208572"}], [{"original_text": "We also got to see really old buildings.", "album_id": "72157632973805375", "photo_flickr_id": "8551064534", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41714", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also got to see really old buildings .", "storylet_id": "208573"}], [{"original_text": "After that we got to see some desert flowers.", "album_id": "72157632973805375", "photo_flickr_id": "8551774353", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41714", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that we got to see some desert flowers .", "storylet_id": "208574"}], [{"original_text": "I took a tour of the church yesterday.", "album_id": "72157635893140555", "photo_flickr_id": "9940552406", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41715", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a tour of the church yesterday .", "storylet_id": "208575"}], [{"original_text": "It is beautiful inside.", "album_id": "72157635893140555", "photo_flickr_id": "9940553726", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41715", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is beautiful inside .", "storylet_id": "208576"}], [{"original_text": "All of the paintings had so much detail.", "album_id": "72157635893140555", "photo_flickr_id": "9940553736", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41715", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of the paintings had so much detail .", "storylet_id": "208577"}], [{"original_text": "There was a theater area.", "album_id": "72157635893140555", "photo_flickr_id": "9942442084", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41715", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a theater area .", "storylet_id": "208578"}], [{"original_text": "I took tons of pictures.", "album_id": "72157635893140555", "photo_flickr_id": "9942555193", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41715", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i took tons of pictures .", "storylet_id": "208579"}], [{"original_text": "The arch was made of exotic woods and hand painted tiles. ", "album_id": "72157635893140555", "photo_flickr_id": "9940552406", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41716", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the arch was made of exotic woods and hand painted tiles .", "storylet_id": "208580"}], [{"original_text": "One wall had a mural of the disciples. ", "album_id": "72157635893140555", "photo_flickr_id": "9940553726", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41716", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one wall had a mural of the disciples .", "storylet_id": "208581"}], [{"original_text": "The pews had hymnals for every other seat. ", "album_id": "72157635893140555", "photo_flickr_id": "9942442084", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41716", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the pews had hymnals for every other seat .", "storylet_id": "208582"}], [{"original_text": "Oddly, there was a menorah in the church. ", "album_id": "72157635893140555", "photo_flickr_id": "9942442114", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41716", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "oddly , there was a menorah in the church .", "storylet_id": "208583"}], [{"original_text": "At the alter was another mural of Jesus and his disciples. ", "album_id": "72157635893140555", "photo_flickr_id": "9942555193", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41716", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the alter was another mural of [male] and his disciples .", "storylet_id": "208584"}], [{"original_text": "It was one of the oldest churches in the district. The inside had intricate carvings.", "album_id": "72157635893140555", "photo_flickr_id": "9940552406", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41717", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was one of the oldest churches in the district . the inside had intricate carvings .", "storylet_id": "208585"}], [{"original_text": "On the wall to either side were paintings of the saints.", "album_id": "72157635893140555", "photo_flickr_id": "9940553726", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41717", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on the wall to either side were paintings of the saints .", "storylet_id": "208586"}], [{"original_text": "There are rows and rows of pews.", "album_id": "72157635893140555", "photo_flickr_id": "9942442084", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41717", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are rows and rows of pews .", "storylet_id": "208587"}], [{"original_text": "The candelabra had been there for hundreds of years.", "album_id": "72157635893140555", "photo_flickr_id": "9942442114", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41717", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the candelabra had been there for hundreds of years .", "storylet_id": "208588"}], [{"original_text": "There were also paintings of saints above the altar, always looking down on the proceedings.", "album_id": "72157635893140555", "photo_flickr_id": "9942555193", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41717", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were also paintings of saints above the altar , always looking down on the proceedings .", "storylet_id": "208589"}], [{"original_text": "We visited an old church.", "album_id": "72157635893140555", "photo_flickr_id": "9940552406", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41718", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited an old church .", "storylet_id": "208590"}], [{"original_text": "The paintings on the walls were amazing.", "album_id": "72157635893140555", "photo_flickr_id": "9940553726", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41718", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the paintings on the walls were amazing .", "storylet_id": "208591"}], [{"original_text": "Then we saw that it had plenty of seats for everyone.", "album_id": "72157635893140555", "photo_flickr_id": "9942442084", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41718", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we saw that it had plenty of seats for everyone .", "storylet_id": "208592"}], [{"original_text": "After that the found a candle menorah.", "album_id": "72157635893140555", "photo_flickr_id": "9942442114", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41718", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that the found a candle menorah .", "storylet_id": "208593"}], [{"original_text": "We took a lot of pictures of the arc ways over the doors.", "album_id": "72157635893140555", "photo_flickr_id": "9942555193", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41718", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took a lot of pictures of the arc ways over the doors .", "storylet_id": "208594"}], [{"original_text": "The church was very old", "album_id": "72157635893140555", "photo_flickr_id": "9940552406", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41719", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the church was very old", "storylet_id": "208595"}], [{"original_text": "and had lots of paintings.", "album_id": "72157635893140555", "photo_flickr_id": "9940553726", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41719", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and had lots of paintings .", "storylet_id": "208596"}], [{"original_text": "The paintings had saints", "album_id": "72157635893140555", "photo_flickr_id": "9940553736", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41719", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the paintings had saints", "storylet_id": "208597"}], [{"original_text": "and there was a big theater", "album_id": "72157635893140555", "photo_flickr_id": "9942442084", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41719", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and there was a big theater", "storylet_id": "208598"}], [{"original_text": "overlooking the biggest painting.", "album_id": "72157635893140555", "photo_flickr_id": "9942555193", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41719", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overlooking the biggest painting .", "storylet_id": "208599"}], [{"original_text": "We had our grandfather's 75th birthday party yesterday.", "album_id": "72157626743522490", "photo_flickr_id": "5731039818", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41720", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had our grandfather 's 75th birthday party yesterday .", "storylet_id": "208600"}], [{"original_text": "All of the family was there, even the newest member of the family, Joey.", "album_id": "72157626743522490", "photo_flickr_id": "5731040750", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41720", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the family was there , even the newest member of the family , [male] .", "storylet_id": "208601"}], [{"original_text": "After everyone ate the cake and ice cream we got ready to give gifts.", "album_id": "72157626743522490", "photo_flickr_id": "5730488853", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41720", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after everyone ate the cake and ice cream we got ready to give gifts .", "storylet_id": "208602"}], [{"original_text": "Our grandfather received lots of gifts from everyone, including the grandchildren.", "album_id": "72157626743522490", "photo_flickr_id": "5731039950", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41720", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our grandfather received lots of gifts from everyone , including the grandchildren .", "storylet_id": "208603"}], [{"original_text": "All of us had a great time and our grandfather did too.", "album_id": "72157626743522490", "photo_flickr_id": "5730488959", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41720", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of us had a great time and our grandfather did too .", "storylet_id": "208604"}], [{"original_text": "The party was a big hit.", "album_id": "72157626743522490", "photo_flickr_id": "5731039818", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41721", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party was a big hit .", "storylet_id": "208605"}], [{"original_text": "The entire family was there.", "album_id": "72157626743522490", "photo_flickr_id": "5731039950", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41721", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the entire family was there .", "storylet_id": "208606"}], [{"original_text": "Everyone was chatting and having a great time.", "album_id": "72157626743522490", "photo_flickr_id": "5730488853", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41721", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was chatting and having a great time .", "storylet_id": "208607"}], [{"original_text": "There was a lot of good food.", "album_id": "72157626743522490", "photo_flickr_id": "5731040844", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41721", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a lot of good food .", "storylet_id": "208608"}], [{"original_text": "I hope we have another family reunion soon.", "album_id": "72157626743522490", "photo_flickr_id": "5730489955", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41721", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope we have another family reunion soon .", "storylet_id": "208609"}], [{"original_text": "It was Alan's 70th birthday and everyone came to his party.", "album_id": "72157626743522490", "photo_flickr_id": "5731039818", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "41722", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was [male] 's 70th birthday and everyone came to his party .", "storylet_id": "208610"}], [{"original_text": "His great granddaughter Alina.", "album_id": "72157626743522490", "photo_flickr_id": "5731040750", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "41722", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his great granddaughter alina .", "storylet_id": "208611"}], [{"original_text": "Even his sister's family came. ", "album_id": "72157626743522490", "photo_flickr_id": "5730488853", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "41722", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even his sister 's family came .", "storylet_id": "208612"}], [{"original_text": "Alan's brother brought his granddaughter Sophi. ", "album_id": "72157626743522490", "photo_flickr_id": "5731039950", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "41722", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] 's brother brought his granddaughter sophi .", "storylet_id": "208613"}], [{"original_text": "Alan was so happy to see all of his sisters again in one place. ", "album_id": "72157626743522490", "photo_flickr_id": "5730488959", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "41722", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was so happy to see all of his sisters again in one place .", "storylet_id": "208614"}], [{"original_text": "Everyone was ready for the birthday party to start.", "album_id": "72157626743522490", "photo_flickr_id": "5731039818", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41723", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was ready for the birthday party to start .", "storylet_id": "208615"}], [{"original_text": "The entire family was their to help celebrate.", "album_id": "72157626743522490", "photo_flickr_id": "5731039950", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41723", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the entire family was their to help celebrate .", "storylet_id": "208616"}], [{"original_text": "They found their seats at the table.", "album_id": "72157626743522490", "photo_flickr_id": "5730488853", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41723", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they found their seats at the table .", "storylet_id": "208617"}], [{"original_text": "Then they ate a large meal.", "album_id": "72157626743522490", "photo_flickr_id": "5731040844", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41723", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they ate a large meal .", "storylet_id": "208618"}], [{"original_text": "After the food, they all offered congratulations and well wishes.", "album_id": "72157626743522490", "photo_flickr_id": "5730489955", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41723", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the food , they all offered congratulations and well wishes .", "storylet_id": "208619"}], [{"original_text": "The man loved his cake", "album_id": "72157626743522490", "photo_flickr_id": "5731039818", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41724", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man loved his cake", "storylet_id": "208620"}], [{"original_text": "and everyone cheered", "album_id": "72157626743522490", "photo_flickr_id": "5731039950", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41724", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and everyone cheered", "storylet_id": "208621"}], [{"original_text": "that sat around the big table.", "album_id": "72157626743522490", "photo_flickr_id": "5730488853", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41724", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that sat around the big table .", "storylet_id": "208622"}], [{"original_text": "His wife was so happy", "album_id": "72157626743522490", "photo_flickr_id": "5731040844", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41724", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his wife was so happy", "storylet_id": "208623"}], [{"original_text": "and so was his other granddaughter.", "album_id": "72157626743522490", "photo_flickr_id": "5730489955", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41724", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and so was his other granddaughter .", "storylet_id": "208624"}], [{"original_text": "Lili was so excited to see her great grandmother. She took a trip to see her in the nursing home.", "album_id": "72057594111606077", "photo_flickr_id": "131505440", "setting": "first-2-pick-and-tell", "worker_id": "7PYNKQBMAAQ87VH", "story_id": "41725", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "lili was so excited to see her great grandmother . she took a trip to see her in the nursing home .", "storylet_id": "208625"}], [{"original_text": "Lili's mother also enjoyed the trip. As she talked with her grandmother, they discussed what life was like during the depression.", "album_id": "72057594111606077", "photo_flickr_id": "131505468", "setting": "first-2-pick-and-tell", "worker_id": "7PYNKQBMAAQ87VH", "story_id": "41725", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lili 's mother also enjoyed the trip . as she talked with her grandmother , they discussed what life was like during the depression .", "storylet_id": "208626"}], [{"original_text": "Lili loved the big comfortable chairs that they had there. It made her feel like a princess.", "album_id": "72057594111606077", "photo_flickr_id": "131505591", "setting": "first-2-pick-and-tell", "worker_id": "7PYNKQBMAAQ87VH", "story_id": "41725", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lili loved the big comfortable chairs that they had there . it made her feel like a princess .", "storylet_id": "208627"}], [{"original_text": "Later, the family toured the nursing home and Lili was in awe looking at all of the sites.", "album_id": "72057594111606077", "photo_flickr_id": "131507069", "setting": "first-2-pick-and-tell", "worker_id": "7PYNKQBMAAQ87VH", "story_id": "41725", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later , the family toured the nursing home and lili was in awe looking at all of the sites .", "storylet_id": "208628"}], [{"original_text": "Many people from the nursing home stopped to see her dance. It made everyone there extremely happy!", "album_id": "72057594111606077", "photo_flickr_id": "131507217", "setting": "first-2-pick-and-tell", "worker_id": "7PYNKQBMAAQ87VH", "story_id": "41725", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many people from the nursing home stopped to see her dance . it made everyone there extremely happy !", "storylet_id": "208629"}], [{"original_text": "The family was very happy to get together to celebrate together. ", "album_id": "72057594111606077", "photo_flickr_id": "131509421", "setting": "first-2-pick-and-tell", "worker_id": "MR78U1BIJE5PH1G", "story_id": "41726", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was very happy to get together to celebrate together .", "storylet_id": "208630"}], [{"original_text": "Many of the young people at the celebration danced together. ", "album_id": "72057594111606077", "photo_flickr_id": "131509672", "setting": "first-2-pick-and-tell", "worker_id": "MR78U1BIJE5PH1G", "story_id": "41726", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of the young people at the celebration danced together .", "storylet_id": "208631"}], [{"original_text": "The reunion was held after a local baseball game was played. ", "album_id": "72057594111606077", "photo_flickr_id": "131509708", "setting": "first-2-pick-and-tell", "worker_id": "MR78U1BIJE5PH1G", "story_id": "41726", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the reunion was held after a local baseball game was played .", "storylet_id": "208632"}], [{"original_text": "The mascot joined in on the celebration with joy!", "album_id": "72057594111606077", "photo_flickr_id": "131509875", "setting": "first-2-pick-and-tell", "worker_id": "MR78U1BIJE5PH1G", "story_id": "41726", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the mascot joined in on the celebration with joy !", "storylet_id": "208633"}], [{"original_text": "The girls who attended the reunion were very happy to see their grandmother. ", "album_id": "72057594111606077", "photo_flickr_id": "131510628", "setting": "first-2-pick-and-tell", "worker_id": "MR78U1BIJE5PH1G", "story_id": "41726", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girls who attended the reunion were very happy to see their grandmother .", "storylet_id": "208634"}], [{"original_text": "it was nana's birthday", "album_id": "72057594111606077", "photo_flickr_id": "131509421", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41727", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was nana 's birthday", "storylet_id": "208635"}], [{"original_text": "the young kids were there too", "album_id": "72057594111606077", "photo_flickr_id": "131509672", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41727", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the young kids were there too", "storylet_id": "208636"}], [{"original_text": "and they even had a mascot for the young ones", "album_id": "72057594111606077", "photo_flickr_id": "131509708", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41727", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and they even had a mascot for the young ones", "storylet_id": "208637"}], [{"original_text": "he was a very silly guy indeed", "album_id": "72057594111606077", "photo_flickr_id": "131509875", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41727", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was a very silly guy indeed", "storylet_id": "208638"}], [{"original_text": "nana loved her birthday party ", "album_id": "72057594111606077", "photo_flickr_id": "131510628", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "41727", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "nana loved her birthday party", "storylet_id": "208639"}], [{"original_text": "We went to the hospital to visit grandma.", "album_id": "72057594111606077", "photo_flickr_id": "131505440", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41728", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the hospital to visit grandma .", "storylet_id": "208640"}], [{"original_text": "She had been recovering very well said the doctor.", "album_id": "72057594111606077", "photo_flickr_id": "131505468", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41728", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had been recovering very well said the doctor .", "storylet_id": "208641"}], [{"original_text": "We brought out little girl and dressed her.", "album_id": "72057594111606077", "photo_flickr_id": "131505591", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41728", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we brought out little girl and dressed her .", "storylet_id": "208642"}], [{"original_text": "She was wearing a red sweatshirt.", "album_id": "72057594111606077", "photo_flickr_id": "131507069", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41728", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was wearing a red sweatshirt .", "storylet_id": "208643"}], [{"original_text": "She was really happy to be with the family that day.", "album_id": "72057594111606077", "photo_flickr_id": "131507217", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41728", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was really happy to be with the family that day .", "storylet_id": "208644"}], [{"original_text": "we went to go see grandma this weekend.", "album_id": "72057594111606077", "photo_flickr_id": "131505440", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41729", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to go see grandma this weekend .", "storylet_id": "208645"}], [{"original_text": "she was happy to see us. we sat and talked for quite some time.", "album_id": "72057594111606077", "photo_flickr_id": "131505468", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41729", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was happy to see us . we sat and talked for quite some time .", "storylet_id": "208646"}], [{"original_text": "that is until my daughter got tired of sitting.", "album_id": "72057594111606077", "photo_flickr_id": "131505591", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41729", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that is until my daughter got tired of sitting .", "storylet_id": "208647"}], [{"original_text": "she got up and started to dance on the floor.", "album_id": "72057594111606077", "photo_flickr_id": "131507069", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41729", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she got up and started to dance on the floor .", "storylet_id": "208648"}], [{"original_text": "we had to tell her to go dance on the carpet for fear of her hurting herself.", "album_id": "72057594111606077", "photo_flickr_id": "131507217", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41729", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had to tell her to go dance on the carpet for fear of her hurting herself .", "storylet_id": "208649"}], [{"original_text": "This morning David and I went for a walk on the beach.", "album_id": "72157607016012045", "photo_flickr_id": "2809737562", "setting": "first-2-pick-and-tell", "worker_id": "O66487PSODL3PME", "story_id": "41730", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this morning [male] and i went for a walk on the beach .", "storylet_id": "208650"}], [{"original_text": "The weather was great and made for a beautiful start to the day.", "album_id": "72157607016012045", "photo_flickr_id": "2808890133", "setting": "first-2-pick-and-tell", "worker_id": "O66487PSODL3PME", "story_id": "41730", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the weather was great and made for a beautiful start to the day .", "storylet_id": "208651"}], [{"original_text": "David insisted on getting his toes wet, as usual.", "album_id": "72157607016012045", "photo_flickr_id": "2809738386", "setting": "first-2-pick-and-tell", "worker_id": "O66487PSODL3PME", "story_id": "41730", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] insisted on getting his toes wet , as usual .", "storylet_id": "208652"}], [{"original_text": "It is so peaceful watching the waves come in and the sun come up.", "album_id": "72157607016012045", "photo_flickr_id": "2809738278", "setting": "first-2-pick-and-tell", "worker_id": "O66487PSODL3PME", "story_id": "41730", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is so peaceful watching the waves come in and the sun come up .", "storylet_id": "208653"}], [{"original_text": "What a great way to start the morning, at the beach with my David.", "album_id": "72157607016012045", "photo_flickr_id": "2808890903", "setting": "first-2-pick-and-tell", "worker_id": "O66487PSODL3PME", "story_id": "41730", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what a great way to start the morning , at the beach with my [male] .", "storylet_id": "208654"}], [{"original_text": "The beach is so long but we love it anyway.", "album_id": "72157607016012045", "photo_flickr_id": "2809737774", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "41731", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beach is so long but we love it anyway .", "storylet_id": "208655"}], [{"original_text": "The water surges up along the sandy way. ", "album_id": "72157607016012045", "photo_flickr_id": "2809738468", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "41731", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water surges up along the sandy way .", "storylet_id": "208656"}], [{"original_text": "I wish there was a balcony but all we get here is these little windows.", "album_id": "72157607016012045", "photo_flickr_id": "2809739032", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "41731", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i wish there was a balcony but all we get here is these little windows .", "storylet_id": "208657"}], [{"original_text": "Posing in front she spreads her arms so happy to be here. ", "album_id": "72157607016012045", "photo_flickr_id": "2808891393", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "41731", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "posing in front she spreads her arms so happy to be here .", "storylet_id": "208658"}], [{"original_text": "Perfect lawns and lovely trees surround where we live for now.", "album_id": "72157607016012045", "photo_flickr_id": "2809739418", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "41731", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "perfect lawns and lovely trees surround where we live for now .", "storylet_id": "208659"}], [{"original_text": "Our day began with our toes in the sand.", "album_id": "72157607016012045", "photo_flickr_id": "2809737562", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41732", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our day began with our toes in the sand .", "storylet_id": "208660"}], [{"original_text": "My wife took several candid shots.", "album_id": "72157607016012045", "photo_flickr_id": "2808890133", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41732", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my wife took several candid shots .", "storylet_id": "208661"}], [{"original_text": "I decided to take a few shots myself.", "album_id": "72157607016012045", "photo_flickr_id": "2809738386", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41732", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i decided to take a few shots myself .", "storylet_id": "208662"}], [{"original_text": "The landscape was so precious.", "album_id": "72157607016012045", "photo_flickr_id": "2809738278", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41732", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the landscape was so precious .", "storylet_id": "208663"}], [{"original_text": "I am very glad we could share the vacation together.", "album_id": "72157607016012045", "photo_flickr_id": "2808890903", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41732", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am very glad we could share the vacation together .", "storylet_id": "208664"}], [{"original_text": "We went to explore a local beach.", "album_id": "72157607016012045", "photo_flickr_id": "2809737774", "setting": "last-3-pick-old-and-tell", "worker_id": "9DVTRRG39HMPD0L", "story_id": "41733", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to explore a local beach .", "storylet_id": "208665"}], [{"original_text": "The water was clear but cold.", "album_id": "72157607016012045", "photo_flickr_id": "2809738468", "setting": "last-3-pick-old-and-tell", "worker_id": "9DVTRRG39HMPD0L", "story_id": "41733", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water was clear but cold .", "storylet_id": "208666"}], [{"original_text": "Further inland, there were some old brick buildings.", "album_id": "72157607016012045", "photo_flickr_id": "2809739032", "setting": "last-3-pick-old-and-tell", "worker_id": "9DVTRRG39HMPD0L", "story_id": "41733", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "further inland , there were some old brick buildings .", "storylet_id": "208667"}], [{"original_text": "I took a picture of my friend in front of one of them.", "album_id": "72157607016012045", "photo_flickr_id": "2808891393", "setting": "last-3-pick-old-and-tell", "worker_id": "9DVTRRG39HMPD0L", "story_id": "41733", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i took a picture of my friend in front of one of them .", "storylet_id": "208668"}], [{"original_text": "I also took a picture of one of them from far away.", "album_id": "72157607016012045", "photo_flickr_id": "2809739418", "setting": "last-3-pick-old-and-tell", "worker_id": "9DVTRRG39HMPD0L", "story_id": "41733", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i also took a picture of one of them from far away .", "storylet_id": "208669"}], [{"original_text": "it was to be a day on the beach. i did not know what to think, but i know that we had a good time.", "album_id": "72157607016012045", "photo_flickr_id": "2809737562", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41734", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was to be a day on the beach . i did not know what to think , but i know that we had a good time .", "storylet_id": "208670"}], [{"original_text": "here she is. my lover and the person that i care about the most. she looked so good on the water.", "album_id": "72157607016012045", "photo_flickr_id": "2808890133", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41734", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here she is . my lover and the person that i care about the most . she looked so good on the water .", "storylet_id": "208671"}], [{"original_text": "she took the camera from me. here i am right after she took it. ", "album_id": "72157607016012045", "photo_flickr_id": "2809738386", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41734", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she took the camera from me . here i am right after she took it .", "storylet_id": "208672"}], [{"original_text": "she took some photos of the beach, and waves. it was such a gorgeous day.", "album_id": "72157607016012045", "photo_flickr_id": "2809738278", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41734", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she took some photos of the beach , and waves . it was such a gorgeous day .", "storylet_id": "208673"}], [{"original_text": "we had such a good time that day. here is a selfie while she was kissing me.", "album_id": "72157607016012045", "photo_flickr_id": "2808890903", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "41734", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had such a good time that day . here is a selfie while she was kissing me .", "storylet_id": "208674"}], [{"original_text": "My wife and I took a picture together on the beach.", "album_id": "72157607019124715", "photo_flickr_id": "2810319910", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41735", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my wife and i took a picture together on the beach .", "storylet_id": "208675"}], [{"original_text": "While I was walking to our room, she decided to take a picture of me.", "album_id": "72157607019124715", "photo_flickr_id": "2809472317", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41735", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while i was walking to our room , she decided to take a picture of me .", "storylet_id": "208676"}], [{"original_text": "Later that day, we took the ferry to the cathedral.", "album_id": "72157607019124715", "photo_flickr_id": "2809472909", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41735", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "later that day , we took the ferry to the cathedral .", "storylet_id": "208677"}], [{"original_text": "The cathedral was grand, we snapped outside shots.", "album_id": "72157607019124715", "photo_flickr_id": "2809474015", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41735", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cathedral was grand , we snapped outside shots .", "storylet_id": "208678"}], [{"original_text": "Near the cathedral, we found a lovely light tower.", "album_id": "72157607019124715", "photo_flickr_id": "2809474201", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41735", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "near the cathedral , we found a lovely light tower .", "storylet_id": "208679"}], [{"original_text": "The married couple decided to take a road trip to the beach. ", "album_id": "72157607019124715", "photo_flickr_id": "2809471637", "setting": "first-2-pick-and-tell", "worker_id": "CMEQ4RCPO17FK7S", "story_id": "41736", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the married couple decided to take a road trip to the beach .", "storylet_id": "208680"}], [{"original_text": "They got there around 2 pm and took a selfie at the sea. ", "album_id": "72157607019124715", "photo_flickr_id": "2810319910", "setting": "first-2-pick-and-tell", "worker_id": "CMEQ4RCPO17FK7S", "story_id": "41736", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got there around 2 pm and took a selfie at the sea .", "storylet_id": "208681"}], [{"original_text": "They hung out in the dunes a little. ", "album_id": "72157607019124715", "photo_flickr_id": "2810320110", "setting": "first-2-pick-and-tell", "worker_id": "CMEQ4RCPO17FK7S", "story_id": "41736", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they hung out in the dunes a little .", "storylet_id": "208682"}], [{"original_text": "After the beach they went into town and explored. ", "album_id": "72157607019124715", "photo_flickr_id": "2809472317", "setting": "first-2-pick-and-tell", "worker_id": "CMEQ4RCPO17FK7S", "story_id": "41736", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the beach they went into town and explored .", "storylet_id": "208683"}], [{"original_text": "They capped the day off with a nice dinner. ", "album_id": "72157607019124715", "photo_flickr_id": "2809473345", "setting": "first-2-pick-and-tell", "worker_id": "CMEQ4RCPO17FK7S", "story_id": "41736", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they capped the day off with a nice dinner .", "storylet_id": "208684"}], [{"original_text": "The couple was ready for their first vacation together.", "album_id": "72157607019124715", "photo_flickr_id": "2809471637", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "41737", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple was ready for their first vacation together .", "storylet_id": "208685"}], [{"original_text": "First stop was to the landmark beach.", "album_id": "72157607019124715", "photo_flickr_id": "2810319910", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "41737", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first stop was to the landmark beach .", "storylet_id": "208686"}], [{"original_text": "Next they went to the boardwalk for some rest.", "album_id": "72157607019124715", "photo_flickr_id": "2810320110", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "41737", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next they went to the boardwalk for some rest .", "storylet_id": "208687"}], [{"original_text": "Then they headed towards town for dinner.", "album_id": "72157607019124715", "photo_flickr_id": "2809472317", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "41737", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they headed towards town for dinner .", "storylet_id": "208688"}], [{"original_text": "They had a unique dessert to cap off their first day of vacation.", "album_id": "72157607019124715", "photo_flickr_id": "2809473345", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "41737", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had a unique dessert to cap off their first day of vacation .", "storylet_id": "208689"}], [{"original_text": "My car is going to take Sharon and I on a great adventure. ", "album_id": "72157607019124715", "photo_flickr_id": "2809471637", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41738", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my car is going to take [female] and i on a great adventure .", "storylet_id": "208690"}], [{"original_text": "We can't resist taking a selfie against the ocean. ", "album_id": "72157607019124715", "photo_flickr_id": "2810319910", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41738", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we ca n't resist taking a selfie against the ocean .", "storylet_id": "208691"}], [{"original_text": "The dirt road led us down to the pier. ", "album_id": "72157607019124715", "photo_flickr_id": "2810320110", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41738", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dirt road led us down to the pier .", "storylet_id": "208692"}], [{"original_text": "I chose a restaurant that happened to be underground. ", "album_id": "72157607019124715", "photo_flickr_id": "2809472317", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41738", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i chose a restaurant that happened to be underground .", "storylet_id": "208693"}], [{"original_text": "Sharon ordered an incredible dessert before we left. ", "album_id": "72157607019124715", "photo_flickr_id": "2809473345", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41738", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] ordered an incredible dessert before we left .", "storylet_id": "208694"}], [{"original_text": "Me and my wife visited the beach today.", "album_id": "72157607019124715", "photo_flickr_id": "2810319910", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41739", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and my wife visited the beach today .", "storylet_id": "208695"}], [{"original_text": "While walking through the town we came across an old stone wall.", "album_id": "72157607019124715", "photo_flickr_id": "2809472317", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41739", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while walking through the town we came across an old stone wall .", "storylet_id": "208696"}], [{"original_text": "In the water we saw a white riverboat.", "album_id": "72157607019124715", "photo_flickr_id": "2809472909", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41739", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in the water we saw a white riverboat .", "storylet_id": "208697"}], [{"original_text": "In the town there was a large cathedral that was so beautiful.", "album_id": "72157607019124715", "photo_flickr_id": "2809474015", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41739", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the town there was a large cathedral that was so beautiful .", "storylet_id": "208698"}], [{"original_text": "At the end of the day we passed a black and white lighthouse.", "album_id": "72157607019124715", "photo_flickr_id": "2809474201", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41739", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day we passed a black and white lighthouse .", "storylet_id": "208699"}], [{"original_text": "My relatives decided to visit from out of state.", "album_id": "72157607019353399", "photo_flickr_id": "2809528357", "setting": "first-2-pick-and-tell", "worker_id": "F9N6MMPV2D6ZS0A", "story_id": "41740", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my relatives decided to visit from out of state .", "storylet_id": "208700"}], [{"original_text": "Our first stop was the local pond.", "album_id": "72157607019353399", "photo_flickr_id": "2810376456", "setting": "first-2-pick-and-tell", "worker_id": "F9N6MMPV2D6ZS0A", "story_id": "41740", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our first stop was the local pond .", "storylet_id": "208701"}], [{"original_text": "We enjoyed a few drinks by the lake and so did some of the critters!", "album_id": "72157607019353399", "photo_flickr_id": "2810381080", "setting": "first-2-pick-and-tell", "worker_id": "F9N6MMPV2D6ZS0A", "story_id": "41740", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we enjoyed a few drinks by the lake and so did some of the critters !", "storylet_id": "208702"}], [{"original_text": "After, we walked around downtown.", "album_id": "72157607019353399", "photo_flickr_id": "2809534817", "setting": "first-2-pick-and-tell", "worker_id": "F9N6MMPV2D6ZS0A", "story_id": "41740", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after , we walked around downtown .", "storylet_id": "208703"}], [{"original_text": "We enjoyed a lunch at the local cafe.", "album_id": "72157607019353399", "photo_flickr_id": "2809526575", "setting": "first-2-pick-and-tell", "worker_id": "F9N6MMPV2D6ZS0A", "story_id": "41740", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we enjoyed a lunch at the local cafe .", "storylet_id": "208704"}], [{"original_text": "Eating lunch with his parents.", "album_id": "72157607019353399", "photo_flickr_id": "2809526575", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41741", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "eating lunch with his parents .", "storylet_id": "208705"}], [{"original_text": "Taking a picture with mom.", "album_id": "72157607019353399", "photo_flickr_id": "2810373830", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41741", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "taking a picture with mom .", "storylet_id": "208706"}], [{"original_text": "Parents opening their gifts. ", "album_id": "72157607019353399", "photo_flickr_id": "2810373934", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41741", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "parents opening their gifts .", "storylet_id": "208707"}], [{"original_text": "Family arriving at the beach.", "album_id": "72157607019353399", "photo_flickr_id": "2810380286", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41741", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "family arriving at the beach .", "storylet_id": "208708"}], [{"original_text": "Watching the sunset together. ", "album_id": "72157607019353399", "photo_flickr_id": "2809534041", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41741", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "watching the sunset together .", "storylet_id": "208709"}], [{"original_text": "It was the day of our family reunion.", "album_id": "72157607019353399", "photo_flickr_id": "2809526575", "setting": "last-3-pick-old-and-tell", "worker_id": "8QOYKUSN6RVC8OC", "story_id": "41742", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the day of our family reunion .", "storylet_id": "208710"}], [{"original_text": "We were really happy to see everyone after so long.", "album_id": "72157607019353399", "photo_flickr_id": "2810373830", "setting": "last-3-pick-old-and-tell", "worker_id": "8QOYKUSN6RVC8OC", "story_id": "41742", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were really happy to see everyone after so long .", "storylet_id": "208711"}], [{"original_text": "We also did a gift exchange with everyone.", "album_id": "72157607019353399", "photo_flickr_id": "2810373934", "setting": "last-3-pick-old-and-tell", "worker_id": "8QOYKUSN6RVC8OC", "story_id": "41742", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also did a gift exchange with everyone .", "storylet_id": "208712"}], [{"original_text": "Afterward we all took off for some fun at the lake.", "album_id": "72157607019353399", "photo_flickr_id": "2810380286", "setting": "last-3-pick-old-and-tell", "worker_id": "8QOYKUSN6RVC8OC", "story_id": "41742", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we all took off for some fun at the lake .", "storylet_id": "208713"}], [{"original_text": "It was a really great day that ended with a great sunset.", "album_id": "72157607019353399", "photo_flickr_id": "2809534041", "setting": "last-3-pick-old-and-tell", "worker_id": "8QOYKUSN6RVC8OC", "story_id": "41742", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a really great day that ended with a great sunset .", "storylet_id": "208714"}], [{"original_text": "The family met up for a nice day together.", "album_id": "72157607019353399", "photo_flickr_id": "2809528357", "setting": "last-3-pick-old-and-tell", "worker_id": "PEJ2HR9D63QVJIX", "story_id": "41743", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family met up for a nice day together .", "storylet_id": "208715"}], [{"original_text": "They went out and looked at the beautiful, clear lake.", "album_id": "72157607019353399", "photo_flickr_id": "2810376456", "setting": "last-3-pick-old-and-tell", "worker_id": "PEJ2HR9D63QVJIX", "story_id": "41743", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they went out and looked at the beautiful , clear lake .", "storylet_id": "208716"}], [{"original_text": "They came across an armadillo, deceased with a beer can on his face.", "album_id": "72157607019353399", "photo_flickr_id": "2810381080", "setting": "last-3-pick-old-and-tell", "worker_id": "PEJ2HR9D63QVJIX", "story_id": "41743", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they came across an armadillo , deceased with a beer can on his face .", "storylet_id": "208717"}], [{"original_text": "They decided to walk back into town.", "album_id": "72157607019353399", "photo_flickr_id": "2809534817", "setting": "last-3-pick-old-and-tell", "worker_id": "PEJ2HR9D63QVJIX", "story_id": "41743", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they decided to walk back into town .", "storylet_id": "208718"}], [{"original_text": "Then they ate a delicious dinner.", "album_id": "72157607019353399", "photo_flickr_id": "2809526575", "setting": "last-3-pick-old-and-tell", "worker_id": "PEJ2HR9D63QVJIX", "story_id": "41743", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then they ate a delicious dinner .", "storylet_id": "208719"}], [{"original_text": "A husband and wife look out at the horizon and see a body of water.", "album_id": "72157607019353399", "photo_flickr_id": "2809528357", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "41744", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a husband and wife look out at the horizon and see a body of water .", "storylet_id": "208720"}], [{"original_text": "They go for a walk and get closer to the lake that they saw in the distance.", "album_id": "72157607019353399", "photo_flickr_id": "2810376456", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "41744", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they go for a walk and get closer to the lake that they saw in the distance .", "storylet_id": "208721"}], [{"original_text": "A sick individual had placed a beer can in the hands of a dead animal.", "album_id": "72157607019353399", "photo_flickr_id": "2810381080", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "41744", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a sick individual had placed a beer can in the hands of a dead animal .", "storylet_id": "208722"}], [{"original_text": "The couple makes their way to a local restaurant.", "album_id": "72157607019353399", "photo_flickr_id": "2809534817", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "41744", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple makes their way to a local restaurant .", "storylet_id": "208723"}], [{"original_text": "They meet their friends at the restaurant and have a great dinner.", "album_id": "72157607019353399", "photo_flickr_id": "2809526575", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "41744", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they meet their friends at the restaurant and have a great dinner .", "storylet_id": "208724"}], [{"original_text": "The couple had a lovely day at the ocean.", "album_id": "72157594452196120", "photo_flickr_id": "341144394", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "41745", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple had a lovely day at the ocean .", "storylet_id": "208725"}], [{"original_text": "Here the girlfriend is hiking up the trail on the way back.", "album_id": "72157594452196120", "photo_flickr_id": "341144965", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "41745", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here the girlfriend is hiking up the trail on the way back .", "storylet_id": "208726"}], [{"original_text": "Later the couple went into the city and saw the sights including this beautiful church.", "album_id": "72157594452196120", "photo_flickr_id": "341145492", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "41745", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "later the couple went into the city and saw the sights including this beautiful church .", "storylet_id": "208727"}], [{"original_text": "The couple really enjoyed this lovely statue they wandered upon.", "album_id": "72157594452196120", "photo_flickr_id": "341145185", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "41745", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple really enjoyed this lovely statue they wandered upon .", "storylet_id": "208728"}], [{"original_text": "After a long and eventful day the couple retired to their hotel room and the boyfriend relaxed in bed.", "album_id": "72157594452196120", "photo_flickr_id": "341145618", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "41745", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long and eventful day the couple retired to their hotel room and the boyfriend relaxed in bed .", "storylet_id": "208729"}], [{"original_text": "I loved this statue.", "album_id": "72157594452196120", "photo_flickr_id": "341145185", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41746", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i loved this statue .", "storylet_id": "208730"}], [{"original_text": "It was near that big stone building.", "album_id": "72157594452196120", "photo_flickr_id": "341145492", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41746", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was near that big stone building .", "storylet_id": "208731"}], [{"original_text": "Then I went to bed.", "album_id": "72157594452196120", "photo_flickr_id": "341145618", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41746", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then i went to bed .", "storylet_id": "208732"}], [{"original_text": "But I got back out of bed.", "album_id": "72157594452196120", "photo_flickr_id": "341145747", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41746", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but i got back out of bed .", "storylet_id": "208733"}], [{"original_text": "And yet you still kept taking photos....", "album_id": "72157594452196120", "photo_flickr_id": "341143730", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41746", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and yet you still kept taking photos ... .", "storylet_id": "208734"}], [{"original_text": "Here we are, on one of the biggest outcroppings in the country.", "album_id": "72157594452196120", "photo_flickr_id": "341144394", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "41747", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are , on one of the biggest outcroppings in the country .", "storylet_id": "208735"}], [{"original_text": "We took a bit of a trip with our tour guide to this gorgeous field.", "album_id": "72157594452196120", "photo_flickr_id": "341144965", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "41747", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a bit of a trip with our tour guide to this gorgeous field .", "storylet_id": "208736"}], [{"original_text": "Soon, we were seeing all the pre-modern architecture and churches in England.", "album_id": "72157594452196120", "photo_flickr_id": "341145492", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "41747", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "soon , we were seeing all the pre-modern architecture and churches in location .", "storylet_id": "208737"}], [{"original_text": "We were so scared when we saw this one, we thought it was human!", "album_id": "72157594452196120", "photo_flickr_id": "341145185", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "41747", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were so scared when we saw this one , we thought it was human !", "storylet_id": "208738"}], [{"original_text": "We turned in for the night not too long after that.", "album_id": "72157594452196120", "photo_flickr_id": "341145618", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "41747", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we turned in for the night not too long after that .", "storylet_id": "208739"}], [{"original_text": "Last summer we went on vacation.", "album_id": "72157594452196120", "photo_flickr_id": "341144394", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41748", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last summer we went on vacation .", "storylet_id": "208740"}], [{"original_text": "We spent a lot of time hiking through the countryside of Europe.", "album_id": "72157594452196120", "photo_flickr_id": "341144965", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41748", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we spent a lot of time hiking through the countryside of location .", "storylet_id": "208741"}], [{"original_text": "When we were in the city we made sure to see all the historical sites.", "album_id": "72157594452196120", "photo_flickr_id": "341145492", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41748", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we were in the city we made sure to see all the historical sites .", "storylet_id": "208742"}], [{"original_text": "There were plenty of things to keep us busy.", "album_id": "72157594452196120", "photo_flickr_id": "341145185", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41748", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were plenty of things to keep us busy .", "storylet_id": "208743"}], [{"original_text": "We were only in our hotel room to sleep!", "album_id": "72157594452196120", "photo_flickr_id": "341145618", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41748", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were only in our hotel room to sleep !", "storylet_id": "208744"}], [{"original_text": "On the first day of our vacation, we went sight-seeing on the edge of a rocky cliff.", "album_id": "72157594452196120", "photo_flickr_id": "341144394", "setting": "last-3-pick-old-and-tell", "worker_id": "P4BTSS0R1MVO8HF", "story_id": "41749", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on the first day of our vacation , we went sight-seeing on the edge of a rocky cliff .", "storylet_id": "208745"}], [{"original_text": "We hiked across a grassy plain and enjoyed the weather.", "album_id": "72157594452196120", "photo_flickr_id": "341144965", "setting": "last-3-pick-old-and-tell", "worker_id": "P4BTSS0R1MVO8HF", "story_id": "41749", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we hiked across a grassy plain and enjoyed the weather .", "storylet_id": "208746"}], [{"original_text": "On the next day, we visited the nearby city.", "album_id": "72157594452196120", "photo_flickr_id": "341145492", "setting": "last-3-pick-old-and-tell", "worker_id": "P4BTSS0R1MVO8HF", "story_id": "41749", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on the next day , we visited the nearby city .", "storylet_id": "208747"}], [{"original_text": "All of the buildings were tall and magnificent.", "album_id": "72157594452196120", "photo_flickr_id": "341145185", "setting": "last-3-pick-old-and-tell", "worker_id": "P4BTSS0R1MVO8HF", "story_id": "41749", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the buildings were tall and magnificent .", "storylet_id": "208748"}], [{"original_text": "At the end of the day, everyone was tired of adventuring and ready for bed.", "album_id": "72157594452196120", "photo_flickr_id": "341145618", "setting": "last-3-pick-old-and-tell", "worker_id": "P4BTSS0R1MVO8HF", "story_id": "41749", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , everyone was tired of adventuring and ready for bed .", "storylet_id": "208749"}], [{"original_text": "We got to the beach to spend our day. ", "album_id": "72157594452943974", "photo_flickr_id": "341639081", "setting": "first-2-pick-and-tell", "worker_id": "8458P4HFXJAZ6U5", "story_id": "41750", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got to the beach to spend our day .", "storylet_id": "208750"}], [{"original_text": "First, we had to set up our beach site. ", "album_id": "72157594452943974", "photo_flickr_id": "341639669", "setting": "first-2-pick-and-tell", "worker_id": "8458P4HFXJAZ6U5", "story_id": "41750", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first , we had to set up our beach site .", "storylet_id": "208751"}], [{"original_text": "Then our family are lunch together. ", "album_id": "72157594452943974", "photo_flickr_id": "341640090", "setting": "first-2-pick-and-tell", "worker_id": "8458P4HFXJAZ6U5", "story_id": "41750", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then our family are lunch together .", "storylet_id": "208752"}], [{"original_text": "After a bit, mom let us go play in the waves. ", "album_id": "72157594452943974", "photo_flickr_id": "341635442", "setting": "first-2-pick-and-tell", "worker_id": "8458P4HFXJAZ6U5", "story_id": "41750", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a bit , mom let us go play in the waves .", "storylet_id": "208753"}], [{"original_text": "By the end of the day, my brothers and I were exhausted and fell asleep. ", "album_id": "72157594452943974", "photo_flickr_id": "341634306", "setting": "first-2-pick-and-tell", "worker_id": "8458P4HFXJAZ6U5", "story_id": "41750", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of the day , my brothers and i were exhausted and fell asleep .", "storylet_id": "208754"}], [{"original_text": "On our way to the beach today. The boys passed out from the long drive. ", "album_id": "72157594452943974", "photo_flickr_id": "341633914", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41751", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our way to the beach today . the boys passed out from the long drive .", "storylet_id": "208755"}], [{"original_text": "We set up on the beach. Food and drinks with the family. ", "album_id": "72157594452943974", "photo_flickr_id": "341641078", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41751", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we set up on the beach . food and drinks with the family .", "storylet_id": "208756"}], [{"original_text": "We had a lot of fun setting up in the sand. ", "album_id": "72157594452943974", "photo_flickr_id": "341639669", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41751", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a lot of fun setting up in the sand .", "storylet_id": "208757"}], [{"original_text": "Here I am taking a selfie in the sun. ", "album_id": "72157594452943974", "photo_flickr_id": "341637716", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41751", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here i am taking a selfie in the sun .", "storylet_id": "208758"}], [{"original_text": "Afterwards I went surfing in the water. It was a lot of fun. ", "album_id": "72157594452943974", "photo_flickr_id": "341635442", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "41751", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards i went surfing in the water . it was a lot of fun .", "storylet_id": "208759"}], [{"original_text": "A family took a trip to the beach.", "album_id": "72157594452943974", "photo_flickr_id": "341639081", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41752", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a family took a trip to the beach .", "storylet_id": "208760"}], [{"original_text": "They set up a tent on the sand and parked their car next to it.", "album_id": "72157594452943974", "photo_flickr_id": "341639669", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41752", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they set up a tent on the sand and parked their car next to it .", "storylet_id": "208761"}], [{"original_text": "They had a family picnic before playing.", "album_id": "72157594452943974", "photo_flickr_id": "341640090", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41752", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a family picnic before playing .", "storylet_id": "208762"}], [{"original_text": "The children went surf boarding in the ocean.", "album_id": "72157594452943974", "photo_flickr_id": "341635442", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41752", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the children went surf boarding in the ocean .", "storylet_id": "208763"}], [{"original_text": "The kids were all fast asleep in the back seat during the drive back home.", "album_id": "72157594452943974", "photo_flickr_id": "341634306", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41752", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids were all fast asleep in the back seat during the drive back home .", "storylet_id": "208764"}], [{"original_text": "The family was so happy, because they got to go on a trip to the beach!", "album_id": "72157594452943974", "photo_flickr_id": "341639081", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "41753", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was so happy , because they got to go on a trip to the beach !", "storylet_id": "208765"}], [{"original_text": "They got the tent all set up so they would have shade from the sun.", "album_id": "72157594452943974", "photo_flickr_id": "341639669", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "41753", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got the tent all set up so they would have shade from the sun .", "storylet_id": "208766"}], [{"original_text": "Then they sat down together to eat a delicious lunch.", "album_id": "72157594452943974", "photo_flickr_id": "341640090", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "41753", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they sat down together to eat a delicious lunch .", "storylet_id": "208767"}], [{"original_text": "After lunch, it was time to play in the ocean. The waves were so big.", "album_id": "72157594452943974", "photo_flickr_id": "341635442", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "41753", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after lunch , it was time to play in the ocean . the waves were so big .", "storylet_id": "208768"}], [{"original_text": "They played so hard all day, having a great time in the sand and water. They were exhausted and fell asleep on the drive home.", "album_id": "72157594452943974", "photo_flickr_id": "341634306", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "41753", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they played so hard all day , having a great time in the sand and water . they were exhausted and fell asleep on the drive home .", "storylet_id": "208769"}], [{"original_text": "Family day at the beach.", "album_id": "72157594452943974", "photo_flickr_id": "341639081", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41754", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family day at the beach .", "storylet_id": "208770"}], [{"original_text": "The family is setting up the tent. ", "album_id": "72157594452943974", "photo_flickr_id": "341639669", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41754", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family is setting up the tent .", "storylet_id": "208771"}], [{"original_text": "Time to eat lunch before going swimming. ", "album_id": "72157594452943974", "photo_flickr_id": "341640090", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41754", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "time to eat lunch before going swimming .", "storylet_id": "208772"}], [{"original_text": "Swimming the the ocean.", "album_id": "72157594452943974", "photo_flickr_id": "341635442", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41754", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "swimming the the ocean .", "storylet_id": "208773"}], [{"original_text": "The kids are tired and are taking a nap on their way back home. ", "album_id": "72157594452943974", "photo_flickr_id": "341634306", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41754", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids are tired and are taking a nap on their way back home .", "storylet_id": "208774"}], [{"original_text": "The family is going on a trip to the beach.", "album_id": "72157622988313891", "photo_flickr_id": "4233725548", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41755", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family is going on a trip to the beach .", "storylet_id": "208775"}], [{"original_text": "The family is a Dad, Mom, and their son.", "album_id": "72157622988313891", "photo_flickr_id": "4234035434", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41755", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family is a dad , mom , and their son .", "storylet_id": "208776"}], [{"original_text": "The son is excited because they are going on a boat ride.", "album_id": "72157622988313891", "photo_flickr_id": "4232956401", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41755", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the son is excited because they are going on a boat ride .", "storylet_id": "208777"}], [{"original_text": "The boat sets off and travels around the bay.", "album_id": "72157622988313891", "photo_flickr_id": "4233099131", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41755", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boat sets off and travels around the bay .", "storylet_id": "208778"}], [{"original_text": "The family takes in the sites from the boat and they are happy that they decided to come.", "album_id": "72157622988313891", "photo_flickr_id": "4233721412", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41755", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family takes in the sites from the boat and they are happy that they decided to come .", "storylet_id": "208779"}], [{"original_text": "The man was on his way to the beach. First he had to walk to the boardwalk.", "album_id": "72157622988313891", "photo_flickr_id": "4232954441", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "41756", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man was on his way to the beach . first he had to walk to the boardwalk .", "storylet_id": "208780"}], [{"original_text": "As he walked up it he was getting excited.", "album_id": "72157622988313891", "photo_flickr_id": "4232956401", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "41756", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as he walked up it he was getting excited .", "storylet_id": "208781"}], [{"original_text": "Here he is descending it to the sand, getting closer.", "album_id": "72157622988313891", "photo_flickr_id": "4232952433", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "41756", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here he is descending it to the sand , getting closer .", "storylet_id": "208782"}], [{"original_text": "Then he had to cross a few rocks.", "album_id": "72157622988313891", "photo_flickr_id": "4233725548", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "41756", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then he had to cross a few rocks .", "storylet_id": "208783"}], [{"original_text": "Finally, he made it to the wonderful beach!", "album_id": "72157622988313891", "photo_flickr_id": "4233721412", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "41756", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , he made it to the wonderful beach !", "storylet_id": "208784"}], [{"original_text": "We arrived at our destination as the sun was going down. That was fine because we were pretty tired from the long trip.", "album_id": "72157622988313891", "photo_flickr_id": "4232954441", "setting": "last-3-pick-old-and-tell", "worker_id": "7Q4NF5T41H40378", "story_id": "41757", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at our destination as the sun was going down . that was fine because we were pretty tired from the long trip .", "storylet_id": "208785"}], [{"original_text": "After a good nights sleep we went exploring and came across a long the dock. We walked down the dock for a while.", "album_id": "72157622988313891", "photo_flickr_id": "4232956401", "setting": "last-3-pick-old-and-tell", "worker_id": "7Q4NF5T41H40378", "story_id": "41757", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after a good nights sleep we went exploring and came across a long the dock . we walked down the dock for a while .", "storylet_id": "208786"}], [{"original_text": "When we came to the end we found ourselves on a rocky beach where we spent some time looking for crabs.", "album_id": "72157622988313891", "photo_flickr_id": "4232952433", "setting": "last-3-pick-old-and-tell", "worker_id": "7Q4NF5T41H40378", "story_id": "41757", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we came to the end we found ourselves on a rocky beach where we spent some time looking for crabs .", "storylet_id": "208787"}], [{"original_text": "In the distance the clouds rolled in and we thought we would get caught in the rain.", "album_id": "72157622988313891", "photo_flickr_id": "4233725548", "setting": "last-3-pick-old-and-tell", "worker_id": "7Q4NF5T41H40378", "story_id": "41757", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the distance the clouds rolled in and we thought we would get caught in the rain .", "storylet_id": "208788"}], [{"original_text": "Fortunately, the clouds passed and we enjoyed the rest of our day at the seashore.", "album_id": "72157622988313891", "photo_flickr_id": "4233721412", "setting": "last-3-pick-old-and-tell", "worker_id": "7Q4NF5T41H40378", "story_id": "41757", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fortunately , the clouds passed and we enjoyed the rest of our day at the seashore .", "storylet_id": "208789"}], [{"original_text": "It was a lovely day for the family on the lake.", "album_id": "72157622988313891", "photo_flickr_id": "4233725548", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41758", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a lovely day for the family on the lake .", "storylet_id": "208790"}], [{"original_text": "They posed for a snapshot on the beach.", "album_id": "72157622988313891", "photo_flickr_id": "4234035434", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41758", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they posed for a snapshot on the beach .", "storylet_id": "208791"}], [{"original_text": "Later they went out in a sailboat. ", "album_id": "72157622988313891", "photo_flickr_id": "4232956401", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41758", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "later they went out in a sailboat .", "storylet_id": "208792"}], [{"original_text": "The boats came to shore one by one as the sun set. ", "album_id": "72157622988313891", "photo_flickr_id": "4233099131", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41758", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boats came to shore one by one as the sun set .", "storylet_id": "208793"}], [{"original_text": "The lake was placid and beautiful. ", "album_id": "72157622988313891", "photo_flickr_id": "4233721412", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "41758", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lake was placid and beautiful .", "storylet_id": "208794"}], [{"original_text": "Watching the sunrise is amazing ", "album_id": "72157622988313891", "photo_flickr_id": "4232954441", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "41759", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "watching the sunrise is amazing", "storylet_id": "208795"}], [{"original_text": "Can't wait to get on the boat and go sailing ", "album_id": "72157622988313891", "photo_flickr_id": "4232956401", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "41759", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "ca n't wait to get on the boat and go sailing", "storylet_id": "208796"}], [{"original_text": "being on the water under the blue sky and white clouds ", "album_id": "72157622988313891", "photo_flickr_id": "4232952433", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "41759", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "being on the water under the blue sky and white clouds", "storylet_id": "208797"}], [{"original_text": "and the clear calm waters ", "album_id": "72157622988313891", "photo_flickr_id": "4233725548", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "41759", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the clear calm waters", "storylet_id": "208798"}], [{"original_text": "makes you appreciate nature", "album_id": "72157622988313891", "photo_flickr_id": "4233721412", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "41759", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "makes you appreciate nature", "storylet_id": "208799"}], [{"original_text": "Arriving at the beach.", "album_id": "72157623116016116", "photo_flickr_id": "4234367635", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41760", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "arriving at the beach .", "storylet_id": "208800"}], [{"original_text": "The sun wasn't out.", "album_id": "72157623116016116", "photo_flickr_id": "4235150760", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41760", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sun was n't out .", "storylet_id": "208801"}], [{"original_text": "So we explored instead.", "album_id": "72157623116016116", "photo_flickr_id": "4234390743", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41760", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so we explored instead .", "storylet_id": "208802"}], [{"original_text": "The beaches were quiet.", "album_id": "72157623116016116", "photo_flickr_id": "4234399713", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41760", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beaches were quiet .", "storylet_id": "208803"}], [{"original_text": "We went back to the parking site and left.", "album_id": "72157623116016116", "photo_flickr_id": "4235197206", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "41760", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we went back to the parking site and left .", "storylet_id": "208804"}], [{"original_text": "Our family was planning a long road trip", "album_id": "72157623116016116", "photo_flickr_id": "4235197206", "setting": "first-2-pick-and-tell", "worker_id": "80C41WU9XXASBXA", "story_id": "41761", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family was planning a long road trip", "storylet_id": "208805"}], [{"original_text": "We gathered our stuff at the storage space, and set out on the road.", "album_id": "72157623116016116", "photo_flickr_id": "4235291912", "setting": "first-2-pick-and-tell", "worker_id": "80C41WU9XXASBXA", "story_id": "41761", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we gathered our stuff at the storage space , and set out on the road .", "storylet_id": "208806"}], [{"original_text": "When we arrived at the beach house we were staying at, it was gorgeous and modern! ", "album_id": "72157623116016116", "photo_flickr_id": "4234530669", "setting": "first-2-pick-and-tell", "worker_id": "80C41WU9XXASBXA", "story_id": "41761", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we arrived at the beach house we were staying at , it was gorgeous and modern !", "storylet_id": "208807"}], [{"original_text": "We went hiking on the beach and saw beautiful scenery.", "album_id": "72157623116016116", "photo_flickr_id": "4235321476", "setting": "first-2-pick-and-tell", "worker_id": "80C41WU9XXASBXA", "story_id": "41761", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went hiking on the beach and saw beautiful scenery .", "storylet_id": "208808"}], [{"original_text": "When it was time to go home, I didn't want to leave.", "album_id": "72157623116016116", "photo_flickr_id": "4235375498", "setting": "first-2-pick-and-tell", "worker_id": "80C41WU9XXASBXA", "story_id": "41761", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when it was time to go home , i did n't want to leave .", "storylet_id": "208809"}], [{"original_text": "Taking the family to the beach for a funfilled vacation.", "album_id": "72157623116016116", "photo_flickr_id": "4235197206", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41762", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "taking the family to the beach for a funfilled vacation .", "storylet_id": "208810"}], [{"original_text": "Filled up with some petrol and off we go.", "album_id": "72157623116016116", "photo_flickr_id": "4235291912", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41762", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "filled up with some petrol and off we go .", "storylet_id": "208811"}], [{"original_text": "Here is our room for the weekend. It's gonna be fun.", "album_id": "72157623116016116", "photo_flickr_id": "4234530669", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41762", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is our room for the weekend . it 's gon na be fun .", "storylet_id": "208812"}], [{"original_text": "Had to stop and take pictures of our great land and all the dog paw prints on the sand.", "album_id": "72157623116016116", "photo_flickr_id": "4235321476", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41762", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "had to stop and take pictures of our great land and all the dog paw prints on the sand .", "storylet_id": "208813"}], [{"original_text": "On the road again getting dinner.", "album_id": "72157623116016116", "photo_flickr_id": "4235375498", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41762", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the road again getting dinner .", "storylet_id": "208814"}], [{"original_text": "Not a soul was out. ", "album_id": "72157623116016116", "photo_flickr_id": "4234367635", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41763", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "not a soul was out .", "storylet_id": "208815"}], [{"original_text": "Sometimes it seemed like a desolate place. ", "album_id": "72157623116016116", "photo_flickr_id": "4235150760", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41763", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sometimes it seemed like a desolate place .", "storylet_id": "208816"}], [{"original_text": "Today was no exception. ", "album_id": "72157623116016116", "photo_flickr_id": "4234390743", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41763", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "today was no exception .", "storylet_id": "208817"}], [{"original_text": "The sound of the waves and the occasional bird chips were the only sounds. ", "album_id": "72157623116016116", "photo_flickr_id": "4234399713", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41763", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sound of the waves and the occasional bird chips were the only sounds .", "storylet_id": "208818"}], [{"original_text": "Well, it wouldn't last long, it never did. ", "album_id": "72157623116016116", "photo_flickr_id": "4235197206", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "41763", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "well , it would n't last long , it never did .", "storylet_id": "208819"}], [{"original_text": "The family stayed at the camp grounds while looking for a place to live.", "album_id": "72157623116016116", "photo_flickr_id": "4235197206", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41764", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family stayed at the camp grounds while looking for a place to live .", "storylet_id": "208820"}], [{"original_text": "The campgrounds had a great view.", "album_id": "72157623116016116", "photo_flickr_id": "4235291912", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41764", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the campgrounds had a great view .", "storylet_id": "208821"}], [{"original_text": "One place they looked were these apartments.", "album_id": "72157623116016116", "photo_flickr_id": "4234530669", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41764", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one place they looked were these apartments .", "storylet_id": "208822"}], [{"original_text": "After looking around for awhile they took in the views around the area.", "album_id": "72157623116016116", "photo_flickr_id": "4235321476", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41764", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after looking around for awhile they took in the views around the area .", "storylet_id": "208823"}], [{"original_text": "They then decided to go down farther to see what else they could find.", "album_id": "72157623116016116", "photo_flickr_id": "4235375498", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41764", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they then decided to go down farther to see what else they could find .", "storylet_id": "208824"}], [{"original_text": "College Co-Ed mixer's night at our fraternity house.", "album_id": "72157622992588937", "photo_flickr_id": "4235673252", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41765", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "college co-ed mixer 's night at our fraternity house .", "storylet_id": "208825"}], [{"original_text": "This girl was so not happy about the theme of the party.", "album_id": "72157622992588937", "photo_flickr_id": "4235674158", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41765", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this girl was so not happy about the theme of the party .", "storylet_id": "208826"}], [{"original_text": "A group photo with all the fraternity presidents.", "album_id": "72157622992588937", "photo_flickr_id": "4235676298", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41765", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a group photo with all the fraternity presidents .", "storylet_id": "208827"}], [{"original_text": "Some one underage tried to break into out party, no no.", "album_id": "72157622992588937", "photo_flickr_id": "4235679246", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41765", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some one underage tried to break into out party , no no .", "storylet_id": "208828"}], [{"original_text": "My sorority sisters were so trashed while posing for a picture.", "album_id": "72157622992588937", "photo_flickr_id": "4235679732", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41765", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my sorority sisters were so trashed while posing for a picture .", "storylet_id": "208829"}], [{"original_text": "we got wasted ", "album_id": "72157622992588937", "photo_flickr_id": "4235673252", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41766", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got wasted", "storylet_id": "208830"}], [{"original_text": "we had a winter beach party", "album_id": "72157622992588937", "photo_flickr_id": "4235674158", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41766", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a winter beach party", "storylet_id": "208831"}], [{"original_text": "everyone dressed up for the event", "album_id": "72157622992588937", "photo_flickr_id": "4235676298", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41766", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone dressed up for the event", "storylet_id": "208832"}], [{"original_text": "lots of hotties came", "album_id": "72157622992588937", "photo_flickr_id": "4235677212", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41766", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "lots of hotties came", "storylet_id": "208833"}], [{"original_text": "some were on mushrooms", "album_id": "72157622992588937", "photo_flickr_id": "4235679732", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41766", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some were on mushrooms", "storylet_id": "208834"}], [{"original_text": "This was the drink that started the birthday luau.", "album_id": "72157622992588937", "photo_flickr_id": "4235673252", "setting": "last-3-pick-old-and-tell", "worker_id": "4PA894CUIYHYA7C", "story_id": "41767", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the drink that started the birthday luau .", "storylet_id": "208835"}], [{"original_text": "Here one of the party goers enjoys a drink while lounging with a beach ball.", "album_id": "72157622992588937", "photo_flickr_id": "4235674158", "setting": "last-3-pick-old-and-tell", "worker_id": "4PA894CUIYHYA7C", "story_id": "41767", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here one of the party goers enjoys a drink while lounging with a beach ball .", "storylet_id": "208836"}], [{"original_text": "The party really started going when all of her friends showed up.", "album_id": "72157622992588937", "photo_flickr_id": "4235676298", "setting": "last-3-pick-old-and-tell", "worker_id": "4PA894CUIYHYA7C", "story_id": "41767", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the party really started going when all of her friends showed up .", "storylet_id": "208837"}], [{"original_text": "This partygoer almost got into a fight.", "album_id": "72157622992588937", "photo_flickr_id": "4235679246", "setting": "last-3-pick-old-and-tell", "worker_id": "4PA894CUIYHYA7C", "story_id": "41767", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this partygoer almost got into a fight .", "storylet_id": "208838"}], [{"original_text": "As the party started to wind down everyone started to realize how tired they were.", "album_id": "72157622992588937", "photo_flickr_id": "4235679732", "setting": "last-3-pick-old-and-tell", "worker_id": "4PA894CUIYHYA7C", "story_id": "41767", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the party started to wind down everyone started to realize how tired they were .", "storylet_id": "208839"}], [{"original_text": "There was drinking, but that just enhanced the fun of the day.", "album_id": "72157622992588937", "photo_flickr_id": "4235673252", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "41768", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was drinking , but that just enhanced the fun of the day .", "storylet_id": "208840"}], [{"original_text": "Playing around with this ball kept everyone busy.", "album_id": "72157622992588937", "photo_flickr_id": "4235674158", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "41768", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "playing around with this ball kept everyone busy .", "storylet_id": "208841"}], [{"original_text": "Of course we took a ton of pictures to commemorate things.", "album_id": "72157622992588937", "photo_flickr_id": "4235676298", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "41768", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course we took a ton of pictures to commemorate things .", "storylet_id": "208842"}], [{"original_text": "Even a few glamour shots!", "album_id": "72157622992588937", "photo_flickr_id": "4235677212", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "41768", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even a few glamour shots !", "storylet_id": "208843"}], [{"original_text": "But it was a lot of fun bonding with friends.", "album_id": "72157622992588937", "photo_flickr_id": "4235679732", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "41768", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but it was a lot of fun bonding with friends .", "storylet_id": "208844"}], [{"original_text": "It was time to party.", "album_id": "72157622992588937", "photo_flickr_id": "4235673252", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41769", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was time to party .", "storylet_id": "208845"}], [{"original_text": "They found a huge beach ball to have at the party.", "album_id": "72157622992588937", "photo_flickr_id": "4235674158", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41769", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they found a huge beach ball to have at the party .", "storylet_id": "208846"}], [{"original_text": "A good time was had by all.", "album_id": "72157622992588937", "photo_flickr_id": "4235676298", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41769", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a good time was had by all .", "storylet_id": "208847"}], [{"original_text": "The boys messed around with each other.", "album_id": "72157622992588937", "photo_flickr_id": "4235679246", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41769", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boys messed around with each other .", "storylet_id": "208848"}], [{"original_text": "The girls took many pictures.", "album_id": "72157622992588937", "photo_flickr_id": "4235679732", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "41769", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girls took many pictures .", "storylet_id": "208849"}], [{"original_text": "The boat is seen in the distance in front of the hills.", "album_id": "72157622994356223", "photo_flickr_id": "4236485308", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41770", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boat is seen in the distance in front of the hills .", "storylet_id": "208850"}], [{"original_text": "The sun is attempting to peak out from the clouds.", "album_id": "72157622994356223", "photo_flickr_id": "4236486060", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41770", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sun is attempting to peak out from the clouds .", "storylet_id": "208851"}], [{"original_text": "The sun is hidden by the clouds.", "album_id": "72157622994356223", "photo_flickr_id": "4236491268", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41770", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sun is hidden by the clouds .", "storylet_id": "208852"}], [{"original_text": "The waterway and hillside are blended as one.", "album_id": "72157622994356223", "photo_flickr_id": "4235800859", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41770", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the waterway and hillside are blended as one .", "storylet_id": "208853"}], [{"original_text": "The sun is setting behind the hills on a beautiful night.", "album_id": "72157622994356223", "photo_flickr_id": "4232574716", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41770", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sun is setting behind the hills on a beautiful night .", "storylet_id": "208854"}], [{"original_text": "The fluffy clouds were rolling past the sun.", "album_id": "72157622994356223", "photo_flickr_id": "4236486060", "setting": "first-2-pick-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "41771", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fluffy clouds were rolling past the sun .", "storylet_id": "208855"}], [{"original_text": "You could barely see the rays of sunlight from behind the clouds.", "album_id": "72157622994356223", "photo_flickr_id": "4235710825", "setting": "first-2-pick-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "41771", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you could barely see the rays of sunlight from behind the clouds .", "storylet_id": "208856"}], [{"original_text": "Birds were flying around in search of dinner.", "album_id": "72157622994356223", "photo_flickr_id": "4235711341", "setting": "first-2-pick-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "41771", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "birds were flying around in search of dinner .", "storylet_id": "208857"}], [{"original_text": "Other birds were soaring high and free.", "album_id": "72157622994356223", "photo_flickr_id": "4235800567", "setting": "first-2-pick-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "41771", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other birds were soaring high and free .", "storylet_id": "208858"}], [{"original_text": "The sun set in the horizon and ushered in the evening.", "album_id": "72157622994356223", "photo_flickr_id": "4232574716", "setting": "first-2-pick-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "41771", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sun set in the horizon and ushered in the evening .", "storylet_id": "208859"}], [{"original_text": "On our nature hike, we saw some amazing things.", "album_id": "72157622994356223", "photo_flickr_id": "4236486060", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41772", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our nature hike , we saw some amazing things .", "storylet_id": "208860"}], [{"original_text": "The rays of the sun coming over the cloud was awe inspiring.", "album_id": "72157622994356223", "photo_flickr_id": "4235710825", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41772", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rays of the sun coming over the cloud was awe inspiring .", "storylet_id": "208861"}], [{"original_text": "The birds looking for food on the water's surface gave one pause about how hard they work to survive.", "album_id": "72157622994356223", "photo_flickr_id": "4235711341", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41772", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the birds looking for food on the water 's surface gave one pause about how hard they work to survive .", "storylet_id": "208862"}], [{"original_text": "The birds are very majestic in flight.", "album_id": "72157622994356223", "photo_flickr_id": "4235800567", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41772", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the birds are very majestic in flight .", "storylet_id": "208863"}], [{"original_text": "The sunset across the water is very soothing and calming.", "album_id": "72157622994356223", "photo_flickr_id": "4232574716", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41772", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sunset across the water is very soothing and calming .", "storylet_id": "208864"}], [{"original_text": "The florida sunsets are always stunning.", "album_id": "72157622994356223", "photo_flickr_id": "4236486060", "setting": "last-3-pick-old-and-tell", "worker_id": "N2D3524KFUNPH30", "story_id": "41773", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the florida sunsets are always stunning .", "storylet_id": "208865"}], [{"original_text": "They are often covered by clouds.", "album_id": "72157622994356223", "photo_flickr_id": "4235710825", "setting": "last-3-pick-old-and-tell", "worker_id": "N2D3524KFUNPH30", "story_id": "41773", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are often covered by clouds .", "storylet_id": "208866"}], [{"original_text": "Even the birds come to watch them.", "album_id": "72157622994356223", "photo_flickr_id": "4235711341", "setting": "last-3-pick-old-and-tell", "worker_id": "N2D3524KFUNPH30", "story_id": "41773", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the birds come to watch them .", "storylet_id": "208867"}], [{"original_text": "They fly high in the air to see it.", "album_id": "72157622994356223", "photo_flickr_id": "4235800567", "setting": "last-3-pick-old-and-tell", "worker_id": "N2D3524KFUNPH30", "story_id": "41773", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they fly high in the air to see it .", "storylet_id": "208868"}], [{"original_text": "Eventually, the sun sets completely. ", "album_id": "72157622994356223", "photo_flickr_id": "4232574716", "setting": "last-3-pick-old-and-tell", "worker_id": "N2D3524KFUNPH30", "story_id": "41773", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually , the sun sets completely .", "storylet_id": "208869"}], [{"original_text": "I went on a photography trip to the beach last night.", "album_id": "72157622994356223", "photo_flickr_id": "4236485308", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41774", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on a photography trip to the beach last night .", "storylet_id": "208870"}], [{"original_text": "I was able to catch some clouds in front of the sunset.", "album_id": "72157622994356223", "photo_flickr_id": "4236486060", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41774", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was able to catch some clouds in front of the sunset .", "storylet_id": "208871"}], [{"original_text": "And snap a great one of clouds in front of the moon.", "album_id": "72157622994356223", "photo_flickr_id": "4236491268", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41774", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and snap a great one of clouds in front of the moon .", "storylet_id": "208872"}], [{"original_text": "The beach looked beautiful with the mountains in the background.", "album_id": "72157622994356223", "photo_flickr_id": "4235800859", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41774", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beach looked beautiful with the mountains in the background .", "storylet_id": "208873"}], [{"original_text": "But the sunset made for the best picture of my trip.", "album_id": "72157622994356223", "photo_flickr_id": "4232574716", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41774", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the sunset made for the best picture of my trip .", "storylet_id": "208874"}], [{"original_text": "I was very nervous yesterday during my tennis game.", "album_id": "72157628032378538", "photo_flickr_id": "7321782256", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41775", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was very nervous yesterday during my tennis game .", "storylet_id": "208875"}], [{"original_text": "Many people had shown up in the audience to watch the match.", "album_id": "72157628032378538", "photo_flickr_id": "7508887344", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41775", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people had shown up in the audience to watch the match .", "storylet_id": "208876"}], [{"original_text": "I tried to do my best even though I was a bit shy.", "album_id": "72157628032378538", "photo_flickr_id": "5870033556", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41775", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i tried to do my best even though i was a bit shy .", "storylet_id": "208877"}], [{"original_text": "I ended up injuring myself during the match and we had to stop.", "album_id": "72157628032378538", "photo_flickr_id": "6560976601", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41775", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i ended up injuring myself during the match and we had to stop .", "storylet_id": "208878"}], [{"original_text": "The match was cancelled due to my injury and was rescheduled. Everybody had to go home.", "album_id": "72157628032378538", "photo_flickr_id": "6560966589", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41775", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the match was cancelled due to my injury and was rescheduled . everybody had to go home .", "storylet_id": "208879"}], [{"original_text": "It's time for the local doubles match.", "album_id": "72157628032378538", "photo_flickr_id": "6560966589", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41776", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's time for the local doubles match .", "storylet_id": "208880"}], [{"original_text": "The crowd is excited and waiting for the match to start.", "album_id": "72157628032378538", "photo_flickr_id": "5869884504", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41776", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd is excited and waiting for the match to start .", "storylet_id": "208881"}], [{"original_text": "It is time for the first serve.", "album_id": "72157628032378538", "photo_flickr_id": "6736686675", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41776", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is time for the first serve .", "storylet_id": "208882"}], [{"original_text": "It goes over the net and they wait for the return.", "album_id": "72157628032378538", "photo_flickr_id": "6304065869", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41776", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it goes over the net and they wait for the return .", "storylet_id": "208883"}], [{"original_text": "Unfortunately the match gets heated and someone injures themselves. Go team tennis.", "album_id": "72157628032378538", "photo_flickr_id": "6560976601", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41776", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "unfortunately the match gets heated and someone injures themselves . go team tennis .", "storylet_id": "208884"}], [{"original_text": "The tennis player got ready to serve the ball.", "album_id": "72157628032378538", "photo_flickr_id": "7321782256", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "41777", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tennis player got ready to serve the ball .", "storylet_id": "208885"}], [{"original_text": "The board showed the score of the two players.", "album_id": "72157628032378538", "photo_flickr_id": "7508887344", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "41777", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the board showed the score of the two players .", "storylet_id": "208886"}], [{"original_text": "It was the other player's turn to serve. She was about to serve the ball.", "album_id": "72157628032378538", "photo_flickr_id": "5870033556", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "41777", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was the other player 's turn to serve . she was about to serve the ball .", "storylet_id": "208887"}], [{"original_text": "She accidentally fell down mid serve, and had to get help.", "album_id": "72157628032378538", "photo_flickr_id": "6560976601", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "41777", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she accidentally fell down mid serve , and had to get help .", "storylet_id": "208888"}], [{"original_text": "The court was cleared off for the next match.", "album_id": "72157628032378538", "photo_flickr_id": "6560966589", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "41777", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the court was cleared off for the next match .", "storylet_id": "208889"}], [{"original_text": "Getting ready for the first serve.", "album_id": "72157628032378538", "photo_flickr_id": "7321782256", "setting": "last-3-pick-old-and-tell", "worker_id": "DT7IE7FUJRTB45T", "story_id": "41778", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting ready for the first serve .", "storylet_id": "208890"}], [{"original_text": "Advertisment sign at the match.", "album_id": "72157628032378538", "photo_flickr_id": "7508887344", "setting": "last-3-pick-old-and-tell", "worker_id": "DT7IE7FUJRTB45T", "story_id": "41778", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "advertisment sign at the match .", "storylet_id": "208891"}], [{"original_text": "I'm about to return the serve", "album_id": "72157628032378538", "photo_flickr_id": "5870033556", "setting": "last-3-pick-old-and-tell", "worker_id": "DT7IE7FUJRTB45T", "story_id": "41778", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i 'm about to return the serve", "storylet_id": "208892"}], [{"original_text": "but i injure myself when I return the serve.", "album_id": "72157628032378538", "photo_flickr_id": "6560976601", "setting": "last-3-pick-old-and-tell", "worker_id": "DT7IE7FUJRTB45T", "story_id": "41778", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but i injure myself when i return the serve .", "storylet_id": "208893"}], [{"original_text": "Saying goodbye to the tennis court on my way out.", "album_id": "72157628032378538", "photo_flickr_id": "6560966589", "setting": "last-3-pick-old-and-tell", "worker_id": "DT7IE7FUJRTB45T", "story_id": "41778", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "saying goodbye to the tennis court on my way out .", "storylet_id": "208894"}], [{"original_text": "Everyone is waiting for the game to start ", "album_id": "72157628032378538", "photo_flickr_id": "6560966589", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "41779", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone is waiting for the game to start", "storylet_id": "208895"}], [{"original_text": "You can feel the excitement in the air ", "album_id": "72157628032378538", "photo_flickr_id": "5869884504", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "41779", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you can feel the excitement in the air", "storylet_id": "208896"}], [{"original_text": "She always has perfect form in the game ", "album_id": "72157628032378538", "photo_flickr_id": "6736686675", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "41779", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she always has perfect form in the game", "storylet_id": "208897"}], [{"original_text": "Partners are trying to get their strategy togther ", "album_id": "72157628032378538", "photo_flickr_id": "6304065869", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "41779", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "partners are trying to get their strategy togther", "storylet_id": "208898"}], [{"original_text": "I hope she quickly recovers to play the game ", "album_id": "72157628032378538", "photo_flickr_id": "6560976601", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "41779", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope she quickly recovers to play the game", "storylet_id": "208899"}], [{"original_text": "We are checking out the lodge to decide if we should have our family reunion here.", "album_id": "72157628666487199", "photo_flickr_id": "6613712189", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41780", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are checking out the lodge to decide if we should have our family reunion here .", "storylet_id": "208900"}], [{"original_text": "It seems to have a lot of space and place for the kids to run.", "album_id": "72157628666487199", "photo_flickr_id": "6613718025", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41780", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it seems to have a lot of space and place for the kids to run .", "storylet_id": "208901"}], [{"original_text": "The hallways are nice and big.", "album_id": "72157628666487199", "photo_flickr_id": "6613723765", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41780", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the hallways are nice and big .", "storylet_id": "208902"}], [{"original_text": "I love the look of the lodge, but the thing that finally decided it for us was the view of the lake.", "album_id": "72157628666487199", "photo_flickr_id": "6613775269", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41780", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love the look of the lodge , but the thing that finally decided it for us was the view of the lake .", "storylet_id": "208903"}], [{"original_text": "It is a gorgeous place and we are definitely having our family reunion here.", "album_id": "72157628666487199", "photo_flickr_id": "6613782181", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "41780", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is a gorgeous place and we are definitely having our family reunion here .", "storylet_id": "208904"}], [{"original_text": "The lakeside community offers many places to stay.", "album_id": "72157628666487199", "photo_flickr_id": "6613782181", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "41781", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lakeside community offers many places to stay .", "storylet_id": "208905"}], [{"original_text": "The \"log cabin\" is a relaxing get away with lots to do and see. ", "album_id": "72157628666487199", "photo_flickr_id": "6613741675", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "41781", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the `` log cabin '' is a relaxing get away with lots to do and see .", "storylet_id": "208906"}], [{"original_text": "The social life is outstanding. ", "album_id": "72157628666487199", "photo_flickr_id": "6613745201", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "41781", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the social life is outstanding .", "storylet_id": "208907"}], [{"original_text": "The views are out of this world. ", "album_id": "72157628666487199", "photo_flickr_id": "6613775269", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "41781", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the views are out of this world .", "storylet_id": "208908"}], [{"original_text": "People of all ages will enjoy the relaxing get away with family and friends. ", "album_id": "72157628666487199", "photo_flickr_id": "6613712189", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "41781", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people of all ages will enjoy the relaxing get away with family and friends .", "storylet_id": "208909"}], [{"original_text": "A beautiful date at a lakehouse ", "album_id": "72157628666487199", "photo_flickr_id": "6613782181", "setting": "last-3-pick-old-and-tell", "worker_id": "4CVQNGTL3R4O0CY", "story_id": "41782", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a beautiful date at a lakehouse", "storylet_id": "208910"}], [{"original_text": "The lounge seats outside the lake house where we held memorable late night reminiscing ", "album_id": "72157628666487199", "photo_flickr_id": "6613741675", "setting": "last-3-pick-old-and-tell", "worker_id": "4CVQNGTL3R4O0CY", "story_id": "41782", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lounge seats outside the lake house where we held memorable late night reminiscing", "storylet_id": "208911"}], [{"original_text": "The lake house was a huge structure and we were free to roam as we pleased ", "album_id": "72157628666487199", "photo_flickr_id": "6613745201", "setting": "last-3-pick-old-and-tell", "worker_id": "4CVQNGTL3R4O0CY", "story_id": "41782", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lake house was a huge structure and we were free to roam as we pleased", "storylet_id": "208912"}], [{"original_text": "The outside of the lake house was very rustic and nostalgic ", "album_id": "72157628666487199", "photo_flickr_id": "6613775269", "setting": "last-3-pick-old-and-tell", "worker_id": "4CVQNGTL3R4O0CY", "story_id": "41782", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the outside of the lake house was very rustic and nostalgic", "storylet_id": "208913"}], [{"original_text": "when we first arrived at the lake house ", "album_id": "72157628666487199", "photo_flickr_id": "6613712189", "setting": "last-3-pick-old-and-tell", "worker_id": "4CVQNGTL3R4O0CY", "story_id": "41782", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we first arrived at the lake house", "storylet_id": "208914"}], [{"original_text": "I had such a good time at the lake last summer.", "album_id": "72157628666487199", "photo_flickr_id": "6613782181", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41783", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had such a good time at the lake last summer .", "storylet_id": "208915"}], [{"original_text": "The lodge nearby was very warm and cozy.", "album_id": "72157628666487199", "photo_flickr_id": "6613741675", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41783", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lodge nearby was very warm and cozy .", "storylet_id": "208916"}], [{"original_text": "There were hardly any other people staying there which was nice.", "album_id": "72157628666487199", "photo_flickr_id": "6613745201", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41783", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were hardly any other people staying there which was nice .", "storylet_id": "208917"}], [{"original_text": "The place was old, it has been up and running for almost 100 years.", "album_id": "72157628666487199", "photo_flickr_id": "6613775269", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41783", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the place was old , it has been up and running for almost 100 years .", "storylet_id": "208918"}], [{"original_text": "I hope I get to go back there soon.", "album_id": "72157628666487199", "photo_flickr_id": "6613712189", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41783", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope i get to go back there soon .", "storylet_id": "208919"}], [{"original_text": "We went to visit a quaint little log cabin.", "album_id": "72157628666487199", "photo_flickr_id": "6613712189", "setting": "last-3-pick-old-and-tell", "worker_id": "P4BTSS0R1MVO8HF", "story_id": "41784", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to visit a quaint little log cabin .", "storylet_id": "208920"}], [{"original_text": "The inside of the cabin was beautiful, made with light colored wood.", "album_id": "72157628666487199", "photo_flickr_id": "6613718025", "setting": "last-3-pick-old-and-tell", "worker_id": "P4BTSS0R1MVO8HF", "story_id": "41784", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the inside of the cabin was beautiful , made with light colored wood .", "storylet_id": "208921"}], [{"original_text": "It was empty in all of the rooms we visited, but was still a beautiful cabin.", "album_id": "72157628666487199", "photo_flickr_id": "6613723765", "setting": "last-3-pick-old-and-tell", "worker_id": "P4BTSS0R1MVO8HF", "story_id": "41784", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was empty in all of the rooms we visited , but was still a beautiful cabin .", "storylet_id": "208922"}], [{"original_text": "When leaving the cabin, we turned around to get one last good look.", "album_id": "72157628666487199", "photo_flickr_id": "6613775269", "setting": "last-3-pick-old-and-tell", "worker_id": "P4BTSS0R1MVO8HF", "story_id": "41784", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when leaving the cabin , we turned around to get one last good look .", "storylet_id": "208923"}], [{"original_text": "After that, we drove to a nearby lake to enjoy the sight of the water.", "album_id": "72157628666487199", "photo_flickr_id": "6613782181", "setting": "last-3-pick-old-and-tell", "worker_id": "P4BTSS0R1MVO8HF", "story_id": "41784", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that , we drove to a nearby lake to enjoy the sight of the water .", "storylet_id": "208924"}], [{"original_text": "My friends and I took a morning walk on the trail.", "album_id": "72157602497828530", "photo_flickr_id": "1618130015", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41785", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i took a morning walk on the trail .", "storylet_id": "208925"}], [{"original_text": "When the sun was up, we drove around the city to explore.", "album_id": "72157602497828530", "photo_flickr_id": "1619018518", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41785", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when the sun was up , we drove around the city to explore .", "storylet_id": "208926"}], [{"original_text": "We found this lovely couple getting married on the beach.", "album_id": "72157602497828530", "photo_flickr_id": "1619021068", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41785", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we found this lovely couple getting married on the beach .", "storylet_id": "208927"}], [{"original_text": "We invited them to go out that night and they accepted.", "album_id": "72157602497828530", "photo_flickr_id": "1619024122", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41785", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we invited them to go out that night and they accepted .", "storylet_id": "208928"}], [{"original_text": "The following morning we had a picnic in the park.", "album_id": "72157602497828530", "photo_flickr_id": "1619020852", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41785", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the following morning we had a picnic in the park .", "storylet_id": "208929"}], [{"original_text": "Walking on campus, making plans to attend my friend's wedding.", "album_id": "72157602497828530", "photo_flickr_id": "1618130015", "setting": "first-2-pick-and-tell", "worker_id": "05Q7TIU3V4BHZMF", "story_id": "41786", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walking on campus , making plans to attend my friend 's wedding .", "storylet_id": "208930"}], [{"original_text": "We've arrived at our destination. Great scenery.", "album_id": "72157602497828530", "photo_flickr_id": "1619018518", "setting": "first-2-pick-and-tell", "worker_id": "05Q7TIU3V4BHZMF", "story_id": "41786", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we 've arrived at our destination . great scenery .", "storylet_id": "208931"}], [{"original_text": "There's the happy bride & groom. What a nice couple they make.", "album_id": "72157602497828530", "photo_flickr_id": "1619021068", "setting": "first-2-pick-and-tell", "worker_id": "05Q7TIU3V4BHZMF", "story_id": "41786", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there 's the happy bride & groom . what a nice couple they make .", "storylet_id": "208932"}], [{"original_text": "This is where they had the reception. Gorgeous spot and romantic, too.", "album_id": "72157602497828530", "photo_flickr_id": "1618132411", "setting": "first-2-pick-and-tell", "worker_id": "05Q7TIU3V4BHZMF", "story_id": "41786", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is where they had the reception . gorgeous spot and romantic , too .", "storylet_id": "208933"}], [{"original_text": "That's us picnicing the next day before we have to return home. Hate to leave.", "album_id": "72157602497828530", "photo_flickr_id": "1619020852", "setting": "first-2-pick-and-tell", "worker_id": "05Q7TIU3V4BHZMF", "story_id": "41786", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that 's us picnicing the next day before we have to return home . hate to leave .", "storylet_id": "208934"}], [{"original_text": "We had to go visit the gay capitol of the world after gar marriage was legalized.", "album_id": "72157602497828530", "photo_flickr_id": "1618130015", "setting": "last-3-pick-old-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "41787", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had to go visit the gay capitol of the world after gar marriage was legalized .", "storylet_id": "208935"}], [{"original_text": "Our trip was truly amazing, the city streets were just as steep as we thought they were.", "album_id": "72157602497828530", "photo_flickr_id": "1619018518", "setting": "last-3-pick-old-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "41787", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our trip was truly amazing , the city streets were just as steep as we thought they were .", "storylet_id": "208936"}], [{"original_text": "Our friends got married as soon as they got there.", "album_id": "72157602497828530", "photo_flickr_id": "1619021068", "setting": "last-3-pick-old-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "41787", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our friends got married as soon as they got there .", "storylet_id": "208937"}], [{"original_text": "We got the chance to take a look at the scenery around Baker Beach with views of the golden gate.", "album_id": "72157602497828530", "photo_flickr_id": "1618132411", "setting": "last-3-pick-old-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "41787", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got the chance to take a look at the scenery around location location with views of the golden gate .", "storylet_id": "208938"}], [{"original_text": "We finished our day with a lovely walk through golden gate park.", "album_id": "72157602497828530", "photo_flickr_id": "1619020852", "setting": "last-3-pick-old-and-tell", "worker_id": "VC9K46JUSJS1MP3", "story_id": "41787", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finished our day with a lovely walk through golden gate park .", "storylet_id": "208939"}], [{"original_text": "Three friends walked down a road in hopes of finding something adventurous. ", "album_id": "72157602497828530", "photo_flickr_id": "1618130015", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41788", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "three friends walked down a road in hopes of finding something adventurous .", "storylet_id": "208940"}], [{"original_text": "They came across trolley tracks in the middle of the street. ", "album_id": "72157602497828530", "photo_flickr_id": "1619018518", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41788", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they came across trolley tracks in the middle of the street .", "storylet_id": "208941"}], [{"original_text": "A wedding was taking place at a nearby beach. ", "album_id": "72157602497828530", "photo_flickr_id": "1619021068", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41788", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a wedding was taking place at a nearby beach .", "storylet_id": "208942"}], [{"original_text": "We partied with the wedding couple the night after we first saw them. ", "album_id": "72157602497828530", "photo_flickr_id": "1619024122", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41788", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we partied with the wedding couple the night after we first saw them .", "storylet_id": "208943"}], [{"original_text": "They had a picnic in the park to top-off a new friendship. ", "album_id": "72157602497828530", "photo_flickr_id": "1619020852", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "41788", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had a picnic in the park to top-off a new friendship .", "storylet_id": "208944"}], [{"original_text": "Today we got married in San Francisco.", "album_id": "72157602497828530", "photo_flickr_id": "1618130015", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41789", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we got married in location location .", "storylet_id": "208945"}], [{"original_text": "The view of the bay from the top of the road was beautiful.", "album_id": "72157602497828530", "photo_flickr_id": "1619018518", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41789", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view of the bay from the top of the road was beautiful .", "storylet_id": "208946"}], [{"original_text": "We had our wedding pictures taken by the beach with the bridge in the background.", "album_id": "72157602497828530", "photo_flickr_id": "1619021068", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41789", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had our wedding pictures taken by the beach with the bridge in the background .", "storylet_id": "208947"}], [{"original_text": "We stopped to see a higher view that over looked the ocean and the bridge.", "album_id": "72157602497828530", "photo_flickr_id": "1618132411", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41789", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped to see a higher view that over looked the ocean and the bridge .", "storylet_id": "208948"}], [{"original_text": "At the end of the day we came across a large and open park where we watched the sunset.", "album_id": "72157602497828530", "photo_flickr_id": "1619020852", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41789", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day we came across a large and open park where we watched the sunset .", "storylet_id": "208949"}], [{"original_text": "A couple boarded an airplane to fly to Winnipeg.", "album_id": "72157600001651295", "photo_flickr_id": "4174294", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "41790", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple boarded an airplane to fly to location .", "storylet_id": "208950"}], [{"original_text": "The man enjoyed taking photos from within the plane.", "album_id": "72157600001651295", "photo_flickr_id": "4174332", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "41790", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man enjoyed taking photos from within the plane .", "storylet_id": "208951"}], [{"original_text": "The man photographed the farm fields, and how they looked neatly laid out from above.", "album_id": "72157600001651295", "photo_flickr_id": "4174382", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "41790", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man photographed the farm fields , and how they looked neatly laid out from above .", "storylet_id": "208952"}], [{"original_text": "The couple arrived at the Winnipeg airport.", "album_id": "72157600001651295", "photo_flickr_id": "4174407", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "41790", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple arrived at the location airport .", "storylet_id": "208953"}], [{"original_text": "Inside the airport, there were sculptures of prehistoric flying reptiles.", "album_id": "72157600001651295", "photo_flickr_id": "4174418", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "41790", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "inside the airport , there were sculptures of prehistoric flying reptiles .", "storylet_id": "208954"}], [{"original_text": "Last year I flew to Delaware.", "album_id": "72157600001651295", "photo_flickr_id": "4174288", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41791", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last year i flew to location .", "storylet_id": "208955"}], [{"original_text": "It was my first ride in a plane.", "album_id": "72157600001651295", "photo_flickr_id": "4174318", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41791", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was my first ride in a plane .", "storylet_id": "208956"}], [{"original_text": "From my seat I could look out the window at the ground below.", "album_id": "72157600001651295", "photo_flickr_id": "4174380", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41791", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "from my seat i could look out the window at the ground below .", "storylet_id": "208957"}], [{"original_text": "I could even see the roads down there.", "album_id": "72157600001651295", "photo_flickr_id": "4174388", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41791", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i could even see the roads down there .", "storylet_id": "208958"}], [{"original_text": "I was really glad to be back on the ground when we landed.", "album_id": "72157600001651295", "photo_flickr_id": "4174405", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41791", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was really glad to be back on the ground when we landed .", "storylet_id": "208959"}], [{"original_text": "My parents wanted to fly to visit me in Winnipeg.", "album_id": "72157600001651295", "photo_flickr_id": "4174294", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41792", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my parents wanted to fly to visit me in location .", "storylet_id": "208960"}], [{"original_text": "They boarded their small plane and took pictures as they did.", "album_id": "72157600001651295", "photo_flickr_id": "4174332", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41792", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they boarded their small plane and took pictures as they did .", "storylet_id": "208961"}], [{"original_text": "They took a bunch of pictures of the land as they flew over it.", "album_id": "72157600001651295", "photo_flickr_id": "4174382", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41792", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they took a bunch of pictures of the land as they flew over it .", "storylet_id": "208962"}], [{"original_text": "They were excited to land in Winnipeg.", "album_id": "72157600001651295", "photo_flickr_id": "4174407", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41792", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were excited to land in location .", "storylet_id": "208963"}], [{"original_text": "In the airport they took pictures of the dinosaur models to show their friends.", "album_id": "72157600001651295", "photo_flickr_id": "4174418", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41792", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the airport they took pictures of the dinosaur models to show their friends .", "storylet_id": "208964"}], [{"original_text": "We walked to the airplane to go to Winnipeg.", "album_id": "72157600001651295", "photo_flickr_id": "4174294", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41793", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we walked to the airplane to go to location .", "storylet_id": "208965"}], [{"original_text": "He always wanted to ride in an airplane.", "album_id": "72157600001651295", "photo_flickr_id": "4174332", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41793", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he always wanted to ride in an airplane .", "storylet_id": "208966"}], [{"original_text": "We where really high up in the air.", "album_id": "72157600001651295", "photo_flickr_id": "4174382", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41793", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we where really high up in the air .", "storylet_id": "208967"}], [{"original_text": "Then we arrived to the airport.", "album_id": "72157600001651295", "photo_flickr_id": "4174407", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41793", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we arrived to the airport .", "storylet_id": "208968"}], [{"original_text": "The airport had a lot of cool statues.", "album_id": "72157600001651295", "photo_flickr_id": "4174418", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41793", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the airport had a lot of cool statues .", "storylet_id": "208969"}], [{"original_text": "This couple was ready to board the plane for their first trip.", "album_id": "72157600001651295", "photo_flickr_id": "4174294", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41794", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this couple was ready to board the plane for their first trip .", "storylet_id": "208970"}], [{"original_text": "They were extremely excited!", "album_id": "72157600001651295", "photo_flickr_id": "4174332", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41794", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were extremely excited !", "storylet_id": "208971"}], [{"original_text": "They were able to see many beautiful scenery.", "album_id": "72157600001651295", "photo_flickr_id": "4174382", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41794", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were able to see many beautiful scenery .", "storylet_id": "208972"}], [{"original_text": "They finally arrived in Winnipeg after a long ride.", "album_id": "72157600001651295", "photo_flickr_id": "4174407", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41794", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they finally arrived in location after a long ride .", "storylet_id": "208973"}], [{"original_text": "The airport itself was amazing and they couldn't wait to see the rest.", "album_id": "72157600001651295", "photo_flickr_id": "4174418", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41794", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the airport itself was amazing and they could n't wait to see the rest .", "storylet_id": "208974"}], [{"original_text": "This tent is where the kids go to school.", "album_id": "103529", "photo_flickr_id": "4103350", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41795", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this tent is where the kids go to school .", "storylet_id": "208975"}], [{"original_text": "These kids are wearing their school uniforms.", "album_id": "103529", "photo_flickr_id": "4103414", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41795", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these kids are wearing their school uniforms .", "storylet_id": "208976"}], [{"original_text": "This tent is where the first aid is.", "album_id": "103529", "photo_flickr_id": "4103483", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41795", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this tent is where the first aid is .", "storylet_id": "208977"}], [{"original_text": "This building is going to be where the new school is.", "album_id": "103529", "photo_flickr_id": "4102713", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41795", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this building is going to be where the new school is .", "storylet_id": "208978"}], [{"original_text": "The kids are happy about their new school.", "album_id": "103529", "photo_flickr_id": "4102860", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41795", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids are happy about their new school .", "storylet_id": "208979"}], [{"original_text": "This community is has gone through some hard times.", "album_id": "103529", "photo_flickr_id": "4143480", "setting": "first-2-pick-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "41796", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this community is has gone through some hard times .", "storylet_id": "208980"}], [{"original_text": "They have hand built their homes with what little they had.", "album_id": "103529", "photo_flickr_id": "4102814", "setting": "first-2-pick-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "41796", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they have hand built their homes with what little they had .", "storylet_id": "208981"}], [{"original_text": "There schools were so empty that many classrooms could be put into one.", "album_id": "103529", "photo_flickr_id": "4102442", "setting": "first-2-pick-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "41796", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there schools were so empty that many classrooms could be put into one .", "storylet_id": "208982"}], [{"original_text": "Sometimes teachers would not even care about the money as long as they could educate the kids.", "album_id": "103529", "photo_flickr_id": "4143500", "setting": "first-2-pick-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "41796", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes teachers would not even care about the money as long as they could educate the kids .", "storylet_id": "208983"}], [{"original_text": "The kids taught today are the leaders of our future and they are happy with what they have.", "album_id": "103529", "photo_flickr_id": "4143546", "setting": "first-2-pick-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "41796", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids taught today are the leaders of our future and they are happy with what they have .", "storylet_id": "208984"}], [{"original_text": "The home was decorated very simplistically. ", "album_id": "103529", "photo_flickr_id": "4143480", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41797", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the home was decorated very simplistically .", "storylet_id": "208985"}], [{"original_text": "The tent was open and spacious.", "album_id": "103529", "photo_flickr_id": "4102814", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41797", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tent was open and spacious .", "storylet_id": "208986"}], [{"original_text": "There were many children learning in the small room.", "album_id": "103529", "photo_flickr_id": "4102442", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41797", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many children learning in the small room .", "storylet_id": "208987"}], [{"original_text": "We were teaching the little ones how to read.", "album_id": "103529", "photo_flickr_id": "4143500", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41797", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were teaching the little ones how to read .", "storylet_id": "208988"}], [{"original_text": "My children were very happy and celebrated the event.", "album_id": "103529", "photo_flickr_id": "4143546", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41797", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my children were very happy and celebrated the event .", "storylet_id": "208989"}], [{"original_text": "In the remote village, things may appear different than people of the West are accustomed to, but in reality many things are still quite similar. ", "album_id": "103529", "photo_flickr_id": "4143480", "setting": "last-3-pick-old-and-tell", "worker_id": "23E9HHEL1PNCFWP", "story_id": "41798", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the remote village , things may appear different than people of the location are accustomed to , but in reality many things are still quite similar .", "storylet_id": "208990"}], [{"original_text": "Due to the difficulty of getting supplies to the remote location, tents and other temporary structures are used.", "album_id": "103529", "photo_flickr_id": "4102814", "setting": "last-3-pick-old-and-tell", "worker_id": "23E9HHEL1PNCFWP", "story_id": "41798", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "due to the difficulty of getting supplies to the remote location , tents and other temporary structures are used .", "storylet_id": "208991"}], [{"original_text": "Here a teacher is telling a story to the children about their culture. ", "album_id": "103529", "photo_flickr_id": "4102442", "setting": "last-3-pick-old-and-tell", "worker_id": "23E9HHEL1PNCFWP", "story_id": "41798", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here a teacher is telling a story to the children about their culture .", "storylet_id": "208992"}], [{"original_text": "Later in the day, a different instructor teaches the children the basics. Here, the children are seen taking notes.", "album_id": "103529", "photo_flickr_id": "4143500", "setting": "last-3-pick-old-and-tell", "worker_id": "23E9HHEL1PNCFWP", "story_id": "41798", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later in the day , a different instructor teaches the children the basics . here , the children are seen taking notes .", "storylet_id": "208993"}], [{"original_text": "School is over for the day and the children are quite happy to have free time to play.", "album_id": "103529", "photo_flickr_id": "4143546", "setting": "last-3-pick-old-and-tell", "worker_id": "23E9HHEL1PNCFWP", "story_id": "41798", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "school is over for the day and the children are quite happy to have free time to play .", "storylet_id": "208994"}], [{"original_text": "I went to volunteer at a refugee camp.", "album_id": "103529", "photo_flickr_id": "4103350", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41799", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to volunteer at a refugee camp .", "storylet_id": "208995"}], [{"original_text": "There were many bright and friendly children.", "album_id": "103529", "photo_flickr_id": "4103414", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41799", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many bright and friendly children .", "storylet_id": "208996"}], [{"original_text": "Unfortunately most had to sleep in tents.", "album_id": "103529", "photo_flickr_id": "4103483", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41799", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "unfortunately most had to sleep in tents .", "storylet_id": "208997"}], [{"original_text": "Some were more fortunate to have houses.", "album_id": "103529", "photo_flickr_id": "4102713", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41799", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some were more fortunate to have houses .", "storylet_id": "208998"}], [{"original_text": "I hope I can help these people more.", "album_id": "103529", "photo_flickr_id": "4102860", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "41799", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope i can help these people more .", "storylet_id": "208999"}], [{"original_text": "There was a building.", "album_id": "406244", "photo_flickr_id": "17045328", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41800", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a building .", "storylet_id": "209000"}], [{"original_text": "And a beach.", "album_id": "406244", "photo_flickr_id": "17045484", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41800", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and a beach .", "storylet_id": "209001"}], [{"original_text": "With a boat in the water.", "album_id": "406244", "photo_flickr_id": "17046315", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41800", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "with a boat in the water .", "storylet_id": "209002"}], [{"original_text": "The building had a dome.", "album_id": "406244", "photo_flickr_id": "17046716", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41800", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the building had a dome .", "storylet_id": "209003"}], [{"original_text": "And here are some trees.", "album_id": "406244", "photo_flickr_id": "17046444", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41800", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and here are some trees .", "storylet_id": "209004"}], [{"original_text": "The beach at the resort we stayed at for the week.", "album_id": "406244", "photo_flickr_id": "17045484", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41801", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beach at the resort we stayed at for the week .", "storylet_id": "209005"}], [{"original_text": "The lifeguard on duty made us feel safe...", "album_id": "406244", "photo_flickr_id": "17048014", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41801", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lifeguard on duty made us feel safe ...", "storylet_id": "209006"}], [{"original_text": "but the police boat always watching made us nervous.", "album_id": "406244", "photo_flickr_id": "17046315", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41801", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but the police boat always watching made us nervous .", "storylet_id": "209007"}], [{"original_text": "This was our transportation one day. The bus was so old.", "album_id": "406244", "photo_flickr_id": "17045998", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41801", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was our transportation one day . the bus was so old .", "storylet_id": "209008"}], [{"original_text": "Trippy hallway we went down to get to the airplane to go home.", "album_id": "406244", "photo_flickr_id": "17046959", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41801", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "trippy hallway we went down to get to the airplane to go home .", "storylet_id": "209009"}], [{"original_text": "This city is a tourist haven during the summer, thanks to the warm weather and clear ocean water.", "album_id": "406244", "photo_flickr_id": "17045484", "setting": "last-3-pick-old-and-tell", "worker_id": "KSKM4C6J2C06BJ0", "story_id": "41802", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this city is a tourist haven during the summer , thanks to the warm weather and clear ocean water .", "storylet_id": "209010"}], [{"original_text": "Even the hotels focus on the water activities for fun. This huge swimming pool is a great example of the fun in the water that is had in the area.", "album_id": "406244", "photo_flickr_id": "17048014", "setting": "last-3-pick-old-and-tell", "worker_id": "KSKM4C6J2C06BJ0", "story_id": "41802", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the hotels focus on the water activities for fun . this huge swimming pool is a great example of the fun in the water that is had in the area .", "storylet_id": "209011"}], [{"original_text": "Boat rides in the river provide another water type form of entertainment.", "album_id": "406244", "photo_flickr_id": "17046315", "setting": "last-3-pick-old-and-tell", "worker_id": "KSKM4C6J2C06BJ0", "story_id": "41802", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "boat rides in the river provide another water type form of entertainment .", "storylet_id": "209012"}], [{"original_text": "When people are all water logged, they can take the bus into town for shopping and eating.", "album_id": "406244", "photo_flickr_id": "17045998", "setting": "last-3-pick-old-and-tell", "worker_id": "KSKM4C6J2C06BJ0", "story_id": "41802", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when people are all water logged , they can take the bus into town for shopping and eating .", "storylet_id": "209013"}], [{"original_text": "Cool unique restaurants are everywhere in the area. The entrance to this eatery is a perfect example of how style and fun are the forefront of the downtown city area.", "album_id": "406244", "photo_flickr_id": "17046959", "setting": "last-3-pick-old-and-tell", "worker_id": "KSKM4C6J2C06BJ0", "story_id": "41802", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "cool unique restaurants are everywhere in the area . the entrance to this eatery is a perfect example of how style and fun are the forefront of the downtown city area .", "storylet_id": "209014"}], [{"original_text": "We left the parking garage and down to the beach.", "album_id": "406244", "photo_flickr_id": "17045328", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41803", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we left the parking garage and down to the beach .", "storylet_id": "209015"}], [{"original_text": "It was hot when we got there so a lot of other people were there too.", "album_id": "406244", "photo_flickr_id": "17045484", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41803", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was hot when we got there so a lot of other people were there too .", "storylet_id": "209016"}], [{"original_text": "Boats where off in the distance having fun.", "album_id": "406244", "photo_flickr_id": "17046315", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41803", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "boats where off in the distance having fun .", "storylet_id": "209017"}], [{"original_text": "When we left we saw a museum.", "album_id": "406244", "photo_flickr_id": "17046716", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41803", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we left we saw a museum .", "storylet_id": "209018"}], [{"original_text": "We thought the place might be fun and went in.", "album_id": "406244", "photo_flickr_id": "17046444", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41803", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we thought the place might be fun and went in .", "storylet_id": "209019"}], [{"original_text": "This was the beach by the college we were looking at.", "album_id": "406244", "photo_flickr_id": "17045484", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "41804", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the beach by the college we were looking at .", "storylet_id": "209020"}], [{"original_text": "A lifeguard watching the water at the beach by our possibly new school.", "album_id": "406244", "photo_flickr_id": "17048014", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "41804", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lifeguard watching the water at the beach by our possibly new school .", "storylet_id": "209021"}], [{"original_text": "This cool looking boat was shuttling people across the water to campus.", "album_id": "406244", "photo_flickr_id": "17046315", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "41804", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this cool looking boat was shuttling people across the water to campus .", "storylet_id": "209022"}], [{"original_text": "This bus brought the prospective students from the boat to the school.", "album_id": "406244", "photo_flickr_id": "17045998", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "41804", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this bus brought the prospective students from the boat to the school .", "storylet_id": "209023"}], [{"original_text": "This was one of the hallways in the school.", "album_id": "406244", "photo_flickr_id": "17046959", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "41804", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was one of the hallways in the school .", "storylet_id": "209024"}], [{"original_text": "We arrived at the shore and were glad to see that a view was still available....", "album_id": "409687", "photo_flickr_id": "17138654", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41805", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at the shore and were glad to see that a view was still available ... .", "storylet_id": "209025"}], [{"original_text": "I was able to watch the cargo ship enter the harbor..", "album_id": "409687", "photo_flickr_id": "17138678", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41805", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was able to watch the cargo ship enter the harbor..", "storylet_id": "209026"}], [{"original_text": "And, suddenly, two cats arrived out of nowhere. They stared us down; however, they moved on their way...", "album_id": "409687", "photo_flickr_id": "17138708", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41805", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and , suddenly , two cats arrived out of nowhere . they stared us down ; however , they moved on their way ...", "storylet_id": "209027"}], [{"original_text": "And, Marc and I were able to watch the sun set over the harbor...", "album_id": "409687", "photo_flickr_id": "17138769", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41805", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , [male] and i were able to watch the sun set over the harbor ...", "storylet_id": "209028"}], [{"original_text": "And, the ship departed as we left for the night.", "album_id": "409687", "photo_flickr_id": "17138807", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41805", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , the ship departed as we left for the night .", "storylet_id": "209029"}], [{"original_text": "Two cats went for a walk together.", "album_id": "409687", "photo_flickr_id": "17138708", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "41806", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two cats went for a walk together .", "storylet_id": "209030"}], [{"original_text": "They walked along the littered coast.", "album_id": "409687", "photo_flickr_id": "17138654", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "41806", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they walked along the littered coast .", "storylet_id": "209031"}], [{"original_text": "They were able to see a small boat.", "album_id": "409687", "photo_flickr_id": "17138678", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "41806", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were able to see a small boat .", "storylet_id": "209032"}], [{"original_text": "The beach was in disrepair with litter and even an abandoned tire.", "album_id": "409687", "photo_flickr_id": "17138688", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "41806", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beach was in disrepair with litter and even an abandoned tire .", "storylet_id": "209033"}], [{"original_text": "They were even able to see a cargo ship in the distance.", "album_id": "409687", "photo_flickr_id": "17138807", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "41806", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were even able to see a cargo ship in the distance .", "storylet_id": "209034"}], [{"original_text": "Water breaks against the shore on a cloudy morning. ", "album_id": "409687", "photo_flickr_id": "17138654", "setting": "last-3-pick-old-and-tell", "worker_id": "6Y27Z2PP51VQH2G", "story_id": "41807", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "water breaks against the shore on a cloudy morning .", "storylet_id": "209035"}], [{"original_text": "This boat cuts through the water. ", "album_id": "409687", "photo_flickr_id": "17138678", "setting": "last-3-pick-old-and-tell", "worker_id": "6Y27Z2PP51VQH2G", "story_id": "41807", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this boat cuts through the water .", "storylet_id": "209036"}], [{"original_text": "Two cats stand near the water, maybe looking for some fish. ", "album_id": "409687", "photo_flickr_id": "17138708", "setting": "last-3-pick-old-and-tell", "worker_id": "6Y27Z2PP51VQH2G", "story_id": "41807", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two cats stand near the water , maybe looking for some fish .", "storylet_id": "209037"}], [{"original_text": "The sun breaks slightly through the clouds in the afternoon. ", "album_id": "409687", "photo_flickr_id": "17138769", "setting": "last-3-pick-old-and-tell", "worker_id": "6Y27Z2PP51VQH2G", "story_id": "41807", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sun breaks slightly through the clouds in the afternoon .", "storylet_id": "209038"}], [{"original_text": "A cargo ship moves near port at the end of the day. ", "album_id": "409687", "photo_flickr_id": "17138807", "setting": "last-3-pick-old-and-tell", "worker_id": "6Y27Z2PP51VQH2G", "story_id": "41807", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a cargo ship moves near port at the end of the day .", "storylet_id": "209039"}], [{"original_text": "The clouds were coming in and the sea was getting angry.", "album_id": "409687", "photo_flickr_id": "17138654", "setting": "last-3-pick-old-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41808", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the clouds were coming in and the sea was getting angry .", "storylet_id": "209040"}], [{"original_text": "The boats wanted to get to shore before it got to rough.", "album_id": "409687", "photo_flickr_id": "17138678", "setting": "last-3-pick-old-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41808", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boats wanted to get to shore before it got to rough .", "storylet_id": "209041"}], [{"original_text": "Even the cats knew something was up.", "album_id": "409687", "photo_flickr_id": "17138708", "setting": "last-3-pick-old-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41808", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the cats knew something was up .", "storylet_id": "209042"}], [{"original_text": "Then things calmed down and the sun joined them.", "album_id": "409687", "photo_flickr_id": "17138769", "setting": "last-3-pick-old-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41808", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then things calmed down and the sun joined them .", "storylet_id": "209043"}], [{"original_text": "The boats were happy that the waters were calm.", "album_id": "409687", "photo_flickr_id": "17138807", "setting": "last-3-pick-old-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41808", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boats were happy that the waters were calm .", "storylet_id": "209044"}], [{"original_text": "We walked along the ocean just before the storm hit.", "album_id": "409687", "photo_flickr_id": "17138654", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "41809", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we walked along the ocean just before the storm hit .", "storylet_id": "209045"}], [{"original_text": "A boat heads for the harbor and safety.", "album_id": "409687", "photo_flickr_id": "17138678", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "41809", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a boat heads for the harbor and safety .", "storylet_id": "209046"}], [{"original_text": "These cats checked us out as they sought shelter.", "album_id": "409687", "photo_flickr_id": "17138708", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "41809", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these cats checked us out as they sought shelter .", "storylet_id": "209047"}], [{"original_text": "The calm before the storm.", "album_id": "409687", "photo_flickr_id": "17138769", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "41809", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the calm before the storm .", "storylet_id": "209048"}], [{"original_text": "The cargo ship didn't seem to be worried about the storm.", "album_id": "409687", "photo_flickr_id": "17138807", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "41809", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cargo ship did n't seem to be worried about the storm .", "storylet_id": "209049"}], [{"original_text": "I used the walkway to find the nearest clock tower.", "album_id": "72157594556564196", "photo_flickr_id": "17127235", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41810", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i used the walkway to find the nearest clock tower .", "storylet_id": "209050"}], [{"original_text": "When I arrived at one, I noted the time and place.", "album_id": "72157594556564196", "photo_flickr_id": "17126250", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41810", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when i arrived at one , i noted the time and place .", "storylet_id": "209051"}], [{"original_text": "I took a picture along this odd seat and then I headed for the fair.", "album_id": "72157594556564196", "photo_flickr_id": "17127031", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41810", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took a picture along this odd seat and then i headed for the fair .", "storylet_id": "209052"}], [{"original_text": "When I got to the fair, I rode the carousel twice.", "album_id": "72157594556564196", "photo_flickr_id": "17126462", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41810", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when i got to the fair , i rode the carousel twice .", "storylet_id": "209053"}], [{"original_text": "I went for ice cream to finish my day off.", "album_id": "72157594556564196", "photo_flickr_id": "17126695", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41810", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i went for ice cream to finish my day off .", "storylet_id": "209054"}], [{"original_text": "We went to the beach!", "album_id": "72157594556564196", "photo_flickr_id": "17126318", "setting": "first-2-pick-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41811", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the beach !", "storylet_id": "209055"}], [{"original_text": "There was so much to do.", "album_id": "72157594556564196", "photo_flickr_id": "17126462", "setting": "first-2-pick-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41811", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was so much to do .", "storylet_id": "209056"}], [{"original_text": "It was absolutely pristine.", "album_id": "72157594556564196", "photo_flickr_id": "17126536", "setting": "first-2-pick-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41811", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was absolutely pristine .", "storylet_id": "209057"}], [{"original_text": "The hotel we stayed at was very fancy.", "album_id": "72157594556564196", "photo_flickr_id": "17126579", "setting": "first-2-pick-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41811", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the hotel we stayed at was very fancy .", "storylet_id": "209058"}], [{"original_text": "The boardwalk was fun too!", "album_id": "72157594556564196", "photo_flickr_id": "17127165", "setting": "first-2-pick-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41811", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boardwalk was fun too !", "storylet_id": "209059"}], [{"original_text": "I spent the weekend at Brighton Pier.", "album_id": "72157594556564196", "photo_flickr_id": "17127235", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41812", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spent the weekend at location location .", "storylet_id": "209060"}], [{"original_text": "There was a clock tower in the center of the square.", "album_id": "72157594556564196", "photo_flickr_id": "17126250", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41812", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a clock tower in the center of the square .", "storylet_id": "209061"}], [{"original_text": "I sat in the square and contemplated things around me.", "album_id": "72157594556564196", "photo_flickr_id": "17127031", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41812", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i sat in the square and contemplated things around me .", "storylet_id": "209062"}], [{"original_text": "There was a carousel on the beach for the children to enjoy.", "album_id": "72157594556564196", "photo_flickr_id": "17126462", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41812", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a carousel on the beach for the children to enjoy .", "storylet_id": "209063"}], [{"original_text": "The highlight was the ice cream parlor I wanted to enjoy.", "album_id": "72157594556564196", "photo_flickr_id": "17126695", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41812", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the highlight was the ice cream parlor i wanted to enjoy .", "storylet_id": "209064"}], [{"original_text": "I loved carnivals as a kid so we decided to visit one while on vacation.", "album_id": "72157594556564196", "photo_flickr_id": "17127235", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "41813", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i loved carnivals as a kid so we decided to visit one while on vacation .", "storylet_id": "209065"}], [{"original_text": "The clock tower was so regal. I loved it!", "album_id": "72157594556564196", "photo_flickr_id": "17126250", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "41813", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the clock tower was so regal . i loved it !", "storylet_id": "209066"}], [{"original_text": "Of course Billy had to get a model pose picture while we were there.", "album_id": "72157594556564196", "photo_flickr_id": "17127031", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "41813", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course [male] had to get a model pose picture while we were there .", "storylet_id": "209067"}], [{"original_text": "The carousel was so beautiful.", "album_id": "72157594556564196", "photo_flickr_id": "17126462", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "41813", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the carousel was so beautiful .", "storylet_id": "209068"}], [{"original_text": "This was the best ice cream place I had ever been to.", "album_id": "72157594556564196", "photo_flickr_id": "17126695", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "41813", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the best ice cream place i had ever been to .", "storylet_id": "209069"}], [{"original_text": "We went out around town to see the sites.", "album_id": "72157594556564196", "photo_flickr_id": "17127235", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41814", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went out around town to see the sites .", "storylet_id": "209070"}], [{"original_text": "We started near the center where there was a clock we could reference for location.", "album_id": "72157594556564196", "photo_flickr_id": "17126250", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41814", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started near the center where there was a clock we could reference for location .", "storylet_id": "209071"}], [{"original_text": "We sat around there for a bit and planned a route.", "album_id": "72157594556564196", "photo_flickr_id": "17127031", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41814", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we sat around there for a bit and planned a route .", "storylet_id": "209072"}], [{"original_text": "We first stopped by a farris wheel for the kids.", "album_id": "72157594556564196", "photo_flickr_id": "17126462", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41814", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we first stopped by a farris wheel for the kids .", "storylet_id": "209073"}], [{"original_text": "The stopped off for some ice cream.", "album_id": "72157594556564196", "photo_flickr_id": "17126695", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41814", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the stopped off for some ice cream .", "storylet_id": "209074"}], [{"original_text": "I went to an island with my wife, and first thing we did was watch hawks.", "album_id": "72157600001637343", "photo_flickr_id": "23019346", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41815", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to an island with my wife , and first thing we did was watch hawks .", "storylet_id": "209075"}], [{"original_text": "Then we went to the beach to enjoy the view.", "album_id": "72157600001637343", "photo_flickr_id": "23019509", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41815", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we went to the beach to enjoy the view .", "storylet_id": "209076"}], [{"original_text": "When we got tired, we relaxed together.", "album_id": "72157600001637343", "photo_flickr_id": "23019734", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41815", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we got tired , we relaxed together .", "storylet_id": "209077"}], [{"original_text": "We even found some crabs that we put in a tub.", "album_id": "72157600001637343", "photo_flickr_id": "23019845", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41815", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even found some crabs that we put in a tub .", "storylet_id": "209078"}], [{"original_text": "We ended the night by watching gorgeous fireworks.", "album_id": "72157600001637343", "photo_flickr_id": "23019867", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "41815", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the night by watching gorgeous fireworks .", "storylet_id": "209079"}], [{"original_text": "Our exotic trip was fabulous.", "album_id": "72157600001637343", "photo_flickr_id": "23019331", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "41816", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our exotic trip was fabulous .", "storylet_id": "209080"}], [{"original_text": "The palms were beautiful.", "album_id": "72157600001637343", "photo_flickr_id": "23019502", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "41816", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the palms were beautiful .", "storylet_id": "209081"}], [{"original_text": "Here's me and my boyfriend on the beach.", "album_id": "72157600001637343", "photo_flickr_id": "23019519", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "41816", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's me and my boyfriend on the beach .", "storylet_id": "209082"}], [{"original_text": "The volcanic rock sand was really cool.", "album_id": "72157600001637343", "photo_flickr_id": "23019838", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "41816", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the volcanic rock sand was really cool .", "storylet_id": "209083"}], [{"original_text": "And the waves were really big!", "album_id": "72157600001637343", "photo_flickr_id": "23019857", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "41816", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the waves were really big !", "storylet_id": "209084"}], [{"original_text": "At the beginning of their beautiful vacation, the couple went to see a wildlife exhibit.", "album_id": "72157600001637343", "photo_flickr_id": "23019346", "setting": "last-3-pick-old-and-tell", "worker_id": "PEJ2HR9D63QVJIX", "story_id": "41817", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the beginning of their beautiful vacation , the couple went to see a wildlife exhibit .", "storylet_id": "209085"}], [{"original_text": "Then, they went to the beach and took a walk,", "album_id": "72157600001637343", "photo_flickr_id": "23019509", "setting": "last-3-pick-old-and-tell", "worker_id": "PEJ2HR9D63QVJIX", "story_id": "41817", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then , they went to the beach and took a walk ,", "storylet_id": "209086"}], [{"original_text": "They went back to their hotel to rest for a bit.", "album_id": "72157600001637343", "photo_flickr_id": "23019734", "setting": "last-3-pick-old-and-tell", "worker_id": "PEJ2HR9D63QVJIX", "story_id": "41817", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they went back to their hotel to rest for a bit .", "storylet_id": "209087"}], [{"original_text": "After that, they returned to the beach and collected some crabs to observe.", "album_id": "72157600001637343", "photo_flickr_id": "23019845", "setting": "last-3-pick-old-and-tell", "worker_id": "PEJ2HR9D63QVJIX", "story_id": "41817", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that , they returned to the beach and collected some crabs to observe .", "storylet_id": "209088"}], [{"original_text": "They watched fireworks and that concluded the night.", "album_id": "72157600001637343", "photo_flickr_id": "23019867", "setting": "last-3-pick-old-and-tell", "worker_id": "PEJ2HR9D63QVJIX", "story_id": "41817", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they watched fireworks and that concluded the night .", "storylet_id": "209089"}], [{"original_text": "This man had a pet falcon.", "album_id": "72157600001637343", "photo_flickr_id": "23019346", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "41818", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this man had a pet falcon .", "storylet_id": "209090"}], [{"original_text": "We visited the beach on this glorious day.", "album_id": "72157600001637343", "photo_flickr_id": "23019509", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "41818", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we visited the beach on this glorious day .", "storylet_id": "209091"}], [{"original_text": "We relaxed with each other.", "album_id": "72157600001637343", "photo_flickr_id": "23019734", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "41818", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we relaxed with each other .", "storylet_id": "209092"}], [{"original_text": "We found a sand crab on the beach.", "album_id": "72157600001637343", "photo_flickr_id": "23019845", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "41818", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found a sand crab on the beach .", "storylet_id": "209093"}], [{"original_text": "Lastly, we lit up fireworks at night.", "album_id": "72157600001637343", "photo_flickr_id": "23019867", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "41818", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , we lit up fireworks at night .", "storylet_id": "209094"}], [{"original_text": "I saw my first bald eagle on our vacation in Hawaii.", "album_id": "72157600001637343", "photo_flickr_id": "23019346", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "41819", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i saw my first bald eagle on our vacation in location .", "storylet_id": "209095"}], [{"original_text": "The sky was clear and the water was transparent blue.", "album_id": "72157600001637343", "photo_flickr_id": "23019509", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "41819", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sky was clear and the water was transparent blue .", "storylet_id": "209096"}], [{"original_text": "We spent the majority of our time relaxing and drinking beer.", "album_id": "72157600001637343", "photo_flickr_id": "23019734", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "41819", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we spent the majority of our time relaxing and drinking beer .", "storylet_id": "209097"}], [{"original_text": "We also caught a few crabs but weren't sure if we could eat them.", "album_id": "72157600001637343", "photo_flickr_id": "23019845", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "41819", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also caught a few crabs but were n't sure if we could eat them .", "storylet_id": "209098"}], [{"original_text": "The highlight of our trip was the luau on the penultimate day.", "album_id": "72157600001637343", "photo_flickr_id": "23019867", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "41819", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the highlight of our trip was the luau on the penultimate day .", "storylet_id": "209099"}], [{"original_text": "I checked out the beach while on vacation.", "album_id": "47498", "photo_flickr_id": "1872989", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41820", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i checked out the beach while on vacation .", "storylet_id": "209100"}], [{"original_text": "On one side of the parking lot, you could see the city.", "album_id": "47498", "photo_flickr_id": "1873000", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41820", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on one side of the parking lot , you could see the city .", "storylet_id": "209101"}], [{"original_text": "On the other side of the parking lot you could see the ocean.", "album_id": "47498", "photo_flickr_id": "1873032", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41820", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on the other side of the parking lot you could see the ocean .", "storylet_id": "209102"}], [{"original_text": "We saw a huge ship travel by.", "album_id": "47498", "photo_flickr_id": "1873037", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41820", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw a huge ship travel by .", "storylet_id": "209103"}], [{"original_text": "It was so fun, we stayed until the sun went down.", "album_id": "47498", "photo_flickr_id": "1872986", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41820", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was so fun , we stayed until the sun went down .", "storylet_id": "209104"}], [{"original_text": "This is a great little island to vacation.", "album_id": "47498", "photo_flickr_id": "1873013", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41821", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a great little island to vacation .", "storylet_id": "209105"}], [{"original_text": "There is a little town that is surrounded by the beach and ocean.", "album_id": "47498", "photo_flickr_id": "1873000", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41821", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is a little town that is surrounded by the beach and ocean .", "storylet_id": "209106"}], [{"original_text": "Little people know about this island but some people have been coming here for years to vacation.", "album_id": "47498", "photo_flickr_id": "1872989", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41821", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "little people know about this island but some people have been coming here for years to vacation .", "storylet_id": "209107"}], [{"original_text": "The only access to the island is on boats.", "album_id": "47498", "photo_flickr_id": "1873037", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41821", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the only access to the island is on boats .", "storylet_id": "209108"}], [{"original_text": "The view from the boat to the island is unbelievable. ", "album_id": "47498", "photo_flickr_id": "1872984", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "41821", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view from the boat to the island is unbelievable .", "storylet_id": "209109"}], [{"original_text": "My friend and I visited the shore of a Mediterranean country.", "album_id": "47498", "photo_flickr_id": "1872989", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41822", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend and i visited the shore of a location country .", "storylet_id": "209110"}], [{"original_text": "We walked on the ridge and looked out over the white buildings of the town.", "album_id": "47498", "photo_flickr_id": "1873000", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41822", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we walked on the ridge and looked out over the white buildings of the town .", "storylet_id": "209111"}], [{"original_text": "The water was beautiful, and we were able to get close to it on the pier.", "album_id": "47498", "photo_flickr_id": "1873032", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41822", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water was beautiful , and we were able to get close to it on the pier .", "storylet_id": "209112"}], [{"original_text": "Nearby, an old rusting freighter had run aground and was abandoned.", "album_id": "47498", "photo_flickr_id": "1873037", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41822", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "nearby , an old rusting freighter had run aground and was abandoned .", "storylet_id": "209113"}], [{"original_text": "At night, the place took on an ethereal quality.", "album_id": "47498", "photo_flickr_id": "1872986", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41822", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night , the place took on an ethereal quality .", "storylet_id": "209114"}], [{"original_text": "We went on vacation to a lovely beach town.", "album_id": "47498", "photo_flickr_id": "1873013", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41823", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on vacation to a lovely beach town .", "storylet_id": "209115"}], [{"original_text": "The town was bustling, with plenty of people.", "album_id": "47498", "photo_flickr_id": "1873000", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41823", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the town was bustling , with plenty of people .", "storylet_id": "209116"}], [{"original_text": "Even the old man was having a blast!", "album_id": "47498", "photo_flickr_id": "1872989", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41823", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the old man was having a blast !", "storylet_id": "209117"}], [{"original_text": "We visited a plethora of beaches.", "album_id": "47498", "photo_flickr_id": "1873037", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41823", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we visited a plethora of beaches .", "storylet_id": "209118"}], [{"original_text": "We even went on a boat!", "album_id": "47498", "photo_flickr_id": "1872984", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41823", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even went on a boat !", "storylet_id": "209119"}], [{"original_text": "We visited the beach and the water was so blue.", "album_id": "47498", "photo_flickr_id": "1873013", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41824", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited the beach and the water was so blue .", "storylet_id": "209120"}], [{"original_text": "Then we got a good view of all the houses by the water.", "album_id": "47498", "photo_flickr_id": "1873000", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41824", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we got a good view of all the houses by the water .", "storylet_id": "209121"}], [{"original_text": "After that we went for a drive down the coast.", "album_id": "47498", "photo_flickr_id": "1872989", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41824", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that we went for a drive down the coast .", "storylet_id": "209122"}], [{"original_text": "We came across a boat that was washed ashore.", "album_id": "47498", "photo_flickr_id": "1873037", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41824", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we came across a boat that was washed ashore .", "storylet_id": "209123"}], [{"original_text": "Then we came across these large buildings by the water.", "album_id": "47498", "photo_flickr_id": "1872984", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41824", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we came across these large buildings by the water .", "storylet_id": "209124"}], [{"original_text": "Today we went to the beach.", "album_id": "72157594458084619", "photo_flickr_id": "344886633", "setting": "first-2-pick-and-tell", "worker_id": "KRI78BA01KOPXJL", "story_id": "41825", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to the beach .", "storylet_id": "209125"}], [{"original_text": "The water were wild but it was still beautiful.", "album_id": "72157594458084619", "photo_flickr_id": "344886635", "setting": "first-2-pick-and-tell", "worker_id": "KRI78BA01KOPXJL", "story_id": "41825", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water were wild but it was still beautiful .", "storylet_id": "209126"}], [{"original_text": "We found a little hill and decided to take some pictures.", "album_id": "72157594458084619", "photo_flickr_id": "344894580", "setting": "first-2-pick-and-tell", "worker_id": "KRI78BA01KOPXJL", "story_id": "41825", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we found a little hill and decided to take some pictures .", "storylet_id": "209127"}], [{"original_text": "We found beautiful wild lives too.", "album_id": "72157594458084619", "photo_flickr_id": "344911047", "setting": "first-2-pick-and-tell", "worker_id": "KRI78BA01KOPXJL", "story_id": "41825", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found beautiful wild lives too .", "storylet_id": "209128"}], [{"original_text": "There was nothing better to finish with the sunset. What a wonderful trip.", "album_id": "72157594458084619", "photo_flickr_id": "344894597", "setting": "first-2-pick-and-tell", "worker_id": "KRI78BA01KOPXJL", "story_id": "41825", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was nothing better to finish with the sunset . what a wonderful trip .", "storylet_id": "209129"}], [{"original_text": "Day at the beach with his girlfriend. ", "album_id": "72157594458084619", "photo_flickr_id": "344886648", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41826", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "day at the beach with his girlfriend .", "storylet_id": "209130"}], [{"original_text": "Boyfriend and girlfriend taking a picture together having a good time at the beach. ", "album_id": "72157594458084619", "photo_flickr_id": "344894574", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41826", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "boyfriend and girlfriend taking a picture together having a good time at the beach .", "storylet_id": "209131"}], [{"original_text": "Red flags are out, they can't go swimming the waves are too strong. ", "album_id": "72157594458084619", "photo_flickr_id": "344886633", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41826", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "red flags are out , they ca n't go swimming the waves are too strong .", "storylet_id": "209132"}], [{"original_text": "The waves were really strong, could be perfect for surfers tough. ", "album_id": "72157594458084619", "photo_flickr_id": "344886635", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41826", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the waves were really strong , could be perfect for surfers tough .", "storylet_id": "209133"}], [{"original_text": "Watching the sunset together. ", "album_id": "72157594458084619", "photo_flickr_id": "344894609", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "41826", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "watching the sunset together .", "storylet_id": "209134"}], [{"original_text": "My wife and I went to the beach last summer.", "album_id": "72157594458084619", "photo_flickr_id": "344886633", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41827", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my wife and i went to the beach last summer .", "storylet_id": "209135"}], [{"original_text": "The ocean was big and blue.", "album_id": "72157594458084619", "photo_flickr_id": "344886635", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41827", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ocean was big and blue .", "storylet_id": "209136"}], [{"original_text": "We went for hikes along the beach on the big rocks.", "album_id": "72157594458084619", "photo_flickr_id": "344894580", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41827", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went for hikes along the beach on the big rocks .", "storylet_id": "209137"}], [{"original_text": "We spotted some really pretty purple flowers on our hike.", "album_id": "72157594458084619", "photo_flickr_id": "344911047", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41827", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we spotted some really pretty purple flowers on our hike .", "storylet_id": "209138"}], [{"original_text": "And we were able to catch some breathtaking sunsets on the ocean.", "album_id": "72157594458084619", "photo_flickr_id": "344894597", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "41827", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and we were able to catch some breathtaking sunsets on the ocean .", "storylet_id": "209139"}], [{"original_text": "We went to an island resort last year.", "album_id": "72157594458084619", "photo_flickr_id": "344886633", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41828", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to an island resort last year .", "storylet_id": "209140"}], [{"original_text": "The waves were very choppy.", "album_id": "72157594458084619", "photo_flickr_id": "344886635", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41828", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the waves were very choppy .", "storylet_id": "209141"}], [{"original_text": "We did get some good pictures though", "album_id": "72157594458084619", "photo_flickr_id": "344894580", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41828", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we did get some good pictures though", "storylet_id": "209142"}], [{"original_text": "including some of interesting plants", "album_id": "72157594458084619", "photo_flickr_id": "344911047", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41828", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "including some of interesting plants", "storylet_id": "209143"}], [{"original_text": "and an amazing sunset.", "album_id": "72157594458084619", "photo_flickr_id": "344894597", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "41828", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and an amazing sunset .", "storylet_id": "209144"}], [{"original_text": "I took a picture of my wife before our trip to the beach.", "album_id": "72157594458084619", "photo_flickr_id": "344886648", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "41829", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a picture of my wife before our trip to the beach .", "storylet_id": "209145"}], [{"original_text": "I then got in the picture just to prove I was there also.", "album_id": "72157594458084619", "photo_flickr_id": "344894574", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "41829", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i then got in the picture just to prove i was there also .", "storylet_id": "209146"}], [{"original_text": "The red flag was flying today so there was not a whole lot of swimming.", "album_id": "72157594458084619", "photo_flickr_id": "344886633", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "41829", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the red flag was flying today so there was not a whole lot of swimming .", "storylet_id": "209147"}], [{"original_text": "The water was really rough with large waves washing ashore.", "album_id": "72157594458084619", "photo_flickr_id": "344886635", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "41829", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the water was really rough with large waves washing ashore .", "storylet_id": "209148"}], [{"original_text": "The ocean calmed down a little by sunset.", "album_id": "72157594458084619", "photo_flickr_id": "344894609", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "41829", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ocean calmed down a little by sunset .", "storylet_id": "209149"}], [{"original_text": "On our vacation we traveled through several small towns, each one of them unique. ", "album_id": "72157623002404999", "photo_flickr_id": "4240299068", "setting": "first-2-pick-and-tell", "worker_id": "N970WXG6Q658YFT", "story_id": "41830", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our vacation we traveled through several small towns , each one of them unique .", "storylet_id": "209150"}], [{"original_text": "Outside of the towns we often saw rolling meadows lined with flowers. ", "album_id": "72157623002404999", "photo_flickr_id": "4239525267", "setting": "first-2-pick-and-tell", "worker_id": "N970WXG6Q658YFT", "story_id": "41830", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "outside of the towns we often saw rolling meadows lined with flowers .", "storylet_id": "209151"}], [{"original_text": "The meadows, in turn, were lined with rocky mountain cliffs, such as this one. ", "album_id": "72157623002404999", "photo_flickr_id": "4240298352", "setting": "first-2-pick-and-tell", "worker_id": "N970WXG6Q658YFT", "story_id": "41830", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the meadows , in turn , were lined with rocky mountain cliffs , such as this one .", "storylet_id": "209152"}], [{"original_text": "Laying between the mountains and the meadows were some beautiful rivers. ", "album_id": "72157623002404999", "photo_flickr_id": "4239523957", "setting": "first-2-pick-and-tell", "worker_id": "N970WXG6Q658YFT", "story_id": "41830", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "laying between the mountains and the meadows were some beautiful rivers .", "storylet_id": "209153"}], [{"original_text": "Finally after passing over one last mountain, we arrived at the beach. Our vacation destination was achieved. ", "album_id": "72157623002404999", "photo_flickr_id": "4240294650", "setting": "first-2-pick-and-tell", "worker_id": "N970WXG6Q658YFT", "story_id": "41830", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally after passing over one last mountain , we arrived at the beach . our vacation destination was achieved .", "storylet_id": "209154"}], [{"original_text": "We pulled into Cabo and were ready for adventure.", "album_id": "72157623002404999", "photo_flickr_id": "4240299068", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41831", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we pulled into location and were ready for adventure .", "storylet_id": "209155"}], [{"original_text": "We jumped on the ATV's and headed into the mountains.", "album_id": "72157623002404999", "photo_flickr_id": "4240298128", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41831", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we jumped on the organization 's and headed into the mountains .", "storylet_id": "209156"}], [{"original_text": "We followed a beautiful river for several miles.", "album_id": "72157623002404999", "photo_flickr_id": "4239523957", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41831", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we followed a beautiful river for several miles .", "storylet_id": "209157"}], [{"original_text": "Sadly, we also ran across a western steer that had passed away.", "album_id": "72157623002404999", "photo_flickr_id": "4240293818", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41831", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sadly , we also ran across a western steer that had passed away .", "storylet_id": "209158"}], [{"original_text": "We arrived at our destination, high above the Pacific.", "album_id": "72157623002404999", "photo_flickr_id": "4240293210", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41831", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we arrived at our destination , high above the location .", "storylet_id": "209159"}], [{"original_text": "I was really looking forward to the day trip to the mountains. The bus dropped us off at the depot, and we had all day to explore.", "album_id": "72157623002404999", "photo_flickr_id": "4240299068", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "41832", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was really looking forward to the day trip to the mountains . the bus dropped us off at the depot , and we had all day to explore .", "storylet_id": "209160"}], [{"original_text": "I was by myself, so I decided to hike up to the mountain.", "album_id": "72157623002404999", "photo_flickr_id": "4239525267", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "41832", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was by myself , so i decided to hike up to the mountain .", "storylet_id": "209161"}], [{"original_text": "I crossed the fields, and I realized the mountains were not going to be as easy as I had thought. ", "album_id": "72157623002404999", "photo_flickr_id": "4240298352", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "41832", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i crossed the fields , and i realized the mountains were not going to be as easy as i had thought .", "storylet_id": "209162"}], [{"original_text": "I decided to hike in another direction, and that is how I found this small creek.", "album_id": "72157623002404999", "photo_flickr_id": "4239523957", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "41832", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i decided to hike in another direction , and that is how i found this small creek .", "storylet_id": "209163"}], [{"original_text": "I followed it to this beach, and I spent the rest of my day there. It was sad to have to go back to the depot when the day was over.", "album_id": "72157623002404999", "photo_flickr_id": "4240294650", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "41832", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i followed it to this beach , and i spent the rest of my day there . it was sad to have to go back to the depot when the day was over .", "storylet_id": "209164"}], [{"original_text": "This small town is just a small portion of the surrounding area.", "album_id": "72157623002404999", "photo_flickr_id": "4240299068", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41833", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this small town is just a small portion of the surrounding area .", "storylet_id": "209165"}], [{"original_text": "The land is untouched by civilization.", "album_id": "72157623002404999", "photo_flickr_id": "4239525267", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41833", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the land is untouched by civilization .", "storylet_id": "209166"}], [{"original_text": "It is big and vast", "album_id": "72157623002404999", "photo_flickr_id": "4240298352", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41833", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is big and vast", "storylet_id": "209167"}], [{"original_text": "and full of life. The water is crystal clear", "album_id": "72157623002404999", "photo_flickr_id": "4239523957", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41833", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and full of life . the water is crystal clear", "storylet_id": "209168"}], [{"original_text": "and makes its way all the way out to the ocean. It is a unique an charming little place.", "album_id": "72157623002404999", "photo_flickr_id": "4240294650", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "41833", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and makes its way all the way out to the ocean . it is a unique an charming little place .", "storylet_id": "209169"}], [{"original_text": "This weekend we went to the San Fernado Valley.", "album_id": "72157623002404999", "photo_flickr_id": "4240299068", "setting": "last-3-pick-old-and-tell", "worker_id": "N3NP8JZWWTYXVLR", "story_id": "41834", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this weekend we went to the location location location .", "storylet_id": "209170"}], [{"original_text": "We pass through many hills on our walk.", "album_id": "72157623002404999", "photo_flickr_id": "4239525267", "setting": "last-3-pick-old-and-tell", "worker_id": "N3NP8JZWWTYXVLR", "story_id": "41834", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we pass through many hills on our walk .", "storylet_id": "209171"}], [{"original_text": "This mountain formation was so beautiful and made me realize how peaceful and serene nature is.", "album_id": "72157623002404999", "photo_flickr_id": "4240298352", "setting": "last-3-pick-old-and-tell", "worker_id": "N3NP8JZWWTYXVLR", "story_id": "41834", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this mountain formation was so beautiful and made me realize how peaceful and serene nature is .", "storylet_id": "209172"}], [{"original_text": "The river flowed forever.", "album_id": "72157623002404999", "photo_flickr_id": "4239523957", "setting": "last-3-pick-old-and-tell", "worker_id": "N3NP8JZWWTYXVLR", "story_id": "41834", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the river flowed forever .", "storylet_id": "209173"}], [{"original_text": "At the end of the day we finally reached the end of the trail and there was a beach.", "album_id": "72157623002404999", "photo_flickr_id": "4240294650", "setting": "last-3-pick-old-and-tell", "worker_id": "N3NP8JZWWTYXVLR", "story_id": "41834", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day we finally reached the end of the trail and there was a beach .", "storylet_id": "209174"}], [{"original_text": "We parked just out front of the station.", "album_id": "72157623004900719", "photo_flickr_id": "4241445400", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "41835", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we parked just out front of the station .", "storylet_id": "209175"}], [{"original_text": "It was not too long before we saw the train approaching under the bridge.", "album_id": "72157623004900719", "photo_flickr_id": "4241448370", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "41835", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was not too long before we saw the train approaching under the bridge .", "storylet_id": "209176"}], [{"original_text": "To the left of the station there was a sea, just beyond the village.", "album_id": "72157623004900719", "photo_flickr_id": "4241432634", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "41835", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "to the left of the station there was a sea , just beyond the village .", "storylet_id": "209177"}], [{"original_text": "We took a stroll on the beach so that I could show dad the boating area.", "album_id": "72157623004900719", "photo_flickr_id": "4241451090", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "41835", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a stroll on the beach so that i could show dad the boating area .", "storylet_id": "209178"}], [{"original_text": "He was surprised that it was free to use any boat that we wanted.", "album_id": "72157623004900719", "photo_flickr_id": "4240684465", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "41835", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was surprised that it was free to use any boat that we wanted .", "storylet_id": "209179"}], [{"original_text": "Last week, I went down to the harbor.", "album_id": "72157623004900719", "photo_flickr_id": "4241432634", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41836", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week , i went down to the harbor .", "storylet_id": "209180"}], [{"original_text": "In the beginning of the day, not a soul was out.", "album_id": "72157623004900719", "photo_flickr_id": "4241437326", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41836", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in the beginning of the day , not a soul was out .", "storylet_id": "209181"}], [{"original_text": "Then, slowly, the small boats came in to sell their fish.", "album_id": "72157623004900719", "photo_flickr_id": "4241451090", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41836", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then , slowly , the small boats came in to sell their fish .", "storylet_id": "209182"}], [{"original_text": "Just as fast as they came, they started to leave.", "album_id": "72157623004900719", "photo_flickr_id": "4240682611", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41836", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "just as fast as they came , they started to leave .", "storylet_id": "209183"}], [{"original_text": "As the tide went out, so did the boats.", "album_id": "72157623004900719", "photo_flickr_id": "4240684465", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41836", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the tide went out , so did the boats .", "storylet_id": "209184"}], [{"original_text": "We decided to take a day trip out to the lake.", "album_id": "72157623004900719", "photo_flickr_id": "4241445400", "setting": "last-3-pick-old-and-tell", "worker_id": "ACDBNA4W7GIVTTE", "story_id": "41837", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to take a day trip out to the lake .", "storylet_id": "209185"}], [{"original_text": "We rode a train to get there.", "album_id": "72157623004900719", "photo_flickr_id": "4241448370", "setting": "last-3-pick-old-and-tell", "worker_id": "ACDBNA4W7GIVTTE", "story_id": "41837", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we rode a train to get there .", "storylet_id": "209186"}], [{"original_text": "When stepped out, we got a nice view of the snowcapped peaks.", "album_id": "72157623004900719", "photo_flickr_id": "4241432634", "setting": "last-3-pick-old-and-tell", "worker_id": "ACDBNA4W7GIVTTE", "story_id": "41837", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when stepped out , we got a nice view of the snowcapped peaks .", "storylet_id": "209187"}], [{"original_text": "We decided to rent out a boat.", "album_id": "72157623004900719", "photo_flickr_id": "4241451090", "setting": "last-3-pick-old-and-tell", "worker_id": "ACDBNA4W7GIVTTE", "story_id": "41837", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we decided to rent out a boat .", "storylet_id": "209188"}], [{"original_text": "After sailing for a while, we landed ashore.", "album_id": "72157623004900719", "photo_flickr_id": "4240684465", "setting": "last-3-pick-old-and-tell", "worker_id": "ACDBNA4W7GIVTTE", "story_id": "41837", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after sailing for a while , we landed ashore .", "storylet_id": "209189"}], [{"original_text": "We drove to the park and ride to take the train to the shore. ", "album_id": "72157623004900719", "photo_flickr_id": "4241445400", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41838", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we drove to the park and ride to take the train to the shore .", "storylet_id": "209190"}], [{"original_text": "The train was on time, as usual. ", "album_id": "72157623004900719", "photo_flickr_id": "4241448370", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41838", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the train was on time , as usual .", "storylet_id": "209191"}], [{"original_text": "The shore was peaceful, and the mountains were still snowcapped. ", "album_id": "72157623004900719", "photo_flickr_id": "4241432634", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41838", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the shore was peaceful , and the mountains were still snowcapped .", "storylet_id": "209192"}], [{"original_text": "Several boats were in the water, that was surprising in the cool air. ", "album_id": "72157623004900719", "photo_flickr_id": "4241451090", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41838", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "several boats were in the water , that was surprising in the cool air .", "storylet_id": "209193"}], [{"original_text": "More boats were anchored at the shore, waiting there for their owners to take them back out to the sea. ", "album_id": "72157623004900719", "photo_flickr_id": "4240684465", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41838", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "more boats were anchored at the shore , waiting there for their owners to take them back out to the sea .", "storylet_id": "209194"}], [{"original_text": "We parked the car at the station and waited for the train.", "album_id": "72157623004900719", "photo_flickr_id": "4241445400", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41839", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we parked the car at the station and waited for the train .", "storylet_id": "209195"}], [{"original_text": "The train was right on time.", "album_id": "72157623004900719", "photo_flickr_id": "4241448370", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41839", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the train was right on time .", "storylet_id": "209196"}], [{"original_text": "Here was our view from the train window.", "album_id": "72157623004900719", "photo_flickr_id": "4241432634", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41839", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here was our view from the train window .", "storylet_id": "209197"}], [{"original_text": "We arrived at the fishing village at noon time.", "album_id": "72157623004900719", "photo_flickr_id": "4241451090", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41839", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we arrived at the fishing village at noon time .", "storylet_id": "209198"}], [{"original_text": "I was looking forward to some freshly caught seafood for lunch.", "album_id": "72157623004900719", "photo_flickr_id": "4240684465", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41839", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was looking forward to some freshly caught seafood for lunch .", "storylet_id": "209199"}], [{"original_text": "The peaked building was seen overlooking the ocean.", "album_id": "72157623130756986", "photo_flickr_id": "4241992026", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41840", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the peaked building was seen overlooking the ocean .", "storylet_id": "209200"}], [{"original_text": "The beautiful building had amazing architecture.", "album_id": "72157623130756986", "photo_flickr_id": "4241992742", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41840", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the beautiful building had amazing architecture .", "storylet_id": "209201"}], [{"original_text": "The statue stood in front of the yellow historic building.", "album_id": "72157623130756986", "photo_flickr_id": "4241219255", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41840", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the statue stood in front of the yellow historic building .", "storylet_id": "209202"}], [{"original_text": "The two man pose for a picture on that beautiful day.", "album_id": "72157623130756986", "photo_flickr_id": "4241226553", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41840", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the two man pose for a picture on that beautiful day .", "storylet_id": "209203"}], [{"original_text": "The lights lit up a night showing the Felicidades is the place to be.", "album_id": "72157623130756986", "photo_flickr_id": "4241227481", "setting": "first-2-pick-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "41840", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lights lit up a night showing the location is the place to be .", "storylet_id": "209204"}], [{"original_text": "We had a great time on our Mexican vacation.", "album_id": "72157623130756986", "photo_flickr_id": "4241218841", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "41841", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great time on our mexican vacation .", "storylet_id": "209205"}], [{"original_text": "Lots of fun going on by the ocean.", "album_id": "72157623130756986", "photo_flickr_id": "4241218021", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "41841", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of fun going on by the ocean .", "storylet_id": "209206"}], [{"original_text": "Lots of cool buildings there as well.", "album_id": "72157623130756986", "photo_flickr_id": "4241994964", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "41841", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lots of cool buildings there as well .", "storylet_id": "209207"}], [{"original_text": "The sunset was beautiful.", "album_id": "72157623130756986", "photo_flickr_id": "4242001368", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "41841", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sunset was beautiful .", "storylet_id": "209208"}], [{"original_text": "Now it is time to party.", "album_id": "72157623130756986", "photo_flickr_id": "4241227481", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "41841", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now it is time to party .", "storylet_id": "209209"}], [{"original_text": "Our visit to the coast was a huge success. We had great weather.", "album_id": "72157623130756986", "photo_flickr_id": "4241218841", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41842", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our visit to the coast was a huge success . we had great weather .", "storylet_id": "209210"}], [{"original_text": "Many people come here to take advantage of the breezes for kite flying.", "album_id": "72157623130756986", "photo_flickr_id": "4241218021", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41842", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people come here to take advantage of the breezes for kite flying .", "storylet_id": "209211"}], [{"original_text": "The old church was certainly a site to behold with the ocean as a backdrop.", "album_id": "72157623130756986", "photo_flickr_id": "4241994964", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41842", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the old church was certainly a site to behold with the ocean as a backdrop .", "storylet_id": "209212"}], [{"original_text": "The clouds in the night sky made us feel small.", "album_id": "72157623130756986", "photo_flickr_id": "4242001368", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41842", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the clouds in the night sky made us feel small .", "storylet_id": "209213"}], [{"original_text": "Lighted signs at night gave the place an air of festivity.", "album_id": "72157623130756986", "photo_flickr_id": "4241227481", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "41842", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lighted signs at night gave the place an air of festivity .", "storylet_id": "209214"}], [{"original_text": "In spain, what a beautiful country with beautiful scenery.", "album_id": "72157623130756986", "photo_flickr_id": "4241992026", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41843", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in spain , what a beautiful country with beautiful scenery .", "storylet_id": "209215"}], [{"original_text": "Headed to eat in a nice restaurant.", "album_id": "72157623130756986", "photo_flickr_id": "4241992742", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41843", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "headed to eat in a nice restaurant .", "storylet_id": "209216"}], [{"original_text": "This restaurant is great, the best lobster in town.", "album_id": "72157623130756986", "photo_flickr_id": "4241219255", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41843", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this restaurant is great , the best lobster in town .", "storylet_id": "209217"}], [{"original_text": "Here we are waiting to eat.", "album_id": "72157623130756986", "photo_flickr_id": "4241226553", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41843", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here we are waiting to eat .", "storylet_id": "209218"}], [{"original_text": "Now we'll enjoy the beach.", "album_id": "72157623130756986", "photo_flickr_id": "4241227481", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41843", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now we 'll enjoy the beach .", "storylet_id": "209219"}], [{"original_text": "This week we went on a trip to Brazil!", "album_id": "72157623130756986", "photo_flickr_id": "4241992026", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "41844", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this week we went on a trip to location !", "storylet_id": "209220"}], [{"original_text": "This is an old building that we see near the shore. Breathtaking!", "album_id": "72157623130756986", "photo_flickr_id": "4241992742", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "41844", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is an old building that we see near the shore . breathtaking !", "storylet_id": "209221"}], [{"original_text": "Here's a sculpture that we saw while in the main part of the city.", "album_id": "72157623130756986", "photo_flickr_id": "4241219255", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "41844", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's a sculpture that we saw while in the main part of the city .", "storylet_id": "209222"}], [{"original_text": "Here's me and my friend soaking up the sun during lunch.", "album_id": "72157623130756986", "photo_flickr_id": "4241226553", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "41844", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's me and my friend soaking up the sun during lunch .", "storylet_id": "209223"}], [{"original_text": "Here's a little bar we went to during the evening. We had a great time!", "album_id": "72157623130756986", "photo_flickr_id": "4241227481", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "41844", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's a little bar we went to during the evening . we had a great time !", "storylet_id": "209224"}], [{"original_text": "It was the perfect time of year for hot cocoa.", "album_id": "72157623131625252", "photo_flickr_id": "4242407956", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "41845", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the perfect time of year for hot cocoa .", "storylet_id": "209225"}], [{"original_text": "The lake had frozen up weeks ago.", "album_id": "72157623131625252", "photo_flickr_id": "4241657079", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "41845", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lake had frozen up weeks ago .", "storylet_id": "209226"}], [{"original_text": "The snow was a few feet deep.", "album_id": "72157623131625252", "photo_flickr_id": "4242453076", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "41845", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the snow was a few feet deep .", "storylet_id": "209227"}], [{"original_text": "And frost covered my hair almost immediately after I stepped outside.", "album_id": "72157623131625252", "photo_flickr_id": "4242465934", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "41845", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and frost covered my hair almost immediately after i stepped outside .", "storylet_id": "209228"}], [{"original_text": "As the sunset, the cold air dropped below zero.", "album_id": "72157623131625252", "photo_flickr_id": "4242476794", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "41845", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the sunset , the cold air dropped below zero .", "storylet_id": "209229"}], [{"original_text": "We had a lot of snow during the holidays.", "album_id": "72157623131625252", "photo_flickr_id": "4242407956", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41846", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a lot of snow during the holidays .", "storylet_id": "209230"}], [{"original_text": "Our whole city was covered in a thick blanket of snow.", "album_id": "72157623131625252", "photo_flickr_id": "4241657079", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41846", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our whole city was covered in a thick blanket of snow .", "storylet_id": "209231"}], [{"original_text": "Even the park had the benches covered, there was nothing visible at all.", "album_id": "72157623131625252", "photo_flickr_id": "4242453076", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41846", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the park had the benches covered , there was nothing visible at all .", "storylet_id": "209232"}], [{"original_text": "We had to wear thick coats just to keep warm.", "album_id": "72157623131625252", "photo_flickr_id": "4242458834", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41846", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had to wear thick coats just to keep warm .", "storylet_id": "209233"}], [{"original_text": "It made the sunset look spectacular when it reflected on the snow.", "album_id": "72157623131625252", "photo_flickr_id": "4242476794", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41846", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it made the sunset look spectacular when it reflected on the snow .", "storylet_id": "209234"}], [{"original_text": "The house was lit up for Christmas.", "album_id": "72157623131625252", "photo_flickr_id": "4242407956", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41847", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the house was lit up for christmas .", "storylet_id": "209235"}], [{"original_text": "The family awoke early in the morning to beautiful snow.", "album_id": "72157623131625252", "photo_flickr_id": "4241657079", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41847", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family awoke early in the morning to beautiful snow .", "storylet_id": "209236"}], [{"original_text": "Everything was covered in a blanket of snow.", "album_id": "72157623131625252", "photo_flickr_id": "4242453076", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41847", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everything was covered in a blanket of snow .", "storylet_id": "209237"}], [{"original_text": "They all went outside to play and explore.", "album_id": "72157623131625252", "photo_flickr_id": "4242458834", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41847", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they all went outside to play and explore .", "storylet_id": "209238"}], [{"original_text": "At the end of the day they all cuddled up, cozy in the cabin ", "album_id": "72157623131625252", "photo_flickr_id": "4242476794", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "41847", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day they all cuddled up , cozy in the cabin", "storylet_id": "209239"}], [{"original_text": "A couple spent a day and night in a snowy cabin getaway.", "album_id": "72157623131625252", "photo_flickr_id": "4242407956", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41848", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple spent a day and night in a snowy cabin getaway .", "storylet_id": "209240"}], [{"original_text": "They rose early in the morning to watch the sun come up.", "album_id": "72157623131625252", "photo_flickr_id": "4241657079", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41848", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they rose early in the morning to watch the sun come up .", "storylet_id": "209241"}], [{"original_text": "As it did, they found a nearby bench that demonstrated the sterile, quite calm of the morning.", "album_id": "72157623131625252", "photo_flickr_id": "4242453076", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41848", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as it did , they found a nearby bench that demonstrated the sterile , quite calm of the morning .", "storylet_id": "209242"}], [{"original_text": "They noticed that frost had accumulated from the moisture on the woman's hair and eyelashes.", "album_id": "72157623131625252", "photo_flickr_id": "4242465934", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41848", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they noticed that frost had accumulated from the moisture on the woman 's hair and eyelashes .", "storylet_id": "209243"}], [{"original_text": "As they watched the sun set again, they marveled at how wonderful their day had been.", "album_id": "72157623131625252", "photo_flickr_id": "4242476794", "setting": "last-3-pick-old-and-tell", "worker_id": "B0C4HOV15NZGTVL", "story_id": "41848", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as they watched the sun set again , they marveled at how wonderful their day had been .", "storylet_id": "209244"}], [{"original_text": "Here's something I found before we set off on our journey tonight. Very pretty lights.", "album_id": "72157623131625252", "photo_flickr_id": "4242407956", "setting": "last-3-pick-old-and-tell", "worker_id": "YDQTI6JSZJT0R6K", "story_id": "41849", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here 's something i found before we set off on our journey tonight . very pretty lights .", "storylet_id": "209245"}], [{"original_text": "The morning sunrise!", "album_id": "72157623131625252", "photo_flickr_id": "4241657079", "setting": "last-3-pick-old-and-tell", "worker_id": "YDQTI6JSZJT0R6K", "story_id": "41849", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the morning sunrise !", "storylet_id": "209246"}], [{"original_text": "So much snow, I want to take a break.", "album_id": "72157623131625252", "photo_flickr_id": "4242453076", "setting": "last-3-pick-old-and-tell", "worker_id": "YDQTI6JSZJT0R6K", "story_id": "41849", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so much snow , i want to take a break .", "storylet_id": "209247"}], [{"original_text": "Making my way downtown.", "album_id": "72157623131625252", "photo_flickr_id": "4242458834", "setting": "last-3-pick-old-and-tell", "worker_id": "YDQTI6JSZJT0R6K", "story_id": "41849", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "making my way downtown .", "storylet_id": "209248"}], [{"original_text": "The end of our venture, ending with a sunset. Perfect.", "album_id": "72157623131625252", "photo_flickr_id": "4242476794", "setting": "last-3-pick-old-and-tell", "worker_id": "YDQTI6JSZJT0R6K", "story_id": "41849", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the end of our venture , ending with a sunset . perfect .", "storylet_id": "209249"}], [{"original_text": "The cape coast is going downhill after the storms.", "album_id": "72157623133577892", "photo_flickr_id": "4242555967", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "41850", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cape coast is going downhill after the storms .", "storylet_id": "209250"}], [{"original_text": "Lots of damage to property in the storms path..", "album_id": "72157623133577892", "photo_flickr_id": "4243337480", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "41850", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of damage to property in the storms path..", "storylet_id": "209251"}], [{"original_text": "Lots of debris on the beach fronts.", "album_id": "72157623133577892", "photo_flickr_id": "4243335560", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "41850", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lots of debris on the beach fronts .", "storylet_id": "209252"}], [{"original_text": "Much work is needed to be done to get things back to normal.", "album_id": "72157623133577892", "photo_flickr_id": "4243342962", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "41850", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "much work is needed to be done to get things back to normal .", "storylet_id": "209253"}], [{"original_text": "I would love to see this beautiful area back to life.", "album_id": "72157623133577892", "photo_flickr_id": "4242577397", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "41850", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i would love to see this beautiful area back to life .", "storylet_id": "209254"}], [{"original_text": "A storm came rolling in.", "album_id": "72157623133577892", "photo_flickr_id": "4242568989", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "41851", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a storm came rolling in .", "storylet_id": "209255"}], [{"original_text": "The tide and wind caused great damage along the shore.", "album_id": "72157623133577892", "photo_flickr_id": "4243347448", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "41851", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tide and wind caused great damage along the shore .", "storylet_id": "209256"}], [{"original_text": "The houses sustained much damage.", "album_id": "72157623133577892", "photo_flickr_id": "4243344680", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "41851", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the houses sustained much damage .", "storylet_id": "209257"}], [{"original_text": "It made vacant spaces much harder to fill.", "album_id": "72157623133577892", "photo_flickr_id": "4242588669", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "41851", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it made vacant spaces much harder to fill .", "storylet_id": "209258"}], [{"original_text": "The community put out signs to raise awareness on how to show support in order to rebuild what was lost.", "album_id": "72157623133577892", "photo_flickr_id": "4242555967", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "41851", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the community put out signs to raise awareness on how to show support in order to rebuild what was lost .", "storylet_id": "209259"}], [{"original_text": "Me and my group are very involved with the \"Save the Cape Coast\" movement.", "album_id": "72157623133577892", "photo_flickr_id": "4242555967", "setting": "last-3-pick-old-and-tell", "worker_id": "X6T41YQ2R8N1134", "story_id": "41852", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and my group are very involved with the `` save the location location '' movement .", "storylet_id": "209260"}], [{"original_text": "We went on a day to take pictures of damaged buildings and coast line like this.", "album_id": "72157623133577892", "photo_flickr_id": "4243337480", "setting": "last-3-pick-old-and-tell", "worker_id": "X6T41YQ2R8N1134", "story_id": "41852", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went on a day to take pictures of damaged buildings and coast line like this .", "storylet_id": "209261"}], [{"original_text": "This wall is degrading and may fall apart if people such as my group do not intervene.", "album_id": "72157623133577892", "photo_flickr_id": "4243335560", "setting": "last-3-pick-old-and-tell", "worker_id": "X6T41YQ2R8N1134", "story_id": "41852", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this wall is degrading and may fall apart if people such as my group do not intervene .", "storylet_id": "209262"}], [{"original_text": "Here is another example of some of the degradation we faced on our trip.", "album_id": "72157623133577892", "photo_flickr_id": "4243342962", "setting": "last-3-pick-old-and-tell", "worker_id": "X6T41YQ2R8N1134", "story_id": "41852", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is another example of some of the degradation we faced on our trip .", "storylet_id": "209263"}], [{"original_text": "It is possible to transform places like this back to glory. We just need to keep coming back and working hard!", "album_id": "72157623133577892", "photo_flickr_id": "4242577397", "setting": "last-3-pick-old-and-tell", "worker_id": "X6T41YQ2R8N1134", "story_id": "41852", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is possible to transform places like this back to glory . we just need to keep coming back and working hard !", "storylet_id": "209264"}], [{"original_text": "We volunteered to clean the beach and town after the hurricane.", "album_id": "72157623133577892", "photo_flickr_id": "4242568989", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41853", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we volunteered to clean the beach and town after the hurricane .", "storylet_id": "209265"}], [{"original_text": "There was debris all over.", "album_id": "72157623133577892", "photo_flickr_id": "4243347448", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41853", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was debris all over .", "storylet_id": "209266"}], [{"original_text": "Some of the homes had holes and pieces ripped out from the strong winds.", "album_id": "72157623133577892", "photo_flickr_id": "4243344680", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41853", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the homes had holes and pieces ripped out from the strong winds .", "storylet_id": "209267"}], [{"original_text": "There were vacancy signs at a few places that survived.", "album_id": "72157623133577892", "photo_flickr_id": "4242588669", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41853", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were vacancy signs at a few places that survived .", "storylet_id": "209268"}], [{"original_text": "The organization we volunteered wat was called WOW.", "album_id": "72157623133577892", "photo_flickr_id": "4242555967", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41853", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the organization we volunteered wat was called wow .", "storylet_id": "209269"}], [{"original_text": "I went to the beach last weekend.", "album_id": "72157623133577892", "photo_flickr_id": "4242568989", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41854", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the beach last weekend .", "storylet_id": "209270"}], [{"original_text": "There was a lot of garbage there.", "album_id": "72157623133577892", "photo_flickr_id": "4243347448", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41854", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of garbage there .", "storylet_id": "209271"}], [{"original_text": "Some of the buildings were abandoned.", "album_id": "72157623133577892", "photo_flickr_id": "4243344680", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41854", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the buildings were abandoned .", "storylet_id": "209272"}], [{"original_text": "They were vacant.", "album_id": "72157623133577892", "photo_flickr_id": "4242588669", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41854", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were vacant .", "storylet_id": "209273"}], [{"original_text": "There were signs posted throughout the town.", "album_id": "72157623133577892", "photo_flickr_id": "4242555967", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41854", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were signs posted throughout the town .", "storylet_id": "209274"}], [{"original_text": "Joyce loved to ride her bike.", "album_id": "72157623714990818", "photo_flickr_id": "8344851", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41855", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] loved to ride her bike .", "storylet_id": "209275"}], [{"original_text": "Her bike plan today was to ride to the shore.", "album_id": "72157623714990818", "photo_flickr_id": "8344868", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41855", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her bike plan today was to ride to the shore .", "storylet_id": "209276"}], [{"original_text": "She wanted to see how the waves were, big or small. ", "album_id": "72157623714990818", "photo_flickr_id": "8344964", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41855", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she wanted to see how the waves were , big or small .", "storylet_id": "209277"}], [{"original_text": "She paused for a break and posed for a photo. ", "album_id": "72157623714990818", "photo_flickr_id": "8344979", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41855", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she paused for a break and posed for a photo .", "storylet_id": "209278"}], [{"original_text": "Joyce's final destination was in sight. She would rest there before returning home. ", "album_id": "72157623714990818", "photo_flickr_id": "8345049", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41855", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] 's final destination was in sight . she would rest there before returning home .", "storylet_id": "209279"}], [{"original_text": "Today was rather chilly but I rode my bike to the beach anyways.", "album_id": "72157623714990818", "photo_flickr_id": "8344900", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41856", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was rather chilly but i rode my bike to the beach anyways .", "storylet_id": "209280"}], [{"original_text": "I'm getting closer.", "album_id": "72157623714990818", "photo_flickr_id": "8344834", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41856", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm getting closer .", "storylet_id": "209281"}], [{"original_text": "Finally, me on my bike at the beach in the winter.", "album_id": "72157623714990818", "photo_flickr_id": "8344851", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41856", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally , me on my bike at the beach in the winter .", "storylet_id": "209282"}], [{"original_text": "The view was awesome.", "album_id": "72157623714990818", "photo_flickr_id": "8344964", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41856", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view was awesome .", "storylet_id": "209283"}], [{"original_text": "I stayed until sunset but left before the sun went down because it gets really cold with no sunshine.", "album_id": "72157623714990818", "photo_flickr_id": "8344979", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41856", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i stayed until sunset but left before the sun went down because it gets really cold with no sunshine .", "storylet_id": "209284"}], [{"original_text": "The woman decided to go for a bike ride along the beach.", "album_id": "72157623714990818", "photo_flickr_id": "8344900", "setting": "last-3-pick-old-and-tell", "worker_id": "NDMNYFY5ETVIZCQ", "story_id": "41857", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the woman decided to go for a bike ride along the beach .", "storylet_id": "209285"}], [{"original_text": "The photographer set up for an action shot, with the beach and waves in the background.", "album_id": "72157623714990818", "photo_flickr_id": "8344834", "setting": "last-3-pick-old-and-tell", "worker_id": "NDMNYFY5ETVIZCQ", "story_id": "41857", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the photographer set up for an action shot , with the beach and waves in the background .", "storylet_id": "209286"}], [{"original_text": "The photographer then caught the woman racing toward him.", "album_id": "72157623714990818", "photo_flickr_id": "8344851", "setting": "last-3-pick-old-and-tell", "worker_id": "NDMNYFY5ETVIZCQ", "story_id": "41857", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the photographer then caught the woman racing toward him .", "storylet_id": "209287"}], [{"original_text": "During the ride, they snapped photos of the water and the sand.", "album_id": "72157623714990818", "photo_flickr_id": "8344964", "setting": "last-3-pick-old-and-tell", "worker_id": "NDMNYFY5ETVIZCQ", "story_id": "41857", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "during the ride , they snapped photos of the water and the sand .", "storylet_id": "209288"}], [{"original_text": "At the end of the ride, she posed for a picture. She had a great time on the ride.", "album_id": "72157623714990818", "photo_flickr_id": "8344979", "setting": "last-3-pick-old-and-tell", "worker_id": "NDMNYFY5ETVIZCQ", "story_id": "41857", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the ride , she posed for a picture . she had a great time on the ride .", "storylet_id": "209289"}], [{"original_text": "Riding bikes next to the ocean was how Janet stayed in shape.", "album_id": "72157623714990818", "photo_flickr_id": "8344851", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41858", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "riding bikes next to the ocean was how [female] stayed in shape .", "storylet_id": "209290"}], [{"original_text": "The view was amazing so it helped to clear her mind.", "album_id": "72157623714990818", "photo_flickr_id": "8344868", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41858", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view was amazing so it helped to clear her mind .", "storylet_id": "209291"}], [{"original_text": "The sound of the waves crashing against the sand kept her focused on peddling. ", "album_id": "72157623714990818", "photo_flickr_id": "8344964", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41858", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sound of the waves crashing against the sand kept her focused on peddling .", "storylet_id": "209292"}], [{"original_text": "Janet stopped for a bit at her 1 mile point.", "album_id": "72157623714990818", "photo_flickr_id": "8344979", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41858", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] stopped for a bit at her 1 mile point .", "storylet_id": "209293"}], [{"original_text": "When she would reach the beach house 5 miles away from her apartment she would turn around and go home.", "album_id": "72157623714990818", "photo_flickr_id": "8345049", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41858", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when she would reach the beach house 5 miles away from her apartment she would turn around and go home .", "storylet_id": "209294"}], [{"original_text": "I took a bike ride along the beach.", "album_id": "72157623714990818", "photo_flickr_id": "8344851", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41859", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a bike ride along the beach .", "storylet_id": "209295"}], [{"original_text": "Then I noticed no one else was there.", "album_id": "72157623714990818", "photo_flickr_id": "8344868", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41859", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then i noticed no one else was there .", "storylet_id": "209296"}], [{"original_text": "After that I stopped to watch the water.", "album_id": "72157623714990818", "photo_flickr_id": "8344964", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41859", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that i stopped to watch the water .", "storylet_id": "209297"}], [{"original_text": "I had to stop and take a break from riding the bike.", "album_id": "72157623714990818", "photo_flickr_id": "8344979", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41859", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had to stop and take a break from riding the bike .", "storylet_id": "209298"}], [{"original_text": "At the end of my trip I came across some buildings along the water.", "album_id": "72157623714990818", "photo_flickr_id": "8345049", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41859", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of my trip i came across some buildings along the water .", "storylet_id": "209299"}], [{"original_text": "We traveled by car to the bay.", "album_id": "104243", "photo_flickr_id": "4243657", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41860", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we traveled by car to the bay .", "storylet_id": "209300"}], [{"original_text": "Off in the distance, we spotted a lighthouse.", "album_id": "104243", "photo_flickr_id": "4193314", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41860", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "off in the distance , we spotted a lighthouse .", "storylet_id": "209301"}], [{"original_text": "Up close, the lighthouse was huge.", "album_id": "104243", "photo_flickr_id": "4193228", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41860", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "up close , the lighthouse was huge .", "storylet_id": "209302"}], [{"original_text": "We were able to go up in the lighthouse and the view was awesome.", "album_id": "104243", "photo_flickr_id": "4142954", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41860", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were able to go up in the lighthouse and the view was awesome .", "storylet_id": "209303"}], [{"original_text": "There were many rocks jutting up from the water.", "album_id": "104243", "photo_flickr_id": "4143067", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41860", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were many rocks jutting up from the water .", "storylet_id": "209304"}], [{"original_text": "A road trip to the coast. What would we see?", "album_id": "104243", "photo_flickr_id": "4243657", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41861", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a road trip to the coast . what would we see ?", "storylet_id": "209305"}], [{"original_text": "We saw emus near the road. ", "album_id": "104243", "photo_flickr_id": "4192400", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41861", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw emus near the road .", "storylet_id": "209306"}], [{"original_text": "When we saw the Light House we knew we were there. ", "album_id": "104243", "photo_flickr_id": "4193314", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41861", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we saw the light house we knew we were there .", "storylet_id": "209307"}], [{"original_text": "The cliffs had eroded over time into wonderful arches. You could walk right under them. ", "album_id": "104243", "photo_flickr_id": "4143115", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41861", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cliffs had eroded over time into wonderful arches . you could walk right under them .", "storylet_id": "209308"}], [{"original_text": "There was a cliff that had broken in half and now the water was between them. It was an amazing journey. ", "album_id": "104243", "photo_flickr_id": "4143067", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41861", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a cliff that had broken in half and now the water was between them . it was an amazing journey .", "storylet_id": "209309"}], [{"original_text": "We took a drive to the beach one day.", "album_id": "104243", "photo_flickr_id": "4243657", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41862", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a drive to the beach one day .", "storylet_id": "209310"}], [{"original_text": "When we got there, the scenery was gorgeous.", "album_id": "104243", "photo_flickr_id": "4193314", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41862", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we got there , the scenery was gorgeous .", "storylet_id": "209311"}], [{"original_text": "The lighthouse was so picturesque!", "album_id": "104243", "photo_flickr_id": "4193228", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41862", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lighthouse was so picturesque !", "storylet_id": "209312"}], [{"original_text": "The bluffs we also witnessed were amazingly beautiful.", "album_id": "104243", "photo_flickr_id": "4142954", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41862", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bluffs we also witnessed were amazingly beautiful .", "storylet_id": "209313"}], [{"original_text": "They overlooked the gorgeous beach, too!", "album_id": "104243", "photo_flickr_id": "4143067", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41862", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they overlooked the gorgeous beach , too !", "storylet_id": "209314"}], [{"original_text": "I took a trip down to the beach.", "album_id": "104243", "photo_flickr_id": "4243657", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41863", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a trip down to the beach .", "storylet_id": "209315"}], [{"original_text": "On my trip, I came across a light house.", "album_id": "104243", "photo_flickr_id": "4193314", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41863", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on my trip , i came across a light house .", "storylet_id": "209316"}], [{"original_text": "Then I took a closer look.", "album_id": "104243", "photo_flickr_id": "4193228", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41863", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then i took a closer look .", "storylet_id": "209317"}], [{"original_text": "I was able to get a good view of the cliffs.", "album_id": "104243", "photo_flickr_id": "4142954", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41863", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was able to get a good view of the cliffs .", "storylet_id": "209318"}], [{"original_text": "After that I walked down to the beach.", "album_id": "104243", "photo_flickr_id": "4143067", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41863", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that i walked down to the beach .", "storylet_id": "209319"}], [{"original_text": "We stayed close by this weekend with a day trip.", "album_id": "104243", "photo_flickr_id": "4243657", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41864", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we stayed close by this weekend with a day trip .", "storylet_id": "209320"}], [{"original_text": "There's so much to see not far from home.", "album_id": "104243", "photo_flickr_id": "4193314", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41864", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there 's so much to see not far from home .", "storylet_id": "209321"}], [{"original_text": "This lighthouse has tons of history but is still in use.", "album_id": "104243", "photo_flickr_id": "4193228", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41864", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this lighthouse has tons of history but is still in use .", "storylet_id": "209322"}], [{"original_text": "I can't believe I've never been here before and it's only car ride away.", "album_id": "104243", "photo_flickr_id": "4142954", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41864", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i ca n't believe i 've never been here before and it 's only car ride away .", "storylet_id": "209323"}], [{"original_text": "We will return soon to enjoy these stunning views.", "album_id": "104243", "photo_flickr_id": "4143067", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "41864", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we will return soon to enjoy these stunning views .", "storylet_id": "209324"}], [{"original_text": "The team of scientists headed to the Mojave Desert today.", "album_id": "107977", "photo_flickr_id": "4273488", "setting": "first-2-pick-and-tell", "worker_id": "AW2J6NWDG09PCJO", "story_id": "41865", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the team of scientists headed to the location location today .", "storylet_id": "209325"}], [{"original_text": "They were there to study local rock formations.", "album_id": "107977", "photo_flickr_id": "4273413", "setting": "first-2-pick-and-tell", "worker_id": "AW2J6NWDG09PCJO", "story_id": "41865", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were there to study local rock formations .", "storylet_id": "209326"}], [{"original_text": "Some traveled on foot, while others preferred to ride camelback. ", "album_id": "107977", "photo_flickr_id": "4273457", "setting": "first-2-pick-and-tell", "worker_id": "AW2J6NWDG09PCJO", "story_id": "41865", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some traveled on foot , while others preferred to ride camelback .", "storylet_id": "209327"}], [{"original_text": "Finally they got to their destination, the oldest rock crevice known to man!", "album_id": "107977", "photo_flickr_id": "4273466", "setting": "first-2-pick-and-tell", "worker_id": "AW2J6NWDG09PCJO", "story_id": "41865", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally they got to their destination , the oldest rock crevice known to man !", "storylet_id": "209328"}], [{"original_text": "After many long hours of research, the team determined this crevice was once home to an indigenous tribe of natives. It was an exciting day for science! ", "album_id": "107977", "photo_flickr_id": "4273472", "setting": "first-2-pick-and-tell", "worker_id": "AW2J6NWDG09PCJO", "story_id": "41865", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after many long hours of research , the team determined this crevice was once home to an indigenous tribe of natives . it was an exciting day for science !", "storylet_id": "209329"}], [{"original_text": "I went on a desert tour over the summer.", "album_id": "107977", "photo_flickr_id": "4273488", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41866", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on a desert tour over the summer .", "storylet_id": "209330"}], [{"original_text": "This is our caravan as we left.", "album_id": "107977", "photo_flickr_id": "4273413", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41866", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is our caravan as we left .", "storylet_id": "209331"}], [{"original_text": "There was nothing but sand for quite some time.", "album_id": "107977", "photo_flickr_id": "4273439", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41866", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was nothing but sand for quite some time .", "storylet_id": "209332"}], [{"original_text": "Eventually we ran across a stone ridge.", "album_id": "107977", "photo_flickr_id": "4273422", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41866", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "eventually we ran across a stone ridge .", "storylet_id": "209333"}], [{"original_text": "Believe it or not, there were green plants growing there.", "album_id": "107977", "photo_flickr_id": "4273472", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41866", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "believe it or not , there were green plants growing there .", "storylet_id": "209334"}], [{"original_text": "When we all arrived, we felt ready to cross the hot sands. ", "album_id": "107977", "photo_flickr_id": "4273488", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41867", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when we all arrived , we felt ready to cross the hot sands .", "storylet_id": "209335"}], [{"original_text": "But we were smart and took the time to look around for a bit before we started.", "album_id": "107977", "photo_flickr_id": "4273413", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41867", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but we were smart and took the time to look around for a bit before we started .", "storylet_id": "209336"}], [{"original_text": "It looked like we were't the only ones here, as we saw an pack animal closer to the cliffs. ", "album_id": "107977", "photo_flickr_id": "4273457", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41867", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it looked like we were't the only ones here , as we saw an pack animal closer to the cliffs .", "storylet_id": "209337"}], [{"original_text": "They looked so big and the space so narrow once we got closer!", "album_id": "107977", "photo_flickr_id": "4273466", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41867", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they looked so big and the space so narrow once we got closer !", "storylet_id": "209338"}], [{"original_text": "We kept going, finally arriving at the spot we would be going through. ", "album_id": "107977", "photo_flickr_id": "4273472", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41867", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we kept going , finally arriving at the spot we would be going through .", "storylet_id": "209339"}], [{"original_text": "We went on a desert expedition.", "album_id": "107977", "photo_flickr_id": "4273488", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41868", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on a desert expedition .", "storylet_id": "209340"}], [{"original_text": "We all gathered in the sandy abyss.", "album_id": "107977", "photo_flickr_id": "4273413", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41868", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all gathered in the sandy abyss .", "storylet_id": "209341"}], [{"original_text": "We even got to ride camels!", "album_id": "107977", "photo_flickr_id": "4273457", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41868", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even got to ride camels !", "storylet_id": "209342"}], [{"original_text": "Conversely, we saw some pretty amazing scenery.", "album_id": "107977", "photo_flickr_id": "4273466", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41868", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "conversely , we saw some pretty amazing scenery .", "storylet_id": "209343"}], [{"original_text": "These rocks were absolutely majestic!", "album_id": "107977", "photo_flickr_id": "4273472", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41868", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these rocks were absolutely majestic !", "storylet_id": "209344"}], [{"original_text": "We drove out to the desert.", "album_id": "107977", "photo_flickr_id": "4273488", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41869", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we drove out to the desert .", "storylet_id": "209345"}], [{"original_text": "Then we climbed up high on a hill.", "album_id": "107977", "photo_flickr_id": "4273413", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41869", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we climbed up high on a hill .", "storylet_id": "209346"}], [{"original_text": "After that we rode camels through the desert.", "album_id": "107977", "photo_flickr_id": "4273457", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41869", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that we rode camels through the desert .", "storylet_id": "209347"}], [{"original_text": "We came across some high cliffs.", "album_id": "107977", "photo_flickr_id": "4273466", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41869", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we came across some high cliffs .", "storylet_id": "209348"}], [{"original_text": "Finally we took a closer look.", "album_id": "107977", "photo_flickr_id": "4273472", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41869", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally we took a closer look .", "storylet_id": "209349"}], [{"original_text": "The Bryant's headed out to their private island.", "album_id": "1773586", "photo_flickr_id": "23462123", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "41870", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the [male] 's headed out to their private island .", "storylet_id": "209350"}], [{"original_text": "Little Bryant looked for seashells.", "album_id": "1773586", "photo_flickr_id": "145054145", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "41870", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "little [male] looked for seashells .", "storylet_id": "209351"}], [{"original_text": "They headed a little inland to their gorgeous cabana.", "album_id": "1773586", "photo_flickr_id": "189310363", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "41870", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they headed a little inland to their gorgeous cabana .", "storylet_id": "209352"}], [{"original_text": "Their window gave them a great view.", "album_id": "1773586", "photo_flickr_id": "145054147", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "41870", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their window gave them a great view .", "storylet_id": "209353"}], [{"original_text": "As the sun set, the Bryants watched.", "album_id": "1773586", "photo_flickr_id": "189309459", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "41870", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the sun set , the organization watched .", "storylet_id": "209354"}], [{"original_text": "They arrived at the beach where they were staying.", "album_id": "1773586", "photo_flickr_id": "145054144", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "41871", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they arrived at the beach where they were staying .", "storylet_id": "209355"}], [{"original_text": "The house they rented for the weekend was beautiful.", "album_id": "1773586", "photo_flickr_id": "189310363", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "41871", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the house they rented for the weekend was beautiful .", "storylet_id": "209356"}], [{"original_text": "There was a nice view of the beach.", "album_id": "1773586", "photo_flickr_id": "145054147", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "41871", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a nice view of the beach .", "storylet_id": "209357"}], [{"original_text": "The kids decided to go sit on the pier.", "album_id": "1773586", "photo_flickr_id": "23462123", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "41871", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids decided to go sit on the pier .", "storylet_id": "209358"}], [{"original_text": "They watched the waves in the crystal blue water.", "album_id": "1773586", "photo_flickr_id": "23469161", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "41871", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they watched the waves in the crystal blue water .", "storylet_id": "209359"}], [{"original_text": "The island looked majestic as we arrived by rented boat.", "album_id": "1773586", "photo_flickr_id": "23462123", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41872", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the island looked majestic as we arrived by rented boat .", "storylet_id": "209360"}], [{"original_text": "It hardly had anyone living in it but we did see a child playing by the beach as we arrived.", "album_id": "1773586", "photo_flickr_id": "145054145", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41872", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it hardly had anyone living in it but we did see a child playing by the beach as we arrived .", "storylet_id": "209361"}], [{"original_text": "The resort we had booked was beautiful and didn't clash with the local area.", "album_id": "1773586", "photo_flickr_id": "189310363", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41872", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the resort we had booked was beautiful and did n't clash with the local area .", "storylet_id": "209362"}], [{"original_text": "The beaches were almost deserted, so we got to spend a lot of relaxing time exploring it.", "album_id": "1773586", "photo_flickr_id": "145054147", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41872", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beaches were almost deserted , so we got to spend a lot of relaxing time exploring it .", "storylet_id": "209363"}], [{"original_text": "As the sunset, we knew that this was going to be a highlight of our trip.", "album_id": "1773586", "photo_flickr_id": "189309459", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41872", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the sunset , we knew that this was going to be a highlight of our trip .", "storylet_id": "209364"}], [{"original_text": "We took the boat across the river.", "album_id": "1773586", "photo_flickr_id": "23462123", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41873", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took the boat across the river .", "storylet_id": "209365"}], [{"original_text": "We got off at the shore on the other side.", "album_id": "1773586", "photo_flickr_id": "145054145", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41873", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got off at the shore on the other side .", "storylet_id": "209366"}], [{"original_text": "Then we found our hotel and headed back to the beach.", "album_id": "1773586", "photo_flickr_id": "189310363", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41873", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we found our hotel and headed back to the beach .", "storylet_id": "209367"}], [{"original_text": "We arrived just inside to see the sunset.", "album_id": "1773586", "photo_flickr_id": "145054147", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41873", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we arrived just inside to see the sunset .", "storylet_id": "209368"}], [{"original_text": "I caught a great picture of it for a Hallmark card.", "album_id": "1773586", "photo_flickr_id": "189309459", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41873", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i caught a great picture of it for a hallmark card .", "storylet_id": "209369"}], [{"original_text": "The family was on a boating trip", "album_id": "1773586", "photo_flickr_id": "23462123", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41874", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was on a boating trip", "storylet_id": "209370"}], [{"original_text": "when they saw a boy on shore.", "album_id": "1773586", "photo_flickr_id": "145054145", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41874", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when they saw a boy on shore .", "storylet_id": "209371"}], [{"original_text": "The home had many trees", "album_id": "1773586", "photo_flickr_id": "189310363", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41874", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the home had many trees", "storylet_id": "209372"}], [{"original_text": "and so did the beach", "album_id": "1773586", "photo_flickr_id": "145054147", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41874", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and so did the beach", "storylet_id": "209373"}], [{"original_text": "where a romantic couple shared a kiss.", "album_id": "1773586", "photo_flickr_id": "189309459", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41874", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "where a romantic couple shared a kiss .", "storylet_id": "209374"}], [{"original_text": "I like weird stuff.", "album_id": "543257", "photo_flickr_id": "23661945", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41875", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i like weird stuff .", "storylet_id": "209375"}], [{"original_text": "Like this thing.", "album_id": "543257", "photo_flickr_id": "23661961", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41875", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "like this thing .", "storylet_id": "209376"}], [{"original_text": "Here's some junk.", "album_id": "543257", "photo_flickr_id": "23662101", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41875", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's some junk .", "storylet_id": "209377"}], [{"original_text": "I love America.", "album_id": "543257", "photo_flickr_id": "23662082", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41875", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love location .", "storylet_id": "209378"}], [{"original_text": "And the beach.", "album_id": "543257", "photo_flickr_id": "23607649", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41875", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the beach .", "storylet_id": "209379"}], [{"original_text": "Creepy fish that we found on the beach. No clue what it is.", "album_id": "543257", "photo_flickr_id": "23607640", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41876", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "creepy fish that we found on the beach . no clue what it is .", "storylet_id": "209380"}], [{"original_text": "Joe did some snorkeling. Love how clear the water is.", "album_id": "543257", "photo_flickr_id": "23607569", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41876", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] did some snorkeling . love how clear the water is .", "storylet_id": "209381"}], [{"original_text": "Fred on his surfboard. He is really good. ", "album_id": "543257", "photo_flickr_id": "23607696", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41876", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] on his surfboard . he is really good .", "storylet_id": "209382"}], [{"original_text": "After dinner we headed to the beach again to watch fireworks. This one is really cool.", "album_id": "543257", "photo_flickr_id": "23664304", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41876", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after dinner we headed to the beach again to watch fireworks . this one is really cool .", "storylet_id": "209383"}], [{"original_text": "Another shot of the fireworks. So colorful!", "album_id": "543257", "photo_flickr_id": "23664168", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "41876", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "another shot of the fireworks . so colorful !", "storylet_id": "209384"}], [{"original_text": "We found what looked like a fish made out of palm leaves on the beach today.", "album_id": "543257", "photo_flickr_id": "23607640", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41877", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we found what looked like a fish made out of palm leaves on the beach today .", "storylet_id": "209385"}], [{"original_text": "It happened while we were snorkeling and we decided to take a break.", "album_id": "543257", "photo_flickr_id": "23607569", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41877", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it happened while we were snorkeling and we decided to take a break .", "storylet_id": "209386"}], [{"original_text": "We then capped the day off with some surfing and wakeboarding.", "album_id": "543257", "photo_flickr_id": "23607696", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41877", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we then capped the day off with some surfing and wakeboarding .", "storylet_id": "209387"}], [{"original_text": "That night, we watched the fireworks.", "album_id": "543257", "photo_flickr_id": "23664304", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41877", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that night , we watched the fireworks .", "storylet_id": "209388"}], [{"original_text": "It was one of the best 4th of July we've ever had.", "album_id": "543257", "photo_flickr_id": "23664168", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41877", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was one of the best 4th of july we 've ever had .", "storylet_id": "209389"}], [{"original_text": "The group of friends stayed in a funky cabin for Spring break. Art deco style figurines decorated the exterior of the building.", "album_id": "543257", "photo_flickr_id": "23661945", "setting": "last-3-pick-old-and-tell", "worker_id": "KSKM4C6J2C06BJ0", "story_id": "41878", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group of friends stayed in a funky cabin for spring break . art deco style figurines decorated the exterior of the building .", "storylet_id": "209390"}], [{"original_text": "The red figurine had a solemn facial expression.", "album_id": "543257", "photo_flickr_id": "23661961", "setting": "last-3-pick-old-and-tell", "worker_id": "KSKM4C6J2C06BJ0", "story_id": "41878", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the red figurine had a solemn facial expression .", "storylet_id": "209391"}], [{"original_text": "But the friends had a great time playing with silly toys.", "album_id": "543257", "photo_flickr_id": "23662101", "setting": "last-3-pick-old-and-tell", "worker_id": "KSKM4C6J2C06BJ0", "story_id": "41878", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but the friends had a great time playing with silly toys .", "storylet_id": "209392"}], [{"original_text": "The star spangled decor made them think of Independence Day, which felt appropriate since they were feeling quite independent as young men vacationing without family.", "album_id": "543257", "photo_flickr_id": "23662082", "setting": "last-3-pick-old-and-tell", "worker_id": "KSKM4C6J2C06BJ0", "story_id": "41878", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the star spangled decor made them think of independence day , which felt appropriate since they were feeling quite independent as young men vacationing without family .", "storylet_id": "209393"}], [{"original_text": "The trip wasn't all about goofing off. They had fun relaxing at the beautiful beach.", "album_id": "543257", "photo_flickr_id": "23607649", "setting": "last-3-pick-old-and-tell", "worker_id": "KSKM4C6J2C06BJ0", "story_id": "41878", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the trip was n't all about goofing off . they had fun relaxing at the beautiful beach .", "storylet_id": "209394"}], [{"original_text": "The art was interesting", "album_id": "543257", "photo_flickr_id": "23661945", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41879", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the art was interesting", "storylet_id": "209395"}], [{"original_text": "along the building.", "album_id": "543257", "photo_flickr_id": "23661961", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41879", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "along the building .", "storylet_id": "209396"}], [{"original_text": "A man was celebrating ", "album_id": "543257", "photo_flickr_id": "23662101", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41879", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man was celebrating", "storylet_id": "209397"}], [{"original_text": "with a balloon", "album_id": "543257", "photo_flickr_id": "23662082", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41879", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with a balloon", "storylet_id": "209398"}], [{"original_text": "at the beach.", "album_id": "543257", "photo_flickr_id": "23607649", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41879", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the beach .", "storylet_id": "209399"}], [{"original_text": "Another trip just when I was looking forward to relaxing at home.", "album_id": "32331", "photo_flickr_id": "1263415", "setting": "first-2-pick-and-tell", "worker_id": "5TXB426W2TVSAUB", "story_id": "41880", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "another trip just when i was looking forward to relaxing at home .", "storylet_id": "209400"}], [{"original_text": "I'm flying into the dawn, but all I want to do is curl up and go back to bed.", "album_id": "32331", "photo_flickr_id": "1263445", "setting": "first-2-pick-and-tell", "worker_id": "5TXB426W2TVSAUB", "story_id": "41880", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm flying into the dawn , but all i want to do is curl up and go back to bed .", "storylet_id": "209401"}], [{"original_text": "Touch down. Why does everyone still clap?", "album_id": "32331", "photo_flickr_id": "1263471", "setting": "first-2-pick-and-tell", "worker_id": "5TXB426W2TVSAUB", "story_id": "41880", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "touch down . why does everyone still clap ?", "storylet_id": "209402"}], [{"original_text": "A delay is exactly what I did not need. We are already here. Let us out.", "album_id": "32331", "photo_flickr_id": "1263506", "setting": "first-2-pick-and-tell", "worker_id": "5TXB426W2TVSAUB", "story_id": "41880", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a delay is exactly what i did not need . we are already here . let us out .", "storylet_id": "209403"}], [{"original_text": "The Captain just announce we will need to sit here for three hours while they repair a mechanical issue.", "album_id": "32331", "photo_flickr_id": "1263510", "setting": "first-2-pick-and-tell", "worker_id": "5TXB426W2TVSAUB", "story_id": "41880", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the captain just announce we will need to sit here for three hours while they repair a mechanical issue .", "storylet_id": "209404"}], [{"original_text": "Before a plane is ready to go. ", "album_id": "32331", "photo_flickr_id": "1263504", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41881", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before a plane is ready to go .", "storylet_id": "209405"}], [{"original_text": "The baggage and freight handlers have a lot of work to do. They line up their baggage vehicles.", "album_id": "32331", "photo_flickr_id": "1263507", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41881", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the baggage and freight handlers have a lot of work to do . they line up their baggage vehicles .", "storylet_id": "209406"}], [{"original_text": "They line up the freight carts. ", "album_id": "32331", "photo_flickr_id": "1263510", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41881", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they line up the freight carts .", "storylet_id": "209407"}], [{"original_text": "Putting enormous crates of freight into a plane's cargo hold requires perfect alignment. The cargo handlers can do it all and very quickly. ", "album_id": "32331", "photo_flickr_id": "1263421", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41881", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "putting enormous crates of freight into a plane 's cargo hold requires perfect alignment . the cargo handlers can do it all and very quickly .", "storylet_id": "209408"}], [{"original_text": "The plane leaves right on time. The passengers on board did even notice the few minutes it took for the baggage to be stowed. ", "album_id": "32331", "photo_flickr_id": "1263445", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "41881", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the plane leaves right on time . the passengers on board did even notice the few minutes it took for the baggage to be stowed .", "storylet_id": "209409"}], [{"original_text": "Everything at the airport looked so busy that it made me even more nervous about my flight. ", "album_id": "32331", "photo_flickr_id": "1263415", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41882", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everything at the airport looked so busy that it made me even more nervous about my flight .", "storylet_id": "209410"}], [{"original_text": "After takeoff, I felt better once I looked out my window and saw the beautiful view. ", "album_id": "32331", "photo_flickr_id": "1263445", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41882", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after takeoff , i felt better once i looked out my window and saw the beautiful view .", "storylet_id": "209411"}], [{"original_text": "After landing, the sky was less attractive, a dreary gray having taken over. ", "album_id": "32331", "photo_flickr_id": "1263471", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41882", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after landing , the sky was less attractive , a dreary gray having taken over .", "storylet_id": "209412"}], [{"original_text": "Things looked busy here too, but it didn't worry as much this time.", "album_id": "32331", "photo_flickr_id": "1263506", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41882", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "things looked busy here too , but it did n't worry as much this time .", "storylet_id": "209413"}], [{"original_text": "Once outside the plane, it looked even less attractive, but it was the country I was excited for, not the airport. ", "album_id": "32331", "photo_flickr_id": "1263510", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "41882", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once outside the plane , it looked even less attractive , but it was the country i was excited for , not the airport .", "storylet_id": "209414"}], [{"original_text": "We took a trip in an airplane.", "album_id": "32331", "photo_flickr_id": "1263415", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41883", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip in an airplane .", "storylet_id": "209415"}], [{"original_text": "The airplane got so high in the air.", "album_id": "32331", "photo_flickr_id": "1263445", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41883", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the airplane got so high in the air .", "storylet_id": "209416"}], [{"original_text": "Then we landed to our destination.", "album_id": "32331", "photo_flickr_id": "1263471", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41883", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we landed to our destination .", "storylet_id": "209417"}], [{"original_text": "After that the airplane pulled up to the tarmac.", "album_id": "32331", "photo_flickr_id": "1263506", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41883", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that the airplane pulled up to the tarmac .", "storylet_id": "209418"}], [{"original_text": "Finally, we were able to get off of the airplane.", "album_id": "32331", "photo_flickr_id": "1263510", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41883", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , we were able to get off of the airplane .", "storylet_id": "209419"}], [{"original_text": "This airport had many airplanes including this parked one.", "album_id": "32331", "photo_flickr_id": "1263504", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41884", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this airport had many airplanes including this parked one .", "storylet_id": "209420"}], [{"original_text": "There were also many buggy cars around to carry people.", "album_id": "32331", "photo_flickr_id": "1263507", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41884", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were also many buggy cars around to carry people .", "storylet_id": "209421"}], [{"original_text": "The airport was extremely busy that day.", "album_id": "32331", "photo_flickr_id": "1263510", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41884", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the airport was extremely busy that day .", "storylet_id": "209422"}], [{"original_text": "People were able to board the plane after an hour.", "album_id": "32331", "photo_flickr_id": "1263421", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41884", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people were able to board the plane after an hour .", "storylet_id": "209423"}], [{"original_text": "The view from the plane after takeoff was amazing!", "album_id": "32331", "photo_flickr_id": "1263445", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41884", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view from the plane after takeoff was amazing !", "storylet_id": "209424"}], [{"original_text": "The boy loves the beach.", "album_id": "72157623149307698", "photo_flickr_id": "4249299143", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41885", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boy loves the beach .", "storylet_id": "209425"}], [{"original_text": "The brother and sister like to play.", "album_id": "72157623149307698", "photo_flickr_id": "4249300851", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41885", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the brother and sister like to play .", "storylet_id": "209426"}], [{"original_text": "The boy is making a sand castle.", "album_id": "72157623149307698", "photo_flickr_id": "4249301677", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41885", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boy is making a sand castle .", "storylet_id": "209427"}], [{"original_text": "The girl is going to help.", "album_id": "72157623149307698", "photo_flickr_id": "4249302651", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41885", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the girl is going to help .", "storylet_id": "209428"}], [{"original_text": "The foot prints are cute.", "album_id": "72157623149307698", "photo_flickr_id": "4249303295", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41885", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the foot prints are cute .", "storylet_id": "209429"}], [{"original_text": "We had a fun day at the beach.", "album_id": "72157623149307698", "photo_flickr_id": "4249300851", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41886", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a fun day at the beach .", "storylet_id": "209430"}], [{"original_text": "We played many games in the sand.", "album_id": "72157623149307698", "photo_flickr_id": "4249301113", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41886", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we played many games in the sand .", "storylet_id": "209431"}], [{"original_text": "It got into our boots.", "album_id": "72157623149307698", "photo_flickr_id": "4249301303", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41886", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it got into our boots .", "storylet_id": "209432"}], [{"original_text": "We had to shake out our shoes.", "album_id": "72157623149307698", "photo_flickr_id": "4249301677", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41886", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had to shake out our shoes .", "storylet_id": "209433"}], [{"original_text": "Afterward we went home for some food.", "album_id": "72157623149307698", "photo_flickr_id": "4249302061", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "41886", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we went home for some food .", "storylet_id": "209434"}], [{"original_text": "A little boy and girl were at the beach.", "album_id": "72157623149307698", "photo_flickr_id": "4249300851", "setting": "last-3-pick-old-and-tell", "worker_id": "N2D3524KFUNPH30", "story_id": "41887", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a little boy and girl were at the beach .", "storylet_id": "209435"}], [{"original_text": "They played tag together.", "album_id": "72157623149307698", "photo_flickr_id": "4249301113", "setting": "last-3-pick-old-and-tell", "worker_id": "N2D3524KFUNPH30", "story_id": "41887", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they played tag together .", "storylet_id": "209436"}], [{"original_text": "In addition, they built sandcastles.", "album_id": "72157623149307698", "photo_flickr_id": "4249301303", "setting": "last-3-pick-old-and-tell", "worker_id": "N2D3524KFUNPH30", "story_id": "41887", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in addition , they built sandcastles .", "storylet_id": "209437"}], [{"original_text": "However, their creations were destroyed by the boy.", "album_id": "72157623149307698", "photo_flickr_id": "4249301677", "setting": "last-3-pick-old-and-tell", "worker_id": "N2D3524KFUNPH30", "story_id": "41887", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "however , their creations were destroyed by the boy .", "storylet_id": "209438"}], [{"original_text": "So they decided to climb up a hill instead.", "album_id": "72157623149307698", "photo_flickr_id": "4249302061", "setting": "last-3-pick-old-and-tell", "worker_id": "N2D3524KFUNPH30", "story_id": "41887", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so they decided to climb up a hill instead .", "storylet_id": "209439"}], [{"original_text": "This little guy had a ton of fun at the beach.", "album_id": "72157623149307698", "photo_flickr_id": "4249299143", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "41888", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this little guy had a ton of fun at the beach .", "storylet_id": "209440"}], [{"original_text": "Looking around at all the footprints was fascinating.", "album_id": "72157623149307698", "photo_flickr_id": "4249300851", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "41888", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "looking around at all the footprints was fascinating .", "storylet_id": "209441"}], [{"original_text": "And of course we had to start making some sandcastles.", "album_id": "72157623149307698", "photo_flickr_id": "4249301677", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "41888", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and of course we had to start making some sandcastles .", "storylet_id": "209442"}], [{"original_text": "Though he wanted a bit of help eventually!", "album_id": "72157623149307698", "photo_flickr_id": "4249302651", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "41888", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "though he wanted a bit of help eventually !", "storylet_id": "209443"}], [{"original_text": "We left our footprints as a brief hint that we'd been there before leaving.", "album_id": "72157623149307698", "photo_flickr_id": "4249303295", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "41888", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we left our footprints as a brief hint that we 'd been there before leaving .", "storylet_id": "209444"}], [{"original_text": "On the trip to the beach little Jimmy had a great time in the sand.", "album_id": "72157623149307698", "photo_flickr_id": "4249299143", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41889", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on the trip to the beach little [male] had a great time in the sand .", "storylet_id": "209445"}], [{"original_text": "We got to look at our footprints and play by the water.", "album_id": "72157623149307698", "photo_flickr_id": "4249300851", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41889", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to look at our footprints and play by the water .", "storylet_id": "209446"}], [{"original_text": "He had a great time pushing the sand around.", "album_id": "72157623149307698", "photo_flickr_id": "4249301677", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41889", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had a great time pushing the sand around .", "storylet_id": "209447"}], [{"original_text": "He was very interested in seeing all the footprints.", "album_id": "72157623149307698", "photo_flickr_id": "4249302651", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41889", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was very interested in seeing all the footprints .", "storylet_id": "209448"}], [{"original_text": "As we left the beach I caught the footprints of Jimmy.", "album_id": "72157623149307698", "photo_flickr_id": "4249303295", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41889", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as we left the beach i caught the footprints of [male] .", "storylet_id": "209449"}], [{"original_text": "We're a seaside community.", "album_id": "211102", "photo_flickr_id": "8501206", "setting": "first-2-pick-and-tell", "worker_id": "5TXB426W2TVSAUB", "story_id": "41890", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 're a seaside community .", "storylet_id": "209450"}], [{"original_text": "Most of us have grown up in the same homes all our lives.", "album_id": "211102", "photo_flickr_id": "8501254", "setting": "first-2-pick-and-tell", "worker_id": "5TXB426W2TVSAUB", "story_id": "41890", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "most of us have grown up in the same homes all our lives .", "storylet_id": "209451"}], [{"original_text": "We don't stray far from town.", "album_id": "211102", "photo_flickr_id": "8501288", "setting": "first-2-pick-and-tell", "worker_id": "5TXB426W2TVSAUB", "story_id": "41890", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we do n't stray far from town .", "storylet_id": "209452"}], [{"original_text": "Only forty-one people have tried to leave here.", "album_id": "211102", "photo_flickr_id": "8501297", "setting": "first-2-pick-and-tell", "worker_id": "5TXB426W2TVSAUB", "story_id": "41890", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "only forty-one people have tried to leave here .", "storylet_id": "209453"}], [{"original_text": "It wasn't good.", "album_id": "211102", "photo_flickr_id": "8501453", "setting": "first-2-pick-and-tell", "worker_id": "5TXB426W2TVSAUB", "story_id": "41890", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was n't good .", "storylet_id": "209454"}], [{"original_text": "Last week my class did a study of the beach.", "album_id": "211102", "photo_flickr_id": "8501176", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41891", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week my class did a study of the beach .", "storylet_id": "209455"}], [{"original_text": "We looked at the grasses that grew on the dunes.", "album_id": "211102", "photo_flickr_id": "8501206", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41891", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we looked at the grasses that grew on the dunes .", "storylet_id": "209456"}], [{"original_text": "Some of them were very dry looking.", "album_id": "211102", "photo_flickr_id": "8501219", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41891", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them were very dry looking .", "storylet_id": "209457"}], [{"original_text": "Others, however, were very lush and green.", "album_id": "211102", "photo_flickr_id": "8501269", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41891", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others , however , were very lush and green .", "storylet_id": "209458"}], [{"original_text": "My class learned a lot about the beach that day.", "album_id": "211102", "photo_flickr_id": "8501552", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "41891", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my class learned a lot about the beach that day .", "storylet_id": "209459"}], [{"original_text": "I went on vacation and visited an almost-deserted town in Africa.", "album_id": "211102", "photo_flickr_id": "8501206", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41892", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on vacation and visited an almost-deserted town in location .", "storylet_id": "209460"}], [{"original_text": "The place was quiet, as most people had left it.", "album_id": "211102", "photo_flickr_id": "8501254", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41892", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the place was quiet , as most people had left it .", "storylet_id": "209461"}], [{"original_text": "There were still some signs of habitation, like the street signs.", "album_id": "211102", "photo_flickr_id": "8501288", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41892", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were still some signs of habitation , like the street signs .", "storylet_id": "209462"}], [{"original_text": "But the mailboxes were dirty and in disrepair.", "album_id": "211102", "photo_flickr_id": "8501297", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41892", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but the mailboxes were dirty and in disrepair .", "storylet_id": "209463"}], [{"original_text": "Even the playground equipment was abandoned.", "album_id": "211102", "photo_flickr_id": "8501453", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "41892", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the playground equipment was abandoned .", "storylet_id": "209464"}], [{"original_text": "We traveled through our town and encountered lots of beautiful like these flowers. ", "album_id": "211102", "photo_flickr_id": "8501206", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41893", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we traveled through our town and encountered lots of beautiful like these flowers .", "storylet_id": "209465"}], [{"original_text": "There were plenty of people around, mainly in their houses.", "album_id": "211102", "photo_flickr_id": "8501254", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41893", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were plenty of people around , mainly in their houses .", "storylet_id": "209466"}], [{"original_text": "The streets were barren because of this.", "album_id": "211102", "photo_flickr_id": "8501288", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41893", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the streets were barren because of this .", "storylet_id": "209467"}], [{"original_text": "We then found some interesting structures.", "album_id": "211102", "photo_flickr_id": "8501297", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41893", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we then found some interesting structures .", "storylet_id": "209468"}], [{"original_text": "And lastly, we played on this swing set!", "album_id": "211102", "photo_flickr_id": "8501453", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41893", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and lastly , we played on this swing set !", "storylet_id": "209469"}], [{"original_text": "I took a walk on in the country.", "album_id": "211102", "photo_flickr_id": "8501206", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41894", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a walk on in the country .", "storylet_id": "209470"}], [{"original_text": "Then I came across a small neighborhood.", "album_id": "211102", "photo_flickr_id": "8501254", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41894", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then i came across a small neighborhood .", "storylet_id": "209471"}], [{"original_text": "All the roads in the neighborhood were really muddy.", "album_id": "211102", "photo_flickr_id": "8501288", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41894", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the roads in the neighborhood were really muddy .", "storylet_id": "209472"}], [{"original_text": "After that I came across some really old mail boxes.", "album_id": "211102", "photo_flickr_id": "8501297", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41894", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that i came across some really old mail boxes .", "storylet_id": "209473"}], [{"original_text": "At the end of my walk I came to a small playground.", "album_id": "211102", "photo_flickr_id": "8501453", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41894", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of my walk i came to a small playground .", "storylet_id": "209474"}], [{"original_text": "The beach wasn't calm today.", "album_id": "303758", "photo_flickr_id": "12443424", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "41895", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beach was n't calm today .", "storylet_id": "209475"}], [{"original_text": "They moved away from the water.", "album_id": "303758", "photo_flickr_id": "12443417", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "41895", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they moved away from the water .", "storylet_id": "209476"}], [{"original_text": "They found a little cave.", "album_id": "303758", "photo_flickr_id": "12443409", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "41895", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they found a little cave .", "storylet_id": "209477"}], [{"original_text": "A lot of people had been in it based upon the foot prints.", "album_id": "303758", "photo_flickr_id": "12443408", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "41895", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a lot of people had been in it based upon the foot prints .", "storylet_id": "209478"}], [{"original_text": "Further inland, they found a stream that ran out into the ocean.", "album_id": "303758", "photo_flickr_id": "12443404", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "41895", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "further inland , they found a stream that ran out into the ocean .", "storylet_id": "209479"}], [{"original_text": "We rode our ATV to the mountain top...", "album_id": "303758", "photo_flickr_id": "12443425", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41896", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we rode our atv to the mountain top ...", "storylet_id": "209480"}], [{"original_text": "And, suddenly, we were back on the beach and viewing a wondering opening.", "album_id": "303758", "photo_flickr_id": "12443409", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41896", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and , suddenly , we were back on the beach and viewing a wondering opening .", "storylet_id": "209481"}], [{"original_text": "I asked my husband to take a picture; however, he preferred to stand behind the camera.", "album_id": "303758", "photo_flickr_id": "12443408", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41896", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i asked my husband to take a picture ; however , he preferred to stand behind the camera .", "storylet_id": "209482"}], [{"original_text": "We then moved back to the mountain and saw a beautiful inlet..", "album_id": "303758", "photo_flickr_id": "12443364", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41896", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we then moved back to the mountain and saw a beautiful inlet..", "storylet_id": "209483"}], [{"original_text": "The inlet showed the strong power of the water moving in from the ocean. We took our picture and were ready for bed.", "album_id": "303758", "photo_flickr_id": "12443398", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "41896", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the inlet showed the strong power of the water moving in from the ocean . we took our picture and were ready for bed .", "storylet_id": "209484"}], [{"original_text": "This area is filled with nature's beauty, like the clean sand and blue ocean water.", "album_id": "303758", "photo_flickr_id": "12443424", "setting": "last-3-pick-old-and-tell", "worker_id": "KSKM4C6J2C06BJ0", "story_id": "41897", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this area is filled with nature 's beauty , like the clean sand and blue ocean water .", "storylet_id": "209485"}], [{"original_text": "The rocks carved by the waves are stunning to look at.", "album_id": "303758", "photo_flickr_id": "12443417", "setting": "last-3-pick-old-and-tell", "worker_id": "KSKM4C6J2C06BJ0", "story_id": "41897", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rocks carved by the waves are stunning to look at .", "storylet_id": "209486"}], [{"original_text": "The naturally formed arched rock feature is especially stunning to look at.", "album_id": "303758", "photo_flickr_id": "12443409", "setting": "last-3-pick-old-and-tell", "worker_id": "KSKM4C6J2C06BJ0", "story_id": "41897", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the naturally formed arched rock feature is especially stunning to look at .", "storylet_id": "209487"}], [{"original_text": "The rock formation perfectly frames the ocean waves.", "album_id": "303758", "photo_flickr_id": "12443408", "setting": "last-3-pick-old-and-tell", "worker_id": "KSKM4C6J2C06BJ0", "story_id": "41897", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rock formation perfectly frames the ocean waves .", "storylet_id": "209488"}], [{"original_text": "Such a beautiful beach is starkly contrasted by the asphalt road nearby.", "album_id": "303758", "photo_flickr_id": "12443404", "setting": "last-3-pick-old-and-tell", "worker_id": "KSKM4C6J2C06BJ0", "story_id": "41897", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "such a beautiful beach is starkly contrasted by the asphalt road nearby .", "storylet_id": "209489"}], [{"original_text": "We walked down to the beach one day.", "album_id": "303758", "photo_flickr_id": "12443424", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41898", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we walked down to the beach one day .", "storylet_id": "209490"}], [{"original_text": "We walked around old branches on the way down.", "album_id": "303758", "photo_flickr_id": "12443417", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41898", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we walked around old branches on the way down .", "storylet_id": "209491"}], [{"original_text": "We walked along and came to a hole in the rock.", "album_id": "303758", "photo_flickr_id": "12443409", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41898", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we walked along and came to a hole in the rock .", "storylet_id": "209492"}], [{"original_text": "We passed underneath it and through to the other side.", "album_id": "303758", "photo_flickr_id": "12443408", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41898", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we passed underneath it and through to the other side .", "storylet_id": "209493"}], [{"original_text": "Shape where carved into the beach and full of water.", "album_id": "303758", "photo_flickr_id": "12443404", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41898", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "shape where carved into the beach and full of water .", "storylet_id": "209494"}], [{"original_text": "The waves were crashing", "album_id": "303758", "photo_flickr_id": "12443424", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41899", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the waves were crashing", "storylet_id": "209495"}], [{"original_text": "along the beach.", "album_id": "303758", "photo_flickr_id": "12443417", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41899", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "along the beach .", "storylet_id": "209496"}], [{"original_text": "The rocks were huge", "album_id": "303758", "photo_flickr_id": "12443409", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41899", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the rocks were huge", "storylet_id": "209497"}], [{"original_text": "and you could walk through them. ", "album_id": "303758", "photo_flickr_id": "12443408", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41899", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and you could walk through them .", "storylet_id": "209498"}], [{"original_text": "It was a good beach day.", "album_id": "303758", "photo_flickr_id": "12443404", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41899", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a good beach day .", "storylet_id": "209499"}], [{"original_text": "What a great trip.", "album_id": "307435", "photo_flickr_id": "12539573", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41900", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what a great trip .", "storylet_id": "209500"}], [{"original_text": "The views were amazing.", "album_id": "307435", "photo_flickr_id": "12539210", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41900", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the views were amazing .", "storylet_id": "209501"}], [{"original_text": "The hotel was so big.", "album_id": "307435", "photo_flickr_id": "12539228", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41900", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the hotel was so big .", "storylet_id": "209502"}], [{"original_text": "I want to stay forever.", "album_id": "307435", "photo_flickr_id": "12539246", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41900", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i want to stay forever .", "storylet_id": "209503"}], [{"original_text": "And the temple was awesome!", "album_id": "307435", "photo_flickr_id": "12539258", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41900", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the temple was awesome !", "storylet_id": "209504"}], [{"original_text": "Today I went to see the ruins of the old city. This is where I began the walk. That resort is new.", "album_id": "307435", "photo_flickr_id": "12539228", "setting": "first-2-pick-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "41901", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i went to see the ruins of the old city . this is where i began the walk . that resort is new .", "storylet_id": "209505"}], [{"original_text": "This is only part of the foundation. We decided to take a break on the steps here.", "album_id": "307435", "photo_flickr_id": "12539317", "setting": "first-2-pick-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "41901", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is only part of the foundation . we decided to take a break on the steps here .", "storylet_id": "209506"}], [{"original_text": "Here are some columns from the foundation. They made the columns strong back then!", "album_id": "307435", "photo_flickr_id": "12539573", "setting": "first-2-pick-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "41901", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here are some columns from the foundation . they made the columns strong back then !", "storylet_id": "209507"}], [{"original_text": "This building is very tall. Look at the tiny windows though! How did anyone get any air?", "album_id": "307435", "photo_flickr_id": "12539399", "setting": "first-2-pick-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "41901", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this building is very tall . look at the tiny windows though ! how did anyone get any air ?", "storylet_id": "209508"}], [{"original_text": "This is a photo of inside of the building. It was very interesting and I learned a lot of cool things.", "album_id": "307435", "photo_flickr_id": "12539554", "setting": "first-2-pick-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "41901", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a photo of inside of the building . it was very interesting and i learned a lot of cool things .", "storylet_id": "209509"}], [{"original_text": "The columns were made to look like ruins on the old estate that we stayed at.", "album_id": "307435", "photo_flickr_id": "12539573", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41902", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the columns were made to look like ruins on the old estate that we stayed at .", "storylet_id": "209510"}], [{"original_text": "It was a beautiful place with manicure lawns.", "album_id": "307435", "photo_flickr_id": "12539210", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41902", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a beautiful place with manicure lawns .", "storylet_id": "209511"}], [{"original_text": "The mansion itself was modeled after a castle.", "album_id": "307435", "photo_flickr_id": "12539228", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41902", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the mansion itself was modeled after a castle .", "storylet_id": "209512"}], [{"original_text": "It was huge. It had over 40 bedrooms. Truly a place made for a king.", "album_id": "307435", "photo_flickr_id": "12539246", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41902", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was huge . it had over 40 bedrooms . truly a place made for a king .", "storylet_id": "209513"}], [{"original_text": "In fact, it was a previous prince that commissioned the ruins. He loved the Greek ruins when he visited and he wanted to bring a bit of it back with him.", "album_id": "307435", "photo_flickr_id": "12539258", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41902", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in fact , it was a previous prince that commissioned the ruins . he loved the greek ruins when he visited and he wanted to bring a bit of it back with him .", "storylet_id": "209514"}], [{"original_text": "We approached the building in the distance.", "album_id": "307435", "photo_flickr_id": "12539573", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41903", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we approached the building in the distance .", "storylet_id": "209515"}], [{"original_text": "It had a giant course in front of it.", "album_id": "307435", "photo_flickr_id": "12539210", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41903", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it had a giant course in front of it .", "storylet_id": "209516"}], [{"original_text": "Then we could see the castle in the distance.", "album_id": "307435", "photo_flickr_id": "12539228", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41903", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we could see the castle in the distance .", "storylet_id": "209517"}], [{"original_text": "Even from that distance it was amazing.", "album_id": "307435", "photo_flickr_id": "12539246", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41903", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even from that distance it was amazing .", "storylet_id": "209518"}], [{"original_text": "We walked near old ruins and saw the sights on the way back.", "album_id": "307435", "photo_flickr_id": "12539258", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41903", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we walked near old ruins and saw the sights on the way back .", "storylet_id": "209519"}], [{"original_text": "The columns were very nice looking", "album_id": "307435", "photo_flickr_id": "12539573", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41904", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the columns were very nice looking", "storylet_id": "209520"}], [{"original_text": "under the pretty sky.", "album_id": "307435", "photo_flickr_id": "12539210", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41904", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "under the pretty sky .", "storylet_id": "209521"}], [{"original_text": "The castle was huge", "album_id": "307435", "photo_flickr_id": "12539228", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41904", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the castle was huge", "storylet_id": "209522"}], [{"original_text": "and was between trees", "album_id": "307435", "photo_flickr_id": "12539246", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41904", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and was between trees", "storylet_id": "209523"}], [{"original_text": "there were pillars everywhere.", "album_id": "307435", "photo_flickr_id": "12539258", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41904", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were pillars everywhere .", "storylet_id": "209524"}], [{"original_text": "Steve and his friends went fishing yesterday.", "album_id": "72157623025884131", "photo_flickr_id": "4249813577", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41905", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and his friends went fishing yesterday .", "storylet_id": "209525"}], [{"original_text": "Steve and his brother think their the best fishermen around.", "album_id": "72157623025884131", "photo_flickr_id": "4249802907", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41905", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] and his brother think their the best fishermen around .", "storylet_id": "209526"}], [{"original_text": "The group finally found the perfect spot to cast their lines.", "album_id": "72157623025884131", "photo_flickr_id": "4249816913", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41905", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the group finally found the perfect spot to cast their lines .", "storylet_id": "209527"}], [{"original_text": "Steve caught a fish before anyone else could get a chance to get a bite.", "album_id": "72157623025884131", "photo_flickr_id": "4249827599", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41905", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] caught a fish before anyone else could get a chance to get a bite .", "storylet_id": "209528"}], [{"original_text": "Steve had a great time in the great outdoors fishing with his buddies.", "album_id": "72157623025884131", "photo_flickr_id": "4250616494", "setting": "first-2-pick-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "41905", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] had a great time in the great outdoors fishing with his buddies .", "storylet_id": "209529"}], [{"original_text": "These men decided to go fishing for a day.", "album_id": "72157623025884131", "photo_flickr_id": "4250582896", "setting": "first-2-pick-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "41906", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these men decided to go fishing for a day .", "storylet_id": "209530"}], [{"original_text": "They traveled to one of their favorite fishing spots.", "album_id": "72157623025884131", "photo_flickr_id": "4249813577", "setting": "first-2-pick-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "41906", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they traveled to one of their favorite fishing spots .", "storylet_id": "209531"}], [{"original_text": "They started pulling in fish after fish.", "album_id": "72157623025884131", "photo_flickr_id": "4249827599", "setting": "first-2-pick-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "41906", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they started pulling in fish after fish .", "storylet_id": "209532"}], [{"original_text": "They loved showing off their catches.", "album_id": "72157623025884131", "photo_flickr_id": "4249830479", "setting": "first-2-pick-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "41906", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they loved showing off their catches .", "storylet_id": "209533"}], [{"original_text": "The day fishing was fun, but the memories made were even better.", "album_id": "72157623025884131", "photo_flickr_id": "4250593300", "setting": "first-2-pick-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "41906", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day fishing was fun , but the memories made were even better .", "storylet_id": "209534"}], [{"original_text": "Decided to make it a day of fishing with daddy.", "album_id": "72157623025884131", "photo_flickr_id": "4250582896", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41907", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "decided to make it a day of fishing with daddy .", "storylet_id": "209535"}], [{"original_text": "And, of course my brothers.", "album_id": "72157623025884131", "photo_flickr_id": "4249813577", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41907", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and , of course my brothers .", "storylet_id": "209536"}], [{"original_text": "I got the first fish!", "album_id": "72157623025884131", "photo_flickr_id": "4249827599", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41907", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got the first fish !", "storylet_id": "209537"}], [{"original_text": "And had to show it off.", "album_id": "72157623025884131", "photo_flickr_id": "4249830479", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41907", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and had to show it off .", "storylet_id": "209538"}], [{"original_text": "Daddy comes in for the help. ", "album_id": "72157623025884131", "photo_flickr_id": "4250593300", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "41907", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "daddy comes in for the help .", "storylet_id": "209539"}], [{"original_text": "My buddies and I walked to our fishing spot along the river.", "album_id": "72157623025884131", "photo_flickr_id": "4249813577", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41908", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my buddies and i walked to our fishing spot along the river .", "storylet_id": "209540"}], [{"original_text": "It was quite a long ways in so we took a water break along the way.", "album_id": "72157623025884131", "photo_flickr_id": "4249802907", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41908", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was quite a long ways in so we took a water break along the way .", "storylet_id": "209541"}], [{"original_text": "The river was shallow where we wanted to fish.", "album_id": "72157623025884131", "photo_flickr_id": "4249816913", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41908", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the river was shallow where we wanted to fish .", "storylet_id": "209542"}], [{"original_text": "My buddy immediately caught one.", "album_id": "72157623025884131", "photo_flickr_id": "4249827599", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41908", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my buddy immediately caught one .", "storylet_id": "209543"}], [{"original_text": "I never caught any that day.", "album_id": "72157623025884131", "photo_flickr_id": "4250616494", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "41908", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i never caught any that day .", "storylet_id": "209544"}], [{"original_text": "Two gentleman gather for a day in the wilderness.", "album_id": "72157623025884131", "photo_flickr_id": "4250582896", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41909", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two gentleman gather for a day in the wilderness .", "storylet_id": "209545"}], [{"original_text": "Other friends join them as they walk down the riverbed.", "album_id": "72157623025884131", "photo_flickr_id": "4249813577", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41909", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "other friends join them as they walk down the riverbed .", "storylet_id": "209546"}], [{"original_text": "They have found a fish in the shallows.", "album_id": "72157623025884131", "photo_flickr_id": "4249827599", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41909", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they have found a fish in the shallows .", "storylet_id": "209547"}], [{"original_text": "He smiles and poses with his new found food.", "album_id": "72157623025884131", "photo_flickr_id": "4249830479", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41909", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he smiles and poses with his new found food .", "storylet_id": "209548"}], [{"original_text": "Other anglers come with their poles.", "album_id": "72157623025884131", "photo_flickr_id": "4250593300", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "41909", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "other anglers come with their poles .", "storylet_id": "209549"}], [{"original_text": "A sunset at the beach is beautiful.", "album_id": "72157623033403863", "photo_flickr_id": "4253587602", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41910", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a sunset at the beach is beautiful .", "storylet_id": "209550"}], [{"original_text": "The boy and his dad enjoy it.", "album_id": "72157623033403863", "photo_flickr_id": "4252825965", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41910", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boy and his dad enjoy it .", "storylet_id": "209551"}], [{"original_text": "Other enjoy the beach.", "album_id": "72157623033403863", "photo_flickr_id": "4252827515", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41910", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other enjoy the beach .", "storylet_id": "209552"}], [{"original_text": "Time to go home.", "album_id": "72157623033403863", "photo_flickr_id": "4253598578", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41910", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "time to go home .", "storylet_id": "209553"}], [{"original_text": "At home we want dinner.", "album_id": "72157623033403863", "photo_flickr_id": "4253600484", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "41910", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at home we want dinner .", "storylet_id": "209554"}], [{"original_text": "My wife took a picture of our son and I standing near the beach at sunset.", "album_id": "72157623033403863", "photo_flickr_id": "4252825965", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41911", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my wife took a picture of our son and i standing near the beach at sunset .", "storylet_id": "209555"}], [{"original_text": "Before she could notice though I was taking pictures of her and our daughter together on the beach.", "album_id": "72157623033403863", "photo_flickr_id": "4252827515", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41911", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before she could notice though i was taking pictures of her and our daughter together on the beach .", "storylet_id": "209556"}], [{"original_text": "On our way to a restaurant for supper after the beach I catch rosko leaning out the window.", "album_id": "72157623033403863", "photo_flickr_id": "4253598578", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41911", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on our way to a restaurant for supper after the beach i catch rosko leaning out the window .", "storylet_id": "209557"}], [{"original_text": "Finally we reach our destination and the only thing on my mine is the wonderful food.", "album_id": "72157623033403863", "photo_flickr_id": "4252830273", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41911", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally we reach our destination and the only thing on my mine is the wonderful food .", "storylet_id": "209558"}], [{"original_text": "There it is in all it's glory ready for me to chow down and enjoy. ", "album_id": "72157623033403863", "photo_flickr_id": "4253600484", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "41911", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there it is in all it 's glory ready for me to chow down and enjoy .", "storylet_id": "209559"}], [{"original_text": "The family went to the beach to see the sunset.", "album_id": "72157623033403863", "photo_flickr_id": "4253587602", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "41912", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went to the beach to see the sunset .", "storylet_id": "209560"}], [{"original_text": "It was a beautiful day!", "album_id": "72157623033403863", "photo_flickr_id": "4252825965", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "41912", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a beautiful day !", "storylet_id": "209561"}], [{"original_text": "There were a lot of people sitting in the sand.", "album_id": "72157623033403863", "photo_flickr_id": "4252827515", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "41912", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of people sitting in the sand .", "storylet_id": "209562"}], [{"original_text": "Our dog enjoyed the trip, too!", "album_id": "72157623033403863", "photo_flickr_id": "4253598578", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "41912", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our dog enjoyed the trip , too !", "storylet_id": "209563"}], [{"original_text": "Then we came home and had a delicious dinner!", "album_id": "72157623033403863", "photo_flickr_id": "4253600484", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "41912", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we came home and had a delicious dinner !", "storylet_id": "209564"}], [{"original_text": "A father and son go to the beach as the sun is setting.", "album_id": "72157623033403863", "photo_flickr_id": "4252825965", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "41913", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a father and son go to the beach as the sun is setting .", "storylet_id": "209565"}], [{"original_text": "The beach is full of people even though the sun is going down.", "album_id": "72157623033403863", "photo_flickr_id": "4252827515", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "41913", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the beach is full of people even though the sun is going down .", "storylet_id": "209566"}], [{"original_text": "The son takes a picture of his dog with his cellphone.", "album_id": "72157623033403863", "photo_flickr_id": "4253598578", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "41913", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the son takes a picture of his dog with his cellphone .", "storylet_id": "209567"}], [{"original_text": "After they are done at the beach they go to a restaurant to eat.", "album_id": "72157623033403863", "photo_flickr_id": "4252830273", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "41913", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after they are done at the beach they go to a restaurant to eat .", "storylet_id": "209568"}], [{"original_text": "They both order a sweet potato soup that is very delicious.", "album_id": "72157623033403863", "photo_flickr_id": "4253600484", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "41913", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they both order a sweet potato soup that is very delicious .", "storylet_id": "209569"}], [{"original_text": "Me and my son decided to take a nice walk on the beach.", "album_id": "72157623033403863", "photo_flickr_id": "4253587602", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41914", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and my son decided to take a nice walk on the beach .", "storylet_id": "209570"}], [{"original_text": "We both were admiring the scenery.", "album_id": "72157623033403863", "photo_flickr_id": "4252825965", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41914", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we both were admiring the scenery .", "storylet_id": "209571"}], [{"original_text": "There were many people on the beach.", "album_id": "72157623033403863", "photo_flickr_id": "4252827515", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41914", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many people on the beach .", "storylet_id": "209572"}], [{"original_text": "Afterwards, we started driving home.", "album_id": "72157623033403863", "photo_flickr_id": "4253598578", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41914", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards , we started driving home .", "storylet_id": "209573"}], [{"original_text": "We made some nice curry stew to end the night.", "album_id": "72157623033403863", "photo_flickr_id": "4253600484", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41914", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we made some nice curry stew to end the night .", "storylet_id": "209574"}], [{"original_text": "It was the big wedding day.", "album_id": "122372", "photo_flickr_id": "4766771", "setting": "first-2-pick-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "41915", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the big wedding day .", "storylet_id": "209575"}], [{"original_text": "The ceremony took place in late afternoon.", "album_id": "122372", "photo_flickr_id": "4763531", "setting": "first-2-pick-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "41915", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ceremony took place in late afternoon .", "storylet_id": "209576"}], [{"original_text": "The groom handed a bouquet to an attendee.", "album_id": "122372", "photo_flickr_id": "4765124", "setting": "first-2-pick-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "41915", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the groom handed a bouquet to an attendee .", "storylet_id": "209577"}], [{"original_text": "The sunset was perfect that evening.", "album_id": "122372", "photo_flickr_id": "4766404", "setting": "first-2-pick-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "41915", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sunset was perfect that evening .", "storylet_id": "209578"}], [{"original_text": "The bride and groom took a picture to remember this special day forever.", "album_id": "122372", "photo_flickr_id": "4488218", "setting": "first-2-pick-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "41915", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bride and groom took a picture to remember this special day forever .", "storylet_id": "209579"}], [{"original_text": "We joined hands on a tropical island.", "album_id": "122372", "photo_flickr_id": "4763531", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "41916", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we joined hands on a tropical island .", "storylet_id": "209580"}], [{"original_text": "We stand before our dinner table feeling the moment.", "album_id": "122372", "photo_flickr_id": "4488998", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "41916", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stand before our dinner table feeling the moment .", "storylet_id": "209581"}], [{"original_text": "How gorgeous the evening will be after the lovely sunset.", "album_id": "122372", "photo_flickr_id": "4488218", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "41916", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "how gorgeous the evening will be after the lovely sunset .", "storylet_id": "209582"}], [{"original_text": "The sky is as breathtaking and nothing else can compare.", "album_id": "122372", "photo_flickr_id": "4766404", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "41916", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sky is as breathtaking and nothing else can compare .", "storylet_id": "209583"}], [{"original_text": "Our first night together is all about love.", "album_id": "122372", "photo_flickr_id": "4766206", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "41916", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our first night together is all about love .", "storylet_id": "209584"}], [{"original_text": "It was the day of my wedding and time to say my vows.", "album_id": "122372", "photo_flickr_id": "4763531", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "41917", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the day of my wedding and time to say my vows .", "storylet_id": "209585"}], [{"original_text": "After we had said our vows it was time to pray before we ate dinner.", "album_id": "122372", "photo_flickr_id": "4488998", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "41917", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after we had said our vows it was time to pray before we ate dinner .", "storylet_id": "209586"}], [{"original_text": "Dinner was at sunset, and the view was amazing.", "album_id": "122372", "photo_flickr_id": "4488218", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "41917", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dinner was at sunset , and the view was amazing .", "storylet_id": "209587"}], [{"original_text": "We left for our honeymoon just as the last of the light was leaving.", "album_id": "122372", "photo_flickr_id": "4766404", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "41917", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we left for our honeymoon just as the last of the light was leaving .", "storylet_id": "209588"}], [{"original_text": "We were so happy to make it to the hotel, ask we wanted was sleep.", "album_id": "122372", "photo_flickr_id": "4766206", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "41917", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were so happy to make it to the hotel , ask we wanted was sleep .", "storylet_id": "209589"}], [{"original_text": "It was finally their wedding day and they had such a beautiful service.", "album_id": "122372", "photo_flickr_id": "4763531", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "41918", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was finally their wedding day and they had such a beautiful service .", "storylet_id": "209590"}], [{"original_text": "The reception was wonderful and all their family and friends attended.", "album_id": "122372", "photo_flickr_id": "4488998", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "41918", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the reception was wonderful and all their family and friends attended .", "storylet_id": "209591"}], [{"original_text": "They had extra pictures taken in front of the sunset.", "album_id": "122372", "photo_flickr_id": "4488218", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "41918", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had extra pictures taken in front of the sunset .", "storylet_id": "209592"}], [{"original_text": "It really was a perfect sunset to end their reception.", "album_id": "122372", "photo_flickr_id": "4766404", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "41918", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it really was a perfect sunset to end their reception .", "storylet_id": "209593"}], [{"original_text": "Then it was time for a romantic evening.", "album_id": "122372", "photo_flickr_id": "4766206", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "41918", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then it was time for a romantic evening .", "storylet_id": "209594"}], [{"original_text": "Tom is very happy. Today he weds the love of his life Maria.", "album_id": "122372", "photo_flickr_id": "4766771", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "41919", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is very happy . today he weds the love of his life [female] .", "storylet_id": "209595"}], [{"original_text": "Maria is just as beautiful to Tom as the day that they met. He quickly says I do.", "album_id": "122372", "photo_flickr_id": "4763531", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "41919", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] is just as beautiful to [male] as the day that they met . he quickly says i do .", "storylet_id": "209596"}], [{"original_text": "Tom's best man took a break and relaxed in the sand. Tom asks him to hold the bouquet of flowers.", "album_id": "122372", "photo_flickr_id": "4765124", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "41919", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] 's best man took a break and relaxed in the sand . [male] asks him to hold the bouquet of flowers .", "storylet_id": "209597"}], [{"original_text": "The sun is going down. The sky is beautifully lit up. Tom and his wife Maria start to enjoy their night as newlyweds.", "album_id": "122372", "photo_flickr_id": "4766404", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "41919", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sun is going down . the sky is beautifully lit up . [male] and his wife [female] start to enjoy their night as newlyweds .", "storylet_id": "209598"}], [{"original_text": "Tom and Maria are very happy together. They walk along the sandy beach and talk about their future together as husband and wife.", "album_id": "122372", "photo_flickr_id": "4488218", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "41919", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] and [female] are very happy together . they walk along the sandy beach and talk about their future together as husband and wife .", "storylet_id": "209599"}], [{"original_text": "They were ready to go trek through the snow.", "album_id": "154229", "photo_flickr_id": "6172255", "setting": "first-2-pick-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41920", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were ready to go trek through the snow .", "storylet_id": "209600"}], [{"original_text": "They never knew where the paths would lead them.", "album_id": "154229", "photo_flickr_id": "6171869", "setting": "first-2-pick-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41920", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they never knew where the paths would lead them .", "storylet_id": "209601"}], [{"original_text": "They finally met the waters edge.", "album_id": "154229", "photo_flickr_id": "6169821", "setting": "first-2-pick-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41920", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they finally met the waters edge .", "storylet_id": "209602"}], [{"original_text": "It looked like it stretched on so far in the distance.", "album_id": "154229", "photo_flickr_id": "6169187", "setting": "first-2-pick-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41920", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looked like it stretched on so far in the distance .", "storylet_id": "209603"}], [{"original_text": "Deep in the caves you could still see the snow.", "album_id": "154229", "photo_flickr_id": "6168335", "setting": "first-2-pick-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "41920", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "deep in the caves you could still see the snow .", "storylet_id": "209604"}], [{"original_text": "The two men rode the bus in a respectable manner.", "album_id": "154229", "photo_flickr_id": "6172255", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41921", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the two men rode the bus in a respectable manner .", "storylet_id": "209605"}], [{"original_text": "The snow was just beginning to melt outside.", "album_id": "154229", "photo_flickr_id": "6169264", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41921", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the snow was just beginning to melt outside .", "storylet_id": "209606"}], [{"original_text": "Beyond the shore was a lovely ocean.", "album_id": "154229", "photo_flickr_id": "6169757", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41921", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "beyond the shore was a lovely ocean .", "storylet_id": "209607"}], [{"original_text": "The sun setting on this environment was absolutely amazing.", "album_id": "154229", "photo_flickr_id": "6168789", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41921", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sun setting on this environment was absolutely amazing .", "storylet_id": "209608"}], [{"original_text": "We setup chairs in the snow so we can watch the sun rise and set.", "album_id": "154229", "photo_flickr_id": "6167495", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41921", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we setup chairs in the snow so we can watch the sun rise and set .", "storylet_id": "209609"}], [{"original_text": "The winter weekend getaway began with a trip up the incline.", "album_id": "154229", "photo_flickr_id": "6172255", "setting": "last-3-pick-old-and-tell", "worker_id": "UEHB64OWOR7YR1S", "story_id": "41922", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the winter weekend getaway began with a trip up the incline .", "storylet_id": "209610"}], [{"original_text": "We then traveled along a snowy road to get to the coast.", "album_id": "154229", "photo_flickr_id": "6171869", "setting": "last-3-pick-old-and-tell", "worker_id": "UEHB64OWOR7YR1S", "story_id": "41922", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we then traveled along a snowy road to get to the coast .", "storylet_id": "209611"}], [{"original_text": "The coast was very quiet and non-active at this time of the year.", "album_id": "154229", "photo_flickr_id": "6169821", "setting": "last-3-pick-old-and-tell", "worker_id": "UEHB64OWOR7YR1S", "story_id": "41922", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the coast was very quiet and non-active at this time of the year .", "storylet_id": "209612"}], [{"original_text": "However, that didn't stop us from viewing a beautiful sunset.", "album_id": "154229", "photo_flickr_id": "6169187", "setting": "last-3-pick-old-and-tell", "worker_id": "UEHB64OWOR7YR1S", "story_id": "41922", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "however , that did n't stop us from viewing a beautiful sunset .", "storylet_id": "209613"}], [{"original_text": "Our final destination of the weekend was the underground caves. ", "album_id": "154229", "photo_flickr_id": "6168335", "setting": "last-3-pick-old-and-tell", "worker_id": "UEHB64OWOR7YR1S", "story_id": "41922", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our final destination of the weekend was the underground caves .", "storylet_id": "209614"}], [{"original_text": "Here we are getting ready to on a hike in the snow. ", "album_id": "154229", "photo_flickr_id": "6172255", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41923", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are getting ready to on a hike in the snow .", "storylet_id": "209615"}], [{"original_text": "We started the morning out on a pretty flat path.", "album_id": "154229", "photo_flickr_id": "6171869", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41923", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started the morning out on a pretty flat path .", "storylet_id": "209616"}], [{"original_text": "It was so beautiful to see the snow on the water's edge.", "album_id": "154229", "photo_flickr_id": "6169821", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41923", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was so beautiful to see the snow on the water 's edge .", "storylet_id": "209617"}], [{"original_text": "Our favorite sight was seeing the sun set against the water.", "album_id": "154229", "photo_flickr_id": "6169187", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41923", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our favorite sight was seeing the sun set against the water .", "storylet_id": "209618"}], [{"original_text": "It was so awesome to see icicles at the edge of the water.", "album_id": "154229", "photo_flickr_id": "6168335", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41923", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was so awesome to see icicles at the edge of the water .", "storylet_id": "209619"}], [{"original_text": "Mike and Joe headed out on a ski trip.", "album_id": "154229", "photo_flickr_id": "6172255", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "41924", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [male] headed out on a ski trip .", "storylet_id": "209620"}], [{"original_text": "It was mostly going down hill, a good direction for skiing.", "album_id": "154229", "photo_flickr_id": "6171869", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "41924", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was mostly going down hill , a good direction for skiing .", "storylet_id": "209621"}], [{"original_text": "When Suddenly, the ran smack into the ocean! ", "album_id": "154229", "photo_flickr_id": "6169821", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "41924", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when suddenly , the ran smack into the ocean !", "storylet_id": "209622"}], [{"original_text": "They waited a while to see if a motorboat would come by and let them do water skiing instead.", "album_id": "154229", "photo_flickr_id": "6169187", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "41924", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they waited a while to see if a motorboat would come by and let them do water skiing instead .", "storylet_id": "209623"}], [{"original_text": "Eventually they gave up and took shelter in this icy cave for the night. ", "album_id": "154229", "photo_flickr_id": "6168335", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "41924", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually they gave up and took shelter in this icy cave for the night .", "storylet_id": "209624"}], [{"original_text": "There is a castle.", "album_id": "430423", "photo_flickr_id": "18198346", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41925", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is a castle .", "storylet_id": "209625"}], [{"original_text": "And there are rocks by the castle.", "album_id": "430423", "photo_flickr_id": "18198347", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41925", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and there are rocks by the castle .", "storylet_id": "209626"}], [{"original_text": "Beware the floating head!", "album_id": "430423", "photo_flickr_id": "18198348", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41925", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "beware the floating head !", "storylet_id": "209627"}], [{"original_text": "And beware the sheep.", "album_id": "430423", "photo_flickr_id": "18201693", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41925", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and beware the sheep .", "storylet_id": "209628"}], [{"original_text": "For they will drown you!", "album_id": "430423", "photo_flickr_id": "18205011", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "41925", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for they will drown you !", "storylet_id": "209629"}], [{"original_text": "HERE WE ARE PLAYING HIDE AND SEEK.", "album_id": "430423", "photo_flickr_id": "18198348", "setting": "first-2-pick-and-tell", "worker_id": "MVGF0ZRCQLRDEDH", "story_id": "41926", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are playing hide and seek .", "storylet_id": "209630"}], [{"original_text": "JOHN LOOKED COOL STARING OUT TO THE OCEAN", "album_id": "430423", "photo_flickr_id": "18198351", "setting": "first-2-pick-and-tell", "worker_id": "MVGF0ZRCQLRDEDH", "story_id": "41926", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "john looked cool staring out to the ocean", "storylet_id": "209631"}], [{"original_text": "AS TWILIGHT CAME WE HAD FUN ON THE BEACH", "album_id": "430423", "photo_flickr_id": "18201697", "setting": "first-2-pick-and-tell", "worker_id": "MVGF0ZRCQLRDEDH", "story_id": "41926", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as twilight came we had fun on the beach", "storylet_id": "209632"}], [{"original_text": "JOHN THOUGHT HE WAS KING OF THE WORLD.", "album_id": "430423", "photo_flickr_id": "18201698", "setting": "first-2-pick-and-tell", "worker_id": "MVGF0ZRCQLRDEDH", "story_id": "41926", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "john thought he was king of the world .", "storylet_id": "209633"}], [{"original_text": "AS WE WERE LEAVING THE ISLAND. ", "album_id": "430423", "photo_flickr_id": "18205011", "setting": "first-2-pick-and-tell", "worker_id": "MVGF0ZRCQLRDEDH", "story_id": "41926", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as we were leaving the island .", "storylet_id": "209634"}], [{"original_text": "Our trip to the ancient castle ruins was amazing.", "album_id": "430423", "photo_flickr_id": "18198346", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "41927", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip to the ancient castle ruins was amazing .", "storylet_id": "209635"}], [{"original_text": "The castle sat high up on a hill, guarded by great big rocks.", "album_id": "430423", "photo_flickr_id": "18198347", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "41927", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the castle sat high up on a hill , guarded by great big rocks .", "storylet_id": "209636"}], [{"original_text": "I had a fun time hiding in the rolling hills.", "album_id": "430423", "photo_flickr_id": "18198348", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "41927", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a fun time hiding in the rolling hills .", "storylet_id": "209637"}], [{"original_text": "We even met some friendly sheep along the way!", "album_id": "430423", "photo_flickr_id": "18201693", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "41927", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even met some friendly sheep along the way !", "storylet_id": "209638"}], [{"original_text": "It was a beautiful day. I wouldn't change a thing. ", "album_id": "430423", "photo_flickr_id": "18205011", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "41927", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a beautiful day . i would n't change a thing .", "storylet_id": "209639"}], [{"original_text": "Our travels brought us to an interesting looking rock structure. ", "album_id": "430423", "photo_flickr_id": "18198346", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41928", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our travels brought us to an interesting looking rock structure .", "storylet_id": "209640"}], [{"original_text": "On closer look, it was a castle. ", "album_id": "430423", "photo_flickr_id": "18198347", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41928", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on closer look , it was a castle .", "storylet_id": "209641"}], [{"original_text": "My sister just just a little taller than the earth wall. ", "album_id": "430423", "photo_flickr_id": "18198348", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41928", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my sister just just a little taller than the earth wall .", "storylet_id": "209642"}], [{"original_text": "There were sheep grazing nearby. ", "album_id": "430423", "photo_flickr_id": "18201693", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41928", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were sheep grazing nearby .", "storylet_id": "209643"}], [{"original_text": "The sheep's water source was clear, and probably the reason the castle was build here. ", "album_id": "430423", "photo_flickr_id": "18205011", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41928", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sheep 's water source was clear , and probably the reason the castle was build here .", "storylet_id": "209644"}], [{"original_text": "There was a tall monument on a hill.", "album_id": "430423", "photo_flickr_id": "18198346", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "41929", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a tall monument on a hill .", "storylet_id": "209645"}], [{"original_text": "It was made of large stones.", "album_id": "430423", "photo_flickr_id": "18198347", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "41929", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was made of large stones .", "storylet_id": "209646"}], [{"original_text": "A man walked along the grass and looked at it.", "album_id": "430423", "photo_flickr_id": "18198348", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "41929", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man walked along the grass and looked at it .", "storylet_id": "209647"}], [{"original_text": "Some sheep walked nearby in a field.", "album_id": "430423", "photo_flickr_id": "18201693", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "41929", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some sheep walked nearby in a field .", "storylet_id": "209648"}], [{"original_text": "Behind the sheep there was a large body of water.", "album_id": "430423", "photo_flickr_id": "18205011", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "41929", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "behind the sheep there was a large body of water .", "storylet_id": "209649"}], [{"original_text": "We catch a glimpse of our holiday destination from the airplane window. Italy is beautiful!", "album_id": "72157600510977980", "photo_flickr_id": "636486064", "setting": "first-2-pick-and-tell", "worker_id": "4C1RT5ZPW29EKD2", "story_id": "41930", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we catch a glimpse of our holiday destination from the airplane window . location is beautiful !", "storylet_id": "209650"}], [{"original_text": "We decide to explore the ancient buildings fronting the harbor.", "album_id": "72157600510977980", "photo_flickr_id": "635627901", "setting": "first-2-pick-and-tell", "worker_id": "4C1RT5ZPW29EKD2", "story_id": "41930", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decide to explore the ancient buildings fronting the harbor .", "storylet_id": "209651"}], [{"original_text": "We decide to spend a day at the beach. It's not crowded and the weather is beautiful.", "album_id": "72157600510977980", "photo_flickr_id": "635628259", "setting": "first-2-pick-and-tell", "worker_id": "4C1RT5ZPW29EKD2", "story_id": "41930", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we decide to spend a day at the beach . it 's not crowded and the weather is beautiful .", "storylet_id": "209652"}], [{"original_text": "We rent mopeds and explore the city. Much easier than traveling by car.", "album_id": "72157600510977980", "photo_flickr_id": "635626417", "setting": "first-2-pick-and-tell", "worker_id": "4C1RT5ZPW29EKD2", "story_id": "41930", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we rent mopeds and explore the city . much easier than traveling by car .", "storylet_id": "209653"}], [{"original_text": "The basilica is stunning. We attended Mass on our last day in Italy.", "album_id": "72157600510977980", "photo_flickr_id": "636485528", "setting": "first-2-pick-and-tell", "worker_id": "4C1RT5ZPW29EKD2", "story_id": "41930", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the basilica is stunning . we attended mass on our last day in location .", "storylet_id": "209654"}], [{"original_text": "We visited Italy over the summer for our vacation.", "album_id": "72157600510977980", "photo_flickr_id": "636487238", "setting": "first-2-pick-and-tell", "worker_id": "S4Z70SNXOVFL420", "story_id": "41931", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited location over the summer for our vacation .", "storylet_id": "209655"}], [{"original_text": "Italy had some really nice beaches and activities we took part in.", "album_id": "72157600510977980", "photo_flickr_id": "635628259", "setting": "first-2-pick-and-tell", "worker_id": "S4Z70SNXOVFL420", "story_id": "41931", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "location had some really nice beaches and activities we took part in .", "storylet_id": "209656"}], [{"original_text": "Here our family was together at the beach hanging out and enjoying the weather.", "album_id": "72157600510977980", "photo_flickr_id": "635628327", "setting": "first-2-pick-and-tell", "worker_id": "S4Z70SNXOVFL420", "story_id": "41931", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here our family was together at the beach hanging out and enjoying the weather .", "storylet_id": "209657"}], [{"original_text": "There are a lot of historical structures in Italy as well. We saw some old structures scattered throughout the city.", "album_id": "72157600510977980", "photo_flickr_id": "636483010", "setting": "first-2-pick-and-tell", "worker_id": "S4Z70SNXOVFL420", "story_id": "41931", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are a lot of historical structures in location as well . we saw some old structures scattered throughout the city .", "storylet_id": "209658"}], [{"original_text": "This church was one of our favorite buildings in Italy. It was beautiful and the architecture was amazing. All in all, our vacation Italy was awesome and we would recommend it to others.", "album_id": "72157600510977980", "photo_flickr_id": "635626963", "setting": "first-2-pick-and-tell", "worker_id": "S4Z70SNXOVFL420", "story_id": "41931", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this church was one of our favorite buildings in location . it was beautiful and the architecture was amazing . all in all , our vacation location was awesome and we would recommend it to others .", "storylet_id": "209659"}], [{"original_text": "Our island vacation was amazing.", "album_id": "72157600510977980", "photo_flickr_id": "636486064", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "41932", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our island vacation was amazing .", "storylet_id": "209660"}], [{"original_text": "We stayed in a bed and breakfast right on the seashore", "album_id": "72157600510977980", "photo_flickr_id": "635627901", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "41932", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stayed in a bed and breakfast right on the seashore", "storylet_id": "209661"}], [{"original_text": "Every morning we walked out onto the beach, where people liked to relax in the sun.", "album_id": "72157600510977980", "photo_flickr_id": "635628259", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "41932", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "every morning we walked out onto the beach , where people liked to relax in the sun .", "storylet_id": "209662"}], [{"original_text": "In town we rented little motorbikes to travel through the winding streets.", "album_id": "72157600510977980", "photo_flickr_id": "635626417", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "41932", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in town we rented little motorbikes to travel through the winding streets .", "storylet_id": "209663"}], [{"original_text": "In the evening we visited the church for a beautiful, holy mass. ", "album_id": "72157600510977980", "photo_flickr_id": "636485528", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "41932", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the evening we visited the church for a beautiful , holy mass .", "storylet_id": "209664"}], [{"original_text": "There were plenty of boats near the ocean.", "album_id": "72157600510977980", "photo_flickr_id": "636487238", "setting": "last-3-pick-old-and-tell", "worker_id": "Q6C6W0X7QIZGVW5", "story_id": "41933", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were plenty of boats near the ocean .", "storylet_id": "209665"}], [{"original_text": "It wasn't very crowded that day.", "album_id": "72157600510977980", "photo_flickr_id": "635628259", "setting": "last-3-pick-old-and-tell", "worker_id": "Q6C6W0X7QIZGVW5", "story_id": "41933", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was n't very crowded that day .", "storylet_id": "209666"}], [{"original_text": "There were some other tourists though.", "album_id": "72157600510977980", "photo_flickr_id": "635628327", "setting": "last-3-pick-old-and-tell", "worker_id": "Q6C6W0X7QIZGVW5", "story_id": "41933", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some other tourists though .", "storylet_id": "209667"}], [{"original_text": "Many of the parts of the house were interesting.", "album_id": "72157600510977980", "photo_flickr_id": "636483010", "setting": "last-3-pick-old-and-tell", "worker_id": "Q6C6W0X7QIZGVW5", "story_id": "41933", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many of the parts of the house were interesting .", "storylet_id": "209668"}], [{"original_text": "The design of the chapel was beautiful.", "album_id": "72157600510977980", "photo_flickr_id": "635626963", "setting": "last-3-pick-old-and-tell", "worker_id": "Q6C6W0X7QIZGVW5", "story_id": "41933", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the design of the chapel was beautiful .", "storylet_id": "209669"}], [{"original_text": "We went to the beach for vacation. There were a lot of boats.", "album_id": "72157600510977980", "photo_flickr_id": "636487238", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "41934", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the beach for vacation . there were a lot of boats .", "storylet_id": "209670"}], [{"original_text": "We sat on the sand and watched the waves.", "album_id": "72157600510977980", "photo_flickr_id": "635628259", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "41934", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we sat on the sand and watched the waves .", "storylet_id": "209671"}], [{"original_text": "Some people went swimming in the ocean.", "album_id": "72157600510977980", "photo_flickr_id": "635628327", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "41934", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people went swimming in the ocean .", "storylet_id": "209672"}], [{"original_text": "We visited local attractions and looked and stones.", "album_id": "72157600510977980", "photo_flickr_id": "636483010", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "41934", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we visited local attractions and looked and stones .", "storylet_id": "209673"}], [{"original_text": "Afterwards, we went to a historic church.", "album_id": "72157600510977980", "photo_flickr_id": "635626963", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "41934", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , we went to a historic church .", "storylet_id": "209674"}], [{"original_text": "We decided to pack our truck and take a vacation to the beach.", "album_id": "72057594130383918", "photo_flickr_id": "143605459", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41935", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to pack our truck and take a vacation to the beach .", "storylet_id": "209675"}], [{"original_text": "We stopped off at a rest stop halfway to the beach and had breakfast.", "album_id": "72057594130383918", "photo_flickr_id": "143605460", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41935", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped off at a rest stop halfway to the beach and had breakfast .", "storylet_id": "209676"}], [{"original_text": "We finally reached the bridge which led to the beach and it was incredible.", "album_id": "72057594130383918", "photo_flickr_id": "143605461", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41935", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we finally reached the bridge which led to the beach and it was incredible .", "storylet_id": "209677"}], [{"original_text": "When we got to the beach the sun was shining off a large rock.", "album_id": "72057594130383918", "photo_flickr_id": "143614189", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41935", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we got to the beach the sun was shining off a large rock .", "storylet_id": "209678"}], [{"original_text": "When the blue sky finally came out we took a great picture of ourselves.", "album_id": "72057594130383918", "photo_flickr_id": "143622985", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "41935", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the blue sky finally came out we took a great picture of ourselves .", "storylet_id": "209679"}], [{"original_text": "We were hiking through the plains the other day.", "album_id": "72057594130383918", "photo_flickr_id": "143605465", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41936", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were hiking through the plains the other day .", "storylet_id": "209680"}], [{"original_text": "While hiking through the plains we came upon a ridge.", "album_id": "72057594130383918", "photo_flickr_id": "143614192", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41936", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while hiking through the plains we came upon a ridge .", "storylet_id": "209681"}], [{"original_text": "After we crossed the ridge we were shocked to find a beach on the other side.", "album_id": "72057594130383918", "photo_flickr_id": "143614190", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41936", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after we crossed the ridge we were shocked to find a beach on the other side .", "storylet_id": "209682"}], [{"original_text": "From the beach we spotted a huge rock jutting out of the water.", "album_id": "72057594130383918", "photo_flickr_id": "143614188", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41936", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "from the beach we spotted a huge rock jutting out of the water .", "storylet_id": "209683"}], [{"original_text": "We walked closer to the rock and was surprised at how big it really was up close.", "album_id": "72057594130383918", "photo_flickr_id": "143614189", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41936", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we walked closer to the rock and was surprised at how big it really was up close .", "storylet_id": "209684"}], [{"original_text": "One couple decided to take a road trip.", "album_id": "72057594130383918", "photo_flickr_id": "143605459", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41937", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one couple decided to take a road trip .", "storylet_id": "209685"}], [{"original_text": "Along the way, they stopped at a cute cafe,", "album_id": "72057594130383918", "photo_flickr_id": "143605460", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41937", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "along the way , they stopped at a cute cafe ,", "storylet_id": "209686"}], [{"original_text": "saw an architecturally beautiful bridge,", "album_id": "72057594130383918", "photo_flickr_id": "143605461", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41937", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "saw an architecturally beautiful bridge ,", "storylet_id": "209687"}], [{"original_text": "and stayed at the beach for a little while.", "album_id": "72057594130383918", "photo_flickr_id": "143614189", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41937", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and stayed at the beach for a little while .", "storylet_id": "209688"}], [{"original_text": "They had so much fun together on their little adventure ", "album_id": "72057594130383918", "photo_flickr_id": "143622985", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41937", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had so much fun together on their little adventure", "storylet_id": "209689"}], [{"original_text": "On our vacation, we found a car with a funny bumper sticker.", "album_id": "72057594130383918", "photo_flickr_id": "143605459", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41938", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our vacation , we found a car with a funny bumper sticker .", "storylet_id": "209690"}], [{"original_text": "First we stopped at the local bar.", "album_id": "72057594130383918", "photo_flickr_id": "143605460", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41938", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we stopped at the local bar .", "storylet_id": "209691"}], [{"original_text": "Then we went down to the beach and saw a large bridge.", "album_id": "72057594130383918", "photo_flickr_id": "143605461", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41938", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we went down to the beach and saw a large bridge .", "storylet_id": "209692"}], [{"original_text": "After that we saw some giant hills coming out of the water.", "album_id": "72057594130383918", "photo_flickr_id": "143614189", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41938", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that we saw some giant hills coming out of the water .", "storylet_id": "209693"}], [{"original_text": "We stopped to take a picture of us on the beach.", "album_id": "72057594130383918", "photo_flickr_id": "143622985", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41938", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we stopped to take a picture of us on the beach .", "storylet_id": "209694"}], [{"original_text": "On our trip we saw many things including this funny sign.", "album_id": "72057594130383918", "photo_flickr_id": "143605459", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41939", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our trip we saw many things including this funny sign .", "storylet_id": "209695"}], [{"original_text": "The local restaurant was delicious!", "album_id": "72057594130383918", "photo_flickr_id": "143605460", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41939", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the local restaurant was delicious !", "storylet_id": "209696"}], [{"original_text": "We also saw an extremely large bridge.", "album_id": "72057594130383918", "photo_flickr_id": "143605461", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41939", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also saw an extremely large bridge .", "storylet_id": "209697"}], [{"original_text": "The beach was beautiful and the waters were just right.", "album_id": "72057594130383918", "photo_flickr_id": "143614189", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41939", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beach was beautiful and the waters were just right .", "storylet_id": "209698"}], [{"original_text": "We decided to take a picture together for memory.", "album_id": "72057594130383918", "photo_flickr_id": "143622985", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "41939", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to take a picture together for memory .", "storylet_id": "209699"}], [{"original_text": "In the morning, the sun did not show.", "album_id": "8956", "photo_flickr_id": "384708", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41940", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the morning , the sun did not show .", "storylet_id": "209700"}], [{"original_text": "We went and laid on the beach to tan.", "album_id": "8956", "photo_flickr_id": "384740", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41940", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went and laid on the beach to tan .", "storylet_id": "209701"}], [{"original_text": "Many people and animals shared the same shore.", "album_id": "8956", "photo_flickr_id": "384741", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41940", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many people and animals shared the same shore .", "storylet_id": "209702"}], [{"original_text": "Behind us, the playground was being artistically remodeled.", "album_id": "8956", "photo_flickr_id": "384707", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41940", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "behind us , the playground was being artistically remodeled .", "storylet_id": "209703"}], [{"original_text": "There were many admirers and one biker.", "album_id": "8956", "photo_flickr_id": "384746", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41940", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were many admirers and one biker .", "storylet_id": "209704"}], [{"original_text": "I went for a walk early in the morning today.", "album_id": "8956", "photo_flickr_id": "384703", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41941", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a walk early in the morning today .", "storylet_id": "209705"}], [{"original_text": "As the sun came up, I could see the lake in better detail.", "album_id": "8956", "photo_flickr_id": "384708", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41941", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the sun came up , i could see the lake in better detail .", "storylet_id": "209706"}], [{"original_text": "Other people started arriving to enjoy the day.", "album_id": "8956", "photo_flickr_id": "384740", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41941", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other people started arriving to enjoy the day .", "storylet_id": "209707"}], [{"original_text": "Once the sun was up all the way, I spotted a building down the beach.", "album_id": "8956", "photo_flickr_id": "384743", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41941", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once the sun was up all the way , i spotted a building down the beach .", "storylet_id": "209708"}], [{"original_text": "I walked a little closer and found people enjoying some kind of festival.", "album_id": "8956", "photo_flickr_id": "384706", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41941", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i walked a little closer and found people enjoying some kind of festival .", "storylet_id": "209709"}], [{"original_text": "Ahh the beach is a wonderful place,", "album_id": "8956", "photo_flickr_id": "384708", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41942", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "ahh the beach is a wonderful place ,", "storylet_id": "209710"}], [{"original_text": "except when it's filled with tourists.", "album_id": "8956", "photo_flickr_id": "384740", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41942", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "except when it 's filled with tourists .", "storylet_id": "209711"}], [{"original_text": "Well, it's still pretty nice, but it's better when it's empty.", "album_id": "8956", "photo_flickr_id": "384741", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41942", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "well , it 's still pretty nice , but it 's better when it 's empty .", "storylet_id": "209712"}], [{"original_text": "However, with tourists, come new and cool beach side businesses", "album_id": "8956", "photo_flickr_id": "384707", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41942", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "however , with tourists , come new and cool beach side businesses", "storylet_id": "209713"}], [{"original_text": "which make the beach an even better place to be during the summer. ", "album_id": "8956", "photo_flickr_id": "384746", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "41942", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "which make the beach an even better place to be during the summer .", "storylet_id": "209714"}], [{"original_text": "We took a trip down to the lake.", "album_id": "8956", "photo_flickr_id": "384708", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41943", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip down to the lake .", "storylet_id": "209715"}], [{"original_text": "We laid out in the sand to get some sun.", "album_id": "8956", "photo_flickr_id": "384740", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41943", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we laid out in the sand to get some sun .", "storylet_id": "209716"}], [{"original_text": "Then we watched the dogs play in the water.", "album_id": "8956", "photo_flickr_id": "384741", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41943", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we watched the dogs play in the water .", "storylet_id": "209717"}], [{"original_text": "We watched the artists make artwork by the water.", "album_id": "8956", "photo_flickr_id": "384707", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41943", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we watched the artists make artwork by the water .", "storylet_id": "209718"}], [{"original_text": "After that a lot of people showed up to look at the artwork.", "album_id": "8956", "photo_flickr_id": "384746", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "41943", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that a lot of people showed up to look at the artwork .", "storylet_id": "209719"}], [{"original_text": "Very nice sunset where the light is cascading over the lake", "album_id": "8956", "photo_flickr_id": "384703", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "41944", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "very nice sunset where the light is cascading over the lake", "storylet_id": "209720"}], [{"original_text": "Miles of emptiness makes me feel lonely", "album_id": "8956", "photo_flickr_id": "384708", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "41944", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] of emptiness makes me feel lonely", "storylet_id": "209721"}], [{"original_text": "The beach was full of vacationers", "album_id": "8956", "photo_flickr_id": "384740", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "41944", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beach was full of vacationers", "storylet_id": "209722"}], [{"original_text": "This reminded me of burning man in the desert", "album_id": "8956", "photo_flickr_id": "384743", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "41944", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this reminded me of burning man in the desert", "storylet_id": "209723"}], [{"original_text": "They had made these tents out of plastic materials", "album_id": "8956", "photo_flickr_id": "384706", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "41944", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had made these tents out of plastic materials", "storylet_id": "209724"}], [{"original_text": "The vacation spot was crowded.", "album_id": "115611", "photo_flickr_id": "4590180", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41945", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the vacation spot was crowded .", "storylet_id": "209725"}], [{"original_text": "Everyone came out here to spend memorial weekend.", "album_id": "115611", "photo_flickr_id": "4590251", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41945", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone came out here to spend memorial weekend .", "storylet_id": "209726"}], [{"original_text": "The pool was a refreshing way to relax.", "album_id": "115611", "photo_flickr_id": "4590352", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41945", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the pool was a refreshing way to relax .", "storylet_id": "209727"}], [{"original_text": "This garden was an attractive sight.", "album_id": "115611", "photo_flickr_id": "4590383", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41945", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this garden was an attractive sight .", "storylet_id": "209728"}], [{"original_text": "A few miles away from the vacation spot there was a canyon people liked to visit. ", "album_id": "115611", "photo_flickr_id": "4590518", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41945", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a few miles away from the vacation spot there was a canyon people liked to visit .", "storylet_id": "209729"}], [{"original_text": "Looking out from this window at a great view.", "album_id": "115611", "photo_flickr_id": "4590566", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41946", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "looking out from this window at a great view .", "storylet_id": "209730"}], [{"original_text": "Here are just some of what I see. It's so awesome.", "album_id": "115611", "photo_flickr_id": "4590706", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41946", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here are just some of what i see . it 's so awesome .", "storylet_id": "209731"}], [{"original_text": "Look at that sea, I want to be on that sea with my boat.", "album_id": "115611", "photo_flickr_id": "4590395", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41946", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at that sea , i want to be on that sea with my boat .", "storylet_id": "209732"}], [{"original_text": "Beautiful flowers are found nearby too.", "album_id": "115611", "photo_flickr_id": "4590733", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41946", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "beautiful flowers are found nearby too .", "storylet_id": "209733"}], [{"original_text": "The nightlife here is so nice and cozy.", "album_id": "115611", "photo_flickr_id": "4590698", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "41946", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the nightlife here is so nice and cozy .", "storylet_id": "209734"}], [{"original_text": "This is a picture from our summer house. The boats on the lake are so pretty and relaxing. ", "album_id": "115611", "photo_flickr_id": "4590180", "setting": "last-3-pick-old-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "41947", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture from our summer house . the boats on the lake are so pretty and relaxing .", "storylet_id": "209735"}], [{"original_text": "This is the backyard of our summer house including our swimming pool. ", "album_id": "115611", "photo_flickr_id": "4590251", "setting": "last-3-pick-old-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "41947", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the backyard of our summer house including our swimming pool .", "storylet_id": "209736"}], [{"original_text": "The grass is so green this year and the hedges have just been trimmed. Pretty!", "album_id": "115611", "photo_flickr_id": "4590352", "setting": "last-3-pick-old-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "41947", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the grass is so green this year and the hedges have just been trimmed . pretty !", "storylet_id": "209737"}], [{"original_text": "Our garage has been converted into an overhanging garden. The flowers will be blooming soon!", "album_id": "115611", "photo_flickr_id": "4590383", "setting": "last-3-pick-old-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "41947", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our garage has been converted into an overhanging garden . the flowers will be blooming soon !", "storylet_id": "209738"}], [{"original_text": "And finally, this is the stairway to our house. It's a long climb but well worth it !", "album_id": "115611", "photo_flickr_id": "4590518", "setting": "last-3-pick-old-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "41947", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and finally , this is the stairway to our house . it 's a long climb but well worth it !", "storylet_id": "209739"}], [{"original_text": "The vent was open so that I could see through it.", "album_id": "115611", "photo_flickr_id": "4590566", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41948", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the vent was open so that i could see through it .", "storylet_id": "209740"}], [{"original_text": "I had a great view of the ocean and I could see many things.", "album_id": "115611", "photo_flickr_id": "4590706", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41948", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had a great view of the ocean and i could see many things .", "storylet_id": "209741"}], [{"original_text": "The island was open and was surrounded by very blue waters.", "album_id": "115611", "photo_flickr_id": "4590395", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41948", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the island was open and was surrounded by very blue waters .", "storylet_id": "209742"}], [{"original_text": "The pink flowers were very bold and fresh in this area.", "album_id": "115611", "photo_flickr_id": "4590733", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41948", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pink flowers were very bold and fresh in this area .", "storylet_id": "209743"}], [{"original_text": "The light on the boats reflected off the water nicely.", "album_id": "115611", "photo_flickr_id": "4590698", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41948", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the light on the boats reflected off the water nicely .", "storylet_id": "209744"}], [{"original_text": "On a recent trip out of the country I expereienced some of the most beautiful scenery.", "album_id": "115611", "photo_flickr_id": "4590566", "setting": "last-3-pick-old-and-tell", "worker_id": "KK53JWIN663C5DY", "story_id": "41949", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on a recent trip out of the country i expereienced some of the most beautiful scenery .", "storylet_id": "209745"}], [{"original_text": "Out of one window, I could see the vast ocean and a distant island. ", "album_id": "115611", "photo_flickr_id": "4590706", "setting": "last-3-pick-old-and-tell", "worker_id": "KK53JWIN663C5DY", "story_id": "41949", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "out of one window , i could see the vast ocean and a distant island .", "storylet_id": "209746"}], [{"original_text": "Out of the other window, I could see another distant island and decided to go explore it.", "album_id": "115611", "photo_flickr_id": "4590395", "setting": "last-3-pick-old-and-tell", "worker_id": "KK53JWIN663C5DY", "story_id": "41949", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "out of the other window , i could see another distant island and decided to go explore it .", "storylet_id": "209747"}], [{"original_text": "As I explored the island, I found beautiful flowers.", "album_id": "115611", "photo_flickr_id": "4590733", "setting": "last-3-pick-old-and-tell", "worker_id": "KK53JWIN663C5DY", "story_id": "41949", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as i explored the island , i found beautiful flowers .", "storylet_id": "209748"}], [{"original_text": "Finally I left to come back home through the midnight ferry back to the mainland.", "album_id": "115611", "photo_flickr_id": "4590698", "setting": "last-3-pick-old-and-tell", "worker_id": "KK53JWIN663C5DY", "story_id": "41949", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally i left to come back home through the midnight ferry back to the mainland .", "storylet_id": "209749"}], [{"original_text": "We took our family vacation to Mexico this year.", "album_id": "155832", "photo_flickr_id": "6243533", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "41950", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took our family vacation to location this year .", "storylet_id": "209750"}], [{"original_text": "Our hotel was located right at the beach. ", "album_id": "155832", "photo_flickr_id": "6244005", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "41950", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our hotel was located right at the beach .", "storylet_id": "209751"}], [{"original_text": "We went to town to take in some of the local cuisine. ", "album_id": "155832", "photo_flickr_id": "6243409", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "41950", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went to town to take in some of the local cuisine .", "storylet_id": "209752"}], [{"original_text": "A folk singer serenaded us while we ate. He was quite good.", "album_id": "155832", "photo_flickr_id": "6243976", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "41950", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a folk singer serenaded us while we ate . he was quite good .", "storylet_id": "209753"}], [{"original_text": "Vacations are always too short. Five days went by so quick. We enjoyed our trip and decided we will visit again.", "album_id": "155832", "photo_flickr_id": "6244025", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "41950", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "vacations are always too short . five days went by so quick . we enjoyed our trip and decided we will visit again .", "storylet_id": "209754"}], [{"original_text": "There was a man playing drums on the boardwalk.", "album_id": "155832", "photo_flickr_id": "6243409", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41951", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a man playing drums on the boardwalk .", "storylet_id": "209755"}], [{"original_text": "The boardwalk was near the lake.", "album_id": "155832", "photo_flickr_id": "6243513", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41951", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boardwalk was near the lake .", "storylet_id": "209756"}], [{"original_text": "Several birds were preying near the lake.", "album_id": "155832", "photo_flickr_id": "6243555", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41951", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "several birds were preying near the lake .", "storylet_id": "209757"}], [{"original_text": "I saw this very interesting bird with a long beak.", "album_id": "155832", "photo_flickr_id": "6243636", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41951", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i saw this very interesting bird with a long beak .", "storylet_id": "209758"}], [{"original_text": "I decided to head back to the beach to do my research.", "album_id": "155832", "photo_flickr_id": "6243749", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "41951", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to head back to the beach to do my research .", "storylet_id": "209759"}], [{"original_text": "Our beach vacation is at this beautiful waterfront resort.", "album_id": "155832", "photo_flickr_id": "6243533", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41952", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our beach vacation is at this beautiful waterfront resort .", "storylet_id": "209760"}], [{"original_text": "We took walks on the sandy cliffs of the beach.", "album_id": "155832", "photo_flickr_id": "6244005", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41952", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took walks on the sandy cliffs of the beach .", "storylet_id": "209761"}], [{"original_text": "We really enjoyed the outdoor mall with open-air restaurant seating and live music.", "album_id": "155832", "photo_flickr_id": "6243409", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41952", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we really enjoyed the outdoor mall with open-air restaurant seating and live music .", "storylet_id": "209762"}], [{"original_text": "It was fun to have a live acoustic guitar player inside the restaurant to entertain us while we ate.", "album_id": "155832", "photo_flickr_id": "6243976", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41952", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was fun to have a live acoustic guitar player inside the restaurant to entertain us while we ate .", "storylet_id": "209763"}], [{"original_text": "It was a beautiful view at the sea wall.", "album_id": "155832", "photo_flickr_id": "6244025", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "41952", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a beautiful view at the sea wall .", "storylet_id": "209764"}], [{"original_text": "This is a picture of an ocean.", "album_id": "155832", "photo_flickr_id": "6243533", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41953", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of an ocean .", "storylet_id": "209765"}], [{"original_text": "This is a picture of a cloudy day.", "album_id": "155832", "photo_flickr_id": "6244005", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41953", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a cloudy day .", "storylet_id": "209766"}], [{"original_text": "This is a picture of a sunny day.", "album_id": "155832", "photo_flickr_id": "6243409", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41953", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of a sunny day .", "storylet_id": "209767"}], [{"original_text": "This is a picture of a guitar.", "album_id": "155832", "photo_flickr_id": "6243976", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41953", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of a guitar .", "storylet_id": "209768"}], [{"original_text": "The man is wearing a jacket.", "album_id": "155832", "photo_flickr_id": "6244025", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41953", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the man is wearing a jacket .", "storylet_id": "209769"}], [{"original_text": "We recently vacationed in Mexico.", "album_id": "155832", "photo_flickr_id": "6243533", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "41954", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we recently vacationed in location .", "storylet_id": "209770"}], [{"original_text": "We spent some time walking along an ocean facing cliff.", "album_id": "155832", "photo_flickr_id": "6244005", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "41954", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we spent some time walking along an ocean facing cliff .", "storylet_id": "209771"}], [{"original_text": "We also spent some time in the city. We stopped to watch a trio perform.", "album_id": "155832", "photo_flickr_id": "6243409", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "41954", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also spent some time in the city . we stopped to watch a trio perform .", "storylet_id": "209772"}], [{"original_text": "I was happy to see how much music there was in the city. At one point, during lunch, we were able to listen to an old man with his acoustic guitar!", "album_id": "155832", "photo_flickr_id": "6243976", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "41954", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was happy to see how much music there was in the city . at one point , during lunch , we were able to listen to an old man with his acoustic guitar !", "storylet_id": "209773"}], [{"original_text": "Moved by the music, my boyfriend wanted to visit the cliffs once more to witness nature's music, the sounds of the ocean crashing upon the shore.", "album_id": "155832", "photo_flickr_id": "6244025", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "41954", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "moved by the music , my boyfriend wanted to visit the cliffs once more to witness nature 's music , the sounds of the ocean crashing upon the shore .", "storylet_id": "209774"}], [{"original_text": "We first went at the shores to get a closer look at the incredible view of the city.", "album_id": "439641", "photo_flickr_id": "18627975", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "41955", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we first went at the shores to get a closer look at the incredible view of the city .", "storylet_id": "209775"}], [{"original_text": "We can see the apartment we rented for the week. It has a great view.", "album_id": "439641", "photo_flickr_id": "18628090", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "41955", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we can see the apartment we rented for the week . it has a great view .", "storylet_id": "209776"}], [{"original_text": "I took this pictures of the mallards. They enjoying the light breeze of the afternoon.", "album_id": "439641", "photo_flickr_id": "18628291", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "41955", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took this pictures of the mallards . they enjoying the light breeze of the afternoon .", "storylet_id": "209777"}], [{"original_text": "I asked the local about this log, apparently it came from a old crusade boat that sinked here.", "album_id": "439641", "photo_flickr_id": "18628696", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "41955", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i asked the local about this log , apparently it came from a old crusade boat that sinked here .", "storylet_id": "209778"}], [{"original_text": "this is where we sat and admired the vast Mediterranean sea.", "album_id": "439641", "photo_flickr_id": "18629301", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "41955", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is where we sat and admired the vast location sea .", "storylet_id": "209779"}], [{"original_text": "An overstressed person decided to head to the water to quiet their mind.", "album_id": "439641", "photo_flickr_id": "18627975", "setting": "first-2-pick-and-tell", "worker_id": "B4CPFF7YU4XID1U", "story_id": "41956", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an overstressed person decided to head to the water to quiet their mind .", "storylet_id": "209780"}], [{"original_text": "As they strolled along the sandy beach, they stumbled across this family of geese. ", "album_id": "439641", "photo_flickr_id": "18628291", "setting": "first-2-pick-and-tell", "worker_id": "B4CPFF7YU4XID1U", "story_id": "41956", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as they strolled along the sandy beach , they stumbled across this family of geese .", "storylet_id": "209781"}], [{"original_text": "After being chased away by the hissing geese for getting too close, they moved away from the beach and found an array of colorful and fragrant flowers.", "album_id": "439641", "photo_flickr_id": "18628508", "setting": "first-2-pick-and-tell", "worker_id": "B4CPFF7YU4XID1U", "story_id": "41956", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after being chased away by the hissing geese for getting too close , they moved away from the beach and found an array of colorful and fragrant flowers .", "storylet_id": "209782"}], [{"original_text": "They also found a few cool weathervanes to admire. This fish was one of their favorites.", "album_id": "439641", "photo_flickr_id": "18628791", "setting": "first-2-pick-and-tell", "worker_id": "B4CPFF7YU4XID1U", "story_id": "41956", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also found a few cool weathervanes to admire . this fish was one of their favorites .", "storylet_id": "209783"}], [{"original_text": "Before leaving they found this inspirational quote that put things in perspective.", "album_id": "439641", "photo_flickr_id": "18628572", "setting": "first-2-pick-and-tell", "worker_id": "B4CPFF7YU4XID1U", "story_id": "41956", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before leaving they found this inspirational quote that put things in perspective .", "storylet_id": "209784"}], [{"original_text": "I decided to quit my job and move to an island, for a big change of pace.", "album_id": "439641", "photo_flickr_id": "18627975", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "41957", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to quit my job and move to an island , for a big change of pace .", "storylet_id": "209785"}], [{"original_text": "The island was almost deserted. The geese were my only friends.", "album_id": "439641", "photo_flickr_id": "18628291", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "41957", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the island was almost deserted . the geese were my only friends .", "storylet_id": "209786"}], [{"original_text": "In solitude, I had time to contemplate the small things in life.", "album_id": "439641", "photo_flickr_id": "18628508", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "41957", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in solitude , i had time to contemplate the small things in life .", "storylet_id": "209787"}], [{"original_text": "I thought a lot about myself, and the direction in which I had been headed, and where I wanted to go now.", "album_id": "439641", "photo_flickr_id": "18628791", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "41957", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i thought a lot about myself , and the direction in which i had been headed , and where i wanted to go now .", "storylet_id": "209788"}], [{"original_text": "In unlikely places, I found words of wisdom, and I continued on my journey. ", "album_id": "439641", "photo_flickr_id": "18628572", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "41957", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in unlikely places , i found words of wisdom , and i continued on my journey .", "storylet_id": "209789"}], [{"original_text": "The ocean created a beautiful view from the coast.", "album_id": "439641", "photo_flickr_id": "18627975", "setting": "last-3-pick-old-and-tell", "worker_id": "Q6C6W0X7QIZGVW5", "story_id": "41958", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ocean created a beautiful view from the coast .", "storylet_id": "209790"}], [{"original_text": "There were plenty of animals around.", "album_id": "439641", "photo_flickr_id": "18628291", "setting": "last-3-pick-old-and-tell", "worker_id": "Q6C6W0X7QIZGVW5", "story_id": "41958", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were plenty of animals around .", "storylet_id": "209791"}], [{"original_text": "There was also many different flowers.", "album_id": "439641", "photo_flickr_id": "18628508", "setting": "last-3-pick-old-and-tell", "worker_id": "Q6C6W0X7QIZGVW5", "story_id": "41958", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was also many different flowers .", "storylet_id": "209792"}], [{"original_text": "The signs were very unique.", "album_id": "439641", "photo_flickr_id": "18628791", "setting": "last-3-pick-old-and-tell", "worker_id": "Q6C6W0X7QIZGVW5", "story_id": "41958", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the signs were very unique .", "storylet_id": "209793"}], [{"original_text": "We made sure to read every sign.", "album_id": "439641", "photo_flickr_id": "18628572", "setting": "last-3-pick-old-and-tell", "worker_id": "Q6C6W0X7QIZGVW5", "story_id": "41958", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we made sure to read every sign .", "storylet_id": "209794"}], [{"original_text": "The family took a vacation at the beach.", "album_id": "439641", "photo_flickr_id": "18627975", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "41959", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family took a vacation at the beach .", "storylet_id": "209795"}], [{"original_text": "There were tall buildings by the water.", "album_id": "439641", "photo_flickr_id": "18628090", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "41959", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were tall buildings by the water .", "storylet_id": "209796"}], [{"original_text": "There were ducks sitting in the sand.", "album_id": "439641", "photo_flickr_id": "18628291", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "41959", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were ducks sitting in the sand .", "storylet_id": "209797"}], [{"original_text": "A long branch was sticking out from the rocks.", "album_id": "439641", "photo_flickr_id": "18628696", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "41959", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a long branch was sticking out from the rocks .", "storylet_id": "209798"}], [{"original_text": "The landscape was beautiful and there were lots of trees.", "album_id": "439641", "photo_flickr_id": "18629301", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "41959", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the landscape was beautiful and there were lots of trees .", "storylet_id": "209799"}], [{"original_text": "My wife and I spent 4th of July at the beach.", "album_id": "569682", "photo_flickr_id": "24940813", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41960", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my wife and i spent 4th of july at the beach .", "storylet_id": "209800"}], [{"original_text": "My brother brought over some super hot sauce.", "album_id": "569682", "photo_flickr_id": "24941342", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41960", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my brother brought over some super hot sauce .", "storylet_id": "209801"}], [{"original_text": "After dinner we went down to the beach.", "album_id": "569682", "photo_flickr_id": "24942414", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41960", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after dinner we went down to the beach .", "storylet_id": "209802"}], [{"original_text": "We thought lighting fireworks by the water was the safest way to do it.", "album_id": "569682", "photo_flickr_id": "24943644", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41960", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we thought lighting fireworks by the water was the safest way to do it .", "storylet_id": "209803"}], [{"original_text": "It made for some interesting pictures.", "album_id": "569682", "photo_flickr_id": "24943165", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41960", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it made for some interesting pictures .", "storylet_id": "209804"}], [{"original_text": "My friends and I went to the beach for a day of fun.", "album_id": "569682", "photo_flickr_id": "24944128", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "41961", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i went to the beach for a day of fun .", "storylet_id": "209805"}], [{"original_text": "My dog wanted to explore and greet everyone!", "album_id": "569682", "photo_flickr_id": "24945465", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "41961", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my dog wanted to explore and greet everyone !", "storylet_id": "209806"}], [{"original_text": "We did some playing around as the day wore on.", "album_id": "569682", "photo_flickr_id": "24944956", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "41961", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we did some playing around as the day wore on .", "storylet_id": "209807"}], [{"original_text": "Someone brought sparklers, and we drew pictures in the air. ", "album_id": "569682", "photo_flickr_id": "24943644", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "41961", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someone brought sparklers , and we drew pictures in the air .", "storylet_id": "209808"}], [{"original_text": "Once it was dark we all headed home. It was a nice day.", "album_id": "569682", "photo_flickr_id": "24945666", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "41961", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once it was dark we all headed home . it was a nice day .", "storylet_id": "209809"}], [{"original_text": "My boyfriend and I had a get together with some friends last weekend. ", "album_id": "569682", "photo_flickr_id": "24940813", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41962", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my boyfriend and i had a get together with some friends last weekend .", "storylet_id": "209810"}], [{"original_text": "My best friend and her boyfriend came to the restaurant. ", "album_id": "569682", "photo_flickr_id": "24941342", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41962", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my best friend and her boyfriend came to the restaurant .", "storylet_id": "209811"}], [{"original_text": "It was near a beach, so after we finished eating we took a stroll. ", "album_id": "569682", "photo_flickr_id": "24942414", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41962", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was near a beach , so after we finished eating we took a stroll .", "storylet_id": "209812"}], [{"original_text": "Someone brought some fireworks. ", "album_id": "569682", "photo_flickr_id": "24943644", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41962", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someone brought some fireworks .", "storylet_id": "209813"}], [{"original_text": "We shot them off til the restaurant staff told us to stop. ", "album_id": "569682", "photo_flickr_id": "24943165", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41962", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we shot them off til the restaurant staff told us to stop .", "storylet_id": "209814"}], [{"original_text": "The happy couple were throwing an Independence day party. ", "album_id": "569682", "photo_flickr_id": "24940813", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "41963", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the happy couple were throwing an independence day party .", "storylet_id": "209815"}], [{"original_text": "Bloody Marys were the drink of choice ", "album_id": "569682", "photo_flickr_id": "24941342", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "41963", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "bloody marys were the drink of choice", "storylet_id": "209816"}], [{"original_text": "The public beach as a bit of a walk.", "album_id": "569682", "photo_flickr_id": "24942414", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "41963", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the public beach as a bit of a walk .", "storylet_id": "209817"}], [{"original_text": "This year no one lost a hand or an eye. Yay! ", "album_id": "569682", "photo_flickr_id": "24943644", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "41963", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this year no one lost a hand or an eye . yay !", "storylet_id": "209818"}], [{"original_text": "A carefully planned simultaneous launch ended the evening.", "album_id": "569682", "photo_flickr_id": "24943165", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "41963", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a carefully planned simultaneous launch ended the evening .", "storylet_id": "209819"}], [{"original_text": "The party was going well", "album_id": "569682", "photo_flickr_id": "24940813", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41964", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party was going well", "storylet_id": "209820"}], [{"original_text": "and there was even hot sauce.", "album_id": "569682", "photo_flickr_id": "24941342", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41964", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and there was even hot sauce .", "storylet_id": "209821"}], [{"original_text": "There was running on the sand", "album_id": "569682", "photo_flickr_id": "24942414", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41964", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was running on the sand", "storylet_id": "209822"}], [{"original_text": "and fireworks being lit", "album_id": "569682", "photo_flickr_id": "24943644", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41964", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and fireworks being lit", "storylet_id": "209823"}], [{"original_text": "that were very pretty.", "album_id": "569682", "photo_flickr_id": "24943165", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41964", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that were very pretty .", "storylet_id": "209824"}], [{"original_text": "We went to the beach!", "album_id": "569733", "photo_flickr_id": "24937106", "setting": "first-2-pick-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41965", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the beach !", "storylet_id": "209825"}], [{"original_text": "We caught some crabs!", "album_id": "569733", "photo_flickr_id": "24936153", "setting": "first-2-pick-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41965", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we caught some crabs !", "storylet_id": "209826"}], [{"original_text": "All of the family took part.", "album_id": "569733", "photo_flickr_id": "24940973", "setting": "first-2-pick-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41965", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of the family took part .", "storylet_id": "209827"}], [{"original_text": "We even flew some kites!", "album_id": "569733", "photo_flickr_id": "24946854", "setting": "first-2-pick-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41965", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even flew some kites !", "storylet_id": "209828"}], [{"original_text": "THe kids also played in the sand", "album_id": "569733", "photo_flickr_id": "24948138", "setting": "first-2-pick-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "41965", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids also played in the sand", "storylet_id": "209829"}], [{"original_text": "My family is a bit strange in some ways but one thing we all like to do if fish and also catch crabs because we like to eat them.", "album_id": "569733", "photo_flickr_id": "24942110", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "41966", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family is a bit strange in some ways but one thing we all like to do if fish and also catch crabs because we like to eat them .", "storylet_id": "209830"}], [{"original_text": "There are lots of different ways to catch crab and normally I would not do it this primitive way but it's all we had and I did not have the squid for bait I usually use.", "album_id": "569733", "photo_flickr_id": "24941666", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "41966", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are lots of different ways to catch crab and normally i would not do it this primitive way but it 's all we had and i did not have the squid for bait i usually use .", "storylet_id": "209831"}], [{"original_text": "The primitive method does and did work and as you can see we caught some crabs to eat.", "album_id": "569733", "photo_flickr_id": "24943848", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "41966", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the primitive method does and did work and as you can see we caught some crabs to eat .", "storylet_id": "209832"}], [{"original_text": "Here is a better photograph of the bucket full of crabs and another creature or two if I remember right.", "album_id": "569733", "photo_flickr_id": "24943156", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "41966", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is a better photograph of the bucket full of crabs and another creature or two if i remember right .", "storylet_id": "209833"}], [{"original_text": "We all got tired and people started falling to sleep so we headed back home knowing that we would be back another day to catch more crab and next time we would be ready.", "album_id": "569733", "photo_flickr_id": "24947632", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "41966", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all got tired and people started falling to sleep so we headed back home knowing that we would be back another day to catch more crab and next time we would be ready .", "storylet_id": "209834"}], [{"original_text": "Everyone is gathered at the water to go crab fishing.", "album_id": "569733", "photo_flickr_id": "24942110", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41967", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone is gathered at the water to go crab fishing .", "storylet_id": "209835"}], [{"original_text": "This man thinks he has a great line for catching crabs.", "album_id": "569733", "photo_flickr_id": "24941666", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41967", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this man thinks he has a great line for catching crabs .", "storylet_id": "209836"}], [{"original_text": "Looks like someone got one.", "album_id": "569733", "photo_flickr_id": "24943848", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41967", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looks like someone got one .", "storylet_id": "209837"}], [{"original_text": "Once you get them you have to put them somewhere they can't get out.", "album_id": "569733", "photo_flickr_id": "24943156", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41967", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once you get them you have to put them somewhere they ca n't get out .", "storylet_id": "209838"}], [{"original_text": "She doesn't want to take any pictures right now. ", "album_id": "569733", "photo_flickr_id": "24947632", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "41967", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she does n't want to take any pictures right now .", "storylet_id": "209839"}], [{"original_text": "We started by making a sand castle at the beach.", "album_id": "569733", "photo_flickr_id": "24937106", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41968", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started by making a sand castle at the beach .", "storylet_id": "209840"}], [{"original_text": "We got buckets and got to work.", "album_id": "569733", "photo_flickr_id": "24936153", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41968", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got buckets and got to work .", "storylet_id": "209841"}], [{"original_text": "We then did a little fishing at the docks.", "album_id": "569733", "photo_flickr_id": "24940973", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41968", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we then did a little fishing at the docks .", "storylet_id": "209842"}], [{"original_text": "Some of us flew kites to pass the time.", "album_id": "569733", "photo_flickr_id": "24946854", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41968", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of us flew kites to pass the time .", "storylet_id": "209843"}], [{"original_text": "As always, The kids did a good job of keeping themselves busy.", "album_id": "569733", "photo_flickr_id": "24948138", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41968", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as always , the kids did a good job of keeping themselves busy .", "storylet_id": "209844"}], [{"original_text": "we had such a great time at the beach", "album_id": "569733", "photo_flickr_id": "24937106", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41969", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had such a great time at the beach", "storylet_id": "209845"}], [{"original_text": "we even caught a crab", "album_id": "569733", "photo_flickr_id": "24936153", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41969", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we even caught a crab", "storylet_id": "209846"}], [{"original_text": "the kids went fishing", "album_id": "569733", "photo_flickr_id": "24940973", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41969", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids went fishing", "storylet_id": "209847"}], [{"original_text": "and we flew a kite", "album_id": "569733", "photo_flickr_id": "24946854", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41969", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and we flew a kite", "storylet_id": "209848"}], [{"original_text": "we even buried our daughter in the sand", "album_id": "569733", "photo_flickr_id": "24948138", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "41969", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even buried our daughter in the sand", "storylet_id": "209849"}], [{"original_text": "We stopped here while on vacation.", "album_id": "72157600179222297", "photo_flickr_id": "24976079", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41970", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we stopped here while on vacation .", "storylet_id": "209850"}], [{"original_text": "The water was beautiful.", "album_id": "72157600179222297", "photo_flickr_id": "14032993", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41970", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water was beautiful .", "storylet_id": "209851"}], [{"original_text": "The beach was rocks, not sand.", "album_id": "72157600179222297", "photo_flickr_id": "14032736", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41970", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beach was rocks , not sand .", "storylet_id": "209852"}], [{"original_text": "The birds there were huge.", "album_id": "72157600179222297", "photo_flickr_id": "24975827", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41970", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the birds there were huge .", "storylet_id": "209853"}], [{"original_text": "My wife found an old fireplace and thought it was a shrine.", "album_id": "72157600179222297", "photo_flickr_id": "14033148", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41970", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my wife found an old fireplace and thought it was a shrine .", "storylet_id": "209854"}], [{"original_text": "I love our vacation photos ", "album_id": "72157600179222297", "photo_flickr_id": "14032817", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "41971", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love our vacation photos", "storylet_id": "209855"}], [{"original_text": "The ocean and views were amazing ", "album_id": "72157600179222297", "photo_flickr_id": "24972514", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "41971", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ocean and views were amazing", "storylet_id": "209856"}], [{"original_text": "Then we entered the peninsula to see the bird sanctuary.", "album_id": "72157600179222297", "photo_flickr_id": "24976079", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "41971", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we entered the peninsula to see the bird sanctuary .", "storylet_id": "209857"}], [{"original_text": "The birds were nestling on the rocks as always ", "album_id": "72157600179222297", "photo_flickr_id": "24976398", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "41971", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the birds were nestling on the rocks as always", "storylet_id": "209858"}], [{"original_text": "I tried to be funny getting my photo taken here", "album_id": "72157600179222297", "photo_flickr_id": "14033287", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "41971", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i tried to be funny getting my photo taken here", "storylet_id": "209859"}], [{"original_text": "Mary visited the Peninsula Seal Colony on a quest to see seals.", "album_id": "72157600179222297", "photo_flickr_id": "24976079", "setting": "last-3-pick-old-and-tell", "worker_id": "ISNKJ6K4E2255AT", "story_id": "41972", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] visited the location location location on a quest to see seals .", "storylet_id": "209860"}], [{"original_text": "She looked for seals in the ocean waters.", "album_id": "72157600179222297", "photo_flickr_id": "14032993", "setting": "last-3-pick-old-and-tell", "worker_id": "ISNKJ6K4E2255AT", "story_id": "41972", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she looked for seals in the ocean waters .", "storylet_id": "209861"}], [{"original_text": "She looked for seals on the pebble covered beach.", "album_id": "72157600179222297", "photo_flickr_id": "14032736", "setting": "last-3-pick-old-and-tell", "worker_id": "ISNKJ6K4E2255AT", "story_id": "41972", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she looked for seals on the pebble covered beach .", "storylet_id": "209862"}], [{"original_text": "She pulled out her binoculars and looked for seals resting on rocks half submerged in the water.", "album_id": "72157600179222297", "photo_flickr_id": "24975827", "setting": "last-3-pick-old-and-tell", "worker_id": "ISNKJ6K4E2255AT", "story_id": "41972", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she pulled out her binoculars and looked for seals resting on rocks half submerged in the water .", "storylet_id": "209863"}], [{"original_text": "Mary then realized that her real quest was to find herself and finished the day by meditating.", "album_id": "72157600179222297", "photo_flickr_id": "14033148", "setting": "last-3-pick-old-and-tell", "worker_id": "ISNKJ6K4E2255AT", "story_id": "41972", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] then realized that her real quest was to find herself and finished the day by meditating .", "storylet_id": "209864"}], [{"original_text": "Ah the seal colony. This is where they said we could find The Oracle.", "album_id": "72157600179222297", "photo_flickr_id": "24976079", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "41973", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "ah the seal colony . this is where they said we could find the oracle .", "storylet_id": "209865"}], [{"original_text": "Well, I'm not seeing any seals here. Are you sure we're in the right place? ", "album_id": "72157600179222297", "photo_flickr_id": "14032993", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "41973", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "well , i 'm not seeing any seals here . are you sure we 're in the right place ?", "storylet_id": "209866"}], [{"original_text": "This beach is murder on my ankles. No wonder there aren't any seals here, it's all stony.", "album_id": "72157600179222297", "photo_flickr_id": "14032736", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "41973", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this beach is murder on my ankles . no wonder there are n't any seals here , it 's all stony .", "storylet_id": "209867"}], [{"original_text": "\"I think they're looking for the Oracle\". \"Hey, she's over there\". What helpful birds!", "album_id": "72157600179222297", "photo_flickr_id": "24975827", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "41973", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "`` i think they 're looking for the oracle '' . `` hey , she 's over there '' . what helpful birds !", "storylet_id": "209868"}], [{"original_text": "At last, there she is. Excuse me, we've been looking for you Miss Oracle. Can you help us find The Mysterious Cave? I think she's in a trance. ", "album_id": "72157600179222297", "photo_flickr_id": "14033148", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "41973", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at last , there she is . excuse me , we 've been looking for you miss oracle . can you help us find the mysterious cave ? i think she 's in a trance .", "storylet_id": "209869"}], [{"original_text": "The Peninsula Seal Colony is a wonderful place to visit.", "album_id": "72157600179222297", "photo_flickr_id": "24976079", "setting": "last-3-pick-old-and-tell", "worker_id": "949ZD6150ZBF4XZ", "story_id": "41974", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization organization organization is a wonderful place to visit .", "storylet_id": "209870"}], [{"original_text": "Seals can be seen in the choppy waters.", "album_id": "72157600179222297", "photo_flickr_id": "14032993", "setting": "last-3-pick-old-and-tell", "worker_id": "949ZD6150ZBF4XZ", "story_id": "41974", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "seals can be seen in the choppy waters .", "storylet_id": "209871"}], [{"original_text": "Small rocks of various sizes cover the peninsula.", "album_id": "72157600179222297", "photo_flickr_id": "14032736", "setting": "last-3-pick-old-and-tell", "worker_id": "949ZD6150ZBF4XZ", "story_id": "41974", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "small rocks of various sizes cover the peninsula .", "storylet_id": "209872"}], [{"original_text": "Larger rocks provide a place for seals and birds to rest.", "album_id": "72157600179222297", "photo_flickr_id": "24975827", "setting": "last-3-pick-old-and-tell", "worker_id": "949ZD6150ZBF4XZ", "story_id": "41974", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "larger rocks provide a place for seals and birds to rest .", "storylet_id": "209873"}], [{"original_text": "A stone monument there makes a great place to take pictures!", "album_id": "72157600179222297", "photo_flickr_id": "14033148", "setting": "last-3-pick-old-and-tell", "worker_id": "949ZD6150ZBF4XZ", "story_id": "41974", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a stone monument there makes a great place to take pictures !", "storylet_id": "209874"}], [{"original_text": "My first plane ride and I had to pick a small plane.", "album_id": "72157600667854365", "photo_flickr_id": "730289506", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "41975", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my first plane ride and i had to pick a small plane .", "storylet_id": "209875"}], [{"original_text": "The pilot tells me it is very safe but I'm not convinced.", "album_id": "72157600667854365", "photo_flickr_id": "730289066", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "41975", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pilot tells me it is very safe but i 'm not convinced .", "storylet_id": "209876"}], [{"original_text": "We are ready for take off and all I can do is shut my eyes.", "album_id": "72157600667854365", "photo_flickr_id": "730290000", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "41975", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are ready for take off and all i can do is shut my eyes .", "storylet_id": "209877"}], [{"original_text": "Kevin finally got me to open my eyes and the view was amazing.", "album_id": "72157600667854365", "photo_flickr_id": "730290662", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "41975", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] finally got me to open my eyes and the view was amazing .", "storylet_id": "209878"}], [{"original_text": "The flight turned out fine but I was so happy to get my feet back on solid ground.", "album_id": "72157600667854365", "photo_flickr_id": "729427443", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "41975", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the flight turned out fine but i was so happy to get my feet back on solid ground .", "storylet_id": "209879"}], [{"original_text": "My wife wanted something special for vacation.", "album_id": "72157600667854365", "photo_flickr_id": "730288016", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41976", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my wife wanted something special for vacation .", "storylet_id": "209880"}], [{"original_text": "After she got off work, I picked her up and took her to the airport.", "album_id": "72157600667854365", "photo_flickr_id": "729427443", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41976", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after she got off work , i picked her up and took her to the airport .", "storylet_id": "209881"}], [{"original_text": "I had chartered a small airplane.", "album_id": "72157600667854365", "photo_flickr_id": "729428395", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41976", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had chartered a small airplane .", "storylet_id": "209882"}], [{"original_text": "This was our destination.", "album_id": "72157600667854365", "photo_flickr_id": "729422809", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41976", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was our destination .", "storylet_id": "209883"}], [{"original_text": "Once there we rented a boat and spent the weekend on the water.", "album_id": "72157600667854365", "photo_flickr_id": "730286462", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "41976", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once there we rented a boat and spent the weekend on the water .", "storylet_id": "209884"}], [{"original_text": "Cindy was so excited to get her first private airplane ride.", "album_id": "72157600667854365", "photo_flickr_id": "730289506", "setting": "last-3-pick-old-and-tell", "worker_id": "UEHB64OWOR7YR1S", "story_id": "41977", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was so excited to get her first private airplane ride .", "storylet_id": "209885"}], [{"original_text": "The pilot looked ready for takeoff.", "album_id": "72157600667854365", "photo_flickr_id": "730289066", "setting": "last-3-pick-old-and-tell", "worker_id": "UEHB64OWOR7YR1S", "story_id": "41977", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pilot looked ready for takeoff .", "storylet_id": "209886"}], [{"original_text": "Once we were in the air, the view of the landscape was breathtaking.", "album_id": "72157600667854365", "photo_flickr_id": "730290000", "setting": "last-3-pick-old-and-tell", "worker_id": "UEHB64OWOR7YR1S", "story_id": "41977", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once we were in the air , the view of the landscape was breathtaking .", "storylet_id": "209887"}], [{"original_text": "We flew over the coastal waters on final approach.", "album_id": "72157600667854365", "photo_flickr_id": "730290662", "setting": "last-3-pick-old-and-tell", "worker_id": "UEHB64OWOR7YR1S", "story_id": "41977", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we flew over the coastal waters on final approach .", "storylet_id": "209888"}], [{"original_text": "We all gathered around for a picture after the plane ride. ", "album_id": "72157600667854365", "photo_flickr_id": "729427443", "setting": "last-3-pick-old-and-tell", "worker_id": "UEHB64OWOR7YR1S", "story_id": "41977", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all gathered around for a picture after the plane ride .", "storylet_id": "209889"}], [{"original_text": "She smiled gamely, trying not to show that she was nervous about flying in the small plane with a new pilot.", "album_id": "72157600667854365", "photo_flickr_id": "730289506", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "41978", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she smiled gamely , trying not to show that she was nervous about flying in the small plane with a new pilot .", "storylet_id": "209890"}], [{"original_text": "The pilot grinned. He wasn't the least bit worried about passing his test. He assured everyone that it would be great fun.", "album_id": "72157600667854365", "photo_flickr_id": "730289066", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "41978", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pilot grinned . he was n't the least bit worried about passing his test . he assured everyone that it would be great fun .", "storylet_id": "209891"}], [{"original_text": "The flight instructor gave small helpful hints, but mostly let his pupil figure things out on his own.", "album_id": "72157600667854365", "photo_flickr_id": "730290000", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "41978", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the flight instructor gave small helpful hints , but mostly let his pupil figure things out on his own .", "storylet_id": "209892"}], [{"original_text": "The plane glided smoothly over the lake. Everything was going as planned.", "album_id": "72157600667854365", "photo_flickr_id": "730290662", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "41978", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the plane glided smoothly over the lake . everything was going as planned .", "storylet_id": "209893"}], [{"original_text": "The group smiled for the camera, and readied themselves for their own test flight.", "album_id": "72157600667854365", "photo_flickr_id": "729427443", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "41978", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the group smiled for the camera , and readied themselves for their own test flight .", "storylet_id": "209894"}], [{"original_text": "I arrived at the airport and I am feeling so excited!", "album_id": "72157600667854365", "photo_flickr_id": "730288016", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "41979", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i arrived at the airport and i am feeling so excited !", "storylet_id": "209895"}], [{"original_text": "Here we are with the pilot before we get in the plane for our trip.", "album_id": "72157600667854365", "photo_flickr_id": "729427443", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "41979", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we are with the pilot before we get in the plane for our trip .", "storylet_id": "209896"}], [{"original_text": "Looking out towards our destination as we are flying.", "album_id": "72157600667854365", "photo_flickr_id": "729428395", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "41979", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looking out towards our destination as we are flying .", "storylet_id": "209897"}], [{"original_text": "After arriving at the lake we look around at the scene.", "album_id": "72157600667854365", "photo_flickr_id": "729422809", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "41979", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after arriving at the lake we look around at the scene .", "storylet_id": "209898"}], [{"original_text": "My new husband and I are relaxing on the boat.", "album_id": "72157600667854365", "photo_flickr_id": "730286462", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "41979", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my new husband and i are relaxing on the boat .", "storylet_id": "209899"}], [{"original_text": "My friend and I rented a boat for the weekend.", "album_id": "72157623187187220", "photo_flickr_id": "4265839826", "setting": "first-2-pick-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "41980", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend and i rented a boat for the weekend .", "storylet_id": "209900"}], [{"original_text": "we looked out on the lake and saw how beautiful and calm it was as we went out. ", "album_id": "72157623187187220", "photo_flickr_id": "4265840524", "setting": "first-2-pick-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "41980", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we looked out on the lake and saw how beautiful and calm it was as we went out .", "storylet_id": "209901"}], [{"original_text": "my friend wanted to get a good photo of himself on the dock before it got dark.", "album_id": "72157623187187220", "photo_flickr_id": "4265841774", "setting": "first-2-pick-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "41980", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend wanted to get a good photo of himself on the dock before it got dark .", "storylet_id": "209902"}], [{"original_text": "The sunset made for beautiful oranges and it was a lovely day.", "album_id": "72157623187187220", "photo_flickr_id": "4265097987", "setting": "first-2-pick-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "41980", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sunset made for beautiful oranges and it was a lovely day .", "storylet_id": "209903"}], [{"original_text": "As the sun sunk lower in the sky, I reflected on how much fun it was being with my friend that day.", "album_id": "72157623187187220", "photo_flickr_id": "4265098257", "setting": "first-2-pick-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "41980", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the sun sunk lower in the sky , i reflected on how much fun it was being with my friend that day .", "storylet_id": "209904"}], [{"original_text": "We enjoyed a summer vacation where we traveled to a Spanish Island.", "album_id": "72157623187187220", "photo_flickr_id": "4265837922", "setting": "first-2-pick-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "41981", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we enjoyed a summer vacation where we traveled to a spanish island .", "storylet_id": "209905"}], [{"original_text": "On the island, we rode bikes to sight see.", "album_id": "72157623187187220", "photo_flickr_id": "4265091131", "setting": "first-2-pick-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "41981", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on the island , we rode bikes to sight see .", "storylet_id": "209906"}], [{"original_text": "We came across this fisherman who was getting ready to embark.", "album_id": "72157623187187220", "photo_flickr_id": "4265839826", "setting": "first-2-pick-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "41981", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we came across this fisherman who was getting ready to embark .", "storylet_id": "209907"}], [{"original_text": "The beautiful, local beaches stretched for miles.", "album_id": "72157623187187220", "photo_flickr_id": "4265095743", "setting": "first-2-pick-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "41981", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beautiful , local beaches stretched for miles .", "storylet_id": "209908"}], [{"original_text": "Our favorite part of the trip was watching the sun set on the water every evening.", "album_id": "72157623187187220", "photo_flickr_id": "4265098257", "setting": "first-2-pick-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "41981", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our favorite part of the trip was watching the sun set on the water every evening .", "storylet_id": "209909"}], [{"original_text": "This fisherman is in his boat.", "album_id": "72157623187187220", "photo_flickr_id": "4265839826", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41982", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this fisherman is in his boat .", "storylet_id": "209910"}], [{"original_text": "He loves being at sea.", "album_id": "72157623187187220", "photo_flickr_id": "4265840524", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41982", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he loves being at sea .", "storylet_id": "209911"}], [{"original_text": "The sea is where he makes his living.", "album_id": "72157623187187220", "photo_flickr_id": "4265841774", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41982", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sea is where he makes his living .", "storylet_id": "209912"}], [{"original_text": "Watching the sunset was calming for him.", "album_id": "72157623187187220", "photo_flickr_id": "4265097987", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41982", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "watching the sunset was calming for him .", "storylet_id": "209913"}], [{"original_text": "He knew he would be back here again tomorrow.", "album_id": "72157623187187220", "photo_flickr_id": "4265098257", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41982", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he knew he would be back here again tomorrow .", "storylet_id": "209914"}], [{"original_text": "We are about to take out the boat and go fishing.", "album_id": "72157623187187220", "photo_flickr_id": "4265839826", "setting": "last-3-pick-old-and-tell", "worker_id": "3CEO8JTW7C2LG8B", "story_id": "41983", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are about to take out the boat and go fishing .", "storylet_id": "209915"}], [{"original_text": "It is a beautiful day to go fishing.", "album_id": "72157623187187220", "photo_flickr_id": "4265840524", "setting": "last-3-pick-old-and-tell", "worker_id": "3CEO8JTW7C2LG8B", "story_id": "41983", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is a beautiful day to go fishing .", "storylet_id": "209916"}], [{"original_text": "I just got back from fishing, we caught a lot of fish today.", "album_id": "72157623187187220", "photo_flickr_id": "4265841774", "setting": "last-3-pick-old-and-tell", "worker_id": "3CEO8JTW7C2LG8B", "story_id": "41983", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i just got back from fishing , we caught a lot of fish today .", "storylet_id": "209917"}], [{"original_text": "We just finished eating fish that we had caught today.", "album_id": "72157623187187220", "photo_flickr_id": "4265097987", "setting": "last-3-pick-old-and-tell", "worker_id": "3CEO8JTW7C2LG8B", "story_id": "41983", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we just finished eating fish that we had caught today .", "storylet_id": "209918"}], [{"original_text": "The sky looks beautiful tonight, we had a great day.", "album_id": "72157623187187220", "photo_flickr_id": "4265098257", "setting": "last-3-pick-old-and-tell", "worker_id": "3CEO8JTW7C2LG8B", "story_id": "41983", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sky looks beautiful tonight , we had a great day .", "storylet_id": "209919"}], [{"original_text": "THE EVENING IN THE WATERS JUST BEGINNING TO SAIL OUTWARD.", "album_id": "72157623187187220", "photo_flickr_id": "4265839826", "setting": "last-3-pick-old-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "41984", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the evening in the waters just beginning to sail outward .", "storylet_id": "209920"}], [{"original_text": "When the water is still it's more relaxing.", "album_id": "72157623187187220", "photo_flickr_id": "4265840524", "setting": "last-3-pick-old-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "41984", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when the water is still it 's more relaxing .", "storylet_id": "209921"}], [{"original_text": "Just sitting on the dock and imagining how great it is.", "album_id": "72157623187187220", "photo_flickr_id": "4265841774", "setting": "last-3-pick-old-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "41984", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "just sitting on the dock and imagining how great it is .", "storylet_id": "209922"}], [{"original_text": "When the sun has set all the way just beyond the horizons it;s like a bold bright light.", "album_id": "72157623187187220", "photo_flickr_id": "4265097987", "setting": "last-3-pick-old-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "41984", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the sun has set all the way just beyond the horizons it ; s like a bold bright light .", "storylet_id": "209923"}], [{"original_text": "A picture perfect as if you can walk on waters.", "album_id": "72157623187187220", "photo_flickr_id": "4265098257", "setting": "last-3-pick-old-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "41984", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a picture perfect as if you can walk on waters .", "storylet_id": "209924"}], [{"original_text": "Our family got together for an amazing vacation to see the ocean.", "album_id": "72157623185538744", "photo_flickr_id": "4265139332", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41985", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family got together for an amazing vacation to see the ocean .", "storylet_id": "209925"}], [{"original_text": "The closer we got to the beach, I could smell the salt water on my taste buds.", "album_id": "72157623185538744", "photo_flickr_id": "4265126544", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41985", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the closer we got to the beach , i could smell the salt water on my taste buds .", "storylet_id": "209926"}], [{"original_text": "I could see the beach getting closer and i became very anxious.", "album_id": "72157623185538744", "photo_flickr_id": "4265117180", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41985", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i could see the beach getting closer and i became very anxious .", "storylet_id": "209927"}], [{"original_text": "The beach extended as far as the eye could see.", "album_id": "72157623185538744", "photo_flickr_id": "4264386679", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41985", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beach extended as far as the eye could see .", "storylet_id": "209928"}], [{"original_text": "When we got closer to our beach spot, I could see surfers out in the water looking for the best wave.", "album_id": "72157623185538744", "photo_flickr_id": "4264384707", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "41985", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we got closer to our beach spot , i could see surfers out in the water looking for the best wave .", "storylet_id": "209929"}], [{"original_text": "We decided to drive to the beach. ", "album_id": "72157623185538744", "photo_flickr_id": "4265139332", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "41986", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to drive to the beach .", "storylet_id": "209930"}], [{"original_text": "From the car we could see hills of green pasture. ", "album_id": "72157623185538744", "photo_flickr_id": "4265142184", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "41986", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from the car we could see hills of green pasture .", "storylet_id": "209931"}], [{"original_text": "Finally we reached a cliff. ", "album_id": "72157623185538744", "photo_flickr_id": "4264373471", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "41986", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally we reached a cliff .", "storylet_id": "209932"}], [{"original_text": "We could see views of the beach on either side.", "album_id": "72157623185538744", "photo_flickr_id": "4265117180", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "41986", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we could see views of the beach on either side .", "storylet_id": "209933"}], [{"original_text": "We decided to walk down to the beach to wade in the water. ", "album_id": "72157623185538744", "photo_flickr_id": "4264386679", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "41986", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to walk down to the beach to wade in the water .", "storylet_id": "209934"}], [{"original_text": "We're heading out on a road trip today! ", "album_id": "72157623185538744", "photo_flickr_id": "4265139332", "setting": "last-3-pick-old-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "41987", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 're heading out on a road trip today !", "storylet_id": "209935"}], [{"original_text": "The scenery was rather dull along the way, but when we get to the beach, it'll be worth the trip through the bland country-side!", "album_id": "72157623185538744", "photo_flickr_id": "4265142184", "setting": "last-3-pick-old-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "41987", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the scenery was rather dull along the way , but when we get to the beach , it 'll be worth the trip through the bland country-side !", "storylet_id": "209936"}], [{"original_text": "I get the jitters just seeing the ocean!", "album_id": "72157623185538744", "photo_flickr_id": "4264373471", "setting": "last-3-pick-old-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "41987", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i get the jitters just seeing the ocean !", "storylet_id": "209937"}], [{"original_text": "Finally we're parked and heading to the beach.", "album_id": "72157623185538744", "photo_flickr_id": "4265117180", "setting": "last-3-pick-old-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "41987", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally we 're parked and heading to the beach .", "storylet_id": "209938"}], [{"original_text": "I didn't believe the tour guide when he said this location would be discrete but boy was he right! Not a soul in sight!", "album_id": "72157623185538744", "photo_flickr_id": "4264386679", "setting": "last-3-pick-old-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "41987", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i did n't believe the tour guide when he said this location would be discrete but boy was he right ! not a soul in sight !", "storylet_id": "209939"}], [{"original_text": "This is a picture of a car interior.", "album_id": "72157623185538744", "photo_flickr_id": "4265139332", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41988", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a car interior .", "storylet_id": "209940"}], [{"original_text": "This is a picture of a beach.", "album_id": "72157623185538744", "photo_flickr_id": "4265126544", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41988", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a beach .", "storylet_id": "209941"}], [{"original_text": "This is a picture of a shore.", "album_id": "72157623185538744", "photo_flickr_id": "4265117180", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41988", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of a shore .", "storylet_id": "209942"}], [{"original_text": "This is a picture of the water.", "album_id": "72157623185538744", "photo_flickr_id": "4264386679", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41988", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of the water .", "storylet_id": "209943"}], [{"original_text": "This is a picture of a blue sky.", "album_id": "72157623185538744", "photo_flickr_id": "4264384707", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "41988", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a blue sky .", "storylet_id": "209944"}], [{"original_text": "We all got together and hit the road.", "album_id": "72157623185538744", "photo_flickr_id": "4265139332", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41989", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all got together and hit the road .", "storylet_id": "209945"}], [{"original_text": "We saw a nice beach and decided to explore it.", "album_id": "72157623185538744", "photo_flickr_id": "4265126544", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41989", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw a nice beach and decided to explore it .", "storylet_id": "209946"}], [{"original_text": "We started walking up from one end.", "album_id": "72157623185538744", "photo_flickr_id": "4265117180", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41989", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we started walking up from one end .", "storylet_id": "209947"}], [{"original_text": "And finished off at the other side.", "album_id": "72157623185538744", "photo_flickr_id": "4264386679", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41989", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and finished off at the other side .", "storylet_id": "209948"}], [{"original_text": "We took one last look and headed back to the car.", "album_id": "72157623185538744", "photo_flickr_id": "4264384707", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "41989", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took one last look and headed back to the car .", "storylet_id": "209949"}], [{"original_text": "This church has old viking statues.", "album_id": "72157600347386579", "photo_flickr_id": "9169879", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41990", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this church has old viking statues .", "storylet_id": "209950"}], [{"original_text": "This coffin was made by vikings 1000 years ago.", "album_id": "72157600347386579", "photo_flickr_id": "9169919", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41990", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this coffin was made by vikings 1000 years ago .", "storylet_id": "209951"}], [{"original_text": "The church still has services today.", "album_id": "72157600347386579", "photo_flickr_id": "9169940", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41990", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the church still has services today .", "storylet_id": "209952"}], [{"original_text": "The old building was around 500 years old. ", "album_id": "72157600347386579", "photo_flickr_id": "9170041", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41990", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the old building was around 500 years old .", "storylet_id": "209953"}], [{"original_text": "This viking ship was in the basement museum of the church. ", "album_id": "72157600347386579", "photo_flickr_id": "9170555", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "41990", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this viking ship was in the basement museum of the church .", "storylet_id": "209954"}], [{"original_text": "We went to the carnival together, it was a lot of fun.", "album_id": "72157600347386579", "photo_flickr_id": "9169879", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41991", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the carnival together , it was a lot of fun .", "storylet_id": "209955"}], [{"original_text": "Many people were dressed up in costume and were having a good time.", "album_id": "72157600347386579", "photo_flickr_id": "9169919", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41991", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people were dressed up in costume and were having a good time .", "storylet_id": "209956"}], [{"original_text": "Some people had crazy outfits, they were really entertaining.", "album_id": "72157600347386579", "photo_flickr_id": "9170422", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41991", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people had crazy outfits , they were really entertaining .", "storylet_id": "209957"}], [{"original_text": "We also went on a few of the rides, they were really cool!", "album_id": "72157600347386579", "photo_flickr_id": "9170555", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41991", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also went on a few of the rides , they were really cool !", "storylet_id": "209958"}], [{"original_text": "We ended our day with a visit to the beach, even though it was a big crowded.", "album_id": "72157600347386579", "photo_flickr_id": "9170596", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "41991", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended our day with a visit to the beach , even though it was a big crowded .", "storylet_id": "209959"}], [{"original_text": "On a recent trip out of the country, I viewed an ancient leader of a country enshrined in his burial vault.", "album_id": "72157600347386579", "photo_flickr_id": "9169879", "setting": "last-3-pick-old-and-tell", "worker_id": "KK53JWIN663C5DY", "story_id": "41992", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on a recent trip out of the country , i viewed an ancient leader of a country enshrined in his burial vault .", "storylet_id": "209960"}], [{"original_text": "The ends of the vault were brilliantly hand card.", "album_id": "72157600347386579", "photo_flickr_id": "9169919", "setting": "last-3-pick-old-and-tell", "worker_id": "KK53JWIN663C5DY", "story_id": "41992", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ends of the vault were brilliantly hand card .", "storylet_id": "209961"}], [{"original_text": "On the other side of the vault was a small chapel where people can silently pray.", "album_id": "72157600347386579", "photo_flickr_id": "9169940", "setting": "last-3-pick-old-and-tell", "worker_id": "KK53JWIN663C5DY", "story_id": "41992", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on the other side of the vault was a small chapel where people can silently pray .", "storylet_id": "209962"}], [{"original_text": "Then we went to a local museum where we explored ancient artifacts.", "album_id": "72157600347386579", "photo_flickr_id": "9170041", "setting": "last-3-pick-old-and-tell", "worker_id": "KK53JWIN663C5DY", "story_id": "41992", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we went to a local museum where we explored ancient artifacts .", "storylet_id": "209963"}], [{"original_text": "Among the ancient artifacts was a boat that was hand crafted and used to do island to island fishing.", "album_id": "72157600347386579", "photo_flickr_id": "9170555", "setting": "last-3-pick-old-and-tell", "worker_id": "KK53JWIN663C5DY", "story_id": "41992", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "among the ancient artifacts was a boat that was hand crafted and used to do island to island fishing .", "storylet_id": "209964"}], [{"original_text": "This is a tomb of a viking general. ", "album_id": "72157600347386579", "photo_flickr_id": "9169879", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "41993", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a tomb of a viking general .", "storylet_id": "209965"}], [{"original_text": "The skull and the crown with the wings are very symbolic. ", "album_id": "72157600347386579", "photo_flickr_id": "9169919", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "41993", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the skull and the crown with the wings are very symbolic .", "storylet_id": "209966"}], [{"original_text": "The art has been beautifully preserved. ", "album_id": "72157600347386579", "photo_flickr_id": "9169940", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "41993", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the art has been beautifully preserved .", "storylet_id": "209967"}], [{"original_text": "The outside of the historic landmark is a sight to see. ", "album_id": "72157600347386579", "photo_flickr_id": "9170041", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "41993", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the outside of the historic landmark is a sight to see .", "storylet_id": "209968"}], [{"original_text": "These are the old ship they used such an epic time in history. ", "album_id": "72157600347386579", "photo_flickr_id": "9170555", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "41993", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these are the old ship they used such an epic time in history .", "storylet_id": "209969"}], [{"original_text": "I love to visit the cathedral behind my house.", "album_id": "72157600347386579", "photo_flickr_id": "9169879", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "41994", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love to visit the cathedral behind my house .", "storylet_id": "209970"}], [{"original_text": "The cathedral contains some sort of box that I'm told is empty, but I remain very curious.", "album_id": "72157600347386579", "photo_flickr_id": "9169919", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "41994", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cathedral contains some sort of box that i 'm told is empty , but i remain very curious .", "storylet_id": "209971"}], [{"original_text": "Tragically, the cathedral burned to the ground last weekend.", "album_id": "72157600347386579", "photo_flickr_id": "9170422", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "41994", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "tragically , the cathedral burned to the ground last weekend .", "storylet_id": "209972"}], [{"original_text": "One of the only things that survived the fire is this boat.", "album_id": "72157600347386579", "photo_flickr_id": "9170555", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "41994", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the only things that survived the fire is this boat .", "storylet_id": "209973"}], [{"original_text": "Now, instead of visiting the cathedral, I spend my quiet times on a park bench.", "album_id": "72157600347386579", "photo_flickr_id": "9170596", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "41994", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now , instead of visiting the cathedral , i spend my quiet times on a park bench .", "storylet_id": "209974"}], [{"original_text": "two penguins were sitting in the bushes.", "album_id": "327855", "photo_flickr_id": "13498462", "setting": "first-2-pick-and-tell", "worker_id": "FL7JXBY0OGPTVOD", "story_id": "41995", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two penguins were sitting in the bushes .", "storylet_id": "209975"}], [{"original_text": "we admired the view of the ocean. ", "album_id": "327855", "photo_flickr_id": "13498442", "setting": "first-2-pick-and-tell", "worker_id": "FL7JXBY0OGPTVOD", "story_id": "41995", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we admired the view of the ocean .", "storylet_id": "209976"}], [{"original_text": "there were many penguins on the beach.", "album_id": "327855", "photo_flickr_id": "13498188", "setting": "first-2-pick-and-tell", "worker_id": "FL7JXBY0OGPTVOD", "story_id": "41995", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many penguins on the beach .", "storylet_id": "209977"}], [{"original_text": "the penguins looked cool near the waves.", "album_id": "327855", "photo_flickr_id": "13498074", "setting": "first-2-pick-and-tell", "worker_id": "FL7JXBY0OGPTVOD", "story_id": "41995", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the penguins looked cool near the waves .", "storylet_id": "209978"}], [{"original_text": "my friend wore her sun hat near the penguins. ", "album_id": "327855", "photo_flickr_id": "13498117", "setting": "first-2-pick-and-tell", "worker_id": "FL7JXBY0OGPTVOD", "story_id": "41995", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my friend wore her sun hat near the penguins .", "storylet_id": "209979"}], [{"original_text": "These two penguins are hiding.", "album_id": "327855", "photo_flickr_id": "13498353", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "41996", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these two penguins are hiding .", "storylet_id": "209980"}], [{"original_text": "This one wanted to go for a walk.", "album_id": "327855", "photo_flickr_id": "13498295", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "41996", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one wanted to go for a walk .", "storylet_id": "209981"}], [{"original_text": "Here is all his friends and family on the beach.", "album_id": "327855", "photo_flickr_id": "13498188", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "41996", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is all his friends and family on the beach .", "storylet_id": "209982"}], [{"original_text": "We laughed when we saw this penguin trying to wake his friend up.", "album_id": "327855", "photo_flickr_id": "13498241", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "41996", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we laughed when we saw this penguin trying to wake his friend up .", "storylet_id": "209983"}], [{"original_text": "My girlfriend was so happy to see the penguins.", "album_id": "327855", "photo_flickr_id": "13498117", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "41996", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my girlfriend was so happy to see the penguins .", "storylet_id": "209984"}], [{"original_text": "We found some beautiful penguins on our trip to South America. ", "album_id": "327855", "photo_flickr_id": "13498353", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41997", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we found some beautiful penguins on our trip to location location .", "storylet_id": "209985"}], [{"original_text": "Some let us get right up close to them. ", "album_id": "327855", "photo_flickr_id": "13498295", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41997", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some let us get right up close to them .", "storylet_id": "209986"}], [{"original_text": "The penguins would tend to hang out in groups. ", "album_id": "327855", "photo_flickr_id": "13498188", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41997", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the penguins would tend to hang out in groups .", "storylet_id": "209987"}], [{"original_text": "A few penguins separated from the crowd. ", "album_id": "327855", "photo_flickr_id": "13498241", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41997", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a few penguins separated from the crowd .", "storylet_id": "209988"}], [{"original_text": "My sister couldn't resist a picture with the little lovelies, but didn't want to scare them so we took it from the barrier. ", "album_id": "327855", "photo_flickr_id": "13498117", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "41997", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my sister could n't resist a picture with the little lovelies , but did n't want to scare them so we took it from the barrier .", "storylet_id": "209989"}], [{"original_text": "The little penguins were taking a break from the sun!", "album_id": "327855", "photo_flickr_id": "13498462", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "41998", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the little penguins were taking a break from the sun !", "storylet_id": "209990"}], [{"original_text": "We loved our view of the ocean!", "album_id": "327855", "photo_flickr_id": "13498442", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "41998", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we loved our view of the ocean !", "storylet_id": "209991"}], [{"original_text": "The penguins were having fun on the beach!", "album_id": "327855", "photo_flickr_id": "13498188", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "41998", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the penguins were having fun on the beach !", "storylet_id": "209992"}], [{"original_text": "There were so many penguins!", "album_id": "327855", "photo_flickr_id": "13498074", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "41998", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were so many penguins !", "storylet_id": "209993"}], [{"original_text": "Here I am with my penguin friends in the background.", "album_id": "327855", "photo_flickr_id": "13498117", "setting": "last-3-pick-old-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "41998", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here i am with my penguin friends in the background .", "storylet_id": "209994"}], [{"original_text": "The animals were hiding", "album_id": "327855", "photo_flickr_id": "13498462", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41999", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the animals were hiding", "storylet_id": "209995"}], [{"original_text": "near the water.", "album_id": "327855", "photo_flickr_id": "13498442", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41999", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "near the water .", "storylet_id": "209996"}], [{"original_text": "When they came out ", "album_id": "327855", "photo_flickr_id": "13498188", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41999", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when they came out", "storylet_id": "209997"}], [{"original_text": "to go to the shore", "album_id": "327855", "photo_flickr_id": "13498074", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41999", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to go to the shore", "storylet_id": "209998"}], [{"original_text": "and see the people.", "album_id": "327855", "photo_flickr_id": "13498117", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "41999", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and see the people .", "storylet_id": "209999"}], [{"original_text": "It was a clear day yesterday.", "album_id": "447066", "photo_flickr_id": "18825494", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42000", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a clear day yesterday .", "storylet_id": "210000"}], [{"original_text": "I went for a walk and saw many curious things.", "album_id": "447066", "photo_flickr_id": "18825848", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42000", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went for a walk and saw many curious things .", "storylet_id": "210001"}], [{"original_text": "I went down to the port.", "album_id": "447066", "photo_flickr_id": "18826129", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42000", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i went down to the port .", "storylet_id": "210002"}], [{"original_text": "There were a lot of markings on the walkway.", "album_id": "447066", "photo_flickr_id": "18826258", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42000", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of markings on the walkway .", "storylet_id": "210003"}], [{"original_text": "I wonder what they mean.", "album_id": "447066", "photo_flickr_id": "18826296", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42000", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i wonder what they mean .", "storylet_id": "210004"}], [{"original_text": "This is the hotel we stayed at on our vacation.", "album_id": "447066", "photo_flickr_id": "18825468", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42001", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the hotel we stayed at on our vacation .", "storylet_id": "210005"}], [{"original_text": "The hotel overlooked a busy road.", "album_id": "447066", "photo_flickr_id": "18825589", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42001", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the hotel overlooked a busy road .", "storylet_id": "210006"}], [{"original_text": "We saw a piece of Banksy grafitti on our way to the beach.", "album_id": "447066", "photo_flickr_id": "18825720", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42001", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw a piece of banksy grafitti on our way to the beach .", "storylet_id": "210007"}], [{"original_text": "At the beach, we walked along the boardwalk. It was a beautiful day!", "album_id": "447066", "photo_flickr_id": "18826122", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42001", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the beach , we walked along the boardwalk . it was a beautiful day !", "storylet_id": "210008"}], [{"original_text": "We even fed the hungry seagulls.", "album_id": "447066", "photo_flickr_id": "18826733", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42001", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even fed the hungry seagulls .", "storylet_id": "210009"}], [{"original_text": "This is a picture of a telephone pole.", "album_id": "447066", "photo_flickr_id": "18825494", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42002", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a telephone pole .", "storylet_id": "210010"}], [{"original_text": "This is a drawing of a girl.", "album_id": "447066", "photo_flickr_id": "18825848", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42002", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a drawing of a girl .", "storylet_id": "210011"}], [{"original_text": "This is a picture of a sign for the area.", "album_id": "447066", "photo_flickr_id": "18826129", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42002", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of a sign for the area .", "storylet_id": "210012"}], [{"original_text": "This sign says \"EE\" on the ground.", "album_id": "447066", "photo_flickr_id": "18826258", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42002", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this sign says `` ee '' on the ground .", "storylet_id": "210013"}], [{"original_text": "The letter on the ground is \"Z\".", "album_id": "447066", "photo_flickr_id": "18826296", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42002", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the letter on the ground is `` z '' .", "storylet_id": "210014"}], [{"original_text": "You couldn't miss the Hotel due to the large letters on the building.", "album_id": "447066", "photo_flickr_id": "18825468", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42003", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "you could n't miss the hotel due to the large letters on the building .", "storylet_id": "210015"}], [{"original_text": "It was located off of the main highway.", "album_id": "447066", "photo_flickr_id": "18825589", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42003", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was located off of the main highway .", "storylet_id": "210016"}], [{"original_text": "A prisoner had escaped from prison with his hands till cuffed together.", "album_id": "447066", "photo_flickr_id": "18825720", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42003", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a prisoner had escaped from prison with his hands till cuffed together .", "storylet_id": "210017"}], [{"original_text": "But the people on the beach were completely unaware of this news.", "album_id": "447066", "photo_flickr_id": "18826122", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42003", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but the people on the beach were completely unaware of this news .", "storylet_id": "210018"}], [{"original_text": "They were too busy enjoying the sounds of nature and birds singing.", "album_id": "447066", "photo_flickr_id": "18826733", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42003", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were too busy enjoying the sounds of nature and birds singing .", "storylet_id": "210019"}], [{"original_text": "The hotel is high up", "album_id": "447066", "photo_flickr_id": "18825468", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42004", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the hotel is high up", "storylet_id": "210020"}], [{"original_text": "above the traffic", "album_id": "447066", "photo_flickr_id": "18825589", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42004", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "above the traffic", "storylet_id": "210021"}], [{"original_text": "and near the artwork.", "album_id": "447066", "photo_flickr_id": "18825720", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42004", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and near the artwork .", "storylet_id": "210022"}], [{"original_text": "The people walk along the shore", "album_id": "447066", "photo_flickr_id": "18826122", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42004", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people walk along the shore", "storylet_id": "210023"}], [{"original_text": "and see birds.", "album_id": "447066", "photo_flickr_id": "18826733", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42004", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and see birds .", "storylet_id": "210024"}], [{"original_text": "Decided to walk along the beach and see what I can find.", "album_id": "580901", "photo_flickr_id": "25616781", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42005", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "decided to walk along the beach and see what i can find .", "storylet_id": "210025"}], [{"original_text": "I build a sandcastle of of dirt and wood just for fun.", "album_id": "580901", "photo_flickr_id": "27441174", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42005", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i build a sandcastle of of dirt and wood just for fun .", "storylet_id": "210026"}], [{"original_text": "The rocks here are gorgeous and full.", "album_id": "580901", "photo_flickr_id": "25713863", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42005", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the rocks here are gorgeous and full .", "storylet_id": "210027"}], [{"original_text": "I ran across this wood stacked up nicely. I wonder what it was.", "album_id": "580901", "photo_flickr_id": "25713980", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42005", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i ran across this wood stacked up nicely . i wonder what it was .", "storylet_id": "210028"}], [{"original_text": "Here it is at another angle.", "album_id": "580901", "photo_flickr_id": "27441046", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42005", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here it is at another angle .", "storylet_id": "210029"}], [{"original_text": "Going camping by the sea.", "album_id": "580901", "photo_flickr_id": "27591669", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42006", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going camping by the sea .", "storylet_id": "210030"}], [{"original_text": "Building balancing rocks.", "album_id": "580901", "photo_flickr_id": "27440873", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42006", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "building balancing rocks .", "storylet_id": "210031"}], [{"original_text": "A three piece balancing rocks.", "album_id": "580901", "photo_flickr_id": "27440945", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42006", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a three piece balancing rocks .", "storylet_id": "210032"}], [{"original_text": "Waves crashing on the rocks.", "album_id": "580901", "photo_flickr_id": "25714277", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42006", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "waves crashing on the rocks .", "storylet_id": "210033"}], [{"original_text": "Two Starfishes along the rocks.", "album_id": "580901", "photo_flickr_id": "27590982", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42006", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "two starfishes along the rocks .", "storylet_id": "210034"}], [{"original_text": "My dad is taking a walk along the rocky beach.", "album_id": "580901", "photo_flickr_id": "25616781", "setting": "last-3-pick-old-and-tell", "worker_id": "1AWZ7KVMSIM2FQA", "story_id": "42007", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my dad is taking a walk along the rocky beach .", "storylet_id": "210035"}], [{"original_text": "He closely examines artifacts he finds, everything from star fish to bottles. ", "album_id": "580901", "photo_flickr_id": "27441174", "setting": "last-3-pick-old-and-tell", "worker_id": "1AWZ7KVMSIM2FQA", "story_id": "42007", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he closely examines artifacts he finds , everything from star fish to bottles .", "storylet_id": "210036"}], [{"original_text": "This is a collection of rocks that my dad picked up during his walks along the brach.", "album_id": "580901", "photo_flickr_id": "25713863", "setting": "last-3-pick-old-and-tell", "worker_id": "1AWZ7KVMSIM2FQA", "story_id": "42007", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a collection of rocks that my dad picked up during his walks along the brach .", "storylet_id": "210037"}], [{"original_text": "He also collects and stockpilesdriftwood for bonfires and cooking.", "album_id": "580901", "photo_flickr_id": "25713980", "setting": "last-3-pick-old-and-tell", "worker_id": "1AWZ7KVMSIM2FQA", "story_id": "42007", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he also collects and stockpilesdriftwood for bonfires and cooking .", "storylet_id": "210038"}], [{"original_text": "Here is a rustic sculpture created from driftwood found on the beach.", "album_id": "580901", "photo_flickr_id": "27441046", "setting": "last-3-pick-old-and-tell", "worker_id": "1AWZ7KVMSIM2FQA", "story_id": "42007", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is a rustic sculpture created from driftwood found on the beach .", "storylet_id": "210039"}], [{"original_text": "The guy was walking along the shore", "album_id": "580901", "photo_flickr_id": "25616781", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42008", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guy was walking along the shore", "storylet_id": "210040"}], [{"original_text": "and took photos", "album_id": "580901", "photo_flickr_id": "27441174", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42008", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and took photos", "storylet_id": "210041"}], [{"original_text": "of the pretty rocks", "album_id": "580901", "photo_flickr_id": "25713863", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42008", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of the pretty rocks", "storylet_id": "210042"}], [{"original_text": "before he saw some wood", "album_id": "580901", "photo_flickr_id": "25713980", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42008", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "before he saw some wood", "storylet_id": "210043"}], [{"original_text": "that had been destroyed.", "album_id": "580901", "photo_flickr_id": "27441046", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42008", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that had been destroyed .", "storylet_id": "210044"}], [{"original_text": "Today my friend and I went hiking at the beach.", "album_id": "580901", "photo_flickr_id": "27591669", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42009", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today my friend and i went hiking at the beach .", "storylet_id": "210045"}], [{"original_text": "We built towers out of stones that we found along the shore.", "album_id": "580901", "photo_flickr_id": "27440873", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42009", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we built towers out of stones that we found along the shore .", "storylet_id": "210046"}], [{"original_text": "The weather was perfect outside.", "album_id": "580901", "photo_flickr_id": "27440945", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42009", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the weather was perfect outside .", "storylet_id": "210047"}], [{"original_text": "We spent many hours just enjoying the waves crashing on the rocks.", "album_id": "580901", "photo_flickr_id": "25714277", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42009", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we spent many hours just enjoying the waves crashing on the rocks .", "storylet_id": "210048"}], [{"original_text": "Several starfish made an appearance.", "album_id": "580901", "photo_flickr_id": "27590982", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42009", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "several starfish made an appearance .", "storylet_id": "210049"}], [{"original_text": "The village seemed far from where we were now.", "album_id": "72157623077581621", "photo_flickr_id": "4270999615", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42010", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the village seemed far from where we were now .", "storylet_id": "210050"}], [{"original_text": "John and dad were excited to finally get to the ocean.", "album_id": "72157623077581621", "photo_flickr_id": "4271753692", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42010", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] and dad were excited to finally get to the ocean .", "storylet_id": "210051"}], [{"original_text": "John was learning how to surf.", "album_id": "72157623077581621", "photo_flickr_id": "4271008795", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42010", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was learning how to surf .", "storylet_id": "210052"}], [{"original_text": "He made his way out to the water.", "album_id": "72157623077581621", "photo_flickr_id": "4271013447", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42010", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he made his way out to the water .", "storylet_id": "210053"}], [{"original_text": "It was great to watch the sunset behind the sea.", "album_id": "72157623077581621", "photo_flickr_id": "4271002965", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42010", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was great to watch the sunset behind the sea .", "storylet_id": "210054"}], [{"original_text": "I went for road trip to the local beach town nearby.", "album_id": "72157623077581621", "photo_flickr_id": "4270999615", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "42011", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for road trip to the local beach town nearby .", "storylet_id": "210055"}], [{"original_text": "This is my brother standing near the lighthouse.", "album_id": "72157623077581621", "photo_flickr_id": "4271000863", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "42011", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is my brother standing near the lighthouse .", "storylet_id": "210056"}], [{"original_text": "This is my brother and his son at the beach.", "album_id": "72157623077581621", "photo_flickr_id": "4271753692", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "42011", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is my brother and his son at the beach .", "storylet_id": "210057"}], [{"original_text": "My nephew had a great time as he learned to ride a body board.", "album_id": "72157623077581621", "photo_flickr_id": "4271008795", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "42011", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my nephew had a great time as he learned to ride a body board .", "storylet_id": "210058"}], [{"original_text": "By the end of the day he was learning to ride like a pro.", "album_id": "72157623077581621", "photo_flickr_id": "4271011621", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "42011", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of the day he was learning to ride like a pro .", "storylet_id": "210059"}], [{"original_text": "Our day at the beach just me and my son.", "album_id": "72157623077581621", "photo_flickr_id": "4270999615", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42012", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our day at the beach just me and my son .", "storylet_id": "210060"}], [{"original_text": "Here we are, getting ready go into the water.", "album_id": "72157623077581621", "photo_flickr_id": "4271753692", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42012", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we are , getting ready go into the water .", "storylet_id": "210061"}], [{"original_text": "He's a ham, he's gonna surf.", "album_id": "72157623077581621", "photo_flickr_id": "4271008795", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42012", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he 's a ham , he 's gon na surf .", "storylet_id": "210062"}], [{"original_text": "Here he goes, get ready for the wave son!", "album_id": "72157623077581621", "photo_flickr_id": "4271013447", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42012", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here he goes , get ready for the wave son !", "storylet_id": "210063"}], [{"original_text": "Ah, night time at the beach with me and my boy, what a wonderful day.", "album_id": "72157623077581621", "photo_flickr_id": "4271002965", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42012", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ah , night time at the beach with me and my boy , what a wonderful day .", "storylet_id": "210064"}], [{"original_text": "A man and a boy visited a sea-side town.", "album_id": "72157623077581621", "photo_flickr_id": "4270999615", "setting": "last-3-pick-old-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42013", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a man and a boy visited a sea-side town .", "storylet_id": "210065"}], [{"original_text": "The man and his son had already made it to the beach by around noon.", "album_id": "72157623077581621", "photo_flickr_id": "4271753692", "setting": "last-3-pick-old-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42013", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man and his son had already made it to the beach by around noon .", "storylet_id": "210066"}], [{"original_text": "The boy was very eager to give body boarding a try.", "album_id": "72157623077581621", "photo_flickr_id": "4271008795", "setting": "last-3-pick-old-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42013", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boy was very eager to give body boarding a try .", "storylet_id": "210067"}], [{"original_text": "The boy stayed on the body board (in part because the waves were very small).", "album_id": "72157623077581621", "photo_flickr_id": "4271013447", "setting": "last-3-pick-old-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42013", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boy stayed on the body board ( in part because the waves were very small ) .", "storylet_id": "210068"}], [{"original_text": "The man and his son stayed at the beach until sunset. ", "album_id": "72157623077581621", "photo_flickr_id": "4271002965", "setting": "last-3-pick-old-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42013", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the man and his son stayed at the beach until sunset .", "storylet_id": "210069"}], [{"original_text": "The ocean side town was mostly a fishing town. ", "album_id": "72157623077581621", "photo_flickr_id": "4270999615", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42014", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ocean side town was mostly a fishing town .", "storylet_id": "210070"}], [{"original_text": "People did cavort on the beach from time to time. ", "album_id": "72157623077581621", "photo_flickr_id": "4271753692", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42014", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people did cavort on the beach from time to time .", "storylet_id": "210071"}], [{"original_text": "Mostly for to entertain their children. ", "album_id": "72157623077581621", "photo_flickr_id": "4271008795", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42014", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mostly for to entertain their children .", "storylet_id": "210072"}], [{"original_text": "Kids loved the water. ", "album_id": "72157623077581621", "photo_flickr_id": "4271013447", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42014", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "kids loved the water .", "storylet_id": "210073"}], [{"original_text": "Dad's love to fish, especially at night.", "album_id": "72157623077581621", "photo_flickr_id": "4271002965", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42014", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dad 's love to fish , especially at night .", "storylet_id": "210074"}], [{"original_text": "Sitting at an amazing spot on the beach and I am reading a book.", "album_id": "72157623078574347", "photo_flickr_id": "4271376273", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "42015", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sitting at an amazing spot on the beach and i am reading a book .", "storylet_id": "210075"}], [{"original_text": "I can see mom making friends with other mothers with little kids,", "album_id": "72157623078574347", "photo_flickr_id": "4271376563", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "42015", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i can see mom making friends with other mothers with little kids ,", "storylet_id": "210076"}], [{"original_text": "Life guards were posted every where to ensure our safety.", "album_id": "72157623078574347", "photo_flickr_id": "4271376965", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "42015", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "life guards were posted every where to ensure our safety .", "storylet_id": "210077"}], [{"original_text": "The pelicans and seagulls came out when the kids threw stale bread.", "album_id": "72157623078574347", "photo_flickr_id": "4272119968", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "42015", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pelicans and seagulls came out when the kids threw stale bread .", "storylet_id": "210078"}], [{"original_text": "To finish off the night we headed to our motel room to freshen up for dinner.", "album_id": "72157623078574347", "photo_flickr_id": "4271378835", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "42015", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to finish off the night we headed to our motel room to freshen up for dinner .", "storylet_id": "210079"}], [{"original_text": "The group of friend went to the beach.", "album_id": "72157623078574347", "photo_flickr_id": "4272118584", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42016", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group of friend went to the beach .", "storylet_id": "210080"}], [{"original_text": "The mom brought her book to read.", "album_id": "72157623078574347", "photo_flickr_id": "4271376273", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42016", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the mom brought her book to read .", "storylet_id": "210081"}], [{"original_text": "The family and friends went swimming and tanned.", "album_id": "72157623078574347", "photo_flickr_id": "4271376563", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42016", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family and friends went swimming and tanned .", "storylet_id": "210082"}], [{"original_text": "A flock of seagulls flew right by them.", "album_id": "72157623078574347", "photo_flickr_id": "4272119968", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42016", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a flock of seagulls flew right by them .", "storylet_id": "210083"}], [{"original_text": "It was a fun day at the beach. ", "album_id": "72157623078574347", "photo_flickr_id": "4272120598", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42016", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a fun day at the beach .", "storylet_id": "210084"}], [{"original_text": "Everyone one having a relaxing day at the beach.", "album_id": "72157623078574347", "photo_flickr_id": "4272118584", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42017", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone one having a relaxing day at the beach .", "storylet_id": "210085"}], [{"original_text": "Some reading books and getting a tan. ", "album_id": "72157623078574347", "photo_flickr_id": "4271376273", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42017", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some reading books and getting a tan .", "storylet_id": "210086"}], [{"original_text": "Some decide to get close to the water and feel the breeze.", "album_id": "72157623078574347", "photo_flickr_id": "4271376563", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42017", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some decide to get close to the water and feel the breeze .", "storylet_id": "210087"}], [{"original_text": "Birds flying over the ocean to the land.", "album_id": "72157623078574347", "photo_flickr_id": "4272119968", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42017", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "birds flying over the ocean to the land .", "storylet_id": "210088"}], [{"original_text": "Before the day is over they all take a family picture.", "album_id": "72157623078574347", "photo_flickr_id": "4272120598", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42017", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before the day is over they all take a family picture .", "storylet_id": "210089"}], [{"original_text": "What a perfect day to read on the beach. ", "album_id": "72157623078574347", "photo_flickr_id": "4271376273", "setting": "last-3-pick-old-and-tell", "worker_id": "RAVG112U8YW7M3O", "story_id": "42018", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what a perfect day to read on the beach .", "storylet_id": "210090"}], [{"original_text": "Whenever I take a break from reading I can watch the families enjoying the sun together. ", "album_id": "72157623078574347", "photo_flickr_id": "4271376563", "setting": "last-3-pick-old-and-tell", "worker_id": "RAVG112U8YW7M3O", "story_id": "42018", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "whenever i take a break from reading i can watch the families enjoying the sun together .", "storylet_id": "210091"}], [{"original_text": "Or the clean colors of the beach buildings. ", "album_id": "72157623078574347", "photo_flickr_id": "4271376965", "setting": "last-3-pick-old-and-tell", "worker_id": "RAVG112U8YW7M3O", "story_id": "42018", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "or the clean colors of the beach buildings .", "storylet_id": "210092"}], [{"original_text": "Or the birds flying in. ", "album_id": "72157623078574347", "photo_flickr_id": "4272119968", "setting": "last-3-pick-old-and-tell", "worker_id": "RAVG112U8YW7M3O", "story_id": "42018", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "or the birds flying in .", "storylet_id": "210093"}], [{"original_text": "It was a great day, but time to head home. ", "album_id": "72157623078574347", "photo_flickr_id": "4271378835", "setting": "last-3-pick-old-and-tell", "worker_id": "RAVG112U8YW7M3O", "story_id": "42018", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great day , but time to head home .", "storylet_id": "210094"}], [{"original_text": "Our family arrived at our annual beach vacation location.", "album_id": "72157623078574347", "photo_flickr_id": "4272118584", "setting": "last-3-pick-old-and-tell", "worker_id": "2FG6UTKGNGJMN6N", "story_id": "42019", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family arrived at our annual beach vacation location .", "storylet_id": "210095"}], [{"original_text": "I immediately claimed a spot on the beach, pulled out a book to read, and took a glorious nap.", "album_id": "72157623078574347", "photo_flickr_id": "4271376273", "setting": "last-3-pick-old-and-tell", "worker_id": "2FG6UTKGNGJMN6N", "story_id": "42019", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i immediately claimed a spot on the beach , pulled out a book to read , and took a glorious nap .", "storylet_id": "210096"}], [{"original_text": "When I woke up, I played in the waves with the kids.", "album_id": "72157623078574347", "photo_flickr_id": "4271376563", "setting": "last-3-pick-old-and-tell", "worker_id": "2FG6UTKGNGJMN6N", "story_id": "42019", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when i woke up , i played in the waves with the kids .", "storylet_id": "210097"}], [{"original_text": "We watched the seagulls flying into the air while we ran into the waves.", "album_id": "72157623078574347", "photo_flickr_id": "4272119968", "setting": "last-3-pick-old-and-tell", "worker_id": "2FG6UTKGNGJMN6N", "story_id": "42019", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we watched the seagulls flying into the air while we ran into the waves .", "storylet_id": "210098"}], [{"original_text": "Dad got all dressed up for a nice dinner we had planned later, while we were still in our swimsuits enjoying the sun.", "album_id": "72157623078574347", "photo_flickr_id": "4272120598", "setting": "last-3-pick-old-and-tell", "worker_id": "2FG6UTKGNGJMN6N", "story_id": "42019", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dad got all dressed up for a nice dinner we had planned later , while we were still in our swimsuits enjoying the sun .", "storylet_id": "210099"}], [{"original_text": "They vacationed in a beautiful resort.", "album_id": "72157623079379785", "photo_flickr_id": "4272419044", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42020", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they vacationed in a beautiful resort .", "storylet_id": "210100"}], [{"original_text": "There were beaches.", "album_id": "72157623079379785", "photo_flickr_id": "4272421118", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42020", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were beaches .", "storylet_id": "210101"}], [{"original_text": "There were towns nearby to explore.", "album_id": "72157623079379785", "photo_flickr_id": "4272421596", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42020", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were towns nearby to explore .", "storylet_id": "210102"}], [{"original_text": "Other hotels were nearby.", "album_id": "72157623079379785", "photo_flickr_id": "4271680667", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42020", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other hotels were nearby .", "storylet_id": "210103"}], [{"original_text": "The sunset view was lovely on the beach.", "album_id": "72157623079379785", "photo_flickr_id": "4271681683", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42020", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sunset view was lovely on the beach .", "storylet_id": "210104"}], [{"original_text": "When we arrived at the beach the parking lot was full. ", "album_id": "72157623079379785", "photo_flickr_id": "4272419044", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "42021", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when we arrived at the beach the parking lot was full .", "storylet_id": "210105"}], [{"original_text": "We waited in line to grab a bite to eat. ", "album_id": "72157623079379785", "photo_flickr_id": "4272417946", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "42021", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we waited in line to grab a bite to eat .", "storylet_id": "210106"}], [{"original_text": "We took off our shoes and walked on the sand. ", "album_id": "72157623079379785", "photo_flickr_id": "4272421118", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "42021", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took off our shoes and walked on the sand .", "storylet_id": "210107"}], [{"original_text": "Then we headed towards the waves to splash around. ", "album_id": "72157623079379785", "photo_flickr_id": "4271676069", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "42021", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we headed towards the waves to splash around .", "storylet_id": "210108"}], [{"original_text": "We walked on the beach until we reached some rocks. ", "album_id": "72157623079379785", "photo_flickr_id": "4272421596", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "42021", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we walked on the beach until we reached some rocks .", "storylet_id": "210109"}], [{"original_text": "I drove out to the beach last weekend.", "album_id": "72157623079379785", "photo_flickr_id": "4272419044", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42022", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i drove out to the beach last weekend .", "storylet_id": "210110"}], [{"original_text": "I brought all my beach gear with me.", "album_id": "72157623079379785", "photo_flickr_id": "4272421118", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42022", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i brought all my beach gear with me .", "storylet_id": "210111"}], [{"original_text": "There were some large boulders on the beach.", "album_id": "72157623079379785", "photo_flickr_id": "4272421596", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42022", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some large boulders on the beach .", "storylet_id": "210112"}], [{"original_text": "I resort was nearby.", "album_id": "72157623079379785", "photo_flickr_id": "4271680667", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42022", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i resort was nearby .", "storylet_id": "210113"}], [{"original_text": "I had a great time.", "album_id": "72157623079379785", "photo_flickr_id": "4271681683", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42022", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time .", "storylet_id": "210114"}], [{"original_text": "It was my first time seeing mountains along the ocean.", "album_id": "72157623079379785", "photo_flickr_id": "4272419044", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42023", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was my first time seeing mountains along the ocean .", "storylet_id": "210115"}], [{"original_text": "We took a few silly shots before our walk.", "album_id": "72157623079379785", "photo_flickr_id": "4272421118", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42023", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a few silly shots before our walk .", "storylet_id": "210116"}], [{"original_text": "The coastline here was very rocky but gorgeous.", "album_id": "72157623079379785", "photo_flickr_id": "4272421596", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42023", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the coastline here was very rocky but gorgeous .", "storylet_id": "210117"}], [{"original_text": "Our hotel was expensive but well worth it.", "album_id": "72157623079379785", "photo_flickr_id": "4271680667", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42023", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our hotel was expensive but well worth it .", "storylet_id": "210118"}], [{"original_text": "We plan to make this an annual trip.", "album_id": "72157623079379785", "photo_flickr_id": "4271681683", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42023", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we plan to make this an annual trip .", "storylet_id": "210119"}], [{"original_text": "I took a beach trip last week to a remote town in Mexico.", "album_id": "72157623079379785", "photo_flickr_id": "4272419044", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42024", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a beach trip last week to a remote town in location .", "storylet_id": "210120"}], [{"original_text": "The beach was completely full of people.", "album_id": "72157623079379785", "photo_flickr_id": "4272421118", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42024", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the beach was completely full of people .", "storylet_id": "210121"}], [{"original_text": "However, I was a little disappointed because the ocean water was quite rocky.", "album_id": "72157623079379785", "photo_flickr_id": "4272421596", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42024", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however , i was a little disappointed because the ocean water was quite rocky .", "storylet_id": "210122"}], [{"original_text": "The accommodations weren't particularly special either.", "album_id": "72157623079379785", "photo_flickr_id": "4271680667", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42024", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the accommodations were n't particularly special either .", "storylet_id": "210123"}], [{"original_text": "Still, it gave me comfort to watch the sunset from the ocean every evening.", "album_id": "72157623079379785", "photo_flickr_id": "4271681683", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42024", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "still , it gave me comfort to watch the sunset from the ocean every evening .", "storylet_id": "210124"}], [{"original_text": "My father took me out one day to play in the winter wonderland.", "album_id": "72157623080334209", "photo_flickr_id": "4271997031", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42025", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my father took me out one day to play in the winter wonderland .", "storylet_id": "210125"}], [{"original_text": "I enjoyed running around in the fresh snow.", "album_id": "72157623080334209", "photo_flickr_id": "4272734342", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42025", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i enjoyed running around in the fresh snow .", "storylet_id": "210126"}], [{"original_text": "Dad pulled me around on a sled since there were no hills near us.", "album_id": "72157623080334209", "photo_flickr_id": "4271992929", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42025", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad pulled me around on a sled since there were no hills near us .", "storylet_id": "210127"}], [{"original_text": "I laid down and worked on a snow angel.", "album_id": "72157623080334209", "photo_flickr_id": "4271996095", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42025", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i laid down and worked on a snow angel .", "storylet_id": "210128"}], [{"original_text": "And there it will stay till the next heavy snow falls.", "album_id": "72157623080334209", "photo_flickr_id": "4272738786", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42025", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and there it will stay till the next heavy snow falls .", "storylet_id": "210129"}], [{"original_text": "In the winter, the town where I grew up was a place of wide snow covered roads and friendly people. ", "album_id": "72157623080334209", "photo_flickr_id": "4271994317", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "42026", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the winter , the town where i grew up was a place of wide snow covered roads and friendly people .", "storylet_id": "210130"}], [{"original_text": "How well I remember the rides on my little sled pulled by mom on brilliant days. ", "album_id": "72157623080334209", "photo_flickr_id": "4271992929", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "42026", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "how well i remember the rides on my little sled pulled by mom on brilliant days .", "storylet_id": "210131"}], [{"original_text": "With delight I'd roll in the icy cold fluff making snow angels.", "album_id": "72157623080334209", "photo_flickr_id": "4271996095", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "42026", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "with delight i 'd roll in the icy cold fluff making snow angels .", "storylet_id": "210132"}], [{"original_text": "Then after a day of play in the cold fields, mom and I would trudge back to town. ", "album_id": "72157623080334209", "photo_flickr_id": "4272740182", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "42026", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then after a day of play in the cold fields , mom and i would trudge back to town .", "storylet_id": "210133"}], [{"original_text": "Back in our warm house, mom would make hot chocolate with marshmallows to warm our weary, happy souls. ", "album_id": "72157623080334209", "photo_flickr_id": "4272735452", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "42026", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "back in our warm house , mom would make hot chocolate with marshmallows to warm our weary , happy souls .", "storylet_id": "210134"}], [{"original_text": "The kids had the day off school for snow, and we decided to make the most of it.", "album_id": "72157623080334209", "photo_flickr_id": "4271997031", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42027", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids had the day off school for snow , and we decided to make the most of it .", "storylet_id": "210135"}], [{"original_text": "We bundled them up from head to toe.", "album_id": "72157623080334209", "photo_flickr_id": "4272734342", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42027", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we bundled them up from head to toe .", "storylet_id": "210136"}], [{"original_text": "First, we went sledding. It took us a while to find a good spot though.", "album_id": "72157623080334209", "photo_flickr_id": "4271992929", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42027", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "first , we went sledding . it took us a while to find a good spot though .", "storylet_id": "210137"}], [{"original_text": "Next, they made snow angels.", "album_id": "72157623080334209", "photo_flickr_id": "4271996095", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42027", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next , they made snow angels .", "storylet_id": "210138"}], [{"original_text": "They were so happy with the end result. They decided snow days were the best days ever.", "album_id": "72157623080334209", "photo_flickr_id": "4272738786", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42027", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were so happy with the end result . they decided snow days were the best days ever .", "storylet_id": "210139"}], [{"original_text": "It was a snowy day, so we decided to go for a walk to a big open field.", "album_id": "72157623080334209", "photo_flickr_id": "4271994317", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "42028", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a snowy day , so we decided to go for a walk to a big open field .", "storylet_id": "210140"}], [{"original_text": "Once we were in the field, I pulled my daughter on a sled since the ground was completely flat.", "album_id": "72157623080334209", "photo_flickr_id": "4271992929", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "42028", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once we were in the field , i pulled my daughter on a sled since the ground was completely flat .", "storylet_id": "210141"}], [{"original_text": "We decided sledding wasn't the best idea, so we made snow angels in the snow.", "album_id": "72157623080334209", "photo_flickr_id": "4271996095", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "42028", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we decided sledding was n't the best idea , so we made snow angels in the snow .", "storylet_id": "210142"}], [{"original_text": "We started getting cold, so we walked back to our house.", "album_id": "72157623080334209", "photo_flickr_id": "4272740182", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "42028", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we started getting cold , so we walked back to our house .", "storylet_id": "210143"}], [{"original_text": "We made it after a long walk, and then we went inside and had hot chocolate, and then we warmed up near a nice toasty fire.", "album_id": "72157623080334209", "photo_flickr_id": "4272735452", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "42028", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we made it after a long walk , and then we went inside and had hot chocolate , and then we warmed up near a nice toasty fire .", "storylet_id": "210144"}], [{"original_text": "The day was cold but the snow was lovely!", "album_id": "72157623080334209", "photo_flickr_id": "4271997031", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "42029", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day was cold but the snow was lovely !", "storylet_id": "210145"}], [{"original_text": "This little guy clearly enjoyed himself.", "album_id": "72157623080334209", "photo_flickr_id": "4272734342", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "42029", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this little guy clearly enjoyed himself .", "storylet_id": "210146"}], [{"original_text": "It was a lot of fun sledding about.", "album_id": "72157623080334209", "photo_flickr_id": "4271992929", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "42029", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a lot of fun sledding about .", "storylet_id": "210147"}], [{"original_text": "And everyone loves making snow angels.", "album_id": "72157623080334209", "photo_flickr_id": "4271996095", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "42029", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and everyone loves making snow angels .", "storylet_id": "210148"}], [{"original_text": "This one turned out really well!", "album_id": "72157623080334209", "photo_flickr_id": "4272738786", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "42029", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this one turned out really well !", "storylet_id": "210149"}], [{"original_text": "Our overseas trip was amazing. This was the skyline when flying into the airport.", "album_id": "765227", "photo_flickr_id": "9359445", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42030", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our overseas trip was amazing . this was the skyline when flying into the airport .", "storylet_id": "210150"}], [{"original_text": "First day we went to a dance club, it was crowded but fun.", "album_id": "765227", "photo_flickr_id": "9359475", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42030", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first day we went to a dance club , it was crowded but fun .", "storylet_id": "210151"}], [{"original_text": "We also went to the beach, here are we going for our day trip.", "album_id": "765227", "photo_flickr_id": "9359000", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42030", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also went to the beach , here are we going for our day trip .", "storylet_id": "210152"}], [{"original_text": "The next day we went on a big boat ride in the harbor.", "album_id": "765227", "photo_flickr_id": "9358942", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42030", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next day we went on a big boat ride in the harbor .", "storylet_id": "210153"}], [{"original_text": "And at the end we went shopping in a multi level mall, it was amazing!", "album_id": "765227", "photo_flickr_id": "9358993", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42030", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and at the end we went shopping in a multi level mall , it was amazing !", "storylet_id": "210154"}], [{"original_text": "Susie is bored with her life, she wants to explore new places all by herself.", "album_id": "765227", "photo_flickr_id": "9359440", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42031", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is bored with her life , she wants to explore new places all by herself .", "storylet_id": "210155"}], [{"original_text": "She views the city and realizes she needs to get away and go away someplace different.", "album_id": "765227", "photo_flickr_id": "9359445", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42031", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she views the city and realizes she needs to get away and go away someplace different .", "storylet_id": "210156"}], [{"original_text": "The next morning she catches a bus that takes her out of the city.", "album_id": "765227", "photo_flickr_id": "9359478", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42031", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next morning she catches a bus that takes her out of the city .", "storylet_id": "210157"}], [{"original_text": "The bus drops her off at a port where she gets on a boat which will sail away.", "album_id": "765227", "photo_flickr_id": "9358957", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42031", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bus drops her off at a port where she gets on a boat which will sail away .", "storylet_id": "210158"}], [{"original_text": "The boat takes her to the beach, which she feels heals her soul. She loves her new surroundings.", "album_id": "765227", "photo_flickr_id": "9359435", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42031", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boat takes her to the beach , which she feels heals her soul . she loves her new surroundings .", "storylet_id": "210159"}], [{"original_text": "The night sky was lit up. ", "album_id": "765227", "photo_flickr_id": "9359445", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42032", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the night sky was lit up .", "storylet_id": "210160"}], [{"original_text": "Tickets for the lounge were sold out. ", "album_id": "765227", "photo_flickr_id": "9359475", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42032", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "tickets for the lounge were sold out .", "storylet_id": "210161"}], [{"original_text": "He took a picture in front of the bus. ", "album_id": "765227", "photo_flickr_id": "9359000", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42032", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he took a picture in front of the bus .", "storylet_id": "210162"}], [{"original_text": "The boats were parked at the dock. ", "album_id": "765227", "photo_flickr_id": "9358942", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42032", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boats were parked at the dock .", "storylet_id": "210163"}], [{"original_text": "She was ready to tour some more. ", "album_id": "765227", "photo_flickr_id": "9358993", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42032", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was ready to tour some more .", "storylet_id": "210164"}], [{"original_text": "Having a great night out with my girlfriend!", "album_id": "765227", "photo_flickr_id": "9359440", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "42033", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "having a great night out with my girlfriend !", "storylet_id": "210165"}], [{"original_text": "The city lights are beautiful from the water.", "album_id": "765227", "photo_flickr_id": "9359445", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "42033", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city lights are beautiful from the water .", "storylet_id": "210166"}], [{"original_text": "The best way to get around the city for sightseeing is on a bus.", "album_id": "765227", "photo_flickr_id": "9359478", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "42033", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the best way to get around the city for sightseeing is on a bus .", "storylet_id": "210167"}], [{"original_text": "We are waiting to get on a charter boat to sightsee from the water.", "album_id": "765227", "photo_flickr_id": "9358957", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "42033", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we are waiting to get on a charter boat to sightsee from the water .", "storylet_id": "210168"}], [{"original_text": "My girlfriend is beautiful out enjoying the beach.", "album_id": "765227", "photo_flickr_id": "9359435", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "42033", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my girlfriend is beautiful out enjoying the beach .", "storylet_id": "210169"}], [{"original_text": "My boyfriend and I took a cruise in Taipei.", "album_id": "765227", "photo_flickr_id": "9359440", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42034", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my boyfriend and i took a cruise in location .", "storylet_id": "210170"}], [{"original_text": "The view from the boat was incredible.", "album_id": "765227", "photo_flickr_id": "9359445", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42034", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view from the boat was incredible .", "storylet_id": "210171"}], [{"original_text": "It took us two hours by taxi to get to the dock.", "album_id": "765227", "photo_flickr_id": "9359478", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42034", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it took us two hours by taxi to get to the dock .", "storylet_id": "210172"}], [{"original_text": "Our family was there to see us off.", "album_id": "765227", "photo_flickr_id": "9358957", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42034", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our family was there to see us off .", "storylet_id": "210173"}], [{"original_text": "Afterward, we relaxed on the beach.", "album_id": "765227", "photo_flickr_id": "9359435", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42034", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward , we relaxed on the beach .", "storylet_id": "210174"}], [{"original_text": "My brother Mike and his son working on his homework. ", "album_id": "122401", "photo_flickr_id": "4780024", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "42035", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brother [male] and his son working on his homework .", "storylet_id": "210175"}], [{"original_text": "My whole family standing near a beach ready for the day.", "album_id": "122401", "photo_flickr_id": "4780095", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "42035", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my whole family standing near a beach ready for the day .", "storylet_id": "210176"}], [{"original_text": "Mike's son, Andrew, looking far barnacles, on the rocks. ", "album_id": "122401", "photo_flickr_id": "4780119", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "42035", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] 's son , [male] , looking far barnacles , on the rocks .", "storylet_id": "210177"}], [{"original_text": "Mike and his family busy looking for barnacles, for our dinner tonight. ", "album_id": "122401", "photo_flickr_id": "4780147", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "42035", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and his family busy looking for barnacles , for our dinner tonight .", "storylet_id": "210178"}], [{"original_text": "Our whole family is looking for herbs along the beach that is going to be used in cooking for our dinner today. ", "album_id": "122401", "photo_flickr_id": "4780199", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "42035", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our whole family is looking for herbs along the beach that is going to be used in cooking for our dinner today .", "storylet_id": "210179"}], [{"original_text": "We woke up really early morning to bring flowers to my sister's house.", "album_id": "122401", "photo_flickr_id": "4780300", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42036", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we woke up really early morning to bring flowers to my sister 's house .", "storylet_id": "210180"}], [{"original_text": "Her son was up having a good time.", "album_id": "122401", "photo_flickr_id": "4780054", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42036", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her son was up having a good time .", "storylet_id": "210181"}], [{"original_text": "We went to the beach to do some excavation.", "album_id": "122401", "photo_flickr_id": "4780167", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42036", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went to the beach to do some excavation .", "storylet_id": "210182"}], [{"original_text": "We taught our little boy how to dig for sea shells.", "album_id": "122401", "photo_flickr_id": "4780119", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42036", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we taught our little boy how to dig for sea shells .", "storylet_id": "210183"}], [{"original_text": "We took a family picture once he found some shells.", "album_id": "122401", "photo_flickr_id": "4780095", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42036", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took a family picture once he found some shells .", "storylet_id": "210184"}], [{"original_text": "We wandered into the hotel lobby to inquire about breakfast. They had just put out fresh flowers.", "album_id": "122401", "photo_flickr_id": "4780300", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42037", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we wandered into the hotel lobby to inquire about breakfast . they had just put out fresh flowers .", "storylet_id": "210185"}], [{"original_text": "My son was in no mood to wait. Luckily the dining room wasn't busy, so our order was taken right away. ", "album_id": "122401", "photo_flickr_id": "4780054", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42037", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my son was in no mood to wait . luckily the dining room was n't busy , so our order was taken right away .", "storylet_id": "210186"}], [{"original_text": "We walked off our big meal by exploring a nearby beach.", "album_id": "122401", "photo_flickr_id": "4780167", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42037", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we walked off our big meal by exploring a nearby beach .", "storylet_id": "210187"}], [{"original_text": "My son was fascinated by everything he saw.", "album_id": "122401", "photo_flickr_id": "4780119", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42037", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my son was fascinated by everything he saw .", "storylet_id": "210188"}], [{"original_text": "We met some nice locals who fell in love with our son!", "album_id": "122401", "photo_flickr_id": "4780095", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42037", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we met some nice locals who fell in love with our son !", "storylet_id": "210189"}], [{"original_text": "It was a beautiful day out and we decided to spend the day together.", "album_id": "122401", "photo_flickr_id": "4780300", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42038", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful day out and we decided to spend the day together .", "storylet_id": "210190"}], [{"original_text": "The kids were particularly excited.", "album_id": "122401", "photo_flickr_id": "4780054", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42038", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids were particularly excited .", "storylet_id": "210191"}], [{"original_text": "We headed to the beach so the kids could play in the sand.", "album_id": "122401", "photo_flickr_id": "4780167", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42038", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we headed to the beach so the kids could play in the sand .", "storylet_id": "210192"}], [{"original_text": "My son was looking at a weird insect on the rock.", "album_id": "122401", "photo_flickr_id": "4780119", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42038", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my son was looking at a weird insect on the rock .", "storylet_id": "210193"}], [{"original_text": "We took many photos together for memory.", "album_id": "122401", "photo_flickr_id": "4780095", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42038", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took many photos together for memory .", "storylet_id": "210194"}], [{"original_text": "Grandpa helping Mikey read a book on explores to prep him for our day trip.", "album_id": "122401", "photo_flickr_id": "4780024", "setting": "last-3-pick-old-and-tell", "worker_id": "55O109C912PNYBI", "story_id": "42039", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandpa helping mikey read a book on explores to prep him for our day trip .", "storylet_id": "210195"}], [{"original_text": "Off to explore. Great group shot.", "album_id": "122401", "photo_flickr_id": "4780095", "setting": "last-3-pick-old-and-tell", "worker_id": "55O109C912PNYBI", "story_id": "42039", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "off to explore . great group shot .", "storylet_id": "210196"}], [{"original_text": "Look mom what this? ", "album_id": "122401", "photo_flickr_id": "4780119", "setting": "last-3-pick-old-and-tell", "worker_id": "55O109C912PNYBI", "story_id": "42039", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look mom what this ?", "storylet_id": "210197"}], [{"original_text": "Saw a little crab on the rocks. Mikey was fascinated.", "album_id": "122401", "photo_flickr_id": "4780147", "setting": "last-3-pick-old-and-tell", "worker_id": "55O109C912PNYBI", "story_id": "42039", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "saw a little crab on the rocks . mikey was fascinated .", "storylet_id": "210198"}], [{"original_text": "Everyone was sent on a hunt to find more little crabs.", "album_id": "122401", "photo_flickr_id": "4780199", "setting": "last-3-pick-old-and-tell", "worker_id": "55O109C912PNYBI", "story_id": "42039", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was sent on a hunt to find more little crabs .", "storylet_id": "210199"}], [{"original_text": "We recently traveled along a vast river in a jungle.", "album_id": "452960", "photo_flickr_id": "19271921", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42040", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we recently traveled along a vast river in a jungle .", "storylet_id": "210200"}], [{"original_text": "There were people on boats going up and down the river.", "album_id": "452960", "photo_flickr_id": "19271923", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42040", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were people on boats going up and down the river .", "storylet_id": "210201"}], [{"original_text": "We stopped for lunch at a restaurant on the river.", "album_id": "452960", "photo_flickr_id": "19271924", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42040", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stopped for lunch at a restaurant on the river .", "storylet_id": "210202"}], [{"original_text": "After lunch, we watched children playing at the base of this large tree.", "album_id": "452960", "photo_flickr_id": "19273988", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42040", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after lunch , we watched children playing at the base of this large tree .", "storylet_id": "210203"}], [{"original_text": "We also saw many wild creatures along the way.", "album_id": "452960", "photo_flickr_id": "19277227", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42040", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also saw many wild creatures along the way .", "storylet_id": "210204"}], [{"original_text": "We enjoyed a view of the water from the beach.", "album_id": "452960", "photo_flickr_id": "19271921", "setting": "first-2-pick-and-tell", "worker_id": "FL7JXBY0OGPTVOD", "story_id": "42041", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we enjoyed a view of the water from the beach .", "storylet_id": "210205"}], [{"original_text": "We watched the long boat sail by.", "album_id": "452960", "photo_flickr_id": "19271923", "setting": "first-2-pick-and-tell", "worker_id": "FL7JXBY0OGPTVOD", "story_id": "42041", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we watched the long boat sail by .", "storylet_id": "210206"}], [{"original_text": "We went under the canopy and enjoyed the ocean.", "album_id": "452960", "photo_flickr_id": "19271924", "setting": "first-2-pick-and-tell", "worker_id": "FL7JXBY0OGPTVOD", "story_id": "42041", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went under the canopy and enjoyed the ocean .", "storylet_id": "210207"}], [{"original_text": "We stared at the grass prarie.", "album_id": "452960", "photo_flickr_id": "19273993", "setting": "first-2-pick-and-tell", "worker_id": "FL7JXBY0OGPTVOD", "story_id": "42041", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stared at the grass prarie .", "storylet_id": "210208"}], [{"original_text": "We looked at the two brown pig statues. ", "album_id": "452960", "photo_flickr_id": "19279654", "setting": "first-2-pick-and-tell", "worker_id": "FL7JXBY0OGPTVOD", "story_id": "42041", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we looked at the two brown pig statues .", "storylet_id": "210209"}], [{"original_text": "There were ruins of an old bridge.", "album_id": "452960", "photo_flickr_id": "19271921", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "42042", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were ruins of an old bridge .", "storylet_id": "210210"}], [{"original_text": "Fisherman slowly poled down the river.", "album_id": "452960", "photo_flickr_id": "19271923", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "42042", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fisherman slowly poled down the river .", "storylet_id": "210211"}], [{"original_text": "The view of the river from the verandah was relaxing.", "album_id": "452960", "photo_flickr_id": "19271924", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "42042", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the view of the river from the verandah was relaxing .", "storylet_id": "210212"}], [{"original_text": "The travelers were amazed at this ancient tree.", "album_id": "452960", "photo_flickr_id": "19273988", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "42042", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the travelers were amazed at this ancient tree .", "storylet_id": "210213"}], [{"original_text": "A little crab stops to pose for a picture.", "album_id": "452960", "photo_flickr_id": "19277227", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "42042", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a little crab stops to pose for a picture .", "storylet_id": "210214"}], [{"original_text": "The lake was lined with concrete-like structures.", "album_id": "452960", "photo_flickr_id": "19271921", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42043", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lake was lined with concrete-like structures .", "storylet_id": "210215"}], [{"original_text": "It did not hamper the fisherman.", "album_id": "452960", "photo_flickr_id": "19271923", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42043", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it did not hamper the fisherman .", "storylet_id": "210216"}], [{"original_text": "If you needed a place to relax the deck served that purpose well.", "album_id": "452960", "photo_flickr_id": "19271924", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42043", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "if you needed a place to relax the deck served that purpose well .", "storylet_id": "210217"}], [{"original_text": "And the tree served as a great conversation piece with its sprawling branches.", "album_id": "452960", "photo_flickr_id": "19273988", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42043", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the tree served as a great conversation piece with its sprawling branches .", "storylet_id": "210218"}], [{"original_text": "The large spider interrupted her thoughts as she yelled in fear.", "album_id": "452960", "photo_flickr_id": "19277227", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42043", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the large spider interrupted her thoughts as she yelled in fear .", "storylet_id": "210219"}], [{"original_text": "The bridge was falling in", "album_id": "452960", "photo_flickr_id": "19271921", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42044", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bridge was falling in", "storylet_id": "210220"}], [{"original_text": "but the boats could get through.", "album_id": "452960", "photo_flickr_id": "19271923", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42044", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but the boats could get through .", "storylet_id": "210221"}], [{"original_text": "They got to the resort", "album_id": "452960", "photo_flickr_id": "19271924", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42044", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they got to the resort", "storylet_id": "210222"}], [{"original_text": "with the large tree", "album_id": "452960", "photo_flickr_id": "19273988", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42044", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with the large tree", "storylet_id": "210223"}], [{"original_text": "and the interesting animals.", "album_id": "452960", "photo_flickr_id": "19277227", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42044", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the interesting animals .", "storylet_id": "210224"}], [{"original_text": "Every time he got in the car he was worried that they may be headed for the vet.", "album_id": "454993", "photo_flickr_id": "19376497", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42045", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every time he got in the car he was worried that they may be headed for the vet .", "storylet_id": "210225"}], [{"original_text": "His human parked the car and they crossed the street.", "album_id": "454993", "photo_flickr_id": "19378703", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42045", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his human parked the car and they crossed the street .", "storylet_id": "210226"}], [{"original_text": "He could smell the water as soon as they made it to the other side.", "album_id": "454993", "photo_flickr_id": "19377903", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42045", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he could smell the water as soon as they made it to the other side .", "storylet_id": "210227"}], [{"original_text": "They played on the sand all day long.", "album_id": "454993", "photo_flickr_id": "19377603", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42045", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they played on the sand all day long .", "storylet_id": "210228"}], [{"original_text": "At the end both the dog and his human were exhausted after all the fun.", "album_id": "454993", "photo_flickr_id": "19377980", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42045", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end both the dog and his human were exhausted after all the fun .", "storylet_id": "210229"}], [{"original_text": "Our dog loves our outings.", "album_id": "454993", "photo_flickr_id": "19376497", "setting": "first-2-pick-and-tell", "worker_id": "JSAG4D04M9INRMU", "story_id": "42046", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our dog loves our outings .", "storylet_id": "210230"}], [{"original_text": "He loved the walk on the beach.", "album_id": "454993", "photo_flickr_id": "19377603", "setting": "first-2-pick-and-tell", "worker_id": "JSAG4D04M9INRMU", "story_id": "42046", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he loved the walk on the beach .", "storylet_id": "210231"}], [{"original_text": "This part was a bit treacherous for him, but he endured.", "album_id": "454993", "photo_flickr_id": "19377927", "setting": "first-2-pick-and-tell", "worker_id": "JSAG4D04M9INRMU", "story_id": "42046", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this part was a bit treacherous for him , but he endured .", "storylet_id": "210232"}], [{"original_text": "He enjoyed taking a break here.", "album_id": "454993", "photo_flickr_id": "19377980", "setting": "first-2-pick-and-tell", "worker_id": "JSAG4D04M9INRMU", "story_id": "42046", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he enjoyed taking a break here .", "storylet_id": "210233"}], [{"original_text": "We both enjoyed the view.", "album_id": "454993", "photo_flickr_id": "19379223", "setting": "first-2-pick-and-tell", "worker_id": "JSAG4D04M9INRMU", "story_id": "42046", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we both enjoyed the view .", "storylet_id": "210234"}], [{"original_text": "My dog really loves to go for a walk near the water. ", "album_id": "454993", "photo_flickr_id": "19376497", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42047", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my dog really loves to go for a walk near the water .", "storylet_id": "210235"}], [{"original_text": "We made sure to not park in the walkways. ", "album_id": "454993", "photo_flickr_id": "19378703", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42047", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made sure to not park in the walkways .", "storylet_id": "210236"}], [{"original_text": "The shoreline was pretty clear. ", "album_id": "454993", "photo_flickr_id": "19377903", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42047", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the shoreline was pretty clear .", "storylet_id": "210237"}], [{"original_text": "One lone walker was enjoying the day like we were. ", "album_id": "454993", "photo_flickr_id": "19377603", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42047", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one lone walker was enjoying the day like we were .", "storylet_id": "210238"}], [{"original_text": "Puppy got a little excited about chasing birds, so I had to hold him for a while while he got used to them. ", "album_id": "454993", "photo_flickr_id": "19377980", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42047", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "puppy got a little excited about chasing birds , so i had to hold him for a while while he got used to them .", "storylet_id": "210239"}], [{"original_text": "The dog was enjoying his time of solitude.", "album_id": "454993", "photo_flickr_id": "19376497", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42048", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dog was enjoying his time of solitude .", "storylet_id": "210240"}], [{"original_text": "And so was his master on the beach.", "album_id": "454993", "photo_flickr_id": "19377603", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42048", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and so was his master on the beach .", "storylet_id": "210241"}], [{"original_text": "It seemed as if the place was completely isolated.", "album_id": "454993", "photo_flickr_id": "19377927", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42048", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it seemed as if the place was completely isolated .", "storylet_id": "210242"}], [{"original_text": "Eventually the dog and his master reunited and relaxed.", "album_id": "454993", "photo_flickr_id": "19377980", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42048", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "eventually the dog and his master reunited and relaxed .", "storylet_id": "210243"}], [{"original_text": "It was a beautiful place of serenity.", "album_id": "454993", "photo_flickr_id": "19379223", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42048", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a beautiful place of serenity .", "storylet_id": "210244"}], [{"original_text": "The dog was licking its lips", "album_id": "454993", "photo_flickr_id": "19376497", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42049", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dog was licking its lips", "storylet_id": "210245"}], [{"original_text": "when it saw the sign", "album_id": "454993", "photo_flickr_id": "19378703", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42049", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when it saw the sign", "storylet_id": "210246"}], [{"original_text": "near the beach.", "album_id": "454993", "photo_flickr_id": "19377903", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42049", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "near the beach .", "storylet_id": "210247"}], [{"original_text": "The water was calm", "album_id": "454993", "photo_flickr_id": "19377603", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42049", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the water was calm", "storylet_id": "210248"}], [{"original_text": "and the dog looked out into the water.", "album_id": "454993", "photo_flickr_id": "19377980", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42049", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the dog looked out into the water .", "storylet_id": "210249"}], [{"original_text": "I took a short walk on the nature trail to the beach.", "album_id": "594941", "photo_flickr_id": "26046303", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42050", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a short walk on the nature trail to the beach .", "storylet_id": "210250"}], [{"original_text": "There were a lot of huge trees along the way.", "album_id": "594941", "photo_flickr_id": "26046272", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42050", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of huge trees along the way .", "storylet_id": "210251"}], [{"original_text": "Some of them were over 100 feet tall.", "album_id": "594941", "photo_flickr_id": "26046249", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42050", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them were over 100 feet tall .", "storylet_id": "210252"}], [{"original_text": "It was cloudy when we got to the beach.", "album_id": "594941", "photo_flickr_id": "26046132", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42050", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was cloudy when we got to the beach .", "storylet_id": "210253"}], [{"original_text": "But after about half an hour the skies cleared up!", "album_id": "594941", "photo_flickr_id": "26046114", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42050", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but after about half an hour the skies cleared up !", "storylet_id": "210254"}], [{"original_text": "We went for a hike on a nature trail.", "album_id": "594941", "photo_flickr_id": "26046303", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42051", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went for a hike on a nature trail .", "storylet_id": "210255"}], [{"original_text": "It was a cloudy, grey day.", "album_id": "594941", "photo_flickr_id": "26046179", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42051", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a cloudy , grey day .", "storylet_id": "210256"}], [{"original_text": "There were many interesting rock formations along the coast.", "album_id": "594941", "photo_flickr_id": "26046147", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42051", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many interesting rock formations along the coast .", "storylet_id": "210257"}], [{"original_text": "We made sure to dispose of our trash properly.", "album_id": "594941", "photo_flickr_id": "26046315", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42051", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we made sure to dispose of our trash properly .", "storylet_id": "210258"}], [{"original_text": "The sun came out just as we finished our walk.", "album_id": "594941", "photo_flickr_id": "26046114", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42051", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sun came out just as we finished our walk .", "storylet_id": "210259"}], [{"original_text": "My hike through the woods to the beach was exciting", "album_id": "594941", "photo_flickr_id": "26046303", "setting": "last-3-pick-old-and-tell", "worker_id": "4SC5TPKL1L9T6NG", "story_id": "42052", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my hike through the woods to the beach was exciting", "storylet_id": "210260"}], [{"original_text": "There was one big tree that really caught my eye.", "album_id": "594941", "photo_flickr_id": "26046272", "setting": "last-3-pick-old-and-tell", "worker_id": "4SC5TPKL1L9T6NG", "story_id": "42052", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was one big tree that really caught my eye .", "storylet_id": "210261"}], [{"original_text": "Looking up, I saw the branches spread so I could hardly see the sky.", "album_id": "594941", "photo_flickr_id": "26046249", "setting": "last-3-pick-old-and-tell", "worker_id": "4SC5TPKL1L9T6NG", "story_id": "42052", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looking up , i saw the branches spread so i could hardly see the sky .", "storylet_id": "210262"}], [{"original_text": "At first when I got to the beach the sky was gray and cloudy.", "album_id": "594941", "photo_flickr_id": "26046132", "setting": "last-3-pick-old-and-tell", "worker_id": "4SC5TPKL1L9T6NG", "story_id": "42052", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at first when i got to the beach the sky was gray and cloudy .", "storylet_id": "210263"}], [{"original_text": "Later the sun came out and the colors of the sky, land, and sea were beautiful!", "album_id": "594941", "photo_flickr_id": "26046114", "setting": "last-3-pick-old-and-tell", "worker_id": "4SC5TPKL1L9T6NG", "story_id": "42052", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later the sun came out and the colors of the sky , land , and sea were beautiful !", "storylet_id": "210264"}], [{"original_text": "This is a picture of a man in the woods.", "album_id": "594941", "photo_flickr_id": "26046303", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42053", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a man in the woods .", "storylet_id": "210265"}], [{"original_text": "This is a picture of a tree.", "album_id": "594941", "photo_flickr_id": "26046272", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42053", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a tree .", "storylet_id": "210266"}], [{"original_text": "The sky is cloudy in this picture.", "album_id": "594941", "photo_flickr_id": "26046249", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42053", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sky is cloudy in this picture .", "storylet_id": "210267"}], [{"original_text": "This is a picture of a cloudy beach.", "album_id": "594941", "photo_flickr_id": "26046132", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42053", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of a cloudy beach .", "storylet_id": "210268"}], [{"original_text": "This is a picture of a sunny beach.", "album_id": "594941", "photo_flickr_id": "26046114", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42053", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a sunny beach .", "storylet_id": "210269"}], [{"original_text": "The guy took a photo near the tree", "album_id": "594941", "photo_flickr_id": "26046303", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42054", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guy took a photo near the tree", "storylet_id": "210270"}], [{"original_text": "then of the tree itself.", "album_id": "594941", "photo_flickr_id": "26046272", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42054", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then of the tree itself .", "storylet_id": "210271"}], [{"original_text": "The tree was huge", "album_id": "594941", "photo_flickr_id": "26046249", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42054", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tree was huge", "storylet_id": "210272"}], [{"original_text": "and by a lake", "album_id": "594941", "photo_flickr_id": "26046132", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42054", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and by a lake", "storylet_id": "210273"}], [{"original_text": "that was very relaxing.", "album_id": "594941", "photo_flickr_id": "26046114", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42054", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that was very relaxing .", "storylet_id": "210274"}], [{"original_text": "We decided to go to Europe on vacation this year.", "album_id": "37463", "photo_flickr_id": "1470977", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "42055", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go to location on vacation this year .", "storylet_id": "210275"}], [{"original_text": "Italy was absolutely beautiful, I love how the buildings sit right on the water.", "album_id": "37463", "photo_flickr_id": "1470984", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "42055", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "location was absolutely beautiful , i love how the buildings sit right on the water .", "storylet_id": "210276"}], [{"original_text": "The architecture was amazing, we don't have buildings like these in the states.", "album_id": "37463", "photo_flickr_id": "1471021", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "42055", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the architecture was amazing , we do n't have buildings like these in the states .", "storylet_id": "210277"}], [{"original_text": "We took a gondola down the canal, It was very romatic.", "album_id": "37463", "photo_flickr_id": "1471032", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "42055", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a gondola down the canal , it was very romatic .", "storylet_id": "210278"}], [{"original_text": "The food was very different than I'm used to, I never was quite sure what I was eating.", "album_id": "37463", "photo_flickr_id": "1471043", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "42055", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the food was very different than i 'm used to , i never was quite sure what i was eating .", "storylet_id": "210279"}], [{"original_text": "I was following a street while on vacation.", "album_id": "37463", "photo_flickr_id": "1470949", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42056", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was following a street while on vacation .", "storylet_id": "210280"}], [{"original_text": "I was amazed when the street ended here.", "album_id": "37463", "photo_flickr_id": "1471063", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42056", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was amazed when the street ended here .", "storylet_id": "210281"}], [{"original_text": "The entire city was beautiful.", "album_id": "37463", "photo_flickr_id": "1470977", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42056", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the entire city was beautiful .", "storylet_id": "210282"}], [{"original_text": "There was lots of waterfront property.", "album_id": "37463", "photo_flickr_id": "1470984", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42056", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was lots of waterfront property .", "storylet_id": "210283"}], [{"original_text": "This was the most amazing building I saw on the water.", "album_id": "37463", "photo_flickr_id": "1471021", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42056", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the most amazing building i saw on the water .", "storylet_id": "210284"}], [{"original_text": "We decided to take a trip on a riverboat to see the sights along the river which ran through the ancient city. ", "album_id": "37463", "photo_flickr_id": "1470977", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "42057", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to take a trip on a riverboat to see the sights along the river which ran through the ancient city .", "storylet_id": "210285"}], [{"original_text": "There were a lot of old buildings along the banks of the river. It was all really pretty, I didn't know where to point my camera next.", "album_id": "37463", "photo_flickr_id": "1470984", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "42057", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of old buildings along the banks of the river . it was all really pretty , i did n't know where to point my camera next .", "storylet_id": "210286"}], [{"original_text": "The Baron's mansion was a sight to behold. There's so much history here. We couldn't go in though, it's still a private residence. ", "album_id": "37463", "photo_flickr_id": "1471021", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "42057", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the baron 's mansion was a sight to behold . there 's so much history here . we could n't go in though , it 's still a private residence .", "storylet_id": "210287"}], [{"original_text": "Off down the river again. Some of these bridges are very low, I keep thinking we're going to hit one and get stuck!", "album_id": "37463", "photo_flickr_id": "1471032", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "42057", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "off down the river again . some of these bridges are very low , i keep thinking we 're going to hit one and get stuck !", "storylet_id": "210288"}], [{"original_text": "At the end of the trip we got to sample the local specialty, fried fish. Not caught from the river but brought in fresh from the ocean. Delicious!", "album_id": "37463", "photo_flickr_id": "1471043", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "42057", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the trip we got to sample the local specialty , fried fish . not caught from the river but brought in fresh from the ocean . delicious !", "storylet_id": "210289"}], [{"original_text": "Our tour started out in the morning walking the streets of this old-world city.", "album_id": "37463", "photo_flickr_id": "1470949", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "42058", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our tour started out in the morning walking the streets of this old-world city .", "storylet_id": "210290"}], [{"original_text": "We saw this gorgeous building which has a clock and intricate carvings in the facade of the building.", "album_id": "37463", "photo_flickr_id": "1471063", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "42058", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw this gorgeous building which has a clock and intricate carvings in the facade of the building .", "storylet_id": "210291"}], [{"original_text": "Love the city built right on the canal.", "album_id": "37463", "photo_flickr_id": "1470977", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "42058", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "love the city built right on the canal .", "storylet_id": "210292"}], [{"original_text": "And even more home-like buildings to travel to by boat.", "album_id": "37463", "photo_flickr_id": "1470984", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "42058", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and even more home-like buildings to travel to by boat .", "storylet_id": "210293"}], [{"original_text": "We ended our day at this amazing place with two bell towers and steeples. ", "album_id": "37463", "photo_flickr_id": "1471021", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "42058", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended our day at this amazing place with two bell towers and steeples .", "storylet_id": "210294"}], [{"original_text": "We went on vacation to the city.", "album_id": "37463", "photo_flickr_id": "1470949", "setting": "last-3-pick-old-and-tell", "worker_id": "SVEKV1R5NCK4U9Q", "story_id": "42059", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on vacation to the city .", "storylet_id": "210295"}], [{"original_text": "The cathedral was massive!", "album_id": "37463", "photo_flickr_id": "1471063", "setting": "last-3-pick-old-and-tell", "worker_id": "SVEKV1R5NCK4U9Q", "story_id": "42059", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cathedral was massive !", "storylet_id": "210296"}], [{"original_text": "The houses by the water were beautiful.", "album_id": "37463", "photo_flickr_id": "1470977", "setting": "last-3-pick-old-and-tell", "worker_id": "SVEKV1R5NCK4U9Q", "story_id": "42059", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the houses by the water were beautiful .", "storylet_id": "210297"}], [{"original_text": "We took a boat around the bay.", "album_id": "37463", "photo_flickr_id": "1470984", "setting": "last-3-pick-old-and-tell", "worker_id": "SVEKV1R5NCK4U9Q", "story_id": "42059", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a boat around the bay .", "storylet_id": "210298"}], [{"original_text": "Back to our hotel!", "album_id": "37463", "photo_flickr_id": "1471021", "setting": "last-3-pick-old-and-tell", "worker_id": "SVEKV1R5NCK4U9Q", "story_id": "42059", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "back to our hotel !", "storylet_id": "210299"}], [{"original_text": "A family decides to spend their day relaxing at the beach.", "album_id": "72157600001577480", "photo_flickr_id": "3386997", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42060", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a family decides to spend their day relaxing at the beach .", "storylet_id": "210300"}], [{"original_text": "The husband and wife are very excited to finally be spending some time together.", "album_id": "72157600001577480", "photo_flickr_id": "3387020", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42060", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the husband and wife are very excited to finally be spending some time together .", "storylet_id": "210301"}], [{"original_text": "They also bring their kid so that she can enjoy the beautiful water too.", "album_id": "72157600001577480", "photo_flickr_id": "3386983", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42060", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also bring their kid so that she can enjoy the beautiful water too .", "storylet_id": "210302"}], [{"original_text": "Eventually, the husband and wife decide to go for a swim, but take a picture together before getting all wet.", "album_id": "72157600001577480", "photo_flickr_id": "3398959", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42060", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "eventually , the husband and wife decide to go for a swim , but take a picture together before getting all wet .", "storylet_id": "210303"}], [{"original_text": "Finally, they head home. The dad is sad to be leaving, but happy that he had such a good day.", "album_id": "72157600001577480", "photo_flickr_id": "3387108", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42060", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , they head home . the dad is sad to be leaving , but happy that he had such a good day .", "storylet_id": "210304"}], [{"original_text": "Just mowed the lawn and she said she liked the feel. ", "album_id": "72157600001577480", "photo_flickr_id": "3386971", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42061", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "just mowed the lawn and she said she liked the feel .", "storylet_id": "210305"}], [{"original_text": "Sitting very close to the edge, posing for this quick photo. ", "album_id": "72157600001577480", "photo_flickr_id": "3386997", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42061", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sitting very close to the edge , posing for this quick photo .", "storylet_id": "210306"}], [{"original_text": "Working hard and showing off at the same time, this guy!", "album_id": "72157600001577480", "photo_flickr_id": "3387050", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42061", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "working hard and showing off at the same time , this guy !", "storylet_id": "210307"}], [{"original_text": "Two men at odds, they will make up in the end though. ", "album_id": "72157600001577480", "photo_flickr_id": "3387094", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42061", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two men at odds , they will make up in the end though .", "storylet_id": "210308"}], [{"original_text": "She didn't know I had a camera! ", "album_id": "72157600001577480", "photo_flickr_id": "3387120", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42061", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she did n't know i had a camera !", "storylet_id": "210309"}], [{"original_text": "We took a group picture at the beach.", "album_id": "72157600001577480", "photo_flickr_id": "3386997", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42062", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a group picture at the beach .", "storylet_id": "210310"}], [{"original_text": "My wife and I took some lovely photos.", "album_id": "72157600001577480", "photo_flickr_id": "3387020", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42062", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my wife and i took some lovely photos .", "storylet_id": "210311"}], [{"original_text": "She posed in the natural realm.", "album_id": "72157600001577480", "photo_flickr_id": "3386983", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42062", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she posed in the natural realm .", "storylet_id": "210312"}], [{"original_text": "I had to get more pictures with her before we left.", "album_id": "72157600001577480", "photo_flickr_id": "3398959", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42062", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had to get more pictures with her before we left .", "storylet_id": "210313"}], [{"original_text": "I ended up doing most of the driving home.", "album_id": "72157600001577480", "photo_flickr_id": "3387108", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42062", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ended up doing most of the driving home .", "storylet_id": "210314"}], [{"original_text": "me and a few of my best friends went to the beach.", "album_id": "72157600001577480", "photo_flickr_id": "3386997", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "42063", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and a few of my best friends went to the beach .", "storylet_id": "210315"}], [{"original_text": "my lover was fearful of the water but was a trouper about it.", "album_id": "72157600001577480", "photo_flickr_id": "3387020", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "42063", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my lover was fearful of the water but was a trouper about it .", "storylet_id": "210316"}], [{"original_text": "as the day went on she got closer and closer to the water.", "album_id": "72157600001577480", "photo_flickr_id": "3386983", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "42063", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as the day went on she got closer and closer to the water .", "storylet_id": "210317"}], [{"original_text": "near the end of the day she stepped into it for the first time. ", "album_id": "72157600001577480", "photo_flickr_id": "3398959", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "42063", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "near the end of the day she stepped into it for the first time .", "storylet_id": "210318"}], [{"original_text": "I was so happy at the end of the day. my lover had shared a moment with me.", "album_id": "72157600001577480", "photo_flickr_id": "3387108", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "42063", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was so happy at the end of the day . my lover had shared a moment with me .", "storylet_id": "210319"}], [{"original_text": "A group of friends posed for a photo during a beach vacation. ", "album_id": "72157600001577480", "photo_flickr_id": "3386997", "setting": "last-3-pick-old-and-tell", "worker_id": "C64IRT1AHAWAP5Y", "story_id": "42064", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends posed for a photo during a beach vacation .", "storylet_id": "210320"}], [{"original_text": "This couple wanted a photo of just themselves to remember the trip.", "album_id": "72157600001577480", "photo_flickr_id": "3387020", "setting": "last-3-pick-old-and-tell", "worker_id": "C64IRT1AHAWAP5Y", "story_id": "42064", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this couple wanted a photo of just themselves to remember the trip .", "storylet_id": "210321"}], [{"original_text": "The water was clear and beautiful.", "album_id": "72157600001577480", "photo_flickr_id": "3386983", "setting": "last-3-pick-old-and-tell", "worker_id": "C64IRT1AHAWAP5Y", "story_id": "42064", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water was clear and beautiful .", "storylet_id": "210322"}], [{"original_text": "The couple kicked off their shoes to wade into the warm water.", "album_id": "72157600001577480", "photo_flickr_id": "3398959", "setting": "last-3-pick-old-and-tell", "worker_id": "C64IRT1AHAWAP5Y", "story_id": "42064", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple kicked off their shoes to wade into the warm water .", "storylet_id": "210323"}], [{"original_text": "We played music on the ride home and had a great time.", "album_id": "72157600001577480", "photo_flickr_id": "3387108", "setting": "last-3-pick-old-and-tell", "worker_id": "C64IRT1AHAWAP5Y", "story_id": "42064", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we played music on the ride home and had a great time .", "storylet_id": "210324"}], [{"original_text": "I was visiting a coastal town in Spain last year.", "album_id": "72157623097130441", "photo_flickr_id": "4276720185", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "42065", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was visiting a coastal town in location last year .", "storylet_id": "210325"}], [{"original_text": "As the evening came the colors of the setting sun really made it look picturesque.", "album_id": "72157623097130441", "photo_flickr_id": "4277421516", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "42065", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the evening came the colors of the setting sun really made it look picturesque .", "storylet_id": "210326"}], [{"original_text": "As the sun went down the scenery got better and better.", "album_id": "72157623097130441", "photo_flickr_id": "4277424720", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "42065", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as the sun went down the scenery got better and better .", "storylet_id": "210327"}], [{"original_text": "You can see the wondful sun setting here.", "album_id": "72157623097130441", "photo_flickr_id": "4277434542", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "42065", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you can see the wondful sun setting here .", "storylet_id": "210328"}], [{"original_text": "I was able to see it here just as it set over the town.", "album_id": "72157623097130441", "photo_flickr_id": "4276709101", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "42065", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was able to see it here just as it set over the town .", "storylet_id": "210329"}], [{"original_text": "I love to travel.", "album_id": "72157623097130441", "photo_flickr_id": "4276669073", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42066", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love to travel .", "storylet_id": "210330"}], [{"original_text": "This is beautiful", "album_id": "72157623097130441", "photo_flickr_id": "4277421516", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42066", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is beautiful", "storylet_id": "210331"}], [{"original_text": "Look at the sky", "album_id": "72157623097130441", "photo_flickr_id": "4277424720", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42066", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at the sky", "storylet_id": "210332"}], [{"original_text": "look at the rocks.", "album_id": "72157623097130441", "photo_flickr_id": "4277429656", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42066", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look at the rocks .", "storylet_id": "210333"}], [{"original_text": "i want to go back", "album_id": "72157623097130441", "photo_flickr_id": "4277434542", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42066", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i want to go back", "storylet_id": "210334"}], [{"original_text": "This year, on our vacation, we took a helicopter ride.", "album_id": "72157623097130441", "photo_flickr_id": "4276720185", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42067", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this year , on our vacation , we took a helicopter ride .", "storylet_id": "210335"}], [{"original_text": "We saw the beautiful sites of the city from up above.", "album_id": "72157623097130441", "photo_flickr_id": "4277421516", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42067", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw the beautiful sites of the city from up above .", "storylet_id": "210336"}], [{"original_text": "We got to see a bit of nature too.", "album_id": "72157623097130441", "photo_flickr_id": "4277424720", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42067", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got to see a bit of nature too .", "storylet_id": "210337"}], [{"original_text": "The sun cast beautiful colors.", "album_id": "72157623097130441", "photo_flickr_id": "4277434542", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42067", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sun cast beautiful colors .", "storylet_id": "210338"}], [{"original_text": "As it set, we decided this was our best vacation yet.", "album_id": "72157623097130441", "photo_flickr_id": "4276709101", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42067", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as it set , we decided this was our best vacation yet .", "storylet_id": "210339"}], [{"original_text": "I've been taking a photography class that gives me the opportunity to see some amazing things.", "album_id": "72157623097130441", "photo_flickr_id": "4276669073", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42068", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 've been taking a photography class that gives me the opportunity to see some amazing things .", "storylet_id": "210340"}], [{"original_text": "This skyline is one of my favorite.", "album_id": "72157623097130441", "photo_flickr_id": "4277421516", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42068", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this skyline is one of my favorite .", "storylet_id": "210341"}], [{"original_text": "Sky shots tend to make very nice photos also.", "album_id": "72157623097130441", "photo_flickr_id": "4277424720", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42068", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sky shots tend to make very nice photos also .", "storylet_id": "210342"}], [{"original_text": "I took this at Lake Como.", "album_id": "72157623097130441", "photo_flickr_id": "4277429656", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42068", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i took this at location location .", "storylet_id": "210343"}], [{"original_text": "But this sunset is what I got an A for on my final exam.", "album_id": "72157623097130441", "photo_flickr_id": "4277434542", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42068", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but this sunset is what i got an a for on my final exam .", "storylet_id": "210344"}], [{"original_text": "The view from the airplane on the first day of vacation.", "album_id": "72157623097130441", "photo_flickr_id": "4276669073", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42069", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the view from the airplane on the first day of vacation .", "storylet_id": "210345"}], [{"original_text": "A beautiful villa int e distance.", "album_id": "72157623097130441", "photo_flickr_id": "4277421516", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42069", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a beautiful villa int e distance .", "storylet_id": "210346"}], [{"original_text": "The setting sun over the horizon.", "album_id": "72157623097130441", "photo_flickr_id": "4277424720", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42069", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the setting sun over the horizon .", "storylet_id": "210347"}], [{"original_text": "A gorgeous view from our hotel room.", "album_id": "72157623097130441", "photo_flickr_id": "4277429656", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42069", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a gorgeous view from our hotel room .", "storylet_id": "210348"}], [{"original_text": "The morning sun as we drink coffee from out hotel. ", "album_id": "72157623097130441", "photo_flickr_id": "4277434542", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42069", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the morning sun as we drink coffee from out hotel .", "storylet_id": "210349"}], [{"original_text": "On vacation to New York, we wanted to try out a new Mexican restaurant we had heard about. ", "album_id": "72157623216453276", "photo_flickr_id": "4277288838", "setting": "first-2-pick-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "42070", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on vacation to location location , we wanted to try out a new mexican restaurant we had heard about .", "storylet_id": "210350"}], [{"original_text": "Here it is! It looks like it is a Sri Lankan restaurant though. And it looks closed.", "album_id": "72157623216453276", "photo_flickr_id": "4277288132", "setting": "first-2-pick-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "42070", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here it is ! it looks like it is a sri lankan restaurant though . and it looks closed .", "storylet_id": "210351"}], [{"original_text": "We snuck inside anyway, just in case maybe someone was there to make us some food.", "album_id": "72157623216453276", "photo_flickr_id": "4277286182", "setting": "first-2-pick-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "42070", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we snuck inside anyway , just in case maybe someone was there to make us some food .", "storylet_id": "210352"}], [{"original_text": "Nobody was there, so we made our own. Chicken wings!", "album_id": "72157623216453276", "photo_flickr_id": "4277282446", "setting": "first-2-pick-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "42070", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "nobody was there , so we made our own . chicken wings !", "storylet_id": "210353"}], [{"original_text": "My friend made something triangular. I'm not sure what it is, actually. We put money for our food on the counter and left.", "album_id": "72157623216453276", "photo_flickr_id": "4277283176", "setting": "first-2-pick-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "42070", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my friend made something triangular . i 'm not sure what it is , actually . we put money for our food on the counter and left .", "storylet_id": "210354"}], [{"original_text": "The food covered the entire plate. ", "album_id": "72157623216453276", "photo_flickr_id": "4277282446", "setting": "first-2-pick-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "42071", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the food covered the entire plate .", "storylet_id": "210355"}], [{"original_text": "The portion size of the food was more than expected.", "album_id": "72157623216453276", "photo_flickr_id": "4277283176", "setting": "first-2-pick-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "42071", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the portion size of the food was more than expected .", "storylet_id": "210356"}], [{"original_text": "The atmosphere inside the local restaurant is not a traditional one.", "album_id": "72157623216453276", "photo_flickr_id": "4277286182", "setting": "first-2-pick-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "42071", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the atmosphere inside the local restaurant is not a traditional one .", "storylet_id": "210357"}], [{"original_text": "The Sanrasa Restaurant has some of the best gourmet food.", "album_id": "72157623216453276", "photo_flickr_id": "4277288132", "setting": "first-2-pick-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "42071", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the organization organization has some of the best gourmet food .", "storylet_id": "210358"}], [{"original_text": "The view of the city off the coast of the river is beautiful. ", "album_id": "72157623216453276", "photo_flickr_id": "4277288838", "setting": "first-2-pick-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "42071", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view of the city off the coast of the river is beautiful .", "storylet_id": "210359"}], [{"original_text": "Today we went to see Lady Liberty.", "album_id": "72157623216453276", "photo_flickr_id": "4277288838", "setting": "last-3-pick-old-and-tell", "worker_id": "WGX5XU7ETME7ZR0", "story_id": "42072", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to see lady [female] .", "storylet_id": "210360"}], [{"original_text": "After the tour, we were hungry, so we found some place to eat.", "album_id": "72157623216453276", "photo_flickr_id": "4277288132", "setting": "last-3-pick-old-and-tell", "worker_id": "WGX5XU7ETME7ZR0", "story_id": "42072", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after the tour , we were hungry , so we found some place to eat .", "storylet_id": "210361"}], [{"original_text": "It wasn't a particularly busy restaurant.", "album_id": "72157623216453276", "photo_flickr_id": "4277286182", "setting": "last-3-pick-old-and-tell", "worker_id": "WGX5XU7ETME7ZR0", "story_id": "42072", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was n't a particularly busy restaurant .", "storylet_id": "210362"}], [{"original_text": "The food, however, was absolutely wonderful.", "album_id": "72157623216453276", "photo_flickr_id": "4277282446", "setting": "last-3-pick-old-and-tell", "worker_id": "WGX5XU7ETME7ZR0", "story_id": "42072", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food , however , was absolutely wonderful .", "storylet_id": "210363"}], [{"original_text": "I wasn't sure what this was, bud my buddy insisted that I try it. Wow, was it good!", "album_id": "72157623216453276", "photo_flickr_id": "4277283176", "setting": "last-3-pick-old-and-tell", "worker_id": "WGX5XU7ETME7ZR0", "story_id": "42072", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was n't sure what this was , bud my buddy insisted that i try it . wow , was it good !", "storylet_id": "210364"}], [{"original_text": "My journey to New York was a lot of fun. I saw the statue of liberty. ", "album_id": "72157623216453276", "photo_flickr_id": "4277288838", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "42073", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my journey to location location was a lot of fun . i saw the statue of liberty .", "storylet_id": "210365"}], [{"original_text": "I ate at Sanrasa Restaurant. It was delicious!", "album_id": "72157623216453276", "photo_flickr_id": "4277288132", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "42073", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i ate at organization organization . it was delicious !", "storylet_id": "210366"}], [{"original_text": "I stayed at a friends house. She welcomed me with open arms and a huge smile. ", "album_id": "72157623216453276", "photo_flickr_id": "4277286182", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "42073", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i stayed at a friends house . she welcomed me with open arms and a huge smile .", "storylet_id": "210367"}], [{"original_text": "The lunches she made were amazing. ", "album_id": "72157623216453276", "photo_flickr_id": "4277282446", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "42073", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lunches she made were amazing .", "storylet_id": "210368"}], [{"original_text": "But the dinners she made were exquisite. I could stay here forever. ", "album_id": "72157623216453276", "photo_flickr_id": "4277283176", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "42073", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the dinners she made were exquisite . i could stay here forever .", "storylet_id": "210369"}], [{"original_text": "We visited New York to see the sites.", "album_id": "72157623216453276", "photo_flickr_id": "4277288838", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42074", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited location location to see the sites .", "storylet_id": "210370"}], [{"original_text": "We stopped off first to get some ", "album_id": "72157623216453276", "photo_flickr_id": "4277288132", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42074", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped off first to get some", "storylet_id": "210371"}], [{"original_text": "We sat down in a nice tiny restaurant.", "album_id": "72157623216453276", "photo_flickr_id": "4277286182", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42074", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we sat down in a nice tiny restaurant .", "storylet_id": "210372"}], [{"original_text": "The food we ordered was amazing.", "album_id": "72157623216453276", "photo_flickr_id": "4277282446", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42074", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food we ordered was amazing .", "storylet_id": "210373"}], [{"original_text": "We finished up eating and headed out.", "album_id": "72157623216453276", "photo_flickr_id": "4277283176", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42074", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finished up eating and headed out .", "storylet_id": "210374"}], [{"original_text": "There was a man wearing a very interesting white t-shirt.", "album_id": "72157623218395020", "photo_flickr_id": "4278061270", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42075", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a man wearing a very interesting white t-shirt .", "storylet_id": "210375"}], [{"original_text": "We got gas before heading out to the cove.", "album_id": "72157623218395020", "photo_flickr_id": "4278061584", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42075", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got gas before heading out to the cove .", "storylet_id": "210376"}], [{"original_text": "My brother and I were driving for at least four hours.", "album_id": "72157623218395020", "photo_flickr_id": "4277315529", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42075", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brother and i were driving for at least four hours .", "storylet_id": "210377"}], [{"original_text": "The cove was lovely and the water was more blue than ever.", "album_id": "72157623218395020", "photo_flickr_id": "4278061640", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42075", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cove was lovely and the water was more blue than ever .", "storylet_id": "210378"}], [{"original_text": "That night, the concert was energetic and engaging!", "album_id": "72157623218395020", "photo_flickr_id": "4277315595", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42075", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that night , the concert was energetic and engaging !", "storylet_id": "210379"}], [{"original_text": "My best friend, Bernie, and I loved to go on long road trips. ", "album_id": "72157623218395020", "photo_flickr_id": "4277314345", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "42076", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my best friend , [male] , and i loved to go on long road trips .", "storylet_id": "210380"}], [{"original_text": "We would wander by automobile up and down the coast. ", "album_id": "72157623218395020", "photo_flickr_id": "4278061640", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "42076", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we would wander by automobile up and down the coast .", "storylet_id": "210381"}], [{"original_text": "Some interesting foods were discovered on our adventures. ", "album_id": "72157623218395020", "photo_flickr_id": "4278060704", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "42076", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some interesting foods were discovered on our adventures .", "storylet_id": "210382"}], [{"original_text": "There were also excellent concert stops. ", "album_id": "72157623218395020", "photo_flickr_id": "4277315595", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "42076", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also excellent concert stops .", "storylet_id": "210383"}], [{"original_text": "I will remember Bernie for the rest of my drive on the road of life. ", "album_id": "72157623218395020", "photo_flickr_id": "4278060818", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "42076", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i will remember [male] for the rest of my drive on the road of life .", "storylet_id": "210384"}], [{"original_text": "Road trip! Another weekend, another opportunity to see the country.", "album_id": "72157623218395020", "photo_flickr_id": "4277314345", "setting": "last-3-pick-old-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "42077", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "road trip ! another weekend , another opportunity to see the country .", "storylet_id": "210385"}], [{"original_text": "The views along the highway were breathtaking.", "album_id": "72157623218395020", "photo_flickr_id": "4278061640", "setting": "last-3-pick-old-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "42077", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the views along the highway were breathtaking .", "storylet_id": "210386"}], [{"original_text": "We stopped for breakfast at the greatest little cafe.", "album_id": "72157623218395020", "photo_flickr_id": "4278060704", "setting": "last-3-pick-old-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "42077", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stopped for breakfast at the greatest little cafe .", "storylet_id": "210387"}], [{"original_text": "The nightlife in the town was pretty active considering how small it was.", "album_id": "72157623218395020", "photo_flickr_id": "4277315595", "setting": "last-3-pick-old-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "42077", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the nightlife in the town was pretty active considering how small it was .", "storylet_id": "210388"}], [{"original_text": "We made some new friends and ended up staying up all night. We really hope to return soon.", "album_id": "72157623218395020", "photo_flickr_id": "4278060818", "setting": "last-3-pick-old-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "42077", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we made some new friends and ended up staying up all night . we really hope to return soon .", "storylet_id": "210389"}], [{"original_text": "I had to put some air in my car last weekend.", "album_id": "72157623218395020", "photo_flickr_id": "4278061270", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42078", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had to put some air in my car last weekend .", "storylet_id": "210390"}], [{"original_text": "It cost me 25 cents.", "album_id": "72157623218395020", "photo_flickr_id": "4278061584", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42078", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it cost me 25 cents .", "storylet_id": "210391"}], [{"original_text": "I was very happy during the road trip.", "album_id": "72157623218395020", "photo_flickr_id": "4277315529", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42078", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was very happy during the road trip .", "storylet_id": "210392"}], [{"original_text": "The view from the road was spectacular.", "album_id": "72157623218395020", "photo_flickr_id": "4278061640", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42078", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view from the road was spectacular .", "storylet_id": "210393"}], [{"original_text": "After we drove for hours we finally made it to the concert.", "album_id": "72157623218395020", "photo_flickr_id": "4277315595", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42078", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we drove for hours we finally made it to the concert .", "storylet_id": "210394"}], [{"original_text": "The drive to our vacation spot was great and full of fun.", "album_id": "72157623218395020", "photo_flickr_id": "4277314345", "setting": "last-3-pick-old-and-tell", "worker_id": "UW7BQS06OH5BEUP", "story_id": "42079", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the drive to our vacation spot was great and full of fun .", "storylet_id": "210395"}], [{"original_text": "The view from the edge of the shore was peaceful.", "album_id": "72157623218395020", "photo_flickr_id": "4278061640", "setting": "last-3-pick-old-and-tell", "worker_id": "UW7BQS06OH5BEUP", "story_id": "42079", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view from the edge of the shore was peaceful .", "storylet_id": "210396"}], [{"original_text": "We stopped for a bite to eat before heading out for the evening.", "album_id": "72157623218395020", "photo_flickr_id": "4278060704", "setting": "last-3-pick-old-and-tell", "worker_id": "UW7BQS06OH5BEUP", "story_id": "42079", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stopped for a bite to eat before heading out for the evening .", "storylet_id": "210397"}], [{"original_text": "We enjoyed watching the concert with our friends.", "album_id": "72157623218395020", "photo_flickr_id": "4277315595", "setting": "last-3-pick-old-and-tell", "worker_id": "UW7BQS06OH5BEUP", "story_id": "42079", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we enjoyed watching the concert with our friends .", "storylet_id": "210398"}], [{"original_text": "We finally found someone to take our photo together to cap off our vacation.", "album_id": "72157623218395020", "photo_flickr_id": "4278060818", "setting": "last-3-pick-old-and-tell", "worker_id": "UW7BQS06OH5BEUP", "story_id": "42079", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finally found someone to take our photo together to cap off our vacation .", "storylet_id": "210399"}], [{"original_text": "Well well well look what I found! yes im officially engaged!", "album_id": "72157600469787138", "photo_flickr_id": "614440187", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42080", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "well well well look what i found ! yes im officially engaged !", "storylet_id": "210400"}], [{"original_text": "He finally popped the question after all these years.", "album_id": "72157600469787138", "photo_flickr_id": "614440631", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42080", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he finally popped the question after all these years .", "storylet_id": "210401"}], [{"original_text": "After he asked we went on a little hike and saw these awesome trees.", "album_id": "72157600469787138", "photo_flickr_id": "614441313", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42080", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after he asked we went on a little hike and saw these awesome trees .", "storylet_id": "210402"}], [{"original_text": "We then celebrated at sunset looking out into the ocean together, it was so romantic.", "album_id": "72157600469787138", "photo_flickr_id": "614441797", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42080", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we then celebrated at sunset looking out into the ocean together , it was so romantic .", "storylet_id": "210403"}], [{"original_text": "We ended our trip walking amongst the trees one more time.", "album_id": "72157600469787138", "photo_flickr_id": "614442155", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42080", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended our trip walking amongst the trees one more time .", "storylet_id": "210404"}], [{"original_text": "My wife posed with her new ring.", "album_id": "72157600469787138", "photo_flickr_id": "614440303", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42081", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my wife posed with her new ring .", "storylet_id": "210405"}], [{"original_text": "She wanted to keep taking pictures after that.", "album_id": "72157600469787138", "photo_flickr_id": "614440467", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42081", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she wanted to keep taking pictures after that .", "storylet_id": "210406"}], [{"original_text": "I told her we should go see why people were gathering in the village.", "album_id": "72157600469787138", "photo_flickr_id": "614440665", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42081", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i told her we should go see why people were gathering in the village .", "storylet_id": "210407"}], [{"original_text": "After that event, we took pictures at our cabin.", "album_id": "72157600469787138", "photo_flickr_id": "614442007", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42081", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that event , we took pictures at our cabin .", "storylet_id": "210408"}], [{"original_text": "She was so lovely, I snapped this shot of her on the beach before we left the island.", "album_id": "72157600469787138", "photo_flickr_id": "614442091", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42081", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was so lovely , i snapped this shot of her on the beach before we left the island .", "storylet_id": "210409"}], [{"original_text": "my beautiful engagement ring.", "album_id": "72157600469787138", "photo_flickr_id": "614440187", "setting": "last-3-pick-old-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42082", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my beautiful engagement ring .", "storylet_id": "210410"}], [{"original_text": "Me and my significant other posing.", "album_id": "72157600469787138", "photo_flickr_id": "614440631", "setting": "last-3-pick-old-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42082", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "me and my significant other posing .", "storylet_id": "210411"}], [{"original_text": "The forest was unbelievable.", "album_id": "72157600469787138", "photo_flickr_id": "614441313", "setting": "last-3-pick-old-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42082", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the forest was unbelievable .", "storylet_id": "210412"}], [{"original_text": "The sunsets in Bali are the most captivating.", "album_id": "72157600469787138", "photo_flickr_id": "614441797", "setting": "last-3-pick-old-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42082", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sunsets in location are the most captivating .", "storylet_id": "210413"}], [{"original_text": "Me and my husband walking through this amzaing forest.", "album_id": "72157600469787138", "photo_flickr_id": "614442155", "setting": "last-3-pick-old-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42082", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "me and my husband walking through this amzaing forest .", "storylet_id": "210414"}], [{"original_text": "Johnny bought the perfect ring to propose to his girlfriend,", "album_id": "72157600469787138", "photo_flickr_id": "614440187", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42083", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] bought the perfect ring to propose to his girlfriend ,", "storylet_id": "210415"}], [{"original_text": "and she accepted it!", "album_id": "72157600469787138", "photo_flickr_id": "614440631", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42083", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and she accepted it !", "storylet_id": "210416"}], [{"original_text": "They got engaged in the beautiful trees located on the beach.", "album_id": "72157600469787138", "photo_flickr_id": "614441313", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42083", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they got engaged in the beautiful trees located on the beach .", "storylet_id": "210417"}], [{"original_text": "And celebrated their new engagement by watching the sunset,", "album_id": "72157600469787138", "photo_flickr_id": "614441797", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42083", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and celebrated their new engagement by watching the sunset ,", "storylet_id": "210418"}], [{"original_text": "but of course only after they got some pictures of their engagement location. ", "album_id": "72157600469787138", "photo_flickr_id": "614442155", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42083", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but of course only after they got some pictures of their engagement location .", "storylet_id": "210419"}], [{"original_text": "Today we got engaged. I got a large diamond ring.", "album_id": "72157600469787138", "photo_flickr_id": "614440187", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42084", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we got engaged . i got a large diamond ring .", "storylet_id": "210420"}], [{"original_text": "We are so happy together.", "album_id": "72157600469787138", "photo_flickr_id": "614440631", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42084", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are so happy together .", "storylet_id": "210421"}], [{"original_text": "While walking, we came across some bamboo trees.", "album_id": "72157600469787138", "photo_flickr_id": "614441313", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42084", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "while walking , we came across some bamboo trees .", "storylet_id": "210422"}], [{"original_text": "We sat and watched the sunset together. It was so beautiful.", "album_id": "72157600469787138", "photo_flickr_id": "614441797", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42084", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we sat and watched the sunset together . it was so beautiful .", "storylet_id": "210423"}], [{"original_text": "The next day we walked through the forest and came across so many bamboo trees.", "album_id": "72157600469787138", "photo_flickr_id": "614442155", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42084", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the next day we walked through the forest and came across so many bamboo trees .", "storylet_id": "210424"}], [{"original_text": "Autumn is a great time of year. ", "album_id": "22863", "photo_flickr_id": "888215", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42085", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is a great time of year .", "storylet_id": "210425"}], [{"original_text": "Ducks begin their migration south. ", "album_id": "22863", "photo_flickr_id": "888179", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42085", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "ducks begin their migration south .", "storylet_id": "210426"}], [{"original_text": "The trees lose their leaves in preparation for the colder weather. ", "album_id": "22863", "photo_flickr_id": "888180", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42085", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the trees lose their leaves in preparation for the colder weather .", "storylet_id": "210427"}], [{"original_text": "the foliage is absolutely stunning. ", "album_id": "22863", "photo_flickr_id": "888200", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42085", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the foliage is absolutely stunning .", "storylet_id": "210428"}], [{"original_text": "The local inhabitants take advantage of the beach before it gets too cold. ", "album_id": "22863", "photo_flickr_id": "888230", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42085", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the local inhabitants take advantage of the beach before it gets too cold .", "storylet_id": "210429"}], [{"original_text": "Autumn is here. Soon the ducks will fly to warmer weather.", "album_id": "22863", "photo_flickr_id": "888179", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42086", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is here . soon the ducks will fly to warmer weather .", "storylet_id": "210430"}], [{"original_text": "The leaves are changing color.", "album_id": "22863", "photo_flickr_id": "888200", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42086", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the leaves are changing color .", "storylet_id": "210431"}], [{"original_text": "The last sand castles of summerwait for the tide to wash them away.", "album_id": "22863", "photo_flickr_id": "888221", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42086", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the last sand castles of summerwait for the tide to wash them away .", "storylet_id": "210432"}], [{"original_text": "People are spending more time indoors.", "album_id": "22863", "photo_flickr_id": "888222", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42086", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people are spending more time indoors .", "storylet_id": "210433"}], [{"original_text": "They have left the beach behind.", "album_id": "22863", "photo_flickr_id": "888230", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42086", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they have left the beach behind .", "storylet_id": "210434"}], [{"original_text": "It was fall out and the animals were enjoying the weather.", "album_id": "22863", "photo_flickr_id": "888179", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42087", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was fall out and the animals were enjoying the weather .", "storylet_id": "210435"}], [{"original_text": "The tree's leaves indicated the season.", "album_id": "22863", "photo_flickr_id": "888200", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42087", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tree 's leaves indicated the season .", "storylet_id": "210436"}], [{"original_text": "It was a weird time of year to build a sandcastle, but the sand was good.", "album_id": "22863", "photo_flickr_id": "888221", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42087", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a weird time of year to build a sandcastle , but the sand was good .", "storylet_id": "210437"}], [{"original_text": "It was fun to do something people usually do during the summer in the fall.", "album_id": "22863", "photo_flickr_id": "888222", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42087", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was fun to do something people usually do during the summer in the fall .", "storylet_id": "210438"}], [{"original_text": "At the end of the day the sandcastle was pretty magnificent. ", "album_id": "22863", "photo_flickr_id": "888230", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42087", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day the sandcastle was pretty magnificent .", "storylet_id": "210439"}], [{"original_text": "While I was walking by the water, I found some ducks swimming.", "album_id": "22863", "photo_flickr_id": "888179", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42088", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while i was walking by the water , i found some ducks swimming .", "storylet_id": "210440"}], [{"original_text": "Then I came across some trees they were all kinds of colors.", "album_id": "22863", "photo_flickr_id": "888200", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42088", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then i came across some trees they were all kinds of colors .", "storylet_id": "210441"}], [{"original_text": "After that I found some sand castles on the ground.", "album_id": "22863", "photo_flickr_id": "888221", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42088", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that i found some sand castles on the ground .", "storylet_id": "210442"}], [{"original_text": "In the distance, I noticed some buildings hidden in the trees.", "album_id": "22863", "photo_flickr_id": "888222", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42088", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the distance , i noticed some buildings hidden in the trees .", "storylet_id": "210443"}], [{"original_text": "I walked back to the sand castles to build on them some more.", "album_id": "22863", "photo_flickr_id": "888230", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42088", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i walked back to the sand castles to build on them some more .", "storylet_id": "210444"}], [{"original_text": "We spent the day near the lake reveling in the Autumn colors.", "album_id": "22863", "photo_flickr_id": "888215", "setting": "last-3-pick-old-and-tell", "worker_id": "7222UWE1NM58RBC", "story_id": "42089", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we spent the day near the lake reveling in the [female] colors .", "storylet_id": "210445"}], [{"original_text": "There were several ducks floating around.", "album_id": "22863", "photo_flickr_id": "888179", "setting": "last-3-pick-old-and-tell", "worker_id": "7222UWE1NM58RBC", "story_id": "42089", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were several ducks floating around .", "storylet_id": "210446"}], [{"original_text": "We walked around and enjoyed nature.", "album_id": "22863", "photo_flickr_id": "888180", "setting": "last-3-pick-old-and-tell", "worker_id": "7222UWE1NM58RBC", "story_id": "42089", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we walked around and enjoyed nature .", "storylet_id": "210447"}], [{"original_text": "Nature was truly showing her splendor with all of the beautiful colors.", "album_id": "22863", "photo_flickr_id": "888200", "setting": "last-3-pick-old-and-tell", "worker_id": "7222UWE1NM58RBC", "story_id": "42089", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "nature was truly showing her splendor with all of the beautiful colors .", "storylet_id": "210448"}], [{"original_text": "After a long walk, we spent a relaxing afternoon building an intricate sand castle.", "album_id": "22863", "photo_flickr_id": "888230", "setting": "last-3-pick-old-and-tell", "worker_id": "7222UWE1NM58RBC", "story_id": "42089", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long walk , we spent a relaxing afternoon building an intricate sand castle .", "storylet_id": "210449"}], [{"original_text": "We live withing walking distance of a theme park.", "album_id": "601575", "photo_flickr_id": "26478323", "setting": "first-2-pick-and-tell", "worker_id": "ZGGYNJA8GZ7EWIM", "story_id": "42090", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we live withing walking distance of a theme park .", "storylet_id": "210450"}], [{"original_text": "There are railroad tracks by the path we take to get to the park.", "album_id": "601575", "photo_flickr_id": "26478357", "setting": "first-2-pick-and-tell", "worker_id": "ZGGYNJA8GZ7EWIM", "story_id": "42090", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are railroad tracks by the path we take to get to the park .", "storylet_id": "210451"}], [{"original_text": "Across the river from the path you an see the roller coasters.", "album_id": "601575", "photo_flickr_id": "26478465", "setting": "first-2-pick-and-tell", "worker_id": "ZGGYNJA8GZ7EWIM", "story_id": "42090", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "across the river from the path you an see the roller coasters .", "storylet_id": "210452"}], [{"original_text": "It takes about 30 minutes to walk from our house to the theme park.", "album_id": "601575", "photo_flickr_id": "26478487", "setting": "first-2-pick-and-tell", "worker_id": "ZGGYNJA8GZ7EWIM", "story_id": "42090", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it takes about 30 minutes to walk from our house to the theme park .", "storylet_id": "210453"}], [{"original_text": "When you get to the theme park entrance you see the flag waving.", "album_id": "601575", "photo_flickr_id": "26478495", "setting": "first-2-pick-and-tell", "worker_id": "ZGGYNJA8GZ7EWIM", "story_id": "42090", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when you get to the theme park entrance you see the flag waving .", "storylet_id": "210454"}], [{"original_text": "I always ride the Brain Buster roller coaster on my birthday. A broken transmission isn't going to stop me.", "album_id": "601575", "photo_flickr_id": "26478545", "setting": "first-2-pick-and-tell", "worker_id": "SKWYXXIYANTQ9K6", "story_id": "42091", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i always ride the brain buster roller coaster on my birthday . a broken transmission is n't going to stop me .", "storylet_id": "210455"}], [{"original_text": "The only other transportation available at my home is designed for a 2-year-old. ", "album_id": "601575", "photo_flickr_id": "26478559", "setting": "first-2-pick-and-tell", "worker_id": "SKWYXXIYANTQ9K6", "story_id": "42091", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the only other transportation available at my home is designed for a 2-year-old .", "storylet_id": "210456"}], [{"original_text": "Nothing was going to stop me, so I walked the train tracks.", "album_id": "601575", "photo_flickr_id": "26478331", "setting": "first-2-pick-and-tell", "worker_id": "SKWYXXIYANTQ9K6", "story_id": "42091", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nothing was going to stop me , so i walked the train tracks .", "storylet_id": "210457"}], [{"original_text": "It took forever but I finally made it to the amusement park.", "album_id": "601575", "photo_flickr_id": "26478495", "setting": "first-2-pick-and-tell", "worker_id": "SKWYXXIYANTQ9K6", "story_id": "42091", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it took forever but i finally made it to the amusement park .", "storylet_id": "210458"}], [{"original_text": "That's me, in the second car, turning green and about to lose my lunch. I can't imagine a better way to spend my birthday.", "album_id": "601575", "photo_flickr_id": "26478465", "setting": "first-2-pick-and-tell", "worker_id": "SKWYXXIYANTQ9K6", "story_id": "42091", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that 's me , in the second car , turning green and about to lose my lunch . i ca n't imagine a better way to spend my birthday .", "storylet_id": "210459"}], [{"original_text": "This is a picture of a train track.", "album_id": "601575", "photo_flickr_id": "26478323", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42092", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a train track .", "storylet_id": "210460"}], [{"original_text": "This is a picture of an old track.", "album_id": "601575", "photo_flickr_id": "26478357", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42092", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of an old track .", "storylet_id": "210461"}], [{"original_text": "This is a picture of a park ride.", "album_id": "601575", "photo_flickr_id": "26478465", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42092", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of a park ride .", "storylet_id": "210462"}], [{"original_text": "This is a picture of a boardwalk.", "album_id": "601575", "photo_flickr_id": "26478487", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42092", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of a boardwalk .", "storylet_id": "210463"}], [{"original_text": "This is a picture of a flag.", "album_id": "601575", "photo_flickr_id": "26478495", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42092", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a flag .", "storylet_id": "210464"}], [{"original_text": "The first thing we did on our trip was take a trip down the railroad.", "album_id": "601575", "photo_flickr_id": "26478323", "setting": "last-3-pick-old-and-tell", "worker_id": "8QOYKUSN6RVC8OC", "story_id": "42093", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the first thing we did on our trip was take a trip down the railroad .", "storylet_id": "210465"}], [{"original_text": "It goes on for a good distance, but it has some interesting scenery.", "album_id": "601575", "photo_flickr_id": "26478357", "setting": "last-3-pick-old-and-tell", "worker_id": "8QOYKUSN6RVC8OC", "story_id": "42093", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it goes on for a good distance , but it has some interesting scenery .", "storylet_id": "210466"}], [{"original_text": "Afterword we worked our way back in the park and had some fun on the coasters.", "album_id": "601575", "photo_flickr_id": "26478465", "setting": "last-3-pick-old-and-tell", "worker_id": "8QOYKUSN6RVC8OC", "story_id": "42093", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterword we worked our way back in the park and had some fun on the coasters .", "storylet_id": "210467"}], [{"original_text": "After the day was done we headed back to the visitor's lounge for a bit.", "album_id": "601575", "photo_flickr_id": "26478487", "setting": "last-3-pick-old-and-tell", "worker_id": "8QOYKUSN6RVC8OC", "story_id": "42093", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the day was done we headed back to the visitor 's lounge for a bit .", "storylet_id": "210468"}], [{"original_text": "We had some live music and other attractions and spent the rest of the time relaxing.", "album_id": "601575", "photo_flickr_id": "26478495", "setting": "last-3-pick-old-and-tell", "worker_id": "8QOYKUSN6RVC8OC", "story_id": "42093", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had some live music and other attractions and spent the rest of the time relaxing .", "storylet_id": "210469"}], [{"original_text": "The blue car looked nice", "album_id": "601575", "photo_flickr_id": "26478545", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42094", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the blue car looked nice", "storylet_id": "210470"}], [{"original_text": "near the bicycles.", "album_id": "601575", "photo_flickr_id": "26478559", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42094", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "near the bicycles .", "storylet_id": "210471"}], [{"original_text": "The train tracks were also nice", "album_id": "601575", "photo_flickr_id": "26478331", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42094", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the train tracks were also nice", "storylet_id": "210472"}], [{"original_text": "near the flag building", "album_id": "601575", "photo_flickr_id": "26478495", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42094", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "near the flag building", "storylet_id": "210473"}], [{"original_text": "that held a rollercoaster.", "album_id": "601575", "photo_flickr_id": "26478465", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42094", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that held a rollercoaster .", "storylet_id": "210474"}], [{"original_text": "We went to the beach today.", "album_id": "604048", "photo_flickr_id": "26455683", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42095", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the beach today .", "storylet_id": "210475"}], [{"original_text": "It was very sunny outside.", "album_id": "604048", "photo_flickr_id": "26455720", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42095", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was very sunny outside .", "storylet_id": "210476"}], [{"original_text": "We went rock climbing.", "album_id": "604048", "photo_flickr_id": "26456005", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42095", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went rock climbing .", "storylet_id": "210477"}], [{"original_text": "It was very fun.", "album_id": "604048", "photo_flickr_id": "26456029", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42095", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was very fun .", "storylet_id": "210478"}], [{"original_text": "We had a great time.", "album_id": "604048", "photo_flickr_id": "26456418", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42095", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time .", "storylet_id": "210479"}], [{"original_text": "It was all over. The world has been destroyed.", "album_id": "604048", "photo_flickr_id": "26455875", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42096", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was all over . the world has been destroyed .", "storylet_id": "210480"}], [{"original_text": "We were the last human beings on Earth.", "album_id": "604048", "photo_flickr_id": "26456660", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42096", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were the last human beings on location .", "storylet_id": "210481"}], [{"original_text": "I climbed rocks out of boredom.", "album_id": "604048", "photo_flickr_id": "26456005", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42096", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i climbed rocks out of boredom .", "storylet_id": "210482"}], [{"original_text": "The other two played on the beach.", "album_id": "604048", "photo_flickr_id": "26456310", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42096", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the other two played on the beach .", "storylet_id": "210483"}], [{"original_text": "You know, the end of the world wasn't so bad.", "album_id": "604048", "photo_flickr_id": "26456736", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42096", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you know , the end of the world was n't so bad .", "storylet_id": "210484"}], [{"original_text": "This is a picture of the beach.", "album_id": "604048", "photo_flickr_id": "26455683", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42097", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of the beach .", "storylet_id": "210485"}], [{"original_text": "This is a picture of breaking dawn.", "album_id": "604048", "photo_flickr_id": "26455720", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42097", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of breaking dawn .", "storylet_id": "210486"}], [{"original_text": "This is a picture of rocks.", "album_id": "604048", "photo_flickr_id": "26456005", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42097", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of rocks .", "storylet_id": "210487"}], [{"original_text": "A woman is climbing rocks.", "album_id": "604048", "photo_flickr_id": "26456029", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42097", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a woman is climbing rocks .", "storylet_id": "210488"}], [{"original_text": "This is a picture of sand.", "album_id": "604048", "photo_flickr_id": "26456418", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42097", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of sand .", "storylet_id": "210489"}], [{"original_text": "The beach was calm", "album_id": "604048", "photo_flickr_id": "26455875", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42098", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beach was calm", "storylet_id": "210490"}], [{"original_text": "when the boys arrived.", "album_id": "604048", "photo_flickr_id": "26456660", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42098", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when the boys arrived .", "storylet_id": "210491"}], [{"original_text": "They wanted to climb the rocks", "album_id": "604048", "photo_flickr_id": "26456005", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42098", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they wanted to climb the rocks", "storylet_id": "210492"}], [{"original_text": "and play around", "album_id": "604048", "photo_flickr_id": "26456310", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42098", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and play around", "storylet_id": "210493"}], [{"original_text": "before they decided to talk at night.", "album_id": "604048", "photo_flickr_id": "26456736", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42098", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before they decided to talk at night .", "storylet_id": "210494"}], [{"original_text": "The sea stretched before us in an endless ocean of blue.", "album_id": "604048", "photo_flickr_id": "26455683", "setting": "last-3-pick-old-and-tell", "worker_id": "Y3NWOD6829IJB53", "story_id": "42099", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sea stretched before us in an endless ocean of blue .", "storylet_id": "210495"}], [{"original_text": "In the evening, the sun began to set in the west over the water.", "album_id": "604048", "photo_flickr_id": "26455720", "setting": "last-3-pick-old-and-tell", "worker_id": "Y3NWOD6829IJB53", "story_id": "42099", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in the evening , the sun began to set in the west over the water .", "storylet_id": "210496"}], [{"original_text": "Rock climbing was an interesting experience.", "album_id": "604048", "photo_flickr_id": "26456005", "setting": "last-3-pick-old-and-tell", "worker_id": "Y3NWOD6829IJB53", "story_id": "42099", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "rock climbing was an interesting experience .", "storylet_id": "210497"}], [{"original_text": "I was afraid to fall, but took a chance and waved. ", "album_id": "604048", "photo_flickr_id": "26456029", "setting": "last-3-pick-old-and-tell", "worker_id": "Y3NWOD6829IJB53", "story_id": "42099", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was afraid to fall , but took a chance and waved .", "storylet_id": "210498"}], [{"original_text": "The water is so blue, it almost looks like ice.", "album_id": "604048", "photo_flickr_id": "26456418", "setting": "last-3-pick-old-and-tell", "worker_id": "Y3NWOD6829IJB53", "story_id": "42099", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the water is so blue , it almost looks like ice .", "storylet_id": "210499"}], [{"original_text": "Here we are in shadow on our way to sightsee.", "album_id": "599274", "photo_flickr_id": "26370993", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "42100", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are in shadow on our way to sightsee .", "storylet_id": "210500"}], [{"original_text": "We made sure to take sunblock to this sunny place.", "album_id": "599274", "photo_flickr_id": "26371167", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "42100", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made sure to take sunblock to this sunny place .", "storylet_id": "210501"}], [{"original_text": "We stopped at an historic monument.", "album_id": "599274", "photo_flickr_id": "26371911", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "42100", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stopped at an historic monument .", "storylet_id": "210502"}], [{"original_text": "It was in ruins but very interesting.", "album_id": "599274", "photo_flickr_id": "26372471", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "42100", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was in ruins but very interesting .", "storylet_id": "210503"}], [{"original_text": "Later we gorged at dinner.", "album_id": "599274", "photo_flickr_id": "26376922", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "42100", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later we gorged at dinner .", "storylet_id": "210504"}], [{"original_text": "On their road trip, Jeff and John did many things. ", "album_id": "599274", "photo_flickr_id": "26377129", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "42101", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on their road trip , [male] and [male] did many things .", "storylet_id": "210505"}], [{"original_text": "Before the trip they studied the map they found of the water front. ", "album_id": "599274", "photo_flickr_id": "26372163", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "42101", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before the trip they studied the map they found of the water front .", "storylet_id": "210506"}], [{"original_text": "They loved stopping and looking at the boats. ", "album_id": "599274", "photo_flickr_id": "26372279", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "42101", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they loved stopping and looking at the boats .", "storylet_id": "210507"}], [{"original_text": "Their favorite was stop was this restaurant and all the crawdads they ate there. ", "album_id": "599274", "photo_flickr_id": "26376922", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "42101", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their favorite was stop was this restaurant and all the crawdads they ate there .", "storylet_id": "210508"}], [{"original_text": "After eating they rented a little tent and snoozed on the beach.", "album_id": "599274", "photo_flickr_id": "26377044", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "42101", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after eating they rented a little tent and snoozed on the beach .", "storylet_id": "210509"}], [{"original_text": "It's time to go to the Russian Museum.", "album_id": "599274", "photo_flickr_id": "26370993", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "42102", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's time to go to the russian museum .", "storylet_id": "210510"}], [{"original_text": "We had to stop to get ear wax removal first.", "album_id": "599274", "photo_flickr_id": "26371167", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "42102", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to stop to get ear wax removal first .", "storylet_id": "210511"}], [{"original_text": "Here's the placard and...", "album_id": "599274", "photo_flickr_id": "26371911", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "42102", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's the placard and ...", "storylet_id": "210512"}], [{"original_text": "...what's left of the museum.", "album_id": "599274", "photo_flickr_id": "26372471", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "42102", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "... what 's left of the museum .", "storylet_id": "210513"}], [{"original_text": "We said screw it and went for dinner.", "album_id": "599274", "photo_flickr_id": "26376922", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "42102", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we said screw it and went for dinner .", "storylet_id": "210514"}], [{"original_text": "Having fun, clowning around on vacation. ", "album_id": "599274", "photo_flickr_id": "26370993", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "42103", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "having fun , clowning around on vacation .", "storylet_id": "210515"}], [{"original_text": "Sunscreen needed for an awesome day at the beach. ", "album_id": "599274", "photo_flickr_id": "26371167", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "42103", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sunscreen needed for an awesome day at the beach .", "storylet_id": "210516"}], [{"original_text": "At a very historic monument. ", "album_id": "599274", "photo_flickr_id": "26371911", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "42103", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at a very historic monument .", "storylet_id": "210517"}], [{"original_text": "What a cool entrance to the beach and also the hotel. ", "album_id": "599274", "photo_flickr_id": "26372471", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "42103", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what a cool entrance to the beach and also the hotel .", "storylet_id": "210518"}], [{"original_text": "Can't go wrong with fresh crab, yum!", "album_id": "599274", "photo_flickr_id": "26376922", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "42103", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ca n't go wrong with fresh crab , yum !", "storylet_id": "210519"}], [{"original_text": "Today my husband and I visited the ruins at Athens.", "album_id": "599274", "photo_flickr_id": "26370993", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42104", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today my husband and i visited the ruins at location .", "storylet_id": "210520"}], [{"original_text": "We made sure to pack plenty of sunscreen because we were both fair skinned.", "album_id": "599274", "photo_flickr_id": "26371167", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42104", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made sure to pack plenty of sunscreen because we were both fair skinned .", "storylet_id": "210521"}], [{"original_text": "We saw several historic monuments.", "album_id": "599274", "photo_flickr_id": "26371911", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42104", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw several historic monuments .", "storylet_id": "210522"}], [{"original_text": "The ruins were fascinating.", "album_id": "599274", "photo_flickr_id": "26372471", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42104", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ruins were fascinating .", "storylet_id": "210523"}], [{"original_text": "For lunch, we enjoyed fresh seafood at the shore.", "album_id": "599274", "photo_flickr_id": "26376922", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42104", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for lunch , we enjoyed fresh seafood at the shore .", "storylet_id": "210524"}], [{"original_text": "Started the day off with a sandwich.We just sat around talking about our day.", "album_id": "72157623227106842", "photo_flickr_id": "4280982815", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "42105", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "started the day off with a sandwich.we just sat around talking about our day .", "storylet_id": "210525"}], [{"original_text": "These are my friends I just had lunch with.And we decided to head to the beach.", "album_id": "72157623227106842", "photo_flickr_id": "4281727202", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "42105", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these are my friends i just had lunch with.and we decided to head to the beach .", "storylet_id": "210526"}], [{"original_text": "When we got there, people had been sculpting in the sand.The first we seen was a dragon.So amazing and creative.", "album_id": "72157623227106842", "photo_flickr_id": "4280984943", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "42105", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we got there , people had been sculpting in the sand.the first we seen was a dragon.so amazing and creative .", "storylet_id": "210527"}], [{"original_text": "Many surf boards waiting to be used but nobody out on the water.", "album_id": "72157623227106842", "photo_flickr_id": "4280985325", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "42105", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many surf boards waiting to be used but nobody out on the water .", "storylet_id": "210528"}], [{"original_text": "They are so cute..my girlfriend went to the bathroom and they were flirting.", "album_id": "72157623227106842", "photo_flickr_id": "4281730264", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "42105", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are so cute..my girlfriend went to the bathroom and they were flirting .", "storylet_id": "210529"}], [{"original_text": "We had a great weekend together.", "album_id": "72157623227106842", "photo_flickr_id": "4281727202", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "42106", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great weekend together .", "storylet_id": "210530"}], [{"original_text": "Before hitting the beach, we stopped at a burger stand.", "album_id": "72157623227106842", "photo_flickr_id": "4280982815", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "42106", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before hitting the beach , we stopped at a burger stand .", "storylet_id": "210531"}], [{"original_text": "The weather was great for hanging out at the beach.", "album_id": "72157623227106842", "photo_flickr_id": "4280985325", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "42106", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the weather was great for hanging out at the beach .", "storylet_id": "210532"}], [{"original_text": "We saw awesome sand sculptures.", "album_id": "72157623227106842", "photo_flickr_id": "4280984943", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "42106", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw awesome sand sculptures .", "storylet_id": "210533"}], [{"original_text": "We can't wait to come back here!", "album_id": "72157623227106842", "photo_flickr_id": "4281729614", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "42106", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ca n't wait to come back here !", "storylet_id": "210534"}], [{"original_text": "The veggie burgers at the caf\u00c3\u0192\u00c2\u00a9 were perfect for lunch.", "album_id": "72157623227106842", "photo_flickr_id": "4280982815", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42107", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the veggie burgers at the caf\u00c3\u0192\u00c6\u2019\u00c3\u201a\u00c2\u00a9 were perfect for lunch .", "storylet_id": "210535"}], [{"original_text": "We walked downtown to get to our next destination.", "album_id": "72157623227106842", "photo_flickr_id": "4281727202", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42107", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we walked downtown to get to our next destination .", "storylet_id": "210536"}], [{"original_text": "On the beach someone created a sand sculpture of a dragon.", "album_id": "72157623227106842", "photo_flickr_id": "4280984943", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42107", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on the beach someone created a sand sculpture of a dragon .", "storylet_id": "210537"}], [{"original_text": "The beach was rather empty for such a lovely day", "album_id": "72157623227106842", "photo_flickr_id": "4280985325", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42107", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beach was rather empty for such a lovely day", "storylet_id": "210538"}], [{"original_text": "For dinner we ate at the local restaurant.", "album_id": "72157623227106842", "photo_flickr_id": "4281730264", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42107", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for dinner we ate at the local restaurant .", "storylet_id": "210539"}], [{"original_text": "We got a burger and a drink before heading out.", "album_id": "72157623227106842", "photo_flickr_id": "4280982815", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42108", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got a burger and a drink before heading out .", "storylet_id": "210540"}], [{"original_text": "We toured the streets for awhile.", "album_id": "72157623227106842", "photo_flickr_id": "4281727202", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42108", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we toured the streets for awhile .", "storylet_id": "210541"}], [{"original_text": "Then we went over to the beach.", "album_id": "72157623227106842", "photo_flickr_id": "4280984943", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42108", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we went over to the beach .", "storylet_id": "210542"}], [{"original_text": "We found a good spot to enjoy the day.", "album_id": "72157623227106842", "photo_flickr_id": "4280985325", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42108", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found a good spot to enjoy the day .", "storylet_id": "210543"}], [{"original_text": "Then we all met up for dinner and drinks.", "album_id": "72157623227106842", "photo_flickr_id": "4281730264", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42108", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we all met up for dinner and drinks .", "storylet_id": "210544"}], [{"original_text": "The friends were going to explore the beach today.", "album_id": "72157623227106842", "photo_flickr_id": "4281727202", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "42109", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends were going to explore the beach today .", "storylet_id": "210545"}], [{"original_text": "But first they needed to get some food.", "album_id": "72157623227106842", "photo_flickr_id": "4280982815", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "42109", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but first they needed to get some food .", "storylet_id": "210546"}], [{"original_text": "Once they were down at the beach they began to relax.", "album_id": "72157623227106842", "photo_flickr_id": "4280985325", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "42109", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once they were down at the beach they began to relax .", "storylet_id": "210547"}], [{"original_text": "They walked around and saw a huge monster made of sand.", "album_id": "72157623227106842", "photo_flickr_id": "4280984943", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "42109", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they walked around and saw a huge monster made of sand .", "storylet_id": "210548"}], [{"original_text": "At the end of the day, they headed home, happy with their activities. ", "album_id": "72157623227106842", "photo_flickr_id": "4281729614", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "42109", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , they headed home , happy with their activities .", "storylet_id": "210549"}], [{"original_text": "on this tour we seen old cemetery's that had famous people buried there.", "album_id": "72157623229175918", "photo_flickr_id": "4282579024", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "42110", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on this tour we seen old cemetery 's that had famous people buried there .", "storylet_id": "210550"}], [{"original_text": "Historic buildings lined the streets, some were older than others.", "album_id": "72157623229175918", "photo_flickr_id": "4282579910", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "42110", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "historic buildings lined the streets , some were older than others .", "storylet_id": "210551"}], [{"original_text": "The sunsets in this place are amazing.", "album_id": "72157623229175918", "photo_flickr_id": "4282581254", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "42110", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sunsets in this place are amazing .", "storylet_id": "210552"}], [{"original_text": "The ocean view made the water look flat and calm.", "album_id": "72157623229175918", "photo_flickr_id": "4281837583", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "42110", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ocean view made the water look flat and calm .", "storylet_id": "210553"}], [{"original_text": "This picture was taken when we was leaving the town and headed to the airport.", "album_id": "72157623229175918", "photo_flickr_id": "4281840079", "setting": "first-2-pick-and-tell", "worker_id": "12II5LMX1WBXGBM", "story_id": "42110", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this picture was taken when we was leaving the town and headed to the airport .", "storylet_id": "210554"}], [{"original_text": "My first week studying abroad in Germany.", "album_id": "72157623229175918", "photo_flickr_id": "4281834275", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "42111", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my first week studying abroad in location .", "storylet_id": "210555"}], [{"original_text": "This is my dorm that the school have picked for me.", "album_id": "72157623229175918", "photo_flickr_id": "4282579910", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "42111", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is my dorm that the school have picked for me .", "storylet_id": "210556"}], [{"original_text": "Early morning, the street I take to go to class.", "album_id": "72157623229175918", "photo_flickr_id": "4281838357", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "42111", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "early morning , the street i take to go to class .", "storylet_id": "210557"}], [{"original_text": "The buildings I pass every morning. There's a nice lady there that always wave to me.", "album_id": "72157623229175918", "photo_flickr_id": "4281838689", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "42111", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the buildings i pass every morning . there 's a nice lady there that always wave to me .", "storylet_id": "210558"}], [{"original_text": "This beautiful arch that I absolutely love.", "album_id": "72157623229175918", "photo_flickr_id": "4281840079", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "42111", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this beautiful arch that i absolutely love .", "storylet_id": "210559"}], [{"original_text": "We arrived in town and were ready to see the sights.", "album_id": "72157623229175918", "photo_flickr_id": "4282579024", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42112", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived in town and were ready to see the sights .", "storylet_id": "210560"}], [{"original_text": "We quickly check into the hotel and dropped our bags.", "album_id": "72157623229175918", "photo_flickr_id": "4282579910", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42112", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we quickly check into the hotel and dropped our bags .", "storylet_id": "210561"}], [{"original_text": "And, immediately, we headed for the beaches.", "album_id": "72157623229175918", "photo_flickr_id": "4282581254", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42112", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and , immediately , we headed for the beaches .", "storylet_id": "210562"}], [{"original_text": "We love the coastline and the views...", "album_id": "72157623229175918", "photo_flickr_id": "4281837583", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42112", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we love the coastline and the views ...", "storylet_id": "210563"}], [{"original_text": "But, we were really here to see the architectural structures.", "album_id": "72157623229175918", "photo_flickr_id": "4281840079", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42112", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but , we were really here to see the architectural structures .", "storylet_id": "210564"}], [{"original_text": "We were very excited to be visiting Greece on our trip.", "album_id": "72157623229175918", "photo_flickr_id": "4281834275", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42113", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were very excited to be visiting location on our trip .", "storylet_id": "210565"}], [{"original_text": "The architecture was absolutely stunning throughout the city. ", "album_id": "72157623229175918", "photo_flickr_id": "4282579910", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42113", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the architecture was absolutely stunning throughout the city .", "storylet_id": "210566"}], [{"original_text": "We stopped by the pier and watched the fish swimming below for awhile. ", "album_id": "72157623229175918", "photo_flickr_id": "4281838357", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42113", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stopped by the pier and watched the fish swimming below for awhile .", "storylet_id": "210567"}], [{"original_text": "We went to a local cafe to get some food since everyone was hungry.", "album_id": "72157623229175918", "photo_flickr_id": "4281838689", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42113", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went to a local cafe to get some food since everyone was hungry .", "storylet_id": "210568"}], [{"original_text": "Everybody loved the trip, we are excited to come back next year. ", "album_id": "72157623229175918", "photo_flickr_id": "4281840079", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42113", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everybody loved the trip , we are excited to come back next year .", "storylet_id": "210569"}], [{"original_text": "I took this as we were driving by these sad apartments.", "album_id": "72157623229175918", "photo_flickr_id": "4281834275", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "42114", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took this as we were driving by these sad apartments .", "storylet_id": "210570"}], [{"original_text": "This place looks so dirty and scary. ", "album_id": "72157623229175918", "photo_flickr_id": "4282579910", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "42114", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this place looks so dirty and scary .", "storylet_id": "210571"}], [{"original_text": "We were afraid to approach the people we saw on the dock.", "album_id": "72157623229175918", "photo_flickr_id": "4281838357", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "42114", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were afraid to approach the people we saw on the dock .", "storylet_id": "210572"}], [{"original_text": "Another old and sad building in the small town.", "album_id": "72157623229175918", "photo_flickr_id": "4281838689", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "42114", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another old and sad building in the small town .", "storylet_id": "210573"}], [{"original_text": "I felt that these were the gates of hell as we drove away.", "album_id": "72157623229175918", "photo_flickr_id": "4281840079", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "42114", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i felt that these were the gates of hell as we drove away .", "storylet_id": "210574"}], [{"original_text": "The band arrived onto the stage and the crowed screamed.", "album_id": "72157623229527416", "photo_flickr_id": "4282705304", "setting": "first-2-pick-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "42115", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the band arrived onto the stage and the crowed screamed .", "storylet_id": "210575"}], [{"original_text": " To get the crowed even more hyped up the shined spot lights across thepeople.", "album_id": "72157623229527416", "photo_flickr_id": "4282698960", "setting": "first-2-pick-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "42115", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to get the crowed even more hyped up the shined spot lights across thepeople .", "storylet_id": "210576"}], [{"original_text": " The band was very loud and had every one jumping.", "album_id": "72157623229527416", "photo_flickr_id": "4281958507", "setting": "first-2-pick-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "42115", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band was very loud and had every one jumping .", "storylet_id": "210577"}], [{"original_text": "They filmed the whole event for every one to see.", "album_id": "72157623229527416", "photo_flickr_id": "4282695314", "setting": "first-2-pick-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "42115", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they filmed the whole event for every one to see .", "storylet_id": "210578"}], [{"original_text": " The group mellowed out to some slow music.", "album_id": "72157623229527416", "photo_flickr_id": "4281949683", "setting": "first-2-pick-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "42115", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the group mellowed out to some slow music .", "storylet_id": "210579"}], [{"original_text": "The concert goers were ready to get the music started.", "album_id": "72157623229527416", "photo_flickr_id": "4282705304", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42116", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the concert goers were ready to get the music started .", "storylet_id": "210580"}], [{"original_text": "Smoke billowed on stage but no performers showed up.", "album_id": "72157623229527416", "photo_flickr_id": "4281958507", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42116", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "smoke billowed on stage but no performers showed up .", "storylet_id": "210581"}], [{"original_text": "Then the lead singer rose from underneath the stage.", "album_id": "72157623229527416", "photo_flickr_id": "4282695314", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42116", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the lead singer rose from underneath the stage .", "storylet_id": "210582"}], [{"original_text": "The crowd went absolutely wild.", "album_id": "72157623229527416", "photo_flickr_id": "4282694612", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42116", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowd went absolutely wild .", "storylet_id": "210583"}], [{"original_text": "The concert rocked the park for 3 straight hours.", "album_id": "72157623229527416", "photo_flickr_id": "4281949683", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42116", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the concert rocked the park for 3 straight hours .", "storylet_id": "210584"}], [{"original_text": "We arrived to the show with terrible seats...", "album_id": "72157623229527416", "photo_flickr_id": "4282705304", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42117", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived to the show with terrible seats ...", "storylet_id": "210585"}], [{"original_text": "However, that wasn't going to slow me down.", "album_id": "72157623229527416", "photo_flickr_id": "4281958507", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42117", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "however , that was n't going to slow me down .", "storylet_id": "210586"}], [{"original_text": "I started pushing and crawling and moving my way forward.", "album_id": "72157623229527416", "photo_flickr_id": "4282695314", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42117", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i started pushing and crawling and moving my way forward .", "storylet_id": "210587"}], [{"original_text": "Before I knew it, I was down in front of the stage...", "album_id": "72157623229527416", "photo_flickr_id": "4282694612", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42117", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "before i knew it , i was down in front of the stage ...", "storylet_id": "210588"}], [{"original_text": "Until, I was led away by security. It was fun while it lasted.", "album_id": "72157623229527416", "photo_flickr_id": "4281949683", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42117", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "until , i was led away by security . it was fun while it lasted .", "storylet_id": "210589"}], [{"original_text": "Finally, the day came for the concert of one of my favorite bands.", "album_id": "72157623229527416", "photo_flickr_id": "4282705304", "setting": "last-3-pick-old-and-tell", "worker_id": "EFRQDGYG5SWWODN", "story_id": "42118", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "finally , the day came for the concert of one of my favorite bands .", "storylet_id": "210590"}], [{"original_text": "We all packed the stage as we waited for the stage to come alive.", "album_id": "72157623229527416", "photo_flickr_id": "4282698960", "setting": "last-3-pick-old-and-tell", "worker_id": "EFRQDGYG5SWWODN", "story_id": "42118", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all packed the stage as we waited for the stage to come alive .", "storylet_id": "210591"}], [{"original_text": "An opening act came on first, which got the crowd pumped for the evening.", "album_id": "72157623229527416", "photo_flickr_id": "4281958507", "setting": "last-3-pick-old-and-tell", "worker_id": "EFRQDGYG5SWWODN", "story_id": "42118", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "an opening act came on first , which got the crowd pumped for the evening .", "storylet_id": "210592"}], [{"original_text": "As the lights changed, we all knew who was up next: the musician we've been waiting for.", "album_id": "72157623229527416", "photo_flickr_id": "4282695314", "setting": "last-3-pick-old-and-tell", "worker_id": "EFRQDGYG5SWWODN", "story_id": "42118", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the lights changed , we all knew who was up next : the musician we 've been waiting for .", "storylet_id": "210593"}], [{"original_text": "The musician brought down the house as everyone danced and had a great time.", "album_id": "72157623229527416", "photo_flickr_id": "4281949683", "setting": "last-3-pick-old-and-tell", "worker_id": "EFRQDGYG5SWWODN", "story_id": "42118", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the musician brought down the house as everyone danced and had a great time .", "storylet_id": "210594"}], [{"original_text": "There was a Grey Geese concert last night.", "album_id": "72157623229527416", "photo_flickr_id": "4282705304", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "42119", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a grey geese concert last night .", "storylet_id": "210595"}], [{"original_text": "It was a sold-out show.", "album_id": "72157623229527416", "photo_flickr_id": "4282698960", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "42119", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a sold-out show .", "storylet_id": "210596"}], [{"original_text": "They played all of their greatest hits.", "album_id": "72157623229527416", "photo_flickr_id": "4281958507", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "42119", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they played all of their greatest hits .", "storylet_id": "210597"}], [{"original_text": "They had awesome lighting in their set.", "album_id": "72157623229527416", "photo_flickr_id": "4282695314", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "42119", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had awesome lighting in their set .", "storylet_id": "210598"}], [{"original_text": "They even played their hit song Beaver Feet.", "album_id": "72157623229527416", "photo_flickr_id": "4281949683", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "42119", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even played their hit song beaver feet .", "storylet_id": "210599"}], [{"original_text": "We went to the beach and were ready for some sun.", "album_id": "72157623230196572", "photo_flickr_id": "4282287061", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42120", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the beach and were ready for some sun .", "storylet_id": "210600"}], [{"original_text": "We walked and walked until we found a great spot.", "album_id": "72157623230196572", "photo_flickr_id": "4283033722", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42120", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we walked and walked until we found a great spot .", "storylet_id": "210601"}], [{"original_text": "We set up our umbrella and relaxed for a few minutes.", "album_id": "72157623230196572", "photo_flickr_id": "4283036984", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42120", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we set up our umbrella and relaxed for a few minutes .", "storylet_id": "210602"}], [{"original_text": "And, then we saw the bar and decided we wanted a drink.", "album_id": "72157623230196572", "photo_flickr_id": "4282295407", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42120", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , then we saw the bar and decided we wanted a drink .", "storylet_id": "210603"}], [{"original_text": "After a few hours, we departed and headed for home.", "album_id": "72157623230196572", "photo_flickr_id": "4283047618", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42120", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a few hours , we departed and headed for home .", "storylet_id": "210604"}], [{"original_text": "The beach provided such a relaxing scenery. ", "album_id": "72157623230196572", "photo_flickr_id": "4283036984", "setting": "first-2-pick-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "42121", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beach provided such a relaxing scenery .", "storylet_id": "210605"}], [{"original_text": "At the beach there was a tent selling various trinkets.", "album_id": "72157623230196572", "photo_flickr_id": "4282295407", "setting": "first-2-pick-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "42121", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at the beach there was a tent selling various trinkets .", "storylet_id": "210606"}], [{"original_text": "There was an old sign that read \"Welcome to Cascreole Tree House Restaurant.\"", "album_id": "72157623230196572", "photo_flickr_id": "4282297069", "setting": "first-2-pick-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "42121", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was an old sign that read `` welcome to cascreole tree house restaurant . ''", "storylet_id": "210607"}], [{"original_text": "The women took a picture by a poster that had a beer on it. ", "album_id": "72157623230196572", "photo_flickr_id": "4282298385", "setting": "first-2-pick-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "42121", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the women took a picture by a poster that had a beer on it .", "storylet_id": "210608"}], [{"original_text": "The family got together after a long day apart. ", "album_id": "72157623230196572", "photo_flickr_id": "4283049132", "setting": "first-2-pick-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "42121", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family got together after a long day apart .", "storylet_id": "210609"}], [{"original_text": "This year, for vacation, we went to the beach.", "album_id": "72157623230196572", "photo_flickr_id": "4282287061", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42122", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this year , for vacation , we went to the beach .", "storylet_id": "210610"}], [{"original_text": "The sand felt so good between our toes.", "album_id": "72157623230196572", "photo_flickr_id": "4283033722", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42122", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sand felt so good between our toes .", "storylet_id": "210611"}], [{"original_text": "We found a relaxing spot to set up our chairs and towels.", "album_id": "72157623230196572", "photo_flickr_id": "4283036984", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42122", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we found a relaxing spot to set up our chairs and towels .", "storylet_id": "210612"}], [{"original_text": "After the beach, we did some shopping at local stands.", "album_id": "72157623230196572", "photo_flickr_id": "4282295407", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42122", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the beach , we did some shopping at local stands .", "storylet_id": "210613"}], [{"original_text": "As we left, we decided that we'd definitely be back again soon.", "album_id": "72157623230196572", "photo_flickr_id": "4283047618", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42122", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as we left , we decided that we 'd definitely be back again soon .", "storylet_id": "210614"}], [{"original_text": "I went down to the beach last weekend.", "album_id": "72157623230196572", "photo_flickr_id": "4282287061", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42123", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went down to the beach last weekend .", "storylet_id": "210615"}], [{"original_text": "I had a great time three.", "album_id": "72157623230196572", "photo_flickr_id": "4283033722", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42123", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had a great time three .", "storylet_id": "210616"}], [{"original_text": "There were a lot of boats out there.", "album_id": "72157623230196572", "photo_flickr_id": "4283036984", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42123", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of boats out there .", "storylet_id": "210617"}], [{"original_text": "The bathroom was very small.", "album_id": "72157623230196572", "photo_flickr_id": "4282295407", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42123", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bathroom was very small .", "storylet_id": "210618"}], [{"original_text": "It was a lot of fun.", "album_id": "72157623230196572", "photo_flickr_id": "4283047618", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42123", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a lot of fun .", "storylet_id": "210619"}], [{"original_text": "Today, my family went for a walk along the beach.", "album_id": "72157623230196572", "photo_flickr_id": "4282287061", "setting": "last-3-pick-old-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "42124", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , my family went for a walk along the beach .", "storylet_id": "210620"}], [{"original_text": "The weather was beautiful!", "album_id": "72157623230196572", "photo_flickr_id": "4283033722", "setting": "last-3-pick-old-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "42124", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the weather was beautiful !", "storylet_id": "210621"}], [{"original_text": "As we walked towards home, we saw a small shack.", "album_id": "72157623230196572", "photo_flickr_id": "4283036984", "setting": "last-3-pick-old-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "42124", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as we walked towards home , we saw a small shack .", "storylet_id": "210622"}], [{"original_text": "The shack sold sarongs and other beach wear.", "album_id": "72157623230196572", "photo_flickr_id": "4282295407", "setting": "last-3-pick-old-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "42124", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the shack sold sarongs and other beach wear .", "storylet_id": "210623"}], [{"original_text": "We had a lot of fun, I hope we can go back soon!", "album_id": "72157623230196572", "photo_flickr_id": "4283047618", "setting": "last-3-pick-old-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "42124", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a lot of fun , i hope we can go back soon !", "storylet_id": "210624"}], [{"original_text": "Bobby took his first trip to the coast.", "album_id": "72157623472187146", "photo_flickr_id": "4283661054", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42125", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] took his first trip to the coast .", "storylet_id": "210625"}], [{"original_text": "It started with a bird pooping on his head.", "album_id": "72157623472187146", "photo_flickr_id": "4282925551", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42125", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it started with a bird pooping on his head .", "storylet_id": "210626"}], [{"original_text": "After this he headed out to the Rock.", "album_id": "72157623472187146", "photo_flickr_id": "4283664368", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42125", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after this he headed out to the rock .", "storylet_id": "210627"}], [{"original_text": "He found small pools of weird animals.", "album_id": "72157623472187146", "photo_flickr_id": "4282919883", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42125", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he found small pools of weird animals .", "storylet_id": "210628"}], [{"original_text": "After the hike he met a random dude and had drinks.", "album_id": "72157623472187146", "photo_flickr_id": "4283128981", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42125", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the hike he met a random dude and had drinks .", "storylet_id": "210629"}], [{"original_text": "We went to look at the rocks on the beach. ", "album_id": "72157623472187146", "photo_flickr_id": "4283664368", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42126", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to look at the rocks on the beach .", "storylet_id": "210630"}], [{"original_text": "The boulders on the shore had been worn smooth.", "album_id": "72157623472187146", "photo_flickr_id": "4283666240", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42126", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boulders on the shore had been worn smooth .", "storylet_id": "210631"}], [{"original_text": "They were rounded by the pounding waves.", "album_id": "72157623472187146", "photo_flickr_id": "4282927113", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42126", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were rounded by the pounding waves .", "storylet_id": "210632"}], [{"original_text": "It was hard to believe, because in some places the water seemed so calm.", "album_id": "72157623472187146", "photo_flickr_id": "4282921549", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42126", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was hard to believe , because in some places the water seemed so calm .", "storylet_id": "210633"}], [{"original_text": "From a distance, the shore hardly seemed touched.", "album_id": "72157623472187146", "photo_flickr_id": "4283674108", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42126", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "from a distance , the shore hardly seemed touched .", "storylet_id": "210634"}], [{"original_text": "Finally got to go on the seaside vacation I've always wanted.", "album_id": "72157623472187146", "photo_flickr_id": "4283661054", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42127", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "finally got to go on the seaside vacation i 've always wanted .", "storylet_id": "210635"}], [{"original_text": "A hike along the shore all day my first day there.", "album_id": "72157623472187146", "photo_flickr_id": "4282925551", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42127", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a hike along the shore all day my first day there .", "storylet_id": "210636"}], [{"original_text": "The beauty of nature around me rejuvenated my soul.", "album_id": "72157623472187146", "photo_flickr_id": "4283664368", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42127", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beauty of nature around me rejuvenated my soul .", "storylet_id": "210637"}], [{"original_text": "I could not believe everything that this place had to see.", "album_id": "72157623472187146", "photo_flickr_id": "4282919883", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42127", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i could not believe everything that this place had to see .", "storylet_id": "210638"}], [{"original_text": "It's the end of the hi I stopped at a local cafe that get a drink and eat some food.", "album_id": "72157623472187146", "photo_flickr_id": "4283128981", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42127", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's the end of the hi i stopped at a local cafe that get a drink and eat some food .", "storylet_id": "210639"}], [{"original_text": "Jeff and I went on a vacation.", "album_id": "72157623472187146", "photo_flickr_id": "4283661054", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "42128", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and i went on a vacation .", "storylet_id": "210640"}], [{"original_text": "We brought our pet seagull Randy.", "album_id": "72157623472187146", "photo_flickr_id": "4282925551", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "42128", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we brought our pet seagull [male] .", "storylet_id": "210641"}], [{"original_text": "We saw beautiful beach mountains.", "album_id": "72157623472187146", "photo_flickr_id": "4283664368", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "42128", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw beautiful beach mountains .", "storylet_id": "210642"}], [{"original_text": "We saw yellow seaweed too!", "album_id": "72157623472187146", "photo_flickr_id": "4282919883", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "42128", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw yellow seaweed too !", "storylet_id": "210643"}], [{"original_text": "Jeff ate way too much and grew a beard. It was a good vacation.", "album_id": "72157623472187146", "photo_flickr_id": "4283128981", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "42128", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] ate way too much and grew a beard . it was a good vacation .", "storylet_id": "210644"}], [{"original_text": "I pulled off to the side of the road to take a few pictures of the view.", "album_id": "72157623472187146", "photo_flickr_id": "4283661054", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42129", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i pulled off to the side of the road to take a few pictures of the view .", "storylet_id": "210645"}], [{"original_text": "One of the pictures included this lovely seagull, completely by chance.", "album_id": "72157623472187146", "photo_flickr_id": "4282925551", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42129", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of the pictures included this lovely seagull , completely by chance .", "storylet_id": "210646"}], [{"original_text": "I hadn't planned to go to the beach but couldn't resist after seeing the teal blue water.", "album_id": "72157623472187146", "photo_flickr_id": "4283664368", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42129", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had n't planned to go to the beach but could n't resist after seeing the teal blue water .", "storylet_id": "210647"}], [{"original_text": "The beach trip paid off and I saw some incredibly interesting marine life.", "album_id": "72157623472187146", "photo_flickr_id": "4282919883", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42129", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beach trip paid off and i saw some incredibly interesting marine life .", "storylet_id": "210648"}], [{"original_text": "My trip was enhanced even more after we visited the bar on the beach.", "album_id": "72157623472187146", "photo_flickr_id": "4283128981", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42129", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my trip was enhanced even more after we visited the bar on the beach .", "storylet_id": "210649"}], [{"original_text": "Took a trip to see a different side of Los Angeles and headed to Venice.", "album_id": "72157623108347441", "photo_flickr_id": "4284308232", "setting": "first-2-pick-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "42130", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "took a trip to see a different side of location location and headed to location .", "storylet_id": "210650"}], [{"original_text": "They were offering medical marijuana in plain daylight.", "album_id": "72157623108347441", "photo_flickr_id": "4283564201", "setting": "first-2-pick-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "42130", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were offering medical marijuana in plain daylight .", "storylet_id": "210651"}], [{"original_text": "I thought about getting a tattoo but decided I had better wait.", "album_id": "72157623108347441", "photo_flickr_id": "4284305642", "setting": "first-2-pick-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "42130", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i thought about getting a tattoo but decided i had better wait .", "storylet_id": "210652"}], [{"original_text": "I found my way into a shop with all sort of crazy things.", "album_id": "72157623108347441", "photo_flickr_id": "4284306252", "setting": "first-2-pick-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "42130", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i found my way into a shop with all sort of crazy things .", "storylet_id": "210653"}], [{"original_text": "I ended the day with a beautiful shit at sunset. It was a very interesting trip.", "album_id": "72157623108347441", "photo_flickr_id": "4284305336", "setting": "first-2-pick-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "42130", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ended the day with a beautiful shit at sunset . it was a very interesting trip .", "storylet_id": "210654"}], [{"original_text": "I went for a walk on the boardwalk.", "album_id": "72157623108347441", "photo_flickr_id": "4283563711", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42131", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a walk on the boardwalk .", "storylet_id": "210655"}], [{"original_text": "People in the area were very open about marijuana use and I was shocked.", "album_id": "72157623108347441", "photo_flickr_id": "4283564201", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42131", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people in the area were very open about marijuana use and i was shocked .", "storylet_id": "210656"}], [{"original_text": "When the sun began to set, many people started to hoola hoop.", "album_id": "72157623108347441", "photo_flickr_id": "4284303978", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42131", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when the sun began to set , many people started to hoola hoop .", "storylet_id": "210657"}], [{"original_text": "I decided to get a henna tattoo at a local shop.", "album_id": "72157623108347441", "photo_flickr_id": "4284305642", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42131", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i decided to get a henna tattoo at a local shop .", "storylet_id": "210658"}], [{"original_text": "I also bought a bikini from the local shop so I could have it for the next time I went to the beach. ", "album_id": "72157623108347441", "photo_flickr_id": "4284306252", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42131", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i also bought a bikini from the local shop so i could have it for the next time i went to the beach .", "storylet_id": "210659"}], [{"original_text": "Today I made signs for the marijuana rally. ", "album_id": "72157623108347441", "photo_flickr_id": "4284308232", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "42132", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i made signs for the marijuana rally .", "storylet_id": "210660"}], [{"original_text": "In favor of lighting up those joints in public, yes we are! ", "album_id": "72157623108347441", "photo_flickr_id": "4283564201", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "42132", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in favor of lighting up those joints in public , yes we are !", "storylet_id": "210661"}], [{"original_text": "We went to a local tattoo shop and tattooed our love of marijuana all over ourselves. ", "album_id": "72157623108347441", "photo_flickr_id": "4284305642", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "42132", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went to a local tattoo shop and tattooed our love of marijuana all over ourselves .", "storylet_id": "210662"}], [{"original_text": "We then went to a store and bought a lot of candy and pizza. ", "album_id": "72157623108347441", "photo_flickr_id": "4284306252", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "42132", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we then went to a store and bought a lot of candy and pizza .", "storylet_id": "210663"}], [{"original_text": "Lots of people were photographing us dancing naked in the fields all hopped up on marijuana and sugar. ", "album_id": "72157623108347441", "photo_flickr_id": "4284305336", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "42132", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lots of people were photographing us dancing naked in the fields all hopped up on marijuana and sugar .", "storylet_id": "210664"}], [{"original_text": "Yesterday, we went to a festival.", "album_id": "72157623108347441", "photo_flickr_id": "4283563711", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42133", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday , we went to a festival .", "storylet_id": "210665"}], [{"original_text": "There were lots of people there.", "album_id": "72157623108347441", "photo_flickr_id": "4283564201", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42133", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were lots of people there .", "storylet_id": "210666"}], [{"original_text": "Most of them were just having fun and doing their thing.", "album_id": "72157623108347441", "photo_flickr_id": "4284303978", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42133", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most of them were just having fun and doing their thing .", "storylet_id": "210667"}], [{"original_text": "We saw many shops open for business.", "album_id": "72157623108347441", "photo_flickr_id": "4284305642", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42133", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw many shops open for business .", "storylet_id": "210668"}], [{"original_text": "With all the lights, it definitely was a festive occasion.", "album_id": "72157623108347441", "photo_flickr_id": "4284306252", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42133", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with all the lights , it definitely was a festive occasion .", "storylet_id": "210669"}], [{"original_text": "Last week I visited Venice beach.", "album_id": "72157623108347441", "photo_flickr_id": "4284308232", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "42134", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week i visited location beach .", "storylet_id": "210670"}], [{"original_text": "There were people on the beach selling medical marijuana.", "album_id": "72157623108347441", "photo_flickr_id": "4283564201", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "42134", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were people on the beach selling medical marijuana .", "storylet_id": "210671"}], [{"original_text": "And places to get tattoos!", "album_id": "72157623108347441", "photo_flickr_id": "4284305642", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "42134", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and places to get tattoos !", "storylet_id": "210672"}], [{"original_text": "My favorite store sold funny tshirts.", "album_id": "72157623108347441", "photo_flickr_id": "4284306252", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "42134", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my favorite store sold funny tshirts .", "storylet_id": "210673"}], [{"original_text": "The sunset on the beach was breathtaking, I had to take a photo.", "album_id": "72157623108347441", "photo_flickr_id": "4284305336", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "42134", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sunset on the beach was breathtaking , i had to take a photo .", "storylet_id": "210674"}], [{"original_text": "It was a nice winter day and I wanted to go on a stroll.", "album_id": "72157623232423090", "photo_flickr_id": "4283274263", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42135", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a nice winter day and i wanted to go on a stroll .", "storylet_id": "210675"}], [{"original_text": " So I gathered my family and we walked along the shoreline.", "album_id": "72157623232423090", "photo_flickr_id": "4283274143", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42135", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so i gathered my family and we walked along the shoreline .", "storylet_id": "210676"}], [{"original_text": " We were surprised to be able to find swans so late in the season.", "album_id": "72157623232423090", "photo_flickr_id": "4283273899", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42135", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were surprised to be able to find swans so late in the season .", "storylet_id": "210677"}], [{"original_text": "My children were delighted to be able to attend to see the birds in the winter.", "album_id": "72157623232423090", "photo_flickr_id": "4283273973", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42135", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my children were delighted to be able to attend to see the birds in the winter .", "storylet_id": "210678"}], [{"original_text": "We walked until dusk then went home and drink some hot cocoa by the fireplace.", "album_id": "72157623232423090", "photo_flickr_id": "4284015934", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42135", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we walked until dusk then went home and drink some hot cocoa by the fireplace .", "storylet_id": "210679"}], [{"original_text": "We went for a night walk in the park Today.", "album_id": "72157623232423090", "photo_flickr_id": "4284015934", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42136", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went for a night walk in the park today .", "storylet_id": "210680"}], [{"original_text": "Everything was really nice lit up by lights.", "album_id": "72157623232423090", "photo_flickr_id": "4283272763", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42136", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything was really nice lit up by lights .", "storylet_id": "210681"}], [{"original_text": "The park was empty and I was able to get many nice pictures.", "album_id": "72157623232423090", "photo_flickr_id": "4284016432", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42136", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the park was empty and i was able to get many nice pictures .", "storylet_id": "210682"}], [{"original_text": "A fog started forming and it started to snow.", "album_id": "72157623232423090", "photo_flickr_id": "4283272959", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42136", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a fog started forming and it started to snow .", "storylet_id": "210683"}], [{"original_text": "The snow covered banks make a good subject for pictures.", "album_id": "72157623232423090", "photo_flickr_id": "4284016772", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42136", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the snow covered banks make a good subject for pictures .", "storylet_id": "210684"}], [{"original_text": "It was a cold winter night but I couldn't sleep.", "album_id": "72157623232423090", "photo_flickr_id": "4284015934", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42137", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a cold winter night but i could n't sleep .", "storylet_id": "210685"}], [{"original_text": "I walked around the local lake and soaked up the scenery.", "album_id": "72157623232423090", "photo_flickr_id": "4283272763", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42137", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i walked around the local lake and soaked up the scenery .", "storylet_id": "210686"}], [{"original_text": "The barren trees in the moonlight were haunting.", "album_id": "72157623232423090", "photo_flickr_id": "4284016432", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42137", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the barren trees in the moonlight were haunting .", "storylet_id": "210687"}], [{"original_text": "And as the morning ushered the night out, an eerie fog rolled in.", "album_id": "72157623232423090", "photo_flickr_id": "4283272959", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42137", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and as the morning ushered the night out , an eerie fog rolled in .", "storylet_id": "210688"}], [{"original_text": "It all culminated in a dreary day.", "album_id": "72157623232423090", "photo_flickr_id": "4284016772", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42137", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it all culminated in a dreary day .", "storylet_id": "210689"}], [{"original_text": "This is the view at night on our lake side destination!", "album_id": "72157623232423090", "photo_flickr_id": "4284015934", "setting": "last-3-pick-old-and-tell", "worker_id": "T8BWV8NFJZ8C9D6", "story_id": "42138", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the view at night on our lake side destination !", "storylet_id": "210690"}], [{"original_text": "Even the ducks at night are out to enjoy the view.", "album_id": "72157623232423090", "photo_flickr_id": "4283272763", "setting": "last-3-pick-old-and-tell", "worker_id": "T8BWV8NFJZ8C9D6", "story_id": "42138", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the ducks at night are out to enjoy the view .", "storylet_id": "210691"}], [{"original_text": "The lights reflecting off the water right before nightfall offer a scene to remember", "album_id": "72157623232423090", "photo_flickr_id": "4284016432", "setting": "last-3-pick-old-and-tell", "worker_id": "T8BWV8NFJZ8C9D6", "story_id": "42138", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lights reflecting off the water right before nightfall offer a scene to remember", "storylet_id": "210692"}], [{"original_text": "A snapshot during the day of the lights, gorgeous view of the lake and snowfall on the outcrop.", "album_id": "72157623232423090", "photo_flickr_id": "4283272959", "setting": "last-3-pick-old-and-tell", "worker_id": "T8BWV8NFJZ8C9D6", "story_id": "42138", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a snapshot during the day of the lights , gorgeous view of the lake and snowfall on the outcrop .", "storylet_id": "210693"}], [{"original_text": "And here is another view of the land further out from the lights.", "album_id": "72157623232423090", "photo_flickr_id": "4284016772", "setting": "last-3-pick-old-and-tell", "worker_id": "T8BWV8NFJZ8C9D6", "story_id": "42138", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and here is another view of the land further out from the lights .", "storylet_id": "210694"}], [{"original_text": "A light snow had fallen. ", "album_id": "72157623232423090", "photo_flickr_id": "4283274263", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42139", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a light snow had fallen .", "storylet_id": "210695"}], [{"original_text": "It wasn't too cold though. ", "album_id": "72157623232423090", "photo_flickr_id": "4283274143", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42139", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was n't too cold though .", "storylet_id": "210696"}], [{"original_text": "The swans were swimming. ", "album_id": "72157623232423090", "photo_flickr_id": "4283273899", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42139", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the swans were swimming .", "storylet_id": "210697"}], [{"original_text": "The ducks seemed oblivious. ", "album_id": "72157623232423090", "photo_flickr_id": "4283273973", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42139", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ducks seemed oblivious .", "storylet_id": "210698"}], [{"original_text": "At night, the tree line reflected in the water. ", "album_id": "72157623232423090", "photo_flickr_id": "4284015934", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42139", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night , the tree line reflected in the water .", "storylet_id": "210699"}], [{"original_text": "A family went to visit a city festival.", "album_id": "23536", "photo_flickr_id": "913388", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42140", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a family went to visit a city festival .", "storylet_id": "210700"}], [{"original_text": "There was a farmer's market where one could buy local vegetables.", "album_id": "23536", "photo_flickr_id": "913285", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42140", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a farmer 's market where one could buy local vegetables .", "storylet_id": "210701"}], [{"original_text": "There was music to at the festival.", "album_id": "23536", "photo_flickr_id": "913323", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42140", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was music to at the festival .", "storylet_id": "210702"}], [{"original_text": "There were rides for the families to enjoy.", "album_id": "23536", "photo_flickr_id": "913371", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42140", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were rides for the families to enjoy .", "storylet_id": "210703"}], [{"original_text": "The day was overcast, but the temperature was nice to enjoy the festival.", "album_id": "23536", "photo_flickr_id": "913211", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42140", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day was overcast , but the temperature was nice to enjoy the festival .", "storylet_id": "210704"}], [{"original_text": "Went to a local food festival today.", "album_id": "23536", "photo_flickr_id": "913092", "setting": "first-2-pick-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "42141", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went to a local food festival today .", "storylet_id": "210705"}], [{"original_text": "So many veggies to buy, they look so fresh!", "album_id": "23536", "photo_flickr_id": "913285", "setting": "first-2-pick-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "42141", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so many veggies to buy , they look so fresh !", "storylet_id": "210706"}], [{"original_text": "Here is my buddies veggie stand looks great!", "album_id": "23536", "photo_flickr_id": "913350", "setting": "first-2-pick-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "42141", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is my buddies veggie stand looks great !", "storylet_id": "210707"}], [{"original_text": "My kid and I on one of the spinning rides.", "album_id": "23536", "photo_flickr_id": "913371", "setting": "first-2-pick-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "42141", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my kid and i on one of the spinning rides .", "storylet_id": "210708"}], [{"original_text": "There was ever a small band there play!", "album_id": "23536", "photo_flickr_id": "913111", "setting": "first-2-pick-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "42141", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was ever a small band there play !", "storylet_id": "210709"}], [{"original_text": "My parents and I went to a carnival in the foreign country we were visiting.", "album_id": "23536", "photo_flickr_id": "913388", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42142", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my parents and i went to a carnival in the foreign country we were visiting .", "storylet_id": "210710"}], [{"original_text": "The locals had set up a lot of booths to sell fruits and vegetables.", "album_id": "23536", "photo_flickr_id": "913285", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42142", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the locals had set up a lot of booths to sell fruits and vegetables .", "storylet_id": "210711"}], [{"original_text": "We watched a local rock concert put on at the festival.", "album_id": "23536", "photo_flickr_id": "913323", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42142", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we watched a local rock concert put on at the festival .", "storylet_id": "210712"}], [{"original_text": "Later, we rode a carnival ride that was very familiar to us.", "album_id": "23536", "photo_flickr_id": "913371", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42142", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later , we rode a carnival ride that was very familiar to us .", "storylet_id": "210713"}], [{"original_text": "The thermometers all showed the temperature in celsius instead of fahrenheit.", "album_id": "23536", "photo_flickr_id": "913211", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42142", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the thermometers all showed the temperature in celsius instead of fahrenheit .", "storylet_id": "210714"}], [{"original_text": "The fair was packed with people.", "album_id": "23536", "photo_flickr_id": "913388", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42143", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fair was packed with people .", "storylet_id": "210715"}], [{"original_text": "At the organic market vendors sold their produce to people who came to see the concert. ", "album_id": "23536", "photo_flickr_id": "913285", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42143", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at the organic market vendors sold their produce to people who came to see the concert .", "storylet_id": "210716"}], [{"original_text": "The sound system at the show was really loud.", "album_id": "23536", "photo_flickr_id": "913323", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42143", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sound system at the show was really loud .", "storylet_id": "210717"}], [{"original_text": "Kids and adults both enjoyed the rides.", "album_id": "23536", "photo_flickr_id": "913371", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42143", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "kids and adults both enjoyed the rides .", "storylet_id": "210718"}], [{"original_text": "Overall the fair was a huge success and everyone wanted to stay as long as possible.", "album_id": "23536", "photo_flickr_id": "913211", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42143", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall the fair was a huge success and everyone wanted to stay as long as possible .", "storylet_id": "210719"}], [{"original_text": "The farmers market looks great today, and we will start here.", "album_id": "23536", "photo_flickr_id": "913092", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "42144", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the farmers market looks great today , and we will start here .", "storylet_id": "210720"}], [{"original_text": "As we move along there are so more fresh products at this location.", "album_id": "23536", "photo_flickr_id": "913285", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "42144", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as we move along there are so more fresh products at this location .", "storylet_id": "210721"}], [{"original_text": "Yum, some even better beats and onions are right here.", "album_id": "23536", "photo_flickr_id": "913350", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "42144", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "yum , some even better beats and onions are right here .", "storylet_id": "210722"}], [{"original_text": "After all this walking the father and son want to sit and relax for a minute.", "album_id": "23536", "photo_flickr_id": "913371", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "42144", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after all this walking the father and son want to sit and relax for a minute .", "storylet_id": "210723"}], [{"original_text": "Finally, after all that shopping we are going to enjoy one of the shoes here.", "album_id": "23536", "photo_flickr_id": "913111", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "42144", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , after all that shopping we are going to enjoy one of the shoes here .", "storylet_id": "210724"}], [{"original_text": "This naval pier held lots of old ships.", "album_id": "471463", "photo_flickr_id": "20159765", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42145", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this naval pier held lots of old ships .", "storylet_id": "210725"}], [{"original_text": "There were also some defunct fighter jets being displayed.", "album_id": "471463", "photo_flickr_id": "20159860", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42145", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were also some defunct fighter jets being displayed .", "storylet_id": "210726"}], [{"original_text": "People came from around the state to look at the boats.", "album_id": "471463", "photo_flickr_id": "20159992", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42145", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people came from around the state to look at the boats .", "storylet_id": "210727"}], [{"original_text": "Some of the electronics on this old warship still worked.", "album_id": "471463", "photo_flickr_id": "20160419", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42145", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the electronics on this old warship still worked .", "storylet_id": "210728"}], [{"original_text": "The \"Midway\" brought a lot of tourists to the naval pier.", "album_id": "471463", "photo_flickr_id": "20160230", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42145", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the `` midway '' brought a lot of tourists to the naval pier .", "storylet_id": "210729"}], [{"original_text": "The plane took us all the way to Florida.", "album_id": "471463", "photo_flickr_id": "20159914", "setting": "first-2-pick-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42146", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the plane took us all the way to location .", "storylet_id": "210730"}], [{"original_text": "Getting off the plane and seeing our new surroundings was wonderful.", "album_id": "471463", "photo_flickr_id": "20159992", "setting": "first-2-pick-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42146", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "getting off the plane and seeing our new surroundings was wonderful .", "storylet_id": "210731"}], [{"original_text": "We immediately took a boat ride to the Keys.", "album_id": "471463", "photo_flickr_id": "20159765", "setting": "first-2-pick-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42146", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we immediately took a boat ride to the keys .", "storylet_id": "210732"}], [{"original_text": "There, we spent hours at the beach.", "album_id": "471463", "photo_flickr_id": "20160476", "setting": "first-2-pick-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42146", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there , we spent hours at the beach .", "storylet_id": "210733"}], [{"original_text": "The day turned out to be one of the best I've ever had.", "album_id": "471463", "photo_flickr_id": "20160771", "setting": "first-2-pick-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42146", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day turned out to be one of the best i 've ever had .", "storylet_id": "210734"}], [{"original_text": "The family went sailing for a few days, they decided to drop anchor and explore the area.", "album_id": "471463", "photo_flickr_id": "20159765", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42147", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went sailing for a few days , they decided to drop anchor and explore the area .", "storylet_id": "210735"}], [{"original_text": "They saw the jets at the air strip,", "album_id": "471463", "photo_flickr_id": "20159860", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42147", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they saw the jets at the air strip ,", "storylet_id": "210736"}], [{"original_text": "a great view of the city around them.", "album_id": "471463", "photo_flickr_id": "20159992", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42147", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a great view of the city around them .", "storylet_id": "210737"}], [{"original_text": "They saw a strange contraption that had the word open on it/", "album_id": "471463", "photo_flickr_id": "20160419", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42147", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they saw a strange contraption that had the word open on it/", "storylet_id": "210738"}], [{"original_text": "They ended up below the Midway after they pushed the button.", "album_id": "471463", "photo_flickr_id": "20160230", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42147", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ended up below the midway after they pushed the button .", "storylet_id": "210739"}], [{"original_text": "The boat was leaving the shore", "album_id": "471463", "photo_flickr_id": "20159765", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42148", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boat was leaving the shore", "storylet_id": "210740"}], [{"original_text": "and had a star on it.", "album_id": "471463", "photo_flickr_id": "20159860", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42148", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and had a star on it .", "storylet_id": "210741"}], [{"original_text": "The city was big", "album_id": "471463", "photo_flickr_id": "20159992", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42148", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the city was big", "storylet_id": "210742"}], [{"original_text": "and the binoculars were open", "album_id": "471463", "photo_flickr_id": "20160419", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42148", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the binoculars were open", "storylet_id": "210743"}], [{"original_text": "for people to look download.", "album_id": "471463", "photo_flickr_id": "20160230", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42148", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for people to look download .", "storylet_id": "210744"}], [{"original_text": "The ocean seemed ever expansive as the boat trudged along, its voyage entirely uncertain.", "album_id": "471463", "photo_flickr_id": "20159765", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "42149", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ocean seemed ever expansive as the boat trudged along , its voyage entirely uncertain .", "storylet_id": "210745"}], [{"original_text": "On the side of the plane, the emblazoned logo told the gathered onlookers all they needed to know about who was manning the fleet.", "album_id": "471463", "photo_flickr_id": "20159860", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "42149", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on the side of the plane , the emblazoned logo told the gathered onlookers all they needed to know about who was manning the fleet .", "storylet_id": "210746"}], [{"original_text": "As the plane ascended, the view of the city took on an almost surreal quality.", "album_id": "471463", "photo_flickr_id": "20159992", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "42149", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as the plane ascended , the view of the city took on an almost surreal quality .", "storylet_id": "210747"}], [{"original_text": "When the light switched to open that's when the tourists were ready to explore the vessel.", "album_id": "471463", "photo_flickr_id": "20160419", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "42149", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the light switched to open that 's when the tourists were ready to explore the vessel .", "storylet_id": "210748"}], [{"original_text": "The Midway logo was emblazoned on the side of the vessel, which took the patrons where they needed to go.", "album_id": "471463", "photo_flickr_id": "20160230", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "42149", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the midway logo was emblazoned on the side of the vessel , which took the patrons where they needed to go .", "storylet_id": "210749"}], [{"original_text": "There was a rowing competition,", "album_id": "471474", "photo_flickr_id": "20159771", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42150", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a rowing competition ,", "storylet_id": "210750"}], [{"original_text": "that Sally was excited to participate in.", "album_id": "471474", "photo_flickr_id": "20160318", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42150", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that [female] was excited to participate in .", "storylet_id": "210751"}], [{"original_text": "She faced fierce competitors despite training all year.", "album_id": "471474", "photo_flickr_id": "20159727", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42150", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she faced fierce competitors despite training all year .", "storylet_id": "210752"}], [{"original_text": "However, the boat in the lead had a mishap.", "album_id": "471474", "photo_flickr_id": "20159182", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42150", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "however , the boat in the lead had a mishap .", "storylet_id": "210753"}], [{"original_text": "Which allowed Sally to row into victory.", "album_id": "471474", "photo_flickr_id": "20160129", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42150", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "which allowed [female] to row into victory .", "storylet_id": "210754"}], [{"original_text": "It was the day for the big race.", "album_id": "471474", "photo_flickr_id": "20160174", "setting": "first-2-pick-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "42151", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the day for the big race .", "storylet_id": "210755"}], [{"original_text": "Some wanted the early practice.", "album_id": "471474", "photo_flickr_id": "20160236", "setting": "first-2-pick-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "42151", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some wanted the early practice .", "storylet_id": "210756"}], [{"original_text": "He was getting the hang of it now.", "album_id": "471474", "photo_flickr_id": "20160318", "setting": "first-2-pick-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "42151", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was getting the hang of it now .", "storylet_id": "210757"}], [{"original_text": "They worked well as a team.", "album_id": "471474", "photo_flickr_id": "20159727", "setting": "first-2-pick-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "42151", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they worked well as a team .", "storylet_id": "210758"}], [{"original_text": "And the races were off!", "album_id": "471474", "photo_flickr_id": "20160460", "setting": "first-2-pick-and-tell", "worker_id": "Y14EOHLBZEA09AK", "story_id": "42151", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the races were off !", "storylet_id": "210759"}], [{"original_text": "The lake was calm. ", "album_id": "471474", "photo_flickr_id": "20159771", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42152", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lake was calm .", "storylet_id": "210760"}], [{"original_text": "She paddled quickly to win.", "album_id": "471474", "photo_flickr_id": "20160318", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42152", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she paddled quickly to win .", "storylet_id": "210761"}], [{"original_text": "The guys worked together to get to the finish line. ", "album_id": "471474", "photo_flickr_id": "20159727", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42152", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guys worked together to get to the finish line .", "storylet_id": "210762"}], [{"original_text": "He fell overboard. ", "album_id": "471474", "photo_flickr_id": "20159182", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42152", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he fell overboard .", "storylet_id": "210763"}], [{"original_text": "She almost gave up. ", "album_id": "471474", "photo_flickr_id": "20160129", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42152", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she almost gave up .", "storylet_id": "210764"}], [{"original_text": "A trip to the local lake for some water fun.", "album_id": "471474", "photo_flickr_id": "20159771", "setting": "last-3-pick-old-and-tell", "worker_id": "3LMD644J42CW790", "story_id": "42153", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a trip to the local lake for some water fun .", "storylet_id": "210765"}], [{"original_text": "Mom maneuvered the canoe by herself like a pro!", "album_id": "471474", "photo_flickr_id": "20160318", "setting": "last-3-pick-old-and-tell", "worker_id": "3LMD644J42CW790", "story_id": "42153", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom maneuvered the canoe by herself like a pro !", "storylet_id": "210766"}], [{"original_text": "The boys were in perfect sync with their rowing.", "album_id": "471474", "photo_flickr_id": "20159727", "setting": "last-3-pick-old-and-tell", "worker_id": "3LMD644J42CW790", "story_id": "42153", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boys were in perfect sync with their rowing .", "storylet_id": "210767"}], [{"original_text": "Dad fell out of his canoe.", "album_id": "471474", "photo_flickr_id": "20159182", "setting": "last-3-pick-old-and-tell", "worker_id": "3LMD644J42CW790", "story_id": "42153", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dad fell out of his canoe .", "storylet_id": "210768"}], [{"original_text": "Mom looked on laughing at Dads misfortune.", "album_id": "471474", "photo_flickr_id": "20160129", "setting": "last-3-pick-old-and-tell", "worker_id": "3LMD644J42CW790", "story_id": "42153", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mom looked on laughing at dads misfortune .", "storylet_id": "210769"}], [{"original_text": "The Ottawa Dragon Boat Festival is a yearly event that attracts 5,500 paddlers and over 70,000 spectators in Ottawa, Ontario, Canada.", "album_id": "471474", "photo_flickr_id": "20160174", "setting": "last-3-pick-old-and-tell", "worker_id": "4AID3FAJDTF5CQW", "story_id": "42154", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ottawa dragon boat festival is a yearly event that attracts 5,500 paddlers and over 70,000 spectators in location , location , location .", "storylet_id": "210770"}], [{"original_text": "Since its inception in 1993, thousands of participants have gathered at Mooney's Bay Park on Riverside Drive in Ottawa to race. Admission to the festival is free to spectators.", "album_id": "471474", "photo_flickr_id": "20160236", "setting": "last-3-pick-old-and-tell", "worker_id": "4AID3FAJDTF5CQW", "story_id": "42154", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "since its inception in 1993 , thousands of participants have gathered at location location location location on location location in location to race . admission to the festival is free to spectators .", "storylet_id": "210771"}], [{"original_text": "The competition is fierce. Many accompanying family and friends also make the trip to show their support and honour survivors.", "album_id": "471474", "photo_flickr_id": "20160318", "setting": "last-3-pick-old-and-tell", "worker_id": "4AID3FAJDTF5CQW", "story_id": "42154", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the competition is fierce . many accompanying family and friends also make the trip to show their support and honour survivors .", "storylet_id": "210772"}], [{"original_text": "The dragon race challenge is actually a charity and has till date raised over $3 million.", "album_id": "471474", "photo_flickr_id": "20159727", "setting": "last-3-pick-old-and-tell", "worker_id": "4AID3FAJDTF5CQW", "story_id": "42154", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dragon race challenge is actually a charity and has till date raised over $ 3 million .", "storylet_id": "210773"}], [{"original_text": "A snapshot capturing the rivalry of different teams.", "album_id": "471474", "photo_flickr_id": "20160460", "setting": "last-3-pick-old-and-tell", "worker_id": "4AID3FAJDTF5CQW", "story_id": "42154", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a snapshot capturing the rivalry of different teams .", "storylet_id": "210774"}], [{"original_text": "After driving for a while on this coastal road,", "album_id": "609127", "photo_flickr_id": "26871816", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42155", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after driving for a while on this coastal road ,", "storylet_id": "210775"}], [{"original_text": "we arrived at a crossroads. Which way to go?", "album_id": "609127", "photo_flickr_id": "26871635", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42155", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we arrived at a crossroads . which way to go ?", "storylet_id": "210776"}], [{"original_text": "We took the left fork and soon passed this small farm.", "album_id": "609127", "photo_flickr_id": "26871874", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42155", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took the left fork and soon passed this small farm .", "storylet_id": "210777"}], [{"original_text": "We were greeted by this curious donkey,", "album_id": "609127", "photo_flickr_id": "26871655", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42155", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were greeted by this curious donkey ,", "storylet_id": "210778"}], [{"original_text": "and rewarded with stunning views.", "album_id": "609127", "photo_flickr_id": "26871717", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42155", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and rewarded with stunning views .", "storylet_id": "210779"}], [{"original_text": "I was out driving to the cliff-side shore last week.", "album_id": "609127", "photo_flickr_id": "26871635", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42156", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was out driving to the cliff-side shore last week .", "storylet_id": "210780"}], [{"original_text": "I saw a lot of wildlife along the way.", "album_id": "609127", "photo_flickr_id": "26871655", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42156", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw a lot of wildlife along the way .", "storylet_id": "210781"}], [{"original_text": "When I got there the view was spectacular.", "album_id": "609127", "photo_flickr_id": "26871775", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42156", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when i got there the view was spectacular .", "storylet_id": "210782"}], [{"original_text": "There were so many huge rock formations out in the ocean.", "album_id": "609127", "photo_flickr_id": "26871802", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42156", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were so many huge rock formations out in the ocean .", "storylet_id": "210783"}], [{"original_text": "I watched the sea for about an hour and then I drove back home.", "album_id": "609127", "photo_flickr_id": "26871824", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42156", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i watched the sea for about an hour and then i drove back home .", "storylet_id": "210784"}], [{"original_text": "We took a ride up the mountain to get a view of the water. ", "album_id": "609127", "photo_flickr_id": "26871816", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42157", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a ride up the mountain to get a view of the water .", "storylet_id": "210785"}], [{"original_text": "We couldn't decide if we should go further up or stay on a safer path. ", "album_id": "609127", "photo_flickr_id": "26871635", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42157", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we could n't decide if we should go further up or stay on a safer path .", "storylet_id": "210786"}], [{"original_text": "There were little farm cottages up the way. ", "album_id": "609127", "photo_flickr_id": "26871874", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42157", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were little farm cottages up the way .", "storylet_id": "210787"}], [{"original_text": "This sweet donkey ate carrots from our hand that a farmer gave us. ", "album_id": "609127", "photo_flickr_id": "26871655", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42157", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this sweet donkey ate carrots from our hand that a farmer gave us .", "storylet_id": "210788"}], [{"original_text": "We finally reached the summit and got our perfect view. ", "album_id": "609127", "photo_flickr_id": "26871717", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42157", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finally reached the summit and got our perfect view .", "storylet_id": "210789"}], [{"original_text": "This is a picture of mountains.", "album_id": "609127", "photo_flickr_id": "26871816", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42158", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of mountains .", "storylet_id": "210790"}], [{"original_text": "This is a picture of an empty road. ", "album_id": "609127", "photo_flickr_id": "26871635", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42158", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of an empty road .", "storylet_id": "210791"}], [{"original_text": "This is a picture of a cloudy day. ", "album_id": "609127", "photo_flickr_id": "26871874", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42158", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of a cloudy day .", "storylet_id": "210792"}], [{"original_text": "This is a picture of an animal.", "album_id": "609127", "photo_flickr_id": "26871655", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42158", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of an animal .", "storylet_id": "210793"}], [{"original_text": "This is a picture of a beach.", "album_id": "609127", "photo_flickr_id": "26871717", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42158", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a beach .", "storylet_id": "210794"}], [{"original_text": "The road just behind the lake lay hidden, masked by a large hill, but it was the quickest point to get there.", "album_id": "609127", "photo_flickr_id": "26871816", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "42159", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the road just behind the lake lay hidden , masked by a large hill , but it was the quickest point to get there .", "storylet_id": "210795"}], [{"original_text": "Passing by the road, almost every day, he wondered where it might lead and what might be on the other end.", "album_id": "609127", "photo_flickr_id": "26871635", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "42159", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "passing by the road , almost every day , he wondered where it might lead and what might be on the other end .", "storylet_id": "210796"}], [{"original_text": "The countryside was filled with houses that seemed almost hidden, tucked gently into the hillside.", "album_id": "609127", "photo_flickr_id": "26871874", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "42159", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the countryside was filled with houses that seemed almost hidden , tucked gently into the hillside .", "storylet_id": "210797"}], [{"original_text": "One of the donkeys always seemed to sneak off, gleefully finding mischief to get into.", "album_id": "609127", "photo_flickr_id": "26871655", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "42159", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the donkeys always seemed to sneak off , gleefully finding mischief to get into .", "storylet_id": "210798"}], [{"original_text": "The waves began to grow more and more choppy as the day passed and the onlookers knew a storm would soon be coming. ", "album_id": "609127", "photo_flickr_id": "26871717", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "42159", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the waves began to grow more and more choppy as the day passed and the onlookers knew a storm would soon be coming .", "storylet_id": "210799"}], [{"original_text": "About to get on the train.", "album_id": "612755", "photo_flickr_id": "26903379", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42160", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "about to get on the train .", "storylet_id": "210800"}], [{"original_text": "Taking a train ride to the shore. ", "album_id": "612755", "photo_flickr_id": "26903110", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42160", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "taking a train ride to the shore .", "storylet_id": "210801"}], [{"original_text": "The view from the train.", "album_id": "612755", "photo_flickr_id": "26905365", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42160", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the view from the train .", "storylet_id": "210802"}], [{"original_text": "Family day at the beach.", "album_id": "612755", "photo_flickr_id": "26904095", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42160", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "family day at the beach .", "storylet_id": "210803"}], [{"original_text": "Boy about to go fishing. ", "album_id": "612755", "photo_flickr_id": "26903630", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42160", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "boy about to go fishing .", "storylet_id": "210804"}], [{"original_text": "We went for a girls day at the beach, first pick out the chairs.", "album_id": "612755", "photo_flickr_id": "26904095", "setting": "first-2-pick-and-tell", "worker_id": "H0GS7S0MULKFVU7", "story_id": "42161", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went for a girls day at the beach , first pick out the chairs .", "storylet_id": "210805"}], [{"original_text": "It was quite as we arrived as we looked for a spot to set up. ", "album_id": "612755", "photo_flickr_id": "26903719", "setting": "first-2-pick-and-tell", "worker_id": "H0GS7S0MULKFVU7", "story_id": "42161", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was quite as we arrived as we looked for a spot to set up .", "storylet_id": "210806"}], [{"original_text": "Slowly one by one we saw people come to the beach.", "album_id": "612755", "photo_flickr_id": "26903630", "setting": "first-2-pick-and-tell", "worker_id": "H0GS7S0MULKFVU7", "story_id": "42161", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "slowly one by one we saw people come to the beach .", "storylet_id": "210807"}], [{"original_text": "It was a fun day as the tourists began to fill the ocean side.", "album_id": "612755", "photo_flickr_id": "26904004", "setting": "first-2-pick-and-tell", "worker_id": "H0GS7S0MULKFVU7", "story_id": "42161", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a fun day as the tourists began to fill the ocean side .", "storylet_id": "210808"}], [{"original_text": "We gave up the chairs and wandered onto the sand to join in with the crowd. A good day was had by all.", "album_id": "612755", "photo_flickr_id": "26903926", "setting": "first-2-pick-and-tell", "worker_id": "H0GS7S0MULKFVU7", "story_id": "42161", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we gave up the chairs and wandered onto the sand to join in with the crowd . a good day was had by all .", "storylet_id": "210809"}], [{"original_text": "We set up our beach chairs in the sand. ", "album_id": "612755", "photo_flickr_id": "26904095", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42162", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we set up our beach chairs in the sand .", "storylet_id": "210810"}], [{"original_text": "The boats took off giving tours around the water.", "album_id": "612755", "photo_flickr_id": "26903719", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42162", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boats took off giving tours around the water .", "storylet_id": "210811"}], [{"original_text": "He walked slowly observing the sand. ", "album_id": "612755", "photo_flickr_id": "26903630", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42162", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he walked slowly observing the sand .", "storylet_id": "210812"}], [{"original_text": "There were so many beach-goers this year.", "album_id": "612755", "photo_flickr_id": "26904004", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42162", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were so many beach-goers this year .", "storylet_id": "210813"}], [{"original_text": "Most of us relaxed in the sun getting a tan. ", "album_id": "612755", "photo_flickr_id": "26903926", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42162", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "most of us relaxed in the sun getting a tan .", "storylet_id": "210814"}], [{"original_text": "A family decides to take a train trip to a local beach.", "album_id": "612755", "photo_flickr_id": "26903379", "setting": "last-3-pick-old-and-tell", "worker_id": "KK53JWIN663C5DY", "story_id": "42163", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a family decides to take a train trip to a local beach .", "storylet_id": "210815"}], [{"original_text": "The conductor of the train announces that they are pulling out of station.", "album_id": "612755", "photo_flickr_id": "26903110", "setting": "last-3-pick-old-and-tell", "worker_id": "KK53JWIN663C5DY", "story_id": "42163", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the conductor of the train announces that they are pulling out of station .", "storylet_id": "210816"}], [{"original_text": "The family enjoys the scenery along the train route.", "album_id": "612755", "photo_flickr_id": "26905365", "setting": "last-3-pick-old-and-tell", "worker_id": "KK53JWIN663C5DY", "story_id": "42163", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family enjoys the scenery along the train route .", "storylet_id": "210817"}], [{"original_text": "The family finally arrives at the beach and rents classic beach chairs.", "album_id": "612755", "photo_flickr_id": "26904095", "setting": "last-3-pick-old-and-tell", "worker_id": "KK53JWIN663C5DY", "story_id": "42163", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family finally arrives at the beach and rents classic beach chairs .", "storylet_id": "210818"}], [{"original_text": "The family spends the rest of the day enjoying the beach.", "album_id": "612755", "photo_flickr_id": "26903630", "setting": "last-3-pick-old-and-tell", "worker_id": "KK53JWIN663C5DY", "story_id": "42163", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family spends the rest of the day enjoying the beach .", "storylet_id": "210819"}], [{"original_text": "The people were ready to board the train", "album_id": "612755", "photo_flickr_id": "26903379", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42164", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people were ready to board the train", "storylet_id": "210820"}], [{"original_text": "that was big and black.", "album_id": "612755", "photo_flickr_id": "26903110", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42164", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that was big and black .", "storylet_id": "210821"}], [{"original_text": "It went through the landscape", "album_id": "612755", "photo_flickr_id": "26905365", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42164", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it went through the landscape", "storylet_id": "210822"}], [{"original_text": "and the people were happy", "album_id": "612755", "photo_flickr_id": "26904095", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42164", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the people were happy", "storylet_id": "210823"}], [{"original_text": " to see the ocean.", "album_id": "612755", "photo_flickr_id": "26903630", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42164", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to see the ocean .", "storylet_id": "210824"}], [{"original_text": "In the living room, we read and talked about life.", "album_id": "72157600667942012", "photo_flickr_id": "729453937", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42165", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the living room , we read and talked about life .", "storylet_id": "210825"}], [{"original_text": "We traveled to the airport to scout planes for a bit.", "album_id": "72157600667942012", "photo_flickr_id": "730316226", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42165", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we traveled to the airport to scout planes for a bit .", "storylet_id": "210826"}], [{"original_text": "When that was boring, we traveled to the beach to have fun.", "album_id": "72157600667942012", "photo_flickr_id": "729455123", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42165", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when that was boring , we traveled to the beach to have fun .", "storylet_id": "210827"}], [{"original_text": "My friends made a wooden home and we snapped photos of the creation.", "album_id": "72157600667942012", "photo_flickr_id": "729455667", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42165", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friends made a wooden home and we snapped photos of the creation .", "storylet_id": "210828"}], [{"original_text": "We took the bus back to the hotel when we were done.", "album_id": "72157600667942012", "photo_flickr_id": "730318408", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42165", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took the bus back to the hotel when we were done .", "storylet_id": "210829"}], [{"original_text": "There was a group of friends who decided to go on a trip together. ", "album_id": "72157600667942012", "photo_flickr_id": "729453937", "setting": "first-2-pick-and-tell", "worker_id": "M462GV6RHW0M7DF", "story_id": "42166", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a group of friends who decided to go on a trip together .", "storylet_id": "210830"}], [{"original_text": "They flew over seas to on a journey of a lifetime. ", "album_id": "72157600667942012", "photo_flickr_id": "730316226", "setting": "first-2-pick-and-tell", "worker_id": "M462GV6RHW0M7DF", "story_id": "42166", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they flew over seas to on a journey of a lifetime .", "storylet_id": "210831"}], [{"original_text": "They spent their days on the beach enjoying the sun and the water. ", "album_id": "72157600667942012", "photo_flickr_id": "729455667", "setting": "first-2-pick-and-tell", "worker_id": "M462GV6RHW0M7DF", "story_id": "42166", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they spent their days on the beach enjoying the sun and the water .", "storylet_id": "210832"}], [{"original_text": "Soon the days turned to nights and passed by until it was almost the last day.", "album_id": "72157600667942012", "photo_flickr_id": "729455123", "setting": "first-2-pick-and-tell", "worker_id": "M462GV6RHW0M7DF", "story_id": "42166", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "soon the days turned to nights and passed by until it was almost the last day .", "storylet_id": "210833"}], [{"original_text": "And the friends sat and watched the sun set on their tropical island adventure. ", "album_id": "72157600667942012", "photo_flickr_id": "730318008", "setting": "first-2-pick-and-tell", "worker_id": "M462GV6RHW0M7DF", "story_id": "42166", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the friends sat and watched the sun set on their tropical island adventure .", "storylet_id": "210834"}], [{"original_text": "Me and my buds couldnt wait to head off for our vacation.", "album_id": "72157600667942012", "photo_flickr_id": "729453937", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42167", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and my buds couldnt wait to head off for our vacation .", "storylet_id": "210835"}], [{"original_text": "It was my first time on a plane and seeing them take off was scary.", "album_id": "72157600667942012", "photo_flickr_id": "730316226", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42167", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was my first time on a plane and seeing them take off was scary .", "storylet_id": "210836"}], [{"original_text": "We set up a giant bonfire on the beach. It was a blast.", "album_id": "72157600667942012", "photo_flickr_id": "729455667", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42167", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we set up a giant bonfire on the beach . it was a blast .", "storylet_id": "210837"}], [{"original_text": "I had to dip my toes in the ocean, it looked so inviting.", "album_id": "72157600667942012", "photo_flickr_id": "729455123", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42167", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had to dip my toes in the ocean , it looked so inviting .", "storylet_id": "210838"}], [{"original_text": "Here are my friends taking one last picture in front of the beautiful sunset.", "album_id": "72157600667942012", "photo_flickr_id": "730318008", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42167", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here are my friends taking one last picture in front of the beautiful sunset .", "storylet_id": "210839"}], [{"original_text": "Planning to take a trip, trying to figure out just where to go.", "album_id": "72157600667942012", "photo_flickr_id": "729453937", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42168", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "planning to take a trip , trying to figure out just where to go .", "storylet_id": "210840"}], [{"original_text": "Decided to take a road trip up the coast to the water.", "album_id": "72157600667942012", "photo_flickr_id": "730316226", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42168", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "decided to take a road trip up the coast to the water .", "storylet_id": "210841"}], [{"original_text": "Once there, i was so glad that was what was decided the sunrise was gorgeous.", "album_id": "72157600667942012", "photo_flickr_id": "729455123", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42168", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once there , i was so glad that was what was decided the sunrise was gorgeous .", "storylet_id": "210842"}], [{"original_text": "The formation of the rocks look very interesting in their shape.", "album_id": "72157600667942012", "photo_flickr_id": "729455667", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42168", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the formation of the rocks look very interesting in their shape .", "storylet_id": "210843"}], [{"original_text": "Nextime i will travel by bus, this one looks very comfortable.", "album_id": "72157600667942012", "photo_flickr_id": "730318408", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42168", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "nextime i will travel by bus , this one looks very comfortable .", "storylet_id": "210844"}], [{"original_text": "We arrived early at the airport to wait on our flight.", "album_id": "72157600667942012", "photo_flickr_id": "729453937", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42169", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived early at the airport to wait on our flight .", "storylet_id": "210845"}], [{"original_text": "When we landed the sky was cloud free and so blue.", "album_id": "72157600667942012", "photo_flickr_id": "730316226", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42169", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we landed the sky was cloud free and so blue .", "storylet_id": "210846"}], [{"original_text": "We took some time to walk in the ocean at the end of the day.", "album_id": "72157600667942012", "photo_flickr_id": "729455123", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42169", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took some time to walk in the ocean at the end of the day .", "storylet_id": "210847"}], [{"original_text": "We waited and watched the sunset on the beach.", "album_id": "72157600667942012", "photo_flickr_id": "729455667", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42169", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we waited and watched the sunset on the beach .", "storylet_id": "210848"}], [{"original_text": "When it was time to go we took a bus back to our hotel.", "album_id": "72157600667942012", "photo_flickr_id": "730318408", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42169", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when it was time to go we took a bus back to our hotel .", "storylet_id": "210849"}], [{"original_text": "The town looked amazing from this far away.", "album_id": "72157623116815517", "photo_flickr_id": "4287133403", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42170", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the town looked amazing from this far away .", "storylet_id": "210850"}], [{"original_text": "They got closer and were excited to dock the boat.", "album_id": "72157623116815517", "photo_flickr_id": "4287133525", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42170", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got closer and were excited to dock the boat .", "storylet_id": "210851"}], [{"original_text": "The town was filled with brightly colored markets.", "album_id": "72157623116815517", "photo_flickr_id": "4287133581", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42170", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the town was filled with brightly colored markets .", "storylet_id": "210852"}], [{"original_text": "They saw men hard at work.", "album_id": "72157623116815517", "photo_flickr_id": "4287133641", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42170", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they saw men hard at work .", "storylet_id": "210853"}], [{"original_text": "in the end they wanted something with a pool and a bar so they left.", "album_id": "72157623116815517", "photo_flickr_id": "4287876094", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42170", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end they wanted something with a pool and a bar so they left .", "storylet_id": "210854"}], [{"original_text": "I decided to go to the beach.", "album_id": "72157623116815517", "photo_flickr_id": "4287132723", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42171", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to go to the beach .", "storylet_id": "210855"}], [{"original_text": "I went and watched some of the boats go by for awhile.", "album_id": "72157623116815517", "photo_flickr_id": "4287875138", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42171", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went and watched some of the boats go by for awhile .", "storylet_id": "210856"}], [{"original_text": "After I was done watching the boats, I decided to walk around.", "album_id": "72157623116815517", "photo_flickr_id": "4287132785", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42171", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after i was done watching the boats , i decided to walk around .", "storylet_id": "210857"}], [{"original_text": "I came across a lot of different sculptures, including this dolphin one.", "album_id": "72157623116815517", "photo_flickr_id": "4287875348", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42171", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i came across a lot of different sculptures , including this dolphin one .", "storylet_id": "210858"}], [{"original_text": "There were many stores in the area so I decided to go shopping. ", "album_id": "72157623116815517", "photo_flickr_id": "4287133581", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42171", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were many stores in the area so i decided to go shopping .", "storylet_id": "210859"}], [{"original_text": "Someone goes to a vacation destination at a beach.", "album_id": "72157623116815517", "photo_flickr_id": "4287133403", "setting": "last-3-pick-old-and-tell", "worker_id": "IGGJR5B7XYTQRTV", "story_id": "42172", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "someone goes to a vacation destination at a beach .", "storylet_id": "210860"}], [{"original_text": "They explore the beautiful beach town.", "album_id": "72157623116815517", "photo_flickr_id": "4287133525", "setting": "last-3-pick-old-and-tell", "worker_id": "IGGJR5B7XYTQRTV", "story_id": "42172", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they explore the beautiful beach town .", "storylet_id": "210861"}], [{"original_text": "They observe many colorful wares for sale by the locals.", "album_id": "72157623116815517", "photo_flickr_id": "4287133581", "setting": "last-3-pick-old-and-tell", "worker_id": "IGGJR5B7XYTQRTV", "story_id": "42172", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they observe many colorful wares for sale by the locals .", "storylet_id": "210862"}], [{"original_text": "They even get a taste meat snack for lunch from a vendor.", "album_id": "72157623116815517", "photo_flickr_id": "4287133641", "setting": "last-3-pick-old-and-tell", "worker_id": "IGGJR5B7XYTQRTV", "story_id": "42172", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even get a taste meat snack for lunch from a vendor .", "storylet_id": "210863"}], [{"original_text": "They then drive back to their hotel for the trip.", "album_id": "72157623116815517", "photo_flickr_id": "4287876094", "setting": "last-3-pick-old-and-tell", "worker_id": "IGGJR5B7XYTQRTV", "story_id": "42172", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they then drive back to their hotel for the trip .", "storylet_id": "210864"}], [{"original_text": "Had an awesome day on vacation today!", "album_id": "72157623116815517", "photo_flickr_id": "4287133403", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "42173", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "had an awesome day on vacation today !", "storylet_id": "210865"}], [{"original_text": "We saw a lot of cool sites and awesome looking buildings.", "album_id": "72157623116815517", "photo_flickr_id": "4287133525", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "42173", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw a lot of cool sites and awesome looking buildings .", "storylet_id": "210866"}], [{"original_text": "The streets were filled with so many colors and designs.", "album_id": "72157623116815517", "photo_flickr_id": "4287133581", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "42173", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the streets were filled with so many colors and designs .", "storylet_id": "210867"}], [{"original_text": "There was so many exciting things to see and do.", "album_id": "72157623116815517", "photo_flickr_id": "4287133641", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "42173", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was so many exciting things to see and do .", "storylet_id": "210868"}], [{"original_text": "We even saw people riding in the back of trucks too!", "album_id": "72157623116815517", "photo_flickr_id": "4287876094", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "42173", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even saw people riding in the back of trucks too !", "storylet_id": "210869"}], [{"original_text": "We recently visited a town on the coast.", "album_id": "72157623116815517", "photo_flickr_id": "4287133403", "setting": "last-3-pick-old-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "42174", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we recently visited a town on the coast .", "storylet_id": "210870"}], [{"original_text": "There were houses built right on the cliffs!", "album_id": "72157623116815517", "photo_flickr_id": "4287133525", "setting": "last-3-pick-old-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "42174", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were houses built right on the cliffs !", "storylet_id": "210871"}], [{"original_text": "In the marketplace, there were so many different things to buy.", "album_id": "72157623116815517", "photo_flickr_id": "4287133581", "setting": "last-3-pick-old-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "42174", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in the marketplace , there were so many different things to buy .", "storylet_id": "210872"}], [{"original_text": "This man roasted meat on a spit right in front of you!", "album_id": "72157623116815517", "photo_flickr_id": "4287133641", "setting": "last-3-pick-old-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "42174", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this man roasted meat on a spit right in front of you !", "storylet_id": "210873"}], [{"original_text": "The locals had us follow them to show us a great place to do some sightseeing.", "album_id": "72157623116815517", "photo_flickr_id": "4287876094", "setting": "last-3-pick-old-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "42174", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the locals had us follow them to show us a great place to do some sightseeing .", "storylet_id": "210874"}], [{"original_text": "The ocean is so calming. Let's just stay here all day.", "album_id": "72157623119427437", "photo_flickr_id": "4288806346", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "42175", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ocean is so calming . let 's just stay here all day .", "storylet_id": "210875"}], [{"original_text": "We took a walk down the beach looking for shells.", "album_id": "72157623119427437", "photo_flickr_id": "4288814180", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "42175", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a walk down the beach looking for shells .", "storylet_id": "210876"}], [{"original_text": "Came across this sticking out of the sand. No clue what it is or what was written on it. We kept walking.", "album_id": "72157623119427437", "photo_flickr_id": "4288082437", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "42175", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "came across this sticking out of the sand . no clue what it is or what was written on it . we kept walking .", "storylet_id": "210877"}], [{"original_text": "That is a big rock for this beach. Wonder who is putting this stuff here.", "album_id": "72157623119427437", "photo_flickr_id": "4288827166", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "42175", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that is a big rock for this beach . wonder who is putting this stuff here .", "storylet_id": "210878"}], [{"original_text": "What in the world is that? I didn't know anyone lived here, but I'm not sticking around to find out.", "album_id": "72157623119427437", "photo_flickr_id": "4288098609", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "42175", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what in the world is that ? i did n't know anyone lived here , but i 'm not sticking around to find out .", "storylet_id": "210879"}], [{"original_text": "We had been on the beach for a long time, and we were getting tired. ", "album_id": "72157623119427437", "photo_flickr_id": "4288827166", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "42176", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had been on the beach for a long time , and we were getting tired .", "storylet_id": "210880"}], [{"original_text": "We stood there for a while, looking at the rocks a bit and looking at the islands in the distance too. ", "album_id": "72157623119427437", "photo_flickr_id": "4288074809", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "42176", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stood there for a while , looking at the rocks a bit and looking at the islands in the distance too .", "storylet_id": "210881"}], [{"original_text": "We were there on trash collection duty, and we had a job to do. We did it, with a lot of looking around and far less work than we should have.", "album_id": "72157623119427437", "photo_flickr_id": "4288811604", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "42176", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were there on trash collection duty , and we had a job to do . we did it , with a lot of looking around and far less work than we should have .", "storylet_id": "210882"}], [{"original_text": "As everything started to darken around us, we worked less and less and stared at the water more and more. We felt lazy, but it was fine.", "album_id": "72157623119427437", "photo_flickr_id": "4288838146", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "42176", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as everything started to darken around us , we worked less and less and stared at the water more and more . we felt lazy , but it was fine .", "storylet_id": "210883"}], [{"original_text": "We decided to stay until the beginnings of twilight, and light a fire on the beach. We got a little spooked and headed home early, but we were glad to have been out there.", "album_id": "72157623119427437", "photo_flickr_id": "4288090759", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "42176", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to stay until the beginnings of twilight , and light a fire on the beach . we got a little spooked and headed home early , but we were glad to have been out there .", "storylet_id": "210884"}], [{"original_text": "The beach was so beautiful today!", "album_id": "72157623119427437", "photo_flickr_id": "4288806346", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "42177", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beach was so beautiful today !", "storylet_id": "210885"}], [{"original_text": "I didn't see anyone else out there.", "album_id": "72157623119427437", "photo_flickr_id": "4288814180", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "42177", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i did n't see anyone else out there .", "storylet_id": "210886"}], [{"original_text": "I enjoyed the peaceful morning.", "album_id": "72157623119427437", "photo_flickr_id": "4288082437", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "42177", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i enjoyed the peaceful morning .", "storylet_id": "210887"}], [{"original_text": "I found some interesting shells and rocks.", "album_id": "72157623119427437", "photo_flickr_id": "4288827166", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "42177", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i found some interesting shells and rocks .", "storylet_id": "210888"}], [{"original_text": "It was so peaceful and beautiful!", "album_id": "72157623119427437", "photo_flickr_id": "4288098609", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "42177", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was so peaceful and beautiful !", "storylet_id": "210889"}], [{"original_text": "Recently my uncle visited a beach.", "album_id": "72157623119427437", "photo_flickr_id": "4288806346", "setting": "last-3-pick-old-and-tell", "worker_id": "IDY0QQIAIS1AVOC", "story_id": "42178", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "recently my uncle visited a beach .", "storylet_id": "210890"}], [{"original_text": "It had mountains on it and sand. ", "album_id": "72157623119427437", "photo_flickr_id": "4288814180", "setting": "last-3-pick-old-and-tell", "worker_id": "IDY0QQIAIS1AVOC", "story_id": "42178", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it had mountains on it and sand .", "storylet_id": "210891"}], [{"original_text": "The tides was beautiful, and peaceful. ", "album_id": "72157623119427437", "photo_flickr_id": "4288082437", "setting": "last-3-pick-old-and-tell", "worker_id": "IDY0QQIAIS1AVOC", "story_id": "42178", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tides was beautiful , and peaceful .", "storylet_id": "210892"}], [{"original_text": "There was a whole bunch of rocks big ones little ones and they were so beautiful.", "album_id": "72157623119427437", "photo_flickr_id": "4288827166", "setting": "last-3-pick-old-and-tell", "worker_id": "IDY0QQIAIS1AVOC", "story_id": "42178", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a whole bunch of rocks big ones little ones and they were so beautiful .", "storylet_id": "210893"}], [{"original_text": "There even was a house on the beach, which was also kinda interesting. ", "album_id": "72157623119427437", "photo_flickr_id": "4288098609", "setting": "last-3-pick-old-and-tell", "worker_id": "IDY0QQIAIS1AVOC", "story_id": "42178", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there even was a house on the beach , which was also kinda interesting .", "storylet_id": "210894"}], [{"original_text": "The ocean is bright blue surrounded by rock.", "album_id": "72157623119427437", "photo_flickr_id": "4288806346", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42179", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ocean is bright blue surrounded by rock .", "storylet_id": "210895"}], [{"original_text": "There is a small amount of sand surrounded by water and land.", "album_id": "72157623119427437", "photo_flickr_id": "4288814180", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42179", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is a small amount of sand surrounded by water and land .", "storylet_id": "210896"}], [{"original_text": "The sand is clear and there are no people on the beach.", "album_id": "72157623119427437", "photo_flickr_id": "4288082437", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42179", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sand is clear and there are no people on the beach .", "storylet_id": "210897"}], [{"original_text": "The rocks are for the most part small but there are some that are larger.", "album_id": "72157623119427437", "photo_flickr_id": "4288827166", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42179", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rocks are for the most part small but there are some that are larger .", "storylet_id": "210898"}], [{"original_text": "There are small buildings where people live on the edge of the beach.", "album_id": "72157623119427437", "photo_flickr_id": "4288098609", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42179", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are small buildings where people live on the edge of the beach .", "storylet_id": "210899"}], [{"original_text": "We decided to walk to downtown. ", "album_id": "72157623241725680", "photo_flickr_id": "4287972830", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "42180", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to walk to downtown .", "storylet_id": "210900"}], [{"original_text": "We passed by some buildings with interesting architecture. ", "album_id": "72157623241725680", "photo_flickr_id": "4287973622", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "42180", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we passed by some buildings with interesting architecture .", "storylet_id": "210901"}], [{"original_text": "Finally we got to the beach. ", "album_id": "72157623241725680", "photo_flickr_id": "4287972974", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "42180", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally we got to the beach .", "storylet_id": "210902"}], [{"original_text": "We walked barefoot through the sand. ", "album_id": "72157623241725680", "photo_flickr_id": "4287231283", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "42180", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we walked barefoot through the sand .", "storylet_id": "210903"}], [{"original_text": "Afterwards we got an ice cream cone. ", "album_id": "72157623241725680", "photo_flickr_id": "4287973724", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "42180", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards we got an ice cream cone .", "storylet_id": "210904"}], [{"original_text": "My dad and I was enjoying a friendly game of dominoes on the patio. ", "album_id": "72157623241725680", "photo_flickr_id": "4287230839", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "42181", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my dad and i was enjoying a friendly game of dominoes on the patio .", "storylet_id": "210905"}], [{"original_text": "The skyline is quite spectacular in this part of the water. ", "album_id": "72157623241725680", "photo_flickr_id": "4287972974", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "42181", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the skyline is quite spectacular in this part of the water .", "storylet_id": "210906"}], [{"original_text": "However, quickly I realized that the weather was changing, and in a bad way. ", "album_id": "72157623241725680", "photo_flickr_id": "4287231283", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "42181", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however , quickly i realized that the weather was changing , and in a bad way .", "storylet_id": "210907"}], [{"original_text": "This building was quite sturdy, and would be the location of the evacuation shelter.", "album_id": "72157623241725680", "photo_flickr_id": "4287973622", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "42181", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this building was quite sturdy , and would be the location of the evacuation shelter .", "storylet_id": "210908"}], [{"original_text": "This ice cream bn", "album_id": "72157623241725680", "photo_flickr_id": "4287232059", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "42181", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this ice cream bn", "storylet_id": "210909"}], [{"original_text": "We took a day trip, and we toured some magnificent places.", "album_id": "72157623241725680", "photo_flickr_id": "4287972830", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42182", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a day trip , and we toured some magnificent places .", "storylet_id": "210910"}], [{"original_text": "The buildings were rather unique.", "album_id": "72157623241725680", "photo_flickr_id": "4287973622", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42182", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the buildings were rather unique .", "storylet_id": "210911"}], [{"original_text": "Then, we went to the beach.", "album_id": "72157623241725680", "photo_flickr_id": "4287972974", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42182", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then , we went to the beach .", "storylet_id": "210912"}], [{"original_text": "We sat on the sound and watched the waves roll in.", "album_id": "72157623241725680", "photo_flickr_id": "4287231283", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42182", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we sat on the sound and watched the waves roll in .", "storylet_id": "210913"}], [{"original_text": "We ended our trip with some delicious local ice cream. It was a fun day!", "album_id": "72157623241725680", "photo_flickr_id": "4287973724", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "42182", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended our trip with some delicious local ice cream . it was a fun day !", "storylet_id": "210914"}], [{"original_text": "Looking at the sign and wondering what it means.", "album_id": "72157623241725680", "photo_flickr_id": "4287972830", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "42183", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "looking at the sign and wondering what it means .", "storylet_id": "210915"}], [{"original_text": "This is an interesting place and can't wait to get inside.", "album_id": "72157623241725680", "photo_flickr_id": "4287973622", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "42183", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is an interesting place and ca n't wait to get inside .", "storylet_id": "210916"}], [{"original_text": "A few friends walking out along the beach getting fresh air.", "album_id": "72157623241725680", "photo_flickr_id": "4287972974", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "42183", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few friends walking out along the beach getting fresh air .", "storylet_id": "210917"}], [{"original_text": "Watching the sunset from the beach.", "album_id": "72157623241725680", "photo_flickr_id": "4287231283", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "42183", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "watching the sunset from the beach .", "storylet_id": "210918"}], [{"original_text": "Afterwards I go get a strawberry ice cream cone.", "album_id": "72157623241725680", "photo_flickr_id": "4287973724", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "42183", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards i go get a strawberry ice cream cone .", "storylet_id": "210919"}], [{"original_text": "We went sightseeing today!", "album_id": "72157623241725680", "photo_flickr_id": "4287230839", "setting": "last-3-pick-old-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "42184", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went sightseeing today !", "storylet_id": "210920"}], [{"original_text": "First we went for a walk along the beach.", "album_id": "72157623241725680", "photo_flickr_id": "4287972974", "setting": "last-3-pick-old-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "42184", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we went for a walk along the beach .", "storylet_id": "210921"}], [{"original_text": "It was a beautiful day, but a little bit chilly, so we didn't swim.", "album_id": "72157623241725680", "photo_flickr_id": "4287231283", "setting": "last-3-pick-old-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "42184", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a beautiful day , but a little bit chilly , so we did n't swim .", "storylet_id": "210922"}], [{"original_text": "Then we went on a tour of a museum.", "album_id": "72157623241725680", "photo_flickr_id": "4287973622", "setting": "last-3-pick-old-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "42184", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we went on a tour of a museum .", "storylet_id": "210923"}], [{"original_text": "At the end of the day, we went for frozen yogurt.", "album_id": "72157623241725680", "photo_flickr_id": "4287232059", "setting": "last-3-pick-old-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "42184", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , we went for frozen yogurt .", "storylet_id": "210924"}], [{"original_text": "Oregon is such an amazing place to visit.", "album_id": "72157623246073176", "photo_flickr_id": "4291116922", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42185", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location is such an amazing place to visit .", "storylet_id": "210925"}], [{"original_text": "It has wildlife in the ocean like sea lions.", "album_id": "72157623246073176", "photo_flickr_id": "4290376875", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42185", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it has wildlife in the ocean like sea lions .", "storylet_id": "210926"}], [{"original_text": "It has native deer that frequent the Northwest.", "album_id": "72157623246073176", "photo_flickr_id": "4292003178", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42185", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it has native deer that frequent the northwest .", "storylet_id": "210927"}], [{"original_text": "It has beautiful birds to look at and take photos of.", "album_id": "72157623246073176", "photo_flickr_id": "4291251743", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42185", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it has beautiful birds to look at and take photos of .", "storylet_id": "210928"}], [{"original_text": "in the end, Oregon is a swell place to visit.", "album_id": "72157623246073176", "photo_flickr_id": "4294226090", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42185", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , location is a swell place to visit .", "storylet_id": "210929"}], [{"original_text": "I walked down to the shore last week.", "album_id": "72157623246073176", "photo_flickr_id": "4290376875", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42186", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i walked down to the shore last week .", "storylet_id": "210930"}], [{"original_text": "The waves were rolling in peacefully.", "album_id": "72157623246073176", "photo_flickr_id": "4290377041", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42186", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the waves were rolling in peacefully .", "storylet_id": "210931"}], [{"original_text": "There was no one else there.", "album_id": "72157623246073176", "photo_flickr_id": "4291151390", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42186", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was no one else there .", "storylet_id": "210932"}], [{"original_text": "I had a great time watching the waves.", "album_id": "72157623246073176", "photo_flickr_id": "4289693850", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42186", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had a great time watching the waves .", "storylet_id": "210933"}], [{"original_text": "There was a little bird watching me nearby.", "album_id": "72157623246073176", "photo_flickr_id": "4291262635", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42186", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a little bird watching me nearby .", "storylet_id": "210934"}], [{"original_text": "We went to the beach and snapped quite a few pictures, I loved this one of the water splashing against the rocks.", "album_id": "72157623246073176", "photo_flickr_id": "4291116922", "setting": "last-3-pick-old-and-tell", "worker_id": "T8BWV8NFJZ8C9D6", "story_id": "42187", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the beach and snapped quite a few pictures , i loved this one of the water splashing against the rocks .", "storylet_id": "210935"}], [{"original_text": "Foamy white water rapids were just calling out to us to kayak.", "album_id": "72157623246073176", "photo_flickr_id": "4290376875", "setting": "last-3-pick-old-and-tell", "worker_id": "T8BWV8NFJZ8C9D6", "story_id": "42187", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "foamy white water rapids were just calling out to us to kayak .", "storylet_id": "210936"}], [{"original_text": "We saw this deer on our hiking path, it was very photogenic.", "album_id": "72157623246073176", "photo_flickr_id": "4292003178", "setting": "last-3-pick-old-and-tell", "worker_id": "T8BWV8NFJZ8C9D6", "story_id": "42187", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw this deer on our hiking path , it was very photogenic .", "storylet_id": "210937"}], [{"original_text": "We were able to snap the perfect picture of this bird in the tree.", "album_id": "72157623246073176", "photo_flickr_id": "4291251743", "setting": "last-3-pick-old-and-tell", "worker_id": "T8BWV8NFJZ8C9D6", "story_id": "42187", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were able to snap the perfect picture of this bird in the tree .", "storylet_id": "210938"}], [{"original_text": "We found some otters goofing off in the water too.", "album_id": "72157623246073176", "photo_flickr_id": "4294226090", "setting": "last-3-pick-old-and-tell", "worker_id": "T8BWV8NFJZ8C9D6", "story_id": "42187", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we found some otters goofing off in the water too .", "storylet_id": "210939"}], [{"original_text": "We looked out at the choppy water.", "album_id": "72157623246073176", "photo_flickr_id": "4291116922", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42188", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we looked out at the choppy water .", "storylet_id": "210940"}], [{"original_text": "Sea lions where out on the rocks.", "album_id": "72157623246073176", "photo_flickr_id": "4290376875", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42188", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sea lions where out on the rocks .", "storylet_id": "210941"}], [{"original_text": "Behind us in the woods there where deer about.", "album_id": "72157623246073176", "photo_flickr_id": "4292003178", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42188", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "behind us in the woods there where deer about .", "storylet_id": "210942"}], [{"original_text": "Up above, there where hawks in the trees.", "album_id": "72157623246073176", "photo_flickr_id": "4291251743", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42188", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "up above , there where hawks in the trees .", "storylet_id": "210943"}], [{"original_text": "We hung out by the bay and then moved on.", "album_id": "72157623246073176", "photo_flickr_id": "4294226090", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42188", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we hung out by the bay and then moved on .", "storylet_id": "210944"}], [{"original_text": "This rock looked very dramatic with the waves!", "album_id": "72157623246073176", "photo_flickr_id": "4291116922", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "42189", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this rock looked very dramatic with the waves !", "storylet_id": "210945"}], [{"original_text": "The water was very striking and fascinating.", "album_id": "72157623246073176", "photo_flickr_id": "4290376875", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "42189", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water was very striking and fascinating .", "storylet_id": "210946"}], [{"original_text": "Saw a deer in the woods later on and had to grab a pic!", "album_id": "72157623246073176", "photo_flickr_id": "4292003178", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "42189", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "saw a deer in the woods later on and had to grab a pic !", "storylet_id": "210947"}], [{"original_text": "And this bird as well, almost seemed to be posing for the camera!", "album_id": "72157623246073176", "photo_flickr_id": "4291251743", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "42189", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and this bird as well , almost seemed to be posing for the camera !", "storylet_id": "210948"}], [{"original_text": "My favorites though were these otters.", "album_id": "72157623246073176", "photo_flickr_id": "4294226090", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "42189", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorites though were these otters .", "storylet_id": "210949"}], [{"original_text": "I went to the beach today.", "album_id": "72157623246970818", "photo_flickr_id": "4290021444", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42190", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the beach today .", "storylet_id": "210950"}], [{"original_text": "There were many seals sleeping.", "album_id": "72157623246970818", "photo_flickr_id": "4289278495", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42190", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many seals sleeping .", "storylet_id": "210951"}], [{"original_text": "My dog was playing with the seals.", "album_id": "72157623246970818", "photo_flickr_id": "4289279615", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42190", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my dog was playing with the seals .", "storylet_id": "210952"}], [{"original_text": "There were some baby seals as well.", "album_id": "72157623246970818", "photo_flickr_id": "4290023042", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42190", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were some baby seals as well .", "storylet_id": "210953"}], [{"original_text": "I had a great time.", "album_id": "72157623246970818", "photo_flickr_id": "4290023414", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42190", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time .", "storylet_id": "210954"}], [{"original_text": "These are some chubby seals.", "album_id": "72157623246970818", "photo_flickr_id": "4290021202", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "42191", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these are some chubby seals .", "storylet_id": "210955"}], [{"original_text": "Oh! What is that shiny, black thing?", "album_id": "72157623246970818", "photo_flickr_id": "4289278495", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "42191", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "oh ! what is that shiny , black thing ?", "storylet_id": "210956"}], [{"original_text": "Is that a baby seal?", "album_id": "72157623246970818", "photo_flickr_id": "4289278859", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "42191", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "is that a baby seal ?", "storylet_id": "210957"}], [{"original_text": "Aww, first kiss hello from mom to baby.", "album_id": "72157623246970818", "photo_flickr_id": "4290022520", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "42191", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "aww , first kiss hello from mom to baby .", "storylet_id": "210958"}], [{"original_text": "Welcome to the world, little one.", "album_id": "72157623246970818", "photo_flickr_id": "4289279615", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "42191", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "welcome to the world , little one .", "storylet_id": "210959"}], [{"original_text": "It was really a special day because we got to watch a seal lion being birthed.", "album_id": "72157623246970818", "photo_flickr_id": "4290021444", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "42192", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was really a special day because we got to watch a seal lion being birthed .", "storylet_id": "210960"}], [{"original_text": "The poor mom looks exhausted, but happy that it's over.", "album_id": "72157623246970818", "photo_flickr_id": "4289278495", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "42192", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the poor mom looks exhausted , but happy that it 's over .", "storylet_id": "210961"}], [{"original_text": "The sea lion mom is checking out her new baby.", "album_id": "72157623246970818", "photo_flickr_id": "4289279615", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "42192", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sea lion mom is checking out her new baby .", "storylet_id": "210962"}], [{"original_text": "The new baby seems strong and healthy.", "album_id": "72157623246970818", "photo_flickr_id": "4290023042", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "42192", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the new baby seems strong and healthy .", "storylet_id": "210963"}], [{"original_text": "The sea gulls come along to help clean up the mess so the new baby can enjoy its new life!", "album_id": "72157623246970818", "photo_flickr_id": "4290023414", "setting": "last-3-pick-old-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "42192", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sea gulls come along to help clean up the mess so the new baby can enjoy its new life !", "storylet_id": "210964"}], [{"original_text": "This mother seal is giving birth.", "album_id": "72157623246970818", "photo_flickr_id": "4290021202", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42193", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this mother seal is giving birth .", "storylet_id": "210965"}], [{"original_text": "She will push until the baby is delivered.", "album_id": "72157623246970818", "photo_flickr_id": "4289278495", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42193", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she will push until the baby is delivered .", "storylet_id": "210966"}], [{"original_text": "Once out the baby will lay there and get its strength up until it can move about.", "album_id": "72157623246970818", "photo_flickr_id": "4289278859", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42193", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once out the baby will lay there and get its strength up until it can move about .", "storylet_id": "210967"}], [{"original_text": "Then you can see how the baby starts looking around for mom.", "album_id": "72157623246970818", "photo_flickr_id": "4290022520", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42193", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then you can see how the baby starts looking around for mom .", "storylet_id": "210968"}], [{"original_text": "In no time flat the baby is up and ready to go.", "album_id": "72157623246970818", "photo_flickr_id": "4289279615", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42193", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in no time flat the baby is up and ready to go .", "storylet_id": "210969"}], [{"original_text": "The seals were laying around", "album_id": "72157623246970818", "photo_flickr_id": "4290021444", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42194", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the seals were laying around", "storylet_id": "210970"}], [{"original_text": "on the beach.", "album_id": "72157623246970818", "photo_flickr_id": "4289278495", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42194", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on the beach .", "storylet_id": "210971"}], [{"original_text": "They looked at each other", "album_id": "72157623246970818", "photo_flickr_id": "4289279615", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42194", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they looked at each other", "storylet_id": "210972"}], [{"original_text": "and did not know what to think.", "album_id": "72157623246970818", "photo_flickr_id": "4290023042", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42194", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and did not know what to think .", "storylet_id": "210973"}], [{"original_text": "Then a bird came.", "album_id": "72157623246970818", "photo_flickr_id": "4290023414", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42194", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then a bird came .", "storylet_id": "210974"}], [{"original_text": "We saw the early vestiges of sunlight from inside the cave, and it made us feel a little less forlorn.", "album_id": "248083", "photo_flickr_id": "10035729", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "42195", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we saw the early vestiges of sunlight from inside the cave , and it made us feel a little less forlorn .", "storylet_id": "210975"}], [{"original_text": "Having to hunker down in the cave for the night, having lost our bearings on our way out last night, made us feel hopeless. But being able to see the beautiful mountains, what we had came here for, restored our spirits.", "album_id": "248083", "photo_flickr_id": "10035622", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "42195", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "having to hunker down in the cave for the night , having lost our bearings on our way out last night , made us feel hopeless . but being able to see the beautiful mountains , what we had came here for , restored our spirits .", "storylet_id": "210976"}], [{"original_text": "We followed the river for some time, remembering that our house was downstream.", "album_id": "248083", "photo_flickr_id": "10036573", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "42195", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we followed the river for some time , remembering that our house was downstream .", "storylet_id": "210977"}], [{"original_text": "And we found it! It wasn't very long at all.", "album_id": "248083", "photo_flickr_id": "10036978", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "42195", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and we found it ! it was n't very long at all .", "storylet_id": "210978"}], [{"original_text": "We had to bring the trip to a close soon, we had nearly missed the expedition home with the cave incident, but it made us feel that much closer as a group, as people; as friends.", "album_id": "248083", "photo_flickr_id": "10037580", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "42195", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had to bring the trip to a close soon , we had nearly missed the expedition home with the cave incident , but it made us feel that much closer as a group , as people ; as friends .", "storylet_id": "210979"}], [{"original_text": "The view of the mountains was the inspiration for the trip.", "album_id": "248083", "photo_flickr_id": "10035622", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42196", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the view of the mountains was the inspiration for the trip .", "storylet_id": "210980"}], [{"original_text": "As they got closer they started to see the wildlife.", "album_id": "248083", "photo_flickr_id": "10035992", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42196", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as they got closer they started to see the wildlife .", "storylet_id": "210981"}], [{"original_text": "The cabin they rented was just on the other side of the lake.", "album_id": "248083", "photo_flickr_id": "10036261", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42196", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cabin they rented was just on the other side of the lake .", "storylet_id": "210982"}], [{"original_text": "They arrived a found the cozy cabin waiting for them. ", "album_id": "248083", "photo_flickr_id": "10036978", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42196", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they arrived a found the cozy cabin waiting for them .", "storylet_id": "210983"}], [{"original_text": "After unpacking, the friends went out to enjoy the fresh, cold mountain air.", "album_id": "248083", "photo_flickr_id": "10037580", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42196", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after unpacking , the friends went out to enjoy the fresh , cold mountain air .", "storylet_id": "210984"}], [{"original_text": "This is a picture of a cave.", "album_id": "248083", "photo_flickr_id": "10035729", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42197", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a cave .", "storylet_id": "210985"}], [{"original_text": "This is a picture of a snow capped mountain.", "album_id": "248083", "photo_flickr_id": "10035622", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42197", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a snow capped mountain .", "storylet_id": "210986"}], [{"original_text": "This is a picture of water and rocks.", "album_id": "248083", "photo_flickr_id": "10036573", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42197", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of water and rocks .", "storylet_id": "210987"}], [{"original_text": "This is a picture of a house.", "album_id": "248083", "photo_flickr_id": "10036978", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42197", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of a house .", "storylet_id": "210988"}], [{"original_text": "This is a picture of the beach.", "album_id": "248083", "photo_flickr_id": "10037580", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42197", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of the beach .", "storylet_id": "210989"}], [{"original_text": "They decided to spend the day up in the mountains. ", "album_id": "248083", "photo_flickr_id": "10035729", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42198", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they decided to spend the day up in the mountains .", "storylet_id": "210990"}], [{"original_text": "They stopped and admired the view of the snow capped peak of the mountain.", "album_id": "248083", "photo_flickr_id": "10035622", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42198", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they stopped and admired the view of the snow capped peak of the mountain .", "storylet_id": "210991"}], [{"original_text": "They found an out of the way waterfall that was very active.", "album_id": "248083", "photo_flickr_id": "10036573", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42198", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they found an out of the way waterfall that was very active .", "storylet_id": "210992"}], [{"original_text": "Out of the blue and in the middle of nowhere they ran into a small house.", "album_id": "248083", "photo_flickr_id": "10036978", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42198", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "out of the blue and in the middle of nowhere they ran into a small house .", "storylet_id": "210993"}], [{"original_text": "They found the perfect spot to sit and admire the beautiful scenery. ", "album_id": "248083", "photo_flickr_id": "10037580", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42198", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they found the perfect spot to sit and admire the beautiful scenery .", "storylet_id": "210994"}], [{"original_text": "When I woke up, I found myself in a strange cave.", "album_id": "248083", "photo_flickr_id": "10035729", "setting": "last-3-pick-old-and-tell", "worker_id": "KORXC8TUSYM2WYP", "story_id": "42199", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i woke up , i found myself in a strange cave .", "storylet_id": "210995"}], [{"original_text": "Stepping outside, I discovered that I was in a beautiful landscape!", "album_id": "248083", "photo_flickr_id": "10035622", "setting": "last-3-pick-old-and-tell", "worker_id": "KORXC8TUSYM2WYP", "story_id": "42199", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "stepping outside , i discovered that i was in a beautiful landscape !", "storylet_id": "210996"}], [{"original_text": "Mountains and streams dotted the countryside all around me.", "album_id": "248083", "photo_flickr_id": "10036573", "setting": "last-3-pick-old-and-tell", "worker_id": "KORXC8TUSYM2WYP", "story_id": "42199", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mountains and streams dotted the countryside all around me .", "storylet_id": "210997"}], [{"original_text": "Fearing eventual starvation, I approached the first sign of civilization I found.", "album_id": "248083", "photo_flickr_id": "10036978", "setting": "last-3-pick-old-and-tell", "worker_id": "KORXC8TUSYM2WYP", "story_id": "42199", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fearing eventual starvation , i approached the first sign of civilization i found .", "storylet_id": "210998"}], [{"original_text": "Thankfully, the house I found was full of friendly travelers who were quite willing to take me along on their journey.", "album_id": "248083", "photo_flickr_id": "10037580", "setting": "last-3-pick-old-and-tell", "worker_id": "KORXC8TUSYM2WYP", "story_id": "42199", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thankfully , the house i found was full of friendly travelers who were quite willing to take me along on their journey .", "storylet_id": "210999"}], [{"original_text": "The motorcycle show was this weekend.", "album_id": "351482", "photo_flickr_id": "14520558", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42200", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the motorcycle show was this weekend .", "storylet_id": "211000"}], [{"original_text": "Motorcycle enthusiasts came to show off their creations. ", "album_id": "351482", "photo_flickr_id": "14520726", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42200", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "motorcycle enthusiasts came to show off their creations .", "storylet_id": "211001"}], [{"original_text": "Some people even brought tricked-out semi-trucks.", "album_id": "351482", "photo_flickr_id": "14520795", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42200", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people even brought tricked-out semi-trucks .", "storylet_id": "211002"}], [{"original_text": "Everyone lined their bikes up in a parking lot for people to look at.", "album_id": "351482", "photo_flickr_id": "14520944", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42200", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone lined their bikes up in a parking lot for people to look at .", "storylet_id": "211003"}], [{"original_text": "Eventually, some of the cyclists decided they were bored with showing their rides and rode off to have fun.", "album_id": "351482", "photo_flickr_id": "14520975", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42200", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually , some of the cyclists decided they were bored with showing their rides and rode off to have fun .", "storylet_id": "211004"}], [{"original_text": "The sea lions are taking a nap.", "album_id": "351482", "photo_flickr_id": "14520501", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "42201", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sea lions are taking a nap .", "storylet_id": "211005"}], [{"original_text": "This bird wants to be friends with the penguins.", "album_id": "351482", "photo_flickr_id": "14520558", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "42201", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this bird wants to be friends with the penguins .", "storylet_id": "211006"}], [{"original_text": "The penguins are going to go for a swim.", "album_id": "351482", "photo_flickr_id": "14520675", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "42201", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the penguins are going to go for a swim .", "storylet_id": "211007"}], [{"original_text": "These two young ones are playing together.", "album_id": "351482", "photo_flickr_id": "14520726", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "42201", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these two young ones are playing together .", "storylet_id": "211008"}], [{"original_text": "The birds also want to enjoy the sun.", "album_id": "351482", "photo_flickr_id": "14520760", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "42201", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the birds also want to enjoy the sun .", "storylet_id": "211009"}], [{"original_text": "We saw some unique motorcycles like this at the show today.", "album_id": "351482", "photo_flickr_id": "14520558", "setting": "last-3-pick-old-and-tell", "worker_id": "XMC6P3ZSQDHV0GQ", "story_id": "42202", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we saw some unique motorcycles like this at the show today .", "storylet_id": "211010"}], [{"original_text": "This one looks easy to control.", "album_id": "351482", "photo_flickr_id": "14520726", "setting": "last-3-pick-old-and-tell", "worker_id": "XMC6P3ZSQDHV0GQ", "story_id": "42202", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one looks easy to control .", "storylet_id": "211011"}], [{"original_text": "Then we saw someone's custom truck nearby.", "album_id": "351482", "photo_flickr_id": "14520795", "setting": "last-3-pick-old-and-tell", "worker_id": "XMC6P3ZSQDHV0GQ", "story_id": "42202", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we saw someone 's custom truck nearby .", "storylet_id": "211012"}], [{"original_text": "We asked the truck driver for a lift, and he took us to a lot with more motorcycles.", "album_id": "351482", "photo_flickr_id": "14520944", "setting": "last-3-pick-old-and-tell", "worker_id": "XMC6P3ZSQDHV0GQ", "story_id": "42202", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we asked the truck driver for a lift , and he took us to a lot with more motorcycles .", "storylet_id": "211013"}], [{"original_text": "After that, we stopped by the store for some snacks and drinks.", "album_id": "351482", "photo_flickr_id": "14520975", "setting": "last-3-pick-old-and-tell", "worker_id": "XMC6P3ZSQDHV0GQ", "story_id": "42202", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that , we stopped by the store for some snacks and drinks .", "storylet_id": "211014"}], [{"original_text": "We decided to take my dad's bike to the bike show this weekend. ", "album_id": "351482", "photo_flickr_id": "14520558", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42203", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to take my dad 's bike to the bike show this weekend .", "storylet_id": "211015"}], [{"original_text": "My brother brought his bike too. ", "album_id": "351482", "photo_flickr_id": "14520726", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42203", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my brother brought his bike too .", "storylet_id": "211016"}], [{"original_text": "A semi painted like an American flag was at the entrance. ", "album_id": "351482", "photo_flickr_id": "14520795", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42203", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a semi painted like an american flag was at the entrance .", "storylet_id": "211017"}], [{"original_text": "Most of the bikes were parked in a safe area for browsing. ", "album_id": "351482", "photo_flickr_id": "14520944", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42203", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "most of the bikes were parked in a safe area for browsing .", "storylet_id": "211018"}], [{"original_text": "On the way home, several people one bike left too. ", "album_id": "351482", "photo_flickr_id": "14520975", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42203", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the way home , several people one bike left too .", "storylet_id": "211019"}], [{"original_text": "The cranberry red motorcycle stood proudly on the dirt patch.", "album_id": "351482", "photo_flickr_id": "14520558", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42204", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cranberry red motorcycle stood proudly on the dirt patch .", "storylet_id": "211020"}], [{"original_text": "A light blue motorcycle was hidden by the recreational vehicle.", "album_id": "351482", "photo_flickr_id": "14520726", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42204", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a light blue motorcycle was hidden by the recreational vehicle .", "storylet_id": "211021"}], [{"original_text": "There was an air of patriotism as the truck drove down the street.", "album_id": "351482", "photo_flickr_id": "14520795", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42204", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was an air of patriotism as the truck drove down the street .", "storylet_id": "211022"}], [{"original_text": "Finally all the motorcycles arrived at the staring point.", "album_id": "351482", "photo_flickr_id": "14520944", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42204", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally all the motorcycles arrived at the staring point .", "storylet_id": "211023"}], [{"original_text": "Two late comers were held up in the traffic by the QWIK MART.", "album_id": "351482", "photo_flickr_id": "14520975", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42204", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "two late comers were held up in the traffic by the qwik mart .", "storylet_id": "211024"}], [{"original_text": "We drove 500 miles down to our ranch.", "album_id": "354054", "photo_flickr_id": "14636730", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42205", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we drove 500 miles down to our ranch .", "storylet_id": "211025"}], [{"original_text": "We had a lot of fun there.", "album_id": "354054", "photo_flickr_id": "14638936", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42205", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a lot of fun there .", "storylet_id": "211026"}], [{"original_text": "The ocean breeze felt great.", "album_id": "354054", "photo_flickr_id": "14640496", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42205", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ocean breeze felt great .", "storylet_id": "211027"}], [{"original_text": "After a long day of fun, we went inside to rest.", "album_id": "354054", "photo_flickr_id": "14638938", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42205", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a long day of fun , we went inside to rest .", "storylet_id": "211028"}], [{"original_text": "Unfortunately, one of the girls died in her sleep. Her spirit watches over us all.", "album_id": "354054", "photo_flickr_id": "14638935", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42205", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "unfortunately , one of the girls died in her sleep . her spirit watches over us all .", "storylet_id": "211029"}], [{"original_text": "The Bellzinorrious family decided to get out of town.", "album_id": "354054", "photo_flickr_id": "14638936", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42206", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bellzinorrious family decided to get out of town .", "storylet_id": "211030"}], [{"original_text": "Dad hitched up his pants and loaded the car.", "album_id": "354054", "photo_flickr_id": "14636731", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42206", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dad hitched up his pants and loaded the car .", "storylet_id": "211031"}], [{"original_text": "The flipped a coin and headed East.", "album_id": "354054", "photo_flickr_id": "14636730", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42206", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the flipped a coin and headed east .", "storylet_id": "211032"}], [{"original_text": "Once they hit the coast, they walked around a bit.", "album_id": "354054", "photo_flickr_id": "14636729", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42206", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once they hit the coast , they walked around a bit .", "storylet_id": "211033"}], [{"original_text": "They ran into beautiful sites such as this pond.", "album_id": "354054", "photo_flickr_id": "14640494", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42206", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ran into beautiful sites such as this pond .", "storylet_id": "211034"}], [{"original_text": "The road was abandoned as we drove on the highway.", "album_id": "354054", "photo_flickr_id": "14636730", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42207", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the road was abandoned as we drove on the highway .", "storylet_id": "211035"}], [{"original_text": "Janet decided this would be a good time to take a break.", "album_id": "354054", "photo_flickr_id": "14638936", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42207", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] decided this would be a good time to take a break .", "storylet_id": "211036"}], [{"original_text": "John, Jesse and Nicole took advantage of the natural beauty and walked around.", "album_id": "354054", "photo_flickr_id": "14640496", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42207", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] , [male] and [female] took advantage of the natural beauty and walked around .", "storylet_id": "211037"}], [{"original_text": "When we arrived at the hotel David was conked out.", "album_id": "354054", "photo_flickr_id": "14638938", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42207", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we arrived at the hotel [male] was conked out .", "storylet_id": "211038"}], [{"original_text": "Esther spent time reflecting on the day's happenings.", "album_id": "354054", "photo_flickr_id": "14638935", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42207", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] spent time reflecting on the day 's happenings .", "storylet_id": "211039"}], [{"original_text": "We took a pilgrimage tour with the family. ", "album_id": "354054", "photo_flickr_id": "14636730", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "42208", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a pilgrimage tour with the family .", "storylet_id": "211040"}], [{"original_text": "I got a little souvenir hat for my son to wear. ", "album_id": "354054", "photo_flickr_id": "14638936", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "42208", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got a little souvenir hat for my son to wear .", "storylet_id": "211041"}], [{"original_text": "We visited the coastline where the Mayflower first landed. ", "album_id": "354054", "photo_flickr_id": "14640496", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "42208", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we visited the coastline where the mayflower first landed .", "storylet_id": "211042"}], [{"original_text": "Got to one of the cottages and it had decorative fabrics. ", "album_id": "354054", "photo_flickr_id": "14638938", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "42208", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "got to one of the cottages and it had decorative fabrics .", "storylet_id": "211043"}], [{"original_text": "I still dream of that tour, it was quite an eye opener into the history of our country. ", "album_id": "354054", "photo_flickr_id": "14638935", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "42208", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i still dream of that tour , it was quite an eye opener into the history of our country .", "storylet_id": "211044"}], [{"original_text": "The family decided to go on a spur of the moment trip.", "album_id": "354054", "photo_flickr_id": "14636730", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42209", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family decided to go on a spur of the moment trip .", "storylet_id": "211045"}], [{"original_text": "They stopped off at a very nice picnic area to have lunch", "album_id": "354054", "photo_flickr_id": "14638936", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42209", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they stopped off at a very nice picnic area to have lunch", "storylet_id": "211046"}], [{"original_text": "While eating the family had a great view of the water.", "album_id": "354054", "photo_flickr_id": "14640496", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42209", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "while eating the family had a great view of the water .", "storylet_id": "211047"}], [{"original_text": "Once they got to their destination the little one was exausted.", "album_id": "354054", "photo_flickr_id": "14638938", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42209", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once they got to their destination the little one was exausted .", "storylet_id": "211048"}], [{"original_text": "She was looking out the window at the land to see what they could explore next.", "album_id": "354054", "photo_flickr_id": "14638935", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42209", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was looking out the window at the land to see what they could explore next .", "storylet_id": "211049"}], [{"original_text": "I threw a dart at a map to decide where to vacation.", "album_id": "129924", "photo_flickr_id": "5204595", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42210", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i threw a dart at a map to decide where to vacation .", "storylet_id": "211050"}], [{"original_text": "This is where the dart landed.", "album_id": "129924", "photo_flickr_id": "5162923", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42210", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is where the dart landed .", "storylet_id": "211051"}], [{"original_text": "There were other people there.", "album_id": "129924", "photo_flickr_id": "5204597", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42210", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were other people there .", "storylet_id": "211052"}], [{"original_text": "It was quite a scenic location.", "album_id": "129924", "photo_flickr_id": "5163442", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42210", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was quite a scenic location .", "storylet_id": "211053"}], [{"original_text": "I saw lots of wildlife while I was there.", "album_id": "129924", "photo_flickr_id": "5163043", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42210", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i saw lots of wildlife while i was there .", "storylet_id": "211054"}], [{"original_text": "A group of four friends arrived at a hotel to start an adventure.", "album_id": "129924", "photo_flickr_id": "5162922", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42211", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of four friends arrived at a hotel to start an adventure .", "storylet_id": "211055"}], [{"original_text": "They reviewed the map of the Washington State to decide where to go.", "album_id": "129924", "photo_flickr_id": "5204595", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42211", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they reviewed the map of the location location to decide where to go .", "storylet_id": "211056"}], [{"original_text": "One of their wrote down their targeted destinations.", "album_id": "129924", "photo_flickr_id": "5162755", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42211", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of their wrote down their targeted destinations .", "storylet_id": "211057"}], [{"original_text": "They successfully made it to one planned location after next.", "album_id": "129924", "photo_flickr_id": "5162923", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42211", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they successfully made it to one planned location after next .", "storylet_id": "211058"}], [{"original_text": "The group of friends thoroughly enjoyed their traveling experience.", "album_id": "129924", "photo_flickr_id": "5163048", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42211", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the group of friends thoroughly enjoyed their traveling experience .", "storylet_id": "211059"}], [{"original_text": "According to the map the crew had to hike 15 miles to get to the camp site.", "album_id": "129924", "photo_flickr_id": "5204595", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42212", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "according to the map the crew had to hike 15 miles to get to the camp site .", "storylet_id": "211060"}], [{"original_text": "Looking out over the water a feeling of peace entered the hiker.", "album_id": "129924", "photo_flickr_id": "5162923", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42212", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "looking out over the water a feeling of peace entered the hiker .", "storylet_id": "211061"}], [{"original_text": "Standing on the rocks really reminded everyone to be careful. It was beautiful outside but getting hurt all the way out in the wilderness would not be good.", "album_id": "129924", "photo_flickr_id": "5204597", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42212", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "standing on the rocks really reminded everyone to be careful . it was beautiful outside but getting hurt all the way out in the wilderness would not be good .", "storylet_id": "211062"}], [{"original_text": "The view of the beach from all the way up here was amazing.", "album_id": "129924", "photo_flickr_id": "5163442", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42212", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view of the beach from all the way up here was amazing .", "storylet_id": "211063"}], [{"original_text": "When they reached the campsite by the ocean, dolphins could be seen from where the tents would go. ", "album_id": "129924", "photo_flickr_id": "5163043", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42212", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when they reached the campsite by the ocean , dolphins could be seen from where the tents would go .", "storylet_id": "211064"}], [{"original_text": "The family picked somewhere in the great outdoors to go on their annual vacation.", "album_id": "129924", "photo_flickr_id": "5204595", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42213", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family picked somewhere in the great outdoors to go on their annual vacation .", "storylet_id": "211065"}], [{"original_text": "Their daughter was so excited to see the green trees and the blue water.", "album_id": "129924", "photo_flickr_id": "5162923", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42213", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their daughter was so excited to see the green trees and the blue water .", "storylet_id": "211066"}], [{"original_text": "The family hiked together over the rocks,", "album_id": "129924", "photo_flickr_id": "5204597", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42213", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family hiked together over the rocks ,", "storylet_id": "211067"}], [{"original_text": "so that they could get the best view of the sun shining over the water.", "album_id": "129924", "photo_flickr_id": "5163442", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42213", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so that they could get the best view of the sun shining over the water .", "storylet_id": "211068"}], [{"original_text": "The water looked so clear; who knows? maybe they'll get in and enjoy it for a while.", "album_id": "129924", "photo_flickr_id": "5163043", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42213", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the water looked so clear ; who knows ? maybe they 'll get in and enjoy it for a while .", "storylet_id": "211069"}], [{"original_text": "Our trip to the tidal pools started with a plan and a map.", "album_id": "129924", "photo_flickr_id": "5204595", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42214", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip to the tidal pools started with a plan and a map .", "storylet_id": "211070"}], [{"original_text": "We woke up early and drove through the forest, getting out to see the ocean below.", "album_id": "129924", "photo_flickr_id": "5162923", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42214", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we woke up early and drove through the forest , getting out to see the ocean below .", "storylet_id": "211071"}], [{"original_text": "We hiked down to the rocks, looking for sea life.", "album_id": "129924", "photo_flickr_id": "5204597", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42214", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we hiked down to the rocks , looking for sea life .", "storylet_id": "211072"}], [{"original_text": "The pools are in a beautiful area, below a forest in an amazing cove.", "album_id": "129924", "photo_flickr_id": "5163442", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42214", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pools are in a beautiful area , below a forest in an amazing cove .", "storylet_id": "211073"}], [{"original_text": "We were lucky enough to get to see to passing whales while we were there.", "album_id": "129924", "photo_flickr_id": "5163043", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42214", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were lucky enough to get to see to passing whales while we were there .", "storylet_id": "211074"}], [{"original_text": "I had to post some of these amazing photos from vacation ", "album_id": "134248", "photo_flickr_id": "5148475", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "42215", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had to post some of these amazing photos from vacation", "storylet_id": "211075"}], [{"original_text": "I love this photo of the rocks out in the ocean ", "album_id": "134248", "photo_flickr_id": "5148584", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "42215", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love this photo of the rocks out in the ocean", "storylet_id": "211076"}], [{"original_text": "We spent this day walking the beach looking for shells ", "album_id": "134248", "photo_flickr_id": "5148693", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "42215", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we spent this day walking the beach looking for shells", "storylet_id": "211077"}], [{"original_text": "There are some amazing view of the beautiful water ", "album_id": "134248", "photo_flickr_id": "5148714", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "42215", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are some amazing view of the beautiful water", "storylet_id": "211078"}], [{"original_text": "This is one of my favorites on the last day visiting ", "album_id": "134248", "photo_flickr_id": "5148725", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "42215", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is one of my favorites on the last day visiting", "storylet_id": "211079"}], [{"original_text": "We went sightseeing at the coolest place this weekend.", "album_id": "134248", "photo_flickr_id": "5148755", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "42216", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went sightseeing at the coolest place this weekend .", "storylet_id": "211080"}], [{"original_text": "It had really high cliffs with different layers of rock.", "album_id": "134248", "photo_flickr_id": "5148627", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "42216", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it had really high cliffs with different layers of rock .", "storylet_id": "211081"}], [{"original_text": "And caves that we could explore!", "album_id": "134248", "photo_flickr_id": "5148651", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "42216", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and caves that we could explore !", "storylet_id": "211082"}], [{"original_text": "Along the trail there were boards that told us more about the area.", "album_id": "134248", "photo_flickr_id": "5148741", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "42216", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "along the trail there were boards that told us more about the area .", "storylet_id": "211083"}], [{"original_text": "We learned a lot and had a great time!", "album_id": "134248", "photo_flickr_id": "5148499", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "42216", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we learned a lot and had a great time !", "storylet_id": "211084"}], [{"original_text": "A visit to the beach was just what I needed. The sound of the water against the shore was so soothing.", "album_id": "134248", "photo_flickr_id": "5148475", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "42217", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a visit to the beach was just what i needed . the sound of the water against the shore was so soothing .", "storylet_id": "211085"}], [{"original_text": "Standing behind the trees made me feel like I was lost on an island.", "album_id": "134248", "photo_flickr_id": "5148584", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "42217", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "standing behind the trees made me feel like i was lost on an island .", "storylet_id": "211086"}], [{"original_text": "Bob and Jim decided to get closer to the water to see how warm it was.", "album_id": "134248", "photo_flickr_id": "5148693", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "42217", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and [male] decided to get closer to the water to see how warm it was .", "storylet_id": "211087"}], [{"original_text": "The water was just so beautiful. I'd love to stay there forever.", "album_id": "134248", "photo_flickr_id": "5148714", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "42217", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the water was just so beautiful . i 'd love to stay there forever .", "storylet_id": "211088"}], [{"original_text": "The waves were so magnificent. I was in awe. ", "album_id": "134248", "photo_flickr_id": "5148725", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "42217", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the waves were so magnificent . i was in awe .", "storylet_id": "211089"}], [{"original_text": "We could see the beach from where we were and decided to head down.", "album_id": "134248", "photo_flickr_id": "5148475", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42218", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we could see the beach from where we were and decided to head down .", "storylet_id": "211090"}], [{"original_text": "We followed a brushy path down to it.", "album_id": "134248", "photo_flickr_id": "5148584", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42218", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we followed a brushy path down to it .", "storylet_id": "211091"}], [{"original_text": "When we got there, We walked along the shore.", "album_id": "134248", "photo_flickr_id": "5148693", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42218", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we got there , we walked along the shore .", "storylet_id": "211092"}], [{"original_text": "There where large rocks coming out of the water.", "album_id": "134248", "photo_flickr_id": "5148714", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42218", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there where large rocks coming out of the water .", "storylet_id": "211093"}], [{"original_text": "It was really inspiring to say the least.", "album_id": "134248", "photo_flickr_id": "5148725", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42218", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was really inspiring to say the least .", "storylet_id": "211094"}], [{"original_text": "this the most beautiful place on earth", "album_id": "134248", "photo_flickr_id": "5148475", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42219", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this the most beautiful place on earth", "storylet_id": "211095"}], [{"original_text": "even from a distance", "album_id": "134248", "photo_flickr_id": "5148584", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42219", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even from a distance", "storylet_id": "211096"}], [{"original_text": "right on the beach is amazing", "album_id": "134248", "photo_flickr_id": "5148693", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42219", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "right on the beach is amazing", "storylet_id": "211097"}], [{"original_text": "have you ever been there? ", "album_id": "134248", "photo_flickr_id": "5148714", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42219", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "have you ever been there ?", "storylet_id": "211098"}], [{"original_text": "models love shooting here ", "album_id": "134248", "photo_flickr_id": "5148725", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42219", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "models love shooting here", "storylet_id": "211099"}], [{"original_text": "Going to the Disney parade was a very interesting experience.", "album_id": "173123", "photo_flickr_id": "6932789", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "42220", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going to the organization parade was a very interesting experience .", "storylet_id": "211100"}], [{"original_text": "There were all kinds of cool things to see.", "album_id": "173123", "photo_flickr_id": "6939603", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "42220", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were all kinds of cool things to see .", "storylet_id": "211101"}], [{"original_text": "Some people even waved beautiful flags.", "album_id": "173123", "photo_flickr_id": "6936153", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "42220", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people even waved beautiful flags .", "storylet_id": "211102"}], [{"original_text": "Dancers were there as well.", "album_id": "173123", "photo_flickr_id": "6936965", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "42220", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dancers were there as well .", "storylet_id": "211103"}], [{"original_text": "This was a very memorable experience.", "album_id": "173123", "photo_flickr_id": "6936468", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "42220", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was a very memorable experience .", "storylet_id": "211104"}], [{"original_text": "My friends and I went to a parade last week.", "album_id": "173123", "photo_flickr_id": "6938920", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42221", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i went to a parade last week .", "storylet_id": "211105"}], [{"original_text": "There were many interesting floats.", "album_id": "173123", "photo_flickr_id": "6932789", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42221", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many interesting floats .", "storylet_id": "211106"}], [{"original_text": "There were also some weird floats.", "album_id": "173123", "photo_flickr_id": "6933321", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42221", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were also some weird floats .", "storylet_id": "211107"}], [{"original_text": "There was a band playing tribal music.", "album_id": "173123", "photo_flickr_id": "6933065", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42221", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a band playing tribal music .", "storylet_id": "211108"}], [{"original_text": "The grand marshal was a woman on stilts that stood 20 feet tall!", "album_id": "173123", "photo_flickr_id": "6936965", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42221", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the grand marshal was a woman on stilts that stood 20 feet tall !", "storylet_id": "211109"}], [{"original_text": "Me and some friends decided to check out our local parade today.", "album_id": "173123", "photo_flickr_id": "6938920", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42222", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and some friends decided to check out our local parade today .", "storylet_id": "211110"}], [{"original_text": "Some of the floats were pretty impressive.", "album_id": "173123", "photo_flickr_id": "6932789", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42222", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the floats were pretty impressive .", "storylet_id": "211111"}], [{"original_text": "I can tell they must have spent a lot of time on this one.", "album_id": "173123", "photo_flickr_id": "6933321", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42222", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i can tell they must have spent a lot of time on this one .", "storylet_id": "211112"}], [{"original_text": "These dancers were awesome in this attire.", "album_id": "173123", "photo_flickr_id": "6933065", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42222", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these dancers were awesome in this attire .", "storylet_id": "211113"}], [{"original_text": "She was my favorite of the day, I love her costume.", "album_id": "173123", "photo_flickr_id": "6936965", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42222", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was my favorite of the day , i love her costume .", "storylet_id": "211114"}], [{"original_text": "We visited a parade today.", "album_id": "173123", "photo_flickr_id": "6932789", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42223", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited a parade today .", "storylet_id": "211115"}], [{"original_text": "First some large golden dragons passed us by.", "album_id": "173123", "photo_flickr_id": "6939603", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42223", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first some large golden dragons passed us by .", "storylet_id": "211116"}], [{"original_text": "Then some people in large colorful costumes went by.", "album_id": "173123", "photo_flickr_id": "6936153", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42223", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then some people in large colorful costumes went by .", "storylet_id": "211117"}], [{"original_text": "After that some ladies dancing on a float passed by.", "album_id": "173123", "photo_flickr_id": "6936965", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42223", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that some ladies dancing on a float passed by .", "storylet_id": "211118"}], [{"original_text": "Finally a marching band and some interesting costumed people passed us by.", "album_id": "173123", "photo_flickr_id": "6936468", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42223", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally a marching band and some interesting costumed people passed us by .", "storylet_id": "211119"}], [{"original_text": "The most exciting part of our visit to Comic Con was the parade.", "album_id": "173123", "photo_flickr_id": "6932789", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42224", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the most exciting part of our visit to comic con was the parade .", "storylet_id": "211120"}], [{"original_text": "There was a wide range of paraders, including Chinese Dragons.", "album_id": "173123", "photo_flickr_id": "6939603", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42224", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a wide range of paraders , including chinese dragons .", "storylet_id": "211121"}], [{"original_text": "The dancers and performers were very extravagant.", "album_id": "173123", "photo_flickr_id": "6936153", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42224", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dancers and performers were very extravagant .", "storylet_id": "211122"}], [{"original_text": "The queen of the parade got many of the men in the crowd fired up.", "album_id": "173123", "photo_flickr_id": "6936965", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42224", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the queen of the parade got many of the men in the crowd fired up .", "storylet_id": "211123"}], [{"original_text": "It was a great start to Comic Con, and really set the mood for the wackiness that was to come.", "album_id": "173123", "photo_flickr_id": "6936468", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42224", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great start to comic con , and really set the mood for the wackiness that was to come .", "storylet_id": "211124"}], [{"original_text": "I went on a road trip last weekend. I got to see a lot of new cities.", "album_id": "476835", "photo_flickr_id": "20428108", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42225", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on a road trip last weekend . i got to see a lot of new cities .", "storylet_id": "211125"}], [{"original_text": "Some of them were huge.", "album_id": "476835", "photo_flickr_id": "20428129", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42225", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of them were huge .", "storylet_id": "211126"}], [{"original_text": "It took me hours to drive through it.", "album_id": "476835", "photo_flickr_id": "20428159", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42225", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it took me hours to drive through it .", "storylet_id": "211127"}], [{"original_text": "When I finally got through it was nothing but smooth driving to my destination.", "album_id": "476835", "photo_flickr_id": "20428857", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42225", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when i finally got through it was nothing but smooth driving to my destination .", "storylet_id": "211128"}], [{"original_text": "It still took many hours to get there though.", "album_id": "476835", "photo_flickr_id": "20203333", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42225", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it still took many hours to get there though .", "storylet_id": "211129"}], [{"original_text": "A bunch of people came waiting for the show.", "album_id": "476835", "photo_flickr_id": "20428391", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42226", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a bunch of people came waiting for the show .", "storylet_id": "211130"}], [{"original_text": "They waited and waited, but the show didn't start.", "album_id": "476835", "photo_flickr_id": "20427686", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42226", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they waited and waited , but the show did n't start .", "storylet_id": "211131"}], [{"original_text": "They waited over an hour, and still nothing happened.", "album_id": "476835", "photo_flickr_id": "20427768", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42226", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they waited over an hour , and still nothing happened .", "storylet_id": "211132"}], [{"original_text": "No one knew why the show hadn't started.", "album_id": "476835", "photo_flickr_id": "20427786", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42226", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "no one knew why the show had n't started .", "storylet_id": "211133"}], [{"original_text": "The entire crowd was disappointed. Everyone started to leave.", "album_id": "476835", "photo_flickr_id": "20428402", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42226", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the entire crowd was disappointed . everyone started to leave .", "storylet_id": "211134"}], [{"original_text": "The family went to the harbor for a holiday get away.", "album_id": "476835", "photo_flickr_id": "20428391", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42227", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went to the harbor for a holiday get away .", "storylet_id": "211135"}], [{"original_text": "There weren't a lot of boats in the water that day.", "album_id": "476835", "photo_flickr_id": "20427686", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42227", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were n't a lot of boats in the water that day .", "storylet_id": "211136"}], [{"original_text": "The scenery was breathtaking.", "album_id": "476835", "photo_flickr_id": "20427768", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42227", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the scenery was breathtaking .", "storylet_id": "211137"}], [{"original_text": "I wish we could have gotten on a tour boat.", "album_id": "476835", "photo_flickr_id": "20427786", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42227", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i wish we could have gotten on a tour boat .", "storylet_id": "211138"}], [{"original_text": "In the end it was a nice slow peaceful day.", "album_id": "476835", "photo_flickr_id": "20428402", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42227", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end it was a nice slow peaceful day .", "storylet_id": "211139"}], [{"original_text": "We are having a great time at the lake watching the boats and engaging in conversation.", "album_id": "476835", "photo_flickr_id": "20428391", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "42228", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are having a great time at the lake watching the boats and engaging in conversation .", "storylet_id": "211140"}], [{"original_text": "There is nothing like spending a day at the lake just watching the boats and people fish.", "album_id": "476835", "photo_flickr_id": "20427686", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "42228", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is nothing like spending a day at the lake just watching the boats and people fish .", "storylet_id": "211141"}], [{"original_text": "We also have the perfect view of the city from where we sat.", "album_id": "476835", "photo_flickr_id": "20427768", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "42228", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also have the perfect view of the city from where we sat .", "storylet_id": "211142"}], [{"original_text": "The boats decided to come out and show us a bit of racing.", "album_id": "476835", "photo_flickr_id": "20427786", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "42228", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boats decided to come out and show us a bit of racing .", "storylet_id": "211143"}], [{"original_text": "We were all relaxed just sitting back talking and getting ready for the race.", "album_id": "476835", "photo_flickr_id": "20428402", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "42228", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were all relaxed just sitting back talking and getting ready for the race .", "storylet_id": "211144"}], [{"original_text": "What is this going to be, an industrial building of some sort?", "album_id": "476835", "photo_flickr_id": "20428108", "setting": "last-3-pick-old-and-tell", "worker_id": "Y3NWOD6829IJB53", "story_id": "42229", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what is this going to be , an industrial building of some sort ?", "storylet_id": "211145"}], [{"original_text": "This is a more scenic view, with the huge tower in the background.", "album_id": "476835", "photo_flickr_id": "20428129", "setting": "last-3-pick-old-and-tell", "worker_id": "Y3NWOD6829IJB53", "story_id": "42229", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a more scenic view , with the huge tower in the background .", "storylet_id": "211146"}], [{"original_text": "A view from the bridge towards our destination - almost there!", "album_id": "476835", "photo_flickr_id": "20428159", "setting": "last-3-pick-old-and-tell", "worker_id": "Y3NWOD6829IJB53", "story_id": "42229", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a view from the bridge towards our destination - almost there !", "storylet_id": "211147"}], [{"original_text": "I thought we would never arrive. ", "album_id": "476835", "photo_flickr_id": "20428857", "setting": "last-3-pick-old-and-tell", "worker_id": "Y3NWOD6829IJB53", "story_id": "42229", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i thought we would never arrive .", "storylet_id": "211148"}], [{"original_text": "Oh, will this road never end?", "album_id": "476835", "photo_flickr_id": "20203333", "setting": "last-3-pick-old-and-tell", "worker_id": "Y3NWOD6829IJB53", "story_id": "42229", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "oh , will this road never end ?", "storylet_id": "211149"}], [{"original_text": "It was so exciting as everyone began to arrive for the party.", "album_id": "480134", "photo_flickr_id": "20578022", "setting": "first-2-pick-and-tell", "worker_id": "RHJFGJFFIKSZNPU", "story_id": "42230", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was so exciting as everyone began to arrive for the party .", "storylet_id": "211150"}], [{"original_text": "Great times full of good friends and good food.", "album_id": "480134", "photo_flickr_id": "20577327", "setting": "first-2-pick-and-tell", "worker_id": "RHJFGJFFIKSZNPU", "story_id": "42230", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "great times full of good friends and good food .", "storylet_id": "211151"}], [{"original_text": "Not to mention, good drinks. Cheers!", "album_id": "480134", "photo_flickr_id": "20577764", "setting": "first-2-pick-and-tell", "worker_id": "RHJFGJFFIKSZNPU", "story_id": "42230", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not to mention , good drinks . cheers !", "storylet_id": "211152"}], [{"original_text": "It was a beautiful day to spend with friends.", "album_id": "480134", "photo_flickr_id": "20577950", "setting": "first-2-pick-and-tell", "worker_id": "RHJFGJFFIKSZNPU", "story_id": "42230", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a beautiful day to spend with friends .", "storylet_id": "211153"}], [{"original_text": "Thankfully, someone remembered to get a picture. What a great looking group!", "album_id": "480134", "photo_flickr_id": "20578194", "setting": "first-2-pick-and-tell", "worker_id": "RHJFGJFFIKSZNPU", "story_id": "42230", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thankfully , someone remembered to get a picture . what a great looking group !", "storylet_id": "211154"}], [{"original_text": "Tennis players were warming up for the championship.", "album_id": "480134", "photo_flickr_id": "20577413", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42231", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "tennis players were warming up for the championship .", "storylet_id": "211155"}], [{"original_text": "Spectators pre-gamed with drinks and conversation. ", "album_id": "480134", "photo_flickr_id": "20577492", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42231", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "spectators pre-gamed with drinks and conversation .", "storylet_id": "211156"}], [{"original_text": "Some people forgot to bring chairs. ", "album_id": "480134", "photo_flickr_id": "20582748", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42231", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people forgot to bring chairs .", "storylet_id": "211157"}], [{"original_text": "Beer and tennis went hand and hand for some of the fans.", "album_id": "480134", "photo_flickr_id": "20577764", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42231", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "beer and tennis went hand and hand for some of the fans .", "storylet_id": "211158"}], [{"original_text": "Dan decided he only wanted to drink one pitcher of beer so that he could remember the match.", "album_id": "480134", "photo_flickr_id": "20577816", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42231", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] decided he only wanted to drink one pitcher of beer so that he could remember the match .", "storylet_id": "211159"}], [{"original_text": "After getting our hotel room, we went out in search of something to do.", "album_id": "480134", "photo_flickr_id": "20578022", "setting": "last-3-pick-old-and-tell", "worker_id": "XMC6P3ZSQDHV0GQ", "story_id": "42232", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after getting our hotel room , we went out in search of something to do .", "storylet_id": "211160"}], [{"original_text": "We stopped by a restaurant for lunch while we were out.", "album_id": "480134", "photo_flickr_id": "20577327", "setting": "last-3-pick-old-and-tell", "worker_id": "XMC6P3ZSQDHV0GQ", "story_id": "42232", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped by a restaurant for lunch while we were out .", "storylet_id": "211161"}], [{"original_text": "Then we had some drinks, because we're on vacation anyway!", "album_id": "480134", "photo_flickr_id": "20577764", "setting": "last-3-pick-old-and-tell", "worker_id": "XMC6P3ZSQDHV0GQ", "story_id": "42232", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we had some drinks , because we 're on vacation anyway !", "storylet_id": "211162"}], [{"original_text": "We went back to our room and took a break.", "album_id": "480134", "photo_flickr_id": "20577950", "setting": "last-3-pick-old-and-tell", "worker_id": "XMC6P3ZSQDHV0GQ", "story_id": "42232", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went back to our room and took a break .", "storylet_id": "211163"}], [{"original_text": "Then we went to the beach and made some new friends.", "album_id": "480134", "photo_flickr_id": "20578194", "setting": "last-3-pick-old-and-tell", "worker_id": "XMC6P3ZSQDHV0GQ", "story_id": "42232", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we went to the beach and made some new friends .", "storylet_id": "211164"}], [{"original_text": "Here we have just arrived on our vacation. We are headed to grab a bite to eat.", "album_id": "480134", "photo_flickr_id": "20578022", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "42233", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we have just arrived on our vacation . we are headed to grab a bite to eat .", "storylet_id": "211165"}], [{"original_text": "We found a little eatery in the villa.", "album_id": "480134", "photo_flickr_id": "20577327", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "42233", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we found a little eatery in the villa .", "storylet_id": "211166"}], [{"original_text": "Drinking our cold beverage before taking off again.", "album_id": "480134", "photo_flickr_id": "20577764", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "42233", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "drinking our cold beverage before taking off again .", "storylet_id": "211167"}], [{"original_text": "Back to the cabin to before heading to the beach.", "album_id": "480134", "photo_flickr_id": "20577950", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "42233", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "back to the cabin to before heading to the beach .", "storylet_id": "211168"}], [{"original_text": "Here we are on the beach posing for our final group shot.", "album_id": "480134", "photo_flickr_id": "20578194", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "42233", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here we are on the beach posing for our final group shot .", "storylet_id": "211169"}], [{"original_text": "They were headed out for a day of exploring.", "album_id": "480134", "photo_flickr_id": "20578022", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42234", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were headed out for a day of exploring .", "storylet_id": "211170"}], [{"original_text": "They stopped at a quaint little place for a bite to eat.", "album_id": "480134", "photo_flickr_id": "20577327", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42234", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they stopped at a quaint little place for a bite to eat .", "storylet_id": "211171"}], [{"original_text": "Mom and dad enjoyed their drinks.", "album_id": "480134", "photo_flickr_id": "20577764", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42234", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom and dad enjoyed their drinks .", "storylet_id": "211172"}], [{"original_text": "They got on a boat for a tour of the area.", "album_id": "480134", "photo_flickr_id": "20577950", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42234", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they got on a boat for a tour of the area .", "storylet_id": "211173"}], [{"original_text": "They ended the day with few hours at the beach.", "album_id": "480134", "photo_flickr_id": "20578194", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42234", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ended the day with few hours at the beach .", "storylet_id": "211174"}], [{"original_text": "He was day dreaming while staring out the window of his office. ", "album_id": "481194", "photo_flickr_id": "20623527", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42235", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he was day dreaming while staring out the window of his office .", "storylet_id": "211175"}], [{"original_text": "At the end of the work day he checked into a nearby resort on a whim.", "album_id": "481194", "photo_flickr_id": "20620700", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42235", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at the end of the work day he checked into a nearby resort on a whim .", "storylet_id": "211176"}], [{"original_text": "He had a quick dinner on the patio of the hotel.", "album_id": "481194", "photo_flickr_id": "20620436", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42235", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had a quick dinner on the patio of the hotel .", "storylet_id": "211177"}], [{"original_text": "The next morning he woke up to clear skies.", "album_id": "481194", "photo_flickr_id": "20615043", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42235", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next morning he woke up to clear skies .", "storylet_id": "211178"}], [{"original_text": "It seemed like the perfect day to spend on the beach.", "album_id": "481194", "photo_flickr_id": "20622462", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42235", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it seemed like the perfect day to spend on the beach .", "storylet_id": "211179"}], [{"original_text": "We finally arrived at the hotel!", "album_id": "481194", "photo_flickr_id": "20623527", "setting": "first-2-pick-and-tell", "worker_id": "ECPOXLMX7SB4E23", "story_id": "42236", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we finally arrived at the hotel !", "storylet_id": "211180"}], [{"original_text": "As soon as we could, we headed for the beach!", "album_id": "481194", "photo_flickr_id": "20622462", "setting": "first-2-pick-and-tell", "worker_id": "ECPOXLMX7SB4E23", "story_id": "42236", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as soon as we could , we headed for the beach !", "storylet_id": "211181"}], [{"original_text": "Time flew, it was already time for dinner!", "album_id": "481194", "photo_flickr_id": "20619132", "setting": "first-2-pick-and-tell", "worker_id": "ECPOXLMX7SB4E23", "story_id": "42236", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "time flew , it was already time for dinner !", "storylet_id": "211182"}], [{"original_text": "We saw the sunset and admired the view.", "album_id": "481194", "photo_flickr_id": "20618719", "setting": "first-2-pick-and-tell", "worker_id": "ECPOXLMX7SB4E23", "story_id": "42236", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw the sunset and admired the view .", "storylet_id": "211183"}], [{"original_text": "Woke up to another day filled with fun!", "album_id": "481194", "photo_flickr_id": "20615043", "setting": "first-2-pick-and-tell", "worker_id": "ECPOXLMX7SB4E23", "story_id": "42236", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "woke up to another day filled with fun !", "storylet_id": "211184"}], [{"original_text": "I had stayed a few days in my hotel room.", "album_id": "481194", "photo_flickr_id": "20623527", "setting": "last-3-pick-old-and-tell", "worker_id": "XMC6P3ZSQDHV0GQ", "story_id": "42237", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had stayed a few days in my hotel room .", "storylet_id": "211185"}], [{"original_text": "I visited the beach today to pass the time.", "album_id": "481194", "photo_flickr_id": "20622462", "setting": "last-3-pick-old-and-tell", "worker_id": "XMC6P3ZSQDHV0GQ", "story_id": "42237", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i visited the beach today to pass the time .", "storylet_id": "211186"}], [{"original_text": "When the sun was setting, I went back to my room.", "album_id": "481194", "photo_flickr_id": "20619132", "setting": "last-3-pick-old-and-tell", "worker_id": "XMC6P3ZSQDHV0GQ", "story_id": "42237", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when the sun was setting , i went back to my room .", "storylet_id": "211187"}], [{"original_text": "I found that the sunset made the beach look beautiful.", "album_id": "481194", "photo_flickr_id": "20618719", "setting": "last-3-pick-old-and-tell", "worker_id": "XMC6P3ZSQDHV0GQ", "story_id": "42237", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i found that the sunset made the beach look beautiful .", "storylet_id": "211188"}], [{"original_text": "It's a new day; I wonder where I'll go to next?", "album_id": "481194", "photo_flickr_id": "20615043", "setting": "last-3-pick-old-and-tell", "worker_id": "XMC6P3ZSQDHV0GQ", "story_id": "42237", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's a new day ; i wonder where i 'll go to next ?", "storylet_id": "211189"}], [{"original_text": "There were some tall buildings near our vacation hotel room. ", "album_id": "481194", "photo_flickr_id": "20623527", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42238", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were some tall buildings near our vacation hotel room .", "storylet_id": "211190"}], [{"original_text": "The courtyard made it seem as though we weren't in a big city. ", "album_id": "481194", "photo_flickr_id": "20620700", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42238", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the courtyard made it seem as though we were n't in a big city .", "storylet_id": "211191"}], [{"original_text": "It was tropical, and full of palm trees. ", "album_id": "481194", "photo_flickr_id": "20620436", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42238", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was tropical , and full of palm trees .", "storylet_id": "211192"}], [{"original_text": "The skies stayed clear of rain clouds for our whole trip. ", "album_id": "481194", "photo_flickr_id": "20615043", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42238", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the skies stayed clear of rain clouds for our whole trip .", "storylet_id": "211193"}], [{"original_text": "The beach was nearby the hotel and very relaxing. ", "album_id": "481194", "photo_flickr_id": "20622462", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "42238", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the beach was nearby the hotel and very relaxing .", "storylet_id": "211194"}], [{"original_text": "He really wanted to get his wife away from all these skyscraper buildings.", "album_id": "481194", "photo_flickr_id": "20623527", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "42239", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he really wanted to get his wife away from all these skyscraper buildings .", "storylet_id": "211195"}], [{"original_text": "He decided to take her to a beautiful beachfront hotel.", "album_id": "481194", "photo_flickr_id": "20620700", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "42239", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he decided to take her to a beautiful beachfront hotel .", "storylet_id": "211196"}], [{"original_text": "There was a gorgeous courtyard which they sat at in the evening.", "album_id": "481194", "photo_flickr_id": "20620436", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "42239", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a gorgeous courtyard which they sat at in the evening .", "storylet_id": "211197"}], [{"original_text": "She loved the beautiful sky with puffy white clouds.", "album_id": "481194", "photo_flickr_id": "20615043", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "42239", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she loved the beautiful sky with puffy white clouds .", "storylet_id": "211198"}], [{"original_text": "The beach was so wonderful; they hated to go back home at the end of the long weekend getaway.", "album_id": "481194", "photo_flickr_id": "20622462", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "42239", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the beach was so wonderful ; they hated to go back home at the end of the long weekend getaway .", "storylet_id": "211199"}], [{"original_text": "Everyone had to put on floatation devices to go out on the boats.", "album_id": "483252", "photo_flickr_id": "20722951", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42240", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone had to put on floatation devices to go out on the boats .", "storylet_id": "211200"}], [{"original_text": "Sandy was excited to paddle out into the water.", "album_id": "483252", "photo_flickr_id": "20723987", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42240", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] was excited to paddle out into the water .", "storylet_id": "211201"}], [{"original_text": "She even had water shoes for the event.", "album_id": "483252", "photo_flickr_id": "20511184", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42240", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she even had water shoes for the event .", "storylet_id": "211202"}], [{"original_text": "Rhonda and Dave had a lot of fun on the water.", "album_id": "483252", "photo_flickr_id": "20509825", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42240", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and [male] had a lot of fun on the water .", "storylet_id": "211203"}], [{"original_text": "Everyone was all smiles as they floated along on the lake.", "album_id": "483252", "photo_flickr_id": "20511182", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42240", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was all smiles as they floated along on the lake .", "storylet_id": "211204"}], [{"original_text": "This is my view point from my work space.", "album_id": "483252", "photo_flickr_id": "20722951", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "42241", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my view point from my work space .", "storylet_id": "211205"}], [{"original_text": "The weather looks good.", "album_id": "483252", "photo_flickr_id": "20509825", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "42241", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the weather looks good .", "storylet_id": "211206"}], [{"original_text": "I will be at the beach for the rest of the day.", "album_id": "483252", "photo_flickr_id": "20511183", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "42241", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i will be at the beach for the rest of the day .", "storylet_id": "211207"}], [{"original_text": "My motel room right by the beach.", "album_id": "483252", "photo_flickr_id": "20511182", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "42241", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my motel room right by the beach .", "storylet_id": "211208"}], [{"original_text": "All these chairs will be great to relax with friends.", "album_id": "483252", "photo_flickr_id": "20509826", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "42241", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all these chairs will be great to relax with friends .", "storylet_id": "211209"}], [{"original_text": "Today, the whole family is going to go kayaking at the lake.", "album_id": "483252", "photo_flickr_id": "20722951", "setting": "last-3-pick-old-and-tell", "worker_id": "8ZHEXBLWXMYKZAK", "story_id": "42242", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , the whole family is going to go kayaking at the lake .", "storylet_id": "211210"}], [{"original_text": "Here we are getting instructions from the guide.", "album_id": "483252", "photo_flickr_id": "20723987", "setting": "last-3-pick-old-and-tell", "worker_id": "8ZHEXBLWXMYKZAK", "story_id": "42242", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we are getting instructions from the guide .", "storylet_id": "211211"}], [{"original_text": "They had us wear these water shoes.", "album_id": "483252", "photo_flickr_id": "20511184", "setting": "last-3-pick-old-and-tell", "worker_id": "8ZHEXBLWXMYKZAK", "story_id": "42242", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had us wear these water shoes .", "storylet_id": "211212"}], [{"original_text": "There goes some of the group, having fun.", "album_id": "483252", "photo_flickr_id": "20509825", "setting": "last-3-pick-old-and-tell", "worker_id": "8ZHEXBLWXMYKZAK", "story_id": "42242", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there goes some of the group , having fun .", "storylet_id": "211213"}], [{"original_text": "Mom and Dad really got the hang of this super fast!", "album_id": "483252", "photo_flickr_id": "20511182", "setting": "last-3-pick-old-and-tell", "worker_id": "8ZHEXBLWXMYKZAK", "story_id": "42242", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mom and dad really got the hang of this super fast !", "storylet_id": "211214"}], [{"original_text": "Tom and his friends stood around talking.", "album_id": "483252", "photo_flickr_id": "20722951", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42243", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and his friends stood around talking .", "storylet_id": "211215"}], [{"original_text": "In the meanwhile others took to the boat.", "album_id": "483252", "photo_flickr_id": "20509825", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42243", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in the meanwhile others took to the boat .", "storylet_id": "211216"}], [{"original_text": "Gina was starving of thirst.", "album_id": "483252", "photo_flickr_id": "20511183", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42243", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] was starving of thirst .", "storylet_id": "211217"}], [{"original_text": "Jerry and Rose oared their boat energetically in the silent waters.", "album_id": "483252", "photo_flickr_id": "20511182", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42243", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and [female] oared their boat energetically in the silent waters .", "storylet_id": "211218"}], [{"original_text": "And the afternoon concluded with some good food.", "album_id": "483252", "photo_flickr_id": "20509826", "setting": "last-3-pick-old-and-tell", "worker_id": "5B860ANB88E9QVW", "story_id": "42243", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the afternoon concluded with some good food .", "storylet_id": "211219"}], [{"original_text": "They were on staycation at a resort in the MidWest", "album_id": "483252", "photo_flickr_id": "20722951", "setting": "last-3-pick-old-and-tell", "worker_id": "ROAIAI849NTZBZ1", "story_id": "42244", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were on staycation at a resort in the midwest", "storylet_id": "211220"}], [{"original_text": "Many people were enjoying the beautiful day.", "album_id": "483252", "photo_flickr_id": "20509825", "setting": "last-3-pick-old-and-tell", "worker_id": "ROAIAI849NTZBZ1", "story_id": "42244", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people were enjoying the beautiful day .", "storylet_id": "211221"}], [{"original_text": "Since the lake was so calm, the newlyweds thought they would try kayaking for the first time.", "album_id": "483252", "photo_flickr_id": "20511183", "setting": "last-3-pick-old-and-tell", "worker_id": "ROAIAI849NTZBZ1", "story_id": "42244", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "since the lake was so calm , the newlyweds thought they would try kayaking for the first time .", "storylet_id": "211222"}], [{"original_text": "The wife can not swim, so she was giggling nervously as they headed out the the water", "album_id": "483252", "photo_flickr_id": "20511182", "setting": "last-3-pick-old-and-tell", "worker_id": "ROAIAI849NTZBZ1", "story_id": "42244", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wife can not swim , so she was giggling nervously as they headed out the the water", "storylet_id": "211223"}], [{"original_text": "A crowd gathered the cheer her on!", "album_id": "483252", "photo_flickr_id": "20509826", "setting": "last-3-pick-old-and-tell", "worker_id": "ROAIAI849NTZBZ1", "story_id": "42244", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a crowd gathered the cheer her on !", "storylet_id": "211224"}], [{"original_text": "I went to the hotel today.", "album_id": "72157625201285824", "photo_flickr_id": "4293832329", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42245", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the hotel today .", "storylet_id": "211225"}], [{"original_text": "The view of the beach was beautiful.", "album_id": "72157625201285824", "photo_flickr_id": "4293833081", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42245", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view of the beach was beautiful .", "storylet_id": "211226"}], [{"original_text": "I had a great time there.", "album_id": "72157625201285824", "photo_flickr_id": "4294580346", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42245", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time there .", "storylet_id": "211227"}], [{"original_text": "We relaxed all day.", "album_id": "72157625201285824", "photo_flickr_id": "4293839089", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42245", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we relaxed all day .", "storylet_id": "211228"}], [{"original_text": "The pool was great.", "album_id": "72157625201285824", "photo_flickr_id": "4293839941", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42245", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the pool was great .", "storylet_id": "211229"}], [{"original_text": "Our room at the resort was very comfy!", "album_id": "72157625201285824", "photo_flickr_id": "4294573894", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "42246", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our room at the resort was very comfy !", "storylet_id": "211230"}], [{"original_text": "The tub was amazing.", "album_id": "72157625201285824", "photo_flickr_id": "4293834105", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "42246", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tub was amazing .", "storylet_id": "211231"}], [{"original_text": "Breakfasts on the balcony were great!", "album_id": "72157625201285824", "photo_flickr_id": "4294578392", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "42246", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "breakfasts on the balcony were great !", "storylet_id": "211232"}], [{"original_text": "Our view from the balcony was wonderful.", "album_id": "72157625201285824", "photo_flickr_id": "4293839941", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "42246", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our view from the balcony was wonderful .", "storylet_id": "211233"}], [{"original_text": "After a week, we didn't want to leave.", "album_id": "72157625201285824", "photo_flickr_id": "4293833081", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "42246", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a week , we did n't want to leave .", "storylet_id": "211234"}], [{"original_text": "A couple on a nice vacation gets their first look at the hotel room.", "album_id": "72157625201285824", "photo_flickr_id": "4293832329", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "42247", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple on a nice vacation gets their first look at the hotel room .", "storylet_id": "211235"}], [{"original_text": "The man spent some time just gazing at the sea.", "album_id": "72157625201285824", "photo_flickr_id": "4293833081", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "42247", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man spent some time just gazing at the sea .", "storylet_id": "211236"}], [{"original_text": "The first morning they had a leisurely cup of coffee on the balcony.", "album_id": "72157625201285824", "photo_flickr_id": "4294580346", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "42247", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first morning they had a leisurely cup of coffee on the balcony .", "storylet_id": "211237"}], [{"original_text": "The sea was beautiful even though it was cloudy.", "album_id": "72157625201285824", "photo_flickr_id": "4293839089", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "42247", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sea was beautiful even though it was cloudy .", "storylet_id": "211238"}], [{"original_text": "The hotel's swimming pool looked very inviting.", "album_id": "72157625201285824", "photo_flickr_id": "4293839941", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "42247", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the hotel 's swimming pool looked very inviting .", "storylet_id": "211239"}], [{"original_text": "Everyone was excited to be going on vacation in Florida. ", "album_id": "72157625201285824", "photo_flickr_id": "4293832329", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42248", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was excited to be going on vacation in location .", "storylet_id": "211240"}], [{"original_text": "Paul was enjoying the views of the ocean over the railing.", "album_id": "72157625201285824", "photo_flickr_id": "4293833081", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42248", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was enjoying the views of the ocean over the railing .", "storylet_id": "211241"}], [{"original_text": "Mike was too busy relaxing to visit the beach. ", "album_id": "72157625201285824", "photo_flickr_id": "4294580346", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42248", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was too busy relaxing to visit the beach .", "storylet_id": "211242"}], [{"original_text": "We really loved the room we had, the view was spectacular. ", "album_id": "72157625201285824", "photo_flickr_id": "4293839089", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42248", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we really loved the room we had , the view was spectacular .", "storylet_id": "211243"}], [{"original_text": "We decided to head down to the pool to spend the rest of the day. ", "album_id": "72157625201285824", "photo_flickr_id": "4293839941", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42248", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to head down to the pool to spend the rest of the day .", "storylet_id": "211244"}], [{"original_text": "There was a lady who was greatly looking forward to her beach vacation. When she arrived, she relaxed on the couch.", "album_id": "72157625201285824", "photo_flickr_id": "4294573894", "setting": "last-3-pick-old-and-tell", "worker_id": "MR78U1BIJE5PH1G", "story_id": "42249", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a lady who was greatly looking forward to her beach vacation . when she arrived , she relaxed on the couch .", "storylet_id": "211245"}], [{"original_text": "The bathroom in the hotel that she booked was unbelievably luxurious, and she needed to try out the bathtub right away! ", "album_id": "72157625201285824", "photo_flickr_id": "4293834105", "setting": "last-3-pick-old-and-tell", "worker_id": "MR78U1BIJE5PH1G", "story_id": "42249", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bathroom in the hotel that she booked was unbelievably luxurious , and she needed to try out the bathtub right away !", "storylet_id": "211246"}], [{"original_text": "The next morning, she decided to eat breakfast on her balcony, overlooking the gorgeous ocean view. ", "album_id": "72157625201285824", "photo_flickr_id": "4294578392", "setting": "last-3-pick-old-and-tell", "worker_id": "MR78U1BIJE5PH1G", "story_id": "42249", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next morning , she decided to eat breakfast on her balcony , overlooking the gorgeous ocean view .", "storylet_id": "211247"}], [{"original_text": "Her balcony also overlooked the pool. When she checked it out, she couldn't believe no one was using it!", "album_id": "72157625201285824", "photo_flickr_id": "4293839941", "setting": "last-3-pick-old-and-tell", "worker_id": "MR78U1BIJE5PH1G", "story_id": "42249", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her balcony also overlooked the pool . when she checked it out , she could n't believe no one was using it !", "storylet_id": "211248"}], [{"original_text": "Best of all was having her husband along with her to enjoy the amazing view off the balcony. ", "album_id": "72157625201285824", "photo_flickr_id": "4293833081", "setting": "last-3-pick-old-and-tell", "worker_id": "MR78U1BIJE5PH1G", "story_id": "42249", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "best of all was having her husband along with her to enjoy the amazing view off the balcony .", "storylet_id": "211249"}], [{"original_text": "My coworker is camera shy and doesn't want to take her picture. ", "album_id": "177863", "photo_flickr_id": "7129466", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "42250", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my coworker is camera shy and does n't want to take her picture .", "storylet_id": "211250"}], [{"original_text": "This is the meal that I ordered from a Mexican restaurant, during lunch. ", "album_id": "177863", "photo_flickr_id": "7129532", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "42250", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the meal that i ordered from a mexican restaurant , during lunch .", "storylet_id": "211251"}], [{"original_text": "Taking a coffee break in the morning before starting my work for the day. ", "album_id": "177863", "photo_flickr_id": "7129666", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "42250", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "taking a coffee break in the morning before starting my work for the day .", "storylet_id": "211252"}], [{"original_text": "My morning commute to work, driving my red Toyota Camry. ", "album_id": "177863", "photo_flickr_id": "7130002", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "42250", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my morning commute to work , driving my red toyota camry .", "storylet_id": "211253"}], [{"original_text": "My shoes looked polished before heading out to work. ", "album_id": "177863", "photo_flickr_id": "7130441", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "42250", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my shoes looked polished before heading out to work .", "storylet_id": "211254"}], [{"original_text": "He woke up extra early that morning, for his first day of his new job.", "album_id": "177863", "photo_flickr_id": "7129377", "setting": "first-2-pick-and-tell", "worker_id": "L1OKB6PBKSXJZNK", "story_id": "42251", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he woke up extra early that morning , for his first day of his new job .", "storylet_id": "211255"}], [{"original_text": "He was very nervous, but couldn't manage to wake up on his own.", "album_id": "177863", "photo_flickr_id": "7129443", "setting": "first-2-pick-and-tell", "worker_id": "L1OKB6PBKSXJZNK", "story_id": "42251", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was very nervous , but could n't manage to wake up on his own .", "storylet_id": "211256"}], [{"original_text": "He had a few coffees on his way out.", "album_id": "177863", "photo_flickr_id": "7129666", "setting": "first-2-pick-and-tell", "worker_id": "L1OKB6PBKSXJZNK", "story_id": "42251", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had a few coffees on his way out .", "storylet_id": "211257"}], [{"original_text": "He had dressed his best, but the coffee had kept him jittery.", "album_id": "177863", "photo_flickr_id": "7130441", "setting": "first-2-pick-and-tell", "worker_id": "L1OKB6PBKSXJZNK", "story_id": "42251", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he had dressed his best , but the coffee had kept him jittery .", "storylet_id": "211258"}], [{"original_text": "At his desk, he found that he had a lot of paperwork to fill out just for his first day. What a pain.", "album_id": "177863", "photo_flickr_id": "7130412", "setting": "first-2-pick-and-tell", "worker_id": "L1OKB6PBKSXJZNK", "story_id": "42251", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at his desk , he found that he had a lot of paperwork to fill out just for his first day . what a pain .", "storylet_id": "211259"}], [{"original_text": "I have been working hard all day.", "album_id": "177863", "photo_flickr_id": "7129466", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42252", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have been working hard all day .", "storylet_id": "211260"}], [{"original_text": "Time to have a nice meal to end my day.", "album_id": "177863", "photo_flickr_id": "7129532", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42252", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "time to have a nice meal to end my day .", "storylet_id": "211261"}], [{"original_text": "Then some drinks with family.", "album_id": "177863", "photo_flickr_id": "7129666", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42252", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then some drinks with family .", "storylet_id": "211262"}], [{"original_text": "It is nice enough day to take a drive.", "album_id": "177863", "photo_flickr_id": "7130002", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42252", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is nice enough day to take a drive .", "storylet_id": "211263"}], [{"original_text": "Then try on some new shoes at the store.", "album_id": "177863", "photo_flickr_id": "7130441", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42252", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then try on some new shoes at the store .", "storylet_id": "211264"}], [{"original_text": "I woke up at 4:45 am sharp today for the first time ever.", "album_id": "177863", "photo_flickr_id": "7129377", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42253", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i woke up at 4:45 am sharp today for the first time ever .", "storylet_id": "211265"}], [{"original_text": "I was so exhausted, Im not a morning person.", "album_id": "177863", "photo_flickr_id": "7129443", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42253", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was so exhausted , im not a morning person .", "storylet_id": "211266"}], [{"original_text": "Had to have 2 cups of coffee just to wake up.", "album_id": "177863", "photo_flickr_id": "7129666", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42253", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "had to have 2 cups of coffee just to wake up .", "storylet_id": "211267"}], [{"original_text": "Decided to wear my favorite loafers today. I hope theyre lucky.", "album_id": "177863", "photo_flickr_id": "7130441", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42253", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "decided to wear my favorite loafers today . i hope theyre lucky .", "storylet_id": "211268"}], [{"original_text": "When I got home the package I had been waiting for had arrived. What a day.", "album_id": "177863", "photo_flickr_id": "7130412", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42253", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when i got home the package i had been waiting for had arrived . what a day .", "storylet_id": "211269"}], [{"original_text": "John woke up at 4:45 this morning.", "album_id": "177863", "photo_flickr_id": "7129377", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42254", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] woke up at 4:45 this morning .", "storylet_id": "211270"}], [{"original_text": "He was so tired,", "album_id": "177863", "photo_flickr_id": "7129443", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42254", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was so tired ,", "storylet_id": "211271"}], [{"original_text": "so he made some coffee.", "album_id": "177863", "photo_flickr_id": "7129666", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42254", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so he made some coffee .", "storylet_id": "211272"}], [{"original_text": "Once he felt more awake, he got dressed for work, put on his dressy work shoes, and headed out the door.", "album_id": "177863", "photo_flickr_id": "7130441", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42254", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once he felt more awake , he got dressed for work , put on his dressy work shoes , and headed out the door .", "storylet_id": "211273"}], [{"original_text": "He went to work and had a productive day, probably because the coffee gave him the kick that he needed. ", "album_id": "177863", "photo_flickr_id": "7130412", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42254", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he went to work and had a productive day , probably because the coffee gave him the kick that he needed .", "storylet_id": "211274"}], [{"original_text": "My trip to Hawaii was fantastic. I spent my first day there on a hike.", "album_id": "177893", "photo_flickr_id": "7142083", "setting": "first-2-pick-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "42255", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my trip to location was fantastic . i spent my first day there on a hike .", "storylet_id": "211275"}], [{"original_text": "The beaches were beautiful and there were tons of surfers out ready to ride the waves.", "album_id": "177893", "photo_flickr_id": "7143237", "setting": "first-2-pick-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "42255", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the beaches were beautiful and there were tons of surfers out ready to ride the waves .", "storylet_id": "211276"}], [{"original_text": "The food at the hotel was amazing. Everything was so artfully arranged and tasted amazing.", "album_id": "177893", "photo_flickr_id": "7143784", "setting": "first-2-pick-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "42255", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food at the hotel was amazing . everything was so artfully arranged and tasted amazing .", "storylet_id": "211277"}], [{"original_text": "I went sightseeing on horseback and got lots of great pictures.", "album_id": "177893", "photo_flickr_id": "7145965", "setting": "first-2-pick-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "42255", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i went sightseeing on horseback and got lots of great pictures .", "storylet_id": "211278"}], [{"original_text": "On my last night, I sat and watched the sunset with a cocktail. It was so relaxing and enjoyable.", "album_id": "177893", "photo_flickr_id": "7148332", "setting": "first-2-pick-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "42255", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on my last night , i sat and watched the sunset with a cocktail . it was so relaxing and enjoyable .", "storylet_id": "211279"}], [{"original_text": "Sarah wanted to go hiking in a remote mountain on her vacation. So she packed her bags and hired a local guide to take her there. She couldn't believe the fresh air and the view!", "album_id": "177893", "photo_flickr_id": "7142083", "setting": "first-2-pick-and-tell", "worker_id": "PW4DGE5KSKTRLY8", "story_id": "42256", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] wanted to go hiking in a remote mountain on her vacation . so she packed her bags and hired a local guide to take her there . she could n't believe the fresh air and the view !", "storylet_id": "211280"}], [{"original_text": "She especially loved the view of the mountains, as she could see miles away. She yelled out and heard her echo!", "album_id": "177893", "photo_flickr_id": "7144426", "setting": "first-2-pick-and-tell", "worker_id": "PW4DGE5KSKTRLY8", "story_id": "42256", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she especially loved the view of the mountains , as she could see miles away . she yelled out and heard her echo !", "storylet_id": "211281"}], [{"original_text": "Her and her guide rented some horses so that they could see the scenery more easily.", "album_id": "177893", "photo_flickr_id": "7145965", "setting": "first-2-pick-and-tell", "worker_id": "PW4DGE5KSKTRLY8", "story_id": "42256", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her and her guide rented some horses so that they could see the scenery more easily .", "storylet_id": "211282"}], [{"original_text": "Sarah was even able to get a beautiful panoramic shot of the mountains. She was excited that her camera had this option.", "album_id": "177893", "photo_flickr_id": "7145968", "setting": "first-2-pick-and-tell", "worker_id": "PW4DGE5KSKTRLY8", "story_id": "42256", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] was even able to get a beautiful panoramic shot of the mountains . she was excited that her camera had this option .", "storylet_id": "211283"}], [{"original_text": "At the end of the day, her guide took her to the beach, where Sarah captured a picture of a beautiful sunset. All in all, she had a great day.", "album_id": "177893", "photo_flickr_id": "7144429", "setting": "first-2-pick-and-tell", "worker_id": "PW4DGE5KSKTRLY8", "story_id": "42256", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , her guide took her to the beach , where [female] captured a picture of a beautiful sunset . all in all , she had a great day .", "storylet_id": "211284"}], [{"original_text": "A couple went on their honeymoon and walked along the trails.", "album_id": "177893", "photo_flickr_id": "7142083", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42257", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple went on their honeymoon and walked along the trails .", "storylet_id": "211285"}], [{"original_text": "Afterwards, the went surfing.", "album_id": "177893", "photo_flickr_id": "7143237", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42257", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "afterwards , the went surfing .", "storylet_id": "211286"}], [{"original_text": "They were hungry so they got some lunch.", "album_id": "177893", "photo_flickr_id": "7143784", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42257", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were hungry so they got some lunch .", "storylet_id": "211287"}], [{"original_text": "After their lunch, they went horseback riding along the trails.", "album_id": "177893", "photo_flickr_id": "7145965", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42257", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after their lunch , they went horseback riding along the trails .", "storylet_id": "211288"}], [{"original_text": "They then decided to watch the sunset. ", "album_id": "177893", "photo_flickr_id": "7148332", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42257", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they then decided to watch the sunset .", "storylet_id": "211289"}], [{"original_text": "Lilian looked out on the beauty of the mountains. She experienced the most majestic view of the island.", "album_id": "177893", "photo_flickr_id": "7142083", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "42258", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "lilian looked out on the beauty of the mountains . she experienced the most majestic view of the island .", "storylet_id": "211290"}], [{"original_text": "She and Tom spent the rest of the day surfing in the crystal clear ocean.", "album_id": "177893", "photo_flickr_id": "7143237", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "42258", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she and [male] spent the rest of the day surfing in the crystal clear ocean .", "storylet_id": "211291"}], [{"original_text": "Dinner was the most delicious guava they had ever eaten.", "album_id": "177893", "photo_flickr_id": "7143784", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "42258", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dinner was the most delicious guava they had ever eaten .", "storylet_id": "211292"}], [{"original_text": "The next morning they rode out to the point on horseback. They looked across the bay to the next island.", "album_id": "177893", "photo_flickr_id": "7145965", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "42258", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next morning they rode out to the point on horseback . they looked across the bay to the next island .", "storylet_id": "211293"}], [{"original_text": "The perfect day ended with the most gorgeous sunset that nature ever produced. ", "album_id": "177893", "photo_flickr_id": "7148332", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "42258", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the perfect day ended with the most gorgeous sunset that nature ever produced .", "storylet_id": "211294"}], [{"original_text": "Today my fiance and I went on an outdoor adventure.", "album_id": "177893", "photo_flickr_id": "7142083", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42259", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today my fiance and i went on an outdoor adventure .", "storylet_id": "211295"}], [{"original_text": "We enjoyed a romantic surfing adventure on the waves.", "album_id": "177893", "photo_flickr_id": "7143237", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42259", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we enjoyed a romantic surfing adventure on the waves .", "storylet_id": "211296"}], [{"original_text": "We enjoyed a relaxing lunch.", "album_id": "177893", "photo_flickr_id": "7143784", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42259", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we enjoyed a relaxing lunch .", "storylet_id": "211297"}], [{"original_text": "We spent the afternoon horseback riding and enjoying the views.", "album_id": "177893", "photo_flickr_id": "7145965", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42259", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we spent the afternoon horseback riding and enjoying the views .", "storylet_id": "211298"}], [{"original_text": "Together we watched the sunset together at the end of the day. It was gorgeous!", "album_id": "177893", "photo_flickr_id": "7148332", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42259", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "together we watched the sunset together at the end of the day . it was gorgeous !", "storylet_id": "211299"}], [{"original_text": "I went on a nature hike today.", "album_id": "486823", "photo_flickr_id": "20939306", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42260", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on a nature hike today .", "storylet_id": "211300"}], [{"original_text": "I especially loved all of the flowers.", "album_id": "486823", "photo_flickr_id": "20916100", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42260", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i especially loved all of the flowers .", "storylet_id": "211301"}], [{"original_text": "The rock formations and water were beautiful too.", "album_id": "486823", "photo_flickr_id": "20908186", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42260", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the rock formations and water were beautiful too .", "storylet_id": "211302"}], [{"original_text": "This one was especially interesting.", "album_id": "486823", "photo_flickr_id": "20908155", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42260", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one was especially interesting .", "storylet_id": "211303"}], [{"original_text": "I can't believe I found some wild roses.", "album_id": "486823", "photo_flickr_id": "20888401", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42260", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ca n't believe i found some wild roses .", "storylet_id": "211304"}], [{"original_text": "The local farmers were doing their haying today.", "album_id": "486823", "photo_flickr_id": "20939307", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "42261", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the local farmers were doing their haying today .", "storylet_id": "211305"}], [{"original_text": "A close up shot of some really cool flowers.", "album_id": "486823", "photo_flickr_id": "20916133", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "42261", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a close up shot of some really cool flowers .", "storylet_id": "211306"}], [{"original_text": "A very unique looking tree right next to where I took the shot of the flower.", "album_id": "486823", "photo_flickr_id": "20916094", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "42261", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a very unique looking tree right next to where i took the shot of the flower .", "storylet_id": "211307"}], [{"original_text": "Looking down the coast from a cliff.", "album_id": "486823", "photo_flickr_id": "20908202", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "42261", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "looking down the coast from a cliff .", "storylet_id": "211308"}], [{"original_text": "Relaxing after a long day of touring around the countryside. ", "album_id": "486823", "photo_flickr_id": "20893736", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "42261", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "relaxing after a long day of touring around the countryside .", "storylet_id": "211309"}], [{"original_text": "Larry dozed and started dreaming of places he'd like to visit, like the Australian Outback. ", "album_id": "486823", "photo_flickr_id": "20939307", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42262", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] dozed and started dreaming of places he 'd like to visit , like the australian outback .", "storylet_id": "211310"}], [{"original_text": "Or, the gorgeous Galapagos islands and their wonderful flowers. ", "album_id": "486823", "photo_flickr_id": "20916133", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42262", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "or , the gorgeous location location and their wonderful flowers .", "storylet_id": "211311"}], [{"original_text": "Or, the beautiful cloud forests in South America.", "album_id": "486823", "photo_flickr_id": "20916094", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42262", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "or , the beautiful cloud forests in location location .", "storylet_id": "211312"}], [{"original_text": "Maybe a chilly Irish coastline in the fall.", "album_id": "486823", "photo_flickr_id": "20908202", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42262", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "maybe a chilly irish coastline in the fall .", "storylet_id": "211313"}], [{"original_text": "And, then he awoke, in his chair at home.", "album_id": "486823", "photo_flickr_id": "20893736", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42262", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , then he awoke , in his chair at home .", "storylet_id": "211314"}], [{"original_text": "This is a picture of the cloudy sky.", "album_id": "486823", "photo_flickr_id": "20939306", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42263", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of the cloudy sky .", "storylet_id": "211315"}], [{"original_text": "This is a picture of pink flowers.", "album_id": "486823", "photo_flickr_id": "20916100", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42263", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of pink flowers .", "storylet_id": "211316"}], [{"original_text": "This is a picture of the shore.", "album_id": "486823", "photo_flickr_id": "20908186", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42263", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of the shore .", "storylet_id": "211317"}], [{"original_text": "This is a picture of the beach.", "album_id": "486823", "photo_flickr_id": "20908155", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42263", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of the beach .", "storylet_id": "211318"}], [{"original_text": "This is a picture of a light pink flower.", "album_id": "486823", "photo_flickr_id": "20888401", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42263", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a light pink flower .", "storylet_id": "211319"}], [{"original_text": "It was a beautiful day out, so I decided to spend it working in the garden!", "album_id": "486823", "photo_flickr_id": "20939307", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42264", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful day out , so i decided to spend it working in the garden !", "storylet_id": "211320"}], [{"original_text": "First I tended to the trumpet flowers.", "album_id": "486823", "photo_flickr_id": "20916133", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42264", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first i tended to the trumpet flowers .", "storylet_id": "211321"}], [{"original_text": "Then I clipped back the hedge a little.", "album_id": "486823", "photo_flickr_id": "20916094", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42264", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then i clipped back the hedge a little .", "storylet_id": "211322"}], [{"original_text": "I rearranged some rocks next to the cliff, trying to make a rock wall. It turned out alright.", "album_id": "486823", "photo_flickr_id": "20908202", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42264", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i rearranged some rocks next to the cliff , trying to make a rock wall . it turned out alright .", "storylet_id": "211323"}], [{"original_text": "After a hard day's work, I kicked my feet up and took a nap!", "album_id": "486823", "photo_flickr_id": "20893736", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42264", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a hard day 's work , i kicked my feet up and took a nap !", "storylet_id": "211324"}], [{"original_text": "We had all seen the pictures dad left behind. We hadn't had the time to walk into Birmingham before, but my work trip gave us an opportunity. ", "album_id": "72157623144364569", "photo_flickr_id": "4298460794", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "42265", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had all seen the pictures dad left behind . we had n't had the time to walk into location before , but my work trip gave us an opportunity .", "storylet_id": "211325"}], [{"original_text": "I remember dad talking about Birmingham in the loftiest of ways. He certainly took a lot of pictures.", "album_id": "72157623144364569", "photo_flickr_id": "4297715931", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "42265", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i remember dad talking about location in the loftiest of ways . he certainly took a lot of pictures .", "storylet_id": "211326"}], [{"original_text": "We saw a lot of graffiti when we came in, and we were sure to take a good inventory of it.", "album_id": "72157623144364569", "photo_flickr_id": "4298461118", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "42265", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw a lot of graffiti when we came in , and we were sure to take a good inventory of it .", "storylet_id": "211327"}], [{"original_text": "Dad had liked street art, but what he liked most of all was the water. We spent a lot of time taking pictures for posterity.", "album_id": "72157623144364569", "photo_flickr_id": "4298461502", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "42265", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dad had liked street art , but what he liked most of all was the water . we spent a lot of time taking pictures for posterity .", "storylet_id": "211328"}], [{"original_text": "Birmingham, after the street art and the water, really was a small town, unfortunately. I couldn't see what he saw in it. I knew he'd love the pictures though. ", "album_id": "72157623144364569", "photo_flickr_id": "4297716825", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "42265", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "location , after the street art and the water , really was a small town , unfortunately . i could n't see what he saw in it . i knew he 'd love the pictures though .", "storylet_id": "211329"}], [{"original_text": "The buildings by the seashore were all beautiful.", "album_id": "72157623144364569", "photo_flickr_id": "4297715931", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "42266", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the buildings by the seashore were all beautiful .", "storylet_id": "211330"}], [{"original_text": "There was much to be seen here.", "album_id": "72157623144364569", "photo_flickr_id": "4297716381", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "42266", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was much to be seen here .", "storylet_id": "211331"}], [{"original_text": "The view of the water was magnificent.", "album_id": "72157623144364569", "photo_flickr_id": "4298461502", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "42266", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the view of the water was magnificent .", "storylet_id": "211332"}], [{"original_text": "Black and white photos were taken as well.", "album_id": "72157623144364569", "photo_flickr_id": "4298462162", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "42266", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "black and white photos were taken as well .", "storylet_id": "211333"}], [{"original_text": "There were seagulls in the water.", "album_id": "72157623144364569", "photo_flickr_id": "4297717519", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "42266", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were seagulls in the water .", "storylet_id": "211334"}], [{"original_text": "I was out on vacation last weekend.", "album_id": "72157623144364569", "photo_flickr_id": "4298460794", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42267", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was out on vacation last weekend .", "storylet_id": "211335"}], [{"original_text": "There were a ton of old buildings there.", "album_id": "72157623144364569", "photo_flickr_id": "4297715931", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42267", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a ton of old buildings there .", "storylet_id": "211336"}], [{"original_text": "I had a great time.", "album_id": "72157623144364569", "photo_flickr_id": "4298461118", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42267", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time .", "storylet_id": "211337"}], [{"original_text": "There was a huge lake as well.", "album_id": "72157623144364569", "photo_flickr_id": "4298461502", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42267", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a huge lake as well .", "storylet_id": "211338"}], [{"original_text": "I had trouble reading some of the signs.", "album_id": "72157623144364569", "photo_flickr_id": "4297716825", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42267", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had trouble reading some of the signs .", "storylet_id": "211339"}], [{"original_text": "Tom knew his days were limited; the drive to \"the middle of nowhere\" would not buy more time.", "album_id": "72157623144364569", "photo_flickr_id": "4298460794", "setting": "last-3-pick-old-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "42268", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] knew his days were limited ; the drive to `` the middle of nowhere '' would not buy more time .", "storylet_id": "211340"}], [{"original_text": "He made it to Texas, and stopped, the cancer stripping his energy reserves.", "album_id": "72157623144364569", "photo_flickr_id": "4297715931", "setting": "last-3-pick-old-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "42268", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he made it to location , and stopped , the cancer stripping his energy reserves .", "storylet_id": "211341"}], [{"original_text": "The town had a chic, artsy feel, that annoyed his self pity.", "album_id": "72157623144364569", "photo_flickr_id": "4298461118", "setting": "last-3-pick-old-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "42268", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the town had a chic , artsy feel , that annoyed his self pity .", "storylet_id": "211342"}], [{"original_text": "But the lake and mountains in the distance provided just the solemn peace he needed.", "album_id": "72157623144364569", "photo_flickr_id": "4298461502", "setting": "last-3-pick-old-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "42268", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but the lake and mountains in the distance provided just the solemn peace he needed .", "storylet_id": "211343"}], [{"original_text": "The next day, he hopped back on the open road, determined to die at home.", "album_id": "72157623144364569", "photo_flickr_id": "4297716825", "setting": "last-3-pick-old-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "42268", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the next day , he hopped back on the open road , determined to die at home .", "storylet_id": "211344"}], [{"original_text": "Sitting on the dock watching the tide roll in.", "album_id": "72157623144364569", "photo_flickr_id": "4298460794", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42269", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sitting on the dock watching the tide roll in .", "storylet_id": "211345"}], [{"original_text": "A flag flies atop a large building. ", "album_id": "72157623144364569", "photo_flickr_id": "4297715931", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42269", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a flag flies atop a large building .", "storylet_id": "211346"}], [{"original_text": "An abstract painting we bought on vacation.", "album_id": "72157623144364569", "photo_flickr_id": "4298461118", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42269", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "an abstract painting we bought on vacation .", "storylet_id": "211347"}], [{"original_text": "The view from our hotel room on vacation.", "album_id": "72157623144364569", "photo_flickr_id": "4298461502", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42269", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view from our hotel room on vacation .", "storylet_id": "211348"}], [{"original_text": "Learning the street signs in a new country.", "album_id": "72157623144364569", "photo_flickr_id": "4297716825", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42269", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "learning the street signs in a new country .", "storylet_id": "211349"}], [{"original_text": "Chrissie took her friend to the zoo.", "album_id": "72157623146402789", "photo_flickr_id": "4298669071", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42270", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "chrissie took her friend to the zoo .", "storylet_id": "211350"}], [{"original_text": "There weren't a lot of visitors this early in the day.", "album_id": "72157623146402789", "photo_flickr_id": "4299415096", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42270", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were n't a lot of visitors this early in the day .", "storylet_id": "211351"}], [{"original_text": "However, all the animals were out including this cute meerkat.", "album_id": "72157623146402789", "photo_flickr_id": "4299416464", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42270", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however , all the animals were out including this cute meerkat .", "storylet_id": "211352"}], [{"original_text": "The flamingos were dancing about.", "album_id": "72157623146402789", "photo_flickr_id": "4298670715", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42270", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the flamingos were dancing about .", "storylet_id": "211353"}], [{"original_text": "And this pelican was cleaning his previous meal off his feather.s", "album_id": "72157623146402789", "photo_flickr_id": "4299417754", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42270", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and this pelican was cleaning his previous meal off his feather.s", "storylet_id": "211354"}], [{"original_text": "I went to the zoo and temples with my best friend this vacation.", "album_id": "72157623146402789", "photo_flickr_id": "4299415096", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42271", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the zoo and temples with my best friend this vacation .", "storylet_id": "211355"}], [{"original_text": "Here is us trying out our new selfie stick.", "album_id": "72157623146402789", "photo_flickr_id": "4298669071", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42271", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is us trying out our new selfie stick .", "storylet_id": "211356"}], [{"original_text": "We saw many animals in the zoo including this little guy.", "album_id": "72157623146402789", "photo_flickr_id": "4299416464", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42271", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw many animals in the zoo including this little guy .", "storylet_id": "211357"}], [{"original_text": "We both liked the flamingos, they are very interesting.", "album_id": "72157623146402789", "photo_flickr_id": "4298670715", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42271", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we both liked the flamingos , they are very interesting .", "storylet_id": "211358"}], [{"original_text": "We relaxed the night away after a long day on the beach and prepared for more fun the next day.", "album_id": "72157623146402789", "photo_flickr_id": "4298674797", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42271", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we relaxed the night away after a long day on the beach and prepared for more fun the next day .", "storylet_id": "211359"}], [{"original_text": "We went for a walk around town, yesterday.", "album_id": "72157623146402789", "photo_flickr_id": "4299415096", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42272", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went for a walk around town , yesterday .", "storylet_id": "211360"}], [{"original_text": "It was so much fun looking at the different sights.", "album_id": "72157623146402789", "photo_flickr_id": "4298669071", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42272", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was so much fun looking at the different sights .", "storylet_id": "211361"}], [{"original_text": "We even brought the dog for some exercise.", "album_id": "72157623146402789", "photo_flickr_id": "4299416464", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42272", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even brought the dog for some exercise .", "storylet_id": "211362"}], [{"original_text": "While we were walking, we saw the birds on the shore.", "album_id": "72157623146402789", "photo_flickr_id": "4298670715", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42272", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while we were walking , we saw the birds on the shore .", "storylet_id": "211363"}], [{"original_text": "At the end of the day, we had had a nice stroll.", "album_id": "72157623146402789", "photo_flickr_id": "4298674797", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42272", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , we had had a nice stroll .", "storylet_id": "211364"}], [{"original_text": "Took a trip to florida.", "album_id": "72157623146402789", "photo_flickr_id": "4298669071", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42273", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "took a trip to florida .", "storylet_id": "211365"}], [{"original_text": "This is our lavish Hotel. Nice isn't it? ", "album_id": "72157623146402789", "photo_flickr_id": "4299415096", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42273", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is our lavish hotel . nice is n't it ?", "storylet_id": "211366"}], [{"original_text": "Local animals, they looks scary.", "album_id": "72157623146402789", "photo_flickr_id": "4299416464", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42273", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "local animals , they looks scary .", "storylet_id": "211367"}], [{"original_text": "Oh, real flamingos, better than seeing the plastic yard flamingos.", "album_id": "72157623146402789", "photo_flickr_id": "4298670715", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42273", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "oh , real flamingos , better than seeing the plastic yard flamingos .", "storylet_id": "211368"}], [{"original_text": "Here is a sunbathing pelican. I think it's a pelican.", "album_id": "72157623146402789", "photo_flickr_id": "4299417754", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42273", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is a sunbathing pelican . i think it 's a pelican .", "storylet_id": "211369"}], [{"original_text": "Jane's trip to see her sister, Marla, was just what she needed.", "album_id": "72157623146402789", "photo_flickr_id": "4298669071", "setting": "last-3-pick-old-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "42274", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] 's trip to see her sister , [female] , was just what she needed .", "storylet_id": "211370"}], [{"original_text": "They decided to spend the day at City Zoo.", "album_id": "72157623146402789", "photo_flickr_id": "4299415096", "setting": "last-3-pick-old-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "42274", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they decided to spend the day at organization organization .", "storylet_id": "211371"}], [{"original_text": "There were meerkats, with their soft fur and curious personalities.", "album_id": "72157623146402789", "photo_flickr_id": "4299416464", "setting": "last-3-pick-old-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "42274", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were meerkats , with their soft fur and curious personalities .", "storylet_id": "211372"}], [{"original_text": "Marla's favorite were the graceful pink flamingos.", "album_id": "72157623146402789", "photo_flickr_id": "4298670715", "setting": "last-3-pick-old-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "42274", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] 's favorite were the graceful pink flamingos .", "storylet_id": "211373"}], [{"original_text": "The storks were decidedly the funniest of the animals at the zoo!", "album_id": "72157623146402789", "photo_flickr_id": "4299417754", "setting": "last-3-pick-old-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "42274", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the storks were decidedly the funniest of the animals at the zoo !", "storylet_id": "211374"}], [{"original_text": "The manatees washed up on shore.", "album_id": "369229", "photo_flickr_id": "15417020", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42275", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the manatees washed up on shore .", "storylet_id": "211375"}], [{"original_text": "There were hundreds of deaths.", "album_id": "369229", "photo_flickr_id": "15417019", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42275", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were hundreds of deaths .", "storylet_id": "211376"}], [{"original_text": "The manatees couldn't survive without water.", "album_id": "369229", "photo_flickr_id": "15417021", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42275", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the manatees could n't survive without water .", "storylet_id": "211377"}], [{"original_text": "Instead of letting them go to waste, Jacko decided to gather up the bodies and bring them to his restaurant. ", "album_id": "369229", "photo_flickr_id": "15206655", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42275", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "instead of letting them go to waste , jacko decided to gather up the bodies and bring them to his restaurant .", "storylet_id": "211378"}], [{"original_text": "The kitchen smelled a little fishy after their new menu item arrived.", "album_id": "369229", "photo_flickr_id": "15206658", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42275", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kitchen smelled a little fishy after their new menu item arrived .", "storylet_id": "211379"}], [{"original_text": "We went to the beach today.", "album_id": "369229", "photo_flickr_id": "15417020", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42276", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the beach today .", "storylet_id": "211380"}], [{"original_text": "There was a lot of seals.", "album_id": "369229", "photo_flickr_id": "15417019", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42276", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of seals .", "storylet_id": "211381"}], [{"original_text": "Then we saw a castle.", "album_id": "369229", "photo_flickr_id": "15363137", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42276", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we saw a castle .", "storylet_id": "211382"}], [{"original_text": "There was a lot of cool decorations.", "album_id": "369229", "photo_flickr_id": "15366226", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42276", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a lot of cool decorations .", "storylet_id": "211383"}], [{"original_text": "We had a really good day.", "album_id": "369229", "photo_flickr_id": "15206655", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42276", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a really good day .", "storylet_id": "211384"}], [{"original_text": "I went to the beach yesterday.", "album_id": "369229", "photo_flickr_id": "15417020", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42277", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the beach yesterday .", "storylet_id": "211385"}], [{"original_text": "There were a lot of seals there.", "album_id": "369229", "photo_flickr_id": "15417019", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42277", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of seals there .", "storylet_id": "211386"}], [{"original_text": "After a while I went back to town to do some sightseeing.", "album_id": "369229", "photo_flickr_id": "15363137", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42277", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after a while i went back to town to do some sightseeing .", "storylet_id": "211387"}], [{"original_text": "There were a lot of great statues around the town.", "album_id": "369229", "photo_flickr_id": "15366226", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42277", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of great statues around the town .", "storylet_id": "211388"}], [{"original_text": "I stopped by the store to buy some barrels.", "album_id": "369229", "photo_flickr_id": "15206655", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42277", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i stopped by the store to buy some barrels .", "storylet_id": "211389"}], [{"original_text": "This is a picture of a seal.", "album_id": "369229", "photo_flickr_id": "15417020", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42278", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a seal .", "storylet_id": "211390"}], [{"original_text": "This is a picture of seals on the beach.", "album_id": "369229", "photo_flickr_id": "15417019", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42278", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of seals on the beach .", "storylet_id": "211391"}], [{"original_text": "This is a picture of animals.", "album_id": "369229", "photo_flickr_id": "15417021", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42278", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of animals .", "storylet_id": "211392"}], [{"original_text": "This is a picture of a building.", "album_id": "369229", "photo_flickr_id": "15206655", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42278", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of a building .", "storylet_id": "211393"}], [{"original_text": "This is a picture of a kitchen.", "album_id": "369229", "photo_flickr_id": "15206658", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42278", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a kitchen .", "storylet_id": "211394"}], [{"original_text": "After exploring the beach for some time, the group came across a lonely seal that had sadly strayed too far.", "album_id": "369229", "photo_flickr_id": "15417020", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "42279", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after exploring the beach for some time , the group came across a lonely seal that had sadly strayed too far .", "storylet_id": "211395"}], [{"original_text": "After finding the body of a seal, the group explored some more and were sad to discover that more seals had washed ashore.", "album_id": "369229", "photo_flickr_id": "15417019", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "42279", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after finding the body of a seal , the group explored some more and were sad to discover that more seals had washed ashore .", "storylet_id": "211396"}], [{"original_text": "Just near the beach there is a church that is known not only for its services, but the beautiful scenery that surrounds it.", "album_id": "369229", "photo_flickr_id": "15363137", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "42279", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "just near the beach there is a church that is known not only for its services , but the beautiful scenery that surrounds it .", "storylet_id": "211397"}], [{"original_text": "On the church grounds there exists a very stoic marble stature that is known because of the white alabaster that was used to create it.", "album_id": "369229", "photo_flickr_id": "15366226", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "42279", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on the church grounds there exists a very stoic marble stature that is known because of the white alabaster that was used to create it .", "storylet_id": "211398"}], [{"original_text": "Anyone that goes to Jocko's know that they can load up with a few kegs and get ready for any party, no matter how many attendees there might be. ", "album_id": "369229", "photo_flickr_id": "15206655", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "42279", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "anyone that goes to jocko 's know that they can load up with a few kegs and get ready for any party , no matter how many attendees there might be .", "storylet_id": "211399"}], [{"original_text": "Ireland was such a beautiful place to travel around.", "album_id": "140057", "photo_flickr_id": "5560161", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "42280", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location was such a beautiful place to travel around .", "storylet_id": "211400"}], [{"original_text": "We enjoyed walking past all the sheep farms.", "album_id": "140057", "photo_flickr_id": "5559923", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "42280", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we enjoyed walking past all the sheep farms .", "storylet_id": "211401"}], [{"original_text": "Even walking far from the towns, signs told us where everything was.", "album_id": "140057", "photo_flickr_id": "5559783", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "42280", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even walking far from the towns , signs told us where everything was .", "storylet_id": "211402"}], [{"original_text": "We walked the trail right down to the beach.", "album_id": "140057", "photo_flickr_id": "8368070", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "42280", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we walked the trail right down to the beach .", "storylet_id": "211403"}], [{"original_text": "The views all around were probably my favorite part of our trip.", "album_id": "140057", "photo_flickr_id": "5372169", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "42280", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the views all around were probably my favorite part of our trip .", "storylet_id": "211404"}], [{"original_text": "I went to visit a sheep farm in the countryside.", "album_id": "140057", "photo_flickr_id": "5372169", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42281", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to visit a sheep farm in the countryside .", "storylet_id": "211405"}], [{"original_text": "The sheep are sometimes kept in a corral.", "album_id": "140057", "photo_flickr_id": "5559923", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42281", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sheep are sometimes kept in a corral .", "storylet_id": "211406"}], [{"original_text": "But they often graze in lush green pastures like this one.", "album_id": "140057", "photo_flickr_id": "5560248", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42281", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but they often graze in lush green pastures like this one .", "storylet_id": "211407"}], [{"original_text": "When the sheep went to the pasture, the shepherd and I slept in this hillside hut overnight.", "album_id": "140057", "photo_flickr_id": "8368165", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42281", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the sheep went to the pasture , the shepherd and i slept in this hillside hut overnight .", "storylet_id": "211408"}], [{"original_text": "Both the shepherd and I found this view beautiful when we got up in the morning.", "album_id": "140057", "photo_flickr_id": "5559715", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42281", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "both the shepherd and i found this view beautiful when we got up in the morning .", "storylet_id": "211409"}], [{"original_text": "My brother just had to get a picture in front of the water.", "album_id": "140057", "photo_flickr_id": "5372169", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "42282", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brother just had to get a picture in front of the water .", "storylet_id": "211410"}], [{"original_text": "These animals sure did smell bad.", "album_id": "140057", "photo_flickr_id": "5559923", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "42282", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these animals sure did smell bad .", "storylet_id": "211411"}], [{"original_text": "Grass can be so beautiful at times.", "album_id": "140057", "photo_flickr_id": "5560248", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "42282", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grass can be so beautiful at times .", "storylet_id": "211412"}], [{"original_text": "We find a small area where someone may have lived.", "album_id": "140057", "photo_flickr_id": "8368165", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "42282", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we find a small area where someone may have lived .", "storylet_id": "211413"}], [{"original_text": "I wonder if any of the animals have ever fallen in the water. ", "album_id": "140057", "photo_flickr_id": "5559715", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "42282", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i wonder if any of the animals have ever fallen in the water .", "storylet_id": "211414"}], [{"original_text": "I took a long drive through the country in Ireland, and had my picture taken by the sea.", "album_id": "140057", "photo_flickr_id": "5372169", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42283", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a long drive through the country in location , and had my picture taken by the sea .", "storylet_id": "211415"}], [{"original_text": "A nearby farmer had penned up his sheep to keep them corralled.", "album_id": "140057", "photo_flickr_id": "5559923", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42283", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a nearby farmer had penned up his sheep to keep them corralled .", "storylet_id": "211416"}], [{"original_text": "The rolling green meadows nearby were lovely.", "album_id": "140057", "photo_flickr_id": "5560248", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42283", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the rolling green meadows nearby were lovely .", "storylet_id": "211417"}], [{"original_text": "Further out, the grassland turned more yellow and brown.", "album_id": "140057", "photo_flickr_id": "8368165", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42283", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "further out , the grassland turned more yellow and brown .", "storylet_id": "211418"}], [{"original_text": "But near the ocean, other farmers were letting their sheep graze in the sun.", "album_id": "140057", "photo_flickr_id": "5559715", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42283", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but near the ocean , other farmers were letting their sheep graze in the sun .", "storylet_id": "211419"}], [{"original_text": "My parents took us to the Scottish coast for vacation this year. ", "album_id": "140057", "photo_flickr_id": "5560161", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42284", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my parents took us to the scottish coast for vacation this year .", "storylet_id": "211420"}], [{"original_text": "It was crazy. Not a mile from the water, there were sheep farms. How do they keep the sheep away from the water?", "album_id": "140057", "photo_flickr_id": "5559923", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42284", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was crazy . not a mile from the water , there were sheep farms . how do they keep the sheep away from the water ?", "storylet_id": "211421"}], [{"original_text": "The road signs were neat. They all appeared to be handmade rather than machined.", "album_id": "140057", "photo_flickr_id": "5559783", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42284", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the road signs were neat . they all appeared to be handmade rather than machined .", "storylet_id": "211422"}], [{"original_text": "We followed one of the signs down to the beach, were we walked along the coast.", "album_id": "140057", "photo_flickr_id": "8368070", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42284", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we followed one of the signs down to the beach , were we walked along the coast .", "storylet_id": "211423"}], [{"original_text": "Mom made me take this picture standing along the cliff line. It was a cool area.", "album_id": "140057", "photo_flickr_id": "5372169", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42284", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mom made me take this picture standing along the cliff line . it was a cool area .", "storylet_id": "211424"}], [{"original_text": "It is always a great time at summer camp. So many different activities.", "album_id": "634359", "photo_flickr_id": "28069659", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "42285", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is always a great time at summer camp . so many different activities .", "storylet_id": "211425"}], [{"original_text": "From playing lawn chess...", "album_id": "634359", "photo_flickr_id": "28068358", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "42285", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from playing lawn chess ...", "storylet_id": "211426"}], [{"original_text": "to water games in the lake.", "album_id": "634359", "photo_flickr_id": "28069231", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "42285", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "to water games in the lake .", "storylet_id": "211427"}], [{"original_text": "Being able to see the horses up close was neat.", "album_id": "634359", "photo_flickr_id": "28069367", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "42285", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "being able to see the horses up close was neat .", "storylet_id": "211428"}], [{"original_text": "We ended each day with an ice cream treat!", "album_id": "634359", "photo_flickr_id": "28069124", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "42285", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended each day with an ice cream treat !", "storylet_id": "211429"}], [{"original_text": "We decided to have a neighborhood party.", "album_id": "634359", "photo_flickr_id": "28068255", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "42286", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to have a neighborhood party .", "storylet_id": "211430"}], [{"original_text": "We even got a big version of chess to play.", "album_id": "634359", "photo_flickr_id": "28068358", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "42286", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we even got a big version of chess to play .", "storylet_id": "211431"}], [{"original_text": "Everyone was ready to play the game.", "album_id": "634359", "photo_flickr_id": "28068415", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "42286", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was ready to play the game .", "storylet_id": "211432"}], [{"original_text": "It was even a costume party!", "album_id": "634359", "photo_flickr_id": "28072969", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "42286", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was even a costume party !", "storylet_id": "211433"}], [{"original_text": "We had the best weather for it.", "album_id": "634359", "photo_flickr_id": "28068543", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "42286", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had the best weather for it .", "storylet_id": "211434"}], [{"original_text": "Everyone at the camp gathered to find out what exciting activities we would do today.", "album_id": "634359", "photo_flickr_id": "28069659", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42287", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone at the camp gathered to find out what exciting activities we would do today .", "storylet_id": "211435"}], [{"original_text": "We played in the sun with giant chess boards.", "album_id": "634359", "photo_flickr_id": "28068358", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42287", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we played in the sun with giant chess boards .", "storylet_id": "211436"}], [{"original_text": "After chess, we cooled off with a swim in the lake.", "album_id": "634359", "photo_flickr_id": "28069231", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42287", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after chess , we cooled off with a swim in the lake .", "storylet_id": "211437"}], [{"original_text": "Riding horses was our afternoon activity, and it was fun.", "album_id": "634359", "photo_flickr_id": "28069367", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42287", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "riding horses was our afternoon activity , and it was fun .", "storylet_id": "211438"}], [{"original_text": "At the end of the day, we relaxed with an ice cream treat.", "album_id": "634359", "photo_flickr_id": "28069124", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42287", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , we relaxed with an ice cream treat .", "storylet_id": "211439"}], [{"original_text": "The kids sat anxiously in their camp shirts waiting for the festivities to begin.", "album_id": "634359", "photo_flickr_id": "28069659", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42288", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids sat anxiously in their camp shirts waiting for the festivities to begin .", "storylet_id": "211440"}], [{"original_text": "Here at camp, there are lots of things to do, like play chess,", "album_id": "634359", "photo_flickr_id": "28068358", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42288", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here at camp , there are lots of things to do , like play chess ,", "storylet_id": "211441"}], [{"original_text": "or jump on the trampoline that's floating in the lake.", "album_id": "634359", "photo_flickr_id": "28069231", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42288", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "or jump on the trampoline that 's floating in the lake .", "storylet_id": "211442"}], [{"original_text": "You can also ride horses,", "album_id": "634359", "photo_flickr_id": "28069367", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42288", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you can also ride horses ,", "storylet_id": "211443"}], [{"original_text": "and eat pospicles with friends. Camp is a magical place. ", "album_id": "634359", "photo_flickr_id": "28069124", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42288", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and eat pospicles with friends . camp is a magical place .", "storylet_id": "211444"}], [{"original_text": "The whole crowd arrived for the festivities.", "album_id": "634359", "photo_flickr_id": "28069659", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42289", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole crowd arrived for the festivities .", "storylet_id": "211445"}], [{"original_text": "There where games in they yard.", "album_id": "634359", "photo_flickr_id": "28068358", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42289", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there where games in they yard .", "storylet_id": "211446"}], [{"original_text": "There where also activities in the lake.", "album_id": "634359", "photo_flickr_id": "28069231", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42289", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there where also activities in the lake .", "storylet_id": "211447"}], [{"original_text": "The animals where set up for the kids.", "album_id": "634359", "photo_flickr_id": "28069367", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42289", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the animals where set up for the kids .", "storylet_id": "211448"}], [{"original_text": "We ended the afternoon eating a conversing. ", "album_id": "634359", "photo_flickr_id": "28069124", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42289", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the afternoon eating a conversing .", "storylet_id": "211449"}], [{"original_text": "Blake was excited that his parents came to visit him.", "album_id": "72157600422228599", "photo_flickr_id": "582919857", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42290", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was excited that his parents came to visit him .", "storylet_id": "211450"}], [{"original_text": "His parents had a great time on the coast.", "album_id": "72157600422228599", "photo_flickr_id": "583264236", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42290", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his parents had a great time on the coast .", "storylet_id": "211451"}], [{"original_text": "They all headed down to the water.", "album_id": "72157600422228599", "photo_flickr_id": "582915129", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42290", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all headed down to the water .", "storylet_id": "211452"}], [{"original_text": "And saw the tiny house where Blake lived.", "album_id": "72157600422228599", "photo_flickr_id": "582929955", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42290", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and saw the tiny house where [male] lived .", "storylet_id": "211453"}], [{"original_text": "They also got to meet all of Blake's friends.", "album_id": "72157600422228599", "photo_flickr_id": "582928911", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42290", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they also got to meet all of [male] 's friends .", "storylet_id": "211454"}], [{"original_text": "some friends were gonna head down to the beach later", "album_id": "72157600422228599", "photo_flickr_id": "582918919", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42291", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some friends were gon na head down to the beach later", "storylet_id": "211455"}], [{"original_text": "this was the water sign that they saw", "album_id": "72157600422228599", "photo_flickr_id": "583261166", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42291", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was the water sign that they saw", "storylet_id": "211456"}], [{"original_text": "each beach house was lined up by each other", "album_id": "72157600422228599", "photo_flickr_id": "582929955", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42291", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each beach house was lined up by each other", "storylet_id": "211457"}], [{"original_text": "the friends decided to head back and have lunch instead", "album_id": "72157600422228599", "photo_flickr_id": "583259310", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42291", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the friends decided to head back and have lunch instead", "storylet_id": "211458"}], [{"original_text": "it started to rain but it didn't ruin their day ", "album_id": "72157600422228599", "photo_flickr_id": "582928911", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42291", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it started to rain but it did n't ruin their day", "storylet_id": "211459"}], [{"original_text": "My brothers and I went to the beach for a week and stayed in a very tiny house.", "album_id": "72157600422228599", "photo_flickr_id": "582919857", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42292", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brothers and i went to the beach for a week and stayed in a very tiny house .", "storylet_id": "211460"}], [{"original_text": "It was tiny, but there was still room when our parents showed up and surprised us.", "album_id": "72157600422228599", "photo_flickr_id": "583264236", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42292", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was tiny , but there was still room when our parents showed up and surprised us .", "storylet_id": "211461"}], [{"original_text": "Even though the house was tiny, the beach beach seemed endless.", "album_id": "72157600422228599", "photo_flickr_id": "582915129", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42292", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even though the house was tiny , the beach beach seemed endless .", "storylet_id": "211462"}], [{"original_text": "The row of tiny houses, like the one we stayed in, seemed endless, too.", "album_id": "72157600422228599", "photo_flickr_id": "582929955", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42292", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the row of tiny houses , like the one we stayed in , seemed endless , too .", "storylet_id": "211463"}], [{"original_text": "Can you believe all these people stayed in tiny beach house on the day it rained?", "album_id": "72157600422228599", "photo_flickr_id": "582928911", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42292", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "can you believe all these people stayed in tiny beach house on the day it rained ?", "storylet_id": "211464"}], [{"original_text": "One day the young kids were talking and laughing,", "album_id": "72157600422228599", "photo_flickr_id": "582919857", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42293", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one day the young kids were talking and laughing ,", "storylet_id": "211465"}], [{"original_text": "so grandpa asked what they were talking and laughing about.", "album_id": "72157600422228599", "photo_flickr_id": "583264236", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42293", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so grandpa asked what they were talking and laughing about .", "storylet_id": "211466"}], [{"original_text": "They said one day their dream is to live on the beach ", "album_id": "72157600422228599", "photo_flickr_id": "582915129", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42293", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they said one day their dream is to live on the beach", "storylet_id": "211467"}], [{"original_text": "in a colorful house.", "album_id": "72157600422228599", "photo_flickr_id": "582929955", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42293", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in a colorful house .", "storylet_id": "211468"}], [{"original_text": "They would live near enough so that all their friends could come visit them, and it would be a great life. ", "album_id": "72157600422228599", "photo_flickr_id": "582928911", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42293", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they would live near enough so that all their friends could come visit them , and it would be a great life .", "storylet_id": "211469"}], [{"original_text": "The family went on vacation by the beach.", "album_id": "72157600422228599", "photo_flickr_id": "582919857", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42294", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went on vacation by the beach .", "storylet_id": "211470"}], [{"original_text": "Everyone had such a good time at dinner.", "album_id": "72157600422228599", "photo_flickr_id": "583264236", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42294", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone had such a good time at dinner .", "storylet_id": "211471"}], [{"original_text": "Then we walked down to the beach.", "album_id": "72157600422228599", "photo_flickr_id": "582915129", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42294", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we walked down to the beach .", "storylet_id": "211472"}], [{"original_text": "We saw how tiny the houses are by the ocean.", "album_id": "72157600422228599", "photo_flickr_id": "582929955", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42294", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw how tiny the houses are by the ocean .", "storylet_id": "211473"}], [{"original_text": "After that it started to rain outside.", "album_id": "72157600422228599", "photo_flickr_id": "582928911", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42294", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that it started to rain outside .", "storylet_id": "211474"}], [{"original_text": "He had put up the decorations for the celebration. ", "album_id": "638588", "photo_flickr_id": "28278695", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42295", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he had put up the decorations for the celebration .", "storylet_id": "211475"}], [{"original_text": "He was looking forward to a day off. ", "album_id": "638588", "photo_flickr_id": "28278770", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42295", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was looking forward to a day off .", "storylet_id": "211476"}], [{"original_text": "He thought he'd go for a hike. ", "album_id": "638588", "photo_flickr_id": "28279618", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42295", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he thought he 'd go for a hike .", "storylet_id": "211477"}], [{"original_text": "Maybe do a little fishing. ", "album_id": "638588", "photo_flickr_id": "28279697", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42295", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "maybe do a little fishing .", "storylet_id": "211478"}], [{"original_text": "If the fish weren't biting he could always go hunting. ", "album_id": "638588", "photo_flickr_id": "28280516", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42295", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "if the fish were n't biting he could always go hunting .", "storylet_id": "211479"}], [{"original_text": "Stuck at the toll booth on the turnpike.", "album_id": "638588", "photo_flickr_id": "28278739", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "42296", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "stuck at the toll booth on the turnpike .", "storylet_id": "211480"}], [{"original_text": "Jim posing at the dock once we finally got there.", "album_id": "638588", "photo_flickr_id": "28278770", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "42296", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] posing at the dock once we finally got there .", "storylet_id": "211481"}], [{"original_text": "A cool waterfall way up in the woods by the campsite.", "album_id": "638588", "photo_flickr_id": "28278936", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "42296", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a cool waterfall way up in the woods by the campsite .", "storylet_id": "211482"}], [{"original_text": "Our blazing fire we had that night.", "album_id": "638588", "photo_flickr_id": "28280873", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "42296", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our blazing fire we had that night .", "storylet_id": "211483"}], [{"original_text": "Our tent in the morning light after a peaceful nights sleep.", "album_id": "638588", "photo_flickr_id": "28290892", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "42296", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our tent in the morning light after a peaceful nights sleep .", "storylet_id": "211484"}], [{"original_text": "The building has been in tact for many years. ", "album_id": "638588", "photo_flickr_id": "28278695", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42297", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the building has been in tact for many years .", "storylet_id": "211485"}], [{"original_text": "We took a picture alongside the water. ", "album_id": "638588", "photo_flickr_id": "28278770", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42297", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a picture alongside the water .", "storylet_id": "211486"}], [{"original_text": "Next, he knelt down near the tree and water stream. ", "album_id": "638588", "photo_flickr_id": "28279618", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42297", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next , he knelt down near the tree and water stream .", "storylet_id": "211487"}], [{"original_text": "The water flowed roughly. ", "album_id": "638588", "photo_flickr_id": "28279697", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42297", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the water flowed roughly .", "storylet_id": "211488"}], [{"original_text": "He pulled over on the side of the road. ", "album_id": "638588", "photo_flickr_id": "28280516", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42297", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he pulled over on the side of the road .", "storylet_id": "211489"}], [{"original_text": "Last week, we went to the park.", "album_id": "638588", "photo_flickr_id": "28278695", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42298", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week , we went to the park .", "storylet_id": "211490"}], [{"original_text": "While we were there, we strolled out to the dock.", "album_id": "638588", "photo_flickr_id": "28278770", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42298", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while we were there , we strolled out to the dock .", "storylet_id": "211491"}], [{"original_text": "We also explored the streams that ran off the lake.", "album_id": "638588", "photo_flickr_id": "28279618", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42298", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also explored the streams that ran off the lake .", "storylet_id": "211492"}], [{"original_text": "They were beautiful.", "album_id": "638588", "photo_flickr_id": "28279697", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42298", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were beautiful .", "storylet_id": "211493"}], [{"original_text": "At the end of the day, we packed up and went home.", "album_id": "638588", "photo_flickr_id": "28280516", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42298", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , we packed up and went home .", "storylet_id": "211494"}], [{"original_text": "There's always a lot of traffic when we head down to our camping site.", "album_id": "638588", "photo_flickr_id": "28278739", "setting": "last-3-pick-old-and-tell", "worker_id": "XAGA0CS19DKC5YV", "story_id": "42299", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there 's always a lot of traffic when we head down to our camping site .", "storylet_id": "211495"}], [{"original_text": "Here I am standing on the docks before we got out of town.", "album_id": "638588", "photo_flickr_id": "28278770", "setting": "last-3-pick-old-and-tell", "worker_id": "XAGA0CS19DKC5YV", "story_id": "42299", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here i am standing on the docks before we got out of town .", "storylet_id": "211496"}], [{"original_text": "This is a beautiful waterfall near where we camped. The water was so clear.", "album_id": "638588", "photo_flickr_id": "28278936", "setting": "last-3-pick-old-and-tell", "worker_id": "XAGA0CS19DKC5YV", "story_id": "42299", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a beautiful waterfall near where we camped . the water was so clear .", "storylet_id": "211497"}], [{"original_text": "At night we made our fire in this pit. There was plenty of old wood around to keep it going all night.", "album_id": "638588", "photo_flickr_id": "28280873", "setting": "last-3-pick-old-and-tell", "worker_id": "XAGA0CS19DKC5YV", "story_id": "42299", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at night we made our fire in this pit . there was plenty of old wood around to keep it going all night .", "storylet_id": "211498"}], [{"original_text": "Here's my tent the first morning I woke up. Just before I took this picture a rabbit ran through.", "album_id": "638588", "photo_flickr_id": "28290892", "setting": "last-3-pick-old-and-tell", "worker_id": "XAGA0CS19DKC5YV", "story_id": "42299", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's my tent the first morning i woke up . just before i took this picture a rabbit ran through .", "storylet_id": "211499"}], [{"original_text": "Seashells are plentiful on the beach.", "album_id": "4614", "photo_flickr_id": "240183", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "42300", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "seashells are plentiful on the beach .", "storylet_id": "211500"}], [{"original_text": "The beach is a beautiful tourist site.", "album_id": "4614", "photo_flickr_id": "240188", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "42300", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the beach is a beautiful tourist site .", "storylet_id": "211501"}], [{"original_text": "There are amazing tourist attractions that attract a lot of people.", "album_id": "4614", "photo_flickr_id": "240199", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "42300", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are amazing tourist attractions that attract a lot of people .", "storylet_id": "211502"}], [{"original_text": "There are great places to eat.", "album_id": "4614", "photo_flickr_id": "247395", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "42300", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are great places to eat .", "storylet_id": "211503"}], [{"original_text": "The food is delicious and filling.", "album_id": "4614", "photo_flickr_id": "247397", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "42300", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the food is delicious and filling .", "storylet_id": "211504"}], [{"original_text": "We started the day off at the beach by enjoying a beautiful sunrise.", "album_id": "4614", "photo_flickr_id": "240188", "setting": "first-2-pick-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "42301", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started the day off at the beach by enjoying a beautiful sunrise .", "storylet_id": "211505"}], [{"original_text": "We brought an umbrella and lounged around, enjoying the beautiful day.", "album_id": "4614", "photo_flickr_id": "240199", "setting": "first-2-pick-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "42301", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we brought an umbrella and lounged around , enjoying the beautiful day .", "storylet_id": "211506"}], [{"original_text": "We caught a glimpse of some wild mustangs that roam the area.", "album_id": "4614", "photo_flickr_id": "240203", "setting": "first-2-pick-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "42301", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we caught a glimpse of some wild mustangs that roam the area .", "storylet_id": "211507"}], [{"original_text": "Around lunch time we started to get hungry so we headed over to Captain Bill's Restaurant. ", "album_id": "4614", "photo_flickr_id": "247395", "setting": "first-2-pick-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "42301", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "around lunch time we started to get hungry so we headed over to captain [male] 's restaurant .", "storylet_id": "211508"}], [{"original_text": "The meal really hit the spot. Dessert sounded so amazing that I decided not to share. ", "album_id": "4614", "photo_flickr_id": "247400", "setting": "first-2-pick-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "42301", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the meal really hit the spot . dessert sounded so amazing that i decided not to share .", "storylet_id": "211509"}], [{"original_text": "Our family vacation this year was to Pensacola, Florida.", "album_id": "4614", "photo_flickr_id": "240183", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42302", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family vacation this year was to location , location .", "storylet_id": "211510"}], [{"original_text": "We saw spectacular sunsets each evening.", "album_id": "4614", "photo_flickr_id": "240188", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42302", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw spectacular sunsets each evening .", "storylet_id": "211511"}], [{"original_text": "Lounging under beach umbrellas every afternoon is something I could get used to!", "album_id": "4614", "photo_flickr_id": "240199", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42302", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lounging under beach umbrellas every afternoon is something i could get used to !", "storylet_id": "211512"}], [{"original_text": "There were so many restaurants to try.", "album_id": "4614", "photo_flickr_id": "247395", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42302", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were so many restaurants to try .", "storylet_id": "211513"}], [{"original_text": "The fresh seafood is simply amazing and I tried something new - collard greens!", "album_id": "4614", "photo_flickr_id": "247397", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42302", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fresh seafood is simply amazing and i tried something new - collard greens !", "storylet_id": "211514"}], [{"original_text": "I visited the sea one weekend and found a bunch of shells.", "album_id": "4614", "photo_flickr_id": "240183", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42303", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i visited the sea one weekend and found a bunch of shells .", "storylet_id": "211515"}], [{"original_text": "The sun was setting over the water and was absolutely gorgeous.", "album_id": "4614", "photo_flickr_id": "240188", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42303", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sun was setting over the water and was absolutely gorgeous .", "storylet_id": "211516"}], [{"original_text": "In town, I found a large multicolored tent set up.", "album_id": "4614", "photo_flickr_id": "240199", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42303", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in town , i found a large multicolored tent set up .", "storylet_id": "211517"}], [{"original_text": "I ate at a place called Captain Bill's, which served seafood.", "album_id": "4614", "photo_flickr_id": "247395", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42303", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i ate at a place called captain [male] 's , which served seafood .", "storylet_id": "211518"}], [{"original_text": "The seafood came with sides and was delicious!", "album_id": "4614", "photo_flickr_id": "247397", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42303", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the seafood came with sides and was delicious !", "storylet_id": "211519"}], [{"original_text": "I'm so glad my husband suggested the beach this weekend.", "album_id": "4614", "photo_flickr_id": "240183", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42304", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 'm so glad my husband suggested the beach this weekend .", "storylet_id": "211520"}], [{"original_text": "Our first night was spent strolling the shore.", "album_id": "4614", "photo_flickr_id": "240188", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42304", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our first night was spent strolling the shore .", "storylet_id": "211521"}], [{"original_text": "We were the first to open our umbrella on the beach the following morning.", "album_id": "4614", "photo_flickr_id": "240199", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42304", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were the first to open our umbrella on the beach the following morning .", "storylet_id": "211522"}], [{"original_text": "Seafood is a must on a beach getaway.", "album_id": "4614", "photo_flickr_id": "247395", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42304", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "seafood is a must on a beach getaway .", "storylet_id": "211523"}], [{"original_text": "Our meal so fresh, the fish was straight off the boat. The weekend ended too quickly.", "album_id": "4614", "photo_flickr_id": "247397", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42304", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our meal so fresh , the fish was straight off the boat . the weekend ended too quickly .", "storylet_id": "211524"}], [{"original_text": "When mount Vesuvius erupted the people had no chance of survival.", "album_id": "72157623282120964", "photo_flickr_id": "4303516393", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42305", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when mount vesuvius erupted the people had no chance of survival .", "storylet_id": "211525"}], [{"original_text": "Fathers tried to shield their infants.", "album_id": "72157623282120964", "photo_flickr_id": "4303518351", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42305", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fathers tried to shield their infants .", "storylet_id": "211526"}], [{"original_text": "Mothers picked up their children and ran.", "album_id": "72157623282120964", "photo_flickr_id": "4303521203", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42305", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mothers picked up their children and ran .", "storylet_id": "211527"}], [{"original_text": "Whole families tried to out run the red hot lava and ash.", "album_id": "72157623282120964", "photo_flickr_id": "4303517685", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42305", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "whole families tried to out run the red hot lava and ash .", "storylet_id": "211528"}], [{"original_text": "But it was too late! They and the city were gone.", "album_id": "72157623282120964", "photo_flickr_id": "4304259490", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42305", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but it was too late ! they and the city were gone .", "storylet_id": "211529"}], [{"original_text": "This is some amazing art work.", "album_id": "72157623282120964", "photo_flickr_id": "4304259490", "setting": "first-2-pick-and-tell", "worker_id": "AU7J265MZSU6VJK", "story_id": "42306", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is some amazing art work .", "storylet_id": "211530"}], [{"original_text": "The person who created this sculpture is very creative.", "album_id": "72157623282120964", "photo_flickr_id": "4303517685", "setting": "first-2-pick-and-tell", "worker_id": "AU7J265MZSU6VJK", "story_id": "42306", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the person who created this sculpture is very creative .", "storylet_id": "211531"}], [{"original_text": "Interesting use of clay and general design.", "album_id": "72157623282120964", "photo_flickr_id": "4304262806", "setting": "first-2-pick-and-tell", "worker_id": "AU7J265MZSU6VJK", "story_id": "42306", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "interesting use of clay and general design .", "storylet_id": "211532"}], [{"original_text": "It looks like these people are flying.", "album_id": "72157623282120964", "photo_flickr_id": "4304263328", "setting": "first-2-pick-and-tell", "worker_id": "AU7J265MZSU6VJK", "story_id": "42306", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looks like these people are flying .", "storylet_id": "211533"}], [{"original_text": "This reminded me of me and my Mom holding me tight. ", "album_id": "72157623282120964", "photo_flickr_id": "4303521203", "setting": "first-2-pick-and-tell", "worker_id": "AU7J265MZSU6VJK", "story_id": "42306", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this reminded me of me and my mom holding me tight .", "storylet_id": "211534"}], [{"original_text": "There were many spooky sculptures on display.", "album_id": "72157623282120964", "photo_flickr_id": "4304259490", "setting": "last-3-pick-old-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "42307", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many spooky sculptures on display .", "storylet_id": "211535"}], [{"original_text": "This one depicts a baby crying in its mother's arms.", "album_id": "72157623282120964", "photo_flickr_id": "4303517685", "setting": "last-3-pick-old-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "42307", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one depicts a baby crying in its mother 's arms .", "storylet_id": "211536"}], [{"original_text": "Other kids are also scared.", "album_id": "72157623282120964", "photo_flickr_id": "4304262806", "setting": "last-3-pick-old-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "42307", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other kids are also scared .", "storylet_id": "211537"}], [{"original_text": "It looks like they're screaming.", "album_id": "72157623282120964", "photo_flickr_id": "4304263328", "setting": "last-3-pick-old-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "42307", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looks like they 're screaming .", "storylet_id": "211538"}], [{"original_text": "This child looks like it's crying.", "album_id": "72157623282120964", "photo_flickr_id": "4303521203", "setting": "last-3-pick-old-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "42307", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this child looks like it 's crying .", "storylet_id": "211539"}], [{"original_text": "I tipped the statue on accident.", "album_id": "72157623282120964", "photo_flickr_id": "4303516393", "setting": "last-3-pick-old-and-tell", "worker_id": "IX6YV7OVS64DNW8", "story_id": "42308", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i tipped the statue on accident .", "storylet_id": "211540"}], [{"original_text": "I looked at it closely to see if it was broken.", "album_id": "72157623282120964", "photo_flickr_id": "4303518351", "setting": "last-3-pick-old-and-tell", "worker_id": "IX6YV7OVS64DNW8", "story_id": "42308", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i looked at it closely to see if it was broken .", "storylet_id": "211541"}], [{"original_text": "It was not broken so I stood up.", "album_id": "72157623282120964", "photo_flickr_id": "4303521203", "setting": "last-3-pick-old-and-tell", "worker_id": "IX6YV7OVS64DNW8", "story_id": "42308", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was not broken so i stood up .", "storylet_id": "211542"}], [{"original_text": "I glanced at it to make sure it looked right.", "album_id": "72157623282120964", "photo_flickr_id": "4303517685", "setting": "last-3-pick-old-and-tell", "worker_id": "IX6YV7OVS64DNW8", "story_id": "42308", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i glanced at it to make sure it looked right .", "storylet_id": "211543"}], [{"original_text": "The hand seemed to be disfigured.", "album_id": "72157623282120964", "photo_flickr_id": "4304259490", "setting": "last-3-pick-old-and-tell", "worker_id": "IX6YV7OVS64DNW8", "story_id": "42308", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the hand seemed to be disfigured .", "storylet_id": "211544"}], [{"original_text": "The statues outside where intense.", "album_id": "72157623282120964", "photo_flickr_id": "4303516393", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42309", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the statues outside where intense .", "storylet_id": "211545"}], [{"original_text": "They where dark and kind of creepy.", "album_id": "72157623282120964", "photo_flickr_id": "4303518351", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42309", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they where dark and kind of creepy .", "storylet_id": "211546"}], [{"original_text": "Some of women holding children.", "album_id": "72157623282120964", "photo_flickr_id": "4303521203", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42309", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of women holding children .", "storylet_id": "211547"}], [{"original_text": "Usually, while screaming and crying.", "album_id": "72157623282120964", "photo_flickr_id": "4303517685", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42309", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "usually , while screaming and crying .", "storylet_id": "211548"}], [{"original_text": "The last one we saw was simply an arm, but it said so much.", "album_id": "72157623282120964", "photo_flickr_id": "4304259490", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42309", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last one we saw was simply an arm , but it said so much .", "storylet_id": "211549"}], [{"original_text": "I went to the beach last weekend.", "album_id": "72157623160806783", "photo_flickr_id": "4304869395", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42310", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the beach last weekend .", "storylet_id": "211550"}], [{"original_text": "It was beautiful there.", "album_id": "72157623160806783", "photo_flickr_id": "4305613494", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42310", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was beautiful there .", "storylet_id": "211551"}], [{"original_text": "I had a great time.", "album_id": "72157623160806783", "photo_flickr_id": "4304872811", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42310", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time .", "storylet_id": "211552"}], [{"original_text": "There were some beautiful plains nearby as well.", "album_id": "72157623160806783", "photo_flickr_id": "4304880701", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42310", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were some beautiful plains nearby as well .", "storylet_id": "211553"}], [{"original_text": "I went down to the dock afterward.", "album_id": "72157623160806783", "photo_flickr_id": "4305623918", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42310", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i went down to the dock afterward .", "storylet_id": "211554"}], [{"original_text": "The grounds didn't appear as cold during daylight.", "album_id": "72157623160806783", "photo_flickr_id": "4304880701", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "42311", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the grounds did n't appear as cold during daylight .", "storylet_id": "211555"}], [{"original_text": "Entering the park, we realized what a beautiful place this was.", "album_id": "72157623160806783", "photo_flickr_id": "4305632322", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "42311", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "entering the park , we realized what a beautiful place this was .", "storylet_id": "211556"}], [{"original_text": "Crossing the bridge over the hot springs in the cold weather was incredible.", "album_id": "72157623160806783", "photo_flickr_id": "4305617544", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "42311", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "crossing the bridge over the hot springs in the cold weather was incredible .", "storylet_id": "211557"}], [{"original_text": "So many people enjoyed themselves in the springs.", "album_id": "72157623160806783", "photo_flickr_id": "4305613494", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "42311", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so many people enjoyed themselves in the springs .", "storylet_id": "211558"}], [{"original_text": "We loved our time at the resort.", "album_id": "72157623160806783", "photo_flickr_id": "4305616266", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "42311", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we loved our time at the resort .", "storylet_id": "211559"}], [{"original_text": "the landscape offered an escape ", "album_id": "72157623160806783", "photo_flickr_id": "4304880701", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42312", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the landscape offered an escape", "storylet_id": "211560"}], [{"original_text": "not a soul around these parts", "album_id": "72157623160806783", "photo_flickr_id": "4305632322", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42312", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "not a soul around these parts", "storylet_id": "211561"}], [{"original_text": "the fog came in early over the bridge", "album_id": "72157623160806783", "photo_flickr_id": "4305617544", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42312", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fog came in early over the bridge", "storylet_id": "211562"}], [{"original_text": "and the animals were roaming the ice", "album_id": "72157623160806783", "photo_flickr_id": "4305613494", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42312", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the animals were roaming the ice", "storylet_id": "211563"}], [{"original_text": "it was a very cold day indeed ", "album_id": "72157623160806783", "photo_flickr_id": "4305616266", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42312", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a very cold day indeed", "storylet_id": "211564"}], [{"original_text": "It was a very cold day out and the clouds were heavy. ", "album_id": "72157623160806783", "photo_flickr_id": "4304869395", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42313", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a very cold day out and the clouds were heavy .", "storylet_id": "211565"}], [{"original_text": "There were people in the water which was strange.", "album_id": "72157623160806783", "photo_flickr_id": "4305613494", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42313", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were people in the water which was strange .", "storylet_id": "211566"}], [{"original_text": "The water was so nice and it felt great on the people's bodies. ", "album_id": "72157623160806783", "photo_flickr_id": "4304872811", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42313", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water was so nice and it felt great on the people 's bodies .", "storylet_id": "211567"}], [{"original_text": "To the North, the land was very dry and rough. ", "album_id": "72157623160806783", "photo_flickr_id": "4304880701", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42313", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to the north , the land was very dry and rough .", "storylet_id": "211568"}], [{"original_text": "These people were glad they lived in the opposite direction.", "album_id": "72157623160806783", "photo_flickr_id": "4305623918", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42313", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these people were glad they lived in the opposite direction .", "storylet_id": "211569"}], [{"original_text": "We began our trip in an ordinary looking part of the country.", "album_id": "72157623160806783", "photo_flickr_id": "4304880701", "setting": "last-3-pick-old-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "42314", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we began our trip in an ordinary looking part of the country .", "storylet_id": "211570"}], [{"original_text": "Soon we were walking along a winding path surrounded by walls of rock. ", "album_id": "72157623160806783", "photo_flickr_id": "4305632322", "setting": "last-3-pick-old-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "42314", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "soon we were walking along a winding path surrounded by walls of rock .", "storylet_id": "211571"}], [{"original_text": "We knew we were at our destination when we had to cross a bridge that was suspended over crystal blue water.", "album_id": "72157623160806783", "photo_flickr_id": "4305617544", "setting": "last-3-pick-old-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "42314", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we knew we were at our destination when we had to cross a bridge that was suspended over crystal blue water .", "storylet_id": "211572"}], [{"original_text": "We noticed others were already enjoying their time in the warm water. ", "album_id": "72157623160806783", "photo_flickr_id": "4305613494", "setting": "last-3-pick-old-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "42314", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we noticed others were already enjoying their time in the warm water .", "storylet_id": "211573"}], [{"original_text": "Besides enjoying the warm water, we had a wonderful view of the mountain. ", "album_id": "72157623160806783", "photo_flickr_id": "4305616266", "setting": "last-3-pick-old-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "42314", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "besides enjoying the warm water , we had a wonderful view of the mountain .", "storylet_id": "211574"}], [{"original_text": "Outside of the facility aloe plants were everywhere.", "album_id": "72157623282319186", "photo_flickr_id": "4304343232", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42315", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "outside of the facility aloe plants were everywhere .", "storylet_id": "211575"}], [{"original_text": "Beautiful statues depicted children playing in a pond.", "album_id": "72157623282319186", "photo_flickr_id": "4304343630", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42315", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "beautiful statues depicted children playing in a pond .", "storylet_id": "211576"}], [{"original_text": "There was even a bronze statue that was as tall as the buildings.", "album_id": "72157623282319186", "photo_flickr_id": "4303600595", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42315", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was even a bronze statue that was as tall as the buildings .", "storylet_id": "211577"}], [{"original_text": "Inside there were works from nearby artists.", "album_id": "72157623282319186", "photo_flickr_id": "4304346128", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42315", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "inside there were works from nearby artists .", "storylet_id": "211578"}], [{"original_text": "Some of the art held a special and secretive message.", "album_id": "72157623282319186", "photo_flickr_id": "4303603123", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42315", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the art held a special and secretive message .", "storylet_id": "211579"}], [{"original_text": "We walked along the outdoor mall and saw this cute fountain.", "album_id": "72157623282319186", "photo_flickr_id": "4304343630", "setting": "first-2-pick-and-tell", "worker_id": "AU7J265MZSU6VJK", "story_id": "42316", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we walked along the outdoor mall and saw this cute fountain .", "storylet_id": "211580"}], [{"original_text": "Next to it was this statute that was a cross between Atlas and Socrates.", "album_id": "72157623282319186", "photo_flickr_id": "4303600595", "setting": "first-2-pick-and-tell", "worker_id": "AU7J265MZSU6VJK", "story_id": "42316", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next to it was this statute that was a cross between location and socrates .", "storylet_id": "211581"}], [{"original_text": "We then took a stroll down to the beach.", "album_id": "72157623282319186", "photo_flickr_id": "4303601219", "setting": "first-2-pick-and-tell", "worker_id": "AU7J265MZSU6VJK", "story_id": "42316", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we then took a stroll down to the beach .", "storylet_id": "211582"}], [{"original_text": "We watched the tide come in as the sun started to set.", "album_id": "72157623282319186", "photo_flickr_id": "4303601489", "setting": "first-2-pick-and-tell", "worker_id": "AU7J265MZSU6VJK", "story_id": "42316", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we watched the tide come in as the sun started to set .", "storylet_id": "211583"}], [{"original_text": "My husband enjoyed watching the water and the sunset.", "album_id": "72157623282319186", "photo_flickr_id": "4304345146", "setting": "first-2-pick-and-tell", "worker_id": "AU7J265MZSU6VJK", "story_id": "42316", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my husband enjoyed watching the water and the sunset .", "storylet_id": "211584"}], [{"original_text": "They dropped us in an immaculate garden. Filled with bronzed statues...", "album_id": "72157623282319186", "photo_flickr_id": "4304343630", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42317", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they dropped us in an immaculate garden . filled with bronzed statues ...", "storylet_id": "211585"}], [{"original_text": "Like the protector of the camp, a strong man with a spear.", "album_id": "72157623282319186", "photo_flickr_id": "4303600595", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42317", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "like the protector of the camp , a strong man with a spear .", "storylet_id": "211586"}], [{"original_text": "We then walked to the beach and saw the gorgeous coastline..", "album_id": "72157623282319186", "photo_flickr_id": "4303601219", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42317", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we then walked to the beach and saw the gorgeous coastline..", "storylet_id": "211587"}], [{"original_text": "And, the first concrete pier I had ever seen.", "album_id": "72157623282319186", "photo_flickr_id": "4303601489", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42317", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , the first concrete pier i had ever seen .", "storylet_id": "211588"}], [{"original_text": "That is where I took my final photo of the trip.", "album_id": "72157623282319186", "photo_flickr_id": "4304345146", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42317", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that is where i took my final photo of the trip .", "storylet_id": "211589"}], [{"original_text": "I got some aloe vera last week.", "album_id": "72157623282319186", "photo_flickr_id": "4304343232", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42318", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got some aloe vera last week .", "storylet_id": "211590"}], [{"original_text": "It is very good for you.", "album_id": "72157623282319186", "photo_flickr_id": "4304343630", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42318", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is very good for you .", "storylet_id": "211591"}], [{"original_text": "I also bought a statue.", "album_id": "72157623282319186", "photo_flickr_id": "4303600595", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42318", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also bought a statue .", "storylet_id": "211592"}], [{"original_text": "And this to hang on my wall.", "album_id": "72157623282319186", "photo_flickr_id": "4304346128", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42318", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and this to hang on my wall .", "storylet_id": "211593"}], [{"original_text": "I had a great time shopping.", "album_id": "72157623282319186", "photo_flickr_id": "4303603123", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42318", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time shopping .", "storylet_id": "211594"}], [{"original_text": "The baby cactus are many in the field", "album_id": "72157623282319186", "photo_flickr_id": "4304343232", "setting": "last-3-pick-old-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "42319", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the baby cactus are many in the field", "storylet_id": "211595"}], [{"original_text": "A circle of love in sculptures is great in town view", "album_id": "72157623282319186", "photo_flickr_id": "4304343630", "setting": "last-3-pick-old-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "42319", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a circle of love in sculptures is great in town view", "storylet_id": "211596"}], [{"original_text": "we all wonder when we visit each having our own views of the statue in standing", "album_id": "72157623282319186", "photo_flickr_id": "4303600595", "setting": "last-3-pick-old-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "42319", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all wonder when we visit each having our own views of the statue in standing", "storylet_id": "211597"}], [{"original_text": "the nice figurines showing family or a mother's love for child", "album_id": "72157623282319186", "photo_flickr_id": "4304346128", "setting": "last-3-pick-old-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "42319", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the nice figurines showing family or a mother 's love for child", "storylet_id": "211598"}], [{"original_text": "being able to put your ideas on a figurine is an option of your choice", "album_id": "72157623282319186", "photo_flickr_id": "4303603123", "setting": "last-3-pick-old-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "42319", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "being able to put your ideas on a figurine is an option of your choice", "storylet_id": "211599"}], [{"original_text": "We went on a vacation to Haiti to explore the country.", "album_id": "72157623282877426", "photo_flickr_id": "4303796953", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42320", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on a vacation to location to explore the country .", "storylet_id": "211600"}], [{"original_text": "We found a lot of nice people and interesting sights.", "album_id": "72157623282877426", "photo_flickr_id": "4304542926", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42320", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we found a lot of nice people and interesting sights .", "storylet_id": "211601"}], [{"original_text": "The country overall was fairly poor and we felt bad at times.", "album_id": "72157623282877426", "photo_flickr_id": "4303803727", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42320", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the country overall was fairly poor and we felt bad at times .", "storylet_id": "211602"}], [{"original_text": "The rivers were wild and mostly used for fishing.", "album_id": "72157623282877426", "photo_flickr_id": "4304550558", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42320", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rivers were wild and mostly used for fishing .", "storylet_id": "211603"}], [{"original_text": "Many people make their living fishing", "album_id": "72157623282877426", "photo_flickr_id": "4304550038", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42320", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many people make their living fishing", "storylet_id": "211604"}], [{"original_text": "My friends and I decided to go canoeing.", "album_id": "72157623282877426", "photo_flickr_id": "4303796953", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42321", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i decided to go canoeing .", "storylet_id": "211605"}], [{"original_text": "It was a bit of a struggle to get the canoe in the water.", "album_id": "72157623282877426", "photo_flickr_id": "4304542926", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42321", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a bit of a struggle to get the canoe in the water .", "storylet_id": "211606"}], [{"original_text": "While we were in the water, we came across a goose.", "album_id": "72157623282877426", "photo_flickr_id": "4304552846", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42321", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "while we were in the water , we came across a goose .", "storylet_id": "211607"}], [{"original_text": "After we were done in the canoe, we laid out on the beach to tan.", "album_id": "72157623282877426", "photo_flickr_id": "4303802463", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42321", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after we were done in the canoe , we laid out on the beach to tan .", "storylet_id": "211608"}], [{"original_text": "Just as we were leaving, a huge group of people canoeing came. ", "album_id": "72157623282877426", "photo_flickr_id": "4304550038", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42321", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "just as we were leaving , a huge group of people canoeing came .", "storylet_id": "211609"}], [{"original_text": "The boats all lay on the shore in the morning hours.", "album_id": "72157623282877426", "photo_flickr_id": "4303796953", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42322", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boats all lay on the shore in the morning hours .", "storylet_id": "211610"}], [{"original_text": "One boy decided to see if the boat was any fun to use.", "album_id": "72157623282877426", "photo_flickr_id": "4304542926", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42322", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one boy decided to see if the boat was any fun to use .", "storylet_id": "211611"}], [{"original_text": "On the opposite side of the lake, there was a bird enjoying the crisp, summer day.", "album_id": "72157623282877426", "photo_flickr_id": "4304552846", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42322", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on the opposite side of the lake , there was a bird enjoying the crisp , summer day .", "storylet_id": "211612"}], [{"original_text": "People were on the beach having a good time with the water.", "album_id": "72157623282877426", "photo_flickr_id": "4303802463", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42322", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people were on the beach having a good time with the water .", "storylet_id": "211613"}], [{"original_text": "Later on that day, people gathered in the boats and set sail.", "album_id": "72157623282877426", "photo_flickr_id": "4304550038", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42322", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later on that day , people gathered in the boats and set sail .", "storylet_id": "211614"}], [{"original_text": "I went to the beach last week.", "album_id": "72157623282877426", "photo_flickr_id": "4303796953", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42323", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the beach last week .", "storylet_id": "211615"}], [{"original_text": "There were some boats there.", "album_id": "72157623282877426", "photo_flickr_id": "4304542926", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42323", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were some boats there .", "storylet_id": "211616"}], [{"original_text": "I helped them build some more boats.", "album_id": "72157623282877426", "photo_flickr_id": "4303803727", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42323", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i helped them build some more boats .", "storylet_id": "211617"}], [{"original_text": "It took a long time.", "album_id": "72157623282877426", "photo_flickr_id": "4304550558", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42323", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it took a long time .", "storylet_id": "211618"}], [{"original_text": "I had a great time there.", "album_id": "72157623282877426", "photo_flickr_id": "4304550038", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42323", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time there .", "storylet_id": "211619"}], [{"original_text": "The boat looked very inviting from a distance.", "album_id": "72157623282877426", "photo_flickr_id": "4303796953", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "42324", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boat looked very inviting from a distance .", "storylet_id": "211620"}], [{"original_text": "Though it was a lot of work to get ready.", "album_id": "72157623282877426", "photo_flickr_id": "4304542926", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "42324", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "though it was a lot of work to get ready .", "storylet_id": "211621"}], [{"original_text": "Saw this lovely bird out on the water.", "album_id": "72157623282877426", "photo_flickr_id": "4304552846", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "42324", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "saw this lovely bird out on the water .", "storylet_id": "211622"}], [{"original_text": "And some beachgoers having fun.", "album_id": "72157623282877426", "photo_flickr_id": "4303802463", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "42324", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and some beachgoers having fun .", "storylet_id": "211623"}], [{"original_text": "The day was crowded with many others enjoying the fun day.", "album_id": "72157623282877426", "photo_flickr_id": "4304550038", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "42324", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day was crowded with many others enjoying the fun day .", "storylet_id": "211624"}], [{"original_text": "I was in the mood for a hike, so I decided to go to the beach.", "album_id": "72157623284292918", "photo_flickr_id": "4336498636", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42325", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was in the mood for a hike , so i decided to go to the beach .", "storylet_id": "211625"}], [{"original_text": "I hiked along the shoreline around sunset.", "album_id": "72157623284292918", "photo_flickr_id": "4325907097", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42325", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i hiked along the shoreline around sunset .", "storylet_id": "211626"}], [{"original_text": "It was very calming, and I felt rejuvenated.", "album_id": "72157623284292918", "photo_flickr_id": "4335749273", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42325", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was very calming , and i felt rejuvenated .", "storylet_id": "211627"}], [{"original_text": "I guess a friend of mine had the same idea, we continued the hike together.", "album_id": "72157623284292918", "photo_flickr_id": "4326641590", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42325", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i guess a friend of mine had the same idea , we continued the hike together .", "storylet_id": "211628"}], [{"original_text": "We walked until dusk and then parted ways.", "album_id": "72157623284292918", "photo_flickr_id": "4309583725", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42325", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we walked until dusk and then parted ways .", "storylet_id": "211629"}], [{"original_text": "A day at the beach with me and my wife.", "album_id": "72157623284292918", "photo_flickr_id": "4305121264", "setting": "first-2-pick-and-tell", "worker_id": "AU7J265MZSU6VJK", "story_id": "42326", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a day at the beach with me and my wife .", "storylet_id": "211630"}], [{"original_text": "The sand was so smooth; it looked amazing.", "album_id": "72157623284292918", "photo_flickr_id": "4310325216", "setting": "first-2-pick-and-tell", "worker_id": "AU7J265MZSU6VJK", "story_id": "42326", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sand was so smooth ; it looked amazing .", "storylet_id": "211631"}], [{"original_text": "That's my wife taking increcible pictures of the sunset.", "album_id": "72157623284292918", "photo_flickr_id": "4326641590", "setting": "first-2-pick-and-tell", "worker_id": "AU7J265MZSU6VJK", "story_id": "42326", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that 's my wife taking increcible pictures of the sunset .", "storylet_id": "211632"}], [{"original_text": "I loved being with her on these lovely days.", "album_id": "72157623284292918", "photo_flickr_id": "4336498636", "setting": "first-2-pick-and-tell", "worker_id": "AU7J265MZSU6VJK", "story_id": "42326", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i loved being with her on these lovely days .", "storylet_id": "211633"}], [{"original_text": "The sunset picture she took. I love being in love.", "album_id": "72157623284292918", "photo_flickr_id": "4336502238", "setting": "first-2-pick-and-tell", "worker_id": "AU7J265MZSU6VJK", "story_id": "42326", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sunset picture she took . i love being in love .", "storylet_id": "211634"}], [{"original_text": "Today, we got up early to watch the sunrise.", "album_id": "72157623284292918", "photo_flickr_id": "4336498636", "setting": "last-3-pick-old-and-tell", "worker_id": "WGX5XU7ETME7ZR0", "story_id": "42327", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , we got up early to watch the sunrise .", "storylet_id": "211635"}], [{"original_text": "It was a beautiful view, with the waves crashing on the beach below.", "album_id": "72157623284292918", "photo_flickr_id": "4325907097", "setting": "last-3-pick-old-and-tell", "worker_id": "WGX5XU7ETME7ZR0", "story_id": "42327", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a beautiful view , with the waves crashing on the beach below .", "storylet_id": "211636"}], [{"original_text": "Here, the sun is up a bit higher, so lovely.", "album_id": "72157623284292918", "photo_flickr_id": "4335749273", "setting": "last-3-pick-old-and-tell", "worker_id": "WGX5XU7ETME7ZR0", "story_id": "42327", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here , the sun is up a bit higher , so lovely .", "storylet_id": "211637"}], [{"original_text": "We made sure to get lots of good pictures!", "album_id": "72157623284292918", "photo_flickr_id": "4326641590", "setting": "last-3-pick-old-and-tell", "worker_id": "WGX5XU7ETME7ZR0", "story_id": "42327", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we made sure to get lots of good pictures !", "storylet_id": "211638"}], [{"original_text": "The sun is mostly up now, what a great start to the day!", "album_id": "72157623284292918", "photo_flickr_id": "4309583725", "setting": "last-3-pick-old-and-tell", "worker_id": "WGX5XU7ETME7ZR0", "story_id": "42327", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sun is mostly up now , what a great start to the day !", "storylet_id": "211639"}], [{"original_text": "We had hiked for miles and miles...", "album_id": "72157623284292918", "photo_flickr_id": "4336498636", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42328", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had hiked for miles and miles ...", "storylet_id": "211640"}], [{"original_text": "We finally reached the point of no return..", "album_id": "72157623284292918", "photo_flickr_id": "4325907097", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42328", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we finally reached the point of no return..", "storylet_id": "211641"}], [{"original_text": "The water was flowing over the rocks...", "album_id": "72157623284292918", "photo_flickr_id": "4335749273", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42328", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water was flowing over the rocks ...", "storylet_id": "211642"}], [{"original_text": "And, the wind was blowing wildly...", "album_id": "72157623284292918", "photo_flickr_id": "4326641590", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42328", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , the wind was blowing wildly ...", "storylet_id": "211643"}], [{"original_text": "We decided we better hurry, because the rain appeared to be coming.", "album_id": "72157623284292918", "photo_flickr_id": "4309583725", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42328", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided we better hurry , because the rain appeared to be coming .", "storylet_id": "211644"}], [{"original_text": "We finally arrived at the coast.", "album_id": "72157623284292918", "photo_flickr_id": "4305121264", "setting": "last-3-pick-old-and-tell", "worker_id": "09BSCOJWH6Y022F", "story_id": "42329", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we finally arrived at the coast .", "storylet_id": "211645"}], [{"original_text": "The beaches are more rocky than I imagined.", "album_id": "72157623284292918", "photo_flickr_id": "4310325216", "setting": "last-3-pick-old-and-tell", "worker_id": "09BSCOJWH6Y022F", "story_id": "42329", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the beaches are more rocky than i imagined .", "storylet_id": "211646"}], [{"original_text": "My dad walking down the beach.", "album_id": "72157623284292918", "photo_flickr_id": "4326641590", "setting": "last-3-pick-old-and-tell", "worker_id": "09BSCOJWH6Y022F", "story_id": "42329", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my dad walking down the beach .", "storylet_id": "211647"}], [{"original_text": "We set up the camera take the best pictures.", "album_id": "72157623284292918", "photo_flickr_id": "4336498636", "setting": "last-3-pick-old-and-tell", "worker_id": "09BSCOJWH6Y022F", "story_id": "42329", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we set up the camera take the best pictures .", "storylet_id": "211648"}], [{"original_text": "This is a beautiful sunset we captured. ", "album_id": "72157623284292918", "photo_flickr_id": "4336502238", "setting": "last-3-pick-old-and-tell", "worker_id": "09BSCOJWH6Y022F", "story_id": "42329", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a beautiful sunset we captured .", "storylet_id": "211649"}], [{"original_text": "We were excited when we saw our old-fashioned hotel for our weekend at the beach.", "album_id": "72157623286602552", "photo_flickr_id": "4306144594", "setting": "first-2-pick-and-tell", "worker_id": "4SC5TPKL1L9T6NG", "story_id": "42330", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were excited when we saw our old-fashioned hotel for our weekend at the beach .", "storylet_id": "211650"}], [{"original_text": "We were excited to see the outdoor market and shops.", "album_id": "72157623286602552", "photo_flickr_id": "4305399009", "setting": "first-2-pick-and-tell", "worker_id": "4SC5TPKL1L9T6NG", "story_id": "42330", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were excited to see the outdoor market and shops .", "storylet_id": "211651"}], [{"original_text": "There was a shop that sold all kinds of scented soaps.", "album_id": "72157623286602552", "photo_flickr_id": "4305398309", "setting": "first-2-pick-and-tell", "worker_id": "4SC5TPKL1L9T6NG", "story_id": "42330", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a shop that sold all kinds of scented soaps .", "storylet_id": "211652"}], [{"original_text": "One shop displayed all kinds of brightly colored wraps.", "album_id": "72157623286602552", "photo_flickr_id": "4305399325", "setting": "first-2-pick-and-tell", "worker_id": "4SC5TPKL1L9T6NG", "story_id": "42330", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one shop displayed all kinds of brightly colored wraps .", "storylet_id": "211653"}], [{"original_text": "When the day was over we were SO tired and happy to see our lovely room.", "album_id": "72157623286602552", "photo_flickr_id": "4306140314", "setting": "first-2-pick-and-tell", "worker_id": "4SC5TPKL1L9T6NG", "story_id": "42330", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the day was over we were so tired and happy to see our lovely room .", "storylet_id": "211654"}], [{"original_text": "Josie was ready for the trip to the beach.", "album_id": "72157623286602552", "photo_flickr_id": "4305395951", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42331", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was ready for the trip to the beach .", "storylet_id": "211655"}], [{"original_text": "He jumped in his luxury car.", "album_id": "72157623286602552", "photo_flickr_id": "4305396153", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42331", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he jumped in his luxury car .", "storylet_id": "211656"}], [{"original_text": "He made it to his luxury hotel.", "album_id": "72157623286602552", "photo_flickr_id": "4306140314", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42331", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he made it to his luxury hotel .", "storylet_id": "211657"}], [{"original_text": "And he looked out his luxury window.", "album_id": "72157623286602552", "photo_flickr_id": "4305396569", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42331", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and he looked out his luxury window .", "storylet_id": "211658"}], [{"original_text": "However, the beach he planned to go to, was not luxurious at all.", "album_id": "72157623286602552", "photo_flickr_id": "4306143694", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42331", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , the beach he planned to go to , was not luxurious at all .", "storylet_id": "211659"}], [{"original_text": "I went down to the pier last week to buy a new car.", "album_id": "72157623286602552", "photo_flickr_id": "4305395951", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42332", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went down to the pier last week to buy a new car .", "storylet_id": "211660"}], [{"original_text": "It was pretty expensive.", "album_id": "72157623286602552", "photo_flickr_id": "4305396153", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42332", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was pretty expensive .", "storylet_id": "211661"}], [{"original_text": "My hotel was also pretty expensive.", "album_id": "72157623286602552", "photo_flickr_id": "4306140314", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42332", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my hotel was also pretty expensive .", "storylet_id": "211662"}], [{"original_text": "It was in downtown.", "album_id": "72157623286602552", "photo_flickr_id": "4305396569", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42332", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was in downtown .", "storylet_id": "211663"}], [{"original_text": "We weren't allowed to swim at the beach today.", "album_id": "72157623286602552", "photo_flickr_id": "4306143694", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42332", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were n't allowed to swim at the beach today .", "storylet_id": "211664"}], [{"original_text": "We decided to have a beach get-a-way.", "album_id": "72157623286602552", "photo_flickr_id": "4306144594", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "42333", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to have a beach get-a-way .", "storylet_id": "211665"}], [{"original_text": "Mom was excited as we walked through.", "album_id": "72157623286602552", "photo_flickr_id": "4305399009", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "42333", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom was excited as we walked through .", "storylet_id": "211666"}], [{"original_text": "We visited a soap shop upon my mom's request.", "album_id": "72157623286602552", "photo_flickr_id": "4305398309", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "42333", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we visited a soap shop upon my mom 's request .", "storylet_id": "211667"}], [{"original_text": "Everything was so beautiful", "album_id": "72157623286602552", "photo_flickr_id": "4305399325", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "42333", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everything was so beautiful", "storylet_id": "211668"}], [{"original_text": "And out hotel room was very inviting", "album_id": "72157623286602552", "photo_flickr_id": "4306140314", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "42333", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and out hotel room was very inviting", "storylet_id": "211669"}], [{"original_text": "The motel was vast.", "album_id": "72157623286602552", "photo_flickr_id": "4306144594", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42334", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the motel was vast .", "storylet_id": "211670"}], [{"original_text": "Guests went shopping often. ", "album_id": "72157623286602552", "photo_flickr_id": "4305399009", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42334", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "guests went shopping often .", "storylet_id": "211671"}], [{"original_text": "Ye Olde Soap Shop was a favorite. ", "album_id": "72157623286602552", "photo_flickr_id": "4305398309", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42334", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "organization organization organization organization was a favorite .", "storylet_id": "211672"}], [{"original_text": "As were the numerous plants for sale. ", "album_id": "72157623286602552", "photo_flickr_id": "4305399325", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42334", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as were the numerous plants for sale .", "storylet_id": "211673"}], [{"original_text": "After a long day of shopping guest could look forward to relaxing in their rooms. ", "album_id": "72157623286602552", "photo_flickr_id": "4306140314", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42334", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long day of shopping guest could look forward to relaxing in their rooms .", "storylet_id": "211674"}], [{"original_text": "Our family recently went to the beach for vacation.", "album_id": "264258", "photo_flickr_id": "10816180", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42335", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family recently went to the beach for vacation .", "storylet_id": "211675"}], [{"original_text": "We started the mornings with homemade, heart-shaped waffles. Yum!", "album_id": "264258", "photo_flickr_id": "10706644", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42335", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started the mornings with homemade , heart-shaped waffles . yum !", "storylet_id": "211676"}], [{"original_text": "Then we went down to the beach and played some games,", "album_id": "264258", "photo_flickr_id": "10816408", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42335", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we went down to the beach and played some games ,", "storylet_id": "211677"}], [{"original_text": "followed by a hike along a nature trail.", "album_id": "264258", "photo_flickr_id": "10816108", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42335", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "followed by a hike along a nature trail .", "storylet_id": "211678"}], [{"original_text": "Afterward, we cooled off by wading in the sea.", "album_id": "264258", "photo_flickr_id": "10816574", "setting": "first-2-pick-and-tell", "worker_id": "SW8C66BM2W3D4JL", "story_id": "42335", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward , we cooled off by wading in the sea .", "storylet_id": "211679"}], [{"original_text": "Another great field trip to the beach.", "album_id": "264258", "photo_flickr_id": "10816644", "setting": "first-2-pick-and-tell", "worker_id": "C40D0IO3BPVL8WB", "story_id": "42336", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "another great field trip to the beach .", "storylet_id": "211680"}], [{"original_text": "The students weren't super excited at first, but we knew they would be soon.", "album_id": "264258", "photo_flickr_id": "10816180", "setting": "first-2-pick-and-tell", "worker_id": "C40D0IO3BPVL8WB", "story_id": "42336", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the students were n't super excited at first , but we knew they would be soon .", "storylet_id": "211681"}], [{"original_text": "Walking carefully into the tide pools, watching for sharp shells or living creatures.", "album_id": "264258", "photo_flickr_id": "10816574", "setting": "first-2-pick-and-tell", "worker_id": "C40D0IO3BPVL8WB", "story_id": "42336", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "walking carefully into the tide pools , watching for sharp shells or living creatures .", "storylet_id": "211682"}], [{"original_text": "One student found something just under the surface.", "album_id": "264258", "photo_flickr_id": "11290443", "setting": "first-2-pick-and-tell", "worker_id": "C40D0IO3BPVL8WB", "story_id": "42336", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one student found something just under the surface .", "storylet_id": "211683"}], [{"original_text": "Observing more carefully to find out exactly what's hiding under the sand.", "album_id": "264258", "photo_flickr_id": "11290470", "setting": "first-2-pick-and-tell", "worker_id": "C40D0IO3BPVL8WB", "story_id": "42336", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "observing more carefully to find out exactly what 's hiding under the sand .", "storylet_id": "211684"}], [{"original_text": "We were all at the beach getting ready for a lovely day of fun!", "album_id": "264258", "photo_flickr_id": "10816180", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "42337", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were all at the beach getting ready for a lovely day of fun !", "storylet_id": "211685"}], [{"original_text": "First, we made beautiful heart shaped waffles.", "album_id": "264258", "photo_flickr_id": "10706644", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "42337", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first , we made beautiful heart shaped waffles .", "storylet_id": "211686"}], [{"original_text": "Jim threw a rock into the water because he was so hungry for waffles.", "album_id": "264258", "photo_flickr_id": "10816408", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "42337", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] threw a rock into the water because he was so hungry for waffles .", "storylet_id": "211687"}], [{"original_text": "He was tired of waiting, so he asked all of us if we wanted to go into the water.", "album_id": "264258", "photo_flickr_id": "10816108", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "42337", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was tired of waiting , so he asked all of us if we wanted to go into the water .", "storylet_id": "211688"}], [{"original_text": "We all took our shoes off, and then we waded into the water until the waffles were ready to eat.", "album_id": "264258", "photo_flickr_id": "10816574", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "42337", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all took our shoes off , and then we waded into the water until the waffles were ready to eat .", "storylet_id": "211689"}], [{"original_text": "A day at the beach, a man and his 3 friends.", "album_id": "264258", "photo_flickr_id": "10816180", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42338", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a day at the beach , a man and his 3 friends .", "storylet_id": "211690"}], [{"original_text": "The waffles got a little burnt, in the new waffle pan. ", "album_id": "264258", "photo_flickr_id": "10706644", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42338", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the waffles got a little burnt , in the new waffle pan .", "storylet_id": "211691"}], [{"original_text": "The man skipped stones into the lake.", "album_id": "264258", "photo_flickr_id": "10816408", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42338", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man skipped stones into the lake .", "storylet_id": "211692"}], [{"original_text": "The sign said closed for ecological recovery.", "album_id": "264258", "photo_flickr_id": "10816108", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42338", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sign said closed for ecological recovery .", "storylet_id": "211693"}], [{"original_text": "Wading in the water looking for crawdads. ", "album_id": "264258", "photo_flickr_id": "10816574", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42338", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "wading in the water looking for crawdads .", "storylet_id": "211694"}], [{"original_text": "Some friends decided to take a trip to the water.", "album_id": "264258", "photo_flickr_id": "10816644", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "42339", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some friends decided to take a trip to the water .", "storylet_id": "211695"}], [{"original_text": "There were three girls in the group.", "album_id": "264258", "photo_flickr_id": "10816180", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "42339", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were three girls in the group .", "storylet_id": "211696"}], [{"original_text": "They walked along the edge of the water.", "album_id": "264258", "photo_flickr_id": "10816574", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "42339", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they walked along the edge of the water .", "storylet_id": "211697"}], [{"original_text": "They looked at objects and tried to find things in the water.", "album_id": "264258", "photo_flickr_id": "11290443", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "42339", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they looked at objects and tried to find things in the water .", "storylet_id": "211698"}], [{"original_text": "They picked up small objects they found.", "album_id": "264258", "photo_flickr_id": "11290470", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "42339", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they picked up small objects they found .", "storylet_id": "211699"}], [{"original_text": "I brought my roommate along to hike with us.", "album_id": "14100", "photo_flickr_id": "569010", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42340", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i brought my roommate along to hike with us .", "storylet_id": "211700"}], [{"original_text": "Along the trail, we found this lovely red flower.", "album_id": "14100", "photo_flickr_id": "569026", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42340", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "along the trail , we found this lovely red flower .", "storylet_id": "211701"}], [{"original_text": "In the cool water, I told my friend to take a picture of their feet.", "album_id": "14100", "photo_flickr_id": "569016", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42340", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in the cool water , i told my friend to take a picture of their feet .", "storylet_id": "211702"}], [{"original_text": "We used a bridge to get closer to the train that would take us home.", "album_id": "14100", "photo_flickr_id": "569014", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42340", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we used a bridge to get closer to the train that would take us home .", "storylet_id": "211703"}], [{"original_text": "When we found the tracks, we waited until the trail came near.", "album_id": "14100", "photo_flickr_id": "569031", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42340", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we found the tracks , we waited until the trail came near .", "storylet_id": "211704"}], [{"original_text": "Josh told me he saw a dead body and wanted to show me.", "album_id": "14100", "photo_flickr_id": "569010", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42341", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "josh told me he saw a dead body and wanted to show me .", "storylet_id": "211705"}], [{"original_text": "I got cold feet, but Josh insisted I follow him.", "album_id": "14100", "photo_flickr_id": "569016", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42341", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got cold feet , but josh insisted i follow him .", "storylet_id": "211706"}], [{"original_text": "He took me to some strange places. How far away was this body?", "album_id": "14100", "photo_flickr_id": "569020", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42341", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he took me to some strange places . how far away was this body ?", "storylet_id": "211707"}], [{"original_text": "he looked through these cracks to see if anyone was looking. But why?", "album_id": "14100", "photo_flickr_id": "569021", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42341", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he looked through these cracks to see if anyone was looking . but why ?", "storylet_id": "211708"}], [{"original_text": "We kept going down this track. He said \"We will see the body soon.\" Funny I think I hear the train coming.", "album_id": "14100", "photo_flickr_id": "569031", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42341", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we kept going down this track . he said `` we will see the body soon . '' funny i think i hear the train coming .", "storylet_id": "211709"}], [{"original_text": "My friend and I took a short road trip this weekend to see the scenery.", "album_id": "14100", "photo_flickr_id": "569010", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42342", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend and i took a short road trip this weekend to see the scenery .", "storylet_id": "211710"}], [{"original_text": "We found trees that had begun to change color and gorgeous leaves that had fallen.", "album_id": "14100", "photo_flickr_id": "569026", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42342", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we found trees that had begun to change color and gorgeous leaves that had fallen .", "storylet_id": "211711"}], [{"original_text": "I waded into a shallow stream and perched on a rock.", "album_id": "14100", "photo_flickr_id": "569016", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42342", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i waded into a shallow stream and perched on a rock .", "storylet_id": "211712"}], [{"original_text": "We saw a railroad bridge over a river.", "album_id": "14100", "photo_flickr_id": "569014", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42342", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw a railroad bridge over a river .", "storylet_id": "211713"}], [{"original_text": "We decided to follow the railroad for a few minutes, but turned back.", "album_id": "14100", "photo_flickr_id": "569031", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42342", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to follow the railroad for a few minutes , but turned back .", "storylet_id": "211714"}], [{"original_text": "Jon loved walking around his town's wooded areas.", "album_id": "14100", "photo_flickr_id": "569010", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42343", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] loved walking around his town 's wooded areas .", "storylet_id": "211715"}], [{"original_text": "Since it was autumn the leaves were turning red and orange. ", "album_id": "14100", "photo_flickr_id": "569026", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42343", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "since it was autumn the leaves were turning red and orange .", "storylet_id": "211716"}], [{"original_text": "Putting his feet on the rocks helped connect him to the earth.", "album_id": "14100", "photo_flickr_id": "569016", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42343", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "putting his feet on the rocks helped connect him to the earth .", "storylet_id": "211717"}], [{"original_text": "The railroad company have a bridge over the river that he used to see as a kid.", "album_id": "14100", "photo_flickr_id": "569014", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42343", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the railroad company have a bridge over the river that he used to see as a kid .", "storylet_id": "211718"}], [{"original_text": "He wondered how far away from his hometown he could get if he just walked along the traintracks. He wanted to get far away.", "album_id": "14100", "photo_flickr_id": "569031", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42343", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he wondered how far away from his hometown he could get if he just walked along the traintracks . he wanted to get far away .", "storylet_id": "211719"}], [{"original_text": "I decided to go to the park with my friend.", "album_id": "14100", "photo_flickr_id": "569010", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "42344", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to go to the park with my friend .", "storylet_id": "211720"}], [{"original_text": "We walked on the slippery rocks.", "album_id": "14100", "photo_flickr_id": "569016", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "42344", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we walked on the slippery rocks .", "storylet_id": "211721"}], [{"original_text": "And enjoyed the views.", "album_id": "14100", "photo_flickr_id": "569020", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "42344", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and enjoyed the views .", "storylet_id": "211722"}], [{"original_text": "But we had to make sure not to step on any glass!", "album_id": "14100", "photo_flickr_id": "569021", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "42344", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but we had to make sure not to step on any glass !", "storylet_id": "211723"}], [{"original_text": "We followed the train tracks home.", "album_id": "14100", "photo_flickr_id": "569031", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "42344", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we followed the train tracks home .", "storylet_id": "211724"}], [{"original_text": "I was hanging out with my friends and we decided to play a game called \"ears for all\"", "album_id": "502422", "photo_flickr_id": "21608837", "setting": "first-2-pick-and-tell", "worker_id": "SGCR2HZ4Y4PRJMG", "story_id": "42345", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was hanging out with my friends and we decided to play a game called `` ears for all ''", "storylet_id": "211725"}], [{"original_text": "Here is Brett wearing the Leopard ears. He looks purrfect. ", "album_id": "502422", "photo_flickr_id": "21608588", "setting": "first-2-pick-and-tell", "worker_id": "SGCR2HZ4Y4PRJMG", "story_id": "42345", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is [male] wearing the leopard ears . he looks purrfect .", "storylet_id": "211726"}], [{"original_text": "This is Cindy. She is a natural born feline. ", "album_id": "502422", "photo_flickr_id": "21608910", "setting": "first-2-pick-and-tell", "worker_id": "SGCR2HZ4Y4PRJMG", "story_id": "42345", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is [female] . she is a natural born feline .", "storylet_id": "211727"}], [{"original_text": "Steve and Kimmy were waiting for their turn.", "album_id": "502422", "photo_flickr_id": "21609004", "setting": "first-2-pick-and-tell", "worker_id": "SGCR2HZ4Y4PRJMG", "story_id": "42345", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and kimmy were waiting for their turn .", "storylet_id": "211728"}], [{"original_text": "When Steve got his turn he took the ears outside to show them off.", "album_id": "502422", "photo_flickr_id": "21609233", "setting": "first-2-pick-and-tell", "worker_id": "SGCR2HZ4Y4PRJMG", "story_id": "42345", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when [male] got his turn he took the ears outside to show them off .", "storylet_id": "211729"}], [{"original_text": "Our uncle gave us a strange drink.", "album_id": "502422", "photo_flickr_id": "21608735", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42346", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our uncle gave us a strange drink .", "storylet_id": "211730"}], [{"original_text": "All of us grew strange leopard ears on our heads.", "album_id": "502422", "photo_flickr_id": "21608588", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42346", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of us grew strange leopard ears on our heads .", "storylet_id": "211731"}], [{"original_text": "We couldn't take them off, no matter how hard we tried.", "album_id": "502422", "photo_flickr_id": "21608910", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42346", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we could n't take them off , no matter how hard we tried .", "storylet_id": "211732"}], [{"original_text": "It was embarrassing in public.", "album_id": "502422", "photo_flickr_id": "21609233", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42346", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was embarrassing in public .", "storylet_id": "211733"}], [{"original_text": "We decided to wear hats to cover out ears.", "album_id": "502422", "photo_flickr_id": "21608375", "setting": "first-2-pick-and-tell", "worker_id": "O4EEXJR5OMSTU8V", "story_id": "42346", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to wear hats to cover out ears .", "storylet_id": "211734"}], [{"original_text": "We were having a wonderful Christmas party at our house.", "album_id": "502422", "photo_flickr_id": "21608837", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "42347", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were having a wonderful christmas party at our house .", "storylet_id": "211735"}], [{"original_text": "Alex was wearing some sexy leopard print ears as he opened his gag gift.", "album_id": "502422", "photo_flickr_id": "21608588", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "42347", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was wearing some sexy leopard print ears as he opened his gag gift .", "storylet_id": "211736"}], [{"original_text": "Shelly, lovely as ever, also wore leopard printed ears as she posed for this photo.", "album_id": "502422", "photo_flickr_id": "21608910", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "42347", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] , lovely as ever , also wore leopard printed ears as she posed for this photo .", "storylet_id": "211737"}], [{"original_text": "While playing cards, we stopped to take a sentimental photo with Jim.", "album_id": "502422", "photo_flickr_id": "21609004", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "42347", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while playing cards , we stopped to take a sentimental photo with [male] .", "storylet_id": "211738"}], [{"original_text": "I think we had a little too much to drink because Jack decided to wear the leopard print ears, and he pretended to be a leopard as he licked his \"paw\".", "album_id": "502422", "photo_flickr_id": "21609233", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "42347", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think we had a little too much to drink because [male] decided to wear the leopard print ears , and he pretended to be a leopard as he licked his `` paw '' .", "storylet_id": "211739"}], [{"original_text": "A man is holding up a bottle.", "album_id": "502422", "photo_flickr_id": "21608735", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42348", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a man is holding up a bottle .", "storylet_id": "211740"}], [{"original_text": "A man is wearing green and blue.", "album_id": "502422", "photo_flickr_id": "21608588", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42348", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a man is wearing green and blue .", "storylet_id": "211741"}], [{"original_text": "A woman is wearing cat ears.", "album_id": "502422", "photo_flickr_id": "21608910", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42348", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a woman is wearing cat ears .", "storylet_id": "211742"}], [{"original_text": "This is a man wearing blue.", "album_id": "502422", "photo_flickr_id": "21609233", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42348", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a man wearing blue .", "storylet_id": "211743"}], [{"original_text": "People are wearing santa hats.", "album_id": "502422", "photo_flickr_id": "21608375", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42348", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people are wearing santa hats .", "storylet_id": "211744"}], [{"original_text": "Family game night always starts out pretty mellow.", "album_id": "502422", "photo_flickr_id": "21608837", "setting": "last-3-pick-old-and-tell", "worker_id": "8ZHEXBLWXMYKZAK", "story_id": "42349", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family game night always starts out pretty mellow .", "storylet_id": "211745"}], [{"original_text": "Until Uncle Rick brings over something silly.", "album_id": "502422", "photo_flickr_id": "21608588", "setting": "last-3-pick-old-and-tell", "worker_id": "8ZHEXBLWXMYKZAK", "story_id": "42349", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "until uncle [male] brings over something silly .", "storylet_id": "211746"}], [{"original_text": "Cousin June isn't very amused.", "album_id": "502422", "photo_flickr_id": "21608910", "setting": "last-3-pick-old-and-tell", "worker_id": "8ZHEXBLWXMYKZAK", "story_id": "42349", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "cousin [female] is n't very amused .", "storylet_id": "211747"}], [{"original_text": "Aunt June, Uncle John and their daughter Sam.", "album_id": "502422", "photo_flickr_id": "21609004", "setting": "last-3-pick-old-and-tell", "worker_id": "8ZHEXBLWXMYKZAK", "story_id": "42349", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "aunt [female] , uncle [male] and their daughter [male] .", "storylet_id": "211748"}], [{"original_text": "Cousin Mike always has some crazy story to tell us.", "album_id": "502422", "photo_flickr_id": "21609233", "setting": "last-3-pick-old-and-tell", "worker_id": "8ZHEXBLWXMYKZAK", "story_id": "42349", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "cousin [male] always has some crazy story to tell us .", "storylet_id": "211749"}], [{"original_text": "We started our day off at the beach.We wanted to let the kids run and play and have a good time.", "album_id": "504451", "photo_flickr_id": "21709906", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "42350", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started our day off at the beach.we wanted to let the kids run and play and have a good time .", "storylet_id": "211750"}], [{"original_text": "Mary was dead set on digging the largest hole she could ever make.", "album_id": "504451", "photo_flickr_id": "21710181", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "42350", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] was dead set on digging the largest hole she could ever make .", "storylet_id": "211751"}], [{"original_text": "Mommy and the girls on the carousel ride.there were so many ride,but they loved this the best.", "album_id": "504451", "photo_flickr_id": "21710839", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "42350", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mommy and the girls on the carousel ride.there were so many ride , but they loved this the best .", "storylet_id": "211752"}], [{"original_text": "Daddy why aren't you in the picture?Well I had to kindly ask another person next to me to take the picture.", "album_id": "504451", "photo_flickr_id": "21710916", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "42350", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "daddy why are n't you in the picture ? well i had to kindly ask another person next to me to take the picture .", "storylet_id": "211753"}], [{"original_text": "When they saw this boat ride,I never thought I was going to get them out of it.Can't wait till it warms up so they can play in the water back at the beach.", "album_id": "504451", "photo_flickr_id": "21710978", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "42350", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when they saw this boat ride , i never thought i was going to get them out of it.ca n't wait till it warms up so they can play in the water back at the beach .", "storylet_id": "211754"}], [{"original_text": "We took our family to the beach today.", "album_id": "504451", "photo_flickr_id": "21710045", "setting": "first-2-pick-and-tell", "worker_id": "VAIIS80K1047AV4", "story_id": "42351", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took our family to the beach today .", "storylet_id": "211755"}], [{"original_text": "The beach was blocked off and that limited the places we were able to go.", "album_id": "504451", "photo_flickr_id": "21710456", "setting": "first-2-pick-and-tell", "worker_id": "VAIIS80K1047AV4", "story_id": "42351", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the beach was blocked off and that limited the places we were able to go .", "storylet_id": "211756"}], [{"original_text": "She was picking up a shell in the sand.", "album_id": "504451", "photo_flickr_id": "21711782", "setting": "first-2-pick-and-tell", "worker_id": "VAIIS80K1047AV4", "story_id": "42351", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was picking up a shell in the sand .", "storylet_id": "211757"}], [{"original_text": "Our youngest baby enjoyed herself.", "album_id": "504451", "photo_flickr_id": "21711926", "setting": "first-2-pick-and-tell", "worker_id": "VAIIS80K1047AV4", "story_id": "42351", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our youngest baby enjoyed herself .", "storylet_id": "211758"}], [{"original_text": "We ended up going on the rides.", "album_id": "504451", "photo_flickr_id": "21710916", "setting": "first-2-pick-and-tell", "worker_id": "VAIIS80K1047AV4", "story_id": "42351", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended up going on the rides .", "storylet_id": "211759"}], [{"original_text": "Smith family loves the sea and beaches. ", "album_id": "504451", "photo_flickr_id": "21709906", "setting": "last-3-pick-old-and-tell", "worker_id": "UVYNJHEUTKWXWUX", "story_id": "42352", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "smith family loves the sea and beaches .", "storylet_id": "211760"}], [{"original_text": "Maggie, their youngest daughter loves playing on the beach. ", "album_id": "504451", "photo_flickr_id": "21710181", "setting": "last-3-pick-old-and-tell", "worker_id": "UVYNJHEUTKWXWUX", "story_id": "42352", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] , their youngest daughter loves playing on the beach .", "storylet_id": "211761"}], [{"original_text": "The family recently visited a country fair. ", "album_id": "504451", "photo_flickr_id": "21710839", "setting": "last-3-pick-old-and-tell", "worker_id": "UVYNJHEUTKWXWUX", "story_id": "42352", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family recently visited a country fair .", "storylet_id": "211762"}], [{"original_text": "The whole family enjoyed the marry go round ride.", "album_id": "504451", "photo_flickr_id": "21710916", "setting": "last-3-pick-old-and-tell", "worker_id": "UVYNJHEUTKWXWUX", "story_id": "42352", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole family enjoyed the marry go round ride .", "storylet_id": "211763"}], [{"original_text": "Their two daughters Heather and Maggie were very excited on a boat ride. ", "album_id": "504451", "photo_flickr_id": "21710978", "setting": "last-3-pick-old-and-tell", "worker_id": "UVYNJHEUTKWXWUX", "story_id": "42352", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their two daughters [female] and [female] were very excited on a boat ride .", "storylet_id": "211764"}], [{"original_text": "We took a trip to the beach! Here's our little sister getting a good dig in.", "album_id": "504451", "photo_flickr_id": "21710045", "setting": "last-3-pick-old-and-tell", "worker_id": "USHM51A5CJ93P0R", "story_id": "42353", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to the beach ! here 's our little sister getting a good dig in .", "storylet_id": "211765"}], [{"original_text": "Here's the view of the hotel and local carnival.", "album_id": "504451", "photo_flickr_id": "21710456", "setting": "last-3-pick-old-and-tell", "worker_id": "USHM51A5CJ93P0R", "story_id": "42353", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's the view of the hotel and local carnival .", "storylet_id": "211766"}], [{"original_text": "We hit the water, reluctantly, the water was cool, so we didn't get too much swimming in.", "album_id": "504451", "photo_flickr_id": "21711782", "setting": "last-3-pick-old-and-tell", "worker_id": "USHM51A5CJ93P0R", "story_id": "42353", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we hit the water , reluctantly , the water was cool , so we did n't get too much swimming in .", "storylet_id": "211767"}], [{"original_text": "We weren't the only ones to hit the beach, but I think the crawling through the sand was dramatic, unless it was for pretend.", "album_id": "504451", "photo_flickr_id": "21711926", "setting": "last-3-pick-old-and-tell", "worker_id": "USHM51A5CJ93P0R", "story_id": "42353", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were n't the only ones to hit the beach , but i think the crawling through the sand was dramatic , unless it was for pretend .", "storylet_id": "211768"}], [{"original_text": "We hit the carnival for a while too and enjoyed the carousel!", "album_id": "504451", "photo_flickr_id": "21710916", "setting": "last-3-pick-old-and-tell", "worker_id": "USHM51A5CJ93P0R", "story_id": "42353", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we hit the carnival for a while too and enjoyed the carousel !", "storylet_id": "211769"}], [{"original_text": "The family started their weekend get away at the beach where they played in the water. ", "album_id": "504451", "photo_flickr_id": "21709906", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8WJLIOA12HL9H", "story_id": "42354", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family started their weekend get away at the beach where they played in the water .", "storylet_id": "211770"}], [{"original_text": "Even the baby had fun in the cool morning air.", "album_id": "504451", "photo_flickr_id": "21710181", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8WJLIOA12HL9H", "story_id": "42354", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the baby had fun in the cool morning air .", "storylet_id": "211771"}], [{"original_text": "After lunch they all went to the amusement park where dad took pictures of mom and the girls", "album_id": "504451", "photo_flickr_id": "21710839", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8WJLIOA12HL9H", "story_id": "42354", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after lunch they all went to the amusement park where dad took pictures of mom and the girls", "storylet_id": "211772"}], [{"original_text": "They found someone to take a family picture while enjoy the merry-go-round. ", "album_id": "504451", "photo_flickr_id": "21710916", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8WJLIOA12HL9H", "story_id": "42354", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they found someone to take a family picture while enjoy the merry-go-round .", "storylet_id": "211773"}], [{"original_text": "The best part of the day was getting back into the water on their own boat. ", "album_id": "504451", "photo_flickr_id": "21710978", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8WJLIOA12HL9H", "story_id": "42354", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part of the day was getting back into the water on their own boat .", "storylet_id": "211774"}], [{"original_text": "The took the kids out for a drive in the desert.", "album_id": "72057594110710155", "photo_flickr_id": "21740162", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42355", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the took the kids out for a drive in the desert .", "storylet_id": "211775"}], [{"original_text": "They stopped at convenience store to get snacks and sodas.", "album_id": "72057594110710155", "photo_flickr_id": "21740294", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42355", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they stopped at convenience store to get snacks and sodas .", "storylet_id": "211776"}], [{"original_text": "On the road they saw a small amusement park.", "album_id": "72057594110710155", "photo_flickr_id": "21740359", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42355", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on the road they saw a small amusement park .", "storylet_id": "211777"}], [{"original_text": "They decided to stop and check it out.", "album_id": "72057594110710155", "photo_flickr_id": "21740398", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42355", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they decided to stop and check it out .", "storylet_id": "211778"}], [{"original_text": "They even found carnival rides in the back.", "album_id": "72057594110710155", "photo_flickr_id": "21740430", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42355", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even found carnival rides in the back .", "storylet_id": "211779"}], [{"original_text": "The flowers grew at random along the side of the road and they were lovely but she knew that was the only thing pretty about this town. ", "album_id": "72057594110710155", "photo_flickr_id": "21740492", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42356", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the flowers grew at random along the side of the road and they were lovely but she knew that was the only thing pretty about this town .", "storylet_id": "211780"}], [{"original_text": "It was a dirty, ugly place that was best avoided. ", "album_id": "72057594110710155", "photo_flickr_id": "21740294", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42356", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a dirty , ugly place that was best avoided .", "storylet_id": "211781"}], [{"original_text": "Cheap murals were on the side of a store advertising bikinis and shorts although there wasn't a beach close by.", "album_id": "72057594110710155", "photo_flickr_id": "21740325", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42356", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "cheap murals were on the side of a store advertising bikinis and shorts although there was n't a beach close by .", "storylet_id": "211782"}], [{"original_text": "It was rumored that one store which simply advertised \"Amusements,\" was in reality a brothel. ", "album_id": "72057594110710155", "photo_flickr_id": "21740398", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42356", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was rumored that one store which simply advertised `` amusements , '' was in reality a brothel .", "storylet_id": "211783"}], [{"original_text": "She didn't dare stop and elected to drive on the next town to get gas. ", "album_id": "72057594110710155", "photo_flickr_id": "21740430", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42356", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she did n't dare stop and elected to drive on the next town to get gas .", "storylet_id": "211784"}], [{"original_text": "In a small down, going down a long dirt road.", "album_id": "72057594110710155", "photo_flickr_id": "21740162", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42357", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in a small down , going down a long dirt road .", "storylet_id": "211785"}], [{"original_text": "At the beach there is a wall with writing on it.", "album_id": "72057594110710155", "photo_flickr_id": "21740294", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42357", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at the beach there is a wall with writing on it .", "storylet_id": "211786"}], [{"original_text": "A red roofed building called sale city looks like a cool place.", "album_id": "72057594110710155", "photo_flickr_id": "21740359", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42357", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a red roofed building called sale city looks like a cool place .", "storylet_id": "211787"}], [{"original_text": "An inside amusement park always is a way to have fun.", "album_id": "72057594110710155", "photo_flickr_id": "21740398", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42357", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an inside amusement park always is a way to have fun .", "storylet_id": "211788"}], [{"original_text": "This amusement park will be opened for the rest of the summer.", "album_id": "72057594110710155", "photo_flickr_id": "21740430", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42357", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this amusement park will be opened for the rest of the summer .", "storylet_id": "211789"}], [{"original_text": "This is the entrance to an old abandoned amusement park.", "album_id": "72057594110710155", "photo_flickr_id": "21740492", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42358", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the entrance to an old abandoned amusement park .", "storylet_id": "211790"}], [{"original_text": "Our family decided to stop and explore all the different buildings.", "album_id": "72057594110710155", "photo_flickr_id": "21740294", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42358", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our family decided to stop and explore all the different buildings .", "storylet_id": "211791"}], [{"original_text": "This is an old building where they sold concessions and bathing suits.", "album_id": "72057594110710155", "photo_flickr_id": "21740325", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42358", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is an old building where they sold concessions and bathing suits .", "storylet_id": "211792"}], [{"original_text": "This is the old building where a lot of the games were played.", "album_id": "72057594110710155", "photo_flickr_id": "21740398", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42358", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the old building where a lot of the games were played .", "storylet_id": "211793"}], [{"original_text": "As we drive out we pass by the old convenience store. What a fun place!", "album_id": "72057594110710155", "photo_flickr_id": "21740430", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42358", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as we drive out we pass by the old convenience store . what a fun place !", "storylet_id": "211794"}], [{"original_text": "Kids are wandering around a beach.", "album_id": "72057594110710155", "photo_flickr_id": "21740492", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "42359", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "kids are wandering around a beach .", "storylet_id": "211795"}], [{"original_text": "They stop to play in the sand.", "album_id": "72057594110710155", "photo_flickr_id": "21740294", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "42359", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they stop to play in the sand .", "storylet_id": "211796"}], [{"original_text": "They get hungry and stop for a snack.", "album_id": "72057594110710155", "photo_flickr_id": "21740325", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "42359", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they get hungry and stop for a snack .", "storylet_id": "211797"}], [{"original_text": "But the door is closed.", "album_id": "72057594110710155", "photo_flickr_id": "21740398", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "42359", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but the door is closed .", "storylet_id": "211798"}], [{"original_text": "The store creeps them out with all the eyes.", "album_id": "72057594110710155", "photo_flickr_id": "21740430", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "42359", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the store creeps them out with all the eyes .", "storylet_id": "211799"}], [{"original_text": "He waited patiently at the fountain for Grandma. ", "album_id": "506402", "photo_flickr_id": "21815427", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42360", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he waited patiently at the fountain for grandma .", "storylet_id": "211800"}], [{"original_text": "He was a good grandson by all accounts. ", "album_id": "506402", "photo_flickr_id": "21893036", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42360", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was a good grandson by all accounts .", "storylet_id": "211801"}], [{"original_text": "Each week he would go get his grandma and take her where ever she wanted to go. ", "album_id": "506402", "photo_flickr_id": "21810649", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42360", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each week he would go get his grandma and take her where ever she wanted to go .", "storylet_id": "211802"}], [{"original_text": "Sometimes he picked her up at home in his old SUV since Grandma couldn't walk very far anymore. ", "album_id": "506402", "photo_flickr_id": "21810430", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42360", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes he picked her up at home in his old suv since grandma could n't walk very far anymore .", "storylet_id": "211803"}], [{"original_text": "Other times he would push her in her wheel chair because he remembered all the walks she use to take him on when he was just a boy. ", "album_id": "506402", "photo_flickr_id": "21810272", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42360", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "other times he would push her in her wheel chair because he remembered all the walks she use to take him on when he was just a boy .", "storylet_id": "211804"}], [{"original_text": "The son pushed his mom on their outing that day.", "album_id": "506402", "photo_flickr_id": "21810719", "setting": "first-2-pick-and-tell", "worker_id": "MEXXWO5H5CBX1M9", "story_id": "42361", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the son pushed his mom on their outing that day .", "storylet_id": "211805"}], [{"original_text": "They took some time to relax together and chat about old times.", "album_id": "506402", "photo_flickr_id": "21810366", "setting": "first-2-pick-and-tell", "worker_id": "MEXXWO5H5CBX1M9", "story_id": "42361", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took some time to relax together and chat about old times .", "storylet_id": "211806"}], [{"original_text": "They visited many museums together and enjoyed their time.", "album_id": "506402", "photo_flickr_id": "21810110", "setting": "first-2-pick-and-tell", "worker_id": "MEXXWO5H5CBX1M9", "story_id": "42361", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they visited many museums together and enjoyed their time .", "storylet_id": "211807"}], [{"original_text": "The best time was midday at the lake with the mountains on the horizon.", "album_id": "506402", "photo_flickr_id": "21809744", "setting": "first-2-pick-and-tell", "worker_id": "MEXXWO5H5CBX1M9", "story_id": "42361", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the best time was midday at the lake with the mountains on the horizon .", "storylet_id": "211808"}], [{"original_text": "The visited old historic bridges with a lot of history.", "album_id": "506402", "photo_flickr_id": "21809667", "setting": "first-2-pick-and-tell", "worker_id": "MEXXWO5H5CBX1M9", "story_id": "42361", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the visited old historic bridges with a lot of history .", "storylet_id": "211809"}], [{"original_text": "He admired the lion sculpture. ", "album_id": "506402", "photo_flickr_id": "21815427", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42362", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he admired the lion sculpture .", "storylet_id": "211810"}], [{"original_text": "He pushed his mother throughout their old neighborhood. ", "album_id": "506402", "photo_flickr_id": "21893036", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42362", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he pushed his mother throughout their old neighborhood .", "storylet_id": "211811"}], [{"original_text": "She was glad to be outside. ", "album_id": "506402", "photo_flickr_id": "21810649", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42362", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was glad to be outside .", "storylet_id": "211812"}], [{"original_text": "There's the nursery home where she stays now. ", "album_id": "506402", "photo_flickr_id": "21810430", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42362", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there 's the nursery home where she stays now .", "storylet_id": "211813"}], [{"original_text": "They glanced at the beautiful landscaping. ", "album_id": "506402", "photo_flickr_id": "21810272", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42362", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they glanced at the beautiful landscaping .", "storylet_id": "211814"}], [{"original_text": "I was at the park yesterday.", "album_id": "506402", "photo_flickr_id": "21815427", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42363", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was at the park yesterday .", "storylet_id": "211815"}], [{"original_text": "We left to go for a walk.", "album_id": "506402", "photo_flickr_id": "21893036", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42363", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we left to go for a walk .", "storylet_id": "211816"}], [{"original_text": "It was a beautiful sunny day.", "album_id": "506402", "photo_flickr_id": "21810649", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42363", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a beautiful sunny day .", "storylet_id": "211817"}], [{"original_text": "When we got back home we decided to keep walking.", "album_id": "506402", "photo_flickr_id": "21810430", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42363", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we got back home we decided to keep walking .", "storylet_id": "211818"}], [{"original_text": "There were beautiful flowers along the sidewalk.", "album_id": "506402", "photo_flickr_id": "21810272", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42363", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were beautiful flowers along the sidewalk .", "storylet_id": "211819"}], [{"original_text": "We started our walk near the fountain", "album_id": "506402", "photo_flickr_id": "21815427", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42364", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started our walk near the fountain", "storylet_id": "211820"}], [{"original_text": "I pushed grandma up the street from there to get her some fresh air.", "album_id": "506402", "photo_flickr_id": "21893036", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42364", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i pushed grandma up the street from there to get her some fresh air .", "storylet_id": "211821"}], [{"original_text": "She really enjoyed it and the sun wasn't to bad.", "album_id": "506402", "photo_flickr_id": "21810649", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42364", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she really enjoyed it and the sun was n't to bad .", "storylet_id": "211822"}], [{"original_text": "We went by the same old buildings i grew up around.", "album_id": "506402", "photo_flickr_id": "21810430", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42364", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went by the same old buildings i grew up around .", "storylet_id": "211823"}], [{"original_text": "Then passed the roses and back to the house.", "album_id": "506402", "photo_flickr_id": "21810272", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42364", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then passed the roses and back to the house .", "storylet_id": "211824"}], [{"original_text": "Dan liked cycling.", "album_id": "504084", "photo_flickr_id": "21709325", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42365", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] liked cycling .", "storylet_id": "211825"}], [{"original_text": "He goes on long bike rides.", "album_id": "504084", "photo_flickr_id": "21712182", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42365", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he goes on long bike rides .", "storylet_id": "211826"}], [{"original_text": "Sometimes his bike rides are 50 miles.", "album_id": "504084", "photo_flickr_id": "21716603", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42365", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sometimes his bike rides are 50 miles .", "storylet_id": "211827"}], [{"original_text": "He keeps track of his milage using this device.", "album_id": "504084", "photo_flickr_id": "21716604", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42365", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he keeps track of his milage using this device .", "storylet_id": "211828"}], [{"original_text": "Dan thinks cycling keeps him top physical and mental shape.", "album_id": "504084", "photo_flickr_id": "21721394", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42365", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] thinks cycling keeps him top physical and mental shape .", "storylet_id": "211829"}], [{"original_text": "i went for a ride on my bike", "album_id": "504084", "photo_flickr_id": "21707951", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42366", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a ride on my bike", "storylet_id": "211830"}], [{"original_text": "i rode 20 miles ", "album_id": "504084", "photo_flickr_id": "21712181", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42366", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i rode 20 miles", "storylet_id": "211831"}], [{"original_text": "I found myself in the middle of nowhere", "album_id": "504084", "photo_flickr_id": "21712182", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42366", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i found myself in the middle of nowhere", "storylet_id": "211832"}], [{"original_text": "there were ducks so that was cool", "album_id": "504084", "photo_flickr_id": "21716606", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42366", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were ducks so that was cool", "storylet_id": "211833"}], [{"original_text": "i couldn't get anyone to join me so i went alone", "album_id": "504084", "photo_flickr_id": "21726223", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42366", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i could n't get anyone to join me so i went alone", "storylet_id": "211834"}], [{"original_text": "Another beautiful day in the city. ", "album_id": "504084", "photo_flickr_id": "21709325", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "42367", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "another beautiful day in the city .", "storylet_id": "211835"}], [{"original_text": "Just taking my bike for a dip! ", "album_id": "504084", "photo_flickr_id": "21712182", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "42367", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "just taking my bike for a dip !", "storylet_id": "211836"}], [{"original_text": "Not now, I'm on my break, lol. ", "album_id": "504084", "photo_flickr_id": "21716603", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "42367", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not now , i 'm on my break , lol .", "storylet_id": "211837"}], [{"original_text": "Stats for the day, yep, I'm superman. ", "album_id": "504084", "photo_flickr_id": "21716604", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "42367", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "stats for the day , yep , i 'm superman .", "storylet_id": "211838"}], [{"original_text": "Off to save the day! I'm going to outrun the train. ", "album_id": "504084", "photo_flickr_id": "21721394", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "42367", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "off to save the day ! i 'm going to outrun the train .", "storylet_id": "211839"}], [{"original_text": "We arrived at our destination.", "album_id": "504084", "photo_flickr_id": "21707951", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "42368", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at our destination .", "storylet_id": "211840"}], [{"original_text": "We got here by riding our bikes.", "album_id": "504084", "photo_flickr_id": "21712181", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "42368", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got here by riding our bikes .", "storylet_id": "211841"}], [{"original_text": "A friend washes his bike in the water.", "album_id": "504084", "photo_flickr_id": "21712182", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "42368", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a friend washes his bike in the water .", "storylet_id": "211842"}], [{"original_text": "There was a family of ducks walking on the ground.", "album_id": "504084", "photo_flickr_id": "21716606", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "42368", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a family of ducks walking on the ground .", "storylet_id": "211843"}], [{"original_text": "Lastly, a bicyclist prepares for his journey back home.", "album_id": "504084", "photo_flickr_id": "21726223", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "42368", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , a bicyclist prepares for his journey back home .", "storylet_id": "211844"}], [{"original_text": "I took my bike downtown.", "album_id": "504084", "photo_flickr_id": "21709325", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42369", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took my bike downtown .", "storylet_id": "211845"}], [{"original_text": "It fell in the water during my lunch break.", "album_id": "504084", "photo_flickr_id": "21712182", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42369", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it fell in the water during my lunch break .", "storylet_id": "211846"}], [{"original_text": "I continued eating lunch.", "album_id": "504084", "photo_flickr_id": "21716603", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42369", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i continued eating lunch .", "storylet_id": "211847"}], [{"original_text": "The bike told me I needed to keep riding.", "album_id": "504084", "photo_flickr_id": "21716604", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42369", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bike told me i needed to keep riding .", "storylet_id": "211848"}], [{"original_text": "I finished at least forty more miles after that. ", "album_id": "504084", "photo_flickr_id": "21721394", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42369", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i finished at least forty more miles after that .", "storylet_id": "211849"}], [{"original_text": "Bike riding with my buddies ", "album_id": "641223", "photo_flickr_id": "28429170", "setting": "first-2-pick-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "42370", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "bike riding with my buddies", "storylet_id": "211850"}], [{"original_text": "we take on the challenge of the trechorous riding conditions", "album_id": "641223", "photo_flickr_id": "28429149", "setting": "first-2-pick-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "42370", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we take on the challenge of the trechorous riding conditions", "storylet_id": "211851"}], [{"original_text": "we see many accidents along the way ", "album_id": "641223", "photo_flickr_id": "28429082", "setting": "first-2-pick-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "42370", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we see many accidents along the way", "storylet_id": "211852"}], [{"original_text": "and stop at the local watering hole ", "album_id": "641223", "photo_flickr_id": "28429032", "setting": "first-2-pick-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "42370", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and stop at the local watering hole", "storylet_id": "211853"}], [{"original_text": "and enjoy some of their tasty treats ", "album_id": "641223", "photo_flickr_id": "28429205", "setting": "first-2-pick-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "42370", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and enjoy some of their tasty treats", "storylet_id": "211854"}], [{"original_text": "My friends and I going on a bike ride.", "album_id": "641223", "photo_flickr_id": "28429170", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "42371", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i going on a bike ride .", "storylet_id": "211855"}], [{"original_text": "We have to watch out for cars.", "album_id": "641223", "photo_flickr_id": "28429118", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "42371", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we have to watch out for cars .", "storylet_id": "211856"}], [{"original_text": "We saw this LED design and liked it.", "album_id": "641223", "photo_flickr_id": "28429106", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "42371", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw this led design and liked it .", "storylet_id": "211857"}], [{"original_text": "We wrecked into each other but we did not get hurt.", "album_id": "641223", "photo_flickr_id": "28429082", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "42371", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we wrecked into each other but we did not get hurt .", "storylet_id": "211858"}], [{"original_text": "We needed a good long break.", "album_id": "641223", "photo_flickr_id": "28429205", "setting": "first-2-pick-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "42371", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we needed a good long break .", "storylet_id": "211859"}], [{"original_text": "This group of friends met while biking.", "album_id": "641223", "photo_flickr_id": "28429170", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42372", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this group of friends met while biking .", "storylet_id": "211860"}], [{"original_text": "They thought biking was the coolest thing in the world,", "album_id": "641223", "photo_flickr_id": "28429149", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42372", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they thought biking was the coolest thing in the world ,", "storylet_id": "211861"}], [{"original_text": "even when you fall off.", "album_id": "641223", "photo_flickr_id": "28429082", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42372", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even when you fall off .", "storylet_id": "211862"}], [{"original_text": "They would go look at bikes together and find ones that they could fix up,", "album_id": "641223", "photo_flickr_id": "28429032", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42372", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they would go look at bikes together and find ones that they could fix up ,", "storylet_id": "211863"}], [{"original_text": "and then they would give those refurbished bikes to people on the street so that they too could know the joy of riding a bike. ", "album_id": "641223", "photo_flickr_id": "28429205", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42372", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then they would give those refurbished bikes to people on the street so that they too could know the joy of riding a bike .", "storylet_id": "211864"}], [{"original_text": "We got on our bikes to go see the town.", "album_id": "641223", "photo_flickr_id": "28429170", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42373", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got on our bikes to go see the town .", "storylet_id": "211865"}], [{"original_text": "It was busy with cars and people everywhere.", "album_id": "641223", "photo_flickr_id": "28429118", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42373", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was busy with cars and people everywhere .", "storylet_id": "211866"}], [{"original_text": "We saw the night life and had fun.", "album_id": "641223", "photo_flickr_id": "28429106", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42373", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw the night life and had fun .", "storylet_id": "211867"}], [{"original_text": "We got into a little crash the next morning but nothing serious.", "album_id": "641223", "photo_flickr_id": "28429082", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42373", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got into a little crash the next morning but nothing serious .", "storylet_id": "211868"}], [{"original_text": "For lunch that day, we parked the bikes and ate on some steps.", "album_id": "641223", "photo_flickr_id": "28429205", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42373", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for lunch that day , we parked the bikes and ate on some steps .", "storylet_id": "211869"}], [{"original_text": "A group of bicyclist went out for a long trip. ", "album_id": "641223", "photo_flickr_id": "28429170", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42374", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of bicyclist went out for a long trip .", "storylet_id": "211870"}], [{"original_text": "They got their helmets and was ready to go.", "album_id": "641223", "photo_flickr_id": "28429149", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42374", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got their helmets and was ready to go .", "storylet_id": "211871"}], [{"original_text": "When they got on the road they would stop for a rest.", "album_id": "641223", "photo_flickr_id": "28429082", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42374", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when they got on the road they would stop for a rest .", "storylet_id": "211872"}], [{"original_text": "Then when they got to the destination, they found a place to set their bikes.", "album_id": "641223", "photo_flickr_id": "28429032", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42374", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then when they got to the destination , they found a place to set their bikes .", "storylet_id": "211873"}], [{"original_text": "After that they found time to sit and relax.", "album_id": "641223", "photo_flickr_id": "28429205", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42374", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that they found time to sit and relax .", "storylet_id": "211874"}], [{"original_text": "Paul drove into the city to eat at his favorite cafe.", "album_id": "385029", "photo_flickr_id": "16026040", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42375", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] drove into the city to eat at his favorite cafe .", "storylet_id": "211875"}], [{"original_text": "He arrived a little after lunch time was over.", "album_id": "385029", "photo_flickr_id": "16025973", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42375", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he arrived a little after lunch time was over .", "storylet_id": "211876"}], [{"original_text": "The cafe still had a few tables open, so he picked his favorite one.", "album_id": "385029", "photo_flickr_id": "16026036", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42375", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cafe still had a few tables open , so he picked his favorite one .", "storylet_id": "211877"}], [{"original_text": "It looked over the sea, and the seagulls occasionally came to squawk at him.", "album_id": "385029", "photo_flickr_id": "16025977", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42375", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looked over the sea , and the seagulls occasionally came to squawk at him .", "storylet_id": "211878"}], [{"original_text": "Once his belly was full, Paul drove back out of the city that night.", "album_id": "385029", "photo_flickr_id": "16026056", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42375", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once his belly was full , [male] drove back out of the city that night .", "storylet_id": "211879"}], [{"original_text": "on Sunday morning, we head to the shores for a nice relaxing day.", "album_id": "385029", "photo_flickr_id": "16026040", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42376", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on sunday morning , we head to the shores for a nice relaxing day .", "storylet_id": "211880"}], [{"original_text": "I liked the fact that It was deserted on this beautiful Sunday morning.", "album_id": "385029", "photo_flickr_id": "16026051", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42376", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i liked the fact that it was deserted on this beautiful sunday morning .", "storylet_id": "211881"}], [{"original_text": "We stopped by for refreshments and admire the beautiful scenery.", "album_id": "385029", "photo_flickr_id": "16026036", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42376", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stopped by for refreshments and admire the beautiful scenery .", "storylet_id": "211882"}], [{"original_text": "As we were walking down, I noticed these beautiful seagulls, without them , it wouldn't feel at the shore", "album_id": "385029", "photo_flickr_id": "16026027", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42376", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as we were walking down , i noticed these beautiful seagulls , without them , it would n't feel at the shore", "storylet_id": "211883"}], [{"original_text": "When dinner approached , we decided to try this City island dinner with fresh seafood.", "album_id": "385029", "photo_flickr_id": "16025973", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42376", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when dinner approached , we decided to try this city island dinner with fresh seafood .", "storylet_id": "211884"}], [{"original_text": "We crossed the bridge heading over the water. ", "album_id": "385029", "photo_flickr_id": "16026040", "setting": "last-3-pick-old-and-tell", "worker_id": "6Y27Z2PP51VQH2G", "story_id": "42377", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we crossed the bridge heading over the water .", "storylet_id": "211885"}], [{"original_text": "To our right was a little diner. ", "album_id": "385029", "photo_flickr_id": "16025973", "setting": "last-3-pick-old-and-tell", "worker_id": "6Y27Z2PP51VQH2G", "story_id": "42377", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to our right was a little diner .", "storylet_id": "211886"}], [{"original_text": "We got out and walked among people sitting and enjoying the view of the water. ", "album_id": "385029", "photo_flickr_id": "16026036", "setting": "last-3-pick-old-and-tell", "worker_id": "6Y27Z2PP51VQH2G", "story_id": "42377", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got out and walked among people sitting and enjoying the view of the water .", "storylet_id": "211887"}], [{"original_text": "We stood and looked through the fence at the gulls flying and landing on the water. ", "album_id": "385029", "photo_flickr_id": "16025977", "setting": "last-3-pick-old-and-tell", "worker_id": "6Y27Z2PP51VQH2G", "story_id": "42377", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stood and looked through the fence at the gulls flying and landing on the water .", "storylet_id": "211888"}], [{"original_text": "Our day was complete so we headed home back over the bridge. ", "album_id": "385029", "photo_flickr_id": "16026056", "setting": "last-3-pick-old-and-tell", "worker_id": "6Y27Z2PP51VQH2G", "story_id": "42377", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our day was complete so we headed home back over the bridge .", "storylet_id": "211889"}], [{"original_text": "A day trip out to the island.", "album_id": "385029", "photo_flickr_id": "16026040", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42378", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a day trip out to the island .", "storylet_id": "211890"}], [{"original_text": "Lunch at the City Island Diner. Got indigestion, don't go.", "album_id": "385029", "photo_flickr_id": "16025973", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42378", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lunch at the location location location . got indigestion , do n't go .", "storylet_id": "211891"}], [{"original_text": "the harbor restaurant had better food. ", "album_id": "385029", "photo_flickr_id": "16026036", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42378", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the harbor restaurant had better food .", "storylet_id": "211892"}], [{"original_text": "But the water smelled,and the seagulls were pests ", "album_id": "385029", "photo_flickr_id": "16025977", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42378", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but the water smelled , and the seagulls were pests", "storylet_id": "211893"}], [{"original_text": "Next time we will go on a historical battlefield tour. ", "album_id": "385029", "photo_flickr_id": "16026056", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42378", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "next time we will go on a historical battlefield tour .", "storylet_id": "211894"}], [{"original_text": "the overpass is the entrance to the little town we are visiting for the day.", "album_id": "385029", "photo_flickr_id": "16026040", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42379", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the overpass is the entrance to the little town we are visiting for the day .", "storylet_id": "211895"}], [{"original_text": "Old Island is where we decided to eat our dinner", "album_id": "385029", "photo_flickr_id": "16025973", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42379", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "location location is where we decided to eat our dinner", "storylet_id": "211896"}], [{"original_text": "While eating we sat out on the deck, ", "album_id": "385029", "photo_flickr_id": "16026036", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42379", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "while eating we sat out on the deck ,", "storylet_id": "211897"}], [{"original_text": "and watched all the birds.", "album_id": "385029", "photo_flickr_id": "16025977", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42379", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and watched all the birds .", "storylet_id": "211898"}], [{"original_text": "We had a wonderful time in this little town that we visited for a day.", "album_id": "385029", "photo_flickr_id": "16026056", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "42379", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a wonderful time in this little town that we visited for a day .", "storylet_id": "211899"}], [{"original_text": "Walking along the beach brings me peace.", "album_id": "140462", "photo_flickr_id": "5575914", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42380", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walking along the beach brings me peace .", "storylet_id": "211900"}], [{"original_text": "The sunset makes me feel calm.", "album_id": "140462", "photo_flickr_id": "5575924", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42380", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sunset makes me feel calm .", "storylet_id": "211901"}], [{"original_text": "I sit and reflect on my life.", "album_id": "140462", "photo_flickr_id": "5575932", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42380", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i sit and reflect on my life .", "storylet_id": "211902"}], [{"original_text": "As the sun sets I know I am okay.", "album_id": "140462", "photo_flickr_id": "5575940", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42380", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the sun sets i know i am okay .", "storylet_id": "211903"}], [{"original_text": "I think back on the goodness of life.", "album_id": "140462", "photo_flickr_id": "5575956", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42380", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think back on the goodness of life .", "storylet_id": "211904"}], [{"original_text": "A man visited the beach and took a stroll to experience the location.", "album_id": "140462", "photo_flickr_id": "5575914", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42381", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a man visited the beach and took a stroll to experience the location .", "storylet_id": "211905"}], [{"original_text": "The clouds formed interesting formations around the sun.", "album_id": "140462", "photo_flickr_id": "5575924", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42381", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the clouds formed interesting formations around the sun .", "storylet_id": "211906"}], [{"original_text": "The man sat on a rock to enjoy the sunset.", "album_id": "140462", "photo_flickr_id": "5575932", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42381", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man sat on a rock to enjoy the sunset .", "storylet_id": "211907"}], [{"original_text": "The tidal pools formed by the rocks and sand were interesting.", "album_id": "140462", "photo_flickr_id": "5575953", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42381", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the tidal pools formed by the rocks and sand were interesting .", "storylet_id": "211908"}], [{"original_text": "The visit was enjoyable and ended as the sun set.", "album_id": "140462", "photo_flickr_id": "5575959", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42381", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the visit was enjoyable and ended as the sun set .", "storylet_id": "211909"}], [{"original_text": "My friend Dave and I visited the shoreline at sunset one day.", "album_id": "140462", "photo_flickr_id": "5575914", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42382", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend [male] and i visited the shoreline at sunset one day .", "storylet_id": "211910"}], [{"original_text": "We walked along the beach and looked out over the water.", "album_id": "140462", "photo_flickr_id": "5575924", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42382", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we walked along the beach and looked out over the water .", "storylet_id": "211911"}], [{"original_text": "Dave perched on a rock and contemplated the mysteries of life.", "album_id": "140462", "photo_flickr_id": "5575932", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42382", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] perched on a rock and contemplated the mysteries of life .", "storylet_id": "211912"}], [{"original_text": "The sun slowly went down over the water, casting gorgeous light over the sea.", "album_id": "140462", "photo_flickr_id": "5575940", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42382", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sun slowly went down over the water , casting gorgeous light over the sea .", "storylet_id": "211913"}], [{"original_text": "Finally, the sun receded behind the horizon and our day there was done.", "album_id": "140462", "photo_flickr_id": "5575956", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42382", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , the sun receded behind the horizon and our day there was done .", "storylet_id": "211914"}], [{"original_text": "The man had a stressful day, so he decided to take a walk along the beach. ", "album_id": "140462", "photo_flickr_id": "5575914", "setting": "last-3-pick-old-and-tell", "worker_id": "LTLYL82FNFJGCJP", "story_id": "42383", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man had a stressful day , so he decided to take a walk along the beach .", "storylet_id": "211915"}], [{"original_text": "The ocean looked glorious as the sun was setting. ", "album_id": "140462", "photo_flickr_id": "5575924", "setting": "last-3-pick-old-and-tell", "worker_id": "LTLYL82FNFJGCJP", "story_id": "42383", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ocean looked glorious as the sun was setting .", "storylet_id": "211916"}], [{"original_text": "The man sat on a rock and contemplated his life.", "album_id": "140462", "photo_flickr_id": "5575932", "setting": "last-3-pick-old-and-tell", "worker_id": "LTLYL82FNFJGCJP", "story_id": "42383", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man sat on a rock and contemplated his life .", "storylet_id": "211917"}], [{"original_text": "He had to leave his rock as the tide began to come in. ", "album_id": "140462", "photo_flickr_id": "5575953", "setting": "last-3-pick-old-and-tell", "worker_id": "LTLYL82FNFJGCJP", "story_id": "42383", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he had to leave his rock as the tide began to come in .", "storylet_id": "211918"}], [{"original_text": "He slowly walked home, wading in the water. ", "album_id": "140462", "photo_flickr_id": "5575959", "setting": "last-3-pick-old-and-tell", "worker_id": "LTLYL82FNFJGCJP", "story_id": "42383", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he slowly walked home , wading in the water .", "storylet_id": "211919"}], [{"original_text": "Walking to nowhere and everywhere..thinking", "album_id": "140462", "photo_flickr_id": "5575914", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42384", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walking to nowhere and everywhere..thinking", "storylet_id": "211920"}], [{"original_text": "Look at the sun rising, feeling good to be alive.", "album_id": "140462", "photo_flickr_id": "5575924", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42384", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look at the sun rising , feeling good to be alive .", "storylet_id": "211921"}], [{"original_text": "Sitting and pondering big thoughts and little thoughs.", "album_id": "140462", "photo_flickr_id": "5575932", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42384", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sitting and pondering big thoughts and little thoughs .", "storylet_id": "211922"}], [{"original_text": "Glorious sun rising how good it feels to be alive.", "album_id": "140462", "photo_flickr_id": "5575940", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42384", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "glorious sun rising how good it feels to be alive .", "storylet_id": "211923"}], [{"original_text": "Watching the sun rise and seeing shapes in the clouds", "album_id": "140462", "photo_flickr_id": "5575956", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42384", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "watching the sun rise and seeing shapes in the clouds", "storylet_id": "211924"}], [{"original_text": "Our first breakfast on the cruise ship. ", "album_id": "141905", "photo_flickr_id": "5645579", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "42385", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our first breakfast on the cruise ship .", "storylet_id": "211925"}], [{"original_text": "We enjoyed a little 7up while eating. ", "album_id": "141905", "photo_flickr_id": "5645584", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "42385", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we enjoyed a little 7up while eating .", "storylet_id": "211926"}], [{"original_text": "Then we took a stroll on the deck .", "album_id": "141905", "photo_flickr_id": "5645607", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "42385", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we took a stroll on the deck .", "storylet_id": "211927"}], [{"original_text": "We checked out the cars in the garage of the ship ", "album_id": "141905", "photo_flickr_id": "5645612", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "42385", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we checked out the cars in the garage of the ship", "storylet_id": "211928"}], [{"original_text": "We asked a bystander to take this photo of the three of us ", "album_id": "141905", "photo_flickr_id": "5645656", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "42385", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we asked a bystander to take this photo of the three of us", "storylet_id": "211929"}], [{"original_text": "Alex was on a mission to find the best food in the area.", "album_id": "141905", "photo_flickr_id": "5577121", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42386", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was on a mission to find the best food in the area .", "storylet_id": "211930"}], [{"original_text": "He found chicken that was acceptable.", "album_id": "141905", "photo_flickr_id": "5645625", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42386", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he found chicken that was acceptable .", "storylet_id": "211931"}], [{"original_text": "Meet other people on similar missions.", "album_id": "141905", "photo_flickr_id": "5645597", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42386", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "meet other people on similar missions .", "storylet_id": "211932"}], [{"original_text": "Ultimately, the best food in the area was down an unbeaten track near a stoney beach.", "album_id": "141905", "photo_flickr_id": "5645519", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42386", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "ultimately , the best food in the area was down an unbeaten track near a stoney beach .", "storylet_id": "211933"}], [{"original_text": "The scenery on the way there was the best. And at a family themed restaurant, he had the best meal he ever ate. Thus fulfilling his mission!", "album_id": "141905", "photo_flickr_id": "5645584", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42386", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the scenery on the way there was the best . and at a family themed restaurant , he had the best meal he ever ate . thus fulfilling his mission !", "storylet_id": "211934"}], [{"original_text": "We're off to France for the day but first - breakfast. And what better way to start the day than with bacon and fried potatoes. My arteries might not love it but my belly is in heaven!", "album_id": "141905", "photo_flickr_id": "5645579", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "42387", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 're off to location for the day but first - breakfast . and what better way to start the day than with bacon and fried potatoes . my arteries might not love it but my belly is in heaven !", "storylet_id": "211935"}], [{"original_text": "Bacon's ready and the family raids the kitchen. Wow, look how much bacon my sister has grabbed. Save some for the rest of us!", "album_id": "141905", "photo_flickr_id": "5645584", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "42387", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "bacon 's ready and the family raids the kitchen . wow , look how much bacon my sister has grabbed . save some for the rest of us !", "storylet_id": "211936"}], [{"original_text": "We catch the ferry and I hang out on the top deck to watch the waves with my brother. The motion of the ocean doesn't seem to be agreeing with him. He looks quite green. I make sure I'm not standing downwind...", "album_id": "141905", "photo_flickr_id": "5645607", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "42387", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we catch the ferry and i hang out on the top deck to watch the waves with my brother . the motion of the ocean does n't seem to be agreeing with him . he looks quite green . i make sure i 'm not standing downwind ...", "storylet_id": "211937"}], [{"original_text": "Getting off of this thing is going to be a real pain. Look at all these cars. But we're in France at last.", "album_id": "141905", "photo_flickr_id": "5645612", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "42387", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "getting off of this thing is going to be a real pain . look at all these cars . but we 're in location at last .", "storylet_id": "211938"}], [{"original_text": "A quick photo with the boys on deck before we leave. Look out France, he we come!", "album_id": "141905", "photo_flickr_id": "5645656", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "42387", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a quick photo with the boys on deck before we leave . look out location , he we come !", "storylet_id": "211939"}], [{"original_text": "I made some breakfast for everyone today.", "album_id": "141905", "photo_flickr_id": "5645579", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42388", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i made some breakfast for everyone today .", "storylet_id": "211940"}], [{"original_text": "I made a lot of bacon.", "album_id": "141905", "photo_flickr_id": "5645584", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42388", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i made a lot of bacon .", "storylet_id": "211941"}], [{"original_text": "When I got to the ferry we had to wait for a while.", "album_id": "141905", "photo_flickr_id": "5645607", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42388", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when i got to the ferry we had to wait for a while .", "storylet_id": "211942"}], [{"original_text": "I put my car inside.", "album_id": "141905", "photo_flickr_id": "5645612", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42388", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i put my car inside .", "storylet_id": "211943"}], [{"original_text": "It was a fun ride.", "album_id": "141905", "photo_flickr_id": "5645656", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42388", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a fun ride .", "storylet_id": "211944"}], [{"original_text": "This is a picture of bacon.", "album_id": "141905", "photo_flickr_id": "5645579", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42389", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of bacon .", "storylet_id": "211945"}], [{"original_text": "This is a picture of people eating.", "album_id": "141905", "photo_flickr_id": "5645584", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42389", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of people eating .", "storylet_id": "211946"}], [{"original_text": "This is a picture of a man.", "album_id": "141905", "photo_flickr_id": "5645607", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42389", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of a man .", "storylet_id": "211947"}], [{"original_text": "This is a picture of cars.", "album_id": "141905", "photo_flickr_id": "5645612", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42389", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of cars .", "storylet_id": "211948"}], [{"original_text": "This is a picture of men.", "album_id": "141905", "photo_flickr_id": "5645656", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42389", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of men .", "storylet_id": "211949"}], [{"original_text": "The trip to Sydney was very fun.", "album_id": "659687", "photo_flickr_id": "29299697", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42390", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the trip to location was very fun .", "storylet_id": "211950"}], [{"original_text": "They saw a koala bear eating.", "album_id": "659687", "photo_flickr_id": "29299804", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42390", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they saw a koala bear eating .", "storylet_id": "211951"}], [{"original_text": "There was a beautiful waterfall.", "album_id": "659687", "photo_flickr_id": "29300019", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42390", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a beautiful waterfall .", "storylet_id": "211952"}], [{"original_text": "Some of the exotic birds were birds they had never seen before.", "album_id": "659687", "photo_flickr_id": "29302336", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42390", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the exotic birds were birds they had never seen before .", "storylet_id": "211953"}], [{"original_text": "They were happy to have gone on the long walk while they were on vacation.", "album_id": "659687", "photo_flickr_id": "29302389", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42390", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were happy to have gone on the long walk while they were on vacation .", "storylet_id": "211954"}], [{"original_text": "They finally arrived and their view before bed was amazing, overlooking the wonderful inlet.", "album_id": "659687", "photo_flickr_id": "29299755", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42391", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they finally arrived and their view before bed was amazing , overlooking the wonderful inlet .", "storylet_id": "211955"}], [{"original_text": "They awoke to a Koala outside their terrace. It was the first time they had either seen the social koala.", "album_id": "659687", "photo_flickr_id": "29299804", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42391", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they awoke to a koala outside their terrace . it was the first time they had either seen the social koala .", "storylet_id": "211956"}], [{"original_text": "They begin their vacation with a lovely hike and a view that many would die to see.", "album_id": "659687", "photo_flickr_id": "29299966", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42391", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they begin their vacation with a lovely hike and a view that many would die to see .", "storylet_id": "211957"}], [{"original_text": "Including, a viewing o the puffin feeding on the flowers in the woods. ", "album_id": "659687", "photo_flickr_id": "29302336", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42391", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "including , a viewing o the puffin feeding on the flowers in the woods .", "storylet_id": "211958"}], [{"original_text": "After an exhausting day, the couple spent their last night on the beach and enjoyed the sunset before heading home.", "album_id": "659687", "photo_flickr_id": "29302451", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42391", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after an exhausting day , the couple spent their last night on the beach and enjoyed the sunset before heading home .", "storylet_id": "211959"}], [{"original_text": "This is one of the most beautiful cities I have ever seen. ", "album_id": "659687", "photo_flickr_id": "29299697", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42392", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is one of the most beautiful cities i have ever seen .", "storylet_id": "211960"}], [{"original_text": "Only here will you see koala bears climbing trees right in front of you.", "album_id": "659687", "photo_flickr_id": "29299804", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42392", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "only here will you see koala bears climbing trees right in front of you .", "storylet_id": "211961"}], [{"original_text": "The land is gushing with fresh waters and healthy trees.", "album_id": "659687", "photo_flickr_id": "29300019", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42392", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the land is gushing with fresh waters and healthy trees .", "storylet_id": "211962"}], [{"original_text": "Flowers of all kinds are plentiful.", "album_id": "659687", "photo_flickr_id": "29302336", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42392", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "flowers of all kinds are plentiful .", "storylet_id": "211963"}], [{"original_text": "Watching the sunset by the water is a great ending to every day.", "album_id": "659687", "photo_flickr_id": "29302389", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42392", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "watching the sunset by the water is a great ending to every day .", "storylet_id": "211964"}], [{"original_text": "Australia at night is a beautiful sight.", "album_id": "659687", "photo_flickr_id": "29299697", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42393", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location at night is a beautiful sight .", "storylet_id": "211965"}], [{"original_text": "Really, it's just a beautiful country. You can see koala bears,", "album_id": "659687", "photo_flickr_id": "29299804", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42393", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "really , it 's just a beautiful country . you can see koala bears ,", "storylet_id": "211966"}], [{"original_text": "and rushing waterfalls,", "album_id": "659687", "photo_flickr_id": "29300019", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42393", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and rushing waterfalls ,", "storylet_id": "211967"}], [{"original_text": "and even birds eating plants.", "album_id": "659687", "photo_flickr_id": "29302336", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42393", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and even birds eating plants .", "storylet_id": "211968"}], [{"original_text": "The country is known for having the prettiest of beaches, so if you get the chance, check it out. ", "album_id": "659687", "photo_flickr_id": "29302389", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42393", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the country is known for having the prettiest of beaches , so if you get the chance , check it out .", "storylet_id": "211969"}], [{"original_text": "We took a trip to Australia for vacation.", "album_id": "659687", "photo_flickr_id": "29299697", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42394", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to location for vacation .", "storylet_id": "211970"}], [{"original_text": "First we came to a koala in the wild.", "album_id": "659687", "photo_flickr_id": "29299804", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42394", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we came to a koala in the wild .", "storylet_id": "211971"}], [{"original_text": "After that we found some small water falls.", "album_id": "659687", "photo_flickr_id": "29300019", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42394", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that we found some small water falls .", "storylet_id": "211972"}], [{"original_text": "Then we found a large bird eating flowers.", "album_id": "659687", "photo_flickr_id": "29302336", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42394", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we found a large bird eating flowers .", "storylet_id": "211973"}], [{"original_text": "At the end of the day we watched the sun set.", "album_id": "659687", "photo_flickr_id": "29302389", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42394", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day we watched the sun set .", "storylet_id": "211974"}], [{"original_text": "We went to the beach for our honeymoon.", "album_id": "72157623186332497", "photo_flickr_id": "4314646527", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42395", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the beach for our honeymoon .", "storylet_id": "211975"}], [{"original_text": "It was a very romantic trip.", "album_id": "72157623186332497", "photo_flickr_id": "4314656301", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42395", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a very romantic trip .", "storylet_id": "211976"}], [{"original_text": "We got to see many different things.", "album_id": "72157623186332497", "photo_flickr_id": "4315387220", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42395", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got to see many different things .", "storylet_id": "211977"}], [{"original_text": "My favorite was watching the sun set over the beach.", "album_id": "72157623186332497", "photo_flickr_id": "4314653101", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42395", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my favorite was watching the sun set over the beach .", "storylet_id": "211978"}], [{"original_text": "It was amazing to spend the time with the love of my life experiencing this.", "album_id": "72157623186332497", "photo_flickr_id": "4315389478", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42395", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was amazing to spend the time with the love of my life experiencing this .", "storylet_id": "211979"}], [{"original_text": "I went to the beach last weekend.", "album_id": "72157623186332497", "photo_flickr_id": "4315381908", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42396", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the beach last weekend .", "storylet_id": "211980"}], [{"original_text": "There were some people there.", "album_id": "72157623186332497", "photo_flickr_id": "4314646527", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42396", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were some people there .", "storylet_id": "211981"}], [{"original_text": "We hung out for a few hours.", "album_id": "72157623186332497", "photo_flickr_id": "4314647957", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42396", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we hung out for a few hours .", "storylet_id": "211982"}], [{"original_text": "I set up a tent there.", "album_id": "72157623186332497", "photo_flickr_id": "4314653101", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42396", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i set up a tent there .", "storylet_id": "211983"}], [{"original_text": "We stayed the night.", "album_id": "72157623186332497", "photo_flickr_id": "4315389478", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42396", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we stayed the night .", "storylet_id": "211984"}], [{"original_text": "I was walking behind Julie, just watching.", "album_id": "72157623186332497", "photo_flickr_id": "4314646527", "setting": "last-3-pick-old-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "42397", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was walking behind [female] , just watching .", "storylet_id": "211985"}], [{"original_text": "We sat and talked for a while.", "album_id": "72157623186332497", "photo_flickr_id": "4314656301", "setting": "last-3-pick-old-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "42397", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we sat and talked for a while .", "storylet_id": "211986"}], [{"original_text": "While we were there, there were two guys fishing.", "album_id": "72157623186332497", "photo_flickr_id": "4315387220", "setting": "last-3-pick-old-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "42397", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "while we were there , there were two guys fishing .", "storylet_id": "211987"}], [{"original_text": "We stayed and watched the sun set.", "album_id": "72157623186332497", "photo_flickr_id": "4314653101", "setting": "last-3-pick-old-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "42397", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stayed and watched the sun set .", "storylet_id": "211988"}], [{"original_text": "It was a great day.", "album_id": "72157623186332497", "photo_flickr_id": "4315389478", "setting": "last-3-pick-old-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "42397", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great day .", "storylet_id": "211989"}], [{"original_text": "The beach has many visitors. Some are alone. ", "album_id": "72157623186332497", "photo_flickr_id": "4314646527", "setting": "last-3-pick-old-and-tell", "worker_id": "MR78U1BIJE5PH1G", "story_id": "42398", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beach has many visitors . some are alone .", "storylet_id": "211990"}], [{"original_text": "Others, however, come in pairs like this couple. The beach is a wonderful vacation spot.", "album_id": "72157623186332497", "photo_flickr_id": "4314656301", "setting": "last-3-pick-old-and-tell", "worker_id": "MR78U1BIJE5PH1G", "story_id": "42398", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "others , however , come in pairs like this couple . the beach is a wonderful vacation spot .", "storylet_id": "211991"}], [{"original_text": "Sometimes you can see families together on the beach. ", "album_id": "72157623186332497", "photo_flickr_id": "4315387220", "setting": "last-3-pick-old-and-tell", "worker_id": "MR78U1BIJE5PH1G", "story_id": "42398", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sometimes you can see families together on the beach .", "storylet_id": "211992"}], [{"original_text": "It's great place to come to relax. ", "album_id": "72157623186332497", "photo_flickr_id": "4314653101", "setting": "last-3-pick-old-and-tell", "worker_id": "MR78U1BIJE5PH1G", "story_id": "42398", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's great place to come to relax .", "storylet_id": "211993"}], [{"original_text": "The sunsets are wonderful as well, and are a joy to view with a loved one. ", "album_id": "72157623186332497", "photo_flickr_id": "4315389478", "setting": "last-3-pick-old-and-tell", "worker_id": "MR78U1BIJE5PH1G", "story_id": "42398", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sunsets are wonderful as well , and are a joy to view with a loved one .", "storylet_id": "211994"}], [{"original_text": "I went on a romantic walk on the beach with my girlfriend last night.", "album_id": "72157623186332497", "photo_flickr_id": "4314646527", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42399", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on a romantic walk on the beach with my girlfriend last night .", "storylet_id": "211995"}], [{"original_text": "We sat on the beach and watched the sunset and then stared at the stars.", "album_id": "72157623186332497", "photo_flickr_id": "4314656301", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42399", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we sat on the beach and watched the sunset and then stared at the stars .", "storylet_id": "211996"}], [{"original_text": "The next morning we went back to the beach and it was a complete mess.", "album_id": "72157623186332497", "photo_flickr_id": "4315387220", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42399", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next morning we went back to the beach and it was a complete mess .", "storylet_id": "211997"}], [{"original_text": "We worked with a team for hours to clean up the beach.", "album_id": "72157623186332497", "photo_flickr_id": "4314653101", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42399", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we worked with a team for hours to clean up the beach .", "storylet_id": "211998"}], [{"original_text": "By evening, the beach was beautiful again, and the sunset was even prettier.", "album_id": "72157623186332497", "photo_flickr_id": "4315389478", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42399", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by evening , the beach was beautiful again , and the sunset was even prettier .", "storylet_id": "211999"}], [{"original_text": "Jeb takes a nice picture of the view.", "album_id": "72157623308486442", "photo_flickr_id": "4314474134", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42400", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "jeb takes a nice picture of the view .", "storylet_id": "212000"}], [{"original_text": "The waves just washing up to the shores.", "album_id": "72157623308486442", "photo_flickr_id": "4313739265", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42400", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the waves just washing up to the shores .", "storylet_id": "212001"}], [{"original_text": "Jeb finds this bench on the beach and finds it very interesting.", "album_id": "72157623308486442", "photo_flickr_id": "4314475182", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42400", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "jeb finds this bench on the beach and finds it very interesting .", "storylet_id": "212002"}], [{"original_text": "He and his wife walk along side the beach holding hands.", "album_id": "72157623308486442", "photo_flickr_id": "4313740373", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42400", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he and his wife walk along side the beach holding hands .", "storylet_id": "212003"}], [{"original_text": "Such a wonderful day Jeb and his wife are having.", "album_id": "72157623308486442", "photo_flickr_id": "4313741489", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42400", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "such a wonderful day jeb and his wife are having .", "storylet_id": "212004"}], [{"original_text": "This was a place untouched by man.", "album_id": "72157623308486442", "photo_flickr_id": "4314474134", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42401", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was a place untouched by man .", "storylet_id": "212005"}], [{"original_text": "There was no litter anywhere, no footprints even in the sand.", "album_id": "72157623308486442", "photo_flickr_id": "4313739021", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42401", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was no litter anywhere , no footprints even in the sand .", "storylet_id": "212006"}], [{"original_text": "When the tide came in the water was clear of any garbage.", "album_id": "72157623308486442", "photo_flickr_id": "4314474878", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42401", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when the tide came in the water was clear of any garbage .", "storylet_id": "212007"}], [{"original_text": "People had really tried to keep this place serene.", "album_id": "72157623308486442", "photo_flickr_id": "4313740665", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42401", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people had really tried to keep this place serene .", "storylet_id": "212008"}], [{"original_text": "Unfortunately, the touch of man isn't far behind.", "album_id": "72157623308486442", "photo_flickr_id": "4313742163", "setting": "first-2-pick-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42401", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "unfortunately , the touch of man is n't far behind .", "storylet_id": "212009"}], [{"original_text": "I went down to the beach last weekend.", "album_id": "72157623308486442", "photo_flickr_id": "4314474134", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42402", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went down to the beach last weekend .", "storylet_id": "212010"}], [{"original_text": "There was no one else there.", "album_id": "72157623308486442", "photo_flickr_id": "4313739265", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42402", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was no one else there .", "storylet_id": "212011"}], [{"original_text": "I had a great time.", "album_id": "72157623308486442", "photo_flickr_id": "4314475182", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42402", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time .", "storylet_id": "212012"}], [{"original_text": "I invited my girlfriend with me.", "album_id": "72157623308486442", "photo_flickr_id": "4313740373", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42402", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i invited my girlfriend with me .", "storylet_id": "212013"}], [{"original_text": "It was a lot of fun.", "album_id": "72157623308486442", "photo_flickr_id": "4313741489", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42402", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a lot of fun .", "storylet_id": "212014"}], [{"original_text": "My husband and I went up to our family cottage last week after my grandfathers funeral.", "album_id": "72157623308486442", "photo_flickr_id": "4314474134", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "42403", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband and i went up to our family cottage last week after my grandfathers funeral .", "storylet_id": "212015"}], [{"original_text": "The cottage is located right on the beach looking onto water.", "album_id": "72157623308486442", "photo_flickr_id": "4313739265", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "42403", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cottage is located right on the beach looking onto water .", "storylet_id": "212016"}], [{"original_text": "We built a bench on the beach to rest on in memory of my grandfather.", "album_id": "72157623308486442", "photo_flickr_id": "4314475182", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "42403", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we built a bench on the beach to rest on in memory of my grandfather .", "storylet_id": "212017"}], [{"original_text": "Later we put his ashes into the ocean.", "album_id": "72157623308486442", "photo_flickr_id": "4313740373", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "42403", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later we put his ashes into the ocean .", "storylet_id": "212018"}], [{"original_text": "The ocean was perfect that day.", "album_id": "72157623308486442", "photo_flickr_id": "4313741489", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "42403", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ocean was perfect that day .", "storylet_id": "212019"}], [{"original_text": "A rocky beach in a black and white photograph.", "album_id": "72157623308486442", "photo_flickr_id": "4314474134", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42404", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a rocky beach in a black and white photograph .", "storylet_id": "212020"}], [{"original_text": "The waves come crashing onto the beach.", "album_id": "72157623308486442", "photo_flickr_id": "4313739265", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42404", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the waves come crashing onto the beach .", "storylet_id": "212021"}], [{"original_text": "A bench in the middle of the beach.", "album_id": "72157623308486442", "photo_flickr_id": "4314475182", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42404", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a bench in the middle of the beach .", "storylet_id": "212022"}], [{"original_text": "A couple walk hand in hand along the rocky coastline.", "album_id": "72157623308486442", "photo_flickr_id": "4313740373", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42404", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a couple walk hand in hand along the rocky coastline .", "storylet_id": "212023"}], [{"original_text": "Sunset over a forgotten beach.", "album_id": "72157623308486442", "photo_flickr_id": "4313741489", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42404", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sunset over a forgotten beach .", "storylet_id": "212024"}], [{"original_text": "Overlooking the city we could tell that the trip would take a while.", "album_id": "15812", "photo_flickr_id": "629398", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42405", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "overlooking the city we could tell that the trip would take a while .", "storylet_id": "212025"}], [{"original_text": "It was like looking at a town back in time.", "album_id": "15812", "photo_flickr_id": "629406", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42405", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was like looking at a town back in time .", "storylet_id": "212026"}], [{"original_text": "The people travel by donkeys here.", "album_id": "15812", "photo_flickr_id": "629411", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42405", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people travel by donkeys here .", "storylet_id": "212027"}], [{"original_text": "The village is like stepping back hundreds of years,", "album_id": "15812", "photo_flickr_id": "629416", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42405", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the village is like stepping back hundreds of years ,", "storylet_id": "212028"}], [{"original_text": "The fishing boats are what keeps this town in business.", "album_id": "15812", "photo_flickr_id": "629421", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42405", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fishing boats are what keeps this town in business .", "storylet_id": "212029"}], [{"original_text": "It was the last day of our vacation.", "album_id": "15812", "photo_flickr_id": "629418", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "42406", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the last day of our vacation .", "storylet_id": "212030"}], [{"original_text": "We went to grab a quick lunch.", "album_id": "15812", "photo_flickr_id": "629416", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "42406", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to grab a quick lunch .", "storylet_id": "212031"}], [{"original_text": "We decided to go on a boat ride since we had some time to kill.", "album_id": "15812", "photo_flickr_id": "629421", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "42406", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we decided to go on a boat ride since we had some time to kill .", "storylet_id": "212032"}], [{"original_text": "I was able to take some pictures during our boat ride.", "album_id": "15812", "photo_flickr_id": "629402", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "42406", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was able to take some pictures during our boat ride .", "storylet_id": "212033"}], [{"original_text": "The ocean was perfect during our boat ride.", "album_id": "15812", "photo_flickr_id": "629422", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "42406", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ocean was perfect during our boat ride .", "storylet_id": "212034"}], [{"original_text": "The town square was a vibrant place to shop.", "album_id": "15812", "photo_flickr_id": "629418", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42407", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the town square was a vibrant place to shop .", "storylet_id": "212035"}], [{"original_text": "Townspeople walked through the square to get to their boats in the morning.", "album_id": "15812", "photo_flickr_id": "629416", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42407", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "townspeople walked through the square to get to their boats in the morning .", "storylet_id": "212036"}], [{"original_text": "Fishermen usually left the docks in the morning to work.", "album_id": "15812", "photo_flickr_id": "629421", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42407", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "fishermen usually left the docks in the morning to work .", "storylet_id": "212037"}], [{"original_text": "The ocean was a fruitful way to make a living.", "album_id": "15812", "photo_flickr_id": "629402", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42407", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ocean was a fruitful way to make a living .", "storylet_id": "212038"}], [{"original_text": "This coastal city provided a way of life for the residents that kept everyone fed and productive. ", "album_id": "15812", "photo_flickr_id": "629422", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42407", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this coastal city provided a way of life for the residents that kept everyone fed and productive .", "storylet_id": "212039"}], [{"original_text": "Walking along the open market and looking at all the wares to purchase.", "album_id": "15812", "photo_flickr_id": "629418", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42408", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walking along the open market and looking at all the wares to purchase .", "storylet_id": "212040"}], [{"original_text": "Fruits, vegetables, all things are available.", "album_id": "15812", "photo_flickr_id": "629416", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42408", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fruits , vegetables , all things are available .", "storylet_id": "212041"}], [{"original_text": "Walking to the pier so smell the fresh sea air.", "album_id": "15812", "photo_flickr_id": "629421", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42408", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "walking to the pier so smell the fresh sea air .", "storylet_id": "212042"}], [{"original_text": "Touring such an ancient and wonderful and seeing the sights.", "album_id": "15812", "photo_flickr_id": "629402", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42408", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "touring such an ancient and wonderful and seeing the sights .", "storylet_id": "212043"}], [{"original_text": "Looking out into the sea and thinking all things are possible.", "album_id": "15812", "photo_flickr_id": "629422", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42408", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "looking out into the sea and thinking all things are possible .", "storylet_id": "212044"}], [{"original_text": "went vist alittle city that I always wanted to vist", "album_id": "15812", "photo_flickr_id": "629398", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "42409", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went vist alittle city that i always wanted to vist", "storylet_id": "212045"}], [{"original_text": "to my surprise it was magnifent ", "album_id": "15812", "photo_flickr_id": "629406", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "42409", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to my surprise it was magnifent", "storylet_id": "212046"}], [{"original_text": "we saw some really strange anmails", "album_id": "15812", "photo_flickr_id": "629411", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "42409", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw some really strange anmails", "storylet_id": "212047"}], [{"original_text": "there was also some nice markets as well", "album_id": "15812", "photo_flickr_id": "629416", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "42409", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also some nice markets as well", "storylet_id": "212048"}], [{"original_text": "we also took a boat ride", "album_id": "15812", "photo_flickr_id": "629421", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "42409", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also took a boat ride", "storylet_id": "212049"}], [{"original_text": "The restaurant was busy.", "album_id": "681760", "photo_flickr_id": "22734823", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42410", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the restaurant was busy .", "storylet_id": "212050"}], [{"original_text": "Cooks are rushing around to make everyone's orders.", "album_id": "681760", "photo_flickr_id": "22734832", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42410", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "cooks are rushing around to make everyone 's orders .", "storylet_id": "212051"}], [{"original_text": "The food was fresh and delicious.", "album_id": "681760", "photo_flickr_id": "22734846", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42410", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food was fresh and delicious .", "storylet_id": "212052"}], [{"original_text": "The cooks take pride in making their food perfect.", "album_id": "681760", "photo_flickr_id": "22734891", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42410", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cooks take pride in making their food perfect .", "storylet_id": "212053"}], [{"original_text": "Even the bread is made on site at this restaurant.", "album_id": "681760", "photo_flickr_id": "22734907", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42410", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the bread is made on site at this restaurant .", "storylet_id": "212054"}], [{"original_text": "We had a tropical vacation, complete with a waterfall!", "album_id": "681760", "photo_flickr_id": "22734842", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42411", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a tropical vacation , complete with a waterfall !", "storylet_id": "212055"}], [{"original_text": "The trees were tall and made us feel so small.", "album_id": "681760", "photo_flickr_id": "22734846", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42411", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the trees were tall and made us feel so small .", "storylet_id": "212056"}], [{"original_text": "We saw a huge ant crawling on on the bathroom floor! Everything seems bigger here!", "album_id": "681760", "photo_flickr_id": "22735021", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42411", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw a huge ant crawling on on the bathroom floor ! everything seems bigger here !", "storylet_id": "212057"}], [{"original_text": "We left the resort, took a boat and went on a tour.", "album_id": "681760", "photo_flickr_id": "22735056", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42411", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we left the resort , took a boat and went on a tour .", "storylet_id": "212058"}], [{"original_text": "We visited an old fort on the beach. It's surprising that it is still standing after all these years!", "album_id": "681760", "photo_flickr_id": "22737787", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42411", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we visited an old fort on the beach . it 's surprising that it is still standing after all these years !", "storylet_id": "212059"}], [{"original_text": "The cafe was crazy last night. So many people. I'm glad I got a day off today. ", "album_id": "681760", "photo_flickr_id": "22734823", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "42412", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cafe was crazy last night . so many people . i 'm glad i got a day off today .", "storylet_id": "212060"}], [{"original_text": "Mad Frankie's meat was a big hit. We've still never managed to figure out what it is or where he gets it from but when it tastes this good, who cares if a couple of drifters go missing once in a while. ", "album_id": "681760", "photo_flickr_id": "22734832", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "42412", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mad [male] 's meat was a big hit . we 've still never managed to figure out what it is or where he gets it from but when it tastes this good , who cares if a couple of drifters go missing once in a while .", "storylet_id": "212061"}], [{"original_text": "Oh these animals really need to clean up after them. This is my life repeated night after night. Ugh.", "album_id": "681760", "photo_flickr_id": "22734846", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "42412", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "oh these animals really need to clean up after them . this is my life repeated night after night . ugh .", "storylet_id": "212062"}], [{"original_text": "This guy is a wizard in the kitchen. No matter what you give him, he'll manage to rustle up something edible. Which is good, because sometimes pickings are a little slim around here.", "album_id": "681760", "photo_flickr_id": "22734891", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "42412", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this guy is a wizard in the kitchen . no matter what you give him , he 'll manage to rustle up something edible . which is good , because sometimes pickings are a little slim around here .", "storylet_id": "212063"}], [{"original_text": "Mystery meat empanadas are on the menu tonight. The mystery is why anyone eats them but Concha is a nice old lady so we let her stick around. ", "album_id": "681760", "photo_flickr_id": "22734907", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "42412", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mystery meat empanadas are on the menu tonight . the mystery is why anyone eats them but concha is a nice old lady so we let her stick around .", "storylet_id": "212064"}], [{"original_text": "I spent most of the summer training to become a chef.", "album_id": "681760", "photo_flickr_id": "22734842", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42413", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spent most of the summer training to become a chef .", "storylet_id": "212065"}], [{"original_text": "Based on the emptiness of the plates, I think I'm doing a pretty good job.", "album_id": "681760", "photo_flickr_id": "22734846", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42413", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "based on the emptiness of the plates , i think i 'm doing a pretty good job .", "storylet_id": "212066"}], [{"original_text": "Making a good meal always start with picking the best, freshest ingredients.", "album_id": "681760", "photo_flickr_id": "22735021", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42413", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "making a good meal always start with picking the best , freshest ingredients .", "storylet_id": "212067"}], [{"original_text": "I bought many of my ingredients from the local Farmers Market.", "album_id": "681760", "photo_flickr_id": "22735056", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42413", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i bought many of my ingredients from the local organization organization .", "storylet_id": "212068"}], [{"original_text": "My mentor, Chef Bartuli, taught me so much in so little time.", "album_id": "681760", "photo_flickr_id": "22737787", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "42413", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my mentor , chef bartuli , taught me so much in so little time .", "storylet_id": "212069"}], [{"original_text": "The kitchen at the restaurant was incredibly busy.", "album_id": "681760", "photo_flickr_id": "22734823", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "42414", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kitchen at the restaurant was incredibly busy .", "storylet_id": "212070"}], [{"original_text": "Paul sliced lamb from the huge hunk.", "album_id": "681760", "photo_flickr_id": "22734832", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "42414", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] sliced lamb from the huge hunk .", "storylet_id": "212071"}], [{"original_text": "The cooks used the freshest ingredients they could find.", "album_id": "681760", "photo_flickr_id": "22734846", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "42414", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cooks used the freshest ingredients they could find .", "storylet_id": "212072"}], [{"original_text": "Jim served delicious food from behind the counter.", "album_id": "681760", "photo_flickr_id": "22734891", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "42414", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] served delicious food from behind the counter .", "storylet_id": "212073"}], [{"original_text": "Martha rolled out the dough for the tasty food that would be served to hungry customers.", "album_id": "681760", "photo_flickr_id": "22734907", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "42414", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] rolled out the dough for the tasty food that would be served to hungry customers .", "storylet_id": "212074"}], [{"original_text": "Meg and her dog took a day off.", "album_id": "102283", "photo_flickr_id": "4058735", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42415", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "meg and her dog took a day off .", "storylet_id": "212075"}], [{"original_text": "They played frisbee on the beach.", "album_id": "102283", "photo_flickr_id": "4058719", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42415", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they played frisbee on the beach .", "storylet_id": "212076"}], [{"original_text": "The dog went exploring.", "album_id": "102283", "photo_flickr_id": "4058692", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42415", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dog went exploring .", "storylet_id": "212077"}], [{"original_text": "Then they went for a run.", "album_id": "102283", "photo_flickr_id": "4058687", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42415", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they went for a run .", "storylet_id": "212078"}], [{"original_text": "Later, it was frisbee time again!", "album_id": "102283", "photo_flickr_id": "4058685", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42415", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later , it was frisbee time again !", "storylet_id": "212079"}], [{"original_text": "Visiting the country such a big house!", "album_id": "102283", "photo_flickr_id": "4058672", "setting": "first-2-pick-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "42416", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visiting the country such a big house !", "storylet_id": "212080"}], [{"original_text": "Look Doxie wrote Megs name!", "album_id": "102283", "photo_flickr_id": "4058723", "setting": "first-2-pick-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "42416", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look doxie wrote megs name !", "storylet_id": "212081"}], [{"original_text": "Meg and Doxie running around having fun on the beach.", "album_id": "102283", "photo_flickr_id": "4058687", "setting": "first-2-pick-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "42416", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "meg and doxie running around having fun on the beach .", "storylet_id": "212082"}], [{"original_text": "Oh no! Hurry Doxie get your toy before it floats away!", "album_id": "102283", "photo_flickr_id": "4058685", "setting": "first-2-pick-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "42416", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "oh no ! hurry doxie get your toy before it floats away !", "storylet_id": "212083"}], [{"original_text": "A beautiful view of the ocean!", "album_id": "102283", "photo_flickr_id": "4058682", "setting": "first-2-pick-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "42416", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a beautiful view of the ocean !", "storylet_id": "212084"}], [{"original_text": "I am taking my dog over to the beach today.", "album_id": "102283", "photo_flickr_id": "4058672", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42417", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am taking my dog over to the beach today .", "storylet_id": "212085"}], [{"original_text": "We are going to draw in the sand.", "album_id": "102283", "photo_flickr_id": "4058723", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42417", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are going to draw in the sand .", "storylet_id": "212086"}], [{"original_text": "Run around and play.", "album_id": "102283", "photo_flickr_id": "4058687", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42417", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "run around and play .", "storylet_id": "212087"}], [{"original_text": "Then take a dip in the water.", "album_id": "102283", "photo_flickr_id": "4058685", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42417", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then take a dip in the water .", "storylet_id": "212088"}], [{"original_text": "What a great view we have today.", "album_id": "102283", "photo_flickr_id": "4058682", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42417", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what a great view we have today .", "storylet_id": "212089"}], [{"original_text": "Sitting with my dog in the lush countryside.", "album_id": "102283", "photo_flickr_id": "4058735", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42418", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sitting with my dog in the lush countryside .", "storylet_id": "212090"}], [{"original_text": "Writing my pets name in the sand while playing Frisbee.", "album_id": "102283", "photo_flickr_id": "4058719", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42418", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "writing my pets name in the sand while playing frisbee .", "storylet_id": "212091"}], [{"original_text": "My dog trotting off to explore a new scent on the beach.", "album_id": "102283", "photo_flickr_id": "4058692", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42418", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my dog trotting off to explore a new scent on the beach .", "storylet_id": "212092"}], [{"original_text": "My dog and I running and playing on the beach.", "album_id": "102283", "photo_flickr_id": "4058687", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42418", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my dog and i running and playing on the beach .", "storylet_id": "212093"}], [{"original_text": "My wonderful animal companion chasing the Frisbee which landed in the water.", "album_id": "102283", "photo_flickr_id": "4058685", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42418", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my wonderful animal companion chasing the frisbee which landed in the water .", "storylet_id": "212094"}], [{"original_text": "Morning stroll with the dog. Caught this cute moment with Meg and Dex.", "album_id": "102283", "photo_flickr_id": "4058735", "setting": "last-3-pick-old-and-tell", "worker_id": "55O109C912PNYBI", "story_id": "42419", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "morning stroll with the dog . caught this cute moment with meg and organization .", "storylet_id": "212095"}], [{"original_text": "No Dex, you are messing up the shot.", "album_id": "102283", "photo_flickr_id": "4058719", "setting": "last-3-pick-old-and-tell", "worker_id": "55O109C912PNYBI", "story_id": "42419", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "no dex , you are messing up the shot .", "storylet_id": "212096"}], [{"original_text": "I think Dex is mad at me. Time to play fetch that cheers him up.", "album_id": "102283", "photo_flickr_id": "4058692", "setting": "last-3-pick-old-and-tell", "worker_id": "55O109C912PNYBI", "story_id": "42419", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i think organization is mad at me . time to play fetch that cheers him up .", "storylet_id": "212097"}], [{"original_text": "Run Dex mamma is coming to get you!", "album_id": "102283", "photo_flickr_id": "4058687", "setting": "last-3-pick-old-and-tell", "worker_id": "55O109C912PNYBI", "story_id": "42419", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "run dex mamma is coming to get you !", "storylet_id": "212098"}], [{"original_text": "Happy dog. He loves out strolls.", "album_id": "102283", "photo_flickr_id": "4058685", "setting": "last-3-pick-old-and-tell", "worker_id": "55O109C912PNYBI", "story_id": "42419", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "happy dog . he loves out strolls .", "storylet_id": "212099"}], [{"original_text": "Jim and Jane were newlyweds on their honeymoon.", "album_id": "262948", "photo_flickr_id": "4946358", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42420", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] were newlyweds on their honeymoon .", "storylet_id": "212100"}], [{"original_text": "Jim was happy to see the beautiful scenery.", "album_id": "262948", "photo_flickr_id": "4946387", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42420", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was happy to see the beautiful scenery .", "storylet_id": "212101"}], [{"original_text": "Jane liked discovering hidden areas.", "album_id": "262948", "photo_flickr_id": "4036207", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42420", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] liked discovering hidden areas .", "storylet_id": "212102"}], [{"original_text": "They found a secluded beach but the waves were to violent.", "album_id": "262948", "photo_flickr_id": "4036272", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42420", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they found a secluded beach but the waves were to violent .", "storylet_id": "212103"}], [{"original_text": "So they went to somewhere more mainstream and enjoyed the peacefulness of the island.", "album_id": "262948", "photo_flickr_id": "4036274", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42420", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so they went to somewhere more mainstream and enjoyed the peacefulness of the island .", "storylet_id": "212104"}], [{"original_text": "We have always enjoyed travelling to far away places.", "album_id": "262948", "photo_flickr_id": "4946367", "setting": "first-2-pick-and-tell", "worker_id": "RHJFGJFFIKSZNPU", "story_id": "42421", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we have always enjoyed travelling to far away places .", "storylet_id": "212105"}], [{"original_text": "With so many opportunities to enjoy unique experiences.", "album_id": "262948", "photo_flickr_id": "4946358", "setting": "first-2-pick-and-tell", "worker_id": "RHJFGJFFIKSZNPU", "story_id": "42421", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "with so many opportunities to enjoy unique experiences .", "storylet_id": "212106"}], [{"original_text": "Many times, even the places we stayed provided new experiences, like sleeping in bunk beds.", "album_id": "262948", "photo_flickr_id": "4036236", "setting": "first-2-pick-and-tell", "worker_id": "RHJFGJFFIKSZNPU", "story_id": "42421", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many times , even the places we stayed provided new experiences , like sleeping in bunk beds .", "storylet_id": "212107"}], [{"original_text": "We also enjoyed staying in places where we were able to gather with other visitors and share stories.", "album_id": "262948", "photo_flickr_id": "4036242", "setting": "first-2-pick-and-tell", "worker_id": "RHJFGJFFIKSZNPU", "story_id": "42421", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also enjoyed staying in places where we were able to gather with other visitors and share stories .", "storylet_id": "212108"}], [{"original_text": "With so many sites to see, it always seems like we have to leave far too soon.", "album_id": "262948", "photo_flickr_id": "4036250", "setting": "first-2-pick-and-tell", "worker_id": "RHJFGJFFIKSZNPU", "story_id": "42421", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with so many sites to see , it always seems like we have to leave far too soon .", "storylet_id": "212109"}], [{"original_text": "We finally made it to the top of this mountain.", "album_id": "262948", "photo_flickr_id": "4946358", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42422", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we finally made it to the top of this mountain .", "storylet_id": "212110"}], [{"original_text": "I had to stop on the way and rest a little.", "album_id": "262948", "photo_flickr_id": "4946387", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42422", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had to stop on the way and rest a little .", "storylet_id": "212111"}], [{"original_text": "I didn't think this bridge would hold a human body but it is pretty solid.", "album_id": "262948", "photo_flickr_id": "4036207", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42422", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i did n't think this bridge would hold a human body but it is pretty solid .", "storylet_id": "212112"}], [{"original_text": "The waves were really beautiful from where I stand.", "album_id": "262948", "photo_flickr_id": "4036272", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42422", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the waves were really beautiful from where i stand .", "storylet_id": "212113"}], [{"original_text": "One final view of that beautiful of that inviting water.", "album_id": "262948", "photo_flickr_id": "4036274", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42422", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one final view of that beautiful of that inviting water .", "storylet_id": "212114"}], [{"original_text": "This is a picture of a couple.", "album_id": "262948", "photo_flickr_id": "4946358", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42423", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a couple .", "storylet_id": "212115"}], [{"original_text": "This is a picture of a man.", "album_id": "262948", "photo_flickr_id": "4946387", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42423", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a man .", "storylet_id": "212116"}], [{"original_text": "This is a picture of a wooden contraption.", "album_id": "262948", "photo_flickr_id": "4036207", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42423", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of a wooden contraption .", "storylet_id": "212117"}], [{"original_text": "This is a picture of the water.", "album_id": "262948", "photo_flickr_id": "4036272", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42423", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of the water .", "storylet_id": "212118"}], [{"original_text": "This is a picture of the ocean.", "album_id": "262948", "photo_flickr_id": "4036274", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42423", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of the ocean .", "storylet_id": "212119"}], [{"original_text": "We took a trip to the mountains.", "album_id": "262948", "photo_flickr_id": "4946358", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "42424", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to the mountains .", "storylet_id": "212120"}], [{"original_text": "We took a break to enjoy the view.", "album_id": "262948", "photo_flickr_id": "4946387", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "42424", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a break to enjoy the view .", "storylet_id": "212121"}], [{"original_text": "This was a structure we were unfamiliar with.", "album_id": "262948", "photo_flickr_id": "4036207", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "42424", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was a structure we were unfamiliar with .", "storylet_id": "212122"}], [{"original_text": "The waves crashed violently.", "album_id": "262948", "photo_flickr_id": "4036272", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "42424", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the waves crashed violently .", "storylet_id": "212123"}], [{"original_text": "Lastly, we got a better view of the waters.", "album_id": "262948", "photo_flickr_id": "4036274", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "42424", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , we got a better view of the waters .", "storylet_id": "212124"}], [{"original_text": "They enjoyed the sites along the train ride.", "album_id": "397604", "photo_flickr_id": "16636040", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42425", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they enjoyed the sites along the train ride .", "storylet_id": "212125"}], [{"original_text": "Just as they were getting comfortable the train arrived at the station they were to exit.", "album_id": "397604", "photo_flickr_id": "16636035", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42425", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "just as they were getting comfortable the train arrived at the station they were to exit .", "storylet_id": "212126"}], [{"original_text": "They got off the train in the busy station and navigated through the crowd of passengers.", "album_id": "397604", "photo_flickr_id": "16636052", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42425", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they got off the train in the busy station and navigated through the crowd of passengers .", "storylet_id": "212127"}], [{"original_text": "The walked down to the beach and set up an area to hang out.", "album_id": "397604", "photo_flickr_id": "16635866", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42425", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the walked down to the beach and set up an area to hang out .", "storylet_id": "212128"}], [{"original_text": "They played a few games of volleyball together.", "album_id": "397604", "photo_flickr_id": "16636029", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "42425", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they played a few games of volleyball together .", "storylet_id": "212129"}], [{"original_text": "I waited for the bus to arrive to take us to the beach.", "album_id": "397604", "photo_flickr_id": "16635835", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42426", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i waited for the bus to arrive to take us to the beach .", "storylet_id": "212130"}], [{"original_text": "It was a beautiful day for the beach.", "album_id": "397604", "photo_flickr_id": "16635852", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42426", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a beautiful day for the beach .", "storylet_id": "212131"}], [{"original_text": "After the beach we went for a walk.", "album_id": "397604", "photo_flickr_id": "16635933", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42426", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the beach we went for a walk .", "storylet_id": "212132"}], [{"original_text": "There were a lot of people on the pier walking as well.", "album_id": "397604", "photo_flickr_id": "16635946", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42426", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of people on the pier walking as well .", "storylet_id": "212133"}], [{"original_text": "After our walk we got back in the bus. We were very tired.", "album_id": "397604", "photo_flickr_id": "16636035", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42426", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after our walk we got back in the bus . we were very tired .", "storylet_id": "212134"}], [{"original_text": "Work decided to put on a teamwork event on the beach so we all got together and headed there.", "album_id": "397604", "photo_flickr_id": "16636040", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "42427", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "work decided to put on a teamwork event on the beach so we all got together and headed there .", "storylet_id": "212135"}], [{"original_text": "It was a long boring ride to get there.", "album_id": "397604", "photo_flickr_id": "16636035", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "42427", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a long boring ride to get there .", "storylet_id": "212136"}], [{"original_text": "Once we got to the station it took a while to get everyone together and walk to the beach.", "album_id": "397604", "photo_flickr_id": "16636052", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "42427", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once we got to the station it took a while to get everyone together and walk to the beach .", "storylet_id": "212137"}], [{"original_text": "When we got to the beach we split in to groups and went over the activities.", "album_id": "397604", "photo_flickr_id": "16635866", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "42427", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we got to the beach we split in to groups and went over the activities .", "storylet_id": "212138"}], [{"original_text": "After the event was over we all got to play volleyball before heading back home.", "album_id": "397604", "photo_flickr_id": "16636029", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "42427", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the event was over we all got to play volleyball before heading back home .", "storylet_id": "212139"}], [{"original_text": "We took a bus ride to go to the city.", "album_id": "397604", "photo_flickr_id": "16636040", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42428", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a bus ride to go to the city .", "storylet_id": "212140"}], [{"original_text": "We got really bored at times.", "album_id": "397604", "photo_flickr_id": "16636035", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42428", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got really bored at times .", "storylet_id": "212141"}], [{"original_text": "We got off the bus and it was all a frenzy.", "album_id": "397604", "photo_flickr_id": "16636052", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42428", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got off the bus and it was all a frenzy .", "storylet_id": "212142"}], [{"original_text": "It was finally worth it when we got to the beach. We were so tired out at first.", "album_id": "397604", "photo_flickr_id": "16635866", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42428", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was finally worth it when we got to the beach . we were so tired out at first .", "storylet_id": "212143"}], [{"original_text": "Someone set up a volleyball net. I played but my team lost. We did have a lot of fun.", "album_id": "397604", "photo_flickr_id": "16636029", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42428", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someone set up a volleyball net . i played but my team lost . we did have a lot of fun .", "storylet_id": "212144"}], [{"original_text": "Some friends and I wanted to go to the beach yesterday. To the train we go.", "album_id": "397604", "photo_flickr_id": "16636040", "setting": "last-3-pick-old-and-tell", "worker_id": "A4UVS4ESHEBWPZ3", "story_id": "42429", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some friends and i wanted to go to the beach yesterday . to the train we go .", "storylet_id": "212145"}], [{"original_text": "The train ride is as boring as you'd think.", "album_id": "397604", "photo_flickr_id": "16636035", "setting": "last-3-pick-old-and-tell", "worker_id": "A4UVS4ESHEBWPZ3", "story_id": "42429", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the train ride is as boring as you 'd think .", "storylet_id": "212146"}], [{"original_text": "And getting off is about as crowded as you think it'd be.", "album_id": "397604", "photo_flickr_id": "16636052", "setting": "last-3-pick-old-and-tell", "worker_id": "A4UVS4ESHEBWPZ3", "story_id": "42429", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and getting off is about as crowded as you think it 'd be .", "storylet_id": "212147"}], [{"original_text": "But finally getting to sit down on the sand is all worth it!", "album_id": "397604", "photo_flickr_id": "16635866", "setting": "last-3-pick-old-and-tell", "worker_id": "A4UVS4ESHEBWPZ3", "story_id": "42429", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but finally getting to sit down on the sand is all worth it !", "storylet_id": "212148"}], [{"original_text": "Not to mention the volleyball. It was a good day.", "album_id": "397604", "photo_flickr_id": "16636029", "setting": "last-3-pick-old-and-tell", "worker_id": "A4UVS4ESHEBWPZ3", "story_id": "42429", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "not to mention the volleyball . it was a good day .", "storylet_id": "212149"}], [{"original_text": "The weather was perfect for the first day of our vacation. We sat on the shore and watched the sailboats for a whle. ", "album_id": "72157625822567905", "photo_flickr_id": "16657841", "setting": "first-2-pick-and-tell", "worker_id": "3T75T0MZTXG9503", "story_id": "42430", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the weather was perfect for the first day of our vacation . we sat on the shore and watched the sailboats for a whle .", "storylet_id": "212150"}], [{"original_text": "We moved farther down the shoreline, taking in the gorgeous views.", "album_id": "72157625822567905", "photo_flickr_id": "16657847", "setting": "first-2-pick-and-tell", "worker_id": "3T75T0MZTXG9503", "story_id": "42430", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we moved farther down the shoreline , taking in the gorgeous views .", "storylet_id": "212151"}], [{"original_text": "We stopped at a local museum to learn about the the history of the area.", "album_id": "72157625822567905", "photo_flickr_id": "16657858", "setting": "first-2-pick-and-tell", "worker_id": "3T75T0MZTXG9503", "story_id": "42430", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stopped at a local museum to learn about the the history of the area .", "storylet_id": "212152"}], [{"original_text": "We chose a shady spot to for a picnic lunch outdoors.", "album_id": "72157625822567905", "photo_flickr_id": "16657873", "setting": "first-2-pick-and-tell", "worker_id": "3T75T0MZTXG9503", "story_id": "42430", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we chose a shady spot to for a picnic lunch outdoors .", "storylet_id": "212153"}], [{"original_text": "We went back to our hotel in town at the end of the day.", "album_id": "72157625822567905", "photo_flickr_id": "16657949", "setting": "first-2-pick-and-tell", "worker_id": "3T75T0MZTXG9503", "story_id": "42430", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we went back to our hotel in town at the end of the day .", "storylet_id": "212154"}], [{"original_text": "The couple headed to the harbor to grab their boat.", "album_id": "72157625822567905", "photo_flickr_id": "16657949", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42431", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple headed to the harbor to grab their boat .", "storylet_id": "212155"}], [{"original_text": "They took it out for a new adventure.", "album_id": "72157625822567905", "photo_flickr_id": "16657841", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42431", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took it out for a new adventure .", "storylet_id": "212156"}], [{"original_text": "The left their home behind for the day and headed out.", "album_id": "72157625822567905", "photo_flickr_id": "16657847", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42431", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the left their home behind for the day and headed out .", "storylet_id": "212157"}], [{"original_text": "The found a little island and docked the boat.", "album_id": "72157625822567905", "photo_flickr_id": "16657923", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42431", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the found a little island and docked the boat .", "storylet_id": "212158"}], [{"original_text": "They spent the day exploring this new island.", "album_id": "72157625822567905", "photo_flickr_id": "16657873", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42431", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they spent the day exploring this new island .", "storylet_id": "212159"}], [{"original_text": "Some people ride a sail boat in their new country,.", "album_id": "72157625822567905", "photo_flickr_id": "16657841", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "42432", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some people ride a sail boat in their new country , .", "storylet_id": "212160"}], [{"original_text": "They stop to take in the scenery.", "album_id": "72157625822567905", "photo_flickr_id": "16657847", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "42432", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they stop to take in the scenery .", "storylet_id": "212161"}], [{"original_text": "Then, they stop to see some church.", "album_id": "72157625822567905", "photo_flickr_id": "16657858", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "42432", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then , they stop to see some church .", "storylet_id": "212162"}], [{"original_text": "After, they decide to walk through the forest.", "album_id": "72157625822567905", "photo_flickr_id": "16657873", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "42432", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after , they decide to walk through the forest .", "storylet_id": "212163"}], [{"original_text": "Hours later, they go back to the docks to lock up their boat.", "album_id": "72157625822567905", "photo_flickr_id": "16657949", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "42432", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "hours later , they go back to the docks to lock up their boat .", "storylet_id": "212164"}], [{"original_text": "I enjoyed a summer vacation on the bay.", "album_id": "72157625822567905", "photo_flickr_id": "16657841", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42433", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i enjoyed a summer vacation on the bay .", "storylet_id": "212165"}], [{"original_text": "There were cute little houses along the bay.", "album_id": "72157625822567905", "photo_flickr_id": "16657847", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42433", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were cute little houses along the bay .", "storylet_id": "212166"}], [{"original_text": "This building was adorable.", "album_id": "72157625822567905", "photo_flickr_id": "16657858", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42433", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this building was adorable .", "storylet_id": "212167"}], [{"original_text": "I enjoyed walking in the woods every morning.", "album_id": "72157625822567905", "photo_flickr_id": "16657873", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42433", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i enjoyed walking in the woods every morning .", "storylet_id": "212168"}], [{"original_text": "The marina was another fun place to visit and I liked to sit at a cafe that served the best coffee.", "album_id": "72157625822567905", "photo_flickr_id": "16657949", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42433", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the marina was another fun place to visit and i liked to sit at a cafe that served the best coffee .", "storylet_id": "212169"}], [{"original_text": "It's a clear day at the port.", "album_id": "72157625822567905", "photo_flickr_id": "16657949", "setting": "last-3-pick-old-and-tell", "worker_id": "GV26PFATA9OXK1O", "story_id": "42434", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a clear day at the port .", "storylet_id": "212170"}], [{"original_text": "We take our Junk ship out for adventure.", "album_id": "72157625822567905", "photo_flickr_id": "16657841", "setting": "last-3-pick-old-and-tell", "worker_id": "GV26PFATA9OXK1O", "story_id": "42434", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we take our junk ship out for adventure .", "storylet_id": "212171"}], [{"original_text": "We reach the unoccupied island.", "album_id": "72157625822567905", "photo_flickr_id": "16657847", "setting": "last-3-pick-old-and-tell", "worker_id": "GV26PFATA9OXK1O", "story_id": "42434", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we reach the unoccupied island .", "storylet_id": "212172"}], [{"original_text": "It is calm and peaceful here.", "album_id": "72157625822567905", "photo_flickr_id": "16657923", "setting": "last-3-pick-old-and-tell", "worker_id": "GV26PFATA9OXK1O", "story_id": "42434", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is calm and peaceful here .", "storylet_id": "212173"}], [{"original_text": "You forget about the stress of society walking through a pathless forest.", "album_id": "72157625822567905", "photo_flickr_id": "16657873", "setting": "last-3-pick-old-and-tell", "worker_id": "GV26PFATA9OXK1O", "story_id": "42434", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you forget about the stress of society walking through a pathless forest .", "storylet_id": "212174"}], [{"original_text": "We arrived at the village for our family outing. ", "album_id": "72157600690249881", "photo_flickr_id": "742949984", "setting": "first-2-pick-and-tell", "worker_id": "U9IZZ01BFH35B2E", "story_id": "42435", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at the village for our family outing .", "storylet_id": "212175"}], [{"original_text": "We rented this room at the top of the stairs for the night. ", "album_id": "72157600690249881", "photo_flickr_id": "742085419", "setting": "first-2-pick-and-tell", "worker_id": "U9IZZ01BFH35B2E", "story_id": "42435", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we rented this room at the top of the stairs for the night .", "storylet_id": "212176"}], [{"original_text": "One of the highlights of the trip was playing along the ocean shore. ", "album_id": "72157600690249881", "photo_flickr_id": "742086095", "setting": "first-2-pick-and-tell", "worker_id": "U9IZZ01BFH35B2E", "story_id": "42435", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the highlights of the trip was playing along the ocean shore .", "storylet_id": "212177"}], [{"original_text": "We also had the opportunity to take a ferry ride across the water. ", "album_id": "72157600690249881", "photo_flickr_id": "742950954", "setting": "first-2-pick-and-tell", "worker_id": "U9IZZ01BFH35B2E", "story_id": "42435", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also had the opportunity to take a ferry ride across the water .", "storylet_id": "212178"}], [{"original_text": "The setting sun serves as a perfect backdrop to the placid waters. ", "album_id": "72157600690249881", "photo_flickr_id": "742951634", "setting": "first-2-pick-and-tell", "worker_id": "U9IZZ01BFH35B2E", "story_id": "42435", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the setting sun serves as a perfect backdrop to the placid waters .", "storylet_id": "212179"}], [{"original_text": "They visited the temple to take in some local culture", "album_id": "72157600690249881", "photo_flickr_id": "742950228", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "42436", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they visited the temple to take in some local culture", "storylet_id": "212180"}], [{"original_text": "They visited the beach and enjoyed the beautiful sunset.", "album_id": "72157600690249881", "photo_flickr_id": "742086095", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "42436", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they visited the beach and enjoyed the beautiful sunset .", "storylet_id": "212181"}], [{"original_text": "The family took a boat to their favorite vacation spot.", "album_id": "72157600690249881", "photo_flickr_id": "742950954", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "42436", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family took a boat to their favorite vacation spot .", "storylet_id": "212182"}], [{"original_text": "They played on the beach together.", "album_id": "72157600690249881", "photo_flickr_id": "742951634", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "42436", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they played on the beach together .", "storylet_id": "212183"}], [{"original_text": "Eventually it was time to return home.", "album_id": "72157600690249881", "photo_flickr_id": "742085419", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "42436", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually it was time to return home .", "storylet_id": "212184"}], [{"original_text": "It was such a pretty day outside.", "album_id": "72157600690249881", "photo_flickr_id": "742949984", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42437", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was such a pretty day outside .", "storylet_id": "212185"}], [{"original_text": "Our home is my favorite place to relax.", "album_id": "72157600690249881", "photo_flickr_id": "742085419", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42437", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our home is my favorite place to relax .", "storylet_id": "212186"}], [{"original_text": "The beach is the next place I go.", "album_id": "72157600690249881", "photo_flickr_id": "742086095", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42437", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beach is the next place i go .", "storylet_id": "212187"}], [{"original_text": "My family and I usually travel by bus.", "album_id": "72157600690249881", "photo_flickr_id": "742950954", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42437", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my family and i usually travel by bus .", "storylet_id": "212188"}], [{"original_text": "But we always end up together at the beach.", "album_id": "72157600690249881", "photo_flickr_id": "742951634", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42437", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but we always end up together at the beach .", "storylet_id": "212189"}], [{"original_text": "The family gathered at their vacation house. ", "album_id": "72157600690249881", "photo_flickr_id": "742949984", "setting": "last-3-pick-old-and-tell", "worker_id": "C64IRT1AHAWAP5Y", "story_id": "42438", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family gathered at their vacation house .", "storylet_id": "212190"}], [{"original_text": "They posed for a photo on top of the stairs.", "album_id": "72157600690249881", "photo_flickr_id": "742085419", "setting": "last-3-pick-old-and-tell", "worker_id": "C64IRT1AHAWAP5Y", "story_id": "42438", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they posed for a photo on top of the stairs .", "storylet_id": "212191"}], [{"original_text": "The sunset from the beach was spectacular.", "album_id": "72157600690249881", "photo_flickr_id": "742086095", "setting": "last-3-pick-old-and-tell", "worker_id": "C64IRT1AHAWAP5Y", "story_id": "42438", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sunset from the beach was spectacular .", "storylet_id": "212192"}], [{"original_text": "The friends enjoyed a fun boat ride.", "album_id": "72157600690249881", "photo_flickr_id": "742950954", "setting": "last-3-pick-old-and-tell", "worker_id": "C64IRT1AHAWAP5Y", "story_id": "42438", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the friends enjoyed a fun boat ride .", "storylet_id": "212193"}], [{"original_text": "The second night's sunset was even better as the friends played in the sand.", "album_id": "72157600690249881", "photo_flickr_id": "742951634", "setting": "last-3-pick-old-and-tell", "worker_id": "C64IRT1AHAWAP5Y", "story_id": "42438", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the second night 's sunset was even better as the friends played in the sand .", "storylet_id": "212194"}], [{"original_text": "Our family went to Mexico for vacation this summer.", "album_id": "72157600690249881", "photo_flickr_id": "742949984", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "42439", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family went to location for vacation this summer .", "storylet_id": "212195"}], [{"original_text": "We rented a nice townhouse by the shore.", "album_id": "72157600690249881", "photo_flickr_id": "742085419", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "42439", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we rented a nice townhouse by the shore .", "storylet_id": "212196"}], [{"original_text": "Every morning we went to see the sun rise.", "album_id": "72157600690249881", "photo_flickr_id": "742086095", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "42439", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "every morning we went to see the sun rise .", "storylet_id": "212197"}], [{"original_text": "The rest of the day we would spend on the tour bus.", "album_id": "72157600690249881", "photo_flickr_id": "742950954", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "42439", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rest of the day we would spend on the tour bus .", "storylet_id": "212198"}], [{"original_text": "At night we would watch the sun set.", "album_id": "72157600690249881", "photo_flickr_id": "742951634", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "42439", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night we would watch the sun set .", "storylet_id": "212199"}], [{"original_text": "We took our annual trip to the lake this week.", "album_id": "72157600361089862", "photo_flickr_id": "550214096", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42440", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took our annual trip to the lake this week .", "storylet_id": "212200"}], [{"original_text": "The white sand and crystal clear blue water was beautiful.", "album_id": "72157600361089862", "photo_flickr_id": "550214398", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42440", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the white sand and crystal clear blue water was beautiful .", "storylet_id": "212201"}], [{"original_text": "The water temperature was perfect when we swam.", "album_id": "72157600361089862", "photo_flickr_id": "550214346", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42440", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water temperature was perfect when we swam .", "storylet_id": "212202"}], [{"original_text": "We also love the wildlife there.", "album_id": "72157600361089862", "photo_flickr_id": "550214812", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42440", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also love the wildlife there .", "storylet_id": "212203"}], [{"original_text": "At the end of the of the day we had a wonderful time around the camp fire.", "album_id": "72157600361089862", "photo_flickr_id": "550215032", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42440", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the of the day we had a wonderful time around the camp fire .", "storylet_id": "212204"}], [{"original_text": "The weather was perfect for camping. ", "album_id": "72157600361089862", "photo_flickr_id": "550214064", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42441", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the weather was perfect for camping .", "storylet_id": "212205"}], [{"original_text": "They found a good spot right on the shore. ", "album_id": "72157600361089862", "photo_flickr_id": "550214096", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42441", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they found a good spot right on the shore .", "storylet_id": "212206"}], [{"original_text": "The guys did paper, rock, scissors to decide who would look for firewood. ", "album_id": "72157600361089862", "photo_flickr_id": "550214122", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42441", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guys did paper , rock , scissors to decide who would look for firewood .", "storylet_id": "212207"}], [{"original_text": "That evening they had a scrumptious dinner. ", "album_id": "72157600361089862", "photo_flickr_id": "550214210", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42441", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that evening they had a scrumptious dinner .", "storylet_id": "212208"}], [{"original_text": "After dinner it started to get chilly so they huddled in the camper and told ghost stories. ", "album_id": "72157600361089862", "photo_flickr_id": "550214934", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42441", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after dinner it started to get chilly so they huddled in the camper and told ghost stories .", "storylet_id": "212209"}], [{"original_text": "The gang is all here for a day at the beach.", "album_id": "72157600361089862", "photo_flickr_id": "550214096", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42442", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the gang is all here for a day at the beach .", "storylet_id": "212210"}], [{"original_text": "The water feels warm and looks calm.", "album_id": "72157600361089862", "photo_flickr_id": "550214398", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42442", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water feels warm and looks calm .", "storylet_id": "212211"}], [{"original_text": "I won this swimming contest. Not even a real challenge.", "album_id": "72157600361089862", "photo_flickr_id": "550214346", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42442", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i won this swimming contest . not even a real challenge .", "storylet_id": "212212"}], [{"original_text": "We went and fed the local ducks.", "album_id": "72157600361089862", "photo_flickr_id": "550214812", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42442", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went and fed the local ducks .", "storylet_id": "212213"}], [{"original_text": "Everyone decided to end the night with a bonfire and a little junk talking.", "album_id": "72157600361089862", "photo_flickr_id": "550215032", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42442", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone decided to end the night with a bonfire and a little junk talking .", "storylet_id": "212214"}], [{"original_text": "My friends and I went for a day trip to the beach. ", "album_id": "72157600361089862", "photo_flickr_id": "550214096", "setting": "last-3-pick-old-and-tell", "worker_id": "XAGA0CS19DKC5YV", "story_id": "42443", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i went for a day trip to the beach .", "storylet_id": "212215"}], [{"original_text": "The water was clear and beautiful. ", "album_id": "72157600361089862", "photo_flickr_id": "550214398", "setting": "last-3-pick-old-and-tell", "worker_id": "XAGA0CS19DKC5YV", "story_id": "42443", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water was clear and beautiful .", "storylet_id": "212216"}], [{"original_text": "My friends and I loved playing in the water.", "album_id": "72157600361089862", "photo_flickr_id": "550214346", "setting": "last-3-pick-old-and-tell", "worker_id": "XAGA0CS19DKC5YV", "story_id": "42443", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friends and i loved playing in the water .", "storylet_id": "212217"}], [{"original_text": "The birds were very friendly, looking for food. ", "album_id": "72157600361089862", "photo_flickr_id": "550214812", "setting": "last-3-pick-old-and-tell", "worker_id": "XAGA0CS19DKC5YV", "story_id": "42443", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the birds were very friendly , looking for food .", "storylet_id": "212218"}], [{"original_text": "We had a goodbye bonfire before we went home. ", "album_id": "72157600361089862", "photo_flickr_id": "550215032", "setting": "last-3-pick-old-and-tell", "worker_id": "XAGA0CS19DKC5YV", "story_id": "42443", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a goodbye bonfire before we went home .", "storylet_id": "212219"}], [{"original_text": "For spring break, we went to a tropical beach.", "album_id": "72157600361089862", "photo_flickr_id": "550214096", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42444", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for spring break , we went to a tropical beach .", "storylet_id": "212220"}], [{"original_text": "We frolicked in the white sand.", "album_id": "72157600361089862", "photo_flickr_id": "550214398", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42444", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we frolicked in the white sand .", "storylet_id": "212221"}], [{"original_text": "We swam in the clear blue water,", "album_id": "72157600361089862", "photo_flickr_id": "550214346", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42444", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we swam in the clear blue water ,", "storylet_id": "212222"}], [{"original_text": "and we watched the birds.", "album_id": "72157600361089862", "photo_flickr_id": "550214812", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42444", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and we watched the birds .", "storylet_id": "212223"}], [{"original_text": "After a long day of playing around, we built a small bonfire and sat around it, getting drunk.", "album_id": "72157600361089862", "photo_flickr_id": "550215032", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42444", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long day of playing around , we built a small bonfire and sat around it , getting drunk .", "storylet_id": "212224"}], [{"original_text": "John went prepared to go on a trip that involved hiking, camping and climbing.", "album_id": "72157600688361277", "photo_flickr_id": "740982963", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42445", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] went prepared to go on a trip that involved hiking , camping and climbing .", "storylet_id": "212225"}], [{"original_text": "He went with a group and camped with others on the mountain.", "album_id": "72157600688361277", "photo_flickr_id": "740984311", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42445", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he went with a group and camped with others on the mountain .", "storylet_id": "212226"}], [{"original_text": "He climbed high and took pictures at major milestones on the way up.", "album_id": "72157600688361277", "photo_flickr_id": "741849520", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42445", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he climbed high and took pictures at major milestones on the way up .", "storylet_id": "212227"}], [{"original_text": "He made it to the top and saw the clouds.", "album_id": "72157600688361277", "photo_flickr_id": "740982845", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42445", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he made it to the top and saw the clouds .", "storylet_id": "212228"}], [{"original_text": "In order to commemorate the event he and his friends took pictures at the end of the trip.", "album_id": "72157600688361277", "photo_flickr_id": "741849646", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "42445", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in order to commemorate the event he and his friends took pictures at the end of the trip .", "storylet_id": "212229"}], [{"original_text": "It was a big day because we were going hiking.", "album_id": "72157600688361277", "photo_flickr_id": "740982963", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42446", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a big day because we were going hiking .", "storylet_id": "212230"}], [{"original_text": "After an hour of walking we decided to stop and rest a little.", "album_id": "72157600688361277", "photo_flickr_id": "741847758", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42446", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after an hour of walking we decided to stop and rest a little .", "storylet_id": "212231"}], [{"original_text": "It was calm ans soothing to hear nature.", "album_id": "72157600688361277", "photo_flickr_id": "741850688", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42446", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was calm ans soothing to hear nature .", "storylet_id": "212232"}], [{"original_text": "We had to prepare our tent for the night since its going to be a bit cold.", "album_id": "72157600688361277", "photo_flickr_id": "740984311", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42446", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had to prepare our tent for the night since its going to be a bit cold .", "storylet_id": "212233"}], [{"original_text": "What a great way to wake up and be among these beautiful mountains.", "album_id": "72157600688361277", "photo_flickr_id": "740985133", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42446", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what a great way to wake up and be among these beautiful mountains .", "storylet_id": "212234"}], [{"original_text": "Getting ready to go on a major hike for the day.", "album_id": "72157600688361277", "photo_flickr_id": "740982963", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "42447", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting ready to go on a major hike for the day .", "storylet_id": "212235"}], [{"original_text": "Met up with friends on the hiking trail. ", "album_id": "72157600688361277", "photo_flickr_id": "741847758", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "42447", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "met up with friends on the hiking trail .", "storylet_id": "212236"}], [{"original_text": "Came across this beautiful, bright cloud formation.", "album_id": "72157600688361277", "photo_flickr_id": "741850688", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "42447", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "came across this beautiful , bright cloud formation .", "storylet_id": "212237"}], [{"original_text": "Setting up came for the evening after a long day of hiking.", "album_id": "72157600688361277", "photo_flickr_id": "740984311", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "42447", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "setting up came for the evening after a long day of hiking .", "storylet_id": "212238"}], [{"original_text": "Made it to the top of the mountain!", "album_id": "72157600688361277", "photo_flickr_id": "740985133", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "42447", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "made it to the top of the mountain !", "storylet_id": "212239"}], [{"original_text": "this man is starting his hiking trip.", "album_id": "72157600688361277", "photo_flickr_id": "740982963", "setting": "last-3-pick-old-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "42448", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this man is starting his hiking trip .", "storylet_id": "212240"}], [{"original_text": "he set up a blue and white tent before dark", "album_id": "72157600688361277", "photo_flickr_id": "740984311", "setting": "last-3-pick-old-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "42448", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he set up a blue and white tent before dark", "storylet_id": "212241"}], [{"original_text": "He has reached a point where he place a sign.", "album_id": "72157600688361277", "photo_flickr_id": "741849520", "setting": "last-3-pick-old-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "42448", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he has reached a point where he place a sign .", "storylet_id": "212242"}], [{"original_text": "On the side of the mountain there is plenty water below.", "album_id": "72157600688361277", "photo_flickr_id": "740982845", "setting": "last-3-pick-old-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "42448", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on the side of the mountain there is plenty water below .", "storylet_id": "212243"}], [{"original_text": "The man reach the top of the mountain and is having himself a beverage.", "album_id": "72157600688361277", "photo_flickr_id": "741849646", "setting": "last-3-pick-old-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "42448", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the man reach the top of the mountain and is having himself a beverage .", "storylet_id": "212244"}], [{"original_text": "We decided to take a trip to go camping in the mountains last week.", "album_id": "72157600688361277", "photo_flickr_id": "740982963", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "42449", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to take a trip to go camping in the mountains last week .", "storylet_id": "212245"}], [{"original_text": "We hiked up pretty high.", "album_id": "72157600688361277", "photo_flickr_id": "741847758", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "42449", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we hiked up pretty high .", "storylet_id": "212246"}], [{"original_text": "It was so beautiful up there.", "album_id": "72157600688361277", "photo_flickr_id": "741850688", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "42449", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was so beautiful up there .", "storylet_id": "212247"}], [{"original_text": "We set up camp and had a really good time.", "album_id": "72157600688361277", "photo_flickr_id": "740984311", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "42449", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we set up camp and had a really good time .", "storylet_id": "212248"}], [{"original_text": "This was a great trip. I know we will be doing it again soon.", "album_id": "72157600688361277", "photo_flickr_id": "740985133", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "42449", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was a great trip . i know we will be doing it again soon .", "storylet_id": "212249"}], [{"original_text": "Working on her homework before going out.", "album_id": "72157601233565483", "photo_flickr_id": "1015975703", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42450", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "working on her homework before going out .", "storylet_id": "212250"}], [{"original_text": "Taking a picture of the waves coming in.", "album_id": "72157601233565483", "photo_flickr_id": "1015975397", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42450", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "taking a picture of the waves coming in .", "storylet_id": "212251"}], [{"original_text": "Walking in the water.", "album_id": "72157601233565483", "photo_flickr_id": "1016835326", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42450", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "walking in the water .", "storylet_id": "212252"}], [{"original_text": "Having fun and running away from the waves.", "album_id": "72157601233565483", "photo_flickr_id": "1015974989", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42450", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "having fun and running away from the waves .", "storylet_id": "212253"}], [{"original_text": "Late night dinner at the Steinbeck House restaurant. ", "album_id": "72157601233565483", "photo_flickr_id": "1016838046", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42450", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "late night dinner at the organization organization restaurant .", "storylet_id": "212254"}], [{"original_text": "The sights on our vacation were amazing.", "album_id": "72157601233565483", "photo_flickr_id": "1015974221", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42451", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sights on our vacation were amazing .", "storylet_id": "212255"}], [{"original_text": "The coastline was green and the water was blue.", "album_id": "72157601233565483", "photo_flickr_id": "1015974711", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42451", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the coastline was green and the water was blue .", "storylet_id": "212256"}], [{"original_text": "We had a great time swimming and playing in the water.", "album_id": "72157601233565483", "photo_flickr_id": "1015974989", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42451", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a great time swimming and playing in the water .", "storylet_id": "212257"}], [{"original_text": "The waves were incredible and I wish we could stay longer.", "album_id": "72157601233565483", "photo_flickr_id": "1016837512", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42451", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the waves were incredible and i wish we could stay longer .", "storylet_id": "212258"}], [{"original_text": "We had an ocean view from our hotel room. Here is a picture out of the window.", "album_id": "72157601233565483", "photo_flickr_id": "1015978127", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42451", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had an ocean view from our hotel room . here is a picture out of the window .", "storylet_id": "212259"}], [{"original_text": "she was planning a vacation", "album_id": "72157601233565483", "photo_flickr_id": "1015975703", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42452", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she was planning a vacation", "storylet_id": "212260"}], [{"original_text": "somewhere far away", "album_id": "72157601233565483", "photo_flickr_id": "1015975397", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42452", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "somewhere far away", "storylet_id": "212261"}], [{"original_text": "she decided on the ocean and it was great", "album_id": "72157601233565483", "photo_flickr_id": "1016835326", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42452", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she decided on the ocean and it was great", "storylet_id": "212262"}], [{"original_text": "she ran across the beach and enjoyed it", "album_id": "72157601233565483", "photo_flickr_id": "1015974989", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42452", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she ran across the beach and enjoyed it", "storylet_id": "212263"}], [{"original_text": "it was a great vacation choice for her", "album_id": "72157601233565483", "photo_flickr_id": "1016838046", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42452", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great vacation choice for her", "storylet_id": "212264"}], [{"original_text": "Sally is checking on a few things on her laptop, were all glad she is so organized.", "album_id": "72157601233565483", "photo_flickr_id": "1015975703", "setting": "last-3-pick-old-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "42453", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is checking on a few things on her laptop , were all glad she is so organized .", "storylet_id": "212265"}], [{"original_text": "Peter is checking out the waves as they come in.", "album_id": "72157601233565483", "photo_flickr_id": "1015975397", "setting": "last-3-pick-old-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "42453", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is checking out the waves as they come in .", "storylet_id": "212266"}], [{"original_text": "I wonder what Peter is looking for?", "album_id": "72157601233565483", "photo_flickr_id": "1016835326", "setting": "last-3-pick-old-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "42453", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i wonder what [male] is looking for ?", "storylet_id": "212267"}], [{"original_text": "Everyone is having fun frolicking on the beach.", "album_id": "72157601233565483", "photo_flickr_id": "1015974989", "setting": "last-3-pick-old-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "42453", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone is having fun frolicking on the beach .", "storylet_id": "212268"}], [{"original_text": "You found this great place for dinner, not too expensive but very tasty. ", "album_id": "72157601233565483", "photo_flickr_id": "1016838046", "setting": "last-3-pick-old-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "42453", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you found this great place for dinner , not too expensive but very tasty .", "storylet_id": "212269"}], [{"original_text": "Working, as usual. I need a vacation. ", "album_id": "72157601233565483", "photo_flickr_id": "1015975703", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "42454", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "working , as usual . i need a vacation .", "storylet_id": "212270"}], [{"original_text": "Here we go, this is much better. ", "album_id": "72157601233565483", "photo_flickr_id": "1015975397", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "42454", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we go , this is much better .", "storylet_id": "212271"}], [{"original_text": "This water is cold but it's worth it. ", "album_id": "72157601233565483", "photo_flickr_id": "1016835326", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "42454", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this water is cold but it 's worth it .", "storylet_id": "212272"}], [{"original_text": "Did someone see a shark or something. ", "album_id": "72157601233565483", "photo_flickr_id": "1015974989", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "42454", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "did someone see a shark or something .", "storylet_id": "212273"}], [{"original_text": "Time for dinner and drinks, awesome, well deserved!", "album_id": "72157601233565483", "photo_flickr_id": "1016838046", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "42454", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time for dinner and drinks , awesome , well deserved !", "storylet_id": "212274"}], [{"original_text": "The family took a trip to the lake this weekend.", "album_id": "72157600883720089", "photo_flickr_id": "844663236", "setting": "first-2-pick-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "42455", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family took a trip to the lake this weekend .", "storylet_id": "212275"}], [{"original_text": "We even brought the baby! Grandma was excited.", "album_id": "72157600883720089", "photo_flickr_id": "844664154", "setting": "first-2-pick-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "42455", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we even brought the baby ! grandma was excited .", "storylet_id": "212276"}], [{"original_text": "Did a little waterboarding.", "album_id": "72157600883720089", "photo_flickr_id": "843809985", "setting": "first-2-pick-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "42455", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "did a little waterboarding .", "storylet_id": "212277"}], [{"original_text": "Check out this floater. This was so fun, don't forget the life jackets.", "album_id": "72157600883720089", "photo_flickr_id": "844679966", "setting": "first-2-pick-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "42455", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "check out this floater . this was so fun , do n't forget the life jackets .", "storylet_id": "212278"}], [{"original_text": "Baby wasn't so sure of the cold waters.", "album_id": "72157600883720089", "photo_flickr_id": "843817921", "setting": "first-2-pick-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "42455", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was n't so sure of the cold waters .", "storylet_id": "212279"}], [{"original_text": "It was Sebastian first trip on a boat with his aunts, uncles and grandparents.", "album_id": "72157600883720089", "photo_flickr_id": "844664154", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42456", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was [male] first trip on a boat with his aunts , uncles and grandparents .", "storylet_id": "212280"}], [{"original_text": "They dressed him up like a little captain to the joy of his relatives.", "album_id": "72157600883720089", "photo_flickr_id": "843809771", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42456", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they dressed him up like a little captain to the joy of his relatives .", "storylet_id": "212281"}], [{"original_text": "After a while, Sebastian got grumpy and slightly sea sick. ", "album_id": "72157600883720089", "photo_flickr_id": "843810799", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42456", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after a while , [male] got grumpy and slightly sea sick .", "storylet_id": "212282"}], [{"original_text": "Aunty Jay tried to make him feel better but it didn't work.", "album_id": "72157600883720089", "photo_flickr_id": "844679248", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42456", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "aunty [male] tried to make him feel better but it did n't work .", "storylet_id": "212283"}], [{"original_text": "Grandma Carol decided that swimming with him in 30 degree water would make him happier.", "album_id": "72157600883720089", "photo_flickr_id": "844680934", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42456", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandma [female] decided that swimming with him in 30 degree water would make him happier .", "storylet_id": "212284"}], [{"original_text": "Getting help with the kayak for a day on the water.", "album_id": "72157600883720089", "photo_flickr_id": "844663236", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42457", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting help with the kayak for a day on the water .", "storylet_id": "212285"}], [{"original_text": "Friends and family having fun on the lake.", "album_id": "72157600883720089", "photo_flickr_id": "844664154", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42457", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "friends and family having fun on the lake .", "storylet_id": "212286"}], [{"original_text": "What great exercise while skiing on the water.", "album_id": "72157600883720089", "photo_flickr_id": "843809985", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42457", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what great exercise while skiing on the water .", "storylet_id": "212287"}], [{"original_text": "Friends and family having fun on a large raft on the water.", "album_id": "72157600883720089", "photo_flickr_id": "844679966", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42457", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "friends and family having fun on a large raft on the water .", "storylet_id": "212288"}], [{"original_text": "Teaching baby how to swim while making sure he's safe.", "album_id": "72157600883720089", "photo_flickr_id": "843817921", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42457", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "teaching baby how to swim while making sure he 's safe .", "storylet_id": "212289"}], [{"original_text": "The family took a trip out on their boat.", "album_id": "72157600883720089", "photo_flickr_id": "844663236", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42458", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family took a trip out on their boat .", "storylet_id": "212290"}], [{"original_text": "Even the little children came.", "album_id": "72157600883720089", "photo_flickr_id": "844664154", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42458", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the little children came .", "storylet_id": "212291"}], [{"original_text": "They went tubing in the lake.", "album_id": "72157600883720089", "photo_flickr_id": "843809985", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42458", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they went tubing in the lake .", "storylet_id": "212292"}], [{"original_text": "Four people were able to fit on the tube at once.", "album_id": "72157600883720089", "photo_flickr_id": "844679966", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42458", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "four people were able to fit on the tube at once .", "storylet_id": "212293"}], [{"original_text": "Grandma takes a turn swimming with the little one.", "album_id": "72157600883720089", "photo_flickr_id": "843817921", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42458", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandma takes a turn swimming with the little one .", "storylet_id": "212294"}], [{"original_text": "Little Bobby had never been on a boat before, and was mildly amused. ", "album_id": "72157600883720089", "photo_flickr_id": "844664154", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42459", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "little [male] had never been on a boat before , and was mildly amused .", "storylet_id": "212295"}], [{"original_text": "As a baby, he could do nothing to stop random people from placing things on his head.", "album_id": "72157600883720089", "photo_flickr_id": "843809771", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42459", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as a baby , he could do nothing to stop random people from placing things on his head .", "storylet_id": "212296"}], [{"original_text": "Finally able to break he away, he found a seat on the floor where he could relax. ", "album_id": "72157600883720089", "photo_flickr_id": "843810799", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42459", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally able to break he away , he found a seat on the floor where he could relax .", "storylet_id": "212297"}], [{"original_text": "But then Mom found him, and another object was placed on his head.", "album_id": "72157600883720089", "photo_flickr_id": "844679248", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42459", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but then mom found him , and another object was placed on his head .", "storylet_id": "212298"}], [{"original_text": "Finally having had enough, he fled to the water, where he was carried away by the lady in the lake.", "album_id": "72157600883720089", "photo_flickr_id": "844680934", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42459", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally having had enough , he fled to the water , where he was carried away by the lady in the lake .", "storylet_id": "212299"}], [{"original_text": "This was the king's palace, that we visited, when we took our trip to Germany.", "album_id": "72157602100596844", "photo_flickr_id": "1417822317", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "42460", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the king 's palace , that we visited , when we took our trip to location .", "storylet_id": "212300"}], [{"original_text": "There's a beach, near the castle, with lot of jagged rocks. ", "album_id": "72157602100596844", "photo_flickr_id": "1417822387", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "42460", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there 's a beach , near the castle , with lot of jagged rocks .", "storylet_id": "212301"}], [{"original_text": "One of the palaces we visited was near a lake. ", "album_id": "72157602100596844", "photo_flickr_id": "1417822547", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "42460", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the palaces we visited was near a lake .", "storylet_id": "212302"}], [{"original_text": "This is another ruin we visited during our vacation.", "album_id": "72157602100596844", "photo_flickr_id": "1417823397", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "42460", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is another ruin we visited during our vacation .", "storylet_id": "212303"}], [{"original_text": "This is a picture the statues, near the entrance to the palace.", "album_id": "72157602100596844", "photo_flickr_id": "1418707094", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "42460", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture the statues , near the entrance to the palace .", "storylet_id": "212304"}], [{"original_text": "This building was ominous but beautiful.", "album_id": "72157602100596844", "photo_flickr_id": "1417822317", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42461", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this building was ominous but beautiful .", "storylet_id": "212305"}], [{"original_text": "The sun hit the water just right that day.", "album_id": "72157602100596844", "photo_flickr_id": "1417822547", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42461", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sun hit the water just right that day .", "storylet_id": "212306"}], [{"original_text": "This view of the building makes one really appreciate the architecture.", "album_id": "72157602100596844", "photo_flickr_id": "1417822875", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42461", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this view of the building makes one really appreciate the architecture .", "storylet_id": "212307"}], [{"original_text": "You can never go wrong by bringing a guitar.", "album_id": "72157602100596844", "photo_flickr_id": "1418706850", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42461", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you can never go wrong by bringing a guitar .", "storylet_id": "212308"}], [{"original_text": "We marveled at this piece of art. ", "album_id": "72157602100596844", "photo_flickr_id": "1418707094", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42461", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we marveled at this piece of art .", "storylet_id": "212309"}], [{"original_text": "I took a trip through an old medieval town, and took pictures of an old castle.", "album_id": "72157602100596844", "photo_flickr_id": "1417822317", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42462", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a trip through an old medieval town , and took pictures of an old castle .", "storylet_id": "212310"}], [{"original_text": "There was a bridge running over the small river that ran through the town.", "album_id": "72157602100596844", "photo_flickr_id": "1417822547", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42462", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a bridge running over the small river that ran through the town .", "storylet_id": "212311"}], [{"original_text": "Nearby was a very old cathedral that I absolutely loved.", "album_id": "72157602100596844", "photo_flickr_id": "1417822875", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42462", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nearby was a very old cathedral that i absolutely loved .", "storylet_id": "212312"}], [{"original_text": "My friend gave me a guitar, which I brought with me to play at night.", "album_id": "72157602100596844", "photo_flickr_id": "1418706850", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42462", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friend gave me a guitar , which i brought with me to play at night .", "storylet_id": "212313"}], [{"original_text": "In the center of town was an art installation inspired by the decorations on the cathedral.", "album_id": "72157602100596844", "photo_flickr_id": "1418707094", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "42462", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the center of town was an art installation inspired by the decorations on the cathedral .", "storylet_id": "212314"}], [{"original_text": "This coastal city had a lot of old buildings. ", "album_id": "72157602100596844", "photo_flickr_id": "1417822317", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42463", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this coastal city had a lot of old buildings .", "storylet_id": "212315"}], [{"original_text": "The views from the rocks of the beach were epic.", "album_id": "72157602100596844", "photo_flickr_id": "1417822387", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42463", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the views from the rocks of the beach were epic .", "storylet_id": "212316"}], [{"original_text": "The city had such historic value that people would come to visit just to see the buildings.", "album_id": "72157602100596844", "photo_flickr_id": "1417822547", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42463", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the city had such historic value that people would come to visit just to see the buildings .", "storylet_id": "212317"}], [{"original_text": "This old factory had been the bread and butter for workers in the late 19th century. ", "album_id": "72157602100596844", "photo_flickr_id": "1417823397", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42463", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this old factory had been the bread and butter for workers in the late 19th century .", "storylet_id": "212318"}], [{"original_text": "The churches were ornate and made of stone. ", "album_id": "72157602100596844", "photo_flickr_id": "1418707094", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42463", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the churches were ornate and made of stone .", "storylet_id": "212319"}], [{"original_text": "The woman was touring the city.", "album_id": "72157602100596844", "photo_flickr_id": "1417822317", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42464", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the woman was touring the city .", "storylet_id": "212320"}], [{"original_text": "Her first stop was the beach.", "album_id": "72157602100596844", "photo_flickr_id": "1417822387", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42464", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her first stop was the beach .", "storylet_id": "212321"}], [{"original_text": "Then she went downtown.", "album_id": "72157602100596844", "photo_flickr_id": "1417822547", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42464", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then she went downtown .", "storylet_id": "212322"}], [{"original_text": "She saw some amazing old buildings.", "album_id": "72157602100596844", "photo_flickr_id": "1417823397", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42464", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she saw some amazing old buildings .", "storylet_id": "212323"}], [{"original_text": "She saw some detailed statues.", "album_id": "72157602100596844", "photo_flickr_id": "1418707094", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42464", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she saw some detailed statues .", "storylet_id": "212324"}], [{"original_text": "Today we took the Holidays Afloat day trip on the lake.", "album_id": "44488", "photo_flickr_id": "1751556", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42465", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we took the holidays afloat day trip on the lake .", "storylet_id": "212325"}], [{"original_text": "We loved swimming in the blue water.", "album_id": "44488", "photo_flickr_id": "1751522", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42465", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we loved swimming in the blue water .", "storylet_id": "212326"}], [{"original_text": "We also had fun fishing. Even if our fish was so small.", "album_id": "44488", "photo_flickr_id": "1751524", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42465", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also had fun fishing . even if our fish was so small .", "storylet_id": "212327"}], [{"original_text": "We settled on a more substantial dinner.", "album_id": "44488", "photo_flickr_id": "1751535", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42465", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we settled on a more substantial dinner .", "storylet_id": "212328"}], [{"original_text": "A moonlight ride was a beautiful ending to the day.", "album_id": "44488", "photo_flickr_id": "1751494", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42465", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a moonlight ride was a beautiful ending to the day .", "storylet_id": "212329"}], [{"original_text": "The day started by an amazing boat trip with friends.", "album_id": "44488", "photo_flickr_id": "1751483", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42466", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day started by an amazing boat trip with friends .", "storylet_id": "212330"}], [{"original_text": "john couldn't resist, he had to test the water.", "album_id": "44488", "photo_flickr_id": "1751497", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42466", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "john could n't resist , he had to test the water .", "storylet_id": "212331"}], [{"original_text": "At sunset, Mathew took a break and gave Chelsea the Captain role.", "album_id": "44488", "photo_flickr_id": "1751500", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42466", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at sunset , [male] took a break and gave organization the captain role .", "storylet_id": "212332"}], [{"original_text": "The girls enjoying a beer while admiring the lagoon.", "album_id": "44488", "photo_flickr_id": "1751494", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42466", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the girls enjoying a beer while admiring the lagoon .", "storylet_id": "212333"}], [{"original_text": "Tony getting pretty drunk because and was getting pretty sea sick. ", "album_id": "44488", "photo_flickr_id": "1751516", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "42466", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] getting pretty drunk because and was getting pretty sea sick .", "storylet_id": "212334"}], [{"original_text": "Holidays Afloat is a popular boat many of the tourists use.", "album_id": "44488", "photo_flickr_id": "1751556", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42467", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "holidays afloat is a popular boat many of the tourists use .", "storylet_id": "212335"}], [{"original_text": "You can take a dip in the water by jumping off the side.", "album_id": "44488", "photo_flickr_id": "1751522", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42467", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you can take a dip in the water by jumping off the side .", "storylet_id": "212336"}], [{"original_text": "There is also some great fishing opportunities.", "album_id": "44488", "photo_flickr_id": "1751524", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42467", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is also some great fishing opportunities .", "storylet_id": "212337"}], [{"original_text": "There is even a mini grill for those are in need of a light snack.", "album_id": "44488", "photo_flickr_id": "1751535", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42467", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there is even a mini grill for those are in need of a light snack .", "storylet_id": "212338"}], [{"original_text": "At the end of the night you can sit and have a nice drink.", "album_id": "44488", "photo_flickr_id": "1751494", "setting": "last-3-pick-old-and-tell", "worker_id": "6202PHI7LEDZZTO", "story_id": "42467", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night you can sit and have a nice drink .", "storylet_id": "212339"}], [{"original_text": "We had a cookout on the river yesterday.", "album_id": "44488", "photo_flickr_id": "1751556", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42468", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a cookout on the river yesterday .", "storylet_id": "212340"}], [{"original_text": "All my friends went swimming.", "album_id": "44488", "photo_flickr_id": "1751522", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42468", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all my friends went swimming .", "storylet_id": "212341"}], [{"original_text": "We went fishing for the one that got away.", "album_id": "44488", "photo_flickr_id": "1751524", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42468", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went fishing for the one that got away .", "storylet_id": "212342"}], [{"original_text": "The grill was full of food to eat.", "album_id": "44488", "photo_flickr_id": "1751535", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42468", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the grill was full of food to eat .", "storylet_id": "212343"}], [{"original_text": "When night fell, we were exhausted.", "album_id": "44488", "photo_flickr_id": "1751494", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42468", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when night fell , we were exhausted .", "storylet_id": "212344"}], [{"original_text": "We took the boat out this weekend.", "album_id": "44488", "photo_flickr_id": "1751556", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "42469", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took the boat out this weekend .", "storylet_id": "212345"}], [{"original_text": "The water was so clear, we decided on a swim.", "album_id": "44488", "photo_flickr_id": "1751522", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "42469", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water was so clear , we decided on a swim .", "storylet_id": "212346"}], [{"original_text": "We even did a little bit of fishing.", "album_id": "44488", "photo_flickr_id": "1751524", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "42469", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even did a little bit of fishing .", "storylet_id": "212347"}], [{"original_text": "We cooked up some dinner for us to eat.", "album_id": "44488", "photo_flickr_id": "1751535", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "42469", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we cooked up some dinner for us to eat .", "storylet_id": "212348"}], [{"original_text": "And at the end of the night we had a few drink and talked through the night.", "album_id": "44488", "photo_flickr_id": "1751494", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "42469", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and at the end of the night we had a few drink and talked through the night .", "storylet_id": "212349"}], [{"original_text": "This is where we went on vacation today.", "album_id": "45594", "photo_flickr_id": "1798518", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42470", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is where we went on vacation today .", "storylet_id": "212350"}], [{"original_text": "It looks warm and tropical.", "album_id": "45594", "photo_flickr_id": "1798521", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42470", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it looks warm and tropical .", "storylet_id": "212351"}], [{"original_text": "It was actually a little cold outside.", "album_id": "45594", "photo_flickr_id": "1798396", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42470", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was actually a little cold outside .", "storylet_id": "212352"}], [{"original_text": "Since it was to cold to swim, we went back to the bed and breakfast.", "album_id": "45594", "photo_flickr_id": "1798486", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42470", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "since it was to cold to swim , we went back to the bed and breakfast .", "storylet_id": "212353"}], [{"original_text": "My girlfriend loves to play pool so we spent the evening inside playing for hours.", "album_id": "45594", "photo_flickr_id": "1798532", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42470", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my girlfriend loves to play pool so we spent the evening inside playing for hours .", "storylet_id": "212354"}], [{"original_text": "Me and my husband decided to stay the weekend at my parents beach house with them.", "album_id": "45594", "photo_flickr_id": "1798402", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "42471", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and my husband decided to stay the weekend at my parents beach house with them .", "storylet_id": "212355"}], [{"original_text": "We were getting very excited as we were approaching the beach house.", "album_id": "45594", "photo_flickr_id": "1798486", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "42471", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were getting very excited as we were approaching the beach house .", "storylet_id": "212356"}], [{"original_text": "As soon as we got to the beach house we decided to make some drinks and play some pool.", "album_id": "45594", "photo_flickr_id": "1798519", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "42471", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as soon as we got to the beach house we decided to make some drinks and play some pool .", "storylet_id": "212357"}], [{"original_text": "As the Sun was going down we decided to take a stroll on the beach.", "album_id": "45594", "photo_flickr_id": "1798325", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "42471", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the sun was going down we decided to take a stroll on the beach .", "storylet_id": "212358"}], [{"original_text": "The view and the lights were beautiful.", "album_id": "45594", "photo_flickr_id": "1798324", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "42471", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view and the lights were beautiful .", "storylet_id": "212359"}], [{"original_text": "The ocean looked so amazing on our first day to the beach.", "album_id": "45594", "photo_flickr_id": "1798518", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42472", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ocean looked so amazing on our first day to the beach .", "storylet_id": "212360"}], [{"original_text": "We all just really wanted to swim.", "album_id": "45594", "photo_flickr_id": "1798521", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42472", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all just really wanted to swim .", "storylet_id": "212361"}], [{"original_text": "We were excited though by just being there.", "album_id": "45594", "photo_flickr_id": "1798396", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42472", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were excited though by just being there .", "storylet_id": "212362"}], [{"original_text": "Our beach house was pretty large.", "album_id": "45594", "photo_flickr_id": "1798486", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42472", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our beach house was pretty large .", "storylet_id": "212363"}], [{"original_text": "And it had a pool table which kept us occupied. ", "album_id": "45594", "photo_flickr_id": "1798532", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42472", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and it had a pool table which kept us occupied .", "storylet_id": "212364"}], [{"original_text": "It was fascinating just to watch the ocean. The tide came in.", "album_id": "45594", "photo_flickr_id": "1798518", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "42473", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was fascinating just to watch the ocean . the tide came in .", "storylet_id": "212365"}], [{"original_text": "And later, we watched the tide go out again.", "album_id": "45594", "photo_flickr_id": "1798521", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "42473", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and later , we watched the tide go out again .", "storylet_id": "212366"}], [{"original_text": "It was so sunny that we didn't notice, at first, how chilly it was!", "album_id": "45594", "photo_flickr_id": "1798396", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "42473", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was so sunny that we did n't notice , at first , how chilly it was !", "storylet_id": "212367"}], [{"original_text": "After a while we headed back to the beach house to warm up.", "album_id": "45594", "photo_flickr_id": "1798486", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "42473", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a while we headed back to the beach house to warm up .", "storylet_id": "212368"}], [{"original_text": "That afternoon we played pool with Peter and Jane -- they're great!", "album_id": "45594", "photo_flickr_id": "1798532", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "42473", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that afternoon we played pool with [male] and [female] -- they 're great !", "storylet_id": "212369"}], [{"original_text": "We sat on the beach and watched the ocean.", "album_id": "45594", "photo_flickr_id": "1798518", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "42474", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we sat on the beach and watched the ocean .", "storylet_id": "212370"}], [{"original_text": "The waves from the ocean were very beautiful today.", "album_id": "45594", "photo_flickr_id": "1798521", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "42474", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the waves from the ocean were very beautiful today .", "storylet_id": "212371"}], [{"original_text": "Hung out with my friend today, she was being funny.", "album_id": "45594", "photo_flickr_id": "1798396", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "42474", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "hung out with my friend today , she was being funny .", "storylet_id": "212372"}], [{"original_text": "This would be an awesome house to live in, i'm jealous.", "album_id": "45594", "photo_flickr_id": "1798486", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "42474", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this would be an awesome house to live in , i 'm jealous .", "storylet_id": "212373"}], [{"original_text": "Played pool tonight with my friends, great time!", "album_id": "45594", "photo_flickr_id": "1798532", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "42474", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "played pool tonight with my friends , great time !", "storylet_id": "212374"}], [{"original_text": "It was my last day in Egypt.", "album_id": "51698", "photo_flickr_id": "2057107", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "42475", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was my last day in location .", "storylet_id": "212375"}], [{"original_text": "I tried to convince this beautiful lady to come back home with me.", "album_id": "51698", "photo_flickr_id": "2057394", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "42475", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i tried to convince this beautiful lady to come back home with me .", "storylet_id": "212376"}], [{"original_text": "I met with some of the local children for one last good bye.", "album_id": "51698", "photo_flickr_id": "2056901", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "42475", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i met with some of the local children for one last good bye .", "storylet_id": "212377"}], [{"original_text": "I decided to take one last final camel ride.", "album_id": "51698", "photo_flickr_id": "2057317", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "42475", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i decided to take one last final camel ride .", "storylet_id": "212378"}], [{"original_text": "My brother came and got me and told me it was time to head back to the hotel and get ready to go to the airport.", "album_id": "51698", "photo_flickr_id": "2057628", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "42475", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my brother came and got me and told me it was time to head back to the hotel and get ready to go to the airport .", "storylet_id": "212379"}], [{"original_text": "A camel is a great way to visit the desert. ", "album_id": "51698", "photo_flickr_id": "2057830", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "42476", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a camel is a great way to visit the desert .", "storylet_id": "212380"}], [{"original_text": "This is the start of our exotic journey.", "album_id": "51698", "photo_flickr_id": "2057926", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "42476", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the start of our exotic journey .", "storylet_id": "212381"}], [{"original_text": "We decided to ride horse, because the camels were all rented. ", "album_id": "51698", "photo_flickr_id": "2057628", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "42476", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we decided to ride horse , because the camels were all rented .", "storylet_id": "212382"}], [{"original_text": "Time for a break to get some water. ", "album_id": "51698", "photo_flickr_id": "2057541", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "42476", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "time for a break to get some water .", "storylet_id": "212383"}], [{"original_text": "This girls was beautiful and very friendly. ", "album_id": "51698", "photo_flickr_id": "2057394", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "42476", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this girls was beautiful and very friendly .", "storylet_id": "212384"}], [{"original_text": "We are having a trip to the desert today.", "album_id": "51698", "photo_flickr_id": "2057107", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42477", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are having a trip to the desert today .", "storylet_id": "212385"}], [{"original_text": "Many of our classmates are going.", "album_id": "51698", "photo_flickr_id": "2057394", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42477", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of our classmates are going .", "storylet_id": "212386"}], [{"original_text": "There are lots of natives hanging around, they are very friendly.", "album_id": "51698", "photo_flickr_id": "2056901", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42477", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are lots of natives hanging around , they are very friendly .", "storylet_id": "212387"}], [{"original_text": "I got to ride a camel for the first time.", "album_id": "51698", "photo_flickr_id": "2057317", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42477", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i got to ride a camel for the first time .", "storylet_id": "212388"}], [{"original_text": "As well as horses, it was a fun day.", "album_id": "51698", "photo_flickr_id": "2057628", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42477", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as well as horses , it was a fun day .", "storylet_id": "212389"}], [{"original_text": "It 's very hot in the desert hence the head covering and sunglasses.", "album_id": "51698", "photo_flickr_id": "2057107", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42478", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's very hot in the desert hence the head covering and sunglasses .", "storylet_id": "212390"}], [{"original_text": "Two friends meet in her native country.", "album_id": "51698", "photo_flickr_id": "2057394", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42478", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "two friends meet in her native country .", "storylet_id": "212391"}], [{"original_text": "A picture with the village children.", "album_id": "51698", "photo_flickr_id": "2056901", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42478", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a picture with the village children .", "storylet_id": "212392"}], [{"original_text": "Learning to ride a camel is tricky.", "album_id": "51698", "photo_flickr_id": "2057317", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42478", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "learning to ride a camel is tricky .", "storylet_id": "212393"}], [{"original_text": "A nighttime horse ride is relaxing.", "album_id": "51698", "photo_flickr_id": "2057628", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42478", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a nighttime horse ride is relaxing .", "storylet_id": "212394"}], [{"original_text": "Here is a picture of me in the desert!", "album_id": "51698", "photo_flickr_id": "2057107", "setting": "last-3-pick-old-and-tell", "worker_id": "5RCNZO7WNSMIL44", "story_id": "42479", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is a picture of me in the desert !", "storylet_id": "212395"}], [{"original_text": "I met this beautiful woman and she agreed to take a photo with me.", "album_id": "51698", "photo_flickr_id": "2057394", "setting": "last-3-pick-old-and-tell", "worker_id": "5RCNZO7WNSMIL44", "story_id": "42479", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i met this beautiful woman and she agreed to take a photo with me .", "storylet_id": "212396"}], [{"original_text": "Here I am with the local children after a game of football!", "album_id": "51698", "photo_flickr_id": "2056901", "setting": "last-3-pick-old-and-tell", "worker_id": "5RCNZO7WNSMIL44", "story_id": "42479", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here i am with the local children after a game of football !", "storylet_id": "212397"}], [{"original_text": "Later, our tour guide recommended a ride on the camels.", "album_id": "51698", "photo_flickr_id": "2057317", "setting": "last-3-pick-old-and-tell", "worker_id": "5RCNZO7WNSMIL44", "story_id": "42479", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later , our tour guide recommended a ride on the camels .", "storylet_id": "212398"}], [{"original_text": "We went riding for our last activity of the night, it was surprisingly cool! ", "album_id": "51698", "photo_flickr_id": "2057628", "setting": "last-3-pick-old-and-tell", "worker_id": "5RCNZO7WNSMIL44", "story_id": "42479", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we went riding for our last activity of the night , it was surprisingly cool !", "storylet_id": "212399"}], [{"original_text": "The view from the trails.", "album_id": "72157629147970635", "photo_flickr_id": "6805850393", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42480", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the view from the trails .", "storylet_id": "212400"}], [{"original_text": "Popping a wheelie on the side of the path.", "album_id": "72157629147970635", "photo_flickr_id": "6805857927", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42480", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "popping a wheelie on the side of the path .", "storylet_id": "212401"}], [{"original_text": "speeding down the edge of the path.", "album_id": "72157629147970635", "photo_flickr_id": "6805868479", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42480", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "speeding down the edge of the path .", "storylet_id": "212402"}], [{"original_text": "Going off some jumps on the trail.", "album_id": "72157629147970635", "photo_flickr_id": "6805886403", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42480", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "going off some jumps on the trail .", "storylet_id": "212403"}], [{"original_text": "Caught some serious air on a ramp.", "album_id": "72157629147970635", "photo_flickr_id": "6805893049", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42480", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "caught some serious air on a ramp .", "storylet_id": "212404"}], [{"original_text": "Terry is going for a bike ride in the mountains.", "album_id": "72157629147970635", "photo_flickr_id": "6805850393", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42481", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is going for a bike ride in the mountains .", "storylet_id": "212405"}], [{"original_text": "Terry getting big air on his bike in the mountains.", "album_id": "72157629147970635", "photo_flickr_id": "6805856583", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42481", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] getting big air on his bike in the mountains .", "storylet_id": "212406"}], [{"original_text": "Terry is really having the time of his life on this bike ride.", "album_id": "72157629147970635", "photo_flickr_id": "6805866237", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42481", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] is really having the time of his life on this bike ride .", "storylet_id": "212407"}], [{"original_text": "Terry heads back down the trail to get to his house.", "album_id": "72157629147970635", "photo_flickr_id": "6805868479", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42481", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] heads back down the trail to get to his house .", "storylet_id": "212408"}], [{"original_text": "Terry does one more big jump to get back to his home.", "album_id": "72157629147970635", "photo_flickr_id": "6805893049", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42481", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] does one more big jump to get back to his home .", "storylet_id": "212409"}], [{"original_text": "On a bright and sunny day it looks good for a bike ride.", "album_id": "72157629147970635", "photo_flickr_id": "6805850393", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42482", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on a bright and sunny day it looks good for a bike ride .", "storylet_id": "212410"}], [{"original_text": "So that`s just what this individual did this morning.", "album_id": "72157629147970635", "photo_flickr_id": "6805857927", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42482", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so that`s just what this individual did this morning .", "storylet_id": "212411"}], [{"original_text": "He and his friend decided to go riding on a dirt trail.", "album_id": "72157629147970635", "photo_flickr_id": "6805868479", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42482", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he and his friend decided to go riding on a dirt trail .", "storylet_id": "212412"}], [{"original_text": "They had fun all day riding their bikes.", "album_id": "72157629147970635", "photo_flickr_id": "6805886403", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42482", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had fun all day riding their bikes .", "storylet_id": "212413"}], [{"original_text": "Doing jumps and tricks are the best things to do.", "album_id": "72157629147970635", "photo_flickr_id": "6805893049", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42482", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "doing jumps and tricks are the best things to do .", "storylet_id": "212414"}], [{"original_text": "Winter time in California means trail riding.", "album_id": "72157629147970635", "photo_flickr_id": "6805850393", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "42483", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "winter time in location means trail riding .", "storylet_id": "212415"}], [{"original_text": "Sometimes I like to show boat a bit.", "album_id": "72157629147970635", "photo_flickr_id": "6805857927", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "42483", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sometimes i like to show boat a bit .", "storylet_id": "212416"}], [{"original_text": "But it's also fun to get a little bit of speed going now and again.", "album_id": "72157629147970635", "photo_flickr_id": "6805868479", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "42483", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but it 's also fun to get a little bit of speed going now and again .", "storylet_id": "212417"}], [{"original_text": "I went for the jump.", "album_id": "72157629147970635", "photo_flickr_id": "6805886403", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "42483", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i went for the jump .", "storylet_id": "212418"}], [{"original_text": "It seemed like I was in the air for ever. Don't worry I stuck the landing like a boss.", "album_id": "72157629147970635", "photo_flickr_id": "6805893049", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "42483", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it seemed like i was in the air for ever . do n't worry i stuck the landing like a boss .", "storylet_id": "212419"}], [{"original_text": "I took a trip to a bike trail today.", "album_id": "72157629147970635", "photo_flickr_id": "6805850393", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "42484", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a trip to a bike trail today .", "storylet_id": "212420"}], [{"original_text": "I brought my favorite BMX style bike.", "album_id": "72157629147970635", "photo_flickr_id": "6805856583", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "42484", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i brought my favorite bmx style bike .", "storylet_id": "212421"}], [{"original_text": "I was able to get going really fast on the trails.", "album_id": "72157629147970635", "photo_flickr_id": "6805866237", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "42484", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was able to get going really fast on the trails .", "storylet_id": "212422"}], [{"original_text": "There were some sweet hills to ride down.", "album_id": "72157629147970635", "photo_flickr_id": "6805868479", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "42484", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were some sweet hills to ride down .", "storylet_id": "212423"}], [{"original_text": "There were even jumps and a realistic track to practice my skills on.", "album_id": "72157629147970635", "photo_flickr_id": "6805893049", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "42484", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were even jumps and a realistic track to practice my skills on .", "storylet_id": "212424"}], [{"original_text": "Everyone is bundled up for the big charity race.", "album_id": "72157623260159343", "photo_flickr_id": "4342674498", "setting": "first-2-pick-and-tell", "worker_id": "XLW7EZ86AG0TR70", "story_id": "42485", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone is bundled up for the big charity race .", "storylet_id": "212425"}], [{"original_text": "The participants make their way across the quad.", "album_id": "72157623260159343", "photo_flickr_id": "4342673086", "setting": "first-2-pick-and-tell", "worker_id": "XLW7EZ86AG0TR70", "story_id": "42485", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the participants make their way across the quad .", "storylet_id": "212426"}], [{"original_text": "There is a long line of racers but everyone is a winner.", "album_id": "72157623260159343", "photo_flickr_id": "4341932305", "setting": "first-2-pick-and-tell", "worker_id": "XLW7EZ86AG0TR70", "story_id": "42485", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is a long line of racers but everyone is a winner .", "storylet_id": "212427"}], [{"original_text": "After the event, people relax and enjoy a drink at the local club.", "album_id": "72157623260159343", "photo_flickr_id": "4342676114", "setting": "first-2-pick-and-tell", "worker_id": "XLW7EZ86AG0TR70", "story_id": "42485", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the event , people relax and enjoy a drink at the local club .", "storylet_id": "212428"}], [{"original_text": "Now the DJ gets busy on the turntables and gets the crowd going.", "album_id": "72157623260159343", "photo_flickr_id": "4341941793", "setting": "first-2-pick-and-tell", "worker_id": "XLW7EZ86AG0TR70", "story_id": "42485", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now the dj gets busy on the turntables and gets the crowd going .", "storylet_id": "212429"}], [{"original_text": "It is a long walk to the bar.", "album_id": "72157623260159343", "photo_flickr_id": "4342673086", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42486", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is a long walk to the bar .", "storylet_id": "212430"}], [{"original_text": "Many people were going.", "album_id": "72157623260159343", "photo_flickr_id": "4341932305", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42486", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people were going .", "storylet_id": "212431"}], [{"original_text": "They had a big menu.", "album_id": "72157623260159343", "photo_flickr_id": "4342662574", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42486", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a big menu .", "storylet_id": "212432"}], [{"original_text": "The place was packed.", "album_id": "72157623260159343", "photo_flickr_id": "4342678942", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42486", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the place was packed .", "storylet_id": "212433"}], [{"original_text": "There were some games there too.", "album_id": "72157623260159343", "photo_flickr_id": "4341943611", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42486", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were some games there too .", "storylet_id": "212434"}], [{"original_text": "The day started out a bit hectic, everyone was a little confused.", "album_id": "72157623260159343", "photo_flickr_id": "4342674498", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42487", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day started out a bit hectic , everyone was a little confused .", "storylet_id": "212435"}], [{"original_text": "They had a long cold journey ahead of them.", "album_id": "72157623260159343", "photo_flickr_id": "4342673086", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42487", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a long cold journey ahead of them .", "storylet_id": "212436"}], [{"original_text": "They had to walk a bit of a distance to get to their destination.", "album_id": "72157623260159343", "photo_flickr_id": "4341932305", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42487", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had to walk a bit of a distance to get to their destination .", "storylet_id": "212437"}], [{"original_text": "Once there, everyone pretty much let loose and got comfortable.", "album_id": "72157623260159343", "photo_flickr_id": "4342676114", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42487", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once there , everyone pretty much let loose and got comfortable .", "storylet_id": "212438"}], [{"original_text": "The D.J.`s started to set up their booth for a good time and good music.", "album_id": "72157623260159343", "photo_flickr_id": "4341941793", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42487", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the d.j.`s started to set up their booth for a good time and good music .", "storylet_id": "212439"}], [{"original_text": "There was a protest held outside yesterday.", "album_id": "72157623260159343", "photo_flickr_id": "4342674498", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "42488", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a protest held outside yesterday .", "storylet_id": "212440"}], [{"original_text": "Quite a few people showed up, even though it was snowing.", "album_id": "72157623260159343", "photo_flickr_id": "4342673086", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "42488", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "quite a few people showed up , even though it was snowing .", "storylet_id": "212441"}], [{"original_text": "At the end of the protest people left to go celebrate.", "album_id": "72157623260159343", "photo_flickr_id": "4341932305", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "42488", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the end of the protest people left to go celebrate .", "storylet_id": "212442"}], [{"original_text": "They went to a local bar to have a good time.", "album_id": "72157623260159343", "photo_flickr_id": "4342676114", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "42488", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they went to a local bar to have a good time .", "storylet_id": "212443"}], [{"original_text": "There was a DJ there playing some good songs.", "album_id": "72157623260159343", "photo_flickr_id": "4341941793", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "42488", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a dj there playing some good songs .", "storylet_id": "212444"}], [{"original_text": "A group of people hang around waiting for the pub to open.", "album_id": "72157623260159343", "photo_flickr_id": "4342674498", "setting": "last-3-pick-old-and-tell", "worker_id": "X5LAJG4V0KRODQZ", "story_id": "42489", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of people hang around waiting for the pub to open .", "storylet_id": "212445"}], [{"original_text": "Young people make their way to the pub to relax and enjoy themselves.", "album_id": "72157623260159343", "photo_flickr_id": "4342673086", "setting": "last-3-pick-old-and-tell", "worker_id": "X5LAJG4V0KRODQZ", "story_id": "42489", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "young people make their way to the pub to relax and enjoy themselves .", "storylet_id": "212446"}], [{"original_text": "Many people are seen marching through the snow towards the place of establishment.", "album_id": "72157623260159343", "photo_flickr_id": "4341932305", "setting": "last-3-pick-old-and-tell", "worker_id": "X5LAJG4V0KRODQZ", "story_id": "42489", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many people are seen marching through the snow towards the place of establishment .", "storylet_id": "212447"}], [{"original_text": "Inside people are seen drinking and socializing with their friends.", "album_id": "72157623260159343", "photo_flickr_id": "4342676114", "setting": "last-3-pick-old-and-tell", "worker_id": "X5LAJG4V0KRODQZ", "story_id": "42489", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "inside people are seen drinking and socializing with their friends .", "storylet_id": "212448"}], [{"original_text": "Some of the guys decided to take out some turntables to entertain everyone.", "album_id": "72157623260159343", "photo_flickr_id": "4341941793", "setting": "last-3-pick-old-and-tell", "worker_id": "X5LAJG4V0KRODQZ", "story_id": "42489", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the guys decided to take out some turntables to entertain everyone .", "storylet_id": "212449"}], [{"original_text": "It was a beautiful day outside and the man decided to take his classic car out for a spin.", "album_id": "72157594469687683", "photo_flickr_id": "351826246", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "42490", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful day outside and the man decided to take his classic car out for a spin .", "storylet_id": "212450"}], [{"original_text": "He drove to San Francisco across the iconic Golden Gate bridge. ", "album_id": "72157594469687683", "photo_flickr_id": "351827838", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "42490", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he drove to location location across the iconic location location bridge .", "storylet_id": "212451"}], [{"original_text": "He then headed onto the scenic US 101 where he drove along the coast. ", "album_id": "72157594469687683", "photo_flickr_id": "351824731", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "42490", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he then headed onto the scenic location 101 where he drove along the coast .", "storylet_id": "212452"}], [{"original_text": "The drive was beautiful and full of awe picturesque views.", "album_id": "72157594469687683", "photo_flickr_id": "351831172", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "42490", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the drive was beautiful and full of awe picturesque views .", "storylet_id": "212453"}], [{"original_text": "The man loved his car very much and all the memories it provided. ", "album_id": "72157594469687683", "photo_flickr_id": "351830847", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "42490", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the man loved his car very much and all the memories it provided .", "storylet_id": "212454"}], [{"original_text": "This is my car. I really love my car.", "album_id": "72157594469687683", "photo_flickr_id": "351830847", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "42491", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my car . i really love my car .", "storylet_id": "212455"}], [{"original_text": "Here is a picture of the steering wheel. I use it to control where my car is going.", "album_id": "72157594469687683", "photo_flickr_id": "351826246", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "42491", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is a picture of the steering wheel . i use it to control where my car is going .", "storylet_id": "212456"}], [{"original_text": "I drive south on highway 101.", "album_id": "72157594469687683", "photo_flickr_id": "351824731", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "42491", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i drive south on highway 101 .", "storylet_id": "212457"}], [{"original_text": "Even though I have a flashy car and love to drive, I always obey the speed limit.", "album_id": "72157594469687683", "photo_flickr_id": "351828543", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "42491", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even though i have a flashy car and love to drive , i always obey the speed limit .", "storylet_id": "212458"}], [{"original_text": "I finally arrive at my destination.", "album_id": "72157594469687683", "photo_flickr_id": "351828273", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "42491", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i finally arrive at my destination .", "storylet_id": "212459"}], [{"original_text": "Recently, I bought a restored muscle car.", "album_id": "72157594469687683", "photo_flickr_id": "351826246", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "42492", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "recently , i bought a restored muscle car .", "storylet_id": "212460"}], [{"original_text": "I decided to take it on a road trip to see what it can do!", "album_id": "72157594469687683", "photo_flickr_id": "351827838", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "42492", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i decided to take it on a road trip to see what it can do !", "storylet_id": "212461"}], [{"original_text": "I took route 101, a big highway so I could really see how the car runs.", "album_id": "72157594469687683", "photo_flickr_id": "351824731", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "42492", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took route 101 , a big highway so i could really see how the car runs .", "storylet_id": "212462"}], [{"original_text": "I drove for a while, and saw alot of amazing sights!", "album_id": "72157594469687683", "photo_flickr_id": "351831172", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "42492", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i drove for a while , and saw alot of amazing sights !", "storylet_id": "212463"}], [{"original_text": "I decided to stop in San Francisco. I parked by the golden gate bridge and decided to head back home. ", "album_id": "72157594469687683", "photo_flickr_id": "351830847", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "42492", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to stop in location location . i parked by the golden gate bridge and decided to head back home .", "storylet_id": "212464"}], [{"original_text": "We rented a very fancy car for our big road trip!", "album_id": "72157594469687683", "photo_flickr_id": "351826246", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42493", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we rented a very fancy car for our big road trip !", "storylet_id": "212465"}], [{"original_text": "We loved crossing a big bridge in our performance car.", "album_id": "72157594469687683", "photo_flickr_id": "351827838", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42493", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we loved crossing a big bridge in our performance car .", "storylet_id": "212466"}], [{"original_text": "We were excited when we got to Route 101, as that had been a dream of ours.", "album_id": "72157594469687683", "photo_flickr_id": "351824731", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42493", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were excited when we got to route 101 , as that had been a dream of ours .", "storylet_id": "212467"}], [{"original_text": "The open road and the ocean in the distance were an amazing view.", "album_id": "72157594469687683", "photo_flickr_id": "351831172", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42493", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the open road and the ocean in the distance were an amazing view .", "storylet_id": "212468"}], [{"original_text": "We stopped to just take a picture of our car, to remember always what a great day it had been.", "album_id": "72157594469687683", "photo_flickr_id": "351830847", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42493", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we stopped to just take a picture of our car , to remember always what a great day it had been .", "storylet_id": "212469"}], [{"original_text": "It was a beautiful Saturday, so I hopped into my convertible for drive around the San Francisco area.", "album_id": "72157594469687683", "photo_flickr_id": "351826246", "setting": "last-3-pick-old-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "42494", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful saturday , so i hopped into my convertible for drive around the location location area .", "storylet_id": "212470"}], [{"original_text": "Once I made it to the Golden Gate Bridge, I knew that I getting close to my ultimate destination.", "album_id": "72157594469687683", "photo_flickr_id": "351827838", "setting": "last-3-pick-old-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "42494", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once i made it to the location location location , i knew that i getting close to my ultimate destination .", "storylet_id": "212471"}], [{"original_text": "I headed towards the 101 South to find my favorite driving location.", "album_id": "72157594469687683", "photo_flickr_id": "351824731", "setting": "last-3-pick-old-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "42494", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i headed towards the 101 south to find my favorite driving location .", "storylet_id": "212472"}], [{"original_text": "Finally, I was joyfully driving along the twisting roads that followed the coastline. ", "album_id": "72157594469687683", "photo_flickr_id": "351831172", "setting": "last-3-pick-old-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "42494", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally , i was joyfully driving along the twisting roads that followed the coastline .", "storylet_id": "212473"}], [{"original_text": "At the end of the day, I stopped to take a photo of my favorite car with the city and bridge as a stunning backdrop.", "album_id": "72157594469687683", "photo_flickr_id": "351830847", "setting": "last-3-pick-old-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "42494", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , i stopped to take a photo of my favorite car with the city and bridge as a stunning backdrop .", "storylet_id": "212474"}], [{"original_text": "The racers are coming up.", "album_id": "72157594480294603", "photo_flickr_id": "353916430", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42495", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the racers are coming up .", "storylet_id": "212475"}], [{"original_text": "Everyone is trying very had to win the race.", "album_id": "72157594480294603", "photo_flickr_id": "353919498", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42495", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone is trying very had to win the race .", "storylet_id": "212476"}], [{"original_text": "These two are on the same team.", "album_id": "72157594480294603", "photo_flickr_id": "353955998", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42495", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these two are on the same team .", "storylet_id": "212477"}], [{"original_text": "They both seem very determined.", "album_id": "72157594480294603", "photo_flickr_id": "353956801", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42495", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they both seem very determined .", "storylet_id": "212478"}], [{"original_text": "This man is about to win!", "album_id": "72157594480294603", "photo_flickr_id": "353949921", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42495", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this man is about to win !", "storylet_id": "212479"}], [{"original_text": "Today was the big race.", "album_id": "72157594480294603", "photo_flickr_id": "353916430", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42496", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the big race .", "storylet_id": "212480"}], [{"original_text": "The guy in green did well.", "album_id": "72157594480294603", "photo_flickr_id": "353919498", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42496", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guy in green did well .", "storylet_id": "212481"}], [{"original_text": "The guy in white did ok.", "album_id": "72157594480294603", "photo_flickr_id": "353949921", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42496", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guy in white did ok .", "storylet_id": "212482"}], [{"original_text": "The blue team stayed together.", "album_id": "72157594480294603", "photo_flickr_id": "353955998", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42496", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the blue team stayed together .", "storylet_id": "212483"}], [{"original_text": "The guy in red was really slow.", "album_id": "72157594480294603", "photo_flickr_id": "354159185", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42496", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the guy in red was really slow .", "storylet_id": "212484"}], [{"original_text": "Me and my friends went cycling one day.", "album_id": "72157594480294603", "photo_flickr_id": "353916430", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "42497", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and my friends went cycling one day .", "storylet_id": "212485"}], [{"original_text": "My friend, Adam is a really good cyclist.", "album_id": "72157594480294603", "photo_flickr_id": "353919498", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "42497", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend , [male] is a really good cyclist .", "storylet_id": "212486"}], [{"original_text": "He eventually fell behind to Bob, who is probably the best in our group.", "album_id": "72157594480294603", "photo_flickr_id": "353955998", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "42497", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he eventually fell behind to [male] , who is probably the best in our group .", "storylet_id": "212487"}], [{"original_text": "Bob maintained the lead for the majority of the race.", "album_id": "72157594480294603", "photo_flickr_id": "353956801", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "42497", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] maintained the lead for the majority of the race .", "storylet_id": "212488"}], [{"original_text": "I had to go slow, because I had an injury. We all had a great time cycling!", "album_id": "72157594480294603", "photo_flickr_id": "353949921", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "42497", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had to go slow , because i had an injury . we all had a great time cycling !", "storylet_id": "212489"}], [{"original_text": "Two groups are competing in a cycle marathon.", "album_id": "72157594480294603", "photo_flickr_id": "353916430", "setting": "last-3-pick-old-and-tell", "worker_id": "MY3FE4C5A49KD4R", "story_id": "42498", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two groups are competing in a cycle marathon .", "storylet_id": "212490"}], [{"original_text": "Up front in the guy wearing green.", "album_id": "72157594480294603", "photo_flickr_id": "353919498", "setting": "last-3-pick-old-and-tell", "worker_id": "MY3FE4C5A49KD4R", "story_id": "42498", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "up front in the guy wearing green .", "storylet_id": "212491"}], [{"original_text": "Close behind is the team wearing blue.", "album_id": "72157594480294603", "photo_flickr_id": "353955998", "setting": "last-3-pick-old-and-tell", "worker_id": "MY3FE4C5A49KD4R", "story_id": "42498", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "close behind is the team wearing blue .", "storylet_id": "212492"}], [{"original_text": "Determined to win, they work together to pass the other cyclists.", "album_id": "72157594480294603", "photo_flickr_id": "353956801", "setting": "last-3-pick-old-and-tell", "worker_id": "MY3FE4C5A49KD4R", "story_id": "42498", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "determined to win , they work together to pass the other cyclists .", "storylet_id": "212493"}], [{"original_text": "Behind the blue team is the lone man in white. Don't give up!", "album_id": "72157594480294603", "photo_flickr_id": "353949921", "setting": "last-3-pick-old-and-tell", "worker_id": "MY3FE4C5A49KD4R", "story_id": "42498", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "behind the blue team is the lone man in white . do n't give up !", "storylet_id": "212494"}], [{"original_text": "A group of bikers enjoy a ride on the road.", "album_id": "72157594480294603", "photo_flickr_id": "353916430", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42499", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of bikers enjoy a ride on the road .", "storylet_id": "212495"}], [{"original_text": "They are having a great time seeing scenery and getting exercise.", "album_id": "72157594480294603", "photo_flickr_id": "353919498", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42499", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are having a great time seeing scenery and getting exercise .", "storylet_id": "212496"}], [{"original_text": "They are properly wearing helmets as well as bike riding outfits.", "album_id": "72157594480294603", "photo_flickr_id": "353955998", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42499", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they are properly wearing helmets as well as bike riding outfits .", "storylet_id": "212497"}], [{"original_text": "Even though the ride is hard it is very enjoyable.", "album_id": "72157594480294603", "photo_flickr_id": "353956801", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42499", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even though the ride is hard it is very enjoyable .", "storylet_id": "212498"}], [{"original_text": "There is a straggler bringing up the rear but he is enjoying himself as well.", "album_id": "72157594480294603", "photo_flickr_id": "353949921", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42499", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is a straggler bringing up the rear but he is enjoying himself as well .", "storylet_id": "212499"}], [{"original_text": "The race underway.", "album_id": "72157628828831189", "photo_flickr_id": "6679144201", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42500", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the race underway .", "storylet_id": "212500"}], [{"original_text": "Some runners ran with their children.", "album_id": "72157628828831189", "photo_flickr_id": "6679164365", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42500", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some runners ran with their children .", "storylet_id": "212501"}], [{"original_text": "Some even in strollers.", "album_id": "72157628828831189", "photo_flickr_id": "6679171745", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42500", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some even in strollers .", "storylet_id": "212502"}], [{"original_text": "Others with umbrellas.", "album_id": "72157628828831189", "photo_flickr_id": "6679166943", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42500", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others with umbrellas .", "storylet_id": "212503"}], [{"original_text": "The winners of the event.", "album_id": "72157628828831189", "photo_flickr_id": "6679181549", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42500", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the winners of the event .", "storylet_id": "212504"}], [{"original_text": "It was a very dreary day that the race rook place. ", "album_id": "72157628828831189", "photo_flickr_id": "6679138833", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42501", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a very dreary day that the race rook place .", "storylet_id": "212505"}], [{"original_text": "Eve little kids were allowed to participate in the challenge. ", "album_id": "72157628828831189", "photo_flickr_id": "6679148865", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42501", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "eve little kids were allowed to participate in the challenge .", "storylet_id": "212506"}], [{"original_text": "It started to rain but luckily some people brought their umbrellas. ", "album_id": "72157628828831189", "photo_flickr_id": "6679166943", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42501", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it started to rain but luckily some people brought their umbrellas .", "storylet_id": "212507"}], [{"original_text": "1st, 2nd and 3rd place for one of the events held earlier. ", "album_id": "72157628828831189", "photo_flickr_id": "6679178631", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42501", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "1st , 2nd and 3rd place for one of the events held earlier .", "storylet_id": "212508"}], [{"original_text": "This guy one first place in the final. ", "album_id": "72157628828831189", "photo_flickr_id": "6679189429", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42501", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this guy one first place in the final .", "storylet_id": "212509"}], [{"original_text": "After all that training marathon day finally came.", "album_id": "72157628828831189", "photo_flickr_id": "6679144201", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "42502", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after all that training marathon day finally came .", "storylet_id": "212510"}], [{"original_text": "Of course it was wet and gloomy but that didn't stop us from having plenty of fun.", "album_id": "72157628828831189", "photo_flickr_id": "6679164365", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "42502", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "of course it was wet and gloomy but that did n't stop us from having plenty of fun .", "storylet_id": "212511"}], [{"original_text": "Some of the fans even got in the spirit of running.", "album_id": "72157628828831189", "photo_flickr_id": "6679171745", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "42502", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the fans even got in the spirit of running .", "storylet_id": "212512"}], [{"original_text": "Of course we had unique personalities trying to stay dry.", "album_id": "72157628828831189", "photo_flickr_id": "6679166943", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "42502", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course we had unique personalities trying to stay dry .", "storylet_id": "212513"}], [{"original_text": "And Bill even made it to the podium for the first time ever. Congrats Bill!", "album_id": "72157628828831189", "photo_flickr_id": "6679181549", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "42502", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and [male] even made it to the podium for the first time ever . congrats [male] !", "storylet_id": "212514"}], [{"original_text": "People are running for the race.", "album_id": "72157628828831189", "photo_flickr_id": "6679144201", "setting": "last-3-pick-old-and-tell", "worker_id": "UANCDVZ3Y93BOV1", "story_id": "42503", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people are running for the race .", "storylet_id": "212515"}], [{"original_text": "The man is carrying his child on shoulder and running in the race.", "album_id": "72157628828831189", "photo_flickr_id": "6679164365", "setting": "last-3-pick-old-and-tell", "worker_id": "UANCDVZ3Y93BOV1", "story_id": "42503", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man is carrying his child on shoulder and running in the race .", "storylet_id": "212516"}], [{"original_text": "The grandpa is running with his grandchilds in the race.", "album_id": "72157628828831189", "photo_flickr_id": "6679171745", "setting": "last-3-pick-old-and-tell", "worker_id": "UANCDVZ3Y93BOV1", "story_id": "42503", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the grandpa is running with his grandchilds in the race .", "storylet_id": "212517"}], [{"original_text": "The man is holding umbrella and running in the race.", "album_id": "72157628828831189", "photo_flickr_id": "6679166943", "setting": "last-3-pick-old-and-tell", "worker_id": "UANCDVZ3Y93BOV1", "story_id": "42503", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man is holding umbrella and running in the race .", "storylet_id": "212518"}], [{"original_text": "First 3 finalists got the awards.", "album_id": "72157628828831189", "photo_flickr_id": "6679181549", "setting": "last-3-pick-old-and-tell", "worker_id": "UANCDVZ3Y93BOV1", "story_id": "42503", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "first 3 finalists got the awards .", "storylet_id": "212519"}], [{"original_text": "We always like to watch the local road race, even in the rain.", "album_id": "72157628828831189", "photo_flickr_id": "6679138833", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42504", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we always like to watch the local road race , even in the rain .", "storylet_id": "212520"}], [{"original_text": "It's fun to see how whole families race, even little kids.", "album_id": "72157628828831189", "photo_flickr_id": "6679148865", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42504", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's fun to see how whole families race , even little kids .", "storylet_id": "212521"}], [{"original_text": "This guy brought his umbrella along to try to stay dry!", "album_id": "72157628828831189", "photo_flickr_id": "6679166943", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42504", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this guy brought his umbrella along to try to stay dry !", "storylet_id": "212522"}], [{"original_text": "The winners all got flowers.", "album_id": "72157628828831189", "photo_flickr_id": "6679178631", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42504", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the winners all got flowers .", "storylet_id": "212523"}], [{"original_text": "The grand prize winner also got a trophy.", "album_id": "72157628828831189", "photo_flickr_id": "6679189429", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42504", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the grand prize winner also got a trophy .", "storylet_id": "212524"}], [{"original_text": "We started the bike off by replacing the grips. ", "album_id": "72157594478267519", "photo_flickr_id": "356623986", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "42505", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started the bike off by replacing the grips .", "storylet_id": "212525"}], [{"original_text": "We then took a look at the tires and switched them out to some more durable wheels.", "album_id": "72157594478267519", "photo_flickr_id": "356624143", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "42505", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we then took a look at the tires and switched them out to some more durable wheels .", "storylet_id": "212526"}], [{"original_text": "The chain then needed to be replaced, and finally we were finished.", "album_id": "72157594478267519", "photo_flickr_id": "356624064", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "42505", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the chain then needed to be replaced , and finally we were finished .", "storylet_id": "212527"}], [{"original_text": "Here's the owner taking the bike out of the store.", "album_id": "72157594478267519", "photo_flickr_id": "356643961", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "42505", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's the owner taking the bike out of the store .", "storylet_id": "212528"}], [{"original_text": "And here's a photo of the finished product. ", "album_id": "72157594478267519", "photo_flickr_id": "356649729", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "42505", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and here 's a photo of the finished product .", "storylet_id": "212529"}], [{"original_text": "The man was excited for his Norco bicycle that he had just gotten.", "album_id": "72157594478267519", "photo_flickr_id": "356657618", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "42506", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man was excited for his location bicycle that he had just gotten .", "storylet_id": "212530"}], [{"original_text": "He specifically designed the handle bars and breaks to suit his needs.", "album_id": "72157594478267519", "photo_flickr_id": "356623986", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "42506", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he specifically designed the handle bars and breaks to suit his needs .", "storylet_id": "212531"}], [{"original_text": "The tires were also custom and were meant for the city and off road.", "album_id": "72157594478267519", "photo_flickr_id": "356624143", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "42506", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tires were also custom and were meant for the city and off road .", "storylet_id": "212532"}], [{"original_text": "The man took his bike down to the cafe.", "album_id": "72157594478267519", "photo_flickr_id": "356641551", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "42506", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man took his bike down to the cafe .", "storylet_id": "212533"}], [{"original_text": "He met his friend there, where they discussed his new bike. ", "album_id": "72157594478267519", "photo_flickr_id": "356647150", "setting": "first-2-pick-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "42506", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he met his friend there , where they discussed his new bike .", "storylet_id": "212534"}], [{"original_text": "Last Saturday I wanted to upgrade the parts on my bike.", "album_id": "72157594478267519", "photo_flickr_id": "356623986", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "42507", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last saturday i wanted to upgrade the parts on my bike .", "storylet_id": "212535"}], [{"original_text": "In particular, my brakes needed replacing.", "album_id": "72157594478267519", "photo_flickr_id": "356624143", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "42507", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in particular , my brakes needed replacing .", "storylet_id": "212536"}], [{"original_text": "My chain ring was also in need of some tender love.", "album_id": "72157594478267519", "photo_flickr_id": "356624064", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "42507", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my chain ring was also in need of some tender love .", "storylet_id": "212537"}], [{"original_text": "After replacing and upgrading all these parts, I decided to take my bike out and show it off.", "album_id": "72157594478267519", "photo_flickr_id": "356643961", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "42507", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after replacing and upgrading all these parts , i decided to take my bike out and show it off .", "storylet_id": "212538"}], [{"original_text": "Everyone I met that day was very complimentary of my upgrades.", "album_id": "72157594478267519", "photo_flickr_id": "356649729", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "42507", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone i met that day was very complimentary of my upgrades .", "storylet_id": "212539"}], [{"original_text": "Finally got myself that new bike I've been wanting.", "album_id": "72157594478267519", "photo_flickr_id": "356623986", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "42508", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "finally got myself that new bike i 've been wanting .", "storylet_id": "212540"}], [{"original_text": "Threw on a minimalist breaks to drop some grams.", "album_id": "72157594478267519", "photo_flickr_id": "356624143", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "42508", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "threw on a minimalist breaks to drop some grams .", "storylet_id": "212541"}], [{"original_text": "Nice fancy 105 front group set shifts like a dream. So much better than my last bike.", "album_id": "72157594478267519", "photo_flickr_id": "356624064", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "42508", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nice fancy 105 front group set shifts like a dream . so much better than my last bike .", "storylet_id": "212542"}], [{"original_text": "Of course a nice machine like this should be kept indoors.", "album_id": "72157594478267519", "photo_flickr_id": "356643961", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "42508", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course a nice machine like this should be kept indoors .", "storylet_id": "212543"}], [{"original_text": "I wouldn't want it to get rained on or stolen during my morning coffee.", "album_id": "72157594478267519", "photo_flickr_id": "356649729", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "42508", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i would n't want it to get rained on or stolen during my morning coffee .", "storylet_id": "212544"}], [{"original_text": "I went to look at a bike for sale. It had great details like chrome handle brakes.", "album_id": "72157594478267519", "photo_flickr_id": "356623986", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42509", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to look at a bike for sale . it had great details like chrome handle brakes .", "storylet_id": "212545"}], [{"original_text": "The tire has a stripe of green.", "album_id": "72157594478267519", "photo_flickr_id": "356624143", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42509", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tire has a stripe of green .", "storylet_id": "212546"}], [{"original_text": "I could tell it was a well made bike, one that was very expensive originally.", "album_id": "72157594478267519", "photo_flickr_id": "356624064", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42509", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i could tell it was a well made bike , one that was very expensive originally .", "storylet_id": "212547"}], [{"original_text": "It was lightweight even though it was a performance bike.", "album_id": "72157594478267519", "photo_flickr_id": "356643961", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42509", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was lightweight even though it was a performance bike .", "storylet_id": "212548"}], [{"original_text": "I decided not to buy it in the end, because it was too expensive, but I took a long last look at it.", "album_id": "72157594478267519", "photo_flickr_id": "356649729", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42509", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided not to buy it in the end , because it was too expensive , but i took a long last look at it .", "storylet_id": "212549"}], [{"original_text": "Everyone waiting for the racers to pass by.", "album_id": "72157623488622261", "photo_flickr_id": "4429469165", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42510", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone waiting for the racers to pass by .", "storylet_id": "212550"}], [{"original_text": "Here they come!", "album_id": "72157623488622261", "photo_flickr_id": "4430236054", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42510", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here they come !", "storylet_id": "212551"}], [{"original_text": "One racer has to make a pit stop.", "album_id": "72157623488622261", "photo_flickr_id": "4431188101", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42510", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one racer has to make a pit stop .", "storylet_id": "212552"}], [{"original_text": "Final lap!", "album_id": "72157623488622261", "photo_flickr_id": "4431959290", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42510", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "final lap !", "storylet_id": "212553"}], [{"original_text": "Everyone left at the end.", "album_id": "72157623488622261", "photo_flickr_id": "4428928137", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42510", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone left at the end .", "storylet_id": "212554"}], [{"original_text": "It was race day at the track and fans were excitedly trickling into the stands.", "album_id": "72157623488622261", "photo_flickr_id": "4428928137", "setting": "first-2-pick-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42511", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was race day at the track and fans were excitedly trickling into the stands .", "storylet_id": "212555"}], [{"original_text": "It was especially exciting for these 6 fans who had never been to a race before and got prime seats. ", "album_id": "72157623488622261", "photo_flickr_id": "4429468947", "setting": "first-2-pick-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42511", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was especially exciting for these 6 fans who had never been to a race before and got prime seats .", "storylet_id": "212556"}], [{"original_text": "As the race started, they watched anxiously as their favorite red car went around the track.", "album_id": "72157623488622261", "photo_flickr_id": "4429469765", "setting": "first-2-pick-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42511", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as the race started , they watched anxiously as their favorite red car went around the track .", "storylet_id": "212557"}], [{"original_text": "They watched that car until the sun went down and the lights came on. ", "album_id": "72157623488622261", "photo_flickr_id": "4431946332", "setting": "first-2-pick-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42511", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they watched that car until the sun went down and the lights came on .", "storylet_id": "212558"}], [{"original_text": "And they watched that car until it mad it's final turn onto pit road. ", "album_id": "72157623488622261", "photo_flickr_id": "4431958874", "setting": "first-2-pick-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "42511", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they watched that car until it mad it 's final turn onto pit road .", "storylet_id": "212559"}], [{"original_text": "The people are watching the car race.", "album_id": "72157623488622261", "photo_flickr_id": "4429469165", "setting": "last-3-pick-old-and-tell", "worker_id": "UANCDVZ3Y93BOV1", "story_id": "42512", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people are watching the car race .", "storylet_id": "212560"}], [{"original_text": "The red car is in the race.", "album_id": "72157623488622261", "photo_flickr_id": "4430236054", "setting": "last-3-pick-old-and-tell", "worker_id": "UANCDVZ3Y93BOV1", "story_id": "42512", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the red car is in the race .", "storylet_id": "212561"}], [{"original_text": "This car has stopped.", "album_id": "72157623488622261", "photo_flickr_id": "4431188101", "setting": "last-3-pick-old-and-tell", "worker_id": "UANCDVZ3Y93BOV1", "story_id": "42512", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this car has stopped .", "storylet_id": "212562"}], [{"original_text": "The people are cheering and taking pictures.", "album_id": "72157623488622261", "photo_flickr_id": "4431959290", "setting": "last-3-pick-old-and-tell", "worker_id": "UANCDVZ3Y93BOV1", "story_id": "42512", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people are cheering and taking pictures .", "storylet_id": "212563"}], [{"original_text": "The people are walking up the steps to watch the car race.", "album_id": "72157623488622261", "photo_flickr_id": "4428928137", "setting": "last-3-pick-old-and-tell", "worker_id": "UANCDVZ3Y93BOV1", "story_id": "42512", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the people are walking up the steps to watch the car race .", "storylet_id": "212564"}], [{"original_text": "The fans are excited to finally see the race take place.", "album_id": "72157623488622261", "photo_flickr_id": "4429469165", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42513", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fans are excited to finally see the race take place .", "storylet_id": "212565"}], [{"original_text": "The red race car zooms past the onlookers.", "album_id": "72157623488622261", "photo_flickr_id": "4430236054", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42513", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the red race car zooms past the onlookers .", "storylet_id": "212566"}], [{"original_text": "Not far behind was another race car.", "album_id": "72157623488622261", "photo_flickr_id": "4431188101", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42513", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not far behind was another race car .", "storylet_id": "212567"}], [{"original_text": "The fans cheered with excitement to see the cars go by so quickly.", "album_id": "72157623488622261", "photo_flickr_id": "4431959290", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42513", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fans cheered with excitement to see the cars go by so quickly .", "storylet_id": "212568"}], [{"original_text": "The crowd clears out because the race is finished.", "album_id": "72157623488622261", "photo_flickr_id": "4428928137", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42513", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the crowd clears out because the race is finished .", "storylet_id": "212569"}], [{"original_text": "We anxiously awaited the passing of our favorite drivers while at the Indy 300.", "album_id": "72157623488622261", "photo_flickr_id": "4429469165", "setting": "last-3-pick-old-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "42514", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we anxiously awaited the passing of our favorite drivers while at the indy 300 .", "storylet_id": "212570"}], [{"original_text": "At last, the two lead cars came screaming around the corner.", "album_id": "72157623488622261", "photo_flickr_id": "4430236054", "setting": "last-3-pick-old-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "42514", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at last , the two lead cars came screaming around the corner .", "storylet_id": "212571"}], [{"original_text": "Right before the final turn, the silver car picked up speed and secured his spot in first.", "album_id": "72157623488622261", "photo_flickr_id": "4431188101", "setting": "last-3-pick-old-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "42514", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "right before the final turn , the silver car picked up speed and secured his spot in first .", "storylet_id": "212572"}], [{"original_text": "We were celebrating loudly as each car passed the finish line.", "album_id": "72157623488622261", "photo_flickr_id": "4431959290", "setting": "last-3-pick-old-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "42514", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were celebrating loudly as each car passed the finish line .", "storylet_id": "212573"}], [{"original_text": "At the end of the race, everyone quickly scattered so as to avoid the rush of traffic leaving the facility.", "album_id": "72157623488622261", "photo_flickr_id": "4428928137", "setting": "last-3-pick-old-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "42514", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the race , everyone quickly scattered so as to avoid the rush of traffic leaving the facility .", "storylet_id": "212574"}], [{"original_text": "Every year we get the entire family together to go on a big camping trip. ", "album_id": "72157594481468253", "photo_flickr_id": "358610181", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "42515", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every year we get the entire family together to go on a big camping trip .", "storylet_id": "212575"}], [{"original_text": "Here's one of the local campers that lives at the campground.", "album_id": "72157594481468253", "photo_flickr_id": "358610295", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "42515", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's one of the local campers that lives at the campground .", "storylet_id": "212576"}], [{"original_text": "It's always fun to hang out by the campfire late at night. ", "album_id": "72157594481468253", "photo_flickr_id": "358610481", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "42515", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's always fun to hang out by the campfire late at night .", "storylet_id": "212577"}], [{"original_text": "We try to take as many photos of the kids as possible.", "album_id": "72157594481468253", "photo_flickr_id": "358610837", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "42515", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we try to take as many photos of the kids as possible .", "storylet_id": "212578"}], [{"original_text": "Here's one of our son and his son on a bike ride. ", "album_id": "72157594481468253", "photo_flickr_id": "358609959", "setting": "first-2-pick-and-tell", "worker_id": "P1XIFDKXX0ZGYWP", "story_id": "42515", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's one of our son and his son on a bike ride .", "storylet_id": "212579"}], [{"original_text": "All the family and some friends gather around for a quick photo. ", "album_id": "72157594481468253", "photo_flickr_id": "358610181", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42516", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all the family and some friends gather around for a quick photo .", "storylet_id": "212580"}], [{"original_text": "This awesome RV had seen many miles in it's day. ", "album_id": "72157594481468253", "photo_flickr_id": "358610295", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42516", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this awesome rv had seen many miles in it 's day .", "storylet_id": "212581"}], [{"original_text": "A few of the relatives enjoy lunch under the canopy. ", "album_id": "72157594481468253", "photo_flickr_id": "358611208", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42516", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few of the relatives enjoy lunch under the canopy .", "storylet_id": "212582"}], [{"original_text": "At night, one of the other RVs is all lit up.", "album_id": "72157594481468253", "photo_flickr_id": "358610481", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42516", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at night , one of the other rvs is all lit up .", "storylet_id": "212583"}], [{"original_text": "This family sure looks like they had a great time. ", "album_id": "72157594481468253", "photo_flickr_id": "358610576", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42516", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this family sure looks like they had a great time .", "storylet_id": "212584"}], [{"original_text": "My family is a little bit crazy when it comes to how we live.", "album_id": "72157594481468253", "photo_flickr_id": "358610181", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "42517", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family is a little bit crazy when it comes to how we live .", "storylet_id": "212585"}], [{"original_text": "My uncle lives in a giant metal lunchbox.", "album_id": "72157594481468253", "photo_flickr_id": "358610295", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "42517", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my uncle lives in a giant metal lunchbox .", "storylet_id": "212586"}], [{"original_text": "My own parents lives in an RV they bought in the 1980s.", "album_id": "72157594481468253", "photo_flickr_id": "358610481", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "42517", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my own parents lives in an rv they bought in the 1980s .", "storylet_id": "212587"}], [{"original_text": "Growing up, I used to pretend that this RV was a spaceship.", "album_id": "72157594481468253", "photo_flickr_id": "358610837", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "42517", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "growing up , i used to pretend that this rv was a spaceship .", "storylet_id": "212588"}], [{"original_text": "Not a bad way to grow up even though I've never been to space.", "album_id": "72157594481468253", "photo_flickr_id": "358609959", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "42517", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "not a bad way to grow up even though i 've never been to space .", "storylet_id": "212589"}], [{"original_text": "The whole family came out to go camping.", "album_id": "72157594481468253", "photo_flickr_id": "358610181", "setting": "last-3-pick-old-and-tell", "worker_id": "V8LBEKKYMTQ2613", "story_id": "42518", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family came out to go camping .", "storylet_id": "212590"}], [{"original_text": "Here is the trailer that some of us brought.", "album_id": "72157594481468253", "photo_flickr_id": "358610295", "setting": "last-3-pick-old-and-tell", "worker_id": "V8LBEKKYMTQ2613", "story_id": "42518", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is the trailer that some of us brought .", "storylet_id": "212591"}], [{"original_text": "The campground had picnic tables you can sit around.", "album_id": "72157594481468253", "photo_flickr_id": "358611208", "setting": "last-3-pick-old-and-tell", "worker_id": "V8LBEKKYMTQ2613", "story_id": "42518", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the campground had picnic tables you can sit around .", "storylet_id": "212592"}], [{"original_text": "At night, the light from the trailer lit things up.", "album_id": "72157594481468253", "photo_flickr_id": "358610481", "setting": "last-3-pick-old-and-tell", "worker_id": "V8LBEKKYMTQ2613", "story_id": "42518", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at night , the light from the trailer lit things up .", "storylet_id": "212593"}], [{"original_text": "Mom, Dad and kids had a great time.", "album_id": "72157594481468253", "photo_flickr_id": "358610576", "setting": "last-3-pick-old-and-tell", "worker_id": "V8LBEKKYMTQ2613", "story_id": "42518", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mom , dad and kids had a great time .", "storylet_id": "212594"}], [{"original_text": "Every year, the whole family gets together for a camping trip.", "album_id": "72157594481468253", "photo_flickr_id": "358610181", "setting": "last-3-pick-old-and-tell", "worker_id": "SB635RXMSARZVB0", "story_id": "42519", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every year , the whole family gets together for a camping trip .", "storylet_id": "212595"}], [{"original_text": "Some of the family have small campers.", "album_id": "72157594481468253", "photo_flickr_id": "358610295", "setting": "last-3-pick-old-and-tell", "worker_id": "SB635RXMSARZVB0", "story_id": "42519", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the family have small campers .", "storylet_id": "212596"}], [{"original_text": "Others have huge RVs.", "album_id": "72157594481468253", "photo_flickr_id": "358610481", "setting": "last-3-pick-old-and-tell", "worker_id": "SB635RXMSARZVB0", "story_id": "42519", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others have huge rvs .", "storylet_id": "212597"}], [{"original_text": "All that really matters is that they get to spend time together.", "album_id": "72157594481468253", "photo_flickr_id": "358610837", "setting": "last-3-pick-old-and-tell", "worker_id": "SB635RXMSARZVB0", "story_id": "42519", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all that really matters is that they get to spend time together .", "storylet_id": "212598"}], [{"original_text": "They even do activities like ride bikes through the woods.", "album_id": "72157594481468253", "photo_flickr_id": "358609959", "setting": "last-3-pick-old-and-tell", "worker_id": "SB635RXMSARZVB0", "story_id": "42519", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even do activities like ride bikes through the woods .", "storylet_id": "212599"}], [{"original_text": "I went to my first triathlon last week and stayed at a campground nearby.", "album_id": "339963", "photo_flickr_id": "14046287", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42520", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to my first triathlon last week and stayed at a campground nearby .", "storylet_id": "212600"}], [{"original_text": "The first leg of the event was swimming.", "album_id": "339963", "photo_flickr_id": "14046322", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42520", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first leg of the event was swimming .", "storylet_id": "212601"}], [{"original_text": "The next leg of the event was running.", "album_id": "339963", "photo_flickr_id": "14046363", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42520", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next leg of the event was running .", "storylet_id": "212602"}], [{"original_text": "The last leg of the event was cycling.", "album_id": "339963", "photo_flickr_id": "14046386", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42520", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the last leg of the event was cycling .", "storylet_id": "212603"}], [{"original_text": "Prizes and awards were given out after the event was over.", "album_id": "339963", "photo_flickr_id": "14046428", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "42520", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "prizes and awards were given out after the event was over .", "storylet_id": "212604"}], [{"original_text": "Getting ready for the marathon, its going to be tough but my body is ready!", "album_id": "339963", "photo_flickr_id": "14046279", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42521", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting ready for the marathon , its going to be tough but my body is ready !", "storylet_id": "212605"}], [{"original_text": "So many people here today, the blood is pumping.", "album_id": "339963", "photo_flickr_id": "14046303", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42521", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so many people here today , the blood is pumping .", "storylet_id": "212606"}], [{"original_text": "Had to take a break for the tiny cannon, who wouldnt?", "album_id": "339963", "photo_flickr_id": "14046337", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42521", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "had to take a break for the tiny cannon , who wouldnt ?", "storylet_id": "212607"}], [{"original_text": "The swim part was rough but time to man up.", "album_id": "339963", "photo_flickr_id": "14046348", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42521", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the swim part was rough but time to man up .", "storylet_id": "212608"}], [{"original_text": "In every race theres a winner, must feel great! See ya next time.", "album_id": "339963", "photo_flickr_id": "14046433", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42521", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in every race theres a winner , must feel great ! see ya next time .", "storylet_id": "212609"}], [{"original_text": "The man arrived for the big race. ", "album_id": "339963", "photo_flickr_id": "14046287", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42522", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man arrived for the big race .", "storylet_id": "212610"}], [{"original_text": "First he swam across a lake. ", "album_id": "339963", "photo_flickr_id": "14046322", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42522", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first he swam across a lake .", "storylet_id": "212611"}], [{"original_text": "He then ran to get his bike. ", "album_id": "339963", "photo_flickr_id": "14046363", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42522", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he then ran to get his bike .", "storylet_id": "212612"}], [{"original_text": "He rode his bike as fast as he could.", "album_id": "339963", "photo_flickr_id": "14046386", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42522", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he rode his bike as fast as he could .", "storylet_id": "212613"}], [{"original_text": "The race is ended. He came in second!", "album_id": "339963", "photo_flickr_id": "14046428", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42522", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the race is ended . he came in second !", "storylet_id": "212614"}], [{"original_text": "A biking and swimming event is taking place at a lake.", "album_id": "339963", "photo_flickr_id": "14046287", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42523", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a biking and swimming event is taking place at a lake .", "storylet_id": "212615"}], [{"original_text": "A group of people get in the lake and swim across it.", "album_id": "339963", "photo_flickr_id": "14046322", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42523", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a group of people get in the lake and swim across it .", "storylet_id": "212616"}], [{"original_text": "Once they are done with that they run to their bikes.", "album_id": "339963", "photo_flickr_id": "14046363", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42523", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once they are done with that they run to their bikes .", "storylet_id": "212617"}], [{"original_text": "They take off on their bikes for the finish line.", "album_id": "339963", "photo_flickr_id": "14046386", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42523", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they take off on their bikes for the finish line .", "storylet_id": "212618"}], [{"original_text": "The winners are pictured above.", "album_id": "339963", "photo_flickr_id": "14046428", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42523", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the winners are pictured above .", "storylet_id": "212619"}], [{"original_text": "Everyone began to pull their cars up to the lake.", "album_id": "339963", "photo_flickr_id": "14046287", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "42524", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone began to pull their cars up to the lake .", "storylet_id": "212620"}], [{"original_text": "Today was the triathlon, many were here to participate and watch.", "album_id": "339963", "photo_flickr_id": "14046322", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "42524", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today was the triathlon , many were here to participate and watch .", "storylet_id": "212621"}], [{"original_text": "After the swimming, they moved onto running.", "album_id": "339963", "photo_flickr_id": "14046363", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "42524", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the swimming , they moved onto running .", "storylet_id": "212622"}], [{"original_text": "With that down, only biking is now left!", "album_id": "339963", "photo_flickr_id": "14046386", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "42524", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with that down , only biking is now left !", "storylet_id": "212623"}], [{"original_text": "And here is George on the winners podium, all that training paid off!", "album_id": "339963", "photo_flickr_id": "14046428", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "42524", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and here is [male] on the winners podium , all that training paid off !", "storylet_id": "212624"}], [{"original_text": "The snow didn't stop the athletes from competing in a bike race on that cold morning.", "album_id": "72157623363773341", "photo_flickr_id": "4380137370", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "42525", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the snow did n't stop the athletes from competing in a bike race on that cold morning .", "storylet_id": "212625"}], [{"original_text": "Their determination helped them overcome the obstacles. ", "album_id": "72157623363773341", "photo_flickr_id": "4379381623", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "42525", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their determination helped them overcome the obstacles .", "storylet_id": "212626"}], [{"original_text": "Men and women participated, encouraged by the crowd cheering.", "album_id": "72157623363773341", "photo_flickr_id": "4379382667", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "42525", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "men and women participated , encouraged by the crowd cheering .", "storylet_id": "212627"}], [{"original_text": "While some biked, others preferred playing in the snow. ", "album_id": "72157623363773341", "photo_flickr_id": "4379383477", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "42525", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while some biked , others preferred playing in the snow .", "storylet_id": "212628"}], [{"original_text": "Whether on bike, skis, playing or running, everyone seemed to enjoy a wonderful day.", "album_id": "72157623363773341", "photo_flickr_id": "4380141850", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "42525", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "whether on bike , skis , playing or running , everyone seemed to enjoy a wonderful day .", "storylet_id": "212629"}], [{"original_text": "Trek Bicycle Stores hosted a \"Fun-in-the-Snow\" event in an attempt to advertise how their products can be used in all weather conditions.", "album_id": "72157623363773341", "photo_flickr_id": "4380137370", "setting": "first-2-pick-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "42526", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "organization organization organization hosted a `` fun-in-the-snow '' event in an attempt to advertise how their products can be used in all weather conditions .", "storylet_id": "212630"}], [{"original_text": "It was a beautiful, snowy day, and many people were enjoying the snow on the ground.", "album_id": "72157623363773341", "photo_flickr_id": "4379383477", "setting": "first-2-pick-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "42526", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a beautiful , snowy day , and many people were enjoying the snow on the ground .", "storylet_id": "212631"}], [{"original_text": "Some experienced Trek riders showed off their skills in a mini-competition that included obstacles along the way.", "album_id": "72157623363773341", "photo_flickr_id": "4379384595", "setting": "first-2-pick-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "42526", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some experienced trek riders showed off their skills in a mini-competition that included obstacles along the way .", "storylet_id": "212632"}], [{"original_text": "This rider was having a great time until his chain came loose and he had to walk to the side to fix it.", "album_id": "72157623363773341", "photo_flickr_id": "4379384279", "setting": "first-2-pick-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "42526", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this rider was having a great time until his chain came loose and he had to walk to the side to fix it .", "storylet_id": "212633"}], [{"original_text": "Some people brought their skis and demonstrated interesting tricks, and a good time was had by all who attended the event.", "album_id": "72157623363773341", "photo_flickr_id": "4380141850", "setting": "first-2-pick-and-tell", "worker_id": "NOW7IJRTYMLURSV", "story_id": "42526", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people brought their skis and demonstrated interesting tricks , and a good time was had by all who attended the event .", "storylet_id": "212634"}], [{"original_text": "He is enjoying the ride on the snow, but it is challenging.", "album_id": "72157623363773341", "photo_flickr_id": "4380137370", "setting": "last-3-pick-old-and-tell", "worker_id": "XJK1EUG4EC2J18E", "story_id": "42527", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he is enjoying the ride on the snow , but it is challenging .", "storylet_id": "212635"}], [{"original_text": "A father playing in the snow with his child.", "album_id": "72157623363773341", "photo_flickr_id": "4379383477", "setting": "last-3-pick-old-and-tell", "worker_id": "XJK1EUG4EC2J18E", "story_id": "42527", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a father playing in the snow with his child .", "storylet_id": "212636"}], [{"original_text": "This man is enjoying running the race.", "album_id": "72157623363773341", "photo_flickr_id": "4379384595", "setting": "last-3-pick-old-and-tell", "worker_id": "XJK1EUG4EC2J18E", "story_id": "42527", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this man is enjoying running the race .", "storylet_id": "212637"}], [{"original_text": "It can be difficult to ride a bike in the snow, carrying the bike is a good option.", "album_id": "72157623363773341", "photo_flickr_id": "4379384279", "setting": "last-3-pick-old-and-tell", "worker_id": "XJK1EUG4EC2J18E", "story_id": "42527", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it can be difficult to ride a bike in the snow , carrying the bike is a good option .", "storylet_id": "212638"}], [{"original_text": "Skiing down the road is a great option when there is snow.", "album_id": "72157623363773341", "photo_flickr_id": "4380141850", "setting": "last-3-pick-old-and-tell", "worker_id": "XJK1EUG4EC2J18E", "story_id": "42527", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "skiing down the road is a great option when there is snow .", "storylet_id": "212639"}], [{"original_text": "The race in town was cool, as you could use any means you wanted to try to get to the end, and we used a bike.", "album_id": "72157623363773341", "photo_flickr_id": "4380137370", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42528", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the race in town was cool , as you could use any means you wanted to try to get to the end , and we used a bike .", "storylet_id": "212640"}], [{"original_text": "We laughed as our little brother was unable to get over the red bar, and had to carry his bike.", "album_id": "72157623363773341", "photo_flickr_id": "4379381623", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42528", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we laughed as our little brother was unable to get over the red bar , and had to carry his bike .", "storylet_id": "212641"}], [{"original_text": "But then we tried, and we couldn't get over the bar either.", "album_id": "72157623363773341", "photo_flickr_id": "4379382667", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42528", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but then we tried , and we could n't get over the bar either .", "storylet_id": "212642"}], [{"original_text": "Everyone was having a hard time, like this little guy who fell down.", "album_id": "72157623363773341", "photo_flickr_id": "4379383477", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42528", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was having a hard time , like this little guy who fell down .", "storylet_id": "212643"}], [{"original_text": "Old Mr. Jenkins won, with his sitting down skis!", "album_id": "72157623363773341", "photo_flickr_id": "4380141850", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42528", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "old mr. jenkins won , with his sitting down skis !", "storylet_id": "212644"}], [{"original_text": "A man with a cape puts on a show for some onlookers.", "album_id": "72157623363773341", "photo_flickr_id": "4380137370", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42529", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a man with a cape puts on a show for some onlookers .", "storylet_id": "212645"}], [{"original_text": "His son follows closely behind with his bicycle to join the fun.", "album_id": "72157623363773341", "photo_flickr_id": "4379381623", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42529", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his son follows closely behind with his bicycle to join the fun .", "storylet_id": "212646"}], [{"original_text": "The pair is having a great time and the onlookers are enjoying it as well.", "album_id": "72157623363773341", "photo_flickr_id": "4379382667", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42529", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the pair is having a great time and the onlookers are enjoying it as well .", "storylet_id": "212647"}], [{"original_text": "A son and father at the event are busy playing in the snow", "album_id": "72157623363773341", "photo_flickr_id": "4379383477", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42529", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a son and father at the event are busy playing in the snow", "storylet_id": "212648"}], [{"original_text": "Joining the bicyclists is someone sitting on skis and going down a slope.", "album_id": "72157623363773341", "photo_flickr_id": "4380141850", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42529", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "joining the bicyclists is someone sitting on skis and going down a slope .", "storylet_id": "212649"}], [{"original_text": "The family gets together to watch a bike race.", "album_id": "72157623501489774", "photo_flickr_id": "4384689685", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42530", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family gets together to watch a bike race .", "storylet_id": "212650"}], [{"original_text": "The family takes a picture with Jim before the race.", "album_id": "72157623501489774", "photo_flickr_id": "4384690059", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42530", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family takes a picture with [male] before the race .", "storylet_id": "212651"}], [{"original_text": "Jim is finally racing ad trying his best to win.", "album_id": "72157623501489774", "photo_flickr_id": "4385454046", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42530", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] is finally racing ad trying his best to win .", "storylet_id": "212652"}], [{"original_text": "Jim is such a competitor as he tries to find any edge to get into the winning position. ", "album_id": "72157623501489774", "photo_flickr_id": "4385454606", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42530", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is such a competitor as he tries to find any edge to get into the winning position .", "storylet_id": "212653"}], [{"original_text": "Jim tires out and settles for second place.", "album_id": "72157623501489774", "photo_flickr_id": "4384692091", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42530", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] tires out and settles for second place .", "storylet_id": "212654"}], [{"original_text": "All the stands are pretty much empty as we get ready to set things up for the race.", "album_id": "72157623501489774", "photo_flickr_id": "4384689685", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42531", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all the stands are pretty much empty as we get ready to set things up for the race .", "storylet_id": "212655"}], [{"original_text": "People start to gather as the start of the race draws near. ", "album_id": "72157623501489774", "photo_flickr_id": "4384690463", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42531", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people start to gather as the start of the race draws near .", "storylet_id": "212656"}], [{"original_text": "These two go very fast on the track after the start. ", "album_id": "72157623501489774", "photo_flickr_id": "4384690995", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42531", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these two go very fast on the track after the start .", "storylet_id": "212657"}], [{"original_text": "Getting closer to the finish line, these two contenders push on. ", "album_id": "72157623501489774", "photo_flickr_id": "4385454046", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42531", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "getting closer to the finish line , these two contenders push on .", "storylet_id": "212658"}], [{"original_text": "Bikes and motorcycles racing together, the speed is intense. ", "album_id": "72157623501489774", "photo_flickr_id": "4385454736", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42531", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "bikes and motorcycles racing together , the speed is intense .", "storylet_id": "212659"}], [{"original_text": "The crowd was minimal during the day the race.", "album_id": "72157623501489774", "photo_flickr_id": "4384689685", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "42532", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowd was minimal during the day the race .", "storylet_id": "212660"}], [{"original_text": "Despite this, my friends and family were there to support me.", "album_id": "72157623501489774", "photo_flickr_id": "4384690059", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "42532", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "despite this , my friends and family were there to support me .", "storylet_id": "212661"}], [{"original_text": "The race was intense, with the competition trying to block my every move.", "album_id": "72157623501489774", "photo_flickr_id": "4385454046", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "42532", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the race was intense , with the competition trying to block my every move .", "storylet_id": "212662"}], [{"original_text": "My partner and I couldn't break through the blockade of competitors.", "album_id": "72157623501489774", "photo_flickr_id": "4385454606", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "42532", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my partner and i could n't break through the blockade of competitors .", "storylet_id": "212663"}], [{"original_text": "Despite all our best efforts, we came in second.", "album_id": "72157623501489774", "photo_flickr_id": "4384692091", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "42532", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "despite all our best efforts , we came in second .", "storylet_id": "212664"}], [{"original_text": "The stadium if ready to be filled for the days races.", "album_id": "72157623501489774", "photo_flickr_id": "4384689685", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42533", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stadium if ready to be filled for the days races .", "storylet_id": "212665"}], [{"original_text": "We are so very proud of all who competed.", "album_id": "72157623501489774", "photo_flickr_id": "4384690059", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42533", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are so very proud of all who competed .", "storylet_id": "212666"}], [{"original_text": "Number five rounds the corner with ease, passing his opponents. ", "album_id": "72157623501489774", "photo_flickr_id": "4385454046", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42533", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "number five rounds the corner with ease , passing his opponents .", "storylet_id": "212667"}], [{"original_text": "Our team takes the lead in a unifying race.", "album_id": "72157623501489774", "photo_flickr_id": "4385454606", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42533", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our team takes the lead in a unifying race .", "storylet_id": "212668"}], [{"original_text": "Number six takes the curve with ease.", "album_id": "72157623501489774", "photo_flickr_id": "4384692091", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42533", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "number six takes the curve with ease .", "storylet_id": "212669"}], [{"original_text": "When the bike race started, the seats in the venue were pretty empty.", "album_id": "72157623501489774", "photo_flickr_id": "4384689685", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42534", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when the bike race started , the seats in the venue were pretty empty .", "storylet_id": "212670"}], [{"original_text": "The racers all posed for a pre-race photo shoot.", "album_id": "72157623501489774", "photo_flickr_id": "4384690059", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42534", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the racers all posed for a pre-race photo shoot .", "storylet_id": "212671"}], [{"original_text": "The race was pretty competitive.", "album_id": "72157623501489774", "photo_flickr_id": "4385454046", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42534", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the race was pretty competitive .", "storylet_id": "212672"}], [{"original_text": "It was exciting seeing so many bikes close together.", "album_id": "72157623501489774", "photo_flickr_id": "4385454606", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42534", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was exciting seeing so many bikes close together .", "storylet_id": "212673"}], [{"original_text": "I have to admit, we almost wished the bicycles would crash, as that would have been fun to see!", "album_id": "72157623501489774", "photo_flickr_id": "4384692091", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42534", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i have to admit , we almost wished the bicycles would crash , as that would have been fun to see !", "storylet_id": "212674"}], [{"original_text": "I took my food truck to the bike race today.", "album_id": "591459", "photo_flickr_id": "25995307", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42535", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took my food truck to the bike race today .", "storylet_id": "212675"}], [{"original_text": "When I got there there were already a lot of other people there.", "album_id": "591459", "photo_flickr_id": "25995847", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42535", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when i got there there were already a lot of other people there .", "storylet_id": "212676"}], [{"original_text": "There was another food truck there before me.", "album_id": "591459", "photo_flickr_id": "25996218", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42535", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was another food truck there before me .", "storylet_id": "212677"}], [{"original_text": "They were all showing now.", "album_id": "591459", "photo_flickr_id": "25997109", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42535", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were all showing now .", "storylet_id": "212678"}], [{"original_text": "I had a lot of competition.", "album_id": "591459", "photo_flickr_id": "25997487", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42535", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a lot of competition .", "storylet_id": "212679"}], [{"original_text": "The crazy French had their annual crazy car fest.", "album_id": "591459", "photo_flickr_id": "25995484", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42536", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crazy french had their annual crazy car fest .", "storylet_id": "212680"}], [{"original_text": "This car mocked Lance Armstrong.", "album_id": "591459", "photo_flickr_id": "25997109", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42536", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this car mocked [male] armstrong .", "storylet_id": "212681"}], [{"original_text": "The horses on these were based on the Kentucky Derby.", "album_id": "591459", "photo_flickr_id": "25998162", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42536", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the horses on these were based on the location location .", "storylet_id": "212682"}], [{"original_text": "This little guy told patrons they needed to eat pork.", "album_id": "591459", "photo_flickr_id": "25998986", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42536", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this little guy told patrons they needed to eat pork .", "storylet_id": "212683"}], [{"original_text": "And this device went last and cleaned up the streets with a vacuum.", "album_id": "591459", "photo_flickr_id": "25999453", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42536", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and this device went last and cleaned up the streets with a vacuum .", "storylet_id": "212684"}], [{"original_text": "This is a truck filled with goodies.", "album_id": "591459", "photo_flickr_id": "25995307", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42537", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a truck filled with goodies .", "storylet_id": "212685"}], [{"original_text": "Grand mere seems to have quite the following.", "album_id": "591459", "photo_flickr_id": "25995847", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42537", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grand mere seems to have quite the following .", "storylet_id": "212686"}], [{"original_text": "People are walking away with cups, what will they put in them?", "album_id": "591459", "photo_flickr_id": "25996218", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42537", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people are walking away with cups , what will they put in them ?", "storylet_id": "212687"}], [{"original_text": "This yweelow car has a big man attatched to it.", "album_id": "591459", "photo_flickr_id": "25997109", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42537", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this yweelow car has a big man attatched to it .", "storylet_id": "212688"}], [{"original_text": "The green car is clearly advertising pretzels.", "album_id": "591459", "photo_flickr_id": "25997487", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42537", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the green car is clearly advertising pretzels .", "storylet_id": "212689"}], [{"original_text": "The parade started and was lead by the Extreme Ice Cream Truck, a fan favorite.", "album_id": "591459", "photo_flickr_id": "25995484", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42538", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parade started and was lead by the extreme ice cream truck , a fan favorite .", "storylet_id": "212690"}], [{"original_text": "Then, to many's amazement, it appeared to be a bicyclist...", "album_id": "591459", "photo_flickr_id": "25997109", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42538", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then , to many 's amazement , it appeared to be a bicyclist ...", "storylet_id": "212691"}], [{"original_text": "followed by a trio of horses. Quite a sight.", "album_id": "591459", "photo_flickr_id": "25998162", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42538", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "followed by a trio of horses . quite a sight .", "storylet_id": "212692"}], [{"original_text": "When the Little Red Pig arrived, folks cheered.", "album_id": "591459", "photo_flickr_id": "25998986", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42538", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the location location location arrived , folks cheered .", "storylet_id": "212693"}], [{"original_text": "And, the show ended with a rather awkward looking creature finishing up the parade. Folks laughed as it drove by.", "album_id": "591459", "photo_flickr_id": "25999453", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42538", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , the show ended with a rather awkward looking creature finishing up the parade . folks laughed as it drove by .", "storylet_id": "212694"}], [{"original_text": "What an exciting day.", "album_id": "591459", "photo_flickr_id": "25995484", "setting": "last-3-pick-old-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42539", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what an exciting day .", "storylet_id": "212695"}], [{"original_text": "The Tour de France.", "album_id": "591459", "photo_flickr_id": "25997109", "setting": "last-3-pick-old-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42539", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tour de france .", "storylet_id": "212696"}], [{"original_text": "The floats were amazing.", "album_id": "591459", "photo_flickr_id": "25998162", "setting": "last-3-pick-old-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42539", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the floats were amazing .", "storylet_id": "212697"}], [{"original_text": "There was a pig.", "album_id": "591459", "photo_flickr_id": "25998986", "setting": "last-3-pick-old-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42539", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a pig .", "storylet_id": "212698"}], [{"original_text": "And whatever this thing is!", "album_id": "591459", "photo_flickr_id": "25999453", "setting": "last-3-pick-old-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42539", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and whatever this thing is !", "storylet_id": "212699"}], [{"original_text": "The race had begun and the racers tried their best to gain a lead early.", "album_id": "1011990", "photo_flickr_id": "46337598", "setting": "first-2-pick-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "42540", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the race had begun and the racers tried their best to gain a lead early .", "storylet_id": "212700"}], [{"original_text": "One rider drew away from the pack; would he be today's winner?", "album_id": "1011990", "photo_flickr_id": "46337609", "setting": "first-2-pick-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "42540", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one rider drew away from the pack ; would he be today 's winner ?", "storylet_id": "212701"}], [{"original_text": "Another racer tried to pull around from behind to take the lead.", "album_id": "1011990", "photo_flickr_id": "46337623", "setting": "first-2-pick-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "42540", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another racer tried to pull around from behind to take the lead .", "storylet_id": "212702"}], [{"original_text": "However, the frontrunner was too far ahead.", "album_id": "1011990", "photo_flickr_id": "46337648", "setting": "first-2-pick-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "42540", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "however , the frontrunner was too far ahead .", "storylet_id": "212703"}], [{"original_text": "The leader could see the finish line now; all he had to do was make it there.", "album_id": "1011990", "photo_flickr_id": "46662541", "setting": "first-2-pick-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "42540", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the leader could see the finish line now ; all he had to do was make it there .", "storylet_id": "212704"}], [{"original_text": "Today i'm not here to ride. I'm here to take pictures of these awesome riders.", "album_id": "1011990", "photo_flickr_id": "46337614", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42541", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i 'm not here to ride . i 'm here to take pictures of these awesome riders .", "storylet_id": "212705"}], [{"original_text": "Look how fast they are going.", "album_id": "1011990", "photo_flickr_id": "46337703", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42541", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look how fast they are going .", "storylet_id": "212706"}], [{"original_text": "This guy is fast and wins every year.", "album_id": "1011990", "photo_flickr_id": "46662505", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42541", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this guy is fast and wins every year .", "storylet_id": "212707"}], [{"original_text": "There he goes, off for the win.", "album_id": "1011990", "photo_flickr_id": "46662541", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42541", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there he goes , off for the win .", "storylet_id": "212708"}], [{"original_text": "and again, he wins it. Bikers are great.", "album_id": "1011990", "photo_flickr_id": "46662605", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42541", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and again , he wins it . bikers are great .", "storylet_id": "212709"}], [{"original_text": "Grandpa used to race his bike all the time.", "album_id": "1011990", "photo_flickr_id": "46337598", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42542", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandpa used to race his bike all the time .", "storylet_id": "212710"}], [{"original_text": "The bikers would take off so quickly down the streets.", "album_id": "1011990", "photo_flickr_id": "46337609", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42542", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bikers would take off so quickly down the streets .", "storylet_id": "212711"}], [{"original_text": "The race would be so close you could hardly contain yourself.", "album_id": "1011990", "photo_flickr_id": "46337623", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42542", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the race would be so close you could hardly contain yourself .", "storylet_id": "212712"}], [{"original_text": "Even just one second could determine the winner.", "album_id": "1011990", "photo_flickr_id": "46337648", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42542", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even just one second could determine the winner .", "storylet_id": "212713"}], [{"original_text": "Your grandpa was one of the best bikers there. ", "album_id": "1011990", "photo_flickr_id": "46662541", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42542", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "your grandpa was one of the best bikers there .", "storylet_id": "212714"}], [{"original_text": "Everybody was trying their best to win the race.", "album_id": "1011990", "photo_flickr_id": "46337598", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42543", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everybody was trying their best to win the race .", "storylet_id": "212715"}], [{"original_text": "I was some where in the middle.", "album_id": "1011990", "photo_flickr_id": "46337609", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42543", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was some where in the middle .", "storylet_id": "212716"}], [{"original_text": "I passed as many people as I could.", "album_id": "1011990", "photo_flickr_id": "46337623", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42543", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i passed as many people as i could .", "storylet_id": "212717"}], [{"original_text": "After a while I finally made it to the front.", "album_id": "1011990", "photo_flickr_id": "46337648", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42543", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a while i finally made it to the front .", "storylet_id": "212718"}], [{"original_text": "I did my best and I won!", "album_id": "1011990", "photo_flickr_id": "46662541", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42543", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i did my best and i won !", "storylet_id": "212719"}], [{"original_text": "The racers whizzed by faster than a gust of wind.", "album_id": "1011990", "photo_flickr_id": "46337598", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42544", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the racers whizzed by faster than a gust of wind .", "storylet_id": "212720"}], [{"original_text": "A line of slow bikers came by very slow.", "album_id": "1011990", "photo_flickr_id": "46337609", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42544", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a line of slow bikers came by very slow .", "storylet_id": "212721"}], [{"original_text": "I never went to a bike race before this day.", "album_id": "1011990", "photo_flickr_id": "46337623", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42544", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i never went to a bike race before this day .", "storylet_id": "212722"}], [{"original_text": "I stood by the finish line in anticipation of a good picture.", "album_id": "1011990", "photo_flickr_id": "46337648", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42544", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i stood by the finish line in anticipation of a good picture .", "storylet_id": "212723"}], [{"original_text": "A man named Andy won the race.", "album_id": "1011990", "photo_flickr_id": "46662541", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42544", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a man named [male] won the race .", "storylet_id": "212724"}], [{"original_text": "My friends and I had decided to take part in an annual race that was in my town.", "album_id": "1027128", "photo_flickr_id": "47111408", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "42545", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i had decided to take part in an annual race that was in my town .", "storylet_id": "212725"}], [{"original_text": "There were lots of bikers in attendance. Everyone was ready to have a good time.", "album_id": "1027128", "photo_flickr_id": "47111410", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "42545", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were lots of bikers in attendance . everyone was ready to have a good time .", "storylet_id": "212726"}], [{"original_text": "James was falling a little bit behind, but kept pushing through, as the race was for charity.", "album_id": "1027128", "photo_flickr_id": "47113044", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "42545", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was falling a little bit behind , but kept pushing through , as the race was for charity .", "storylet_id": "212727"}], [{"original_text": "Johnny ended up wiping out towards the end. He doesn't look too sad about it though.", "album_id": "1027128", "photo_flickr_id": "47113046", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "42545", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] ended up wiping out towards the end . he does n't look too sad about it though .", "storylet_id": "212728"}], [{"original_text": "After being covered in mud from a couple of falls, we decided to hang up our gear for another day.", "album_id": "1027128", "photo_flickr_id": "47114011", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "42545", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after being covered in mud from a couple of falls , we decided to hang up our gear for another day .", "storylet_id": "212729"}], [{"original_text": "getting ready to race our bikes.", "album_id": "1027128", "photo_flickr_id": "47111408", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42546", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting ready to race our bikes .", "storylet_id": "212730"}], [{"original_text": "Here we go, I'm gonna win this.", "album_id": "1027128", "photo_flickr_id": "47111410", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42546", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we go , i 'm gon na win this .", "storylet_id": "212731"}], [{"original_text": "doing it, winning!", "album_id": "1027128", "photo_flickr_id": "47111412", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42546", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "doing it , winning !", "storylet_id": "212732"}], [{"original_text": "Here I go, i'm going a little fast but that's ok.", "album_id": "1027128", "photo_flickr_id": "47111413", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42546", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here i go , i 'm going a little fast but that 's ok .", "storylet_id": "212733"}], [{"original_text": "Whoops, I did fall I wonder if I can catch up.", "album_id": "1027128", "photo_flickr_id": "47113046", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42546", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "whoops , i did fall i wonder if i can catch up .", "storylet_id": "212734"}], [{"original_text": "They are ready to start the race", "album_id": "1027128", "photo_flickr_id": "47111408", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42547", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they are ready to start the race", "storylet_id": "212735"}], [{"original_text": "They get ready to start the race", "album_id": "1027128", "photo_flickr_id": "47111410", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42547", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they get ready to start the race", "storylet_id": "212736"}], [{"original_text": "And they take off ", "album_id": "1027128", "photo_flickr_id": "47113044", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42547", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and they take off", "storylet_id": "212737"}], [{"original_text": "Someone falls and need help", "album_id": "1027128", "photo_flickr_id": "47113046", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42547", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someone falls and need help", "storylet_id": "212738"}], [{"original_text": "Someone pulls aside and help and walk to the finish line with him", "album_id": "1027128", "photo_flickr_id": "47114011", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42547", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someone pulls aside and help and walk to the finish line with him", "storylet_id": "212739"}], [{"original_text": "The annual bike race was held today.", "album_id": "1027128", "photo_flickr_id": "47111408", "setting": "last-3-pick-old-and-tell", "worker_id": "VDV38N2JYIZ9WIC", "story_id": "42548", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the annual bike race was held today .", "storylet_id": "212740"}], [{"original_text": "Bikers from all over the state lined up for the start in the park.", "album_id": "1027128", "photo_flickr_id": "47111410", "setting": "last-3-pick-old-and-tell", "worker_id": "VDV38N2JYIZ9WIC", "story_id": "42548", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "bikers from all over the state lined up for the start in the park .", "storylet_id": "212741"}], [{"original_text": "This man was the clear leader throughout most of the race.", "album_id": "1027128", "photo_flickr_id": "47113044", "setting": "last-3-pick-old-and-tell", "worker_id": "VDV38N2JYIZ9WIC", "story_id": "42548", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this man was the clear leader throughout most of the race .", "storylet_id": "212742"}], [{"original_text": "Unfortunately, a bad spill took him out of the lead.", "album_id": "1027128", "photo_flickr_id": "47113046", "setting": "last-3-pick-old-and-tell", "worker_id": "VDV38N2JYIZ9WIC", "story_id": "42548", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "unfortunately , a bad spill took him out of the lead .", "storylet_id": "212743"}], [{"original_text": "He left without a trophy, but with lots good memories.", "album_id": "1027128", "photo_flickr_id": "47114011", "setting": "last-3-pick-old-and-tell", "worker_id": "VDV38N2JYIZ9WIC", "story_id": "42548", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he left without a trophy , but with lots good memories .", "storylet_id": "212744"}], [{"original_text": "Today's race was something we had been looking forward to for weeks.", "album_id": "1027128", "photo_flickr_id": "47111408", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42549", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today 's race was something we had been looking forward to for weeks .", "storylet_id": "212745"}], [{"original_text": "At the start of the race, everyone got ready at the agreed upon starting point.", "album_id": "1027128", "photo_flickr_id": "47111410", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42549", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at the start of the race , everyone got ready at the agreed upon starting point .", "storylet_id": "212746"}], [{"original_text": "By the middle of the race, Alex was starting to flag.", "album_id": "1027128", "photo_flickr_id": "47113044", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42549", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "by the middle of the race , [male] was starting to flag .", "storylet_id": "212747"}], [{"original_text": "He hit a rock in the middle of the road and flew 10 feet through the air!", "album_id": "1027128", "photo_flickr_id": "47113046", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42549", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he hit a rock in the middle of the road and flew 10 feet through the air !", "storylet_id": "212748"}], [{"original_text": "Fortunately Jason was there to help him back onto his feet.", "album_id": "1027128", "photo_flickr_id": "47114011", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "42549", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fortunately [male] was there to help him back onto his feet .", "storylet_id": "212749"}], [{"original_text": "There was a massive crowd gathered for the bike event.", "album_id": "1104109", "photo_flickr_id": "50669516", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42550", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a massive crowd gathered for the bike event .", "storylet_id": "212750"}], [{"original_text": "Everyone was getting ready to have a good time riding through the city. ", "album_id": "1104109", "photo_flickr_id": "50669515", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42550", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was getting ready to have a good time riding through the city .", "storylet_id": "212751"}], [{"original_text": "There were a couple of riders goofing off on their bikes while we waited.", "album_id": "1104109", "photo_flickr_id": "50670053", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42550", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a couple of riders goofing off on their bikes while we waited .", "storylet_id": "212752"}], [{"original_text": "Some riders were even pulling wheelies which caused everyone to cheer.", "album_id": "1104109", "photo_flickr_id": "50670056", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42550", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some riders were even pulling wheelies which caused everyone to cheer .", "storylet_id": "212753"}], [{"original_text": "Everyone had a great time in the city that night hanging out.", "album_id": "1104109", "photo_flickr_id": "50669529", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42550", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time in the city that night hanging out .", "storylet_id": "212754"}], [{"original_text": "Late night bike rides can be fun. Here we are riding to Pittsburgh. ", "album_id": "1104109", "photo_flickr_id": "50669529", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42551", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "late night bike rides can be fun . here we are riding to location .", "storylet_id": "212755"}], [{"original_text": "Look at all the lights. I took this picture because it's neat to see.", "album_id": "1104109", "photo_flickr_id": "50669517", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42551", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look at all the lights . i took this picture because it 's neat to see .", "storylet_id": "212756"}], [{"original_text": "Let's go, on our way back home so soon.", "album_id": "1104109", "photo_flickr_id": "50670055", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42551", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "let 's go , on our way back home so soon .", "storylet_id": "212757"}], [{"original_text": "Rounding everyone up to go home. ", "album_id": "1104109", "photo_flickr_id": "50669749", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42551", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "rounding everyone up to go home .", "storylet_id": "212758"}], [{"original_text": "almost hit that guy.", "album_id": "1104109", "photo_flickr_id": "50670059", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42551", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "almost hit that guy .", "storylet_id": "212759"}], [{"original_text": "Everyone is gathered for the night race", "album_id": "1104109", "photo_flickr_id": "50669516", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42552", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone is gathered for the night race", "storylet_id": "212760"}], [{"original_text": "More people start to come and waiting for the race to start", "album_id": "1104109", "photo_flickr_id": "50669515", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42552", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "more people start to come and waiting for the race to start", "storylet_id": "212761"}], [{"original_text": "Everyone is waiting and still coming", "album_id": "1104109", "photo_flickr_id": "50670053", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42552", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone is waiting and still coming", "storylet_id": "212762"}], [{"original_text": "People start to practice ", "album_id": "1104109", "photo_flickr_id": "50670056", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42552", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people start to practice", "storylet_id": "212763"}], [{"original_text": "And then they start", "album_id": "1104109", "photo_flickr_id": "50669529", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42552", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then they start", "storylet_id": "212764"}], [{"original_text": "The streets are lined up with people ready to watch a fun race at night.", "album_id": "1104109", "photo_flickr_id": "50669516", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "42553", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the streets are lined up with people ready to watch a fun race at night .", "storylet_id": "212765"}], [{"original_text": "The bikes are very nice, some may possibly even be mountain bikes.", "album_id": "1104109", "photo_flickr_id": "50669515", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "42553", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bikes are very nice , some may possibly even be mountain bikes .", "storylet_id": "212766"}], [{"original_text": "As the racers sit and wait they chat it up with other local racers.", "album_id": "1104109", "photo_flickr_id": "50670053", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "42553", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as the racers sit and wait they chat it up with other local racers .", "storylet_id": "212767"}], [{"original_text": "Some racers practice tricks to make the time go by fast.", "album_id": "1104109", "photo_flickr_id": "50670056", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "42553", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some racers practice tricks to make the time go by fast .", "storylet_id": "212768"}], [{"original_text": "The race is coming soon and the competitors can hardly wait.", "album_id": "1104109", "photo_flickr_id": "50669529", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "42553", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the race is coming soon and the competitors can hardly wait .", "storylet_id": "212769"}], [{"original_text": "We went to an outing downtown of fellow cycling enthusiasts.", "album_id": "1104109", "photo_flickr_id": "50669516", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "42554", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to an outing downtown of fellow cycling enthusiasts .", "storylet_id": "212770"}], [{"original_text": "People came from the surrounding area to show off their bikes and talk about cycling.", "album_id": "1104109", "photo_flickr_id": "50669515", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "42554", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people came from the surrounding area to show off their bikes and talk about cycling .", "storylet_id": "212771"}], [{"original_text": "As everyone sat around, talking about their bikes, people came to the conclusion that we should all take a midnight bike ride.", "album_id": "1104109", "photo_flickr_id": "50670053", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "42554", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as everyone sat around , talking about their bikes , people came to the conclusion that we should all take a midnight bike ride .", "storylet_id": "212772"}], [{"original_text": "Some people decided not to take part in it and went home instead.", "album_id": "1104109", "photo_flickr_id": "50670056", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "42554", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people decided not to take part in it and went home instead .", "storylet_id": "212773"}], [{"original_text": "But for the most part, people decided to take a one hour bike ride around the city. It was a lot of fun.", "album_id": "1104109", "photo_flickr_id": "50669529", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "42554", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but for the most part , people decided to take a one hour bike ride around the city . it was a lot of fun .", "storylet_id": "212774"}], [{"original_text": "Here we are getting ready to start our bike tour in Holland.", "album_id": "72057594051661797", "photo_flickr_id": "89291266", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "42555", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are getting ready to start our bike tour in location .", "storylet_id": "212775"}], [{"original_text": "These cool little bridges are everyplace there.", "album_id": "72057594051661797", "photo_flickr_id": "89290500", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "42555", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these cool little bridges are everyplace there .", "storylet_id": "212776"}], [{"original_text": "Here we are trying to feed the geese.", "album_id": "72057594051661797", "photo_flickr_id": "89288691", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "42555", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here we are trying to feed the geese .", "storylet_id": "212777"}], [{"original_text": "We might have ridden through just a little bit of mud!", "album_id": "72057594051661797", "photo_flickr_id": "89284815", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "42555", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we might have ridden through just a little bit of mud !", "storylet_id": "212778"}], [{"original_text": "Back safe and sound, what am amazing day!", "album_id": "72057594051661797", "photo_flickr_id": "89283868", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "42555", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "back safe and sound , what am amazing day !", "storylet_id": "212779"}], [{"original_text": "My grandfather was taking my sister and I on a bike ride along the river.", "album_id": "72057594051661797", "photo_flickr_id": "89291266", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "42556", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my grandfather was taking my sister and i on a bike ride along the river .", "storylet_id": "212780"}], [{"original_text": "There was a steamboat puffing along. It was an amazing site.", "album_id": "72057594051661797", "photo_flickr_id": "89289583", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "42556", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a steamboat puffing along . it was an amazing site .", "storylet_id": "212781"}], [{"original_text": "We tried to feed some ducks along the way, however, none of them wanted a bite.", "album_id": "72057594051661797", "photo_flickr_id": "89288691", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "42556", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we tried to feed some ducks along the way , however , none of them wanted a bite .", "storylet_id": "212782"}], [{"original_text": "It started to look a little stormy out. Good thing we were passing by the church, meaning we were almost home.", "album_id": "72057594051661797", "photo_flickr_id": "89286025", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "42556", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it started to look a little stormy out . good thing we were passing by the church , meaning we were almost home .", "storylet_id": "212783"}], [{"original_text": "I'm so glad my grandfather took us for this experience. It was great!", "album_id": "72057594051661797", "photo_flickr_id": "89283868", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "42556", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm so glad my grandfather took us for this experience . it was great !", "storylet_id": "212784"}], [{"original_text": "The vacation we went on last year was so much fun.", "album_id": "72057594051661797", "photo_flickr_id": "89291266", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42557", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the vacation we went on last year was so much fun .", "storylet_id": "212785"}], [{"original_text": "We took a ride in an actual steamboat down the canal.", "album_id": "72057594051661797", "photo_flickr_id": "89289583", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42557", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a ride in an actual steamboat down the canal .", "storylet_id": "212786"}], [{"original_text": "After that we biked the rest of the way down the trail.", "album_id": "72057594051661797", "photo_flickr_id": "89288691", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42557", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that we biked the rest of the way down the trail .", "storylet_id": "212787"}], [{"original_text": "When we got back to town we decided to get some food.", "album_id": "72057594051661797", "photo_flickr_id": "89286025", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42557", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we got back to town we decided to get some food .", "storylet_id": "212788"}], [{"original_text": "We stopped by a restaurant to eat.", "album_id": "72057594051661797", "photo_flickr_id": "89283868", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42557", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we stopped by a restaurant to eat .", "storylet_id": "212789"}], [{"original_text": "Grandpa did some adjustments on ours bikes before we headed out on our long bike ride.", "album_id": "72057594051661797", "photo_flickr_id": "89291266", "setting": "last-3-pick-old-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42558", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandpa did some adjustments on ours bikes before we headed out on our long bike ride .", "storylet_id": "212790"}], [{"original_text": "We went all around the countryside stopping many times to enjoy the scenery.", "album_id": "72057594051661797", "photo_flickr_id": "89290500", "setting": "last-3-pick-old-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42558", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went all around the countryside stopping many times to enjoy the scenery .", "storylet_id": "212791"}], [{"original_text": "We enjoyed the riverside trail.", "album_id": "72057594051661797", "photo_flickr_id": "89288691", "setting": "last-3-pick-old-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42558", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we enjoyed the riverside trail .", "storylet_id": "212792"}], [{"original_text": "Once my bike got caught up in some tree branches we knew it was time to head back.", "album_id": "72057594051661797", "photo_flickr_id": "89284815", "setting": "last-3-pick-old-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42558", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once my bike got caught up in some tree branches we knew it was time to head back .", "storylet_id": "212793"}], [{"original_text": "Grandpa was waiting for our return, he made us a nice dinner.", "album_id": "72057594051661797", "photo_flickr_id": "89283868", "setting": "last-3-pick-old-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42558", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandpa was waiting for our return , he made us a nice dinner .", "storylet_id": "212794"}], [{"original_text": "The father with his two daughters decided to have a day out together.", "album_id": "72057594051661797", "photo_flickr_id": "89291266", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42559", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the father with his two daughters decided to have a day out together .", "storylet_id": "212795"}], [{"original_text": "They saw a boat riding across the river.", "album_id": "72057594051661797", "photo_flickr_id": "89289583", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42559", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they saw a boat riding across the river .", "storylet_id": "212796"}], [{"original_text": "The girls decided to wave to them!", "album_id": "72057594051661797", "photo_flickr_id": "89288691", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42559", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girls decided to wave to them !", "storylet_id": "212797"}], [{"original_text": "They even saw this old styled building on their little trip.", "album_id": "72057594051661797", "photo_flickr_id": "89286025", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42559", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even saw this old styled building on their little trip .", "storylet_id": "212798"}], [{"original_text": "The daughter decided to take a picture of his father for memory.", "album_id": "72057594051661797", "photo_flickr_id": "89283868", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42559", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the daughter decided to take a picture of his father for memory .", "storylet_id": "212799"}], [{"original_text": "it was finally race day", "album_id": "72057594068779588", "photo_flickr_id": "103259043", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42560", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was finally race day", "storylet_id": "212800"}], [{"original_text": "these are the bikes they would use", "album_id": "72057594068779588", "photo_flickr_id": "103259113", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42560", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these are the bikes they would use", "storylet_id": "212801"}], [{"original_text": "and they were off to the races", "album_id": "72057594068779588", "photo_flickr_id": "103259276", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42560", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and they were off to the races", "storylet_id": "212802"}], [{"original_text": "pushing hard for every inch not giving up", "album_id": "72057594068779588", "photo_flickr_id": "103228474", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42560", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "pushing hard for every inch not giving up", "storylet_id": "212803"}], [{"original_text": "these were the top three finishers ", "album_id": "72057594068779588", "photo_flickr_id": "103228289", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42560", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these were the top three finishers", "storylet_id": "212804"}], [{"original_text": "There were a lot of bikes at the race.", "album_id": "72057594068779588", "photo_flickr_id": "103259043", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42561", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of bikes at the race .", "storylet_id": "212805"}], [{"original_text": "I took one to race with.", "album_id": "72057594068779588", "photo_flickr_id": "103259276", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42561", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i took one to race with .", "storylet_id": "212806"}], [{"original_text": "I made sure it was very clean.", "album_id": "72057594068779588", "photo_flickr_id": "103258248", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42561", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i made sure it was very clean .", "storylet_id": "212807"}], [{"original_text": "It was about time to race.", "album_id": "72057594068779588", "photo_flickr_id": "103268551", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42561", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was about time to race .", "storylet_id": "212808"}], [{"original_text": "I lined my bike up with the others and waited.", "album_id": "72057594068779588", "photo_flickr_id": "103268570", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42561", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i lined my bike up with the others and waited .", "storylet_id": "212809"}], [{"original_text": "The CSC team was ready on the scene...", "album_id": "72057594068779588", "photo_flickr_id": "103259043", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42562", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization team was ready on the scene ...", "storylet_id": "212810"}], [{"original_text": "It was time to unload the bikes from the truck...", "album_id": "72057594068779588", "photo_flickr_id": "103259113", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42562", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was time to unload the bikes from the truck ...", "storylet_id": "212811"}], [{"original_text": "And, they were off to the races.", "album_id": "72057594068779588", "photo_flickr_id": "103259276", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42562", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and , they were off to the races .", "storylet_id": "212812"}], [{"original_text": "The team was performing admirably, as they prepared to pass the HP rider.", "album_id": "72057594068779588", "photo_flickr_id": "103228474", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42562", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the team was performing admirably , as they prepared to pass the hp rider .", "storylet_id": "212813"}], [{"original_text": "With the talent on the CSC team, they were able to have two of the top three performers on the day. Quite a feat for the team.", "album_id": "72057594068779588", "photo_flickr_id": "103228289", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42562", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with the talent on the organization team , they were able to have two of the top three performers on the day . quite a feat for the team .", "storylet_id": "212814"}], [{"original_text": "Those bikes are worth more than my house!", "album_id": "72057594068779588", "photo_flickr_id": "103259043", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42563", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "those bikes are worth more than my house !", "storylet_id": "212815"}], [{"original_text": "They're prepping for the big race. Should be a good one.", "album_id": "72057594068779588", "photo_flickr_id": "103259276", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42563", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they 're prepping for the big race . should be a good one .", "storylet_id": "212816"}], [{"original_text": "Gotta take good care of these things. ", "album_id": "72057594068779588", "photo_flickr_id": "103258248", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42563", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "got ta take good care of these things .", "storylet_id": "212817"}], [{"original_text": "I wish I had one. One day...", "album_id": "72057594068779588", "photo_flickr_id": "103268551", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42563", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i wish i had one . one day ...", "storylet_id": "212818"}], [{"original_text": "It sure isn't the Schwinn I had as a kid!", "album_id": "72057594068779588", "photo_flickr_id": "103268570", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42563", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it sure is n't the schwinn i had as a kid !", "storylet_id": "212819"}], [{"original_text": "The Tour de France was starting to kick off. ", "album_id": "72057594068779588", "photo_flickr_id": "103259043", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "42564", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tour de location was starting to kick off .", "storylet_id": "212820"}], [{"original_text": "There were bikes everywhere. ", "album_id": "72057594068779588", "photo_flickr_id": "103259113", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "42564", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were bikes everywhere .", "storylet_id": "212821"}], [{"original_text": "We even saw some riders out warming up. ", "album_id": "72057594068779588", "photo_flickr_id": "103259276", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "42564", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even saw some riders out warming up .", "storylet_id": "212822"}], [{"original_text": "We saw Sven Jorgenborg warming up. ", "album_id": "72057594068779588", "photo_flickr_id": "103228474", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "42564", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw sven jorgenborg warming up .", "storylet_id": "212823"}], [{"original_text": "It was so fun to see the winners at the end. ", "album_id": "72057594068779588", "photo_flickr_id": "103228289", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "42564", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was so fun to see the winners at the end .", "storylet_id": "212824"}], [{"original_text": "it was time for a little bike riding", "album_id": "72157594144379059", "photo_flickr_id": "152724698", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42565", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was time for a little bike riding", "storylet_id": "212825"}], [{"original_text": "first it was one on one", "album_id": "72157594144379059", "photo_flickr_id": "152725699", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42565", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first it was one on one", "storylet_id": "212826"}], [{"original_text": "then it become two on two", "album_id": "72157594144379059", "photo_flickr_id": "152726618", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42565", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then it become two on two", "storylet_id": "212827"}], [{"original_text": "it was a great time at the race", "album_id": "72157594144379059", "photo_flickr_id": "152733552", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42565", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a great time at the race", "storylet_id": "212828"}], [{"original_text": "they enjoyed dinner afterwards ", "album_id": "72157594144379059", "photo_flickr_id": "152733988", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42565", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they enjoyed dinner afterwards", "storylet_id": "212829"}], [{"original_text": "When I got to the race everyone was already there.", "album_id": "72157594144379059", "photo_flickr_id": "152724958", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42566", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i got to the race everyone was already there .", "storylet_id": "212830"}], [{"original_text": "Some people had very unique bikes.", "album_id": "72157594144379059", "photo_flickr_id": "152725187", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42566", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some people had very unique bikes .", "storylet_id": "212831"}], [{"original_text": "I brought a normal one.", "album_id": "72157594144379059", "photo_flickr_id": "152725506", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42566", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i brought a normal one .", "storylet_id": "212832"}], [{"original_text": "Everyone was determined to win.", "album_id": "72157594144379059", "photo_flickr_id": "152725699", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42566", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was determined to win .", "storylet_id": "212833"}], [{"original_text": "I came in first place!", "album_id": "72157594144379059", "photo_flickr_id": "152725945", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42566", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i came in first place !", "storylet_id": "212834"}], [{"original_text": "As the friends were getting ready for the bike race, they received all their passes to participate.", "album_id": "72157594144379059", "photo_flickr_id": "152724698", "setting": "last-3-pick-old-and-tell", "worker_id": "T6ZHYTX1OTO7MDV", "story_id": "42567", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as the friends were getting ready for the bike race , they received all their passes to participate .", "storylet_id": "212835"}], [{"original_text": "It was a beautiful day for a race and in the lead were two competitors who were also the best of friends.", "album_id": "72157594144379059", "photo_flickr_id": "152725699", "setting": "last-3-pick-old-and-tell", "worker_id": "T6ZHYTX1OTO7MDV", "story_id": "42567", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a beautiful day for a race and in the lead were two competitors who were also the best of friends .", "storylet_id": "212836"}], [{"original_text": "When the 3 mile mark was reached the racers were starting to feel the burn but continued on in good spirits.", "album_id": "72157594144379059", "photo_flickr_id": "152726618", "setting": "last-3-pick-old-and-tell", "worker_id": "T6ZHYTX1OTO7MDV", "story_id": "42567", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when the 3 mile mark was reached the racers were starting to feel the burn but continued on in good spirits .", "storylet_id": "212837"}], [{"original_text": "The end of the race and the two friends were ahead of the rest.", "album_id": "72157594144379059", "photo_flickr_id": "152733552", "setting": "last-3-pick-old-and-tell", "worker_id": "T6ZHYTX1OTO7MDV", "story_id": "42567", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the end of the race and the two friends were ahead of the rest .", "storylet_id": "212838"}], [{"original_text": "An end to a great day and all the bicyclists went to the local restaurant to kick back and relax.", "album_id": "72157594144379059", "photo_flickr_id": "152733988", "setting": "last-3-pick-old-and-tell", "worker_id": "T6ZHYTX1OTO7MDV", "story_id": "42567", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "an end to a great day and all the bicyclists went to the local restaurant to kick back and relax .", "storylet_id": "212839"}], [{"original_text": "The biking group gathered on a sunny day.", "album_id": "72157594144379059", "photo_flickr_id": "152724958", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42568", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the biking group gathered on a sunny day .", "storylet_id": "212840"}], [{"original_text": "There were a variety of bikes.", "album_id": "72157594144379059", "photo_flickr_id": "152725187", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42568", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a variety of bikes .", "storylet_id": "212841"}], [{"original_text": "Even some ride tandem.", "album_id": "72157594144379059", "photo_flickr_id": "152725506", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42568", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even some ride tandem .", "storylet_id": "212842"}], [{"original_text": "The racers were way ahead.", "album_id": "72157594144379059", "photo_flickr_id": "152725699", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42568", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the racers were way ahead .", "storylet_id": "212843"}], [{"original_text": "The casual riders were just riding for enjoyment.", "album_id": "72157594144379059", "photo_flickr_id": "152725945", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42568", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the casual riders were just riding for enjoyment .", "storylet_id": "212844"}], [{"original_text": "The morning of the race, we greeted each other and exchanged our cards.", "album_id": "72157594144379059", "photo_flickr_id": "152724698", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "42569", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the morning of the race , we greeted each other and exchanged our cards .", "storylet_id": "212845"}], [{"original_text": "The start of the race actually felt quite leisurely. ", "album_id": "72157594144379059", "photo_flickr_id": "152725699", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "42569", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the start of the race actually felt quite leisurely .", "storylet_id": "212846"}], [{"original_text": "At times, we were in a group and exchanged a few words as we sped along.", "album_id": "72157594144379059", "photo_flickr_id": "152726618", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "42569", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at times , we were in a group and exchanged a few words as we sped along .", "storylet_id": "212847"}], [{"original_text": "At the end, it was all smiles as we all came to the end basically at the same time.", "album_id": "72157594144379059", "photo_flickr_id": "152733552", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "42569", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the end , it was all smiles as we all came to the end basically at the same time .", "storylet_id": "212848"}], [{"original_text": "The bikes looked like a pile of wreckage after the race when they were just parked there on the side of the road.", "album_id": "72157594144379059", "photo_flickr_id": "152733988", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "42569", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bikes looked like a pile of wreckage after the race when they were just parked there on the side of the road .", "storylet_id": "212849"}], [{"original_text": "My brother rode a green bike on the trails.", "album_id": "72157594155491723", "photo_flickr_id": "160273814", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42570", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brother rode a green bike on the trails .", "storylet_id": "212850"}], [{"original_text": "My cousin chose the gray bike because it was more agile.", "album_id": "72157594155491723", "photo_flickr_id": "160276239", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42570", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my cousin chose the gray bike because it was more agile .", "storylet_id": "212851"}], [{"original_text": "My brother wanted to do incredible tricks.", "album_id": "72157594155491723", "photo_flickr_id": "160259409", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42570", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brother wanted to do incredible tricks .", "storylet_id": "212852"}], [{"original_text": "He got a lot of air off of this ledge.", "album_id": "72157594155491723", "photo_flickr_id": "160267147", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42570", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he got a lot of air off of this ledge .", "storylet_id": "212853"}], [{"original_text": "I convinced him to help me get a jaw dropping photo.", "album_id": "72157594155491723", "photo_flickr_id": "160292581", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42570", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i convinced him to help me get a jaw dropping photo .", "storylet_id": "212854"}], [{"original_text": "I had a great time at the BMX competition.", "album_id": "72157594155491723", "photo_flickr_id": "160278433", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42571", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the bmx competition .", "storylet_id": "212855"}], [{"original_text": "There were tons of cool bikes there.", "album_id": "72157594155491723", "photo_flickr_id": "160278949", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42571", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were tons of cool bikes there .", "storylet_id": "212856"}], [{"original_text": "The riders did cool tricks.", "album_id": "72157594155491723", "photo_flickr_id": "160259409", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42571", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the riders did cool tricks .", "storylet_id": "212857"}], [{"original_text": "Some of them were dangerous.", "album_id": "72157594155491723", "photo_flickr_id": "160267147", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42571", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of them were dangerous .", "storylet_id": "212858"}], [{"original_text": "It was a ton of fun.", "album_id": "72157594155491723", "photo_flickr_id": "160267609", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42571", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a ton of fun .", "storylet_id": "212859"}], [{"original_text": "My friends are very talented on their dirt bikes. They can jump really high.", "album_id": "72157594155491723", "photo_flickr_id": "160273814", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42572", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends are very talented on their dirt bikes . they can jump really high .", "storylet_id": "212860"}], [{"original_text": "They can even ride prolonged wheelies...", "album_id": "72157594155491723", "photo_flickr_id": "160276239", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42572", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they can even ride prolonged wheelies ...", "storylet_id": "212861"}], [{"original_text": "and, lean the bike sideways!", "album_id": "72157594155491723", "photo_flickr_id": "160259409", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42572", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and , lean the bike sideways !", "storylet_id": "212862"}], [{"original_text": "They always provide me with the perfect opportunities...", "album_id": "72157594155491723", "photo_flickr_id": "160267147", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42572", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they always provide me with the perfect opportunities ...", "storylet_id": "212863"}], [{"original_text": "Like this to snap the perfect picture for my albums. They are great friends.", "album_id": "72157594155491723", "photo_flickr_id": "160292581", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42572", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "like this to snap the perfect picture for my albums . they are great friends .", "storylet_id": "212864"}], [{"original_text": "My friend went to a bike obstacle course.", "album_id": "72157594155491723", "photo_flickr_id": "160278433", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42573", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend went to a bike obstacle course .", "storylet_id": "212865"}], [{"original_text": "You could ride on tight ropes.", "album_id": "72157594155491723", "photo_flickr_id": "160278949", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42573", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you could ride on tight ropes .", "storylet_id": "212866"}], [{"original_text": "He did a lot of tricks.", "album_id": "72157594155491723", "photo_flickr_id": "160259409", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42573", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he did a lot of tricks .", "storylet_id": "212867"}], [{"original_text": "There were hills to jump down.", "album_id": "72157594155491723", "photo_flickr_id": "160267147", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42573", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were hills to jump down .", "storylet_id": "212868"}], [{"original_text": "He flew through the air on half the course.", "album_id": "72157594155491723", "photo_flickr_id": "160267609", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42573", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he flew through the air on half the course .", "storylet_id": "212869"}], [{"original_text": "There was a trick riding competition at a park.", "album_id": "72157594155491723", "photo_flickr_id": "160273814", "setting": "last-3-pick-old-and-tell", "worker_id": "E1P725JC9ENXC6H", "story_id": "42574", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a trick riding competition at a park .", "storylet_id": "212870"}], [{"original_text": "Mountain bikers and trick riders did wheelies.", "album_id": "72157594155491723", "photo_flickr_id": "160276239", "setting": "last-3-pick-old-and-tell", "worker_id": "E1P725JC9ENXC6H", "story_id": "42574", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mountain bikers and trick riders did wheelies .", "storylet_id": "212871"}], [{"original_text": "Some did more elaborate tricks, getting good air time.", "album_id": "72157594155491723", "photo_flickr_id": "160259409", "setting": "last-3-pick-old-and-tell", "worker_id": "E1P725JC9ENXC6H", "story_id": "42574", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some did more elaborate tricks , getting good air time .", "storylet_id": "212872"}], [{"original_text": "This cyclist used his speed from going downhill to fly through the air.", "album_id": "72157594155491723", "photo_flickr_id": "160267147", "setting": "last-3-pick-old-and-tell", "worker_id": "E1P725JC9ENXC6H", "story_id": "42574", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this cyclist used his speed from going downhill to fly through the air .", "storylet_id": "212873"}], [{"original_text": "The best trick jump of the day was when a cyclist flew over the cameraman!", "album_id": "72157594155491723", "photo_flickr_id": "160292581", "setting": "last-3-pick-old-and-tell", "worker_id": "E1P725JC9ENXC6H", "story_id": "42574", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best trick jump of the day was when a cyclist flew over the cameraman !", "storylet_id": "212874"}], [{"original_text": "The airplane flew through the clouds.", "album_id": "72157594158582516", "photo_flickr_id": "162358619", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42575", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the airplane flew through the clouds .", "storylet_id": "212875"}], [{"original_text": "The passenger kept track of his progress as he took pictures through his window.", "album_id": "72157594158582516", "photo_flickr_id": "162358709", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42575", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the passenger kept track of his progress as he took pictures through his window .", "storylet_id": "212876"}], [{"original_text": "They flew high above cities.", "album_id": "72157594158582516", "photo_flickr_id": "162361234", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42575", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they flew high above cities .", "storylet_id": "212877"}], [{"original_text": "They began their descent.", "album_id": "72157594158582516", "photo_flickr_id": "162362488", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42575", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they began their descent .", "storylet_id": "212878"}], [{"original_text": "The plane arrived at the airport.", "album_id": "72157594158582516", "photo_flickr_id": "162363244", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42575", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the plane arrived at the airport .", "storylet_id": "212879"}], [{"original_text": "i went on a trip with my uncle", "album_id": "72157594158582516", "photo_flickr_id": "162358442", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42576", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on a trip with my uncle", "storylet_id": "212880"}], [{"original_text": "when i was on the plane i took some pictures", "album_id": "72157594158582516", "photo_flickr_id": "162358556", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42576", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when i was on the plane i took some pictures", "storylet_id": "212881"}], [{"original_text": "the clouds were great", "album_id": "72157594158582516", "photo_flickr_id": "162358619", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42576", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the clouds were great", "storylet_id": "212882"}], [{"original_text": "we were up in the air very high", "album_id": "72157594158582516", "photo_flickr_id": "162358921", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42576", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were up in the air very high", "storylet_id": "212883"}], [{"original_text": "it was great to be up in the air", "album_id": "72157594158582516", "photo_flickr_id": "162359597", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42576", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was great to be up in the air", "storylet_id": "212884"}], [{"original_text": "I went on my first airplane ride.", "album_id": "72157594158582516", "photo_flickr_id": "162358442", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42577", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on my first airplane ride .", "storylet_id": "212885"}], [{"original_text": "The view was stunning.", "album_id": "72157594158582516", "photo_flickr_id": "162358556", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42577", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view was stunning .", "storylet_id": "212886"}], [{"original_text": "Once we got above the clouds it was even prettier.", "album_id": "72157594158582516", "photo_flickr_id": "162358619", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42577", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once we got above the clouds it was even prettier .", "storylet_id": "212887"}], [{"original_text": "It's amazing how you can see the curve of the earth.", "album_id": "72157594158582516", "photo_flickr_id": "162358921", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42577", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's amazing how you can see the curve of the earth .", "storylet_id": "212888"}], [{"original_text": "The coast looked incredible form high up.", "album_id": "72157594158582516", "photo_flickr_id": "162359597", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42577", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the coast looked incredible form high up .", "storylet_id": "212889"}], [{"original_text": "He was born to be a pilot. ", "album_id": "72157594158582516", "photo_flickr_id": "162358619", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42578", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he was born to be a pilot .", "storylet_id": "212890"}], [{"original_text": "He had spent hours pretending with his video games as a child. ", "album_id": "72157594158582516", "photo_flickr_id": "162358709", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42578", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he had spent hours pretending with his video games as a child .", "storylet_id": "212891"}], [{"original_text": "Now, here he was flying over cities. ", "album_id": "72157594158582516", "photo_flickr_id": "162361234", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42578", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now , here he was flying over cities .", "storylet_id": "212892"}], [{"original_text": "Taking off from airports all over the globe. ", "album_id": "72157594158582516", "photo_flickr_id": "162362488", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42578", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "taking off from airports all over the globe .", "storylet_id": "212893"}], [{"original_text": "Landing in new destinations, what a thrill. ", "album_id": "72157594158582516", "photo_flickr_id": "162363244", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42578", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "landing in new destinations , what a thrill .", "storylet_id": "212894"}], [{"original_text": "Took my first airplane ride today.", "album_id": "72157594158582516", "photo_flickr_id": "162358442", "setting": "last-3-pick-old-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "42579", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "took my first airplane ride today .", "storylet_id": "212895"}], [{"original_text": "It is amazing how small everything looks from up here.", "album_id": "72157594158582516", "photo_flickr_id": "162358556", "setting": "last-3-pick-old-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "42579", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is amazing how small everything looks from up here .", "storylet_id": "212896"}], [{"original_text": "The clouds look so close and puffy.", "album_id": "72157594158582516", "photo_flickr_id": "162358619", "setting": "last-3-pick-old-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "42579", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the clouds look so close and puffy .", "storylet_id": "212897"}], [{"original_text": "I love the look of the water from a plane.", "album_id": "72157594158582516", "photo_flickr_id": "162358921", "setting": "last-3-pick-old-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "42579", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love the look of the water from a plane .", "storylet_id": "212898"}], [{"original_text": "It all takes on a really serene look in black and white.", "album_id": "72157594158582516", "photo_flickr_id": "162359597", "setting": "last-3-pick-old-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "42579", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it all takes on a really serene look in black and white .", "storylet_id": "212899"}], [{"original_text": "Registration for the race was finished.", "album_id": "72157594191594416", "photo_flickr_id": "177112835", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42580", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "registration for the race was finished .", "storylet_id": "212900"}], [{"original_text": "The racers jumped in the water.", "album_id": "72157594191594416", "photo_flickr_id": "177111020", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42580", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the racers jumped in the water .", "storylet_id": "212901"}], [{"original_text": "They emerged on the other shore.", "album_id": "72157594191594416", "photo_flickr_id": "177110753", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42580", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they emerged on the other shore .", "storylet_id": "212902"}], [{"original_text": "Next, they grabbed their bikes and pedaled for miles.", "album_id": "72157594191594416", "photo_flickr_id": "177109960", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42580", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next , they grabbed their bikes and pedaled for miles .", "storylet_id": "212903"}], [{"original_text": "At the next point the ran the rest of the way to the finish.", "album_id": "72157594191594416", "photo_flickr_id": "177100720", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42580", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the next point the ran the rest of the way to the finish .", "storylet_id": "212904"}], [{"original_text": "Iron Man and like competitions have become more and more popular every year and it seems that the ones I have watched usually start early with the swimming part going first.", "album_id": "72157594191594416", "photo_flickr_id": "177110753", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42581", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "iron man and like competitions have become more and more popular every year and it seems that the ones i have watched usually start early with the swimming part going first .", "storylet_id": "212905"}], [{"original_text": "These cross training style events can only be won or even finished by the some of the best athletes in the world.", "album_id": "72157594191594416", "photo_flickr_id": "177111020", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42581", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these cross training style events can only be won or even finished by the some of the best athletes in the world .", "storylet_id": "212906"}], [{"original_text": "The second leg of the these events usually is the biking part which really puts a lot of these contestants to the test.", "album_id": "72157594191594416", "photo_flickr_id": "177103804", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42581", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the second leg of the these events usually is the biking part which really puts a lot of these contestants to the test .", "storylet_id": "212907"}], [{"original_text": "Each competitor is given a number like we see here worn in his shorts area and it appears that many of the more well know competitors have sponsors.", "album_id": "72157594191594416", "photo_flickr_id": "177100956", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42581", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "each competitor is given a number like we see here worn in his shorts area and it appears that many of the more well know competitors have sponsors .", "storylet_id": "212908"}], [{"original_text": "Only a world class athlete can win one of these races and even finishing one is a huge feat to be proud of and while this man may not be running right now, he is still not too tired to hold up the stars and stripes to show his patriotism.", "album_id": "72157594191594416", "photo_flickr_id": "177101441", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42581", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "only a world class athlete can win one of these races and even finishing one is a huge feat to be proud of and while this man may not be running right now , he is still not too tired to hold up the stars and stripes to show his patriotism .", "storylet_id": "212909"}], [{"original_text": "The area was filled with people before the triathalon.", "album_id": "72157594191594416", "photo_flickr_id": "177112835", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42582", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the area was filled with people before the triathalon .", "storylet_id": "212910"}], [{"original_text": "Their heads were barely visible when the contestants were swimming.", "album_id": "72157594191594416", "photo_flickr_id": "177111020", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42582", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their heads were barely visible when the contestants were swimming .", "storylet_id": "212911"}], [{"original_text": "It was so cool to watch them compete.", "album_id": "72157594191594416", "photo_flickr_id": "177110753", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42582", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was so cool to watch them compete .", "storylet_id": "212912"}], [{"original_text": "The best part is always the biking at the end.", "album_id": "72157594191594416", "photo_flickr_id": "177109960", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42582", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the best part is always the biking at the end .", "storylet_id": "212913"}], [{"original_text": "My dad didn't even finish the running part though. ", "album_id": "72157594191594416", "photo_flickr_id": "177100720", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42582", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my dad did n't even finish the running part though .", "storylet_id": "212914"}], [{"original_text": "My friends and I participated in decathlon.", "album_id": "72157594191594416", "photo_flickr_id": "177110753", "setting": "last-3-pick-old-and-tell", "worker_id": "6O5J6YWQ6NH16BV", "story_id": "42583", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i participated in decathlon .", "storylet_id": "212915"}], [{"original_text": "The first round consisted of us swimming across the lake.", "album_id": "72157594191594416", "photo_flickr_id": "177111020", "setting": "last-3-pick-old-and-tell", "worker_id": "6O5J6YWQ6NH16BV", "story_id": "42583", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first round consisted of us swimming across the lake .", "storylet_id": "212916"}], [{"original_text": "Then we had to bike 5 miles. ", "album_id": "72157594191594416", "photo_flickr_id": "177103804", "setting": "last-3-pick-old-and-tell", "worker_id": "6O5J6YWQ6NH16BV", "story_id": "42583", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we had to bike 5 miles .", "storylet_id": "212917"}], [{"original_text": "After biking, we had to run towards the finish line.", "album_id": "72157594191594416", "photo_flickr_id": "177100956", "setting": "last-3-pick-old-and-tell", "worker_id": "6O5J6YWQ6NH16BV", "story_id": "42583", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after biking , we had to run towards the finish line .", "storylet_id": "212918"}], [{"original_text": "I finally passed the finish line and carried my flag with a sense of pride. ", "album_id": "72157594191594416", "photo_flickr_id": "177101441", "setting": "last-3-pick-old-and-tell", "worker_id": "6O5J6YWQ6NH16BV", "story_id": "42583", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i finally passed the finish line and carried my flag with a sense of pride .", "storylet_id": "212919"}], [{"original_text": "The triathlon started with swimming.", "album_id": "72157594191594416", "photo_flickr_id": "177110753", "setting": "last-3-pick-old-and-tell", "worker_id": "UDZ410P9QBXZY55", "story_id": "42584", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the triathlon started with swimming .", "storylet_id": "212920"}], [{"original_text": "Here everyone is swimming as fast as they can.", "album_id": "72157594191594416", "photo_flickr_id": "177111020", "setting": "last-3-pick-old-and-tell", "worker_id": "UDZ410P9QBXZY55", "story_id": "42584", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here everyone is swimming as fast as they can .", "storylet_id": "212921"}], [{"original_text": "Then to the biking part of the event.", "album_id": "72157594191594416", "photo_flickr_id": "177103804", "setting": "last-3-pick-old-and-tell", "worker_id": "UDZ410P9QBXZY55", "story_id": "42584", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then to the biking part of the event .", "storylet_id": "212922"}], [{"original_text": "With running being the last part of the race.", "album_id": "72157594191594416", "photo_flickr_id": "177100956", "setting": "last-3-pick-old-and-tell", "worker_id": "UDZ410P9QBXZY55", "story_id": "42584", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with running being the last part of the race .", "storylet_id": "212923"}], [{"original_text": "The racers showed patriotic spirit throughout the whole thing .", "album_id": "72157594191594416", "photo_flickr_id": "177101441", "setting": "last-3-pick-old-and-tell", "worker_id": "UDZ410P9QBXZY55", "story_id": "42584", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the racers showed patriotic spirit throughout the whole thing .", "storylet_id": "212924"}], [{"original_text": "We were so excited to be at the amusement park.", "album_id": "442373", "photo_flickr_id": "18786136", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42585", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were so excited to be at the amusement park .", "storylet_id": "212925"}], [{"original_text": "The train was calling her name.", "album_id": "442373", "photo_flickr_id": "18786998", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42585", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the train was calling her name .", "storylet_id": "212926"}], [{"original_text": "It was her first time riding it by herself.", "album_id": "442373", "photo_flickr_id": "18787047", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42585", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was her first time riding it by herself .", "storylet_id": "212927"}], [{"original_text": "We can't tell if she is having fun or now.", "album_id": "442373", "photo_flickr_id": "18787070", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42585", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we ca n't tell if she is having fun or now .", "storylet_id": "212928"}], [{"original_text": "It looks like she is having fun after all!", "album_id": "442373", "photo_flickr_id": "18787100", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42585", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it looks like she is having fun after all !", "storylet_id": "212929"}], [{"original_text": "Waiting to cross the street to get to the fair.", "album_id": "442373", "photo_flickr_id": "18786152", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42586", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "waiting to cross the street to get to the fair .", "storylet_id": "212930"}], [{"original_text": "The children are enjoying the ride.", "album_id": "442373", "photo_flickr_id": "18787009", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42586", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children are enjoying the ride .", "storylet_id": "212931"}], [{"original_text": "Friends in the background what the little girl riding alone.", "album_id": "442373", "photo_flickr_id": "18787015", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42586", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "friends in the background what the little girl riding alone .", "storylet_id": "212932"}], [{"original_text": "The wee one is riding alone but still having a good time.", "album_id": "442373", "photo_flickr_id": "18787047", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42586", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wee one is riding alone but still having a good time .", "storylet_id": "212933"}], [{"original_text": "The little girl doesn't mind being a lonely little lemon drop at the end of the ride.", "album_id": "442373", "photo_flickr_id": "18787089", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42586", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the little girl does n't mind being a lonely little lemon drop at the end of the ride .", "storylet_id": "212934"}], [{"original_text": "it was a great day to go to the park", "album_id": "442373", "photo_flickr_id": "18786136", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42587", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a great day to go to the park", "storylet_id": "212935"}], [{"original_text": "little Jacob was having a blast", "album_id": "442373", "photo_flickr_id": "18786998", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42587", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "little [male] was having a blast", "storylet_id": "212936"}], [{"original_text": "little Jennifer was a big girl and rode the ride all by herself", "album_id": "442373", "photo_flickr_id": "18787047", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42587", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "little [female] was a big girl and rode the ride all by herself", "storylet_id": "212937"}], [{"original_text": "she loved being so independent ", "album_id": "442373", "photo_flickr_id": "18787070", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42587", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she loved being so independent", "storylet_id": "212938"}], [{"original_text": "it was a great day at the park", "album_id": "442373", "photo_flickr_id": "18787100", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42587", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great day at the park", "storylet_id": "212939"}], [{"original_text": "We had a day at the kid park with Amber.", "album_id": "442373", "photo_flickr_id": "18786152", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42588", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a day at the kid park with [female] .", "storylet_id": "212940"}], [{"original_text": "Amber got to sit in her own part of the train.", "album_id": "442373", "photo_flickr_id": "18787009", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42588", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] got to sit in her own part of the train .", "storylet_id": "212941"}], [{"original_text": "She was really happy to be there.", "album_id": "442373", "photo_flickr_id": "18787015", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42588", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was really happy to be there .", "storylet_id": "212942"}], [{"original_text": "She kept asking what ride we would go on next.", "album_id": "442373", "photo_flickr_id": "18787047", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42588", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she kept asking what ride we would go on next .", "storylet_id": "212943"}], [{"original_text": "When the ride was over though, she wanted to go again.", "album_id": "442373", "photo_flickr_id": "18787089", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42588", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the ride was over though , she wanted to go again .", "storylet_id": "212944"}], [{"original_text": "We took a trip to a carnival.", "album_id": "442373", "photo_flickr_id": "18786152", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "42589", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to a carnival .", "storylet_id": "212945"}], [{"original_text": "The kids seemed to enjoy the ride.", "album_id": "442373", "photo_flickr_id": "18787009", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "42589", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids seemed to enjoy the ride .", "storylet_id": "212946"}], [{"original_text": "Here is a candid moment with the family.", "album_id": "442373", "photo_flickr_id": "18787015", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "42589", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is a candid moment with the family .", "storylet_id": "212947"}], [{"original_text": "She seemed very comfortable and pleasant in the ride.", "album_id": "442373", "photo_flickr_id": "18787047", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "42589", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she seemed very comfortable and pleasant in the ride .", "storylet_id": "212948"}], [{"original_text": "Lastly, she didn't want the ride to end.", "album_id": "442373", "photo_flickr_id": "18787089", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "42589", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , she did n't want the ride to end .", "storylet_id": "212949"}], [{"original_text": "The people get ready for the annual race.", "album_id": "72057594141428750", "photo_flickr_id": "150736153", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "42590", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people get ready for the annual race .", "storylet_id": "212950"}], [{"original_text": "There are people who are racing in the water.", "album_id": "72057594141428750", "photo_flickr_id": "150736315", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "42590", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are people who are racing in the water .", "storylet_id": "212951"}], [{"original_text": "These people are going through the obstacle course.", "album_id": "72057594141428750", "photo_flickr_id": "150736420", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "42590", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these people are going through the obstacle course .", "storylet_id": "212952"}], [{"original_text": "One guy is racing on his bicycle.", "album_id": "72057594141428750", "photo_flickr_id": "150736432", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "42590", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one guy is racing on his bicycle .", "storylet_id": "212953"}], [{"original_text": "This guy is the winner of the race. He is very happy that he won.", "album_id": "72057594141428750", "photo_flickr_id": "150736800", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "42590", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this guy is the winner of the race . he is very happy that he won .", "storylet_id": "212954"}], [{"original_text": "These two people are getting ready for the big race.", "album_id": "72057594141428750", "photo_flickr_id": "150736153", "setting": "first-2-pick-and-tell", "worker_id": "CJ90K0Y8URTW3HS", "story_id": "42591", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these two people are getting ready for the big race .", "storylet_id": "212955"}], [{"original_text": "This guy carries his bicycle to the starting place.", "album_id": "72057594141428750", "photo_flickr_id": "150736175", "setting": "first-2-pick-and-tell", "worker_id": "CJ90K0Y8URTW3HS", "story_id": "42591", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this guy carries his bicycle to the starting place .", "storylet_id": "212956"}], [{"original_text": "This guy races to begin the race.", "album_id": "72057594141428750", "photo_flickr_id": "150736502", "setting": "first-2-pick-and-tell", "worker_id": "CJ90K0Y8URTW3HS", "story_id": "42591", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this guy races to begin the race .", "storylet_id": "212957"}], [{"original_text": "These three are announced the winners of the race.", "album_id": "72057594141428750", "photo_flickr_id": "150736679", "setting": "first-2-pick-and-tell", "worker_id": "CJ90K0Y8URTW3HS", "story_id": "42591", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these three are announced the winners of the race .", "storylet_id": "212958"}], [{"original_text": "These two people did not participate in the race, but they are cheering for the rest of the people who did.", "album_id": "72057594141428750", "photo_flickr_id": "150736118", "setting": "first-2-pick-and-tell", "worker_id": "CJ90K0Y8URTW3HS", "story_id": "42591", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these two people did not participate in the race , but they are cheering for the rest of the people who did .", "storylet_id": "212959"}], [{"original_text": "Friends unloaded their things to get ready for the triathlon.", "album_id": "72057594141428750", "photo_flickr_id": "150736153", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "42592", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends unloaded their things to get ready for the triathlon .", "storylet_id": "212960"}], [{"original_text": "The first stage of the triathlon was rowing 5 miles.", "album_id": "72057594141428750", "photo_flickr_id": "150736315", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "42592", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first stage of the triathlon was rowing 5 miles .", "storylet_id": "212961"}], [{"original_text": "A couple people had trouble on the 2nd stage, biking.", "album_id": "72057594141428750", "photo_flickr_id": "150736420", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "42592", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a couple people had trouble on the 2nd stage , biking .", "storylet_id": "212962"}], [{"original_text": "Most, though, had a fine time with no problems.", "album_id": "72057594141428750", "photo_flickr_id": "150736432", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "42592", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "most , though , had a fine time with no problems .", "storylet_id": "212963"}], [{"original_text": "Bob won first place and the trophy,", "album_id": "72057594141428750", "photo_flickr_id": "150736800", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "42592", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] won first place and the trophy ,", "storylet_id": "212964"}], [{"original_text": "Today is the day of the annual triathlon held in the nearby mountains.", "album_id": "72057594141428750", "photo_flickr_id": "150736153", "setting": "last-3-pick-old-and-tell", "worker_id": "WT6A5VPAO2EZN4L", "story_id": "42593", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is the day of the annual triathlon held in the nearby mountains .", "storylet_id": "212965"}], [{"original_text": "The first event is an obstacle course in the lake where you float on surfboards around buoys.", "album_id": "72057594141428750", "photo_flickr_id": "150736315", "setting": "last-3-pick-old-and-tell", "worker_id": "WT6A5VPAO2EZN4L", "story_id": "42593", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first event is an obstacle course in the lake where you float on surfboards around buoys .", "storylet_id": "212966"}], [{"original_text": "Then there is a bike challenge where you tackle the steep mountain roads.", "album_id": "72057594141428750", "photo_flickr_id": "150736420", "setting": "last-3-pick-old-and-tell", "worker_id": "WT6A5VPAO2EZN4L", "story_id": "42593", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then there is a bike challenge where you tackle the steep mountain roads .", "storylet_id": "212967"}], [{"original_text": "The bikers are all in great shape and there is a lot of friendly competition.", "album_id": "72057594141428750", "photo_flickr_id": "150736432", "setting": "last-3-pick-old-and-tell", "worker_id": "WT6A5VPAO2EZN4L", "story_id": "42593", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bikers are all in great shape and there is a lot of friendly competition .", "storylet_id": "212968"}], [{"original_text": "At the end of the race there is a ceremony for the winner and prizes are given to the top athletes in their group.", "album_id": "72057594141428750", "photo_flickr_id": "150736800", "setting": "last-3-pick-old-and-tell", "worker_id": "WT6A5VPAO2EZN4L", "story_id": "42593", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the race there is a ceremony for the winner and prizes are given to the top athletes in their group .", "storylet_id": "212969"}], [{"original_text": "The Robinson's made it to the biggest triathlon of the year.", "album_id": "72057594141428750", "photo_flickr_id": "150736153", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42594", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the robinson 's made it to the biggest triathlon of the year .", "storylet_id": "212970"}], [{"original_text": "The water was cold but the swimmers persevered.", "album_id": "72057594141428750", "photo_flickr_id": "150736315", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42594", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water was cold but the swimmers persevered .", "storylet_id": "212971"}], [{"original_text": "A bicyclist almost hit the cones but he kept his cool.", "album_id": "72057594141428750", "photo_flickr_id": "150736420", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42594", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a bicyclist almost hit the cones but he kept his cool .", "storylet_id": "212972"}], [{"original_text": "He peddled hard on his way to victory.", "album_id": "72057594141428750", "photo_flickr_id": "150736432", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42594", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he peddled hard on his way to victory .", "storylet_id": "212973"}], [{"original_text": "An award ceremony was held at the end of the bike race. ", "album_id": "72057594141428750", "photo_flickr_id": "150736800", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42594", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "an award ceremony was held at the end of the bike race .", "storylet_id": "212974"}], [{"original_text": "Everyone was meeting up on the trails for a day of riding.", "album_id": "72157594150856962", "photo_flickr_id": "157155334", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42595", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was meeting up on the trails for a day of riding .", "storylet_id": "212975"}], [{"original_text": "The trail was rough at certain points but it was exciting to hit the jumps.", "album_id": "72157594150856962", "photo_flickr_id": "155406138", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42595", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the trail was rough at certain points but it was exciting to hit the jumps .", "storylet_id": "212976"}], [{"original_text": "We all had to tread carefully as we rode down a muddy hill.", "album_id": "72157594150856962", "photo_flickr_id": "157158029", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42595", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all had to tread carefully as we rode down a muddy hill .", "storylet_id": "212977"}], [{"original_text": "Everyone had to watch their balance as we crossed a log suspended over a creek.", "album_id": "72157594150856962", "photo_flickr_id": "157144927", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42595", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone had to watch their balance as we crossed a log suspended over a creek .", "storylet_id": "212978"}], [{"original_text": "It was a tough and muddy ride but we all had a great time. ", "album_id": "72157594150856962", "photo_flickr_id": "157153347", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42595", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a tough and muddy ride but we all had a great time .", "storylet_id": "212979"}], [{"original_text": "Going on a hike with their mountain bikes. ", "album_id": "72157594150856962", "photo_flickr_id": "157153347", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42596", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going on a hike with their mountain bikes .", "storylet_id": "212980"}], [{"original_text": "About to take a hill for the first time in a long time. ", "album_id": "72157594150856962", "photo_flickr_id": "157154994", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42596", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "about to take a hill for the first time in a long time .", "storylet_id": "212981"}], [{"original_text": "Descending the mountain hill.", "album_id": "72157594150856962", "photo_flickr_id": "157158029", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42596", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "descending the mountain hill .", "storylet_id": "212982"}], [{"original_text": "Crossing the forrest, and using a tree branch as a bridge.", "album_id": "72157594150856962", "photo_flickr_id": "155809630", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42596", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "crossing the forrest , and using a tree branch as a bridge .", "storylet_id": "212983"}], [{"original_text": "Doing cool tricks with his bikes. ", "album_id": "72157594150856962", "photo_flickr_id": "157146983", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42596", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "doing cool tricks with his bikes .", "storylet_id": "212984"}], [{"original_text": "The competitors in the biking obstacle course race took off at the sound of the gun.", "album_id": "72157594150856962", "photo_flickr_id": "157153347", "setting": "last-3-pick-old-and-tell", "worker_id": "468TTSRE58K9GVV", "story_id": "42597", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the competitors in the biking obstacle course race took off at the sound of the gun .", "storylet_id": "212985"}], [{"original_text": "Larry took an early lead and biked easily down the path.", "album_id": "72157594150856962", "photo_flickr_id": "157154994", "setting": "last-3-pick-old-and-tell", "worker_id": "468TTSRE58K9GVV", "story_id": "42597", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] took an early lead and biked easily down the path .", "storylet_id": "212986"}], [{"original_text": "The first major obstacle was the steep downhill dirt path.", "album_id": "72157594150856962", "photo_flickr_id": "157158029", "setting": "last-3-pick-old-and-tell", "worker_id": "468TTSRE58K9GVV", "story_id": "42597", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first major obstacle was the steep downhill dirt path .", "storylet_id": "212987"}], [{"original_text": "The hardest part by far, was the balance beam everyone had to cross.", "album_id": "72157594150856962", "photo_flickr_id": "155809630", "setting": "last-3-pick-old-and-tell", "worker_id": "468TTSRE58K9GVV", "story_id": "42597", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the hardest part by far , was the balance beam everyone had to cross .", "storylet_id": "212988"}], [{"original_text": "Ever the showman, Bob took time to do a wheelie for pleased spectators.", "album_id": "72157594150856962", "photo_flickr_id": "157146983", "setting": "last-3-pick-old-and-tell", "worker_id": "468TTSRE58K9GVV", "story_id": "42597", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ever the showman , [male] took time to do a wheelie for pleased spectators .", "storylet_id": "212989"}], [{"original_text": "He trained everyday for the competition. ", "album_id": "72157594150856962", "photo_flickr_id": "157155334", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42598", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he trained everyday for the competition .", "storylet_id": "212990"}], [{"original_text": "Riding his bike up steep hills. ", "album_id": "72157594150856962", "photo_flickr_id": "155406138", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42598", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "riding his bike up steep hills .", "storylet_id": "212991"}], [{"original_text": "On the day of the race he felt prepared for anything. ", "album_id": "72157594150856962", "photo_flickr_id": "157158029", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42598", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on the day of the race he felt prepared for anything .", "storylet_id": "212992"}], [{"original_text": "Riding over this log was the most difficult part of the race, requiring such balance he wasn't sure he could do it. ", "album_id": "72157594150856962", "photo_flickr_id": "157144927", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42598", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "riding over this log was the most difficult part of the race , requiring such balance he was n't sure he could do it .", "storylet_id": "212993"}], [{"original_text": "In the end, he finished in first place. ", "album_id": "72157594150856962", "photo_flickr_id": "157153347", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42598", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , he finished in first place .", "storylet_id": "212994"}], [{"original_text": "A group of bicyclists decided to bike through a mountain trail.", "album_id": "72157594150856962", "photo_flickr_id": "157153347", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42599", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of bicyclists decided to bike through a mountain trail .", "storylet_id": "212995"}], [{"original_text": "It was extremely sunny and hot that day.", "album_id": "72157594150856962", "photo_flickr_id": "157154994", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42599", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was extremely sunny and hot that day .", "storylet_id": "212996"}], [{"original_text": "The road was really rough as they were going downhill.", "album_id": "72157594150856962", "photo_flickr_id": "157158029", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42599", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the road was really rough as they were going downhill .", "storylet_id": "212997"}], [{"original_text": "They even had to test their balance by going on a log.", "album_id": "72157594150856962", "photo_flickr_id": "155809630", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42599", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even had to test their balance by going on a log .", "storylet_id": "212998"}], [{"original_text": "One of the bicyclists decided to bust out a trick.", "album_id": "72157594150856962", "photo_flickr_id": "157146983", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42599", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of the bicyclists decided to bust out a trick .", "storylet_id": "212999"}], [{"original_text": "The marathon was about to begin. ", "album_id": "72157594155344623", "photo_flickr_id": "160179764", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42600", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the marathon was about to begin .", "storylet_id": "213000"}], [{"original_text": "Hundreds of runners had been training for this event. ", "album_id": "72157594155344623", "photo_flickr_id": "160179987", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42600", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "hundreds of runners had been training for this event .", "storylet_id": "213001"}], [{"original_text": "Hot girls dressed up in bunny uniforms. ", "album_id": "72157594155344623", "photo_flickr_id": "160180252", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42600", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "hot girls dressed up in bunny uniforms .", "storylet_id": "213002"}], [{"original_text": "Other super sexy girls wore butterfly outforms. ", "album_id": "72157594155344623", "photo_flickr_id": "160180965", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42600", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other super sexy girls wore butterfly outforms .", "storylet_id": "213003"}], [{"original_text": "Even this sexy babe was able to finish the race. ", "album_id": "72157594155344623", "photo_flickr_id": "160181528", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42600", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even this sexy babe was able to finish the race .", "storylet_id": "213004"}], [{"original_text": "Our first marathon.", "album_id": "72157594155344623", "photo_flickr_id": "160178274", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "42601", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our first marathon .", "storylet_id": "213005"}], [{"original_text": "Can you read it?", "album_id": "72157594155344623", "photo_flickr_id": "160178663", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "42601", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "can you read it ?", "storylet_id": "213006"}], [{"original_text": "Jenny focusing hard.", "album_id": "72157594155344623", "photo_flickr_id": "160180514", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "42601", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] focusing hard .", "storylet_id": "213007"}], [{"original_text": "Go Emily!", "album_id": "72157594155344623", "photo_flickr_id": "160181528", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "42601", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "go [female] !", "storylet_id": "213008"}], [{"original_text": "We got medals for trying.", "album_id": "72157594155344623", "photo_flickr_id": "160182078", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "42601", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we got medals for trying .", "storylet_id": "213009"}], [{"original_text": "The annual 5K for breast cancer awareness was held this morning. ", "album_id": "72157594155344623", "photo_flickr_id": "160179764", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42602", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the annual 5k for breast cancer awareness was held this morning .", "storylet_id": "213010"}], [{"original_text": "Several hundred women took part to raise funds for cancer research.", "album_id": "72157594155344623", "photo_flickr_id": "160179987", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42602", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "several hundred women took part to raise funds for cancer research .", "storylet_id": "213011"}], [{"original_text": "Some of the runners showed their enthusiasm by dressing in costume.", "album_id": "72157594155344623", "photo_flickr_id": "160180252", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42602", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the runners showed their enthusiasm by dressing in costume .", "storylet_id": "213012"}], [{"original_text": "The atmosphere was one of fun and camaraderie.", "album_id": "72157594155344623", "photo_flickr_id": "160180965", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42602", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the atmosphere was one of fun and camaraderie .", "storylet_id": "213013"}], [{"original_text": "But the theme of the day was one of determination to beat this terrible disease, no matter what.", "album_id": "72157594155344623", "photo_flickr_id": "160181528", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42602", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the theme of the day was one of determination to beat this terrible disease , no matter what .", "storylet_id": "213014"}], [{"original_text": "The race had just begun!", "album_id": "72157594155344623", "photo_flickr_id": "160179764", "setting": "last-3-pick-old-and-tell", "worker_id": "Y04HLM9FWIUXQTO", "story_id": "42603", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the race had just begun !", "storylet_id": "213015"}], [{"original_text": "All competitors were at the top of their game.", "album_id": "72157594155344623", "photo_flickr_id": "160179987", "setting": "last-3-pick-old-and-tell", "worker_id": "Y04HLM9FWIUXQTO", "story_id": "42603", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all competitors were at the top of their game .", "storylet_id": "213016"}], [{"original_text": "To keep it a little more fun than serious, some even wore bunny ears as they ran.", "album_id": "72157594155344623", "photo_flickr_id": "160180252", "setting": "last-3-pick-old-and-tell", "worker_id": "Y04HLM9FWIUXQTO", "story_id": "42603", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "to keep it a little more fun than serious , some even wore bunny ears as they ran .", "storylet_id": "213017"}], [{"original_text": "Fairy wings, too!", "album_id": "72157594155344623", "photo_flickr_id": "160180965", "setting": "last-3-pick-old-and-tell", "worker_id": "Y04HLM9FWIUXQTO", "story_id": "42603", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fairy wings , too !", "storylet_id": "213018"}], [{"original_text": "It didn't matter who was running, they all tried their best.", "album_id": "72157594155344623", "photo_flickr_id": "160181528", "setting": "last-3-pick-old-and-tell", "worker_id": "Y04HLM9FWIUXQTO", "story_id": "42603", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it did n't matter who was running , they all tried their best .", "storylet_id": "213019"}], [{"original_text": "it was a great day for a race", "album_id": "72157594155344623", "photo_flickr_id": "160179764", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42604", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a great day for a race", "storylet_id": "213020"}], [{"original_text": "each runner tried their hardest", "album_id": "72157594155344623", "photo_flickr_id": "160179987", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42604", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each runner tried their hardest", "storylet_id": "213021"}], [{"original_text": "even a few did the run for fun", "album_id": "72157594155344623", "photo_flickr_id": "160180252", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42604", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even a few did the run for fun", "storylet_id": "213022"}], [{"original_text": "and dressed in silly costumes to support a great cause", "album_id": "72157594155344623", "photo_flickr_id": "160180965", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42604", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and dressed in silly costumes to support a great cause", "storylet_id": "213023"}], [{"original_text": "and there were even a few handicapped racers too ", "album_id": "72157594155344623", "photo_flickr_id": "160181528", "setting": "last-3-pick-old-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "42604", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and there were even a few handicapped racers too", "storylet_id": "213024"}], [{"original_text": "This man was carrying his flag in pride.", "album_id": "72157594160746917", "photo_flickr_id": "163727832", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42605", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this man was carrying his flag in pride .", "storylet_id": "213025"}], [{"original_text": "The guy with the flag was now mixed in with the rest of the runners.", "album_id": "72157594160746917", "photo_flickr_id": "163727830", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42605", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guy with the flag was now mixed in with the rest of the runners .", "storylet_id": "213026"}], [{"original_text": "This guy is saying COME AND GET IT!", "album_id": "72157594160746917", "photo_flickr_id": "163833915", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42605", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this guy is saying come and get it !", "storylet_id": "213027"}], [{"original_text": "Everyone was putting their all into the race.", "album_id": "72157594160746917", "photo_flickr_id": "163840953", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42605", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was putting their all into the race .", "storylet_id": "213028"}], [{"original_text": "The finish was near but who was going to cross the finish first", "album_id": "72157594160746917", "photo_flickr_id": "163844698", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42605", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the finish was near but who was going to cross the finish first", "storylet_id": "213029"}], [{"original_text": "Waving the flag to the 21st annual law enforcement torch run. ", "album_id": "72157594160746917", "photo_flickr_id": "163727832", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42606", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "waving the flag to the 21st annual law enforcement torch run .", "storylet_id": "213030"}], [{"original_text": "Running a race for a good cause.", "album_id": "72157594160746917", "photo_flickr_id": "163840953", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42606", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "running a race for a good cause .", "storylet_id": "213031"}], [{"original_text": "A group of runners running together.", "album_id": "72157594160746917", "photo_flickr_id": "163838460", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42606", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a group of runners running together .", "storylet_id": "213032"}], [{"original_text": "Women and men of all size, race, and shape running together. ", "album_id": "72157594160746917", "photo_flickr_id": "163827896", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42606", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "women and men of all size , race , and shape running together .", "storylet_id": "213033"}], [{"original_text": "Pushing to reach the finish line. ", "album_id": "72157594160746917", "photo_flickr_id": "163727840", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42606", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "pushing to reach the finish line .", "storylet_id": "213034"}], [{"original_text": "I got the hold the flag for our group on the run today.", "album_id": "72157594160746917", "photo_flickr_id": "163727832", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42607", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got the hold the flag for our group on the run today .", "storylet_id": "213035"}], [{"original_text": "We were all proud to be there,", "album_id": "72157594160746917", "photo_flickr_id": "163840953", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42607", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were all proud to be there ,", "storylet_id": "213036"}], [{"original_text": "especially Jack. He was the most excited.", "album_id": "72157594160746917", "photo_flickr_id": "163838460", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42607", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "especially [male] . he was the most excited .", "storylet_id": "213037"}], [{"original_text": "Eventually, most of us got tired though.", "album_id": "72157594160746917", "photo_flickr_id": "163827896", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42607", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "eventually , most of us got tired though .", "storylet_id": "213038"}], [{"original_text": "Jack was leading our pack during the run.", "album_id": "72157594160746917", "photo_flickr_id": "163727840", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42607", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was leading our pack during the run .", "storylet_id": "213039"}], [{"original_text": "This was the day that they were going to earn money.", "album_id": "72157594160746917", "photo_flickr_id": "163727832", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42608", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the day that they were going to earn money .", "storylet_id": "213040"}], [{"original_text": "It was for a foundation against discriminating to men that were green.", "album_id": "72157594160746917", "photo_flickr_id": "163727830", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42608", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was for a foundation against discriminating to men that were green .", "storylet_id": "213041"}], [{"original_text": "He was ready to show the world his enthusiasm!", "album_id": "72157594160746917", "photo_flickr_id": "163833915", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42608", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was ready to show the world his enthusiasm !", "storylet_id": "213042"}], [{"original_text": "As they were going they realized that maybe they weren't as passionate as the initially thought.", "album_id": "72157594160746917", "photo_flickr_id": "163840953", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42608", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as they were going they realized that maybe they were n't as passionate as the initially thought .", "storylet_id": "213043"}], [{"original_text": "But then a man shouted something inspirational. And everyone started to perk up a bit more.", "album_id": "72157594160746917", "photo_flickr_id": "163844698", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "42608", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but then a man shouted something inspirational . and everyone started to perk up a bit more .", "storylet_id": "213044"}], [{"original_text": "As the sergeant at arms of the club, he had to carry the flag. ", "album_id": "72157594160746917", "photo_flickr_id": "163727832", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42609", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as the sergeant at arms of the club , he had to carry the flag .", "storylet_id": "213045"}], [{"original_text": "While he was honored to carry the club's flag, he knew it gave him a distinct disadvantage. ", "album_id": "72157594160746917", "photo_flickr_id": "163727830", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42609", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while he was honored to carry the club 's flag , he knew it gave him a distinct disadvantage .", "storylet_id": "213046"}], [{"original_text": "Many of the club members advanced ahead of him. ", "album_id": "72157594160746917", "photo_flickr_id": "163833915", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42609", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many of the club members advanced ahead of him .", "storylet_id": "213047"}], [{"original_text": "But a few stayed back with him. ", "album_id": "72157594160746917", "photo_flickr_id": "163840953", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42609", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but a few stayed back with him .", "storylet_id": "213048"}], [{"original_text": "He was glad to reach the finish line. ", "album_id": "72157594160746917", "photo_flickr_id": "163844698", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42609", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was glad to reach the finish line .", "storylet_id": "213049"}], [{"original_text": "This man bought a magical pink bike from the flee market. ", "album_id": "72157594168728431", "photo_flickr_id": "169099508", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42610", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this man bought a magical pink bike from the flee market .", "storylet_id": "213050"}], [{"original_text": "He rode it everywhere showing his friends. ", "album_id": "72157594168728431", "photo_flickr_id": "169099373", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42610", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he rode it everywhere showing his friends .", "storylet_id": "213051"}], [{"original_text": "He was so happy riding the bike!", "album_id": "72157594168728431", "photo_flickr_id": "169099200", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42610", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was so happy riding the bike !", "storylet_id": "213052"}], [{"original_text": "He eventually found out he could ride the bike through any type of water. ", "album_id": "72157594168728431", "photo_flickr_id": "169097572", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42610", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he eventually found out he could ride the bike through any type of water .", "storylet_id": "213053"}], [{"original_text": "His wife stole the bike and biked across the ocean to china to leave him. ", "album_id": "72157594168728431", "photo_flickr_id": "169097284", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42610", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his wife stole the bike and biked across the ocean to china to leave him .", "storylet_id": "213054"}], [{"original_text": "Look at those rabbits. Time for dinner!", "album_id": "72157594168728431", "photo_flickr_id": "169097700", "setting": "first-2-pick-and-tell", "worker_id": "TQOIZ2T2NQQKMQ4", "story_id": "42611", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "look at those rabbits . time for dinner !", "storylet_id": "213055"}], [{"original_text": "I'll go catch them!", "album_id": "72157594168728431", "photo_flickr_id": "169099200", "setting": "first-2-pick-and-tell", "worker_id": "TQOIZ2T2NQQKMQ4", "story_id": "42611", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'll go catch them !", "storylet_id": "213056"}], [{"original_text": "I just gotta make this jump. Then I can grab them!", "album_id": "72157594168728431", "photo_flickr_id": "169096456", "setting": "first-2-pick-and-tell", "worker_id": "TQOIZ2T2NQQKMQ4", "story_id": "42611", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i just got ta make this jump . then i can grab them !", "storylet_id": "213057"}], [{"original_text": "Almost there...", "album_id": "72157594168728431", "photo_flickr_id": "169096287", "setting": "first-2-pick-and-tell", "worker_id": "TQOIZ2T2NQQKMQ4", "story_id": "42611", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "almost there ...", "storylet_id": "213058"}], [{"original_text": "Wow... That was a failure.", "album_id": "72157594168728431", "photo_flickr_id": "169098222", "setting": "first-2-pick-and-tell", "worker_id": "TQOIZ2T2NQQKMQ4", "story_id": "42611", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "wow ... that was a failure .", "storylet_id": "213059"}], [{"original_text": "I asked my girlfriend if I could show her my moves on her bike.", "album_id": "72157594168728431", "photo_flickr_id": "169099508", "setting": "last-3-pick-old-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "42612", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i asked my girlfriend if i could show her my moves on her bike .", "storylet_id": "213060"}], [{"original_text": "She thought it was a bad idea but I took it anyway.", "album_id": "72157594168728431", "photo_flickr_id": "169099373", "setting": "last-3-pick-old-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "42612", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she thought it was a bad idea but i took it anyway .", "storylet_id": "213061"}], [{"original_text": "Look at me zoom!", "album_id": "72157594168728431", "photo_flickr_id": "169099200", "setting": "last-3-pick-old-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "42612", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at me zoom !", "storylet_id": "213062"}], [{"original_text": "What's the worst I thought?", "album_id": "72157594168728431", "photo_flickr_id": "169097572", "setting": "last-3-pick-old-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "42612", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what 's the worst i thought ?", "storylet_id": "213063"}], [{"original_text": "Yup, I got the bike stuck in the water. It was fun though.", "album_id": "72157594168728431", "photo_flickr_id": "169097284", "setting": "last-3-pick-old-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "42612", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "yup , i got the bike stuck in the water . it was fun though .", "storylet_id": "213064"}], [{"original_text": "A few friends and I went to the park today.", "album_id": "72157594168728431", "photo_flickr_id": "169099508", "setting": "last-3-pick-old-and-tell", "worker_id": "6O5J6YWQ6NH16BV", "story_id": "42613", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a few friends and i went to the park today .", "storylet_id": "213065"}], [{"original_text": "We rode our bikes and hung out.", "album_id": "72157594168728431", "photo_flickr_id": "169099373", "setting": "last-3-pick-old-and-tell", "worker_id": "6O5J6YWQ6NH16BV", "story_id": "42613", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we rode our bikes and hung out .", "storylet_id": "213066"}], [{"original_text": "Here's John riding his bike with a joyful expression.", "album_id": "72157594168728431", "photo_flickr_id": "169099200", "setting": "last-3-pick-old-and-tell", "worker_id": "6O5J6YWQ6NH16BV", "story_id": "42613", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's [male] riding his bike with a joyful expression .", "storylet_id": "213067"}], [{"original_text": "Then, John fell in the lake with his bike.", "album_id": "72157594168728431", "photo_flickr_id": "169097572", "setting": "last-3-pick-old-and-tell", "worker_id": "6O5J6YWQ6NH16BV", "story_id": "42613", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , [male] fell in the lake with his bike .", "storylet_id": "213068"}], [{"original_text": "It was an accident but it was hilarious to watch. ", "album_id": "72157594168728431", "photo_flickr_id": "169097284", "setting": "last-3-pick-old-and-tell", "worker_id": "6O5J6YWQ6NH16BV", "story_id": "42613", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was an accident but it was hilarious to watch .", "storylet_id": "213069"}], [{"original_text": "This man decided to ride his daughters bike and mess with people this morning.", "album_id": "72157594168728431", "photo_flickr_id": "169099508", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42614", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this man decided to ride his daughters bike and mess with people this morning .", "storylet_id": "213070"}], [{"original_text": "This man asked him what he was up to.", "album_id": "72157594168728431", "photo_flickr_id": "169099373", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42614", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this man asked him what he was up to .", "storylet_id": "213071"}], [{"original_text": "The man with the pink hat rode off.", "album_id": "72157594168728431", "photo_flickr_id": "169099200", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42614", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man with the pink hat rode off .", "storylet_id": "213072"}], [{"original_text": "He decided to ride in the waters to get people to notice him.", "album_id": "72157594168728431", "photo_flickr_id": "169097572", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42614", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he decided to ride in the waters to get people to notice him .", "storylet_id": "213073"}], [{"original_text": "After about five minutes, he realized he was stuck in the water.", "album_id": "72157594168728431", "photo_flickr_id": "169097284", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "42614", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after about five minutes , he realized he was stuck in the water .", "storylet_id": "213074"}], [{"original_text": "Everyone was following the coffee cart of course.", "album_id": "72157594178770280", "photo_flickr_id": "175672481", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42615", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was following the coffee cart of course .", "storylet_id": "213075"}], [{"original_text": "Everyone was neck and neck with each other.", "album_id": "72157594178770280", "photo_flickr_id": "175672527", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42615", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was neck and neck with each other .", "storylet_id": "213076"}], [{"original_text": "The race continued as the speed picked up.", "album_id": "72157594178770280", "photo_flickr_id": "175673451", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42615", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the race continued as the speed picked up .", "storylet_id": "213077"}], [{"original_text": "You could tell this guy was having fun.", "album_id": "72157594178770280", "photo_flickr_id": "175673908", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42615", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you could tell this guy was having fun .", "storylet_id": "213078"}], [{"original_text": "This guy was pulling off some cool tricks for us.", "album_id": "72157594178770280", "photo_flickr_id": "175674093", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42615", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this guy was pulling off some cool tricks for us .", "storylet_id": "213079"}], [{"original_text": "I'm glad that most of my friends were able to make it to the game.", "album_id": "72157594178770280", "photo_flickr_id": "175674047", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "42616", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 'm glad that most of my friends were able to make it to the game .", "storylet_id": "213080"}], [{"original_text": "We decided to have a race and it became extremely competitive since everyone had a hot start.", "album_id": "72157594178770280", "photo_flickr_id": "175673598", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "42616", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided to have a race and it became extremely competitive since everyone had a hot start .", "storylet_id": "213081"}], [{"original_text": "Nevertheless, I've caught the lead", "album_id": "72157594178770280", "photo_flickr_id": "175673635", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "42616", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nevertheless , i 've caught the lead", "storylet_id": "213082"}], [{"original_text": "although it wasn't enough because Jim caught momentum throughout the race and eventually won.", "album_id": "72157594178770280", "photo_flickr_id": "175673867", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "42616", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "although it was n't enough because [male] caught momentum throughout the race and eventually won .", "storylet_id": "213083"}], [{"original_text": "John was over-confident about winning and actually ended up being second-to-last across the finish line,", "album_id": "72157594178770280", "photo_flickr_id": "175672317", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "42616", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was over-confident about winning and actually ended up being second-to-last across the finish line ,", "storylet_id": "213084"}], [{"original_text": "Our annual United Way Olympics featured a bicycle obstacle course this year.", "album_id": "72157594178770280", "photo_flickr_id": "175672481", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42617", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our annual organization organization organization featured a bicycle obstacle course this year .", "storylet_id": "213085"}], [{"original_text": "The safety director wore his helmet, of course.", "album_id": "72157594178770280", "photo_flickr_id": "175672527", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42617", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the safety director wore his helmet , of course .", "storylet_id": "213086"}], [{"original_text": "Some parts were easier than others.", "album_id": "72157594178770280", "photo_flickr_id": "175673451", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42617", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some parts were easier than others .", "storylet_id": "213087"}], [{"original_text": "Pete had to see how fast he could pedal since it had been years since he had ridden a bike.", "album_id": "72157594178770280", "photo_flickr_id": "175673908", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42617", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] had to see how fast he could pedal since it had been years since he had ridden a bike .", "storylet_id": "213088"}], [{"original_text": "Jerry just had to show off his trick riding skills.", "album_id": "72157594178770280", "photo_flickr_id": "175674093", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42617", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] just had to show off his trick riding skills .", "storylet_id": "213089"}], [{"original_text": "After watching the Tour de France, we were inspired to take an advanced bicycle class.", "album_id": "72157594178770280", "photo_flickr_id": "175672481", "setting": "last-3-pick-old-and-tell", "worker_id": "WE5YB25CE3Y2JLB", "story_id": "42618", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after watching the tour de location , we were inspired to take an advanced bicycle class .", "storylet_id": "213090"}], [{"original_text": "First we negotiated a series of tricky green cones. I swear they kept moving!", "album_id": "72157594178770280", "photo_flickr_id": "175672527", "setting": "last-3-pick-old-and-tell", "worker_id": "WE5YB25CE3Y2JLB", "story_id": "42618", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we negotiated a series of tricky green cones . i swear they kept moving !", "storylet_id": "213091"}], [{"original_text": "We all got in a line behind the instructor for some advanced cornering.", "album_id": "72157594178770280", "photo_flickr_id": "175673451", "setting": "last-3-pick-old-and-tell", "worker_id": "WE5YB25CE3Y2JLB", "story_id": "42618", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all got in a line behind the instructor for some advanced cornering .", "storylet_id": "213092"}], [{"original_text": "One of the riders got a bit carried away and rode the wrong way.", "album_id": "72157594178770280", "photo_flickr_id": "175673908", "setting": "last-3-pick-old-and-tell", "worker_id": "WE5YB25CE3Y2JLB", "story_id": "42618", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the riders got a bit carried away and rode the wrong way .", "storylet_id": "213093"}], [{"original_text": "After an hour we were all exhausted. Except for this one guy who had way too much energy.", "album_id": "72157594178770280", "photo_flickr_id": "175674093", "setting": "last-3-pick-old-and-tell", "worker_id": "WE5YB25CE3Y2JLB", "story_id": "42618", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after an hour we were all exhausted . except for this one guy who had way too much energy .", "storylet_id": "213094"}], [{"original_text": "There was a little bike race outside.", "album_id": "72157594178770280", "photo_flickr_id": "175672481", "setting": "last-3-pick-old-and-tell", "worker_id": "DGEODUDYWRX55Z1", "story_id": "42619", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a little bike race outside .", "storylet_id": "213095"}], [{"original_text": "There were a lot of competitors that were riding around a track lined with cones.", "album_id": "72157594178770280", "photo_flickr_id": "175672527", "setting": "last-3-pick-old-and-tell", "worker_id": "DGEODUDYWRX55Z1", "story_id": "42619", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of competitors that were riding around a track lined with cones .", "storylet_id": "213096"}], [{"original_text": "It was pretty heated but the people were out here for fun.", "album_id": "72157594178770280", "photo_flickr_id": "175673451", "setting": "last-3-pick-old-and-tell", "worker_id": "DGEODUDYWRX55Z1", "story_id": "42619", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was pretty heated but the people were out here for fun .", "storylet_id": "213097"}], [{"original_text": "This guy didn't even bother to wear real biking gear because he just was here for a good time. ", "album_id": "72157594178770280", "photo_flickr_id": "175673908", "setting": "last-3-pick-old-and-tell", "worker_id": "DGEODUDYWRX55Z1", "story_id": "42619", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this guy did n't even bother to wear real biking gear because he just was here for a good time .", "storylet_id": "213098"}], [{"original_text": "Others were here for the competitiveness; you can tell by what they wore.", "album_id": "72157594178770280", "photo_flickr_id": "175674093", "setting": "last-3-pick-old-and-tell", "worker_id": "DGEODUDYWRX55Z1", "story_id": "42619", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "others were here for the competitiveness ; you can tell by what they wore .", "storylet_id": "213099"}], [{"original_text": "The track in which some cool cars were about to drive on.", "album_id": "72157594186275466", "photo_flickr_id": "181058161", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42620", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the track in which some cool cars were about to drive on .", "storylet_id": "213100"}], [{"original_text": "This was my favorite car that was their.", "album_id": "72157594186275466", "photo_flickr_id": "181069792", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42620", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was my favorite car that was their .", "storylet_id": "213101"}], [{"original_text": "This was another really sleek looking car.", "album_id": "72157594186275466", "photo_flickr_id": "181062060", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42620", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was another really sleek looking car .", "storylet_id": "213102"}], [{"original_text": "A small blue car with swanky headlights came barreling down the race track.", "album_id": "72157594186275466", "photo_flickr_id": "181053494", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42620", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a small blue car with swanky headlights came barreling down the race track .", "storylet_id": "213103"}], [{"original_text": "One guy even brought his motorcycle to ride the track with.", "album_id": "72157594186275466", "photo_flickr_id": "181046713", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "42620", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one guy even brought his motorcycle to ride the track with .", "storylet_id": "213104"}], [{"original_text": "The famous race track always has visiting drivers attempting to race each other.", "album_id": "72157594186275466", "photo_flickr_id": "181058161", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42621", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the famous race track always has visiting drivers attempting to race each other .", "storylet_id": "213105"}], [{"original_text": "Some drivers just like going around the track.", "album_id": "72157594186275466", "photo_flickr_id": "181055504", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42621", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some drivers just like going around the track .", "storylet_id": "213106"}], [{"original_text": "Other drivers attempt to drive the track going the wrong way.", "album_id": "72157594186275466", "photo_flickr_id": "181051311", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42621", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other drivers attempt to drive the track going the wrong way .", "storylet_id": "213107"}], [{"original_text": "One after another, drivers go around the race track, pretending to live out their long held dreams.", "album_id": "72157594186275466", "photo_flickr_id": "181048927", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42621", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one after another , drivers go around the race track , pretending to live out their long held dreams .", "storylet_id": "213108"}], [{"original_text": "I suppose there is nothing wrong with motorcyclists racing too.", "album_id": "72157594186275466", "photo_flickr_id": "181046713", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42621", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i suppose there is nothing wrong with motorcyclists racing too .", "storylet_id": "213109"}], [{"original_text": "The local racetrack let people drive their cars on the track for a small fee.", "album_id": "72157594186275466", "photo_flickr_id": "181058161", "setting": "last-3-pick-old-and-tell", "worker_id": "VDV38N2JYIZ9WIC", "story_id": "42622", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the local racetrack let people drive their cars on the track for a small fee .", "storylet_id": "213110"}], [{"original_text": "This guy was pretty funny in his little old boxy car.", "album_id": "72157594186275466", "photo_flickr_id": "181055504", "setting": "last-3-pick-old-and-tell", "worker_id": "VDV38N2JYIZ9WIC", "story_id": "42622", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this guy was pretty funny in his little old boxy car .", "storylet_id": "213111"}], [{"original_text": "This little red car just poked around while blasting his stereo at full volume.", "album_id": "72157594186275466", "photo_flickr_id": "181051311", "setting": "last-3-pick-old-and-tell", "worker_id": "VDV38N2JYIZ9WIC", "story_id": "42622", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this little red car just poked around while blasting his stereo at full volume .", "storylet_id": "213112"}], [{"original_text": "The driver of this little silver car wowed everyone, sliding through all of the turns and even doing a controlled 360.", "album_id": "72157594186275466", "photo_flickr_id": "181048927", "setting": "last-3-pick-old-and-tell", "worker_id": "VDV38N2JYIZ9WIC", "story_id": "42622", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the driver of this little silver car wowed everyone , sliding through all of the turns and even doing a controlled 360 .", "storylet_id": "213113"}], [{"original_text": "Then there's always that one guy . . .", "album_id": "72157594186275466", "photo_flickr_id": "181046713", "setting": "last-3-pick-old-and-tell", "worker_id": "VDV38N2JYIZ9WIC", "story_id": "42622", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then there 's always that one guy . . .", "storylet_id": "213114"}], [{"original_text": "Two cars drove around the track. The red car was in the lead.", "album_id": "72157594186275466", "photo_flickr_id": "181058161", "setting": "last-3-pick-old-and-tell", "worker_id": "KIWKES9KT640HYP", "story_id": "42623", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two cars drove around the track . the red car was in the lead .", "storylet_id": "213115"}], [{"original_text": "An older car was also on the track but farther behind.", "album_id": "72157594186275466", "photo_flickr_id": "181055504", "setting": "last-3-pick-old-and-tell", "worker_id": "KIWKES9KT640HYP", "story_id": "42623", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "an older car was also on the track but farther behind .", "storylet_id": "213116"}], [{"original_text": "Later on another red car took to the track.", "album_id": "72157594186275466", "photo_flickr_id": "181051311", "setting": "last-3-pick-old-and-tell", "worker_id": "KIWKES9KT640HYP", "story_id": "42623", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "later on another red car took to the track .", "storylet_id": "213117"}], [{"original_text": "Which was followed by a silver car.", "album_id": "72157594186275466", "photo_flickr_id": "181048927", "setting": "last-3-pick-old-and-tell", "worker_id": "KIWKES9KT640HYP", "story_id": "42623", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "which was followed by a silver car .", "storylet_id": "213118"}], [{"original_text": "After the cars were done a lone motorcyclist got a chance.", "album_id": "72157594186275466", "photo_flickr_id": "181046713", "setting": "last-3-pick-old-and-tell", "worker_id": "KIWKES9KT640HYP", "story_id": "42623", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the cars were done a lone motorcyclist got a chance .", "storylet_id": "213119"}], [{"original_text": "A couple of rich guys decided to race. ", "album_id": "72157594186275466", "photo_flickr_id": "181058161", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42624", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple of rich guys decided to race .", "storylet_id": "213120"}], [{"original_text": "One had a red car that was very fast.", "album_id": "72157594186275466", "photo_flickr_id": "181069792", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42624", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one had a red car that was very fast .", "storylet_id": "213121"}], [{"original_text": "A white car showed up out of nowhere.", "album_id": "72157594186275466", "photo_flickr_id": "181062060", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42624", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a white car showed up out of nowhere .", "storylet_id": "213122"}], [{"original_text": "A blue car made its way to the track.", "album_id": "72157594186275466", "photo_flickr_id": "181053494", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42624", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a blue car made its way to the track .", "storylet_id": "213123"}], [{"original_text": "The last racer was a motorcyclist from Finland. ", "album_id": "72157594186275466", "photo_flickr_id": "181046713", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42624", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last racer was a motorcyclist from location .", "storylet_id": "213124"}], [{"original_text": "We went to see that washing monument.", "album_id": "72157607009196210", "photo_flickr_id": "2809160018", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42625", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to see that washing monument .", "storylet_id": "213125"}], [{"original_text": "We read the paragraph written onto it.", "album_id": "72157607009196210", "photo_flickr_id": "2809160172", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42625", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we read the paragraph written onto it .", "storylet_id": "213126"}], [{"original_text": "We took some pictures in front of it.", "album_id": "72157607009196210", "photo_flickr_id": "2809160808", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42625", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took some pictures in front of it .", "storylet_id": "213127"}], [{"original_text": "It looks very tall, even form a distance.", "album_id": "72157607009196210", "photo_flickr_id": "2809161506", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42625", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looks very tall , even form a distance .", "storylet_id": "213128"}], [{"original_text": "We may go back one day.", "album_id": "72157607009196210", "photo_flickr_id": "2809161948", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42625", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we may go back one day .", "storylet_id": "213129"}], [{"original_text": "How high is this monument, really? ", "album_id": "72157607009196210", "photo_flickr_id": "2809160018", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42626", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "how high is this monument , really ?", "storylet_id": "213130"}], [{"original_text": "Over the benches there is noting but green, green grass. ", "album_id": "72157607009196210", "photo_flickr_id": "2808310949", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42626", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "over the benches there is noting but green , green grass .", "storylet_id": "213131"}], [{"original_text": "Towering above us this structure is too high!", "album_id": "72157607009196210", "photo_flickr_id": "2809160808", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42626", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "towering above us this structure is too high !", "storylet_id": "213132"}], [{"original_text": "Sun is down, now it's time for us to leave. ", "album_id": "72157607009196210", "photo_flickr_id": "2809161948", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42626", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sun is down , now it 's time for us to leave .", "storylet_id": "213133"}], [{"original_text": "Show me your muscles, Mathew! ", "album_id": "72157607009196210", "photo_flickr_id": "2808312617", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42626", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "show me your muscles , [male] !", "storylet_id": "213134"}], [{"original_text": "This man said he felt free in life.", "album_id": "72157607009196210", "photo_flickr_id": "2809160018", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42627", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this man said he felt free in life .", "storylet_id": "213135"}], [{"original_text": "This woman felt the need to explain the historical figure. ", "album_id": "72157607009196210", "photo_flickr_id": "2809160172", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42627", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this woman felt the need to explain the historical figure .", "storylet_id": "213136"}], [{"original_text": "Together, we celebrated on our history lesson. ", "album_id": "72157607009196210", "photo_flickr_id": "2809160808", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42627", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "together , we celebrated on our history lesson .", "storylet_id": "213137"}], [{"original_text": "It was a lovely day outside. ", "album_id": "72157607009196210", "photo_flickr_id": "2809161506", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42627", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a lovely day outside .", "storylet_id": "213138"}], [{"original_text": "We saw the beauty when the sun went down.", "album_id": "72157607009196210", "photo_flickr_id": "2809161948", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42627", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we saw the beauty when the sun went down .", "storylet_id": "213139"}], [{"original_text": "On our vacations we went sight seeing.", "album_id": "72157607009196210", "photo_flickr_id": "2809160018", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42628", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our vacations we went sight seeing .", "storylet_id": "213140"}], [{"original_text": "We stopped at historic landmarks with signs telling us their histories.", "album_id": "72157607009196210", "photo_flickr_id": "2809160172", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42628", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped at historic landmarks with signs telling us their histories .", "storylet_id": "213141"}], [{"original_text": "We saw a tower that went way high in the air.", "album_id": "72157607009196210", "photo_flickr_id": "2809160808", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42628", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw a tower that went way high in the air .", "storylet_id": "213142"}], [{"original_text": "We even saw a tower that leaned like the Tower Of Pisa.", "album_id": "72157607009196210", "photo_flickr_id": "2809161506", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42628", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even saw a tower that leaned like the tower of location .", "storylet_id": "213143"}], [{"original_text": "At the end of the night, we were tired, but glad we had seen the city sights.", "album_id": "72157607009196210", "photo_flickr_id": "2809161948", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42628", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , we were tired , but glad we had seen the city sights .", "storylet_id": "213144"}], [{"original_text": "Today I visited a very tall spire in the city.", "album_id": "72157607009196210", "photo_flickr_id": "2809160018", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42629", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i visited a very tall spire in the city .", "storylet_id": "213145"}], [{"original_text": "Veronica read some of the wall's text out loud. ", "album_id": "72157607009196210", "photo_flickr_id": "2809160172", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42629", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] read some of the wall 's text out loud .", "storylet_id": "213146"}], [{"original_text": "A happy couple never stops taking pictures together. ", "album_id": "72157607009196210", "photo_flickr_id": "2809160808", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42629", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a happy couple never stops taking pictures together .", "storylet_id": "213147"}], [{"original_text": "The clouds were drawing in an intense gloominess. ", "album_id": "72157607009196210", "photo_flickr_id": "2809161506", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42629", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the clouds were drawing in an intense gloominess .", "storylet_id": "213148"}], [{"original_text": "The pond looked just as beautiful in person as it did in the brochure. ", "album_id": "72157607009196210", "photo_flickr_id": "2809161948", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42629", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the pond looked just as beautiful in person as it did in the brochure .", "storylet_id": "213149"}], [{"original_text": "We celebrated Jared's birthday.", "album_id": "72157607015477072", "photo_flickr_id": "2809425215", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42630", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we celebrated [male] 's birthday .", "storylet_id": "213150"}], [{"original_text": "Everyone was really happy.", "album_id": "72157607015477072", "photo_flickr_id": "2810273486", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42630", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was really happy .", "storylet_id": "213151"}], [{"original_text": "Jared was having a blast.", "album_id": "72157607015477072", "photo_flickr_id": "2809425707", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42630", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was having a blast .", "storylet_id": "213152"}], [{"original_text": "We really love our family.", "album_id": "72157607015477072", "photo_flickr_id": "2809426673", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42630", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we really love our family .", "storylet_id": "213153"}], [{"original_text": "They where all very helpful in making this party a success.", "album_id": "72157607015477072", "photo_flickr_id": "2809426829", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42630", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they where all very helpful in making this party a success .", "storylet_id": "213154"}], [{"original_text": "A birthday cake made for our most trusted friend.", "album_id": "72157607015477072", "photo_flickr_id": "2809425215", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42631", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a birthday cake made for our most trusted friend .", "storylet_id": "213155"}], [{"original_text": "His mother has never been so proud of him. ", "album_id": "72157607015477072", "photo_flickr_id": "2810273486", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42631", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his mother has never been so proud of him .", "storylet_id": "213156"}], [{"original_text": "Blowing out his candles, hopefully he gets them all!", "album_id": "72157607015477072", "photo_flickr_id": "2809426067", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42631", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "blowing out his candles , hopefully he gets them all !", "storylet_id": "213157"}], [{"original_text": "He isn't too camera happy. ", "album_id": "72157607015477072", "photo_flickr_id": "2810274900", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42631", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he is n't too camera happy .", "storylet_id": "213158"}], [{"original_text": "Treating ourselves to some after party snacks. ", "album_id": "72157607015477072", "photo_flickr_id": "2809427275", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42631", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "treating ourselves to some after party snacks .", "storylet_id": "213159"}], [{"original_text": "The cake was certainly homemade.", "album_id": "72157607015477072", "photo_flickr_id": "2809425215", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42632", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cake was certainly homemade .", "storylet_id": "213160"}], [{"original_text": "My wife was really happy there.", "album_id": "72157607015477072", "photo_flickr_id": "2810273486", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42632", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my wife was really happy there .", "storylet_id": "213161"}], [{"original_text": "I brought mugs to celebrate.", "album_id": "72157607015477072", "photo_flickr_id": "2809425707", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42632", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i brought mugs to celebrate .", "storylet_id": "213162"}], [{"original_text": "We talked about life. ", "album_id": "72157607015477072", "photo_flickr_id": "2809426673", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42632", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we talked about life .", "storylet_id": "213163"}], [{"original_text": "With family, we had a great time. ", "album_id": "72157607015477072", "photo_flickr_id": "2809426829", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42632", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with family , we had a great time .", "storylet_id": "213164"}], [{"original_text": "It was Jared's birthday today.", "album_id": "72157607015477072", "photo_flickr_id": "2809425215", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42633", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was [male] 's birthday today .", "storylet_id": "213165"}], [{"original_text": "His girlfriend was thrilled to be there for him.", "album_id": "72157607015477072", "photo_flickr_id": "2810273486", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42633", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his girlfriend was thrilled to be there for him .", "storylet_id": "213166"}], [{"original_text": "His brother bought him two mugs, since he loves coffee so much.", "album_id": "72157607015477072", "photo_flickr_id": "2809425707", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42633", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his brother bought him two mugs , since he loves coffee so much .", "storylet_id": "213167"}], [{"original_text": "Jared's mom was very serious about the present opening.", "album_id": "72157607015477072", "photo_flickr_id": "2809426673", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42633", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] 's mom was very serious about the present opening .", "storylet_id": "213168"}], [{"original_text": "Jared was just happy to be with all of his family.", "album_id": "72157607015477072", "photo_flickr_id": "2809426829", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42633", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was just happy to be with all of his family .", "storylet_id": "213169"}], [{"original_text": "We threw a birthday party for my brother today.", "album_id": "72157607015477072", "photo_flickr_id": "2809425215", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42634", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we threw a birthday party for my brother today .", "storylet_id": "213170"}], [{"original_text": "His wife was eagerly anticipating the cake!", "album_id": "72157607015477072", "photo_flickr_id": "2810273486", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42634", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his wife was eagerly anticipating the cake !", "storylet_id": "213171"}], [{"original_text": "He made a wish and blew out the candles.", "album_id": "72157607015477072", "photo_flickr_id": "2809426067", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42634", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he made a wish and blew out the candles .", "storylet_id": "213172"}], [{"original_text": "After cake and ice cream, it was time to open gifts and cards!", "album_id": "72157607015477072", "photo_flickr_id": "2810274900", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42634", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after cake and ice cream , it was time to open gifts and cards !", "storylet_id": "213173"}], [{"original_text": "My brother was very happy with the gift I bought him.", "album_id": "72157607015477072", "photo_flickr_id": "2809427275", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42634", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my brother was very happy with the gift i bought him .", "storylet_id": "213174"}], [{"original_text": "It's time for the twins birthday party.", "album_id": "72157594453346147", "photo_flickr_id": "341895033", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "42635", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's time for the twins birthday party .", "storylet_id": "213175"}], [{"original_text": "Daddy helps to blow out the candles.", "album_id": "72157594453346147", "photo_flickr_id": "341894729", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "42635", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "daddy helps to blow out the candles .", "storylet_id": "213176"}], [{"original_text": "Then he helps to cut and serve cake.", "album_id": "72157594453346147", "photo_flickr_id": "341895367", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "42635", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then he helps to cut and serve cake .", "storylet_id": "213177"}], [{"original_text": "Of course the birthday boy gets his own cake.", "album_id": "72157594453346147", "photo_flickr_id": "341895142", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "42635", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course the birthday boy gets his own cake .", "storylet_id": "213178"}], [{"original_text": "Then the best part of the party, time to open the presents.", "album_id": "72157594453346147", "photo_flickr_id": "341895510", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "42635", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then the best part of the party , time to open the presents .", "storylet_id": "213179"}], [{"original_text": "Today was a birthday celebration for a father and son.", "album_id": "72157594453346147", "photo_flickr_id": "341895033", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "42636", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was a birthday celebration for a father and son .", "storylet_id": "213180"}], [{"original_text": "The excited son got to blow out his candle first.", "album_id": "72157594453346147", "photo_flickr_id": "341894602", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "42636", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the excited son got to blow out his candle first .", "storylet_id": "213181"}], [{"original_text": "The father blew his candle out next.", "album_id": "72157594453346147", "photo_flickr_id": "341894729", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "42636", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the father blew his candle out next .", "storylet_id": "213182"}], [{"original_text": "The happy father served the cake.", "album_id": "72157594453346147", "photo_flickr_id": "341895367", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "42636", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the happy father served the cake .", "storylet_id": "213183"}], [{"original_text": "Everyone enjoyed the festivities.", "album_id": "72157594453346147", "photo_flickr_id": "341895510", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "42636", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone enjoyed the festivities .", "storylet_id": "213184"}], [{"original_text": "It was Jeff's 41st birthday.", "album_id": "72157594453346147", "photo_flickr_id": "341895033", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42637", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was [male] 's 41st birthday .", "storylet_id": "213185"}], [{"original_text": "Jeff blew out the candles on the cake.", "album_id": "72157594453346147", "photo_flickr_id": "341894729", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42637", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] blew out the candles on the cake .", "storylet_id": "213186"}], [{"original_text": "Jeff passed out slices of cake. ", "album_id": "72157594453346147", "photo_flickr_id": "341895367", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42637", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] passed out slices of cake .", "storylet_id": "213187"}], [{"original_text": "It was his son's birthday as well, and he got a baby cake.", "album_id": "72157594453346147", "photo_flickr_id": "341895142", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42637", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was his son 's birthday as well , and he got a baby cake .", "storylet_id": "213188"}], [{"original_text": "The boy opened different gifts, was more interested in the bow. ", "album_id": "72157594453346147", "photo_flickr_id": "341895510", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42637", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boy opened different gifts , was more interested in the bow .", "storylet_id": "213189"}], [{"original_text": "Happy Birthday dear ole Jeff its been great for the family.", "album_id": "72157594453346147", "photo_flickr_id": "341895033", "setting": "last-3-pick-old-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "42638", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "happy birthday dear ole [male] its been great for the family .", "storylet_id": "213190"}], [{"original_text": "Jeff blew out the candles and made a perfect great wish.", "album_id": "72157594453346147", "photo_flickr_id": "341894729", "setting": "last-3-pick-old-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "42638", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] blew out the candles and made a perfect great wish .", "storylet_id": "213191"}], [{"original_text": "Jeff cut the cake and shared it with his great family.", "album_id": "72157594453346147", "photo_flickr_id": "341895367", "setting": "last-3-pick-old-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "42638", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] cut the cake and shared it with his great family .", "storylet_id": "213192"}], [{"original_text": "The baby got his own special cake since it was his birthday too.", "album_id": "72157594453346147", "photo_flickr_id": "341895142", "setting": "last-3-pick-old-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "42638", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the baby got his own special cake since it was his birthday too .", "storylet_id": "213193"}], [{"original_text": "After birthday cake it was time to open the gifts.", "album_id": "72157594453346147", "photo_flickr_id": "341895510", "setting": "last-3-pick-old-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "42638", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after birthday cake it was time to open the gifts .", "storylet_id": "213194"}], [{"original_text": "Gary and Jeff celebrated their birthdays together.", "album_id": "72157594453346147", "photo_flickr_id": "341895033", "setting": "last-3-pick-old-and-tell", "worker_id": "7U3TPUMZ5JCF2HQ", "story_id": "42639", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [male] celebrated their birthdays together .", "storylet_id": "213195"}], [{"original_text": "Gary turned 41 and Jeff turned 1.", "album_id": "72157594453346147", "photo_flickr_id": "341894602", "setting": "last-3-pick-old-and-tell", "worker_id": "7U3TPUMZ5JCF2HQ", "story_id": "42639", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] turned 41 and [male] turned 1 .", "storylet_id": "213196"}], [{"original_text": "As their family sang Happy Birthday, they blew out the candles on their cakes.", "album_id": "72157594453346147", "photo_flickr_id": "341894729", "setting": "last-3-pick-old-and-tell", "worker_id": "7U3TPUMZ5JCF2HQ", "story_id": "42639", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as their family sang happy birthday , they blew out the candles on their cakes .", "storylet_id": "213197"}], [{"original_text": "Gary cut the cake to share with everyone.", "album_id": "72157594453346147", "photo_flickr_id": "341895367", "setting": "last-3-pick-old-and-tell", "worker_id": "7U3TPUMZ5JCF2HQ", "story_id": "42639", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] cut the cake to share with everyone .", "storylet_id": "213198"}], [{"original_text": "After eating cake the presents were opened.", "album_id": "72157594453346147", "photo_flickr_id": "341895510", "setting": "last-3-pick-old-and-tell", "worker_id": "7U3TPUMZ5JCF2HQ", "story_id": "42639", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after eating cake the presents were opened .", "storylet_id": "213199"}], [{"original_text": "The man and his wife are touring the city.", "album_id": "72157628668713213", "photo_flickr_id": "6614843703", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "42640", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man and his wife are touring the city .", "storylet_id": "213200"}], [{"original_text": "The man wants to know if he looks good in the shirt.", "album_id": "72157628668713213", "photo_flickr_id": "6614863793", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "42640", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man wants to know if he looks good in the shirt .", "storylet_id": "213201"}], [{"original_text": "They decide to walk along the river.", "album_id": "72157628668713213", "photo_flickr_id": "6614841145", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "42640", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they decide to walk along the river .", "storylet_id": "213202"}], [{"original_text": "There are many different statues to look at.", "album_id": "72157628668713213", "photo_flickr_id": "6614845663", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "42640", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are many different statues to look at .", "storylet_id": "213203"}], [{"original_text": "At the end of the day they sit down and have dinner with their daughter.", "album_id": "72157628668713213", "photo_flickr_id": "6614849423", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "42640", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day they sit down and have dinner with their daughter .", "storylet_id": "213204"}], [{"original_text": "The courtyard was scenic and beautiful.", "album_id": "72157628668713213", "photo_flickr_id": "6614841145", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "42641", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the courtyard was scenic and beautiful .", "storylet_id": "213205"}], [{"original_text": "A couple came and took a selfie in front of it.", "album_id": "72157628668713213", "photo_flickr_id": "6614843703", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "42641", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a couple came and took a selfie in front of it .", "storylet_id": "213206"}], [{"original_text": "Afterwards, they bought a bottle of wine.", "album_id": "72157628668713213", "photo_flickr_id": "6614847535", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "42641", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards , they bought a bottle of wine .", "storylet_id": "213207"}], [{"original_text": "They took it home and toasted their nice day.", "album_id": "72157628668713213", "photo_flickr_id": "6614849423", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "42641", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they took it home and toasted their nice day .", "storylet_id": "213208"}], [{"original_text": "After toasting, they ate dinner.", "album_id": "72157628668713213", "photo_flickr_id": "6614870421", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "42641", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after toasting , they ate dinner .", "storylet_id": "213209"}], [{"original_text": "Amsterdam had many different sites.", "album_id": "72157628668713213", "photo_flickr_id": "6614841145", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42642", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location had many different sites .", "storylet_id": "213210"}], [{"original_text": "The couple took a picture in front of one of them.", "album_id": "72157628668713213", "photo_flickr_id": "6614843703", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42642", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the couple took a picture in front of one of them .", "storylet_id": "213211"}], [{"original_text": "They bought a bottle of champagne to celebrate later. ", "album_id": "72157628668713213", "photo_flickr_id": "6614847535", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42642", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they bought a bottle of champagne to celebrate later .", "storylet_id": "213212"}], [{"original_text": "They drank it later that night with friends.", "album_id": "72157628668713213", "photo_flickr_id": "6614849423", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42642", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they drank it later that night with friends .", "storylet_id": "213213"}], [{"original_text": "They also had food with their wine.", "album_id": "72157628668713213", "photo_flickr_id": "6614870421", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42642", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they also had food with their wine .", "storylet_id": "213214"}], [{"original_text": "We were very excited to join mom and dad on a family trip to Holland. ", "album_id": "72157628668713213", "photo_flickr_id": "6614843703", "setting": "last-3-pick-old-and-tell", "worker_id": "2RWB53ZO97GIYW3", "story_id": "42643", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were very excited to join mom and dad on a family trip to location .", "storylet_id": "213215"}], [{"original_text": "Dad was very proud of his new souvenir t-shirt that he picked up.", "album_id": "72157628668713213", "photo_flickr_id": "6614863793", "setting": "last-3-pick-old-and-tell", "worker_id": "2RWB53ZO97GIYW3", "story_id": "42643", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dad was very proud of his new souvenir t-shirt that he picked up .", "storylet_id": "213216"}], [{"original_text": "It was a beautiful autumn day as we took a stroll by the water in the park.", "album_id": "72157628668713213", "photo_flickr_id": "6614841145", "setting": "last-3-pick-old-and-tell", "worker_id": "2RWB53ZO97GIYW3", "story_id": "42643", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a beautiful autumn day as we took a stroll by the water in the park .", "storylet_id": "213217"}], [{"original_text": "The beautiful art and architecture was on full display on our autumn stroll.", "album_id": "72157628668713213", "photo_flickr_id": "6614845663", "setting": "last-3-pick-old-and-tell", "worker_id": "2RWB53ZO97GIYW3", "story_id": "42643", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beautiful art and architecture was on full display on our autumn stroll .", "storylet_id": "213218"}], [{"original_text": "We celebrated our adventure with a nice glass of wine at the end of the day.", "album_id": "72157628668713213", "photo_flickr_id": "6614849423", "setting": "last-3-pick-old-and-tell", "worker_id": "2RWB53ZO97GIYW3", "story_id": "42643", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we celebrated our adventure with a nice glass of wine at the end of the day .", "storylet_id": "213219"}], [{"original_text": "The man and wife went on vacation.", "album_id": "72157628668713213", "photo_flickr_id": "6614843703", "setting": "last-3-pick-old-and-tell", "worker_id": "QALVZGNDGOEA0B2", "story_id": "42644", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man and wife went on vacation .", "storylet_id": "213220"}], [{"original_text": "Of course, they had to buy a t-shirt to commemorate their trip. ", "album_id": "72157628668713213", "photo_flickr_id": "6614863793", "setting": "last-3-pick-old-and-tell", "worker_id": "QALVZGNDGOEA0B2", "story_id": "42644", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "of course , they had to buy a t-shirt to commemorate their trip .", "storylet_id": "213221"}], [{"original_text": "They saw beautiful sites", "album_id": "72157628668713213", "photo_flickr_id": "6614841145", "setting": "last-3-pick-old-and-tell", "worker_id": "QALVZGNDGOEA0B2", "story_id": "42644", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they saw beautiful sites", "storylet_id": "213222"}], [{"original_text": "and visited historical places,", "album_id": "72157628668713213", "photo_flickr_id": "6614845663", "setting": "last-3-pick-old-and-tell", "worker_id": "QALVZGNDGOEA0B2", "story_id": "42644", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and visited historical places ,", "storylet_id": "213223"}], [{"original_text": "but they were super happy to get back home to spend time with their family.", "album_id": "72157628668713213", "photo_flickr_id": "6614849423", "setting": "last-3-pick-old-and-tell", "worker_id": "QALVZGNDGOEA0B2", "story_id": "42644", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but they were super happy to get back home to spend time with their family .", "storylet_id": "213224"}], [{"original_text": "We all meet up after work for a night out on the town.", "album_id": "201820", "photo_flickr_id": "8095967", "setting": "first-2-pick-and-tell", "worker_id": "DHQXH3A3563LI7R", "story_id": "42645", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all meet up after work for a night out on the town .", "storylet_id": "213225"}], [{"original_text": "The first thing on the agenda was to have some appetizers.", "album_id": "201820", "photo_flickr_id": "8095984", "setting": "first-2-pick-and-tell", "worker_id": "DHQXH3A3563LI7R", "story_id": "42645", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first thing on the agenda was to have some appetizers .", "storylet_id": "213226"}], [{"original_text": "After crushing the appetizers, our delicious entr\u00c3\u0192\u00c2\u00a9es were served along with some great adult beverages.", "album_id": "201820", "photo_flickr_id": "8096018", "setting": "first-2-pick-and-tell", "worker_id": "DHQXH3A3563LI7R", "story_id": "42645", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after crushing the appetizers , our delicious entr\u00c3\u0192\u00c6\u2019\u00c3\u201a\u00c2\u00a9es were served along with some great adult beverages .", "storylet_id": "213227"}], [{"original_text": "Everyone became very friendly after our third shot of Tequila.", "album_id": "201820", "photo_flickr_id": "8096378", "setting": "first-2-pick-and-tell", "worker_id": "DHQXH3A3563LI7R", "story_id": "42645", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone became very friendly after our third shot of tequila .", "storylet_id": "213228"}], [{"original_text": "We ended the with some cold beers and some random guy performing his card tricks.", "album_id": "201820", "photo_flickr_id": "8096600", "setting": "first-2-pick-and-tell", "worker_id": "DHQXH3A3563LI7R", "story_id": "42645", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the with some cold beers and some random guy performing his card tricks .", "storylet_id": "213229"}], [{"original_text": "A group of friends went to a bar.", "album_id": "201820", "photo_flickr_id": "8095922", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42646", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends went to a bar .", "storylet_id": "213230"}], [{"original_text": "They ate dinner.", "album_id": "201820", "photo_flickr_id": "8095984", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42646", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they ate dinner .", "storylet_id": "213231"}], [{"original_text": "They drank lots of wine.", "album_id": "201820", "photo_flickr_id": "8096109", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42646", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they drank lots of wine .", "storylet_id": "213232"}], [{"original_text": "You were allowed to smoke there.", "album_id": "201820", "photo_flickr_id": "8096430", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42646", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you were allowed to smoke there .", "storylet_id": "213233"}], [{"original_text": "Everyone had a great time.", "album_id": "201820", "photo_flickr_id": "8096656", "setting": "first-2-pick-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42646", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time .", "storylet_id": "213234"}], [{"original_text": "All of the friends are gathered for the celebration tonight. ", "album_id": "201820", "photo_flickr_id": "8095967", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42647", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all of the friends are gathered for the celebration tonight .", "storylet_id": "213235"}], [{"original_text": "She digs into the delicious food served for dinner. ", "album_id": "201820", "photo_flickr_id": "8095984", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42647", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she digs into the delicious food served for dinner .", "storylet_id": "213236"}], [{"original_text": "The guest enjoy the good food and great friends. ", "album_id": "201820", "photo_flickr_id": "8096018", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42647", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guest enjoy the good food and great friends .", "storylet_id": "213237"}], [{"original_text": "This happy couple want to wish Good Tidings to all of their friends. ", "album_id": "201820", "photo_flickr_id": "8096378", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42647", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this happy couple want to wish good tidings to all of their friends .", "storylet_id": "213238"}], [{"original_text": "She couldn't be more pleased with the excitement of the night. ", "album_id": "201820", "photo_flickr_id": "8096600", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42647", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she could n't be more pleased with the excitement of the night .", "storylet_id": "213239"}], [{"original_text": "My coworkers and I wanted to celebrate the new contract, so we went out to dinner!", "album_id": "201820", "photo_flickr_id": "8095967", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42648", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my coworkers and i wanted to celebrate the new contract , so we went out to dinner !", "storylet_id": "213240"}], [{"original_text": "We enjoyed some really great food.", "album_id": "201820", "photo_flickr_id": "8095984", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42648", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we enjoyed some really great food .", "storylet_id": "213241"}], [{"original_text": "We reminisced about good old times and told jokes!", "album_id": "201820", "photo_flickr_id": "8096018", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42648", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we reminisced about good old times and told jokes !", "storylet_id": "213242"}], [{"original_text": "Some of us might have drank too much.", "album_id": "201820", "photo_flickr_id": "8096378", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42648", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of us might have drank too much .", "storylet_id": "213243"}], [{"original_text": "Our boss even drank a little!", "album_id": "201820", "photo_flickr_id": "8096600", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42648", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our boss even drank a little !", "storylet_id": "213244"}], [{"original_text": "The DFW, Inc. Christmas party started innocently enough.", "album_id": "201820", "photo_flickr_id": "8095967", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42649", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the location , inc. christmas party started innocently enough .", "storylet_id": "213245"}], [{"original_text": "As the drinks started to flow, Cheryl from HR decided eating straight from the serving tray would be a good idea.", "album_id": "201820", "photo_flickr_id": "8095984", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42649", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the drinks started to flow , [female] from hr decided eating straight from the serving tray would be a good idea .", "storylet_id": "213246"}], [{"original_text": "The accounting department began to mix all the available booze together into bowls, daring others to take a drink.", "album_id": "201820", "photo_flickr_id": "8096018", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42649", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the accounting department began to mix all the available booze together into bowls , daring others to take a drink .", "storylet_id": "213247"}], [{"original_text": "Jim from sales decided that Katie the receptionist should pick that moment for his long awaited hug.", "album_id": "201820", "photo_flickr_id": "8096378", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42649", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] from sales decided that [female] the receptionist should pick that moment for his long awaited hug .", "storylet_id": "213248"}], [{"original_text": "Karen, who never smiles, was greatly amused and became very boisterous as the drinks continued to flow.", "album_id": "201820", "photo_flickr_id": "8096600", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "42649", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] , who never smiles , was greatly amused and became very boisterous as the drinks continued to flow .", "storylet_id": "213249"}], [{"original_text": "Meet George and Thomas.", "album_id": "72157602258046251", "photo_flickr_id": "1480660390", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42650", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "meet [male] and [male] .", "storylet_id": "213250"}], [{"original_text": "Thomas is studious and has a great personality.", "album_id": "72157602258046251", "photo_flickr_id": "1480659672", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42650", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is studious and has a great personality .", "storylet_id": "213251"}], [{"original_text": "George loves sports and the arts. ", "album_id": "72157602258046251", "photo_flickr_id": "1479801853", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42650", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] loves sports and the arts .", "storylet_id": "213252"}], [{"original_text": "They have dog named Knox who they love dearly.", "album_id": "72157602258046251", "photo_flickr_id": "1479801933", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42650", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they have dog named knox who they love dearly .", "storylet_id": "213253"}], [{"original_text": "Knox had puppies and now Thomas and George take care of the puppies every day.", "album_id": "72157602258046251", "photo_flickr_id": "1479801993", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42650", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "knox had puppies and now [male] and [male] take care of the puppies every day .", "storylet_id": "213254"}], [{"original_text": "We got a puppy for Christmas.", "album_id": "72157602258046251", "photo_flickr_id": "1479802169", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42651", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got a puppy for christmas .", "storylet_id": "213255"}], [{"original_text": "He grew very fast and so did our sons.", "album_id": "72157602258046251", "photo_flickr_id": "1479801709", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42651", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he grew very fast and so did our sons .", "storylet_id": "213256"}], [{"original_text": "We bought our youngest son a mouse.", "album_id": "72157602258046251", "photo_flickr_id": "1479802381", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42651", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we bought our youngest son a mouse .", "storylet_id": "213257"}], [{"original_text": "My biggest son was moving off to college. ", "album_id": "72157602258046251", "photo_flickr_id": "1479801213", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42651", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my biggest son was moving off to college .", "storylet_id": "213258"}], [{"original_text": "We gave him a goodbye cake. ", "album_id": "72157602258046251", "photo_flickr_id": "1480659092", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42651", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we gave him a goodbye cake .", "storylet_id": "213259"}], [{"original_text": "That afternoon was much like any other day. The brothers spent time riding their bikes and having fun.", "album_id": "72157602258046251", "photo_flickr_id": "1480660390", "setting": "last-3-pick-old-and-tell", "worker_id": "1ZYJ8XPUWJ094SC", "story_id": "42652", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "that afternoon was much like any other day . the brothers spent time riding their bikes and having fun .", "storylet_id": "213260"}], [{"original_text": "But when they got home, there were two surprises waiting. The older brother saw his surprise first: a pet gerbil. He named it Hercules. ", "album_id": "72157602258046251", "photo_flickr_id": "1480659672", "setting": "last-3-pick-old-and-tell", "worker_id": "1ZYJ8XPUWJ094SC", "story_id": "42652", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but when they got home , there were two surprises waiting . the older brother saw his surprise first : a pet gerbil . he named it hercules .", "storylet_id": "213261"}], [{"original_text": "The second surprise was waiting for them in their bedroom: a black lab. The younger brother held it and smiled. It wore a pretty blue collar and they named it Blue. ", "album_id": "72157602258046251", "photo_flickr_id": "1479801853", "setting": "last-3-pick-old-and-tell", "worker_id": "1ZYJ8XPUWJ094SC", "story_id": "42652", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the second surprise was waiting for them in their bedroom : a black lab . the younger brother held it and smiled . it wore a pretty blue collar and they named it blue .", "storylet_id": "213262"}], [{"original_text": "Blue loved to sit and watch the boys as they watched TV in the living room. He would look up at them and study their expressions. ", "album_id": "72157602258046251", "photo_flickr_id": "1479801933", "setting": "last-3-pick-old-and-tell", "worker_id": "1ZYJ8XPUWJ094SC", "story_id": "42652", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "blue loved to sit and watch the boys as they watched tv in the living room . he would look up at them and study their expressions .", "storylet_id": "213263"}], [{"original_text": "Blue also loved to play outside in the grass. He became their best friend. ", "album_id": "72157602258046251", "photo_flickr_id": "1479801993", "setting": "last-3-pick-old-and-tell", "worker_id": "1ZYJ8XPUWJ094SC", "story_id": "42652", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "blue also loved to play outside in the grass . he became their best friend .", "storylet_id": "213264"}], [{"original_text": "Jim and Joe were brothers.", "album_id": "72157602258046251", "photo_flickr_id": "1480660390", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42653", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [male] were brothers .", "storylet_id": "213265"}], [{"original_text": "They had a cute rodent for a pet.", "album_id": "72157602258046251", "photo_flickr_id": "1480659672", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42653", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a cute rodent for a pet .", "storylet_id": "213266"}], [{"original_text": "And one day they got a new puppy!", "album_id": "72157602258046251", "photo_flickr_id": "1479801853", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42653", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and one day they got a new puppy !", "storylet_id": "213267"}], [{"original_text": "The puppy soon grew up into a big dog.", "album_id": "72157602258046251", "photo_flickr_id": "1479801933", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42653", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the puppy soon grew up into a big dog .", "storylet_id": "213268"}], [{"original_text": "But they always remembered how cute and little he had once been.", "album_id": "72157602258046251", "photo_flickr_id": "1479801993", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42653", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but they always remembered how cute and little he had once been .", "storylet_id": "213269"}], [{"original_text": "I finally learned to ride my bike today! We had a lot of fun!", "album_id": "72157602258046251", "photo_flickr_id": "1480660390", "setting": "last-3-pick-old-and-tell", "worker_id": "BJ8B1W9GIYMGW0P", "story_id": "42654", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finally learned to ride my bike today ! we had a lot of fun !", "storylet_id": "213270"}], [{"original_text": "This is my rat. She is white and loves to cuddle.", "album_id": "72157602258046251", "photo_flickr_id": "1480659672", "setting": "last-3-pick-old-and-tell", "worker_id": "BJ8B1W9GIYMGW0P", "story_id": "42654", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is my rat . she is white and loves to cuddle .", "storylet_id": "213271"}], [{"original_text": "I got a new puppy! I am oh so happy!", "album_id": "72157602258046251", "photo_flickr_id": "1479801853", "setting": "last-3-pick-old-and-tell", "worker_id": "BJ8B1W9GIYMGW0P", "story_id": "42654", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got a new puppy ! i am oh so happy !", "storylet_id": "213272"}], [{"original_text": "This is my puppy lying on the carpet.", "album_id": "72157602258046251", "photo_flickr_id": "1479801933", "setting": "last-3-pick-old-and-tell", "worker_id": "BJ8B1W9GIYMGW0P", "story_id": "42654", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is my puppy lying on the carpet .", "storylet_id": "213273"}], [{"original_text": "This is my puppy lying in the grass outside, I love him!", "album_id": "72157602258046251", "photo_flickr_id": "1479801993", "setting": "last-3-pick-old-and-tell", "worker_id": "BJ8B1W9GIYMGW0P", "story_id": "42654", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is my puppy lying in the grass outside , i love him !", "storylet_id": "213274"}], [{"original_text": "Dr. Suess day at the library. The kids filled out a paper with their favorite books on it.", "album_id": "72157623418136791", "photo_flickr_id": "4402372860", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "42655", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dr. suess day at the library . the kids filled out a paper with their favorite books on it .", "storylet_id": "213275"}], [{"original_text": "Table of all the books the kids can read and take home today.", "album_id": "72157623418136791", "photo_flickr_id": "4402373410", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "42655", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "table of all the books the kids can read and take home today .", "storylet_id": "213276"}], [{"original_text": "Even the characters showed up today..even if they are stuffed. So cute!", "album_id": "72157623418136791", "photo_flickr_id": "4402373754", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "42655", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the characters showed up today..even if they are stuffed . so cute !", "storylet_id": "213277"}], [{"original_text": "The kids got to make movies to watch later. They had alot of fun doing it.", "album_id": "72157623418136791", "photo_flickr_id": "4401612201", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "42655", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids got to make movies to watch later . they had alot of fun doing it .", "storylet_id": "213278"}], [{"original_text": "Time to eat some popcorn and watch the movies they made. They did a great job!", "album_id": "72157623418136791", "photo_flickr_id": "4402375130", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "42655", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time to eat some popcorn and watch the movies they made . they did a great job !", "storylet_id": "213279"}], [{"original_text": "The students write down why they think reading is important.", "album_id": "72157623418136791", "photo_flickr_id": "4402372860", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "42656", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the students write down why they think reading is important .", "storylet_id": "213280"}], [{"original_text": "A pile of books that the librarian will go over.", "album_id": "72157623418136791", "photo_flickr_id": "4402373410", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "42656", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a pile of books that the librarian will go over .", "storylet_id": "213281"}], [{"original_text": "The students watch a quick video about the importance of reading.", "album_id": "72157623418136791", "photo_flickr_id": "4402375130", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "42656", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the students watch a quick video about the importance of reading .", "storylet_id": "213282"}], [{"original_text": "Suzy holds up the cat from \"the Cat and the Hat\".", "album_id": "72157623418136791", "photo_flickr_id": "4402376842", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "42656", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "suzy holds up the cat from `` the cat and the hat '' .", "storylet_id": "213283"}], [{"original_text": "The students interact with another class about what they learned about reading.", "album_id": "72157623418136791", "photo_flickr_id": "4401612201", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "42656", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the students interact with another class about what they learned about reading .", "storylet_id": "213284"}], [{"original_text": "Today I volunteered to help my son's kindergarten class out. I helped them with their writing assignments.", "album_id": "72157623418136791", "photo_flickr_id": "4402372860", "setting": "last-3-pick-old-and-tell", "worker_id": "TVWUFUNEHIEFWMO", "story_id": "42657", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i volunteered to help my son 's kindergarten class out . i helped them with their writing assignments .", "storylet_id": "213285"}], [{"original_text": "I even read them books.", "album_id": "72157623418136791", "photo_flickr_id": "4402373410", "setting": "last-3-pick-old-and-tell", "worker_id": "TVWUFUNEHIEFWMO", "story_id": "42657", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i even read them books .", "storylet_id": "213286"}], [{"original_text": "They really like Dr. Suess.", "album_id": "72157623418136791", "photo_flickr_id": "4402373754", "setting": "last-3-pick-old-and-tell", "worker_id": "TVWUFUNEHIEFWMO", "story_id": "42657", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they really like dr. suess .", "storylet_id": "213287"}], [{"original_text": "We even did a project on the computer. They made a video of their class.", "album_id": "72157623418136791", "photo_flickr_id": "4401612201", "setting": "last-3-pick-old-and-tell", "worker_id": "TVWUFUNEHIEFWMO", "story_id": "42657", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even did a project on the computer . they made a video of their class .", "storylet_id": "213288"}], [{"original_text": "They then watched the video on the projector. It was a fun day.", "album_id": "72157623418136791", "photo_flickr_id": "4402375130", "setting": "last-3-pick-old-and-tell", "worker_id": "TVWUFUNEHIEFWMO", "story_id": "42657", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they then watched the video on the projector . it was a fun day .", "storylet_id": "213289"}], [{"original_text": "The kids loved kindergarten.", "album_id": "72157623418136791", "photo_flickr_id": "4402372860", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "42658", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids loved kindergarten .", "storylet_id": "213290"}], [{"original_text": "They did many art.", "album_id": "72157623418136791", "photo_flickr_id": "4402373410", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "42658", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they did many art .", "storylet_id": "213291"}], [{"original_text": "The toys were so fun./", "album_id": "72157623418136791", "photo_flickr_id": "4402373754", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "42658", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the toys were so fun./", "storylet_id": "213292"}], [{"original_text": "They got to play learning games on the computer.", "album_id": "72157623418136791", "photo_flickr_id": "4401612201", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "42658", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they got to play learning games on the computer .", "storylet_id": "213293"}], [{"original_text": "Then they watched a movie on the projection screen.", "album_id": "72157623418136791", "photo_flickr_id": "4402375130", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "42658", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then they watched a movie on the projection screen .", "storylet_id": "213294"}], [{"original_text": "The kids were writing on the paper", "album_id": "72157623418136791", "photo_flickr_id": "4402372860", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42659", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids were writing on the paper", "storylet_id": "213295"}], [{"original_text": "and had book.", "album_id": "72157623418136791", "photo_flickr_id": "4402373410", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42659", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and had book .", "storylet_id": "213296"}], [{"original_text": "There were stuffed animals there", "album_id": "72157623418136791", "photo_flickr_id": "4402373754", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42659", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were stuffed animals there", "storylet_id": "213297"}], [{"original_text": "and the children were happy", "album_id": "72157623418136791", "photo_flickr_id": "4401612201", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42659", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the children were happy", "storylet_id": "213298"}], [{"original_text": "at the presentation.", "album_id": "72157623418136791", "photo_flickr_id": "4402375130", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "42659", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the presentation .", "storylet_id": "213299"}], [{"original_text": "Dorothy Coulter's pictures shows a beautiful, young woman. ", "album_id": "72157623418728631", "photo_flickr_id": "4401836303", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "42660", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] coulter 's pictures shows a beautiful , young woman .", "storylet_id": "213300"}], [{"original_text": "Dorothy is outside picking flowers on a nice day. ", "album_id": "72157623418728631", "photo_flickr_id": "4401836489", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "42660", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] is outside picking flowers on a nice day .", "storylet_id": "213301"}], [{"original_text": "The family sat in the living room to take the picture.", "album_id": "72157623418728631", "photo_flickr_id": "4402602500", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "42660", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family sat in the living room to take the picture .", "storylet_id": "213302"}], [{"original_text": "Grandma always took great care of the children.", "album_id": "72157623418728631", "photo_flickr_id": "4402603596", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "42660", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandma always took great care of the children .", "storylet_id": "213303"}], [{"original_text": "The neighbors were always very friendly and well dressed.", "album_id": "72157623418728631", "photo_flickr_id": "4402604660", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "42660", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the neighbors were always very friendly and well dressed .", "storylet_id": "213304"}], [{"original_text": "The family had rich and varied history, and the baby was dressed in the fashion of the season.", "album_id": "72157623418728631", "photo_flickr_id": "4401836023", "setting": "first-2-pick-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "42661", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family had rich and varied history , and the baby was dressed in the fashion of the season .", "storylet_id": "213305"}], [{"original_text": "She grew into a little girl, wearing a large bow that was in style at the time.", "album_id": "72157623418728631", "photo_flickr_id": "4402599984", "setting": "first-2-pick-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "42661", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she grew into a little girl , wearing a large bow that was in style at the time .", "storylet_id": "213306"}], [{"original_text": "She was a little unsure of herself as she posed, careful not to move.", "album_id": "72157623418728631", "photo_flickr_id": "4402601900", "setting": "first-2-pick-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "42661", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was a little unsure of herself as she posed , careful not to move .", "storylet_id": "213307"}], [{"original_text": "The family photos were very serious. Photographers needed people to be very still or the images would blur.", "album_id": "72157623418728631", "photo_flickr_id": "4401838305", "setting": "first-2-pick-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "42661", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family photos were very serious . photographers needed people to be very still or the images would blur .", "storylet_id": "213308"}], [{"original_text": "The family grew and pictures became more candid as cameras were able to capture movement much faster, and the little girl had grown up.", "album_id": "72157623418728631", "photo_flickr_id": "4402602276", "setting": "first-2-pick-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "42661", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family grew and pictures became more candid as cameras were able to capture movement much faster , and the little girl had grown up .", "storylet_id": "213309"}], [{"original_text": "Dorothy's first Photo as a baby.", "album_id": "72157623418728631", "photo_flickr_id": "4401836023", "setting": "last-3-pick-old-and-tell", "worker_id": "HGD1PSKPGXI3WSU", "story_id": "42662", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] 's first photo as a baby .", "storylet_id": "213310"}], [{"original_text": "Dorothy's school photo.", "album_id": "72157623418728631", "photo_flickr_id": "4402599984", "setting": "last-3-pick-old-and-tell", "worker_id": "HGD1PSKPGXI3WSU", "story_id": "42662", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] 's school photo .", "storylet_id": "213311"}], [{"original_text": "posing for the photo to record this day.", "album_id": "72157623418728631", "photo_flickr_id": "4402601900", "setting": "last-3-pick-old-and-tell", "worker_id": "HGD1PSKPGXI3WSU", "story_id": "42662", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "posing for the photo to record this day .", "storylet_id": "213312"}], [{"original_text": "Mom, Dad and Dorothy in there first family photo.", "album_id": "72157623418728631", "photo_flickr_id": "4401838305", "setting": "last-3-pick-old-and-tell", "worker_id": "HGD1PSKPGXI3WSU", "story_id": "42662", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom , dad and [female] in there first family photo .", "storylet_id": "213313"}], [{"original_text": "A family get together on the front porch.", "album_id": "72157623418728631", "photo_flickr_id": "4402602276", "setting": "last-3-pick-old-and-tell", "worker_id": "HGD1PSKPGXI3WSU", "story_id": "42662", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a family get together on the front porch .", "storylet_id": "213314"}], [{"original_text": "My mother in her high school year book. ", "album_id": "72157623418728631", "photo_flickr_id": "4401836303", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "42663", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my mother in her high school year book .", "storylet_id": "213315"}], [{"original_text": "Mom playing hide and go seek. ", "album_id": "72157623418728631", "photo_flickr_id": "4401836489", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "42663", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom playing hide and go seek .", "storylet_id": "213316"}], [{"original_text": "The grandparents are still with us. ", "album_id": "72157623418728631", "photo_flickr_id": "4402602500", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "42663", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the grandparents are still with us .", "storylet_id": "213317"}], [{"original_text": "They interrupted grandma's nap. ", "album_id": "72157623418728631", "photo_flickr_id": "4402603596", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "42663", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they interrupted grandma 's nap .", "storylet_id": "213318"}], [{"original_text": "A great day for a picnic. ", "album_id": "72157623418728631", "photo_flickr_id": "4402604660", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "42663", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a great day for a picnic .", "storylet_id": "213319"}], [{"original_text": "Dorothy was born in 1912. She was named after the girl from \"The Wizard of Oz\"", "album_id": "72157623418728631", "photo_flickr_id": "4401836023", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42664", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was born in 1912 . she was named after the girl from `` the wizard of oz ''", "storylet_id": "213320"}], [{"original_text": "She was a much beloved child. Many pictures were taken of her by her family.", "album_id": "72157623418728631", "photo_flickr_id": "4402599984", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42664", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was a much beloved child . many pictures were taken of her by her family .", "storylet_id": "213321"}], [{"original_text": "She grew to be a sweet and very clever child.", "album_id": "72157623418728631", "photo_flickr_id": "4402601900", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42664", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she grew to be a sweet and very clever child .", "storylet_id": "213322"}], [{"original_text": "Her parents adored her.", "album_id": "72157623418728631", "photo_flickr_id": "4401838305", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42664", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her parents adored her .", "storylet_id": "213323"}], [{"original_text": "In later years, she had a large family of her own.", "album_id": "72157623418728631", "photo_flickr_id": "4402602276", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "42664", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in later years , she had a large family of her own .", "storylet_id": "213324"}], [{"original_text": "We wen to a coffee shop.", "album_id": "72157594457718293", "photo_flickr_id": "344673774", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42665", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we wen to a coffee shop .", "storylet_id": "213325"}], [{"original_text": "The coffee there was amazing.", "album_id": "72157594457718293", "photo_flickr_id": "344673966", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42665", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the coffee there was amazing .", "storylet_id": "213326"}], [{"original_text": "There was some interesting decorations.", "album_id": "72157594457718293", "photo_flickr_id": "344673546", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42665", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was some interesting decorations .", "storylet_id": "213327"}], [{"original_text": "It was getting rather late.", "album_id": "72157594457718293", "photo_flickr_id": "344673359", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42665", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was getting rather late .", "storylet_id": "213328"}], [{"original_text": "So we had to go home.", "album_id": "72157594457718293", "photo_flickr_id": "344673815", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "42665", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so we had to go home .", "storylet_id": "213329"}], [{"original_text": "The balcony above our restaurant shine so brightly. ", "album_id": "72157594457718293", "photo_flickr_id": "344673445", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42666", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the balcony above our restaurant shine so brightly .", "storylet_id": "213330"}], [{"original_text": "Something fancy, but not really what I'm looking for.", "album_id": "72157594457718293", "photo_flickr_id": "344673546", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42666", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "something fancy , but not really what i 'm looking for .", "storylet_id": "213331"}], [{"original_text": "Neon lights flashing everywhere we go. ", "album_id": "72157594457718293", "photo_flickr_id": "344673491", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42666", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "neon lights flashing everywhere we go .", "storylet_id": "213332"}], [{"original_text": "The train right on time coming to pick us up.", "album_id": "72157594457718293", "photo_flickr_id": "344673815", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42666", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the train right on time coming to pick us up .", "storylet_id": "213333"}], [{"original_text": "something that I treasure, it was the greatest. ", "album_id": "72157594457718293", "photo_flickr_id": "346038418", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "42666", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "something that i treasure , it was the greatest .", "storylet_id": "213334"}], [{"original_text": "First we parked in the new area.", "album_id": "72157594457718293", "photo_flickr_id": "344673445", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42667", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "first we parked in the new area .", "storylet_id": "213335"}], [{"original_text": "In our first ship we found a unique antique. ", "album_id": "72157594457718293", "photo_flickr_id": "344673546", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42667", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in our first ship we found a unique antique .", "storylet_id": "213336"}], [{"original_text": "Near the restaurant we found more neon lights.", "album_id": "72157594457718293", "photo_flickr_id": "344673491", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42667", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "near the restaurant we found more neon lights .", "storylet_id": "213337"}], [{"original_text": "The city and subway were well lit.", "album_id": "72157594457718293", "photo_flickr_id": "344673815", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42667", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the city and subway were well lit .", "storylet_id": "213338"}], [{"original_text": "We saw several pieces of art around the city.", "album_id": "72157594457718293", "photo_flickr_id": "346038418", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42667", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we saw several pieces of art around the city .", "storylet_id": "213339"}], [{"original_text": "This is our first preview of the new restaurant.", "album_id": "72157594457718293", "photo_flickr_id": "344673445", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42668", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is our first preview of the new restaurant .", "storylet_id": "213340"}], [{"original_text": "The decorations didn't seem like much.", "album_id": "72157594457718293", "photo_flickr_id": "344673546", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42668", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the decorations did n't seem like much .", "storylet_id": "213341"}], [{"original_text": "We had heard that this restaurant would be good though.", "album_id": "72157594457718293", "photo_flickr_id": "344673491", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42668", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had heard that this restaurant would be good though .", "storylet_id": "213342"}], [{"original_text": "We had a view of the train out of the window.", "album_id": "72157594457718293", "photo_flickr_id": "344673815", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42668", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a view of the train out of the window .", "storylet_id": "213343"}], [{"original_text": "The walls were plastered with these designs.", "album_id": "72157594457718293", "photo_flickr_id": "346038418", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42668", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the walls were plastered with these designs .", "storylet_id": "213344"}], [{"original_text": "We tried a different restaurant tonight!", "album_id": "72157594457718293", "photo_flickr_id": "344673774", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42669", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we tried a different restaurant tonight !", "storylet_id": "213345"}], [{"original_text": "We were served a coffee with a foam on top.", "album_id": "72157594457718293", "photo_flickr_id": "344673966", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42669", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were served a coffee with a foam on top .", "storylet_id": "213346"}], [{"original_text": "The decor in the restaurant was a tad odd.", "album_id": "72157594457718293", "photo_flickr_id": "344673546", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42669", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the decor in the restaurant was a tad odd .", "storylet_id": "213347"}], [{"original_text": "Afterwards, we had to walk to the train station.", "album_id": "72157594457718293", "photo_flickr_id": "344673359", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42669", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards , we had to walk to the train station .", "storylet_id": "213348"}], [{"original_text": "We had just missed the train, so we had to wait for the next one to arrive.", "album_id": "72157594457718293", "photo_flickr_id": "344673815", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42669", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had just missed the train , so we had to wait for the next one to arrive .", "storylet_id": "213349"}], [{"original_text": "Phil takes his cat time seriously and decided Maggie needed some petting.", "album_id": "72157623008608029", "photo_flickr_id": "4242257549", "setting": "first-2-pick-and-tell", "worker_id": "7AS5MF0R1479V76", "story_id": "42670", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] takes his cat time seriously and decided [female] needed some petting .", "storylet_id": "213350"}], [{"original_text": "Maggie later opted to take a nap while the party raged.", "album_id": "72157623008608029", "photo_flickr_id": "4243031558", "setting": "first-2-pick-and-tell", "worker_id": "7AS5MF0R1479V76", "story_id": "42670", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] later opted to take a nap while the party raged .", "storylet_id": "213351"}], [{"original_text": "Simone in full party mode attempted to have a conversation with the lamp shade.", "album_id": "72157623008608029", "photo_flickr_id": "4242261171", "setting": "first-2-pick-and-tell", "worker_id": "7AS5MF0R1479V76", "story_id": "42670", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] in full party mode attempted to have a conversation with the lamp shade .", "storylet_id": "213352"}], [{"original_text": "Jackie continued the trend but seemed to disagree with everything the lamp said.", "album_id": "72157623008608029", "photo_flickr_id": "4243035896", "setting": "first-2-pick-and-tell", "worker_id": "7AS5MF0R1479V76", "story_id": "42670", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] continued the trend but seemed to disagree with everything the lamp said .", "storylet_id": "213353"}], [{"original_text": "All in all everybody had a great end of semester party hanging out and toasting the end of the school year. ", "album_id": "72157623008608029", "photo_flickr_id": "4242267691", "setting": "first-2-pick-and-tell", "worker_id": "7AS5MF0R1479V76", "story_id": "42670", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all in all everybody had a great end of semester party hanging out and toasting the end of the school year .", "storylet_id": "213354"}], [{"original_text": "Hi, I'm Pat. I had a Christmas party. Here I am opening a gift my friends got me.", "album_id": "72157623008608029", "photo_flickr_id": "4242259699", "setting": "first-2-pick-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "42671", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hi , i 'm [female] . i had a christmas party . here i am opening a gift my friends got me .", "storylet_id": "213355"}], [{"original_text": "I am so happy. It's a lamp with unicorns on it. I LOVE unicorns!", "album_id": "72157623008608029", "photo_flickr_id": "4242261171", "setting": "first-2-pick-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "42671", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i am so happy . it 's a lamp with unicorns on it . i love unicorns !", "storylet_id": "213356"}], [{"original_text": "Amy put it together, I was too excited. Amy thinks the lamp is awesome. Me too.", "album_id": "72157623008608029", "photo_flickr_id": "4243035896", "setting": "first-2-pick-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "42671", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] put it together , i was too excited . [female] thinks the lamp is awesome . me too .", "storylet_id": "213357"}], [{"original_text": "I got a yummy cake to share with my friends. Looks like Ed wants a slice.", "album_id": "72157623008608029", "photo_flickr_id": "4242266897", "setting": "first-2-pick-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "42671", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i got a yummy cake to share with my friends . looks like [male] wants a slice .", "storylet_id": "213358"}], [{"original_text": "Amy and Ed are my best friends. They made my party really rock. I'm lucky to have such great buddies.", "album_id": "72157623008608029", "photo_flickr_id": "4243041872", "setting": "first-2-pick-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "42671", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] and [male] are my best friends . they made my party really rock . i 'm lucky to have such great buddies .", "storylet_id": "213359"}], [{"original_text": "They opened gifts for christmas.", "album_id": "72157623008608029", "photo_flickr_id": "4242259699", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42672", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they opened gifts for christmas .", "storylet_id": "213360"}], [{"original_text": "She got a lampshade.", "album_id": "72157623008608029", "photo_flickr_id": "4242261171", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42672", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she got a lampshade .", "storylet_id": "213361"}], [{"original_text": "Her friend took a silly picture with the shade.", "album_id": "72157623008608029", "photo_flickr_id": "4243035896", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42672", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her friend took a silly picture with the shade .", "storylet_id": "213362"}], [{"original_text": "They blew out the candles on a cake.", "album_id": "72157623008608029", "photo_flickr_id": "4242266897", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42672", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they blew out the candles on a cake .", "storylet_id": "213363"}], [{"original_text": "They took a picture together during the party. ", "album_id": "72157623008608029", "photo_flickr_id": "4243041872", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42672", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they took a picture together during the party .", "storylet_id": "213364"}], [{"original_text": "The house was decorated for the holiday party.", "album_id": "72157623008608029", "photo_flickr_id": "4242259699", "setting": "last-3-pick-old-and-tell", "worker_id": "ZY0NVK92KN2WGWY", "story_id": "42673", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the house was decorated for the holiday party .", "storylet_id": "213365"}], [{"original_text": "Sometimes presents come \"assembly required.\"", "album_id": "72157623008608029", "photo_flickr_id": "4242261171", "setting": "last-3-pick-old-and-tell", "worker_id": "ZY0NVK92KN2WGWY", "story_id": "42673", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sometimes presents come `` assembly required . ''", "storylet_id": "213366"}], [{"original_text": "I think my friend mistook the lamp for a Popsicle.", "album_id": "72157623008608029", "photo_flickr_id": "4243035896", "setting": "last-3-pick-old-and-tell", "worker_id": "ZY0NVK92KN2WGWY", "story_id": "42673", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i think my friend mistook the lamp for a popsicle .", "storylet_id": "213367"}], [{"original_text": "Luckily, there was real food to eat.", "album_id": "72157623008608029", "photo_flickr_id": "4242266897", "setting": "last-3-pick-old-and-tell", "worker_id": "ZY0NVK92KN2WGWY", "story_id": "42673", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "luckily , there was real food to eat .", "storylet_id": "213368"}], [{"original_text": "It was great to spend time together. ", "album_id": "72157623008608029", "photo_flickr_id": "4243041872", "setting": "last-3-pick-old-and-tell", "worker_id": "ZY0NVK92KN2WGWY", "story_id": "42673", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was great to spend time together .", "storylet_id": "213369"}], [{"original_text": "Even as the party raged, the cat watched over the house, making sure things didn't get too out of hand.", "album_id": "72157623008608029", "photo_flickr_id": "4242257549", "setting": "last-3-pick-old-and-tell", "worker_id": "QALVZGNDGOEA0B2", "story_id": "42674", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "even as the party raged , the cat watched over the house , making sure things did n't get too out of hand .", "storylet_id": "213370"}], [{"original_text": "But, eventually, the cat got tired and fell asleep.", "album_id": "72157623008608029", "photo_flickr_id": "4243031558", "setting": "last-3-pick-old-and-tell", "worker_id": "QALVZGNDGOEA0B2", "story_id": "42674", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but , eventually , the cat got tired and fell asleep .", "storylet_id": "213371"}], [{"original_text": "That's when The avid partiers knocked the cat's favroite lamp off of the table.", "album_id": "72157623008608029", "photo_flickr_id": "4242261171", "setting": "last-3-pick-old-and-tell", "worker_id": "QALVZGNDGOEA0B2", "story_id": "42674", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that 's when the avid partiers knocked the cat 's favroite lamp off of the table .", "storylet_id": "213372"}], [{"original_text": "One over imbibed partier began to use it as a microphone to sing hardcore music into.", "album_id": "72157623008608029", "photo_flickr_id": "4243035896", "setting": "last-3-pick-old-and-tell", "worker_id": "QALVZGNDGOEA0B2", "story_id": "42674", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one over imbibed partier began to use it as a microphone to sing hardcore music into .", "storylet_id": "213373"}], [{"original_text": "The other partiers didn't want her to feel bad, so they pretended to be amused.", "album_id": "72157623008608029", "photo_flickr_id": "4242267691", "setting": "last-3-pick-old-and-tell", "worker_id": "QALVZGNDGOEA0B2", "story_id": "42674", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the other partiers did n't want her to feel bad , so they pretended to be amused .", "storylet_id": "213374"}], [{"original_text": "Party time! All the kids got together for a great experience at the Candy Bar, including little Joey.", "album_id": "72157623009191443", "photo_flickr_id": "4243542038", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "42675", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "party time ! all the kids got together for a great experience at the location location , including little [male] .", "storylet_id": "213375"}], [{"original_text": "First Joey helped some older boys play an arcade game.", "album_id": "72157623009191443", "photo_flickr_id": "4242933913", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "42675", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first [male] helped some older boys play an arcade game .", "storylet_id": "213376"}], [{"original_text": "Then he watched some sports from a glass panel.", "album_id": "72157623009191443", "photo_flickr_id": "4243709116", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "42675", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then he watched some sports from a glass panel .", "storylet_id": "213377"}], [{"original_text": "Back at the party, he walked the multi-colored road.", "album_id": "72157623009191443", "photo_flickr_id": "4243434866", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "42675", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "back at the party , he walked the multi-colored road .", "storylet_id": "213378"}], [{"original_text": "Finally, he was rewarded with cotton candy!", "album_id": "72157623009191443", "photo_flickr_id": "4242766867", "setting": "first-2-pick-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "42675", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , he was rewarded with cotton candy !", "storylet_id": "213379"}], [{"original_text": "At the arcade birthday party everyone was having fun.", "album_id": "72157623009191443", "photo_flickr_id": "4242663585", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "42676", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the arcade birthday party everyone was having fun .", "storylet_id": "213380"}], [{"original_text": "The birthday boy almost ate the place out of food.", "album_id": "72157623009191443", "photo_flickr_id": "4243540958", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "42676", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the birthday boy almost ate the place out of food .", "storylet_id": "213381"}], [{"original_text": "There were plenty of sweets for all the kids.", "album_id": "72157623009191443", "photo_flickr_id": "4243544548", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "42676", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were plenty of sweets for all the kids .", "storylet_id": "213382"}], [{"original_text": "The cotton candy was bigger than the birthday boys head.", "album_id": "72157623009191443", "photo_flickr_id": "4242766867", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "42676", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cotton candy was bigger than the birthday boys head .", "storylet_id": "213383"}], [{"original_text": "His father played one last game with him before they went home.", "album_id": "72157623009191443", "photo_flickr_id": "4242932477", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "42676", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his father played one last game with him before they went home .", "storylet_id": "213384"}], [{"original_text": "Aedyns Brithday at the arcade the candy bar was a hit ", "album_id": "72157623009191443", "photo_flickr_id": "4243542038", "setting": "last-3-pick-old-and-tell", "worker_id": "4CVQNGTL3R4O0CY", "story_id": "42677", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "aedyns brithday at the arcade the candy bar was a hit", "storylet_id": "213385"}], [{"original_text": "Aedyn trying to win enough tickets for a cool prize with dad", "album_id": "72157623009191443", "photo_flickr_id": "4242933913", "setting": "last-3-pick-old-and-tell", "worker_id": "4CVQNGTL3R4O0CY", "story_id": "42677", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "aedyn trying to win enough tickets for a cool prize with dad", "storylet_id": "213386"}], [{"original_text": "aedyn awing at the indoor soccer field ", "album_id": "72157623009191443", "photo_flickr_id": "4243709116", "setting": "last-3-pick-old-and-tell", "worker_id": "4CVQNGTL3R4O0CY", "story_id": "42677", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "aedyn awing at the indoor soccer field", "storylet_id": "213387"}], [{"original_text": "follow the rainbow road to happiness on your birthday aedyn", "album_id": "72157623009191443", "photo_flickr_id": "4243434866", "setting": "last-3-pick-old-and-tell", "worker_id": "4CVQNGTL3R4O0CY", "story_id": "42677", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "follow the rainbow road to happiness on your birthday aedyn", "storylet_id": "213388"}], [{"original_text": "Cotton candy munching was delicious ", "album_id": "72157623009191443", "photo_flickr_id": "4242766867", "setting": "last-3-pick-old-and-tell", "worker_id": "4CVQNGTL3R4O0CY", "story_id": "42677", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "cotton candy munching was delicious", "storylet_id": "213389"}], [{"original_text": "While celebrating a birthday, I spot a candy bar full of candy on the table", "album_id": "72157623009191443", "photo_flickr_id": "4243542038", "setting": "last-3-pick-old-and-tell", "worker_id": "0S3AW5X8F25O4LV", "story_id": "42678", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while celebrating a birthday , i spot a candy bar full of candy on the table", "storylet_id": "213390"}], [{"original_text": "The three boys play a fun arcade game at the arcade", "album_id": "72157623009191443", "photo_flickr_id": "4242933913", "setting": "last-3-pick-old-and-tell", "worker_id": "0S3AW5X8F25O4LV", "story_id": "42678", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the three boys play a fun arcade game at the arcade", "storylet_id": "213391"}], [{"original_text": "The little boy watches a group of guys play indoor soccer.", "album_id": "72157623009191443", "photo_flickr_id": "4243709116", "setting": "last-3-pick-old-and-tell", "worker_id": "0S3AW5X8F25O4LV", "story_id": "42678", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the little boy watches a group of guys play indoor soccer .", "storylet_id": "213392"}], [{"original_text": "A boy and a girl walk along the colorful paper create paths.", "album_id": "72157623009191443", "photo_flickr_id": "4243434866", "setting": "last-3-pick-old-and-tell", "worker_id": "0S3AW5X8F25O4LV", "story_id": "42678", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a boy and a girl walk along the colorful paper create paths .", "storylet_id": "213393"}], [{"original_text": "The boy receives cotton candy and happily eats it.", "album_id": "72157623009191443", "photo_flickr_id": "4242766867", "setting": "last-3-pick-old-and-tell", "worker_id": "0S3AW5X8F25O4LV", "story_id": "42678", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boy receives cotton candy and happily eats it .", "storylet_id": "213394"}], [{"original_text": "Everyone had fun at the fair.", "album_id": "72157623009191443", "photo_flickr_id": "4243542038", "setting": "last-3-pick-old-and-tell", "worker_id": "ZY0NVK92KN2WGWY", "story_id": "42679", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone had fun at the fair .", "storylet_id": "213395"}], [{"original_text": "The kids played video games.", "album_id": "72157623009191443", "photo_flickr_id": "4242933913", "setting": "last-3-pick-old-and-tell", "worker_id": "ZY0NVK92KN2WGWY", "story_id": "42679", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids played video games .", "storylet_id": "213396"}], [{"original_text": "This little guy loved to watch the athletes.", "album_id": "72157623009191443", "photo_flickr_id": "4243709116", "setting": "last-3-pick-old-and-tell", "worker_id": "ZY0NVK92KN2WGWY", "story_id": "42679", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this little guy loved to watch the athletes .", "storylet_id": "213397"}], [{"original_text": "There was a real life version of Candyland.", "album_id": "72157623009191443", "photo_flickr_id": "4243434866", "setting": "last-3-pick-old-and-tell", "worker_id": "ZY0NVK92KN2WGWY", "story_id": "42679", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a real life version of candyland .", "storylet_id": "213398"}], [{"original_text": "Complete with pink cotton candy at the end! ", "album_id": "72157623009191443", "photo_flickr_id": "4242766867", "setting": "last-3-pick-old-and-tell", "worker_id": "ZY0NVK92KN2WGWY", "story_id": "42679", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "complete with pink cotton candy at the end !", "storylet_id": "213399"}], [{"original_text": "The whole family was gathered for grandpa's birthday.", "album_id": "72157628695299483", "photo_flickr_id": "6626755231", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "42680", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family was gathered for grandpa 's birthday .", "storylet_id": "213400"}], [{"original_text": "The table was set and everyone was ready.", "album_id": "72157628695299483", "photo_flickr_id": "6626784221", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "42680", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the table was set and everyone was ready .", "storylet_id": "213401"}], [{"original_text": "The cake looked gorgeous on the table.", "album_id": "72157628695299483", "photo_flickr_id": "6626813799", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "42680", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cake looked gorgeous on the table .", "storylet_id": "213402"}], [{"original_text": "Grandpa said a few words then blew out the candles.", "album_id": "72157628695299483", "photo_flickr_id": "6626866387", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "42680", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandpa said a few words then blew out the candles .", "storylet_id": "213403"}], [{"original_text": "He loved that everyone had gotten together just to see him.", "album_id": "72157628695299483", "photo_flickr_id": "6626945373", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "42680", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he loved that everyone had gotten together just to see him .", "storylet_id": "213404"}], [{"original_text": "The family reunites to celebrate grandfather birthday. ", "album_id": "72157628695299483", "photo_flickr_id": "6626755231", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42681", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family reunites to celebrate grandfather birthday .", "storylet_id": "213405"}], [{"original_text": "Making a toast to grandfather. ", "album_id": "72157628695299483", "photo_flickr_id": "6626773815", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42681", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "making a toast to grandfather .", "storylet_id": "213406"}], [{"original_text": "Table is ready for dinner. ", "album_id": "72157628695299483", "photo_flickr_id": "6626784221", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42681", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "table is ready for dinner .", "storylet_id": "213407"}], [{"original_text": "Singing happy birthday to grandfather. ", "album_id": "72157628695299483", "photo_flickr_id": "6626830845", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42681", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "singing happy birthday to grandfather .", "storylet_id": "213408"}], [{"original_text": "Grandmother is helping him blowing off his candles. ", "album_id": "72157628695299483", "photo_flickr_id": "6626848447", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42681", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandmother is helping him blowing off his candles .", "storylet_id": "213409"}], [{"original_text": "The whole family gathers.", "album_id": "72157628695299483", "photo_flickr_id": "6626755231", "setting": "last-3-pick-old-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "42682", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family gathers .", "storylet_id": "213410"}], [{"original_text": "The table is set and the cake is in place.", "album_id": "72157628695299483", "photo_flickr_id": "6626784221", "setting": "last-3-pick-old-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "42682", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the table is set and the cake is in place .", "storylet_id": "213411"}], [{"original_text": "Grandpa is our guest of honor!", "album_id": "72157628695299483", "photo_flickr_id": "6626813799", "setting": "last-3-pick-old-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "42682", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandpa is our guest of honor !", "storylet_id": "213412"}], [{"original_text": "Today is his birthday and we are celebrating with cake and candles.", "album_id": "72157628695299483", "photo_flickr_id": "6626866387", "setting": "last-3-pick-old-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "42682", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "today is his birthday and we are celebrating with cake and candles .", "storylet_id": "213413"}], [{"original_text": "Grandpa gets a kick our of his presents.", "album_id": "72157628695299483", "photo_flickr_id": "6626945373", "setting": "last-3-pick-old-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "42682", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandpa gets a kick our of his presents .", "storylet_id": "213414"}], [{"original_text": "Everyone got together for a celebration of Christmas and grandpa's birthday.", "album_id": "72157628695299483", "photo_flickr_id": "6626755231", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "42683", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone got together for a celebration of christmas and grandpa 's birthday .", "storylet_id": "213415"}], [{"original_text": "The table was all set for Christmas dinner but also had a chocolate birthday cake.", "album_id": "72157628695299483", "photo_flickr_id": "6626784221", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "42683", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the table was all set for christmas dinner but also had a chocolate birthday cake .", "storylet_id": "213416"}], [{"original_text": "Grandpa sat at the head of the table for the celebration.", "album_id": "72157628695299483", "photo_flickr_id": "6626813799", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "42683", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandpa sat at the head of the table for the celebration .", "storylet_id": "213417"}], [{"original_text": "He quickly blew out the candles on his cake.", "album_id": "72157628695299483", "photo_flickr_id": "6626866387", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "42683", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he quickly blew out the candles on his cake .", "storylet_id": "213418"}], [{"original_text": "Even though it was his birthday, Grandpa handed out presents.", "album_id": "72157628695299483", "photo_flickr_id": "6626945373", "setting": "last-3-pick-old-and-tell", "worker_id": "FSL2FDFOF90X60J", "story_id": "42683", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even though it was his birthday , grandpa handed out presents .", "storylet_id": "213419"}], [{"original_text": "Great to have the family around ", "album_id": "72157628695299483", "photo_flickr_id": "6626755231", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "42684", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "great to have the family around", "storylet_id": "213420"}], [{"original_text": "the table setting is beautiful ", "album_id": "72157628695299483", "photo_flickr_id": "6626784221", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "42684", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the table setting is beautiful", "storylet_id": "213421"}], [{"original_text": "Can I have my cake already?", "album_id": "72157628695299483", "photo_flickr_id": "6626813799", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "42684", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "can i have my cake already ?", "storylet_id": "213422"}], [{"original_text": "One, two, three blow!", "album_id": "72157628695299483", "photo_flickr_id": "6626866387", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "42684", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one , two , three blow !", "storylet_id": "213423"}], [{"original_text": "time to open the gifts!", "album_id": "72157628695299483", "photo_flickr_id": "6626945373", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "42684", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time to open the gifts !", "storylet_id": "213424"}], [{"original_text": "I got my gift in the mail today.", "album_id": "72157623637962265", "photo_flickr_id": "4486979075", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42685", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got my gift in the mail today .", "storylet_id": "213425"}], [{"original_text": "I was very excited.", "album_id": "72157623637962265", "photo_flickr_id": "4487630964", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42685", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was very excited .", "storylet_id": "213426"}], [{"original_text": "I could hardly contain myself.", "album_id": "72157623637962265", "photo_flickr_id": "4487631212", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42685", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i could hardly contain myself .", "storylet_id": "213427"}], [{"original_text": "It was very expensive.", "album_id": "72157623637962265", "photo_flickr_id": "4487632202", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42685", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was very expensive .", "storylet_id": "213428"}], [{"original_text": "I plugged it in right away.", "album_id": "72157623637962265", "photo_flickr_id": "4487632408", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42685", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i plugged it in right away .", "storylet_id": "213429"}], [{"original_text": "Received a package in the mail. ", "album_id": "72157623637962265", "photo_flickr_id": "4486978629", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42686", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "received a package in the mail .", "storylet_id": "213430"}], [{"original_text": "She received a birthday present.", "album_id": "72157623637962265", "photo_flickr_id": "4487630542", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42686", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she received a birthday present .", "storylet_id": "213431"}], [{"original_text": "Excited to open it .", "album_id": "72157623637962265", "photo_flickr_id": "4487631212", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42686", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "excited to open it .", "storylet_id": "213432"}], [{"original_text": "It is an iPad. ", "album_id": "72157623637962265", "photo_flickr_id": "4487631404", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42686", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is an ipad .", "storylet_id": "213433"}], [{"original_text": "Setting it up with her iMac. ", "album_id": "72157623637962265", "photo_flickr_id": "4486981549", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42686", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "setting it up with her imac .", "storylet_id": "213434"}], [{"original_text": "It was Tammy's birthday and even Chester had bought a gift.", "album_id": "72157623637962265", "photo_flickr_id": "4486978629", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42687", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was [female] 's birthday and even [male] had bought a gift .", "storylet_id": "213435"}], [{"original_text": "Well, he at least removed it from the bag.", "album_id": "72157623637962265", "photo_flickr_id": "4487630542", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42687", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "well , he at least removed it from the bag .", "storylet_id": "213436"}], [{"original_text": "Tammy quickly opened the box...", "album_id": "72157623637962265", "photo_flickr_id": "4487631212", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42687", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] quickly opened the box ...", "storylet_id": "213437"}], [{"original_text": "It was an IPAD!", "album_id": "72157623637962265", "photo_flickr_id": "4487631404", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42687", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was an ipad !", "storylet_id": "213438"}], [{"original_text": "She quickly synced it with her mac pro and enjoyed for hours.", "album_id": "72157623637962265", "photo_flickr_id": "4486981549", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "42687", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she quickly synced it with her mac pro and enjoyed for hours .", "storylet_id": "213439"}], [{"original_text": "My wife eagerly opened the gift from me for her birthday.", "album_id": "72157623637962265", "photo_flickr_id": "4486979075", "setting": "last-3-pick-old-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "42688", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my wife eagerly opened the gift from me for her birthday .", "storylet_id": "213440"}], [{"original_text": "She knew that I was aware of what she wanted.", "album_id": "72157623637962265", "photo_flickr_id": "4487630964", "setting": "last-3-pick-old-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "42688", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she knew that i was aware of what she wanted .", "storylet_id": "213441"}], [{"original_text": "She could hardly wait to open the box and check it out.", "album_id": "72157623637962265", "photo_flickr_id": "4487631212", "setting": "last-3-pick-old-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "42688", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she could hardly wait to open the box and check it out .", "storylet_id": "213442"}], [{"original_text": "Wow, a brand new Ipad. Just what you want.", "album_id": "72157623637962265", "photo_flickr_id": "4487632202", "setting": "last-3-pick-old-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "42688", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "wow , a brand new ipad . just what you want .", "storylet_id": "213443"}], [{"original_text": "She was excited to get it out of the box and explore all its new features.", "album_id": "72157623637962265", "photo_flickr_id": "4487632408", "setting": "last-3-pick-old-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "42688", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was excited to get it out of the box and explore all its new features .", "storylet_id": "213444"}], [{"original_text": "Guarding the package so mom can open it.", "album_id": "72157623637962265", "photo_flickr_id": "4486978629", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42689", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "guarding the package so mom can open it .", "storylet_id": "213445"}], [{"original_text": "What can it be, what can it be ?", "album_id": "72157623637962265", "photo_flickr_id": "4487630542", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42689", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "what can it be , what can it be ?", "storylet_id": "213446"}], [{"original_text": "Opening the present I'm so excited.", "album_id": "72157623637962265", "photo_flickr_id": "4487631212", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42689", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "opening the present i 'm so excited .", "storylet_id": "213447"}], [{"original_text": "A brand new I pad , just what I wanted.", "album_id": "72157623637962265", "photo_flickr_id": "4487631404", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42689", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a brand new i pad , just what i wanted .", "storylet_id": "213448"}], [{"original_text": "Checking out my new I pad online.", "album_id": "72157623637962265", "photo_flickr_id": "4486981549", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42689", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "checking out my new i pad online .", "storylet_id": "213449"}], [{"original_text": "My friend decided to take a personal shot before the game.", "album_id": "108359", "photo_flickr_id": "4289376", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42690", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend decided to take a personal shot before the game .", "storylet_id": "213450"}], [{"original_text": "Then we plotted how we would play the game together.", "album_id": "108359", "photo_flickr_id": "4287803", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42690", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we plotted how we would play the game together .", "storylet_id": "213451"}], [{"original_text": "My girlfriend brought a gun to the room.", "album_id": "108359", "photo_flickr_id": "4284000", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42690", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my girlfriend brought a gun to the room .", "storylet_id": "213452"}], [{"original_text": "I love this girl for her excitement and dedication.", "album_id": "108359", "photo_flickr_id": "4291045", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42690", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love this girl for her excitement and dedication .", "storylet_id": "213453"}], [{"original_text": "We ate some fast food for dinner.", "album_id": "108359", "photo_flickr_id": "4291961", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42690", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ate some fast food for dinner .", "storylet_id": "213454"}], [{"original_text": "Katie had found marks gun stash.", "album_id": "108359", "photo_flickr_id": "4284000", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42691", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] had found marks gun stash .", "storylet_id": "213455"}], [{"original_text": "Brittany told Katie she should confront mark about it", "album_id": "108359", "photo_flickr_id": "4288164", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42691", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] told [female] she should confront mark about it", "storylet_id": "213456"}], [{"original_text": "Unfortunately Mark had different plans. As he and Brittany were in love.", "album_id": "108359", "photo_flickr_id": "4284052", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42691", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "unfortunately [male] had different plans . as he and [female] were in love .", "storylet_id": "213457"}], [{"original_text": "Mark wasn't regretful for what he did. He would run away with Brittany and live happily.", "album_id": "108359", "photo_flickr_id": "4291094", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42691", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was n't regretful for what he did . he would run away with [female] and live happily .", "storylet_id": "213458"}], [{"original_text": "This was Mark moments before the police got to him. It seems Brittany wanted them both gone.", "album_id": "108359", "photo_flickr_id": "4289376", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42691", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was [male] moments before the police got to him . it seems [female] wanted them both gone .", "storylet_id": "213459"}], [{"original_text": "Nobody better mess with her as she displays her favorite gift. ", "album_id": "108359", "photo_flickr_id": "4284000", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42692", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "nobody better mess with her as she displays her favorite gift .", "storylet_id": "213460"}], [{"original_text": "These ladies have a lot of fun shopping for tonight's gathering. ", "album_id": "108359", "photo_flickr_id": "4288164", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42692", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these ladies have a lot of fun shopping for tonight 's gathering .", "storylet_id": "213461"}], [{"original_text": "You better watch out as he has you in his sights. ", "album_id": "108359", "photo_flickr_id": "4284052", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42692", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you better watch out as he has you in his sights .", "storylet_id": "213462"}], [{"original_text": "He smiles on happily as he arrives at the big party. ", "album_id": "108359", "photo_flickr_id": "4291094", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42692", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he smiles on happily as he arrives at the big party .", "storylet_id": "213463"}], [{"original_text": "His amusement is apparent as he looks on at the party. ", "album_id": "108359", "photo_flickr_id": "4289376", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42692", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his amusement is apparent as he looks on at the party .", "storylet_id": "213464"}], [{"original_text": "Paul had a great idea for a movie to make with some friends.", "album_id": "108359", "photo_flickr_id": "4289376", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "42693", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] had a great idea for a movie to make with some friends .", "storylet_id": "213465"}], [{"original_text": "The old storage room was the perfect place to film it. They talked about the upcoming scenes and worked on the dialog.", "album_id": "108359", "photo_flickr_id": "4287803", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "42693", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the old storage room was the perfect place to film it . they talked about the upcoming scenes and worked on the dialog .", "storylet_id": "213466"}], [{"original_text": "Jennifer played the rebel leader, and she was amazing!", "album_id": "108359", "photo_flickr_id": "4284000", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "42693", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] played the rebel leader , and she was amazing !", "storylet_id": "213467"}], [{"original_text": "After filming the last scene, everyone was excited to get together to eat cake and watch the movie.", "album_id": "108359", "photo_flickr_id": "4291045", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "42693", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after filming the last scene , everyone was excited to get together to eat cake and watch the movie .", "storylet_id": "213468"}], [{"original_text": "The whole cast had secretly chipped in to buy Paul a present -- he was really surprised!", "album_id": "108359", "photo_flickr_id": "4291961", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "42693", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the whole cast had secretly chipped in to buy [male] a present -- he was really surprised !", "storylet_id": "213469"}], [{"original_text": "This party was packed but I was all alone.", "album_id": "108359", "photo_flickr_id": "4289376", "setting": "last-3-pick-old-and-tell", "worker_id": "5RCNZO7WNSMIL44", "story_id": "42694", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this party was packed but i was all alone .", "storylet_id": "213470"}], [{"original_text": "The guys were talking about the latest game that came out.", "album_id": "108359", "photo_flickr_id": "4287803", "setting": "last-3-pick-old-and-tell", "worker_id": "5RCNZO7WNSMIL44", "story_id": "42694", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guys were talking about the latest game that came out .", "storylet_id": "213471"}], [{"original_text": "Elsewhere in the party, a friend was playing with the airsoft guns.", "album_id": "108359", "photo_flickr_id": "4284000", "setting": "last-3-pick-old-and-tell", "worker_id": "5RCNZO7WNSMIL44", "story_id": "42694", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "elsewhere in the party , a friend was playing with the airsoft guns .", "storylet_id": "213472"}], [{"original_text": "Outside the party, people were posing for pictures.", "album_id": "108359", "photo_flickr_id": "4291045", "setting": "last-3-pick-old-and-tell", "worker_id": "5RCNZO7WNSMIL44", "story_id": "42694", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "outside the party , people were posing for pictures .", "storylet_id": "213473"}], [{"original_text": "I went inside and found that people were making crafts.", "album_id": "108359", "photo_flickr_id": "4291961", "setting": "last-3-pick-old-and-tell", "worker_id": "5RCNZO7WNSMIL44", "story_id": "42694", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i went inside and found that people were making crafts .", "storylet_id": "213474"}], [{"original_text": "Friends decorated and got together to see a display at an art gallery.", "album_id": "72157623557127596", "photo_flickr_id": "4408004196", "setting": "first-2-pick-and-tell", "worker_id": "4SC5TPKL1L9T6NG", "story_id": "42695", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends decorated and got together to see a display at an art gallery .", "storylet_id": "213475"}], [{"original_text": "People walked along to see the paintings.", "album_id": "72157623557127596", "photo_flickr_id": "4407237339", "setting": "first-2-pick-and-tell", "worker_id": "4SC5TPKL1L9T6NG", "story_id": "42695", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people walked along to see the paintings .", "storylet_id": "213476"}], [{"original_text": "Some of the paintings were very colorful.", "album_id": "72157623557127596", "photo_flickr_id": "4407237843", "setting": "first-2-pick-and-tell", "worker_id": "4SC5TPKL1L9T6NG", "story_id": "42695", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the paintings were very colorful .", "storylet_id": "213477"}], [{"original_text": "Afterwards there were refreshments including some artistic cupcakes.", "album_id": "72157623557127596", "photo_flickr_id": "4408004040", "setting": "first-2-pick-and-tell", "worker_id": "4SC5TPKL1L9T6NG", "story_id": "42695", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards there were refreshments including some artistic cupcakes .", "storylet_id": "213478"}], [{"original_text": "The friends ate, drank, and talked about the paintings they had seen.", "album_id": "72157623557127596", "photo_flickr_id": "4407237513", "setting": "first-2-pick-and-tell", "worker_id": "4SC5TPKL1L9T6NG", "story_id": "42695", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the friends ate , drank , and talked about the paintings they had seen .", "storylet_id": "213479"}], [{"original_text": "Today I went to an art showing at our local college.", "album_id": "72157623557127596", "photo_flickr_id": "4407237339", "setting": "first-2-pick-and-tell", "worker_id": "WT6A5VPAO2EZN4L", "story_id": "42696", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i went to an art showing at our local college .", "storylet_id": "213480"}], [{"original_text": "There were artists with paintings displayed and others that were creating art in front of the visitors.", "album_id": "72157623557127596", "photo_flickr_id": "4407237619", "setting": "first-2-pick-and-tell", "worker_id": "WT6A5VPAO2EZN4L", "story_id": "42696", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were artists with paintings displayed and others that were creating art in front of the visitors .", "storylet_id": "213481"}], [{"original_text": "This woman created balloon creatures and figures that were quite impressive.", "album_id": "72157623557127596", "photo_flickr_id": "4407237715", "setting": "first-2-pick-and-tell", "worker_id": "WT6A5VPAO2EZN4L", "story_id": "42696", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this woman created balloon creatures and figures that were quite impressive .", "storylet_id": "213482"}], [{"original_text": "Many of the paintings were by new students trying to make a name for themselves. They served food and refreshments to those of us browsing to keep our interest.", "album_id": "72157623557127596", "photo_flickr_id": "4407237843", "setting": "first-2-pick-and-tell", "worker_id": "WT6A5VPAO2EZN4L", "story_id": "42696", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many of the paintings were by new students trying to make a name for themselves . they served food and refreshments to those of us browsing to keep our interest .", "storylet_id": "213483"}], [{"original_text": "I met many interesting people at the gallery and made a few new friends who shared my art interests.", "album_id": "72157623557127596", "photo_flickr_id": "4407237931", "setting": "first-2-pick-and-tell", "worker_id": "WT6A5VPAO2EZN4L", "story_id": "42696", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i met many interesting people at the gallery and made a few new friends who shared my art interests .", "storylet_id": "213484"}], [{"original_text": "I went to the art gallery last week.", "album_id": "72157623557127596", "photo_flickr_id": "4408004196", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42697", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the art gallery last week .", "storylet_id": "213485"}], [{"original_text": "There were many pieces there.", "album_id": "72157623557127596", "photo_flickr_id": "4407237339", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42697", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many pieces there .", "storylet_id": "213486"}], [{"original_text": "They were all very good.", "album_id": "72157623557127596", "photo_flickr_id": "4407237843", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42697", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were all very good .", "storylet_id": "213487"}], [{"original_text": "Afterward we went to the bar.", "album_id": "72157623557127596", "photo_flickr_id": "4408004040", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42697", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we went to the bar .", "storylet_id": "213488"}], [{"original_text": "We got some food while we were there.", "album_id": "72157623557127596", "photo_flickr_id": "4407237513", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42697", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we got some food while we were there .", "storylet_id": "213489"}], [{"original_text": "Having a party to show my art skills.", "album_id": "72157623557127596", "photo_flickr_id": "4407237339", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42698", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "having a party to show my art skills .", "storylet_id": "213490"}], [{"original_text": "Gonna put up balloons and have some cupcakes. Hope everyone enjoys.", "album_id": "72157623557127596", "photo_flickr_id": "4407237619", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42698", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "gon na put up balloons and have some cupcakes . [female] everyone enjoys .", "storylet_id": "213491"}], [{"original_text": "Here I am tying the last balloon what a busy day.", "album_id": "72157623557127596", "photo_flickr_id": "4407237715", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42698", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here i am tying the last balloon what a busy day .", "storylet_id": "213492"}], [{"original_text": "Hey, he said nice party.", "album_id": "72157623557127596", "photo_flickr_id": "4407237843", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42698", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "hey , he said nice party .", "storylet_id": "213493"}], [{"original_text": "did you see her amazing photography, great work for a beginner.", "album_id": "72157623557127596", "photo_flickr_id": "4407237931", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42698", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "did you see her amazing photography , great work for a beginner .", "storylet_id": "213494"}], [{"original_text": "viewing the pictures of everybody work is the main attraction of this event ", "album_id": "72157623557127596", "photo_flickr_id": "4407237339", "setting": "last-3-pick-old-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "42699", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "viewing the pictures of everybody work is the main attraction of this event", "storylet_id": "213495"}], [{"original_text": "Martha was on the committee of decorations", "album_id": "72157623557127596", "photo_flickr_id": "4407237619", "setting": "last-3-pick-old-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "42699", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] was on the committee of decorations", "storylet_id": "213496"}], [{"original_text": "tying every ballon into knot using her time sparely", "album_id": "72157623557127596", "photo_flickr_id": "4407237715", "setting": "last-3-pick-old-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "42699", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "tying every ballon into knot using her time sparely", "storylet_id": "213497"}], [{"original_text": "everybody enjoying the food and conversation", "album_id": "72157623557127596", "photo_flickr_id": "4407237843", "setting": "last-3-pick-old-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "42699", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everybody enjoying the food and conversation", "storylet_id": "213498"}], [{"original_text": "the event is coming to an end and we are closing certain deals on some special pieces", "album_id": "72157623557127596", "photo_flickr_id": "4407237931", "setting": "last-3-pick-old-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "42699", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the event is coming to an end and we are closing certain deals on some special pieces", "storylet_id": "213499"}], [{"original_text": "It was Lucy's birthday and they were having a party with a lot of her friends. ", "album_id": "55663", "photo_flickr_id": "1924205", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42700", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was [female] 's birthday and they were having a party with a lot of her friends .", "storylet_id": "213500"}], [{"original_text": "She got to pose next to one of her favorite characters. ", "album_id": "55663", "photo_flickr_id": "1927434", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42700", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she got to pose next to one of her favorite characters .", "storylet_id": "213501"}], [{"original_text": "Then played her favorite game of air hockey. ", "album_id": "55663", "photo_flickr_id": "1931120", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42700", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then played her favorite game of air hockey .", "storylet_id": "213502"}], [{"original_text": "The Teletubbies even came to celebrate. ", "album_id": "55663", "photo_flickr_id": "1931159", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42700", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the teletubbies even came to celebrate .", "storylet_id": "213503"}], [{"original_text": "Afterwards they all got to have ice cream and cake. ", "album_id": "55663", "photo_flickr_id": "1923700", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42700", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards they all got to have ice cream and cake .", "storylet_id": "213504"}], [{"original_text": "A birthday celebration was held at Chuck E Cheese.", "album_id": "55663", "photo_flickr_id": "1923700", "setting": "first-2-pick-and-tell", "worker_id": "3O9URTFI8Q71TNJ", "story_id": "42701", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a birthday celebration was held at [male] e cheese .", "storylet_id": "213505"}], [{"original_text": " the birthday child was having fun while the parents were looking on.", "album_id": "55663", "photo_flickr_id": "1923422", "setting": "first-2-pick-and-tell", "worker_id": "3O9URTFI8Q71TNJ", "story_id": "42701", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the birthday child was having fun while the parents were looking on .", "storylet_id": "213506"}], [{"original_text": "The other kids were very happy as well. Getting to ride the rides.", "album_id": "55663", "photo_flickr_id": "1926705", "setting": "first-2-pick-and-tell", "worker_id": "3O9URTFI8Q71TNJ", "story_id": "42701", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the other kids were very happy as well . getting to ride the rides .", "storylet_id": "213507"}], [{"original_text": "A picture with Chuck E Cheese himself was a must.", "album_id": "55663", "photo_flickr_id": "1927434", "setting": "first-2-pick-and-tell", "worker_id": "3O9URTFI8Q71TNJ", "story_id": "42701", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a picture with [male] e cheese himself was a must .", "storylet_id": "213508"}], [{"original_text": "She also needed a picture with her favorite TV stars, the Teletubbies", "album_id": "55663", "photo_flickr_id": "1931159", "setting": "first-2-pick-and-tell", "worker_id": "3O9URTFI8Q71TNJ", "story_id": "42701", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she also needed a picture with her favorite tv stars , the teletubbies", "storylet_id": "213509"}], [{"original_text": "Family having Birthday Party at Fun Palace. ", "album_id": "55663", "photo_flickr_id": "1923700", "setting": "last-3-pick-old-and-tell", "worker_id": "PQUOBRW8WSCVRC7", "story_id": "42702", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family having organization organization at fun palace .", "storylet_id": "213510"}], [{"original_text": "One of the kids at Birthday party riding on merry go round. ", "album_id": "55663", "photo_flickr_id": "1923422", "setting": "last-3-pick-old-and-tell", "worker_id": "PQUOBRW8WSCVRC7", "story_id": "42702", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of the kids at birthday party riding on merry go round .", "storylet_id": "213511"}], [{"original_text": "Another kid at the party look surprised. ", "album_id": "55663", "photo_flickr_id": "1926705", "setting": "last-3-pick-old-and-tell", "worker_id": "PQUOBRW8WSCVRC7", "story_id": "42702", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another kid at the party look surprised .", "storylet_id": "213512"}], [{"original_text": "Birthday girl sitting on fun car to pose for photo at Fun palace. ", "album_id": "55663", "photo_flickr_id": "1927434", "setting": "last-3-pick-old-and-tell", "worker_id": "PQUOBRW8WSCVRC7", "story_id": "42702", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "birthday girl sitting on fun car to pose for photo at fun palace .", "storylet_id": "213513"}], [{"original_text": "Birthday girl ending last fun round with tele tubies.", "album_id": "55663", "photo_flickr_id": "1931159", "setting": "last-3-pick-old-and-tell", "worker_id": "PQUOBRW8WSCVRC7", "story_id": "42702", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "birthday girl ending last fun round with tele tubies .", "storylet_id": "213514"}], [{"original_text": "They brought the girls to Chuck E Cheese", "album_id": "55663", "photo_flickr_id": "1924205", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42703", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they brought the girls to [male] e cheese", "storylet_id": "213515"}], [{"original_text": "They enjoyed the ride with Chucky.", "album_id": "55663", "photo_flickr_id": "1927434", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42703", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they enjoyed the ride with chucky .", "storylet_id": "213516"}], [{"original_text": "Amanda really loved playing air hockey.", "album_id": "55663", "photo_flickr_id": "1931120", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42703", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] really loved playing air hockey .", "storylet_id": "213517"}], [{"original_text": "She wanted a teletubby but the ones she wanted couldn't be bought or moved.", "album_id": "55663", "photo_flickr_id": "1931159", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42703", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she wanted a teletubby but the ones she wanted could n't be bought or moved .", "storylet_id": "213518"}], [{"original_text": "The girls and all their friends ended the day with cake and food.", "album_id": "55663", "photo_flickr_id": "1923700", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42703", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girls and all their friends ended the day with cake and food .", "storylet_id": "213519"}], [{"original_text": "Friends gather to celebrate a birthday.", "album_id": "55663", "photo_flickr_id": "1924205", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42704", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends gather to celebrate a birthday .", "storylet_id": "213520"}], [{"original_text": "Getting a picture taken with Chuck E. Cheese.", "album_id": "55663", "photo_flickr_id": "1927434", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42704", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "getting a picture taken with [male] e. cheese .", "storylet_id": "213521"}], [{"original_text": "A little girl plays air hockey at the party.", "album_id": "55663", "photo_flickr_id": "1931120", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42704", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a little girl plays air hockey at the party .", "storylet_id": "213522"}], [{"original_text": "Meeting the Teletubbies at the birthday party.", "album_id": "55663", "photo_flickr_id": "1931159", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42704", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "meeting the teletubbies at the birthday party .", "storylet_id": "213523"}], [{"original_text": "Cake and ice cream to end the birthday celebration.", "album_id": "55663", "photo_flickr_id": "1923700", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42704", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "cake and ice cream to end the birthday celebration .", "storylet_id": "213524"}], [{"original_text": "We were thrilled to see everyone board the boat at the same time.", "album_id": "72157623368307608", "photo_flickr_id": "4336639468", "setting": "first-2-pick-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42705", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were thrilled to see everyone board the boat at the same time .", "storylet_id": "213525"}], [{"original_text": "It was storytelling at sea that wonderful afternoon.", "album_id": "72157623368307608", "photo_flickr_id": "4336639672", "setting": "first-2-pick-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42705", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was storytelling at sea that wonderful afternoon .", "storylet_id": "213526"}], [{"original_text": "Our youngest guest said it was her first time aboard any kind of boat.", "album_id": "72157623368307608", "photo_flickr_id": "4335893509", "setting": "first-2-pick-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42705", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our youngest guest said it was her first time aboard any kind of boat .", "storylet_id": "213527"}], [{"original_text": "We rekindled old friendships on that beautiful vessel.", "album_id": "72157623368307608", "photo_flickr_id": "4336640144", "setting": "first-2-pick-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42705", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we rekindled old friendships on that beautiful vessel .", "storylet_id": "213528"}], [{"original_text": "It was our first time on a yacht so we didn't know what to expect.", "album_id": "72157623368307608", "photo_flickr_id": "4335893863", "setting": "first-2-pick-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42705", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was our first time on a yacht so we did n't know what to expect .", "storylet_id": "213529"}], [{"original_text": "It was very crowded on the boat, but food always puts people at ease. ", "album_id": "72157623368307608", "photo_flickr_id": "4336639468", "setting": "first-2-pick-and-tell", "worker_id": "U9IZZ01BFH35B2E", "story_id": "42706", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was very crowded on the boat , but food always puts people at ease .", "storylet_id": "213530"}], [{"original_text": "There was plenty of opportunity to talk with the other passengers. ", "album_id": "72157623368307608", "photo_flickr_id": "4336639532", "setting": "first-2-pick-and-tell", "worker_id": "U9IZZ01BFH35B2E", "story_id": "42706", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was plenty of opportunity to talk with the other passengers .", "storylet_id": "213531"}], [{"original_text": "It looks like he needs a refill, where is a waiter when you need him?", "album_id": "72157623368307608", "photo_flickr_id": "4336639756", "setting": "first-2-pick-and-tell", "worker_id": "U9IZZ01BFH35B2E", "story_id": "42706", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it looks like he needs a refill , where is a waiter when you need him ?", "storylet_id": "213532"}], [{"original_text": "The deck of the boat makes for a great spot to take family pictures. ", "album_id": "72157623368307608", "photo_flickr_id": "4335893509", "setting": "first-2-pick-and-tell", "worker_id": "U9IZZ01BFH35B2E", "story_id": "42706", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the deck of the boat makes for a great spot to take family pictures .", "storylet_id": "213533"}], [{"original_text": "Here is a view of the boat from the outside, very nice!", "album_id": "72157623368307608", "photo_flickr_id": "4336640240", "setting": "first-2-pick-and-tell", "worker_id": "U9IZZ01BFH35B2E", "story_id": "42706", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is a view of the boat from the outside , very nice !", "storylet_id": "213534"}], [{"original_text": "We met on deck for a lovely brunch.", "album_id": "72157623368307608", "photo_flickr_id": "4336639468", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42707", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we met on deck for a lovely brunch .", "storylet_id": "213535"}], [{"original_text": "Many of my business partners were there discussing golf.", "album_id": "72157623368307608", "photo_flickr_id": "4336639672", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42707", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of my business partners were there discussing golf .", "storylet_id": "213536"}], [{"original_text": "We took several pictures in celebration.", "album_id": "72157623368307608", "photo_flickr_id": "4335893509", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42707", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took several pictures in celebration .", "storylet_id": "213537"}], [{"original_text": "My two mentors were there and happy.", "album_id": "72157623368307608", "photo_flickr_id": "4336640144", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42707", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my two mentors were there and happy .", "storylet_id": "213538"}], [{"original_text": "The boat had never left the dock!", "album_id": "72157623368307608", "photo_flickr_id": "4335893863", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42707", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boat had never left the dock !", "storylet_id": "213539"}], [{"original_text": "The boat party was just what the Robbin's family needed. ", "album_id": "72157623368307608", "photo_flickr_id": "4336639468", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42708", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boat party was just what the [female] 's family needed .", "storylet_id": "213540"}], [{"original_text": "The elderly men gathered in the corner to talk. ", "album_id": "72157623368307608", "photo_flickr_id": "4336639532", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42708", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the elderly men gathered in the corner to talk .", "storylet_id": "213541"}], [{"original_text": "Mr. Rodriguez sat in the corner alone for a while until his wife showed up. ", "album_id": "72157623368307608", "photo_flickr_id": "4336639756", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42708", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mr. rodriguez sat in the corner alone for a while until his wife showed up .", "storylet_id": "213542"}], [{"original_text": "His wife Suzanne brought their daughter and they had fun. ", "album_id": "72157623368307608", "photo_flickr_id": "4335893509", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42708", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his wife [female] brought their daughter and they had fun .", "storylet_id": "213543"}], [{"original_text": "I took a picture of the exterior of the boat just for memory's sake. ", "album_id": "72157623368307608", "photo_flickr_id": "4336640240", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42708", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i took a picture of the exterior of the boat just for memory 's sake .", "storylet_id": "213544"}], [{"original_text": "A group of friends getting together before setting sail.", "album_id": "72157623368307608", "photo_flickr_id": "4336639468", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42709", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends getting together before setting sail .", "storylet_id": "213545"}], [{"original_text": "All of us sitting down and have a few laughs and sharing stories.", "album_id": "72157623368307608", "photo_flickr_id": "4336639672", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42709", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of us sitting down and have a few laughs and sharing stories .", "storylet_id": "213546"}], [{"original_text": "Having our picture taken to remember the fun party we had.", "album_id": "72157623368307608", "photo_flickr_id": "4335893509", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42709", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "having our picture taken to remember the fun party we had .", "storylet_id": "213547"}], [{"original_text": "A couple of old friends getting together to discuss memories.", "album_id": "72157623368307608", "photo_flickr_id": "4336640144", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42709", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a couple of old friends getting together to discuss memories .", "storylet_id": "213548"}], [{"original_text": "This is our boat docked at the end of the party.", "album_id": "72157623368307608", "photo_flickr_id": "4335893863", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42709", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is our boat docked at the end of the party .", "storylet_id": "213549"}], [{"original_text": "The girl is happy and surprised to see many familiar faces in her house.", "album_id": "72157623570949068", "photo_flickr_id": "4410413261", "setting": "first-2-pick-and-tell", "worker_id": "RTLKJC8AK710RE2", "story_id": "42710", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girl is happy and surprised to see many familiar faces in her house .", "storylet_id": "213550"}], [{"original_text": "Grandma surprises grandchild with a brand new book.", "album_id": "72157623570949068", "photo_flickr_id": "4410415989", "setting": "first-2-pick-and-tell", "worker_id": "RTLKJC8AK710RE2", "story_id": "42710", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma surprises grandchild with a brand new book .", "storylet_id": "213551"}], [{"original_text": "Afterward, they decided to take a group picture before they get to the surprising event.", "album_id": "72157623570949068", "photo_flickr_id": "4411955553", "setting": "first-2-pick-and-tell", "worker_id": "RTLKJC8AK710RE2", "story_id": "42710", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterward , they decided to take a group picture before they get to the surprising event .", "storylet_id": "213552"}], [{"original_text": "Overwhelmed with all these new presents and gifts.", "album_id": "72157623570949068", "photo_flickr_id": "4411929333", "setting": "first-2-pick-and-tell", "worker_id": "RTLKJC8AK710RE2", "story_id": "42710", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "overwhelmed with all these new presents and gifts .", "storylet_id": "213553"}], [{"original_text": "She is upset because she was expecting a build-a-bear present.", "album_id": "72157623570949068", "photo_flickr_id": "4415338797", "setting": "first-2-pick-and-tell", "worker_id": "RTLKJC8AK710RE2", "story_id": "42710", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she is upset because she was expecting a build-a-bear present .", "storylet_id": "213554"}], [{"original_text": "My sister had her birthday yesterday.", "album_id": "72157623570949068", "photo_flickr_id": "4410413261", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42711", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister had her birthday yesterday .", "storylet_id": "213555"}], [{"original_text": "The whole family came over.", "album_id": "72157623570949068", "photo_flickr_id": "4411955553", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42711", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the whole family came over .", "storylet_id": "213556"}], [{"original_text": "We had a big cake.", "album_id": "72157623570949068", "photo_flickr_id": "4411934793", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42711", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a big cake .", "storylet_id": "213557"}], [{"original_text": "She got lots of presents.", "album_id": "72157623570949068", "photo_flickr_id": "4411929333", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42711", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she got lots of presents .", "storylet_id": "213558"}], [{"original_text": "We had fun celebrating her birthday.", "album_id": "72157623570949068", "photo_flickr_id": "4415338797", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42711", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had fun celebrating her birthday .", "storylet_id": "213559"}], [{"original_text": "I had a great time yesterday.", "album_id": "72157623570949068", "photo_flickr_id": "4410413261", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42712", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time yesterday .", "storylet_id": "213560"}], [{"original_text": "I read a book.", "album_id": "72157623570949068", "photo_flickr_id": "4410415989", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42712", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i read a book .", "storylet_id": "213561"}], [{"original_text": "I got to hang out with my family.", "album_id": "72157623570949068", "photo_flickr_id": "4411955553", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42712", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got to hang out with my family .", "storylet_id": "213562"}], [{"original_text": "I also got a lot of new toys.", "album_id": "72157623570949068", "photo_flickr_id": "4411929333", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42712", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also got a lot of new toys .", "storylet_id": "213563"}], [{"original_text": "It was a good day.", "album_id": "72157623570949068", "photo_flickr_id": "4415338797", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42712", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a good day .", "storylet_id": "213564"}], [{"original_text": "Today is Megan's birthday!", "album_id": "72157623570949068", "photo_flickr_id": "4410413261", "setting": "last-3-pick-old-and-tell", "worker_id": "IGGJR5B7XYTQRTV", "story_id": "42713", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is [female] 's birthday !", "storylet_id": "213565"}], [{"original_text": "Her family came over to celebrate with her.", "album_id": "72157623570949068", "photo_flickr_id": "4411955553", "setting": "last-3-pick-old-and-tell", "worker_id": "IGGJR5B7XYTQRTV", "story_id": "42713", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her family came over to celebrate with her .", "storylet_id": "213566"}], [{"original_text": "Everyone had some delicious and colorful cake.", "album_id": "72157623570949068", "photo_flickr_id": "4411934793", "setting": "last-3-pick-old-and-tell", "worker_id": "IGGJR5B7XYTQRTV", "story_id": "42713", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone had some delicious and colorful cake .", "storylet_id": "213567"}], [{"original_text": "Megan opened some presents and enjoyed her new toys.", "album_id": "72157623570949068", "photo_flickr_id": "4411929333", "setting": "last-3-pick-old-and-tell", "worker_id": "IGGJR5B7XYTQRTV", "story_id": "42713", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] opened some presents and enjoyed her new toys .", "storylet_id": "213568"}], [{"original_text": "She played outside with her family.", "album_id": "72157623570949068", "photo_flickr_id": "4415338797", "setting": "last-3-pick-old-and-tell", "worker_id": "IGGJR5B7XYTQRTV", "story_id": "42713", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she played outside with her family .", "storylet_id": "213569"}], [{"original_text": "Gabrielle was so taken with the new puppy.", "album_id": "72157623570949068", "photo_flickr_id": "4410413261", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "42714", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was so taken with the new puppy .", "storylet_id": "213570"}], [{"original_text": "Grandma reads a story to Gabrielle.", "album_id": "72157623570949068", "photo_flickr_id": "4410415989", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "42714", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma reads a story to [female] .", "storylet_id": "213571"}], [{"original_text": "Dad, Mom and Harry pose with the little darling.", "album_id": "72157623570949068", "photo_flickr_id": "4411955553", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "42714", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad , mom and [male] pose with the little darling .", "storylet_id": "213572"}], [{"original_text": "Gabrielle plays with her new toys.", "album_id": "72157623570949068", "photo_flickr_id": "4411929333", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "42714", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] plays with her new toys .", "storylet_id": "213573"}], [{"original_text": "Gabrielle waits for the puppy to come back with her toy.", "album_id": "72157623570949068", "photo_flickr_id": "4415338797", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "42714", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] waits for the puppy to come back with her toy .", "storylet_id": "213574"}], [{"original_text": "Today was my, my mom and brothers birthday.We had a party with one another.", "album_id": "72157623443117787", "photo_flickr_id": "4411405587", "setting": "first-2-pick-and-tell", "worker_id": "E1143BPUW0BB1WH", "story_id": "42715", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was my , my mom and brothers birthday.we had a party with one another .", "storylet_id": "213575"}], [{"original_text": "I surprised my mom and brother by celebrating their birthdays with mine.", "album_id": "72157623443117787", "photo_flickr_id": "4412172972", "setting": "first-2-pick-and-tell", "worker_id": "E1143BPUW0BB1WH", "story_id": "42715", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i surprised my mom and brother by celebrating their birthdays with mine .", "storylet_id": "213576"}], [{"original_text": "We set a nice table to eat dinner with each other.We even drank some fancy wine.", "album_id": "72157623443117787", "photo_flickr_id": "4411404947", "setting": "first-2-pick-and-tell", "worker_id": "E1143BPUW0BB1WH", "story_id": "42715", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we set a nice table to eat dinner with each other.we even drank some fancy wine .", "storylet_id": "213577"}], [{"original_text": "My favorite present was my first. A gift card to my favorite store.", "album_id": "72157623443117787", "photo_flickr_id": "4412172556", "setting": "first-2-pick-and-tell", "worker_id": "E1143BPUW0BB1WH", "story_id": "42715", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my favorite present was my first . a gift card to my favorite store .", "storylet_id": "213578"}], [{"original_text": "Singing happy birthday really scared my dog. He hid under my bed the whole night.", "album_id": "72157623443117787", "photo_flickr_id": "4411405155", "setting": "first-2-pick-and-tell", "worker_id": "E1143BPUW0BB1WH", "story_id": "42715", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "singing happy birthday really scared my dog . he hid under my bed the whole night .", "storylet_id": "213579"}], [{"original_text": "Time for Ed to take a trip to the Guinness Storehouse.", "album_id": "72157623443117787", "photo_flickr_id": "4412172240", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42716", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "time for [male] to take a trip to the guinness storehouse .", "storylet_id": "213580"}], [{"original_text": "He went inside and was amazed by all the beer they had on the shelves.", "album_id": "72157623443117787", "photo_flickr_id": "4411404889", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42716", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he went inside and was amazed by all the beer they had on the shelves .", "storylet_id": "213581"}], [{"original_text": "He just had to get a taste of one while in there.", "album_id": "72157623443117787", "photo_flickr_id": "4412659298", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42716", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he just had to get a taste of one while in there .", "storylet_id": "213582"}], [{"original_text": "He took this picture from top of the building.", "album_id": "72157623443117787", "photo_flickr_id": "4411405481", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42716", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he took this picture from top of the building .", "storylet_id": "213583"}], [{"original_text": "It was a nice day at the Guinness Storehouse but it was time to go home.", "album_id": "72157623443117787", "photo_flickr_id": "4411405647", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42716", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a nice day at the guinness storehouse but it was time to go home .", "storylet_id": "213584"}], [{"original_text": "We went and saw the city today.", "album_id": "72157623443117787", "photo_flickr_id": "4411405587", "setting": "last-3-pick-old-and-tell", "worker_id": "X6T41YQ2R8N1134", "story_id": "42717", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went and saw the city today .", "storylet_id": "213585"}], [{"original_text": "The Landscape was flat but beautiful.", "album_id": "72157623443117787", "photo_flickr_id": "4412172972", "setting": "last-3-pick-old-and-tell", "worker_id": "X6T41YQ2R8N1134", "story_id": "42717", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the landscape was flat but beautiful .", "storylet_id": "213586"}], [{"original_text": "I love the caligraphy on this one.", "album_id": "72157623443117787", "photo_flickr_id": "4411404947", "setting": "last-3-pick-old-and-tell", "worker_id": "X6T41YQ2R8N1134", "story_id": "42717", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i love the caligraphy on this one .", "storylet_id": "213587"}], [{"original_text": "The cascading water was really nice.", "album_id": "72157623443117787", "photo_flickr_id": "4412172556", "setting": "last-3-pick-old-and-tell", "worker_id": "X6T41YQ2R8N1134", "story_id": "42717", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cascading water was really nice .", "storylet_id": "213588"}], [{"original_text": "On the way back I found this interesting pattern on the wall.", "album_id": "72157623443117787", "photo_flickr_id": "4411405155", "setting": "last-3-pick-old-and-tell", "worker_id": "X6T41YQ2R8N1134", "story_id": "42717", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the way back i found this interesting pattern on the wall .", "storylet_id": "213589"}], [{"original_text": "This is a picture of the Guiness Storehouse.", "album_id": "72157623443117787", "photo_flickr_id": "4412172240", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42718", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of the guiness storehouse .", "storylet_id": "213590"}], [{"original_text": "This is a picture of beer.", "album_id": "72157623443117787", "photo_flickr_id": "4411404889", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42718", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of beer .", "storylet_id": "213591"}], [{"original_text": "A man is drinking beer.", "album_id": "72157623443117787", "photo_flickr_id": "4412659298", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42718", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man is drinking beer .", "storylet_id": "213592"}], [{"original_text": "This is a picture of the sky.", "album_id": "72157623443117787", "photo_flickr_id": "4411405481", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42718", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of the sky .", "storylet_id": "213593"}], [{"original_text": "This is a picture of the building.", "album_id": "72157623443117787", "photo_flickr_id": "4411405647", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "42718", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of the building .", "storylet_id": "213594"}], [{"original_text": "I was so excited to be going on a tour of the Guiness brewery. ", "album_id": "72157623443117787", "photo_flickr_id": "4412172240", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42719", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was so excited to be going on a tour of the guiness brewery .", "storylet_id": "213595"}], [{"original_text": "They had so many beers, they let us sample them all. ", "album_id": "72157623443117787", "photo_flickr_id": "4411404889", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42719", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had so many beers , they let us sample them all .", "storylet_id": "213596"}], [{"original_text": "I stopped and had a couple beers with the brew master. ", "album_id": "72157623443117787", "photo_flickr_id": "4412659298", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42719", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i stopped and had a couple beers with the brew master .", "storylet_id": "213597"}], [{"original_text": "They even took us to the top of the brewery, it had a great view.", "album_id": "72157623443117787", "photo_flickr_id": "4411405481", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42719", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even took us to the top of the brewery , it had a great view .", "storylet_id": "213598"}], [{"original_text": "I had a great time at the brewery, I can't wait to come again. ", "album_id": "72157623443117787", "photo_flickr_id": "4411405647", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42719", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time at the brewery , i ca n't wait to come again .", "storylet_id": "213599"}], [{"original_text": "Today is my birthday! Look at my amazing cake.", "album_id": "72157594465502864", "photo_flickr_id": "349122586", "setting": "first-2-pick-and-tell", "worker_id": "K605VQ6KALH44NP", "story_id": "42720", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is my birthday ! look at my amazing cake .", "storylet_id": "213600"}], [{"original_text": "Next I got to open presents.", "album_id": "72157594465502864", "photo_flickr_id": "349147643", "setting": "first-2-pick-and-tell", "worker_id": "K605VQ6KALH44NP", "story_id": "42720", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next i got to open presents .", "storylet_id": "213601"}], [{"original_text": "Mommy helped me rip the wrapping paper.", "album_id": "72157594465502864", "photo_flickr_id": "349311059", "setting": "first-2-pick-and-tell", "worker_id": "K605VQ6KALH44NP", "story_id": "42720", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mommy helped me rip the wrapping paper .", "storylet_id": "213602"}], [{"original_text": "I got so many new toys", "album_id": "72157594465502864", "photo_flickr_id": "349311071", "setting": "first-2-pick-and-tell", "worker_id": "K605VQ6KALH44NP", "story_id": "42720", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i got so many new toys", "storylet_id": "213603"}], [{"original_text": "Everyone had lots of fun.", "album_id": "72157594465502864", "photo_flickr_id": "349323757", "setting": "first-2-pick-and-tell", "worker_id": "K605VQ6KALH44NP", "story_id": "42720", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had lots of fun .", "storylet_id": "213604"}], [{"original_text": "A mom gives her daughter a gift for her first birthday party.", "album_id": "72157594465502864", "photo_flickr_id": "349303148", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42721", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a mom gives her daughter a gift for her first birthday party .", "storylet_id": "213605"}], [{"original_text": "The little girl is excited to be receiving so many gifts.", "album_id": "72157594465502864", "photo_flickr_id": "349303158", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42721", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the little girl is excited to be receiving so many gifts .", "storylet_id": "213606"}], [{"original_text": "Someone at the party also gives her a big Elmo as a gift.", "album_id": "72157594465502864", "photo_flickr_id": "349323798", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42721", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "someone at the party also gives her a big [male] as a gift .", "storylet_id": "213607"}], [{"original_text": "The little girl plays with the Elmo that she received.", "album_id": "72157594465502864", "photo_flickr_id": "349323787", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42721", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the little girl plays with the [male] that she received .", "storylet_id": "213608"}], [{"original_text": "After opening presents, the little girl prepares to eat her cake before the party ends.", "album_id": "72157594465502864", "photo_flickr_id": "349122586", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42721", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after opening presents , the little girl prepares to eat her cake before the party ends .", "storylet_id": "213609"}], [{"original_text": "The cake was extremely cute.", "album_id": "72157594465502864", "photo_flickr_id": "349122586", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42722", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cake was extremely cute .", "storylet_id": "213610"}], [{"original_text": "The children played together well.", "album_id": "72157594465502864", "photo_flickr_id": "349147643", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42722", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children played together well .", "storylet_id": "213611"}], [{"original_text": "We had one girl who was a little too happy about the presents.", "album_id": "72157594465502864", "photo_flickr_id": "349311059", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42722", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had one girl who was a little too happy about the presents .", "storylet_id": "213612"}], [{"original_text": "We played board games for a bit.", "album_id": "72157594465502864", "photo_flickr_id": "349311071", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42722", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we played board games for a bit .", "storylet_id": "213613"}], [{"original_text": "Many of the kids had fun with the hands on playing.", "album_id": "72157594465502864", "photo_flickr_id": "349323757", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42722", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many of the kids had fun with the hands on playing .", "storylet_id": "213614"}], [{"original_text": "This was the young child's first birthday.", "album_id": "72157594465502864", "photo_flickr_id": "349303148", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "42723", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the young child 's first birthday .", "storylet_id": "213615"}], [{"original_text": "She got to rip open her presents.", "album_id": "72157594465502864", "photo_flickr_id": "349303158", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "42723", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she got to rip open her presents .", "storylet_id": "213616"}], [{"original_text": "Her favorite present was this Elmo doll.", "album_id": "72157594465502864", "photo_flickr_id": "349323798", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "42723", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her favorite present was this [male] doll .", "storylet_id": "213617"}], [{"original_text": "She played with nothing else.", "album_id": "72157594465502864", "photo_flickr_id": "349323787", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "42723", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she played with nothing else .", "storylet_id": "213618"}], [{"original_text": "To cap off the day she blew out her first birthday cake candle.", "album_id": "72157594465502864", "photo_flickr_id": "349122586", "setting": "last-3-pick-old-and-tell", "worker_id": "Q1MQNHA1JB1PVKN", "story_id": "42723", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to cap off the day she blew out her first birthday cake candle .", "storylet_id": "213619"}], [{"original_text": "Turning one years old is a big deal for Penelope. ", "album_id": "72157594465502864", "photo_flickr_id": "349122586", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42724", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "turning one years old is a big deal for penelope .", "storylet_id": "213620"}], [{"original_text": "The neighbor's baby also came to celebrate Penelope's birthday. ", "album_id": "72157594465502864", "photo_flickr_id": "349147643", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42724", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the neighbor 's baby also came to celebrate penelope 's birthday .", "storylet_id": "213621"}], [{"original_text": "My sister gave her a gift that was wrapped twice. ", "album_id": "72157594465502864", "photo_flickr_id": "349311059", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42724", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my sister gave her a gift that was wrapped twice .", "storylet_id": "213622"}], [{"original_text": "The children were immediately attracted to this game. ", "album_id": "72157594465502864", "photo_flickr_id": "349311071", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42724", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the children were immediately attracted to this game .", "storylet_id": "213623"}], [{"original_text": "The neghbor's boy played in the tube before he went home. ", "album_id": "72157594465502864", "photo_flickr_id": "349323757", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "42724", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the neghbor 's boy played in the tube before he went home .", "storylet_id": "213624"}], [{"original_text": "I decided I wanted to learn how to shoot a gun.", "album_id": "72157623457889593", "photo_flickr_id": "4418665968", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42725", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided i wanted to learn how to shoot a gun .", "storylet_id": "213625"}], [{"original_text": "I took lessons on gun safety, and proper usage.", "album_id": "72157623457889593", "photo_flickr_id": "4417898325", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42725", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i took lessons on gun safety , and proper usage .", "storylet_id": "213626"}], [{"original_text": "I learned how to load my clip.", "album_id": "72157623457889593", "photo_flickr_id": "4417899803", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42725", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i learned how to load my clip .", "storylet_id": "213627"}], [{"original_text": "Then I finally had a chance to shoot, it was such a rush.", "album_id": "72157623457889593", "photo_flickr_id": "4418666982", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42725", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then i finally had a chance to shoot , it was such a rush .", "storylet_id": "213628"}], [{"original_text": "I didn't do too bad for my first time, I had a great time.", "album_id": "72157623457889593", "photo_flickr_id": "4417903197", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "42725", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i did n't do too bad for my first time , i had a great time .", "storylet_id": "213629"}], [{"original_text": "A group of students went to a class to get trained on how to shoot a gun.", "album_id": "72157623457889593", "photo_flickr_id": "4417899273", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42726", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of students went to a class to get trained on how to shoot a gun .", "storylet_id": "213630"}], [{"original_text": "They were excited to learn how to properly hold a gun.", "album_id": "72157623457889593", "photo_flickr_id": "4417898325", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42726", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were excited to learn how to properly hold a gun .", "storylet_id": "213631"}], [{"original_text": "They learned how to fill the gun with bullets as well.", "album_id": "72157623457889593", "photo_flickr_id": "4417899803", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42726", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they learned how to fill the gun with bullets as well .", "storylet_id": "213632"}], [{"original_text": "They were then able to practice shooting.", "album_id": "72157623457889593", "photo_flickr_id": "4418669126", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42726", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were then able to practice shooting .", "storylet_id": "213633"}], [{"original_text": "They were able to keep their bulls-eyes as a keepsake. ", "album_id": "72157623457889593", "photo_flickr_id": "4417902953", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42726", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were able to keep their bulls-eyes as a keepsake .", "storylet_id": "213634"}], [{"original_text": "The people are at a rifle class.", "album_id": "72157623457889593", "photo_flickr_id": "4418665968", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42727", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people are at a rifle class .", "storylet_id": "213635"}], [{"original_text": "They need to take these classes to legally shoot at the range.", "album_id": "72157623457889593", "photo_flickr_id": "4417898325", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42727", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they need to take these classes to legally shoot at the range .", "storylet_id": "213636"}], [{"original_text": "They are learning how to load the gun.", "album_id": "72157623457889593", "photo_flickr_id": "4417899803", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42727", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they are learning how to load the gun .", "storylet_id": "213637"}], [{"original_text": "They're working on how to hold the guns.", "album_id": "72157623457889593", "photo_flickr_id": "4418666982", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42727", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they 're working on how to hold the guns .", "storylet_id": "213638"}], [{"original_text": "After target practice they hold up their targets to show their shots. ", "album_id": "72157623457889593", "photo_flickr_id": "4417903197", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42727", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after target practice they hold up their targets to show their shots .", "storylet_id": "213639"}], [{"original_text": "I went to a gun training class,", "album_id": "72157623457889593", "photo_flickr_id": "4418665968", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42728", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a gun training class ,", "storylet_id": "213640"}], [{"original_text": "but I wasn't the only one, because my friends came with me.", "album_id": "72157623457889593", "photo_flickr_id": "4417898325", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42728", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but i was n't the only one , because my friends came with me .", "storylet_id": "213641"}], [{"original_text": "We inspected ammo", "album_id": "72157623457889593", "photo_flickr_id": "4417899803", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42728", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we inspected ammo", "storylet_id": "213642"}], [{"original_text": "and learned how to shoot at targets.", "album_id": "72157623457889593", "photo_flickr_id": "4418666982", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42728", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and learned how to shoot at targets .", "storylet_id": "213643"}], [{"original_text": "Sam and Carl were proud of their hits.", "album_id": "72157623457889593", "photo_flickr_id": "4417903197", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "42728", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] and [male] were proud of their hits .", "storylet_id": "213644"}], [{"original_text": "The kids were sitting in shooting practice.", "album_id": "72157623457889593", "photo_flickr_id": "4418665968", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "42729", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids were sitting in shooting practice .", "storylet_id": "213645"}], [{"original_text": "They had wanted to learn to shoot and today was their first day of lessons.", "album_id": "72157623457889593", "photo_flickr_id": "4417898325", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "42729", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had wanted to learn to shoot and today was their first day of lessons .", "storylet_id": "213646"}], [{"original_text": "They learned in classroom and set up things.", "album_id": "72157623457889593", "photo_flickr_id": "4417899803", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "42729", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they learned in classroom and set up things .", "storylet_id": "213647"}], [{"original_text": "Then they began to learn to shoot.", "album_id": "72157623457889593", "photo_flickr_id": "4418666982", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "42729", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they began to learn to shoot .", "storylet_id": "213648"}], [{"original_text": "They were not so great the first time, but practice makes perfect!", "album_id": "72157623457889593", "photo_flickr_id": "4417903197", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "42729", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were not so great the first time , but practice makes perfect !", "storylet_id": "213649"}], [{"original_text": "We went to a fair.", "album_id": "562456", "photo_flickr_id": "24603306", "setting": "first-2-pick-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "42730", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a fair .", "storylet_id": "213650"}], [{"original_text": "We took a photo with a costumed character.", "album_id": "562456", "photo_flickr_id": "24602792", "setting": "first-2-pick-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "42730", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a photo with a costumed character .", "storylet_id": "213651"}], [{"original_text": "Then we stood in line for some food and beverages.", "album_id": "562456", "photo_flickr_id": "24602988", "setting": "first-2-pick-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "42730", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we stood in line for some food and beverages .", "storylet_id": "213652"}], [{"original_text": "I really liked the funnel cake.", "album_id": "562456", "photo_flickr_id": "24603011", "setting": "first-2-pick-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "42730", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i really liked the funnel cake .", "storylet_id": "213653"}], [{"original_text": "Of course, I shared it with my friend.", "album_id": "562456", "photo_flickr_id": "24603046", "setting": "first-2-pick-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "42730", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of course , i shared it with my friend .", "storylet_id": "213654"}], [{"original_text": "They told me it was my day,they were taking me out for a good time and that I deserved it. ", "album_id": "562456", "photo_flickr_id": "24602754", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42731", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they told me it was my day , they were taking me out for a good time and that i deserved it .", "storylet_id": "213655"}], [{"original_text": "There is nothing like good friends/family, carnival style food and good entertainment to really lift a girl's spirits.", "album_id": "562456", "photo_flickr_id": "24602988", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42731", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is nothing like good friends/family , carnival style food and good entertainment to really lift a girl 's spirits .", "storylet_id": "213656"}], [{"original_text": "I love animals and they knew I would just love the dog Frisbee competition as part of the entertainment for the day.", "album_id": "562456", "photo_flickr_id": "24603202", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42731", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i love animals and they knew i would just love the dog frisbee competition as part of the entertainment for the day .", "storylet_id": "213657"}], [{"original_text": "I thought they might have forgotten but they really surprised me when we got home with a birthday cake just for me but of course I will share it.", "album_id": "562456", "photo_flickr_id": "24603548", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42731", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i thought they might have forgotten but they really surprised me when we got home with a birthday cake just for me but of course i will share it .", "storylet_id": "213658"}], [{"original_text": "This really was my day and I am so lucky to have such special family and friends to spend time with that would surprise me with this cake which is just so pretty to me that I had to take a good picture of it for my scrap book so I never forget it.", "album_id": "562456", "photo_flickr_id": "24603569", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42731", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this really was my day and i am so lucky to have such special family and friends to spend time with that would surprise me with this cake which is just so pretty to me that i had to take a good picture of it for my scrap book so i never forget it .", "storylet_id": "213659"}], [{"original_text": "Time for the annual Bixfest in Davenport, Iowa.", "album_id": "562456", "photo_flickr_id": "24603306", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42732", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "time for the annual bixfest in location , location .", "storylet_id": "213660"}], [{"original_text": "Sue and Linn posed with the Famous Dave's mascot.", "album_id": "562456", "photo_flickr_id": "24602792", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42732", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] and linn posed with the famous [male] 's mascot .", "storylet_id": "213661"}], [{"original_text": "The food choices were endless.", "album_id": "562456", "photo_flickr_id": "24602988", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42732", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food choices were endless .", "storylet_id": "213662"}], [{"original_text": "The funnel cakes are huge and irresistible.", "album_id": "562456", "photo_flickr_id": "24603011", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42732", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the funnel cakes are huge and irresistible .", "storylet_id": "213663"}], [{"original_text": "They are big enough to share with a crowd!", "album_id": "562456", "photo_flickr_id": "24603046", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42732", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are big enough to share with a crowd !", "storylet_id": "213664"}], [{"original_text": "It was my birthday and my friends took me to the county fair. ", "album_id": "562456", "photo_flickr_id": "24602754", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "42733", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was my birthday and my friends took me to the county fair .", "storylet_id": "213665"}], [{"original_text": "Lots of great food there. I happen to love funnel cakes. ", "album_id": "562456", "photo_flickr_id": "24602988", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "42733", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of great food there . i happen to love funnel cakes .", "storylet_id": "213666"}], [{"original_text": "They had an exhibition of a dog playing with a Frisbee. The dog was better than me at catching. ", "album_id": "562456", "photo_flickr_id": "24603202", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "42733", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had an exhibition of a dog playing with a frisbee . the dog was better than me at catching .", "storylet_id": "213667"}], [{"original_text": "When we got home there was another surprise. They had a Happy Birthday cake.", "album_id": "562456", "photo_flickr_id": "24603548", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "42733", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we got home there was another surprise . they had a happy birthday cake .", "storylet_id": "213668"}], [{"original_text": "The cake was vanilla and chocolate with Oreo cookies. I'm a lucky girl! ", "album_id": "562456", "photo_flickr_id": "24603569", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "42733", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cake was vanilla and chocolate with oreo cookies . i 'm a lucky girl !", "storylet_id": "213669"}], [{"original_text": "The girls took a trip this weekend to the fair. ", "album_id": "562456", "photo_flickr_id": "24603306", "setting": "last-3-pick-old-and-tell", "worker_id": "ACGK8ETCDWBQCZH", "story_id": "42734", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girls took a trip this weekend to the fair .", "storylet_id": "213670"}], [{"original_text": "They met a met a friendly porker while there.", "album_id": "562456", "photo_flickr_id": "24602792", "setting": "last-3-pick-old-and-tell", "worker_id": "ACGK8ETCDWBQCZH", "story_id": "42734", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they met a met a friendly porker while there .", "storylet_id": "213671"}], [{"original_text": "He convinced them to buy some funnel cakes.", "album_id": "562456", "photo_flickr_id": "24602988", "setting": "last-3-pick-old-and-tell", "worker_id": "ACGK8ETCDWBQCZH", "story_id": "42734", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he convinced them to buy some funnel cakes .", "storylet_id": "213672"}], [{"original_text": "They did not hesitate, and there were plenty to go around.", "album_id": "562456", "photo_flickr_id": "24603011", "setting": "last-3-pick-old-and-tell", "worker_id": "ACGK8ETCDWBQCZH", "story_id": "42734", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they did not hesitate , and there were plenty to go around .", "storylet_id": "213673"}], [{"original_text": "Everyone agreed that the funnel cakes were a highlight of the experience.", "album_id": "562456", "photo_flickr_id": "24603046", "setting": "last-3-pick-old-and-tell", "worker_id": "ACGK8ETCDWBQCZH", "story_id": "42734", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone agreed that the funnel cakes were a highlight of the experience .", "storylet_id": "213674"}], [{"original_text": "This is Bethany. Today is Bethany's birthday. ", "album_id": "563409", "photo_flickr_id": "24554550", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42735", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is [female] . today is [female] 's birthday .", "storylet_id": "213675"}], [{"original_text": "Her best friends came together to celebrate. ", "album_id": "563409", "photo_flickr_id": "24554557", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42735", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her best friends came together to celebrate .", "storylet_id": "213676"}], [{"original_text": "They showed off their best dance moves. ", "album_id": "563409", "photo_flickr_id": "24553815", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42735", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they showed off their best dance moves .", "storylet_id": "213677"}], [{"original_text": "Bethany's birthday cake is beautifully decorated. ", "album_id": "563409", "photo_flickr_id": "24553754", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42735", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] 's birthday cake is beautifully decorated .", "storylet_id": "213678"}], [{"original_text": "Bethany can't wait to slice the cake with the biggest knife she could find. ", "album_id": "563409", "photo_flickr_id": "24553733", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42735", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] ca n't wait to slice the cake with the biggest knife she could find .", "storylet_id": "213679"}], [{"original_text": "Everyone was getting ready for the birthday party.", "album_id": "563409", "photo_flickr_id": "24554542", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42736", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was getting ready for the birthday party .", "storylet_id": "213680"}], [{"original_text": "They lined up for cake and drinks.", "album_id": "563409", "photo_flickr_id": "24554557", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42736", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they lined up for cake and drinks .", "storylet_id": "213681"}], [{"original_text": "The birthday girl gave a speech to everyone before eating her cake. ", "album_id": "563409", "photo_flickr_id": "24554575", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42736", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the birthday girl gave a speech to everyone before eating her cake .", "storylet_id": "213682"}], [{"original_text": "They had fun dancing after a few drinks.", "album_id": "563409", "photo_flickr_id": "24553815", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42736", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had fun dancing after a few drinks .", "storylet_id": "213683"}], [{"original_text": "The woman was very grateful for everyone that came out.", "album_id": "563409", "photo_flickr_id": "24553840", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42736", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the woman was very grateful for everyone that came out .", "storylet_id": "213684"}], [{"original_text": "Jen was all dressed up for her 30th birthday party.", "album_id": "563409", "photo_flickr_id": "24554550", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42737", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "jen was all dressed up for her 30th birthday party .", "storylet_id": "213685"}], [{"original_text": "Friends and coworkers joined in the celebration.", "album_id": "563409", "photo_flickr_id": "24554557", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42737", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "friends and coworkers joined in the celebration .", "storylet_id": "213686"}], [{"original_text": "Eric and Jared were their usual crazy selves.", "album_id": "563409", "photo_flickr_id": "24553815", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42737", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and [male] were their usual crazy selves .", "storylet_id": "213687"}], [{"original_text": "Missy made this beautiful cake, accented with her favorite flower - Gerbera daisies.", "album_id": "563409", "photo_flickr_id": "24553754", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42737", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "missy made this beautiful cake , accented with her favorite flower - gerbera daisies .", "storylet_id": "213688"}], [{"original_text": "It was a shame to cut the masterpiece, but everyone was hungry!", "album_id": "563409", "photo_flickr_id": "24553733", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42737", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a shame to cut the masterpiece , but everyone was hungry !", "storylet_id": "213689"}], [{"original_text": "The beautiful guest of honor arrives to celebrate her big day. ", "album_id": "563409", "photo_flickr_id": "24554550", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42738", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beautiful guest of honor arrives to celebrate her big day .", "storylet_id": "213690"}], [{"original_text": "This gathering of friends is enjoying the birthday celebration. ", "album_id": "563409", "photo_flickr_id": "24554557", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42738", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this gathering of friends is enjoying the birthday celebration .", "storylet_id": "213691"}], [{"original_text": "Everyone does the happy dance at the party tonight. ", "album_id": "563409", "photo_flickr_id": "24553815", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42738", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone does the happy dance at the party tonight .", "storylet_id": "213692"}], [{"original_text": "This simple yet beautiful cake suits the guest of honor perfectly. ", "album_id": "563409", "photo_flickr_id": "24553754", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42738", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this simple yet beautiful cake suits the guest of honor perfectly .", "storylet_id": "213693"}], [{"original_text": "She is ready to cut her cake, and hopefully not anyone else!", "album_id": "563409", "photo_flickr_id": "24553733", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42738", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she is ready to cut her cake , and hopefully not anyone else !", "storylet_id": "213694"}], [{"original_text": "Friday was Carol's birthday.", "album_id": "563409", "photo_flickr_id": "24554550", "setting": "last-3-pick-old-and-tell", "worker_id": "2PNCB45W0H1M7JZ", "story_id": "42739", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friday was [female] 's birthday .", "storylet_id": "213695"}], [{"original_text": "Everyone got together to celebrate and the booze started flowing!", "album_id": "563409", "photo_flickr_id": "24554557", "setting": "last-3-pick-old-and-tell", "worker_id": "2PNCB45W0H1M7JZ", "story_id": "42739", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone got together to celebrate and the booze started flowing !", "storylet_id": "213696"}], [{"original_text": "The music started and people started to dance.", "album_id": "563409", "photo_flickr_id": "24553815", "setting": "last-3-pick-old-and-tell", "worker_id": "2PNCB45W0H1M7JZ", "story_id": "42739", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the music started and people started to dance .", "storylet_id": "213697"}], [{"original_text": "Someone brought a lovely cake.", "album_id": "563409", "photo_flickr_id": "24553754", "setting": "last-3-pick-old-and-tell", "worker_id": "2PNCB45W0H1M7JZ", "story_id": "42739", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someone brought a lovely cake .", "storylet_id": "213698"}], [{"original_text": "Carol was ready to cut the cake but everyone was on the dance floor.", "album_id": "563409", "photo_flickr_id": "24553733", "setting": "last-3-pick-old-and-tell", "worker_id": "2PNCB45W0H1M7JZ", "story_id": "42739", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] was ready to cut the cake but everyone was on the dance floor .", "storylet_id": "213699"}], [{"original_text": "I have always wondered what it would be like to be a model.", "album_id": "72157623600718190", "photo_flickr_id": "4422856537", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "42740", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have always wondered what it would be like to be a model .", "storylet_id": "213700"}], [{"original_text": "I decided it would be fun to take some pictures of me to see how I would look on film.", "album_id": "72157623600718190", "photo_flickr_id": "4422851129", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "42740", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i decided it would be fun to take some pictures of me to see how i would look on film .", "storylet_id": "213701"}], [{"original_text": "This one turned out too blurry.", "album_id": "72157623600718190", "photo_flickr_id": "4423617530", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "42740", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one turned out too blurry .", "storylet_id": "213702"}], [{"original_text": "I think I really look lost in thought here.", "album_id": "72157623600718190", "photo_flickr_id": "4424621787", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "42740", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i think i really look lost in thought here .", "storylet_id": "213703"}], [{"original_text": "My favorite is this shot. I think it best captures my \"model\" look.", "album_id": "72157623600718190", "photo_flickr_id": "4422858003", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "42740", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite is this shot . i think it best captures my `` model '' look .", "storylet_id": "213704"}], [{"original_text": "Tammy was doing a photo shoot for a magazine.", "album_id": "72157623600718190", "photo_flickr_id": "4422856537", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42741", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was doing a photo shoot for a magazine .", "storylet_id": "213705"}], [{"original_text": "She had many years of experience. ", "album_id": "72157623600718190", "photo_flickr_id": "4422858003", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42741", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had many years of experience .", "storylet_id": "213706"}], [{"original_text": "She posed for these pictures the professional she was.", "album_id": "72157623600718190", "photo_flickr_id": "4424624063", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42741", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she posed for these pictures the professional she was .", "storylet_id": "213707"}], [{"original_text": "Even her little dog got into the action.", "album_id": "72157623600718190", "photo_flickr_id": "4422859573", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42741", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even her little dog got into the action .", "storylet_id": "213708"}], [{"original_text": "She is just a natural when it comes to posing for pictures and she wraps up the shoot with this picture.", "album_id": "72157623600718190", "photo_flickr_id": "4423617530", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42741", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she is just a natural when it comes to posing for pictures and she wraps up the shoot with this picture .", "storylet_id": "213709"}], [{"original_text": "Today i decided to be goofy and take some selfies with my camera.", "album_id": "72157623600718190", "photo_flickr_id": "4422856537", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "42742", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i decided to be goofy and take some selfies with my camera .", "storylet_id": "213710"}], [{"original_text": "I set the camera to give me one minute to pose before it takes the picture.", "album_id": "72157623600718190", "photo_flickr_id": "4422858003", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "42742", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i set the camera to give me one minute to pose before it takes the picture .", "storylet_id": "213711"}], [{"original_text": "Here i a m singing a song into a shower head.", "album_id": "72157623600718190", "photo_flickr_id": "4424624063", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "42742", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here i a m singing a song into a shower head .", "storylet_id": "213712"}], [{"original_text": "This is me and my dog samara. She wants in the picture too.", "album_id": "72157623600718190", "photo_flickr_id": "4422859573", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "42742", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is me and my dog samara . she wants in the picture too .", "storylet_id": "213713"}], [{"original_text": "Last picture was showing of my favorite number 34.", "album_id": "72157623600718190", "photo_flickr_id": "4423617530", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "42742", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last picture was showing of my favorite number 34 .", "storylet_id": "213714"}], [{"original_text": "I loved taking fashion photographs.", "album_id": "72157623600718190", "photo_flickr_id": "4422856537", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42743", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i loved taking fashion photographs .", "storylet_id": "213715"}], [{"original_text": "I loved the different poses I could do.", "album_id": "72157623600718190", "photo_flickr_id": "4422858003", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42743", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i loved the different poses i could do .", "storylet_id": "213716"}], [{"original_text": "I liked being able to express myself in an artistic way.", "album_id": "72157623600718190", "photo_flickr_id": "4424624063", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42743", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i liked being able to express myself in an artistic way .", "storylet_id": "213717"}], [{"original_text": "I even let my dog in on the art.", "album_id": "72157623600718190", "photo_flickr_id": "4422859573", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42743", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i even let my dog in on the art .", "storylet_id": "213718"}], [{"original_text": "I love being able to express my creativity with everyone.", "album_id": "72157623600718190", "photo_flickr_id": "4423617530", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42743", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love being able to express my creativity with everyone .", "storylet_id": "213719"}], [{"original_text": "I went to the photo shoot today.", "album_id": "72157623600718190", "photo_flickr_id": "4422856537", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42744", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the photo shoot today .", "storylet_id": "213720"}], [{"original_text": "I had a great time.", "album_id": "72157623600718190", "photo_flickr_id": "4422851129", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42744", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had a great time .", "storylet_id": "213721"}], [{"original_text": "We took many different pictures.", "album_id": "72157623600718190", "photo_flickr_id": "4423617530", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42744", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took many different pictures .", "storylet_id": "213722"}], [{"original_text": "I put on a lot of make up.", "album_id": "72157623600718190", "photo_flickr_id": "4424621787", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42744", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i put on a lot of make up .", "storylet_id": "213723"}], [{"original_text": "I hope we can do it again later.", "album_id": "72157623600718190", "photo_flickr_id": "4422858003", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42744", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope we can do it again later .", "storylet_id": "213724"}], [{"original_text": "We all got together to celebrate Tom's birthday today.", "album_id": "72157623189816622", "photo_flickr_id": "4266884078", "setting": "first-2-pick-and-tell", "worker_id": "RH7CYN038V5KWPS", "story_id": "42745", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all got together to celebrate [male] 's birthday today .", "storylet_id": "213725"}], [{"original_text": "Tom turned 35 today and got lots of presents.", "album_id": "72157623189816622", "photo_flickr_id": "4266869686", "setting": "first-2-pick-and-tell", "worker_id": "RH7CYN038V5KWPS", "story_id": "42745", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] turned 35 today and got lots of presents .", "storylet_id": "213726"}], [{"original_text": "I gave Tom a card that was very funny.", "album_id": "72157623189816622", "photo_flickr_id": "4266879808", "setting": "first-2-pick-and-tell", "worker_id": "RH7CYN038V5KWPS", "story_id": "42745", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i gave [male] a card that was very funny .", "storylet_id": "213727"}], [{"original_text": "Tom is a true all American man.", "album_id": "72157623189816622", "photo_flickr_id": "4266129055", "setting": "first-2-pick-and-tell", "worker_id": "RH7CYN038V5KWPS", "story_id": "42745", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is a true all american man .", "storylet_id": "213728"}], [{"original_text": "He got several shirts that represented the USA.", "album_id": "72157623189816622", "photo_flickr_id": "4266874522", "setting": "first-2-pick-and-tell", "worker_id": "RH7CYN038V5KWPS", "story_id": "42745", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he got several shirts that represented the location .", "storylet_id": "213729"}], [{"original_text": "I just sat down at the table to begin opening my birthday presents.", "album_id": "72157623189816622", "photo_flickr_id": "4266123953", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "42746", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i just sat down at the table to begin opening my birthday presents .", "storylet_id": "213730"}], [{"original_text": "Yes, a new sweatshirt adds to my collection.", "album_id": "72157623189816622", "photo_flickr_id": "4266874522", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "42746", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "yes , a new sweatshirt adds to my collection .", "storylet_id": "213731"}], [{"original_text": "I love blue and this USA sweatshirt is awesome.", "album_id": "72157623189816622", "photo_flickr_id": "4266129055", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "42746", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i love blue and this location sweatshirt is awesome .", "storylet_id": "213732"}], [{"original_text": "Reflecting on a well versed card from my mom.", "album_id": "72157623189816622", "photo_flickr_id": "4266878022", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "42746", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "reflecting on a well versed card from my mom .", "storylet_id": "213733"}], [{"original_text": "The cake is pretty busy, let's start eating!", "album_id": "72157623189816622", "photo_flickr_id": "4266134685", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "42746", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cake is pretty busy , let 's start eating !", "storylet_id": "213734"}], [{"original_text": "I was excited for this evening and ready to open the gifts.", "album_id": "72157623189816622", "photo_flickr_id": "4266123953", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42747", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was excited for this evening and ready to open the gifts .", "storylet_id": "213735"}], [{"original_text": "I got and American made tee from dad, he knows how I feel about this country.", "album_id": "72157623189816622", "photo_flickr_id": "4266874522", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42747", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got and american made tee from dad , he knows how i feel about this country .", "storylet_id": "213736"}], [{"original_text": "Mom got me a USA shirt, a guy can never have enough shirts.", "album_id": "72157623189816622", "photo_flickr_id": "4266129055", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42747", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom got me a location shirt , a guy can never have enough shirts .", "storylet_id": "213737"}], [{"original_text": "Grandma gave me a card with exactly what was needed.", "album_id": "72157623189816622", "photo_flickr_id": "4266878022", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42747", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandma gave me a card with exactly what was needed .", "storylet_id": "213738"}], [{"original_text": "And the best part of the evening was the cake. ", "album_id": "72157623189816622", "photo_flickr_id": "4266134685", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42747", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the best part of the evening was the cake .", "storylet_id": "213739"}], [{"original_text": "This is the best birthday I've ever had.", "album_id": "72157623189816622", "photo_flickr_id": "4266884078", "setting": "last-3-pick-old-and-tell", "worker_id": "HRUUL87C5D4ZXUT", "story_id": "42748", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the best birthday i 've ever had .", "storylet_id": "213740"}], [{"original_text": "I can't wait to see all of my birthday presents. I hope I got money.", "album_id": "72157623189816622", "photo_flickr_id": "4266869686", "setting": "last-3-pick-old-and-tell", "worker_id": "HRUUL87C5D4ZXUT", "story_id": "42748", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i ca n't wait to see all of my birthday presents . i hope i got money .", "storylet_id": "213741"}], [{"original_text": "Are you serious? this is a little mushy for me guys, Oh come on guys don't cry.", "album_id": "72157623189816622", "photo_flickr_id": "4266879808", "setting": "last-3-pick-old-and-tell", "worker_id": "HRUUL87C5D4ZXUT", "story_id": "42748", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "are you serious ? this is a little mushy for me guys , oh come on guys do n't cry .", "storylet_id": "213742"}], [{"original_text": "Alright, this is cool! I love it, you guys are the best.", "album_id": "72157623189816622", "photo_flickr_id": "4266129055", "setting": "last-3-pick-old-and-tell", "worker_id": "HRUUL87C5D4ZXUT", "story_id": "42748", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "alright , this is cool ! i love it , you guys are the best .", "storylet_id": "213743"}], [{"original_text": "I have to admit it. You have excellent taste in clothes. I love you!", "album_id": "72157623189816622", "photo_flickr_id": "4266874522", "setting": "last-3-pick-old-and-tell", "worker_id": "HRUUL87C5D4ZXUT", "story_id": "42748", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i have to admit it . you have excellent taste in clothes . i love you !", "storylet_id": "213744"}], [{"original_text": "Today we celebrated dad's birthday.", "album_id": "72157623189816622", "photo_flickr_id": "4266123953", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42749", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we celebrated dad 's birthday .", "storylet_id": "213745"}], [{"original_text": "He got all kinds of gifts for his birthday.", "album_id": "72157623189816622", "photo_flickr_id": "4266874522", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42749", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he got all kinds of gifts for his birthday .", "storylet_id": "213746"}], [{"original_text": "He loves getting t-shirts that are dark blue.", "album_id": "72157623189816622", "photo_flickr_id": "4266129055", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42749", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he loves getting t-shirts that are dark blue .", "storylet_id": "213747"}], [{"original_text": "He received birthday cards as well.", "album_id": "72157623189816622", "photo_flickr_id": "4266878022", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42749", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he received birthday cards as well .", "storylet_id": "213748"}], [{"original_text": "After all the gifts were opened, everyone had cake.", "album_id": "72157623189816622", "photo_flickr_id": "4266134685", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42749", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after all the gifts were opened , everyone had cake .", "storylet_id": "213749"}], [{"original_text": "My brother and I pose for my birthday party. Check out those eyes!", "album_id": "72157623191664192", "photo_flickr_id": "4267592306", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "42750", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brother and i pose for my birthday party . check out those eyes !", "storylet_id": "213750"}], [{"original_text": "Always game for fun, we tease my big brother.", "album_id": "72157623191664192", "photo_flickr_id": "4266843237", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "42750", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "always game for fun , we tease my big brother .", "storylet_id": "213751"}], [{"original_text": "Still in the spirit, it's now time to unwrap the mound of presents.", "album_id": "72157623191664192", "photo_flickr_id": "4266834715", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "42750", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "still in the spirit , it 's now time to unwrap the mound of presents .", "storylet_id": "213752"}], [{"original_text": "This cake is cool, simple and looking delicious.", "album_id": "72157623191664192", "photo_flickr_id": "4267584870", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "42750", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this cake is cool , simple and looking delicious .", "storylet_id": "213753"}], [{"original_text": "The cake is lit up like a forest fire. This will be a challenge to blow the candles out in one try.", "album_id": "72157623191664192", "photo_flickr_id": "4266834391", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "42750", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cake is lit up like a forest fire . this will be a challenge to blow the candles out in one try .", "storylet_id": "213754"}], [{"original_text": "So he decided to try using the horn. That didn't work either. ", "album_id": "72157623191664192", "photo_flickr_id": "4267571866", "setting": "first-2-pick-and-tell", "worker_id": "RH7CYN038V5KWPS", "story_id": "42751", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so he decided to try using the horn . that did n't work either .", "storylet_id": "213755"}], [{"original_text": "Frankie tried to blow them out, but it didn't work.", "album_id": "72157623191664192", "photo_flickr_id": "4267580112", "setting": "first-2-pick-and-tell", "worker_id": "RH7CYN038V5KWPS", "story_id": "42751", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] tried to blow them out , but it did n't work .", "storylet_id": "213756"}], [{"original_text": "So the candles were lit.", "album_id": "72157623191664192", "photo_flickr_id": "4266834391", "setting": "first-2-pick-and-tell", "worker_id": "RH7CYN038V5KWPS", "story_id": "42751", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so the candles were lit .", "storylet_id": "213757"}], [{"original_text": "He thought it would be best to let someone else blow out the candles while he opened his gifts", "album_id": "72157623191664192", "photo_flickr_id": "4266835447", "setting": "first-2-pick-and-tell", "worker_id": "RH7CYN038V5KWPS", "story_id": "42751", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he thought it would be best to let someone else blow out the candles while he opened his gifts", "storylet_id": "213758"}], [{"original_text": "He had a big pile of gifts to open up.", "album_id": "72157623191664192", "photo_flickr_id": "4266836701", "setting": "first-2-pick-and-tell", "worker_id": "RH7CYN038V5KWPS", "story_id": "42751", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he had a big pile of gifts to open up .", "storylet_id": "213759"}], [{"original_text": "We had a birthday party for Richard.", "album_id": "72157623191664192", "photo_flickr_id": "4267592306", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42752", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a birthday party for [male] .", "storylet_id": "213760"}], [{"original_text": "Everyone made dad crazy with noise makers.", "album_id": "72157623191664192", "photo_flickr_id": "4266843237", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42752", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone made dad crazy with noise makers .", "storylet_id": "213761"}], [{"original_text": "Richard waited patiently waiting to open presents.", "album_id": "72157623191664192", "photo_flickr_id": "4266834715", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42752", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] waited patiently waiting to open presents .", "storylet_id": "213762"}], [{"original_text": "Everyone got to have birthday cake.", "album_id": "72157623191664192", "photo_flickr_id": "4267584870", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42752", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone got to have birthday cake .", "storylet_id": "213763"}], [{"original_text": "Richard blew out his candles and made a wish.", "album_id": "72157623191664192", "photo_flickr_id": "4266834391", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "42752", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] blew out his candles and made a wish .", "storylet_id": "213764"}], [{"original_text": "Father and son on our boy's big birthday.", "album_id": "72157623191664192", "photo_flickr_id": "4267592306", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "42753", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "father and son on our boy 's big birthday .", "storylet_id": "213765"}], [{"original_text": "The party favors were used as weapons against dad.", "album_id": "72157623191664192", "photo_flickr_id": "4266843237", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "42753", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the party favors were used as weapons against dad .", "storylet_id": "213766"}], [{"original_text": "The birthday boy blows his horn while posing in front of the pile of presents.", "album_id": "72157623191664192", "photo_flickr_id": "4266834715", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "42753", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the birthday boy blows his horn while posing in front of the pile of presents .", "storylet_id": "213767"}], [{"original_text": "The cake was exactly what he wanted; mint chocolate chip!", "album_id": "72157623191664192", "photo_flickr_id": "4267584870", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "42753", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cake was exactly what he wanted ; mint chocolate chip !", "storylet_id": "213768"}], [{"original_text": "Finally, it was time to blow out the candles.", "album_id": "72157623191664192", "photo_flickr_id": "4266834391", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "42753", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , it was time to blow out the candles .", "storylet_id": "213769"}], [{"original_text": "Richard and his father got together to celebrate Richard's birthday. ", "album_id": "72157623191664192", "photo_flickr_id": "4267592306", "setting": "last-3-pick-old-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42754", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and his father got together to celebrate [male] 's birthday .", "storylet_id": "213770"}], [{"original_text": "They joked around for the camera.", "album_id": "72157623191664192", "photo_flickr_id": "4266843237", "setting": "last-3-pick-old-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42754", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they joked around for the camera .", "storylet_id": "213771"}], [{"original_text": "Then it was time to open presents.", "album_id": "72157623191664192", "photo_flickr_id": "4266834715", "setting": "last-3-pick-old-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42754", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then it was time to open presents .", "storylet_id": "213772"}], [{"original_text": "Richard's cake looked delicious.", "album_id": "72157623191664192", "photo_flickr_id": "4267584870", "setting": "last-3-pick-old-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42754", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] 's cake looked delicious .", "storylet_id": "213773"}], [{"original_text": "He made a wish and got ready to blow out the candles.", "album_id": "72157623191664192", "photo_flickr_id": "4266834391", "setting": "last-3-pick-old-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42754", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he made a wish and got ready to blow out the candles .", "storylet_id": "213774"}], [{"original_text": "Party time! everyone gathered today at this awesome restaurant.", "album_id": "72157623417353008", "photo_flickr_id": "4350435671", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42755", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "party time ! everyone gathered today at this awesome restaurant .", "storylet_id": "213775"}], [{"original_text": "Look at how amazing this pizza looked! It tasted just as good too.", "album_id": "72157623417353008", "photo_flickr_id": "4351186578", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42755", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look at how amazing this pizza looked ! it tasted just as good too .", "storylet_id": "213776"}], [{"original_text": "Sexy cake time! Gotta get creative when you get older.", "album_id": "72157623417353008", "photo_flickr_id": "4351188330", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42755", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sexy cake time ! got ta get creative when you get older .", "storylet_id": "213777"}], [{"original_text": "One of us had a bit too much to drink and couldnt put the glass down.", "album_id": "72157623417353008", "photo_flickr_id": "4350444207", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42755", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of us had a bit too much to drink and couldnt put the glass down .", "storylet_id": "213778"}], [{"original_text": "Here we are at the end of the night. Do i look drunk? it was a great time.", "album_id": "72157623417353008", "photo_flickr_id": "4350445417", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42755", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here we are at the end of the night . do i look drunk ? it was a great time .", "storylet_id": "213779"}], [{"original_text": "We were able to reserve a table on the deck for our get together.", "album_id": "72157623417353008", "photo_flickr_id": "4350435671", "setting": "first-2-pick-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42756", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were able to reserve a table on the deck for our get together .", "storylet_id": "213780"}], [{"original_text": "It was a night off from dieting when this pizza was served.", "album_id": "72157623417353008", "photo_flickr_id": "4351186578", "setting": "first-2-pick-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42756", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a night off from dieting when this pizza was served .", "storylet_id": "213781"}], [{"original_text": "We somehow found room for dessert after our outstanding meal.", "album_id": "72157623417353008", "photo_flickr_id": "4351189734", "setting": "first-2-pick-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42756", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we somehow found room for dessert after our outstanding meal .", "storylet_id": "213782"}], [{"original_text": "Birthday boy was very surprised and amused with the racy cake!", "album_id": "72157623417353008", "photo_flickr_id": "4351189028", "setting": "first-2-pick-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42756", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "birthday boy was very surprised and amused with the racy cake !", "storylet_id": "213783"}], [{"original_text": "We were last last to leave the restaurant after taking tons of photos.", "album_id": "72157623417353008", "photo_flickr_id": "4350445417", "setting": "first-2-pick-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42756", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were last last to leave the restaurant after taking tons of photos .", "storylet_id": "213784"}], [{"original_text": "It was a great night to get out with friends. ", "album_id": "72157623417353008", "photo_flickr_id": "4350435671", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42757", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a great night to get out with friends .", "storylet_id": "213785"}], [{"original_text": "The food was amazing. ", "album_id": "72157623417353008", "photo_flickr_id": "4351186578", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42757", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the food was amazing .", "storylet_id": "213786"}], [{"original_text": "The company was a lot of fun too. ", "album_id": "72157623417353008", "photo_flickr_id": "4351189734", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42757", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the company was a lot of fun too .", "storylet_id": "213787"}], [{"original_text": "We laughed and told stories all night. ", "album_id": "72157623417353008", "photo_flickr_id": "4351189028", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42757", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we laughed and told stories all night .", "storylet_id": "213788"}], [{"original_text": "It was a great time. ", "album_id": "72157623417353008", "photo_flickr_id": "4350445417", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42757", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great time .", "storylet_id": "213789"}], [{"original_text": "A young couple goes out with friends to celebrate his birthday", "album_id": "72157623417353008", "photo_flickr_id": "4350435671", "setting": "last-3-pick-old-and-tell", "worker_id": "6KSQ1N9TVA1NY10", "story_id": "42758", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a young couple goes out with friends to celebrate his birthday", "storylet_id": "213790"}], [{"original_text": "pizza for dinner,", "album_id": "72157623417353008", "photo_flickr_id": "4351186578", "setting": "last-3-pick-old-and-tell", "worker_id": "6KSQ1N9TVA1NY10", "story_id": "42758", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "pizza for dinner ,", "storylet_id": "213791"}], [{"original_text": "and a naughty cake for dessert!", "album_id": "72157623417353008", "photo_flickr_id": "4351188330", "setting": "last-3-pick-old-and-tell", "worker_id": "6KSQ1N9TVA1NY10", "story_id": "42758", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and a naughty cake for dessert !", "storylet_id": "213792"}], [{"original_text": "the couple drinks and enjoys the celebration", "album_id": "72157623417353008", "photo_flickr_id": "4350444207", "setting": "last-3-pick-old-and-tell", "worker_id": "6KSQ1N9TVA1NY10", "story_id": "42758", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple drinks and enjoys the celebration", "storylet_id": "213793"}], [{"original_text": "going home happy", "album_id": "72157623417353008", "photo_flickr_id": "4350445417", "setting": "last-3-pick-old-and-tell", "worker_id": "6KSQ1N9TVA1NY10", "story_id": "42758", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "going home happy", "storylet_id": "213794"}], [{"original_text": "Everyone loved the restaurant location I picked out for the birthday dinner.", "album_id": "72157623417353008", "photo_flickr_id": "4350435671", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "42759", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone loved the restaurant location i picked out for the birthday dinner .", "storylet_id": "213795"}], [{"original_text": "We enjoyed their delicious pizzas so much.", "album_id": "72157623417353008", "photo_flickr_id": "4351186578", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "42759", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we enjoyed their delicious pizzas so much .", "storylet_id": "213796"}], [{"original_text": "The dessert options were incredible and we all gobbled them down.", "album_id": "72157623417353008", "photo_flickr_id": "4351189734", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "42759", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dessert options were incredible and we all gobbled them down .", "storylet_id": "213797"}], [{"original_text": "The birthday cake came after we were done eating and they even had a lit candle on the cake.", "album_id": "72157623417353008", "photo_flickr_id": "4351189028", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "42759", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the birthday cake came after we were done eating and they even had a lit candle on the cake .", "storylet_id": "213798"}], [{"original_text": "The birthday boy was very pleased with the dinner I put on in his honor.", "album_id": "72157623417353008", "photo_flickr_id": "4350445417", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "42759", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the birthday boy was very pleased with the dinner i put on in his honor .", "storylet_id": "213799"}], [{"original_text": "A group gathered for a social launch of a literary work.", "album_id": "72157623608444838", "photo_flickr_id": "4428359704", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42760", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group gathered for a social launch of a literary work .", "storylet_id": "213800"}], [{"original_text": "A good-sized audience turnout for the event, which was held at a bookstore cafe.", "album_id": "72157623608444838", "photo_flickr_id": "4428359956", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42760", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a good-sized audience turnout for the event , which was held at a bookstore cafe .", "storylet_id": "213801"}], [{"original_text": "The audience sat among the books and throughout the cafe.", "album_id": "72157623608444838", "photo_flickr_id": "4427596701", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42760", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the audience sat among the books and throughout the cafe .", "storylet_id": "213802"}], [{"original_text": "The speakers told lively stories, and had a good time during the event.", "album_id": "72157623608444838", "photo_flickr_id": "4428362902", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42760", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the speakers told lively stories , and had a good time during the event .", "storylet_id": "213803"}], [{"original_text": "The large audience was engaged.", "album_id": "72157623608444838", "photo_flickr_id": "4428362118", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "42760", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the large audience was engaged .", "storylet_id": "213804"}], [{"original_text": "It was a festive night for a PTA meeting.", "album_id": "72157623608444838", "photo_flickr_id": "4427593237", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42761", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a festive night for a organization meeting .", "storylet_id": "213805"}], [{"original_text": "The teachers got together for a chat before the parents got involved. ", "album_id": "72157623608444838", "photo_flickr_id": "4428359704", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42761", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the teachers got together for a chat before the parents got involved .", "storylet_id": "213806"}], [{"original_text": "The parents patiently waiting to ask their questions.", "album_id": "72157623608444838", "photo_flickr_id": "4428360306", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42761", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the parents patiently waiting to ask their questions .", "storylet_id": "213807"}], [{"original_text": "Finally the princeable steps up to the mike and welcomes the parents.", "album_id": "72157623608444838", "photo_flickr_id": "4427596701", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42761", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally the princeable steps up to the mike and welcomes the parents .", "storylet_id": "213808"}], [{"original_text": "It was now time for the parents to ask their questions for the teachers.", "album_id": "72157623608444838", "photo_flickr_id": "4427596329", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42761", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was now time for the parents to ask their questions for the teachers .", "storylet_id": "213809"}], [{"original_text": "I am a confident, intelligent and capable board member.", "album_id": "72157623608444838", "photo_flickr_id": "4427593237", "setting": "last-3-pick-old-and-tell", "worker_id": "4O9FBEAD1CN6I4D", "story_id": "42762", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am a confident , intelligent and capable board member .", "storylet_id": "213810"}], [{"original_text": "I am here to help steer the arts programs in my local city.", "album_id": "72157623608444838", "photo_flickr_id": "4428359704", "setting": "last-3-pick-old-and-tell", "worker_id": "4O9FBEAD1CN6I4D", "story_id": "42762", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i am here to help steer the arts programs in my local city .", "storylet_id": "213811"}], [{"original_text": "I go to meetings to help inform the public of events and causes we undertake.", "album_id": "72157623608444838", "photo_flickr_id": "4428360306", "setting": "last-3-pick-old-and-tell", "worker_id": "4O9FBEAD1CN6I4D", "story_id": "42762", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i go to meetings to help inform the public of events and causes we undertake .", "storylet_id": "213812"}], [{"original_text": "Keeping the city informed on arts and culture is a fun way to give back.", "album_id": "72157623608444838", "photo_flickr_id": "4427596701", "setting": "last-3-pick-old-and-tell", "worker_id": "4O9FBEAD1CN6I4D", "story_id": "42762", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "keeping the city informed on arts and culture is a fun way to give back .", "storylet_id": "213813"}], [{"original_text": "After our presentation we often open the floor to the audience for new ideas on future projects.", "album_id": "72157623608444838", "photo_flickr_id": "4427596329", "setting": "last-3-pick-old-and-tell", "worker_id": "4O9FBEAD1CN6I4D", "story_id": "42762", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after our presentation we often open the floor to the audience for new ideas on future projects .", "storylet_id": "213814"}], [{"original_text": "The cast members prepare for a question and answer session.", "album_id": "72157623608444838", "photo_flickr_id": "4428359704", "setting": "last-3-pick-old-and-tell", "worker_id": "QE5I51VSDMB0MUV", "story_id": "42763", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cast members prepare for a question and answer session .", "storylet_id": "213815"}], [{"original_text": "The line of people waiting to get in is very long.", "album_id": "72157623608444838", "photo_flickr_id": "4428359956", "setting": "last-3-pick-old-and-tell", "worker_id": "QE5I51VSDMB0MUV", "story_id": "42763", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the line of people waiting to get in is very long .", "storylet_id": "213816"}], [{"original_text": "People find their seats and wait for the session to start.", "album_id": "72157623608444838", "photo_flickr_id": "4427596701", "setting": "last-3-pick-old-and-tell", "worker_id": "QE5I51VSDMB0MUV", "story_id": "42763", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people find their seats and wait for the session to start .", "storylet_id": "213817"}], [{"original_text": "The cast has a lively discussion with each other during the session.", "album_id": "72157623608444838", "photo_flickr_id": "4428362902", "setting": "last-3-pick-old-and-tell", "worker_id": "QE5I51VSDMB0MUV", "story_id": "42763", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cast has a lively discussion with each other during the session .", "storylet_id": "213818"}], [{"original_text": "It was such a hit that people even sat on the staircase to watch when the seats ran out.", "album_id": "72157623608444838", "photo_flickr_id": "4428362118", "setting": "last-3-pick-old-and-tell", "worker_id": "QE5I51VSDMB0MUV", "story_id": "42763", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was such a hit that people even sat on the staircase to watch when the seats ran out .", "storylet_id": "213819"}], [{"original_text": "Sally was a bit shy about speaking to the group.", "album_id": "72157623608444838", "photo_flickr_id": "4427593237", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "42764", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was a bit shy about speaking to the group .", "storylet_id": "213820"}], [{"original_text": "We all gathered to discuss the propsal.", "album_id": "72157623608444838", "photo_flickr_id": "4428359704", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "42764", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all gathered to discuss the propsal .", "storylet_id": "213821"}], [{"original_text": "We then anxiously awaited the speakers.", "album_id": "72157623608444838", "photo_flickr_id": "4428360306", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "42764", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we then anxiously awaited the speakers .", "storylet_id": "213822"}], [{"original_text": "The podium was empty for quite a few minutes.", "album_id": "72157623608444838", "photo_flickr_id": "4427596701", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "42764", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the podium was empty for quite a few minutes .", "storylet_id": "213823"}], [{"original_text": "When Larry began his speech he was brimming with pride.", "album_id": "72157623608444838", "photo_flickr_id": "4427596329", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "42764", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when [male] began his speech he was brimming with pride .", "storylet_id": "213824"}], [{"original_text": "A proud father went to celebrate with his son, holding his wife close. ", "album_id": "72157623077743059", "photo_flickr_id": "4271807918", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "42765", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a proud father went to celebrate with his son , holding his wife close .", "storylet_id": "213825"}], [{"original_text": "His son, very happy for the time with family, poses with his wife, feeling his birthday blessings. ", "album_id": "72157623077743059", "photo_flickr_id": "4271064269", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "42765", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his son , very happy for the time with family , poses with his wife , feeling his birthday blessings .", "storylet_id": "213826"}], [{"original_text": "The son gets a little silly while celebrating his birthday. His wife politely looks on. ", "album_id": "72157623077743059", "photo_flickr_id": "4271064693", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "42765", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the son gets a little silly while celebrating his birthday . his wife politely looks on .", "storylet_id": "213827"}], [{"original_text": "Daddy laughs at his son's antics, with one of his daughters, who just shrugs it off. ", "album_id": "72157623077743059", "photo_flickr_id": "4271810446", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "42765", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "daddy laughs at his son 's antics , with one of his daughters , who just shrugs it off .", "storylet_id": "213828"}], [{"original_text": "Daddy invited a few nice folks to join the celebration, and he ended up smiling all night. ", "album_id": "72157623077743059", "photo_flickr_id": "4271066033", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "42765", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "daddy invited a few nice folks to join the celebration , and he ended up smiling all night .", "storylet_id": "213829"}], [{"original_text": "I went to my sister's birthday party. It was lots of fun.", "album_id": "72157623077743059", "photo_flickr_id": "4271806690", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42766", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to my sister 's birthday party . it was lots of fun .", "storylet_id": "213830"}], [{"original_text": "Our brother was there too and he came by to say hi. It's been awhile since we've seen him.", "album_id": "72157623077743059", "photo_flickr_id": "4271062105", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42766", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our brother was there too and he came by to say hi . it 's been awhile since we 've seen him .", "storylet_id": "213831"}], [{"original_text": "Uncle Dave was there as well, He was up to his regular antics.", "album_id": "72157623077743059", "photo_flickr_id": "4271808306", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42766", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "uncle [male] was there as well , he was up to his regular antics .", "storylet_id": "213832"}], [{"original_text": "Even my cousin wasn't safe from his craziness.", "album_id": "72157623077743059", "photo_flickr_id": "4271063753", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42766", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even my cousin was n't safe from his craziness .", "storylet_id": "213833"}], [{"original_text": "Also Dave, Jr was there, yeah the apple doesn't fall far from the tree.", "album_id": "72157623077743059", "photo_flickr_id": "4271064693", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42766", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "also [male] , jr was there , yeah the apple does n't fall far from the tree .", "storylet_id": "213834"}], [{"original_text": "Our anniversary party was at our favorite restaurant this year.", "album_id": "72157623077743059", "photo_flickr_id": "4271807918", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42767", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our anniversary party was at our favorite restaurant this year .", "storylet_id": "213835"}], [{"original_text": "My brother proudly posed with his new girlfriend.", "album_id": "72157623077743059", "photo_flickr_id": "4271064269", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42767", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my brother proudly posed with his new girlfriend .", "storylet_id": "213836"}], [{"original_text": "I don't think she realizes what she has gotten herself into.", "album_id": "72157623077743059", "photo_flickr_id": "4271064693", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42767", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i do n't think she realizes what she has gotten herself into .", "storylet_id": "213837"}], [{"original_text": "My husband and his youngest sister in a photo I plan to frame.", "album_id": "72157623077743059", "photo_flickr_id": "4271810446", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42767", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my husband and his youngest sister in a photo i plan to frame .", "storylet_id": "213838"}], [{"original_text": "My husband with my pretty coworkers. He did a little flirting so it was time to drag him home.", "album_id": "72157623077743059", "photo_flickr_id": "4271066033", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42767", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my husband with my pretty coworkers . he did a little flirting so it was time to drag him home .", "storylet_id": "213839"}], [{"original_text": "It is New Years and everyone at the bar is very excited.", "album_id": "72157623077743059", "photo_flickr_id": "4271807918", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42768", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is new years and everyone at the bar is very excited .", "storylet_id": "213840"}], [{"original_text": "This is their first New Years together and they are celebrating it all night.", "album_id": "72157623077743059", "photo_flickr_id": "4271064269", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42768", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is their first new years together and they are celebrating it all night .", "storylet_id": "213841"}], [{"original_text": "The man is already slightly drunk.", "album_id": "72157623077743059", "photo_flickr_id": "4271064693", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42768", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man is already slightly drunk .", "storylet_id": "213842"}], [{"original_text": "Another couple poses for a picture they are just happy to be together tonight.", "album_id": "72157623077743059", "photo_flickr_id": "4271810446", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42768", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another couple poses for a picture they are just happy to be together tonight .", "storylet_id": "213843"}], [{"original_text": "Finally it is almost time for the ball to drop and the group waits anxiously for it to happen.", "album_id": "72157623077743059", "photo_flickr_id": "4271066033", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42768", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally it is almost time for the ball to drop and the group waits anxiously for it to happen .", "storylet_id": "213844"}], [{"original_text": "The owners are celebrating the anniversary of their winery. ", "album_id": "72157623077743059", "photo_flickr_id": "4271807918", "setting": "last-3-pick-old-and-tell", "worker_id": "FSIH9JAAQR3YCRR", "story_id": "42769", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the owners are celebrating the anniversary of their winery .", "storylet_id": "213845"}], [{"original_text": "The father's son and his wife join in the celebration", "album_id": "72157623077743059", "photo_flickr_id": "4271064269", "setting": "last-3-pick-old-and-tell", "worker_id": "FSIH9JAAQR3YCRR", "story_id": "42769", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the father 's son and his wife join in the celebration", "storylet_id": "213846"}], [{"original_text": "The couple had a more to drink than the others and it is showing.", "album_id": "72157623077743059", "photo_flickr_id": "4271064693", "setting": "last-3-pick-old-and-tell", "worker_id": "FSIH9JAAQR3YCRR", "story_id": "42769", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the couple had a more to drink than the others and it is showing .", "storylet_id": "213847"}], [{"original_text": "The father and manager are all smiles for this celebration.", "album_id": "72157623077743059", "photo_flickr_id": "4271810446", "setting": "last-3-pick-old-and-tell", "worker_id": "FSIH9JAAQR3YCRR", "story_id": "42769", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the father and manager are all smiles for this celebration .", "storylet_id": "213848"}], [{"original_text": "All the friends gathered and had a great time at the intimate gathering.", "album_id": "72157623077743059", "photo_flickr_id": "4271066033", "setting": "last-3-pick-old-and-tell", "worker_id": "FSIH9JAAQR3YCRR", "story_id": "42769", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the friends gathered and had a great time at the intimate gathering .", "storylet_id": "213849"}], [{"original_text": "A man is outside in the street with all of the city lights before entering a club.", "album_id": "72157623199658422", "photo_flickr_id": "4270038093", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42770", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a man is outside in the street with all of the city lights before entering a club .", "storylet_id": "213850"}], [{"original_text": "After going inside the club, he meets up with a few of his friends.", "album_id": "72157623199658422", "photo_flickr_id": "4270047597", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42770", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after going inside the club , he meets up with a few of his friends .", "storylet_id": "213851"}], [{"original_text": "The man's friends surprise him with a piece of birthday cake and a single candle.", "album_id": "72157623199658422", "photo_flickr_id": "4269255095", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42770", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man 's friends surprise him with a piece of birthday cake and a single candle .", "storylet_id": "213852"}], [{"original_text": "After eating the cake, the man and his friends decide to go onto the dance floor and have some fun.", "album_id": "72157623199658422", "photo_flickr_id": "4269782429", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42770", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after eating the cake , the man and his friends decide to go onto the dance floor and have some fun .", "storylet_id": "213853"}], [{"original_text": "Finally, at the end of the night, the man and his friends relax and watch the beautiful view near a river.", "album_id": "72157623199658422", "photo_flickr_id": "4271642343", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42770", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , at the end of the night , the man and his friends relax and watch the beautiful view near a river .", "storylet_id": "213854"}], [{"original_text": "Hey were going to the dinner theater tonight.", "album_id": "72157623199658422", "photo_flickr_id": "4270038093", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42771", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hey were going to the dinner theater tonight .", "storylet_id": "213855"}], [{"original_text": "wait really? It's been awhile since we went there.", "album_id": "72157623199658422", "photo_flickr_id": "4270039497", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42771", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "wait really ? it 's been awhile since we went there .", "storylet_id": "213856"}], [{"original_text": "My girlfriend showed up as well.", "album_id": "72157623199658422", "photo_flickr_id": "4270788204", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42771", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my girlfriend showed up as well .", "storylet_id": "213857"}], [{"original_text": "We all talked about our day.", "album_id": "72157623199658422", "photo_flickr_id": "4270047597", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42771", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all talked about our day .", "storylet_id": "213858"}], [{"original_text": "Then the show was about to start.", "album_id": "72157623199658422", "photo_flickr_id": "4272383378", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42771", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then the show was about to start .", "storylet_id": "213859"}], [{"original_text": "Its his birthday and all his friends have decided to chip in and give him a goodnight. ", "album_id": "72157623199658422", "photo_flickr_id": "4270038093", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42772", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "its his birthday and all his friends have decided to chip in and give him a goodnight .", "storylet_id": "213860"}], [{"original_text": "The man is anxious to see what is going to take place.", "album_id": "72157623199658422", "photo_flickr_id": "4270039497", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42772", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man is anxious to see what is going to take place .", "storylet_id": "213861"}], [{"original_text": "One of his friends snap a picture of his reaction when he realizes what they are going to do.", "album_id": "72157623199658422", "photo_flickr_id": "4270788204", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42772", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of his friends snap a picture of his reaction when he realizes what they are going to do .", "storylet_id": "213862"}], [{"original_text": "They are at the play \"The one that got away\"", "album_id": "72157623199658422", "photo_flickr_id": "4270047597", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42772", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they are at the play `` the one that got away ''", "storylet_id": "213863"}], [{"original_text": "The play is about to start and the audience is silent in anticipation.", "album_id": "72157623199658422", "photo_flickr_id": "4272383378", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "42772", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the play is about to start and the audience is silent in anticipation .", "storylet_id": "213864"}], [{"original_text": "Dave has arrived in NYC! He is ready to tour the city. The night is young!", "album_id": "72157623199658422", "photo_flickr_id": "4270038093", "setting": "last-3-pick-old-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "42773", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] has arrived in location ! he is ready to tour the city . the night is young !", "storylet_id": "213865"}], [{"original_text": "Dave and a bunch of friends discuss what has been happening in their lives since they last saw each other.", "album_id": "72157623199658422", "photo_flickr_id": "4270047597", "setting": "last-3-pick-old-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "42773", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] and a bunch of friends discuss what has been happening in their lives since they last saw each other .", "storylet_id": "213866"}], [{"original_text": "Here is the cake to celebrate the group getting together tonight. The candle was just for fun!", "album_id": "72157623199658422", "photo_flickr_id": "4269255095", "setting": "last-3-pick-old-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "42773", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is the cake to celebrate the group getting together tonight . the candle was just for fun !", "storylet_id": "213867"}], [{"original_text": "The night time scene of NYC is pretty awesome. The light did not come out good in this photo.", "album_id": "72157623199658422", "photo_flickr_id": "4269782429", "setting": "last-3-pick-old-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "42773", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the night time scene of nyc is pretty awesome . the light did not come out good in this photo .", "storylet_id": "213868"}], [{"original_text": "Here is a better photo. This is NYC skyline. Seeing the lights and water makes me happy.", "album_id": "72157623199658422", "photo_flickr_id": "4271642343", "setting": "last-3-pick-old-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "42773", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is a better photo . this is organization organization . seeing the lights and water makes me happy .", "storylet_id": "213869"}], [{"original_text": "Arriving at the club for a well deserved night out even if it is a lecture for work.", "album_id": "72157623199658422", "photo_flickr_id": "4270038093", "setting": "last-3-pick-old-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "42774", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "arriving at the club for a well deserved night out even if it is a lecture for work .", "storylet_id": "213870"}], [{"original_text": "Waiting for my buddy to show up so we can hang and have a good time.", "album_id": "72157623199658422", "photo_flickr_id": "4270039497", "setting": "last-3-pick-old-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "42774", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "waiting for my buddy to show up so we can hang and have a good time .", "storylet_id": "213871"}], [{"original_text": "Oh look, someone taking selfies already./haha At least we were able to find a table up front.", "album_id": "72157623199658422", "photo_flickr_id": "4270788204", "setting": "last-3-pick-old-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "42774", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "oh look , someone taking selfies already./haha at least we were able to find a table up front .", "storylet_id": "213872"}], [{"original_text": "A few of my friends chatting it up before the lecture begins. We always have a good time together.", "album_id": "72157623199658422", "photo_flickr_id": "4270047597", "setting": "last-3-pick-old-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "42774", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a few of my friends chatting it up before the lecture begins . we always have a good time together .", "storylet_id": "213873"}], [{"original_text": "The lecture was getting started so one last picture of the place and speaker.", "album_id": "72157623199658422", "photo_flickr_id": "4272383378", "setting": "last-3-pick-old-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "42774", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lecture was getting started so one last picture of the place and speaker .", "storylet_id": "213874"}], [{"original_text": "We hung out with some friends.", "album_id": "234980", "photo_flickr_id": "9355124", "setting": "first-2-pick-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "42775", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we hung out with some friends .", "storylet_id": "213875"}], [{"original_text": "The king and queen of the event were very happy.", "album_id": "234980", "photo_flickr_id": "9355137", "setting": "first-2-pick-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "42775", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the king and queen of the event were very happy .", "storylet_id": "213876"}], [{"original_text": "There was some silliness.", "album_id": "234980", "photo_flickr_id": "9355191", "setting": "first-2-pick-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "42775", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was some silliness .", "storylet_id": "213877"}], [{"original_text": "There was also food.", "album_id": "234980", "photo_flickr_id": "9355221", "setting": "first-2-pick-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "42775", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also food .", "storylet_id": "213878"}], [{"original_text": "And of course, there was beer.", "album_id": "234980", "photo_flickr_id": "9355095", "setting": "first-2-pick-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "42775", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and of course , there was beer .", "storylet_id": "213879"}], [{"original_text": "We were taken out for food and drinks by our friends and I should have known by the way they were acting that something was up.", "album_id": "234980", "photo_flickr_id": "9355158", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42776", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were taken out for food and drinks by our friends and i should have known by the way they were acting that something was up .", "storylet_id": "213880"}], [{"original_text": "Drinks started to flow and things got a bit strange with the the food but it was all in good fun and we had a lot of fun.", "album_id": "234980", "photo_flickr_id": "9355195", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42776", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "drinks started to flow and things got a bit strange with the the food but it was all in good fun and we had a lot of fun .", "storylet_id": "213881"}], [{"original_text": "They even made us wear these costume hats to be king and queen for the evening which I never saw coming.", "album_id": "234980", "photo_flickr_id": "9355137", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42776", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even made us wear these costume hats to be king and queen for the evening which i never saw coming .", "storylet_id": "213882"}], [{"original_text": "I still don't remember doing this with the tiara but I was having fun it looks like from the big beer drinkers smile on my face.", "album_id": "234980", "photo_flickr_id": "9355184", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42776", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i still do n't remember doing this with the tiara but i was having fun it looks like from the big beer drinkers smile on my face .", "storylet_id": "213883"}], [{"original_text": "A couple that are our best friends even got in on the action and I am glad I was not the only one with the tiara on in a picture which I never will let him forget. (Let the good times roll!)", "album_id": "234980", "photo_flickr_id": "9355250", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42776", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a couple that are our best friends even got in on the action and i am glad i was not the only one with the tiara on in a picture which i never will let him forget . ( let the good times roll ! )", "storylet_id": "213884"}], [{"original_text": "Our friends always gather to celbrate Mardi Gras.", "album_id": "234980", "photo_flickr_id": "9355124", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42777", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our friends always gather to celbrate organization organization .", "storylet_id": "213885"}], [{"original_text": "This year Kent and Barbie were king and queen.", "album_id": "234980", "photo_flickr_id": "9355137", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42777", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this year [male] and barbie were king and queen .", "storylet_id": "213886"}], [{"original_text": "Kent always tries to gross us out.", "album_id": "234980", "photo_flickr_id": "9355191", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42777", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] always tries to gross us out .", "storylet_id": "213887"}], [{"original_text": "He made a disgusting-looking dip that was being devoured by town dinosaurs.", "album_id": "234980", "photo_flickr_id": "9355221", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42777", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he made a disgusting-looking dip that was being devoured by town dinosaurs .", "storylet_id": "213888"}], [{"original_text": "In the end, it's all about good friends hanging out together.", "album_id": "234980", "photo_flickr_id": "9355095", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42777", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , it 's all about good friends hanging out together .", "storylet_id": "213889"}], [{"original_text": "Looks like a good olfashioned get together with friends.", "album_id": "234980", "photo_flickr_id": "9355124", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42778", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "looks like a good olfashioned get together with friends .", "storylet_id": "213890"}], [{"original_text": "These two are king,and queen of the evening.", "album_id": "234980", "photo_flickr_id": "9355137", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42778", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these two are king , and queen of the evening .", "storylet_id": "213891"}], [{"original_text": "I have no idea what this is on the tip of his finger, looks like a bug.", "album_id": "234980", "photo_flickr_id": "9355191", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42778", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i have no idea what this is on the tip of his finger , looks like a bug .", "storylet_id": "213892"}], [{"original_text": "There are all sorts of toy animal figures in the food.", "album_id": "234980", "photo_flickr_id": "9355221", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42778", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are all sorts of toy animal figures in the food .", "storylet_id": "213893"}], [{"original_text": "This was some wild fun scene to be apart of.", "album_id": "234980", "photo_flickr_id": "9355095", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42778", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was some wild fun scene to be apart of .", "storylet_id": "213894"}], [{"original_text": "They had their annual birthday dinner party for two of their friends. ", "album_id": "234980", "photo_flickr_id": "9355124", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42779", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they had their annual birthday dinner party for two of their friends .", "storylet_id": "213895"}], [{"original_text": "They got them a crown and tiara so everyone would know that it was their special night.", "album_id": "234980", "photo_flickr_id": "9355137", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42779", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got them a crown and tiara so everyone would know that it was their special night .", "storylet_id": "213896"}], [{"original_text": "One of the friends found a prawn that looked like a cockroach and dared everyone to eat it.", "album_id": "234980", "photo_flickr_id": "9355191", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42779", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the friends found a prawn that looked like a cockroach and dared everyone to eat it .", "storylet_id": "213897"}], [{"original_text": "No one took him up on it because of all the delicious food. The restaurant even placed toy dinosaurs on the dishes by special request.", "album_id": "234980", "photo_flickr_id": "9355221", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42779", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "no one took him up on it because of all the delicious food . the restaurant even placed toy dinosaurs on the dishes by special request .", "storylet_id": "213898"}], [{"original_text": "They finished the night with a pub crawl. Everyone enjoyed the party very much.", "album_id": "234980", "photo_flickr_id": "9355095", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42779", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they finished the night with a pub crawl . everyone enjoyed the party very much .", "storylet_id": "213899"}], [{"original_text": "Delmar and Muriel looking lovely as ever.", "album_id": "72157623622591484", "photo_flickr_id": "4434267712", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42780", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] looking lovely as ever .", "storylet_id": "213900"}], [{"original_text": "Delmar in a record store in the late 80s.", "album_id": "72157623622591484", "photo_flickr_id": "4433494255", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42780", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] in a record store in the late 80s .", "storylet_id": "213901"}], [{"original_text": "Here is the love birds at some restaurant in japan.", "album_id": "72157623622591484", "photo_flickr_id": "4433494547", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42780", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is the love birds at some restaurant in japan .", "storylet_id": "213902"}], [{"original_text": "They had some good times together they stayed together forever.", "album_id": "72157623622591484", "photo_flickr_id": "4434268532", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42780", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had some good times together they stayed together forever .", "storylet_id": "213903"}], [{"original_text": "The two love birds at a vacation in the rocky mountains in the summer of 96.", "album_id": "72157623622591484", "photo_flickr_id": "4434269054", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42780", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the two love birds at a vacation in the rocky mountains in the summer of 96 .", "storylet_id": "213904"}], [{"original_text": "Happy birthday, Delmar \"Del\" Coulter!", "album_id": "72157623622591484", "photo_flickr_id": "4433496541", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "42781", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "happy birthday , [male] `` del '' coulter !", "storylet_id": "213905"}], [{"original_text": "It's great looking back at your old pictures, like your old house.", "album_id": "72157623622591484", "photo_flickr_id": "4434271426", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "42781", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's great looking back at your old pictures , like your old house .", "storylet_id": "213906"}], [{"original_text": "You and your wife, Muriel have traveled around the world together.", "album_id": "72157623622591484", "photo_flickr_id": "4434269054", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "42781", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you and your wife , [female] have traveled around the world together .", "storylet_id": "213907"}], [{"original_text": "Your grandchildren are growing up so quickly.", "album_id": "72157623622591484", "photo_flickr_id": "4434269400", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "42781", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "your grandchildren are growing up so quickly .", "storylet_id": "213908"}], [{"original_text": "Here's to you and many more years of living the life!", "album_id": "72157623622591484", "photo_flickr_id": "4433496803", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "42781", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's to you and many more years of living the life !", "storylet_id": "213909"}], [{"original_text": "My grandparents church picture in 1992. They are so cute.", "album_id": "72157623622591484", "photo_flickr_id": "4434267712", "setting": "last-3-pick-old-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "42782", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my grandparents church picture in 1992 . they are so cute .", "storylet_id": "213910"}], [{"original_text": "My grandpa at the library.", "album_id": "72157623622591484", "photo_flickr_id": "4433494255", "setting": "last-3-pick-old-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "42782", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my grandpa at the library .", "storylet_id": "213911"}], [{"original_text": "My grandparents at their anniversary dinner.", "album_id": "72157623622591484", "photo_flickr_id": "4433494547", "setting": "last-3-pick-old-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "42782", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my grandparents at their anniversary dinner .", "storylet_id": "213912"}], [{"original_text": "My grandparents again. Hope I meet someone and am married as long as them.", "album_id": "72157623622591484", "photo_flickr_id": "4434268532", "setting": "last-3-pick-old-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "42782", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my grandparents again . [female] i meet someone and am married as long as them .", "storylet_id": "213913"}], [{"original_text": "We took them on a much needed vacation to the mountains. They loved it.", "album_id": "72157623622591484", "photo_flickr_id": "4434269054", "setting": "last-3-pick-old-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "42782", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took them on a much needed vacation to the mountains . they loved it .", "storylet_id": "213914"}], [{"original_text": "I had a great time today.", "album_id": "72157623622591484", "photo_flickr_id": "4434267712", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42783", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time today .", "storylet_id": "213915"}], [{"original_text": "I went to the cafe to grab some coffee.", "album_id": "72157623622591484", "photo_flickr_id": "4433494255", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42783", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went to the cafe to grab some coffee .", "storylet_id": "213916"}], [{"original_text": "We really enjoyed the coffee there.", "album_id": "72157623622591484", "photo_flickr_id": "4433494547", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42783", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we really enjoyed the coffee there .", "storylet_id": "213917"}], [{"original_text": "Everyone wanted to take pictures of us.", "album_id": "72157623622591484", "photo_flickr_id": "4434268532", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42783", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone wanted to take pictures of us .", "storylet_id": "213918"}], [{"original_text": "We spent the rest of the day taking pictures.", "album_id": "72157623622591484", "photo_flickr_id": "4434269054", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42783", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we spent the rest of the day taking pictures .", "storylet_id": "213919"}], [{"original_text": "Delmar and Muriel had met in high school. ", "album_id": "72157623622591484", "photo_flickr_id": "4434267712", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42784", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] had met in high school .", "storylet_id": "213920"}], [{"original_text": "He was ancient. ", "album_id": "72157623622591484", "photo_flickr_id": "4433494255", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42784", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was ancient .", "storylet_id": "213921"}], [{"original_text": "She loved him anyway. ", "album_id": "72157623622591484", "photo_flickr_id": "4433494547", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42784", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she loved him anyway .", "storylet_id": "213922"}], [{"original_text": "She was going blind now. ", "album_id": "72157623622591484", "photo_flickr_id": "4434268532", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42784", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was going blind now .", "storylet_id": "213923"}], [{"original_text": "That would suck when they went sight seeing. ", "album_id": "72157623622591484", "photo_flickr_id": "4434269054", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42784", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that would suck when they went sight seeing .", "storylet_id": "213924"}], [{"original_text": "They all went out for some drinks and food.", "album_id": "85112", "photo_flickr_id": "3393833", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42785", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they all went out for some drinks and food .", "storylet_id": "213925"}], [{"original_text": "This looked so tasty and smelled wonderful.", "album_id": "85112", "photo_flickr_id": "3394211", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42785", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this looked so tasty and smelled wonderful .", "storylet_id": "213926"}], [{"original_text": "The pastries were delicious.", "album_id": "85112", "photo_flickr_id": "3394396", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42785", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the pastries were delicious .", "storylet_id": "213927"}], [{"original_text": "They were enjoying some fun conversation with him.", "album_id": "85112", "photo_flickr_id": "3395020", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42785", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were enjoying some fun conversation with him .", "storylet_id": "213928"}], [{"original_text": "The stamp was a way to remember the night.", "album_id": "85112", "photo_flickr_id": "3395876", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42785", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the stamp was a way to remember the night .", "storylet_id": "213929"}], [{"original_text": "Josh is having a very good time watching the game with his friends at a local sports bar.", "album_id": "85112", "photo_flickr_id": "3394079", "setting": "first-2-pick-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "42786", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "josh is having a very good time watching the game with his friends at a local sports bar .", "storylet_id": "213930"}], [{"original_text": "The game has just begun and his favorite team is already in the lead.", "album_id": "85112", "photo_flickr_id": "3394593", "setting": "first-2-pick-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "42786", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the game has just begun and his favorite team is already in the lead .", "storylet_id": "213931"}], [{"original_text": "Half time comes and Josh talks to Nancy for a little while.", "album_id": "85112", "photo_flickr_id": "3394754", "setting": "first-2-pick-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "42786", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "half time comes and josh talks to [female] for a little while .", "storylet_id": "213932"}], [{"original_text": "Josh laughs so hard at his friend mikes joke that he literally spit some of his drink out of his mouth.", "album_id": "85112", "photo_flickr_id": "3395355", "setting": "first-2-pick-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "42786", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "josh laughs so hard at his friend mikes joke that he literally spit some of his drink out of his mouth .", "storylet_id": "213933"}], [{"original_text": "The game is now over and Josh's team lost. Josh is upset, and now ready to go home.", "album_id": "85112", "photo_flickr_id": "3395520", "setting": "first-2-pick-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "42786", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the game is now over and josh 's team lost . josh is upset , and now ready to go home .", "storylet_id": "213934"}], [{"original_text": "We arrived just in time to see all of our old friends.", "album_id": "85112", "photo_flickr_id": "3393833", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42787", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived just in time to see all of our old friends .", "storylet_id": "213935"}], [{"original_text": "The food all looked amazing.", "album_id": "85112", "photo_flickr_id": "3394211", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42787", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the food all looked amazing .", "storylet_id": "213936"}], [{"original_text": "The desserts were just as good.", "album_id": "85112", "photo_flickr_id": "3394396", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42787", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the desserts were just as good .", "storylet_id": "213937"}], [{"original_text": "We talked all night long.", "album_id": "85112", "photo_flickr_id": "3395020", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42787", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we talked all night long .", "storylet_id": "213938"}], [{"original_text": "Some of us even got tattooed to celebrate.", "album_id": "85112", "photo_flickr_id": "3395876", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42787", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of us even got tattooed to celebrate .", "storylet_id": "213939"}], [{"original_text": "We dined at this French put on our European tour.", "album_id": "85112", "photo_flickr_id": "3393833", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42788", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we dined at this french put on our european tour .", "storylet_id": "213940"}], [{"original_text": "I couldn't pronounce the name of this dish, but it was delicious!", "album_id": "85112", "photo_flickr_id": "3394211", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42788", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i could n't pronounce the name of this dish , but it was delicious !", "storylet_id": "213941"}], [{"original_text": "The dessert was the best part of the meal.", "album_id": "85112", "photo_flickr_id": "3394396", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42788", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dessert was the best part of the meal .", "storylet_id": "213942"}], [{"original_text": "But the conversation afterward was even better.", "album_id": "85112", "photo_flickr_id": "3395020", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42788", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but the conversation afterward was even better .", "storylet_id": "213943"}], [{"original_text": "The admission stamp reminded us of our adventure until it washed away.", "album_id": "85112", "photo_flickr_id": "3395876", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42788", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the admission stamp reminded us of our adventure until it washed away .", "storylet_id": "213944"}], [{"original_text": "The study group went out for drinks after class.", "album_id": "85112", "photo_flickr_id": "3394079", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42789", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the study group went out for drinks after class .", "storylet_id": "213945"}], [{"original_text": "Joe was trying to find someone to come with him on a trip to Nepal.", "album_id": "85112", "photo_flickr_id": "3394593", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42789", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was trying to find someone to come with him on a trip to location .", "storylet_id": "213946"}], [{"original_text": "Georgia asked him why Nepal was the place he wanted to go to.", "album_id": "85112", "photo_flickr_id": "3394754", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42789", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "location asked him why location was the place he wanted to go to .", "storylet_id": "213947"}], [{"original_text": "Joe told them about his lifelong dream to see Mount Everest.", "album_id": "85112", "photo_flickr_id": "3395355", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42789", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] told them about his lifelong dream to see location location .", "storylet_id": "213948"}], [{"original_text": "But no else was interested, so Joe decided to pay for his drinks and go home alone.", "album_id": "85112", "photo_flickr_id": "3395520", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42789", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but no else was interested , so [male] decided to pay for his drinks and go home alone .", "storylet_id": "213949"}], [{"original_text": "Tonight was a practice jam session with my band.", "album_id": "72157623091374699", "photo_flickr_id": "4276340405", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42790", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "tonight was a practice jam session with my band .", "storylet_id": "213950"}], [{"original_text": "Our bassist always has something funny to say.", "album_id": "72157623091374699", "photo_flickr_id": "4276337511", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42790", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our bassist always has something funny to say .", "storylet_id": "213951"}], [{"original_text": "While the drummer thinks he's cool and smooth.", "album_id": "72157623091374699", "photo_flickr_id": "4277081974", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42790", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "while the drummer thinks he 's cool and smooth .", "storylet_id": "213952"}], [{"original_text": "Sometimes we run into each other.", "album_id": "72157623091374699", "photo_flickr_id": "4276339373", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42790", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes we run into each other .", "storylet_id": "213953"}], [{"original_text": "In the end the boys and I always have a great time.", "album_id": "72157623091374699", "photo_flickr_id": "4277083704", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42790", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end the boys and i always have a great time .", "storylet_id": "213954"}], [{"original_text": "The lead singer from the show was really great!", "album_id": "72157623091374699", "photo_flickr_id": "4277085500", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42791", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lead singer from the show was really great !", "storylet_id": "213955"}], [{"original_text": "The drummer kept the song together", "album_id": "72157623091374699", "photo_flickr_id": "4277081974", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42791", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the drummer kept the song together", "storylet_id": "213956"}], [{"original_text": "The crowd was really enjoying the show", "album_id": "72157623091374699", "photo_flickr_id": "4277082614", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42791", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowd was really enjoying the show", "storylet_id": "213957"}], [{"original_text": "It looks like the lead singer was having a good time ", "album_id": "72157623091374699", "photo_flickr_id": "4276298067", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42791", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looks like the lead singer was having a good time", "storylet_id": "213958"}], [{"original_text": "These two played great together", "album_id": "72157623091374699", "photo_flickr_id": "4276338811", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42791", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these two played great together", "storylet_id": "213959"}], [{"original_text": "Got to see my brothers band play live for the first time. They are so good.", "album_id": "72157623091374699", "photo_flickr_id": "4276340405", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42792", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "got to see my brothers band play live for the first time . they are so good .", "storylet_id": "213960"}], [{"original_text": "The bassist was such a goof!", "album_id": "72157623091374699", "photo_flickr_id": "4276337511", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42792", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bassist was such a goof !", "storylet_id": "213961"}], [{"original_text": "Heres my brother tearing up the drums.", "album_id": "72157623091374699", "photo_flickr_id": "4277081974", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42792", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "heres my brother tearing up the drums .", "storylet_id": "213962"}], [{"original_text": "They get so intense when they play, so much energy!", "album_id": "72157623091374699", "photo_flickr_id": "4276339373", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42792", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they get so intense when they play , so much energy !", "storylet_id": "213963"}], [{"original_text": "Glad the lead singer was able to sing through his cold, such a great show!", "album_id": "72157623091374699", "photo_flickr_id": "4277083704", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42792", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "glad the lead singer was able to sing through his cold , such a great show !", "storylet_id": "213964"}], [{"original_text": "The band played a great set at the pub.", "album_id": "72157623091374699", "photo_flickr_id": "4276340405", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42793", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the band played a great set at the pub .", "storylet_id": "213965"}], [{"original_text": "The bass player was having a lot of fun.", "album_id": "72157623091374699", "photo_flickr_id": "4276337511", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42793", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bass player was having a lot of fun .", "storylet_id": "213966"}], [{"original_text": "and the drummer was mugging away, as he laid down the beat. ", "album_id": "72157623091374699", "photo_flickr_id": "4277081974", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42793", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the drummer was mugging away , as he laid down the beat .", "storylet_id": "213967"}], [{"original_text": "Some of the classic stage moves this young band performed. ", "album_id": "72157623091374699", "photo_flickr_id": "4276339373", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42793", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the classic stage moves this young band performed .", "storylet_id": "213968"}], [{"original_text": "The lead guitarist was feeling good about the performance, sure that he was all that and a bag of chips. ", "album_id": "72157623091374699", "photo_flickr_id": "4277083704", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42793", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lead guitarist was feeling good about the performance , sure that he was all that and a bag of chips .", "storylet_id": "213969"}], [{"original_text": "Yeah, we are the best rock band in Europe", "album_id": "72157623091374699", "photo_flickr_id": "4276340405", "setting": "last-3-pick-old-and-tell", "worker_id": "HRUUL87C5D4ZXUT", "story_id": "42794", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yeah , we are the best rock band in location", "storylet_id": "213970"}], [{"original_text": "They told me I had to stand in the back because I'm the base player.", "album_id": "72157623091374699", "photo_flickr_id": "4276337511", "setting": "last-3-pick-old-and-tell", "worker_id": "HRUUL87C5D4ZXUT", "story_id": "42794", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they told me i had to stand in the back because i 'm the base player .", "storylet_id": "213971"}], [{"original_text": "Man this is a killer band. My ear drums are bleeding.", "album_id": "72157623091374699", "photo_flickr_id": "4277081974", "setting": "last-3-pick-old-and-tell", "worker_id": "HRUUL87C5D4ZXUT", "story_id": "42794", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "man this is a killer band . my ear drums are bleeding .", "storylet_id": "213972"}], [{"original_text": "I told you the base player has to stand in the back. Get out of my face you selfish lead guitarist.", "album_id": "72157623091374699", "photo_flickr_id": "4276339373", "setting": "last-3-pick-old-and-tell", "worker_id": "HRUUL87C5D4ZXUT", "story_id": "42794", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i told you the base player has to stand in the back . get out of my face you selfish lead guitarist .", "storylet_id": "213973"}], [{"original_text": "That's right dude. I'm the lead guitarist and I'm the best and prettiest so I get to be up front.", "album_id": "72157623091374699", "photo_flickr_id": "4277083704", "setting": "last-3-pick-old-and-tell", "worker_id": "HRUUL87C5D4ZXUT", "story_id": "42794", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that 's right dude . i 'm the lead guitarist and i 'm the best and prettiest so i get to be up front .", "storylet_id": "213974"}], [{"original_text": "My parents came down for a local event on the weekend. In the morning we went to the beach.", "album_id": "72157623323161887", "photo_flickr_id": "4362307673", "setting": "first-2-pick-and-tell", "worker_id": "KJ4OOQS7M99VO07", "story_id": "42795", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my parents came down for a local event on the weekend . in the morning we went to the beach .", "storylet_id": "213975"}], [{"original_text": "In the evening we decided to have dinner at a local resturant. ", "album_id": "72157623323161887", "photo_flickr_id": "4362328483", "setting": "first-2-pick-and-tell", "worker_id": "KJ4OOQS7M99VO07", "story_id": "42795", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in the evening we decided to have dinner at a local resturant .", "storylet_id": "213976"}], [{"original_text": "There we happened to see my high school teacher Mrs. Gregg.", "album_id": "72157623323161887", "photo_flickr_id": "4362343943", "setting": "first-2-pick-and-tell", "worker_id": "KJ4OOQS7M99VO07", "story_id": "42795", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there we happened to see my high school teacher mrs. [male] .", "storylet_id": "213977"}], [{"original_text": "They were nice enough to join us for dinner so we decided to capture the moment. ", "album_id": "72157623323161887", "photo_flickr_id": "4363108240", "setting": "first-2-pick-and-tell", "worker_id": "KJ4OOQS7M99VO07", "story_id": "42795", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were nice enough to join us for dinner so we decided to capture the moment .", "storylet_id": "213978"}], [{"original_text": "Little did we know it was their 50th anniversary, so we got to celebrate their day with the. ", "album_id": "72157623323161887", "photo_flickr_id": "4363114300", "setting": "first-2-pick-and-tell", "worker_id": "KJ4OOQS7M99VO07", "story_id": "42795", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "little did we know it was their 50th anniversary , so we got to celebrate their day with the .", "storylet_id": "213979"}], [{"original_text": "This woman is visiting her family in Florida.", "album_id": "72157623323161887", "photo_flickr_id": "4363036100", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42796", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this woman is visiting her family in location .", "storylet_id": "213980"}], [{"original_text": "She talks her parents into joining her at the beach.", "album_id": "72157623323161887", "photo_flickr_id": "4363043408", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42796", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she talks her parents into joining her at the beach .", "storylet_id": "213981"}], [{"original_text": "The restaurants have fish tanks in them.", "album_id": "72157623323161887", "photo_flickr_id": "4362321461", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42796", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the restaurants have fish tanks in them .", "storylet_id": "213982"}], [{"original_text": "Dinner was good and family time was better.", "album_id": "72157623323161887", "photo_flickr_id": "4362359255", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42796", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dinner was good and family time was better .", "storylet_id": "213983"}], [{"original_text": "It was a great dinner and vacation.", "album_id": "72157623323161887", "photo_flickr_id": "4363114300", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42796", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great dinner and vacation .", "storylet_id": "213984"}], [{"original_text": "That's me on the left. My great day started with a visit to the beach with my parents.", "album_id": "72157623323161887", "photo_flickr_id": "4362307673", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "42797", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "that 's me on the left . my great day started with a visit to the beach with my parents .", "storylet_id": "213985"}], [{"original_text": "That evening I attended an awards ceremony. Those are my dear friends.", "album_id": "72157623323161887", "photo_flickr_id": "4362328483", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "42797", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that evening i attended an awards ceremony . those are my dear friends .", "storylet_id": "213986"}], [{"original_text": "My parents came from California. They look nervous in this photo but they were very excited.", "album_id": "72157623323161887", "photo_flickr_id": "4362343943", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "42797", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my parents came from location . they look nervous in this photo but they were very excited .", "storylet_id": "213987"}], [{"original_text": "That's me, just before I received my award. Smiles all around.", "album_id": "72157623323161887", "photo_flickr_id": "4363108240", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "42797", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that 's me , just before i received my award . smiles all around .", "storylet_id": "213988"}], [{"original_text": "Now the hard part: that's the Master of Ceremonies introducing me. I have to make a speech. I'm ready!", "album_id": "72157623323161887", "photo_flickr_id": "4363114300", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "42797", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now the hard part : that 's the master of ceremonies introducing me . i have to make a speech . i 'm ready !", "storylet_id": "213989"}], [{"original_text": "The restaurant chosen for the party had an ocean view.", "album_id": "72157623323161887", "photo_flickr_id": "4362307673", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42798", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the restaurant chosen for the party had an ocean view .", "storylet_id": "213990"}], [{"original_text": "Here are three siblings that travelled in from out of state.", "album_id": "72157623323161887", "photo_flickr_id": "4362328483", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42798", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here are three siblings that travelled in from out of state .", "storylet_id": "213991"}], [{"original_text": "My aunt and uncle have been married for 40 years! The party was for them.", "album_id": "72157623323161887", "photo_flickr_id": "4362343943", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42798", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my aunt and uncle have been married for 40 years ! the party was for them .", "storylet_id": "213992"}], [{"original_text": "The guests of honor proudly posed with their children.", "album_id": "72157623323161887", "photo_flickr_id": "4363108240", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42798", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guests of honor proudly posed with their children .", "storylet_id": "213993"}], [{"original_text": "The cake with a sparkler was the final touch to a wonderful family gathering. ", "album_id": "72157623323161887", "photo_flickr_id": "4363114300", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42798", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cake with a sparkler was the final touch to a wonderful family gathering .", "storylet_id": "213994"}], [{"original_text": "We decided to have our grandparents anniversary celebration at the beach this year. ", "album_id": "72157623323161887", "photo_flickr_id": "4362307673", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42799", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to have our grandparents anniversary celebration at the beach this year .", "storylet_id": "213995"}], [{"original_text": "It was great because a lot of the grandchildren were able to make it in. ", "album_id": "72157623323161887", "photo_flickr_id": "4362328483", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42799", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was great because a lot of the grandchildren were able to make it in .", "storylet_id": "213996"}], [{"original_text": "Of course the guests of honor were happy to see everyone, even though they didn't show it much. ", "album_id": "72157623323161887", "photo_flickr_id": "4362343943", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42799", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course the guests of honor were happy to see everyone , even though they did n't show it much .", "storylet_id": "213997"}], [{"original_text": "Even having the kids gather around them really didn't light them up as much as we had hoped. ", "album_id": "72157623323161887", "photo_flickr_id": "4363108240", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42799", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even having the kids gather around them really did n't light them up as much as we had hoped .", "storylet_id": "213998"}], [{"original_text": "But they did seem kind of amused when the fireworks cake showed up. ", "album_id": "72157623323161887", "photo_flickr_id": "4363114300", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42799", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but they did seem kind of amused when the fireworks cake showed up .", "storylet_id": "213999"}], [{"original_text": "Ready for a crazy night at the bar?", "album_id": "72157623325553883", "photo_flickr_id": "4363991158", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42800", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "ready for a crazy night at the bar ?", "storylet_id": "214000"}], [{"original_text": "Our night started with operation.", "album_id": "72157623325553883", "photo_flickr_id": "4363247451", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42800", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our night started with operation .", "storylet_id": "214001"}], [{"original_text": "Then moving on to bingo.", "album_id": "72157623325553883", "photo_flickr_id": "4363991460", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42800", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then moving on to bingo .", "storylet_id": "214002"}], [{"original_text": "This guy thinks there is better things to do.", "album_id": "72157623325553883", "photo_flickr_id": "4363991670", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42800", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this guy thinks there is better things to do .", "storylet_id": "214003"}], [{"original_text": "How about some death defying acts?", "album_id": "72157623325553883", "photo_flickr_id": "4363992082", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42800", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "how about some death defying acts ?", "storylet_id": "214004"}], [{"original_text": "Jake and his friend are out for a drink.", "album_id": "72157623325553883", "photo_flickr_id": "4363991158", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42801", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and his friend are out for a drink .", "storylet_id": "214005"}], [{"original_text": "They order some food to eat.", "album_id": "72157623325553883", "photo_flickr_id": "4363991460", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42801", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they order some food to eat .", "storylet_id": "214006"}], [{"original_text": "Jake is really having a good time.", "album_id": "72157623325553883", "photo_flickr_id": "4363991670", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42801", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] is really having a good time .", "storylet_id": "214007"}], [{"original_text": "They sit down and watch as a show is performed.", "album_id": "72157623325553883", "photo_flickr_id": "4363248063", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42801", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they sit down and watch as a show is performed .", "storylet_id": "214008"}], [{"original_text": "The show is really risque but they seem to really like it.", "album_id": "72157623325553883", "photo_flickr_id": "4363248279", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42801", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the show is really risque but they seem to really like it .", "storylet_id": "214009"}], [{"original_text": "We all gathered at the bar. ", "album_id": "72157623325553883", "photo_flickr_id": "4363991158", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42802", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all gathered at the bar .", "storylet_id": "214010"}], [{"original_text": "It was game night there, so bound to be a good time. ", "album_id": "72157623325553883", "photo_flickr_id": "4363247451", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42802", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was game night there , so bound to be a good time .", "storylet_id": "214011"}], [{"original_text": "My favorite was we were going to play bingo. ", "album_id": "72157623325553883", "photo_flickr_id": "4363991460", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42802", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my favorite was we were going to play bingo .", "storylet_id": "214012"}], [{"original_text": "He was pretty happy that he won the first round. ", "album_id": "72157623325553883", "photo_flickr_id": "4363991670", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42802", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was pretty happy that he won the first round .", "storylet_id": "214013"}], [{"original_text": "One guy fell off the stage from drinking a little too much.", "album_id": "72157623325553883", "photo_flickr_id": "4363992082", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42802", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one guy fell off the stage from drinking a little too much .", "storylet_id": "214014"}], [{"original_text": "It was our weekly gathering at the bar for playing board games.", "album_id": "72157623325553883", "photo_flickr_id": "4363991158", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42803", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was our weekly gathering at the bar for playing board games .", "storylet_id": "214015"}], [{"original_text": "We waited patiently for our late arrival. We won't start without him.", "album_id": "72157623325553883", "photo_flickr_id": "4363991460", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42803", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we waited patiently for our late arrival . we wo n't start without him .", "storylet_id": "214016"}], [{"original_text": "There he is, late as usual. But he's a great guy so all is forgiven.", "album_id": "72157623325553883", "photo_flickr_id": "4363991670", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42803", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there he is , late as usual . but he 's a great guy so all is forgiven .", "storylet_id": "214017"}], [{"original_text": "We put the games away when we were treated to an unexpected show.", "album_id": "72157623325553883", "photo_flickr_id": "4363248063", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42803", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we put the games away when we were treated to an unexpected show .", "storylet_id": "214018"}], [{"original_text": "It was bawdy and fun. A nice change from our routine.", "album_id": "72157623325553883", "photo_flickr_id": "4363248279", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42803", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was bawdy and fun . a nice change from our routine .", "storylet_id": "214019"}], [{"original_text": "We had a birthday get together at a local comedy club for Phil.", "album_id": "72157623325553883", "photo_flickr_id": "4363991158", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42804", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a birthday get together at a local comedy club for [male] .", "storylet_id": "214020"}], [{"original_text": "Since we had known him since we were all kids, we thought \"Operation\" would be a great game to get for him, since we all used to play it at his house as children. ", "album_id": "72157623325553883", "photo_flickr_id": "4363247451", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42804", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "since we had known him since we were all kids , we thought `` operation '' would be a great game to get for him , since we all used to play it at his house as children .", "storylet_id": "214021"}], [{"original_text": "And since his mom is a bingo fanatic, we got that too, telling him that soon he would be hitting the bingo parlors. ", "album_id": "72157623325553883", "photo_flickr_id": "4363991460", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42804", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and since his mom is a bingo fanatic , we got that too , telling him that soon he would be hitting the bingo parlors .", "storylet_id": "214022"}], [{"original_text": "His brother flew in from Seattle and had a great time as well. ", "album_id": "72157623325553883", "photo_flickr_id": "4363991670", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42804", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his brother flew in from location and had a great time as well .", "storylet_id": "214023"}], [{"original_text": "The improv comedy was a little...weird. But everyone seemed to enjoy it. ", "album_id": "72157623325553883", "photo_flickr_id": "4363992082", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42804", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the improv comedy was a little ... weird . but everyone seemed to enjoy it .", "storylet_id": "214024"}], [{"original_text": "This is me, Hi! I went to Zappers last night with some friends. That's them behind me. ", "album_id": "72157623446666698", "photo_flickr_id": "4362613984", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "42805", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is me , hi ! i went to zappers last night with some friends . that 's them behind me .", "storylet_id": "214025"}], [{"original_text": "Here's the room we were in. ", "album_id": "72157623446666698", "photo_flickr_id": "4362622112", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "42805", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's the room we were in .", "storylet_id": "214026"}], [{"original_text": "Little Samantha was there for a little while. She was adorable but wouldn't look at the camera for me. ", "album_id": "72157623446666698", "photo_flickr_id": "4361880245", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "42805", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "little [female] was there for a little while . she was adorable but would n't look at the camera for me .", "storylet_id": "214027"}], [{"original_text": "Later on I found Gizma and Lori talking about man problems. ", "album_id": "72157623446666698", "photo_flickr_id": "4361883129", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "42805", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later on i found gizma and [female] talking about man problems .", "storylet_id": "214028"}], [{"original_text": "Towards the end of the night Lori and John-boy wrestled and she beat him every time! ", "album_id": "72157623446666698", "photo_flickr_id": "4362627842", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "42805", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "towards the end of the night [female] and john-boy wrestled and she beat him every time !", "storylet_id": "214029"}], [{"original_text": "Jamie is throwing a party for her friends.", "album_id": "72157623446666698", "photo_flickr_id": "4362613984", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42806", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is throwing a party for her friends .", "storylet_id": "214030"}], [{"original_text": "Her friend Jessica grabs a drink and starts to drink.", "album_id": "72157623446666698", "photo_flickr_id": "4362623068", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42806", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her friend [female] grabs a drink and starts to drink .", "storylet_id": "214031"}], [{"original_text": "Jamie is posing for a picture with Roxie.", "album_id": "72157623446666698", "photo_flickr_id": "4361881925", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42806", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] is posing for a picture with [female] .", "storylet_id": "214032"}], [{"original_text": "Roxie starts getting a little wild.", "album_id": "72157623446666698", "photo_flickr_id": "4361883129", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42806", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] starts getting a little wild .", "storylet_id": "214033"}], [{"original_text": "She challenges all the guys to arm wrestling contests.", "album_id": "72157623446666698", "photo_flickr_id": "4362627842", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42806", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she challenges all the guys to arm wrestling contests .", "storylet_id": "214034"}], [{"original_text": "A girl went out to meet some friends at the bar.", "album_id": "72157623446666698", "photo_flickr_id": "4362613984", "setting": "last-3-pick-old-and-tell", "worker_id": "5Z1H7EDCAFS4CI6", "story_id": "42807", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a girl went out to meet some friends at the bar .", "storylet_id": "214035"}], [{"original_text": "When she arrived it was very dark inside.", "album_id": "72157623446666698", "photo_flickr_id": "4362622112", "setting": "last-3-pick-old-and-tell", "worker_id": "5Z1H7EDCAFS4CI6", "story_id": "42807", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when she arrived it was very dark inside .", "storylet_id": "214036"}], [{"original_text": "The girl asked around to see if anyone had seen her friends.", "album_id": "72157623446666698", "photo_flickr_id": "4361880245", "setting": "last-3-pick-old-and-tell", "worker_id": "5Z1H7EDCAFS4CI6", "story_id": "42807", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girl asked around to see if anyone had seen her friends .", "storylet_id": "214037"}], [{"original_text": "She looked around some more and finally saw her friends laughing together in the corner.", "album_id": "72157623446666698", "photo_flickr_id": "4361883129", "setting": "last-3-pick-old-and-tell", "worker_id": "5Z1H7EDCAFS4CI6", "story_id": "42807", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she looked around some more and finally saw her friends laughing together in the corner .", "storylet_id": "214038"}], [{"original_text": "Two of her friends were even arm wrestling!", "album_id": "72157623446666698", "photo_flickr_id": "4362627842", "setting": "last-3-pick-old-and-tell", "worker_id": "5Z1H7EDCAFS4CI6", "story_id": "42807", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "two of her friends were even arm wrestling !", "storylet_id": "214039"}], [{"original_text": "It is Jane's welcome home party. She had been visiting family in China, but now has returned to America.", "album_id": "72157623446666698", "photo_flickr_id": "4362613984", "setting": "last-3-pick-old-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "42808", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is [female] 's welcome home party . she had been visiting family in location , but now has returned to location .", "storylet_id": "214040"}], [{"original_text": "The party was located at a local bar. Jane loves this bar and considers it her home.", "album_id": "72157623446666698", "photo_flickr_id": "4362622112", "setting": "last-3-pick-old-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "42808", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the party was located at a local bar . [female] loves this bar and considers it her home .", "storylet_id": "214041"}], [{"original_text": "Many people have turned out for the party. Sarah is trying to get Jane's attention.", "album_id": "72157623446666698", "photo_flickr_id": "4361880245", "setting": "last-3-pick-old-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "42808", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many people have turned out for the party . [female] is trying to get [female] 's attention .", "storylet_id": "214042"}], [{"original_text": "Jane and some of her friends have a good laugh. She is happy to be back home and in America.", "album_id": "72157623446666698", "photo_flickr_id": "4361883129", "setting": "last-3-pick-old-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "42808", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and some of her friends have a good laugh . she is happy to be back home and in location .", "storylet_id": "214043"}], [{"original_text": "Time for arm wrestling. Tim says he is the champion for this competition.", "album_id": "72157623446666698", "photo_flickr_id": "4362627842", "setting": "last-3-pick-old-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "42808", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time for arm wrestling . [male] says he is the champion for this competition .", "storylet_id": "214044"}], [{"original_text": "We all decided to check out the new nightclub in town the other night. ", "album_id": "72157623446666698", "photo_flickr_id": "4362613984", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42809", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all decided to check out the new nightclub in town the other night .", "storylet_id": "214045"}], [{"original_text": "It was pretty cool, but it was so dark in there. ", "album_id": "72157623446666698", "photo_flickr_id": "4362622112", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42809", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was pretty cool , but it was so dark in there .", "storylet_id": "214046"}], [{"original_text": "I mean they didn't even have normal lighting. We had to stay close just to keep track of each other. ", "album_id": "72157623446666698", "photo_flickr_id": "4361880245", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42809", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i mean they did n't even have normal lighting . we had to stay close just to keep track of each other .", "storylet_id": "214047"}], [{"original_text": "Cyndi and Wendy had a great time though. ", "album_id": "72157623446666698", "photo_flickr_id": "4361883129", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42809", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cyndi and [female] had a great time though .", "storylet_id": "214048"}], [{"original_text": "Even when Steve challenged Cyndi to an arm-wrestling contest, that Cyndi won by the way. ", "album_id": "72157623446666698", "photo_flickr_id": "4362627842", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42809", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even when [male] challenged cyndi to an arm-wrestling contest , that cyndi won by the way .", "storylet_id": "214049"}], [{"original_text": "Everyone was heading down to the bar for karaoke night. ", "album_id": "461589", "photo_flickr_id": "19680294", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42810", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was heading down to the bar for karaoke night .", "storylet_id": "214050"}], [{"original_text": "We met some new friends who bought us some drinks. ", "album_id": "461589", "photo_flickr_id": "19680344", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42810", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we met some new friends who bought us some drinks .", "storylet_id": "214051"}], [{"original_text": "My friend Tom was pushing us to go up and sing. ", "album_id": "461589", "photo_flickr_id": "19680378", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42810", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend [male] was pushing us to go up and sing .", "storylet_id": "214052"}], [{"original_text": "All of us decided we would head up and sing a song together.", "album_id": "461589", "photo_flickr_id": "19680408", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42810", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of us decided we would head up and sing a song together .", "storylet_id": "214053"}], [{"original_text": "We had a great night singing and dancing the night away. ", "album_id": "461589", "photo_flickr_id": "19680435", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "42810", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great night singing and dancing the night away .", "storylet_id": "214054"}], [{"original_text": "The fourth of July celebration was a lot of fun.", "album_id": "461589", "photo_flickr_id": "19680294", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42811", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fourth of july celebration was a lot of fun .", "storylet_id": "214055"}], [{"original_text": "Everyone from work came. ", "album_id": "461589", "photo_flickr_id": "19680344", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42811", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone from work came .", "storylet_id": "214056"}], [{"original_text": "Jenna took pictures with the guy she liked from the accounting department.", "album_id": "461589", "photo_flickr_id": "19680374", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42811", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] took pictures with the guy she liked from the accounting department .", "storylet_id": "214057"}], [{"original_text": "After getting shit-faced, they decided to call it a night.", "album_id": "461589", "photo_flickr_id": "19680390", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42811", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after getting shit-faced , they decided to call it a night .", "storylet_id": "214058"}], [{"original_text": "But Jenna and the guy from the accounting department hooked up.", "album_id": "461589", "photo_flickr_id": "19680435", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42811", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but [female] and the guy from the accounting department hooked up .", "storylet_id": "214059"}], [{"original_text": "There were so many people out that night.", "album_id": "461589", "photo_flickr_id": "19680294", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42812", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were so many people out that night .", "storylet_id": "214060"}], [{"original_text": "We finally found our table where our friends were sitting.", "album_id": "461589", "photo_flickr_id": "19680344", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42812", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we finally found our table where our friends were sitting .", "storylet_id": "214061"}], [{"original_text": "The excitement really started after midnight.", "album_id": "461589", "photo_flickr_id": "19680374", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42812", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the excitement really started after midnight .", "storylet_id": "214062"}], [{"original_text": "There were even people who performed.", "album_id": "461589", "photo_flickr_id": "19680390", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42812", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were even people who performed .", "storylet_id": "214063"}], [{"original_text": "Everyone had so much fun.", "album_id": "461589", "photo_flickr_id": "19680435", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42812", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had so much fun .", "storylet_id": "214064"}], [{"original_text": "The local pub was having their annual karaoke contest.", "album_id": "461589", "photo_flickr_id": "19680294", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42813", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the local pub was having their annual karaoke contest .", "storylet_id": "214065"}], [{"original_text": "The two girls went in the drink some beers, sing some songs, and maybe meet some new people.", "album_id": "461589", "photo_flickr_id": "19680344", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42813", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the two girls went in the drink some beers , sing some songs , and maybe meet some new people .", "storylet_id": "214066"}], [{"original_text": "The men were there for the same thing. In fact, one of them spotted someone right off the bat.", "album_id": "461589", "photo_flickr_id": "19680378", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42813", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the men were there for the same thing . in fact , one of them spotted someone right off the bat .", "storylet_id": "214067"}], [{"original_text": "He went up to her group of friends and joined in on their karaoke session.", "album_id": "461589", "photo_flickr_id": "19680408", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42813", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he went up to her group of friends and joined in on their karaoke session .", "storylet_id": "214068"}], [{"original_text": "He ended up talking to the girl and having a great time.", "album_id": "461589", "photo_flickr_id": "19680435", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42813", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he ended up talking to the girl and having a great time .", "storylet_id": "214069"}], [{"original_text": "Everyone is listens as a speech is made.", "album_id": "461589", "photo_flickr_id": "19680294", "setting": "last-3-pick-old-and-tell", "worker_id": "U2LYBRA0HTCS0PL", "story_id": "42814", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone is listens as a speech is made .", "storylet_id": "214070"}], [{"original_text": "The two ladies smile for the camera.", "album_id": "461589", "photo_flickr_id": "19680344", "setting": "last-3-pick-old-and-tell", "worker_id": "U2LYBRA0HTCS0PL", "story_id": "42814", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the two ladies smile for the camera .", "storylet_id": "214071"}], [{"original_text": "Two guests take a selfie together.", "album_id": "461589", "photo_flickr_id": "19680374", "setting": "last-3-pick-old-and-tell", "worker_id": "U2LYBRA0HTCS0PL", "story_id": "42814", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two guests take a selfie together .", "storylet_id": "214072"}], [{"original_text": "Its possible that they are singing.", "album_id": "461589", "photo_flickr_id": "19680390", "setting": "last-3-pick-old-and-tell", "worker_id": "U2LYBRA0HTCS0PL", "story_id": "42814", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "its possible that they are singing .", "storylet_id": "214073"}], [{"original_text": "The two guests laugh and have a great time.", "album_id": "461589", "photo_flickr_id": "19680435", "setting": "last-3-pick-old-and-tell", "worker_id": "U2LYBRA0HTCS0PL", "story_id": "42814", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the two guests laugh and have a great time .", "storylet_id": "214074"}], [{"original_text": "The gathering was a very comfortable time.", "album_id": "72157602164004338", "photo_flickr_id": "1416374115", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42815", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the gathering was a very comfortable time .", "storylet_id": "214075"}], [{"original_text": "We all ate a lot of food, and cake got eaten real fast.", "album_id": "72157602164004338", "photo_flickr_id": "1416374305", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42815", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all ate a lot of food , and cake got eaten real fast .", "storylet_id": "214076"}], [{"original_text": "The weather was beautiful and the water seemed inviting, but no one went swimming.", "album_id": "72157602164004338", "photo_flickr_id": "1416374441", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42815", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the weather was beautiful and the water seemed inviting , but no one went swimming .", "storylet_id": "214077"}], [{"original_text": "After enjoying everyone's company for so long we all bonded.", "album_id": "72157602164004338", "photo_flickr_id": "1417254244", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42815", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after enjoying everyone 's company for so long we all bonded .", "storylet_id": "214078"}], [{"original_text": "If only we had a boat, we would have loved to take one of these out!", "album_id": "72157602164004338", "photo_flickr_id": "1416374857", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42815", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "if only we had a boat , we would have loved to take one of these out !", "storylet_id": "214079"}], [{"original_text": "We had an office party today to try to liven the mood around here.", "album_id": "72157602164004338", "photo_flickr_id": "1416374115", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42816", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had an office party today to try to liven the mood around here .", "storylet_id": "214080"}], [{"original_text": "Kathy didnt want to leave her desk though, stop being such a crab Kathy!", "album_id": "72157602164004338", "photo_flickr_id": "1416374159", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42816", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] didnt want to leave her desk though , stop being such a crab [female] !", "storylet_id": "214081"}], [{"original_text": "Heres Bret, we had to enticed him out with the promise of burgers.", "album_id": "72157602164004338", "photo_flickr_id": "1417254048", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42816", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "heres [male] , we had to enticed him out with the promise of burgers .", "storylet_id": "214082"}], [{"original_text": "Next party will be on one of those yachts.", "album_id": "72157602164004338", "photo_flickr_id": "1416374857", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42816", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next party will be on one of those yachts .", "storylet_id": "214083"}], [{"original_text": "Unfortunately it started to rain and rain hard so we had to call it off early.", "album_id": "72157602164004338", "photo_flickr_id": "1417254318", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42816", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "unfortunately it started to rain and rain hard so we had to call it off early .", "storylet_id": "214084"}], [{"original_text": "We gathered at the country club that day.", "album_id": "72157602164004338", "photo_flickr_id": "1416374115", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42817", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we gathered at the country club that day .", "storylet_id": "214085"}], [{"original_text": "They made a beautiful cake for the occasion. ", "album_id": "72157602164004338", "photo_flickr_id": "1416374305", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42817", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they made a beautiful cake for the occasion .", "storylet_id": "214086"}], [{"original_text": "The view was just spectacular. ", "album_id": "72157602164004338", "photo_flickr_id": "1416374441", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42817", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the view was just spectacular .", "storylet_id": "214087"}], [{"original_text": "Grandpa told the best stories as always. ", "album_id": "72157602164004338", "photo_flickr_id": "1417254244", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42817", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandpa told the best stories as always .", "storylet_id": "214088"}], [{"original_text": "We watched as many of the boats were docking. ", "album_id": "72157602164004338", "photo_flickr_id": "1416374857", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42817", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we watched as many of the boats were docking .", "storylet_id": "214089"}], [{"original_text": "This is our favorite spot for every gathering. The food is top notch.", "album_id": "72157602164004338", "photo_flickr_id": "1416374115", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42818", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is our favorite spot for every gathering . the food is top notch .", "storylet_id": "214090"}], [{"original_text": "The grounds are perfectly manicured all year round.", "album_id": "72157602164004338", "photo_flickr_id": "1416374305", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42818", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the grounds are perfectly manicured all year round .", "storylet_id": "214091"}], [{"original_text": "A stunning view of the lake from the outdoor tables.", "album_id": "72157602164004338", "photo_flickr_id": "1416374441", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42818", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a stunning view of the lake from the outdoor tables .", "storylet_id": "214092"}], [{"original_text": "Good friends, an outstanding meal in beautiful surroundings.", "album_id": "72157602164004338", "photo_flickr_id": "1417254244", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42818", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "good friends , an outstanding meal in beautiful surroundings .", "storylet_id": "214093"}], [{"original_text": "We always end up taking a walk to digest our meals at the nearby marina.", "album_id": "72157602164004338", "photo_flickr_id": "1416374857", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42818", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we always end up taking a walk to digest our meals at the nearby marina .", "storylet_id": "214094"}], [{"original_text": "When our office has a day out, we do it right. ", "album_id": "72157602164004338", "photo_flickr_id": "1416374115", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42819", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when our office has a day out , we do it right .", "storylet_id": "214095"}], [{"original_text": "Everyone managed to make it to the party at the lake, even the CEO, Frank. ", "album_id": "72157602164004338", "photo_flickr_id": "1416374305", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42819", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone managed to make it to the party at the lake , even the ceo , [male] .", "storylet_id": "214096"}], [{"original_text": "And though the clouds looked threatening at times, all went well. ", "album_id": "72157602164004338", "photo_flickr_id": "1416374441", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42819", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and though the clouds looked threatening at times , all went well .", "storylet_id": "214097"}], [{"original_text": "Interestingly, Frank was the life of the party. ", "album_id": "72157602164004338", "photo_flickr_id": "1417254244", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42819", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "interestingly , [male] was the life of the party .", "storylet_id": "214098"}], [{"original_text": "He even took us to the marina for a cruise around the lake on his yacht. Pretty cool guy. ", "album_id": "72157602164004338", "photo_flickr_id": "1416374857", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42819", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he even took us to the marina for a cruise around the lake on his yacht . pretty cool guy .", "storylet_id": "214099"}], [{"original_text": "Tonight some friends are going out for a night on the town. ", "album_id": "72157623317546850", "photo_flickr_id": "4283467506", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42820", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "tonight some friends are going out for a night on the town .", "storylet_id": "214100"}], [{"original_text": "What will happen?", "album_id": "72157623317546850", "photo_flickr_id": "4283506660", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42820", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "what will happen ?", "storylet_id": "214101"}], [{"original_text": "There is girls hugging.", "album_id": "72157623317546850", "photo_flickr_id": "4282774601", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42820", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is girls hugging .", "storylet_id": "214102"}], [{"original_text": "Boys kissing.", "album_id": "72157623317546850", "photo_flickr_id": "4282779603", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42820", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "boys kissing .", "storylet_id": "214103"}], [{"original_text": "Wait, it is time to go home now.", "album_id": "72157623317546850", "photo_flickr_id": "4282806319", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42820", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "wait , it is time to go home now .", "storylet_id": "214104"}], [{"original_text": "Tonight was the night the bearded boy from Marketing had a group get together at the local bar. ", "album_id": "72157623317546850", "photo_flickr_id": "4283467506", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "42821", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "tonight was the night the bearded boy from marketing had a group get together at the local bar .", "storylet_id": "214105"}], [{"original_text": "Bearded boy decided to stand patiently by another coworker. He was very serious. ", "album_id": "72157623317546850", "photo_flickr_id": "4282728353", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "42821", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "bearded boy decided to stand patiently by another coworker . he was very serious .", "storylet_id": "214106"}], [{"original_text": "After a spell, he just couldn't stop his dancing shoes, and bearded boy took to the dance floor. ", "album_id": "72157623317546850", "photo_flickr_id": "4283479786", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "42821", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after a spell , he just could n't stop his dancing shoes , and bearded boy took to the dance floor .", "storylet_id": "214107"}], [{"original_text": "Later, after a few drinks, he started stumbling around at the bar. ", "album_id": "72157623317546850", "photo_flickr_id": "4282820099", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "42821", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later , after a few drinks , he started stumbling around at the bar .", "storylet_id": "214108"}], [{"original_text": "Ultimately he was so drunk that he started a puppet show with his navel. Here is the beginning of the show. ", "album_id": "72157623317546850", "photo_flickr_id": "4283569242", "setting": "first-2-pick-and-tell", "worker_id": "9HLE8BIWXA1KCF8", "story_id": "42821", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ultimately he was so drunk that he started a puppet show with his navel . here is the beginning of the show .", "storylet_id": "214109"}], [{"original_text": "We all met at the club to celebrate his big night. ", "album_id": "72157623317546850", "photo_flickr_id": "4283467506", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42822", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all met at the club to celebrate his big night .", "storylet_id": "214110"}], [{"original_text": "She was sure happy to see me there. ", "album_id": "72157623317546850", "photo_flickr_id": "4283506660", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42822", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was sure happy to see me there .", "storylet_id": "214111"}], [{"original_text": "We started to take goofy pictures after a few drinks. ", "album_id": "72157623317546850", "photo_flickr_id": "4282774601", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42822", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we started to take goofy pictures after a few drinks .", "storylet_id": "214112"}], [{"original_text": "I think he was even happier to see his friend.", "album_id": "72157623317546850", "photo_flickr_id": "4282779603", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42822", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i think he was even happier to see his friend .", "storylet_id": "214113"}], [{"original_text": "It was a great time had by all. ", "album_id": "72157623317546850", "photo_flickr_id": "4282806319", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42822", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great time had by all .", "storylet_id": "214114"}], [{"original_text": "Some friends and I went to the club.", "album_id": "72157623317546850", "photo_flickr_id": "4283467506", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42823", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some friends and i went to the club .", "storylet_id": "214115"}], [{"original_text": "The music was loud and everyone was a little uptight.", "album_id": "72157623317546850", "photo_flickr_id": "4282728353", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42823", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the music was loud and everyone was a little uptight .", "storylet_id": "214116"}], [{"original_text": "A few drinks loosened us up enough to dance.", "album_id": "72157623317546850", "photo_flickr_id": "4283479786", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42823", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few drinks loosened us up enough to dance .", "storylet_id": "214117"}], [{"original_text": "A few more had us all up and moving.", "album_id": "72157623317546850", "photo_flickr_id": "4282820099", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42823", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a few more had us all up and moving .", "storylet_id": "214118"}], [{"original_text": "By the end of the night we were silly!", "album_id": "72157623317546850", "photo_flickr_id": "4283569242", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42823", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of the night we were silly !", "storylet_id": "214119"}], [{"original_text": "Look who we ran into at our local watering hole. My crazy brother.", "album_id": "72157623317546850", "photo_flickr_id": "4283467506", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42824", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "look who we ran into at our local watering hole . my crazy brother .", "storylet_id": "214120"}], [{"original_text": "My brother met up with a new girl. She was shy.", "album_id": "72157623317546850", "photo_flickr_id": "4282728353", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42824", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my brother met up with a new girl . she was shy .", "storylet_id": "214121"}], [{"original_text": "As usual, he had some stories and adventures to share.", "album_id": "72157623317546850", "photo_flickr_id": "4283479786", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42824", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as usual , he had some stories and adventures to share .", "storylet_id": "214122"}], [{"original_text": "After a few drinks, the gang got a little out of hand.", "album_id": "72157623317546850", "photo_flickr_id": "4282820099", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42824", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a few drinks , the gang got a little out of hand .", "storylet_id": "214123"}], [{"original_text": "Some silly body art on the drunkest person in the group. He was driven home.", "album_id": "72157623317546850", "photo_flickr_id": "4283569242", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42824", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some silly body art on the drunkest person in the group . he was driven home .", "storylet_id": "214124"}], [{"original_text": "Today is this little boy's second birthday.", "album_id": "72157623233370074", "photo_flickr_id": "4284508954", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42825", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is this little boy 's second birthday .", "storylet_id": "214125"}], [{"original_text": "He's very excited about his birthday cake and can't wait to eat some.", "album_id": "72157623233370074", "photo_flickr_id": "4283751535", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42825", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he 's very excited about his birthday cake and ca n't wait to eat some .", "storylet_id": "214126"}], [{"original_text": "His mom also made a lot of other delicious snacks.", "album_id": "72157623233370074", "photo_flickr_id": "4284505984", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42825", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his mom also made a lot of other delicious snacks .", "storylet_id": "214127"}], [{"original_text": "After the party is over, the boy is very happy about how it went.", "album_id": "72157623233370074", "photo_flickr_id": "4283754505", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42825", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the party is over , the boy is very happy about how it went .", "storylet_id": "214128"}], [{"original_text": "The birthday boy had a long day and decides to take a little nap in his sister's bed after his party is over.", "album_id": "72157623233370074", "photo_flickr_id": "4284502992", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42825", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the birthday boy had a long day and decides to take a little nap in his sister 's bed after his party is over .", "storylet_id": "214129"}], [{"original_text": "Today was Aidan's birthday but he had completely forgotten. ", "album_id": "72157623233370074", "photo_flickr_id": "4284502992", "setting": "first-2-pick-and-tell", "worker_id": "KJ4OOQS7M99VO07", "story_id": "42826", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was [male] 's birthday but he had completely forgotten .", "storylet_id": "214130"}], [{"original_text": "We decided to wake him up so we could begin his special day. ", "album_id": "72157623233370074", "photo_flickr_id": "4283762235", "setting": "first-2-pick-and-tell", "worker_id": "KJ4OOQS7M99VO07", "story_id": "42826", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided to wake him up so we could begin his special day .", "storylet_id": "214131"}], [{"original_text": "I decided to check with Anna before Aidan got around to the kitchen to make sure everything is ready. ", "album_id": "72157623233370074", "photo_flickr_id": "4284504694", "setting": "first-2-pick-and-tell", "worker_id": "KJ4OOQS7M99VO07", "story_id": "42826", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i decided to check with [female] before [male] got around to the kitchen to make sure everything is ready .", "storylet_id": "214132"}], [{"original_text": "He was so happy the moment he saw the cake, that he couldn't wait to blow out the candles.", "album_id": "72157623233370074", "photo_flickr_id": "4283751535", "setting": "first-2-pick-and-tell", "worker_id": "KJ4OOQS7M99VO07", "story_id": "42826", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was so happy the moment he saw the cake , that he could n't wait to blow out the candles .", "storylet_id": "214133"}], [{"original_text": "Once he finished blowing out the candles we sent him outside to play with his friends in the bouncing castle we rented. ", "album_id": "72157623233370074", "photo_flickr_id": "4284508954", "setting": "first-2-pick-and-tell", "worker_id": "KJ4OOQS7M99VO07", "story_id": "42826", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once he finished blowing out the candles we sent him outside to play with his friends in the bouncing castle we rented .", "storylet_id": "214134"}], [{"original_text": "He loved her new bed so much he jumped right in.", "album_id": "72157623233370074", "photo_flickr_id": "4284502992", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42827", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he loved her new bed so much he jumped right in .", "storylet_id": "214135"}], [{"original_text": "He did not want to get out. ", "album_id": "72157623233370074", "photo_flickr_id": "4283762235", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42827", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he did not want to get out .", "storylet_id": "214136"}], [{"original_text": "She was a good big sister and let him play. ", "album_id": "72157623233370074", "photo_flickr_id": "4284504694", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42827", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was a good big sister and let him play .", "storylet_id": "214137"}], [{"original_text": "Later that day we enjoyed his birthday cake. ", "album_id": "72157623233370074", "photo_flickr_id": "4283751535", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42827", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later that day we enjoyed his birthday cake .", "storylet_id": "214138"}], [{"original_text": "The cake came out great. ", "album_id": "72157623233370074", "photo_flickr_id": "4284508954", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42827", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cake came out great .", "storylet_id": "214139"}], [{"original_text": "Today is Robert's 2nd birthday. ", "album_id": "72157623233370074", "photo_flickr_id": "4284508954", "setting": "last-3-pick-old-and-tell", "worker_id": "UVYNJHEUTKWXWUX", "story_id": "42828", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is [male] 's 2nd birthday .", "storylet_id": "214140"}], [{"original_text": "Robert is very happy to see her chocolate cake.", "album_id": "72157623233370074", "photo_flickr_id": "4283751535", "setting": "last-3-pick-old-and-tell", "worker_id": "UVYNJHEUTKWXWUX", "story_id": "42828", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is very happy to see her chocolate cake .", "storylet_id": "214141"}], [{"original_text": "His mom made lemon tarts for him and the guests who came to celebrate his birthday. ", "album_id": "72157623233370074", "photo_flickr_id": "4284505984", "setting": "last-3-pick-old-and-tell", "worker_id": "UVYNJHEUTKWXWUX", "story_id": "42828", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his mom made lemon tarts for him and the guests who came to celebrate his birthday .", "storylet_id": "214142"}], [{"original_text": "Robert really enjoyed the party.", "album_id": "72157623233370074", "photo_flickr_id": "4283754505", "setting": "last-3-pick-old-and-tell", "worker_id": "UVYNJHEUTKWXWUX", "story_id": "42828", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] really enjoyed the party .", "storylet_id": "214143"}], [{"original_text": "He was tired and went to bed with his Thomas the Train pillow.", "album_id": "72157623233370074", "photo_flickr_id": "4284502992", "setting": "last-3-pick-old-and-tell", "worker_id": "UVYNJHEUTKWXWUX", "story_id": "42828", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was tired and went to bed with his [male] the train pillow .", "storylet_id": "214144"}], [{"original_text": "My son wouldn't nap, too excited for his birthday party later on.", "album_id": "72157623233370074", "photo_flickr_id": "4284502992", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42829", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my son would n't nap , too excited for his birthday party later on .", "storylet_id": "214145"}], [{"original_text": "I gave up trying to make him sleep and answered questions about his party.", "album_id": "72157623233370074", "photo_flickr_id": "4283762235", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42829", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i gave up trying to make him sleep and answered questions about his party .", "storylet_id": "214146"}], [{"original_text": "His sister was a fine little hostess. She is so mature for her age.", "album_id": "72157623233370074", "photo_flickr_id": "4284504694", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42829", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his sister was a fine little hostess . she is so mature for her age .", "storylet_id": "214147"}], [{"original_text": "The birthday boy blew out the candle and waited for his slice.", "album_id": "72157623233370074", "photo_flickr_id": "4283751535", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42829", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the birthday boy blew out the candle and waited for his slice .", "storylet_id": "214148"}], [{"original_text": "I tried to take an artistic black and white photo. I'm practicing composition.", "album_id": "72157623233370074", "photo_flickr_id": "4284508954", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42829", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i tried to take an artistic black and white photo . i 'm practicing composition .", "storylet_id": "214149"}], [{"original_text": "It is his first birthday.", "album_id": "347887", "photo_flickr_id": "14373042", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "42830", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is his first birthday .", "storylet_id": "214150"}], [{"original_text": "He tries the cake and is not sure about how he likes it.", "album_id": "347887", "photo_flickr_id": "14372793", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "42830", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he tries the cake and is not sure about how he likes it .", "storylet_id": "214151"}], [{"original_text": "After much consideration, he decides he really likes it and wants more.", "album_id": "347887", "photo_flickr_id": "14372867", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "42830", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after much consideration , he decides he really likes it and wants more .", "storylet_id": "214152"}], [{"original_text": "His tummy is now full cake and he is content.", "album_id": "347887", "photo_flickr_id": "14372726", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "42830", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his tummy is now full cake and he is content .", "storylet_id": "214153"}], [{"original_text": "He was even content enough to enjoy a bath to wash off all that cake.", "album_id": "347887", "photo_flickr_id": "14372649", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "42830", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was even content enough to enjoy a bath to wash off all that cake .", "storylet_id": "214154"}], [{"original_text": "It's baby's first birthday!", "album_id": "347887", "photo_flickr_id": "14373142", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42831", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's baby 's first birthday !", "storylet_id": "214155"}], [{"original_text": "The card and present made the baby happy.", "album_id": "347887", "photo_flickr_id": "14373109", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42831", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the card and present made the baby happy .", "storylet_id": "214156"}], [{"original_text": "The baby was waiting for some cake.", "album_id": "347887", "photo_flickr_id": "14373027", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42831", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the baby was waiting for some cake .", "storylet_id": "214157"}], [{"original_text": "The cake was very enjoyable, and messy.", "album_id": "347887", "photo_flickr_id": "14372867", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42831", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cake was very enjoyable , and messy .", "storylet_id": "214158"}], [{"original_text": "Then came the fun part, washing it all off. ", "album_id": "347887", "photo_flickr_id": "14372649", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42831", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then came the fun part , washing it all off .", "storylet_id": "214159"}], [{"original_text": "Zachary had his first birthday party ", "album_id": "347887", "photo_flickr_id": "14373142", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "42832", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] had his first birthday party", "storylet_id": "214160"}], [{"original_text": "he was excited ", "album_id": "347887", "photo_flickr_id": "14373109", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "42832", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was excited", "storylet_id": "214161"}], [{"original_text": "he was so happy to see his cake", "album_id": "347887", "photo_flickr_id": "14373027", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "42832", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was so happy to see his cake", "storylet_id": "214162"}], [{"original_text": "oh and he enjoy every bit of it ", "album_id": "347887", "photo_flickr_id": "14372867", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "42832", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "oh and he enjoy every bit of it", "storylet_id": "214163"}], [{"original_text": "after the party it was time to wash up", "album_id": "347887", "photo_flickr_id": "14372649", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "42832", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the party it was time to wash up", "storylet_id": "214164"}], [{"original_text": "The baby is waiting for something to eat.", "album_id": "347887", "photo_flickr_id": "14373042", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "42833", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the baby is waiting for something to eat .", "storylet_id": "214165"}], [{"original_text": "The baby is looking at something intently.", "album_id": "347887", "photo_flickr_id": "14372793", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "42833", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the baby is looking at something intently .", "storylet_id": "214166"}], [{"original_text": "The baby has a lot of food on the tray.", "album_id": "347887", "photo_flickr_id": "14372867", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "42833", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the baby has a lot of food on the tray .", "storylet_id": "214167"}], [{"original_text": "The baby is smiling after eating.", "album_id": "347887", "photo_flickr_id": "14372726", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "42833", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the baby is smiling after eating .", "storylet_id": "214168"}], [{"original_text": "The baby is getting cleaned up after eating.", "album_id": "347887", "photo_flickr_id": "14372649", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "42833", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the baby is getting cleaned up after eating .", "storylet_id": "214169"}], [{"original_text": "it was little billys first birthday.", "album_id": "347887", "photo_flickr_id": "14373042", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42834", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was little billys first birthday .", "storylet_id": "214170"}], [{"original_text": "we gave him his cake and he loved it.", "album_id": "347887", "photo_flickr_id": "14372793", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42834", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we gave him his cake and he loved it .", "storylet_id": "214171"}], [{"original_text": "once he started eating it there were so many photo ops.", "album_id": "347887", "photo_flickr_id": "14372867", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42834", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once he started eating it there were so many photo ops .", "storylet_id": "214172"}], [{"original_text": "he ate it all. we were impressed", "album_id": "347887", "photo_flickr_id": "14372726", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42834", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he ate it all . we were impressed", "storylet_id": "214173"}], [{"original_text": "he wasn't too happy to have to wash up after though", "album_id": "347887", "photo_flickr_id": "14372649", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42834", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was n't too happy to have to wash up after though", "storylet_id": "214174"}], [{"original_text": "Mom takes pictures of her son at his first birthday party.", "album_id": "72157623460934854", "photo_flickr_id": "4368403514", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42835", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom takes pictures of her son at his first birthday party .", "storylet_id": "214175"}], [{"original_text": "The little boy is very excited about his new playhouse.", "album_id": "72157623460934854", "photo_flickr_id": "4367655577", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42835", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the little boy is very excited about his new playhouse .", "storylet_id": "214176"}], [{"original_text": "He is also very curious about the balloons, and even tries to eat one.", "album_id": "72157623460934854", "photo_flickr_id": "4367655977", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42835", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he is also very curious about the balloons , and even tries to eat one .", "storylet_id": "214177"}], [{"original_text": "Mom, dad, the birthday boy and his sister all take a family portrait together to remember their son's birthday forever.", "album_id": "72157623460934854", "photo_flickr_id": "4367656785", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42835", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom , dad , the birthday boy and his sister all take a family portrait together to remember their son 's birthday forever .", "storylet_id": "214178"}], [{"original_text": "Before the party's over, mom enjoys a tasty cupcake.", "album_id": "72157623460934854", "photo_flickr_id": "4367657065", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42835", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before the party 's over , mom enjoys a tasty cupcake .", "storylet_id": "214179"}], [{"original_text": "Today is Arthur's first birthday.", "album_id": "72157623460934854", "photo_flickr_id": "4367655489", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42836", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is [male] 's first birthday .", "storylet_id": "214180"}], [{"original_text": "Arthur loves to play in his house.", "album_id": "72157623460934854", "photo_flickr_id": "4367655525", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42836", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] loves to play in his house .", "storylet_id": "214181"}], [{"original_text": "Her his is trying to eat a balloon.", "album_id": "72157623460934854", "photo_flickr_id": "4367655977", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42836", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her his is trying to eat a balloon .", "storylet_id": "214182"}], [{"original_text": "We took some time out for a family photo.", "album_id": "72157623460934854", "photo_flickr_id": "4367656785", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42836", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took some time out for a family photo .", "storylet_id": "214183"}], [{"original_text": "Arthur got a little messy with the cake. Happy birthday Arthur.", "album_id": "72157623460934854", "photo_flickr_id": "4367657155", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "42836", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] got a little messy with the cake . happy birthday [male] .", "storylet_id": "214184"}], [{"original_text": "This was her first taste of a cupcake. ", "album_id": "72157623460934854", "photo_flickr_id": "4368403514", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42837", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was her first taste of a cupcake .", "storylet_id": "214185"}], [{"original_text": "She loved her new play house. ", "album_id": "72157623460934854", "photo_flickr_id": "4367655577", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42837", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she loved her new play house .", "storylet_id": "214186"}], [{"original_text": "She had a lot of fun with the balloons. ", "album_id": "72157623460934854", "photo_flickr_id": "4367655977", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42837", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she had a lot of fun with the balloons .", "storylet_id": "214187"}], [{"original_text": "The whole family was there for this special day. ", "album_id": "72157623460934854", "photo_flickr_id": "4367656785", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42837", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole family was there for this special day .", "storylet_id": "214188"}], [{"original_text": "I caught mom sneaking a bit of food.", "album_id": "72157623460934854", "photo_flickr_id": "4367657065", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42837", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i caught mom sneaking a bit of food .", "storylet_id": "214189"}], [{"original_text": "The birthday boy wanted to greet his guests when they arrived.", "album_id": "72157623460934854", "photo_flickr_id": "4367655489", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42838", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the birthday boy wanted to greet his guests when they arrived .", "storylet_id": "214190"}], [{"original_text": "We let him enjoy this gift a little early to keep him occupied.", "album_id": "72157623460934854", "photo_flickr_id": "4367655525", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42838", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we let him enjoy this gift a little early to keep him occupied .", "storylet_id": "214191"}], [{"original_text": "The balloons turned out to be his favorite thing!", "album_id": "72157623460934854", "photo_flickr_id": "4367655977", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42838", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the balloons turned out to be his favorite thing !", "storylet_id": "214192"}], [{"original_text": "A nice family photo. Too bad birthday boy didn't look at the camera.", "album_id": "72157623460934854", "photo_flickr_id": "4367656785", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42838", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a nice family photo . too bad birthday boy did n't look at the camera .", "storylet_id": "214193"}], [{"original_text": "He got a little fussy and naptime ended the festivities.", "album_id": "72157623460934854", "photo_flickr_id": "4367657155", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42838", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he got a little fussy and naptime ended the festivities .", "storylet_id": "214194"}], [{"original_text": "The baby enjoyed his party.", "album_id": "72157623460934854", "photo_flickr_id": "4367655489", "setting": "last-3-pick-old-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42839", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the baby enjoyed his party .", "storylet_id": "214195"}], [{"original_text": "He played in his new house.", "album_id": "72157623460934854", "photo_flickr_id": "4367655525", "setting": "last-3-pick-old-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42839", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he played in his new house .", "storylet_id": "214196"}], [{"original_text": "He tried to eat a balloon.", "album_id": "72157623460934854", "photo_flickr_id": "4367655977", "setting": "last-3-pick-old-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42839", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he tried to eat a balloon .", "storylet_id": "214197"}], [{"original_text": "His sister and mom were there too.", "album_id": "72157623460934854", "photo_flickr_id": "4367656785", "setting": "last-3-pick-old-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42839", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his sister and mom were there too .", "storylet_id": "214198"}], [{"original_text": "His shirt had to go in the laundry after cupcake time!", "album_id": "72157623460934854", "photo_flickr_id": "4367657155", "setting": "last-3-pick-old-and-tell", "worker_id": "QLVYHRCS4L0TB7J", "story_id": "42839", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his shirt had to go in the laundry after cupcake time !", "storylet_id": "214199"}], [{"original_text": "Its my 18th birthday and look at the beautiful cake they gave me with my name and everything.", "album_id": "471782", "photo_flickr_id": "20177513", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42840", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "its my 18th birthday and look at the beautiful cake they gave me with my name and everything .", "storylet_id": "214200"}], [{"original_text": "I made a wish and blew out the candles like they wanted even though I got a little embarrassed when they all sang happy birthday to me.", "album_id": "471782", "photo_flickr_id": "20178166", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42840", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i made a wish and blew out the candles like they wanted even though i got a little embarrassed when they all sang happy birthday to me .", "storylet_id": "214201"}], [{"original_text": "Imagine my surprise when I opened my birthday present and got just what I wished for.", "album_id": "471782", "photo_flickr_id": "20177048", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42840", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "imagine my surprise when i opened my birthday present and got just what i wished for .", "storylet_id": "214202"}], [{"original_text": "I was so happy that I just ignored every body in the room once I got my hands on that guitar.", "album_id": "471782", "photo_flickr_id": "20176492", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42840", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was so happy that i just ignored every body in the room once i got my hands on that guitar .", "storylet_id": "214203"}], [{"original_text": "I am still learning on the guitar but this made my 18th birthday the most memorable ever and I could not feel more blessed to have loved ones who would do this for me.", "album_id": "471782", "photo_flickr_id": "20176906", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "42840", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am still learning on the guitar but this made my 18th birthday the most memorable ever and i could not feel more blessed to have loved ones who would do this for me .", "storylet_id": "214204"}], [{"original_text": "Today was Alanna's 18th birthday!", "album_id": "471782", "photo_flickr_id": "20177513", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42841", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was [female] 's 18th birthday !", "storylet_id": "214205"}], [{"original_text": "She was so excited that she lit the candles herself!", "album_id": "471782", "photo_flickr_id": "20177741", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42841", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was so excited that she lit the candles herself !", "storylet_id": "214206"}], [{"original_text": "She then blew them out and made a big wish!", "album_id": "471782", "photo_flickr_id": "20178166", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42841", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she then blew them out and made a big wish !", "storylet_id": "214207"}], [{"original_text": "Afterwards she got out her guitar and started strumming away!", "album_id": "471782", "photo_flickr_id": "20177626", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42841", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards she got out her guitar and started strumming away !", "storylet_id": "214208"}], [{"original_text": "She played it really well. Too bad nobody came to her birthday party.", "album_id": "471782", "photo_flickr_id": "20176492", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42841", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she played it really well . too bad nobody came to her birthday party .", "storylet_id": "214209"}], [{"original_text": "My birthday was a lot of fun this year. I got my own cake and everything.", "album_id": "471782", "photo_flickr_id": "20177513", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42842", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my birthday was a lot of fun this year . i got my own cake and everything .", "storylet_id": "214210"}], [{"original_text": "I blew out my candles and made a wish.", "album_id": "471782", "photo_flickr_id": "20178166", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42842", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i blew out my candles and made a wish .", "storylet_id": "214211"}], [{"original_text": "After, I played my guitar for everyone there.", "album_id": "471782", "photo_flickr_id": "20177048", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42842", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after , i played my guitar for everyone there .", "storylet_id": "214212"}], [{"original_text": "They were requesting songs and I would try to make them my own.", "album_id": "471782", "photo_flickr_id": "20176492", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42842", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were requesting songs and i would try to make them my own .", "storylet_id": "214213"}], [{"original_text": "Everyone cheered me on as I performed.", "album_id": "471782", "photo_flickr_id": "20176906", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42842", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone cheered me on as i performed .", "storylet_id": "214214"}], [{"original_text": "Today is the day that my daughter officially is an adult. ", "album_id": "471782", "photo_flickr_id": "20177513", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "42843", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is the day that my daughter officially is an adult .", "storylet_id": "214215"}], [{"original_text": "She is lighting the candles on the 18th birthday cake. ", "album_id": "471782", "photo_flickr_id": "20177741", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "42843", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she is lighting the candles on the 18th birthday cake .", "storylet_id": "214216"}], [{"original_text": "She is blowing out her candles, and making a wish. ", "album_id": "471782", "photo_flickr_id": "20178166", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "42843", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she is blowing out her candles , and making a wish .", "storylet_id": "214217"}], [{"original_text": "As a special treat, she plays a song that she created on her guitar. ", "album_id": "471782", "photo_flickr_id": "20177626", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "42843", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as a special treat , she plays a song that she created on her guitar .", "storylet_id": "214218"}], [{"original_text": "She loves playing on her guiter. ", "album_id": "471782", "photo_flickr_id": "20176492", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "42843", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she loves playing on her guiter .", "storylet_id": "214219"}], [{"original_text": "Hi. I am Alanna. Today was my 18th birthday.", "album_id": "471782", "photo_flickr_id": "20177513", "setting": "last-3-pick-old-and-tell", "worker_id": "0NGHACXC0EN87DD", "story_id": "42844", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hi . i am [female] . today was my 18th birthday .", "storylet_id": "214220"}], [{"original_text": "I lit my candles on my cake.", "album_id": "471782", "photo_flickr_id": "20177741", "setting": "last-3-pick-old-and-tell", "worker_id": "0NGHACXC0EN87DD", "story_id": "42844", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i lit my candles on my cake .", "storylet_id": "214221"}], [{"original_text": "I blew them out. My wish was to have friends show up at my birthday party. ", "album_id": "471782", "photo_flickr_id": "20178166", "setting": "last-3-pick-old-and-tell", "worker_id": "0NGHACXC0EN87DD", "story_id": "42844", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i blew them out . my wish was to have friends show up at my birthday party .", "storylet_id": "214222"}], [{"original_text": "Then I played Happy Birthday to myself on my guitar.", "album_id": "471782", "photo_flickr_id": "20177626", "setting": "last-3-pick-old-and-tell", "worker_id": "0NGHACXC0EN87DD", "story_id": "42844", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then i played happy birthday to myself on my guitar .", "storylet_id": "214223"}], [{"original_text": "I played a sad song afterward. ", "album_id": "471782", "photo_flickr_id": "20176492", "setting": "last-3-pick-old-and-tell", "worker_id": "0NGHACXC0EN87DD", "story_id": "42844", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i played a sad song afterward .", "storylet_id": "214224"}], [{"original_text": "Jason was celebrating his birthday and it was karaoke night.", "album_id": "72157604170148809", "photo_flickr_id": "2345757611", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "42845", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was celebrating his birthday and it was karaoke night .", "storylet_id": "214225"}], [{"original_text": "His friends dedicated the first performance to him.", "album_id": "72157604170148809", "photo_flickr_id": "2345824177", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "42845", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his friends dedicated the first performance to him .", "storylet_id": "214226"}], [{"original_text": "They then sang love shack in his honor.", "album_id": "72157604170148809", "photo_flickr_id": "2345761699", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "42845", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they then sang love shack in his honor .", "storylet_id": "214227"}], [{"original_text": "Not to be outdone, jason sang endless love.", "album_id": "72157604170148809", "photo_flickr_id": "2345795875", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "42845", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "not to be outdone , jason sang endless love .", "storylet_id": "214228"}], [{"original_text": "He was feeling groovy and wanted to bust a move so he sang beat it.", "album_id": "72157604170148809", "photo_flickr_id": "2346642232", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "42845", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was feeling groovy and wanted to bust a move so he sang beat it .", "storylet_id": "214229"}], [{"original_text": "the guest of honor blew out the candles on the cake.", "album_id": "72157604170148809", "photo_flickr_id": "2345757611", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42846", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guest of honor blew out the candles on the cake .", "storylet_id": "214230"}], [{"original_text": "They all went up on stage for a group sing-a-long.", "album_id": "72157604170148809", "photo_flickr_id": "2345826833", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42846", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all went up on stage for a group sing-a-long .", "storylet_id": "214231"}], [{"original_text": "They did quite well and really showcased their talent.", "album_id": "72157604170148809", "photo_flickr_id": "2345824177", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42846", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they did quite well and really showcased their talent .", "storylet_id": "214232"}], [{"original_text": "There was even a comedian that performed.", "album_id": "72157604170148809", "photo_flickr_id": "2346612374", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42846", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was even a comedian that performed .", "storylet_id": "214233"}], [{"original_text": "It was a fun night, as the the host took the stage at the end. ", "album_id": "72157604170148809", "photo_flickr_id": "2345814071", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42846", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a fun night , as the the host took the stage at the end .", "storylet_id": "214234"}], [{"original_text": "This is a picture of my boyfriend blowing out his candles before his big performance. ", "album_id": "72157604170148809", "photo_flickr_id": "2345757611", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "42847", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of my boyfriend blowing out his candles before his big performance .", "storylet_id": "214235"}], [{"original_text": "He is warming up with a friendly round of karoke. ", "album_id": "72157604170148809", "photo_flickr_id": "2345824177", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "42847", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he is warming up with a friendly round of karoke .", "storylet_id": "214236"}], [{"original_text": "We decided to join in on the act, and sing along with him on the stage. ", "album_id": "72157604170148809", "photo_flickr_id": "2345761699", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "42847", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we decided to join in on the act , and sing along with him on the stage .", "storylet_id": "214237"}], [{"original_text": "He finally comes to his senses, and decides that he is the professional singer. ", "album_id": "72157604170148809", "photo_flickr_id": "2345795875", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "42847", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he finally comes to his senses , and decides that he is the professional singer .", "storylet_id": "214238"}], [{"original_text": "He is doing a great Micheal Jackson impression. ", "album_id": "72157604170148809", "photo_flickr_id": "2346642232", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "42847", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he is doing a great [male] [male] impression .", "storylet_id": "214239"}], [{"original_text": "It was Julia's birthday, so her friends took her out for some karaoke.", "album_id": "72157604170148809", "photo_flickr_id": "2345757611", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42848", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was [female] 's birthday , so her friends took her out for some karaoke .", "storylet_id": "214240"}], [{"original_text": "They all sang Dancing Queen together.", "album_id": "72157604170148809", "photo_flickr_id": "2345824177", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42848", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all sang dancing [female] together .", "storylet_id": "214241"}], [{"original_text": "They sounded terrible, but it was very fun.", "album_id": "72157604170148809", "photo_flickr_id": "2345761699", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42848", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they sounded terrible , but it was very fun .", "storylet_id": "214242"}], [{"original_text": "Then Derek sang a song by himself.", "album_id": "72157604170148809", "photo_flickr_id": "2345795875", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42848", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then [male] sang a song by himself .", "storylet_id": "214243"}], [{"original_text": "Julia and her other friends were embarrassed by his inappropriate dance moves. They all went home uncomfortably after that.", "album_id": "72157604170148809", "photo_flickr_id": "2346642232", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42848", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] and her other friends were embarrassed by his inappropriate dance moves . they all went home uncomfortably after that .", "storylet_id": "214244"}], [{"original_text": "He had so many candles to blow.", "album_id": "72157604170148809", "photo_flickr_id": "2345757611", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "42849", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he had so many candles to blow .", "storylet_id": "214245"}], [{"original_text": "Everyone enjoyed the Karaoke.", "album_id": "72157604170148809", "photo_flickr_id": "2345824177", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "42849", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone enjoyed the karaoke .", "storylet_id": "214246"}], [{"original_text": "This is a portrait shot of the couples karaoke contest.", "album_id": "72157604170148809", "photo_flickr_id": "2345761699", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "42849", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a portrait shot of the couples karaoke contest .", "storylet_id": "214247"}], [{"original_text": "I don't know what this man was doing, I was completely wasted at this point.", "album_id": "72157604170148809", "photo_flickr_id": "2345795875", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "42849", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i do n't know what this man was doing , i was completely wasted at this point .", "storylet_id": "214248"}], [{"original_text": "He was not only a good singer, but a good dancer too.", "album_id": "72157604170148809", "photo_flickr_id": "2346642232", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "42849", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was not only a good singer , but a good dancer too .", "storylet_id": "214249"}], [{"original_text": "The dating game started without a hitch.", "album_id": "72157604169706376", "photo_flickr_id": "2346414739", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42850", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dating game started without a hitch .", "storylet_id": "214250"}], [{"original_text": "The director looked like he knew what he was doing.", "album_id": "72157604169706376", "photo_flickr_id": "2347245424", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42850", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the director looked like he knew what he was doing .", "storylet_id": "214251"}], [{"original_text": "The people were interesting.", "album_id": "72157604169706376", "photo_flickr_id": "2346420947", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42850", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people were interesting .", "storylet_id": "214252"}], [{"original_text": "Even if their fashion was a little quirky.", "album_id": "72157604169706376", "photo_flickr_id": "2347234260", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42850", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even if their fashion was a little quirky .", "storylet_id": "214253"}], [{"original_text": "Shay found herself having a lot of fun.", "album_id": "72157604169706376", "photo_flickr_id": "2346412455", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42850", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "shay found herself having a lot of fun .", "storylet_id": "214254"}], [{"original_text": "At the venue, we ran into this unique subscription of magazines.", "album_id": "72157604169706376", "photo_flickr_id": "2347238024", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42851", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the venue , we ran into this unique subscription of magazines .", "storylet_id": "214255"}], [{"original_text": "The tables were full of building blocks.", "album_id": "72157604169706376", "photo_flickr_id": "2346401761", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42851", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tables were full of building blocks .", "storylet_id": "214256"}], [{"original_text": "My friend brought her lucky red dancing boots.", "album_id": "72157604169706376", "photo_flickr_id": "2347234260", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42851", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend brought her lucky red dancing boots .", "storylet_id": "214257"}], [{"original_text": "This man was clearly prepared for the hike in the club.", "album_id": "72157604169706376", "photo_flickr_id": "2347237194", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42851", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this man was clearly prepared for the hike in the club .", "storylet_id": "214258"}], [{"original_text": "This beautiful woman with a tiara ran into me.", "album_id": "72157604169706376", "photo_flickr_id": "2346412455", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42851", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this beautiful woman with a tiara ran into me .", "storylet_id": "214259"}], [{"original_text": "My first visit to the Bloghaus Interactive Lounge was one I'll never foget.", "album_id": "72157604169706376", "photo_flickr_id": "2346414739", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42852", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my first visit to the bloghaus interactive lounge was one i 'll never foget .", "storylet_id": "214260"}], [{"original_text": "I met so many famous bloggers, including Mark Michaels of Gazelle In Tents!", "album_id": "72157604169706376", "photo_flickr_id": "2347245424", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42852", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i met so many famous bloggers , including [male] michaels of gazelle in tents !", "storylet_id": "214261"}], [{"original_text": "Dave Letterbox was there, too.", "album_id": "72157604169706376", "photo_flickr_id": "2346420947", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42852", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] letterbox was there , too .", "storylet_id": "214262"}], [{"original_text": "This is Maria Taylor who writes the blog Pointy Toed Cowgirl Boots.", "album_id": "72157604169706376", "photo_flickr_id": "2347234260", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42852", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is [female] [female] who writes the blog pointy toed cowgirl boots .", "storylet_id": "214263"}], [{"original_text": "The Queen of the Blogoshpere - Missy McDaniels of HowDoesShe?", "album_id": "72157604169706376", "photo_flickr_id": "2346412455", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "42852", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the [female] of the blogoshpere - missy mcdaniels of howdoesshe ?", "storylet_id": "214264"}], [{"original_text": "the lounge hosted there local party that they have", "album_id": "72157604169706376", "photo_flickr_id": "2346414739", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "42853", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lounge hosted there local party that they have", "storylet_id": "214265"}], [{"original_text": "everyone came out ", "album_id": "72157604169706376", "photo_flickr_id": "2347245424", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "42853", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone came out", "storylet_id": "214266"}], [{"original_text": "even joe from across town", "album_id": "72157604169706376", "photo_flickr_id": "2346420947", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "42853", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even joe from across town", "storylet_id": "214267"}], [{"original_text": "I worn my red boots", "album_id": "72157604169706376", "photo_flickr_id": "2347234260", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "42853", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i worn my red boots", "storylet_id": "214268"}], [{"original_text": "and my pretty crown.", "album_id": "72157604169706376", "photo_flickr_id": "2346412455", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "42853", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and my pretty crown .", "storylet_id": "214269"}], [{"original_text": "Bloghaus event during South by SouthWest.", "album_id": "72157604169706376", "photo_flickr_id": "2346414739", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "42854", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "bloghaus event during south by southwest .", "storylet_id": "214270"}], [{"original_text": "Participants are taking their places.", "album_id": "72157604169706376", "photo_flickr_id": "2347245424", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "42854", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "participants are taking their places .", "storylet_id": "214271"}], [{"original_text": "He is getting ready for his speech during the event.", "album_id": "72157604169706376", "photo_flickr_id": "2346420947", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "42854", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he is getting ready for his speech during the event .", "storylet_id": "214272"}], [{"original_text": "Red cowboy boots are always fashionable.", "album_id": "72157604169706376", "photo_flickr_id": "2347234260", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "42854", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "red cowboy boots are always fashionable .", "storylet_id": "214273"}], [{"original_text": "She looked pretty with her tiara.", "album_id": "72157604169706376", "photo_flickr_id": "2346412455", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "42854", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she looked pretty with her tiara .", "storylet_id": "214274"}], [{"original_text": "The birthday party was at Chucky Cheese.", "album_id": "72157623477392752", "photo_flickr_id": "4374527615", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42855", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the birthday party was at organization organization .", "storylet_id": "214275"}], [{"original_text": "The animated robots sang and danced to entertain the kids.", "album_id": "72157623477392752", "photo_flickr_id": "4374530679", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42855", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the animated robots sang and danced to entertain the kids .", "storylet_id": "214276"}], [{"original_text": "The party guests got up to dance too.", "album_id": "72157623477392752", "photo_flickr_id": "4374524493", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42855", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the party guests got up to dance too .", "storylet_id": "214277"}], [{"original_text": "Then the big mouse came out to wish her a happy birthday and give her a special gift.", "album_id": "72157623477392752", "photo_flickr_id": "4375278594", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42855", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then the big mouse came out to wish her a happy birthday and give her a special gift .", "storylet_id": "214278"}], [{"original_text": "the birthday crown was awesome! ", "album_id": "72157623477392752", "photo_flickr_id": "4374526201", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42855", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the birthday crown was awesome !", "storylet_id": "214279"}], [{"original_text": "A girl goes to Chucky Cheese's for her birthday party.", "album_id": "72157623477392752", "photo_flickr_id": "4375283530", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42856", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a girl goes to chucky cheese 's for her birthday party .", "storylet_id": "214280"}], [{"original_text": "Many of the girl's friends show up to her party and enjoy a nice meal.", "album_id": "72157623477392752", "photo_flickr_id": "4375283990", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42856", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of the girl 's friends show up to her party and enjoy a nice meal .", "storylet_id": "214281"}], [{"original_text": "The birthday girl hugs one of her friends tightly after dinner.", "album_id": "72157623477392752", "photo_flickr_id": "4375281540", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42856", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the birthday girl hugs one of her friends tightly after dinner .", "storylet_id": "214282"}], [{"original_text": "The birthday girl is very excited about her cake.", "album_id": "72157623477392752", "photo_flickr_id": "4375277492", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42856", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the birthday girl is very excited about her cake .", "storylet_id": "214283"}], [{"original_text": "Before leaving, the birthday girl blows out her candle and prepares to eat her cake.", "album_id": "72157623477392752", "photo_flickr_id": "4375282442", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42856", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before leaving , the birthday girl blows out her candle and prepares to eat her cake .", "storylet_id": "214284"}], [{"original_text": "For her birthday, we took her and her friends to Chuck E. Cheese.", "album_id": "72157623477392752", "photo_flickr_id": "4375283530", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42857", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for her birthday , we took her and her friends to [male] e. cheese .", "storylet_id": "214285"}], [{"original_text": "The staff there was great at managing the kids.", "album_id": "72157623477392752", "photo_flickr_id": "4375283990", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42857", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the staff there was great at managing the kids .", "storylet_id": "214286"}], [{"original_text": "They all had a great time playing.", "album_id": "72157623477392752", "photo_flickr_id": "4375281540", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42857", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all had a great time playing .", "storylet_id": "214287"}], [{"original_text": "They even took care of getting the cake.", "album_id": "72157623477392752", "photo_flickr_id": "4375277492", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42857", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even took care of getting the cake .", "storylet_id": "214288"}], [{"original_text": "When they bought it out the kids loved it!", "album_id": "72157623477392752", "photo_flickr_id": "4375282442", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42857", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when they bought it out the kids loved it !", "storylet_id": "214289"}], [{"original_text": "It was the little girl's birthday and she went to Chuck.E. Cheese's to celebrate.", "album_id": "72157623477392752", "photo_flickr_id": "4375283530", "setting": "last-3-pick-old-and-tell", "worker_id": "YCRP1L1GZCXLBU6", "story_id": "42858", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the little girl 's birthday and she went to chuck.e . cheese 's to celebrate .", "storylet_id": "214290"}], [{"original_text": "The kids celebrated by having a pizza party.", "album_id": "72157623477392752", "photo_flickr_id": "4375283990", "setting": "last-3-pick-old-and-tell", "worker_id": "YCRP1L1GZCXLBU6", "story_id": "42858", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids celebrated by having a pizza party .", "storylet_id": "214291"}], [{"original_text": "The girl got to hang out with her friends.", "album_id": "72157623477392752", "photo_flickr_id": "4375281540", "setting": "last-3-pick-old-and-tell", "worker_id": "YCRP1L1GZCXLBU6", "story_id": "42858", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girl got to hang out with her friends .", "storylet_id": "214292"}], [{"original_text": "They then brought out a nice yellow cake with a candle.", "album_id": "72157623477392752", "photo_flickr_id": "4375277492", "setting": "last-3-pick-old-and-tell", "worker_id": "YCRP1L1GZCXLBU6", "story_id": "42858", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they then brought out a nice yellow cake with a candle .", "storylet_id": "214293"}], [{"original_text": "The little girl finished up her birthday by blowing out the candle and eating some cake!", "album_id": "72157623477392752", "photo_flickr_id": "4375282442", "setting": "last-3-pick-old-and-tell", "worker_id": "YCRP1L1GZCXLBU6", "story_id": "42858", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the little girl finished up her birthday by blowing out the candle and eating some cake !", "storylet_id": "214294"}], [{"original_text": "Kate wanted to have her birthday party someplace fun, so her parents chose Chuckie Cheese!", "album_id": "72157623477392752", "photo_flickr_id": "4374527615", "setting": "last-3-pick-old-and-tell", "worker_id": "CQ56QM4P3DJ9CFY", "story_id": "42859", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] wanted to have her birthday party someplace fun , so her parents chose chuckie cheese !", "storylet_id": "214295"}], [{"original_text": "Kate invited all of her friends from school.", "album_id": "72157623477392752", "photo_flickr_id": "4374530679", "setting": "last-3-pick-old-and-tell", "worker_id": "CQ56QM4P3DJ9CFY", "story_id": "42859", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] invited all of her friends from school .", "storylet_id": "214296"}], [{"original_text": "There were lots of fun activities to do, including dancing to music.", "album_id": "72157623477392752", "photo_flickr_id": "4374524493", "setting": "last-3-pick-old-and-tell", "worker_id": "CQ56QM4P3DJ9CFY", "story_id": "42859", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were lots of fun activities to do , including dancing to music .", "storylet_id": "214297"}], [{"original_text": "Chuckie himself even came to the party to give Kate a special present.", "album_id": "72157623477392752", "photo_flickr_id": "4375278594", "setting": "last-3-pick-old-and-tell", "worker_id": "CQ56QM4P3DJ9CFY", "story_id": "42859", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "chuckie himself even came to the party to give [female] a special present .", "storylet_id": "214298"}], [{"original_text": "Kate really enjoyed her birthday party!", "album_id": "72157623477392752", "photo_flickr_id": "4374526201", "setting": "last-3-pick-old-and-tell", "worker_id": "CQ56QM4P3DJ9CFY", "story_id": "42859", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] really enjoyed her birthday party !", "storylet_id": "214299"}], [{"original_text": "My cousin came from across two states.", "album_id": "172811", "photo_flickr_id": "6931879", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42860", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my cousin came from across two states .", "storylet_id": "214300"}], [{"original_text": "She brought my little nephew with her.", "album_id": "172811", "photo_flickr_id": "6931890", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42860", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she brought my little nephew with her .", "storylet_id": "214301"}], [{"original_text": "He is so cute and he is very adventurous.", "album_id": "172811", "photo_flickr_id": "6931886", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42860", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he is so cute and he is very adventurous .", "storylet_id": "214302"}], [{"original_text": "He plays with my niece and they explore my home.", "album_id": "172811", "photo_flickr_id": "6931925", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42860", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he plays with my niece and they explore my home .", "storylet_id": "214303"}], [{"original_text": "We were celebrating my brother's birthday with a chocolate cake.", "album_id": "172811", "photo_flickr_id": "6931898", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42860", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were celebrating my brother 's birthday with a chocolate cake .", "storylet_id": "214304"}], [{"original_text": "Betty and Bobby did not like being left out of the party. They decided to break in. Bobby found a way through the locked door. They were in!", "album_id": "172811", "photo_flickr_id": "6931925", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42861", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [male] did not like being left out of the party . they decided to break in . [male] found a way through the locked door . they were in !", "storylet_id": "214305"}], [{"original_text": "Betty saw Sally by the cake so she ran right there so she could help decorate. ", "album_id": "172811", "photo_flickr_id": "6931944", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42861", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] saw [female] by the cake so she ran right there so she could help decorate .", "storylet_id": "214306"}], [{"original_text": "Sally put the candles on. ", "album_id": "172811", "photo_flickr_id": "6931955", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42861", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] put the candles on .", "storylet_id": "214307"}], [{"original_text": "Bobby went straight to wear he left his toys. He could see his little car was all right, but where did all these round blue things come from. ", "album_id": "172811", "photo_flickr_id": "6931886", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42861", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] went straight to wear he left his toys . he could see his little car was all right , but where did all these round blue things come from .", "storylet_id": "214308"}], [{"original_text": "Sally's mom was astonished at Betty and Bobby's derring do. ", "album_id": "172811", "photo_flickr_id": "6931852", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42861", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] 's mom was astonished at [female] and [male] 's derring do .", "storylet_id": "214309"}], [{"original_text": "So happy to be at the birthday party.", "album_id": "172811", "photo_flickr_id": "6931879", "setting": "last-3-pick-old-and-tell", "worker_id": "3CIGRBW41S3D0NJ", "story_id": "42862", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so happy to be at the birthday party .", "storylet_id": "214310"}], [{"original_text": "Waiting for the cake to be cut.", "album_id": "172811", "photo_flickr_id": "6931890", "setting": "last-3-pick-old-and-tell", "worker_id": "3CIGRBW41S3D0NJ", "story_id": "42862", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "waiting for the cake to be cut .", "storylet_id": "214311"}], [{"original_text": "Enjoying running through the balloons on the ground.", "album_id": "172811", "photo_flickr_id": "6931886", "setting": "last-3-pick-old-and-tell", "worker_id": "3CIGRBW41S3D0NJ", "story_id": "42862", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "enjoying running through the balloons on the ground .", "storylet_id": "214312"}], [{"original_text": "Playing hide and seek in the hallway.", "album_id": "172811", "photo_flickr_id": "6931925", "setting": "last-3-pick-old-and-tell", "worker_id": "3CIGRBW41S3D0NJ", "story_id": "42862", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "playing hide and seek in the hallway .", "storylet_id": "214313"}], [{"original_text": "Ready to blow out the candles and have some cake.", "album_id": "172811", "photo_flickr_id": "6931898", "setting": "last-3-pick-old-and-tell", "worker_id": "3CIGRBW41S3D0NJ", "story_id": "42862", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ready to blow out the candles and have some cake .", "storylet_id": "214314"}], [{"original_text": "Proud parents posing before the party begins.", "album_id": "172811", "photo_flickr_id": "6931879", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42863", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "proud parents posing before the party begins .", "storylet_id": "214315"}], [{"original_text": "Birthday boy is so excited we let him open his gifts right away.", "album_id": "172811", "photo_flickr_id": "6931890", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42863", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "birthday boy is so excited we let him open his gifts right away .", "storylet_id": "214316"}], [{"original_text": "He happily played with new toys while the grown ups visited.", "album_id": "172811", "photo_flickr_id": "6931886", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42863", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he happily played with new toys while the grown ups visited .", "storylet_id": "214317"}], [{"original_text": "Big sister kept an eye on her baby brother.", "album_id": "172811", "photo_flickr_id": "6931925", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42863", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "big sister kept an eye on her baby brother .", "storylet_id": "214318"}], [{"original_text": "The cake was ready but the kids kept playing. It was served later on.", "album_id": "172811", "photo_flickr_id": "6931898", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42863", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cake was ready but the kids kept playing . it was served later on .", "storylet_id": "214319"}], [{"original_text": "The kids were playing all kinds of games.", "album_id": "172811", "photo_flickr_id": "6931925", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42864", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids were playing all kinds of games .", "storylet_id": "214320"}], [{"original_text": "They played casino style ones.", "album_id": "172811", "photo_flickr_id": "6931944", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42864", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they played casino style ones .", "storylet_id": "214321"}], [{"original_text": "She was excited when it was her turn to spin.", "album_id": "172811", "photo_flickr_id": "6931955", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42864", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was excited when it was her turn to spin .", "storylet_id": "214322"}], [{"original_text": "The little boys played catch.", "album_id": "172811", "photo_flickr_id": "6931886", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42864", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the little boys played catch .", "storylet_id": "214323"}], [{"original_text": "Even the adults played with them.", "album_id": "172811", "photo_flickr_id": "6931852", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42864", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the adults played with them .", "storylet_id": "214324"}], [{"original_text": "Happy birthday, Simon!", "album_id": "72157623534565419", "photo_flickr_id": "4448286747", "setting": "first-2-pick-and-tell", "worker_id": "IMYECRYYXR1K64K", "story_id": "42865", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "happy birthday , [male] !", "storylet_id": "214325"}], [{"original_text": "For his gift, he chose to go to the science museum and play with capacitors.", "album_id": "72157623534565419", "photo_flickr_id": "4448305971", "setting": "first-2-pick-and-tell", "worker_id": "IMYECRYYXR1K64K", "story_id": "42865", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "for his gift , he chose to go to the science museum and play with capacitors .", "storylet_id": "214326"}], [{"original_text": "There was an interesting drink offered that guaranteed to turn your pee purple.", "album_id": "72157623534565419", "photo_flickr_id": "4448287329", "setting": "first-2-pick-and-tell", "worker_id": "IMYECRYYXR1K64K", "story_id": "42865", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was an interesting drink offered that guaranteed to turn your pee purple .", "storylet_id": "214327"}], [{"original_text": "And possibly enhance the effects of the color wall.", "album_id": "72157623534565419", "photo_flickr_id": "4448286961", "setting": "first-2-pick-and-tell", "worker_id": "IMYECRYYXR1K64K", "story_id": "42865", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and possibly enhance the effects of the color wall .", "storylet_id": "214328"}], [{"original_text": "Science Buzz, indeed.", "album_id": "72157623534565419", "photo_flickr_id": "4448287077", "setting": "first-2-pick-and-tell", "worker_id": "IMYECRYYXR1K64K", "story_id": "42865", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "science buzz , indeed .", "storylet_id": "214329"}], [{"original_text": "Every year another birthday comes.", "album_id": "72157623534565419", "photo_flickr_id": "4448286747", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42866", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every year another birthday comes .", "storylet_id": "214330"}], [{"original_text": "You add the numbers and can't believe how old you are.", "album_id": "72157623534565419", "photo_flickr_id": "4448305205", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42866", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you add the numbers and ca n't believe how old you are .", "storylet_id": "214331"}], [{"original_text": "But you see things that put those numbers into perspective.", "album_id": "72157623534565419", "photo_flickr_id": "4449062744", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42866", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but you see things that put those numbers into perspective .", "storylet_id": "214332"}], [{"original_text": "You have to let a little light into your life.", "album_id": "72157623534565419", "photo_flickr_id": "4449080774", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42866", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you have to let a little light into your life .", "storylet_id": "214333"}], [{"original_text": "The probability that you have so much still ahead of you, will comfort you and make you thankful.", "album_id": "72157623534565419", "photo_flickr_id": "4448305169", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "42866", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the probability that you have so much still ahead of you , will comfort you and make you thankful .", "storylet_id": "214334"}], [{"original_text": "Yesterday was my birthday.", "album_id": "72157623534565419", "photo_flickr_id": "4448286747", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42867", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday was my birthday .", "storylet_id": "214335"}], [{"original_text": "We celebrated by going out on the town.", "album_id": "72157623534565419", "photo_flickr_id": "4448305205", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42867", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we celebrated by going out on the town .", "storylet_id": "214336"}], [{"original_text": "We went into many shops and clubs.", "album_id": "72157623534565419", "photo_flickr_id": "4449062744", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42867", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went into many shops and clubs .", "storylet_id": "214337"}], [{"original_text": "the lights were surrounding us to bring us in.", "album_id": "72157623534565419", "photo_flickr_id": "4449080774", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42867", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lights were surrounding us to bring us in .", "storylet_id": "214338"}], [{"original_text": "We settled in one pub and just played games. It was a wonderful birthday.", "album_id": "72157623534565419", "photo_flickr_id": "4448305169", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42867", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we settled in one pub and just played games . it was a wonderful birthday .", "storylet_id": "214339"}], [{"original_text": "I had a great birthday party.", "album_id": "72157623534565419", "photo_flickr_id": "4448286747", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42868", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great birthday party .", "storylet_id": "214340"}], [{"original_text": "I learned a lot today.", "album_id": "72157623534565419", "photo_flickr_id": "4448305205", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42868", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i learned a lot today .", "storylet_id": "214341"}], [{"original_text": "There were a lot of different kinds of food there.", "album_id": "72157623534565419", "photo_flickr_id": "4449062744", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42868", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of different kinds of food there .", "storylet_id": "214342"}], [{"original_text": "After that we went to the club.", "album_id": "72157623534565419", "photo_flickr_id": "4449080774", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42868", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that we went to the club .", "storylet_id": "214343"}], [{"original_text": "We had a great time.", "album_id": "72157623534565419", "photo_flickr_id": "4448305169", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42868", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time .", "storylet_id": "214344"}], [{"original_text": "The birthday boy waited for what seemed like hours until he could blow out his candles.", "album_id": "72157623534565419", "photo_flickr_id": "4448286747", "setting": "last-3-pick-old-and-tell", "worker_id": "UW7BQS06OH5BEUP", "story_id": "42869", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the birthday boy waited for what seemed like hours until he could blow out his candles .", "storylet_id": "214345"}], [{"original_text": "After the party the group went on a tour of the factory.", "album_id": "72157623534565419", "photo_flickr_id": "4448305971", "setting": "last-3-pick-old-and-tell", "worker_id": "UW7BQS06OH5BEUP", "story_id": "42869", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after the party the group went on a tour of the factory .", "storylet_id": "214346"}], [{"original_text": "During the tour the adults had a taste taste of beverages.", "album_id": "72157623534565419", "photo_flickr_id": "4448287329", "setting": "last-3-pick-old-and-tell", "worker_id": "UW7BQS06OH5BEUP", "story_id": "42869", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "during the tour the adults had a taste taste of beverages .", "storylet_id": "214347"}], [{"original_text": "The tour continued with a show of hands.", "album_id": "72157623534565419", "photo_flickr_id": "4448286961", "setting": "last-3-pick-old-and-tell", "worker_id": "UW7BQS06OH5BEUP", "story_id": "42869", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the tour continued with a show of hands .", "storylet_id": "214348"}], [{"original_text": "The adults ended the evening at a local hot spot.", "album_id": "72157623534565419", "photo_flickr_id": "4448287077", "setting": "last-3-pick-old-and-tell", "worker_id": "UW7BQS06OH5BEUP", "story_id": "42869", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the adults ended the evening at a local hot spot .", "storylet_id": "214349"}], [{"original_text": "Everyone gathered at the restaurant for the party.", "album_id": "478052", "photo_flickr_id": "20488401", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42870", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone gathered at the restaurant for the party .", "storylet_id": "214350"}], [{"original_text": "They took pictures for the birthday and had some drinks.", "album_id": "478052", "photo_flickr_id": "20488372", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42870", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took pictures for the birthday and had some drinks .", "storylet_id": "214351"}], [{"original_text": "She was amazed that she could touch the ceiling.", "album_id": "478052", "photo_flickr_id": "20488325", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42870", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was amazed that she could touch the ceiling .", "storylet_id": "214352"}], [{"original_text": "Just a little horseplay between these two cut-ups.", "album_id": "478052", "photo_flickr_id": "20488328", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42870", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "just a little horseplay between these two cut-ups .", "storylet_id": "214353"}], [{"original_text": "Finally, winding down with some conversation. ", "album_id": "478052", "photo_flickr_id": "20488338", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42870", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , winding down with some conversation .", "storylet_id": "214354"}], [{"original_text": "We all met at the bar for the night.", "album_id": "478052", "photo_flickr_id": "20488389", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42871", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all met at the bar for the night .", "storylet_id": "214355"}], [{"original_text": "He was liked her and tried to pick her up all night. ", "album_id": "478052", "photo_flickr_id": "20488367", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42871", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was liked her and tried to pick her up all night .", "storylet_id": "214356"}], [{"original_text": "There were a lot of friends who came. ", "album_id": "478052", "photo_flickr_id": "20488335", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42871", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of friends who came .", "storylet_id": "214357"}], [{"original_text": "She wanted him to see all the decorations she hung. ", "album_id": "478052", "photo_flickr_id": "20488325", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42871", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she wanted him to see all the decorations she hung .", "storylet_id": "214358"}], [{"original_text": "They were acting goofy all night.", "album_id": "478052", "photo_flickr_id": "20488328", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42871", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were acting goofy all night .", "storylet_id": "214359"}], [{"original_text": "We are all goofing around before the party starts.", "album_id": "478052", "photo_flickr_id": "20488401", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42872", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are all goofing around before the party starts .", "storylet_id": "214360"}], [{"original_text": "Everyone is here, and settling in.", "album_id": "478052", "photo_flickr_id": "20488372", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42872", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone is here , and settling in .", "storylet_id": "214361"}], [{"original_text": "Everyone is having a great time talking.", "album_id": "478052", "photo_flickr_id": "20488325", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42872", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone is having a great time talking .", "storylet_id": "214362"}], [{"original_text": "There is also some rough housing, but it is in good fun.", "album_id": "478052", "photo_flickr_id": "20488328", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42872", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there is also some rough housing , but it is in good fun .", "storylet_id": "214363"}], [{"original_text": "We even took some time to relax, and have some drinks.", "album_id": "478052", "photo_flickr_id": "20488338", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "42872", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even took some time to relax , and have some drinks .", "storylet_id": "214364"}], [{"original_text": "Everyone has gathered to celebrate the guest of honor. ", "album_id": "478052", "photo_flickr_id": "20488401", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42873", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone has gathered to celebrate the guest of honor .", "storylet_id": "214365"}], [{"original_text": "He can't believe his friends got him the camera he always wanted for his birthday. ", "album_id": "478052", "photo_flickr_id": "20488372", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42873", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he ca n't believe his friends got him the camera he always wanted for his birthday .", "storylet_id": "214366"}], [{"original_text": "They think they can see the many, many candles from the cake reflected on the ceiling!", "album_id": "478052", "photo_flickr_id": "20488325", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42873", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they think they can see the many , many candles from the cake reflected on the ceiling !", "storylet_id": "214367"}], [{"original_text": "He thanked his good friend for throwing him the birthday party.", "album_id": "478052", "photo_flickr_id": "20488328", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42873", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he thanked his good friend for throwing him the birthday party .", "storylet_id": "214368"}], [{"original_text": "These close friends gather in a quiet corner to catch up on old times. ", "album_id": "478052", "photo_flickr_id": "20488338", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "42873", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these close friends gather in a quiet corner to catch up on old times .", "storylet_id": "214369"}], [{"original_text": "We threw a birthday party for my buddy.", "album_id": "478052", "photo_flickr_id": "20488401", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42874", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we threw a birthday party for my buddy .", "storylet_id": "214370"}], [{"original_text": "He opened up the gifts and loved them!", "album_id": "478052", "photo_flickr_id": "20488372", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42874", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he opened up the gifts and loved them !", "storylet_id": "214371"}], [{"original_text": "A wasp got in the door and everyone was worried about being stung!", "album_id": "478052", "photo_flickr_id": "20488325", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42874", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a wasp got in the door and everyone was worried about being stung !", "storylet_id": "214372"}], [{"original_text": "My buddy wanted to wrestle someone for the last beer.", "album_id": "478052", "photo_flickr_id": "20488328", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42874", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my buddy wanted to wrestle someone for the last beer .", "storylet_id": "214373"}], [{"original_text": "We sat and talked about how things were going in our lives.", "album_id": "478052", "photo_flickr_id": "20488338", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "42874", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we sat and talked about how things were going in our lives .", "storylet_id": "214374"}], [{"original_text": "Grandma decorates grandpa's birthday cake in preparation for his birthday party.", "album_id": "72157623134066795", "photo_flickr_id": "4294541012", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42875", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandma decorates grandpa 's birthday cake in preparation for his birthday party .", "storylet_id": "214375"}], [{"original_text": "There are many beautiful decoration's at grandpa's party.", "album_id": "72157623134066795", "photo_flickr_id": "4293799367", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42875", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are many beautiful decoration 's at grandpa 's party .", "storylet_id": "214376"}], [{"original_text": "Dad decides to record the entire party with his digital camera.", "album_id": "72157623134066795", "photo_flickr_id": "4294541264", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42875", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad decides to record the entire party with his digital camera .", "storylet_id": "214377"}], [{"original_text": "Great grandma cuts a piece of cake for her great grandson.", "album_id": "72157623134066795", "photo_flickr_id": "4294543376", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42875", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "great grandma cuts a piece of cake for her great grandson .", "storylet_id": "214378"}], [{"original_text": "At the end of the party, grandpa blows out his candles and prepares to eat some cake.", "album_id": "72157623134066795", "photo_flickr_id": "4294541636", "setting": "first-2-pick-and-tell", "worker_id": "TB9R6BC097WIE2Y", "story_id": "42875", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the party , grandpa blows out his candles and prepares to eat some cake .", "storylet_id": "214379"}], [{"original_text": "Martha prepares the birthday cake for the birthday boy.", "album_id": "72157623134066795", "photo_flickr_id": "4293798775", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42876", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] prepares the birthday cake for the birthday boy .", "storylet_id": "214380"}], [{"original_text": "The birthday boys father is recording the party.", "album_id": "72157623134066795", "photo_flickr_id": "4294541264", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42876", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the birthday boys father is recording the party .", "storylet_id": "214381"}], [{"original_text": "It's time to cut the cake for the birthday boy.", "album_id": "72157623134066795", "photo_flickr_id": "4293799807", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42876", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's time to cut the cake for the birthday boy .", "storylet_id": "214382"}], [{"original_text": "Mom is cutting the cake for everyone.", "album_id": "72157623134066795", "photo_flickr_id": "4294542342", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42876", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom is cutting the cake for everyone .", "storylet_id": "214383"}], [{"original_text": "Grandma is watching her sweet grandchild blow the candles out.", "album_id": "72157623134066795", "photo_flickr_id": "4293801155", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42876", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandma is watching her sweet grandchild blow the candles out .", "storylet_id": "214384"}], [{"original_text": "It was a grandmother's birthday today.", "album_id": "72157623134066795", "photo_flickr_id": "4293798775", "setting": "last-3-pick-old-and-tell", "worker_id": "YCRP1L1GZCXLBU6", "story_id": "42877", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a grandmother 's birthday today .", "storylet_id": "214385"}], [{"original_text": "Her son brought the family and decided to film the entire event.", "album_id": "72157623134066795", "photo_flickr_id": "4294541264", "setting": "last-3-pick-old-and-tell", "worker_id": "YCRP1L1GZCXLBU6", "story_id": "42877", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her son brought the family and decided to film the entire event .", "storylet_id": "214386"}], [{"original_text": "All of the grandmother's friends and family came to celebrate and eat cake.", "album_id": "72157623134066795", "photo_flickr_id": "4293799807", "setting": "last-3-pick-old-and-tell", "worker_id": "YCRP1L1GZCXLBU6", "story_id": "42877", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of the grandmother 's friends and family came to celebrate and eat cake .", "storylet_id": "214387"}], [{"original_text": "The cake was the biggest hit of the event because it was a nice blue color.", "album_id": "72157623134066795", "photo_flickr_id": "4294542342", "setting": "last-3-pick-old-and-tell", "worker_id": "YCRP1L1GZCXLBU6", "story_id": "42877", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cake was the biggest hit of the event because it was a nice blue color .", "storylet_id": "214388"}], [{"original_text": "The day ended with the grandmother spending quality time with her grandchildren!", "album_id": "72157623134066795", "photo_flickr_id": "4293801155", "setting": "last-3-pick-old-and-tell", "worker_id": "YCRP1L1GZCXLBU6", "story_id": "42877", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day ended with the grandmother spending quality time with her grandchildren !", "storylet_id": "214389"}], [{"original_text": "It was Grandma's 80th birthday. The whole family was celebrating. Grandma sliced the cake for Ben, her youngest grandchild. ", "album_id": "72157623134066795", "photo_flickr_id": "4294541012", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42878", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was grandma 's 80th birthday . the whole family was celebrating . grandma sliced the cake for [male] , her youngest grandchild .", "storylet_id": "214390"}], [{"original_text": "Grandpa made a lovely speech saying that Grandma was the most wonderful woman in the world.", "album_id": "72157623134066795", "photo_flickr_id": "4293799367", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42878", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandpa made a lovely speech saying that grandma was the most wonderful woman in the world .", "storylet_id": "214391"}], [{"original_text": "Ben's father Dave took photos to commemorate the day. ", "album_id": "72157623134066795", "photo_flickr_id": "4294541264", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42878", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] 's father [male] took photos to commemorate the day .", "storylet_id": "214392"}], [{"original_text": "Grandma and Ben laughed together over a card Ben had made for Grandma. ", "album_id": "72157623134066795", "photo_flickr_id": "4294543376", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42878", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandma and [male] laughed together over a card [male] had made for grandma .", "storylet_id": "214393"}], [{"original_text": "Grandpa, after so much talking, treated himself to birthday cake. ", "album_id": "72157623134066795", "photo_flickr_id": "4294541636", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42878", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandpa , after so much talking , treated himself to birthday cake .", "storylet_id": "214394"}], [{"original_text": "We rented a room at this restaurant for the party. The cake they made was beautiful.", "album_id": "72157623134066795", "photo_flickr_id": "4293798775", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42879", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we rented a room at this restaurant for the party . the cake they made was beautiful .", "storylet_id": "214395"}], [{"original_text": "Photographing the photographer. How does it feel, baby brother?", "album_id": "72157623134066795", "photo_flickr_id": "4294541264", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42879", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "photographing the photographer . how does it feel , baby brother ?", "storylet_id": "214396"}], [{"original_text": "Buffet style always works out well if the line isn't long.", "album_id": "72157623134066795", "photo_flickr_id": "4293799807", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42879", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "buffet style always works out well if the line is n't long .", "storylet_id": "214397"}], [{"original_text": "Everything was so organized and arranged neatly.", "album_id": "72157623134066795", "photo_flickr_id": "4294542342", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42879", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everything was so organized and arranged neatly .", "storylet_id": "214398"}], [{"original_text": "Got a photo of grandma before she left. She is always the first to go.", "album_id": "72157623134066795", "photo_flickr_id": "4293801155", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42879", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "got a photo of grandma before she left . she is always the first to go .", "storylet_id": "214399"}], [{"original_text": "I wondered when I would get some of that cake I saw.", "album_id": "72157623359981459", "photo_flickr_id": "4378584206", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "42880", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i wondered when i would get some of that cake i saw .", "storylet_id": "214400"}], [{"original_text": "That didn't taste like cake. ", "album_id": "72157623359981459", "photo_flickr_id": "4377844075", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "42880", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that did n't taste like cake .", "storylet_id": "214401"}], [{"original_text": "Now that is good cake and I really liked the icing. ", "album_id": "72157623359981459", "photo_flickr_id": "4377865731", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "42880", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now that is good cake and i really liked the icing .", "storylet_id": "214402"}], [{"original_text": "More cake please and be quick about it. ", "album_id": "72157623359981459", "photo_flickr_id": "4378628508", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "42880", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more cake please and be quick about it .", "storylet_id": "214403"}], [{"original_text": "I would ask for my milk but I can't move right now.", "album_id": "72157623359981459", "photo_flickr_id": "4377877211", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "42880", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i would ask for my milk but i ca n't move right now .", "storylet_id": "214404"}], [{"original_text": "It was time for a play date with me and my best friends little ones. ", "album_id": "72157623359981459", "photo_flickr_id": "4377822169", "setting": "first-2-pick-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "42881", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was time for a play date with me and my best friends little ones .", "storylet_id": "214405"}], [{"original_text": "The both seemed like they were having fun.", "album_id": "72157623359981459", "photo_flickr_id": "4378577652", "setting": "first-2-pick-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "42881", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the both seemed like they were having fun .", "storylet_id": "214406"}], [{"original_text": "I got to pose here with my baby. ", "album_id": "72157623359981459", "photo_flickr_id": "4377867255", "setting": "first-2-pick-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "42881", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got to pose here with my baby .", "storylet_id": "214407"}], [{"original_text": "This was nice, a chance to do something different. ", "album_id": "72157623359981459", "photo_flickr_id": "4378631084", "setting": "first-2-pick-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "42881", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was nice , a chance to do something different .", "storylet_id": "214408"}], [{"original_text": "The date was over time to go home. ", "album_id": "72157623359981459", "photo_flickr_id": "4378633692", "setting": "first-2-pick-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "42881", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the date was over time to go home .", "storylet_id": "214409"}], [{"original_text": "The family came over for my son's first birthday.", "album_id": "72157623359981459", "photo_flickr_id": "4378584206", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42882", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family came over for my son 's first birthday .", "storylet_id": "214410"}], [{"original_text": "Everyone got him some amazing presents and books.", "album_id": "72157623359981459", "photo_flickr_id": "4377844075", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42882", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone got him some amazing presents and books .", "storylet_id": "214411"}], [{"original_text": "He really enjoyed eating his cake with his hands.", "album_id": "72157623359981459", "photo_flickr_id": "4377865731", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42882", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he really enjoyed eating his cake with his hands .", "storylet_id": "214412"}], [{"original_text": "He finished it all by himself. ", "album_id": "72157623359981459", "photo_flickr_id": "4378628508", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42882", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he finished it all by himself .", "storylet_id": "214413"}], [{"original_text": "He was quite pleased with himself.", "album_id": "72157623359981459", "photo_flickr_id": "4377877211", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42882", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was quite pleased with himself .", "storylet_id": "214414"}], [{"original_text": "The family gathers at the house for conversation.", "album_id": "72157623359981459", "photo_flickr_id": "4377822169", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "42883", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family gathers at the house for conversation .", "storylet_id": "214415"}], [{"original_text": "The two infants are in the mood to play on the floor.", "album_id": "72157623359981459", "photo_flickr_id": "4378577652", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "42883", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the two infants are in the mood to play on the floor .", "storylet_id": "214416"}], [{"original_text": "Mother joins her young son for a photo op.", "album_id": "72157623359981459", "photo_flickr_id": "4377867255", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "42883", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mother joins her young son for a photo op .", "storylet_id": "214417"}], [{"original_text": "Laughter is shared again over on the couch.", "album_id": "72157623359981459", "photo_flickr_id": "4378631084", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "42883", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "laughter is shared again over on the couch .", "storylet_id": "214418"}], [{"original_text": "The ladies take a moment to pose with their young friend.", "album_id": "72157623359981459", "photo_flickr_id": "4378633692", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "42883", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ladies take a moment to pose with their young friend .", "storylet_id": "214419"}], [{"original_text": "this family had a play date together. ", "album_id": "72157623359981459", "photo_flickr_id": "4377822169", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42884", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this family had a play date together .", "storylet_id": "214420"}], [{"original_text": "their children played with each other. ", "album_id": "72157623359981459", "photo_flickr_id": "4378577652", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42884", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their children played with each other .", "storylet_id": "214421"}], [{"original_text": "afterwards they fed their children. ", "album_id": "72157623359981459", "photo_flickr_id": "4377867255", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42884", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards they fed their children .", "storylet_id": "214422"}], [{"original_text": "their parents talked to each other in the meantime. ", "album_id": "72157623359981459", "photo_flickr_id": "4378631084", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42884", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their parents talked to each other in the meantime .", "storylet_id": "214423"}], [{"original_text": "it was such a fun and successful day. ", "album_id": "72157623359981459", "photo_flickr_id": "4378633692", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "42884", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was such a fun and successful day .", "storylet_id": "214424"}], [{"original_text": "Grandma loves when all the kids come over to visit.", "album_id": "72157623514098462", "photo_flickr_id": "4379015108", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42885", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandma loves when all the kids come over to visit .", "storylet_id": "214425"}], [{"original_text": "She will pick them them up and put them on her lap even though it hurts.", "album_id": "72157623514098462", "photo_flickr_id": "4378264547", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42885", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she will pick them them up and put them on her lap even though it hurts .", "storylet_id": "214426"}], [{"original_text": "The kids love each other as well giving lots of hugs and love.", "album_id": "72157623514098462", "photo_flickr_id": "4379020394", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42885", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids love each other as well giving lots of hugs and love .", "storylet_id": "214427"}], [{"original_text": "Grandma can not forget her little girl and gives her some love as well.", "album_id": "72157623514098462", "photo_flickr_id": "4379022324", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42885", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandma can not forget her little girl and gives her some love as well .", "storylet_id": "214428"}], [{"original_text": "Grandpa says it's time for cake.", "album_id": "72157623514098462", "photo_flickr_id": "4379024544", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42885", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandpa says it 's time for cake .", "storylet_id": "214429"}], [{"original_text": "The grandma was so happy to finally meet her first grandson.", "album_id": "72157623514098462", "photo_flickr_id": "4378261793", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "42886", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the grandma was so happy to finally meet her first grandson .", "storylet_id": "214430"}], [{"original_text": "All the grandchildren were there for the special occasion!", "album_id": "72157623514098462", "photo_flickr_id": "4379015108", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "42886", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the grandchildren were there for the special occasion !", "storylet_id": "214431"}], [{"original_text": "They really loved each other.", "album_id": "72157623514098462", "photo_flickr_id": "4379020394", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "42886", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they really loved each other .", "storylet_id": "214432"}], [{"original_text": "Grandma just couldn't get enough of the grandchildren.", "album_id": "72157623514098462", "photo_flickr_id": "4378268767", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "42886", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandma just could n't get enough of the grandchildren .", "storylet_id": "214433"}], [{"original_text": "Everybody seemed to forget the reason they were all there was to celebrate the grandpas birthday.", "album_id": "72157623514098462", "photo_flickr_id": "4379024544", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "42886", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everybody seemed to forget the reason they were all there was to celebrate the grandpas birthday .", "storylet_id": "214434"}], [{"original_text": "Today the family got together to celebrate the grandfather's birthday,", "album_id": "72157623514098462", "photo_flickr_id": "4378261793", "setting": "last-3-pick-old-and-tell", "worker_id": "RB7CMHTJ7N7DOM3", "story_id": "42887", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today the family got together to celebrate the grandfather 's birthday ,", "storylet_id": "214435"}], [{"original_text": "Grandma gave the youngest grandchild a lot of her attention.", "album_id": "72157623514098462", "photo_flickr_id": "4379015108", "setting": "last-3-pick-old-and-tell", "worker_id": "RB7CMHTJ7N7DOM3", "story_id": "42887", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma gave the youngest grandchild a lot of her attention .", "storylet_id": "214436"}], [{"original_text": "So much so, that the older sibling got a little jealous.", "album_id": "72157623514098462", "photo_flickr_id": "4379020394", "setting": "last-3-pick-old-and-tell", "worker_id": "RB7CMHTJ7N7DOM3", "story_id": "42887", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so much so , that the older sibling got a little jealous .", "storylet_id": "214437"}], [{"original_text": "Grandma then spent her time coddling her granddaughter.", "album_id": "72157623514098462", "photo_flickr_id": "4378268767", "setting": "last-3-pick-old-and-tell", "worker_id": "RB7CMHTJ7N7DOM3", "story_id": "42887", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandma then spent her time coddling her granddaughter .", "storylet_id": "214438"}], [{"original_text": "But it was Grandpa's big day and it ended with cake and a rousing chorus of Happy Birthday.", "album_id": "72157623514098462", "photo_flickr_id": "4379024544", "setting": "last-3-pick-old-and-tell", "worker_id": "RB7CMHTJ7N7DOM3", "story_id": "42887", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but it was grandpa 's big day and it ended with cake and a rousing chorus of happy birthday .", "storylet_id": "214439"}], [{"original_text": "It was grandpa's birthday, so all of the family decided to come celebrate.", "album_id": "72157623514098462", "photo_flickr_id": "4379015108", "setting": "last-3-pick-old-and-tell", "worker_id": "YCRP1L1GZCXLBU6", "story_id": "42888", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was grandpa 's birthday , so all of the family decided to come celebrate .", "storylet_id": "214440"}], [{"original_text": "Grandma had so much fun playing with her grandchildren.", "album_id": "72157623514098462", "photo_flickr_id": "4378264547", "setting": "last-3-pick-old-and-tell", "worker_id": "YCRP1L1GZCXLBU6", "story_id": "42888", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma had so much fun playing with her grandchildren .", "storylet_id": "214441"}], [{"original_text": "The little kids were happy at first, but they were getting hungry.", "album_id": "72157623514098462", "photo_flickr_id": "4379020394", "setting": "last-3-pick-old-and-tell", "worker_id": "YCRP1L1GZCXLBU6", "story_id": "42888", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the little kids were happy at first , but they were getting hungry .", "storylet_id": "214442"}], [{"original_text": "Grandma tried to distract them by playing games with them.", "album_id": "72157623514098462", "photo_flickr_id": "4379022324", "setting": "last-3-pick-old-and-tell", "worker_id": "YCRP1L1GZCXLBU6", "story_id": "42888", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandma tried to distract them by playing games with them .", "storylet_id": "214443"}], [{"original_text": "At the end of the day, they brought out a cake for grandpa and ate so much cake!", "album_id": "72157623514098462", "photo_flickr_id": "4379024544", "setting": "last-3-pick-old-and-tell", "worker_id": "YCRP1L1GZCXLBU6", "story_id": "42888", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , they brought out a cake for grandpa and ate so much cake !", "storylet_id": "214444"}], [{"original_text": "Grandmother meeting her 5th grandson at the birthday party. ", "album_id": "72157623514098462", "photo_flickr_id": "4378261793", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42889", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandmother meeting her 5th grandson at the birthday party .", "storylet_id": "214445"}], [{"original_text": "Mom and Kids together looking at husband play, and grandmother dancing with her grandson. ", "album_id": "72157623514098462", "photo_flickr_id": "4379015108", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42889", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom and kids together looking at husband play , and grandmother dancing with her grandson .", "storylet_id": "214446"}], [{"original_text": "Metting his cousin for the first time. ", "album_id": "72157623514098462", "photo_flickr_id": "4379020394", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42889", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "metting his cousin for the first time .", "storylet_id": "214447"}], [{"original_text": "Grandmother happy to be with her Granddaughter. ", "album_id": "72157623514098462", "photo_flickr_id": "4378268767", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42889", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandmother happy to be with her granddaughter .", "storylet_id": "214448"}], [{"original_text": "Singing happy birthday to grandfather. ", "album_id": "72157623514098462", "photo_flickr_id": "4379024544", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42889", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "singing happy birthday to grandfather .", "storylet_id": "214449"}], [{"original_text": "All the friends gathered that night to enjoy a night of party and fun.", "album_id": "41661", "photo_flickr_id": "1639009", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "42890", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all the friends gathered that night to enjoy a night of party and fun .", "storylet_id": "214450"}], [{"original_text": "Jokes were cracked between these two couples.", "album_id": "41661", "photo_flickr_id": "1638988", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "42890", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "jokes were cracked between these two couples .", "storylet_id": "214451"}], [{"original_text": "Uncle Joe decided that he wanted to do karaoke!", "album_id": "41661", "photo_flickr_id": "1638963", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "42890", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "uncle [male] decided that he wanted to do karaoke !", "storylet_id": "214452"}], [{"original_text": "This was the reaction of most of us: embarrassment.", "album_id": "41661", "photo_flickr_id": "1638911", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "42890", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was the reaction of most of us : embarrassment .", "storylet_id": "214453"}], [{"original_text": "Even Uncle Sam took a chance at singing too!", "album_id": "41661", "photo_flickr_id": "1638900", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "42890", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even uncle [male] took a chance at singing too !", "storylet_id": "214454"}], [{"original_text": "The karaoke bar was a mess when Betty stepped in.", "album_id": "41661", "photo_flickr_id": "1638975", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42891", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the karaoke bar was a mess when [female] stepped in .", "storylet_id": "214455"}], [{"original_text": "There was a fat man trying to sing a Mariah Carey song.", "album_id": "41661", "photo_flickr_id": "1638963", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42891", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a fat man trying to sing a [female] [male] song .", "storylet_id": "214456"}], [{"original_text": "Betty decided to go up on the table and fight for the microphone.", "album_id": "41661", "photo_flickr_id": "1638949", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42891", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] decided to go up on the table and fight for the microphone .", "storylet_id": "214457"}], [{"original_text": "It didn't work because some other fat man won it over.", "album_id": "41661", "photo_flickr_id": "1638900", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42891", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it did n't work because some other fat man won it over .", "storylet_id": "214458"}], [{"original_text": "Betty gave up after the man in blue decided that he was Eminem.", "album_id": "41661", "photo_flickr_id": "1638881", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "42891", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] gave up after the man in blue decided that he was eminem .", "storylet_id": "214459"}], [{"original_text": "Everyone was really excited for karaoke night.", "album_id": "41661", "photo_flickr_id": "1639009", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42892", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was really excited for karaoke night .", "storylet_id": "214460"}], [{"original_text": "We all discussed what we'd be singing.", "album_id": "41661", "photo_flickr_id": "1638988", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42892", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all discussed what we 'd be singing .", "storylet_id": "214461"}], [{"original_text": "Each person who took the stage was a hit.", "album_id": "41661", "photo_flickr_id": "1638963", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42892", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each person who took the stage was a hit .", "storylet_id": "214462"}], [{"original_text": "Some people were too shy to go up.", "album_id": "41661", "photo_flickr_id": "1638911", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42892", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people were too shy to go up .", "storylet_id": "214463"}], [{"original_text": "I did really well during my song.", "album_id": "41661", "photo_flickr_id": "1638900", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42892", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i did really well during my song .", "storylet_id": "214464"}], [{"original_text": "We had a nice night out last weekend.", "album_id": "41661", "photo_flickr_id": "1639009", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42893", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a nice night out last weekend .", "storylet_id": "214465"}], [{"original_text": "I really enjoyed the conversation.", "album_id": "41661", "photo_flickr_id": "1638988", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42893", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i really enjoyed the conversation .", "storylet_id": "214466"}], [{"original_text": "Then, some decided to do karaoke. It was hilarious to watch!", "album_id": "41661", "photo_flickr_id": "1638963", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42893", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then , some decided to do karaoke . it was hilarious to watch !", "storylet_id": "214467"}], [{"original_text": "Afterwards, one karaoke singer hid his face in shame.", "album_id": "41661", "photo_flickr_id": "1638911", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42893", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards , one karaoke singer hid his face in shame .", "storylet_id": "214468"}], [{"original_text": "In the end, it was a fantastic night.", "album_id": "41661", "photo_flickr_id": "1638900", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42893", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , it was a fantastic night .", "storylet_id": "214469"}], [{"original_text": "Off to the bar to party on a Saturday night.", "album_id": "41661", "photo_flickr_id": "1638975", "setting": "last-3-pick-old-and-tell", "worker_id": "BIIG7AS8IUNM81Y", "story_id": "42894", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "off to the bar to party on a saturday night .", "storylet_id": "214470"}], [{"original_text": "John is first up to do some karaoke. Job well done.", "album_id": "41661", "photo_flickr_id": "1638963", "setting": "last-3-pick-old-and-tell", "worker_id": "BIIG7AS8IUNM81Y", "story_id": "42894", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is first up to do some karaoke . job well done .", "storylet_id": "214471"}], [{"original_text": "Next, Steven decided to react the video of the song he was singing!", "album_id": "41661", "photo_flickr_id": "1638949", "setting": "last-3-pick-old-and-tell", "worker_id": "BIIG7AS8IUNM81Y", "story_id": "42894", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next , [male] decided to react the video of the song he was singing !", "storylet_id": "214472"}], [{"original_text": "Up next, was Bob. He puts alot of energy into his karaoke.", "album_id": "41661", "photo_flickr_id": "1638900", "setting": "last-3-pick-old-and-tell", "worker_id": "BIIG7AS8IUNM81Y", "story_id": "42894", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "up next , was [male] . he puts alot of energy into his karaoke .", "storylet_id": "214473"}], [{"original_text": "Last, but not least, was Billy. He was a natural.", "album_id": "41661", "photo_flickr_id": "1638881", "setting": "last-3-pick-old-and-tell", "worker_id": "BIIG7AS8IUNM81Y", "story_id": "42894", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last , but not least , was [male] . he was a natural .", "storylet_id": "214474"}], [{"original_text": "It's time for Wesley's alien-themed birthday party! We've been waiting for this day for a long time. ", "album_id": "72157623143289975", "photo_flickr_id": "4297325945", "setting": "first-2-pick-and-tell", "worker_id": "I7MF7YAH2PUCZLV", "story_id": "42895", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's time for [male] 's alien-themed birthday party ! we 've been waiting for this day for a long time .", "storylet_id": "214475"}], [{"original_text": "First, some pizza to fuel the kids for their playtime!", "album_id": "72157623143289975", "photo_flickr_id": "4297324101", "setting": "first-2-pick-and-tell", "worker_id": "I7MF7YAH2PUCZLV", "story_id": "42895", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first , some pizza to fuel the kids for their playtime !", "storylet_id": "214476"}], [{"original_text": "We set out different shape and color cutouts so each kid (and adult!) could make their own alien mask.", "album_id": "72157623143289975", "photo_flickr_id": "4297315783", "setting": "first-2-pick-and-tell", "worker_id": "I7MF7YAH2PUCZLV", "story_id": "42895", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we set out different shape and color cutouts so each kid ( and adult ! ) could make their own alien mask .", "storylet_id": "214477"}], [{"original_text": "What kid doesn't love a playground? After pizza, cake, and mask-making, the kids all took some time to run around on the playset and have fun together.", "album_id": "72157623143289975", "photo_flickr_id": "4298060104", "setting": "first-2-pick-and-tell", "worker_id": "I7MF7YAH2PUCZLV", "story_id": "42895", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what kid does n't love a playground ? after pizza , cake , and mask-making , the kids all took some time to run around on the playset and have fun together .", "storylet_id": "214478"}], [{"original_text": "Everyone gathered for a picture, wearing their new alien masks, before it was time to head home. What a great afternoon!", "album_id": "72157623143289975", "photo_flickr_id": "4297314221", "setting": "first-2-pick-and-tell", "worker_id": "I7MF7YAH2PUCZLV", "story_id": "42895", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone gathered for a picture , wearing their new alien masks , before it was time to head home . what a great afternoon !", "storylet_id": "214479"}], [{"original_text": "I was sitting around with nothing to do. I thought everyone had forgotten my birthday.", "album_id": "72157623143289975", "photo_flickr_id": "4297327317", "setting": "first-2-pick-and-tell", "worker_id": "AJ0B9PFBPIH15YN", "story_id": "42896", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was sitting around with nothing to do . i thought everyone had forgotten my birthday .", "storylet_id": "214480"}], [{"original_text": "Suddenly I looked up and realized that there was a bunch of balloons overhead.", "album_id": "72157623143289975", "photo_flickr_id": "4298072552", "setting": "first-2-pick-and-tell", "worker_id": "AJ0B9PFBPIH15YN", "story_id": "42896", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "suddenly i looked up and realized that there was a bunch of balloons overhead .", "storylet_id": "214481"}], [{"original_text": "When I turned to the table I saw a stack of pizzas with my mom's name on them.", "album_id": "72157623143289975", "photo_flickr_id": "4297324733", "setting": "first-2-pick-and-tell", "worker_id": "AJ0B9PFBPIH15YN", "story_id": "42896", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when i turned to the table i saw a stack of pizzas with my mom 's name on them .", "storylet_id": "214482"}], [{"original_text": "Right behind the pizzas was a cake with my name on it. It said happy birthday! ", "album_id": "72157623143289975", "photo_flickr_id": "4297325945", "setting": "first-2-pick-and-tell", "worker_id": "AJ0B9PFBPIH15YN", "story_id": "42896", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "right behind the pizzas was a cake with my name on it . it said happy birthday !", "storylet_id": "214483"}], [{"original_text": "After I opened my presents I realized this was the best birthday party ever. A real surprise!", "album_id": "72157623143289975", "photo_flickr_id": "4297320089", "setting": "first-2-pick-and-tell", "worker_id": "AJ0B9PFBPIH15YN", "story_id": "42896", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after i opened my presents i realized this was the best birthday party ever . a real surprise !", "storylet_id": "214484"}], [{"original_text": "The theme for Wes' birthday was aliens.", "album_id": "72157623143289975", "photo_flickr_id": "4297325945", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42897", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the theme for wes ' birthday was aliens .", "storylet_id": "214485"}], [{"original_text": "I did pizza to keep it simple.", "album_id": "72157623143289975", "photo_flickr_id": "4297324101", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42897", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i did pizza to keep it simple .", "storylet_id": "214486"}], [{"original_text": "Doing it outdoors minimized the mess too.", "album_id": "72157623143289975", "photo_flickr_id": "4297315783", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42897", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "doing it outdoors minimized the mess too .", "storylet_id": "214487"}], [{"original_text": "I chose the park.", "album_id": "72157623143289975", "photo_flickr_id": "4298060104", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42897", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i chose the park .", "storylet_id": "214488"}], [{"original_text": "They all seemed to love it.", "album_id": "72157623143289975", "photo_flickr_id": "4297314221", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "42897", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all seemed to love it .", "storylet_id": "214489"}], [{"original_text": "Our party at the park included a game of Frisbee.", "album_id": "72157623143289975", "photo_flickr_id": "4297327317", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42898", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our party at the park included a game of frisbee .", "storylet_id": "214490"}], [{"original_text": "Someone drew faces on the balloons to look like aliens.", "album_id": "72157623143289975", "photo_flickr_id": "4298072552", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42898", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "someone drew faces on the balloons to look like aliens .", "storylet_id": "214491"}], [{"original_text": "Pizza was the party meal because everyone agrees on it.", "album_id": "72157623143289975", "photo_flickr_id": "4297324733", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42898", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "pizza was the party meal because everyone agrees on it .", "storylet_id": "214492"}], [{"original_text": "A space ship was on the cake in keeping with the alien theme.", "album_id": "72157623143289975", "photo_flickr_id": "4297325945", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42898", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a space ship was on the cake in keeping with the alien theme .", "storylet_id": "214493"}], [{"original_text": "I guarded the blanket full of gifts while everyone played on last game of Frisbee.", "album_id": "72157623143289975", "photo_flickr_id": "4297320089", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42898", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i guarded the blanket full of gifts while everyone played on last game of frisbee .", "storylet_id": "214494"}], [{"original_text": "Celebrating his birthday at the park.", "album_id": "72157623143289975", "photo_flickr_id": "4297327317", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42899", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "celebrating his birthday at the park .", "storylet_id": "214495"}], [{"original_text": "His green alien gallons are floating away. ", "album_id": "72157623143289975", "photo_flickr_id": "4298072552", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42899", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his green alien gallons are floating away .", "storylet_id": "214496"}], [{"original_text": "Eating pizzas at the birthday party.", "album_id": "72157623143289975", "photo_flickr_id": "4297324733", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42899", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "eating pizzas at the birthday party .", "storylet_id": "214497"}], [{"original_text": "Green spaceship cake for Wesley.", "album_id": "72157623143289975", "photo_flickr_id": "4297325945", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42899", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "green spaceship cake for [male] .", "storylet_id": "214498"}], [{"original_text": "All the gifts are ready to be open. ", "album_id": "72157623143289975", "photo_flickr_id": "4297320089", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42899", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the gifts are ready to be open .", "storylet_id": "214499"}], [{"original_text": "Grandma Pat and baby Jenny wanted to sit some place comfortable before the birthday cake was brought out. ", "album_id": "72157623145280167", "photo_flickr_id": "4298176527", "setting": "first-2-pick-and-tell", "worker_id": "KJ4OOQS7M99VO07", "story_id": "42900", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandma [female] and baby [female] wanted to sit some place comfortable before the birthday cake was brought out .", "storylet_id": "214500"}], [{"original_text": "Being that it was Jenny's first birthday we didn't want to get cake everywhere so Pat helped hold her back at times. ", "album_id": "72157623145280167", "photo_flickr_id": "4298923312", "setting": "first-2-pick-and-tell", "worker_id": "KJ4OOQS7M99VO07", "story_id": "42900", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "being that it was [female] 's first birthday we did n't want to get cake everywhere so [female] helped hold her back at times .", "storylet_id": "214501"}], [{"original_text": "A neighborhood friend and her baby decided to drop by to help us celebrate the day. ", "album_id": "72157623145280167", "photo_flickr_id": "4298924488", "setting": "first-2-pick-and-tell", "worker_id": "KJ4OOQS7M99VO07", "story_id": "42900", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a neighborhood friend and her baby decided to drop by to help us celebrate the day .", "storylet_id": "214502"}], [{"original_text": "Once the kids had gotten their fill of cake they wanted to go play with some of the loudest toys in the house. ", "album_id": "72157623145280167", "photo_flickr_id": "4298927132", "setting": "first-2-pick-and-tell", "worker_id": "KJ4OOQS7M99VO07", "story_id": "42900", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once the kids had gotten their fill of cake they wanted to go play with some of the loudest toys in the house .", "storylet_id": "214503"}], [{"original_text": "Dad caught one of the kids playing around with something he shouldn't have been and decided to take it from him. ", "album_id": "72157623145280167", "photo_flickr_id": "4298182249", "setting": "first-2-pick-and-tell", "worker_id": "KJ4OOQS7M99VO07", "story_id": "42900", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dad caught one of the kids playing around with something he should n't have been and decided to take it from him .", "storylet_id": "214504"}], [{"original_text": "River is turning one.", "album_id": "72157623145280167", "photo_flickr_id": "4298921972", "setting": "first-2-pick-and-tell", "worker_id": "7KCF60MECPTO0IF", "story_id": "42901", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is turning one .", "storylet_id": "214505"}], [{"original_text": "Grandma helps River blow out the candle on his little snowman cake.", "album_id": "72157623145280167", "photo_flickr_id": "4298178261", "setting": "first-2-pick-and-tell", "worker_id": "7KCF60MECPTO0IF", "story_id": "42901", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma helps [male] blow out the candle on his little snowman cake .", "storylet_id": "214506"}], [{"original_text": "Cousin Ryan wants to help too.", "album_id": "72157623145280167", "photo_flickr_id": "4298924488", "setting": "first-2-pick-and-tell", "worker_id": "7KCF60MECPTO0IF", "story_id": "42901", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "cousin [male] wants to help too .", "storylet_id": "214507"}], [{"original_text": "River loves his new musical toy.", "album_id": "72157623145280167", "photo_flickr_id": "4298181565", "setting": "first-2-pick-and-tell", "worker_id": "7KCF60MECPTO0IF", "story_id": "42901", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] loves his new musical toy .", "storylet_id": "214508"}], [{"original_text": "Cousin Ryan shows him all the noise he can make with it.", "album_id": "72157623145280167", "photo_flickr_id": "4298927132", "setting": "first-2-pick-and-tell", "worker_id": "7KCF60MECPTO0IF", "story_id": "42901", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "cousin [male] shows him all the noise he can make with it .", "storylet_id": "214509"}], [{"original_text": "Today was Rivers first birthday.", "album_id": "72157623145280167", "photo_flickr_id": "4298921972", "setting": "last-3-pick-old-and-tell", "worker_id": "XQRXM0LYPNEDFFZ", "story_id": "42902", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was rivers first birthday .", "storylet_id": "214510"}], [{"original_text": "His grandmother helped him try his first piece of cake", "album_id": "72157623145280167", "photo_flickr_id": "4298178261", "setting": "last-3-pick-old-and-tell", "worker_id": "XQRXM0LYPNEDFFZ", "story_id": "42902", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his grandmother helped him try his first piece of cake", "storylet_id": "214511"}], [{"original_text": "Johnny wanted to eat some cake too.", "album_id": "72157623145280167", "photo_flickr_id": "4298924488", "setting": "last-3-pick-old-and-tell", "worker_id": "XQRXM0LYPNEDFFZ", "story_id": "42902", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] wanted to eat some cake too .", "storylet_id": "214512"}], [{"original_text": "River opened his first present with excitement.", "album_id": "72157623145280167", "photo_flickr_id": "4298181565", "setting": "last-3-pick-old-and-tell", "worker_id": "XQRXM0LYPNEDFFZ", "story_id": "42902", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] opened his first present with excitement .", "storylet_id": "214513"}], [{"original_text": "Both River and Johnny played with the new toys.", "album_id": "72157623145280167", "photo_flickr_id": "4298927132", "setting": "last-3-pick-old-and-tell", "worker_id": "XQRXM0LYPNEDFFZ", "story_id": "42902", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "both [male] and [male] played with the new toys .", "storylet_id": "214514"}], [{"original_text": "Our son was born in wintertime so his birthday cake had a snowman.", "album_id": "72157623145280167", "photo_flickr_id": "4298921972", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42903", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our son was born in wintertime so his birthday cake had a snowman .", "storylet_id": "214515"}], [{"original_text": "He wanted to play with his special little cake, not eat it.", "album_id": "72157623145280167", "photo_flickr_id": "4298178261", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42903", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he wanted to play with his special little cake , not eat it .", "storylet_id": "214516"}], [{"original_text": "Both boys wanted to stick their fingers in the frosting.", "album_id": "72157623145280167", "photo_flickr_id": "4298924488", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42903", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "both boys wanted to stick their fingers in the frosting .", "storylet_id": "214517"}], [{"original_text": "He seemed pleased with his gift. Someday he'll be able tell us.", "album_id": "72157623145280167", "photo_flickr_id": "4298181565", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42903", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he seemed pleased with his gift . someday he 'll be able tell us .", "storylet_id": "214518"}], [{"original_text": "Big brother showed birthday baby what to do. So cute!", "album_id": "72157623145280167", "photo_flickr_id": "4298927132", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42903", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "big brother showed birthday baby what to do . so cute !", "storylet_id": "214519"}], [{"original_text": "Grandmother celebrating her grandson first birthday. ", "album_id": "72157623145280167", "photo_flickr_id": "4298176527", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42904", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandmother celebrating her grandson first birthday .", "storylet_id": "214520"}], [{"original_text": "Playing with his own cake.", "album_id": "72157623145280167", "photo_flickr_id": "4298923312", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42904", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "playing with his own cake .", "storylet_id": "214521"}], [{"original_text": "Mother and grandmother playing with the kids. ", "album_id": "72157623145280167", "photo_flickr_id": "4298924488", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42904", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mother and grandmother playing with the kids .", "storylet_id": "214522"}], [{"original_text": "Playing with his new toy.", "album_id": "72157623145280167", "photo_flickr_id": "4298927132", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42904", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "playing with his new toy .", "storylet_id": "214523"}], [{"original_text": "Walking to his grandfather. ", "album_id": "72157623145280167", "photo_flickr_id": "4298182249", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42904", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "walking to his grandfather .", "storylet_id": "214524"}], [{"original_text": "This man is celebrating his birthday with his family", "album_id": "72157623266299104", "photo_flickr_id": "4297463294", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42905", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this man is celebrating his birthday with his family", "storylet_id": "214525"}], [{"original_text": "His daughter has brought her new boyfriend, who is quite anxious.", "album_id": "72157623266299104", "photo_flickr_id": "4296719679", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42905", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his daughter has brought her new boyfriend , who is quite anxious .", "storylet_id": "214526"}], [{"original_text": "Dad decides to stick with his girls.", "album_id": "72157623266299104", "photo_flickr_id": "4297465252", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42905", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad decides to stick with his girls .", "storylet_id": "214527"}], [{"original_text": "He does not even know where the new boyfriend is.", "album_id": "72157623266299104", "photo_flickr_id": "4297466000", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42905", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he does not even know where the new boyfriend is .", "storylet_id": "214528"}], [{"original_text": "At least he does not have tattoos like this guy.", "album_id": "72157623266299104", "photo_flickr_id": "4296724185", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42905", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at least he does not have tattoos like this guy .", "storylet_id": "214529"}], [{"original_text": "Getting the party stared with a few drinks.", "album_id": "72157623266299104", "photo_flickr_id": "4297462394", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42906", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting the party stared with a few drinks .", "storylet_id": "214530"}], [{"original_text": "Having fun a the party and smiling.", "album_id": "72157623266299104", "photo_flickr_id": "4297462636", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42906", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "having fun a the party and smiling .", "storylet_id": "214531"}], [{"original_text": "Must be a special party as the king has arrived.", "album_id": "72157623266299104", "photo_flickr_id": "4297463294", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42906", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "must be a special party as the king has arrived .", "storylet_id": "214532"}], [{"original_text": "Looks like the party is over as the king is leaving.", "album_id": "72157623266299104", "photo_flickr_id": "4297465506", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42906", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "looks like the party is over as the king is leaving .", "storylet_id": "214533"}], [{"original_text": "Not everyone is leaving, two die hard party girls stay behind.", "album_id": "72157623266299104", "photo_flickr_id": "4297465746", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "42906", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "not everyone is leaving , two die hard party girls stay behind .", "storylet_id": "214534"}], [{"original_text": "Rick and his wife were having a great time that night at the restaurant. Rick's wife phoned their daughter and son-in-law, and also one of Rick's friends, to come eat and drink with them. ", "album_id": "72157623266299104", "photo_flickr_id": "4297463294", "setting": "last-3-pick-old-and-tell", "worker_id": "G02TT0945Q3IVAV", "story_id": "42907", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and his wife were having a great time that night at the restaurant . [male] 's wife phoned their daughter and son-in-law , and also one of [male] 's friends , to come eat and drink with them .", "storylet_id": "214535"}], [{"original_text": "The family enjoyed the food and the drinks, but the family weas careful not to drink too much. Rick's friend, however, didn't care how much he drank. ", "album_id": "72157623266299104", "photo_flickr_id": "4296719679", "setting": "last-3-pick-old-and-tell", "worker_id": "G02TT0945Q3IVAV", "story_id": "42907", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family enjoyed the food and the drinks , but the family weas careful not to drink too much . [male] 's friend , however , did n't care how much he drank .", "storylet_id": "214536"}], [{"original_text": "Rick and his wife had their photo taken with the restaurant hostess, a lovely lady who had worked there for seven years. ", "album_id": "72157623266299104", "photo_flickr_id": "4297465252", "setting": "last-3-pick-old-and-tell", "worker_id": "G02TT0945Q3IVAV", "story_id": "42907", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and his wife had their photo taken with the restaurant hostess , a lovely lady who had worked there for seven years .", "storylet_id": "214537"}], [{"original_text": "Rick didn't drink too much that evening, but his friend drank so much that he didn't remember what happened later that night. ", "album_id": "72157623266299104", "photo_flickr_id": "4297466000", "setting": "last-3-pick-old-and-tell", "worker_id": "G02TT0945Q3IVAV", "story_id": "42907", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] did n't drink too much that evening , but his friend drank so much that he did n't remember what happened later that night .", "storylet_id": "214538"}], [{"original_text": "Rick's friend woke up the next morning with a terrible hangover, and never remembered how he got that tattoo on his back. ", "album_id": "72157623266299104", "photo_flickr_id": "4296724185", "setting": "last-3-pick-old-and-tell", "worker_id": "G02TT0945Q3IVAV", "story_id": "42907", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] 's friend woke up the next morning with a terrible hangover , and never remembered how he got that tattoo on his back .", "storylet_id": "214539"}], [{"original_text": "My sister promised to get off the phone after one last text. Time to party!", "album_id": "72157623266299104", "photo_flickr_id": "4297463294", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42908", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister promised to get off the phone after one last text . time to party !", "storylet_id": "214540"}], [{"original_text": "These two were drunk not long after they arrived. He switched to coffee.", "album_id": "72157623266299104", "photo_flickr_id": "4296719679", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42908", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these two were drunk not long after they arrived . he switched to coffee .", "storylet_id": "214541"}], [{"original_text": "The man of the hour sandwiched in between two beauties.", "album_id": "72157623266299104", "photo_flickr_id": "4297465252", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42908", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man of the hour sandwiched in between two beauties .", "storylet_id": "214542"}], [{"original_text": "He tired of posing for pictures and wanted to take some himself.", "album_id": "72157623266299104", "photo_flickr_id": "4297466000", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42908", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he tired of posing for pictures and wanted to take some himself .", "storylet_id": "214543"}], [{"original_text": "My cousin showed off his new tattoo. He can't afford color yet!", "album_id": "72157623266299104", "photo_flickr_id": "4296724185", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42908", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my cousin showed off his new tattoo . he ca n't afford color yet !", "storylet_id": "214544"}], [{"original_text": "It was cocktail night at the Howard Johnson.", "album_id": "72157623266299104", "photo_flickr_id": "4297462394", "setting": "last-3-pick-old-and-tell", "worker_id": "XQRXM0LYPNEDFFZ", "story_id": "42909", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was cocktail night at the [male] johnson .", "storylet_id": "214545"}], [{"original_text": "Jan got so drunk she broke her expensive necklace.", "album_id": "72157623266299104", "photo_flickr_id": "4297462636", "setting": "last-3-pick-old-and-tell", "worker_id": "XQRXM0LYPNEDFFZ", "story_id": "42909", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] got so drunk she broke her expensive necklace .", "storylet_id": "214546"}], [{"original_text": "Dave found a hat under the bar and started saying he was king of the fat chicks.", "album_id": "72157623266299104", "photo_flickr_id": "4297463294", "setting": "last-3-pick-old-and-tell", "worker_id": "XQRXM0LYPNEDFFZ", "story_id": "42909", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] found a hat under the bar and started saying he was king of the fat chicks .", "storylet_id": "214547"}], [{"original_text": "Someone wrote Dave's number and call for a good time on a sticker. They placed it on the back of Dave's shirt", "album_id": "72157623266299104", "photo_flickr_id": "4297465506", "setting": "last-3-pick-old-and-tell", "worker_id": "XQRXM0LYPNEDFFZ", "story_id": "42909", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someone wrote [male] 's number and call for a good time on a sticker . they placed it on the back of [male] 's shirt", "storylet_id": "214548"}], [{"original_text": "Kate decided she would go home with Dave for the night and told her friend Sarah she could find another ride home.", "album_id": "72157623266299104", "photo_flickr_id": "4297465746", "setting": "last-3-pick-old-and-tell", "worker_id": "XQRXM0LYPNEDFFZ", "story_id": "42909", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] decided she would go home with [male] for the night and told her friend [female] she could find another ride home .", "storylet_id": "214549"}], [{"original_text": "It was my little daughter's birthday.", "album_id": "72157604210838444", "photo_flickr_id": "2354787082", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42910", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was my little daughter 's birthday .", "storylet_id": "214550"}], [{"original_text": "She invited a bunch of her little friends.", "album_id": "72157604210838444", "photo_flickr_id": "2353956271", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42910", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she invited a bunch of her little friends .", "storylet_id": "214551"}], [{"original_text": "They played board games in the living room.", "album_id": "72157604210838444", "photo_flickr_id": "2353964479", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42910", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they played board games in the living room .", "storylet_id": "214552"}], [{"original_text": "I drove them to the movies before too late.", "album_id": "72157604210838444", "photo_flickr_id": "2353965125", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42910", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i drove them to the movies before too late .", "storylet_id": "214553"}], [{"original_text": "They were all having such an awesome day!", "album_id": "72157604210838444", "photo_flickr_id": "2354795376", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42910", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were all having such an awesome day !", "storylet_id": "214554"}], [{"original_text": "It's a big day For Jennifer because she turns ten. ", "album_id": "72157604210838444", "photo_flickr_id": "2354787082", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42911", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a big day for [female] because she turns ten .", "storylet_id": "214555"}], [{"original_text": "Some friends get there early and they sit around the table. ", "album_id": "72157604210838444", "photo_flickr_id": "2354789864", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42911", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some friends get there early and they sit around the table .", "storylet_id": "214556"}], [{"original_text": "More guests eventually arrive and bring gifts. ", "album_id": "72157604210838444", "photo_flickr_id": "2354785346", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42911", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "more guests eventually arrive and bring gifts .", "storylet_id": "214557"}], [{"original_text": "Finally Jennifer gets to open all her presents and have cake. ", "album_id": "72157604210838444", "photo_flickr_id": "2353956271", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42911", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally [female] gets to open all her presents and have cake .", "storylet_id": "214558"}], [{"original_text": "A lot of the girls had to leave early but Jennifer doesn't mind spending time with a just a few. ", "album_id": "72157604210838444", "photo_flickr_id": "2353958103", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42911", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a lot of the girls had to leave early but [female] does n't mind spending time with a just a few .", "storylet_id": "214559"}], [{"original_text": "She was so exited for her birthday.", "album_id": "72157604210838444", "photo_flickr_id": "2354787082", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42912", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she was so exited for her birthday .", "storylet_id": "214560"}], [{"original_text": "All of her friends from school came by to celebrate.", "album_id": "72157604210838444", "photo_flickr_id": "2354789864", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42912", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of her friends from school came by to celebrate .", "storylet_id": "214561"}], [{"original_text": "The party was a lot of fun.", "album_id": "72157604210838444", "photo_flickr_id": "2354785346", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42912", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the party was a lot of fun .", "storylet_id": "214562"}], [{"original_text": "The kids sat around and talked to each other.", "album_id": "72157604210838444", "photo_flickr_id": "2353956271", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42912", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids sat around and talked to each other .", "storylet_id": "214563"}], [{"original_text": "She had the perfect birthday and she was so happy.", "album_id": "72157604210838444", "photo_flickr_id": "2353958103", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42912", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she had the perfect birthday and she was so happy .", "storylet_id": "214564"}], [{"original_text": "The birthday girl doing her best hip hop dj impression for her guests. She wore her hat like that for the rest of her party.", "album_id": "72157604210838444", "photo_flickr_id": "2354787082", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42913", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the birthday girl doing her best hip hop dj impression for her guests . she wore her hat like that for the rest of her party .", "storylet_id": "214565"}], [{"original_text": "All her friends came and she loved opening all the presents they gave her.", "album_id": "72157604210838444", "photo_flickr_id": "2353956271", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42913", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all her friends came and she loved opening all the presents they gave her .", "storylet_id": "214566"}], [{"original_text": "After the food and presents, they hung around the house, waiting to be taken to the next event.", "album_id": "72157604210838444", "photo_flickr_id": "2353964479", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42913", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the food and presents , they hung around the house , waiting to be taken to the next event .", "storylet_id": "214567"}], [{"original_text": "The movie they wanted to see was playing soon, so they were driven to the theater and waited there for the movie to start.", "album_id": "72157604210838444", "photo_flickr_id": "2353965125", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42913", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the movie they wanted to see was playing soon , so they were driven to the theater and waited there for the movie to start .", "storylet_id": "214568"}], [{"original_text": "The movie was a 3D movie so they all looked like rockstars as they put on their 3D glasses to watch the movie.", "album_id": "72157604210838444", "photo_flickr_id": "2354795376", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42913", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the movie was a 3d movie so they all looked like rockstars as they put on their 3d glasses to watch the movie .", "storylet_id": "214569"}], [{"original_text": "Today is Jamie's birthday.", "album_id": "72157604210838444", "photo_flickr_id": "2354787082", "setting": "last-3-pick-old-and-tell", "worker_id": "N3NP8JZWWTYXVLR", "story_id": "42914", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is [female] 's birthday .", "storylet_id": "214570"}], [{"original_text": "All of her friends gathered around the table to eat.", "album_id": "72157604210838444", "photo_flickr_id": "2354789864", "setting": "last-3-pick-old-and-tell", "worker_id": "N3NP8JZWWTYXVLR", "story_id": "42914", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of her friends gathered around the table to eat .", "storylet_id": "214571"}], [{"original_text": "Next they played games and made jewelry.", "album_id": "72157604210838444", "photo_flickr_id": "2354785346", "setting": "last-3-pick-old-and-tell", "worker_id": "N3NP8JZWWTYXVLR", "story_id": "42914", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next they played games and made jewelry .", "storylet_id": "214572"}], [{"original_text": "After a while everyone was waiting for the birthday cake.", "album_id": "72157604210838444", "photo_flickr_id": "2353956271", "setting": "last-3-pick-old-and-tell", "worker_id": "N3NP8JZWWTYXVLR", "story_id": "42914", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a while everyone was waiting for the birthday cake .", "storylet_id": "214573"}], [{"original_text": "Now everyone is bored and wants some cake.", "album_id": "72157604210838444", "photo_flickr_id": "2353958103", "setting": "last-3-pick-old-and-tell", "worker_id": "N3NP8JZWWTYXVLR", "story_id": "42914", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now everyone is bored and wants some cake .", "storylet_id": "214574"}], [{"original_text": "Today was the super mega rap battle everyone had been waiting for.", "album_id": "72157604222780993", "photo_flickr_id": "2356500264", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42915", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the super mega rap battle everyone had been waiting for .", "storylet_id": "214575"}], [{"original_text": "The announcer said \"MC Paster Mike come over!", "album_id": "72157604222780993", "photo_flickr_id": "2355670247", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42915", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the announcer said `` mc paster [male] come over !", "storylet_id": "214576"}], [{"original_text": "MC Paster Mike had some amazing Rhymes it was so good.", "album_id": "72157604222780993", "photo_flickr_id": "2356503438", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42915", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mc paster [male] had some amazing rhymes it was so good .", "storylet_id": "214577"}], [{"original_text": "But then suddenly someone stepped onto the stage.", "album_id": "72157604222780993", "photo_flickr_id": "2355674907", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42915", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but then suddenly someone stepped onto the stage .", "storylet_id": "214578"}], [{"original_text": "And gave a super FIRE performance. Paster Mike walked away knowing he had been beaten.", "album_id": "72157604222780993", "photo_flickr_id": "2356502588", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42915", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and gave a super fire performance . paster [male] walked away knowing he had been beaten .", "storylet_id": "214579"}], [{"original_text": "There was a large crowd in the bar.", "album_id": "72157604222780993", "photo_flickr_id": "2355664751", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42916", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a large crowd in the bar .", "storylet_id": "214580"}], [{"original_text": "He was dressed in his finest for the night. ", "album_id": "72157604222780993", "photo_flickr_id": "2356499754", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42916", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was dressed in his finest for the night .", "storylet_id": "214581"}], [{"original_text": "He wanted pictures with all the guests. ", "album_id": "72157604222780993", "photo_flickr_id": "2356500264", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42916", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he wanted pictures with all the guests .", "storylet_id": "214582"}], [{"original_text": "It seemed just more and more people kept coming. ", "album_id": "72157604222780993", "photo_flickr_id": "2356500722", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42916", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it seemed just more and more people kept coming .", "storylet_id": "214583"}], [{"original_text": "The night was a success and everyone was having fun.", "album_id": "72157604222780993", "photo_flickr_id": "2355666839", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42916", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night was a success and everyone was having fun .", "storylet_id": "214584"}], [{"original_text": "We are wrapping up work on the documentary. Finish line in sight.", "album_id": "72157604222780993", "photo_flickr_id": "2356500264", "setting": "last-3-pick-old-and-tell", "worker_id": "BIIG7AS8IUNM81Y", "story_id": "42917", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are wrapping up work on the documentary . finish line in sight .", "storylet_id": "214585"}], [{"original_text": "George is going over the final song that needs to be worked on.", "album_id": "72157604222780993", "photo_flickr_id": "2355670247", "setting": "last-3-pick-old-and-tell", "worker_id": "BIIG7AS8IUNM81Y", "story_id": "42917", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is going over the final song that needs to be worked on .", "storylet_id": "214586"}], [{"original_text": "The guys are setting everything up. Time to finish this.", "album_id": "72157604222780993", "photo_flickr_id": "2356503438", "setting": "last-3-pick-old-and-tell", "worker_id": "BIIG7AS8IUNM81Y", "story_id": "42917", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guys are setting everything up . time to finish this .", "storylet_id": "214587"}], [{"original_text": "We got the group up to perform the song. Sounds great.", "album_id": "72157604222780993", "photo_flickr_id": "2355674907", "setting": "last-3-pick-old-and-tell", "worker_id": "BIIG7AS8IUNM81Y", "story_id": "42917", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got the group up to perform the song . sounds great .", "storylet_id": "214588"}], [{"original_text": "All done. Time to bring out the cakes and celebrate the wrap up.", "album_id": "72157604222780993", "photo_flickr_id": "2356502588", "setting": "last-3-pick-old-and-tell", "worker_id": "BIIG7AS8IUNM81Y", "story_id": "42917", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all done . time to bring out the cakes and celebrate the wrap up .", "storylet_id": "214589"}], [{"original_text": "For Joe's thirtieth birthday, his friends and family put on special show at a local venue.", "album_id": "72157604222780993", "photo_flickr_id": "2356500264", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42918", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for [male] 's thirtieth birthday , his friends and family put on special show at a local venue .", "storylet_id": "214590"}], [{"original_text": "First, his older brother told some embarrassing stories about Joe as a kid.", "album_id": "72157604222780993", "photo_flickr_id": "2355670247", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42918", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first , his older brother told some embarrassing stories about [male] as a kid .", "storylet_id": "214591"}], [{"original_text": "Then his dad announced that it was time to sing happy birthday.", "album_id": "72157604222780993", "photo_flickr_id": "2356503438", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42918", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then his dad announced that it was time to sing happy birthday .", "storylet_id": "214592"}], [{"original_text": "Everyone sang along.", "album_id": "72157604222780993", "photo_flickr_id": "2355674907", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42918", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone sang along .", "storylet_id": "214593"}], [{"original_text": "There were three birthday cakes, so everyone would have enough to eat!", "album_id": "72157604222780993", "photo_flickr_id": "2356502588", "setting": "last-3-pick-old-and-tell", "worker_id": "4L3NSHWK3H665HH", "story_id": "42918", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were three birthday cakes , so everyone would have enough to eat !", "storylet_id": "214594"}], [{"original_text": "Who's this guy in the red fedora? I heard it was his birthday.", "album_id": "72157604222780993", "photo_flickr_id": "2356500264", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42919", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "who 's this guy in the red fedora ? i heard it was his birthday .", "storylet_id": "214595"}], [{"original_text": "The whole room applauded when he was coaxed to take the stage.", "album_id": "72157604222780993", "photo_flickr_id": "2355670247", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42919", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the whole room applauded when he was coaxed to take the stage .", "storylet_id": "214596"}], [{"original_text": "He told a hilarious story and then passed the microphone.", "album_id": "72157604222780993", "photo_flickr_id": "2356503438", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42919", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he told a hilarious story and then passed the microphone .", "storylet_id": "214597"}], [{"original_text": "Little did he know their speech would be an ode to him on his special day.", "album_id": "72157604222780993", "photo_flickr_id": "2355674907", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42919", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "little did he know their speech would be an ode to him on his special day .", "storylet_id": "214598"}], [{"original_text": "A surprise was presented to our friend and coworker on his birthday.", "album_id": "72157604222780993", "photo_flickr_id": "2356502588", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42919", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a surprise was presented to our friend and coworker on his birthday .", "storylet_id": "214599"}], [{"original_text": "Today was the day everybody was getting together.", "album_id": "72157604277912088", "photo_flickr_id": "2367406207", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42920", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day everybody was getting together .", "storylet_id": "214600"}], [{"original_text": "Kacie was a little jealous of how Megan looked. But she still had fun.", "album_id": "72157604277912088", "photo_flickr_id": "2356708728", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42920", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] was a little jealous of how [female] looked . but she still had fun .", "storylet_id": "214601"}], [{"original_text": "Megan had a lot of attention from the boys after dying her hair Black.", "album_id": "72157604277912088", "photo_flickr_id": "2368216488", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42920", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] had a lot of attention from the boys after dying her hair black .", "storylet_id": "214602"}], [{"original_text": "Melissa was just happy to be with her friends again!", "album_id": "72157604277912088", "photo_flickr_id": "2368277300", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42920", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] was just happy to be with her friends again !", "storylet_id": "214603"}], [{"original_text": "The day went on well, and everybody had a good time!", "album_id": "72157604277912088", "photo_flickr_id": "2368200226", "setting": "first-2-pick-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "42920", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day went on well , and everybody had a good time !", "storylet_id": "214604"}], [{"original_text": "We met that night for a chat and drinks.", "album_id": "72157604277912088", "photo_flickr_id": "2367406207", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "42921", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we met that night for a chat and drinks .", "storylet_id": "214605"}], [{"original_text": "All my friends were there including my childhood friend.", "album_id": "72157604277912088", "photo_flickr_id": "2368230078", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "42921", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all my friends were there including my childhood friend .", "storylet_id": "214606"}], [{"original_text": "My other friends pretended to be tough.", "album_id": "72157604277912088", "photo_flickr_id": "2368205980", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "42921", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my other friends pretended to be tough .", "storylet_id": "214607"}], [{"original_text": "This lovely lady was also invited to drink with us.", "album_id": "72157604277912088", "photo_flickr_id": "2368277300", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "42921", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this lovely lady was also invited to drink with us .", "storylet_id": "214608"}], [{"original_text": "We had a lot of fun and laughs at the end of the night.", "album_id": "72157604277912088", "photo_flickr_id": "2368279632", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "42921", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a lot of fun and laughs at the end of the night .", "storylet_id": "214609"}], [{"original_text": "I have a good group of friends here. ", "album_id": "72157604277912088", "photo_flickr_id": "2367406207", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42922", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have a good group of friends here .", "storylet_id": "214610"}], [{"original_text": "Each one of them is so different. ", "album_id": "72157604277912088", "photo_flickr_id": "2356708728", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42922", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each one of them is so different .", "storylet_id": "214611"}], [{"original_text": "Different not only in the way they look, but their personalities as well. ", "album_id": "72157604277912088", "photo_flickr_id": "2368216488", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42922", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "different not only in the way they look , but their personalities as well .", "storylet_id": "214612"}], [{"original_text": "Our little melting pot makes for a really interesting group.", "album_id": "72157604277912088", "photo_flickr_id": "2368277300", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42922", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our little melting pot makes for a really interesting group .", "storylet_id": "214613"}], [{"original_text": "When we get together we are all smiles. ", "album_id": "72157604277912088", "photo_flickr_id": "2368200226", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42922", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we get together we are all smiles .", "storylet_id": "214614"}], [{"original_text": "We had a great time at the company party. Even Mike showed up.", "album_id": "72157604277912088", "photo_flickr_id": "2367406207", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42923", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great time at the company party . even [male] showed up .", "storylet_id": "214615"}], [{"original_text": "Ellen was excited to be there as well.", "album_id": "72157604277912088", "photo_flickr_id": "2356708728", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42923", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] was excited to be there as well .", "storylet_id": "214616"}], [{"original_text": "Sarah said there was going to be a special announcement. ", "album_id": "72157604277912088", "photo_flickr_id": "2368216488", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42923", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] said there was going to be a special announcement .", "storylet_id": "214617"}], [{"original_text": "It had something to do with Jill. ", "album_id": "72157604277912088", "photo_flickr_id": "2368277300", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42923", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it had something to do with [female] .", "storylet_id": "214618"}], [{"original_text": "Mike and Jill announced they are getting married. ", "album_id": "72157604277912088", "photo_flickr_id": "2368200226", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42923", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] and [female] announced they are getting married .", "storylet_id": "214619"}], [{"original_text": "He is waiting for a friend.", "album_id": "72157604277912088", "photo_flickr_id": "2367406207", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "42924", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he is waiting for a friend .", "storylet_id": "214620"}], [{"original_text": "She doesn't like being in a picture.", "album_id": "72157604277912088", "photo_flickr_id": "2356708728", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "42924", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she does n't like being in a picture .", "storylet_id": "214621"}], [{"original_text": "Our bartender was very nice.", "album_id": "72157604277912088", "photo_flickr_id": "2368216488", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "42924", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our bartender was very nice .", "storylet_id": "214622"}], [{"original_text": "A woman that we met has a great smile.", "album_id": "72157604277912088", "photo_flickr_id": "2368277300", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "42924", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a woman that we met has a great smile .", "storylet_id": "214623"}], [{"original_text": "Her husband also has a great smile.", "album_id": "72157604277912088", "photo_flickr_id": "2368200226", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "42924", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her husband also has a great smile .", "storylet_id": "214624"}], [{"original_text": "Geisha girls are common to find on stamps from Japan. ", "album_id": "371259", "photo_flickr_id": "15426921", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "42925", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "geisha girls are common to find on stamps from location .", "storylet_id": "214625"}], [{"original_text": "This one from 1966 features butterflies along with a Geisha. ", "album_id": "371259", "photo_flickr_id": "15433137", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "42925", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one from 1966 features butterflies along with a geisha .", "storylet_id": "214626"}], [{"original_text": "In 1967 Japan issued one that featured a lake behind the Geisha. ", "album_id": "371259", "photo_flickr_id": "15433145", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "42925", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in 1967 location issued one that featured a lake behind the geisha .", "storylet_id": "214627"}], [{"original_text": "Here is one from 1969 where a girl is getting her hair fixed by another Geisha. ", "album_id": "371259", "photo_flickr_id": "15433173", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "42925", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is one from 1969 where a girl is getting her hair fixed by another geisha .", "storylet_id": "214628"}], [{"original_text": "On this 1970 stand the girl is holding a Japanese drum called a \"tsuzumi\".", "album_id": "371259", "photo_flickr_id": "15433121", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "42925", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on this 1970 stand the girl is holding a japanese drum called a `` tsuzumi '' .", "storylet_id": "214629"}], [{"original_text": "My father had a stamp collection.", "album_id": "371259", "photo_flickr_id": "15426587", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42926", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my father had a stamp collection .", "storylet_id": "214630"}], [{"original_text": "H.is stamps were beautiful", "album_id": "371259", "photo_flickr_id": "15426921", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42926", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "h.is stamps were beautiful", "storylet_id": "214631"}], [{"original_text": "Some of the collection were many stamps connected to make one picture.", "album_id": "371259", "photo_flickr_id": "15427066", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42926", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the collection were many stamps connected to make one picture .", "storylet_id": "214632"}], [{"original_text": "Others, were very old.", "album_id": "371259", "photo_flickr_id": "15433137", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42926", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others , were very old .", "storylet_id": "214633"}], [{"original_text": "All of the stamps, together, made my father proud of his array. ", "album_id": "371259", "photo_flickr_id": "15433145", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42926", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of the stamps , together , made my father proud of his array .", "storylet_id": "214634"}], [{"original_text": "My stamp collection is one of the best.", "album_id": "371259", "photo_flickr_id": "15426921", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42927", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my stamp collection is one of the best .", "storylet_id": "214635"}], [{"original_text": "The Asian pictures are some of the most beautiful ones.", "album_id": "371259", "photo_flickr_id": "15433137", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42927", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the asian pictures are some of the most beautiful ones .", "storylet_id": "214636"}], [{"original_text": "You can't find a lot of these anymore.", "album_id": "371259", "photo_flickr_id": "15433145", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42927", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you ca n't find a lot of these anymore .", "storylet_id": "214637"}], [{"original_text": "There are a lot of amazing outfits worn on them as well.", "album_id": "371259", "photo_flickr_id": "15433173", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42927", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are a lot of amazing outfits worn on them as well .", "storylet_id": "214638"}], [{"original_text": "People often compliment my stamps.", "album_id": "371259", "photo_flickr_id": "15433121", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42927", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people often compliment my stamps .", "storylet_id": "214639"}], [{"original_text": "My stamp collection has grown over the years. ", "album_id": "371259", "photo_flickr_id": "15426587", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42928", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my stamp collection has grown over the years .", "storylet_id": "214640"}], [{"original_text": "This one here is one of my favorites. ", "album_id": "371259", "photo_flickr_id": "15426921", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42928", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one here is one of my favorites .", "storylet_id": "214641"}], [{"original_text": "This one is the oldest that I have. ", "album_id": "371259", "photo_flickr_id": "15427066", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42928", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one is the oldest that i have .", "storylet_id": "214642"}], [{"original_text": "I like this particular stamp because of the elegant and almost sad look of the woman's face. ", "album_id": "371259", "photo_flickr_id": "15433137", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42928", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i like this particular stamp because of the elegant and almost sad look of the woman 's face .", "storylet_id": "214643"}], [{"original_text": "This is the stamp that came out the following year. ", "album_id": "371259", "photo_flickr_id": "15433145", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42928", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the stamp that came out the following year .", "storylet_id": "214644"}], [{"original_text": "The woman was a collector of postage stamps.", "album_id": "371259", "photo_flickr_id": "15426587", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42929", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the woman was a collector of postage stamps .", "storylet_id": "214645"}], [{"original_text": "She had many different ones in her collection.", "album_id": "371259", "photo_flickr_id": "15426921", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42929", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had many different ones in her collection .", "storylet_id": "214646"}], [{"original_text": "She mostly looked for ones from foreign countries.", "album_id": "371259", "photo_flickr_id": "15427066", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42929", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she mostly looked for ones from foreign countries .", "storylet_id": "214647"}], [{"original_text": "She had some that were vintage.", "album_id": "371259", "photo_flickr_id": "15433137", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42929", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she had some that were vintage .", "storylet_id": "214648"}], [{"original_text": "She also bought new ones.", "album_id": "371259", "photo_flickr_id": "15433145", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42929", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she also bought new ones .", "storylet_id": "214649"}], [{"original_text": "Peter went down to the docks to see a ship.", "album_id": "72157623688452862", "photo_flickr_id": "4460919505", "setting": "first-2-pick-and-tell", "worker_id": "VHU8GRURGHOU2RG", "story_id": "42930", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] went down to the docks to see a ship .", "storylet_id": "214650"}], [{"original_text": "He saw a duck.", "album_id": "72157623688452862", "photo_flickr_id": "4461695788", "setting": "first-2-pick-and-tell", "worker_id": "VHU8GRURGHOU2RG", "story_id": "42930", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he saw a duck .", "storylet_id": "214651"}], [{"original_text": "He saw some strange places.", "album_id": "72157623688452862", "photo_flickr_id": "4461701210", "setting": "first-2-pick-and-tell", "worker_id": "VHU8GRURGHOU2RG", "story_id": "42930", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he saw some strange places .", "storylet_id": "214652"}], [{"original_text": "Finally he saw a ship.", "album_id": "72157623688452862", "photo_flickr_id": "4460920487", "setting": "first-2-pick-and-tell", "worker_id": "VHU8GRURGHOU2RG", "story_id": "42930", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally he saw a ship .", "storylet_id": "214653"}], [{"original_text": "It was the Constellation.", "album_id": "72157623688452862", "photo_flickr_id": "4460941837", "setting": "first-2-pick-and-tell", "worker_id": "VHU8GRURGHOU2RG", "story_id": "42930", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was the constellation .", "storylet_id": "214654"}], [{"original_text": "In a quiet little city there was a duck who waded in the water.", "album_id": "72157623688452862", "photo_flickr_id": "4461695788", "setting": "first-2-pick-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "42931", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in a quiet little city there was a duck who waded in the water .", "storylet_id": "214655"}], [{"original_text": "Our friends came to see what every thing was about in the city.", "album_id": "72157623688452862", "photo_flickr_id": "4460919505", "setting": "first-2-pick-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "42931", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our friends came to see what every thing was about in the city .", "storylet_id": "214656"}], [{"original_text": "He saw many streets that were like any other town.", "album_id": "72157623688452862", "photo_flickr_id": "4475727688", "setting": "first-2-pick-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "42931", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he saw many streets that were like any other town .", "storylet_id": "214657"}], [{"original_text": "Then he looked up and saw a awesome piece of art work that was bright and colorful.", "album_id": "72157623688452862", "photo_flickr_id": "4461700118", "setting": "first-2-pick-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "42931", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then he looked up and saw a awesome piece of art work that was bright and colorful .", "storylet_id": "214658"}], [{"original_text": " More paint could be found all over the city.", "album_id": "72157623688452862", "photo_flickr_id": "4460927733", "setting": "first-2-pick-and-tell", "worker_id": "S374HLQVX0AP1ZL", "story_id": "42931", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "more paint could be found all over the city .", "storylet_id": "214659"}], [{"original_text": "Man out taking a picture next to the water where a duck is swimming", "album_id": "72157623688452862", "photo_flickr_id": "4460919505", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42932", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "man out taking a picture next to the water where a duck is swimming", "storylet_id": "214660"}], [{"original_text": "The duck is walking in the water.", "album_id": "72157623688452862", "photo_flickr_id": "4461695788", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42932", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the duck is walking in the water .", "storylet_id": "214661"}], [{"original_text": "A sign of a place as a amazing art.", "album_id": "72157623688452862", "photo_flickr_id": "4461701210", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42932", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a sign of a place as a amazing art .", "storylet_id": "214662"}], [{"original_text": "Then a boat in a water before take off", "album_id": "72157623688452862", "photo_flickr_id": "4460920487", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42932", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then a boat in a water before take off", "storylet_id": "214663"}], [{"original_text": "A picture of the front of the boat is taken. ", "album_id": "72157623688452862", "photo_flickr_id": "4460941837", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "42932", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a picture of the front of the boat is taken .", "storylet_id": "214664"}], [{"original_text": "All of his pictures were protected. ", "album_id": "72157623688452862", "photo_flickr_id": "4461695788", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42933", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all of his pictures were protected .", "storylet_id": "214665"}], [{"original_text": "Lately people had been bitching about his obvious watermark. ", "album_id": "72157623688452862", "photo_flickr_id": "4460919505", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42933", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lately people had been bitching about his obvious watermark .", "storylet_id": "214666"}], [{"original_text": "Regardless of if they had paid or he just took a random picture of some street, he put his mark on it. ", "album_id": "72157623688452862", "photo_flickr_id": "4475727688", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42933", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "regardless of if they had paid or he just took a random picture of some street , he put his mark on it .", "storylet_id": "214667"}], [{"original_text": "He took a random picture of some graffiti and that artist had signed his work. ", "album_id": "72157623688452862", "photo_flickr_id": "4461700118", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42933", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he took a random picture of some graffiti and that artist had signed his work .", "storylet_id": "214668"}], [{"original_text": "The good ones all did, so why shouldn't he?", "album_id": "72157623688452862", "photo_flickr_id": "4460927733", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42933", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the good ones all did , so why should n't he ?", "storylet_id": "214669"}], [{"original_text": "We went on a walk to the pier.", "album_id": "72157623688452862", "photo_flickr_id": "4460919505", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42934", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on a walk to the pier .", "storylet_id": "214670"}], [{"original_text": "A duck followed us for awhile.", "album_id": "72157623688452862", "photo_flickr_id": "4461695788", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42934", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a duck followed us for awhile .", "storylet_id": "214671"}], [{"original_text": "This was a cool mural on the wall.", "album_id": "72157623688452862", "photo_flickr_id": "4461701210", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42934", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was a cool mural on the wall .", "storylet_id": "214672"}], [{"original_text": "There were some old ships at the pier.", "album_id": "72157623688452862", "photo_flickr_id": "4460920487", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42934", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were some old ships at the pier .", "storylet_id": "214673"}], [{"original_text": "We boarded one of them and learned a lot.", "album_id": "72157623688452862", "photo_flickr_id": "4460941837", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42934", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we boarded one of them and learned a lot .", "storylet_id": "214674"}], [{"original_text": "Jillian loves hockey and came to see her favorite team. ", "album_id": "72157604254258819", "photo_flickr_id": "2362260271", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42935", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] loves hockey and came to see her favorite team .", "storylet_id": "214675"}], [{"original_text": "This is her boyfriend who she met while he was playing on the hockey team. ", "album_id": "72157604254258819", "photo_flickr_id": "2363087488", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42935", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is her boyfriend who she met while he was playing on the hockey team .", "storylet_id": "214676"}], [{"original_text": "It was an intense game for both sides. ", "album_id": "72157604254258819", "photo_flickr_id": "2362257433", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42935", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was an intense game for both sides .", "storylet_id": "214677"}], [{"original_text": "Nearing the end the score was tied. ", "album_id": "72157604254258819", "photo_flickr_id": "2363089798", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42935", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "nearing the end the score was tied .", "storylet_id": "214678"}], [{"original_text": "This was the last play of the game and Jillian's boyfriend scored a goal for the win. ", "album_id": "72157604254258819", "photo_flickr_id": "2363090560", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42935", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the last play of the game and [female] 's boyfriend scored a goal for the win .", "storylet_id": "214679"}], [{"original_text": "John was a goalie for a hockey team, and was a pretty good one. He had a reputation for not letting any goals this entire season, and he had one more game left. He was determined to keep his legacy going.", "album_id": "72157604254258819", "photo_flickr_id": "2362255755", "setting": "first-2-pick-and-tell", "worker_id": "PW4DGE5KSKTRLY8", "story_id": "42936", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was a goalie for a hockey team , and was a pretty good one . he had a reputation for not letting any goals this entire season , and he had one more game left . he was determined to keep his legacy going .", "storylet_id": "214680"}], [{"original_text": "It being the last game of the season, John's girlfriend, Nina, stopped by to support her boyfriend from the audience.", "album_id": "72157604254258819", "photo_flickr_id": "2362260271", "setting": "first-2-pick-and-tell", "worker_id": "PW4DGE5KSKTRLY8", "story_id": "42936", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it being the last game of the season , [male] 's girlfriend , [female] , stopped by to support her boyfriend from the audience .", "storylet_id": "214681"}], [{"original_text": "John had been doing well the entire game, that is, until Adam, the star of the other team, started getting on the ice. Adam was known to be a power scorer for his team, and John was determined to not let Adam score.", "album_id": "72157604254258819", "photo_flickr_id": "2362256605", "setting": "first-2-pick-and-tell", "worker_id": "PW4DGE5KSKTRLY8", "story_id": "42936", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] had been doing well the entire game , that is , until [male] , the star of the other team , started getting on the ice . [male] was known to be a power scorer for his team , and [male] was determined to not let [male] score .", "storylet_id": "214682"}], [{"original_text": "The game became fierce, with both teams working hard to score on the other while defending goals.", "album_id": "72157604254258819", "photo_flickr_id": "2362257433", "setting": "first-2-pick-and-tell", "worker_id": "PW4DGE5KSKTRLY8", "story_id": "42936", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the game became fierce , with both teams working hard to score on the other while defending goals .", "storylet_id": "214683"}], [{"original_text": "Adam's teammates were cheering him on quite a bit, but unfortunately, Adam's team lost, leaving John's legacy undefeated.", "album_id": "72157604254258819", "photo_flickr_id": "2362259617", "setting": "first-2-pick-and-tell", "worker_id": "PW4DGE5KSKTRLY8", "story_id": "42936", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] 's teammates were cheering him on quite a bit , but unfortunately , [male] 's team lost , leaving [male] 's legacy undefeated .", "storylet_id": "214684"}], [{"original_text": "I was really excited to see my first hockey game.", "album_id": "72157604254258819", "photo_flickr_id": "2362260271", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42937", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was really excited to see my first hockey game .", "storylet_id": "214685"}], [{"original_text": "The players made their way to the ice.", "album_id": "72157604254258819", "photo_flickr_id": "2363087488", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42937", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the players made their way to the ice .", "storylet_id": "214686"}], [{"original_text": "The game started and it was so amazing to see.", "album_id": "72157604254258819", "photo_flickr_id": "2362257433", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42937", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the game started and it was so amazing to see .", "storylet_id": "214687"}], [{"original_text": "The players went by so quickly.", "album_id": "72157604254258819", "photo_flickr_id": "2363089798", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42937", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the players went by so quickly .", "storylet_id": "214688"}], [{"original_text": "It was exhilarating. ", "album_id": "72157604254258819", "photo_flickr_id": "2363090560", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "42937", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was exhilarating .", "storylet_id": "214689"}], [{"original_text": "I went to my boyfriend's first hockey game of the season.", "album_id": "72157604254258819", "photo_flickr_id": "2362260271", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42938", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to my boyfriend 's first hockey game of the season .", "storylet_id": "214690"}], [{"original_text": "There he is getting onto the ice. I was so excited.", "album_id": "72157604254258819", "photo_flickr_id": "2363087488", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42938", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there he is getting onto the ice . i was so excited .", "storylet_id": "214691"}], [{"original_text": "The teams got ready for the puck to drop.", "album_id": "72157604254258819", "photo_flickr_id": "2362257433", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42938", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the teams got ready for the puck to drop .", "storylet_id": "214692"}], [{"original_text": "It seemed to take the referee forever. Let's get this game going!", "album_id": "72157604254258819", "photo_flickr_id": "2363089798", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42938", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it seemed to take the referee forever . let 's get this game going !", "storylet_id": "214693"}], [{"original_text": "And off they went, the start of his first game of the year.", "album_id": "72157604254258819", "photo_flickr_id": "2363090560", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42938", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and off they went , the start of his first game of the year .", "storylet_id": "214694"}], [{"original_text": "My brother plays minor league hockey.", "album_id": "72157604254258819", "photo_flickr_id": "2362255755", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42939", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brother plays minor league hockey .", "storylet_id": "214695"}], [{"original_text": "I was all smiles when i went to see him play.", "album_id": "72157604254258819", "photo_flickr_id": "2362260271", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42939", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was all smiles when i went to see him play .", "storylet_id": "214696"}], [{"original_text": "The other team is the best in the league. ", "album_id": "72157604254258819", "photo_flickr_id": "2362256605", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42939", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the other team is the best in the league .", "storylet_id": "214697"}], [{"original_text": "My brothers team is second place.", "album_id": "72157604254258819", "photo_flickr_id": "2362257433", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42939", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my brothers team is second place .", "storylet_id": "214698"}], [{"original_text": "maybe some of these players will make it to the nhl. ", "album_id": "72157604254258819", "photo_flickr_id": "2362259617", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42939", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "maybe some of these players will make it to the nhl .", "storylet_id": "214699"}], [{"original_text": "They all gathered together before the event filled day.", "album_id": "137338", "photo_flickr_id": "5453249", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42940", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they all gathered together before the event filled day .", "storylet_id": "214700"}], [{"original_text": "The birthday cake was a welcomed surprise to him.", "album_id": "137338", "photo_flickr_id": "5453251", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42940", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the birthday cake was a welcomed surprise to him .", "storylet_id": "214701"}], [{"original_text": "They enjoyed some coffee before going to the beach.", "album_id": "137338", "photo_flickr_id": "5453261", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42940", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they enjoyed some coffee before going to the beach .", "storylet_id": "214702"}], [{"original_text": "The day was beautiful and the sand was good for building castles.", "album_id": "137338", "photo_flickr_id": "5453281", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42940", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the day was beautiful and the sand was good for building castles .", "storylet_id": "214703"}], [{"original_text": "Last but not least was the bungie ride. It was a blast. ", "album_id": "137338", "photo_flickr_id": "5453277", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "42940", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last but not least was the bungie ride . it was a blast .", "storylet_id": "214704"}], [{"original_text": "I don't get out in the sun much.", "album_id": "137338", "photo_flickr_id": "5453253", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42941", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i do n't get out in the sun much .", "storylet_id": "214705"}], [{"original_text": "When I do, I wear stupid hats.", "album_id": "137338", "photo_flickr_id": "5453257", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42941", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when i do , i wear stupid hats .", "storylet_id": "214706"}], [{"original_text": "Then I look at flags.", "album_id": "137338", "photo_flickr_id": "5453258", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42941", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then i look at flags .", "storylet_id": "214707"}], [{"original_text": "Sometimes I eat cake.", "album_id": "137338", "photo_flickr_id": "5453265", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42941", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes i eat cake .", "storylet_id": "214708"}], [{"original_text": "With a guy wearing a backward backpack.", "album_id": "137338", "photo_flickr_id": "5453268", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "42941", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with a guy wearing a backward backpack .", "storylet_id": "214709"}], [{"original_text": "The birthday celebration began with a group photo at the restaurant.", "album_id": "137338", "photo_flickr_id": "5453249", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42942", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the birthday celebration began with a group photo at the restaurant .", "storylet_id": "214710"}], [{"original_text": "They brought out a cake for the birthday boy.", "album_id": "137338", "photo_flickr_id": "5453251", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42942", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they brought out a cake for the birthday boy .", "storylet_id": "214711"}], [{"original_text": "The next morning, it was time to head to the beach, but not before some coffee.", "album_id": "137338", "photo_flickr_id": "5453261", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42942", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next morning , it was time to head to the beach , but not before some coffee .", "storylet_id": "214712"}], [{"original_text": "At the beach, everyone had a great time building sand castles.", "album_id": "137338", "photo_flickr_id": "5453281", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42942", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the beach , everyone had a great time building sand castles .", "storylet_id": "214713"}], [{"original_text": "That night, they did some night swinging. It was a new attraction at the beach, where you get swung through the air as a group by a long bungee cord.", "album_id": "137338", "photo_flickr_id": "5453277", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "42942", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that night , they did some night swinging . it was a new attraction at the beach , where you get swung through the air as a group by a long bungee cord .", "storylet_id": "214714"}], [{"original_text": "This group of friends went on vacation together. ", "album_id": "137338", "photo_flickr_id": "5453249", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42943", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this group of friends went on vacation together .", "storylet_id": "214715"}], [{"original_text": "While there they celebrated one of their birthdays. ", "album_id": "137338", "photo_flickr_id": "5453251", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42943", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while there they celebrated one of their birthdays .", "storylet_id": "214716"}], [{"original_text": "The next morning we took him out for a milkshake.", "album_id": "137338", "photo_flickr_id": "5453261", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42943", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next morning we took him out for a milkshake .", "storylet_id": "214717"}], [{"original_text": "Then we went to the beach. ", "album_id": "137338", "photo_flickr_id": "5453281", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42943", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we went to the beach .", "storylet_id": "214718"}], [{"original_text": "Last but not least, we went on this really fun ride where we all strapped in and swung around.", "album_id": "137338", "photo_flickr_id": "5453277", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "42943", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last but not least , we went on this really fun ride where we all strapped in and swung around .", "storylet_id": "214719"}], [{"original_text": "I have a great group of friends to share good times.", "album_id": "137338", "photo_flickr_id": "5453249", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42944", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have a great group of friends to share good times .", "storylet_id": "214720"}], [{"original_text": "We get together to celebrate birthdays.", "album_id": "137338", "photo_flickr_id": "5453251", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42944", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we get together to celebrate birthdays .", "storylet_id": "214721"}], [{"original_text": "Sometimes we go sightseeing together, the guys always like to eat!", "album_id": "137338", "photo_flickr_id": "5453261", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42944", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sometimes we go sightseeing together , the guys always like to eat !", "storylet_id": "214722"}], [{"original_text": "We often spend a day at the beach together playing in the sand.", "album_id": "137338", "photo_flickr_id": "5453281", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42944", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we often spend a day at the beach together playing in the sand .", "storylet_id": "214723"}], [{"original_text": "Sometimes we do really crazy things, like ride zip lines.", "album_id": "137338", "photo_flickr_id": "5453277", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42944", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sometimes we do really crazy things , like ride zip lines .", "storylet_id": "214724"}], [{"original_text": "Seeing these vintage ads are neat. I wish I could travel back in time.", "album_id": "188185", "photo_flickr_id": "7526911", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42945", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "seeing these vintage ads are neat . i wish i could travel back in time .", "storylet_id": "214725"}], [{"original_text": "Looking at these old pictures in this museum is great. This is FairyRing Mushroom. I do not remember this.", "album_id": "188185", "photo_flickr_id": "7527770", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42945", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "looking at these old pictures in this museum is great . this is organization organization . i do not remember this .", "storylet_id": "214726"}], [{"original_text": "Vintage clothing.", "album_id": "188185", "photo_flickr_id": "7526591", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42945", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "vintage clothing .", "storylet_id": "214727"}], [{"original_text": "Vintage piano players, what a nice picture.", "album_id": "188185", "photo_flickr_id": "7526726", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42945", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "vintage piano players , what a nice picture .", "storylet_id": "214728"}], [{"original_text": "Bob's, I remember.", "album_id": "188185", "photo_flickr_id": "7528056", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "42945", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] 's , i remember .", "storylet_id": "214729"}], [{"original_text": "My parents bought war bonds and used them to buy records so we could listen to piano music.", "album_id": "188185", "photo_flickr_id": "7528079", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42946", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my parents bought war bonds and used them to buy records so we could listen to piano music .", "storylet_id": "214730"}], [{"original_text": "I think that is why I was able to play well enough to preform at Carnegie Hall.", "album_id": "188185", "photo_flickr_id": "7526726", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42946", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i think that is why i was able to play well enough to preform at location location .", "storylet_id": "214731"}], [{"original_text": "Some people thought I played divinely!", "album_id": "188185", "photo_flickr_id": "7526746", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42946", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people thought i played divinely !", "storylet_id": "214732"}], [{"original_text": "I was over the rainbow with that compliment from the critics.", "album_id": "188185", "photo_flickr_id": "7527926", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42946", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was over the rainbow with that compliment from the critics .", "storylet_id": "214733"}], [{"original_text": "It was like a fairy tale come true for me!", "album_id": "188185", "photo_flickr_id": "7527645", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42946", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was like a fairy tale come true for me !", "storylet_id": "214734"}], [{"original_text": "I found some old comics in my parent's attic this past weekend. I found some pretty neat stuff.", "album_id": "188185", "photo_flickr_id": "7526911", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "42947", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i found some old comics in my parent 's attic this past weekend . i found some pretty neat stuff .", "storylet_id": "214735"}], [{"original_text": "This was a treasure hunt attached in one of the back's. ", "album_id": "188185", "photo_flickr_id": "7527770", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "42947", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was a treasure hunt attached in one of the back 's .", "storylet_id": "214736"}], [{"original_text": "This is what was in fashion in their day. Times definitely have changed. ", "album_id": "188185", "photo_flickr_id": "7526591", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "42947", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is what was in fashion in their day . times definitely have changed .", "storylet_id": "214737"}], [{"original_text": "This is some picture of women playing piano. Not really sure what it means.", "album_id": "188185", "photo_flickr_id": "7526726", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "42947", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is some picture of women playing piano . not really sure what it means .", "storylet_id": "214738"}], [{"original_text": "An ad for what looks like McDonalds. Mmmm tasty. ", "album_id": "188185", "photo_flickr_id": "7528056", "setting": "last-3-pick-old-and-tell", "worker_id": "8HH8JQE3GEADE51", "story_id": "42947", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "an ad for what looks like organization . mmmm tasty .", "storylet_id": "214739"}], [{"original_text": "The first comic Mary Sue ever drew, came out that day.", "album_id": "188185", "photo_flickr_id": "7526911", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "42948", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the first comic [female] [female] ever drew , came out that day .", "storylet_id": "214740"}], [{"original_text": "After that she got opportunity to draw so much more.", "album_id": "188185", "photo_flickr_id": "7527770", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "42948", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after that she got opportunity to draw so much more .", "storylet_id": "214741"}], [{"original_text": "Sh even released some catalogues", "album_id": "188185", "photo_flickr_id": "7526591", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "42948", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sh even released some catalogues", "storylet_id": "214742"}], [{"original_text": "She dabbled slightly in photography.", "album_id": "188185", "photo_flickr_id": "7526726", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "42948", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she dabbled slightly in photography .", "storylet_id": "214743"}], [{"original_text": "At the end of the day, she was proud of the work she'd done.", "album_id": "188185", "photo_flickr_id": "7528056", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "42948", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , she was proud of the work she 'd done .", "storylet_id": "214744"}], [{"original_text": "I had the strangest dream, the houses looked just like those in the back ground. ", "album_id": "188185", "photo_flickr_id": "7526911", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42949", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had the strangest dream , the houses looked just like those in the back ground .", "storylet_id": "214745"}], [{"original_text": "and then the faeries showed up.", "album_id": "188185", "photo_flickr_id": "7527770", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42949", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and then the faeries showed up .", "storylet_id": "214746"}], [{"original_text": "They were color coded and wearing old fashioned dresses ", "album_id": "188185", "photo_flickr_id": "7526591", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42949", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were color coded and wearing old fashioned dresses", "storylet_id": "214747"}], [{"original_text": "They wanted me to tune their pianos.", "album_id": "188185", "photo_flickr_id": "7526726", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42949", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they wanted me to tune their pianos .", "storylet_id": "214748"}], [{"original_text": "I think I ate the wrong thing before bed. ", "album_id": "188185", "photo_flickr_id": "7528056", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "42949", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think i ate the wrong thing before bed .", "storylet_id": "214749"}], [{"original_text": "It's Richards 75th birthday.", "album_id": "503982", "photo_flickr_id": "21691552", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42950", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's richards 75th birthday .", "storylet_id": "214750"}], [{"original_text": "He wore a crown the whole day. ", "album_id": "503982", "photo_flickr_id": "21693064", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42950", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he wore a crown the whole day .", "storylet_id": "214751"}], [{"original_text": "His daughters loved to tease him, and they wore \"groucho marx glasses\"", "album_id": "503982", "photo_flickr_id": "21692207", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42950", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his daughters loved to tease him , and they wore `` groucho marx glasses ''", "storylet_id": "214752"}], [{"original_text": "The rest of the party goers thought that was hilarious so they all wore the glasses with noses too. ", "album_id": "503982", "photo_flickr_id": "21692206", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42950", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rest of the party goers thought that was hilarious so they all wore the glasses with noses too .", "storylet_id": "214753"}], [{"original_text": "Richard laughed and laughed because he wore glasses, had a big nose and mustache. ", "album_id": "503982", "photo_flickr_id": "21692205", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "42950", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] laughed and laughed because he wore glasses , had a big nose and mustache .", "storylet_id": "214754"}], [{"original_text": "They all gathered for the party that day.", "album_id": "503982", "photo_flickr_id": "21692207", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42951", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they all gathered for the party that day .", "storylet_id": "214755"}], [{"original_text": "Everyone laughed as they put on the glasses.", "album_id": "503982", "photo_flickr_id": "21692206", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42951", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone laughed as they put on the glasses .", "storylet_id": "214756"}], [{"original_text": "He was very surprised and honored they all came together for him.", "album_id": "503982", "photo_flickr_id": "21692205", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42951", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was very surprised and honored they all came together for him .", "storylet_id": "214757"}], [{"original_text": "She hung a little joke on the wall for him. ", "album_id": "503982", "photo_flickr_id": "21693061", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42951", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she hung a little joke on the wall for him .", "storylet_id": "214758"}], [{"original_text": "The baby looked a little confused with everyone being so goofy.", "album_id": "503982", "photo_flickr_id": "21693062", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42951", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the baby looked a little confused with everyone being so goofy .", "storylet_id": "214759"}], [{"original_text": "My family and I got together to celebrate my granddads 75th birthday.", "album_id": "503982", "photo_flickr_id": "21691552", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42952", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family and i got together to celebrate my granddads 75th birthday .", "storylet_id": "214760"}], [{"original_text": "We made him king for the day at his party.", "album_id": "503982", "photo_flickr_id": "21693064", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42952", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made him king for the day at his party .", "storylet_id": "214761"}], [{"original_text": "All of us wore mustaches and glasses because granddad has a mustache and wears glasses.", "album_id": "503982", "photo_flickr_id": "21692207", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42952", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of us wore mustaches and glasses because granddad has a mustache and wears glasses .", "storylet_id": "214762"}], [{"original_text": "The whole family was there to help him celebrate his birthday.", "album_id": "503982", "photo_flickr_id": "21692206", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42952", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole family was there to help him celebrate his birthday .", "storylet_id": "214763"}], [{"original_text": "Granddad had a really good time.", "album_id": "503982", "photo_flickr_id": "21692205", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "42952", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "granddad had a really good time .", "storylet_id": "214764"}], [{"original_text": "We celebrated Richard's birthday.", "album_id": "503982", "photo_flickr_id": "21691552", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42953", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we celebrated [male] 's birthday .", "storylet_id": "214765"}], [{"original_text": "We made him a crown.", "album_id": "503982", "photo_flickr_id": "21693064", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42953", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made him a crown .", "storylet_id": "214766"}], [{"original_text": "We put on silly faces for pictures.", "album_id": "503982", "photo_flickr_id": "21692207", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42953", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we put on silly faces for pictures .", "storylet_id": "214767"}], [{"original_text": "Richard seemed to enjoy his birthday.", "album_id": "503982", "photo_flickr_id": "21692206", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42953", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] seemed to enjoy his birthday .", "storylet_id": "214768"}], [{"original_text": "Richard has a great sense of humor.", "album_id": "503982", "photo_flickr_id": "21692205", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42953", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] has a great sense of humor .", "storylet_id": "214769"}], [{"original_text": "I got Richard a birthday card and went to the party.", "album_id": "503982", "photo_flickr_id": "21691552", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42954", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got [male] a birthday card and went to the party .", "storylet_id": "214770"}], [{"original_text": "He was already in full attire. knowing well it was his day.", "album_id": "503982", "photo_flickr_id": "21693064", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42954", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was already in full attire . knowing well it was his day .", "storylet_id": "214771"}], [{"original_text": "The girls put on old men joke glasses as a gag.", "album_id": "503982", "photo_flickr_id": "21692207", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42954", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girls put on old men joke glasses as a gag .", "storylet_id": "214772"}], [{"original_text": "We played party games and hung out during the afternoon.", "album_id": "503982", "photo_flickr_id": "21692206", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42954", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we played party games and hung out during the afternoon .", "storylet_id": "214773"}], [{"original_text": "Everyone was laughing and having a great time.", "album_id": "503982", "photo_flickr_id": "21692205", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42954", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was laughing and having a great time .", "storylet_id": "214774"}], [{"original_text": "Jerry is sitting down in a chair about to open his birthday gift.", "album_id": "72157623298392548", "photo_flickr_id": "4309920073", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42955", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is sitting down in a chair about to open his birthday gift .", "storylet_id": "214775"}], [{"original_text": "He starts to open up the card first and starts to read it.", "album_id": "72157623298392548", "photo_flickr_id": "4309920479", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42955", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he starts to open up the card first and starts to read it .", "storylet_id": "214776"}], [{"original_text": "He opens up his present at its a red cup that he likes very much.", "album_id": "72157623298392548", "photo_flickr_id": "4309921239", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42955", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he opens up his present at its a red cup that he likes very much .", "storylet_id": "214777"}], [{"original_text": "Jerry is waiting for the other presents to be given to him.", "album_id": "72157623298392548", "photo_flickr_id": "4309921411", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42955", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is waiting for the other presents to be given to him .", "storylet_id": "214778"}], [{"original_text": "He opens up the next present and stares at it.", "album_id": "72157623298392548", "photo_flickr_id": "4310658240", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "42955", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he opens up the next present and stares at it .", "storylet_id": "214779"}], [{"original_text": "It as obvious that the man was disappointed in the small stack of gifts people had brought for his birthday.", "album_id": "72157623298392548", "photo_flickr_id": "4310656772", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "42956", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it as obvious that the man was disappointed in the small stack of gifts people had brought for his birthday .", "storylet_id": "214780"}], [{"original_text": "He tried to be polite as he read the card one friend has gave him.", "album_id": "72157623298392548", "photo_flickr_id": "4309920479", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "42956", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he tried to be polite as he read the card one friend has gave him .", "storylet_id": "214781"}], [{"original_text": "The first gift he opened he didn't even know what it was.", "album_id": "72157623298392548", "photo_flickr_id": "4309921239", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "42956", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first gift he opened he did n't even know what it was .", "storylet_id": "214782"}], [{"original_text": "The next gift he didn't even take out of the box.", "album_id": "72157623298392548", "photo_flickr_id": "4310658240", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "42956", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next gift he did n't even take out of the box .", "storylet_id": "214783"}], [{"original_text": "The last he thing he received were some flowers which he didn't understand at all.", "album_id": "72157623298392548", "photo_flickr_id": "4310658486", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "42956", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last he thing he received were some flowers which he did n't understand at all .", "storylet_id": "214784"}], [{"original_text": "He was glad to be at the family dinner.", "album_id": "72157623298392548", "photo_flickr_id": "4309920073", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "42957", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he was glad to be at the family dinner .", "storylet_id": "214785"}], [{"original_text": "He opened all of his cards.", "album_id": "72157623298392548", "photo_flickr_id": "4309920479", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "42957", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he opened all of his cards .", "storylet_id": "214786"}], [{"original_text": "And opened a few gifts.", "album_id": "72157623298392548", "photo_flickr_id": "4309921239", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "42957", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and opened a few gifts .", "storylet_id": "214787"}], [{"original_text": "It was a good night.", "album_id": "72157623298392548", "photo_flickr_id": "4309921411", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "42957", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a good night .", "storylet_id": "214788"}], [{"original_text": "Finally he opened his last gift and it was what he really wanted.", "album_id": "72157623298392548", "photo_flickr_id": "4310658240", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "42957", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally he opened his last gift and it was what he really wanted .", "storylet_id": "214789"}], [{"original_text": "My brother sat awkwardly at my parents, ready for his gifts.", "album_id": "72157623298392548", "photo_flickr_id": "4309920073", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42958", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brother sat awkwardly at my parents , ready for his gifts .", "storylet_id": "214790"}], [{"original_text": "My mother made him read every card out loud! ", "album_id": "72157623298392548", "photo_flickr_id": "4309920479", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42958", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my mother made him read every card out loud !", "storylet_id": "214791"}], [{"original_text": "He pretended to be thrilled with this travel mug but I know he has enough of those.", "album_id": "72157623298392548", "photo_flickr_id": "4309921239", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42958", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he pretended to be thrilled with this travel mug but i know he has enough of those .", "storylet_id": "214792"}], [{"original_text": "He was wondering if the family party was over so he could go drink with friends.", "album_id": "72157623298392548", "photo_flickr_id": "4309921411", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42958", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was wondering if the family party was over so he could go drink with friends .", "storylet_id": "214793"}], [{"original_text": "One last gift, brother, and you'll soon be free of this stiff party.", "album_id": "72157623298392548", "photo_flickr_id": "4310658240", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "42958", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one last gift , brother , and you 'll soon be free of this stiff party .", "storylet_id": "214794"}], [{"original_text": "Getting ready to open his birthday gifts.", "album_id": "72157623298392548", "photo_flickr_id": "4309920073", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42959", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting ready to open his birthday gifts .", "storylet_id": "214795"}], [{"original_text": "First he read a thoughtful card. ", "album_id": "72157623298392548", "photo_flickr_id": "4309920479", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42959", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first he read a thoughtful card .", "storylet_id": "214796"}], [{"original_text": "Then he received a Christmas red cup.", "album_id": "72157623298392548", "photo_flickr_id": "4309921239", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42959", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then he received a christmas red cup .", "storylet_id": "214797"}], [{"original_text": "He also received a jean jacket.", "album_id": "72157623298392548", "photo_flickr_id": "4309921411", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42959", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he also received a jean jacket .", "storylet_id": "214798"}], [{"original_text": "About to open his third gift.", "album_id": "72157623298392548", "photo_flickr_id": "4310658240", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42959", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "about to open his third gift .", "storylet_id": "214799"}], [{"original_text": "Some friends gather to celebrate their friend getting a new house.", "album_id": "72157623322705020", "photo_flickr_id": "4320442720", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42960", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some friends gather to celebrate their friend getting a new house .", "storylet_id": "214800"}], [{"original_text": "They drink beer and pose for pictures.", "album_id": "72157623322705020", "photo_flickr_id": "4319711749", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42960", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they drink beer and pose for pictures .", "storylet_id": "214801"}], [{"original_text": "Dad is proud of his son.", "album_id": "72157623322705020", "photo_flickr_id": "4320446840", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42960", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad is proud of his son .", "storylet_id": "214802"}], [{"original_text": "One friend notices something that needs to be fixed.", "album_id": "72157623322705020", "photo_flickr_id": "4319718263", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42960", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one friend notices something that needs to be fixed .", "storylet_id": "214803"}], [{"original_text": "They are all thankful for such great friends.", "album_id": "72157623322705020", "photo_flickr_id": "4309904833", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "42960", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are all thankful for such great friends .", "storylet_id": "214804"}], [{"original_text": "The couple was happy to host the Gay Men Club at their house.", "album_id": "72157623322705020", "photo_flickr_id": "4320444278", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "42961", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple was happy to host the organization organization organization at their house .", "storylet_id": "214805"}], [{"original_text": "There was always a good turnout.", "album_id": "72157623322705020", "photo_flickr_id": "4319711749", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "42961", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was always a good turnout .", "storylet_id": "214806"}], [{"original_text": "Many of the men had been coming since the beginning.", "album_id": "72157623322705020", "photo_flickr_id": "4320446840", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "42961", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many of the men had been coming since the beginning .", "storylet_id": "214807"}], [{"original_text": "Older members went out of the way to make newcomers feel welcome.", "album_id": "72157623322705020", "photo_flickr_id": "4319717613", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "42961", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "older members went out of the way to make newcomers feel welcome .", "storylet_id": "214808"}], [{"original_text": "The men knew they were going to have a good night with like minded people.", "album_id": "72157623322705020", "photo_flickr_id": "4309900143", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "42961", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the men knew they were going to have a good night with like minded people .", "storylet_id": "214809"}], [{"original_text": "We had to get together for this happy shot.", "album_id": "72157623322705020", "photo_flickr_id": "4320442720", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42962", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had to get together for this happy shot .", "storylet_id": "214810"}], [{"original_text": "These guys are the greatest friends ever. ", "album_id": "72157623322705020", "photo_flickr_id": "4319711749", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42962", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these guys are the greatest friends ever .", "storylet_id": "214811"}], [{"original_text": "This is a moment we'll cherish forever.", "album_id": "72157623322705020", "photo_flickr_id": "4320446840", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42962", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a moment we 'll cherish forever .", "storylet_id": "214812"}], [{"original_text": "The bird was so beautiful, I just had to touch.", "album_id": "72157623322705020", "photo_flickr_id": "4319718263", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42962", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bird was so beautiful , i just had to touch .", "storylet_id": "214813"}], [{"original_text": "Moments like this last a lifetime. ", "album_id": "72157623322705020", "photo_flickr_id": "4309904833", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "42962", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "moments like this last a lifetime .", "storylet_id": "214814"}], [{"original_text": "A lot of old and new friends came over that day. ", "album_id": "72157623322705020", "photo_flickr_id": "4320444278", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42963", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a lot of old and new friends came over that day .", "storylet_id": "214815"}], [{"original_text": "Everyone was happy to see ach other. ", "album_id": "72157623322705020", "photo_flickr_id": "4319711749", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42963", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was happy to see ach other .", "storylet_id": "214816"}], [{"original_text": "They all had smiles on their faces and stories to tell. ", "album_id": "72157623322705020", "photo_flickr_id": "4320446840", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42963", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all had smiles on their faces and stories to tell .", "storylet_id": "214817"}], [{"original_text": "Some have not seen each other in a very long time.", "album_id": "72157623322705020", "photo_flickr_id": "4319717613", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42963", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some have not seen each other in a very long time .", "storylet_id": "214818"}], [{"original_text": "We all enjoyed each other's company.", "album_id": "72157623322705020", "photo_flickr_id": "4309900143", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "42963", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all enjoyed each other 's company .", "storylet_id": "214819"}], [{"original_text": "Having fun with his coworker. ", "album_id": "72157623322705020", "photo_flickr_id": "4320444278", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42964", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "having fun with his coworker .", "storylet_id": "214820"}], [{"original_text": "Its a a all boy night tonight.", "album_id": "72157623322705020", "photo_flickr_id": "4319711749", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42964", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "its a a all boy night tonight .", "storylet_id": "214821"}], [{"original_text": "His neighbor and his older brother joined him for a picture.", "album_id": "72157623322705020", "photo_flickr_id": "4320446840", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42964", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his neighbor and his older brother joined him for a picture .", "storylet_id": "214822"}], [{"original_text": "They were ready to start the night with drinks.", "album_id": "72157623322705020", "photo_flickr_id": "4319717613", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42964", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were ready to start the night with drinks .", "storylet_id": "214823"}], [{"original_text": "And they were finally full after eating the ribs.", "album_id": "72157623322705020", "photo_flickr_id": "4309900143", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42964", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they were finally full after eating the ribs .", "storylet_id": "214824"}], [{"original_text": "I invited all of my friends to the restaurant last night.", "album_id": "72157623527635470", "photo_flickr_id": "4395159227", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42965", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i invited all of my friends to the restaurant last night .", "storylet_id": "214825"}], [{"original_text": "We ate a lot of food there.", "album_id": "72157623527635470", "photo_flickr_id": "4395159935", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42965", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we ate a lot of food there .", "storylet_id": "214826"}], [{"original_text": "We enjoyed all of it.", "album_id": "72157623527635470", "photo_flickr_id": "4395163031", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42965", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we enjoyed all of it .", "storylet_id": "214827"}], [{"original_text": "We were very full afterward.", "album_id": "72157623527635470", "photo_flickr_id": "4395164179", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42965", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were very full afterward .", "storylet_id": "214828"}], [{"original_text": "But we ordered some dessert anyway.", "album_id": "72157623527635470", "photo_flickr_id": "4395932428", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42965", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but we ordered some dessert anyway .", "storylet_id": "214829"}], [{"original_text": "We went out for a birthday dinner.", "album_id": "72157623527635470", "photo_flickr_id": "4395159227", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42966", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went out for a birthday dinner .", "storylet_id": "214830"}], [{"original_text": "The food was all unique and different to us.", "album_id": "72157623527635470", "photo_flickr_id": "4395159935", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42966", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the food was all unique and different to us .", "storylet_id": "214831"}], [{"original_text": "We were surprised at how good the food tasted.", "album_id": "72157623527635470", "photo_flickr_id": "4395160891", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42966", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were surprised at how good the food tasted .", "storylet_id": "214832"}], [{"original_text": "Some of us however, weren't so impressed.", "album_id": "72157623527635470", "photo_flickr_id": "4395164179", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42966", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of us however , were n't so impressed .", "storylet_id": "214833"}], [{"original_text": "However, everyone still had a good night!", "album_id": "72157623527635470", "photo_flickr_id": "4395166277", "setting": "first-2-pick-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "42966", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , everyone still had a good night !", "storylet_id": "214834"}], [{"original_text": "Spending time with friends is really great.", "album_id": "72157623527635470", "photo_flickr_id": "4395159227", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "42967", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "spending time with friends is really great .", "storylet_id": "214835"}], [{"original_text": "I enjoy having a nice meal with friends, so I eat out with them often.", "album_id": "72157623527635470", "photo_flickr_id": "4395159935", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "42967", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i enjoy having a nice meal with friends , so i eat out with them often .", "storylet_id": "214836"}], [{"original_text": "Last night, I was in the mood for some sushi rolls, so we went to a Japanese restaurant.", "album_id": "72157623527635470", "photo_flickr_id": "4395160891", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "42967", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "last night , i was in the mood for some sushi rolls , so we went to a japanese restaurant .", "storylet_id": "214837"}], [{"original_text": "My husband and his brother looked at me in shock, because they know I don't even like seafood.", "album_id": "72157623527635470", "photo_flickr_id": "4395164179", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "42967", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my husband and his brother looked at me in shock , because they know i do n't even like seafood .", "storylet_id": "214838"}], [{"original_text": "Their expressions was all the motivation I needed to go through with it, even though I honestly was having second doubts at that point!", "album_id": "72157623527635470", "photo_flickr_id": "4395166277", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "42967", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their expressions was all the motivation i needed to go through with it , even though i honestly was having second doubts at that point !", "storylet_id": "214839"}], [{"original_text": "We met with some old friends at the dinner.", "album_id": "72157623527635470", "photo_flickr_id": "4395159227", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42968", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we met with some old friends at the dinner .", "storylet_id": "214840"}], [{"original_text": "We had much to eat and drink together.", "album_id": "72157623527635470", "photo_flickr_id": "4395159935", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42968", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had much to eat and drink together .", "storylet_id": "214841"}], [{"original_text": "The main course was really tasty.", "album_id": "72157623527635470", "photo_flickr_id": "4395160891", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42968", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the main course was really tasty .", "storylet_id": "214842"}], [{"original_text": "Herbert and his friend had a great time together.", "album_id": "72157623527635470", "photo_flickr_id": "4395164179", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42968", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and his friend had a great time together .", "storylet_id": "214843"}], [{"original_text": "They talked about their lives in high school together.", "album_id": "72157623527635470", "photo_flickr_id": "4395166277", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "42968", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they talked about their lives in high school together .", "storylet_id": "214844"}], [{"original_text": "We went out with friends to a fancy dinner.", "album_id": "72157623527635470", "photo_flickr_id": "4395159227", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42969", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went out with friends to a fancy dinner .", "storylet_id": "214845"}], [{"original_text": "There were exotic foods that were pretty to look at but I was scared to try.", "album_id": "72157623527635470", "photo_flickr_id": "4395159935", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42969", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were exotic foods that were pretty to look at but i was scared to try .", "storylet_id": "214846"}], [{"original_text": "I really liked this curry.", "album_id": "72157623527635470", "photo_flickr_id": "4395163031", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42969", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i really liked this curry .", "storylet_id": "214847"}], [{"original_text": "Jeff looked bored waiting for his food.", "album_id": "72157623527635470", "photo_flickr_id": "4395164179", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42969", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] looked bored waiting for his food .", "storylet_id": "214848"}], [{"original_text": "So did Jen. But when the food came it was worth it.", "album_id": "72157623527635470", "photo_flickr_id": "4395932428", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "42969", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so did jen . but when the food came it was worth it .", "storylet_id": "214849"}], [{"original_text": "Claudia looks really cool with the lights shining behind her. ", "album_id": "72157623406612971", "photo_flickr_id": "4397628148", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "42970", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] looks really cool with the lights shining behind her .", "storylet_id": "214850"}], [{"original_text": "This view of the water was unforgettable.", "album_id": "72157623406612971", "photo_flickr_id": "4397628766", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "42970", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this view of the water was unforgettable .", "storylet_id": "214851"}], [{"original_text": "I think Jane and Mark had a little too much to drink.", "album_id": "72157623406612971", "photo_flickr_id": "4397629390", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "42970", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i think [female] and [male] had a little too much to drink .", "storylet_id": "214852"}], [{"original_text": "We call them the three musketeers; they are never far from each other. ", "album_id": "72157623406612971", "photo_flickr_id": "4396864777", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "42970", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we call them the three musketeers ; they are never far from each other .", "storylet_id": "214853"}], [{"original_text": "Everyone started dancing to a song by Lady Gaga.", "album_id": "72157623406612971", "photo_flickr_id": "4396864575", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "42970", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone started dancing to a song by lady gaga .", "storylet_id": "214854"}], [{"original_text": "It was Saturday night. ", "album_id": "72157623406612971", "photo_flickr_id": "4397628766", "setting": "first-2-pick-and-tell", "worker_id": "XNMY73T3JUZ6ZME", "story_id": "42971", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was saturday night .", "storylet_id": "214855"}], [{"original_text": "Most of the people who came to the party were coworkers, and they weren't sure they would have fun.", "album_id": "72157623406612971", "photo_flickr_id": "4396862941", "setting": "first-2-pick-and-tell", "worker_id": "XNMY73T3JUZ6ZME", "story_id": "42971", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "most of the people who came to the party were coworkers , and they were n't sure they would have fun .", "storylet_id": "214856"}], [{"original_text": "After people started mingling, the atmosphere picked up.", "album_id": "72157623406612971", "photo_flickr_id": "4397629390", "setting": "first-2-pick-and-tell", "worker_id": "XNMY73T3JUZ6ZME", "story_id": "42971", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after people started mingling , the atmosphere picked up .", "storylet_id": "214857"}], [{"original_text": "Some people reconnected with old friends.", "album_id": "72157623406612971", "photo_flickr_id": "4396864777", "setting": "first-2-pick-and-tell", "worker_id": "XNMY73T3JUZ6ZME", "story_id": "42971", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people reconnected with old friends .", "storylet_id": "214858"}], [{"original_text": "After awhile, everyone started dancing. The party was a success.", "album_id": "72157623406612971", "photo_flickr_id": "4396864575", "setting": "first-2-pick-and-tell", "worker_id": "XNMY73T3JUZ6ZME", "story_id": "42971", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after awhile , everyone started dancing . the party was a success .", "storylet_id": "214859"}], [{"original_text": "Going out and being out on the town is fun to do sometimes.", "album_id": "72157623406612971", "photo_flickr_id": "4397628148", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42972", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going out and being out on the town is fun to do sometimes .", "storylet_id": "214860"}], [{"original_text": "The water is so calm and serene at night.", "album_id": "72157623406612971", "photo_flickr_id": "4397628766", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42972", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water is so calm and serene at night .", "storylet_id": "214861"}], [{"original_text": "Everyone is out with the intention of fun with them.", "album_id": "72157623406612971", "photo_flickr_id": "4397629390", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42972", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone is out with the intention of fun with them .", "storylet_id": "214862"}], [{"original_text": "Good times are happening and we will have fun tonight.", "album_id": "72157623406612971", "photo_flickr_id": "4396864777", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42972", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "good times are happening and we will have fun tonight .", "storylet_id": "214863"}], [{"original_text": "A little dancing would not hurt as well.", "album_id": "72157623406612971", "photo_flickr_id": "4396864575", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "42972", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a little dancing would not hurt as well .", "storylet_id": "214864"}], [{"original_text": "It was a beautiful night out on the water and everyone was at the party.", "album_id": "72157623406612971", "photo_flickr_id": "4397628766", "setting": "last-3-pick-old-and-tell", "worker_id": "PEJ2HR9D63QVJIX", "story_id": "42973", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful night out on the water and everyone was at the party .", "storylet_id": "214865"}], [{"original_text": "People arrived in style, excited for the night.", "album_id": "72157623406612971", "photo_flickr_id": "4396862941", "setting": "last-3-pick-old-and-tell", "worker_id": "PEJ2HR9D63QVJIX", "story_id": "42973", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people arrived in style , excited for the night .", "storylet_id": "214866"}], [{"original_text": "Drinks were served and everyone partook. ", "album_id": "72157623406612971", "photo_flickr_id": "4397629390", "setting": "last-3-pick-old-and-tell", "worker_id": "PEJ2HR9D63QVJIX", "story_id": "42973", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "drinks were served and everyone partook .", "storylet_id": "214867"}], [{"original_text": "Friends who had not seen each other in a long time were reunited.", "album_id": "72157623406612971", "photo_flickr_id": "4396864777", "setting": "last-3-pick-old-and-tell", "worker_id": "PEJ2HR9D63QVJIX", "story_id": "42973", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "friends who had not seen each other in a long time were reunited .", "storylet_id": "214868"}], [{"original_text": "The night ended with silly dances.", "album_id": "72157623406612971", "photo_flickr_id": "4396864575", "setting": "last-3-pick-old-and-tell", "worker_id": "PEJ2HR9D63QVJIX", "story_id": "42973", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night ended with silly dances .", "storylet_id": "214869"}], [{"original_text": "We got to the party and had no idea what was going on.", "album_id": "72157623406612971", "photo_flickr_id": "4397628148", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42974", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got to the party and had no idea what was going on .", "storylet_id": "214870"}], [{"original_text": "We where out on a boat with some people.", "album_id": "72157623406612971", "photo_flickr_id": "4397628766", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42974", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we where out on a boat with some people .", "storylet_id": "214871"}], [{"original_text": "We drank and partied.", "album_id": "72157623406612971", "photo_flickr_id": "4397629390", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42974", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we drank and partied .", "storylet_id": "214872"}], [{"original_text": "It got wild real fast.", "album_id": "72157623406612971", "photo_flickr_id": "4396864777", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42974", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it got wild real fast .", "storylet_id": "214873"}], [{"original_text": "We kept going all night never stopping.", "album_id": "72157623406612971", "photo_flickr_id": "4396864575", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "42974", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we kept going all night never stopping .", "storylet_id": "214874"}], [{"original_text": "We started with the fried calimari, it was great!", "album_id": "72157623598513373", "photo_flickr_id": "4470877959", "setting": "first-2-pick-and-tell", "worker_id": "KD20M6WOHKKVBQZ", "story_id": "42975", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started with the fried calimari , it was great !", "storylet_id": "214875"}], [{"original_text": "The crab looked amazing. ", "album_id": "72157623598513373", "photo_flickr_id": "4471652154", "setting": "first-2-pick-and-tell", "worker_id": "KD20M6WOHKKVBQZ", "story_id": "42975", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crab looked amazing .", "storylet_id": "214876"}], [{"original_text": "She had fun with the crab. ", "album_id": "72157623598513373", "photo_flickr_id": "4470872933", "setting": "first-2-pick-and-tell", "worker_id": "KD20M6WOHKKVBQZ", "story_id": "42975", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she had fun with the crab .", "storylet_id": "214877"}], [{"original_text": "The cook was very entertaining. ", "album_id": "72157623598513373", "photo_flickr_id": "4470875279", "setting": "first-2-pick-and-tell", "worker_id": "KD20M6WOHKKVBQZ", "story_id": "42975", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cook was very entertaining .", "storylet_id": "214878"}], [{"original_text": "We had plenty of food to eat. ", "album_id": "72157623598513373", "photo_flickr_id": "4470876663", "setting": "first-2-pick-and-tell", "worker_id": "KD20M6WOHKKVBQZ", "story_id": "42975", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had plenty of food to eat .", "storylet_id": "214879"}], [{"original_text": "Dinner started with soup and drinks.", "album_id": "72157623598513373", "photo_flickr_id": "4471651446", "setting": "first-2-pick-and-tell", "worker_id": "EJD1JLSQF4QWZA5", "story_id": "42976", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dinner started with soup and drinks .", "storylet_id": "214880"}], [{"original_text": "We got to go into the kitchen and see the sea monster we would be eating for dinner.", "album_id": "72157623598513373", "photo_flickr_id": "4470872933", "setting": "first-2-pick-and-tell", "worker_id": "EJD1JLSQF4QWZA5", "story_id": "42976", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to go into the kitchen and see the sea monster we would be eating for dinner .", "storylet_id": "214881"}], [{"original_text": "I have never seen a crab so big in my life.", "album_id": "72157623598513373", "photo_flickr_id": "4470873399", "setting": "first-2-pick-and-tell", "worker_id": "EJD1JLSQF4QWZA5", "story_id": "42976", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i have never seen a crab so big in my life .", "storylet_id": "214882"}], [{"original_text": "We couldn't wait to dig into all this amazing food.", "album_id": "72157623598513373", "photo_flickr_id": "4470876663", "setting": "first-2-pick-and-tell", "worker_id": "EJD1JLSQF4QWZA5", "story_id": "42976", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we could n't wait to dig into all this amazing food .", "storylet_id": "214883"}], [{"original_text": "Fruit was a perfect end to the meal. I was so full.", "album_id": "72157623598513373", "photo_flickr_id": "4470878753", "setting": "first-2-pick-and-tell", "worker_id": "EJD1JLSQF4QWZA5", "story_id": "42976", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fruit was a perfect end to the meal . i was so full .", "storylet_id": "214884"}], [{"original_text": "The seafood was battered lightly and delicately.", "album_id": "72157623598513373", "photo_flickr_id": "4470877959", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42977", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the seafood was battered lightly and delicately .", "storylet_id": "214885"}], [{"original_text": "The crab was friend to a golden brown.", "album_id": "72157623598513373", "photo_flickr_id": "4471652154", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42977", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crab was friend to a golden brown .", "storylet_id": "214886"}], [{"original_text": "We played games with the fried crab and had fun.", "album_id": "72157623598513373", "photo_flickr_id": "4470872933", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42977", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we played games with the fried crab and had fun .", "storylet_id": "214887"}], [{"original_text": "The chef was doing an excellent job that day.", "album_id": "72157623598513373", "photo_flickr_id": "4470875279", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42977", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the chef was doing an excellent job that day .", "storylet_id": "214888"}], [{"original_text": "We all shared the meal together at the table.", "album_id": "72157623598513373", "photo_flickr_id": "4470876663", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "42977", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all shared the meal together at the table .", "storylet_id": "214889"}], [{"original_text": "This is a Chinese cuisine in a small town. ", "album_id": "72157623598513373", "photo_flickr_id": "4471651446", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42978", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a chinese cuisine in a small town .", "storylet_id": "214890"}], [{"original_text": "They specialize in giant rock crabs. ", "album_id": "72157623598513373", "photo_flickr_id": "4470872933", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42978", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they specialize in giant rock crabs .", "storylet_id": "214891"}], [{"original_text": "One or two legs can be a meal but they are so good 5 is usually the menu offer. ", "album_id": "72157623598513373", "photo_flickr_id": "4470873399", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42978", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one or two legs can be a meal but they are so good 5 is usually the menu offer .", "storylet_id": "214892"}], [{"original_text": "There are additional items as side dishes. ", "album_id": "72157623598513373", "photo_flickr_id": "4470876663", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42978", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are additional items as side dishes .", "storylet_id": "214893"}], [{"original_text": "Then at the end of the meal, this dessert that is put inside of sweet bread finishes things off well. ", "album_id": "72157623598513373", "photo_flickr_id": "4470878753", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "42978", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then at the end of the meal , this dessert that is put inside of sweet bread finishes things off well .", "storylet_id": "214894"}], [{"original_text": "Sometimes the trays were extra heavy. ", "album_id": "72157623598513373", "photo_flickr_id": "4471651446", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42979", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sometimes the trays were extra heavy .", "storylet_id": "214895"}], [{"original_text": "Especially when they got the big crabs in. ", "album_id": "72157623598513373", "photo_flickr_id": "4470872933", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42979", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "especially when they got the big crabs in .", "storylet_id": "214896"}], [{"original_text": "Strike that, make it giant crabs.", "album_id": "72157623598513373", "photo_flickr_id": "4470873399", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42979", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "strike that , make it giant crabs .", "storylet_id": "214897"}], [{"original_text": "Large heavy tray laden with pounds of food. ", "album_id": "72157623598513373", "photo_flickr_id": "4470876663", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42979", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "large heavy tray laden with pounds of food .", "storylet_id": "214898"}], [{"original_text": "Sometimes even giant squash filled with fruit would weigh 20 pounds or more. ", "album_id": "72157623598513373", "photo_flickr_id": "4470878753", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "42979", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sometimes even giant squash filled with fruit would weigh 20 pounds or more .", "storylet_id": "214899"}], [{"original_text": "I taught my daughter how to ride her bike today.", "album_id": "72157623724885850", "photo_flickr_id": "4471774875", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42980", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i taught my daughter how to ride her bike today .", "storylet_id": "214900"}], [{"original_text": "She had a great time.", "album_id": "72157623724885850", "photo_flickr_id": "4472553546", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42980", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had a great time .", "storylet_id": "214901"}], [{"original_text": "She only fell four times.", "album_id": "72157623724885850", "photo_flickr_id": "4472553984", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42980", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she only fell four times .", "storylet_id": "214902"}], [{"original_text": "She was okay though.", "album_id": "72157623724885850", "photo_flickr_id": "4472554116", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42980", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was okay though .", "storylet_id": "214903"}], [{"original_text": "Afterward I bought a cake for her.", "album_id": "72157623724885850", "photo_flickr_id": "4471776233", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "42980", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward i bought a cake for her .", "storylet_id": "214904"}], [{"original_text": "Layla was ecstatic about her birthday gift.", "album_id": "72157623724885850", "photo_flickr_id": "4471774875", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42981", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was ecstatic about her birthday gift .", "storylet_id": "214905"}], [{"original_text": "Her sister did not know what was going on.", "album_id": "72157623724885850", "photo_flickr_id": "4472554116", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42981", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her sister did not know what was going on .", "storylet_id": "214906"}], [{"original_text": "It was time to light the candles.", "album_id": "72157623724885850", "photo_flickr_id": "4471776233", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42981", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was time to light the candles .", "storylet_id": "214907"}], [{"original_text": "Layla blew them out in two puffs.", "album_id": "72157623724885850", "photo_flickr_id": "4472554536", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42981", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] blew them out in two puffs .", "storylet_id": "214908"}], [{"original_text": "She then saw her next gift, a personalized purse.", "album_id": "72157623724885850", "photo_flickr_id": "4471777331", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "42981", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she then saw her next gift , a personalized purse .", "storylet_id": "214909"}], [{"original_text": "Yesterday was my sisters birthday.", "album_id": "72157623724885850", "photo_flickr_id": "4471774875", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42982", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday was my sisters birthday .", "storylet_id": "214910"}], [{"original_text": "We had a party with hats and streamers.", "album_id": "72157623724885850", "photo_flickr_id": "4472554116", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42982", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a party with hats and streamers .", "storylet_id": "214911"}], [{"original_text": "There was a cake with candles.", "album_id": "72157623724885850", "photo_flickr_id": "4471776233", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42982", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a cake with candles .", "storylet_id": "214912"}], [{"original_text": "She got to blow out the candles and make a wish.", "album_id": "72157623724885850", "photo_flickr_id": "4472554536", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42982", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she got to blow out the candles and make a wish .", "storylet_id": "214913"}], [{"original_text": "We all hoped that it would come true.", "album_id": "72157623724885850", "photo_flickr_id": "4471777331", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42982", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all hoped that it would come true .", "storylet_id": "214914"}], [{"original_text": "We had a big get together for our kids and friends.", "album_id": "72157623724885850", "photo_flickr_id": "4471774875", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42983", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a big get together for our kids and friends .", "storylet_id": "214915"}], [{"original_text": "We celebrated Layla's birthday.", "album_id": "72157623724885850", "photo_flickr_id": "4472554116", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42983", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we celebrated [female] 's birthday .", "storylet_id": "214916"}], [{"original_text": "She loved her cake that we had prepared.", "album_id": "72157623724885850", "photo_flickr_id": "4471776233", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42983", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she loved her cake that we had prepared .", "storylet_id": "214917"}], [{"original_text": "She blew out all the candles in one puff.", "album_id": "72157623724885850", "photo_flickr_id": "4472554536", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42983", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she blew out all the candles in one puff .", "storylet_id": "214918"}], [{"original_text": "Her favorite part were the presents of course.", "album_id": "72157623724885850", "photo_flickr_id": "4471777331", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "42983", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her favorite part were the presents of course .", "storylet_id": "214919"}], [{"original_text": "She is ready to have a blast on her tricycle!", "album_id": "72157623724885850", "photo_flickr_id": "4471774875", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "42984", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she is ready to have a blast on her tricycle !", "storylet_id": "214920"}], [{"original_text": "She is having lots of fun right now!", "album_id": "72157623724885850", "photo_flickr_id": "4472553546", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "42984", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she is having lots of fun right now !", "storylet_id": "214921"}], [{"original_text": "Now she is walking and very happy!", "album_id": "72157623724885850", "photo_flickr_id": "4472553984", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "42984", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now she is walking and very happy !", "storylet_id": "214922"}], [{"original_text": "He is just sitting inside! He is just fine!", "album_id": "72157623724885850", "photo_flickr_id": "4472554116", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "42984", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he is just sitting inside ! he is just fine !", "storylet_id": "214923"}], [{"original_text": "Now they will enjoy the awesome cake!", "album_id": "72157623724885850", "photo_flickr_id": "4471776233", "setting": "last-3-pick-old-and-tell", "worker_id": "JSA7SZJ8JU6EQGJ", "story_id": "42984", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now they will enjoy the awesome cake !", "storylet_id": "214924"}], [{"original_text": "Everyone met the office today to drink and play some games.", "album_id": "72157623307460200", "photo_flickr_id": "4314090150", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42985", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone met the office today to drink and play some games .", "storylet_id": "214925"}], [{"original_text": "We had this crazy drawing game. I didnt understand it but everyone else did.", "album_id": "72157623307460200", "photo_flickr_id": "4314090596", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42985", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had this crazy drawing game . i didnt understand it but everyone else did .", "storylet_id": "214926"}], [{"original_text": "There were some sweet cakes too. They were actually delicious.", "album_id": "72157623307460200", "photo_flickr_id": "4314090686", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42985", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some sweet cakes too . they were actually delicious .", "storylet_id": "214927"}], [{"original_text": "Heres everyone playing the game. Dont know what they were doing but they had a blast.", "album_id": "72157623307460200", "photo_flickr_id": "4314090872", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42985", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "heres everyone playing the game . dont know what they were doing but they had a blast .", "storylet_id": "214928"}], [{"original_text": "Look at these wacky pencil things. Oh the things my friends invent!", "album_id": "72157623307460200", "photo_flickr_id": "4314091892", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42985", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "look at these wacky pencil things . oh the things my friends invent !", "storylet_id": "214929"}], [{"original_text": "A group of people sit around a table in a room making crafts.", "album_id": "72157623307460200", "photo_flickr_id": "4314090150", "setting": "first-2-pick-and-tell", "worker_id": "QNYTYR302PYJJOX", "story_id": "42986", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of people sit around a table in a room making crafts .", "storylet_id": "214930"}], [{"original_text": "Two cakes sit on a table; one has a single robot, the second has a group of hand-made TARDISes from the television show 'Dr. Who'.", "album_id": "72157623307460200", "photo_flickr_id": "4314090686", "setting": "first-2-pick-and-tell", "worker_id": "QNYTYR302PYJJOX", "story_id": "42986", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "two cakes sit on a table ; one has a single robot , the second has a group of hand-made tardises from the television show 'dr . who ' .", "storylet_id": "214931"}], [{"original_text": "The DonationBot sits on top of a table next to a beer bottle, holding a coin.", "album_id": "72157623307460200", "photo_flickr_id": "4313353873", "setting": "first-2-pick-and-tell", "worker_id": "QNYTYR302PYJJOX", "story_id": "42986", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the donationbot sits on top of a table next to a beer bottle , holding a coin .", "storylet_id": "214932"}], [{"original_text": "A group of people set up small robots on rolls of paper together.", "album_id": "72157623307460200", "photo_flickr_id": "4314090872", "setting": "first-2-pick-and-tell", "worker_id": "QNYTYR302PYJJOX", "story_id": "42986", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a group of people set up small robots on rolls of paper together .", "storylet_id": "214933"}], [{"original_text": "Robots with markers are legs move around a roll of paper on their own accord, creating vivid artwork.", "album_id": "72157623307460200", "photo_flickr_id": "4313354503", "setting": "first-2-pick-and-tell", "worker_id": "QNYTYR302PYJJOX", "story_id": "42986", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "robots with markers are legs move around a roll of paper on their own accord , creating vivid artwork .", "storylet_id": "214934"}], [{"original_text": "Last week every one gathered for Bob's Birthday.", "album_id": "72157623307460200", "photo_flickr_id": "4314090150", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42987", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week every one gathered for [male] 's birthday .", "storylet_id": "214935"}], [{"original_text": "We had a big Birthday cake for him.", "album_id": "72157623307460200", "photo_flickr_id": "4314090686", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42987", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a big birthday cake for him .", "storylet_id": "214936"}], [{"original_text": "The theme of the party was \"Robots\" because Bob likes them so much.", "album_id": "72157623307460200", "photo_flickr_id": "4313353873", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42987", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the theme of the party was `` robots '' because [male] likes them so much .", "storylet_id": "214937"}], [{"original_text": "So, we all got together and made some Robots.", "album_id": "72157623307460200", "photo_flickr_id": "4314090872", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42987", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so , we all got together and made some robots .", "storylet_id": "214938"}], [{"original_text": "When we were done, the Robots came out looking really neat.", "album_id": "72157623307460200", "photo_flickr_id": "4313354503", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "42987", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we were done , the robots came out looking really neat .", "storylet_id": "214939"}], [{"original_text": "Robot building party with friends. ", "album_id": "72157623307460200", "photo_flickr_id": "4314090150", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42988", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "robot building party with friends .", "storylet_id": "214940"}], [{"original_text": "The instructions to draw and build the robot. ", "album_id": "72157623307460200", "photo_flickr_id": "4314090596", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42988", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the instructions to draw and build the robot .", "storylet_id": "214941"}], [{"original_text": "Happy birthday song and cake cutting time. ", "album_id": "72157623307460200", "photo_flickr_id": "4314090686", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42988", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "happy birthday song and cake cutting time .", "storylet_id": "214942"}], [{"original_text": "After cutting the cake we went back to our activities. ", "album_id": "72157623307460200", "photo_flickr_id": "4314090872", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42988", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after cutting the cake we went back to our activities .", "storylet_id": "214943"}], [{"original_text": "Finally finished the robots, time to race. ", "album_id": "72157623307460200", "photo_flickr_id": "4314091892", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "42988", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally finished the robots , time to race .", "storylet_id": "214944"}], [{"original_text": "Working in robotics can make for an interesting job. ", "album_id": "72157623307460200", "photo_flickr_id": "4314090150", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42989", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "working in robotics can make for an interesting job .", "storylet_id": "214945"}], [{"original_text": "To celebrate our one year of business, we had a cake with one candle, and a really cool Dalek cake. ", "album_id": "72157623307460200", "photo_flickr_id": "4314090686", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42989", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to celebrate our one year of business , we had a cake with one candle , and a really cool dalek cake .", "storylet_id": "214946"}], [{"original_text": "Someone even set up our Donation Bot that we are trying out with various charities. ", "album_id": "72157623307460200", "photo_flickr_id": "4313353873", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42989", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "someone even set up our donation bot that we are trying out with various charities .", "storylet_id": "214947"}], [{"original_text": "But the coolest thing was that we got to actually play with the Draw Bots. ", "album_id": "72157623307460200", "photo_flickr_id": "4314090872", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42989", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but the coolest thing was that we got to actually play with the draw bots .", "storylet_id": "214948"}], [{"original_text": "They were as much fun as I had hoped and I think they will be very successful. ", "album_id": "72157623307460200", "photo_flickr_id": "4313354503", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "42989", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were as much fun as i had hoped and i think they will be very successful .", "storylet_id": "214949"}], [{"original_text": "They had a lot of food out for the party.", "album_id": "103266", "photo_flickr_id": "4079831", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42990", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they had a lot of food out for the party .", "storylet_id": "214950"}], [{"original_text": "The also had drinks ready to go.", "album_id": "103266", "photo_flickr_id": "4079863", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42990", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the also had drinks ready to go .", "storylet_id": "214951"}], [{"original_text": "They sat around and caught up.", "album_id": "103266", "photo_flickr_id": "4079995", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42990", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they sat around and caught up .", "storylet_id": "214952"}], [{"original_text": "They also drank a lot.", "album_id": "103266", "photo_flickr_id": "4080042", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42990", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also drank a lot .", "storylet_id": "214953"}], [{"original_text": "Even the dog had a good time.", "album_id": "103266", "photo_flickr_id": "4080134", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "42990", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the dog had a good time .", "storylet_id": "214954"}], [{"original_text": "The buffet table at the party.", "album_id": "103266", "photo_flickr_id": "4079831", "setting": "first-2-pick-and-tell", "worker_id": "3CIGRBW41S3D0NJ", "story_id": "42991", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the buffet table at the party .", "storylet_id": "214955"}], [{"original_text": "Me giving the finger at a friend.", "album_id": "103266", "photo_flickr_id": "4079894", "setting": "first-2-pick-and-tell", "worker_id": "3CIGRBW41S3D0NJ", "story_id": "42991", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "me giving the finger at a friend .", "storylet_id": "214956"}], [{"original_text": "A little music for the party.", "album_id": "103266", "photo_flickr_id": "4079966", "setting": "first-2-pick-and-tell", "worker_id": "3CIGRBW41S3D0NJ", "story_id": "42991", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a little music for the party .", "storylet_id": "214957"}], [{"original_text": "The dog has had enough, he heads outside.", "album_id": "103266", "photo_flickr_id": "4080134", "setting": "first-2-pick-and-tell", "worker_id": "3CIGRBW41S3D0NJ", "story_id": "42991", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dog has had enough , he heads outside .", "storylet_id": "214958"}], [{"original_text": "At the end of the evening, we have realized we have had too much.", "album_id": "103266", "photo_flickr_id": "4080216", "setting": "first-2-pick-and-tell", "worker_id": "3CIGRBW41S3D0NJ", "story_id": "42991", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the evening , we have realized we have had too much .", "storylet_id": "214959"}], [{"original_text": "I held a dinner party for some friends.", "album_id": "103266", "photo_flickr_id": "4079831", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42992", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i held a dinner party for some friends .", "storylet_id": "214960"}], [{"original_text": "Jim isn't a very nice guy.", "album_id": "103266", "photo_flickr_id": "4079894", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42992", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is n't a very nice guy .", "storylet_id": "214961"}], [{"original_text": "Dave played guitar for us.", "album_id": "103266", "photo_flickr_id": "4079966", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42992", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] played guitar for us .", "storylet_id": "214962"}], [{"original_text": "My dog seemed to enjoy the company.", "album_id": "103266", "photo_flickr_id": "4080134", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42992", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my dog seemed to enjoy the company .", "storylet_id": "214963"}], [{"original_text": "The drinking got a little out of hand.", "album_id": "103266", "photo_flickr_id": "4080216", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "42992", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the drinking got a little out of hand .", "storylet_id": "214964"}], [{"original_text": "It was almost dinner time, the food was almost ready.", "album_id": "103266", "photo_flickr_id": "4079831", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42993", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was almost dinner time , the food was almost ready .", "storylet_id": "214965"}], [{"original_text": "The women had worked hard at putting out a great spread.", "album_id": "103266", "photo_flickr_id": "4079863", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42993", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the women had worked hard at putting out a great spread .", "storylet_id": "214966"}], [{"original_text": "The women gathered around to drink wine and gossip.", "album_id": "103266", "photo_flickr_id": "4079995", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42993", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the women gathered around to drink wine and gossip .", "storylet_id": "214967"}], [{"original_text": "Then they ate their food.", "album_id": "103266", "photo_flickr_id": "4080042", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42993", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they ate their food .", "storylet_id": "214968"}], [{"original_text": "The poor dog was excluded from the party.", "album_id": "103266", "photo_flickr_id": "4080134", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "42993", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the poor dog was excluded from the party .", "storylet_id": "214969"}], [{"original_text": "We had fiesta night at the Logans house last weekend.", "album_id": "103266", "photo_flickr_id": "4079831", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42994", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had fiesta night at the organization house last weekend .", "storylet_id": "214970"}], [{"original_text": "The vodka was running a plenty.", "album_id": "103266", "photo_flickr_id": "4079863", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42994", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the vodka was running a plenty .", "storylet_id": "214971"}], [{"original_text": "Stories we told.", "album_id": "103266", "photo_flickr_id": "4079995", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42994", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "stories we told .", "storylet_id": "214972"}], [{"original_text": "Friendships were made.", "album_id": "103266", "photo_flickr_id": "4080042", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42994", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "friendships were made .", "storylet_id": "214973"}], [{"original_text": "Dogs where even invited.", "album_id": "103266", "photo_flickr_id": "4080134", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "42994", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dogs where even invited .", "storylet_id": "214974"}], [{"original_text": "I set out tonight to have some fun at the bar.", "album_id": "72157623200087819", "photo_flickr_id": "4320652527", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42995", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i set out tonight to have some fun at the bar .", "storylet_id": "214975"}], [{"original_text": "You gonna drink all those missy? Dont worry I can help you out.", "album_id": "72157623200087819", "photo_flickr_id": "4320653085", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42995", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you gon na drink all those missy ? dont worry i can help you out .", "storylet_id": "214976"}], [{"original_text": "I gave the pole a shot but this is why im not a stripper.", "album_id": "72157623200087819", "photo_flickr_id": "4320655113", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42995", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i gave the pole a shot but this is why im not a stripper .", "storylet_id": "214977"}], [{"original_text": "I decided to relax awhile on the dance floor but i can still dance a little.", "album_id": "72157623200087819", "photo_flickr_id": "4320645001", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42995", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i decided to relax awhile on the dance floor but i can still dance a little .", "storylet_id": "214978"}], [{"original_text": "The bar was packed and in all it was a good night with friends.", "album_id": "72157623200087819", "photo_flickr_id": "4320652269", "setting": "first-2-pick-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "42995", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bar was packed and in all it was a good night with friends .", "storylet_id": "214979"}], [{"original_text": "We all had a blast at the show!", "album_id": "72157623200087819", "photo_flickr_id": "4320652527", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42996", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all had a blast at the show !", "storylet_id": "214980"}], [{"original_text": "Some of us had to cool off in front of the fan, because we were dancing so hard.", "album_id": "72157623200087819", "photo_flickr_id": "4320655641", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42996", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of us had to cool off in front of the fan , because we were dancing so hard .", "storylet_id": "214981"}], [{"original_text": "The crowd was really fun and the drinks tasted good.", "album_id": "72157623200087819", "photo_flickr_id": "4321374126", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42996", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowd was really fun and the drinks tasted good .", "storylet_id": "214982"}], [{"original_text": "Everyone had a lot of fun meeting new people.", "album_id": "72157623200087819", "photo_flickr_id": "4320648695", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42996", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone had a lot of fun meeting new people .", "storylet_id": "214983"}], [{"original_text": "Most of us want to have another party like this again.", "album_id": "72157623200087819", "photo_flickr_id": "4320652269", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "42996", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "most of us want to have another party like this again .", "storylet_id": "214984"}], [{"original_text": "I remember having the first drink last night.", "album_id": "72157623200087819", "photo_flickr_id": "4320652527", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42997", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i remember having the first drink last night .", "storylet_id": "214985"}], [{"original_text": "Of course my friend had to out do everyone.", "album_id": "72157623200087819", "photo_flickr_id": "4320653085", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42997", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "of course my friend had to out do everyone .", "storylet_id": "214986"}], [{"original_text": "Yet it seemed like I was the one who had way to much to drink.", "album_id": "72157623200087819", "photo_flickr_id": "4320655113", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42997", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "yet it seemed like i was the one who had way to much to drink .", "storylet_id": "214987"}], [{"original_text": "Still the group had a great time, this was a much needed outing. ", "album_id": "72157623200087819", "photo_flickr_id": "4320645001", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42997", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "still the group had a great time , this was a much needed outing .", "storylet_id": "214988"}], [{"original_text": "Best of all we met a lot of cool people, most of which I do not remember.", "album_id": "72157623200087819", "photo_flickr_id": "4320652269", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "42997", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "best of all we met a lot of cool people , most of which i do not remember .", "storylet_id": "214989"}], [{"original_text": "A young woman is having a alcoholic beverage.", "album_id": "72157623200087819", "photo_flickr_id": "4320652527", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "42998", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a young woman is having a alcoholic beverage .", "storylet_id": "214990"}], [{"original_text": "Another lady looks like she has had a lot of drinks and she's done for the night.", "album_id": "72157623200087819", "photo_flickr_id": "4320653085", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "42998", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "another lady looks like she has had a lot of drinks and she 's done for the night .", "storylet_id": "214991"}], [{"original_text": "The young woman is so drunk that she decided to climb on the pole and get wild.", "album_id": "72157623200087819", "photo_flickr_id": "4320655113", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "42998", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the young woman is so drunk that she decided to climb on the pole and get wild .", "storylet_id": "214992"}], [{"original_text": "She got off the pole and met up with one of her friends.", "album_id": "72157623200087819", "photo_flickr_id": "4320645001", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "42998", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she got off the pole and met up with one of her friends .", "storylet_id": "214993"}], [{"original_text": "The party is very live and it is packed with a lot of people.", "album_id": "72157623200087819", "photo_flickr_id": "4320652269", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "42998", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the party is very live and it is packed with a lot of people .", "storylet_id": "214994"}], [{"original_text": "The party started off with drinks for everyone.", "album_id": "72157623200087819", "photo_flickr_id": "4320652527", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42999", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party started off with drinks for everyone .", "storylet_id": "214995"}], [{"original_text": "They had a pole to dance on at the venue.", "album_id": "72157623200087819", "photo_flickr_id": "4320655641", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42999", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a pole to dance on at the venue .", "storylet_id": "214996"}], [{"original_text": "The crowds began to arrive.", "album_id": "72157623200087819", "photo_flickr_id": "4321374126", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42999", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowds began to arrive .", "storylet_id": "214997"}], [{"original_text": "There was dancing on the dance floor all night.", "album_id": "72157623200087819", "photo_flickr_id": "4320648695", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42999", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was dancing on the dance floor all night .", "storylet_id": "214998"}], [{"original_text": "The party lasted til 2 in the morning.", "album_id": "72157623200087819", "photo_flickr_id": "4320652269", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "42999", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the party lasted til 2 in the morning .", "storylet_id": "214999"}], [{"original_text": "She was happy to meet with her friend.", "album_id": "72157623320533820", "photo_flickr_id": "4318694375", "setting": "first-2-pick-and-tell", "worker_id": "TIFS8K880K0CHZX", "story_id": "43000", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she was happy to meet with her friend .", "storylet_id": "215000"}], [{"original_text": "Her other friend was happy to meet with her.", "album_id": "72157623320533820", "photo_flickr_id": "4319430586", "setting": "first-2-pick-and-tell", "worker_id": "TIFS8K880K0CHZX", "story_id": "43000", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her other friend was happy to meet with her .", "storylet_id": "215001"}], [{"original_text": "They both had a great time.", "album_id": "72157623320533820", "photo_flickr_id": "4318698267", "setting": "first-2-pick-and-tell", "worker_id": "TIFS8K880K0CHZX", "story_id": "43000", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they both had a great time .", "storylet_id": "215002"}], [{"original_text": "She enjoyed an evening out with friends and family.", "album_id": "72157623320533820", "photo_flickr_id": "4318730969", "setting": "first-2-pick-and-tell", "worker_id": "TIFS8K880K0CHZX", "story_id": "43000", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she enjoyed an evening out with friends and family .", "storylet_id": "215003"}], [{"original_text": "Her graduation party was a great success.", "album_id": "72157623320533820", "photo_flickr_id": "4319465504", "setting": "first-2-pick-and-tell", "worker_id": "TIFS8K880K0CHZX", "story_id": "43000", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her graduation party was a great success .", "storylet_id": "215004"}], [{"original_text": "The deer head stared at us from the wall of the bar. ", "album_id": "72157623320533820", "photo_flickr_id": "4318660451", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "43001", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the deer head stared at us from the wall of the bar .", "storylet_id": "215005"}], [{"original_text": "After a few beers the girls got a little silly ", "album_id": "72157623320533820", "photo_flickr_id": "4318698267", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "43001", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after a few beers the girls got a little silly", "storylet_id": "215006"}], [{"original_text": "Just a bunch of friends out for a good time.", "album_id": "72157623320533820", "photo_flickr_id": "4319465504", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "43001", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "just a bunch of friends out for a good time .", "storylet_id": "215007"}], [{"original_text": "The all enjoyed the drinks and the company.", "album_id": "72157623320533820", "photo_flickr_id": "4319468250", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "43001", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the all enjoyed the drinks and the company .", "storylet_id": "215008"}], [{"original_text": "This man was planning for after he and his buxom lady got home.", "album_id": "72157623320533820", "photo_flickr_id": "4319500214", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "43001", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this man was planning for after he and his buxom lady got home .", "storylet_id": "215009"}], [{"original_text": "The deer head d\u00c3\u0192\u00c2\u00a9cor was fitting for the setting.", "album_id": "72157623320533820", "photo_flickr_id": "4318660451", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "43002", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the deer head d\u00c3\u0192\u00c6\u2019\u00c3\u201a\u00c2\u00a9cor was fitting for the setting .", "storylet_id": "215010"}], [{"original_text": "We had to get a shot in our awesome dresses. ", "album_id": "72157623320533820", "photo_flickr_id": "4318698267", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "43002", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to get a shot in our awesome dresses .", "storylet_id": "215011"}], [{"original_text": "This group photo of our dates is beautiful. ", "album_id": "72157623320533820", "photo_flickr_id": "4319465504", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "43002", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this group photo of our dates is beautiful .", "storylet_id": "215012"}], [{"original_text": "We had such an amazing time talking about life.", "album_id": "72157623320533820", "photo_flickr_id": "4319468250", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "43002", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had such an amazing time talking about life .", "storylet_id": "215013"}], [{"original_text": "We were relaxing as we waited for drink refills. ", "album_id": "72157623320533820", "photo_flickr_id": "4319500214", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "43002", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were relaxing as we waited for drink refills .", "storylet_id": "215014"}], [{"original_text": "The stuffed head of this 8 point buck has watched over many parties here.", "album_id": "72157623320533820", "photo_flickr_id": "4318660451", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43003", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stuffed head of this 8 point buck has watched over many parties here .", "storylet_id": "215015"}], [{"original_text": "Two girls are dressed to party, but each has a concession to staring warm with gloves for one and a sweater for the other.", "album_id": "72157623320533820", "photo_flickr_id": "4318698267", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43003", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "two girls are dressed to party , but each has a concession to staring warm with gloves for one and a sweater for the other .", "storylet_id": "215016"}], [{"original_text": "While the guys are dressed to their necks, the ladies are showing some skin.", "album_id": "72157623320533820", "photo_flickr_id": "4319465504", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43003", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "while the guys are dressed to their necks , the ladies are showing some skin .", "storylet_id": "215017"}], [{"original_text": "The guy in the middle catches an ogle of nearby cleavage.", "album_id": "72157623320533820", "photo_flickr_id": "4319468250", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43003", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guy in the middle catches an ogle of nearby cleavage .", "storylet_id": "215018"}], [{"original_text": "As her jacket opens, the looks at her decolletage have become more obvious. The 8 point buck has watched another evening.", "album_id": "72157623320533820", "photo_flickr_id": "4319500214", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43003", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as her jacket opens , the looks at her decolletage have become more obvious . the 8 point buck has watched another evening .", "storylet_id": "215019"}], [{"original_text": "It's girls night out and it is time for some fun for these girls.", "album_id": "72157623320533820", "photo_flickr_id": "4318694375", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43004", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's girls night out and it is time for some fun for these girls .", "storylet_id": "215020"}], [{"original_text": "They get together dressed in their best to have a good time.", "album_id": "72157623320533820", "photo_flickr_id": "4319430586", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43004", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they get together dressed in their best to have a good time .", "storylet_id": "215021"}], [{"original_text": "They take pictures to remember their awesome night.", "album_id": "72157623320533820", "photo_flickr_id": "4318698267", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43004", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they take pictures to remember their awesome night .", "storylet_id": "215022"}], [{"original_text": "Girls night soon turns into date night as some guys start chatting with the girls.", "album_id": "72157623320533820", "photo_flickr_id": "4318730969", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43004", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "girls night soon turns into date night as some guys start chatting with the girls .", "storylet_id": "215023"}], [{"original_text": "They soon realize girls night can be fun with guys too as they all sit laughing the night away.", "album_id": "72157623320533820", "photo_flickr_id": "4319465504", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43004", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they soon realize girls night can be fun with guys too as they all sit laughing the night away .", "storylet_id": "215024"}], [{"original_text": "Mom watches as he opens his birthday gifts.", "album_id": "72157623321908226", "photo_flickr_id": "4320105318", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43005", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom watches as he opens his birthday gifts .", "storylet_id": "215025"}], [{"original_text": "Grandma takes a photo of him opening gifts.", "album_id": "72157623321908226", "photo_flickr_id": "4319372923", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43005", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma takes a photo of him opening gifts .", "storylet_id": "215026"}], [{"original_text": "His first birthday cake came out great!", "album_id": "72157623321908226", "photo_flickr_id": "4320107998", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43005", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his first birthday cake came out great !", "storylet_id": "215027"}], [{"original_text": "He reaches for the green balloons. ", "album_id": "72157623321908226", "photo_flickr_id": "4320109962", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43005", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he reaches for the green balloons .", "storylet_id": "215028"}], [{"original_text": "His is amazed by the balloons. ", "album_id": "72157623321908226", "photo_flickr_id": "4319376905", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43005", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his is amazed by the balloons .", "storylet_id": "215029"}], [{"original_text": "It was Douglas's first birthday and he opened his presents.", "album_id": "72157623321908226", "photo_flickr_id": "4320105318", "setting": "first-2-pick-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "43006", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was [male] 's first birthday and he opened his presents .", "storylet_id": "215030"}], [{"original_text": "His cake was decorated with poke-a-dots.", "album_id": "72157623321908226", "photo_flickr_id": "4320107204", "setting": "first-2-pick-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "43006", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his cake was decorated with poke-a-dots .", "storylet_id": "215031"}], [{"original_text": "He wanted to touch the balloons, but they were too high.", "album_id": "72157623321908226", "photo_flickr_id": "4320109962", "setting": "first-2-pick-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "43006", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he wanted to touch the balloons , but they were too high .", "storylet_id": "215032"}], [{"original_text": "Grandpa came to the party and held Douglas.", "album_id": "72157623321908226", "photo_flickr_id": "4319385077", "setting": "first-2-pick-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "43006", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandpa came to the party and held [male] .", "storylet_id": "215033"}], [{"original_text": "Douglas then tried the cake. He loved it!", "album_id": "72157623321908226", "photo_flickr_id": "4319389489", "setting": "first-2-pick-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "43006", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] then tried the cake . he loved it !", "storylet_id": "215034"}], [{"original_text": "The best part was opening the birthday gifts.", "album_id": "72157623321908226", "photo_flickr_id": "4320105318", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "43007", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the best part was opening the birthday gifts .", "storylet_id": "215035"}], [{"original_text": "This birthday cake was amazing and colorful.", "album_id": "72157623321908226", "photo_flickr_id": "4320107204", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "43007", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this birthday cake was amazing and colorful .", "storylet_id": "215036"}], [{"original_text": "He had so much fun trying to catch the balloons.", "album_id": "72157623321908226", "photo_flickr_id": "4320109962", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "43007", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had so much fun trying to catch the balloons .", "storylet_id": "215037"}], [{"original_text": "Grandpa and grandson look so amazing together.", "album_id": "72157623321908226", "photo_flickr_id": "4319385077", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "43007", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandpa and grandson look so amazing together .", "storylet_id": "215038"}], [{"original_text": "Today is his birthday and he can finally devour that cake.", "album_id": "72157623321908226", "photo_flickr_id": "4319389489", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "43007", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "today is his birthday and he can finally devour that cake .", "storylet_id": "215039"}], [{"original_text": "It was little Billy's first birthday and mom had planned a fun day.", "album_id": "72157623321908226", "photo_flickr_id": "4320105318", "setting": "last-3-pick-old-and-tell", "worker_id": "RV8M8H8Z3A0JJ9V", "story_id": "43008", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was little [male] 's first birthday and mom had planned a fun day .", "storylet_id": "215040"}], [{"original_text": "First Billy opened all his presents. As the first grandchild, his grandparents spoiled him with amazing gifts. ", "album_id": "72157623321908226", "photo_flickr_id": "4319372923", "setting": "last-3-pick-old-and-tell", "worker_id": "RV8M8H8Z3A0JJ9V", "story_id": "43008", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first [male] opened all his presents . as the first grandchild , his grandparents spoiled him with amazing gifts .", "storylet_id": "215041"}], [{"original_text": "Next up, cake time. He dug in with a fist full and made a huge mess. ", "album_id": "72157623321908226", "photo_flickr_id": "4320107998", "setting": "last-3-pick-old-and-tell", "worker_id": "RV8M8H8Z3A0JJ9V", "story_id": "43008", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next up , cake time . he dug in with a fist full and made a huge mess .", "storylet_id": "215042"}], [{"original_text": "Despite receiving the best gifts a one year old could ask for....", "album_id": "72157623321908226", "photo_flickr_id": "4320109962", "setting": "last-3-pick-old-and-tell", "worker_id": "RV8M8H8Z3A0JJ9V", "story_id": "43008", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "despite receiving the best gifts a one year old could ask for ... .", "storylet_id": "215043"}], [{"original_text": "Billy was more entertained by the helium filled balloons floating up to the ceiling.", "album_id": "72157623321908226", "photo_flickr_id": "4319376905", "setting": "last-3-pick-old-and-tell", "worker_id": "RV8M8H8Z3A0JJ9V", "story_id": "43008", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was more entertained by the helium filled balloons floating up to the ceiling .", "storylet_id": "215044"}], [{"original_text": "We celebrated Billy's First Birthday last week.", "album_id": "72157623321908226", "photo_flickr_id": "4320105318", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43009", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we celebrated [male] 's first birthday last week .", "storylet_id": "215045"}], [{"original_text": "We had a big Birthday cake for him.", "album_id": "72157623321908226", "photo_flickr_id": "4320107204", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43009", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a big birthday cake for him .", "storylet_id": "215046"}], [{"original_text": "Balloons were decorated all over the place.", "album_id": "72157623321908226", "photo_flickr_id": "4320109962", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43009", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "balloons were decorated all over the place .", "storylet_id": "215047"}], [{"original_text": "Grandfather and Billy had a good time playing.", "album_id": "72157623321908226", "photo_flickr_id": "4319385077", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43009", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandfather and [male] had a good time playing .", "storylet_id": "215048"}], [{"original_text": "At the end of the party Billy got to eat his cake.", "album_id": "72157623321908226", "photo_flickr_id": "4319389489", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43009", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the party [male] got to eat his cake .", "storylet_id": "215049"}], [{"original_text": "The party started at 11:00", "album_id": "72157623323399630", "photo_flickr_id": "4319955359", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43010", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party started at 11:00", "storylet_id": "215050"}], [{"original_text": "The DJ was getting warmed up.", "album_id": "72157623323399630", "photo_flickr_id": "4319955853", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43010", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dj was getting warmed up .", "storylet_id": "215051"}], [{"original_text": "Something had to change because people were getting bored.", "album_id": "72157623323399630", "photo_flickr_id": "4320689966", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43010", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "something had to change because people were getting bored .", "storylet_id": "215052"}], [{"original_text": "Then walked through the door was the senior DJ.", "album_id": "72157623323399630", "photo_flickr_id": "4319957295", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43010", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then walked through the door was the senior dj .", "storylet_id": "215053"}], [{"original_text": "She took control of the night.", "album_id": "72157623323399630", "photo_flickr_id": "4319957553", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43010", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she took control of the night .", "storylet_id": "215054"}], [{"original_text": "I used a wide angle lens to capture the club exterior. We were the first to arrive.", "album_id": "72157623323399630", "photo_flickr_id": "4319957295", "setting": "first-2-pick-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "43011", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i used a wide angle lens to capture the club exterior . we were the first to arrive .", "storylet_id": "215055"}], [{"original_text": "This DJ is infamous and draws a rowdy crowd every time.", "album_id": "72157623323399630", "photo_flickr_id": "4319956125", "setting": "first-2-pick-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "43011", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this dj is infamous and draws a rowdy crowd every time .", "storylet_id": "215056"}], [{"original_text": "My two closest friends in the world are still inseparable.", "album_id": "72157623323399630", "photo_flickr_id": "4320686526", "setting": "first-2-pick-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "43011", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my two closest friends in the world are still inseparable .", "storylet_id": "215057"}], [{"original_text": "It's not a party until these troublemakers show up!", "album_id": "72157623323399630", "photo_flickr_id": "4320689162", "setting": "first-2-pick-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "43011", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's not a party until these troublemakers show up !", "storylet_id": "215058"}], [{"original_text": "For the final song I was allowed to DJ. It was so much fun!", "album_id": "72157623323399630", "photo_flickr_id": "4319957765", "setting": "first-2-pick-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "43011", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for the final song i was allowed to dj . it was so much fun !", "storylet_id": "215059"}], [{"original_text": "The club was dark, but fun that night. ", "album_id": "72157623323399630", "photo_flickr_id": "4319955359", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43012", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the club was dark , but fun that night .", "storylet_id": "215060"}], [{"original_text": "The music was being played loud. ", "album_id": "72157623323399630", "photo_flickr_id": "4319955853", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43012", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the music was being played loud .", "storylet_id": "215061"}], [{"original_text": "The DJ was real good. ", "album_id": "72157623323399630", "photo_flickr_id": "4320689966", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43012", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dj was real good .", "storylet_id": "215062"}], [{"original_text": "The building was very large. ", "album_id": "72157623323399630", "photo_flickr_id": "4319957295", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43012", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the building was very large .", "storylet_id": "215063"}], [{"original_text": "We all had a good time. ", "album_id": "72157623323399630", "photo_flickr_id": "4319957553", "setting": "last-3-pick-old-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43012", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all had a good time .", "storylet_id": "215064"}], [{"original_text": "The scene is dark but the mood is light as the young people have gathered to enjoy each other. Although the guy in the middle has his are around a girl, he pays much more attention to the guy with the camera.", "album_id": "72157623323399630", "photo_flickr_id": "4319955359", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43013", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the scene is dark but the mood is light as the young people have gathered to enjoy each other . although the guy in the middle has his are around a girl , he pays much more attention to the guy with the camera .", "storylet_id": "215065"}], [{"original_text": "This laptop controls the lighting for the room. An adjustment is made.", "album_id": "72157623323399630", "photo_flickr_id": "4319955853", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43013", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this laptop controls the lighting for the room . an adjustment is made .", "storylet_id": "215066"}], [{"original_text": "It is not quite a disco ball, but spires of light illuminate the room.", "album_id": "72157623323399630", "photo_flickr_id": "4320689966", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43013", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is not quite a disco ball , but spires of light illuminate the room .", "storylet_id": "215067"}], [{"original_text": "The windows are reflecting because there is so little light inside the rooms.", "album_id": "72157623323399630", "photo_flickr_id": "4319957295", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43013", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the windows are reflecting because there is so little light inside the rooms .", "storylet_id": "215068"}], [{"original_text": "The optical illusion of a giant hand is part of the control that the laptop has on the environment. The young people have indeed had a unique and enjoyable experience.", "album_id": "72157623323399630", "photo_flickr_id": "4319957553", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43013", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the optical illusion of a giant hand is part of the control that the laptop has on the environment . the young people have indeed had a unique and enjoyable experience .", "storylet_id": "215069"}], [{"original_text": "It's a late night and there's a party going on in this building.", "album_id": "72157623323399630", "photo_flickr_id": "4319957295", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43014", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a late night and there 's a party going on in this building .", "storylet_id": "215070"}], [{"original_text": "The DJ is spinning tracks and doesn't care what people think about the music.", "album_id": "72157623323399630", "photo_flickr_id": "4319956125", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43014", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dj is spinning tracks and does n't care what people think about the music .", "storylet_id": "215071"}], [{"original_text": "Two girls and having a good time and decided to take a picture.", "album_id": "72157623323399630", "photo_flickr_id": "4320686526", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43014", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two girls and having a good time and decided to take a picture .", "storylet_id": "215072"}], [{"original_text": "Two guys and this girl are also enjoying themselves and they took a picture.", "album_id": "72157623323399630", "photo_flickr_id": "4320689162", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43014", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two guys and this girl are also enjoying themselves and they took a picture .", "storylet_id": "215073"}], [{"original_text": "A girl was feeling the music and decided to show some of her moves.", "album_id": "72157623323399630", "photo_flickr_id": "4319957765", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43014", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a girl was feeling the music and decided to show some of her moves .", "storylet_id": "215074"}], [{"original_text": "The group gathered before the play for a fun photo. They were all excited to see the show.", "album_id": "72157602098301059", "photo_flickr_id": "1414229404", "setting": "first-2-pick-and-tell", "worker_id": "NDMNYFY5ETVIZCQ", "story_id": "43015", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group gathered before the play for a fun photo . they were all excited to see the show .", "storylet_id": "215075"}], [{"original_text": "From their seats in the balcony, they watched in wonder.", "album_id": "72157602098301059", "photo_flickr_id": "1414229246", "setting": "first-2-pick-and-tell", "worker_id": "NDMNYFY5ETVIZCQ", "story_id": "43015", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from their seats in the balcony , they watched in wonder .", "storylet_id": "215076"}], [{"original_text": "They cheered and clapped as the actors took to the stage for a bow.", "album_id": "72157602098301059", "photo_flickr_id": "1414228958", "setting": "first-2-pick-and-tell", "worker_id": "NDMNYFY5ETVIZCQ", "story_id": "43015", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they cheered and clapped as the actors took to the stage for a bow .", "storylet_id": "215077"}], [{"original_text": "After the show, the group decided to visit their favorite local restaurant.", "album_id": "72157602098301059", "photo_flickr_id": "1414229144", "setting": "first-2-pick-and-tell", "worker_id": "NDMNYFY5ETVIZCQ", "story_id": "43015", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the show , the group decided to visit their favorite local restaurant .", "storylet_id": "215078"}], [{"original_text": "They talked and drank into the night, smiling for many pictures and enjoying their time together.", "album_id": "72157602098301059", "photo_flickr_id": "1414229092", "setting": "first-2-pick-and-tell", "worker_id": "NDMNYFY5ETVIZCQ", "story_id": "43015", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they talked and drank into the night , smiling for many pictures and enjoying their time together .", "storylet_id": "215079"}], [{"original_text": "This couple is getting ready to be in a play.", "album_id": "72157602098301059", "photo_flickr_id": "1414229342", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "43016", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this couple is getting ready to be in a play .", "storylet_id": "215080"}], [{"original_text": "Their family has come to watch them and takes a photo before the show.", "album_id": "72157602098301059", "photo_flickr_id": "1414229404", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "43016", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their family has come to watch them and takes a photo before the show .", "storylet_id": "215081"}], [{"original_text": "The play went well.", "album_id": "72157602098301059", "photo_flickr_id": "1414228958", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "43016", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the play went well .", "storylet_id": "215082"}], [{"original_text": "The woman is very happy with her performance in the play.", "album_id": "72157602098301059", "photo_flickr_id": "1414229006", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "43016", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the woman is very happy with her performance in the play .", "storylet_id": "215083"}], [{"original_text": "She loves acting with her boyfriend.", "album_id": "72157602098301059", "photo_flickr_id": "1413348465", "setting": "first-2-pick-and-tell", "worker_id": "N7K3XSF7NMT5O3S", "story_id": "43016", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she loves acting with her boyfriend .", "storylet_id": "215084"}], [{"original_text": "The thespian group gathered to preform their play last night.", "album_id": "72157602098301059", "photo_flickr_id": "1414229404", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43017", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the thespian group gathered to preform their play last night .", "storylet_id": "215085"}], [{"original_text": "The stage lighting was brilliantly done.", "album_id": "72157602098301059", "photo_flickr_id": "1414229246", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43017", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the stage lighting was brilliantly done .", "storylet_id": "215086"}], [{"original_text": "The actors did a wonderful job on the performance.", "album_id": "72157602098301059", "photo_flickr_id": "1414228958", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43017", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the actors did a wonderful job on the performance .", "storylet_id": "215087"}], [{"original_text": "When the show was done, the actors congratulated each other on a job well done.", "album_id": "72157602098301059", "photo_flickr_id": "1414229144", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43017", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the show was done , the actors congratulated each other on a job well done .", "storylet_id": "215088"}], [{"original_text": "They were happy to have done a good performance.", "album_id": "72157602098301059", "photo_flickr_id": "1414229092", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43017", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were happy to have done a good performance .", "storylet_id": "215089"}], [{"original_text": "It was great to gather the group together before the show.", "album_id": "72157602098301059", "photo_flickr_id": "1414229404", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43018", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was great to gather the group together before the show .", "storylet_id": "215090"}], [{"original_text": "The cast was fantastic, they made the scenes come to life.", "album_id": "72157602098301059", "photo_flickr_id": "1414229246", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43018", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cast was fantastic , they made the scenes come to life .", "storylet_id": "215091"}], [{"original_text": "When the show ended all of the actors gathered together to say farewell to the audience.", "album_id": "72157602098301059", "photo_flickr_id": "1414228958", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43018", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when the show ended all of the actors gathered together to say farewell to the audience .", "storylet_id": "215092"}], [{"original_text": "Mom and I talked about our favorite scenes while we ate dinner after the show.", "album_id": "72157602098301059", "photo_flickr_id": "1414229144", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43018", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom and i talked about our favorite scenes while we ate dinner after the show .", "storylet_id": "215093"}], [{"original_text": "Every thought the ending was quite hilarious.", "album_id": "72157602098301059", "photo_flickr_id": "1414229092", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43018", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "every thought the ending was quite hilarious .", "storylet_id": "215094"}], [{"original_text": "A family got together to see a school play that their friend Gary was in. ", "album_id": "72157602098301059", "photo_flickr_id": "1414229404", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43019", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a family got together to see a school play that their friend [male] was in .", "storylet_id": "215095"}], [{"original_text": "The play was long but very interesting. ", "album_id": "72157602098301059", "photo_flickr_id": "1414229246", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43019", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the play was long but very interesting .", "storylet_id": "215096"}], [{"original_text": "There was singing.", "album_id": "72157602098301059", "photo_flickr_id": "1414228958", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43019", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was singing .", "storylet_id": "215097"}], [{"original_text": "After they took Gary to a restaurant to celebrate.", "album_id": "72157602098301059", "photo_flickr_id": "1414229144", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43019", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after they took [male] to a restaurant to celebrate .", "storylet_id": "215098"}], [{"original_text": "They talked and laughed, and everyone had a good time. ", "album_id": "72157602098301059", "photo_flickr_id": "1414229092", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43019", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they talked and laughed , and everyone had a good time .", "storylet_id": "215099"}], [{"original_text": "PinoyMac the apple users group, was having an event.", "album_id": "14334", "photo_flickr_id": "394747", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "43020", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "pinoymac the apple users group , was having an event .", "storylet_id": "215100"}], [{"original_text": "In fact it was the groups anniversary. ", "album_id": "14334", "photo_flickr_id": "394749", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "43020", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in fact it was the groups anniversary .", "storylet_id": "215101"}], [{"original_text": "They had a good time meeting in person rather than on the forums.", "album_id": "14334", "photo_flickr_id": "394734", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "43020", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a good time meeting in person rather than on the forums .", "storylet_id": "215102"}], [{"original_text": "They had a good time discussing and working on Macs,", "album_id": "14334", "photo_flickr_id": "394740", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "43020", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had a good time discussing and working on macs ,", "storylet_id": "215103"}], [{"original_text": "and making friends. ", "album_id": "14334", "photo_flickr_id": "394743", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "43020", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and making friends .", "storylet_id": "215104"}], [{"original_text": "It was the anniversary party for PinoyMac.", "album_id": "14334", "photo_flickr_id": "394749", "setting": "first-2-pick-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "43021", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the anniversary party for pinoymac .", "storylet_id": "215105"}], [{"original_text": "Employees celebrated the occasion.", "album_id": "14334", "photo_flickr_id": "394741", "setting": "first-2-pick-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "43021", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "employees celebrated the occasion .", "storylet_id": "215106"}], [{"original_text": "Even those who couldn't get away from the computer had fun. ", "album_id": "14334", "photo_flickr_id": "394734", "setting": "first-2-pick-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "43021", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even those who could n't get away from the computer had fun .", "storylet_id": "215107"}], [{"original_text": "Family and friends were invited. ", "album_id": "14334", "photo_flickr_id": "394743", "setting": "first-2-pick-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "43021", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "family and friends were invited .", "storylet_id": "215108"}], [{"original_text": "Everyone got a free sweatshirt to commemorate the occasion.", "album_id": "14334", "photo_flickr_id": "394747", "setting": "first-2-pick-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "43021", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone got a free sweatshirt to commemorate the occasion .", "storylet_id": "215109"}], [{"original_text": "We were thankful to have found such a beautiful cake for their anniversary, at the last minute. ", "album_id": "14334", "photo_flickr_id": "394749", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43022", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were thankful to have found such a beautiful cake for their anniversary , at the last minute .", "storylet_id": "215110"}], [{"original_text": "Everyone was grateful to be able to be there for the occasion.", "album_id": "14334", "photo_flickr_id": "394741", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43022", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was grateful to be able to be there for the occasion .", "storylet_id": "215111"}], [{"original_text": "The cousins talked and laughed about memories of when the business first started up. ", "album_id": "14334", "photo_flickr_id": "394734", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43022", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cousins talked and laughed about memories of when the business first started up .", "storylet_id": "215112"}], [{"original_text": "It is nice to have such a wonderful team behind the company.", "album_id": "14334", "photo_flickr_id": "394743", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43022", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is nice to have such a wonderful team behind the company .", "storylet_id": "215113"}], [{"original_text": "At the end we handed out memorabilia so everyone can remember that we are family.", "album_id": "14334", "photo_flickr_id": "394747", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43022", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end we handed out memorabilia so everyone can remember that we are family .", "storylet_id": "215114"}], [{"original_text": "It's a couple's anniversary and a friend made a cake for them.", "album_id": "14334", "photo_flickr_id": "394749", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43023", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a couple 's anniversary and a friend made a cake for them .", "storylet_id": "215115"}], [{"original_text": "They have a small gathering with a couple of friends and take a picture.", "album_id": "14334", "photo_flickr_id": "394741", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43023", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they have a small gathering with a couple of friends and take a picture .", "storylet_id": "215116"}], [{"original_text": "The couple's children are busy with their electronics but they had time to take a picture.", "album_id": "14334", "photo_flickr_id": "394734", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43023", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the couple 's children are busy with their electronics but they had time to take a picture .", "storylet_id": "215117"}], [{"original_text": "The couple's daughter made a visit to their house and took a picture with them.", "album_id": "14334", "photo_flickr_id": "394743", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43023", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple 's daughter made a visit to their house and took a picture with them .", "storylet_id": "215118"}], [{"original_text": "She brought them a present and it turns out to be an Apple shirt.", "album_id": "14334", "photo_flickr_id": "394747", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43023", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she brought them a present and it turns out to be an organization shirt .", "storylet_id": "215119"}], [{"original_text": "The group has decided to celebrate this anniversary in style, with sweatshirts made especially for the occasion.", "album_id": "14334", "photo_flickr_id": "394747", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43024", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group has decided to celebrate this anniversary in style , with sweatshirts made especially for the occasion .", "storylet_id": "215120"}], [{"original_text": "The more traditional token of celebration is this birthday cake.", "album_id": "14334", "photo_flickr_id": "394749", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43024", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the more traditional token of celebration is this birthday cake .", "storylet_id": "215121"}], [{"original_text": "The group has found camaraderie around the common bond of the user group.", "album_id": "14334", "photo_flickr_id": "394734", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43024", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the group has found camaraderie around the common bond of the user group .", "storylet_id": "215122"}], [{"original_text": "The group is pretty good sized and likes chasing the solution to problems. The solutions help them all.", "album_id": "14334", "photo_flickr_id": "394740", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43024", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the group is pretty good sized and likes chasing the solution to problems . the solutions help them all .", "storylet_id": "215123"}], [{"original_text": "However, the real payoff is not the solutions, it is the friendships that have been found.", "album_id": "14334", "photo_flickr_id": "394743", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43024", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , the real payoff is not the solutions , it is the friendships that have been found .", "storylet_id": "215124"}], [{"original_text": "The auditorium was packed for the ceremony that night.", "album_id": "17631", "photo_flickr_id": "694580", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43025", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the auditorium was packed for the ceremony that night .", "storylet_id": "215125"}], [{"original_text": "We were seated amongst some of our friends.", "album_id": "17631", "photo_flickr_id": "694605", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43025", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were seated amongst some of our friends .", "storylet_id": "215126"}], [{"original_text": "A buffet was set up on one end of the room.", "album_id": "17631", "photo_flickr_id": "694630", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43025", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a buffet was set up on one end of the room .", "storylet_id": "215127"}], [{"original_text": "The food was great.", "album_id": "17631", "photo_flickr_id": "694575", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43025", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food was great .", "storylet_id": "215128"}], [{"original_text": "Everyon had a great time!", "album_id": "17631", "photo_flickr_id": "694612", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43025", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyon had a great time !", "storylet_id": "215129"}], [{"original_text": "I was excited for the conference. It had been a long time since I'd seen anyone.", "album_id": "17631", "photo_flickr_id": "694580", "setting": "first-2-pick-and-tell", "worker_id": "X3WBANRE6TGS6UZ", "story_id": "43026", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was excited for the conference . it had been a long time since i 'd seen anyone .", "storylet_id": "215130"}], [{"original_text": "I was so happy to be placed at table seven along side my friends so we could catch up.", "album_id": "17631", "photo_flickr_id": "694605", "setting": "first-2-pick-and-tell", "worker_id": "X3WBANRE6TGS6UZ", "story_id": "43026", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was so happy to be placed at table seven along side my friends so we could catch up .", "storylet_id": "215131"}], [{"original_text": "And look who I found? I was so excited. We hadn't seen each other in so long.", "album_id": "17631", "photo_flickr_id": "694618", "setting": "first-2-pick-and-tell", "worker_id": "X3WBANRE6TGS6UZ", "story_id": "43026", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and look who i found ? i was so excited . we had n't seen each other in so long .", "storylet_id": "215132"}], [{"original_text": "The food was amazing. Such a variety.", "album_id": "17631", "photo_flickr_id": "694575", "setting": "first-2-pick-and-tell", "worker_id": "X3WBANRE6TGS6UZ", "story_id": "43026", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food was amazing . such a variety .", "storylet_id": "215133"}], [{"original_text": "They had this very yummy dessert. I would like to taste that again.", "album_id": "17631", "photo_flickr_id": "694585", "setting": "first-2-pick-and-tell", "worker_id": "X3WBANRE6TGS6UZ", "story_id": "43026", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had this very yummy dessert . i would like to taste that again .", "storylet_id": "215134"}], [{"original_text": "Yesterday, our school had a fund raiser dinner.", "album_id": "17631", "photo_flickr_id": "694580", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43027", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday , our school had a fund raiser dinner .", "storylet_id": "215135"}], [{"original_text": "All the teachers came to eat and donate.", "album_id": "17631", "photo_flickr_id": "694605", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43027", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the teachers came to eat and donate .", "storylet_id": "215136"}], [{"original_text": "There were long lines at the buffet.", "album_id": "17631", "photo_flickr_id": "694630", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43027", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were long lines at the buffet .", "storylet_id": "215137"}], [{"original_text": "When the food was served it looked delicious.", "album_id": "17631", "photo_flickr_id": "694575", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43027", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the food was served it looked delicious .", "storylet_id": "215138"}], [{"original_text": "The best part was that we all gave and gathered for a good cause.", "album_id": "17631", "photo_flickr_id": "694612", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43027", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part was that we all gave and gathered for a good cause .", "storylet_id": "215139"}], [{"original_text": "There was a sausage and fried chicken supper at the VFW Hall tonight.", "album_id": "17631", "photo_flickr_id": "694580", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43028", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a sausage and fried chicken supper at the vfw hall tonight .", "storylet_id": "215140"}], [{"original_text": "Many families came,", "album_id": "17631", "photo_flickr_id": "694605", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43028", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many families came ,", "storylet_id": "215141"}], [{"original_text": "as well as many young people.", "album_id": "17631", "photo_flickr_id": "694630", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43028", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as well as many young people .", "storylet_id": "215142"}], [{"original_text": "The food was delicious,", "album_id": "17631", "photo_flickr_id": "694575", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43028", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food was delicious ,", "storylet_id": "215143"}], [{"original_text": "and people really enjoyed visiting with their friends and neighbors.", "album_id": "17631", "photo_flickr_id": "694612", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43028", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and people really enjoyed visiting with their friends and neighbors .", "storylet_id": "215144"}], [{"original_text": "Our team party was held in the school auditorium this year.", "album_id": "17631", "photo_flickr_id": "694580", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "43029", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our team party was held in the school auditorium this year .", "storylet_id": "215145"}], [{"original_text": "The girls are both star athletes. The guy is a guest.", "album_id": "17631", "photo_flickr_id": "694605", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "43029", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girls are both star athletes . the guy is a guest .", "storylet_id": "215146"}], [{"original_text": "The buffet was impressive and most went back for seconds.", "album_id": "17631", "photo_flickr_id": "694630", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "43029", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the buffet was impressive and most went back for seconds .", "storylet_id": "215147"}], [{"original_text": "Our meal consisted of Polish food. Our town is predominately Polish.", "album_id": "17631", "photo_flickr_id": "694575", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "43029", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our meal consisted of polish food . our town is predominately polish .", "storylet_id": "215148"}], [{"original_text": "Here's most of the team at one table. Everyone wants a copy of this shot.", "album_id": "17631", "photo_flickr_id": "694612", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "43029", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's most of the team at one table . everyone wants a copy of this shot .", "storylet_id": "215149"}], [{"original_text": "We took a camping trip out to a dark forest.", "album_id": "41385", "photo_flickr_id": "1629139", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "43030", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a camping trip out to a dark forest .", "storylet_id": "215150"}], [{"original_text": "Some of us were scared, but I wasn't.", "album_id": "41385", "photo_flickr_id": "1629123", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "43030", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of us were scared , but i was n't .", "storylet_id": "215151"}], [{"original_text": "The scenery we captured was actually quite beautiful.", "album_id": "41385", "photo_flickr_id": "1629316", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "43030", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the scenery we captured was actually quite beautiful .", "storylet_id": "215152"}], [{"original_text": "At night, the sky was clear, not even any stars.", "album_id": "41385", "photo_flickr_id": "1629343", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "43030", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at night , the sky was clear , not even any stars .", "storylet_id": "215153"}], [{"original_text": "As it got darker, we started to go to sleep.", "album_id": "41385", "photo_flickr_id": "1629353", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "43030", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as it got darker , we started to go to sleep .", "storylet_id": "215154"}], [{"original_text": "The walk in the forest was something I definitely look forward to during this camping trip.", "album_id": "41385", "photo_flickr_id": "1629353", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "43031", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the walk in the forest was something i definitely look forward to during this camping trip .", "storylet_id": "215155"}], [{"original_text": "Despite a beautiful sight, everyone managed to get lost since it was dark outside.", "album_id": "41385", "photo_flickr_id": "1629101", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "43031", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "despite a beautiful sight , everyone managed to get lost since it was dark outside .", "storylet_id": "215156"}], [{"original_text": "Thankfully it was turning into day time.", "album_id": "41385", "photo_flickr_id": "1629316", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "43031", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "thankfully it was turning into day time .", "storylet_id": "215157"}], [{"original_text": "We approached the top of the hill to get a better view.", "album_id": "41385", "photo_flickr_id": "1629123", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "43031", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we approached the top of the hill to get a better view .", "storylet_id": "215158"}], [{"original_text": "and were able to see the area with all of the cabins.", "album_id": "41385", "photo_flickr_id": "1629365", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "43031", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and were able to see the area with all of the cabins .", "storylet_id": "215159"}], [{"original_text": "The wilderness is really quite when you go camping.", "album_id": "41385", "photo_flickr_id": "1629139", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43032", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wilderness is really quite when you go camping .", "storylet_id": "215160"}], [{"original_text": "We watched the sun go down.", "album_id": "41385", "photo_flickr_id": "1629123", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43032", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we watched the sun go down .", "storylet_id": "215161"}], [{"original_text": "The light faded over the hill.", "album_id": "41385", "photo_flickr_id": "1629316", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43032", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the light faded over the hill .", "storylet_id": "215162"}], [{"original_text": "The trees were just shadows on the horizon.", "album_id": "41385", "photo_flickr_id": "1629343", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43032", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the trees were just shadows on the horizon .", "storylet_id": "215163"}], [{"original_text": "The light was almost gone when we decided to go to bed.", "album_id": "41385", "photo_flickr_id": "1629353", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43032", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the light was almost gone when we decided to go to bed .", "storylet_id": "215164"}], [{"original_text": "I love photographing sunrise.", "album_id": "41385", "photo_flickr_id": "1629353", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43033", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love photographing sunrise .", "storylet_id": "215165"}], [{"original_text": "Waiting for the sun to break is incredible.", "album_id": "41385", "photo_flickr_id": "1629101", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43033", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "waiting for the sun to break is incredible .", "storylet_id": "215166"}], [{"original_text": "As light comes across the view sight. i think of how precious life is.", "album_id": "41385", "photo_flickr_id": "1629316", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43033", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as light comes across the view sight . i think of how precious life is .", "storylet_id": "215167"}], [{"original_text": "it starts to get brighter.", "album_id": "41385", "photo_flickr_id": "1629123", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43033", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it starts to get brighter .", "storylet_id": "215168"}], [{"original_text": "The day begins. A new day of hope and happiness.", "album_id": "41385", "photo_flickr_id": "1629365", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43033", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day begins . a new day of hope and happiness .", "storylet_id": "215169"}], [{"original_text": "The sky was an interesting shade of blue.", "album_id": "41385", "photo_flickr_id": "1629139", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43034", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sky was an interesting shade of blue .", "storylet_id": "215170"}], [{"original_text": "We could make out the silhouette of a tree.", "album_id": "41385", "photo_flickr_id": "1629123", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43034", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we could make out the silhouette of a tree .", "storylet_id": "215171"}], [{"original_text": "We looked at some more trees.", "album_id": "41385", "photo_flickr_id": "1629316", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43034", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we looked at some more trees .", "storylet_id": "215172"}], [{"original_text": "We tried to find an animal but couldn't.", "album_id": "41385", "photo_flickr_id": "1629343", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43034", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we tried to find an animal but could n't .", "storylet_id": "215173"}], [{"original_text": "It got too dark for us to see anything.", "album_id": "41385", "photo_flickr_id": "1629353", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43034", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it got too dark for us to see anything .", "storylet_id": "215174"}], [{"original_text": "I had a great Christmas this year. Mom and Santa made sure I woke up to what seemed to me, the most perfect tree!", "album_id": "560450", "photo_flickr_id": "1443353", "setting": "first-2-pick-and-tell", "worker_id": "AV8IGIXGR3ZJQLM", "story_id": "43035", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great christmas this year . mom and location made sure i woke up to what seemed to me , the most perfect tree !", "storylet_id": "215175"}], [{"original_text": "As I came running down the stairs I could see my stocking had fallen from it's spot I had taped it to on our fake mantle and gotten filled with many special goodies. ", "album_id": "560450", "photo_flickr_id": "1443461", "setting": "first-2-pick-and-tell", "worker_id": "AV8IGIXGR3ZJQLM", "story_id": "43035", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as i came running down the stairs i could see my stocking had fallen from it 's spot i had taped it to on our fake mantle and gotten filled with many special goodies .", "storylet_id": "215176"}], [{"original_text": "Almost all of the toys I had on my list now lie underneath our stupendous tree. ", "album_id": "560450", "photo_flickr_id": "1443448", "setting": "first-2-pick-and-tell", "worker_id": "AV8IGIXGR3ZJQLM", "story_id": "43035", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "almost all of the toys i had on my list now lie underneath our stupendous tree .", "storylet_id": "215177"}], [{"original_text": "My dog buster did not seem to care and was quite bored by the whole scene.", "album_id": "560450", "photo_flickr_id": "1443455", "setting": "first-2-pick-and-tell", "worker_id": "AV8IGIXGR3ZJQLM", "story_id": "43035", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my dog buster did not seem to care and was quite bored by the whole scene .", "storylet_id": "215178"}], [{"original_text": "So, what else could I do but put him to work and have him give me office chair rides on the patio ice? Now how to get him to agree and not have to drop my hockey stick is another thing altogether. ", "album_id": "560450", "photo_flickr_id": "1443555", "setting": "first-2-pick-and-tell", "worker_id": "AV8IGIXGR3ZJQLM", "story_id": "43035", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so , what else could i do but put him to work and have him give me office chair rides on the patio ice ? now how to get him to agree and not have to drop my hockey stick is another thing altogether .", "storylet_id": "215179"}], [{"original_text": "Our christmas tree....a little like the Charlie Brown tree.", "album_id": "560450", "photo_flickr_id": "1443353", "setting": "first-2-pick-and-tell", "worker_id": "U1OXJ7XBLAETPNH", "story_id": "43036", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our christmas tree ... .a little like the [male] brown tree .", "storylet_id": "215180"}], [{"original_text": "Santa knows every little boy loves fire trucks.", "album_id": "560450", "photo_flickr_id": "1443448", "setting": "first-2-pick-and-tell", "worker_id": "U1OXJ7XBLAETPNH", "story_id": "43036", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "location knows every little boy loves fire trucks .", "storylet_id": "215181"}], [{"original_text": "Don't know why, but Sparky doesn't seem quite as excited as the rest of us.", "album_id": "560450", "photo_flickr_id": "1443455", "setting": "first-2-pick-and-tell", "worker_id": "U1OXJ7XBLAETPNH", "story_id": "43036", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "do n't know why , but sparky does n't seem quite as excited as the rest of us .", "storylet_id": "215182"}], [{"original_text": "All the stockings were stuffed to the brim.", "album_id": "560450", "photo_flickr_id": "1443461", "setting": "first-2-pick-and-tell", "worker_id": "U1OXJ7XBLAETPNH", "story_id": "43036", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all the stockings were stuffed to the brim .", "storylet_id": "215183"}], [{"original_text": "Outside we prepared for our annual chair hockey event.", "album_id": "560450", "photo_flickr_id": "1443565", "setting": "first-2-pick-and-tell", "worker_id": "U1OXJ7XBLAETPNH", "story_id": "43036", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "outside we prepared for our annual chair hockey event .", "storylet_id": "215184"}], [{"original_text": "Last year was Jim's first Christmas in his new house.", "album_id": "560450", "photo_flickr_id": "1443353", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43037", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last year was [male] 's first christmas in his new house .", "storylet_id": "215185"}], [{"original_text": "He got so many presents he didn't know what to play with.", "album_id": "560450", "photo_flickr_id": "1443448", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43037", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he got so many presents he did n't know what to play with .", "storylet_id": "215186"}], [{"original_text": "He was grateful for his blessings and all his gifts.", "album_id": "560450", "photo_flickr_id": "1443455", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43037", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was grateful for his blessings and all his gifts .", "storylet_id": "215187"}], [{"original_text": "He realized that the gifts were just things.", "album_id": "560450", "photo_flickr_id": "1443461", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43037", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he realized that the gifts were just things .", "storylet_id": "215188"}], [{"original_text": "The most important thing blessing was being with his family.", "album_id": "560450", "photo_flickr_id": "1443565", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43037", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the most important thing blessing was being with his family .", "storylet_id": "215189"}], [{"original_text": "I wasn't happy about the discount tree my brother got for Christmas. ", "album_id": "560450", "photo_flickr_id": "1443353", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "43038", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was n't happy about the discount tree my brother got for christmas .", "storylet_id": "215190"}], [{"original_text": "At least the toy truck wasn't made in some factory in China. ", "album_id": "560450", "photo_flickr_id": "1443448", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "43038", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at least the toy truck was n't made in some factory in location .", "storylet_id": "215191"}], [{"original_text": "Though the sight of the tree didn't please our dog. She just slept at its gaze. ", "album_id": "560450", "photo_flickr_id": "1443455", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "43038", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "though the sight of the tree did n't please our dog . she just slept at its gaze .", "storylet_id": "215192"}], [{"original_text": "I'm not even sure why he got my nephew a book of Rupert, he doesn't even like Rubert. ", "album_id": "560450", "photo_flickr_id": "1443461", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "43038", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'm not even sure why he got my nephew a book of rupert , he does n't even like rubert .", "storylet_id": "215193"}], [{"original_text": "And now he's crying outside. What a lousy Christmas.", "album_id": "560450", "photo_flickr_id": "1443565", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "43038", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and now he 's crying outside . what a lousy christmas .", "storylet_id": "215194"}], [{"original_text": "The presents were under the tree. ", "album_id": "560450", "photo_flickr_id": "1443353", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43039", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the presents were under the tree .", "storylet_id": "215195"}], [{"original_text": "The stockings were stuffed with care. ", "album_id": "560450", "photo_flickr_id": "1443461", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43039", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the stockings were stuffed with care .", "storylet_id": "215196"}], [{"original_text": "The Tonka Truck was ready for its new owner. ", "album_id": "560450", "photo_flickr_id": "1443448", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43039", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the organization truck was ready for its new owner .", "storylet_id": "215197"}], [{"original_text": "The dog was tired out by all the activity. ", "album_id": "560450", "photo_flickr_id": "1443455", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43039", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dog was tired out by all the activity .", "storylet_id": "215198"}], [{"original_text": "The boy was very excited to go outside and play with his new toys. ", "album_id": "560450", "photo_flickr_id": "1443555", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43039", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boy was very excited to go outside and play with his new toys .", "storylet_id": "215199"}], [{"original_text": "The hiking trail was filled with beautiful trees. ", "album_id": "58685", "photo_flickr_id": "2336137", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43040", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the hiking trail was filled with beautiful trees .", "storylet_id": "215200"}], [{"original_text": "The water was so clear, you could see the right through it.", "album_id": "58685", "photo_flickr_id": "2336267", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43040", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water was so clear , you could see the right through it .", "storylet_id": "215201"}], [{"original_text": "She was having a wonderful day.", "album_id": "58685", "photo_flickr_id": "2336270", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43040", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was having a wonderful day .", "storylet_id": "215202"}], [{"original_text": "She was very proud that she could walk on the plank.", "album_id": "58685", "photo_flickr_id": "2336492", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43040", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was very proud that she could walk on the plank .", "storylet_id": "215203"}], [{"original_text": "Halfway through the hike they took a break.", "album_id": "58685", "photo_flickr_id": "2336629", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43040", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "halfway through the hike they took a break .", "storylet_id": "215204"}], [{"original_text": "A forest can be a magical place if you look hard enough.", "album_id": "58685", "photo_flickr_id": "2336137", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "43041", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a forest can be a magical place if you look hard enough .", "storylet_id": "215205"}], [{"original_text": "Take a walk along a forest path to see what you can see.", "album_id": "58685", "photo_flickr_id": "2336494", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "43041", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "take a walk along a forest path to see what you can see .", "storylet_id": "215206"}], [{"original_text": "You might see a bright spot of green moss.", "album_id": "58685", "photo_flickr_id": "2336493", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "43041", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you might see a bright spot of green moss .", "storylet_id": "215207"}], [{"original_text": "Or enjoy the reflection of light on some large fungus in fancy shapes.", "album_id": "58685", "photo_flickr_id": "2336497", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "43041", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "or enjoy the reflection of light on some large fungus in fancy shapes .", "storylet_id": "215208"}], [{"original_text": "In a magical forest, you might even see a tree yawn!", "album_id": "58685", "photo_flickr_id": "2336630", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "43041", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in a magical forest , you might even see a tree yawn !", "storylet_id": "215209"}], [{"original_text": "As we were hiking on our trail, I could not help but take a picture of this gorgeous tree. ", "album_id": "58685", "photo_flickr_id": "2336137", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "43042", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as we were hiking on our trail , i could not help but take a picture of this gorgeous tree .", "storylet_id": "215210"}], [{"original_text": "The way the ants formulated the colony, it look like a wok of art. ", "album_id": "58685", "photo_flickr_id": "2336267", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "43042", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the way the ants formulated the colony , it look like a wok of art .", "storylet_id": "215211"}], [{"original_text": "This is a picture of my hiking partner walking across the bridge. ", "album_id": "58685", "photo_flickr_id": "2336270", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "43042", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of my hiking partner walking across the bridge .", "storylet_id": "215212"}], [{"original_text": "My friend was scared to take this picture, as she felt I could fall in the hole. ", "album_id": "58685", "photo_flickr_id": "2336492", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "43042", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friend was scared to take this picture , as she felt i could fall in the hole .", "storylet_id": "215213"}], [{"original_text": "As we reached the end of the hike, we took a picture of our accomplishment. ", "album_id": "58685", "photo_flickr_id": "2336629", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "43042", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as we reached the end of the hike , we took a picture of our accomplishment .", "storylet_id": "215214"}], [{"original_text": "This is the first place we visited.", "album_id": "58685", "photo_flickr_id": "2336137", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "43043", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the first place we visited .", "storylet_id": "215215"}], [{"original_text": "There was a turtle hidden under there and surprised the kids.", "album_id": "58685", "photo_flickr_id": "2336267", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "43043", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a turtle hidden under there and surprised the kids .", "storylet_id": "215216"}], [{"original_text": "The boy was happy on the bridge.", "album_id": "58685", "photo_flickr_id": "2336270", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "43043", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boy was happy on the bridge .", "storylet_id": "215217"}], [{"original_text": "Had to keep balance on the wood here.", "album_id": "58685", "photo_flickr_id": "2336492", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "43043", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "had to keep balance on the wood here .", "storylet_id": "215218"}], [{"original_text": "The family was relaxing at the end of the day.", "album_id": "58685", "photo_flickr_id": "2336629", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "43043", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family was relaxing at the end of the day .", "storylet_id": "215219"}], [{"original_text": "i got lost in the woods last week.", "album_id": "58685", "photo_flickr_id": "2336137", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43044", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got lost in the woods last week .", "storylet_id": "215220"}], [{"original_text": "i followed a path and ended up in nowhere.", "album_id": "58685", "photo_flickr_id": "2336494", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43044", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i followed a path and ended up in nowhere .", "storylet_id": "215221"}], [{"original_text": "i started taking pictures of all the trees.", "album_id": "58685", "photo_flickr_id": "2336493", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43044", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i started taking pictures of all the trees .", "storylet_id": "215222"}], [{"original_text": "and even found mushrooms.", "album_id": "58685", "photo_flickr_id": "2336497", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43044", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and even found mushrooms .", "storylet_id": "215223"}], [{"original_text": "there was a swamp so i turned back and finally found my way home.", "album_id": "58685", "photo_flickr_id": "2336630", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43044", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a swamp so i turned back and finally found my way home .", "storylet_id": "215224"}], [{"original_text": "A family was driving home.", "album_id": "60622", "photo_flickr_id": "2409923", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43045", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a family was driving home .", "storylet_id": "215225"}], [{"original_text": "Since it was cold that day, the mother made tea and coffee for the fmaily.", "album_id": "60622", "photo_flickr_id": "2409898", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43045", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "since it was cold that day , the mother made tea and coffee for the fmaily .", "storylet_id": "215226"}], [{"original_text": "She then started to cook some sausages.", "album_id": "60622", "photo_flickr_id": "2414768", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43045", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she then started to cook some sausages .", "storylet_id": "215227"}], [{"original_text": "She made a great sausage and rice dish for her family.", "album_id": "60622", "photo_flickr_id": "2409975", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43045", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she made a great sausage and rice dish for her family .", "storylet_id": "215228"}], [{"original_text": "After dinner, she baked some pies for dessert.", "album_id": "60622", "photo_flickr_id": "2409913", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43045", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after dinner , she baked some pies for dessert .", "storylet_id": "215229"}], [{"original_text": "Starting the day off going to work and getting off to go back home.", "album_id": "60622", "photo_flickr_id": "2409923", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43046", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "starting the day off going to work and getting off to go back home .", "storylet_id": "215230"}], [{"original_text": "The finishing touch of a prepared meal.", "album_id": "60622", "photo_flickr_id": "2409975", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43046", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the finishing touch of a prepared meal .", "storylet_id": "215231"}], [{"original_text": "In the beginning the raw meat before cooked,sliced and placed on a plate. ", "album_id": "60622", "photo_flickr_id": "2414768", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43046", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in the beginning the raw meat before cooked , sliced and placed on a plate .", "storylet_id": "215232"}], [{"original_text": "A quick look at tv and some relaxing.", "album_id": "60622", "photo_flickr_id": "2414816", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43046", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a quick look at tv and some relaxing .", "storylet_id": "215233"}], [{"original_text": "The doctor says have a glass of wine is good for the heart, goodnight.", "album_id": "60622", "photo_flickr_id": "2414825", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43046", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the doctor says have a glass of wine is good for the heart , goodnight .", "storylet_id": "215234"}], [{"original_text": "We drove to my mom's house for dinner. ", "album_id": "60622", "photo_flickr_id": "2409923", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43047", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we drove to my mom 's house for dinner .", "storylet_id": "215235"}], [{"original_text": "She insisted on us having tea. ", "album_id": "60622", "photo_flickr_id": "2409898", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43047", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she insisted on us having tea .", "storylet_id": "215236"}], [{"original_text": "We cooked up some fresh sausages. ", "album_id": "60622", "photo_flickr_id": "2414768", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43047", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we cooked up some fresh sausages .", "storylet_id": "215237"}], [{"original_text": "Mom made some rice to eat the sausages with. ", "album_id": "60622", "photo_flickr_id": "2409975", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43047", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom made some rice to eat the sausages with .", "storylet_id": "215238"}], [{"original_text": "Dad was upset that we didn't cook something in his trusty broiler. ", "album_id": "60622", "photo_flickr_id": "2409913", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43047", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dad was upset that we did n't cook something in his trusty broiler .", "storylet_id": "215239"}], [{"original_text": "This is a picture of a road.", "album_id": "60622", "photo_flickr_id": "2409923", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "43048", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a road .", "storylet_id": "215240"}], [{"original_text": "This is a picture of a drink.", "album_id": "60622", "photo_flickr_id": "2409898", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "43048", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of a drink .", "storylet_id": "215241"}], [{"original_text": "This is a picture of sausage.", "album_id": "60622", "photo_flickr_id": "2414768", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "43048", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of sausage .", "storylet_id": "215242"}], [{"original_text": "This is a picture of a dinner plate.", "album_id": "60622", "photo_flickr_id": "2409975", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "43048", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of a dinner plate .", "storylet_id": "215243"}], [{"original_text": "This is a picture of an oven.", "album_id": "60622", "photo_flickr_id": "2409913", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "43048", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of an oven .", "storylet_id": "215244"}], [{"original_text": "Today, we arrived back home.", "album_id": "60622", "photo_flickr_id": "2409923", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43049", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , we arrived back home .", "storylet_id": "215245"}], [{"original_text": "We poured coffee into our cups.", "album_id": "60622", "photo_flickr_id": "2409898", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43049", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we poured coffee into our cups .", "storylet_id": "215246"}], [{"original_text": "We cooked a bunch of sausages.", "album_id": "60622", "photo_flickr_id": "2414768", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43049", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we cooked a bunch of sausages .", "storylet_id": "215247"}], [{"original_text": "We even made a dish out of rice and meat.", "album_id": "60622", "photo_flickr_id": "2409975", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43049", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even made a dish out of rice and meat .", "storylet_id": "215248"}], [{"original_text": "Lastly, this was the oven we used to prepare our food.", "album_id": "60622", "photo_flickr_id": "2409913", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43049", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , this was the oven we used to prepare our food .", "storylet_id": "215249"}], [{"original_text": "She was amazed at how red the room was. ", "album_id": "73269", "photo_flickr_id": "2937260", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "43050", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she was amazed at how red the room was .", "storylet_id": "215250"}], [{"original_text": "He was not amused about her observations. ", "album_id": "73269", "photo_flickr_id": "2937251", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "43050", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was not amused about her observations .", "storylet_id": "215251"}], [{"original_text": "There third friend suggested they drink.", "album_id": "73269", "photo_flickr_id": "2937256", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "43050", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there third friend suggested they drink .", "storylet_id": "215252"}], [{"original_text": "The beautiful scenery was amazing.", "album_id": "73269", "photo_flickr_id": "2934944", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "43050", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beautiful scenery was amazing .", "storylet_id": "215253"}], [{"original_text": "Fun was had by all the friend. ", "album_id": "73269", "photo_flickr_id": "2933839", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "43050", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fun was had by all the friend .", "storylet_id": "215254"}], [{"original_text": "My 30th birthday celebration. What a blast ", "album_id": "73269", "photo_flickr_id": "2937256", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "43051", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my 30th birthday celebration . what a blast", "storylet_id": "215255"}], [{"original_text": "This is me pretending I can sing ", "album_id": "73269", "photo_flickr_id": "2936117", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "43051", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is me pretending i can sing", "storylet_id": "215256"}], [{"original_text": "I am sitting here pretending I'm not drunk . ", "album_id": "73269", "photo_flickr_id": "2936093", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "43051", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i am sitting here pretending i 'm not drunk .", "storylet_id": "215257"}], [{"original_text": "It was shot o clock in this photo ", "album_id": "73269", "photo_flickr_id": "2934950", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "43051", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was shot o clock in this photo", "storylet_id": "215258"}], [{"original_text": "I couldn't get up in this photo so I just sat and chatted ", "album_id": "73269", "photo_flickr_id": "2933839", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "43051", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i could n't get up in this photo so i just sat and chatted", "storylet_id": "215259"}], [{"original_text": "Oh boy, what was in that cocktail, everything has this really red, blood-like hue? I knew I shouldn't have accepted a drink from this guy.", "album_id": "73269", "photo_flickr_id": "2937256", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "43052", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "oh boy , what was in that cocktail , everything has this really red , blood-like hue ? i knew i should n't have accepted a drink from this guy .", "storylet_id": "215260"}], [{"original_text": "Eww, now what's he doing? Put your tongue away sir, you are certainly not my type. Wait, are those fangs?", "album_id": "73269", "photo_flickr_id": "2936117", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "43052", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "eww , now what 's he doing ? put your tongue away sir , you are certainly not my type . wait , are those fangs ?", "storylet_id": "215261"}], [{"original_text": "I'm feeling kind of dizzy and these guys are looking like food. Oh geez, what did I drink? ", "album_id": "73269", "photo_flickr_id": "2936093", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "43052", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i 'm feeling kind of dizzy and these guys are looking like food . oh geez , what did i drink ?", "storylet_id": "215262"}], [{"original_text": "Now this guy's drinking it too. It looks like...like blood! What have I got myself in to here? ", "album_id": "73269", "photo_flickr_id": "2934950", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "43052", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now this guy 's drinking it too . it looks like ... like blood ! what have i got myself in to here ?", "storylet_id": "215263"}], [{"original_text": "Oh well, if you can't beat them, join them. Here's to eternity guys. Cheers!", "album_id": "73269", "photo_flickr_id": "2933839", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "43052", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "oh well , if you ca n't beat them , join them . here 's to eternity guys . cheers !", "storylet_id": "215264"}], [{"original_text": "We all needed a break from the stress of holidays and work, so my friends and I went out to the local bar.", "album_id": "73269", "photo_flickr_id": "2937260", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "43053", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all needed a break from the stress of holidays and work , so my friends and i went out to the local bar .", "storylet_id": "215265"}], [{"original_text": "I told my buddy a joke, but I don't think he found it funny.", "album_id": "73269", "photo_flickr_id": "2937251", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "43053", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i told my buddy a joke , but i do n't think he found it funny .", "storylet_id": "215266"}], [{"original_text": "We were goofing around a lot!", "album_id": "73269", "photo_flickr_id": "2937256", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "43053", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were goofing around a lot !", "storylet_id": "215267"}], [{"original_text": "The holiday decor was pretty neat, ribbons and lights.", "album_id": "73269", "photo_flickr_id": "2934944", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "43053", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the holiday decor was pretty neat , ribbons and lights .", "storylet_id": "215268"}], [{"original_text": "After a few more beers, I think my jokes were going over better!", "album_id": "73269", "photo_flickr_id": "2933839", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "43053", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a few more beers , i think my jokes were going over better !", "storylet_id": "215269"}], [{"original_text": "On graduation night, we all headed down to the Red Room for some drinks and good times.", "album_id": "73269", "photo_flickr_id": "2937256", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "43054", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on graduation night , we all headed down to the red room for some drinks and good times .", "storylet_id": "215270"}], [{"original_text": "After imbibing an incredible amount of alcohol, we decided that we would solve all the world's problems.", "album_id": "73269", "photo_flickr_id": "2936117", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "43054", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after imbibing an incredible amount of alcohol , we decided that we would solve all the world 's problems .", "storylet_id": "215271"}], [{"original_text": "Famine, disease and war were the topics of discussion.", "album_id": "73269", "photo_flickr_id": "2936093", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "43054", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "famine , disease and war were the topics of discussion .", "storylet_id": "215272"}], [{"original_text": "The more we drank, the better we became at figuring out the right course of action.", "album_id": "73269", "photo_flickr_id": "2934950", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "43054", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the more we drank , the better we became at figuring out the right course of action .", "storylet_id": "215273"}], [{"original_text": "By the end of the night, we concluded that we would offer our solutions to the United Nations in the coming days. We drank some more to celebrate our achievements.", "album_id": "73269", "photo_flickr_id": "2933839", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "43054", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of the night , we concluded that we would offer our solutions to the organization organization in the coming days . we drank some more to celebrate our achievements .", "storylet_id": "215274"}], [{"original_text": "We are preparing the cake for Matt's birthday surprise.", "album_id": "102806", "photo_flickr_id": "4076660", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43055", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are preparing the cake for [male] 's birthday surprise .", "storylet_id": "215275"}], [{"original_text": "He finally arrives. Even if he was an hour late.", "album_id": "102806", "photo_flickr_id": "4076672", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43055", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he finally arrives . even if he was an hour late .", "storylet_id": "215276"}], [{"original_text": "He blows out his candles and makes a wish.", "album_id": "102806", "photo_flickr_id": "4076798", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43055", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he blows out his candles and makes a wish .", "storylet_id": "215277"}], [{"original_text": "We made our own birthday hats.", "album_id": "102806", "photo_flickr_id": "4077072", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43055", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we made our own birthday hats .", "storylet_id": "215278"}], [{"original_text": "The party ended with some great wine and awesome friends.", "album_id": "102806", "photo_flickr_id": "4077460", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43055", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the party ended with some great wine and awesome friends .", "storylet_id": "215279"}], [{"original_text": "All the food I prepared for the party ", "album_id": "102806", "photo_flickr_id": "4076660", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "43056", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all the food i prepared for the party", "storylet_id": "215280"}], [{"original_text": "The gangs all here for the birthday celebration ", "album_id": "102806", "photo_flickr_id": "4076672", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "43056", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the gangs all here for the birthday celebration", "storylet_id": "215281"}], [{"original_text": "This is us just chatting away about old memories ", "album_id": "102806", "photo_flickr_id": "4076682", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "43056", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is us just chatting away about old memories", "storylet_id": "215282"}], [{"original_text": "Jeff trying to blow out his candles after a few shots of Patrone ", "album_id": "102806", "photo_flickr_id": "4076798", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "43056", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] trying to blow out his candles after a few shots of patrone", "storylet_id": "215283"}], [{"original_text": "Stephen had to carry his girlfriend out that night !", "album_id": "102806", "photo_flickr_id": "4076650", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "43056", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] had to carry his girlfriend out that night !", "storylet_id": "215284"}], [{"original_text": "They decided they would make something special. ", "album_id": "102806", "photo_flickr_id": "4076660", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43057", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they decided they would make something special .", "storylet_id": "215285"}], [{"original_text": "Friends gathered to the suprise. ", "album_id": "102806", "photo_flickr_id": "4076672", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43057", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "friends gathered to the suprise .", "storylet_id": "215286"}], [{"original_text": "The table was ready. ", "album_id": "102806", "photo_flickr_id": "4076682", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43057", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the table was ready .", "storylet_id": "215287"}], [{"original_text": "He had no idea about the surprise birthday party. ", "album_id": "102806", "photo_flickr_id": "4076798", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43057", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he had no idea about the surprise birthday party .", "storylet_id": "215288"}], [{"original_text": "His daughter jumped into his arms. ", "album_id": "102806", "photo_flickr_id": "4076650", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43057", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his daughter jumped into his arms .", "storylet_id": "215289"}], [{"original_text": "I decided to cook dinner for my friends last night.", "album_id": "102806", "photo_flickr_id": "4076660", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43058", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to cook dinner for my friends last night .", "storylet_id": "215290"}], [{"original_text": "I had all of my friends over for a party.", "album_id": "102806", "photo_flickr_id": "4076672", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43058", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had all of my friends over for a party .", "storylet_id": "215291"}], [{"original_text": "We even had a cake!", "album_id": "102806", "photo_flickr_id": "4076798", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43058", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even had a cake !", "storylet_id": "215292"}], [{"original_text": "We drank and laughed and had a great time.", "album_id": "102806", "photo_flickr_id": "4077072", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43058", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we drank and laughed and had a great time .", "storylet_id": "215293"}], [{"original_text": "Everyone really enjoyed themselves and it was a great night.", "album_id": "102806", "photo_flickr_id": "4077460", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43058", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone really enjoyed themselves and it was a great night .", "storylet_id": "215294"}], [{"original_text": "Had a little get together for the birthday.", "album_id": "102806", "photo_flickr_id": "4076660", "setting": "last-3-pick-old-and-tell", "worker_id": "A4UVS4ESHEBWPZ3", "story_id": "43059", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "had a little get together for the birthday .", "storylet_id": "215295"}], [{"original_text": "Just us and a few of our closest friends.", "album_id": "102806", "photo_flickr_id": "4076672", "setting": "last-3-pick-old-and-tell", "worker_id": "A4UVS4ESHEBWPZ3", "story_id": "43059", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "just us and a few of our closest friends .", "storylet_id": "215296"}], [{"original_text": "Good food and good people. Cozy and pleasant.", "album_id": "102806", "photo_flickr_id": "4076682", "setting": "last-3-pick-old-and-tell", "worker_id": "A4UVS4ESHEBWPZ3", "story_id": "43059", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "good food and good people . cozy and pleasant .", "storylet_id": "215297"}], [{"original_text": "Can you guess what i wished for?", "album_id": "102806", "photo_flickr_id": "4076798", "setting": "last-3-pick-old-and-tell", "worker_id": "A4UVS4ESHEBWPZ3", "story_id": "43059", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "can you guess what i wished for ?", "storylet_id": "215298"}], [{"original_text": "Yes, basically that. I suppose I should've wished for something new...", "album_id": "102806", "photo_flickr_id": "4076650", "setting": "last-3-pick-old-and-tell", "worker_id": "A4UVS4ESHEBWPZ3", "story_id": "43059", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "yes , basically that . i suppose i should 've wished for something new ...", "storylet_id": "215299"}], [{"original_text": "Okay pooch, I've got a blind date tonight. How do I look?", "album_id": "72157594452459464", "photo_flickr_id": "341323276", "setting": "first-2-pick-and-tell", "worker_id": "27S92S4KLU3MVCC", "story_id": "43060", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "okay pooch , i 've got a blind date tonight . how do i look ?", "storylet_id": "215300"}], [{"original_text": "Here comes your blind date, and if I say so myself, I did good, didn't I?", "album_id": "72157594452459464", "photo_flickr_id": "341324271", "setting": "first-2-pick-and-tell", "worker_id": "27S92S4KLU3MVCC", "story_id": "43060", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here comes your blind date , and if i say so myself , i did good , did n't i ?", "storylet_id": "215301"}], [{"original_text": "Oh my gosh! Eric you're my blind date?", "album_id": "72157594452459464", "photo_flickr_id": "341324750", "setting": "first-2-pick-and-tell", "worker_id": "27S92S4KLU3MVCC", "story_id": "43060", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "oh my gosh ! [male] you 're my blind date ?", "storylet_id": "215302"}], [{"original_text": "Oh no! Emily never gave me a last name. All she said was Kim!", "album_id": "72157594452459464", "photo_flickr_id": "341325014", "setting": "first-2-pick-and-tell", "worker_id": "27S92S4KLU3MVCC", "story_id": "43060", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "oh no ! [female] never gave me a last name . all she said was [female] !", "storylet_id": "215303"}], [{"original_text": "Well at least we know each other, and there's nothing like having a date with your next door neighbor!", "album_id": "72157594452459464", "photo_flickr_id": "341325388", "setting": "first-2-pick-and-tell", "worker_id": "27S92S4KLU3MVCC", "story_id": "43060", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "well at least we know each other , and there 's nothing like having a date with your next door neighbor !", "storylet_id": "215304"}], [{"original_text": "At our family party it was good to see relatives I had not seen in many years.", "album_id": "72157594452459464", "photo_flickr_id": "341323166", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43061", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at our family party it was good to see relatives i had not seen in many years .", "storylet_id": "215305"}], [{"original_text": "I even got to see my old dog that lives with my parents now.", "album_id": "72157594452459464", "photo_flickr_id": "341323276", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43061", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i even got to see my old dog that lives with my parents now .", "storylet_id": "215306"}], [{"original_text": "My sister and cousin were chatting throughout the night over drinks.", "album_id": "72157594452459464", "photo_flickr_id": "341324271", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43061", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my sister and cousin were chatting throughout the night over drinks .", "storylet_id": "215307"}], [{"original_text": "My brother and his friend showed up for a few drinks as well.", "album_id": "72157594452459464", "photo_flickr_id": "341324897", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43061", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my brother and his friend showed up for a few drinks as well .", "storylet_id": "215308"}], [{"original_text": "I had a nice meal and some drinks to cap off a great night.", "album_id": "72157594452459464", "photo_flickr_id": "341325388", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43061", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a nice meal and some drinks to cap off a great night .", "storylet_id": "215309"}], [{"original_text": "Hanging out with my friends this past Tuesday was fun.", "album_id": "72157594452459464", "photo_flickr_id": "341323276", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "43062", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hanging out with my friends this past tuesday was fun .", "storylet_id": "215310"}], [{"original_text": "My girlfriend and her sister met me at my apartment to hang out.", "album_id": "72157594452459464", "photo_flickr_id": "341324271", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "43062", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my girlfriend and her sister met me at my apartment to hang out .", "storylet_id": "215311"}], [{"original_text": "We told a lot of funny stories about each other.", "album_id": "72157594452459464", "photo_flickr_id": "341324750", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "43062", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we told a lot of funny stories about each other .", "storylet_id": "215312"}], [{"original_text": "During the middle of their visit, they surprised me with a birthday cake.", "album_id": "72157594452459464", "photo_flickr_id": "341325014", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "43062", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "during the middle of their visit , they surprised me with a birthday cake .", "storylet_id": "215313"}], [{"original_text": "Suffice it to say, I was extremely happy.", "album_id": "72157594452459464", "photo_flickr_id": "341325388", "setting": "last-3-pick-old-and-tell", "worker_id": "LSU2NKRU6I5MX41", "story_id": "43062", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "suffice it to say , i was extremely happy .", "storylet_id": "215314"}], [{"original_text": "It was my best mates Birthday.", "album_id": "72157594452459464", "photo_flickr_id": "341323166", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43063", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was my best mates birthday .", "storylet_id": "215315"}], [{"original_text": "He was happy that so many people showed up to help him celebrate it.", "album_id": "72157594452459464", "photo_flickr_id": "341323276", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43063", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was happy that so many people showed up to help him celebrate it .", "storylet_id": "215316"}], [{"original_text": "There were friends from all over.", "album_id": "72157594452459464", "photo_flickr_id": "341324271", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43063", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were friends from all over .", "storylet_id": "215317"}], [{"original_text": "Mostly we just sat around and talked while enjoying some drinks.", "album_id": "72157594452459464", "photo_flickr_id": "341324897", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43063", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mostly we just sat around and talked while enjoying some drinks .", "storylet_id": "215318"}], [{"original_text": "Everyone had a great time and a great party.", "album_id": "72157594452459464", "photo_flickr_id": "341325388", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43063", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time and a great party .", "storylet_id": "215319"}], [{"original_text": "It is this man's birthday and his friends decided to take him out to celebrate.", "album_id": "72157594452459464", "photo_flickr_id": "341323276", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43064", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is this man 's birthday and his friends decided to take him out to celebrate .", "storylet_id": "215320"}], [{"original_text": "They smile for the camera because they have a surprise for him.", "album_id": "72157594452459464", "photo_flickr_id": "341324271", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43064", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they smile for the camera because they have a surprise for him .", "storylet_id": "215321"}], [{"original_text": "The one friend is slightly annoyed because his cake did not come out yet.", "album_id": "72157594452459464", "photo_flickr_id": "341324750", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43064", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the one friend is slightly annoyed because his cake did not come out yet .", "storylet_id": "215322"}], [{"original_text": "When his cake comes out he is very excited.", "album_id": "72157594452459464", "photo_flickr_id": "341325014", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43064", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when his cake comes out he is very excited .", "storylet_id": "215323"}], [{"original_text": "They all smile because their surprise is complete.", "album_id": "72157594452459464", "photo_flickr_id": "341325388", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43064", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all smile because their surprise is complete .", "storylet_id": "215324"}], [{"original_text": "The cakes are made and decorations are prepared", "album_id": "72157623129800106", "photo_flickr_id": "4240786317", "setting": "first-2-pick-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "43065", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cakes are made and decorations are prepared", "storylet_id": "215325"}], [{"original_text": "The centerpiece cake looks magnificent", "album_id": "72157623129800106", "photo_flickr_id": "4240786995", "setting": "first-2-pick-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "43065", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the centerpiece cake looks magnificent", "storylet_id": "215326"}], [{"original_text": "The couple of the house is seated for the celebration. ", "album_id": "72157623129800106", "photo_flickr_id": "4241560666", "setting": "first-2-pick-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "43065", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the couple of the house is seated for the celebration .", "storylet_id": "215327"}], [{"original_text": "The grandmother joins them. ", "album_id": "72157623129800106", "photo_flickr_id": "4240789169", "setting": "first-2-pick-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "43065", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the grandmother joins them .", "storylet_id": "215328"}], [{"original_text": "The gifts are laid out too. ", "album_id": "72157623129800106", "photo_flickr_id": "4241567742", "setting": "first-2-pick-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "43065", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the gifts are laid out too .", "storylet_id": "215329"}], [{"original_text": "This was the first time I had seen my grandmother in ages, and she really went all out in celebration!", "album_id": "72157623129800106", "photo_flickr_id": "4241563300", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "43066", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the first time i had seen my grandmother in ages , and she really went all out in celebration !", "storylet_id": "215330"}], [{"original_text": "Here's me looking stoic, over her combined birthday/Christmas cakes.", "album_id": "72157623129800106", "photo_flickr_id": "4240793569", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "43066", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's me looking stoic , over her combined birthday/christmas cakes .", "storylet_id": "215331"}], [{"original_text": "This beautiful, home-made lamp was my going away present, when she presented it to me, I almost shrieked with joy.", "album_id": "72157623129800106", "photo_flickr_id": "4240794971", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "43066", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this beautiful , home-made lamp was my going away present , when she presented it to me , i almost shrieked with joy .", "storylet_id": "215332"}], [{"original_text": "She sent me home with these toiletries and treats, too, I almost felt my eyes welling up with tears.", "album_id": "72157623129800106", "photo_flickr_id": "4241567742", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "43066", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she sent me home with these toiletries and treats , too , i almost felt my eyes welling up with tears .", "storylet_id": "215333"}], [{"original_text": "I'll forget a lot of things in life, but I hope I never forget my grandmother's great party.", "album_id": "72157623129800106", "photo_flickr_id": "4240786995", "setting": "first-2-pick-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "43066", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'll forget a lot of things in life , but i hope i never forget my grandmother 's great party .", "storylet_id": "215334"}], [{"original_text": "Birthdays and Christmas. That's how we celebrate.", "album_id": "72157623129800106", "photo_flickr_id": "4240786317", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "43067", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "birthdays and christmas . that 's how we celebrate .", "storylet_id": "215335"}], [{"original_text": "The baker did an excellent job on our cake.", "album_id": "72157623129800106", "photo_flickr_id": "4240786995", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "43067", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the baker did an excellent job on our cake .", "storylet_id": "215336"}], [{"original_text": "My twin brother and I celebrate our holiday birthday.", "album_id": "72157623129800106", "photo_flickr_id": "4241560666", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "43067", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my twin brother and i celebrate our holiday birthday .", "storylet_id": "215337"}], [{"original_text": "And mom joined us for a picture.", "album_id": "72157623129800106", "photo_flickr_id": "4240789169", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "43067", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and mom joined us for a picture .", "storylet_id": "215338"}], [{"original_text": "Then time for our gifts. I loved everything!", "album_id": "72157623129800106", "photo_flickr_id": "4241567742", "setting": "last-3-pick-old-and-tell", "worker_id": "RNUG774M7IMCCHL", "story_id": "43067", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then time for our gifts . i loved everything !", "storylet_id": "215339"}], [{"original_text": "We had the table set up early for the birthday party.", "album_id": "72157623129800106", "photo_flickr_id": "4240786317", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43068", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had the table set up early for the birthday party .", "storylet_id": "215340"}], [{"original_text": "We bought the cakes from a specialty bakery and it was beautiful.", "album_id": "72157623129800106", "photo_flickr_id": "4240786995", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43068", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we bought the cakes from a specialty bakery and it was beautiful .", "storylet_id": "215341"}], [{"original_text": "The kids were really excited.", "album_id": "72157623129800106", "photo_flickr_id": "4241560666", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43068", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids were really excited .", "storylet_id": "215342"}], [{"original_text": "Grandma came to celebrate the kids' birthdays.", "album_id": "72157623129800106", "photo_flickr_id": "4240789169", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43068", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandma came to celebrate the kids ' birthdays .", "storylet_id": "215343"}], [{"original_text": "Here are some of the gifts that the kids' received.", "album_id": "72157623129800106", "photo_flickr_id": "4241567742", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43068", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here are some of the gifts that the kids ' received .", "storylet_id": "215344"}], [{"original_text": "We had not just one, but two beautiful cakes for the celebration. Both lit with a candle.", "album_id": "72157623129800106", "photo_flickr_id": "4240786317", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43069", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had not just one , but two beautiful cakes for the celebration . both lit with a candle .", "storylet_id": "215345"}], [{"original_text": "The round cake is the favorite. The swirled pattern made with the topping is truly artistic.", "album_id": "72157623129800106", "photo_flickr_id": "4240786995", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43069", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the round cake is the favorite . the swirled pattern made with the topping is truly artistic .", "storylet_id": "215346"}], [{"original_text": "Brother and sister pose in front of the two cakes on the day of the celebration.", "album_id": "72157623129800106", "photo_flickr_id": "4241560666", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43069", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "brother and sister pose in front of the two cakes on the day of the celebration .", "storylet_id": "215347"}], [{"original_text": "Grandma was there to celebrate as well. She was happy to be able to be there.", "album_id": "72157623129800106", "photo_flickr_id": "4240789169", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43069", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandma was there to celebrate as well . she was happy to be able to be there .", "storylet_id": "215348"}], [{"original_text": "As if the cakes weren't enough, plenty of other small gifts were received on this special day.", "album_id": "72157623129800106", "photo_flickr_id": "4241567742", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43069", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as if the cakes were n't enough , plenty of other small gifts were received on this special day .", "storylet_id": "215349"}], [{"original_text": "Family and friends gather to celebrate the anniversary of loved ones. ", "album_id": "72157623008747073", "photo_flickr_id": "4242308549", "setting": "first-2-pick-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "43070", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family and friends gather to celebrate the anniversary of loved ones .", "storylet_id": "215350"}], [{"original_text": "All of the children gather to take a picture for their parents who are celebrating their anniversary. ", "album_id": "72157623008747073", "photo_flickr_id": "4242374007", "setting": "first-2-pick-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "43070", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the children gather to take a picture for their parents who are celebrating their anniversary .", "storylet_id": "215351"}], [{"original_text": "The grandchildren's eyes even light up with happiness. ", "album_id": "72157623008747073", "photo_flickr_id": "4243166566", "setting": "first-2-pick-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "43070", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the grandchildren 's eyes even light up with happiness .", "storylet_id": "215352"}], [{"original_text": "The happy couple is often on the receiving end of heart-felt toasts. ", "album_id": "72157623008747073", "photo_flickr_id": "4242405055", "setting": "first-2-pick-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "43070", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the happy couple is often on the receiving end of heart-felt toasts .", "storylet_id": "215353"}], [{"original_text": "After everyone is thanked for coming, the cake is often cut and the partying begins. ", "album_id": "72157623008747073", "photo_flickr_id": "4243179716", "setting": "first-2-pick-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "43070", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after everyone is thanked for coming , the cake is often cut and the partying begins .", "storylet_id": "215354"}], [{"original_text": "It was a birthday party. ", "album_id": "72157623008747073", "photo_flickr_id": "4243171406", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "43071", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a birthday party .", "storylet_id": "215355"}], [{"original_text": "They had a full course dinner. ", "album_id": "72157623008747073", "photo_flickr_id": "4243173584", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "43071", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a full course dinner .", "storylet_id": "215356"}], [{"original_text": "They even had fondue. ", "album_id": "72157623008747073", "photo_flickr_id": "4243199668", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "43071", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even had fondue .", "storylet_id": "215357"}], [{"original_text": "The birthday girl gave a speech. ", "album_id": "72157623008747073", "photo_flickr_id": "4243179716", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "43071", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the birthday girl gave a speech .", "storylet_id": "215358"}], [{"original_text": "Afterwards the guests danced. ", "album_id": "72157623008747073", "photo_flickr_id": "4243203756", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "43071", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards the guests danced .", "storylet_id": "215359"}], [{"original_text": "A brown, white and purple cake is the desert of choice at the gathering.", "album_id": "72157623008747073", "photo_flickr_id": "4243171406", "setting": "last-3-pick-old-and-tell", "worker_id": "XZ36IJFPJS5EQFH", "story_id": "43072", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a brown , white and purple cake is the desert of choice at the gathering .", "storylet_id": "215360"}], [{"original_text": "Guests sat at white tablecloth tables and ate their dinner.", "album_id": "72157623008747073", "photo_flickr_id": "4243173584", "setting": "last-3-pick-old-and-tell", "worker_id": "XZ36IJFPJS5EQFH", "story_id": "43072", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "guests sat at white tablecloth tables and ate their dinner .", "storylet_id": "215361"}], [{"original_text": "Many people enjoyed the chocolate fountain.", "album_id": "72157623008747073", "photo_flickr_id": "4243199668", "setting": "last-3-pick-old-and-tell", "worker_id": "XZ36IJFPJS5EQFH", "story_id": "43072", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many people enjoyed the chocolate fountain .", "storylet_id": "215362"}], [{"original_text": "A guest speaker stole the show before the cake was served.", "album_id": "72157623008747073", "photo_flickr_id": "4243179716", "setting": "last-3-pick-old-and-tell", "worker_id": "XZ36IJFPJS5EQFH", "story_id": "43072", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a guest speaker stole the show before the cake was served .", "storylet_id": "215363"}], [{"original_text": "Kids and adults danced after dinner.", "album_id": "72157623008747073", "photo_flickr_id": "4243203756", "setting": "last-3-pick-old-and-tell", "worker_id": "XZ36IJFPJS5EQFH", "story_id": "43072", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "kids and adults danced after dinner .", "storylet_id": "215364"}], [{"original_text": "The dinner party was great.", "album_id": "72157623008747073", "photo_flickr_id": "4242308549", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43073", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dinner party was great .", "storylet_id": "215365"}], [{"original_text": "We invited the entire family", "album_id": "72157623008747073", "photo_flickr_id": "4242374007", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43073", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we invited the entire family", "storylet_id": "215366"}], [{"original_text": "We had some newborns with us.", "album_id": "72157623008747073", "photo_flickr_id": "4243166566", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43073", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had some newborns with us .", "storylet_id": "215367"}], [{"original_text": "We toasted a fine dinner.", "album_id": "72157623008747073", "photo_flickr_id": "4242405055", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43073", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we toasted a fine dinner .", "storylet_id": "215368"}], [{"original_text": "Afterward we had a beautiful cake.", "album_id": "72157623008747073", "photo_flickr_id": "4243179716", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43073", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we had a beautiful cake .", "storylet_id": "215369"}], [{"original_text": "All shades of purple wedding cake.", "album_id": "72157623008747073", "photo_flickr_id": "4243171406", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43074", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all shades of purple wedding cake .", "storylet_id": "215370"}], [{"original_text": "Family at the wedding reception.", "album_id": "72157623008747073", "photo_flickr_id": "4243173584", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43074", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "family at the wedding reception .", "storylet_id": "215371"}], [{"original_text": "Everyone flocks to the chocolate fountain.", "album_id": "72157623008747073", "photo_flickr_id": "4243199668", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43074", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone flocks to the chocolate fountain .", "storylet_id": "215372"}], [{"original_text": "The mother of the bride makes a speech.", "album_id": "72157623008747073", "photo_flickr_id": "4243179716", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43074", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the mother of the bride makes a speech .", "storylet_id": "215373"}], [{"original_text": "Two little ones on the dance floor.", "album_id": "72157623008747073", "photo_flickr_id": "4243203756", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43074", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "two little ones on the dance floor .", "storylet_id": "215374"}], [{"original_text": "Today we visited the local arcade. I have \"fond\" memories of losing plenty of quarters to claw games like this when I was a child. ", "album_id": "72157623188540742", "photo_flickr_id": "4265627659", "setting": "first-2-pick-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43075", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we visited the local arcade . i have `` fond '' memories of losing plenty of quarters to claw games like this when i was a child .", "storylet_id": "215375"}], [{"original_text": "This machine is another gamble with your coins. It looks a lot like something out of The Price is Right!", "album_id": "72157623188540742", "photo_flickr_id": "4265636309", "setting": "first-2-pick-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43075", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this machine is another gamble with your coins . it looks a lot like something out of the price is right !", "storylet_id": "215376"}], [{"original_text": "Jed tries his hand at acquiring a large haul of tickets. Will his reaction speed be fast enough?", "album_id": "72157623188540742", "photo_flickr_id": "4266390586", "setting": "first-2-pick-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43075", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "jed tries his hand at acquiring a large haul of tickets . [male] his reaction speed be fast enough ?", "storylet_id": "215377"}], [{"original_text": "Now here's something that actually takes a bit of skill -- Skeeball!", "album_id": "72157623188540742", "photo_flickr_id": "4265649073", "setting": "first-2-pick-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43075", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now here 's something that actually takes a bit of skill -- skeeball !", "storylet_id": "215378"}], [{"original_text": "Everyone tried their hand at Skeeball. Jed down on the left and George and Sarah on the right. Sarah got the highest score. Sadly, no jackpot was won today.", "album_id": "72157623188540742", "photo_flickr_id": "4265654373", "setting": "first-2-pick-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43075", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone tried their hand at skeeball . jed down on the left and [male] and [female] on the right . [female] got the highest score . sadly , no jackpot was won today .", "storylet_id": "215379"}], [{"original_text": "Jackson wants to play the Bling King game.", "album_id": "72157623188540742", "photo_flickr_id": "4265627659", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43076", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] wants to play the bling [male] game .", "storylet_id": "215380"}], [{"original_text": "After he is tired of that he heads over to the Whac a Mole game.", "album_id": "72157623188540742", "photo_flickr_id": "4266376322", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43076", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after he is tired of that he heads over to the whac a mole game .", "storylet_id": "215381"}], [{"original_text": "After that its time for some skee ball.", "album_id": "72157623188540742", "photo_flickr_id": "4265639377", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43076", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that its time for some skee ball .", "storylet_id": "215382"}], [{"original_text": "Jackson puts the money into the machine in order to play.", "album_id": "72157623188540742", "photo_flickr_id": "4266392066", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43076", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] puts the money into the machine in order to play .", "storylet_id": "215383"}], [{"original_text": "The family enjoys playing a round of skeeball.", "album_id": "72157623188540742", "photo_flickr_id": "4265654373", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43076", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family enjoys playing a round of skeeball .", "storylet_id": "215384"}], [{"original_text": "We went to the arcade to win some tickets and play Bling King.", "album_id": "72157623188540742", "photo_flickr_id": "4265627659", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43077", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the arcade to win some tickets and play bling [male] .", "storylet_id": "215385"}], [{"original_text": "There were several games like Whac A Mole.", "album_id": "72157623188540742", "photo_flickr_id": "4266376322", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43077", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were several games like whac a mole .", "storylet_id": "215386"}], [{"original_text": "Skeet ball was a popular game.", "album_id": "72157623188540742", "photo_flickr_id": "4265639377", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43077", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "skeet ball was a popular game .", "storylet_id": "215387"}], [{"original_text": "We played several games", "album_id": "72157623188540742", "photo_flickr_id": "4266392066", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43077", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we played several games", "storylet_id": "215388"}], [{"original_text": "and won several tickets from the skeet ball game.", "album_id": "72157623188540742", "photo_flickr_id": "4265654373", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43077", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and won several tickets from the skeet ball game .", "storylet_id": "215389"}], [{"original_text": "After a long week at work it was time to have some fun.", "album_id": "72157623188540742", "photo_flickr_id": "4265627659", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43078", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after a long week at work it was time to have some fun .", "storylet_id": "215390"}], [{"original_text": "We went to a place that has games for adults.", "album_id": "72157623188540742", "photo_flickr_id": "4266376322", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43078", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to a place that has games for adults .", "storylet_id": "215391"}], [{"original_text": "I played this game a lot and won some pretty neat prizes.", "album_id": "72157623188540742", "photo_flickr_id": "4265639377", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43078", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i played this game a lot and won some pretty neat prizes .", "storylet_id": "215392"}], [{"original_text": "I had never played this game before, but it looked interesting.", "album_id": "72157623188540742", "photo_flickr_id": "4266392066", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43078", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had never played this game before , but it looked interesting .", "storylet_id": "215393"}], [{"original_text": "I got beat at this game every time I played it.", "album_id": "72157623188540742", "photo_flickr_id": "4265654373", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43078", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i got beat at this game every time i played it .", "storylet_id": "215394"}], [{"original_text": "Here is one of the games we saw visiting the arcade, you had the chance to win jewelry!", "album_id": "72157623188540742", "photo_flickr_id": "4265627659", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43079", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is one of the games we saw visiting the arcade , you had the chance to win jewelry !", "storylet_id": "215395"}], [{"original_text": "We won so many tickets on this one.", "album_id": "72157623188540742", "photo_flickr_id": "4265636309", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43079", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we won so many tickets on this one .", "storylet_id": "215396"}], [{"original_text": "I had no idea what I was doing on this game, but it was interesting!", "album_id": "72157623188540742", "photo_flickr_id": "4266390586", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43079", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had no idea what i was doing on this game , but it was interesting !", "storylet_id": "215397"}], [{"original_text": "Skee ball is one of our favorites.", "album_id": "72157623188540742", "photo_flickr_id": "4265649073", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43079", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "skee ball is one of our favorites .", "storylet_id": "215398"}], [{"original_text": "We spent most of our time playing this one.", "album_id": "72157623188540742", "photo_flickr_id": "4265654373", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43079", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we spent most of our time playing this one .", "storylet_id": "215399"}], [{"original_text": "My daughter and I made a cake for my sisters birthday.", "album_id": "72157623094607697", "photo_flickr_id": "4273500724", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43080", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my daughter and i made a cake for my sisters birthday .", "storylet_id": "215400"}], [{"original_text": "She was very happy with the cake.", "album_id": "72157623094607697", "photo_flickr_id": "4272756159", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43080", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was very happy with the cake .", "storylet_id": "215401"}], [{"original_text": "She insisted on getting a picture of us with the cake and her.", "album_id": "72157623094607697", "photo_flickr_id": "4272756009", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43080", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she insisted on getting a picture of us with the cake and her .", "storylet_id": "215402"}], [{"original_text": "After we took pictures, it was time to cut the cake.", "album_id": "72157623094607697", "photo_flickr_id": "4272755829", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43080", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after we took pictures , it was time to cut the cake .", "storylet_id": "215403"}], [{"original_text": "Just four of us finished off the entire cake and took a picture to save the moment.", "album_id": "72157623094607697", "photo_flickr_id": "4272756283", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43080", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "just four of us finished off the entire cake and took a picture to save the moment .", "storylet_id": "215404"}], [{"original_text": "Oh my! What a lovely gathering of Beauty.", "album_id": "72157623094607697", "photo_flickr_id": "4273501306", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43081", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "oh my ! what a lovely gathering of beauty .", "storylet_id": "215405"}], [{"original_text": "Someone is celebrating a birthday!", "album_id": "72157623094607697", "photo_flickr_id": "4272756125", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43081", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "someone is celebrating a birthday !", "storylet_id": "215406"}], [{"original_text": "Could be her?", "album_id": "72157623094607697", "photo_flickr_id": "4273500724", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43081", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "could be her ?", "storylet_id": "215407"}], [{"original_text": "Or her?", "album_id": "72157623094607697", "photo_flickr_id": "4273500828", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43081", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "or her ?", "storylet_id": "215408"}], [{"original_text": "It's her! Beautiful, she is, may she celebrate many more among Friends... :)", "album_id": "72157623094607697", "photo_flickr_id": "4272756159", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43081", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's her ! beautiful , she is , may she celebrate many more among friends ... : )", "storylet_id": "215409"}], [{"original_text": "Birthday celebrations are underway!", "album_id": "72157623094607697", "photo_flickr_id": "4273500724", "setting": "last-3-pick-old-and-tell", "worker_id": "ZNWW0E6EW0UJZ26", "story_id": "43082", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "birthday celebrations are underway !", "storylet_id": "215410"}], [{"original_text": "The cake and the baker are beautiful!", "album_id": "72157623094607697", "photo_flickr_id": "4272756159", "setting": "last-3-pick-old-and-tell", "worker_id": "ZNWW0E6EW0UJZ26", "story_id": "43082", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cake and the baker are beautiful !", "storylet_id": "215411"}], [{"original_text": "Excited to dig in to the cake!", "album_id": "72157623094607697", "photo_flickr_id": "4272756009", "setting": "last-3-pick-old-and-tell", "worker_id": "ZNWW0E6EW0UJZ26", "story_id": "43082", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "excited to dig in to the cake !", "storylet_id": "215412"}], [{"original_text": "The cherries and coconut make this cake extra exotic.", "album_id": "72157623094607697", "photo_flickr_id": "4272755829", "setting": "last-3-pick-old-and-tell", "worker_id": "ZNWW0E6EW0UJZ26", "story_id": "43082", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cherries and coconut make this cake extra exotic .", "storylet_id": "215413"}], [{"original_text": "Sisters celebrating a great birthday!", "album_id": "72157623094607697", "photo_flickr_id": "4272756283", "setting": "last-3-pick-old-and-tell", "worker_id": "ZNWW0E6EW0UJZ26", "story_id": "43082", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sisters celebrating a great birthday !", "storylet_id": "215414"}], [{"original_text": "It was her 10th birthday and the family got together.", "album_id": "72157623094607697", "photo_flickr_id": "4273500724", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "43083", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was her 10th birthday and the family got together .", "storylet_id": "215415"}], [{"original_text": "Mom made this pretty cake for her to celebrate.", "album_id": "72157623094607697", "photo_flickr_id": "4272756159", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "43083", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom made this pretty cake for her to celebrate .", "storylet_id": "215416"}], [{"original_text": "She took photos of it with her daughters.", "album_id": "72157623094607697", "photo_flickr_id": "4272756009", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "43083", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she took photos of it with her daughters .", "storylet_id": "215417"}], [{"original_text": "And finally cut the cake so they could eat.", "album_id": "72157623094607697", "photo_flickr_id": "4272755829", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "43083", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and finally cut the cake so they could eat .", "storylet_id": "215418"}], [{"original_text": "Afterward the family took a nice pose together.", "album_id": "72157623094607697", "photo_flickr_id": "4272756283", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "43083", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward the family took a nice pose together .", "storylet_id": "215419"}], [{"original_text": "Before the cake makes and apperance", "album_id": "72157623094607697", "photo_flickr_id": "4273501306", "setting": "last-3-pick-old-and-tell", "worker_id": "P8ZTIXO2FF69NDM", "story_id": "43084", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before the cake makes and apperance", "storylet_id": "215420"}], [{"original_text": "And there's the cake!", "album_id": "72157623094607697", "photo_flickr_id": "4272756125", "setting": "last-3-pick-old-and-tell", "worker_id": "P8ZTIXO2FF69NDM", "story_id": "43084", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and there 's the cake !", "storylet_id": "215421"}], [{"original_text": "Just sisters smiling!", "album_id": "72157623094607697", "photo_flickr_id": "4273500724", "setting": "last-3-pick-old-and-tell", "worker_id": "P8ZTIXO2FF69NDM", "story_id": "43084", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "just sisters smiling !", "storylet_id": "215422"}], [{"original_text": "BBF!!!!!", "album_id": "72157623094607697", "photo_flickr_id": "4273500828", "setting": "last-3-pick-old-and-tell", "worker_id": "P8ZTIXO2FF69NDM", "story_id": "43084", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "bbf ! ! ! ! !", "storylet_id": "215423"}], [{"original_text": "SMILE! Cake time!", "album_id": "72157623094607697", "photo_flickr_id": "4272756159", "setting": "last-3-pick-old-and-tell", "worker_id": "P8ZTIXO2FF69NDM", "story_id": "43084", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "smile ! cake time !", "storylet_id": "215424"}], [{"original_text": "Everyone was having a blast at the party.", "album_id": "72157594481722609", "photo_flickr_id": "358740990", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "43085", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was having a blast at the party .", "storylet_id": "215425"}], [{"original_text": "People were playing around having fun.", "album_id": "72157594481722609", "photo_flickr_id": "358742382", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "43085", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people were playing around having fun .", "storylet_id": "215426"}], [{"original_text": "The whole gang jumped in photo!", "album_id": "72157594481722609", "photo_flickr_id": "358749863", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "43085", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the whole gang jumped in photo !", "storylet_id": "215427"}], [{"original_text": "It was a fun little gathering!", "album_id": "72157594481722609", "photo_flickr_id": "358755502", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "43085", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a fun little gathering !", "storylet_id": "215428"}], [{"original_text": "We all enjoyed each others company tremendously!", "album_id": "72157594481722609", "photo_flickr_id": "358754791", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "43085", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all enjoyed each others company tremendously !", "storylet_id": "215429"}], [{"original_text": "The party guests are here to have a blast this halloween.", "album_id": "72157594481722609", "photo_flickr_id": "358739312", "setting": "first-2-pick-and-tell", "worker_id": "6QZR7N8X31OA7V9", "story_id": "43086", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party guests are here to have a blast this halloween .", "storylet_id": "215430"}], [{"original_text": "The party looks promising, it should be a good night.", "album_id": "72157594481722609", "photo_flickr_id": "358742382", "setting": "first-2-pick-and-tell", "worker_id": "6QZR7N8X31OA7V9", "story_id": "43086", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the party looks promising , it should be a good night .", "storylet_id": "215431"}], [{"original_text": "There is music of course, no get together is compete without it.", "album_id": "72157594481722609", "photo_flickr_id": "358747594", "setting": "first-2-pick-and-tell", "worker_id": "6QZR7N8X31OA7V9", "story_id": "43086", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is music of course , no get together is compete without it .", "storylet_id": "215432"}], [{"original_text": "The guests try and see if there is room on the couch for everyone, looks like yes.", "album_id": "72157594481722609", "photo_flickr_id": "358749863", "setting": "first-2-pick-and-tell", "worker_id": "6QZR7N8X31OA7V9", "story_id": "43086", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guests try and see if there is room on the couch for everyone , looks like yes .", "storylet_id": "215433"}], [{"original_text": "Well, its a pig pile, what can I say. Happy Halloween!", "album_id": "72157594481722609", "photo_flickr_id": "358754791", "setting": "first-2-pick-and-tell", "worker_id": "6QZR7N8X31OA7V9", "story_id": "43086", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "well , its a pig pile , what can i say . happy halloween !", "storylet_id": "215434"}], [{"original_text": "What a great party we had last night.", "album_id": "72157594481722609", "photo_flickr_id": "358739312", "setting": "last-3-pick-old-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "43087", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what a great party we had last night .", "storylet_id": "215435"}], [{"original_text": "We had several pretty girls there. ", "album_id": "72157594481722609", "photo_flickr_id": "358742382", "setting": "last-3-pick-old-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "43087", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had several pretty girls there .", "storylet_id": "215436"}], [{"original_text": "There was even someone that provided free live music.", "album_id": "72157594481722609", "photo_flickr_id": "358747594", "setting": "last-3-pick-old-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "43087", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was even someone that provided free live music .", "storylet_id": "215437"}], [{"original_text": "Maybe we did drink a little too much, but we had a great time. ", "album_id": "72157594481722609", "photo_flickr_id": "358749863", "setting": "last-3-pick-old-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "43087", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "maybe we did drink a little too much , but we had a great time .", "storylet_id": "215438"}], [{"original_text": "I am glad there were photos since I really do not remember what really happened.", "album_id": "72157594481722609", "photo_flickr_id": "358754791", "setting": "last-3-pick-old-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "43087", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am glad there were photos since i really do not remember what really happened .", "storylet_id": "215439"}], [{"original_text": "The first fraternity party of the year brings young women who have never been on their own and who have decided to let their hair down. Alcohol, smoking and other bad decisions will be part of their evening and night.", "album_id": "72157594481722609", "photo_flickr_id": "358740990", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43088", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the first fraternity party of the year brings young women who have never been on their own and who have decided to let their hair down . alcohol , smoking and other bad decisions will be part of their evening and night .", "storylet_id": "215440"}], [{"original_text": "Inhibitions are reduced and the girls know how to use their sensuality.", "album_id": "72157594481722609", "photo_flickr_id": "358742382", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43088", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inhibitions are reduced and the girls know how to use their sensuality .", "storylet_id": "215441"}], [{"original_text": "The alcohol has loosened the inhibitions and party goers of both genders use any excuse for touching.", "album_id": "72157594481722609", "photo_flickr_id": "358749863", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43088", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the alcohol has loosened the inhibitions and party goers of both genders use any excuse for touching .", "storylet_id": "215442"}], [{"original_text": "The hormones of youth add to the mix and groping in the pile-up brings pleasure to many.", "album_id": "72157594481722609", "photo_flickr_id": "358755502", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43088", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the hormones of youth add to the mix and groping in the pile-up brings pleasure to many .", "storylet_id": "215443"}], [{"original_text": "The girls have selected their guy and a trip to his room will soon follow.", "album_id": "72157594481722609", "photo_flickr_id": "358754791", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43088", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girls have selected their guy and a trip to his room will soon follow .", "storylet_id": "215444"}], [{"original_text": "A huge risque party is taking place.", "album_id": "72157594481722609", "photo_flickr_id": "358739312", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43089", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a huge risque party is taking place .", "storylet_id": "215445"}], [{"original_text": "A woman is wearing lingerie and being groped.", "album_id": "72157594481722609", "photo_flickr_id": "358742382", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43089", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a woman is wearing lingerie and being groped .", "storylet_id": "215446"}], [{"original_text": "A man plays the guitar at the party.", "album_id": "72157594481722609", "photo_flickr_id": "358747594", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43089", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man plays the guitar at the party .", "storylet_id": "215447"}], [{"original_text": "A group of people is huddled up on top of each other.", "album_id": "72157594481722609", "photo_flickr_id": "358749863", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43089", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a group of people is huddled up on top of each other .", "storylet_id": "215448"}], [{"original_text": "They continue to lay all over each other.", "album_id": "72157594481722609", "photo_flickr_id": "358754791", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43089", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they continue to lay all over each other .", "storylet_id": "215449"}], [{"original_text": "We went to a convention today.", "album_id": "72157628969115453", "photo_flickr_id": "6736972051", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43090", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a convention today .", "storylet_id": "215450"}], [{"original_text": "There where a lot of people there.", "album_id": "72157628969115453", "photo_flickr_id": "6736972343", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43090", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there where a lot of people there .", "storylet_id": "215451"}], [{"original_text": "We talked with a lot of people.", "album_id": "72157628969115453", "photo_flickr_id": "6736972843", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43090", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we talked with a lot of people .", "storylet_id": "215452"}], [{"original_text": "We also filled out a number of forms.", "album_id": "72157628969115453", "photo_flickr_id": "6736973093", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43090", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also filled out a number of forms .", "storylet_id": "215453"}], [{"original_text": "It was a great day.", "album_id": "72157628969115453", "photo_flickr_id": "6736974145", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43090", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great day .", "storylet_id": "215454"}], [{"original_text": "They are meeting their friends after their high school reunion.", "album_id": "72157628969115453", "photo_flickr_id": "6736972051", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "43091", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they are meeting their friends after their high school reunion .", "storylet_id": "215455"}], [{"original_text": "They look at some old letters that they wrote to themselves several years ago. Some kept their resolutions and others didn't.", "album_id": "72157628969115453", "photo_flickr_id": "6736973093", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "43091", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they look at some old letters that they wrote to themselves several years ago . some kept their resolutions and others did n't .", "storylet_id": "215456"}], [{"original_text": "After that it is time to mix and mingle and meet up with buddies we haven't seen in a while.", "album_id": "72157628969115453", "photo_flickr_id": "6736974439", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "43091", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that it is time to mix and mingle and meet up with buddies we have n't seen in a while .", "storylet_id": "215457"}], [{"original_text": "This guy is still the life of the party.", "album_id": "72157628969115453", "photo_flickr_id": "6736975239", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "43091", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this guy is still the life of the party .", "storylet_id": "215458"}], [{"original_text": "It is funny how much we still have in common after so many years.", "album_id": "72157628969115453", "photo_flickr_id": "6736976643", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "43091", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is funny how much we still have in common after so many years .", "storylet_id": "215459"}], [{"original_text": "Friends getting together to take a picture.", "album_id": "72157628969115453", "photo_flickr_id": "6736972051", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43092", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends getting together to take a picture .", "storylet_id": "215460"}], [{"original_text": "These men are having a conversation.", "album_id": "72157628969115453", "photo_flickr_id": "6736972343", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43092", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these men are having a conversation .", "storylet_id": "215461"}], [{"original_text": "Everyone is talking to each other, and being social.", "album_id": "72157628969115453", "photo_flickr_id": "6736972843", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43092", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone is talking to each other , and being social .", "storylet_id": "215462"}], [{"original_text": "Possibly people are writing their numbers down on paper.", "album_id": "72157628969115453", "photo_flickr_id": "6736973093", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43092", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "possibly people are writing their numbers down on paper .", "storylet_id": "215463"}], [{"original_text": "Two women heavily engaged in talking.", "album_id": "72157628969115453", "photo_flickr_id": "6736974145", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43092", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "two women heavily engaged in talking .", "storylet_id": "215464"}], [{"original_text": "Me and my wife went out on the town one night.", "album_id": "72157628969115453", "photo_flickr_id": "6736972051", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "43093", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and my wife went out on the town one night .", "storylet_id": "215465"}], [{"original_text": "We got to the bar and the waiter asked what we wanted.", "album_id": "72157628969115453", "photo_flickr_id": "6736972343", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "43093", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to the bar and the waiter asked what we wanted .", "storylet_id": "215466"}], [{"original_text": "I met some friends while I was there and my wife let me drink with them!", "album_id": "72157628969115453", "photo_flickr_id": "6736972843", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "43093", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i met some friends while i was there and my wife let me drink with them !", "storylet_id": "215467"}], [{"original_text": "When the check came, we split it and paid for it. ", "album_id": "72157628969115453", "photo_flickr_id": "6736973093", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "43093", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the check came , we split it and paid for it .", "storylet_id": "215468"}], [{"original_text": "Don't worry about my wife though, she saw some friends of her own and drank with them!", "album_id": "72157628969115453", "photo_flickr_id": "6736974145", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "43093", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "do n't worry about my wife though , she saw some friends of her own and drank with them !", "storylet_id": "215469"}], [{"original_text": "When Jerry and I got engaged, we threw a big party for our friends and family.", "album_id": "72157628969115453", "photo_flickr_id": "6736972051", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43094", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when [male] and i got engaged , we threw a big party for our friends and family .", "storylet_id": "215470"}], [{"original_text": "Everyone came, and there were lots of interesting conversations to be had!", "album_id": "72157628969115453", "photo_flickr_id": "6736972343", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43094", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone came , and there were lots of interesting conversations to be had !", "storylet_id": "215471"}], [{"original_text": "I love how our friends love to talk.", "album_id": "72157628969115453", "photo_flickr_id": "6736972843", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43094", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i love how our friends love to talk .", "storylet_id": "215472"}], [{"original_text": "We signed the marriage licence and put on the special stickers in view of all our friends.", "album_id": "72157628969115453", "photo_flickr_id": "6736973093", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43094", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we signed the marriage licence and put on the special stickers in view of all our friends .", "storylet_id": "215473"}], [{"original_text": "I think my mother was the happiest one at the party! She had been eager to me to get married.", "album_id": "72157628969115453", "photo_flickr_id": "6736974145", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43094", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think my mother was the happiest one at the party ! she had been eager to me to get married .", "storylet_id": "215474"}], [{"original_text": "I am so excited for dinner tonight.", "album_id": "72157628971956713", "photo_flickr_id": "6738256281", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43095", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am so excited for dinner tonight .", "storylet_id": "215475"}], [{"original_text": "We received our seats and were escorted to our table.", "album_id": "72157628971956713", "photo_flickr_id": "6738258247", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43095", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we received our seats and were escorted to our table .", "storylet_id": "215476"}], [{"original_text": "The table was very beautiful.", "album_id": "72157628971956713", "photo_flickr_id": "6738262327", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43095", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the table was very beautiful .", "storylet_id": "215477"}], [{"original_text": "We were the only ones dining at the time so it was very peaceful.", "album_id": "72157628971956713", "photo_flickr_id": "6738263293", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43095", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were the only ones dining at the time so it was very peaceful .", "storylet_id": "215478"}], [{"original_text": "For dessert we had a lot of sweets.", "album_id": "72157628971956713", "photo_flickr_id": "6738265373", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43095", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for dessert we had a lot of sweets .", "storylet_id": "215479"}], [{"original_text": "We set up the place for the party", "album_id": "72157628971956713", "photo_flickr_id": "6738263293", "setting": "first-2-pick-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "43096", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we set up the place for the party", "storylet_id": "215480"}], [{"original_text": "the tables came together very nicely", "album_id": "72157628971956713", "photo_flickr_id": "6738262327", "setting": "first-2-pick-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "43096", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tables came together very nicely", "storylet_id": "215481"}], [{"original_text": "and so did the food", "album_id": "72157628971956713", "photo_flickr_id": "6738265373", "setting": "first-2-pick-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "43096", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and so did the food", "storylet_id": "215482"}], [{"original_text": "everyone showed up", "album_id": "72157628971956713", "photo_flickr_id": "6738264559", "setting": "first-2-pick-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "43096", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone showed up", "storylet_id": "215483"}], [{"original_text": "and had fun and acted silly", "album_id": "72157628971956713", "photo_flickr_id": "6738260359", "setting": "first-2-pick-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "43096", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and had fun and acted silly", "storylet_id": "215484"}], [{"original_text": "An intimate setting for a get together.", "album_id": "72157628971956713", "photo_flickr_id": "6738263293", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43097", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an intimate setting for a get together .", "storylet_id": "215485"}], [{"original_text": "Nicely decorated table for the occasion.", "album_id": "72157628971956713", "photo_flickr_id": "6738262327", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43097", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "nicely decorated table for the occasion .", "storylet_id": "215486"}], [{"original_text": "Deserts look amazing and very sweet.", "album_id": "72157628971956713", "photo_flickr_id": "6738265373", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43097", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "deserts look amazing and very sweet .", "storylet_id": "215487"}], [{"original_text": "Friends are standing around sharing in this moment.", "album_id": "72157628971956713", "photo_flickr_id": "6738264559", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43097", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "friends are standing around sharing in this moment .", "storylet_id": "215488"}], [{"original_text": "People are having a good time together.", "album_id": "72157628971956713", "photo_flickr_id": "6738260359", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43097", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people are having a good time together .", "storylet_id": "215489"}], [{"original_text": "I decided to throw myself a big party for my 30th birthday.", "album_id": "72157628971956713", "photo_flickr_id": "6738256281", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43098", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to throw myself a big party for my 30th birthday .", "storylet_id": "215490"}], [{"original_text": "I arranged all the details with the restaurant manager. We went over the theme and found some stickers that would work for it.", "album_id": "72157628971956713", "photo_flickr_id": "6738258247", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43098", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i arranged all the details with the restaurant manager . we went over the theme and found some stickers that would work for it .", "storylet_id": "215491"}], [{"original_text": "I loved how the table looked as we prepared for guests.", "album_id": "72157628971956713", "photo_flickr_id": "6738262327", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43098", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i loved how the table looked as we prepared for guests .", "storylet_id": "215492"}], [{"original_text": "The restaurant was just what I wanted---elegant but warm.", "album_id": "72157628971956713", "photo_flickr_id": "6738263293", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43098", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the restaurant was just what i wanted -- -elegant but warm .", "storylet_id": "215493"}], [{"original_text": "I had a lot of fun preparing the dessert tray, complete with some Whoopie Pies to celebrate my Maine heritage!", "album_id": "72157628971956713", "photo_flickr_id": "6738265373", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43098", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a lot of fun preparing the dessert tray , complete with some whoopie pies to celebrate my location heritage !", "storylet_id": "215494"}], [{"original_text": "This is the first female mayoral candidate this town has ever had.", "album_id": "72157628971956713", "photo_flickr_id": "6738256281", "setting": "last-3-pick-old-and-tell", "worker_id": "ROAIAI849NTZBZ1", "story_id": "43099", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the first female mayoral candidate this town has ever had .", "storylet_id": "215495"}], [{"original_text": "She is personally handing each of her supporters a campaign sticker.", "album_id": "72157628971956713", "photo_flickr_id": "6738258247", "setting": "last-3-pick-old-and-tell", "worker_id": "ROAIAI849NTZBZ1", "story_id": "43099", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she is personally handing each of her supporters a campaign sticker .", "storylet_id": "215496"}], [{"original_text": "The fundraising dinner starts at 6:30.", "album_id": "72157628971956713", "photo_flickr_id": "6738262327", "setting": "last-3-pick-old-and-tell", "worker_id": "ROAIAI849NTZBZ1", "story_id": "43099", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fundraising dinner starts at 6:30 .", "storylet_id": "215497"}], [{"original_text": "There will be about 75 people coming to support her.", "album_id": "72157628971956713", "photo_flickr_id": "6738263293", "setting": "last-3-pick-old-and-tell", "worker_id": "ROAIAI849NTZBZ1", "story_id": "43099", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there will be about 75 people coming to support her .", "storylet_id": "215498"}], [{"original_text": "The night will end with a delicious assortment of desserts.", "album_id": "72157628971956713", "photo_flickr_id": "6738265373", "setting": "last-3-pick-old-and-tell", "worker_id": "ROAIAI849NTZBZ1", "story_id": "43099", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night will end with a delicious assortment of desserts .", "storylet_id": "215499"}], [{"original_text": "One day, we traveled to the gas plant near our city.", "album_id": "72157629086801019", "photo_flickr_id": "6784159791", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43100", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one day , we traveled to the gas plant near our city .", "storylet_id": "215500"}], [{"original_text": "The neighborhood was full of homes but not many cars.", "album_id": "72157629086801019", "photo_flickr_id": "6784168605", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43100", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the neighborhood was full of homes but not many cars .", "storylet_id": "215501"}], [{"original_text": "We then went closer to the transporting area of the plant.", "album_id": "72157629086801019", "photo_flickr_id": "6784181663", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43100", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we then went closer to the transporting area of the plant .", "storylet_id": "215502"}], [{"original_text": "This is where we found the bridge that most of their vehicles use.", "album_id": "72157629086801019", "photo_flickr_id": "6784194273", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43100", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is where we found the bridge that most of their vehicles use .", "storylet_id": "215503"}], [{"original_text": "After taking pictures, we went back to a group party at the hotel.", "album_id": "72157629086801019", "photo_flickr_id": "6784195697", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43100", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after taking pictures , we went back to a group party at the hotel .", "storylet_id": "215504"}], [{"original_text": "Cleveland is a shell of its former self. ", "album_id": "72157629086801019", "photo_flickr_id": "6784181663", "setting": "first-2-pick-and-tell", "worker_id": "31057HOLZXP7QJ5", "story_id": "43101", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location is a shell of its former self .", "storylet_id": "215505"}], [{"original_text": "Where commerce used to exist, now there is an eerie silence. ", "album_id": "72157629086801019", "photo_flickr_id": "6784183769", "setting": "first-2-pick-and-tell", "worker_id": "31057HOLZXP7QJ5", "story_id": "43101", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "where commerce used to exist , now there is an eerie silence .", "storylet_id": "215506"}], [{"original_text": "This building used to hold over 200 jobs, but now it sits empty. ", "album_id": "72157629086801019", "photo_flickr_id": "6784187753", "setting": "first-2-pick-and-tell", "worker_id": "31057HOLZXP7QJ5", "story_id": "43101", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this building used to hold over 200 jobs , but now it sits empty .", "storylet_id": "215507"}], [{"original_text": "The city planners have gathered to make a new plan. ", "album_id": "72157629086801019", "photo_flickr_id": "6784195697", "setting": "first-2-pick-and-tell", "worker_id": "31057HOLZXP7QJ5", "story_id": "43101", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the city planners have gathered to make a new plan .", "storylet_id": "215508"}], [{"original_text": "The meeting went well into the night.", "album_id": "72157629086801019", "photo_flickr_id": "6784197357", "setting": "first-2-pick-and-tell", "worker_id": "31057HOLZXP7QJ5", "story_id": "43101", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the meeting went well into the night .", "storylet_id": "215509"}], [{"original_text": "This is an old steel industrial town.", "album_id": "72157629086801019", "photo_flickr_id": "6784159791", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43102", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is an old steel industrial town .", "storylet_id": "215510"}], [{"original_text": "There are not that may people who live in this town.", "album_id": "72157629086801019", "photo_flickr_id": "6784168605", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43102", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are not that may people who live in this town .", "storylet_id": "215511"}], [{"original_text": "There is plenty work here.", "album_id": "72157629086801019", "photo_flickr_id": "6784181663", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43102", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is plenty work here .", "storylet_id": "215512"}], [{"original_text": "There are also very beautiful structures.", "album_id": "72157629086801019", "photo_flickr_id": "6784194273", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43102", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are also very beautiful structures .", "storylet_id": "215513"}], [{"original_text": "There are also some really cool restaurants here.", "album_id": "72157629086801019", "photo_flickr_id": "6784195697", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43102", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are also some really cool restaurants here .", "storylet_id": "215514"}], [{"original_text": "Some people don't see any beauty in an industrial city.", "album_id": "72157629086801019", "photo_flickr_id": "6784159791", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43103", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some people do n't see any beauty in an industrial city .", "storylet_id": "215515"}], [{"original_text": "They say the street are bleak, and the cloud of pollution always hangs over everything.", "album_id": "72157629086801019", "photo_flickr_id": "6784168605", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43103", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they say the street are bleak , and the cloud of pollution always hangs over everything .", "storylet_id": "215516"}], [{"original_text": "The area under the overpass doesn't hold any magic for them.", "album_id": "72157629086801019", "photo_flickr_id": "6784181663", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43103", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the area under the overpass does n't hold any magic for them .", "storylet_id": "215517"}], [{"original_text": "But they don't see the gorgeous bridge at the edge of town, or the lovely arches at the start of the bridge.", "album_id": "72157629086801019", "photo_flickr_id": "6784194273", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43103", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but they do n't see the gorgeous bridge at the edge of town , or the lovely arches at the start of the bridge .", "storylet_id": "215518"}], [{"original_text": "When my family gets together in my gritty hometown, we all celebrate the hidden beauties the town contains.", "album_id": "72157629086801019", "photo_flickr_id": "6784195697", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43103", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when my family gets together in my gritty hometown , we all celebrate the hidden beauties the town contains .", "storylet_id": "215519"}], [{"original_text": "Refinery is the main business in this town.", "album_id": "72157629086801019", "photo_flickr_id": "6784159791", "setting": "last-3-pick-old-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43104", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "refinery is the main business in this town .", "storylet_id": "215520"}], [{"original_text": "People may complain about the oil business -- about its hazards -- but this town and this people survive because of the oil business.", "album_id": "72157629086801019", "photo_flickr_id": "6784168605", "setting": "last-3-pick-old-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43104", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people may complain about the oil business -- about its hazards -- but this town and this people survive because of the oil business .", "storylet_id": "215521"}], [{"original_text": "Miles and miles of flat open space. Thank God there is wealth hidden beneath the earth.", "album_id": "72157629086801019", "photo_flickr_id": "6784181663", "setting": "last-3-pick-old-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43104", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and miles of flat open space . thank god there is wealth hidden beneath the earth .", "storylet_id": "215522"}], [{"original_text": "We have learned to live in spite of polluted water. You get accustomed to the smell, and drink bottled water.", "album_id": "72157629086801019", "photo_flickr_id": "6784194273", "setting": "last-3-pick-old-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43104", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we have learned to live in spite of polluted water . you get accustomed to the smell , and drink bottled water .", "storylet_id": "215523"}], [{"original_text": "We have a quiet social life. Nothing fancy. The oil business has too many fluctuations to build something fancy. ", "album_id": "72157629086801019", "photo_flickr_id": "6784195697", "setting": "last-3-pick-old-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43104", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we have a quiet social life . nothing fancy . the oil business has too many fluctuations to build something fancy .", "storylet_id": "215524"}], [{"original_text": "Our loving family enjoyed our pool play day!", "album_id": "531002", "photo_flickr_id": "516068", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "43105", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our loving family enjoyed our pool play day !", "storylet_id": "215525"}], [{"original_text": "Father and son enjoy the water activities!", "album_id": "531002", "photo_flickr_id": "516099", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "43105", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "father and son enjoy the water activities !", "storylet_id": "215526"}], [{"original_text": "Here our little guy is getting ready to eat.", "album_id": "531002", "photo_flickr_id": "516132", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "43105", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here our little guy is getting ready to eat .", "storylet_id": "215527"}], [{"original_text": "He is digging into his delicious meal here!", "album_id": "531002", "photo_flickr_id": "516155", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "43105", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he is digging into his delicious meal here !", "storylet_id": "215528"}], [{"original_text": "He is having a great time eating the cake!", "album_id": "531002", "photo_flickr_id": "516160", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "43105", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he is having a great time eating the cake !", "storylet_id": "215529"}], [{"original_text": "I bought my son a fancy cake with an action figure on it.", "album_id": "531002", "photo_flickr_id": "516105", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43106", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i bought my son a fancy cake with an action figure on it .", "storylet_id": "215530"}], [{"original_text": "I took the action figure off so he wouldn't try to eat it.", "album_id": "531002", "photo_flickr_id": "516124", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43106", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i took the action figure off so he would n't try to eat it .", "storylet_id": "215531"}], [{"original_text": "After I removed the action figure he used his hands to eat the cake.", "album_id": "531002", "photo_flickr_id": "516155", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43106", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after i removed the action figure he used his hands to eat the cake .", "storylet_id": "215532"}], [{"original_text": "He got the cake all over his face.", "album_id": "531002", "photo_flickr_id": "516160", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43106", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he got the cake all over his face .", "storylet_id": "215533"}], [{"original_text": "After we waited for a little while after eating, we all went outside and went for a birthday swim.", "album_id": "531002", "photo_flickr_id": "516068", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43106", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we waited for a little while after eating , we all went outside and went for a birthday swim .", "storylet_id": "215534"}], [{"original_text": "This was the young couple's first time putting their new baby in the swimming pool.", "album_id": "531002", "photo_flickr_id": "516068", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "43107", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the young couple 's first time putting their new baby in the swimming pool .", "storylet_id": "215535"}], [{"original_text": "He was enjoying it immensely!", "album_id": "531002", "photo_flickr_id": "516099", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "43107", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was enjoying it immensely !", "storylet_id": "215536"}], [{"original_text": "The sun and fun got him hungry though and soon it was time to eat.", "album_id": "531002", "photo_flickr_id": "516132", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "43107", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sun and fun got him hungry though and soon it was time to eat .", "storylet_id": "215537"}], [{"original_text": "The messy boy was put in the high chair.", "album_id": "531002", "photo_flickr_id": "516155", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "43107", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the messy boy was put in the high chair .", "storylet_id": "215538"}], [{"original_text": "And make a mess all over his face he sure did!", "album_id": "531002", "photo_flickr_id": "516160", "setting": "last-3-pick-old-and-tell", "worker_id": "YLH2CK7W83WI2E3", "story_id": "43107", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and make a mess all over his face he sure did !", "storylet_id": "215539"}], [{"original_text": "It was baby's first birthday. Mommy and Daddy took her to play in the pool. First she played with a ring.", "album_id": "531002", "photo_flickr_id": "516068", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43108", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was baby 's first birthday . mommy and daddy took her to play in the pool . first she played with a ring .", "storylet_id": "215540"}], [{"original_text": "There were many colorful toys to look at and play with. Her dad held her safely in his arms. ", "album_id": "531002", "photo_flickr_id": "516099", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43108", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many colorful toys to look at and play with . her dad held her safely in his arms .", "storylet_id": "215541"}], [{"original_text": "Mommy had made a cake. All for the baby. ", "album_id": "531002", "photo_flickr_id": "516132", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43108", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mommy had made a cake . all for the baby .", "storylet_id": "215542"}], [{"original_text": "She poked it with her fingers, it was soft and gooey.", "album_id": "531002", "photo_flickr_id": "516155", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43108", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she poked it with her fingers , it was soft and gooey .", "storylet_id": "215543"}], [{"original_text": "She some of the cake in her mouth. It was sweet and good. Baby had a fun birthday. ", "album_id": "531002", "photo_flickr_id": "516160", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43108", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she some of the cake in her mouth . it was sweet and good . [male] had a fun birthday .", "storylet_id": "215544"}], [{"original_text": "Darren's mother made him a volcano cake for his first birthday party.", "album_id": "531002", "photo_flickr_id": "516105", "setting": "last-3-pick-old-and-tell", "worker_id": "6DUV9WEU5QQBXTO", "story_id": "43109", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] 's mother made him a volcano cake for his first birthday party .", "storylet_id": "215545"}], [{"original_text": "She also made him a miniature volcano cake, or \"smash\" cake.", "album_id": "531002", "photo_flickr_id": "516124", "setting": "last-3-pick-old-and-tell", "worker_id": "6DUV9WEU5QQBXTO", "story_id": "43109", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she also made him a miniature volcano cake , or `` smash '' cake .", "storylet_id": "215546"}], [{"original_text": "Darren grabbed a hunk of the smash cake.", "album_id": "531002", "photo_flickr_id": "516155", "setting": "last-3-pick-old-and-tell", "worker_id": "6DUV9WEU5QQBXTO", "story_id": "43109", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] grabbed a hunk of the smash cake .", "storylet_id": "215547"}], [{"original_text": "It tastes delicious!", "album_id": "531002", "photo_flickr_id": "516160", "setting": "last-3-pick-old-and-tell", "worker_id": "6DUV9WEU5QQBXTO", "story_id": "43109", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it tastes delicious !", "storylet_id": "215548"}], [{"original_text": "After cake, Mommy, Daddy, and Darren swam in the pool.", "album_id": "531002", "photo_flickr_id": "516068", "setting": "last-3-pick-old-and-tell", "worker_id": "6DUV9WEU5QQBXTO", "story_id": "43109", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after cake , mommy , daddy , and [male] swam in the pool .", "storylet_id": "215549"}], [{"original_text": "This is my brother, his wife, and their son.", "album_id": "72157601372125902", "photo_flickr_id": "1085995544", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43110", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my brother , his wife , and their son .", "storylet_id": "215550"}], [{"original_text": "It was his birthday today so I brought him a cake.", "album_id": "72157601372125902", "photo_flickr_id": "1085995688", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43110", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was his birthday today so i brought him a cake .", "storylet_id": "215551"}], [{"original_text": "This is the cake and he turns three today.", "album_id": "72157601372125902", "photo_flickr_id": "1085994590", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43110", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the cake and he turns three today .", "storylet_id": "215552"}], [{"original_text": "After we ate the cake he opened his gifts.", "album_id": "72157601372125902", "photo_flickr_id": "1085995102", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43110", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after we ate the cake he opened his gifts .", "storylet_id": "215553"}], [{"original_text": "After he opened all his gifts, he thanked us all and appeared to be very very happy.", "album_id": "72157601372125902", "photo_flickr_id": "1085994692", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43110", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after he opened all his gifts , he thanked us all and appeared to be very very happy .", "storylet_id": "215554"}], [{"original_text": "I like the cake -- is this a football game celebration?", "album_id": "72157601372125902", "photo_flickr_id": "1085994590", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43111", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i like the cake -- is this a football game celebration ?", "storylet_id": "215555"}], [{"original_text": "Hmmm... looks like it's a birthday. I wonder whose birthday?", "album_id": "72157601372125902", "photo_flickr_id": "1085995688", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43111", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "hmmm ... looks like it 's a birthday . i wonder whose birthday ?", "storylet_id": "215556"}], [{"original_text": "Happy Birthday! Who sent this present?", "album_id": "72157601372125902", "photo_flickr_id": "1085995202", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43111", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "happy birthday ! who sent this present ?", "storylet_id": "215557"}], [{"original_text": "Favorite Aunt sent it. She always sends nice presents.", "album_id": "72157601372125902", "photo_flickr_id": "1085134097", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43111", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "favorite aunt sent it . she always sends nice presents .", "storylet_id": "215558"}], [{"original_text": "This was the best birthday ever!", "album_id": "72157601372125902", "photo_flickr_id": "1085995544", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43111", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the best birthday ever !", "storylet_id": "215559"}], [{"original_text": "Today is the boy's birthday. He is turning three!", "album_id": "72157601372125902", "photo_flickr_id": "1085994590", "setting": "last-3-pick-old-and-tell", "worker_id": "WF31MFYP0TGZD1Q", "story_id": "43112", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is the boy 's birthday . he is turning three !", "storylet_id": "215560"}], [{"original_text": "Wearing his party hat, the boy shows his father the wonderful cake. ", "album_id": "72157601372125902", "photo_flickr_id": "1085995688", "setting": "last-3-pick-old-and-tell", "worker_id": "WF31MFYP0TGZD1Q", "story_id": "43112", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "wearing his party hat , the boy shows his father the wonderful cake .", "storylet_id": "215561"}], [{"original_text": "He opens all his presents and is thrilled at what he receives. ", "album_id": "72157601372125902", "photo_flickr_id": "1085995202", "setting": "last-3-pick-old-and-tell", "worker_id": "WF31MFYP0TGZD1Q", "story_id": "43112", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he opens all his presents and is thrilled at what he receives .", "storylet_id": "215562"}], [{"original_text": "His sister leans against the couch and watches. ", "album_id": "72157601372125902", "photo_flickr_id": "1085134097", "setting": "last-3-pick-old-and-tell", "worker_id": "WF31MFYP0TGZD1Q", "story_id": "43112", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his sister leans against the couch and watches .", "storylet_id": "215563"}], [{"original_text": "It has been a wonderful birthday for the boy and his family. ", "album_id": "72157601372125902", "photo_flickr_id": "1085995544", "setting": "last-3-pick-old-and-tell", "worker_id": "WF31MFYP0TGZD1Q", "story_id": "43112", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it has been a wonderful birthday for the boy and his family .", "storylet_id": "215564"}], [{"original_text": "This is Johnnie, his mom and his dad. ", "album_id": "72157601372125902", "photo_flickr_id": "1085995544", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43113", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is [male] , his mom and his dad .", "storylet_id": "215565"}], [{"original_text": "Johnnie's uncle gave him a birthday cake. There were 3 candles for Johnnie to blow out. ", "album_id": "72157601372125902", "photo_flickr_id": "1085995688", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43113", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] 's uncle gave him a birthday cake . there were 3 candles for [male] to blow out .", "storylet_id": "215566"}], [{"original_text": "The cake was decorated just like a basketball, orange with black curved lines. There were party hats, and plenty of soda.", "album_id": "72157601372125902", "photo_flickr_id": "1085994590", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43113", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cake was decorated just like a basketball , orange with black curved lines . there were party hats , and plenty of soda .", "storylet_id": "215567"}], [{"original_text": "Johnnie opened his presents. He got a toy motorcycle!", "album_id": "72157601372125902", "photo_flickr_id": "1085995102", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43113", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] opened his presents . he got a toy motorcycle !", "storylet_id": "215568"}], [{"original_text": "It took a long time to open presents but Johnnie wanted to open even more, it was so much fun. ", "album_id": "72157601372125902", "photo_flickr_id": "1085994692", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43113", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it took a long time to open presents but [male] wanted to open even more , it was so much fun .", "storylet_id": "215569"}], [{"original_text": "Chuck, Susie and their son Brody are prepared to celebrate a joyful little milestone in their lives.", "album_id": "72157601372125902", "photo_flickr_id": "1085995544", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43114", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] , [female] and their son [male] are prepared to celebrate a joyful little milestone in their lives .", "storylet_id": "215570"}], [{"original_text": "Brody is wearing his party hat and Chuck's brother presents Brody with a cake.", "album_id": "72157601372125902", "photo_flickr_id": "1085995688", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43114", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is wearing his party hat and [male] 's brother presents [male] with a cake .", "storylet_id": "215571"}], [{"original_text": "They photograph the cake so that its design will be remembered.", "album_id": "72157601372125902", "photo_flickr_id": "1085994590", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43114", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they photograph the cake so that its design will be remembered .", "storylet_id": "215572"}], [{"original_text": "Brody opens gifts in fron of a homemade Rubics cube.", "album_id": "72157601372125902", "photo_flickr_id": "1085995102", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43114", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] opens gifts in fron of a homemade rubics cube .", "storylet_id": "215573"}], [{"original_text": "The party if over, and the family has marked one more year in Brody's life.", "album_id": "72157601372125902", "photo_flickr_id": "1085994692", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43114", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the party if over , and the family has marked one more year in [male] 's life .", "storylet_id": "215574"}], [{"original_text": "I went to see a terrible singer last night.", "album_id": "49712", "photo_flickr_id": "1955212", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43115", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to see a terrible singer last night .", "storylet_id": "215575"}], [{"original_text": "She was so bad everybody left.", "album_id": "49712", "photo_flickr_id": "1955214", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43115", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was so bad everybody left .", "storylet_id": "215576"}], [{"original_text": "She continued to play the empty hall.", "album_id": "49712", "photo_flickr_id": "1955215", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43115", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she continued to play the empty hall .", "storylet_id": "215577"}], [{"original_text": "The displeased crowd went outside and torched her car.", "album_id": "49712", "photo_flickr_id": "1955217", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43115", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the displeased crowd went outside and torched her car .", "storylet_id": "215578"}], [{"original_text": "She went outside to see what was going on and somebody stole her guitar.", "album_id": "49712", "photo_flickr_id": "1969924", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43115", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she went outside to see what was going on and somebody stole her guitar .", "storylet_id": "215579"}], [{"original_text": "We get kinda loud when we're practicing.", "album_id": "49712", "photo_flickr_id": "1969928", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43116", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we get kinda loud when we 're practicing .", "storylet_id": "215580"}], [{"original_text": "So we jam in our cabin out in the woods.", "album_id": "49712", "photo_flickr_id": "1955214", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43116", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so we jam in our cabin out in the woods .", "storylet_id": "215581"}], [{"original_text": "We have a portable generator and an uninterruptible power supply to run the instruments and sound board.", "album_id": "49712", "photo_flickr_id": "1969925", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43116", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we have a portable generator and an uninterruptible power supply to run the instruments and sound board .", "storylet_id": "215582"}], [{"original_text": "A fireplace keeps up warm.", "album_id": "49712", "photo_flickr_id": "1955224", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43116", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a fireplace keeps up warm .", "storylet_id": "215583"}], [{"original_text": "See you this weekend at the club! Until then we're gonna jam at our little cabin in the woods. ", "album_id": "49712", "photo_flickr_id": "1955212", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43116", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "see you this weekend at the club ! until then we 're gon na jam at our little cabin in the woods .", "storylet_id": "215584"}], [{"original_text": "Tuning up for a little jam session tonight.", "album_id": "49712", "photo_flickr_id": "1969928", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43117", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "tuning up for a little jam session tonight .", "storylet_id": "215585"}], [{"original_text": "The lead singer plays the guitar, she has a great voice too.", "album_id": "49712", "photo_flickr_id": "1955214", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43117", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lead singer plays the guitar , she has a great voice too .", "storylet_id": "215586"}], [{"original_text": "This is an electric guitar that will go well with the sound of an acoustic guitar. ", "album_id": "49712", "photo_flickr_id": "1969925", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43117", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is an electric guitar that will go well with the sound of an acoustic guitar .", "storylet_id": "215587"}], [{"original_text": "When you are in the music you forget about everything around you.", "album_id": "49712", "photo_flickr_id": "1955224", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43117", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when you are in the music you forget about everything around you .", "storylet_id": "215588"}], [{"original_text": "This was a cool way to play some music and see what people think about it.", "album_id": "49712", "photo_flickr_id": "1955212", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43117", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was a cool way to play some music and see what people think about it .", "storylet_id": "215589"}], [{"original_text": "Lillian was performing at a small gathering of people. She played her guitar and sang.", "album_id": "49712", "photo_flickr_id": "1955212", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43118", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was performing at a small gathering of people . she played her guitar and sang .", "storylet_id": "215590"}], [{"original_text": "The people did not go near her and stayed at the far end of the room. ", "album_id": "49712", "photo_flickr_id": "1955214", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43118", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the people did not go near her and stayed at the far end of the room .", "storylet_id": "215591"}], [{"original_text": "Lillian wondered was her singing bad? She decided to just play the guitar. ", "album_id": "49712", "photo_flickr_id": "1955215", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43118", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] wondered was her singing bad ? she decided to just play the guitar .", "storylet_id": "215592"}], [{"original_text": "She knew a lot of songs and played them all. ", "album_id": "49712", "photo_flickr_id": "1955217", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43118", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she knew a lot of songs and played them all .", "storylet_id": "215593"}], [{"original_text": "When Lillian was finished, it was Chad's turn to play guitar for the crowd. ", "album_id": "49712", "photo_flickr_id": "1969924", "setting": "last-3-pick-old-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "43118", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when [female] was finished , it was location 's turn to play guitar for the crowd .", "storylet_id": "215594"}], [{"original_text": "A girl is playing the guitar and singing at the same time.", "album_id": "49712", "photo_flickr_id": "1955212", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43119", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a girl is playing the guitar and singing at the same time .", "storylet_id": "215595"}], [{"original_text": "She is performing in front of a small crowd at a party.", "album_id": "49712", "photo_flickr_id": "1955214", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43119", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she is performing in front of a small crowd at a party .", "storylet_id": "215596"}], [{"original_text": "She continues singing at the small party.", "album_id": "49712", "photo_flickr_id": "1955215", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43119", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she continues singing at the small party .", "storylet_id": "215597"}], [{"original_text": "She stops singing and just plays her guitar.", "album_id": "49712", "photo_flickr_id": "1955217", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43119", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she stops singing and just plays her guitar .", "storylet_id": "215598"}], [{"original_text": "Once she's finished, another guy comes up and gets ready to perform.", "album_id": "49712", "photo_flickr_id": "1969924", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43119", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once she 's finished , another guy comes up and gets ready to perform .", "storylet_id": "215599"}], [{"original_text": "I was walking around town and noticed a bunch of cats sitting near a shop.", "album_id": "59450", "photo_flickr_id": "2364859", "setting": "first-2-pick-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "43120", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was walking around town and noticed a bunch of cats sitting near a shop .", "storylet_id": "215600"}], [{"original_text": "I looked at the entrance and was drawn to it, being such a huge cat lover.", "album_id": "59450", "photo_flickr_id": "2364776", "setting": "first-2-pick-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "43120", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i looked at the entrance and was drawn to it , being such a huge cat lover .", "storylet_id": "215601"}], [{"original_text": "I went in and found so many neat and wonderful things there, including these crowns with gems.", "album_id": "59450", "photo_flickr_id": "2364811", "setting": "first-2-pick-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "43120", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i went in and found so many neat and wonderful things there , including these crowns with gems .", "storylet_id": "215602"}], [{"original_text": "I also was able to look through a bin of colored stones and gems, and I picked a few out.", "album_id": "59450", "photo_flickr_id": "2364734", "setting": "first-2-pick-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "43120", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also was able to look through a bin of colored stones and gems , and i picked a few out .", "storylet_id": "215603"}], [{"original_text": "After buying a bag's worth of craft supplies and gems, I went out of the store and went to the fruit market. It was a good day for shopping!", "album_id": "59450", "photo_flickr_id": "2364660", "setting": "first-2-pick-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "43120", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after buying a bag 's worth of craft supplies and gems , i went out of the store and went to the fruit market . it was a good day for shopping !", "storylet_id": "215604"}], [{"original_text": "A group of friends gather for a Christmas party.", "album_id": "59450", "photo_flickr_id": "2364862", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43121", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends gather for a christmas party .", "storylet_id": "215605"}], [{"original_text": "Two of them sit beside the fire place and keep warm.", "album_id": "59450", "photo_flickr_id": "2364791", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43121", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "two of them sit beside the fire place and keep warm .", "storylet_id": "215606"}], [{"original_text": "Many of the others are cuddled up together on the couch.", "album_id": "59450", "photo_flickr_id": "2364660", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43121", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many of the others are cuddled up together on the couch .", "storylet_id": "215607"}], [{"original_text": "A woman washes the dishes that were used from the meal they had.", "album_id": "59450", "photo_flickr_id": "2364701", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43121", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a woman washes the dishes that were used from the meal they had .", "storylet_id": "215608"}], [{"original_text": "They sit at the table and discuss how their lives have been going.", "album_id": "59450", "photo_flickr_id": "2364716", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43121", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they sit at the table and discuss how their lives have been going .", "storylet_id": "215609"}], [{"original_text": "Friends gathered today at the house.", "album_id": "59450", "photo_flickr_id": "2364862", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43122", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends gathered today at the house .", "storylet_id": "215610"}], [{"original_text": "They got cozy near the fireplace.", "album_id": "59450", "photo_flickr_id": "2364791", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43122", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got cozy near the fireplace .", "storylet_id": "215611"}], [{"original_text": "We played board games and had fun.", "album_id": "59450", "photo_flickr_id": "2364660", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43122", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we played board games and had fun .", "storylet_id": "215612"}], [{"original_text": "Later, one of the friends helped clean the dishes.", "album_id": "59450", "photo_flickr_id": "2364701", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43122", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later , one of the friends helped clean the dishes .", "storylet_id": "215613"}], [{"original_text": "Lastly, the night ended successfully.", "album_id": "59450", "photo_flickr_id": "2364716", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43122", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , the night ended successfully .", "storylet_id": "215614"}], [{"original_text": "I came to visit family.", "album_id": "59450", "photo_flickr_id": "2364859", "setting": "last-3-pick-old-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "43123", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i came to visit family .", "storylet_id": "215615"}], [{"original_text": "My little sister was there.", "album_id": "59450", "photo_flickr_id": "2364776", "setting": "last-3-pick-old-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "43123", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my little sister was there .", "storylet_id": "215616"}], [{"original_text": "My brother wanted to have a drink.", "album_id": "59450", "photo_flickr_id": "2364811", "setting": "last-3-pick-old-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "43123", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brother wanted to have a drink .", "storylet_id": "215617"}], [{"original_text": "Our cousin was taking a break.", "album_id": "59450", "photo_flickr_id": "2364734", "setting": "last-3-pick-old-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "43123", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our cousin was taking a break .", "storylet_id": "215618"}], [{"original_text": "We all sat there and had a good time.", "album_id": "59450", "photo_flickr_id": "2364660", "setting": "last-3-pick-old-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "43123", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all sat there and had a good time .", "storylet_id": "215619"}], [{"original_text": "The man was not happy", "album_id": "59450", "photo_flickr_id": "2364859", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43124", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man was not happy", "storylet_id": "215620"}], [{"original_text": "that the christmas party was happening.", "album_id": "59450", "photo_flickr_id": "2364776", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43124", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that the christmas party was happening .", "storylet_id": "215621"}], [{"original_text": "Another guy got a drink ", "album_id": "59450", "photo_flickr_id": "2364811", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43124", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another guy got a drink", "storylet_id": "215622"}], [{"original_text": "and the girl looked at him", "album_id": "59450", "photo_flickr_id": "2364734", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43124", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the girl looked at him", "storylet_id": "215623"}], [{"original_text": "as they were taking photos.", "album_id": "59450", "photo_flickr_id": "2364660", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43124", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as they were taking photos .", "storylet_id": "215624"}], [{"original_text": "It is a birthday party and the apartment is decorated.", "album_id": "80673", "photo_flickr_id": "3217320", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43125", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is a birthday party and the apartment is decorated .", "storylet_id": "215625"}], [{"original_text": "Stars are hanging down from the ceiling.", "album_id": "80673", "photo_flickr_id": "3217515", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43125", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "stars are hanging down from the ceiling .", "storylet_id": "215626"}], [{"original_text": "The birthday boys starts opening his presents.", "album_id": "80673", "photo_flickr_id": "3217795", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43125", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the birthday boys starts opening his presents .", "storylet_id": "215627"}], [{"original_text": "He opens his next present it was something he really wanted.", "album_id": "80673", "photo_flickr_id": "3217903", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43125", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he opens his next present it was something he really wanted .", "storylet_id": "215628"}], [{"original_text": "A view of the ceiling and staircase are amazing.", "album_id": "80673", "photo_flickr_id": "3218105", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43125", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a view of the ceiling and staircase are amazing .", "storylet_id": "215629"}], [{"original_text": "It's a surprise party !", "album_id": "80673", "photo_flickr_id": "3217718", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43126", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a surprise party !", "storylet_id": "215630"}], [{"original_text": "He makes his wish and blows out the candles.", "album_id": "80673", "photo_flickr_id": "3217731", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43126", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he makes his wish and blows out the candles .", "storylet_id": "215631"}], [{"original_text": "Opening up one of many presents.", "album_id": "80673", "photo_flickr_id": "3217795", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43126", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "opening up one of many presents .", "storylet_id": "215632"}], [{"original_text": "He received a great shirt for his birthday.", "album_id": "80673", "photo_flickr_id": "3217809", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43126", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he received a great shirt for his birthday .", "storylet_id": "215633"}], [{"original_text": "Gaming gloves always make a good gift.", "album_id": "80673", "photo_flickr_id": "3217915", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43126", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "gaming gloves always make a good gift .", "storylet_id": "215634"}], [{"original_text": "After awhile things started to get blurry.", "album_id": "80673", "photo_flickr_id": "3217320", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43127", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after awhile things started to get blurry .", "storylet_id": "215635"}], [{"original_text": "I glanced around thinking that the blur was a result of the dim lights.", "album_id": "80673", "photo_flickr_id": "3217515", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43127", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i glanced around thinking that the blur was a result of the dim lights .", "storylet_id": "215636"}], [{"original_text": "Awkward projections presented themselves onto a canvas, making body parts seem transparent.", "album_id": "80673", "photo_flickr_id": "3217795", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43127", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "awkward projections presented themselves onto a canvas , making body parts seem transparent .", "storylet_id": "215637"}], [{"original_text": "My vision continued to worsen throughout the night, even after Brad opened his gifts.", "album_id": "80673", "photo_flickr_id": "3217903", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43127", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my vision continued to worsen throughout the night , even after [male] opened his gifts .", "storylet_id": "215638"}], [{"original_text": "Finally I had to turn on the lights, realizing that the darkness was at fault for my strange vision.", "album_id": "80673", "photo_flickr_id": "3218105", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43127", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally i had to turn on the lights , realizing that the darkness was at fault for my strange vision .", "storylet_id": "215639"}], [{"original_text": "\"You're a Star\" was the theme of Ted's birthday party. ", "album_id": "80673", "photo_flickr_id": "3217320", "setting": "last-3-pick-old-and-tell", "worker_id": "LTLYL82FNFJGCJP", "story_id": "43128", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "`` you 're a star '' was the theme of [male] 's birthday party .", "storylet_id": "215640"}], [{"original_text": "Star decorations could be found hanging and in different places. ", "album_id": "80673", "photo_flickr_id": "3217515", "setting": "last-3-pick-old-and-tell", "worker_id": "LTLYL82FNFJGCJP", "story_id": "43128", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "star decorations could be found hanging and in different places .", "storylet_id": "215641"}], [{"original_text": "Ted carefully unwrapped his present by untying the ribbon. ", "album_id": "80673", "photo_flickr_id": "3217795", "setting": "last-3-pick-old-and-tell", "worker_id": "LTLYL82FNFJGCJP", "story_id": "43128", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] carefully unwrapped his present by untying the ribbon .", "storylet_id": "215642"}], [{"original_text": "He was so excited to see what was inside once he got it opened. ", "album_id": "80673", "photo_flickr_id": "3217903", "setting": "last-3-pick-old-and-tell", "worker_id": "LTLYL82FNFJGCJP", "story_id": "43128", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was so excited to see what was inside once he got it opened .", "storylet_id": "215643"}], [{"original_text": "The stars remained up after his birthday was over so he could remember his day. ", "album_id": "80673", "photo_flickr_id": "3218105", "setting": "last-3-pick-old-and-tell", "worker_id": "LTLYL82FNFJGCJP", "story_id": "43128", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the stars remained up after his birthday was over so he could remember his day .", "storylet_id": "215644"}], [{"original_text": "The couple was happy", "album_id": "80673", "photo_flickr_id": "3217320", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43129", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple was happy", "storylet_id": "215645"}], [{"original_text": "they were dancing in the stars.", "album_id": "80673", "photo_flickr_id": "3217515", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43129", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were dancing in the stars .", "storylet_id": "215646"}], [{"original_text": "The guy got a gift", "album_id": "80673", "photo_flickr_id": "3217795", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43129", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guy got a gift", "storylet_id": "215647"}], [{"original_text": "and saw a figure that he got", "album_id": "80673", "photo_flickr_id": "3217903", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43129", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and saw a figure that he got", "storylet_id": "215648"}], [{"original_text": "before taking photos of the stars again.", "album_id": "80673", "photo_flickr_id": "3218105", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43129", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before taking photos of the stars again .", "storylet_id": "215649"}], [{"original_text": "The guys were waiting for the hosts to seat them at the table.", "album_id": "140280", "photo_flickr_id": "5568844", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43130", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guys were waiting for the hosts to seat them at the table .", "storylet_id": "215650"}], [{"original_text": "It was a different type of restaurant, where the is already awaiting your arrival.", "album_id": "140280", "photo_flickr_id": "5568837", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43130", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a different type of restaurant , where the is already awaiting your arrival .", "storylet_id": "215651"}], [{"original_text": "Then someone shared a joke about how it was nice for the food to wait on people for a change.", "album_id": "140280", "photo_flickr_id": "5568678", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43130", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then someone shared a joke about how it was nice for the food to wait on people for a change .", "storylet_id": "215652"}], [{"original_text": "Not everyone agreed that this was a good technique.", "album_id": "140280", "photo_flickr_id": "5568664", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43130", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "not everyone agreed that this was a good technique .", "storylet_id": "215653"}], [{"original_text": "Then one guy pointed out that they were seated at the wrong table.", "album_id": "140280", "photo_flickr_id": "5568668", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43130", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then one guy pointed out that they were seated at the wrong table .", "storylet_id": "215654"}], [{"original_text": "The guys from the office went out to lunch on Tuesday. ", "album_id": "140280", "photo_flickr_id": "5568663", "setting": "first-2-pick-and-tell", "worker_id": "SD6RS3F39UEJHK1", "story_id": "43131", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guys from the office went out to lunch on tuesday .", "storylet_id": "215655"}], [{"original_text": "The gathered by the tandoori oven for some chicken.", "album_id": "140280", "photo_flickr_id": "5568844", "setting": "first-2-pick-and-tell", "worker_id": "SD6RS3F39UEJHK1", "story_id": "43131", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the gathered by the tandoori oven for some chicken .", "storylet_id": "215656"}], [{"original_text": "They patiently waited while Sudhir chatted with the cook. ", "album_id": "140280", "photo_flickr_id": "5568858", "setting": "first-2-pick-and-tell", "worker_id": "SD6RS3F39UEJHK1", "story_id": "43131", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they patiently waited while sudhir chatted with the cook .", "storylet_id": "215657"}], [{"original_text": "Sudhir even had a photo taken with another coworker. ", "album_id": "140280", "photo_flickr_id": "5568930", "setting": "first-2-pick-and-tell", "worker_id": "SD6RS3F39UEJHK1", "story_id": "43131", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sudhir even had a photo taken with another coworker .", "storylet_id": "215658"}], [{"original_text": "Later that day, one of the guys had a piece of his birthday cake. ", "album_id": "140280", "photo_flickr_id": "5568931", "setting": "first-2-pick-and-tell", "worker_id": "SD6RS3F39UEJHK1", "story_id": "43131", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later that day , one of the guys had a piece of his birthday cake .", "storylet_id": "215659"}], [{"original_text": "Everyone are taking pictures before dinner", "album_id": "140280", "photo_flickr_id": "5568844", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "43132", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone are taking pictures before dinner", "storylet_id": "215660"}], [{"original_text": "More pictures are taking at the dinner table before they start eating", "album_id": "140280", "photo_flickr_id": "5568837", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "43132", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "more pictures are taking at the dinner table before they start eating", "storylet_id": "215661"}], [{"original_text": "Pictures are snapped while people are having fun", "album_id": "140280", "photo_flickr_id": "5568678", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "43132", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "pictures are snapped while people are having fun", "storylet_id": "215662"}], [{"original_text": "People are still getting pictures taken of them while they finish up there food", "album_id": "140280", "photo_flickr_id": "5568664", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "43132", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people are still getting pictures taken of them while they finish up there food", "storylet_id": "215663"}], [{"original_text": "Last picture taken before dinner was over", "album_id": "140280", "photo_flickr_id": "5568668", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "43132", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last picture taken before dinner was over", "storylet_id": "215664"}], [{"original_text": "The family got together for a dinner gathering. They rented a place for one day.", "album_id": "140280", "photo_flickr_id": "5568844", "setting": "last-3-pick-old-and-tell", "worker_id": "7SXRU2WQNEH4FHX", "story_id": "43133", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family got together for a dinner gathering . they rented a place for one day .", "storylet_id": "215665"}], [{"original_text": "We are so glad we got reunited because it's been awhile since we seen each other.", "album_id": "140280", "photo_flickr_id": "5568837", "setting": "last-3-pick-old-and-tell", "worker_id": "7SXRU2WQNEH4FHX", "story_id": "43133", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are so glad we got reunited because it 's been awhile since we seen each other .", "storylet_id": "215666"}], [{"original_text": "A few of us got together separately to take some photos.", "album_id": "140280", "photo_flickr_id": "5568678", "setting": "last-3-pick-old-and-tell", "worker_id": "7SXRU2WQNEH4FHX", "story_id": "43133", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few of us got together separately to take some photos .", "storylet_id": "215667"}], [{"original_text": "We also took some photos of each one of by ourselves at the family gathering.", "album_id": "140280", "photo_flickr_id": "5568664", "setting": "last-3-pick-old-and-tell", "worker_id": "7SXRU2WQNEH4FHX", "story_id": "43133", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also took some photos of each one of by ourselves at the family gathering .", "storylet_id": "215668"}], [{"original_text": "The day is almost over. Just a little more reminiscing and then we all have to go home.", "album_id": "140280", "photo_flickr_id": "5568668", "setting": "last-3-pick-old-and-tell", "worker_id": "7SXRU2WQNEH4FHX", "story_id": "43133", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day is almost over . just a little more reminiscing and then we all have to go home .", "storylet_id": "215669"}], [{"original_text": "My little party was going along greatly. ", "album_id": "140280", "photo_flickr_id": "5568663", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43134", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my little party was going along greatly .", "storylet_id": "215670"}], [{"original_text": "The boys appreciated the music I picked out.", "album_id": "140280", "photo_flickr_id": "5568844", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43134", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boys appreciated the music i picked out .", "storylet_id": "215671"}], [{"original_text": "Some dancing happened shortly after Outkast came on.", "album_id": "140280", "photo_flickr_id": "5568858", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43134", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some dancing happened shortly after outkast came on .", "storylet_id": "215672"}], [{"original_text": "Jerimiah had the time of his life.", "album_id": "140280", "photo_flickr_id": "5568930", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43134", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "jerimiah had the time of his life .", "storylet_id": "215673"}], [{"original_text": "My uncle Seth had a great time in the corner of the party. ", "album_id": "140280", "photo_flickr_id": "5568931", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43134", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my uncle [male] had a great time in the corner of the party .", "storylet_id": "215674"}], [{"original_text": "There were tons of people at the protest.", "album_id": "129153", "photo_flickr_id": "5128252", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43135", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were tons of people at the protest .", "storylet_id": "215675"}], [{"original_text": "I had a great time meeting new people there.", "album_id": "129153", "photo_flickr_id": "5128297", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43135", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had a great time meeting new people there .", "storylet_id": "215676"}], [{"original_text": "They all had some very interesting things to say.", "album_id": "129153", "photo_flickr_id": "5128335", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43135", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all had some very interesting things to say .", "storylet_id": "215677"}], [{"original_text": "After a while it got even more crowded.", "album_id": "129153", "photo_flickr_id": "5128540", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43135", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a while it got even more crowded .", "storylet_id": "215678"}], [{"original_text": "I decided to leave while I had the chance.", "album_id": "129153", "photo_flickr_id": "5128590", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43135", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to leave while i had the chance .", "storylet_id": "215679"}], [{"original_text": "It rained at the track and field event today.", "album_id": "129153", "photo_flickr_id": "5129375", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43136", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it rained at the track and field event today .", "storylet_id": "215680"}], [{"original_text": "Nevertheless, they had it anyways.", "album_id": "129153", "photo_flickr_id": "5128297", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43136", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "nevertheless , they had it anyways .", "storylet_id": "215681"}], [{"original_text": "Bikes like these have poor brakes in the rain.", "album_id": "129153", "photo_flickr_id": "5128540", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43136", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "bikes like these have poor brakes in the rain .", "storylet_id": "215682"}], [{"original_text": "The runners ran in the rain.", "album_id": "129153", "photo_flickr_id": "5128751", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43136", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the runners ran in the rain .", "storylet_id": "215683"}], [{"original_text": "Later they passed out awards.", "album_id": "129153", "photo_flickr_id": "5129914", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43136", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later they passed out awards .", "storylet_id": "215684"}], [{"original_text": "She was really excited to start her birthday.", "album_id": "129153", "photo_flickr_id": "5129375", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "43137", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she was really excited to start her birthday .", "storylet_id": "215685"}], [{"original_text": "Getting presents was always her favorite part.", "album_id": "129153", "photo_flickr_id": "5128297", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "43137", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "getting presents was always her favorite part .", "storylet_id": "215686"}], [{"original_text": "She put one of them in her window already.", "album_id": "129153", "photo_flickr_id": "5128540", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "43137", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she put one of them in her window already .", "storylet_id": "215687"}], [{"original_text": "Even the cat wanted to wish her a happy birthday.", "album_id": "129153", "photo_flickr_id": "5128751", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "43137", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the cat wanted to wish her a happy birthday .", "storylet_id": "215688"}], [{"original_text": "It was nice to spend the evening with friends. ", "album_id": "129153", "photo_flickr_id": "5129914", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "43137", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was nice to spend the evening with friends .", "storylet_id": "215689"}], [{"original_text": "It's her birthday, she has presents to open.", "album_id": "129153", "photo_flickr_id": "5128252", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43138", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's her birthday , she has presents to open .", "storylet_id": "215690"}], [{"original_text": "She is happy sitting on her couch.", "album_id": "129153", "photo_flickr_id": "5128297", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43138", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she is happy sitting on her couch .", "storylet_id": "215691"}], [{"original_text": "There are many pillows all around the girls legs.", "album_id": "129153", "photo_flickr_id": "5128335", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43138", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are many pillows all around the girls legs .", "storylet_id": "215692"}], [{"original_text": "At night the room is dimly lit.", "album_id": "129153", "photo_flickr_id": "5128540", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43138", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at night the room is dimly lit .", "storylet_id": "215693"}], [{"original_text": "Her friends are gonna present her with a cake.", "album_id": "129153", "photo_flickr_id": "5128590", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43138", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her friends are gon na present her with a cake .", "storylet_id": "215694"}], [{"original_text": "Mary has been hard at work making things for the wedding.", "album_id": "129153", "photo_flickr_id": "5128252", "setting": "last-3-pick-old-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "43139", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] has been hard at work making things for the wedding .", "storylet_id": "215695"}], [{"original_text": "She's got the colors picked out and everything.", "album_id": "129153", "photo_flickr_id": "5128297", "setting": "last-3-pick-old-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "43139", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she 's got the colors picked out and everything .", "storylet_id": "215696"}], [{"original_text": "Think she was tired of me taking her picture...but she looks so cute.", "album_id": "129153", "photo_flickr_id": "5128335", "setting": "last-3-pick-old-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "43139", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "think she was tired of me taking her picture ... but she looks so cute .", "storylet_id": "215697"}], [{"original_text": "Our little romantic spot in the bedroom. I really like it.", "album_id": "129153", "photo_flickr_id": "5128540", "setting": "last-3-pick-old-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "43139", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our little romantic spot in the bedroom . i really like it .", "storylet_id": "215698"}], [{"original_text": "Now her friends are here to help her with some of the arrangements. Time for me to leave.", "album_id": "129153", "photo_flickr_id": "5128590", "setting": "last-3-pick-old-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "43139", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now her friends are here to help her with some of the arrangements . time for me to leave .", "storylet_id": "215699"}], [{"original_text": "The kids played on the stairwell while mother cleaned. ", "album_id": "190837", "photo_flickr_id": "7646196", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43140", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids played on the stairwell while mother cleaned .", "storylet_id": "215700"}], [{"original_text": "Once she was done they played in the den. ", "album_id": "190837", "photo_flickr_id": "7646504", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43140", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once she was done they played in the den .", "storylet_id": "215701"}], [{"original_text": "Jacob got out his pet frog. ", "album_id": "190837", "photo_flickr_id": "7646660", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43140", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] got out his pet frog .", "storylet_id": "215702"}], [{"original_text": "William played with the dog while Jimmy watched the baby. ", "album_id": "190837", "photo_flickr_id": "7647354", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43140", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] played with the dog while [male] watched the baby .", "storylet_id": "215703"}], [{"original_text": "Then mother let them look at her old photo album, telling them stories about the people they had never met. ", "album_id": "190837", "photo_flickr_id": "7647511", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43140", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then mother let them look at her old photo album , telling them stories about the people they had never met .", "storylet_id": "215704"}], [{"original_text": "It was a day at the farm. First, the ducks were fed.", "album_id": "190837", "photo_flickr_id": "7646613", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "43141", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a day at the farm . first , the ducks were fed .", "storylet_id": "215705"}], [{"original_text": "Then he had to play with the puppy. He is so cute.", "album_id": "190837", "photo_flickr_id": "7646739", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "43141", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then he had to play with the puppy . he is so cute .", "storylet_id": "215706"}], [{"original_text": "Riding a baby bull was a first for him. He did good though.", "album_id": "190837", "photo_flickr_id": "7646844", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "43141", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "riding a baby bull was a first for him . he did good though .", "storylet_id": "215707"}], [{"original_text": "The baby horse was so cute. He loved feeding him.", "album_id": "190837", "photo_flickr_id": "7646898", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "43141", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the baby horse was so cute . he loved feeding him .", "storylet_id": "215708"}], [{"original_text": "Then he finally met the baby horse that he wanted to see. It was a great day.", "album_id": "190837", "photo_flickr_id": "7647077", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "43141", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then he finally met the baby horse that he wanted to see . it was a great day .", "storylet_id": "215709"}], [{"original_text": "Here is a photo of my brothers and I when we were kids.", "album_id": "190837", "photo_flickr_id": "7646196", "setting": "last-3-pick-old-and-tell", "worker_id": "6O5J6YWQ6NH16BV", "story_id": "43142", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is a photo of my brothers and i when we were kids .", "storylet_id": "215710"}], [{"original_text": "My brother loved to play with his forest exploration toy.", "album_id": "190837", "photo_flickr_id": "7646504", "setting": "last-3-pick-old-and-tell", "worker_id": "6O5J6YWQ6NH16BV", "story_id": "43142", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my brother loved to play with his forest exploration toy .", "storylet_id": "215711"}], [{"original_text": "Here's my brother Ted, with his pet frog.", "album_id": "190837", "photo_flickr_id": "7646660", "setting": "last-3-pick-old-and-tell", "worker_id": "6O5J6YWQ6NH16BV", "story_id": "43142", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's my brother [male] , with his pet frog .", "storylet_id": "215712"}], [{"original_text": "Here I am with my dog and my brothers.", "album_id": "190837", "photo_flickr_id": "7647354", "setting": "last-3-pick-old-and-tell", "worker_id": "6O5J6YWQ6NH16BV", "story_id": "43142", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here i am with my dog and my brothers .", "storylet_id": "215713"}], [{"original_text": "We also came across this old photo of my Grandpa and his tractor.", "album_id": "190837", "photo_flickr_id": "7647511", "setting": "last-3-pick-old-and-tell", "worker_id": "6O5J6YWQ6NH16BV", "story_id": "43142", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also came across this old photo of my grandpa and his tractor .", "storylet_id": "215714"}], [{"original_text": "Time to play.", "album_id": "190837", "photo_flickr_id": "7646196", "setting": "last-3-pick-old-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43143", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "time to play .", "storylet_id": "215715"}], [{"original_text": "Then we played some more.", "album_id": "190837", "photo_flickr_id": "7646504", "setting": "last-3-pick-old-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43143", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we played some more .", "storylet_id": "215716"}], [{"original_text": "This was our frog.", "album_id": "190837", "photo_flickr_id": "7646660", "setting": "last-3-pick-old-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43143", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was our frog .", "storylet_id": "215717"}], [{"original_text": "And this was our dog.", "album_id": "190837", "photo_flickr_id": "7647354", "setting": "last-3-pick-old-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43143", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and this was our dog .", "storylet_id": "215718"}], [{"original_text": "Hello to you grandpa!", "album_id": "190837", "photo_flickr_id": "7647511", "setting": "last-3-pick-old-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43143", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "hello to you grandpa !", "storylet_id": "215719"}], [{"original_text": "Found this picture going through stuff.", "album_id": "190837", "photo_flickr_id": "7646196", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43144", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "found this picture going through stuff .", "storylet_id": "215720"}], [{"original_text": "The reflections back of Christmas past.", "album_id": "190837", "photo_flickr_id": "7646504", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43144", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the reflections back of christmas past .", "storylet_id": "215721"}], [{"original_text": "When times were simpler.", "album_id": "190837", "photo_flickr_id": "7646660", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43144", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when times were simpler .", "storylet_id": "215722"}], [{"original_text": "Puppies and babies are s good memory.", "album_id": "190837", "photo_flickr_id": "7647354", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43144", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "puppies and babies are s good memory .", "storylet_id": "215723"}], [{"original_text": "The oldest photo was of great grandpa.", "album_id": "190837", "photo_flickr_id": "7647511", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43144", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the oldest photo was of great grandpa .", "storylet_id": "215724"}], [{"original_text": "The kids are opening up their Christmas presents. ", "album_id": "212315", "photo_flickr_id": "8554616", "setting": "first-2-pick-and-tell", "worker_id": "ROQV94CP8N0KLMO", "story_id": "43145", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids are opening up their christmas presents .", "storylet_id": "215725"}], [{"original_text": "The girl nibbles on a blue present decoration sticky.", "album_id": "212315", "photo_flickr_id": "8554436", "setting": "first-2-pick-and-tell", "worker_id": "ROQV94CP8N0KLMO", "story_id": "43145", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girl nibbles on a blue present decoration sticky .", "storylet_id": "215726"}], [{"original_text": "The boy lifts up a bag right before he takes out something inside it.", "album_id": "212315", "photo_flickr_id": "8554840", "setting": "first-2-pick-and-tell", "worker_id": "ROQV94CP8N0KLMO", "story_id": "43145", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boy lifts up a bag right before he takes out something inside it .", "storylet_id": "215727"}], [{"original_text": "The girl starts to fiddle with a small toy she got.", "album_id": "212315", "photo_flickr_id": "8554752", "setting": "first-2-pick-and-tell", "worker_id": "ROQV94CP8N0KLMO", "story_id": "43145", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the girl starts to fiddle with a small toy she got .", "storylet_id": "215728"}], [{"original_text": "The girl then starts to tear the plastic wrap off a large dvd case.", "album_id": "212315", "photo_flickr_id": "8554653", "setting": "first-2-pick-and-tell", "worker_id": "ROQV94CP8N0KLMO", "story_id": "43145", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girl then starts to tear the plastic wrap off a large dvd case .", "storylet_id": "215729"}], [{"original_text": "Billy was quite enthused about his birthday present from Grandma Fran.", "album_id": "212315", "photo_flickr_id": "8554364", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "43146", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was quite enthused about his birthday present from grandma fran .", "storylet_id": "215730"}], [{"original_text": "Fran seemed pleased with his approval.", "album_id": "212315", "photo_flickr_id": "8554400", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "43146", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fran seemed pleased with his approval .", "storylet_id": "215731"}], [{"original_text": "Dad seems to think that he takes better pics with this old camera than I do on my phone.", "album_id": "212315", "photo_flickr_id": "8554460", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "43146", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad seems to think that he takes better pics with this old camera than i do on my phone .", "storylet_id": "215732"}], [{"original_text": "Zoey wants to open some presents also!", "album_id": "212315", "photo_flickr_id": "8554534", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "43146", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] wants to open some presents also !", "storylet_id": "215733"}], [{"original_text": "This gift bag had a picture of billy on it!", "album_id": "212315", "photo_flickr_id": "8554840", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "43146", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this gift bag had a picture of billy on it !", "storylet_id": "215734"}], [{"original_text": "Today was a little boy's birthday party.", "album_id": "212315", "photo_flickr_id": "8554616", "setting": "last-3-pick-old-and-tell", "worker_id": "W81SRCCMY1UUSNX", "story_id": "43147", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was a little boy 's birthday party .", "storylet_id": "215735"}], [{"original_text": "As you can see, his little sister was really excited.", "album_id": "212315", "photo_flickr_id": "8554436", "setting": "last-3-pick-old-and-tell", "worker_id": "W81SRCCMY1UUSNX", "story_id": "43147", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as you can see , his little sister was really excited .", "storylet_id": "215736"}], [{"original_text": "One of his gifts had a monkey on the bag.", "album_id": "212315", "photo_flickr_id": "8554840", "setting": "last-3-pick-old-and-tell", "worker_id": "W81SRCCMY1UUSNX", "story_id": "43147", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of his gifts had a monkey on the bag .", "storylet_id": "215737"}], [{"original_text": "His sisters helped open his gifts.", "album_id": "212315", "photo_flickr_id": "8554752", "setting": "last-3-pick-old-and-tell", "worker_id": "W81SRCCMY1UUSNX", "story_id": "43147", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "his sisters helped open his gifts .", "storylet_id": "215738"}], [{"original_text": "He got a video game and she is opening it with her teeth.", "album_id": "212315", "photo_flickr_id": "8554653", "setting": "last-3-pick-old-and-tell", "worker_id": "W81SRCCMY1UUSNX", "story_id": "43147", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he got a video game and she is opening it with her teeth .", "storylet_id": "215739"}], [{"original_text": "It was the twins' birthdays today.", "album_id": "212315", "photo_flickr_id": "8554616", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "43148", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the twins ' birthdays today .", "storylet_id": "215740"}], [{"original_text": "Jenny decided that she wanted to eat this.", "album_id": "212315", "photo_flickr_id": "8554436", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "43148", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] decided that she wanted to eat this .", "storylet_id": "215741"}], [{"original_text": "Harry loved this monkey, and we thought it fit with his personality.", "album_id": "212315", "photo_flickr_id": "8554840", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "43148", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] loved this monkey , and we thought it fit with his personality .", "storylet_id": "215742"}], [{"original_text": "Jenny was the most patient about opening her gifts.", "album_id": "212315", "photo_flickr_id": "8554752", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "43148", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] was the most patient about opening her gifts .", "storylet_id": "215743"}], [{"original_text": "She really wanted to get into this one and play it, though.", "album_id": "212315", "photo_flickr_id": "8554653", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "43148", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she really wanted to get into this one and play it , though .", "storylet_id": "215744"}], [{"original_text": "Check out what I got mom! This is awesome!", "album_id": "212315", "photo_flickr_id": "8554616", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43149", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "check out what i got mom ! this is awesome !", "storylet_id": "215745"}], [{"original_text": "Well, if we ain't gonna eat cake, then I'm eating this bow.", "album_id": "212315", "photo_flickr_id": "8554436", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43149", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "well , if we ai n't gon na eat cake , then i 'm eating this bow .", "storylet_id": "215746"}], [{"original_text": "Do you see the resemblance? ", "album_id": "212315", "photo_flickr_id": "8554840", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43149", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "do you see the resemblance ?", "storylet_id": "215747"}], [{"original_text": "Hmmm, how do I work this thing?", "album_id": "212315", "photo_flickr_id": "8554752", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43149", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "hmmm , how do i work this thing ?", "storylet_id": "215748"}], [{"original_text": "Yeah! Let's play some Playstation!", "album_id": "212315", "photo_flickr_id": "8554653", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43149", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "yeah ! let 's play some playstation !", "storylet_id": "215749"}], [{"original_text": "Here is Sarah with proud mom and pop before her baptism.", "album_id": "244660", "photo_flickr_id": "9908992", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "43150", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is [female] with proud mom and pop before her baptism .", "storylet_id": "215750"}], [{"original_text": "Grandma Fran watches the action.", "album_id": "244660", "photo_flickr_id": "9909115", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "43150", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma fran watches the action .", "storylet_id": "215751"}], [{"original_text": "Sarah enjoys a post ceremony snack.", "album_id": "244660", "photo_flickr_id": "9909140", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "43150", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] enjoys a post ceremony snack .", "storylet_id": "215752"}], [{"original_text": "She loves being entertained by her cousins.", "album_id": "244660", "photo_flickr_id": "9909229", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "43150", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she loves being entertained by her cousins .", "storylet_id": "215753"}], [{"original_text": "Getting tired now, just about to take a much needed nap.", "album_id": "244660", "photo_flickr_id": "9909260", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "43150", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "getting tired now , just about to take a much needed nap .", "storylet_id": "215754"}], [{"original_text": "Today was time for family pictures. It was really hard to get Amy to sit still.", "album_id": "244660", "photo_flickr_id": "9908992", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "43151", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was time for family pictures . it was really hard to get [female] to sit still .", "storylet_id": "215755"}], [{"original_text": "We eventually did get a nice family photo however. We look great!", "album_id": "244660", "photo_flickr_id": "9909053", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "43151", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we eventually did get a nice family photo however . we look great !", "storylet_id": "215756"}], [{"original_text": "Grandma just couldn't help but laugh at the faces Amy was making.", "album_id": "244660", "photo_flickr_id": "9909115", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "43151", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandma just could n't help but laugh at the faces [female] was making .", "storylet_id": "215757"}], [{"original_text": "We ended up having a short lunch after all the picture taking.", "album_id": "244660", "photo_flickr_id": "9909140", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "43151", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we ended up having a short lunch after all the picture taking .", "storylet_id": "215758"}], [{"original_text": "Amy looked absolutely adorable in pigtails. Seems she's ready for a nap after a long day.", "album_id": "244660", "photo_flickr_id": "9909260", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "43151", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] looked absolutely adorable in pigtails . seems she 's ready for a nap after a long day .", "storylet_id": "215759"}], [{"original_text": "Mary and Jose bring their daughter Amy to visit.", "album_id": "244660", "photo_flickr_id": "9908992", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "43152", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [male] bring their daughter [female] to visit .", "storylet_id": "215760"}], [{"original_text": "Grandma's famous smirk.", "album_id": "244660", "photo_flickr_id": "9909115", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "43152", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma 's famous smirk .", "storylet_id": "215761"}], [{"original_text": "Amy enjoys her snack.", "album_id": "244660", "photo_flickr_id": "9909140", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "43152", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] enjoys her snack .", "storylet_id": "215762"}], [{"original_text": "Her cousins flock to her.", "album_id": "244660", "photo_flickr_id": "9909229", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "43152", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her cousins flock to her .", "storylet_id": "215763"}], [{"original_text": "Amy is not impressed. She continues eating.", "album_id": "244660", "photo_flickr_id": "9909260", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "43152", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] is not impressed . she continues eating .", "storylet_id": "215764"}], [{"original_text": "The couple took a picture with there baby.", "album_id": "244660", "photo_flickr_id": "9908992", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "43153", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple took a picture with there baby .", "storylet_id": "215765"}], [{"original_text": "They took another picture.", "album_id": "244660", "photo_flickr_id": "9909053", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "43153", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took another picture .", "storylet_id": "215766"}], [{"original_text": "The grandma was not pleased.", "album_id": "244660", "photo_flickr_id": "9909115", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "43153", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the grandma was not pleased .", "storylet_id": "215767"}], [{"original_text": "The baby ate her pudding.", "album_id": "244660", "photo_flickr_id": "9909140", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "43153", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the baby ate her pudding .", "storylet_id": "215768"}], [{"original_text": "She then drank some water.", "album_id": "244660", "photo_flickr_id": "9909260", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "43153", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she then drank some water .", "storylet_id": "215769"}], [{"original_text": "All dressed up for our little girls first birthday.", "album_id": "244660", "photo_flickr_id": "9908992", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "43154", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all dressed up for our little girls first birthday .", "storylet_id": "215770"}], [{"original_text": "Grandma was not pleased at all the excitement and noise.", "album_id": "244660", "photo_flickr_id": "9909115", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "43154", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma was not pleased at all the excitement and noise .", "storylet_id": "215771"}], [{"original_text": "One year old and supper chill about the whole thing. ", "album_id": "244660", "photo_flickr_id": "9909140", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "43154", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one year old and supper chill about the whole thing .", "storylet_id": "215772"}], [{"original_text": "Big sister was very happy about this 1st birthday.", "album_id": "244660", "photo_flickr_id": "9909229", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "43154", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "big sister was very happy about this 1st birthday .", "storylet_id": "215773"}], [{"original_text": "The cake was good, but the icing on the candle was even better!", "album_id": "244660", "photo_flickr_id": "9909260", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "43154", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cake was good , but the icing on the candle was even better !", "storylet_id": "215774"}], [{"original_text": "this group of friends gathered to have a few drinks", "album_id": "101475", "photo_flickr_id": "4023530", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "43155", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this group of friends gathered to have a few drinks", "storylet_id": "215775"}], [{"original_text": "they posed for the cameras", "album_id": "101475", "photo_flickr_id": "4023540", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "43155", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they posed for the cameras", "storylet_id": "215776"}], [{"original_text": "this man was too drunk and was putting paper in his nose", "album_id": "101475", "photo_flickr_id": "4024170", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "43155", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this man was too drunk and was putting paper in his nose", "storylet_id": "215777"}], [{"original_text": "this other woman got on the table to scream", "album_id": "101475", "photo_flickr_id": "4024175", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "43155", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this other woman got on the table to scream", "storylet_id": "215778"}], [{"original_text": "her boyfriend told her to get off the table", "album_id": "101475", "photo_flickr_id": "4024186", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "43155", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her boyfriend told her to get off the table", "storylet_id": "215779"}], [{"original_text": "An evening dinner with family and friends.", "album_id": "101475", "photo_flickr_id": "4023514", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43156", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an evening dinner with family and friends .", "storylet_id": "215780"}], [{"original_text": "Looks like there is a toast being given.", "album_id": "101475", "photo_flickr_id": "4023555", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43156", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "looks like there is a toast being given .", "storylet_id": "215781"}], [{"original_text": "I think someone has had a bit to much to drink.", "album_id": "101475", "photo_flickr_id": "4024170", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43156", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i think someone has had a bit to much to drink .", "storylet_id": "215782"}], [{"original_text": "Two friends laugh a funny story someone is telling.", "album_id": "101475", "photo_flickr_id": "4024186", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43156", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two friends laugh a funny story someone is telling .", "storylet_id": "215783"}], [{"original_text": "Look at the empty glasses and food, that was some get together.", "album_id": "101475", "photo_flickr_id": "4024197", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43156", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "look at the empty glasses and food , that was some get together .", "storylet_id": "215784"}], [{"original_text": "We had our friends over for a little dinner party last weekend. ", "album_id": "101475", "photo_flickr_id": "4023514", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43157", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had our friends over for a little dinner party last weekend .", "storylet_id": "215785"}], [{"original_text": "A goofy bunch they are. ", "album_id": "101475", "photo_flickr_id": "4023555", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43157", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a goofy bunch they are .", "storylet_id": "215786"}], [{"original_text": "They really had fun using the slime like stuff we made. ", "album_id": "101475", "photo_flickr_id": "4024170", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43157", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they really had fun using the slime like stuff we made .", "storylet_id": "215787"}], [{"original_text": "They put it on their head, out their nose, and covering their hand. ", "album_id": "101475", "photo_flickr_id": "4024186", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43157", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they put it on their head , out their nose , and covering their hand .", "storylet_id": "215788"}], [{"original_text": "After we got all the silliness out of us, we had dinner and said good bye. ", "album_id": "101475", "photo_flickr_id": "4024197", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43157", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we got all the silliness out of us , we had dinner and said good bye .", "storylet_id": "215789"}], [{"original_text": "Friends and Family having a get together eating and drinking wine.", "album_id": "101475", "photo_flickr_id": "4023530", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "43158", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends and family having a get together eating and drinking wine .", "storylet_id": "215790"}], [{"original_text": "Some friends are acting silly near the end of dinner. ", "album_id": "101475", "photo_flickr_id": "4023540", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "43158", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some friends are acting silly near the end of dinner .", "storylet_id": "215791"}], [{"original_text": "A silly friend puts a couple of tissues up his nose. ", "album_id": "101475", "photo_flickr_id": "4024170", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "43158", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a silly friend puts a couple of tissues up his nose .", "storylet_id": "215792"}], [{"original_text": "Then his friend gets up onto the table to act all big and bad.", "album_id": "101475", "photo_flickr_id": "4024175", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "43158", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then his friend gets up onto the table to act all big and bad .", "storylet_id": "215793"}], [{"original_text": "All he can do is laugh as she sits back down. Such a good time with friends. ", "album_id": "101475", "photo_flickr_id": "4024186", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "43158", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all he can do is laugh as she sits back down . such a good time with friends .", "storylet_id": "215794"}], [{"original_text": "The night started off great with conversation over dinner", "album_id": "101475", "photo_flickr_id": "4023530", "setting": "last-3-pick-old-and-tell", "worker_id": "NUWHDB3QASVYMAU", "story_id": "43159", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the night started off great with conversation over dinner", "storylet_id": "215795"}], [{"original_text": "he looks like he's up to no good", "album_id": "101475", "photo_flickr_id": "4023540", "setting": "last-3-pick-old-and-tell", "worker_id": "NUWHDB3QASVYMAU", "story_id": "43159", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he looks like he 's up to no good", "storylet_id": "215796"}], [{"original_text": "then things started to get interesting", "album_id": "101475", "photo_flickr_id": "4024170", "setting": "last-3-pick-old-and-tell", "worker_id": "NUWHDB3QASVYMAU", "story_id": "43159", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then things started to get interesting", "storylet_id": "215797"}], [{"original_text": "she wanted to make sure everyone heard her by standing on the table", "album_id": "101475", "photo_flickr_id": "4024175", "setting": "last-3-pick-old-and-tell", "worker_id": "NUWHDB3QASVYMAU", "story_id": "43159", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she wanted to make sure everyone heard her by standing on the table", "storylet_id": "215798"}], [{"original_text": "he created a custom made oven mitt", "album_id": "101475", "photo_flickr_id": "4024186", "setting": "last-3-pick-old-and-tell", "worker_id": "NUWHDB3QASVYMAU", "story_id": "43159", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he created a custom made oven mitt", "storylet_id": "215799"}], [{"original_text": "Here we are at the peaceful protest holding our brightly made signs.", "album_id": "72157624189455880", "photo_flickr_id": "4663208603", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43160", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are at the peaceful protest holding our brightly made signs .", "storylet_id": "215800"}], [{"original_text": "There were just a few that didn't want to follow the peaceful rules that were made for this march.", "album_id": "72157624189455880", "photo_flickr_id": "4663834144", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43160", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were just a few that did n't want to follow the peaceful rules that were made for this march .", "storylet_id": "215801"}], [{"original_text": "the march has started and we are a determined butch.", "album_id": "72157624189455880", "photo_flickr_id": "4663212133", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43160", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the march has started and we are a determined butch .", "storylet_id": "215802"}], [{"original_text": "The police are kept busy during the march making sure that it is kept peaceful.", "album_id": "72157624189455880", "photo_flickr_id": "4663214373", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43160", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the police are kept busy during the march making sure that it is kept peaceful .", "storylet_id": "215803"}], [{"original_text": "It seems that more and more people keep showing up to show there support for this march and enjoy doing so.", "album_id": "72157624189455880", "photo_flickr_id": "4663215819", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43160", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it seems that more and more people keep showing up to show there support for this march and enjoy doing so .", "storylet_id": "215804"}], [{"original_text": "My brother and I went to a protest today.", "album_id": "72157624189455880", "photo_flickr_id": "4663210775", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43161", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brother and i went to a protest today .", "storylet_id": "215805"}], [{"original_text": "Everything going going fine but the police showed up to keep an eye on things.", "album_id": "72157624189455880", "photo_flickr_id": "4663208603", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43161", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything going going fine but the police showed up to keep an eye on things .", "storylet_id": "215806"}], [{"original_text": "My brother stayed till night time after having drank all day and was stumbling around a bit.", "album_id": "72157624189455880", "photo_flickr_id": "4663213769", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43161", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brother stayed till night time after having drank all day and was stumbling around a bit .", "storylet_id": "215807"}], [{"original_text": "Just as the sun went down the police sneaked up behind him and placed him under arrest.", "album_id": "72157624189455880", "photo_flickr_id": "4663213243", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43161", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "just as the sun went down the police sneaked up behind him and placed him under arrest .", "storylet_id": "215808"}], [{"original_text": "They placed him in a van with several other prisoners and took him off to jail.", "album_id": "72157624189455880", "photo_flickr_id": "4663214373", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43161", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they placed him in a van with several other prisoners and took him off to jail .", "storylet_id": "215809"}], [{"original_text": "The demonstration starts peacefully with the crowd obeying the restrictions for crowd control.", "album_id": "72157624189455880", "photo_flickr_id": "4663210775", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43162", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the demonstration starts peacefully with the crowd obeying the restrictions for crowd control .", "storylet_id": "215810"}], [{"original_text": "Police presence is visible but is not needed early in the evening.", "album_id": "72157624189455880", "photo_flickr_id": "4663208603", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43162", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "police presence is visible but is not needed early in the evening .", "storylet_id": "215811"}], [{"original_text": "The crowd breaks the restrictions.", "album_id": "72157624189455880", "photo_flickr_id": "4663213769", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43162", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowd breaks the restrictions .", "storylet_id": "215812"}], [{"original_text": "Some have gone too far and break the law.", "album_id": "72157624189455880", "photo_flickr_id": "4663213243", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43162", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some have gone too far and break the law .", "storylet_id": "215813"}], [{"original_text": "In order to keep the peace, the rabble rousers are carted away by the police. Order is restored.", "album_id": "72157624189455880", "photo_flickr_id": "4663214373", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43162", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in order to keep the peace , the rabble rousers are carted away by the police . order is restored .", "storylet_id": "215814"}], [{"original_text": "There was a demonstration in the town.", "album_id": "72157624189455880", "photo_flickr_id": "4663208603", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43163", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a demonstration in the town .", "storylet_id": "215815"}], [{"original_text": "The police were there to keep order.", "album_id": "72157624189455880", "photo_flickr_id": "4663834144", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43163", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the police were there to keep order .", "storylet_id": "215816"}], [{"original_text": "Most people were demonstrating peacefully.", "album_id": "72157624189455880", "photo_flickr_id": "4663212133", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43163", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most people were demonstrating peacefully .", "storylet_id": "215817"}], [{"original_text": "But a few were taken into custody because of unruly behavior.", "album_id": "72157624189455880", "photo_flickr_id": "4663214373", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43163", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but a few were taken into custody because of unruly behavior .", "storylet_id": "215818"}], [{"original_text": "The demonstration continued despite the arrests.", "album_id": "72157624189455880", "photo_flickr_id": "4663215819", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43163", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the demonstration continued despite the arrests .", "storylet_id": "215819"}], [{"original_text": "The first day of the protest rally was a huge turn out", "album_id": "72157624189455880", "photo_flickr_id": "4663208603", "setting": "last-3-pick-old-and-tell", "worker_id": "DBZ0HAU1BEMJV2L", "story_id": "43164", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the first day of the protest rally was a huge turn out", "storylet_id": "215820"}], [{"original_text": "Many people gathered together in a peaceful manner despite the heavy security.", "album_id": "72157624189455880", "photo_flickr_id": "4663834144", "setting": "last-3-pick-old-and-tell", "worker_id": "DBZ0HAU1BEMJV2L", "story_id": "43164", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people gathered together in a peaceful manner despite the heavy security .", "storylet_id": "215821"}], [{"original_text": "The crowd chanted loud and proud as they walked the streets together.", "album_id": "72157624189455880", "photo_flickr_id": "4663212133", "setting": "last-3-pick-old-and-tell", "worker_id": "DBZ0HAU1BEMJV2L", "story_id": "43164", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowd chanted loud and proud as they walked the streets together .", "storylet_id": "215822"}], [{"original_text": "The unlawful public servants decided to violate the rights of the people.", "album_id": "72157624189455880", "photo_flickr_id": "4663214373", "setting": "last-3-pick-old-and-tell", "worker_id": "DBZ0HAU1BEMJV2L", "story_id": "43164", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the unlawful public servants decided to violate the rights of the people .", "storylet_id": "215823"}], [{"original_text": "The crowd held up many handmade signs in regards off the protest rally.", "album_id": "72157624189455880", "photo_flickr_id": "4663215819", "setting": "last-3-pick-old-and-tell", "worker_id": "DBZ0HAU1BEMJV2L", "story_id": "43164", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the crowd held up many handmade signs in regards off the protest rally .", "storylet_id": "215824"}], [{"original_text": "We came across this tower in the countryside.", "album_id": "72157600044694535", "photo_flickr_id": "444653657", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43165", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we came across this tower in the countryside .", "storylet_id": "215825"}], [{"original_text": "I wonder what it is for.", "album_id": "72157600044694535", "photo_flickr_id": "445446486", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43165", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i wonder what it is for .", "storylet_id": "215826"}], [{"original_text": "After that, we came across these rock formations.", "album_id": "72157600044694535", "photo_flickr_id": "444652445", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43165", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that , we came across these rock formations .", "storylet_id": "215827"}], [{"original_text": "They went on for miles.", "album_id": "72157600044694535", "photo_flickr_id": "444649278", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43165", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they went on for miles .", "storylet_id": "215828"}], [{"original_text": "We made messages in the sand.", "album_id": "72157600044694535", "photo_flickr_id": "444663756", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43165", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we made messages in the sand .", "storylet_id": "215829"}], [{"original_text": "Along our route was a lot of beautiful country scenery.", "album_id": "72157600044694535", "photo_flickr_id": "444653657", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43166", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "along our route was a lot of beautiful country scenery .", "storylet_id": "215830"}], [{"original_text": "Rock faces covered a lot of the open land.", "album_id": "72157600044694535", "photo_flickr_id": "444649278", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43166", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "rock faces covered a lot of the open land .", "storylet_id": "215831"}], [{"original_text": "We saw so many windmills, such as this one.", "album_id": "72157600044694535", "photo_flickr_id": "444663562", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43166", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw so many windmills , such as this one .", "storylet_id": "215832"}], [{"original_text": "The scenery with the rocks was something we enjoyed.", "album_id": "72157600044694535", "photo_flickr_id": "444652445", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43166", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the scenery with the rocks was something we enjoyed .", "storylet_id": "215833"}], [{"original_text": "We found this carved into one of the rocks.", "album_id": "72157600044694535", "photo_flickr_id": "444663756", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43166", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we found this carved into one of the rocks .", "storylet_id": "215834"}], [{"original_text": "The windmill seems to be the only man made structure seen for miles.", "album_id": "72157600044694535", "photo_flickr_id": "444653657", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43167", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the windmill seems to be the only man made structure seen for miles .", "storylet_id": "215835"}], [{"original_text": "This windmill seems so old fashioned compared to the ones in the back ground.", "album_id": "72157600044694535", "photo_flickr_id": "445446486", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43167", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this windmill seems so old fashioned compared to the ones in the back ground .", "storylet_id": "215836"}], [{"original_text": "These rock structures have been here for millions of years.", "album_id": "72157600044694535", "photo_flickr_id": "444652445", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43167", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these rock structures have been here for millions of years .", "storylet_id": "215837"}], [{"original_text": "The structures make an awe inspiring view.", "album_id": "72157600044694535", "photo_flickr_id": "444649278", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43167", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the structures make an awe inspiring view .", "storylet_id": "215838"}], [{"original_text": "It would seem that JIM also appreciated the rock structures and wanted all that passed here to know.", "album_id": "72157600044694535", "photo_flickr_id": "444663756", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43167", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it would seem that jim also appreciated the rock structures and wanted all that passed here to know .", "storylet_id": "215839"}], [{"original_text": "During a trip out west we saw sprawling deserts.", "album_id": "72157600044694535", "photo_flickr_id": "444653657", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43168", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during a trip out west we saw sprawling deserts .", "storylet_id": "215840"}], [{"original_text": "We also visited ancient dwellings from Native Americans.", "album_id": "72157600044694535", "photo_flickr_id": "444649278", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43168", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we also visited ancient dwellings from native americans .", "storylet_id": "215841"}], [{"original_text": "A weather vane and windmill had been standing for a century. ", "album_id": "72157600044694535", "photo_flickr_id": "444663562", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43168", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a weather vane and windmill had been standing for a century .", "storylet_id": "215842"}], [{"original_text": "The desert rocks were carved by sand and wind.", "album_id": "72157600044694535", "photo_flickr_id": "444652445", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43168", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the desert rocks were carved by sand and wind .", "storylet_id": "215843"}], [{"original_text": "We carved our initials into the sand along with the date.", "album_id": "72157600044694535", "photo_flickr_id": "444663756", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43168", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we carved our initials into the sand along with the date .", "storylet_id": "215844"}], [{"original_text": "Our home is in the wind-swept plains.", "album_id": "72157600044694535", "photo_flickr_id": "444653657", "setting": "last-3-pick-old-and-tell", "worker_id": "21NWFDZH6O2KM7V", "story_id": "43169", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our home is in the wind-swept plains .", "storylet_id": "215845"}], [{"original_text": "In one direction is an old pump windmill with a modern wind farm in the distance.", "album_id": "72157600044694535", "photo_flickr_id": "445446486", "setting": "last-3-pick-old-and-tell", "worker_id": "21NWFDZH6O2KM7V", "story_id": "43169", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in one direction is an old pump windmill with a modern wind farm in the distance .", "storylet_id": "215846"}], [{"original_text": "In another is rocks carved by the wind.", "album_id": "72157600044694535", "photo_flickr_id": "444652445", "setting": "last-3-pick-old-and-tell", "worker_id": "21NWFDZH6O2KM7V", "story_id": "43169", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in another is rocks carved by the wind .", "storylet_id": "215847"}], [{"original_text": "Anyone familiar with wind erosion can tell you the wind has been carving the stone here longer than Man.", "album_id": "72157600044694535", "photo_flickr_id": "444649278", "setting": "last-3-pick-old-and-tell", "worker_id": "21NWFDZH6O2KM7V", "story_id": "43169", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "anyone familiar with wind erosion can tell you the wind has been carving the stone here longer than man .", "storylet_id": "215848"}], [{"original_text": "Not that man hasn't managed to a do a bit of carving themselves.", "album_id": "72157600044694535", "photo_flickr_id": "444663756", "setting": "last-3-pick-old-and-tell", "worker_id": "21NWFDZH6O2KM7V", "story_id": "43169", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "not that man has n't managed to a do a bit of carving themselves .", "storylet_id": "215849"}], [{"original_text": "My doofus husband waving at me. My back hurts. Why did he make me carry the camera?", "album_id": "301242", "photo_flickr_id": "12269126", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "43170", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my doofus husband waving at me . my back hurts . why did he make me carry the camera ?", "storylet_id": "215850"}], [{"original_text": "Disgusting! We're not French! I told my husband I found something more slimy than him!", "album_id": "301242", "photo_flickr_id": "12265429", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "43170", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "disgusting ! we 're not french ! i told my husband i found something more slimy than him !", "storylet_id": "215851"}], [{"original_text": "We came across this field full of nasty yellow flowers, and my allergies just started acting up.", "album_id": "301242", "photo_flickr_id": "12265426", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "43170", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we came across this field full of nasty yellow flowers , and my allergies just started acting up .", "storylet_id": "215852"}], [{"original_text": "Then, there were these mineral out-croppings rockier than our marriage.", "album_id": "301242", "photo_flickr_id": "12269125", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "43170", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , there were these mineral out-croppings rockier than our marriage .", "storylet_id": "215853"}], [{"original_text": "When I thought our trip couldn't get any worse, I saw this. Totally in the middle of nowhere and no cell reception!", "album_id": "301242", "photo_flickr_id": "12269123", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "43170", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when i thought our trip could n't get any worse , i saw this . totally in the middle of nowhere and no cell reception !", "storylet_id": "215854"}], [{"original_text": "Here is where we started our hike and the scenery doesn't get any better then this.", "album_id": "301242", "photo_flickr_id": "12269123", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43171", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is where we started our hike and the scenery does n't get any better then this .", "storylet_id": "215855"}], [{"original_text": "Just about stepped on Mr. Slug as he was crossing the trail.", "album_id": "301242", "photo_flickr_id": "12265429", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43171", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "just about stepped on mr. slug as he was crossing the trail .", "storylet_id": "215856"}], [{"original_text": "Just when I thought the hike couldn't get any better we came across this very colorful field of flowers.", "album_id": "301242", "photo_flickr_id": "12265426", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43171", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "just when i thought the hike could n't get any better we came across this very colorful field of flowers .", "storylet_id": "215857"}], [{"original_text": "Now this is refreshing and a much welcomed site.", "album_id": "301242", "photo_flickr_id": "12265432", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43171", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now this is refreshing and a much welcomed site .", "storylet_id": "215858"}], [{"original_text": "I think that this is Mother Nature at her best and I expect wild horses to show up soon.", "album_id": "301242", "photo_flickr_id": "12269122", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43171", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think that this is mother nature at her best and i expect wild horses to show up soon .", "storylet_id": "215859"}], [{"original_text": "Standing on the rocks saying hi to the camera.", "album_id": "301242", "photo_flickr_id": "12269126", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43172", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "standing on the rocks saying hi to the camera .", "storylet_id": "215860"}], [{"original_text": "Spotted an interesring looking snail, it was a greeish yellowish color.", "album_id": "301242", "photo_flickr_id": "12265429", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43172", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "spotted an interesring looking snail , it was a greeish yellowish color .", "storylet_id": "215861"}], [{"original_text": "The grass was filled with purple and yellow flowers.", "album_id": "301242", "photo_flickr_id": "12265426", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43172", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the grass was filled with purple and yellow flowers .", "storylet_id": "215862"}], [{"original_text": "Even found some crystals forming on the side of a rock.", "album_id": "301242", "photo_flickr_id": "12269125", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43172", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even found some crystals forming on the side of a rock .", "storylet_id": "215863"}], [{"original_text": "This scene is completely breathtaking, i don't ever want to leave.", "album_id": "301242", "photo_flickr_id": "12269123", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43172", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this scene is completely breathtaking , i do n't ever want to leave .", "storylet_id": "215864"}], [{"original_text": "The macro view of this piece of nature reveals some of the beauty of God's creation.", "album_id": "301242", "photo_flickr_id": "12269123", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43173", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the macro view of this piece of nature reveals some of the beauty of god 's creation .", "storylet_id": "215865"}], [{"original_text": "However, a micro view also shows the magnificence of creation as we see in this small animal.", "album_id": "301242", "photo_flickr_id": "12265429", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43173", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "however , a micro view also shows the magnificence of creation as we see in this small animal .", "storylet_id": "215866"}], [{"original_text": "The flora produces art worthy of any artist.", "album_id": "301242", "photo_flickr_id": "12265426", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43173", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the flora produces art worthy of any artist .", "storylet_id": "215867"}], [{"original_text": "The evidence of erosion being caused by root growth in addition to weathering adds interest to the micro view.", "album_id": "301242", "photo_flickr_id": "12265432", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43173", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the evidence of erosion being caused by root growth in addition to weathering adds interest to the micro view .", "storylet_id": "215868"}], [{"original_text": "Finally, life giving water is captured in a small creek that flows from time to time. Beauty is visible in the small as well as the large.", "album_id": "301242", "photo_flickr_id": "12269122", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43173", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , life giving water is captured in a small creek that flows from time to time . beauty is visible in the small as well as the large .", "storylet_id": "215869"}], [{"original_text": "Starting my journey", "album_id": "301242", "photo_flickr_id": "12269126", "setting": "last-3-pick-old-and-tell", "worker_id": "EA42QAOKHOETSW9", "story_id": "43174", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "starting my journey", "storylet_id": "215870"}], [{"original_text": "A slug nestled on the rocks", "album_id": "301242", "photo_flickr_id": "12265429", "setting": "last-3-pick-old-and-tell", "worker_id": "EA42QAOKHOETSW9", "story_id": "43174", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a slug nestled on the rocks", "storylet_id": "215871"}], [{"original_text": "A field of flowers", "album_id": "301242", "photo_flickr_id": "12265426", "setting": "last-3-pick-old-and-tell", "worker_id": "EA42QAOKHOETSW9", "story_id": "43174", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a field of flowers", "storylet_id": "215872"}], [{"original_text": "Close up of the rocks I climbed over", "album_id": "301242", "photo_flickr_id": "12269125", "setting": "last-3-pick-old-and-tell", "worker_id": "EA42QAOKHOETSW9", "story_id": "43174", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "close up of the rocks i climbed over", "storylet_id": "215873"}], [{"original_text": "The ending shot of the day", "album_id": "301242", "photo_flickr_id": "12269123", "setting": "last-3-pick-old-and-tell", "worker_id": "EA42QAOKHOETSW9", "story_id": "43174", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ending shot of the day", "storylet_id": "215874"}], [{"original_text": "Here we are at the Chinesse restaurant with the famous Purple Passion Tree.", "album_id": "72157623858970227", "photo_flickr_id": "4574572349", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43175", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are at the location restaurant with the famous purple passion tree .", "storylet_id": "215875"}], [{"original_text": "I love looking at all the good tasting food on the menu.", "album_id": "72157623858970227", "photo_flickr_id": "4574573547", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43175", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love looking at all the good tasting food on the menu .", "storylet_id": "215876"}], [{"original_text": "Here is my favorite dish the Won ton soup.", "album_id": "72157623858970227", "photo_flickr_id": "4574573889", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43175", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is my favorite dish the won ton soup .", "storylet_id": "215877"}], [{"original_text": "A meal is not complete without ice cream.", "album_id": "72157623858970227", "photo_flickr_id": "4575208404", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43175", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a meal is not complete without ice cream .", "storylet_id": "215878"}], [{"original_text": "Want to make sure we don't run out of gas on the way home.", "album_id": "72157623858970227", "photo_flickr_id": "4574574995", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43175", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "want to make sure we do n't run out of gas on the way home .", "storylet_id": "215879"}], [{"original_text": "As a Japanese exchange student I'm asked quite often about what I find different.", "album_id": "72157623858970227", "photo_flickr_id": "4574573203", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43176", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as a japanese exchange student i 'm asked quite often about what i find different .", "storylet_id": "215880"}], [{"original_text": "Actually, we are quite the same. We have our version of fast-food restaurants.", "album_id": "72157623858970227", "photo_flickr_id": "4575207294", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43176", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "actually , we are quite the same . we have our version of fast-food restaurants .", "storylet_id": "215881"}], [{"original_text": "We also have our traditional restaurants and markets.", "album_id": "72157623858970227", "photo_flickr_id": "4575206990", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43176", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also have our traditional restaurants and markets .", "storylet_id": "215882"}], [{"original_text": "Miso soup! Our steaming hot fast-food eaten rapidly with Ohashi (chop sticks).", "album_id": "72157623858970227", "photo_flickr_id": "4574573889", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43176", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "miso soup ! our steaming hot fast-food eaten rapidly with ohashi ( chop sticks ) .", "storylet_id": "215883"}], [{"original_text": "My car. See, we are quite similar to you. :)", "album_id": "72157623858970227", "photo_flickr_id": "4574574995", "setting": "first-2-pick-and-tell", "worker_id": "2TBCZKYEJF26HAV", "story_id": "43176", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my car . see , we are quite similar to you . : )", "storylet_id": "215884"}], [{"original_text": "This one of the food selections they offer at the Chinese restaurant.", "album_id": "72157623858970227", "photo_flickr_id": "4574573203", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43177", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this one of the food selections they offer at the chinese restaurant .", "storylet_id": "215885"}], [{"original_text": "Everybody is sitting down and eating their meal.", "album_id": "72157623858970227", "photo_flickr_id": "4575207294", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43177", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everybody is sitting down and eating their meal .", "storylet_id": "215886"}], [{"original_text": "A Chinese venue is outside and people are waiting on line to get some food.", "album_id": "72157623858970227", "photo_flickr_id": "4575206990", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43177", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a chinese venue is outside and people are waiting on line to get some food .", "storylet_id": "215887"}], [{"original_text": "This is one of the soups offered at the venue.", "album_id": "72157623858970227", "photo_flickr_id": "4574573889", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43177", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is one of the soups offered at the venue .", "storylet_id": "215888"}], [{"original_text": "A man is getting some gas at a local gas station.", "album_id": "72157623858970227", "photo_flickr_id": "4574574995", "setting": "last-3-pick-old-and-tell", "worker_id": "DRWT692QR5CRYHV", "story_id": "43177", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a man is getting some gas at a local gas station .", "storylet_id": "215889"}], [{"original_text": "Janie and I decided to go to a local market for something to eat one night. The lights on the tree outside grabbed our attention and seemed to invite us in.", "album_id": "72157623858970227", "photo_flickr_id": "4574572349", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43178", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and i decided to go to a local market for something to eat one night . the lights on the tree outside grabbed our attention and seemed to invite us in .", "storylet_id": "215890"}], [{"original_text": "There were so many things to choose from, and the menus were pictures which was great for us since we still couldn't speak the language.", "album_id": "72157623858970227", "photo_flickr_id": "4574573547", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43178", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many things to choose from , and the menus were pictures which was great for us since we still could n't speak the language .", "storylet_id": "215891"}], [{"original_text": "We ended up having a delicious, hot bowl of soup.", "album_id": "72157623858970227", "photo_flickr_id": "4574573889", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43178", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we ended up having a delicious , hot bowl of soup .", "storylet_id": "215892"}], [{"original_text": "Then, Janie suggested ice cream for dessert since the soup was kind of spicy.", "album_id": "72157623858970227", "photo_flickr_id": "4575208404", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43178", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , [female] suggested ice cream for dessert since the soup was kind of spicy .", "storylet_id": "215893"}], [{"original_text": "Afterwards, we had to stop for gas. Then we went home.", "album_id": "72157623858970227", "photo_flickr_id": "4574574995", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43178", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , we had to stop for gas . then we went home .", "storylet_id": "215894"}], [{"original_text": "After the long hours on the road, we needed gas and something to eat so we pulled into this brightly lit service station.", "album_id": "72157623858970227", "photo_flickr_id": "4574572349", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43179", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after the long hours on the road , we needed gas and something to eat so we pulled into this brightly lit service station .", "storylet_id": "215895"}], [{"original_text": "The menu options for meal were almost overwhelming.", "album_id": "72157623858970227", "photo_flickr_id": "4574573547", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43179", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the menu options for meal were almost overwhelming .", "storylet_id": "215896"}], [{"original_text": "I decided to order the chicken soup with rice noodles.", "album_id": "72157623858970227", "photo_flickr_id": "4574573889", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43179", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i decided to order the chicken soup with rice noodles .", "storylet_id": "215897"}], [{"original_text": "For dessert and ice cream cone was very refreshing.", "album_id": "72157623858970227", "photo_flickr_id": "4575208404", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43179", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "for dessert and ice cream cone was very refreshing .", "storylet_id": "215898"}], [{"original_text": "We nearly forgot the gas after that delicious meal.", "album_id": "72157623858970227", "photo_flickr_id": "4574574995", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43179", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we nearly forgot the gas after that delicious meal .", "storylet_id": "215899"}], [{"original_text": "As we arrived at the museum, I couldn't help but be awed at the scale of the extraordinary architecture. ", "album_id": "72157623860856945", "photo_flickr_id": "4575423825", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "43180", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as we arrived at the museum , i could n't help but be awed at the scale of the extraordinary architecture .", "storylet_id": "215900"}], [{"original_text": "Inside was cozy and crowded, with a sculpture pointing the way to the artifact room.", "album_id": "72157623860856945", "photo_flickr_id": "4576058960", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "43180", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside was cozy and crowded , with a sculpture pointing the way to the artifact room .", "storylet_id": "215901"}], [{"original_text": "My girlfriends and I blushed politely at the nude, bronze Adonis, arms outstretched, and rocking his lack of modesty.", "album_id": "72157623860856945", "photo_flickr_id": "4576063766", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "43180", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my girlfriends and i blushed politely at the nude , bronze adonis , arms outstretched , and rocking his lack of modesty .", "storylet_id": "215902"}], [{"original_text": "We found the caveman room, and found a skull that had a bigger forehead than that girl in the TV show \"Under The Dome\".", "album_id": "72157623860856945", "photo_flickr_id": "4576061776", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "43180", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found the caveman room , and found a skull that had a bigger forehead than that girl in the tv show `` under the dome '' .", "storylet_id": "215903"}], [{"original_text": "Looking at the mural of the killing of the tusked creature by the Greeks was an entertaining and exciting end to our museum visit. ", "album_id": "72157623860856945", "photo_flickr_id": "4575438155", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "43180", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "looking at the mural of the killing of the tusked creature by the greeks was an entertaining and exciting end to our museum visit .", "storylet_id": "215904"}], [{"original_text": "Here we are at the church that is holding a acient art display.", "album_id": "72157623860856945", "photo_flickr_id": "4575423825", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43181", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are at the church that is holding a acient art display .", "storylet_id": "215905"}], [{"original_text": "this place is huge but there is a crowd that are waiting to go upstairs to see the art work.", "album_id": "72157623860856945", "photo_flickr_id": "4576058960", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43181", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this place is huge but there is a crowd that are waiting to go upstairs to see the art work .", "storylet_id": "215906"}], [{"original_text": "Here is a famous statue pointing the way to more art.", "album_id": "72157623860856945", "photo_flickr_id": "4575425885", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43181", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is a famous statue pointing the way to more art .", "storylet_id": "215907"}], [{"original_text": "I thought writing with a pen and paper took along time to write with this would have been painful but really cool to see.", "album_id": "72157623860856945", "photo_flickr_id": "4575436431", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43181", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i thought writing with a pen and paper took along time to write with this would have been painful but really cool to see .", "storylet_id": "215908"}], [{"original_text": "I found this to be the most interesting piece of art out of the whole display.", "album_id": "72157623860856945", "photo_flickr_id": "4575438155", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43181", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i found this to be the most interesting piece of art out of the whole display .", "storylet_id": "215909"}], [{"original_text": "The museum was in an old cathedral.", "album_id": "72157623860856945", "photo_flickr_id": "4575423825", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43182", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the museum was in an old cathedral .", "storylet_id": "215910"}], [{"original_text": "But it had a very modern interior.", "album_id": "72157623860856945", "photo_flickr_id": "4576058960", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43182", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but it had a very modern interior .", "storylet_id": "215911"}], [{"original_text": "The group walked through the multi layered museum.", "album_id": "72157623860856945", "photo_flickr_id": "4575425885", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43182", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the group walked through the multi layered museum .", "storylet_id": "215912"}], [{"original_text": "The museum even had some old hieroglyphics.", "album_id": "72157623860856945", "photo_flickr_id": "4575436431", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43182", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the museum even had some old hieroglyphics .", "storylet_id": "215913"}], [{"original_text": "As well as some ancient art.", "album_id": "72157623860856945", "photo_flickr_id": "4575438155", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43182", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as well as some ancient art .", "storylet_id": "215914"}], [{"original_text": "This is the front of a very old building, looks like it may be a museum.", "album_id": "72157623860856945", "photo_flickr_id": "4575423825", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43183", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the front of a very old building , looks like it may be a museum .", "storylet_id": "215915"}], [{"original_text": "Once inside i realized it is a museum with so many interesting pieces of old tradition.", "album_id": "72157623860856945", "photo_flickr_id": "4576058960", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43183", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once inside i realized it is a museum with so many interesting pieces of old tradition .", "storylet_id": "215916"}], [{"original_text": "There were 3 floors and each of them with themes of all kinds of cultures.", "album_id": "72157623860856945", "photo_flickr_id": "4575425885", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43183", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were 3 floors and each of them with themes of all kinds of cultures .", "storylet_id": "215917"}], [{"original_text": "This piece has a very egyptian vibe to it, its powerful.", "album_id": "72157623860856945", "photo_flickr_id": "4575436431", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43183", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this piece has a very egyptian vibe to it , its powerful .", "storylet_id": "215918"}], [{"original_text": "This one has a very roman greek feel to it and is equally beautiful to the rest.", "album_id": "72157623860856945", "photo_flickr_id": "4575438155", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43183", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this one has a very roman greek feel to it and is equally beautiful to the rest .", "storylet_id": "215919"}], [{"original_text": "The museum was very large and beautiful in structure.", "album_id": "72157623860856945", "photo_flickr_id": "4575423825", "setting": "last-3-pick-old-and-tell", "worker_id": "P63F6M25GV97TT1", "story_id": "43184", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the museum was very large and beautiful in structure .", "storylet_id": "215920"}], [{"original_text": "Many people were enjoying the different exhibits inside.", "album_id": "72157623860856945", "photo_flickr_id": "4576058960", "setting": "last-3-pick-old-and-tell", "worker_id": "P63F6M25GV97TT1", "story_id": "43184", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people were enjoying the different exhibits inside .", "storylet_id": "215921"}], [{"original_text": "Statues were scattered throughout the museum for everyone to view.", "album_id": "72157623860856945", "photo_flickr_id": "4576063766", "setting": "last-3-pick-old-and-tell", "worker_id": "P63F6M25GV97TT1", "story_id": "43184", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "statues were scattered throughout the museum for everyone to view .", "storylet_id": "215922"}], [{"original_text": "Creepy skulls were on display, but it was very interesting to see!", "album_id": "72157623860856945", "photo_flickr_id": "4576061776", "setting": "last-3-pick-old-and-tell", "worker_id": "P63F6M25GV97TT1", "story_id": "43184", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "creepy skulls were on display , but it was very interesting to see !", "storylet_id": "215923"}], [{"original_text": "It must have took a long time to create all the sculptures that were inside the museum.", "album_id": "72157623860856945", "photo_flickr_id": "4575438155", "setting": "last-3-pick-old-and-tell", "worker_id": "P63F6M25GV97TT1", "story_id": "43184", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it must have took a long time to create all the sculptures that were inside the museum .", "storylet_id": "215924"}], [{"original_text": "Here we are at the Grand Canyon and waiting to start our tour.", "album_id": "72157630413349622", "photo_flickr_id": "7498712478", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43185", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are at the location location and waiting to start our tour .", "storylet_id": "215925"}], [{"original_text": "People are just getting here to start our walk through the canyon.", "album_id": "72157630413349622", "photo_flickr_id": "7498724674", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43185", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people are just getting here to start our walk through the canyon .", "storylet_id": "215926"}], [{"original_text": "Not sure why a guard rail needs to be put up I just hope nobody went over.", "album_id": "72157630413349622", "photo_flickr_id": "7498720106", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43185", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not sure why a guard rail needs to be put up i just hope nobody went over .", "storylet_id": "215927"}], [{"original_text": "Here is a picture of our happy guides that were full of information about the Grand Canyon.", "album_id": "72157630413349622", "photo_flickr_id": "7498716352", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43185", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is a picture of our happy guides that were full of information about the location location .", "storylet_id": "215928"}], [{"original_text": "Here was are at the end of the trail and it was the best site seeing day ever.", "album_id": "72157630413349622", "photo_flickr_id": "7498748660", "setting": "first-2-pick-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "43185", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here was are at the end of the trail and it was the best site seeing day ever .", "storylet_id": "215929"}], [{"original_text": "On the last day of our vacation we decided to visit rock mountain.", "album_id": "72157630413349622", "photo_flickr_id": "7498724674", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "43186", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on the last day of our vacation we decided to visit rock mountain .", "storylet_id": "215930"}], [{"original_text": "There were a lot of beautiful mountains.", "album_id": "72157630413349622", "photo_flickr_id": "7498712478", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "43186", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of beautiful mountains .", "storylet_id": "215931"}], [{"original_text": " We noticed as we got there there were workers doing work.", "album_id": "72157630413349622", "photo_flickr_id": "7498769012", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "43186", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we noticed as we got there there were workers doing work .", "storylet_id": "215932"}], [{"original_text": " One worker was carrying a huge rock.", "album_id": "72157630413349622", "photo_flickr_id": "7498753078", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "43186", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one worker was carrying a huge rock .", "storylet_id": "215933"}], [{"original_text": "He told us part of the park was closed due to the construction so we ended up leaving.", "album_id": "72157630413349622", "photo_flickr_id": "7498720106", "setting": "first-2-pick-and-tell", "worker_id": "HS2DYISE4SPNQ31", "story_id": "43186", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he told us part of the park was closed due to the construction so we ended up leaving .", "storylet_id": "215934"}], [{"original_text": "During our stay we visited a beautiful cannon. The pathways leading to the cannon were edged with rocks hammered from the cannon. ", "album_id": "72157630413349622", "photo_flickr_id": "7498724674", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43187", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during our stay we visited a beautiful cannon . the pathways leading to the cannon were edged with rocks hammered from the cannon .", "storylet_id": "215935"}], [{"original_text": "The cannon itself was huge and seemed never-ending. ", "album_id": "72157630413349622", "photo_flickr_id": "7498712478", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43187", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cannon itself was huge and seemed never-ending .", "storylet_id": "215936"}], [{"original_text": "We then got to see some men hammering the boulders into usable pieces for, I imagine, the pathways. ", "album_id": "72157630413349622", "photo_flickr_id": "7498769012", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43187", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we then got to see some men hammering the boulders into usable pieces for , i imagine , the pathways .", "storylet_id": "215937"}], [{"original_text": "The workers seemed very happy.", "album_id": "72157630413349622", "photo_flickr_id": "7498753078", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43187", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the workers seemed very happy .", "storylet_id": "215938"}], [{"original_text": "On the pathway out we could see their current progress. ", "album_id": "72157630413349622", "photo_flickr_id": "7498720106", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43187", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the pathway out we could see their current progress .", "storylet_id": "215939"}], [{"original_text": "Our project began in a far-off, inaccessible but very beautiful locale.", "album_id": "72157630413349622", "photo_flickr_id": "7498712478", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "43188", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our project began in a far-off , inaccessible but very beautiful locale .", "storylet_id": "215940"}], [{"original_text": "I gathered with other volunteers to use nearby loose rocks to rebuild and fortify existing roads and structures.", "album_id": "72157630413349622", "photo_flickr_id": "7498724674", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "43188", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i gathered with other volunteers to use nearby loose rocks to rebuild and fortify existing roads and structures .", "storylet_id": "215941"}], [{"original_text": "Rocks were brought in by backhoe and truck for our use. ", "album_id": "72157630413349622", "photo_flickr_id": "7498720106", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "43188", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "rocks were brought in by backhoe and truck for our use .", "storylet_id": "215942"}], [{"original_text": "That's me in the middle as we began our work with the rocks. ", "album_id": "72157630413349622", "photo_flickr_id": "7498716352", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "43188", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that 's me in the middle as we began our work with the rocks .", "storylet_id": "215943"}], [{"original_text": "There will be an inscription on that rock describing our mission and from there, the entire valley can be seen.", "album_id": "72157630413349622", "photo_flickr_id": "7498748660", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "43188", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there will be an inscription on that rock describing our mission and from there , the entire valley can be seen .", "storylet_id": "215944"}], [{"original_text": "Out trip to the canyon provided us with so many amazing views.", "album_id": "72157630413349622", "photo_flickr_id": "7498712478", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43189", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "out trip to the canyon provided us with so many amazing views .", "storylet_id": "215945"}], [{"original_text": "There was much more to do there than just look at the views.", "album_id": "72157630413349622", "photo_flickr_id": "7498724674", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43189", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was much more to do there than just look at the views .", "storylet_id": "215946"}], [{"original_text": "We encountered an area with guides that gave us demonstrations.", "album_id": "72157630413349622", "photo_flickr_id": "7498720106", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43189", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we encountered an area with guides that gave us demonstrations .", "storylet_id": "215947"}], [{"original_text": "Many of the guides wore uniforms so we knew they worked at the park.", "album_id": "72157630413349622", "photo_flickr_id": "7498716352", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43189", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many of the guides wore uniforms so we knew they worked at the park .", "storylet_id": "215948"}], [{"original_text": "The walking paths were spacious and had many different places to stop to take photos.", "album_id": "72157630413349622", "photo_flickr_id": "7498748660", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43189", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the walking paths were spacious and had many different places to stop to take photos .", "storylet_id": "215949"}], [{"original_text": "Tryouts were today for the church band.", "album_id": "72157594403688419", "photo_flickr_id": "313089008", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43190", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "tryouts were today for the church band .", "storylet_id": "215950"}], [{"original_text": "Lots of people came to show their talents. ", "album_id": "72157594403688419", "photo_flickr_id": "313112844", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43190", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of people came to show their talents .", "storylet_id": "215951"}], [{"original_text": "Both singers and musicians showed up", "album_id": "72157594403688419", "photo_flickr_id": "313097236", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43190", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "both singers and musicians showed up", "storylet_id": "215952"}], [{"original_text": "They sang several songs for the judges. ", "album_id": "72157594403688419", "photo_flickr_id": "313226950", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43190", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they sang several songs for the judges .", "storylet_id": "215953"}], [{"original_text": "The judges had a touch time selecting the final band members. ", "album_id": "72157594403688419", "photo_flickr_id": "313269273", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43190", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the judges had a touch time selecting the final band members .", "storylet_id": "215954"}], [{"original_text": "It was Sunday so naturally everyone headed to church.", "album_id": "72157594403688419", "photo_flickr_id": "313274675", "setting": "first-2-pick-and-tell", "worker_id": "2FHWL8TZ32C9GJB", "story_id": "43191", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was sunday so naturally everyone headed to church .", "storylet_id": "215955"}], [{"original_text": "It was a small congregation so there wasn't much of a choir.", "album_id": "72157594403688419", "photo_flickr_id": "313089008", "setting": "first-2-pick-and-tell", "worker_id": "2FHWL8TZ32C9GJB", "story_id": "43191", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a small congregation so there was n't much of a choir .", "storylet_id": "215956"}], [{"original_text": "But it was definitely a lively bunch.", "album_id": "72157594403688419", "photo_flickr_id": "313097236", "setting": "first-2-pick-and-tell", "worker_id": "2FHWL8TZ32C9GJB", "story_id": "43191", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but it was definitely a lively bunch .", "storylet_id": "215957"}], [{"original_text": "They sang their hearts out.", "album_id": "72157594403688419", "photo_flickr_id": "313112844", "setting": "first-2-pick-and-tell", "worker_id": "2FHWL8TZ32C9GJB", "story_id": "43191", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they sang their hearts out .", "storylet_id": "215958"}], [{"original_text": "And after a riveting performance, the lead priest gave a special sermon.", "album_id": "72157594403688419", "photo_flickr_id": "313236944", "setting": "first-2-pick-and-tell", "worker_id": "2FHWL8TZ32C9GJB", "story_id": "43191", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and after a riveting performance , the lead priest gave a special sermon .", "storylet_id": "215959"}], [{"original_text": "There were a lot of people auditioning for the band.", "album_id": "72157594403688419", "photo_flickr_id": "313089008", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43192", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of people auditioning for the band .", "storylet_id": "215960"}], [{"original_text": "Some people had some great talent.", "album_id": "72157594403688419", "photo_flickr_id": "313112844", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43192", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some people had some great talent .", "storylet_id": "215961"}], [{"original_text": "Other's were not so good.", "album_id": "72157594403688419", "photo_flickr_id": "313097236", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43192", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other 's were not so good .", "storylet_id": "215962"}], [{"original_text": "The auditions took all day.", "album_id": "72157594403688419", "photo_flickr_id": "313226950", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43192", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the auditions took all day .", "storylet_id": "215963"}], [{"original_text": "The judges looked very tired and disappointed at the end of the day.", "album_id": "72157594403688419", "photo_flickr_id": "313269273", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43192", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the judges looked very tired and disappointed at the end of the day .", "storylet_id": "215964"}], [{"original_text": "Practice for our congregation. Sing those hymns girl!", "album_id": "72157594403688419", "photo_flickr_id": "313089008", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43193", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "practice for our congregation . sing those hymns girl !", "storylet_id": "215965"}], [{"original_text": "Praising the lord! Glory be!", "album_id": "72157594403688419", "photo_flickr_id": "313112844", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43193", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "praising the lord ! glory be !", "storylet_id": "215966"}], [{"original_text": "He's the bassist I've seen in a while.", "album_id": "72157594403688419", "photo_flickr_id": "313097236", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43193", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he 's the bassist i 've seen in a while .", "storylet_id": "215967"}], [{"original_text": "They sound magical together.", "album_id": "72157594403688419", "photo_flickr_id": "313226950", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43193", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they sound magical together .", "storylet_id": "215968"}], [{"original_text": "Even the elders have turned out to give a listen.", "album_id": "72157594403688419", "photo_flickr_id": "313269273", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43193", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the elders have turned out to give a listen .", "storylet_id": "215969"}], [{"original_text": "We had our Sunday church today.", "album_id": "72157594403688419", "photo_flickr_id": "313089008", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43194", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had our sunday church today .", "storylet_id": "215970"}], [{"original_text": "It was a very enlightening sermon today.", "album_id": "72157594403688419", "photo_flickr_id": "313112844", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43194", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a very enlightening sermon today .", "storylet_id": "215971"}], [{"original_text": "The music was very soothing.", "album_id": "72157594403688419", "photo_flickr_id": "313097236", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43194", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the music was very soothing .", "storylet_id": "215972"}], [{"original_text": "The choir sang many peaceful songs.", "album_id": "72157594403688419", "photo_flickr_id": "313226950", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43194", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the choir sang many peaceful songs .", "storylet_id": "215973"}], [{"original_text": "It was a very good sermon today and we all felt very at peace.", "album_id": "72157594403688419", "photo_flickr_id": "313269273", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43194", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a very good sermon today and we all felt very at peace .", "storylet_id": "215974"}], [{"original_text": "Today we went on our summer trip.", "album_id": "72057594058524733", "photo_flickr_id": "94934792", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43195", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went on our summer trip .", "storylet_id": "215975"}], [{"original_text": "We went out to the desert for hiking.", "album_id": "72057594058524733", "photo_flickr_id": "94934816", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43195", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went out to the desert for hiking .", "storylet_id": "215976"}], [{"original_text": "My family and I were so excited and met new people.", "album_id": "72057594058524733", "photo_flickr_id": "94934842", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43195", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my family and i were so excited and met new people .", "storylet_id": "215977"}], [{"original_text": "We even had time to ride the bike.", "album_id": "72057594058524733", "photo_flickr_id": "94934868", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43195", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even had time to ride the bike .", "storylet_id": "215978"}], [{"original_text": "It was a fun trip and so much new scenery. ", "album_id": "72057594058524733", "photo_flickr_id": "94934920", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43195", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a fun trip and so much new scenery .", "storylet_id": "215979"}], [{"original_text": "we went to Africa", "album_id": "72057594058524733", "photo_flickr_id": "94934792", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43196", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to location", "storylet_id": "215980"}], [{"original_text": "it was interesting ", "album_id": "72057594058524733", "photo_flickr_id": "94934816", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43196", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was interesting", "storylet_id": "215981"}], [{"original_text": "we met a 7 foot tall man", "album_id": "72057594058524733", "photo_flickr_id": "94934842", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43196", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we met a 7 foot tall man", "storylet_id": "215982"}], [{"original_text": "we rode bikes in the TUndra", "album_id": "72057594058524733", "photo_flickr_id": "94934868", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43196", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we rode bikes in the tundra", "storylet_id": "215983"}], [{"original_text": "all in all it was a great trip", "album_id": "72057594058524733", "photo_flickr_id": "94934920", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43196", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all in all it was a great trip", "storylet_id": "215984"}], [{"original_text": "I spent some time on the mission field in Africa.", "album_id": "72057594058524733", "photo_flickr_id": "94934792", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43197", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spent some time on the mission field in location .", "storylet_id": "215985"}], [{"original_text": "The lands were beautiful.", "album_id": "72057594058524733", "photo_flickr_id": "94934816", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43197", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lands were beautiful .", "storylet_id": "215986"}], [{"original_text": "I spend a little time in a peaceful village.", "album_id": "72057594058524733", "photo_flickr_id": "94934842", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43197", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i spend a little time in a peaceful village .", "storylet_id": "215987"}], [{"original_text": "The roads were dirt.", "album_id": "72057594058524733", "photo_flickr_id": "94934868", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43197", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the roads were dirt .", "storylet_id": "215988"}], [{"original_text": "There also wasn't much water.", "album_id": "72057594058524733", "photo_flickr_id": "94934920", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43197", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there also was n't much water .", "storylet_id": "215989"}], [{"original_text": "We decided to visit a third world country.", "album_id": "72057594058524733", "photo_flickr_id": "94934792", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43198", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to visit a third world country .", "storylet_id": "215990"}], [{"original_text": "The fields look different than the ones we are used to.", "album_id": "72057594058524733", "photo_flickr_id": "94934816", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43198", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fields look different than the ones we are used to .", "storylet_id": "215991"}], [{"original_text": "We saw locals at the fields.", "album_id": "72057594058524733", "photo_flickr_id": "94934842", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43198", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw locals at the fields .", "storylet_id": "215992"}], [{"original_text": "We used our bikes to get to our destination.", "album_id": "72057594058524733", "photo_flickr_id": "94934868", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43198", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we used our bikes to get to our destination .", "storylet_id": "215993"}], [{"original_text": "Lastly, we took a stroll in the fields to get inspiration.", "album_id": "72057594058524733", "photo_flickr_id": "94934920", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43198", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , we took a stroll in the fields to get inspiration .", "storylet_id": "215994"}], [{"original_text": "Today I visited my home land for the firs time in 4 years", "album_id": "72057594058524733", "photo_flickr_id": "94934792", "setting": "last-3-pick-old-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "43199", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i visited my home land for the firs time in 4 years", "storylet_id": "215995"}], [{"original_text": "The terrain didnt change much. ", "album_id": "72057594058524733", "photo_flickr_id": "94934816", "setting": "last-3-pick-old-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "43199", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the terrain didnt change much .", "storylet_id": "215996"}], [{"original_text": "This is my grandma grandpa and cousin jeddi.", "album_id": "72057594058524733", "photo_flickr_id": "94934842", "setting": "last-3-pick-old-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "43199", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is my grandma grandpa and cousin jeddi .", "storylet_id": "215997"}], [{"original_text": "The day after I got there I took a bike ride down the old dirt road I must have ridden thousands of times", "album_id": "72057594058524733", "photo_flickr_id": "94934868", "setting": "last-3-pick-old-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "43199", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the day after i got there i took a bike ride down the old dirt road i must have ridden thousands of times", "storylet_id": "215998"}], [{"original_text": "then I helped the guys do some planting.. It was a great visit", "album_id": "72057594058524733", "photo_flickr_id": "94934920", "setting": "last-3-pick-old-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "43199", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then i helped the guys do some planting.. it was a great visit", "storylet_id": "215999"}], [{"original_text": "First the lady crossed the street.", "album_id": "72157623136469278", "photo_flickr_id": "4244672776", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43200", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "first the lady crossed the street .", "storylet_id": "216000"}], [{"original_text": "Then another lady crossed the street.", "album_id": "72157623136469278", "photo_flickr_id": "4243904815", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43200", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then another lady crossed the street .", "storylet_id": "216001"}], [{"original_text": "A third lady just stood by watching.", "album_id": "72157623136469278", "photo_flickr_id": "12456183433", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43200", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a third lady just stood by watching .", "storylet_id": "216002"}], [{"original_text": "So a fourth lady crossed.", "album_id": "72157623136469278", "photo_flickr_id": "12456555814", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43200", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so a fourth lady crossed .", "storylet_id": "216003"}], [{"original_text": "And then came a woman on a bike.", "album_id": "72157623136469278", "photo_flickr_id": "4248009002", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43200", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then came a woman on a bike .", "storylet_id": "216004"}], [{"original_text": "We took a walk through the city.", "album_id": "72157623136469278", "photo_flickr_id": "4244672776", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43201", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a walk through the city .", "storylet_id": "216005"}], [{"original_text": "We found a lot of fun couples.", "album_id": "72157623136469278", "photo_flickr_id": "12456200643", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43201", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we found a lot of fun couples .", "storylet_id": "216006"}], [{"original_text": "There was some cute dogs out today.", "album_id": "72157623136469278", "photo_flickr_id": "12456067905", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43201", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was some cute dogs out today .", "storylet_id": "216007"}], [{"original_text": "There's been a lot of people down on their luck lately.", "album_id": "72157623136469278", "photo_flickr_id": "12456073855", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43201", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there 's been a lot of people down on their luck lately .", "storylet_id": "216008"}], [{"original_text": "Luckily there are a lot of people out there that help others.", "album_id": "72157623136469278", "photo_flickr_id": "4248010548", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43201", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "luckily there are a lot of people out there that help others .", "storylet_id": "216009"}], [{"original_text": "This mother and her children are bundled up for their day in the city.", "album_id": "72157623136469278", "photo_flickr_id": "4244672776", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43202", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this mother and her children are bundled up for their day in the city .", "storylet_id": "216010"}], [{"original_text": "These best friends enjoy their day together in the big city.", "album_id": "72157623136469278", "photo_flickr_id": "12456200643", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43202", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these best friends enjoy their day together in the big city .", "storylet_id": "216011"}], [{"original_text": "Even the dogs must bundle up to ward off the cold today.", "album_id": "72157623136469278", "photo_flickr_id": "12456067905", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43202", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the dogs must bundle up to ward off the cold today .", "storylet_id": "216012"}], [{"original_text": "This woman knows how to effectively load up her bike after a day of shopping.", "album_id": "72157623136469278", "photo_flickr_id": "12456073855", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43202", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this woman knows how to effectively load up her bike after a day of shopping .", "storylet_id": "216013"}], [{"original_text": "One must sample the many foods available while visiting our city.", "album_id": "72157623136469278", "photo_flickr_id": "4248010548", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43202", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one must sample the many foods available while visiting our city .", "storylet_id": "216014"}], [{"original_text": "Mom and the kids got bundled up and decided to go to the grocery store.", "album_id": "72157623136469278", "photo_flickr_id": "4244672776", "setting": "last-3-pick-old-and-tell", "worker_id": "X8F6KSVF7KXGOGT", "story_id": "43203", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom and the kids got bundled up and decided to go to the grocery store .", "storylet_id": "216015"}], [{"original_text": "While walking by they saw their friends across the street.", "album_id": "72157623136469278", "photo_flickr_id": "12456200643", "setting": "last-3-pick-old-and-tell", "worker_id": "X8F6KSVF7KXGOGT", "story_id": "43203", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while walking by they saw their friends across the street .", "storylet_id": "216016"}], [{"original_text": "They also saw their neighbor and their dog.", "album_id": "72157623136469278", "photo_flickr_id": "12456067905", "setting": "last-3-pick-old-and-tell", "worker_id": "X8F6KSVF7KXGOGT", "story_id": "43203", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also saw their neighbor and their dog .", "storylet_id": "216017"}], [{"original_text": "Even people they did not know, like the guy on a bike.", "album_id": "72157623136469278", "photo_flickr_id": "12456073855", "setting": "last-3-pick-old-and-tell", "worker_id": "X8F6KSVF7KXGOGT", "story_id": "43203", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even people they did not know , like the guy on a bike .", "storylet_id": "216018"}], [{"original_text": "Either way, they had a great time.", "album_id": "72157623136469278", "photo_flickr_id": "4248010548", "setting": "last-3-pick-old-and-tell", "worker_id": "X8F6KSVF7KXGOGT", "story_id": "43203", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "either way , they had a great time .", "storylet_id": "216019"}], [{"original_text": "I am spending the day people watching while my wife shops. First up, this matching family.", "album_id": "72157623136469278", "photo_flickr_id": "4244672776", "setting": "last-3-pick-old-and-tell", "worker_id": "ROAIAI849NTZBZ1", "story_id": "43204", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am spending the day people watching while my wife shops . first up , this matching family .", "storylet_id": "216020"}], [{"original_text": "I like this lady's boots.", "album_id": "72157623136469278", "photo_flickr_id": "4243904815", "setting": "last-3-pick-old-and-tell", "worker_id": "ROAIAI849NTZBZ1", "story_id": "43204", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i like this lady 's boots .", "storylet_id": "216021"}], [{"original_text": "I wonder if he is their owner or just a dog walker.", "album_id": "72157623136469278", "photo_flickr_id": "12456183433", "setting": "last-3-pick-old-and-tell", "worker_id": "ROAIAI849NTZBZ1", "story_id": "43204", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i wonder if he is their owner or just a dog walker .", "storylet_id": "216022"}], [{"original_text": "It is not everyday you see a dog dressed as Superman.", "album_id": "72157623136469278", "photo_flickr_id": "12456555814", "setting": "last-3-pick-old-and-tell", "worker_id": "ROAIAI849NTZBZ1", "story_id": "43204", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is not everyday you see a dog dressed as superman .", "storylet_id": "216023"}], [{"original_text": "My wife approaches empty handed, I am thinking this guy bought everything already.", "album_id": "72157623136469278", "photo_flickr_id": "4248009002", "setting": "last-3-pick-old-and-tell", "worker_id": "ROAIAI849NTZBZ1", "story_id": "43204", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my wife approaches empty handed , i am thinking this guy bought everything already .", "storylet_id": "216024"}], [{"original_text": "We took a walk down the pier today.", "album_id": "72157600007959053", "photo_flickr_id": "426076558", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43205", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a walk down the pier today .", "storylet_id": "216025"}], [{"original_text": "We stopped here to eat.", "album_id": "72157600007959053", "photo_flickr_id": "426076132", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43205", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped here to eat .", "storylet_id": "216026"}], [{"original_text": "We toured this taffy place.", "album_id": "72157600007959053", "photo_flickr_id": "426076849", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43205", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we toured this taffy place .", "storylet_id": "216027"}], [{"original_text": "We watched the boats.", "album_id": "72157600007959053", "photo_flickr_id": "454863399", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43205", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we watched the boats .", "storylet_id": "216028"}], [{"original_text": "It was a fun day.", "album_id": "72157600007959053", "photo_flickr_id": "426076229", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43205", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a fun day .", "storylet_id": "216029"}], [{"original_text": "First we saw a bridge.", "album_id": "72157600007959053", "photo_flickr_id": "413124102", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43206", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "first we saw a bridge .", "storylet_id": "216030"}], [{"original_text": "Then had some fish and chips.", "album_id": "72157600007959053", "photo_flickr_id": "426076132", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43206", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then had some fish and chips .", "storylet_id": "216031"}], [{"original_text": "Then walked down to the beach.", "album_id": "72157600007959053", "photo_flickr_id": "426076229", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43206", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then walked down to the beach .", "storylet_id": "216032"}], [{"original_text": "But a fence was in the way.", "album_id": "72157600007959053", "photo_flickr_id": "426077327", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43206", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but a fence was in the way .", "storylet_id": "216033"}], [{"original_text": "So we looked at a boat instead.", "album_id": "72157600007959053", "photo_flickr_id": "454863541", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43206", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so we looked at a boat instead .", "storylet_id": "216034"}], [{"original_text": "A man and his dogs are walking to the beach.", "album_id": "72157600007959053", "photo_flickr_id": "426076558", "setting": "last-3-pick-old-and-tell", "worker_id": "C4RN2WZRKEOH6OT", "story_id": "43207", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a man and his dogs are walking to the beach .", "storylet_id": "216035"}], [{"original_text": "Along the way they pass the \"go fish\" seafood restaurant.", "album_id": "72157600007959053", "photo_flickr_id": "426076132", "setting": "last-3-pick-old-and-tell", "worker_id": "C4RN2WZRKEOH6OT", "story_id": "43207", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "along the way they pass the `` go fish '' seafood restaurant .", "storylet_id": "216036"}], [{"original_text": "Then they pass \"Dolles\" salt water taffy store.", "album_id": "72157600007959053", "photo_flickr_id": "426076849", "setting": "last-3-pick-old-and-tell", "worker_id": "C4RN2WZRKEOH6OT", "story_id": "43207", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they pass `` dolles '' salt water taffy store .", "storylet_id": "216037"}], [{"original_text": "They know they are close when they pass the old rusty ship.", "album_id": "72157600007959053", "photo_flickr_id": "454863399", "setting": "last-3-pick-old-and-tell", "worker_id": "C4RN2WZRKEOH6OT", "story_id": "43207", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they know they are close when they pass the old rusty ship .", "storylet_id": "216038"}], [{"original_text": "Finally, when they arrive at the beach, the man chats with a friend as the dogs run off to play in the sand.", "album_id": "72157600007959053", "photo_flickr_id": "426076229", "setting": "last-3-pick-old-and-tell", "worker_id": "C4RN2WZRKEOH6OT", "story_id": "43207", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , when they arrive at the beach , the man chats with a friend as the dogs run off to play in the sand .", "storylet_id": "216039"}], [{"original_text": "We visited a coastal town in England.", "album_id": "72157600007959053", "photo_flickr_id": "426076558", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43208", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited a coastal town in location .", "storylet_id": "216040"}], [{"original_text": "We stopped at a local restaurant for some traditional fish and chips.", "album_id": "72157600007959053", "photo_flickr_id": "426076132", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43208", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped at a local restaurant for some traditional fish and chips .", "storylet_id": "216041"}], [{"original_text": "Next, we bought some salt water taffy at Dolles.", "album_id": "72157600007959053", "photo_flickr_id": "426076849", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43208", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next , we bought some salt water taffy at location .", "storylet_id": "216042"}], [{"original_text": "We sat by the waterside and watched the fishing boats.", "album_id": "72157600007959053", "photo_flickr_id": "454863399", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43208", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we sat by the waterside and watched the fishing boats .", "storylet_id": "216043"}], [{"original_text": "Then we took a walk on the boardwalk.", "album_id": "72157600007959053", "photo_flickr_id": "426076229", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43208", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we took a walk on the boardwalk .", "storylet_id": "216044"}], [{"original_text": "Early in the afternoon we decided to take a trip down to the wharf.", "album_id": "72157600007959053", "photo_flickr_id": "426076558", "setting": "last-3-pick-old-and-tell", "worker_id": "JHW6FYD7ZL4QOLY", "story_id": "43209", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "early in the afternoon we decided to take a trip down to the wharf .", "storylet_id": "216045"}], [{"original_text": "First we stopped to eat at our favorite fish restaurant.", "album_id": "72157600007959053", "photo_flickr_id": "426076132", "setting": "last-3-pick-old-and-tell", "worker_id": "JHW6FYD7ZL4QOLY", "story_id": "43209", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we stopped to eat at our favorite fish restaurant .", "storylet_id": "216046"}], [{"original_text": "For dessert, we bought some fresh taffy.", "album_id": "72157600007959053", "photo_flickr_id": "426076849", "setting": "last-3-pick-old-and-tell", "worker_id": "JHW6FYD7ZL4QOLY", "story_id": "43209", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "for dessert , we bought some fresh taffy .", "storylet_id": "216047"}], [{"original_text": "We enjoyed our snack while watch the workers loading one of the big ships.", "album_id": "72157600007959053", "photo_flickr_id": "454863399", "setting": "last-3-pick-old-and-tell", "worker_id": "JHW6FYD7ZL4QOLY", "story_id": "43209", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we enjoyed our snack while watch the workers loading one of the big ships .", "storylet_id": "216048"}], [{"original_text": "At the end of the day we stopped to watch the sunset and listen to the waves.", "album_id": "72157600007959053", "photo_flickr_id": "426076229", "setting": "last-3-pick-old-and-tell", "worker_id": "JHW6FYD7ZL4QOLY", "story_id": "43209", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day we stopped to watch the sunset and listen to the waves .", "storylet_id": "216049"}], [{"original_text": "The wine glass needs washed.", "album_id": "72157601794221996", "photo_flickr_id": "121931102", "setting": "first-2-pick-and-tell", "worker_id": "NOB6TAMQQNYYDTL", "story_id": "43210", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wine glass needs washed .", "storylet_id": "216050"}], [{"original_text": "The tea kettle needs washed.", "album_id": "72157601794221996", "photo_flickr_id": "122516354", "setting": "first-2-pick-and-tell", "worker_id": "NOB6TAMQQNYYDTL", "story_id": "43210", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tea kettle needs washed .", "storylet_id": "216051"}], [{"original_text": "I will wash them together. What is the worst that might happen?", "album_id": "72157601794221996", "photo_flickr_id": "121930966", "setting": "first-2-pick-and-tell", "worker_id": "NOB6TAMQQNYYDTL", "story_id": "43210", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i will wash them together . what is the worst that might happen ?", "storylet_id": "216052"}], [{"original_text": "Oops, wine glasses are fragile.", "album_id": "72157601794221996", "photo_flickr_id": "125689687", "setting": "first-2-pick-and-tell", "worker_id": "NOB6TAMQQNYYDTL", "story_id": "43210", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "oops , wine glasses are fragile .", "storylet_id": "216053"}], [{"original_text": "Darn it! Time for some new glasses.", "album_id": "72157601794221996", "photo_flickr_id": "127377411", "setting": "first-2-pick-and-tell", "worker_id": "NOB6TAMQQNYYDTL", "story_id": "43210", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "darn it ! time for some new glasses .", "storylet_id": "216054"}], [{"original_text": "This glass is dirty and needs to be washed.", "album_id": "72157601794221996", "photo_flickr_id": "121931102", "setting": "first-2-pick-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "43211", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this glass is dirty and needs to be washed .", "storylet_id": "216055"}], [{"original_text": "It has broken, luckily it is still intact.", "album_id": "72157601794221996", "photo_flickr_id": "125689830", "setting": "first-2-pick-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "43211", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it has broken , luckily it is still intact .", "storylet_id": "216056"}], [{"original_text": "The glass has shattered, at least it is still mostly in one piece.", "album_id": "72157601794221996", "photo_flickr_id": "125690542", "setting": "first-2-pick-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "43211", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the glass has shattered , at least it is still mostly in one piece .", "storylet_id": "216057"}], [{"original_text": "Now the glass has broken all over the place!", "album_id": "72157601794221996", "photo_flickr_id": "127377399", "setting": "first-2-pick-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "43211", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now the glass has broken all over the place !", "storylet_id": "216058"}], [{"original_text": "Somebody is going to have to clean up this huge mess!", "album_id": "72157601794221996", "photo_flickr_id": "127377405", "setting": "first-2-pick-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "43211", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "somebody is going to have to clean up this huge mess !", "storylet_id": "216059"}], [{"original_text": "We had a brilliant idea to place acid into a wine glass.", "album_id": "72157601794221996", "photo_flickr_id": "121931102", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43212", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a brilliant idea to place acid into a wine glass .", "storylet_id": "216060"}], [{"original_text": "We carried the acid in a ceramic tea pot.", "album_id": "72157601794221996", "photo_flickr_id": "122516354", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43212", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we carried the acid in a ceramic tea pot .", "storylet_id": "216061"}], [{"original_text": "And, then, we let it happen. A quick poor and turned it upside down!", "album_id": "72157601794221996", "photo_flickr_id": "121930966", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43212", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and , then , we let it happen . a quick poor and turned it upside down !", "storylet_id": "216062"}], [{"original_text": "It did not turn out well, as the wine glass received terrible damage, starting with a hole.", "album_id": "72157601794221996", "photo_flickr_id": "125689687", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43212", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it did not turn out well , as the wine glass received terrible damage , starting with a hole .", "storylet_id": "216063"}], [{"original_text": "And, culminating in complete destruction.", "album_id": "72157601794221996", "photo_flickr_id": "127377411", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43212", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , culminating in complete destruction .", "storylet_id": "216064"}], [{"original_text": "I was washing dishes yesterday and I broke one of my best wine glasses.", "album_id": "72157601794221996", "photo_flickr_id": "121931102", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43213", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was washing dishes yesterday and i broke one of my best wine glasses .", "storylet_id": "216065"}], [{"original_text": "It was my favorite one.", "album_id": "72157601794221996", "photo_flickr_id": "125689830", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43213", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was my favorite one .", "storylet_id": "216066"}], [{"original_text": "I really liked it.", "album_id": "72157601794221996", "photo_flickr_id": "125690542", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43213", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i really liked it .", "storylet_id": "216067"}], [{"original_text": "All of the glass pieces were really sharp and I hurt myself trying to clean them up.", "album_id": "72157601794221996", "photo_flickr_id": "127377399", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43213", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the glass pieces were really sharp and i hurt myself trying to clean them up .", "storylet_id": "216068"}], [{"original_text": "I have to be more careful next time.", "album_id": "72157601794221996", "photo_flickr_id": "127377405", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43213", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i have to be more careful next time .", "storylet_id": "216069"}], [{"original_text": "Bubbles are seen at the bottom of the glass.", "album_id": "72157601794221996", "photo_flickr_id": "121931102", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "43214", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "bubbles are seen at the bottom of the glass .", "storylet_id": "216070"}], [{"original_text": "The tea pot is dark brown and light brown.", "album_id": "72157601794221996", "photo_flickr_id": "122516354", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "43214", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tea pot is dark brown and light brown .", "storylet_id": "216071"}], [{"original_text": "The tea pot and glass with bubbles are next to each other.", "album_id": "72157601794221996", "photo_flickr_id": "121930966", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "43214", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tea pot and glass with bubbles are next to each other .", "storylet_id": "216072"}], [{"original_text": "The glass cracks.", "album_id": "72157601794221996", "photo_flickr_id": "125689687", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "43214", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the glass cracks .", "storylet_id": "216073"}], [{"original_text": "The glass shatters and lays on the table.", "album_id": "72157601794221996", "photo_flickr_id": "127377411", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "43214", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the glass shatters and lays on the table .", "storylet_id": "216074"}], [{"original_text": "It was an overcast day at the beach but the waves were perfect for a day of surfing.", "album_id": "72157594413051895", "photo_flickr_id": "318265597", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43215", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was an overcast day at the beach but the waves were perfect for a day of surfing .", "storylet_id": "216075"}], [{"original_text": "He studied the ocean and picked out the area he wanted to surf.", "album_id": "72157594413051895", "photo_flickr_id": "318266543", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43215", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he studied the ocean and picked out the area he wanted to surf .", "storylet_id": "216076"}], [{"original_text": "They headed out to conquer the waves.", "album_id": "72157594413051895", "photo_flickr_id": "318267246", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43215", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they headed out to conquer the waves .", "storylet_id": "216077"}], [{"original_text": "After a light rain a beautiful rainbow appeared in the sky.", "album_id": "72157594413051895", "photo_flickr_id": "318269511", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43215", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a light rain a beautiful rainbow appeared in the sky .", "storylet_id": "216078"}], [{"original_text": "The guys decided to make the most of the weather and surf until dark.", "album_id": "72157594413051895", "photo_flickr_id": "318271508", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43215", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the guys decided to make the most of the weather and surf until dark .", "storylet_id": "216079"}], [{"original_text": "The weather was shaping up to be perfect for surfer school.", "album_id": "72157594413051895", "photo_flickr_id": "318265597", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43216", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the weather was shaping up to be perfect for surfer school .", "storylet_id": "216080"}], [{"original_text": "The guys first practiced on the sand.", "album_id": "72157594413051895", "photo_flickr_id": "318266908", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43216", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guys first practiced on the sand .", "storylet_id": "216081"}], [{"original_text": "The water was colder than they expected.", "album_id": "72157594413051895", "photo_flickr_id": "318267246", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43216", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water was colder than they expected .", "storylet_id": "216082"}], [{"original_text": "The rainbow made us feel as if was going to be a good day.", "album_id": "72157594413051895", "photo_flickr_id": "318269511", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43216", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rainbow made us feel as if was going to be a good day .", "storylet_id": "216083"}], [{"original_text": "He finally had success.", "album_id": "72157594413051895", "photo_flickr_id": "318272193", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43216", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he finally had success .", "storylet_id": "216084"}], [{"original_text": "The waves were calm today", "album_id": "72157594413051895", "photo_flickr_id": "318265597", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43217", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the waves were calm today", "storylet_id": "216085"}], [{"original_text": "which made it a great day for a surf lesson. The boys laid on their surfboards and learned how to row out to sea", "album_id": "72157594413051895", "photo_flickr_id": "318266908", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43217", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "which made it a great day for a surf lesson . the boys laid on their surfboards and learned how to row out to sea", "storylet_id": "216086"}], [{"original_text": "and then they got in the water and tried it out.", "album_id": "72157594413051895", "photo_flickr_id": "318267246", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43217", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and then they got in the water and tried it out .", "storylet_id": "216087"}], [{"original_text": "A rainbow started to form above the water as the boys swam out to catch some waves.", "album_id": "72157594413051895", "photo_flickr_id": "318269511", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43217", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a rainbow started to form above the water as the boys swam out to catch some waves .", "storylet_id": "216088"}], [{"original_text": "When they came back in, they were so excited that they had actually surfed!", "album_id": "72157594413051895", "photo_flickr_id": "318272193", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43217", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when they came back in , they were so excited that they had actually surfed !", "storylet_id": "216089"}], [{"original_text": "Crappy looking day is perfect for surfing.", "album_id": "72157594413051895", "photo_flickr_id": "318265597", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43218", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "crappy looking day is perfect for surfing .", "storylet_id": "216090"}], [{"original_text": "Check out that swell.", "album_id": "72157594413051895", "photo_flickr_id": "318266543", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43218", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "check out that swell .", "storylet_id": "216091"}], [{"original_text": "Let's get out there!", "album_id": "72157594413051895", "photo_flickr_id": "318267246", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43218", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "let 's get out there !", "storylet_id": "216092"}], [{"original_text": "Beautiful double rainbow. A good sign for some good surf.", "album_id": "72157594413051895", "photo_flickr_id": "318269511", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43218", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "beautiful double rainbow . a good sign for some good surf .", "storylet_id": "216093"}], [{"original_text": "Here we go!", "album_id": "72157594413051895", "photo_flickr_id": "318271508", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43218", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here we go !", "storylet_id": "216094"}], [{"original_text": "I went to learn to surf on the coast.", "album_id": "72157594413051895", "photo_flickr_id": "318265597", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43219", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to learn to surf on the coast .", "storylet_id": "216095"}], [{"original_text": "Joe pointed out a rainbow.", "album_id": "72157594413051895", "photo_flickr_id": "318266543", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43219", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] pointed out a rainbow .", "storylet_id": "216096"}], [{"original_text": "Here we are going out to sea.", "album_id": "72157594413051895", "photo_flickr_id": "318267246", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43219", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here we are going out to sea .", "storylet_id": "216097"}], [{"original_text": "Here's the rainbow in the background.", "album_id": "72157594413051895", "photo_flickr_id": "318269511", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43219", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's the rainbow in the background .", "storylet_id": "216098"}], [{"original_text": "I surfed my first wave!", "album_id": "72157594413051895", "photo_flickr_id": "318271508", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43219", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i surfed my first wave !", "storylet_id": "216099"}], [{"original_text": "Finally the speaker arrives.", "album_id": "72157623404737542", "photo_flickr_id": "4346940019", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43220", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "finally the speaker arrives .", "storylet_id": "216100"}], [{"original_text": "People were eager for the conference to begin.", "album_id": "72157623404737542", "photo_flickr_id": "4347686716", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43220", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people were eager for the conference to begin .", "storylet_id": "216101"}], [{"original_text": "There were many speakers that day.", "album_id": "72157623404737542", "photo_flickr_id": "4347687156", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43220", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many speakers that day .", "storylet_id": "216102"}], [{"original_text": "People made small talk while waiting.", "album_id": "72157623404737542", "photo_flickr_id": "4347687356", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43220", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people made small talk while waiting .", "storylet_id": "216103"}], [{"original_text": "Afterwards, everybody took a photo together.", "album_id": "72157623404737542", "photo_flickr_id": "4346939865", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43220", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , everybody took a photo together .", "storylet_id": "216104"}], [{"original_text": "It was a big event today.", "album_id": "72157623404737542", "photo_flickr_id": "4347685590", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43221", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a big event today .", "storylet_id": "216105"}], [{"original_text": "There was lots of food.", "album_id": "72157623404737542", "photo_flickr_id": "4347685664", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43221", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was lots of food .", "storylet_id": "216106"}], [{"original_text": "One guy even wore khaki!", "album_id": "72157623404737542", "photo_flickr_id": "4346939717", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43221", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one guy even wore khaki !", "storylet_id": "216107"}], [{"original_text": "They applauded him.", "album_id": "72157623404737542", "photo_flickr_id": "4346940663", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43221", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they applauded him .", "storylet_id": "216108"}], [{"original_text": "Because he was so diverse.", "album_id": "72157623404737542", "photo_flickr_id": "4347687100", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43221", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "because he was so diverse .", "storylet_id": "216109"}], [{"original_text": "It doesn't matter what the occasion...", "album_id": "72157623404737542", "photo_flickr_id": "4346940019", "setting": "last-3-pick-old-and-tell", "worker_id": "21NWFDZH6O2KM7V", "story_id": "43222", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it does n't matter what the occasion ...", "storylet_id": "216110"}], [{"original_text": "When a politician speaks, someone is going to struggle to stay awake.", "album_id": "72157623404737542", "photo_flickr_id": "4347686716", "setting": "last-3-pick-old-and-tell", "worker_id": "21NWFDZH6O2KM7V", "story_id": "43222", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when a politician speaks , someone is going to struggle to stay awake .", "storylet_id": "216111"}], [{"original_text": "That doesn't make what is said during the speeches any less important, however.", "album_id": "72157623404737542", "photo_flickr_id": "4347687156", "setting": "last-3-pick-old-and-tell", "worker_id": "21NWFDZH6O2KM7V", "story_id": "43222", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that does n't make what is said during the speeches any less important , however .", "storylet_id": "216112"}], [{"original_text": "It's just that some people are just not as engaging as others.", "album_id": "72157623404737542", "photo_flickr_id": "4347687356", "setting": "last-3-pick-old-and-tell", "worker_id": "21NWFDZH6O2KM7V", "story_id": "43222", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's just that some people are just not as engaging as others .", "storylet_id": "216113"}], [{"original_text": "Because any group of people, for any purpose, is still made of individuals.", "album_id": "72157623404737542", "photo_flickr_id": "4346939865", "setting": "last-3-pick-old-and-tell", "worker_id": "21NWFDZH6O2KM7V", "story_id": "43222", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "because any group of people , for any purpose , is still made of individuals .", "storylet_id": "216114"}], [{"original_text": "getting ready to have a celebrating", "album_id": "72157623404737542", "photo_flickr_id": "4346940019", "setting": "last-3-pick-old-and-tell", "worker_id": "FRB8AQP0P9ZHRR9", "story_id": "43223", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting ready to have a celebrating", "storylet_id": "216115"}], [{"original_text": "the man is making a speak to the crowd", "album_id": "72157623404737542", "photo_flickr_id": "4347686716", "setting": "last-3-pick-old-and-tell", "worker_id": "FRB8AQP0P9ZHRR9", "story_id": "43223", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man is making a speak to the crowd", "storylet_id": "216116"}], [{"original_text": "he is owning a employee", "album_id": "72157623404737542", "photo_flickr_id": "4347687156", "setting": "last-3-pick-old-and-tell", "worker_id": "FRB8AQP0P9ZHRR9", "story_id": "43223", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he is owning a employee", "storylet_id": "216117"}], [{"original_text": "getting ready to make a toss", "album_id": "72157623404737542", "photo_flickr_id": "4347687356", "setting": "last-3-pick-old-and-tell", "worker_id": "FRB8AQP0P9ZHRR9", "story_id": "43223", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "getting ready to make a toss", "storylet_id": "216118"}], [{"original_text": "taking a group picture together", "album_id": "72157623404737542", "photo_flickr_id": "4346939865", "setting": "last-3-pick-old-and-tell", "worker_id": "FRB8AQP0P9ZHRR9", "story_id": "43223", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "taking a group picture together", "storylet_id": "216119"}], [{"original_text": "The three of us are at an event.", "album_id": "72157623404737542", "photo_flickr_id": "4347685590", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43224", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the three of us are at an event .", "storylet_id": "216120"}], [{"original_text": "They had refreshments.", "album_id": "72157623404737542", "photo_flickr_id": "4347685664", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43224", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had refreshments .", "storylet_id": "216121"}], [{"original_text": "Here is a picture of a family that looks happy.", "album_id": "72157623404737542", "photo_flickr_id": "4346939717", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43224", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is a picture of a family that looks happy .", "storylet_id": "216122"}], [{"original_text": "These people are laughing at a joke.", "album_id": "72157623404737542", "photo_flickr_id": "4346940663", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43224", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these people are laughing at a joke .", "storylet_id": "216123"}], [{"original_text": "The lecturer had quite a lot to say.", "album_id": "72157623404737542", "photo_flickr_id": "4347687100", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43224", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lecturer had quite a lot to say .", "storylet_id": "216124"}], [{"original_text": "Saw this car and had to have it.", "album_id": "72157623834155822", "photo_flickr_id": "4512638734", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "43225", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "saw this car and had to have it .", "storylet_id": "216125"}], [{"original_text": "It was shiny and beautiful.", "album_id": "72157623834155822", "photo_flickr_id": "4512637352", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "43225", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was shiny and beautiful .", "storylet_id": "216126"}], [{"original_text": "The specs of the ad were right and the car was in my price range.", "album_id": "72157623834155822", "photo_flickr_id": "4512640648", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "43225", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the specs of the ad were right and the car was in my price range .", "storylet_id": "216127"}], [{"original_text": "Went for a test drive and took it back to the dealership.", "album_id": "72157623834155822", "photo_flickr_id": "4512641024", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "43225", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "went for a test drive and took it back to the dealership .", "storylet_id": "216128"}], [{"original_text": "Bought the car the next day.", "album_id": "72157623834155822", "photo_flickr_id": "4512643136", "setting": "first-2-pick-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "43225", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "bought the car the next day .", "storylet_id": "216129"}], [{"original_text": "We entered the shop and saw lots of really cool cars on display.", "album_id": "72157623834155822", "photo_flickr_id": "4512638312", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43226", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we entered the shop and saw lots of really cool cars on display .", "storylet_id": "216130"}], [{"original_text": "Some of them were very unusual and very expensive.", "album_id": "72157623834155822", "photo_flickr_id": "4512637674", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43226", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of them were very unusual and very expensive .", "storylet_id": "216131"}], [{"original_text": "There were several race cars.", "album_id": "72157623834155822", "photo_flickr_id": "4511996885", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43226", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were several race cars .", "storylet_id": "216132"}], [{"original_text": "Modern sports cars were my top pick.", "album_id": "72157623834155822", "photo_flickr_id": "4512638734", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43226", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "modern sports cars were my top pick .", "storylet_id": "216133"}], [{"original_text": "The older sports cars were pretty neat too.", "album_id": "72157623834155822", "photo_flickr_id": "4512639048", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43226", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the older sports cars were pretty neat too .", "storylet_id": "216134"}], [{"original_text": "This was my favorite Porche at the Porche car show last weekend.", "album_id": "72157623834155822", "photo_flickr_id": "4512638734", "setting": "last-3-pick-old-and-tell", "worker_id": "GI1GYGWF3OOS5L0", "story_id": "43227", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was my favorite porche at the porche car show last weekend .", "storylet_id": "216135"}], [{"original_text": "If I were to get a Porche, this would be the exact style and color I would choose.", "album_id": "72157623834155822", "photo_flickr_id": "4512637352", "setting": "last-3-pick-old-and-tell", "worker_id": "GI1GYGWF3OOS5L0", "story_id": "43227", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "if i were to get a porche , this would be the exact style and color i would choose .", "storylet_id": "216136"}], [{"original_text": "The headlights and rims were one of a kind!", "album_id": "72157623834155822", "photo_flickr_id": "4512640648", "setting": "last-3-pick-old-and-tell", "worker_id": "GI1GYGWF3OOS5L0", "story_id": "43227", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the headlights and rims were one of a kind !", "storylet_id": "216137"}], [{"original_text": "The front end was so sleek and pretty.", "album_id": "72157623834155822", "photo_flickr_id": "4512641024", "setting": "last-3-pick-old-and-tell", "worker_id": "GI1GYGWF3OOS5L0", "story_id": "43227", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the front end was so sleek and pretty .", "storylet_id": "216138"}], [{"original_text": "We were able to get inside and look around to get a drivers feel for it!", "album_id": "72157623834155822", "photo_flickr_id": "4512643136", "setting": "last-3-pick-old-and-tell", "worker_id": "GI1GYGWF3OOS5L0", "story_id": "43227", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were able to get inside and look around to get a drivers feel for it !", "storylet_id": "216139"}], [{"original_text": "Luckily my car was in the local auto show this year.", "album_id": "72157623834155822", "photo_flickr_id": "4512638734", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "43228", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "luckily my car was in the local auto show this year .", "storylet_id": "216140"}], [{"original_text": "I made sure to give it a good wash and polish.", "album_id": "72157623834155822", "photo_flickr_id": "4512637352", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "43228", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i made sure to give it a good wash and polish .", "storylet_id": "216141"}], [{"original_text": "The car looked really good underneath the bright lights.", "album_id": "72157623834155822", "photo_flickr_id": "4512640648", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "43228", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the car looked really good underneath the bright lights .", "storylet_id": "216142"}], [{"original_text": "There were a lot of cars at the show but this was the best spot.", "album_id": "72157623834155822", "photo_flickr_id": "4512641024", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "43228", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of cars at the show but this was the best spot .", "storylet_id": "216143"}], [{"original_text": "Everyone wanted to sit in the car and all said it felt really comfortable.", "album_id": "72157623834155822", "photo_flickr_id": "4512643136", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "43228", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone wanted to sit in the car and all said it felt really comfortable .", "storylet_id": "216144"}], [{"original_text": "We're at the car show and I can't take my eyes off this beauty. ", "album_id": "72157623834155822", "photo_flickr_id": "4512638734", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "43229", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 're at the car show and i ca n't take my eyes off this beauty .", "storylet_id": "216145"}], [{"original_text": "It's just such a glorious car, in my favorite color, silver. ", "album_id": "72157623834155822", "photo_flickr_id": "4512637352", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "43229", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's just such a glorious car , in my favorite color , silver .", "storylet_id": "216146"}], [{"original_text": "There's a raffle for this car later today and I hope I win it!", "album_id": "72157623834155822", "photo_flickr_id": "4512640648", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "43229", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there 's a raffle for this car later today and i hope i win it !", "storylet_id": "216147"}], [{"original_text": "I can easily imagine myself cruising down the highway in this beauty!", "album_id": "72157623834155822", "photo_flickr_id": "4512641024", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "43229", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i can easily imagine myself cruising down the highway in this beauty !", "storylet_id": "216148"}], [{"original_text": "I'm off into the sunset with the car of my dreams. (In my dreams.)", "album_id": "72157623834155822", "photo_flickr_id": "4512643136", "setting": "last-3-pick-old-and-tell", "worker_id": "T3296HOVVGVFQXE", "story_id": "43229", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm off into the sunset with the car of my dreams . ( in my dreams . )", "storylet_id": "216149"}], [{"original_text": "they were great statues outside the academy", "album_id": "72157594370938633", "photo_flickr_id": "294804551", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "43230", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were great statues outside the academy", "storylet_id": "216150"}], [{"original_text": "many were attending a graduation", "album_id": "72157594370938633", "photo_flickr_id": "294804788", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "43230", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many were attending a graduation", "storylet_id": "216151"}], [{"original_text": "the man gave an emotional speech", "album_id": "72157594370938633", "photo_flickr_id": "294806209", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "43230", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man gave an emotional speech", "storylet_id": "216152"}], [{"original_text": "and paid tribute to the armed forces", "album_id": "72157594370938633", "photo_flickr_id": "294807492", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "43230", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and paid tribute to the armed forces", "storylet_id": "216153"}], [{"original_text": "with many more statues outside of the building ", "album_id": "72157594370938633", "photo_flickr_id": "294808424", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "43230", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with many more statues outside of the building", "storylet_id": "216154"}], [{"original_text": "The auditorium was beginning to fill up. ", "album_id": "72157594370938633", "photo_flickr_id": "294804788", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43231", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the auditorium was beginning to fill up .", "storylet_id": "216155"}], [{"original_text": "It didn't take long. ", "album_id": "72157594370938633", "photo_flickr_id": "294805039", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43231", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it did n't take long .", "storylet_id": "216156"}], [{"original_text": "In minutes it was filled to capacity. ", "album_id": "72157594370938633", "photo_flickr_id": "294805360", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43231", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in minutes it was filled to capacity .", "storylet_id": "216157"}], [{"original_text": "He joked he hoped they wouldn't have to call the fire marshals. ", "album_id": "72157594370938633", "photo_flickr_id": "294805735", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43231", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he joked he hoped they would n't have to call the fire marshals .", "storylet_id": "216158"}], [{"original_text": "Then he addressed the graduating class. ", "album_id": "72157594370938633", "photo_flickr_id": "294806209", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43231", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then he addressed the graduating class .", "storylet_id": "216159"}], [{"original_text": "The statue was finally in place...", "album_id": "72157594370938633", "photo_flickr_id": "294804551", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43232", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the statue was finally in place ...", "storylet_id": "216160"}], [{"original_text": "The crowd began to gather to hear the donation ceremony and the speech.", "album_id": "72157594370938633", "photo_flickr_id": "294804788", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43232", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd began to gather to hear the donation ceremony and the speech .", "storylet_id": "216161"}], [{"original_text": "Finally, Pastor Smith took the stage and began to speak.", "album_id": "72157594370938633", "photo_flickr_id": "294806209", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43232", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally , pastor smith took the stage and began to speak .", "storylet_id": "216162"}], [{"original_text": "The veterans that served with the Colonel were all present.", "album_id": "72157594370938633", "photo_flickr_id": "294807492", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43232", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the veterans that served with the colonel were all present .", "storylet_id": "216163"}], [{"original_text": "And, they could not have been happier with the beautiful statue that honored their friend.", "album_id": "72157594370938633", "photo_flickr_id": "294808424", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43232", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , they could not have been happier with the beautiful statue that honored their friend .", "storylet_id": "216164"}], [{"original_text": "We visited a national monument for Veterans Day.", "album_id": "72157594370938633", "photo_flickr_id": "294804551", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43233", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited a national monument for veterans day .", "storylet_id": "216165"}], [{"original_text": "They had a program honoring the fallen.", "album_id": "72157594370938633", "photo_flickr_id": "294804788", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43233", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a program honoring the fallen .", "storylet_id": "216166"}], [{"original_text": "The guest speaker was very inspirational.", "album_id": "72157594370938633", "photo_flickr_id": "294806209", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43233", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guest speaker was very inspirational .", "storylet_id": "216167"}], [{"original_text": "There were several active duty veterans there.", "album_id": "72157594370938633", "photo_flickr_id": "294807492", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43233", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were several active duty veterans there .", "storylet_id": "216168"}], [{"original_text": "The monument was weather stained.", "album_id": "72157594370938633", "photo_flickr_id": "294808424", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43233", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the monument was weather stained .", "storylet_id": "216169"}], [{"original_text": "The church service was about to begin in 15 minutes.", "album_id": "72157594370938633", "photo_flickr_id": "294804788", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "43234", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the church service was about to begin in 15 minutes .", "storylet_id": "216170"}], [{"original_text": "As time went on, the seats became more and more full. ", "album_id": "72157594370938633", "photo_flickr_id": "294805039", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "43234", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as time went on , the seats became more and more full .", "storylet_id": "216171"}], [{"original_text": "Two minutes before the service started, the hall was almost full. ", "album_id": "72157594370938633", "photo_flickr_id": "294805360", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "43234", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two minutes before the service started , the hall was almost full .", "storylet_id": "216172"}], [{"original_text": "Reverend Larry and his wife Mary came on the stage and started the sermon. ", "album_id": "72157594370938633", "photo_flickr_id": "294805735", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "43234", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "reverend [male] and his wife [female] came on the stage and started the sermon .", "storylet_id": "216173"}], [{"original_text": "Then they introduced the visiting minister for his service. ", "album_id": "72157594370938633", "photo_flickr_id": "294806209", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "43234", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then they introduced the visiting minister for his service .", "storylet_id": "216174"}], [{"original_text": "We went out for a hike today.", "album_id": "72157629295879759", "photo_flickr_id": "6867389675", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43235", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went out for a hike today .", "storylet_id": "216175"}], [{"original_text": "There was nobody else there.", "album_id": "72157629295879759", "photo_flickr_id": "6867373971", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43235", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was nobody else there .", "storylet_id": "216176"}], [{"original_text": "Nobody for miles.", "album_id": "72157629295879759", "photo_flickr_id": "6867386537", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43235", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nobody for miles .", "storylet_id": "216177"}], [{"original_text": "We ran into some wildlife.", "album_id": "72157629295879759", "photo_flickr_id": "6867352865", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43235", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we ran into some wildlife .", "storylet_id": "216178"}], [{"original_text": "We were pretty tired at the end of the hike, but very happy.", "album_id": "72157629295879759", "photo_flickr_id": "6867438085", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43235", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were pretty tired at the end of the hike , but very happy .", "storylet_id": "216179"}], [{"original_text": "Along the way the couple spot a wild cat, blending into the foliage.", "album_id": "72157629295879759", "photo_flickr_id": "6867352865", "setting": "first-2-pick-and-tell", "worker_id": "E1143BPUW0BB1WH", "story_id": "43236", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "along the way the couple spot a wild cat , blending into the foliage .", "storylet_id": "216180"}], [{"original_text": "Near the end of their journey up, the couple find a small watering hole and decide to freshen their cantinas.", "album_id": "72157629295879759", "photo_flickr_id": "6867386537", "setting": "first-2-pick-and-tell", "worker_id": "E1143BPUW0BB1WH", "story_id": "43236", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "near the end of their journey up , the couple find a small watering hole and decide to freshen their cantinas .", "storylet_id": "216181"}], [{"original_text": "A married couple are happy to start their early hike thru the mountains.", "album_id": "72157629295879759", "photo_flickr_id": "6867438085", "setting": "first-2-pick-and-tell", "worker_id": "E1143BPUW0BB1WH", "story_id": "43236", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a married couple are happy to start their early hike thru the mountains .", "storylet_id": "216182"}], [{"original_text": "Along the way, the husband catches a spot where three mountain peaks are visible in one.", "album_id": "72157629295879759", "photo_flickr_id": "6867445381", "setting": "first-2-pick-and-tell", "worker_id": "E1143BPUW0BB1WH", "story_id": "43236", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "along the way , the husband catches a spot where three mountain peaks are visible in one .", "storylet_id": "216183"}], [{"original_text": "After a full day, the couple take one last photo of a small peak near the end of the trail.", "album_id": "72157629295879759", "photo_flickr_id": "6867389675", "setting": "first-2-pick-and-tell", "worker_id": "E1143BPUW0BB1WH", "story_id": "43236", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a full day , the couple take one last photo of a small peak near the end of the trail .", "storylet_id": "216184"}], [{"original_text": "This is the panorama of the landscape we hiked through.", "album_id": "72157629295879759", "photo_flickr_id": "6867389675", "setting": "last-3-pick-old-and-tell", "worker_id": "XLW7EZ86AG0TR70", "story_id": "43237", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the panorama of the landscape we hiked through .", "storylet_id": "216185"}], [{"original_text": "It was a dry desert but the path wasn't rough at all.", "album_id": "72157629295879759", "photo_flickr_id": "6867373971", "setting": "last-3-pick-old-and-tell", "worker_id": "XLW7EZ86AG0TR70", "story_id": "43237", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a dry desert but the path was n't rough at all .", "storylet_id": "216186"}], [{"original_text": "A pond in the middle of the desert? Please don't let it be a mirage!", "album_id": "72157629295879759", "photo_flickr_id": "6867386537", "setting": "last-3-pick-old-and-tell", "worker_id": "XLW7EZ86AG0TR70", "story_id": "43237", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a pond in the middle of the desert ? please do n't let it be a mirage !", "storylet_id": "216187"}], [{"original_text": "This crafty little bobcat is thinking we're his next meal.", "album_id": "72157629295879759", "photo_flickr_id": "6867352865", "setting": "last-3-pick-old-and-tell", "worker_id": "XLW7EZ86AG0TR70", "story_id": "43237", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this crafty little bobcat is thinking we 're his next meal .", "storylet_id": "216188"}], [{"original_text": "We made it through the hike and get to see the beautiful country atop the hill.", "album_id": "72157629295879759", "photo_flickr_id": "6867438085", "setting": "last-3-pick-old-and-tell", "worker_id": "XLW7EZ86AG0TR70", "story_id": "43237", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we made it through the hike and get to see the beautiful country atop the hill .", "storylet_id": "216189"}], [{"original_text": "out in the delis their are wild life there", "album_id": "72157629295879759", "photo_flickr_id": "6867352865", "setting": "last-3-pick-old-and-tell", "worker_id": "FRB8AQP0P9ZHRR9", "story_id": "43238", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "out in the delis their are wild life there", "storylet_id": "216190"}], [{"original_text": "also there are mountain water hole there ", "album_id": "72157629295879759", "photo_flickr_id": "6867386537", "setting": "last-3-pick-old-and-tell", "worker_id": "FRB8AQP0P9ZHRR9", "story_id": "43238", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "also there are mountain water hole there", "storylet_id": "216191"}], [{"original_text": "the couple are dress for mountain having fun", "album_id": "72157629295879759", "photo_flickr_id": "6867438085", "setting": "last-3-pick-old-and-tell", "worker_id": "FRB8AQP0P9ZHRR9", "story_id": "43238", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the couple are dress for mountain having fun", "storylet_id": "216192"}], [{"original_text": "is standing on the top the mounding", "album_id": "72157629295879759", "photo_flickr_id": "6867445381", "setting": "last-3-pick-old-and-tell", "worker_id": "FRB8AQP0P9ZHRR9", "story_id": "43238", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "is standing on the top the mounding", "storylet_id": "216193"}], [{"original_text": "the sky is blue and the mounting is high", "album_id": "72157629295879759", "photo_flickr_id": "6867389675", "setting": "last-3-pick-old-and-tell", "worker_id": "FRB8AQP0P9ZHRR9", "story_id": "43238", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sky is blue and the mounting is high", "storylet_id": "216194"}], [{"original_text": "We saw a leopard.", "album_id": "72157629295879759", "photo_flickr_id": "6867352865", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43239", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we saw a leopard .", "storylet_id": "216195"}], [{"original_text": "Then we saw a pond.", "album_id": "72157629295879759", "photo_flickr_id": "6867386537", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43239", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we saw a pond .", "storylet_id": "216196"}], [{"original_text": "We stopped to take a picture.", "album_id": "72157629295879759", "photo_flickr_id": "6867438085", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43239", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stopped to take a picture .", "storylet_id": "216197"}], [{"original_text": "We continued walking.", "album_id": "72157629295879759", "photo_flickr_id": "6867445381", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43239", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we continued walking .", "storylet_id": "216198"}], [{"original_text": "At the end of the day, the sun is setting soon.", "album_id": "72157629295879759", "photo_flickr_id": "6867389675", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43239", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , the sun is setting soon .", "storylet_id": "216199"}], [{"original_text": "There was so much snow in the city today.", "album_id": "72157623433806636", "photo_flickr_id": "4356687402", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43240", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was so much snow in the city today .", "storylet_id": "216200"}], [{"original_text": "I had to walk back to my car.", "album_id": "72157623433806636", "photo_flickr_id": "4356072029", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43240", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had to walk back to my car .", "storylet_id": "216201"}], [{"original_text": "Many people passed through here.", "album_id": "72157623433806636", "photo_flickr_id": "4355946961", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43240", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many people passed through here .", "storylet_id": "216202"}], [{"original_text": "I had to be very careful going down these steps.", "album_id": "72157623433806636", "photo_flickr_id": "4356819864", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43240", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had to be very careful going down these steps .", "storylet_id": "216203"}], [{"original_text": "Finally I made it back to the parking lot.", "album_id": "72157623433806636", "photo_flickr_id": "4356695724", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43240", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally i made it back to the parking lot .", "storylet_id": "216204"}], [{"original_text": "A snowstorm recently hit the city covering some path in snow.", "album_id": "72157623433806636", "photo_flickr_id": "4356694522", "setting": "first-2-pick-and-tell", "worker_id": "7ORRBZDGX2XI74W", "story_id": "43241", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a snowstorm recently hit the city covering some path in snow .", "storylet_id": "216205"}], [{"original_text": "Some paths were shoveled quickly to help pedestrians.", "album_id": "72157623433806636", "photo_flickr_id": "4356690346", "setting": "first-2-pick-and-tell", "worker_id": "7ORRBZDGX2XI74W", "story_id": "43241", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some paths were shoveled quickly to help pedestrians .", "storylet_id": "216206"}], [{"original_text": "The river partially froze over.", "album_id": "72157623433806636", "photo_flickr_id": "4355943229", "setting": "first-2-pick-and-tell", "worker_id": "7ORRBZDGX2XI74W", "story_id": "43241", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the river partially froze over .", "storylet_id": "216207"}], [{"original_text": "Some parts of the river were not frozen however.", "album_id": "72157623433806636", "photo_flickr_id": "4356687402", "setting": "first-2-pick-and-tell", "worker_id": "7ORRBZDGX2XI74W", "story_id": "43241", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some parts of the river were not frozen however .", "storylet_id": "216208"}], [{"original_text": "The storm was bad enough to knock over signs on the streets.", "album_id": "72157623433806636", "photo_flickr_id": "4356818814", "setting": "first-2-pick-and-tell", "worker_id": "7ORRBZDGX2XI74W", "story_id": "43241", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the storm was bad enough to knock over signs on the streets .", "storylet_id": "216209"}], [{"original_text": "It looks like many people before us traveled this way.", "album_id": "72157623433806636", "photo_flickr_id": "4356694522", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43242", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it looks like many people before us traveled this way .", "storylet_id": "216210"}], [{"original_text": "A path was recently cleared of snow after the storm we received. ", "album_id": "72157623433806636", "photo_flickr_id": "4356690346", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43242", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a path was recently cleared of snow after the storm we received .", "storylet_id": "216211"}], [{"original_text": "The starkness of the snow and stone is beautiful.", "album_id": "72157623433806636", "photo_flickr_id": "4355943229", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43242", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the starkness of the snow and stone is beautiful .", "storylet_id": "216212"}], [{"original_text": "Even the water of the wharf is frozen after the big snow storm. ", "album_id": "72157623433806636", "photo_flickr_id": "4356687402", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43242", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the water of the wharf is frozen after the big snow storm .", "storylet_id": "216213"}], [{"original_text": "The winds of the storm flipped this sign up side down. ", "album_id": "72157623433806636", "photo_flickr_id": "4356818814", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43242", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the winds of the storm flipped this sign up side down .", "storylet_id": "216214"}], [{"original_text": "It was a very snowy and cold day today.", "album_id": "72157623433806636", "photo_flickr_id": "4356687402", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43243", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a very snowy and cold day today .", "storylet_id": "216215"}], [{"original_text": "There were not many people out driving.", "album_id": "72157623433806636", "photo_flickr_id": "4356072029", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43243", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were not many people out driving .", "storylet_id": "216216"}], [{"original_text": "There had been a lot of footsteps in the snow outside of this building.", "album_id": "72157623433806636", "photo_flickr_id": "4355946961", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43243", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there had been a lot of footsteps in the snow outside of this building .", "storylet_id": "216217"}], [{"original_text": "The steps were very icy and slippery.", "album_id": "72157623433806636", "photo_flickr_id": "4356819864", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43243", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the steps were very icy and slippery .", "storylet_id": "216218"}], [{"original_text": "As the day progressed the sunshine helped melt a lot of the snow off of the cars.", "album_id": "72157623433806636", "photo_flickr_id": "4356695724", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43243", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the day progressed the sunshine helped melt a lot of the snow off of the cars .", "storylet_id": "216219"}], [{"original_text": "We started walking outside.", "album_id": "72157623433806636", "photo_flickr_id": "4356694522", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43244", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started walking outside .", "storylet_id": "216220"}], [{"original_text": "We walked on the sidewalk. ", "album_id": "72157623433806636", "photo_flickr_id": "4356690346", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43244", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we walked on the sidewalk .", "storylet_id": "216221"}], [{"original_text": "We visited the bridge.", "album_id": "72157623433806636", "photo_flickr_id": "4355943229", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43244", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we visited the bridge .", "storylet_id": "216222"}], [{"original_text": "We went to the end of the bridge.", "album_id": "72157623433806636", "photo_flickr_id": "4356687402", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43244", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went to the end of the bridge .", "storylet_id": "216223"}], [{"original_text": "We saw a speed limit sign that was upside down.", "album_id": "72157623433806636", "photo_flickr_id": "4356818814", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43244", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we saw a speed limit sign that was upside down .", "storylet_id": "216224"}], [{"original_text": "Sarah could barely contain her excitement at attending her first ComiCon.", "album_id": "72157623464889932", "photo_flickr_id": "4356569635", "setting": "first-2-pick-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "43245", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] could barely contain her excitement at attending her first comicon .", "storylet_id": "216225"}], [{"original_text": "She had heard there were all kinds of costumes there.", "album_id": "72157623464889932", "photo_flickr_id": "4356564839", "setting": "first-2-pick-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "43245", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had heard there were all kinds of costumes there .", "storylet_id": "216226"}], [{"original_text": "Especially iconic characters from video games!", "album_id": "72157623464889932", "photo_flickr_id": "4357318382", "setting": "first-2-pick-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "43245", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "especially iconic characters from video games !", "storylet_id": "216227"}], [{"original_text": "Sometimes people got a little carried away, though.", "album_id": "72157623464889932", "photo_flickr_id": "4357313846", "setting": "first-2-pick-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "43245", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes people got a little carried away , though .", "storylet_id": "216228"}], [{"original_text": "She hoped everybody would behave and not make the police angry.", "album_id": "72157623464889932", "photo_flickr_id": "4356556119", "setting": "first-2-pick-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "43245", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she hoped everybody would behave and not make the police angry .", "storylet_id": "216229"}], [{"original_text": "The streets were bustling in the city.", "album_id": "72157623464889932", "photo_flickr_id": "4357328256", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "43246", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the streets were bustling in the city .", "storylet_id": "216230"}], [{"original_text": "There were mostly adults out, but some children were out enjoying themselves too.", "album_id": "72157623464889932", "photo_flickr_id": "4356569635", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "43246", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were mostly adults out , but some children were out enjoying themselves too .", "storylet_id": "216231"}], [{"original_text": "People cleared the streets so vehicles could get by.", "album_id": "72157623464889932", "photo_flickr_id": "4357291786", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "43246", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people cleared the streets so vehicles could get by .", "storylet_id": "216232"}], [{"original_text": "Street entertainers could be seen on almost every block.", "album_id": "72157623464889932", "photo_flickr_id": "4357325894", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "43246", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "street entertainers could be seen on almost every block .", "storylet_id": "216233"}], [{"original_text": "People went about their days, going to work, meeting with friends, and eventually, heading home.", "album_id": "72157623464889932", "photo_flickr_id": "4357296222", "setting": "first-2-pick-and-tell", "worker_id": "1VMDXT5RXEZ3OPM", "story_id": "43246", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people went about their days , going to work , meeting with friends , and eventually , heading home .", "storylet_id": "216234"}], [{"original_text": "So many people came out to see today's parade.", "album_id": "72157623464889932", "photo_flickr_id": "4357328256", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43247", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so many people came out to see today 's parade .", "storylet_id": "216235"}], [{"original_text": "Even the children get into the spirit of today's fun.", "album_id": "72157623464889932", "photo_flickr_id": "4356569635", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43247", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the children get into the spirit of today 's fun .", "storylet_id": "216236"}], [{"original_text": "On lookers march along in support of today's events. ", "album_id": "72157623464889932", "photo_flickr_id": "4357291786", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43247", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on lookers march along in support of today 's events .", "storylet_id": "216237"}], [{"original_text": "Even these clowns deserve a break today!", "album_id": "72157623464889932", "photo_flickr_id": "4357325894", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43247", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even these clowns deserve a break today !", "storylet_id": "216238"}], [{"original_text": "The parade marchers walk side by side in support of today's parade.", "album_id": "72157623464889932", "photo_flickr_id": "4357296222", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "43247", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the parade marchers walk side by side in support of today 's parade .", "storylet_id": "216239"}], [{"original_text": "There was a big festival going on today.", "album_id": "72157623464889932", "photo_flickr_id": "4356569635", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43248", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a big festival going on today .", "storylet_id": "216240"}], [{"original_text": "There was a lot of people out walking the streets.", "album_id": "72157623464889932", "photo_flickr_id": "4356564839", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43248", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of people out walking the streets .", "storylet_id": "216241"}], [{"original_text": "We even seen some characters walking around.", "album_id": "72157623464889932", "photo_flickr_id": "4357318382", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43248", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even seen some characters walking around .", "storylet_id": "216242"}], [{"original_text": "There were vehicles that were decorated as well.", "album_id": "72157623464889932", "photo_flickr_id": "4357313846", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43248", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were vehicles that were decorated as well .", "storylet_id": "216243"}], [{"original_text": "There were plenty of people there to make the day fun.", "album_id": "72157623464889932", "photo_flickr_id": "4356556119", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43248", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were plenty of people there to make the day fun .", "storylet_id": "216244"}], [{"original_text": "We saw people dressed up.", "album_id": "72157623464889932", "photo_flickr_id": "4356569635", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43249", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we saw people dressed up .", "storylet_id": "216245"}], [{"original_text": "Some people had funny looking wigs.", "album_id": "72157623464889932", "photo_flickr_id": "4356564839", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43249", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some people had funny looking wigs .", "storylet_id": "216246"}], [{"original_text": "Others were dressed up as Mario and Luigi.", "album_id": "72157623464889932", "photo_flickr_id": "4357318382", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43249", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others were dressed up as [male] and luigi .", "storylet_id": "216247"}], [{"original_text": "We saw a van covered in stickers.", "album_id": "72157623464889932", "photo_flickr_id": "4357313846", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43249", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw a van covered in stickers .", "storylet_id": "216248"}], [{"original_text": "We kept walking on the street.", "album_id": "72157623464889932", "photo_flickr_id": "4356556119", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43249", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we kept walking on the street .", "storylet_id": "216249"}], [{"original_text": "The band on stage played played for an audience.", "album_id": "163689", "photo_flickr_id": "6560723", "setting": "first-2-pick-and-tell", "worker_id": "JBXME8SB3T523W7", "story_id": "43250", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the band on stage played played for an audience .", "storylet_id": "216250"}], [{"original_text": "They played various instruments like the electric guitar.", "album_id": "163689", "photo_flickr_id": "6561216", "setting": "first-2-pick-and-tell", "worker_id": "JBXME8SB3T523W7", "story_id": "43250", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they played various instruments like the electric guitar .", "storylet_id": "216251"}], [{"original_text": "The audience was excited to hear them play.", "album_id": "163689", "photo_flickr_id": "6561229", "setting": "first-2-pick-and-tell", "worker_id": "JBXME8SB3T523W7", "story_id": "43250", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the audience was excited to hear them play .", "storylet_id": "216252"}], [{"original_text": "One of the guitarists performed a stunt where he played on his knees.", "album_id": "163689", "photo_flickr_id": "6561239", "setting": "first-2-pick-and-tell", "worker_id": "JBXME8SB3T523W7", "story_id": "43250", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the guitarists performed a stunt where he played on his knees .", "storylet_id": "216253"}], [{"original_text": "The band even got the audience involved and let a little girl on stage.", "album_id": "163689", "photo_flickr_id": "6561252", "setting": "first-2-pick-and-tell", "worker_id": "JBXME8SB3T523W7", "story_id": "43250", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the band even got the audience involved and let a little girl on stage .", "storylet_id": "216254"}], [{"original_text": "The concert was a great time for everyone.", "album_id": "163689", "photo_flickr_id": "6561229", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "43251", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the concert was a great time for everyone .", "storylet_id": "216255"}], [{"original_text": "The drummer delivered a great performance.", "album_id": "163689", "photo_flickr_id": "6560718", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "43251", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the drummer delivered a great performance .", "storylet_id": "216256"}], [{"original_text": "The whole band performed their hearts out.", "album_id": "163689", "photo_flickr_id": "6560723", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "43251", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the whole band performed their hearts out .", "storylet_id": "216257"}], [{"original_text": "The guitar player gave a great solo.", "album_id": "163689", "photo_flickr_id": "6561239", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "43251", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guitar player gave a great solo .", "storylet_id": "216258"}], [{"original_text": "They ended the performance by calling a girl on stage to sing.", "album_id": "163689", "photo_flickr_id": "6561192", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "43251", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ended the performance by calling a girl on stage to sing .", "storylet_id": "216259"}], [{"original_text": "The band was warming up.", "album_id": "163689", "photo_flickr_id": "6561229", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43252", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the band was warming up .", "storylet_id": "216260"}], [{"original_text": "The drummer was playing as good as ever had.", "album_id": "163689", "photo_flickr_id": "6560718", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43252", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the drummer was playing as good as ever had .", "storylet_id": "216261"}], [{"original_text": "Finally they started the first song.", "album_id": "163689", "photo_flickr_id": "6560723", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43252", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally they started the first song .", "storylet_id": "216262"}], [{"original_text": "The guitarist played an amazing solo.", "album_id": "163689", "photo_flickr_id": "6561239", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43252", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guitarist played an amazing solo .", "storylet_id": "216263"}], [{"original_text": "And they ended the show with a members daughter singing.", "album_id": "163689", "photo_flickr_id": "6561192", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43252", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they ended the show with a members daughter singing .", "storylet_id": "216264"}], [{"original_text": "When we first got to the venue, we had to warm up.", "album_id": "163689", "photo_flickr_id": "6560723", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43253", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when we first got to the venue , we had to warm up .", "storylet_id": "216265"}], [{"original_text": "Then, we changed clothes and really began to rock.", "album_id": "163689", "photo_flickr_id": "6561216", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43253", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then , we changed clothes and really began to rock .", "storylet_id": "216266"}], [{"original_text": "Artie & Jim's voices were booming.", "album_id": "163689", "photo_flickr_id": "6561229", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43253", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] & [male] 's voices were booming .", "storylet_id": "216267"}], [{"original_text": "And, Artie was killing it on the guitar.", "album_id": "163689", "photo_flickr_id": "6561239", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43253", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , [female] was killing it on the guitar .", "storylet_id": "216268"}], [{"original_text": "The audience didn't know what to make of us but seemed to really love it.", "album_id": "163689", "photo_flickr_id": "6561252", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43253", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the audience did n't know what to make of us but seemed to really love it .", "storylet_id": "216269"}], [{"original_text": "The old band decided to reunite for a charity event.", "album_id": "163689", "photo_flickr_id": "6560723", "setting": "last-3-pick-old-and-tell", "worker_id": "IWIIEE3GIULFP16", "story_id": "43254", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old band decided to reunite for a charity event .", "storylet_id": "216270"}], [{"original_text": "Jack hasn't missed a beat since he play's in another band full-time.", "album_id": "163689", "photo_flickr_id": "6561216", "setting": "last-3-pick-old-and-tell", "worker_id": "IWIIEE3GIULFP16", "story_id": "43254", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] has n't missed a beat since he play 's in another band full-time .", "storylet_id": "216271"}], [{"original_text": "Stephen could use a some water since his voice sounds hoarse.", "album_id": "163689", "photo_flickr_id": "6561229", "setting": "last-3-pick-old-and-tell", "worker_id": "IWIIEE3GIULFP16", "story_id": "43254", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] could use a some water since his voice sounds hoarse .", "storylet_id": "216272"}], [{"original_text": "Michael was really having a good time with his old guitar.", "album_id": "163689", "photo_flickr_id": "6561239", "setting": "last-3-pick-old-and-tell", "worker_id": "IWIIEE3GIULFP16", "story_id": "43254", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was really having a good time with his old guitar .", "storylet_id": "216273"}], [{"original_text": "The concert was a success and raised money for a good cause.", "album_id": "163689", "photo_flickr_id": "6561252", "setting": "last-3-pick-old-and-tell", "worker_id": "IWIIEE3GIULFP16", "story_id": "43254", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the concert was a success and raised money for a good cause .", "storylet_id": "216274"}], [{"original_text": "I was working on coloring my hair.", "album_id": "72157594540186551", "photo_flickr_id": "392701802", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43255", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was working on coloring my hair .", "storylet_id": "216275"}], [{"original_text": "My girlfriend thought it was really funny.", "album_id": "72157594540186551", "photo_flickr_id": "392704190", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43255", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my girlfriend thought it was really funny .", "storylet_id": "216276"}], [{"original_text": "I was finally almost done.", "album_id": "72157594540186551", "photo_flickr_id": "392711564", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43255", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was finally almost done .", "storylet_id": "216277"}], [{"original_text": "I really liked out it turned out.", "album_id": "72157594540186551", "photo_flickr_id": "392712958", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43255", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i really liked out it turned out .", "storylet_id": "216278"}], [{"original_text": "I think it made me look a lot better.", "album_id": "72157594540186551", "photo_flickr_id": "392720977", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43255", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think it made me look a lot better .", "storylet_id": "216279"}], [{"original_text": "There's noting better than a guy who dyes his hair.", "album_id": "72157594540186551", "photo_flickr_id": "392701802", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43256", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there 's noting better than a guy who dyes his hair .", "storylet_id": "216280"}], [{"original_text": "Except a guy wearing a garbage bag.", "album_id": "72157594540186551", "photo_flickr_id": "392711564", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43256", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "except a guy wearing a garbage bag .", "storylet_id": "216281"}], [{"original_text": "And wow did his armpits stink.", "album_id": "72157594540186551", "photo_flickr_id": "392712554", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43256", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and wow did his armpits stink .", "storylet_id": "216282"}], [{"original_text": "I couldn't even look.", "album_id": "72157594540186551", "photo_flickr_id": "392722437", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43256", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i could n't even look .", "storylet_id": "216283"}], [{"original_text": "What a disaster.", "album_id": "72157594540186551", "photo_flickr_id": "392723301", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43256", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what a disaster .", "storylet_id": "216284"}], [{"original_text": "This guy decided that he wanted highlights in his hair, so he asked his girlfriend for help.", "album_id": "72157594540186551", "photo_flickr_id": "392701802", "setting": "last-3-pick-old-and-tell", "worker_id": "C4RN2WZRKEOH6OT", "story_id": "43257", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this guy decided that he wanted highlights in his hair , so he asked his girlfriend for help .", "storylet_id": "216285"}], [{"original_text": "She laughed because she knew he was not going to enjoy the process, but she agreed to do it anyway.", "album_id": "72157594540186551", "photo_flickr_id": "392704190", "setting": "last-3-pick-old-and-tell", "worker_id": "C4RN2WZRKEOH6OT", "story_id": "43257", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she laughed because she knew he was not going to enjoy the process , but she agreed to do it anyway .", "storylet_id": "216286"}], [{"original_text": "Since they had no cape, she cut a hole in a trash bag and placed it over his head.", "album_id": "72157594540186551", "photo_flickr_id": "392711564", "setting": "last-3-pick-old-and-tell", "worker_id": "C4RN2WZRKEOH6OT", "story_id": "43257", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "since they had no cape , she cut a hole in a trash bag and placed it over his head .", "storylet_id": "216287"}], [{"original_text": "He was skeptical when she first washed out his hair. He was not at all sure that he was going to like it.", "album_id": "72157594540186551", "photo_flickr_id": "392712958", "setting": "last-3-pick-old-and-tell", "worker_id": "C4RN2WZRKEOH6OT", "story_id": "43257", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was skeptical when she first washed out his hair . he was not at all sure that he was going to like it .", "storylet_id": "216288"}], [{"original_text": "Turns out, he was right. He didn't like it, but he knew that it would grow out so he wasn't too upset.", "album_id": "72157594540186551", "photo_flickr_id": "392720977", "setting": "last-3-pick-old-and-tell", "worker_id": "C4RN2WZRKEOH6OT", "story_id": "43257", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "turns out , he was right . he did n't like it , but he knew that it would grow out so he was n't too upset .", "storylet_id": "216289"}], [{"original_text": "I had been wanting to get my hair done for quiet some time.", "album_id": "72157594540186551", "photo_flickr_id": "392701802", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43258", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had been wanting to get my hair done for quiet some time .", "storylet_id": "216290"}], [{"original_text": "My Girlfriend went with me to make sure I got it done correctly.", "album_id": "72157594540186551", "photo_flickr_id": "392704190", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43258", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my girlfriend went with me to make sure i got it done correctly .", "storylet_id": "216291"}], [{"original_text": "I am getting ready to get started.", "album_id": "72157594540186551", "photo_flickr_id": "392711564", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43258", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i am getting ready to get started .", "storylet_id": "216292"}], [{"original_text": "This was my before picture.", "album_id": "72157594540186551", "photo_flickr_id": "392712958", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43258", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was my before picture .", "storylet_id": "216293"}], [{"original_text": "This is the after picture and I think it turned out great.", "album_id": "72157594540186551", "photo_flickr_id": "392720977", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43258", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the after picture and i think it turned out great .", "storylet_id": "216294"}], [{"original_text": "He is going to get foil highlights.", "album_id": "72157594540186551", "photo_flickr_id": "392701802", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43259", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he is going to get foil highlights .", "storylet_id": "216295"}], [{"original_text": "The trashbag was used for his legs.", "album_id": "72157594540186551", "photo_flickr_id": "392711564", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43259", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the trashbag was used for his legs .", "storylet_id": "216296"}], [{"original_text": "His friend is helping with the hairdo.", "album_id": "72157594540186551", "photo_flickr_id": "392712554", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43259", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his friend is helping with the hairdo .", "storylet_id": "216297"}], [{"original_text": "They stopped to show off their hair.", "album_id": "72157594540186551", "photo_flickr_id": "392722437", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43259", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they stopped to show off their hair .", "storylet_id": "216298"}], [{"original_text": "Here is the final product.", "album_id": "72157594540186551", "photo_flickr_id": "392723301", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43259", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is the final product .", "storylet_id": "216299"}], [{"original_text": "The road was undergoing a lot of construction.", "album_id": "166789", "photo_flickr_id": "6682837", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "43260", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the road was undergoing a lot of construction .", "storylet_id": "216300"}], [{"original_text": "The amount of delays was vast.", "album_id": "166789", "photo_flickr_id": "6682842", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "43260", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the amount of delays was vast .", "storylet_id": "216301"}], [{"original_text": "It made it hard to get through the traffic.", "album_id": "166789", "photo_flickr_id": "6682849", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "43260", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it made it hard to get through the traffic .", "storylet_id": "216302"}], [{"original_text": "The man was getting frustrated.", "album_id": "166789", "photo_flickr_id": "6683087", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "43260", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man was getting frustrated .", "storylet_id": "216303"}], [{"original_text": "It was doubtful how accurate the signs would be with all the work.", "album_id": "166789", "photo_flickr_id": "6683092", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "43260", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was doubtful how accurate the signs would be with all the work .", "storylet_id": "216304"}], [{"original_text": "This is my Dad, he is on the way to the V.A. Medical Center", "album_id": "166789", "photo_flickr_id": "6683087", "setting": "first-2-pick-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "43261", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my dad , he is on the way to the location . medical center", "storylet_id": "216305"}], [{"original_text": "He needs to exchange this medical device because it broke.", "album_id": "166789", "photo_flickr_id": "6682870", "setting": "first-2-pick-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "43261", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he needs to exchange this medical device because it broke .", "storylet_id": "216306"}], [{"original_text": "Here he is, about to arrive.", "album_id": "166789", "photo_flickr_id": "6683092", "setting": "first-2-pick-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "43261", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here he is , about to arrive .", "storylet_id": "216307"}], [{"original_text": "He has a handicap tag. Thank goodness for that, he would never be able to find a spot without one!", "album_id": "166789", "photo_flickr_id": "6682882", "setting": "first-2-pick-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "43261", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he has a handicap tag . thank goodness for that , he would never be able to find a spot without one !", "storylet_id": "216308"}], [{"original_text": "He finally returns home. He said everything worked out good and the replacement will be here in a week!", "album_id": "166789", "photo_flickr_id": "6682834", "setting": "first-2-pick-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "43261", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he finally returns home . he said everything worked out good and the replacement will be here in a week !", "storylet_id": "216309"}], [{"original_text": "The white sedan passed by on the narrow, semi-rural road past the roadblocks.", "album_id": "166789", "photo_flickr_id": "6682837", "setting": "last-3-pick-old-and-tell", "worker_id": "POXGW9EXPF58T09", "story_id": "43262", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the white sedan passed by on the narrow , semi-rural road past the roadblocks .", "storylet_id": "216310"}], [{"original_text": "Traffic got a little heavier as we passed the strip mall.", "album_id": "166789", "photo_flickr_id": "6682842", "setting": "last-3-pick-old-and-tell", "worker_id": "POXGW9EXPF58T09", "story_id": "43262", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "traffic got a little heavier as we passed the strip mall .", "storylet_id": "216311"}], [{"original_text": "A couple lanes were blocked by roadblocks and we wondered if we should have taken the bus.", "album_id": "166789", "photo_flickr_id": "6682849", "setting": "last-3-pick-old-and-tell", "worker_id": "POXGW9EXPF58T09", "story_id": "43262", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a couple lanes were blocked by roadblocks and we wondered if we should have taken the bus .", "storylet_id": "216312"}], [{"original_text": "I stopped to look for the sign for the medical center.", "album_id": "166789", "photo_flickr_id": "6683087", "setting": "last-3-pick-old-and-tell", "worker_id": "POXGW9EXPF58T09", "story_id": "43262", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i stopped to look for the sign for the medical center .", "storylet_id": "216313"}], [{"original_text": "I see the sign for the medical center and got there with plenty of time to get to my appointment.", "album_id": "166789", "photo_flickr_id": "6683092", "setting": "last-3-pick-old-and-tell", "worker_id": "POXGW9EXPF58T09", "story_id": "43262", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i see the sign for the medical center and got there with plenty of time to get to my appointment .", "storylet_id": "216314"}], [{"original_text": "Sniper John is driving to keep a doctor's appointment.", "album_id": "166789", "photo_flickr_id": "6682837", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43263", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sniper [male] is driving to keep a doctor 's appointment .", "storylet_id": "216315"}], [{"original_text": "He has encountered road construction that delays him for a while.", "album_id": "166789", "photo_flickr_id": "6682842", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43263", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he has encountered road construction that delays him for a while .", "storylet_id": "216316"}], [{"original_text": "Nevertheless, he persists and makes his way past the road construction.", "album_id": "166789", "photo_flickr_id": "6682849", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43263", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nevertheless , he persists and makes his way past the road construction .", "storylet_id": "216317"}], [{"original_text": "The days of his heroism for his country are long past, but he stills loves his country.", "album_id": "166789", "photo_flickr_id": "6683087", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43263", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the days of his heroism for his country are long past , but he stills loves his country .", "storylet_id": "216318"}], [{"original_text": "He arrives at the V. A. Center where a grateful country repays him in part for the sacrifices he has made.", "album_id": "166789", "photo_flickr_id": "6683092", "setting": "last-3-pick-old-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43263", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he arrives at the v. a . center where a grateful country repays him in part for the sacrifices he has made .", "storylet_id": "216319"}], [{"original_text": "The man got in his car.", "album_id": "166789", "photo_flickr_id": "6683087", "setting": "last-3-pick-old-and-tell", "worker_id": "NOJ7ES2MZQICVSB", "story_id": "43264", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man got in his car .", "storylet_id": "216320"}], [{"original_text": "He looked back to make sure his wheel chair was secure in back.", "album_id": "166789", "photo_flickr_id": "6682870", "setting": "last-3-pick-old-and-tell", "worker_id": "NOJ7ES2MZQICVSB", "story_id": "43264", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he looked back to make sure his wheel chair was secure in back .", "storylet_id": "216321"}], [{"original_text": "He followed the signs for the V.A. medical center.", "album_id": "166789", "photo_flickr_id": "6683092", "setting": "last-3-pick-old-and-tell", "worker_id": "NOJ7ES2MZQICVSB", "story_id": "43264", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he followed the signs for the location . medical center .", "storylet_id": "216322"}], [{"original_text": "The man parked his car, making sure his handicap tag was visible through the windshield.", "album_id": "166789", "photo_flickr_id": "6682882", "setting": "last-3-pick-old-and-tell", "worker_id": "NOJ7ES2MZQICVSB", "story_id": "43264", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man parked his car , making sure his handicap tag was visible through the windshield .", "storylet_id": "216323"}], [{"original_text": "After the man's appointment, he got in his car and drove home.", "album_id": "166789", "photo_flickr_id": "6682834", "setting": "last-3-pick-old-and-tell", "worker_id": "NOJ7ES2MZQICVSB", "story_id": "43264", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the man 's appointment , he got in his car and drove home .", "storylet_id": "216324"}], [{"original_text": "A good day to be a dog.", "album_id": "72157594542419706", "photo_flickr_id": "394112363", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43265", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a good day to be a dog .", "storylet_id": "216325"}], [{"original_text": "We played in the grass.", "album_id": "72157594542419706", "photo_flickr_id": "394113804", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43265", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we played in the grass .", "storylet_id": "216326"}], [{"original_text": "Smelled delicious smells.", "album_id": "72157594542419706", "photo_flickr_id": "394113927", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43265", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "smelled delicious smells .", "storylet_id": "216327"}], [{"original_text": "Looked through the railings.", "album_id": "72157594542419706", "photo_flickr_id": "394114307", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43265", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "looked through the railings .", "storylet_id": "216328"}], [{"original_text": "And even jumped on some logs.", "album_id": "72157594542419706", "photo_flickr_id": "394114941", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43265", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and even jumped on some logs .", "storylet_id": "216329"}], [{"original_text": "I went for a walk today.", "album_id": "72157594542419706", "photo_flickr_id": "394112363", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43266", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a walk today .", "storylet_id": "216330"}], [{"original_text": "I followed my owner to the park.", "album_id": "72157594542419706", "photo_flickr_id": "394113804", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43266", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i followed my owner to the park .", "storylet_id": "216331"}], [{"original_text": "I waited while he took many pictures.", "album_id": "72157594542419706", "photo_flickr_id": "394114104", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43266", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i waited while he took many pictures .", "storylet_id": "216332"}], [{"original_text": "We stopped to catch the view from the bridge.", "album_id": "72157594542419706", "photo_flickr_id": "394114213", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43266", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped to catch the view from the bridge .", "storylet_id": "216333"}], [{"original_text": "Tired after a long day.", "album_id": "72157594542419706", "photo_flickr_id": "394114414", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43266", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "tired after a long day .", "storylet_id": "216334"}], [{"original_text": "The dog was excited for his daily walk.", "album_id": "72157594542419706", "photo_flickr_id": "394112363", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43267", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dog was excited for his daily walk .", "storylet_id": "216335"}], [{"original_text": "The dog ran around, exploring the park.", "album_id": "72157594542419706", "photo_flickr_id": "394113804", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43267", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dog ran around , exploring the park .", "storylet_id": "216336"}], [{"original_text": "It sniffed everything it could see.", "album_id": "72157594542419706", "photo_flickr_id": "394113927", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43267", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it sniffed everything it could see .", "storylet_id": "216337"}], [{"original_text": "The dog and its owner stopped to rest on a bridge.", "album_id": "72157594542419706", "photo_flickr_id": "394114307", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43267", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dog and its owner stopped to rest on a bridge .", "storylet_id": "216338"}], [{"original_text": "The dog did not want to leave but it was time to go home.", "album_id": "72157594542419706", "photo_flickr_id": "394114941", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43267", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dog did not want to leave but it was time to go home .", "storylet_id": "216339"}], [{"original_text": "It's time to go for a walk!", "album_id": "72157594542419706", "photo_flickr_id": "394112363", "setting": "last-3-pick-old-and-tell", "worker_id": "F8H1A8ZSP8XVPFG", "story_id": "43268", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's time to go for a walk !", "storylet_id": "216340"}], [{"original_text": "I'm exploring my new surroundings.", "album_id": "72157594542419706", "photo_flickr_id": "394113804", "setting": "last-3-pick-old-and-tell", "worker_id": "F8H1A8ZSP8XVPFG", "story_id": "43268", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm exploring my new surroundings .", "storylet_id": "216341"}], [{"original_text": "I'm taking in some fresh air and sunshine.", "album_id": "72157594542419706", "photo_flickr_id": "394114104", "setting": "last-3-pick-old-and-tell", "worker_id": "F8H1A8ZSP8XVPFG", "story_id": "43268", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i 'm taking in some fresh air and sunshine .", "storylet_id": "216342"}], [{"original_text": "Time to look out over the bridge and survey everything.", "album_id": "72157594542419706", "photo_flickr_id": "394114213", "setting": "last-3-pick-old-and-tell", "worker_id": "F8H1A8ZSP8XVPFG", "story_id": "43268", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "time to look out over the bridge and survey everything .", "storylet_id": "216343"}], [{"original_text": "I had so much fun on my walk but now it's time to head home.", "album_id": "72157594542419706", "photo_flickr_id": "394114414", "setting": "last-3-pick-old-and-tell", "worker_id": "F8H1A8ZSP8XVPFG", "story_id": "43268", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had so much fun on my walk but now it 's time to head home .", "storylet_id": "216344"}], [{"original_text": "The new puppy just arrived home!", "album_id": "72157594542419706", "photo_flickr_id": "394112363", "setting": "last-3-pick-old-and-tell", "worker_id": "V1BGMD5CNUZ5PZ4", "story_id": "43269", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the new puppy just arrived home !", "storylet_id": "216345"}], [{"original_text": "He was playing fetch with big sticks and running around.", "album_id": "72157594542419706", "photo_flickr_id": "394113804", "setting": "last-3-pick-old-and-tell", "worker_id": "V1BGMD5CNUZ5PZ4", "story_id": "43269", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was playing fetch with big sticks and running around .", "storylet_id": "216346"}], [{"original_text": "He enjoyed sniffing his new yard and going for a walk.", "album_id": "72157594542419706", "photo_flickr_id": "394113927", "setting": "last-3-pick-old-and-tell", "worker_id": "V1BGMD5CNUZ5PZ4", "story_id": "43269", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he enjoyed sniffing his new yard and going for a walk .", "storylet_id": "216347"}], [{"original_text": "He had no fear when they got to the bridge and decided to look out over the water.", "album_id": "72157594542419706", "photo_flickr_id": "394114307", "setting": "last-3-pick-old-and-tell", "worker_id": "V1BGMD5CNUZ5PZ4", "story_id": "43269", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he had no fear when they got to the bridge and decided to look out over the water .", "storylet_id": "216348"}], [{"original_text": "This little guy is going to enjoy his new home.", "album_id": "72157594542419706", "photo_flickr_id": "394114941", "setting": "last-3-pick-old-and-tell", "worker_id": "V1BGMD5CNUZ5PZ4", "story_id": "43269", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this little guy is going to enjoy his new home .", "storylet_id": "216349"}], [{"original_text": "The entire family went out on a hike today.", "album_id": "72157629844736843", "photo_flickr_id": "7090042441", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43270", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the entire family went out on a hike today .", "storylet_id": "216350"}], [{"original_text": "It was a long journey.", "album_id": "72157629844736843", "photo_flickr_id": "6943975384", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43270", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a long journey .", "storylet_id": "216351"}], [{"original_text": "We saw awesome views.", "album_id": "72157629844736843", "photo_flickr_id": "7090049879", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43270", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw awesome views .", "storylet_id": "216352"}], [{"original_text": "Almost to our destination.", "album_id": "72157629844736843", "photo_flickr_id": "6943970658", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43270", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "almost to our destination .", "storylet_id": "216353"}], [{"original_text": "Everybody was tired but happy at the end.", "album_id": "72157629844736843", "photo_flickr_id": "6943979280", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43270", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everybody was tired but happy at the end .", "storylet_id": "216354"}], [{"original_text": "I am preparing for my camping trip. First, I air out the tents in my backyard.", "album_id": "72157629844736843", "photo_flickr_id": "6943966526", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43271", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am preparing for my camping trip . first , i air out the tents in my backyard .", "storylet_id": "216355"}], [{"original_text": "Everything is cool. I am ready to go.", "album_id": "72157629844736843", "photo_flickr_id": "7090038303", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43271", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything is cool . i am ready to go .", "storylet_id": "216356"}], [{"original_text": "My buddies and I walk up the trail. It is quite a hike and after a few hours, you get really tired.", "album_id": "72157629844736843", "photo_flickr_id": "6943975384", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43271", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my buddies and i walk up the trail . it is quite a hike and after a few hours , you get really tired .", "storylet_id": "216357"}], [{"original_text": "The journey continues as we climb higher and higher.", "album_id": "72157629844736843", "photo_flickr_id": "6943978742", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43271", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the journey continues as we climb higher and higher .", "storylet_id": "216358"}], [{"original_text": "We make it to the top!", "album_id": "72157629844736843", "photo_flickr_id": "6943979280", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43271", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we make it to the top !", "storylet_id": "216359"}], [{"original_text": "The crew wakes up in the morning in their tents.", "album_id": "72157629844736843", "photo_flickr_id": "6943966526", "setting": "last-3-pick-old-and-tell", "worker_id": "LD40ZTAXD7KU9NR", "story_id": "43272", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crew wakes up in the morning in their tents .", "storylet_id": "216360"}], [{"original_text": "Dad gives the okay after the decision to go hiking is made.", "album_id": "72157629844736843", "photo_flickr_id": "7090038303", "setting": "last-3-pick-old-and-tell", "worker_id": "LD40ZTAXD7KU9NR", "story_id": "43272", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dad gives the okay after the decision to go hiking is made .", "storylet_id": "216361"}], [{"original_text": "The groups sets of on their adventure.", "album_id": "72157629844736843", "photo_flickr_id": "6943975384", "setting": "last-3-pick-old-and-tell", "worker_id": "LD40ZTAXD7KU9NR", "story_id": "43272", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the groups sets of on their adventure .", "storylet_id": "216362"}], [{"original_text": "Brother and sister climb a tough slope.", "album_id": "72157629844736843", "photo_flickr_id": "6943978742", "setting": "last-3-pick-old-and-tell", "worker_id": "LD40ZTAXD7KU9NR", "story_id": "43272", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "brother and sister climb a tough slope .", "storylet_id": "216363"}], [{"original_text": "The family reaches the top of the hill!", "album_id": "72157629844736843", "photo_flickr_id": "6943979280", "setting": "last-3-pick-old-and-tell", "worker_id": "LD40ZTAXD7KU9NR", "story_id": "43272", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family reaches the top of the hill !", "storylet_id": "216364"}], [{"original_text": "Here is the Crew on the summit of Kilimanjaro", "album_id": "72157629844736843", "photo_flickr_id": "7090042441", "setting": "last-3-pick-old-and-tell", "worker_id": "FD74H5EFPM8FW3F", "story_id": "43273", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is the crew on the summit of kilimanjaro", "storylet_id": "216365"}], [{"original_text": "The long trail to the next summit", "album_id": "72157629844736843", "photo_flickr_id": "6943975384", "setting": "last-3-pick-old-and-tell", "worker_id": "FD74H5EFPM8FW3F", "story_id": "43273", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the long trail to the next summit", "storylet_id": "216366"}], [{"original_text": "Beautiful views along the way.", "album_id": "72157629844736843", "photo_flickr_id": "7090049879", "setting": "last-3-pick-old-and-tell", "worker_id": "FD74H5EFPM8FW3F", "story_id": "43273", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "beautiful views along the way .", "storylet_id": "216367"}], [{"original_text": "The alpine tundra is very tiny and fragile.", "album_id": "72157629844736843", "photo_flickr_id": "6943970658", "setting": "last-3-pick-old-and-tell", "worker_id": "FD74H5EFPM8FW3F", "story_id": "43273", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the alpine tundra is very tiny and fragile .", "storylet_id": "216368"}], [{"original_text": "On the summit of Everest at last!", "album_id": "72157629844736843", "photo_flickr_id": "6943979280", "setting": "last-3-pick-old-and-tell", "worker_id": "FD74H5EFPM8FW3F", "story_id": "43273", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the summit of location at last !", "storylet_id": "216369"}], [{"original_text": "We were camping.", "album_id": "72157629844736843", "photo_flickr_id": "6943966526", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43274", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were camping .", "storylet_id": "216370"}], [{"original_text": "Here is our friend giving us a thumbs up.", "album_id": "72157629844736843", "photo_flickr_id": "7090038303", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43274", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is our friend giving us a thumbs up .", "storylet_id": "216371"}], [{"original_text": "We started hiking.", "album_id": "72157629844736843", "photo_flickr_id": "6943975384", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43274", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we started hiking .", "storylet_id": "216372"}], [{"original_text": "We are nearing the top.", "album_id": "72157629844736843", "photo_flickr_id": "6943978742", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43274", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we are nearing the top .", "storylet_id": "216373"}], [{"original_text": "We are at the top with everybody.", "album_id": "72157629844736843", "photo_flickr_id": "6943979280", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43274", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we are at the top with everybody .", "storylet_id": "216374"}], [{"original_text": "The day begins with old and cracked roads in need of repair.", "album_id": "72157630657169438", "photo_flickr_id": "7605635548", "setting": "first-2-pick-and-tell", "worker_id": "6LIW4XI8A7C8M3T", "story_id": "43275", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day begins with old and cracked roads in need of repair .", "storylet_id": "216375"}], [{"original_text": "The workers each have a specific job, such as removing the old pavement.", "album_id": "72157630657169438", "photo_flickr_id": "7605631012", "setting": "first-2-pick-and-tell", "worker_id": "6LIW4XI8A7C8M3T", "story_id": "43275", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the workers each have a specific job , such as removing the old pavement .", "storylet_id": "216376"}], [{"original_text": "The debris must be removed before you start laying down new pavement", "album_id": "72157630657169438", "photo_flickr_id": "7605635194", "setting": "first-2-pick-and-tell", "worker_id": "6LIW4XI8A7C8M3T", "story_id": "43275", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the debris must be removed before you start laying down new pavement", "storylet_id": "216377"}], [{"original_text": "Here the pavement and tar is being flattened and leveled. ", "album_id": "72157630657169438", "photo_flickr_id": "7605635872", "setting": "first-2-pick-and-tell", "worker_id": "6LIW4XI8A7C8M3T", "story_id": "43275", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here the pavement and tar is being flattened and leveled .", "storylet_id": "216378"}], [{"original_text": "The traffic directors work as a team to keep cars moving as smoothly as possible during the road work.", "album_id": "72157630657169438", "photo_flickr_id": "7606114934", "setting": "first-2-pick-and-tell", "worker_id": "6LIW4XI8A7C8M3T", "story_id": "43275", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the traffic directors work as a team to keep cars moving as smoothly as possible during the road work .", "storylet_id": "216379"}], [{"original_text": "The construction crew was hard at work.", "album_id": "72157630657169438", "photo_flickr_id": "7605631012", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43276", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the construction crew was hard at work .", "storylet_id": "216380"}], [{"original_text": "They were repaving a road.", "album_id": "72157630657169438", "photo_flickr_id": "7605634464", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43276", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were repaving a road .", "storylet_id": "216381"}], [{"original_text": "They did some work by hand.", "album_id": "72157630657169438", "photo_flickr_id": "7605631770", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43276", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they did some work by hand .", "storylet_id": "216382"}], [{"original_text": "They did some with the machines.", "album_id": "72157630657169438", "photo_flickr_id": "7605635872", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43276", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they did some with the machines .", "storylet_id": "216383"}], [{"original_text": "They had a job well done!", "album_id": "72157630657169438", "photo_flickr_id": "7606114934", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43276", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had a job well done !", "storylet_id": "216384"}], [{"original_text": "THE CRACK IN THIS ROAD NEEDS REPAIR.", "album_id": "72157630657169438", "photo_flickr_id": "7605635548", "setting": "last-3-pick-old-and-tell", "worker_id": "P21PJ2TQ8P0KBYQ", "story_id": "43277", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crack in this road needs repair .", "storylet_id": "216385"}], [{"original_text": "THE TRACTOR DUG UP THE DAMAGED AREA.", "album_id": "72157630657169438", "photo_flickr_id": "7605631012", "setting": "last-3-pick-old-and-tell", "worker_id": "P21PJ2TQ8P0KBYQ", "story_id": "43277", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tractor dug up the damaged area .", "storylet_id": "216386"}], [{"original_text": "THE TRUCK WITH THE TAR CAME BY AND LAID OUT THE TAR.", "album_id": "72157630657169438", "photo_flickr_id": "7605635194", "setting": "last-3-pick-old-and-tell", "worker_id": "P21PJ2TQ8P0KBYQ", "story_id": "43277", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the truck with the tar came by and laid out the tar .", "storylet_id": "216387"}], [{"original_text": "NEXT CAME THE ROLLER TO SMOOTH IT ALL OUT.", "album_id": "72157630657169438", "photo_flickr_id": "7605635872", "setting": "last-3-pick-old-and-tell", "worker_id": "P21PJ2TQ8P0KBYQ", "story_id": "43277", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next came the roller to smooth it all out .", "storylet_id": "216388"}], [{"original_text": "HERE ARE TWO OF OUR FINEST VERY PROUD OF THEIR HARD WORK.", "album_id": "72157630657169438", "photo_flickr_id": "7606114934", "setting": "last-3-pick-old-and-tell", "worker_id": "P21PJ2TQ8P0KBYQ", "story_id": "43277", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here are two of our finest very proud of their hard work .", "storylet_id": "216389"}], [{"original_text": "There was damage on the road that needed to be fixed.", "album_id": "72157630657169438", "photo_flickr_id": "7605635548", "setting": "last-3-pick-old-and-tell", "worker_id": "OUBEIDAPJ3Y4R5W", "story_id": "43278", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was damage on the road that needed to be fixed .", "storylet_id": "216390"}], [{"original_text": "Large machinery was brought in to complete the job.", "album_id": "72157630657169438", "photo_flickr_id": "7605631012", "setting": "last-3-pick-old-and-tell", "worker_id": "OUBEIDAPJ3Y4R5W", "story_id": "43278", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "large machinery was brought in to complete the job .", "storylet_id": "216391"}], [{"original_text": "The crew worked together carefully, with one man directing equipment.", "album_id": "72157630657169438", "photo_flickr_id": "7605635194", "setting": "last-3-pick-old-and-tell", "worker_id": "OUBEIDAPJ3Y4R5W", "story_id": "43278", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crew worked together carefully , with one man directing equipment .", "storylet_id": "216392"}], [{"original_text": "It is starting to look like a beautiful road, smooth surfaces!", "album_id": "72157630657169438", "photo_flickr_id": "7605635872", "setting": "last-3-pick-old-and-tell", "worker_id": "OUBEIDAPJ3Y4R5W", "story_id": "43278", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is starting to look like a beautiful road , smooth surfaces !", "storylet_id": "216393"}], [{"original_text": "These workers are proud of their job done well. ", "album_id": "72157630657169438", "photo_flickr_id": "7606114934", "setting": "last-3-pick-old-and-tell", "worker_id": "OUBEIDAPJ3Y4R5W", "story_id": "43278", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these workers are proud of their job done well .", "storylet_id": "216394"}], [{"original_text": "Hard at work on a hot summer day.", "album_id": "72157630657169438", "photo_flickr_id": "7605631012", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43279", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hard at work on a hot summer day .", "storylet_id": "216395"}], [{"original_text": "The roads look like new once they are finished.", "album_id": "72157630657169438", "photo_flickr_id": "7605634464", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43279", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the roads look like new once they are finished .", "storylet_id": "216396"}], [{"original_text": "He rakes the fresh asphalt and it keeps it from clumping.", "album_id": "72157630657169438", "photo_flickr_id": "7605631770", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43279", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he rakes the fresh asphalt and it keeps it from clumping .", "storylet_id": "216397"}], [{"original_text": "The big rollers then roll over it to compress it all together.", "album_id": "72157630657169438", "photo_flickr_id": "7605635872", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43279", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the big rollers then roll over it to compress it all together .", "storylet_id": "216398"}], [{"original_text": "Dedicated and hard working are our road workers.", "album_id": "72157630657169438", "photo_flickr_id": "7606114934", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43279", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dedicated and hard working are our road workers .", "storylet_id": "216399"}], [{"original_text": "My boyfriend and I tried a new restaurant last night.", "album_id": "72157594243600344", "photo_flickr_id": "219580030", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43280", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my boyfriend and i tried a new restaurant last night .", "storylet_id": "216400"}], [{"original_text": "I had the scallops and they were great.", "album_id": "72157594243600344", "photo_flickr_id": "219579439", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43280", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had the scallops and they were great .", "storylet_id": "216401"}], [{"original_text": "He had a fish dish that he liked.", "album_id": "72157594243600344", "photo_flickr_id": "219587502", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43280", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had a fish dish that he liked .", "storylet_id": "216402"}], [{"original_text": "Desert was beautifully presented and was delicious.", "album_id": "72157594243600344", "photo_flickr_id": "219579849", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43280", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "desert was beautifully presented and was delicious .", "storylet_id": "216403"}], [{"original_text": "We decided that we would eat there again.", "album_id": "72157594243600344", "photo_flickr_id": "219580008", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43280", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided that we would eat there again .", "storylet_id": "216404"}], [{"original_text": "It is important to make a big impression on a first date.", "album_id": "72157594243600344", "photo_flickr_id": "219580030", "setting": "first-2-pick-and-tell", "worker_id": "NOB6TAMQQNYYDTL", "story_id": "43281", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is important to make a big impression on a first date .", "storylet_id": "216405"}], [{"original_text": "I recommend starting with the caviar as an appetizer.", "album_id": "72157594243600344", "photo_flickr_id": "219580103", "setting": "first-2-pick-and-tell", "worker_id": "NOB6TAMQQNYYDTL", "story_id": "43281", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i recommend starting with the caviar as an appetizer .", "storylet_id": "216406"}], [{"original_text": "Followed by a delicious seafood entree. ", "album_id": "72157594243600344", "photo_flickr_id": "219579439", "setting": "first-2-pick-and-tell", "worker_id": "NOB6TAMQQNYYDTL", "story_id": "43281", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "followed by a delicious seafood entree .", "storylet_id": "216407"}], [{"original_text": "Do not forget the spectacular view!", "album_id": "72157594243600344", "photo_flickr_id": "219579935", "setting": "first-2-pick-and-tell", "worker_id": "NOB6TAMQQNYYDTL", "story_id": "43281", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "do not forget the spectacular view !", "storylet_id": "216408"}], [{"original_text": "Stay for coffee dessert and conversation. A home run evening!", "album_id": "72157594243600344", "photo_flickr_id": "219579849", "setting": "first-2-pick-and-tell", "worker_id": "NOB6TAMQQNYYDTL", "story_id": "43281", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "stay for coffee dessert and conversation . a home run evening !", "storylet_id": "216409"}], [{"original_text": "I had a great time at the restaurant yesterday.", "album_id": "72157594243600344", "photo_flickr_id": "219580030", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43282", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the restaurant yesterday .", "storylet_id": "216410"}], [{"original_text": "I ordered so many delicious dishes.", "album_id": "72157594243600344", "photo_flickr_id": "219580103", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43282", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i ordered so many delicious dishes .", "storylet_id": "216411"}], [{"original_text": "They were very expensive though.", "album_id": "72157594243600344", "photo_flickr_id": "219579439", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43282", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were very expensive though .", "storylet_id": "216412"}], [{"original_text": "Afterward we were still hungry so we stopped somewhere else for some dessert.", "album_id": "72157594243600344", "photo_flickr_id": "219579935", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43282", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we were still hungry so we stopped somewhere else for some dessert .", "storylet_id": "216413"}], [{"original_text": "We ordered whole tray of chocolate fudge.", "album_id": "72157594243600344", "photo_flickr_id": "219579849", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43282", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ordered whole tray of chocolate fudge .", "storylet_id": "216414"}], [{"original_text": "Every table was covered in linen. ", "album_id": "72157594243600344", "photo_flickr_id": "219580030", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43283", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every table was covered in linen .", "storylet_id": "216415"}], [{"original_text": "The entree's were magnificent works of art. ", "album_id": "72157594243600344", "photo_flickr_id": "219579439", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43283", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the entree 's were magnificent works of art .", "storylet_id": "216416"}], [{"original_text": "This particular dish was very popular. ", "album_id": "72157594243600344", "photo_flickr_id": "219587502", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43283", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this particular dish was very popular .", "storylet_id": "216417"}], [{"original_text": "A long tray of deserts were made available to sample. ", "album_id": "72157594243600344", "photo_flickr_id": "219579849", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43283", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a long tray of deserts were made available to sample .", "storylet_id": "216418"}], [{"original_text": "The lighting gave the restaurant a wonderful ambiance. ", "album_id": "72157594243600344", "photo_flickr_id": "219580008", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43283", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lighting gave the restaurant a wonderful ambiance .", "storylet_id": "216419"}], [{"original_text": "The restaurant we went to for our anniversary was very fancy.", "album_id": "72157594243600344", "photo_flickr_id": "219580030", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43284", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the restaurant we went to for our anniversary was very fancy .", "storylet_id": "216420"}], [{"original_text": "All of the dishes they had were very interesting.", "album_id": "72157594243600344", "photo_flickr_id": "219580103", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43284", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the dishes they had were very interesting .", "storylet_id": "216421"}], [{"original_text": "They served some of the best gourmet food in the city.", "album_id": "72157594243600344", "photo_flickr_id": "219579439", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43284", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they served some of the best gourmet food in the city .", "storylet_id": "216422"}], [{"original_text": "It even has a very breathtaking view of the city line.", "album_id": "72157594243600344", "photo_flickr_id": "219579935", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43284", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it even has a very breathtaking view of the city line .", "storylet_id": "216423"}], [{"original_text": "Even the deserts were fantastic, it was a very great experience.", "album_id": "72157594243600344", "photo_flickr_id": "219579849", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43284", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the deserts were fantastic , it was a very great experience .", "storylet_id": "216424"}], [{"original_text": "We saw a group of seals relaxing on the beach.", "album_id": "134270", "photo_flickr_id": "5146612", "setting": "first-2-pick-and-tell", "worker_id": "JBXME8SB3T523W7", "story_id": "43285", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we saw a group of seals relaxing on the beach .", "storylet_id": "216425"}], [{"original_text": "Afterwards, we saw these beautiful flowers.", "album_id": "134270", "photo_flickr_id": "5146666", "setting": "first-2-pick-and-tell", "worker_id": "JBXME8SB3T523W7", "story_id": "43285", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "afterwards , we saw these beautiful flowers .", "storylet_id": "216426"}], [{"original_text": "We even saw another small animal under a tree.", "album_id": "134270", "photo_flickr_id": "5146671", "setting": "first-2-pick-and-tell", "worker_id": "JBXME8SB3T523W7", "story_id": "43285", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even saw another small animal under a tree .", "storylet_id": "216427"}], [{"original_text": "We got to check out a cave next to the water.", "album_id": "134270", "photo_flickr_id": "5146710", "setting": "first-2-pick-and-tell", "worker_id": "JBXME8SB3T523W7", "story_id": "43285", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got to check out a cave next to the water .", "storylet_id": "216428"}], [{"original_text": "Finally, we watched the sunset on the horizon.", "album_id": "134270", "photo_flickr_id": "5141942", "setting": "first-2-pick-and-tell", "worker_id": "JBXME8SB3T523W7", "story_id": "43285", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , we watched the sunset on the horizon .", "storylet_id": "216429"}], [{"original_text": "The family was taking a tour of the city starting with the beach.", "album_id": "134270", "photo_flickr_id": "5146612", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43286", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was taking a tour of the city starting with the beach .", "storylet_id": "216430"}], [{"original_text": "Next they went to the community garden.", "album_id": "134270", "photo_flickr_id": "5146666", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43286", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next they went to the community garden .", "storylet_id": "216431"}], [{"original_text": "There was some little critters in it.", "album_id": "134270", "photo_flickr_id": "5146671", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43286", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was some little critters in it .", "storylet_id": "216432"}], [{"original_text": "Next they went to the giant climbing rock.", "album_id": "134270", "photo_flickr_id": "5141516", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43286", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next they went to the giant climbing rock .", "storylet_id": "216433"}], [{"original_text": "They found a great view of the water.", "album_id": "134270", "photo_flickr_id": "5141936", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43286", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they found a great view of the water .", "storylet_id": "216434"}], [{"original_text": "THIS IS A PHOTO OF THE PENGUINS ON THE BEACH.", "album_id": "134270", "photo_flickr_id": "5146612", "setting": "last-3-pick-old-and-tell", "worker_id": "P21PJ2TQ8P0KBYQ", "story_id": "43287", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a photo of the penguins on the beach .", "storylet_id": "216435"}], [{"original_text": "THEN WE SAW SOME OF THE BEAUTIFUL GARDEN PLANTS.", "album_id": "134270", "photo_flickr_id": "5146666", "setting": "last-3-pick-old-and-tell", "worker_id": "P21PJ2TQ8P0KBYQ", "story_id": "43287", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we saw some of the beautiful garden plants .", "storylet_id": "216436"}], [{"original_text": "HERE IS SOME OF THE WILDLIFE.", "album_id": "134270", "photo_flickr_id": "5146671", "setting": "last-3-pick-old-and-tell", "worker_id": "P21PJ2TQ8P0KBYQ", "story_id": "43287", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is some of the wildlife .", "storylet_id": "216437"}], [{"original_text": "WHAT BEAUTIFUL ROCK FORMATIONS.", "album_id": "134270", "photo_flickr_id": "5146710", "setting": "last-3-pick-old-and-tell", "worker_id": "P21PJ2TQ8P0KBYQ", "story_id": "43287", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what beautiful rock formations .", "storylet_id": "216438"}], [{"original_text": "THE SUNSETS ARE TO DIE FOR.", "album_id": "134270", "photo_flickr_id": "5141942", "setting": "last-3-pick-old-and-tell", "worker_id": "P21PJ2TQ8P0KBYQ", "story_id": "43287", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sunsets are to die for .", "storylet_id": "216439"}], [{"original_text": "On a family vacation, there was so much to see, including these seals on the beach.", "album_id": "134270", "photo_flickr_id": "5146612", "setting": "last-3-pick-old-and-tell", "worker_id": "OUBEIDAPJ3Y4R5W", "story_id": "43288", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on a family vacation , there was so much to see , including these seals on the beach .", "storylet_id": "216440"}], [{"original_text": "The flowering bushes and trees teemed with color.", "album_id": "134270", "photo_flickr_id": "5146666", "setting": "last-3-pick-old-and-tell", "worker_id": "OUBEIDAPJ3Y4R5W", "story_id": "43288", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flowering bushes and trees teemed with color .", "storylet_id": "216441"}], [{"original_text": "Unfamiliar animals were spotted as well, including this little guy looking for food.", "album_id": "134270", "photo_flickr_id": "5146671", "setting": "last-3-pick-old-and-tell", "worker_id": "OUBEIDAPJ3Y4R5W", "story_id": "43288", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "unfamiliar animals were spotted as well , including this little guy looking for food .", "storylet_id": "216442"}], [{"original_text": "The family saw some beautiful rock formations, and the young ones wanted to climb on the rocks.", "album_id": "134270", "photo_flickr_id": "5141516", "setting": "last-3-pick-old-and-tell", "worker_id": "OUBEIDAPJ3Y4R5W", "story_id": "43288", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family saw some beautiful rock formations , and the young ones wanted to climb on the rocks .", "storylet_id": "216443"}], [{"original_text": "The whole family enjoyed looking into the water from a deck.", "album_id": "134270", "photo_flickr_id": "5141936", "setting": "last-3-pick-old-and-tell", "worker_id": "OUBEIDAPJ3Y4R5W", "story_id": "43288", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the whole family enjoyed looking into the water from a deck .", "storylet_id": "216444"}], [{"original_text": "I had a beautiful day on the beach yesterday with Jess. When we first left the parking lot, we could see seals in the distance on the beach. Jess caught this pic with his Zoom lens.", "album_id": "134270", "photo_flickr_id": "5146612", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43289", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a beautiful day on the beach yesterday with [male] . when we first left the parking lot , we could see seals in the distance on the beach . [male] caught this pic with his zoom lens .", "storylet_id": "216445"}], [{"original_text": "In order to get to the beach we had to go through a bit of woods. We saw these beautiful flowers growing wild.", "album_id": "134270", "photo_flickr_id": "5146666", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43289", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in order to get to the beach we had to go through a bit of woods . we saw these beautiful flowers growing wild .", "storylet_id": "216446"}], [{"original_text": "And this little animal...Though I'm not sure what it is. Leaves on the ground so close to the beach...It's kind of amazing the variety of vegetation in this area.", "album_id": "134270", "photo_flickr_id": "5146671", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43289", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and this little animal ... though i 'm not sure what it is . leaves on the ground so close to the beach ... it 's kind of amazing the variety of vegetation in this area .", "storylet_id": "216447"}], [{"original_text": "When we got down on the sand ourselves, we saw people playing and scampering around on these huge boulders. Really unique shapes. must've been carved by the wind and water.", "album_id": "134270", "photo_flickr_id": "5141516", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43289", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we got down on the sand ourselves , we saw people playing and scampering around on these huge boulders . really unique shapes . must 've been carved by the wind and water .", "storylet_id": "216448"}], [{"original_text": "Further down the beach, rocks formed an arch and were draped with the vegetation we had seen earlier in the woods. It was a cool place to get out of the sun.", "album_id": "134270", "photo_flickr_id": "5141936", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43289", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "further down the beach , rocks formed an arch and were draped with the vegetation we had seen earlier in the woods . it was a cool place to get out of the sun .", "storylet_id": "216449"}], [{"original_text": "The museum had a lot of interesting artifacts.", "album_id": "72157623660642342", "photo_flickr_id": "4453796734", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43290", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the museum had a lot of interesting artifacts .", "storylet_id": "216450"}], [{"original_text": "We even made our own stone tools and arrow heads.", "album_id": "72157623660642342", "photo_flickr_id": "4451877367", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43290", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we even made our own stone tools and arrow heads .", "storylet_id": "216451"}], [{"original_text": "Here is one made by a master!", "album_id": "72157623660642342", "photo_flickr_id": "4451842299", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43290", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is one made by a master !", "storylet_id": "216452"}], [{"original_text": "There was also some old boats there.", "album_id": "72157623660642342", "photo_flickr_id": "4449068271", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43290", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also some old boats there .", "storylet_id": "216453"}], [{"original_text": "There where plenty being worked on on display.", "album_id": "72157623660642342", "photo_flickr_id": "4449841878", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43290", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there where plenty being worked on on display .", "storylet_id": "216454"}], [{"original_text": "The building the class took place in was amazing.", "album_id": "72157623660642342", "photo_flickr_id": "4449846800", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43291", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the building the class took place in was amazing .", "storylet_id": "216455"}], [{"original_text": "It was cold outside but inside was cozy and warm.", "album_id": "72157623660642342", "photo_flickr_id": "4449070431", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43291", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was cold outside but inside was cozy and warm .", "storylet_id": "216456"}], [{"original_text": "Pregnant women gathered to learn the importance of natural minerals.", "album_id": "72157623660642342", "photo_flickr_id": "4452655668", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43291", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "pregnant women gathered to learn the importance of natural minerals .", "storylet_id": "216457"}], [{"original_text": "Loving husbands joined hem.", "album_id": "72157623660642342", "photo_flickr_id": "4452617840", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43291", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "loving husbands joined hem .", "storylet_id": "216458"}], [{"original_text": "Some women were skeptical of the all natural view but took in the information anyway. ", "album_id": "72157623660642342", "photo_flickr_id": "4452614938", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43291", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some women were skeptical of the all natural view but took in the information anyway .", "storylet_id": "216459"}], [{"original_text": "This is very close to what an ancient weapon may look like.", "album_id": "72157623660642342", "photo_flickr_id": "4453796734", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43292", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is very close to what an ancient weapon may look like .", "storylet_id": "216460"}], [{"original_text": "They are breaking dirt apart looking for something that may have been buried long ago.", "album_id": "72157623660642342", "photo_flickr_id": "4451877367", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43292", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are breaking dirt apart looking for something that may have been buried long ago .", "storylet_id": "216461"}], [{"original_text": "This is actually what an arrow head looks like.", "album_id": "72157623660642342", "photo_flickr_id": "4451842299", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43292", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is actually what an arrow head looks like .", "storylet_id": "216462"}], [{"original_text": "These canoe boats are made very old style.", "album_id": "72157623660642342", "photo_flickr_id": "4449068271", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43292", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these canoe boats are made very old style .", "storylet_id": "216463"}], [{"original_text": "This is a piece of a structure of some importance.", "album_id": "72157623660642342", "photo_flickr_id": "4449841878", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43292", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a piece of a structure of some importance .", "storylet_id": "216464"}], [{"original_text": "The group arrives at their winter hideout.", "album_id": "72157623660642342", "photo_flickr_id": "4449846800", "setting": "last-3-pick-old-and-tell", "worker_id": "LD40ZTAXD7KU9NR", "story_id": "43293", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group arrives at their winter hideout .", "storylet_id": "216465"}], [{"original_text": "To cold and snowy to go outside!", "album_id": "72157623660642342", "photo_flickr_id": "4449070431", "setting": "last-3-pick-old-and-tell", "worker_id": "LD40ZTAXD7KU9NR", "story_id": "43293", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to cold and snowy to go outside !", "storylet_id": "216466"}], [{"original_text": "Lets do some arts and crafts instead.", "album_id": "72157623660642342", "photo_flickr_id": "4452655668", "setting": "last-3-pick-old-and-tell", "worker_id": "LD40ZTAXD7KU9NR", "story_id": "43293", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lets do some arts and crafts instead .", "storylet_id": "216467"}], [{"original_text": "But the project turns into a disaster.", "album_id": "72157623660642342", "photo_flickr_id": "4452617840", "setting": "last-3-pick-old-and-tell", "worker_id": "LD40ZTAXD7KU9NR", "story_id": "43293", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but the project turns into a disaster .", "storylet_id": "216468"}], [{"original_text": "Mary gives up and sits this one out.", "album_id": "72157623660642342", "photo_flickr_id": "4452614938", "setting": "last-3-pick-old-and-tell", "worker_id": "LD40ZTAXD7KU9NR", "story_id": "43293", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] gives up and sits this one out .", "storylet_id": "216469"}], [{"original_text": "Here is a clear rock with an abstract pattern.", "album_id": "72157623660642342", "photo_flickr_id": "4453796734", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43294", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is a clear rock with an abstract pattern .", "storylet_id": "216470"}], [{"original_text": "We are hard at work, sculpting.", "album_id": "72157623660642342", "photo_flickr_id": "4451877367", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43294", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are hard at work , sculpting .", "storylet_id": "216471"}], [{"original_text": "Here is an arrowhead that she made.", "album_id": "72157623660642342", "photo_flickr_id": "4451842299", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43294", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is an arrowhead that she made .", "storylet_id": "216472"}], [{"original_text": "This canoe looks refined.", "album_id": "72157623660642342", "photo_flickr_id": "4449068271", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43294", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this canoe looks refined .", "storylet_id": "216473"}], [{"original_text": "This canoe still has yet to be painted.", "album_id": "72157623660642342", "photo_flickr_id": "4449841878", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43294", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this canoe still has yet to be painted .", "storylet_id": "216474"}], [{"original_text": "A day in the life of me. I wanted to put together some pictures of me.", "album_id": "72157624181353093", "photo_flickr_id": "4713381624", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43295", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a day in the life of me . i wanted to put together some pictures of me .", "storylet_id": "216475"}], [{"original_text": "Oh, the crazy days when my hair was long. I was on a picnic here just relaxing in the sun.", "album_id": "72157624181353093", "photo_flickr_id": "4712742269", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43295", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "oh , the crazy days when my hair was long . i was on a picnic here just relaxing in the sun .", "storylet_id": "216476"}], [{"original_text": "This is my wife and we are at a famous rock that we hiked to.", "album_id": "72157624181353093", "photo_flickr_id": "4712742859", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43295", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is my wife and we are at a famous rock that we hiked to .", "storylet_id": "216477"}], [{"original_text": "Yes, that's me i'm small.", "album_id": "72157624181353093", "photo_flickr_id": "4713381876", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43295", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "yes , that 's me i 'm small .", "storylet_id": "216478"}], [{"original_text": "This is my 60's days. I thought I was awesome working at that gas station.", "album_id": "72157624181353093", "photo_flickr_id": "4713555727", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43295", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is my 60 's days . i thought i was awesome working at that gas station .", "storylet_id": "216479"}], [{"original_text": "Donna and clark are sitting together.", "album_id": "72157624181353093", "photo_flickr_id": "4712741911", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43296", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and clark are sitting together .", "storylet_id": "216480"}], [{"original_text": "Jeremy is checking out some live music.", "album_id": "72157624181353093", "photo_flickr_id": "4712742269", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43296", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is checking out some live music .", "storylet_id": "216481"}], [{"original_text": "Jeremy meets up with his friend Melissa.", "album_id": "72157624181353093", "photo_flickr_id": "4712742859", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43296", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] meets up with his friend [female] .", "storylet_id": "216482"}], [{"original_text": "Then they see Fred their other friend checking out some live music too.", "album_id": "72157624181353093", "photo_flickr_id": "4713555727", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43296", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they see [male] their other friend checking out some live music too .", "storylet_id": "216483"}], [{"original_text": "They ask their friend toby to pose for a picture.", "album_id": "72157624181353093", "photo_flickr_id": "4717191824", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43296", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ask their friend toby to pose for a picture .", "storylet_id": "216484"}], [{"original_text": "The lovely couple took a photo in their new place together.", "album_id": "72157624181353093", "photo_flickr_id": "4712741911", "setting": "last-3-pick-old-and-tell", "worker_id": "7H9MCFF3DEZ8BHB", "story_id": "43297", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lovely couple took a photo in their new place together .", "storylet_id": "216485"}], [{"original_text": "He gazes off into the sunset while someone snaps a photo!", "album_id": "72157624181353093", "photo_flickr_id": "4712742269", "setting": "last-3-pick-old-and-tell", "worker_id": "7H9MCFF3DEZ8BHB", "story_id": "43297", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he gazes off into the sunset while someone snaps a photo !", "storylet_id": "216486"}], [{"original_text": "We are just sitting out here talking about our day.", "album_id": "72157624181353093", "photo_flickr_id": "4712742859", "setting": "last-3-pick-old-and-tell", "worker_id": "7H9MCFF3DEZ8BHB", "story_id": "43297", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are just sitting out here talking about our day .", "storylet_id": "216487"}], [{"original_text": "He leaned up against the crate and annoyingly took a picture.", "album_id": "72157624181353093", "photo_flickr_id": "4713555727", "setting": "last-3-pick-old-and-tell", "worker_id": "7H9MCFF3DEZ8BHB", "story_id": "43297", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he leaned up against the crate and annoyingly took a picture .", "storylet_id": "216488"}], [{"original_text": "He decided to take a picture for his first day at his new job!", "album_id": "72157624181353093", "photo_flickr_id": "4717191824", "setting": "last-3-pick-old-and-tell", "worker_id": "7H9MCFF3DEZ8BHB", "story_id": "43297", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he decided to take a picture for his first day at his new job !", "storylet_id": "216489"}], [{"original_text": "Here are Mom and Dad reminiscing about their hippie years.", "album_id": "72157624181353093", "photo_flickr_id": "4712741911", "setting": "last-3-pick-old-and-tell", "worker_id": "POXGW9EXPF58T09", "story_id": "43298", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here are mom and dad reminiscing about their hippie years .", "storylet_id": "216490"}], [{"original_text": "Dad is singing a folk song.", "album_id": "72157624181353093", "photo_flickr_id": "4712742269", "setting": "last-3-pick-old-and-tell", "worker_id": "POXGW9EXPF58T09", "story_id": "43298", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dad is singing a folk song .", "storylet_id": "216491"}], [{"original_text": "Mom and Dad are discussing the Vietnam war.", "album_id": "72157624181353093", "photo_flickr_id": "4712742859", "setting": "last-3-pick-old-and-tell", "worker_id": "POXGW9EXPF58T09", "story_id": "43298", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom and dad are discussing the vietnam war .", "storylet_id": "216492"}], [{"original_text": "Here is dad at the commune waiting for the mail.", "album_id": "72157624181353093", "photo_flickr_id": "4713555727", "setting": "last-3-pick-old-and-tell", "worker_id": "POXGW9EXPF58T09", "story_id": "43298", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is dad at the commune waiting for the mail .", "storylet_id": "216493"}], [{"original_text": "This is Dad while he was in college.", "album_id": "72157624181353093", "photo_flickr_id": "4717191824", "setting": "last-3-pick-old-and-tell", "worker_id": "POXGW9EXPF58T09", "story_id": "43298", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is dad while he was in college .", "storylet_id": "216494"}], [{"original_text": "I went to visit my family last weekend.", "album_id": "72157624181353093", "photo_flickr_id": "4713381624", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43299", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to visit my family last weekend .", "storylet_id": "216495"}], [{"original_text": "My brother was doing well.", "album_id": "72157624181353093", "photo_flickr_id": "4712742269", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43299", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my brother was doing well .", "storylet_id": "216496"}], [{"original_text": "Him and I were able to spend a lot of time together.", "album_id": "72157624181353093", "photo_flickr_id": "4712742859", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43299", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "him and i were able to spend a lot of time together .", "storylet_id": "216497"}], [{"original_text": "I also got to see my mother. She was very happy to see me.", "album_id": "72157624181353093", "photo_flickr_id": "4713381876", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43299", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also got to see my mother . she was very happy to see me .", "storylet_id": "216498"}], [{"original_text": "I hope I get to come back and see them soon.", "album_id": "72157624181353093", "photo_flickr_id": "4713555727", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43299", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope i get to come back and see them soon .", "storylet_id": "216499"}], [{"original_text": "While on vacation, we went hiking in the mountains.", "album_id": "72157594339263061", "photo_flickr_id": "275966008", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43300", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while on vacation , we went hiking in the mountains .", "storylet_id": "216500"}], [{"original_text": "The view was spectacular.", "album_id": "72157594339263061", "photo_flickr_id": "275966191", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43300", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view was spectacular .", "storylet_id": "216501"}], [{"original_text": "The bigger the mountain, the snow it had on it.", "album_id": "72157594339263061", "photo_flickr_id": "275966252", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43300", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bigger the mountain , the snow it had on it .", "storylet_id": "216502"}], [{"original_text": "The further we hiked up, the colder it got.", "album_id": "72157594339263061", "photo_flickr_id": "275966437", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43300", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the further we hiked up , the colder it got .", "storylet_id": "216503"}], [{"original_text": "When we got to the top, the sun glistened beautifully on the ridge.", "album_id": "72157594339263061", "photo_flickr_id": "275967330", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43300", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we got to the top , the sun glistened beautifully on the ridge .", "storylet_id": "216504"}], [{"original_text": "We took a trip to the snowy mountains over my vacation.", "album_id": "72157594339263061", "photo_flickr_id": "275965966", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43301", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to the snowy mountains over my vacation .", "storylet_id": "216505"}], [{"original_text": "The snow only covered part of the mountains while the other half was covered in dirty.", "album_id": "72157594339263061", "photo_flickr_id": "275966252", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43301", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the snow only covered part of the mountains while the other half was covered in dirty .", "storylet_id": "216506"}], [{"original_text": "The snow was basically frozen solid and was very difficult to walk on.", "album_id": "72157594339263061", "photo_flickr_id": "275966437", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43301", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the snow was basically frozen solid and was very difficult to walk on .", "storylet_id": "216507"}], [{"original_text": "I got a picture of my best friend sitting in the gravel before we departed.", "album_id": "72157594339263061", "photo_flickr_id": "275966601", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43301", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i got a picture of my best friend sitting in the gravel before we departed .", "storylet_id": "216508"}], [{"original_text": "The sunset on the mountains was the most breathtaking thing that I saw all day.", "album_id": "72157594339263061", "photo_flickr_id": "275967137", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43301", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sunset on the mountains was the most breathtaking thing that i saw all day .", "storylet_id": "216509"}], [{"original_text": "We approached the mountains by boat.", "album_id": "72157594339263061", "photo_flickr_id": "275966008", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "43302", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we approached the mountains by boat .", "storylet_id": "216510"}], [{"original_text": "These are highest mountains we've climbed.", "album_id": "72157594339263061", "photo_flickr_id": "275966191", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "43302", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these are highest mountains we 've climbed .", "storylet_id": "216511"}], [{"original_text": "Elevation was 5,000 feet.", "album_id": "72157594339263061", "photo_flickr_id": "275966252", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "43302", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "elevation was 5,000 feet .", "storylet_id": "216512"}], [{"original_text": "Snow blocked many of the trails.", "album_id": "72157594339263061", "photo_flickr_id": "275966437", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "43302", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "snow blocked many of the trails .", "storylet_id": "216513"}], [{"original_text": "Sunset. ", "album_id": "72157594339263061", "photo_flickr_id": "275967330", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "43302", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sunset .", "storylet_id": "216514"}], [{"original_text": "Starting the hike. Looks like it'll be a challenge!", "album_id": "72157594339263061", "photo_flickr_id": "275965966", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWJIK3VYXYAKID", "story_id": "43303", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "starting the hike . looks like it 'll be a challenge !", "storylet_id": "216515"}], [{"original_text": "Making progress. I thought this was a good shot.", "album_id": "72157594339263061", "photo_flickr_id": "275966252", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWJIK3VYXYAKID", "story_id": "43303", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "making progress . i thought this was a good shot .", "storylet_id": "216516"}], [{"original_text": "Looking back where we've been!", "album_id": "72157594339263061", "photo_flickr_id": "275966437", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWJIK3VYXYAKID", "story_id": "43303", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looking back where we 've been !", "storylet_id": "216517"}], [{"original_text": "Almost-to-the-top-selfie!", "album_id": "72157594339263061", "photo_flickr_id": "275966601", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWJIK3VYXYAKID", "story_id": "43303", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "almost-to-the-top-selfie !", "storylet_id": "216518"}], [{"original_text": "Satisfying day, ending with a beautiful sunset.", "album_id": "72157594339263061", "photo_flickr_id": "275967137", "setting": "last-3-pick-old-and-tell", "worker_id": "3CWJIK3VYXYAKID", "story_id": "43303", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "satisfying day , ending with a beautiful sunset .", "storylet_id": "216519"}], [{"original_text": "Sarah was excited for her trip to the mountains.", "album_id": "72157594339263061", "photo_flickr_id": "275966008", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43304", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was excited for her trip to the mountains .", "storylet_id": "216520"}], [{"original_text": "She couldn't wait to climb them", "album_id": "72157594339263061", "photo_flickr_id": "275966191", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43304", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she could n't wait to climb them", "storylet_id": "216521"}], [{"original_text": "and see those snowy tops up close.", "album_id": "72157594339263061", "photo_flickr_id": "275966252", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43304", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and see those snowy tops up close .", "storylet_id": "216522"}], [{"original_text": "Like really, really close.", "album_id": "72157594339263061", "photo_flickr_id": "275966437", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43304", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "like really , really close .", "storylet_id": "216523"}], [{"original_text": "But most of all she was looking forward to reveling in the natural, peaceful beauty of the mountain range. ", "album_id": "72157594339263061", "photo_flickr_id": "275967330", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43304", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but most of all she was looking forward to reveling in the natural , peaceful beauty of the mountain range .", "storylet_id": "216524"}], [{"original_text": "Every year, the Wongs came to visit us for a week during the summer.", "album_id": "72157594494831674", "photo_flickr_id": "366416981", "setting": "first-2-pick-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "43305", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every year , the wongs came to visit us for a week during the summer .", "storylet_id": "216525"}], [{"original_text": "Spiky had escaped from his aquarium and was sun bathing in the back yard!", "album_id": "72157594494831674", "photo_flickr_id": "366416982", "setting": "first-2-pick-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "43305", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "spiky had escaped from his aquarium and was sun bathing in the back yard !", "storylet_id": "216526"}], [{"original_text": "Bob and Anna looked around the sun-bleached space, imagining the centuries of family stories that flowed from these walls.", "album_id": "72157594494831674", "photo_flickr_id": "366416987", "setting": "first-2-pick-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "43305", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and [female] looked around the sun-bleached space , imagining the centuries of family stories that flowed from these walls .", "storylet_id": "216527"}], [{"original_text": "Todd grew nervous, unsure of which direction to take; knowing he was getting later by the minute.", "album_id": "72157594494831674", "photo_flickr_id": "366420777", "setting": "first-2-pick-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "43305", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] grew nervous , unsure of which direction to take ; knowing he was getting later by the minute .", "storylet_id": "216528"}], [{"original_text": "Jacob sighed as his mother insisted on snapping a photo in front of the airport doors. It was his first trip overseas, and it seemed she was just as excited!", "album_id": "72157594494831674", "photo_flickr_id": "366422094", "setting": "first-2-pick-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "43305", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] sighed as his mother insisted on snapping a photo in front of the airport doors . it was his first trip overseas , and it seemed she was just as excited !", "storylet_id": "216529"}], [{"original_text": "I recently took a vacation to Australia. ", "album_id": "72157594494831674", "photo_flickr_id": "366831957", "setting": "first-2-pick-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "43306", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i recently took a vacation to location .", "storylet_id": "216530"}], [{"original_text": "I landed in the Perth airport because I heard that Perth has beautiful beaches.", "album_id": "72157594494831674", "photo_flickr_id": "366422094", "setting": "first-2-pick-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "43306", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i landed in the location airport because i heard that location has beautiful beaches .", "storylet_id": "216531"}], [{"original_text": "The beaches in Perth did not disappoint. ", "album_id": "72157594494831674", "photo_flickr_id": "366416986", "setting": "first-2-pick-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "43306", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beaches in location did not disappoint .", "storylet_id": "216532"}], [{"original_text": "I also took some time to see some of Perth's architecture. ", "album_id": "72157594494831674", "photo_flickr_id": "366420780", "setting": "first-2-pick-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "43306", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also took some time to see some of location 's architecture .", "storylet_id": "216533"}], [{"original_text": "No vacation is complete without sampling some of the local cuisine.", "album_id": "72157594494831674", "photo_flickr_id": "366416981", "setting": "first-2-pick-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "43306", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "no vacation is complete without sampling some of the local cuisine .", "storylet_id": "216534"}], [{"original_text": "They took the trip of a lifetime to visit family in Australia. They toured the continent for two weeks.", "album_id": "72157594494831674", "photo_flickr_id": "366831957", "setting": "last-3-pick-old-and-tell", "worker_id": "YM8Y3W9NYC0IL7O", "story_id": "43307", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they took the trip of a lifetime to visit family in location . they toured the continent for two weeks .", "storylet_id": "216535"}], [{"original_text": "Here is my nephew in front of the Perth airport. It was a very long trip.", "album_id": "72157594494831674", "photo_flickr_id": "366422094", "setting": "last-3-pick-old-and-tell", "worker_id": "YM8Y3W9NYC0IL7O", "story_id": "43307", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is my nephew in front of the location airport . it was a very long trip .", "storylet_id": "216536"}], [{"original_text": "The beaches here are very beautiful. It was their summer so we enjoyed the surf.", "album_id": "72157594494831674", "photo_flickr_id": "366416986", "setting": "last-3-pick-old-and-tell", "worker_id": "YM8Y3W9NYC0IL7O", "story_id": "43307", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beaches here are very beautiful . it was their summer so we enjoyed the surf .", "storylet_id": "216537"}], [{"original_text": "The city of Perth is so modern. Lots of glass buildings.", "album_id": "72157594494831674", "photo_flickr_id": "366420780", "setting": "last-3-pick-old-and-tell", "worker_id": "YM8Y3W9NYC0IL7O", "story_id": "43307", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the city of location is so modern . lots of glass buildings .", "storylet_id": "216538"}], [{"original_text": "Here they are with the whole family at a local restaurant.", "album_id": "72157594494831674", "photo_flickr_id": "366416981", "setting": "last-3-pick-old-and-tell", "worker_id": "YM8Y3W9NYC0IL7O", "story_id": "43307", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here they are with the whole family at a local restaurant .", "storylet_id": "216539"}], [{"original_text": "Our family trip around Australia was so awesome!", "album_id": "72157594494831674", "photo_flickr_id": "366416981", "setting": "last-3-pick-old-and-tell", "worker_id": "M8D9I5B519KSVMH", "story_id": "43308", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family trip around location was so awesome !", "storylet_id": "216540"}], [{"original_text": "We saw many wild animals, including big crocodiles.", "album_id": "72157594494831674", "photo_flickr_id": "366416982", "setting": "last-3-pick-old-and-tell", "worker_id": "M8D9I5B519KSVMH", "story_id": "43308", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw many wild animals , including big crocodiles .", "storylet_id": "216541"}], [{"original_text": "The historical sites were interesting.", "album_id": "72157594494831674", "photo_flickr_id": "366416987", "setting": "last-3-pick-old-and-tell", "worker_id": "M8D9I5B519KSVMH", "story_id": "43308", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the historical sites were interesting .", "storylet_id": "216542"}], [{"original_text": "There were so many things to see, it was hard choosing!", "album_id": "72157594494831674", "photo_flickr_id": "366420777", "setting": "last-3-pick-old-and-tell", "worker_id": "M8D9I5B519KSVMH", "story_id": "43308", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were so many things to see , it was hard choosing !", "storylet_id": "216543"}], [{"original_text": "Finally we went back to the airport to go home.", "album_id": "72157594494831674", "photo_flickr_id": "366422094", "setting": "last-3-pick-old-and-tell", "worker_id": "M8D9I5B519KSVMH", "story_id": "43308", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally we went back to the airport to go home .", "storylet_id": "216544"}], [{"original_text": "We are eating at a restaurant.", "album_id": "72157594494831674", "photo_flickr_id": "366416981", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43309", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are eating at a restaurant .", "storylet_id": "216545"}], [{"original_text": "We saw an alligator.", "album_id": "72157594494831674", "photo_flickr_id": "366416982", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43309", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw an alligator .", "storylet_id": "216546"}], [{"original_text": "We visited an old building with a well.", "album_id": "72157594494831674", "photo_flickr_id": "366416987", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43309", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we visited an old building with a well .", "storylet_id": "216547"}], [{"original_text": "The sign showed many sites of attraction.", "album_id": "72157594494831674", "photo_flickr_id": "366420777", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43309", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sign showed many sites of attraction .", "storylet_id": "216548"}], [{"original_text": "He is standing on the mat.", "album_id": "72157594494831674", "photo_flickr_id": "366422094", "setting": "last-3-pick-old-and-tell", "worker_id": "WUJX81EOAOZRPMP", "story_id": "43309", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he is standing on the mat .", "storylet_id": "216549"}], [{"original_text": "Despite it's appearance, forested areas are quite a busy place.", "album_id": "72157623793801177", "photo_flickr_id": "4546212029", "setting": "first-2-pick-and-tell", "worker_id": "QP0S9RBJF7WA61B", "story_id": "43310", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "despite it 's appearance , forested areas are quite a busy place .", "storylet_id": "216550"}], [{"original_text": "Flora and fauna live here, side by side.", "album_id": "72157623793801177", "photo_flickr_id": "4546211759", "setting": "first-2-pick-and-tell", "worker_id": "QP0S9RBJF7WA61B", "story_id": "43310", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] and fauna live here , side by side .", "storylet_id": "216551"}], [{"original_text": "Fallen trees can only hint at what kind of events took place.", "album_id": "72157623793801177", "photo_flickr_id": "4546210397", "setting": "first-2-pick-and-tell", "worker_id": "QP0S9RBJF7WA61B", "story_id": "43310", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "fallen trees can only hint at what kind of events took place .", "storylet_id": "216552"}], [{"original_text": "Tree bark can even tell what kind of life a tree led.", "album_id": "72157623793801177", "photo_flickr_id": "4546844472", "setting": "first-2-pick-and-tell", "worker_id": "QP0S9RBJF7WA61B", "story_id": "43310", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "tree bark can even tell what kind of life a tree led .", "storylet_id": "216553"}], [{"original_text": "Fallen trees often cover trails begging to be taken.", "album_id": "72157623793801177", "photo_flickr_id": "4546213375", "setting": "first-2-pick-and-tell", "worker_id": "QP0S9RBJF7WA61B", "story_id": "43310", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fallen trees often cover trails begging to be taken .", "storylet_id": "216554"}], [{"original_text": "Jennifer is going for a hike today.", "album_id": "72157623793801177", "photo_flickr_id": "4546843974", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43311", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is going for a hike today .", "storylet_id": "216555"}], [{"original_text": "Jennifer runs into this fallen tree on her hike in the trail.", "album_id": "72157623793801177", "photo_flickr_id": "4546844472", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43311", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] runs into this fallen tree on her hike in the trail .", "storylet_id": "216556"}], [{"original_text": "Jennifer is exhausted from all the walking and decides to take a break.", "album_id": "72157623793801177", "photo_flickr_id": "4546210985", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43311", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] is exhausted from all the walking and decides to take a break .", "storylet_id": "216557"}], [{"original_text": "While resting she snaps a photo of a butterfly.", "album_id": "72157623793801177", "photo_flickr_id": "4546211759", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43311", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while resting she snaps a photo of a butterfly .", "storylet_id": "216558"}], [{"original_text": "After she is done hiking she heads to the table to have some lunch.", "album_id": "72157623793801177", "photo_flickr_id": "4546211887", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43311", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after she is done hiking she heads to the table to have some lunch .", "storylet_id": "216559"}], [{"original_text": "It was a great day for the family to go on a nature walk.", "album_id": "72157623793801177", "photo_flickr_id": "4546212029", "setting": "last-3-pick-old-and-tell", "worker_id": "2TAHA68WOWWOYN4", "story_id": "43312", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a great day for the family to go on a nature walk .", "storylet_id": "216560"}], [{"original_text": "We spotted this beautiful butterfly hovering over a branch.", "album_id": "72157623793801177", "photo_flickr_id": "4546211759", "setting": "last-3-pick-old-and-tell", "worker_id": "2TAHA68WOWWOYN4", "story_id": "43312", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we spotted this beautiful butterfly hovering over a branch .", "storylet_id": "216561"}], [{"original_text": "Mom found some edible mushrooms near a tree.", "album_id": "72157623793801177", "photo_flickr_id": "4546210397", "setting": "last-3-pick-old-and-tell", "worker_id": "2TAHA68WOWWOYN4", "story_id": "43312", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom found some edible mushrooms near a tree .", "storylet_id": "216562"}], [{"original_text": "We spotted a fox nearby and was careful not to scare it.", "album_id": "72157623793801177", "photo_flickr_id": "4546844472", "setting": "last-3-pick-old-and-tell", "worker_id": "2TAHA68WOWWOYN4", "story_id": "43312", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we spotted a fox nearby and was careful not to scare it .", "storylet_id": "216563"}], [{"original_text": "I love going walks with my family.", "album_id": "72157623793801177", "photo_flickr_id": "4546213375", "setting": "last-3-pick-old-and-tell", "worker_id": "2TAHA68WOWWOYN4", "story_id": "43312", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love going walks with my family .", "storylet_id": "216564"}], [{"original_text": "Cathy is going on a hike today!", "album_id": "72157623793801177", "photo_flickr_id": "4546843974", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "43313", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is going on a hike today !", "storylet_id": "216565"}], [{"original_text": "She is excited for what she gets to see!", "album_id": "72157623793801177", "photo_flickr_id": "4546844472", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "43313", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she is excited for what she gets to see !", "storylet_id": "216566"}], [{"original_text": "Here she has found a tree, she looks up and what does she see?", "album_id": "72157623793801177", "photo_flickr_id": "4546210985", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "43313", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here she has found a tree , she looks up and what does she see ?", "storylet_id": "216567"}], [{"original_text": "A beautiful butterfly! How pretty!", "album_id": "72157623793801177", "photo_flickr_id": "4546211759", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "43313", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a beautiful butterfly ! how pretty !", "storylet_id": "216568"}], [{"original_text": "That was exhausting, it's time for her picnis lunch.", "album_id": "72157623793801177", "photo_flickr_id": "4546211887", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "43313", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that was exhausting , it 's time for her picnis lunch .", "storylet_id": "216569"}], [{"original_text": "The couple was ready to start their hike for the day.", "album_id": "72157623793801177", "photo_flickr_id": "4546212029", "setting": "last-3-pick-old-and-tell", "worker_id": "NOJ7ES2MZQICVSB", "story_id": "43314", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple was ready to start their hike for the day .", "storylet_id": "216570"}], [{"original_text": "They saw a beautiful butterfly as they began.", "album_id": "72157623793801177", "photo_flickr_id": "4546211759", "setting": "last-3-pick-old-and-tell", "worker_id": "NOJ7ES2MZQICVSB", "story_id": "43314", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they saw a beautiful butterfly as they began .", "storylet_id": "216571"}], [{"original_text": "It was a little tough getting around the downed tree, but the couple found a way.", "album_id": "72157623793801177", "photo_flickr_id": "4546210397", "setting": "last-3-pick-old-and-tell", "worker_id": "NOJ7ES2MZQICVSB", "story_id": "43314", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a little tough getting around the downed tree , but the couple found a way .", "storylet_id": "216572"}], [{"original_text": "The couple saw another tree that had fallen and were very concerned.", "album_id": "72157623793801177", "photo_flickr_id": "4546844472", "setting": "last-3-pick-old-and-tell", "worker_id": "NOJ7ES2MZQICVSB", "story_id": "43314", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple saw another tree that had fallen and were very concerned .", "storylet_id": "216573"}], [{"original_text": "When the couple finally came upon a tree that blocked the path, they unfortunately had to turn back and end their hike.", "album_id": "72157623793801177", "photo_flickr_id": "4546213375", "setting": "last-3-pick-old-and-tell", "worker_id": "NOJ7ES2MZQICVSB", "story_id": "43314", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the couple finally came upon a tree that blocked the path , they unfortunately had to turn back and end their hike .", "storylet_id": "216574"}], [{"original_text": "We finally found the perfect theater for our dance recital.", "album_id": "72157624790448284", "photo_flickr_id": "4920617710", "setting": "first-2-pick-and-tell", "worker_id": "ZARSPH5F41MMG27", "story_id": "43315", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we finally found the perfect theater for our dance recital .", "storylet_id": "216575"}], [{"original_text": "We had to audition some people for the parts.", "album_id": "72157624790448284", "photo_flickr_id": "4920029001", "setting": "first-2-pick-and-tell", "worker_id": "ZARSPH5F41MMG27", "story_id": "43315", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to audition some people for the parts .", "storylet_id": "216576"}], [{"original_text": "Found the perfect costumes for them to wear.", "album_id": "72157624790448284", "photo_flickr_id": "4920020497", "setting": "first-2-pick-and-tell", "worker_id": "ZARSPH5F41MMG27", "story_id": "43315", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "found the perfect costumes for them to wear .", "storylet_id": "216577"}], [{"original_text": "The choreographer prepared the dancers the best he could. ", "album_id": "72157624790448284", "photo_flickr_id": "4920623352", "setting": "first-2-pick-and-tell", "worker_id": "ZARSPH5F41MMG27", "story_id": "43315", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the choreographer prepared the dancers the best he could .", "storylet_id": "216578"}], [{"original_text": "It's show time and the dancers are warming up before the big time.", "album_id": "72157624790448284", "photo_flickr_id": "4920628114", "setting": "first-2-pick-and-tell", "worker_id": "ZARSPH5F41MMG27", "story_id": "43315", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's show time and the dancers are warming up before the big time .", "storylet_id": "216579"}], [{"original_text": "It was almost time for the yoga class to begin.", "album_id": "72157624790448284", "photo_flickr_id": "4920620920", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43316", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was almost time for the yoga class to begin .", "storylet_id": "216580"}], [{"original_text": "The guys sitting around waiting for the others to arrive.", "album_id": "72157624790448284", "photo_flickr_id": "4920622228", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43316", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guys sitting around waiting for the others to arrive .", "storylet_id": "216581"}], [{"original_text": "The yoga class has started and everyone is having fun.", "album_id": "72157624790448284", "photo_flickr_id": "4920623352", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43316", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the yoga class has started and everyone is having fun .", "storylet_id": "216582"}], [{"original_text": "After yoga class Mark decides to lay down and rest.", "album_id": "72157624790448284", "photo_flickr_id": "4920025759", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43316", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after yoga class [male] decides to lay down and rest .", "storylet_id": "216583"}], [{"original_text": "While the others are going over the yoga class results.", "album_id": "72157624790448284", "photo_flickr_id": "4920625436", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43316", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while the others are going over the yoga class results .", "storylet_id": "216584"}], [{"original_text": "When Terry and his friends were given the job of coming up with the props and designing sets for the play, they had a lot to decide.", "album_id": "72157624790448284", "photo_flickr_id": "4920620920", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43317", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when [male] and his friends were given the job of coming up with the props and designing sets for the play , they had a lot to decide .", "storylet_id": "216585"}], [{"original_text": "They discussed themes, cost, placement of props, and so much more.", "album_id": "72157624790448284", "photo_flickr_id": "4920622228", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43317", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they discussed themes , cost , placement of props , and so much more .", "storylet_id": "216586"}], [{"original_text": "It was a chaotic environment to work in because the dancers were right next door practicing.", "album_id": "72157624790448284", "photo_flickr_id": "4920623352", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43317", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a chaotic environment to work in because the dancers were right next door practicing .", "storylet_id": "216587"}], [{"original_text": "Fortunately, Terry's friend found a quiet place where they could make calls from.", "album_id": "72157624790448284", "photo_flickr_id": "4920025759", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43317", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fortunately , [male] 's friend found a quiet place where they could make calls from .", "storylet_id": "216588"}], [{"original_text": "Terry's group decides to go with a French theme after finding a table at an antique store.", "album_id": "72157624790448284", "photo_flickr_id": "4920625436", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43317", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] 's group decides to go with a french theme after finding a table at an antique store .", "storylet_id": "216589"}], [{"original_text": "The drama club set designers were trying to figure the best scenery design", "album_id": "72157624790448284", "photo_flickr_id": "4920620920", "setting": "last-3-pick-old-and-tell", "worker_id": "GVHPT8VLQKXQH7J", "story_id": "43318", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the drama club set designers were trying to figure the best scenery design", "storylet_id": "216590"}], [{"original_text": "Rehearsal is brutal. The Director is always in our faces!", "album_id": "72157624790448284", "photo_flickr_id": "4920622228", "setting": "last-3-pick-old-and-tell", "worker_id": "GVHPT8VLQKXQH7J", "story_id": "43318", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "rehearsal is brutal . the director is always in our faces !", "storylet_id": "216591"}], [{"original_text": "We love the choreographer. she is so talented and makes things seem easy.", "album_id": "72157624790448284", "photo_flickr_id": "4920623352", "setting": "last-3-pick-old-and-tell", "worker_id": "GVHPT8VLQKXQH7J", "story_id": "43318", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we love the choreographer . she is so talented and makes things seem easy .", "storylet_id": "216592"}], [{"original_text": "Our male lead is taking some down time.", "album_id": "72157624790448284", "photo_flickr_id": "4920025759", "setting": "last-3-pick-old-and-tell", "worker_id": "GVHPT8VLQKXQH7J", "story_id": "43318", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our male lead is taking some down time .", "storylet_id": "216593"}], [{"original_text": "Running the lines and the scenes is so rewarding. I hope this show will be a hit!", "album_id": "72157624790448284", "photo_flickr_id": "4920625436", "setting": "last-3-pick-old-and-tell", "worker_id": "GVHPT8VLQKXQH7J", "story_id": "43318", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "running the lines and the scenes is so rewarding . i hope this show will be a hit !", "storylet_id": "216594"}], [{"original_text": "It is the first day of rehersal for the show at the ballet institute!", "album_id": "72157624790448284", "photo_flickr_id": "4920617710", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "43319", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is the first day of rehersal for the show at the ballet institute !", "storylet_id": "216595"}], [{"original_text": "The director comes in, ready to describe all the scenes.", "album_id": "72157624790448284", "photo_flickr_id": "4920029001", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "43319", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the director comes in , ready to describe all the scenes .", "storylet_id": "216596"}], [{"original_text": "There is going to be a WWII scene. He begins to describe what he wants people to do.", "album_id": "72157624790448284", "photo_flickr_id": "4920020497", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "43319", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is going to be a wwii scene . he begins to describe what he wants people to do .", "storylet_id": "216597"}], [{"original_text": "No one seems to get it.", "album_id": "72157624790448284", "photo_flickr_id": "4920623352", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "43319", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "no one seems to get it .", "storylet_id": "216598"}], [{"original_text": "So he must get up and show people how it's done.", "album_id": "72157624790448284", "photo_flickr_id": "4920628114", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "43319", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so he must get up and show people how it 's done .", "storylet_id": "216599"}], [{"original_text": "The rodeo starts with cowboys riding around with the flag.", "album_id": "72157623561879278", "photo_flickr_id": "4419216388", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "43320", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the rodeo starts with cowboys riding around with the flag .", "storylet_id": "216600"}], [{"original_text": "A gorgeous singer belts out the star spangled banner.", "album_id": "72157623561879278", "photo_flickr_id": "4530096650", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "43320", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a gorgeous singer belts out the star spangled banner .", "storylet_id": "216601"}], [{"original_text": "The rodeo doesn't go well. The animals are in top form and kick some human butt.", "album_id": "72157623561879278", "photo_flickr_id": "4461026993", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "43320", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the rodeo does n't go well . the animals are in top form and kick some human butt .", "storylet_id": "216602"}], [{"original_text": "Benny the Bull does a front hand spring and launches his human into the stands.", "album_id": "72157623561879278", "photo_flickr_id": "4407461053", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "43320", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] the bull does a front hand spring and launches his human into the stands .", "storylet_id": "216603"}], [{"original_text": "The bison want in on some of the human butt kicking action and break out of their cages. ", "album_id": "72157623561879278", "photo_flickr_id": "4510177734", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "43320", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bison want in on some of the human butt kicking action and break out of their cages .", "storylet_id": "216604"}], [{"original_text": "We went the rodeo today.", "album_id": "72157623561879278", "photo_flickr_id": "4530096182", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43321", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went the rodeo today .", "storylet_id": "216605"}], [{"original_text": "There where lots of old classic trucks.", "album_id": "72157623561879278", "photo_flickr_id": "4415181929", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43321", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there where lots of old classic trucks .", "storylet_id": "216606"}], [{"original_text": "Of course we have to pay respects to our country.", "album_id": "72157623561879278", "photo_flickr_id": "4419216388", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43321", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course we have to pay respects to our country .", "storylet_id": "216607"}], [{"original_text": "There was a lot of excitement today.", "album_id": "72157623561879278", "photo_flickr_id": "4407461053", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43321", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a lot of excitement today .", "storylet_id": "216608"}], [{"original_text": "They even had buffalo.", "album_id": "72157623561879278", "photo_flickr_id": "4510177734", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43321", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even had buffalo .", "storylet_id": "216609"}], [{"original_text": "This is when we went to the rodeo.", "album_id": "72157623561879278", "photo_flickr_id": "4419216388", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "43322", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is when we went to the rodeo .", "storylet_id": "216610"}], [{"original_text": "They had a local celebratory sing the National Anthem.", "album_id": "72157623561879278", "photo_flickr_id": "4530096650", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "43322", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a local celebratory sing the organization organization .", "storylet_id": "216611"}], [{"original_text": "Cowboys were riling up the calfs.", "album_id": "72157623561879278", "photo_flickr_id": "4461026993", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "43322", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "cowboys were riling up the calfs .", "storylet_id": "216612"}], [{"original_text": "Another guy kept on the bucking bronco. ", "album_id": "72157623561879278", "photo_flickr_id": "4407461053", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "43322", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another guy kept on the bucking bronco .", "storylet_id": "216613"}], [{"original_text": "But the real show was the bull fight. We all had a great time.", "album_id": "72157623561879278", "photo_flickr_id": "4510177734", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "43322", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the real show was the bull fight . we all had a great time .", "storylet_id": "216614"}], [{"original_text": "There is a rodeo going on, and it will be action filled.", "album_id": "72157623561879278", "photo_flickr_id": "4419216388", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43323", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is a rodeo going on , and it will be action filled .", "storylet_id": "216615"}], [{"original_text": "This beautiful woman is pretty much the announcer.", "album_id": "72157623561879278", "photo_flickr_id": "4530096650", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43323", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this beautiful woman is pretty much the announcer .", "storylet_id": "216616"}], [{"original_text": "The bulls were wild and scary, but put on a great show.", "album_id": "72157623561879278", "photo_flickr_id": "4461026993", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43323", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bulls were wild and scary , but put on a great show .", "storylet_id": "216617"}], [{"original_text": "It sure looked like the cowboy was gonna get hurt real bad.", "album_id": "72157623561879278", "photo_flickr_id": "4407461053", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43323", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it sure looked like the cowboy was gon na get hurt real bad .", "storylet_id": "216618"}], [{"original_text": "We got to see the huge buffalo. they were fantastic.", "album_id": "72157623561879278", "photo_flickr_id": "4510177734", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43323", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we got to see the huge buffalo . they were fantastic .", "storylet_id": "216619"}], [{"original_text": "We went to the rodeo. They started the night with the flying of the American flag.", "album_id": "72157623561879278", "photo_flickr_id": "4419216388", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43324", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the rodeo . they started the night with the flying of the american flag .", "storylet_id": "216620"}], [{"original_text": "Then a woman sang the national anthem.", "album_id": "72157623561879278", "photo_flickr_id": "4530096650", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43324", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then a woman sang the national anthem .", "storylet_id": "216621"}], [{"original_text": "The first bull rider of the night didn't last long.", "album_id": "72157623561879278", "photo_flickr_id": "4461026993", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43324", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first bull rider of the night did n't last long .", "storylet_id": "216622"}], [{"original_text": "One rider landed on his feet after being thrown off.", "album_id": "72157623561879278", "photo_flickr_id": "4407461053", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43324", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one rider landed on his feet after being thrown off .", "storylet_id": "216623"}], [{"original_text": "Some rare buffalo made an appearance at the rodeo.", "album_id": "72157623561879278", "photo_flickr_id": "4510177734", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43324", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some rare buffalo made an appearance at the rodeo .", "storylet_id": "216624"}], [{"original_text": "We got our parents to go out with us tonight.", "album_id": "72157623280003178", "photo_flickr_id": "4302742037", "setting": "first-2-pick-and-tell", "worker_id": "OPYJOICEY56AQHH", "story_id": "43325", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got our parents to go out with us tonight .", "storylet_id": "216625"}], [{"original_text": "Both sets of parents agreed, but they wanted to have dinner first.", "album_id": "72157623280003178", "photo_flickr_id": "4303497304", "setting": "first-2-pick-and-tell", "worker_id": "OPYJOICEY56AQHH", "story_id": "43325", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "both sets of parents agreed , but they wanted to have dinner first .", "storylet_id": "216626"}], [{"original_text": "After that, we took them to our favorite pool hall.", "album_id": "72157623280003178", "photo_flickr_id": "4302776081", "setting": "first-2-pick-and-tell", "worker_id": "OPYJOICEY56AQHH", "story_id": "43325", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that , we took them to our favorite pool hall .", "storylet_id": "216627"}], [{"original_text": "My friend's mom really loosened up after a few drinks.", "album_id": "72157623280003178", "photo_flickr_id": "4303535762", "setting": "first-2-pick-and-tell", "worker_id": "OPYJOICEY56AQHH", "story_id": "43325", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friend 's mom really loosened up after a few drinks .", "storylet_id": "216628"}], [{"original_text": "It turned out to be a great night.", "album_id": "72157623280003178", "photo_flickr_id": "4302788695", "setting": "first-2-pick-and-tell", "worker_id": "OPYJOICEY56AQHH", "story_id": "43325", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it turned out to be a great night .", "storylet_id": "216629"}], [{"original_text": "The parents were stuck at a boring business conference.", "album_id": "72157623280003178", "photo_flickr_id": "4303488880", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43326", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parents were stuck at a boring business conference .", "storylet_id": "216630"}], [{"original_text": "The tried to make the best of the event but joked that alcohol would make it better.", "album_id": "72157623280003178", "photo_flickr_id": "4303497304", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43326", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tried to make the best of the event but joked that alcohol would make it better .", "storylet_id": "216631"}], [{"original_text": "Friends and family members waited for them at a nearby bar.", "album_id": "72157623280003178", "photo_flickr_id": "4303518424", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43326", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "friends and family members waited for them at a nearby bar .", "storylet_id": "216632"}], [{"original_text": "They were having a great time!", "album_id": "72157623280003178", "photo_flickr_id": "4302779817", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43326", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were having a great time !", "storylet_id": "216633"}], [{"original_text": "Lots of new friends were made.", "album_id": "72157623280003178", "photo_flickr_id": "4302788695", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43326", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lots of new friends were made .", "storylet_id": "216634"}], [{"original_text": "We went out for a charity dinner with some of our friends. ", "album_id": "72157623280003178", "photo_flickr_id": "4303488880", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "43327", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went out for a charity dinner with some of our friends .", "storylet_id": "216635"}], [{"original_text": "We had great conversation over some pretty good food and of course lots of wine.", "album_id": "72157623280003178", "photo_flickr_id": "4303497304", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "43327", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had great conversation over some pretty good food and of course lots of wine .", "storylet_id": "216636"}], [{"original_text": "Then they had a 50/50 pool tournament where 50% went to charity, 50% went to the winner.", "album_id": "72157623280003178", "photo_flickr_id": "4303518424", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "43327", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they had a 50/50 pool tournament where 50 % went to charity , 50 % went to the winner .", "storylet_id": "216637"}], [{"original_text": "As decoration they handed out Hawaiian necklaces. ", "album_id": "72157623280003178", "photo_flickr_id": "4302779817", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "43327", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as decoration they handed out hawaiian necklaces .", "storylet_id": "216638"}], [{"original_text": "It was nice to see so many people getting together. Even made a few new friends. ", "album_id": "72157623280003178", "photo_flickr_id": "4302788695", "setting": "last-3-pick-old-and-tell", "worker_id": "5XYFFGY2PDNB85P", "story_id": "43327", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was nice to see so many people getting together . even made a few new friends .", "storylet_id": "216639"}], [{"original_text": "On Jack's birthday he and his wife Jill went out for dinner with friends.", "album_id": "72157623280003178", "photo_flickr_id": "4302742037", "setting": "last-3-pick-old-and-tell", "worker_id": "YY8BU4C4NQD7BFS", "story_id": "43328", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on [male] 's birthday he and his wife [female] went out for dinner with friends .", "storylet_id": "216640"}], [{"original_text": "They were joined by Bob and Barb at their favorite place.", "album_id": "72157623280003178", "photo_flickr_id": "4303497304", "setting": "last-3-pick-old-and-tell", "worker_id": "YY8BU4C4NQD7BFS", "story_id": "43328", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were joined by [male] and barb at their favorite place .", "storylet_id": "216641"}], [{"original_text": "After dinner they decided to go to a nearby night club.", "album_id": "72157623280003178", "photo_flickr_id": "4302776081", "setting": "last-3-pick-old-and-tell", "worker_id": "YY8BU4C4NQD7BFS", "story_id": "43328", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after dinner they decided to go to a nearby night club .", "storylet_id": "216642"}], [{"original_text": "There they ran into Alice and Jennifer who were surprised but delighted to see them.", "album_id": "72157623280003178", "photo_flickr_id": "4303535762", "setting": "last-3-pick-old-and-tell", "worker_id": "YY8BU4C4NQD7BFS", "story_id": "43328", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there they ran into [female] and [female] who were surprised but delighted to see them .", "storylet_id": "216643"}], [{"original_text": "Later their red headed daughter Jamie showed up and everyone had a fantastic evening.", "album_id": "72157623280003178", "photo_flickr_id": "4302788695", "setting": "last-3-pick-old-and-tell", "worker_id": "YY8BU4C4NQD7BFS", "story_id": "43328", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later their red headed daughter [female] showed up and everyone had a fantastic evening .", "storylet_id": "216644"}], [{"original_text": "The neighbors invited us out to brunch.", "album_id": "72157623280003178", "photo_flickr_id": "4302742037", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43329", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the neighbors invited us out to brunch .", "storylet_id": "216645"}], [{"original_text": "We were delighted of course and accepted.", "album_id": "72157623280003178", "photo_flickr_id": "4303497304", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43329", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were delighted of course and accepted .", "storylet_id": "216646"}], [{"original_text": "The place they brought us to was Hawaiian themed.", "album_id": "72157623280003178", "photo_flickr_id": "4302776081", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43329", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the place they brought us to was hawaiian themed .", "storylet_id": "216647"}], [{"original_text": "We found out they practically invited the entire neighborhood!", "album_id": "72157623280003178", "photo_flickr_id": "4303535762", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43329", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found out they practically invited the entire neighborhood !", "storylet_id": "216648"}], [{"original_text": "It was fun though and we had plenty of laughs.", "album_id": "72157623280003178", "photo_flickr_id": "4302788695", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43329", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was fun though and we had plenty of laughs .", "storylet_id": "216649"}], [{"original_text": "I was waiting for the concert to begin.", "album_id": "72157623388795231", "photo_flickr_id": "4390161980", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43330", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was waiting for the concert to begin .", "storylet_id": "216650"}], [{"original_text": "Finally the first performer arrived.", "album_id": "72157623388795231", "photo_flickr_id": "4389371243", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43330", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "finally the first performer arrived .", "storylet_id": "216651"}], [{"original_text": "There were all kinds of performers tonight.", "album_id": "72157623388795231", "photo_flickr_id": "4389381601", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43330", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were all kinds of performers tonight .", "storylet_id": "216652"}], [{"original_text": "They sang all kinds of songs.", "album_id": "72157623388795231", "photo_flickr_id": "4389383069", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43330", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they sang all kinds of songs .", "storylet_id": "216653"}], [{"original_text": "And even played songs with each other.", "album_id": "72157623388795231", "photo_flickr_id": "4390165246", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43330", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and even played songs with each other .", "storylet_id": "216654"}], [{"original_text": "Seeing one of our favorite musicians play onstage.", "album_id": "72157623388795231", "photo_flickr_id": "4390130400", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "43331", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "seeing one of our favorite musicians play onstage .", "storylet_id": "216655"}], [{"original_text": "Play a duet, they really sound great. ", "album_id": "72157623388795231", "photo_flickr_id": "4390130754", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "43331", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "play a duet , they really sound great .", "storylet_id": "216656"}], [{"original_text": "She plays the guitar so well, seeing her was a real treat. ", "album_id": "72157623388795231", "photo_flickr_id": "4389381601", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "43331", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she plays the guitar so well , seeing her was a real treat .", "storylet_id": "216657"}], [{"original_text": "Jamming out on the guitar for the crowds enjoyment. ", "album_id": "72157623388795231", "photo_flickr_id": "4389396877", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "43331", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "jamming out on the guitar for the crowds enjoyment .", "storylet_id": "216658"}], [{"original_text": "We even got to see somebody play the violin. ", "album_id": "72157623388795231", "photo_flickr_id": "4390155182", "setting": "first-2-pick-and-tell", "worker_id": "BT5HVW7KFY4C69B", "story_id": "43331", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even got to see somebody play the violin .", "storylet_id": "216659"}], [{"original_text": "The musicians went over the set list before the concert started.", "album_id": "72157623388795231", "photo_flickr_id": "4390161980", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43332", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the musicians went over the set list before the concert started .", "storylet_id": "216660"}], [{"original_text": "The lead singed performed well during the first song.", "album_id": "72157623388795231", "photo_flickr_id": "4389371243", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43332", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lead singed performed well during the first song .", "storylet_id": "216661"}], [{"original_text": "The rhythm section of the band played well.", "album_id": "72157623388795231", "photo_flickr_id": "4389381601", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43332", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the rhythm section of the band played well .", "storylet_id": "216662"}], [{"original_text": "The lead singer stopped singing to address the crowd for a brief moment.", "album_id": "72157623388795231", "photo_flickr_id": "4389383069", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43332", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lead singer stopped singing to address the crowd for a brief moment .", "storylet_id": "216663"}], [{"original_text": "The music resumed with a guitar solo.", "album_id": "72157623388795231", "photo_flickr_id": "4390165246", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43332", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the music resumed with a guitar solo .", "storylet_id": "216664"}], [{"original_text": "The set list was filled with the bands extensive collection of hits", "album_id": "72157623388795231", "photo_flickr_id": "4390161980", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43333", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the set list was filled with the bands extensive collection of hits", "storylet_id": "216665"}], [{"original_text": "All and all the acoustic performance was boss.", "album_id": "72157623388795231", "photo_flickr_id": "4389371243", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43333", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all and all the acoustic performance was boss .", "storylet_id": "216666"}], [{"original_text": "when the girl started playing everyone was in awe", "album_id": "72157623388795231", "photo_flickr_id": "4389381601", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43333", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when the girl started playing everyone was in awe", "storylet_id": "216667"}], [{"original_text": "the blue lights gave the stage a sense of coolness.", "album_id": "72157623388795231", "photo_flickr_id": "4389383069", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43333", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the blue lights gave the stage a sense of coolness .", "storylet_id": "216668"}], [{"original_text": "the jam session was one of the best i have seen in a long time ", "album_id": "72157623388795231", "photo_flickr_id": "4390165246", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43333", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the jam session was one of the best i have seen in a long time", "storylet_id": "216669"}], [{"original_text": "Here is tonight's song list.", "album_id": "72157623388795231", "photo_flickr_id": "4390161980", "setting": "last-3-pick-old-and-tell", "worker_id": "0NLEKM0SF2LJ5MN", "story_id": "43334", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is tonight 's song list .", "storylet_id": "216670"}], [{"original_text": "The main vocalist starting off the night with Say It Now.", "album_id": "72157623388795231", "photo_flickr_id": "4389371243", "setting": "last-3-pick-old-and-tell", "worker_id": "0NLEKM0SF2LJ5MN", "story_id": "43334", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the main vocalist starting off the night with say it now .", "storylet_id": "216671"}], [{"original_text": "The guest vocalist, the main vocalist's wife came to the stage and joined him in In These Arms.", "album_id": "72157623388795231", "photo_flickr_id": "4389381601", "setting": "last-3-pick-old-and-tell", "worker_id": "0NLEKM0SF2LJ5MN", "story_id": "43334", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guest vocalist , the main vocalist 's wife came to the stage and joined him in in these arms .", "storylet_id": "216672"}], [{"original_text": "The main singer sits at the piano and looks out at the crowd in awe of his fans.", "album_id": "72157623388795231", "photo_flickr_id": "4389383069", "setting": "last-3-pick-old-and-tell", "worker_id": "0NLEKM0SF2LJ5MN", "story_id": "43334", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the main singer sits at the piano and looks out at the crowd in awe of his fans .", "storylet_id": "216673"}], [{"original_text": "The couple's duet singing I Have Loved You Wrong.", "album_id": "72157623388795231", "photo_flickr_id": "4390165246", "setting": "last-3-pick-old-and-tell", "worker_id": "0NLEKM0SF2LJ5MN", "story_id": "43334", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the couple 's duet singing i have loved you wrong .", "storylet_id": "216674"}], [{"original_text": "There was a bright ball off in the distance. We wondered what it could be. ", "album_id": "72157624237676879", "photo_flickr_id": "4735623375", "setting": "first-2-pick-and-tell", "worker_id": "J8VS5KJPKNQN537", "story_id": "43335", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a bright ball off in the distance . we wondered what it could be .", "storylet_id": "216675"}], [{"original_text": "The orange glow began to grow. Our hearts started to beat faster.", "album_id": "72157624237676879", "photo_flickr_id": "4736259344", "setting": "first-2-pick-and-tell", "worker_id": "J8VS5KJPKNQN537", "story_id": "43335", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the orange glow began to grow . our hearts started to beat faster .", "storylet_id": "216676"}], [{"original_text": "In an instance we knew it was a forest fire. The orange glow and smoke took over the sky.", "album_id": "72157624237676879", "photo_flickr_id": "4736324468", "setting": "first-2-pick-and-tell", "worker_id": "J8VS5KJPKNQN537", "story_id": "43335", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in an instance we knew it was a forest fire . the orange glow and smoke took over the sky .", "storylet_id": "216677"}], [{"original_text": "We began to see flames leaping up over the trees. Sirens could be heard off in the distance.", "album_id": "72157624237676879", "photo_flickr_id": "4735622833", "setting": "first-2-pick-and-tell", "worker_id": "J8VS5KJPKNQN537", "story_id": "43335", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we began to see flames leaping up over the trees . sirens could be heard off in the distance .", "storylet_id": "216678"}], [{"original_text": "As we hoped and prayed that everyone was okay, the fire trucks were clearly on their way to fight this amazing fire. ", "album_id": "72157624237676879", "photo_flickr_id": "4735622943", "setting": "first-2-pick-and-tell", "worker_id": "J8VS5KJPKNQN537", "story_id": "43335", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as we hoped and prayed that everyone was okay , the fire trucks were clearly on their way to fight this amazing fire .", "storylet_id": "216679"}], [{"original_text": "A wildfire is burning in the forest.", "album_id": "72157624237676879", "photo_flickr_id": "4736259182", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43336", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a wildfire is burning in the forest .", "storylet_id": "216680"}], [{"original_text": "The flames keep getting higher as it spreads.", "album_id": "72157624237676879", "photo_flickr_id": "4736259512", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43336", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flames keep getting higher as it spreads .", "storylet_id": "216681"}], [{"original_text": "It is really getting out of hand someone better get here quick or it could really get out of control.", "album_id": "72157624237676879", "photo_flickr_id": "4735622673", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43336", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is really getting out of hand someone better get here quick or it could really get out of control .", "storylet_id": "216682"}], [{"original_text": "Help finally arrives as the fire truck is here.", "album_id": "72157624237676879", "photo_flickr_id": "4735622943", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43336", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "help finally arrives as the fire truck is here .", "storylet_id": "216683"}], [{"original_text": "The firefighters are preparing to fight the wildfire in the forest.", "album_id": "72157624237676879", "photo_flickr_id": "4735623681", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "43336", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the firefighters are preparing to fight the wildfire in the forest .", "storylet_id": "216684"}], [{"original_text": "The night sky showed the forest fire clearly.", "album_id": "72157624237676879", "photo_flickr_id": "4735623375", "setting": "last-3-pick-old-and-tell", "worker_id": "KUIYN3V2ORI5A2L", "story_id": "43337", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the night sky showed the forest fire clearly .", "storylet_id": "216685"}], [{"original_text": "The fire began to grow quickly.", "album_id": "72157624237676879", "photo_flickr_id": "4736259344", "setting": "last-3-pick-old-and-tell", "worker_id": "KUIYN3V2ORI5A2L", "story_id": "43337", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fire began to grow quickly .", "storylet_id": "216686"}], [{"original_text": "Forest Fire Troops were flown over and dropped nearby to combat the fire.", "album_id": "72157624237676879", "photo_flickr_id": "4736324468", "setting": "last-3-pick-old-and-tell", "worker_id": "KUIYN3V2ORI5A2L", "story_id": "43337", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] fire troops were flown over and dropped nearby to combat the fire .", "storylet_id": "216687"}], [{"original_text": "With the trained professionals work, the fire began to shrink.", "album_id": "72157624237676879", "photo_flickr_id": "4735622833", "setting": "last-3-pick-old-and-tell", "worker_id": "KUIYN3V2ORI5A2L", "story_id": "43337", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with the trained professionals work , the fire began to shrink .", "storylet_id": "216688"}], [{"original_text": "Emergency crews responded as best they could roadside.", "album_id": "72157624237676879", "photo_flickr_id": "4735622943", "setting": "last-3-pick-old-and-tell", "worker_id": "KUIYN3V2ORI5A2L", "story_id": "43337", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "emergency crews responded as best they could roadside .", "storylet_id": "216689"}], [{"original_text": "From Brian's place up on the hill, he could see exactly where the fire started. He said that it was strange and beautiful how the fire illuminated an arc of smoke at the beginning.", "album_id": "72157624237676879", "photo_flickr_id": "4736259182", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43338", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "from [male] 's place up on the hill , he could see exactly where the fire started . he said that it was strange and beautiful how the fire illuminated an arc of smoke at the beginning .", "storylet_id": "216690"}], [{"original_text": "Then, a wind started blowing shifting the smoke west.", "album_id": "72157624237676879", "photo_flickr_id": "4736259512", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43338", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then , a wind started blowing shifting the smoke west .", "storylet_id": "216691"}], [{"original_text": "Then the wind started really blowing hard spreading the fire further and further.", "album_id": "72157624237676879", "photo_flickr_id": "4735622673", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43338", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the wind started really blowing hard spreading the fire further and further .", "storylet_id": "216692"}], [{"original_text": "Brian could see all the people evacuating town.", "album_id": "72157624237676879", "photo_flickr_id": "4735622943", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43338", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] could see all the people evacuating town .", "storylet_id": "216693"}], [{"original_text": "And the emergency vehicles trying to come into town.", "album_id": "72157624237676879", "photo_flickr_id": "4735623681", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43338", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the emergency vehicles trying to come into town .", "storylet_id": "216694"}], [{"original_text": "Living in this neighborhood for years, we have had fires nearby that have threatened our home in the past.", "album_id": "72157624237676879", "photo_flickr_id": "4736259182", "setting": "last-3-pick-old-and-tell", "worker_id": "GVHPT8VLQKXQH7J", "story_id": "43339", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "living in this neighborhood for years , we have had fires nearby that have threatened our home in the past .", "storylet_id": "216695"}], [{"original_text": "This fire is so intense that this time we had to evacuate. ", "album_id": "72157624237676879", "photo_flickr_id": "4736259512", "setting": "last-3-pick-old-and-tell", "worker_id": "GVHPT8VLQKXQH7J", "story_id": "43339", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this fire is so intense that this time we had to evacuate .", "storylet_id": "216696"}], [{"original_text": "What do we take that cannot be replaced besides our loved ones and pets? Due to the intensity of the situation we must think quickly.", "album_id": "72157624237676879", "photo_flickr_id": "4735622673", "setting": "last-3-pick-old-and-tell", "worker_id": "GVHPT8VLQKXQH7J", "story_id": "43339", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what do we take that can not be replaced besides our loved ones and pets ? due to the intensity of the situation we must think quickly .", "storylet_id": "216697"}], [{"original_text": "Thank God help is finally here!", "album_id": "72157624237676879", "photo_flickr_id": "4735622943", "setting": "last-3-pick-old-and-tell", "worker_id": "GVHPT8VLQKXQH7J", "story_id": "43339", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "thank god help is finally here !", "storylet_id": "216698"}], [{"original_text": "My family is so grateful that with all these fireman have to deal with, they are here to help save our home.", "album_id": "72157624237676879", "photo_flickr_id": "4735623681", "setting": "last-3-pick-old-and-tell", "worker_id": "GVHPT8VLQKXQH7J", "story_id": "43339", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my family is so grateful that with all these fireman have to deal with , they are here to help save our home .", "storylet_id": "216699"}], [{"original_text": "Some of the older stores in the city were being boarded up.", "album_id": "72057594092941459", "photo_flickr_id": "119428492", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43340", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some of the older stores in the city were being boarded up .", "storylet_id": "216700"}], [{"original_text": "I've been to this store many times before. ", "album_id": "72057594092941459", "photo_flickr_id": "119428494", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43340", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 've been to this store many times before .", "storylet_id": "216701"}], [{"original_text": "The construction workers were getting their equipment ready , in the morning. ", "album_id": "72057594092941459", "photo_flickr_id": "119428495", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43340", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the construction workers were getting their equipment ready , in the morning .", "storylet_id": "216702"}], [{"original_text": "One of the workers taking out one of the equipments from his vehicle. ", "album_id": "72057594092941459", "photo_flickr_id": "119428496", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43340", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the workers taking out one of the equipments from his vehicle .", "storylet_id": "216703"}], [{"original_text": "One of the workers cleaning the glass in front of an empty store. ", "album_id": "72057594092941459", "photo_flickr_id": "119428497", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43340", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of the workers cleaning the glass in front of an empty store .", "storylet_id": "216704"}], [{"original_text": "The downtown area was crowded as there had been protests and riots.", "album_id": "72057594092941459", "photo_flickr_id": "119431107", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43341", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the downtown area was crowded as there had been protests and riots .", "storylet_id": "216705"}], [{"original_text": "Many structures in the city were badly damaged. ", "album_id": "72057594092941459", "photo_flickr_id": "119431097", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43341", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many structures in the city were badly damaged .", "storylet_id": "216706"}], [{"original_text": "Workers cleaned up the broken glass and graffiti.", "album_id": "72057594092941459", "photo_flickr_id": "119428497", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43341", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "workers cleaned up the broken glass and graffiti .", "storylet_id": "216707"}], [{"original_text": "They hauled the larger damaged goods off in vans.", "album_id": "72057594092941459", "photo_flickr_id": "119428496", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43341", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they hauled the larger damaged goods off in vans .", "storylet_id": "216708"}], [{"original_text": "People began to calm down and started heading out of the area.", "album_id": "72057594092941459", "photo_flickr_id": "119450142", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43341", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people began to calm down and started heading out of the area .", "storylet_id": "216709"}], [{"original_text": "Everyone gathered to see what was causing the ruckus around the building.", "album_id": "72057594092941459", "photo_flickr_id": "119431107", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43342", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone gathered to see what was causing the ruckus around the building .", "storylet_id": "216710"}], [{"original_text": "They saw the spray paint; however, that was the least of he worries.", "album_id": "72057594092941459", "photo_flickr_id": "119431097", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43342", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they saw the spray paint ; however , that was the least of he worries .", "storylet_id": "216711"}], [{"original_text": "The entire building had been looted.", "album_id": "72057594092941459", "photo_flickr_id": "119428497", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43342", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the entire building had been looted .", "storylet_id": "216712"}], [{"original_text": "And, several had been injured and placed in ambulances.", "album_id": "72057594092941459", "photo_flickr_id": "119428496", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43342", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , several had been injured and placed in ambulances .", "storylet_id": "216713"}], [{"original_text": "That was enough for the onlookers, as they dispersed and attempted to enjoy the rest of their day.", "album_id": "72057594092941459", "photo_flickr_id": "119450142", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43342", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that was enough for the onlookers , as they dispersed and attempted to enjoy the rest of their day .", "storylet_id": "216714"}], [{"original_text": "The remnants of a sad affair. After a riot, the innocent people are stuck repairing.", "album_id": "72057594092941459", "photo_flickr_id": "119428492", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43343", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the remnants of a sad affair . after a riot , the innocent people are stuck repairing .", "storylet_id": "216715"}], [{"original_text": "All of these windows had to be replaced.", "album_id": "72057594092941459", "photo_flickr_id": "119428494", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43343", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of these windows had to be replaced .", "storylet_id": "216716"}], [{"original_text": "This bus stop was hit especially bad.", "album_id": "72057594092941459", "photo_flickr_id": "119428495", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43343", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this bus stop was hit especially bad .", "storylet_id": "216717"}], [{"original_text": "They've already got fresh glass to put in there.", "album_id": "72057594092941459", "photo_flickr_id": "119428496", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43343", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they 've already got fresh glass to put in there .", "storylet_id": "216718"}], [{"original_text": "But such a mess was made.", "album_id": "72057594092941459", "photo_flickr_id": "119428497", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43343", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but such a mess was made .", "storylet_id": "216719"}], [{"original_text": "People have gathered around the court yard for the protest. ", "album_id": "72057594092941459", "photo_flickr_id": "119431107", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "43344", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people have gathered around the court yard for the protest .", "storylet_id": "216720"}], [{"original_text": "The protest is quiet in this area but here is some painting on a building.", "album_id": "72057594092941459", "photo_flickr_id": "119431097", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "43344", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the protest is quiet in this area but here is some painting on a building .", "storylet_id": "216721"}], [{"original_text": "This gentlemen is cleaning the area afterwards.", "album_id": "72057594092941459", "photo_flickr_id": "119428497", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "43344", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this gentlemen is cleaning the area afterwards .", "storylet_id": "216722"}], [{"original_text": "This other group of people are taking away some of the garbage.", "album_id": "72057594092941459", "photo_flickr_id": "119428496", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "43344", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this other group of people are taking away some of the garbage .", "storylet_id": "216723"}], [{"original_text": "People are beginning to disperse, and the protest is looking to be over.", "album_id": "72057594092941459", "photo_flickr_id": "119450142", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "43344", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people are beginning to disperse , and the protest is looking to be over .", "storylet_id": "216724"}], [{"original_text": "The instruments ready for the concert.", "album_id": "72057594094192882", "photo_flickr_id": "120222071", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43345", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the instruments ready for the concert .", "storylet_id": "216725"}], [{"original_text": "The musicians saluting the crowd before they start.", "album_id": "72057594094192882", "photo_flickr_id": "120638873", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43345", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the musicians saluting the crowd before they start .", "storylet_id": "216726"}], [{"original_text": "The drummer seating behind his drums. ", "album_id": "72057594094192882", "photo_flickr_id": "120221339", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43345", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the drummer seating behind his drums .", "storylet_id": "216727"}], [{"original_text": "The base players rocking the tunes. ", "album_id": "72057594094192882", "photo_flickr_id": "120222522", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43345", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the base players rocking the tunes .", "storylet_id": "216728"}], [{"original_text": "The head singer feeling the music and singing on stage. ", "album_id": "72057594094192882", "photo_flickr_id": "120639100", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43345", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the head singer feeling the music and singing on stage .", "storylet_id": "216729"}], [{"original_text": "The band played well.", "album_id": "72057594094192882", "photo_flickr_id": "120221339", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43346", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the band played well .", "storylet_id": "216730"}], [{"original_text": "The drummer was especially fun to watch.", "album_id": "72057594094192882", "photo_flickr_id": "120221446", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43346", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the drummer was especially fun to watch .", "storylet_id": "216731"}], [{"original_text": "The lead singer was always on key.", "album_id": "72057594094192882", "photo_flickr_id": "120221887", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43346", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lead singer was always on key .", "storylet_id": "216732"}], [{"original_text": "A few duos took place between guitarist and bassist.", "album_id": "72057594094192882", "photo_flickr_id": "120222522", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43346", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a few duos took place between guitarist and bassist .", "storylet_id": "216733"}], [{"original_text": "Their guitar set was eclectic.", "album_id": "72057594094192882", "photo_flickr_id": "120222071", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43346", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their guitar set was eclectic .", "storylet_id": "216734"}], [{"original_text": "They placed the guitars next to the stage. it was time for a great show.", "album_id": "72057594094192882", "photo_flickr_id": "120222071", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43347", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they placed the guitars next to the stage . it was time for a great show .", "storylet_id": "216735"}], [{"original_text": "The band then proceeded to enter the auditorium.", "album_id": "72057594094192882", "photo_flickr_id": "120638873", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43347", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the band then proceeded to enter the auditorium .", "storylet_id": "216736"}], [{"original_text": "They led with a wonderful drum solo.", "album_id": "72057594094192882", "photo_flickr_id": "120221339", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43347", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they led with a wonderful drum solo .", "storylet_id": "216737"}], [{"original_text": "Followed by some impressive guitar playing by the band members.", "album_id": "72057594094192882", "photo_flickr_id": "120222522", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43347", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "followed by some impressive guitar playing by the band members .", "storylet_id": "216738"}], [{"original_text": "Then, the lead singer, took to new heights with an acapella solo from the floor!", "album_id": "72057594094192882", "photo_flickr_id": "120639100", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43347", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then , the lead singer , took to new heights with an acapella solo from the floor !", "storylet_id": "216739"}], [{"original_text": "Today, we went to a concert for my friend's band.", "album_id": "72057594094192882", "photo_flickr_id": "120222071", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "43348", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , we went to a concert for my friend 's band .", "storylet_id": "216740"}], [{"original_text": "For the first part, they decided to stand on their guitars.", "album_id": "72057594094192882", "photo_flickr_id": "120638873", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "43348", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "for the first part , they decided to stand on their guitars .", "storylet_id": "216741"}], [{"original_text": "Soon, they started really playing.", "album_id": "72057594094192882", "photo_flickr_id": "120221339", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "43348", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "soon , they started really playing .", "storylet_id": "216742"}], [{"original_text": "We were all really impressed.", "album_id": "72057594094192882", "photo_flickr_id": "120222522", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "43348", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were all really impressed .", "storylet_id": "216743"}], [{"original_text": "Needless to say, the concert was exciting.", "album_id": "72057594094192882", "photo_flickr_id": "120639100", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "43348", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "needless to say , the concert was exciting .", "storylet_id": "216744"}], [{"original_text": "The set stage before the concert began.", "album_id": "72057594094192882", "photo_flickr_id": "120222071", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43349", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the set stage before the concert began .", "storylet_id": "216745"}], [{"original_text": "Tons of young talented rock bands performed.", "album_id": "72057594094192882", "photo_flickr_id": "120638873", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43349", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "tons of young talented rock bands performed .", "storylet_id": "216746"}], [{"original_text": "There were some very talented young people, including this amazing drummer.", "album_id": "72057594094192882", "photo_flickr_id": "120221339", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43349", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some very talented young people , including this amazing drummer .", "storylet_id": "216747"}], [{"original_text": "The two guitar duet was beyond great.", "album_id": "72057594094192882", "photo_flickr_id": "120222522", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43349", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the two guitar duet was beyond great .", "storylet_id": "216748"}], [{"original_text": "This was the end of the concert and boy did he rock it.", "album_id": "72057594094192882", "photo_flickr_id": "120639100", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43349", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the end of the concert and boy did he rock it .", "storylet_id": "216749"}], [{"original_text": "A couple of friends left the city on a boat to attend a picnic.", "album_id": "785756", "photo_flickr_id": "35513263", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43350", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple of friends left the city on a boat to attend a picnic .", "storylet_id": "216750"}], [{"original_text": "They took a parting shot as they left.", "album_id": "785756", "photo_flickr_id": "35513209", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43350", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took a parting shot as they left .", "storylet_id": "216751"}], [{"original_text": "There was a ton of food and drinks there.", "album_id": "785756", "photo_flickr_id": "35513028", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43350", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a ton of food and drinks there .", "storylet_id": "216752"}], [{"original_text": "Everyone enjoyed all the sandwiches and there were tons of extras at the end.", "album_id": "785756", "photo_flickr_id": "35512969", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43350", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone enjoyed all the sandwiches and there were tons of extras at the end .", "storylet_id": "216753"}], [{"original_text": "Afterwards, there was even shrimp provided for all the guests.", "album_id": "785756", "photo_flickr_id": "35513919", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43350", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , there was even shrimp provided for all the guests .", "storylet_id": "216754"}], [{"original_text": "For my birthday I invited family and friends over to the park for a picnic.", "album_id": "785756", "photo_flickr_id": "35513890", "setting": "first-2-pick-and-tell", "worker_id": "1U8F4XZON863FAT", "story_id": "43351", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for my birthday i invited family and friends over to the park for a picnic .", "storylet_id": "216755"}], [{"original_text": "I was so happy it was such a nice day for a picnic.", "album_id": "785756", "photo_flickr_id": "35513169", "setting": "first-2-pick-and-tell", "worker_id": "1U8F4XZON863FAT", "story_id": "43351", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was so happy it was such a nice day for a picnic .", "storylet_id": "216756"}], [{"original_text": "We had so much food, everyone had a chance to bring some of their favorite dishes.", "album_id": "785756", "photo_flickr_id": "35513028", "setting": "first-2-pick-and-tell", "worker_id": "1U8F4XZON863FAT", "story_id": "43351", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had so much food , everyone had a chance to bring some of their favorite dishes .", "storylet_id": "216757"}], [{"original_text": "I brought my favorite dish to the picnic, shrimp!", "album_id": "785756", "photo_flickr_id": "35513919", "setting": "first-2-pick-and-tell", "worker_id": "1U8F4XZON863FAT", "story_id": "43351", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i brought my favorite dish to the picnic , shrimp !", "storylet_id": "216758"}], [{"original_text": "We all had a great day, and I'm happy I got to spend it with my close friends and family.", "album_id": "785756", "photo_flickr_id": "35513999", "setting": "first-2-pick-and-tell", "worker_id": "1U8F4XZON863FAT", "story_id": "43351", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all had a great day , and i 'm happy i got to spend it with my close friends and family .", "storylet_id": "216759"}], [{"original_text": "The group went for a sightseeing tour on a boat.", "album_id": "785756", "photo_flickr_id": "35513263", "setting": "last-3-pick-old-and-tell", "worker_id": "RBOX4V9DD6CDHIK", "story_id": "43352", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group went for a sightseeing tour on a boat .", "storylet_id": "216760"}], [{"original_text": "They had a beautiful view of the city's skyline from the river.", "album_id": "785756", "photo_flickr_id": "35513209", "setting": "last-3-pick-old-and-tell", "worker_id": "RBOX4V9DD6CDHIK", "story_id": "43352", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a beautiful view of the city 's skyline from the river .", "storylet_id": "216761"}], [{"original_text": "After the tour they went to picnic that had a great assortment of food.", "album_id": "785756", "photo_flickr_id": "35513028", "setting": "last-3-pick-old-and-tell", "worker_id": "RBOX4V9DD6CDHIK", "story_id": "43352", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the tour they went to picnic that had a great assortment of food .", "storylet_id": "216762"}], [{"original_text": "Choices included a tray of fresh, healthy sandwiches.", "album_id": "785756", "photo_flickr_id": "35512969", "setting": "last-3-pick-old-and-tell", "worker_id": "RBOX4V9DD6CDHIK", "story_id": "43352", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "choices included a tray of fresh , healthy sandwiches .", "storylet_id": "216763"}], [{"original_text": "The picnic also included a shrimp boil and everyone loved it.", "album_id": "785756", "photo_flickr_id": "35513919", "setting": "last-3-pick-old-and-tell", "worker_id": "RBOX4V9DD6CDHIK", "story_id": "43352", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the picnic also included a shrimp boil and everyone loved it .", "storylet_id": "216764"}], [{"original_text": "Our annual family reunion.", "album_id": "785756", "photo_flickr_id": "35513890", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "43353", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our annual family reunion .", "storylet_id": "216765"}], [{"original_text": "We went to a great resort. ", "album_id": "785756", "photo_flickr_id": "35513169", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "43353", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to a great resort .", "storylet_id": "216766"}], [{"original_text": "There was a ton of great food.", "album_id": "785756", "photo_flickr_id": "35513028", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "43353", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a ton of great food .", "storylet_id": "216767"}], [{"original_text": "Boiled shrimp, Asian style.", "album_id": "785756", "photo_flickr_id": "35513919", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "43353", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "boiled shrimp , asian style .", "storylet_id": "216768"}], [{"original_text": "Our newest member - Tami's husband. They met in the Peace Corp.", "album_id": "785756", "photo_flickr_id": "35513999", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "43353", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our newest member - [female] 's husband . they met in the organization organization .", "storylet_id": "216769"}], [{"original_text": "Friends got together for a picnic in the park.", "album_id": "785756", "photo_flickr_id": "35513890", "setting": "last-3-pick-old-and-tell", "worker_id": "5KHD02M9MI4SRWE", "story_id": "43354", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends got together for a picnic in the park .", "storylet_id": "216770"}], [{"original_text": "Here is our view from our picnic table.", "album_id": "785756", "photo_flickr_id": "35513169", "setting": "last-3-pick-old-and-tell", "worker_id": "5KHD02M9MI4SRWE", "story_id": "43354", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is our view from our picnic table .", "storylet_id": "216771"}], [{"original_text": "Here is the feast that my friends and I prepared.", "album_id": "785756", "photo_flickr_id": "35513028", "setting": "last-3-pick-old-and-tell", "worker_id": "5KHD02M9MI4SRWE", "story_id": "43354", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is the feast that my friends and i prepared .", "storylet_id": "216772"}], [{"original_text": "This is my favorite food that was brought.", "album_id": "785756", "photo_flickr_id": "35513919", "setting": "last-3-pick-old-and-tell", "worker_id": "5KHD02M9MI4SRWE", "story_id": "43354", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is my favorite food that was brought .", "storylet_id": "216773"}], [{"original_text": "This is my best friend who made this picnic in the park with friends possible.", "album_id": "785756", "photo_flickr_id": "35513999", "setting": "last-3-pick-old-and-tell", "worker_id": "5KHD02M9MI4SRWE", "story_id": "43354", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is my best friend who made this picnic in the park with friends possible .", "storylet_id": "216774"}], [{"original_text": "Marty has noticed smoke billowing in the west. He calls 911 even though he guesses that others have already done so.", "album_id": "1556396", "photo_flickr_id": "72418125", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43355", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] has noticed smoke billowing in the west . he calls 911 even though he guesses that others have already done so .", "storylet_id": "216775"}], [{"original_text": "The entire sky is filling with smoke.", "album_id": "1556396", "photo_flickr_id": "73582242", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43355", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the entire sky is filling with smoke .", "storylet_id": "216776"}], [{"original_text": "He can now see the flames above the roof top.", "album_id": "1556396", "photo_flickr_id": "73582243", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43355", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he can now see the flames above the roof top .", "storylet_id": "216777"}], [{"original_text": "He has walked closer to the fire and sees that it is quite large.", "album_id": "1556396", "photo_flickr_id": "72418122", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43355", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he has walked closer to the fire and sees that it is quite large .", "storylet_id": "216778"}], [{"original_text": "He goes into his friend's house and together they watch the events unfold.", "album_id": "1556396", "photo_flickr_id": "73582241", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43355", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he goes into his friend 's house and together they watch the events unfold .", "storylet_id": "216779"}], [{"original_text": "A fire started in the apartment across the street.", "album_id": "1556396", "photo_flickr_id": "72418122", "setting": "first-2-pick-and-tell", "worker_id": "SDRPBG199TQ2MS6", "story_id": "43356", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a fire started in the apartment across the street .", "storylet_id": "216780"}], [{"original_text": "A man called the fire department to try to get help.", "album_id": "1556396", "photo_flickr_id": "73582241", "setting": "first-2-pick-and-tell", "worker_id": "SDRPBG199TQ2MS6", "story_id": "43356", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a man called the fire department to try to get help .", "storylet_id": "216781"}], [{"original_text": "As the fire department pulled up, they could see a lot of smoke. ", "album_id": "1556396", "photo_flickr_id": "73582242", "setting": "first-2-pick-and-tell", "worker_id": "SDRPBG199TQ2MS6", "story_id": "43356", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as the fire department pulled up , they could see a lot of smoke .", "storylet_id": "216782"}], [{"original_text": "The news quickly got ahold of the story and started broadcasting.", "album_id": "1556396", "photo_flickr_id": "72418126", "setting": "first-2-pick-and-tell", "worker_id": "SDRPBG199TQ2MS6", "story_id": "43356", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the news quickly got ahold of the story and started broadcasting .", "storylet_id": "216783"}], [{"original_text": "As the sun went down, the fire department began to gain control of the flame. ", "album_id": "1556396", "photo_flickr_id": "72824291", "setting": "first-2-pick-and-tell", "worker_id": "SDRPBG199TQ2MS6", "story_id": "43356", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the sun went down , the fire department began to gain control of the flame .", "storylet_id": "216784"}], [{"original_text": "There was a terrible fire last night. ", "album_id": "1556396", "photo_flickr_id": "72418122", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43357", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a terrible fire last night .", "storylet_id": "216785"}], [{"original_text": "He watched the blaze from his room on the second floor. ", "album_id": "1556396", "photo_flickr_id": "73582241", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43357", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he watched the blaze from his room on the second floor .", "storylet_id": "216786"}], [{"original_text": "The smoke was billowing for hours. ", "album_id": "1556396", "photo_flickr_id": "73582242", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43357", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the smoke was billowing for hours .", "storylet_id": "216787"}], [{"original_text": "It was on the news before dark. ", "album_id": "1556396", "photo_flickr_id": "72418126", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43357", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was on the news before dark .", "storylet_id": "216788"}], [{"original_text": "It was late in the night before the fire was put out. ", "album_id": "1556396", "photo_flickr_id": "72824291", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43357", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was late in the night before the fire was put out .", "storylet_id": "216789"}], [{"original_text": "Smoke billowed in the distance.", "album_id": "1556396", "photo_flickr_id": "72418125", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43358", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "smoke billowed in the distance .", "storylet_id": "216790"}], [{"original_text": "An outrageous fire was sweeping the hillside.", "album_id": "1556396", "photo_flickr_id": "73582242", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43358", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "an outrageous fire was sweeping the hillside .", "storylet_id": "216791"}], [{"original_text": "It turned the sky completely gray. ", "album_id": "1556396", "photo_flickr_id": "73582243", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43358", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it turned the sky completely gray .", "storylet_id": "216792"}], [{"original_text": "The fire lasted for many hours.", "album_id": "1556396", "photo_flickr_id": "72418122", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43358", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fire lasted for many hours .", "storylet_id": "216793"}], [{"original_text": "I went to sleep when the fire was still burning my town. ", "album_id": "1556396", "photo_flickr_id": "73582241", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43358", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i went to sleep when the fire was still burning my town .", "storylet_id": "216794"}], [{"original_text": "A fire broke out in the distance.", "album_id": "1556396", "photo_flickr_id": "72418122", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "43359", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a fire broke out in the distance .", "storylet_id": "216795"}], [{"original_text": "A man living near by saw this and called the fire department.", "album_id": "1556396", "photo_flickr_id": "73582241", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "43359", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a man living near by saw this and called the fire department .", "storylet_id": "216796"}], [{"original_text": "The fire was starting to die down after a couple of minutes.", "album_id": "1556396", "photo_flickr_id": "73582242", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "43359", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fire was starting to die down after a couple of minutes .", "storylet_id": "216797"}], [{"original_text": "It was all over the news and media.", "album_id": "1556396", "photo_flickr_id": "72418126", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "43359", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was all over the news and media .", "storylet_id": "216798"}], [{"original_text": "After the fire was put out, the building was already ruined.", "album_id": "1556396", "photo_flickr_id": "72824291", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "43359", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the fire was put out , the building was already ruined .", "storylet_id": "216799"}], [{"original_text": "Went to a concert with friends.", "album_id": "1567926", "photo_flickr_id": "73003488", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "43360", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went to a concert with friends .", "storylet_id": "216800"}], [{"original_text": "Got to go backstage and the view from there was really cool.", "album_id": "1567926", "photo_flickr_id": "73003665", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "43360", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "got to go backstage and the view from there was really cool .", "storylet_id": "216801"}], [{"original_text": "As you can tell we were having a really good time.", "album_id": "1567926", "photo_flickr_id": "73003755", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "43360", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as you can tell we were having a really good time .", "storylet_id": "216802"}], [{"original_text": "The excitement is evident on my face.", "album_id": "1567926", "photo_flickr_id": "73003783", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "43360", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the excitement is evident on my face .", "storylet_id": "216803"}], [{"original_text": "The band even did an encore with awesome smokey light features. ", "album_id": "1567926", "photo_flickr_id": "73003832", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "43360", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the band even did an encore with awesome smokey light features .", "storylet_id": "216804"}], [{"original_text": "We got to go backstage at a concert.", "album_id": "1567926", "photo_flickr_id": "73003628", "setting": "first-2-pick-and-tell", "worker_id": "SDRPBG199TQ2MS6", "story_id": "43361", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got to go backstage at a concert .", "storylet_id": "216805"}], [{"original_text": "We took a ton of awesome photos to prove we were there. ", "album_id": "1567926", "photo_flickr_id": "73003755", "setting": "first-2-pick-and-tell", "worker_id": "SDRPBG199TQ2MS6", "story_id": "43361", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a ton of awesome photos to prove we were there .", "storylet_id": "216806"}], [{"original_text": "The show was wonderful.", "album_id": "1567926", "photo_flickr_id": "73003686", "setting": "first-2-pick-and-tell", "worker_id": "SDRPBG199TQ2MS6", "story_id": "43361", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the show was wonderful .", "storylet_id": "216807"}], [{"original_text": "They played all of our favorite songs.", "album_id": "1567926", "photo_flickr_id": "73003832", "setting": "first-2-pick-and-tell", "worker_id": "SDRPBG199TQ2MS6", "story_id": "43361", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they played all of our favorite songs .", "storylet_id": "216808"}], [{"original_text": "It was the best concert I've ever been to!", "album_id": "1567926", "photo_flickr_id": "73003867", "setting": "first-2-pick-and-tell", "worker_id": "SDRPBG199TQ2MS6", "story_id": "43361", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was the best concert i 've ever been to !", "storylet_id": "216809"}], [{"original_text": "Last night I attended a concert.", "album_id": "1567926", "photo_flickr_id": "73003488", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43362", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night i attended a concert .", "storylet_id": "216810"}], [{"original_text": "It was really cool.", "album_id": "1567926", "photo_flickr_id": "73003665", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43362", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was really cool .", "storylet_id": "216811"}], [{"original_text": "Everybody showed much love. ", "album_id": "1567926", "photo_flickr_id": "73003755", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43362", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everybody showed much love .", "storylet_id": "216812"}], [{"original_text": "They really enjoyed the concert and gave their thumbs up. ", "album_id": "1567926", "photo_flickr_id": "73003783", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43362", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they really enjoyed the concert and gave their thumbs up .", "storylet_id": "216813"}], [{"original_text": "The lighting changed colors adding to the effect. ", "album_id": "1567926", "photo_flickr_id": "73003832", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43362", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lighting changed colors adding to the effect .", "storylet_id": "216814"}], [{"original_text": "The concert last weekend was amazing.", "album_id": "1567926", "photo_flickr_id": "73003488", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43363", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the concert last weekend was amazing .", "storylet_id": "216815"}], [{"original_text": "There were so many bands there.", "album_id": "1567926", "photo_flickr_id": "73003665", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43363", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many bands there .", "storylet_id": "216816"}], [{"original_text": "All of my friends had a great time.", "album_id": "1567926", "photo_flickr_id": "73003755", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43363", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of my friends had a great time .", "storylet_id": "216817"}], [{"original_text": "We really enjoyed the music that was playing.", "album_id": "1567926", "photo_flickr_id": "73003783", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43363", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we really enjoyed the music that was playing .", "storylet_id": "216818"}], [{"original_text": "After a while it got too dark so we decided to head back home.", "album_id": "1567926", "photo_flickr_id": "73003832", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43363", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a while it got too dark so we decided to head back home .", "storylet_id": "216819"}], [{"original_text": "The concert begins.", "album_id": "1567926", "photo_flickr_id": "73003488", "setting": "last-3-pick-old-and-tell", "worker_id": "11GSSOUSCDKR9YB", "story_id": "43364", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the concert begins .", "storylet_id": "216820"}], [{"original_text": "The band takes the stage.", "album_id": "1567926", "photo_flickr_id": "73003665", "setting": "last-3-pick-old-and-tell", "worker_id": "11GSSOUSCDKR9YB", "story_id": "43364", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the band takes the stage .", "storylet_id": "216821"}], [{"original_text": "They are totally psyched.", "album_id": "1567926", "photo_flickr_id": "73003755", "setting": "last-3-pick-old-and-tell", "worker_id": "11GSSOUSCDKR9YB", "story_id": "43364", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they are totally psyched .", "storylet_id": "216822"}], [{"original_text": "It is gonna be awesome.", "album_id": "1567926", "photo_flickr_id": "73003783", "setting": "last-3-pick-old-and-tell", "worker_id": "11GSSOUSCDKR9YB", "story_id": "43364", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is gon na be awesome .", "storylet_id": "216823"}], [{"original_text": "Everyone has a great time.", "album_id": "1567926", "photo_flickr_id": "73003832", "setting": "last-3-pick-old-and-tell", "worker_id": "11GSSOUSCDKR9YB", "story_id": "43364", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone has a great time .", "storylet_id": "216824"}], [{"original_text": "The photographers from the office all got together for a little get together after work.", "album_id": "1592772", "photo_flickr_id": "74166008", "setting": "first-2-pick-and-tell", "worker_id": "1U8F4XZON863FAT", "story_id": "43365", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the photographers from the office all got together for a little get together after work .", "storylet_id": "216825"}], [{"original_text": "We had some drinks, and had some fun.", "album_id": "1592772", "photo_flickr_id": "74133872", "setting": "first-2-pick-and-tell", "worker_id": "1U8F4XZON863FAT", "story_id": "43365", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had some drinks , and had some fun .", "storylet_id": "216826"}], [{"original_text": "We played some drinking games and had a blast!", "album_id": "1592772", "photo_flickr_id": "74142787", "setting": "first-2-pick-and-tell", "worker_id": "1U8F4XZON863FAT", "story_id": "43365", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we played some drinking games and had a blast !", "storylet_id": "216827"}], [{"original_text": "We dared Tim to but a bow on his head and post a picture on Facebook.", "album_id": "1592772", "photo_flickr_id": "74157616", "setting": "first-2-pick-and-tell", "worker_id": "1U8F4XZON863FAT", "story_id": "43365", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we dared [male] to but a bow on his head and post a picture on organization .", "storylet_id": "216828"}], [{"original_text": "Tina had too much to drink and had a nap on the chair.", "album_id": "1592772", "photo_flickr_id": "74176153", "setting": "first-2-pick-and-tell", "worker_id": "1U8F4XZON863FAT", "story_id": "43365", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] had too much to drink and had a nap on the chair .", "storylet_id": "216829"}], [{"original_text": "The backroom was reserved for us. We had already been drinking before we got there.", "album_id": "1592772", "photo_flickr_id": "74183457", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43366", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the backroom was reserved for us . we had already been drinking before we got there .", "storylet_id": "216830"}], [{"original_text": "As you can see, some of us had more to drink than others. ", "album_id": "1592772", "photo_flickr_id": "74157616", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43366", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as you can see , some of us had more to drink than others .", "storylet_id": "216831"}], [{"original_text": "Not exactly sure what he was doing with vaseline at the party.", "album_id": "1592772", "photo_flickr_id": "74143895", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43366", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not exactly sure what he was doing with vaseline at the party .", "storylet_id": "216832"}], [{"original_text": "OMG! Did he do what we think he did...hahaha.", "album_id": "1592772", "photo_flickr_id": "74142787", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43366", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "omg ! did he do what we think he did ... hahaha .", "storylet_id": "216833"}], [{"original_text": "She was the first one to pass out. Time to paint her face..or not. I'm not telling! :)", "album_id": "1592772", "photo_flickr_id": "74176153", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43366", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was the first one to pass out . time to paint her face..or not . i 'm not telling ! : )", "storylet_id": "216834"}], [{"original_text": "I had a crazy party at my house last weekend.", "album_id": "1592772", "photo_flickr_id": "74166008", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43367", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a crazy party at my house last weekend .", "storylet_id": "216835"}], [{"original_text": "I invited all my friends and I had a full bar.", "album_id": "1592772", "photo_flickr_id": "74133872", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43367", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i invited all my friends and i had a full bar .", "storylet_id": "216836"}], [{"original_text": "Some people brought some interesting items.", "album_id": "1592772", "photo_flickr_id": "74142787", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43367", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people brought some interesting items .", "storylet_id": "216837"}], [{"original_text": "We had a lot to drink throughout the night.", "album_id": "1592772", "photo_flickr_id": "74157616", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43367", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a lot to drink throughout the night .", "storylet_id": "216838"}], [{"original_text": "Some people fell asleep.", "album_id": "1592772", "photo_flickr_id": "74176153", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43367", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people fell asleep .", "storylet_id": "216839"}], [{"original_text": "Oh yeah, exclusive, just for us.", "album_id": "1592772", "photo_flickr_id": "74183457", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43368", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "oh yeah , exclusive , just for us .", "storylet_id": "216840"}], [{"original_text": "I don't think that's how you where a tie, Jeff.", "album_id": "1592772", "photo_flickr_id": "74157616", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43368", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i do n't think that 's how you where a tie , [male] .", "storylet_id": "216841"}], [{"original_text": "What are planning to do with that, Craig?", "album_id": "1592772", "photo_flickr_id": "74143895", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43368", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what are planning to do with that , [male] ?", "storylet_id": "216842"}], [{"original_text": "Uh, Craig? What are going to be doing?", "album_id": "1592772", "photo_flickr_id": "74142787", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43368", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "uh , [male] ? what are going to be doing ?", "storylet_id": "216843"}], [{"original_text": "Craig, are you cheating on your Unicorn?", "album_id": "1592772", "photo_flickr_id": "74176153", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43368", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] , are you cheating on your unicorn ?", "storylet_id": "216844"}], [{"original_text": "Roger's dad reserved a restaurant just to celebrate his 22nd birthday.", "album_id": "1592772", "photo_flickr_id": "74183457", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43369", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] 's dad reserved a restaurant just to celebrate his 22nd birthday .", "storylet_id": "216845"}], [{"original_text": "Roger got too drunk and tied a lanyard around his head.", "album_id": "1592772", "photo_flickr_id": "74157616", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43369", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] got too drunk and tied a lanyard around his head .", "storylet_id": "216846"}], [{"original_text": "His friend Bucky brought a tub of tobacco to share.", "album_id": "1592772", "photo_flickr_id": "74143895", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43369", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his friend bucky brought a tub of tobacco to share .", "storylet_id": "216847"}], [{"original_text": "A stuffed unicorn made the party even better.", "album_id": "1592772", "photo_flickr_id": "74142787", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43369", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a stuffed unicorn made the party even better .", "storylet_id": "216848"}], [{"original_text": "Khristian tried to comfort Sophie who was too drunk to sit up.", "album_id": "1592772", "photo_flickr_id": "74176153", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43369", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "khristian tried to comfort [female] who was too drunk to sit up .", "storylet_id": "216849"}], [{"original_text": "Yesterday was Billy's first day at the beach.", "album_id": "72057594047318559", "photo_flickr_id": "86141569", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43370", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday was [male] 's first day at the beach .", "storylet_id": "216850"}], [{"original_text": "He ran in and out of the water.", "album_id": "72057594047318559", "photo_flickr_id": "86141876", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43370", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he ran in and out of the water .", "storylet_id": "216851"}], [{"original_text": "He even layed on the sand to see what it would look like from a crabs eye view.", "album_id": "72057594047318559", "photo_flickr_id": "86141289", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43370", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he even layed on the sand to see what it would look like from a crabs eye view .", "storylet_id": "216852"}], [{"original_text": "Billy built sand castles with motes.", "album_id": "72057594047318559", "photo_flickr_id": "86141450", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43370", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] built sand castles with motes .", "storylet_id": "216853"}], [{"original_text": "Billy had a wonderful time at the shore and wants to go back again.", "album_id": "72057594047318559", "photo_flickr_id": "86141637", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43370", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] had a wonderful time at the shore and wants to go back again .", "storylet_id": "216854"}], [{"original_text": "I took my son to the beach today.", "album_id": "72057594047318559", "photo_flickr_id": "86141569", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43371", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took my son to the beach today .", "storylet_id": "216855"}], [{"original_text": "He scampered in the water for awhile.", "album_id": "72057594047318559", "photo_flickr_id": "86141960", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43371", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he scampered in the water for awhile .", "storylet_id": "216856"}], [{"original_text": "The bigger waves scared him.", "album_id": "72057594047318559", "photo_flickr_id": "86141722", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43371", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bigger waves scared him .", "storylet_id": "216857"}], [{"original_text": "He decided to get out of the water and discovered different textures of the sand.", "album_id": "72057594047318559", "photo_flickr_id": "86141289", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43371", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he decided to get out of the water and discovered different textures of the sand .", "storylet_id": "216858"}], [{"original_text": "One thing led to another and boys will be boys so he started building things out of sand.", "album_id": "72057594047318559", "photo_flickr_id": "86141450", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43371", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one thing led to another and boys will be boys so he started building things out of sand .", "storylet_id": "216859"}], [{"original_text": "Little boy having a wonderful day at the beach", "album_id": "72057594047318559", "photo_flickr_id": "86141569", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "43372", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "little boy having a wonderful day at the beach", "storylet_id": "216860"}], [{"original_text": "He goes in the water ", "album_id": "72057594047318559", "photo_flickr_id": "86141960", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "43372", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he goes in the water", "storylet_id": "216861"}], [{"original_text": "and starts to run way from the waves", "album_id": "72057594047318559", "photo_flickr_id": "86141722", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "43372", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and starts to run way from the waves", "storylet_id": "216862"}], [{"original_text": "then lays down on the sand and look at the ocean", "album_id": "72057594047318559", "photo_flickr_id": "86141289", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "43372", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then lays down on the sand and look at the ocean", "storylet_id": "216863"}], [{"original_text": "Then build sandcastles before he goes", "album_id": "72057594047318559", "photo_flickr_id": "86141450", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "43372", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then build sandcastles before he goes", "storylet_id": "216864"}], [{"original_text": "Benny's first time at the beach. ", "album_id": "72057594047318559", "photo_flickr_id": "86141569", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43373", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] 's first time at the beach .", "storylet_id": "216865"}], [{"original_text": "He tests out the water.", "album_id": "72057594047318559", "photo_flickr_id": "86141960", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43373", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he tests out the water .", "storylet_id": "216866"}], [{"original_text": "Its way too cold and scary for him.", "album_id": "72057594047318559", "photo_flickr_id": "86141722", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43373", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "its way too cold and scary for him .", "storylet_id": "216867"}], [{"original_text": "He decides to just stare at it.", "album_id": "72057594047318559", "photo_flickr_id": "86141289", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43373", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he decides to just stare at it .", "storylet_id": "216868"}], [{"original_text": "Then, he plays in the sand.", "album_id": "72057594047318559", "photo_flickr_id": "86141450", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43373", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then , he plays in the sand .", "storylet_id": "216869"}], [{"original_text": "This little boy spent his afternoon on the beach.", "album_id": "72057594047318559", "photo_flickr_id": "86141569", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "43374", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this little boy spent his afternoon on the beach .", "storylet_id": "216870"}], [{"original_text": "The waves were calm that day and it was a cool day.", "album_id": "72057594047318559", "photo_flickr_id": "86141876", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "43374", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the waves were calm that day and it was a cool day .", "storylet_id": "216871"}], [{"original_text": "he spent alot of time just watching the waves.", "album_id": "72057594047318559", "photo_flickr_id": "86141289", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "43374", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he spent alot of time just watching the waves .", "storylet_id": "216872"}], [{"original_text": "He even decided to build a sand castle.", "album_id": "72057594047318559", "photo_flickr_id": "86141450", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "43374", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he even decided to build a sand castle .", "storylet_id": "216873"}], [{"original_text": "Unfortunately the waves knocked it over.", "album_id": "72057594047318559", "photo_flickr_id": "86141637", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "43374", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "unfortunately the waves knocked it over .", "storylet_id": "216874"}], [{"original_text": "The park's center resembled a stately house.", "album_id": "72057594073873411", "photo_flickr_id": "68832504", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43375", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the park 's center resembled a stately house .", "storylet_id": "216875"}], [{"original_text": "There were stone steps on pathways.", "album_id": "72057594073873411", "photo_flickr_id": "68831388", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43375", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were stone steps on pathways .", "storylet_id": "216876"}], [{"original_text": "Many acres of green space was present.", "album_id": "72057594073873411", "photo_flickr_id": "68831509", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43375", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many acres of green space was present .", "storylet_id": "216877"}], [{"original_text": "Different trails existed for different interests.", "album_id": "72057594073873411", "photo_flickr_id": "68831699", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43375", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "different trails existed for different interests .", "storylet_id": "216878"}], [{"original_text": "A lake stood in the middle of wild preserves.", "album_id": "72057594073873411", "photo_flickr_id": "66932414", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43375", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a lake stood in the middle of wild preserves .", "storylet_id": "216879"}], [{"original_text": "Mary has decided to change her morning walk. So she leaves her little mansion and heads east.", "album_id": "72057594073873411", "photo_flickr_id": "68832504", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43376", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] has decided to change her morning walk . so she leaves her little mansion and heads east .", "storylet_id": "216880"}], [{"original_text": "She follows the well defined trail to the old church and church tower.", "album_id": "72057594073873411", "photo_flickr_id": "68831388", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43376", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she follows the well defined trail to the old church and church tower .", "storylet_id": "216881"}], [{"original_text": "The exterior of church is beautiful with foliage.", "album_id": "72057594073873411", "photo_flickr_id": "68832413", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43376", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the exterior of church is beautiful with foliage .", "storylet_id": "216882"}], [{"original_text": "The entrance to the tower is impressive with its substantial architecture.", "album_id": "72057594073873411", "photo_flickr_id": "68832364", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43376", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the entrance to the tower is impressive with its substantial architecture .", "storylet_id": "216883"}], [{"original_text": "She gets permission to go in and one of the people inside snaps her picture as she ascends to the top. So, in addition to her normal walking, she did some stair climbing also.", "album_id": "72057594073873411", "photo_flickr_id": "68832133", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43376", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she gets permission to go in and one of the people inside snaps her picture as she ascends to the top . so , in addition to her normal walking , she did some stair climbing also .", "storylet_id": "216884"}], [{"original_text": "We toured Charlotte, North Carolina on our recent vacation.", "album_id": "72057594073873411", "photo_flickr_id": "68832504", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43377", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we toured location , location location on our recent vacation .", "storylet_id": "216885"}], [{"original_text": "The scenery in the numerous parks was so calm and relaxing.", "album_id": "72057594073873411", "photo_flickr_id": "68831388", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43377", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the scenery in the numerous parks was so calm and relaxing .", "storylet_id": "216886"}], [{"original_text": "Flowers were everywhere, even outside their churches.", "album_id": "72057594073873411", "photo_flickr_id": "68832413", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43377", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "flowers were everywhere , even outside their churches .", "storylet_id": "216887"}], [{"original_text": "The old architecture was fascinating to me.", "album_id": "72057594073873411", "photo_flickr_id": "68832364", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43377", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the old architecture was fascinating to me .", "storylet_id": "216888"}], [{"original_text": "But I wasn't in shape to climb the stairs to the top of the clock tower! I was ready to go home after that.", "album_id": "72057594073873411", "photo_flickr_id": "68832133", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43377", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but i was n't in shape to climb the stairs to the top of the clock tower ! i was ready to go home after that .", "storylet_id": "216889"}], [{"original_text": "I approached the house in complete silence.", "album_id": "72057594073873411", "photo_flickr_id": "68832504", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43378", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i approached the house in complete silence .", "storylet_id": "216890"}], [{"original_text": "I found stairs that led to a secret patio.", "album_id": "72057594073873411", "photo_flickr_id": "68831388", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43378", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i found stairs that led to a secret patio .", "storylet_id": "216891"}], [{"original_text": "Behind the trees lied a nearby church.", "album_id": "72057594073873411", "photo_flickr_id": "68832413", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43378", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "behind the trees lied a nearby church .", "storylet_id": "216892"}], [{"original_text": "The architecture was quite impressive.", "album_id": "72057594073873411", "photo_flickr_id": "68832364", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43378", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the architecture was quite impressive .", "storylet_id": "216893"}], [{"original_text": "Sandy ascended the stairs to see what was up there.", "album_id": "72057594073873411", "photo_flickr_id": "68832133", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43378", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] ascended the stairs to see what was up there .", "storylet_id": "216894"}], [{"original_text": "The family home was a colonial style. ", "album_id": "72057594073873411", "photo_flickr_id": "68832504", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43379", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family home was a colonial style .", "storylet_id": "216895"}], [{"original_text": "It had long pathways into the forest. ", "album_id": "72057594073873411", "photo_flickr_id": "68831388", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43379", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it had long pathways into the forest .", "storylet_id": "216896"}], [{"original_text": "They could see fields were great battles had once been fought. ", "album_id": "72057594073873411", "photo_flickr_id": "68831509", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43379", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they could see fields were great battles had once been fought .", "storylet_id": "216897"}], [{"original_text": "Often, tourists would come by. ", "album_id": "72057594073873411", "photo_flickr_id": "68831699", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43379", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "often , tourists would come by .", "storylet_id": "216898"}], [{"original_text": "The views were magnificent. ", "album_id": "72057594073873411", "photo_flickr_id": "66932414", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43379", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the views were magnificent .", "storylet_id": "216899"}], [{"original_text": "Everyone showed up to work in costume today.", "album_id": "1261627", "photo_flickr_id": "58281861", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43380", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone showed up to work in costume today .", "storylet_id": "216900"}], [{"original_text": "There were some great costumes.", "album_id": "1261627", "photo_flickr_id": "58282148", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43380", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were some great costumes .", "storylet_id": "216901"}], [{"original_text": "I had a lot of fun taking pictures of everybody.", "album_id": "1261627", "photo_flickr_id": "58282423", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43380", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a lot of fun taking pictures of everybody .", "storylet_id": "216902"}], [{"original_text": "Outside we played Halloween games.", "album_id": "1261627", "photo_flickr_id": "58286098", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43380", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "outside we played halloween games .", "storylet_id": "216903"}], [{"original_text": "It was so much fun!", "album_id": "1261627", "photo_flickr_id": "58286842", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43380", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was so much fun !", "storylet_id": "216904"}], [{"original_text": "Adam wore a dog costume to the office party. ", "album_id": "1261627", "photo_flickr_id": "58282148", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43381", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] wore a dog costume to the office party .", "storylet_id": "216905"}], [{"original_text": "David wore a bright red cape proclaiming himself to be super techie. ", "album_id": "1261627", "photo_flickr_id": "58282745", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43381", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] wore a bright red cape proclaiming himself to be super techie .", "storylet_id": "216906"}], [{"original_text": "Suzanne dressed in black and said she was a fortune teller. ", "album_id": "1261627", "photo_flickr_id": "58283066", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43381", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] dressed in black and said she was a fortune teller .", "storylet_id": "216907"}], [{"original_text": "Wayne wore a mow hawk and sunglasses. ", "album_id": "1261627", "photo_flickr_id": "58304529", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43381", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] wore a mow hawk and sunglasses .", "storylet_id": "216908"}], [{"original_text": "Michael dressed as a girl which didn't surprise anyone. ", "album_id": "1261627", "photo_flickr_id": "58304694", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43381", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] dressed as a girl which did n't surprise anyone .", "storylet_id": "216909"}], [{"original_text": "Trick or Treat! We're having a Halloween party at work. I'm The Joker.", "album_id": "1261627", "photo_flickr_id": "58281861", "setting": "last-3-pick-old-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "43382", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "trick or treat ! we 're having a halloween party at work . i 'm the joker .", "storylet_id": "216910"}], [{"original_text": "Jeff came dressed as Pichu.", "album_id": "1261627", "photo_flickr_id": "58282148", "setting": "last-3-pick-old-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "43382", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] came dressed as pichu .", "storylet_id": "216911"}], [{"original_text": "Martha was business formal Catwoman.", "album_id": "1261627", "photo_flickr_id": "58282423", "setting": "last-3-pick-old-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "43382", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] was business formal catwoman .", "storylet_id": "216912"}], [{"original_text": "We played catch the waterballoon outside because this is California so it wasn't cold on Halloween.", "album_id": "1261627", "photo_flickr_id": "58286098", "setting": "last-3-pick-old-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "43382", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we played catch the waterballoon outside because this is location so it was n't cold on halloween .", "storylet_id": "216913"}], [{"original_text": "Ivan's niece was there as Alice in Wonderland, and the party got her seal of approval.", "album_id": "1261627", "photo_flickr_id": "58286842", "setting": "last-3-pick-old-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "43382", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] 's niece was there as [female] in wonderland , and the party got her seal of approval .", "storylet_id": "216914"}], [{"original_text": "The office Halloween party had some hot guys including this one as a vampire.", "album_id": "1261627", "photo_flickr_id": "58281861", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "43383", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the office halloween party had some hot guys including this one as a vampire .", "storylet_id": "216915"}], [{"original_text": "This one as a cute monster was very hot.", "album_id": "1261627", "photo_flickr_id": "58282148", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "43383", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one as a cute monster was very hot .", "storylet_id": "216916"}], [{"original_text": "Then hears a woman dressed up as Catwoman.", "album_id": "1261627", "photo_flickr_id": "58282423", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "43383", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then hears a woman dressed up as catwoman .", "storylet_id": "216917"}], [{"original_text": "They took their fun outside.", "album_id": "1261627", "photo_flickr_id": "58286098", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "43383", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they took their fun outside .", "storylet_id": "216918"}], [{"original_text": "The youngest worker was there as well!", "album_id": "1261627", "photo_flickr_id": "58286842", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "43383", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the youngest worker was there as well !", "storylet_id": "216919"}], [{"original_text": "The man in the costume had a great sense of humor.", "album_id": "1261627", "photo_flickr_id": "58282148", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43384", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man in the costume had a great sense of humor .", "storylet_id": "216920"}], [{"original_text": "The office party was so much fun.", "album_id": "1261627", "photo_flickr_id": "58282745", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43384", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the office party was so much fun .", "storylet_id": "216921"}], [{"original_text": "The secretary had a crystal ball.", "album_id": "1261627", "photo_flickr_id": "58283066", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43384", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the secretary had a crystal ball .", "storylet_id": "216922"}], [{"original_text": "She could have bever predicted this though.", "album_id": "1261627", "photo_flickr_id": "58304529", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43384", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she could have bever predicted this though .", "storylet_id": "216923"}], [{"original_text": "They won award for cutest couple.", "album_id": "1261627", "photo_flickr_id": "58304694", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43384", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they won award for cutest couple .", "storylet_id": "216924"}], [{"original_text": "Our jam night had quite a variety of talent and instruments. We had a mandolin player.", "album_id": "1350286", "photo_flickr_id": "62511164", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43385", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our jam night had quite a variety of talent and instruments . we had a mandolin player .", "storylet_id": "216925"}], [{"original_text": "No blue grass jam is complete without a banjo.", "album_id": "1350286", "photo_flickr_id": "62512255", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43385", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "no blue grass jam is complete without a banjo .", "storylet_id": "216926"}], [{"original_text": "Of course the steel guitar is a must. ", "album_id": "1350286", "photo_flickr_id": "62512899", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43385", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course the steel guitar is a must .", "storylet_id": "216927"}], [{"original_text": "Then you add an upright bass and a fiddle player.", "album_id": "1350286", "photo_flickr_id": "62513437", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43385", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then you add an upright bass and a fiddle player .", "storylet_id": "216928"}], [{"original_text": "To complete the ensemble we have our guitar.", "album_id": "1350286", "photo_flickr_id": "62512257", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43385", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to complete the ensemble we have our guitar .", "storylet_id": "216929"}], [{"original_text": "There were a lot of people at the concert.", "album_id": "1350286", "photo_flickr_id": "62505318", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43386", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of people at the concert .", "storylet_id": "216930"}], [{"original_text": "I had practiced playing my banjo for months.", "album_id": "1350286", "photo_flickr_id": "62508940", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43386", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had practiced playing my banjo for months .", "storylet_id": "216931"}], [{"original_text": "We were very nervous.", "album_id": "1350286", "photo_flickr_id": "62508941", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43386", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were very nervous .", "storylet_id": "216932"}], [{"original_text": "We were determined to finish.", "album_id": "1350286", "photo_flickr_id": "62511163", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43386", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were determined to finish .", "storylet_id": "216933"}], [{"original_text": "We played very well.", "album_id": "1350286", "photo_flickr_id": "62511164", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43386", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we played very well .", "storylet_id": "216934"}], [{"original_text": "We heard that a local group would be performing that night at the restaurant.", "album_id": "1350286", "photo_flickr_id": "62511164", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43387", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we heard that a local group would be performing that night at the restaurant .", "storylet_id": "216935"}], [{"original_text": "I didn't recognize anyone in the act, but I did like the music as they began.", "album_id": "1350286", "photo_flickr_id": "62512255", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43387", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i did n't recognize anyone in the act , but i did like the music as they began .", "storylet_id": "216936"}], [{"original_text": "The lead was very gifted on various stringed instruments.", "album_id": "1350286", "photo_flickr_id": "62512899", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43387", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lead was very gifted on various stringed instruments .", "storylet_id": "216937"}], [{"original_text": "Everyone in the group played a different stringed instrument in all the songs.", "album_id": "1350286", "photo_flickr_id": "62513437", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43387", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone in the group played a different stringed instrument in all the songs .", "storylet_id": "216938"}], [{"original_text": "They really got into the performance and I was extremely impressed that night.", "album_id": "1350286", "photo_flickr_id": "62512257", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43387", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they really got into the performance and i was extremely impressed that night .", "storylet_id": "216939"}], [{"original_text": "Playing guitar requires concentration. ", "album_id": "1350286", "photo_flickr_id": "62511164", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43388", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "playing guitar requires concentration .", "storylet_id": "216940"}], [{"original_text": "The banjo is usually played with faster beats.", "album_id": "1350286", "photo_flickr_id": "62512255", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43388", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the banjo is usually played with faster beats .", "storylet_id": "216941"}], [{"original_text": "String instruments all compliment each other.", "album_id": "1350286", "photo_flickr_id": "62512899", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43388", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "string instruments all compliment each other .", "storylet_id": "216942"}], [{"original_text": "The band is really tight with each other and keeping it fun.", "album_id": "1350286", "photo_flickr_id": "62513437", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43388", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the band is really tight with each other and keeping it fun .", "storylet_id": "216943"}], [{"original_text": "Bass and fiddle, what a combo!", "album_id": "1350286", "photo_flickr_id": "62512257", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43388", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "bass and fiddle , what a combo !", "storylet_id": "216944"}], [{"original_text": "A bar in a small town was hosting a folk band.", "album_id": "1350286", "photo_flickr_id": "62511164", "setting": "last-3-pick-old-and-tell", "worker_id": "E1P725JC9ENXC6H", "story_id": "43389", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a bar in a small town was hosting a folk band .", "storylet_id": "216945"}], [{"original_text": "The performers set up on stage and tuned their instruments.", "album_id": "1350286", "photo_flickr_id": "62512255", "setting": "last-3-pick-old-and-tell", "worker_id": "E1P725JC9ENXC6H", "story_id": "43389", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the performers set up on stage and tuned their instruments .", "storylet_id": "216946"}], [{"original_text": "There was a banjo, guitar, bass, and fiddle player.", "album_id": "1350286", "photo_flickr_id": "62512899", "setting": "last-3-pick-old-and-tell", "worker_id": "E1P725JC9ENXC6H", "story_id": "43389", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a banjo , guitar , bass , and fiddle player .", "storylet_id": "216947"}], [{"original_text": "The country tunes were pleasant and homey.", "album_id": "1350286", "photo_flickr_id": "62513437", "setting": "last-3-pick-old-and-tell", "worker_id": "E1P725JC9ENXC6H", "story_id": "43389", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the country tunes were pleasant and homey .", "storylet_id": "216948"}], [{"original_text": "The fiddle player really got into the music. ", "album_id": "1350286", "photo_flickr_id": "62512257", "setting": "last-3-pick-old-and-tell", "worker_id": "E1P725JC9ENXC6H", "story_id": "43389", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fiddle player really got into the music .", "storylet_id": "216949"}], [{"original_text": "They decided to go to the art museum.", "album_id": "1410139", "photo_flickr_id": "65349090", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43390", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they decided to go to the art museum .", "storylet_id": "216950"}], [{"original_text": "They enjoyed this type of art. It was very unique.", "album_id": "1410139", "photo_flickr_id": "65349914", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43390", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they enjoyed this type of art . it was very unique .", "storylet_id": "216951"}], [{"original_text": "Many people came out that day to enjoy the exhibits.", "album_id": "1410139", "photo_flickr_id": "65350177", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43390", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many people came out that day to enjoy the exhibits .", "storylet_id": "216952"}], [{"original_text": "There were many different genres that were covered.", "album_id": "1410139", "photo_flickr_id": "65350961", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43390", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many different genres that were covered .", "storylet_id": "216953"}], [{"original_text": "This was the last painting they saw. It was beautiful but kind of creepy. ", "album_id": "1410139", "photo_flickr_id": "65351062", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43390", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the last painting they saw . it was beautiful but kind of creepy .", "storylet_id": "216954"}], [{"original_text": "Ted on the statue outside the exhibit. He is so weird.", "album_id": "1410139", "photo_flickr_id": "65349143", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43391", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] on the statue outside the exhibit . he is so weird .", "storylet_id": "216955"}], [{"original_text": "This is a strange exhibit. Skulls with I think head dress on.", "album_id": "1410139", "photo_flickr_id": "65350028", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43391", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a strange exhibit . skulls with i think head dress on .", "storylet_id": "216956"}], [{"original_text": "A what!! Oh this tribe is trippy.", "album_id": "1410139", "photo_flickr_id": "65350296", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43391", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a what ! ! oh this tribe is trippy .", "storylet_id": "216957"}], [{"original_text": "Naked women in with this exhibit. Not sure how this fits.", "album_id": "1410139", "photo_flickr_id": "65350775", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43391", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "naked women in with this exhibit . not sure how this fits .", "storylet_id": "216958"}], [{"original_text": "Creepy kids in pilgram clothes.", "album_id": "1410139", "photo_flickr_id": "65351062", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43391", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "creepy kids in pilgram clothes .", "storylet_id": "216959"}], [{"original_text": "We arrived at the museum and, of course, Tim couldn't help himself and immediately jumped on the statue.", "album_id": "1410139", "photo_flickr_id": "65349143", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43392", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at the museum and , of course , [male] could n't help himself and immediately jumped on the statue .", "storylet_id": "216960"}], [{"original_text": "As we entered, we suddenly realized where we were.", "album_id": "1410139", "photo_flickr_id": "65350028", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43392", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as we entered , we suddenly realized where we were .", "storylet_id": "216961"}], [{"original_text": "This was an odd place that had much history; albeit some weird.", "album_id": "1410139", "photo_flickr_id": "65350296", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43392", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was an odd place that had much history ; albeit some weird .", "storylet_id": "216962"}], [{"original_text": "And, some strange nudity from the past", "album_id": "1410139", "photo_flickr_id": "65350775", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43392", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , some strange nudity from the past", "storylet_id": "216963"}], [{"original_text": "That would be placed next to a weird family portrait. We had our fill and quickly exited.", "album_id": "1410139", "photo_flickr_id": "65351062", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43392", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that would be placed next to a weird family portrait . we had our fill and quickly exited .", "storylet_id": "216964"}], [{"original_text": "This is Steve visiting a museum while he is on a work related trip. ", "album_id": "1410139", "photo_flickr_id": "65349090", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43393", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is [male] visiting a museum while he is on a work related trip .", "storylet_id": "216965"}], [{"original_text": "The museum has a lot of unique things displayed. ", "album_id": "1410139", "photo_flickr_id": "65349914", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43393", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the museum has a lot of unique things displayed .", "storylet_id": "216966"}], [{"original_text": "The setting is normally dark and calm. ", "album_id": "1410139", "photo_flickr_id": "65350177", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43393", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the setting is normally dark and calm .", "storylet_id": "216967"}], [{"original_text": "These were made by a local artist to put on display. ", "album_id": "1410139", "photo_flickr_id": "65350961", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43393", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these were made by a local artist to put on display .", "storylet_id": "216968"}], [{"original_text": "This painting is worth thousands because of who it portrays. ", "album_id": "1410139", "photo_flickr_id": "65351062", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43393", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this painting is worth thousands because of who it portrays .", "storylet_id": "216969"}], [{"original_text": "My friends and I like to visit museums and ruin and laugh at the art. He's riding this ancient relic.", "album_id": "1410139", "photo_flickr_id": "65349143", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43394", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i like to visit museums and ruin and laugh at the art . he 's riding this ancient relic .", "storylet_id": "216970"}], [{"original_text": "My friend added some feathers to this skulls head, just to laugh.", "album_id": "1410139", "photo_flickr_id": "65350028", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43394", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend added some feathers to this skulls head , just to laugh .", "storylet_id": "216971"}], [{"original_text": "We found a piece of art that was titles penis cover, this made us laugh.", "album_id": "1410139", "photo_flickr_id": "65350296", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43394", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we found a piece of art that was titles penis cover , this made us laugh .", "storylet_id": "216972"}], [{"original_text": "We decided to splash this work of art with some water, I think it's an improvement.", "album_id": "1410139", "photo_flickr_id": "65350775", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43394", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we decided to splash this work of art with some water , i think it 's an improvement .", "storylet_id": "216973"}], [{"original_text": "We just thought this work looked funny with their silly outfits. I love visiting museums.", "album_id": "1410139", "photo_flickr_id": "65351062", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43394", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we just thought this work looked funny with their silly outfits . i love visiting museums .", "storylet_id": "216974"}], [{"original_text": "a girl went for a walk.", "album_id": "1719783", "photo_flickr_id": "80482912", "setting": "first-2-pick-and-tell", "worker_id": "FMNE1BK03RSI0QY", "story_id": "43395", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a girl went for a walk .", "storylet_id": "216975"}], [{"original_text": "she was happy to run across the eiffel tower.", "album_id": "1719783", "photo_flickr_id": "80483023", "setting": "first-2-pick-and-tell", "worker_id": "FMNE1BK03RSI0QY", "story_id": "43395", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was happy to run across the eiffel tower .", "storylet_id": "216976"}], [{"original_text": "it was big and beautiful.", "album_id": "1719783", "photo_flickr_id": "80791248", "setting": "first-2-pick-and-tell", "worker_id": "FMNE1BK03RSI0QY", "story_id": "43395", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was big and beautiful .", "storylet_id": "216977"}], [{"original_text": "a guy asked her if she wanted her picture taken.", "album_id": "1719783", "photo_flickr_id": "80870157", "setting": "first-2-pick-and-tell", "worker_id": "FMNE1BK03RSI0QY", "story_id": "43395", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a guy asked her if she wanted her picture taken .", "storylet_id": "216978"}], [{"original_text": "she was happy to have the souvenir. ", "album_id": "1719783", "photo_flickr_id": "80482959", "setting": "first-2-pick-and-tell", "worker_id": "FMNE1BK03RSI0QY", "story_id": "43395", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was happy to have the souvenir .", "storylet_id": "216979"}], [{"original_text": "They had a big day planned in Paris, with tons of excitement..", "album_id": "1719783", "photo_flickr_id": "80482959", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43396", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they had a big day planned in location , with tons of excitement..", "storylet_id": "216980"}], [{"original_text": "However, the rain set in and really ruined the day.", "album_id": "1719783", "photo_flickr_id": "80483023", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43396", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "however , the rain set in and really ruined the day .", "storylet_id": "216981"}], [{"original_text": "So, they rushed by the Eiffel Tower..", "album_id": "1719783", "photo_flickr_id": "80791248", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43396", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so , they rushed by the eiffel tower..", "storylet_id": "216982"}], [{"original_text": "Quickly grabbed some lunch at a diner..", "album_id": "1719783", "photo_flickr_id": "80791578", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43396", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "quickly grabbed some lunch at a diner..", "storylet_id": "216983"}], [{"original_text": "And went back to their hotel to wait out the weather.", "album_id": "1719783", "photo_flickr_id": "80870594", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43396", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and went back to their hotel to wait out the weather .", "storylet_id": "216984"}], [{"original_text": "The rain was no stop for their enjoyment.", "album_id": "1719783", "photo_flickr_id": "80482912", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43397", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the rain was no stop for their enjoyment .", "storylet_id": "216985"}], [{"original_text": "The smiles indicated the contentment in Paris.", "album_id": "1719783", "photo_flickr_id": "80483023", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43397", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the smiles indicated the contentment in location .", "storylet_id": "216986"}], [{"original_text": "Underneath the tower the people felt so very small.", "album_id": "1719783", "photo_flickr_id": "80791248", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43397", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "underneath the tower the people felt so very small .", "storylet_id": "216987"}], [{"original_text": "Another man was busy documenting images.", "album_id": "1719783", "photo_flickr_id": "80870157", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43397", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another man was busy documenting images .", "storylet_id": "216988"}], [{"original_text": "She enjoyed the tower so very much.", "album_id": "1719783", "photo_flickr_id": "80482959", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43397", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she enjoyed the tower so very much .", "storylet_id": "216989"}], [{"original_text": "The rain was really heavy on the streets.", "album_id": "1719783", "photo_flickr_id": "80482912", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43398", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the rain was really heavy on the streets .", "storylet_id": "216990"}], [{"original_text": "We tried our best to smile through the weather.", "album_id": "1719783", "photo_flickr_id": "80483023", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43398", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we tried our best to smile through the weather .", "storylet_id": "216991"}], [{"original_text": "There were not many people at the Eiffel Tower.", "album_id": "1719783", "photo_flickr_id": "80791248", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43398", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were not many people at the location location .", "storylet_id": "216992"}], [{"original_text": "We got to see a photographer on the streets.", "album_id": "1719783", "photo_flickr_id": "80870157", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43398", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got to see a photographer on the streets .", "storylet_id": "216993"}], [{"original_text": "Lastly, we took an overview of the Eiffel Tower on the bridge.", "album_id": "1719783", "photo_flickr_id": "80482959", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43398", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , we took an overview of the location location on the bridge .", "storylet_id": "216994"}], [{"original_text": "On a rainy day, someone spends their time visiting Paris' Eiffel Tower and surrounding attractions.", "album_id": "1719783", "photo_flickr_id": "80482912", "setting": "last-3-pick-old-and-tell", "worker_id": "QP0S9RBJF7WA61B", "story_id": "43399", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on a rainy day , someone spends their time visiting location ' location location and surrounding attractions .", "storylet_id": "216995"}], [{"original_text": "Despite the weather, the opportunity to see such things still creates happiness.", "album_id": "1719783", "photo_flickr_id": "80483023", "setting": "last-3-pick-old-and-tell", "worker_id": "QP0S9RBJF7WA61B", "story_id": "43399", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "despite the weather , the opportunity to see such things still creates happiness .", "storylet_id": "216996"}], [{"original_text": "Despite the rain, the base of the Eiffel Tower still has visitors.", "album_id": "1719783", "photo_flickr_id": "80791248", "setting": "last-3-pick-old-and-tell", "worker_id": "QP0S9RBJF7WA61B", "story_id": "43399", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "despite the rain , the base of the location location still has visitors .", "storylet_id": "216997"}], [{"original_text": "Nearby, a photographer takes pictures of the scenery.", "album_id": "1719783", "photo_flickr_id": "80870157", "setting": "last-3-pick-old-and-tell", "worker_id": "QP0S9RBJF7WA61B", "story_id": "43399", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "nearby , a photographer takes pictures of the scenery .", "storylet_id": "216998"}], [{"original_text": "Contrary to what the weather might imply, it's quite a happy and interesting day, for some.", "album_id": "1719783", "photo_flickr_id": "80482959", "setting": "last-3-pick-old-and-tell", "worker_id": "QP0S9RBJF7WA61B", "story_id": "43399", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "contrary to what the weather might imply , it 's quite a happy and interesting day , for some .", "storylet_id": "216999"}], [{"original_text": "This is me when we went camping last week.", "album_id": "72057594076000817", "photo_flickr_id": "108600698", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43400", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is me when we went camping last week .", "storylet_id": "217000"}], [{"original_text": "My husband came along too.", "album_id": "72057594076000817", "photo_flickr_id": "108588556", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43400", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my husband came along too .", "storylet_id": "217001"}], [{"original_text": "Later my family and friends arrived.", "album_id": "72057594076000817", "photo_flickr_id": "108588558", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43400", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "later my family and friends arrived .", "storylet_id": "217002"}], [{"original_text": "We went for a little hike.", "album_id": "72057594076000817", "photo_flickr_id": "108588559", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43400", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went for a little hike .", "storylet_id": "217003"}], [{"original_text": "When the sun went down, we sat around and sang campfire songs.", "album_id": "72057594076000817", "photo_flickr_id": "108571117", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43400", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the sun went down , we sat around and sang campfire songs .", "storylet_id": "217004"}], [{"original_text": "The club of hikers decided to take a two day hike up to the Sierra Nevada. ", "album_id": "72057594076000817", "photo_flickr_id": "108549502", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "43401", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the club of hikers decided to take a two day hike up to the location location .", "storylet_id": "217005"}], [{"original_text": "They checked their gear and their plan of action before taking off. ", "album_id": "72057594076000817", "photo_flickr_id": "108588557", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "43401", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they checked their gear and their plan of action before taking off .", "storylet_id": "217006"}], [{"original_text": "The club of hikers hiked along the path for 10 hours straight. ", "album_id": "72057594076000817", "photo_flickr_id": "108588559", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "43401", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the club of hikers hiked along the path for 10 hours straight .", "storylet_id": "217007"}], [{"original_text": "They set up camp and relaxed and ate before going to bed and continuing the next day. ", "album_id": "72057594076000817", "photo_flickr_id": "108571117", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "43401", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they set up camp and relaxed and ate before going to bed and continuing the next day .", "storylet_id": "217008"}], [{"original_text": "Finally, they made it back to their cars after the long hike. ", "album_id": "72057594076000817", "photo_flickr_id": "108588556", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "43401", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , they made it back to their cars after the long hike .", "storylet_id": "217009"}], [{"original_text": "Mary Jane joined the Hiker Society for her first overnight trip today.", "album_id": "72057594076000817", "photo_flickr_id": "108600698", "setting": "last-3-pick-old-and-tell", "worker_id": "VDV38N2JYIZ9WIC", "story_id": "43402", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] [female] joined the hiker society for her first overnight trip today .", "storylet_id": "217010"}], [{"original_text": "She was relieved that Hike Leader Jim Brown approved of her equipment.", "album_id": "72057594076000817", "photo_flickr_id": "108588556", "setting": "last-3-pick-old-and-tell", "worker_id": "VDV38N2JYIZ9WIC", "story_id": "43402", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was relieved that hike leader [male] brown approved of her equipment .", "storylet_id": "217011"}], [{"original_text": "There's always one . . . everyone wearing jackets, but Jeremy still has on shorts.", "album_id": "72057594076000817", "photo_flickr_id": "108588558", "setting": "last-3-pick-old-and-tell", "worker_id": "VDV38N2JYIZ9WIC", "story_id": "43402", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there 's always one . . . everyone wearing jackets , but [male] still has on shorts .", "storylet_id": "217012"}], [{"original_text": "The group got off to a good start at the base of the trail.", "album_id": "72057594076000817", "photo_flickr_id": "108588559", "setting": "last-3-pick-old-and-tell", "worker_id": "VDV38N2JYIZ9WIC", "story_id": "43402", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the group got off to a good start at the base of the trail .", "storylet_id": "217013"}], [{"original_text": "After a tough scramble up the last stretch of mountainside, everyone gratefully relaxed around the blazing campfire.", "album_id": "72057594076000817", "photo_flickr_id": "108571117", "setting": "last-3-pick-old-and-tell", "worker_id": "VDV38N2JYIZ9WIC", "story_id": "43402", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a tough scramble up the last stretch of mountainside , everyone gratefully relaxed around the blazing campfire .", "storylet_id": "217014"}], [{"original_text": "Last week we went on a hiking trip.", "album_id": "72057594076000817", "photo_flickr_id": "108600698", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43403", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week we went on a hiking trip .", "storylet_id": "217015"}], [{"original_text": "We invited everyone we knew.", "album_id": "72057594076000817", "photo_flickr_id": "108588556", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43403", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we invited everyone we knew .", "storylet_id": "217016"}], [{"original_text": "There were a lot of people that showed up.", "album_id": "72057594076000817", "photo_flickr_id": "108588558", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43403", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of people that showed up .", "storylet_id": "217017"}], [{"original_text": "We set off into the wilderness.", "album_id": "72057594076000817", "photo_flickr_id": "108588559", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43403", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we set off into the wilderness .", "storylet_id": "217018"}], [{"original_text": "At night we stopped to make camp and get some rest.", "album_id": "72057594076000817", "photo_flickr_id": "108571117", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43403", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night we stopped to make camp and get some rest .", "storylet_id": "217019"}], [{"original_text": "The woman gets ready for the group mountain climb.", "album_id": "72057594076000817", "photo_flickr_id": "108600698", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43404", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the woman gets ready for the group mountain climb .", "storylet_id": "217020"}], [{"original_text": "She meets with her friend.", "album_id": "72057594076000817", "photo_flickr_id": "108588556", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43404", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she meets with her friend .", "storylet_id": "217021"}], [{"original_text": "They all take a group photo.", "album_id": "72057594076000817", "photo_flickr_id": "108588558", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43404", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all take a group photo .", "storylet_id": "217022"}], [{"original_text": "They then start their hike.", "album_id": "72057594076000817", "photo_flickr_id": "108588559", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43404", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they then start their hike .", "storylet_id": "217023"}], [{"original_text": "They make camp for the night.", "album_id": "72057594076000817", "photo_flickr_id": "108571117", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43404", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they make camp for the night .", "storylet_id": "217024"}], [{"original_text": "A news reporter came by to our party. ", "album_id": "72057594124033657", "photo_flickr_id": "137615615", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43405", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a news reporter came by to our party .", "storylet_id": "217025"}], [{"original_text": "My brother's friend, Joe, trying to open the bottle of champagne. ", "album_id": "72057594124033657", "photo_flickr_id": "137617204", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43405", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my brother 's friend , [male] , trying to open the bottle of champagne .", "storylet_id": "217026"}], [{"original_text": "My brother and a group of friends toasting, before taking meal. ", "album_id": "72057594124033657", "photo_flickr_id": "137621753", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43405", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brother and a group of friends toasting , before taking meal .", "storylet_id": "217027"}], [{"original_text": "During lunch we had baked bread and grilled chicken. ", "album_id": "72057594124033657", "photo_flickr_id": "137625464", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43405", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "during lunch we had baked bread and grilled chicken .", "storylet_id": "217028"}], [{"original_text": "Joe and his girlfriend laughing at each others' jokes. ", "album_id": "72057594124033657", "photo_flickr_id": "137634911", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43405", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] and his girlfriend laughing at each others ' jokes .", "storylet_id": "217029"}], [{"original_text": "Wine and beer tasting with friends. ", "album_id": "72057594124033657", "photo_flickr_id": "137656233", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43406", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "wine and beer tasting with friends .", "storylet_id": "217030"}], [{"original_text": "Toasting to a new fruitful season.", "album_id": "72057594124033657", "photo_flickr_id": "137621753", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43406", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "toasting to a new fruitful season .", "storylet_id": "217031"}], [{"original_text": "Eating flatbread for dinner.", "album_id": "72057594124033657", "photo_flickr_id": "137625464", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43406", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "eating flatbread for dinner .", "storylet_id": "217032"}], [{"original_text": "Drinking wine with his wife.", "album_id": "72057594124033657", "photo_flickr_id": "137651061", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43406", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "drinking wine with his wife .", "storylet_id": "217033"}], [{"original_text": "Being Interviewed about the best wine they loved so far.", "album_id": "72057594124033657", "photo_flickr_id": "137615615", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43406", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "being interviewed about the best wine they loved so far .", "storylet_id": "217034"}], [{"original_text": "While I was at dinner yesterday I was interviewed.", "album_id": "72057594124033657", "photo_flickr_id": "137615615", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43407", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while i was at dinner yesterday i was interviewed .", "storylet_id": "217035"}], [{"original_text": "I told them that I really like the restaurant.", "album_id": "72057594124033657", "photo_flickr_id": "137617204", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43407", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i told them that i really like the restaurant .", "storylet_id": "217036"}], [{"original_text": "Afterward we bought some drinks and toasted.", "album_id": "72057594124033657", "photo_flickr_id": "137621753", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43407", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterward we bought some drinks and toasted .", "storylet_id": "217037"}], [{"original_text": "Our food was delicious.", "album_id": "72057594124033657", "photo_flickr_id": "137625464", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43407", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our food was delicious .", "storylet_id": "217038"}], [{"original_text": "It's my new favorite restaurant.", "album_id": "72057594124033657", "photo_flickr_id": "137634911", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43407", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's my new favorite restaurant .", "storylet_id": "217039"}], [{"original_text": "Having a nice outdoor get together with some friends and some wine.", "album_id": "72057594124033657", "photo_flickr_id": "137656233", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43408", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "having a nice outdoor get together with some friends and some wine .", "storylet_id": "217040"}], [{"original_text": "Lots of wine.", "album_id": "72057594124033657", "photo_flickr_id": "137621753", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43408", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of wine .", "storylet_id": "217041"}], [{"original_text": " And there was some pancakes.", "album_id": "72057594124033657", "photo_flickr_id": "137625464", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43408", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and there was some pancakes .", "storylet_id": "217042"}], [{"original_text": "We are having too much fun.", "album_id": "72057594124033657", "photo_flickr_id": "137651061", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43408", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we are having too much fun .", "storylet_id": "217043"}], [{"original_text": "For some reason, the new was here to interview us. They must've wanted some wine too.", "album_id": "72057594124033657", "photo_flickr_id": "137615615", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43408", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for some reason , the new was here to interview us . they must 've wanted some wine too .", "storylet_id": "217044"}], [{"original_text": "Three friends look on over a massive table of beer.", "album_id": "72057594124033657", "photo_flickr_id": "137656233", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43409", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "three friends look on over a massive table of beer .", "storylet_id": "217045"}], [{"original_text": "They fill their glasses and give a toast.", "album_id": "72057594124033657", "photo_flickr_id": "137621753", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43409", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they fill their glasses and give a toast .", "storylet_id": "217046"}], [{"original_text": "After drinking, the food arrives.", "album_id": "72057594124033657", "photo_flickr_id": "137625464", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43409", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after drinking , the food arrives .", "storylet_id": "217047"}], [{"original_text": "They then drink some more to wash the food down.", "album_id": "72057594124033657", "photo_flickr_id": "137651061", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43409", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they then drink some more to wash the food down .", "storylet_id": "217048"}], [{"original_text": "A news crew arrives later on to interview the party-goers.", "album_id": "72057594124033657", "photo_flickr_id": "137615615", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43409", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a news crew arrives later on to interview the party-goers .", "storylet_id": "217049"}], [{"original_text": "The sky was fair with lots of clouds, when we played outside. ", "album_id": "72157594193672439", "photo_flickr_id": "186164771", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43410", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sky was fair with lots of clouds , when we played outside .", "storylet_id": "217050"}], [{"original_text": "My friend, Ann, getting ready to hit the ball. ", "album_id": "72157594193672439", "photo_flickr_id": "186164566", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43410", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend , [female] , getting ready to hit the ball .", "storylet_id": "217051"}], [{"original_text": "Ann's brother Mike is playing this game for the first time. ", "album_id": "72157594193672439", "photo_flickr_id": "186164737", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43410", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] 's brother [male] is playing this game for the first time .", "storylet_id": "217052"}], [{"original_text": "This is the view of our deck with all the planted flowers.", "album_id": "72157594193672439", "photo_flickr_id": "186164439", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43410", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the view of our deck with all the planted flowers .", "storylet_id": "217053"}], [{"original_text": "My older cat, Bubbles, looking for a bug in the grass. ", "album_id": "72157594193672439", "photo_flickr_id": "186164286", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43410", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my older cat , bubbles , looking for a bug in the grass .", "storylet_id": "217054"}], [{"original_text": "The cat relaxed for most of the day.", "album_id": "72157594193672439", "photo_flickr_id": "186164970", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43411", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cat relaxed for most of the day .", "storylet_id": "217055"}], [{"original_text": "The humans occasionally caught his eye.", "album_id": "72157594193672439", "photo_flickr_id": "186163848", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43411", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the humans occasionally caught his eye .", "storylet_id": "217056"}], [{"original_text": "Their get together lasted until the evening.", "album_id": "72157594193672439", "photo_flickr_id": "186165059", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43411", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their get together lasted until the evening .", "storylet_id": "217057"}], [{"original_text": "There was food and games.", "album_id": "72157594193672439", "photo_flickr_id": "186164017", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43411", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was food and games .", "storylet_id": "217058"}], [{"original_text": "The cake was the best part, but the cat did not want to consume any.", "album_id": "72157594193672439", "photo_flickr_id": "186164122", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43411", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cake was the best part , but the cat did not want to consume any .", "storylet_id": "217059"}], [{"original_text": "Today is a beautiful day. The cat just woke up on this nice day.", "album_id": "72157594193672439", "photo_flickr_id": "186164970", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "43412", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is a beautiful day . the cat just woke up on this nice day .", "storylet_id": "217060"}], [{"original_text": "The cat is so alert.", "album_id": "72157594193672439", "photo_flickr_id": "186163848", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "43412", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cat is so alert .", "storylet_id": "217061"}], [{"original_text": "The patio is well put together.", "album_id": "72157594193672439", "photo_flickr_id": "186165059", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "43412", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the patio is well put together .", "storylet_id": "217062"}], [{"original_text": "My husband enjoy his cake that I baked for him.", "album_id": "72157594193672439", "photo_flickr_id": "186164017", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "43412", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my husband enjoy his cake that i baked for him .", "storylet_id": "217063"}], [{"original_text": "My husband day was felt with love. It was a day he would never from get.", "album_id": "72157594193672439", "photo_flickr_id": "186164122", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "43412", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my husband day was felt with love . it was a day he would never from get .", "storylet_id": "217064"}], [{"original_text": "I had a great time at the farm last year.", "album_id": "72157594193672439", "photo_flickr_id": "186164771", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43413", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the farm last year .", "storylet_id": "217065"}], [{"original_text": "We played a lot of games outside.", "album_id": "72157594193672439", "photo_flickr_id": "186164566", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43413", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we played a lot of games outside .", "storylet_id": "217066"}], [{"original_text": "There were a ton of people there.", "album_id": "72157594193672439", "photo_flickr_id": "186164737", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43413", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a ton of people there .", "storylet_id": "217067"}], [{"original_text": "The house on the farm was well decorated.", "album_id": "72157594193672439", "photo_flickr_id": "186164439", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43413", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the house on the farm was well decorated .", "storylet_id": "217068"}], [{"original_text": "There were many cats there.", "album_id": "72157594193672439", "photo_flickr_id": "186164286", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43413", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were many cats there .", "storylet_id": "217069"}], [{"original_text": "It was a beautiful day in mid summer. The family was planning a birthday party for Grandpa.", "album_id": "72157594193672439", "photo_flickr_id": "186164970", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43414", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful day in mid summer . the family was planning a birthday party for grandpa .", "storylet_id": "217070"}], [{"original_text": "The kitties were out in the backyard running around. They were enjoying the day in sheer bliss, jumping and clawing everything.", "album_id": "72157594193672439", "photo_flickr_id": "186163848", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43414", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kitties were out in the backyard running around . they were enjoying the day in sheer bliss , jumping and clawing everything .", "storylet_id": "217071"}], [{"original_text": "The patio was gorgeous and everyone was excited for the party.", "album_id": "72157594193672439", "photo_flickr_id": "186165059", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43414", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the patio was gorgeous and everyone was excited for the party .", "storylet_id": "217072"}], [{"original_text": "Everyone was happy to sing happy birthday to Grandpa.", "album_id": "72157594193672439", "photo_flickr_id": "186164017", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43414", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was happy to sing happy birthday to grandpa .", "storylet_id": "217073"}], [{"original_text": "The dinner was delicious and everyone ended up having a great evening.", "album_id": "72157594193672439", "photo_flickr_id": "186164122", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43414", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dinner was delicious and everyone ended up having a great evening .", "storylet_id": "217074"}], [{"original_text": "The golden lamb water jet, a story of Jesus Christ.", "album_id": "72157594234258731", "photo_flickr_id": "213306032", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43415", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the golden lamb water jet , a story of [male] christ .", "storylet_id": "217075"}], [{"original_text": "Statue of Jesus Christ carrying his cross. ", "album_id": "72157594234258731", "photo_flickr_id": "213351830", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43415", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "statue of [male] christ carrying his cross .", "storylet_id": "217076"}], [{"original_text": "Statue of Jesus Christ on the Cross. ", "album_id": "72157594234258731", "photo_flickr_id": "213306039", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43415", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "statue of [male] christ on the cross .", "storylet_id": "217077"}], [{"original_text": "Marie crying and mourning the death of her son. ", "album_id": "72157594234258731", "photo_flickr_id": "213306038", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43415", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] crying and mourning the death of her son .", "storylet_id": "217078"}], [{"original_text": "Marie in Jesus's tomb after being crucified. ", "album_id": "72157594234258731", "photo_flickr_id": "213306037", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43415", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] in [male] 's tomb after being crucified .", "storylet_id": "217079"}], [{"original_text": "Jesus carrying the cross.", "album_id": "72157594234258731", "photo_flickr_id": "213361737", "setting": "first-2-pick-and-tell", "worker_id": "LJBXOLDC77GLFIJ", "story_id": "43416", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] carrying the cross .", "storylet_id": "217080"}], [{"original_text": "Another of Jesus with the cross and some followers.", "album_id": "72157594234258731", "photo_flickr_id": "213351830", "setting": "first-2-pick-and-tell", "worker_id": "LJBXOLDC77GLFIJ", "story_id": "43416", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "another of [male] with the cross and some followers .", "storylet_id": "217081"}], [{"original_text": "Here the spikes are going in. The Roman punishment was brutal.", "album_id": "72157594234258731", "photo_flickr_id": "213306041", "setting": "first-2-pick-and-tell", "worker_id": "LJBXOLDC77GLFIJ", "story_id": "43416", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here the spikes are going in . the [male] punishment was brutal .", "storylet_id": "217082"}], [{"original_text": "Here is Jesus on the cross.", "album_id": "72157594234258731", "photo_flickr_id": "213306039", "setting": "first-2-pick-and-tell", "worker_id": "LJBXOLDC77GLFIJ", "story_id": "43416", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is [male] on the cross .", "storylet_id": "217083"}], [{"original_text": "Three days later he is risen again.", "album_id": "72157594234258731", "photo_flickr_id": "213351828", "setting": "first-2-pick-and-tell", "worker_id": "LJBXOLDC77GLFIJ", "story_id": "43416", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "three days later he is risen again .", "storylet_id": "217084"}], [{"original_text": "I went the cemetery last weekend.", "album_id": "72157594234258731", "photo_flickr_id": "213306032", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43417", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went the cemetery last weekend .", "storylet_id": "217085"}], [{"original_text": "There were a lot of statues there.", "album_id": "72157594234258731", "photo_flickr_id": "213351830", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43417", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of statues there .", "storylet_id": "217086"}], [{"original_text": "It was a sad place.", "album_id": "72157594234258731", "photo_flickr_id": "213306039", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43417", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a sad place .", "storylet_id": "217087"}], [{"original_text": "I paid my respects.", "album_id": "72157594234258731", "photo_flickr_id": "213306038", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43417", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i paid my respects .", "storylet_id": "217088"}], [{"original_text": "I left before it got too late.", "album_id": "72157594234258731", "photo_flickr_id": "213306037", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43417", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i left before it got too late .", "storylet_id": "217089"}], [{"original_text": "The lamb in the church is peeing in the fountain.", "album_id": "72157594234258731", "photo_flickr_id": "213306032", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43418", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lamb in the church is peeing in the fountain .", "storylet_id": "217090"}], [{"original_text": "Sad to think this happened.", "album_id": "72157594234258731", "photo_flickr_id": "213351830", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43418", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sad to think this happened .", "storylet_id": "217091"}], [{"original_text": "And then he really had to hang there like this, in misery.", "album_id": "72157594234258731", "photo_flickr_id": "213306039", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43418", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and then he really had to hang there like this , in misery .", "storylet_id": "217092"}], [{"original_text": "She makes all better.", "album_id": "72157594234258731", "photo_flickr_id": "213306038", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43418", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she makes all better .", "storylet_id": "217093"}], [{"original_text": "And here he lays to rest.", "album_id": "72157594234258731", "photo_flickr_id": "213306037", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43418", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and here he lays to rest .", "storylet_id": "217094"}], [{"original_text": "As a golden goat lays on top of platform", "album_id": "72157594234258731", "photo_flickr_id": "213306032", "setting": "last-3-pick-old-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "43419", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as a golden goat lays on top of platform", "storylet_id": "217095"}], [{"original_text": "Jesus carries his cross while others look.", "album_id": "72157594234258731", "photo_flickr_id": "213351830", "setting": "last-3-pick-old-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "43419", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] carries his cross while others look .", "storylet_id": "217096"}], [{"original_text": "Jesus is on the cross and others are crying.", "album_id": "72157594234258731", "photo_flickr_id": "213306039", "setting": "last-3-pick-old-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "43419", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] is on the cross and others are crying .", "storylet_id": "217097"}], [{"original_text": "When Jesus is off the cross a women looks at him in sarrow.", "album_id": "72157594234258731", "photo_flickr_id": "213306038", "setting": "last-3-pick-old-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "43419", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when [male] is off the cross a women looks at him in sarrow .", "storylet_id": "217098"}], [{"original_text": "Jesus now rests peacefully.", "album_id": "72157594234258731", "photo_flickr_id": "213306037", "setting": "last-3-pick-old-and-tell", "worker_id": "X8ODQ4JBUN121X5", "story_id": "43419", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] now rests peacefully .", "storylet_id": "217099"}], [{"original_text": "Family going to the park to have some fun.", "album_id": "72157594327252982", "photo_flickr_id": "227158029", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43420", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family going to the park to have some fun .", "storylet_id": "217100"}], [{"original_text": "Her mother is teaching her new tricks. ", "album_id": "72157594327252982", "photo_flickr_id": "227110645", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43420", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her mother is teaching her new tricks .", "storylet_id": "217101"}], [{"original_text": "Mom teaching her son how to dance.", "album_id": "72157594327252982", "photo_flickr_id": "227114962", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43420", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom teaching her son how to dance .", "storylet_id": "217102"}], [{"original_text": "Her father teaching her how to dance. ", "album_id": "72157594327252982", "photo_flickr_id": "227115930", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43420", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her father teaching her how to dance .", "storylet_id": "217103"}], [{"original_text": "Playing with her brother.", "album_id": "72157594327252982", "photo_flickr_id": "227117649", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43420", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "playing with her brother .", "storylet_id": "217104"}], [{"original_text": "They celebrated at my nephew's party.", "album_id": "72157594327252982", "photo_flickr_id": "227114962", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43421", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they celebrated at my nephew 's party .", "storylet_id": "217105"}], [{"original_text": "We also learned how to dance at the event.", "album_id": "72157594327252982", "photo_flickr_id": "227115930", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43421", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we also learned how to dance at the event .", "storylet_id": "217106"}], [{"original_text": "My aunt brought a lot of food to eat.", "album_id": "72157594327252982", "photo_flickr_id": "227158794", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43421", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my aunt brought a lot of food to eat .", "storylet_id": "217107"}], [{"original_text": "My niece was happy that the family came.", "album_id": "72157594327252982", "photo_flickr_id": "227160195", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43421", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my niece was happy that the family came .", "storylet_id": "217108"}], [{"original_text": "We admired her artwork after the party.", "album_id": "72157594327252982", "photo_flickr_id": "227161993", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43421", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we admired her artwork after the party .", "storylet_id": "217109"}], [{"original_text": "A family traveled to the park for some afternoon fun.", "album_id": "72157594327252982", "photo_flickr_id": "227158029", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "43422", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a family traveled to the park for some afternoon fun .", "storylet_id": "217110"}], [{"original_text": "The daughters danced together on the grass.", "album_id": "72157594327252982", "photo_flickr_id": "227110645", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "43422", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the daughters danced together on the grass .", "storylet_id": "217111"}], [{"original_text": "The son was quite good and got a high-five from mom.", "album_id": "72157594327252982", "photo_flickr_id": "227114962", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "43422", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the son was quite good and got a high-five from mom .", "storylet_id": "217112"}], [{"original_text": "Dad then tried to teach his daughter to ballroom dance.", "album_id": "72157594327252982", "photo_flickr_id": "227115930", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "43422", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dad then tried to teach his daughter to ballroom dance .", "storylet_id": "217113"}], [{"original_text": "Sibling rivalries were erased by the end and by the fun of outdoor dancing.", "album_id": "72157594327252982", "photo_flickr_id": "227117649", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "43422", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sibling rivalries were erased by the end and by the fun of outdoor dancing .", "storylet_id": "217114"}], [{"original_text": "The kids were excited for the start of Summer camp.", "album_id": "72157594327252982", "photo_flickr_id": "227158029", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43423", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids were excited for the start of [female] camp .", "storylet_id": "217115"}], [{"original_text": "They eagerly met knew kids,", "album_id": "72157594327252982", "photo_flickr_id": "227110645", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43423", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they eagerly met knew kids ,", "storylet_id": "217116"}], [{"original_text": "and instantly became best friends with them.", "album_id": "72157594327252982", "photo_flickr_id": "227114962", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43423", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and instantly became best friends with them .", "storylet_id": "217117"}], [{"original_text": "They learned how to dance at camp,", "album_id": "72157594327252982", "photo_flickr_id": "227115930", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43423", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they learned how to dance at camp ,", "storylet_id": "217118"}], [{"original_text": "and they loved dancing with the other kids. ", "album_id": "72157594327252982", "photo_flickr_id": "227117649", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43423", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they loved dancing with the other kids .", "storylet_id": "217119"}], [{"original_text": "The family was off to enjoy a day at the parke.", "album_id": "72157594327252982", "photo_flickr_id": "227158029", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "43424", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was off to enjoy a day at the parke .", "storylet_id": "217120"}], [{"original_text": "The adult and child clapped hands in the part", "album_id": "72157594327252982", "photo_flickr_id": "227110645", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "43424", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the adult and child clapped hands in the part", "storylet_id": "217121"}], [{"original_text": "The adult and boy gave high fives to each other.", "album_id": "72157594327252982", "photo_flickr_id": "227114962", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "43424", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the adult and boy gave high fives to each other .", "storylet_id": "217122"}], [{"original_text": "The older man was teaching the younger girl how to dance.", "album_id": "72157594327252982", "photo_flickr_id": "227115930", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "43424", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the older man was teaching the younger girl how to dance .", "storylet_id": "217123"}], [{"original_text": "Both the children danced together of what they were taught.", "album_id": "72157594327252982", "photo_flickr_id": "227117649", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "43424", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "both the children danced together of what they were taught .", "storylet_id": "217124"}], [{"original_text": "A group of bicyclists,skateboarders and dancers get together to preform.", "album_id": "72157594267140001", "photo_flickr_id": "233046881", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43425", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of bicyclists , skateboarders and dancers get together to preform .", "storylet_id": "217125"}], [{"original_text": "The skateboarder rolls on the track.", "album_id": "72157594267140001", "photo_flickr_id": "233051101", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43425", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the skateboarder rolls on the track .", "storylet_id": "217126"}], [{"original_text": "The break dancer stood on his hand and preformed.", "album_id": "72157594267140001", "photo_flickr_id": "233070277", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43425", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the break dancer stood on his hand and preformed .", "storylet_id": "217127"}], [{"original_text": "Another break dancer spun on his head.", "album_id": "72157594267140001", "photo_flickr_id": "233082739", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43425", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another break dancer spun on his head .", "storylet_id": "217128"}], [{"original_text": "The group that gathered to watch was very large and interested.", "album_id": "72157594267140001", "photo_flickr_id": "233121783", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43425", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the group that gathered to watch was very large and interested .", "storylet_id": "217129"}], [{"original_text": "we went to the freestyle expo", "album_id": "72157594267140001", "photo_flickr_id": "233046881", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43426", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the freestyle expo", "storylet_id": "217130"}], [{"original_text": "there was bmx freestlye", "album_id": "72157594267140001", "photo_flickr_id": "233060351", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43426", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was bmx freestlye", "storylet_id": "217131"}], [{"original_text": "dance freestyle as well", "album_id": "72157594267140001", "photo_flickr_id": "233066238", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43426", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dance freestyle as well", "storylet_id": "217132"}], [{"original_text": "so many talented people performed", "album_id": "72157594267140001", "photo_flickr_id": "233070277", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43426", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so many talented people performed", "storylet_id": "217133"}], [{"original_text": "included Jeff Jeorge", "album_id": "72157594267140001", "photo_flickr_id": "233091148", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43426", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "included [male] jeorge", "storylet_id": "217134"}], [{"original_text": "A couple of friends decided to go to the skate park on their bicycles.", "album_id": "72157594267140001", "photo_flickr_id": "233046881", "setting": "last-3-pick-old-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "43427", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple of friends decided to go to the skate park on their bicycles .", "storylet_id": "217135"}], [{"original_text": "We saw a professional skateboarder.", "album_id": "72157594267140001", "photo_flickr_id": "233051101", "setting": "last-3-pick-old-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "43427", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw a professional skateboarder .", "storylet_id": "217136"}], [{"original_text": "A crowd of break dancers was also present at the skate park.", "album_id": "72157594267140001", "photo_flickr_id": "233070277", "setting": "last-3-pick-old-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "43427", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a crowd of break dancers was also present at the skate park .", "storylet_id": "217137"}], [{"original_text": "We saw someone do a headstand.", "album_id": "72157594267140001", "photo_flickr_id": "233082739", "setting": "last-3-pick-old-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "43427", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw someone do a headstand .", "storylet_id": "217138"}], [{"original_text": "Amongst the crowd was a man that represented a skateboard company. ", "album_id": "72157594267140001", "photo_flickr_id": "233121783", "setting": "last-3-pick-old-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "43427", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "amongst the crowd was a man that represented a skateboard company .", "storylet_id": "217139"}], [{"original_text": "Bike tricks are a sight to see.", "album_id": "72157594267140001", "photo_flickr_id": "233046881", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "43428", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "bike tricks are a sight to see .", "storylet_id": "217140"}], [{"original_text": "He was very good at balancing.", "album_id": "72157594267140001", "photo_flickr_id": "233060351", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "43428", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was very good at balancing .", "storylet_id": "217141"}], [{"original_text": "The hand stand took a lot of strength.", "album_id": "72157594267140001", "photo_flickr_id": "233066238", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "43428", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the hand stand took a lot of strength .", "storylet_id": "217142"}], [{"original_text": "Together they both had a lot of skill.", "album_id": "72157594267140001", "photo_flickr_id": "233070277", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "43428", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "together they both had a lot of skill .", "storylet_id": "217143"}], [{"original_text": "Break dancing into cool moves was really fun to look at.", "album_id": "72157594267140001", "photo_flickr_id": "233091148", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "43428", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "break dancing into cool moves was really fun to look at .", "storylet_id": "217144"}], [{"original_text": "The guy was doing tricks on his bike", "album_id": "72157594267140001", "photo_flickr_id": "233046881", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43429", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guy was doing tricks on his bike", "storylet_id": "217145"}], [{"original_text": "then another came.", "album_id": "72157594267140001", "photo_flickr_id": "233060351", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43429", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then another came .", "storylet_id": "217146"}], [{"original_text": "He had no shirt", "album_id": "72157594267140001", "photo_flickr_id": "233066238", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43429", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had no shirt", "storylet_id": "217147"}], [{"original_text": "but another was doing tricks", "album_id": "72157594267140001", "photo_flickr_id": "233070277", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43429", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but another was doing tricks", "storylet_id": "217148"}], [{"original_text": "when a guy came and danced.", "album_id": "72157594267140001", "photo_flickr_id": "233091148", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43429", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when a guy came and danced .", "storylet_id": "217149"}], [{"original_text": "last night we saw this band play", "album_id": "72157594279469584", "photo_flickr_id": "240569557", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43430", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night we saw this band play", "storylet_id": "217150"}], [{"original_text": "it was incredible ", "album_id": "72157594279469584", "photo_flickr_id": "240570382", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43430", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was incredible", "storylet_id": "217151"}], [{"original_text": "i would go see them again", "album_id": "72157594279469584", "photo_flickr_id": "240570741", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43430", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i would go see them again", "storylet_id": "217152"}], [{"original_text": "they were so good", "album_id": "72157594279469584", "photo_flickr_id": "240573684", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43430", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were so good", "storylet_id": "217153"}], [{"original_text": "after the show they gave me the set list", "album_id": "72157594279469584", "photo_flickr_id": "240574208", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43430", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the show they gave me the set list", "storylet_id": "217154"}], [{"original_text": "At a concert and we are having a good time.", "album_id": "72157594279469584", "photo_flickr_id": "240569284", "setting": "first-2-pick-and-tell", "worker_id": "6XEUGDN9POB93IB", "story_id": "43431", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at a concert and we are having a good time .", "storylet_id": "217155"}], [{"original_text": "He is always changing the colors.", "album_id": "72157594279469584", "photo_flickr_id": "240570153", "setting": "first-2-pick-and-tell", "worker_id": "6XEUGDN9POB93IB", "story_id": "43431", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he is always changing the colors .", "storylet_id": "217156"}], [{"original_text": "Ahh back to purple. ", "album_id": "72157594279469584", "photo_flickr_id": "240571014", "setting": "first-2-pick-and-tell", "worker_id": "6XEUGDN9POB93IB", "story_id": "43431", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "ahh back to purple .", "storylet_id": "217157"}], [{"original_text": "Where did he go?", "album_id": "72157594279469584", "photo_flickr_id": "240572931", "setting": "first-2-pick-and-tell", "worker_id": "6XEUGDN9POB93IB", "story_id": "43431", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "where did he go ?", "storylet_id": "217158"}], [{"original_text": "There he is! Back to playing music.", "album_id": "72157594279469584", "photo_flickr_id": "240573160", "setting": "first-2-pick-and-tell", "worker_id": "6XEUGDN9POB93IB", "story_id": "43431", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there he is ! back to playing music .", "storylet_id": "217159"}], [{"original_text": "We went to a really awesome concert last night!", "album_id": "72157594279469584", "photo_flickr_id": "240569557", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "43432", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a really awesome concert last night !", "storylet_id": "217160"}], [{"original_text": "Here is a picture of the guitar player, who did excellent.", "album_id": "72157594279469584", "photo_flickr_id": "240570382", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "43432", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is a picture of the guitar player , who did excellent .", "storylet_id": "217161"}], [{"original_text": "The singer did a really nice job.", "album_id": "72157594279469584", "photo_flickr_id": "240570741", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "43432", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the singer did a really nice job .", "storylet_id": "217162"}], [{"original_text": "This guy was multi-talented as he played guitar, sang, and played keyboard.", "album_id": "72157594279469584", "photo_flickr_id": "240573684", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "43432", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this guy was multi-talented as he played guitar , sang , and played keyboard .", "storylet_id": "217163"}], [{"original_text": "At the end of the night, we were really lucky because we got a copy of the set list from the band!", "album_id": "72157594279469584", "photo_flickr_id": "240574208", "setting": "last-3-pick-old-and-tell", "worker_id": "SEHJTFR6HEMVWL0", "story_id": "43432", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , we were really lucky because we got a copy of the set list from the band !", "storylet_id": "217164"}], [{"original_text": "I went to my very first live concert today!", "album_id": "72157594279469584", "photo_flickr_id": "240569557", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "43433", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to my very first live concert today !", "storylet_id": "217165"}], [{"original_text": "It was an amazing experience to hear all the instruments rumble through your body.", "album_id": "72157594279469584", "photo_flickr_id": "240570382", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "43433", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was an amazing experience to hear all the instruments rumble through your body .", "storylet_id": "217166"}], [{"original_text": "The people there were really cool and they all enjoyed the same music.", "album_id": "72157594279469584", "photo_flickr_id": "240570741", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "43433", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people there were really cool and they all enjoyed the same music .", "storylet_id": "217167"}], [{"original_text": "The lead vocalist was amazing live! It sounded just like the cd!", "album_id": "72157594279469584", "photo_flickr_id": "240573684", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "43433", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lead vocalist was amazing live ! it sounded just like the cd !", "storylet_id": "217168"}], [{"original_text": "Now to cross that off the bucket list. Here's to a great future!", "album_id": "72157594279469584", "photo_flickr_id": "240574208", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "43433", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now to cross that off the bucket list . here 's to a great future !", "storylet_id": "217169"}], [{"original_text": "The Lonely Hearts Club is a great rock band Thei from Austin.", "album_id": "72157594279469584", "photo_flickr_id": "240569557", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "43434", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization organization organization is a great rock band thei from location .", "storylet_id": "217170"}], [{"original_text": "Ted 'Devestator' Falcone plays lead guitar.", "album_id": "72157594279469584", "photo_flickr_id": "240570382", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "43434", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] 'devestator ' falcone plays lead guitar .", "storylet_id": "217171"}], [{"original_text": "Freddy 'Broke Butt' Bones is the lead singer and plays bass.", "album_id": "72157594279469584", "photo_flickr_id": "240570741", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "43434", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] 'broke butt ' bones is the lead singer and plays bass .", "storylet_id": "217172"}], [{"original_text": "Harland 'Not the Actor' Williams accompanies on second guitar and keyboards. ", "album_id": "72157594279469584", "photo_flickr_id": "240573684", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "43434", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "harland 'not the actor ' williams accompanies on second guitar and keyboards .", "storylet_id": "217173"}], [{"original_text": "Their sets are amazing, as evidenced by this stolen set list.", "album_id": "72157594279469584", "photo_flickr_id": "240574208", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "43434", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their sets are amazing , as evidenced by this stolen set list .", "storylet_id": "217174"}], [{"original_text": "The couple went for a hike on a well known trail.", "album_id": "72157594345357482", "photo_flickr_id": "279605827", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43435", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple went for a hike on a well known trail .", "storylet_id": "217175"}], [{"original_text": "They passed by a lake.", "album_id": "72157594345357482", "photo_flickr_id": "279602291", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43435", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they passed by a lake .", "storylet_id": "217176"}], [{"original_text": "There was an opportunity to read informational signs about the local area.", "album_id": "72157594345357482", "photo_flickr_id": "279604516", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43435", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was an opportunity to read informational signs about the local area .", "storylet_id": "217177"}], [{"original_text": "They crossed an old stone bridge.", "album_id": "72157594345357482", "photo_flickr_id": "279602289", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43435", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they crossed an old stone bridge .", "storylet_id": "217178"}], [{"original_text": "She decided they should stop to rest and eat lunch.", "album_id": "72157594345357482", "photo_flickr_id": "279604518", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43435", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she decided they should stop to rest and eat lunch .", "storylet_id": "217179"}], [{"original_text": "My wife joined me on my morning hike.", "album_id": "72157594345357482", "photo_flickr_id": "279607097", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43436", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my wife joined me on my morning hike .", "storylet_id": "217180"}], [{"original_text": "She brought a really fuzzy cap for protection.", "album_id": "72157594345357482", "photo_flickr_id": "279605831", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43436", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she brought a really fuzzy cap for protection .", "storylet_id": "217181"}], [{"original_text": "I gave her the okay with some nifty hand signs.", "album_id": "72157594345357482", "photo_flickr_id": "279605823", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43436", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i gave her the okay with some nifty hand signs .", "storylet_id": "217182"}], [{"original_text": "We arrived at our destination very quickly.", "album_id": "72157594345357482", "photo_flickr_id": "279602294", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43436", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we arrived at our destination very quickly .", "storylet_id": "217183"}], [{"original_text": "We took the route along the lake back home.", "album_id": "72157594345357482", "photo_flickr_id": "279602291", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43436", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took the route along the lake back home .", "storylet_id": "217184"}], [{"original_text": "The young couple took a hike to view the old stone houses in the woods.", "album_id": "72157594345357482", "photo_flickr_id": "279605827", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "43437", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the young couple took a hike to view the old stone houses in the woods .", "storylet_id": "217185"}], [{"original_text": "The scenery was very relaxing with a gently flowing river.", "album_id": "72157594345357482", "photo_flickr_id": "279602291", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "43437", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the scenery was very relaxing with a gently flowing river .", "storylet_id": "217186"}], [{"original_text": "The woman was fascinated reading about the history of the buildings.", "album_id": "72157594345357482", "photo_flickr_id": "279604516", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "43437", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the woman was fascinated reading about the history of the buildings .", "storylet_id": "217187"}], [{"original_text": "A picturesque bridge allowed the travelers to cross the river.", "album_id": "72157594345357482", "photo_flickr_id": "279602289", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "43437", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a picturesque bridge allowed the travelers to cross the river .", "storylet_id": "217188"}], [{"original_text": "All this hiking makes a girl hungry and the orange tasted great.", "album_id": "72157594345357482", "photo_flickr_id": "279604518", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "43437", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all this hiking makes a girl hungry and the orange tasted great .", "storylet_id": "217189"}], [{"original_text": "Mary and Steve take a selfie before their hike.", "album_id": "72157594345357482", "photo_flickr_id": "279605827", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43438", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [male] take a selfie before their hike .", "storylet_id": "217190"}], [{"original_text": "They first stop at the lake.", "album_id": "72157594345357482", "photo_flickr_id": "279602291", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43438", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they first stop at the lake .", "storylet_id": "217191"}], [{"original_text": "Then, Mary reads a stone to see if it has any cool info.", "album_id": "72157594345357482", "photo_flickr_id": "279604516", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43438", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then , [female] reads a stone to see if it has any cool info .", "storylet_id": "217192"}], [{"original_text": "They get close to the bridge they want to cross.", "album_id": "72157594345357482", "photo_flickr_id": "279602289", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43438", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they get close to the bridge they want to cross .", "storylet_id": "217193"}], [{"original_text": "They get tired from the walk and decide to eat.", "album_id": "72157594345357482", "photo_flickr_id": "279604518", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43438", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they get tired from the walk and decide to eat .", "storylet_id": "217194"}], [{"original_text": "Josh and Katie loved to go out in nature.", "album_id": "72157594345357482", "photo_flickr_id": "279605827", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "43439", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "josh and [female] loved to go out in nature .", "storylet_id": "217195"}], [{"original_text": "They would find neat rivers to go fishing on.", "album_id": "72157594345357482", "photo_flickr_id": "279602291", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "43439", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they would find neat rivers to go fishing on .", "storylet_id": "217196"}], [{"original_text": "Sometimes they would find new places to explore as well.", "album_id": "72157594345357482", "photo_flickr_id": "279604516", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "43439", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sometimes they would find new places to explore as well .", "storylet_id": "217197"}], [{"original_text": "Bridges were things that they loved the most.", "album_id": "72157594345357482", "photo_flickr_id": "279602289", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "43439", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "bridges were things that they loved the most .", "storylet_id": "217198"}], [{"original_text": "Katie was also into mushroom picking. Which they did every time!", "album_id": "72157594345357482", "photo_flickr_id": "279604518", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "43439", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] was also into mushroom picking . which they did every time !", "storylet_id": "217199"}], [{"original_text": "The concert venue was not well lit.", "album_id": "72157594379665028", "photo_flickr_id": "299268397", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43440", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the concert venue was not well lit .", "storylet_id": "217200"}], [{"original_text": "The guitarists played in a red spotlight.", "album_id": "72157594379665028", "photo_flickr_id": "299268053", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43440", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guitarists played in a red spotlight .", "storylet_id": "217201"}], [{"original_text": "They sung together on one mic.", "album_id": "72157594379665028", "photo_flickr_id": "299267819", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43440", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they sung together on one mic .", "storylet_id": "217202"}], [{"original_text": "One band member had a crazy and scary mask on.", "album_id": "72157594379665028", "photo_flickr_id": "299267508", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43440", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one band member had a crazy and scary mask on .", "storylet_id": "217203"}], [{"original_text": "The concert was lit with blue spotlights and it got hype.", "album_id": "72157594379665028", "photo_flickr_id": "299267125", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43440", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the concert was lit with blue spotlights and it got hype .", "storylet_id": "217204"}], [{"original_text": "My friends and I visited a concert in June. ", "album_id": "72157594379665028", "photo_flickr_id": "299267965", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43441", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i visited a concert in [female] .", "storylet_id": "217205"}], [{"original_text": "One of my favorite bands and group of artists gathered in one place!", "album_id": "72157594379665028", "photo_flickr_id": "299267819", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43441", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of my favorite bands and group of artists gathered in one place !", "storylet_id": "217206"}], [{"original_text": "Some of the band members played saxophone, which I loved to hear.", "album_id": "72157594379665028", "photo_flickr_id": "299267660", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43441", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the band members played saxophone , which i loved to hear .", "storylet_id": "217207"}], [{"original_text": "The other band members played drums, which was very loud and annoying.", "album_id": "72157594379665028", "photo_flickr_id": "299267536", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43441", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the other band members played drums , which was very loud and annoying .", "storylet_id": "217208"}], [{"original_text": "The room was packed with music fan cheering and jumping with the music.", "album_id": "72157594379665028", "photo_flickr_id": "299267433", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43441", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the room was packed with music fan cheering and jumping with the music .", "storylet_id": "217209"}], [{"original_text": "We didn't have the best seats for the concert. ", "album_id": "72157594379665028", "photo_flickr_id": "299268397", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43442", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we did n't have the best seats for the concert .", "storylet_id": "217210"}], [{"original_text": "But by luck we moved up soon after the show started. ", "album_id": "72157594379665028", "photo_flickr_id": "299268053", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43442", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but by luck we moved up soon after the show started .", "storylet_id": "217211"}], [{"original_text": "The singers were impassioned. ", "album_id": "72157594379665028", "photo_flickr_id": "299267819", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43442", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the singers were impassioned .", "storylet_id": "217212"}], [{"original_text": "Some guy came out wearing a wolf mask in between sets. ", "album_id": "72157594379665028", "photo_flickr_id": "299267508", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43442", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some guy came out wearing a wolf mask in between sets .", "storylet_id": "217213"}], [{"original_text": "We moved back a ways to get the full picture of the job the light crew was doing. ", "album_id": "72157594379665028", "photo_flickr_id": "299267125", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43442", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we moved back a ways to get the full picture of the job the light crew was doing .", "storylet_id": "217214"}], [{"original_text": "The concert was a great one.", "album_id": "72157594379665028", "photo_flickr_id": "299268397", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43443", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the concert was a great one .", "storylet_id": "217215"}], [{"original_text": "The guitar player was on point with his playing,", "album_id": "72157594379665028", "photo_flickr_id": "299268053", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43443", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guitar player was on point with his playing ,", "storylet_id": "217216"}], [{"original_text": "and he even harmonized perfectly with the leader singer during some of the choruses.", "album_id": "72157594379665028", "photo_flickr_id": "299267819", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43443", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and he even harmonized perfectly with the leader singer during some of the choruses .", "storylet_id": "217217"}], [{"original_text": "And they made it a great show by involving the audience,", "album_id": "72157594379665028", "photo_flickr_id": "299267508", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43443", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and they made it a great show by involving the audience ,", "storylet_id": "217218"}], [{"original_text": "and of course, the lighting was crazy cool. ", "album_id": "72157594379665028", "photo_flickr_id": "299267125", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43443", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and of course , the lighting was crazy cool .", "storylet_id": "217219"}], [{"original_text": "The only thing the audience could see was the blue lights of the band. ", "album_id": "72157594379665028", "photo_flickr_id": "299268397", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43444", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the only thing the audience could see was the blue lights of the band .", "storylet_id": "217220"}], [{"original_text": "This concert goer used his cell phone to light the way. ", "album_id": "72157594379665028", "photo_flickr_id": "299268053", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43444", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this concert goer used his cell phone to light the way .", "storylet_id": "217221"}], [{"original_text": "The band was notorious for great harmony. ", "album_id": "72157594379665028", "photo_flickr_id": "299267819", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43444", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band was notorious for great harmony .", "storylet_id": "217222"}], [{"original_text": "They had a new guitarist and he wore a mask over his head. ", "album_id": "72157594379665028", "photo_flickr_id": "299267508", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43444", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had a new guitarist and he wore a mask over his head .", "storylet_id": "217223"}], [{"original_text": "The band brought the house down with their last song. ", "album_id": "72157594379665028", "photo_flickr_id": "299267125", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43444", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the band brought the house down with their last song .", "storylet_id": "217224"}], [{"original_text": "It is winter and there is a gorgeous scene going on in the woods.", "album_id": "72157594366762375", "photo_flickr_id": "291667450", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43445", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is winter and there is a gorgeous scene going on in the woods .", "storylet_id": "217225"}], [{"original_text": "A man and his son sit on the edge of the hill by the water.", "album_id": "72157594366762375", "photo_flickr_id": "291672833", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43445", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a man and his son sit on the edge of the hill by the water .", "storylet_id": "217226"}], [{"original_text": "The water is gorgeous and clear.", "album_id": "72157594366762375", "photo_flickr_id": "291672840", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43445", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water is gorgeous and clear .", "storylet_id": "217227"}], [{"original_text": "In some areas the water is frozen.", "album_id": "72157594366762375", "photo_flickr_id": "292447700", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43445", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in some areas the water is frozen .", "storylet_id": "217228"}], [{"original_text": "The mountains in the distance are gorgeous.", "album_id": "72157594366762375", "photo_flickr_id": "292454174", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43445", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the mountains in the distance are gorgeous .", "storylet_id": "217229"}], [{"original_text": "Getting out into the great outdoors is fun. ", "album_id": "72157594366762375", "photo_flickr_id": "291667450", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "43446", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting out into the great outdoors is fun .", "storylet_id": "217230"}], [{"original_text": "And it's even more fun with friends to go along with you. ", "album_id": "72157594366762375", "photo_flickr_id": "291667456", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "43446", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and it 's even more fun with friends to go along with you .", "storylet_id": "217231"}], [{"original_text": "We were going to do some hiking, but we were a little daunted by these sheer inclines.", "album_id": "72157594366762375", "photo_flickr_id": "291667480", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "43446", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were going to do some hiking , but we were a little daunted by these sheer inclines .", "storylet_id": "217232"}], [{"original_text": "But with a little determination, we made it to the top. ", "album_id": "72157594366762375", "photo_flickr_id": "291672822", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "43446", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but with a little determination , we made it to the top .", "storylet_id": "217233"}], [{"original_text": "And then we got the satisfaction of making it up the mountains, and doing it with friends. ", "album_id": "72157594366762375", "photo_flickr_id": "291672829", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "43446", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then we got the satisfaction of making it up the mountains , and doing it with friends .", "storylet_id": "217234"}], [{"original_text": "It was a breathtaking day in the mountains. ", "album_id": "72157594366762375", "photo_flickr_id": "291667450", "setting": "last-3-pick-old-and-tell", "worker_id": "ZOL3V3HDYVD2F1A", "story_id": "43447", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a breathtaking day in the mountains .", "storylet_id": "217235"}], [{"original_text": "It was the kind of day Allen, Leon and Stephen, three brothers from a close knit family, really enjoyed. ", "album_id": "72157594366762375", "photo_flickr_id": "291667456", "setting": "last-3-pick-old-and-tell", "worker_id": "ZOL3V3HDYVD2F1A", "story_id": "43447", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was the kind of day [male] , [male] and [male] , three brothers from a close knit family , really enjoyed .", "storylet_id": "217236"}], [{"original_text": "Every now and then, they took a break from their busy lives to commune with nature. ", "album_id": "72157594366762375", "photo_flickr_id": "291667480", "setting": "last-3-pick-old-and-tell", "worker_id": "ZOL3V3HDYVD2F1A", "story_id": "43447", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "every now and then , they took a break from their busy lives to commune with nature .", "storylet_id": "217237"}], [{"original_text": "On perfect days like this, it was especially rewarding. ", "album_id": "72157594366762375", "photo_flickr_id": "291672822", "setting": "last-3-pick-old-and-tell", "worker_id": "ZOL3V3HDYVD2F1A", "story_id": "43447", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on perfect days like this , it was especially rewarding .", "storylet_id": "217238"}], [{"original_text": "It always brought them closer, and reminded them how important it was to stay close to one's family members. ", "album_id": "72157594366762375", "photo_flickr_id": "291672829", "setting": "last-3-pick-old-and-tell", "worker_id": "ZOL3V3HDYVD2F1A", "story_id": "43447", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it always brought them closer , and reminded them how important it was to stay close to one 's family members .", "storylet_id": "217239"}], [{"original_text": "The fog is magical above the Tmountain peaks.", "album_id": "72157594366762375", "photo_flickr_id": "291667450", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43448", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fog is magical above the tmountain peaks .", "storylet_id": "217240"}], [{"original_text": "The three friends pose together in the wilderness.", "album_id": "72157594366762375", "photo_flickr_id": "291667456", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43448", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the three friends pose together in the wilderness .", "storylet_id": "217241"}], [{"original_text": "The tree makes it home in the rock.", "album_id": "72157594366762375", "photo_flickr_id": "291667480", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43448", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tree makes it home in the rock .", "storylet_id": "217242"}], [{"original_text": "In such a high altitude it's common to see the clouds at head level.", "album_id": "72157594366762375", "photo_flickr_id": "291672822", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43448", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in such a high altitude it 's common to see the clouds at head level .", "storylet_id": "217243"}], [{"original_text": "The three friends pose again.", "album_id": "72157594366762375", "photo_flickr_id": "291672829", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43448", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the three friends pose again .", "storylet_id": "217244"}], [{"original_text": "The mountains are cloudy and chilly looking.", "album_id": "72157594366762375", "photo_flickr_id": "291667450", "setting": "last-3-pick-old-and-tell", "worker_id": "QP0S9RBJF7WA61B", "story_id": "43449", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the mountains are cloudy and chilly looking .", "storylet_id": "217245"}], [{"original_text": "The weather won't keep those seeking to enjoy what the mountains have to offer.", "album_id": "72157594366762375", "photo_flickr_id": "291672833", "setting": "last-3-pick-old-and-tell", "worker_id": "QP0S9RBJF7WA61B", "story_id": "43449", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the weather wo n't keep those seeking to enjoy what the mountains have to offer .", "storylet_id": "217246"}], [{"original_text": "Icy waters and snowy banks trail through the mountainside.", "album_id": "72157594366762375", "photo_flickr_id": "291672840", "setting": "last-3-pick-old-and-tell", "worker_id": "QP0S9RBJF7WA61B", "story_id": "43449", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "icy waters and snowy banks trail through the mountainside .", "storylet_id": "217247"}], [{"original_text": "The view is chilly and clear, with a sheen of ice visibly covering most of the water.", "album_id": "72157594366762375", "photo_flickr_id": "292447700", "setting": "last-3-pick-old-and-tell", "worker_id": "QP0S9RBJF7WA61B", "story_id": "43449", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view is chilly and clear , with a sheen of ice visibly covering most of the water .", "storylet_id": "217248"}], [{"original_text": "Even in more somber weather, the mountains are still capable of great beauty.", "album_id": "72157594366762375", "photo_flickr_id": "292454174", "setting": "last-3-pick-old-and-tell", "worker_id": "QP0S9RBJF7WA61B", "story_id": "43449", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even in more somber weather , the mountains are still capable of great beauty .", "storylet_id": "217249"}], [{"original_text": "I went to visit a popular city the other day. ", "album_id": "72157594393064919", "photo_flickr_id": "306880443", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43450", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to visit a popular city the other day .", "storylet_id": "217250"}], [{"original_text": "The view from the bridge was certainly lovely. ", "album_id": "72157594393064919", "photo_flickr_id": "306882950", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43450", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view from the bridge was certainly lovely .", "storylet_id": "217251"}], [{"original_text": "The roads were empty when we went. ", "album_id": "72157594393064919", "photo_flickr_id": "306883358", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43450", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the roads were empty when we went .", "storylet_id": "217252"}], [{"original_text": "We found a cool tunnel and followed it one day. ", "album_id": "72157594393064919", "photo_flickr_id": "306886266", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43450", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found a cool tunnel and followed it one day .", "storylet_id": "217253"}], [{"original_text": "We also spent a lot food and it was so yummy!", "album_id": "72157594393064919", "photo_flickr_id": "306886587", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43450", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also spent a lot food and it was so yummy !", "storylet_id": "217254"}], [{"original_text": "In the park, there is a lovely old building.", "album_id": "72157594393064919", "photo_flickr_id": "306880443", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43451", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the park , there is a lovely old building .", "storylet_id": "217255"}], [{"original_text": "The building is surrounded by trees.", "album_id": "72157594393064919", "photo_flickr_id": "306881180", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43451", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the building is surrounded by trees .", "storylet_id": "217256"}], [{"original_text": "If you look up towards the sky, you see more trees and branches.", "album_id": "72157594393064919", "photo_flickr_id": "306882307", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43451", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "if you look up towards the sky , you see more trees and branches .", "storylet_id": "217257"}], [{"original_text": "The park leads to a bridge.", "album_id": "72157594393064919", "photo_flickr_id": "306882653", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43451", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the park leads to a bridge .", "storylet_id": "217258"}], [{"original_text": "A even longer bridge can be seen across the water. ", "album_id": "72157594393064919", "photo_flickr_id": "306882950", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43451", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a even longer bridge can be seen across the water .", "storylet_id": "217259"}], [{"original_text": "A man went for a walk in New York.", "album_id": "72157594393064919", "photo_flickr_id": "306880443", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43452", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a man went for a walk in location location .", "storylet_id": "217260"}], [{"original_text": "He walked past some bridges.", "album_id": "72157594393064919", "photo_flickr_id": "306882950", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43452", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he walked past some bridges .", "storylet_id": "217261"}], [{"original_text": "He walked down a path.", "album_id": "72157594393064919", "photo_flickr_id": "306883358", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43452", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he walked down a path .", "storylet_id": "217262"}], [{"original_text": "The man even walked into a tunnel.", "album_id": "72157594393064919", "photo_flickr_id": "306886266", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43452", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man even walked into a tunnel .", "storylet_id": "217263"}], [{"original_text": "After his walk the man stopped for breakfast.", "album_id": "72157594393064919", "photo_flickr_id": "306886587", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43452", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after his walk the man stopped for breakfast .", "storylet_id": "217264"}], [{"original_text": "I took the hike out to the castle last week.", "album_id": "72157594393064919", "photo_flickr_id": "306880443", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43453", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took the hike out to the castle last week .", "storylet_id": "217265"}], [{"original_text": "The woods were very lonely.", "album_id": "72157594393064919", "photo_flickr_id": "306881180", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43453", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the woods were very lonely .", "storylet_id": "217266"}], [{"original_text": "Afterward I headed back to the city.", "album_id": "72157594393064919", "photo_flickr_id": "306882307", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43453", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterward i headed back to the city .", "storylet_id": "217267"}], [{"original_text": "I went by the pier to sight see.", "album_id": "72157594393064919", "photo_flickr_id": "306882653", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43453", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i went by the pier to sight see .", "storylet_id": "217268"}], [{"original_text": "The bridge from here looked really big.", "album_id": "72157594393064919", "photo_flickr_id": "306882950", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43453", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bridge from here looked really big .", "storylet_id": "217269"}], [{"original_text": "We decided to go to a creepy old place.", "album_id": "72157594393064919", "photo_flickr_id": "306880443", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "43454", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go to a creepy old place .", "storylet_id": "217270"}], [{"original_text": "We went inside of this house and came back out. Everything looks creepy now.", "album_id": "72157594393064919", "photo_flickr_id": "306881180", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "43454", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went inside of this house and came back out . everything looks creepy now .", "storylet_id": "217271"}], [{"original_text": "The branches are almost all dead, and the ones that aren't are barely alive.", "album_id": "72157594393064919", "photo_flickr_id": "306882307", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "43454", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the branches are almost all dead , and the ones that are n't are barely alive .", "storylet_id": "217272"}], [{"original_text": "Looking back at the city... Nobody is around. We are the only ones left", "album_id": "72157594393064919", "photo_flickr_id": "306882653", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "43454", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "looking back at the city ... nobody is around . we are the only ones left", "storylet_id": "217273"}], [{"original_text": "The city and bridge is completely empty... What should I do?", "album_id": "72157594393064919", "photo_flickr_id": "306882950", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "43454", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the city and bridge is completely empty ... what should i do ?", "storylet_id": "217274"}], [{"original_text": "Ecclectic drinks were poured.", "album_id": "72157594436525255", "photo_flickr_id": "332081717", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43455", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "ecclectic drinks were poured .", "storylet_id": "217275"}], [{"original_text": "There was a lot of dancing.", "album_id": "72157594436525255", "photo_flickr_id": "332081846", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43455", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of dancing .", "storylet_id": "217276"}], [{"original_text": "The lights were a fun part of the show.", "album_id": "72157594436525255", "photo_flickr_id": "332081907", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43455", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lights were a fun part of the show .", "storylet_id": "217277"}], [{"original_text": "Fun photos were taken from the night.", "album_id": "72157594436525255", "photo_flickr_id": "332082550", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43455", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fun photos were taken from the night .", "storylet_id": "217278"}], [{"original_text": "It was a holiday bash to remember.", "album_id": "72157594436525255", "photo_flickr_id": "332082567", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43455", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a holiday bash to remember .", "storylet_id": "217279"}], [{"original_text": "The scenery at the party was quite unique. It felt like a future space odyssey ", "album_id": "72157594436525255", "photo_flickr_id": "332081846", "setting": "first-2-pick-and-tell", "worker_id": "6HVH4UBYFED8DC5", "story_id": "43456", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the scenery at the party was quite unique . it felt like a future space odyssey", "storylet_id": "217280"}], [{"original_text": "People spun lights to make appealing visual patterns in the air", "album_id": "72157594436525255", "photo_flickr_id": "332081907", "setting": "first-2-pick-and-tell", "worker_id": "6HVH4UBYFED8DC5", "story_id": "43456", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people spun lights to make appealing visual patterns in the air", "storylet_id": "217281"}], [{"original_text": "Sometimes the lights got so crazy it was hard to follow the patterns.", "album_id": "72157594436525255", "photo_flickr_id": "332082115", "setting": "first-2-pick-and-tell", "worker_id": "6HVH4UBYFED8DC5", "story_id": "43456", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sometimes the lights got so crazy it was hard to follow the patterns .", "storylet_id": "217282"}], [{"original_text": "Some of us were dressed rather ridiculously.", "album_id": "72157594436525255", "photo_flickr_id": "332082211", "setting": "first-2-pick-and-tell", "worker_id": "6HVH4UBYFED8DC5", "story_id": "43456", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of us were dressed rather ridiculously .", "storylet_id": "217283"}], [{"original_text": "It was great getting to spend time together with the crew.", "album_id": "72157594436525255", "photo_flickr_id": "332082550", "setting": "first-2-pick-and-tell", "worker_id": "6HVH4UBYFED8DC5", "story_id": "43456", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was great getting to spend time together with the crew .", "storylet_id": "217284"}], [{"original_text": "The group of friends had a Christmas party over the holiday break.", "album_id": "72157594436525255", "photo_flickr_id": "332081717", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "43457", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group of friends had a christmas party over the holiday break .", "storylet_id": "217285"}], [{"original_text": "There was lots of great decorations at the party.", "album_id": "72157594436525255", "photo_flickr_id": "332081846", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "43457", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was lots of great decorations at the party .", "storylet_id": "217286"}], [{"original_text": "They also had a light show at midnight that was incredible.", "album_id": "72157594436525255", "photo_flickr_id": "332081907", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "43457", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also had a light show at midnight that was incredible .", "storylet_id": "217287"}], [{"original_text": "All of the friends were happy and in the Christmas spirit.", "album_id": "72157594436525255", "photo_flickr_id": "332082550", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "43457", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the friends were happy and in the christmas spirit .", "storylet_id": "217288"}], [{"original_text": "Every exchanged gifts at the end of the night and wished everyone a merry Christmas.", "album_id": "72157594436525255", "photo_flickr_id": "332082567", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "43457", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "every exchanged gifts at the end of the night and wished everyone a merry christmas .", "storylet_id": "217289"}], [{"original_text": "I spent a lot of time decorating the place for tonight.", "album_id": "72157594436525255", "photo_flickr_id": "332081846", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43458", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spent a lot of time decorating the place for tonight .", "storylet_id": "217290"}], [{"original_text": "I put up so many lights.", "album_id": "72157594436525255", "photo_flickr_id": "332081907", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43458", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i put up so many lights .", "storylet_id": "217291"}], [{"original_text": "Some of them were very obtrusive.", "album_id": "72157594436525255", "photo_flickr_id": "332082115", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43458", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them were very obtrusive .", "storylet_id": "217292"}], [{"original_text": "I got to meet a lot of new people.", "album_id": "72157594436525255", "photo_flickr_id": "332082211", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43458", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i got to meet a lot of new people .", "storylet_id": "217293"}], [{"original_text": "Afterward we got together for group photos.", "album_id": "72157594436525255", "photo_flickr_id": "332082550", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43458", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we got together for group photos .", "storylet_id": "217294"}], [{"original_text": "Things were a little strange at the family holiday party this year. We went with a disco theme. ", "album_id": "72157594436525255", "photo_flickr_id": "332081846", "setting": "last-3-pick-old-and-tell", "worker_id": "0OX6WA96FXSIUHF", "story_id": "43459", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "things were a little strange at the family holiday party this year . we went with a disco theme .", "storylet_id": "217295"}], [{"original_text": "The colorful lights and disco balls added added an other-worldy feel to the festivities.", "album_id": "72157594436525255", "photo_flickr_id": "332081907", "setting": "last-3-pick-old-and-tell", "worker_id": "0OX6WA96FXSIUHF", "story_id": "43459", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the colorful lights and disco balls added added an other-worldy feel to the festivities .", "storylet_id": "217296"}], [{"original_text": "Cousin Ed got a little dizzy when he walked to close to the whirling lights. ", "album_id": "72157594436525255", "photo_flickr_id": "332082115", "setting": "last-3-pick-old-and-tell", "worker_id": "0OX6WA96FXSIUHF", "story_id": "43459", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "cousin [male] got a little dizzy when he walked to close to the whirling lights .", "storylet_id": "217297"}], [{"original_text": "And Dan confused Sherry for an elf and tried to pick her up. ", "album_id": "72157594436525255", "photo_flickr_id": "332082211", "setting": "last-3-pick-old-and-tell", "worker_id": "0OX6WA96FXSIUHF", "story_id": "43459", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and [male] confused [female] for an elf and tried to pick her up .", "storylet_id": "217298"}], [{"original_text": "But the group caroling was a hit, leaving everyone wondering how to top it next year. ", "album_id": "72157594436525255", "photo_flickr_id": "332082550", "setting": "last-3-pick-old-and-tell", "worker_id": "0OX6WA96FXSIUHF", "story_id": "43459", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the group caroling was a hit , leaving everyone wondering how to top it next year .", "storylet_id": "217299"}], [{"original_text": "The day she left was rather wet and dreary.", "album_id": "72157594455403320", "photo_flickr_id": "342969145", "setting": "first-2-pick-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43460", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day she left was rather wet and dreary .", "storylet_id": "217300"}], [{"original_text": "We had to cross the street in order to get to the bus pick-up location.", "album_id": "72157594455403320", "photo_flickr_id": "342969141", "setting": "first-2-pick-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43460", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to cross the street in order to get to the bus pick-up location .", "storylet_id": "217301"}], [{"original_text": "Her suitcases become quite heavy after walking just a few blocks.", "album_id": "72157594455403320", "photo_flickr_id": "342976697", "setting": "first-2-pick-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43460", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her suitcases become quite heavy after walking just a few blocks .", "storylet_id": "217302"}], [{"original_text": "One last embrace as the motor coach will be arriving soon.", "album_id": "72157594455403320", "photo_flickr_id": "342993768", "setting": "first-2-pick-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43460", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one last embrace as the motor coach will be arriving soon .", "storylet_id": "217303"}], [{"original_text": "The motor coach finally arrived and she was happy to have her luggage loaded and sit down.", "album_id": "72157594455403320", "photo_flickr_id": "343240807", "setting": "first-2-pick-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43460", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the motor coach finally arrived and she was happy to have her luggage loaded and sit down .", "storylet_id": "217304"}], [{"original_text": "The Bus ready to depart. ", "album_id": "72157594455403320", "photo_flickr_id": "342899730", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43461", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bus ready to depart .", "storylet_id": "217305"}], [{"original_text": "The girlfriend accompanied her boyfriend to the bus stop. ", "album_id": "72157594455403320", "photo_flickr_id": "342969145", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43461", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girlfriend accompanied her boyfriend to the bus stop .", "storylet_id": "217306"}], [{"original_text": "Final goodbye, final hug and final kiss. ", "album_id": "72157594455403320", "photo_flickr_id": "342993762", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43461", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "final goodbye , final hug and final kiss .", "storylet_id": "217307"}], [{"original_text": "Man saying his farewells to his friends. ", "album_id": "72157594455403320", "photo_flickr_id": "342993759", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43461", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "man saying his farewells to his friends .", "storylet_id": "217308"}], [{"original_text": "The Eastern bus departing with the passengers. ", "album_id": "72157594455403320", "photo_flickr_id": "343240807", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43461", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the eastern bus departing with the passengers .", "storylet_id": "217309"}], [{"original_text": "Waiting for the bus can be a painful experience.", "album_id": "72157594455403320", "photo_flickr_id": "342899730", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43462", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "waiting for the bus can be a painful experience .", "storylet_id": "217310"}], [{"original_text": "But this couple entertained themselves,", "album_id": "72157594455403320", "photo_flickr_id": "342969145", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43462", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but this couple entertained themselves ,", "storylet_id": "217311"}], [{"original_text": "they cuddled up close for warmth and enjoyed the extra few minutes that they had to focus on each other.", "album_id": "72157594455403320", "photo_flickr_id": "342993762", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43462", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they cuddled up close for warmth and enjoyed the extra few minutes that they had to focus on each other .", "storylet_id": "217312"}], [{"original_text": "This group of friends also used each other to entertain themselves while they waited.", "album_id": "72157594455403320", "photo_flickr_id": "342993759", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43462", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this group of friends also used each other to entertain themselves while they waited .", "storylet_id": "217313"}], [{"original_text": "Until finally, the bus pulled up, and everyone got on it. Soon, they would be at their final destination and would carry out their normal, routine lives. ", "album_id": "72157594455403320", "photo_flickr_id": "343240807", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43462", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "until finally , the bus pulled up , and everyone got on it . soon , they would be at their final destination and would carry out their normal , routine lives .", "storylet_id": "217314"}], [{"original_text": "After a long bus ride we finally arrived in the city.", "album_id": "72157594455403320", "photo_flickr_id": "342899730", "setting": "last-3-pick-old-and-tell", "worker_id": "FK0Z5WX1423XNR6", "story_id": "43463", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after a long bus ride we finally arrived in the city .", "storylet_id": "217315"}], [{"original_text": "We waited with our luggage for a taxi to pick us up.", "album_id": "72157594455403320", "photo_flickr_id": "342969145", "setting": "last-3-pick-old-and-tell", "worker_id": "FK0Z5WX1423XNR6", "story_id": "43463", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we waited with our luggage for a taxi to pick us up .", "storylet_id": "217316"}], [{"original_text": "The weather was really cold so we stayed close for warmth.", "album_id": "72157594455403320", "photo_flickr_id": "342993762", "setting": "last-3-pick-old-and-tell", "worker_id": "FK0Z5WX1423XNR6", "story_id": "43463", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the weather was really cold so we stayed close for warmth .", "storylet_id": "217317"}], [{"original_text": "We saw these men waiting for the bus to take them to the beach.", "album_id": "72157594455403320", "photo_flickr_id": "342993759", "setting": "last-3-pick-old-and-tell", "worker_id": "FK0Z5WX1423XNR6", "story_id": "43463", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw these men waiting for the bus to take them to the beach .", "storylet_id": "217318"}], [{"original_text": "The men got on the bus and headed for the beach.", "album_id": "72157594455403320", "photo_flickr_id": "343240807", "setting": "last-3-pick-old-and-tell", "worker_id": "FK0Z5WX1423XNR6", "story_id": "43463", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the men got on the bus and headed for the beach .", "storylet_id": "217319"}], [{"original_text": "We were leaving for our trip today.", "album_id": "72157594455403320", "photo_flickr_id": "342969145", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43464", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were leaving for our trip today .", "storylet_id": "217320"}], [{"original_text": "Many other people were gathering to wait for the tour bus.", "album_id": "72157594455403320", "photo_flickr_id": "342969141", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43464", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many other people were gathering to wait for the tour bus .", "storylet_id": "217321"}], [{"original_text": "So many people had luggage to go on trips.", "album_id": "72157594455403320", "photo_flickr_id": "342976697", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43464", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so many people had luggage to go on trips .", "storylet_id": "217322"}], [{"original_text": "The wait for the bus was long, but we knew it would be worth it.", "album_id": "72157594455403320", "photo_flickr_id": "342993768", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43464", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wait for the bus was long , but we knew it would be worth it .", "storylet_id": "217323"}], [{"original_text": "The bus is here! Time to go on our vacation!", "album_id": "72157594455403320", "photo_flickr_id": "343240807", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43464", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bus is here ! time to go on our vacation !", "storylet_id": "217324"}], [{"original_text": "The group was dressed and ready to go tot the wedding reception.", "album_id": "72157594430120465", "photo_flickr_id": "328288681", "setting": "first-2-pick-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43465", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group was dressed and ready to go tot the wedding reception .", "storylet_id": "217325"}], [{"original_text": "The bride and groom went out on the floor for the first dance.", "album_id": "72157594430120465", "photo_flickr_id": "328290113", "setting": "first-2-pick-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43465", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom went out on the floor for the first dance .", "storylet_id": "217326"}], [{"original_text": "During the reception, the best man roasted the groom.", "album_id": "72157594430120465", "photo_flickr_id": "328290477", "setting": "first-2-pick-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43465", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "during the reception , the best man roasted the groom .", "storylet_id": "217327"}], [{"original_text": "The party continued into the night.", "album_id": "72157594430120465", "photo_flickr_id": "328298906", "setting": "first-2-pick-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43465", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the party continued into the night .", "storylet_id": "217328"}], [{"original_text": "The attendees wanted the party to go on indefinitely but ultimately everyone had to leave.", "album_id": "72157594430120465", "photo_flickr_id": "328298249", "setting": "first-2-pick-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43465", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the attendees wanted the party to go on indefinitely but ultimately everyone had to leave .", "storylet_id": "217329"}], [{"original_text": "I had a great time at the banquet dinner tonight.", "album_id": "72157594430120465", "photo_flickr_id": "328288998", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43466", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the banquet dinner tonight .", "storylet_id": "217330"}], [{"original_text": "All of my friends were there.", "album_id": "72157594430120465", "photo_flickr_id": "328288681", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43466", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of my friends were there .", "storylet_id": "217331"}], [{"original_text": "We spent a lot of time dancing.", "album_id": "72157594430120465", "photo_flickr_id": "328289806", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43466", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we spent a lot of time dancing .", "storylet_id": "217332"}], [{"original_text": "It was very romantic.", "album_id": "72157594430120465", "photo_flickr_id": "328289374", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43466", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was very romantic .", "storylet_id": "217333"}], [{"original_text": "I hope I can go to another party there.", "album_id": "72157594430120465", "photo_flickr_id": "328290113", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43466", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope i can go to another party there .", "storylet_id": "217334"}], [{"original_text": "These are some of the guests arriving at the wedding. ", "album_id": "72157594430120465", "photo_flickr_id": "328288681", "setting": "last-3-pick-old-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "43467", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these are some of the guests arriving at the wedding .", "storylet_id": "217335"}], [{"original_text": "This is the dance between the newlyweds. ", "album_id": "72157594430120465", "photo_flickr_id": "328290113", "setting": "last-3-pick-old-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "43467", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the dance between the newlyweds .", "storylet_id": "217336"}], [{"original_text": "The best man is giving a toast. ", "album_id": "72157594430120465", "photo_flickr_id": "328290477", "setting": "last-3-pick-old-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "43467", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the best man is giving a toast .", "storylet_id": "217337"}], [{"original_text": "Now the guests are mingling and having a great time at the reception. ", "album_id": "72157594430120465", "photo_flickr_id": "328298906", "setting": "last-3-pick-old-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "43467", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now the guests are mingling and having a great time at the reception .", "storylet_id": "217338"}], [{"original_text": "The lights and decorations were beautiful at the event. ", "album_id": "72157594430120465", "photo_flickr_id": "328298249", "setting": "last-3-pick-old-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "43467", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lights and decorations were beautiful at the event .", "storylet_id": "217339"}], [{"original_text": "A group of friends and I decided to attend a formal event that was held by a mutual other friend of ours.", "album_id": "72157594430120465", "photo_flickr_id": "328288681", "setting": "last-3-pick-old-and-tell", "worker_id": "1AT21QNSOGYSZRA", "story_id": "43468", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends and i decided to attend a formal event that was held by a mutual other friend of ours .", "storylet_id": "217340"}], [{"original_text": "There was dancing on the dance floor and apparently some kissing too by the love birds.", "album_id": "72157594430120465", "photo_flickr_id": "328290113", "setting": "last-3-pick-old-and-tell", "worker_id": "1AT21QNSOGYSZRA", "story_id": "43468", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was dancing on the dance floor and apparently some kissing too by the love birds .", "storylet_id": "217341"}], [{"original_text": "A friend read some important piece of speech to make the mood more suited for the event.", "album_id": "72157594430120465", "photo_flickr_id": "328290477", "setting": "last-3-pick-old-and-tell", "worker_id": "1AT21QNSOGYSZRA", "story_id": "43468", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a friend read some important piece of speech to make the mood more suited for the event .", "storylet_id": "217342"}], [{"original_text": "Everyone had a good time mingling around with each other.", "album_id": "72157594430120465", "photo_flickr_id": "328298906", "setting": "last-3-pick-old-and-tell", "worker_id": "1AT21QNSOGYSZRA", "story_id": "43468", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone had a good time mingling around with each other .", "storylet_id": "217343"}], [{"original_text": "We left when there was a fabulous lighted setting on the platform, look at that design!", "album_id": "72157594430120465", "photo_flickr_id": "328298249", "setting": "last-3-pick-old-and-tell", "worker_id": "1AT21QNSOGYSZRA", "story_id": "43468", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we left when there was a fabulous lighted setting on the platform , look at that design !", "storylet_id": "217344"}], [{"original_text": "Today was the day of my big sisters wedding!", "album_id": "72157594430120465", "photo_flickr_id": "328288681", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "43469", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day of my big sisters wedding !", "storylet_id": "217345"}], [{"original_text": "The bride and groom made a cute couple.", "album_id": "72157594430120465", "photo_flickr_id": "328290113", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "43469", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bride and groom made a cute couple .", "storylet_id": "217346"}], [{"original_text": "The best man made a speech that moved everyone to tears...and laughter.", "album_id": "72157594430120465", "photo_flickr_id": "328290477", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "43469", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the best man made a speech that moved everyone to tears ... and laughter .", "storylet_id": "217347"}], [{"original_text": "The party afterwards was a big hit with the guests.", "album_id": "72157594430120465", "photo_flickr_id": "328298906", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "43469", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the party afterwards was a big hit with the guests .", "storylet_id": "217348"}], [{"original_text": "It went late into the night.", "album_id": "72157594430120465", "photo_flickr_id": "328298249", "setting": "last-3-pick-old-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "43469", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it went late into the night .", "storylet_id": "217349"}], [{"original_text": "It had the best coffee in the world.", "album_id": "72157594529919590", "photo_flickr_id": "386830202", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43470", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it had the best coffee in the world .", "storylet_id": "217350"}], [{"original_text": "Patrons could get many options.", "album_id": "72157594529919590", "photo_flickr_id": "386831711", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43470", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "patrons could get many options .", "storylet_id": "217351"}], [{"original_text": "They looked forward to relaxing with a cup.", "album_id": "72157594529919590", "photo_flickr_id": "386832573", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43470", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they looked forward to relaxing with a cup .", "storylet_id": "217352"}], [{"original_text": "And getting their preference fulfilled.", "album_id": "72157594529919590", "photo_flickr_id": "386833049", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43470", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and getting their preference fulfilled .", "storylet_id": "217353"}], [{"original_text": "Sitting down with company was a relaxing experience.", "album_id": "72157594529919590", "photo_flickr_id": "386833619", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43470", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sitting down with company was a relaxing experience .", "storylet_id": "217354"}], [{"original_text": "Jin Song decided she wanted some tea.", "album_id": "72157594529919590", "photo_flickr_id": "386831711", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "43471", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "jin song decided she wanted some tea .", "storylet_id": "217355"}], [{"original_text": "So she got all the girls together and went to the tea shop.", "album_id": "72157594529919590", "photo_flickr_id": "386835812", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "43471", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so she got all the girls together and went to the tea shop .", "storylet_id": "217356"}], [{"original_text": "At the shop they saw Wang Tu, and invited her to join.", "album_id": "72157594529919590", "photo_flickr_id": "386835590", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "43471", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the shop they saw wang tu , and invited her to join .", "storylet_id": "217357"}], [{"original_text": "Later they called up some of the guys from school.", "album_id": "72157594529919590", "photo_flickr_id": "386832573", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "43471", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later they called up some of the guys from school .", "storylet_id": "217358"}], [{"original_text": "They all decided to go down by the marina and hang out.", "album_id": "72157594529919590", "photo_flickr_id": "386832864", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "43471", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all decided to go down by the marina and hang out .", "storylet_id": "217359"}], [{"original_text": "Today we woke up to the best cafe spot ever.", "album_id": "72157594529919590", "photo_flickr_id": "386830202", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "43472", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we woke up to the best cafe spot ever .", "storylet_id": "217360"}], [{"original_text": "This drink tasted so delicious.", "album_id": "72157594529919590", "photo_flickr_id": "386831711", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "43472", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this drink tasted so delicious .", "storylet_id": "217361"}], [{"original_text": "My friends was spotted near by.", "album_id": "72157594529919590", "photo_flickr_id": "386832573", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "43472", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friends was spotted near by .", "storylet_id": "217362"}], [{"original_text": "It was time to order my favorite drink.", "album_id": "72157594529919590", "photo_flickr_id": "386833049", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "43472", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was time to order my favorite drink .", "storylet_id": "217363"}], [{"original_text": "Now my boyfriend and I is enjoying this nice sunny day.", "album_id": "72157594529919590", "photo_flickr_id": "386833619", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "43472", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now my boyfriend and i is enjoying this nice sunny day .", "storylet_id": "217364"}], [{"original_text": "A group of friends meet at a street restaurant.", "album_id": "72157594529919590", "photo_flickr_id": "386830202", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43473", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends meet at a street restaurant .", "storylet_id": "217365"}], [{"original_text": "They start off my ordering coffee.", "album_id": "72157594529919590", "photo_flickr_id": "386831711", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43473", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they start off my ordering coffee .", "storylet_id": "217366"}], [{"original_text": "The friends wait outside for their food.", "album_id": "72157594529919590", "photo_flickr_id": "386832573", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43473", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the friends wait outside for their food .", "storylet_id": "217367"}], [{"original_text": "One of the women ask for more coffee.", "album_id": "72157594529919590", "photo_flickr_id": "386833049", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43473", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the women ask for more coffee .", "storylet_id": "217368"}], [{"original_text": "They sit and enjoy the day.", "album_id": "72157594529919590", "photo_flickr_id": "386833619", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43473", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they sit and enjoy the day .", "storylet_id": "217369"}], [{"original_text": "We went out around the city today.", "album_id": "72157594529919590", "photo_flickr_id": "386830202", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43474", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went out around the city today .", "storylet_id": "217370"}], [{"original_text": "We got many interesting things to eat.", "album_id": "72157594529919590", "photo_flickr_id": "386831711", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43474", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got many interesting things to eat .", "storylet_id": "217371"}], [{"original_text": "Not to mention, to drink!", "album_id": "72157594529919590", "photo_flickr_id": "386832573", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43474", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not to mention , to drink !", "storylet_id": "217372"}], [{"original_text": "The shops were very interesting.", "album_id": "72157594529919590", "photo_flickr_id": "386833049", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43474", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the shops were very interesting .", "storylet_id": "217373"}], [{"original_text": "We had a great time out today!", "album_id": "72157594529919590", "photo_flickr_id": "386833619", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43474", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time out today !", "storylet_id": "217374"}], [{"original_text": "He could see the Eiffel Tower off in the distance.", "album_id": "72157600018126769", "photo_flickr_id": "427347930", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43475", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he could see the location location off in the distance .", "storylet_id": "217375"}], [{"original_text": "He got closer and closer.", "album_id": "72157600018126769", "photo_flickr_id": "427346720", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43475", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he got closer and closer .", "storylet_id": "217376"}], [{"original_text": "Finally he was able to get a clear view of the tower.", "album_id": "72157600018126769", "photo_flickr_id": "427347732", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43475", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally he was able to get a clear view of the tower .", "storylet_id": "217377"}], [{"original_text": "It was only once he was there that he realized how large it was.", "album_id": "72157600018126769", "photo_flickr_id": "427347204", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43475", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was only once he was there that he realized how large it was .", "storylet_id": "217378"}], [{"original_text": "After his trip to the tower he retired to the train station to wait for his ride back to the hotel.", "album_id": "72157600018126769", "photo_flickr_id": "427347989", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43475", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after his trip to the tower he retired to the train station to wait for his ride back to the hotel .", "storylet_id": "217379"}], [{"original_text": "John enjoyed his trip to France.", "album_id": "72157600018126769", "photo_flickr_id": "427347204", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43476", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] enjoyed his trip to location .", "storylet_id": "217380"}], [{"original_text": "He rode the subway.", "album_id": "72157600018126769", "photo_flickr_id": "427347989", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43476", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he rode the subway .", "storylet_id": "217381"}], [{"original_text": "The park was lit by the light of the moon.", "album_id": "72157600018126769", "photo_flickr_id": "427346900", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43476", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the park was lit by the light of the moon .", "storylet_id": "217382"}], [{"original_text": "The water reflected the lights off the building.", "album_id": "72157600018126769", "photo_flickr_id": "427347862", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43476", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the water reflected the lights off the building .", "storylet_id": "217383"}], [{"original_text": "The best part of the trip was seeing the Effiel Tower.", "album_id": "72157600018126769", "photo_flickr_id": "427346720", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43476", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part of the trip was seeing the location location .", "storylet_id": "217384"}], [{"original_text": "We arrived in Paris and immediately saw the Eiffel Tower.", "album_id": "72157600018126769", "photo_flickr_id": "427347930", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43477", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived in location and immediately saw the location location .", "storylet_id": "217385"}], [{"original_text": "It was lit up and continued to move closer and closer.", "album_id": "72157600018126769", "photo_flickr_id": "427346720", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43477", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was lit up and continued to move closer and closer .", "storylet_id": "217386"}], [{"original_text": "We, finally, got the best view possible and snapped a lovely picture.", "album_id": "72157600018126769", "photo_flickr_id": "427347732", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43477", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we , finally , got the best view possible and snapped a lovely picture .", "storylet_id": "217387"}], [{"original_text": "Then, Johnny, decided he was tired.", "album_id": "72157600018126769", "photo_flickr_id": "427347204", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43477", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , [male] , decided he was tired .", "storylet_id": "217388"}], [{"original_text": "So, we he headed for the subway and moved back toward the hotel.", "album_id": "72157600018126769", "photo_flickr_id": "427347989", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43477", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so , we he headed for the subway and moved back toward the hotel .", "storylet_id": "217389"}], [{"original_text": "This man is on holiday in paris.", "album_id": "72157600018126769", "photo_flickr_id": "427347204", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43478", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this man is on holiday in paris .", "storylet_id": "217390"}], [{"original_text": "He waits at the bus station to take his ride.", "album_id": "72157600018126769", "photo_flickr_id": "427347989", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43478", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he waits at the bus station to take his ride .", "storylet_id": "217391"}], [{"original_text": "First he walks by the water.", "album_id": "72157600018126769", "photo_flickr_id": "427346900", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43478", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "first he walks by the water .", "storylet_id": "217392"}], [{"original_text": "The man likes to look at buildings.", "album_id": "72157600018126769", "photo_flickr_id": "427347862", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43478", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man likes to look at buildings .", "storylet_id": "217393"}], [{"original_text": "He ends his walk at the Eifle Tower.", "album_id": "72157600018126769", "photo_flickr_id": "427346720", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43478", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he ends his walk at the location location .", "storylet_id": "217394"}], [{"original_text": "I spent some time walking around downtown last night.", "album_id": "72157600018126769", "photo_flickr_id": "427347204", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43479", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spent some time walking around downtown last night .", "storylet_id": "217395"}], [{"original_text": "After a few hours I went to the subway to head back home.", "album_id": "72157600018126769", "photo_flickr_id": "427347989", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43479", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after a few hours i went to the subway to head back home .", "storylet_id": "217396"}], [{"original_text": "The train came and took me back to my neighborhood.", "album_id": "72157600018126769", "photo_flickr_id": "427346900", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43479", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the train came and took me back to my neighborhood .", "storylet_id": "217397"}], [{"original_text": "Afterward I finally arrived home.", "album_id": "72157600018126769", "photo_flickr_id": "427347862", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43479", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward i finally arrived home .", "storylet_id": "217398"}], [{"original_text": "The view from my house is great.", "album_id": "72157600018126769", "photo_flickr_id": "427346720", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43479", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view from my house is great .", "storylet_id": "217399"}], [{"original_text": "Looking outside all Karen could see was snow.", "album_id": "72157600049163823", "photo_flickr_id": "447190596", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43480", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "looking outside all [female] could see was snow .", "storylet_id": "217400"}], [{"original_text": "There was snow on the bird house. ", "album_id": "72157600049163823", "photo_flickr_id": "447188998", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43480", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was snow on the bird house .", "storylet_id": "217401"}], [{"original_text": "There was snow covering the barn.", "album_id": "72157600049163823", "photo_flickr_id": "447189670", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43480", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was snow covering the barn .", "storylet_id": "217402"}], [{"original_text": "With all that snow there was only one thing to do. ", "album_id": "72157600049163823", "photo_flickr_id": "447364209", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43480", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with all that snow there was only one thing to do .", "storylet_id": "217403"}], [{"original_text": "Karen built a snowwoman as big as her. ", "album_id": "72157600049163823", "photo_flickr_id": "447369027", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43480", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] built a snowwoman as big as her .", "storylet_id": "217404"}], [{"original_text": "The day after the snowstorm we woke up to the entire yard looking like a winter wonderland.", "album_id": "72157600049163823", "photo_flickr_id": "447195447", "setting": "first-2-pick-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43481", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day after the snowstorm we woke up to the entire yard looking like a winter wonderland .", "storylet_id": "217405"}], [{"original_text": "Our little girl immediately had to run out side to play in the snow.", "album_id": "72157600049163823", "photo_flickr_id": "447357680", "setting": "first-2-pick-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43481", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our little girl immediately had to run out side to play in the snow .", "storylet_id": "217406"}], [{"original_text": "We soon noticed that the heavy snow had damaged some of our pine trees on the side of the house.", "album_id": "72157600049163823", "photo_flickr_id": "447365529", "setting": "first-2-pick-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43481", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we soon noticed that the heavy snow had damaged some of our pine trees on the side of the house .", "storylet_id": "217407"}], [{"original_text": "Luckily it was only part of one of the trees and we can take care of it after the snow melts.", "album_id": "72157600049163823", "photo_flickr_id": "447368067", "setting": "first-2-pick-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43481", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "luckily it was only part of one of the trees and we can take care of it after the snow melts .", "storylet_id": "217408"}], [{"original_text": "She did an excellent job creating her snow man today!", "album_id": "72157600049163823", "photo_flickr_id": "447369027", "setting": "first-2-pick-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43481", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she did an excellent job creating her snow man today !", "storylet_id": "217409"}], [{"original_text": "Last night there was a lot of snow fall.", "album_id": "72157600049163823", "photo_flickr_id": "447190596", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43482", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night there was a lot of snow fall .", "storylet_id": "217410"}], [{"original_text": "Everything was covered in the morning.", "album_id": "72157600049163823", "photo_flickr_id": "447188998", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43482", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything was covered in the morning .", "storylet_id": "217411"}], [{"original_text": "I had a lot of work to do to clear the snow off the property.", "album_id": "72157600049163823", "photo_flickr_id": "447189670", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43482", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a lot of work to do to clear the snow off the property .", "storylet_id": "217412"}], [{"original_text": "The children went out to play in it.", "album_id": "72157600049163823", "photo_flickr_id": "447364209", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43482", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the children went out to play in it .", "storylet_id": "217413"}], [{"original_text": "They made snowmen.", "album_id": "72157600049163823", "photo_flickr_id": "447369027", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43482", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they made snowmen .", "storylet_id": "217414"}], [{"original_text": "It snowed for the first time this winter.", "album_id": "72157600049163823", "photo_flickr_id": "447195447", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "43483", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it snowed for the first time this winter .", "storylet_id": "217415"}], [{"original_text": "We started off making a little snowman.", "album_id": "72157600049163823", "photo_flickr_id": "447357680", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "43483", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started off making a little snowman .", "storylet_id": "217416"}], [{"original_text": "Then we walked around in the trees to see everything covered in snow.", "album_id": "72157600049163823", "photo_flickr_id": "447365529", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "43483", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we walked around in the trees to see everything covered in snow .", "storylet_id": "217417"}], [{"original_text": "It was wonderfully white and snowy everywhere.", "album_id": "72157600049163823", "photo_flickr_id": "447368067", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "43483", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was wonderfully white and snowy everywhere .", "storylet_id": "217418"}], [{"original_text": "When we got back, April had finished her snowman", "album_id": "72157600049163823", "photo_flickr_id": "447369027", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "43483", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we got back , [female] had finished her snowman", "storylet_id": "217419"}], [{"original_text": "Cold and snowy Winter days", "album_id": "72157600049163823", "photo_flickr_id": "447195447", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43484", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "cold and snowy winter days", "storylet_id": "217420"}], [{"original_text": "are perfect for building a snow man.", "album_id": "72157600049163823", "photo_flickr_id": "447357680", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43484", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "are perfect for building a snow man .", "storylet_id": "217421"}], [{"original_text": "You have to search for the right snow", "album_id": "72157600049163823", "photo_flickr_id": "447365529", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43484", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you have to search for the right snow", "storylet_id": "217422"}], [{"original_text": "to pack into balls to form the snow man's figure.", "album_id": "72157600049163823", "photo_flickr_id": "447368067", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43484", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to pack into balls to form the snow man 's figure .", "storylet_id": "217423"}], [{"original_text": "But once you find the perfect snow, the body really comes together, and a snowman is made. This is how little Debbie spent her Wintery afternoon, and she had a blast. ", "album_id": "72157600049163823", "photo_flickr_id": "447369027", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43484", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but once you find the perfect snow , the body really comes together , and a snowman is made . this is how little [female] spent her wintery afternoon , and she had a blast .", "storylet_id": "217424"}], [{"original_text": "We had breakfast at a restaurant, before heading out on our trip.", "album_id": "72157600077565147", "photo_flickr_id": "459387947", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43485", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had breakfast at a restaurant , before heading out on our trip .", "storylet_id": "217425"}], [{"original_text": "First we visited Sea World and saw killer Whales do tricks in the water. ", "album_id": "72157600077565147", "photo_flickr_id": "459388735", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43485", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we visited sea world and saw killer whales do tricks in the water .", "storylet_id": "217426"}], [{"original_text": "Afterwards we went to a park, that had fields of different colored tulips. ", "album_id": "72157600077565147", "photo_flickr_id": "459390213", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43485", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards we went to a park , that had fields of different colored tulips .", "storylet_id": "217427"}], [{"original_text": "Here you see, purple, white and pink colored tulips. ", "album_id": "72157600077565147", "photo_flickr_id": "459381156", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43485", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here you see , purple , white and pink colored tulips .", "storylet_id": "217428"}], [{"original_text": "We saw some bikers, on our drive back to our apartment.", "album_id": "72157600077565147", "photo_flickr_id": "459392509", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43485", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we saw some bikers , on our drive back to our apartment .", "storylet_id": "217429"}], [{"original_text": "We met a bike gang on our way to the next town. ", "album_id": "72157600077565147", "photo_flickr_id": "459378570", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43486", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we met a bike gang on our way to the next town .", "storylet_id": "217430"}], [{"original_text": "They were nice and introduced themselves to us. ", "album_id": "72157600077565147", "photo_flickr_id": "459389279", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43486", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were nice and introduced themselves to us .", "storylet_id": "217431"}], [{"original_text": "They showed us a beautiful flower garden. ", "album_id": "72157600077565147", "photo_flickr_id": "459390213", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43486", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they showed us a beautiful flower garden .", "storylet_id": "217432"}], [{"original_text": "It was great to smell the fresh flowers. ", "album_id": "72157600077565147", "photo_flickr_id": "459382094", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43486", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was great to smell the fresh flowers .", "storylet_id": "217433"}], [{"original_text": "We watched them drive off and show off their skills. ", "album_id": "72157600077565147", "photo_flickr_id": "459383232", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43486", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we watched them drive off and show off their skills .", "storylet_id": "217434"}], [{"original_text": "The motorcycle show was well underway.", "album_id": "72157600077565147", "photo_flickr_id": "459378570", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43487", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the motorcycle show was well underway .", "storylet_id": "217435"}], [{"original_text": "But a few visitors took a break.", "album_id": "72157600077565147", "photo_flickr_id": "459389279", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43487", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but a few visitors took a break .", "storylet_id": "217436"}], [{"original_text": "They decided to go look at the local flora.", "album_id": "72157600077565147", "photo_flickr_id": "459390213", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43487", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they decided to go look at the local flora .", "storylet_id": "217437"}], [{"original_text": "It was truly gorgeous.", "album_id": "72157600077565147", "photo_flickr_id": "459382094", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43487", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was truly gorgeous .", "storylet_id": "217438"}], [{"original_text": "It made for great scenery.", "album_id": "72157600077565147", "photo_flickr_id": "459383232", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43487", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it made for great scenery .", "storylet_id": "217439"}], [{"original_text": "Went for a ride with the whole gang.", "album_id": "72157600077565147", "photo_flickr_id": "459387947", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43488", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went for a ride with the whole gang .", "storylet_id": "217440"}], [{"original_text": "We saw Shamu in a lake!", "album_id": "72157600077565147", "photo_flickr_id": "459388735", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43488", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw shamu in a lake !", "storylet_id": "217441"}], [{"original_text": "Wow, that is one serious field of tulips.", "album_id": "72157600077565147", "photo_flickr_id": "459390213", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43488", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "wow , that is one serious field of tulips .", "storylet_id": "217442"}], [{"original_text": "So many different colors of beautiful tulips.", "album_id": "72157600077565147", "photo_flickr_id": "459381156", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43488", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so many different colors of beautiful tulips .", "storylet_id": "217443"}], [{"original_text": "Just enjoying the road, on my steel horse.", "album_id": "72157600077565147", "photo_flickr_id": "459392509", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43488", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "just enjoying the road , on my steel horse .", "storylet_id": "217444"}], [{"original_text": "The bikes were lined up in a row,", "album_id": "72157600077565147", "photo_flickr_id": "459378570", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43489", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bikes were lined up in a row ,", "storylet_id": "217445"}], [{"original_text": "just waiting for their bikers to get on and go for a ride.", "album_id": "72157600077565147", "photo_flickr_id": "459389279", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43489", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "just waiting for their bikers to get on and go for a ride .", "storylet_id": "217446"}], [{"original_text": "The flowers as well were just lined up waiting", "album_id": "72157600077565147", "photo_flickr_id": "459390213", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43489", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the flowers as well were just lined up waiting", "storylet_id": "217447"}], [{"original_text": "for the riders to ride through them,", "album_id": "72157600077565147", "photo_flickr_id": "459382094", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43489", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "for the riders to ride through them ,", "storylet_id": "217448"}], [{"original_text": "so the bikers got on their bikes and road through the beautiful flowers on this crisp, clear day. ", "album_id": "72157600077565147", "photo_flickr_id": "459383232", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43489", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so the bikers got on their bikes and road through the beautiful flowers on this crisp , clear day .", "storylet_id": "217449"}], [{"original_text": "The group of friends went skiing together one weekend.", "album_id": "72157616248069156", "photo_flickr_id": "450948389", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43490", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group of friends went skiing together one weekend .", "storylet_id": "217450"}], [{"original_text": "They had a wonderful time breaking rules.", "album_id": "72157616248069156", "photo_flickr_id": "450951049", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43490", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a wonderful time breaking rules .", "storylet_id": "217451"}], [{"original_text": "A hollowed tree trunk was found on one of the trails.", "album_id": "72157616248069156", "photo_flickr_id": "450949705", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43490", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a hollowed tree trunk was found on one of the trails .", "storylet_id": "217452"}], [{"original_text": "All were exhausted after such a crazy day in the snow.", "album_id": "72157616248069156", "photo_flickr_id": "450951455", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43490", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all were exhausted after such a crazy day in the snow .", "storylet_id": "217453"}], [{"original_text": "They headed back for their homes.", "album_id": "72157616248069156", "photo_flickr_id": "450944445", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43490", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they headed back for their homes .", "storylet_id": "217454"}], [{"original_text": "The ski day started out simple enough, everyone put both their feet in. ", "album_id": "72157616248069156", "photo_flickr_id": "450939801", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43491", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ski day started out simple enough , everyone put both their feet in .", "storylet_id": "217455"}], [{"original_text": "Amber was so excited that she jumped for joy.", "album_id": "72157616248069156", "photo_flickr_id": "450941425", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43491", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] was so excited that she jumped for joy .", "storylet_id": "217456"}], [{"original_text": "Joey tried hard but just couldn't stand up.", "album_id": "72157616248069156", "photo_flickr_id": "450948115", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43491", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] tried hard but just could n't stand up .", "storylet_id": "217457"}], [{"original_text": "Mike and John decided it was just easier to slide down on their bottoms.", "album_id": "72157616248069156", "photo_flickr_id": "450950039", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43491", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and [male] decided it was just easier to slide down on their bottoms .", "storylet_id": "217458"}], [{"original_text": "Fred, well Fred did the Fred thing and got himself stuck in a tree. ", "album_id": "72157616248069156", "photo_flickr_id": "450949705", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43491", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] , well [male] did the [male] thing and got himself stuck in a tree .", "storylet_id": "217459"}], [{"original_text": "The group was out on a ski trip.", "album_id": "72157616248069156", "photo_flickr_id": "450939801", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43492", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group was out on a ski trip .", "storylet_id": "217460"}], [{"original_text": "They had learned how to do jumps.", "album_id": "72157616248069156", "photo_flickr_id": "450941425", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43492", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had learned how to do jumps .", "storylet_id": "217461"}], [{"original_text": "Not all of the jumps went well.", "album_id": "72157616248069156", "photo_flickr_id": "450948115", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43492", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not all of the jumps went well .", "storylet_id": "217462"}], [{"original_text": "And there were a few falls.", "album_id": "72157616248069156", "photo_flickr_id": "450950039", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43492", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and there were a few falls .", "storylet_id": "217463"}], [{"original_text": "But everyone had fun despite the injuries.", "album_id": "72157616248069156", "photo_flickr_id": "450949705", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43492", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but everyone had fun despite the injuries .", "storylet_id": "217464"}], [{"original_text": "The four friend's first trip to the mountain. They celebrated by jumping in the air while taking a picture.", "album_id": "72157616248069156", "photo_flickr_id": "450948389", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43493", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the four friend 's first trip to the mountain . they celebrated by jumping in the air while taking a picture .", "storylet_id": "217465"}], [{"original_text": "They felt adventurous and decided to ignore the danger signs.", "album_id": "72157616248069156", "photo_flickr_id": "450951049", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43493", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they felt adventurous and decided to ignore the danger signs .", "storylet_id": "217466"}], [{"original_text": "It was not a good idea. Somehow, one of them got their head stuck in a tree.", "album_id": "72157616248069156", "photo_flickr_id": "450949705", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43493", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was not a good idea . somehow , one of them got their head stuck in a tree .", "storylet_id": "217467"}], [{"original_text": "The finally made it half-way to the top and decided to rest and look down on how far they've come.", "album_id": "72157616248069156", "photo_flickr_id": "450951455", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43493", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the finally made it half-way to the top and decided to rest and look down on how far they 've come .", "storylet_id": "217468"}], [{"original_text": "They finally made it to the top and was treated to a magnificent sunset.", "album_id": "72157616248069156", "photo_flickr_id": "450944445", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43493", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they finally made it to the top and was treated to a magnificent sunset .", "storylet_id": "217469"}], [{"original_text": "We all had a great time skiing.", "album_id": "72157616248069156", "photo_flickr_id": "450948389", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43494", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all had a great time skiing .", "storylet_id": "217470"}], [{"original_text": "There were many warning signs on the ski slope.", "album_id": "72157616248069156", "photo_flickr_id": "450951049", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43494", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many warning signs on the ski slope .", "storylet_id": "217471"}], [{"original_text": "We took some silly pictures.", "album_id": "72157616248069156", "photo_flickr_id": "450949705", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43494", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took some silly pictures .", "storylet_id": "217472"}], [{"original_text": "The views were great from the top.", "album_id": "72157616248069156", "photo_flickr_id": "450951455", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43494", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the views were great from the top .", "storylet_id": "217473"}], [{"original_text": "I hope we can go back next year.", "album_id": "72157616248069156", "photo_flickr_id": "450944445", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43494", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope we can go back next year .", "storylet_id": "217474"}], [{"original_text": "The youngest son of the family decided to buy a new car.", "album_id": "72157600053262184", "photo_flickr_id": "449218215", "setting": "first-2-pick-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "43495", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the youngest son of the family decided to buy a new car .", "storylet_id": "217475"}], [{"original_text": "He is driving to show his car to his friends.", "album_id": "72157600053262184", "photo_flickr_id": "449212634", "setting": "first-2-pick-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "43495", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he is driving to show his car to his friends .", "storylet_id": "217476"}], [{"original_text": "He decide to take both girls for a ride after his shopping.", "album_id": "72157600053262184", "photo_flickr_id": "449220409", "setting": "first-2-pick-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "43495", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he decide to take both girls for a ride after his shopping .", "storylet_id": "217477"}], [{"original_text": "During his spare time, he practice with a band.", "album_id": "72157600053262184", "photo_flickr_id": "449215790", "setting": "first-2-pick-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "43495", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "during his spare time , he practice with a band .", "storylet_id": "217478"}], [{"original_text": "The band is having a live concert.", "album_id": "72157600053262184", "photo_flickr_id": "449217090", "setting": "first-2-pick-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "43495", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the band is having a live concert .", "storylet_id": "217479"}], [{"original_text": "I saw a TED talk.", "album_id": "72157600053262184", "photo_flickr_id": "449221703", "setting": "first-2-pick-and-tell", "worker_id": "KOQ7Z92BZVM8TJQ", "story_id": "43496", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i saw a ted talk .", "storylet_id": "217480"}], [{"original_text": "It was about Web 2.0 learning.", "album_id": "72157600053262184", "photo_flickr_id": "449220587", "setting": "first-2-pick-and-tell", "worker_id": "KOQ7Z92BZVM8TJQ", "story_id": "43496", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was about web 2.0 learning .", "storylet_id": "217481"}], [{"original_text": "It was a little difficult for me to understand.", "album_id": "72157600053262184", "photo_flickr_id": "449215714", "setting": "first-2-pick-and-tell", "worker_id": "KOQ7Z92BZVM8TJQ", "story_id": "43496", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a little difficult for me to understand .", "storylet_id": "217482"}], [{"original_text": "The talk lasted 40 minutes.", "album_id": "72157600053262184", "photo_flickr_id": "449215936", "setting": "first-2-pick-and-tell", "worker_id": "KOQ7Z92BZVM8TJQ", "story_id": "43496", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the talk lasted 40 minutes .", "storylet_id": "217483"}], [{"original_text": "At the end, I still had a lot of questions in my mind.", "album_id": "72157600053262184", "photo_flickr_id": "449222733", "setting": "first-2-pick-and-tell", "worker_id": "KOQ7Z92BZVM8TJQ", "story_id": "43496", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , i still had a lot of questions in my mind .", "storylet_id": "217484"}], [{"original_text": "Last night we decided to head out to see one of our friend's band.", "album_id": "72157600053262184", "photo_flickr_id": "449218215", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "43497", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night we decided to head out to see one of our friend 's band .", "storylet_id": "217485"}], [{"original_text": "There was a little bit of traffic leading up to the venue.", "album_id": "72157600053262184", "photo_flickr_id": "449212634", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "43497", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a little bit of traffic leading up to the venue .", "storylet_id": "217486"}], [{"original_text": "We were all dressed up in our casual rock concert gear.", "album_id": "72157600053262184", "photo_flickr_id": "449220409", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "43497", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were all dressed up in our casual rock concert gear .", "storylet_id": "217487"}], [{"original_text": "Billy really rocked the house that night.", "album_id": "72157600053262184", "photo_flickr_id": "449215790", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "43497", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] really rocked the house that night .", "storylet_id": "217488"}], [{"original_text": "He was really into it. We had a blast and I hope we get to do this again sometime soon.", "album_id": "72157600053262184", "photo_flickr_id": "449217090", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "43497", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was really into it . we had a blast and i hope we get to do this again sometime soon .", "storylet_id": "217489"}], [{"original_text": "My friends loved riding in my new car.", "album_id": "72157600053262184", "photo_flickr_id": "449218215", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43498", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends loved riding in my new car .", "storylet_id": "217490"}], [{"original_text": "Even though traffic was bad, we still got to listen to good music.", "album_id": "72157600053262184", "photo_flickr_id": "449212634", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43498", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even though traffic was bad , we still got to listen to good music .", "storylet_id": "217491"}], [{"original_text": "We walked down the street and looked for fun things to do.", "album_id": "72157600053262184", "photo_flickr_id": "449220409", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43498", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we walked down the street and looked for fun things to do .", "storylet_id": "217492"}], [{"original_text": "A local band was playing and they made us dance.", "album_id": "72157600053262184", "photo_flickr_id": "449215790", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43498", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a local band was playing and they made us dance .", "storylet_id": "217493"}], [{"original_text": "The guitarist was very good and we want to watch another concert just for them .", "album_id": "72157600053262184", "photo_flickr_id": "449217090", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43498", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the guitarist was very good and we want to watch another concert just for them .", "storylet_id": "217494"}], [{"original_text": "My friends came to pick me up for a concert today.", "album_id": "72157600053262184", "photo_flickr_id": "449218215", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "43499", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends came to pick me up for a concert today .", "storylet_id": "217495"}], [{"original_text": "The traffic was pretty crazy all the way there.", "album_id": "72157600053262184", "photo_flickr_id": "449212634", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "43499", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the traffic was pretty crazy all the way there .", "storylet_id": "217496"}], [{"original_text": "We finally found a place to park and walked to the venue.", "album_id": "72157600053262184", "photo_flickr_id": "449220409", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "43499", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we finally found a place to park and walked to the venue .", "storylet_id": "217497"}], [{"original_text": "The opening band was pretty good.", "album_id": "72157600053262184", "photo_flickr_id": "449215790", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "43499", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the opening band was pretty good .", "storylet_id": "217498"}], [{"original_text": "But the main event was completely awesome.", "album_id": "72157600053262184", "photo_flickr_id": "449217090", "setting": "last-3-pick-old-and-tell", "worker_id": "QQ6FVUZXHSH3VW5", "story_id": "43499", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the main event was completely awesome .", "storylet_id": "217499"}], [{"original_text": "I woke up early and heading out to the farm to see how many photos I could get in.", "album_id": "72157600113173792", "photo_flickr_id": "468985313", "setting": "first-2-pick-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43500", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i woke up early and heading out to the farm to see how many photos i could get in .", "storylet_id": "217500"}], [{"original_text": "I was happy to come across these cows grazing in the field. One of them really wanted to be photographed!", "album_id": "72157600113173792", "photo_flickr_id": "469157550", "setting": "first-2-pick-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43500", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was happy to come across these cows grazing in the field . one of them really wanted to be photographed !", "storylet_id": "217501"}], [{"original_text": "Then I found this duck \"couple\" wandering about. Too bad they didn't have any babies.", "album_id": "72157600113173792", "photo_flickr_id": "469057499", "setting": "first-2-pick-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43500", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then i found this duck `` couple '' wandering about . too bad they did n't have any babies .", "storylet_id": "217502"}], [{"original_text": "I came across this old bird house and it made for an excellent shot.", "album_id": "72157600113173792", "photo_flickr_id": "468839109", "setting": "first-2-pick-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43500", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i came across this old bird house and it made for an excellent shot .", "storylet_id": "217503"}], [{"original_text": "I could spend days photographing this entire area, it's so beautiful.", "album_id": "72157600113173792", "photo_flickr_id": "469157356", "setting": "first-2-pick-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43500", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i could spend days photographing this entire area , it 's so beautiful .", "storylet_id": "217504"}], [{"original_text": "Today I visited a cathedral for spring break.", "album_id": "72157600113173792", "photo_flickr_id": "469169841", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43501", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i visited a cathedral for spring break .", "storylet_id": "217505"}], [{"original_text": "I even managed to get outside with nature too.", "album_id": "72157600113173792", "photo_flickr_id": "468956365", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43501", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i even managed to get outside with nature too .", "storylet_id": "217506"}], [{"original_text": "It was a very historic place", "album_id": "72157600113173792", "photo_flickr_id": "468934737", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43501", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a very historic place", "storylet_id": "217507"}], [{"original_text": "The trees were in full bloom.", "album_id": "72157600113173792", "photo_flickr_id": "468985313", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43501", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the trees were in full bloom .", "storylet_id": "217508"}], [{"original_text": "It was a fun place and I want to go back next year.", "album_id": "72157600113173792", "photo_flickr_id": "469157956", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43501", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a fun place and i want to go back next year .", "storylet_id": "217509"}], [{"original_text": "Nature is a very beautiful thing.", "album_id": "72157600113173792", "photo_flickr_id": "469169841", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43502", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "nature is a very beautiful thing .", "storylet_id": "217510"}], [{"original_text": "As a nature photographer Nathan has a good eye for beautiful scenery.", "album_id": "72157600113173792", "photo_flickr_id": "468956365", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43502", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as a nature photographer [male] has a good eye for beautiful scenery .", "storylet_id": "217511"}], [{"original_text": "He photographs a rock wall.", "album_id": "72157600113173792", "photo_flickr_id": "468934737", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43502", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he photographs a rock wall .", "storylet_id": "217512"}], [{"original_text": "He also photographs a tree and it's roots.", "album_id": "72157600113173792", "photo_flickr_id": "468985313", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43502", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he also photographs a tree and it 's roots .", "storylet_id": "217513"}], [{"original_text": "But Nathans favorite thing in nature to photograph is flowers.", "album_id": "72157600113173792", "photo_flickr_id": "469157956", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "43502", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but nathans favorite thing in nature to photograph is flowers .", "storylet_id": "217514"}], [{"original_text": "Ted loved this big tree", "album_id": "72157600113173792", "photo_flickr_id": "468985313", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43503", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] loved this big tree", "storylet_id": "217515"}], [{"original_text": "located in the cows pasture.", "album_id": "72157600113173792", "photo_flickr_id": "469157550", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43503", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "located in the cows pasture .", "storylet_id": "217516"}], [{"original_text": "The birds loved it as well", "album_id": "72157600113173792", "photo_flickr_id": "469057499", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43503", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the birds loved it as well", "storylet_id": "217517"}], [{"original_text": "because, you see, there was a secret bird feeder on the tree that they would feed from.", "album_id": "72157600113173792", "photo_flickr_id": "468839109", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43503", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "because , you see , there was a secret bird feeder on the tree that they would feed from .", "storylet_id": "217518"}], [{"original_text": "After feeding from the secret bird feeder, they would fly off over the lake and into the clouds. ", "album_id": "72157600113173792", "photo_flickr_id": "469157356", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43503", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after feeding from the secret bird feeder , they would fly off over the lake and into the clouds .", "storylet_id": "217519"}], [{"original_text": "A man taking a picture under a beautiful tree.", "album_id": "72157600113173792", "photo_flickr_id": "468985313", "setting": "last-3-pick-old-and-tell", "worker_id": "RTWM4ZLPKVA3AEI", "story_id": "43504", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a man taking a picture under a beautiful tree .", "storylet_id": "217520"}], [{"original_text": "Out in the open fields, with live cattle allowed to roam around freely.", "album_id": "72157600113173792", "photo_flickr_id": "469157550", "setting": "last-3-pick-old-and-tell", "worker_id": "RTWM4ZLPKVA3AEI", "story_id": "43504", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "out in the open fields , with live cattle allowed to roam around freely .", "storylet_id": "217521"}], [{"original_text": "As well as the ducks walking around unhindered.", "album_id": "72157600113173792", "photo_flickr_id": "469057499", "setting": "last-3-pick-old-and-tell", "worker_id": "RTWM4ZLPKVA3AEI", "story_id": "43504", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as well as the ducks walking around unhindered .", "storylet_id": "217522"}], [{"original_text": "The box on the tree shows the simplicity of country living.", "album_id": "72157600113173792", "photo_flickr_id": "468839109", "setting": "last-3-pick-old-and-tell", "worker_id": "RTWM4ZLPKVA3AEI", "story_id": "43504", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the box on the tree shows the simplicity of country living .", "storylet_id": "217523"}], [{"original_text": "And the wide open spaces, with the lakes, the mountains, and the trees exudes much peace.", "album_id": "72157600113173792", "photo_flickr_id": "469157356", "setting": "last-3-pick-old-and-tell", "worker_id": "RTWM4ZLPKVA3AEI", "story_id": "43504", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the wide open spaces , with the lakes , the mountains , and the trees exudes much peace .", "storylet_id": "217524"}], [{"original_text": "I went hiking today.", "album_id": "72157600212596308", "photo_flickr_id": "497340320", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43505", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went hiking today .", "storylet_id": "217525"}], [{"original_text": "I found a large river.", "album_id": "72157600212596308", "photo_flickr_id": "497372663", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43505", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i found a large river .", "storylet_id": "217526"}], [{"original_text": "I saw lots of rock formations.", "album_id": "72157600212596308", "photo_flickr_id": "497375995", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43505", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i saw lots of rock formations .", "storylet_id": "217527"}], [{"original_text": "I really enjoy taking photos.", "album_id": "72157600212596308", "photo_flickr_id": "497348140", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43505", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i really enjoy taking photos .", "storylet_id": "217528"}], [{"original_text": "I can't wait to go back.", "album_id": "72157600212596308", "photo_flickr_id": "497380741", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43505", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ca n't wait to go back .", "storylet_id": "217529"}], [{"original_text": "Cactus shrooms are amazing.", "album_id": "72157600212596308", "photo_flickr_id": "497368950", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "43506", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "cactus shrooms are amazing .", "storylet_id": "217530"}], [{"original_text": "You can find them out in the desserts near the hills and mountains.", "album_id": "72157600212596308", "photo_flickr_id": "497399727", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "43506", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you can find them out in the desserts near the hills and mountains .", "storylet_id": "217531"}], [{"original_text": "It is always a perfect day", "album_id": "72157600212596308", "photo_flickr_id": "497403469", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "43506", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is always a perfect day", "storylet_id": "217532"}], [{"original_text": "After looking for a couple of hours we always end up taking 1 or 5 of them.", "album_id": "72157600212596308", "photo_flickr_id": "497360857", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "43506", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after looking for a couple of hours we always end up taking 1 or 5 of them .", "storylet_id": "217533"}], [{"original_text": "Me and my boo thang drive to the desert every Sunday to gather a couple.", "album_id": "72157600212596308", "photo_flickr_id": "497338730", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "43506", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "me and my boo thang drive to the desert every sunday to gather a couple .", "storylet_id": "217534"}], [{"original_text": "The camping trip was a great idea. The mountains were gorgeous. ", "album_id": "72157600212596308", "photo_flickr_id": "497340320", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43507", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the camping trip was a great idea . the mountains were gorgeous .", "storylet_id": "217535"}], [{"original_text": "And, the river where we stayed...was wonderful fishing. ", "album_id": "72157600212596308", "photo_flickr_id": "497372663", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43507", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and , the river where we stayed ... was wonderful fishing .", "storylet_id": "217536"}], [{"original_text": "We loved to hike into the woods...", "album_id": "72157600212596308", "photo_flickr_id": "497375995", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43507", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we loved to hike into the woods ...", "storylet_id": "217537"}], [{"original_text": "Especially Patricia. That was her favorite activity of the trip.", "album_id": "72157600212596308", "photo_flickr_id": "497348140", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43507", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "especially [female] . that was her favorite activity of the trip .", "storylet_id": "217538"}], [{"original_text": "I preferred the fishing in the pond and it was so peaceful. ", "album_id": "72157600212596308", "photo_flickr_id": "497380741", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43507", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i preferred the fishing in the pond and it was so peaceful .", "storylet_id": "217539"}], [{"original_text": "I went hiking last week.", "album_id": "72157600212596308", "photo_flickr_id": "497340320", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43508", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went hiking last week .", "storylet_id": "217540"}], [{"original_text": "I was in a new area, and I decided to explore.", "album_id": "72157600212596308", "photo_flickr_id": "497372663", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43508", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was in a new area , and i decided to explore .", "storylet_id": "217541"}], [{"original_text": "The views were vast and serene.", "album_id": "72157600212596308", "photo_flickr_id": "497375995", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43508", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the views were vast and serene .", "storylet_id": "217542"}], [{"original_text": "I had gone a long way from home.", "album_id": "72157600212596308", "photo_flickr_id": "497348140", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43508", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had gone a long way from home .", "storylet_id": "217543"}], [{"original_text": "I found a pool of water, where rested for the end of the day.", "album_id": "72157600212596308", "photo_flickr_id": "497380741", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43508", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i found a pool of water , where rested for the end of the day .", "storylet_id": "217544"}], [{"original_text": "We try and find rare cactuses in the desert each year, here is an example of one.", "album_id": "72157600212596308", "photo_flickr_id": "497368950", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43509", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we try and find rare cactuses in the desert each year , here is an example of one .", "storylet_id": "217545"}], [{"original_text": "We had to climb this mountain in order to find some of the cactuses.", "album_id": "72157600212596308", "photo_flickr_id": "497399727", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43509", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to climb this mountain in order to find some of the cactuses .", "storylet_id": "217546"}], [{"original_text": "My wife and I love to hunt for these rare beauties together, it helps our relationship.", "album_id": "72157600212596308", "photo_flickr_id": "497403469", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43509", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my wife and i love to hunt for these rare beauties together , it helps our relationship .", "storylet_id": "217547"}], [{"original_text": "We are a little tired from climbing that mountain and are starting to walk back to our car.", "album_id": "72157600212596308", "photo_flickr_id": "497360857", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43509", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we are a little tired from climbing that mountain and are starting to walk back to our car .", "storylet_id": "217548"}], [{"original_text": "tired from a days work of hunting cactuses, we are about to drive back home now.", "album_id": "72157600212596308", "photo_flickr_id": "497338730", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43509", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "tired from a days work of hunting cactuses , we are about to drive back home now .", "storylet_id": "217549"}], [{"original_text": "Me and my friend decided to go to this show", "album_id": "72157600317384882", "photo_flickr_id": "532695621", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43510", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and my friend decided to go to this show", "storylet_id": "217550"}], [{"original_text": "We are enjoying ourselves taking pictures with some of the actress", "album_id": "72157600317384882", "photo_flickr_id": "532598814", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43510", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are enjoying ourselves taking pictures with some of the actress", "storylet_id": "217551"}], [{"original_text": "This actress everybody love", "album_id": "72157600317384882", "photo_flickr_id": "532598852", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43510", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this actress everybody love", "storylet_id": "217552"}], [{"original_text": "I also found my favorite ", "album_id": "72157600317384882", "photo_flickr_id": "532695573", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43510", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also found my favorite", "storylet_id": "217553"}], [{"original_text": "At the end we both decided to go out with a bang with the best actress", "album_id": "72157600317384882", "photo_flickr_id": "532598906", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43510", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end we both decided to go out with a bang with the best actress", "storylet_id": "217554"}], [{"original_text": "Everyone was pumped up for the Adventure Con event.", "album_id": "72157600317384882", "photo_flickr_id": "532598726", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "43511", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was pumped up for the adventure con event .", "storylet_id": "217555"}], [{"original_text": "The day started off with a short presentation over a projector.", "album_id": "72157600317384882", "photo_flickr_id": "532695621", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "43511", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the day started off with a short presentation over a projector .", "storylet_id": "217556"}], [{"original_text": "Afterwards, we had the opportunity to meet with several actors and receive autographs.", "album_id": "72157600317384882", "photo_flickr_id": "532695321", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "43511", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards , we had the opportunity to meet with several actors and receive autographs .", "storylet_id": "217557"}], [{"original_text": "Some were even advertising movies they were featured in.", "album_id": "72157600317384882", "photo_flickr_id": "532598706", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "43511", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some were even advertising movies they were featured in .", "storylet_id": "217558"}], [{"original_text": "Compared to inside of the building, outside was filled with people in their costumes.", "album_id": "72157600317384882", "photo_flickr_id": "532695379", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "43511", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "compared to inside of the building , outside was filled with people in their costumes .", "storylet_id": "217559"}], [{"original_text": "Adventure Con was exciting this year. ", "album_id": "72157600317384882", "photo_flickr_id": "532695621", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43512", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "adventure con was exciting this year .", "storylet_id": "217560"}], [{"original_text": "My sister ran into her favorite stuntman. ", "album_id": "72157600317384882", "photo_flickr_id": "532598814", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43512", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my sister ran into her favorite stuntman .", "storylet_id": "217561"}], [{"original_text": "We enjoyed seeing the Captain Jack lookalike. ", "album_id": "72157600317384882", "photo_flickr_id": "532598852", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43512", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we enjoyed seeing the captain [male] lookalike .", "storylet_id": "217562"}], [{"original_text": "So many people came dressed as their favorite characters. ", "album_id": "72157600317384882", "photo_flickr_id": "532695573", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43512", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so many people came dressed as their favorite characters .", "storylet_id": "217563"}], [{"original_text": "We couldn't resist taking a picture with the stormtrooper. ", "album_id": "72157600317384882", "photo_flickr_id": "532598906", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43512", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we could n't resist taking a picture with the stormtrooper .", "storylet_id": "217564"}], [{"original_text": "There was a lot of people in line for the convention.", "album_id": "72157600317384882", "photo_flickr_id": "532598726", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43513", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a lot of people in line for the convention .", "storylet_id": "217565"}], [{"original_text": "They showed an unreleased movie.", "album_id": "72157600317384882", "photo_flickr_id": "532695621", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43513", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they showed an unreleased movie .", "storylet_id": "217566"}], [{"original_text": "Afterward the actors were there to sign autographs.", "album_id": "72157600317384882", "photo_flickr_id": "532695321", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43513", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterward the actors were there to sign autographs .", "storylet_id": "217567"}], [{"original_text": "Everyone got in line.", "album_id": "72157600317384882", "photo_flickr_id": "532598706", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43513", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone got in line .", "storylet_id": "217568"}], [{"original_text": "The line outside was very long.", "album_id": "72157600317384882", "photo_flickr_id": "532695379", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43513", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the line outside was very long .", "storylet_id": "217569"}], [{"original_text": "Adventure Con looked like it would be super-fun for the girls. ", "album_id": "72157600317384882", "photo_flickr_id": "532695621", "setting": "last-3-pick-old-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "43514", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "adventure con looked like it would be super-fun for the girls .", "storylet_id": "217570"}], [{"original_text": "They met celebrities.", "album_id": "72157600317384882", "photo_flickr_id": "532598814", "setting": "last-3-pick-old-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "43514", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they met celebrities .", "storylet_id": "217571"}], [{"original_text": "They even found a pirate.", "album_id": "72157600317384882", "photo_flickr_id": "532598852", "setting": "last-3-pick-old-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "43514", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even found a pirate .", "storylet_id": "217572"}], [{"original_text": "The man in the blue cape was incredibly popular.", "album_id": "72157600317384882", "photo_flickr_id": "532695573", "setting": "last-3-pick-old-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "43514", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man in the blue cape was incredibly popular .", "storylet_id": "217573"}], [{"original_text": "They even found a storm trooper. ", "album_id": "72157600317384882", "photo_flickr_id": "532598906", "setting": "last-3-pick-old-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "43514", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even found a storm trooper .", "storylet_id": "217574"}], [{"original_text": "Chuck is a squirrel who spends his days running through the landscape, looking for nuts.", "album_id": "72157600335924630", "photo_flickr_id": "3273091032", "setting": "first-2-pick-and-tell", "worker_id": "2WUUVOYB2S2B4L6", "story_id": "43515", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is a squirrel who spends his days running through the landscape , looking for nuts .", "storylet_id": "217575"}], [{"original_text": "One day, Chuck heard a loud noise and decided to observe from a hidden spot.", "album_id": "72157600335924630", "photo_flickr_id": "2794209830", "setting": "first-2-pick-and-tell", "worker_id": "2WUUVOYB2S2B4L6", "story_id": "43515", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one day , [male] heard a loud noise and decided to observe from a hidden spot .", "storylet_id": "217576"}], [{"original_text": "He saw a train lumber by slowly.", "album_id": "72157600335924630", "photo_flickr_id": "539155502", "setting": "first-2-pick-and-tell", "worker_id": "2WUUVOYB2S2B4L6", "story_id": "43515", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he saw a train lumber by slowly .", "storylet_id": "217577"}], [{"original_text": "After the train passed, Chuck continued ambling along without a care in the world.", "album_id": "72157600335924630", "photo_flickr_id": "539234341", "setting": "first-2-pick-and-tell", "worker_id": "2WUUVOYB2S2B4L6", "story_id": "43515", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the train passed , [male] continued ambling along without a care in the world .", "storylet_id": "217578"}], [{"original_text": "\"Look,\" he said to himself, \"I think I'm going to climb that tree.\"", "album_id": "72157600335924630", "photo_flickr_id": "539234275", "setting": "first-2-pick-and-tell", "worker_id": "2WUUVOYB2S2B4L6", "story_id": "43515", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "`` look , '' he said to himself , `` i think i 'm going to climb that tree . ''", "storylet_id": "217579"}], [{"original_text": "The train look us to the location of the hike.", "album_id": "72157600335924630", "photo_flickr_id": "539155502", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43516", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the train look us to the location of the hike .", "storylet_id": "217580"}], [{"original_text": "The mountains we are hiking on are very high.", "album_id": "72157600335924630", "photo_flickr_id": "539155488", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43516", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the mountains we are hiking on are very high .", "storylet_id": "217581"}], [{"original_text": "Even though the mountains are high, there are animals who make their homes up there.", "album_id": "72157600335924630", "photo_flickr_id": "2794209830", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43516", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even though the mountains are high , there are animals who make their homes up there .", "storylet_id": "217582"}], [{"original_text": "There are even trees growing alongside the mountains.", "album_id": "72157600335924630", "photo_flickr_id": "539234275", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43516", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are even trees growing alongside the mountains .", "storylet_id": "217583"}], [{"original_text": "When you look down, the view from the top is breathtaking. ", "album_id": "72157600335924630", "photo_flickr_id": "539234175", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43516", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when you look down , the view from the top is breathtaking .", "storylet_id": "217584"}], [{"original_text": "I got off the train at the station.", "album_id": "72157600335924630", "photo_flickr_id": "539155502", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43517", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got off the train at the station .", "storylet_id": "217585"}], [{"original_text": "It was desolate around here.", "album_id": "72157600335924630", "photo_flickr_id": "539155488", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43517", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was desolate around here .", "storylet_id": "217586"}], [{"original_text": "There was a squirrel watching me.", "album_id": "72157600335924630", "photo_flickr_id": "2794209830", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43517", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a squirrel watching me .", "storylet_id": "217587"}], [{"original_text": "I walked to the top of the cliff and looked out.", "album_id": "72157600335924630", "photo_flickr_id": "539234275", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43517", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i walked to the top of the cliff and looked out .", "storylet_id": "217588"}], [{"original_text": "The view was amazing.", "album_id": "72157600335924630", "photo_flickr_id": "539234175", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43517", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view was amazing .", "storylet_id": "217589"}], [{"original_text": "The squirrel waited at the side of the road for the opportune moment to cross,", "album_id": "72157600335924630", "photo_flickr_id": "3273091032", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43518", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the squirrel waited at the side of the road for the opportune moment to cross ,", "storylet_id": "217590"}], [{"original_text": "so that he could get back to his little whole on the side of the canyon.", "album_id": "72157600335924630", "photo_flickr_id": "2794209830", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43518", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so that he could get back to his little whole on the side of the canyon .", "storylet_id": "217591"}], [{"original_text": "He had to wait for the train to come through though,", "album_id": "72157600335924630", "photo_flickr_id": "539155502", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43518", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had to wait for the train to come through though ,", "storylet_id": "217592"}], [{"original_text": "so that he could safely make it back", "album_id": "72157600335924630", "photo_flickr_id": "539234341", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43518", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so that he could safely make it back", "storylet_id": "217593"}], [{"original_text": "to his home on the canyon. ", "album_id": "72157600335924630", "photo_flickr_id": "539234275", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43518", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to his home on the canyon .", "storylet_id": "217594"}], [{"original_text": "Our trip to the Grand Canyon was fantastic.", "album_id": "72157600335924630", "photo_flickr_id": "539155502", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43519", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip to the location location was fantastic .", "storylet_id": "217595"}], [{"original_text": "There were so many great views of the canyon.", "album_id": "72157600335924630", "photo_flickr_id": "539155488", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43519", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many great views of the canyon .", "storylet_id": "217596"}], [{"original_text": "We even found some wildlife!", "album_id": "72157600335924630", "photo_flickr_id": "2794209830", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43519", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even found some wildlife !", "storylet_id": "217597"}], [{"original_text": "It is so amazing to see this place in person.", "album_id": "72157600335924630", "photo_flickr_id": "539234275", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43519", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is so amazing to see this place in person .", "storylet_id": "217598"}], [{"original_text": "Our trip was so amazing and it is hard to believe that something like this exists!", "album_id": "72157600335924630", "photo_flickr_id": "539234175", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "43519", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our trip was so amazing and it is hard to believe that something like this exists !", "storylet_id": "217599"}], [{"original_text": "I drove for hours to get to the beach.", "album_id": "72157600288475643", "photo_flickr_id": "522244757", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43520", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i drove for hours to get to the beach .", "storylet_id": "217600"}], [{"original_text": "When I got there it was almost dark.", "album_id": "72157600288475643", "photo_flickr_id": "522230300", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43520", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when i got there it was almost dark .", "storylet_id": "217601"}], [{"original_text": "There was a lot of strange equipment set up there.", "album_id": "72157600288475643", "photo_flickr_id": "522233662", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43520", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a lot of strange equipment set up there .", "storylet_id": "217602"}], [{"original_text": "No one else was around.", "album_id": "72157600288475643", "photo_flickr_id": "522249145", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43520", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "no one else was around .", "storylet_id": "217603"}], [{"original_text": "I decided to leave and head back home.", "album_id": "72157600288475643", "photo_flickr_id": "522234516", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43520", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to leave and head back home .", "storylet_id": "217604"}], [{"original_text": "We saw the Copper River sign which meant we reached our halfway point.", "album_id": "72157600288475643", "photo_flickr_id": "522245903", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43521", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we saw the location location sign which meant we reached our halfway point .", "storylet_id": "217605"}], [{"original_text": "We still had miles to go.", "album_id": "72157600288475643", "photo_flickr_id": "522244757", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43521", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we still had miles to go .", "storylet_id": "217606"}], [{"original_text": "We passed by a lot of abandoned equipment.", "album_id": "72157600288475643", "photo_flickr_id": "522234516", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43521", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we passed by a lot of abandoned equipment .", "storylet_id": "217607"}], [{"original_text": "Instead of driving overnight, we decided to set up a campsite.", "album_id": "72157600288475643", "photo_flickr_id": "522237206", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43521", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "instead of driving overnight , we decided to set up a campsite .", "storylet_id": "217608"}], [{"original_text": "Eventually after five days of driving we arrived at our new home in a small part of Alaska.", "album_id": "72157600288475643", "photo_flickr_id": "522273167", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43521", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually after five days of driving we arrived at our new home in a small part of location .", "storylet_id": "217609"}], [{"original_text": "We were getting close. And, we knew in our hearts, we would find that gold.", "album_id": "72157600288475643", "photo_flickr_id": "522245903", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43522", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were getting close . and , we knew in our hearts , we would find that gold .", "storylet_id": "217610"}], [{"original_text": "We continued up the mountain, it seemed like days.", "album_id": "72157600288475643", "photo_flickr_id": "522244757", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43522", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we continued up the mountain , it seemed like days .", "storylet_id": "217611"}], [{"original_text": "And, finally, we reached our camp.", "album_id": "72157600288475643", "photo_flickr_id": "522234516", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43522", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and , finally , we reached our camp .", "storylet_id": "217612"}], [{"original_text": "We rested by the fire for the night because tomorrow was the start of our journey.", "album_id": "72157600288475643", "photo_flickr_id": "522237206", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43522", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we rested by the fire for the night because tomorrow was the start of our journey .", "storylet_id": "217613"}], [{"original_text": "We were now gold miners and we would be living like them for the next six months.", "album_id": "72157600288475643", "photo_flickr_id": "522273167", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43522", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were now gold miners and we would be living like them for the next six months .", "storylet_id": "217614"}], [{"original_text": "We went for a trip to an old river factory.", "album_id": "72157600288475643", "photo_flickr_id": "522244757", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43523", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went for a trip to an old river factory .", "storylet_id": "217615"}], [{"original_text": "The drive there was beautiful.", "album_id": "72157600288475643", "photo_flickr_id": "522230300", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43523", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the drive there was beautiful .", "storylet_id": "217616"}], [{"original_text": "A.t the river, it had all the old river machines that they used to work", "album_id": "72157600288475643", "photo_flickr_id": "522233662", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43523", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a.t the river , it had all the old river machines that they used to work", "storylet_id": "217617"}], [{"original_text": "It was neat to see the old relics.", "album_id": "72157600288475643", "photo_flickr_id": "522249145", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43523", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was neat to see the old relics .", "storylet_id": "217618"}], [{"original_text": "The machine had become obsolete, so I had one last look at them before I had to leave.", "album_id": "72157600288475643", "photo_flickr_id": "522234516", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43523", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the machine had become obsolete , so i had one last look at them before i had to leave .", "storylet_id": "217619"}], [{"original_text": "We took a trip through the mountain roads. ", "album_id": "72157600288475643", "photo_flickr_id": "522244757", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "43524", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip through the mountain roads .", "storylet_id": "217620"}], [{"original_text": "The scenic views were beautiful and vast.", "album_id": "72157600288475643", "photo_flickr_id": "522230300", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "43524", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the scenic views were beautiful and vast .", "storylet_id": "217621"}], [{"original_text": "By the riverbed there were these funny looking boats. ", "album_id": "72157600288475643", "photo_flickr_id": "522233662", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "43524", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "by the riverbed there were these funny looking boats .", "storylet_id": "217622"}], [{"original_text": "The coastline was made of rock instead of sand.", "album_id": "72157600288475643", "photo_flickr_id": "522249145", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "43524", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the coastline was made of rock instead of sand .", "storylet_id": "217623"}], [{"original_text": "We rented this boat and took it out to see more beautiful landscape. ", "album_id": "72157600288475643", "photo_flickr_id": "522234516", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "43524", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we rented this boat and took it out to see more beautiful landscape .", "storylet_id": "217624"}], [{"original_text": "I had a lot of work to do in my backyard.", "album_id": "72157600602891697", "photo_flickr_id": "687076163", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43525", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a lot of work to do in my backyard .", "storylet_id": "217625"}], [{"original_text": "There was a lot of grass growing that needed to be cut.", "album_id": "72157600602891697", "photo_flickr_id": "687946288", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43525", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of grass growing that needed to be cut .", "storylet_id": "217626"}], [{"original_text": "I also needed to replace the entire fence.", "album_id": "72157600602891697", "photo_flickr_id": "687946842", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43525", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also needed to replace the entire fence .", "storylet_id": "217627"}], [{"original_text": "Some of the steps were crumbling.", "album_id": "72157600602891697", "photo_flickr_id": "687952918", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43525", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the steps were crumbling .", "storylet_id": "217628"}], [{"original_text": "It was dangerous work.", "album_id": "72157600602891697", "photo_flickr_id": "687963248", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43525", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was dangerous work .", "storylet_id": "217629"}], [{"original_text": "The garden had been abandoned since she left. ", "album_id": "72157600602891697", "photo_flickr_id": "687076163", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43526", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the garden had been abandoned since she left .", "storylet_id": "217630"}], [{"original_text": "The old fence needed repairs. ", "album_id": "72157600602891697", "photo_flickr_id": "687936840", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43526", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the old fence needed repairs .", "storylet_id": "217631"}], [{"original_text": "Vines climbed everywhere. ", "album_id": "72157600602891697", "photo_flickr_id": "687938358", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43526", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "vines climbed everywhere .", "storylet_id": "217632"}], [{"original_text": "She leaned against the building and wondered how she would ever get it back like it once was. ", "album_id": "72157600602891697", "photo_flickr_id": "687939082", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43526", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she leaned against the building and wondered how she would ever get it back like it once was .", "storylet_id": "217633"}], [{"original_text": "She vowed to never leave for that long again. ", "album_id": "72157600602891697", "photo_flickr_id": "687084379", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43526", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she vowed to never leave for that long again .", "storylet_id": "217634"}], [{"original_text": "I've been hiding in this bush for days in order to sneak into someones house.", "album_id": "72157600602891697", "photo_flickr_id": "687076163", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43527", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 've been hiding in this bush for days in order to sneak into someones house .", "storylet_id": "217635"}], [{"original_text": "I've been waiting for the perfect moment to sneak in, everyone is gone so it's time to strike.", "album_id": "72157600602891697", "photo_flickr_id": "687946288", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43527", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 've been waiting for the perfect moment to sneak in , everyone is gone so it 's time to strike .", "storylet_id": "217636"}], [{"original_text": "I can't jump this fence it's too high for me to climb.", "album_id": "72157600602891697", "photo_flickr_id": "687946842", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43527", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i ca n't jump this fence it 's too high for me to climb .", "storylet_id": "217637"}], [{"original_text": "The door is locked, I have to find a different way in.", "album_id": "72157600602891697", "photo_flickr_id": "687952918", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43527", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the door is locked , i have to find a different way in .", "storylet_id": "217638"}], [{"original_text": "I broke some of the foundation and can crawl inside from the basement. success.", "album_id": "72157600602891697", "photo_flickr_id": "687963248", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43527", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i broke some of the foundation and can crawl inside from the basement . success .", "storylet_id": "217639"}], [{"original_text": "I felt like going through the backyard today.", "album_id": "72157600602891697", "photo_flickr_id": "687076163", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "43528", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i felt like going through the backyard today .", "storylet_id": "217640"}], [{"original_text": "I don't have a lot of plats. But the ones i have are nice.", "album_id": "72157600602891697", "photo_flickr_id": "687946288", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "43528", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i do n't have a lot of plats . but the ones i have are nice .", "storylet_id": "217641"}], [{"original_text": "The fence leads out right into a street.", "album_id": "72157600602891697", "photo_flickr_id": "687946842", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "43528", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fence leads out right into a street .", "storylet_id": "217642"}], [{"original_text": "I headed back toward the house.", "album_id": "72157600602891697", "photo_flickr_id": "687952918", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "43528", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i headed back toward the house .", "storylet_id": "217643"}], [{"original_text": "I noticed a hole in the foundation that needed to be fixed.", "album_id": "72157600602891697", "photo_flickr_id": "687963248", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "43528", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i noticed a hole in the foundation that needed to be fixed .", "storylet_id": "217644"}], [{"original_text": "Zoomed in on a plant in the back yard.", "album_id": "72157600602891697", "photo_flickr_id": "687076163", "setting": "last-3-pick-old-and-tell", "worker_id": "OJNV0YGR1DQD8UA", "story_id": "43529", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "zoomed in on a plant in the back yard .", "storylet_id": "217645"}], [{"original_text": "The scene is beautified by the shrubbery.", "album_id": "72157600602891697", "photo_flickr_id": "687946288", "setting": "last-3-pick-old-and-tell", "worker_id": "OJNV0YGR1DQD8UA", "story_id": "43529", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the scene is beautified by the shrubbery .", "storylet_id": "217646"}], [{"original_text": "The rustic gate blended well with the scene.", "album_id": "72157600602891697", "photo_flickr_id": "687946842", "setting": "last-3-pick-old-and-tell", "worker_id": "OJNV0YGR1DQD8UA", "story_id": "43529", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the rustic gate blended well with the scene .", "storylet_id": "217647"}], [{"original_text": "The stairs led up to the house, which was in slight disrepair.", "album_id": "72157600602891697", "photo_flickr_id": "687952918", "setting": "last-3-pick-old-and-tell", "worker_id": "OJNV0YGR1DQD8UA", "story_id": "43529", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the stairs led up to the house , which was in slight disrepair .", "storylet_id": "217648"}], [{"original_text": "The base of the house began caving in.", "album_id": "72157600602891697", "photo_flickr_id": "687963248", "setting": "last-3-pick-old-and-tell", "worker_id": "OJNV0YGR1DQD8UA", "story_id": "43529", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the base of the house began caving in .", "storylet_id": "217649"}], [{"original_text": "The tourists ate breakfast out on the water.", "album_id": "72157600317528182", "photo_flickr_id": "532663012", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "43530", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tourists ate breakfast out on the water .", "storylet_id": "217650"}], [{"original_text": "Then they had to drive towards the activity they were doing that day.", "album_id": "72157600317528182", "photo_flickr_id": "532663150", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "43530", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then they had to drive towards the activity they were doing that day .", "storylet_id": "217651"}], [{"original_text": "On the way they passed a beautiful dam.", "album_id": "72157600317528182", "photo_flickr_id": "532663306", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "43530", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on the way they passed a beautiful dam .", "storylet_id": "217652"}], [{"original_text": "They finally made it to the mountain they wanted to climb.", "album_id": "72157600317528182", "photo_flickr_id": "532665832", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "43530", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they finally made it to the mountain they wanted to climb .", "storylet_id": "217653"}], [{"original_text": "It was a difficult adventure but they made it.", "album_id": "72157600317528182", "photo_flickr_id": "532762833", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "43530", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a difficult adventure but they made it .", "storylet_id": "217654"}], [{"original_text": "We decided to visit the countryside for vacation.", "album_id": "72157600317528182", "photo_flickr_id": "532663012", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43531", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to visit the countryside for vacation .", "storylet_id": "217655"}], [{"original_text": "The open road was upon us!", "album_id": "72157600317528182", "photo_flickr_id": "532663150", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43531", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the open road was upon us !", "storylet_id": "217656"}], [{"original_text": "Such great views as we drove.", "album_id": "72157600317528182", "photo_flickr_id": "532663306", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43531", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "such great views as we drove .", "storylet_id": "217657"}], [{"original_text": "This is a train we took to get to our hotel.", "album_id": "72157600317528182", "photo_flickr_id": "532759997", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43531", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a train we took to get to our hotel .", "storylet_id": "217658"}], [{"original_text": "The hotel was so nice!", "album_id": "72157600317528182", "photo_flickr_id": "532663904", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43531", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the hotel was so nice !", "storylet_id": "217659"}], [{"original_text": "The evil villain's lair crushed, we headed back to headquarters.", "album_id": "72157600317528182", "photo_flickr_id": "532663012", "setting": "last-3-pick-old-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "43532", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the evil villain 's lair crushed , we headed back to headquarters .", "storylet_id": "217660"}], [{"original_text": "Driving over 150mph, we made it there in no time.", "album_id": "72157600317528182", "photo_flickr_id": "532663150", "setting": "last-3-pick-old-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "43532", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "driving over 150mph , we made it there in no time .", "storylet_id": "217661"}], [{"original_text": "Crossing the invisible bridge we made our way into the normally unreachable region of our backyard.", "album_id": "72157600317528182", "photo_flickr_id": "532663306", "setting": "last-3-pick-old-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "43532", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "crossing the invisible bridge we made our way into the normally unreachable region of our backyard .", "storylet_id": "217662"}], [{"original_text": "Under this mountain lies the home of heroism and bravery.", "album_id": "72157600317528182", "photo_flickr_id": "532665832", "setting": "last-3-pick-old-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "43532", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "under this mountain lies the home of heroism and bravery .", "storylet_id": "217663"}], [{"original_text": "Yes, indeed, under this mountain lies the hall of justice.", "album_id": "72157600317528182", "photo_flickr_id": "532762833", "setting": "last-3-pick-old-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "43532", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "yes , indeed , under this mountain lies the hall of justice .", "storylet_id": "217664"}], [{"original_text": "The scene of serenity with a rusted old relic.", "album_id": "72157600317528182", "photo_flickr_id": "532663012", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43533", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the scene of serenity with a rusted old relic .", "storylet_id": "217665"}], [{"original_text": "Driving through the canopy gives them a feeling of peace.", "album_id": "72157600317528182", "photo_flickr_id": "532663150", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43533", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "driving through the canopy gives them a feeling of peace .", "storylet_id": "217666"}], [{"original_text": "The damn is incredible from a distance.", "album_id": "72157600317528182", "photo_flickr_id": "532663306", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43533", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the damn is incredible from a distance .", "storylet_id": "217667"}], [{"original_text": "The snow is thick and powdery.", "album_id": "72157600317528182", "photo_flickr_id": "532665832", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43533", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the snow is thick and powdery .", "storylet_id": "217668"}], [{"original_text": "The men make their way through the snow with some resistance.", "album_id": "72157600317528182", "photo_flickr_id": "532762833", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43533", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the men make their way through the snow with some resistance .", "storylet_id": "217669"}], [{"original_text": "During the trip, we saw a lot of cool things that looked neat reflected in the water.", "album_id": "72157600317528182", "photo_flickr_id": "532663012", "setting": "last-3-pick-old-and-tell", "worker_id": "4ZTAXTEY036MV0Q", "story_id": "43534", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during the trip , we saw a lot of cool things that looked neat reflected in the water .", "storylet_id": "217670"}], [{"original_text": "There was a lot a great scenery while driving through the country, lots of green!", "album_id": "72157600317528182", "photo_flickr_id": "532663150", "setting": "last-3-pick-old-and-tell", "worker_id": "4ZTAXTEY036MV0Q", "story_id": "43534", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot a great scenery while driving through the country , lots of green !", "storylet_id": "217671"}], [{"original_text": "There was even an awesome view of the dam.", "album_id": "72157600317528182", "photo_flickr_id": "532663306", "setting": "last-3-pick-old-and-tell", "worker_id": "4ZTAXTEY036MV0Q", "story_id": "43534", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was even an awesome view of the dam .", "storylet_id": "217672"}], [{"original_text": "In the higher elevations we saw snow on the mountains.", "album_id": "72157600317528182", "photo_flickr_id": "532665832", "setting": "last-3-pick-old-and-tell", "worker_id": "4ZTAXTEY036MV0Q", "story_id": "43534", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the higher elevations we saw snow on the mountains .", "storylet_id": "217673"}], [{"original_text": "We decided to make an attempt at a cross-country trip through the snow.", "album_id": "72157600317528182", "photo_flickr_id": "532762833", "setting": "last-3-pick-old-and-tell", "worker_id": "4ZTAXTEY036MV0Q", "story_id": "43534", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to make an attempt at a cross-country trip through the snow .", "storylet_id": "217674"}], [{"original_text": "There were many of my girlfriend's at the party.", "album_id": "72157601103516248", "photo_flickr_id": "954721176", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43535", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many of my girlfriend 's at the party .", "storylet_id": "217675"}], [{"original_text": "We all took pictures next to the balloons.", "album_id": "72157601103516248", "photo_flickr_id": "954708644", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43535", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all took pictures next to the balloons .", "storylet_id": "217676"}], [{"original_text": "The fire was well lit in the venue.", "album_id": "72157601103516248", "photo_flickr_id": "954709966", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43535", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fire was well lit in the venue .", "storylet_id": "217677"}], [{"original_text": "My girlfriend wanted a picture with her mom.", "album_id": "72157601103516248", "photo_flickr_id": "954704416", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43535", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my girlfriend wanted a picture with her mom .", "storylet_id": "217678"}], [{"original_text": "She wore her lucky pink heels.", "album_id": "72157601103516248", "photo_flickr_id": "953847697", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43535", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she wore her lucky pink heels .", "storylet_id": "217679"}], [{"original_text": "Just the girls getting together celebrating a friends last night as a single woman in this fun bridal shower.", "album_id": "72157601103516248", "photo_flickr_id": "954721176", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "43536", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "just the girls getting together celebrating a friends last night as a single woman in this fun bridal shower .", "storylet_id": "217680"}], [{"original_text": "Sharing some great laughs before dinner.", "album_id": "72157601103516248", "photo_flickr_id": "953863687", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "43536", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sharing some great laughs before dinner .", "storylet_id": "217681"}], [{"original_text": "Watching this eye catching chef cook our food with this enormous flame.", "album_id": "72157601103516248", "photo_flickr_id": "954709966", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "43536", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "watching this eye catching chef cook our food with this enormous flame .", "storylet_id": "217682"}], [{"original_text": "CHEESE...this is my bridal shower.", "album_id": "72157601103516248", "photo_flickr_id": "953852663", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "43536", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cheese ... this is my bridal shower .", "storylet_id": "217683"}], [{"original_text": "The girls hanging out and dancing to some music.", "album_id": "72157601103516248", "photo_flickr_id": "954698436", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "43536", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girls hanging out and dancing to some music .", "storylet_id": "217684"}], [{"original_text": "It was time for my bachelorette party.", "album_id": "72157601103516248", "photo_flickr_id": "954721176", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "43537", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was time for my bachelorette party .", "storylet_id": "217685"}], [{"original_text": "All of us girls got together at a local restaurant.", "album_id": "72157601103516248", "photo_flickr_id": "954708644", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "43537", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of us girls got together at a local restaurant .", "storylet_id": "217686"}], [{"original_text": "To my great surprise and enjoyment it was a hibachi grill.", "album_id": "72157601103516248", "photo_flickr_id": "954709966", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "43537", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "to my great surprise and enjoyment it was a hibachi grill .", "storylet_id": "217687"}], [{"original_text": "We had an amazing time and great food.", "album_id": "72157601103516248", "photo_flickr_id": "954704416", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "43537", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had an amazing time and great food .", "storylet_id": "217688"}], [{"original_text": "After we were done it was time to start the next leg of our journey.", "album_id": "72157601103516248", "photo_flickr_id": "953847697", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "43537", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we were done it was time to start the next leg of our journey .", "storylet_id": "217689"}], [{"original_text": "It's girls night out on the town and they are having a blast.", "album_id": "72157601103516248", "photo_flickr_id": "954721176", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "43538", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's girls night out on the town and they are having a blast .", "storylet_id": "217690"}], [{"original_text": "This girl just bought something was majorly funny.", "album_id": "72157601103516248", "photo_flickr_id": "953863687", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "43538", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this girl just bought something was majorly funny .", "storylet_id": "217691"}], [{"original_text": "The chefs have fired up the grill and plan to make an amazing dinner.", "album_id": "72157601103516248", "photo_flickr_id": "954709966", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "43538", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the chefs have fired up the grill and plan to make an amazing dinner .", "storylet_id": "217692"}], [{"original_text": "The bride to be is excited after dinner as its her time to shine.", "album_id": "72157601103516248", "photo_flickr_id": "953852663", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "43538", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride to be is excited after dinner as its her time to shine .", "storylet_id": "217693"}], [{"original_text": "The ladies are all packed after dinner and ready for a crazy night out.", "album_id": "72157601103516248", "photo_flickr_id": "954698436", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "43538", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ladies are all packed after dinner and ready for a crazy night out .", "storylet_id": "217694"}], [{"original_text": "The happy faces of woman when they get together to surprise their friend or family member in her bridal shower.", "album_id": "72157601103516248", "photo_flickr_id": "954721176", "setting": "last-3-pick-old-and-tell", "worker_id": "RTWM4ZLPKVA3AEI", "story_id": "43539", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the happy faces of woman when they get together to surprise their friend or family member in her bridal shower .", "storylet_id": "217695"}], [{"original_text": "This is the joy of laughter when the woman came together and let it all hang out.", "album_id": "72157601103516248", "photo_flickr_id": "953863687", "setting": "last-3-pick-old-and-tell", "worker_id": "RTWM4ZLPKVA3AEI", "story_id": "43539", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the joy of laughter when the woman came together and let it all hang out .", "storylet_id": "217696"}], [{"original_text": "They held the shower at a Japanese Restaurant, and the woman gathered around to see the chef at work and play.", "album_id": "72157601103516248", "photo_flickr_id": "954709966", "setting": "last-3-pick-old-and-tell", "worker_id": "RTWM4ZLPKVA3AEI", "story_id": "43539", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they held the shower at a japanese restaurant , and the woman gathered around to see the chef at work and play .", "storylet_id": "217697"}], [{"original_text": "They made sure to take a picture of the bride to be with an exuberant smile on her face.", "album_id": "72157601103516248", "photo_flickr_id": "953852663", "setting": "last-3-pick-old-and-tell", "worker_id": "RTWM4ZLPKVA3AEI", "story_id": "43539", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they made sure to take a picture of the bride to be with an exuberant smile on her face .", "storylet_id": "217698"}], [{"original_text": "The fun and games continued and brought much joy and laughter to all the woman who attended.", "album_id": "72157601103516248", "photo_flickr_id": "954698436", "setting": "last-3-pick-old-and-tell", "worker_id": "RTWM4ZLPKVA3AEI", "story_id": "43539", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fun and games continued and brought much joy and laughter to all the woman who attended .", "storylet_id": "217699"}], [{"original_text": "Group getting together and planning out a habitat near the water.", "album_id": "72157601282747831", "photo_flickr_id": "1013304392", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "43540", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "group getting together and planning out a habitat near the water .", "storylet_id": "217700"}], [{"original_text": "Large amount of people excited to take part in giving back to nature.", "album_id": "72157601282747831", "photo_flickr_id": "1012442257", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "43540", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "large amount of people excited to take part in giving back to nature .", "storylet_id": "217701"}], [{"original_text": "Some of the group planting some plants near the water.", "album_id": "72157601282747831", "photo_flickr_id": "1012442657", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "43540", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the group planting some plants near the water .", "storylet_id": "217702"}], [{"original_text": "This is what it looks like after everyone finished planting.", "album_id": "72157601282747831", "photo_flickr_id": "1012442887", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "43540", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is what it looks like after everyone finished planting .", "storylet_id": "217703"}], [{"original_text": "This area is crucial to bugs,frogs,turtles and other life such as waterfowl.", "album_id": "72157601282747831", "photo_flickr_id": "1012442977", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "43540", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this area is crucial to bugs , frogs , turtles and other life such as waterfowl .", "storylet_id": "217704"}], [{"original_text": "Talking to the group about environmental values of plants. ", "album_id": "72157601282747831", "photo_flickr_id": "1013305684", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43541", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "talking to the group about environmental values of plants .", "storylet_id": "217705"}], [{"original_text": "Ready to be planted on the ground. ", "album_id": "72157601282747831", "photo_flickr_id": "1013301990", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43541", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "ready to be planted on the ground .", "storylet_id": "217706"}], [{"original_text": "We saw a little frog. ", "album_id": "72157601282747831", "photo_flickr_id": "1012440631", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43541", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw a little frog .", "storylet_id": "217707"}], [{"original_text": "Taking the plants out of pots and planting them.", "album_id": "72157601282747831", "photo_flickr_id": "1013303642", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43541", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "taking the plants out of pots and planting them .", "storylet_id": "217708"}], [{"original_text": "Planting by the water. ", "album_id": "72157601282747831", "photo_flickr_id": "1012442657", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43541", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "planting by the water .", "storylet_id": "217709"}], [{"original_text": "I took the entire class to the lake to plant some trees.", "album_id": "72157601282747831", "photo_flickr_id": "1013305684", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43542", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took the entire class to the lake to plant some trees .", "storylet_id": "217710"}], [{"original_text": "They were all prepared for us when we got there.", "album_id": "72157601282747831", "photo_flickr_id": "1013301990", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43542", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were all prepared for us when we got there .", "storylet_id": "217711"}], [{"original_text": "There was a frog there as well.", "album_id": "72157601282747831", "photo_flickr_id": "1012440631", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43542", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a frog there as well .", "storylet_id": "217712"}], [{"original_text": "I showed the class how to do it.", "album_id": "72157601282747831", "photo_flickr_id": "1013303642", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43542", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i showed the class how to do it .", "storylet_id": "217713"}], [{"original_text": "They were very excited.", "album_id": "72157601282747831", "photo_flickr_id": "1012442657", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43542", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were very excited .", "storylet_id": "217714"}], [{"original_text": "Took a field trip to the tide pools.", "album_id": "72157601282747831", "photo_flickr_id": "1013304392", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43543", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "took a field trip to the tide pools .", "storylet_id": "217715"}], [{"original_text": "Learned lots of interesting tidbits.", "album_id": "72157601282747831", "photo_flickr_id": "1012442257", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43543", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "learned lots of interesting tidbits .", "storylet_id": "217716"}], [{"original_text": "Got to do a lot of hands on.", "album_id": "72157601282747831", "photo_flickr_id": "1012442657", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43543", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "got to do a lot of hands on .", "storylet_id": "217717"}], [{"original_text": "Now the tide starts to come in.", "album_id": "72157601282747831", "photo_flickr_id": "1012442887", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43543", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now the tide starts to come in .", "storylet_id": "217718"}], [{"original_text": "And everything is back under water.", "album_id": "72157601282747831", "photo_flickr_id": "1012442977", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43543", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and everything is back under water .", "storylet_id": "217719"}], [{"original_text": "Everyone gathered on the beach front with the supplies to start the day.", "album_id": "72157601282747831", "photo_flickr_id": "1013304392", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43544", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone gathered on the beach front with the supplies to start the day .", "storylet_id": "217720"}], [{"original_text": "They were all apart of a volunteer group.", "album_id": "72157601282747831", "photo_flickr_id": "1012442257", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43544", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were all apart of a volunteer group .", "storylet_id": "217721"}], [{"original_text": "Their job was simple, they had to spend the day putting the plants in the ground.", "album_id": "72157601282747831", "photo_flickr_id": "1012442657", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43544", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their job was simple , they had to spend the day putting the plants in the ground .", "storylet_id": "217722"}], [{"original_text": "The finished product was exactly what they wanted.", "album_id": "72157601282747831", "photo_flickr_id": "1012442887", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43544", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the finished product was exactly what they wanted .", "storylet_id": "217723"}], [{"original_text": "And it will benefit the environment greatly. ", "album_id": "72157601282747831", "photo_flickr_id": "1012442977", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43544", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and it will benefit the environment greatly .", "storylet_id": "217724"}], [{"original_text": "We decided to visit the old train station with a Ferris wheel.", "album_id": "72157594513823620", "photo_flickr_id": "377397428", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43545", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to visit the old train station with a organization wheel .", "storylet_id": "217725"}], [{"original_text": "There was no one else there.", "album_id": "72157594513823620", "photo_flickr_id": "377400689", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43545", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was no one else there .", "storylet_id": "217726"}], [{"original_text": "The tracks were all empty except for one train by itself.", "album_id": "72157594513823620", "photo_flickr_id": "377402269", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43545", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tracks were all empty except for one train by itself .", "storylet_id": "217727"}], [{"original_text": "We saw the Ferris wheel in the back. There was no one on it.", "album_id": "72157594513823620", "photo_flickr_id": "377396156", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43545", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw the ferris wheel in the back . there was no one on it .", "storylet_id": "217728"}], [{"original_text": "We decided to leave because it was getting creepy.", "album_id": "72157594513823620", "photo_flickr_id": "377398834", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43545", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to leave because it was getting creepy .", "storylet_id": "217729"}], [{"original_text": "It was really dark that night.", "album_id": "72157594513823620", "photo_flickr_id": "377402269", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43546", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was really dark that night .", "storylet_id": "217730"}], [{"original_text": "I took a picture that was blurry.", "album_id": "72157594513823620", "photo_flickr_id": "377401979", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43546", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i took a picture that was blurry .", "storylet_id": "217731"}], [{"original_text": "So I tried to take it again.", "album_id": "72157594513823620", "photo_flickr_id": "377401651", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43546", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so i tried to take it again .", "storylet_id": "217732"}], [{"original_text": "But it didn't work.", "album_id": "72157594513823620", "photo_flickr_id": "377400989", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43546", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but it did n't work .", "storylet_id": "217733"}], [{"original_text": "I think I need a new camera.", "album_id": "72157594513823620", "photo_flickr_id": "377394303", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43546", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think i need a new camera .", "storylet_id": "217734"}], [{"original_text": "Its the evening, and i`m passing an advertisement for a train.", "album_id": "72157594513823620", "photo_flickr_id": "377397428", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43547", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "its the evening , and i`m passing an advertisement for a train .", "storylet_id": "217735"}], [{"original_text": "This looks like a real train town.", "album_id": "72157594513823620", "photo_flickr_id": "377400689", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43547", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this looks like a real train town .", "storylet_id": "217736"}], [{"original_text": "There are trains everywhere ready to go.", "album_id": "72157594513823620", "photo_flickr_id": "377402269", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43547", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are trains everywhere ready to go .", "storylet_id": "217737"}], [{"original_text": "I am passing a carnival ferris wheel, they are so much fun.", "album_id": "72157594513823620", "photo_flickr_id": "377396156", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43547", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i am passing a carnival ferris wheel , they are so much fun .", "storylet_id": "217738"}], [{"original_text": "In the morning when the trains are running, i will take a ride through the town.", "album_id": "72157594513823620", "photo_flickr_id": "377398834", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43547", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the morning when the trains are running , i will take a ride through the town .", "storylet_id": "217739"}], [{"original_text": "Its a quiet winters night in a small town and the local ghost hunters are checking out a train museum.", "album_id": "72157594513823620", "photo_flickr_id": "377397428", "setting": "last-3-pick-old-and-tell", "worker_id": "8OU0ARD6MW4KQ8P", "story_id": "43548", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "its a quiet winters night in a small town and the local ghost hunters are checking out a train museum .", "storylet_id": "217740"}], [{"original_text": "The photographer of the group takes a picture of the quiet snowy night.", "album_id": "72157594513823620", "photo_flickr_id": "377400689", "setting": "last-3-pick-old-and-tell", "worker_id": "8OU0ARD6MW4KQ8P", "story_id": "43548", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the photographer of the group takes a picture of the quiet snowy night .", "storylet_id": "217741"}], [{"original_text": "Next they move over to the train cars to investigate stories of shadows seen in the windows.", "album_id": "72157594513823620", "photo_flickr_id": "377402269", "setting": "last-3-pick-old-and-tell", "worker_id": "8OU0ARD6MW4KQ8P", "story_id": "43548", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next they move over to the train cars to investigate stories of shadows seen in the windows .", "storylet_id": "217742"}], [{"original_text": "While in the train car they see a movement in the abandoned amusement park next door.", "album_id": "72157594513823620", "photo_flickr_id": "377396156", "setting": "last-3-pick-old-and-tell", "worker_id": "8OU0ARD6MW4KQ8P", "story_id": "43548", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while in the train car they see a movement in the abandoned amusement park next door .", "storylet_id": "217743"}], [{"original_text": "Before they leave to go investigate the amusement park they take a final picture of strange lights in the train yard.", "album_id": "72157594513823620", "photo_flickr_id": "377398834", "setting": "last-3-pick-old-and-tell", "worker_id": "8OU0ARD6MW4KQ8P", "story_id": "43548", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before they leave to go investigate the amusement park they take a final picture of strange lights in the train yard .", "storylet_id": "217744"}], [{"original_text": "Legend has it that if a train passes between the two street lights at exactly midnight, the ghost of a transient woman killed in the spot would appear on the tracks.", "album_id": "72157594513823620", "photo_flickr_id": "377402269", "setting": "last-3-pick-old-and-tell", "worker_id": "QALVZGNDGOEA0B2", "story_id": "43549", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "legend has it that if a train passes between the two street lights at exactly midnight , the ghost of a transient woman killed in the spot would appear on the tracks .", "storylet_id": "217745"}], [{"original_text": "So, the lone paranormal investigator waited.", "album_id": "72157594513823620", "photo_flickr_id": "377401979", "setting": "last-3-pick-old-and-tell", "worker_id": "QALVZGNDGOEA0B2", "story_id": "43549", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so , the lone paranormal investigator waited .", "storylet_id": "217746"}], [{"original_text": "His confidence began to wane as the end of the train got ever closer.", "album_id": "72157594513823620", "photo_flickr_id": "377401651", "setting": "last-3-pick-old-and-tell", "worker_id": "QALVZGNDGOEA0B2", "story_id": "43549", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his confidence began to wane as the end of the train got ever closer .", "storylet_id": "217747"}], [{"original_text": "But, even after the train was well out of site, he saw no apparition.", "album_id": "72157594513823620", "photo_flickr_id": "377400989", "setting": "last-3-pick-old-and-tell", "worker_id": "QALVZGNDGOEA0B2", "story_id": "43549", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but , even after the train was well out of site , he saw no apparition .", "storylet_id": "217748"}], [{"original_text": "Still, his nerves couldn't take it, and he ran.", "album_id": "72157594513823620", "photo_flickr_id": "377394303", "setting": "last-3-pick-old-and-tell", "worker_id": "QALVZGNDGOEA0B2", "story_id": "43549", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "still , his nerves could n't take it , and he ran .", "storylet_id": "217749"}], [{"original_text": "The old village looked just like he remembered it.", "album_id": "1763049", "photo_flickr_id": "81083255", "setting": "first-2-pick-and-tell", "worker_id": "CH4JQPX5HVTBU38", "story_id": "43550", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old village looked just like he remembered it .", "storylet_id": "217750"}], [{"original_text": "The red house was the 1st thing he saw at the edge of town. ", "album_id": "1763049", "photo_flickr_id": "81894792", "setting": "first-2-pick-and-tell", "worker_id": "CH4JQPX5HVTBU38", "story_id": "43550", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the red house was the 1st thing he saw at the edge of town .", "storylet_id": "217751"}], [{"original_text": "Next came the little yellow house next door to where he had grownup.", "album_id": "1763049", "photo_flickr_id": "78777533", "setting": "first-2-pick-and-tell", "worker_id": "CH4JQPX5HVTBU38", "story_id": "43550", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next came the little yellow house next door to where he had grownup .", "storylet_id": "217752"}], [{"original_text": "At last there it was!", "album_id": "1763049", "photo_flickr_id": "79576201", "setting": "first-2-pick-and-tell", "worker_id": "CH4JQPX5HVTBU38", "story_id": "43550", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at last there it was !", "storylet_id": "217753"}], [{"original_text": "His home, decorated for Christmas and to welcome him there!", "album_id": "1763049", "photo_flickr_id": "79576464", "setting": "first-2-pick-and-tell", "worker_id": "CH4JQPX5HVTBU38", "story_id": "43550", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his home , decorated for christmas and to welcome him there !", "storylet_id": "217754"}], [{"original_text": "How could anyone have believed that witches once lived here?", "album_id": "1763049", "photo_flickr_id": "81894792", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43551", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "how could anyone have believed that witches once lived here ?", "storylet_id": "217755"}], [{"original_text": "An old man told them some people there still believed in witches. ", "album_id": "1763049", "photo_flickr_id": "81820578", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43551", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "an old man told them some people there still believed in witches .", "storylet_id": "217756"}], [{"original_text": "He was quite the character. ", "album_id": "1763049", "photo_flickr_id": "81820219", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43551", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was quite the character .", "storylet_id": "217757"}], [{"original_text": "It was alleged that two witches had lived in this old house. ", "album_id": "1763049", "photo_flickr_id": "81814383", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43551", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was alleged that two witches had lived in this old house .", "storylet_id": "217758"}], [{"original_text": "This old house supposedly was home to an adulteress, who they believed was a witch.", "album_id": "1763049", "photo_flickr_id": "79485998", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43551", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this old house supposedly was home to an adulteress , who they believed was a witch .", "storylet_id": "217759"}], [{"original_text": "The tour of the historic village started with a look at a large, perfectly restored salt-box house. ", "album_id": "1763049", "photo_flickr_id": "81894792", "setting": "last-3-pick-old-and-tell", "worker_id": "0OX6WA96FXSIUHF", "story_id": "43552", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tour of the historic village started with a look at a large , perfectly restored salt-box house .", "storylet_id": "217760"}], [{"original_text": "The next home had a lovely tree and bench to rest outside. ", "album_id": "1763049", "photo_flickr_id": "81820578", "setting": "last-3-pick-old-and-tell", "worker_id": "0OX6WA96FXSIUHF", "story_id": "43552", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the next home had a lovely tree and bench to rest outside .", "storylet_id": "217761"}], [{"original_text": "One person couldn't resist lingering in the nice space. ", "album_id": "1763049", "photo_flickr_id": "81820219", "setting": "last-3-pick-old-and-tell", "worker_id": "0OX6WA96FXSIUHF", "story_id": "43552", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one person could n't resist lingering in the nice space .", "storylet_id": "217762"}], [{"original_text": "The steel gray blue home of Silas Deane was also on the tour. ", "album_id": "1763049", "photo_flickr_id": "81814383", "setting": "last-3-pick-old-and-tell", "worker_id": "0OX6WA96FXSIUHF", "story_id": "43552", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the steel gray blue home of [male] deane was also on the tour .", "storylet_id": "217763"}], [{"original_text": "My favorite detail from the tour were beautifully crafted doors that looked almost like a valentine. ", "album_id": "1763049", "photo_flickr_id": "79485998", "setting": "last-3-pick-old-and-tell", "worker_id": "0OX6WA96FXSIUHF", "story_id": "43552", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite detail from the tour were beautifully crafted doors that looked almost like a valentine .", "storylet_id": "217764"}], [{"original_text": "Historic homes are plentiful in my home town.", "album_id": "1763049", "photo_flickr_id": "81894792", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43553", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "historic homes are plentiful in my home town .", "storylet_id": "217765"}], [{"original_text": "The columns on this porch are expressive.", "album_id": "1763049", "photo_flickr_id": "81820578", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43553", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the columns on this porch are expressive .", "storylet_id": "217766"}], [{"original_text": "The large tree in the yard is a perfect accent to the brick sided home.", "album_id": "1763049", "photo_flickr_id": "81820219", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43553", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the large tree in the yard is a perfect accent to the brick sided home .", "storylet_id": "217767"}], [{"original_text": "Plain, but full of heritage describes this late 1800's residence.", "album_id": "1763049", "photo_flickr_id": "81814383", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43553", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "plain , but full of heritage describes this late 1800 's residence .", "storylet_id": "217768"}], [{"original_text": "What an entryway. Lets give it a little make over to make it pop.", "album_id": "1763049", "photo_flickr_id": "79485998", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43553", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what an entryway . lets give it a little make over to make it pop .", "storylet_id": "217769"}], [{"original_text": "The old church was in the center of town. ", "album_id": "1763049", "photo_flickr_id": "81083255", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43554", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old church was in the center of town .", "storylet_id": "217770"}], [{"original_text": "This historic house is over 200 years old. ", "album_id": "1763049", "photo_flickr_id": "81894792", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43554", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this historic house is over 200 years old .", "storylet_id": "217771"}], [{"original_text": "This historic house only has one room. ", "album_id": "1763049", "photo_flickr_id": "78777533", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43554", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this historic house only has one room .", "storylet_id": "217772"}], [{"original_text": "This house was built for the 1st mayor of the town. ", "album_id": "1763049", "photo_flickr_id": "79576201", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43554", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this house was built for the 1st mayor of the town .", "storylet_id": "217773"}], [{"original_text": "The town mayor lives in this town now. ", "album_id": "1763049", "photo_flickr_id": "79576464", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43554", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the town mayor lives in this town now .", "storylet_id": "217774"}], [{"original_text": "From a distance the city looked large.", "album_id": "72157623150525078", "photo_flickr_id": "4243261805", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43555", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "from a distance the city looked large .", "storylet_id": "217775"}], [{"original_text": "It was situated on the sea.", "album_id": "72157623150525078", "photo_flickr_id": "4244035888", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43555", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was situated on the sea .", "storylet_id": "217776"}], [{"original_text": "Surprisingly, there were many buildings in ruin.", "album_id": "72157623150525078", "photo_flickr_id": "4244036064", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43555", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "surprisingly , there were many buildings in ruin .", "storylet_id": "217777"}], [{"original_text": "They were considered historical sites so nobody dared tear them down.", "album_id": "72157623150525078", "photo_flickr_id": "4244037506", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43555", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were considered historical sites so nobody dared tear them down .", "storylet_id": "217778"}], [{"original_text": "Even the newer houses that had been built had an ancient feel to them.", "album_id": "72157623150525078", "photo_flickr_id": "4244038770", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43555", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the newer houses that had been built had an ancient feel to them .", "storylet_id": "217779"}], [{"original_text": "The old structures stood tall, as the couple explored the ruins.", "album_id": "72157623150525078", "photo_flickr_id": "4243262099", "setting": "first-2-pick-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "43556", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old structures stood tall , as the couple explored the ruins .", "storylet_id": "217780"}], [{"original_text": "They looked at the pieces at all angles, seeing so many sides to the story.", "album_id": "72157623150525078", "photo_flickr_id": "4244035674", "setting": "first-2-pick-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "43556", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they looked at the pieces at all angles , seeing so many sides to the story .", "storylet_id": "217781"}], [{"original_text": "They gazed out at the water, wondering what life was like here so long ago.", "album_id": "72157623150525078", "photo_flickr_id": "4244035888", "setting": "first-2-pick-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "43556", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they gazed out at the water , wondering what life was like here so long ago .", "storylet_id": "217782"}], [{"original_text": "Not all of it was in great shape, they noted, some did see the test of time.", "album_id": "72157623150525078", "photo_flickr_id": "4243263755", "setting": "first-2-pick-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "43556", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "not all of it was in great shape , they noted , some did see the test of time .", "storylet_id": "217783"}], [{"original_text": "But in general, the couple was very impressed with the ability of the architecture to stand up to time.", "album_id": "72157623150525078", "photo_flickr_id": "4244037506", "setting": "first-2-pick-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "43556", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but in general , the couple was very impressed with the ability of the architecture to stand up to time .", "storylet_id": "217784"}], [{"original_text": "This is a very old ancient city, with what they call ruins everywhere.", "album_id": "72157623150525078", "photo_flickr_id": "4243261805", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43557", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a very old ancient city , with what they call ruins everywhere .", "storylet_id": "217785"}], [{"original_text": "I would have loved to have seen when it was all built up.", "album_id": "72157623150525078", "photo_flickr_id": "4244035888", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43557", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i would have loved to have seen when it was all built up .", "storylet_id": "217786"}], [{"original_text": "Tourists come from miles around to see these old rare structures.", "album_id": "72157623150525078", "photo_flickr_id": "4244036064", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43557", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "tourists come from miles around to see these old rare structures .", "storylet_id": "217787"}], [{"original_text": "These columns were built so long ago, its a wonder that they are still standing.", "album_id": "72157623150525078", "photo_flickr_id": "4244037506", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43557", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these columns were built so long ago , its a wonder that they are still standing .", "storylet_id": "217788"}], [{"original_text": "I wonder who lived here and what they did for a living.", "album_id": "72157623150525078", "photo_flickr_id": "4244038770", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "43557", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i wonder who lived here and what they did for a living .", "storylet_id": "217789"}], [{"original_text": "The tour of the Mediterranean island stared at the outskirts of the city.", "album_id": "72157623150525078", "photo_flickr_id": "4243261805", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43558", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tour of the location island stared at the outskirts of the city .", "storylet_id": "217790"}], [{"original_text": "The first stop was an old sea fort.", "album_id": "72157623150525078", "photo_flickr_id": "4244035888", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43558", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first stop was an old sea fort .", "storylet_id": "217791"}], [{"original_text": "Much of the original structure was still intact.", "album_id": "72157623150525078", "photo_flickr_id": "4244036064", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43558", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "much of the original structure was still intact .", "storylet_id": "217792"}], [{"original_text": "Ancient Roman columns still stood even after centuries of existence.", "album_id": "72157623150525078", "photo_flickr_id": "4244037506", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43558", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "ancient [male] columns still stood even after centuries of existence .", "storylet_id": "217793"}], [{"original_text": "The tour concluded with a visit to a modern villa.", "album_id": "72157623150525078", "photo_flickr_id": "4244038770", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "43558", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the tour concluded with a visit to a modern villa .", "storylet_id": "217794"}], [{"original_text": "We decided to look at some of the old ruins of the town.", "album_id": "72157623150525078", "photo_flickr_id": "4243262099", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "43559", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to look at some of the old ruins of the town .", "storylet_id": "217795"}], [{"original_text": "We found a lot of destroyed buildings and misplaced rocks.", "album_id": "72157623150525078", "photo_flickr_id": "4244035674", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "43559", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we found a lot of destroyed buildings and misplaced rocks .", "storylet_id": "217796"}], [{"original_text": "The shoreline harbored a lot of the towns debris.", "album_id": "72157623150525078", "photo_flickr_id": "4244035888", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "43559", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the shoreline harbored a lot of the towns debris .", "storylet_id": "217797"}], [{"original_text": "The coliseum was still fairly in tact though.", "album_id": "72157623150525078", "photo_flickr_id": "4243263755", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "43559", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the coliseum was still fairly in tact though .", "storylet_id": "217798"}], [{"original_text": "The ruins were nice to see. But the scenery is depressing, so we left.", "album_id": "72157623150525078", "photo_flickr_id": "4244037506", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "43559", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ruins were nice to see . but the scenery is depressing , so we left .", "storylet_id": "217799"}], [{"original_text": "I was very late to class today because I slept in too long.", "album_id": "72157628704102171", "photo_flickr_id": "6629934155", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43560", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was very late to class today because i slept in too long .", "storylet_id": "217800"}], [{"original_text": "When I got to school there was nobody walking around because class was already in session.", "album_id": "72157628704102171", "photo_flickr_id": "6629781105", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43560", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when i got to school there was nobody walking around because class was already in session .", "storylet_id": "217801"}], [{"original_text": "The art students always make strange things.", "album_id": "72157628704102171", "photo_flickr_id": "6629910747", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43560", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the art students always make strange things .", "storylet_id": "217802"}], [{"original_text": "When I got to class the instructor was busy teaching and nobody noticed I was late.", "album_id": "72157628704102171", "photo_flickr_id": "6629790715", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43560", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when i got to class the instructor was busy teaching and nobody noticed i was late .", "storylet_id": "217803"}], [{"original_text": "I had to stay in class for the next few hours while trying not to fall asleep again.", "album_id": "72157628704102171", "photo_flickr_id": "6629922217", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43560", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had to stay in class for the next few hours while trying not to fall asleep again .", "storylet_id": "217804"}], [{"original_text": "After a semester in the classroom, it was time to get out an explore the city.", "album_id": "72157628704102171", "photo_flickr_id": "6629790715", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43561", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after a semester in the classroom , it was time to get out an explore the city .", "storylet_id": "217805"}], [{"original_text": "It was old and magnificent!", "album_id": "72157628704102171", "photo_flickr_id": "6629768141", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43561", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was old and magnificent !", "storylet_id": "217806"}], [{"original_text": "So much beautiful architecture to behold!", "album_id": "72157628704102171", "photo_flickr_id": "6629838847", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43561", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so much beautiful architecture to behold !", "storylet_id": "217807"}], [{"original_text": "Even the details inside the buildings were amazing.", "album_id": "72157628704102171", "photo_flickr_id": "6629873493", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43561", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the details inside the buildings were amazing .", "storylet_id": "217808"}], [{"original_text": "Strange and interesting sculptures could be found everywhere.", "album_id": "72157628704102171", "photo_flickr_id": "6629910747", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43561", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "strange and interesting sculptures could be found everywhere .", "storylet_id": "217809"}], [{"original_text": "We saw some crazy sights on our trip. At this house, it appeared like a shark was flying through the roof.", "album_id": "72157628704102171", "photo_flickr_id": "6629934155", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "43562", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we saw some crazy sights on our trip . at this house , it appeared like a shark was flying through the roof .", "storylet_id": "217810"}], [{"original_text": "The architecture was beautiful. This building was like a castle. It was definitely fit for royalty.", "album_id": "72157628704102171", "photo_flickr_id": "6629781105", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "43562", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the architecture was beautiful . this building was like a castle . it was definitely fit for royalty .", "storylet_id": "217811"}], [{"original_text": "There were interesting statues as well, in surprising poses.", "album_id": "72157628704102171", "photo_flickr_id": "6629910747", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "43562", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were interesting statues as well , in surprising poses .", "storylet_id": "217812"}], [{"original_text": "We were surprised to see this chalk board with math problems.", "album_id": "72157628704102171", "photo_flickr_id": "6629790715", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "43562", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were surprised to see this chalk board with math problems .", "storylet_id": "217813"}], [{"original_text": "It was a grand estate and we can't wait for you to see it one day.", "album_id": "72157628704102171", "photo_flickr_id": "6629922217", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "43562", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a grand estate and we ca n't wait for you to see it one day .", "storylet_id": "217814"}], [{"original_text": "This old country had many things that were interesting.", "album_id": "72157628704102171", "photo_flickr_id": "6629934155", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43563", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this old country had many things that were interesting .", "storylet_id": "217815"}], [{"original_text": "Their building designs were something like we have never seen.", "album_id": "72157628704102171", "photo_flickr_id": "6629781105", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43563", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their building designs were something like we have never seen .", "storylet_id": "217816"}], [{"original_text": "The statues all had something to say.", "album_id": "72157628704102171", "photo_flickr_id": "6629910747", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43563", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the statues all had something to say .", "storylet_id": "217817"}], [{"original_text": "We found this random chalk board in one of the rooms.", "album_id": "72157628704102171", "photo_flickr_id": "6629790715", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43563", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found this random chalk board in one of the rooms .", "storylet_id": "217818"}], [{"original_text": "Some of the buildings that we found seemed to be very modern.", "album_id": "72157628704102171", "photo_flickr_id": "6629922217", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43563", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the buildings that we found seemed to be very modern .", "storylet_id": "217819"}], [{"original_text": "Calculus is always a challenge.", "album_id": "72157628704102171", "photo_flickr_id": "6629790715", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43564", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "calculus is always a challenge .", "storylet_id": "217820"}], [{"original_text": "When I attended college, our math hall was located in a 125 year old building", "album_id": "72157628704102171", "photo_flickr_id": "6629768141", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43564", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when i attended college , our math hall was located in a 125 year old building", "storylet_id": "217821"}], [{"original_text": "This is the top of our science lab which includes a giant telescope!", "album_id": "72157628704102171", "photo_flickr_id": "6629838847", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43564", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the top of our science lab which includes a giant telescope !", "storylet_id": "217822"}], [{"original_text": "At night. the gates are closed off to the general public.", "album_id": "72157628704102171", "photo_flickr_id": "6629873493", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43564", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at night . the gates are closed off to the general public .", "storylet_id": "217823"}], [{"original_text": "Sculptures are found throughout the campus.", "album_id": "72157628704102171", "photo_flickr_id": "6629910747", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43564", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sculptures are found throughout the campus .", "storylet_id": "217824"}], [{"original_text": "this was the family dog", "album_id": "1501705", "photo_flickr_id": "69744300", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "43565", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the family dog", "storylet_id": "217825"}], [{"original_text": "he just sat around the house being lazy", "album_id": "1501705", "photo_flickr_id": "69744655", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "43565", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he just sat around the house being lazy", "storylet_id": "217826"}], [{"original_text": "and this was his girlfriend daisy ", "album_id": "1501705", "photo_flickr_id": "69744664", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "43565", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and this was his girlfriend daisy", "storylet_id": "217827"}], [{"original_text": "the food was excellent", "album_id": "1501705", "photo_flickr_id": "69744840", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "43565", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food was excellent", "storylet_id": "217828"}], [{"original_text": "and the fireworks were amazing ", "album_id": "1501705", "photo_flickr_id": "69744905", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "43565", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the fireworks were amazing", "storylet_id": "217829"}], [{"original_text": "This is our Miniature Schnauzer Stella.", "album_id": "1501705", "photo_flickr_id": "69744612", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43566", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is our miniature schnauzer [female] .", "storylet_id": "217830"}], [{"original_text": "This is our Maltese Mike.", "album_id": "1501705", "photo_flickr_id": "69744629", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43566", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is our maltese [male] .", "storylet_id": "217831"}], [{"original_text": "We took them with us to our vacation in Mexico.", "album_id": "1501705", "photo_flickr_id": "69744739", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43566", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took them with us to our vacation in location .", "storylet_id": "217832"}], [{"original_text": "They loved the long walk we took to enjoy the beautiful scenery.", "album_id": "1501705", "photo_flickr_id": "69744714", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43566", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they loved the long walk we took to enjoy the beautiful scenery .", "storylet_id": "217833"}], [{"original_text": "However they were scared at night when the locals lit fireworks during a celebration.", "album_id": "1501705", "photo_flickr_id": "69744864", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43566", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however they were scared at night when the locals lit fireworks during a celebration .", "storylet_id": "217834"}], [{"original_text": "My name is Barney and I am the king of this house.", "album_id": "1501705", "photo_flickr_id": "69744300", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43567", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my name is [male] and i am the king of this house .", "storylet_id": "217835"}], [{"original_text": "I can lay wherever I want.", "album_id": "1501705", "photo_flickr_id": "69744655", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43567", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i can lay wherever i want .", "storylet_id": "217836"}], [{"original_text": "This is my queen, Francesca. She is so beautiful!", "album_id": "1501705", "photo_flickr_id": "69744664", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43567", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is my queen , [female] . she is so beautiful !", "storylet_id": "217837"}], [{"original_text": "I love it when my people share their food with me.", "album_id": "1501705", "photo_flickr_id": "69744840", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43567", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love it when my people share their food with me .", "storylet_id": "217838"}], [{"original_text": "I am afraid of fireworks; I hide from them under the bed!", "album_id": "1501705", "photo_flickr_id": "69744905", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43567", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am afraid of fireworks ; i hide from them under the bed !", "storylet_id": "217839"}], [{"original_text": "Had a great time in Mexico. This here is Ginger.", "album_id": "1501705", "photo_flickr_id": "69744612", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43568", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "had a great time in location . this here is [female] .", "storylet_id": "217840"}], [{"original_text": "And this is Lala. Apparently not every dog in Mexico is a Chihuahua.", "album_id": "1501705", "photo_flickr_id": "69744629", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43568", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and this is lala . apparently not every dog in location is a location .", "storylet_id": "217841"}], [{"original_text": "What a beautiful place we got to stay at.", "album_id": "1501705", "photo_flickr_id": "69744739", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43568", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what a beautiful place we got to stay at .", "storylet_id": "217842"}], [{"original_text": "Some awesome things to see here.", "album_id": "1501705", "photo_flickr_id": "69744714", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43568", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some awesome things to see here .", "storylet_id": "217843"}], [{"original_text": "Viva Mexico! Celebration time!", "album_id": "1501705", "photo_flickr_id": "69744864", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43568", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "location location ! celebration time !", "storylet_id": "217844"}], [{"original_text": "Biscuit was looking for a treat.", "album_id": "1501705", "photo_flickr_id": "69744612", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43569", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "biscuit was looking for a treat .", "storylet_id": "217845"}], [{"original_text": "Sadie decided to help search.", "album_id": "1501705", "photo_flickr_id": "69744629", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43569", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] decided to help search .", "storylet_id": "217846"}], [{"original_text": "They ran out the door and down the street.", "album_id": "1501705", "photo_flickr_id": "69744739", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43569", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they ran out the door and down the street .", "storylet_id": "217847"}], [{"original_text": "They didn't find their treats anywhere.", "album_id": "1501705", "photo_flickr_id": "69744714", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43569", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they did n't find their treats anywhere .", "storylet_id": "217848"}], [{"original_text": "They did find some fireworks!", "album_id": "1501705", "photo_flickr_id": "69744864", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43569", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they did find some fireworks !", "storylet_id": "217849"}], [{"original_text": "Capital city seemed almost haunting at night.", "album_id": "72157594517390554", "photo_flickr_id": "381277842", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43570", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "capital city seemed almost haunting at night .", "storylet_id": "217850"}], [{"original_text": "The white buildings were illuminated by lights in the lawn.", "album_id": "72157594517390554", "photo_flickr_id": "379514844", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43570", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the white buildings were illuminated by lights in the lawn .", "storylet_id": "217851"}], [{"original_text": "The streets had a vintage quality to them.", "album_id": "72157594517390554", "photo_flickr_id": "381281680", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43570", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the streets had a vintage quality to them .", "storylet_id": "217852"}], [{"original_text": "Tunnels were enchanting and mysterious.", "album_id": "72157594517390554", "photo_flickr_id": "379510237", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43570", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "tunnels were enchanting and mysterious .", "storylet_id": "217853"}], [{"original_text": "Some of the statues in town were very creepy and gave off a dark vibe.", "album_id": "72157594517390554", "photo_flickr_id": "382495882", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43570", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the statues in town were very creepy and gave off a dark vibe .", "storylet_id": "217854"}], [{"original_text": "It's nighttime in the city. The lake in the park reflects the streetlights.", "album_id": "72157594517390554", "photo_flickr_id": "381279090", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43571", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's nighttime in the city . the lake in the park reflects the streetlights .", "storylet_id": "217855"}], [{"original_text": "It's so late out, that no one is around. It's quiet and peaceful.", "album_id": "72157594517390554", "photo_flickr_id": "379510237", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43571", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's so late out , that no one is around . it 's quiet and peaceful .", "storylet_id": "217856"}], [{"original_text": "I walk by the monument and there are no tourists around.", "album_id": "72157594517390554", "photo_flickr_id": "379514844", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43571", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i walk by the monument and there are no tourists around .", "storylet_id": "217857"}], [{"original_text": "The moon is shining brightly up in the sky.", "album_id": "72157594517390554", "photo_flickr_id": "380285271", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43571", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the moon is shining brightly up in the sky .", "storylet_id": "217858"}], [{"original_text": "Everyone is at home and it's peaceful in the city.", "album_id": "72157594517390554", "photo_flickr_id": "380287619", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43571", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone is at home and it 's peaceful in the city .", "storylet_id": "217859"}], [{"original_text": "The man went to the skating rink by himself.", "album_id": "72157594517390554", "photo_flickr_id": "381277842", "setting": "last-3-pick-old-and-tell", "worker_id": "33CZHDH4F099N4F", "story_id": "43572", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man went to the skating rink by himself .", "storylet_id": "217860"}], [{"original_text": "Then he began to walk around the city.", "album_id": "72157594517390554", "photo_flickr_id": "379514844", "setting": "last-3-pick-old-and-tell", "worker_id": "33CZHDH4F099N4F", "story_id": "43572", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then he began to walk around the city .", "storylet_id": "217861"}], [{"original_text": "The monuments of the city took him away.", "album_id": "72157594517390554", "photo_flickr_id": "381281680", "setting": "last-3-pick-old-and-tell", "worker_id": "33CZHDH4F099N4F", "story_id": "43572", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the monuments of the city took him away .", "storylet_id": "217862"}], [{"original_text": "He felt alone on this night", "album_id": "72157594517390554", "photo_flickr_id": "379510237", "setting": "last-3-pick-old-and-tell", "worker_id": "33CZHDH4F099N4F", "story_id": "43572", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he felt alone on this night", "storylet_id": "217863"}], [{"original_text": "The wonders of the city always made him get over his loneliness. ", "album_id": "72157594517390554", "photo_flickr_id": "382495882", "setting": "last-3-pick-old-and-tell", "worker_id": "33CZHDH4F099N4F", "story_id": "43572", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the wonders of the city always made him get over his loneliness .", "storylet_id": "217864"}], [{"original_text": "We visited the big city during the night.", "album_id": "72157594517390554", "photo_flickr_id": "381279090", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43573", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited the big city during the night .", "storylet_id": "217865"}], [{"original_text": "There were many older looking buildings that were lit up well.", "album_id": "72157594517390554", "photo_flickr_id": "379510237", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43573", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many older looking buildings that were lit up well .", "storylet_id": "217866"}], [{"original_text": "One of the bigger buildings even had a statue attached to the front step area.", "album_id": "72157594517390554", "photo_flickr_id": "379514844", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43573", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the bigger buildings even had a statue attached to the front step area .", "storylet_id": "217867"}], [{"original_text": "This court house had a bug clock on the top that looked really scary.", "album_id": "72157594517390554", "photo_flickr_id": "380285271", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43573", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this court house had a bug clock on the top that looked really scary .", "storylet_id": "217868"}], [{"original_text": "This was a very tall building that had lights up the side of it.", "album_id": "72157594517390554", "photo_flickr_id": "380287619", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "43573", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was a very tall building that had lights up the side of it .", "storylet_id": "217869"}], [{"original_text": "The best place we visited during vacation.", "album_id": "72157594517390554", "photo_flickr_id": "381277842", "setting": "last-3-pick-old-and-tell", "worker_id": "TU0EUEKYL650PCJ", "story_id": "43574", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the best place we visited during vacation .", "storylet_id": "217870"}], [{"original_text": "The family visited the historical monument and explored the museum.", "album_id": "72157594517390554", "photo_flickr_id": "379514844", "setting": "last-3-pick-old-and-tell", "worker_id": "TU0EUEKYL650PCJ", "story_id": "43574", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family visited the historical monument and explored the museum .", "storylet_id": "217871"}], [{"original_text": "The night was filled with magnificent architectural structures for viewing.", "album_id": "72157594517390554", "photo_flickr_id": "381281680", "setting": "last-3-pick-old-and-tell", "worker_id": "TU0EUEKYL650PCJ", "story_id": "43574", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the night was filled with magnificent architectural structures for viewing .", "storylet_id": "217872"}], [{"original_text": "We walked throughout the city and enjoyed delicious cuisines and wine.", "album_id": "72157594517390554", "photo_flickr_id": "379510237", "setting": "last-3-pick-old-and-tell", "worker_id": "TU0EUEKYL650PCJ", "story_id": "43574", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we walked throughout the city and enjoyed delicious cuisines and wine .", "storylet_id": "217873"}], [{"original_text": "The museum was filled with fabulous historical artifacts by famous artists.", "album_id": "72157594517390554", "photo_flickr_id": "382495882", "setting": "last-3-pick-old-and-tell", "worker_id": "TU0EUEKYL650PCJ", "story_id": "43574", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the museum was filled with fabulous historical artifacts by famous artists .", "storylet_id": "217874"}], [{"original_text": "We were so excited for our trip to India. ", "album_id": "72057594139279785", "photo_flickr_id": "110539642", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43575", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were so excited for our trip to location .", "storylet_id": "217875"}], [{"original_text": "The landscape was absolutely stunning on the way to the village.", "album_id": "72057594139279785", "photo_flickr_id": "149259744", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43575", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the landscape was absolutely stunning on the way to the village .", "storylet_id": "217876"}], [{"original_text": "We stopped at a local church along the road for a drink.", "album_id": "72057594139279785", "photo_flickr_id": "149260191", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43575", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stopped at a local church along the road for a drink .", "storylet_id": "217877"}], [{"original_text": "We saw a snake charmer who did a brief show for us.", "album_id": "72057594139279785", "photo_flickr_id": "149260819", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43575", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw a snake charmer who did a brief show for us .", "storylet_id": "217878"}], [{"original_text": "We finished the day riding elephants to our accommodations. ", "album_id": "72057594139279785", "photo_flickr_id": "183320988", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43575", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finished the day riding elephants to our accommodations .", "storylet_id": "217879"}], [{"original_text": "We were not sure what to expect when we entered the foreign land, but this castle looking structure was awesome.", "album_id": "72057594139279785", "photo_flickr_id": "110539642", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43576", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were not sure what to expect when we entered the foreign land , but this castle looking structure was awesome .", "storylet_id": "217880"}], [{"original_text": "We stopped in at a Coffee Bar to have a drink.", "album_id": "72057594139279785", "photo_flickr_id": "149260421", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43576", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped in at a coffee bar to have a drink .", "storylet_id": "217881"}], [{"original_text": "I caught a bird just hanging out on a power line during the day.", "album_id": "72057594139279785", "photo_flickr_id": "149261028", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43576", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i caught a bird just hanging out on a power line during the day .", "storylet_id": "217882"}], [{"original_text": "The view that we got after leaving the bar was breathtaking to view.", "album_id": "72057594139279785", "photo_flickr_id": "149262733", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43576", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view that we got after leaving the bar was breathtaking to view .", "storylet_id": "217883"}], [{"original_text": "We got to see an African Elephant walking around the streets as well.", "album_id": "72057594139279785", "photo_flickr_id": "183319895", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43576", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we got to see an african elephant walking around the streets as well .", "storylet_id": "217884"}], [{"original_text": "I went on vacation last week.", "album_id": "72057594139279785", "photo_flickr_id": "110539642", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43577", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on vacation last week .", "storylet_id": "217885"}], [{"original_text": "It was beautiful there.", "album_id": "72057594139279785", "photo_flickr_id": "149259744", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43577", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was beautiful there .", "storylet_id": "217886"}], [{"original_text": "I had a great time looking at all the buildings.", "album_id": "72057594139279785", "photo_flickr_id": "149260191", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43577", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time looking at all the buildings .", "storylet_id": "217887"}], [{"original_text": "The local food was delicious.", "album_id": "72057594139279785", "photo_flickr_id": "149260819", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43577", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the local food was delicious .", "storylet_id": "217888"}], [{"original_text": "I even got to ride an elephant!", "album_id": "72057594139279785", "photo_flickr_id": "183320988", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43577", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i even got to ride an elephant !", "storylet_id": "217889"}], [{"original_text": "Manny was excited to visit the village ", "album_id": "72057594139279785", "photo_flickr_id": "110539642", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43578", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "manny was excited to visit the village", "storylet_id": "217890"}], [{"original_text": "that was in the middle of nowhere.", "album_id": "72057594139279785", "photo_flickr_id": "149259744", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43578", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that was in the middle of nowhere .", "storylet_id": "217891"}], [{"original_text": "He loved to see their unique structures,", "album_id": "72057594139279785", "photo_flickr_id": "149260191", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43578", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he loved to see their unique structures ,", "storylet_id": "217892"}], [{"original_text": "and he loved watching the villagers work hard for what they got.", "album_id": "72057594139279785", "photo_flickr_id": "149260819", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43578", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and he loved watching the villagers work hard for what they got .", "storylet_id": "217893"}], [{"original_text": "He also thought it was amazing that they rode elephants in the middle of the street! Manny was able to ride one, and he thought to himself, man, this village really knows how to live life right. ", "album_id": "72057594139279785", "photo_flickr_id": "183320988", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43578", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he also thought it was amazing that they rode elephants in the middle of the street ! manny was able to ride one , and he thought to himself , man , this village really knows how to live life right .", "storylet_id": "217894"}], [{"original_text": "The tourists stop at an old castle.", "album_id": "72057594139279785", "photo_flickr_id": "110539642", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43579", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tourists stop at an old castle .", "storylet_id": "217895"}], [{"original_text": "After that, they go on a small hike to see the scenery.", "album_id": "72057594139279785", "photo_flickr_id": "149259744", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43579", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after that , they go on a small hike to see the scenery .", "storylet_id": "217896"}], [{"original_text": "Then, they stop at a very small, old churcj/", "album_id": "72057594139279785", "photo_flickr_id": "149260191", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43579", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then , they stop at a very small , old churcj/", "storylet_id": "217897"}], [{"original_text": "They come across a local with chickens in a basket.", "album_id": "72057594139279785", "photo_flickr_id": "149260819", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43579", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they come across a local with chickens in a basket .", "storylet_id": "217898"}], [{"original_text": "Then, they see 2 elephants.", "album_id": "72057594139279785", "photo_flickr_id": "183320988", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43579", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then , they see 2 elephants .", "storylet_id": "217899"}], [{"original_text": "We walked down the path to the castle.", "album_id": "72157594268530948", "photo_flickr_id": "233953211", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43580", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we walked down the path to the castle .", "storylet_id": "217900"}], [{"original_text": "We were greeted at the entrance by Pan.", "album_id": "72157594268530948", "photo_flickr_id": "235126952", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43580", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were greeted at the entrance by pan .", "storylet_id": "217901"}], [{"original_text": "Once inside the gate we saw this sphinx lady.", "album_id": "72157594268530948", "photo_flickr_id": "236148074", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43580", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once inside the gate we saw this sphinx lady .", "storylet_id": "217902"}], [{"original_text": "The architecture of the castle was very detailed.", "album_id": "72157594268530948", "photo_flickr_id": "236149119", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43580", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the architecture of the castle was very detailed .", "storylet_id": "217903"}], [{"original_text": "Inside we found many interesting relics to look at.", "album_id": "72157594268530948", "photo_flickr_id": "237721264", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43580", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "inside we found many interesting relics to look at .", "storylet_id": "217904"}], [{"original_text": "We traveled the long road.", "album_id": "72157594268530948", "photo_flickr_id": "233953211", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43581", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we traveled the long road .", "storylet_id": "217905"}], [{"original_text": "We got to see the mini castle.", "album_id": "72157594268530948", "photo_flickr_id": "233956408", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43581", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to see the mini castle .", "storylet_id": "217906"}], [{"original_text": "They had ancient artifacts.", "album_id": "72157594268530948", "photo_flickr_id": "233958862", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43581", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had ancient artifacts .", "storylet_id": "217907"}], [{"original_text": "Some were of Greek origin.", "album_id": "72157594268530948", "photo_flickr_id": "235126952", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43581", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some were of greek origin .", "storylet_id": "217908"}], [{"original_text": "We have to return because there was so much to see.", "album_id": "72157594268530948", "photo_flickr_id": "236152556", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43581", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we have to return because there was so much to see .", "storylet_id": "217909"}], [{"original_text": "We had never seen this kind of culture and as we walked closer to the architectural masterpiece, we were amazed... ", "album_id": "72157594268530948", "photo_flickr_id": "233953211", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43582", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had never seen this kind of culture and as we walked closer to the architectural masterpiece , we were amazed ...", "storylet_id": "217910"}], [{"original_text": "The leprechaun statue was a site to behold...", "album_id": "72157594268530948", "photo_flickr_id": "235126952", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43582", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the leprechaun statue was a site to behold ...", "storylet_id": "217911"}], [{"original_text": "and, then we saw the woman that appeared to me mixed with a lion. This would not exist in US culture..", "album_id": "72157594268530948", "photo_flickr_id": "236148074", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43582", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and , then we saw the woman that appeared to me mixed with a lion . this would not exist in location culture..", "storylet_id": "217912"}], [{"original_text": "We took some more pictures before departing, including the home from afar", "album_id": "72157594268530948", "photo_flickr_id": "236149119", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43582", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took some more pictures before departing , including the home from afar", "storylet_id": "217913"}], [{"original_text": "And, as we exited, there was a display that possessed many old artifacts. A great way to close the tour.", "album_id": "72157594268530948", "photo_flickr_id": "237721264", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43582", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , as we exited , there was a display that possessed many old artifacts . a great way to close the tour .", "storylet_id": "217914"}], [{"original_text": "During our trip, we toured a historic estate with vast gardens.", "album_id": "72157594268530948", "photo_flickr_id": "233953211", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "43583", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during our trip , we toured a historic estate with vast gardens .", "storylet_id": "217915"}], [{"original_text": "There were classically inspired statues everywhere on the property.", "album_id": "72157594268530948", "photo_flickr_id": "235126952", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "43583", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were classically inspired statues everywhere on the property .", "storylet_id": "217916"}], [{"original_text": "I was impressed by the huge female sphinx in front of the mansion.", "album_id": "72157594268530948", "photo_flickr_id": "236148074", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "43583", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was impressed by the huge female sphinx in front of the mansion .", "storylet_id": "217917"}], [{"original_text": "My friend loved the building with its impressive roof line and tower.", "album_id": "72157594268530948", "photo_flickr_id": "236149119", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "43583", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friend loved the building with its impressive roof line and tower .", "storylet_id": "217918"}], [{"original_text": "We even toured the wine cellars on the property.", "album_id": "72157594268530948", "photo_flickr_id": "237721264", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "43583", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even toured the wine cellars on the property .", "storylet_id": "217919"}], [{"original_text": "Walking up the cobblestone way we soon will be entering a special place.", "album_id": "72157594268530948", "photo_flickr_id": "233953211", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43584", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walking up the cobblestone way we soon will be entering a special place .", "storylet_id": "217920"}], [{"original_text": "This statue is so life like even in modern times.", "album_id": "72157594268530948", "photo_flickr_id": "235126952", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43584", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this statue is so life like even in modern times .", "storylet_id": "217921"}], [{"original_text": "Creativity describes this combination of a human face with the body of an animal.", "album_id": "72157594268530948", "photo_flickr_id": "236148074", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43584", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "creativity describes this combination of a human face with the body of an animal .", "storylet_id": "217922"}], [{"original_text": "Stately and magnificent are ways to capture this estate. ", "album_id": "72157594268530948", "photo_flickr_id": "236149119", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43584", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "stately and magnificent are ways to capture this estate .", "storylet_id": "217923"}], [{"original_text": "The privacy fence is fashionable and adorning.", "album_id": "72157594268530948", "photo_flickr_id": "237721264", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43584", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the privacy fence is fashionable and adorning .", "storylet_id": "217924"}], [{"original_text": "I was in a plane.", "album_id": "1088519", "photo_flickr_id": "50152149", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43585", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was in a plane .", "storylet_id": "217925"}], [{"original_text": "It was cloudy.", "album_id": "1088519", "photo_flickr_id": "50152177", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43585", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was cloudy .", "storylet_id": "217926"}], [{"original_text": "I couldn't see anything.", "album_id": "1088519", "photo_flickr_id": "50152188", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43585", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i could n't see anything .", "storylet_id": "217927"}], [{"original_text": "Then I could.", "album_id": "1088519", "photo_flickr_id": "50152200", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43585", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then i could .", "storylet_id": "217928"}], [{"original_text": "It was epic!", "album_id": "1088519", "photo_flickr_id": "50152260", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43585", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was epic !", "storylet_id": "217929"}], [{"original_text": "Mary has been taking flying lessons for months. ", "album_id": "1088519", "photo_flickr_id": "50152260", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43586", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] has been taking flying lessons for months .", "storylet_id": "217930"}], [{"original_text": "Today is her first solo pilot experience. ", "album_id": "1088519", "photo_flickr_id": "50152036", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43586", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today is her first solo pilot experience .", "storylet_id": "217931"}], [{"original_text": "As she takes off you can see her destination in the distance. ", "album_id": "1088519", "photo_flickr_id": "50152311", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43586", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as she takes off you can see her destination in the distance .", "storylet_id": "217932"}], [{"original_text": "Getting closer you can see the ground beginning to open up. ", "album_id": "1088519", "photo_flickr_id": "50152068", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43586", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "getting closer you can see the ground beginning to open up .", "storylet_id": "217933"}], [{"original_text": "And moments later she is flying right over the grand canyon. ", "album_id": "1088519", "photo_flickr_id": "50152220", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43586", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and moments later she is flying right over the grand canyon .", "storylet_id": "217934"}], [{"original_text": "The girl arrived at the event and met the airplane pilot.", "album_id": "1088519", "photo_flickr_id": "50152260", "setting": "last-3-pick-old-and-tell", "worker_id": "P26UHD3M62ERE5O", "story_id": "43587", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girl arrived at the event and met the airplane pilot .", "storylet_id": "217935"}], [{"original_text": "The girl then went up in the airplane for a tour of the canyons.", "album_id": "1088519", "photo_flickr_id": "50152036", "setting": "last-3-pick-old-and-tell", "worker_id": "P26UHD3M62ERE5O", "story_id": "43587", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girl then went up in the airplane for a tour of the canyons .", "storylet_id": "217936"}], [{"original_text": "The girl took several pictures of the scenery from the airplane.", "album_id": "1088519", "photo_flickr_id": "50152311", "setting": "last-3-pick-old-and-tell", "worker_id": "P26UHD3M62ERE5O", "story_id": "43587", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girl took several pictures of the scenery from the airplane .", "storylet_id": "217937"}], [{"original_text": "In this picture, you can see a lot of mountains that she flew over.", "album_id": "1088519", "photo_flickr_id": "50152068", "setting": "last-3-pick-old-and-tell", "worker_id": "P26UHD3M62ERE5O", "story_id": "43587", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in this picture , you can see a lot of mountains that she flew over .", "storylet_id": "217938"}], [{"original_text": "In this picture, you can see what she saw when the plane passed over the canyon.", "album_id": "1088519", "photo_flickr_id": "50152220", "setting": "last-3-pick-old-and-tell", "worker_id": "P26UHD3M62ERE5O", "story_id": "43587", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in this picture , you can see what she saw when the plane passed over the canyon .", "storylet_id": "217939"}], [{"original_text": "I was nervous to fly for the first time.", "album_id": "1088519", "photo_flickr_id": "50152149", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43588", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was nervous to fly for the first time .", "storylet_id": "217940"}], [{"original_text": "However, once we embarked, the view was amazing.", "album_id": "1088519", "photo_flickr_id": "50152177", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43588", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "however , once we embarked , the view was amazing .", "storylet_id": "217941"}], [{"original_text": "It did make me nervous seeing the propeller's move.", "album_id": "1088519", "photo_flickr_id": "50152188", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43588", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it did make me nervous seeing the propeller 's move .", "storylet_id": "217942"}], [{"original_text": "And, the wing out my window.", "album_id": "1088519", "photo_flickr_id": "50152200", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43588", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , the wing out my window .", "storylet_id": "217943"}], [{"original_text": "But, I survived, and I would gladly fly again!", "album_id": "1088519", "photo_flickr_id": "50152260", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43588", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but , i survived , and i would gladly fly again !", "storylet_id": "217944"}], [{"original_text": "We decided to fly our own plane.", "album_id": "1088519", "photo_flickr_id": "50152149", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43589", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to fly our own plane .", "storylet_id": "217945"}], [{"original_text": "The skies were a bit cloudy.", "album_id": "1088519", "photo_flickr_id": "50152177", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43589", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the skies were a bit cloudy .", "storylet_id": "217946"}], [{"original_text": "The photographer had trouble taking the picture because of the speed.", "album_id": "1088519", "photo_flickr_id": "50152188", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43589", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the photographer had trouble taking the picture because of the speed .", "storylet_id": "217947"}], [{"original_text": "Later, the plane settled at a comfortable level.", "album_id": "1088519", "photo_flickr_id": "50152200", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43589", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later , the plane settled at a comfortable level .", "storylet_id": "217948"}], [{"original_text": "It was an enjoyable experience to fly a plane.", "album_id": "1088519", "photo_flickr_id": "50152260", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43589", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was an enjoyable experience to fly a plane .", "storylet_id": "217949"}], [{"original_text": "Table Mountain National Park was a place our family loved to visit.", "album_id": "72157623174042056", "photo_flickr_id": "4259243263", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43590", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location location location location was a place our family loved to visit .", "storylet_id": "217950"}], [{"original_text": "We took long hikes.", "album_id": "72157623174042056", "photo_flickr_id": "4259246689", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43590", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took long hikes .", "storylet_id": "217951"}], [{"original_text": "There several amazing trails to go down.", "album_id": "72157623174042056", "photo_flickr_id": "4260005610", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43590", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there several amazing trails to go down .", "storylet_id": "217952"}], [{"original_text": "We saw a helicopter doing a practice run for putting out forest fires.", "album_id": "72157623174042056", "photo_flickr_id": "4260013214", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43590", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw a helicopter doing a practice run for putting out forest fires .", "storylet_id": "217953"}], [{"original_text": "Luckily there were no fires on this day, only great weather and a beautiful, blue sky.", "album_id": "72157623174042056", "photo_flickr_id": "4260117816", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43590", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "luckily there were no fires on this day , only great weather and a beautiful , blue sky .", "storylet_id": "217954"}], [{"original_text": "We saw lots of helicopters today.", "album_id": "72157623174042056", "photo_flickr_id": "4259242623", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43591", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we saw lots of helicopters today .", "storylet_id": "217955"}], [{"original_text": "That's because fire danger was high.", "album_id": "72157623174042056", "photo_flickr_id": "4259243263", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43591", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that 's because fire danger was high .", "storylet_id": "217956"}], [{"original_text": "It even had nifty tail numbers.", "album_id": "72157623174042056", "photo_flickr_id": "4259244251", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43591", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it even had nifty tail numbers .", "storylet_id": "217957"}], [{"original_text": "We couldn't get any closer though.", "album_id": "72157623174042056", "photo_flickr_id": "4259999568", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43591", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we could n't get any closer though .", "storylet_id": "217958"}], [{"original_text": "Or the helicopter might drop a bucket on us!", "album_id": "72157623174042056", "photo_flickr_id": "4260013214", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43591", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "or the helicopter might drop a bucket on us !", "storylet_id": "217959"}], [{"original_text": "Upon arriving today at Table Mountain National Park we were greeted by this fire danger sign.", "album_id": "72157623174042056", "photo_flickr_id": "4259243263", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "43592", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "upon arriving today at location location location location we were greeted by this fire danger sign .", "storylet_id": "217960"}], [{"original_text": "We decided to go on a hike and find some adventure.The natural sounds all around from local wild life was relaxing.", "album_id": "72157623174042056", "photo_flickr_id": "4259246689", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "43592", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided to go on a hike and find some adventure.the natural sounds all around from local wild life was relaxing .", "storylet_id": "217961"}], [{"original_text": "The beauty of the scenery made it easy to realize why there would be concern for fire safety.", "album_id": "72157623174042056", "photo_flickr_id": "4260005610", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "43592", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beauty of the scenery made it easy to realize why there would be concern for fire safety .", "storylet_id": "217962"}], [{"original_text": "Just then overhead we heard a helicopter flying over when we looked up we saw that it carried a bucket of water.", "album_id": "72157623174042056", "photo_flickr_id": "4260013214", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "43592", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "just then overhead we heard a helicopter flying over when we looked up we saw that it carried a bucket of water .", "storylet_id": "217963"}], [{"original_text": "We came over the hill to a clearing and saw the rest of the helicopters preparing for any sign of fire danger.", "album_id": "72157623174042056", "photo_flickr_id": "4260117816", "setting": "last-3-pick-old-and-tell", "worker_id": "TQW0ECGC1UDBZGJ", "story_id": "43592", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we came over the hill to a clearing and saw the rest of the helicopters preparing for any sign of fire danger .", "storylet_id": "217964"}], [{"original_text": "We just arrived at the park.", "album_id": "72157623174042056", "photo_flickr_id": "4259243263", "setting": "last-3-pick-old-and-tell", "worker_id": "LD40ZTAXD7KU9NR", "story_id": "43593", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we just arrived at the park .", "storylet_id": "217965"}], [{"original_text": "Later, we decided to hike down the trail.", "album_id": "72157623174042056", "photo_flickr_id": "4259246689", "setting": "last-3-pick-old-and-tell", "worker_id": "LD40ZTAXD7KU9NR", "story_id": "43593", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "later , we decided to hike down the trail .", "storylet_id": "217966"}], [{"original_text": "The trail ahead looked rough.", "album_id": "72157623174042056", "photo_flickr_id": "4260005610", "setting": "last-3-pick-old-and-tell", "worker_id": "LD40ZTAXD7KU9NR", "story_id": "43593", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the trail ahead looked rough .", "storylet_id": "217967"}], [{"original_text": "Up above we saw the helicopter carrying something.", "album_id": "72157623174042056", "photo_flickr_id": "4260013214", "setting": "last-3-pick-old-and-tell", "worker_id": "LD40ZTAXD7KU9NR", "story_id": "43593", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "up above we saw the helicopter carrying something .", "storylet_id": "217968"}], [{"original_text": "Found the helicopter back at camp.", "album_id": "72157623174042056", "photo_flickr_id": "4260117816", "setting": "last-3-pick-old-and-tell", "worker_id": "LD40ZTAXD7KU9NR", "story_id": "43593", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "found the helicopter back at camp .", "storylet_id": "217969"}], [{"original_text": "The group decided Saturday was a good day fro a trip to Table Mountain National Park. ", "album_id": "72157623174042056", "photo_flickr_id": "4259243263", "setting": "last-3-pick-old-and-tell", "worker_id": "ACGK8ETCDWBQCZH", "story_id": "43594", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group decided saturday was a good day fro a trip to location location location location .", "storylet_id": "217970"}], [{"original_text": "The gang traveled down all sorts of trails, and one point found a tree shaped like a V.", "album_id": "72157623174042056", "photo_flickr_id": "4259246689", "setting": "last-3-pick-old-and-tell", "worker_id": "ACGK8ETCDWBQCZH", "story_id": "43594", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the gang traveled down all sorts of trails , and one point found a tree shaped like a v .", "storylet_id": "217971"}], [{"original_text": "Some trails were mysterious.", "album_id": "72157623174042056", "photo_flickr_id": "4260005610", "setting": "last-3-pick-old-and-tell", "worker_id": "ACGK8ETCDWBQCZH", "story_id": "43594", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some trails were mysterious .", "storylet_id": "217972"}], [{"original_text": "There was helicopter overhead dropping off supplies, so they decided to follow it.", "album_id": "72157623174042056", "photo_flickr_id": "4260013214", "setting": "last-3-pick-old-and-tell", "worker_id": "ACGK8ETCDWBQCZH", "story_id": "43594", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was helicopter overhead dropping off supplies , so they decided to follow it .", "storylet_id": "217973"}], [{"original_text": "They came upon a clearing, where there were more helicopters. It was a very interesting trip, indeed.", "album_id": "72157623174042056", "photo_flickr_id": "4260117816", "setting": "last-3-pick-old-and-tell", "worker_id": "ACGK8ETCDWBQCZH", "story_id": "43594", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they came upon a clearing , where there were more helicopters . it was a very interesting trip , indeed .", "storylet_id": "217974"}], [{"original_text": "The trip was epic.", "album_id": "72157628361619059", "photo_flickr_id": "6487576351", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43595", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the trip was epic .", "storylet_id": "217975"}], [{"original_text": "We saw a big bridge.", "album_id": "72157628361619059", "photo_flickr_id": "6487582035", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43595", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw a big bridge .", "storylet_id": "217976"}], [{"original_text": "Some old houses.", "album_id": "72157628361619059", "photo_flickr_id": "6487613411", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43595", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some old houses .", "storylet_id": "217977"}], [{"original_text": "Then we passed a big tour.", "album_id": "72157628361619059", "photo_flickr_id": "6487618311", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43595", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we passed a big tour .", "storylet_id": "217978"}], [{"original_text": "Our rental car was sick!", "album_id": "72157628361619059", "photo_flickr_id": "6487642315", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43595", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our rental car was sick !", "storylet_id": "217979"}], [{"original_text": "We stopped in a small old town to take in the sights.", "album_id": "72157628361619059", "photo_flickr_id": "6487642315", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43596", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we stopped in a small old town to take in the sights .", "storylet_id": "217980"}], [{"original_text": "It was a very interesting place with a lot of unique shops.", "album_id": "72157628361619059", "photo_flickr_id": "6487576351", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43596", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a very interesting place with a lot of unique shops .", "storylet_id": "217981"}], [{"original_text": "There were some strange structures we saw.", "album_id": "72157628361619059", "photo_flickr_id": "6487590853", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43596", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some strange structures we saw .", "storylet_id": "217982"}], [{"original_text": "We could see a large steeple in the distance.", "album_id": "72157628361619059", "photo_flickr_id": "6487595937", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43596", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we could see a large steeple in the distance .", "storylet_id": "217983"}], [{"original_text": "We decided to spend the night there because we enjoyed it so much.", "album_id": "72157628361619059", "photo_flickr_id": "6487609517", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43596", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to spend the night there because we enjoyed it so much .", "storylet_id": "217984"}], [{"original_text": "A couple took their brand new car on a one day holiday.", "album_id": "72157628361619059", "photo_flickr_id": "6487642315", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "43597", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple took their brand new car on a one day holiday .", "storylet_id": "217985"}], [{"original_text": "They visited an old resort out in the country.", "album_id": "72157628361619059", "photo_flickr_id": "6487576351", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "43597", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they visited an old resort out in the country .", "storylet_id": "217986"}], [{"original_text": "They resort was built many years ago, and it was obvious from the details.", "album_id": "72157628361619059", "photo_flickr_id": "6487590853", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "43597", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they resort was built many years ago , and it was obvious from the details .", "storylet_id": "217987"}], [{"original_text": "The best part was the old spire at the top of the resort.", "album_id": "72157628361619059", "photo_flickr_id": "6487595937", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "43597", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the best part was the old spire at the top of the resort .", "storylet_id": "217988"}], [{"original_text": "Before they went home, they stopped at a small inn for dinner.", "album_id": "72157628361619059", "photo_flickr_id": "6487609517", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "43597", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before they went home , they stopped at a small inn for dinner .", "storylet_id": "217989"}], [{"original_text": "The city is rich with history with plenty of sights to see.", "album_id": "72157628361619059", "photo_flickr_id": "6487576351", "setting": "last-3-pick-old-and-tell", "worker_id": "ACGK8ETCDWBQCZH", "story_id": "43598", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city is rich with history with plenty of sights to see .", "storylet_id": "217990"}], [{"original_text": "It is also modern, however, and has solid infrastructure.", "album_id": "72157628361619059", "photo_flickr_id": "6487582035", "setting": "last-3-pick-old-and-tell", "worker_id": "ACGK8ETCDWBQCZH", "story_id": "43598", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is also modern , however , and has solid infrastructure .", "storylet_id": "217991"}], [{"original_text": "There are some quaint houses sprinkled throughout.", "album_id": "72157628361619059", "photo_flickr_id": "6487613411", "setting": "last-3-pick-old-and-tell", "worker_id": "ACGK8ETCDWBQCZH", "story_id": "43598", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are some quaint houses sprinkled throughout .", "storylet_id": "217992"}], [{"original_text": "There are beautifully designed churches.", "album_id": "72157628361619059", "photo_flickr_id": "6487618311", "setting": "last-3-pick-old-and-tell", "worker_id": "ACGK8ETCDWBQCZH", "story_id": "43598", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are beautifully designed churches .", "storylet_id": "217993"}], [{"original_text": "And there are some locals with a \"sick\" sense of humor.", "album_id": "72157628361619059", "photo_flickr_id": "6487642315", "setting": "last-3-pick-old-and-tell", "worker_id": "ACGK8ETCDWBQCZH", "story_id": "43598", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and there are some locals with a `` sick '' sense of humor .", "storylet_id": "217994"}], [{"original_text": "This is the back car we rented when we took our trip.", "album_id": "72157628361619059", "photo_flickr_id": "6487642315", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43599", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the back car we rented when we took our trip .", "storylet_id": "217995"}], [{"original_text": "I thought this statue in front of the bed & breakfast was a very ominous presence.", "album_id": "72157628361619059", "photo_flickr_id": "6487576351", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43599", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i thought this statue in front of the bed & breakfast was a very ominous presence .", "storylet_id": "217996"}], [{"original_text": "It was amazing seeing all of the historical artifacts while touring the country.", "album_id": "72157628361619059", "photo_flickr_id": "6487590853", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43599", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was amazing seeing all of the historical artifacts while touring the country .", "storylet_id": "217997"}], [{"original_text": "I enjoyed seeing all of the old church steeples such as this one.", "album_id": "72157628361619059", "photo_flickr_id": "6487595937", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43599", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i enjoyed seeing all of the old church steeples such as this one .", "storylet_id": "217998"}], [{"original_text": "Even the residential areas had a very old world feel to them.", "album_id": "72157628361619059", "photo_flickr_id": "6487609517", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43599", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the residential areas had a very old world feel to them .", "storylet_id": "217999"}], [{"original_text": "This is an art show in India that is attended by thousands. ", "album_id": "72057594102843715", "photo_flickr_id": "125925256", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43600", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is an art show in location that is attended by thousands .", "storylet_id": "218000"}], [{"original_text": "There are a lot of handmade items for sale. ", "album_id": "72057594102843715", "photo_flickr_id": "126077725", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43600", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are a lot of handmade items for sale .", "storylet_id": "218001"}], [{"original_text": "This nice detail was carved by hand from a tree trunk. ", "album_id": "72057594102843715", "photo_flickr_id": "126031937", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43600", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this nice detail was carved by hand from a tree trunk .", "storylet_id": "218002"}], [{"original_text": "An 80 year old woman made this shortly before she died. ", "album_id": "72057594102843715", "photo_flickr_id": "126078064", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43600", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an 80 year old woman made this shortly before she died .", "storylet_id": "218003"}], [{"original_text": "Her daughter also found this tucked away and brought it to the show. ", "album_id": "72057594102843715", "photo_flickr_id": "126078314", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43600", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her daughter also found this tucked away and brought it to the show .", "storylet_id": "218004"}], [{"original_text": "We were so excited to be visiting Albania.", "album_id": "72057594102843715", "photo_flickr_id": "126078946", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43601", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were so excited to be visiting location .", "storylet_id": "218005"}], [{"original_text": "We visited a local tea house and decided to stop for a drink. ", "album_id": "72057594102843715", "photo_flickr_id": "125925256", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43601", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we visited a local tea house and decided to stop for a drink .", "storylet_id": "218006"}], [{"original_text": "The tea pot began whistling loudly as we excitedly waited for it to be done brewing.", "album_id": "72057594102843715", "photo_flickr_id": "126077725", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43601", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tea pot began whistling loudly as we excitedly waited for it to be done brewing .", "storylet_id": "218007"}], [{"original_text": "The tea was absolutely delicious, I finished my cup in no time at all.", "album_id": "72057594102843715", "photo_flickr_id": "125946248", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43601", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the tea was absolutely delicious , i finished my cup in no time at all .", "storylet_id": "218008"}], [{"original_text": "We bought some intricate fabric as a souvenir before leaving the tea house. It was an amazing adventure. ", "album_id": "72057594102843715", "photo_flickr_id": "126078314", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43601", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we bought some intricate fabric as a souvenir before leaving the tea house . it was an amazing adventure .", "storylet_id": "218009"}], [{"original_text": "Now we are looking at Albania home furnishings.", "album_id": "72057594102843715", "photo_flickr_id": "126078946", "setting": "last-3-pick-old-and-tell", "worker_id": "HVRZYBFDDN1NLUL", "story_id": "43602", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "now we are looking at location home furnishings .", "storylet_id": "218010"}], [{"original_text": "This is a nice set of cups from Albania.", "album_id": "72057594102843715", "photo_flickr_id": "125925256", "setting": "last-3-pick-old-and-tell", "worker_id": "HVRZYBFDDN1NLUL", "story_id": "43602", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a nice set of cups from location .", "storylet_id": "218011"}], [{"original_text": "This looks like a tea pot from Albania.", "album_id": "72057594102843715", "photo_flickr_id": "126077725", "setting": "last-3-pick-old-and-tell", "worker_id": "HVRZYBFDDN1NLUL", "story_id": "43602", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this looks like a tea pot from location .", "storylet_id": "218012"}], [{"original_text": "The dishes are nice looking.", "album_id": "72057594102843715", "photo_flickr_id": "125946248", "setting": "last-3-pick-old-and-tell", "worker_id": "HVRZYBFDDN1NLUL", "story_id": "43602", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dishes are nice looking .", "storylet_id": "218013"}], [{"original_text": "The fabric is so rich in colors.", "album_id": "72057594102843715", "photo_flickr_id": "126078314", "setting": "last-3-pick-old-and-tell", "worker_id": "HVRZYBFDDN1NLUL", "story_id": "43602", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fabric is so rich in colors .", "storylet_id": "218014"}], [{"original_text": "A family stops at an upscale restuarant.", "album_id": "72057594102843715", "photo_flickr_id": "125925256", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43603", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a family stops at an upscale restuarant .", "storylet_id": "218015"}], [{"original_text": "They are greeted with lots of silverware they have never seen before.", "album_id": "72057594102843715", "photo_flickr_id": "126077725", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43603", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are greeted with lots of silverware they have never seen before .", "storylet_id": "218016"}], [{"original_text": "The chairs are beautifully carved.", "album_id": "72057594102843715", "photo_flickr_id": "126031937", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43603", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the chairs are beautifully carved .", "storylet_id": "218017"}], [{"original_text": "On each chair, there is a leaf pillow.", "album_id": "72057594102843715", "photo_flickr_id": "126078064", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43603", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on each chair , there is a leaf pillow .", "storylet_id": "218018"}], [{"original_text": "When they leave, they are all given a hat as a thank you.", "album_id": "72057594102843715", "photo_flickr_id": "126078314", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43603", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when they leave , they are all given a hat as a thank you .", "storylet_id": "218019"}], [{"original_text": "The tea would be served on a gold tray, in gold cups. ", "album_id": "72057594102843715", "photo_flickr_id": "125925256", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43604", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tea would be served on a gold tray , in gold cups .", "storylet_id": "218020"}], [{"original_text": "In the middle of the table there was a brass incense burner. ", "album_id": "72057594102843715", "photo_flickr_id": "126077725", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43604", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in the middle of the table there was a brass incense burner .", "storylet_id": "218021"}], [{"original_text": "There was also hand carved ornaments at each place setting. ", "album_id": "72057594102843715", "photo_flickr_id": "126031937", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43604", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was also hand carved ornaments at each place setting .", "storylet_id": "218022"}], [{"original_text": "One dish was covered in a hand embroidered covering. ", "album_id": "72057594102843715", "photo_flickr_id": "126078064", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43604", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one dish was covered in a hand embroidered covering .", "storylet_id": "218023"}], [{"original_text": "A bowl had an extremely intricate, hand embroidered covering, which appeared to be like a swaddling. ", "album_id": "72057594102843715", "photo_flickr_id": "126078314", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43604", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a bowl had an extremely intricate , hand embroidered covering , which appeared to be like a swaddling .", "storylet_id": "218024"}], [{"original_text": "Last summer we visited this quaint island just off the coast. ", "album_id": "72157594161728799", "photo_flickr_id": "164280616", "setting": "first-2-pick-and-tell", "worker_id": "BGV5MYF2HJLWN0V", "story_id": "43605", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last summer we visited this quaint island just off the coast .", "storylet_id": "218025"}], [{"original_text": "The island is home to many old buildings, like this beautiful old chapel.", "album_id": "72157594161728799", "photo_flickr_id": "164276605", "setting": "first-2-pick-and-tell", "worker_id": "BGV5MYF2HJLWN0V", "story_id": "43605", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the island is home to many old buildings , like this beautiful old chapel .", "storylet_id": "218026"}], [{"original_text": "The stones on this traditional house were weathered from years of coastal winds.", "album_id": "72157594161728799", "photo_flickr_id": "164273883", "setting": "first-2-pick-and-tell", "worker_id": "BGV5MYF2HJLWN0V", "story_id": "43605", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the stones on this traditional house were weathered from years of coastal winds .", "storylet_id": "218027"}], [{"original_text": "Dark cellars connected many of the buildings, and the air in here was cool and heavy.", "album_id": "72157594161728799", "photo_flickr_id": "164269846", "setting": "first-2-pick-and-tell", "worker_id": "BGV5MYF2HJLWN0V", "story_id": "43605", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dark cellars connected many of the buildings , and the air in here was cool and heavy .", "storylet_id": "218028"}], [{"original_text": "Before we left we grabbed this stunning picture of the coastline.", "album_id": "72157594161728799", "photo_flickr_id": "164265238", "setting": "first-2-pick-and-tell", "worker_id": "BGV5MYF2HJLWN0V", "story_id": "43605", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before we left we grabbed this stunning picture of the coastline .", "storylet_id": "218029"}], [{"original_text": "it was a beautiful day out on the ocean", "album_id": "72157594161728799", "photo_flickr_id": "164279578", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "43606", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful day out on the ocean", "storylet_id": "218030"}], [{"original_text": "the sun shined so brightly on the building", "album_id": "72157594161728799", "photo_flickr_id": "164277246", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "43606", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sun shined so brightly on the building", "storylet_id": "218031"}], [{"original_text": "and the steps had so much history behind them", "album_id": "72157594161728799", "photo_flickr_id": "164274683", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "43606", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the steps had so much history behind them", "storylet_id": "218032"}], [{"original_text": "this was a perfect day to go out for a boat ride", "album_id": "72157594161728799", "photo_flickr_id": "164271074", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "43606", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was a perfect day to go out for a boat ride", "storylet_id": "218033"}], [{"original_text": "so we got the boat and decided to set sail ", "album_id": "72157594161728799", "photo_flickr_id": "164259306", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "43606", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so we got the boat and decided to set sail", "storylet_id": "218034"}], [{"original_text": "Our family vacation took us to a tiny island off the coast of Italy.", "album_id": "72157594161728799", "photo_flickr_id": "164280616", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43607", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family vacation took us to a tiny island off the coast of location .", "storylet_id": "218035"}], [{"original_text": "We spent the day exploring the island and visiting this monastery.", "album_id": "72157594161728799", "photo_flickr_id": "164276605", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43607", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we spent the day exploring the island and visiting this monastery .", "storylet_id": "218036"}], [{"original_text": "There were many steps to climb,", "album_id": "72157594161728799", "photo_flickr_id": "164273883", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43607", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many steps to climb ,", "storylet_id": "218037"}], [{"original_text": "and we had to go through a lot of dark, spooky passageways.", "album_id": "72157594161728799", "photo_flickr_id": "164269846", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43607", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and we had to go through a lot of dark , spooky passageways .", "storylet_id": "218038"}], [{"original_text": "But the view from the top of the island was worth it!", "album_id": "72157594161728799", "photo_flickr_id": "164265238", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43607", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the view from the top of the island was worth it !", "storylet_id": "218039"}], [{"original_text": "Looking at the island from a distance stirred excitement.", "album_id": "72157594161728799", "photo_flickr_id": "164280616", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43608", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "looking at the island from a distance stirred excitement .", "storylet_id": "218040"}], [{"original_text": "We toured the old buildings once we got there.", "album_id": "72157594161728799", "photo_flickr_id": "164276605", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43608", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we toured the old buildings once we got there .", "storylet_id": "218041"}], [{"original_text": "These building have been here for hundreds of years", "album_id": "72157594161728799", "photo_flickr_id": "164273883", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43608", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these building have been here for hundreds of years", "storylet_id": "218042"}], [{"original_text": "The tombs were even older.", "album_id": "72157594161728799", "photo_flickr_id": "164269846", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43608", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the tombs were even older .", "storylet_id": "218043"}], [{"original_text": "So much to see on th islands.", "album_id": "72157594161728799", "photo_flickr_id": "164265238", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43608", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so much to see on th islands .", "storylet_id": "218044"}], [{"original_text": "The family was on vacation.", "album_id": "72157594161728799", "photo_flickr_id": "164280616", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43609", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was on vacation .", "storylet_id": "218045"}], [{"original_text": "They visited lots of sight seeing areas.", "album_id": "72157594161728799", "photo_flickr_id": "164276605", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43609", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they visited lots of sight seeing areas .", "storylet_id": "218046"}], [{"original_text": "They found some historical sites.", "album_id": "72157594161728799", "photo_flickr_id": "164273883", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43609", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they found some historical sites .", "storylet_id": "218047"}], [{"original_text": "They explored old tunnels.", "album_id": "72157594161728799", "photo_flickr_id": "164269846", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43609", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they explored old tunnels .", "storylet_id": "218048"}], [{"original_text": "They ended the day back at their hotel checking out the view.", "album_id": "72157594161728799", "photo_flickr_id": "164265238", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43609", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ended the day back at their hotel checking out the view .", "storylet_id": "218049"}], [{"original_text": "Today was barn day.", "album_id": "72157628824235691", "photo_flickr_id": "6679058467", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43610", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was barn day .", "storylet_id": "218050"}], [{"original_text": "I saw a white barn.", "album_id": "72157628824235691", "photo_flickr_id": "6679061115", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43610", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw a white barn .", "storylet_id": "218051"}], [{"original_text": "Then a yellow barn.", "album_id": "72157628824235691", "photo_flickr_id": "6679066947", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43610", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then a yellow barn .", "storylet_id": "218052"}], [{"original_text": "I also saw a second yellow barn.", "album_id": "72157628824235691", "photo_flickr_id": "6679071455", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43610", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also saw a second yellow barn .", "storylet_id": "218053"}], [{"original_text": "But the beige barn was the best.", "album_id": "72157628824235691", "photo_flickr_id": "6679077209", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43610", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the beige barn was the best .", "storylet_id": "218054"}], [{"original_text": "We went on the house tour, in search of a new home.", "album_id": "72157628824235691", "photo_flickr_id": "6679058467", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43611", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on the house tour , in search of a new home .", "storylet_id": "218055"}], [{"original_text": "There were many interesting options including this green house.", "album_id": "72157628824235691", "photo_flickr_id": "6679064027", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43611", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many interesting options including this green house .", "storylet_id": "218056"}], [{"original_text": "A more well kept manor was my favorite.", "album_id": "72157628824235691", "photo_flickr_id": "6679065421", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43611", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a more well kept manor was my favorite .", "storylet_id": "218057"}], [{"original_text": "I also like the gated brick house but it was way out of our price range.", "album_id": "72157628824235691", "photo_flickr_id": "6679068269", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43611", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also like the gated brick house but it was way out of our price range .", "storylet_id": "218058"}], [{"original_text": "The house that consisted of 7 bedrooms was also really great but also too expensive.", "album_id": "72157628824235691", "photo_flickr_id": "6679074433", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "43611", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the house that consisted of 7 bedrooms was also really great but also too expensive .", "storylet_id": "218059"}], [{"original_text": "We saw some nice houses on the trip. We liked the porch on this one.", "album_id": "72157628824235691", "photo_flickr_id": "6679058467", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "43612", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we saw some nice houses on the trip . we liked the porch on this one .", "storylet_id": "218060"}], [{"original_text": "However, the porch on this one was all the way across and the flag was a nice touch.", "album_id": "72157628824235691", "photo_flickr_id": "6679061115", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "43612", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "however , the porch on this one was all the way across and the flag was a nice touch .", "storylet_id": "218061"}], [{"original_text": "This house seemed to be biggest and included a garage and in-law suite.", "album_id": "72157628824235691", "photo_flickr_id": "6679066947", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "43612", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this house seemed to be biggest and included a garage and in-law suite .", "storylet_id": "218062"}], [{"original_text": "This house had the nicest garage and included a possible rental apartment over the space.", "album_id": "72157628824235691", "photo_flickr_id": "6679071455", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "43612", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this house had the nicest garage and included a possible rental apartment over the space .", "storylet_id": "218063"}], [{"original_text": "This house had the best yard for playing and also had a nice porch.", "album_id": "72157628824235691", "photo_flickr_id": "6679077209", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "43612", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this house had the best yard for playing and also had a nice porch .", "storylet_id": "218064"}], [{"original_text": "I live in a great neighborhood. Here is my home.", "album_id": "72157628824235691", "photo_flickr_id": "6679058467", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43613", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i live in a great neighborhood . here is my home .", "storylet_id": "218065"}], [{"original_text": "My next door neighbor is a dentist. He is patriotic.", "album_id": "72157628824235691", "photo_flickr_id": "6679061115", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43613", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my next door neighbor is a dentist . he is patriotic .", "storylet_id": "218066"}], [{"original_text": "On the other side of my house is my lawyer friend.", "album_id": "72157628824235691", "photo_flickr_id": "6679066947", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43613", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on the other side of my house is my lawyer friend .", "storylet_id": "218067"}], [{"original_text": "Across the street lives Dr. Wennington.", "album_id": "72157628824235691", "photo_flickr_id": "6679071455", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43613", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "across the street lives dr. wennington .", "storylet_id": "218068"}], [{"original_text": "The oldest home on our block belongs to the Jackson family.", "album_id": "72157628824235691", "photo_flickr_id": "6679077209", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43613", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the oldest home on our block belongs to the [male] family .", "storylet_id": "218069"}], [{"original_text": "A nice barn home in the Remington district.", "album_id": "72157628824235691", "photo_flickr_id": "6679058467", "setting": "last-3-pick-old-and-tell", "worker_id": "FD74H5EFPM8FW3F", "story_id": "43614", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a nice barn home in the location district .", "storylet_id": "218070"}], [{"original_text": "A blue two story home on Rodeo Drive.", "album_id": "72157628824235691", "photo_flickr_id": "6679064027", "setting": "last-3-pick-old-and-tell", "worker_id": "FD74H5EFPM8FW3F", "story_id": "43614", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a blue two story home on location location .", "storylet_id": "218071"}], [{"original_text": "This mansion sits on 1.5 acres.", "album_id": "72157628824235691", "photo_flickr_id": "6679065421", "setting": "last-3-pick-old-and-tell", "worker_id": "FD74H5EFPM8FW3F", "story_id": "43614", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this mansion sits on 1.5 acres .", "storylet_id": "218072"}], [{"original_text": "This home is surrounded by a privacy wall and sits on Kemerovo Drive.", "album_id": "72157628824235691", "photo_flickr_id": "6679068269", "setting": "last-3-pick-old-and-tell", "worker_id": "FD74H5EFPM8FW3F", "story_id": "43614", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this home is surrounded by a privacy wall and sits on location location .", "storylet_id": "218073"}], [{"original_text": "This five bedroom home is listed for $950,000.", "album_id": "72157628824235691", "photo_flickr_id": "6679074433", "setting": "last-3-pick-old-and-tell", "worker_id": "FD74H5EFPM8FW3F", "story_id": "43614", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this five bedroom home is listed for $ 950,000 .", "storylet_id": "218074"}], [{"original_text": "During a night stroll, the tourists can see the city lighted up.", "album_id": "72057594132919444", "photo_flickr_id": "144738573", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43615", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during a night stroll , the tourists can see the city lighted up .", "storylet_id": "218075"}], [{"original_text": "From a distance, there is a tall tower. ", "album_id": "72057594132919444", "photo_flickr_id": "144738574", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43615", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from a distance , there is a tall tower .", "storylet_id": "218076"}], [{"original_text": "There are street vendors along the way selling food. ", "album_id": "72057594132919444", "photo_flickr_id": "144738575", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43615", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are street vendors along the way selling food .", "storylet_id": "218077"}], [{"original_text": "The tourists decide to grab some dinner at a traditional style restaurant. ", "album_id": "72057594132919444", "photo_flickr_id": "144738578", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43615", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the tourists decide to grab some dinner at a traditional style restaurant .", "storylet_id": "218078"}], [{"original_text": "The tourists are seated at a big round table. ", "album_id": "72057594132919444", "photo_flickr_id": "145179651", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43615", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the tourists are seated at a big round table .", "storylet_id": "218079"}], [{"original_text": "On our trip to Japan we saw many different lit up buildings.", "album_id": "72057594132919444", "photo_flickr_id": "144738573", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43616", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our trip to location we saw many different lit up buildings .", "storylet_id": "218080"}], [{"original_text": "Experiencing the Japanese culture was amazing.", "album_id": "72057594132919444", "photo_flickr_id": "144738575", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43616", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "experiencing the japanese culture was amazing .", "storylet_id": "218081"}], [{"original_text": "The houses in Japan are the awesome to see with their unique roofs.", "album_id": "72057594132919444", "photo_flickr_id": "144738577", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43616", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the houses in location are the awesome to see with their unique roofs .", "storylet_id": "218082"}], [{"original_text": "The city of Japan lights up at night like most cities.", "album_id": "72057594132919444", "photo_flickr_id": "145179644", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43616", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the city of location lights up at night like most cities .", "storylet_id": "218083"}], [{"original_text": "We got to see a model Dragon sitting around the park.", "album_id": "72057594132919444", "photo_flickr_id": "145179680", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43616", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we got to see a model dragon sitting around the park .", "storylet_id": "218084"}], [{"original_text": "In Japan the country is lit up at night.", "album_id": "72057594132919444", "photo_flickr_id": "144738573", "setting": "last-3-pick-old-and-tell", "worker_id": "HVRZYBFDDN1NLUL", "story_id": "43617", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in location the country is lit up at night .", "storylet_id": "218085"}], [{"original_text": "The lights are reflected in the water.", "album_id": "72057594132919444", "photo_flickr_id": "144738574", "setting": "last-3-pick-old-and-tell", "worker_id": "HVRZYBFDDN1NLUL", "story_id": "43617", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lights are reflected in the water .", "storylet_id": "218086"}], [{"original_text": "A Japanese man is making something.", "album_id": "72057594132919444", "photo_flickr_id": "144738575", "setting": "last-3-pick-old-and-tell", "worker_id": "HVRZYBFDDN1NLUL", "story_id": "43617", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a japanese man is making something .", "storylet_id": "218087"}], [{"original_text": "This is a Japanese cottage.", "album_id": "72057594132919444", "photo_flickr_id": "144738578", "setting": "last-3-pick-old-and-tell", "worker_id": "HVRZYBFDDN1NLUL", "story_id": "43617", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a japanese cottage .", "storylet_id": "218088"}], [{"original_text": "The people are eating around a big table.", "album_id": "72057594132919444", "photo_flickr_id": "145179651", "setting": "last-3-pick-old-and-tell", "worker_id": "HVRZYBFDDN1NLUL", "story_id": "43617", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the people are eating around a big table .", "storylet_id": "218089"}], [{"original_text": "This was Mark's first trip to Asia,", "album_id": "72057594132919444", "photo_flickr_id": "144738573", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43618", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was [male] 's first trip to location ,", "storylet_id": "218090"}], [{"original_text": "and he loved the way things worked over there.", "album_id": "72057594132919444", "photo_flickr_id": "144738575", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43618", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and he loved the way things worked over there .", "storylet_id": "218091"}], [{"original_text": "He loved the architecture,", "album_id": "72057594132919444", "photo_flickr_id": "144738577", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43618", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he loved the architecture ,", "storylet_id": "218092"}], [{"original_text": "and he loved the way the lights lit up the night.", "album_id": "72057594132919444", "photo_flickr_id": "145179644", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43618", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and he loved the way the lights lit up the night .", "storylet_id": "218093"}], [{"original_text": "But most of all, he loved the rich culture and deep history behind the civilization. ", "album_id": "72057594132919444", "photo_flickr_id": "145179680", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43618", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but most of all , he loved the rich culture and deep history behind the civilization .", "storylet_id": "218094"}], [{"original_text": "The city lights are amazing!", "album_id": "72057594132919444", "photo_flickr_id": "144738573", "setting": "last-3-pick-old-and-tell", "worker_id": "DWM6G4V7WSWOZJE", "story_id": "43619", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city lights are amazing !", "storylet_id": "218095"}], [{"original_text": "Everything was lit up and twinkled in the night.", "album_id": "72057594132919444", "photo_flickr_id": "144738574", "setting": "last-3-pick-old-and-tell", "worker_id": "DWM6G4V7WSWOZJE", "story_id": "43619", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything was lit up and twinkled in the night .", "storylet_id": "218096"}], [{"original_text": "This is very interesting. I still have no idea what he was doing!", "album_id": "72057594132919444", "photo_flickr_id": "144738575", "setting": "last-3-pick-old-and-tell", "worker_id": "DWM6G4V7WSWOZJE", "story_id": "43619", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is very interesting . i still have no idea what he was doing !", "storylet_id": "218097"}], [{"original_text": "We all loved the Asian decor. It gave everything a very regal feel.", "album_id": "72057594132919444", "photo_flickr_id": "144738578", "setting": "last-3-pick-old-and-tell", "worker_id": "DWM6G4V7WSWOZJE", "story_id": "43619", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all loved the asian decor . it gave everything a very regal feel .", "storylet_id": "218098"}], [{"original_text": "Dinner was delightful. I love the food and all the interesting flavors.", "album_id": "72057594132919444", "photo_flickr_id": "145179651", "setting": "last-3-pick-old-and-tell", "worker_id": "DWM6G4V7WSWOZJE", "story_id": "43619", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dinner was delightful . i love the food and all the interesting flavors .", "storylet_id": "218099"}], [{"original_text": "We took a tour of the city, and I just loved this oddly shaped mirror in the city square.", "album_id": "72157623093190087", "photo_flickr_id": "4277778852", "setting": "first-2-pick-and-tell", "worker_id": "6LIW4XI8A7C8M3T", "story_id": "43620", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a tour of the city , and i just loved this oddly shaped mirror in the city square .", "storylet_id": "218100"}], [{"original_text": "My girlfriend and I took a selfie, can you see us?", "album_id": "72157623093190087", "photo_flickr_id": "4277778996", "setting": "first-2-pick-and-tell", "worker_id": "6LIW4XI8A7C8M3T", "story_id": "43620", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my girlfriend and i took a selfie , can you see us ?", "storylet_id": "218101"}], [{"original_text": "This one did not turn out so good.", "album_id": "72157623093190087", "photo_flickr_id": "4277779454", "setting": "first-2-pick-and-tell", "worker_id": "6LIW4XI8A7C8M3T", "story_id": "43620", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one did not turn out so good .", "storylet_id": "218102"}], [{"original_text": "The is from the underside of the mirror, looks like a toilet seat shape.", "album_id": "72157623093190087", "photo_flickr_id": "4277779628", "setting": "first-2-pick-and-tell", "worker_id": "6LIW4XI8A7C8M3T", "story_id": "43620", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the is from the underside of the mirror , looks like a toilet seat shape .", "storylet_id": "218103"}], [{"original_text": "This is the bed and breakfast we stayed at, it was a very fancy place!", "album_id": "72157623093190087", "photo_flickr_id": "4277850554", "setting": "first-2-pick-and-tell", "worker_id": "6LIW4XI8A7C8M3T", "story_id": "43620", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the bed and breakfast we stayed at , it was a very fancy place !", "storylet_id": "218104"}], [{"original_text": "We went to the city today, and saw this piece of art.", "album_id": "72157623093190087", "photo_flickr_id": "4277778852", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43621", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the city today , and saw this piece of art .", "storylet_id": "218105"}], [{"original_text": "I was very reflective.", "album_id": "72157623093190087", "photo_flickr_id": "4277778996", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43621", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was very reflective .", "storylet_id": "218106"}], [{"original_text": "We then went into the suburbs.", "album_id": "72157623093190087", "photo_flickr_id": "4277104163", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43621", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we then went into the suburbs .", "storylet_id": "218107"}], [{"original_text": "There where a lot of cool houses there.", "album_id": "72157623093190087", "photo_flickr_id": "4277104275", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43621", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there where a lot of cool houses there .", "storylet_id": "218108"}], [{"original_text": "I can't wait to come back.", "album_id": "72157623093190087", "photo_flickr_id": "4277850816", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "43621", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ca n't wait to come back .", "storylet_id": "218109"}], [{"original_text": "We went to see the strange silver ball in downtown.", "album_id": "72157623093190087", "photo_flickr_id": "4277778852", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43622", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to see the strange silver ball in downtown .", "storylet_id": "218110"}], [{"original_text": "We took a lot of funny pictures with it.", "album_id": "72157623093190087", "photo_flickr_id": "4277778996", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43622", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a lot of funny pictures with it .", "storylet_id": "218111"}], [{"original_text": "Everything was distorted.", "album_id": "72157623093190087", "photo_flickr_id": "4277779454", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43622", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everything was distorted .", "storylet_id": "218112"}], [{"original_text": "It was confusing to look at sometimes.", "album_id": "72157623093190087", "photo_flickr_id": "4277779628", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43622", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was confusing to look at sometimes .", "storylet_id": "218113"}], [{"original_text": "Afterward we drove back home.", "album_id": "72157623093190087", "photo_flickr_id": "4277850554", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43622", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we drove back home .", "storylet_id": "218114"}], [{"original_text": "On my last trip downtown I decided to check out that big new sculpture in the plaza.", "album_id": "72157623093190087", "photo_flickr_id": "4277778852", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43623", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on my last trip downtown i decided to check out that big new sculpture in the plaza .", "storylet_id": "218115"}], [{"original_text": "It is so shiny that it's like a mirror. You can actually check your makeup in it.", "album_id": "72157623093190087", "photo_flickr_id": "4277778996", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43623", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is so shiny that it 's like a mirror . you can actually check your makeup in it .", "storylet_id": "218116"}], [{"original_text": "I heard that the sculptor lived in an artsy neighbor nearby and had small sculptures in her yard, so I walked around a bit looking for it.", "album_id": "72157623093190087", "photo_flickr_id": "4277104163", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43623", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i heard that the sculptor lived in an artsy neighbor nearby and had small sculptures in her yard , so i walked around a bit looking for it .", "storylet_id": "218117"}], [{"original_text": "But all I found were houses that made me think of hobbit holes.", "album_id": "72157623093190087", "photo_flickr_id": "4277104275", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43623", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but all i found were houses that made me think of hobbit holes .", "storylet_id": "218118"}], [{"original_text": "And, one house that was kind of institutional-looking. But, no sculptures in any yards.", "album_id": "72157623093190087", "photo_flickr_id": "4277850816", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43623", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , one house that was kind of institutional-looking . but , no sculptures in any yards .", "storylet_id": "218119"}], [{"original_text": "My girlfriend and I finally got to visit Chicago in the spring. ", "album_id": "72157623093190087", "photo_flickr_id": "4277778852", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43624", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my girlfriend and i finally got to visit location in the spring .", "storylet_id": "218120"}], [{"original_text": "The mirror attraction is strange but so unique.", "album_id": "72157623093190087", "photo_flickr_id": "4277778996", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43624", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the mirror attraction is strange but so unique .", "storylet_id": "218121"}], [{"original_text": "There are so many nice houses in the area when you walk past downtown. ", "album_id": "72157623093190087", "photo_flickr_id": "4277104163", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43624", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are so many nice houses in the area when you walk past downtown .", "storylet_id": "218122"}], [{"original_text": "There are even houses that look the exact same but with different paint. ", "album_id": "72157623093190087", "photo_flickr_id": "4277104275", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43624", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are even houses that look the exact same but with different paint .", "storylet_id": "218123"}], [{"original_text": "This is my favorite house and I wish I could live here.", "album_id": "72157623093190087", "photo_flickr_id": "4277850816", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43624", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is my favorite house and i wish i could live here .", "storylet_id": "218124"}], [{"original_text": "This is our hometown after a tornado hit it.", "album_id": "72057594107766165", "photo_flickr_id": "128963450", "setting": "first-2-pick-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "43625", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is our hometown after a tornado hit it .", "storylet_id": "218125"}], [{"original_text": "Somehow half the church's roof blew off.", "album_id": "72057594107766165", "photo_flickr_id": "128963463", "setting": "first-2-pick-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "43625", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "somehow half the church 's roof blew off .", "storylet_id": "218126"}], [{"original_text": "Giant trees were uprooted.", "album_id": "72057594107766165", "photo_flickr_id": "128963496", "setting": "first-2-pick-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "43625", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "giant trees were uprooted .", "storylet_id": "218127"}], [{"original_text": "Many cars were totaled.", "album_id": "72057594107766165", "photo_flickr_id": "128963548", "setting": "first-2-pick-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "43625", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many cars were totaled .", "storylet_id": "218128"}], [{"original_text": "The whole town was literally a disaster zone and the streets were blocked.", "album_id": "72057594107766165", "photo_flickr_id": "128963584", "setting": "first-2-pick-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "43625", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the whole town was literally a disaster zone and the streets were blocked .", "storylet_id": "218129"}], [{"original_text": "We went to see all the damage from the storm.", "album_id": "72057594107766165", "photo_flickr_id": "128963408", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43626", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to see all the damage from the storm .", "storylet_id": "218130"}], [{"original_text": "Many trees were down and many cars were damaged. ", "album_id": "72057594107766165", "photo_flickr_id": "128963441", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43626", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many trees were down and many cars were damaged .", "storylet_id": "218131"}], [{"original_text": "We don't know what happened here, but hopefully no one was hurt. ", "album_id": "72057594107766165", "photo_flickr_id": "128963450", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43626", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we do n't know what happened here , but hopefully no one was hurt .", "storylet_id": "218132"}], [{"original_text": "The local news was on the scene as well.", "album_id": "72057594107766165", "photo_flickr_id": "128963476", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43626", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the local news was on the scene as well .", "storylet_id": "218133"}], [{"original_text": "We made it to city hall to see what, if anything, we could do to help.", "album_id": "72057594107766165", "photo_flickr_id": "128963612", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43626", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we made it to city hall to see what , if anything , we could do to help .", "storylet_id": "218134"}], [{"original_text": "It's hard to imagine the storm's fury, unless you see it yourself. ", "album_id": "72057594107766165", "photo_flickr_id": "128963450", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "43627", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's hard to imagine the storm 's fury , unless you see it yourself .", "storylet_id": "218135"}], [{"original_text": "This is the church we attend. High winds caused the roof to collapse. ", "album_id": "72057594107766165", "photo_flickr_id": "128963463", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "43627", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the church we attend . high winds caused the roof to collapse .", "storylet_id": "218136"}], [{"original_text": "A very tall oak tree toppled - it just missed my house. ", "album_id": "72057594107766165", "photo_flickr_id": "128963496", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "43627", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a very tall oak tree toppled - it just missed my house .", "storylet_id": "218137"}], [{"original_text": "My neighbor's car was not so lucky. ", "album_id": "72057594107766165", "photo_flickr_id": "128963548", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "43627", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my neighbor 's car was not so lucky .", "storylet_id": "218138"}], [{"original_text": "This scene was repeated all over the city. It was a terribly destructive storm. ", "album_id": "72057594107766165", "photo_flickr_id": "128963584", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "43627", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this scene was repeated all over the city . it was a terribly destructive storm .", "storylet_id": "218139"}], [{"original_text": "A tornado ripped through our city!", "album_id": "72057594107766165", "photo_flickr_id": "128963450", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "43628", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a tornado ripped through our city !", "storylet_id": "218140"}], [{"original_text": "Even though it wasn't very big, it still damaged buildings.", "album_id": "72057594107766165", "photo_flickr_id": "128963463", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "43628", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even though it was n't very big , it still damaged buildings .", "storylet_id": "218141"}], [{"original_text": "It knocked over trees.", "album_id": "72057594107766165", "photo_flickr_id": "128963496", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "43628", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it knocked over trees .", "storylet_id": "218142"}], [{"original_text": "Some trees fell on cars!", "album_id": "72057594107766165", "photo_flickr_id": "128963548", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "43628", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some trees fell on cars !", "storylet_id": "218143"}], [{"original_text": "Some cars were destroyed by falling debris. Clean up will be difficult!", "album_id": "72057594107766165", "photo_flickr_id": "128963584", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "43628", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some cars were destroyed by falling debris . clean up will be difficult !", "storylet_id": "218144"}], [{"original_text": "The storm destroyed a lot of property.", "album_id": "72057594107766165", "photo_flickr_id": "128963450", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43629", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the storm destroyed a lot of property .", "storylet_id": "218145"}], [{"original_text": "Clean up would take a very long time. ", "album_id": "72057594107766165", "photo_flickr_id": "128963463", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43629", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "clean up would take a very long time .", "storylet_id": "218146"}], [{"original_text": "Home owners had lots of work to do. ", "album_id": "72057594107766165", "photo_flickr_id": "128963496", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43629", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "home owners had lots of work to do .", "storylet_id": "218147"}], [{"original_text": "Many cars were destroyed. ", "album_id": "72057594107766165", "photo_flickr_id": "128963548", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43629", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many cars were destroyed .", "storylet_id": "218148"}], [{"original_text": "There was damage up and down the streets. ", "album_id": "72057594107766165", "photo_flickr_id": "128963584", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "43629", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was damage up and down the streets .", "storylet_id": "218149"}], [{"original_text": "His two best friends came into the restaurant. ", "album_id": "72157594331657010", "photo_flickr_id": "271652585", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43630", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "his two best friends came into the restaurant .", "storylet_id": "218150"}], [{"original_text": "Quickly, he made them their favorite drink. ", "album_id": "72157594331657010", "photo_flickr_id": "271652727", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43630", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "quickly , he made them their favorite drink .", "storylet_id": "218151"}], [{"original_text": "They ordered a tray of shrimp, avocado and cheese dip with nachos. ", "album_id": "72157594331657010", "photo_flickr_id": "271652824", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43630", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they ordered a tray of shrimp , avocado and cheese dip with nachos .", "storylet_id": "218152"}], [{"original_text": "They shared a bowl of jambalaya. ", "album_id": "72157594331657010", "photo_flickr_id": "271653033", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43630", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they shared a bowl of jambalaya .", "storylet_id": "218153"}], [{"original_text": "Leon was always happy to see his friends enjoy his work. ", "album_id": "72157594331657010", "photo_flickr_id": "271655036", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43630", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was always happy to see his friends enjoy his work .", "storylet_id": "218154"}], [{"original_text": "I went to the bar tonight for a few drinks.", "album_id": "72157594331657010", "photo_flickr_id": "271652585", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43631", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the bar tonight for a few drinks .", "storylet_id": "218155"}], [{"original_text": "They were very tasty.", "album_id": "72157594331657010", "photo_flickr_id": "271652727", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43631", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were very tasty .", "storylet_id": "218156"}], [{"original_text": "I also went back home later to grab my stuff from my safe.", "album_id": "72157594331657010", "photo_flickr_id": "271655099", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43631", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also went back home later to grab my stuff from my safe .", "storylet_id": "218157"}], [{"original_text": "It is very secure.", "album_id": "72157594331657010", "photo_flickr_id": "271655315", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43631", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it is very secure .", "storylet_id": "218158"}], [{"original_text": "I also bought some posters for my room.", "album_id": "72157594331657010", "photo_flickr_id": "271655591", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43631", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i also bought some posters for my room .", "storylet_id": "218159"}], [{"original_text": "My husband and I finally got to go out on a date night.", "album_id": "72157594331657010", "photo_flickr_id": "271652585", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "43632", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband and i finally got to go out on a date night .", "storylet_id": "218160"}], [{"original_text": "We had a couple of amazing drinks.", "album_id": "72157594331657010", "photo_flickr_id": "271652727", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "43632", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a couple of amazing drinks .", "storylet_id": "218161"}], [{"original_text": "The food was artfully put together, and tasted amazing.", "album_id": "72157594331657010", "photo_flickr_id": "271652824", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "43632", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food was artfully put together , and tasted amazing .", "storylet_id": "218162"}], [{"original_text": "The good food just kept coming, and we are till we were stuffed.", "album_id": "72157594331657010", "photo_flickr_id": "271653033", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "43632", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the good food just kept coming , and we are till we were stuffed .", "storylet_id": "218163"}], [{"original_text": "The food was so good we had to give our compliments to the chef personally.", "album_id": "72157594331657010", "photo_flickr_id": "271655036", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "43632", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the food was so good we had to give our compliments to the chef personally .", "storylet_id": "218164"}], [{"original_text": "Celebrating five years of marriage.", "album_id": "72157594331657010", "photo_flickr_id": "271652585", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43633", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "celebrating five years of marriage .", "storylet_id": "218165"}], [{"original_text": "They drank the first drinks they had as a married couple.", "album_id": "72157594331657010", "photo_flickr_id": "271652727", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43633", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they drank the first drinks they had as a married couple .", "storylet_id": "218166"}], [{"original_text": "They sampled the beautiful appetizers.", "album_id": "72157594331657010", "photo_flickr_id": "271652824", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43633", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they sampled the beautiful appetizers .", "storylet_id": "218167"}], [{"original_text": "The entrees were cooked to perfection.", "album_id": "72157594331657010", "photo_flickr_id": "271653033", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43633", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the entrees were cooked to perfection .", "storylet_id": "218168"}], [{"original_text": "He was all smiles that they enjoyed it.", "album_id": "72157594331657010", "photo_flickr_id": "271655036", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43633", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was all smiles that they enjoyed it .", "storylet_id": "218169"}], [{"original_text": "Our honeymoon hotel had the most perfect intimate restaurant.", "album_id": "72157594331657010", "photo_flickr_id": "271652585", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43634", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our honeymoon hotel had the most perfect intimate restaurant .", "storylet_id": "218170"}], [{"original_text": "Each evening we enjoyed different flavored cocktails.", "album_id": "72157594331657010", "photo_flickr_id": "271652727", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43634", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each evening we enjoyed different flavored cocktails .", "storylet_id": "218171"}], [{"original_text": "The appetizers were delicious and almost a meal in and of themselves.", "album_id": "72157594331657010", "photo_flickr_id": "271652824", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43634", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the appetizers were delicious and almost a meal in and of themselves .", "storylet_id": "218172"}], [{"original_text": "The main entrees were served as a piece of art would be displayed.", "album_id": "72157594331657010", "photo_flickr_id": "271653033", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43634", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the main entrees were served as a piece of art would be displayed .", "storylet_id": "218173"}], [{"original_text": "We managed to get a candid shot of the chef before we left.", "album_id": "72157594331657010", "photo_flickr_id": "271655036", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43634", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we managed to get a candid shot of the chef before we left .", "storylet_id": "218174"}], [{"original_text": "Cleveland might not be considered a popular tourist attraction but there are some thing to look at.", "album_id": "72157594425735153", "photo_flickr_id": "325694941", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43635", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location might not be considered a popular tourist attraction but there are some thing to look at .", "storylet_id": "218175"}], [{"original_text": "This is the house used in the movie Christmas Story.", "album_id": "72157594425735153", "photo_flickr_id": "325687073", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43635", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the house used in the movie christmas story .", "storylet_id": "218176"}], [{"original_text": "Here is a better shot.", "album_id": "72157594425735153", "photo_flickr_id": "325676942", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43635", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is a better shot .", "storylet_id": "218177"}], [{"original_text": "Cleveland also has some interesting architecture.", "album_id": "72157594425735153", "photo_flickr_id": "325693893", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43635", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "location also has some interesting architecture .", "storylet_id": "218178"}], [{"original_text": "Some of the architecture is post modern.", "album_id": "72157594425735153", "photo_flickr_id": "325675509", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43635", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the architecture is post modern .", "storylet_id": "218179"}], [{"original_text": "The little house on the corner was recently remodeled by the couple.", "album_id": "72157594425735153", "photo_flickr_id": "325676942", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43636", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the little house on the corner was recently remodeled by the couple .", "storylet_id": "218180"}], [{"original_text": "They added a row of wooden fence along one side of the house.", "album_id": "72157594425735153", "photo_flickr_id": "325680417", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43636", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they added a row of wooden fence along one side of the house .", "storylet_id": "218181"}], [{"original_text": "On the other side of the house, there is a row of metal fence.", "album_id": "72157594425735153", "photo_flickr_id": "325688992", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43636", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on the other side of the house , there is a row of metal fence .", "storylet_id": "218182"}], [{"original_text": "The window was freshly painted in a shade of blue.", "album_id": "72157594425735153", "photo_flickr_id": "325690770", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43636", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the window was freshly painted in a shade of blue .", "storylet_id": "218183"}], [{"original_text": "The couple lives in a historic town, outside town, there is a sign explaining the significance. ", "album_id": "72157594425735153", "photo_flickr_id": "325694941", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43636", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the couple lives in a historic town , outside town , there is a sign explaining the significance .", "storylet_id": "218184"}], [{"original_text": "The trip to the rock and roll hall of fame was starting out great.", "album_id": "72157594425735153", "photo_flickr_id": "325694941", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43637", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the trip to the rock and roll hall of fame was starting out great .", "storylet_id": "218185"}], [{"original_text": "The family stayed with a friend who lived nearby.", "album_id": "72157594425735153", "photo_flickr_id": "325687073", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43637", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family stayed with a friend who lived nearby .", "storylet_id": "218186"}], [{"original_text": "Their house was a bit small but they fit.", "album_id": "72157594425735153", "photo_flickr_id": "325676942", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43637", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their house was a bit small but they fit .", "storylet_id": "218187"}], [{"original_text": "The next day they took a walk into town.", "album_id": "72157594425735153", "photo_flickr_id": "325693893", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43637", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next day they took a walk into town .", "storylet_id": "218188"}], [{"original_text": "Everyone had a good time at the museum.", "album_id": "72157594425735153", "photo_flickr_id": "325675509", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43637", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a good time at the museum .", "storylet_id": "218189"}], [{"original_text": "I saw the Birthplace of Rock 'N' Roll.", "album_id": "72157594425735153", "photo_flickr_id": "325694941", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "43638", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i saw the birthplace of rock 'n ' roll .", "storylet_id": "218190"}], [{"original_text": "There were some pretty houses around.", "album_id": "72157594425735153", "photo_flickr_id": "325687073", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "43638", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were some pretty houses around .", "storylet_id": "218191"}], [{"original_text": "This house was typical of the homes around there.", "album_id": "72157594425735153", "photo_flickr_id": "325676942", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "43638", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this house was typical of the homes around there .", "storylet_id": "218192"}], [{"original_text": "But the commercial area had this incredible building that dominated everything.", "album_id": "72157594425735153", "photo_flickr_id": "325693893", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "43638", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but the commercial area had this incredible building that dominated everything .", "storylet_id": "218193"}], [{"original_text": "However, at night, this is lovely to see.", "album_id": "72157594425735153", "photo_flickr_id": "325675509", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "43638", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , at night , this is lovely to see .", "storylet_id": "218194"}], [{"original_text": "Jess wanted to take a trip to learn about different types of music.", "album_id": "72157594425735153", "photo_flickr_id": "325694941", "setting": "last-3-pick-old-and-tell", "worker_id": "CQ56QM4P3DJ9CFY", "story_id": "43639", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] wanted to take a trip to learn about different types of music .", "storylet_id": "218195"}], [{"original_text": "She heard that the Ohio was the birthplace of Rock 'n Roll, so she planned a trip there.", "album_id": "72157594425735153", "photo_flickr_id": "325687073", "setting": "last-3-pick-old-and-tell", "worker_id": "CQ56QM4P3DJ9CFY", "story_id": "43639", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she heard that the location was the birthplace of rock 'n roll , so she planned a trip there .", "storylet_id": "218196"}], [{"original_text": "She walked around several neighborhood.", "album_id": "72157594425735153", "photo_flickr_id": "325676942", "setting": "last-3-pick-old-and-tell", "worker_id": "CQ56QM4P3DJ9CFY", "story_id": "43639", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she walked around several neighborhood .", "storylet_id": "218197"}], [{"original_text": "She also went downtown and looked around the newer buildings.", "album_id": "72157594425735153", "photo_flickr_id": "325693893", "setting": "last-3-pick-old-and-tell", "worker_id": "CQ56QM4P3DJ9CFY", "story_id": "43639", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she also went downtown and looked around the newer buildings .", "storylet_id": "218198"}], [{"original_text": "She really enjoyed the different architecture she saw on her trip.", "album_id": "72157594425735153", "photo_flickr_id": "325675509", "setting": "last-3-pick-old-and-tell", "worker_id": "CQ56QM4P3DJ9CFY", "story_id": "43639", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she really enjoyed the different architecture she saw on her trip .", "storylet_id": "218199"}], [{"original_text": "Gesse can be annoying some times.", "album_id": "169315", "photo_flickr_id": "6788445", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "43640", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "gesse can be annoying some times .", "storylet_id": "218200"}], [{"original_text": "This goose is named Ronald.", "album_id": "169315", "photo_flickr_id": "6788470", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "43640", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this goose is named [male] .", "storylet_id": "218201"}], [{"original_text": "He is a fixture at this lake.", "album_id": "169315", "photo_flickr_id": "6788473", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "43640", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he is a fixture at this lake .", "storylet_id": "218202"}], [{"original_text": "Whenever people come around Ronald always wants to say hi.", "album_id": "169315", "photo_flickr_id": "6788502", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "43640", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "whenever people come around [male] always wants to say hi .", "storylet_id": "218203"}], [{"original_text": "Ronald wants to go inside.", "album_id": "169315", "photo_flickr_id": "6792670", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "43640", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] wants to go inside .", "storylet_id": "218204"}], [{"original_text": "we went to an amazing river tour", "album_id": "169315", "photo_flickr_id": "6788515", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43641", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to an amazing river tour", "storylet_id": "218205"}], [{"original_text": "we saw a swan", "album_id": "169315", "photo_flickr_id": "6788522", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43641", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw a swan", "storylet_id": "218206"}], [{"original_text": "and its babies", "album_id": "169315", "photo_flickr_id": "6788523", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43641", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and its babies", "storylet_id": "218207"}], [{"original_text": "a little ways down the river we saw something special", "album_id": "169315", "photo_flickr_id": "6788527", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43641", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a little ways down the river we saw something special", "storylet_id": "218208"}], [{"original_text": "more baby swans", "album_id": "169315", "photo_flickr_id": "6788529", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43641", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "more baby swans", "storylet_id": "218209"}], [{"original_text": "A swan swam on the quiet pond.", "album_id": "169315", "photo_flickr_id": "6788445", "setting": "last-3-pick-old-and-tell", "worker_id": "468TTSRE58K9GVV", "story_id": "43642", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a swan swam on the quiet pond .", "storylet_id": "218210"}], [{"original_text": "A curious duck came onto land to look at the man with a camera.", "album_id": "169315", "photo_flickr_id": "6788470", "setting": "last-3-pick-old-and-tell", "worker_id": "468TTSRE58K9GVV", "story_id": "43642", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a curious duck came onto land to look at the man with a camera .", "storylet_id": "218211"}], [{"original_text": "The duck approached a large boat and some passengers.", "album_id": "169315", "photo_flickr_id": "6788473", "setting": "last-3-pick-old-and-tell", "worker_id": "468TTSRE58K9GVV", "story_id": "43642", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the duck approached a large boat and some passengers .", "storylet_id": "218212"}], [{"original_text": "The people sitting on top of the boat had never seen a duck come so close to them.", "album_id": "169315", "photo_flickr_id": "6788502", "setting": "last-3-pick-old-and-tell", "worker_id": "468TTSRE58K9GVV", "story_id": "43642", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people sitting on top of the boat had never seen a duck come so close to them .", "storylet_id": "218213"}], [{"original_text": "Another duck joined in, in hopes of scoring some bread crumbs.", "album_id": "169315", "photo_flickr_id": "6792670", "setting": "last-3-pick-old-and-tell", "worker_id": "468TTSRE58K9GVV", "story_id": "43642", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "another duck joined in , in hopes of scoring some bread crumbs .", "storylet_id": "218214"}], [{"original_text": "We went to the park to visit my friends grave.", "album_id": "169315", "photo_flickr_id": "6788515", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43643", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the park to visit my friends grave .", "storylet_id": "218215"}], [{"original_text": "The swans were there with their babies.", "album_id": "169315", "photo_flickr_id": "6788522", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43643", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the swans were there with their babies .", "storylet_id": "218216"}], [{"original_text": "They swam around.", "album_id": "169315", "photo_flickr_id": "6788523", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43643", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they swam around .", "storylet_id": "218217"}], [{"original_text": "It was a lot of fun to watch the boats zoom down the rivers.", "album_id": "169315", "photo_flickr_id": "6788527", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43643", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a lot of fun to watch the boats zoom down the rivers .", "storylet_id": "218218"}], [{"original_text": "The ducks followed.", "album_id": "169315", "photo_flickr_id": "6788529", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "43643", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ducks followed .", "storylet_id": "218219"}], [{"original_text": "There was a grave that was located in the park.", "album_id": "169315", "photo_flickr_id": "6788515", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43644", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a grave that was located in the park .", "storylet_id": "218220"}], [{"original_text": "We got to see a mother and her children swimming in the lake.", "album_id": "169315", "photo_flickr_id": "6788522", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43644", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to see a mother and her children swimming in the lake .", "storylet_id": "218221"}], [{"original_text": "The little ducks closely followed their mother.", "album_id": "169315", "photo_flickr_id": "6788523", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43644", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the little ducks closely followed their mother .", "storylet_id": "218222"}], [{"original_text": "There were boats and fisherman in the waters.", "album_id": "169315", "photo_flickr_id": "6788527", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43644", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were boats and fisherman in the waters .", "storylet_id": "218223"}], [{"original_text": "Lastly, we saw a family of baby ducks.", "album_id": "169315", "photo_flickr_id": "6788529", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43644", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , we saw a family of baby ducks .", "storylet_id": "218224"}], [{"original_text": "Nice beautiful home ", "album_id": "72157594168841526", "photo_flickr_id": "169428208", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43645", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "nice beautiful home", "storylet_id": "218225"}], [{"original_text": "With gated fence for privacy", "album_id": "72157594168841526", "photo_flickr_id": "169427558", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43645", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "with gated fence for privacy", "storylet_id": "218226"}], [{"original_text": "Sets on acres of land", "album_id": "72157594168841526", "photo_flickr_id": "169427705", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43645", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sets on acres of land", "storylet_id": "218227"}], [{"original_text": "Colorful flowers that bloom very pretty", "album_id": "72157594168841526", "photo_flickr_id": "169427373", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43645", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "colorful flowers that bloom very pretty", "storylet_id": "218228"}], [{"original_text": "Overall nice wonderful view to see and live", "album_id": "72157594168841526", "photo_flickr_id": "169427614", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43645", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall nice wonderful view to see and live", "storylet_id": "218229"}], [{"original_text": "I went back to my hometown over the weekend and saw my old house.", "album_id": "72157594168841526", "photo_flickr_id": "169427373", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43646", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went back to my hometown over the weekend and saw my old house .", "storylet_id": "218230"}], [{"original_text": "The fence I had painted many years ago was still painted like that.", "album_id": "72157594168841526", "photo_flickr_id": "169428117", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43646", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fence i had painted many years ago was still painted like that .", "storylet_id": "218231"}], [{"original_text": "The lamp in the window always looked odd to me as a child.", "album_id": "72157594168841526", "photo_flickr_id": "169428285", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43646", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lamp in the window always looked odd to me as a child .", "storylet_id": "218232"}], [{"original_text": "We stopped off at the birthplace of Rock N Roll while I was there.", "album_id": "72157594168841526", "photo_flickr_id": "169427705", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43646", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped off at the birthplace of rock n roll while i was there .", "storylet_id": "218233"}], [{"original_text": "This is the most interesting building in the entire town. It took them five years to build.", "album_id": "72157594168841526", "photo_flickr_id": "169427672", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43646", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the most interesting building in the entire town . it took them five years to build .", "storylet_id": "218234"}], [{"original_text": "The trip to the country side was fun.", "album_id": "72157594168841526", "photo_flickr_id": "169428208", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43647", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the trip to the country side was fun .", "storylet_id": "218235"}], [{"original_text": "They got to see the old family house.", "album_id": "72157594168841526", "photo_flickr_id": "169427558", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43647", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they got to see the old family house .", "storylet_id": "218236"}], [{"original_text": "And the country side was beautiful.", "album_id": "72157594168841526", "photo_flickr_id": "169427705", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43647", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the country side was beautiful .", "storylet_id": "218237"}], [{"original_text": "The family loved watching nature.", "album_id": "72157594168841526", "photo_flickr_id": "169427373", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43647", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family loved watching nature .", "storylet_id": "218238"}], [{"original_text": "And everyone enjoyed the break from city life.", "album_id": "72157594168841526", "photo_flickr_id": "169427614", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43647", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and everyone enjoyed the break from city life .", "storylet_id": "218239"}], [{"original_text": "The pasture is a great place to go to be alone ", "album_id": "72157594168841526", "photo_flickr_id": "169428208", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43648", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the pasture is a great place to go to be alone", "storylet_id": "218240"}], [{"original_text": "because there's no one in sight.", "album_id": "72157594168841526", "photo_flickr_id": "169427558", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43648", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "because there 's no one in sight .", "storylet_id": "218241"}], [{"original_text": "The only company around is the numerous trees", "album_id": "72157594168841526", "photo_flickr_id": "169427705", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43648", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the only company around is the numerous trees", "storylet_id": "218242"}], [{"original_text": "and the clouds in the sky,", "album_id": "72157594168841526", "photo_flickr_id": "169427373", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43648", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the clouds in the sky ,", "storylet_id": "218243"}], [{"original_text": "which makes it the best place to go to be alone and to reflect on your life. ", "album_id": "72157594168841526", "photo_flickr_id": "169427614", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43648", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "which makes it the best place to go to be alone and to reflect on your life .", "storylet_id": "218244"}], [{"original_text": "In the distance, the winding road led to an old church that contrasted against he darkening sky.", "album_id": "72157594168841526", "photo_flickr_id": "169428208", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "43649", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the distance , the winding road led to an old church that contrasted against he darkening sky .", "storylet_id": "218245"}], [{"original_text": "The weather seemed like it may take a turn for the worst, but against the outline of a fence, the skies cleared again.", "album_id": "72157594168841526", "photo_flickr_id": "169427558", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "43649", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the weather seemed like it may take a turn for the worst , but against the outline of a fence , the skies cleared again .", "storylet_id": "218246"}], [{"original_text": "Looking across the rolling and expansive field, the area seemed to stretch on for miles.", "album_id": "72157594168841526", "photo_flickr_id": "169427705", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "43649", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looking across the rolling and expansive field , the area seemed to stretch on for miles .", "storylet_id": "218247"}], [{"original_text": "Amongst the brush there seemed to be a lone flowering plant that stood out against the other plants in the terrain.", "album_id": "72157594168841526", "photo_flickr_id": "169427373", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "43649", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "amongst the brush there seemed to be a lone flowering plant that stood out against the other plants in the terrain .", "storylet_id": "218248"}], [{"original_text": "A clear few of the landscape showcased the rolling skies above and the bales of hay below. ", "album_id": "72157594168841526", "photo_flickr_id": "169427614", "setting": "last-3-pick-old-and-tell", "worker_id": "MDIMYLTCW9MF12P", "story_id": "43649", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a clear few of the landscape showcased the rolling skies above and the bales of hay below .", "storylet_id": "218249"}], [{"original_text": "Janice is taking her first trip across Ireland. ", "album_id": "72157594335219262", "photo_flickr_id": "273652763", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43650", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is taking her first trip across location .", "storylet_id": "218250"}], [{"original_text": "They've driven miles through green fields. ", "album_id": "72157594335219262", "photo_flickr_id": "273652752", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43650", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they 've driven miles through green fields .", "storylet_id": "218251"}], [{"original_text": "They stopped here for some lunch and she took this selfie with a landmark building in the distance. ", "album_id": "72157594335219262", "photo_flickr_id": "273652875", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43650", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they stopped here for some lunch and she took this selfie with a landmark building in the distance .", "storylet_id": "218252"}], [{"original_text": "There was a street vendor selling his drawings and Janice bought one as a souvenir. ", "album_id": "72157594335219262", "photo_flickr_id": "273652934", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43650", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a street vendor selling his drawings and [female] bought one as a souvenir .", "storylet_id": "218253"}], [{"original_text": "This was her favorite cafe out of the entire trip. ", "album_id": "72157594335219262", "photo_flickr_id": "273652960", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43650", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was her favorite cafe out of the entire trip .", "storylet_id": "218254"}], [{"original_text": "On the bus, I'm getting ready to visit the capital in D.C.", "album_id": "72157594335219262", "photo_flickr_id": "273652763", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43651", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on the bus , i 'm getting ready to visit the capital in location .", "storylet_id": "218255"}], [{"original_text": "The narrow streets point their way straight to the White House.", "album_id": "72157594335219262", "photo_flickr_id": "273652776", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43651", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the narrow streets point their way straight to the organization organization .", "storylet_id": "218256"}], [{"original_text": "What a beautiful view of my destination.", "album_id": "72157594335219262", "photo_flickr_id": "273652832", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43651", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what a beautiful view of my destination .", "storylet_id": "218257"}], [{"original_text": "By the river, I'm stopping to enjoy the sunshine and a camera shot.", "album_id": "72157594335219262", "photo_flickr_id": "273652875", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43651", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "by the river , i 'm stopping to enjoy the sunshine and a camera shot .", "storylet_id": "218258"}], [{"original_text": "Headed back out of town are the railroad tracks headed to Jersey.", "album_id": "72157594335219262", "photo_flickr_id": "273652890", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43651", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "headed back out of town are the railroad tracks headed to location .", "storylet_id": "218259"}], [{"original_text": "The bus ride into the city was a bit long.", "album_id": "72157594335219262", "photo_flickr_id": "273652763", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43652", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bus ride into the city was a bit long .", "storylet_id": "218260"}], [{"original_text": "But there was beautiful scenery.", "album_id": "72157594335219262", "photo_flickr_id": "273652752", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43652", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but there was beautiful scenery .", "storylet_id": "218261"}], [{"original_text": "The group finally arrived in town.", "album_id": "72157594335219262", "photo_flickr_id": "273652875", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43652", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the group finally arrived in town .", "storylet_id": "218262"}], [{"original_text": "To see the art show.", "album_id": "72157594335219262", "photo_flickr_id": "273652934", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43652", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to see the art show .", "storylet_id": "218263"}], [{"original_text": "After browsing they stopped for dinner.", "album_id": "72157594335219262", "photo_flickr_id": "273652960", "setting": "last-3-pick-old-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "43652", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after browsing they stopped for dinner .", "storylet_id": "218264"}], [{"original_text": "I took a train ride through the city.", "album_id": "72157594335219262", "photo_flickr_id": "273652763", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "43653", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a train ride through the city .", "storylet_id": "218265"}], [{"original_text": "The scenery was lovely.", "album_id": "72157594335219262", "photo_flickr_id": "273652752", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "43653", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the scenery was lovely .", "storylet_id": "218266"}], [{"original_text": "I took a photo by the river.", "album_id": "72157594335219262", "photo_flickr_id": "273652875", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "43653", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took a photo by the river .", "storylet_id": "218267"}], [{"original_text": "As I walked around, I saw some nice art for sale.", "album_id": "72157594335219262", "photo_flickr_id": "273652934", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "43653", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as i walked around , i saw some nice art for sale .", "storylet_id": "218268"}], [{"original_text": "And of course, I window shopped a bit.", "album_id": "72157594335219262", "photo_flickr_id": "273652960", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "43653", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and of course , i window shopped a bit .", "storylet_id": "218269"}], [{"original_text": "I went to ride on the train last week.", "album_id": "72157594335219262", "photo_flickr_id": "273652763", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43654", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to ride on the train last week .", "storylet_id": "218270"}], [{"original_text": "There was a beautiful field outside.", "album_id": "72157594335219262", "photo_flickr_id": "273652752", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43654", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a beautiful field outside .", "storylet_id": "218271"}], [{"original_text": "When I got to the destination I went to walk around the city.", "album_id": "72157594335219262", "photo_flickr_id": "273652875", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43654", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when i got to the destination i went to walk around the city .", "storylet_id": "218272"}], [{"original_text": "I saw a lot of street vendors.", "album_id": "72157594335219262", "photo_flickr_id": "273652934", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43654", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i saw a lot of street vendors .", "storylet_id": "218273"}], [{"original_text": "Afterward I was hungry and grabbed some food.", "album_id": "72157594335219262", "photo_flickr_id": "273652960", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43654", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward i was hungry and grabbed some food .", "storylet_id": "218274"}], [{"original_text": "Going to the beach is a lot of fun!", "album_id": "72157623116827597", "photo_flickr_id": "4287133593", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "43655", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going to the beach is a lot of fun !", "storylet_id": "218275"}], [{"original_text": "Today it is not that crowded and it is great being here relaxing. ", "album_id": "72157623116827597", "photo_flickr_id": "4287201501", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "43655", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today it is not that crowded and it is great being here relaxing .", "storylet_id": "218276"}], [{"original_text": "There is a great pier to walk over the water on or do some fishing.", "album_id": "72157623116827597", "photo_flickr_id": "4287162165", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "43655", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is a great pier to walk over the water on or do some fishing .", "storylet_id": "218277"}], [{"original_text": "There are plenty of rocks to walk on. ", "album_id": "72157623116827597", "photo_flickr_id": "4287905428", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "43655", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are plenty of rocks to walk on .", "storylet_id": "218278"}], [{"original_text": "Some of the rocks are dangerous so be careful if you come here. ", "album_id": "72157623116827597", "photo_flickr_id": "4287163751", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "43655", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the rocks are dangerous so be careful if you come here .", "storylet_id": "218279"}], [{"original_text": "I finished my shift at the pharmacy cash register in the early afternoon.", "album_id": "72157623116827597", "photo_flickr_id": "4287877080", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43656", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finished my shift at the pharmacy cash register in the early afternoon .", "storylet_id": "218280"}], [{"original_text": "So I headed to the beach which had a pretty good crowd near the water.", "album_id": "72157623116827597", "photo_flickr_id": "4287877960", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43656", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so i headed to the beach which had a pretty good crowd near the water .", "storylet_id": "218281"}], [{"original_text": "I was elated at the choice I had made. ", "album_id": "72157623116827597", "photo_flickr_id": "4287133593", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43656", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was elated at the choice i had made .", "storylet_id": "218282"}], [{"original_text": "I saw a lighthouse in the distance and decided to hike closer to admire the setting.", "album_id": "72157623116827597", "photo_flickr_id": "4287915458", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43656", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i saw a lighthouse in the distance and decided to hike closer to admire the setting .", "storylet_id": "218283"}], [{"original_text": "As I reached the small inlet near the lighthouse, I could see the ideal access that the lighthouse had to the open sea. It was a very nice afternoon.", "album_id": "72157623116827597", "photo_flickr_id": "4287915846", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "43656", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as i reached the small inlet near the lighthouse , i could see the ideal access that the lighthouse had to the open sea . it was a very nice afternoon .", "storylet_id": "218284"}], [{"original_text": "Look how excited I am to be at the beach.", "album_id": "72157623116827597", "photo_flickr_id": "4287133593", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "43657", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "look how excited i am to be at the beach .", "storylet_id": "218285"}], [{"original_text": "The scenery here is beautiful!", "album_id": "72157623116827597", "photo_flickr_id": "4287201501", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "43657", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the scenery here is beautiful !", "storylet_id": "218286"}], [{"original_text": "I'll walk down the pier and gaze at the ocean.", "album_id": "72157623116827597", "photo_flickr_id": "4287162165", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "43657", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i 'll walk down the pier and gaze at the ocean .", "storylet_id": "218287"}], [{"original_text": "Later I can relax and enjoy nature along the rocky shore.", "album_id": "72157623116827597", "photo_flickr_id": "4287905428", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "43657", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later i can relax and enjoy nature along the rocky shore .", "storylet_id": "218288"}], [{"original_text": "There is always something to watch, whether it is in the tidal pools or under the water.", "album_id": "72157623116827597", "photo_flickr_id": "4287163751", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "43657", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is always something to watch , whether it is in the tidal pools or under the water .", "storylet_id": "218289"}], [{"original_text": "We were so happy that we finally made it to the beach after a long drive.", "album_id": "72157623116827597", "photo_flickr_id": "4287133593", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43658", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were so happy that we finally made it to the beach after a long drive .", "storylet_id": "218290"}], [{"original_text": "The view was great and there were hardly any other people there.", "album_id": "72157623116827597", "photo_flickr_id": "4287201501", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43658", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view was great and there were hardly any other people there .", "storylet_id": "218291"}], [{"original_text": "The was a long wooden pier.", "album_id": "72157623116827597", "photo_flickr_id": "4287162165", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43658", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the was a long wooden pier .", "storylet_id": "218292"}], [{"original_text": "We took a lot of pictures.", "album_id": "72157623116827597", "photo_flickr_id": "4287905428", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43658", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a lot of pictures .", "storylet_id": "218293"}], [{"original_text": "I also spent some time exploring the tide pools.", "album_id": "72157623116827597", "photo_flickr_id": "4287163751", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43658", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i also spent some time exploring the tide pools .", "storylet_id": "218294"}], [{"original_text": "My back had been hurting from being on the airplane so long, so I found a pharmacy where I could buy some Tylenol.", "album_id": "72157623116827597", "photo_flickr_id": "4287877080", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43659", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my back had been hurting from being on the airplane so long , so i found a pharmacy where i could buy some tylenol .", "storylet_id": "218295"}], [{"original_text": "It took a while to kick in...", "album_id": "72157623116827597", "photo_flickr_id": "4287877960", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43659", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it took a while to kick in ...", "storylet_id": "218296"}], [{"original_text": "But, soon I was feeling like my old self.", "album_id": "72157623116827597", "photo_flickr_id": "4287133593", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43659", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but , soon i was feeling like my old self .", "storylet_id": "218297"}], [{"original_text": "Since I was feeling better, we ended up taking a boat ride to see some of the harder to reach places.", "album_id": "72157623116827597", "photo_flickr_id": "4287915458", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43659", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "since i was feeling better , we ended up taking a boat ride to see some of the harder to reach places .", "storylet_id": "218298"}], [{"original_text": "We even saw a lighthouse.", "album_id": "72157623116827597", "photo_flickr_id": "4287915846", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "43659", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even saw a lighthouse .", "storylet_id": "218299"}], [{"original_text": "We traveled more than a 100 miles from our hotel to reach the destination. ", "album_id": "72157594242632054", "photo_flickr_id": "219269968", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43660", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we traveled more than a 100 miles from our hotel to reach the destination .", "storylet_id": "218300"}], [{"original_text": "During our trip, we stopped by the museum and also bought some souvenirs. ", "album_id": "72157594242632054", "photo_flickr_id": "219270102", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43660", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "during our trip , we stopped by the museum and also bought some souvenirs .", "storylet_id": "218301"}], [{"original_text": "We saw some abandoned houses, left on the historic site. ", "album_id": "72157594242632054", "photo_flickr_id": "219270207", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43660", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw some abandoned houses , left on the historic site .", "storylet_id": "218302"}], [{"original_text": "There was a small bridge over a creek, near the museum. ", "album_id": "72157594242632054", "photo_flickr_id": "219270341", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43660", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a small bridge over a creek , near the museum .", "storylet_id": "218303"}], [{"original_text": "We also took a boat ride, in the lake, during the afternoon. ", "album_id": "72157594242632054", "photo_flickr_id": "219274962", "setting": "first-2-pick-and-tell", "worker_id": "H1SM7WXTPKZFM9Z", "story_id": "43660", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also took a boat ride , in the lake , during the afternoon .", "storylet_id": "218304"}], [{"original_text": "The charming little southern town is very old, the general store is original. ", "album_id": "72157594242632054", "photo_flickr_id": "219269870", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43661", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the charming little southern town is very old , the general store is original .", "storylet_id": "218305"}], [{"original_text": "It is a quiet little town with only one long road.", "album_id": "72157594242632054", "photo_flickr_id": "219269968", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43661", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is a quiet little town with only one long road .", "storylet_id": "218306"}], [{"original_text": "There is only one museum in town to tell the history and culture.", "album_id": "72157594242632054", "photo_flickr_id": "219270102", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43661", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is only one museum in town to tell the history and culture .", "storylet_id": "218307"}], [{"original_text": "Many of the families live along side the main road on little farms.", "album_id": "72157594242632054", "photo_flickr_id": "219270207", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43661", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many of the families live along side the main road on little farms .", "storylet_id": "218308"}], [{"original_text": "One of the most beautiful sites of the town is a bridge over looking a little river.", "album_id": "72157594242632054", "photo_flickr_id": "219270341", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43661", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of the most beautiful sites of the town is a bridge over looking a little river .", "storylet_id": "218309"}], [{"original_text": "I had a great time at the lodge last week.", "album_id": "72157594242632054", "photo_flickr_id": "219269870", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43662", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the lodge last week .", "storylet_id": "218310"}], [{"original_text": "There was a small town nearby.", "album_id": "72157594242632054", "photo_flickr_id": "219269968", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43662", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a small town nearby .", "storylet_id": "218311"}], [{"original_text": "They had a museum but it was only one room.", "album_id": "72157594242632054", "photo_flickr_id": "219270102", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43662", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a museum but it was only one room .", "storylet_id": "218312"}], [{"original_text": "It was very quiet out there.", "album_id": "72157594242632054", "photo_flickr_id": "219270207", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43662", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was very quiet out there .", "storylet_id": "218313"}], [{"original_text": "Some of the architecture was beautiful.", "album_id": "72157594242632054", "photo_flickr_id": "219270341", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43662", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the architecture was beautiful .", "storylet_id": "218314"}], [{"original_text": "The family took a wonderful vacation to an old historic town nearby for the summer.", "album_id": "72157594242632054", "photo_flickr_id": "219269968", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43663", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family took a wonderful vacation to an old historic town nearby for the summer .", "storylet_id": "218315"}], [{"original_text": "We visited the local museum and saw some awesome artifacts of historical significance of the city.", "album_id": "72157594242632054", "photo_flickr_id": "219270102", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43663", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we visited the local museum and saw some awesome artifacts of historical significance of the city .", "storylet_id": "218316"}], [{"original_text": "There was an old barn and many other beautiful houses nearby.", "album_id": "72157594242632054", "photo_flickr_id": "219270207", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43663", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was an old barn and many other beautiful houses nearby .", "storylet_id": "218317"}], [{"original_text": "We also visited a beautiful lush river and walkway in a nearby park.", "album_id": "72157594242632054", "photo_flickr_id": "219270341", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43663", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also visited a beautiful lush river and walkway in a nearby park .", "storylet_id": "218318"}], [{"original_text": "The landscape was gorgeous. We ended our vacation rafting in the nearby lake.", "album_id": "72157594242632054", "photo_flickr_id": "219274962", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43663", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the landscape was gorgeous . we ended our vacation rafting in the nearby lake .", "storylet_id": "218319"}], [{"original_text": "The main street had been widened to keep the congestion down during the busy season. ", "album_id": "72157594242632054", "photo_flickr_id": "219269968", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43664", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the main street had been widened to keep the congestion down during the busy season .", "storylet_id": "218320"}], [{"original_text": "This time of year most of the shops and even the museum were empty of tourists for the most part. ", "album_id": "72157594242632054", "photo_flickr_id": "219270102", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43664", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this time of year most of the shops and even the museum were empty of tourists for the most part .", "storylet_id": "218321"}], [{"original_text": "Things were quite at home. ", "album_id": "72157594242632054", "photo_flickr_id": "219270207", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43664", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "things were quite at home .", "storylet_id": "218322"}], [{"original_text": "The bridge needed some repairs though and they usually took care of maintenance in the off season. ", "album_id": "72157594242632054", "photo_flickr_id": "219270341", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43664", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bridge needed some repairs though and they usually took care of maintenance in the off season .", "storylet_id": "218323"}], [{"original_text": "He took advantage of the down time to take his family out on a small raft. ", "album_id": "72157594242632054", "photo_flickr_id": "219274962", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43664", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he took advantage of the down time to take his family out on a small raft .", "storylet_id": "218324"}], [{"original_text": "The park bench faced a lovely view.", "album_id": "72157594243355383", "photo_flickr_id": "219264406", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43665", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the park bench faced a lovely view .", "storylet_id": "218325"}], [{"original_text": "The parking lot was spacey and not very full.", "album_id": "72157594243355383", "photo_flickr_id": "219267725", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43665", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the parking lot was spacey and not very full .", "storylet_id": "218326"}], [{"original_text": "The building was painted white and had several stories.", "album_id": "72157594243355383", "photo_flickr_id": "219273510", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43665", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the building was painted white and had several stories .", "storylet_id": "218327"}], [{"original_text": "We enjoyed the area near the shore.", "album_id": "72157594243355383", "photo_flickr_id": "219286099", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43665", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we enjoyed the area near the shore .", "storylet_id": "218328"}], [{"original_text": "In the helicopter, we were able to take a sky picture.", "album_id": "72157594243355383", "photo_flickr_id": "219306034", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43665", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the helicopter , we were able to take a sky picture .", "storylet_id": "218329"}], [{"original_text": "My name is Ricky NahMean. I am lonely.", "album_id": "72157594243355383", "photo_flickr_id": "219264406", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "43666", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my name is [male] nahmean . i am lonely .", "storylet_id": "218330"}], [{"original_text": "I use to go out with my homies to the trains.", "album_id": "72157594243355383", "photo_flickr_id": "219291392", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "43666", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i use to go out with my homies to the trains .", "storylet_id": "218331"}], [{"original_text": "Until one day I walked into a little house by mistake and was never the same.", "album_id": "72157594243355383", "photo_flickr_id": "219288543", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "43666", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "until one day i walked into a little house by mistake and was never the same .", "storylet_id": "218332"}], [{"original_text": "I am now allergic to spoken words. I cant go to social events anymore without dying.", "album_id": "72157594243355383", "photo_flickr_id": "219281768", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "43666", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i am now allergic to spoken words . i cant go to social events anymore without dying .", "storylet_id": "218333"}], [{"original_text": "The thing I missed the most is old ladies saying I am handsome.", "album_id": "72157594243355383", "photo_flickr_id": "219275095", "setting": "first-2-pick-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "43666", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the thing i missed the most is old ladies saying i am handsome .", "storylet_id": "218334"}], [{"original_text": "Our vacation started with a trip to the beach.", "album_id": "72157594243355383", "photo_flickr_id": "219264406", "setting": "last-3-pick-old-and-tell", "worker_id": "949ZD6150ZBF4XZ", "story_id": "43667", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our vacation started with a trip to the beach .", "storylet_id": "218335"}], [{"original_text": "We then explored the city and saw some amazing architecture.", "album_id": "72157594243355383", "photo_flickr_id": "219267725", "setting": "last-3-pick-old-and-tell", "worker_id": "949ZD6150ZBF4XZ", "story_id": "43667", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we then explored the city and saw some amazing architecture .", "storylet_id": "218336"}], [{"original_text": "We even got to visit some historical landmarks.", "album_id": "72157594243355383", "photo_flickr_id": "219273510", "setting": "last-3-pick-old-and-tell", "worker_id": "949ZD6150ZBF4XZ", "story_id": "43667", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even got to visit some historical landmarks .", "storylet_id": "218337"}], [{"original_text": "We were drawn back to the ocean where we stood under a pier.", "album_id": "72157594243355383", "photo_flickr_id": "219286099", "setting": "last-3-pick-old-and-tell", "worker_id": "949ZD6150ZBF4XZ", "story_id": "43667", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were drawn back to the ocean where we stood under a pier .", "storylet_id": "218338"}], [{"original_text": "The last day of our vacation was spent touring the city's residential area.", "album_id": "72157594243355383", "photo_flickr_id": "219306034", "setting": "last-3-pick-old-and-tell", "worker_id": "949ZD6150ZBF4XZ", "story_id": "43667", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last day of our vacation was spent touring the city 's residential area .", "storylet_id": "218339"}], [{"original_text": "I could sit here and watch the beach all day.", "album_id": "72157594243355383", "photo_flickr_id": "219264406", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43668", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i could sit here and watch the beach all day .", "storylet_id": "218340"}], [{"original_text": "Taking the scenic railway ride.", "album_id": "72157594243355383", "photo_flickr_id": "219291392", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43668", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "taking the scenic railway ride .", "storylet_id": "218341"}], [{"original_text": "How interesting these buildings are.", "album_id": "72157594243355383", "photo_flickr_id": "219288543", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43668", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "how interesting these buildings are .", "storylet_id": "218342"}], [{"original_text": "Fishing by the breakers.", "album_id": "72157594243355383", "photo_flickr_id": "219281768", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43668", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fishing by the breakers .", "storylet_id": "218343"}], [{"original_text": "This place is packed during the summer. We get to see it not so full.", "album_id": "72157594243355383", "photo_flickr_id": "219275095", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43668", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this place is packed during the summer . we get to see it not so full .", "storylet_id": "218344"}], [{"original_text": "The tourists started there day by taking a walk.", "album_id": "72157594243355383", "photo_flickr_id": "219264406", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43669", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tourists started there day by taking a walk .", "storylet_id": "218345"}], [{"original_text": "Then they took the train sight seeing.", "album_id": "72157594243355383", "photo_flickr_id": "219291392", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43669", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then they took the train sight seeing .", "storylet_id": "218346"}], [{"original_text": "They saw some incredible old buildings.", "album_id": "72157594243355383", "photo_flickr_id": "219288543", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43669", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they saw some incredible old buildings .", "storylet_id": "218347"}], [{"original_text": "Then they saw a small pier.", "album_id": "72157594243355383", "photo_flickr_id": "219281768", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43669", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they saw a small pier .", "storylet_id": "218348"}], [{"original_text": "After that they went downtown to shop.", "album_id": "72157594243355383", "photo_flickr_id": "219275095", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "43669", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that they went downtown to shop .", "storylet_id": "218349"}], [{"original_text": "I went for a walk.", "album_id": "72057594048895602", "photo_flickr_id": "90103994", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43670", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a walk .", "storylet_id": "218350"}], [{"original_text": "I saw this cool building.", "album_id": "72057594048895602", "photo_flickr_id": "87078932", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43670", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw this cool building .", "storylet_id": "218351"}], [{"original_text": "What the heck kind of chairs are those?", "album_id": "72057594048895602", "photo_flickr_id": "128296901", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43670", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what the heck kind of chairs are those ?", "storylet_id": "218352"}], [{"original_text": "This area is a dump.", "album_id": "72057594048895602", "photo_flickr_id": "88003765", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43670", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this area is a dump .", "storylet_id": "218353"}], [{"original_text": "At least there some nice buildings.", "album_id": "72057594048895602", "photo_flickr_id": "85816214", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43670", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at least there some nice buildings .", "storylet_id": "218354"}], [{"original_text": "We went in search of some art work by our favorite muralist today.", "album_id": "72057594048895602", "photo_flickr_id": "90103994", "setting": "first-2-pick-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "43671", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went in search of some art work by our favorite muralist today .", "storylet_id": "218355"}], [{"original_text": "Some of the locations were a little run down and made us nervous.", "album_id": "72057594048895602", "photo_flickr_id": "87070570", "setting": "first-2-pick-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "43671", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the locations were a little run down and made us nervous .", "storylet_id": "218356"}], [{"original_text": "The artwork, on the other hand, was amazing to see first hand.", "album_id": "72057594048895602", "photo_flickr_id": "89989918", "setting": "first-2-pick-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "43671", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the artwork , on the other hand , was amazing to see first hand .", "storylet_id": "218357"}], [{"original_text": "The largest piece was by far my favorite of all his murals", "album_id": "72057594048895602", "photo_flickr_id": "89531822", "setting": "first-2-pick-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "43671", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the largest piece was by far my favorite of all his murals", "storylet_id": "218358"}], [{"original_text": "After seeing all the murals we decided it was time for a lunch break.", "album_id": "72057594048895602", "photo_flickr_id": "89402047", "setting": "first-2-pick-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "43671", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after seeing all the murals we decided it was time for a lunch break .", "storylet_id": "218359"}], [{"original_text": "This neighborhood has changed lots.", "album_id": "72057594048895602", "photo_flickr_id": "90103994", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "43672", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this neighborhood has changed lots .", "storylet_id": "218360"}], [{"original_text": "Some of the buildings look exactly the same.", "album_id": "72057594048895602", "photo_flickr_id": "87070570", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "43672", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the buildings look exactly the same .", "storylet_id": "218361"}], [{"original_text": "There is some cool new artwork on some of the buildings.", "album_id": "72057594048895602", "photo_flickr_id": "89989918", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "43672", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is some cool new artwork on some of the buildings .", "storylet_id": "218362"}], [{"original_text": "Even bigger projects are even under way.", "album_id": "72057594048895602", "photo_flickr_id": "89531822", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "43672", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even bigger projects are even under way .", "storylet_id": "218363"}], [{"original_text": "It is still full of happy people going about their business.", "album_id": "72057594048895602", "photo_flickr_id": "89402047", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "43672", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is still full of happy people going about their business .", "storylet_id": "218364"}], [{"original_text": "I had a great time walking yesterday.", "album_id": "72057594048895602", "photo_flickr_id": "90103994", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43673", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time walking yesterday .", "storylet_id": "218365"}], [{"original_text": "I saw a lot of old run down buildings.", "album_id": "72057594048895602", "photo_flickr_id": "87070570", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43673", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw a lot of old run down buildings .", "storylet_id": "218366"}], [{"original_text": "The artwork was very beautiful.", "album_id": "72057594048895602", "photo_flickr_id": "89989918", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43673", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the artwork was very beautiful .", "storylet_id": "218367"}], [{"original_text": "There was a lot of creative projects.", "album_id": "72057594048895602", "photo_flickr_id": "89531822", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43673", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a lot of creative projects .", "storylet_id": "218368"}], [{"original_text": "Afterward I went to grab something to eat at a restaurant.", "album_id": "72057594048895602", "photo_flickr_id": "89402047", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43673", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward i went to grab something to eat at a restaurant .", "storylet_id": "218369"}], [{"original_text": "New York is a beautiful city. Our family grew up here and it is a piece of my family's heritage.", "album_id": "72057594048895602", "photo_flickr_id": "90103994", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43674", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location location is a beautiful city . our family grew up here and it is a piece of my family 's heritage .", "storylet_id": "218370"}], [{"original_text": "The city speaks to me and the nearby buildings are filled with energy. New York is the city that never sleeps.", "album_id": "72057594048895602", "photo_flickr_id": "87078932", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43674", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city speaks to me and the nearby buildings are filled with energy . location location is the city that never sleeps .", "storylet_id": "218371"}], [{"original_text": "We weren't very rich growing up, but our family came first. We were always happy as long as we had our family.", "album_id": "72057594048895602", "photo_flickr_id": "128296901", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43674", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were n't very rich growing up , but our family came first . we were always happy as long as we had our family .", "storylet_id": "218372"}], [{"original_text": "The streets of New York will always be a place I remember in my heart for the rest of my life.", "album_id": "72057594048895602", "photo_flickr_id": "88003765", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43674", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the streets of location location will always be a place i remember in my heart for the rest of my life .", "storylet_id": "218373"}], [{"original_text": "I've gone up in life but I never forget where I'm from in the streets of New York City.", "album_id": "72057594048895602", "photo_flickr_id": "85816214", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43674", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 've gone up in life but i never forget where i 'm from in the streets of location location location .", "storylet_id": "218374"}], [{"original_text": "Today was a beach day.", "album_id": "72157628963057265", "photo_flickr_id": "6734700521", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43675", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was a beach day .", "storylet_id": "218375"}], [{"original_text": "I climbed some cliffs.", "album_id": "72157628963057265", "photo_flickr_id": "6734705307", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43675", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i climbed some cliffs .", "storylet_id": "218376"}], [{"original_text": "Took some photos of the cliffs.", "album_id": "72157628963057265", "photo_flickr_id": "6734716593", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43675", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "took some photos of the cliffs .", "storylet_id": "218377"}], [{"original_text": "Then I went back to town.", "album_id": "72157628963057265", "photo_flickr_id": "6734721995", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43675", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then i went back to town .", "storylet_id": "218378"}], [{"original_text": "I was right on target.", "album_id": "72157628963057265", "photo_flickr_id": "6734792919", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43675", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was right on target .", "storylet_id": "218379"}], [{"original_text": "We went on vacation last weekend.", "album_id": "72157628963057265", "photo_flickr_id": "6734710855", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43676", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on vacation last weekend .", "storylet_id": "218380"}], [{"original_text": "We spent a lot of time at the beach even though it was very cloudy most of the time.", "album_id": "72157628963057265", "photo_flickr_id": "6734705307", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43676", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we spent a lot of time at the beach even though it was very cloudy most of the time .", "storylet_id": "218381"}], [{"original_text": "There were a lot of cool buildings in town full of unique shops.", "album_id": "72157628963057265", "photo_flickr_id": "6734748219", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43676", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of cool buildings in town full of unique shops .", "storylet_id": "218382"}], [{"original_text": "They had a strange structure in one of their parks.", "album_id": "72157628963057265", "photo_flickr_id": "6734786863", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43676", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had a strange structure in one of their parks .", "storylet_id": "218383"}], [{"original_text": "It was a great vacation.", "album_id": "72157628963057265", "photo_flickr_id": "6734792919", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43676", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great vacation .", "storylet_id": "218384"}], [{"original_text": "On vacation, we spent a lot of time walking the area near the beach.", "album_id": "72157628963057265", "photo_flickr_id": "6734700521", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43677", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on vacation , we spent a lot of time walking the area near the beach .", "storylet_id": "218385"}], [{"original_text": "The beach stretched for miles and miles.", "album_id": "72157628963057265", "photo_flickr_id": "6734705307", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43677", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the beach stretched for miles and miles .", "storylet_id": "218386"}], [{"original_text": "One day, we went up to the area of the town at the higher elevation to look down at the shore.", "album_id": "72157628963057265", "photo_flickr_id": "6734716593", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43677", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one day , we went up to the area of the town at the higher elevation to look down at the shore .", "storylet_id": "218387"}], [{"original_text": "The shops and overall area here was very clean.", "album_id": "72157628963057265", "photo_flickr_id": "6734721995", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43677", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the shops and overall area here was very clean .", "storylet_id": "218388"}], [{"original_text": "At the top of the mountain was a landing strip and heliport; we left by helicopter to fly to the next island on our last day there.", "album_id": "72157628963057265", "photo_flickr_id": "6734792919", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43677", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the top of the mountain was a landing strip and heliport ; we left by helicopter to fly to the next island on our last day there .", "storylet_id": "218389"}], [{"original_text": "The seaside town we stopped in was very quaint and we enjoyed it despite the overcast weather.", "album_id": "72157628963057265", "photo_flickr_id": "6734700521", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43678", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the seaside town we stopped in was very quaint and we enjoyed it despite the overcast weather .", "storylet_id": "218390"}], [{"original_text": "This beach we saw while overlooking from a cliff looks so peaceful.", "album_id": "72157628963057265", "photo_flickr_id": "6734705307", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43678", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this beach we saw while overlooking from a cliff looks so peaceful .", "storylet_id": "218391"}], [{"original_text": "We found this amazing rock formation along the cliffs near the city.", "album_id": "72157628963057265", "photo_flickr_id": "6734716593", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43678", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we found this amazing rock formation along the cliffs near the city .", "storylet_id": "218392"}], [{"original_text": "The city had many large walkways that we enjoyed.", "album_id": "72157628963057265", "photo_flickr_id": "6734721995", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43678", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the city had many large walkways that we enjoyed .", "storylet_id": "218393"}], [{"original_text": "This bulls-eye was located in one of the parks we encountered during our walk.", "album_id": "72157628963057265", "photo_flickr_id": "6734792919", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "43678", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this bulls-eye was located in one of the parks we encountered during our walk .", "storylet_id": "218394"}], [{"original_text": "They arrived in the quaint seaside town. ", "album_id": "72157628963057265", "photo_flickr_id": "6734700521", "setting": "last-3-pick-old-and-tell", "worker_id": "HN6DJBTLW9WP7VL", "story_id": "43679", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they arrived in the quaint seaside town .", "storylet_id": "218395"}], [{"original_text": "They checked into their hotel which had a lovely view of the beach. ", "album_id": "72157628963057265", "photo_flickr_id": "6734705307", "setting": "last-3-pick-old-and-tell", "worker_id": "HN6DJBTLW9WP7VL", "story_id": "43679", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they checked into their hotel which had a lovely view of the beach .", "storylet_id": "218396"}], [{"original_text": "They explored some nearby ancient ruins, ", "album_id": "72157628963057265", "photo_flickr_id": "6734716593", "setting": "last-3-pick-old-and-tell", "worker_id": "HN6DJBTLW9WP7VL", "story_id": "43679", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they explored some nearby ancient ruins ,", "storylet_id": "218397"}], [{"original_text": "when for a long walk through the town, ", "album_id": "72157628963057265", "photo_flickr_id": "6734721995", "setting": "last-3-pick-old-and-tell", "worker_id": "HN6DJBTLW9WP7VL", "story_id": "43679", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when for a long walk through the town ,", "storylet_id": "218398"}], [{"original_text": "and visited many local tourist attractions. ", "album_id": "72157628963057265", "photo_flickr_id": "6734792919", "setting": "last-3-pick-old-and-tell", "worker_id": "HN6DJBTLW9WP7VL", "story_id": "43679", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and visited many local tourist attractions .", "storylet_id": "218399"}], [{"original_text": "Overlooking the old city, a rainbow hung in the sky.", "album_id": "72157601887425868", "photo_flickr_id": "4176143672", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "43680", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "overlooking the old city , a rainbow hung in the sky .", "storylet_id": "218400"}], [{"original_text": "A journey to the Temple downtown was always peaceful.", "album_id": "72157601887425868", "photo_flickr_id": "4175382161", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "43680", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a journey to the temple downtown was always peaceful .", "storylet_id": "218401"}], [{"original_text": "Adventurous travelers could pick a new route to search often.", "album_id": "72157601887425868", "photo_flickr_id": "4176144348", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "43680", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "adventurous travelers could pick a new route to search often .", "storylet_id": "218402"}], [{"original_text": "One such route led down a secretive path.", "album_id": "72157601887425868", "photo_flickr_id": "75852011", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "43680", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one such route led down a secretive path .", "storylet_id": "218403"}], [{"original_text": "The path led to a Buddhist Temple where old manuscripts were hidden.", "album_id": "72157601887425868", "photo_flickr_id": "4175382991", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "43680", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the path led to a organization organization where old manuscripts were hidden .", "storylet_id": "218404"}], [{"original_text": "A wide arching rainbow extends over the city skyline.", "album_id": "72157601887425868", "photo_flickr_id": "4176143672", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43681", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a wide arching rainbow extends over the city skyline .", "storylet_id": "218405"}], [{"original_text": "The rainbow is still showing its array of colors.", "album_id": "72157601887425868", "photo_flickr_id": "4176143304", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43681", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rainbow is still showing its array of colors .", "storylet_id": "218406"}], [{"original_text": "The clouds have started to move away, but our rainbow is still there.", "album_id": "72157601887425868", "photo_flickr_id": "4175382279", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43681", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the clouds have started to move away , but our rainbow is still there .", "storylet_id": "218407"}], [{"original_text": "A close view shows bands of green, yellow and red highlighting the sky.", "album_id": "72157601887425868", "photo_flickr_id": "75852009", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43681", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a close view shows bands of green , yellow and red highlighting the sky .", "storylet_id": "218408"}], [{"original_text": "Now gone, our city is wrapped around a nice warm day with no more rain.", "album_id": "72157601887425868", "photo_flickr_id": "75852541", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43681", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now gone , our city is wrapped around a nice warm day with no more rain .", "storylet_id": "218409"}], [{"original_text": "Our family took a trip across the ocean last summer. We went to many beautiful cities.", "album_id": "72157601887425868", "photo_flickr_id": "4176143672", "setting": "last-3-pick-old-and-tell", "worker_id": "5STUM5K07Y3JHW7", "story_id": "43682", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family took a trip across the ocean last summer . we went to many beautiful cities .", "storylet_id": "218410"}], [{"original_text": "We enjoyed touring all the old architecture the cities had to offer. ", "album_id": "72157601887425868", "photo_flickr_id": "4175382161", "setting": "last-3-pick-old-and-tell", "worker_id": "5STUM5K07Y3JHW7", "story_id": "43682", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we enjoyed touring all the old architecture the cities had to offer .", "storylet_id": "218411"}], [{"original_text": "There were many interesting things to see, so many things different than our culture at home.", "album_id": "72157601887425868", "photo_flickr_id": "4176144348", "setting": "last-3-pick-old-and-tell", "worker_id": "5STUM5K07Y3JHW7", "story_id": "43682", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many interesting things to see , so many things different than our culture at home .", "storylet_id": "218412"}], [{"original_text": "There were many days that the weather cooperated and we were just able to walk around the town and discover many secret places we wouldn't have known.", "album_id": "72157601887425868", "photo_flickr_id": "75852011", "setting": "last-3-pick-old-and-tell", "worker_id": "5STUM5K07Y3JHW7", "story_id": "43682", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many days that the weather cooperated and we were just able to walk around the town and discover many secret places we would n't have known .", "storylet_id": "218413"}], [{"original_text": "On the last day of our trip we came across a beautiful building that my sister thought would be a wonderful location for her wedding. Looks like we will be coming back next summer. ", "album_id": "72157601887425868", "photo_flickr_id": "4175382991", "setting": "last-3-pick-old-and-tell", "worker_id": "5STUM5K07Y3JHW7", "story_id": "43682", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the last day of our trip we came across a beautiful building that my sister thought would be a wonderful location for her wedding . looks like we will be coming back next summer .", "storylet_id": "218414"}], [{"original_text": "I went on vacation last weekend.", "album_id": "72157601887425868", "photo_flickr_id": "4176143672", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43683", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on vacation last weekend .", "storylet_id": "218415"}], [{"original_text": "The city was beautiful.", "album_id": "72157601887425868", "photo_flickr_id": "4176143304", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43683", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city was beautiful .", "storylet_id": "218416"}], [{"original_text": "There was a rainbow over the city the entire time I was there.", "album_id": "72157601887425868", "photo_flickr_id": "4175382279", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43683", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a rainbow over the city the entire time i was there .", "storylet_id": "218417"}], [{"original_text": "It was amazing.", "album_id": "72157601887425868", "photo_flickr_id": "75852009", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43683", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was amazing .", "storylet_id": "218418"}], [{"original_text": "On the last day it disappeared.", "album_id": "72157601887425868", "photo_flickr_id": "75852541", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43683", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the last day it disappeared .", "storylet_id": "218419"}], [{"original_text": "A rainbow had formed over the vast city. ", "album_id": "72157601887425868", "photo_flickr_id": "4176143672", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43684", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a rainbow had formed over the vast city .", "storylet_id": "218420"}], [{"original_text": "They came upon a temple with a fountain out in front. ", "album_id": "72157601887425868", "photo_flickr_id": "4175382161", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43684", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they came upon a temple with a fountain out in front .", "storylet_id": "218421"}], [{"original_text": "There was an odd sign pointing in different directions. ", "album_id": "72157601887425868", "photo_flickr_id": "4176144348", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43684", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was an odd sign pointing in different directions .", "storylet_id": "218422"}], [{"original_text": "Following one of the signs led them up a cobble stone path to a large building. ", "album_id": "72157601887425868", "photo_flickr_id": "75852011", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43684", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "following one of the signs led them up a cobble stone path to a large building .", "storylet_id": "218423"}], [{"original_text": "They discovered the building had massive front doors. ", "album_id": "72157601887425868", "photo_flickr_id": "4175382991", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43684", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they discovered the building had massive front doors .", "storylet_id": "218424"}], [{"original_text": "The green pastures were open and lush.", "album_id": "72057594114925840", "photo_flickr_id": "133639360", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43685", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the green pastures were open and lush .", "storylet_id": "218425"}], [{"original_text": "The boat arrived on the river bank.", "album_id": "72057594114925840", "photo_flickr_id": "133639504", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43685", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boat arrived on the river bank .", "storylet_id": "218426"}], [{"original_text": "Out our window, we were able to see a very broad amount of land.", "album_id": "72057594114925840", "photo_flickr_id": "133639224", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43685", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "out our window , we were able to see a very broad amount of land .", "storylet_id": "218427"}], [{"original_text": "The river stream was very long.", "album_id": "72057594114925840", "photo_flickr_id": "133639314", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43685", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the river stream was very long .", "storylet_id": "218428"}], [{"original_text": "There were many red roses in the field.", "album_id": "72057594114925840", "photo_flickr_id": "133639651", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43685", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were many red roses in the field .", "storylet_id": "218429"}], [{"original_text": "We decided to take a trip to a local flower farm we heard about.", "album_id": "72057594114925840", "photo_flickr_id": "133639360", "setting": "first-2-pick-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "43686", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to take a trip to a local flower farm we heard about .", "storylet_id": "218430"}], [{"original_text": "Just driving up on it we were already amazed.", "album_id": "72057594114925840", "photo_flickr_id": "133639128", "setting": "first-2-pick-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "43686", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "just driving up on it we were already amazed .", "storylet_id": "218431"}], [{"original_text": "There arrays of colors were so mesmerizing and beautiful.", "album_id": "72057594114925840", "photo_flickr_id": "133639224", "setting": "first-2-pick-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "43686", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there arrays of colors were so mesmerizing and beautiful .", "storylet_id": "218432"}], [{"original_text": "It was hard for us to decide which color we liked the best.", "album_id": "72057594114925840", "photo_flickr_id": "133639651", "setting": "first-2-pick-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "43686", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was hard for us to decide which color we liked the best .", "storylet_id": "218433"}], [{"original_text": "Even the office for the flower farm was gorgeous.", "album_id": "72057594114925840", "photo_flickr_id": "133639854", "setting": "first-2-pick-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "43686", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the office for the flower farm was gorgeous .", "storylet_id": "218434"}], [{"original_text": "I went to the farm last weekend.", "album_id": "72057594114925840", "photo_flickr_id": "133639360", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43687", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the farm last weekend .", "storylet_id": "218435"}], [{"original_text": "The drive was long but I saw a boat in the canal.", "album_id": "72057594114925840", "photo_flickr_id": "133639504", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43687", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the drive was long but i saw a boat in the canal .", "storylet_id": "218436"}], [{"original_text": "There were many flower fields.", "album_id": "72057594114925840", "photo_flickr_id": "133639224", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43687", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many flower fields .", "storylet_id": "218437"}], [{"original_text": "I stopped at one of them.", "album_id": "72057594114925840", "photo_flickr_id": "133639314", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43687", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i stopped at one of them .", "storylet_id": "218438"}], [{"original_text": "I stayed there for an hour picking flowers.", "album_id": "72057594114925840", "photo_flickr_id": "133639651", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43687", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i stayed there for an hour picking flowers .", "storylet_id": "218439"}], [{"original_text": "We went on a drive through the country.", "album_id": "72057594114925840", "photo_flickr_id": "133639360", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "43688", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on a drive through the country .", "storylet_id": "218440"}], [{"original_text": "And saw beautiful flowers.", "album_id": "72057594114925840", "photo_flickr_id": "133639128", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "43688", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and saw beautiful flowers .", "storylet_id": "218441"}], [{"original_text": "And more beautiful flowers.", "album_id": "72057594114925840", "photo_flickr_id": "133639224", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "43688", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and more beautiful flowers .", "storylet_id": "218442"}], [{"original_text": "And even more beautiful flowers!", "album_id": "72057594114925840", "photo_flickr_id": "133639651", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "43688", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and even more beautiful flowers !", "storylet_id": "218443"}], [{"original_text": "Then we got to the big house.", "album_id": "72057594114925840", "photo_flickr_id": "133639854", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "43688", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we got to the big house .", "storylet_id": "218444"}], [{"original_text": "The fields were quite large with an array of plants. ", "album_id": "72057594114925840", "photo_flickr_id": "133639360", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43689", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fields were quite large with an array of plants .", "storylet_id": "218445"}], [{"original_text": "One field had yellow flowers. ", "album_id": "72057594114925840", "photo_flickr_id": "133639128", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43689", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one field had yellow flowers .", "storylet_id": "218446"}], [{"original_text": "Another had purple flowers. ", "album_id": "72057594114925840", "photo_flickr_id": "133639224", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43689", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another had purple flowers .", "storylet_id": "218447"}], [{"original_text": "Then they came upon a field of stunning red flowers. ", "album_id": "72057594114925840", "photo_flickr_id": "133639651", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43689", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they came upon a field of stunning red flowers .", "storylet_id": "218448"}], [{"original_text": "Finally, they came to the old house which was still beautiful despite its age. ", "album_id": "72057594114925840", "photo_flickr_id": "133639854", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43689", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , they came to the old house which was still beautiful despite its age .", "storylet_id": "218449"}], [{"original_text": "The grounds of the Mormon Temple in Salt Lake City were designed for both beauty and contemplation.", "album_id": "1016196", "photo_flickr_id": "46255811", "setting": "first-2-pick-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43690", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the grounds of the location location in location location location were designed for both beauty and contemplation .", "storylet_id": "218450"}], [{"original_text": "The temple itself is imposing and dominates the city skyline.", "album_id": "1016196", "photo_flickr_id": "46256513", "setting": "first-2-pick-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43690", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the temple itself is imposing and dominates the city skyline .", "storylet_id": "218451"}], [{"original_text": "The monuments close follow a similar design scheme.", "album_id": "1016196", "photo_flickr_id": "46268163", "setting": "first-2-pick-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43690", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the monuments close follow a similar design scheme .", "storylet_id": "218452"}], [{"original_text": "While water is used to provide refreshing atmosphere and points to the wealth of the temple in such an arid region.", "album_id": "1016196", "photo_flickr_id": "46419349", "setting": "first-2-pick-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43690", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while water is used to provide refreshing atmosphere and points to the wealth of the temple in such an arid region .", "storylet_id": "218453"}], [{"original_text": "The use of colored flowers also make a contrasting accompaniment to the more plain colored Temple.", "album_id": "1016196", "photo_flickr_id": "46249745", "setting": "first-2-pick-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43690", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the use of colored flowers also make a contrasting accompaniment to the more plain colored temple .", "storylet_id": "218454"}], [{"original_text": "The city is gorgeous and has a back drop of a mountain.", "album_id": "1016196", "photo_flickr_id": "46250579", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43691", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city is gorgeous and has a back drop of a mountain .", "storylet_id": "218455"}], [{"original_text": "There is a man made waterfall in the center of the town.", "album_id": "1016196", "photo_flickr_id": "46254113", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43691", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is a man made waterfall in the center of the town .", "storylet_id": "218456"}], [{"original_text": "A large house is located near the water fall.", "album_id": "1016196", "photo_flickr_id": "46260161", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43691", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a large house is located near the water fall .", "storylet_id": "218457"}], [{"original_text": "The city is full of large building that house some of the most powerful business men.", "album_id": "1016196", "photo_flickr_id": "46267646", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43691", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the city is full of large building that house some of the most powerful business men .", "storylet_id": "218458"}], [{"original_text": "Around the buildings are flower gardens.", "album_id": "1016196", "photo_flickr_id": "46414547", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43691", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "around the buildings are flower gardens .", "storylet_id": "218459"}], [{"original_text": "The family decided to drive to their grandparent's house in Texas.", "album_id": "1016196", "photo_flickr_id": "46250579", "setting": "last-3-pick-old-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "43692", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family decided to drive to their grandparent 's house in location .", "storylet_id": "218460"}], [{"original_text": "On our way to our parents house, we found a building with a streaming fountain.", "album_id": "1016196", "photo_flickr_id": "46254113", "setting": "last-3-pick-old-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "43692", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on our way to our parents house , we found a building with a streaming fountain .", "storylet_id": "218461"}], [{"original_text": "After passing through the city, we stumbled upon a house made out of adobe.", "album_id": "1016196", "photo_flickr_id": "46260161", "setting": "last-3-pick-old-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "43692", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after passing through the city , we stumbled upon a house made out of adobe .", "storylet_id": "218462"}], [{"original_text": "As soon as we arrive to the central of the city, we realized we had been lost. The GPS navigation system sent us the wrong way.", "album_id": "1016196", "photo_flickr_id": "46267646", "setting": "last-3-pick-old-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "43692", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as soon as we arrive to the central of the city , we realized we had been lost . the gps navigation system sent us the wrong way .", "storylet_id": "218463"}], [{"original_text": "Once we found our way back, we decided to pass through a field of beautiful flowers. ", "album_id": "1016196", "photo_flickr_id": "46414547", "setting": "last-3-pick-old-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "43692", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once we found our way back , we decided to pass through a field of beautiful flowers .", "storylet_id": "218464"}], [{"original_text": "Today was sight seeing day at the Gardens.", "album_id": "1016196", "photo_flickr_id": "46255811", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "43693", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was sight seeing day at the location .", "storylet_id": "218465"}], [{"original_text": "This is the initial spot you enter - Although it looks like a castle, it really isn't.", "album_id": "1016196", "photo_flickr_id": "46256513", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "43693", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the initial spot you enter - although it looks like a castle , it really is n't .", "storylet_id": "218466"}], [{"original_text": "This is what they were calling the maul, the water looks still", "album_id": "1016196", "photo_flickr_id": "46268163", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "43693", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is what they were calling the maul , the water looks still", "storylet_id": "218467"}], [{"original_text": "until you get near it, then it looks ripply.", "album_id": "1016196", "photo_flickr_id": "46419349", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "43693", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "until you get near it , then it looks ripply .", "storylet_id": "218468"}], [{"original_text": "This was the entry to the gardens walk path.", "album_id": "1016196", "photo_flickr_id": "46249745", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "43693", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the entry to the gardens walk path .", "storylet_id": "218469"}], [{"original_text": "The building was big", "album_id": "1016196", "photo_flickr_id": "46250579", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43694", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the building was big", "storylet_id": "218470"}], [{"original_text": "and it was raining.", "album_id": "1016196", "photo_flickr_id": "46254113", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43694", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and it was raining .", "storylet_id": "218471"}], [{"original_text": "Nearby at a house it was dry though", "album_id": "1016196", "photo_flickr_id": "46260161", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43694", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nearby at a house it was dry though", "storylet_id": "218472"}], [{"original_text": "and the castle was large", "album_id": "1016196", "photo_flickr_id": "46267646", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43694", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the castle was large", "storylet_id": "218473"}], [{"original_text": "but the flowers were pretty.", "album_id": "1016196", "photo_flickr_id": "46414547", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43694", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the flowers were pretty .", "storylet_id": "218474"}], [{"original_text": "The capital building was really tall.", "album_id": "72057594064205885", "photo_flickr_id": "134967029", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43695", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the capital building was really tall .", "storylet_id": "218475"}], [{"original_text": "We traveled from our home city to visit this town.", "album_id": "72057594064205885", "photo_flickr_id": "112070696", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43695", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we traveled from our home city to visit this town .", "storylet_id": "218476"}], [{"original_text": "The cars on the street were yellow.", "album_id": "72057594064205885", "photo_flickr_id": "135822685", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43695", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cars on the street were yellow .", "storylet_id": "218477"}], [{"original_text": "The ruck in the street was blue.", "album_id": "72057594064205885", "photo_flickr_id": "135292440", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43695", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ruck in the street was blue .", "storylet_id": "218478"}], [{"original_text": "We got back home and rented a movie from this venue.", "album_id": "72057594064205885", "photo_flickr_id": "99898241", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43695", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we got back home and rented a movie from this venue .", "storylet_id": "218479"}], [{"original_text": "I love taking pictures of patterns. Here is a rainbow of shoes.", "album_id": "72057594064205885", "photo_flickr_id": "99756096", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43696", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love taking pictures of patterns . here is a rainbow of shoes .", "storylet_id": "218480"}], [{"original_text": "Neatly folded cloth makes a great lined pattern.", "album_id": "72057594064205885", "photo_flickr_id": "98913622", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43696", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "neatly folded cloth makes a great lined pattern .", "storylet_id": "218481"}], [{"original_text": "The stones on the street make an interesting pattern.", "album_id": "72057594064205885", "photo_flickr_id": "134955453", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43696", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the stones on the street make an interesting pattern .", "storylet_id": "218482"}], [{"original_text": "The patterns of the arches look like candy canes.", "album_id": "72057594064205885", "photo_flickr_id": "135046587", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43696", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the patterns of the arches look like candy canes .", "storylet_id": "218483"}], [{"original_text": "There are patterns and math everywhere you look.", "album_id": "72057594064205885", "photo_flickr_id": "99178678", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43696", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are patterns and math everywhere you look .", "storylet_id": "218484"}], [{"original_text": "Our first place we visited was a mosque.", "album_id": "72057594064205885", "photo_flickr_id": "134967029", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "43697", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our first place we visited was a mosque .", "storylet_id": "218485"}], [{"original_text": "I had never seen architecture like they have here.", "album_id": "72057594064205885", "photo_flickr_id": "112070696", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "43697", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had never seen architecture like they have here .", "storylet_id": "218486"}], [{"original_text": "The streets were crowded and very busy.", "album_id": "72057594064205885", "photo_flickr_id": "135822685", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "43697", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the streets were crowded and very busy .", "storylet_id": "218487"}], [{"original_text": "It seemed like people were always in a hurry.", "album_id": "72057594064205885", "photo_flickr_id": "135292440", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "43697", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it seemed like people were always in a hurry .", "storylet_id": "218488"}], [{"original_text": "At night billboards lit up the streets.", "album_id": "72057594064205885", "photo_flickr_id": "99898241", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "43697", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night billboards lit up the streets .", "storylet_id": "218489"}], [{"original_text": "There were a lot of unique shops when I was on vacation.", "album_id": "72057594064205885", "photo_flickr_id": "99756096", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43698", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of unique shops when i was on vacation .", "storylet_id": "218490"}], [{"original_text": "They sold so many hand made things.", "album_id": "72057594064205885", "photo_flickr_id": "98913622", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43698", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they sold so many hand made things .", "storylet_id": "218491"}], [{"original_text": "I bought a lot of them.", "album_id": "72057594064205885", "photo_flickr_id": "134955453", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43698", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i bought a lot of them .", "storylet_id": "218492"}], [{"original_text": "The buildings were all very nice.", "album_id": "72057594064205885", "photo_flickr_id": "135046587", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43698", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the buildings were all very nice .", "storylet_id": "218493"}], [{"original_text": "I hope I can go back soon.", "album_id": "72057594064205885", "photo_flickr_id": "99178678", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43698", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope i can go back soon .", "storylet_id": "218494"}], [{"original_text": "Brian's preferred method of art was drawing.", "album_id": "72057594064205885", "photo_flickr_id": "134967029", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43699", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] 's preferred method of art was drawing .", "storylet_id": "218495"}], [{"original_text": "He loved drawing buildings,", "album_id": "72057594064205885", "photo_flickr_id": "112070696", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43699", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he loved drawing buildings ,", "storylet_id": "218496"}], [{"original_text": "people,", "album_id": "72057594064205885", "photo_flickr_id": "135822685", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43699", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people ,", "storylet_id": "218497"}], [{"original_text": "and cars.", "album_id": "72057594064205885", "photo_flickr_id": "135292440", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43699", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and cars .", "storylet_id": "218498"}], [{"original_text": "He hoped that one day his artwork would be displayed at the Metro for all to see.", "album_id": "72057594064205885", "photo_flickr_id": "99898241", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43699", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he hoped that one day his artwork would be displayed at the location for all to see .", "storylet_id": "218499"}], [{"original_text": "The cottage had a very interesting roof.", "album_id": "1439397", "photo_flickr_id": "66720221", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "43700", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cottage had a very interesting roof .", "storylet_id": "218500"}], [{"original_text": "I liked to look through the windows.", "album_id": "1439397", "photo_flickr_id": "66720238", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "43700", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i liked to look through the windows .", "storylet_id": "218501"}], [{"original_text": "The trees were changing pretty colors in the fall.", "album_id": "1439397", "photo_flickr_id": "66720250", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "43700", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the trees were changing pretty colors in the fall .", "storylet_id": "218502"}], [{"original_text": "The view from the door was interesting.", "album_id": "1439397", "photo_flickr_id": "66720277", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "43700", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view from the door was interesting .", "storylet_id": "218503"}], [{"original_text": "The scare crows scared and and the birds!", "album_id": "1439397", "photo_flickr_id": "66720312", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "43700", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the scare crows scared and and the birds !", "storylet_id": "218504"}], [{"original_text": "We were so excited to be going on vacation in China. ", "album_id": "1439397", "photo_flickr_id": "66720221", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43701", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were so excited to be going on vacation in location .", "storylet_id": "218505"}], [{"original_text": "When we arrived we drove to our village and admired the scenery.", "album_id": "1439397", "photo_flickr_id": "66720230", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43701", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we arrived we drove to our village and admired the scenery .", "storylet_id": "218506"}], [{"original_text": "We found our lodging and decided we should explore before it got dark. ", "album_id": "1439397", "photo_flickr_id": "66720250", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43701", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we found our lodging and decided we should explore before it got dark .", "storylet_id": "218507"}], [{"original_text": "We traveled along a path through the village and looked in awe at the beauty of our surroundings.", "album_id": "1439397", "photo_flickr_id": "66720292", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43701", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we traveled along a path through the village and looked in awe at the beauty of our surroundings .", "storylet_id": "218508"}], [{"original_text": "China is a unique location to visit, the village we stayed at was amazing. I can't wait to return again next year. ", "album_id": "1439397", "photo_flickr_id": "66720257", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43701", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "location is a unique location to visit , the village we stayed at was amazing . i ca n't wait to return again next year .", "storylet_id": "218509"}], [{"original_text": "I had a great time on vacation last week.", "album_id": "1439397", "photo_flickr_id": "66720221", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43702", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time on vacation last week .", "storylet_id": "218510"}], [{"original_text": "I stayed in a traditional hut.", "album_id": "1439397", "photo_flickr_id": "66720238", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43702", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i stayed in a traditional hut .", "storylet_id": "218511"}], [{"original_text": "It was a beautiful location.", "album_id": "1439397", "photo_flickr_id": "66720250", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43702", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a beautiful location .", "storylet_id": "218512"}], [{"original_text": "The place was very clean for being outdoors.", "album_id": "1439397", "photo_flickr_id": "66720277", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43702", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the place was very clean for being outdoors .", "storylet_id": "218513"}], [{"original_text": "I had a lot of projects to do while I was there.", "album_id": "1439397", "photo_flickr_id": "66720312", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43702", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a lot of projects to do while i was there .", "storylet_id": "218514"}], [{"original_text": "I went on an island vacation and stayed at a bungalow.", "album_id": "1439397", "photo_flickr_id": "66720221", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43703", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on an island vacation and stayed at a bungalow .", "storylet_id": "218515"}], [{"original_text": "Here is another view of my room.", "album_id": "1439397", "photo_flickr_id": "66720238", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43703", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is another view of my room .", "storylet_id": "218516"}], [{"original_text": "It looks quite pretty through these red and yellow leaves.", "album_id": "1439397", "photo_flickr_id": "66720250", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43703", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it looks quite pretty through these red and yellow leaves .", "storylet_id": "218517"}], [{"original_text": "Here is the view outside the back door.", "album_id": "1439397", "photo_flickr_id": "66720277", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43703", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is the view outside the back door .", "storylet_id": "218518"}], [{"original_text": "There were some scary decorations here but they made for a great photo.", "album_id": "1439397", "photo_flickr_id": "66720312", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43703", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were some scary decorations here but they made for a great photo .", "storylet_id": "218519"}], [{"original_text": "Our trip here was an eye opener to how different the world really is. ", "album_id": "1439397", "photo_flickr_id": "66720221", "setting": "last-3-pick-old-and-tell", "worker_id": "CINN1TZE62TN8M9", "story_id": "43704", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip here was an eye opener to how different the world really is .", "storylet_id": "218520"}], [{"original_text": "The buildings had thatched roofs and dirt floors. ", "album_id": "1439397", "photo_flickr_id": "66720238", "setting": "last-3-pick-old-and-tell", "worker_id": "CINN1TZE62TN8M9", "story_id": "43704", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the buildings had thatched roofs and dirt floors .", "storylet_id": "218521"}], [{"original_text": "The trees were beautiful now because of the fall colors.", "album_id": "1439397", "photo_flickr_id": "66720250", "setting": "last-3-pick-old-and-tell", "worker_id": "CINN1TZE62TN8M9", "story_id": "43704", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the trees were beautiful now because of the fall colors .", "storylet_id": "218522"}], [{"original_text": "Looking out the doors of some of these house were so peaceful.", "album_id": "1439397", "photo_flickr_id": "66720277", "setting": "last-3-pick-old-and-tell", "worker_id": "CINN1TZE62TN8M9", "story_id": "43704", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "looking out the doors of some of these house were so peaceful .", "storylet_id": "218523"}], [{"original_text": "We all started to head out to our next destination at the end of a beautiful day. ", "album_id": "1439397", "photo_flickr_id": "66720312", "setting": "last-3-pick-old-and-tell", "worker_id": "CINN1TZE62TN8M9", "story_id": "43704", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all started to head out to our next destination at the end of a beautiful day .", "storylet_id": "218524"}], [{"original_text": "We were very excited to be traveling to Mexico for the summer.", "album_id": "72057594092966449", "photo_flickr_id": "119498308", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43705", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were very excited to be traveling to location for the summer .", "storylet_id": "218525"}], [{"original_text": "We decided to visit an abandoned farm to explore. ", "album_id": "72057594092966449", "photo_flickr_id": "119470039", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43705", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided to visit an abandoned farm to explore .", "storylet_id": "218526"}], [{"original_text": "The scenery was stunning but the farm was in ruins.", "album_id": "72057594092966449", "photo_flickr_id": "119490135", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43705", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the scenery was stunning but the farm was in ruins .", "storylet_id": "218527"}], [{"original_text": "We saw a lone cow sitting in the field and decided not to bother it.", "album_id": "72057594092966449", "photo_flickr_id": "119495291", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43705", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw a lone cow sitting in the field and decided not to bother it .", "storylet_id": "218528"}], [{"original_text": "We spent the entire day wandering around the acres of farmland in Mexico. It was an amazing part of our trip to Mexico. ", "album_id": "72057594092966449", "photo_flickr_id": "119501230", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43705", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we spent the entire day wandering around the acres of farmland in location . it was an amazing part of our trip to location .", "storylet_id": "218529"}], [{"original_text": "Old building rusty and in bad shape with roof falling in", "album_id": "72057594092966449", "photo_flickr_id": "119470039", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43706", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "old building rusty and in bad shape with roof falling in", "storylet_id": "218530"}], [{"original_text": "Looking at the barn from a distance looks old and down", "album_id": "72057594092966449", "photo_flickr_id": "119490135", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43706", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "looking at the barn from a distance looks old and down", "storylet_id": "218531"}], [{"original_text": "And on the side kind of torn real bad", "album_id": "72057594092966449", "photo_flickr_id": "119495743", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43706", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and on the side kind of torn real bad", "storylet_id": "218532"}], [{"original_text": "The old barn is made of wood and tin", "album_id": "72057594092966449", "photo_flickr_id": "119496398", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43706", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the old barn is made of wood and tin", "storylet_id": "218533"}], [{"original_text": "Barn can be repaired and fixed up but going to take some time", "album_id": "72057594092966449", "photo_flickr_id": "119497050", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43706", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "barn can be repaired and fixed up but going to take some time", "storylet_id": "218534"}], [{"original_text": "This is my families farm in the desert.", "album_id": "72057594092966449", "photo_flickr_id": "119498308", "setting": "last-3-pick-old-and-tell", "worker_id": "64SFHDLEV8ZT65D", "story_id": "43707", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my families farm in the desert .", "storylet_id": "218535"}], [{"original_text": "Its not in the best shape but its home.", "album_id": "72057594092966449", "photo_flickr_id": "119470039", "setting": "last-3-pick-old-and-tell", "worker_id": "64SFHDLEV8ZT65D", "story_id": "43707", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "its not in the best shape but its home .", "storylet_id": "218536"}], [{"original_text": "The whole place could use a fair bit of work.", "album_id": "72057594092966449", "photo_flickr_id": "119490135", "setting": "last-3-pick-old-and-tell", "worker_id": "64SFHDLEV8ZT65D", "story_id": "43707", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the whole place could use a fair bit of work .", "storylet_id": "218537"}], [{"original_text": "But atleast the animals are happy.", "album_id": "72057594092966449", "photo_flickr_id": "119495291", "setting": "last-3-pick-old-and-tell", "worker_id": "64SFHDLEV8ZT65D", "story_id": "43707", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but atleast the animals are happy .", "storylet_id": "218538"}], [{"original_text": "And not all of its so bad, its quite scenic really.", "album_id": "72057594092966449", "photo_flickr_id": "119501230", "setting": "last-3-pick-old-and-tell", "worker_id": "64SFHDLEV8ZT65D", "story_id": "43707", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and not all of its so bad , its quite scenic really .", "storylet_id": "218539"}], [{"original_text": "I went to help my family out on the farm today.", "album_id": "72057594092966449", "photo_flickr_id": "119470039", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43708", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to help my family out on the farm today .", "storylet_id": "218540"}], [{"original_text": "There was a lot of work that needed to be done.", "album_id": "72057594092966449", "photo_flickr_id": "119490135", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43708", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of work that needed to be done .", "storylet_id": "218541"}], [{"original_text": "We had to repair most of the buildings.", "album_id": "72057594092966449", "photo_flickr_id": "119495743", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43708", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had to repair most of the buildings .", "storylet_id": "218542"}], [{"original_text": "We had to gather all new wood.", "album_id": "72057594092966449", "photo_flickr_id": "119496398", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43708", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had to gather all new wood .", "storylet_id": "218543"}], [{"original_text": "Everything needed cleaning.", "album_id": "72057594092966449", "photo_flickr_id": "119497050", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43708", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everything needed cleaning .", "storylet_id": "218544"}], [{"original_text": "I visited the city I grew up in and a lot has changed.", "album_id": "72057594092966449", "photo_flickr_id": "119498308", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43709", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i visited the city i grew up in and a lot has changed .", "storylet_id": "218545"}], [{"original_text": "A house that used to have a family of eight was in the late stages of decay.", "album_id": "72057594092966449", "photo_flickr_id": "119470039", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43709", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a house that used to have a family of eight was in the late stages of decay .", "storylet_id": "218546"}], [{"original_text": "My neighbor's house looked like it was abandoned long ago.", "album_id": "72057594092966449", "photo_flickr_id": "119490135", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43709", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my neighbor 's house looked like it was abandoned long ago .", "storylet_id": "218547"}], [{"original_text": "A single steer sits in the dead grass.", "album_id": "72057594092966449", "photo_flickr_id": "119495291", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43709", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a single steer sits in the dead grass .", "storylet_id": "218548"}], [{"original_text": "I saw an old fence I used to sit on before left.", "album_id": "72057594092966449", "photo_flickr_id": "119501230", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43709", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i saw an old fence i used to sit on before left .", "storylet_id": "218549"}], [{"original_text": "Today was the day.", "album_id": "1032916", "photo_flickr_id": "47385715", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43710", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day .", "storylet_id": "218550"}], [{"original_text": "Everyone was there.", "album_id": "1032916", "photo_flickr_id": "47385750", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43710", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was there .", "storylet_id": "218551"}], [{"original_text": "Including us!", "album_id": "1032916", "photo_flickr_id": "47385755", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43710", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "including us !", "storylet_id": "218552"}], [{"original_text": "We ate lots of food.", "album_id": "1032916", "photo_flickr_id": "47385878", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43710", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we ate lots of food .", "storylet_id": "218553"}], [{"original_text": "And danced too!", "album_id": "1032916", "photo_flickr_id": "47385889", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43710", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and danced too !", "storylet_id": "218554"}], [{"original_text": "I had a great time in downtown today.", "album_id": "1032916", "photo_flickr_id": "47385738", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43711", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time in downtown today .", "storylet_id": "218555"}], [{"original_text": "There were a lot of people walking around.", "album_id": "1032916", "photo_flickr_id": "47385750", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43711", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people walking around .", "storylet_id": "218556"}], [{"original_text": "I stopped by a restaurant to see my friends.", "album_id": "1032916", "photo_flickr_id": "47385795", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43711", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i stopped by a restaurant to see my friends .", "storylet_id": "218557"}], [{"original_text": "Afterward we went on a bike ride.", "album_id": "1032916", "photo_flickr_id": "47385808", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43711", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we went on a bike ride .", "storylet_id": "218558"}], [{"original_text": "It was a lot of fun.", "album_id": "1032916", "photo_flickr_id": "47385830", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43711", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a lot of fun .", "storylet_id": "218559"}], [{"original_text": "My family and I decided to take a trip into the quaint city.", "album_id": "1032916", "photo_flickr_id": "47385715", "setting": "last-3-pick-old-and-tell", "worker_id": "F9N6MMPV2D6ZS0A", "story_id": "43712", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family and i decided to take a trip into the quaint city .", "storylet_id": "218560"}], [{"original_text": "We walked around and enjoyed the many different markets.", "album_id": "1032916", "photo_flickr_id": "47385750", "setting": "last-3-pick-old-and-tell", "worker_id": "F9N6MMPV2D6ZS0A", "story_id": "43712", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we walked around and enjoyed the many different markets .", "storylet_id": "218561"}], [{"original_text": "We were having a great time seeing a city much different from our own.", "album_id": "1032916", "photo_flickr_id": "47385755", "setting": "last-3-pick-old-and-tell", "worker_id": "F9N6MMPV2D6ZS0A", "story_id": "43712", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were having a great time seeing a city much different from our own .", "storylet_id": "218562"}], [{"original_text": "The bread market was my favorite and the rolls were delicious!", "album_id": "1032916", "photo_flickr_id": "47385878", "setting": "last-3-pick-old-and-tell", "worker_id": "F9N6MMPV2D6ZS0A", "story_id": "43712", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bread market was my favorite and the rolls were delicious !", "storylet_id": "218563"}], [{"original_text": "I posed in front of my favorite market.", "album_id": "1032916", "photo_flickr_id": "47385889", "setting": "last-3-pick-old-and-tell", "worker_id": "F9N6MMPV2D6ZS0A", "story_id": "43712", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i posed in front of my favorite market .", "storylet_id": "218564"}], [{"original_text": "We had arrived in Paris for the first time...", "album_id": "1032916", "photo_flickr_id": "47385715", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43713", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had arrived in location for the first time ...", "storylet_id": "218565"}], [{"original_text": "We immediately hit the streets and were excited.", "album_id": "1032916", "photo_flickr_id": "47385750", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43713", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we immediately hit the streets and were excited .", "storylet_id": "218566"}], [{"original_text": "It was all smiles for the family...", "album_id": "1032916", "photo_flickr_id": "47385755", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43713", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was all smiles for the family ...", "storylet_id": "218567"}], [{"original_text": "Because they had finally reached the bakery", "album_id": "1032916", "photo_flickr_id": "47385878", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43713", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "because they had finally reached the bakery", "storylet_id": "218568"}], [{"original_text": "And, you can tell that Sam was ecstatic for the pastries!", "album_id": "1032916", "photo_flickr_id": "47385889", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43713", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , you can tell that [male] was ecstatic for the pastries !", "storylet_id": "218569"}], [{"original_text": "Jim is visiting from Portland and wants to experience the city.", "album_id": "1032916", "photo_flickr_id": "47385738", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43714", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is visiting from location and wants to experience the city .", "storylet_id": "218570"}], [{"original_text": "They decide to go visit China town and do a little shopping.", "album_id": "1032916", "photo_flickr_id": "47385750", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43714", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they decide to go visit location town and do a little shopping .", "storylet_id": "218571"}], [{"original_text": "While shopping they realize how hungry they are and hit a diner.", "album_id": "1032916", "photo_flickr_id": "47385795", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43714", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "while shopping they realize how hungry they are and hit a diner .", "storylet_id": "218572"}], [{"original_text": "Meg confesses that she has had a crush on Jim for many years.", "album_id": "1032916", "photo_flickr_id": "47385808", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43714", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "meg confesses that she has had a crush on [male] for many years .", "storylet_id": "218573"}], [{"original_text": "They decide to go on a romantic date by riding bikes along the pier.", "album_id": "1032916", "photo_flickr_id": "47385830", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43714", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they decide to go on a romantic date by riding bikes along the pier .", "storylet_id": "218574"}], [{"original_text": "The view of the canal alone was worth the trip.", "album_id": "72157594303148181", "photo_flickr_id": "254790222", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43715", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the view of the canal alone was worth the trip .", "storylet_id": "218575"}], [{"original_text": "The architecture was spellbinding.", "album_id": "72157594303148181", "photo_flickr_id": "254790316", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43715", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the architecture was spellbinding .", "storylet_id": "218576"}], [{"original_text": "We've never seen buildings so old.", "album_id": "72157594303148181", "photo_flickr_id": "254790431", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43715", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we 've never seen buildings so old .", "storylet_id": "218577"}], [{"original_text": "The streets were lit up and lively. ", "album_id": "72157594303148181", "photo_flickr_id": "254790464", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43715", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the streets were lit up and lively .", "storylet_id": "218578"}], [{"original_text": "This old castle was our last stop before leaving. ", "album_id": "72157594303148181", "photo_flickr_id": "254790769", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43715", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this old castle was our last stop before leaving .", "storylet_id": "218579"}], [{"original_text": "Venice is the place to be! The boats take you all over.", "album_id": "72157594303148181", "photo_flickr_id": "254790222", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43716", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location is the place to be ! the boats take you all over .", "storylet_id": "218580"}], [{"original_text": "The buildings are exquisite.", "album_id": "72157594303148181", "photo_flickr_id": "254790334", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43716", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the buildings are exquisite .", "storylet_id": "218581"}], [{"original_text": "Here is an enormous spider web.", "album_id": "72157594303148181", "photo_flickr_id": "254790727", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43716", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is an enormous spider web .", "storylet_id": "218582"}], [{"original_text": "Check out the mermaid I got to see.", "album_id": "72157594303148181", "photo_flickr_id": "254790754", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43716", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "check out the mermaid i got to see .", "storylet_id": "218583"}], [{"original_text": "Here is a castle. Venice has so many great sights to see.", "album_id": "72157594303148181", "photo_flickr_id": "254790769", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43716", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is a castle . location has so many great sights to see .", "storylet_id": "218584"}], [{"original_text": "The city on the water", "album_id": "72157594303148181", "photo_flickr_id": "254790222", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43717", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city on the water", "storylet_id": "218585"}], [{"original_text": "is a sight to see.", "album_id": "72157594303148181", "photo_flickr_id": "254790316", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43717", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "is a sight to see .", "storylet_id": "218586"}], [{"original_text": "It's got such beautiful architecture,", "album_id": "72157594303148181", "photo_flickr_id": "254790431", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43717", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's got such beautiful architecture ,", "storylet_id": "218587"}], [{"original_text": "and people everywhere.", "album_id": "72157594303148181", "photo_flickr_id": "254790464", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43717", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and people everywhere .", "storylet_id": "218588"}], [{"original_text": "Everyone should go at least once. ", "album_id": "72157594303148181", "photo_flickr_id": "254790769", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43717", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone should go at least once .", "storylet_id": "218589"}], [{"original_text": "A tour of the city is something that many people opt for.", "album_id": "72157594303148181", "photo_flickr_id": "254790222", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43718", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a tour of the city is something that many people opt for .", "storylet_id": "218590"}], [{"original_text": "With their large Victorian like look they are breathtaking.", "album_id": "72157594303148181", "photo_flickr_id": "254790334", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43718", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "with their large victorian like look they are breathtaking .", "storylet_id": "218591"}], [{"original_text": "A sculpture outside resembling a spider web is captivating to many.", "album_id": "72157594303148181", "photo_flickr_id": "254790727", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43718", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a sculpture outside resembling a spider web is captivating to many .", "storylet_id": "218592"}], [{"original_text": "A statue stands motionless on the outside.", "album_id": "72157594303148181", "photo_flickr_id": "254790754", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43718", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a statue stands motionless on the outside .", "storylet_id": "218593"}], [{"original_text": "Finally the last part of the tour involves a building that looks just like a castle.", "album_id": "72157594303148181", "photo_flickr_id": "254790769", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "43718", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the last part of the tour involves a building that looks just like a castle .", "storylet_id": "218594"}], [{"original_text": "I took a trip to Venice.", "album_id": "72157594303148181", "photo_flickr_id": "254790222", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43719", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a trip to location .", "storylet_id": "218595"}], [{"original_text": "There was more to see even away from the canals.", "album_id": "72157594303148181", "photo_flickr_id": "254790316", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43719", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was more to see even away from the canals .", "storylet_id": "218596"}], [{"original_text": "I found this church to be really nice but I did not get to go inside.", "album_id": "72157594303148181", "photo_flickr_id": "254790431", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43719", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i found this church to be really nice but i did not get to go inside .", "storylet_id": "218597"}], [{"original_text": "I took a stroll along the canal every day.", "album_id": "72157594303148181", "photo_flickr_id": "254790464", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43719", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i took a stroll along the canal every day .", "storylet_id": "218598"}], [{"original_text": "Here is another picture of a church, or perhaps it was a castle. Anyway it was gorgeous.", "album_id": "72157594303148181", "photo_flickr_id": "254790769", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43719", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is another picture of a church , or perhaps it was a castle . anyway it was gorgeous .", "storylet_id": "218599"}], [{"original_text": "\"We made it, we're at the Grand Canyon!\"", "album_id": "72157594252899464", "photo_flickr_id": "136775305", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43720", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "`` we made it , we 're at the grand canyon ! ''", "storylet_id": "218600"}], [{"original_text": "We all took pictures and savored the moment. ", "album_id": "72157594252899464", "photo_flickr_id": "136775837", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43720", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all took pictures and savored the moment .", "storylet_id": "218601"}], [{"original_text": "Except Alex, he really wanted the best view.", "album_id": "72157594252899464", "photo_flickr_id": "136779120", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43720", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "except [male] , he really wanted the best view .", "storylet_id": "218602"}], [{"original_text": "Timmy and Tom begged him to come back; however, he was enjoying the view.", "album_id": "72157594252899464", "photo_flickr_id": "136779296", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43720", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and [male] begged him to come back ; however , he was enjoying the view .", "storylet_id": "218603"}], [{"original_text": "Finally, we got him out and into the gift shop! What a trip!", "album_id": "72157594252899464", "photo_flickr_id": "136781292", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43720", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , we got him out and into the gift shop ! what a trip !", "storylet_id": "218604"}], [{"original_text": "The outside setting was vast and immaculate.", "album_id": "72157594252899464", "photo_flickr_id": "136775837", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43721", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the outside setting was vast and immaculate .", "storylet_id": "218605"}], [{"original_text": "The rocks were grand and massive.", "album_id": "72157594252899464", "photo_flickr_id": "136776597", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43721", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rocks were grand and massive .", "storylet_id": "218606"}], [{"original_text": "We used the historical guide to understand what we were seeing.", "album_id": "72157594252899464", "photo_flickr_id": "136778292", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43721", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we used the historical guide to understand what we were seeing .", "storylet_id": "218607"}], [{"original_text": "There was a long trail through the forest to the deli.", "album_id": "72157594252899464", "photo_flickr_id": "136778626", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43721", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a long trail through the forest to the deli .", "storylet_id": "218608"}], [{"original_text": "When we got to the deli, we ate for an hour.", "album_id": "72157594252899464", "photo_flickr_id": "134707006", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43721", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we got to the deli , we ate for an hour .", "storylet_id": "218609"}], [{"original_text": "We went to go sight seeing while on vacation.", "album_id": "72157594252899464", "photo_flickr_id": "136775837", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43722", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to go sight seeing while on vacation .", "storylet_id": "218610"}], [{"original_text": "We got to a peak were the view was awesome.", "album_id": "72157594252899464", "photo_flickr_id": "136776597", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43722", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to a peak were the view was awesome .", "storylet_id": "218611"}], [{"original_text": "They had signs that gave us the history of the sight. ", "album_id": "72157594252899464", "photo_flickr_id": "136778292", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43722", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had signs that gave us the history of the sight .", "storylet_id": "218612"}], [{"original_text": "We walked for miles.", "album_id": "72157594252899464", "photo_flickr_id": "136778626", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43722", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we walked for miles .", "storylet_id": "218613"}], [{"original_text": "We ended up in a museum with neat artifacts.", "album_id": "72157594252899464", "photo_flickr_id": "134707006", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43722", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended up in a museum with neat artifacts .", "storylet_id": "218614"}], [{"original_text": "Our trip to the Grand Canyon.", "album_id": "72157594252899464", "photo_flickr_id": "136775305", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43723", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip to the location location .", "storylet_id": "218615"}], [{"original_text": "These views are absolutely spectacular.", "album_id": "72157594252899464", "photo_flickr_id": "136775837", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43723", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these views are absolutely spectacular .", "storylet_id": "218616"}], [{"original_text": "This nut stood right at the edge! ", "album_id": "72157594252899464", "photo_flickr_id": "136779120", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43723", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this nut stood right at the edge !", "storylet_id": "218617"}], [{"original_text": "Screw that noise! You won't catch me that close.", "album_id": "72157594252899464", "photo_flickr_id": "136779296", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43723", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "screw that noise ! you wo n't catch me that close .", "storylet_id": "218618"}], [{"original_text": "I will stand close to the edge of this sweet indoor pool at our hotel however.", "album_id": "72157594252899464", "photo_flickr_id": "136781292", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43723", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i will stand close to the edge of this sweet indoor pool at our hotel however .", "storylet_id": "218619"}], [{"original_text": "The Grand Canyon, perfect place to learn Geology first hand. ", "album_id": "72157594252899464", "photo_flickr_id": "136775305", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "43724", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the location location , perfect place to learn geology first hand .", "storylet_id": "218620"}], [{"original_text": "The professor is talking to the students about how the ridges formed. ", "album_id": "72157594252899464", "photo_flickr_id": "136775837", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "43724", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the professor is talking to the students about how the ridges formed .", "storylet_id": "218621"}], [{"original_text": "Professor is pointing out some of the interesting faults in the canyon. ", "album_id": "72157594252899464", "photo_flickr_id": "136779120", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "43724", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "professor is pointing out some of the interesting faults in the canyon .", "storylet_id": "218622"}], [{"original_text": "Professor sees something on one of the ledges and is trying to point it out to the others. ", "album_id": "72157594252899464", "photo_flickr_id": "136779296", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "43724", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "professor sees something on one of the ledges and is trying to point it out to the others .", "storylet_id": "218623"}], [{"original_text": "After hiking all day, the students love swimming in the pool. ", "album_id": "72157594252899464", "photo_flickr_id": "136781292", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "43724", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after hiking all day , the students love swimming in the pool .", "storylet_id": "218624"}], [{"original_text": "I'm really not sure which house I want to buy. This one has a very lovely color.", "album_id": "72157629122884021", "photo_flickr_id": "6798598575", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43725", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 'm really not sure which house i want to buy . this one has a very lovely color .", "storylet_id": "218625"}], [{"original_text": "But this one is so rustic and I like that.", "album_id": "72157629122884021", "photo_flickr_id": "6798626203", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43725", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but this one is so rustic and i like that .", "storylet_id": "218626"}], [{"original_text": "This one is very charming as well. It's very hard to decide.", "album_id": "72157629122884021", "photo_flickr_id": "6798634975", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43725", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one is very charming as well . it 's very hard to decide .", "storylet_id": "218627"}], [{"original_text": "My friend showed me this one recently and I think it looks nice too.", "album_id": "72157629122884021", "photo_flickr_id": "6798648123", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43725", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friend showed me this one recently and i think it looks nice too .", "storylet_id": "218628"}], [{"original_text": "I think I'm just going to buy this castle instead.", "album_id": "72157629122884021", "photo_flickr_id": "6798610935", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43725", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think i 'm just going to buy this castle instead .", "storylet_id": "218629"}], [{"original_text": "Our early morning tour began at the towns graveyard.", "album_id": "72157629122884021", "photo_flickr_id": "6798577163", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43726", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our early morning tour began at the towns graveyard .", "storylet_id": "218630"}], [{"original_text": "The first house we toured was a beautiful victorian yellow house.", "album_id": "72157629122884021", "photo_flickr_id": "6798598575", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43726", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first house we toured was a beautiful victorian yellow house .", "storylet_id": "218631"}], [{"original_text": "From there we were able to tour the oldest church in the town.", "album_id": "72157629122884021", "photo_flickr_id": "6798610935", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43726", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "from there we were able to tour the oldest church in the town .", "storylet_id": "218632"}], [{"original_text": "The old pub and boarding house had a lot of unexpected character.", "album_id": "72157629122884021", "photo_flickr_id": "6798629357", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43726", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the old pub and boarding house had a lot of unexpected character .", "storylet_id": "218633"}], [{"original_text": "We ended the day back at our lovely little bed and breakfast.", "album_id": "72157629122884021", "photo_flickr_id": "6798638185", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43726", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the day back at our lovely little bed and breakfast .", "storylet_id": "218634"}], [{"original_text": "We same interesting sights on the trip. One of the most interesting, was the cemetery, which had lots of unique fencing around the plots.", "album_id": "72157629122884021", "photo_flickr_id": "6798577163", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "43727", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we same interesting sights on the trip . one of the most interesting , was the cemetery , which had lots of unique fencing around the plots .", "storylet_id": "218635"}], [{"original_text": "We wanted to stay here. It is a beautiful bed and breakfast inn near the city.", "album_id": "72157629122884021", "photo_flickr_id": "6798598575", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "43727", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we wanted to stay here . it is a beautiful bed and breakfast inn near the city .", "storylet_id": "218636"}], [{"original_text": "This old church had a beautiful sanctuary with wonderful architecture.", "album_id": "72157629122884021", "photo_flickr_id": "6798610935", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "43727", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this old church had a beautiful sanctuary with wonderful architecture .", "storylet_id": "218637"}], [{"original_text": "This was one of the old shops that had been renovated.", "album_id": "72157629122884021", "photo_flickr_id": "6798629357", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "43727", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was one of the old shops that had been renovated .", "storylet_id": "218638"}], [{"original_text": "We were surprised at the detail on some of the houses. Look at the elaborate scroll work. It was a beautiful trip.", "album_id": "72157629122884021", "photo_flickr_id": "6798638185", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "43727", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were surprised at the detail on some of the houses . look at the elaborate scroll work . it was a beautiful trip .", "storylet_id": "218639"}], [{"original_text": "The first stop of the tour in the historical area was this old graveyard.", "album_id": "72157629122884021", "photo_flickr_id": "6798577163", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43728", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the first stop of the tour in the historical area was this old graveyard .", "storylet_id": "218640"}], [{"original_text": "This home was owned by one of the town's more prominent doctor's and is now used as an inn.", "album_id": "72157629122884021", "photo_flickr_id": "6798598575", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43728", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this home was owned by one of the town 's more prominent doctor 's and is now used as an inn .", "storylet_id": "218641"}], [{"original_text": "The first school in the area was housed in this old building.", "album_id": "72157629122884021", "photo_flickr_id": "6798610935", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43728", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first school in the area was housed in this old building .", "storylet_id": "218642"}], [{"original_text": "In busier times, the old hotel used to be always packed.", "album_id": "72157629122884021", "photo_flickr_id": "6798629357", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43728", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in busier times , the old hotel used to be always packed .", "storylet_id": "218643"}], [{"original_text": "This is the bed and breakfast we stayed at on our trip.", "album_id": "72157629122884021", "photo_flickr_id": "6798638185", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "43728", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the bed and breakfast we stayed at on our trip .", "storylet_id": "218644"}], [{"original_text": "Just got my real estate license and I have been tasked at selling all the older Victorian houses. This is my first one on the market.", "album_id": "72157629122884021", "photo_flickr_id": "6798598575", "setting": "last-3-pick-old-and-tell", "worker_id": "0NLEKM0SF2LJ5MN", "story_id": "43729", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "just got my real estate license and i have been tasked at selling all the older victorian houses . this is my first one on the market .", "storylet_id": "218645"}], [{"original_text": "The second house I am trying to sell is actually the newest of all the old Victorian homes. This one dates back to 1922", "album_id": "72157629122884021", "photo_flickr_id": "6798626203", "setting": "last-3-pick-old-and-tell", "worker_id": "0NLEKM0SF2LJ5MN", "story_id": "43729", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the second house i am trying to sell is actually the newest of all the old victorian homes . this one dates back to 1922", "storylet_id": "218646"}], [{"original_text": "This on is very quaint for a smaller family looking to open a bed and breakfast. ", "album_id": "72157629122884021", "photo_flickr_id": "6798634975", "setting": "last-3-pick-old-and-tell", "worker_id": "0NLEKM0SF2LJ5MN", "story_id": "43729", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this on is very quaint for a smaller family looking to open a bed and breakfast .", "storylet_id": "218647"}], [{"original_text": "This home is the best value starting bids at $300,000. ", "album_id": "72157629122884021", "photo_flickr_id": "6798648123", "setting": "last-3-pick-old-and-tell", "worker_id": "0NLEKM0SF2LJ5MN", "story_id": "43729", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this home is the best value starting bids at $ 300,000 .", "storylet_id": "218648"}], [{"original_text": "And this final home on my list is the oldest home. Almost has a feel of a castle. It dates back to 1893", "album_id": "72157629122884021", "photo_flickr_id": "6798610935", "setting": "last-3-pick-old-and-tell", "worker_id": "0NLEKM0SF2LJ5MN", "story_id": "43729", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and this final home on my list is the oldest home . almost has a feel of a castle . it dates back to 1893", "storylet_id": "218649"}], [{"original_text": "There was an earthquake in a small town in Washington. ", "album_id": "72157594151411212", "photo_flickr_id": "157516496", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43730", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an earthquake in a small town in location .", "storylet_id": "218650"}], [{"original_text": "Surveyors were sent out to check for damage, which at first looked to be some twisted waterlines. ", "album_id": "72157594151411212", "photo_flickr_id": "157512512", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43730", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "surveyors were sent out to check for damage , which at first looked to be some twisted waterlines .", "storylet_id": "218651"}], [{"original_text": "Then they traveled down the road and discovered this crack. ", "album_id": "72157594151411212", "photo_flickr_id": "157518658", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43730", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they traveled down the road and discovered this crack .", "storylet_id": "218652"}], [{"original_text": "It kept going for some distance and seemed to follow a fault line. ", "album_id": "72157594151411212", "photo_flickr_id": "157517400", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43730", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it kept going for some distance and seemed to follow a fault line .", "storylet_id": "218653"}], [{"original_text": "When they came around a turn they saw it went much further down the road, which qiuckly had to be closed for repair. ", "album_id": "72157594151411212", "photo_flickr_id": "157519429", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "43730", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when they came around a turn they saw it went much further down the road , which qiuckly had to be closed for repair .", "storylet_id": "218654"}], [{"original_text": "After the big snow storm, many trees were uprooted.", "album_id": "72157594151411212", "photo_flickr_id": "157515203", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43731", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after the big snow storm , many trees were uprooted .", "storylet_id": "218655"}], [{"original_text": "The town was badly damaged from the storm, people are trying to fix everything, including painting the benches.", "album_id": "72157594151411212", "photo_flickr_id": "157515485", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43731", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the town was badly damaged from the storm , people are trying to fix everything , including painting the benches .", "storylet_id": "218656"}], [{"original_text": "There are big cracks in the neighborhood streets.", "album_id": "72157594151411212", "photo_flickr_id": "157517400", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43731", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are big cracks in the neighborhood streets .", "storylet_id": "218657"}], [{"original_text": "There are also cracks on the highway.", "album_id": "72157594151411212", "photo_flickr_id": "157518658", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43731", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are also cracks on the highway .", "storylet_id": "218658"}], [{"original_text": "Many roads are split open. ", "album_id": "72157594151411212", "photo_flickr_id": "157519429", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43731", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many roads are split open .", "storylet_id": "218659"}], [{"original_text": "Sometimes nature fights back,", "album_id": "72157594151411212", "photo_flickr_id": "157516496", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43732", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sometimes nature fights back ,", "storylet_id": "218660"}], [{"original_text": "and takes back over roads and cities.", "album_id": "72157594151411212", "photo_flickr_id": "157512512", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43732", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and takes back over roads and cities .", "storylet_id": "218661"}], [{"original_text": "It can cause dangerous cracks in the road", "album_id": "72157594151411212", "photo_flickr_id": "157518658", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43732", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it can cause dangerous cracks in the road", "storylet_id": "218662"}], [{"original_text": "that no one wants to drive on.", "album_id": "72157594151411212", "photo_flickr_id": "157517400", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43732", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that no one wants to drive on .", "storylet_id": "218663"}], [{"original_text": "So the city office has to send workers out to fix the issue and to put nature back in its place...until nature strikes back once more. ", "album_id": "72157594151411212", "photo_flickr_id": "157519429", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43732", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so the city office has to send workers out to fix the issue and to put nature back in its place ... until nature strikes back once more .", "storylet_id": "218664"}], [{"original_text": "The townspeople look at the damage from the quake.", "album_id": "72157594151411212", "photo_flickr_id": "157515203", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43733", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the townspeople look at the damage from the quake .", "storylet_id": "218665"}], [{"original_text": "One of them decides to repaint a bench.", "album_id": "72157594151411212", "photo_flickr_id": "157515485", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43733", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of them decides to repaint a bench .", "storylet_id": "218666"}], [{"original_text": "They realize just how bad the quake was.", "album_id": "72157594151411212", "photo_flickr_id": "157517400", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43733", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they realize just how bad the quake was .", "storylet_id": "218667"}], [{"original_text": "They stand around the crack in the ground in awe.", "album_id": "72157594151411212", "photo_flickr_id": "157518658", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43733", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they stand around the crack in the ground in awe .", "storylet_id": "218668"}], [{"original_text": "They don't see an end in sight.", "album_id": "72157594151411212", "photo_flickr_id": "157519429", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "43733", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they do n't see an end in sight .", "storylet_id": "218669"}], [{"original_text": "On our way to the Midwest, we had to turn around.", "album_id": "72157594151411212", "photo_flickr_id": "157516496", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43734", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our way to the location , we had to turn around .", "storylet_id": "218670"}], [{"original_text": "The road seemed to have a lot of damage.", "album_id": "72157594151411212", "photo_flickr_id": "157512512", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43734", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the road seemed to have a lot of damage .", "storylet_id": "218671"}], [{"original_text": "Here is one of the cracks close up.", "album_id": "72157594151411212", "photo_flickr_id": "157518658", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43734", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is one of the cracks close up .", "storylet_id": "218672"}], [{"original_text": "Here is another picture a crack.", "album_id": "72157594151411212", "photo_flickr_id": "157517400", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43734", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is another picture a crack .", "storylet_id": "218673"}], [{"original_text": "And here is the scary yet amazing picture of what the earth can do.", "album_id": "72157594151411212", "photo_flickr_id": "157519429", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43734", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and here is the scary yet amazing picture of what the earth can do .", "storylet_id": "218674"}], [{"original_text": "The city was famous for its night life.", "album_id": "72157594150994426", "photo_flickr_id": "157244975", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43735", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city was famous for its night life .", "storylet_id": "218675"}], [{"original_text": "A subway trip took revelers to their destination.", "album_id": "72157594150994426", "photo_flickr_id": "157244881", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43735", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a subway trip took revelers to their destination .", "storylet_id": "218676"}], [{"original_text": "Bright signs on buildings awaited them.", "album_id": "72157594150994426", "photo_flickr_id": "157245196", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43735", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "bright signs on buildings awaited them .", "storylet_id": "218677"}], [{"original_text": "The streets were always filled with people.", "album_id": "72157594150994426", "photo_flickr_id": "157245630", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43735", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the streets were always filled with people .", "storylet_id": "218678"}], [{"original_text": "Many cafes offered good food and drink.", "album_id": "72157594150994426", "photo_flickr_id": "157246180", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43735", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many cafes offered good food and drink .", "storylet_id": "218679"}], [{"original_text": "I spent most of my day walking around downtown.", "album_id": "72157594150994426", "photo_flickr_id": "157244975", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43736", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spent most of my day walking around downtown .", "storylet_id": "218680"}], [{"original_text": "I stopped by a restaurant to grab something to eat.", "album_id": "72157594150994426", "photo_flickr_id": "157245043", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43736", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i stopped by a restaurant to grab something to eat .", "storylet_id": "218681"}], [{"original_text": "After that I got back to walking.", "album_id": "72157594150994426", "photo_flickr_id": "157245119", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43736", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that i got back to walking .", "storylet_id": "218682"}], [{"original_text": "I saw a lot of big screens in the city.", "album_id": "72157594150994426", "photo_flickr_id": "157245196", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43736", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i saw a lot of big screens in the city .", "storylet_id": "218683"}], [{"original_text": "They were all showing advertisements.", "album_id": "72157594150994426", "photo_flickr_id": "157245273", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43736", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were all showing advertisements .", "storylet_id": "218684"}], [{"original_text": "We finally arrived at our vacation destination and arrived at night time. ", "album_id": "72157594150994426", "photo_flickr_id": "157244975", "setting": "last-3-pick-old-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "43737", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we finally arrived at our vacation destination and arrived at night time .", "storylet_id": "218685"}], [{"original_text": "We had to take a subway to get to our hotel. This is a picture of the subway station. ", "album_id": "72157594150994426", "photo_flickr_id": "157244881", "setting": "last-3-pick-old-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "43737", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to take a subway to get to our hotel . this is a picture of the subway station .", "storylet_id": "218686"}], [{"original_text": "After we got off of the subway, we were in the big beautiful city. ", "album_id": "72157594150994426", "photo_flickr_id": "157245196", "setting": "last-3-pick-old-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "43737", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after we got off of the subway , we were in the big beautiful city .", "storylet_id": "218687"}], [{"original_text": "This is the view from outside of our hotel. It's a very busy city life!", "album_id": "72157594150994426", "photo_flickr_id": "157245630", "setting": "last-3-pick-old-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "43737", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the view from outside of our hotel . it 's a very busy city life !", "storylet_id": "218688"}], [{"original_text": "This is the entryway to our beautiful hotel. We are going to have a beautiful stay!", "album_id": "72157594150994426", "photo_flickr_id": "157246180", "setting": "last-3-pick-old-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "43737", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the entryway to our beautiful hotel . we are going to have a beautiful stay !", "storylet_id": "218689"}], [{"original_text": "We arrived in Hong Kong and quickly headed down the stairs.", "album_id": "72157594150994426", "photo_flickr_id": "157244975", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43738", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived in location location and quickly headed down the stairs .", "storylet_id": "218690"}], [{"original_text": "We wanted to jump on the subway and head to the city center.", "album_id": "72157594150994426", "photo_flickr_id": "157244881", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43738", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we wanted to jump on the subway and head to the city center .", "storylet_id": "218691"}], [{"original_text": "We arrived and were amazed at the beautiful nature of the location.", "album_id": "72157594150994426", "photo_flickr_id": "157245196", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43738", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we arrived and were amazed at the beautiful nature of the location .", "storylet_id": "218692"}], [{"original_text": "And, we joined in the hustling crowds and started walking.", "album_id": "72157594150994426", "photo_flickr_id": "157245630", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43738", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , we joined in the hustling crowds and started walking .", "storylet_id": "218693"}], [{"original_text": "We reached our hotel and were happy to check in and rest and experience Hong Kong tomorrow.", "album_id": "72157594150994426", "photo_flickr_id": "157246180", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43738", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we reached our hotel and were happy to check in and rest and experience location location tomorrow .", "storylet_id": "218694"}], [{"original_text": "My friends and I went out to eat last night.", "album_id": "72157594150994426", "photo_flickr_id": "157244975", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43739", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i went out to eat last night .", "storylet_id": "218695"}], [{"original_text": "We had to take the subway to the restaurant.", "album_id": "72157594150994426", "photo_flickr_id": "157244881", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43739", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to take the subway to the restaurant .", "storylet_id": "218696"}], [{"original_text": "The walking to the establishment was long.", "album_id": "72157594150994426", "photo_flickr_id": "157245196", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43739", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the walking to the establishment was long .", "storylet_id": "218697"}], [{"original_text": "There were so many people on the streets.", "album_id": "72157594150994426", "photo_flickr_id": "157245630", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43739", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were so many people on the streets .", "storylet_id": "218698"}], [{"original_text": "I was happy and hungry to get there.", "album_id": "72157594150994426", "photo_flickr_id": "157246180", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43739", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was happy and hungry to get there .", "storylet_id": "218699"}], [{"original_text": "we had a blast in england ", "album_id": "126117", "photo_flickr_id": "4959604", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43740", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a blast in england", "storylet_id": "218700"}], [{"original_text": "we saw the royal guard", "album_id": "126117", "photo_flickr_id": "4959709", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43740", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw the royal guard", "storylet_id": "218701"}], [{"original_text": "and took in the sights", "album_id": "126117", "photo_flickr_id": "4959838", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43740", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and took in the sights", "storylet_id": "218702"}], [{"original_text": "everywhere we went there was this black flag", "album_id": "126117", "photo_flickr_id": "4970932", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43740", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everywhere we went there was this black flag", "storylet_id": "218703"}], [{"original_text": "and we went to an indoor specialty mall", "album_id": "126117", "photo_flickr_id": "4971076", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43740", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and we went to an indoor specialty mall", "storylet_id": "218704"}], [{"original_text": "I went on a trip to the UK and one of the first places the family visited was Big Ben.", "album_id": "126117", "photo_flickr_id": "4959131", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "43741", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on a trip to the location and one of the first places the family visited was big [male] .", "storylet_id": "218705"}], [{"original_text": "Next to old Ben was a large statue. I couldn't make out the writing, but the artistic work was impressive. ", "album_id": "126117", "photo_flickr_id": "4959219", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "43741", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next to old [male] was a large statue . i could n't make out the writing , but the artistic work was impressive .", "storylet_id": "218706"}], [{"original_text": "As we continued to make are way down the peer I could see a giant ferris wheelin the distance. ", "album_id": "126117", "photo_flickr_id": "4959459", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "43741", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as we continued to make are way down the peer i could see a giant ferris wheelin the distance .", "storylet_id": "218707"}], [{"original_text": "Before reaching our hotel from the peer a double decker bus came screaming past us.", "album_id": "126117", "photo_flickr_id": "4959604", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "43741", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "before reaching our hotel from the peer a double decker bus came screaming past us .", "storylet_id": "218708"}], [{"original_text": "Finally we arrived at the front of our hotel, it's big red doors in full view.", "album_id": "126117", "photo_flickr_id": "4971116", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "43741", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally we arrived at the front of our hotel , it 's big red doors in full view .", "storylet_id": "218709"}], [{"original_text": "We went to visit the tallest clock tower in our vicinity.", "album_id": "126117", "photo_flickr_id": "4959131", "setting": "last-3-pick-old-and-tell", "worker_id": "Y04HLM9FWIUXQTO", "story_id": "43742", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to visit the tallest clock tower in our vicinity .", "storylet_id": "218710"}], [{"original_text": "We then checked out some statues.", "album_id": "126117", "photo_flickr_id": "4959219", "setting": "last-3-pick-old-and-tell", "worker_id": "Y04HLM9FWIUXQTO", "story_id": "43742", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we then checked out some statues .", "storylet_id": "218711"}], [{"original_text": "After viewing architecture, we went to the amusement park for some fun.", "album_id": "126117", "photo_flickr_id": "4959459", "setting": "last-3-pick-old-and-tell", "worker_id": "Y04HLM9FWIUXQTO", "story_id": "43742", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after viewing architecture , we went to the amusement park for some fun .", "storylet_id": "218712"}], [{"original_text": "We were pooped by the time we were done so we took a 2 story bus to relax with sightseeing.", "album_id": "126117", "photo_flickr_id": "4959604", "setting": "last-3-pick-old-and-tell", "worker_id": "Y04HLM9FWIUXQTO", "story_id": "43742", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were pooped by the time we were done so we took a 2 story bus to relax with sightseeing .", "storylet_id": "218713"}], [{"original_text": "We finally went to a cafe to unwind with delicious cakes!", "album_id": "126117", "photo_flickr_id": "4971116", "setting": "last-3-pick-old-and-tell", "worker_id": "Y04HLM9FWIUXQTO", "story_id": "43742", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finally went to a cafe to unwind with delicious cakes !", "storylet_id": "218714"}], [{"original_text": "Welcome to London, home of many sites like Big Ben.", "album_id": "126117", "photo_flickr_id": "4959131", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "43743", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "welcome to location , home of many sites like big [male] .", "storylet_id": "218715"}], [{"original_text": "And the worst traitor ever even has his own statue.", "album_id": "126117", "photo_flickr_id": "4959219", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "43743", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the worst traitor ever even has his own statue .", "storylet_id": "218716"}], [{"original_text": "This is the London Eye, a giant ferris wheel.", "album_id": "126117", "photo_flickr_id": "4959459", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "43743", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the location eye , a giant ferris wheel .", "storylet_id": "218717"}], [{"original_text": "All of our busses have two levels.", "album_id": "126117", "photo_flickr_id": "4959604", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "43743", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of our busses have two levels .", "storylet_id": "218718"}], [{"original_text": "And look a bar.. In London... That's a first!", "album_id": "126117", "photo_flickr_id": "4971116", "setting": "last-3-pick-old-and-tell", "worker_id": "W7YYH1YXMRTISG2", "story_id": "43743", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and look a bar.. in location ... that 's a first !", "storylet_id": "218719"}], [{"original_text": "They admired the doubledecker bus as they arrived in the streets of London.", "album_id": "126117", "photo_flickr_id": "4959604", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43744", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they admired the doubledecker bus as they arrived in the streets of location .", "storylet_id": "218720"}], [{"original_text": "The guards were in a fuss over their duty and migrated towards the problem.", "album_id": "126117", "photo_flickr_id": "4959709", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43744", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guards were in a fuss over their duty and migrated towards the problem .", "storylet_id": "218721"}], [{"original_text": "The tower stood in authority against the sky.", "album_id": "126117", "photo_flickr_id": "4959838", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43744", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tower stood in authority against the sky .", "storylet_id": "218722"}], [{"original_text": "The black flag was flown to signify the importance of the building.", "album_id": "126117", "photo_flickr_id": "4970932", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43744", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the black flag was flown to signify the importance of the building .", "storylet_id": "218723"}], [{"original_text": "The dining hall was splendid.", "album_id": "126117", "photo_flickr_id": "4971076", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43744", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dining hall was splendid .", "storylet_id": "218724"}], [{"original_text": "I had a lot of work to do today.", "album_id": "157909", "photo_flickr_id": "6323942", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43745", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a lot of work to do today .", "storylet_id": "218725"}], [{"original_text": "There was so much digging that needed to be done.", "album_id": "157909", "photo_flickr_id": "6323994", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43745", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was so much digging that needed to be done .", "storylet_id": "218726"}], [{"original_text": "We brought in a specialist.", "album_id": "157909", "photo_flickr_id": "6324071", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43745", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we brought in a specialist .", "storylet_id": "218727"}], [{"original_text": "He knew exactly what to do.", "album_id": "157909", "photo_flickr_id": "6324129", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43745", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he knew exactly what to do .", "storylet_id": "218728"}], [{"original_text": "After a few hours we were done.", "album_id": "157909", "photo_flickr_id": "6324187", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43745", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a few hours we were done .", "storylet_id": "218729"}], [{"original_text": "Today the village celebrated Juan's 100th day.", "album_id": "157909", "photo_flickr_id": "6321195", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43746", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today the village celebrated [male] 's 100th day .", "storylet_id": "218730"}], [{"original_text": "They each lined up to give Juan his blessings.", "album_id": "157909", "photo_flickr_id": "6320719", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43746", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they each lined up to give [male] his blessings .", "storylet_id": "218731"}], [{"original_text": "Many of them brought whatever gift they could.", "album_id": "157909", "photo_flickr_id": "6321981", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43746", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many of them brought whatever gift they could .", "storylet_id": "218732"}], [{"original_text": "Most villagers could only manage a card, but it is the thought that counts.", "album_id": "157909", "photo_flickr_id": "6322397", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43746", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "most villagers could only manage a card , but it is the thought that counts .", "storylet_id": "218733"}], [{"original_text": "The entire village showed up to celebrate.", "album_id": "157909", "photo_flickr_id": "6323008", "setting": "first-2-pick-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "43746", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the entire village showed up to celebrate .", "storylet_id": "218734"}], [{"original_text": "I had to go to a funeral for two small children.", "album_id": "157909", "photo_flickr_id": "6321195", "setting": "last-3-pick-old-and-tell", "worker_id": "DGEODUDYWRX55Z1", "story_id": "43747", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had to go to a funeral for two small children .", "storylet_id": "218735"}], [{"original_text": "It was a really emotional day as the people dug the graves in a traditional way for their final resting place.", "album_id": "157909", "photo_flickr_id": "6320719", "setting": "last-3-pick-old-and-tell", "worker_id": "DGEODUDYWRX55Z1", "story_id": "43747", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a really emotional day as the people dug the graves in a traditional way for their final resting place .", "storylet_id": "218736"}], [{"original_text": "People put stuff in a little memory box to commemorate their lives that were cut too short.", "album_id": "157909", "photo_flickr_id": "6321981", "setting": "last-3-pick-old-and-tell", "worker_id": "DGEODUDYWRX55Z1", "story_id": "43747", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people put stuff in a little memory box to commemorate their lives that were cut too short .", "storylet_id": "218737"}], [{"original_text": "There were pictures being passed around to remember the two children.", "album_id": "157909", "photo_flickr_id": "6322397", "setting": "last-3-pick-old-and-tell", "worker_id": "DGEODUDYWRX55Z1", "story_id": "43747", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were pictures being passed around to remember the two children .", "storylet_id": "218738"}], [{"original_text": "Everybody gathered and listened to emotional speeches. It was very moving. I wouldn't wish this on anybody.", "album_id": "157909", "photo_flickr_id": "6323008", "setting": "last-3-pick-old-and-tell", "worker_id": "DGEODUDYWRX55Z1", "story_id": "43747", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everybody gathered and listened to emotional speeches . it was very moving . i would n't wish this on anybody .", "storylet_id": "218739"}], [{"original_text": "It was a sad day, they were morning the death of a child.", "album_id": "157909", "photo_flickr_id": "6321195", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43748", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a sad day , they were morning the death of a child .", "storylet_id": "218740"}], [{"original_text": "The parents cried and prayed asking why they took away their child.", "album_id": "157909", "photo_flickr_id": "6320719", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43748", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the parents cried and prayed asking why they took away their child .", "storylet_id": "218741"}], [{"original_text": "They made a keepsake box of things that were personal to her.", "album_id": "157909", "photo_flickr_id": "6321981", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43748", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they made a keepsake box of things that were personal to her .", "storylet_id": "218742"}], [{"original_text": "They looked over pictures to remember her face.", "album_id": "157909", "photo_flickr_id": "6322397", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43748", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they looked over pictures to remember her face .", "storylet_id": "218743"}], [{"original_text": "They listened to the sermon and then left in silence.", "album_id": "157909", "photo_flickr_id": "6323008", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43748", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they listened to the sermon and then left in silence .", "storylet_id": "218744"}], [{"original_text": "Digging the trench for the annual ceremony.", "album_id": "157909", "photo_flickr_id": "6323942", "setting": "last-3-pick-old-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43749", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "digging the trench for the annual ceremony .", "storylet_id": "218745"}], [{"original_text": "People are gathering to write their notes and par their respects.", "album_id": "157909", "photo_flickr_id": "6323994", "setting": "last-3-pick-old-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43749", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people are gathering to write their notes and par their respects .", "storylet_id": "218746"}], [{"original_text": "He is burying his note to his loved ones. Kind of sad in a way.", "album_id": "157909", "photo_flickr_id": "6324071", "setting": "last-3-pick-old-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43749", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he is burying his note to his loved ones . kind of sad in a way .", "storylet_id": "218747"}], [{"original_text": "Saying a prayer before he leaves.", "album_id": "157909", "photo_flickr_id": "6324129", "setting": "last-3-pick-old-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43749", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "saying a prayer before he leaves .", "storylet_id": "218748"}], [{"original_text": "The concrete they will use to bury the notes so they can't be disturbed.", "album_id": "157909", "photo_flickr_id": "6324187", "setting": "last-3-pick-old-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43749", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the concrete they will use to bury the notes so they ca n't be disturbed .", "storylet_id": "218749"}], [{"original_text": "Mary is really enjoying her dinner at the new restaurant.", "album_id": "262424", "photo_flickr_id": "10618957", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "43750", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is really enjoying her dinner at the new restaurant .", "storylet_id": "218750"}], [{"original_text": "Doesn't her dish look yummy? Yes it does!", "album_id": "262424", "photo_flickr_id": "10622240", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "43750", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "does n't her dish look yummy ? yes it does !", "storylet_id": "218751"}], [{"original_text": "John decided to try something new. Can't tell if he likes it or not.", "album_id": "262424", "photo_flickr_id": "10618958", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "43750", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] decided to try something new . ca n't tell if he likes it or not .", "storylet_id": "218752"}], [{"original_text": "What do you think? Looks like tomato soup to me.", "album_id": "262424", "photo_flickr_id": "10618960", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "43750", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what do you think ? looks like tomato soup to me .", "storylet_id": "218753"}], [{"original_text": "How sweet! Mary is sharing her dinner with John. They are just too cute.", "album_id": "262424", "photo_flickr_id": "10618959", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "43750", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "how sweet ! [female] is sharing her dinner with [male] . they are just too cute .", "storylet_id": "218754"}], [{"original_text": "Gladys and Maurice are celebrating their 35th wedding anniversary.", "album_id": "262424", "photo_flickr_id": "10618957", "setting": "first-2-pick-and-tell", "worker_id": "YZFC6SDMHSZRXS3", "story_id": "43751", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [male] are celebrating their 35th wedding anniversary .", "storylet_id": "218755"}], [{"original_text": "Maurice loves to ham it up for the camera, because he loves to make Gladys laugh.", "album_id": "262424", "photo_flickr_id": "10618958", "setting": "first-2-pick-and-tell", "worker_id": "YZFC6SDMHSZRXS3", "story_id": "43751", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] loves to ham it up for the camera , because he loves to make [female] laugh .", "storylet_id": "218756"}], [{"original_text": "Even though they have been together for a long time, they still act like young lovers.", "album_id": "262424", "photo_flickr_id": "10618959", "setting": "first-2-pick-and-tell", "worker_id": "YZFC6SDMHSZRXS3", "story_id": "43751", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even though they have been together for a long time , they still act like young lovers .", "storylet_id": "218757"}], [{"original_text": "Maurice bought Gladys a piece of art for her anniversary gift.", "album_id": "262424", "photo_flickr_id": "10622241", "setting": "first-2-pick-and-tell", "worker_id": "YZFC6SDMHSZRXS3", "story_id": "43751", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] bought [female] a piece of art for her anniversary gift .", "storylet_id": "218758"}], [{"original_text": "Surprise! Gladys bought Maurice a statue as well!", "album_id": "262424", "photo_flickr_id": "10623379", "setting": "first-2-pick-and-tell", "worker_id": "YZFC6SDMHSZRXS3", "story_id": "43751", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "surprise ! [female] bought [male] a statue as well !", "storylet_id": "218759"}], [{"original_text": "Last night my friends and I went out to eat.", "album_id": "262424", "photo_flickr_id": "10618957", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43752", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last night my friends and i went out to eat .", "storylet_id": "218760"}], [{"original_text": "We went to a restaurant where they served us huge portions.", "album_id": "262424", "photo_flickr_id": "10622240", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43752", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to a restaurant where they served us huge portions .", "storylet_id": "218761"}], [{"original_text": "Everyone ate a lot of food.", "album_id": "262424", "photo_flickr_id": "10618958", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43752", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone ate a lot of food .", "storylet_id": "218762"}], [{"original_text": "Some of the dishes looked and smelled amazing.", "album_id": "262424", "photo_flickr_id": "10618960", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43752", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the dishes looked and smelled amazing .", "storylet_id": "218763"}], [{"original_text": "Everyone had a great time.", "album_id": "262424", "photo_flickr_id": "10618959", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43752", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time .", "storylet_id": "218764"}], [{"original_text": "Jan was excited for date night at a romantic restaurant. ", "album_id": "262424", "photo_flickr_id": "10618957", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43753", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was excited for date night at a romantic restaurant .", "storylet_id": "218765"}], [{"original_text": "She ordered one of the fancy meals.", "album_id": "262424", "photo_flickr_id": "10622240", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43753", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she ordered one of the fancy meals .", "storylet_id": "218766"}], [{"original_text": "Her husband was also excited,", "album_id": "262424", "photo_flickr_id": "10618958", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43753", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her husband was also excited ,", "storylet_id": "218767"}], [{"original_text": "but he didn't order anything too fancy.", "album_id": "262424", "photo_flickr_id": "10618960", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43753", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but he did n't order anything too fancy .", "storylet_id": "218768"}], [{"original_text": "They shared food, laughed, and remembered why they fell in love on this romantic dinner date. ", "album_id": "262424", "photo_flickr_id": "10618959", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43753", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they shared food , laughed , and remembered why they fell in love on this romantic dinner date .", "storylet_id": "218769"}], [{"original_text": "Grandma Nan had a great time at the authentic American restaurant. ", "album_id": "262424", "photo_flickr_id": "10618957", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43754", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandma nan had a great time at the authentic american restaurant .", "storylet_id": "218770"}], [{"original_text": "An expensive dish was well worth the money.", "album_id": "262424", "photo_flickr_id": "10622240", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43754", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "an expensive dish was well worth the money .", "storylet_id": "218771"}], [{"original_text": "Grandpa Eugene ate so many spoonfuls of soup.", "album_id": "262424", "photo_flickr_id": "10618958", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43754", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandpa [male] ate so many spoonfuls of soup .", "storylet_id": "218772"}], [{"original_text": "Cream of tomato soup was the special of the night.", "album_id": "262424", "photo_flickr_id": "10618960", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43754", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cream of tomato soup was the special of the night .", "storylet_id": "218773"}], [{"original_text": "Grandma Nan and Grandpa Eugene couldn't be any more in love. ", "album_id": "262424", "photo_flickr_id": "10618959", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43754", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandma nan and grandpa [male] could n't be any more in love .", "storylet_id": "218774"}], [{"original_text": "Visiting the zoo and seeing a huge elephant.", "album_id": "381318", "photo_flickr_id": "15853128", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43755", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visiting the zoo and seeing a huge elephant .", "storylet_id": "218775"}], [{"original_text": "Now time to take a closer look at the giraffe. ", "album_id": "381318", "photo_flickr_id": "15853129", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43755", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "now time to take a closer look at the giraffe .", "storylet_id": "218776"}], [{"original_text": "Looking at flamingos up close.", "album_id": "381318", "photo_flickr_id": "16313795", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43755", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looking at flamingos up close .", "storylet_id": "218777"}], [{"original_text": "Then we saw penguins in their habitat. ", "album_id": "381318", "photo_flickr_id": "16313797", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43755", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we saw penguins in their habitat .", "storylet_id": "218778"}], [{"original_text": "Zookeeper helping feeding the parrots in a little cup.", "album_id": "381318", "photo_flickr_id": "16357884", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43755", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "zookeeper helping feeding the parrots in a little cup .", "storylet_id": "218779"}], [{"original_text": "We decided to visit an old East coast town. ", "album_id": "381318", "photo_flickr_id": "16313792", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "43756", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to visit an old location location town .", "storylet_id": "218780"}], [{"original_text": "We saw statues of old American heroes peppered around the town. ", "album_id": "381318", "photo_flickr_id": "15852415", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "43756", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw statues of old american heroes peppered around the town .", "storylet_id": "218781"}], [{"original_text": "After, we decided to visit the zoo.", "album_id": "381318", "photo_flickr_id": "15853128", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "43756", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after , we decided to visit the zoo .", "storylet_id": "218782"}], [{"original_text": "Their famous group of pink flamingos were our favorite. ", "album_id": "381318", "photo_flickr_id": "16313795", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "43756", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their famous group of pink flamingos were our favorite .", "storylet_id": "218783"}], [{"original_text": "We fed the exoctic birds and continued around the zoo.", "album_id": "381318", "photo_flickr_id": "16357884", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "43756", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we fed the exoctic birds and continued around the zoo .", "storylet_id": "218784"}], [{"original_text": "Elephants are probably my favorite animal when we visit Niabi Zoo.", "album_id": "381318", "photo_flickr_id": "15853128", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43757", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "elephants are probably my favorite animal when we visit niabi zoo .", "storylet_id": "218785"}], [{"original_text": "The giraffes are fun to feed. Their long tongues are blue and icky looking!", "album_id": "381318", "photo_flickr_id": "15853129", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43757", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the giraffes are fun to feed . their long tongues are blue and icky looking !", "storylet_id": "218786"}], [{"original_text": "The pink flamingos are much more beautiful than their plastic counterparts. The way they stand on one leg makes me laugh.", "album_id": "381318", "photo_flickr_id": "16313795", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43757", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the pink flamingos are much more beautiful than their plastic counterparts . the way they stand on one leg makes me laugh .", "storylet_id": "218787"}], [{"original_text": "The penguins keep coming right up to the glass of their enclosure. It's as if they want you to take them hom.", "album_id": "381318", "photo_flickr_id": "16313797", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43757", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the penguins keep coming right up to the glass of their enclosure . it 's as if they want you to take them hom .", "storylet_id": "218788"}], [{"original_text": "My granddaughter's favorite part is feeding the lorikeets from her hand.", "album_id": "381318", "photo_flickr_id": "16357884", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43757", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my granddaughter 's favorite part is feeding the lorikeets from her hand .", "storylet_id": "218789"}], [{"original_text": "The zoo is a great place to see elephants.", "album_id": "381318", "photo_flickr_id": "15853128", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43758", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the zoo is a great place to see elephants .", "storylet_id": "218790"}], [{"original_text": "It's also a great place to see the long necked giraffes", "album_id": "381318", "photo_flickr_id": "15853129", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43758", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's also a great place to see the long necked giraffes", "storylet_id": "218791"}], [{"original_text": "and the long legged flamingos. ", "album_id": "381318", "photo_flickr_id": "16313795", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43758", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the long legged flamingos .", "storylet_id": "218792"}], [{"original_text": "Penguins can also be found there,", "album_id": "381318", "photo_flickr_id": "16313797", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43758", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "penguins can also be found there ,", "storylet_id": "218793"}], [{"original_text": "and visitors can participate in feeding and taking care of the animals. ", "album_id": "381318", "photo_flickr_id": "16357884", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43758", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and visitors can participate in feeding and taking care of the animals .", "storylet_id": "218794"}], [{"original_text": "The first thing I saw at the zoo was a cool elephant. ", "album_id": "381318", "photo_flickr_id": "15853128", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43759", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the first thing i saw at the zoo was a cool elephant .", "storylet_id": "218795"}], [{"original_text": "A lone giraffe named Gerald roamed in search of food.", "album_id": "381318", "photo_flickr_id": "15853129", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43759", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lone giraffe named [male] roamed in search of food .", "storylet_id": "218796"}], [{"original_text": "The flamingos were pinker this year than two years ago.", "album_id": "381318", "photo_flickr_id": "16313795", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43759", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the flamingos were pinker this year than two years ago .", "storylet_id": "218797"}], [{"original_text": "Sometimes penguins want to assert their dominance.", "album_id": "381318", "photo_flickr_id": "16313797", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43759", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes penguins want to assert their dominance .", "storylet_id": "218798"}], [{"original_text": "The aviary let humans feed birds as long as they spent money.", "album_id": "381318", "photo_flickr_id": "16357884", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43759", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the aviary let humans feed birds as long as they spent money .", "storylet_id": "218799"}], [{"original_text": "This little girl had just got home from school.", "album_id": "461497", "photo_flickr_id": "19654362", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43760", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this little girl had just got home from school .", "storylet_id": "218800"}], [{"original_text": "She showed me where she lived. ", "album_id": "461497", "photo_flickr_id": "19654577", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43760", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she showed me where she lived .", "storylet_id": "218801"}], [{"original_text": "The streets were very old and cluttered. ", "album_id": "461497", "photo_flickr_id": "19654794", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43760", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the streets were very old and cluttered .", "storylet_id": "218802"}], [{"original_text": "I think ts was a bull walking down the street.", "album_id": "461497", "photo_flickr_id": "19654712", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43760", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i think ts was a bull walking down the street .", "storylet_id": "218803"}], [{"original_text": "This structure was right in the middle of town.", "album_id": "461497", "photo_flickr_id": "19654552", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43760", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this structure was right in the middle of town .", "storylet_id": "218804"}], [{"original_text": "Kiran lives in a small village in Bangladesh.", "album_id": "461497", "photo_flickr_id": "19654343", "setting": "first-2-pick-and-tell", "worker_id": "YZFC6SDMHSZRXS3", "story_id": "43761", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "kiran lives in a small village in location .", "storylet_id": "218805"}], [{"original_text": "Her home is in a large, but beautiful apartment complex.", "album_id": "461497", "photo_flickr_id": "19654754", "setting": "first-2-pick-and-tell", "worker_id": "YZFC6SDMHSZRXS3", "story_id": "43761", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her home is in a large , but beautiful apartment complex .", "storylet_id": "218806"}], [{"original_text": "Her mother tries her best to keep a tidy home, inside and out.", "album_id": "461497", "photo_flickr_id": "19654727", "setting": "first-2-pick-and-tell", "worker_id": "YZFC6SDMHSZRXS3", "story_id": "43761", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her mother tries her best to keep a tidy home , inside and out .", "storylet_id": "218807"}], [{"original_text": "Her father herds cattle for her family.", "album_id": "461497", "photo_flickr_id": "19654712", "setting": "first-2-pick-and-tell", "worker_id": "YZFC6SDMHSZRXS3", "story_id": "43761", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her father herds cattle for her family .", "storylet_id": "218808"}], [{"original_text": "They are a close, happy family.", "album_id": "461497", "photo_flickr_id": "19654604", "setting": "first-2-pick-and-tell", "worker_id": "YZFC6SDMHSZRXS3", "story_id": "43761", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are a close , happy family .", "storylet_id": "218809"}], [{"original_text": "I went on vacation last weekend.", "album_id": "461497", "photo_flickr_id": "19654362", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43762", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on vacation last weekend .", "storylet_id": "218810"}], [{"original_text": "I stayed in a really small hotel.", "album_id": "461497", "photo_flickr_id": "19654577", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43762", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i stayed in a really small hotel .", "storylet_id": "218811"}], [{"original_text": "There were only a few people staying there.", "album_id": "461497", "photo_flickr_id": "19654794", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43762", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were only a few people staying there .", "storylet_id": "218812"}], [{"original_text": "Outside there was cattle walking around.", "album_id": "461497", "photo_flickr_id": "19654712", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43762", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "outside there was cattle walking around .", "storylet_id": "218813"}], [{"original_text": "I had a good time walking the streets and admiring the buildings.", "album_id": "461497", "photo_flickr_id": "19654552", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43762", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a good time walking the streets and admiring the buildings .", "storylet_id": "218814"}], [{"original_text": "My little girls outside of a building on our Rome vacation.", "album_id": "461497", "photo_flickr_id": "19654362", "setting": "last-3-pick-old-and-tell", "worker_id": "SFO7SMBG66OR1F1", "story_id": "43763", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my little girls outside of a building on our location vacation .", "storylet_id": "218815"}], [{"original_text": "A house in Rome my girl was posing in front of.", "album_id": "461497", "photo_flickr_id": "19654577", "setting": "last-3-pick-old-and-tell", "worker_id": "SFO7SMBG66OR1F1", "story_id": "43763", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a house in location my girl was posing in front of .", "storylet_id": "218816"}], [{"original_text": "This scene I shot reminds me of some movie I saw, can't remember which.", "album_id": "461497", "photo_flickr_id": "19654794", "setting": "last-3-pick-old-and-tell", "worker_id": "SFO7SMBG66OR1F1", "story_id": "43763", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this scene i shot reminds me of some movie i saw , ca n't remember which .", "storylet_id": "218817"}], [{"original_text": "This is a bull we found near by, pretty cool.", "album_id": "461497", "photo_flickr_id": "19654712", "setting": "last-3-pick-old-and-tell", "worker_id": "SFO7SMBG66OR1F1", "story_id": "43763", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a bull we found near by , pretty cool .", "storylet_id": "218818"}], [{"original_text": "I love the architecture on this light here, we don't design things like this back home.", "album_id": "461497", "photo_flickr_id": "19654552", "setting": "last-3-pick-old-and-tell", "worker_id": "SFO7SMBG66OR1F1", "story_id": "43763", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love the architecture on this light here , we do n't design things like this back home .", "storylet_id": "218819"}], [{"original_text": "The young girls in the village very excited that day. ", "album_id": "461497", "photo_flickr_id": "19654362", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43764", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the young girls in the village very excited that day .", "storylet_id": "218820"}], [{"original_text": "Banners were on all the lamp posts. ", "album_id": "461497", "photo_flickr_id": "19654577", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43764", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "banners were on all the lamp posts .", "storylet_id": "218821"}], [{"original_text": "However, by afternoon the streets were empty of humans. ", "album_id": "461497", "photo_flickr_id": "19654794", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43764", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however , by afternoon the streets were empty of humans .", "storylet_id": "218822"}], [{"original_text": "The great bull was ready to run. ", "album_id": "461497", "photo_flickr_id": "19654712", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43764", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the great bull was ready to run .", "storylet_id": "218823"}], [{"original_text": "The bulls would run around the square and the pedestrians would run along with them. ", "album_id": "461497", "photo_flickr_id": "19654552", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43764", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bulls would run around the square and the pedestrians would run along with them .", "storylet_id": "218824"}], [{"original_text": "The Miller family decided to renovate their little 100 year old house. ", "album_id": "478119", "photo_flickr_id": "20491785", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "43765", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the miller family decided to renovate their little 100 year old house .", "storylet_id": "218825"}], [{"original_text": "They started with the walls in the living room. ", "album_id": "478119", "photo_flickr_id": "20491355", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "43765", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they started with the walls in the living room .", "storylet_id": "218826"}], [{"original_text": "All of them were painted a brick red color. ", "album_id": "478119", "photo_flickr_id": "20491354", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "43765", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of them were painted a brick red color .", "storylet_id": "218827"}], [{"original_text": "The bathroom in contrast was painted a powder blue.", "album_id": "478119", "photo_flickr_id": "20491357", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "43765", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bathroom in contrast was painted a powder blue .", "storylet_id": "218828"}], [{"original_text": "The daughter's upstairs bedroom was painted purple with stenciled in flowers. ", "album_id": "478119", "photo_flickr_id": "20492337", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "43765", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the daughter 's upstairs bedroom was painted purple with stenciled in flowers .", "storylet_id": "218829"}], [{"original_text": "Moving into a new house became nerve-wrecking, but there's always moments when you have to adapt to changes.", "album_id": "478119", "photo_flickr_id": "20491785", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "43766", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "moving into a new house became nerve-wrecking , but there 's always moments when you have to adapt to changes .", "storylet_id": "218830"}], [{"original_text": "The next door neighbor was nice and gave my family a good vibe.", "album_id": "478119", "photo_flickr_id": "20491788", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "43766", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the next door neighbor was nice and gave my family a good vibe .", "storylet_id": "218831"}], [{"original_text": "Surprisingly the previous owners didn't trash the house, the kitchen was spotless.", "album_id": "478119", "photo_flickr_id": "20491783", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "43766", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "surprisingly the previous owners did n't trash the house , the kitchen was spotless .", "storylet_id": "218832"}], [{"original_text": "Let's hope that no creatures break through the small door in my sisters.", "album_id": "478119", "photo_flickr_id": "20492338", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "43766", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "let 's hope that no creatures break through the small door in my sisters .", "storylet_id": "218833"}], [{"original_text": "My room had two qualities that I adore: plain and simple. ", "album_id": "478119", "photo_flickr_id": "20492341", "setting": "first-2-pick-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "43766", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my room had two qualities that i adore : plain and simple .", "storylet_id": "218834"}], [{"original_text": "I just put my house up for sale.", "album_id": "478119", "photo_flickr_id": "20491785", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43767", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i just put my house up for sale .", "storylet_id": "218835"}], [{"original_text": "It's a great house.", "album_id": "478119", "photo_flickr_id": "20491788", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43767", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's a great house .", "storylet_id": "218836"}], [{"original_text": "I cleaned and fixed everything before I put it up for sale.", "album_id": "478119", "photo_flickr_id": "20491783", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43767", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i cleaned and fixed everything before i put it up for sale .", "storylet_id": "218837"}], [{"original_text": "I made sure all of the rooms were spotless.", "album_id": "478119", "photo_flickr_id": "20492338", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43767", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i made sure all of the rooms were spotless .", "storylet_id": "218838"}], [{"original_text": "I'm going to be sad to see this house be sold.", "album_id": "478119", "photo_flickr_id": "20492341", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43767", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm going to be sad to see this house be sold .", "storylet_id": "218839"}], [{"original_text": "I checked out a house for sale today.", "album_id": "478119", "photo_flickr_id": "20491785", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43768", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i checked out a house for sale today .", "storylet_id": "218840"}], [{"original_text": "The walls were a dark red, but that could be fixed.", "album_id": "478119", "photo_flickr_id": "20491355", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43768", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the walls were a dark red , but that could be fixed .", "storylet_id": "218841"}], [{"original_text": "It had a nice window facing out toward the street.", "album_id": "478119", "photo_flickr_id": "20491354", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43768", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it had a nice window facing out toward the street .", "storylet_id": "218842"}], [{"original_text": "The bathrooms were a little small for my taste.", "album_id": "478119", "photo_flickr_id": "20491357", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43768", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bathrooms were a little small for my taste .", "storylet_id": "218843"}], [{"original_text": "I liked the purple walls in the last room I saw. ", "album_id": "478119", "photo_flickr_id": "20492337", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43768", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i liked the purple walls in the last room i saw .", "storylet_id": "218844"}], [{"original_text": "This is a house that is being put up for sale.", "album_id": "478119", "photo_flickr_id": "20491785", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "43769", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a house that is being put up for sale .", "storylet_id": "218845"}], [{"original_text": "The owner is nearby checking to see if there's any damages.", "album_id": "478119", "photo_flickr_id": "20491788", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "43769", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the owner is nearby checking to see if there 's any damages .", "storylet_id": "218846"}], [{"original_text": "The kitchen is old but still functional.", "album_id": "478119", "photo_flickr_id": "20491783", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "43769", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kitchen is old but still functional .", "storylet_id": "218847"}], [{"original_text": "The wallpaper needs a bit of an upgrade though.", "album_id": "478119", "photo_flickr_id": "20492338", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "43769", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wallpaper needs a bit of an upgrade though .", "storylet_id": "218848"}], [{"original_text": "This is the children's room that also needs to be repainted.", "album_id": "478119", "photo_flickr_id": "20492341", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "43769", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the children 's room that also needs to be repainted .", "storylet_id": "218849"}], [{"original_text": "The couple is going to a beautiful, exotic island.", "album_id": "866852", "photo_flickr_id": "18408506", "setting": "first-2-pick-and-tell", "worker_id": "YZFC6SDMHSZRXS3", "story_id": "43770", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple is going to a beautiful , exotic island .", "storylet_id": "218850"}], [{"original_text": "They are enjoying the sunset on the island together.", "album_id": "866852", "photo_flickr_id": "18411911", "setting": "first-2-pick-and-tell", "worker_id": "YZFC6SDMHSZRXS3", "story_id": "43770", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are enjoying the sunset on the island together .", "storylet_id": "218851"}], [{"original_text": "He is very excited to enjoy the sunshine on their vacation!", "album_id": "866852", "photo_flickr_id": "5832860263", "setting": "first-2-pick-and-tell", "worker_id": "YZFC6SDMHSZRXS3", "story_id": "43770", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he is very excited to enjoy the sunshine on their vacation !", "storylet_id": "218852"}], [{"original_text": "The bungalow they are staying at is charming and sweet.", "album_id": "866852", "photo_flickr_id": "18413341", "setting": "first-2-pick-and-tell", "worker_id": "YZFC6SDMHSZRXS3", "story_id": "43770", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bungalow they are staying at is charming and sweet .", "storylet_id": "218853"}], [{"original_text": "They are celebrating their vacation with some alcohol with lunch!", "album_id": "866852", "photo_flickr_id": "5833310756", "setting": "first-2-pick-and-tell", "worker_id": "YZFC6SDMHSZRXS3", "story_id": "43770", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are celebrating their vacation with some alcohol with lunch !", "storylet_id": "218854"}], [{"original_text": "Lisa and her boyfriend went to a tropical island for their vacation.", "album_id": "866852", "photo_flickr_id": "18408506", "setting": "first-2-pick-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "43771", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and her boyfriend went to a tropical island for their vacation .", "storylet_id": "218855"}], [{"original_text": "The trees had big red fruit on them, some houses had signs out front.", "album_id": "866852", "photo_flickr_id": "5833392473", "setting": "first-2-pick-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "43771", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the trees had big red fruit on them , some houses had signs out front .", "storylet_id": "218856"}], [{"original_text": "The homes were painted in bright cheery colors and very tidy.", "album_id": "866852", "photo_flickr_id": "5833991304", "setting": "first-2-pick-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "43771", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the homes were painted in bright cheery colors and very tidy .", "storylet_id": "218857"}], [{"original_text": "After their fun bike tour Lisa and her boyfriend had a great lunch in an beachside cafe.", "album_id": "866852", "photo_flickr_id": "5833310756", "setting": "first-2-pick-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "43771", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after their fun bike tour [female] and her boyfriend had a great lunch in an beachside cafe .", "storylet_id": "218858"}], [{"original_text": "Then they had a hammock siesta with a friendly cat. Island living is the best.", "album_id": "866852", "photo_flickr_id": "5833412724", "setting": "first-2-pick-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "43771", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then they had a hammock siesta with a friendly cat . island living is the best .", "storylet_id": "218859"}], [{"original_text": "They were about to land on the island.", "album_id": "866852", "photo_flickr_id": "18408506", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "43772", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were about to land on the island .", "storylet_id": "218860"}], [{"original_text": "They caught one of the famous sunsets.", "album_id": "866852", "photo_flickr_id": "18411911", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "43772", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they caught one of the famous sunsets .", "storylet_id": "218861"}], [{"original_text": "They took a picture outside of a building.", "album_id": "866852", "photo_flickr_id": "5832860263", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "43772", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they took a picture outside of a building .", "storylet_id": "218862"}], [{"original_text": "They took another picture.", "album_id": "866852", "photo_flickr_id": "18413341", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "43772", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they took another picture .", "storylet_id": "218863"}], [{"original_text": "They finally stopped for lunch.", "album_id": "866852", "photo_flickr_id": "5833310756", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "43772", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they finally stopped for lunch .", "storylet_id": "218864"}], [{"original_text": "I had a great time on vacation last week.", "album_id": "866852", "photo_flickr_id": "18408506", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43773", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time on vacation last week .", "storylet_id": "218865"}], [{"original_text": "I stayed at a great resort with a spectacular view.", "album_id": "866852", "photo_flickr_id": "18411911", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43773", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i stayed at a great resort with a spectacular view .", "storylet_id": "218866"}], [{"original_text": "Some of my friends came with us.", "album_id": "866852", "photo_flickr_id": "5832860263", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43773", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of my friends came with us .", "storylet_id": "218867"}], [{"original_text": "We saw a lot of the local city when we went on walks.", "album_id": "866852", "photo_flickr_id": "18413341", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43773", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw a lot of the local city when we went on walks .", "storylet_id": "218868"}], [{"original_text": "In the evening we would relax in one of the local restaurants.", "album_id": "866852", "photo_flickr_id": "5833310756", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43773", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the evening we would relax in one of the local restaurants .", "storylet_id": "218869"}], [{"original_text": "This is an overshot we took while on the plane.", "album_id": "866852", "photo_flickr_id": "18408506", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43774", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is an overshot we took while on the plane .", "storylet_id": "218870"}], [{"original_text": "When we arrived, we confronted our place to stay in for the night.", "album_id": "866852", "photo_flickr_id": "5833392473", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43774", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we arrived , we confronted our place to stay in for the night .", "storylet_id": "218871"}], [{"original_text": "The homes next door has many colors.", "album_id": "866852", "photo_flickr_id": "5833991304", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43774", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the homes next door has many colors .", "storylet_id": "218872"}], [{"original_text": "After sightseeing, we decided to drink a couple of beers.", "album_id": "866852", "photo_flickr_id": "5833310756", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43774", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after sightseeing , we decided to drink a couple of beers .", "storylet_id": "218873"}], [{"original_text": "Finally, we relaxed on a hammock with our friendly pet.", "album_id": "866852", "photo_flickr_id": "5833412724", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43774", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , we relaxed on a hammock with our friendly pet .", "storylet_id": "218874"}], [{"original_text": "We took a cruise, the ship was really amazing!", "album_id": "569233", "photo_flickr_id": "24933426", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "43775", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a cruise , the ship was really amazing !", "storylet_id": "218875"}], [{"original_text": "The rooms were small but cozy.", "album_id": "569233", "photo_flickr_id": "24931398", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "43775", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rooms were small but cozy .", "storylet_id": "218876"}], [{"original_text": "We got to stop off at some beautiful beaches!", "album_id": "569233", "photo_flickr_id": "24928284", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "43775", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got to stop off at some beautiful beaches !", "storylet_id": "218877"}], [{"original_text": "While we were here we decided to give para sailing a try.", "album_id": "569233", "photo_flickr_id": "24930294", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "43775", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while we were here we decided to give para sailing a try .", "storylet_id": "218878"}], [{"original_text": "That is really high up in the air!", "album_id": "569233", "photo_flickr_id": "24930299", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "43775", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that is really high up in the air !", "storylet_id": "218879"}], [{"original_text": "They wanted to enjoy a fantastic Caribbean vacation.", "album_id": "569233", "photo_flickr_id": "24929914", "setting": "first-2-pick-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "43776", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they wanted to enjoy a fantastic location vacation .", "storylet_id": "218880"}], [{"original_text": "They were able to do a lot of different activities like paragliding.", "album_id": "569233", "photo_flickr_id": "24931395", "setting": "first-2-pick-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "43776", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were able to do a lot of different activities like paragliding .", "storylet_id": "218881"}], [{"original_text": "Something else they did that they enjoyed was exploring caves near by in a tour group.", "album_id": "569233", "photo_flickr_id": "24928283", "setting": "first-2-pick-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "43776", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "something else they did that they enjoyed was exploring caves near by in a tour group .", "storylet_id": "218882"}], [{"original_text": "Though there were some rainy days, there was always something to do on the ship.", "album_id": "569233", "photo_flickr_id": "24931398", "setting": "first-2-pick-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "43776", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "though there were some rainy days , there was always something to do on the ship .", "storylet_id": "218883"}], [{"original_text": "They would visit the pool on rainy days and just relax.", "album_id": "569233", "photo_flickr_id": "24931400", "setting": "first-2-pick-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "43776", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they would visit the pool on rainy days and just relax .", "storylet_id": "218884"}], [{"original_text": "The cruise ship staff worked to get the ship ready for the guests to arrive.", "album_id": "569233", "photo_flickr_id": "24933426", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43777", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cruise ship staff worked to get the ship ready for the guests to arrive .", "storylet_id": "218885"}], [{"original_text": "One guest in particular, Danny, was so excited when he got to his room.", "album_id": "569233", "photo_flickr_id": "24931398", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43777", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one guest in particular , [male] , was so excited when he got to his room .", "storylet_id": "218886"}], [{"original_text": "He couldn't wait for the ship to stop at private beaches,", "album_id": "569233", "photo_flickr_id": "24928284", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43777", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he could n't wait for the ship to stop at private beaches ,", "storylet_id": "218887"}], [{"original_text": "while his wife Sherri", "album_id": "569233", "photo_flickr_id": "24930294", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43777", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while his wife [female]", "storylet_id": "218888"}], [{"original_text": "couldn't wait to parasail.", "album_id": "569233", "photo_flickr_id": "24930299", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43777", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "could n't wait to parasail .", "storylet_id": "218889"}], [{"original_text": "This is the boat we rode to get to our destination.", "album_id": "569233", "photo_flickr_id": "24933426", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43778", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the boat we rode to get to our destination .", "storylet_id": "218890"}], [{"original_text": "The room was not big, but it was enough.", "album_id": "569233", "photo_flickr_id": "24931398", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43778", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the room was not big , but it was enough .", "storylet_id": "218891"}], [{"original_text": "We were greeted by the beach.", "album_id": "569233", "photo_flickr_id": "24928284", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43778", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were greeted by the beach .", "storylet_id": "218892"}], [{"original_text": "Our daughter got ready to parachute into the air.", "album_id": "569233", "photo_flickr_id": "24930294", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43778", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our daughter got ready to parachute into the air .", "storylet_id": "218893"}], [{"original_text": "Moments like this, makes us very proud to be parents.", "album_id": "569233", "photo_flickr_id": "24930299", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43778", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "moments like this , makes us very proud to be parents .", "storylet_id": "218894"}], [{"original_text": "I've stored my luggage away and I'm ready to set sail on my once in a lifetime vacation.", "album_id": "569233", "photo_flickr_id": "24933426", "setting": "last-3-pick-old-and-tell", "worker_id": "JS557HK2R9UWYY4", "story_id": "43779", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 've stored my luggage away and i 'm ready to set sail on my once in a lifetime vacation .", "storylet_id": "218895"}], [{"original_text": "To pass the time, I ate a small meal in my room.", "album_id": "569233", "photo_flickr_id": "24931398", "setting": "last-3-pick-old-and-tell", "worker_id": "JS557HK2R9UWYY4", "story_id": "43779", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to pass the time , i ate a small meal in my room .", "storylet_id": "218896"}], [{"original_text": "The first thing I noticed upon arrival was the sparkling blue ocean and white sand.", "album_id": "569233", "photo_flickr_id": "24928284", "setting": "last-3-pick-old-and-tell", "worker_id": "JS557HK2R9UWYY4", "story_id": "43779", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first thing i noticed upon arrival was the sparkling blue ocean and white sand .", "storylet_id": "218897"}], [{"original_text": "I dared my friend to go flying.", "album_id": "569233", "photo_flickr_id": "24930294", "setting": "last-3-pick-old-and-tell", "worker_id": "JS557HK2R9UWYY4", "story_id": "43779", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i dared my friend to go flying .", "storylet_id": "218898"}], [{"original_text": "She took the dare and flew high like a kite.", "album_id": "569233", "photo_flickr_id": "24930299", "setting": "last-3-pick-old-and-tell", "worker_id": "JS557HK2R9UWYY4", "story_id": "43779", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she took the dare and flew high like a kite .", "storylet_id": "218899"}], [{"original_text": "It was a scary storm that came to the town.", "album_id": "663795", "photo_flickr_id": "29447344", "setting": "first-2-pick-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "43780", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a scary storm that came to the town .", "storylet_id": "218900"}], [{"original_text": "Many homes were destroyed worse then this, but still it was bad.", "album_id": "663795", "photo_flickr_id": "29447466", "setting": "first-2-pick-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "43780", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many homes were destroyed worse then this , but still it was bad .", "storylet_id": "218901"}], [{"original_text": "Unlucky cars were crushed under the trees.", "album_id": "663795", "photo_flickr_id": "29447721", "setting": "first-2-pick-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "43780", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "unlucky cars were crushed under the trees .", "storylet_id": "218902"}], [{"original_text": "The few lucky ones had the tree land on the side, narrowly missing.", "album_id": "663795", "photo_flickr_id": "29447892", "setting": "first-2-pick-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "43780", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the few lucky ones had the tree land on the side , narrowly missing .", "storylet_id": "218903"}], [{"original_text": "Local police were around to assist people though, so that helped.", "album_id": "663795", "photo_flickr_id": "29501389", "setting": "first-2-pick-and-tell", "worker_id": "Z2QQ4I82S38YLPW", "story_id": "43780", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "local police were around to assist people though , so that helped .", "storylet_id": "218904"}], [{"original_text": "There was a terrible storm yesterday. A tree was knocked over by the wind and landed on my car!", "album_id": "663795", "photo_flickr_id": "29447977", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43781", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a terrible storm yesterday . a tree was knocked over by the wind and landed on my car !", "storylet_id": "218905"}], [{"original_text": "The windows of my house were blown out by the strong winds.", "album_id": "663795", "photo_flickr_id": "29447344", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43781", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the windows of my house were blown out by the strong winds .", "storylet_id": "218906"}], [{"original_text": "The storm damaged many buildings taking away the roofs of some homes.", "album_id": "663795", "photo_flickr_id": "29447466", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43781", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the storm damaged many buildings taking away the roofs of some homes .", "storylet_id": "218907"}], [{"original_text": "Trees blocked roads, damaged houses and cars, and took down power lines.", "album_id": "663795", "photo_flickr_id": "29447721", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43781", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "trees blocked roads , damaged houses and cars , and took down power lines .", "storylet_id": "218908"}], [{"original_text": "After the storm the police were busy taking reports of the damage that occurred.", "album_id": "663795", "photo_flickr_id": "29501389", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "43781", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the storm the police were busy taking reports of the damage that occurred .", "storylet_id": "218909"}], [{"original_text": "A really bad storm came through our area last night and caused a lot of damage.", "album_id": "663795", "photo_flickr_id": "29447344", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43782", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a really bad storm came through our area last night and caused a lot of damage .", "storylet_id": "218910"}], [{"original_text": "Some people speculated it was a tornado because it tore off some roofs.", "album_id": "663795", "photo_flickr_id": "29447466", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43782", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some people speculated it was a tornado because it tore off some roofs .", "storylet_id": "218911"}], [{"original_text": "Trees were snapped like toothpicks everywhere you looked.", "album_id": "663795", "photo_flickr_id": "29447721", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43782", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "trees were snapped like toothpicks everywhere you looked .", "storylet_id": "218912"}], [{"original_text": "This fellow was lucky his vehicle was only scratched.", "album_id": "663795", "photo_flickr_id": "29447892", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43782", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this fellow was lucky his vehicle was only scratched .", "storylet_id": "218913"}], [{"original_text": "Streets to the area were closed off. Police only allowed you in if you could prove you lived there.", "album_id": "663795", "photo_flickr_id": "29501389", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "43782", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "streets to the area were closed off . police only allowed you in if you could prove you lived there .", "storylet_id": "218914"}], [{"original_text": "There was a storm that got so bad it knocked over trees. ", "album_id": "663795", "photo_flickr_id": "29447344", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43783", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a storm that got so bad it knocked over trees .", "storylet_id": "218915"}], [{"original_text": "A large brick building was completely demolished. ", "album_id": "663795", "photo_flickr_id": "29447466", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43783", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a large brick building was completely demolished .", "storylet_id": "218916"}], [{"original_text": "Trees were knocked down all around it. ", "album_id": "663795", "photo_flickr_id": "29447721", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43783", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "trees were knocked down all around it .", "storylet_id": "218917"}], [{"original_text": "One tree barely missed a van. ", "album_id": "663795", "photo_flickr_id": "29447892", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43783", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one tree barely missed a van .", "storylet_id": "218918"}], [{"original_text": "Two officers showed up to keep people out. ", "album_id": "663795", "photo_flickr_id": "29501389", "setting": "last-3-pick-old-and-tell", "worker_id": "0BGIXRC97FWS7GD", "story_id": "43783", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "two officers showed up to keep people out .", "storylet_id": "218919"}], [{"original_text": "There was an emergency situation after the storm.", "album_id": "663795", "photo_flickr_id": "29447977", "setting": "last-3-pick-old-and-tell", "worker_id": "SDRPBG199TQ2MS6", "story_id": "43784", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an emergency situation after the storm .", "storylet_id": "218920"}], [{"original_text": "Many trees had fallen and, a building was damaged.", "album_id": "663795", "photo_flickr_id": "29447344", "setting": "last-3-pick-old-and-tell", "worker_id": "SDRPBG199TQ2MS6", "story_id": "43784", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many trees had fallen and , a building was damaged .", "storylet_id": "218921"}], [{"original_text": "The damage to the building was very severe.", "album_id": "663795", "photo_flickr_id": "29447466", "setting": "last-3-pick-old-and-tell", "worker_id": "SDRPBG199TQ2MS6", "story_id": "43784", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the damage to the building was very severe .", "storylet_id": "218922"}], [{"original_text": "Cars nearby were damaged as well.", "album_id": "663795", "photo_flickr_id": "29447721", "setting": "last-3-pick-old-and-tell", "worker_id": "SDRPBG199TQ2MS6", "story_id": "43784", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cars nearby were damaged as well .", "storylet_id": "218923"}], [{"original_text": "Luckily, the police were nearby to help.", "album_id": "663795", "photo_flickr_id": "29501389", "setting": "last-3-pick-old-and-tell", "worker_id": "SDRPBG199TQ2MS6", "story_id": "43784", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "luckily , the police were nearby to help .", "storylet_id": "218924"}], [{"original_text": "After hiking for a few hours I went back into the city.", "album_id": "817228", "photo_flickr_id": "36997994", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43785", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after hiking for a few hours i went back into the city .", "storylet_id": "218925"}], [{"original_text": "There was nobody out on the streets when I got there.", "album_id": "817228", "photo_flickr_id": "36998148", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43785", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was nobody out on the streets when i got there .", "storylet_id": "218926"}], [{"original_text": "Some of the fountains were still working.", "album_id": "817228", "photo_flickr_id": "36998121", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43785", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the fountains were still working .", "storylet_id": "218927"}], [{"original_text": "The city was flooded in some areas.", "album_id": "817228", "photo_flickr_id": "36998328", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43785", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the city was flooded in some areas .", "storylet_id": "218928"}], [{"original_text": "I decided to head back home.", "album_id": "817228", "photo_flickr_id": "36998303", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43785", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to head back home .", "storylet_id": "218929"}], [{"original_text": "Visiting Viscaya museum in Miami Florida.", "album_id": "817228", "photo_flickr_id": "36998148", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43786", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visiting location museum in location location .", "storylet_id": "218930"}], [{"original_text": "The outdoor area and garden . ", "album_id": "817228", "photo_flickr_id": "36999160", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43786", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the outdoor area and garden .", "storylet_id": "218931"}], [{"original_text": "Potential wedding venue for a spring bride.", "album_id": "817228", "photo_flickr_id": "36998966", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43786", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "potential wedding venue for a spring bride .", "storylet_id": "218932"}], [{"original_text": "The outdoor pool is underground. ", "album_id": "817228", "photo_flickr_id": "36998328", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43786", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the outdoor pool is underground .", "storylet_id": "218933"}], [{"original_text": "Viscaya outdoor boat right outside the patio.", "album_id": "817228", "photo_flickr_id": "36998504", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43786", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "viscaya outdoor boat right outside the patio .", "storylet_id": "218934"}], [{"original_text": "Never seen a bug like this before. Gross.", "album_id": "817228", "photo_flickr_id": "36997994", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43787", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "never seen a bug like this before . gross .", "storylet_id": "218935"}], [{"original_text": "This place is majestic.", "album_id": "817228", "photo_flickr_id": "36998148", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43787", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this place is majestic .", "storylet_id": "218936"}], [{"original_text": "A fountain pool in the courtyard. How fantastic is that.", "album_id": "817228", "photo_flickr_id": "36998121", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43787", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a fountain pool in the courtyard . how fantastic is that .", "storylet_id": "218937"}], [{"original_text": "Imagine swimming in this thing. Wow.", "album_id": "817228", "photo_flickr_id": "36998328", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43787", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "imagine swimming in this thing . wow .", "storylet_id": "218938"}], [{"original_text": "You can only go up those stairs if you swim across. This place is the best!", "album_id": "817228", "photo_flickr_id": "36998303", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43787", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you can only go up those stairs if you swim across . this place is the best !", "storylet_id": "218939"}], [{"original_text": "The facade of this mansion is beautiful. ", "album_id": "817228", "photo_flickr_id": "36998148", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "43788", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the facade of this mansion is beautiful .", "storylet_id": "218940"}], [{"original_text": "The nature around it was even more beautiful. ", "album_id": "817228", "photo_flickr_id": "36999160", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "43788", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the nature around it was even more beautiful .", "storylet_id": "218941"}], [{"original_text": "It was elegant but also familiar, was the Godfather Part II filmed here? ", "album_id": "817228", "photo_flickr_id": "36998966", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "43788", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was elegant but also familiar , was the godfather part ii filmed here ?", "storylet_id": "218942"}], [{"original_text": "Even the water look dazzling, almost surreal. ", "album_id": "817228", "photo_flickr_id": "36998328", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "43788", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the water look dazzling , almost surreal .", "storylet_id": "218943"}], [{"original_text": "And now i'm back home in New England, so lame. ", "album_id": "817228", "photo_flickr_id": "36998504", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "43788", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and now i 'm back home in location location , so lame .", "storylet_id": "218944"}], [{"original_text": "I could handle living here all the time.", "album_id": "817228", "photo_flickr_id": "36998148", "setting": "last-3-pick-old-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43789", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i could handle living here all the time .", "storylet_id": "218945"}], [{"original_text": "This house is huge! We could fit my whole family in there.", "album_id": "817228", "photo_flickr_id": "36999160", "setting": "last-3-pick-old-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43789", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this house is huge ! we could fit my whole family in there .", "storylet_id": "218946"}], [{"original_text": "I would hate to mow the yard though. Would take all week.", "album_id": "817228", "photo_flickr_id": "36998966", "setting": "last-3-pick-old-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43789", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i would hate to mow the yard though . would take all week .", "storylet_id": "218947"}], [{"original_text": "This is an awesome pool. It flows right into the house.", "album_id": "817228", "photo_flickr_id": "36998328", "setting": "last-3-pick-old-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43789", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is an awesome pool . it flows right into the house .", "storylet_id": "218948"}], [{"original_text": "The last stop of the day was the ocean. Love looking at the water.", "album_id": "817228", "photo_flickr_id": "36998504", "setting": "last-3-pick-old-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43789", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last stop of the day was the ocean . love looking at the water .", "storylet_id": "218949"}], [{"original_text": "The family just moved into a big mansion last week.", "album_id": "862633", "photo_flickr_id": "39157431", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43790", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family just moved into a big mansion last week .", "storylet_id": "218950"}], [{"original_text": "One of the best parts of the house is the flower garden.", "album_id": "862633", "photo_flickr_id": "39161965", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43790", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of the best parts of the house is the flower garden .", "storylet_id": "218951"}], [{"original_text": "There are gorgeous purple flowers everywhere.", "album_id": "862633", "photo_flickr_id": "39165193", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43790", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are gorgeous purple flowers everywhere .", "storylet_id": "218952"}], [{"original_text": "Among the purple flowers, there are also bright yellow flowers.", "album_id": "862633", "photo_flickr_id": "39166041", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43790", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "among the purple flowers , there are also bright yellow flowers .", "storylet_id": "218953"}], [{"original_text": "The mansion is surrounded by a stone wall. ", "album_id": "862633", "photo_flickr_id": "39170626", "setting": "first-2-pick-and-tell", "worker_id": "HPEILHYVCYPHIZH", "story_id": "43790", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the mansion is surrounded by a stone wall .", "storylet_id": "218954"}], [{"original_text": "Here is my home in the suberbs of our town.", "album_id": "862633", "photo_flickr_id": "39157431", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43791", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is my home in the suberbs of our town .", "storylet_id": "218955"}], [{"original_text": "The backyard is fenced in with flowers throughout.", "album_id": "862633", "photo_flickr_id": "39170626", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43791", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the backyard is fenced in with flowers throughout .", "storylet_id": "218956"}], [{"original_text": "Multi colored annuals show their brilliance.", "album_id": "862633", "photo_flickr_id": "39166041", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43791", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "multi colored annuals show their brilliance .", "storylet_id": "218957"}], [{"original_text": "The flowers stand tall in the grasses along the fence line.", "album_id": "862633", "photo_flickr_id": "39166828", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43791", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the flowers stand tall in the grasses along the fence line .", "storylet_id": "218958"}], [{"original_text": "Opening its face to the sun, this purple flower is a favorite.", "album_id": "862633", "photo_flickr_id": "39165193", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43791", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "opening its face to the sun , this purple flower is a favorite .", "storylet_id": "218959"}], [{"original_text": "I went to the farm the other day.", "album_id": "862633", "photo_flickr_id": "39157431", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43792", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the farm the other day .", "storylet_id": "218960"}], [{"original_text": "The place was even more beautiful than I can remember.", "album_id": "862633", "photo_flickr_id": "39161965", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43792", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the place was even more beautiful than i can remember .", "storylet_id": "218961"}], [{"original_text": "All of the flowers were blooming.", "album_id": "862633", "photo_flickr_id": "39165193", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43792", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of the flowers were blooming .", "storylet_id": "218962"}], [{"original_text": "It was so pretty.", "album_id": "862633", "photo_flickr_id": "39166041", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43792", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was so pretty .", "storylet_id": "218963"}], [{"original_text": "I was very glad that I decided to go.", "album_id": "862633", "photo_flickr_id": "39170626", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43792", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was very glad that i decided to go .", "storylet_id": "218964"}], [{"original_text": "MY aunt's house is big and beautiful.", "album_id": "862633", "photo_flickr_id": "39157431", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "43793", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my aunt 's house is big and beautiful .", "storylet_id": "218965"}], [{"original_text": "Her flowers are diverse.", "album_id": "862633", "photo_flickr_id": "39161965", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "43793", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her flowers are diverse .", "storylet_id": "218966"}], [{"original_text": "And smell great.", "album_id": "862633", "photo_flickr_id": "39165193", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "43793", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and smell great .", "storylet_id": "218967"}], [{"original_text": "She had all different sizes and colors.", "album_id": "862633", "photo_flickr_id": "39166041", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "43793", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she had all different sizes and colors .", "storylet_id": "218968"}], [{"original_text": "My grandma has a beautiful flower garden.", "album_id": "862633", "photo_flickr_id": "39170626", "setting": "last-3-pick-old-and-tell", "worker_id": "Z21D0GK0EOEVC2G", "story_id": "43793", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my grandma has a beautiful flower garden .", "storylet_id": "218969"}], [{"original_text": "The church grounds were very well kept.", "album_id": "862633", "photo_flickr_id": "39157431", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43794", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the church grounds were very well kept .", "storylet_id": "218970"}], [{"original_text": "The staff had hired a groundskeeper,", "album_id": "862633", "photo_flickr_id": "39161965", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43794", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the staff had hired a groundskeeper ,", "storylet_id": "218971"}], [{"original_text": "who water the flowers", "album_id": "862633", "photo_flickr_id": "39165193", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43794", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "who water the flowers", "storylet_id": "218972"}], [{"original_text": "and sprayed pesticides so the bugs didn't destroy them.", "album_id": "862633", "photo_flickr_id": "39166041", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43794", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and sprayed pesticides so the bugs did n't destroy them .", "storylet_id": "218973"}], [{"original_text": "The groundskeeper did a good job making sure the church stayed in tip top condition. ", "album_id": "862633", "photo_flickr_id": "39170626", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43794", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the groundskeeper did a good job making sure the church stayed in tip top condition .", "storylet_id": "218974"}], [{"original_text": "The bus ride was a long one. ", "album_id": "877968", "photo_flickr_id": "39931689", "setting": "first-2-pick-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "43795", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bus ride was a long one .", "storylet_id": "218975"}], [{"original_text": "The views from the bus were amazing. The town was beautiful. ", "album_id": "877968", "photo_flickr_id": "39932162", "setting": "first-2-pick-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "43795", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the views from the bus were amazing . the town was beautiful .", "storylet_id": "218976"}], [{"original_text": "The museum is beautiful. Plenty of history is in there. ", "album_id": "877968", "photo_flickr_id": "39932674", "setting": "first-2-pick-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "43795", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the museum is beautiful . plenty of history is in there .", "storylet_id": "218977"}], [{"original_text": "I am waiting for the next train to come. ", "album_id": "877968", "photo_flickr_id": "74921380", "setting": "first-2-pick-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "43795", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i am waiting for the next train to come .", "storylet_id": "218978"}], [{"original_text": "Finally, I can rest on the train. ", "album_id": "877968", "photo_flickr_id": "74924146", "setting": "first-2-pick-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "43795", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , i can rest on the train .", "storylet_id": "218979"}], [{"original_text": "I made to the bus and found my seat.", "album_id": "877968", "photo_flickr_id": "39931689", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43796", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i made to the bus and found my seat .", "storylet_id": "218980"}], [{"original_text": "It was a very clear day out.", "album_id": "877968", "photo_flickr_id": "39931981", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43796", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a very clear day out .", "storylet_id": "218981"}], [{"original_text": "The mountains were beautiful in the distance.", "album_id": "877968", "photo_flickr_id": "39932162", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43796", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the mountains were beautiful in the distance .", "storylet_id": "218982"}], [{"original_text": "The sky started to get a little dark like it was going to rain.", "album_id": "877968", "photo_flickr_id": "39932310", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43796", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sky started to get a little dark like it was going to rain .", "storylet_id": "218983"}], [{"original_text": "I finally made it to lunch and they offered quite the spread.", "album_id": "877968", "photo_flickr_id": "39932933", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43796", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i finally made it to lunch and they offered quite the spread .", "storylet_id": "218984"}], [{"original_text": "I am going on a trip today.", "album_id": "877968", "photo_flickr_id": "39931689", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "43797", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am going on a trip today .", "storylet_id": "218985"}], [{"original_text": "The view on the drive is really great.", "album_id": "877968", "photo_flickr_id": "39932162", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "43797", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view on the drive is really great .", "storylet_id": "218986"}], [{"original_text": "I have finally arrived at the destination.", "album_id": "877968", "photo_flickr_id": "39932674", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "43797", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i have finally arrived at the destination .", "storylet_id": "218987"}], [{"original_text": "The inside of this place is huge.", "album_id": "877968", "photo_flickr_id": "74921380", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "43797", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the inside of this place is huge .", "storylet_id": "218988"}], [{"original_text": "I think I will take a little nap before getting started.", "album_id": "877968", "photo_flickr_id": "74924146", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "43797", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think i will take a little nap before getting started .", "storylet_id": "218989"}], [{"original_text": "After a long bus ride we finally reached the city.", "album_id": "877968", "photo_flickr_id": "39931689", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43798", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after a long bus ride we finally reached the city .", "storylet_id": "218990"}], [{"original_text": "It was a beautiful place.", "album_id": "877968", "photo_flickr_id": "39931981", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43798", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a beautiful place .", "storylet_id": "218991"}], [{"original_text": "They had man unique and interesting shops.", "album_id": "877968", "photo_flickr_id": "39932162", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43798", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had man unique and interesting shops .", "storylet_id": "218992"}], [{"original_text": "I had a great time there.", "album_id": "877968", "photo_flickr_id": "39932310", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43798", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had a great time there .", "storylet_id": "218993"}], [{"original_text": "At night we would to a restaurant and order food.", "album_id": "877968", "photo_flickr_id": "39932933", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43798", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night we would to a restaurant and order food .", "storylet_id": "218994"}], [{"original_text": "Sharon could not wait to visit a new country.", "album_id": "877968", "photo_flickr_id": "39931689", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43799", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] could not wait to visit a new country .", "storylet_id": "218995"}], [{"original_text": "It looked more dazzling to her than she previously imagined.", "album_id": "877968", "photo_flickr_id": "39932162", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43799", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it looked more dazzling to her than she previously imagined .", "storylet_id": "218996"}], [{"original_text": "A giant church looked brooding in the main courtyard.", "album_id": "877968", "photo_flickr_id": "39932674", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43799", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a giant church looked brooding in the main courtyard .", "storylet_id": "218997"}], [{"original_text": "Sharon waited in a hostel for a room to open up.", "album_id": "877968", "photo_flickr_id": "74921380", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43799", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] waited in a hostel for a room to open up .", "storylet_id": "218998"}], [{"original_text": "As soon as she got in one, she crashed and fell right asleep. ", "album_id": "877968", "photo_flickr_id": "74924146", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43799", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as soon as she got in one , she crashed and fell right asleep .", "storylet_id": "218999"}], [{"original_text": "They waited for the train to arrive.", "album_id": "1158466", "photo_flickr_id": "53435185", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43800", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they waited for the train to arrive .", "storylet_id": "219000"}], [{"original_text": "They were extremely anxious to see the skyline.", "album_id": "1158466", "photo_flickr_id": "53435333", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43800", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were extremely anxious to see the skyline .", "storylet_id": "219001"}], [{"original_text": "And, suddenly, they were passing by the city's skyline.", "album_id": "1158466", "photo_flickr_id": "53435343", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43800", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and , suddenly , they were passing by the city 's skyline .", "storylet_id": "219002"}], [{"original_text": "It was a beautiful site, and everyone began to take pictures.", "album_id": "1158466", "photo_flickr_id": "53435383", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43800", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a beautiful site , and everyone began to take pictures .", "storylet_id": "219003"}], [{"original_text": "After they departed the train, they were happy with their trip.", "album_id": "1158466", "photo_flickr_id": "53435396", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43800", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after they departed the train , they were happy with their trip .", "storylet_id": "219004"}], [{"original_text": "This was my first time riding public transportation. ", "album_id": "1158466", "photo_flickr_id": "53170778", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "43801", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was my first time riding public transportation .", "storylet_id": "219005"}], [{"original_text": "The line to get on the bus was extremely long, and seemed neverending. ", "album_id": "1158466", "photo_flickr_id": "53435420", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "43801", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the line to get on the bus was extremely long , and seemed neverending .", "storylet_id": "219006"}], [{"original_text": "We had to wait for a train to pass at the railroad crossing. ", "album_id": "1158466", "photo_flickr_id": "53435449", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "43801", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had to wait for a train to pass at the railroad crossing .", "storylet_id": "219007"}], [{"original_text": "The bus was not full currently, but with that line outside, I am sure that will change. ", "album_id": "1158466", "photo_flickr_id": "53435466", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "43801", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bus was not full currently , but with that line outside , i am sure that will change .", "storylet_id": "219008"}], [{"original_text": "My son was literally falling asleep on the bus ride. ", "album_id": "1158466", "photo_flickr_id": "53435494", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "43801", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my son was literally falling asleep on the bus ride .", "storylet_id": "219009"}], [{"original_text": "Walking through town they met a gathering of good people.", "album_id": "1158466", "photo_flickr_id": "53435185", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43802", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walking through town they met a gathering of good people .", "storylet_id": "219010"}], [{"original_text": "The train offered captivating views.", "album_id": "1158466", "photo_flickr_id": "53435333", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43802", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the train offered captivating views .", "storylet_id": "219011"}], [{"original_text": "Some of the better views from the train were the downtown skyline.", "album_id": "1158466", "photo_flickr_id": "53435343", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43802", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the better views from the train were the downtown skyline .", "storylet_id": "219012"}], [{"original_text": "The Chicago skyline is large and enticing.", "album_id": "1158466", "photo_flickr_id": "53435383", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43802", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the location skyline is large and enticing .", "storylet_id": "219013"}], [{"original_text": "He was having a wonderful time in the city.", "album_id": "1158466", "photo_flickr_id": "53435396", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "43802", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was having a wonderful time in the city .", "storylet_id": "219014"}], [{"original_text": "More often than not I prefer to take public transportation when I travel.", "album_id": "1158466", "photo_flickr_id": "53170778", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "43803", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "more often than not i prefer to take public transportation when i travel .", "storylet_id": "219015"}], [{"original_text": "It's a good way to meet and understand the local people.", "album_id": "1158466", "photo_flickr_id": "53435420", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "43803", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's a good way to meet and understand the local people .", "storylet_id": "219016"}], [{"original_text": "Recently, I hopped on a train from Paris to Barcelona.", "album_id": "1158466", "photo_flickr_id": "53435449", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "43803", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "recently , i hopped on a train from location to location .", "storylet_id": "219017"}], [{"original_text": "The ride was long so I made sure to get a seat and bring a new book.", "album_id": "1158466", "photo_flickr_id": "53435466", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "43803", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ride was long so i made sure to get a seat and bring a new book .", "storylet_id": "219018"}], [{"original_text": "The views on the way were awfully impressive.", "album_id": "1158466", "photo_flickr_id": "53435494", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "43803", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the views on the way were awfully impressive .", "storylet_id": "219019"}], [{"original_text": "The man was looking down", "album_id": "1158466", "photo_flickr_id": "53170778", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43804", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man was looking down", "storylet_id": "219020"}], [{"original_text": "as the people were coming.", "album_id": "1158466", "photo_flickr_id": "53435420", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43804", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the people were coming .", "storylet_id": "219021"}], [{"original_text": "They saw the train", "album_id": "1158466", "photo_flickr_id": "53435449", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43804", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they saw the train", "storylet_id": "219022"}], [{"original_text": "and they got on it ", "album_id": "1158466", "photo_flickr_id": "53435466", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43804", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and they got on it", "storylet_id": "219023"}], [{"original_text": "and looked outside.", "album_id": "1158466", "photo_flickr_id": "53435494", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43804", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and looked outside .", "storylet_id": "219024"}], [{"original_text": "She took a visit to a historic town today.", "album_id": "1304590", "photo_flickr_id": "60381689", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43805", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she took a visit to a historic town today .", "storylet_id": "219025"}], [{"original_text": "She passed by a local market.", "album_id": "1304590", "photo_flickr_id": "60382058", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43805", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she passed by a local market .", "storylet_id": "219026"}], [{"original_text": "She visited a bunch of tourist sites including this tower.", "album_id": "1304590", "photo_flickr_id": "60382647", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43805", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she visited a bunch of tourist sites including this tower .", "storylet_id": "219027"}], [{"original_text": "Later, she took a boat down a river to take in all the local buildings.", "album_id": "1304590", "photo_flickr_id": "60383559", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43805", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later , she took a boat down a river to take in all the local buildings .", "storylet_id": "219028"}], [{"original_text": "At the end of the day, she settled down in the apartment of a friend.", "album_id": "1304590", "photo_flickr_id": "60384249", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43805", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , she settled down in the apartment of a friend .", "storylet_id": "219029"}], [{"original_text": "The building was standing very tall in the park.", "album_id": "1304590", "photo_flickr_id": "60382647", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43806", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the building was standing very tall in the park .", "storylet_id": "219030"}], [{"original_text": "We traveled using a river.", "album_id": "1304590", "photo_flickr_id": "60383559", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43806", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we traveled using a river .", "storylet_id": "219031"}], [{"original_text": "There were very many figurines at the shop.", "album_id": "1304590", "photo_flickr_id": "60382965", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43806", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were very many figurines at the shop .", "storylet_id": "219032"}], [{"original_text": "The home was well decorated and had many windows.", "album_id": "1304590", "photo_flickr_id": "60381408", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43806", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the home was well decorated and had many windows .", "storylet_id": "219033"}], [{"original_text": "I told my wife to take a picture near the river.", "album_id": "1304590", "photo_flickr_id": "60381689", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43806", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i told my wife to take a picture near the river .", "storylet_id": "219034"}], [{"original_text": "I had a great time on vacation last year.", "album_id": "1304590", "photo_flickr_id": "60382647", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43807", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time on vacation last year .", "storylet_id": "219035"}], [{"original_text": "There was a canal that went through the entire city.", "album_id": "1304590", "photo_flickr_id": "60383559", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43807", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a canal that went through the entire city .", "storylet_id": "219036"}], [{"original_text": "It was great.", "album_id": "1304590", "photo_flickr_id": "60382965", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43807", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was great .", "storylet_id": "219037"}], [{"original_text": "I had a wonderful time.", "album_id": "1304590", "photo_flickr_id": "60381408", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43807", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had a wonderful time .", "storylet_id": "219038"}], [{"original_text": "We took plenty of pictures while we were there.", "album_id": "1304590", "photo_flickr_id": "60381689", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43807", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took plenty of pictures while we were there .", "storylet_id": "219039"}], [{"original_text": "We visited Europe in our travels.", "album_id": "1304590", "photo_flickr_id": "60381689", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43808", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited location in our travels .", "storylet_id": "219040"}], [{"original_text": "The streets were covered with nice buildings.", "album_id": "1304590", "photo_flickr_id": "60382058", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43808", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the streets were covered with nice buildings .", "storylet_id": "219041"}], [{"original_text": "This tower was big and firm.", "album_id": "1304590", "photo_flickr_id": "60382647", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43808", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this tower was big and firm .", "storylet_id": "219042"}], [{"original_text": "The waterway was a sight to see.", "album_id": "1304590", "photo_flickr_id": "60383559", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43808", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the waterway was a sight to see .", "storylet_id": "219043"}], [{"original_text": "Lastly, we enjoyed our vacation in Europe.", "album_id": "1304590", "photo_flickr_id": "60384249", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43808", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , we enjoyed our vacation in location .", "storylet_id": "219044"}], [{"original_text": "Me and my wife went to historic downtown for a day out.", "album_id": "1304590", "photo_flickr_id": "60381689", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43809", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and my wife went to historic downtown for a day out .", "storylet_id": "219045"}], [{"original_text": "We went to the historic district and walked through the neighborhood.", "album_id": "1304590", "photo_flickr_id": "60382058", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43809", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to the historic district and walked through the neighborhood .", "storylet_id": "219046"}], [{"original_text": "The sights were beautiful. Many historic monuments and buildings were a sight to see.", "album_id": "1304590", "photo_flickr_id": "60382647", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43809", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sights were beautiful . many historic monuments and buildings were a sight to see .", "storylet_id": "219047"}], [{"original_text": "The beautiful flowing rivers into the city are inspiring.", "album_id": "1304590", "photo_flickr_id": "60383559", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43809", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beautiful flowing rivers into the city are inspiring .", "storylet_id": "219048"}], [{"original_text": "The district is gorgeous and we are hoping one day we can afford to move into a townhouse or flat in the city center. ", "album_id": "1304590", "photo_flickr_id": "60384249", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43809", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the district is gorgeous and we are hoping one day we can afford to move into a townhouse or flat in the city center .", "storylet_id": "219049"}], [{"original_text": "we went on a great adventure", "album_id": "1426064", "photo_flickr_id": "71855003", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43810", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on a great adventure", "storylet_id": "219050"}], [{"original_text": "we found ourselves above the city", "album_id": "1426064", "photo_flickr_id": "71855029", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43810", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we found ourselves above the city", "storylet_id": "219051"}], [{"original_text": "the woods we walked though were thick", "album_id": "1426064", "photo_flickr_id": "71855080", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43810", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the woods we walked though were thick", "storylet_id": "219052"}], [{"original_text": "we used a machete to cut through the thick forest", "album_id": "1426064", "photo_flickr_id": "71855142", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43810", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we used a machete to cut through the thick forest", "storylet_id": "219053"}], [{"original_text": "we found a waterfall", "album_id": "1426064", "photo_flickr_id": "71855224", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "43810", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we found a waterfall", "storylet_id": "219054"}], [{"original_text": "The grassland seen here features a bunch of trees and other plant life.", "album_id": "1426064", "photo_flickr_id": "71854622", "setting": "first-2-pick-and-tell", "worker_id": "ROQV94CP8N0KLMO", "story_id": "43811", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the grassland seen here features a bunch of trees and other plant life .", "storylet_id": "219055"}], [{"original_text": "This part of the grassland oversees a large town nearby.", "album_id": "1426064", "photo_flickr_id": "71854646", "setting": "first-2-pick-and-tell", "worker_id": "ROQV94CP8N0KLMO", "story_id": "43811", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this part of the grassland oversees a large town nearby .", "storylet_id": "219056"}], [{"original_text": "In the other direction, a highway is overseen beside a sea of trees.", "album_id": "1426064", "photo_flickr_id": "71854934", "setting": "first-2-pick-and-tell", "worker_id": "ROQV94CP8N0KLMO", "story_id": "43811", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in the other direction , a highway is overseen beside a sea of trees .", "storylet_id": "219057"}], [{"original_text": "In this direction, you can see the full tree filled landscape of the valley.", "album_id": "1426064", "photo_flickr_id": "71855003", "setting": "first-2-pick-and-tell", "worker_id": "ROQV94CP8N0KLMO", "story_id": "43811", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in this direction , you can see the full tree filled landscape of the valley .", "storylet_id": "219058"}], [{"original_text": "In a different part of the grassland, you can see the rocky waterfall.", "album_id": "1426064", "photo_flickr_id": "71855224", "setting": "first-2-pick-and-tell", "worker_id": "ROQV94CP8N0KLMO", "story_id": "43811", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in a different part of the grassland , you can see the rocky waterfall .", "storylet_id": "219059"}], [{"original_text": "We decided to go hiking after seeing this picture in a brochure.", "album_id": "1426064", "photo_flickr_id": "71855003", "setting": "last-3-pick-old-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "43812", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go hiking after seeing this picture in a brochure .", "storylet_id": "219060"}], [{"original_text": "We wanted to get away from our town to refresh ourselves.", "album_id": "1426064", "photo_flickr_id": "71855029", "setting": "last-3-pick-old-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "43812", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we wanted to get away from our town to refresh ourselves .", "storylet_id": "219061"}], [{"original_text": "We walked through the forest.", "album_id": "1426064", "photo_flickr_id": "71855080", "setting": "last-3-pick-old-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "43812", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we walked through the forest .", "storylet_id": "219062"}], [{"original_text": "It was hard and it seemed barren without the leaves on the trees.", "album_id": "1426064", "photo_flickr_id": "71855142", "setting": "last-3-pick-old-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "43812", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was hard and it seemed barren without the leaves on the trees .", "storylet_id": "219063"}], [{"original_text": "But it was worth it when we found this awesome waterfall.", "album_id": "1426064", "photo_flickr_id": "71855224", "setting": "last-3-pick-old-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "43812", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but it was worth it when we found this awesome waterfall .", "storylet_id": "219064"}], [{"original_text": "it looks so far down when viewing from the top side of a mountain ", "album_id": "1426064", "photo_flickr_id": "71855003", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "43813", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it looks so far down when viewing from the top side of a mountain", "storylet_id": "219065"}], [{"original_text": "the view of the city is so different when looking from above ", "album_id": "1426064", "photo_flickr_id": "71855029", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "43813", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view of the city is so different when looking from above", "storylet_id": "219066"}], [{"original_text": "the trees seem more welcoming when you look down into them ", "album_id": "1426064", "photo_flickr_id": "71855080", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "43813", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the trees seem more welcoming when you look down into them", "storylet_id": "219067"}], [{"original_text": "well almost all of the trees look welcomings ", "album_id": "1426064", "photo_flickr_id": "71855142", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "43813", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "well almost all of the trees look welcomings", "storylet_id": "219068"}], [{"original_text": "it'a nice to take a different view of things every once in a while ", "album_id": "1426064", "photo_flickr_id": "71855224", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "43813", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it'a nice to take a different view of things every once in a while", "storylet_id": "219069"}], [{"original_text": "After a stressful week the couple decided to get away.", "album_id": "1426064", "photo_flickr_id": "71855003", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "43814", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after a stressful week the couple decided to get away .", "storylet_id": "219070"}], [{"original_text": "They hiked up and saw a wonderful view of the city.", "album_id": "1426064", "photo_flickr_id": "71855029", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "43814", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they hiked up and saw a wonderful view of the city .", "storylet_id": "219071"}], [{"original_text": "The other direction was a view of mountains.", "album_id": "1426064", "photo_flickr_id": "71855080", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "43814", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the other direction was a view of mountains .", "storylet_id": "219072"}], [{"original_text": "They wanted to go farther into the woods but did not want to get lost.", "album_id": "1426064", "photo_flickr_id": "71855142", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "43814", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they wanted to go farther into the woods but did not want to get lost .", "storylet_id": "219073"}], [{"original_text": "They found an out of the way stream to enjoy.", "album_id": "1426064", "photo_flickr_id": "71855224", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "43814", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they found an out of the way stream to enjoy .", "storylet_id": "219074"}], [{"original_text": "We checked out some old ruins while on vaction.", "album_id": "1508632", "photo_flickr_id": "70099857", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43815", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we checked out some old ruins while on vaction .", "storylet_id": "219075"}], [{"original_text": "Everything was made of stone.", "album_id": "1508632", "photo_flickr_id": "70098237", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43815", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything was made of stone .", "storylet_id": "219076"}], [{"original_text": "Making things out of stone sounds bland but much of it was actually very pretty.", "album_id": "1508632", "photo_flickr_id": "70096171", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43815", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "making things out of stone sounds bland but much of it was actually very pretty .", "storylet_id": "219077"}], [{"original_text": "They made very detailed mosaics.", "album_id": "1508632", "photo_flickr_id": "70096550", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43815", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they made very detailed mosaics .", "storylet_id": "219078"}], [{"original_text": "I can't imagine shaping every little stone.", "album_id": "1508632", "photo_flickr_id": "70098003", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43815", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ca n't imagine shaping every little stone .", "storylet_id": "219079"}], [{"original_text": "We were very excited for our trip to the old ruins.", "album_id": "1508632", "photo_flickr_id": "70100604", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43816", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were very excited for our trip to the old ruins .", "storylet_id": "219080"}], [{"original_text": "We stopped and looked at the old fire places they had designed many years ago.", "album_id": "1508632", "photo_flickr_id": "70099301", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43816", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped and looked at the old fire places they had designed many years ago .", "storylet_id": "219081"}], [{"original_text": "We also visited the gardens which had been renovated recently. ", "album_id": "1508632", "photo_flickr_id": "70100836", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43816", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also visited the gardens which had been renovated recently .", "storylet_id": "219082"}], [{"original_text": "The architecture was absolutely stunning given the age of the ruins. ", "album_id": "1508632", "photo_flickr_id": "70099535", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43816", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the architecture was absolutely stunning given the age of the ruins .", "storylet_id": "219083"}], [{"original_text": "We had a great time visiting the ruins. We left amazed by the ingenuity of the humans that came before us. ", "album_id": "1508632", "photo_flickr_id": "70099857", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43816", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time visiting the ruins . we left amazed by the ingenuity of the humans that came before us .", "storylet_id": "219084"}], [{"original_text": "I had a great time yesterday.", "album_id": "1508632", "photo_flickr_id": "70100604", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43817", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time yesterday .", "storylet_id": "219085"}], [{"original_text": "I went on a tour of the old ruins.", "album_id": "1508632", "photo_flickr_id": "70099301", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43817", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went on a tour of the old ruins .", "storylet_id": "219086"}], [{"original_text": "It was beautiful.", "album_id": "1508632", "photo_flickr_id": "70100836", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43817", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was beautiful .", "storylet_id": "219087"}], [{"original_text": "There were so many interesting areas.", "album_id": "1508632", "photo_flickr_id": "70099535", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43817", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were so many interesting areas .", "storylet_id": "219088"}], [{"original_text": "After we spent all afternoon there we went home to get something to eat.", "album_id": "1508632", "photo_flickr_id": "70099857", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43817", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we spent all afternoon there we went home to get something to eat .", "storylet_id": "219089"}], [{"original_text": "Abandoned places are sometimes the prettiest.", "album_id": "1508632", "photo_flickr_id": "70099857", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43818", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "abandoned places are sometimes the prettiest .", "storylet_id": "219090"}], [{"original_text": "The structures may be rusted,", "album_id": "1508632", "photo_flickr_id": "70098237", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43818", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the structures may be rusted ,", "storylet_id": "219091"}], [{"original_text": "but their patterns still remain.", "album_id": "1508632", "photo_flickr_id": "70096171", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43818", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but their patterns still remain .", "storylet_id": "219092"}], [{"original_text": "They may not be as pretty as they once were, ", "album_id": "1508632", "photo_flickr_id": "70096550", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43818", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they may not be as pretty as they once were ,", "storylet_id": "219093"}], [{"original_text": "but there's a subtle, different kind of beauty to empty places", "album_id": "1508632", "photo_flickr_id": "70098003", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43818", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but there 's a subtle , different kind of beauty to empty places", "storylet_id": "219094"}], [{"original_text": "She posed in front of the old ruins. ", "album_id": "1508632", "photo_flickr_id": "70100604", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43819", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she posed in front of the old ruins .", "storylet_id": "219095"}], [{"original_text": "The water still came rushing out of the tunnel probably the same way it did all those years ago. ", "album_id": "1508632", "photo_flickr_id": "70099301", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43819", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water still came rushing out of the tunnel probably the same way it did all those years ago .", "storylet_id": "219096"}], [{"original_text": "A reflection pool was in the middle of the ruins and they wondered how that was possible. ", "album_id": "1508632", "photo_flickr_id": "70100836", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43819", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a reflection pool was in the middle of the ruins and they wondered how that was possible .", "storylet_id": "219097"}], [{"original_text": "Standing on top of the old wall they could look down and see the elaborate design of what would have been the interior. ", "album_id": "1508632", "photo_flickr_id": "70099535", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43819", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "standing on top of the old wall they could look down and see the elaborate design of what would have been the interior .", "storylet_id": "219098"}], [{"original_text": "The tall pillars had withstood centuries of weather. ", "album_id": "1508632", "photo_flickr_id": "70099857", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43819", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the tall pillars had withstood centuries of weather .", "storylet_id": "219099"}], [{"original_text": "The outside was decorated with ice sculptures light up.", "album_id": "72157610510017132", "photo_flickr_id": "68504399", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43820", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the outside was decorated with ice sculptures light up .", "storylet_id": "219100"}], [{"original_text": "They had a lot of different ones to look at. ", "album_id": "72157610510017132", "photo_flickr_id": "68692981", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43820", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a lot of different ones to look at .", "storylet_id": "219101"}], [{"original_text": "Santa's sleigh was decorated with lights and flowers.", "album_id": "72157610510017132", "photo_flickr_id": "69390991", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43820", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "location 's sleigh was decorated with lights and flowers .", "storylet_id": "219102"}], [{"original_text": "Mrs. Claus even made an appearance. ", "album_id": "72157610510017132", "photo_flickr_id": "69391842", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43820", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mrs. claus even made an appearance .", "storylet_id": "219103"}], [{"original_text": "Inside a woman was teaching a little girl to play the harp.", "album_id": "72157610510017132", "photo_flickr_id": "69595089", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43820", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "inside a woman was teaching a little girl to play the harp .", "storylet_id": "219104"}], [{"original_text": "At Christmas time in the town, there are lots of events you can see.", "album_id": "72157610510017132", "photo_flickr_id": "69391842", "setting": "first-2-pick-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "43821", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at christmas time in the town , there are lots of events you can see .", "storylet_id": "219105"}], [{"original_text": "There is a light and ice sculpture display to view.", "album_id": "72157610510017132", "photo_flickr_id": "68504399", "setting": "first-2-pick-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "43821", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is a light and ice sculpture display to view .", "storylet_id": "219106"}], [{"original_text": "There are also musicians playing in the street.", "album_id": "72157610510017132", "photo_flickr_id": "69455374", "setting": "first-2-pick-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "43821", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are also musicians playing in the street .", "storylet_id": "219107"}], [{"original_text": "This church does a large pageant every year.", "album_id": "72157610510017132", "photo_flickr_id": "69455890", "setting": "first-2-pick-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "43821", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this church does a large pageant every year .", "storylet_id": "219108"}], [{"original_text": "There is also a Christmas concert put on by the local theater group.", "album_id": "72157610510017132", "photo_flickr_id": "69594591", "setting": "first-2-pick-and-tell", "worker_id": "AS9KPJ1HAUTLX1M", "story_id": "43821", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is also a christmas concert put on by the local theater group .", "storylet_id": "219109"}], [{"original_text": "I went to put up all the decorations for Christmas this year.", "album_id": "72157610510017132", "photo_flickr_id": "68504399", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43822", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to put up all the decorations for christmas this year .", "storylet_id": "219110"}], [{"original_text": "I had a great time.", "album_id": "72157610510017132", "photo_flickr_id": "68692981", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43822", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had a great time .", "storylet_id": "219111"}], [{"original_text": "It took me many hours to put them all up.", "album_id": "72157610510017132", "photo_flickr_id": "69390991", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43822", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it took me many hours to put them all up .", "storylet_id": "219112"}], [{"original_text": "Some of the decorations were very heavy.", "album_id": "72157610510017132", "photo_flickr_id": "69391842", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43822", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the decorations were very heavy .", "storylet_id": "219113"}], [{"original_text": "The next day we all opened up our presents.", "album_id": "72157610510017132", "photo_flickr_id": "69595089", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43822", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the next day we all opened up our presents .", "storylet_id": "219114"}], [{"original_text": "Christmas is the perfect time to see the lights.", "album_id": "72157610510017132", "photo_flickr_id": "68504399", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43823", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "christmas is the perfect time to see the lights .", "storylet_id": "219115"}], [{"original_text": "People decorate their lawns", "album_id": "72157610510017132", "photo_flickr_id": "68692981", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43823", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people decorate their lawns", "storylet_id": "219116"}], [{"original_text": "and put poinsettas, the designated flower of Christmas, all over town.", "album_id": "72157610510017132", "photo_flickr_id": "69390991", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43823", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and put poinsettas , the designated flower of christmas , all over town .", "storylet_id": "219117"}], [{"original_text": "Sometimes, if you're lucky, you'll even see Mr. and Mrs. Claus.", "album_id": "72157610510017132", "photo_flickr_id": "69391842", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43823", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes , if you 're lucky , you 'll even see mr. and mrs. claus .", "storylet_id": "219118"}], [{"original_text": "Little Erin loved looking at the lights and seeing the Claus' but most of all, she loved listening to her grandma play Christmas music on the harp. What a joyful time of the year. ", "album_id": "72157610510017132", "photo_flickr_id": "69595089", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43823", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "little [female] loved looking at the lights and seeing the claus ' but most of all , she loved listening to her grandma play christmas music on the harp . what a joyful time of the year .", "storylet_id": "219119"}], [{"original_text": "There is a home near my place that like to make light and ice sculptures for Christmas.", "album_id": "72157610510017132", "photo_flickr_id": "68504399", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43824", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is a home near my place that like to make light and ice sculptures for christmas .", "storylet_id": "219120"}], [{"original_text": "They are very creative and make amazing things.", "album_id": "72157610510017132", "photo_flickr_id": "68692981", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43824", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are very creative and make amazing things .", "storylet_id": "219121"}], [{"original_text": "They also have a Santa that is there on the weekends.", "album_id": "72157610510017132", "photo_flickr_id": "69390991", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43824", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also have a location that is there on the weekends .", "storylet_id": "219122"}], [{"original_text": "Mrs. Claus sometimes helps too.", "album_id": "72157610510017132", "photo_flickr_id": "69391842", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43824", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mrs. claus sometimes helps too .", "storylet_id": "219123"}], [{"original_text": "Indoors they have crafts for kids.", "album_id": "72157610510017132", "photo_flickr_id": "69595089", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43824", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "indoors they have crafts for kids .", "storylet_id": "219124"}], [{"original_text": "We were excited to finally be signing the lease to our new house. ", "album_id": "72057594061086267", "photo_flickr_id": "97034060", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43825", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were excited to finally be signing the lease to our new house .", "storylet_id": "219125"}], [{"original_text": "We brought in some of our belongings and began getting settled.", "album_id": "72057594061086267", "photo_flickr_id": "97034666", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43825", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we brought in some of our belongings and began getting settled .", "storylet_id": "219126"}], [{"original_text": "We explored our new house and admired the beautiful bathroom setup. ", "album_id": "72057594061086267", "photo_flickr_id": "97034084", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43825", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we explored our new house and admired the beautiful bathroom setup .", "storylet_id": "219127"}], [{"original_text": "We finished unpacking and decided to look around the rest of the building.", "album_id": "72057594061086267", "photo_flickr_id": "97034148", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43825", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we finished unpacking and decided to look around the rest of the building .", "storylet_id": "219128"}], [{"original_text": "We were surprised to a find a great pool in the backyard! We were very happy with our decision. ", "album_id": "72057594061086267", "photo_flickr_id": "97034599", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43825", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were surprised to a find a great pool in the backyard ! we were very happy with our decision .", "storylet_id": "219129"}], [{"original_text": "Nice home for sale with a gorgeous pool", "album_id": "72057594061086267", "photo_flickr_id": "97034599", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43826", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "nice home for sale with a gorgeous pool", "storylet_id": "219130"}], [{"original_text": "Has a wonderful large bedroom with a good view out the windows", "album_id": "72057594061086267", "photo_flickr_id": "97034110", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43826", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "has a wonderful large bedroom with a good view out the windows", "storylet_id": "219131"}], [{"original_text": "Large bathroom with walk in shower", "album_id": "72057594061086267", "photo_flickr_id": "97034084", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43826", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "large bathroom with walk in shower", "storylet_id": "219132"}], [{"original_text": "Lovely upstairs and down stairs living room", "album_id": "72057594061086267", "photo_flickr_id": "97034466", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43826", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "lovely upstairs and down stairs living room", "storylet_id": "219133"}], [{"original_text": "I think its a good offer for this home", "album_id": "72057594061086267", "photo_flickr_id": "97034060", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43826", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think its a good offer for this home", "storylet_id": "219134"}], [{"original_text": "The two men sat in the office preparing for the interview.", "album_id": "72057594061086267", "photo_flickr_id": "97034060", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43827", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the two men sat in the office preparing for the interview .", "storylet_id": "219135"}], [{"original_text": "The house was spacious with grand glass windows.", "album_id": "72057594061086267", "photo_flickr_id": "97034666", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43827", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the house was spacious with grand glass windows .", "storylet_id": "219136"}], [{"original_text": "The bathroom was new and sleek.", "album_id": "72057594061086267", "photo_flickr_id": "97034084", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43827", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bathroom was new and sleek .", "storylet_id": "219137"}], [{"original_text": "The inside of the living room was open and spacey. ", "album_id": "72057594061086267", "photo_flickr_id": "97034148", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43827", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the inside of the living room was open and spacey .", "storylet_id": "219138"}], [{"original_text": "The pool outside was wide and wet.", "album_id": "72057594061086267", "photo_flickr_id": "97034599", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43827", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the pool outside was wide and wet .", "storylet_id": "219139"}], [{"original_text": "Buying a new house, the outdoor area.", "album_id": "72057594061086267", "photo_flickr_id": "97034599", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43828", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "buying a new house , the outdoor area .", "storylet_id": "219140"}], [{"original_text": "The masters bedroom on open floor.", "album_id": "72057594061086267", "photo_flickr_id": "97034110", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43828", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the masters bedroom on open floor .", "storylet_id": "219141"}], [{"original_text": "The masters bathroom with shower and tub.", "album_id": "72057594061086267", "photo_flickr_id": "97034084", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43828", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the masters bathroom with shower and tub .", "storylet_id": "219142"}], [{"original_text": "The staircase to the living room.", "album_id": "72057594061086267", "photo_flickr_id": "97034466", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43828", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the staircase to the living room .", "storylet_id": "219143"}], [{"original_text": "Signing the contract to buy the house.", "album_id": "72057594061086267", "photo_flickr_id": "97034060", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43828", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "signing the contract to buy the house .", "storylet_id": "219144"}], [{"original_text": "Rex and Ian are planning on selling a property they own. They take down notes of things they want to mention in the listing.", "album_id": "72057594061086267", "photo_flickr_id": "97034060", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43829", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [male] are planning on selling a property they own . they take down notes of things they want to mention in the listing .", "storylet_id": "219145"}], [{"original_text": "The glass room overlooking the pool is an important feature they want to advertise.", "album_id": "72057594061086267", "photo_flickr_id": "97034666", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43829", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the glass room overlooking the pool is an important feature they want to advertise .", "storylet_id": "219146"}], [{"original_text": "The bathroom was recently updated, something that they know is important to mention in advertising the house.", "album_id": "72057594061086267", "photo_flickr_id": "97034084", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43829", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bathroom was recently updated , something that they know is important to mention in advertising the house .", "storylet_id": "219147"}], [{"original_text": "The mater bedroom lets in lots of light. Rex and Ian take more notes as they look out one of the windows.", "album_id": "72057594061086267", "photo_flickr_id": "97034148", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43829", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the mater bedroom lets in lots of light . [male] and [male] take more notes as they look out one of the windows .", "storylet_id": "219148"}], [{"original_text": "A shot outside the house. The solar panels, a green and energy saving feature, are another important feature the pair writes down on their list.", "album_id": "72057594061086267", "photo_flickr_id": "97034599", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43829", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a shot outside the house . the solar panels , a green and energy saving feature , are another important feature the pair writes down on their list .", "storylet_id": "219149"}], [{"original_text": "The city was full of buildings and water.", "album_id": "904406", "photo_flickr_id": "98276977", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43830", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city was full of buildings and water .", "storylet_id": "219150"}], [{"original_text": "Our hotel was also very close to the water.", "album_id": "904406", "photo_flickr_id": "98280958", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43830", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our hotel was also very close to the water .", "storylet_id": "219151"}], [{"original_text": "We saw another hotel across the street with red bricks.", "album_id": "904406", "photo_flickr_id": "98286237", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43830", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw another hotel across the street with red bricks .", "storylet_id": "219152"}], [{"original_text": "My wife brought a bundle of photos.", "album_id": "904406", "photo_flickr_id": "98286243", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43830", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my wife brought a bundle of photos .", "storylet_id": "219153"}], [{"original_text": "We took a group picture together at the end of the night.", "album_id": "904406", "photo_flickr_id": "98291291", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43830", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took a group picture together at the end of the night .", "storylet_id": "219154"}], [{"original_text": "This was our first time here and this building was quite a first site.", "album_id": "904406", "photo_flickr_id": "98276976", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43831", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was our first time here and this building was quite a first site .", "storylet_id": "219155"}], [{"original_text": "The streets were very lively that day.", "album_id": "904406", "photo_flickr_id": "98276980", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43831", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the streets were very lively that day .", "storylet_id": "219156"}], [{"original_text": "even the vending machines were vibrant.", "album_id": "904406", "photo_flickr_id": "98286240", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43831", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the vending machines were vibrant .", "storylet_id": "219157"}], [{"original_text": "The city really lit up at night and looked very modern.", "album_id": "904406", "photo_flickr_id": "98291285", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43831", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the city really lit up at night and looked very modern .", "storylet_id": "219158"}], [{"original_text": "We all posed for a picture with our friends.", "album_id": "904406", "photo_flickr_id": "98291291", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43831", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all posed for a picture with our friends .", "storylet_id": "219159"}], [{"original_text": "Leaving the big city behind to visit family back home.", "album_id": "904406", "photo_flickr_id": "98276977", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "43832", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "leaving the big city behind to visit family back home .", "storylet_id": "219160"}], [{"original_text": "I have really missed these buildings!", "album_id": "904406", "photo_flickr_id": "98280958", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "43832", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i have really missed these buildings !", "storylet_id": "219161"}], [{"original_text": "This is just too similar to where we're living now.", "album_id": "904406", "photo_flickr_id": "98286237", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "43832", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is just too similar to where we 're living now .", "storylet_id": "219162"}], [{"original_text": "Sharing pictures of the chaos of moving to the states.", "album_id": "904406", "photo_flickr_id": "98286243", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "43832", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sharing pictures of the chaos of moving to the states .", "storylet_id": "219163"}], [{"original_text": "My family, what a wonderful time we had visiting them.", "album_id": "904406", "photo_flickr_id": "98291291", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "43832", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my family , what a wonderful time we had visiting them .", "storylet_id": "219164"}], [{"original_text": "I was happy to finally arrive in Japan for business plus vacation.", "album_id": "904406", "photo_flickr_id": "98276977", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "43833", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was happy to finally arrive in location for business plus vacation .", "storylet_id": "219165"}], [{"original_text": "I found Japanese traditional houses very unique.", "album_id": "904406", "photo_flickr_id": "98280958", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "43833", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i found japanese traditional houses very unique .", "storylet_id": "219166"}], [{"original_text": "I rented a car from the airport and drove to my hotel.", "album_id": "904406", "photo_flickr_id": "98286237", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "43833", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i rented a car from the airport and drove to my hotel .", "storylet_id": "219167"}], [{"original_text": "The hotel room was tiny but it had everything that I needed.", "album_id": "904406", "photo_flickr_id": "98286243", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "43833", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the hotel room was tiny but it had everything that i needed .", "storylet_id": "219168"}], [{"original_text": "At the end of my trip, I went to visit a Japanese family. They were my college friend's relatives. It was fun to be able to meet a traditional Japanese family.", "album_id": "904406", "photo_flickr_id": "98291291", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "43833", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of my trip , i went to visit a japanese family . they were my college friend 's relatives . it was fun to be able to meet a traditional japanese family .", "storylet_id": "219169"}], [{"original_text": "For the summer I took a trip with my brother back to my hometown in China.", "album_id": "904406", "photo_flickr_id": "98276976", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43834", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for the summer i took a trip with my brother back to my hometown in location .", "storylet_id": "219170"}], [{"original_text": "On the day we arrived the city was busy and filled with many people.", "album_id": "904406", "photo_flickr_id": "98276980", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43834", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on the day we arrived the city was busy and filled with many people .", "storylet_id": "219171"}], [{"original_text": "The vending machines were new and unique at the airport. They caught my attention because I had never seen them before.", "album_id": "904406", "photo_flickr_id": "98286240", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43834", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the vending machines were new and unique at the airport . they caught my attention because i had never seen them before .", "storylet_id": "219172"}], [{"original_text": "The nightlife in the city was amazing. I would love to spend the nights here every night if I could.", "album_id": "904406", "photo_flickr_id": "98291285", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43834", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the nightlife in the city was amazing . i would love to spend the nights here every night if i could .", "storylet_id": "219173"}], [{"original_text": "Taking the trip brought memories of my wonderful family. I will always love China and have a place for my home in my heart.", "album_id": "904406", "photo_flickr_id": "98291291", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "43834", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "taking the trip brought memories of my wonderful family . i will always love location and have a place for my home in my heart .", "storylet_id": "219174"}], [{"original_text": "He was happy to pose for the picture.", "album_id": "72057594061253839", "photo_flickr_id": "97172413", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43835", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he was happy to pose for the picture .", "storylet_id": "219175"}], [{"original_text": "He looked like he was up to something.", "album_id": "72057594061253839", "photo_flickr_id": "97172428", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43835", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he looked like he was up to something .", "storylet_id": "219176"}], [{"original_text": "His little brother also had a sneaky look on his face. ", "album_id": "72057594061253839", "photo_flickr_id": "101717274", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43835", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his little brother also had a sneaky look on his face .", "storylet_id": "219177"}], [{"original_text": "He was telling us it was not him. ", "album_id": "72057594061253839", "photo_flickr_id": "101717216", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43835", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was telling us it was not him .", "storylet_id": "219178"}], [{"original_text": "They were both troublemakers, but cute.", "album_id": "72057594061253839", "photo_flickr_id": "101717240", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43835", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were both troublemakers , but cute .", "storylet_id": "219179"}], [{"original_text": "The kids were getting ready for the day.", "album_id": "72057594061253839", "photo_flickr_id": "97172428", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43836", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids were getting ready for the day .", "storylet_id": "219180"}], [{"original_text": "The streets were full of life that day. ", "album_id": "72057594061253839", "photo_flickr_id": "101716990", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43836", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the streets were full of life that day .", "storylet_id": "219181"}], [{"original_text": "The father made breakfast for the kids.", "album_id": "72057594061253839", "photo_flickr_id": "101718490", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43836", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the father made breakfast for the kids .", "storylet_id": "219182"}], [{"original_text": "The father was still hungry and got himself a snack. ", "album_id": "72057594061253839", "photo_flickr_id": "101722411", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43836", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the father was still hungry and got himself a snack .", "storylet_id": "219183"}], [{"original_text": "The kids always love to visit grandma. ", "album_id": "72057594061253839", "photo_flickr_id": "101725062", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43836", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids always love to visit grandma .", "storylet_id": "219184"}], [{"original_text": "The kids can't wait to get on the road to Grandma's.", "album_id": "72057594061253839", "photo_flickr_id": "97172428", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "43837", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids ca n't wait to get on the road to grandma 's .", "storylet_id": "219185"}], [{"original_text": "Jason messing with the camera on the 4 hour car ride.", "album_id": "72057594061253839", "photo_flickr_id": "101716990", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "43837", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] messing with the camera on the 4 hour car ride .", "storylet_id": "219186"}], [{"original_text": "Not here 10 minutes and I'm already cooking grandma's favorite treat.", "album_id": "72057594061253839", "photo_flickr_id": "101718490", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "43837", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not here 10 minutes and i 'm already cooking grandma 's favorite treat .", "storylet_id": "219187"}], [{"original_text": "I prefer some of the local food, just can't buy this at home.", "album_id": "72057594061253839", "photo_flickr_id": "101722411", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "43837", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i prefer some of the local food , just ca n't buy this at home .", "storylet_id": "219188"}], [{"original_text": "Grandma and the kiddos, they don't want to leave. ", "album_id": "72057594061253839", "photo_flickr_id": "101725062", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "43837", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandma and the kiddos , they do n't want to leave .", "storylet_id": "219189"}], [{"original_text": "The kids were excited to spend the day with their dad.", "album_id": "72057594061253839", "photo_flickr_id": "97172428", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43838", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids were excited to spend the day with their dad .", "storylet_id": "219190"}], [{"original_text": "They imagined going outside for a bike ride with him!", "album_id": "72057594061253839", "photo_flickr_id": "101716990", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43838", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they imagined going outside for a bike ride with him !", "storylet_id": "219191"}], [{"original_text": "But the day started with him making breakfast,", "album_id": "72057594061253839", "photo_flickr_id": "101718490", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43838", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but the day started with him making breakfast ,", "storylet_id": "219192"}], [{"original_text": "and then taking them out to get ice cream!", "album_id": "72057594061253839", "photo_flickr_id": "101722411", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43838", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and then taking them out to get ice cream !", "storylet_id": "219193"}], [{"original_text": "And then to grandmother's house they went. ", "album_id": "72057594061253839", "photo_flickr_id": "101725062", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43838", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then to grandmother 's house they went .", "storylet_id": "219194"}], [{"original_text": "It was the first day of Christmas break and Justin was so excited. ", "album_id": "72057594061253839", "photo_flickr_id": "97172413", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43839", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the first day of christmas break and [male] was so excited .", "storylet_id": "219195"}], [{"original_text": "He and his sister were finally going to do all the things they wanted to all year.", "album_id": "72057594061253839", "photo_flickr_id": "97172428", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43839", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he and his sister were finally going to do all the things they wanted to all year .", "storylet_id": "219196"}], [{"original_text": "Joey was the first friend they invited over. ", "album_id": "72057594061253839", "photo_flickr_id": "101717274", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43839", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was the first friend they invited over .", "storylet_id": "219197"}], [{"original_text": "Justin while playing a game of hide and seek couldn't find Joey.", "album_id": "72057594061253839", "photo_flickr_id": "101717216", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43839", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] while playing a game of hide and seek could n't find [male] .", "storylet_id": "219198"}], [{"original_text": "Joey magically reappeared and then the game continued on into the afternoon. ", "album_id": "72057594061253839", "photo_flickr_id": "101717240", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43839", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] magically reappeared and then the game continued on into the afternoon .", "storylet_id": "219199"}], [{"original_text": "The greenhouse was filled with a variety of plants.", "album_id": "72057594100640639", "photo_flickr_id": "124410788", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43840", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the greenhouse was filled with a variety of plants .", "storylet_id": "219200"}], [{"original_text": "They came in many colors and heights.", "album_id": "72057594100640639", "photo_flickr_id": "124411140", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43840", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they came in many colors and heights .", "storylet_id": "219201"}], [{"original_text": "Name plates gave detail behind each plant.", "album_id": "72057594100640639", "photo_flickr_id": "124411411", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43840", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "name plates gave detail behind each plant .", "storylet_id": "219202"}], [{"original_text": "Smaller tree plants were popular.", "album_id": "72057594100640639", "photo_flickr_id": "124411470", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43840", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "smaller tree plants were popular .", "storylet_id": "219203"}], [{"original_text": "The green life overflowed onto the walkway.", "album_id": "72057594100640639", "photo_flickr_id": "124411618", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43840", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the green life overflowed onto the walkway .", "storylet_id": "219204"}], [{"original_text": "These flowers starts out very slow growing ", "album_id": "72057594100640639", "photo_flickr_id": "124411550", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43841", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these flowers starts out very slow growing", "storylet_id": "219205"}], [{"original_text": "Once they get plenty sunshine and water they seems to grow a little", "album_id": "72057594100640639", "photo_flickr_id": "124411581", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43841", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once they get plenty sunshine and water they seems to grow a little", "storylet_id": "219206"}], [{"original_text": "But they have to stay in a sun room area for protection", "album_id": "72057594100640639", "photo_flickr_id": "124411618", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43841", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but they have to stay in a sun room area for protection", "storylet_id": "219207"}], [{"original_text": "Because once they start blooming they are pretty", "album_id": "72057594100640639", "photo_flickr_id": "124411650", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43841", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "because once they start blooming they are pretty", "storylet_id": "219208"}], [{"original_text": "And starts to grow crazy", "album_id": "72057594100640639", "photo_flickr_id": "124411685", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43841", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and starts to grow crazy", "storylet_id": "219209"}], [{"original_text": "We traveled to a lively greenhouse for a day.", "album_id": "72057594100640639", "photo_flickr_id": "124411550", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43842", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we traveled to a lively greenhouse for a day .", "storylet_id": "219210"}], [{"original_text": "There were so many beautiful ferns.", "album_id": "72057594100640639", "photo_flickr_id": "124411581", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43842", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many beautiful ferns .", "storylet_id": "219211"}], [{"original_text": "I saw green and violet flowers.", "album_id": "72057594100640639", "photo_flickr_id": "124411618", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43842", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i saw green and violet flowers .", "storylet_id": "219212"}], [{"original_text": "The violet flowers interested my partner.", "album_id": "72057594100640639", "photo_flickr_id": "124411650", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43842", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the violet flowers interested my partner .", "storylet_id": "219213"}], [{"original_text": "We had to closely examine the plants for their feel.", "album_id": "72057594100640639", "photo_flickr_id": "124411685", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43842", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had to closely examine the plants for their feel .", "storylet_id": "219214"}], [{"original_text": "Some friends and I took a nice day trip to a local nursery.", "album_id": "72057594100640639", "photo_flickr_id": "124410788", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43843", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some friends and i took a nice day trip to a local nursery .", "storylet_id": "219215"}], [{"original_text": "In there green house they had some amazing flowers.", "album_id": "72057594100640639", "photo_flickr_id": "124411140", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43843", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in there green house they had some amazing flowers .", "storylet_id": "219216"}], [{"original_text": "There were some you could even call exotic not seen very often.", "album_id": "72057594100640639", "photo_flickr_id": "124411411", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43843", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some you could even call exotic not seen very often .", "storylet_id": "219217"}], [{"original_text": "This was a display of some trees that grow only in the rainforest.", "album_id": "72057594100640639", "photo_flickr_id": "124411470", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43843", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was a display of some trees that grow only in the rainforest .", "storylet_id": "219218"}], [{"original_text": "I thought this nursery was absolutely beautiful.", "album_id": "72057594100640639", "photo_flickr_id": "124411618", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43843", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i thought this nursery was absolutely beautiful .", "storylet_id": "219219"}], [{"original_text": "Today we visited the botanical garden. The building is quite and the entrance is surprisingly ordered and formal in its presentation.", "album_id": "72057594100640639", "photo_flickr_id": "124410788", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43844", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we visited the botanical garden . the building is quite and the entrance is surprisingly ordered and formal in its presentation .", "storylet_id": "219220"}], [{"original_text": "These yellow flowers remind me of some in my grandmother's yard.", "album_id": "72057594100640639", "photo_flickr_id": "124411140", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43844", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these yellow flowers remind me of some in my grandmother 's yard .", "storylet_id": "219221"}], [{"original_text": "Winter Red-Hot-Poker is pictured here. What a neat name for a plant with such interesting blooms.", "album_id": "72057594100640639", "photo_flickr_id": "124411411", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43844", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "winter red-hot-poker is pictured here . what a neat name for a plant with such interesting blooms .", "storylet_id": "219222"}], [{"original_text": "I especially liked these miniature trees. They look like they were pulled straight out of a forest. ", "album_id": "72057594100640639", "photo_flickr_id": "124411470", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43844", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i especially liked these miniature trees . they look like they were pulled straight out of a forest .", "storylet_id": "219223"}], [{"original_text": "We visited the botanical garden at just the right time to see all of these lovely blooms. The greenery and color was very pleasing today.", "album_id": "72057594100640639", "photo_flickr_id": "124411618", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43844", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we visited the botanical garden at just the right time to see all of these lovely blooms . the greenery and color was very pleasing today .", "storylet_id": "219224"}], [{"original_text": "We went to an art and learning center.", "album_id": "72057594107162271", "photo_flickr_id": "128544028", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43845", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to an art and learning center .", "storylet_id": "219225"}], [{"original_text": "The building was wide on the inside and very decorated.", "album_id": "72057594107162271", "photo_flickr_id": "128548039", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43845", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the building was wide on the inside and very decorated .", "storylet_id": "219226"}], [{"original_text": "The outside of the building was tall and wide.", "album_id": "72057594107162271", "photo_flickr_id": "128549478", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43845", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the outside of the building was tall and wide .", "storylet_id": "219227"}], [{"original_text": "Many people passed the building daily.", "album_id": "72057594107162271", "photo_flickr_id": "128549852", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43845", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many people passed the building daily .", "storylet_id": "219228"}], [{"original_text": "The flags of several countries lined up along the side.", "album_id": "72057594107162271", "photo_flickr_id": "128543349", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43845", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the flags of several countries lined up along the side .", "storylet_id": "219229"}], [{"original_text": "I wanted to show off where I work.", "album_id": "72057594107162271", "photo_flickr_id": "128543523", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43846", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i wanted to show off where i work .", "storylet_id": "219230"}], [{"original_text": "I am an artist and this is my gallery.", "album_id": "72057594107162271", "photo_flickr_id": "128543785", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43846", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i am an artist and this is my gallery .", "storylet_id": "219231"}], [{"original_text": "It is full of art.", "album_id": "72057594107162271", "photo_flickr_id": "128544028", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43846", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is full of art .", "storylet_id": "219232"}], [{"original_text": "IT has a lot of cool pieces to choose from.", "album_id": "72057594107162271", "photo_flickr_id": "128546576", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43846", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it has a lot of cool pieces to choose from .", "storylet_id": "219233"}], [{"original_text": "I even have a great view from my art office.", "album_id": "72057594107162271", "photo_flickr_id": "128547786", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43846", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i even have a great view from my art office .", "storylet_id": "219234"}], [{"original_text": "We decided to go to the international building.", "album_id": "72057594107162271", "photo_flickr_id": "128544028", "setting": "last-3-pick-old-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43847", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go to the international building .", "storylet_id": "219235"}], [{"original_text": "There were plants inside the building.", "album_id": "72057594107162271", "photo_flickr_id": "128548039", "setting": "last-3-pick-old-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43847", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were plants inside the building .", "storylet_id": "219236"}], [{"original_text": "It really stands out in the skyline with it's architecture.", "album_id": "72057594107162271", "photo_flickr_id": "128549478", "setting": "last-3-pick-old-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43847", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it really stands out in the skyline with it 's architecture .", "storylet_id": "219237"}], [{"original_text": "Many people were out that day in this section of town.", "album_id": "72057594107162271", "photo_flickr_id": "128549852", "setting": "last-3-pick-old-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43847", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many people were out that day in this section of town .", "storylet_id": "219238"}], [{"original_text": "As we leave we can see the flags from all around the world. ", "album_id": "72057594107162271", "photo_flickr_id": "128543349", "setting": "last-3-pick-old-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43847", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as we leave we can see the flags from all around the world .", "storylet_id": "219239"}], [{"original_text": "The storefront had displays in a cube shelf with a bench along side it. ", "album_id": "72057594107162271", "photo_flickr_id": "128543523", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43848", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the storefront had displays in a cube shelf with a bench along side it .", "storylet_id": "219240"}], [{"original_text": "As they walked up the stairs they could see banners outside the windows. ", "album_id": "72057594107162271", "photo_flickr_id": "128543785", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43848", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as they walked up the stairs they could see banners outside the windows .", "storylet_id": "219241"}], [{"original_text": "Once upstairs they were welcomed by a large informative poster. ", "album_id": "72057594107162271", "photo_flickr_id": "128544028", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43848", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once upstairs they were welcomed by a large informative poster .", "storylet_id": "219242"}], [{"original_text": "They were able to watch some of the artists at work. ", "album_id": "72057594107162271", "photo_flickr_id": "128546576", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43848", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were able to watch some of the artists at work .", "storylet_id": "219243"}], [{"original_text": "When they reached the top floor, they could look down on the patio where many of the artists would spend their breaks. ", "album_id": "72057594107162271", "photo_flickr_id": "128547786", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43848", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when they reached the top floor , they could look down on the patio where many of the artists would spend their breaks .", "storylet_id": "219244"}], [{"original_text": "This his a beautiful scene of the art building.", "album_id": "72057594107162271", "photo_flickr_id": "128543523", "setting": "last-3-pick-old-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "43849", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this his a beautiful scene of the art building .", "storylet_id": "219245"}], [{"original_text": "The art building consist of two floors.", "album_id": "72057594107162271", "photo_flickr_id": "128543785", "setting": "last-3-pick-old-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "43849", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the art building consist of two floors .", "storylet_id": "219246"}], [{"original_text": "This is a view of the first floor with art on the wall.", "album_id": "72057594107162271", "photo_flickr_id": "128544028", "setting": "last-3-pick-old-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "43849", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a view of the first floor with art on the wall .", "storylet_id": "219247"}], [{"original_text": "There are lots of art scenes in this building such as tables and chairs.", "album_id": "72057594107162271", "photo_flickr_id": "128546576", "setting": "last-3-pick-old-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "43849", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are lots of art scenes in this building such as tables and chairs .", "storylet_id": "219248"}], [{"original_text": "This is a sky view of the art building.", "album_id": "72057594107162271", "photo_flickr_id": "128547786", "setting": "last-3-pick-old-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "43849", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a sky view of the art building .", "storylet_id": "219249"}], [{"original_text": "Today we went searching for the best view in the park.", "album_id": "72057594103927268", "photo_flickr_id": "126580976", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "43850", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went searching for the best view in the park .", "storylet_id": "219250"}], [{"original_text": "On the way we found some ancient ruins.", "album_id": "72057594103927268", "photo_flickr_id": "126585908", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "43850", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on the way we found some ancient ruins .", "storylet_id": "219251"}], [{"original_text": "Aswell as an ancient ritual site of some sort.", "album_id": "72057594103927268", "photo_flickr_id": "126586336", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "43850", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "aswell as an ancient ritual site of some sort .", "storylet_id": "219252"}], [{"original_text": "Finally we found a suitable tree to climb.", "album_id": "72057594103927268", "photo_flickr_id": "126590203", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "43850", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally we found a suitable tree to climb .", "storylet_id": "219253"}], [{"original_text": "The view was amazing. We set up a hammock and enjoyed the rest of the day swinging above the park.", "album_id": "72057594103927268", "photo_flickr_id": "126588506", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "43850", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view was amazing . we set up a hammock and enjoyed the rest of the day swinging above the park .", "storylet_id": "219254"}], [{"original_text": "I went on a hike yesterday.", "album_id": "72057594103927268", "photo_flickr_id": "126577242", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43851", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on a hike yesterday .", "storylet_id": "219255"}], [{"original_text": "There was a lot of garbage in the woods.", "album_id": "72057594103927268", "photo_flickr_id": "126577640", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43851", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of garbage in the woods .", "storylet_id": "219256"}], [{"original_text": "There were some strange rock formations that I explored.", "album_id": "72057594103927268", "photo_flickr_id": "126579718", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43851", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some strange rock formations that i explored .", "storylet_id": "219257"}], [{"original_text": "I had a great time there.", "album_id": "72057594103927268", "photo_flickr_id": "126580080", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43851", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had a great time there .", "storylet_id": "219258"}], [{"original_text": "It was a long walk back to the car.", "album_id": "72057594103927268", "photo_flickr_id": "126580439", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43851", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a long walk back to the car .", "storylet_id": "219259"}], [{"original_text": "We're out here checking out this awesome park.", "album_id": "72057594103927268", "photo_flickr_id": "126580976", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43852", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 're out here checking out this awesome park .", "storylet_id": "219260"}], [{"original_text": "Exploring some the caves.", "album_id": "72057594103927268", "photo_flickr_id": "126585908", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43852", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "exploring some the caves .", "storylet_id": "219261"}], [{"original_text": "What a sight this is to see.", "album_id": "72057594103927268", "photo_flickr_id": "126586336", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43852", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what a sight this is to see .", "storylet_id": "219262"}], [{"original_text": "They're living right in there.", "album_id": "72057594103927268", "photo_flickr_id": "126590203", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43852", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they 're living right in there .", "storylet_id": "219263"}], [{"original_text": "There's everything you can see from here.", "album_id": "72057594103927268", "photo_flickr_id": "126588506", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43852", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there 's everything you can see from here .", "storylet_id": "219264"}], [{"original_text": "Our tour Guide was knowledgeable.", "album_id": "72057594103927268", "photo_flickr_id": "126580976", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43853", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our tour guide was knowledgeable .", "storylet_id": "219265"}], [{"original_text": "He knew all the areas to explore.", "album_id": "72057594103927268", "photo_flickr_id": "126585908", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43853", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he knew all the areas to explore .", "storylet_id": "219266"}], [{"original_text": "We traveled uncharted trails.", "album_id": "72057594103927268", "photo_flickr_id": "126586336", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43853", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we traveled uncharted trails .", "storylet_id": "219267"}], [{"original_text": "Saw neat natural wonders.", "album_id": "72057594103927268", "photo_flickr_id": "126590203", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43853", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "saw neat natural wonders .", "storylet_id": "219268"}], [{"original_text": "Took in the sights all around.", "album_id": "72057594103927268", "photo_flickr_id": "126588506", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43853", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "took in the sights all around .", "storylet_id": "219269"}], [{"original_text": "Today was a great day for a hike.", "album_id": "72057594103927268", "photo_flickr_id": "126580976", "setting": "last-3-pick-old-and-tell", "worker_id": "A4UVS4ESHEBWPZ3", "story_id": "43854", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was a great day for a hike .", "storylet_id": "219270"}], [{"original_text": "We stumbled by this cave. Looks like it's a door made especially for us!", "album_id": "72057594103927268", "photo_flickr_id": "126585908", "setting": "last-3-pick-old-and-tell", "worker_id": "A4UVS4ESHEBWPZ3", "story_id": "43854", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stumbled by this cave . looks like it 's a door made especially for us !", "storylet_id": "219271"}], [{"original_text": "The area is really beautiful. Lots of variation.", "album_id": "72057594103927268", "photo_flickr_id": "126586336", "setting": "last-3-pick-old-and-tell", "worker_id": "A4UVS4ESHEBWPZ3", "story_id": "43854", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the area is really beautiful . lots of variation .", "storylet_id": "219272"}], [{"original_text": "If I didn't grow up so near nature, I'd think this tree was alien.", "album_id": "72057594103927268", "photo_flickr_id": "126590203", "setting": "last-3-pick-old-and-tell", "worker_id": "A4UVS4ESHEBWPZ3", "story_id": "43854", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "if i did n't grow up so near nature , i 'd think this tree was alien .", "storylet_id": "219273"}], [{"original_text": "Glad I did grow up here though. So amazing to just look at.", "album_id": "72057594103927268", "photo_flickr_id": "126588506", "setting": "last-3-pick-old-and-tell", "worker_id": "A4UVS4ESHEBWPZ3", "story_id": "43854", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "glad i did grow up here though . so amazing to just look at .", "storylet_id": "219274"}], [{"original_text": "This is a old house ", "album_id": "72057594134422604", "photo_flickr_id": "146147294", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43855", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a old house", "storylet_id": "219275"}], [{"original_text": "That has a lot of work to be done on ", "album_id": "72057594134422604", "photo_flickr_id": "146139170", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43855", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that has a lot of work to be done on", "storylet_id": "219276"}], [{"original_text": "The windows need a lot of repairing from broken glass ", "album_id": "72057594134422604", "photo_flickr_id": "146147295", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43855", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the windows need a lot of repairing from broken glass", "storylet_id": "219277"}], [{"original_text": "And also the area of the house needs to be clean", "album_id": "72057594134422604", "photo_flickr_id": "146147287", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43855", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and also the area of the house needs to be clean", "storylet_id": "219278"}], [{"original_text": "But overall the land can be brought back up to living status", "album_id": "72057594134422604", "photo_flickr_id": "146147284", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43855", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but overall the land can be brought back up to living status", "storylet_id": "219279"}], [{"original_text": "I love old houses, but this one reminds me of the house out of Texas Chainsaw Massacre.", "album_id": "72057594134422604", "photo_flickr_id": "146147294", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43856", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love old houses , but this one reminds me of the house out of organization organization organization .", "storylet_id": "219280"}], [{"original_text": "The gingerbread molding on this one is awesome. ", "album_id": "72057594134422604", "photo_flickr_id": "146152943", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43856", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the gingerbread molding on this one is awesome .", "storylet_id": "219281"}], [{"original_text": "The corner tower on this one would neat from the inside. Three story house..love it.", "album_id": "72057594134422604", "photo_flickr_id": "146152942", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43856", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the corner tower on this one would neat from the inside . three story house..love it .", "storylet_id": "219282"}], [{"original_text": "This house would be fantastic if someone would fix it up. Needs lots of TLC.", "album_id": "72057594134422604", "photo_flickr_id": "146152941", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43856", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this house would be fantastic if someone would fix it up . needs lots of tlc .", "storylet_id": "219283"}], [{"original_text": "This looks like it was a church at one time. All that antique furniture would look good in my house.", "album_id": "72057594134422604", "photo_flickr_id": "146160071", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43856", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this looks like it was a church at one time . all that antique furniture would look good in my house .", "storylet_id": "219284"}], [{"original_text": "This is one of the oldest houses in this historic area.", "album_id": "72057594134422604", "photo_flickr_id": "146147294", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "43857", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is one of the oldest houses in this historic area .", "storylet_id": "219285"}], [{"original_text": "This one has been renovated quite a bit.", "album_id": "72057594134422604", "photo_flickr_id": "146152943", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "43857", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one has been renovated quite a bit .", "storylet_id": "219286"}], [{"original_text": "This one just might be my favorite.", "album_id": "72057594134422604", "photo_flickr_id": "146152942", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "43857", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one just might be my favorite .", "storylet_id": "219287"}], [{"original_text": "However, this one is the largest one I saw.", "album_id": "72057594134422604", "photo_flickr_id": "146152941", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "43857", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "however , this one is the largest one i saw .", "storylet_id": "219288"}], [{"original_text": "And here you can buy little knickknacks. ", "album_id": "72057594134422604", "photo_flickr_id": "146160071", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "43857", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and here you can buy little knickknacks .", "storylet_id": "219289"}], [{"original_text": "These pictures are from our tour of historical and original one of a kind homes. ", "album_id": "72057594134422604", "photo_flickr_id": "146147294", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43858", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these pictures are from our tour of historical and original one of a kind homes .", "storylet_id": "219290"}], [{"original_text": "This beautiful home has a wrap around porch with a built in swing. ", "album_id": "72057594134422604", "photo_flickr_id": "146152943", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43858", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this beautiful home has a wrap around porch with a built in swing .", "storylet_id": "219291"}], [{"original_text": "The tower on this home makes it feel and look so special.", "album_id": "72057594134422604", "photo_flickr_id": "146152942", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43858", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tower on this home makes it feel and look so special .", "storylet_id": "219292"}], [{"original_text": "Although this home was the most run down the inside was immaculate.", "album_id": "72057594134422604", "photo_flickr_id": "146152941", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43858", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "although this home was the most run down the inside was immaculate .", "storylet_id": "219293"}], [{"original_text": "At the end of the tour there was a little shop with an outdoor market. ", "album_id": "72057594134422604", "photo_flickr_id": "146160071", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43858", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the tour there was a little shop with an outdoor market .", "storylet_id": "219294"}], [{"original_text": "This was part of my summer road trip though some east coast cities this summer.", "album_id": "72057594134422604", "photo_flickr_id": "146147294", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43859", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was part of my summer road trip though some east coast cities this summer .", "storylet_id": "219295"}], [{"original_text": "I got to go through some of the back roads and see some old towns.", "album_id": "72057594134422604", "photo_flickr_id": "146139170", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43859", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got to go through some of the back roads and see some old towns .", "storylet_id": "219296"}], [{"original_text": "There was many abandoned building that had a lot of history.", "album_id": "72057594134422604", "photo_flickr_id": "146147295", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43859", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was many abandoned building that had a lot of history .", "storylet_id": "219297"}], [{"original_text": "This road creeped my out so I had to turn around.", "album_id": "72057594134422604", "photo_flickr_id": "146147287", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43859", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this road creeped my out so i had to turn around .", "storylet_id": "219298"}], [{"original_text": "These trees were very early in getting their fall colors.", "album_id": "72057594134422604", "photo_flickr_id": "146147284", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "43859", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these trees were very early in getting their fall colors .", "storylet_id": "219299"}], [{"original_text": "A big tower of a building is constructed in this city.", "album_id": "72057594140720580", "photo_flickr_id": "150229326", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "43860", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a big tower of a building is constructed in this city .", "storylet_id": "219300"}], [{"original_text": "Another big building looms over the city.", "album_id": "72057594140720580", "photo_flickr_id": "150229792", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "43860", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "another big building looms over the city .", "storylet_id": "219301"}], [{"original_text": "Another building stands off in the distance. This building is rather new.", "album_id": "72057594140720580", "photo_flickr_id": "150230104", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "43860", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another building stands off in the distance . this building is rather new .", "storylet_id": "219302"}], [{"original_text": "Another new building is being constructed. The new buildings should help the economy and generate a ton of new jobs.", "album_id": "72057594140720580", "photo_flickr_id": "150230893", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "43860", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another new building is being constructed . the new buildings should help the economy and generate a ton of new jobs .", "storylet_id": "219303"}], [{"original_text": "Another building is being built. This city is becoming more and more modern.", "album_id": "72057594140720580", "photo_flickr_id": "150231004", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "43860", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "another building is being built . this city is becoming more and more modern .", "storylet_id": "219304"}], [{"original_text": "I wanted to show off my hometwon.", "album_id": "72057594140720580", "photo_flickr_id": "150229326", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43861", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i wanted to show off my hometwon .", "storylet_id": "219305"}], [{"original_text": "There is a building close to where I live.", "album_id": "72057594140720580", "photo_flickr_id": "150229452", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43861", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is a building close to where i live .", "storylet_id": "219306"}], [{"original_text": "This is my office where I work, I just got a new job.", "album_id": "72057594140720580", "photo_flickr_id": "150229792", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43861", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is my office where i work , i just got a new job .", "storylet_id": "219307"}], [{"original_text": "Looks like some bad weather could be moving in.", "album_id": "72057594140720580", "photo_flickr_id": "150230009", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43861", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "looks like some bad weather could be moving in .", "storylet_id": "219308"}], [{"original_text": "But then the sun comes out!", "album_id": "72057594140720580", "photo_flickr_id": "150230104", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43861", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but then the sun comes out !", "storylet_id": "219309"}], [{"original_text": "In this city, there is a big contrast between the old and new buildings.", "album_id": "72057594140720580", "photo_flickr_id": "150229326", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "43862", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in this city , there is a big contrast between the old and new buildings .", "storylet_id": "219310"}], [{"original_text": "Older office buildings and warehouses tended to be made of brick, and their windows were small.", "album_id": "72057594140720580", "photo_flickr_id": "150229452", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "43862", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "older office buildings and warehouses tended to be made of brick , and their windows were small .", "storylet_id": "219311"}], [{"original_text": "The newer skyscrapers use a lot of glass and steel, and it's interesting to see the reflections of older buildings in their windows.", "album_id": "72057594140720580", "photo_flickr_id": "150229792", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "43862", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the newer skyscrapers use a lot of glass and steel , and it 's interesting to see the reflections of older buildings in their windows .", "storylet_id": "219312"}], [{"original_text": "Construction is going on all over the city. In a few years, the skyline will look very different.", "album_id": "72057594140720580", "photo_flickr_id": "150230009", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "43862", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "construction is going on all over the city . in a few years , the skyline will look very different .", "storylet_id": "219313"}], [{"original_text": "This new building towers over its older neighbors -- there's a great view from the upper floors!", "album_id": "72057594140720580", "photo_flickr_id": "150230104", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "43862", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this new building towers over its older neighbors -- there 's a great view from the upper floors !", "storylet_id": "219314"}], [{"original_text": "Skyscrapers weekly, the magazine where you can view skyscrapers of all shapes and sizes.", "album_id": "72057594140720580", "photo_flickr_id": "150229326", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43863", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "skyscrapers weekly , the magazine where you can view skyscrapers of all shapes and sizes .", "storylet_id": "219315"}], [{"original_text": "Where you can study the architectural traits.", "album_id": "72057594140720580", "photo_flickr_id": "150229792", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43863", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "where you can study the architectural traits .", "storylet_id": "219316"}], [{"original_text": "The people who designed the buildings.", "album_id": "72057594140720580", "photo_flickr_id": "150230104", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43863", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people who designed the buildings .", "storylet_id": "219317"}], [{"original_text": "The teams that built the buildings.", "album_id": "72057594140720580", "photo_flickr_id": "150230893", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43863", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the teams that built the buildings .", "storylet_id": "219318"}], [{"original_text": "And the final impact the structures had on their surrounding cities. This was the magazine he dreamed of creating.", "album_id": "72057594140720580", "photo_flickr_id": "150231004", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43863", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the final impact the structures had on their surrounding cities . this was the magazine he dreamed of creating .", "storylet_id": "219319"}], [{"original_text": "There are lots of large buildings all crammed together in the city.", "album_id": "72057594140720580", "photo_flickr_id": "150229326", "setting": "last-3-pick-old-and-tell", "worker_id": "0ZO0Y7SA6QIMK1W", "story_id": "43864", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are lots of large buildings all crammed together in the city .", "storylet_id": "219320"}], [{"original_text": "This building looks enormous from this angle.", "album_id": "72057594140720580", "photo_flickr_id": "150229792", "setting": "last-3-pick-old-and-tell", "worker_id": "0ZO0Y7SA6QIMK1W", "story_id": "43864", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this building looks enormous from this angle .", "storylet_id": "219321"}], [{"original_text": "This building really stands out in the city skyline.", "album_id": "72057594140720580", "photo_flickr_id": "150230104", "setting": "last-3-pick-old-and-tell", "worker_id": "0ZO0Y7SA6QIMK1W", "story_id": "43864", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this building really stands out in the city skyline .", "storylet_id": "219322"}], [{"original_text": "It must be scary to work on a building that far up.", "album_id": "72057594140720580", "photo_flickr_id": "150230893", "setting": "last-3-pick-old-and-tell", "worker_id": "0ZO0Y7SA6QIMK1W", "story_id": "43864", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it must be scary to work on a building that far up .", "storylet_id": "219323"}], [{"original_text": "So much activity in these buildings.", "album_id": "72057594140720580", "photo_flickr_id": "150231004", "setting": "last-3-pick-old-and-tell", "worker_id": "0ZO0Y7SA6QIMK1W", "story_id": "43864", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so much activity in these buildings .", "storylet_id": "219324"}], [{"original_text": "The city had several famous districts.", "album_id": "72157594145992252", "photo_flickr_id": "153758583", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43865", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city had several famous districts .", "storylet_id": "219325"}], [{"original_text": "There was a street that was very popular.", "album_id": "72157594145992252", "photo_flickr_id": "153758388", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43865", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a street that was very popular .", "storylet_id": "219326"}], [{"original_text": "The center of government was popular with tourists.", "album_id": "72157594145992252", "photo_flickr_id": "153757759", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43865", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the center of government was popular with tourists .", "storylet_id": "219327"}], [{"original_text": "Visitors lined up outside to get a better glimpse.", "album_id": "72157594145992252", "photo_flickr_id": "153757569", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43865", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "visitors lined up outside to get a better glimpse .", "storylet_id": "219328"}], [{"original_text": "Other historical monuments were just minutes away.", "album_id": "72157594145992252", "photo_flickr_id": "153756489", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43865", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "other historical monuments were just minutes away .", "storylet_id": "219329"}], [{"original_text": "I went on a trip.", "album_id": "72157594145992252", "photo_flickr_id": "153758853", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43866", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on a trip .", "storylet_id": "219330"}], [{"original_text": "To Washington DC.", "album_id": "72157594145992252", "photo_flickr_id": "153757759", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43866", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to location location .", "storylet_id": "219331"}], [{"original_text": "I saw lots of neat buildings.", "album_id": "72157594145992252", "photo_flickr_id": "153757314", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43866", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i saw lots of neat buildings .", "storylet_id": "219332"}], [{"original_text": "And open spaces.", "album_id": "72157594145992252", "photo_flickr_id": "153756489", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43866", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and open spaces .", "storylet_id": "219333"}], [{"original_text": "Like this cool park.", "album_id": "72157594145992252", "photo_flickr_id": "153755577", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "43866", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "like this cool park .", "storylet_id": "219334"}], [{"original_text": "We visited Washington DC lately.", "album_id": "72157594145992252", "photo_flickr_id": "153758853", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43867", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited location location lately .", "storylet_id": "219335"}], [{"original_text": "First, we saw the White House.", "album_id": "72157594145992252", "photo_flickr_id": "153757759", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43867", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first , we saw the organization organization .", "storylet_id": "219336"}], [{"original_text": "Next, we went to visit the Congress building.", "album_id": "72157594145992252", "photo_flickr_id": "153757314", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43867", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next , we went to visit the organization building .", "storylet_id": "219337"}], [{"original_text": "From afar, we can even see the Washington Monument.", "album_id": "72157594145992252", "photo_flickr_id": "153756489", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43867", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "from afar , we can even see the location monument .", "storylet_id": "219338"}], [{"original_text": "The lake leading to the White House was gorgeous too.", "album_id": "72157594145992252", "photo_flickr_id": "153755577", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43867", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lake leading to the location location was gorgeous too .", "storylet_id": "219339"}], [{"original_text": "There were no buses allowed on this corner. ", "album_id": "72157594145992252", "photo_flickr_id": "153758583", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43868", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were no buses allowed on this corner .", "storylet_id": "219340"}], [{"original_text": "Then they realized they were on Pennsylvania Ave. ", "album_id": "72157594145992252", "photo_flickr_id": "153758388", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43868", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then they realized they were on location ave .", "storylet_id": "219341"}], [{"original_text": "They walked past the White house. ", "album_id": "72157594145992252", "photo_flickr_id": "153757759", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43868", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they walked past the organization organization .", "storylet_id": "219342"}], [{"original_text": "Several tourists were standing outside the iron fence taking pictures. ", "album_id": "72157594145992252", "photo_flickr_id": "153757569", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43868", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "several tourists were standing outside the iron fence taking pictures .", "storylet_id": "219343"}], [{"original_text": "They could see the Washington Monument was within walking distance. ", "album_id": "72157594145992252", "photo_flickr_id": "153756489", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43868", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they could see the location monument was within walking distance .", "storylet_id": "219344"}], [{"original_text": "We're traveling somewhere, can you guess where we are from this photograph of a street we walked along on our way?", "album_id": "72157594145992252", "photo_flickr_id": "153758583", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43869", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 're traveling somewhere , can you guess where we are from this photograph of a street we walked along on our way ?", "storylet_id": "219345"}], [{"original_text": "Pennsylvania AVE! We're getting closer.", "album_id": "72157594145992252", "photo_flickr_id": "153758388", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43869", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "location ave ! we 're getting closer .", "storylet_id": "219346"}], [{"original_text": "Today we went to The White House.", "album_id": "72157594145992252", "photo_flickr_id": "153757759", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43869", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "today we went to the organization organization .", "storylet_id": "219347"}], [{"original_text": "The day was nice and a number of other tourists were out and about taking pictures in front of the president's house.", "album_id": "72157594145992252", "photo_flickr_id": "153757569", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43869", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the day was nice and a number of other tourists were out and about taking pictures in front of the president 's house .", "storylet_id": "219348"}], [{"original_text": "Here's an image of the Washington Memorial that I took later in the day.", "album_id": "72157594145992252", "photo_flickr_id": "153756489", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43869", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's an image of the location location that i took later in the day .", "storylet_id": "219349"}], [{"original_text": "The trees and nature were vast.", "album_id": "72157594146094534", "photo_flickr_id": "153824196", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43870", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the trees and nature were vast .", "storylet_id": "219350"}], [{"original_text": "There were marvelous stone buildings.", "album_id": "72157594146094534", "photo_flickr_id": "153820393", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43870", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were marvelous stone buildings .", "storylet_id": "219351"}], [{"original_text": "The stairs were very easy to climb but there were a lot of them.", "album_id": "72157594146094534", "photo_flickr_id": "153824049", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43870", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the stairs were very easy to climb but there were a lot of them .", "storylet_id": "219352"}], [{"original_text": "We found this cat along the route to the market.", "album_id": "72157594146094534", "photo_flickr_id": "153820516", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43870", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found this cat along the route to the market .", "storylet_id": "219353"}], [{"original_text": "We were able to find nice fabric and rugs at the shop.", "album_id": "72157594146094534", "photo_flickr_id": "153824573", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43870", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were able to find nice fabric and rugs at the shop .", "storylet_id": "219354"}], [{"original_text": "On our vacation we got to see many large bodies of water.", "album_id": "72157594146094534", "photo_flickr_id": "153824941", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43871", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our vacation we got to see many large bodies of water .", "storylet_id": "219355"}], [{"original_text": "The brick structure was massive and torn down.", "album_id": "72157594146094534", "photo_flickr_id": "153821070", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43871", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the brick structure was massive and torn down .", "storylet_id": "219356"}], [{"original_text": "This part of the brick structure was still up and could be accessed.", "album_id": "72157594146094534", "photo_flickr_id": "153820393", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43871", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this part of the brick structure was still up and could be accessed .", "storylet_id": "219357"}], [{"original_text": "We got to see the remains of an old arena.", "album_id": "72157594146094534", "photo_flickr_id": "153823330", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43871", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got to see the remains of an old arena .", "storylet_id": "219358"}], [{"original_text": "Our cat was amused by the entire trip and really enjoyed it.", "album_id": "72157594146094534", "photo_flickr_id": "153820516", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "43871", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our cat was amused by the entire trip and really enjoyed it .", "storylet_id": "219359"}], [{"original_text": "It was a long hike through the scenic country side to get to the ruins.", "album_id": "72157594146094534", "photo_flickr_id": "153824196", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43872", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a long hike through the scenic country side to get to the ruins .", "storylet_id": "219360"}], [{"original_text": "The first building we saw as we headed into the ruins. It was the most complete of the ruins.", "album_id": "72157594146094534", "photo_flickr_id": "153820393", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43872", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first building we saw as we headed into the ruins . it was the most complete of the ruins .", "storylet_id": "219361"}], [{"original_text": "The amphitheater was very hard to recognize from the road because of how low the seats were. ", "album_id": "72157594146094534", "photo_flickr_id": "153824049", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43872", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the amphitheater was very hard to recognize from the road because of how low the seats were .", "storylet_id": "219362"}], [{"original_text": "There was a local cat that was there, watching us as we looked around.", "album_id": "72157594146094534", "photo_flickr_id": "153820516", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43872", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a local cat that was there , watching us as we looked around .", "storylet_id": "219363"}], [{"original_text": "Once we got back, we checked out the market to pick up some rugs.", "album_id": "72157594146094534", "photo_flickr_id": "153824573", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43872", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once we got back , we checked out the market to pick up some rugs .", "storylet_id": "219364"}], [{"original_text": "The views are breathtaking in this small town.", "album_id": "72157594146094534", "photo_flickr_id": "153824196", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43873", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the views are breathtaking in this small town .", "storylet_id": "219365"}], [{"original_text": "The history comes to life. ", "album_id": "72157594146094534", "photo_flickr_id": "153820393", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43873", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the history comes to life .", "storylet_id": "219366"}], [{"original_text": "Everyone who comes here comes for the sights.", "album_id": "72157594146094534", "photo_flickr_id": "153824049", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43873", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone who comes here comes for the sights .", "storylet_id": "219367"}], [{"original_text": "Even a cat can appreciate it.", "album_id": "72157594146094534", "photo_flickr_id": "153820516", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43873", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even a cat can appreciate it .", "storylet_id": "219368"}], [{"original_text": "The locals make their money by selling art work that represents the sights.", "album_id": "72157594146094534", "photo_flickr_id": "153824573", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43873", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the locals make their money by selling art work that represents the sights .", "storylet_id": "219369"}], [{"original_text": "The scenery surrounding the area is beautiful.", "album_id": "72157594146094534", "photo_flickr_id": "153824196", "setting": "last-3-pick-old-and-tell", "worker_id": "0ZO0Y7SA6QIMK1W", "story_id": "43874", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the scenery surrounding the area is beautiful .", "storylet_id": "219370"}], [{"original_text": "Here is an amazing example of ancient ruins.", "album_id": "72157594146094534", "photo_flickr_id": "153820393", "setting": "last-3-pick-old-and-tell", "worker_id": "0ZO0Y7SA6QIMK1W", "story_id": "43874", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is an amazing example of ancient ruins .", "storylet_id": "219371"}], [{"original_text": "Look at all of those stones. It is incredible how all of this has been recovered.", "album_id": "72157594146094534", "photo_flickr_id": "153824049", "setting": "last-3-pick-old-and-tell", "worker_id": "0ZO0Y7SA6QIMK1W", "story_id": "43874", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at all of those stones . it is incredible how all of this has been recovered .", "storylet_id": "219372"}], [{"original_text": "Even the cats like to hang out here too.", "album_id": "72157594146094534", "photo_flickr_id": "153820516", "setting": "last-3-pick-old-and-tell", "worker_id": "0ZO0Y7SA6QIMK1W", "story_id": "43874", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the cats like to hang out here too .", "storylet_id": "219373"}], [{"original_text": "There are lots of lovely things for sale in the nearby shops. This store sells mainly rugs.", "album_id": "72157594146094534", "photo_flickr_id": "153824573", "setting": "last-3-pick-old-and-tell", "worker_id": "0ZO0Y7SA6QIMK1W", "story_id": "43874", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are lots of lovely things for sale in the nearby shops . this store sells mainly rugs .", "storylet_id": "219374"}], [{"original_text": "The entrance way to the building was very inviting.", "album_id": "72157594149943607", "photo_flickr_id": "156528019", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43875", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the entrance way to the building was very inviting .", "storylet_id": "219375"}], [{"original_text": "There were all these little papers hanging on the tree. ", "album_id": "72157594149943607", "photo_flickr_id": "156532134", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43875", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were all these little papers hanging on the tree .", "storylet_id": "219376"}], [{"original_text": "I found out later that they were wishes that people had placed there. ", "album_id": "72157594149943607", "photo_flickr_id": "115794193", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43875", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i found out later that they were wishes that people had placed there .", "storylet_id": "219377"}], [{"original_text": "The dragon was supposedly going to grant your wishes.", "album_id": "72157594149943607", "photo_flickr_id": "156529907", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43875", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dragon was supposedly going to grant your wishes .", "storylet_id": "219378"}], [{"original_text": "It was a very detailed dragon with a lot of powers, I guess. ", "album_id": "72157594149943607", "photo_flickr_id": "92396712", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43875", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a very detailed dragon with a lot of powers , i guess .", "storylet_id": "219379"}], [{"original_text": "Visited a temple today. I've never seen one in person before.", "album_id": "72157594149943607", "photo_flickr_id": "156527897", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43876", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visited a temple today . i 've never seen one in person before .", "storylet_id": "219380"}], [{"original_text": "The walkway up to the temple. Very calm and peaceful.", "album_id": "72157594149943607", "photo_flickr_id": "156528019", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43876", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the walkway up to the temple . very calm and peaceful .", "storylet_id": "219381"}], [{"original_text": "Notes people have left for the monks.", "album_id": "72157594149943607", "photo_flickr_id": "156528133", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43876", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "notes people have left for the monks .", "storylet_id": "219382"}], [{"original_text": "More notes, but these are prayers that they hope will be answered.", "album_id": "72157594149943607", "photo_flickr_id": "115794107", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43876", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more notes , but these are prayers that they hope will be answered .", "storylet_id": "219383"}], [{"original_text": "A dragon the guards the temple. It was a once in a lifetime trip.", "album_id": "72157594149943607", "photo_flickr_id": "115794318", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43876", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a dragon the guards the temple . it was a once in a lifetime trip .", "storylet_id": "219384"}], [{"original_text": "Shrines are a major part of Asian life.", "album_id": "72157594149943607", "photo_flickr_id": "156528019", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43877", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "shrines are a major part of asian life .", "storylet_id": "219385"}], [{"original_text": "Many shrine visitors write wishes and prayers on little pieces of paper,", "album_id": "72157594149943607", "photo_flickr_id": "156532134", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43877", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many shrine visitors write wishes and prayers on little pieces of paper ,", "storylet_id": "219386"}], [{"original_text": "and then they tie those pieces of paper to tree branches around the shrine.", "album_id": "72157594149943607", "photo_flickr_id": "115794193", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43877", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and then they tie those pieces of paper to tree branches around the shrine .", "storylet_id": "219387"}], [{"original_text": "They pray to the gods of the shrine", "album_id": "72157594149943607", "photo_flickr_id": "156529907", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43877", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they pray to the gods of the shrine", "storylet_id": "219388"}], [{"original_text": "to fulfill their hopes and dreams.", "album_id": "72157594149943607", "photo_flickr_id": "92396712", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43877", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to fulfill their hopes and dreams .", "storylet_id": "219389"}], [{"original_text": "We are traveling again.", "album_id": "72157594149943607", "photo_flickr_id": "156527897", "setting": "last-3-pick-old-and-tell", "worker_id": "NOB6TAMQQNYYDTL", "story_id": "43878", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are traveling again .", "storylet_id": "219390"}], [{"original_text": "Today we are at a church in China. To celebrate the coming year.", "album_id": "72157594149943607", "photo_flickr_id": "156528019", "setting": "last-3-pick-old-and-tell", "worker_id": "NOB6TAMQQNYYDTL", "story_id": "43878", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today we are at a church in location . to celebrate the coming year .", "storylet_id": "219391"}], [{"original_text": "It is the year of the Horse!", "album_id": "72157594149943607", "photo_flickr_id": "156528133", "setting": "last-3-pick-old-and-tell", "worker_id": "NOB6TAMQQNYYDTL", "story_id": "43878", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is the year of the horse !", "storylet_id": "219392"}], [{"original_text": "The customs here are so charming.", "album_id": "72157594149943607", "photo_flickr_id": "115794107", "setting": "last-3-pick-old-and-tell", "worker_id": "NOB6TAMQQNYYDTL", "story_id": "43878", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the customs here are so charming .", "storylet_id": "219393"}], [{"original_text": "New year is never complete without a dragon.", "album_id": "72157594149943607", "photo_flickr_id": "115794318", "setting": "last-3-pick-old-and-tell", "worker_id": "NOB6TAMQQNYYDTL", "story_id": "43878", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "new year is never complete without a dragon .", "storylet_id": "219394"}], [{"original_text": "Here is the entrance to the shrine we visited today.", "album_id": "72157594149943607", "photo_flickr_id": "156527897", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43879", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is the entrance to the shrine we visited today .", "storylet_id": "219395"}], [{"original_text": "The shrine, after entering through the gate.", "album_id": "72157594149943607", "photo_flickr_id": "156528019", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43879", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the shrine , after entering through the gate .", "storylet_id": "219396"}], [{"original_text": "A display case at the temple of things that can be purchased.", "album_id": "72157594149943607", "photo_flickr_id": "156528133", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43879", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a display case at the temple of things that can be purchased .", "storylet_id": "219397"}], [{"original_text": "Prayers and wishes tied to tree branches by visitors to the shrine.", "album_id": "72157594149943607", "photo_flickr_id": "115794107", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43879", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "prayers and wishes tied to tree branches by visitors to the shrine .", "storylet_id": "219398"}], [{"original_text": "Here is dragon statue I saw as we left the shine.", "album_id": "72157594149943607", "photo_flickr_id": "115794318", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43879", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is dragon statue i saw as we left the shine .", "storylet_id": "219399"}], [{"original_text": "The couple took a picture next to the stream.", "album_id": "72157594162352251", "photo_flickr_id": "164835825", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43880", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple took a picture next to the stream .", "storylet_id": "219400"}], [{"original_text": "We took a trip on the train to the clubhouse.", "album_id": "72157594162352251", "photo_flickr_id": "164839207", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43880", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a trip on the train to the clubhouse .", "storylet_id": "219401"}], [{"original_text": "This lady was playing piano in the corner.", "album_id": "72157594162352251", "photo_flickr_id": "164843329", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43880", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this lady was playing piano in the corner .", "storylet_id": "219402"}], [{"original_text": "We all celebrated and drank in the bar.", "album_id": "72157594162352251", "photo_flickr_id": "164840890", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43880", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all celebrated and drank in the bar .", "storylet_id": "219403"}], [{"original_text": "When we got outside, it was still daylight.", "album_id": "72157594162352251", "photo_flickr_id": "164837640", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43880", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we got outside , it was still daylight .", "storylet_id": "219404"}], [{"original_text": "Our trip to the mountains was held up by bad weather.", "album_id": "72157594162352251", "photo_flickr_id": "164924764", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43881", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip to the mountains was held up by bad weather .", "storylet_id": "219405"}], [{"original_text": "So we toured the river instead.", "album_id": "72157594162352251", "photo_flickr_id": "164832233", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43881", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so we toured the river instead .", "storylet_id": "219406"}], [{"original_text": "We found our camping spot.", "album_id": "72157594162352251", "photo_flickr_id": "164832538", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43881", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we found our camping spot .", "storylet_id": "219407"}], [{"original_text": "After foraging through the woods we found food.", "album_id": "72157594162352251", "photo_flickr_id": "164833352", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43881", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after foraging through the woods we found food .", "storylet_id": "219408"}], [{"original_text": "We were happy to be at the river instead of the mountain.", "album_id": "72157594162352251", "photo_flickr_id": "164835825", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43881", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were happy to be at the river instead of the mountain .", "storylet_id": "219409"}], [{"original_text": "The travelers went out to find a trail in the wilderness.", "album_id": "72157594162352251", "photo_flickr_id": "164924764", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43882", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the travelers went out to find a trail in the wilderness .", "storylet_id": "219410"}], [{"original_text": "They hiked along a river.", "album_id": "72157594162352251", "photo_flickr_id": "164832233", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43882", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they hiked along a river .", "storylet_id": "219411"}], [{"original_text": "It was cold out so they had to dress appropriately.", "album_id": "72157594162352251", "photo_flickr_id": "164832538", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43882", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was cold out so they had to dress appropriately .", "storylet_id": "219412"}], [{"original_text": "They enjoyed spending time together in the wilderness.", "album_id": "72157594162352251", "photo_flickr_id": "164833352", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43882", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they enjoyed spending time together in the wilderness .", "storylet_id": "219413"}], [{"original_text": "The beautiful area provided wonderful photo opportunities. ", "album_id": "72157594162352251", "photo_flickr_id": "164835825", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43882", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the beautiful area provided wonderful photo opportunities .", "storylet_id": "219414"}], [{"original_text": "Many tourists visited this national park.", "album_id": "72157594162352251", "photo_flickr_id": "164924764", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "43883", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many tourists visited this national park .", "storylet_id": "219415"}], [{"original_text": "The scenery was breathtaking.", "album_id": "72157594162352251", "photo_flickr_id": "164832233", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "43883", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the scenery was breathtaking .", "storylet_id": "219416"}], [{"original_text": "The man came here to hike.", "album_id": "72157594162352251", "photo_flickr_id": "164832538", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "43883", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man came here to hike .", "storylet_id": "219417"}], [{"original_text": "He met two other hikers and they started to talk.", "album_id": "72157594162352251", "photo_flickr_id": "164833352", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "43883", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he met two other hikers and they started to talk .", "storylet_id": "219418"}], [{"original_text": "An elderly couple asked the hiker to take their picture. He was happy to do so. He could relate with people who liked the same things he did.", "album_id": "72157594162352251", "photo_flickr_id": "164835825", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "43883", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "an elderly couple asked the hiker to take their picture . he was happy to do so . he could relate with people who liked the same things he did .", "storylet_id": "219419"}], [{"original_text": "On our trip to Denver we hiked by a beautiful river. ", "album_id": "72157594162352251", "photo_flickr_id": "164835825", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43884", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our trip to location we hiked by a beautiful river .", "storylet_id": "219420"}], [{"original_text": "We stopped by a historical train track that was still being used.", "album_id": "72157594162352251", "photo_flickr_id": "164839207", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43884", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped by a historical train track that was still being used .", "storylet_id": "219421"}], [{"original_text": "We got to listen to piano music at a local cafe.", "album_id": "72157594162352251", "photo_flickr_id": "164843329", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43884", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got to listen to piano music at a local cafe .", "storylet_id": "219422"}], [{"original_text": "We stopped by a bar for a drink and were surprised to see the delightful man with the hat. ", "album_id": "72157594162352251", "photo_flickr_id": "164840890", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43884", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped by a bar for a drink and were surprised to see the delightful man with the hat .", "storylet_id": "219423"}], [{"original_text": "We enjoyed walking through town exploring the shops. .", "album_id": "72157594162352251", "photo_flickr_id": "164837640", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43884", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we enjoyed walking through town exploring the shops . .", "storylet_id": "219424"}], [{"original_text": "We watched the television and laughed.", "album_id": "72157594182341605", "photo_flickr_id": "176770935", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43885", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we watched the television and laughed .", "storylet_id": "219425"}], [{"original_text": "On the wall, was a display of tennis raquets.", "album_id": "72157594182341605", "photo_flickr_id": "176768746", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43885", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on the wall , was a display of tennis raquets .", "storylet_id": "219426"}], [{"original_text": "The grill was very useful in making our food.", "album_id": "72157594182341605", "photo_flickr_id": "176770221", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43885", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the grill was very useful in making our food .", "storylet_id": "219427"}], [{"original_text": "We went inside to analyze the pictures we had on the wall.", "album_id": "72157594182341605", "photo_flickr_id": "176772051", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43885", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went inside to analyze the pictures we had on the wall .", "storylet_id": "219428"}], [{"original_text": "The store was full of random items.", "album_id": "72157594182341605", "photo_flickr_id": "176772266", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43885", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the store was full of random items .", "storylet_id": "219429"}], [{"original_text": "The television in the hotel room was small.", "album_id": "72157594182341605", "photo_flickr_id": "176770935", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43886", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the television in the hotel room was small .", "storylet_id": "219430"}], [{"original_text": "So we got better seats.", "album_id": "72157594182341605", "photo_flickr_id": "176771158", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43886", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so we got better seats .", "storylet_id": "219431"}], [{"original_text": "We had our ticket but couldn't get in.", "album_id": "72157594182341605", "photo_flickr_id": "176771317", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43886", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had our ticket but could n't get in .", "storylet_id": "219432"}], [{"original_text": "So we packed out stuff for the trip.", "album_id": "72157594182341605", "photo_flickr_id": "176770515", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43886", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so we packed out stuff for the trip .", "storylet_id": "219433"}], [{"original_text": "We were then going to start in the tents.", "album_id": "72157594182341605", "photo_flickr_id": "176770741", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43886", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were then going to start in the tents .", "storylet_id": "219434"}], [{"original_text": "During our trip to Great Britain we saw many odd things. ", "album_id": "72157594182341605", "photo_flickr_id": "176770935", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43887", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during our trip to location location we saw many odd things .", "storylet_id": "219435"}], [{"original_text": "There was a museum devoted to rackets. These were traditional rackets.", "album_id": "72157594182341605", "photo_flickr_id": "176768746", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43887", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a museum devoted to rackets . these were traditional rackets .", "storylet_id": "219436"}], [{"original_text": "This was a not so tradition racket. A racket made to look like a grill.", "album_id": "72157594182341605", "photo_flickr_id": "176770221", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43887", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was a not so tradition racket . a racket made to look like a grill .", "storylet_id": "219437"}], [{"original_text": "There were so many post cards to choose from. ", "album_id": "72157594182341605", "photo_flickr_id": "176772051", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43887", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were so many post cards to choose from .", "storylet_id": "219438"}], [{"original_text": "The gift shop also lots of statues to choose from. ", "album_id": "72157594182341605", "photo_flickr_id": "176772266", "setting": "last-3-pick-old-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "43887", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the gift shop also lots of statues to choose from .", "storylet_id": "219439"}], [{"original_text": "There is a television tucked in the corner beneath the flag. Rule Brittania!", "album_id": "72157594182341605", "photo_flickr_id": "176770935", "setting": "last-3-pick-old-and-tell", "worker_id": "0ZO0Y7SA6QIMK1W", "story_id": "43888", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is a television tucked in the corner beneath the flag . rule brittania !", "storylet_id": "219440"}], [{"original_text": "Cross stitch using old tennis racquets as canvas. Interesting!", "album_id": "72157594182341605", "photo_flickr_id": "176768746", "setting": "last-3-pick-old-and-tell", "worker_id": "0ZO0Y7SA6QIMK1W", "story_id": "43888", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "cross stitch using old tennis racquets as canvas . interesting !", "storylet_id": "219441"}], [{"original_text": "A crochet grill! Everything looks delicious, and very cute. How creative!", "album_id": "72157594182341605", "photo_flickr_id": "176770221", "setting": "last-3-pick-old-and-tell", "worker_id": "0ZO0Y7SA6QIMK1W", "story_id": "43888", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a crochet grill ! everything looks delicious , and very cute . how creative !", "storylet_id": "219442"}], [{"original_text": "This is a really interesting collection of cards.", "album_id": "72157594182341605", "photo_flickr_id": "176772051", "setting": "last-3-pick-old-and-tell", "worker_id": "0ZO0Y7SA6QIMK1W", "story_id": "43888", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a really interesting collection of cards .", "storylet_id": "219443"}], [{"original_text": "Trophies, cosmetics and sunglasses. That's quite an assortment!", "album_id": "72157594182341605", "photo_flickr_id": "176772266", "setting": "last-3-pick-old-and-tell", "worker_id": "0ZO0Y7SA6QIMK1W", "story_id": "43888", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "trophies , cosmetics and sunglasses . that 's quite an assortment !", "storylet_id": "219444"}], [{"original_text": "for the holidays sit home with the family and enjoy TV.", "album_id": "72157594182341605", "photo_flickr_id": "176770935", "setting": "last-3-pick-old-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "43889", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for the holidays sit home with the family and enjoy tv .", "storylet_id": "219445"}], [{"original_text": "Next, get out and play a sport activity such as tennis with family.", "album_id": "72157594182341605", "photo_flickr_id": "176768746", "setting": "last-3-pick-old-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "43889", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next , get out and play a sport activity such as tennis with family .", "storylet_id": "219446"}], [{"original_text": "Put some of the most delicious food on the grill.", "album_id": "72157594182341605", "photo_flickr_id": "176770221", "setting": "last-3-pick-old-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "43889", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "put some of the most delicious food on the grill .", "storylet_id": "219447"}], [{"original_text": "maybe spend some looking at pictures and postal in your office.", "album_id": "72157594182341605", "photo_flickr_id": "176772051", "setting": "last-3-pick-old-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "43889", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "maybe spend some looking at pictures and postal in your office .", "storylet_id": "219448"}], [{"original_text": "Last, get a good feel of your trophies from all your hard work. ", "album_id": "72157594182341605", "photo_flickr_id": "176772266", "setting": "last-3-pick-old-and-tell", "worker_id": "882UW4141W39B5G", "story_id": "43889", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last , get a good feel of your trophies from all your hard work .", "storylet_id": "219449"}], [{"original_text": "The storm ruined so many homes.", "album_id": "72157594194526377", "photo_flickr_id": "181325424", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43890", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the storm ruined so many homes .", "storylet_id": "219450"}], [{"original_text": "Looks like it ripped the front off the house and piled it up.", "album_id": "72157594194526377", "photo_flickr_id": "181325428", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43890", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "looks like it ripped the front off the house and piled it up .", "storylet_id": "219451"}], [{"original_text": "It even blew this boat up on shore and into a yard.", "album_id": "72157594194526377", "photo_flickr_id": "181336148", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43890", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it even blew this boat up on shore and into a yard .", "storylet_id": "219452"}], [{"original_text": "Oh wow!! It picked up this car and dropped it on top of that truck.", "album_id": "72157594194526377", "photo_flickr_id": "181336150", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43890", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "oh wow ! ! it picked up this car and dropped it on top of that truck .", "storylet_id": "219453"}], [{"original_text": "Oh those poor people. The storm destroyed their entire house.", "album_id": "72157594194526377", "photo_flickr_id": "181336152", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43890", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "oh those poor people . the storm destroyed their entire house .", "storylet_id": "219454"}], [{"original_text": "The house is empty and abandoned", "album_id": "72157594194526377", "photo_flickr_id": "181325424", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43891", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the house is empty and abandoned", "storylet_id": "219455"}], [{"original_text": "Needs a lot of attention to this house", "album_id": "72157594194526377", "photo_flickr_id": "181325425", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43891", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "needs a lot of attention to this house", "storylet_id": "219456"}], [{"original_text": "Also the yard needs work ", "album_id": "72157594194526377", "photo_flickr_id": "181325426", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43891", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "also the yard needs work", "storylet_id": "219457"}], [{"original_text": "But after all the house can be repaired and look different", "album_id": "72157594194526377", "photo_flickr_id": "181336146", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43891", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but after all the house can be repaired and look different", "storylet_id": "219458"}], [{"original_text": "And brought back to life", "album_id": "72157594194526377", "photo_flickr_id": "181336144", "setting": "first-2-pick-and-tell", "worker_id": "W6LLZHJPEZOTO76", "story_id": "43891", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and brought back to life", "storylet_id": "219459"}], [{"original_text": "Our home, after we cleaned the all the debris up.", "album_id": "72157594194526377", "photo_flickr_id": "181325424", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "43892", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our home , after we cleaned the all the debris up .", "storylet_id": "219460"}], [{"original_text": "This is my neighbor's home and what it looked like after the tornado. They were lucky.", "album_id": "72157594194526377", "photo_flickr_id": "181325428", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "43892", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is my neighbor 's home and what it looked like after the tornado . they were lucky .", "storylet_id": "219461"}], [{"original_text": "This boat had to be tossed over twenty miles to land here.", "album_id": "72157594194526377", "photo_flickr_id": "181336148", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "43892", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this boat had to be tossed over twenty miles to land here .", "storylet_id": "219462"}], [{"original_text": "That's my friend's car that's sitting on top of my truck!", "album_id": "72157594194526377", "photo_flickr_id": "181336150", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "43892", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that 's my friend 's car that 's sitting on top of my truck !", "storylet_id": "219463"}], [{"original_text": "We were hit hard, but just down the street, our neighbors lost everything.", "album_id": "72157594194526377", "photo_flickr_id": "181336152", "setting": "last-3-pick-old-and-tell", "worker_id": "ABOQL6I5Z1FJR22", "story_id": "43892", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were hit hard , but just down the street , our neighbors lost everything .", "storylet_id": "219464"}], [{"original_text": "A hurricane struck the town.", "album_id": "72157594194526377", "photo_flickr_id": "181325424", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43893", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a hurricane struck the town .", "storylet_id": "219465"}], [{"original_text": "It damaged the houses and telephone poles.", "album_id": "72157594194526377", "photo_flickr_id": "181325428", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43893", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it damaged the houses and telephone poles .", "storylet_id": "219466"}], [{"original_text": "Even a boat laid on the yard of a house.", "album_id": "72157594194526377", "photo_flickr_id": "181336148", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43893", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even a boat laid on the yard of a house .", "storylet_id": "219467"}], [{"original_text": "Cars were on top of each other.", "album_id": "72157594194526377", "photo_flickr_id": "181336150", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43893", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cars were on top of each other .", "storylet_id": "219468"}], [{"original_text": "Lastly, this was the best depiction of what a hurricane can do.", "album_id": "72157594194526377", "photo_flickr_id": "181336152", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "43893", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , this was the best depiction of what a hurricane can do .", "storylet_id": "219469"}], [{"original_text": "You could see the devastation the tornado left in it's wake driving through the small town. ", "album_id": "72157594194526377", "photo_flickr_id": "181325424", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43894", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "you could see the devastation the tornado left in it 's wake driving through the small town .", "storylet_id": "219470"}], [{"original_text": "You can see electrical lines destroyed.", "album_id": "72157594194526377", "photo_flickr_id": "181325428", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43894", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you can see electrical lines destroyed .", "storylet_id": "219471"}], [{"original_text": "Boats barely standing up.", "album_id": "72157594194526377", "photo_flickr_id": "181336148", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43894", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "boats barely standing up .", "storylet_id": "219472"}], [{"original_text": "Cars piled on top of each other.", "album_id": "72157594194526377", "photo_flickr_id": "181336150", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43894", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cars piled on top of each other .", "storylet_id": "219473"}], [{"original_text": "And houses torn apart.", "album_id": "72157594194526377", "photo_flickr_id": "181336152", "setting": "last-3-pick-old-and-tell", "worker_id": "G1QY5MGD0WEIC7Q", "story_id": "43894", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and houses torn apart .", "storylet_id": "219474"}], [{"original_text": "I went for a walk yesterday.", "album_id": "72157594229610644", "photo_flickr_id": "210354051", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43895", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a walk yesterday .", "storylet_id": "219475"}], [{"original_text": "There were a lot of signs posted.", "album_id": "72157594229610644", "photo_flickr_id": "210354533", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43895", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of signs posted .", "storylet_id": "219476"}], [{"original_text": "I couldn't read some of them.", "album_id": "72157594229610644", "photo_flickr_id": "210355049", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43895", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i could n't read some of them .", "storylet_id": "219477"}], [{"original_text": "When i got to downtown I kept walking.", "album_id": "72157594229610644", "photo_flickr_id": "210355328", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43895", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when i got to downtown i kept walking .", "storylet_id": "219478"}], [{"original_text": "I saw the church in the distance.", "album_id": "72157594229610644", "photo_flickr_id": "210355539", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43895", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i saw the church in the distance .", "storylet_id": "219479"}], [{"original_text": "A meeting was to be held at a local building.", "album_id": "72157594229610644", "photo_flickr_id": "210355328", "setting": "first-2-pick-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "43896", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a meeting was to be held at a local building .", "storylet_id": "219480"}], [{"original_text": "The people arrived on time to discuss the future of their community.", "album_id": "72157594229610644", "photo_flickr_id": "210355937", "setting": "first-2-pick-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "43896", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the people arrived on time to discuss the future of their community .", "storylet_id": "219481"}], [{"original_text": "The people gathered in a big group inside the building", "album_id": "72157594229610644", "photo_flickr_id": "210356625", "setting": "first-2-pick-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "43896", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people gathered in a big group inside the building", "storylet_id": "219482"}], [{"original_text": "The building was too small, so the people moved outside.", "album_id": "72157594229610644", "photo_flickr_id": "210358551", "setting": "first-2-pick-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "43896", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the building was too small , so the people moved outside .", "storylet_id": "219483"}], [{"original_text": "A man gave a speech outside letting everyone know what would happen.", "album_id": "72157594229610644", "photo_flickr_id": "210358956", "setting": "first-2-pick-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "43896", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a man gave a speech outside letting everyone know what would happen .", "storylet_id": "219484"}], [{"original_text": "The first building was had a forbidding look about it.", "album_id": "72157594229610644", "photo_flickr_id": "210355328", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "43897", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the first building was had a forbidding look about it .", "storylet_id": "219485"}], [{"original_text": "Everybody seems to be headed to the small white house.", "album_id": "72157594229610644", "photo_flickr_id": "210355937", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "43897", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everybody seems to be headed to the small white house .", "storylet_id": "219486"}], [{"original_text": "There was a crush of people waiting to get in.", "album_id": "72157594229610644", "photo_flickr_id": "210356625", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "43897", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a crush of people waiting to get in .", "storylet_id": "219487"}], [{"original_text": "Others were waiting outside.", "album_id": "72157594229610644", "photo_flickr_id": "210358551", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "43897", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others were waiting outside .", "storylet_id": "219488"}], [{"original_text": "The man is giving a lecture about the history of the house.", "album_id": "72157594229610644", "photo_flickr_id": "210358956", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "43897", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the man is giving a lecture about the history of the house .", "storylet_id": "219489"}], [{"original_text": "The narrow roads made it difficult for travel.", "album_id": "72157594229610644", "photo_flickr_id": "210354051", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43898", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the narrow roads made it difficult for travel .", "storylet_id": "219490"}], [{"original_text": "The welcomed us with a banner hanging across.", "album_id": "72157594229610644", "photo_flickr_id": "210354533", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43898", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the welcomed us with a banner hanging across .", "storylet_id": "219491"}], [{"original_text": "We know that the next town would be a little farther.", "album_id": "72157594229610644", "photo_flickr_id": "210355049", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43898", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we know that the next town would be a little farther .", "storylet_id": "219492"}], [{"original_text": "Their attractions were better though.", "album_id": "72157594229610644", "photo_flickr_id": "210355328", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43898", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their attractions were better though .", "storylet_id": "219493"}], [{"original_text": "They also had better parking.", "album_id": "72157594229610644", "photo_flickr_id": "210355539", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43898", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they also had better parking .", "storylet_id": "219494"}], [{"original_text": "The union organizer arrived in town the day of the meeting.", "album_id": "72157594229610644", "photo_flickr_id": "210355328", "setting": "last-3-pick-old-and-tell", "worker_id": "7DII3ITS22SAHNP", "story_id": "43899", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the union organizer arrived in town the day of the meeting .", "storylet_id": "219495"}], [{"original_text": "The mill's parking lot was packed.", "album_id": "72157594229610644", "photo_flickr_id": "210355937", "setting": "last-3-pick-old-and-tell", "worker_id": "7DII3ITS22SAHNP", "story_id": "43899", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the mill 's parking lot was packed .", "storylet_id": "219496"}], [{"original_text": "There was no room for anyone to sit inside.", "album_id": "72157594229610644", "photo_flickr_id": "210356625", "setting": "last-3-pick-old-and-tell", "worker_id": "7DII3ITS22SAHNP", "story_id": "43899", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was no room for anyone to sit inside .", "storylet_id": "219497"}], [{"original_text": "The meeting was taken outside and the crowd was still standing room only. ", "album_id": "72157594229610644", "photo_flickr_id": "210358551", "setting": "last-3-pick-old-and-tell", "worker_id": "7DII3ITS22SAHNP", "story_id": "43899", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the meeting was taken outside and the crowd was still standing room only .", "storylet_id": "219498"}], [{"original_text": "Workers, families, everyone listened as the union rep listed all the benefits of unionizing.", "album_id": "72157594229610644", "photo_flickr_id": "210358956", "setting": "last-3-pick-old-and-tell", "worker_id": "7DII3ITS22SAHNP", "story_id": "43899", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "workers , families , everyone listened as the union rep listed all the benefits of unionizing .", "storylet_id": "219499"}], [{"original_text": "We traveled to visit a great city.", "album_id": "72157594236594374", "photo_flickr_id": "215061156", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43900", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we traveled to visit a great city .", "storylet_id": "219500"}], [{"original_text": "The bridge was exotic and intricate.", "album_id": "72157594236594374", "photo_flickr_id": "215058624", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43900", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bridge was exotic and intricate .", "storylet_id": "219501"}], [{"original_text": "The farmer's market was fresh and colorful.", "album_id": "72157594236594374", "photo_flickr_id": "216179742", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43900", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the farmer 's market was fresh and colorful .", "storylet_id": "219502"}], [{"original_text": "We also saw some funny looking cars.", "album_id": "72157594236594374", "photo_flickr_id": "215108881", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43900", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also saw some funny looking cars .", "storylet_id": "219503"}], [{"original_text": "And nature was not forgotten here; it was beautiful to sightsee. ", "album_id": "72157594236594374", "photo_flickr_id": "215060338", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43900", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and nature was not forgotten here ; it was beautiful to sightsee .", "storylet_id": "219504"}], [{"original_text": "This was our first trip here and this was quite a site.", "album_id": "72157594236594374", "photo_flickr_id": "215061156", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43901", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was our first trip here and this was quite a site .", "storylet_id": "219505"}], [{"original_text": "We marveled at the architecture on this bridge.", "album_id": "72157594236594374", "photo_flickr_id": "215058624", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43901", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we marveled at the architecture on this bridge .", "storylet_id": "219506"}], [{"original_text": "The open markets were very lively and colorful.", "album_id": "72157594236594374", "photo_flickr_id": "216179742", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43901", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the open markets were very lively and colorful .", "storylet_id": "219507"}], [{"original_text": "The state buildings were adorned with flags on the street.", "album_id": "72157594236594374", "photo_flickr_id": "216179812", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43901", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the state buildings were adorned with flags on the street .", "storylet_id": "219508"}], [{"original_text": "Before we left, we saw these cute cars.", "album_id": "72157594236594374", "photo_flickr_id": "215108881", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43901", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before we left , we saw these cute cars .", "storylet_id": "219509"}], [{"original_text": "Cities rich in history are the best cities to visit.", "album_id": "72157594236594374", "photo_flickr_id": "215061156", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "43902", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "cities rich in history are the best cities to visit .", "storylet_id": "219510"}], [{"original_text": "The architecture and bridges are gorgeous.", "album_id": "72157594236594374", "photo_flickr_id": "215058624", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "43902", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the architecture and bridges are gorgeous .", "storylet_id": "219511"}], [{"original_text": "The local markets remind us of the simplest things in life.", "album_id": "72157594236594374", "photo_flickr_id": "216179742", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "43902", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the local markets remind us of the simplest things in life .", "storylet_id": "219512"}], [{"original_text": "If you are feeling adventurous, you can rent little carts to explore the city.", "album_id": "72157594236594374", "photo_flickr_id": "215108881", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "43902", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "if you are feeling adventurous , you can rent little carts to explore the city .", "storylet_id": "219513"}], [{"original_text": "The best part of the city, is its beauty and how it integrates nature, culture, and civilization.", "album_id": "72157594236594374", "photo_flickr_id": "215060338", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "43902", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part of the city , is its beauty and how it integrates nature , culture , and civilization .", "storylet_id": "219514"}], [{"original_text": "The whole family was excited for their trip to Italy.", "album_id": "72157594236594374", "photo_flickr_id": "215061156", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43903", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family was excited for their trip to location .", "storylet_id": "219515"}], [{"original_text": "Everyone was amazed by the beautiful architecture. ", "album_id": "72157594236594374", "photo_flickr_id": "215058624", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43903", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was amazed by the beautiful architecture .", "storylet_id": "219516"}], [{"original_text": "We stopped at a local fruit market, everything looked delicious.", "album_id": "72157594236594374", "photo_flickr_id": "216179742", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43903", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stopped at a local fruit market , everything looked delicious .", "storylet_id": "219517"}], [{"original_text": "We had a great time exploring the city throughout the day.", "album_id": "72157594236594374", "photo_flickr_id": "216179812", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43903", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a great time exploring the city throughout the day .", "storylet_id": "219518"}], [{"original_text": "We ended the day by hiring a taxi to take us to our hotel. ", "album_id": "72157594236594374", "photo_flickr_id": "215108881", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "43903", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the day by hiring a taxi to take us to our hotel .", "storylet_id": "219519"}], [{"original_text": "We wanted to visit a foreing country.", "album_id": "72157594236594374", "photo_flickr_id": "215061156", "setting": "last-3-pick-old-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43904", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we wanted to visit a foreing country .", "storylet_id": "219520"}], [{"original_text": "This was my first time out of the United States.", "album_id": "72157594236594374", "photo_flickr_id": "215058624", "setting": "last-3-pick-old-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43904", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was my first time out of the location location .", "storylet_id": "219521"}], [{"original_text": "This country has such good food!", "album_id": "72157594236594374", "photo_flickr_id": "216179742", "setting": "last-3-pick-old-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43904", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this country has such good food !", "storylet_id": "219522"}], [{"original_text": "And they have unique cars.", "album_id": "72157594236594374", "photo_flickr_id": "215108881", "setting": "last-3-pick-old-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43904", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and they have unique cars .", "storylet_id": "219523"}], [{"original_text": "I was really fascinated with the nature over there.", "album_id": "72157594236594374", "photo_flickr_id": "215060338", "setting": "last-3-pick-old-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "43904", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was really fascinated with the nature over there .", "storylet_id": "219524"}], [{"original_text": "I decided to go diving today.", "album_id": "72157594246009271", "photo_flickr_id": "225145165", "setting": "first-2-pick-and-tell", "worker_id": "2FHWL8TZ32C9GJB", "story_id": "43905", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to go diving today .", "storylet_id": "219525"}], [{"original_text": "I went just far enough to get to a reef.", "album_id": "72157594246009271", "photo_flickr_id": "221298938", "setting": "first-2-pick-and-tell", "worker_id": "2FHWL8TZ32C9GJB", "story_id": "43905", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i went just far enough to get to a reef .", "storylet_id": "219526"}], [{"original_text": "I got lucky and saw many schools of fish.", "album_id": "72157594246009271", "photo_flickr_id": "221299133", "setting": "first-2-pick-and-tell", "worker_id": "2FHWL8TZ32C9GJB", "story_id": "43905", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got lucky and saw many schools of fish .", "storylet_id": "219527"}], [{"original_text": "I even saw a manta ray!", "album_id": "72157594246009271", "photo_flickr_id": "221299225", "setting": "first-2-pick-and-tell", "worker_id": "2FHWL8TZ32C9GJB", "story_id": "43905", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i even saw a manta ray !", "storylet_id": "219528"}], [{"original_text": "This coral is the most beautiful one I saw all day.", "album_id": "72157594246009271", "photo_flickr_id": "221299514", "setting": "first-2-pick-and-tell", "worker_id": "2FHWL8TZ32C9GJB", "story_id": "43905", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this coral is the most beautiful one i saw all day .", "storylet_id": "219529"}], [{"original_text": "The aquatic center had shells for sell.", "album_id": "72157594246009271", "photo_flickr_id": "226226744", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43906", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the aquatic center had shells for sell .", "storylet_id": "219530"}], [{"original_text": "Looking under the water seemed like another world.", "album_id": "72157594246009271", "photo_flickr_id": "221298938", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43906", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "looking under the water seemed like another world .", "storylet_id": "219531"}], [{"original_text": "The fish had their freedom to swim wherever.", "album_id": "72157594246009271", "photo_flickr_id": "221299035", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43906", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fish had their freedom to swim wherever .", "storylet_id": "219532"}], [{"original_text": "The sting ray still looked intimidating.", "album_id": "72157594246009271", "photo_flickr_id": "221299225", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43906", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sting ray still looked intimidating .", "storylet_id": "219533"}], [{"original_text": "I love seeing the animals interact.", "album_id": "72157594246009271", "photo_flickr_id": "221299763", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43906", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love seeing the animals interact .", "storylet_id": "219534"}], [{"original_text": "We visited an aquarium that had a little poud outside. ", "album_id": "72157594246009271", "photo_flickr_id": "225145165", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43907", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited an aquarium that had a little poud outside .", "storylet_id": "219535"}], [{"original_text": "The corrals were lovely. ", "album_id": "72157594246009271", "photo_flickr_id": "221298938", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43907", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the corrals were lovely .", "storylet_id": "219536"}], [{"original_text": "And the brightly colored fish swimming in schools were hypontizing. ", "album_id": "72157594246009271", "photo_flickr_id": "221299133", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43907", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the brightly colored fish swimming in schools were hypontizing .", "storylet_id": "219537"}], [{"original_text": "The ray was fun to watch. ", "album_id": "72157594246009271", "photo_flickr_id": "221299225", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43907", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ray was fun to watch .", "storylet_id": "219538"}], [{"original_text": "The anemones swayed in the water, like they were waving us goodbye. ", "album_id": "72157594246009271", "photo_flickr_id": "221299514", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "43907", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the anemones swayed in the water , like they were waving us goodbye .", "storylet_id": "219539"}], [{"original_text": "Life underwater is exciting.", "album_id": "72157594246009271", "photo_flickr_id": "225145165", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43908", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "life underwater is exciting .", "storylet_id": "219540"}], [{"original_text": "There are several different types of fish,", "album_id": "72157594246009271", "photo_flickr_id": "221298938", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43908", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are several different types of fish ,", "storylet_id": "219541"}], [{"original_text": "some who swim in packs!", "album_id": "72157594246009271", "photo_flickr_id": "221299133", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43908", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some who swim in packs !", "storylet_id": "219542"}], [{"original_text": "There are also sting rays, but beware they don't sting you! ", "album_id": "72157594246009271", "photo_flickr_id": "221299225", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43908", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are also sting rays , but beware they do n't sting you !", "storylet_id": "219543"}], [{"original_text": "On top of that, you can see several underwater plants that are all alive and use the water to breathe. It's a fascinating ecosystem. ", "album_id": "72157594246009271", "photo_flickr_id": "221299514", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43908", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on top of that , you can see several underwater plants that are all alive and use the water to breathe . it 's a fascinating ecosystem .", "storylet_id": "219544"}], [{"original_text": "A trip to the ocean offers many interesting things to look at, both on shore and underwater. ", "album_id": "72157594246009271", "photo_flickr_id": "225145165", "setting": "last-3-pick-old-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "43909", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a trip to the ocean offers many interesting things to look at , both on shore and underwater .", "storylet_id": "219545"}], [{"original_text": "You can find fish feeding on coral. ", "album_id": "72157594246009271", "photo_flickr_id": "221298938", "setting": "last-3-pick-old-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "43909", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you can find fish feeding on coral .", "storylet_id": "219546"}], [{"original_text": "It's fun to see whole schools of beautiful fish. ", "album_id": "72157594246009271", "photo_flickr_id": "221299133", "setting": "last-3-pick-old-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "43909", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's fun to see whole schools of beautiful fish .", "storylet_id": "219547"}], [{"original_text": "If you're lucky, you might see a manta ray. ", "album_id": "72157594246009271", "photo_flickr_id": "221299225", "setting": "last-3-pick-old-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "43909", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "if you 're lucky , you might see a manta ray .", "storylet_id": "219548"}], [{"original_text": "You might even get to see some marine life in bloom.", "album_id": "72157594246009271", "photo_flickr_id": "221299514", "setting": "last-3-pick-old-and-tell", "worker_id": "YDBM6QSYP4TVP7V", "story_id": "43909", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you might even get to see some marine life in bloom .", "storylet_id": "219549"}], [{"original_text": "Taking black & white photos is my favorite. This is an old bridge I found one day.", "album_id": "72157600047957959", "photo_flickr_id": "233129985", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43910", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "taking black & white photos is my favorite . this is an old bridge i found one day .", "storylet_id": "219550"}], [{"original_text": "Our house by the beach so much better photographed this way.", "album_id": "72157600047957959", "photo_flickr_id": "233092904", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43910", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our house by the beach so much better photographed this way .", "storylet_id": "219551"}], [{"original_text": "The beach looks like it belongs in an old movie.", "album_id": "72157600047957959", "photo_flickr_id": "233092902", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43910", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beach looks like it belongs in an old movie .", "storylet_id": "219552"}], [{"original_text": "You could almost feel a ghost watching you from down the lane.", "album_id": "72157600047957959", "photo_flickr_id": "233092897", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43910", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you could almost feel a ghost watching you from down the lane .", "storylet_id": "219553"}], [{"original_text": "Paul sitting on the bench watching the waves. Very cool.", "album_id": "72157600047957959", "photo_flickr_id": "233129989", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43910", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] sitting on the bench watching the waves . very cool .", "storylet_id": "219554"}], [{"original_text": "The bridge was a little scary.", "album_id": "72157600047957959", "photo_flickr_id": "233129985", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43911", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bridge was a little scary .", "storylet_id": "219555"}], [{"original_text": "So we decided to take the path.", "album_id": "72157600047957959", "photo_flickr_id": "233129984", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43911", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so we decided to take the path .", "storylet_id": "219556"}], [{"original_text": "We arrived at the little bungalow.", "album_id": "72157600047957959", "photo_flickr_id": "233092904", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43911", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we arrived at the little bungalow .", "storylet_id": "219557"}], [{"original_text": "The way back was the path.", "album_id": "72157600047957959", "photo_flickr_id": "233092894", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43911", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the way back was the path .", "storylet_id": "219558"}], [{"original_text": "We found our destination.", "album_id": "72157600047957959", "photo_flickr_id": "233092889", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43911", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we found our destination .", "storylet_id": "219559"}], [{"original_text": "Photos edited in black and white can often catch the essence of a picture, like this bridge for instance.", "album_id": "72157600047957959", "photo_flickr_id": "233129985", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43912", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "photos edited in black and white can often catch the essence of a picture , like this bridge for instance .", "storylet_id": "219560"}], [{"original_text": "Even a small set of land with a tree can make a photo look very unique.", "album_id": "72157600047957959", "photo_flickr_id": "233092904", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43912", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even a small set of land with a tree can make a photo look very unique .", "storylet_id": "219561"}], [{"original_text": "The most breathtaking photos are the ones taken at the beach.", "album_id": "72157600047957959", "photo_flickr_id": "233092902", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43912", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the most breathtaking photos are the ones taken at the beach .", "storylet_id": "219562"}], [{"original_text": "If angled the right way the photographer can catch the clouds and water coming in perfect.", "album_id": "72157600047957959", "photo_flickr_id": "233092897", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43912", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "if angled the right way the photographer can catch the clouds and water coming in perfect .", "storylet_id": "219563"}], [{"original_text": "But sometimes something simple as a person watching the ocean can be a great photo.", "album_id": "72157600047957959", "photo_flickr_id": "233129989", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43912", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but sometimes something simple as a person watching the ocean can be a great photo .", "storylet_id": "219564"}], [{"original_text": "The bridge to the island where we rented the house for vacation.", "album_id": "72157600047957959", "photo_flickr_id": "233129985", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "43913", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bridge to the island where we rented the house for vacation .", "storylet_id": "219565"}], [{"original_text": "This is the outside view of the house we rented for vacation.", "album_id": "72157600047957959", "photo_flickr_id": "233092904", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "43913", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the outside view of the house we rented for vacation .", "storylet_id": "219566"}], [{"original_text": "The view of the shore from the patio at the house.", "album_id": "72157600047957959", "photo_flickr_id": "233092902", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "43913", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the view of the shore from the patio at the house .", "storylet_id": "219567"}], [{"original_text": "Some really nice views just a ways from the house.", "album_id": "72157600047957959", "photo_flickr_id": "233092897", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "43913", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some really nice views just a ways from the house .", "storylet_id": "219568"}], [{"original_text": "There was a nice walking path just a few minutes from the house.", "album_id": "72157600047957959", "photo_flickr_id": "233129989", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "43913", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a nice walking path just a few minutes from the house .", "storylet_id": "219569"}], [{"original_text": "Small coastal towns have a lot of beauty if you look closely.", "album_id": "72157600047957959", "photo_flickr_id": "233129985", "setting": "last-3-pick-old-and-tell", "worker_id": "E1P725JC9ENXC6H", "story_id": "43914", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "small coastal towns have a lot of beauty if you look closely .", "storylet_id": "219570"}], [{"original_text": "The homes here are more modest in size.", "album_id": "72157600047957959", "photo_flickr_id": "233092904", "setting": "last-3-pick-old-and-tell", "worker_id": "E1P725JC9ENXC6H", "story_id": "43914", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the homes here are more modest in size .", "storylet_id": "219571"}], [{"original_text": "Rock formations are peppered along the coastline. They are visually appealing, but make swimming dangerous.", "album_id": "72157600047957959", "photo_flickr_id": "233092902", "setting": "last-3-pick-old-and-tell", "worker_id": "E1P725JC9ENXC6H", "story_id": "43914", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "rock formations are peppered along the coastline . they are visually appealing , but make swimming dangerous .", "storylet_id": "219572"}], [{"original_text": "Though it was a cloudy day, we still got a lot of nice pictures.", "album_id": "72157600047957959", "photo_flickr_id": "233092897", "setting": "last-3-pick-old-and-tell", "worker_id": "E1P725JC9ENXC6H", "story_id": "43914", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "though it was a cloudy day , we still got a lot of nice pictures .", "storylet_id": "219573"}], [{"original_text": "It's so relaxing to sit on the park bench and look out over the water. ", "album_id": "72157600047957959", "photo_flickr_id": "233129989", "setting": "last-3-pick-old-and-tell", "worker_id": "E1P725JC9ENXC6H", "story_id": "43914", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's so relaxing to sit on the park bench and look out over the water .", "storylet_id": "219574"}], [{"original_text": "Several people came out for the home viewing.", "album_id": "72157603052890435", "photo_flickr_id": "215222041", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43915", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "several people came out for the home viewing .", "storylet_id": "219575"}], [{"original_text": "The grounds were deorated with plants.", "album_id": "72157603052890435", "photo_flickr_id": "215220285", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43915", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the grounds were deorated with plants .", "storylet_id": "219576"}], [{"original_text": "The green shrubs made the yard stand out.", "album_id": "72157603052890435", "photo_flickr_id": "215220337", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43915", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the green shrubs made the yard stand out .", "storylet_id": "219577"}], [{"original_text": "And provide shade for the home.", "album_id": "72157603052890435", "photo_flickr_id": "215220820", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43915", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and provide shade for the home .", "storylet_id": "219578"}], [{"original_text": "Garages were just a few of the bonuses to this home.", "album_id": "72157603052890435", "photo_flickr_id": "215221964", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43915", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "garages were just a few of the bonuses to this home .", "storylet_id": "219579"}], [{"original_text": "This is my brothers new house we went to visit and bring a house warming gift.", "album_id": "72157603052890435", "photo_flickr_id": "215220039", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "43916", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my brothers new house we went to visit and bring a house warming gift .", "storylet_id": "219580"}], [{"original_text": "The side yard had a lot of plants and bushes with a bunch of trees.", "album_id": "72157603052890435", "photo_flickr_id": "215220091", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "43916", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the side yard had a lot of plants and bushes with a bunch of trees .", "storylet_id": "219581"}], [{"original_text": "A side view of the house you can catch the lake.It was so beautiful there.", "album_id": "72157603052890435", "photo_flickr_id": "215220174", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "43916", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a side view of the house you can catch the lake.it was so beautiful there .", "storylet_id": "219582"}], [{"original_text": "My brothers wife loves plants and has a small patio garden near the back door.", "album_id": "72157603052890435", "photo_flickr_id": "215220285", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "43916", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my brothers wife loves plants and has a small patio garden near the back door .", "storylet_id": "219583"}], [{"original_text": "Here is another patio which would be great for bbq's and other gatherings.", "album_id": "72157603052890435", "photo_flickr_id": "215220337", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "43916", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is another patio which would be great for bbq 's and other gatherings .", "storylet_id": "219584"}], [{"original_text": "The people took a tour of the beautiful home.", "album_id": "72157603052890435", "photo_flickr_id": "215222041", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "43917", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people took a tour of the beautiful home .", "storylet_id": "219585"}], [{"original_text": "The landscaping added to the appeal of the home.", "album_id": "72157603052890435", "photo_flickr_id": "215220285", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "43917", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the landscaping added to the appeal of the home .", "storylet_id": "219586"}], [{"original_text": "The architecture was interesting and ornate.", "album_id": "72157603052890435", "photo_flickr_id": "215220337", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "43917", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the architecture was interesting and ornate .", "storylet_id": "219587"}], [{"original_text": "The entire plot was lush and beautiful.", "album_id": "72157603052890435", "photo_flickr_id": "215220820", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "43917", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the entire plot was lush and beautiful .", "storylet_id": "219588"}], [{"original_text": "It was a great home to tour to get a glimpse into 1960's architecture.", "album_id": "72157603052890435", "photo_flickr_id": "215221964", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "43917", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great home to tour to get a glimpse into 1960 's architecture .", "storylet_id": "219589"}], [{"original_text": "Its time for our Landscape Reveal Party!", "album_id": "72157603052890435", "photo_flickr_id": "215222041", "setting": "last-3-pick-old-and-tell", "worker_id": "ANZFT83NEQLA4Q5", "story_id": "43918", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "its time for our landscape reveal party !", "storylet_id": "219590"}], [{"original_text": "Fortunately we were able to get some of our grandfathers prized plants from his garden", "album_id": "72157603052890435", "photo_flickr_id": "215220285", "setting": "last-3-pick-old-and-tell", "worker_id": "ANZFT83NEQLA4Q5", "story_id": "43918", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fortunately we were able to get some of our grandfathers prized plants from his garden", "storylet_id": "219591"}], [{"original_text": "Look at our glorious back yard oasis! ", "album_id": "72157603052890435", "photo_flickr_id": "215220337", "setting": "last-3-pick-old-and-tell", "worker_id": "ANZFT83NEQLA4Q5", "story_id": "43918", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at our glorious back yard oasis !", "storylet_id": "219592"}], [{"original_text": "the privacy we've created is astonishing! ", "album_id": "72157603052890435", "photo_flickr_id": "215220820", "setting": "last-3-pick-old-and-tell", "worker_id": "ANZFT83NEQLA4Q5", "story_id": "43918", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the privacy we 've created is astonishing !", "storylet_id": "219593"}], [{"original_text": "Look at the beautiful tree blooming by the garage - even the side of the yard is a secret getaway!", "album_id": "72157603052890435", "photo_flickr_id": "215221964", "setting": "last-3-pick-old-and-tell", "worker_id": "ANZFT83NEQLA4Q5", "story_id": "43918", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "look at the beautiful tree blooming by the garage - even the side of the yard is a secret getaway !", "storylet_id": "219594"}], [{"original_text": "This house is for sale.", "album_id": "72157603052890435", "photo_flickr_id": "215222041", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "43919", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this house is for sale .", "storylet_id": "219595"}], [{"original_text": "The landscaping on this house well put together.", "album_id": "72157603052890435", "photo_flickr_id": "215220285", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "43919", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the landscaping on this house well put together .", "storylet_id": "219596"}], [{"original_text": "The house has a lot of curb appeal. ", "album_id": "72157603052890435", "photo_flickr_id": "215220337", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "43919", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the house has a lot of curb appeal .", "storylet_id": "219597"}], [{"original_text": "The owners want to sell the house for $200,000.", "album_id": "72157603052890435", "photo_flickr_id": "215220820", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "43919", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the owners want to sell the house for $ 200,000 .", "storylet_id": "219598"}], [{"original_text": "They hope it sells soon.", "album_id": "72157603052890435", "photo_flickr_id": "215221964", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "43919", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they hope it sells soon .", "storylet_id": "219599"}], [{"original_text": "I went to go see a large cathedral.", "album_id": "72157594266207564", "photo_flickr_id": "232560070", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43920", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to go see a large cathedral .", "storylet_id": "219600"}], [{"original_text": "The ceilings were so high and unbelievably tall.", "album_id": "72157594266207564", "photo_flickr_id": "232560308", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43920", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ceilings were so high and unbelievably tall .", "storylet_id": "219601"}], [{"original_text": "The seats and stage were extravagant and fit so many people.", "album_id": "72157594266207564", "photo_flickr_id": "232560412", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43920", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the seats and stage were extravagant and fit so many people .", "storylet_id": "219602"}], [{"original_text": "There was a large statue in the church, and it represented their God.", "album_id": "72157594266207564", "photo_flickr_id": "232562177", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43920", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a large statue in the church , and it represented their god .", "storylet_id": "219603"}], [{"original_text": "There was also an inscription below various statues.", "album_id": "72157594266207564", "photo_flickr_id": "232564453", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43920", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was also an inscription below various statues .", "storylet_id": "219604"}], [{"original_text": "Today we went back to our roots. The first church in history.", "album_id": "72157594266207564", "photo_flickr_id": "232560070", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "43921", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went back to our roots . the first church in history .", "storylet_id": "219605"}], [{"original_text": "The chapel was beautiful and ready to be filled with people.", "album_id": "72157594266207564", "photo_flickr_id": "232560412", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "43921", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the chapel was beautiful and ready to be filled with people .", "storylet_id": "219606"}], [{"original_text": "This is the actualy place where jesus preached.", "album_id": "72157594266207564", "photo_flickr_id": "232560533", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "43921", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the actualy place where jesus preached .", "storylet_id": "219607"}], [{"original_text": "He also had his hand in making this beautiful pane.", "album_id": "72157594266207564", "photo_flickr_id": "232561264", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "43921", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he also had his hand in making this beautiful pane .", "storylet_id": "219608"}], [{"original_text": "We ended the day rehearsing with the choir.", "album_id": "72157594266207564", "photo_flickr_id": "232563780", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "43921", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the day rehearsing with the choir .", "storylet_id": "219609"}], [{"original_text": "The castle stood high above.", "album_id": "72157594266207564", "photo_flickr_id": "232560070", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43922", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the castle stood high above .", "storylet_id": "219610"}], [{"original_text": "We entered the ancient church.", "album_id": "72157594266207564", "photo_flickr_id": "232560412", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43922", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we entered the ancient church .", "storylet_id": "219611"}], [{"original_text": "Everything was reverent.", "album_id": "72157594266207564", "photo_flickr_id": "232560533", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43922", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everything was reverent .", "storylet_id": "219612"}], [{"original_text": "The stain glass took years to craft.", "album_id": "72157594266207564", "photo_flickr_id": "232561264", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43922", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the stain glass took years to craft .", "storylet_id": "219613"}], [{"original_text": "The choir began soon after we entered.", "album_id": "72157594266207564", "photo_flickr_id": "232563780", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "43922", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the choir began soon after we entered .", "storylet_id": "219614"}], [{"original_text": "The cathedral looms over the town. It's Gothic architecture giving it the appearance of a screaming man.", "album_id": "72157594266207564", "photo_flickr_id": "232560070", "setting": "last-3-pick-old-and-tell", "worker_id": "21NWFDZH6O2KM7V", "story_id": "43923", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cathedral looms over the town . it 's gothic architecture giving it the appearance of a screaming man .", "storylet_id": "219615"}], [{"original_text": "Inside though are lofty ceilings, brightly painted in white and filled with graceful arches.", "album_id": "72157594266207564", "photo_flickr_id": "232560308", "setting": "last-3-pick-old-and-tell", "worker_id": "21NWFDZH6O2KM7V", "story_id": "43923", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside though are lofty ceilings , brightly painted in white and filled with graceful arches .", "storylet_id": "219616"}], [{"original_text": "Light, pillars, and graceful curves are designed to bring the eyes to the center.", "album_id": "72157594266207564", "photo_flickr_id": "232560412", "setting": "last-3-pick-old-and-tell", "worker_id": "21NWFDZH6O2KM7V", "story_id": "43923", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "light , pillars , and graceful curves are designed to bring the eyes to the center .", "storylet_id": "219617"}], [{"original_text": "Statues grace the halls, giving those that pass through their blessings.", "album_id": "72157594266207564", "photo_flickr_id": "232562177", "setting": "last-3-pick-old-and-tell", "worker_id": "21NWFDZH6O2KM7V", "story_id": "43923", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "statues grace the halls , giving those that pass through their blessings .", "storylet_id": "219618"}], [{"original_text": "All is not cheerful inside, though. There are reminders of darker times.", "album_id": "72157594266207564", "photo_flickr_id": "232564453", "setting": "last-3-pick-old-and-tell", "worker_id": "21NWFDZH6O2KM7V", "story_id": "43923", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all is not cheerful inside , though . there are reminders of darker times .", "storylet_id": "219619"}], [{"original_text": "This grand church is a monument to the city.", "album_id": "72157594266207564", "photo_flickr_id": "232560070", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43924", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this grand church is a monument to the city .", "storylet_id": "219620"}], [{"original_text": "The inside is historic and rich. What a spectacle!", "album_id": "72157594266207564", "photo_flickr_id": "232560412", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43924", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the inside is historic and rich . what a spectacle !", "storylet_id": "219621"}], [{"original_text": "The baptismal fountain has seen many a new Christian child.", "album_id": "72157594266207564", "photo_flickr_id": "232560533", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43924", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the baptismal fountain has seen many a new [male] child .", "storylet_id": "219622"}], [{"original_text": "The stained glass windows are full of color and grace.", "album_id": "72157594266207564", "photo_flickr_id": "232561264", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43924", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the stained glass windows are full of color and grace .", "storylet_id": "219623"}], [{"original_text": "As the choir sings, the congregation joins in with song.", "album_id": "72157594266207564", "photo_flickr_id": "232563780", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43924", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the choir sings , the congregation joins in with song .", "storylet_id": "219624"}], [{"original_text": "We went to the park to do research on windmills.", "album_id": "72157594288057267", "photo_flickr_id": "245593158", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43925", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the park to do research on windmills .", "storylet_id": "219625"}], [{"original_text": "We were allowed to see the biggest windmill from up close.", "album_id": "72157594288057267", "photo_flickr_id": "245591798", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43925", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were allowed to see the biggest windmill from up close .", "storylet_id": "219626"}], [{"original_text": "Inside, we were able to see the cogs.", "album_id": "72157594288057267", "photo_flickr_id": "245595261", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43925", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "inside , we were able to see the cogs .", "storylet_id": "219627"}], [{"original_text": "Up close, we were able to see the gears that turned the windmill.", "album_id": "72157594288057267", "photo_flickr_id": "245596234", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43925", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "up close , we were able to see the gears that turned the windmill .", "storylet_id": "219628"}], [{"original_text": "We went online to write what we had learned.", "album_id": "72157594288057267", "photo_flickr_id": "245799424", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43925", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we went online to write what we had learned .", "storylet_id": "219629"}], [{"original_text": "Visiting a working windmill.", "album_id": "72157594288057267", "photo_flickr_id": "245591798", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43926", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visiting a working windmill .", "storylet_id": "219630"}], [{"original_text": "The curator explains how the windmill works.", "album_id": "72157594288057267", "photo_flickr_id": "245593158", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43926", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the curator explains how the windmill works .", "storylet_id": "219631"}], [{"original_text": "Giant machinery inside the windmill.", "album_id": "72157594288057267", "photo_flickr_id": "245596234", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43926", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "giant machinery inside the windmill .", "storylet_id": "219632"}], [{"original_text": "A small piece of machinery helps the windmill keep working.", "album_id": "72157594288057267", "photo_flickr_id": "245597956", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43926", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a small piece of machinery helps the windmill keep working .", "storylet_id": "219633"}], [{"original_text": "Another photo of the inner workings of the windmill.", "album_id": "72157594288057267", "photo_flickr_id": "245598405", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43926", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "another photo of the inner workings of the windmill .", "storylet_id": "219634"}], [{"original_text": "Our small town decided to reconstruct our windmill.", "album_id": "72157594288057267", "photo_flickr_id": "245591798", "setting": "last-3-pick-old-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "43927", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our small town decided to reconstruct our windmill .", "storylet_id": "219635"}], [{"original_text": "The governor of our town talked about the importance of the windmill. The windmill was used to bring electricity to our town many years ago.", "album_id": "72157594288057267", "photo_flickr_id": "245593158", "setting": "last-3-pick-old-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "43927", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the governor of our town talked about the importance of the windmill . the windmill was used to bring electricity to our town many years ago .", "storylet_id": "219636"}], [{"original_text": "The windmill featured gears made out of aluminum and wood.", "album_id": "72157594288057267", "photo_flickr_id": "245596234", "setting": "last-3-pick-old-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "43927", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the windmill featured gears made out of aluminum and wood .", "storylet_id": "219637"}], [{"original_text": "An operator is used to operate the windmill with a level/crank in case their is an electricity shortage.", "album_id": "72157594288057267", "photo_flickr_id": "245597956", "setting": "last-3-pick-old-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "43927", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an operator is used to operate the windmill with a level/crank in case their is an electricity shortage .", "storylet_id": "219638"}], [{"original_text": "A few of the gears inside the windmill had to be replaced and reconstructed. The gears were wearing thin and caused electricity shortages in the city.", "album_id": "72157594288057267", "photo_flickr_id": "245598405", "setting": "last-3-pick-old-and-tell", "worker_id": "F4WC6ITBJU8K9G1", "story_id": "43927", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a few of the gears inside the windmill had to be replaced and reconstructed . the gears were wearing thin and caused electricity shortages in the city .", "storylet_id": "219639"}], [{"original_text": "This is annual Dutch fan completion ceremony.", "album_id": "72157594288057267", "photo_flickr_id": "245593158", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43928", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is annual dutch fan completion ceremony .", "storylet_id": "219640"}], [{"original_text": "This fan currently stands at 20 feet tall.", "album_id": "72157594288057267", "photo_flickr_id": "245591798", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43928", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this fan currently stands at 20 feet tall .", "storylet_id": "219641"}], [{"original_text": "This is the mechanism what makes it turn.", "album_id": "72157594288057267", "photo_flickr_id": "245595261", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43928", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the mechanism what makes it turn .", "storylet_id": "219642"}], [{"original_text": "Upclose and personal mechamism, so wonderfully crafted.", "album_id": "72157594288057267", "photo_flickr_id": "245596234", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43928", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "upclose and personal mechamism , so wonderfully crafted .", "storylet_id": "219643"}], [{"original_text": "If you would like to see on the computer here is the website.", "album_id": "72157594288057267", "photo_flickr_id": "245799424", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "43928", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "if you would like to see on the computer here is the website .", "storylet_id": "219644"}], [{"original_text": "Nancy set up a fun day for us at the park.", "album_id": "72157594288057267", "photo_flickr_id": "245593158", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43929", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] set up a fun day for us at the park .", "storylet_id": "219645"}], [{"original_text": "The windmill was large and very intimidating.", "album_id": "72157594288057267", "photo_flickr_id": "245591798", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43929", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the windmill was large and very intimidating .", "storylet_id": "219646"}], [{"original_text": "It look a lot of big gears to make it work.", "album_id": "72157594288057267", "photo_flickr_id": "245595261", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43929", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it look a lot of big gears to make it work .", "storylet_id": "219647"}], [{"original_text": "The components were made of old wood.", "album_id": "72157594288057267", "photo_flickr_id": "245596234", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43929", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the components were made of old wood .", "storylet_id": "219648"}], [{"original_text": "I checked on the internet to see exactly where we were. ", "album_id": "72157594288057267", "photo_flickr_id": "245799424", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43929", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i checked on the internet to see exactly where we were .", "storylet_id": "219649"}], [{"original_text": "I have always lived inland during my younger years and have a yearning for the sea now and I am fascinated by cottage style communities close to the ocean side.", "album_id": "72157594276309542", "photo_flickr_id": "238461736", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "43930", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have always lived inland during my younger years and have a yearning for the sea now and i am fascinated by cottage style communities close to the ocean side .", "storylet_id": "219650"}], [{"original_text": "I enjoy traveling around looking for where I would like to spend the rest of my days and I love to take pictures of the places I find the most appealing.", "album_id": "72157594276309542", "photo_flickr_id": "238404517", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "43930", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i enjoy traveling around looking for where i would like to spend the rest of my days and i love to take pictures of the places i find the most appealing .", "storylet_id": "219651"}], [{"original_text": "This house was one that I would have loved to buy if it had been for sale because I thought it was just perfect for me.", "album_id": "72157594276309542", "photo_flickr_id": "238425155", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "43930", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this house was one that i would have loved to buy if it had been for sale because i thought it was just perfect for me .", "storylet_id": "219652"}], [{"original_text": "I found this home beautifully landscaped and just the perfect size for myself and what I have to fill it with but it is not available either.", "album_id": "72157594276309542", "photo_flickr_id": "238466546", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "43930", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i found this home beautifully landscaped and just the perfect size for myself and what i have to fill it with but it is not available either .", "storylet_id": "219653"}], [{"original_text": "I suppose I will keep on with my search to find that perfect cottage by the sea and to take pictures along my way of what might have been if the timing had been right.", "album_id": "72157594276309542", "photo_flickr_id": "238474420", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "43930", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i suppose i will keep on with my search to find that perfect cottage by the sea and to take pictures along my way of what might have been if the timing had been right .", "storylet_id": "219654"}], [{"original_text": "My friend asked me if I wanted to go spelunking.", "album_id": "72157594276309542", "photo_flickr_id": "238418163", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43931", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend asked me if i wanted to go spelunking .", "storylet_id": "219655"}], [{"original_text": "I got one look at the entrance and decided not to go.", "album_id": "72157594276309542", "photo_flickr_id": "238455557", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43931", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got one look at the entrance and decided not to go .", "storylet_id": "219656"}], [{"original_text": "While we were there we found a creepy old door.", "album_id": "72157594276309542", "photo_flickr_id": "238456043", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43931", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "while we were there we found a creepy old door .", "storylet_id": "219657"}], [{"original_text": "What could possibly be behind it?", "album_id": "72157594276309542", "photo_flickr_id": "238456537", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43931", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what could possibly be behind it ?", "storylet_id": "219658"}], [{"original_text": "We found this carving in a tree that's nearly 100 years old.", "album_id": "72157594276309542", "photo_flickr_id": "238450688", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43931", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we found this carving in a tree that 's nearly 100 years old .", "storylet_id": "219659"}], [{"original_text": "We arrived in the beach community and began the journey toward our new home.", "album_id": "72157594276309542", "photo_flickr_id": "238461736", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43932", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived in the beach community and began the journey toward our new home .", "storylet_id": "219660"}], [{"original_text": "We couldn't believe the beauty when we found the home and they even provided a bike for our journeys to town.", "album_id": "72157594276309542", "photo_flickr_id": "238404517", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43932", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we could n't believe the beauty when we found the home and they even provided a bike for our journeys to town .", "storylet_id": "219661"}], [{"original_text": "I noticed the porch, while Tim was happy to see the air conditioner!", "album_id": "72157594276309542", "photo_flickr_id": "238425155", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43932", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i noticed the porch , while [male] was happy to see the air conditioner !", "storylet_id": "219662"}], [{"original_text": "We continued to move around the exterior of the home, loving every second of it.", "album_id": "72157594276309542", "photo_flickr_id": "238466546", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43932", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we continued to move around the exterior of the home , loving every second of it .", "storylet_id": "219663"}], [{"original_text": "And, finally, we headed toward the back entrance.", "album_id": "72157594276309542", "photo_flickr_id": "238474420", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43932", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , finally , we headed toward the back entrance .", "storylet_id": "219664"}], [{"original_text": "This quiet, seaside town was the perfect site for me to work on my book. ", "album_id": "72157594276309542", "photo_flickr_id": "238461736", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "43933", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this quiet , seaside town was the perfect site for me to work on my book .", "storylet_id": "219665"}], [{"original_text": "I rented a bicycle and a room in this cottage. ", "album_id": "72157594276309542", "photo_flickr_id": "238404517", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "43933", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i rented a bicycle and a room in this cottage .", "storylet_id": "219666"}], [{"original_text": "Most days I was in my room upstairs, writing my story.", "album_id": "72157594276309542", "photo_flickr_id": "238425155", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "43933", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most days i was in my room upstairs , writing my story .", "storylet_id": "219667"}], [{"original_text": "My neighbor lived here, and she helped me type my work. ", "album_id": "72157594276309542", "photo_flickr_id": "238466546", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "43933", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my neighbor lived here , and she helped me type my work .", "storylet_id": "219668"}], [{"original_text": "When I needed a break or needed inspiration, I'd bicycle around town, admiring the laid-back lifestyle. ", "album_id": "72157594276309542", "photo_flickr_id": "238474420", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "43933", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when i needed a break or needed inspiration , i 'd bicycle around town , admiring the laid-back lifestyle .", "storylet_id": "219669"}], [{"original_text": "Started the morning right with a jog to the beach.", "album_id": "72157594276309542", "photo_flickr_id": "238461736", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43934", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "started the morning right with a jog to the beach .", "storylet_id": "219670"}], [{"original_text": "The neighborhood was very picturesque but quiet.", "album_id": "72157594276309542", "photo_flickr_id": "238404517", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43934", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the neighborhood was very picturesque but quiet .", "storylet_id": "219671"}], [{"original_text": "The beautifully decorated porches seemed lonely.", "album_id": "72157594276309542", "photo_flickr_id": "238425155", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43934", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beautifully decorated porches seemed lonely .", "storylet_id": "219672"}], [{"original_text": "The front gardens were well maintained but no one was available for me to compliment.", "album_id": "72157594276309542", "photo_flickr_id": "238466546", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43934", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the front gardens were well maintained but no one was available for me to compliment .", "storylet_id": "219673"}], [{"original_text": "Feeling refreshed and ready to lounge on the deck chairs in front of my lovely home.", "album_id": "72157594276309542", "photo_flickr_id": "238474420", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43934", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "feeling refreshed and ready to lounge on the deck chairs in front of my lovely home .", "storylet_id": "219674"}], [{"original_text": "When the sun rose in the morning, I woke up and got ready.", "album_id": "72157594471131188", "photo_flickr_id": "352662509", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43935", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when the sun rose in the morning , i woke up and got ready .", "storylet_id": "219675"}], [{"original_text": "My cat was already up and playing.", "album_id": "72157594471131188", "photo_flickr_id": "352662975", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43935", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my cat was already up and playing .", "storylet_id": "219676"}], [{"original_text": "We headed to the open building near the grassy plain.", "album_id": "72157594471131188", "photo_flickr_id": "352661021", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43935", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we headed to the open building near the grassy plain .", "storylet_id": "219677"}], [{"original_text": "The space was so open and broad.", "album_id": "72157594471131188", "photo_flickr_id": "352660272", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43935", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the space was so open and broad .", "storylet_id": "219678"}], [{"original_text": "We were really excited to witness such a nice piece of architecture.", "album_id": "72157594471131188", "photo_flickr_id": "352658789", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43935", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were really excited to witness such a nice piece of architecture .", "storylet_id": "219679"}], [{"original_text": "There was a cute stray cat making the soil his home.", "album_id": "72157594471131188", "photo_flickr_id": "352662975", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43936", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a cute stray cat making the soil his home .", "storylet_id": "219680"}], [{"original_text": "The man found a good resting place when visiting the monument.", "album_id": "72157594471131188", "photo_flickr_id": "352655910", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43936", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the man found a good resting place when visiting the monument .", "storylet_id": "219681"}], [{"original_text": "It had amazing architecture and the walls were so smooth.", "album_id": "72157594471131188", "photo_flickr_id": "352661518", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43936", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it had amazing architecture and the walls were so smooth .", "storylet_id": "219682"}], [{"original_text": "The center of object was very unique and intriguing.", "album_id": "72157594471131188", "photo_flickr_id": "352660272", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43936", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the center of object was very unique and intriguing .", "storylet_id": "219683"}], [{"original_text": "He posed for another picture before he left.", "album_id": "72157594471131188", "photo_flickr_id": "352653166", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43936", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he posed for another picture before he left .", "storylet_id": "219684"}], [{"original_text": "The sunset casted a beautiful light over the town.", "album_id": "72157594471131188", "photo_flickr_id": "352662509", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43937", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sunset casted a beautiful light over the town .", "storylet_id": "219685"}], [{"original_text": "The next day the cat started acting strange.", "album_id": "72157594471131188", "photo_flickr_id": "352662975", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43937", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the next day the cat started acting strange .", "storylet_id": "219686"}], [{"original_text": "Even the fields was more empty than usual.", "album_id": "72157594471131188", "photo_flickr_id": "352661021", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43937", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the fields was more empty than usual .", "storylet_id": "219687"}], [{"original_text": "We went to the stadium and surprisingly we were all alone.", "album_id": "72157594471131188", "photo_flickr_id": "352660272", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43937", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went to the stadium and surprisingly we were all alone .", "storylet_id": "219688"}], [{"original_text": "We were all alone in the town, everyone disappeared.", "album_id": "72157594471131188", "photo_flickr_id": "352658789", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "43937", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were all alone in the town , everyone disappeared .", "storylet_id": "219689"}], [{"original_text": "This is Missy the cat, she is sad because her owner is on vacation.", "album_id": "72157594471131188", "photo_flickr_id": "352662975", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43938", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is missy the cat , she is sad because her owner is on vacation .", "storylet_id": "219690"}], [{"original_text": "Missy's owner Johnathan is visiting one of his favorite sport stadiums.", "album_id": "72157594471131188", "photo_flickr_id": "352655910", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43938", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "missy 's owner [male] is visiting one of his favorite sport stadiums .", "storylet_id": "219691"}], [{"original_text": "He has managed to get every angle he could for some great pictures.", "album_id": "72157594471131188", "photo_flickr_id": "352661518", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43938", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he has managed to get every angle he could for some great pictures .", "storylet_id": "219692"}], [{"original_text": "But nothing beats the picture of actual stadium itself.", "album_id": "72157594471131188", "photo_flickr_id": "352660272", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43938", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but nothing beats the picture of actual stadium itself .", "storylet_id": "219693"}], [{"original_text": "Johnathan has had a nice vacation but now wants to head home to see his cat Missy.", "album_id": "72157594471131188", "photo_flickr_id": "352653166", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43938", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] has had a nice vacation but now wants to head home to see his cat missy .", "storylet_id": "219694"}], [{"original_text": "The small kitten had a unique personality. ", "album_id": "72157594471131188", "photo_flickr_id": "352662975", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43939", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the small kitten had a unique personality .", "storylet_id": "219695"}], [{"original_text": "Almost as unique as his. ", "album_id": "72157594471131188", "photo_flickr_id": "352655910", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43939", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "almost as unique as his .", "storylet_id": "219696"}], [{"original_text": "He had found it at work. ", "album_id": "72157594471131188", "photo_flickr_id": "352661518", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43939", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had found it at work .", "storylet_id": "219697"}], [{"original_text": "Someone had abandoned it in the stadium.", "album_id": "72157594471131188", "photo_flickr_id": "352660272", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43939", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someone had abandoned it in the stadium .", "storylet_id": "219698"}], [{"original_text": "They probably knew someone would be a sucker for it and he was the sucker.", "album_id": "72157594471131188", "photo_flickr_id": "352653166", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43939", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they probably knew someone would be a sucker for it and he was the sucker .", "storylet_id": "219699"}], [{"original_text": "I love to look at castle ruins.", "album_id": "72157600124866471", "photo_flickr_id": "365699613", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43940", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love to look at castle ruins .", "storylet_id": "219700"}], [{"original_text": "The outside was overgrown with ivy.", "album_id": "72157600124866471", "photo_flickr_id": "365696803", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43940", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the outside was overgrown with ivy .", "storylet_id": "219701"}], [{"original_text": "Just inside was an out of place lone palm tree.", "album_id": "72157600124866471", "photo_flickr_id": "365698434", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43940", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "just inside was an out of place lone palm tree .", "storylet_id": "219702"}], [{"original_text": "I try to imagine who once rode through these gates.", "album_id": "72157600124866471", "photo_flickr_id": "365689952", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43940", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i try to imagine who once rode through these gates .", "storylet_id": "219703"}], [{"original_text": "Oh the stories these old walls could tell.", "album_id": "72157600124866471", "photo_flickr_id": "365697146", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "43940", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "oh the stories these old walls could tell .", "storylet_id": "219704"}], [{"original_text": "They arrived at the old building early in the morning.", "album_id": "72157600124866471", "photo_flickr_id": "365697723", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43941", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they arrived at the old building early in the morning .", "storylet_id": "219705"}], [{"original_text": "The van was left parked outside.", "album_id": "72157600124866471", "photo_flickr_id": "365699703", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43941", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the van was left parked outside .", "storylet_id": "219706"}], [{"original_text": "The structure was in a state of disrepair. ", "album_id": "72157600124866471", "photo_flickr_id": "365699613", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43941", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the structure was in a state of disrepair .", "storylet_id": "219707"}], [{"original_text": "It was so rundown that they felt uncomfortable walking under anything.", "album_id": "72157600124866471", "photo_flickr_id": "365689745", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43941", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was so rundown that they felt uncomfortable walking under anything .", "storylet_id": "219708"}], [{"original_text": "Parts of the roof had already caved in.", "album_id": "72157600124866471", "photo_flickr_id": "365689840", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43941", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "parts of the roof had already caved in .", "storylet_id": "219709"}], [{"original_text": "We discovered some mysterious ruins in the woods.", "album_id": "72157600124866471", "photo_flickr_id": "365697723", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43942", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we discovered some mysterious ruins in the woods .", "storylet_id": "219710"}], [{"original_text": "We drove up to them to get a closer look, and to explore.", "album_id": "72157600124866471", "photo_flickr_id": "365699703", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43942", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we drove up to them to get a closer look , and to explore .", "storylet_id": "219711"}], [{"original_text": "I couldn't believe how elaborate they were.", "album_id": "72157600124866471", "photo_flickr_id": "365699613", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43942", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i could n't believe how elaborate they were .", "storylet_id": "219712"}], [{"original_text": "This dome of brick could not have been easy to build.", "album_id": "72157600124866471", "photo_flickr_id": "365689745", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43942", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this dome of brick could not have been easy to build .", "storylet_id": "219713"}], [{"original_text": "The broken arch was amazing. ", "album_id": "72157600124866471", "photo_flickr_id": "365689840", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43942", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the broken arch was amazing .", "storylet_id": "219714"}], [{"original_text": "History surrounds this stone entrance way.", "album_id": "72157600124866471", "photo_flickr_id": "365697723", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43943", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "history surrounds this stone entrance way .", "storylet_id": "219715"}], [{"original_text": "The rock quarry has trucks running through it.", "album_id": "72157600124866471", "photo_flickr_id": "365699703", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43943", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rock quarry has trucks running through it .", "storylet_id": "219716"}], [{"original_text": "The castle stands after decades of time passed by.", "album_id": "72157600124866471", "photo_flickr_id": "365699613", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43943", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the castle stands after decades of time passed by .", "storylet_id": "219717"}], [{"original_text": "The openings are splendid works of masonry.", "album_id": "72157600124866471", "photo_flickr_id": "365689745", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43943", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the openings are splendid works of masonry .", "storylet_id": "219718"}], [{"original_text": "Wear and tear over the years is evident between the stone walls.", "album_id": "72157600124866471", "photo_flickr_id": "365689840", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43943", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "wear and tear over the years is evident between the stone walls .", "storylet_id": "219719"}], [{"original_text": "They went on vacation to visit the ancient ruins.", "album_id": "72157600124866471", "photo_flickr_id": "365699613", "setting": "last-3-pick-old-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "43944", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they went on vacation to visit the ancient ruins .", "storylet_id": "219720"}], [{"original_text": "They walked along the path where the people used to walk.", "album_id": "72157600124866471", "photo_flickr_id": "365696803", "setting": "last-3-pick-old-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "43944", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they walked along the path where the people used to walk .", "storylet_id": "219721"}], [{"original_text": "They took pictures of the trees are common in that area.", "album_id": "72157600124866471", "photo_flickr_id": "365698434", "setting": "last-3-pick-old-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "43944", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they took pictures of the trees are common in that area .", "storylet_id": "219722"}], [{"original_text": "They took pictures of the intricate designs of the building.", "album_id": "72157600124866471", "photo_flickr_id": "365689952", "setting": "last-3-pick-old-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "43944", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they took pictures of the intricate designs of the building .", "storylet_id": "219723"}], [{"original_text": "They took distant pictures of the buildings where the ancient civilization lived.", "album_id": "72157600124866471", "photo_flickr_id": "365697146", "setting": "last-3-pick-old-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "43944", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they took distant pictures of the buildings where the ancient civilization lived .", "storylet_id": "219724"}], [{"original_text": "A chalkboard sign advertising breakfast.", "album_id": "72157594519705399", "photo_flickr_id": "381117607", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43945", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a chalkboard sign advertising breakfast .", "storylet_id": "219725"}], [{"original_text": "Inside the caf\u00c3\u0192\u00c2\u00a9 with more choices for food.", "album_id": "72157594519705399", "photo_flickr_id": "381117818", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43945", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside the caf\u00c3\u0192\u00c6\u2019\u00c3\u201a\u00c2\u00a9 with more choices for food .", "storylet_id": "219726"}], [{"original_text": "What a hearty breakfast this is.", "album_id": "72157594519705399", "photo_flickr_id": "381117916", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43945", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what a hearty breakfast this is .", "storylet_id": "219727"}], [{"original_text": "A gargoyle outside the church which is protective.", "album_id": "72157594519705399", "photo_flickr_id": "381118034", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43945", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a gargoyle outside the church which is protective .", "storylet_id": "219728"}], [{"original_text": "Beautiful stained glass windows.", "album_id": "72157594519705399", "photo_flickr_id": "380941286", "setting": "first-2-pick-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "43945", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "beautiful stained glass windows .", "storylet_id": "219729"}], [{"original_text": "After a big Sunday breakfast, I walk to church.", "album_id": "72157594519705399", "photo_flickr_id": "381117916", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "43946", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after a big sunday breakfast , i walk to church .", "storylet_id": "219730"}], [{"original_text": "To get there, I walk over the N bridge.", "album_id": "72157594519705399", "photo_flickr_id": "381119802", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "43946", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to get there , i walk over the n bridge .", "storylet_id": "219731"}], [{"original_text": "I try to get there early to enjoy the beauty of the stain glass windows while the church is quiet.", "album_id": "72157594519705399", "photo_flickr_id": "380941286", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "43946", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i try to get there early to enjoy the beauty of the stain glass windows while the church is quiet .", "storylet_id": "219732"}], [{"original_text": "Once more people arrive, the church service starts and all the people pay attention.", "album_id": "72157594519705399", "photo_flickr_id": "380941556", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "43946", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once more people arrive , the church service starts and all the people pay attention .", "storylet_id": "219733"}], [{"original_text": "I think even the statues in the church pay attention to the sermon.", "album_id": "72157594519705399", "photo_flickr_id": "380941988", "setting": "first-2-pick-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "43946", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think even the statues in the church pay attention to the sermon .", "storylet_id": "219734"}], [{"original_text": "The street cafe was perfect for breaking our morning fast.", "album_id": "72157594519705399", "photo_flickr_id": "381117607", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43947", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the street cafe was perfect for breaking our morning fast .", "storylet_id": "219735"}], [{"original_text": "They offered many extras.", "album_id": "72157594519705399", "photo_flickr_id": "381117818", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43947", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they offered many extras .", "storylet_id": "219736"}], [{"original_text": "I had the traditional english breakfast.", "album_id": "72157594519705399", "photo_flickr_id": "381117916", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43947", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had the traditional english breakfast .", "storylet_id": "219737"}], [{"original_text": "We then headed to the cathedral. The gargoyles were like none I had ever seen.", "album_id": "72157594519705399", "photo_flickr_id": "381118034", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43947", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we then headed to the cathedral . the gargoyles were like none i had ever seen .", "storylet_id": "219738"}], [{"original_text": "Inside, the blue stain glass windows gave it a beautiful unique feel.", "album_id": "72157594519705399", "photo_flickr_id": "380941286", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43947", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "inside , the blue stain glass windows gave it a beautiful unique feel .", "storylet_id": "219739"}], [{"original_text": "When I told Emily that we were coming to this city she told us we MUST stop here for breakfast.", "album_id": "72157594519705399", "photo_flickr_id": "381117607", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "43948", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i told [female] that we were coming to this city she told us we must stop here for breakfast .", "storylet_id": "219740"}], [{"original_text": "I am so glad that we took her idea. Here is a price list that was difficult to understand.", "album_id": "72157594519705399", "photo_flickr_id": "381117818", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "43948", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i am so glad that we took her idea . here is a price list that was difficult to understand .", "storylet_id": "219741"}], [{"original_text": "But when we got the food served to us we were so pleased! Best coffee that I have ever had.", "album_id": "72157594519705399", "photo_flickr_id": "381117916", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "43948", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but when we got the food served to us we were so pleased ! best coffee that i have ever had .", "storylet_id": "219742"}], [{"original_text": "After breakfast we went site seeing and we came across a couple of items that we just had to photograph.", "album_id": "72157594519705399", "photo_flickr_id": "381118034", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "43948", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after breakfast we went site seeing and we came across a couple of items that we just had to photograph .", "storylet_id": "219743"}], [{"original_text": "The windows we photographed inside a church were majestic. I think that I would like these in my home.", "album_id": "72157594519705399", "photo_flickr_id": "380941286", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "43948", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the windows we photographed inside a church were majestic . i think that i would like these in my home .", "storylet_id": "219744"}], [{"original_text": "Lauren's favorite cafe is French.", "album_id": "72157594519705399", "photo_flickr_id": "381117607", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43949", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] 's favorite cafe is french .", "storylet_id": "219745"}], [{"original_text": "They have a great drink menu filled with different types of coffees and tees,", "album_id": "72157594519705399", "photo_flickr_id": "381117818", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43949", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they have a great drink menu filled with different types of coffees and tees ,", "storylet_id": "219746"}], [{"original_text": "but best of all, they have great breakfast foods that you can mix with lunch sandwiches!", "album_id": "72157594519705399", "photo_flickr_id": "381117916", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43949", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but best of all , they have great breakfast foods that you can mix with lunch sandwiches !", "storylet_id": "219747"}], [{"original_text": "The outside of the building has fancy French architecture, ", "album_id": "72157594519705399", "photo_flickr_id": "381118034", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43949", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the outside of the building has fancy french architecture ,", "storylet_id": "219748"}], [{"original_text": "and the inside definitely reflects the outside. She loves feeling like she's in a foreign country when she goes to this cafe. ", "album_id": "72157594519705399", "photo_flickr_id": "380941286", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "43949", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the inside definitely reflects the outside . she loves feeling like she 's in a foreign country when she goes to this cafe .", "storylet_id": "219749"}], [{"original_text": "My friends and I went on a vacation at a water cabin.", "album_id": "72157594528410844", "photo_flickr_id": "385872093", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43950", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i went on a vacation at a water cabin .", "storylet_id": "219750"}], [{"original_text": "We jumped into the water and made great splashes!", "album_id": "72157594528410844", "photo_flickr_id": "385872280", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43950", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we jumped into the water and made great splashes !", "storylet_id": "219751"}], [{"original_text": "There were also historical buildings near by.", "album_id": "72157594528410844", "photo_flickr_id": "385872173", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43950", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were also historical buildings near by .", "storylet_id": "219752"}], [{"original_text": "I also had lunch with my mother.", "album_id": "72157594528410844", "photo_flickr_id": "386817883", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43950", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also had lunch with my mother .", "storylet_id": "219753"}], [{"original_text": "Later, we went on a boat ride in the river.", "album_id": "72157594528410844", "photo_flickr_id": "388369470", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43950", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later , we went on a boat ride in the river .", "storylet_id": "219754"}], [{"original_text": "We left the cold to go to a warm climate for vacation.", "album_id": "72157594528410844", "photo_flickr_id": "385872338", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43951", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we left the cold to go to a warm climate for vacation .", "storylet_id": "219755"}], [{"original_text": "First day we swam in the water and jumped off the rocks.", "album_id": "72157594528410844", "photo_flickr_id": "385872093", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43951", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first day we swam in the water and jumped off the rocks .", "storylet_id": "219756"}], [{"original_text": "This is the water we swam in around the castle.", "album_id": "72157594528410844", "photo_flickr_id": "385872389", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43951", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the water we swam in around the castle .", "storylet_id": "219757"}], [{"original_text": "This is the other side of the moat. Nice houses.", "album_id": "72157594528410844", "photo_flickr_id": "385872426", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43951", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the other side of the moat . nice houses .", "storylet_id": "219758"}], [{"original_text": "The canoe we rode around the moat in most of the day.", "album_id": "72157594528410844", "photo_flickr_id": "388369470", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43951", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the canoe we rode around the moat in most of the day .", "storylet_id": "219759"}], [{"original_text": "These kids are jumping in the water.", "album_id": "72157594528410844", "photo_flickr_id": "385872093", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "43952", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these kids are jumping in the water .", "storylet_id": "219760"}], [{"original_text": "This lake is where they swim during the summer.", "album_id": "72157594528410844", "photo_flickr_id": "385872280", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "43952", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this lake is where they swim during the summer .", "storylet_id": "219761"}], [{"original_text": "Many of the townspeople hang out at this lake.", "album_id": "72157594528410844", "photo_flickr_id": "385872173", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "43952", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many of the townspeople hang out at this lake .", "storylet_id": "219762"}], [{"original_text": "Mom is glad her kids are leaving her alone for once.", "album_id": "72157594528410844", "photo_flickr_id": "386817883", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "43952", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom is glad her kids are leaving her alone for once .", "storylet_id": "219763"}], [{"original_text": "After going for a swim they decide to take a rowboat out.", "album_id": "72157594528410844", "photo_flickr_id": "388369470", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "43952", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after going for a swim they decide to take a rowboat out .", "storylet_id": "219764"}], [{"original_text": "The boys caught in mid air jumping off the old bridge.", "album_id": "72157594528410844", "photo_flickr_id": "385872093", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "43953", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boys caught in mid air jumping off the old bridge .", "storylet_id": "219765"}], [{"original_text": "Jared got the highest of any of the jumpers.", "album_id": "72157594528410844", "photo_flickr_id": "385872280", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "43953", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] got the highest of any of the jumpers .", "storylet_id": "219766"}], [{"original_text": "The town hall looked really cool with the clouds and lighting.", "album_id": "72157594528410844", "photo_flickr_id": "385872173", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "43953", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the town hall looked really cool with the clouds and lighting .", "storylet_id": "219767"}], [{"original_text": "Mom sitting down to get some coffee.", "album_id": "72157594528410844", "photo_flickr_id": "386817883", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "43953", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom sitting down to get some coffee .", "storylet_id": "219768"}], [{"original_text": "Our canoe sitting in the driveway ready to be loaded onto the car.", "album_id": "72157594528410844", "photo_flickr_id": "388369470", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "43953", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our canoe sitting in the driveway ready to be loaded onto the car .", "storylet_id": "219769"}], [{"original_text": "The building was brown", "album_id": "72157594528410844", "photo_flickr_id": "385872338", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43954", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the building was brown", "storylet_id": "219770"}], [{"original_text": "and people were swimming nearby.", "album_id": "72157594528410844", "photo_flickr_id": "385872093", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43954", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and people were swimming nearby .", "storylet_id": "219771"}], [{"original_text": "There was a big harbor", "album_id": "72157594528410844", "photo_flickr_id": "385872389", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43954", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a big harbor", "storylet_id": "219772"}], [{"original_text": "with homes on it", "album_id": "72157594528410844", "photo_flickr_id": "385872426", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43954", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with homes on it", "storylet_id": "219773"}], [{"original_text": "where people could kayak.", "album_id": "72157594528410844", "photo_flickr_id": "388369470", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "43954", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "where people could kayak .", "storylet_id": "219774"}], [{"original_text": "Toured an old train museum today. This one is really old.", "album_id": "72157594571416820", "photo_flickr_id": "392253437", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43955", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "toured an old train museum today . this one is really old .", "storylet_id": "219775"}], [{"original_text": "This one looks like a Christmas train. Where's my presents?", "album_id": "72157594571416820", "photo_flickr_id": "391442332", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43955", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one looks like a christmas train . where 's my presents ?", "storylet_id": "219776"}], [{"original_text": "Better picture of the old train.", "album_id": "72157594571416820", "photo_flickr_id": "392253617", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43955", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "better picture of the old train .", "storylet_id": "219777"}], [{"original_text": "Someone put train wheels on a VW bug...how cool!", "album_id": "72157594571416820", "photo_flickr_id": "392254359", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43955", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someone put train wheels on a organization bug ... how cool !", "storylet_id": "219778"}], [{"original_text": "This one is really cool looking. Kind of art deco looking.", "album_id": "72157594571416820", "photo_flickr_id": "392254853", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "43955", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this one is really cool looking . kind of art deco looking .", "storylet_id": "219779"}], [{"original_text": "The train exhibit detailed the conne ted cars throughout time.", "album_id": "72157594571416820", "photo_flickr_id": "392253437", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43956", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the train exhibit detailed the conne ted cars throughout time .", "storylet_id": "219780"}], [{"original_text": "A variety of vehicles were on display.", "album_id": "72157594571416820", "photo_flickr_id": "391442332", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43956", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a variety of vehicles were on display .", "storylet_id": "219781"}], [{"original_text": "Older models gave impressions of transport years ago.", "album_id": "72157594571416820", "photo_flickr_id": "392253617", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43956", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "older models gave impressions of transport years ago .", "storylet_id": "219782"}], [{"original_text": "Newer cars could still be found in operation today.", "album_id": "72157594571416820", "photo_flickr_id": "392254853", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43956", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "newer cars could still be found in operation today .", "storylet_id": "219783"}], [{"original_text": "Old docking stations can still be viewed today.", "album_id": "72157594571416820", "photo_flickr_id": "392255450", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43956", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "old docking stations can still be viewed today .", "storylet_id": "219784"}], [{"original_text": "We went to a vehicle museum.", "album_id": "72157594571416820", "photo_flickr_id": "392253437", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43957", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a vehicle museum .", "storylet_id": "219785"}], [{"original_text": "We saw old trains such as this one.", "album_id": "72157594571416820", "photo_flickr_id": "391442332", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43957", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw old trains such as this one .", "storylet_id": "219786"}], [{"original_text": "This black train was the longest one we saw.", "album_id": "72157594571416820", "photo_flickr_id": "392253617", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43957", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this black train was the longest one we saw .", "storylet_id": "219787"}], [{"original_text": "We even saw old vans such as this silver one.", "album_id": "72157594571416820", "photo_flickr_id": "392254359", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43957", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even saw old vans such as this silver one .", "storylet_id": "219788"}], [{"original_text": "There was all this silver bus or train that was really impressive.", "album_id": "72157594571416820", "photo_flickr_id": "392254853", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43957", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was all this silver bus or train that was really impressive .", "storylet_id": "219789"}], [{"original_text": "I love trains very much, I also love going to train shows each year and looking at different models.", "album_id": "72157594571416820", "photo_flickr_id": "392253437", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43958", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love trains very much , i also love going to train shows each year and looking at different models .", "storylet_id": "219790"}], [{"original_text": "This is a x1003 model, built in 1945, I like to call it the xmas express because of the colors.", "album_id": "72157594571416820", "photo_flickr_id": "391442332", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43958", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a x1003 model , built in 1945 , i like to call it the xmas express because of the colors .", "storylet_id": "219791"}], [{"original_text": "I moved on to the TI-4000 or what I like to call the harry potter express train, one of my favorites.", "album_id": "72157594571416820", "photo_flickr_id": "392253617", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43958", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i moved on to the ti-4000 or what i like to call the harry potter express train , one of my favorites .", "storylet_id": "219792"}], [{"original_text": "Here we have a rare train car. Only 3 were made, I wish I could have one. Main reason I come to these train shows.", "album_id": "72157594571416820", "photo_flickr_id": "392254359", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43958", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here we have a rare train car . only 3 were made , i wish i could have one . main reason i come to these train shows .", "storylet_id": "219793"}], [{"original_text": "The final train I looked at was this beauty; the silver bullet, one of the fastest trains in the world.", "album_id": "72157594571416820", "photo_flickr_id": "392254853", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43958", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the final train i looked at was this beauty ; the silver bullet , one of the fastest trains in the world .", "storylet_id": "219794"}], [{"original_text": "They were allowed to climb on board the old steam locomotive. ", "album_id": "72157594571416820", "photo_flickr_id": "392253437", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43959", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were allowed to climb on board the old steam locomotive .", "storylet_id": "219795"}], [{"original_text": "This train had recently been added to the collection. ", "album_id": "72157594571416820", "photo_flickr_id": "391442332", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43959", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this train had recently been added to the collection .", "storylet_id": "219796"}], [{"original_text": "The old steam locomotive was roped off to avoid people touching it. ", "album_id": "72157594571416820", "photo_flickr_id": "392253617", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43959", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the old steam locomotive was roped off to avoid people touching it .", "storylet_id": "219797"}], [{"original_text": "This was the smallest train they saw. ", "album_id": "72157594571416820", "photo_flickr_id": "392254359", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43959", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was the smallest train they saw .", "storylet_id": "219798"}], [{"original_text": "This train was from the 1970's and was considered very aerodynamic in its day. ", "album_id": "72157594571416820", "photo_flickr_id": "392254853", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43959", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this train was from the 1970 's and was considered very aerodynamic in its day .", "storylet_id": "219799"}], [{"original_text": "We took a trip to check out some awesome sites.", "album_id": "72157594567134249", "photo_flickr_id": "410600432", "setting": "first-2-pick-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "43960", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to check out some awesome sites .", "storylet_id": "219800"}], [{"original_text": "We went over these beautiful bad boys.", "album_id": "72157594567134249", "photo_flickr_id": "410596654", "setting": "first-2-pick-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "43960", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went over these beautiful bad boys .", "storylet_id": "219801"}], [{"original_text": "My lame girlfriend wanted to see the US custom house.", "album_id": "72157594567134249", "photo_flickr_id": "412050747", "setting": "first-2-pick-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "43960", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my lame girlfriend wanted to see the location custom house .", "storylet_id": "219802"}], [{"original_text": "So I made her go here out of spite.", "album_id": "72157594567134249", "photo_flickr_id": "412056783", "setting": "first-2-pick-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "43960", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so i made her go here out of spite .", "storylet_id": "219803"}], [{"original_text": "Everyone agreed that Mr. t. Graffiti was the coolest of the trip though.", "album_id": "72157594567134249", "photo_flickr_id": "410601331", "setting": "first-2-pick-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "43960", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone agreed that mr. t. graffiti was the coolest of the trip though .", "storylet_id": "219804"}], [{"original_text": "We took a lovely trip to Maine last summer and had such a wonderful time. ", "album_id": "72157594567134249", "photo_flickr_id": "410599641", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "43961", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a lovely trip to location last summer and had such a wonderful time .", "storylet_id": "219805"}], [{"original_text": "The lighthouses in the ocean are so charming that it kind of makes me want to live here. ", "album_id": "72157594567134249", "photo_flickr_id": "410599202", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "43961", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lighthouses in the ocean are so charming that it kind of makes me want to live here .", "storylet_id": "219806"}], [{"original_text": "The seagulls can be a problem though, so keep your eyes open. ", "album_id": "72157594567134249", "photo_flickr_id": "410602149", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "43961", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the seagulls can be a problem though , so keep your eyes open .", "storylet_id": "219807"}], [{"original_text": "We even took a ride on a horse drawn carriage to our lovely hotel - now giddy-up, Charlie. ", "album_id": "72157594567134249", "photo_flickr_id": "412051192", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "43961", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even took a ride on a horse drawn carriage to our lovely hotel - now giddy-up , [male] .", "storylet_id": "219808"}], [{"original_text": "Of course, our hotel had a breathtaking view, as does everything else here. ", "album_id": "72157594567134249", "photo_flickr_id": "412051945", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "43961", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of course , our hotel had a breathtaking view , as does everything else here .", "storylet_id": "219809"}], [{"original_text": "Upon my travels along the beach I come across some strange finds, like this tower in the distance.", "album_id": "72157594567134249", "photo_flickr_id": "410599641", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43962", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "upon my travels along the beach i come across some strange finds , like this tower in the distance .", "storylet_id": "219810"}], [{"original_text": "I wait until night fall to catch a better glimpse of this strange structure.", "album_id": "72157594567134249", "photo_flickr_id": "410599202", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43962", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i wait until night fall to catch a better glimpse of this strange structure .", "storylet_id": "219811"}], [{"original_text": "I send my scout gull to see if there is anything dangerous, he reports back that it's clear.", "album_id": "72157594567134249", "photo_flickr_id": "410602149", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43962", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i send my scout gull to see if there is anything dangerous , he reports back that it 's clear .", "storylet_id": "219812"}], [{"original_text": "I ride my mighty steed towards the structure to maybe find something cool.", "album_id": "72157594567134249", "photo_flickr_id": "412051192", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43962", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i ride my mighty steed towards the structure to maybe find something cool .", "storylet_id": "219813"}], [{"original_text": "upon getting closer, I find this glorious house, which i'll make my own place to live.", "album_id": "72157594567134249", "photo_flickr_id": "412051945", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "43962", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "upon getting closer , i find this glorious house , which i 'll make my own place to live .", "storylet_id": "219814"}], [{"original_text": "A lighthouse in the distance intrigued my eye holes.", "album_id": "72157594567134249", "photo_flickr_id": "410599641", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43963", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a lighthouse in the distance intrigued my eye holes .", "storylet_id": "219815"}], [{"original_text": "It was the tallest beast in the ocean.", "album_id": "72157594567134249", "photo_flickr_id": "410599202", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43963", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was the tallest beast in the ocean .", "storylet_id": "219816"}], [{"original_text": "A bird flew overhead across the beach.", "album_id": "72157594567134249", "photo_flickr_id": "410602149", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43963", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a bird flew overhead across the beach .", "storylet_id": "219817"}], [{"original_text": "A Clydesdale horse stood looking bored and tired.", "album_id": "72157594567134249", "photo_flickr_id": "412051192", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43963", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a clydesdale horse stood looking bored and tired .", "storylet_id": "219818"}], [{"original_text": "I saw my dream house before I left.", "album_id": "72157594567134249", "photo_flickr_id": "412051945", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43963", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i saw my dream house before i left .", "storylet_id": "219819"}], [{"original_text": "Here are some images from our travel. Look at this lighthouse - it looks so solitary out there in the water.", "album_id": "72157594567134249", "photo_flickr_id": "410600432", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43964", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here are some images from our travel . look at this lighthouse - it looks so solitary out there in the water .", "storylet_id": "219820"}], [{"original_text": "This bridge looks quite nice lit up at night -- doesn't seem as neat in the bright of day!", "album_id": "72157594567134249", "photo_flickr_id": "410596654", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43964", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this bridge looks quite nice lit up at night -- does n't seem as neat in the bright of day !", "storylet_id": "219821"}], [{"original_text": "The United States Custom House - a historical building in Charleston. ", "album_id": "72157594567134249", "photo_flickr_id": "412050747", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43964", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the organization organization organization organization - a historical building in location .", "storylet_id": "219822"}], [{"original_text": "Another shot of the United States Custom House. The sky was a wonderful blue that day.", "album_id": "72157594567134249", "photo_flickr_id": "412056783", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43964", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another shot of the organization organization organization organization . the sky was a wonderful blue that day .", "storylet_id": "219823"}], [{"original_text": "Some graffiti I was especially excited by. Mr. T!", "album_id": "72157594567134249", "photo_flickr_id": "410601331", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "43964", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some graffiti i was especially excited by . mr. t !", "storylet_id": "219824"}], [{"original_text": "Snow covered the grounds heavily in the winter.", "album_id": "72157594579686302", "photo_flickr_id": "416031280", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43965", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "snow covered the grounds heavily in the winter .", "storylet_id": "219825"}], [{"original_text": "The lake was covered in white flakes as well.", "album_id": "72157594579686302", "photo_flickr_id": "416031351", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43965", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lake was covered in white flakes as well .", "storylet_id": "219826"}], [{"original_text": "The yards of homes were blanketed.", "album_id": "72157594579686302", "photo_flickr_id": "416032433", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43965", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the yards of homes were blanketed .", "storylet_id": "219827"}], [{"original_text": "The waters looked breathtaking.", "album_id": "72157594579686302", "photo_flickr_id": "416032679", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43965", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the waters looked breathtaking .", "storylet_id": "219828"}], [{"original_text": "Some wildlife stayed close to the water.", "album_id": "72157594579686302", "photo_flickr_id": "416032632", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "43965", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some wildlife stayed close to the water .", "storylet_id": "219829"}], [{"original_text": "It was a cold day, but we took advantage of the clear skies and set out to see the land.", "album_id": "72157594579686302", "photo_flickr_id": "416031280", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43966", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a cold day , but we took advantage of the clear skies and set out to see the land .", "storylet_id": "219830"}], [{"original_text": "We stopped by the river and saw this.", "album_id": "72157594579686302", "photo_flickr_id": "416031351", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43966", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped by the river and saw this .", "storylet_id": "219831"}], [{"original_text": "The seagulls let us know they were there.", "album_id": "72157594579686302", "photo_flickr_id": "416032632", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43966", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the seagulls let us know they were there .", "storylet_id": "219832"}], [{"original_text": "The stone on the opposing side looked wonderful covered in the snow. ", "album_id": "72157594579686302", "photo_flickr_id": "416032679", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43966", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the stone on the opposing side looked wonderful covered in the snow .", "storylet_id": "219833"}], [{"original_text": "A city skyline view was the perfect way to end the day. ", "album_id": "72157594579686302", "photo_flickr_id": "416032806", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "43966", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a city skyline view was the perfect way to end the day .", "storylet_id": "219834"}], [{"original_text": "The snow falls quite deeply around here, bury the flowers.", "album_id": "72157594579686302", "photo_flickr_id": "416031280", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43967", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the snow falls quite deeply around here , bury the flowers .", "storylet_id": "219835"}], [{"original_text": "Some grass are too tall and would stick out of the snow. ", "album_id": "72157594579686302", "photo_flickr_id": "416031351", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43967", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some grass are too tall and would stick out of the snow .", "storylet_id": "219836"}], [{"original_text": "Near the house, it can sometimes be a feet deep. I'd then have to shovel the snow from the driveway.", "album_id": "72157594579686302", "photo_flickr_id": "416032433", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43967", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "near the house , it can sometimes be a feet deep . i 'd then have to shovel the snow from the driveway .", "storylet_id": "219837"}], [{"original_text": "It would slowly melt, revealing the dead grass underneath.", "album_id": "72157594579686302", "photo_flickr_id": "416032679", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43967", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it would slowly melt , revealing the dead grass underneath .", "storylet_id": "219838"}], [{"original_text": "When it starts melting, the gulls would come back.", "album_id": "72157594579686302", "photo_flickr_id": "416032632", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43967", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when it starts melting , the gulls would come back .", "storylet_id": "219839"}], [{"original_text": "The late snowfall would probably kill the plants. ", "album_id": "72157594579686302", "photo_flickr_id": "416031280", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43968", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the late snowfall would probably kill the plants .", "storylet_id": "219840"}], [{"original_text": "It wasn't very deep enough to kill the pesky weeds that grew close the the gazebo. ", "album_id": "72157594579686302", "photo_flickr_id": "416031351", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43968", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was n't very deep enough to kill the pesky weeds that grew close the the gazebo .", "storylet_id": "219841"}], [{"original_text": "For some reason the snow was deeper in his backyard. ", "album_id": "72157594579686302", "photo_flickr_id": "416032433", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43968", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "for some reason the snow was deeper in his backyard .", "storylet_id": "219842"}], [{"original_text": "Across the water he could see the island had very little snow. ", "album_id": "72157594579686302", "photo_flickr_id": "416032679", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43968", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "across the water he could see the island had very little snow .", "storylet_id": "219843"}], [{"original_text": "In some places you could see the grass and the poor birds scrounged for food. ", "album_id": "72157594579686302", "photo_flickr_id": "416032632", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43968", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in some places you could see the grass and the poor birds scrounged for food .", "storylet_id": "219844"}], [{"original_text": "The ground covered in at least 3 inches of snow. ", "album_id": "72157594579686302", "photo_flickr_id": "416031280", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43969", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ground covered in at least 3 inches of snow .", "storylet_id": "219845"}], [{"original_text": "The gazebo by the lake. ", "album_id": "72157594579686302", "photo_flickr_id": "416031351", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43969", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the gazebo by the lake .", "storylet_id": "219846"}], [{"original_text": "Two birds scavenging for food. ", "album_id": "72157594579686302", "photo_flickr_id": "416032632", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43969", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two birds scavenging for food .", "storylet_id": "219847"}], [{"original_text": "The beautiful view of a winter wonderland. ", "album_id": "72157594579686302", "photo_flickr_id": "416032679", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43969", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beautiful view of a winter wonderland .", "storylet_id": "219848"}], [{"original_text": "A covered Yacht and a city view in the background. ", "album_id": "72157594579686302", "photo_flickr_id": "416032806", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "43969", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a covered yacht and a city view in the background .", "storylet_id": "219849"}], [{"original_text": "I went to the lake yesterday.", "album_id": "72157594560924652", "photo_flickr_id": "405169867", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43970", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the lake yesterday .", "storylet_id": "219850"}], [{"original_text": "The water was very calm.", "album_id": "72157594560924652", "photo_flickr_id": "405170521", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43970", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water was very calm .", "storylet_id": "219851"}], [{"original_text": "The shoreline was beautiful.", "album_id": "72157594560924652", "photo_flickr_id": "405174524", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43970", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the shoreline was beautiful .", "storylet_id": "219852"}], [{"original_text": "There was some trees that had fallen.", "album_id": "72157594560924652", "photo_flickr_id": "405175212", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43970", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was some trees that had fallen .", "storylet_id": "219853"}], [{"original_text": "I took a lot of pictures there.", "album_id": "72157594560924652", "photo_flickr_id": "405176505", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43970", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i took a lot of pictures there .", "storylet_id": "219854"}], [{"original_text": "We went to a river near by on a vacation.", "album_id": "72157594560924652", "photo_flickr_id": "405164071", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43971", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a river near by on a vacation .", "storylet_id": "219855"}], [{"original_text": "We found sailboats fishing for different fishes.", "album_id": "72157594560924652", "photo_flickr_id": "405164721", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43971", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we found sailboats fishing for different fishes .", "storylet_id": "219856"}], [{"original_text": "We even found eggs on the riverbed!", "album_id": "72157594560924652", "photo_flickr_id": "405172136", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43971", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even found eggs on the riverbed !", "storylet_id": "219857"}], [{"original_text": "Then we found a jellyfish on land.", "album_id": "72157594560924652", "photo_flickr_id": "405173874", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43971", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we found a jellyfish on land .", "storylet_id": "219858"}], [{"original_text": "The whole time we were being watched by two parakeet birds.", "album_id": "72157594560924652", "photo_flickr_id": "405181176", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "43971", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the whole time we were being watched by two parakeet birds .", "storylet_id": "219859"}], [{"original_text": "We went to the beach, yesterday.", "album_id": "72157594560924652", "photo_flickr_id": "405169867", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43972", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the beach , yesterday .", "storylet_id": "219860"}], [{"original_text": "it was a nice day to be on the shore.", "album_id": "72157594560924652", "photo_flickr_id": "405170521", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43972", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a nice day to be on the shore .", "storylet_id": "219861"}], [{"original_text": "I found a really cool jelly fish.", "album_id": "72157594560924652", "photo_flickr_id": "405174524", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43972", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i found a really cool jelly fish .", "storylet_id": "219862"}], [{"original_text": "We saw some really neat stuff there.", "album_id": "72157594560924652", "photo_flickr_id": "405175212", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43972", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw some really neat stuff there .", "storylet_id": "219863"}], [{"original_text": "At the end of the day, I was very relaxed.", "album_id": "72157594560924652", "photo_flickr_id": "405176505", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43972", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , i was very relaxed .", "storylet_id": "219864"}], [{"original_text": "On vacation on the islands taking in the incredible view.", "album_id": "72157594560924652", "photo_flickr_id": "405164071", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43973", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on vacation on the islands taking in the incredible view .", "storylet_id": "219865"}], [{"original_text": "The day was sunny with a brisk wind, good news for the sailboats on the water.", "album_id": "72157594560924652", "photo_flickr_id": "405164721", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43973", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the day was sunny with a brisk wind , good news for the sailboats on the water .", "storylet_id": "219866"}], [{"original_text": "The beach was littered with odds and ends including egg-like fruits.", "album_id": "72157594560924652", "photo_flickr_id": "405172136", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43973", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beach was littered with odds and ends including egg-like fruits .", "storylet_id": "219867"}], [{"original_text": "Found one poor jellyfish marooned on the rocks.", "album_id": "72157594560924652", "photo_flickr_id": "405173874", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43973", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "found one poor jellyfish marooned on the rocks .", "storylet_id": "219868"}], [{"original_text": "While a pair of parrots observed over head.", "album_id": "72157594560924652", "photo_flickr_id": "405181176", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43973", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while a pair of parrots observed over head .", "storylet_id": "219869"}], [{"original_text": "Some people call our vacation spot Paradise.", "album_id": "72157594560924652", "photo_flickr_id": "405164071", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43974", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some people call our vacation spot paradise .", "storylet_id": "219870"}], [{"original_text": "There would certainly be an argument for that, especially when you look out at the boats.", "album_id": "72157594560924652", "photo_flickr_id": "405164721", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43974", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there would certainly be an argument for that , especially when you look out at the boats .", "storylet_id": "219871"}], [{"original_text": "However, the beach is covered with with extremely odd jellyfish type animals.", "album_id": "72157594560924652", "photo_flickr_id": "405172136", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43974", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however , the beach is covered with with extremely odd jellyfish type animals .", "storylet_id": "219872"}], [{"original_text": "They are enough to completely freak you out.", "album_id": "72157594560924652", "photo_flickr_id": "405173874", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43974", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they are enough to completely freak you out .", "storylet_id": "219873"}], [{"original_text": "Then you see something like the parrots, and you are thinking Paradise again.", "album_id": "72157594560924652", "photo_flickr_id": "405181176", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43974", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then you see something like the parrots , and you are thinking paradise again .", "storylet_id": "219874"}], [{"original_text": "When I got to the restaurant it was very dark.", "album_id": "72157594583189777", "photo_flickr_id": "418180107", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43975", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i got to the restaurant it was very dark .", "storylet_id": "219875"}], [{"original_text": "There were some lights there.", "album_id": "72157594583189777", "photo_flickr_id": "418179313", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43975", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were some lights there .", "storylet_id": "219876"}], [{"original_text": "I had a great time at the restaurant.", "album_id": "72157594583189777", "photo_flickr_id": "418182898", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43975", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time at the restaurant .", "storylet_id": "219877"}], [{"original_text": "Afterward I took a cab back home.", "album_id": "72157594583189777", "photo_flickr_id": "418183843", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43975", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward i took a cab back home .", "storylet_id": "219878"}], [{"original_text": "There were a lot of stairs leading down to my apartment.", "album_id": "72157594583189777", "photo_flickr_id": "418178102", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43975", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were a lot of stairs leading down to my apartment .", "storylet_id": "219879"}], [{"original_text": "I finally visited New Orleans.", "album_id": "72157594583189777", "photo_flickr_id": "418163606", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43976", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finally visited location location .", "storylet_id": "219880"}], [{"original_text": "Just like in the pictures, many places had balconies.", "album_id": "72157594583189777", "photo_flickr_id": "418141849", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43976", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "just like in the pictures , many places had balconies .", "storylet_id": "219881"}], [{"original_text": "This kind of thing is typical for New Orleans.", "album_id": "72157594583189777", "photo_flickr_id": "418137852", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43976", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this kind of thing is typical for location location .", "storylet_id": "219882"}], [{"original_text": "They often watch Mardi Gras from balconies like this one.", "album_id": "72157594583189777", "photo_flickr_id": "418152842", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43976", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they often watch mardi gras from balconies like this one .", "storylet_id": "219883"}], [{"original_text": "They are always having some kind of festival there.", "album_id": "72157594583189777", "photo_flickr_id": "418156953", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "43976", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are always having some kind of festival there .", "storylet_id": "219884"}], [{"original_text": "We started the journey toward dinner and it was a long walk.", "album_id": "72157594583189777", "photo_flickr_id": "418163606", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43977", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started the journey toward dinner and it was a long walk .", "storylet_id": "219885"}], [{"original_text": "We helped a man plant a flower on the way down.", "album_id": "72157594583189777", "photo_flickr_id": "418141849", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43977", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we helped a man plant a flower on the way down .", "storylet_id": "219886"}], [{"original_text": "Which, made Jim rather tired and pondering if it was worth it.", "album_id": "72157594583189777", "photo_flickr_id": "418137852", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43977", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "which , made [male] rather tired and pondering if it was worth it .", "storylet_id": "219887"}], [{"original_text": "We finally arrived at dinner and the tables were lovely.", "album_id": "72157594583189777", "photo_flickr_id": "418152842", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43977", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we finally arrived at dinner and the tables were lovely .", "storylet_id": "219888"}], [{"original_text": "And, following dinner, we started our journey back home.", "album_id": "72157594583189777", "photo_flickr_id": "418156953", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "43977", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , following dinner , we started our journey back home .", "storylet_id": "219889"}], [{"original_text": "We went out to eat last night.", "album_id": "72157594583189777", "photo_flickr_id": "418180107", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43978", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went out to eat last night .", "storylet_id": "219890"}], [{"original_text": "the town was known for it good restaurants.", "album_id": "72157594583189777", "photo_flickr_id": "418179313", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43978", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the town was known for it good restaurants .", "storylet_id": "219891"}], [{"original_text": "The food was wonderful.", "album_id": "72157594583189777", "photo_flickr_id": "418182898", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43978", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food was wonderful .", "storylet_id": "219892"}], [{"original_text": "The view from the restaurants windows was spectacular.", "album_id": "72157594583189777", "photo_flickr_id": "418183843", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43978", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view from the restaurants windows was spectacular .", "storylet_id": "219893"}], [{"original_text": "Our walk home in the city was refreshing.", "album_id": "72157594583189777", "photo_flickr_id": "418178102", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "43978", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our walk home in the city was refreshing .", "storylet_id": "219894"}], [{"original_text": "The entrance of the restaurant has a view of the city.", "album_id": "72157594583189777", "photo_flickr_id": "418163606", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43979", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the entrance of the restaurant has a view of the city .", "storylet_id": "219895"}], [{"original_text": "Shovels are outside along the garden area.", "album_id": "72157594583189777", "photo_flickr_id": "418141849", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43979", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "shovels are outside along the garden area .", "storylet_id": "219896"}], [{"original_text": "Looking over the porch I admire the landscape.", "album_id": "72157594583189777", "photo_flickr_id": "418137852", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43979", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looking over the porch i admire the landscape .", "storylet_id": "219897"}], [{"original_text": "Fresh fruit lines the serving table.", "album_id": "72157594583189777", "photo_flickr_id": "418152842", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43979", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fresh fruit lines the serving table .", "storylet_id": "219898"}], [{"original_text": "The back side of the restaurant is best being out of sight.", "album_id": "72157594583189777", "photo_flickr_id": "418156953", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "43979", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the back side of the restaurant is best being out of sight .", "storylet_id": "219899"}], [{"original_text": "The home had a dish satellite connected to the roof.", "album_id": "72157600009734330", "photo_flickr_id": "421197015", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43980", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the home had a dish satellite connected to the roof .", "storylet_id": "219900"}], [{"original_text": "There were many vacant homes in the area.", "album_id": "72157600009734330", "photo_flickr_id": "411817605", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43980", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many vacant homes in the area .", "storylet_id": "219901"}], [{"original_text": "Some of the homes in the neighborhood needed major work.", "album_id": "72157600009734330", "photo_flickr_id": "421202505", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43980", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the homes in the neighborhood needed major work .", "storylet_id": "219902"}], [{"original_text": "I went home to open my window for ventilation.", "album_id": "72157600009734330", "photo_flickr_id": "428219677", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43980", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i went home to open my window for ventilation .", "storylet_id": "219903"}], [{"original_text": "The street was empty with no cars or people.", "album_id": "72157600009734330", "photo_flickr_id": "428140905", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43980", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the street was empty with no cars or people .", "storylet_id": "219904"}], [{"original_text": "This beautiful old village we visited last month truly seemed like a testament to human resilience.", "album_id": "72157600009734330", "photo_flickr_id": "411817605", "setting": "first-2-pick-and-tell", "worker_id": "BGV5MYF2HJLWN0V", "story_id": "43981", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this beautiful old village we visited last month truly seemed like a testament to human resilience .", "storylet_id": "219905"}], [{"original_text": "We could only guess as to the reason why so many homes lay in rubble.", "album_id": "72157600009734330", "photo_flickr_id": "428216873", "setting": "first-2-pick-and-tell", "worker_id": "BGV5MYF2HJLWN0V", "story_id": "43981", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we could only guess as to the reason why so many homes lay in rubble .", "storylet_id": "219906"}], [{"original_text": "Still, life still found a way to subsist in the ruinous conditions. It even sprouted on the rooftops!", "album_id": "72157600009734330", "photo_flickr_id": "421205558", "setting": "first-2-pick-and-tell", "worker_id": "BGV5MYF2HJLWN0V", "story_id": "43981", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "still , life still found a way to subsist in the ruinous conditions . it even sprouted on the rooftops !", "storylet_id": "219907"}], [{"original_text": "Fresh graffiti on the walls told a story of people surviving and wanting their voices to be heard.", "album_id": "72157600009734330", "photo_flickr_id": "421205840", "setting": "first-2-pick-and-tell", "worker_id": "BGV5MYF2HJLWN0V", "story_id": "43981", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "fresh graffiti on the walls told a story of people surviving and wanting their voices to be heard .", "storylet_id": "219908"}], [{"original_text": "As we left we took note of vibrant life once again, as small children laughed and played in the street.", "album_id": "72157600009734330", "photo_flickr_id": "428115269", "setting": "first-2-pick-and-tell", "worker_id": "BGV5MYF2HJLWN0V", "story_id": "43981", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as we left we took note of vibrant life once again , as small children laughed and played in the street .", "storylet_id": "219909"}], [{"original_text": "On our trip, we saw an abandoned area of the city.", "album_id": "72157600009734330", "photo_flickr_id": "411817605", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "43982", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our trip , we saw an abandoned area of the city .", "storylet_id": "219910"}], [{"original_text": "No one lived here as the buildings had been damaged by an earthquake.", "album_id": "72157600009734330", "photo_flickr_id": "428216873", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "43982", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "no one lived here as the buildings had been damaged by an earthquake .", "storylet_id": "219911"}], [{"original_text": "Weeds were growing on the roof of one of the empty buildings.", "album_id": "72157600009734330", "photo_flickr_id": "421205558", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "43982", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "weeds were growing on the roof of one of the empty buildings .", "storylet_id": "219912"}], [{"original_text": "Some structures had been marred by graffiti.", "album_id": "72157600009734330", "photo_flickr_id": "421205840", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "43982", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some structures had been marred by graffiti .", "storylet_id": "219913"}], [{"original_text": "Rubble and trash in the street made the area appear even more desolate.", "album_id": "72157600009734330", "photo_flickr_id": "428115269", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "43982", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "rubble and trash in the street made the area appear even more desolate .", "storylet_id": "219914"}], [{"original_text": "The old building in this Turkish town had modern satellite dishes.", "album_id": "72157600009734330", "photo_flickr_id": "421197015", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "43983", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old building in this turkish town had modern satellite dishes .", "storylet_id": "219915"}], [{"original_text": "The view of the town reveals denselypacked housing.", "album_id": "72157600009734330", "photo_flickr_id": "411817605", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "43983", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view of the town reveals denselypacked housing .", "storylet_id": "219916"}], [{"original_text": "This must be a very old building that has fallen into disrepair.", "album_id": "72157600009734330", "photo_flickr_id": "421202505", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "43983", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this must be a very old building that has fallen into disrepair .", "storylet_id": "219917"}], [{"original_text": "It's a shame this building is so run down.", "album_id": "72157600009734330", "photo_flickr_id": "428219677", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "43983", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's a shame this building is so run down .", "storylet_id": "219918"}], [{"original_text": "The old street would be beautiful with a little repair.", "album_id": "72157600009734330", "photo_flickr_id": "428140905", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "43983", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the old street would be beautiful with a little repair .", "storylet_id": "219919"}], [{"original_text": "There was so much devastation after the hurricane. ", "album_id": "72157600009734330", "photo_flickr_id": "421197015", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "43984", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was so much devastation after the hurricane .", "storylet_id": "219920"}], [{"original_text": "From one of the higher buildings I could see the devastation better. ", "album_id": "72157600009734330", "photo_flickr_id": "411817605", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "43984", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from one of the higher buildings i could see the devastation better .", "storylet_id": "219921"}], [{"original_text": "There were old shops that now had graffiti on them. ", "album_id": "72157600009734330", "photo_flickr_id": "421202505", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "43984", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were old shops that now had graffiti on them .", "storylet_id": "219922"}], [{"original_text": "Some houses had the doors ripped off. ", "album_id": "72157600009734330", "photo_flickr_id": "428219677", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "43984", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some houses had the doors ripped off .", "storylet_id": "219923"}], [{"original_text": "There was so much garbage lining the streets afterwards. ", "album_id": "72157600009734330", "photo_flickr_id": "428140905", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "43984", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was so much garbage lining the streets afterwards .", "storylet_id": "219924"}], [{"original_text": "It is BOYS NIGHT! We have left our women at home and ready to party! Here we are getting our drinks on.", "album_id": "72157600026263209", "photo_flickr_id": "432105830", "setting": "first-2-pick-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "43985", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is boys night ! we have left our women at home and ready to party ! here we are getting our drinks on .", "storylet_id": "219925"}], [{"original_text": "First thing we did was ski. It was a first time for many of us, but it was fun. A lot of us kept falling down though!", "album_id": "72157600026263209", "photo_flickr_id": "432106661", "setting": "first-2-pick-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "43985", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first thing we did was ski . it was a first time for many of us , but it was fun . a lot of us kept falling down though !", "storylet_id": "219926"}], [{"original_text": "We then came inside and made dinner. Johnny and Kevin were the chefs for the night.", "album_id": "72157600026263209", "photo_flickr_id": "432107879", "setting": "first-2-pick-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "43985", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we then came inside and made dinner . [male] and [male] were the chefs for the night .", "storylet_id": "219927"}], [{"original_text": "Steven and Adam decided to do a little jam while we waited for dinner. They are surprisingly good!", "album_id": "72157600026263209", "photo_flickr_id": "432111853", "setting": "first-2-pick-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "43985", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and [male] decided to do a little jam while we waited for dinner . they are surprisingly good !", "storylet_id": "219928"}], [{"original_text": "Now that we have eaten, it is drink time. Here we are doing shots. This is going to be a fun night!", "album_id": "72157600026263209", "photo_flickr_id": "432114406", "setting": "first-2-pick-and-tell", "worker_id": "CS09GHZBV18NEM0", "story_id": "43985", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now that we have eaten , it is drink time . here we are doing shots . this is going to be a fun night !", "storylet_id": "219929"}], [{"original_text": "The outside of the building was very elegant.", "album_id": "72157600026263209", "photo_flickr_id": "432105226", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43986", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the outside of the building was very elegant .", "storylet_id": "219930"}], [{"original_text": "There was a nice lamp structure that I enjoyed.", "album_id": "72157600026263209", "photo_flickr_id": "432106399", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43986", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a nice lamp structure that i enjoyed .", "storylet_id": "219931"}], [{"original_text": "There were also other unique structures that caught my attention.", "album_id": "72157600026263209", "photo_flickr_id": "432107879", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43986", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were also other unique structures that caught my attention .", "storylet_id": "219932"}], [{"original_text": "I wanted to take a picture of every interesting structure.", "album_id": "72157600026263209", "photo_flickr_id": "432109205", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43986", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i wanted to take a picture of every interesting structure .", "storylet_id": "219933"}], [{"original_text": "I had to get a shot of this interesting hotel.", "album_id": "72157600026263209", "photo_flickr_id": "432109973", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "43986", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had to get a shot of this interesting hotel .", "storylet_id": "219934"}], [{"original_text": "The all guy vacation started off great. A game of beer pong just like back in college.", "album_id": "72157600026263209", "photo_flickr_id": "432105830", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43987", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the all guy vacation started off great . a game of beer pong just like back in college .", "storylet_id": "219935"}], [{"original_text": "Then it was off to the slopes for some skiing and snowboarding.", "album_id": "72157600026263209", "photo_flickr_id": "432106661", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43987", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then it was off to the slopes for some skiing and snowboarding .", "storylet_id": "219936"}], [{"original_text": "Afterwards, two of the guys cooked up a delicious meal.", "album_id": "72157600026263209", "photo_flickr_id": "432107879", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43987", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards , two of the guys cooked up a delicious meal .", "storylet_id": "219937"}], [{"original_text": "While others rocked out in the living room.", "album_id": "72157600026263209", "photo_flickr_id": "432111853", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43987", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while others rocked out in the living room .", "storylet_id": "219938"}], [{"original_text": "We ended the night with shots! What a great vacation.", "album_id": "72157600026263209", "photo_flickr_id": "432114406", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "43987", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the night with shots ! what a great vacation .", "storylet_id": "219939"}], [{"original_text": "The guys decided to unwind with a friendly game of beer pong.", "album_id": "72157600026263209", "photo_flickr_id": "432105830", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43988", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guys decided to unwind with a friendly game of beer pong .", "storylet_id": "219940"}], [{"original_text": "They all wanted to relax after a long day of skiing. ", "album_id": "72157600026263209", "photo_flickr_id": "432106661", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43988", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all wanted to relax after a long day of skiing .", "storylet_id": "219941"}], [{"original_text": "Dinner was finally ready after one short game of beer pong.", "album_id": "72157600026263209", "photo_flickr_id": "432107879", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43988", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dinner was finally ready after one short game of beer pong .", "storylet_id": "219942"}], [{"original_text": "After dinner they played video games together.", "album_id": "72157600026263209", "photo_flickr_id": "432111853", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43988", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after dinner they played video games together .", "storylet_id": "219943"}], [{"original_text": "They ended the night with a few more drinks.", "album_id": "72157600026263209", "photo_flickr_id": "432114406", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "43988", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ended the night with a few more drinks .", "storylet_id": "219944"}], [{"original_text": "The Rocko boys were at it again.", "album_id": "72157600026263209", "photo_flickr_id": "432105830", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43989", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the rocko boys were at it again .", "storylet_id": "219945"}], [{"original_text": "A ski trip was the perfect place for some good old fashioned fun.", "album_id": "72157600026263209", "photo_flickr_id": "432106661", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43989", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a ski trip was the perfect place for some good old fashioned fun .", "storylet_id": "219946"}], [{"original_text": "Terry and Earl made a meal out of what they found along the ski slopes.", "album_id": "72157600026263209", "photo_flickr_id": "432107879", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43989", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and [male] made a meal out of what they found along the ski slopes .", "storylet_id": "219947"}], [{"original_text": "Greg and Maurice jammed out to a Playstation 2 videogame. ", "album_id": "72157600026263209", "photo_flickr_id": "432111853", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43989", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and [male] jammed out to a playstation 2 videogame .", "storylet_id": "219948"}], [{"original_text": "The boys had a special bond that could not be broken. ", "album_id": "72157600026263209", "photo_flickr_id": "432114406", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "43989", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boys had a special bond that could not be broken .", "storylet_id": "219949"}], [{"original_text": " am in a motocycle club ", "album_id": "72157600056004952", "photo_flickr_id": "443122147", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "43990", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "am in a motocycle club", "storylet_id": "219950"}], [{"original_text": "we like to stop by at outr near by motel when you go to a certin city", "album_id": "72157600056004952", "photo_flickr_id": "443122897", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "43990", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we like to stop by at outr near by motel when you go to a certin city", "storylet_id": "219951"}], [{"original_text": "there is so much to do here", "album_id": "72157600056004952", "photo_flickr_id": "443123505", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "43990", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is so much to do here", "storylet_id": "219952"}], [{"original_text": "including a pool", "album_id": "72157600056004952", "photo_flickr_id": "443123901", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "43990", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "including a pool", "storylet_id": "219953"}], [{"original_text": "as well as a brick walk", "album_id": "72157600056004952", "photo_flickr_id": "443127422", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "43990", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as well as a brick walk", "storylet_id": "219954"}], [{"original_text": "The street down town was very busy.", "album_id": "72157600056004952", "photo_flickr_id": "443130174", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43991", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the street down town was very busy .", "storylet_id": "219955"}], [{"original_text": "There were a lot of people out that day.", "album_id": "72157600056004952", "photo_flickr_id": "443131132", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43991", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people out that day .", "storylet_id": "219956"}], [{"original_text": "The building at the edge of town had a lot of glass windows.", "album_id": "72157600056004952", "photo_flickr_id": "443135393", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43991", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the building at the edge of town had a lot of glass windows .", "storylet_id": "219957"}], [{"original_text": "The cruise ship was docking for a visit.", "album_id": "72157600056004952", "photo_flickr_id": "443132468", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43991", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cruise ship was docking for a visit .", "storylet_id": "219958"}], [{"original_text": "The building I wanted to see was being redone.", "album_id": "72157600056004952", "photo_flickr_id": "443133720", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "43991", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the building i wanted to see was being redone .", "storylet_id": "219959"}], [{"original_text": "A man rode into town on his motorcycle.", "album_id": "72157600056004952", "photo_flickr_id": "443122147", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43992", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a man rode into town on his motorcycle .", "storylet_id": "219960"}], [{"original_text": "He stayed at the Driftwood Motel.", "album_id": "72157600056004952", "photo_flickr_id": "443122897", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43992", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he stayed at the location location .", "storylet_id": "219961"}], [{"original_text": "On the way he saw a flag outside of a restaurant he later went to.", "album_id": "72157600056004952", "photo_flickr_id": "443123505", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43992", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on the way he saw a flag outside of a restaurant he later went to .", "storylet_id": "219962"}], [{"original_text": "He then decided to visited the shore.", "album_id": "72157600056004952", "photo_flickr_id": "443123901", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43992", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he then decided to visited the shore .", "storylet_id": "219963"}], [{"original_text": "He walked on this stone path that led away from the land.", "album_id": "72157600056004952", "photo_flickr_id": "443127422", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "43992", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he walked on this stone path that led away from the land .", "storylet_id": "219964"}], [{"original_text": "This trip was like a scene right out of a 50's movie.", "album_id": "72157600056004952", "photo_flickr_id": "443122147", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "43993", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this trip was like a scene right out of a 50 's movie .", "storylet_id": "219965"}], [{"original_text": "The motel was so old that it didn't even have air conditioning.", "album_id": "72157600056004952", "photo_flickr_id": "443122897", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "43993", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the motel was so old that it did n't even have air conditioning .", "storylet_id": "219966"}], [{"original_text": "BUT, they did fly their flag everyday.", "album_id": "72157600056004952", "photo_flickr_id": "443123505", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "43993", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but , they did fly their flag everyday .", "storylet_id": "219967"}], [{"original_text": "Walking along the beach was breathtaking and very enjoyable.", "album_id": "72157600056004952", "photo_flickr_id": "443123901", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "43993", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "walking along the beach was breathtaking and very enjoyable .", "storylet_id": "219968"}], [{"original_text": "Walking on the breakers was a bit nerve wracking, but the view was worth it.", "album_id": "72157600056004952", "photo_flickr_id": "443127422", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "43993", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "walking on the breakers was a bit nerve wracking , but the view was worth it .", "storylet_id": "219969"}], [{"original_text": "Many bikers enjoyed parking their bikes to go to the beach.", "album_id": "72157600056004952", "photo_flickr_id": "443122147", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43994", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many bikers enjoyed parking their bikes to go to the beach .", "storylet_id": "219970"}], [{"original_text": "Before they would head out they made sure they had a hotel to put their stuff in.", "album_id": "72157600056004952", "photo_flickr_id": "443122897", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43994", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before they would head out they made sure they had a hotel to put their stuff in .", "storylet_id": "219971"}], [{"original_text": "Once they were back at the beach they checked out all the nearby beach houses.", "album_id": "72157600056004952", "photo_flickr_id": "443123505", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43994", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once they were back at the beach they checked out all the nearby beach houses .", "storylet_id": "219972"}], [{"original_text": "Heading over to the beach they would see all kinds of people walking even cowboys.", "album_id": "72157600056004952", "photo_flickr_id": "443123901", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43994", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "heading over to the beach they would see all kinds of people walking even cowboys .", "storylet_id": "219973"}], [{"original_text": "The best part of the beach was walking on the old bridge that was made of broken up cement.", "album_id": "72157600056004952", "photo_flickr_id": "443127422", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "43994", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part of the beach was walking on the old bridge that was made of broken up cement .", "storylet_id": "219974"}], [{"original_text": "It was the day of the open house. ", "album_id": "72157600026423432", "photo_flickr_id": "433959214", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43995", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the day of the open house .", "storylet_id": "219975"}], [{"original_text": "The realtor hired a decorator to stage the house. ", "album_id": "72157600026423432", "photo_flickr_id": "433963845", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43995", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the realtor hired a decorator to stage the house .", "storylet_id": "219976"}], [{"original_text": "Every room looked lovely. ", "album_id": "72157600026423432", "photo_flickr_id": "433973690", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43995", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "every room looked lovely .", "storylet_id": "219977"}], [{"original_text": "The basement, she left to their imaginations. ", "album_id": "72157600026423432", "photo_flickr_id": "433977232", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43995", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the basement , she left to their imaginations .", "storylet_id": "219978"}], [{"original_text": "As she drove away, she felt sure she would get an offer by the time she got back to her office. ", "album_id": "72157600026423432", "photo_flickr_id": "434011510", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "43995", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as she drove away , she felt sure she would get an offer by the time she got back to her office .", "storylet_id": "219979"}], [{"original_text": "There was a huge house for sale yesterday.", "album_id": "72157600026423432", "photo_flickr_id": "434018856", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43996", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a huge house for sale yesterday .", "storylet_id": "219980"}], [{"original_text": "I had a great time checking it out.", "album_id": "72157600026423432", "photo_flickr_id": "433959214", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43996", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had a great time checking it out .", "storylet_id": "219981"}], [{"original_text": "I really want to buy it.", "album_id": "72157600026423432", "photo_flickr_id": "433960815", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43996", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i really want to buy it .", "storylet_id": "219982"}], [{"original_text": "There was a lot of space inside.", "album_id": "72157600026423432", "photo_flickr_id": "433962278", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43996", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a lot of space inside .", "storylet_id": "219983"}], [{"original_text": "It was beautiful.", "album_id": "72157600026423432", "photo_flickr_id": "433963845", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "43996", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was beautiful .", "storylet_id": "219984"}], [{"original_text": "This nice couple was shopping for real estate.", "album_id": "72157600026423432", "photo_flickr_id": "433959214", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "43997", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this nice couple was shopping for real estate .", "storylet_id": "219985"}], [{"original_text": "The living room was well staged but a little hard to move around in.", "album_id": "72157600026423432", "photo_flickr_id": "433963845", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "43997", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the living room was well staged but a little hard to move around in .", "storylet_id": "219986"}], [{"original_text": "The Dining room had curtains that didn't match the living room. ", "album_id": "72157600026423432", "photo_flickr_id": "433973690", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "43997", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dining room had curtains that did n't match the living room .", "storylet_id": "219987"}], [{"original_text": "The basement was partial finished, just perfect for a pool table.", "album_id": "72157600026423432", "photo_flickr_id": "433977232", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "43997", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the basement was partial finished , just perfect for a pool table .", "storylet_id": "219988"}], [{"original_text": "It was out in the middle of nowhere, but maybe they would get lucky and gas prices would fall to record lows. ", "album_id": "72157600026423432", "photo_flickr_id": "434011510", "setting": "last-3-pick-old-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "43997", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was out in the middle of nowhere , but maybe they would get lucky and gas prices would fall to record lows .", "storylet_id": "219989"}], [{"original_text": "We visited one of the newly built homes and it had both advantages and faults.", "album_id": "72157600026423432", "photo_flickr_id": "433959214", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43998", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited one of the newly built homes and it had both advantages and faults .", "storylet_id": "219990"}], [{"original_text": "The living room was very well decorated with plenty of light coming through the over-sized windows.", "album_id": "72157600026423432", "photo_flickr_id": "433963845", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43998", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the living room was very well decorated with plenty of light coming through the over-sized windows .", "storylet_id": "219991"}], [{"original_text": "The nearby family room had a modern fireplace and TV alcove but the symmetry seemed off.", "album_id": "72157600026423432", "photo_flickr_id": "433973690", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43998", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the nearby family room had a modern fireplace and tv alcove but the symmetry seemed off .", "storylet_id": "219992"}], [{"original_text": "And the basement was not completed.", "album_id": "72157600026423432", "photo_flickr_id": "433977232", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43998", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the basement was not completed .", "storylet_id": "219993"}], [{"original_text": "Finally the neighboring lots are still empty creating a feeling of loneliness.", "album_id": "72157600026423432", "photo_flickr_id": "434011510", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "43998", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the neighboring lots are still empty creating a feeling of loneliness .", "storylet_id": "219994"}], [{"original_text": "We drove out to Macyville to check out a house for sale.", "album_id": "72157600026423432", "photo_flickr_id": "433959214", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43999", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we drove out to location to check out a house for sale .", "storylet_id": "219995"}], [{"original_text": "We toured the model, which was beautiful. It was very elegant.", "album_id": "72157600026423432", "photo_flickr_id": "433963845", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43999", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we toured the model , which was beautiful . it was very elegant .", "storylet_id": "219996"}], [{"original_text": "The marble fireplace was hugely impressive.", "album_id": "72157600026423432", "photo_flickr_id": "433973690", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43999", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the marble fireplace was hugely impressive .", "storylet_id": "219997"}], [{"original_text": "The finished cellar would house my pool table collection nicely.", "album_id": "72157600026423432", "photo_flickr_id": "433977232", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43999", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the finished cellar would house my pool table collection nicely .", "storylet_id": "219998"}], [{"original_text": "However, the houses were pretty isolated in the middle of no-place. It's a tough decisions.", "album_id": "72157600026423432", "photo_flickr_id": "434011510", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "43999", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , the houses were pretty isolated in the middle of no-place . it 's a tough decisions .", "storylet_id": "219999"}], [{"original_text": "When the sun rose, we began walking and browsing buildings outside.", "album_id": "72157600074809393", "photo_flickr_id": "458495683", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44000", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when the sun rose , we began walking and browsing buildings outside .", "storylet_id": "220000"}], [{"original_text": "This building was much closer to our destination.", "album_id": "72157600074809393", "photo_flickr_id": "458453449", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44000", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this building was much closer to our destination .", "storylet_id": "220001"}], [{"original_text": "Inside, it looked a church or a court room.", "album_id": "72157600074809393", "photo_flickr_id": "458480276", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44000", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "inside , it looked a church or a court room .", "storylet_id": "220002"}], [{"original_text": "Their was such a large area of city and I was in awe.", "album_id": "72157600074809393", "photo_flickr_id": "458441502", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44000", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their was such a large area of city and i was in awe .", "storylet_id": "220003"}], [{"original_text": "Along our route home, we ran into this interesting sculpture.", "album_id": "72157600074809393", "photo_flickr_id": "459634420", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44000", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "along our route home , we ran into this interesting sculpture .", "storylet_id": "220004"}], [{"original_text": "We went to see the art in the city that day.", "album_id": "72157600074809393", "photo_flickr_id": "458495683", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "44001", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to see the art in the city that day .", "storylet_id": "220005"}], [{"original_text": "The inside of the church was made us feel very enriched.", "album_id": "72157600074809393", "photo_flickr_id": "458480276", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "44001", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the inside of the church was made us feel very enriched .", "storylet_id": "220006"}], [{"original_text": "This sculpture was very strange yet captivating.", "album_id": "72157600074809393", "photo_flickr_id": "459634420", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "44001", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this sculpture was very strange yet captivating .", "storylet_id": "220007"}], [{"original_text": "The lighting was extremely intense and illuminating.", "album_id": "72157600074809393", "photo_flickr_id": "460067843", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "44001", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lighting was extremely intense and illuminating .", "storylet_id": "220008"}], [{"original_text": "We all posed for a photo before leaving. ", "album_id": "72157600074809393", "photo_flickr_id": "460098001", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "44001", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all posed for a photo before leaving .", "storylet_id": "220009"}], [{"original_text": "A family visited a museum.", "album_id": "72157600074809393", "photo_flickr_id": "458495683", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44002", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a family visited a museum .", "storylet_id": "220010"}], [{"original_text": "They saw the cathedral inside that was built into it.", "album_id": "72157600074809393", "photo_flickr_id": "458480276", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44002", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they saw the cathedral inside that was built into it .", "storylet_id": "220011"}], [{"original_text": "Some of the statues there were very creepy.", "album_id": "72157600074809393", "photo_flickr_id": "459634420", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44002", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the statues there were very creepy .", "storylet_id": "220012"}], [{"original_text": "However, some of their exhibits were very cool.", "album_id": "72157600074809393", "photo_flickr_id": "460067843", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44002", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "however , some of their exhibits were very cool .", "storylet_id": "220013"}], [{"original_text": "At the end of the day, the family posed outside of the museum.", "album_id": "72157600074809393", "photo_flickr_id": "460098001", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44002", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , the family posed outside of the museum .", "storylet_id": "220014"}], [{"original_text": "The girls walked up to the museum, excited about what they would find inside.", "album_id": "72157600074809393", "photo_flickr_id": "458495683", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44003", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girls walked up to the museum , excited about what they would find inside .", "storylet_id": "220015"}], [{"original_text": "The entry way seemed to go for miles.", "album_id": "72157600074809393", "photo_flickr_id": "458480276", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44003", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the entry way seemed to go for miles .", "storylet_id": "220016"}], [{"original_text": "The sculptures inside were beautiful and unique.", "album_id": "72157600074809393", "photo_flickr_id": "459634420", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44003", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sculptures inside were beautiful and unique .", "storylet_id": "220017"}], [{"original_text": "She was taken aback by the intricate designs.", "album_id": "72157600074809393", "photo_flickr_id": "460067843", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44003", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was taken aback by the intricate designs .", "storylet_id": "220018"}], [{"original_text": "They spent so much time inside that the sun had already gone down by the time they left.", "album_id": "72157600074809393", "photo_flickr_id": "460098001", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44003", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they spent so much time inside that the sun had already gone down by the time they left .", "storylet_id": "220019"}], [{"original_text": "Traveling can bring you to the best of places.", "album_id": "72157600074809393", "photo_flickr_id": "458495683", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44004", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "traveling can bring you to the best of places .", "storylet_id": "220020"}], [{"original_text": "You can get the chance to see beautiful buildings,", "album_id": "72157600074809393", "photo_flickr_id": "458453449", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44004", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you can get the chance to see beautiful buildings ,", "storylet_id": "220021"}], [{"original_text": "and even go inside some of these buildings.", "album_id": "72157600074809393", "photo_flickr_id": "458480276", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44004", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and even go inside some of these buildings .", "storylet_id": "220022"}], [{"original_text": "You can see them from afar,", "album_id": "72157600074809393", "photo_flickr_id": "458441502", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44004", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you can see them from afar ,", "storylet_id": "220023"}], [{"original_text": "and you can see some fun statues that you can't find anywhere else. Traveling can open you up to new worlds, so everyone should try it sometime. ", "album_id": "72157600074809393", "photo_flickr_id": "459634420", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44004", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and you can see some fun statues that you ca n't find anywhere else . traveling can open you up to new worlds , so everyone should try it sometime .", "storylet_id": "220024"}], [{"original_text": "I have a friend from college who has been and architect for over 25 years now and he used to show me pictures of old gothic cathedrals and I always thought that I would like to incorporate some of these features into my own home should I have the means one day.", "album_id": "72157600149414215", "photo_flickr_id": "475717601", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44005", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have a friend from college who has been and architect for over 25 years now and he used to show me pictures of old gothic cathedrals and i always thought that i would like to incorporate some of these features into my own home should i have the means one day .", "storylet_id": "220025"}], [{"original_text": "I also love the old clock spires of yesterday and I have often stared in wonder at how they managed to build them with out modern building techniques and equipment.", "album_id": "72157600149414215", "photo_flickr_id": "475717591", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44005", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i also love the old clock spires of yesterday and i have often stared in wonder at how they managed to build them with out modern building techniques and equipment .", "storylet_id": "220026"}], [{"original_text": "Even such things as indoor and outdoor lighting sconces and lantern holders are pieces of art to be admired today.", "album_id": "72157600149414215", "photo_flickr_id": "475722836", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44005", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even such things as indoor and outdoor lighting sconces and lantern holders are pieces of art to be admired today .", "storylet_id": "220027"}], [{"original_text": "The history of warfare and how they built walls and castles in the old days, to defend against their enemies, is a science still studied today in our modern day military schools like West Point.", "album_id": "72157600149414215", "photo_flickr_id": "475870587", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44005", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the history of warfare and how they built walls and castles in the old days , to defend against their enemies , is a science still studied today in our modern day military schools like location location .", "storylet_id": "220028"}], [{"original_text": "Brick was not just a vernier outside layer back in the old days because that was mostly all they had to fortify against cannon fire and even trebuchet attack and even this arch is an amazing feet for the time requiring great skill and knowledge gained from the past.", "album_id": "72157600149414215", "photo_flickr_id": "475872434", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44005", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "brick was not just a vernier outside layer back in the old days because that was mostly all they had to fortify against cannon fire and even trebuchet attack and even this arch is an amazing feet for the time requiring great skill and knowledge gained from the past .", "storylet_id": "220029"}], [{"original_text": "For our vacation in Europe we got to see many tall buildings.", "album_id": "72157600149414215", "photo_flickr_id": "475717591", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44006", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for our vacation in location we got to see many tall buildings .", "storylet_id": "220030"}], [{"original_text": "We stopped off an a local pub a few times and enjoyed a couple of beers.", "album_id": "72157600149414215", "photo_flickr_id": "475722860", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44006", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped off an a local pub a few times and enjoyed a couple of beers .", "storylet_id": "220031"}], [{"original_text": "The country side was gorgeous with green grass and blue skies.", "album_id": "72157600149414215", "photo_flickr_id": "475870601", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44006", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the country side was gorgeous with green grass and blue skies .", "storylet_id": "220032"}], [{"original_text": "The menu at the restaurant we went to was hard to understand.", "album_id": "72157600149414215", "photo_flickr_id": "475872436", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44006", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the menu at the restaurant we went to was hard to understand .", "storylet_id": "220033"}], [{"original_text": "The next day we stopped by some boats and did some sailing.", "album_id": "72157600149414215", "photo_flickr_id": "475880594", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44006", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the next day we stopped by some boats and did some sailing .", "storylet_id": "220034"}], [{"original_text": "The guys spent there day visiting the city.", "album_id": "72157600149414215", "photo_flickr_id": "475717591", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44007", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guys spent there day visiting the city .", "storylet_id": "220035"}], [{"original_text": "They stopped to get a beer when they got to their destination.", "album_id": "72157600149414215", "photo_flickr_id": "475722860", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44007", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they stopped to get a beer when they got to their destination .", "storylet_id": "220036"}], [{"original_text": "After the bar they stepped into the fresh air on this large green lawn.", "album_id": "72157600149414215", "photo_flickr_id": "475870601", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44007", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the bar they stepped into the fresh air on this large green lawn .", "storylet_id": "220037"}], [{"original_text": "They took the time to read the signs to direct them where to go next.", "album_id": "72157600149414215", "photo_flickr_id": "475872436", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44007", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they took the time to read the signs to direct them where to go next .", "storylet_id": "220038"}], [{"original_text": "They ended the day at the marina.", "album_id": "72157600149414215", "photo_flickr_id": "475880594", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44007", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ended the day at the marina .", "storylet_id": "220039"}], [{"original_text": "Marco decided to travel around Italy.", "album_id": "72157600149414215", "photo_flickr_id": "475717601", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44008", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] decided to travel around location .", "storylet_id": "220040"}], [{"original_text": "Along the way he found the great clock tower.", "album_id": "72157600149414215", "photo_flickr_id": "475717591", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44008", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "along the way he found the great clock tower .", "storylet_id": "220041"}], [{"original_text": "He had the opportunity to climb it, and it was awesome.", "album_id": "72157600149414215", "photo_flickr_id": "475722836", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44008", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had the opportunity to climb it , and it was awesome .", "storylet_id": "220042"}], [{"original_text": "He also traveled out into the countryside", "album_id": "72157600149414215", "photo_flickr_id": "475870587", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44008", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he also traveled out into the countryside", "storylet_id": "220043"}], [{"original_text": "and found some great abandoned structures. ", "album_id": "72157600149414215", "photo_flickr_id": "475872434", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44008", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and found some great abandoned structures .", "storylet_id": "220044"}], [{"original_text": "An old clock tower had not worked in many years it merely stood as an attraction.", "album_id": "72157600149414215", "photo_flickr_id": "475717591", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44009", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an old clock tower had not worked in many years it merely stood as an attraction .", "storylet_id": "220045"}], [{"original_text": "The locals would talk and try to bring together many to repair it.", "album_id": "72157600149414215", "photo_flickr_id": "475722860", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44009", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the locals would talk and try to bring together many to repair it .", "storylet_id": "220046"}], [{"original_text": "Although the local churches were very empty with two buildings supporting it they did what they could.", "album_id": "72157600149414215", "photo_flickr_id": "475870601", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44009", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "although the local churches were very empty with two buildings supporting it they did what they could .", "storylet_id": "220047"}], [{"original_text": "They even brought it to court to see that the actions being taken were legal.", "album_id": "72157600149414215", "photo_flickr_id": "475872436", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44009", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even brought it to court to see that the actions being taken were legal .", "storylet_id": "220048"}], [{"original_text": "Once fixed the residents of the town spent the rest of the day riding boats to celebrate their success on fixing the clock.", "album_id": "72157600149414215", "photo_flickr_id": "475880594", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44009", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once fixed the residents of the town spent the rest of the day riding boats to celebrate their success on fixing the clock .", "storylet_id": "220049"}], [{"original_text": "I rode my bike into the countryside yesterday.", "album_id": "72157601485890764", "photo_flickr_id": "452703330", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44010", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i rode my bike into the countryside yesterday .", "storylet_id": "220050"}], [{"original_text": "It was very pretty.", "album_id": "72157601485890764", "photo_flickr_id": "452820141", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44010", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was very pretty .", "storylet_id": "220051"}], [{"original_text": "I'm pretty sure I'm starting to feel like Rambo.", "album_id": "72157601485890764", "photo_flickr_id": "452845251", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44010", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i 'm pretty sure i 'm starting to feel like rambo .", "storylet_id": "220052"}], [{"original_text": "The countryside and I are as one.", "album_id": "72157601485890764", "photo_flickr_id": "452896567", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44010", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the countryside and i are as one .", "storylet_id": "220053"}], [{"original_text": "I can never get tired of sights like this.", "album_id": "72157601485890764", "photo_flickr_id": "452938637", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44010", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i can never get tired of sights like this .", "storylet_id": "220054"}], [{"original_text": "I set off looking for my dream woman.", "album_id": "72157601485890764", "photo_flickr_id": "452845155", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "44011", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i set off looking for my dream woman .", "storylet_id": "220055"}], [{"original_text": "Cruising around I think I may have just passed her.", "album_id": "72157601485890764", "photo_flickr_id": "452820151", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "44011", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "cruising around i think i may have just passed her .", "storylet_id": "220056"}], [{"original_text": "An angel for sure I have finally found love.", "album_id": "72157601485890764", "photo_flickr_id": "452896689", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "44011", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "an angel for sure i have finally found love .", "storylet_id": "220057"}], [{"original_text": "I took her back to my giant house in the forest", "album_id": "72157601485890764", "photo_flickr_id": "452820141", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "44011", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i took her back to my giant house in the forest", "storylet_id": "220058"}], [{"original_text": "Little did she know she was to be looked in my tower for the rest of eternity.", "album_id": "72157601485890764", "photo_flickr_id": "452950712", "setting": "first-2-pick-and-tell", "worker_id": "ZK03TV0L9ZLDGDU", "story_id": "44011", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "little did she know she was to be looked in my tower for the rest of eternity .", "storylet_id": "220059"}], [{"original_text": "While on vacation, we decided to go sight seeing.", "album_id": "72157601485890764", "photo_flickr_id": "452703330", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44012", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while on vacation , we decided to go sight seeing .", "storylet_id": "220060"}], [{"original_text": "We went to many old parts of the city.", "album_id": "72157601485890764", "photo_flickr_id": "452820141", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44012", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went to many old parts of the city .", "storylet_id": "220061"}], [{"original_text": "We also went to the country.", "album_id": "72157601485890764", "photo_flickr_id": "452845251", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44012", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also went to the country .", "storylet_id": "220062"}], [{"original_text": "The houses that we saw were lovely.", "album_id": "72157601485890764", "photo_flickr_id": "452896567", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44012", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the houses that we saw were lovely .", "storylet_id": "220063"}], [{"original_text": "It was a great tou around the area..", "album_id": "72157601485890764", "photo_flickr_id": "452938637", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44012", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great tou around the area..", "storylet_id": "220064"}], [{"original_text": "Today we took the new bike for a long ride ", "album_id": "72157601485890764", "photo_flickr_id": "452845155", "setting": "last-3-pick-old-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "44013", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we took the new bike for a long ride", "storylet_id": "220065"}], [{"original_text": "We drove for miles and miles ", "album_id": "72157601485890764", "photo_flickr_id": "452820151", "setting": "last-3-pick-old-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "44013", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we drove for miles and miles", "storylet_id": "220066"}], [{"original_text": "Passed this cute young lady on the way ", "album_id": "72157601485890764", "photo_flickr_id": "452896689", "setting": "last-3-pick-old-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "44013", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "passed this cute young lady on the way", "storylet_id": "220067"}], [{"original_text": "Drove by this awesome. A Frame house .", "album_id": "72157601485890764", "photo_flickr_id": "452820141", "setting": "last-3-pick-old-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "44013", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "drove by this awesome . a frame house .", "storylet_id": "220068"}], [{"original_text": "and finally ended up at the clock tower destination ", "album_id": "72157601485890764", "photo_flickr_id": "452950712", "setting": "last-3-pick-old-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "44013", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and finally ended up at the clock tower destination", "storylet_id": "220069"}], [{"original_text": "The couple rented a motorcycle to ride through the city.", "album_id": "72157601485890764", "photo_flickr_id": "452845155", "setting": "last-3-pick-old-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "44014", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple rented a motorcycle to ride through the city .", "storylet_id": "220070"}], [{"original_text": "The husband looked back to see if the wife was getting a nice shot of him.", "album_id": "72157601485890764", "photo_flickr_id": "452820151", "setting": "last-3-pick-old-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "44014", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the husband looked back to see if the wife was getting a nice shot of him .", "storylet_id": "220071"}], [{"original_text": "The husband snapped a picture of the wife and the scenery behind her.", "album_id": "72157601485890764", "photo_flickr_id": "452896689", "setting": "last-3-pick-old-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "44014", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the husband snapped a picture of the wife and the scenery behind her .", "storylet_id": "220072"}], [{"original_text": "They saw a uniquely designed home and snapped a photo.", "album_id": "72157601485890764", "photo_flickr_id": "452820141", "setting": "last-3-pick-old-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "44014", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they saw a uniquely designed home and snapped a photo .", "storylet_id": "220073"}], [{"original_text": "They went to see a beautiful clock tower while on vacation.", "album_id": "72157601485890764", "photo_flickr_id": "452950712", "setting": "last-3-pick-old-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "44014", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they went to see a beautiful clock tower while on vacation .", "storylet_id": "220074"}], [{"original_text": "One of my many favorite vacation spots is an old town in Maine called Wizardville.", "album_id": "72157600157344812", "photo_flickr_id": "477415578", "setting": "first-2-pick-and-tell", "worker_id": "AV8IGIXGR3ZJQLM", "story_id": "44015", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one of my many favorite vacation spots is an old town in location called location .", "storylet_id": "220075"}], [{"original_text": "It has so many interesting and eye pleasing artistic litle touches. ", "album_id": "72157600157344812", "photo_flickr_id": "477430077", "setting": "first-2-pick-and-tell", "worker_id": "AV8IGIXGR3ZJQLM", "story_id": "44015", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it has so many interesting and eye pleasing artistic litle touches .", "storylet_id": "220076"}], [{"original_text": "My mom used to love the glass-maker on corner's private collection on display in his windows. ", "album_id": "72157600157344812", "photo_flickr_id": "477430421", "setting": "first-2-pick-and-tell", "worker_id": "AV8IGIXGR3ZJQLM", "story_id": "44015", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my mom used to love the glass-maker on corner 's private collection on display in his windows .", "storylet_id": "220077"}], [{"original_text": "They did some crazy folk dances that you wanted to make fun of but you found yourself jumping in to join along. ", "album_id": "72157600157344812", "photo_flickr_id": "477416024", "setting": "first-2-pick-and-tell", "worker_id": "AV8IGIXGR3ZJQLM", "story_id": "44015", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they did some crazy folk dances that you wanted to make fun of but you found yourself jumping in to join along .", "storylet_id": "220078"}], [{"original_text": "Everywhere you look you can see eclectic splashes all over town. One thing is for sure you can never call Wizardville boring. ", "album_id": "72157600157344812", "photo_flickr_id": "477413488", "setting": "first-2-pick-and-tell", "worker_id": "AV8IGIXGR3ZJQLM", "story_id": "44015", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everywhere you look you can see eclectic splashes all over town . one thing is for sure you can never call wizardville boring .", "storylet_id": "220079"}], [{"original_text": "We moved to a new town today and got a new apartment.", "album_id": "72157600157344812", "photo_flickr_id": "477432167", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44016", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we moved to a new town today and got a new apartment .", "storylet_id": "220080"}], [{"original_text": "The city we moved to was small and quiet.", "album_id": "72157600157344812", "photo_flickr_id": "477432645", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44016", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city we moved to was small and quiet .", "storylet_id": "220081"}], [{"original_text": "It was really pretty and had an old feel to it.", "album_id": "72157600157344812", "photo_flickr_id": "477415578", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44016", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was really pretty and had an old feel to it .", "storylet_id": "220082"}], [{"original_text": "We were lucky enough to get an up stairs apartment.", "album_id": "72157600157344812", "photo_flickr_id": "477434079", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44016", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were lucky enough to get an up stairs apartment .", "storylet_id": "220083"}], [{"original_text": "Which is great because now we always have a view of the city!", "album_id": "72157600157344812", "photo_flickr_id": "477434293", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44016", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "which is great because now we always have a view of the city !", "storylet_id": "220084"}], [{"original_text": "While shopping for a new place to live, we looked in the Hillcrest section of town.", "album_id": "72157600157344812", "photo_flickr_id": "477432167", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44017", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while shopping for a new place to live , we looked in the location section of town .", "storylet_id": "220085"}], [{"original_text": "The view provided by the bedroom window overlooked a small portion of the neighborhood.", "album_id": "72157600157344812", "photo_flickr_id": "477432645", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44017", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view provided by the bedroom window overlooked a small portion of the neighborhood .", "storylet_id": "220086"}], [{"original_text": "However the kitchen view wasn't the greatest but we were more interested in the apartment than the view.", "album_id": "72157600157344812", "photo_flickr_id": "477415578", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44017", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however the kitchen view was n't the greatest but we were more interested in the apartment than the view .", "storylet_id": "220087"}], [{"original_text": "The staircase was well-made and looked to be in good working order.", "album_id": "72157600157344812", "photo_flickr_id": "477434079", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44017", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the staircase was well-made and looked to be in good working order .", "storylet_id": "220088"}], [{"original_text": "The bathroom provided a nice view of the mountains in the distance.", "album_id": "72157600157344812", "photo_flickr_id": "477434293", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44017", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bathroom provided a nice view of the mountains in the distance .", "storylet_id": "220089"}], [{"original_text": "This is the view from our hotel room. Isn't this town adorable?", "album_id": "72157600157344812", "photo_flickr_id": "477415578", "setting": "last-3-pick-old-and-tell", "worker_id": "8ZHEXBLWXMYKZAK", "story_id": "44018", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the view from our hotel room . is n't this town adorable ?", "storylet_id": "220090"}], [{"original_text": "Some children's art at the local museum.", "album_id": "72157600157344812", "photo_flickr_id": "477430077", "setting": "last-3-pick-old-and-tell", "worker_id": "8ZHEXBLWXMYKZAK", "story_id": "44018", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some children 's art at the local museum .", "storylet_id": "220091"}], [{"original_text": "Some really neat bottles in our lobby.", "album_id": "72157600157344812", "photo_flickr_id": "477430421", "setting": "last-3-pick-old-and-tell", "worker_id": "8ZHEXBLWXMYKZAK", "story_id": "44018", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some really neat bottles in our lobby .", "storylet_id": "220092"}], [{"original_text": "People hanging out at the museum.", "album_id": "72157600157344812", "photo_flickr_id": "477416024", "setting": "last-3-pick-old-and-tell", "worker_id": "8ZHEXBLWXMYKZAK", "story_id": "44018", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people hanging out at the museum .", "storylet_id": "220093"}], [{"original_text": "More children's art.", "album_id": "72157600157344812", "photo_flickr_id": "477413488", "setting": "last-3-pick-old-and-tell", "worker_id": "8ZHEXBLWXMYKZAK", "story_id": "44018", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "more children 's art .", "storylet_id": "220094"}], [{"original_text": "The town decided to have an art contest in the red brick building.", "album_id": "72157600157344812", "photo_flickr_id": "477415578", "setting": "last-3-pick-old-and-tell", "worker_id": "ITUBCQ63FV1QS7D", "story_id": "44019", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the town decided to have an art contest in the red brick building .", "storylet_id": "220095"}], [{"original_text": "Numerous works were submitted into the contest.", "album_id": "72157600157344812", "photo_flickr_id": "477430077", "setting": "last-3-pick-old-and-tell", "worker_id": "ITUBCQ63FV1QS7D", "story_id": "44019", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "numerous works were submitted into the contest .", "storylet_id": "220096"}], [{"original_text": "There were many different categories to judge on.", "album_id": "72157600157344812", "photo_flickr_id": "477430421", "setting": "last-3-pick-old-and-tell", "worker_id": "ITUBCQ63FV1QS7D", "story_id": "44019", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many different categories to judge on .", "storylet_id": "220097"}], [{"original_text": "The judges walked through the exhibits and made their selections.", "album_id": "72157600157344812", "photo_flickr_id": "477416024", "setting": "last-3-pick-old-and-tell", "worker_id": "ITUBCQ63FV1QS7D", "story_id": "44019", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the judges walked through the exhibits and made their selections .", "storylet_id": "220098"}], [{"original_text": "This art piece was the winner among 50 other entries. ", "album_id": "72157600157344812", "photo_flickr_id": "477413488", "setting": "last-3-pick-old-and-tell", "worker_id": "ITUBCQ63FV1QS7D", "story_id": "44019", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this art piece was the winner among 50 other entries .", "storylet_id": "220099"}], [{"original_text": "The three of us decided to take a day trip to the vineyards.", "album_id": "72157600198530541", "photo_flickr_id": "491867884", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44020", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the three of us decided to take a day trip to the vineyards .", "storylet_id": "220100"}], [{"original_text": "The green countryside was beautiful.", "album_id": "72157600198530541", "photo_flickr_id": "491877276", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44020", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the green countryside was beautiful .", "storylet_id": "220101"}], [{"original_text": "We started seeing the vineyards as we passed by", "album_id": "72157600198530541", "photo_flickr_id": "491873590", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44020", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we started seeing the vineyards as we passed by", "storylet_id": "220102"}], [{"original_text": "The warehouse of wine was enormous.", "album_id": "72157600198530541", "photo_flickr_id": "491872770", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44020", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the warehouse of wine was enormous .", "storylet_id": "220103"}], [{"original_text": "Nothing like a glass of wine with good friends to end the day.", "album_id": "72157600198530541", "photo_flickr_id": "491885933", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44020", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "nothing like a glass of wine with good friends to end the day .", "storylet_id": "220104"}], [{"original_text": "Our family posing at the start of the winery tour.", "album_id": "72157600198530541", "photo_flickr_id": "491867884", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44021", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family posing at the start of the winery tour .", "storylet_id": "220105"}], [{"original_text": "This is an underground aging room for the wine.", "album_id": "72157600198530541", "photo_flickr_id": "491885473", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44021", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is an underground aging room for the wine .", "storylet_id": "220106"}], [{"original_text": "A cool fountain that was on premise.", "album_id": "72157600198530541", "photo_flickr_id": "491870012", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44021", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a cool fountain that was on premise .", "storylet_id": "220107"}], [{"original_text": "This tree was so unique that it deserved it's own picture.", "album_id": "72157600198530541", "photo_flickr_id": "491870612", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44021", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this tree was so unique that it deserved it 's own picture .", "storylet_id": "220108"}], [{"original_text": "Some wine aging in barrels in the aging room.", "album_id": "72157600198530541", "photo_flickr_id": "491888727", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44021", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some wine aging in barrels in the aging room .", "storylet_id": "220109"}], [{"original_text": "The start of the wine tasting tour.", "album_id": "72157600198530541", "photo_flickr_id": "491867884", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44022", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the start of the wine tasting tour .", "storylet_id": "220110"}], [{"original_text": "The winery was built on nice rolling hills.", "album_id": "72157600198530541", "photo_flickr_id": "491877276", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44022", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the winery was built on nice rolling hills .", "storylet_id": "220111"}], [{"original_text": "The grapes were grown in long lines.", "album_id": "72157600198530541", "photo_flickr_id": "491873590", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44022", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the grapes were grown in long lines .", "storylet_id": "220112"}], [{"original_text": "Inside, there were barrels and barrels full of wine.", "album_id": "72157600198530541", "photo_flickr_id": "491872770", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44022", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "inside , there were barrels and barrels full of wine .", "storylet_id": "220113"}], [{"original_text": "At the end of the tour, we got to do tons of tasting for the different vintages.", "album_id": "72157600198530541", "photo_flickr_id": "491885933", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44022", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the tour , we got to do tons of tasting for the different vintages .", "storylet_id": "220114"}], [{"original_text": "She loved her parents but she knew some considered them a bit strange. ", "album_id": "72157600198530541", "photo_flickr_id": "491867884", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44023", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she loved her parents but she knew some considered them a bit strange .", "storylet_id": "220115"}], [{"original_text": "A few years ago they had purchased an underground bunker and turned into a home. ", "album_id": "72157600198530541", "photo_flickr_id": "491885473", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44023", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a few years ago they had purchased an underground bunker and turned into a home .", "storylet_id": "220116"}], [{"original_text": "They had their own water filtration system. ", "album_id": "72157600198530541", "photo_flickr_id": "491870012", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44023", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had their own water filtration system .", "storylet_id": "220117"}], [{"original_text": "If you wanted to see a tree, you had to drive into town because there wasn't any at her parents home.", "album_id": "72157600198530541", "photo_flickr_id": "491870612", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44023", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "if you wanted to see a tree , you had to drive into town because there was n't any at her parents home .", "storylet_id": "220118"}], [{"original_text": "They made and stored wine in the bunker along with enough food to last years. ", "album_id": "72157600198530541", "photo_flickr_id": "491888727", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44023", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they made and stored wine in the bunker along with enough food to last years .", "storylet_id": "220119"}], [{"original_text": "A group of friends were traveling across the countryside.", "album_id": "72157600198530541", "photo_flickr_id": "491867884", "setting": "last-3-pick-old-and-tell", "worker_id": "ITUBCQ63FV1QS7D", "story_id": "44024", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends were traveling across the countryside .", "storylet_id": "220120"}], [{"original_text": "They drove through green rolling hills.", "album_id": "72157600198530541", "photo_flickr_id": "491877276", "setting": "last-3-pick-old-and-tell", "worker_id": "ITUBCQ63FV1QS7D", "story_id": "44024", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they drove through green rolling hills .", "storylet_id": "220121"}], [{"original_text": "They also drove by a winery and decided to stop and visit.", "album_id": "72157600198530541", "photo_flickr_id": "491873590", "setting": "last-3-pick-old-and-tell", "worker_id": "ITUBCQ63FV1QS7D", "story_id": "44024", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also drove by a winery and decided to stop and visit .", "storylet_id": "220122"}], [{"original_text": "Tours were held at the facility and they decided to sign up for one.", "album_id": "72157600198530541", "photo_flickr_id": "491872770", "setting": "last-3-pick-old-and-tell", "worker_id": "ITUBCQ63FV1QS7D", "story_id": "44024", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "tours were held at the facility and they decided to sign up for one .", "storylet_id": "220123"}], [{"original_text": "The trio also sampled the wines and picked out their favorites to take home.", "album_id": "72157600198530541", "photo_flickr_id": "491885933", "setting": "last-3-pick-old-and-tell", "worker_id": "ITUBCQ63FV1QS7D", "story_id": "44024", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the trio also sampled the wines and picked out their favorites to take home .", "storylet_id": "220124"}], [{"original_text": "He had finally landed his dream job.", "album_id": "72157600175552277", "photo_flickr_id": "483713360", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44025", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he had finally landed his dream job .", "storylet_id": "220125"}], [{"original_text": "Today he started work at the Boston University School of Law.", "album_id": "72157600175552277", "photo_flickr_id": "483745651", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44025", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today he started work at the organization organization organization organization organization .", "storylet_id": "220126"}], [{"original_text": "He set up his notice board with some personal touches.", "album_id": "72157600175552277", "photo_flickr_id": "483713478", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44025", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he set up his notice board with some personal touches .", "storylet_id": "220127"}], [{"original_text": "He enjoyed the view from his office.", "album_id": "72157600175552277", "photo_flickr_id": "483713618", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44025", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he enjoyed the view from his office .", "storylet_id": "220128"}], [{"original_text": "He hoped to someday get his own portrait put on the wall for merit.", "album_id": "72157600175552277", "photo_flickr_id": "483745817", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44025", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he hoped to someday get his own portrait put on the wall for merit .", "storylet_id": "220129"}], [{"original_text": "Work was very boring today.", "album_id": "72157600175552277", "photo_flickr_id": "483713360", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44026", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "work was very boring today .", "storylet_id": "220130"}], [{"original_text": " I was the only one there.", "album_id": "72157600175552277", "photo_flickr_id": "483713406", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44026", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was the only one there .", "storylet_id": "220131"}], [{"original_text": "There was nothing to do on the schedule.", "album_id": "72157600175552277", "photo_flickr_id": "483713478", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44026", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was nothing to do on the schedule .", "storylet_id": "220132"}], [{"original_text": "The view from the window was nice.", "album_id": "72157600175552277", "photo_flickr_id": "483713618", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44026", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view from the window was nice .", "storylet_id": "220133"}], [{"original_text": "I decided to leave after working for a couple of hours.", "album_id": "72157600175552277", "photo_flickr_id": "483713322", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44026", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to leave after working for a couple of hours .", "storylet_id": "220134"}], [{"original_text": "Another quiet day at the office as the summer season begins.", "album_id": "72157600175552277", "photo_flickr_id": "483713360", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "44027", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "another quiet day at the office as the summer season begins .", "storylet_id": "220135"}], [{"original_text": "Working at the BU School of Law has its benefits.", "album_id": "72157600175552277", "photo_flickr_id": "483745651", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "44027", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "working at the organization organization organization organization has its benefits .", "storylet_id": "220136"}], [{"original_text": "The work schedule board clears up considerably after May commencement.", "album_id": "72157600175552277", "photo_flickr_id": "483713478", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "44027", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the work schedule board clears up considerably after [female] commencement .", "storylet_id": "220137"}], [{"original_text": "The weather gets much nicer and enjoyable. ", "album_id": "72157600175552277", "photo_flickr_id": "483713618", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "44027", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the weather gets much nicer and enjoyable .", "storylet_id": "220138"}], [{"original_text": "Although the walk to get the coffee can get odd when you have so many trial judge portraits staring at you.", "album_id": "72157600175552277", "photo_flickr_id": "483745817", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "44027", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "although the walk to get the coffee can get odd when you have so many trial judge portraits staring at you .", "storylet_id": "220139"}], [{"original_text": "When Timothy was moved to the Boston office, he got a much bigger office space.", "album_id": "72157600175552277", "photo_flickr_id": "483713360", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44028", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when [male] was moved to the location office , he got a much bigger office space .", "storylet_id": "220140"}], [{"original_text": "He loved his new office, and the Boston atmosphere.", "album_id": "72157600175552277", "photo_flickr_id": "483745651", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44028", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he loved his new office , and the location atmosphere .", "storylet_id": "220141"}], [{"original_text": "Of course, he was as messy and disorganized as ever.", "album_id": "72157600175552277", "photo_flickr_id": "483713478", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44028", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course , he was as messy and disorganized as ever .", "storylet_id": "220142"}], [{"original_text": "But the view of the Charles River was delightful.", "album_id": "72157600175552277", "photo_flickr_id": "483713618", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44028", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but the view of the location location was delightful .", "storylet_id": "220143"}], [{"original_text": "Everything in Boston seemed historical, like this row of past presidents of his company.", "album_id": "72157600175552277", "photo_flickr_id": "483745817", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44028", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everything in location seemed historical , like this row of past presidents of his company .", "storylet_id": "220144"}], [{"original_text": "The office was very organized. ", "album_id": "72157600175552277", "photo_flickr_id": "483713360", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44029", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the office was very organized .", "storylet_id": "220145"}], [{"original_text": "A sign outside said where to go. ", "album_id": "72157600175552277", "photo_flickr_id": "483745651", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44029", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a sign outside said where to go .", "storylet_id": "220146"}], [{"original_text": "Current events were on the bulletin board. ", "album_id": "72157600175552277", "photo_flickr_id": "483713478", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44029", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "current events were on the bulletin board .", "storylet_id": "220147"}], [{"original_text": "There was a great view from the window. ", "album_id": "72157600175552277", "photo_flickr_id": "483713618", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44029", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a great view from the window .", "storylet_id": "220148"}], [{"original_text": "Lots of important people worked in the building throughout history. ", "album_id": "72157600175552277", "photo_flickr_id": "483745817", "setting": "last-3-pick-old-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44029", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lots of important people worked in the building throughout history .", "storylet_id": "220149"}], [{"original_text": "First we enjoyed the graveyard.", "album_id": "72157600180662376", "photo_flickr_id": "485548583", "setting": "first-2-pick-and-tell", "worker_id": "FL7JXBY0OGPTVOD", "story_id": "44030", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "first we enjoyed the graveyard .", "storylet_id": "220150"}], [{"original_text": "We went inside to look at the colorful church.", "album_id": "72157600180662376", "photo_flickr_id": "485516460", "setting": "first-2-pick-and-tell", "worker_id": "FL7JXBY0OGPTVOD", "story_id": "44030", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went inside to look at the colorful church .", "storylet_id": "220151"}], [{"original_text": "My friend posed for a picture outside.", "album_id": "72157600180662376", "photo_flickr_id": "485550023", "setting": "first-2-pick-and-tell", "worker_id": "FL7JXBY0OGPTVOD", "story_id": "44030", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend posed for a picture outside .", "storylet_id": "220152"}], [{"original_text": "Then she learned something from the teacher.", "album_id": "72157600180662376", "photo_flickr_id": "485553271", "setting": "first-2-pick-and-tell", "worker_id": "FL7JXBY0OGPTVOD", "story_id": "44030", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then she learned something from the teacher .", "storylet_id": "220153"}], [{"original_text": "The teach showed some cool drawings on the board.", "album_id": "72157600180662376", "photo_flickr_id": "485553379", "setting": "first-2-pick-and-tell", "worker_id": "FL7JXBY0OGPTVOD", "story_id": "44030", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the teach showed some cool drawings on the board .", "storylet_id": "220154"}], [{"original_text": "As I took a stroll around my neighboorhood, I saw one of my neighbors house is close to a cemetery. ", "album_id": "72157600180662376", "photo_flickr_id": "485548583", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44031", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as i took a stroll around my neighboorhood , i saw one of my neighbors house is close to a cemetery .", "storylet_id": "220155"}], [{"original_text": "This was the entrance to that cemetery. ", "album_id": "72157600180662376", "photo_flickr_id": "485516020", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44031", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was the entrance to that cemetery .", "storylet_id": "220156"}], [{"original_text": "The next stop on the stroll, led me to a church, where the inside was quite peaceful. ", "album_id": "72157600180662376", "photo_flickr_id": "485516460", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44031", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next stop on the stroll , led me to a church , where the inside was quite peaceful .", "storylet_id": "220157"}], [{"original_text": "This lady sat here for over an hour reading her bible, and she did not even notice me. ", "album_id": "72157600180662376", "photo_flickr_id": "485516790", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44031", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this lady sat here for over an hour reading her bible , and she did not even notice me .", "storylet_id": "220158"}], [{"original_text": "My daughter wanted a picture with the church as her background. ", "album_id": "72157600180662376", "photo_flickr_id": "485550023", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44031", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my daughter wanted a picture with the church as her background .", "storylet_id": "220159"}], [{"original_text": "Our family took a trip to this church today.", "album_id": "72157600180662376", "photo_flickr_id": "485548583", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "44032", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family took a trip to this church today .", "storylet_id": "220160"}], [{"original_text": "People still attend services and the inside is very modern.", "album_id": "72157600180662376", "photo_flickr_id": "485516460", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "44032", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people still attend services and the inside is very modern .", "storylet_id": "220161"}], [{"original_text": "Here's our girl next to the church - notice the beautiful windows.", "album_id": "72157600180662376", "photo_flickr_id": "485550023", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "44032", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's our girl next to the church - notice the beautiful windows .", "storylet_id": "220162"}], [{"original_text": "She had so much fun sitting in the old fashioned desk and seeing what kids used to use in school.", "album_id": "72157600180662376", "photo_flickr_id": "485553271", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "44032", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she had so much fun sitting in the old fashioned desk and seeing what kids used to use in school .", "storylet_id": "220163"}], [{"original_text": "It was fun to see the way teachers would write in cursive on the old blackboard.", "album_id": "72157600180662376", "photo_flickr_id": "485553379", "setting": "last-3-pick-old-and-tell", "worker_id": "15JTFNFUJZCM0SN", "story_id": "44032", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was fun to see the way teachers would write in cursive on the old blackboard .", "storylet_id": "220164"}], [{"original_text": "Every Sunday the family drives 30 minutes to church.", "album_id": "72157600180662376", "photo_flickr_id": "485548583", "setting": "last-3-pick-old-and-tell", "worker_id": "FSIH9JAAQR3YCRR", "story_id": "44033", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every sunday the family drives 30 minutes to church .", "storylet_id": "220165"}], [{"original_text": "Usually by 8am everyone is meeting in their assigned church groups.", "album_id": "72157600180662376", "photo_flickr_id": "485516460", "setting": "last-3-pick-old-and-tell", "worker_id": "FSIH9JAAQR3YCRR", "story_id": "44033", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "usually by 8am everyone is meeting in their assigned church groups .", "storylet_id": "220166"}], [{"original_text": "The daughter is enjoying a nice scenic walk around the church.", "album_id": "72157600180662376", "photo_flickr_id": "485550023", "setting": "last-3-pick-old-and-tell", "worker_id": "FSIH9JAAQR3YCRR", "story_id": "44033", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the daughter is enjoying a nice scenic walk around the church .", "storylet_id": "220167"}], [{"original_text": "Mary attends Sunday school to enhance her faith.", "album_id": "72157600180662376", "photo_flickr_id": "485553271", "setting": "last-3-pick-old-and-tell", "worker_id": "FSIH9JAAQR3YCRR", "story_id": "44033", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] attends sunday school to enhance her faith .", "storylet_id": "220168"}], [{"original_text": "The teacher writes the day's lesson on the board.", "album_id": "72157600180662376", "photo_flickr_id": "485553379", "setting": "last-3-pick-old-and-tell", "worker_id": "FSIH9JAAQR3YCRR", "story_id": "44033", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the teacher writes the day 's lesson on the board .", "storylet_id": "220169"}], [{"original_text": "They went on a trip to the old church and saw the grave site of the people who used to attend there.", "album_id": "72157600180662376", "photo_flickr_id": "485548583", "setting": "last-3-pick-old-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "44034", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they went on a trip to the old church and saw the grave site of the people who used to attend there .", "storylet_id": "220170"}], [{"original_text": "They saw the church where the people in that town practiced their religion.", "album_id": "72157600180662376", "photo_flickr_id": "485516460", "setting": "last-3-pick-old-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "44034", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they saw the church where the people in that town practiced their religion .", "storylet_id": "220171"}], [{"original_text": "The daughter took a picture outside of the church.", "album_id": "72157600180662376", "photo_flickr_id": "485550023", "setting": "last-3-pick-old-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "44034", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the daughter took a picture outside of the church .", "storylet_id": "220172"}], [{"original_text": "The daughter took pictures in the classroom where the children used to learn.", "album_id": "72157600180662376", "photo_flickr_id": "485553271", "setting": "last-3-pick-old-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "44034", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the daughter took pictures in the classroom where the children used to learn .", "storylet_id": "220173"}], [{"original_text": "They took pictures of the classroom.", "album_id": "72157600180662376", "photo_flickr_id": "485553379", "setting": "last-3-pick-old-and-tell", "worker_id": "BHQ9LXM4GQ1MX2C", "story_id": "44034", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they took pictures of the classroom .", "storylet_id": "220174"}], [{"original_text": "They threw a dinner party at their house.", "album_id": "72157622990054453", "photo_flickr_id": "4233766173", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44035", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they threw a dinner party at their house .", "storylet_id": "220175"}], [{"original_text": "The turn out of guests was pretty good.", "album_id": "72157622990054453", "photo_flickr_id": "4233761597", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44035", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the turn out of guests was pretty good .", "storylet_id": "220176"}], [{"original_text": "After dinner they talked and played games.", "album_id": "72157622990054453", "photo_flickr_id": "4233762921", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44035", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after dinner they talked and played games .", "storylet_id": "220177"}], [{"original_text": "Once a few drinks were served there was even dancing.", "album_id": "72157622990054453", "photo_flickr_id": "4234540238", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44035", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once a few drinks were served there was even dancing .", "storylet_id": "220178"}], [{"original_text": "The friends had a great time dancing the night away.", "album_id": "72157622990054453", "photo_flickr_id": "4233767913", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44035", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the friends had a great time dancing the night away .", "storylet_id": "220179"}], [{"original_text": "Everybody had showed up for the celebration dinner.", "album_id": "72157622990054453", "photo_flickr_id": "4234536054", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44036", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everybody had showed up for the celebration dinner .", "storylet_id": "220180"}], [{"original_text": "It was a lot of fun and everybody was in a great mood.", "album_id": "72157622990054453", "photo_flickr_id": "4234537038", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44036", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a lot of fun and everybody was in a great mood .", "storylet_id": "220181"}], [{"original_text": "After dinner, a lot of people decided to dance.", "album_id": "72157622990054453", "photo_flickr_id": "4233767913", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44036", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after dinner , a lot of people decided to dance .", "storylet_id": "220182"}], [{"original_text": "Others decided to chat over more drinks.", "album_id": "72157622990054453", "photo_flickr_id": "4234538956", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44036", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others decided to chat over more drinks .", "storylet_id": "220183"}], [{"original_text": "A few people checked out the foosball table. ", "album_id": "72157622990054453", "photo_flickr_id": "4234540562", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44036", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a few people checked out the foosball table .", "storylet_id": "220184"}], [{"original_text": "it was the last show of our play. we all went to celebrate.", "album_id": "72157622990054453", "photo_flickr_id": "4234536054", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44037", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the last show of our play . we all went to celebrate .", "storylet_id": "220185"}], [{"original_text": "it was a lively affair. there was plenty of eating and drinking.", "album_id": "72157622990054453", "photo_flickr_id": "4234537038", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44037", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a lively affair . there was plenty of eating and drinking .", "storylet_id": "220186"}], [{"original_text": "most of us danced when the alcohol started to set in. ", "album_id": "72157622990054453", "photo_flickr_id": "4233767913", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44037", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most of us danced when the alcohol started to set in .", "storylet_id": "220187"}], [{"original_text": "here are our brave drivers. they where the best and did not have anything to inhibit their driving.", "album_id": "72157622990054453", "photo_flickr_id": "4234538956", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44037", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here are our brave drivers . they where the best and did not have anything to inhibit their driving .", "storylet_id": "220188"}], [{"original_text": "they played Foosball instead.", "album_id": "72157622990054453", "photo_flickr_id": "4234540562", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44037", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they played foosball instead .", "storylet_id": "220189"}], [{"original_text": "The group sat down together to have a large meal.", "album_id": "72157622990054453", "photo_flickr_id": "4233766173", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44038", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group sat down together to have a large meal .", "storylet_id": "220190"}], [{"original_text": "Then they had a few drinks and told stories.", "album_id": "72157622990054453", "photo_flickr_id": "4233761597", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44038", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then they had a few drinks and told stories .", "storylet_id": "220191"}], [{"original_text": "They played games and had a good time.", "album_id": "72157622990054453", "photo_flickr_id": "4233762921", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44038", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they played games and had a good time .", "storylet_id": "220192"}], [{"original_text": "After that everyone began to dance.", "album_id": "72157622990054453", "photo_flickr_id": "4234540238", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44038", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that everyone began to dance .", "storylet_id": "220193"}], [{"original_text": "At the end of the night the crowd played even more games.", "album_id": "72157622990054453", "photo_flickr_id": "4233767913", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44038", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night the crowd played even more games .", "storylet_id": "220194"}], [{"original_text": "The whole family gathered at the table for the party.", "album_id": "72157622990054453", "photo_flickr_id": "4234536054", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44039", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family gathered at the table for the party .", "storylet_id": "220195"}], [{"original_text": "Everyone was have a good time.", "album_id": "72157622990054453", "photo_flickr_id": "4234537038", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44039", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was have a good time .", "storylet_id": "220196"}], [{"original_text": "Everyone was having a great time dancing.", "album_id": "72157622990054453", "photo_flickr_id": "4233767913", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44039", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was having a great time dancing .", "storylet_id": "220197"}], [{"original_text": "They were all having a good conversation.", "album_id": "72157622990054453", "photo_flickr_id": "4234538956", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44039", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were all having a good conversation .", "storylet_id": "220198"}], [{"original_text": "They were each trying to win at the game.", "album_id": "72157622990054453", "photo_flickr_id": "4234540562", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44039", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were each trying to win at the game .", "storylet_id": "220199"}], [{"original_text": "I had a great time at the carnival.", "album_id": "72157625597943685", "photo_flickr_id": "5313800300", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44170", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the carnival .", "storylet_id": "220850"}], [{"original_text": "It was really beautiful.", "album_id": "72157625597943685", "photo_flickr_id": "5313208375", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44170", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was really beautiful .", "storylet_id": "220851"}], [{"original_text": "There were many lights there.", "album_id": "72157625597943685", "photo_flickr_id": "5313210477", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44170", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many lights there .", "storylet_id": "220852"}], [{"original_text": "The rides were crazy.", "album_id": "72157625597943685", "photo_flickr_id": "5313814880", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44170", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rides were crazy .", "storylet_id": "220853"}], [{"original_text": "I was very nervous.", "album_id": "72157625597943685", "photo_flickr_id": "5313816644", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44170", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was very nervous .", "storylet_id": "220854"}], [{"original_text": "Today we went to the carnival.The first attraction we saw, was the fun house.", "album_id": "72157625597943685", "photo_flickr_id": "5313208375", "setting": "first-2-pick-and-tell", "worker_id": "E1143BPUW0BB1WH", "story_id": "44171", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to the carnival.the first attraction we saw , was the fun house .", "storylet_id": "220855"}], [{"original_text": "The fun house had mirrors that made your body look very funny and look as if it where shaped oddly.", "album_id": "72157625597943685", "photo_flickr_id": "5313212245", "setting": "first-2-pick-and-tell", "worker_id": "E1143BPUW0BB1WH", "story_id": "44171", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fun house had mirrors that made your body look very funny and look as if it where shaped oddly .", "storylet_id": "220856"}], [{"original_text": "The second ride was the zipper. I was bright and made you do flips in a cage.", "album_id": "72157625597943685", "photo_flickr_id": "5313214231", "setting": "first-2-pick-and-tell", "worker_id": "E1143BPUW0BB1WH", "story_id": "44171", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the second ride was the zipper . i was bright and made you do flips in a cage .", "storylet_id": "220857"}], [{"original_text": "We went really high in the air and flipped a lot of times. The sun even set while we where in the air.", "album_id": "72157625597943685", "photo_flickr_id": "5313216009", "setting": "first-2-pick-and-tell", "worker_id": "E1143BPUW0BB1WH", "story_id": "44171", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went really high in the air and flipped a lot of times . the sun even set while we where in the air .", "storylet_id": "220858"}], [{"original_text": "We said goodbye to the carnival on our final ride, the farris wheel. It lifted us high enough to slowly watch the whole carnival.", "album_id": "72157625597943685", "photo_flickr_id": "5313842840", "setting": "first-2-pick-and-tell", "worker_id": "E1143BPUW0BB1WH", "story_id": "44171", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we said goodbye to the carnival on our final ride , the farris wheel . it lifted us high enough to slowly watch the whole carnival .", "storylet_id": "220859"}], [{"original_text": "The carnival in town has a lot of wonderful rides, some with neat faces created on them.", "album_id": "72157625597943685", "photo_flickr_id": "5313208375", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44172", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the carnival in town has a lot of wonderful rides , some with neat faces created on them .", "storylet_id": "220860"}], [{"original_text": "An awesome part of the show is the mirror maze.", "album_id": "72157625597943685", "photo_flickr_id": "5313212245", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44172", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "an awesome part of the show is the mirror maze .", "storylet_id": "220861"}], [{"original_text": "A very popular ride is called the zipper, it flips you upside down.", "album_id": "72157625597943685", "photo_flickr_id": "5313214231", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44172", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a very popular ride is called the zipper , it flips you upside down .", "storylet_id": "220862"}], [{"original_text": "A lot of people like to ride it at night as it is much more thrilling.", "album_id": "72157625597943685", "photo_flickr_id": "5313216009", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44172", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a lot of people like to ride it at night as it is much more thrilling .", "storylet_id": "220863"}], [{"original_text": "But ending the night on the Ferris wheel makes for a fun day at the carnival.", "album_id": "72157625597943685", "photo_flickr_id": "5313842840", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44172", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but ending the night on the organization wheel makes for a fun day at the carnival .", "storylet_id": "220864"}], [{"original_text": "Hot bright neon lights gave her a thrilling feeling. ", "album_id": "72157625597943685", "photo_flickr_id": "5313800300", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44173", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hot bright neon lights gave her a thrilling feeling .", "storylet_id": "220865"}], [{"original_text": "The face seemed to be smiling down at her. ", "album_id": "72157625597943685", "photo_flickr_id": "5313208375", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44173", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the face seemed to be smiling down at her .", "storylet_id": "220866"}], [{"original_text": "Painted in bright red made it even more vivid. ", "album_id": "72157625597943685", "photo_flickr_id": "5313210477", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44173", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "painted in bright red made it even more vivid .", "storylet_id": "220867"}], [{"original_text": "The ride looked dangerous.", "album_id": "72157625597943685", "photo_flickr_id": "5313814880", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44173", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ride looked dangerous .", "storylet_id": "220868"}], [{"original_text": "She knew she had to ride it because she loved the sense of pseudo danger. ", "album_id": "72157625597943685", "photo_flickr_id": "5313816644", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44173", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she knew she had to ride it because she loved the sense of pseudo danger .", "storylet_id": "220869"}], [{"original_text": "The awning of the Merry-Go-Round had the most beautiful masks.", "album_id": "72157625597943685", "photo_flickr_id": "5313208375", "setting": "last-3-pick-old-and-tell", "worker_id": "PK7SQMPIA1MFENE", "story_id": "44174", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the awning of the merry-go-round had the most beautiful masks .", "storylet_id": "220870"}], [{"original_text": "Here is one of the mirrors on the extremely detailed Merry-Go-Round.", "album_id": "72157625597943685", "photo_flickr_id": "5313212245", "setting": "last-3-pick-old-and-tell", "worker_id": "PK7SQMPIA1MFENE", "story_id": "44174", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is one of the mirrors on the extremely detailed merry-go-round .", "storylet_id": "220871"}], [{"original_text": "The whole gang eagerly awaited their turn to ride the world famous \"Zipper\".", "album_id": "72157625597943685", "photo_flickr_id": "5313214231", "setting": "last-3-pick-old-and-tell", "worker_id": "PK7SQMPIA1MFENE", "story_id": "44174", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the whole gang eagerly awaited their turn to ride the world famous `` zipper '' .", "storylet_id": "220872"}], [{"original_text": "Here's the Zipper in action as it reaches its peak.", "album_id": "72157625597943685", "photo_flickr_id": "5313216009", "setting": "last-3-pick-old-and-tell", "worker_id": "PK7SQMPIA1MFENE", "story_id": "44174", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's the zipper in action as it reaches its peak .", "storylet_id": "220873"}], [{"original_text": "The Ferris Wheel was our last stop of the day and one of the more picturesque shots.", "album_id": "72157625597943685", "photo_flickr_id": "5313842840", "setting": "last-3-pick-old-and-tell", "worker_id": "PK7SQMPIA1MFENE", "story_id": "44174", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ferris wheel was our last stop of the day and one of the more picturesque shots .", "storylet_id": "220874"}], [{"original_text": "The ceremony was a success.", "album_id": "72157626404221424", "photo_flickr_id": "5578658077", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44175", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ceremony was a success .", "storylet_id": "220875"}], [{"original_text": "Everyone wore their coolest costumes.", "album_id": "72157626404221424", "photo_flickr_id": "5579236660", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44175", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone wore their coolest costumes .", "storylet_id": "220876"}], [{"original_text": "People were happy to be celebrating.", "album_id": "72157626404221424", "photo_flickr_id": "5579245542", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44175", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people were happy to be celebrating .", "storylet_id": "220877"}], [{"original_text": "Everyone looked forward to this ceremony all year.", "album_id": "72157626404221424", "photo_flickr_id": "5578652167", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44175", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone looked forward to this ceremony all year .", "storylet_id": "220878"}], [{"original_text": "They hoped next year would be as fun.", "album_id": "72157626404221424", "photo_flickr_id": "5578652755", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44175", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they hoped next year would be as fun .", "storylet_id": "220879"}], [{"original_text": "This was one crazy Halloween party.", "album_id": "72157626404221424", "photo_flickr_id": "5578659167", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44176", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was one crazy halloween party .", "storylet_id": "220880"}], [{"original_text": "There were all sorts of crazy costumes.", "album_id": "72157626404221424", "photo_flickr_id": "5579238212", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44176", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were all sorts of crazy costumes .", "storylet_id": "220881"}], [{"original_text": "These ones were a bit silly and scary at the same time.", "album_id": "72157626404221424", "photo_flickr_id": "5578651963", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44176", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these ones were a bit silly and scary at the same time .", "storylet_id": "220882"}], [{"original_text": "They walked around menacingly.", "album_id": "72157626404221424", "photo_flickr_id": "5578652167", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44176", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they walked around menacingly .", "storylet_id": "220883"}], [{"original_text": "It was a fun and crazy event for me.", "album_id": "72157626404221424", "photo_flickr_id": "5578654053", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44176", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a fun and crazy event for me .", "storylet_id": "220884"}], [{"original_text": "Barbaric was the look he was going for. ", "album_id": "72157626404221424", "photo_flickr_id": "5578659167", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44177", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "barbaric was the look he was going for .", "storylet_id": "220885"}], [{"original_text": "He defiantly had accomplished it. ", "album_id": "72157626404221424", "photo_flickr_id": "5579238212", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44177", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he defiantly had accomplished it .", "storylet_id": "220886"}], [{"original_text": "So had the others. ", "album_id": "72157626404221424", "photo_flickr_id": "5578651963", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44177", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so had the others .", "storylet_id": "220887"}], [{"original_text": "Animal horns and fur on their heads. ", "album_id": "72157626404221424", "photo_flickr_id": "5578652167", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44177", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "animal horns and fur on their heads .", "storylet_id": "220888"}], [{"original_text": "Red paint to look like blood on their shirts. ", "album_id": "72157626404221424", "photo_flickr_id": "5578654053", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44177", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "red paint to look like blood on their shirts .", "storylet_id": "220889"}], [{"original_text": "A fake war happened in my neighborhood today.", "album_id": "72157626404221424", "photo_flickr_id": "5578658077", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44178", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a fake war happened in my neighborhood today .", "storylet_id": "220890"}], [{"original_text": "Some of my friends dressed up as beasts.", "album_id": "72157626404221424", "photo_flickr_id": "5579236660", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44178", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of my friends dressed up as beasts .", "storylet_id": "220891"}], [{"original_text": "There was a whole clan of beasts together.", "album_id": "72157626404221424", "photo_flickr_id": "5579245542", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44178", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a whole clan of beasts together .", "storylet_id": "220892"}], [{"original_text": "They were bloody even before the battle began.", "album_id": "72157626404221424", "photo_flickr_id": "5578652167", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44178", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were bloody even before the battle began .", "storylet_id": "220893"}], [{"original_text": "They all had pitchforks that could kill a person.", "album_id": "72157626404221424", "photo_flickr_id": "5578652755", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44178", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all had pitchforks that could kill a person .", "storylet_id": "220894"}], [{"original_text": "Time for our annual cult ritual.", "album_id": "72157626404221424", "photo_flickr_id": "5578659167", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "44179", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "time for our annual cult ritual .", "storylet_id": "220895"}], [{"original_text": "These are our sacred headdresses that are used in the ritual.", "album_id": "72157626404221424", "photo_flickr_id": "5579238212", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "44179", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these are our sacred headdresses that are used in the ritual .", "storylet_id": "220896"}], [{"original_text": "The Elders of the group leading us to our ritual site.", "album_id": "72157626404221424", "photo_flickr_id": "5578651963", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "44179", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the elders of the group leading us to our ritual site .", "storylet_id": "220897"}], [{"original_text": "Our Elders singing the scared words.", "album_id": "72157626404221424", "photo_flickr_id": "5578652167", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "44179", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our elders singing the scared words .", "storylet_id": "220898"}], [{"original_text": "Time to start dancing around the sacred fire.", "album_id": "72157626404221424", "photo_flickr_id": "5578654053", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "44179", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time to start dancing around the sacred fire .", "storylet_id": "220899"}], [{"original_text": "Today was the day.", "album_id": "72157624444689467", "photo_flickr_id": "4822621025", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44180", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day .", "storylet_id": "220900"}], [{"original_text": "All the kids were day.", "album_id": "72157624444689467", "photo_flickr_id": "5152013477", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44180", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the kids were day .", "storylet_id": "220901"}], [{"original_text": "So were their friends.", "album_id": "72157624444689467", "photo_flickr_id": "4833775570", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44180", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so were their friends .", "storylet_id": "220902"}], [{"original_text": "There was something blue.", "album_id": "72157624444689467", "photo_flickr_id": "5152436782", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44180", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was something blue .", "storylet_id": "220903"}], [{"original_text": "And a quilt shop!", "album_id": "72157624444689467", "photo_flickr_id": "4848543471", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44180", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and a quilt shop !", "storylet_id": "220904"}], [{"original_text": "The kids and I went to the carnival. Their first stop was the swing ride.", "album_id": "72157624444689467", "photo_flickr_id": "4834040616", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44181", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids and i went to the carnival . their first stop was the swing ride .", "storylet_id": "220905"}], [{"original_text": "Next up was the Ferris wheel.", "album_id": "72157624444689467", "photo_flickr_id": "4822621025", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44181", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next up was the ferris wheel .", "storylet_id": "220906"}], [{"original_text": "Of course the bumper cars were a hit.", "album_id": "72157624444689467", "photo_flickr_id": "4833146113", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44181", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course the bumper cars were a hit .", "storylet_id": "220907"}], [{"original_text": "We won Patrick while playing games.", "album_id": "72157624444689467", "photo_flickr_id": "4833775570", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44181", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we won [male] while playing games .", "storylet_id": "220908"}], [{"original_text": "But at the end of the day, the quilt shop was more my speed.", "album_id": "72157624444689467", "photo_flickr_id": "4848543471", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44181", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but at the end of the day , the quilt shop was more my speed .", "storylet_id": "220909"}], [{"original_text": "Me and some friends took a trip to the carnival today.", "album_id": "72157624444689467", "photo_flickr_id": "4822621025", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "44182", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and some friends took a trip to the carnival today .", "storylet_id": "220910"}], [{"original_text": "Here we are together deciding what to do first.", "album_id": "72157624444689467", "photo_flickr_id": "5152013477", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "44182", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we are together deciding what to do first .", "storylet_id": "220911"}], [{"original_text": "I tried winning one of these guys but couldnt manage it.", "album_id": "72157624444689467", "photo_flickr_id": "4833775570", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "44182", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i tried winning one of these guys but couldnt manage it .", "storylet_id": "220912"}], [{"original_text": "My friend won this blue whoopie cushion, dont know what shes planning to do with it.", "album_id": "72157624444689467", "photo_flickr_id": "5152436782", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "44182", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friend won this blue whoopie cushion , dont know what shes planning to do with it .", "storylet_id": "220913"}], [{"original_text": "One of the booths made some quilts that we checked out before leaving for the day.", "album_id": "72157624444689467", "photo_flickr_id": "4848543471", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "44182", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of the booths made some quilts that we checked out before leaving for the day .", "storylet_id": "220914"}], [{"original_text": "This was Jill's first time getting on the rides at the carnival. She was so excited.", "album_id": "72157624444689467", "photo_flickr_id": "4834040616", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "44183", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was [female] 's first time getting on the rides at the carnival . she was so excited .", "storylet_id": "220915"}], [{"original_text": "I tried to get her to get on the ferris wheel, but she said that it was too high and maybe next time she will.", "album_id": "72157624444689467", "photo_flickr_id": "4822621025", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "44183", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i tried to get her to get on the ferris wheel , but she said that it was too high and maybe next time she will .", "storylet_id": "220916"}], [{"original_text": "The bumper cars are definitely my favorite amusement at the carnival.", "album_id": "72157624444689467", "photo_flickr_id": "4833146113", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "44183", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bumper cars are definitely my favorite amusement at the carnival .", "storylet_id": "220917"}], [{"original_text": "I can't seem to escape Spongebob and Patrick anywhere. They're everywhere!", "album_id": "72157624444689467", "photo_flickr_id": "4833775570", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "44183", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i ca n't seem to escape spongebob and [male] anywhere . they 're everywhere !", "storylet_id": "220918"}], [{"original_text": "There were even gift shops at the carnival. I don't know who would be looking for a quilt in this hot weather though.", "album_id": "72157624444689467", "photo_flickr_id": "4848543471", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "44183", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were even gift shops at the carnival . i do n't know who would be looking for a quilt in this hot weather though .", "storylet_id": "220919"}], [{"original_text": "The girls rode a swing ride at the fair.", "album_id": "72157624444689467", "photo_flickr_id": "4834040616", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44184", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girls rode a swing ride at the fair .", "storylet_id": "220920"}], [{"original_text": "Then we saw a ferris wheel.", "album_id": "72157624444689467", "photo_flickr_id": "4822621025", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44184", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we saw a ferris wheel .", "storylet_id": "220921"}], [{"original_text": "After that we rode the bumper cars.", "album_id": "72157624444689467", "photo_flickr_id": "4833146113", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44184", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that we rode the bumper cars .", "storylet_id": "220922"}], [{"original_text": "We passed the midway that was offering all kinds of prizes.", "album_id": "72157624444689467", "photo_flickr_id": "4833775570", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44184", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we passed the midway that was offering all kinds of prizes .", "storylet_id": "220923"}], [{"original_text": "Finally we came to a quilt shop nearby.", "album_id": "72157624444689467", "photo_flickr_id": "4848543471", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44184", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally we came to a quilt shop nearby .", "storylet_id": "220924"}], [{"original_text": "friends night out. was great", "album_id": "72157624194258186", "photo_flickr_id": "4647847643", "setting": "first-2-pick-and-tell", "worker_id": "HLCKLJYKCPPMT39", "story_id": "44185", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends night out . was great", "storylet_id": "220925"}], [{"original_text": "my friends and i having fun dancing", "album_id": "72157624194258186", "photo_flickr_id": "4662309827", "setting": "first-2-pick-and-tell", "worker_id": "HLCKLJYKCPPMT39", "story_id": "44185", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friends and i having fun dancing", "storylet_id": "220926"}], [{"original_text": "dinner was so good wine was amazing ", "album_id": "72157624194258186", "photo_flickr_id": "4666404444", "setting": "first-2-pick-and-tell", "worker_id": "HLCKLJYKCPPMT39", "story_id": "44185", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dinner was so good wine was amazing", "storylet_id": "220927"}], [{"original_text": "hands in the air hahaha", "album_id": "72157624194258186", "photo_flickr_id": "4650033607", "setting": "first-2-pick-and-tell", "worker_id": "HLCKLJYKCPPMT39", "story_id": "44185", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "hands in the air hahaha", "storylet_id": "220928"}], [{"original_text": "merry and paul playing foosball", "album_id": "72157624194258186", "photo_flickr_id": "4650034579", "setting": "first-2-pick-and-tell", "worker_id": "HLCKLJYKCPPMT39", "story_id": "44185", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "merry and paul playing foosball", "storylet_id": "220929"}], [{"original_text": "today was the day of the parade. ", "album_id": "72157624194258186", "photo_flickr_id": "4647847215", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "44186", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day of the parade .", "storylet_id": "220930"}], [{"original_text": "One group went all out with matching costumes.They also carried tambourines to give rhythm to their walk. ", "album_id": "72157624194258186", "photo_flickr_id": "4647847643", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "44186", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one group went all out with matching costumes.they also carried tambourines to give rhythm to their walk .", "storylet_id": "220931"}], [{"original_text": "They were very proud of how they looked. ", "album_id": "72157624194258186", "photo_flickr_id": "4662311205", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "44186", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were very proud of how they looked .", "storylet_id": "220932"}], [{"original_text": "This woman's headdress is amazingly elaborate. ", "album_id": "72157624194258186", "photo_flickr_id": "4665772185", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "44186", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this woman 's headdress is amazingly elaborate .", "storylet_id": "220933"}], [{"original_text": "The detail work on this headdress was a work of pride. ", "album_id": "72157624194258186", "photo_flickr_id": "4650034579", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "44186", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the detail work on this headdress was a work of pride .", "storylet_id": "220934"}], [{"original_text": "The parade has begun and it seem so intriguing.", "album_id": "72157624194258186", "photo_flickr_id": "4647847215", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44187", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parade has begun and it seem so intriguing .", "storylet_id": "220935"}], [{"original_text": "Their costumes and movement was so cool.", "album_id": "72157624194258186", "photo_flickr_id": "4647847643", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44187", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their costumes and movement was so cool .", "storylet_id": "220936"}], [{"original_text": "This group was the best and everyone loved them.", "album_id": "72157624194258186", "photo_flickr_id": "4662311205", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44187", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this group was the best and everyone loved them .", "storylet_id": "220937"}], [{"original_text": "This lady costume stole the show.", "album_id": "72157624194258186", "photo_flickr_id": "4665772185", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44187", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this lady costume stole the show .", "storylet_id": "220938"}], [{"original_text": "This was my favorite group costume up close. This parade was fun and next year will be better.", "album_id": "72157624194258186", "photo_flickr_id": "4650034579", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44187", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was my favorite group costume up close . this parade was fun and next year will be better .", "storylet_id": "220939"}], [{"original_text": "some of the crews this year went all out on their costumes.", "album_id": "72157624194258186", "photo_flickr_id": "4647847643", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44188", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some of the crews this year went all out on their costumes .", "storylet_id": "220940"}], [{"original_text": "there where so many different colors.", "album_id": "72157624194258186", "photo_flickr_id": "4662309827", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44188", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there where so many different colors .", "storylet_id": "220941"}], [{"original_text": "green, orange, and blue. they all looked so good.", "album_id": "72157624194258186", "photo_flickr_id": "4666404444", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44188", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "green , orange , and blue . they all looked so good .", "storylet_id": "220942"}], [{"original_text": "we where asked to vote on what one was the best, but i feel that was pretty short handed. ", "album_id": "72157624194258186", "photo_flickr_id": "4650033607", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44188", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we where asked to vote on what one was the best , but i feel that was pretty short handed .", "storylet_id": "220943"}], [{"original_text": "they all looked so good. picking just one felt like a sin.", "album_id": "72157624194258186", "photo_flickr_id": "4650034579", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44188", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all looked so good . picking just one felt like a sin .", "storylet_id": "220944"}], [{"original_text": "The Tigerstripe tribe celebrates its latest victory in the urban jungle while it's new subjects look on shamefully defeated.", "album_id": "72157624194258186", "photo_flickr_id": "4647847215", "setting": "last-3-pick-old-and-tell", "worker_id": "09GYJ007BDC32SG", "story_id": "44189", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tigerstripe tribe celebrates its latest victory in the urban jungle while it 's new subjects look on shamefully defeated .", "storylet_id": "220945"}], [{"original_text": "The celebration begins with music to honor their fallen.", "album_id": "72157624194258186", "photo_flickr_id": "4647847643", "setting": "last-3-pick-old-and-tell", "worker_id": "09GYJ007BDC32SG", "story_id": "44189", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the celebration begins with music to honor their fallen .", "storylet_id": "220946"}], [{"original_text": "They chant to their God and praise her for strength she has granted them to achieve victory.", "album_id": "72157624194258186", "photo_flickr_id": "4662311205", "setting": "last-3-pick-old-and-tell", "worker_id": "09GYJ007BDC32SG", "story_id": "44189", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they chant to their god and praise her for strength she has granted them to achieve victory .", "storylet_id": "220947"}], [{"original_text": "Their God and leader Shila hears their praise with gratitude.", "album_id": "72157624194258186", "photo_flickr_id": "4665772185", "setting": "last-3-pick-old-and-tell", "worker_id": "09GYJ007BDC32SG", "story_id": "44189", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their god and leader shila hears their praise with gratitude .", "storylet_id": "220948"}], [{"original_text": "Shanzi, a great warrior, is joyful her leader is happy with their victory.", "album_id": "72157624194258186", "photo_flickr_id": "4650034579", "setting": "last-3-pick-old-and-tell", "worker_id": "09GYJ007BDC32SG", "story_id": "44189", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "shanzi , a great warrior , is joyful her leader is happy with their victory .", "storylet_id": "220949"}], [{"original_text": "Some of the men wore interesting hats.", "album_id": "72157624194353776", "photo_flickr_id": "4647836581", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44190", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some of the men wore interesting hats .", "storylet_id": "220950"}], [{"original_text": "There was a colorful skeleton posted high.", "album_id": "72157624194353776", "photo_flickr_id": "4647838195", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44190", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a colorful skeleton posted high .", "storylet_id": "220951"}], [{"original_text": "One male walked passed me with a neon face.", "album_id": "72157624194353776", "photo_flickr_id": "4662260753", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44190", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one male walked passed me with a neon face .", "storylet_id": "220952"}], [{"original_text": "I was very thrilled by all of the action at that event.", "album_id": "72157624194353776", "photo_flickr_id": "4662282031", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44190", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was very thrilled by all of the action at that event .", "storylet_id": "220953"}], [{"original_text": "This man wore a very interesting color scheme as well.", "album_id": "72157624194353776", "photo_flickr_id": "4662282635", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44190", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this man wore a very interesting color scheme as well .", "storylet_id": "220954"}], [{"original_text": "around madi gras time in new Orleans everything happens", "album_id": "72157624194353776", "photo_flickr_id": "4662879978", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "44191", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "around madi gras time in new orleans everything happens", "storylet_id": "220955"}], [{"original_text": "there are so many dissfernt thing you see", "album_id": "72157624194353776", "photo_flickr_id": "4647836581", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "44191", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are so many dissfernt thing you see", "storylet_id": "220956"}], [{"original_text": "een people resed up in many diffent ways", "album_id": "72157624194353776", "photo_flickr_id": "4648451188", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "44191", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "een people resed up in many diffent ways", "storylet_id": "220957"}], [{"original_text": "even funny looking props", "album_id": "72157624194353776", "photo_flickr_id": "4648451758", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "44191", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even funny looking props", "storylet_id": "220958"}], [{"original_text": "there are all a lot of fun", "album_id": "72157624194353776", "photo_flickr_id": "4662279695", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "44191", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there are all a lot of fun", "storylet_id": "220959"}], [{"original_text": "Here I am at Mardi Gras this year getting ready tojoin the parade.", "album_id": "72157624194353776", "photo_flickr_id": "4647836581", "setting": "last-3-pick-old-and-tell", "worker_id": "6UR844FO8FRPOD4", "story_id": "44192", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here i am at organization organization this year getting ready tojoin the parade .", "storylet_id": "220960"}], [{"original_text": "This guy and his trusty sidekick walked beside me the entire time. They make a cute couple.", "album_id": "72157624194353776", "photo_flickr_id": "4647838195", "setting": "last-3-pick-old-and-tell", "worker_id": "6UR844FO8FRPOD4", "story_id": "44192", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this guy and his trusty sidekick walked beside me the entire time . they make a cute couple .", "storylet_id": "220961"}], [{"original_text": "My brother finally joins the party. I must say, he is looking awesome!", "album_id": "72157624194353776", "photo_flickr_id": "4662260753", "setting": "last-3-pick-old-and-tell", "worker_id": "6UR844FO8FRPOD4", "story_id": "44192", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brother finally joins the party . i must say , he is looking awesome !", "storylet_id": "220962"}], [{"original_text": "This guy kept poking us with his golden chicken the entire parade. He was a little to excited.", "album_id": "72157624194353776", "photo_flickr_id": "4662282031", "setting": "last-3-pick-old-and-tell", "worker_id": "6UR844FO8FRPOD4", "story_id": "44192", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this guy kept poking us with his golden chicken the entire parade . he was a little to excited .", "storylet_id": "220963"}], [{"original_text": "Posing with my best friend Jill. After six blocks of walking she still looks fabulous! ", "album_id": "72157624194353776", "photo_flickr_id": "4662282635", "setting": "last-3-pick-old-and-tell", "worker_id": "6UR844FO8FRPOD4", "story_id": "44192", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "posing with my best friend [female] . after six blocks of walking she still looks fabulous !", "storylet_id": "220964"}], [{"original_text": "While watching the parade we watched a lady in a large costume.", "album_id": "72157624194353776", "photo_flickr_id": "4662879978", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44193", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while watching the parade we watched a lady in a large costume .", "storylet_id": "220965"}], [{"original_text": "Then we saw someone with a gold painted face smiling at us.", "album_id": "72157624194353776", "photo_flickr_id": "4647836581", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44193", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we saw someone with a gold painted face smiling at us .", "storylet_id": "220966"}], [{"original_text": "Then we saw a group of men in black and yellow costumes.", "album_id": "72157624194353776", "photo_flickr_id": "4648451188", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44193", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we saw a group of men in black and yellow costumes .", "storylet_id": "220967"}], [{"original_text": "Then a group of people passed wearing many colors.", "album_id": "72157624194353776", "photo_flickr_id": "4648451758", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44193", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then a group of people passed wearing many colors .", "storylet_id": "220968"}], [{"original_text": "We saw a couple of people with pink and yellow suns on their head.", "album_id": "72157624194353776", "photo_flickr_id": "4662279695", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44193", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we saw a couple of people with pink and yellow suns on their head .", "storylet_id": "220969"}], [{"original_text": "Our whole family saw the parade we saw someone in a colorful costume.", "album_id": "72157624194353776", "photo_flickr_id": "4647836581", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44194", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our whole family saw the parade we saw someone in a colorful costume .", "storylet_id": "220970"}], [{"original_text": "We saw a skeleton that was red.", "album_id": "72157624194353776", "photo_flickr_id": "4647838195", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44194", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw a skeleton that was red .", "storylet_id": "220971"}], [{"original_text": "We saw a green skeleton with teeth.", "album_id": "72157624194353776", "photo_flickr_id": "4662260753", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44194", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw a green skeleton with teeth .", "storylet_id": "220972"}], [{"original_text": "The gold dragon was really neat and our family liked it.", "album_id": "72157624194353776", "photo_flickr_id": "4662282031", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44194", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the gold dragon was really neat and our family liked it .", "storylet_id": "220973"}], [{"original_text": "At the end of the parade we saw a lady in green, pink and yellow.", "album_id": "72157624194353776", "photo_flickr_id": "4662282635", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44194", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the parade we saw a lady in green , pink and yellow .", "storylet_id": "220974"}], [{"original_text": "I went for a walk on Halloween.", "album_id": "72157624455335016", "photo_flickr_id": "4881785623", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44195", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a walk on halloween .", "storylet_id": "220975"}], [{"original_text": "There were tons of people outside dressed up for the day.", "album_id": "72157624455335016", "photo_flickr_id": "4882393842", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44195", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were tons of people outside dressed up for the day .", "storylet_id": "220976"}], [{"original_text": "They had put a lot of effort into their costumes.", "album_id": "72157624455335016", "photo_flickr_id": "4882394236", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44195", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had put a lot of effort into their costumes .", "storylet_id": "220977"}], [{"original_text": "They were very happy.", "album_id": "72157624455335016", "photo_flickr_id": "4868449232", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44195", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were very happy .", "storylet_id": "220978"}], [{"original_text": "I met a lot of new and interesting people.", "album_id": "72157624455335016", "photo_flickr_id": "4867836543", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44195", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i met a lot of new and interesting people .", "storylet_id": "220979"}], [{"original_text": "The nurses' parade took place last Sunday.", "album_id": "72157624455335016", "photo_flickr_id": "4882394236", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44196", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the nurses ' parade took place last sunday .", "storylet_id": "220980"}], [{"original_text": "We all dressed up in great costumes and makeup.", "album_id": "72157624455335016", "photo_flickr_id": "4867836193", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44196", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all dressed up in great costumes and makeup .", "storylet_id": "220981"}], [{"original_text": "Gailey dressed like a renaissance doctor.", "album_id": "72157624455335016", "photo_flickr_id": "4874390449", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44196", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "gailey dressed like a renaissance doctor .", "storylet_id": "220982"}], [{"original_text": "Other people dressed like death.", "album_id": "72157624455335016", "photo_flickr_id": "4776185097", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44196", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other people dressed like death .", "storylet_id": "220983"}], [{"original_text": "Some people got so creative, we didn't even know what they were dressed like.", "album_id": "72157624455335016", "photo_flickr_id": "4778841587", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44196", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people got so creative , we did n't even know what they were dressed like .", "storylet_id": "220984"}], [{"original_text": "Many of the attendants at the festival were beautifully dressed as traditional geisha. ", "album_id": "72157624455335016", "photo_flickr_id": "4881785623", "setting": "last-3-pick-old-and-tell", "worker_id": "6OAPMT79UMH4L9L", "story_id": "44197", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many of the attendants at the festival were beautifully dressed as traditional geisha .", "storylet_id": "220985"}], [{"original_text": "Patrons, dressed in festival colors with their faces painted, added their own style to the affair. ", "album_id": "72157624455335016", "photo_flickr_id": "4882393842", "setting": "last-3-pick-old-and-tell", "worker_id": "6OAPMT79UMH4L9L", "story_id": "44197", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "patrons , dressed in festival colors with their faces painted , added their own style to the affair .", "storylet_id": "220986"}], [{"original_text": "The whole city was trimmed in red and gold ribbons. ", "album_id": "72157624455335016", "photo_flickr_id": "4882394236", "setting": "last-3-pick-old-and-tell", "worker_id": "6OAPMT79UMH4L9L", "story_id": "44197", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the whole city was trimmed in red and gold ribbons .", "storylet_id": "220987"}], [{"original_text": "People, young and old, came to watch the performances. ", "album_id": "72157624455335016", "photo_flickr_id": "4868449232", "setting": "last-3-pick-old-and-tell", "worker_id": "6OAPMT79UMH4L9L", "story_id": "44197", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people , young and old , came to watch the performances .", "storylet_id": "220988"}], [{"original_text": "Children were able to have their makeup done in traditional geisha style. ", "album_id": "72157624455335016", "photo_flickr_id": "4867836543", "setting": "last-3-pick-old-and-tell", "worker_id": "6OAPMT79UMH4L9L", "story_id": "44197", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "children were able to have their makeup done in traditional geisha style .", "storylet_id": "220989"}], [{"original_text": "This festival is popular in the town.", "album_id": "72157624455335016", "photo_flickr_id": "4882394236", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44198", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this festival is popular in the town .", "storylet_id": "220990"}], [{"original_text": "People of all ages paint their faces for the festival.", "album_id": "72157624455335016", "photo_flickr_id": "4867836193", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44198", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people of all ages paint their faces for the festival .", "storylet_id": "220991"}], [{"original_text": "This guy is dressed as a popular character.", "album_id": "72157624455335016", "photo_flickr_id": "4874390449", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44198", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this guy is dressed as a popular character .", "storylet_id": "220992"}], [{"original_text": "These people are dressed as headless ghosts.", "album_id": "72157624455335016", "photo_flickr_id": "4776185097", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44198", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these people are dressed as headless ghosts .", "storylet_id": "220993"}], [{"original_text": "This kids dressed up in a traditional character for the festival.", "album_id": "72157624455335016", "photo_flickr_id": "4778841587", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44198", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this kids dressed up in a traditional character for the festival .", "storylet_id": "220994"}], [{"original_text": "Her beauty was masked by the heavy stage makeup. ", "album_id": "72157624455335016", "photo_flickr_id": "4881785623", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44199", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "her beauty was masked by the heavy stage makeup .", "storylet_id": "220995"}], [{"original_text": "Normally, she wouldn't go out in public that way. ", "album_id": "72157624455335016", "photo_flickr_id": "4882393842", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44199", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "normally , she would n't go out in public that way .", "storylet_id": "220996"}], [{"original_text": "But today was no normal day. ", "album_id": "72157624455335016", "photo_flickr_id": "4882394236", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44199", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but today was no normal day .", "storylet_id": "220997"}], [{"original_text": "Members of the play had all volunteered. ", "album_id": "72157624455335016", "photo_flickr_id": "4868449232", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44199", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "members of the play had all volunteered .", "storylet_id": "220998"}], [{"original_text": "Even spectators wore heavy makeup to show support. ", "album_id": "72157624455335016", "photo_flickr_id": "4867836543", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44199", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even spectators wore heavy makeup to show support .", "storylet_id": "220999"}], [{"original_text": "I took my family to the fair last weekend.", "album_id": "72157626193593404", "photo_flickr_id": "5496237395", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44200", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took my family to the fair last weekend .", "storylet_id": "221000"}], [{"original_text": "There was a huge Ferris wheel.", "album_id": "72157626193593404", "photo_flickr_id": "5496829812", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44200", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a huge ferris wheel .", "storylet_id": "221001"}], [{"original_text": "I had a great time.", "album_id": "72157626193593404", "photo_flickr_id": "5496833534", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44200", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time .", "storylet_id": "221002"}], [{"original_text": "We stayed all night.", "album_id": "72157626193593404", "photo_flickr_id": "5496834072", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44200", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stayed all night .", "storylet_id": "221003"}], [{"original_text": "On the way back we took the train.", "album_id": "72157626193593404", "photo_flickr_id": "5496242775", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44200", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the way back we took the train .", "storylet_id": "221004"}], [{"original_text": "We took a ride on the subway today.", "album_id": "72157626193593404", "photo_flickr_id": "5496242775", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "44201", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a ride on the subway today .", "storylet_id": "221005"}], [{"original_text": "And stopped near our favorite place to go.", "album_id": "72157626193593404", "photo_flickr_id": "5496832748", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "44201", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and stopped near our favorite place to go .", "storylet_id": "221006"}], [{"original_text": "We headed past the posters to our destination.", "album_id": "72157626193593404", "photo_flickr_id": "5496831342", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "44201", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we headed past the posters to our destination .", "storylet_id": "221007"}], [{"original_text": "The fair! We love to hang out at the fair.", "album_id": "72157626193593404", "photo_flickr_id": "5496829552", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "44201", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fair ! we love to hang out at the fair .", "storylet_id": "221008"}], [{"original_text": "The Ferris Wheel is my favorite!", "album_id": "72157626193593404", "photo_flickr_id": "5496829812", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "44201", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ferris wheel is my favorite !", "storylet_id": "221009"}], [{"original_text": "We rode the subway to get there.", "album_id": "72157626193593404", "photo_flickr_id": "5496242775", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44202", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we rode the subway to get there .", "storylet_id": "221010"}], [{"original_text": "It looked really cool today.", "album_id": "72157626193593404", "photo_flickr_id": "5496832748", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44202", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it looked really cool today .", "storylet_id": "221011"}], [{"original_text": "Saw these interesting flyers.", "album_id": "72157626193593404", "photo_flickr_id": "5496831342", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44202", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "saw these interesting flyers .", "storylet_id": "221012"}], [{"original_text": "In the distance the rides were very bright.", "album_id": "72157626193593404", "photo_flickr_id": "5496829552", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44202", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the distance the rides were very bright .", "storylet_id": "221013"}], [{"original_text": "Up close they were even prettier.", "album_id": "72157626193593404", "photo_flickr_id": "5496829812", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44202", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "up close they were even prettier .", "storylet_id": "221014"}], [{"original_text": "One of the rides at the carnival by the pier. Too high for my comfort.", "album_id": "72157626193593404", "photo_flickr_id": "5496237395", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44203", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one of the rides at the carnival by the pier . too high for my comfort .", "storylet_id": "221015"}], [{"original_text": "The Ferris wheel all lit up at night.", "album_id": "72157626193593404", "photo_flickr_id": "5496829812", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44203", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the organization wheel all lit up at night .", "storylet_id": "221016"}], [{"original_text": " An interesting shot out a window while we went down to the subway.", "album_id": "72157626193593404", "photo_flickr_id": "5496833534", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44203", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "an interesting shot out a window while we went down to the subway .", "storylet_id": "221017"}], [{"original_text": "The train station right before we boarded and headed home.", "album_id": "72157626193593404", "photo_flickr_id": "5496834072", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44203", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the train station right before we boarded and headed home .", "storylet_id": "221018"}], [{"original_text": "Hopping on the train to get back to the house.", "album_id": "72157626193593404", "photo_flickr_id": "5496242775", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44203", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "hopping on the train to get back to the house .", "storylet_id": "221019"}], [{"original_text": "Going to a Fair is great. But it's even better for a photographer. ", "album_id": "72157626193593404", "photo_flickr_id": "5496237395", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "44204", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going to a fair is great . but it 's even better for a photographer .", "storylet_id": "221020"}], [{"original_text": "There are so many things to shoot in so many different ways. ", "album_id": "72157626193593404", "photo_flickr_id": "5496829812", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "44204", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are so many things to shoot in so many different ways .", "storylet_id": "221021"}], [{"original_text": "But sometimes, shots of basically nothing can turn out pretty cool. ", "album_id": "72157626193593404", "photo_flickr_id": "5496833534", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "44204", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but sometimes , shots of basically nothing can turn out pretty cool .", "storylet_id": "221022"}], [{"original_text": "Even the lights of an old storage shed near the Fairgrounds itself. ", "album_id": "72157626193593404", "photo_flickr_id": "5496834072", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "44204", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the lights of an old storage shed near the location itself .", "storylet_id": "221023"}], [{"original_text": "And even the subway that we took home can turn into a work of art. ", "album_id": "72157626193593404", "photo_flickr_id": "5496242775", "setting": "last-3-pick-old-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "44204", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and even the subway that we took home can turn into a work of art .", "storylet_id": "221024"}], [{"original_text": "We took the girls to the county fair today. It had a special section for kiddie rides.", "album_id": "72157624300939949", "photo_flickr_id": "4762365603", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "44205", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took the girls to the county fair today . it had a special section for kiddie rides .", "storylet_id": "221025"}], [{"original_text": "The girls were so excited, it was hard for them to choose what to do.", "album_id": "72157624300939949", "photo_flickr_id": "4762368401", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "44205", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girls were so excited , it was hard for them to choose what to do .", "storylet_id": "221026"}], [{"original_text": "They held on tight with this spinning ride.", "album_id": "72157624300939949", "photo_flickr_id": "4762371581", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "44205", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they held on tight with this spinning ride .", "storylet_id": "221027"}], [{"original_text": "They loved the car ride.", "album_id": "72157624300939949", "photo_flickr_id": "4762370339", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "44205", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they loved the car ride .", "storylet_id": "221028"}], [{"original_text": "Their favorite ride was the last one they road. It was a roller coaster with a snake head and body. This made their day.", "album_id": "72157624300939949", "photo_flickr_id": "4763003410", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "44205", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their favorite ride was the last one they road . it was a roller coaster with a snake head and body . this made their day .", "storylet_id": "221029"}], [{"original_text": "When I got to the amusement park there was a snake roller coaster.", "album_id": "72157624300939949", "photo_flickr_id": "4763002610", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44206", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i got to the amusement park there was a snake roller coaster .", "storylet_id": "221030"}], [{"original_text": "The kids wanted to ride on it.", "album_id": "72157624300939949", "photo_flickr_id": "4763003410", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44206", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids wanted to ride on it .", "storylet_id": "221031"}], [{"original_text": "They were a little bit scared of it.", "album_id": "72157624300939949", "photo_flickr_id": "4762368401", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44206", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were a little bit scared of it .", "storylet_id": "221032"}], [{"original_text": "But they did it anyway.", "album_id": "72157624300939949", "photo_flickr_id": "4762369439", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44206", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but they did it anyway .", "storylet_id": "221033"}], [{"original_text": "They had a great time.", "album_id": "72157624300939949", "photo_flickr_id": "4762370339", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44206", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had a great time .", "storylet_id": "221034"}], [{"original_text": "The amusement park had a thrilling new ride called 'The Cobra'.", "album_id": "72157624300939949", "photo_flickr_id": "4762365603", "setting": "last-3-pick-old-and-tell", "worker_id": "MU3D3Y4UO3T8J79", "story_id": "44207", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the amusement park had a thrilling new ride called 'the cobra ' .", "storylet_id": "221035"}], [{"original_text": "Jenny and Megan were a little scared to go on it but really wanted to try.", "album_id": "72157624300939949", "photo_flickr_id": "4762368401", "setting": "last-3-pick-old-and-tell", "worker_id": "MU3D3Y4UO3T8J79", "story_id": "44207", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] and [female] were a little scared to go on it but really wanted to try .", "storylet_id": "221036"}], [{"original_text": "They began small, going on 'The Whiplash', spinning around and around.", "album_id": "72157624300939949", "photo_flickr_id": "4762371581", "setting": "last-3-pick-old-and-tell", "worker_id": "MU3D3Y4UO3T8J79", "story_id": "44207", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they began small , going on 'the whiplash ' , spinning around and around .", "storylet_id": "221037"}], [{"original_text": "The girls then went to the bumper cars, crashing into many other people.", "album_id": "72157624300939949", "photo_flickr_id": "4762370339", "setting": "last-3-pick-old-and-tell", "worker_id": "MU3D3Y4UO3T8J79", "story_id": "44207", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the girls then went to the bumper cars , crashing into many other people .", "storylet_id": "221038"}], [{"original_text": "Finally, the climbed on 'The Cobra' and ended the night with the thrilling ride.", "album_id": "72157624300939949", "photo_flickr_id": "4763003410", "setting": "last-3-pick-old-and-tell", "worker_id": "MU3D3Y4UO3T8J79", "story_id": "44207", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , the climbed on 'the cobra ' and ended the night with the thrilling ride .", "storylet_id": "221039"}], [{"original_text": "There's an amazing carnival show in town!", "album_id": "72157624300939949", "photo_flickr_id": "4762365603", "setting": "last-3-pick-old-and-tell", "worker_id": "MP036WJIR3IALUV", "story_id": "44208", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there 's an amazing carnival show in town !", "storylet_id": "221040"}], [{"original_text": "Emily and Lisa are so excited.", "album_id": "72157624300939949", "photo_flickr_id": "4762368401", "setting": "last-3-pick-old-and-tell", "worker_id": "MP036WJIR3IALUV", "story_id": "44208", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] and [female] are so excited .", "storylet_id": "221041"}], [{"original_text": "They get ride the tilt-a-while.", "album_id": "72157624300939949", "photo_flickr_id": "4762371581", "setting": "last-3-pick-old-and-tell", "worker_id": "MP036WJIR3IALUV", "story_id": "44208", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they get ride the tilt-a-while .", "storylet_id": "221042"}], [{"original_text": "They get to drive bumper cars.", "album_id": "72157624300939949", "photo_flickr_id": "4762370339", "setting": "last-3-pick-old-and-tell", "worker_id": "MP036WJIR3IALUV", "story_id": "44208", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they get to drive bumper cars .", "storylet_id": "221043"}], [{"original_text": "They even get to see a smiling snake!", "album_id": "72157624300939949", "photo_flickr_id": "4763003410", "setting": "last-3-pick-old-and-tell", "worker_id": "MP036WJIR3IALUV", "story_id": "44208", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even get to see a smiling snake !", "storylet_id": "221044"}], [{"original_text": "we went this this little fair about snakes.", "album_id": "72157624300939949", "photo_flickr_id": "4763002610", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44209", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went this this little fair about snakes .", "storylet_id": "221045"}], [{"original_text": "they had this big ride with a snake at the front of it. ", "album_id": "72157624300939949", "photo_flickr_id": "4763003410", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44209", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had this big ride with a snake at the front of it .", "storylet_id": "221046"}], [{"original_text": "it was such a sight to see. the kids seems to really enjoy it.", "album_id": "72157624300939949", "photo_flickr_id": "4762368401", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44209", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was such a sight to see . the kids seems to really enjoy it .", "storylet_id": "221047"}], [{"original_text": "there where so excited to get in that ride.", "album_id": "72157624300939949", "photo_flickr_id": "4762369439", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44209", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there where so excited to get in that ride .", "storylet_id": "221048"}], [{"original_text": "after to big snake ride the kids tried out so many of the different rides. we where not finished until well into the night.", "album_id": "72157624300939949", "photo_flickr_id": "4762370339", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44209", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after to big snake ride the kids tried out so many of the different rides . we where not finished until well into the night .", "storylet_id": "221049"}], [{"original_text": "The crowd was waiting for the ruckus. ", "album_id": "72157623145768674", "photo_flickr_id": "4247776743", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44210", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowd was waiting for the ruckus .", "storylet_id": "221050"}], [{"original_text": "And, then they were off.", "album_id": "72157623145768674", "photo_flickr_id": "4247777101", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44210", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and , then they were off .", "storylet_id": "221051"}], [{"original_text": "The crowds started chanting and waving their signs.", "album_id": "72157623145768674", "photo_flickr_id": "4248550338", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44210", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowds started chanting and waving their signs .", "storylet_id": "221052"}], [{"original_text": "And, then they started lighting things on fire.", "album_id": "72157623145768674", "photo_flickr_id": "4248550542", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44210", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , then they started lighting things on fire .", "storylet_id": "221053"}], [{"original_text": "It ended by the capitol and the crowd became much calmer.", "album_id": "72157623145768674", "photo_flickr_id": "4248553722", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44210", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it ended by the capitol and the crowd became much calmer .", "storylet_id": "221054"}], [{"original_text": "They friends met up outside of the building to see the circus.", "album_id": "72157623145768674", "photo_flickr_id": "4247774341", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44211", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they friends met up outside of the building to see the circus .", "storylet_id": "221055"}], [{"original_text": "Well trained horses were in attendance.", "album_id": "72157623145768674", "photo_flickr_id": "4248547618", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44211", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "well trained horses were in attendance .", "storylet_id": "221056"}], [{"original_text": "There was a king of tonight's event.", "album_id": "72157623145768674", "photo_flickr_id": "4247774941", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44211", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a king of tonight 's event .", "storylet_id": "221057"}], [{"original_text": "Showgirls were all around.", "album_id": "72157623145768674", "photo_flickr_id": "4247775255", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44211", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "showgirls were all around .", "storylet_id": "221058"}], [{"original_text": "There were even huge pieces of stage artwork on display.", "album_id": "72157623145768674", "photo_flickr_id": "4247778291", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44211", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were even huge pieces of stage artwork on display .", "storylet_id": "221059"}], [{"original_text": "Everybody was out in full force for tonights festivities.", "album_id": "72157623145768674", "photo_flickr_id": "4247776743", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "44212", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everybody was out in full force for tonights festivities .", "storylet_id": "221060"}], [{"original_text": "This marching band began the night with a few songs.", "album_id": "72157623145768674", "photo_flickr_id": "4247777101", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "44212", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this marching band began the night with a few songs .", "storylet_id": "221061"}], [{"original_text": "Afterward a few floats made their way through, this was my favorite.", "album_id": "72157623145768674", "photo_flickr_id": "4248550338", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "44212", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterward a few floats made their way through , this was my favorite .", "storylet_id": "221062"}], [{"original_text": "We also had fire performers doing some dangerous tricks.", "album_id": "72157623145768674", "photo_flickr_id": "4248550542", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "44212", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also had fire performers doing some dangerous tricks .", "storylet_id": "221063"}], [{"original_text": "Everybody had a great time and it was a jam packed event.", "album_id": "72157623145768674", "photo_flickr_id": "4248553722", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "44212", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everybody had a great time and it was a jam packed event .", "storylet_id": "221064"}], [{"original_text": "we where all ready for carnival this year.", "album_id": "72157623145768674", "photo_flickr_id": "4247774341", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44213", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we where all ready for carnival this year .", "storylet_id": "221065"}], [{"original_text": "we got all dressed up, and went out to the street.", "album_id": "72157623145768674", "photo_flickr_id": "4248547618", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44213", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got all dressed up , and went out to the street .", "storylet_id": "221066"}], [{"original_text": "we saw so many different things pass us buy.", "album_id": "72157623145768674", "photo_flickr_id": "4247774941", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44213", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw so many different things pass us buy .", "storylet_id": "221067"}], [{"original_text": "after the parade we went to our ball.", "album_id": "72157623145768674", "photo_flickr_id": "4247775255", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44213", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the parade we went to our ball .", "storylet_id": "221068"}], [{"original_text": "out side of our ball was our float. it was a great evening.", "album_id": "72157623145768674", "photo_flickr_id": "4247778291", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44213", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "out side of our ball was our float . it was a great evening .", "storylet_id": "221069"}], [{"original_text": "Today it was the day of the festival! A lot of people were going.", "album_id": "72157623145768674", "photo_flickr_id": "4247774341", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44214", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today it was the day of the festival ! a lot of people were going .", "storylet_id": "221070"}], [{"original_text": "This year we had a medieval theme. People seemed to enjoy it.", "album_id": "72157623145768674", "photo_flickr_id": "4248547618", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44214", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this year we had a medieval theme . people seemed to enjoy it .", "storylet_id": "221071"}], [{"original_text": "There was even a \"Prince\" that addressed his subjects,", "album_id": "72157623145768674", "photo_flickr_id": "4247774941", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44214", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was even a `` [male] '' that addressed his subjects ,", "storylet_id": "221072"}], [{"original_text": "Then there were the princesses. Who were gorgeous!", "album_id": "72157623145768674", "photo_flickr_id": "4247775255", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44214", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then there were the princesses . who were gorgeous !", "storylet_id": "221073"}], [{"original_text": "The parade was really cool afterwards too! This by far was my favorite festival!", "album_id": "72157623145768674", "photo_flickr_id": "4247778291", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44214", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the parade was really cool afterwards too ! this by far was my favorite festival !", "storylet_id": "221074"}], [{"original_text": "We went to the summer concert today.", "album_id": "72157624538698347", "photo_flickr_id": "4865146200", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "44215", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the summer concert today .", "storylet_id": "221075"}], [{"original_text": "It was quite crowded and there were some very cool balloons.", "album_id": "72157624538698347", "photo_flickr_id": "4864537841", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "44215", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was quite crowded and there were some very cool balloons .", "storylet_id": "221076"}], [{"original_text": "Pat and Jeff took the stage and the crowd cheered.", "album_id": "72157624538698347", "photo_flickr_id": "4865175348", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "44215", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] and [male] took the stage and the crowd cheered .", "storylet_id": "221077"}], [{"original_text": "Jeff performed a solo song which the crowd loved.", "album_id": "72157624538698347", "photo_flickr_id": "4864585821", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "44215", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] performed a solo song which the crowd loved .", "storylet_id": "221078"}], [{"original_text": "After the concert, many people lingered for awhile just to socialize further.", "album_id": "72157624538698347", "photo_flickr_id": "4864540041", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "44215", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the concert , many people lingered for awhile just to socialize further .", "storylet_id": "221079"}], [{"original_text": "The concert started in the afternoon.", "album_id": "72157624538698347", "photo_flickr_id": "4865146200", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44216", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the concert started in the afternoon .", "storylet_id": "221080"}], [{"original_text": "While waiting for music to start there were hot air balloons on display.", "album_id": "72157624538698347", "photo_flickr_id": "4864529305", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44216", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while waiting for music to start there were hot air balloons on display .", "storylet_id": "221081"}], [{"original_text": "A singer took the stage.", "album_id": "72157624538698347", "photo_flickr_id": "4864543867", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44216", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a singer took the stage .", "storylet_id": "221082"}], [{"original_text": "She was followed by a guitarist.", "album_id": "72157624538698347", "photo_flickr_id": "4865167128", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44216", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was followed by a guitarist .", "storylet_id": "221083"}], [{"original_text": "They joined each other on the stage and had a few songs together.", "album_id": "72157624538698347", "photo_flickr_id": "4864550179", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44216", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they joined each other on the stage and had a few songs together .", "storylet_id": "221084"}], [{"original_text": "There were hundreds of people at the fourth of July concert.", "album_id": "72157624538698347", "photo_flickr_id": "4865146200", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "44217", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were hundreds of people at the fourth of july concert .", "storylet_id": "221085"}], [{"original_text": "They had floats too!", "album_id": "72157624538698347", "photo_flickr_id": "4864537841", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "44217", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had floats too !", "storylet_id": "221086"}], [{"original_text": "I liked her voice.", "album_id": "72157624538698347", "photo_flickr_id": "4865175348", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "44217", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i liked her voice .", "storylet_id": "221087"}], [{"original_text": "He was okay.", "album_id": "72157624538698347", "photo_flickr_id": "4864585821", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "44217", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was okay .", "storylet_id": "221088"}], [{"original_text": "It was VERY HOT!", "album_id": "72157624538698347", "photo_flickr_id": "4864540041", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "44217", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was very hot !", "storylet_id": "221089"}], [{"original_text": "A lot of people attended the musical festival.", "album_id": "72157624538698347", "photo_flickr_id": "4865146200", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "44218", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a lot of people attended the musical festival .", "storylet_id": "221090"}], [{"original_text": "Why wouldn't they, with the hot air balloons!", "album_id": "72157624538698347", "photo_flickr_id": "4864529305", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "44218", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "why would n't they , with the hot air balloons !", "storylet_id": "221091"}], [{"original_text": "The country performers were a hit.", "album_id": "72157624538698347", "photo_flickr_id": "4864543867", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "44218", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the country performers were a hit .", "storylet_id": "221092"}], [{"original_text": "It was a husband wife band.", "album_id": "72157624538698347", "photo_flickr_id": "4865167128", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "44218", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a husband wife band .", "storylet_id": "221093"}], [{"original_text": "They sang together beautifully.", "album_id": "72157624538698347", "photo_flickr_id": "4864550179", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "44218", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they sang together beautifully .", "storylet_id": "221094"}], [{"original_text": "we went to the festival", "album_id": "72157624538698347", "photo_flickr_id": "4865146200", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44219", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the festival", "storylet_id": "221095"}], [{"original_text": "there were amazing hot air balloons ", "album_id": "72157624538698347", "photo_flickr_id": "4864537841", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44219", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were amazing hot air balloons", "storylet_id": "221096"}], [{"original_text": "there was amazing music ", "album_id": "72157624538698347", "photo_flickr_id": "4865175348", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44219", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was amazing music", "storylet_id": "221097"}], [{"original_text": "Ted Myers played his best songs", "album_id": "72157624538698347", "photo_flickr_id": "4864585821", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44219", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] myers played his best songs", "storylet_id": "221098"}], [{"original_text": "there were alot of people there", "album_id": "72157624538698347", "photo_flickr_id": "4864540041", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44219", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were alot of people there", "storylet_id": "221099"}], [{"original_text": "The balloon fair was the best thing in the world.", "album_id": "72157625323525250", "photo_flickr_id": "5150761608", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44220", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the balloon fair was the best thing in the world .", "storylet_id": "221100"}], [{"original_text": "There were character balloons that were fun to watch watch.", "album_id": "72157625323525250", "photo_flickr_id": "5150150833", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44220", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were character balloons that were fun to watch watch .", "storylet_id": "221101"}], [{"original_text": "Entertainment included local bands.", "album_id": "72157625323525250", "photo_flickr_id": "5148923300", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44220", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "entertainment included local bands .", "storylet_id": "221102"}], [{"original_text": "Everyone took videos and pictures to post on instagram.", "album_id": "72157625323525250", "photo_flickr_id": "5148318267", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44220", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone took videos and pictures to post on instagram .", "storylet_id": "221103"}], [{"original_text": "The carnival rides were so fun as well.", "album_id": "72157625323525250", "photo_flickr_id": "5150221462", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44220", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the carnival rides were so fun as well .", "storylet_id": "221104"}], [{"original_text": "I spotted one fine brown horse from the sideline.", "album_id": "72157625323525250", "photo_flickr_id": "5150761110", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44221", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spotted one fine brown horse from the sideline .", "storylet_id": "221105"}], [{"original_text": "Each of the contestants walked their horses in order.", "album_id": "72157625323525250", "photo_flickr_id": "5150762902", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44221", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each of the contestants walked their horses in order .", "storylet_id": "221106"}], [{"original_text": "Some men in suits regulated the event.", "album_id": "72157625323525250", "photo_flickr_id": "5150153485", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44221", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some men in suits regulated the event .", "storylet_id": "221107"}], [{"original_text": "The set up and stage was marvelous and luxurious. ", "album_id": "72157625323525250", "photo_flickr_id": "5150765562", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44221", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the set up and stage was marvelous and luxurious .", "storylet_id": "221108"}], [{"original_text": "I knew for sure that this horse was going to win something.", "album_id": "72157625323525250", "photo_flickr_id": "5150222926", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44221", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i knew for sure that this horse was going to win something .", "storylet_id": "221109"}], [{"original_text": "I took Speeding Cousin Lamprey to her first horse show today.", "album_id": "72157625323525250", "photo_flickr_id": "5150761608", "setting": "last-3-pick-old-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "44222", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took speeding cousin lamprey to her first horse show today .", "storylet_id": "221110"}], [{"original_text": "Here she is without her number on.", "album_id": "72157625323525250", "photo_flickr_id": "5150150833", "setting": "last-3-pick-old-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "44222", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here she is without her number on .", "storylet_id": "221111"}], [{"original_text": "First on the stage was some tough competition, Gold Farm.", "album_id": "72157625323525250", "photo_flickr_id": "5148923300", "setting": "last-3-pick-old-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "44222", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "first on the stage was some tough competition , gold farm .", "storylet_id": "221112"}], [{"original_text": "Lucky Strike of New Orleans did not do quite as well.", "album_id": "72157625323525250", "photo_flickr_id": "5148318267", "setting": "last-3-pick-old-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "44222", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "lucky strike of location location did not do quite as well .", "storylet_id": "221113"}], [{"original_text": "Then it was my turn. I don't think I'll win, but it was fun.", "album_id": "72157625323525250", "photo_flickr_id": "5150221462", "setting": "last-3-pick-old-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "44222", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then it was my turn . i do n't think i 'll win , but it was fun .", "storylet_id": "221114"}], [{"original_text": "The horse show was in town. ", "album_id": "72157625323525250", "photo_flickr_id": "5150761608", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44223", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the horse show was in town .", "storylet_id": "221115"}], [{"original_text": "She watched as the horse were walked by. ", "album_id": "72157625323525250", "photo_flickr_id": "5150150833", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44223", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she watched as the horse were walked by .", "storylet_id": "221116"}], [{"original_text": "Some of the handlers were dressed to match to horses. ", "album_id": "72157625323525250", "photo_flickr_id": "5148923300", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44223", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the handlers were dressed to match to horses .", "storylet_id": "221117"}], [{"original_text": "Number 2 had magnificent form, she thought to herself. ", "album_id": "72157625323525250", "photo_flickr_id": "5148318267", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44223", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "number 2 had magnificent form , she thought to herself .", "storylet_id": "221118"}], [{"original_text": "Winners were about to be announced, which had always been her favorite part of the show. ", "album_id": "72157625323525250", "photo_flickr_id": "5150221462", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44223", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "winners were about to be announced , which had always been her favorite part of the show .", "storylet_id": "221119"}], [{"original_text": "The horse race was a few minutes away from starting.", "album_id": "72157625323525250", "photo_flickr_id": "5150761608", "setting": "last-3-pick-old-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "44224", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the horse race was a few minutes away from starting .", "storylet_id": "221120"}], [{"original_text": "Each contestant was carrying their horses to the starting line.", "album_id": "72157625323525250", "photo_flickr_id": "5150150833", "setting": "last-3-pick-old-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "44224", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each contestant was carrying their horses to the starting line .", "storylet_id": "221121"}], [{"original_text": "The horses had distinctive qualities, from the color of their hair", "album_id": "72157625323525250", "photo_flickr_id": "5148923300", "setting": "last-3-pick-old-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "44224", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the horses had distinctive qualities , from the color of their hair", "storylet_id": "221122"}], [{"original_text": "to their size and strength.", "album_id": "72157625323525250", "photo_flickr_id": "5148318267", "setting": "last-3-pick-old-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "44224", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to their size and strength .", "storylet_id": "221123"}], [{"original_text": "Before the race started, I made a $200 bet with several of my friends that the horse with the #7 tag will win.", "album_id": "72157625323525250", "photo_flickr_id": "5150221462", "setting": "last-3-pick-old-and-tell", "worker_id": "OLH55NP34MXSTCH", "story_id": "44224", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before the race started , i made a $ 200 bet with several of my friends that the horse with the # 7 tag will win .", "storylet_id": "221124"}], [{"original_text": "The train finally arrived in the city.", "album_id": "72157626210430218", "photo_flickr_id": "5503911608", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44225", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the train finally arrived in the city .", "storylet_id": "221125"}], [{"original_text": "It had passed by beautiful countryside to get there.", "album_id": "72157626210430218", "photo_flickr_id": "5503324375", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44225", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it had passed by beautiful countryside to get there .", "storylet_id": "221126"}], [{"original_text": "Wildlife was abundant in the country.", "album_id": "72157626210430218", "photo_flickr_id": "5503914936", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44225", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "wildlife was abundant in the country .", "storylet_id": "221127"}], [{"original_text": "The city was very crowded!", "album_id": "72157626210430218", "photo_flickr_id": "5503339501", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44225", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the city was very crowded !", "storylet_id": "221128"}], [{"original_text": "There were people everywhere, doing all sorts of things to entertain tourists.", "album_id": "72157626210430218", "photo_flickr_id": "5503341649", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44225", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were people everywhere , doing all sorts of things to entertain tourists .", "storylet_id": "221129"}], [{"original_text": "I saw a tower.", "album_id": "72157626210430218", "photo_flickr_id": "5503319861", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44226", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i saw a tower .", "storylet_id": "221130"}], [{"original_text": "It was in the city.", "album_id": "72157626210430218", "photo_flickr_id": "5503910918", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44226", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was in the city .", "storylet_id": "221131"}], [{"original_text": "I then took a train.", "album_id": "72157626210430218", "photo_flickr_id": "5503911608", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44226", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i then took a train .", "storylet_id": "221132"}], [{"original_text": "To the lake.", "album_id": "72157626210430218", "photo_flickr_id": "5503323357", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44226", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "to the lake .", "storylet_id": "221133"}], [{"original_text": "And saw some ducks.", "album_id": "72157626210430218", "photo_flickr_id": "5503914936", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44226", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and saw some ducks .", "storylet_id": "221134"}], [{"original_text": "A train pulled through a quiet city.", "album_id": "72157626210430218", "photo_flickr_id": "5503911608", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44227", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a train pulled through a quiet city .", "storylet_id": "221135"}], [{"original_text": "The city had a lovely duck pond with a bridge over it.", "album_id": "72157626210430218", "photo_flickr_id": "5503324375", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44227", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city had a lovely duck pond with a bridge over it .", "storylet_id": "221136"}], [{"original_text": "A duck was wandering along the banks of the pond.", "album_id": "72157626210430218", "photo_flickr_id": "5503914936", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44227", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a duck was wandering along the banks of the pond .", "storylet_id": "221137"}], [{"original_text": "People in the town were milling about for a town event.", "album_id": "72157626210430218", "photo_flickr_id": "5503339501", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44227", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people in the town were milling about for a town event .", "storylet_id": "221138"}], [{"original_text": "There was one man carrying a large drum.", "album_id": "72157626210430218", "photo_flickr_id": "5503341649", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44227", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was one man carrying a large drum .", "storylet_id": "221139"}], [{"original_text": "We went to a few places today. The trainyard for one.", "album_id": "72157626210430218", "photo_flickr_id": "5503911608", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44228", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a few places today . the trainyard for one .", "storylet_id": "221140"}], [{"original_text": "Next we went to the park, where we saw some ducks!", "album_id": "72157626210430218", "photo_flickr_id": "5503324375", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44228", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next we went to the park , where we saw some ducks !", "storylet_id": "221141"}], [{"original_text": "These two were a riot. We want to invite them to the next party!", "album_id": "72157626210430218", "photo_flickr_id": "5503914936", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44228", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these two were a riot . we want to invite them to the next party !", "storylet_id": "221142"}], [{"original_text": "Afterwards we went to the city, where some parade was going on.", "album_id": "72157626210430218", "photo_flickr_id": "5503339501", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44228", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards we went to the city , where some parade was going on .", "storylet_id": "221143"}], [{"original_text": "It was interesting. Afterwards we went home and ate dinner", "album_id": "72157626210430218", "photo_flickr_id": "5503341649", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44228", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was interesting . afterwards we went home and ate dinner", "storylet_id": "221144"}], [{"original_text": "We traveled by train to the town.", "album_id": "72157626210430218", "photo_flickr_id": "5503911608", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44229", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we traveled by train to the town .", "storylet_id": "221145"}], [{"original_text": "Then we came to a small pond in the park.", "album_id": "72157626210430218", "photo_flickr_id": "5503324375", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44229", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we came to a small pond in the park .", "storylet_id": "221146"}], [{"original_text": "There were many geese around.", "album_id": "72157626210430218", "photo_flickr_id": "5503914936", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44229", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many geese around .", "storylet_id": "221147"}], [{"original_text": "When we came to the town there were many people.", "album_id": "72157626210430218", "photo_flickr_id": "5503339501", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44229", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we came to the town there were many people .", "storylet_id": "221148"}], [{"original_text": "There was also a marching band that marched down the street.", "album_id": "72157626210430218", "photo_flickr_id": "5503341649", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44229", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was also a marching band that marched down the street .", "storylet_id": "221149"}], [{"original_text": "Today was the Gay Pride parade.", "album_id": "72157626211720512", "photo_flickr_id": "5504460124", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44230", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the [female] pride parade .", "storylet_id": "221150"}], [{"original_text": "Wonder Woman must have a lot of sisters.", "album_id": "72157626211720512", "photo_flickr_id": "5504451496", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44230", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "wonder woman must have a lot of sisters .", "storylet_id": "221151"}], [{"original_text": "The drum line was awesome.", "album_id": "72157626211720512", "photo_flickr_id": "5504454214", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44230", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the drum line was awesome .", "storylet_id": "221152"}], [{"original_text": "The floats were spectacular.", "album_id": "72157626211720512", "photo_flickr_id": "5504457148", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44230", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the floats were spectacular .", "storylet_id": "221153"}], [{"original_text": "Three cheers for the same sex marriage ruling by the Supreme court!", "album_id": "72157626211720512", "photo_flickr_id": "5503870887", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44230", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "three cheers for the same sex marriage ruling by the supreme court !", "storylet_id": "221154"}], [{"original_text": "The race was great.", "album_id": "72157626211720512", "photo_flickr_id": "5504450918", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44231", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the race was great .", "storylet_id": "221155"}], [{"original_text": "A lot of characters were represented.", "album_id": "72157626211720512", "photo_flickr_id": "5504451496", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44231", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of characters were represented .", "storylet_id": "221156"}], [{"original_text": "The crowds grew.", "album_id": "72157626211720512", "photo_flickr_id": "5504452198", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44231", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowds grew .", "storylet_id": "221157"}], [{"original_text": "The sun was out and it was beautiful.", "album_id": "72157626211720512", "photo_flickr_id": "5503862107", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44231", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sun was out and it was beautiful .", "storylet_id": "221158"}], [{"original_text": "The dummers drummed along.", "album_id": "72157626211720512", "photo_flickr_id": "5504453500", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44231", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dummers drummed along .", "storylet_id": "221159"}], [{"original_text": "A town was having a festival.", "album_id": "72157626211720512", "photo_flickr_id": "5504450918", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44232", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a town was having a festival .", "storylet_id": "221160"}], [{"original_text": "There were some humorous parade floats. ", "album_id": "72157626211720512", "photo_flickr_id": "5504451496", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44232", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were some humorous parade floats .", "storylet_id": "221161"}], [{"original_text": " People were walking about, seeing the sights.", "album_id": "72157626211720512", "photo_flickr_id": "5504452198", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44232", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people were walking about , seeing the sights .", "storylet_id": "221162"}], [{"original_text": "Everyone was having a great time.", "album_id": "72157626211720512", "photo_flickr_id": "5503862107", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44232", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was having a great time .", "storylet_id": "221163"}], [{"original_text": "A band was also playing.", "album_id": "72157626211720512", "photo_flickr_id": "5504453500", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44232", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a band was also playing .", "storylet_id": "221164"}], [{"original_text": "The annual parade is growing each and every year. ", "album_id": "72157626211720512", "photo_flickr_id": "5504450918", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44233", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the annual parade is growing each and every year .", "storylet_id": "221165"}], [{"original_text": "I found this parade entry to be quite entertaining. ", "album_id": "72157626211720512", "photo_flickr_id": "5504451496", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44233", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i found this parade entry to be quite entertaining .", "storylet_id": "221166"}], [{"original_text": "The narrow roads were filled with people. ", "album_id": "72157626211720512", "photo_flickr_id": "5504452198", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44233", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the narrow roads were filled with people .", "storylet_id": "221167"}], [{"original_text": "It was so hot, that some of the parade watchers moved their party to the beach. ", "album_id": "72157626211720512", "photo_flickr_id": "5503862107", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44233", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was so hot , that some of the parade watchers moved their party to the beach .", "storylet_id": "221168"}], [{"original_text": "As the final parade entry passed, the crowd was pleased. ", "album_id": "72157626211720512", "photo_flickr_id": "5504453500", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44233", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the final parade entry passed , the crowd was pleased .", "storylet_id": "221169"}], [{"original_text": "it was a sunny day. ", "album_id": "72157626211720512", "photo_flickr_id": "5504460124", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44234", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a sunny day .", "storylet_id": "221170"}], [{"original_text": "a perfect day for a parade. we saw so many different things.", "album_id": "72157626211720512", "photo_flickr_id": "5504451496", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44234", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a perfect day for a parade . we saw so many different things .", "storylet_id": "221171"}], [{"original_text": "cross dressing white guys, and drummers beating out a tribal rhythm.", "album_id": "72157626211720512", "photo_flickr_id": "5504454214", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44234", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "cross dressing white guys , and drummers beating out a tribal rhythm .", "storylet_id": "221172"}], [{"original_text": "there where many floats. some where big and some where small.", "album_id": "72157626211720512", "photo_flickr_id": "5504457148", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44234", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there where many floats . some where big and some where small .", "storylet_id": "221173"}], [{"original_text": "the crowds where thick with people. almost everyone had something festive about them.", "album_id": "72157626211720512", "photo_flickr_id": "5503870887", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44234", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the crowds where thick with people . almost everyone had something festive about them .", "storylet_id": "221174"}], [{"original_text": "The parade was very exciting yesterday.", "album_id": "72157626211952048", "photo_flickr_id": "5504551014", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44235", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parade was very exciting yesterday .", "storylet_id": "221175"}], [{"original_text": "There were many beautiful floats there.", "album_id": "72157626211952048", "photo_flickr_id": "5504551336", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44235", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many beautiful floats there .", "storylet_id": "221176"}], [{"original_text": "I had a great time watching them.", "album_id": "72157626211952048", "photo_flickr_id": "5503962973", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44235", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time watching them .", "storylet_id": "221177"}], [{"original_text": "I took a lot of pictures.", "album_id": "72157626211952048", "photo_flickr_id": "5504553790", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44235", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i took a lot of pictures .", "storylet_id": "221178"}], [{"original_text": "I hope there is another parade next year.", "album_id": "72157626211952048", "photo_flickr_id": "5503963381", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44235", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope there is another parade next year .", "storylet_id": "221179"}], [{"original_text": "We watched a Mardi Gras parade this weekend.", "album_id": "72157626211952048", "photo_flickr_id": "5504552828", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "44236", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we watched a mardi gras parade this weekend .", "storylet_id": "221180"}], [{"original_text": "Folks were wearing beads to celebrate.", "album_id": "72157626211952048", "photo_flickr_id": "5503964343", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "44236", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "folks were wearing beads to celebrate .", "storylet_id": "221181"}], [{"original_text": "They had the special cake too.", "album_id": "72157626211952048", "photo_flickr_id": "5503975129", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "44236", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had the special cake too .", "storylet_id": "221182"}], [{"original_text": "There were lots of floats passing by.", "album_id": "72157626211952048", "photo_flickr_id": "5503961215", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "44236", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were lots of floats passing by .", "storylet_id": "221183"}], [{"original_text": "All of them were very colorful, and had music playing.", "album_id": "72157626211952048", "photo_flickr_id": "5504565940", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "44236", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of them were very colorful , and had music playing .", "storylet_id": "221184"}], [{"original_text": "There were quite a few interesting floats at the parade.", "album_id": "72157626211952048", "photo_flickr_id": "5504552828", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44237", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were quite a few interesting floats at the parade .", "storylet_id": "221185"}], [{"original_text": "One man sang while the fair went on.", "album_id": "72157626211952048", "photo_flickr_id": "5503964343", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44237", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one man sang while the fair went on .", "storylet_id": "221186"}], [{"original_text": "We ate some cake in celebration of the event.", "album_id": "72157626211952048", "photo_flickr_id": "5503975129", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44237", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we ate some cake in celebration of the event .", "storylet_id": "221187"}], [{"original_text": "There was lots of music and fun.", "album_id": "72157626211952048", "photo_flickr_id": "5503961215", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44237", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was lots of music and fun .", "storylet_id": "221188"}], [{"original_text": "Many people danced and shared various celebrations. ", "album_id": "72157626211952048", "photo_flickr_id": "5504565940", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44237", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many people danced and shared various celebrations .", "storylet_id": "221189"}], [{"original_text": "Everyone was gathered outside for the town parade.", "album_id": "72157626211952048", "photo_flickr_id": "5504551014", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "44238", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was gathered outside for the town parade .", "storylet_id": "221190"}], [{"original_text": "The crowd was cheering as the floats passed by.", "album_id": "72157626211952048", "photo_flickr_id": "5504551336", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "44238", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd was cheering as the floats passed by .", "storylet_id": "221191"}], [{"original_text": "There were a lot of people watching so we decided to move.", "album_id": "72157626211952048", "photo_flickr_id": "5503962973", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "44238", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of people watching so we decided to move .", "storylet_id": "221192"}], [{"original_text": "We found a new place and got some great photographs of the floats.", "album_id": "72157626211952048", "photo_flickr_id": "5504553790", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "44238", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found a new place and got some great photographs of the floats .", "storylet_id": "221193"}], [{"original_text": "We had a great time at the parade, I can't wait to go next year. ", "album_id": "72157626211952048", "photo_flickr_id": "5503963381", "setting": "last-3-pick-old-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "44238", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time at the parade , i ca n't wait to go next year .", "storylet_id": "221194"}], [{"original_text": "the people are watch the parade go bye what a beautiful flow", "album_id": "72157626211952048", "photo_flickr_id": "5504552828", "setting": "last-3-pick-old-and-tell", "worker_id": "FRB8AQP0P9ZHRR9", "story_id": "44239", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people are watch the parade go bye what a beautiful flow", "storylet_id": "221195"}], [{"original_text": "there is a man selling lot of necklace there", "album_id": "72157626211952048", "photo_flickr_id": "5503964343", "setting": "last-3-pick-old-and-tell", "worker_id": "FRB8AQP0P9ZHRR9", "story_id": "44239", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is a man selling lot of necklace there", "storylet_id": "221196"}], [{"original_text": "there is some food there also", "album_id": "72157626211952048", "photo_flickr_id": "5503975129", "setting": "last-3-pick-old-and-tell", "worker_id": "FRB8AQP0P9ZHRR9", "story_id": "44239", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is some food there also", "storylet_id": "221197"}], [{"original_text": "the people are watch the flow go bye and taking picture", "album_id": "72157626211952048", "photo_flickr_id": "5503961215", "setting": "last-3-pick-old-and-tell", "worker_id": "FRB8AQP0P9ZHRR9", "story_id": "44239", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people are watch the flow go bye and taking picture", "storylet_id": "221198"}], [{"original_text": "another flow with men with white hat on passing bye", "album_id": "72157626211952048", "photo_flickr_id": "5504565940", "setting": "last-3-pick-old-and-tell", "worker_id": "FRB8AQP0P9ZHRR9", "story_id": "44239", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "another flow with men with white hat on passing bye", "storylet_id": "221199"}], [{"original_text": "Today was the day.", "album_id": "72157624208773032", "photo_flickr_id": "4672053802", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44240", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day .", "storylet_id": "221200"}], [{"original_text": "The big parade.", "album_id": "72157624208773032", "photo_flickr_id": "4672055000", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44240", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the big parade .", "storylet_id": "221201"}], [{"original_text": "Everyone was there.", "album_id": "72157624208773032", "photo_flickr_id": "4672056396", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44240", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was there .", "storylet_id": "221202"}], [{"original_text": "The costumes were great.", "album_id": "72157624208773032", "photo_flickr_id": "4671432875", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44240", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the costumes were great .", "storylet_id": "221203"}], [{"original_text": "It was very festive.", "album_id": "72157624208773032", "photo_flickr_id": "4671435223", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44240", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was very festive .", "storylet_id": "221204"}], [{"original_text": "There was a parade in town today.", "album_id": "72157624208773032", "photo_flickr_id": "4672053802", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44241", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a parade in town today .", "storylet_id": "221205"}], [{"original_text": "They had this big bull statue in the town square.", "album_id": "72157624208773032", "photo_flickr_id": "4672055000", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44241", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had this big bull statue in the town square .", "storylet_id": "221206"}], [{"original_text": "People even dressed up in these really cool costumes.", "album_id": "72157624208773032", "photo_flickr_id": "4673808955", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44241", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people even dressed up in these really cool costumes .", "storylet_id": "221207"}], [{"original_text": "However, some of the costumes were really freaky.", "album_id": "72157624208773032", "photo_flickr_id": "4673816365", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44241", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "however , some of the costumes were really freaky .", "storylet_id": "221208"}], [{"original_text": "All in all, everyone seemed like they had a great time.", "album_id": "72157624208773032", "photo_flickr_id": "4674442514", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44241", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all in all , everyone seemed like they had a great time .", "storylet_id": "221209"}], [{"original_text": "There was a parade going through a town.", "album_id": "72157624208773032", "photo_flickr_id": "4672053802", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44242", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a parade going through a town .", "storylet_id": "221210"}], [{"original_text": "The town was full of interesting art.", "album_id": "72157624208773032", "photo_flickr_id": "4672055000", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44242", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the town was full of interesting art .", "storylet_id": "221211"}], [{"original_text": "People in costumes came marching down the road.", "album_id": "72157624208773032", "photo_flickr_id": "4672056396", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44242", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people in costumes came marching down the road .", "storylet_id": "221212"}], [{"original_text": "People had colorful outfits.", "album_id": "72157624208773032", "photo_flickr_id": "4671432875", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44242", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people had colorful outfits .", "storylet_id": "221213"}], [{"original_text": "Some were very unique and odd. ", "album_id": "72157624208773032", "photo_flickr_id": "4671435223", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44242", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some were very unique and odd .", "storylet_id": "221214"}], [{"original_text": "the streets where packed with people this year.", "album_id": "72157624208773032", "photo_flickr_id": "4672053802", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44243", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the streets where packed with people this year .", "storylet_id": "221215"}], [{"original_text": " carnival was in full swing. they even had giant bull heads roaming around.", "album_id": "72157624208773032", "photo_flickr_id": "4672055000", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44243", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "carnival was in full swing . they even had giant bull heads roaming around .", "storylet_id": "221216"}], [{"original_text": "some of the groups had themes. ", "album_id": "72157624208773032", "photo_flickr_id": "4672056396", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44243", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the groups had themes .", "storylet_id": "221217"}], [{"original_text": "others where just colors, but all of them looked really neat.", "album_id": "72157624208773032", "photo_flickr_id": "4671432875", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44243", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others where just colors , but all of them looked really neat .", "storylet_id": "221218"}], [{"original_text": "some people where solo. they always had the best costumes.", "album_id": "72157624208773032", "photo_flickr_id": "4671435223", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44243", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people where solo . they always had the best costumes .", "storylet_id": "221219"}], [{"original_text": "Today was the day of the bull festival!", "album_id": "72157624208773032", "photo_flickr_id": "4672053802", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44244", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day of the bull festival !", "storylet_id": "221220"}], [{"original_text": "We had our mascot here. Bobby Bull. He is fake though.", "album_id": "72157624208773032", "photo_flickr_id": "4672055000", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44244", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had our mascot here . [male] bull . he is fake though .", "storylet_id": "221221"}], [{"original_text": "We had a lot of interesting people come in from the parade.", "album_id": "72157624208773032", "photo_flickr_id": "4672056396", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44244", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a lot of interesting people come in from the parade .", "storylet_id": "221222"}], [{"original_text": "A lot of people also wore matching outfits.", "album_id": "72157624208773032", "photo_flickr_id": "4671432875", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44244", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a lot of people also wore matching outfits .", "storylet_id": "221223"}], [{"original_text": "This guy was so out of place though..", "album_id": "72157624208773032", "photo_flickr_id": "4671435223", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44244", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this guy was so out of place though..", "storylet_id": "221224"}], [{"original_text": "The Guadeloupe Parade happened this week.", "album_id": "72157627607253006", "photo_flickr_id": "6125456527", "setting": "first-2-pick-and-tell", "worker_id": "W0PBT9EDM5A6019", "story_id": "44245", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the location location happened this week .", "storylet_id": "221225"}], [{"original_text": "It was a huge event with tons of different costumes and participants gallivanting throughout the streets. ", "album_id": "72157627607253006", "photo_flickr_id": "6125474445", "setting": "first-2-pick-and-tell", "worker_id": "W0PBT9EDM5A6019", "story_id": "44245", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a huge event with tons of different costumes and participants gallivanting throughout the streets .", "storylet_id": "221226"}], [{"original_text": "Some were a bit liberal with their costumes.", "album_id": "72157627607253006", "photo_flickr_id": "6126021776", "setting": "first-2-pick-and-tell", "worker_id": "W0PBT9EDM5A6019", "story_id": "44245", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some were a bit liberal with their costumes .", "storylet_id": "221227"}], [{"original_text": "Others were a bit more rambunctious.", "album_id": "72157627607253006", "photo_flickr_id": "6119787591", "setting": "first-2-pick-and-tell", "worker_id": "W0PBT9EDM5A6019", "story_id": "44245", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others were a bit more rambunctious .", "storylet_id": "221228"}], [{"original_text": "The parade turned party that lasted well into the night.", "album_id": "72157627607253006", "photo_flickr_id": "6119703333", "setting": "first-2-pick-and-tell", "worker_id": "W0PBT9EDM5A6019", "story_id": "44245", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the parade turned party that lasted well into the night .", "storylet_id": "221229"}], [{"original_text": "The final checklist for the graduation ceremony was completed.", "album_id": "72157627607253006", "photo_flickr_id": "6126000718", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "44246", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the final checklist for the graduation ceremony was completed .", "storylet_id": "221230"}], [{"original_text": "Most of the faculty bothered to show up.", "album_id": "72157627607253006", "photo_flickr_id": "6126003462", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "44246", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "most of the faculty bothered to show up .", "storylet_id": "221231"}], [{"original_text": "The president gave a typically boring speech.", "album_id": "72157627607253006", "photo_flickr_id": "6126006402", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "44246", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the president gave a typically boring speech .", "storylet_id": "221232"}], [{"original_text": "Finally, the paper is in my hand.", "album_id": "72157627607253006", "photo_flickr_id": "6125461877", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "44246", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally , the paper is in my hand .", "storylet_id": "221233"}], [{"original_text": "Meanwhile I want to get a PhD from the school that guy went to -- fancy!", "album_id": "72157627607253006", "photo_flickr_id": "6126008956", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "44246", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "meanwhile i want to get a phd from the school that guy went to -- fancy !", "storylet_id": "221234"}], [{"original_text": "It was the annual Guadeloupe parade.", "album_id": "72157627607253006", "photo_flickr_id": "6125456527", "setting": "last-3-pick-old-and-tell", "worker_id": "2791W4O702VA8XR", "story_id": "44247", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the annual location parade .", "storylet_id": "221235"}], [{"original_text": "A group of good friends decided to participate this year.", "album_id": "72157627607253006", "photo_flickr_id": "6125474445", "setting": "last-3-pick-old-and-tell", "worker_id": "2791W4O702VA8XR", "story_id": "44247", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a group of good friends decided to participate this year .", "storylet_id": "221236"}], [{"original_text": "They marched down the street leading a huge line of eclectic people.", "album_id": "72157627607253006", "photo_flickr_id": "6126021776", "setting": "last-3-pick-old-and-tell", "worker_id": "2791W4O702VA8XR", "story_id": "44247", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they marched down the street leading a huge line of eclectic people .", "storylet_id": "221237"}], [{"original_text": "There was even a woman in a peacock looking costume.", "album_id": "72157627607253006", "photo_flickr_id": "6119787591", "setting": "last-3-pick-old-and-tell", "worker_id": "2791W4O702VA8XR", "story_id": "44247", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was even a woman in a peacock looking costume .", "storylet_id": "221238"}], [{"original_text": "It was so much fun they had to continue the party at home.", "album_id": "72157627607253006", "photo_flickr_id": "6119703333", "setting": "last-3-pick-old-and-tell", "worker_id": "2791W4O702VA8XR", "story_id": "44247", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was so much fun they had to continue the party at home .", "storylet_id": "221239"}], [{"original_text": "Today there was a festival in the French West Indies.", "album_id": "72157627607253006", "photo_flickr_id": "6125456527", "setting": "last-3-pick-old-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "44248", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today there was a festival in the french location location .", "storylet_id": "221240"}], [{"original_text": "They had a parade with colorful people.", "album_id": "72157627607253006", "photo_flickr_id": "6125474445", "setting": "last-3-pick-old-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "44248", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a parade with colorful people .", "storylet_id": "221241"}], [{"original_text": "The parade lasted for a long time, spilling into different areas.", "album_id": "72157627607253006", "photo_flickr_id": "6126021776", "setting": "last-3-pick-old-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "44248", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the parade lasted for a long time , spilling into different areas .", "storylet_id": "221242"}], [{"original_text": "Beautiful women were walking everywhere.", "album_id": "72157627607253006", "photo_flickr_id": "6119787591", "setting": "last-3-pick-old-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "44248", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "beautiful women were walking everywhere .", "storylet_id": "221243"}], [{"original_text": "The party lasted well into the night.", "album_id": "72157627607253006", "photo_flickr_id": "6119703333", "setting": "last-3-pick-old-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "44248", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the party lasted well into the night .", "storylet_id": "221244"}], [{"original_text": "The French West Indies had a parade.", "album_id": "72157627607253006", "photo_flickr_id": "6125456527", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44249", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the french location location had a parade .", "storylet_id": "221245"}], [{"original_text": "Many people were in attendance.", "album_id": "72157627607253006", "photo_flickr_id": "6125474445", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44249", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people were in attendance .", "storylet_id": "221246"}], [{"original_text": "Everyone was dressed up and having a blast.", "album_id": "72157627607253006", "photo_flickr_id": "6126021776", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44249", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was dressed up and having a blast .", "storylet_id": "221247"}], [{"original_text": "Some peoples outfits were more extreme than others.", "album_id": "72157627607253006", "photo_flickr_id": "6119787591", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44249", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some peoples outfits were more extreme than others .", "storylet_id": "221248"}], [{"original_text": "People of all different backgrounds showed up and joined together for a fun time. ", "album_id": "72157627607253006", "photo_flickr_id": "6119703333", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44249", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people of all different backgrounds showed up and joined together for a fun time .", "storylet_id": "221249"}], [{"original_text": "We got off the plane and immediately checked into the hotel.", "album_id": "72157624545184951", "photo_flickr_id": "4867269367", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44250", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got off the plane and immediately checked into the hotel .", "storylet_id": "221250"}], [{"original_text": "And, then we were off to view the city.", "album_id": "72157624545184951", "photo_flickr_id": "4867886540", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44250", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and , then we were off to view the city .", "storylet_id": "221251"}], [{"original_text": "We started the visit with the beautiful tower.", "album_id": "72157624545184951", "photo_flickr_id": "4867270785", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44250", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we started the visit with the beautiful tower .", "storylet_id": "221252"}], [{"original_text": "However, then the rain began...", "album_id": "72157624545184951", "photo_flickr_id": "4868349599", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44250", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "however , then the rain began ...", "storylet_id": "221253"}], [{"original_text": "And, we rushed back to our hotel and rested for the night.", "album_id": "72157624545184951", "photo_flickr_id": "4867271803", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44250", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , we rushed back to our hotel and rested for the night .", "storylet_id": "221254"}], [{"original_text": "I went on vacation last weekend.", "album_id": "72157624545184951", "photo_flickr_id": "4867269367", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44251", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on vacation last weekend .", "storylet_id": "221255"}], [{"original_text": "The buildings were all very old and beautiful.", "album_id": "72157624545184951", "photo_flickr_id": "4867269623", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44251", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the buildings were all very old and beautiful .", "storylet_id": "221256"}], [{"original_text": "I stayed at a great resort.", "album_id": "72157624545184951", "photo_flickr_id": "4867269923", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44251", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i stayed at a great resort .", "storylet_id": "221257"}], [{"original_text": "There were very few cars around.", "album_id": "72157624545184951", "photo_flickr_id": "4867886540", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44251", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were very few cars around .", "storylet_id": "221258"}], [{"original_text": "I had a great time there.", "album_id": "72157624545184951", "photo_flickr_id": "4867270785", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44251", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time there .", "storylet_id": "221259"}], [{"original_text": "We were so excited to be on holiday that we started it off by dancing on the balcony of our hotel.", "album_id": "72157624545184951", "photo_flickr_id": "4867269367", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "44252", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were so excited to be on holiday that we started it off by dancing on the balcony of our hotel .", "storylet_id": "221260"}], [{"original_text": "We rented a van so we could explore the streets of the town we were staying in.", "album_id": "72157624545184951", "photo_flickr_id": "4867886540", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "44252", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we rented a van so we could explore the streets of the town we were staying in .", "storylet_id": "221261"}], [{"original_text": "The castle that we passed was gorgeous and majestic.", "album_id": "72157624545184951", "photo_flickr_id": "4867270785", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "44252", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the castle that we passed was gorgeous and majestic .", "storylet_id": "221262"}], [{"original_text": "The buildings where the commoners live are also very nice.", "album_id": "72157624545184951", "photo_flickr_id": "4868349599", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "44252", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the buildings where the commoners live are also very nice .", "storylet_id": "221263"}], [{"original_text": "We are so enamored with this town that we are thinking of getting an apartment in this building!", "album_id": "72157624545184951", "photo_flickr_id": "4867271803", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "44252", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we are so enamored with this town that we are thinking of getting an apartment in this building !", "storylet_id": "221264"}], [{"original_text": "It was a nice day in a beautiful city.", "album_id": "72157624545184951", "photo_flickr_id": "4867269367", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44253", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a nice day in a beautiful city .", "storylet_id": "221265"}], [{"original_text": "The streets were paved with stones and lined with bright trees.", "album_id": "72157624545184951", "photo_flickr_id": "4867886540", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44253", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the streets were paved with stones and lined with bright trees .", "storylet_id": "221266"}], [{"original_text": "A beautiful church stood in the middle of the town.", "album_id": "72157624545184951", "photo_flickr_id": "4867270785", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44253", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a beautiful church stood in the middle of the town .", "storylet_id": "221267"}], [{"original_text": "There were also interesting statues. ", "album_id": "72157624545184951", "photo_flickr_id": "4868349599", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44253", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also interesting statues .", "storylet_id": "221268"}], [{"original_text": "One building in town was very regal and full of windows. ", "album_id": "72157624545184951", "photo_flickr_id": "4867271803", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44253", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one building in town was very regal and full of windows .", "storylet_id": "221269"}], [{"original_text": "The name of this restaurant let me know that I had to eat there.", "album_id": "72157624545184951", "photo_flickr_id": "4867269367", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44254", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the name of this restaurant let me know that i had to eat there .", "storylet_id": "221270"}], [{"original_text": "The floor detail in the front of this building had me very enticed. ", "album_id": "72157624545184951", "photo_flickr_id": "4867886540", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44254", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the floor detail in the front of this building had me very enticed .", "storylet_id": "221271"}], [{"original_text": "The design of this building was simply amazing. ", "album_id": "72157624545184951", "photo_flickr_id": "4867270785", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44254", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the design of this building was simply amazing .", "storylet_id": "221272"}], [{"original_text": "The streets looked like they were driving on water. ", "album_id": "72157624545184951", "photo_flickr_id": "4868349599", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44254", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the streets looked like they were driving on water .", "storylet_id": "221273"}], [{"original_text": "It amazes me how the multiple windows are so symmetrical. ", "album_id": "72157624545184951", "photo_flickr_id": "4867271803", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44254", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it amazes me how the multiple windows are so symmetrical .", "storylet_id": "221274"}], [{"original_text": "There were quite a few interesting hats at the parade.", "album_id": "72157626098619757", "photo_flickr_id": "5509763148", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44255", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were quite a few interesting hats at the parade .", "storylet_id": "221275"}], [{"original_text": "One man waved a red umbrella in the air.", "album_id": "72157626098619757", "photo_flickr_id": "5509170349", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44255", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one man waved a red umbrella in the air .", "storylet_id": "221276"}], [{"original_text": "He must have known the red bus was nearby.", "album_id": "72157626098619757", "photo_flickr_id": "5509181949", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44255", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he must have known the red bus was nearby .", "storylet_id": "221277"}], [{"original_text": "Vehicles tried to advance with people in front of them.", "album_id": "72157626098619757", "photo_flickr_id": "5509791162", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44255", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "vehicles tried to advance with people in front of them .", "storylet_id": "221278"}], [{"original_text": "There was so much excitement in this street performance.", "album_id": "72157626098619757", "photo_flickr_id": "5509795970", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44255", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was so much excitement in this street performance .", "storylet_id": "221279"}], [{"original_text": "The parade had floats,", "album_id": "72157626098619757", "photo_flickr_id": "5509756584", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "44256", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parade had floats ,", "storylet_id": "221280"}], [{"original_text": "and marching bands playing their tunes.", "album_id": "72157626098619757", "photo_flickr_id": "5509809774", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "44256", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and marching bands playing their tunes .", "storylet_id": "221281"}], [{"original_text": "Vendors sold street food to the spectators.", "album_id": "72157626098619757", "photo_flickr_id": "5509715378", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "44256", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "vendors sold street food to the spectators .", "storylet_id": "221282"}], [{"original_text": "The crowd was accepting of everyone as they watched the parade come down the street.", "album_id": "72157626098619757", "photo_flickr_id": "5509206159", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "44256", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowd was accepting of everyone as they watched the parade come down the street .", "storylet_id": "221283"}], [{"original_text": "Mostly everyone had fun, including this couple who got closer together.", "album_id": "72157626098619757", "photo_flickr_id": "5509281993", "setting": "first-2-pick-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "44256", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mostly everyone had fun , including this couple who got closer together .", "storylet_id": "221284"}], [{"original_text": "This is a parade.", "album_id": "72157626098619757", "photo_flickr_id": "5509763148", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44257", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a parade .", "storylet_id": "221285"}], [{"original_text": "These people are watching the parade from their apartments.", "album_id": "72157626098619757", "photo_flickr_id": "5509170349", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44257", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these people are watching the parade from their apartments .", "storylet_id": "221286"}], [{"original_text": "Busses full of people came to see the parade.", "album_id": "72157626098619757", "photo_flickr_id": "5509181949", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44257", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "busses full of people came to see the parade .", "storylet_id": "221287"}], [{"original_text": "This bus was actually in the parade.", "album_id": "72157626098619757", "photo_flickr_id": "5509791162", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44257", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this bus was actually in the parade .", "storylet_id": "221288"}], [{"original_text": "All types of people enjoyed and participated in the parade.", "album_id": "72157626098619757", "photo_flickr_id": "5509795970", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44257", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all types of people enjoyed and participated in the parade .", "storylet_id": "221289"}], [{"original_text": "Some of the school children chose to dress up and march in the parade.", "album_id": "72157626098619757", "photo_flickr_id": "5509763148", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44258", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some of the school children chose to dress up and march in the parade .", "storylet_id": "221290"}], [{"original_text": "This man's umbrella flipped inside out while he was watching the parade.", "album_id": "72157626098619757", "photo_flickr_id": "5509170349", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44258", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this man 's umbrella flipped inside out while he was watching the parade .", "storylet_id": "221291"}], [{"original_text": "This bus was all decked out to bring people to the parade.", "album_id": "72157626098619757", "photo_flickr_id": "5509181949", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44258", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this bus was all decked out to bring people to the parade .", "storylet_id": "221292"}], [{"original_text": "A float that was very well decorated for the parade.", "album_id": "72157626098619757", "photo_flickr_id": "5509791162", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44258", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a float that was very well decorated for the parade .", "storylet_id": "221293"}], [{"original_text": "The leading edge of the marching band in the parade.", "album_id": "72157626098619757", "photo_flickr_id": "5509795970", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44258", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the leading edge of the marching band in the parade .", "storylet_id": "221294"}], [{"original_text": "Many people showed up at the parade today.", "album_id": "72157626098619757", "photo_flickr_id": "5509756584", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "44259", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people showed up at the parade today .", "storylet_id": "221295"}], [{"original_text": "People were playing horns.", "album_id": "72157626098619757", "photo_flickr_id": "5509809774", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "44259", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people were playing horns .", "storylet_id": "221296"}], [{"original_text": "There was even food being passed out.", "album_id": "72157626098619757", "photo_flickr_id": "5509715378", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "44259", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was even food being passed out .", "storylet_id": "221297"}], [{"original_text": "It started to rain so some people brought umbrellas.", "album_id": "72157626098619757", "photo_flickr_id": "5509206159", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "44259", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it started to rain so some people brought umbrellas .", "storylet_id": "221298"}], [{"original_text": "People also got together to take many pictures.", "album_id": "72157626098619757", "photo_flickr_id": "5509281993", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "44259", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people also got together to take many pictures .", "storylet_id": "221299"}], [{"original_text": "It's Mardi Gras time and it's time to celebrate.", "album_id": "72157626228068442", "photo_flickr_id": "5510810907", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "44260", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's mardi gras time and it 's time to celebrate .", "storylet_id": "221300"}], [{"original_text": "There is lots for younger kids to do.", "album_id": "72157626228068442", "photo_flickr_id": "5510813679", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "44260", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is lots for younger kids to do .", "storylet_id": "221301"}], [{"original_text": "Older kids can make crafts.", "album_id": "72157626228068442", "photo_flickr_id": "5510811543", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "44260", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "older kids can make crafts .", "storylet_id": "221302"}], [{"original_text": "There is plenty of food to sample. This table is waiting for their meals.", "album_id": "72157626228068442", "photo_flickr_id": "5511413358", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "44260", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there is plenty of food to sample . this table is waiting for their meals .", "storylet_id": "221303"}], [{"original_text": "Even the youngest of kids can partake in the fun. It's nice that this is a family affair.", "album_id": "72157626228068442", "photo_flickr_id": "5511412456", "setting": "first-2-pick-and-tell", "worker_id": "08C7YE144A76SOI", "story_id": "44260", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the youngest of kids can partake in the fun . it 's nice that this is a family affair .", "storylet_id": "221304"}], [{"original_text": "Mardi gras for local residents of my town.To encourage young and old alike to come together.Proceeds went to the local senior center.", "album_id": "72157626228068442", "photo_flickr_id": "5510809599", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44261", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location gras for local residents of my town.to encourage young and old alike to come together.proceeds went to the local senior center .", "storylet_id": "221305"}], [{"original_text": "We all had the option to wear masks and necklaces.I choose to as it gives especially the setting and mood I think.", "album_id": "72157626228068442", "photo_flickr_id": "5510810907", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44261", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all had the option to wear masks and necklaces.i choose to as it gives especially the setting and mood i think .", "storylet_id": "221306"}], [{"original_text": "This was advertised on our school doors,but flyers were sent home with interested individuals.", "album_id": "72157626228068442", "photo_flickr_id": "5510812083", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44261", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was advertised on our school doors , but flyers were sent home with interested individuals .", "storylet_id": "221307"}], [{"original_text": "Small potluck of different foods maybe experience at real Mardi gras.", "album_id": "72157626228068442", "photo_flickr_id": "5511411028", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44261", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "small potluck of different foods maybe experience at real mardi gras .", "storylet_id": "221308"}], [{"original_text": "Everyone had a chance to learn a song and dance to the music.It is a lot harder then it looks playing an instrument.", "album_id": "72157626228068442", "photo_flickr_id": "5511412674", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44261", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a chance to learn a song and dance to the music.it is a lot harder then it looks playing an instrument .", "storylet_id": "221309"}], [{"original_text": "Many of my friend and family ate at the table.", "album_id": "72157626228068442", "photo_flickr_id": "5510809599", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44262", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many of my friend and family ate at the table .", "storylet_id": "221310"}], [{"original_text": "Some of the guests brought masks and took pictures.", "album_id": "72157626228068442", "photo_flickr_id": "5510810907", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44262", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the guests brought masks and took pictures .", "storylet_id": "221311"}], [{"original_text": "There was an awesome and engaging sign on the door.", "album_id": "72157626228068442", "photo_flickr_id": "5510812083", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44262", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was an awesome and engaging sign on the door .", "storylet_id": "221312"}], [{"original_text": "In the venue, there was plenty of food and help.", "album_id": "72157626228068442", "photo_flickr_id": "5511411028", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44262", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the venue , there was plenty of food and help .", "storylet_id": "221313"}], [{"original_text": "The music was entertaining and it was really fun.", "album_id": "72157626228068442", "photo_flickr_id": "5511412674", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44262", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the music was entertaining and it was really fun .", "storylet_id": "221314"}], [{"original_text": "this was a fun day called day of the kid. It was a day where the kid was the boss.", "album_id": "72157626228068442", "photo_flickr_id": "5510810907", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44263", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was a fun day called day of the kid . it was a day where the kid was the boss .", "storylet_id": "221315"}], [{"original_text": "Here we designed fridge magnets. These kids minds are so free.", "album_id": "72157626228068442", "photo_flickr_id": "5510813679", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44263", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here we designed fridge magnets . these kids minds are so free .", "storylet_id": "221316"}], [{"original_text": "Here we designed a whole table town, the town had dishes too added in so they could eat and play, how novel.", "album_id": "72157626228068442", "photo_flickr_id": "5510811543", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44263", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here we designed a whole table town , the town had dishes too added in so they could eat and play , how novel .", "storylet_id": "221317"}], [{"original_text": "Here we ate, what a wonderful table everyone thought.", "album_id": "72157626228068442", "photo_flickr_id": "5511413358", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44263", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here we ate , what a wonderful table everyone thought .", "storylet_id": "221318"}], [{"original_text": "Last but not least, this was a cute kid drummer and could he drum!", "album_id": "72157626228068442", "photo_flickr_id": "5511412456", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44263", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last but not least , this was a cute kid drummer and could he drum !", "storylet_id": "221319"}], [{"original_text": "The annual mascaraed party has come back to the community center.", "album_id": "72157626228068442", "photo_flickr_id": "5510810907", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44264", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the annual mascaraed party has come back to the community center .", "storylet_id": "221320"}], [{"original_text": "There will be all kinds of interesting activities including arts and crafts.", "album_id": "72157626228068442", "photo_flickr_id": "5510813679", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44264", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there will be all kinds of interesting activities including arts and crafts .", "storylet_id": "221321"}], [{"original_text": "It's always fun when the older kids participate as well.", "album_id": "72157626228068442", "photo_flickr_id": "5510811543", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44264", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's always fun when the older kids participate as well .", "storylet_id": "221322"}], [{"original_text": "A nice dinner is served after the activities.", "album_id": "72157626228068442", "photo_flickr_id": "5511413358", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44264", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a nice dinner is served after the activities .", "storylet_id": "221323"}], [{"original_text": "Then some wonderful instrument play for fun entertainment.", "album_id": "72157626228068442", "photo_flickr_id": "5511412456", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44264", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then some wonderful instrument play for fun entertainment .", "storylet_id": "221324"}], [{"original_text": "This is one of my shot glasses from Planet Hollywood. This one is from Myrtle Beach.", "album_id": "72157624340134097", "photo_flickr_id": "4780207779", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44265", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is one of my shot glasses from location location . this one is from location location .", "storylet_id": "221325"}], [{"original_text": "This one reminds me of the time we visited the aquarium.", "album_id": "72157624340134097", "photo_flickr_id": "4780207191", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44265", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one reminds me of the time we visited the aquarium .", "storylet_id": "221326"}], [{"original_text": "In New Orleans i got this glass at a souvenir shop.", "album_id": "72157624340134097", "photo_flickr_id": "4780203497", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44265", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in location location i got this glass at a souvenir shop .", "storylet_id": "221327"}], [{"original_text": "Las Vegas gave me this nice shot glass from one of the hotels.", "album_id": "72157624340134097", "photo_flickr_id": "4780199079", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44265", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "location location gave me this nice shot glass from one of the hotels .", "storylet_id": "221328"}], [{"original_text": "In Myrtle Beach I also picked up this Hard rock shot glass.", "album_id": "72157624340134097", "photo_flickr_id": "4780843078", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44265", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in location location i also picked up this hard rock shot glass .", "storylet_id": "221329"}], [{"original_text": "My shot glass collection starts with my A's baseball one. ", "album_id": "72157624340134097", "photo_flickr_id": "4780831308", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44266", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my shot glass collection starts with my a 's baseball one .", "storylet_id": "221330"}], [{"original_text": "I have one from when i was in the army.", "album_id": "72157624340134097", "photo_flickr_id": "4780838726", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44266", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i have one from when i was in the army .", "storylet_id": "221331"}], [{"original_text": "The third one is from my time in Lousiana as a broke merchant.", "album_id": "72157624340134097", "photo_flickr_id": "4780203497", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44266", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the third one is from my time in location as a broke merchant .", "storylet_id": "221332"}], [{"original_text": "This one my papaw gave me last march.", "album_id": "72157624340134097", "photo_flickr_id": "4780194689", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44266", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one my papaw gave me last march .", "storylet_id": "221333"}], [{"original_text": "This one was a gift from grandmammy.", "album_id": "72157624340134097", "photo_flickr_id": "4780193811", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44266", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this one was a gift from grandmammy .", "storylet_id": "221334"}], [{"original_text": "This person has a shot glass from Planet Hollywood.", "album_id": "72157624340134097", "photo_flickr_id": "4780207779", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "44267", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this person has a shot glass from location location .", "storylet_id": "221335"}], [{"original_text": "Great shot glass with the shark on the side.", "album_id": "72157624340134097", "photo_flickr_id": "4780207191", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "44267", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "great shot glass with the shark on the side .", "storylet_id": "221336"}], [{"original_text": "Someone went to New Orleans and brought back a shot glass.", "album_id": "72157624340134097", "photo_flickr_id": "4780203497", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "44267", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "someone went to location location and brought back a shot glass .", "storylet_id": "221337"}], [{"original_text": "What happens in Vegas stays in Vegas.", "album_id": "72157624340134097", "photo_flickr_id": "4780199079", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "44267", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what happens in location stays in location .", "storylet_id": "221338"}], [{"original_text": "A double shot glass is always appreciated.", "album_id": "72157624340134097", "photo_flickr_id": "4780843078", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "44267", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a double shot glass is always appreciated .", "storylet_id": "221339"}], [{"original_text": "He has a collection of mugs and glasses that mean something to him.", "album_id": "72157624340134097", "photo_flickr_id": "4780831308", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44268", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he has a collection of mugs and glasses that mean something to him .", "storylet_id": "221340"}], [{"original_text": "For example this mug is from the Grand Canyon.", "album_id": "72157624340134097", "photo_flickr_id": "4780838726", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44268", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "for example this mug is from the location location .", "storylet_id": "221341"}], [{"original_text": "He also loves to think about the trip he took to New Orleans Louisiana.", "album_id": "72157624340134097", "photo_flickr_id": "4780203497", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44268", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he also loves to think about the trip he took to location location location .", "storylet_id": "221342"}], [{"original_text": "Next is a glass from the carnival trip that he took.", "album_id": "72157624340134097", "photo_flickr_id": "4780194689", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44268", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next is a glass from the carnival trip that he took .", "storylet_id": "221343"}], [{"original_text": "He also got this glass while on a cruise from a village that he visited.", "album_id": "72157624340134097", "photo_flickr_id": "4780193811", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44268", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he also got this glass while on a cruise from a village that he visited .", "storylet_id": "221344"}], [{"original_text": "I'm always traveling from state to state for work.", "album_id": "72157624340134097", "photo_flickr_id": "4780831308", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "44269", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 'm always traveling from state to state for work .", "storylet_id": "221345"}], [{"original_text": "Every state I go to I like to collect shot glasses even though I'm not a big drinker.", "album_id": "72157624340134097", "photo_flickr_id": "4780838726", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "44269", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "every state i go to i like to collect shot glasses even though i 'm not a big drinker .", "storylet_id": "221346"}], [{"original_text": "This shot glass from Louisiana was really memorable. I love the way it's designed!", "album_id": "72157624340134097", "photo_flickr_id": "4780203497", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "44269", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this shot glass from location was really memorable . i love the way it 's designed !", "storylet_id": "221347"}], [{"original_text": "Each and every one of these shot glasses come with fond memories.", "album_id": "72157624340134097", "photo_flickr_id": "4780194689", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "44269", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "each and every one of these shot glasses come with fond memories .", "storylet_id": "221348"}], [{"original_text": "I can't wait to see where I go next!", "album_id": "72157624340134097", "photo_flickr_id": "4780193811", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "44269", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ca n't wait to see where i go next !", "storylet_id": "221349"}], [{"original_text": "This dog show is going to be so fun. I bet I win. ", "album_id": "72157627038584781", "photo_flickr_id": "5923422604", "setting": "first-2-pick-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "44270", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this dog show is going to be so fun . i bet i win .", "storylet_id": "221350"}], [{"original_text": "Ni I will win I ma by far the best there is here.", "album_id": "72157627038584781", "photo_flickr_id": "5922786963", "setting": "first-2-pick-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "44270", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "ni i will win i ma by far the best there is here .", "storylet_id": "221351"}], [{"original_text": "I don't care if i win, My buddy still loves me.", "album_id": "72157627038584781", "photo_flickr_id": "5923386326", "setting": "first-2-pick-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "44270", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i do n't care if i win , my buddy still loves me .", "storylet_id": "221352"}], [{"original_text": "I am too ugly to win, or maybe not.", "album_id": "72157627038584781", "photo_flickr_id": "5923419560", "setting": "first-2-pick-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "44270", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i am too ugly to win , or maybe not .", "storylet_id": "221353"}], [{"original_text": "Ya he is too ugly to win.", "album_id": "72157627038584781", "photo_flickr_id": "5922760161", "setting": "first-2-pick-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "44270", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ya he is too ugly to win .", "storylet_id": "221354"}], [{"original_text": "Many cute dogs showed up for the dog show.", "album_id": "72157627038584781", "photo_flickr_id": "5922760161", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44271", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many cute dogs showed up for the dog show .", "storylet_id": "221355"}], [{"original_text": "My personal favorite was this little guy.", "album_id": "72157627038584781", "photo_flickr_id": "5922793947", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44271", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my personal favorite was this little guy .", "storylet_id": "221356"}], [{"original_text": "All kinds of dogs were there performing.", "album_id": "72157627038584781", "photo_flickr_id": "5923378116", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44271", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all kinds of dogs were there performing .", "storylet_id": "221357"}], [{"original_text": "The owner and his dog are very attached.", "album_id": "72157627038584781", "photo_flickr_id": "5923386326", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44271", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the owner and his dog are very attached .", "storylet_id": "221358"}], [{"original_text": "This dog is very well trained.", "album_id": "72157627038584781", "photo_flickr_id": "5937267713", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44271", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this dog is very well trained .", "storylet_id": "221359"}], [{"original_text": "This littler dog looked on with trepidation.", "album_id": "72157627038584781", "photo_flickr_id": "5923422604", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44272", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this littler dog looked on with trepidation .", "storylet_id": "221360"}], [{"original_text": "But with his owner right there he calmed down.", "album_id": "72157627038584781", "photo_flickr_id": "5922786963", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44272", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but with his owner right there he calmed down .", "storylet_id": "221361"}], [{"original_text": "There's nothing quite like the bond between child and dog.", "album_id": "72157627038584781", "photo_flickr_id": "5923386326", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44272", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there 's nothing quite like the bond between child and dog .", "storylet_id": "221362"}], [{"original_text": "Most of the dogs were panting in the heat.", "album_id": "72157627038584781", "photo_flickr_id": "5923419560", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44272", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "most of the dogs were panting in the heat .", "storylet_id": "221363"}], [{"original_text": "Though some had a very dignified composure.", "album_id": "72157627038584781", "photo_flickr_id": "5922760161", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44272", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "though some had a very dignified composure .", "storylet_id": "221364"}], [{"original_text": "It was a hot day for this little fella. All he wanted was to cool off so he stuck out his tongue to pant.", "album_id": "72157627038584781", "photo_flickr_id": "5923422604", "setting": "last-3-pick-old-and-tell", "worker_id": "YL56HV7QYEECKFJ", "story_id": "44273", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a hot day for this little fella . all he wanted was to cool off so he stuck out his tongue to pant .", "storylet_id": "221365"}], [{"original_text": "The revolution had begun. This little dog stuck her tongue out back at the other one.", "album_id": "72157627038584781", "photo_flickr_id": "5922786963", "setting": "last-3-pick-old-and-tell", "worker_id": "YL56HV7QYEECKFJ", "story_id": "44273", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the revolution had begun . this little dog stuck her tongue out back at the other one .", "storylet_id": "221366"}], [{"original_text": "This bulldog was receiving lots of love from his owner for a job well done, but he wanted to participate, too.", "album_id": "72157627038584781", "photo_flickr_id": "5923386326", "setting": "last-3-pick-old-and-tell", "worker_id": "YL56HV7QYEECKFJ", "story_id": "44273", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this bulldog was receiving lots of love from his owner for a job well done , but he wanted to participate , too .", "storylet_id": "221367"}], [{"original_text": "Then all the dogs wanted to join in the fun while they panted out their heat.", "album_id": "72157627038584781", "photo_flickr_id": "5923419560", "setting": "last-3-pick-old-and-tell", "worker_id": "YL56HV7QYEECKFJ", "story_id": "44273", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then all the dogs wanted to join in the fun while they panted out their heat .", "storylet_id": "221368"}], [{"original_text": "Except one staunch, strict older male. Seeing all the shenanigans, he just looked on in disbelief.", "album_id": "72157627038584781", "photo_flickr_id": "5922760161", "setting": "last-3-pick-old-and-tell", "worker_id": "YL56HV7QYEECKFJ", "story_id": "44273", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "except one staunch , strict older male . seeing all the shenanigans , he just looked on in disbelief .", "storylet_id": "221369"}], [{"original_text": "All my best friends are dogs like Henry who is scruffy but lots of fun. ", "album_id": "72157627038584781", "photo_flickr_id": "5923422604", "setting": "last-3-pick-old-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "44274", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all my best friends are dogs like [male] who is scruffy but lots of fun .", "storylet_id": "221370"}], [{"original_text": "Moxie lives just down the street and always has a spare bone for me to gnaw. ", "album_id": "72157627038584781", "photo_flickr_id": "5922786963", "setting": "last-3-pick-old-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "44274", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "moxie lives just down the street and always has a spare bone for me to gnaw .", "storylet_id": "221371"}], [{"original_text": "Of course Herman is the hug lover of our group. ", "album_id": "72157627038584781", "photo_flickr_id": "5923386326", "setting": "last-3-pick-old-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "44274", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course [male] is the hug lover of our group .", "storylet_id": "221372"}], [{"original_text": "When Pete comes to party though, we howl at the moon all night long. ", "album_id": "72157627038584781", "photo_flickr_id": "5923419560", "setting": "last-3-pick-old-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "44274", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when [male] comes to party though , we howl at the moon all night long .", "storylet_id": "221373"}], [{"original_text": "Sometimes I just shake my head and love my dog's life. ", "album_id": "72157627038584781", "photo_flickr_id": "5922760161", "setting": "last-3-pick-old-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "44274", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sometimes i just shake my head and love my dog 's life .", "storylet_id": "221374"}], [{"original_text": "There was a protest in NYC today.", "album_id": "72157626036703040", "photo_flickr_id": "5440068567", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44275", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a protest in nyc today .", "storylet_id": "221375"}], [{"original_text": "Families came out to demonstrate their support for the cause.", "album_id": "72157626036703040", "photo_flickr_id": "5440623518", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44275", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "families came out to demonstrate their support for the cause .", "storylet_id": "221376"}], [{"original_text": "They made signs to clearly communicate what they wanted.", "album_id": "72157626036703040", "photo_flickr_id": "5440081627", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44275", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they made signs to clearly communicate what they wanted .", "storylet_id": "221377"}], [{"original_text": "They were fighting to ban dangerous gas drilling across the state.", "album_id": "72157626036703040", "photo_flickr_id": "5440062733", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44275", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were fighting to ban dangerous gas drilling across the state .", "storylet_id": "221378"}], [{"original_text": "All the families seemed like they had a great time demonstrating.", "album_id": "72157626036703040", "photo_flickr_id": "5439942143", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44275", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the families seemed like they had a great time demonstrating .", "storylet_id": "221379"}], [{"original_text": "The issue of fracking was apparent on the minds of New Yorkers.", "album_id": "72157626036703040", "photo_flickr_id": "5440081627", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "44276", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the issue of fracking was apparent on the minds of new yorkers .", "storylet_id": "221380"}], [{"original_text": "A demonstration showed their disdain for fracking.", "album_id": "72157626036703040", "photo_flickr_id": "5440062733", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "44276", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a demonstration showed their disdain for fracking .", "storylet_id": "221381"}], [{"original_text": "During their demonstration, children walked around with a flag.", "album_id": "72157626036703040", "photo_flickr_id": "5440055803", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "44276", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "during their demonstration , children walked around with a flag .", "storylet_id": "221382"}], [{"original_text": "Other children walked with banners.", "album_id": "72157626036703040", "photo_flickr_id": "5440614928", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "44276", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other children walked with banners .", "storylet_id": "221383"}], [{"original_text": "Parents and teachers accompanied other kids.", "album_id": "72157626036703040", "photo_flickr_id": "5440538786", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "44276", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "parents and teachers accompanied other kids .", "storylet_id": "221384"}], [{"original_text": "Our sign was ready and we were eager to start the parade.", "album_id": "72157626036703040", "photo_flickr_id": "5440081627", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "44277", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our sign was ready and we were eager to start the parade .", "storylet_id": "221385"}], [{"original_text": "A curious man drove by in a truck.", "album_id": "72157626036703040", "photo_flickr_id": "5440062733", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "44277", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a curious man drove by in a truck .", "storylet_id": "221386"}], [{"original_text": "As traffic cleared, others were less shy about marching.", "album_id": "72157626036703040", "photo_flickr_id": "5440055803", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "44277", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as traffic cleared , others were less shy about marching .", "storylet_id": "221387"}], [{"original_text": "Before long, almost everyone was marching.", "album_id": "72157626036703040", "photo_flickr_id": "5440614928", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "44277", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "before long , almost everyone was marching .", "storylet_id": "221388"}], [{"original_text": "A few people stayed on the side and encouraged the marchers.", "album_id": "72157626036703040", "photo_flickr_id": "5440538786", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "44277", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a few people stayed on the side and encouraged the marchers .", "storylet_id": "221389"}], [{"original_text": "The woman stood in protest", "album_id": "72157626036703040", "photo_flickr_id": "5440081627", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44278", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the woman stood in protest", "storylet_id": "221390"}], [{"original_text": "as the boy looked on.", "album_id": "72157626036703040", "photo_flickr_id": "5440062733", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44278", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the boy looked on .", "storylet_id": "221391"}], [{"original_text": "The people in white walked", "album_id": "72157626036703040", "photo_flickr_id": "5440055803", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44278", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people in white walked", "storylet_id": "221392"}], [{"original_text": "as they held a flag", "album_id": "72157626036703040", "photo_flickr_id": "5440614928", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44278", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as they held a flag", "storylet_id": "221393"}], [{"original_text": "and protested.", "album_id": "72157626036703040", "photo_flickr_id": "5440538786", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44278", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and protested .", "storylet_id": "221394"}], [{"original_text": " Many of the town residents gathered together to protest against the fracking companies.", "album_id": "72157626036703040", "photo_flickr_id": "5440068567", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "44279", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many of the town residents gathered together to protest against the fracking companies .", "storylet_id": "221395"}], [{"original_text": "Men, women, and children all felt at risk at the potential problems caused by fracking.", "album_id": "72157626036703040", "photo_flickr_id": "5440623518", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "44279", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "men , women , and children all felt at risk at the potential problems caused by fracking .", "storylet_id": "221396"}], [{"original_text": "The sign was a good representation of what the people felt they needed to protest against.", "album_id": "72157626036703040", "photo_flickr_id": "5440081627", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "44279", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sign was a good representation of what the people felt they needed to protest against .", "storylet_id": "221397"}], [{"original_text": "This young boy woke up bright and early to lend his voice.", "album_id": "72157626036703040", "photo_flickr_id": "5440062733", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "44279", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this young boy woke up bright and early to lend his voice .", "storylet_id": "221398"}], [{"original_text": "This was an important issue to the townspeople of Middlefield.", "album_id": "72157626036703040", "photo_flickr_id": "5439942143", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "44279", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was an important issue to the townspeople of location .", "storylet_id": "221399"}], [{"original_text": "Erin loved to make masks.", "album_id": "72157625908803155", "photo_flickr_id": "5439316889", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44280", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] loved to make masks .", "storylet_id": "221400"}], [{"original_text": "She loved the bigger one with feathers.", "album_id": "72157625908803155", "photo_flickr_id": "5439923452", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44280", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she loved the bigger one with feathers .", "storylet_id": "221401"}], [{"original_text": "The intricate ones took a lot of time.", "album_id": "72157625908803155", "photo_flickr_id": "5439318525", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44280", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the intricate ones took a lot of time .", "storylet_id": "221402"}], [{"original_text": "They looked best on her face shape.", "album_id": "72157625908803155", "photo_flickr_id": "5439925574", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44280", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they looked best on her face shape .", "storylet_id": "221403"}], [{"original_text": "She was happy to look more beautiful under her mask.", "album_id": "72157625908803155", "photo_flickr_id": "5439925954", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44280", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was happy to look more beautiful under her mask .", "storylet_id": "221404"}], [{"original_text": "Before the event started, a man waved the American flag.", "album_id": "72157625908803155", "photo_flickr_id": "5439316889", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44281", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before the event started , a man waved the american flag .", "storylet_id": "221405"}], [{"original_text": "The next vehicle to approach was very old in nature.", "album_id": "72157625908803155", "photo_flickr_id": "5439317141", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44281", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the next vehicle to approach was very old in nature .", "storylet_id": "221406"}], [{"original_text": "The women approached in their gowns.", "album_id": "72157625908803155", "photo_flickr_id": "5439318077", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44281", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the women approached in their gowns .", "storylet_id": "221407"}], [{"original_text": "Some of the young women had tiaras and smiles.", "album_id": "72157625908803155", "photo_flickr_id": "5439318525", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44281", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the young women had tiaras and smiles .", "storylet_id": "221408"}], [{"original_text": "One woman won the crown and the title at the end of the event.", "album_id": "72157625908803155", "photo_flickr_id": "5439324809", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44281", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one woman won the crown and the title at the end of the event .", "storylet_id": "221409"}], [{"original_text": "The men dressed in old war uniforms.", "album_id": "72157625908803155", "photo_flickr_id": "5439316889", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44282", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the men dressed in old war uniforms .", "storylet_id": "221410"}], [{"original_text": "The women are dressed up in different colored dresses.", "album_id": "72157625908803155", "photo_flickr_id": "5439923452", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44282", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the women are dressed up in different colored dresses .", "storylet_id": "221411"}], [{"original_text": "This is the birthday girl. She wore orange.", "album_id": "72157625908803155", "photo_flickr_id": "5439318525", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44282", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the birthday girl . she wore orange .", "storylet_id": "221412"}], [{"original_text": "Her closest friends wore purple.", "album_id": "72157625908803155", "photo_flickr_id": "5439925574", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44282", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her closest friends wore purple .", "storylet_id": "221413"}], [{"original_text": "The girls she didn't like had to wear the blue dresses of shame.", "album_id": "72157625908803155", "photo_flickr_id": "5439925954", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44282", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girls she did n't like had to wear the blue dresses of shame .", "storylet_id": "221414"}], [{"original_text": "There was a colonial parade this weekend.", "album_id": "72157625908803155", "photo_flickr_id": "5439316889", "setting": "last-3-pick-old-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44283", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a colonial parade this weekend .", "storylet_id": "221415"}], [{"original_text": "A highlight of the parade was all the royalty floats.", "album_id": "72157625908803155", "photo_flickr_id": "5439923452", "setting": "last-3-pick-old-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44283", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a highlight of the parade was all the royalty floats .", "storylet_id": "221416"}], [{"original_text": "Each club in town had it's own representatives.", "album_id": "72157625908803155", "photo_flickr_id": "5439318525", "setting": "last-3-pick-old-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44283", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each club in town had it 's own representatives .", "storylet_id": "221417"}], [{"original_text": "Lots of pretty dresses.", "album_id": "72157625908803155", "photo_flickr_id": "5439925574", "setting": "last-3-pick-old-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44283", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "lots of pretty dresses .", "storylet_id": "221418"}], [{"original_text": "And lots of waving!", "album_id": "72157625908803155", "photo_flickr_id": "5439925954", "setting": "last-3-pick-old-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44283", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and lots of waving !", "storylet_id": "221419"}], [{"original_text": "Nice day for a beauty contest. The town was out to celebrate. ", "album_id": "72157625908803155", "photo_flickr_id": "5439316889", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44284", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "nice day for a beauty contest . the town was out to celebrate .", "storylet_id": "221420"}], [{"original_text": "The girls were eager to win.", "album_id": "72157625908803155", "photo_flickr_id": "5439923452", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44284", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the girls were eager to win .", "storylet_id": "221421"}], [{"original_text": "Some just enjoyed being there.", "album_id": "72157625908803155", "photo_flickr_id": "5439318525", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44284", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some just enjoyed being there .", "storylet_id": "221422"}], [{"original_text": "The winning girls were in one area. ", "album_id": "72157625908803155", "photo_flickr_id": "5439925574", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44284", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the winning girls were in one area .", "storylet_id": "221423"}], [{"original_text": "Even younger girls were able to compete and even win!", "album_id": "72157625908803155", "photo_flickr_id": "5439925954", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44284", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even younger girls were able to compete and even win !", "storylet_id": "221424"}], [{"original_text": "We decided to go for a drive since there wasn't anything else to do.", "album_id": "72157625149674570", "photo_flickr_id": "5075827306", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "44285", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go for a drive since there was n't anything else to do .", "storylet_id": "221425"}], [{"original_text": "We drove by the train tracks and a train was going by.", "album_id": "72157625149674570", "photo_flickr_id": "5075228991", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "44285", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we drove by the train tracks and a train was going by .", "storylet_id": "221426"}], [{"original_text": "The train was carrying some interesting cargo, including this crazy truck.", "album_id": "72157625149674570", "photo_flickr_id": "5075829562", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "44285", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the train was carrying some interesting cargo , including this crazy truck .", "storylet_id": "221427"}], [{"original_text": "It looks like they must have been carrying circus things too.", "album_id": "72157625149674570", "photo_flickr_id": "5075831206", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "44285", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looks like they must have been carrying circus things too .", "storylet_id": "221428"}], [{"original_text": "Once it finally went through and ended we were on our way to go home.", "album_id": "72157625149674570", "photo_flickr_id": "5075236773", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "44285", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once it finally went through and ended we were on our way to go home .", "storylet_id": "221429"}], [{"original_text": "I like trains.", "album_id": "72157625149674570", "photo_flickr_id": "5075827306", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44286", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i like trains .", "storylet_id": "221430"}], [{"original_text": "Trains are cool.", "album_id": "72157625149674570", "photo_flickr_id": "5075827558", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44286", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "trains are cool .", "storylet_id": "221431"}], [{"original_text": "I take lots of pictures of them.", "album_id": "72157625149674570", "photo_flickr_id": "5075827834", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44286", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i take lots of pictures of them .", "storylet_id": "221432"}], [{"original_text": "Here's a close up.", "album_id": "72157625149674570", "photo_flickr_id": "5075230227", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44286", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's a close up .", "storylet_id": "221433"}], [{"original_text": "Check out that engine.", "album_id": "72157625149674570", "photo_flickr_id": "5075228699", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44286", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "check out that engine .", "storylet_id": "221434"}], [{"original_text": "today i went out for a day", "album_id": "72157625149674570", "photo_flickr_id": "5075827306", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44287", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i went out for a day", "storylet_id": "221435"}], [{"original_text": "on the road i saw funny sides outside of businesses", "album_id": "72157625149674570", "photo_flickr_id": "5075228991", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44287", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on the road i saw funny sides outside of businesses", "storylet_id": "221436"}], [{"original_text": "later, i saw an 18 wheeler driving down the road", "album_id": "72157625149674570", "photo_flickr_id": "5075829562", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44287", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "later , i saw an 18 wheeler driving down the road", "storylet_id": "221437"}], [{"original_text": "it pulled into an empty lot and set up an event", "album_id": "72157625149674570", "photo_flickr_id": "5075831206", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44287", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it pulled into an empty lot and set up an event", "storylet_id": "221438"}], [{"original_text": "i parked my car and went to the event", "album_id": "72157625149674570", "photo_flickr_id": "5075236773", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44287", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i parked my car and went to the event", "storylet_id": "221439"}], [{"original_text": "We hit the road to go out to the local train tracks.", "album_id": "72157625149674570", "photo_flickr_id": "5075827306", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44288", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we hit the road to go out to the local train tracks .", "storylet_id": "221440"}], [{"original_text": "We arrived right as an old train was just leaving.", "album_id": "72157625149674570", "photo_flickr_id": "5075228991", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44288", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we arrived right as an old train was just leaving .", "storylet_id": "221441"}], [{"original_text": "We walked around and admired some of its features.", "album_id": "72157625149674570", "photo_flickr_id": "5075829562", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44288", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we walked around and admired some of its features .", "storylet_id": "221442"}], [{"original_text": "Once we got to the back, we headed back to the front.", "album_id": "72157625149674570", "photo_flickr_id": "5075831206", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44288", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once we got to the back , we headed back to the front .", "storylet_id": "221443"}], [{"original_text": "When we where done, we got back in the car and headed out.", "album_id": "72157625149674570", "photo_flickr_id": "5075236773", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44288", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we where done , we got back in the car and headed out .", "storylet_id": "221444"}], [{"original_text": "The whole family was in the car to go on vacation.", "album_id": "72157625149674570", "photo_flickr_id": "5075827306", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44289", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family was in the car to go on vacation .", "storylet_id": "221445"}], [{"original_text": "We had to stop at the red light.", "album_id": "72157625149674570", "photo_flickr_id": "5075827558", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44289", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to stop at the red light .", "storylet_id": "221446"}], [{"original_text": "The people were stop in front of us even when the light was green.", "album_id": "72157625149674570", "photo_flickr_id": "5075827834", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44289", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people were stop in front of us even when the light was green .", "storylet_id": "221447"}], [{"original_text": "We saw a big tractor trailer going by.", "album_id": "72157625149674570", "photo_flickr_id": "5075230227", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44289", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw a big tractor trailer going by .", "storylet_id": "221448"}], [{"original_text": "We got to see a train on our vacation.", "album_id": "72157625149674570", "photo_flickr_id": "5075228699", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44289", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we got to see a train on our vacation .", "storylet_id": "221449"}], [{"original_text": "The local restaurants prepare for a busy day.", "album_id": "72157629615318518", "photo_flickr_id": "5168014140", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "44290", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the local restaurants prepare for a busy day .", "storylet_id": "221450"}], [{"original_text": "This bar is known for its excellent house brews.", "album_id": "72157629615318518", "photo_flickr_id": "5173727031", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "44290", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this bar is known for its excellent house brews .", "storylet_id": "221451"}], [{"original_text": "People make their way down the highway to get to their favorite restaurants.", "album_id": "72157629615318518", "photo_flickr_id": "5177234217", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "44290", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people make their way down the highway to get to their favorite restaurants .", "storylet_id": "221452"}], [{"original_text": "The city has been doing a lot of renovations lately, slowing business.", "album_id": "72157629615318518", "photo_flickr_id": "5184592230", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "44290", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the city has been doing a lot of renovations lately , slowing business .", "storylet_id": "221453"}], [{"original_text": "At the end of the day all the workers take the train home.", "album_id": "72157629615318518", "photo_flickr_id": "5184593736", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "44290", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day all the workers take the train home .", "storylet_id": "221454"}], [{"original_text": "When I arrived at the French city of Atelier, I went to the cafe first.", "album_id": "72157629615318518", "photo_flickr_id": "5173729145", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44291", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i arrived at the french city of atelier , i went to the cafe first .", "storylet_id": "221455"}], [{"original_text": "After drinking my coffee I looked around at the cool monuments.", "album_id": "72157629615318518", "photo_flickr_id": "5177226807", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44291", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after drinking my coffee i looked around at the cool monuments .", "storylet_id": "221456"}], [{"original_text": "The statues were weathered and old.", "album_id": "72157629615318518", "photo_flickr_id": "5177228751", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44291", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the statues were weathered and old .", "storylet_id": "221457"}], [{"original_text": "The park was lonely so I headed to the ports.", "album_id": "72157629615318518", "photo_flickr_id": "5177232983", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44291", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the park was lonely so i headed to the ports .", "storylet_id": "221458"}], [{"original_text": "I saw the ships coming and going for about thirty minutes before I went back to my hotel, bored.", "album_id": "72157629615318518", "photo_flickr_id": "5184592638", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44291", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i saw the ships coming and going for about thirty minutes before i went back to my hotel , bored .", "storylet_id": "221459"}], [{"original_text": "My journey through Sansibar today was cool. I hit this cafe and had some alcoholic drinks at 10 a.m.", "album_id": "72157629615318518", "photo_flickr_id": "5173729145", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44292", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my journey through sansibar today was cool . i hit this cafe and had some alcoholic drinks at 10 a.m .", "storylet_id": "221460"}], [{"original_text": "I found some cool decorations on buildings. Here's a neat one I stumbled upon. ", "album_id": "72157629615318518", "photo_flickr_id": "5177226807", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44292", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i found some cool decorations on buildings . here 's a neat one i stumbled upon .", "storylet_id": "221461"}], [{"original_text": "This guy was waving at me and so I waved back on my way through. ", "album_id": "72157629615318518", "photo_flickr_id": "5177228751", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44292", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this guy was waving at me and so i waved back on my way through .", "storylet_id": "221462"}], [{"original_text": "I found a nice clearing in a park where I took a nap for a few hours. ", "album_id": "72157629615318518", "photo_flickr_id": "5177232983", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44292", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i found a nice clearing in a park where i took a nap for a few hours .", "storylet_id": "221463"}], [{"original_text": "Then I took a boat ride back home. ", "album_id": "72157629615318518", "photo_flickr_id": "5184592638", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44292", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then i took a boat ride back home .", "storylet_id": "221464"}], [{"original_text": "This was some kind of strange street sign that was hanging up. I have no idea what it meant.", "album_id": "72157629615318518", "photo_flickr_id": "5168014140", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44293", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was some kind of strange street sign that was hanging up . i have no idea what it meant .", "storylet_id": "221465"}], [{"original_text": "A sign to one of the great local watering holes.", "album_id": "72157629615318518", "photo_flickr_id": "5173727031", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44293", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a sign to one of the great local watering holes .", "storylet_id": "221466"}], [{"original_text": "Our exit ramp on the highway.", "album_id": "72157629615318518", "photo_flickr_id": "5177234217", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44293", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our exit ramp on the highway .", "storylet_id": "221467"}], [{"original_text": "Some buildings under construction from the window of our hotel.", "album_id": "72157629615318518", "photo_flickr_id": "5184592230", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44293", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some buildings under construction from the window of our hotel .", "storylet_id": "221468"}], [{"original_text": "Looking down at the road from an overpass while walking around.", "album_id": "72157629615318518", "photo_flickr_id": "5184593736", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44293", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "looking down at the road from an overpass while walking around .", "storylet_id": "221469"}], [{"original_text": "They decided to stop and eat at the cafe as they toured the city.", "album_id": "72157629615318518", "photo_flickr_id": "5173729145", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "44294", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they decided to stop and eat at the cafe as they toured the city .", "storylet_id": "221470"}], [{"original_text": "The couple wondered if this was a family crest of some sort.", "album_id": "72157629615318518", "photo_flickr_id": "5177226807", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "44294", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the couple wondered if this was a family crest of some sort .", "storylet_id": "221471"}], [{"original_text": "The statue was somewhat creepy to them with the kids hanging onto the mans legs.", "album_id": "72157629615318518", "photo_flickr_id": "5177228751", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "44294", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the statue was somewhat creepy to them with the kids hanging onto the mans legs .", "storylet_id": "221472"}], [{"original_text": "The couple ran through the leaves in the park.", "album_id": "72157629615318518", "photo_flickr_id": "5177232983", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "44294", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couple ran through the leaves in the park .", "storylet_id": "221473"}], [{"original_text": "At the end of the day they saw these two interesting buildings by the bay.", "album_id": "72157629615318518", "photo_flickr_id": "5184592638", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "44294", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day they saw these two interesting buildings by the bay .", "storylet_id": "221474"}], [{"original_text": "The town prepares for a day of festivities.", "album_id": "72157623432780770", "photo_flickr_id": "4356594594", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "44295", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the town prepares for a day of festivities .", "storylet_id": "221475"}], [{"original_text": "The street performers start to perform their acts for the crowds.", "album_id": "72157623432780770", "photo_flickr_id": "4356560908", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "44295", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the street performers start to perform their acts for the crowds .", "storylet_id": "221476"}], [{"original_text": "A kid poses for a picture next to them.", "album_id": "72157623432780770", "photo_flickr_id": "4337128755", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "44295", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a kid poses for a picture next to them .", "storylet_id": "221477"}], [{"original_text": "Towards the end of the day people begin to return to their hotels.", "album_id": "72157623432780770", "photo_flickr_id": "4355794241", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "44295", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "towards the end of the day people begin to return to their hotels .", "storylet_id": "221478"}], [{"original_text": "The night life starts and people watch enthusiastically.", "album_id": "72157623432780770", "photo_flickr_id": "4356536982", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "44295", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night life starts and people watch enthusiastically .", "storylet_id": "221479"}], [{"original_text": "We arrived in France at noon.", "album_id": "72157623432780770", "photo_flickr_id": "4356538140", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44296", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived in location at noon .", "storylet_id": "221480"}], [{"original_text": "My cousin loved the great buildings.", "album_id": "72157623432780770", "photo_flickr_id": "4337126623", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44296", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my cousin loved the great buildings .", "storylet_id": "221481"}], [{"original_text": "Father hated the cold and rain.", "album_id": "72157623432780770", "photo_flickr_id": "4337869302", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44296", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "father hated the cold and rain .", "storylet_id": "221482"}], [{"original_text": "The hotel was the best part because the beds were so soft.", "album_id": "72157623432780770", "photo_flickr_id": "4355794241", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44296", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the hotel was the best part because the beds were so soft .", "storylet_id": "221483"}], [{"original_text": "The murals on the wall in the hotel were like stuff from museum.", "album_id": "72157623432780770", "photo_flickr_id": "4355862573", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44296", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the murals on the wall in the hotel were like stuff from museum .", "storylet_id": "221484"}], [{"original_text": "Our trip sites were amazing", "album_id": "72157623432780770", "photo_flickr_id": "4356594594", "setting": "last-3-pick-old-and-tell", "worker_id": "ANZFT83NEQLA4Q5", "story_id": "44297", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip sites were amazing", "storylet_id": "221485"}], [{"original_text": "we were able to partake in rituals.", "album_id": "72157623432780770", "photo_flickr_id": "4356560908", "setting": "last-3-pick-old-and-tell", "worker_id": "ANZFT83NEQLA4Q5", "story_id": "44297", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were able to partake in rituals .", "storylet_id": "221486"}], [{"original_text": "really mom? really? hmmmmmm ", "album_id": "72157623432780770", "photo_flickr_id": "4337128755", "setting": "last-3-pick-old-and-tell", "worker_id": "ANZFT83NEQLA4Q5", "story_id": "44297", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "really mom ? really ? hmmmmmm", "storylet_id": "221487"}], [{"original_text": "look at our hotel room - just outstanding", "album_id": "72157623432780770", "photo_flickr_id": "4355794241", "setting": "last-3-pick-old-and-tell", "worker_id": "ANZFT83NEQLA4Q5", "story_id": "44297", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look at our hotel room - just outstanding", "storylet_id": "221488"}], [{"original_text": "there were people dressed in garb everywhere! ", "album_id": "72157623432780770", "photo_flickr_id": "4356536982", "setting": "last-3-pick-old-and-tell", "worker_id": "ANZFT83NEQLA4Q5", "story_id": "44297", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were people dressed in garb everywhere !", "storylet_id": "221489"}], [{"original_text": "The cobblestone streets were gorgeous.", "album_id": "72157623432780770", "photo_flickr_id": "4356594594", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44298", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cobblestone streets were gorgeous .", "storylet_id": "221490"}], [{"original_text": "We saw some lovely local culture.", "album_id": "72157623432780770", "photo_flickr_id": "4356560908", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44298", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw some lovely local culture .", "storylet_id": "221491"}], [{"original_text": "Even took a picture of this guy giving us a strange look!", "album_id": "72157623432780770", "photo_flickr_id": "4337128755", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44298", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even took a picture of this guy giving us a strange look !", "storylet_id": "221492"}], [{"original_text": "The hotel that night was similarly wonderful.", "album_id": "72157623432780770", "photo_flickr_id": "4355794241", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44298", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the hotel that night was similarly wonderful .", "storylet_id": "221493"}], [{"original_text": "And the next day we saw some more interesting people.", "album_id": "72157623432780770", "photo_flickr_id": "4356536982", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44298", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the next day we saw some more interesting people .", "storylet_id": "221494"}], [{"original_text": "The cathedral was so nice to see in person.", "album_id": "72157623432780770", "photo_flickr_id": "4356538140", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "44299", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cathedral was so nice to see in person .", "storylet_id": "221495"}], [{"original_text": "Ming was so happy to be on vacation. ", "album_id": "72157623432780770", "photo_flickr_id": "4337126623", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "44299", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "ming was so happy to be on vacation .", "storylet_id": "221496"}], [{"original_text": "Wang was not happy to be on vacation.", "album_id": "72157623432780770", "photo_flickr_id": "4337869302", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "44299", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "wang was not happy to be on vacation .", "storylet_id": "221497"}], [{"original_text": "He was not happy because they had separate beds. ", "album_id": "72157623432780770", "photo_flickr_id": "4355794241", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "44299", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was not happy because they had separate beds .", "storylet_id": "221498"}], [{"original_text": "But they both enjoyed the inside of the cathedral. ", "album_id": "72157623432780770", "photo_flickr_id": "4355862573", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "44299", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but they both enjoyed the inside of the cathedral .", "storylet_id": "221499"}], [{"original_text": "The festival has live music. ", "album_id": "72157626880438645", "photo_flickr_id": "5831842057", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "44300", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the festival has live music .", "storylet_id": "221500"}], [{"original_text": "There was a attraction in a trailer. ", "album_id": "72157626880438645", "photo_flickr_id": "5832394088", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "44300", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a attraction in a trailer .", "storylet_id": "221501"}], [{"original_text": "A large tiger added interest.", "album_id": "72157626880438645", "photo_flickr_id": "5832394734", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "44300", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a large tiger added interest .", "storylet_id": "221502"}], [{"original_text": "The live music continued with a Dj!", "album_id": "72157626880438645", "photo_flickr_id": "5831848235", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "44300", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the live music continued with a dj !", "storylet_id": "221503"}], [{"original_text": "There was attractions for the kids to play on as well.", "album_id": "72157626880438645", "photo_flickr_id": "5831850673", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "44300", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was attractions for the kids to play on as well .", "storylet_id": "221504"}], [{"original_text": "The festival was just starting up and people were coming in.", "album_id": "72157626880438645", "photo_flickr_id": "5831842207", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44301", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the festival was just starting up and people were coming in .", "storylet_id": "221505"}], [{"original_text": "There was even a fortune tellers booth there.", "album_id": "72157626880438645", "photo_flickr_id": "5832394088", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44301", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was even a fortune tellers booth there .", "storylet_id": "221506"}], [{"original_text": "The kids even had something to keep them busy too.", "album_id": "72157626880438645", "photo_flickr_id": "5832394734", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44301", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids even had something to keep them busy too .", "storylet_id": "221507"}], [{"original_text": "A Native American dances to the music.", "album_id": "72157626880438645", "photo_flickr_id": "5832396382", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44301", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a native american dances to the music .", "storylet_id": "221508"}], [{"original_text": "Some fans rock out during the sound check.", "album_id": "72157626880438645", "photo_flickr_id": "5832398830", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44301", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some fans rock out during the sound check .", "storylet_id": "221509"}], [{"original_text": "Several people attended a street fair today.", "album_id": "72157626880438645", "photo_flickr_id": "5831842207", "setting": "last-3-pick-old-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "44302", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "several people attended a street fair today .", "storylet_id": "221510"}], [{"original_text": "There were lots of exhibits to see and things to do.", "album_id": "72157626880438645", "photo_flickr_id": "5832394088", "setting": "last-3-pick-old-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "44302", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were lots of exhibits to see and things to do .", "storylet_id": "221511"}], [{"original_text": "Elaborate decorations were everywhere.", "album_id": "72157626880438645", "photo_flickr_id": "5832394734", "setting": "last-3-pick-old-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "44302", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "elaborate decorations were everywhere .", "storylet_id": "221512"}], [{"original_text": "There were even authentic demonstrations being put on.", "album_id": "72157626880438645", "photo_flickr_id": "5832396382", "setting": "last-3-pick-old-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "44302", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were even authentic demonstrations being put on .", "storylet_id": "221513"}], [{"original_text": "People had fun with all of the events of the day.", "album_id": "72157626880438645", "photo_flickr_id": "5832398830", "setting": "last-3-pick-old-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "44302", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people had fun with all of the events of the day .", "storylet_id": "221514"}], [{"original_text": "I went to a festival with my friends.", "album_id": "72157626880438645", "photo_flickr_id": "5831842207", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44303", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a festival with my friends .", "storylet_id": "221515"}], [{"original_text": "There were many different food places set up.", "album_id": "72157626880438645", "photo_flickr_id": "5832394088", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44303", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many different food places set up .", "storylet_id": "221516"}], [{"original_text": "There were also different floats on display.", "album_id": "72157626880438645", "photo_flickr_id": "5832394734", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44303", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were also different floats on display .", "storylet_id": "221517"}], [{"original_text": "Music was being played for our entertainment.", "album_id": "72157626880438645", "photo_flickr_id": "5832396382", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44303", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "music was being played for our entertainment .", "storylet_id": "221518"}], [{"original_text": "They were having a concert later that night and they needed to set up. ", "album_id": "72157626880438645", "photo_flickr_id": "5832398830", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44303", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were having a concert later that night and they needed to set up .", "storylet_id": "221519"}], [{"original_text": "My son wanted to go out to the farmer's market today.", "album_id": "72157626880438645", "photo_flickr_id": "5831842057", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44304", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my son wanted to go out to the farmer 's market today .", "storylet_id": "221520"}], [{"original_text": "I took him to get a wristband first.", "album_id": "72157626880438645", "photo_flickr_id": "5832394088", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44304", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i took him to get a wristband first .", "storylet_id": "221521"}], [{"original_text": "There were a lot of neat things to look at at the market.", "album_id": "72157626880438645", "photo_flickr_id": "5832394734", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44304", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of neat things to look at at the market .", "storylet_id": "221522"}], [{"original_text": "The DJ played a song about fruits and vegetables.", "album_id": "72157626880438645", "photo_flickr_id": "5831848235", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44304", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dj played a song about fruits and vegetables .", "storylet_id": "221523"}], [{"original_text": "My son had fun at the market and wants to go again.", "album_id": "72157626880438645", "photo_flickr_id": "5831850673", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44304", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my son had fun at the market and wants to go again .", "storylet_id": "221524"}], [{"original_text": "When I feel depressed and disconnected, I know it's time for a nature walk with my girlfriend.", "album_id": "72157627188517330", "photo_flickr_id": "5944226122", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44305", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i feel depressed and disconnected , i know it 's time for a nature walk with my girlfriend .", "storylet_id": "221525"}], [{"original_text": "We love the lavender--the scent and flowers.", "album_id": "72157627188517330", "photo_flickr_id": "5943669113", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44305", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we love the lavender -- the scent and flowers .", "storylet_id": "221526"}], [{"original_text": "The wooden bridge over the pond is lovely.", "album_id": "72157627188517330", "photo_flickr_id": "5944226792", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44305", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the wooden bridge over the pond is lovely .", "storylet_id": "221527"}], [{"original_text": "The ducks always made me relaxed.", "album_id": "72157627188517330", "photo_flickr_id": "5944227900", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44305", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ducks always made me relaxed .", "storylet_id": "221528"}], [{"original_text": "My lovely girlfriend fits with all the gorgeous nature.", "album_id": "72157627188517330", "photo_flickr_id": "5944228426", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44305", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my lovely girlfriend fits with all the gorgeous nature .", "storylet_id": "221529"}], [{"original_text": "When i first got,", "album_id": "72157627188517330", "photo_flickr_id": "5945830760", "setting": "first-2-pick-and-tell", "worker_id": "OUN5PGFVD1NTXEN", "story_id": "44306", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i first got ,", "storylet_id": "221530"}], [{"original_text": "to the field of flowers.", "album_id": "72157627188517330", "photo_flickr_id": "5943669113", "setting": "first-2-pick-and-tell", "worker_id": "OUN5PGFVD1NTXEN", "story_id": "44306", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to the field of flowers .", "storylet_id": "221531"}], [{"original_text": "I noticed he was not here.", "album_id": "72157627188517330", "photo_flickr_id": "5944226122", "setting": "first-2-pick-and-tell", "worker_id": "OUN5PGFVD1NTXEN", "story_id": "44306", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i noticed he was not here .", "storylet_id": "221532"}], [{"original_text": "Maybe if I wait a little longer.", "album_id": "72157627188517330", "photo_flickr_id": "5943669811", "setting": "first-2-pick-and-tell", "worker_id": "OUN5PGFVD1NTXEN", "story_id": "44306", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "maybe if i wait a little longer .", "storylet_id": "221533"}], [{"original_text": "He will show up.", "album_id": "72157627188517330", "photo_flickr_id": "5944226792", "setting": "first-2-pick-and-tell", "worker_id": "OUN5PGFVD1NTXEN", "story_id": "44306", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he will show up .", "storylet_id": "221534"}], [{"original_text": "I couldn't really tell if John was ready for the outdoors or not. ", "album_id": "72157627188517330", "photo_flickr_id": "5944226122", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "44307", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i could n't really tell if [male] was ready for the outdoors or not .", "storylet_id": "221535"}], [{"original_text": "They were certainly ready for him, the flowers being out in full bloom!", "album_id": "72157627188517330", "photo_flickr_id": "5943669113", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "44307", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were certainly ready for him , the flowers being out in full bloom !", "storylet_id": "221536"}], [{"original_text": "The dock to the lack held up better than I expected.", "album_id": "72157627188517330", "photo_flickr_id": "5944226792", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "44307", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dock to the lack held up better than i expected .", "storylet_id": "221537"}], [{"original_text": "There were even ducks occupying the water.", "album_id": "72157627188517330", "photo_flickr_id": "5944227900", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "44307", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were even ducks occupying the water .", "storylet_id": "221538"}], [{"original_text": "Samantha enjoyed herself, embarrassing nature to the fullest.", "album_id": "72157627188517330", "photo_flickr_id": "5944228426", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "44307", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] enjoyed herself , embarrassing nature to the fullest .", "storylet_id": "221539"}], [{"original_text": "Jerry had just got out and back into town. ", "album_id": "72157627188517330", "photo_flickr_id": "5944226122", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44308", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] had just got out and back into town .", "storylet_id": "221540"}], [{"original_text": "It was good to be home, smell the fresh flowers he hadn't ever appreciated before. ", "album_id": "72157627188517330", "photo_flickr_id": "5943669113", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44308", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was good to be home , smell the fresh flowers he had n't ever appreciated before .", "storylet_id": "221541"}], [{"original_text": "He even appreciated the old wooden bridge. ", "album_id": "72157627188517330", "photo_flickr_id": "5944226792", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44308", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he even appreciated the old wooden bridge .", "storylet_id": "221542"}], [{"original_text": "And the ducks he use to find so annoying. ", "album_id": "72157627188517330", "photo_flickr_id": "5944227900", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44308", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the ducks he use to find so annoying .", "storylet_id": "221543"}], [{"original_text": "Most of all, he was glad to see her again. ", "album_id": "72157627188517330", "photo_flickr_id": "5944228426", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44308", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "most of all , he was glad to see her again .", "storylet_id": "221544"}], [{"original_text": "At the end of school, every year our school goes to this nature reserve for the school trip.", "album_id": "72157627188517330", "photo_flickr_id": "5944226122", "setting": "last-3-pick-old-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "44309", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the end of school , every year our school goes to this nature reserve for the school trip .", "storylet_id": "221545"}], [{"original_text": "The reserve had beautiful purple flowers!", "album_id": "72157627188517330", "photo_flickr_id": "5943669113", "setting": "last-3-pick-old-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "44309", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the reserve had beautiful purple flowers !", "storylet_id": "221546"}], [{"original_text": "They have a lot of wooden bridges, walkways, and piers for us to walk on.", "album_id": "72157627188517330", "photo_flickr_id": "5944226792", "setting": "last-3-pick-old-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "44309", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they have a lot of wooden bridges , walkways , and piers for us to walk on .", "storylet_id": "221547"}], [{"original_text": "They needed to build the pier because they have a lake.", "album_id": "72157627188517330", "photo_flickr_id": "5944227900", "setting": "last-3-pick-old-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "44309", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they needed to build the pier because they have a lake .", "storylet_id": "221548"}], [{"original_text": "My girlfriend Joanie and I really had a fun time, but thank God we are seniors!", "album_id": "72157627188517330", "photo_flickr_id": "5944228426", "setting": "last-3-pick-old-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "44309", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my girlfriend joanie and i really had a fun time , but thank god we are seniors !", "storylet_id": "221549"}], [{"original_text": "The award show is just getting started.", "album_id": "72157623446826118", "photo_flickr_id": "4362546116", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "44310", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the award show is just getting started .", "storylet_id": "221550"}], [{"original_text": "Kids volunteer to help with setting up the show.", "album_id": "72157623446826118", "photo_flickr_id": "4361794991", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "44310", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "kids volunteer to help with setting up the show .", "storylet_id": "221551"}], [{"original_text": "Two contestants talk together before the show.", "album_id": "72157623446826118", "photo_flickr_id": "4361799489", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "44310", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two contestants talk together before the show .", "storylet_id": "221552"}], [{"original_text": "Afterward everyone takes a group picture together.", "album_id": "72157623446826118", "photo_flickr_id": "4362549210", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "44310", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward everyone takes a group picture together .", "storylet_id": "221553"}], [{"original_text": "Old friends say their farewells as they head home for the evening.", "album_id": "72157623446826118", "photo_flickr_id": "4361810743", "setting": "first-2-pick-and-tell", "worker_id": "Z48MGJI2JKZ93BT", "story_id": "44310", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "old friends say their farewells as they head home for the evening .", "storylet_id": "221554"}], [{"original_text": "The main councilwoman led us in discussion.", "album_id": "72157623446826118", "photo_flickr_id": "4362541650", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44311", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the main councilwoman led us in discussion .", "storylet_id": "221555"}], [{"original_text": "She advised many members on the best solutions.", "album_id": "72157623446826118", "photo_flickr_id": "4361803117", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44311", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she advised many members on the best solutions .", "storylet_id": "221556"}], [{"original_text": "She was also prepared to sign the documents when that time came.", "album_id": "72157623446826118", "photo_flickr_id": "4361800539", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44311", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was also prepared to sign the documents when that time came .", "storylet_id": "221557"}], [{"original_text": "Afterwords, we celebrated at the act of legislation.", "album_id": "72157623446826118", "photo_flickr_id": "4361809041", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44311", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwords , we celebrated at the act of legislation .", "storylet_id": "221558"}], [{"original_text": "We took pictures in remembrance. ", "album_id": "72157623446826118", "photo_flickr_id": "4361810743", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44311", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took pictures in remembrance .", "storylet_id": "221559"}], [{"original_text": "Welcome to the annual meeting of the kids who like Robin Hood.", "album_id": "72157623446826118", "photo_flickr_id": "4362546116", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44312", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "welcome to the annual meeting of the kids who like [female] hood .", "storylet_id": "221560"}], [{"original_text": "We shook all the hands of these children.", "album_id": "72157623446826118", "photo_flickr_id": "4361794991", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44312", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we shook all the hands of these children .", "storylet_id": "221561"}], [{"original_text": "We welcomed the writer of one of the Robin hood books.", "album_id": "72157623446826118", "photo_flickr_id": "4361799489", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44312", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we welcomed the writer of one of the [female] hood books .", "storylet_id": "221562"}], [{"original_text": "I gathered all the people together who brought this together.", "album_id": "72157623446826118", "photo_flickr_id": "4362549210", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44312", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i gathered all the people together who brought this together .", "storylet_id": "221563"}], [{"original_text": "Here are the two main people they feel robin hood is important.", "album_id": "72157623446826118", "photo_flickr_id": "4361810743", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44312", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here are the two main people they feel robin hood is important .", "storylet_id": "221564"}], [{"original_text": "The news reporters have all come out to get the lead story on the new mayor.", "album_id": "72157623446826118", "photo_flickr_id": "4362546116", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44313", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the news reporters have all come out to get the lead story on the new mayor .", "storylet_id": "221565"}], [{"original_text": "All of the cities orginations come together to shake the mayor's hand.", "album_id": "72157623446826118", "photo_flickr_id": "4361794991", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44313", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the cities orginations come together to shake the mayor 's hand .", "storylet_id": "221566"}], [{"original_text": "The Mayor has many conversations with the people who voted for him.", "album_id": "72157623446826118", "photo_flickr_id": "4361799489", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44313", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the mayor has many conversations with the people who voted for him .", "storylet_id": "221567"}], [{"original_text": "He even takes time to thank all the hard work done on his campaign. ", "album_id": "72157623446826118", "photo_flickr_id": "4362549210", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44313", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he even takes time to thank all the hard work done on his campaign .", "storylet_id": "221568"}], [{"original_text": "At the end of the day he takes a last photo with his wife who has worked the hardest with her husband to become Mayor.", "album_id": "72157623446826118", "photo_flickr_id": "4361810743", "setting": "last-3-pick-old-and-tell", "worker_id": "LRIX2CM0UR1EBW0", "story_id": "44313", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day he takes a last photo with his wife who has worked the hardest with her husband to become mayor .", "storylet_id": "221569"}], [{"original_text": "Everyone was eager to make introductions.", "album_id": "72157623446826118", "photo_flickr_id": "4362546116", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44314", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was eager to make introductions .", "storylet_id": "221570"}], [{"original_text": "And young members of the community were awestruck.", "album_id": "72157623446826118", "photo_flickr_id": "4361794991", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44314", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and young members of the community were awestruck .", "storylet_id": "221571"}], [{"original_text": "Back inside people were mingling.", "album_id": "72157623446826118", "photo_flickr_id": "4361799489", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44314", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "back inside people were mingling .", "storylet_id": "221572"}], [{"original_text": "A group picture was taken but so many people were there many were left out.", "album_id": "72157623446826118", "photo_flickr_id": "4362549210", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44314", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a group picture was taken but so many people were there many were left out .", "storylet_id": "221573"}], [{"original_text": "Too of the big wigs met later on in the evening. ", "album_id": "72157623446826118", "photo_flickr_id": "4361810743", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44314", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "too of the big wigs met later on in the evening .", "storylet_id": "221574"}], [{"original_text": "The couple walked through the park towards the carnival.", "album_id": "72157623751775927", "photo_flickr_id": "4528293943", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44315", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple walked through the park towards the carnival .", "storylet_id": "221575"}], [{"original_text": "They took their time stopping to enjoy the landscape.", "album_id": "72157623751775927", "photo_flickr_id": "4528293999", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44315", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took their time stopping to enjoy the landscape .", "storylet_id": "221576"}], [{"original_text": "Their dog also took his time, stopping to sniff the landscape.", "album_id": "72157623751775927", "photo_flickr_id": "4528926516", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44315", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their dog also took his time , stopping to sniff the landscape .", "storylet_id": "221577"}], [{"original_text": "They took the dog on the ferris wheel.", "album_id": "72157623751775927", "photo_flickr_id": "4531224712", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44315", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they took the dog on the ferris wheel .", "storylet_id": "221578"}], [{"original_text": "Then they enjoyed the fireworks display.", "album_id": "72157623751775927", "photo_flickr_id": "4531225198", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44315", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then they enjoyed the fireworks display .", "storylet_id": "221579"}], [{"original_text": "It was a beautiful spring day. Perfect for a race. ", "album_id": "72157623751775927", "photo_flickr_id": "4528926276", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "44316", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful spring day . perfect for a race .", "storylet_id": "221580"}], [{"original_text": "These racers strove to push their sled the fastest. ", "album_id": "72157623751775927", "photo_flickr_id": "4528926790", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "44316", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these racers strove to push their sled the fastest .", "storylet_id": "221581"}], [{"original_text": "Then the racer would run with it. ", "album_id": "72157623751775927", "photo_flickr_id": "4528294227", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "44316", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the racer would run with it .", "storylet_id": "221582"}], [{"original_text": "The women had practiced all year on their skills. ", "album_id": "72157623751775927", "photo_flickr_id": "4528926600", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "44316", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the women had practiced all year on their skills .", "storylet_id": "221583"}], [{"original_text": "This scottie dog really like the race, he thought he would enjoy running too. ", "album_id": "72157623751775927", "photo_flickr_id": "4528926516", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "44316", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this scottie dog really like the race , he thought he would enjoy running too .", "storylet_id": "221584"}], [{"original_text": "I took a walk to the carnival today since it was a great day.", "album_id": "72157623751775927", "photo_flickr_id": "4528293943", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "44317", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a walk to the carnival today since it was a great day .", "storylet_id": "221585"}], [{"original_text": "My sister took this picture next to the cherry blossom tree.", "album_id": "72157623751775927", "photo_flickr_id": "4528293999", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "44317", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my sister took this picture next to the cherry blossom tree .", "storylet_id": "221586"}], [{"original_text": "She even brought her dog with her.", "album_id": "72157623751775927", "photo_flickr_id": "4528926516", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "44317", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she even brought her dog with her .", "storylet_id": "221587"}], [{"original_text": "The ferris wheel was really pretty lit up.", "album_id": "72157623751775927", "photo_flickr_id": "4531224712", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "44317", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ferris wheel was really pretty lit up .", "storylet_id": "221588"}], [{"original_text": "The night was ended with a firework show, we took lots of pictures of it.", "album_id": "72157623751775927", "photo_flickr_id": "4531225198", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "44317", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night was ended with a firework show , we took lots of pictures of it .", "storylet_id": "221589"}], [{"original_text": "I was looking forward to spending the day with my girlfriend.", "album_id": "72157623751775927", "photo_flickr_id": "4528293943", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "44318", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was looking forward to spending the day with my girlfriend .", "storylet_id": "221590"}], [{"original_text": "As soon as I saw her walking across the park, I got even more excited.", "album_id": "72157623751775927", "photo_flickr_id": "4528293999", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "44318", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as soon as i saw her walking across the park , i got even more excited .", "storylet_id": "221591"}], [{"original_text": "We both love animals, so we had to smile when we saw this dog on our way to the amusement park.", "album_id": "72157623751775927", "photo_flickr_id": "4528926516", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "44318", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we both love animals , so we had to smile when we saw this dog on our way to the amusement park .", "storylet_id": "221592"}], [{"original_text": "I convinced her to ride with me on the Ferris wheel, and we had such a great time.", "album_id": "72157623751775927", "photo_flickr_id": "4531224712", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "44318", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i convinced her to ride with me on the organization wheel , and we had such a great time .", "storylet_id": "221593"}], [{"original_text": "The best part was watching the fireworks go off when we were at the top of the Ferris wheel!", "album_id": "72157623751775927", "photo_flickr_id": "4531225198", "setting": "last-3-pick-old-and-tell", "worker_id": "4PYVVL3KKOC3RW8", "story_id": "44318", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part was watching the fireworks go off when we were at the top of the ferris wheel !", "storylet_id": "221594"}], [{"original_text": "We went for a nice walk through the park. ", "album_id": "72157623751775927", "photo_flickr_id": "4528293943", "setting": "last-3-pick-old-and-tell", "worker_id": "W2DKDUHQA5GTBD5", "story_id": "44319", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went for a nice walk through the park .", "storylet_id": "221595"}], [{"original_text": "I wanted to get a photo of this beautiful cherry tree. ", "album_id": "72157623751775927", "photo_flickr_id": "4528293999", "setting": "last-3-pick-old-and-tell", "worker_id": "W2DKDUHQA5GTBD5", "story_id": "44319", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i wanted to get a photo of this beautiful cherry tree .", "storylet_id": "221596"}], [{"original_text": "This dog looks lost. I hope he finds his way back home. ", "album_id": "72157623751775927", "photo_flickr_id": "4528926516", "setting": "last-3-pick-old-and-tell", "worker_id": "W2DKDUHQA5GTBD5", "story_id": "44319", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this dog looks lost . i hope he finds his way back home .", "storylet_id": "221597"}], [{"original_text": "Time for a few rides before the fireworks. ", "album_id": "72157623751775927", "photo_flickr_id": "4531224712", "setting": "last-3-pick-old-and-tell", "worker_id": "W2DKDUHQA5GTBD5", "story_id": "44319", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "time for a few rides before the fireworks .", "storylet_id": "221598"}], [{"original_text": "Ah, time for the fireworks display. It looks awesome. ", "album_id": "72157623751775927", "photo_flickr_id": "4531225198", "setting": "last-3-pick-old-and-tell", "worker_id": "W2DKDUHQA5GTBD5", "story_id": "44319", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ah , time for the fireworks display . it looks awesome .", "storylet_id": "221599"}], [{"original_text": "The Walters are taking a cruise on this ship. ", "album_id": "72157626393855041", "photo_flickr_id": "5627242201", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44320", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the walters are taking a cruise on this ship .", "storylet_id": "221600"}], [{"original_text": "Today they rented a small paddle boat to come to the shore and enjoy the beach. ", "album_id": "72157626393855041", "photo_flickr_id": "5627818850", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44320", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "today they rented a small paddle boat to come to the shore and enjoy the beach .", "storylet_id": "221601"}], [{"original_text": "They are collecting sea shells to save as souvenirs. ", "album_id": "72157626393855041", "photo_flickr_id": "5627823612", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44320", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they are collecting sea shells to save as souvenirs .", "storylet_id": "221602"}], [{"original_text": "Other people chose to use kayaks and explore the waters. ", "album_id": "72157626393855041", "photo_flickr_id": "5627821004", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44320", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other people chose to use kayaks and explore the waters .", "storylet_id": "221603"}], [{"original_text": "The ship then pulled into port a few days later for the end of the trip. ", "album_id": "72157626393855041", "photo_flickr_id": "5627240247", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44320", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ship then pulled into port a few days later for the end of the trip .", "storylet_id": "221604"}], [{"original_text": "The cruise was a great vacation idea.", "album_id": "72157626393855041", "photo_flickr_id": "5627242201", "setting": "first-2-pick-and-tell", "worker_id": "4ZTAXTEY036MV0Q", "story_id": "44321", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cruise was a great vacation idea .", "storylet_id": "221605"}], [{"original_text": "There were excursions to the beach on a sunny day.", "album_id": "72157626393855041", "photo_flickr_id": "5627822612", "setting": "first-2-pick-and-tell", "worker_id": "4ZTAXTEY036MV0Q", "story_id": "44321", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were excursions to the beach on a sunny day .", "storylet_id": "221606"}], [{"original_text": "The water was so clear you could see the bottom.", "album_id": "72157626393855041", "photo_flickr_id": "5627819544", "setting": "first-2-pick-and-tell", "worker_id": "4ZTAXTEY036MV0Q", "story_id": "44321", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water was so clear you could see the bottom .", "storylet_id": "221607"}], [{"original_text": "Paddleboating in the ocean was one of the most fun things to do.", "album_id": "72157626393855041", "photo_flickr_id": "5627818850", "setting": "first-2-pick-and-tell", "worker_id": "4ZTAXTEY036MV0Q", "story_id": "44321", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "paddleboating in the ocean was one of the most fun things to do .", "storylet_id": "221608"}], [{"original_text": "At the end of the day, walking the beaches in search of shells was relaxing.", "album_id": "72157626393855041", "photo_flickr_id": "5627823612", "setting": "first-2-pick-and-tell", "worker_id": "4ZTAXTEY036MV0Q", "story_id": "44321", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , walking the beaches in search of shells was relaxing .", "storylet_id": "221609"}], [{"original_text": "We went on a cruise!", "album_id": "72157626393855041", "photo_flickr_id": "5627242201", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "44322", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on a cruise !", "storylet_id": "221610"}], [{"original_text": "We had so much fun canoing", "album_id": "72157626393855041", "photo_flickr_id": "5627818850", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "44322", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had so much fun canoing", "storylet_id": "221611"}], [{"original_text": "We even got to walk on the beach.", "album_id": "72157626393855041", "photo_flickr_id": "5627823612", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "44322", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even got to walk on the beach .", "storylet_id": "221612"}], [{"original_text": "It was so gorgeous on the beach.", "album_id": "72157626393855041", "photo_flickr_id": "5627821004", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "44322", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was so gorgeous on the beach .", "storylet_id": "221613"}], [{"original_text": "The palm trees were so nice as well.", "album_id": "72157626393855041", "photo_flickr_id": "5627240247", "setting": "last-3-pick-old-and-tell", "worker_id": "BE0UMCMPK97LGB0", "story_id": "44322", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the palm trees were so nice as well .", "storylet_id": "221614"}], [{"original_text": "Ned took us on a cruise.", "album_id": "72157626393855041", "photo_flickr_id": "5627242201", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44323", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] took us on a cruise .", "storylet_id": "221615"}], [{"original_text": "Imagine being in paradise for a couple days.", "album_id": "72157626393855041", "photo_flickr_id": "5627822612", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44323", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "imagine being in paradise for a couple days .", "storylet_id": "221616"}], [{"original_text": "The water makes me feel so free.", "album_id": "72157626393855041", "photo_flickr_id": "5627819544", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44323", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water makes me feel so free .", "storylet_id": "221617"}], [{"original_text": "Rafting can be a great way to bond with people.", "album_id": "72157626393855041", "photo_flickr_id": "5627818850", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44323", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "rafting can be a great way to bond with people .", "storylet_id": "221618"}], [{"original_text": "Our son had a good time squishing the sand between his toes. ", "album_id": "72157626393855041", "photo_flickr_id": "5627823612", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44323", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our son had a good time squishing the sand between his toes .", "storylet_id": "221619"}], [{"original_text": "Our boat docked in Grand Caymen. ", "album_id": "72157626393855041", "photo_flickr_id": "5627242201", "setting": "last-3-pick-old-and-tell", "worker_id": "40AX84MUBFGEB2T", "story_id": "44324", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our boat docked in location location .", "storylet_id": "221620"}], [{"original_text": "The beaches were beautiful and we were ready for some sun. ", "album_id": "72157626393855041", "photo_flickr_id": "5627822612", "setting": "last-3-pick-old-and-tell", "worker_id": "40AX84MUBFGEB2T", "story_id": "44324", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the beaches were beautiful and we were ready for some sun .", "storylet_id": "221621"}], [{"original_text": "The water was crystal clear, perfect for snorkeling. ", "album_id": "72157626393855041", "photo_flickr_id": "5627819544", "setting": "last-3-pick-old-and-tell", "worker_id": "40AX84MUBFGEB2T", "story_id": "44324", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the water was crystal clear , perfect for snorkeling .", "storylet_id": "221622"}], [{"original_text": "We took the paddle boats out to explore. ", "album_id": "72157626393855041", "photo_flickr_id": "5627818850", "setting": "last-3-pick-old-and-tell", "worker_id": "40AX84MUBFGEB2T", "story_id": "44324", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took the paddle boats out to explore .", "storylet_id": "221623"}], [{"original_text": "Then we hunted on the beach for some shells to take home. ", "album_id": "72157626393855041", "photo_flickr_id": "5627823612", "setting": "last-3-pick-old-and-tell", "worker_id": "40AX84MUBFGEB2T", "story_id": "44324", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we hunted on the beach for some shells to take home .", "storylet_id": "221624"}], [{"original_text": "They weren't sure what to think when they arrived at the concert...", "album_id": "72157623956990589", "photo_flickr_id": "4615923335", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44325", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were n't sure what to think when they arrived at the concert ...", "storylet_id": "221625"}], [{"original_text": "They had been told that she made many different faces..", "album_id": "72157623956990589", "photo_flickr_id": "4615924631", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44325", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had been told that she made many different faces..", "storylet_id": "221626"}], [{"original_text": "However, she pulled out the mandolin and won them over.", "album_id": "72157623956990589", "photo_flickr_id": "4615925989", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44325", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however , she pulled out the mandolin and won them over .", "storylet_id": "221627"}], [{"original_text": "And, the last face she made was beautiful.", "album_id": "72157623956990589", "photo_flickr_id": "4615927579", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44325", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , the last face she made was beautiful .", "storylet_id": "221628"}], [{"original_text": "They cheered for her as she left the stage and were glad they came!", "album_id": "72157623956990589", "photo_flickr_id": "4616546510", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44325", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they cheered for her as she left the stage and were glad they came !", "storylet_id": "221629"}], [{"original_text": "This woman is a triple threat. ", "album_id": "72157623956990589", "photo_flickr_id": "4615927579", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "44326", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this woman is a triple threat .", "storylet_id": "221630"}], [{"original_text": "She can sing.", "album_id": "72157623956990589", "photo_flickr_id": "4615925989", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "44326", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she can sing .", "storylet_id": "221631"}], [{"original_text": "She can tell a joke. ", "album_id": "72157623956990589", "photo_flickr_id": "4615923335", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "44326", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she can tell a joke .", "storylet_id": "221632"}], [{"original_text": "She can be very flirty.", "album_id": "72157623956990589", "photo_flickr_id": "4616544444", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "44326", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she can be very flirty .", "storylet_id": "221633"}], [{"original_text": "The audience clapped long and hard. They loved her performance. ", "album_id": "72157623956990589", "photo_flickr_id": "4616546510", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "44326", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the audience clapped long and hard . they loved her performance .", "storylet_id": "221634"}], [{"original_text": "My sister's first outfit looked like a marching band uniform as she sang onstage.", "album_id": "72157623956990589", "photo_flickr_id": "4615923335", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44327", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister 's first outfit looked like a marching band uniform as she sang onstage .", "storylet_id": "221635"}], [{"original_text": "She quickly changed to a black evening gown that covered her shoulders.", "album_id": "72157623956990589", "photo_flickr_id": "4615924631", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44327", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she quickly changed to a black evening gown that covered her shoulders .", "storylet_id": "221636"}], [{"original_text": "She switched it up halfway through with a red dress that showed off her tattoos.", "album_id": "72157623956990589", "photo_flickr_id": "4615925989", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44327", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she switched it up halfway through with a red dress that showed off her tattoos .", "storylet_id": "221637"}], [{"original_text": "She ended the night with a green dress that covered everything.", "album_id": "72157623956990589", "photo_flickr_id": "4615927579", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44327", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she ended the night with a green dress that covered everything .", "storylet_id": "221638"}], [{"original_text": "But she got hot and decided to roll up her sleeves at the end to show off her tattoos.", "album_id": "72157623956990589", "photo_flickr_id": "4616546510", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44327", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but she got hot and decided to roll up her sleeves at the end to show off her tattoos .", "storylet_id": "221639"}], [{"original_text": "a pop star arrived for her performance", "album_id": "72157623956990589", "photo_flickr_id": "4615923335", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44328", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a pop star arrived for her performance", "storylet_id": "221640"}], [{"original_text": "she sang songs for the crowd all night", "album_id": "72157623956990589", "photo_flickr_id": "4615924631", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44328", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she sang songs for the crowd all night", "storylet_id": "221641"}], [{"original_text": "at one point her songs became very emotional", "album_id": "72157623956990589", "photo_flickr_id": "4615925989", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44328", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at one point her songs became very emotional", "storylet_id": "221642"}], [{"original_text": "the crowd enjoyed every second of the song", "album_id": "72157623956990589", "photo_flickr_id": "4615927579", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44328", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowd enjoyed every second of the song", "storylet_id": "221643"}], [{"original_text": "she finished after that and concluded her set", "album_id": "72157623956990589", "photo_flickr_id": "4616546510", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44328", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she finished after that and concluded her set", "storylet_id": "221644"}], [{"original_text": "This is a picture of a singer.", "album_id": "72157623956990589", "photo_flickr_id": "4615923335", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "44329", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a singer .", "storylet_id": "221645"}], [{"original_text": "The woman has blonde hair and lots of makeup.", "album_id": "72157623956990589", "photo_flickr_id": "4615924631", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "44329", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the woman has blonde hair and lots of makeup .", "storylet_id": "221646"}], [{"original_text": "The woman is wearing a red dress.", "album_id": "72157623956990589", "photo_flickr_id": "4615925989", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "44329", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the woman is wearing a red dress .", "storylet_id": "221647"}], [{"original_text": "The woman is wearing a green outfit.", "album_id": "72157623956990589", "photo_flickr_id": "4615927579", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "44329", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the woman is wearing a green outfit .", "storylet_id": "221648"}], [{"original_text": "The woman has lots of tattoos.", "album_id": "72157623956990589", "photo_flickr_id": "4616546510", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "44329", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the woman has lots of tattoos .", "storylet_id": "221649"}], [{"original_text": "Old England Day is a great festivity.", "album_id": "72157624754625440", "photo_flickr_id": "4903135793", "setting": "first-2-pick-and-tell", "worker_id": "MLD2V2296233PNW", "story_id": "44330", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "old england day is a great festivity .", "storylet_id": "221650"}], [{"original_text": "Everyone in town dresses up and participates, even the mayor!", "album_id": "72157624754625440", "photo_flickr_id": "4903728324", "setting": "first-2-pick-and-tell", "worker_id": "MLD2V2296233PNW", "story_id": "44330", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone in town dresses up and participates , even the mayor !", "storylet_id": "221651"}], [{"original_text": "Of course Melody is always the fair princess.", "album_id": "72157624754625440", "photo_flickr_id": "4903733790", "setting": "first-2-pick-and-tell", "worker_id": "MLD2V2296233PNW", "story_id": "44330", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course [female] is always the fair princess .", "storylet_id": "221652"}], [{"original_text": "Kelly loves listening to the music at the dance.", "album_id": "72157624754625440", "photo_flickr_id": "4903157047", "setting": "first-2-pick-and-tell", "worker_id": "MLD2V2296233PNW", "story_id": "44330", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] loves listening to the music at the dance .", "storylet_id": "221653"}], [{"original_text": "The costumes are the most fun, especially the masks.", "album_id": "72157624754625440", "photo_flickr_id": "4903750340", "setting": "first-2-pick-and-tell", "worker_id": "MLD2V2296233PNW", "story_id": "44330", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the costumes are the most fun , especially the masks .", "storylet_id": "221654"}], [{"original_text": "The renaissance faire was so much fun.", "album_id": "72157624754625440", "photo_flickr_id": "4903720294", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44331", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the renaissance faire was so much fun .", "storylet_id": "221655"}], [{"original_text": "I dressed up like a princess.", "album_id": "72157624754625440", "photo_flickr_id": "4903733790", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44331", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i dressed up like a princess .", "storylet_id": "221656"}], [{"original_text": "My best friend dressed up like a princess as well.", "album_id": "72157624754625440", "photo_flickr_id": "4903157047", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44331", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my best friend dressed up like a princess as well .", "storylet_id": "221657"}], [{"original_text": "Her Mom decided to look like Marie Antoinette.", "album_id": "72157624754625440", "photo_flickr_id": "4903747120", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44331", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her mom decided to look like [female] [female] .", "storylet_id": "221658"}], [{"original_text": "Yolanda just went in her normal dress.", "album_id": "72157624754625440", "photo_flickr_id": "4903170909", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44331", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] just went in her normal dress .", "storylet_id": "221659"}], [{"original_text": "We found ourselves at a Renaissance type costume party, and it was quite a show.", "album_id": "72157624754625440", "photo_flickr_id": "4903135793", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "44332", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we found ourselves at a renaissance type costume party , and it was quite a show .", "storylet_id": "221660"}], [{"original_text": "The costumes were so realistic. ", "album_id": "72157624754625440", "photo_flickr_id": "4903728324", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "44332", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the costumes were so realistic .", "storylet_id": "221661"}], [{"original_text": "There were princesses and other royalty.", "album_id": "72157624754625440", "photo_flickr_id": "4903733790", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "44332", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were princesses and other royalty .", "storylet_id": "221662"}], [{"original_text": "There were also regular people in costumes from the time.", "album_id": "72157624754625440", "photo_flickr_id": "4903157047", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "44332", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also regular people in costumes from the time .", "storylet_id": "221663"}], [{"original_text": "It was quite a party, and we decided next year that we'd dress up and join in on the fun.", "album_id": "72157624754625440", "photo_flickr_id": "4903750340", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "44332", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was quite a party , and we decided next year that we 'd dress up and join in on the fun .", "storylet_id": "221664"}], [{"original_text": "The renaissance festival has begun.", "album_id": "72157624754625440", "photo_flickr_id": "4903720294", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44333", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the renaissance festival has begun .", "storylet_id": "221665"}], [{"original_text": "A maid of the court rides on a float surrounded by servants.", "album_id": "72157624754625440", "photo_flickr_id": "4903733790", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44333", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a maid of the court rides on a float surrounded by servants .", "storylet_id": "221666"}], [{"original_text": "Her sister sits beside her on a throne she is royalty as well.", "album_id": "72157624754625440", "photo_flickr_id": "4903157047", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44333", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her sister sits beside her on a throne she is royalty as well .", "storylet_id": "221667"}], [{"original_text": "Their mother stands behind them on the float.", "album_id": "72157624754625440", "photo_flickr_id": "4903747120", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44333", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their mother stands behind them on the float .", "storylet_id": "221668"}], [{"original_text": "A girl in the crowd watches interested in what she is seeing.", "album_id": "72157624754625440", "photo_flickr_id": "4903170909", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44333", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a girl in the crowd watches interested in what she is seeing .", "storylet_id": "221669"}], [{"original_text": "I am the guard for the queen do not mess with me.", "album_id": "72157624754625440", "photo_flickr_id": "4903135793", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "44334", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am the guard for the queen do not mess with me .", "storylet_id": "221670"}], [{"original_text": "I am the queens husband I will mess with anyone I want.", "album_id": "72157624754625440", "photo_flickr_id": "4903728324", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "44334", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i am the queens husband i will mess with anyone i want .", "storylet_id": "221671"}], [{"original_text": "I am the queens lady, she would not like this bickering.", "album_id": "72157624754625440", "photo_flickr_id": "4903733790", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "44334", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i am the queens lady , she would not like this bickering .", "storylet_id": "221672"}], [{"original_text": "I am the queens mistress, stay away from m'lady.", "album_id": "72157624754625440", "photo_flickr_id": "4903157047", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "44334", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i am the queens mistress , stay away from m'lady .", "storylet_id": "221673"}], [{"original_text": "I am the queen all OFF with all of their heads!", "album_id": "72157624754625440", "photo_flickr_id": "4903750340", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "44334", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am the queen all off with all of their heads !", "storylet_id": "221674"}], [{"original_text": "Coco Fest was held in downtown Chicago.", "album_id": "72157624526951968", "photo_flickr_id": "4804677684", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "44335", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "coco fest was held in downtown location .", "storylet_id": "221675"}], [{"original_text": "It featured performers from many countries.", "album_id": "72157624526951968", "photo_flickr_id": "4804678920", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "44335", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it featured performers from many countries .", "storylet_id": "221676"}], [{"original_text": "DJ Pauli Stuf'ns dropped the beat with this speakers.", "album_id": "72157624526951968", "photo_flickr_id": "4804679222", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "44335", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "organization organization organization dropped the beat with this speakers .", "storylet_id": "221677"}], [{"original_text": "The crazy hippies dropped it like it was super hot.", "album_id": "72157624526951968", "photo_flickr_id": "4804679890", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "44335", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crazy hippies dropped it like it was super hot .", "storylet_id": "221678"}], [{"original_text": "The karate masters decided to perform their skills on the hippies.", "album_id": "72157624526951968", "photo_flickr_id": "4804680944", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "44335", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the karate masters decided to perform their skills on the hippies .", "storylet_id": "221679"}], [{"original_text": "The people held a flag with flags of different countries on it.", "album_id": "72157624526951968", "photo_flickr_id": "4804678920", "setting": "first-2-pick-and-tell", "worker_id": "4BLJHWUPZTSC907", "story_id": "44336", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people held a flag with flags of different countries on it .", "storylet_id": "221680"}], [{"original_text": "The black and white picture shows a person with their arms up.", "album_id": "72157624526951968", "photo_flickr_id": "4804049463", "setting": "first-2-pick-and-tell", "worker_id": "4BLJHWUPZTSC907", "story_id": "44336", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the black and white picture shows a person with their arms up .", "storylet_id": "221681"}], [{"original_text": "The people in the parade are drumming on their drums.", "album_id": "72157624526951968", "photo_flickr_id": "4804049711", "setting": "first-2-pick-and-tell", "worker_id": "4BLJHWUPZTSC907", "story_id": "44336", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people in the parade are drumming on their drums .", "storylet_id": "221682"}], [{"original_text": "A woman in a red bikini is posing.", "album_id": "72157624526951968", "photo_flickr_id": "4804050415", "setting": "first-2-pick-and-tell", "worker_id": "4BLJHWUPZTSC907", "story_id": "44336", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a woman in a red bikini is posing .", "storylet_id": "221683"}], [{"original_text": "The people in the parade are wearing karate outfits and making karate moves.", "album_id": "72157624526951968", "photo_flickr_id": "4804680944", "setting": "first-2-pick-and-tell", "worker_id": "4BLJHWUPZTSC907", "story_id": "44336", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the people in the parade are wearing karate outfits and making karate moves .", "storylet_id": "221684"}], [{"original_text": "there was a big festival in town", "album_id": "72157624526951968", "photo_flickr_id": "4804677684", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44337", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a big festival in town", "storylet_id": "221685"}], [{"original_text": "a big flag was flown to commemorate", "album_id": "72157624526951968", "photo_flickr_id": "4804678920", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44337", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a big flag was flown to commemorate", "storylet_id": "221686"}], [{"original_text": "a man was pulled on a chair through the parade", "album_id": "72157624526951968", "photo_flickr_id": "4804679222", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44337", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man was pulled on a chair through the parade", "storylet_id": "221687"}], [{"original_text": "dancers performed behind him", "album_id": "72157624526951968", "photo_flickr_id": "4804679890", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44337", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dancers performed behind him", "storylet_id": "221688"}], [{"original_text": "a karate crew showed up to show off some tricks", "album_id": "72157624526951968", "photo_flickr_id": "4804680944", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44337", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a karate crew showed up to show off some tricks", "storylet_id": "221689"}], [{"original_text": "We gathered for the parade and had a wonderful time.", "album_id": "72157624526951968", "photo_flickr_id": "4804678920", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44338", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we gathered for the parade and had a wonderful time .", "storylet_id": "221690"}], [{"original_text": "Here I am throwing my hands up to my friends that somehow found me among the big crowed.", "album_id": "72157624526951968", "photo_flickr_id": "4804049463", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44338", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here i am throwing my hands up to my friends that somehow found me among the big crowed .", "storylet_id": "221691"}], [{"original_text": "Wow! Never heard this type of music before.", "album_id": "72157624526951968", "photo_flickr_id": "4804049711", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44338", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "wow ! never heard this type of music before .", "storylet_id": "221692"}], [{"original_text": "The dancers were phenomenal. ", "album_id": "72157624526951968", "photo_flickr_id": "4804050415", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44338", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dancers were phenomenal .", "storylet_id": "221693"}], [{"original_text": "The karate kids were something out of a movie. Definitely don't want to mess with these guys.", "album_id": "72157624526951968", "photo_flickr_id": "4804680944", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44338", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the karate kids were something out of a movie . definitely do n't want to mess with these guys .", "storylet_id": "221694"}], [{"original_text": "A tourist goes to a heritage day parade. He loves the flag.", "album_id": "72157624526951968", "photo_flickr_id": "4804678920", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "44339", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a tourist goes to a heritage day parade . he loves the flag .", "storylet_id": "221695"}], [{"original_text": "He records people dancing.", "album_id": "72157624526951968", "photo_flickr_id": "4804049463", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "44339", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he records people dancing .", "storylet_id": "221696"}], [{"original_text": "Then, a marching band walks down the street.", "album_id": "72157624526951968", "photo_flickr_id": "4804049711", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "44339", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then , a marching band walks down the street .", "storylet_id": "221697"}], [{"original_text": "He thinks this lady is attractive, so he takes her picture.", "album_id": "72157624526951968", "photo_flickr_id": "4804050415", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "44339", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he thinks this lady is attractive , so he takes her picture .", "storylet_id": "221698"}], [{"original_text": "Then, the local karate club does their performance. ", "album_id": "72157624526951968", "photo_flickr_id": "4804680944", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "44339", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then , the local karate club does their performance .", "storylet_id": "221699"}], [{"original_text": "We went to the parade.", "album_id": "72157623350425121", "photo_flickr_id": "4374093012", "setting": "first-2-pick-and-tell", "worker_id": "KESG6N5MCW2GFQX", "story_id": "44340", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the parade .", "storylet_id": "221700"}], [{"original_text": "There were many people there in costumes.", "album_id": "72157623350425121", "photo_flickr_id": "4373339805", "setting": "first-2-pick-and-tell", "worker_id": "KESG6N5MCW2GFQX", "story_id": "44340", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many people there in costumes .", "storylet_id": "221701"}], [{"original_text": "We had a wonderful time.", "album_id": "72157623350425121", "photo_flickr_id": "4373338763", "setting": "first-2-pick-and-tell", "worker_id": "KESG6N5MCW2GFQX", "story_id": "44340", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a wonderful time .", "storylet_id": "221702"}], [{"original_text": "Some of the costumes were more scary than others. ", "album_id": "72157623350425121", "photo_flickr_id": "4374094286", "setting": "first-2-pick-and-tell", "worker_id": "KESG6N5MCW2GFQX", "story_id": "44340", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the costumes were more scary than others .", "storylet_id": "221703"}], [{"original_text": "Some costumes were simply beautiful.", "album_id": "72157623350425121", "photo_flickr_id": "4373341119", "setting": "first-2-pick-and-tell", "worker_id": "KESG6N5MCW2GFQX", "story_id": "44340", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some costumes were simply beautiful .", "storylet_id": "221704"}], [{"original_text": "The parades were well done.", "album_id": "72157623350425121", "photo_flickr_id": "4373338635", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44341", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parades were well done .", "storylet_id": "221705"}], [{"original_text": "We saw many well designed floats.", "album_id": "72157623350425121", "photo_flickr_id": "4365958591", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44341", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw many well designed floats .", "storylet_id": "221706"}], [{"original_text": "The costumes were colorful and fun.", "album_id": "72157623350425121", "photo_flickr_id": "4373338763", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44341", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the costumes were colorful and fun .", "storylet_id": "221707"}], [{"original_text": "The water tower float was the most unique.", "album_id": "72157623350425121", "photo_flickr_id": "4373338893", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44341", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the water tower float was the most unique .", "storylet_id": "221708"}], [{"original_text": "The day was festive and fun.", "album_id": "72157623350425121", "photo_flickr_id": "4373339805", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44341", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day was festive and fun .", "storylet_id": "221709"}], [{"original_text": "The parade was amazing. Other countries know how to have a good time.", "album_id": "72157623350425121", "photo_flickr_id": "4374093012", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44342", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parade was amazing . other countries know how to have a good time .", "storylet_id": "221710"}], [{"original_text": "Phenomenal parade was a bit weary of attending at first, but everyone was real cool.", "album_id": "72157623350425121", "photo_flickr_id": "4373339805", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44342", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "phenomenal parade was a bit weary of attending at first , but everyone was real cool .", "storylet_id": "221711"}], [{"original_text": "This woman really knew how to have a good time.", "album_id": "72157623350425121", "photo_flickr_id": "4373338763", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44342", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this woman really knew how to have a good time .", "storylet_id": "221712"}], [{"original_text": "He scared me at first. Was thinking about running back to the hotel.", "album_id": "72157623350425121", "photo_flickr_id": "4374094286", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44342", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he scared me at first . was thinking about running back to the hotel .", "storylet_id": "221713"}], [{"original_text": "She caught my eye real cute, and wore her costume so elegantly.", "album_id": "72157623350425121", "photo_flickr_id": "4373341119", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44342", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she caught my eye real cute , and wore her costume so elegantly .", "storylet_id": "221714"}], [{"original_text": "This is a picture of a parade.", "album_id": "72157623350425121", "photo_flickr_id": "4374093012", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "44343", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a picture of a parade .", "storylet_id": "221715"}], [{"original_text": "People are dressing up.", "album_id": "72157623350425121", "photo_flickr_id": "4373339805", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "44343", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people are dressing up .", "storylet_id": "221716"}], [{"original_text": "This is a picture of people dressing up.", "album_id": "72157623350425121", "photo_flickr_id": "4373338763", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "44343", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is a picture of people dressing up .", "storylet_id": "221717"}], [{"original_text": "A woman is wearing a white wig.", "album_id": "72157623350425121", "photo_flickr_id": "4374094286", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "44343", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a woman is wearing a white wig .", "storylet_id": "221718"}], [{"original_text": "This is a picture of a woman wearing red.", "album_id": "72157623350425121", "photo_flickr_id": "4373341119", "setting": "last-3-pick-old-and-tell", "worker_id": "WJ1FERADQCZBS51", "story_id": "44343", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of a woman wearing red .", "storylet_id": "221719"}], [{"original_text": "The whole family went to see the parade.", "album_id": "72157623350425121", "photo_flickr_id": "4374093012", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44344", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family went to see the parade .", "storylet_id": "221720"}], [{"original_text": "The was a bunch of people in blue and a big float.", "album_id": "72157623350425121", "photo_flickr_id": "4373339805", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44344", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the was a bunch of people in blue and a big float .", "storylet_id": "221721"}], [{"original_text": "The people in the parade were colorful.", "album_id": "72157623350425121", "photo_flickr_id": "4373338763", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44344", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people in the parade were colorful .", "storylet_id": "221722"}], [{"original_text": "This person looked like a medic with a gun.", "album_id": "72157623350425121", "photo_flickr_id": "4374094286", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44344", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this person looked like a medic with a gun .", "storylet_id": "221723"}], [{"original_text": "This lady had a neat red costume and cool red makeup.", "album_id": "72157623350425121", "photo_flickr_id": "4373341119", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44344", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this lady had a neat red costume and cool red makeup .", "storylet_id": "221724"}], [{"original_text": "We arrived at the ice show and immediately started taking pictures.", "album_id": "72157625971712783", "photo_flickr_id": "5462367607", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44345", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at the ice show and immediately started taking pictures .", "storylet_id": "221725"}], [{"original_text": "There were some beautiful sculptures and Alex was exited.", "album_id": "72157625971712783", "photo_flickr_id": "5462368033", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44345", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were some beautiful sculptures and [male] was exited .", "storylet_id": "221726"}], [{"original_text": "Our favorite was the Star of David sculpture....", "album_id": "72157625971712783", "photo_flickr_id": "5462969644", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44345", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our favorite was the star of [male] sculpture ... .", "storylet_id": "221727"}], [{"original_text": "And, the line sculptures in front of the castle.", "album_id": "72157625971712783", "photo_flickr_id": "5462969738", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44345", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , the line sculptures in front of the castle .", "storylet_id": "221728"}], [{"original_text": "Apparently, Alex had too much to drink and kicked a statue and I had to take him home.", "album_id": "72157625971712783", "photo_flickr_id": "5462368493", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44345", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "apparently , [male] had too much to drink and kicked a statue and i had to take him home .", "storylet_id": "221729"}], [{"original_text": "In the town square was holiday ice sculptures done and up for display.There were so many it was so interesting to see.", "album_id": "72157625971712783", "photo_flickr_id": "5462367937", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44346", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the town square was holiday ice sculptures done and up for display.there were so many it was so interesting to see .", "storylet_id": "221730"}], [{"original_text": "Snowflake ice sculpture on the ice wall.It was one of the smaller ones I didn't really care for but I still like it.", "album_id": "72157625971712783", "photo_flickr_id": "5462969644", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44346", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "snowflake ice sculpture on the ice wall.it was one of the smaller ones i did n't really care for but i still like it .", "storylet_id": "221731"}], [{"original_text": "One of the snoopy characters sitting on the bench.I loved snoopy as a kid.", "album_id": "72157625971712783", "photo_flickr_id": "5462368595", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44346", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the snoopy characters sitting on the bench.i loved snoopy as a kid .", "storylet_id": "221732"}], [{"original_text": "So many great sculptures to look at, I wonder how long they stay up or how long it takes to melt.", "album_id": "72157625971712783", "photo_flickr_id": "5462368815", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44346", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so many great sculptures to look at , i wonder how long they stay up or how long it takes to melt .", "storylet_id": "221733"}], [{"original_text": "This had to take a long time to make.I wonder how they did it.I love this time of year.", "album_id": "72157625971712783", "photo_flickr_id": "5462368937", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44346", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this had to take a long time to make.i wonder how they did it.i love this time of year .", "storylet_id": "221734"}], [{"original_text": "The ice sculptures in the park were beautiful and detailed. They were carvings of different snowflakes.", "album_id": "72157625971712783", "photo_flickr_id": "5462367937", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44347", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ice sculptures in the park were beautiful and detailed . they were carvings of different snowflakes .", "storylet_id": "221735"}], [{"original_text": "One looked like a leaf.", "album_id": "72157625971712783", "photo_flickr_id": "5462969644", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44347", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one looked like a leaf .", "storylet_id": "221736"}], [{"original_text": "There was a bronze statue on the bench nearby, watching it all.", "album_id": "72157625971712783", "photo_flickr_id": "5462368595", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44347", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a bronze statue on the bench nearby , watching it all .", "storylet_id": "221737"}], [{"original_text": "Other sculptures formed a gate.", "album_id": "72157625971712783", "photo_flickr_id": "5462368815", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44347", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other sculptures formed a gate .", "storylet_id": "221738"}], [{"original_text": "And still others were of animals.", "album_id": "72157625971712783", "photo_flickr_id": "5462368937", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44347", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and still others were of animals .", "storylet_id": "221739"}], [{"original_text": "I would be smiling to if I carved that!", "album_id": "72157625971712783", "photo_flickr_id": "5462367607", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "44348", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i would be smiling to if i carved that !", "storylet_id": "221740"}], [{"original_text": "Another VERY creative carving.", "album_id": "72157625971712783", "photo_flickr_id": "5462368033", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "44348", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "another very creative carving .", "storylet_id": "221741"}], [{"original_text": "A snowflake!", "album_id": "72157625971712783", "photo_flickr_id": "5462969644", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "44348", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a snowflake !", "storylet_id": "221742"}], [{"original_text": "A lot of folks came out despite the cold!", "album_id": "72157625971712783", "photo_flickr_id": "5462969738", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "44348", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a lot of folks came out despite the cold !", "storylet_id": "221743"}], [{"original_text": "This was on the last day.", "album_id": "72157625971712783", "photo_flickr_id": "5462368493", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "44348", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was on the last day .", "storylet_id": "221744"}], [{"original_text": "I arrived just as it was starting to get dark to view the ice sculptures. ", "album_id": "72157625971712783", "photo_flickr_id": "5462367937", "setting": "last-3-pick-old-and-tell", "worker_id": "W2DKDUHQA5GTBD5", "story_id": "44349", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i arrived just as it was starting to get dark to view the ice sculptures .", "storylet_id": "221745"}], [{"original_text": "I love this snowflake design. ", "album_id": "72157625971712783", "photo_flickr_id": "5462969644", "setting": "last-3-pick-old-and-tell", "worker_id": "W2DKDUHQA5GTBD5", "story_id": "44349", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love this snowflake design .", "storylet_id": "221746"}], [{"original_text": "Look at the bronzed Charlie Brown character. ", "album_id": "72157625971712783", "photo_flickr_id": "5462368595", "setting": "last-3-pick-old-and-tell", "worker_id": "W2DKDUHQA5GTBD5", "story_id": "44349", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "look at the bronzed [male] brown character .", "storylet_id": "221747"}], [{"original_text": "This one looks very delicate. I hope it lasts until judging. ", "album_id": "72157625971712783", "photo_flickr_id": "5462368815", "setting": "last-3-pick-old-and-tell", "worker_id": "W2DKDUHQA5GTBD5", "story_id": "44349", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one looks very delicate . i hope it lasts until judging .", "storylet_id": "221748"}], [{"original_text": "Here is the last one to see. I love seeing these designs. ", "album_id": "72157625971712783", "photo_flickr_id": "5462368937", "setting": "last-3-pick-old-and-tell", "worker_id": "W2DKDUHQA5GTBD5", "story_id": "44349", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is the last one to see . i love seeing these designs .", "storylet_id": "221749"}], [{"original_text": "The parade was always a fun time for friends to get out, dress silly, and drink a lot of alcohol!", "album_id": "72157625973841677", "photo_flickr_id": "5463856822", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44350", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parade was always a fun time for friends to get out , dress silly , and drink a lot of alcohol !", "storylet_id": "221750"}], [{"original_text": "Almost everyone wore a costume; the more outrageous, the better!", "album_id": "72157625973841677", "photo_flickr_id": "5463259675", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44350", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "almost everyone wore a costume ; the more outrageous , the better !", "storylet_id": "221751"}], [{"original_text": "Red was a popular color chosen by many.", "album_id": "72157625973841677", "photo_flickr_id": "5463873690", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44350", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "red was a popular color chosen by many .", "storylet_id": "221752"}], [{"original_text": "The only people that weren't completely drunk my midday were the ever serious marching band.", "album_id": "72157625973841677", "photo_flickr_id": "5463874240", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44350", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the only people that were n't completely drunk my midday were the ever serious marching band .", "storylet_id": "221753"}], [{"original_text": "After the parade there was a free concert.", "album_id": "72157625973841677", "photo_flickr_id": "5463362535", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44350", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the parade there was a free concert .", "storylet_id": "221754"}], [{"original_text": "Debbie Dallas went out on Halloween.", "album_id": "72157625973841677", "photo_flickr_id": "5463255573", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "44351", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] [male] went out on halloween .", "storylet_id": "221755"}], [{"original_text": "She met a world famous mariachi singer.", "album_id": "72157625973841677", "photo_flickr_id": "5463857224", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "44351", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she met a world famous mariachi singer .", "storylet_id": "221756"}], [{"original_text": "She also found another fellow Viking named Steve.", "album_id": "72157625973841677", "photo_flickr_id": "5463859472", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "44351", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she also found another fellow viking named [male] .", "storylet_id": "221757"}], [{"original_text": "A couple intoxicated women threw potatoes at her.", "album_id": "72157625973841677", "photo_flickr_id": "5463873690", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "44351", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a couple intoxicated women threw potatoes at her .", "storylet_id": "221758"}], [{"original_text": "But she was saved by this whimsical old man.", "album_id": "72157625973841677", "photo_flickr_id": "5463278037", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "44351", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but she was saved by this whimsical old man .", "storylet_id": "221759"}], [{"original_text": "I wore a giant cheese on my helmet as part of my costume. My friend had elaborate roses.", "album_id": "72157625973841677", "photo_flickr_id": "5463856822", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44352", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i wore a giant cheese on my helmet as part of my costume . my friend had elaborate roses .", "storylet_id": "221760"}], [{"original_text": "At the party, we met others who looked wore what looked like a chef uniform and a wedding outfit.", "album_id": "72157625973841677", "photo_flickr_id": "5463259675", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44352", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at the party , we met others who looked wore what looked like a chef uniform and a wedding outfit .", "storylet_id": "221761"}], [{"original_text": "Our friends met up with us, matching our costumes with red and white dresses.", "album_id": "72157625973841677", "photo_flickr_id": "5463873690", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44352", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our friends met up with us , matching our costumes with red and white dresses .", "storylet_id": "221762"}], [{"original_text": "Someone hired a marching band for the party.", "album_id": "72157625973841677", "photo_flickr_id": "5463874240", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44352", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someone hired a marching band for the party .", "storylet_id": "221763"}], [{"original_text": "We all got to the party and listened to some live music.", "album_id": "72157625973841677", "photo_flickr_id": "5463362535", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44352", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all got to the party and listened to some live music .", "storylet_id": "221764"}], [{"original_text": "It was Viking Day! I dressed to impress.", "album_id": "72157625973841677", "photo_flickr_id": "5463255573", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "44353", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was viking day ! i dressed to impress .", "storylet_id": "221765"}], [{"original_text": "My father in law got in on the fun as well.", "album_id": "72157625973841677", "photo_flickr_id": "5463857224", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "44353", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my father in law got in on the fun as well .", "storylet_id": "221766"}], [{"original_text": "My best friend Ted grew a beard in support.", "album_id": "72157625973841677", "photo_flickr_id": "5463859472", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "44353", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my best friend [male] grew a beard in support .", "storylet_id": "221767"}], [{"original_text": "Together we marched through the town in the oddest clothes.", "album_id": "72157625973841677", "photo_flickr_id": "5463873690", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "44353", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "together we marched through the town in the oddest clothes .", "storylet_id": "221768"}], [{"original_text": "In the evening we partied. Even the elderly joined in. ", "album_id": "72157625973841677", "photo_flickr_id": "5463278037", "setting": "last-3-pick-old-and-tell", "worker_id": "RS1Y1M4GWV0TJJQ", "story_id": "44353", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the evening we partied . even the elderly joined in .", "storylet_id": "221769"}], [{"original_text": "She made a great \"cheesehead\" hat for the game!", "album_id": "72157625973841677", "photo_flickr_id": "5463255573", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "44354", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she made a great `` cheesehead '' hat for the game !", "storylet_id": "221770"}], [{"original_text": "Here she is posing with some guy.", "album_id": "72157625973841677", "photo_flickr_id": "5463857224", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "44354", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here she is posing with some guy .", "storylet_id": "221771"}], [{"original_text": "And now she is posing with another guy.oj", "album_id": "72157625973841677", "photo_flickr_id": "5463859472", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "44354", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and now she is posing with another guy.oj", "storylet_id": "221772"}], [{"original_text": "More parade girls.", "album_id": "72157625973841677", "photo_flickr_id": "5463873690", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "44354", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more parade girls .", "storylet_id": "221773"}], [{"original_text": "Here she is posing with a raiders fan.", "album_id": "72157625973841677", "photo_flickr_id": "5463278037", "setting": "last-3-pick-old-and-tell", "worker_id": "FW5VR9FH3EKGYZT", "story_id": "44354", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here she is posing with a raiders fan .", "storylet_id": "221774"}], [{"original_text": "This small fishing town along the coast brings in some of the best fish sold in the local markets. ", "album_id": "72157623550329501", "photo_flickr_id": "4455401709", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44355", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this small fishing town along the coast brings in some of the best fish sold in the local markets .", "storylet_id": "221775"}], [{"original_text": "They head out daily to get their hauls before too many non commercial fishermen get out there. ", "album_id": "72157623550329501", "photo_flickr_id": "4455414487", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44355", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they head out daily to get their hauls before too many non commercial fishermen get out there .", "storylet_id": "221776"}], [{"original_text": "One of their biggest competitors are the pelicans though. ", "album_id": "72157623550329501", "photo_flickr_id": "4456190098", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44355", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of their biggest competitors are the pelicans though .", "storylet_id": "221777"}], [{"original_text": "Most come in before they need to rely on the lighthouse in case of bad weather. ", "album_id": "72157623550329501", "photo_flickr_id": "4456196778", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44355", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "most come in before they need to rely on the lighthouse in case of bad weather .", "storylet_id": "221778"}], [{"original_text": "They all agree hands down that fish or no fish the sunsets can't be beat. ", "album_id": "72157623550329501", "photo_flickr_id": "4456207790", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44355", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all agree hands down that fish or no fish the sunsets ca n't be beat .", "storylet_id": "221779"}], [{"original_text": "it was a good day on the dock.", "album_id": "72157623550329501", "photo_flickr_id": "4455401709", "setting": "first-2-pick-and-tell", "worker_id": "FMNE1BK03RSI0QY", "story_id": "44356", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a good day on the dock .", "storylet_id": "221780"}], [{"original_text": "a small boat decided to have a day out.", "album_id": "72157623550329501", "photo_flickr_id": "4456183378", "setting": "first-2-pick-and-tell", "worker_id": "FMNE1BK03RSI0QY", "story_id": "44356", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a small boat decided to have a day out .", "storylet_id": "221781"}], [{"original_text": "he went far out into the ocean.", "album_id": "72157623550329501", "photo_flickr_id": "4455414487", "setting": "first-2-pick-and-tell", "worker_id": "FMNE1BK03RSI0QY", "story_id": "44356", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he went far out into the ocean .", "storylet_id": "221782"}], [{"original_text": "a bigger boat met up with the small boat.", "album_id": "72157623550329501", "photo_flickr_id": "4455416817", "setting": "first-2-pick-and-tell", "worker_id": "FMNE1BK03RSI0QY", "story_id": "44356", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a bigger boat met up with the small boat .", "storylet_id": "221783"}], [{"original_text": "they rode off into the sunset together.", "album_id": "72157623550329501", "photo_flickr_id": "4456204168", "setting": "first-2-pick-and-tell", "worker_id": "FMNE1BK03RSI0QY", "story_id": "44356", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they rode off into the sunset together .", "storylet_id": "221784"}], [{"original_text": "The walk to the marina was very nice but brisk.", "album_id": "72157623550329501", "photo_flickr_id": "4455401709", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44357", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the walk to the marina was very nice but brisk .", "storylet_id": "221785"}], [{"original_text": "We chartered a boat to take us out fishing.", "album_id": "72157623550329501", "photo_flickr_id": "4455414487", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44357", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we chartered a boat to take us out fishing .", "storylet_id": "221786"}], [{"original_text": "We had to fight gulls who tried to steal our fishes.", "album_id": "72157623550329501", "photo_flickr_id": "4456190098", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44357", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had to fight gulls who tried to steal our fishes .", "storylet_id": "221787"}], [{"original_text": "In the evening when we came back, we noticed the lighthouse for the first time.", "album_id": "72157623550329501", "photo_flickr_id": "4456196778", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44357", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the evening when we came back , we noticed the lighthouse for the first time .", "storylet_id": "221788"}], [{"original_text": "As we were pulling into the pier, we saw a beautiful sunset.", "album_id": "72157623550329501", "photo_flickr_id": "4456207790", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44357", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as we were pulling into the pier , we saw a beautiful sunset .", "storylet_id": "221789"}], [{"original_text": "We walked along the dock to see the ocean.", "album_id": "72157623550329501", "photo_flickr_id": "4455401709", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44358", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we walked along the dock to see the ocean .", "storylet_id": "221790"}], [{"original_text": "First we noticed all the small boats out and about.", "album_id": "72157623550329501", "photo_flickr_id": "4455414487", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44358", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we noticed all the small boats out and about .", "storylet_id": "221791"}], [{"original_text": "Large birds where flying in all directions.", "album_id": "72157623550329501", "photo_flickr_id": "4456190098", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44358", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "large birds where flying in all directions .", "storylet_id": "221792"}], [{"original_text": "As the sun set we went to a good spot to watch it.", "album_id": "72157623550329501", "photo_flickr_id": "4456196778", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44358", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the sun set we went to a good spot to watch it .", "storylet_id": "221793"}], [{"original_text": "We sat there and took in the view. Enjoying the end of a great day.", "album_id": "72157623550329501", "photo_flickr_id": "4456207790", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44358", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we sat there and took in the view . enjoying the end of a great day .", "storylet_id": "221794"}], [{"original_text": "We decided to go on our boat on this hot summer day.", "album_id": "72157623550329501", "photo_flickr_id": "4455401709", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "44359", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go on our boat on this hot summer day .", "storylet_id": "221795"}], [{"original_text": "It was a pleasant ride as the weather was perfect.", "album_id": "72157623550329501", "photo_flickr_id": "4455414487", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "44359", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a pleasant ride as the weather was perfect .", "storylet_id": "221796"}], [{"original_text": "We even saw a seagull.", "album_id": "72157623550329501", "photo_flickr_id": "4456190098", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "44359", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we even saw a seagull .", "storylet_id": "221797"}], [{"original_text": "This lighthouse looked lonely in the distance.", "album_id": "72157623550329501", "photo_flickr_id": "4456196778", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "44359", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this lighthouse looked lonely in the distance .", "storylet_id": "221798"}], [{"original_text": "The sky was beautiful and amazing.", "album_id": "72157623550329501", "photo_flickr_id": "4456207790", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "44359", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sky was beautiful and amazing .", "storylet_id": "221799"}], [{"original_text": "The performers marched to the house yard.", "album_id": "72157626199302945", "photo_flickr_id": "5549783918", "setting": "first-2-pick-and-tell", "worker_id": "R08BVP5SNLB3Q34", "story_id": "44360", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the performers marched to the house yard .", "storylet_id": "221800"}], [{"original_text": "They danced around while everyone watched.", "album_id": "72157626199302945", "photo_flickr_id": "5549205123", "setting": "first-2-pick-and-tell", "worker_id": "R08BVP5SNLB3Q34", "story_id": "44360", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they danced around while everyone watched .", "storylet_id": "221801"}], [{"original_text": "Some of the kids joined in.", "album_id": "72157626199302945", "photo_flickr_id": "5549206083", "setting": "first-2-pick-and-tell", "worker_id": "R08BVP5SNLB3Q34", "story_id": "44360", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the kids joined in .", "storylet_id": "221802"}], [{"original_text": "While other children were content to watch.", "album_id": "72157626199302945", "photo_flickr_id": "5549785622", "setting": "first-2-pick-and-tell", "worker_id": "R08BVP5SNLB3Q34", "story_id": "44360", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while other children were content to watch .", "storylet_id": "221803"}], [{"original_text": "They danced their way into the house.", "album_id": "72157626199302945", "photo_flickr_id": "5549786224", "setting": "first-2-pick-and-tell", "worker_id": "R08BVP5SNLB3Q34", "story_id": "44360", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they danced their way into the house .", "storylet_id": "221804"}], [{"original_text": "The cult is performing some sort of ritual today.", "album_id": "72157626199302945", "photo_flickr_id": "5549784794", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "44361", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cult is performing some sort of ritual today .", "storylet_id": "221805"}], [{"original_text": "They are even getting the poor kids involved.", "album_id": "72157626199302945", "photo_flickr_id": "5549785622", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "44361", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are even getting the poor kids involved .", "storylet_id": "221806"}], [{"original_text": "The small kids are in the middle and they are surrounding them.", "album_id": "72157626199302945", "photo_flickr_id": "5549787688", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "44361", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the small kids are in the middle and they are surrounding them .", "storylet_id": "221807"}], [{"original_text": "What are they doing to the kids? Someone needs to get them away from these crazy people.", "album_id": "72157626199302945", "photo_flickr_id": "5549205123", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "44361", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what are they doing to the kids ? someone needs to get them away from these crazy people .", "storylet_id": "221808"}], [{"original_text": "I think the one in the black is the leader. I heard her chanting...she is flipping nuts!", "album_id": "72157626199302945", "photo_flickr_id": "5549207553", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "44361", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think the one in the black is the leader . i heard her chanting ... she is flipping nuts !", "storylet_id": "221809"}], [{"original_text": "The day threatened rain, but everyone was dressed up so wonderfully.", "album_id": "72157626199302945", "photo_flickr_id": "5549783918", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44362", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day threatened rain , but everyone was dressed up so wonderfully .", "storylet_id": "221810"}], [{"original_text": "As the weather threatened people still had fun.", "album_id": "72157626199302945", "photo_flickr_id": "5549205123", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44362", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the weather threatened people still had fun .", "storylet_id": "221811"}], [{"original_text": "Even the little kids got in on the action.", "album_id": "72157626199302945", "photo_flickr_id": "5549206083", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44362", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the little kids got in on the action .", "storylet_id": "221812"}], [{"original_text": "Parents took some group photos of their kids.", "album_id": "72157626199302945", "photo_flickr_id": "5549785622", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44362", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "parents took some group photos of their kids .", "storylet_id": "221813"}], [{"original_text": "And afterwards everyone let loose a bit!", "album_id": "72157626199302945", "photo_flickr_id": "5549786224", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44362", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and afterwards everyone let loose a bit !", "storylet_id": "221814"}], [{"original_text": "We all gathered because today was a very special holiday for us. ", "album_id": "72157626199302945", "photo_flickr_id": "5549783918", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44363", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all gathered because today was a very special holiday for us .", "storylet_id": "221815"}], [{"original_text": "We dressed uniformly in the outfits of our ancestors. ", "album_id": "72157626199302945", "photo_flickr_id": "5549205123", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44363", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we dressed uniformly in the outfits of our ancestors .", "storylet_id": "221816"}], [{"original_text": "Even our children got to participate to better understand their family history. ", "album_id": "72157626199302945", "photo_flickr_id": "5549206083", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44363", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even our children got to participate to better understand their family history .", "storylet_id": "221817"}], [{"original_text": "Jackie, Tyler, Ross and Mirian all had fun in their cute little outfits. ", "album_id": "72157626199302945", "photo_flickr_id": "5549785622", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44363", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] , [male] , [male] and mirian all had fun in their cute little outfits .", "storylet_id": "221818"}], [{"original_text": "Once we got to the church we danced and celebrated like there was no tomorrow. ", "album_id": "72157626199302945", "photo_flickr_id": "5549786224", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44363", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once we got to the church we danced and celebrated like there was no tomorrow .", "storylet_id": "221819"}], [{"original_text": "A club was initiating new members.", "album_id": "72157626199302945", "photo_flickr_id": "5549783918", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44364", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a club was initiating new members .", "storylet_id": "221820"}], [{"original_text": "They had the newbies dance in the circle.", "album_id": "72157626199302945", "photo_flickr_id": "5549205123", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44364", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had the newbies dance in the circle .", "storylet_id": "221821"}], [{"original_text": "Even little ones tried out to be in the club.", "album_id": "72157626199302945", "photo_flickr_id": "5549206083", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44364", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even little ones tried out to be in the club .", "storylet_id": "221822"}], [{"original_text": "Only one of the children were chosen.", "album_id": "72157626199302945", "photo_flickr_id": "5549785622", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44364", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "only one of the children were chosen .", "storylet_id": "221823"}], [{"original_text": "The party closed with a game of monopoly. ", "album_id": "72157626199302945", "photo_flickr_id": "5549786224", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44364", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the party closed with a game of monopoly .", "storylet_id": "221824"}], [{"original_text": "A beautiful day to go to Paradise Pier.", "album_id": "72157626205521785", "photo_flickr_id": "5551735719", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "44365", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a beautiful day to go to paradise pier .", "storylet_id": "221825"}], [{"original_text": "There are a lot of rides, including a Ferris wheel. We rode them all.", "album_id": "72157626205521785", "photo_flickr_id": "5552321500", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "44365", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are a lot of rides , including a organization wheel . we rode them all .", "storylet_id": "221826"}], [{"original_text": "We satin this nice little area in the park to recover.", "album_id": "72157626205521785", "photo_flickr_id": "5551744069", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "44365", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we satin this nice little area in the park to recover .", "storylet_id": "221827"}], [{"original_text": "We strolled around to look at the different games that were there.", "album_id": "72157626205521785", "photo_flickr_id": "5552323730", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "44365", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we strolled around to look at the different games that were there .", "storylet_id": "221828"}], [{"original_text": "This one was a lot of fun, even though we did not win.", "album_id": "72157626205521785", "photo_flickr_id": "5552324828", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "44365", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this one was a lot of fun , even though we did not win .", "storylet_id": "221829"}], [{"original_text": "The entrance of the park.", "album_id": "72157626205521785", "photo_flickr_id": "5551741445", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44366", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the entrance of the park .", "storylet_id": "221830"}], [{"original_text": "Visiting a disney park.", "album_id": "72157626205521785", "photo_flickr_id": "5552321500", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44366", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "visiting a disney park .", "storylet_id": "221831"}], [{"original_text": "Entering the paradise pier.", "album_id": "72157626205521785", "photo_flickr_id": "5551735719", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44366", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "entering the paradise pier .", "storylet_id": "221832"}], [{"original_text": "Visiting the famous silhouette studio.", "album_id": "72157626205521785", "photo_flickr_id": "5552327092", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44366", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "visiting the famous silhouette studio .", "storylet_id": "221833"}], [{"original_text": "Bought a Minnie mouse teddy bear. ", "album_id": "72157626205521785", "photo_flickr_id": "5552326374", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44366", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "bought a [female] mouse teddy bear .", "storylet_id": "221834"}], [{"original_text": "Our adventure at Disneyland started here.", "album_id": "72157626205521785", "photo_flickr_id": "5551735719", "setting": "last-3-pick-old-and-tell", "worker_id": "56JX760LWYAK01P", "story_id": "44367", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our adventure at location started here .", "storylet_id": "221835"}], [{"original_text": "We are ready to go to the park this is what we see from afar.", "album_id": "72157626205521785", "photo_flickr_id": "5552321500", "setting": "last-3-pick-old-and-tell", "worker_id": "56JX760LWYAK01P", "story_id": "44367", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are ready to go to the park this is what we see from afar .", "storylet_id": "221836"}], [{"original_text": "I saw this tree by the water and had to take a picture.", "album_id": "72157626205521785", "photo_flickr_id": "5551744069", "setting": "last-3-pick-old-and-tell", "worker_id": "56JX760LWYAK01P", "story_id": "44367", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i saw this tree by the water and had to take a picture .", "storylet_id": "221837"}], [{"original_text": "We stopped to play some games. ", "album_id": "72157626205521785", "photo_flickr_id": "5552323730", "setting": "last-3-pick-old-and-tell", "worker_id": "56JX760LWYAK01P", "story_id": "44367", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped to play some games .", "storylet_id": "221838"}], [{"original_text": "This is the game where I won a big stuffed animal. What a great day.", "album_id": "72157626205521785", "photo_flickr_id": "5552324828", "setting": "last-3-pick-old-and-tell", "worker_id": "56JX760LWYAK01P", "story_id": "44367", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the game where i won a big stuffed animal . what a great day .", "storylet_id": "221839"}], [{"original_text": "Even the entrance to the pier was cool.", "album_id": "72157626205521785", "photo_flickr_id": "5551735719", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44368", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "even the entrance to the pier was cool .", "storylet_id": "221840"}], [{"original_text": "The rides looked very fun.", "album_id": "72157626205521785", "photo_flickr_id": "5552321500", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44368", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rides looked very fun .", "storylet_id": "221841"}], [{"original_text": "This bench was much needed after a long day!", "album_id": "72157626205521785", "photo_flickr_id": "5551744069", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44368", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this bench was much needed after a long day !", "storylet_id": "221842"}], [{"original_text": "The sign was retro and fun.", "album_id": "72157626205521785", "photo_flickr_id": "5552323730", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44368", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sign was retro and fun .", "storylet_id": "221843"}], [{"original_text": "The pictures were cute and enticing. ", "album_id": "72157626205521785", "photo_flickr_id": "5552324828", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44368", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the pictures were cute and enticing .", "storylet_id": "221844"}], [{"original_text": "The family this year finally decided to take a trip to Disney's California Adventure!", "album_id": "72157626205521785", "photo_flickr_id": "5551741445", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "44369", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family this year finally decided to take a trip to organization 's location adventure !", "storylet_id": "221845"}], [{"original_text": "We had never been to California before, and thought it would be a great opportunity to visit Disneyland and this unique park.", "album_id": "72157626205521785", "photo_flickr_id": "5552321500", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "44369", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had never been to location before , and thought it would be a great opportunity to visit location and this unique park .", "storylet_id": "221846"}], [{"original_text": "The paradise pier area was a family favorite. The weather was fantastic and there were so many amazing sites to see.", "album_id": "72157626205521785", "photo_flickr_id": "5551735719", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "44369", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the paradise pier area was a family favorite . the weather was fantastic and there were so many amazing sites to see .", "storylet_id": "221847"}], [{"original_text": "We especially loved the dining, various stores and areas to shop around throughout Disney.", "album_id": "72157626205521785", "photo_flickr_id": "5552327092", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "44369", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we especially loved the dining , various stores and areas to shop around throughout organization .", "storylet_id": "221848"}], [{"original_text": "We all left with many souvenirs. It was a fantastic trip none of us will forget.", "album_id": "72157626205521785", "photo_flickr_id": "5552326374", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "44369", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all left with many souvenirs . it was a fantastic trip none of us will forget .", "storylet_id": "221849"}], [{"original_text": "The festival needed to be helped with clean up.", "album_id": "72157624437222413", "photo_flickr_id": "4820048374", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44370", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the festival needed to be helped with clean up .", "storylet_id": "221850"}], [{"original_text": "This guy was in charge of the stage.", "album_id": "72157624437222413", "photo_flickr_id": "4819435379", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44370", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this guy was in charge of the stage .", "storylet_id": "221851"}], [{"original_text": "The games were fun and worth it.", "album_id": "72157624437222413", "photo_flickr_id": "4820062290", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44370", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the games were fun and worth it .", "storylet_id": "221852"}], [{"original_text": "They played with the stuffed animals.", "album_id": "72157624437222413", "photo_flickr_id": "4820064058", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44370", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they played with the stuffed animals .", "storylet_id": "221853"}], [{"original_text": "To end the day they road the ferris wheel.", "album_id": "72157624437222413", "photo_flickr_id": "4820066756", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44370", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "to end the day they road the ferris wheel .", "storylet_id": "221854"}], [{"original_text": "Kids are enjoying the rides at the county fair.", "album_id": "72157624437222413", "photo_flickr_id": "4819438629", "setting": "first-2-pick-and-tell", "worker_id": "4BLJHWUPZTSC907", "story_id": "44371", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "kids are enjoying the rides at the county fair .", "storylet_id": "221855"}], [{"original_text": "A little kid is helping his father by sweeping up the hay.", "album_id": "72157624437222413", "photo_flickr_id": "4820048374", "setting": "first-2-pick-and-tell", "worker_id": "4BLJHWUPZTSC907", "story_id": "44371", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a little kid is helping his father by sweeping up the hay .", "storylet_id": "221856"}], [{"original_text": "A boy is looking at a white horse and wants to pet it.", "album_id": "72157624437222413", "photo_flickr_id": "4819432189", "setting": "first-2-pick-and-tell", "worker_id": "4BLJHWUPZTSC907", "story_id": "44371", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a boy is looking at a white horse and wants to pet it .", "storylet_id": "221857"}], [{"original_text": "A man at the fair is about to take center stage and strum his guitar.", "album_id": "72157624437222413", "photo_flickr_id": "4819435379", "setting": "first-2-pick-and-tell", "worker_id": "4BLJHWUPZTSC907", "story_id": "44371", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a man at the fair is about to take center stage and strum his guitar .", "storylet_id": "221858"}], [{"original_text": "A worker at the fair is waiting for customers to try to win a stuffed animal.", "album_id": "72157624437222413", "photo_flickr_id": "4820064058", "setting": "first-2-pick-and-tell", "worker_id": "4BLJHWUPZTSC907", "story_id": "44371", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a worker at the fair is waiting for customers to try to win a stuffed animal .", "storylet_id": "221859"}], [{"original_text": "Took the kids to the fair and they are having a great time on the swings.", "album_id": "72157624437222413", "photo_flickr_id": "4819438629", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44372", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "took the kids to the fair and they are having a great time on the swings .", "storylet_id": "221860"}], [{"original_text": "My son trying to push away the hay.", "album_id": "72157624437222413", "photo_flickr_id": "4820048374", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44372", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my son trying to push away the hay .", "storylet_id": "221861"}], [{"original_text": "My older son talking to a horse, who he called big Bub.", "album_id": "72157624437222413", "photo_flickr_id": "4819432189", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44372", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my older son talking to a horse , who he called big bub .", "storylet_id": "221862"}], [{"original_text": "Standing on the side watching the lady introduce me.", "album_id": "72157624437222413", "photo_flickr_id": "4819435379", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44372", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "standing on the side watching the lady introduce me .", "storylet_id": "221863"}], [{"original_text": "Think I will give this a try for the wife and win a stuff animal for her.", "album_id": "72157624437222413", "photo_flickr_id": "4820064058", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44372", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "think i will give this a try for the wife and win a stuff animal for her .", "storylet_id": "221864"}], [{"original_text": "The son has a rake and is having a good time.", "album_id": "72157624437222413", "photo_flickr_id": "4820048374", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44373", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the son has a rake and is having a good time .", "storylet_id": "221865"}], [{"original_text": "Grandma is waiting for the rest of the family.", "album_id": "72157624437222413", "photo_flickr_id": "4819435379", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44373", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma is waiting for the rest of the family .", "storylet_id": "221866"}], [{"original_text": "We all played the game and hoped for some change to fall.", "album_id": "72157624437222413", "photo_flickr_id": "4820062290", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44373", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all played the game and hoped for some change to fall .", "storylet_id": "221867"}], [{"original_text": "We hoped to win a prize at the arcade game.", "album_id": "72157624437222413", "photo_flickr_id": "4820064058", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44373", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we hoped to win a prize at the arcade game .", "storylet_id": "221868"}], [{"original_text": "The fair was a lot of fun for the whole family.", "album_id": "72157624437222413", "photo_flickr_id": "4820066756", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44373", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fair was a lot of fun for the whole family .", "storylet_id": "221869"}], [{"original_text": "The whole family went out today on this carnival.", "album_id": "72157624437222413", "photo_flickr_id": "4819438629", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "44374", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family went out today on this carnival .", "storylet_id": "221870"}], [{"original_text": "My son decided he wanted to sweep for the carnival.", "album_id": "72157624437222413", "photo_flickr_id": "4820048374", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "44374", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my son decided he wanted to sweep for the carnival .", "storylet_id": "221871"}], [{"original_text": "My other son was playing around with a horse.", "album_id": "72157624437222413", "photo_flickr_id": "4819432189", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "44374", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my other son was playing around with a horse .", "storylet_id": "221872"}], [{"original_text": "We saw a kid about to perform with his large guitar.", "album_id": "72157624437222413", "photo_flickr_id": "4819435379", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "44374", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw a kid about to perform with his large guitar .", "storylet_id": "221873"}], [{"original_text": "We even decided to play at a booth to try and win a stuffed animal.", "album_id": "72157624437222413", "photo_flickr_id": "4820064058", "setting": "last-3-pick-old-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "44374", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even decided to play at a booth to try and win a stuffed animal .", "storylet_id": "221874"}], [{"original_text": "There was great food at this carnival.", "album_id": "72157627258198124", "photo_flickr_id": "5965700336", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44375", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was great food at this carnival .", "storylet_id": "221875"}], [{"original_text": "There were plenty of rides as well.", "album_id": "72157627258198124", "photo_flickr_id": "5965146741", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44375", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were plenty of rides as well .", "storylet_id": "221876"}], [{"original_text": "We took lots of pictures together.", "album_id": "72157627258198124", "photo_flickr_id": "5965147437", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44375", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took lots of pictures together .", "storylet_id": "221877"}], [{"original_text": "I loved this game, I even won a prize!", "album_id": "72157627258198124", "photo_flickr_id": "5965148511", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44375", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i loved this game , i even won a prize !", "storylet_id": "221878"}], [{"original_text": "At the end of the day, we were tired.", "album_id": "72157627258198124", "photo_flickr_id": "5965151647", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44375", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , we were tired .", "storylet_id": "221879"}], [{"original_text": "the carnaval was great", "album_id": "72157627258198124", "photo_flickr_id": "5965699854", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44376", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the carnaval was great", "storylet_id": "221880"}], [{"original_text": "so much good food", "album_id": "72157627258198124", "photo_flickr_id": "5965700336", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44376", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so much good food", "storylet_id": "221881"}], [{"original_text": "the rides we so fun", "album_id": "72157627258198124", "photo_flickr_id": "5965146343", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44376", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the rides we so fun", "storylet_id": "221882"}], [{"original_text": "people even could win prizes", "album_id": "72157627258198124", "photo_flickr_id": "5965148511", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44376", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people even could win prizes", "storylet_id": "221883"}], [{"original_text": "this guy almost won", "album_id": "72157627258198124", "photo_flickr_id": "5965704310", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44376", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this guy almost won", "storylet_id": "221884"}], [{"original_text": "I love the french fries and chicken at the carnival. ", "album_id": "72157627258198124", "photo_flickr_id": "5965700336", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44377", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love the french fries and chicken at the carnival .", "storylet_id": "221885"}], [{"original_text": "The ferris wheel is one of my favorite rides though I'm still afraid of heights. ", "album_id": "72157627258198124", "photo_flickr_id": "5965146741", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44377", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ferris wheel is one of my favorite rides though i 'm still afraid of heights .", "storylet_id": "221886"}], [{"original_text": "My and my bestie Jane went around and took a lot of pictures. ", "album_id": "72157627258198124", "photo_flickr_id": "5965147437", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44377", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my and my bestie [female] went around and took a lot of pictures .", "storylet_id": "221887"}], [{"original_text": "The only thing I don't like are the carnival games because I'm very bad at them. ", "album_id": "72157627258198124", "photo_flickr_id": "5965148511", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44377", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the only thing i do n't like are the carnival games because i 'm very bad at them .", "storylet_id": "221888"}], [{"original_text": "We took a last selfie in our hotel room. Can't wait to go back to the carnival tomorrow! ", "album_id": "72157627258198124", "photo_flickr_id": "5965151647", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44377", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took a last selfie in our hotel room . ca n't wait to go back to the carnival tomorrow !", "storylet_id": "221889"}], [{"original_text": "Chili fries, hot wings, yum. ", "album_id": "72157627258198124", "photo_flickr_id": "5965700336", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44378", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "chili fries , hot wings , yum .", "storylet_id": "221890"}], [{"original_text": "Ferris wheels, yay!", "album_id": "72157627258198124", "photo_flickr_id": "5965146741", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44378", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "ferris wheels , yay !", "storylet_id": "221891"}], [{"original_text": "Friends all over the place, cool. ", "album_id": "72157627258198124", "photo_flickr_id": "5965147437", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44378", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "friends all over the place , cool .", "storylet_id": "221892"}], [{"original_text": "Games, way cool. ", "album_id": "72157627258198124", "photo_flickr_id": "5965148511", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44378", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "games , way cool .", "storylet_id": "221893"}], [{"original_text": "Awesome to be 13, like totally. ", "album_id": "72157627258198124", "photo_flickr_id": "5965151647", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44378", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "awesome to be 13 , like totally .", "storylet_id": "221894"}], [{"original_text": "A crowd lined up for the fair's amazing food.", "album_id": "72157627258198124", "photo_flickr_id": "5965699854", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44379", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a crowd lined up for the fair 's amazing food .", "storylet_id": "221895"}], [{"original_text": "The food was fattening but tasty.", "album_id": "72157627258198124", "photo_flickr_id": "5965700336", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44379", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the food was fattening but tasty .", "storylet_id": "221896"}], [{"original_text": "A day at the park was just what I needed.", "album_id": "72157627258198124", "photo_flickr_id": "5965146343", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44379", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a day at the park was just what i needed .", "storylet_id": "221897"}], [{"original_text": "I won an arcade token at a booth.", "album_id": "72157627258198124", "photo_flickr_id": "5965148511", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44379", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i won an arcade token at a booth .", "storylet_id": "221898"}], [{"original_text": "My dad gambled on a fake horse race and lost. ", "album_id": "72157627258198124", "photo_flickr_id": "5965704310", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44379", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my dad gambled on a fake horse race and lost .", "storylet_id": "221899"}], [{"original_text": "We ate breakfast and decided to make a fun lunch.", "album_id": "72157624794808792", "photo_flickr_id": "4922583300", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44380", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we ate breakfast and decided to make a fun lunch .", "storylet_id": "221900"}], [{"original_text": "We decided to make the meal from scratch and by ourselves.", "album_id": "72157624794808792", "photo_flickr_id": "4921989137", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44380", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided to make the meal from scratch and by ourselves .", "storylet_id": "221901"}], [{"original_text": "It was messy and dirty work, but sister was up to the task.", "album_id": "72157624794808792", "photo_flickr_id": "4921990273", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44380", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was messy and dirty work , but sister was up to the task .", "storylet_id": "221902"}], [{"original_text": "The ingredients came together. We were all starting to get hungry.", "album_id": "72157624794808792", "photo_flickr_id": "4921989865", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44380", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ingredients came together . we were all starting to get hungry .", "storylet_id": "221903"}], [{"original_text": "When we were done we had made a wonderful and tasty meal.", "album_id": "72157624794808792", "photo_flickr_id": "4922582758", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44380", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we were done we had made a wonderful and tasty meal .", "storylet_id": "221904"}], [{"original_text": "The fair has come to town!", "album_id": "72157624794808792", "photo_flickr_id": "4921991637", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "44381", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fair has come to town !", "storylet_id": "221905"}], [{"original_text": "There are lots of carnival foods to eat.", "album_id": "72157624794808792", "photo_flickr_id": "4921993221", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "44381", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are lots of carnival foods to eat .", "storylet_id": "221906"}], [{"original_text": "They have activities like three-wheeled scooters.", "album_id": "72157624794808792", "photo_flickr_id": "4922588158", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "44381", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they have activities like three-wheeled scooters .", "storylet_id": "221907"}], [{"original_text": "They even have pig races!", "album_id": "72157624794808792", "photo_flickr_id": "4921994137", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "44381", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even have pig races !", "storylet_id": "221908"}], [{"original_text": "Come back again soon!", "album_id": "72157624794808792", "photo_flickr_id": "4921993447", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "44381", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "come back again soon !", "storylet_id": "221909"}], [{"original_text": "2 friends gathering to make food and", "album_id": "72157624794808792", "photo_flickr_id": "4922583300", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "44382", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "2 friends gathering to make food and", "storylet_id": "221910"}], [{"original_text": "then start making the mix and they start ", "album_id": "72157624794808792", "photo_flickr_id": "4921989137", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "44382", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then start making the mix and they start", "storylet_id": "221911"}], [{"original_text": "to get real sticky and now its time to", "album_id": "72157624794808792", "photo_flickr_id": "4921990273", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "44382", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "to get real sticky and now its time to", "storylet_id": "221912"}], [{"original_text": "make it and they made it and ", "album_id": "72157624794808792", "photo_flickr_id": "4921989865", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "44382", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "make it and they made it and", "storylet_id": "221913"}], [{"original_text": "put it on top of they food", "album_id": "72157624794808792", "photo_flickr_id": "4922582758", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "44382", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "put it on top of they food", "storylet_id": "221914"}], [{"original_text": "I went on the Ferris wheel last week.", "album_id": "72157624794808792", "photo_flickr_id": "4921991637", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44383", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on the organization wheel last week .", "storylet_id": "221915"}], [{"original_text": "Afterward I went to grab something to eat from a restaurant.", "album_id": "72157624794808792", "photo_flickr_id": "4921993221", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44383", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "afterward i went to grab something to eat from a restaurant .", "storylet_id": "221916"}], [{"original_text": "I also bought a new scooter.", "album_id": "72157624794808792", "photo_flickr_id": "4922588158", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44383", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also bought a new scooter .", "storylet_id": "221917"}], [{"original_text": "Later I went to go see the pig races.", "album_id": "72157624794808792", "photo_flickr_id": "4921994137", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44383", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later i went to go see the pig races .", "storylet_id": "221918"}], [{"original_text": "I also bought a toy dinosaur.", "album_id": "72157624794808792", "photo_flickr_id": "4921993447", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44383", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i also bought a toy dinosaur .", "storylet_id": "221919"}], [{"original_text": "She liked working with her hands. ", "album_id": "72157624794808792", "photo_flickr_id": "4922583300", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44384", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she liked working with her hands .", "storylet_id": "221920"}], [{"original_text": "She liked cooking. ", "album_id": "72157624794808792", "photo_flickr_id": "4921989137", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44384", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she liked cooking .", "storylet_id": "221921"}], [{"original_text": "But this stuff was yucky. ", "album_id": "72157624794808792", "photo_flickr_id": "4921990273", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44384", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but this stuff was yucky .", "storylet_id": "221922"}], [{"original_text": "How would this mess ever become a tortilla, she thought. ", "album_id": "72157624794808792", "photo_flickr_id": "4921989865", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44384", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "how would this mess ever become a tortilla , she thought .", "storylet_id": "221923"}], [{"original_text": "With the help of her friend, it not only became a tortilla, it was actually good. ", "album_id": "72157624794808792", "photo_flickr_id": "4922582758", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44384", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with the help of her friend , it not only became a tortilla , it was actually good .", "storylet_id": "221924"}], [{"original_text": "We took Jessica to the gay parade.", "album_id": "72157624424890861", "photo_flickr_id": "4814272033", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44385", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took [female] to the gay parade .", "storylet_id": "221925"}], [{"original_text": "Selena Gomez was there and she made everything fun.", "album_id": "72157624424890861", "photo_flickr_id": "4821143162", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44385", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] gomez was there and she made everything fun .", "storylet_id": "221926"}], [{"original_text": "Everyone was dressed up in creative costumes.", "album_id": "72157624424890861", "photo_flickr_id": "4825702279", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44385", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was dressed up in creative costumes .", "storylet_id": "221927"}], [{"original_text": "Hats were a big focal point.", "album_id": "72157624424890861", "photo_flickr_id": "4829358407", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44385", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "hats were a big focal point .", "storylet_id": "221928"}], [{"original_text": "I accidentally ripped my dress but my hat was the focal point anyway.", "album_id": "72157624424890861", "photo_flickr_id": "4829358707", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44385", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i accidentally ripped my dress but my hat was the focal point anyway .", "storylet_id": "221929"}], [{"original_text": "My daughter Kesia as one of the performer.", "album_id": "72157624424890861", "photo_flickr_id": "4814272033", "setting": "first-2-pick-and-tell", "worker_id": "HLG8X8SRT9KIPWM", "story_id": "44386", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my daughter kesia as one of the performer .", "storylet_id": "221930"}], [{"original_text": "That my best friend Alia also participating on the festival.", "album_id": "72157624424890861", "photo_flickr_id": "4814895092", "setting": "first-2-pick-and-tell", "worker_id": "HLG8X8SRT9KIPWM", "story_id": "44386", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that my best friend alia also participating on the festival .", "storylet_id": "221931"}], [{"original_text": "She makes all her best just to perform her talent.", "album_id": "72157624424890861", "photo_flickr_id": "4814895730", "setting": "first-2-pick-and-tell", "worker_id": "HLG8X8SRT9KIPWM", "story_id": "44386", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she makes all her best just to perform her talent .", "storylet_id": "221932"}], [{"original_text": "From the other group perform her best costume.", "album_id": "72157624424890861", "photo_flickr_id": "4823468046", "setting": "first-2-pick-and-tell", "worker_id": "HLG8X8SRT9KIPWM", "story_id": "44386", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "from the other group perform her best costume .", "storylet_id": "221933"}], [{"original_text": "From our team Dina. She looks so lovely on her costume. ", "album_id": "72157624424890861", "photo_flickr_id": "4825701549", "setting": "first-2-pick-and-tell", "worker_id": "HLG8X8SRT9KIPWM", "story_id": "44386", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "from our team [female] . she looks so lovely on her costume .", "storylet_id": "221934"}], [{"original_text": "Went to a European costume party. This is a cute little Geisha girl", "album_id": "72157624424890861", "photo_flickr_id": "4814272033", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44387", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went to a european costume party . this is a cute little geisha girl", "storylet_id": "221935"}], [{"original_text": "She's an 80's rocker.", "album_id": "72157624424890861", "photo_flickr_id": "4821143162", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44387", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she 's an 80 's rocker .", "storylet_id": "221936"}], [{"original_text": "This is raggedy ann she's a doll.", "album_id": "72157624424890861", "photo_flickr_id": "4825702279", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44387", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is raggedy ann she 's a doll .", "storylet_id": "221937"}], [{"original_text": "These are garden gnomes marching down the street.", "album_id": "72157624424890861", "photo_flickr_id": "4829358407", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44387", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these are garden gnomes marching down the street .", "storylet_id": "221938"}], [{"original_text": "This si Nina the Sausage queen.", "album_id": "72157624424890861", "photo_flickr_id": "4829358707", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44387", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this si [female] the sausage queen .", "storylet_id": "221939"}], [{"original_text": "Today I went and got my face painted.", "album_id": "72157624424890861", "photo_flickr_id": "4814272033", "setting": "last-3-pick-old-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "44388", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i went and got my face painted .", "storylet_id": "221940"}], [{"original_text": "My friend also got her face painted.", "album_id": "72157624424890861", "photo_flickr_id": "4821143162", "setting": "last-3-pick-old-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "44388", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend also got her face painted .", "storylet_id": "221941"}], [{"original_text": "Then my mom wanted too as well!", "album_id": "72157624424890861", "photo_flickr_id": "4825702279", "setting": "last-3-pick-old-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "44388", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then my mom wanted too as well !", "storylet_id": "221942"}], [{"original_text": "We got ready to march in a parade.", "album_id": "72157624424890861", "photo_flickr_id": "4829358407", "setting": "last-3-pick-old-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "44388", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got ready to march in a parade .", "storylet_id": "221943"}], [{"original_text": "It was a fun parade and I want to do this next year.", "album_id": "72157624424890861", "photo_flickr_id": "4829358707", "setting": "last-3-pick-old-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "44388", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a fun parade and i want to do this next year .", "storylet_id": "221944"}], [{"original_text": "The little girl was happy", "album_id": "72157624424890861", "photo_flickr_id": "4814272033", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44389", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the little girl was happy", "storylet_id": "221945"}], [{"original_text": "and her friend was too.", "album_id": "72157624424890861", "photo_flickr_id": "4821143162", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44389", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and her friend was too .", "storylet_id": "221946"}], [{"original_text": "The dress up was nice", "album_id": "72157624424890861", "photo_flickr_id": "4825702279", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44389", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dress up was nice", "storylet_id": "221947"}], [{"original_text": "and there were cool costumes", "album_id": "72157624424890861", "photo_flickr_id": "4829358407", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44389", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and there were cool costumes", "storylet_id": "221948"}], [{"original_text": "on everyone.", "album_id": "72157624424890861", "photo_flickr_id": "4829358707", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44389", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on everyone .", "storylet_id": "221949"}], [{"original_text": "Chickens my parents raise on our property.We gather eggs so we don't have to buy them anymore.", "album_id": "72157624573082652", "photo_flickr_id": "4824228599", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44390", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "chickens my parents raise on our property.we gather eggs so we do n't have to buy them anymore .", "storylet_id": "221950"}], [{"original_text": "Beautiful farm!This I a view of my parents farm from the fields.", "album_id": "72157624573082652", "photo_flickr_id": "4824851442", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44390", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "beautiful farm ! this i a view of my parents farm from the fields .", "storylet_id": "221951"}], [{"original_text": "Even though train tracks are dangerous we spent sometime walking down them.Gotta love the summer.", "album_id": "72157624573082652", "photo_flickr_id": "4824875836", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44390", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even though train tracks are dangerous we spent sometime walking down them. got ta love the summer .", "storylet_id": "221952"}], [{"original_text": "My friends and I hung out in our pool all day.It was so hot and this was great way to cool off.", "album_id": "72157624573082652", "photo_flickr_id": "4824890974", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44390", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friends and i hung out in our pool all day.it was so hot and this was great way to cool off .", "storylet_id": "221953"}], [{"original_text": "Martha and I cheesiness and pictures don't match..lol Gotta love her,she's my best friend.", "album_id": "72157624573082652", "photo_flickr_id": "4824362725", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44390", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] and i cheesiness and pictures do n't match..lol got ta love her , she 's my best friend .", "storylet_id": "221954"}], [{"original_text": "We were swimming and having a good time. People were drinking beer.", "album_id": "72157624573082652", "photo_flickr_id": "4824890974", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44391", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were swimming and having a good time . people were drinking beer .", "storylet_id": "221955"}], [{"original_text": "We decided to have a pool party with our friends.", "album_id": "72157624573082652", "photo_flickr_id": "4824294859", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44391", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided to have a pool party with our friends .", "storylet_id": "221956"}], [{"original_text": "Some of our friends decided to pick some fruit from the neighbors trees.", "album_id": "72157624573082652", "photo_flickr_id": "4824916644", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44391", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of our friends decided to pick some fruit from the neighbors trees .", "storylet_id": "221957"}], [{"original_text": "Once it got dark people were starting to get very drunk.", "album_id": "72157624573082652", "photo_flickr_id": "4824354971", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44391", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once it got dark people were starting to get very drunk .", "storylet_id": "221958"}], [{"original_text": "We decided it would be better to let people crash at our house instead of driving home. This was the safe option.", "album_id": "72157624573082652", "photo_flickr_id": "4824381937", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44391", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided it would be better to let people crash at our house instead of driving home . this was the safe option .", "storylet_id": "221959"}], [{"original_text": "Today, the group of friends have an adventure.", "album_id": "72157624573082652", "photo_flickr_id": "4824228599", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "44392", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , the group of friends have an adventure .", "storylet_id": "221960"}], [{"original_text": "Their adventure is in a rural town.", "album_id": "72157624573082652", "photo_flickr_id": "4824851442", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "44392", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their adventure is in a rural town .", "storylet_id": "221961"}], [{"original_text": "There isn't much civilization out here,", "album_id": "72157624573082652", "photo_flickr_id": "4824875836", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "44392", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there is n't much civilization out here ,", "storylet_id": "221962"}], [{"original_text": "however, there is a pool and drinks to cool everyone off.", "album_id": "72157624573082652", "photo_flickr_id": "4824890974", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "44392", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "however , there is a pool and drinks to cool everyone off .", "storylet_id": "221963"}], [{"original_text": "The friends are having a great time, but think they would have a great time wherever they were.", "album_id": "72157624573082652", "photo_flickr_id": "4824362725", "setting": "last-3-pick-old-and-tell", "worker_id": "HL8E3A6TAS4AC4Y", "story_id": "44392", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the friends are having a great time , but think they would have a great time wherever they were .", "storylet_id": "221964"}], [{"original_text": "There were plenty of people at the pool party.", "album_id": "72157624573082652", "photo_flickr_id": "4824890974", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44393", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were plenty of people at the pool party .", "storylet_id": "221965"}], [{"original_text": "We invited all of our friends.", "album_id": "72157624573082652", "photo_flickr_id": "4824294859", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44393", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we invited all of our friends .", "storylet_id": "221966"}], [{"original_text": "There was also a diving board.", "album_id": "72157624573082652", "photo_flickr_id": "4824916644", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44393", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was also a diving board .", "storylet_id": "221967"}], [{"original_text": "Afterward we went to the bar to hang out.", "album_id": "72157624573082652", "photo_flickr_id": "4824354971", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44393", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we went to the bar to hang out .", "storylet_id": "221968"}], [{"original_text": "I really had to brush my teeth.", "album_id": "72157624573082652", "photo_flickr_id": "4824381937", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44393", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i really had to brush my teeth .", "storylet_id": "221969"}], [{"original_text": "There was a pool party at a friend's house.", "album_id": "72157624573082652", "photo_flickr_id": "4824890974", "setting": "last-3-pick-old-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44394", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a pool party at a friend 's house .", "storylet_id": "221970"}], [{"original_text": "Lots of people came to party.", "album_id": "72157624573082652", "photo_flickr_id": "4824294859", "setting": "last-3-pick-old-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44394", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of people came to party .", "storylet_id": "221971"}], [{"original_text": "They grabbed a later to get some fruit.", "album_id": "72157624573082652", "photo_flickr_id": "4824916644", "setting": "last-3-pick-old-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44394", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they grabbed a later to get some fruit .", "storylet_id": "221972"}], [{"original_text": "Some of the guys brought stuff to stay the night.", "album_id": "72157624573082652", "photo_flickr_id": "4824354971", "setting": "last-3-pick-old-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44394", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the guys brought stuff to stay the night .", "storylet_id": "221973"}], [{"original_text": "\"Please just let me clean my teeth!\"", "album_id": "72157624573082652", "photo_flickr_id": "4824381937", "setting": "last-3-pick-old-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44394", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "`` please just let me clean my teeth ! ''", "storylet_id": "221974"}], [{"original_text": "I got my mom to the race on time.", "album_id": "72157623150381213", "photo_flickr_id": "4306010606", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44395", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got my mom to the race on time .", "storylet_id": "221975"}], [{"original_text": "The start/finish line was under the walkway at the hospital.", "album_id": "72157623150381213", "photo_flickr_id": "4305423046", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44395", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the start/finish line was under the walkway at the hospital .", "storylet_id": "221976"}], [{"original_text": "She got her number and is ready to go!", "album_id": "72157623150381213", "photo_flickr_id": "4301179612", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44395", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she got her number and is ready to go !", "storylet_id": "221977"}], [{"original_text": "And they are off!", "album_id": "72157623150381213", "photo_flickr_id": "4301181854", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44395", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and they are off !", "storylet_id": "221978"}], [{"original_text": "There goes mom! She did it!", "album_id": "72157623150381213", "photo_flickr_id": "4300418423", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44395", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there goes mom ! she did it !", "storylet_id": "221979"}], [{"original_text": "Today marks the day that I ran my first marathon.", "album_id": "72157623150381213", "photo_flickr_id": "4305137451", "setting": "first-2-pick-and-tell", "worker_id": "SLRBTLOLJ75O9PQ", "story_id": "44396", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today marks the day that i ran my first marathon .", "storylet_id": "221980"}], [{"original_text": "The crowd is getting worked up and ready to run!", "album_id": "72157623150381213", "photo_flickr_id": "4305419538", "setting": "first-2-pick-and-tell", "worker_id": "SLRBTLOLJ75O9PQ", "story_id": "44396", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd is getting worked up and ready to run !", "storylet_id": "221981"}], [{"original_text": "The torch carrier signified the start of the race.", "album_id": "72157623150381213", "photo_flickr_id": "4301185756", "setting": "first-2-pick-and-tell", "worker_id": "SLRBTLOLJ75O9PQ", "story_id": "44396", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the torch carrier signified the start of the race .", "storylet_id": "221982"}], [{"original_text": "Number 2270, that's me! Another keepsake for my scrapbook.", "album_id": "72157623150381213", "photo_flickr_id": "4301179612", "setting": "first-2-pick-and-tell", "worker_id": "SLRBTLOLJ75O9PQ", "story_id": "44396", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "number 2270 , that 's me ! another keepsake for my scrapbook .", "storylet_id": "221983"}], [{"original_text": "I didn't come in first, but I didn't come in last! I did it! ", "album_id": "72157623150381213", "photo_flickr_id": "4301170864", "setting": "first-2-pick-and-tell", "worker_id": "SLRBTLOLJ75O9PQ", "story_id": "44396", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i did n't come in first , but i did n't come in last ! i did it !", "storylet_id": "221984"}], [{"original_text": "A racer parks his car and heads to the event.", "album_id": "72157623150381213", "photo_flickr_id": "4306010606", "setting": "last-3-pick-old-and-tell", "worker_id": "ZZUMRRGRRLFZK16", "story_id": "44397", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a racer parks his car and heads to the event .", "storylet_id": "221985"}], [{"original_text": "An American flag is raised at the starting line.", "album_id": "72157623150381213", "photo_flickr_id": "4305423046", "setting": "last-3-pick-old-and-tell", "worker_id": "ZZUMRRGRRLFZK16", "story_id": "44397", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "an american flag is raised at the starting line .", "storylet_id": "221986"}], [{"original_text": "Individuals are given numbers to identify themselves.", "album_id": "72157623150381213", "photo_flickr_id": "4301179612", "setting": "last-3-pick-old-and-tell", "worker_id": "ZZUMRRGRRLFZK16", "story_id": "44397", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "individuals are given numbers to identify themselves .", "storylet_id": "221987"}], [{"original_text": "People begin to race as the gun sounds.", "album_id": "72157623150381213", "photo_flickr_id": "4301181854", "setting": "last-3-pick-old-and-tell", "worker_id": "ZZUMRRGRRLFZK16", "story_id": "44397", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people begin to race as the gun sounds .", "storylet_id": "221988"}], [{"original_text": "At the finish line, racers can see their time.", "album_id": "72157623150381213", "photo_flickr_id": "4300418423", "setting": "last-3-pick-old-and-tell", "worker_id": "ZZUMRRGRRLFZK16", "story_id": "44397", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the finish line , racers can see their time .", "storylet_id": "221989"}], [{"original_text": "Jennie got out of the car to go to her marathon.", "album_id": "72157623150381213", "photo_flickr_id": "4306010606", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44398", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] got out of the car to go to her marathon .", "storylet_id": "221990"}], [{"original_text": "Everyone was already lined up. She was almost late!", "album_id": "72157623150381213", "photo_flickr_id": "4305423046", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44398", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was already lined up . she was almost late !", "storylet_id": "221991"}], [{"original_text": "She was number 2270. She put the number sticker on her shirt.", "album_id": "72157623150381213", "photo_flickr_id": "4301179612", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44398", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was number 2270 . she put the number sticker on her shirt .", "storylet_id": "221992"}], [{"original_text": "Everyone started running as the announcer said \"Start!\"", "album_id": "72157623150381213", "photo_flickr_id": "4301181854", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44398", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone started running as the announcer said `` start ! ''", "storylet_id": "221993"}], [{"original_text": "Jenny kept a good pace, and may not have come in first. But she was just happy to finish.", "album_id": "72157623150381213", "photo_flickr_id": "4300418423", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44398", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] kept a good pace , and may not have come in first . but she was just happy to finish .", "storylet_id": "221994"}], [{"original_text": "It was Joan's first time in the big city, let alone running a huge 26.2 marathon. But if anything, she is ambitious.", "album_id": "72157623150381213", "photo_flickr_id": "4306010606", "setting": "last-3-pick-old-and-tell", "worker_id": "ACNH2VLU46UYBBE", "story_id": "44399", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was [female] 's first time in the big city , let alone running a huge 26.2 marathon . but if anything , she is ambitious .", "storylet_id": "221995"}], [{"original_text": "The running area was roped off from traffic, police cars blocked intersections, and the public lines up on the sidewalks to support those running.", "album_id": "72157623150381213", "photo_flickr_id": "4305423046", "setting": "last-3-pick-old-and-tell", "worker_id": "ACNH2VLU46UYBBE", "story_id": "44399", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the running area was roped off from traffic , police cars blocked intersections , and the public lines up on the sidewalks to support those running .", "storylet_id": "221996"}], [{"original_text": "It was an exciting moment for Joan preparing for the race to start. She got her running ID and psyched herself up.", "album_id": "72157623150381213", "photo_flickr_id": "4301179612", "setting": "last-3-pick-old-and-tell", "worker_id": "ACNH2VLU46UYBBE", "story_id": "44399", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was an exciting moment for [female] preparing for the race to start . she got her running id and psyched herself up .", "storylet_id": "221997"}], [{"original_text": "The runners took off running to the cheers of the crowd at the sides of the road. It was a huge surge of adrenaline for those involved.", "album_id": "72157623150381213", "photo_flickr_id": "4301181854", "setting": "last-3-pick-old-and-tell", "worker_id": "ACNH2VLU46UYBBE", "story_id": "44399", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the runners took off running to the cheers of the crowd at the sides of the road . it was a huge surge of adrenaline for those involved .", "storylet_id": "221998"}], [{"original_text": "After a long day of running, runners finally started to cross the finish line and note their times. Joan felt she finished much better than she had expected.", "album_id": "72157623150381213", "photo_flickr_id": "4300418423", "setting": "last-3-pick-old-and-tell", "worker_id": "ACNH2VLU46UYBBE", "story_id": "44399", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long day of running , runners finally started to cross the finish line and note their times . [female] felt she finished much better than she had expected .", "storylet_id": "221999"}], [{"original_text": "This concert was certainly a momentous occasion.", "album_id": "72157626448373295", "photo_flickr_id": "5653294112", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44400", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this concert was certainly a momentous occasion .", "storylet_id": "222000"}], [{"original_text": "There was a guy who had a hawk with him.", "album_id": "72157626448373295", "photo_flickr_id": "5652634563", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44400", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a guy who had a hawk with him .", "storylet_id": "222001"}], [{"original_text": "He also had other birds as well.", "album_id": "72157626448373295", "photo_flickr_id": "5652636889", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44400", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he also had other birds as well .", "storylet_id": "222002"}], [{"original_text": "This bird was huge, bigger than my child!", "album_id": "72157626448373295", "photo_flickr_id": "5652643843", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44400", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this bird was huge , bigger than my child !", "storylet_id": "222003"}], [{"original_text": "The owl was my favorite bird.", "album_id": "72157626448373295", "photo_flickr_id": "5653215062", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44400", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the owl was my favorite bird .", "storylet_id": "222004"}], [{"original_text": "There was a large crowd gathered to enjoy the medieval fair. ", "album_id": "72157626448373295", "photo_flickr_id": "5653299456", "setting": "first-2-pick-and-tell", "worker_id": "29CSFVUK7KML31E", "story_id": "44401", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a large crowd gathered to enjoy the medieval fair .", "storylet_id": "222005"}], [{"original_text": "They enjoyed listening to a band playing period music. ", "album_id": "72157626448373295", "photo_flickr_id": "5653294112", "setting": "first-2-pick-and-tell", "worker_id": "29CSFVUK7KML31E", "story_id": "44401", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they enjoyed listening to a band playing period music .", "storylet_id": "222006"}], [{"original_text": "A man demonstrated how to hunt with a falcon. ", "album_id": "72157626448373295", "photo_flickr_id": "5652636889", "setting": "first-2-pick-and-tell", "worker_id": "29CSFVUK7KML31E", "story_id": "44401", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man demonstrated how to hunt with a falcon .", "storylet_id": "222007"}], [{"original_text": "But the owl was not impressed. ", "album_id": "72157626448373295", "photo_flickr_id": "5653217792", "setting": "first-2-pick-and-tell", "worker_id": "29CSFVUK7KML31E", "story_id": "44401", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but the owl was not impressed .", "storylet_id": "222008"}], [{"original_text": "Garlands were for sale, providing a beautiful way to remember the day. ", "album_id": "72157626448373295", "photo_flickr_id": "5652735191", "setting": "first-2-pick-and-tell", "worker_id": "29CSFVUK7KML31E", "story_id": "44401", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "garlands were for sale , providing a beautiful way to remember the day .", "storylet_id": "222009"}], [{"original_text": "We went to see the band play downtown.", "album_id": "72157626448373295", "photo_flickr_id": "5653299456", "setting": "last-3-pick-old-and-tell", "worker_id": "56JX760LWYAK01P", "story_id": "44402", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to see the band play downtown .", "storylet_id": "222010"}], [{"original_text": "We were able to get close to the stage.", "album_id": "72157626448373295", "photo_flickr_id": "5653294112", "setting": "last-3-pick-old-and-tell", "worker_id": "56JX760LWYAK01P", "story_id": "44402", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were able to get close to the stage .", "storylet_id": "222011"}], [{"original_text": "We didn't expect to see this bird handler.", "album_id": "72157626448373295", "photo_flickr_id": "5652636889", "setting": "last-3-pick-old-and-tell", "worker_id": "56JX760LWYAK01P", "story_id": "44402", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we did n't expect to see this bird handler .", "storylet_id": "222012"}], [{"original_text": "I really enjoyed seeing the Owl so close.", "album_id": "72157626448373295", "photo_flickr_id": "5653217792", "setting": "last-3-pick-old-and-tell", "worker_id": "56JX760LWYAK01P", "story_id": "44402", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i really enjoyed seeing the owl so close .", "storylet_id": "222013"}], [{"original_text": "We also got to see someone making flower headbands. These were all done in an hour...amazing.", "album_id": "72157626448373295", "photo_flickr_id": "5652735191", "setting": "last-3-pick-old-and-tell", "worker_id": "56JX760LWYAK01P", "story_id": "44402", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also got to see someone making flower headbands . these were all done in an hour ... amazing .", "storylet_id": "222014"}], [{"original_text": "Under the pavilion, a band performed.", "album_id": "72157626448373295", "photo_flickr_id": "5653299456", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "44403", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "under the pavilion , a band performed .", "storylet_id": "222015"}], [{"original_text": "The sounds of acoustic guitars filled the air.", "album_id": "72157626448373295", "photo_flickr_id": "5653294112", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "44403", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sounds of acoustic guitars filled the air .", "storylet_id": "222016"}], [{"original_text": "A man used several trained birds to put on a show.", "album_id": "72157626448373295", "photo_flickr_id": "5652636889", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "44403", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a man used several trained birds to put on a show .", "storylet_id": "222017"}], [{"original_text": "The owl was clearly very well trained.", "album_id": "72157626448373295", "photo_flickr_id": "5653217792", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "44403", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the owl was clearly very well trained .", "storylet_id": "222018"}], [{"original_text": "A handmade flower crown would make a lovely keepsake.", "album_id": "72157626448373295", "photo_flickr_id": "5652735191", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "44403", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a handmade flower crown would make a lovely keepsake .", "storylet_id": "222019"}], [{"original_text": "The folk band played a cover of a Beatles song.", "album_id": "72157626448373295", "photo_flickr_id": "5653294112", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44404", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the folk band played a cover of a beatles song .", "storylet_id": "222020"}], [{"original_text": "Rich was trying to find his sword.", "album_id": "72157626448373295", "photo_flickr_id": "5652634563", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44404", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "rich was trying to find his sword .", "storylet_id": "222021"}], [{"original_text": "He had a hunch that Felipe took it.", "album_id": "72157626448373295", "photo_flickr_id": "5652636889", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44404", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had a hunch that [male] took it .", "storylet_id": "222022"}], [{"original_text": "Rich went to go approach Felipe in anger. ", "album_id": "72157626448373295", "photo_flickr_id": "5652643843", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44404", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "rich went to go approach [male] in anger .", "storylet_id": "222023"}], [{"original_text": "Felipe left and left behind an owl.", "album_id": "72157626448373295", "photo_flickr_id": "5653215062", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44404", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] left and left behind an owl .", "storylet_id": "222024"}], [{"original_text": "The islands offer a simple live. ", "album_id": "72157624133373744", "photo_flickr_id": "4655631641", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44405", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the islands offer a simple live .", "storylet_id": "222025"}], [{"original_text": "The wildlife is friendly. ", "album_id": "72157624133373744", "photo_flickr_id": "4656155788", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44405", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wildlife is friendly .", "storylet_id": "222026"}], [{"original_text": "The local beer is the best. ", "album_id": "72157624133373744", "photo_flickr_id": "4646419278", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44405", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the local beer is the best .", "storylet_id": "222027"}], [{"original_text": "The boat looks like a picture on the beach. ", "album_id": "72157624133373744", "photo_flickr_id": "4680858114", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44405", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boat looks like a picture on the beach .", "storylet_id": "222028"}], [{"original_text": "It is a relaxing way of life at the beach. ", "album_id": "72157624133373744", "photo_flickr_id": "4680837660", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44405", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is a relaxing way of life at the beach .", "storylet_id": "222029"}], [{"original_text": "We went down to the beach today.", "album_id": "72157624133373744", "photo_flickr_id": "4638964014", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44406", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went down to the beach today .", "storylet_id": "222030"}], [{"original_text": "It was such a beautiful day!", "album_id": "72157624133373744", "photo_flickr_id": "4655631641", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44406", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was such a beautiful day !", "storylet_id": "222031"}], [{"original_text": "The sky was so blue and there were so many things to see.", "album_id": "72157624133373744", "photo_flickr_id": "4649564023", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44406", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sky was so blue and there were so many things to see .", "storylet_id": "222032"}], [{"original_text": "We even found and old boat!", "album_id": "72157624133373744", "photo_flickr_id": "4680858114", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44406", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even found and old boat !", "storylet_id": "222033"}], [{"original_text": "We had a great time walking along the beach in the sand.", "album_id": "72157624133373744", "photo_flickr_id": "4680837660", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44406", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time walking along the beach in the sand .", "storylet_id": "222034"}], [{"original_text": "I am always humbled when traveling out of the country. However, this is one of the most amazing sights on this trip.", "album_id": "72157624133373744", "photo_flickr_id": "4638964014", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44407", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i am always humbled when traveling out of the country . however , this is one of the most amazing sights on this trip .", "storylet_id": "222035"}], [{"original_text": "Check out under this pier. I don't think I will be going up.", "album_id": "72157624133373744", "photo_flickr_id": "4655631641", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44407", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "check out under this pier . i do n't think i will be going up .", "storylet_id": "222036"}], [{"original_text": "Amazing greenery shots on the trip.", "album_id": "72157624133373744", "photo_flickr_id": "4649564023", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44407", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "amazing greenery shots on the trip .", "storylet_id": "222037"}], [{"original_text": "Love this boat I believe it was handmade.", "album_id": "72157624133373744", "photo_flickr_id": "4680858114", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44407", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "love this boat i believe it was handmade .", "storylet_id": "222038"}], [{"original_text": "One of the guys we met while on our vacation. He helped us with information.", "album_id": "72157624133373744", "photo_flickr_id": "4680837660", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44407", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of the guys we met while on our vacation . he helped us with information .", "storylet_id": "222039"}], [{"original_text": "This island in the middle of the sea has a great history. Old buildings still stand in some places.", "album_id": "72157624133373744", "photo_flickr_id": "4638964014", "setting": "last-3-pick-old-and-tell", "worker_id": "LUPX14WM3ZZVB35", "story_id": "44408", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this island in the middle of the sea has a great history . old buildings still stand in some places .", "storylet_id": "222040"}], [{"original_text": "The pier is from a long time ago, but it has been reinforced to stay available for tourists.", "album_id": "72157624133373744", "photo_flickr_id": "4655631641", "setting": "last-3-pick-old-and-tell", "worker_id": "LUPX14WM3ZZVB35", "story_id": "44408", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pier is from a long time ago , but it has been reinforced to stay available for tourists .", "storylet_id": "222041"}], [{"original_text": "On a tourist tram we see the lush vegetation with the sea in the background.", "album_id": "72157624133373744", "photo_flickr_id": "4649564023", "setting": "last-3-pick-old-and-tell", "worker_id": "LUPX14WM3ZZVB35", "story_id": "44408", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "on a tourist tram we see the lush vegetation with the sea in the background .", "storylet_id": "222042"}], [{"original_text": "An abandoned boat sits along the beach. Perhaps it still would float.", "album_id": "72157624133373744", "photo_flickr_id": "4680858114", "setting": "last-3-pick-old-and-tell", "worker_id": "LUPX14WM3ZZVB35", "story_id": "44408", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an abandoned boat sits along the beach . perhaps it still would float .", "storylet_id": "222043"}], [{"original_text": "Back at the main tourist area, children and adults play happily in the surf.", "album_id": "72157624133373744", "photo_flickr_id": "4680837660", "setting": "last-3-pick-old-and-tell", "worker_id": "LUPX14WM3ZZVB35", "story_id": "44408", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "back at the main tourist area , children and adults play happily in the surf .", "storylet_id": "222044"}], [{"original_text": "The whole family went on vacation to the beach.", "album_id": "72157624133373744", "photo_flickr_id": "4655631641", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44409", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family went on vacation to the beach .", "storylet_id": "222045"}], [{"original_text": "We got to see a monkey.", "album_id": "72157624133373744", "photo_flickr_id": "4656155788", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44409", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to see a monkey .", "storylet_id": "222046"}], [{"original_text": "Dad had a beer.", "album_id": "72157624133373744", "photo_flickr_id": "4646419278", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44409", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad had a beer .", "storylet_id": "222047"}], [{"original_text": "We saw a old yellow boat.", "album_id": "72157624133373744", "photo_flickr_id": "4680858114", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44409", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw a old yellow boat .", "storylet_id": "222048"}], [{"original_text": "There were other people on the beach with us having a good time too.", "album_id": "72157624133373744", "photo_flickr_id": "4680837660", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44409", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were other people on the beach with us having a good time too .", "storylet_id": "222049"}], [{"original_text": "Today we went to thE Indie Pop Festival ", "album_id": "72157624584252424", "photo_flickr_id": "4830215816", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "44410", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to the indie pop festival", "storylet_id": "222050"}], [{"original_text": "There were a lot of performers there ", "album_id": "72157624584252424", "photo_flickr_id": "4830217230", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "44410", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of performers there", "storylet_id": "222051"}], [{"original_text": "They all sang great music ", "album_id": "72157624584252424", "photo_flickr_id": "4829605785", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "44410", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all sang great music", "storylet_id": "222052"}], [{"original_text": "And played guitars and other instruments all day", "album_id": "72157624584252424", "photo_flickr_id": "4830301386", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "44410", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and played guitars and other instruments all day", "storylet_id": "222053"}], [{"original_text": "We camped out and enjoyed the music from the lawn", "album_id": "72157624584252424", "photo_flickr_id": "4829690081", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "44410", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we camped out and enjoyed the music from the lawn", "storylet_id": "222054"}], [{"original_text": "The concert at the park was so much fun.", "album_id": "72157624584252424", "photo_flickr_id": "4829690081", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44411", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the concert at the park was so much fun .", "storylet_id": "222055"}], [{"original_text": "We saw so many local bands.", "album_id": "72157624584252424", "photo_flickr_id": "4829690481", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44411", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw so many local bands .", "storylet_id": "222056"}], [{"original_text": "Some of the bands were a little boring.", "album_id": "72157624584252424", "photo_flickr_id": "4830126286", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44411", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the bands were a little boring .", "storylet_id": "222057"}], [{"original_text": "We got so tired we had to sit on the floor.", "album_id": "72157624584252424", "photo_flickr_id": "4841478555", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44411", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got so tired we had to sit on the floor .", "storylet_id": "222058"}], [{"original_text": "The bands kept playing throughout the night.", "album_id": "72157624584252424", "photo_flickr_id": "4830163386", "setting": "first-2-pick-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44411", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bands kept playing throughout the night .", "storylet_id": "222059"}], [{"original_text": "The concert was going to be amazing.", "album_id": "72157624584252424", "photo_flickr_id": "4829690081", "setting": "last-3-pick-old-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "44412", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the concert was going to be amazing .", "storylet_id": "222060"}], [{"original_text": "The first band was one of the best.", "album_id": "72157624584252424", "photo_flickr_id": "4829690481", "setting": "last-3-pick-old-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "44412", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first band was one of the best .", "storylet_id": "222061"}], [{"original_text": "But the second band was even better.", "album_id": "72157624584252424", "photo_flickr_id": "4830126286", "setting": "last-3-pick-old-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "44412", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but the second band was even better .", "storylet_id": "222062"}], [{"original_text": "We saw a dad sitting with his kid, it was beautiful.", "album_id": "72157624584252424", "photo_flickr_id": "4841478555", "setting": "last-3-pick-old-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "44412", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw a dad sitting with his kid , it was beautiful .", "storylet_id": "222063"}], [{"original_text": "The last band was the best.", "album_id": "72157624584252424", "photo_flickr_id": "4830163386", "setting": "last-3-pick-old-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "44412", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last band was the best .", "storylet_id": "222064"}], [{"original_text": "We had just arrived at the Indie festival.", "album_id": "72157624584252424", "photo_flickr_id": "4830215816", "setting": "last-3-pick-old-and-tell", "worker_id": "38T4M0KZ8XG6OZB", "story_id": "44413", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had just arrived at the location festival .", "storylet_id": "222065"}], [{"original_text": "The first performance began.", "album_id": "72157624584252424", "photo_flickr_id": "4830217230", "setting": "last-3-pick-old-and-tell", "worker_id": "38T4M0KZ8XG6OZB", "story_id": "44413", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first performance began .", "storylet_id": "222066"}], [{"original_text": "The second performer had a pretty short act.", "album_id": "72157624584252424", "photo_flickr_id": "4829605785", "setting": "last-3-pick-old-and-tell", "worker_id": "38T4M0KZ8XG6OZB", "story_id": "44413", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the second performer had a pretty short act .", "storylet_id": "222067"}], [{"original_text": "The third sounded almost Irish.", "album_id": "72157624584252424", "photo_flickr_id": "4830301386", "setting": "last-3-pick-old-and-tell", "worker_id": "38T4M0KZ8XG6OZB", "story_id": "44413", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the third sounded almost irish .", "storylet_id": "222068"}], [{"original_text": "I'm glad we got there early, the crowd was still growing.", "album_id": "72157624584252424", "photo_flickr_id": "4829690081", "setting": "last-3-pick-old-and-tell", "worker_id": "38T4M0KZ8XG6OZB", "story_id": "44413", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm glad we got there early , the crowd was still growing .", "storylet_id": "222069"}], [{"original_text": "I went to the concert last weekend.", "album_id": "72157624584252424", "photo_flickr_id": "4829690081", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44414", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the concert last weekend .", "storylet_id": "222070"}], [{"original_text": "I had a great time there.", "album_id": "72157624584252424", "photo_flickr_id": "4829690481", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44414", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had a great time there .", "storylet_id": "222071"}], [{"original_text": "The band was great.", "album_id": "72157624584252424", "photo_flickr_id": "4830126286", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44414", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band was great .", "storylet_id": "222072"}], [{"original_text": "There were many children there as well.", "album_id": "72157624584252424", "photo_flickr_id": "4841478555", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44414", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many children there as well .", "storylet_id": "222073"}], [{"original_text": "They performed for a couple of hours.", "album_id": "72157624584252424", "photo_flickr_id": "4830163386", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44414", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they performed for a couple of hours .", "storylet_id": "222074"}], [{"original_text": "I went over to the petting zoo the other day.", "album_id": "72157624919770219", "photo_flickr_id": "5028381545", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44415", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went over to the petting zoo the other day .", "storylet_id": "222075"}], [{"original_text": "They had many horses that you could ride.", "album_id": "72157624919770219", "photo_flickr_id": "5028383447", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44415", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had many horses that you could ride .", "storylet_id": "222076"}], [{"original_text": "And sheep as well.", "album_id": "72157624919770219", "photo_flickr_id": "5029015900", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44415", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and sheep as well .", "storylet_id": "222077"}], [{"original_text": "All of the pigs were sleeping.", "album_id": "72157624919770219", "photo_flickr_id": "5028402957", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44415", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the pigs were sleeping .", "storylet_id": "222078"}], [{"original_text": "The cows were tired too.", "album_id": "72157624919770219", "photo_flickr_id": "5029021896", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44415", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cows were tired too .", "storylet_id": "222079"}], [{"original_text": "Everybody came to the fair for the rides.", "album_id": "72157624919770219", "photo_flickr_id": "5029030760", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44416", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everybody came to the fair for the rides .", "storylet_id": "222080"}], [{"original_text": "They stayed for all the other fun things to do though, like horseback riding!", "album_id": "72157624919770219", "photo_flickr_id": "5028386827", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44416", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they stayed for all the other fun things to do though , like horseback riding !", "storylet_id": "222081"}], [{"original_text": "The multi colored slides were a big hit with the children.", "album_id": "72157624919770219", "photo_flickr_id": "5029041370", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44416", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the multi colored slides were a big hit with the children .", "storylet_id": "222082"}], [{"original_text": "There were also lots of fun games where you could win prizes.", "album_id": "72157624919770219", "photo_flickr_id": "5028428875", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44416", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also lots of fun games where you could win prizes .", "storylet_id": "222083"}], [{"original_text": "Many were intrigued by the large farm equipment on display.", "album_id": "72157624919770219", "photo_flickr_id": "5028437271", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "44416", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many were intrigued by the large farm equipment on display .", "storylet_id": "222084"}], [{"original_text": "My father took me on a horse drawn carriage to visit the local farm.", "album_id": "72157624919770219", "photo_flickr_id": "5028381545", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44417", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my father took me on a horse drawn carriage to visit the local farm .", "storylet_id": "222085"}], [{"original_text": "He showed me one of the other horses he was raising.", "album_id": "72157624919770219", "photo_flickr_id": "5028383447", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44417", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he showed me one of the other horses he was raising .", "storylet_id": "222086"}], [{"original_text": "When we came to the sheep pen, I saw my little cousin playing with one.", "album_id": "72157624919770219", "photo_flickr_id": "5029015900", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44417", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when we came to the sheep pen , i saw my little cousin playing with one .", "storylet_id": "222087"}], [{"original_text": "The pigs had just eaten and were just sleeping in their pen.", "album_id": "72157624919770219", "photo_flickr_id": "5028402957", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44417", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pigs had just eaten and were just sleeping in their pen .", "storylet_id": "222088"}], [{"original_text": "The cows were sleeping too.", "album_id": "72157624919770219", "photo_flickr_id": "5029021896", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44417", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cows were sleeping too .", "storylet_id": "222089"}], [{"original_text": "We took our family to the county fair.", "album_id": "72157624919770219", "photo_flickr_id": "5029030760", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44418", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took our family to the county fair .", "storylet_id": "222090"}], [{"original_text": "We started the day with our daughter riding the ponies.", "album_id": "72157624919770219", "photo_flickr_id": "5028386827", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44418", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started the day with our daughter riding the ponies .", "storylet_id": "222091"}], [{"original_text": "Next my son went down a huge rainbow slide.", "album_id": "72157624919770219", "photo_flickr_id": "5029041370", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44418", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next my son went down a huge rainbow slide .", "storylet_id": "222092"}], [{"original_text": "My husband tried his hand at the day game and managed to win two prizes for the kids.", "album_id": "72157624919770219", "photo_flickr_id": "5028428875", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44418", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my husband tried his hand at the day game and managed to win two prizes for the kids .", "storylet_id": "222093"}], [{"original_text": "My favorite was the big farm tractors.", "album_id": "72157624919770219", "photo_flickr_id": "5028437271", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44418", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite was the big farm tractors .", "storylet_id": "222094"}], [{"original_text": "When the fair comes to town, everyone gets excited. ", "album_id": "72157624919770219", "photo_flickr_id": "5029030760", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "44419", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when the fair comes to town , everyone gets excited .", "storylet_id": "222095"}], [{"original_text": "The children love the horses, and riding them.", "album_id": "72157624919770219", "photo_flickr_id": "5028386827", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "44419", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children love the horses , and riding them .", "storylet_id": "222096"}], [{"original_text": "They love all the rides and the amusement.", "album_id": "72157624919770219", "photo_flickr_id": "5029041370", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "44419", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they love all the rides and the amusement .", "storylet_id": "222097"}], [{"original_text": "There are even games at the fair, for everyone to play.", "album_id": "72157624919770219", "photo_flickr_id": "5028428875", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "44419", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are even games at the fair , for everyone to play .", "storylet_id": "222098"}], [{"original_text": "At the end of the day, the tractor gives the kids free rides around the fairgrounds.", "album_id": "72157624919770219", "photo_flickr_id": "5028437271", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "44419", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , the tractor gives the kids free rides around the fairgrounds .", "storylet_id": "222099"}], [{"original_text": "Every Sunday after church, Marg, Juanita, and Anelle loved to observe the cruise ships as they passed by; designers had gotten so creative in recent years.", "album_id": "72157627775152040", "photo_flickr_id": "6192914870", "setting": "first-2-pick-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "44420", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "every sunday after church , organization , [female] , and anelle loved to observe the cruise ships as they passed by ; designers had gotten so creative in recent years .", "storylet_id": "222100"}], [{"original_text": "One ship was made to look like a lady.", "album_id": "72157627775152040", "photo_flickr_id": "6193001884", "setting": "first-2-pick-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "44420", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one ship was made to look like a lady .", "storylet_id": "222101"}], [{"original_text": "She even had great big red lips.", "album_id": "72157627775152040", "photo_flickr_id": "6193003268", "setting": "first-2-pick-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "44420", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she even had great big red lips .", "storylet_id": "222102"}], [{"original_text": "Another had a yellow sports car painted on the side.", "album_id": "72157627775152040", "photo_flickr_id": "6193005920", "setting": "first-2-pick-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "44420", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another had a yellow sports car painted on the side .", "storylet_id": "222103"}], [{"original_text": "Marg's husband Dale, however, preferred to fish off the pier and shoot the breeze with his grandson.", "album_id": "72157627775152040", "photo_flickr_id": "6192392545", "setting": "first-2-pick-and-tell", "worker_id": "9PFAUBTD86VKBWL", "story_id": "44420", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "marg 's husband [male] , however , preferred to fish off the pier and shoot the breeze with his grandson .", "storylet_id": "222104"}], [{"original_text": "We went on a cruise for vacation.", "album_id": "72157627775152040", "photo_flickr_id": "6192390657", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "44421", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on a cruise for vacation .", "storylet_id": "222105"}], [{"original_text": "The boat we were on was huge.", "album_id": "72157627775152040", "photo_flickr_id": "6192991300", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "44421", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boat we were on was huge .", "storylet_id": "222106"}], [{"original_text": "When you stand in front of it, it makes you feel very small.", "album_id": "72157627775152040", "photo_flickr_id": "6192997080", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "44421", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when you stand in front of it , it makes you feel very small .", "storylet_id": "222107"}], [{"original_text": "We were impressed with how much people it could carry.", "album_id": "72157627775152040", "photo_flickr_id": "6193001884", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "44421", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were impressed with how much people it could carry .", "storylet_id": "222108"}], [{"original_text": "It took us to the Caribbean where we had a good time.", "album_id": "72157627775152040", "photo_flickr_id": "6193229914", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "44421", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it took us to the location where we had a good time .", "storylet_id": "222109"}], [{"original_text": "There's the boat I plan to be on very soon.", "album_id": "72157627775152040", "photo_flickr_id": "6192390657", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "44422", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there 's the boat i plan to be on very soon .", "storylet_id": "222110"}], [{"original_text": "It sure looks like this is going to be good time.", "album_id": "72157627775152040", "photo_flickr_id": "6192991300", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "44422", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it sure looks like this is going to be good time .", "storylet_id": "222111"}], [{"original_text": "That area looks like it's going to be a great view.", "album_id": "72157627775152040", "photo_flickr_id": "6192997080", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "44422", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that area looks like it 's going to be a great view .", "storylet_id": "222112"}], [{"original_text": "This is a very pretty boat to be relaxing on.", "album_id": "72157627775152040", "photo_flickr_id": "6193001884", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "44422", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a very pretty boat to be relaxing on .", "storylet_id": "222113"}], [{"original_text": "Now this is the picture of relaxation and fun.", "album_id": "72157627775152040", "photo_flickr_id": "6193229914", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "44422", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now this is the picture of relaxation and fun .", "storylet_id": "222114"}], [{"original_text": "Awaiting our parents who went on a cruise. ", "album_id": "72157627775152040", "photo_flickr_id": "6192390657", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "44423", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "awaiting our parents who went on a cruise .", "storylet_id": "222115"}], [{"original_text": "I'm very jealous that they left me behind. ", "album_id": "72157627775152040", "photo_flickr_id": "6192991300", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "44423", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm very jealous that they left me behind .", "storylet_id": "222116"}], [{"original_text": "I saw them on top of the ship, kissing. ", "album_id": "72157627775152040", "photo_flickr_id": "6192997080", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "44423", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i saw them on top of the ship , kissing .", "storylet_id": "222117"}], [{"original_text": "I saw someone swim from the back, weird. ", "album_id": "72157627775152040", "photo_flickr_id": "6193001884", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "44423", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i saw someone swim from the back , weird .", "storylet_id": "222118"}], [{"original_text": "Finally my parents arrive to greet us.", "album_id": "72157627775152040", "photo_flickr_id": "6193229914", "setting": "last-3-pick-old-and-tell", "worker_id": "NQS74NUSNCEB8NR", "story_id": "44423", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally my parents arrive to greet us .", "storylet_id": "222119"}], [{"original_text": "The dock was long", "album_id": "72157627775152040", "photo_flickr_id": "6192914870", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44424", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dock was long", "storylet_id": "222120"}], [{"original_text": "and there was a ship", "album_id": "72157627775152040", "photo_flickr_id": "6193001884", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44424", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and there was a ship", "storylet_id": "222121"}], [{"original_text": "that had blue eyes.", "album_id": "72157627775152040", "photo_flickr_id": "6193003268", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44424", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that had blue eyes .", "storylet_id": "222122"}], [{"original_text": "The people waited ", "album_id": "72157627775152040", "photo_flickr_id": "6193005920", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44424", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people waited", "storylet_id": "222123"}], [{"original_text": "for the ship to leave.", "album_id": "72157627775152040", "photo_flickr_id": "6192392545", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44424", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for the ship to leave .", "storylet_id": "222124"}], [{"original_text": "An evil spirit plagued the land.", "album_id": "72157627191217319", "photo_flickr_id": "5990998658", "setting": "first-2-pick-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "44425", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an evil spirit plagued the land .", "storylet_id": "222125"}], [{"original_text": "Witches from all over gathered to purge the evil spirit.", "album_id": "72157627191217319", "photo_flickr_id": "5990969916", "setting": "first-2-pick-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "44425", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "witches from all over gathered to purge the evil spirit .", "storylet_id": "222126"}], [{"original_text": "Citizens crossed themselves against its evil.", "album_id": "72157627191217319", "photo_flickr_id": "5990976876", "setting": "first-2-pick-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "44425", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "citizens crossed themselves against its evil .", "storylet_id": "222127"}], [{"original_text": "The witch doctor liked young citizens.", "album_id": "72157627191217319", "photo_flickr_id": "5990994432", "setting": "first-2-pick-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "44425", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the witch doctor liked young citizens .", "storylet_id": "222128"}], [{"original_text": "American politicians offered false promises to cleanse the third world country (by stealing its resources).", "album_id": "72157627191217319", "photo_flickr_id": "5990394823", "setting": "first-2-pick-and-tell", "worker_id": "7II8FXFR15H087M", "story_id": "44425", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "american politicians offered false promises to cleanse the third world country ( by stealing its resources ) .", "storylet_id": "222129"}], [{"original_text": "When I arrived at the colorful parade this old man pointed me out and commented on my outfit.", "album_id": "72157627191217319", "photo_flickr_id": "5990394823", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "44426", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i arrived at the colorful parade this old man pointed me out and commented on my outfit .", "storylet_id": "222130"}], [{"original_text": "From the get go I noticed that many of the girls had on some amazing outfits.", "album_id": "72157627191217319", "photo_flickr_id": "5990959566", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "44426", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from the get go i noticed that many of the girls had on some amazing outfits .", "storylet_id": "222131"}], [{"original_text": "Noticing that I was taking pictures these girls call over others to get in on the photo.", "album_id": "72157627191217319", "photo_flickr_id": "5990969916", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "44426", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "noticing that i was taking pictures these girls call over others to get in on the photo .", "storylet_id": "222132"}], [{"original_text": "Not only where there dressed up girls there, but there were also people wearing some pretty interesting masks.", "album_id": "72157627191217319", "photo_flickr_id": "5990435421", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "44426", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "not only where there dressed up girls there , but there were also people wearing some pretty interesting masks .", "storylet_id": "222133"}], [{"original_text": "The leader of the parade making a funny pose for the cameras around me. ", "album_id": "72157627191217319", "photo_flickr_id": "5990446189", "setting": "first-2-pick-and-tell", "worker_id": "9WM17XOYRW8SQY4", "story_id": "44426", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the leader of the parade making a funny pose for the cameras around me .", "storylet_id": "222134"}], [{"original_text": "The dancing parade has started. This guy was so ready for the event.", "album_id": "72157627191217319", "photo_flickr_id": "5990998658", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44427", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dancing parade has started . this guy was so ready for the event .", "storylet_id": "222135"}], [{"original_text": "The ladies stole the show with their costumes and dance moves.", "album_id": "72157627191217319", "photo_flickr_id": "5990969916", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44427", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ladies stole the show with their costumes and dance moves .", "storylet_id": "222136"}], [{"original_text": "This lady was happy to be in the parade.", "album_id": "72157627191217319", "photo_flickr_id": "5990976876", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44427", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this lady was happy to be in the parade .", "storylet_id": "222137"}], [{"original_text": "The guy costume made the later run away.", "album_id": "72157627191217319", "photo_flickr_id": "5990994432", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44427", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guy costume made the later run away .", "storylet_id": "222138"}], [{"original_text": "This guy has been at this event for years. It was very eventful and next year will be better.", "album_id": "72157627191217319", "photo_flickr_id": "5990394823", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44427", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this guy has been at this event for years . it was very eventful and next year will be better .", "storylet_id": "222139"}], [{"original_text": "The Grand Marshall of the parade was a fun elderly man.", "album_id": "72157627191217319", "photo_flickr_id": "5990394823", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "44428", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the grand [male] of the parade was a fun elderly man .", "storylet_id": "222140"}], [{"original_text": "He announced the parade which included some women in risque costumes.", "album_id": "72157627191217319", "photo_flickr_id": "5990959566", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "44428", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he announced the parade which included some women in risque costumes .", "storylet_id": "222141"}], [{"original_text": "Many women danced and performed.", "album_id": "72157627191217319", "photo_flickr_id": "5990969916", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "44428", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many women danced and performed .", "storylet_id": "222142"}], [{"original_text": "The people marching in the parade were really entertaining to watch.", "album_id": "72157627191217319", "photo_flickr_id": "5990435421", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "44428", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people marching in the parade were really entertaining to watch .", "storylet_id": "222143"}], [{"original_text": "I had a great time. I can't wait to see who is in the parade next year!", "album_id": "72157627191217319", "photo_flickr_id": "5990446189", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "44428", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time . i ca n't wait to see who is in the parade next year !", "storylet_id": "222144"}], [{"original_text": "This old fella still new how to have fun.", "album_id": "72157627191217319", "photo_flickr_id": "5990394823", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44429", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this old fella still new how to have fun .", "storylet_id": "222145"}], [{"original_text": "This woman's confidence was inspiring.", "album_id": "72157627191217319", "photo_flickr_id": "5990959566", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44429", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this woman 's confidence was inspiring .", "storylet_id": "222146"}], [{"original_text": "These lovely ladies had very intricate costumes.", "album_id": "72157627191217319", "photo_flickr_id": "5990969916", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44429", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these lovely ladies had very intricate costumes .", "storylet_id": "222147"}], [{"original_text": "These mask was clearly a favorite.", "album_id": "72157627191217319", "photo_flickr_id": "5990435421", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44429", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these mask was clearly a favorite .", "storylet_id": "222148"}], [{"original_text": "And this performer was more fun and upbeat. ", "album_id": "72157627191217319", "photo_flickr_id": "5990446189", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44429", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and this performer was more fun and upbeat .", "storylet_id": "222149"}], [{"original_text": "I took my son to the fair today.", "album_id": "72157625150547327", "photo_flickr_id": "5129345977", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44430", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took my son to the fair today .", "storylet_id": "222150"}], [{"original_text": "He put on his favorite jacket.", "album_id": "72157625150547327", "photo_flickr_id": "5129348371", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44430", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he put on his favorite jacket .", "storylet_id": "222151"}], [{"original_text": "All of the other people thought he was adorable.", "album_id": "72157625150547327", "photo_flickr_id": "5129952854", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44430", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of the other people thought he was adorable .", "storylet_id": "222152"}], [{"original_text": "We rode on the bumper cars.", "album_id": "72157625150547327", "photo_flickr_id": "5129361263", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44430", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we rode on the bumper cars .", "storylet_id": "222153"}], [{"original_text": "We had a lot of fun.", "album_id": "72157625150547327", "photo_flickr_id": "5129362101", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44430", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a lot of fun .", "storylet_id": "222154"}], [{"original_text": "The little boy poses by the fence in his halloween costume.", "album_id": "72157625150547327", "photo_flickr_id": "5129945560", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44431", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the little boy poses by the fence in his halloween costume .", "storylet_id": "222155"}], [{"original_text": "He joins all the other kids in a parade down the street.", "album_id": "72157625150547327", "photo_flickr_id": "5129952854", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44431", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he joins all the other kids in a parade down the street .", "storylet_id": "222156"}], [{"original_text": "His little brother watches very interested in what is going on.", "album_id": "72157625150547327", "photo_flickr_id": "5129960996", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44431", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his little brother watches very interested in what is going on .", "storylet_id": "222157"}], [{"original_text": "The little boy and his dad go for a ride in the bumper cars.", "album_id": "72157625150547327", "photo_flickr_id": "5129964256", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44431", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the little boy and his dad go for a ride in the bumper cars .", "storylet_id": "222158"}], [{"original_text": "Finally he spends some relaxed time with his mom.", "album_id": "72157625150547327", "photo_flickr_id": "5129967372", "setting": "first-2-pick-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44431", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally he spends some relaxed time with his mom .", "storylet_id": "222159"}], [{"original_text": "I dressed my oldest son as a monkey for halloween.", "album_id": "72157625150547327", "photo_flickr_id": "5129345977", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44432", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i dressed my oldest son as a monkey for halloween .", "storylet_id": "222160"}], [{"original_text": "He loved it but didn't like getting his picture taken.", "album_id": "72157625150547327", "photo_flickr_id": "5129348371", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44432", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he loved it but did n't like getting his picture taken .", "storylet_id": "222161"}], [{"original_text": "His friends all wore very cute costumes like bees and dinosaurs.", "album_id": "72157625150547327", "photo_flickr_id": "5129952854", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44432", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his friends all wore very cute costumes like bees and dinosaurs .", "storylet_id": "222162"}], [{"original_text": "My youngest didn't wear a costume and just sat in the stroller.", "album_id": "72157625150547327", "photo_flickr_id": "5129361263", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44432", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my youngest did n't wear a costume and just sat in the stroller .", "storylet_id": "222163"}], [{"original_text": "While my wife watched my youngest, I took my oldest son on the bumper cars and showed him how to drive.", "album_id": "72157625150547327", "photo_flickr_id": "5129362101", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44432", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while my wife watched my youngest , i took my oldest son on the bumper cars and showed him how to drive .", "storylet_id": "222164"}], [{"original_text": "a family went to the zoo", "album_id": "72157625150547327", "photo_flickr_id": "5129345977", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44433", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a family went to the zoo", "storylet_id": "222165"}], [{"original_text": "the child wore a costume of a monkey.", "album_id": "72157625150547327", "photo_flickr_id": "5129348371", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44433", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the child wore a costume of a monkey .", "storylet_id": "222166"}], [{"original_text": "the family walked through the park and saw some interesting animals", "album_id": "72157625150547327", "photo_flickr_id": "5129952854", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44433", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family walked through the park and saw some interesting animals", "storylet_id": "222167"}], [{"original_text": "the second bay rode in a stroller", "album_id": "72157625150547327", "photo_flickr_id": "5129361263", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44433", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the second bay rode in a stroller", "storylet_id": "222168"}], [{"original_text": "the family gathered for lunch to eat. ", "album_id": "72157625150547327", "photo_flickr_id": "5129362101", "setting": "last-3-pick-old-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44433", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family gathered for lunch to eat .", "storylet_id": "222169"}], [{"original_text": "We dressed the kid up and headed to the festival.", "album_id": "72157625150547327", "photo_flickr_id": "5129345977", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44434", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we dressed the kid up and headed to the festival .", "storylet_id": "222170"}], [{"original_text": "He had a lot of fun from the moment we got there.", "album_id": "72157625150547327", "photo_flickr_id": "5129348371", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44434", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he had a lot of fun from the moment we got there .", "storylet_id": "222171"}], [{"original_text": "There where others dressed up to. He was really excited.", "album_id": "72157625150547327", "photo_flickr_id": "5129952854", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44434", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there where others dressed up to . he was really excited .", "storylet_id": "222172"}], [{"original_text": "We brought the baby but he mostly slept.", "album_id": "72157625150547327", "photo_flickr_id": "5129361263", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44434", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we brought the baby but he mostly slept .", "storylet_id": "222173"}], [{"original_text": "We rode the rides and had an awesome day.", "album_id": "72157625150547327", "photo_flickr_id": "5129362101", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44434", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we rode the rides and had an awesome day .", "storylet_id": "222174"}], [{"original_text": "Today, at the cat show, this lady was selling cat clothing in her booth. ", "album_id": "72157625816691809", "photo_flickr_id": "5403028352", "setting": "first-2-pick-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "44435", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , at the cat show , this lady was selling cat clothing in her booth .", "storylet_id": "222175"}], [{"original_text": "This cat is being looked over carefully by one of the judges. ", "album_id": "72157625816691809", "photo_flickr_id": "5403027666", "setting": "first-2-pick-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "44435", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this cat is being looked over carefully by one of the judges .", "storylet_id": "222176"}], [{"original_text": "This proud cat owner is talking with another contestant while waiting to be judged. ", "album_id": "72157625816691809", "photo_flickr_id": "5402428987", "setting": "first-2-pick-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "44435", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this proud cat owner is talking with another contestant while waiting to be judged .", "storylet_id": "222177"}], [{"original_text": "This is one of the pretty kitties after the show. She looks tired!", "album_id": "72157625816691809", "photo_flickr_id": "5403029344", "setting": "first-2-pick-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "44435", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is one of the pretty kitties after the show . she looks tired !", "storylet_id": "222178"}], [{"original_text": "And this is one of the winners at the show. All who participated were beautiful!", "album_id": "72157625816691809", "photo_flickr_id": "5403029016", "setting": "first-2-pick-and-tell", "worker_id": "09XSETTF0SHNKXJ", "story_id": "44435", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and this is one of the winners at the show . all who participated were beautiful !", "storylet_id": "222179"}], [{"original_text": "Everyone gathered around for the cat show.", "album_id": "72157625816691809", "photo_flickr_id": "5403028352", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "44436", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone gathered around for the cat show .", "storylet_id": "222180"}], [{"original_text": "Many brought their cats in hopes of winning a prize.", "album_id": "72157625816691809", "photo_flickr_id": "5403035900", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "44436", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many brought their cats in hopes of winning a prize .", "storylet_id": "222181"}], [{"original_text": "This cat received a lot of attention.", "album_id": "72157625816691809", "photo_flickr_id": "5402429621", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "44436", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this cat received a lot of attention .", "storylet_id": "222182"}], [{"original_text": "The judges inspected the cat for points.", "album_id": "72157625816691809", "photo_flickr_id": "5403027770", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "44436", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the judges inspected the cat for points .", "storylet_id": "222183"}], [{"original_text": "A winner was chosen before the night was through.", "album_id": "72157625816691809", "photo_flickr_id": "5403029016", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "44436", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a winner was chosen before the night was through .", "storylet_id": "222184"}], [{"original_text": "Everything was cat related at the cat show, even the jackets.", "album_id": "72157625816691809", "photo_flickr_id": "5403028352", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44437", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everything was cat related at the cat show , even the jackets .", "storylet_id": "222185"}], [{"original_text": "The first kitty up was quite beautiful with it's gray-ish fur.", "album_id": "72157625816691809", "photo_flickr_id": "5403027666", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44437", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first kitty up was quite beautiful with it 's gray-ish fur .", "storylet_id": "222186"}], [{"original_text": "There was an albino up next.", "album_id": "72157625816691809", "photo_flickr_id": "5402428987", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44437", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was an albino up next .", "storylet_id": "222187"}], [{"original_text": "I walked around and saw a Siamese with an interesting spot pattern on it's face.", "album_id": "72157625816691809", "photo_flickr_id": "5403029344", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44437", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i walked around and saw a siamese with an interesting spot pattern on it 's face .", "storylet_id": "222188"}], [{"original_text": "There was a calico that won best in show.", "album_id": "72157625816691809", "photo_flickr_id": "5403029016", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44437", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a calico that won best in show .", "storylet_id": "222189"}], [{"original_text": "My sister dared me to go to a cat show. ", "album_id": "72157625816691809", "photo_flickr_id": "5403028352", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "44438", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sister dared me to go to a cat show .", "storylet_id": "222190"}], [{"original_text": "Some of the cats were interesting looking, and very elegant. ", "album_id": "72157625816691809", "photo_flickr_id": "5403027666", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "44438", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the cats were interesting looking , and very elegant .", "storylet_id": "222191"}], [{"original_text": "We saw a man holding a fluffy white cat and they had the same facial expression. ", "album_id": "72157625816691809", "photo_flickr_id": "5402428987", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "44438", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw a man holding a fluffy white cat and they had the same facial expression .", "storylet_id": "222192"}], [{"original_text": "One cat had a very angular, creepy looking face. ", "album_id": "72157625816691809", "photo_flickr_id": "5403029344", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "44438", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one cat had a very angular , creepy looking face .", "storylet_id": "222193"}], [{"original_text": "A very basic orange and white cat won a lot of ribbons. I didn't understand any of it. ", "album_id": "72157625816691809", "photo_flickr_id": "5403029016", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "44438", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a very basic orange and white cat won a lot of ribbons . i did n't understand any of it .", "storylet_id": "222194"}], [{"original_text": "We had just showed up to the ig show.", "album_id": "72157625816691809", "photo_flickr_id": "5403028352", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44439", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had just showed up to the ig show .", "storylet_id": "222195"}], [{"original_text": "Everyone was getting their cats ready for show.", "album_id": "72157625816691809", "photo_flickr_id": "5403027666", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44439", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was getting their cats ready for show .", "storylet_id": "222196"}], [{"original_text": "People exchanged ideas on grooming and overall healthcare of their cats.", "album_id": "72157625816691809", "photo_flickr_id": "5402428987", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44439", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people exchanged ideas on grooming and overall healthcare of their cats .", "storylet_id": "222197"}], [{"original_text": "The judges came by and made notes.", "album_id": "72157625816691809", "photo_flickr_id": "5403029344", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44439", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the judges came by and made notes .", "storylet_id": "222198"}], [{"original_text": "The decision was made and a winner was selected.", "album_id": "72157625816691809", "photo_flickr_id": "5403029016", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "44439", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the decision was made and a winner was selected .", "storylet_id": "222199"}], [{"original_text": "I went to a hobby shop in Japan today.", "album_id": "72157628873534519", "photo_flickr_id": "6698570041", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44440", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a hobby shop in location today .", "storylet_id": "222200"}], [{"original_text": "They had all these cute dolls.", "album_id": "72157628873534519", "photo_flickr_id": "6698514137", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44440", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had all these cute dolls .", "storylet_id": "222201"}], [{"original_text": "They even had dolls from some shows I've watched.", "album_id": "72157628873534519", "photo_flickr_id": "6698517113", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44440", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even had dolls from some shows i 've watched .", "storylet_id": "222202"}], [{"original_text": "In the back, there were more figures.", "album_id": "72157628873534519", "photo_flickr_id": "6698543801", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44440", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the back , there were more figures .", "storylet_id": "222203"}], [{"original_text": "They have had models for me to build!", "album_id": "72157628873534519", "photo_flickr_id": "6698561543", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44440", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they have had models for me to build !", "storylet_id": "222204"}], [{"original_text": "The game store sells all kinds of comics.", "album_id": "72157628873534519", "photo_flickr_id": "6698503019", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44441", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the game store sells all kinds of comics .", "storylet_id": "222205"}], [{"original_text": "They even have stuffed characters. ", "album_id": "72157628873534519", "photo_flickr_id": "6698522539", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44441", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they even have stuffed characters .", "storylet_id": "222206"}], [{"original_text": "Some of the characters were in the form of collectible dolls.", "album_id": "72157628873534519", "photo_flickr_id": "6698570041", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44441", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the characters were in the form of collectible dolls .", "storylet_id": "222207"}], [{"original_text": "And some were collectible figurines.", "album_id": "72157628873534519", "photo_flickr_id": "6698546043", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44441", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and some were collectible figurines .", "storylet_id": "222208"}], [{"original_text": "The store had all types of special character items.", "album_id": "72157628873534519", "photo_flickr_id": "6698551853", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44441", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the store had all types of special character items .", "storylet_id": "222209"}], [{"original_text": "The family all went to this shop called Kawaii Sweetness. ", "album_id": "72157628873534519", "photo_flickr_id": "6698570041", "setting": "last-3-pick-old-and-tell", "worker_id": "E3R57TNZS7VIFZ6", "story_id": "44442", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family all went to this shop called location sweetness .", "storylet_id": "222210"}], [{"original_text": "We wandered on to this aisle and didn't really like anything except the pandas. That's mom's favorite animal!", "album_id": "72157628873534519", "photo_flickr_id": "6698514137", "setting": "last-3-pick-old-and-tell", "worker_id": "E3R57TNZS7VIFZ6", "story_id": "44442", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we wandered on to this aisle and did n't really like anything except the pandas . that 's mom 's favorite animal !", "storylet_id": "222211"}], [{"original_text": "Then we came down to this aisle, \"aisle 3\", and I still enjoyed the panda aisle the most.", "album_id": "72157628873534519", "photo_flickr_id": "6698517113", "setting": "last-3-pick-old-and-tell", "worker_id": "E3R57TNZS7VIFZ6", "story_id": "44442", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we came down to this aisle , `` aisle 3 '' , and i still enjoyed the panda aisle the most .", "storylet_id": "222212"}], [{"original_text": "I think that this aisle is mostly games, and my brother at home would like this! He plays on games all day!", "album_id": "72157628873534519", "photo_flickr_id": "6698543801", "setting": "last-3-pick-old-and-tell", "worker_id": "E3R57TNZS7VIFZ6", "story_id": "44442", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i think that this aisle is mostly games , and my brother at home would like this ! he plays on games all day !", "storylet_id": "222213"}], [{"original_text": "This aisle was the same! Bummer! We should've brought my brother. Maybe next time!", "album_id": "72157628873534519", "photo_flickr_id": "6698561543", "setting": "last-3-pick-old-and-tell", "worker_id": "E3R57TNZS7VIFZ6", "story_id": "44442", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this aisle was the same ! bummer ! we should 've brought my brother . maybe next time !", "storylet_id": "222214"}], [{"original_text": "We visited the toy store and there were many different dolls.", "album_id": "72157628873534519", "photo_flickr_id": "6698570041", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44443", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited the toy store and there were many different dolls .", "storylet_id": "222215"}], [{"original_text": "Then there were many different types of stuffed animals.", "album_id": "72157628873534519", "photo_flickr_id": "6698514137", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44443", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then there were many different types of stuffed animals .", "storylet_id": "222216"}], [{"original_text": "They had characters hanging from the wall.", "album_id": "72157628873534519", "photo_flickr_id": "6698517113", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44443", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had characters hanging from the wall .", "storylet_id": "222217"}], [{"original_text": "Then there was many different types of toys.", "album_id": "72157628873534519", "photo_flickr_id": "6698543801", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44443", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then there was many different types of toys .", "storylet_id": "222218"}], [{"original_text": "Finally, we came to many different kinds of models.", "album_id": "72157628873534519", "photo_flickr_id": "6698561543", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44443", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , we came to many different kinds of models .", "storylet_id": "222219"}], [{"original_text": "The whole family went shopping we saw lots of dolls.", "album_id": "72157628873534519", "photo_flickr_id": "6698570041", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44444", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family went shopping we saw lots of dolls .", "storylet_id": "222220"}], [{"original_text": "They had a bunch of stuffed animals.", "album_id": "72157628873534519", "photo_flickr_id": "6698514137", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44444", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a bunch of stuffed animals .", "storylet_id": "222221"}], [{"original_text": "There were cool dolls and guys.", "album_id": "72157628873534519", "photo_flickr_id": "6698517113", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44444", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were cool dolls and guys .", "storylet_id": "222222"}], [{"original_text": "A bunch of different collectibles to choose from.", "album_id": "72157628873534519", "photo_flickr_id": "6698543801", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44444", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a bunch of different collectibles to choose from .", "storylet_id": "222223"}], [{"original_text": "They had movies and books too.", "album_id": "72157628873534519", "photo_flickr_id": "6698561543", "setting": "last-3-pick-old-and-tell", "worker_id": "J6Y72US4HBC1G90", "story_id": "44444", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had movies and books too .", "storylet_id": "222224"}], [{"original_text": "They spent the day at the art gallery. ", "album_id": "72157629058171635", "photo_flickr_id": "6772397047", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44445", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they spent the day at the art gallery .", "storylet_id": "222225"}], [{"original_text": "There were paintings dating back hundreds of years in the gallery. ", "album_id": "72157629058171635", "photo_flickr_id": "6772397207", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44445", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were paintings dating back hundreds of years in the gallery .", "storylet_id": "222226"}], [{"original_text": "The gallery was a very formal place. ", "album_id": "72157629058171635", "photo_flickr_id": "6772397583", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44445", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the gallery was a very formal place .", "storylet_id": "222227"}], [{"original_text": "The different types and sizes of the paintings and quality was impressive. ", "album_id": "72157629058171635", "photo_flickr_id": "6772398247", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44445", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the different types and sizes of the paintings and quality was impressive .", "storylet_id": "222228"}], [{"original_text": "This painting took a very long time for the artist to complete. ", "album_id": "72157629058171635", "photo_flickr_id": "6772393277", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44445", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this painting took a very long time for the artist to complete .", "storylet_id": "222229"}], [{"original_text": "George and Fred went to the museum today.", "album_id": "72157629058171635", "photo_flickr_id": "6772397047", "setting": "first-2-pick-and-tell", "worker_id": "KNZFRO5WKL64PGJ", "story_id": "44446", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [male] went to the museum today .", "storylet_id": "222230"}], [{"original_text": "They studied famous pictures together.", "album_id": "72157629058171635", "photo_flickr_id": "6772397207", "setting": "first-2-pick-and-tell", "worker_id": "KNZFRO5WKL64PGJ", "story_id": "44446", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they studied famous pictures together .", "storylet_id": "222231"}], [{"original_text": "They walked through replica houses.", "album_id": "72157629058171635", "photo_flickr_id": "6772398139", "setting": "first-2-pick-and-tell", "worker_id": "KNZFRO5WKL64PGJ", "story_id": "44446", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they walked through replica houses .", "storylet_id": "222232"}], [{"original_text": "They pondered over old sculptures.", "album_id": "72157629058171635", "photo_flickr_id": "6772393277", "setting": "first-2-pick-and-tell", "worker_id": "KNZFRO5WKL64PGJ", "story_id": "44446", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they pondered over old sculptures .", "storylet_id": "222233"}], [{"original_text": "In the end they ran out of time and didn't get to go through the last door.", "album_id": "72157629058171635", "photo_flickr_id": "6772398585", "setting": "first-2-pick-and-tell", "worker_id": "KNZFRO5WKL64PGJ", "story_id": "44446", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end they ran out of time and did n't get to go through the last door .", "storylet_id": "222234"}], [{"original_text": "We are going to the museum today.", "album_id": "72157629058171635", "photo_flickr_id": "6772397047", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "44447", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are going to the museum today .", "storylet_id": "222235"}], [{"original_text": "There are all sorts of nice displays all over.", "album_id": "72157629058171635", "photo_flickr_id": "6772397207", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "44447", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are all sorts of nice displays all over .", "storylet_id": "222236"}], [{"original_text": "The place looks pretty fancy everywhere.", "album_id": "72157629058171635", "photo_flickr_id": "6772397583", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "44447", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the place looks pretty fancy everywhere .", "storylet_id": "222237"}], [{"original_text": "The paintings are grand to look at.", "album_id": "72157629058171635", "photo_flickr_id": "6772398247", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "44447", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the paintings are grand to look at .", "storylet_id": "222238"}], [{"original_text": "They even have some sculptures around.", "album_id": "72157629058171635", "photo_flickr_id": "6772393277", "setting": "last-3-pick-old-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "44447", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even have some sculptures around .", "storylet_id": "222239"}], [{"original_text": "Today I went and visited an old estate they they turned into a museum.", "album_id": "72157629058171635", "photo_flickr_id": "6772397047", "setting": "last-3-pick-old-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "44448", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i went and visited an old estate they they turned into a museum .", "storylet_id": "222240"}], [{"original_text": "It had a very large colection or art in it.", "album_id": "72157629058171635", "photo_flickr_id": "6772397207", "setting": "last-3-pick-old-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "44448", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it had a very large colection or art in it .", "storylet_id": "222241"}], [{"original_text": "The main front hall was still original and very ornate.", "album_id": "72157629058171635", "photo_flickr_id": "6772397583", "setting": "last-3-pick-old-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "44448", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the main front hall was still original and very ornate .", "storylet_id": "222242"}], [{"original_text": "The blue room had many large pieces of art in it.", "album_id": "72157629058171635", "photo_flickr_id": "6772398247", "setting": "last-3-pick-old-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "44448", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the blue room had many large pieces of art in it .", "storylet_id": "222243"}], [{"original_text": "This was my favarite painting of teh collection, it was so large.", "album_id": "72157629058171635", "photo_flickr_id": "6772393277", "setting": "last-3-pick-old-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "44448", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was my favarite painting of teh collection , it was so large .", "storylet_id": "222244"}], [{"original_text": "We arrive to the outside of the museum.", "album_id": "72157629058171635", "photo_flickr_id": "6772397047", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44449", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrive to the outside of the museum .", "storylet_id": "222245"}], [{"original_text": "First we came to a painting of a group of people.", "album_id": "72157629058171635", "photo_flickr_id": "6772397207", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44449", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we came to a painting of a group of people .", "storylet_id": "222246"}], [{"original_text": "Then we found a long and beautiful hallway.", "album_id": "72157629058171635", "photo_flickr_id": "6772397583", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44449", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we found a long and beautiful hallway .", "storylet_id": "222247"}], [{"original_text": "After that we came to a room with many different paintings.", "album_id": "72157629058171635", "photo_flickr_id": "6772398247", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44449", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that we came to a room with many different paintings .", "storylet_id": "222248"}], [{"original_text": "Finally we came to a large painting on the wall.", "album_id": "72157629058171635", "photo_flickr_id": "6772393277", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44449", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally we came to a large painting on the wall .", "storylet_id": "222249"}], [{"original_text": "There was a big parade in Chinatown.", "album_id": "72157628953763131", "photo_flickr_id": "6731054603", "setting": "first-2-pick-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "44450", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a big parade in location .", "storylet_id": "222250"}], [{"original_text": "A throng of people rushed through the gate.", "album_id": "72157628953763131", "photo_flickr_id": "6731501727", "setting": "first-2-pick-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "44450", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a throng of people rushed through the gate .", "storylet_id": "222251"}], [{"original_text": "Everyone was in a festive mood.", "album_id": "72157628953763131", "photo_flickr_id": "6731389187", "setting": "first-2-pick-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "44450", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was in a festive mood .", "storylet_id": "222252"}], [{"original_text": "There was a magnificent display of flowers.", "album_id": "72157628953763131", "photo_flickr_id": "6731160615", "setting": "first-2-pick-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "44450", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a magnificent display of flowers .", "storylet_id": "222253"}], [{"original_text": "There was a lot to see in the auditorium.", "album_id": "72157628953763131", "photo_flickr_id": "6731371507", "setting": "first-2-pick-and-tell", "worker_id": "ON1LM02C24I6ZPU", "story_id": "44450", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was a lot to see in the auditorium .", "storylet_id": "222254"}], [{"original_text": "I love shopping in a China town setting.", "album_id": "72157628953763131", "photo_flickr_id": "6731501727", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "44451", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love shopping in a location town setting .", "storylet_id": "222255"}], [{"original_text": "There are always so many bright things to catch your eye. These flowers are gorgeous.", "album_id": "72157628953763131", "photo_flickr_id": "6731160615", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "44451", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are always so many bright things to catch your eye . these flowers are gorgeous .", "storylet_id": "222256"}], [{"original_text": "They way items are displayed are cheery.", "album_id": "72157628953763131", "photo_flickr_id": "6731251573", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "44451", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they way items are displayed are cheery .", "storylet_id": "222257"}], [{"original_text": "So many of the items are hand made.", "album_id": "72157628953763131", "photo_flickr_id": "6731292891", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "44451", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so many of the items are hand made .", "storylet_id": "222258"}], [{"original_text": "You have to get there early; The sidewalks fill up quickly.", "album_id": "72157628953763131", "photo_flickr_id": "6731115379", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "44451", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you have to get there early ; the sidewalks fill up quickly .", "storylet_id": "222259"}], [{"original_text": "We hit a crowd on are way to the market. ", "album_id": "72157628953763131", "photo_flickr_id": "6731054603", "setting": "last-3-pick-old-and-tell", "worker_id": "TFKLZZPH04O4SHW", "story_id": "44452", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we hit a crowd on are way to the market .", "storylet_id": "222260"}], [{"original_text": "The crowd continued all the way to the entrance.", "album_id": "72157628953763131", "photo_flickr_id": "6731501727", "setting": "last-3-pick-old-and-tell", "worker_id": "TFKLZZPH04O4SHW", "story_id": "44452", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd continued all the way to the entrance .", "storylet_id": "222261"}], [{"original_text": "Once inside we saw some funny thing like this person and their flower mask.", "album_id": "72157628953763131", "photo_flickr_id": "6731389187", "setting": "last-3-pick-old-and-tell", "worker_id": "TFKLZZPH04O4SHW", "story_id": "44452", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once inside we saw some funny thing like this person and their flower mask .", "storylet_id": "222262"}], [{"original_text": "He didn't need the mask to sell this gorgeous flowers.", "album_id": "72157628953763131", "photo_flickr_id": "6731160615", "setting": "last-3-pick-old-and-tell", "worker_id": "TFKLZZPH04O4SHW", "story_id": "44452", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he did n't need the mask to sell this gorgeous flowers .", "storylet_id": "222263"}], [{"original_text": "We found a less crowded section to take a breather. Lots of other weary shoppers at a similar idea.", "album_id": "72157628953763131", "photo_flickr_id": "6731371507", "setting": "last-3-pick-old-and-tell", "worker_id": "TFKLZZPH04O4SHW", "story_id": "44452", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we found a less crowded section to take a breather . lots of other weary shoppers at a similar idea .", "storylet_id": "222264"}], [{"original_text": "Walking around Japan, we saw a lot of people.", "album_id": "72157628953763131", "photo_flickr_id": "6731054603", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44453", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walking around location , we saw a lot of people .", "storylet_id": "222265"}], [{"original_text": "Over one of the sidewalks, was a large red display.", "album_id": "72157628953763131", "photo_flickr_id": "6731501727", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44453", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "over one of the sidewalks , was a large red display .", "storylet_id": "222266"}], [{"original_text": "Then we found a funny yellow hat.", "album_id": "72157628953763131", "photo_flickr_id": "6731389187", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44453", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we found a funny yellow hat .", "storylet_id": "222267"}], [{"original_text": "After that the came to a vendor selling all kinds of flowers.", "album_id": "72157628953763131", "photo_flickr_id": "6731160615", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44453", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that the came to a vendor selling all kinds of flowers .", "storylet_id": "222268"}], [{"original_text": "Finally we came to a market with all kinds of stores.", "album_id": "72157628953763131", "photo_flickr_id": "6731371507", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44453", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally we came to a market with all kinds of stores .", "storylet_id": "222269"}], [{"original_text": "To celebrate Chinese new year, there was a street fair with many vendors selling items.", "album_id": "72157628953763131", "photo_flickr_id": "6731501727", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "44454", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "to celebrate chinese new year , there was a street fair with many vendors selling items .", "storylet_id": "222270"}], [{"original_text": "You could purchase orchids of many colors.", "album_id": "72157628953763131", "photo_flickr_id": "6731160615", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "44454", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you could purchase orchids of many colors .", "storylet_id": "222271"}], [{"original_text": "Many types of incenses could be purchased. ", "album_id": "72157628953763131", "photo_flickr_id": "6731251573", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "44454", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many types of incenses could be purchased .", "storylet_id": "222272"}], [{"original_text": "Along with hanging pillow decorations", "album_id": "72157628953763131", "photo_flickr_id": "6731292891", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "44454", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "along with hanging pillow decorations", "storylet_id": "222273"}], [{"original_text": "Food and music was also available at the fair.", "album_id": "72157628953763131", "photo_flickr_id": "6731115379", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "44454", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "food and music was also available at the fair .", "storylet_id": "222274"}], [{"original_text": "It was very busy this year at the annual dog sled race.", "album_id": "72157594568652210", "photo_flickr_id": "409647600", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44040", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was very busy this year at the annual dog sled race .", "storylet_id": "220200"}], [{"original_text": "There were many competitors from all over the world at the event this year.", "album_id": "72157594568652210", "photo_flickr_id": "409647607", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44040", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many competitors from all over the world at the event this year .", "storylet_id": "220201"}], [{"original_text": "There were hundreds of dogs in total.", "album_id": "72157594568652210", "photo_flickr_id": "409681565", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44040", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were hundreds of dogs in total .", "storylet_id": "220202"}], [{"original_text": "They were all happy to be out exercising.", "album_id": "72157594568652210", "photo_flickr_id": "409695782", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44040", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were all happy to be out exercising .", "storylet_id": "220203"}], [{"original_text": "Some were very determined to win this year.", "album_id": "72157594568652210", "photo_flickr_id": "409667669", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44040", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some were very determined to win this year .", "storylet_id": "220204"}], [{"original_text": "The man was excited for the beginning of the bobsled race.", "album_id": "72157594568652210", "photo_flickr_id": "409647600", "setting": "first-2-pick-and-tell", "worker_id": "0Y8XE0I0EHL0CAI", "story_id": "44041", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man was excited for the beginning of the bobsled race .", "storylet_id": "220205"}], [{"original_text": "All of the dogs were ready to go and show off what they trained for.", "album_id": "72157594568652210", "photo_flickr_id": "409667673", "setting": "first-2-pick-and-tell", "worker_id": "0Y8XE0I0EHL0CAI", "story_id": "44041", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the dogs were ready to go and show off what they trained for .", "storylet_id": "220206"}], [{"original_text": "The dogs all worked really hard to push through to the finish.", "album_id": "72157594568652210", "photo_flickr_id": "409681566", "setting": "first-2-pick-and-tell", "worker_id": "0Y8XE0I0EHL0CAI", "story_id": "44041", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dogs all worked really hard to push through to the finish .", "storylet_id": "220207"}], [{"original_text": "The man waved to the people as they finished the race.", "album_id": "72157594568652210", "photo_flickr_id": "409681574", "setting": "first-2-pick-and-tell", "worker_id": "0Y8XE0I0EHL0CAI", "story_id": "44041", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the man waved to the people as they finished the race .", "storylet_id": "220208"}], [{"original_text": "The dogs were happy the race was over and could not wait for some treats and rest.", "album_id": "72157594568652210", "photo_flickr_id": "409695782", "setting": "first-2-pick-and-tell", "worker_id": "0Y8XE0I0EHL0CAI", "story_id": "44041", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dogs were happy the race was over and could not wait for some treats and rest .", "storylet_id": "220209"}], [{"original_text": "We arrived early to make sure everything was in proper order before we began.", "album_id": "72157594568652210", "photo_flickr_id": "409647600", "setting": "last-3-pick-old-and-tell", "worker_id": "7IR0IJHT2B9C2EH", "story_id": "44042", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived early to make sure everything was in proper order before we began .", "storylet_id": "220210"}], [{"original_text": "Jeffrey Moore was the pre race favorite as usual.", "album_id": "72157594568652210", "photo_flickr_id": "409647607", "setting": "last-3-pick-old-and-tell", "worker_id": "7IR0IJHT2B9C2EH", "story_id": "44042", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] moore was the pre race favorite as usual .", "storylet_id": "220211"}], [{"original_text": "Our group of dogs were ready to go ,and getting a little bored.", "album_id": "72157594568652210", "photo_flickr_id": "409681565", "setting": "last-3-pick-old-and-tell", "worker_id": "7IR0IJHT2B9C2EH", "story_id": "44042", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our group of dogs were ready to go , and getting a little bored .", "storylet_id": "220212"}], [{"original_text": "Max and Prince led the pack and did not let us down.", "album_id": "72157594568652210", "photo_flickr_id": "409695782", "setting": "last-3-pick-old-and-tell", "worker_id": "7IR0IJHT2B9C2EH", "story_id": "44042", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and [male] led the pack and did not let us down .", "storylet_id": "220213"}], [{"original_text": "Rob was tired and so glad we won this year. ", "album_id": "72157594568652210", "photo_flickr_id": "409667669", "setting": "last-3-pick-old-and-tell", "worker_id": "7IR0IJHT2B9C2EH", "story_id": "44042", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "rob was tired and so glad we won this year .", "storylet_id": "220214"}], [{"original_text": "I went to watch a dog sled race.", "album_id": "72157594568652210", "photo_flickr_id": "409647600", "setting": "last-3-pick-old-and-tell", "worker_id": "XR092Q8B4S9JIVP", "story_id": "44043", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to watch a dog sled race .", "storylet_id": "220215"}], [{"original_text": "My friend entered his dogs and sled.", "album_id": "72157594568652210", "photo_flickr_id": "409647607", "setting": "last-3-pick-old-and-tell", "worker_id": "XR092Q8B4S9JIVP", "story_id": "44043", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend entered his dogs and sled .", "storylet_id": "220216"}], [{"original_text": "His dog love to race and pull the sled.", "album_id": "72157594568652210", "photo_flickr_id": "409681565", "setting": "last-3-pick-old-and-tell", "worker_id": "XR092Q8B4S9JIVP", "story_id": "44043", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his dog love to race and pull the sled .", "storylet_id": "220217"}], [{"original_text": "the other dog teams were not as fast.", "album_id": "72157594568652210", "photo_flickr_id": "409695782", "setting": "last-3-pick-old-and-tell", "worker_id": "XR092Q8B4S9JIVP", "story_id": "44043", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the other dog teams were not as fast .", "storylet_id": "220218"}], [{"original_text": "Their owners we not happy to lose to my friends team.", "album_id": "72157594568652210", "photo_flickr_id": "409667669", "setting": "last-3-pick-old-and-tell", "worker_id": "XR092Q8B4S9JIVP", "story_id": "44043", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their owners we not happy to lose to my friends team .", "storylet_id": "220219"}], [{"original_text": "We were ready and prepared to participate in the dog sledding race.", "album_id": "72157594568652210", "photo_flickr_id": "409647600", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "44044", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were ready and prepared to participate in the dog sledding race .", "storylet_id": "220220"}], [{"original_text": "All the dogs were ready as well, they were excited to get going.", "album_id": "72157594568652210", "photo_flickr_id": "409667673", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "44044", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the dogs were ready as well , they were excited to get going .", "storylet_id": "220221"}], [{"original_text": "As they took off, you could feel the excitement in the air.", "album_id": "72157594568652210", "photo_flickr_id": "409681566", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "44044", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as they took off , you could feel the excitement in the air .", "storylet_id": "220222"}], [{"original_text": "Number 50 waves to the fans as the sled passes by.", "album_id": "72157594568652210", "photo_flickr_id": "409681574", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "44044", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "number 50 waves to the fans as the sled passes by .", "storylet_id": "220223"}], [{"original_text": "These dogs work hard, but they are very much rewarded for their efforts and hard work.", "album_id": "72157594568652210", "photo_flickr_id": "409695782", "setting": "last-3-pick-old-and-tell", "worker_id": "4GLRIMRFS87IQU1", "story_id": "44044", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these dogs work hard , but they are very much rewarded for their efforts and hard work .", "storylet_id": "220224"}], [{"original_text": "After riding the tram for 15 minutes I finally arrived at my destination.", "album_id": "72157624090366033", "photo_flickr_id": "4674837110", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44045", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after riding the tram for 15 minutes i finally arrived at my destination .", "storylet_id": "220225"}], [{"original_text": "I still had to walk a few blocks and I saw this dog on a bench.", "album_id": "72157624090366033", "photo_flickr_id": "4674836936", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44045", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i still had to walk a few blocks and i saw this dog on a bench .", "storylet_id": "220226"}], [{"original_text": "In a couple minutes I did arrive.", "album_id": "72157624090366033", "photo_flickr_id": "4674213287", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44045", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in a couple minutes i did arrive .", "storylet_id": "220227"}], [{"original_text": "There were already people there.", "album_id": "72157624090366033", "photo_flickr_id": "4674213061", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44045", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were already people there .", "storylet_id": "220228"}], [{"original_text": "I stayed there well into the night.", "album_id": "72157624090366033", "photo_flickr_id": "4674215547", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44045", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i stayed there well into the night .", "storylet_id": "220229"}], [{"original_text": "There are many interesting things to do in my home town, like riding the monorail.", "album_id": "72157624090366033", "photo_flickr_id": "4674212725", "setting": "first-2-pick-and-tell", "worker_id": "320L9WS0RY3TPQI", "story_id": "44046", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are many interesting things to do in my home town , like riding the monorail .", "storylet_id": "220230"}], [{"original_text": "We have a baseball field which is a big attraction.", "album_id": "72157624090366033", "photo_flickr_id": "4674213287", "setting": "first-2-pick-and-tell", "worker_id": "320L9WS0RY3TPQI", "story_id": "44046", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we have a baseball field which is a big attraction .", "storylet_id": "220231"}], [{"original_text": "Tourists like to ride the cable cars.", "album_id": "72157624090366033", "photo_flickr_id": "4674837110", "setting": "first-2-pick-and-tell", "worker_id": "320L9WS0RY3TPQI", "story_id": "44046", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "tourists like to ride the cable cars .", "storylet_id": "220232"}], [{"original_text": "Every year there's a huge boat race.", "album_id": "72157624090366033", "photo_flickr_id": "4674215297", "setting": "first-2-pick-and-tell", "worker_id": "320L9WS0RY3TPQI", "story_id": "44046", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "every year there 's a huge boat race .", "storylet_id": "220233"}], [{"original_text": "Most popular of all is the National Park!", "album_id": "72157624090366033", "photo_flickr_id": "4674838852", "setting": "first-2-pick-and-tell", "worker_id": "320L9WS0RY3TPQI", "story_id": "44046", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "most popular of all is the location location !", "storylet_id": "220234"}], [{"original_text": "We rode in to town on the trolly, no fuss, no mess.", "album_id": "72157624090366033", "photo_flickr_id": "4674837110", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "44047", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we rode in to town on the trolly , no fuss , no mess .", "storylet_id": "220235"}], [{"original_text": "Our dogs were with us, tired after a long day of sleeping, apparently.", "album_id": "72157624090366033", "photo_flickr_id": "4674836936", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "44047", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our dogs were with us , tired after a long day of sleeping , apparently .", "storylet_id": "220236"}], [{"original_text": "We took a few hours to see some Star Wars films, as pictured here.", "album_id": "72157624090366033", "photo_flickr_id": "4674213287", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "44047", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took a few hours to see some star wars films , as pictured here .", "storylet_id": "220237"}], [{"original_text": "The family! It was almost night by now, but the artificial lights were strong.", "album_id": "72157624090366033", "photo_flickr_id": "4674213061", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "44047", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family ! it was almost night by now , but the artificial lights were strong .", "storylet_id": "220238"}], [{"original_text": "The harvest moon...the perfect sight on which to end the most beautiful day.", "album_id": "72157624090366033", "photo_flickr_id": "4674215547", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "44047", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the harvest moon ... the perfect sight on which to end the most beautiful day .", "storylet_id": "220239"}], [{"original_text": "We had a great trip. One of the first things we did was ride this hanging monorail train. The view was stunning.", "album_id": "72157624090366033", "photo_flickr_id": "4674212725", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "44048", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great trip . one of the first things we did was ride this hanging monorail train . the view was stunning .", "storylet_id": "220240"}], [{"original_text": "We also were able to make it to the baseball park. It was a great night for baseball.", "album_id": "72157624090366033", "photo_flickr_id": "4674213287", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "44048", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we also were able to make it to the baseball park . it was a great night for baseball .", "storylet_id": "220241"}], [{"original_text": "The town was charming, with street cars that still carried passengers to the attractions.", "album_id": "72157624090366033", "photo_flickr_id": "4674837110", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "44048", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the town was charming , with street cars that still carried passengers to the attractions .", "storylet_id": "220242"}], [{"original_text": "We even got out to the lake, which was quite busy for the season.", "album_id": "72157624090366033", "photo_flickr_id": "4674215297", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "44048", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even got out to the lake , which was quite busy for the season .", "storylet_id": "220243"}], [{"original_text": "One of our last stops was Hot Springs National Park. The scenery here was beautiful. It was really a wonderful trip.", "album_id": "72157624090366033", "photo_flickr_id": "4674838852", "setting": "last-3-pick-old-and-tell", "worker_id": "X0VCV7REKNY5VT8", "story_id": "44048", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of our last stops was location location location location . the scenery here was beautiful . it was really a wonderful trip .", "storylet_id": "220244"}], [{"original_text": "We arrived into town yesterday. I had never seen such efficient transportation!", "album_id": "72157624090366033", "photo_flickr_id": "4674212725", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "44049", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived into town yesterday . i had never seen such efficient transportation !", "storylet_id": "220245"}], [{"original_text": "Our second night in, we caught a ball game.", "album_id": "72157624090366033", "photo_flickr_id": "4674213287", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "44049", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our second night in , we caught a ball game .", "storylet_id": "220246"}], [{"original_text": "We left our car at the hotel, and took the trolley around while in town.", "album_id": "72157624090366033", "photo_flickr_id": "4674837110", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "44049", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we left our car at the hotel , and took the trolley around while in town .", "storylet_id": "220247"}], [{"original_text": "Our hotel overlooked the lake where everyday many people were boating or jetskiing.", "album_id": "72157624090366033", "photo_flickr_id": "4674215297", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "44049", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our hotel overlooked the lake where everyday many people were boating or jetskiing .", "storylet_id": "220248"}], [{"original_text": "We planned to go to the National Park, but didn't get around to it this time.", "album_id": "72157624090366033", "photo_flickr_id": "4674838852", "setting": "last-3-pick-old-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "44049", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we planned to go to the location location , but did n't get around to it this time .", "storylet_id": "220249"}], [{"original_text": "I was out driving yesterday and I got stuck in traffic because of a huge accident.", "album_id": "72157631479821792", "photo_flickr_id": "7962092366", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44050", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was out driving yesterday and i got stuck in traffic because of a huge accident .", "storylet_id": "220250"}], [{"original_text": "The whole road was blocked off while they cleaned it up.", "album_id": "72157631479821792", "photo_flickr_id": "7962093106", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44050", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the whole road was blocked off while they cleaned it up .", "storylet_id": "220251"}], [{"original_text": "They had all kinds of equipment there to move debris.", "album_id": "72157631479821792", "photo_flickr_id": "7962088944", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44050", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had all kinds of equipment there to move debris .", "storylet_id": "220252"}], [{"original_text": "We were all stuck there for hours until they were able to clear enough of the debris to let traffic flow.", "album_id": "72157631479821792", "photo_flickr_id": "7962088628", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44050", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were all stuck there for hours until they were able to clear enough of the debris to let traffic flow .", "storylet_id": "220253"}], [{"original_text": "Eventually everything was cleared out of the way and normal traffic resumed.", "album_id": "72157631479821792", "photo_flickr_id": "7962089206", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44050", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually everything was cleared out of the way and normal traffic resumed .", "storylet_id": "220254"}], [{"original_text": "The construction was beginning along the highway.", "album_id": "72157631479821792", "photo_flickr_id": "7962045718", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44051", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the construction was beginning along the highway .", "storylet_id": "220255"}], [{"original_text": "Many workers arrived on the scene.", "album_id": "72157631479821792", "photo_flickr_id": "7962088944", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44051", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many workers arrived on the scene .", "storylet_id": "220256"}], [{"original_text": "Then a semi was severely damaged.", "album_id": "72157631479821792", "photo_flickr_id": "7962089426", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44051", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then a semi was severely damaged .", "storylet_id": "220257"}], [{"original_text": "It looked like the driver may have been hurt.", "album_id": "72157631479821792", "photo_flickr_id": "7962091410", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44051", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looked like the driver may have been hurt .", "storylet_id": "220258"}], [{"original_text": "The firemen were quickly at the scene to help save the day.", "album_id": "72157631479821792", "photo_flickr_id": "7962092790", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44051", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the firemen were quickly at the scene to help save the day .", "storylet_id": "220259"}], [{"original_text": "The team was called in to the scene, ambulance having already extracted most of the passengers.", "album_id": "72157631479821792", "photo_flickr_id": "7962092366", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "44052", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the team was called in to the scene , ambulance having already extracted most of the passengers .", "storylet_id": "220260"}], [{"original_text": "A train had been overturned, and it was our job to get it back to work.", "album_id": "72157631479821792", "photo_flickr_id": "7962093106", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "44052", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a train had been overturned , and it was our job to get it back to work .", "storylet_id": "220261"}], [{"original_text": "Our machines were there in a few moments, and it took us a while to move everything.", "album_id": "72157631479821792", "photo_flickr_id": "7962088944", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "44052", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our machines were there in a few moments , and it took us a while to move everything .", "storylet_id": "220262"}], [{"original_text": "Soon, it was night, and we had to cordon off the area.", "album_id": "72157631479821792", "photo_flickr_id": "7962088628", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "44052", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "soon , it was night , and we had to cordon off the area .", "storylet_id": "220263"}], [{"original_text": "Before long, we managed to have the train cars loaded on this truck, and ready to be sent away, job well done.", "album_id": "72157631479821792", "photo_flickr_id": "7962089206", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "44052", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before long , we managed to have the train cars loaded on this truck , and ready to be sent away , job well done .", "storylet_id": "220264"}], [{"original_text": "The emergency workers responded to a call at a highway construction site.", "album_id": "72157631479821792", "photo_flickr_id": "7962092366", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44053", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the emergency workers responded to a call at a highway construction site .", "storylet_id": "220265"}], [{"original_text": "Traffic was mostly unaffected by the accident.", "album_id": "72157631479821792", "photo_flickr_id": "7962093106", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44053", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "traffic was mostly unaffected by the accident .", "storylet_id": "220266"}], [{"original_text": "The construction workers were forced to move their vehicles off the road.", "album_id": "72157631479821792", "photo_flickr_id": "7962088944", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44053", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the construction workers were forced to move their vehicles off the road .", "storylet_id": "220267"}], [{"original_text": "The work continued into the early night.", "album_id": "72157631479821792", "photo_flickr_id": "7962088628", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44053", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the work continued into the early night .", "storylet_id": "220268"}], [{"original_text": "The damaged vehicle was not still not removed at this point.", "album_id": "72157631479821792", "photo_flickr_id": "7962089206", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44053", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the damaged vehicle was not still not removed at this point .", "storylet_id": "220269"}], [{"original_text": "We were stuck in traffic due to this wreck on the road.", "album_id": "72157631479821792", "photo_flickr_id": "7962092366", "setting": "last-3-pick-old-and-tell", "worker_id": "XR092Q8B4S9JIVP", "story_id": "44054", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were stuck in traffic due to this wreck on the road .", "storylet_id": "220270"}], [{"original_text": "We were stuck so long we hiked up here to take a photo of the wreck.", "album_id": "72157631479821792", "photo_flickr_id": "7962093106", "setting": "last-3-pick-old-and-tell", "worker_id": "XR092Q8B4S9JIVP", "story_id": "44054", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were stuck so long we hiked up here to take a photo of the wreck .", "storylet_id": "220271"}], [{"original_text": "Finally they got machines in to move the wreck.", "album_id": "72157631479821792", "photo_flickr_id": "7962088944", "setting": "last-3-pick-old-and-tell", "worker_id": "XR092Q8B4S9JIVP", "story_id": "44054", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally they got machines in to move the wreck .", "storylet_id": "220272"}], [{"original_text": "After they cleaned the road they let us through.", "album_id": "72157631479821792", "photo_flickr_id": "7962088628", "setting": "last-3-pick-old-and-tell", "worker_id": "XR092Q8B4S9JIVP", "story_id": "44054", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after they cleaned the road they let us through .", "storylet_id": "220273"}], [{"original_text": "But the truck that wrecked was still off to the side.", "album_id": "72157631479821792", "photo_flickr_id": "7962089206", "setting": "last-3-pick-old-and-tell", "worker_id": "XR092Q8B4S9JIVP", "story_id": "44054", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the truck that wrecked was still off to the side .", "storylet_id": "220274"}], [{"original_text": "Last week we went on a nature walk.", "album_id": "72157600001571637", "photo_flickr_id": "3339014", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44055", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week we went on a nature walk .", "storylet_id": "220275"}], [{"original_text": "We saw how water eroded rock away.", "album_id": "72157600001571637", "photo_flickr_id": "3339031", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44055", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw how water eroded rock away .", "storylet_id": "220276"}], [{"original_text": "We also saw lots of shrubbery.", "album_id": "72157600001571637", "photo_flickr_id": "3339140", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44055", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also saw lots of shrubbery .", "storylet_id": "220277"}], [{"original_text": "We walked along a dirt path.", "album_id": "72157600001571637", "photo_flickr_id": "3339209", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44055", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we walked along a dirt path .", "storylet_id": "220278"}], [{"original_text": "Then we piled into the car and drove home.", "album_id": "72157600001571637", "photo_flickr_id": "3339293", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44055", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we piled into the car and drove home .", "storylet_id": "220279"}], [{"original_text": "The trip featured some great geological features!", "album_id": "72157600001571637", "photo_flickr_id": "3339031", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44056", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the trip featured some great geological features !", "storylet_id": "220280"}], [{"original_text": "Even along the hiking trails, lots of neat sights could be found.", "album_id": "72157600001571637", "photo_flickr_id": "3339086", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44056", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even along the hiking trails , lots of neat sights could be found .", "storylet_id": "220281"}], [{"original_text": "Some wild berries were growing around the trail.", "album_id": "72157600001571637", "photo_flickr_id": "3339140", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44056", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some wild berries were growing around the trail .", "storylet_id": "220282"}], [{"original_text": "Finally, the destination was reached!", "album_id": "72157600001571637", "photo_flickr_id": "3339218", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44056", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally , the destination was reached !", "storylet_id": "220283"}], [{"original_text": "Soon after, it was time to head home.", "album_id": "72157600001571637", "photo_flickr_id": "3339293", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44056", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "soon after , it was time to head home .", "storylet_id": "220284"}], [{"original_text": "The beach was so much fun last week.", "album_id": "72157600001571637", "photo_flickr_id": "3339031", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44057", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beach was so much fun last week .", "storylet_id": "220285"}], [{"original_text": "There were many hiking trails nearby.", "album_id": "72157600001571637", "photo_flickr_id": "3339086", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44057", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many hiking trails nearby .", "storylet_id": "220286"}], [{"original_text": "We stopped to eat some blueberries that we found.", "album_id": "72157600001571637", "photo_flickr_id": "3339140", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44057", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stopped to eat some blueberries that we found .", "storylet_id": "220287"}], [{"original_text": "The view there was amazing.", "album_id": "72157600001571637", "photo_flickr_id": "3339218", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44057", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view there was amazing .", "storylet_id": "220288"}], [{"original_text": "After spending all afternoon at the beach we all got in the car and drove back home.", "album_id": "72157600001571637", "photo_flickr_id": "3339293", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44057", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after spending all afternoon at the beach we all got in the car and drove back home .", "storylet_id": "220289"}], [{"original_text": "I was strolling through the mountains when I came across a silvery thing.", "album_id": "72157600001571637", "photo_flickr_id": "3339031", "setting": "last-3-pick-old-and-tell", "worker_id": "SEYTGHBSRMWZDNJ", "story_id": "44058", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was strolling through the mountains when i came across a silvery thing .", "storylet_id": "220290"}], [{"original_text": "I looked to my left and there was a massive rock with a red man painted on it. I immediately photographed it.", "album_id": "72157600001571637", "photo_flickr_id": "3339086", "setting": "last-3-pick-old-and-tell", "worker_id": "SEYTGHBSRMWZDNJ", "story_id": "44058", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i looked to my left and there was a massive rock with a red man painted on it . i immediately photographed it .", "storylet_id": "220291"}], [{"original_text": "Strolling around I found some blueberry looking produce. ", "album_id": "72157600001571637", "photo_flickr_id": "3339140", "setting": "last-3-pick-old-and-tell", "worker_id": "SEYTGHBSRMWZDNJ", "story_id": "44058", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "strolling around i found some blueberry looking produce .", "storylet_id": "220292"}], [{"original_text": "Last, I decided to go take in the nice scenery offered by the lake. ", "album_id": "72157600001571637", "photo_flickr_id": "3339218", "setting": "last-3-pick-old-and-tell", "worker_id": "SEYTGHBSRMWZDNJ", "story_id": "44058", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "last , i decided to go take in the nice scenery offered by the lake .", "storylet_id": "220293"}], [{"original_text": "After a long day of exploring the mountain and lake, it was time to hit the road and head home.", "album_id": "72157600001571637", "photo_flickr_id": "3339293", "setting": "last-3-pick-old-and-tell", "worker_id": "SEYTGHBSRMWZDNJ", "story_id": "44058", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long day of exploring the mountain and lake , it was time to hit the road and head home .", "storylet_id": "220294"}], [{"original_text": "My wife wanted to take the family to a camping site, and so we did!", "album_id": "72157600001571637", "photo_flickr_id": "3339014", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44059", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my wife wanted to take the family to a camping site , and so we did !", "storylet_id": "220295"}], [{"original_text": "Along our hike, we found what appears to be a dead bird.", "album_id": "72157600001571637", "photo_flickr_id": "3339031", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44059", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "along our hike , we found what appears to be a dead bird .", "storylet_id": "220296"}], [{"original_text": "We stopped by the beautiful bushes that we passed along the way. ", "album_id": "72157600001571637", "photo_flickr_id": "3339140", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44059", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stopped by the beautiful bushes that we passed along the way .", "storylet_id": "220297"}], [{"original_text": "There was a lemon orchard that the kids wanted to see.", "album_id": "72157600001571637", "photo_flickr_id": "3339209", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44059", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a lemon orchard that the kids wanted to see .", "storylet_id": "220298"}], [{"original_text": "We drove home on a narrow road with a remarkable amount of traffic. ", "album_id": "72157600001571637", "photo_flickr_id": "3339293", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44059", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we drove home on a narrow road with a remarkable amount of traffic .", "storylet_id": "220299"}], [{"original_text": "Crashing into inanimate objects at high velocity had left the Transformer worse for wear.", "album_id": "72157640932870314", "photo_flickr_id": "37106772", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "44060", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "crashing into inanimate objects at high velocity had left the transformer worse for wear .", "storylet_id": "220300"}], [{"original_text": "Its occupant had walked away unharmed, thanks to the airbag. ", "album_id": "72157640932870314", "photo_flickr_id": "37106807", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "44060", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "its occupant had walked away unharmed , thanks to the airbag .", "storylet_id": "220301"}], [{"original_text": "Now, stuck in the form of a Subaru Tribeca, it waited on the trailer. ", "album_id": "72157640932870314", "photo_flickr_id": "37106887", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "44060", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now , stuck in the form of a organization organization , it waited on the trailer .", "storylet_id": "220302"}], [{"original_text": "In the background, a young station attentive tried to fire up the orange pump to bring it some oil to quench its thirst.", "album_id": "72157640932870314", "photo_flickr_id": "37107313", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "44060", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in the background , a young station attentive tried to fire up the orange pump to bring it some oil to quench its thirst .", "storylet_id": "220303"}], [{"original_text": "With its hood propped open, the Subaru dreamt of electric hybrids.", "album_id": "72157640932870314", "photo_flickr_id": "37107655", "setting": "first-2-pick-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "44060", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with its hood propped open , the subaru dreamt of electric hybrids .", "storylet_id": "220304"}], [{"original_text": "The accident was very bad.", "album_id": "72157640932870314", "photo_flickr_id": "37106704", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44061", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the accident was very bad .", "storylet_id": "220305"}], [{"original_text": "When I got the car back from the tow yard there was no way it would work again.", "album_id": "72157640932870314", "photo_flickr_id": "37106748", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44061", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when i got the car back from the tow yard there was no way it would work again .", "storylet_id": "220306"}], [{"original_text": "I had to toss it.", "album_id": "72157640932870314", "photo_flickr_id": "37106772", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44061", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had to toss it .", "storylet_id": "220307"}], [{"original_text": "It was a good car.", "album_id": "72157640932870314", "photo_flickr_id": "37106939", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44061", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a good car .", "storylet_id": "220308"}], [{"original_text": "Don't drink and drive.", "album_id": "72157640932870314", "photo_flickr_id": "37106970", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44061", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "do n't drink and drive .", "storylet_id": "220309"}], [{"original_text": "This car was damaged very badly.", "album_id": "72157640932870314", "photo_flickr_id": "37106772", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44062", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this car was damaged very badly .", "storylet_id": "220310"}], [{"original_text": "Hopefully, this airbag protected the driver from injury.", "album_id": "72157640932870314", "photo_flickr_id": "37106807", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44062", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "hopefully , this airbag protected the driver from injury .", "storylet_id": "220311"}], [{"original_text": "It's already to be hauled away now.", "album_id": "72157640932870314", "photo_flickr_id": "37106887", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44062", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's already to be hauled away now .", "storylet_id": "220312"}], [{"original_text": "It's sad that the car was destroyed.", "album_id": "72157640932870314", "photo_flickr_id": "37107313", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44062", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's sad that the car was destroyed .", "storylet_id": "220313"}], [{"original_text": "This is how badly the back part of the car was damaged.", "album_id": "72157640932870314", "photo_flickr_id": "37107655", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44062", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is how badly the back part of the car was damaged .", "storylet_id": "220314"}], [{"original_text": "This car was involved in a head-on collision. ", "album_id": "72157640932870314", "photo_flickr_id": "37106772", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44063", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this car was involved in a head-on collision .", "storylet_id": "220315"}], [{"original_text": "Luckily enough the airbags deployed. ", "album_id": "72157640932870314", "photo_flickr_id": "37106807", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44063", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "luckily enough the airbags deployed .", "storylet_id": "220316"}], [{"original_text": "The driver of this car was safe.", "album_id": "72157640932870314", "photo_flickr_id": "37106887", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44063", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the driver of this car was safe .", "storylet_id": "220317"}], [{"original_text": "After the initial collision another car slammed into the back of this car.", "album_id": "72157640932870314", "photo_flickr_id": "37107313", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44063", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the initial collision another car slammed into the back of this car .", "storylet_id": "220318"}], [{"original_text": "Overall, it was an unfortunate situation but it could have been much worse.", "album_id": "72157640932870314", "photo_flickr_id": "37107655", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44063", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall , it was an unfortunate situation but it could have been much worse .", "storylet_id": "220319"}], [{"original_text": "The front of the car was completely damaged from the accident.", "album_id": "72157640932870314", "photo_flickr_id": "37106772", "setting": "last-3-pick-old-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "44064", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the front of the car was completely damaged from the accident .", "storylet_id": "220320"}], [{"original_text": "The air bag deployed when the car crashed.", "album_id": "72157640932870314", "photo_flickr_id": "37106807", "setting": "last-3-pick-old-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "44064", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the air bag deployed when the car crashed .", "storylet_id": "220321"}], [{"original_text": "The car had to be towed away because it was unable to be driven. ", "album_id": "72157640932870314", "photo_flickr_id": "37106887", "setting": "last-3-pick-old-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "44064", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the car had to be towed away because it was unable to be driven .", "storylet_id": "220322"}], [{"original_text": "The car got hit from the right side because that is where the most damage was. ", "album_id": "72157640932870314", "photo_flickr_id": "37107313", "setting": "last-3-pick-old-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "44064", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the car got hit from the right side because that is where the most damage was .", "storylet_id": "220323"}], [{"original_text": "Under the hood the damage was way more severe. ", "album_id": "72157640932870314", "photo_flickr_id": "37107655", "setting": "last-3-pick-old-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "44064", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "under the hood the damage was way more severe .", "storylet_id": "220324"}], [{"original_text": "The crashed car had erupted in flames.", "album_id": "72157623586324463", "photo_flickr_id": "4466364790", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44065", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crashed car had erupted in flames .", "storylet_id": "220325"}], [{"original_text": "The fire was spreading to the local trees.", "album_id": "72157623586324463", "photo_flickr_id": "4465601159", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44065", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fire was spreading to the local trees .", "storylet_id": "220326"}], [{"original_text": "Quickly firemen appeared on the scene to fight the fire.", "album_id": "72157623586324463", "photo_flickr_id": "4465534381", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44065", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "quickly firemen appeared on the scene to fight the fire .", "storylet_id": "220327"}], [{"original_text": "They got in close to put it out.", "album_id": "72157623586324463", "photo_flickr_id": "4465545943", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44065", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they got in close to put it out .", "storylet_id": "220328"}], [{"original_text": "Soon they had managed to stop the fire and keep everyone safe.", "album_id": "72157623586324463", "photo_flickr_id": "4466359954", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44065", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "soon they had managed to stop the fire and keep everyone safe .", "storylet_id": "220329"}], [{"original_text": "A car is engulfed in flames after crashing into a tree.", "album_id": "72157623586324463", "photo_flickr_id": "4466364790", "setting": "first-2-pick-and-tell", "worker_id": "HMTS2SBMBJPGOQS", "story_id": "44066", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a car is engulfed in flames after crashing into a tree .", "storylet_id": "220330"}], [{"original_text": "The fire rages as it clouds the tree to the rear.", "album_id": "72157623586324463", "photo_flickr_id": "4466380826", "setting": "first-2-pick-and-tell", "worker_id": "HMTS2SBMBJPGOQS", "story_id": "44066", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fire rages as it clouds the tree to the rear .", "storylet_id": "220331"}], [{"original_text": "Two firemen arrive and adjust the hose.", "album_id": "72157623586324463", "photo_flickr_id": "4465534381", "setting": "first-2-pick-and-tell", "worker_id": "HMTS2SBMBJPGOQS", "story_id": "44066", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two firemen arrive and adjust the hose .", "storylet_id": "220332"}], [{"original_text": "They spray the car with water and begin to put out the flames.", "album_id": "72157623586324463", "photo_flickr_id": "4465531059", "setting": "first-2-pick-and-tell", "worker_id": "HMTS2SBMBJPGOQS", "story_id": "44066", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they spray the car with water and begin to put out the flames .", "storylet_id": "220333"}], [{"original_text": "The flames are extinguished as the smoke clears and the men assess the situation.", "album_id": "72157623586324463", "photo_flickr_id": "4466359954", "setting": "first-2-pick-and-tell", "worker_id": "HMTS2SBMBJPGOQS", "story_id": "44066", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the flames are extinguished as the smoke clears and the men assess the situation .", "storylet_id": "220334"}], [{"original_text": "Someone started a fire in an abandoned car, as it sat by the side of the road. It was late and the sky was dark. ", "album_id": "72157623586324463", "photo_flickr_id": "4466364790", "setting": "last-3-pick-old-and-tell", "worker_id": "1ZYJ8XPUWJ094SC", "story_id": "44067", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "someone started a fire in an abandoned car , as it sat by the side of the road . it was late and the sky was dark .", "storylet_id": "220335"}], [{"original_text": "Fueled by gas, the fire quickly engulfed the entire car. ", "album_id": "72157623586324463", "photo_flickr_id": "4466380826", "setting": "last-3-pick-old-and-tell", "worker_id": "1ZYJ8XPUWJ094SC", "story_id": "44067", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fueled by gas , the fire quickly engulfed the entire car .", "storylet_id": "220336"}], [{"original_text": "A fire fighter fought the fire. ", "album_id": "72157623586324463", "photo_flickr_id": "4465534381", "setting": "last-3-pick-old-and-tell", "worker_id": "1ZYJ8XPUWJ094SC", "story_id": "44067", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a fire fighter fought the fire .", "storylet_id": "220337"}], [{"original_text": "Working quickly, the fire began to abate. The glow of red and orange began to subside and the roar of the flames became quieter. ", "album_id": "72157623586324463", "photo_flickr_id": "4465531059", "setting": "last-3-pick-old-and-tell", "worker_id": "1ZYJ8XPUWJ094SC", "story_id": "44067", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "working quickly , the fire began to abate . the glow of red and orange began to subside and the roar of the flames became quieter .", "storylet_id": "220338"}], [{"original_text": "The fire was put out, leaving a trail of smoke that sailed up in the night. A tow truck was on the scene and they got the lift ready so that they could transport the car to a junk yard. ", "album_id": "72157623586324463", "photo_flickr_id": "4466359954", "setting": "last-3-pick-old-and-tell", "worker_id": "1ZYJ8XPUWJ094SC", "story_id": "44067", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fire was put out , leaving a trail of smoke that sailed up in the night . a tow truck was on the scene and they got the lift ready so that they could transport the car to a junk yard .", "storylet_id": "220339"}], [{"original_text": "A fire was reported on the roadside.", "album_id": "72157623586324463", "photo_flickr_id": "4466364790", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44068", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a fire was reported on the roadside .", "storylet_id": "220340"}], [{"original_text": "It spread quickly.", "album_id": "72157623586324463", "photo_flickr_id": "4465601159", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44068", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it spread quickly .", "storylet_id": "220341"}], [{"original_text": "Firefighters responded to the call and managed to get the fire under control.", "album_id": "72157623586324463", "photo_flickr_id": "4465534381", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44068", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "firefighters responded to the call and managed to get the fire under control .", "storylet_id": "220342"}], [{"original_text": "The cause of the fire turned out to be a vehicle malfunction.", "album_id": "72157623586324463", "photo_flickr_id": "4465545943", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44068", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cause of the fire turned out to be a vehicle malfunction .", "storylet_id": "220343"}], [{"original_text": "The firefighters eventually extinguished the fire.", "album_id": "72157623586324463", "photo_flickr_id": "4466359954", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44068", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the firefighters eventually extinguished the fire .", "storylet_id": "220344"}], [{"original_text": "I woke up and looked out my window after I heard screeching brakes and a loud crash. I saw a man running down the street as his car burst into flames.", "album_id": "72157623586324463", "photo_flickr_id": "4466364790", "setting": "last-3-pick-old-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "44069", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i woke up and looked out my window after i heard screeching brakes and a loud crash . i saw a man running down the street as his car burst into flames .", "storylet_id": "220345"}], [{"original_text": "I called 911 as I watched the fire get bigger. I could smell the burning gasoline.", "album_id": "72157623586324463", "photo_flickr_id": "4466380826", "setting": "last-3-pick-old-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "44069", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i called 911 as i watched the fire get bigger . i could smell the burning gasoline .", "storylet_id": "220346"}], [{"original_text": "Firemen quickly showed up and made people stand back as they fought the blaze.", "album_id": "72157623586324463", "photo_flickr_id": "4465534381", "setting": "last-3-pick-old-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "44069", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "firemen quickly showed up and made people stand back as they fought the blaze .", "storylet_id": "220347"}], [{"original_text": "Soon they were able to put the fire out before it spread. Everyone was relieved.", "album_id": "72157623586324463", "photo_flickr_id": "4465531059", "setting": "last-3-pick-old-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "44069", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "soon they were able to put the fire out before it spread . everyone was relieved .", "storylet_id": "220348"}], [{"original_text": "I told the police I saw the driver running away from the scene. I hope they find him unharmed. That was scary.", "album_id": "72157623586324463", "photo_flickr_id": "4466359954", "setting": "last-3-pick-old-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "44069", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i told the police i saw the driver running away from the scene . i hope they find him unharmed . that was scary .", "storylet_id": "220349"}], [{"original_text": "In todays news we have a sad situation on the highway.", "album_id": "72157631648117970", "photo_flickr_id": "8035054479", "setting": "first-2-pick-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "44070", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in todays news we have a sad situation on the highway .", "storylet_id": "220350"}], [{"original_text": "Someone who had road rage had an episode", "album_id": "72157631648117970", "photo_flickr_id": "8035052030", "setting": "first-2-pick-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "44070", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "someone who had road rage had an episode", "storylet_id": "220351"}], [{"original_text": "and this is part of the wreckage, even the media was down there quick with there cameras.", "album_id": "72157631648117970", "photo_flickr_id": "8035051860", "setting": "first-2-pick-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "44070", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and this is part of the wreckage , even the media was down there quick with there cameras .", "storylet_id": "220352"}], [{"original_text": "We are told that no one was killed and that all are safe.", "album_id": "72157631648117970", "photo_flickr_id": "8035051260", "setting": "first-2-pick-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "44070", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we are told that no one was killed and that all are safe .", "storylet_id": "220353"}], [{"original_text": "The car had to be towed to AAA through the traffic and it is all cleaned up now.", "album_id": "72157631648117970", "photo_flickr_id": "8035051112", "setting": "first-2-pick-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "44070", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the car had to be towed to organization through the traffic and it is all cleaned up now .", "storylet_id": "220354"}], [{"original_text": "I was walking down the street when I came across a terrible car accident.", "album_id": "72157631648117970", "photo_flickr_id": "8035052192", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44071", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was walking down the street when i came across a terrible car accident .", "storylet_id": "220355"}], [{"original_text": "One of the vehicles was completely destroyed.", "album_id": "72157631648117970", "photo_flickr_id": "8035053885", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44071", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of the vehicles was completely destroyed .", "storylet_id": "220356"}], [{"original_text": "They had to bring in a tow truck to remove the wreck.", "album_id": "72157631648117970", "photo_flickr_id": "8035051112", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44071", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had to bring in a tow truck to remove the wreck .", "storylet_id": "220357"}], [{"original_text": "The other car was badly damaged as well.", "album_id": "72157631648117970", "photo_flickr_id": "8035053167", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44071", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the other car was badly damaged as well .", "storylet_id": "220358"}], [{"original_text": "It took them a while to clear that part of the street again.", "album_id": "72157631648117970", "photo_flickr_id": "8035051018", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44071", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it took them a while to clear that part of the street again .", "storylet_id": "220359"}], [{"original_text": "The police chased a drunk driver", "album_id": "72157631648117970", "photo_flickr_id": "8035052192", "setting": "last-3-pick-old-and-tell", "worker_id": "AGY1V8HMX0NY34G", "story_id": "44072", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the police chased a drunk driver", "storylet_id": "220360"}], [{"original_text": "who crashed his car while trying to get away.", "album_id": "72157631648117970", "photo_flickr_id": "8035053885", "setting": "last-3-pick-old-and-tell", "worker_id": "AGY1V8HMX0NY34G", "story_id": "44072", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "who crashed his car while trying to get away .", "storylet_id": "220361"}], [{"original_text": "The toe truck has to remove it from the scene.", "album_id": "72157631648117970", "photo_flickr_id": "8035051112", "setting": "last-3-pick-old-and-tell", "worker_id": "AGY1V8HMX0NY34G", "story_id": "44072", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the toe truck has to remove it from the scene .", "storylet_id": "220362"}], [{"original_text": "The air bag deployed so the drive lived.", "album_id": "72157631648117970", "photo_flickr_id": "8035053167", "setting": "last-3-pick-old-and-tell", "worker_id": "AGY1V8HMX0NY34G", "story_id": "44072", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the air bag deployed so the drive lived .", "storylet_id": "220363"}], [{"original_text": "The damaged and clean up blocked the road for hours.", "album_id": "72157631648117970", "photo_flickr_id": "8035051018", "setting": "last-3-pick-old-and-tell", "worker_id": "AGY1V8HMX0NY34G", "story_id": "44072", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the damaged and clean up blocked the road for hours .", "storylet_id": "220364"}], [{"original_text": "Officers arrived on the scene of a grisly accident.", "album_id": "72157631648117970", "photo_flickr_id": "8035052192", "setting": "last-3-pick-old-and-tell", "worker_id": "ZXN44D3HXH7ER0O", "story_id": "44073", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "officers arrived on the scene of a grisly accident .", "storylet_id": "220365"}], [{"original_text": "They discovered a silver Dodge Ram truck that had been involved in a high-energy accident.", "album_id": "72157631648117970", "photo_flickr_id": "8035053885", "setting": "last-3-pick-old-and-tell", "worker_id": "ZXN44D3HXH7ER0O", "story_id": "44073", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they discovered a silver dodge ram truck that had been involved in a high-energy accident .", "storylet_id": "220366"}], [{"original_text": "Tow trucks were called to the scene to remove the totalled vehicle.", "album_id": "72157631648117970", "photo_flickr_id": "8035051112", "setting": "last-3-pick-old-and-tell", "worker_id": "ZXN44D3HXH7ER0O", "story_id": "44073", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "tow trucks were called to the scene to remove the totalled vehicle .", "storylet_id": "220367"}], [{"original_text": "Investigators saw that the airbags had deployed.", "album_id": "72157631648117970", "photo_flickr_id": "8035053167", "setting": "last-3-pick-old-and-tell", "worker_id": "ZXN44D3HXH7ER0O", "story_id": "44073", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "investigators saw that the airbags had deployed .", "storylet_id": "220368"}], [{"original_text": "Finally, the street was swept clean to make room for more vehicles.", "album_id": "72157631648117970", "photo_flickr_id": "8035051018", "setting": "last-3-pick-old-and-tell", "worker_id": "ZXN44D3HXH7ER0O", "story_id": "44073", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , the street was swept clean to make room for more vehicles .", "storylet_id": "220369"}], [{"original_text": "In my job as a tow truck driver, you see a lot of nasty accidents.", "album_id": "72157631648117970", "photo_flickr_id": "8035054479", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44074", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in my job as a tow truck driver , you see a lot of nasty accidents .", "storylet_id": "220370"}], [{"original_text": "Here's one I saw last night, involving a car hitting a motorcycle.", "album_id": "72157631648117970", "photo_flickr_id": "8035052030", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44074", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's one i saw last night , involving a car hitting a motorcycle .", "storylet_id": "220371"}], [{"original_text": "The car wasn't even looking, and drove right over the cycle.", "album_id": "72157631648117970", "photo_flickr_id": "8035051860", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44074", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the car was n't even looking , and drove right over the cycle .", "storylet_id": "220372"}], [{"original_text": "I could barely stand to look at the smashed helmets on the ground.", "album_id": "72157631648117970", "photo_flickr_id": "8035051260", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44074", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i could barely stand to look at the smashed helmets on the ground .", "storylet_id": "220373"}], [{"original_text": "I towed away the car, while the driver of the car was taken away by the police.", "album_id": "72157631648117970", "photo_flickr_id": "8035051112", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44074", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i towed away the car , while the driver of the car was taken away by the police .", "storylet_id": "220374"}], [{"original_text": "My friend and I took a trip to a fountain in his new car.", "album_id": "511252", "photo_flickr_id": "22048039", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44075", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend and i took a trip to a fountain in his new car .", "storylet_id": "220375"}], [{"original_text": "Here's us arriving at the parking lot.", "album_id": "511252", "photo_flickr_id": "22048048", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44075", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's us arriving at the parking lot .", "storylet_id": "220376"}], [{"original_text": "Here's my friend taking a picture next to the fountain!", "album_id": "511252", "photo_flickr_id": "22048055", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44075", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's my friend taking a picture next to the fountain !", "storylet_id": "220377"}], [{"original_text": "It was hot that day, so here I am resting my feet in the water.", "album_id": "511252", "photo_flickr_id": "22048068", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44075", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was hot that day , so here i am resting my feet in the water .", "storylet_id": "220378"}], [{"original_text": "The water is so clear that I can see my feet really well!", "album_id": "511252", "photo_flickr_id": "22048093", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44075", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the water is so clear that i can see my feet really well !", "storylet_id": "220379"}], [{"original_text": "We're in the GWAR car on an adventure ... who knows what will happen. ", "album_id": "511252", "photo_flickr_id": "22048039", "setting": "first-2-pick-and-tell", "worker_id": "U2GKCYPK7EM4TF8", "story_id": "44076", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 're in the organization car on an adventure ... who knows what will happen .", "storylet_id": "220380"}], [{"original_text": "Bob is always up for finding fountains and sometimes he likes to swim in them.", "album_id": "511252", "photo_flickr_id": "22048052", "setting": "first-2-pick-and-tell", "worker_id": "U2GKCYPK7EM4TF8", "story_id": "44076", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is always up for finding fountains and sometimes he likes to swim in them .", "storylet_id": "220381"}], [{"original_text": "Serge decided to soak his tired feet in the cool water. ", "album_id": "511252", "photo_flickr_id": "22048068", "setting": "first-2-pick-and-tell", "worker_id": "U2GKCYPK7EM4TF8", "story_id": "44076", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "serge decided to soak his tired feet in the cool water .", "storylet_id": "220382"}], [{"original_text": "There were no fish, but he was hoping there would be some ... like those salons with the fish that eat your dead skin.", "album_id": "511252", "photo_flickr_id": "22048073", "setting": "first-2-pick-and-tell", "worker_id": "U2GKCYPK7EM4TF8", "story_id": "44076", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were no fish , but he was hoping there would be some ... like those salons with the fish that eat your dead skin .", "storylet_id": "220383"}], [{"original_text": "Back in the GWAR car we are. Unfortunately, we saw a broken down car in the middle of the road... we offered to call for help. But they'd already called someone. ", "album_id": "511252", "photo_flickr_id": "22048097", "setting": "first-2-pick-and-tell", "worker_id": "U2GKCYPK7EM4TF8", "story_id": "44076", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "back in the organization car we are . unfortunately , we saw a broken down car in the middle of the road ... we offered to call for help . but they 'd already called someone .", "storylet_id": "220384"}], [{"original_text": "My brother finally arrived at the park.", "album_id": "511252", "photo_flickr_id": "22048039", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44077", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brother finally arrived at the park .", "storylet_id": "220385"}], [{"original_text": "We watched the game in the field for a bit before heading off.", "album_id": "511252", "photo_flickr_id": "22048048", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44077", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we watched the game in the field for a bit before heading off .", "storylet_id": "220386"}], [{"original_text": "I thought it would be relaxing to sit by the fountain for awhile.", "album_id": "511252", "photo_flickr_id": "22048055", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44077", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i thought it would be relaxing to sit by the fountain for awhile .", "storylet_id": "220387"}], [{"original_text": "My brother thought it would be relaxing to stick his feet inside.", "album_id": "511252", "photo_flickr_id": "22048068", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44077", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my brother thought it would be relaxing to stick his feet inside .", "storylet_id": "220388"}], [{"original_text": "I suppose he likes the feel and look of the water.", "album_id": "511252", "photo_flickr_id": "22048093", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44077", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i suppose he likes the feel and look of the water .", "storylet_id": "220389"}], [{"original_text": "After driving for a long time we finally made it to the water park.", "album_id": "511252", "photo_flickr_id": "22048039", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44078", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after driving for a long time we finally made it to the water park .", "storylet_id": "220390"}], [{"original_text": "There was already a long line.", "album_id": "511252", "photo_flickr_id": "22048048", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44078", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was already a long line .", "storylet_id": "220391"}], [{"original_text": "We had a great time there.", "album_id": "511252", "photo_flickr_id": "22048055", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44078", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a great time there .", "storylet_id": "220392"}], [{"original_text": "Everybody got wet.", "album_id": "511252", "photo_flickr_id": "22048068", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44078", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everybody got wet .", "storylet_id": "220393"}], [{"original_text": "The pools were very clean.", "album_id": "511252", "photo_flickr_id": "22048093", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44078", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the pools were very clean .", "storylet_id": "220394"}], [{"original_text": "My friend and I are taking a road trip to see Gwar, awesome band!", "album_id": "511252", "photo_flickr_id": "22048039", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44079", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend and i are taking a road trip to see gwar , awesome band !", "storylet_id": "220395"}], [{"original_text": "We decided to stop for a swim break. We're not supposed to enter the fountain though.", "album_id": "511252", "photo_flickr_id": "22048052", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44079", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided to stop for a swim break . we 're not supposed to enter the fountain though .", "storylet_id": "220396"}], [{"original_text": "My friend Danny is kind of a rebel and walked in the fountain.", "album_id": "511252", "photo_flickr_id": "22048068", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44079", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend [male] is kind of a rebel and walked in the fountain .", "storylet_id": "220397"}], [{"original_text": "Soaking his feet really cooled him off, just enough for us to get on the way.", "album_id": "511252", "photo_flickr_id": "22048073", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44079", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "soaking his feet really cooled him off , just enough for us to get on the way .", "storylet_id": "220398"}], [{"original_text": "We got in a wreck when we started driving again, Danny died.", "album_id": "511252", "photo_flickr_id": "22048097", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44079", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we got in a wreck when we started driving again , [male] died .", "storylet_id": "220399"}], [{"original_text": "There was a group of people gathered to watch a race.", "album_id": "928240", "photo_flickr_id": "42364404", "setting": "first-2-pick-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44080", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a group of people gathered to watch a race .", "storylet_id": "220400"}], [{"original_text": "There were many colorful race cars participating. ", "album_id": "928240", "photo_flickr_id": "42363393", "setting": "first-2-pick-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44080", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many colorful race cars participating .", "storylet_id": "220401"}], [{"original_text": "Crowds stood by eagerly watching.", "album_id": "928240", "photo_flickr_id": "42363064", "setting": "first-2-pick-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44080", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "crowds stood by eagerly watching .", "storylet_id": "220402"}], [{"original_text": "A red car came by. ", "album_id": "928240", "photo_flickr_id": "42360299", "setting": "first-2-pick-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44080", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a red car came by .", "storylet_id": "220403"}], [{"original_text": "It was followed by a very fast yellow car. ", "album_id": "928240", "photo_flickr_id": "42364994", "setting": "first-2-pick-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44080", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was followed by a very fast yellow car .", "storylet_id": "220404"}], [{"original_text": "There were a ton of cars at the car show.", "album_id": "928240", "photo_flickr_id": "42350235", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44081", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a ton of cars at the car show .", "storylet_id": "220405"}], [{"original_text": "Some of them were very expensive.", "album_id": "928240", "photo_flickr_id": "42350754", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44081", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of them were very expensive .", "storylet_id": "220406"}], [{"original_text": "They were all very fast.", "album_id": "928240", "photo_flickr_id": "42351652", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44081", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were all very fast .", "storylet_id": "220407"}], [{"original_text": "All of the owners were very proud of them.", "album_id": "928240", "photo_flickr_id": "42352617", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44081", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the owners were very proud of them .", "storylet_id": "220408"}], [{"original_text": "I had a great time there.", "album_id": "928240", "photo_flickr_id": "42353255", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44081", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time there .", "storylet_id": "220409"}], [{"original_text": "Pit crews lined up on the pitstop to work on the racecars. ", "album_id": "928240", "photo_flickr_id": "42364404", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44082", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "pit crews lined up on the pitstop to work on the racecars .", "storylet_id": "220410"}], [{"original_text": "This car was in first place for most of the race.", "album_id": "928240", "photo_flickr_id": "42363393", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44082", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this car was in first place for most of the race .", "storylet_id": "220411"}], [{"original_text": "His pitcrew was one of the best in the country. ", "album_id": "928240", "photo_flickr_id": "42363064", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44082", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his pitcrew was one of the best in the country .", "storylet_id": "220412"}], [{"original_text": "After trailing in 3rd for most of the race #83 headed the pack for a short while. ", "album_id": "928240", "photo_flickr_id": "42360299", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44082", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after trailing in 3rd for most of the race # 83 headed the pack for a short while .", "storylet_id": "220413"}], [{"original_text": "Eventually this car was finished with repairs and the driver managed to pull back into first and win the race. ", "album_id": "928240", "photo_flickr_id": "42364994", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44082", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually this car was finished with repairs and the driver managed to pull back into first and win the race .", "storylet_id": "220414"}], [{"original_text": "The crowd gathers for the rally race as Number 51 gets into position.", "album_id": "928240", "photo_flickr_id": "42364404", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "44083", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowd gathers for the rally race as number 51 gets into position .", "storylet_id": "220415"}], [{"original_text": "Number 46 catches the crowds attention with its bright orange paint job.", "album_id": "928240", "photo_flickr_id": "42363393", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "44083", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "number 46 catches the crowds attention with its bright orange paint job .", "storylet_id": "220416"}], [{"original_text": "The next set of racers get ready while observing the current race.", "album_id": "928240", "photo_flickr_id": "42363064", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "44083", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next set of racers get ready while observing the current race .", "storylet_id": "220417"}], [{"original_text": "Age is no obstacle for Number 83 as the race gets under way.", "album_id": "928240", "photo_flickr_id": "42360299", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "44083", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "age is no obstacle for number 83 as the race gets under way .", "storylet_id": "220418"}], [{"original_text": "Number 51 blasts off as the race starts.", "album_id": "928240", "photo_flickr_id": "42364994", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "44083", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "number 51 blasts off as the race starts .", "storylet_id": "220419"}], [{"original_text": "The boys love to watch the roadrace of the fancied up regular cars.", "album_id": "928240", "photo_flickr_id": "42364404", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44084", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the boys love to watch the roadrace of the fancied up regular cars .", "storylet_id": "220420"}], [{"original_text": "They have a favorite in the orange muscle car.", "album_id": "928240", "photo_flickr_id": "42363393", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44084", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they have a favorite in the orange muscle car .", "storylet_id": "220421"}], [{"original_text": "The excitement builds as the race goes along.", "album_id": "928240", "photo_flickr_id": "42363064", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44084", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the excitement builds as the race goes along .", "storylet_id": "220422"}], [{"original_text": "I love the cars that look like just commuting cars, yet are racing!", "album_id": "928240", "photo_flickr_id": "42360299", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44084", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love the cars that look like just commuting cars , yet are racing !", "storylet_id": "220423"}], [{"original_text": "The smoke behind the cars showed how hard they had to work to race.", "album_id": "928240", "photo_flickr_id": "42364994", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44084", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the smoke behind the cars showed how hard they had to work to race .", "storylet_id": "220424"}], [{"original_text": "We were on the plane headed to China.", "album_id": "918138", "photo_flickr_id": "41862614", "setting": "first-2-pick-and-tell", "worker_id": "38T4M0KZ8XG6OZB", "story_id": "44085", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were on the plane headed to location .", "storylet_id": "220425"}], [{"original_text": "It was a bit cloudy as we arrived.", "album_id": "918138", "photo_flickr_id": "41862621", "setting": "first-2-pick-and-tell", "worker_id": "38T4M0KZ8XG6OZB", "story_id": "44085", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a bit cloudy as we arrived .", "storylet_id": "220426"}], [{"original_text": "The buildings near our hotel were beautiful.", "album_id": "918138", "photo_flickr_id": "41862628", "setting": "first-2-pick-and-tell", "worker_id": "38T4M0KZ8XG6OZB", "story_id": "44085", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the buildings near our hotel were beautiful .", "storylet_id": "220427"}], [{"original_text": "We took a boat to out hotel.", "album_id": "918138", "photo_flickr_id": "41862735", "setting": "first-2-pick-and-tell", "worker_id": "38T4M0KZ8XG6OZB", "story_id": "44085", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a boat to out hotel .", "storylet_id": "220428"}], [{"original_text": "We even got lunch from a bike!", "album_id": "918138", "photo_flickr_id": "41862780", "setting": "first-2-pick-and-tell", "worker_id": "38T4M0KZ8XG6OZB", "story_id": "44085", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even got lunch from a bike !", "storylet_id": "220429"}], [{"original_text": "A lot of people love to visit historical places on vacation. I like to buy things. ", "album_id": "918138", "photo_flickr_id": "41862780", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "44086", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a lot of people love to visit historical places on vacation . i like to buy things .", "storylet_id": "220430"}], [{"original_text": "There are shops galore to chose from and bargains if you know where to look. ", "album_id": "918138", "photo_flickr_id": "41862812", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "44086", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are shops galore to chose from and bargains if you know where to look .", "storylet_id": "220431"}], [{"original_text": "We hit this giant fish market and while the deals were good, it stank to high Heaven. ", "album_id": "918138", "photo_flickr_id": "41862843", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "44086", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we hit this giant fish market and while the deals were good , it stank to high [female] .", "storylet_id": "220432"}], [{"original_text": "We found a lot of great things for dinner that night. And cheap too. ", "album_id": "918138", "photo_flickr_id": "41862861", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "44086", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we found a lot of great things for dinner that night . and cheap too .", "storylet_id": "220433"}], [{"original_text": "Of course we had to hit the fireworks. I mean c'mon, that is almost tradition in China right? ", "album_id": "918138", "photo_flickr_id": "41862971", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "44086", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "of course we had to hit the fireworks . i mean c'mon , that is almost tradition in location right ?", "storylet_id": "220434"}], [{"original_text": "As I was visiting Asia, I saw many different local vendors with their carts at the street markets.", "album_id": "918138", "photo_flickr_id": "41862780", "setting": "last-3-pick-old-and-tell", "worker_id": "MU3D3Y4UO3T8J79", "story_id": "44087", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as i was visiting location , i saw many different local vendors with their carts at the street markets .", "storylet_id": "220435"}], [{"original_text": "I decided to stop inside one of the markets one day to get some fresh fish.", "album_id": "918138", "photo_flickr_id": "41862812", "setting": "last-3-pick-old-and-tell", "worker_id": "MU3D3Y4UO3T8J79", "story_id": "44087", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i decided to stop inside one of the markets one day to get some fresh fish .", "storylet_id": "220436"}], [{"original_text": "As I walked through the market, I couldn't help but notice all of the different items for sale.", "album_id": "918138", "photo_flickr_id": "41862843", "setting": "last-3-pick-old-and-tell", "worker_id": "MU3D3Y4UO3T8J79", "story_id": "44087", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as i walked through the market , i could n't help but notice all of the different items for sale .", "storylet_id": "220437"}], [{"original_text": "I even came across one market with already filleted cuts of fish that were about to be smoked.", "album_id": "918138", "photo_flickr_id": "41862861", "setting": "last-3-pick-old-and-tell", "worker_id": "MU3D3Y4UO3T8J79", "story_id": "44087", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i even came across one market with already filleted cuts of fish that were about to be smoked .", "storylet_id": "220438"}], [{"original_text": "As I was exiting the market, there was an assortment of fireworks on display that I just couldn't pass up.", "album_id": "918138", "photo_flickr_id": "41862971", "setting": "last-3-pick-old-and-tell", "worker_id": "MU3D3Y4UO3T8J79", "story_id": "44087", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as i was exiting the market , there was an assortment of fireworks on display that i just could n't pass up .", "storylet_id": "220439"}], [{"original_text": "Travelling was made much easier with the access to coffee.", "album_id": "918138", "photo_flickr_id": "41862614", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "44088", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "travelling was made much easier with the access to coffee .", "storylet_id": "220440"}], [{"original_text": "The downtown was somewhat obscurred by the bad weather.", "album_id": "918138", "photo_flickr_id": "41862621", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "44088", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the downtown was somewhat obscurred by the bad weather .", "storylet_id": "220441"}], [{"original_text": "The domes of the palaces looked like the work of Islam.", "album_id": "918138", "photo_flickr_id": "41862628", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "44088", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the domes of the palaces looked like the work of islam .", "storylet_id": "220442"}], [{"original_text": "The palms were abundant on the shoreline.", "album_id": "918138", "photo_flickr_id": "41862735", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "44088", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the palms were abundant on the shoreline .", "storylet_id": "220443"}], [{"original_text": "The street vendors were in abundance.", "album_id": "918138", "photo_flickr_id": "41862780", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "44088", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the street vendors were in abundance .", "storylet_id": "220444"}], [{"original_text": "There was a teapot in the train for the guests.", "album_id": "918138", "photo_flickr_id": "41862614", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44089", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a teapot in the train for the guests .", "storylet_id": "220445"}], [{"original_text": "The city had very nice buildings.", "album_id": "918138", "photo_flickr_id": "41862621", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44089", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city had very nice buildings .", "storylet_id": "220446"}], [{"original_text": "The sky was a bit foggy.", "album_id": "918138", "photo_flickr_id": "41862628", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44089", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sky was a bit foggy .", "storylet_id": "220447"}], [{"original_text": "The lake was a more scenic place to visit.", "album_id": "918138", "photo_flickr_id": "41862735", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44089", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lake was a more scenic place to visit .", "storylet_id": "220448"}], [{"original_text": "Lastly, a peanut snack shop was located on the streets.", "album_id": "918138", "photo_flickr_id": "41862780", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44089", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , a peanut snack shop was located on the streets .", "storylet_id": "220449"}], [{"original_text": "Got together with a group pf friends for a bike ride. ", "album_id": "72157594235652647", "photo_flickr_id": "214381352", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "44090", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "got together with a group pf friends for a bike ride .", "storylet_id": "220450"}], [{"original_text": "The scenery was beautiful and calming. ", "album_id": "72157594235652647", "photo_flickr_id": "214381566", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "44090", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the scenery was beautiful and calming .", "storylet_id": "220451"}], [{"original_text": "It's so peaceful biking down the road with the wind at your face.", "album_id": "72157594235652647", "photo_flickr_id": "214381810", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "44090", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's so peaceful biking down the road with the wind at your face .", "storylet_id": "220452"}], [{"original_text": "We passed a car accident, hope everyone was okay!", "album_id": "72157594235652647", "photo_flickr_id": "214386452", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "44090", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we passed a car accident , hope everyone was okay !", "storylet_id": "220453"}], [{"original_text": "Overall it was a great day to ride with friends. ", "album_id": "72157594235652647", "photo_flickr_id": "214386674", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "44090", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall it was a great day to ride with friends .", "storylet_id": "220454"}], [{"original_text": "My friends and I love to go biking. ", "album_id": "72157594235652647", "photo_flickr_id": "214381352", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "44091", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i love to go biking .", "storylet_id": "220455"}], [{"original_text": "We ride through the city.", "album_id": "72157594235652647", "photo_flickr_id": "214381990", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "44091", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we ride through the city .", "storylet_id": "220456"}], [{"original_text": "We pass animals in the fields when we ride through the country.", "album_id": "72157594235652647", "photo_flickr_id": "214382799", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "44091", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we pass animals in the fields when we ride through the country .", "storylet_id": "220457"}], [{"original_text": "We bike for many miles.", "album_id": "72157594235652647", "photo_flickr_id": "214383522", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "44091", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we bike for many miles .", "storylet_id": "220458"}], [{"original_text": "At the end of our excursions, we feel tired but happy.", "album_id": "72157594235652647", "photo_flickr_id": "214386674", "setting": "first-2-pick-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "44091", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of our excursions , we feel tired but happy .", "storylet_id": "220459"}], [{"original_text": "Last weekend I went on a bike ride with my friends.", "album_id": "72157594235652647", "photo_flickr_id": "214381352", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44092", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last weekend i went on a bike ride with my friends .", "storylet_id": "220460"}], [{"original_text": "We started at a parking lot in town.", "album_id": "72157594235652647", "photo_flickr_id": "214381990", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44092", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we started at a parking lot in town .", "storylet_id": "220461"}], [{"original_text": "From there, we zoomed around the country side.", "album_id": "72157594235652647", "photo_flickr_id": "214382799", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44092", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "from there , we zoomed around the country side .", "storylet_id": "220462"}], [{"original_text": "Some roads were very twisty.", "album_id": "72157594235652647", "photo_flickr_id": "214383522", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44092", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some roads were very twisty .", "storylet_id": "220463"}], [{"original_text": "My friends and I had lots of fun.", "album_id": "72157594235652647", "photo_flickr_id": "214386674", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44092", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my friends and i had lots of fun .", "storylet_id": "220464"}], [{"original_text": "We're going out biking. Starting off at the library.", "album_id": "72157594235652647", "photo_flickr_id": "214381352", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44093", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 're going out biking . starting off at the library .", "storylet_id": "220465"}], [{"original_text": "25 miles and we've hit.... nothing! ", "album_id": "72157594235652647", "photo_flickr_id": "214381566", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44093", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "25 miles and we 've hit ... . nothing !", "storylet_id": "220466"}], [{"original_text": "Riding through main street.", "album_id": "72157594235652647", "photo_flickr_id": "214381810", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44093", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "riding through main street .", "storylet_id": "220467"}], [{"original_text": "The only stoplight in town!", "album_id": "72157594235652647", "photo_flickr_id": "214386452", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44093", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the only stoplight in town !", "storylet_id": "220468"}], [{"original_text": "Made it our final destination! Now lets get some beers!", "album_id": "72157594235652647", "photo_flickr_id": "214386674", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44093", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "made it our final destination ! now lets get some beers !", "storylet_id": "220469"}], [{"original_text": "The beginning of the bike tripmreasy to go.", "album_id": "72157594235652647", "photo_flickr_id": "214381352", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "44094", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the beginning of the bike tripmreasy to go .", "storylet_id": "220470"}], [{"original_text": "Views from the camera in front of the intersection.", "album_id": "72157594235652647", "photo_flickr_id": "214381990", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "44094", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "views from the camera in front of the intersection .", "storylet_id": "220471"}], [{"original_text": "Random cows laying in the pasture.", "album_id": "72157594235652647", "photo_flickr_id": "214382799", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "44094", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "random cows laying in the pasture .", "storylet_id": "220472"}], [{"original_text": "The bikers ahead in the small town.", "album_id": "72157594235652647", "photo_flickr_id": "214383522", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "44094", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bikers ahead in the small town .", "storylet_id": "220473"}], [{"original_text": "The friends finished the biking trip and pose for a shot.", "album_id": "72157594235652647", "photo_flickr_id": "214386674", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "44094", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the friends finished the biking trip and pose for a shot .", "storylet_id": "220474"}], [{"original_text": "Joe called me and said to come to the intersection because a van had hit his car.", "album_id": "72157594244928126", "photo_flickr_id": "222245610", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "44095", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] called me and said to come to the intersection because a van had hit his car .", "storylet_id": "220475"}], [{"original_text": "From the side it did not look too bad.", "album_id": "72157594244928126", "photo_flickr_id": "222245609", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "44095", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from the side it did not look too bad .", "storylet_id": "220476"}], [{"original_text": "His window was broken but nothing else seemed to be alright.", "album_id": "72157594244928126", "photo_flickr_id": "220540481", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "44095", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his window was broken but nothing else seemed to be alright .", "storylet_id": "220477"}], [{"original_text": "The door still opened OK so we thought, just maybe he could get away with just a new window.", "album_id": "72157594244928126", "photo_flickr_id": "220541359", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "44095", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the door still opened ok so we thought , just maybe he could get away with just a new window .", "storylet_id": "220478"}], [{"original_text": "When we closed the door though, and looked at it, we knew he would be lucky if all he needed was a new door.", "album_id": "72157594244928126", "photo_flickr_id": "220543195", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "44095", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we closed the door though , and looked at it , we knew he would be lucky if all he needed was a new door .", "storylet_id": "220479"}], [{"original_text": "My car looked totaled after the accident.", "album_id": "72157594244928126", "photo_flickr_id": "220541978", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "44096", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my car looked totaled after the accident .", "storylet_id": "220480"}], [{"original_text": "I tried to get a picture of the full damage.", "album_id": "72157594244928126", "photo_flickr_id": "220542542", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "44096", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i tried to get a picture of the full damage .", "storylet_id": "220481"}], [{"original_text": "I could not even open the door. ", "album_id": "72157594244928126", "photo_flickr_id": "220543195", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "44096", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i could not even open the door .", "storylet_id": "220482"}], [{"original_text": "The van pulled over so we could exchange information.", "album_id": "72157594244928126", "photo_flickr_id": "222245610", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "44096", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the van pulled over so we could exchange information .", "storylet_id": "220483"}], [{"original_text": "I was so upset because I just bought this car.", "album_id": "72157594244928126", "photo_flickr_id": "222245611", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "44096", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was so upset because i just bought this car .", "storylet_id": "220484"}], [{"original_text": "First the person took a wide photo of the crash for his insurance claim.", "album_id": "72157594244928126", "photo_flickr_id": "222245610", "setting": "last-3-pick-old-and-tell", "worker_id": "PRM5AJUMRKXCDFF", "story_id": "44097", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "first the person took a wide photo of the crash for his insurance claim .", "storylet_id": "220485"}], [{"original_text": "Then the person needed a close up photo of the impact zone.", "album_id": "72157594244928126", "photo_flickr_id": "222245609", "setting": "last-3-pick-old-and-tell", "worker_id": "PRM5AJUMRKXCDFF", "story_id": "44097", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then the person needed a close up photo of the impact zone .", "storylet_id": "220486"}], [{"original_text": "After the van was moved there was a need for the window damage photo.", "album_id": "72157594244928126", "photo_flickr_id": "220540481", "setting": "last-3-pick-old-and-tell", "worker_id": "PRM5AJUMRKXCDFF", "story_id": "44097", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the van was moved there was a need for the window damage photo .", "storylet_id": "220487"}], [{"original_text": "Then a photo of the inside of the door.", "album_id": "72157594244928126", "photo_flickr_id": "220541359", "setting": "last-3-pick-old-and-tell", "worker_id": "PRM5AJUMRKXCDFF", "story_id": "44097", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then a photo of the inside of the door .", "storylet_id": "220488"}], [{"original_text": "As well as a full shot of the side of the car.", "album_id": "72157594244928126", "photo_flickr_id": "220543195", "setting": "last-3-pick-old-and-tell", "worker_id": "PRM5AJUMRKXCDFF", "story_id": "44097", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as well as a full shot of the side of the car .", "storylet_id": "220489"}], [{"original_text": "This is the van that hit our car.", "album_id": "72157594244928126", "photo_flickr_id": "222245610", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44098", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the van that hit our car .", "storylet_id": "220490"}], [{"original_text": "At the moment, it looked like this.", "album_id": "72157594244928126", "photo_flickr_id": "222245609", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44098", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at the moment , it looked like this .", "storylet_id": "220491"}], [{"original_text": "The side window was broken.", "album_id": "72157594244928126", "photo_flickr_id": "220540481", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44098", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the side window was broken .", "storylet_id": "220492"}], [{"original_text": "At least the door was still usable.", "album_id": "72157594244928126", "photo_flickr_id": "220541359", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44098", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at least the door was still usable .", "storylet_id": "220493"}], [{"original_text": "We will have to claim our insurance coverage.", "album_id": "72157594244928126", "photo_flickr_id": "220543195", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44098", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we will have to claim our insurance coverage .", "storylet_id": "220494"}], [{"original_text": "As a jogger, I see a lot of accidents.", "album_id": "72157594244928126", "photo_flickr_id": "222245610", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44099", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as a jogger , i see a lot of accidents .", "storylet_id": "220495"}], [{"original_text": "This accident was a light collision.", "album_id": "72157594244928126", "photo_flickr_id": "222245609", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44099", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this accident was a light collision .", "storylet_id": "220496"}], [{"original_text": "Sure, the window busted, but no one got hurt.", "album_id": "72157594244928126", "photo_flickr_id": "220540481", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44099", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sure , the window busted , but no one got hurt .", "storylet_id": "220497"}], [{"original_text": "The driver got out immediately and called the cops.", "album_id": "72157594244928126", "photo_flickr_id": "220541359", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44099", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the driver got out immediately and called the cops .", "storylet_id": "220498"}], [{"original_text": "The car won't be functional for a while.", "album_id": "72157594244928126", "photo_flickr_id": "220543195", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44099", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the car wo n't be functional for a while .", "storylet_id": "220499"}], [{"original_text": "I got into an accident today unfortunately.", "album_id": "72157594449129340", "photo_flickr_id": "339130514", "setting": "first-2-pick-and-tell", "worker_id": "2FHWL8TZ32C9GJB", "story_id": "44100", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got into an accident today unfortunately .", "storylet_id": "220500"}], [{"original_text": "I rear ended a car that slammed on the breaks in front of me.", "album_id": "72157594449129340", "photo_flickr_id": "339131007", "setting": "first-2-pick-and-tell", "worker_id": "2FHWL8TZ32C9GJB", "story_id": "44100", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i rear ended a car that slammed on the breaks in front of me .", "storylet_id": "220501"}], [{"original_text": "I made sure to take as many pictures as possible for the insurance company.", "album_id": "72157594449129340", "photo_flickr_id": "339131463", "setting": "first-2-pick-and-tell", "worker_id": "2FHWL8TZ32C9GJB", "story_id": "44100", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i made sure to take as many pictures as possible for the insurance company .", "storylet_id": "220502"}], [{"original_text": "Luckily it doesn't look totaled.", "album_id": "72157594449129340", "photo_flickr_id": "339132127", "setting": "first-2-pick-and-tell", "worker_id": "2FHWL8TZ32C9GJB", "story_id": "44100", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "luckily it does n't look totaled .", "storylet_id": "220503"}], [{"original_text": "...but it doesn't look great either..", "album_id": "72157594449129340", "photo_flickr_id": "339132832", "setting": "first-2-pick-and-tell", "worker_id": "2FHWL8TZ32C9GJB", "story_id": "44100", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "... but it does n't look great either..", "storylet_id": "220504"}], [{"original_text": "This is my car.", "album_id": "72157594449129340", "photo_flickr_id": "339130150", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44101", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my car .", "storylet_id": "220505"}], [{"original_text": "It was in an accident.", "album_id": "72157594449129340", "photo_flickr_id": "339130514", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44101", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was in an accident .", "storylet_id": "220506"}], [{"original_text": "That made me sad.", "album_id": "72157594449129340", "photo_flickr_id": "339131007", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44101", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that made me sad .", "storylet_id": "220507"}], [{"original_text": "Now I have to file a claim.", "album_id": "72157594449129340", "photo_flickr_id": "339131463", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44101", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now i have to file a claim .", "storylet_id": "220508"}], [{"original_text": "I'm not happy.", "album_id": "72157594449129340", "photo_flickr_id": "339131784", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44101", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm not happy .", "storylet_id": "220509"}], [{"original_text": "Report for Insurance: At the rear end, everything below car's brake light is unhinged.", "album_id": "72157594449129340", "photo_flickr_id": "339130150", "setting": "last-3-pick-old-and-tell", "worker_id": "622Q138QT7W5R77", "story_id": "44102", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "report for insurance : at the rear end , everything below car 's brake light is unhinged .", "storylet_id": "220510"}], [{"original_text": "Right brake light covers are missing.", "album_id": "72157594449129340", "photo_flickr_id": "339130514", "setting": "last-3-pick-old-and-tell", "worker_id": "622Q138QT7W5R77", "story_id": "44102", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "right brake light covers are missing .", "storylet_id": "220511"}], [{"original_text": "Left headlight out of place and, on its right, angled upward, preventing trunk from closing.", "album_id": "72157594449129340", "photo_flickr_id": "339131007", "setting": "last-3-pick-old-and-tell", "worker_id": "622Q138QT7W5R77", "story_id": "44102", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "left headlight out of place and , on its right , angled upward , preventing trunk from closing .", "storylet_id": "220512"}], [{"original_text": "Cover for right headlight is missing.", "album_id": "72157594449129340", "photo_flickr_id": "339131463", "setting": "last-3-pick-old-and-tell", "worker_id": "622Q138QT7W5R77", "story_id": "44102", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cover for right headlight is missing .", "storylet_id": "220513"}], [{"original_text": "Supplementary picture.", "album_id": "72157594449129340", "photo_flickr_id": "339131784", "setting": "last-3-pick-old-and-tell", "worker_id": "622Q138QT7W5R77", "story_id": "44102", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "supplementary picture .", "storylet_id": "220514"}], [{"original_text": "The car was initially hit from behind.", "album_id": "72157594449129340", "photo_flickr_id": "339130514", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44103", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the car was initially hit from behind .", "storylet_id": "220515"}], [{"original_text": "It was then thrown into the truck stopped in front of it.", "album_id": "72157594449129340", "photo_flickr_id": "339131007", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44103", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was then thrown into the truck stopped in front of it .", "storylet_id": "220516"}], [{"original_text": "This caused damage to both sides of the front end.", "album_id": "72157594449129340", "photo_flickr_id": "339131463", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44103", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this caused damage to both sides of the front end .", "storylet_id": "220517"}], [{"original_text": "The hood was so bent it did not close properly.", "album_id": "72157594449129340", "photo_flickr_id": "339132127", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44103", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the hood was so bent it did not close properly .", "storylet_id": "220518"}], [{"original_text": "The rear of the car was hit so hard that it buckled the trunk deck and dented the bumper.", "album_id": "72157594449129340", "photo_flickr_id": "339132832", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44103", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the rear of the car was hit so hard that it buckled the trunk deck and dented the bumper .", "storylet_id": "220519"}], [{"original_text": "The car had been impounded. ", "album_id": "72157594449129340", "photo_flickr_id": "339130514", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44104", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the car had been impounded .", "storylet_id": "220520"}], [{"original_text": "He knew the front had been damaged while it was being towed. ", "album_id": "72157594449129340", "photo_flickr_id": "339131007", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44104", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he knew the front had been damaged while it was being towed .", "storylet_id": "220521"}], [{"original_text": "He took pictures to show the damage. ", "album_id": "72157594449129340", "photo_flickr_id": "339131463", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44104", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he took pictures to show the damage .", "storylet_id": "220522"}], [{"original_text": "The damage to the front was severe. ", "album_id": "72157594449129340", "photo_flickr_id": "339132127", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44104", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the damage to the front was severe .", "storylet_id": "220523"}], [{"original_text": "He also noticed a very large dent in the back. ", "album_id": "72157594449129340", "photo_flickr_id": "339132832", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44104", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he also noticed a very large dent in the back .", "storylet_id": "220524"}], [{"original_text": "The cat woke Dave up early in the morning.", "album_id": "72157600025352333", "photo_flickr_id": "432967217", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44105", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cat woke [male] up early in the morning .", "storylet_id": "220525"}], [{"original_text": "Since he had the extra time he decided to prepare himself breakfast, a luxury he did not have most mornings.", "album_id": "72157600025352333", "photo_flickr_id": "432966805", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44105", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "since he had the extra time he decided to prepare himself breakfast , a luxury he did not have most mornings .", "storylet_id": "220526"}], [{"original_text": "He enjoyed his waffles and coffee.", "album_id": "72157600025352333", "photo_flickr_id": "432964818", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44105", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he enjoyed his waffles and coffee .", "storylet_id": "220527"}], [{"original_text": "Then he remembered that the problem with cooking was the mess it left behind.", "album_id": "72157600025352333", "photo_flickr_id": "432964364", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44105", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then he remembered that the problem with cooking was the mess it left behind .", "storylet_id": "220528"}], [{"original_text": "His early day plans were unraveled when he discovered the sink was leaking into the cupboard beneath.", "album_id": "72157600025352333", "photo_flickr_id": "432968900", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44105", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his early day plans were unraveled when he discovered the sink was leaking into the cupboard beneath .", "storylet_id": "220529"}], [{"original_text": "First, he cleaned the kitchen. ", "album_id": "72157600025352333", "photo_flickr_id": "432966805", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44106", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "first , he cleaned the kitchen .", "storylet_id": "220530"}], [{"original_text": "Then he cleaned the table. ", "album_id": "72157600025352333", "photo_flickr_id": "432964214", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44106", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then he cleaned the table .", "storylet_id": "220531"}], [{"original_text": "Then he had to catch the cat and put him out. ", "album_id": "72157600025352333", "photo_flickr_id": "432967217", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44106", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then he had to catch the cat and put him out .", "storylet_id": "220532"}], [{"original_text": "Damn cat, he thought. ", "album_id": "72157600025352333", "photo_flickr_id": "432967889", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44106", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "damn cat , he thought .", "storylet_id": "220533"}], [{"original_text": "Finally, he started to work in the garage. ", "album_id": "72157600025352333", "photo_flickr_id": "432968075", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44106", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , he started to work in the garage .", "storylet_id": "220534"}], [{"original_text": "Lloyd showed off his cute butt in the kitchen.", "album_id": "72157600025352333", "photo_flickr_id": "432966805", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44107", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "organization showed off his cute butt in the kitchen .", "storylet_id": "220535"}], [{"original_text": "He was really proud of the newly-installed wallpaper there.", "album_id": "72157600025352333", "photo_flickr_id": "432964214", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44107", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was really proud of the newly-installed wallpaper there .", "storylet_id": "220536"}], [{"original_text": "This is his cat Tubblyumpkins.", "album_id": "72157600025352333", "photo_flickr_id": "432967217", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44107", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is his cat tubblyumpkins .", "storylet_id": "220537"}], [{"original_text": "Lloyd made himself some waffles for breakfast that day.", "album_id": "72157600025352333", "photo_flickr_id": "432967889", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44107", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "organization made himself some waffles for breakfast that day .", "storylet_id": "220538"}], [{"original_text": "Afterwards he had to work on cleaning his dirty shelves.", "album_id": "72157600025352333", "photo_flickr_id": "432968075", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44107", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards he had to work on cleaning his dirty shelves .", "storylet_id": "220539"}], [{"original_text": "Bill is a strange guy. His best friend in the world is his orange cat, Loopie.", "album_id": "72157600025352333", "photo_flickr_id": "432967217", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44108", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is a strange guy . his best friend in the world is his orange cat , loopie .", "storylet_id": "220540"}], [{"original_text": "He has the same breakfast every morning---waffles and coffee.", "album_id": "72157600025352333", "photo_flickr_id": "432966805", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44108", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he has the same breakfast every morning -- -waffles and coffee .", "storylet_id": "220541"}], [{"original_text": "You'd think he'd get bored of the waffles and black coffee, but he never does.", "album_id": "72157600025352333", "photo_flickr_id": "432964818", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44108", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you 'd think he 'd get bored of the waffles and black coffee , but he never does .", "storylet_id": "220542"}], [{"original_text": "When he's done, he tosses everything in the sink.", "album_id": "72157600025352333", "photo_flickr_id": "432964364", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44108", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when he 's done , he tosses everything in the sink .", "storylet_id": "220543"}], [{"original_text": "Eventually, the sink jams, and he has to take everything out from under it and do some heavy drain work.", "album_id": "72157600025352333", "photo_flickr_id": "432968900", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44108", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually , the sink jams , and he has to take everything out from under it and do some heavy drain work .", "storylet_id": "220544"}], [{"original_text": "Cat coming down the stairs to eat breakfast.", "album_id": "72157600025352333", "photo_flickr_id": "432967217", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44109", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "cat coming down the stairs to eat breakfast .", "storylet_id": "220545"}], [{"original_text": "Preparing walfles for breakfast.", "album_id": "72157600025352333", "photo_flickr_id": "432966805", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44109", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "preparing walfles for breakfast .", "storylet_id": "220546"}], [{"original_text": "Waffles and coffee are ready. ", "album_id": "72157600025352333", "photo_flickr_id": "432964818", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44109", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "waffles and coffee are ready .", "storylet_id": "220547"}], [{"original_text": "Trial and error waffles and eggs.", "album_id": "72157600025352333", "photo_flickr_id": "432964364", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44109", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "trial and error waffles and eggs .", "storylet_id": "220548"}], [{"original_text": "Thought we saw a mouse trying to get it out with a fan", "album_id": "72157600025352333", "photo_flickr_id": "432968900", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44109", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "thought we saw a mouse trying to get it out with a fan", "storylet_id": "220549"}], [{"original_text": "Everyone gathered to watch the martial arts demonstrations.", "album_id": "72157600314040670", "photo_flickr_id": "531090167", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "44110", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone gathered to watch the martial arts demonstrations .", "storylet_id": "220550"}], [{"original_text": "This man broke stacks of ice with his bare hands. ", "album_id": "72157600314040670", "photo_flickr_id": "530984252", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "44110", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this man broke stacks of ice with his bare hands .", "storylet_id": "220551"}], [{"original_text": "This man was demonstrated his kata.", "album_id": "72157600314040670", "photo_flickr_id": "530984398", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "44110", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this man was demonstrated his kata .", "storylet_id": "220552"}], [{"original_text": "This group presented their artwork.", "album_id": "72157600314040670", "photo_flickr_id": "530984788", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "44110", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this group presented their artwork .", "storylet_id": "220553"}], [{"original_text": "We all gathered for a group picture at the end. ", "album_id": "72157600314040670", "photo_flickr_id": "530985250", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "44110", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all gathered for a group picture at the end .", "storylet_id": "220554"}], [{"original_text": "There were lots of pretty flowers.", "album_id": "72157600314040670", "photo_flickr_id": "531089971", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44111", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were lots of pretty flowers .", "storylet_id": "220555"}], [{"original_text": "Just outside the karate show.", "album_id": "72157600314040670", "photo_flickr_id": "531090167", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44111", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "just outside the karate show .", "storylet_id": "220556"}], [{"original_text": "Everyone was there.", "album_id": "72157600314040670", "photo_flickr_id": "531090365", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44111", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was there .", "storylet_id": "220557"}], [{"original_text": "There was lots of butt kicking.", "album_id": "72157600314040670", "photo_flickr_id": "531090457", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44111", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was lots of butt kicking .", "storylet_id": "220558"}], [{"original_text": "Ninjas in the making.", "album_id": "72157600314040670", "photo_flickr_id": "531090591", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44111", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ninjas in the making .", "storylet_id": "220559"}], [{"original_text": "Karate performers waited onstage while the master spoke.", "album_id": "72157600314040670", "photo_flickr_id": "531090167", "setting": "last-3-pick-old-and-tell", "worker_id": "622Q138QT7W5R77", "story_id": "44112", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "karate performers waited onstage while the master spoke .", "storylet_id": "220560"}], [{"original_text": "One student demonstrates their skills by chopping through 3 thick blocks of ice with one hand.", "album_id": "72157600314040670", "photo_flickr_id": "530984252", "setting": "last-3-pick-old-and-tell", "worker_id": "622Q138QT7W5R77", "story_id": "44112", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one student demonstrates their skills by chopping through 3 thick blocks of ice with one hand .", "storylet_id": "220561"}], [{"original_text": "All the white students, regardless of skill, were put up front, per American custom. ", "album_id": "72157600314040670", "photo_flickr_id": "530984398", "setting": "last-3-pick-old-and-tell", "worker_id": "622Q138QT7W5R77", "story_id": "44112", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the white students , regardless of skill , were put up front , per american custom .", "storylet_id": "220562"}], [{"original_text": "One audience member seems unimpressed with that custom.", "album_id": "72157600314040670", "photo_flickr_id": "530984788", "setting": "last-3-pick-old-and-tell", "worker_id": "622Q138QT7W5R77", "story_id": "44112", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one audience member seems unimpressed with that custom .", "storylet_id": "220563"}], [{"original_text": "Despite cultural tensions, the performance still brought people together.", "album_id": "72157600314040670", "photo_flickr_id": "530985250", "setting": "last-3-pick-old-and-tell", "worker_id": "622Q138QT7W5R77", "story_id": "44112", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "despite cultural tensions , the performance still brought people together .", "storylet_id": "220564"}], [{"original_text": "The karate expo was today.", "album_id": "72157600314040670", "photo_flickr_id": "531090167", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44113", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the karate expo was today .", "storylet_id": "220565"}], [{"original_text": "It was interesting to watch people break boards with just their hands.", "album_id": "72157600314040670", "photo_flickr_id": "530984252", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44113", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was interesting to watch people break boards with just their hands .", "storylet_id": "220566"}], [{"original_text": "People with all different belt levels participated in the exhibit. ", "album_id": "72157600314040670", "photo_flickr_id": "530984398", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44113", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people with all different belt levels participated in the exhibit .", "storylet_id": "220567"}], [{"original_text": "The venue was decorated with traditional structures.", "album_id": "72157600314040670", "photo_flickr_id": "530984788", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44113", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the venue was decorated with traditional structures .", "storylet_id": "220568"}], [{"original_text": "The group had a nice time together.", "album_id": "72157600314040670", "photo_flickr_id": "530985250", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44113", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the group had a nice time together .", "storylet_id": "220569"}], [{"original_text": "I attended a martial arts exhibition today.", "album_id": "72157600314040670", "photo_flickr_id": "531090167", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44114", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i attended a martial arts exhibition today .", "storylet_id": "220570"}], [{"original_text": "There was a man doing demonstrations.", "album_id": "72157600314040670", "photo_flickr_id": "530984252", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44114", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a man doing demonstrations .", "storylet_id": "220571"}], [{"original_text": "Another man was demonstrating form.", "album_id": "72157600314040670", "photo_flickr_id": "530984398", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44114", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another man was demonstrating form .", "storylet_id": "220572"}], [{"original_text": "Asian effects abound.", "album_id": "72157600314040670", "photo_flickr_id": "530984788", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44114", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "asian effects abound .", "storylet_id": "220573"}], [{"original_text": "We were all pretty happy about going.", "album_id": "72157600314040670", "photo_flickr_id": "530985250", "setting": "last-3-pick-old-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44114", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were all pretty happy about going .", "storylet_id": "220574"}], [{"original_text": "The accident really damaged the front of the car.", "album_id": "72157600864119133", "photo_flickr_id": "833936354", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "44115", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the accident really damaged the front of the car .", "storylet_id": "220575"}], [{"original_text": "The license plate fell off of one car and the other car's fender was dented.", "album_id": "72157600864119133", "photo_flickr_id": "833898656", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "44115", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the license plate fell off of one car and the other car 's fender was dented .", "storylet_id": "220576"}], [{"original_text": "We all stood outside to exchange insurance information.", "album_id": "72157600864119133", "photo_flickr_id": "833009465", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "44115", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all stood outside to exchange insurance information .", "storylet_id": "220577"}], [{"original_text": "We decided to take a picture of the accident for insurance purposes.", "album_id": "72157600864119133", "photo_flickr_id": "832977441", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "44115", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we decided to take a picture of the accident for insurance purposes .", "storylet_id": "220578"}], [{"original_text": "Two police officers came by and asked us questions about the accident.", "album_id": "72157600864119133", "photo_flickr_id": "832963427", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "44115", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "two police officers came by and asked us questions about the accident .", "storylet_id": "220579"}], [{"original_text": "This is my car.", "album_id": "72157600864119133", "photo_flickr_id": "833828964", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44116", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my car .", "storylet_id": "220580"}], [{"original_text": "It was in an accident.", "album_id": "72157600864119133", "photo_flickr_id": "833936354", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44116", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was in an accident .", "storylet_id": "220581"}], [{"original_text": "I was not happy.", "album_id": "72157600864119133", "photo_flickr_id": "833930230", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44116", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was not happy .", "storylet_id": "220582"}], [{"original_text": "My car was messed up.", "album_id": "72157600864119133", "photo_flickr_id": "833058063", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44116", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my car was messed up .", "storylet_id": "220583"}], [{"original_text": "It was going to be expensive.", "album_id": "72157600864119133", "photo_flickr_id": "833052813", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44116", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was going to be expensive .", "storylet_id": "220584"}], [{"original_text": "Multiple cars were damaged in the accident by the same pole.", "album_id": "72157600864119133", "photo_flickr_id": "833936354", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44117", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "multiple cars were damaged in the accident by the same pole .", "storylet_id": "220585"}], [{"original_text": "The Honda appears to have been hit by a Chevy making a left hand turn.", "album_id": "72157600864119133", "photo_flickr_id": "833898656", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44117", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the organization appears to have been hit by a organization making a left hand turn .", "storylet_id": "220586"}], [{"original_text": "Witnesses and drivers surrounded the area to tell their stories.", "album_id": "72157600864119133", "photo_flickr_id": "833009465", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44117", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "witnesses and drivers surrounded the area to tell their stories .", "storylet_id": "220587"}], [{"original_text": "The Honda seemed to sustain the most damage.", "album_id": "72157600864119133", "photo_flickr_id": "832977441", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44117", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the organization seemed to sustain the most damage .", "storylet_id": "220588"}], [{"original_text": "Fortunately the police arrived to take the report in a timely manner.", "album_id": "72157600864119133", "photo_flickr_id": "832963427", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44117", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fortunately the police arrived to take the report in a timely manner .", "storylet_id": "220589"}], [{"original_text": "There was a big accident on the corner of the street.", "album_id": "72157600864119133", "photo_flickr_id": "833936354", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44118", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a big accident on the corner of the street .", "storylet_id": "220590"}], [{"original_text": "The cars were all bent out of shape from the impact.", "album_id": "72157600864119133", "photo_flickr_id": "833898656", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44118", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cars were all bent out of shape from the impact .", "storylet_id": "220591"}], [{"original_text": "The surrounding neighbors came out of their house to try and help with the situation,", "album_id": "72157600864119133", "photo_flickr_id": "833009465", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44118", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the surrounding neighbors came out of their house to try and help with the situation ,", "storylet_id": "220592"}], [{"original_text": "but there was little they could do to help the cars.", "album_id": "72157600864119133", "photo_flickr_id": "832977441", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44118", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but there was little they could do to help the cars .", "storylet_id": "220593"}], [{"original_text": "Someone then called the cops who then rushed to the scene to offer assistance. ", "album_id": "72157600864119133", "photo_flickr_id": "832963427", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44118", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someone then called the cops who then rushed to the scene to offer assistance .", "storylet_id": "220594"}], [{"original_text": "so many crazies on the road today.", "album_id": "72157600864119133", "photo_flickr_id": "833936354", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44119", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so many crazies on the road today .", "storylet_id": "220595"}], [{"original_text": "i saw someone just lose control of their suv on the street.", "album_id": "72157600864119133", "photo_flickr_id": "833898656", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44119", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw someone just lose control of their suv on the street .", "storylet_id": "220596"}], [{"original_text": "they crashed into a light pole, and into another car.", "album_id": "72157600864119133", "photo_flickr_id": "833009465", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44119", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they crashed into a light pole , and into another car .", "storylet_id": "220597"}], [{"original_text": "the damage was minimal, but still what is going on with people on the road.", "album_id": "72157600864119133", "photo_flickr_id": "832977441", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44119", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the damage was minimal , but still what is going on with people on the road .", "storylet_id": "220598"}], [{"original_text": "when the cops showed up to asses the damage it was the end of it all. everything got moved out of the way.", "album_id": "72157600864119133", "photo_flickr_id": "832963427", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44119", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the cops showed up to asses the damage it was the end of it all . everything got moved out of the way .", "storylet_id": "220599"}], [{"original_text": "It is a rainy and miserable day. The car begins to operate slowly.", "album_id": "72157603340612894", "photo_flickr_id": "2077570532", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "44120", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is a rainy and miserable day . the car begins to operate slowly .", "storylet_id": "220600"}], [{"original_text": "We pull over to investigate. This is not good.", "album_id": "72157603340612894", "photo_flickr_id": "2077570536", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "44120", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we pull over to investigate . this is not good .", "storylet_id": "220601"}], [{"original_text": "It appears that there was a collision. Lots of things are on the front of the car.", "album_id": "72157603340612894", "photo_flickr_id": "2077570540", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "44120", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it appears that there was a collision . lots of things are on the front of the car .", "storylet_id": "220602"}], [{"original_text": "The tire looks bad. We must have hit something big.", "album_id": "72157603340612894", "photo_flickr_id": "2077570548", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "44120", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the tire looks bad . we must have hit something big .", "storylet_id": "220603"}], [{"original_text": "The tire seems like it is deflated. This day is not very fun.", "album_id": "72157603340612894", "photo_flickr_id": "2076790431", "setting": "first-2-pick-and-tell", "worker_id": "X0RHZBZ70VFVPY6", "story_id": "44120", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the tire seems like it is deflated . this day is not very fun .", "storylet_id": "220604"}], [{"original_text": "Today is the first day that I'm driving since the accident.", "album_id": "72157603340612894", "photo_flickr_id": "2077570536", "setting": "first-2-pick-and-tell", "worker_id": "KZ1YOH5ACKIV3I6", "story_id": "44121", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today is the first day that i 'm driving since the accident .", "storylet_id": "220605"}], [{"original_text": "It was a rainy day just like this. My therapist said the only way to get through is to confront my fears.", "album_id": "72157603340612894", "photo_flickr_id": "2077570532", "setting": "first-2-pick-and-tell", "worker_id": "KZ1YOH5ACKIV3I6", "story_id": "44121", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a rainy day just like this . my therapist said the only way to get through is to confront my fears .", "storylet_id": "220606"}], [{"original_text": "It wasn't before long I swerved into a rock that was on the road.", "album_id": "72157603340612894", "photo_flickr_id": "2077570548", "setting": "first-2-pick-and-tell", "worker_id": "KZ1YOH5ACKIV3I6", "story_id": "44121", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was n't before long i swerved into a rock that was on the road .", "storylet_id": "220607"}], [{"original_text": "The rock gave me a flat and I had to call it in.", "album_id": "72157603340612894", "photo_flickr_id": "2077570554", "setting": "first-2-pick-and-tell", "worker_id": "KZ1YOH5ACKIV3I6", "story_id": "44121", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rock gave me a flat and i had to call it in .", "storylet_id": "220608"}], [{"original_text": "The rain makes it dangerous for any driver, my journey put me at ease.", "album_id": "72157603340612894", "photo_flickr_id": "2076790441", "setting": "first-2-pick-and-tell", "worker_id": "KZ1YOH5ACKIV3I6", "story_id": "44121", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the rain makes it dangerous for any driver , my journey put me at ease .", "storylet_id": "220609"}], [{"original_text": "our road trip was so nice.", "album_id": "72157603340612894", "photo_flickr_id": "2077570532", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44122", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our road trip was so nice .", "storylet_id": "220610"}], [{"original_text": "we had one complication though.", "album_id": "72157603340612894", "photo_flickr_id": "2077570536", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44122", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had one complication though .", "storylet_id": "220611"}], [{"original_text": "our car started shaking and rattling. ", "album_id": "72157603340612894", "photo_flickr_id": "2077570540", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44122", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our car started shaking and rattling .", "storylet_id": "220612"}], [{"original_text": "we had a flat because this giant thing got stuck between the car and the tire.", "album_id": "72157603340612894", "photo_flickr_id": "2077570548", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44122", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a flat because this giant thing got stuck between the car and the tire .", "storylet_id": "220613"}], [{"original_text": "there was no damage to the car, but the ground was we. it was unpleasant to say the least to change the tire.", "album_id": "72157603340612894", "photo_flickr_id": "2076790431", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44122", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was no damage to the car , but the ground was we . it was unpleasant to say the least to change the tire .", "storylet_id": "220614"}], [{"original_text": "He knew he shouldn't have been texting and driving. ", "album_id": "72157603340612894", "photo_flickr_id": "2077570532", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44123", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he knew he should n't have been texting and driving .", "storylet_id": "220615"}], [{"original_text": "He felt something hit the car so he pulled over and stopped. ", "album_id": "72157603340612894", "photo_flickr_id": "2077570536", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44123", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he felt something hit the car so he pulled over and stopped .", "storylet_id": "220616"}], [{"original_text": "When he checked the damage he thought it must have been an animal. ", "album_id": "72157603340612894", "photo_flickr_id": "2077570540", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44123", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when he checked the damage he thought it must have been an animal .", "storylet_id": "220617"}], [{"original_text": "The tire rim was covered in debris. ", "album_id": "72157603340612894", "photo_flickr_id": "2077570548", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44123", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the tire rim was covered in debris .", "storylet_id": "220618"}], [{"original_text": "Soon the tire was completely flat. ", "album_id": "72157603340612894", "photo_flickr_id": "2076790431", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44123", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "soon the tire was completely flat .", "storylet_id": "220619"}], [{"original_text": "The new car could not look any better.", "album_id": "72157603340612894", "photo_flickr_id": "2077570536", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44124", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the new car could not look any better .", "storylet_id": "220620"}], [{"original_text": "A view from the drivers seat made me want to buy it.", "album_id": "72157603340612894", "photo_flickr_id": "2077570532", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44124", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a view from the drivers seat made me want to buy it .", "storylet_id": "220621"}], [{"original_text": "The tires handle mud really well.", "album_id": "72157603340612894", "photo_flickr_id": "2077570548", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44124", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tires handle mud really well .", "storylet_id": "220622"}], [{"original_text": "A couple of off-road trips later, I realized this is the perfect car for me. ", "album_id": "72157603340612894", "photo_flickr_id": "2077570554", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44124", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a couple of off-road trips later , i realized this is the perfect car for me .", "storylet_id": "220623"}], [{"original_text": "The rest of the land will be driven by me later. ", "album_id": "72157603340612894", "photo_flickr_id": "2076790441", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44124", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the rest of the land will be driven by me later .", "storylet_id": "220624"}], [{"original_text": "This bus hit the back of the car this afternoon.", "album_id": "72157603372039550", "photo_flickr_id": "2086199701", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44125", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this bus hit the back of the car this afternoon .", "storylet_id": "220625"}], [{"original_text": "The police had to give the driver a ticket.", "album_id": "72157603372039550", "photo_flickr_id": "2086984552", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44125", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the police had to give the driver a ticket .", "storylet_id": "220626"}], [{"original_text": "It doesn't look like a lot of damage.", "album_id": "72157603372039550", "photo_flickr_id": "2086199839", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44125", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it does n't look like a lot of damage .", "storylet_id": "220627"}], [{"original_text": "The bumper is going to have to be replaced.", "album_id": "72157603372039550", "photo_flickr_id": "2086178527", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44125", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bumper is going to have to be replaced .", "storylet_id": "220628"}], [{"original_text": "We had to take some things out because it's not drive-able right now.", "album_id": "72157603372039550", "photo_flickr_id": "2086181665", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "44125", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had to take some things out because it 's not drive-able right now .", "storylet_id": "220629"}], [{"original_text": "This is a bus.", "album_id": "72157603372039550", "photo_flickr_id": "2086199701", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44126", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a bus .", "storylet_id": "220630"}], [{"original_text": "It was in an accident.", "album_id": "72157603372039550", "photo_flickr_id": "2086984552", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44126", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was in an accident .", "storylet_id": "220631"}], [{"original_text": "With my car!", "album_id": "72157603372039550", "photo_flickr_id": "2086199839", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44126", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "with my car !", "storylet_id": "220632"}], [{"original_text": "I was not happy.", "album_id": "72157603372039550", "photo_flickr_id": "2086984700", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44126", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was not happy .", "storylet_id": "220633"}], [{"original_text": "It was going to get expensive.", "album_id": "72157603372039550", "photo_flickr_id": "2086199975", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44126", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was going to get expensive .", "storylet_id": "220634"}], [{"original_text": "The school bus was involved in a minor accident today.", "album_id": "72157603372039550", "photo_flickr_id": "2086199701", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44127", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the school bus was involved in a minor accident today .", "storylet_id": "220635"}], [{"original_text": "Police officers were quick to respond.", "album_id": "72157603372039550", "photo_flickr_id": "2086984552", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44127", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "police officers were quick to respond .", "storylet_id": "220636"}], [{"original_text": "The bus hit a station wagon from behind.", "album_id": "72157603372039550", "photo_flickr_id": "2086199839", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44127", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bus hit a station wagon from behind .", "storylet_id": "220637"}], [{"original_text": "The rear bumper was damaged.", "album_id": "72157603372039550", "photo_flickr_id": "2086178527", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44127", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the rear bumper was damaged .", "storylet_id": "220638"}], [{"original_text": "Fortunately the hatch door of the vehicle was still operational.", "album_id": "72157603372039550", "photo_flickr_id": "2086181665", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44127", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fortunately the hatch door of the vehicle was still operational .", "storylet_id": "220639"}], [{"original_text": "A school bus drove by my broken car today.", "album_id": "72157603372039550", "photo_flickr_id": "2086199701", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44128", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a school bus drove by my broken car today .", "storylet_id": "220640"}], [{"original_text": "A police car pulled the bus over because I told it to.", "album_id": "72157603372039550", "photo_flickr_id": "2086984552", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44128", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a police car pulled the bus over because i told it to .", "storylet_id": "220641"}], [{"original_text": "My van cannot drive anymore because a lunatic hit my car.", "album_id": "72157603372039550", "photo_flickr_id": "2086199839", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44128", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my van can not drive anymore because a lunatic hit my car .", "storylet_id": "220642"}], [{"original_text": "This damage will cost me an entire paycheck.", "album_id": "72157603372039550", "photo_flickr_id": "2086178527", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44128", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this damage will cost me an entire paycheck .", "storylet_id": "220643"}], [{"original_text": "At least I can still use the trunk to sit in. ", "album_id": "72157603372039550", "photo_flickr_id": "2086181665", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44128", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at least i can still use the trunk to sit in .", "storylet_id": "220644"}], [{"original_text": "It was the first time the children had ever ridden the bus to school. ", "album_id": "72157603372039550", "photo_flickr_id": "2086199701", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44129", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the first time the children had ever ridden the bus to school .", "storylet_id": "220645"}], [{"original_text": "Their mother waved at them as the bus pulled off. ", "album_id": "72157603372039550", "photo_flickr_id": "2086984552", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44129", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their mother waved at them as the bus pulled off .", "storylet_id": "220646"}], [{"original_text": "She had backed into another car the day before. ", "album_id": "72157603372039550", "photo_flickr_id": "2086199839", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44129", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she had backed into another car the day before .", "storylet_id": "220647"}], [{"original_text": "Her husband was not pleased when he saw the damage. ", "album_id": "72157603372039550", "photo_flickr_id": "2086178527", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44129", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her husband was not pleased when he saw the damage .", "storylet_id": "220648"}], [{"original_text": "She had to get the soccer equipment out the back and get to the practice that afternoon. ", "album_id": "72157603372039550", "photo_flickr_id": "2086181665", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44129", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she had to get the soccer equipment out the back and get to the practice that afternoon .", "storylet_id": "220649"}], [{"original_text": "A neighborhood was enjoying a street festival full of activities. ", "album_id": "72157602034452349", "photo_flickr_id": "1388146299", "setting": "first-2-pick-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44130", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a neighborhood was enjoying a street festival full of activities .", "storylet_id": "220650"}], [{"original_text": "There were several games, like a ball throw. ", "album_id": "72157602034452349", "photo_flickr_id": "1389042588", "setting": "first-2-pick-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44130", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were several games , like a ball throw .", "storylet_id": "220651"}], [{"original_text": "There was also a photo tent. ", "album_id": "72157602034452349", "photo_flickr_id": "1388145095", "setting": "first-2-pick-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44130", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was also a photo tent .", "storylet_id": "220652"}], [{"original_text": "Kids were playing video games at one booth. ", "album_id": "72157602034452349", "photo_flickr_id": "1389040280", "setting": "first-2-pick-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44130", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "kids were playing video games at one booth .", "storylet_id": "220653"}], [{"original_text": "At another booth, children had their face painted. ", "album_id": "72157602034452349", "photo_flickr_id": "1389040144", "setting": "first-2-pick-and-tell", "worker_id": "45X0GEM9W4UYEMQ", "story_id": "44130", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at another booth , children had their face painted .", "storylet_id": "220654"}], [{"original_text": "There was an event right outside my house.", "album_id": "72157602034452349", "photo_flickr_id": "1389043736", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44131", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an event right outside my house .", "storylet_id": "220655"}], [{"original_text": "Verizon Wireless was installing FiOS in my area!", "album_id": "72157602034452349", "photo_flickr_id": "1389043244", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44131", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "organization organization was installing fios in my area !", "storylet_id": "220656"}], [{"original_text": "I was so excited.", "album_id": "72157602034452349", "photo_flickr_id": "1389043376", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44131", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was so excited .", "storylet_id": "220657"}], [{"original_text": "I wanted the fastest internet.", "album_id": "72157602034452349", "photo_flickr_id": "1388146299", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44131", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i wanted the fastest internet .", "storylet_id": "220658"}], [{"original_text": "I signed all the paperwork.", "album_id": "72157602034452349", "photo_flickr_id": "1388145903", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44131", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i signed all the paperwork .", "storylet_id": "220659"}], [{"original_text": "Tons of people showed up to watch Verizon film a commercial in our neighborhood.", "album_id": "72157602034452349", "photo_flickr_id": "1389043736", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "44132", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "tons of people showed up to watch organization film a commercial in our neighborhood .", "storylet_id": "220660"}], [{"original_text": "There were screens and flags and banners with the Verizon logo", "album_id": "72157602034452349", "photo_flickr_id": "1389043244", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "44132", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were screens and flags and banners with the organization logo", "storylet_id": "220661"}], [{"original_text": "A bus was on hand for the crew.", "album_id": "72157602034452349", "photo_flickr_id": "1389043376", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "44132", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a bus was on hand for the crew .", "storylet_id": "220662"}], [{"original_text": "The crew brought lots of food and drink to the set.", "album_id": "72157602034452349", "photo_flickr_id": "1388146299", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "44132", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crew brought lots of food and drink to the set .", "storylet_id": "220663"}], [{"original_text": "All this happened back in 2007, but we still remember that day.", "album_id": "72157602034452349", "photo_flickr_id": "1388145903", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "44132", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all this happened back in 2007 , but we still remember that day .", "storylet_id": "220664"}], [{"original_text": "At the sports day a lot of people brought coolers and stuff.", "album_id": "72157602034452349", "photo_flickr_id": "1388146299", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44133", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "at the sports day a lot of people brought coolers and stuff .", "storylet_id": "220665"}], [{"original_text": "I noticed this guy had a cute butt.", "album_id": "72157602034452349", "photo_flickr_id": "1389042588", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44133", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i noticed this guy had a cute butt .", "storylet_id": "220666"}], [{"original_text": "There was also a Verizon tent there but it wasn't much fun.", "album_id": "72157602034452349", "photo_flickr_id": "1388145095", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44133", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was also a organization tent there but it was n't much fun .", "storylet_id": "220667"}], [{"original_text": "And I passed this Guitar Hero duel with two cuties playing.", "album_id": "72157602034452349", "photo_flickr_id": "1389040280", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44133", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and i passed this guitar hero duel with two cuties playing .", "storylet_id": "220668"}], [{"original_text": "Aunt Elizabeth painted kids faces there.", "album_id": "72157602034452349", "photo_flickr_id": "1389040144", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44133", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "aunt [female] painted kids faces there .", "storylet_id": "220669"}], [{"original_text": "People gathered under the umbrellas with food and coolers.", "album_id": "72157602034452349", "photo_flickr_id": "1388146299", "setting": "last-3-pick-old-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "44134", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people gathered under the umbrellas with food and coolers .", "storylet_id": "220670"}], [{"original_text": "A few men participated in the sports challenge game. ", "album_id": "72157602034452349", "photo_flickr_id": "1389042588", "setting": "last-3-pick-old-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "44134", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a few men participated in the sports challenge game .", "storylet_id": "220671"}], [{"original_text": "A camera man was filming a family under the Verizon FiOS tent. ", "album_id": "72157602034452349", "photo_flickr_id": "1388145095", "setting": "last-3-pick-old-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "44134", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a camera man was filming a family under the organization fios tent .", "storylet_id": "220672"}], [{"original_text": "Two guys played a guitar game under the tent.", "album_id": "72157602034452349", "photo_flickr_id": "1389040280", "setting": "last-3-pick-old-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "44134", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two guys played a guitar game under the tent .", "storylet_id": "220673"}], [{"original_text": "The girl got her face painted by a clown.", "album_id": "72157602034452349", "photo_flickr_id": "1389040144", "setting": "last-3-pick-old-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "44134", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girl got her face painted by a clown .", "storylet_id": "220674"}], [{"original_text": "I love to take tours and the new and up coming cars", "album_id": "72157604402356983", "photo_flickr_id": "2389864341", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "44135", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love to take tours and the new and up coming cars", "storylet_id": "220675"}], [{"original_text": "there are so many that are nice", "album_id": "72157604402356983", "photo_flickr_id": "2390719364", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "44135", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are so many that are nice", "storylet_id": "220676"}], [{"original_text": "the insides are pretty", "album_id": "72157604402356983", "photo_flickr_id": "2390721766", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "44135", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the insides are pretty", "storylet_id": "220677"}], [{"original_text": "they also have little small cars", "album_id": "72157604402356983", "photo_flickr_id": "2390730722", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "44135", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also have little small cars", "storylet_id": "220678"}], [{"original_text": "I love to go because of the drinks.", "album_id": "72157604402356983", "photo_flickr_id": "2389988591", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "44135", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love to go because of the drinks .", "storylet_id": "220679"}], [{"original_text": "we went to the world of wheels car show", "album_id": "72157604402356983", "photo_flickr_id": "2389864341", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44136", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the world of wheels car show", "storylet_id": "220680"}], [{"original_text": "we got to see new innovated automobiles", "album_id": "72157604402356983", "photo_flickr_id": "2390700546", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44136", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to see new innovated automobiles", "storylet_id": "220681"}], [{"original_text": "Audi was showing their future car for 2019", "album_id": "72157604402356983", "photo_flickr_id": "2389870549", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44136", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "organization was showing their future car for 2019", "storylet_id": "220682"}], [{"original_text": "we had a blast and hope to go again soon", "album_id": "72157604402356983", "photo_flickr_id": "2389873893", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44136", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a blast and hope to go again soon", "storylet_id": "220683"}], [{"original_text": "who knows maybe i will own this some day", "album_id": "72157604402356983", "photo_flickr_id": "2390709404", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44136", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "who knows maybe i will own this some day", "storylet_id": "220684"}], [{"original_text": "It's time to go shopping for a new car!", "album_id": "72157604402356983", "photo_flickr_id": "2389864341", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "44137", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's time to go shopping for a new car !", "storylet_id": "220685"}], [{"original_text": "There are so many choices. I don't know how I'll ever decide.", "album_id": "72157604402356983", "photo_flickr_id": "2390700546", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "44137", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are so many choices . i do n't know how i 'll ever decide .", "storylet_id": "220686"}], [{"original_text": "I want something small, like this silver one.", "album_id": "72157604402356983", "photo_flickr_id": "2389870549", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "44137", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i want something small , like this silver one .", "storylet_id": "220687"}], [{"original_text": "I spent a lot of time at various dealers, browsing and thinking it over.", "album_id": "72157604402356983", "photo_flickr_id": "2389873893", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "44137", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i spent a lot of time at various dealers , browsing and thinking it over .", "storylet_id": "220688"}], [{"original_text": "In the end, I found one that I think will be perfect!", "album_id": "72157604402356983", "photo_flickr_id": "2390709404", "setting": "last-3-pick-old-and-tell", "worker_id": "DEYCSYSFOZ719UA", "story_id": "44137", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , i found one that i think will be perfect !", "storylet_id": "220689"}], [{"original_text": "First stop at the car show... Honda!", "album_id": "72157604402356983", "photo_flickr_id": "2389864341", "setting": "last-3-pick-old-and-tell", "worker_id": "MBHWP16YLX1QGM5", "story_id": "44138", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "first stop at the car show ... organization !", "storylet_id": "220690"}], [{"original_text": "The red car really caught my eye, so shiny I had to see it up close.", "album_id": "72157604402356983", "photo_flickr_id": "2390719364", "setting": "last-3-pick-old-and-tell", "worker_id": "MBHWP16YLX1QGM5", "story_id": "44138", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the red car really caught my eye , so shiny i had to see it up close .", "storylet_id": "220691"}], [{"original_text": "Just as I thought, the inside was sleek!", "album_id": "72157604402356983", "photo_flickr_id": "2390721766", "setting": "last-3-pick-old-and-tell", "worker_id": "MBHWP16YLX1QGM5", "story_id": "44138", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "just as i thought , the inside was sleek !", "storylet_id": "220692"}], [{"original_text": "The smart cars had all the best features, in a small package.", "album_id": "72157604402356983", "photo_flickr_id": "2390730722", "setting": "last-3-pick-old-and-tell", "worker_id": "MBHWP16YLX1QGM5", "story_id": "44138", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the smart cars had all the best features , in a small package .", "storylet_id": "220693"}], [{"original_text": "After an amazing evening of seeing all the cars, it was time for drinks! ", "album_id": "72157604402356983", "photo_flickr_id": "2389988591", "setting": "last-3-pick-old-and-tell", "worker_id": "MBHWP16YLX1QGM5", "story_id": "44138", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after an amazing evening of seeing all the cars , it was time for drinks !", "storylet_id": "220694"}], [{"original_text": "We went to the car show.", "album_id": "72157604402356983", "photo_flickr_id": "2389864341", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44139", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the car show .", "storylet_id": "220695"}], [{"original_text": "First we found a red car.", "album_id": "72157604402356983", "photo_flickr_id": "2390719364", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44139", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we found a red car .", "storylet_id": "220696"}], [{"original_text": "Then we sat inside a car with a white interior.", "album_id": "72157604402356983", "photo_flickr_id": "2390721766", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44139", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we sat inside a car with a white interior .", "storylet_id": "220697"}], [{"original_text": "We also got to see a mini-car.", "album_id": "72157604402356983", "photo_flickr_id": "2390730722", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44139", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also got to see a mini-car .", "storylet_id": "220698"}], [{"original_text": "After that we stopped to have a few drinks.", "album_id": "72157604402356983", "photo_flickr_id": "2389988591", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44139", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that we stopped to have a few drinks .", "storylet_id": "220699"}], [{"original_text": "I'm thinking about selling my car. ", "album_id": "72057594059979766", "photo_flickr_id": "96131394", "setting": "first-2-pick-and-tell", "worker_id": "U2GKCYPK7EM4TF8", "story_id": "44140", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 'm thinking about selling my car .", "storylet_id": "220700"}], [{"original_text": "With some of this damage, I wonder what I can get for the car. ", "album_id": "72057594059979766", "photo_flickr_id": "96131395", "setting": "first-2-pick-and-tell", "worker_id": "U2GKCYPK7EM4TF8", "story_id": "44140", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "with some of this damage , i wonder what i can get for the car .", "storylet_id": "220701"}], [{"original_text": "I hadn't realized this runner was lifted. ", "album_id": "72057594059979766", "photo_flickr_id": "96131402", "setting": "first-2-pick-and-tell", "worker_id": "U2GKCYPK7EM4TF8", "story_id": "44140", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had n't realized this runner was lifted .", "storylet_id": "220702"}], [{"original_text": "and I knew about his damage, but I think it got dinged more in the parking lot. ", "album_id": "72057594059979766", "photo_flickr_id": "96135271", "setting": "first-2-pick-and-tell", "worker_id": "U2GKCYPK7EM4TF8", "story_id": "44140", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and i knew about his damage , but i think it got dinged more in the parking lot .", "storylet_id": "220703"}], [{"original_text": "How did I bend the exhaust pipe? I cannot recall this happening. I still wonder what I can sell it for ...", "album_id": "72057594059979766", "photo_flickr_id": "96136295", "setting": "first-2-pick-and-tell", "worker_id": "U2GKCYPK7EM4TF8", "story_id": "44140", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "how did i bend the exhaust pipe ? i can not recall this happening . i still wonder what i can sell it for ...", "storylet_id": "220704"}], [{"original_text": "The insurance adjuster came by today to check on the damage to our vehicle.", "album_id": "72057594059979766", "photo_flickr_id": "96131394", "setting": "first-2-pick-and-tell", "worker_id": "8OU0ARD6MW4KQ8P", "story_id": "44141", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the insurance adjuster came by today to check on the damage to our vehicle .", "storylet_id": "220705"}], [{"original_text": "He took several pictures of the damage caused by the teenager texting while driving that rear ended us.", "album_id": "72057594059979766", "photo_flickr_id": "96131396", "setting": "first-2-pick-and-tell", "worker_id": "8OU0ARD6MW4KQ8P", "story_id": "44141", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he took several pictures of the damage caused by the teenager texting while driving that rear ended us .", "storylet_id": "220706"}], [{"original_text": "At first the damage did not seem extensive, but as these pictures show it goes beyond scratches to denting the exhaust pipe.", "album_id": "72057594059979766", "photo_flickr_id": "96132501", "setting": "first-2-pick-and-tell", "worker_id": "8OU0ARD6MW4KQ8P", "story_id": "44141", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at first the damage did not seem extensive , but as these pictures show it goes beyond scratches to denting the exhaust pipe .", "storylet_id": "220707"}], [{"original_text": "It also caused a crack on our lower bumper that will require the removal and replacement of the back bumper.", "album_id": "72057594059979766", "photo_flickr_id": "96136294", "setting": "first-2-pick-and-tell", "worker_id": "8OU0ARD6MW4KQ8P", "story_id": "44141", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it also caused a crack on our lower bumper that will require the removal and replacement of the back bumper .", "storylet_id": "220708"}], [{"original_text": "The upper bumper photo reflects the scratches we originally thought were the only damages.", "album_id": "72057594059979766", "photo_flickr_id": "96136296", "setting": "first-2-pick-and-tell", "worker_id": "8OU0ARD6MW4KQ8P", "story_id": "44141", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the upper bumper photo reflects the scratches we originally thought were the only damages .", "storylet_id": "220709"}], [{"original_text": "This Toyota Pilot must have been backed into something.", "album_id": "72057594059979766", "photo_flickr_id": "96131394", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "44142", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this organization pilot must have been backed into something .", "storylet_id": "220710"}], [{"original_text": "You can see dents and scratched around the fender.", "album_id": "72057594059979766", "photo_flickr_id": "96131395", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "44142", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you can see dents and scratched around the fender .", "storylet_id": "220711"}], [{"original_text": "There are further scrapes on the body of the car.", "album_id": "72057594059979766", "photo_flickr_id": "96131402", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "44142", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are further scrapes on the body of the car .", "storylet_id": "220712"}], [{"original_text": "This panel will need to be painted to eliminate the scratches and damage.", "album_id": "72057594059979766", "photo_flickr_id": "96135271", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "44142", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this panel will need to be painted to eliminate the scratches and damage .", "storylet_id": "220713"}], [{"original_text": "Even the tailpipe was crushed in the accident.", "album_id": "72057594059979766", "photo_flickr_id": "96136295", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "44142", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the tailpipe was crushed in the accident .", "storylet_id": "220714"}], [{"original_text": "Last week I got into a car accident.", "album_id": "72057594059979766", "photo_flickr_id": "96131394", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44143", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last week i got into a car accident .", "storylet_id": "220715"}], [{"original_text": "I was waiting at a light and then somebody hit me from behind.", "album_id": "72057594059979766", "photo_flickr_id": "96131395", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44143", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was waiting at a light and then somebody hit me from behind .", "storylet_id": "220716"}], [{"original_text": "There was only a little damage.", "album_id": "72057594059979766", "photo_flickr_id": "96131402", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44143", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was only a little damage .", "storylet_id": "220717"}], [{"original_text": "I took a lot of pictures.", "album_id": "72057594059979766", "photo_flickr_id": "96135271", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44143", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i took a lot of pictures .", "storylet_id": "220718"}], [{"original_text": "We exchanged information and then drove on our way.", "album_id": "72057594059979766", "photo_flickr_id": "96136295", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44143", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we exchanged information and then drove on our way .", "storylet_id": "220719"}], [{"original_text": "You can see the damage to the rear hatch of the vehicle. ", "album_id": "72057594059979766", "photo_flickr_id": "96131394", "setting": "last-3-pick-old-and-tell", "worker_id": "Z80K9UVMPP56ZHK", "story_id": "44144", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "you can see the damage to the rear hatch of the vehicle .", "storylet_id": "220720"}], [{"original_text": "This is a picture of the damage to one of the muffler pipes. ", "album_id": "72057594059979766", "photo_flickr_id": "96131395", "setting": "last-3-pick-old-and-tell", "worker_id": "Z80K9UVMPP56ZHK", "story_id": "44144", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of the damage to one of the muffler pipes .", "storylet_id": "220721"}], [{"original_text": "The molding on the bumper is separating from the bumper. ", "album_id": "72057594059979766", "photo_flickr_id": "96131402", "setting": "last-3-pick-old-and-tell", "worker_id": "Z80K9UVMPP56ZHK", "story_id": "44144", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the molding on the bumper is separating from the bumper .", "storylet_id": "220722"}], [{"original_text": "There are multiple scratches on the tailgate. ", "album_id": "72057594059979766", "photo_flickr_id": "96135271", "setting": "last-3-pick-old-and-tell", "worker_id": "Z80K9UVMPP56ZHK", "story_id": "44144", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are multiple scratches on the tailgate .", "storylet_id": "220723"}], [{"original_text": "This is a close-up picture of the damage to the tail pipe. ", "album_id": "72057594059979766", "photo_flickr_id": "96136295", "setting": "last-3-pick-old-and-tell", "worker_id": "Z80K9UVMPP56ZHK", "story_id": "44144", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a close-up picture of the damage to the tail pipe .", "storylet_id": "220724"}], [{"original_text": "We went to a car show with a lot of old ambulance trucks.", "album_id": "72157627438102718", "photo_flickr_id": "5331177871", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "44145", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a car show with a lot of old ambulance trucks .", "storylet_id": "220725"}], [{"original_text": "They where all restored pretty well.", "album_id": "72157627438102718", "photo_flickr_id": "5331784946", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "44145", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they where all restored pretty well .", "storylet_id": "220726"}], [{"original_text": "All of them had new logos and designs.", "album_id": "72157627438102718", "photo_flickr_id": "5331798456", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "44145", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of them had new logos and designs .", "storylet_id": "220727"}], [{"original_text": "They where all very well done.", "album_id": "72157627438102718", "photo_flickr_id": "5331176751", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "44145", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they where all very well done .", "storylet_id": "220728"}], [{"original_text": "Many of them where quite classic.", "album_id": "72157627438102718", "photo_flickr_id": "5331801646", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "44145", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many of them where quite classic .", "storylet_id": "220729"}], [{"original_text": "The local auto museum put on a show about ambulances. ", "album_id": "72157627438102718", "photo_flickr_id": "5331177871", "setting": "first-2-pick-and-tell", "worker_id": "320L9WS0RY3TPQI", "story_id": "44146", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the local auto museum put on a show about ambulances .", "storylet_id": "220730"}], [{"original_text": "They had some of the modes open to see inside.", "album_id": "72157627438102718", "photo_flickr_id": "5331183747", "setting": "first-2-pick-and-tell", "worker_id": "320L9WS0RY3TPQI", "story_id": "44146", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had some of the modes open to see inside .", "storylet_id": "220731"}], [{"original_text": "There were models that didn't look like ambulances at first glance.", "album_id": "72157627438102718", "photo_flickr_id": "5331185853", "setting": "first-2-pick-and-tell", "worker_id": "320L9WS0RY3TPQI", "story_id": "44146", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were models that did n't look like ambulances at first glance .", "storylet_id": "220732"}], [{"original_text": "It was interesting to see the past ambulance logos.", "album_id": "72157627438102718", "photo_flickr_id": "5331798456", "setting": "first-2-pick-and-tell", "worker_id": "320L9WS0RY3TPQI", "story_id": "44146", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was interesting to see the past ambulance logos .", "storylet_id": "220733"}], [{"original_text": "Some logos were very simplistic.", "album_id": "72157627438102718", "photo_flickr_id": "5331176751", "setting": "first-2-pick-and-tell", "worker_id": "320L9WS0RY3TPQI", "story_id": "44146", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some logos were very simplistic .", "storylet_id": "220734"}], [{"original_text": "The car collector held a display of classic emergency vehicles.", "album_id": "72157627438102718", "photo_flickr_id": "5331177871", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44147", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the car collector held a display of classic emergency vehicles .", "storylet_id": "220735"}], [{"original_text": "An ambulance from the 1960s was featured prominently.", "album_id": "72157627438102718", "photo_flickr_id": "5331784946", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44147", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "an ambulance from the 1960s was featured prominently .", "storylet_id": "220736"}], [{"original_text": "The logo paint was well-maintained.", "album_id": "72157627438102718", "photo_flickr_id": "5331798456", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44147", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the logo paint was well-maintained .", "storylet_id": "220737"}], [{"original_text": "The design of the logos were simple and clean.", "album_id": "72157627438102718", "photo_flickr_id": "5331176751", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44147", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the design of the logos were simple and clean .", "storylet_id": "220738"}], [{"original_text": "The oldest vehicle there was built in the late 1940's.", "album_id": "72157627438102718", "photo_flickr_id": "5331801646", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44147", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the oldest vehicle there was built in the late 1940 's .", "storylet_id": "220739"}], [{"original_text": "I went to the musuem to see all the old ambulances they have on display.", "album_id": "72157627438102718", "photo_flickr_id": "5331177871", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "44148", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the musuem to see all the old ambulances they have on display .", "storylet_id": "220740"}], [{"original_text": "You can really see how much emergency vehicles have changed.", "album_id": "72157627438102718", "photo_flickr_id": "5331784946", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "44148", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you can really see how much emergency vehicles have changed .", "storylet_id": "220741"}], [{"original_text": "Even the logos and symbols have changed dramatically.", "album_id": "72157627438102718", "photo_flickr_id": "5331798456", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "44148", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the logos and symbols have changed dramatically .", "storylet_id": "220742"}], [{"original_text": "This is a very early example that I quite enjoyed for it's simplicity.", "album_id": "72157627438102718", "photo_flickr_id": "5331176751", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "44148", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a very early example that i quite enjoyed for it 's simplicity .", "storylet_id": "220743"}], [{"original_text": "Here was the oldest, and my most favorite, vehicle in the exhibit.", "album_id": "72157627438102718", "photo_flickr_id": "5331801646", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "44148", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here was the oldest , and my most favorite , vehicle in the exhibit .", "storylet_id": "220744"}], [{"original_text": "We went to a classic ambulance auto show. The first one looked like a limo.", "album_id": "72157627438102718", "photo_flickr_id": "5331177871", "setting": "last-3-pick-old-and-tell", "worker_id": "XR092Q8B4S9JIVP", "story_id": "44149", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a classic ambulance auto show . the first one looked like a limo .", "storylet_id": "220745"}], [{"original_text": "The next one we saw seemed a bit more modern.", "album_id": "72157627438102718", "photo_flickr_id": "5331784946", "setting": "last-3-pick-old-and-tell", "worker_id": "XR092Q8B4S9JIVP", "story_id": "44149", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the next one we saw seemed a bit more modern .", "storylet_id": "220746"}], [{"original_text": "That all had different logos.", "album_id": "72157627438102718", "photo_flickr_id": "5331798456", "setting": "last-3-pick-old-and-tell", "worker_id": "XR092Q8B4S9JIVP", "story_id": "44149", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that all had different logos .", "storylet_id": "220747"}], [{"original_text": "This was my favorite logo.", "album_id": "72157627438102718", "photo_flickr_id": "5331176751", "setting": "last-3-pick-old-and-tell", "worker_id": "XR092Q8B4S9JIVP", "story_id": "44149", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was my favorite logo .", "storylet_id": "220748"}], [{"original_text": "I like the over all look of the one the best.", "album_id": "72157627438102718", "photo_flickr_id": "5331801646", "setting": "last-3-pick-old-and-tell", "worker_id": "XR092Q8B4S9JIVP", "story_id": "44149", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i like the over all look of the one the best .", "storylet_id": "220749"}], [{"original_text": "Yesterday we had a company picnic event outdoors.", "album_id": "72157634895669438", "photo_flickr_id": "5416906900", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44150", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday we had a company picnic event outdoors .", "storylet_id": "220750"}], [{"original_text": "There were a lot of people that showed up and signed in.", "album_id": "72157634895669438", "photo_flickr_id": "5416297071", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44150", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of people that showed up and signed in .", "storylet_id": "220751"}], [{"original_text": "The reception desk was very busy.", "album_id": "72157634895669438", "photo_flickr_id": "5416910776", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44150", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the reception desk was very busy .", "storylet_id": "220752"}], [{"original_text": "The speaker delivered a speech to everybody there.", "album_id": "72157634895669438", "photo_flickr_id": "5416897582", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44150", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the speaker delivered a speech to everybody there .", "storylet_id": "220753"}], [{"original_text": "Everybody took a picture together at the end.", "album_id": "72157634895669438", "photo_flickr_id": "5416299467", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44150", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everybody took a picture together at the end .", "storylet_id": "220754"}], [{"original_text": "The ribbon cutting ceremony officially kicked off the opening of the newest facility.", "album_id": "72157634895669438", "photo_flickr_id": "5416912806", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44151", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ribbon cutting ceremony officially kicked off the opening of the newest facility .", "storylet_id": "220755"}], [{"original_text": "They honored the owner with a plaque to be displayed.", "album_id": "72157634895669438", "photo_flickr_id": "5416278769", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44151", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they honored the owner with a plaque to be displayed .", "storylet_id": "220756"}], [{"original_text": "Announcements were made as to the company's future plans.", "album_id": "72157634895669438", "photo_flickr_id": "5416897582", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44151", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "announcements were made as to the company 's future plans .", "storylet_id": "220757"}], [{"original_text": "There was a question and answer time.", "album_id": "72157634895669438", "photo_flickr_id": "5416906900", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44151", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a question and answer time .", "storylet_id": "220758"}], [{"original_text": "After the event there was a sign up for volunteers.", "album_id": "72157634895669438", "photo_flickr_id": "5416297071", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44151", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the event there was a sign up for volunteers .", "storylet_id": "220759"}], [{"original_text": "They are about to cut the ribbon.", "album_id": "72157634895669438", "photo_flickr_id": "5416912806", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "44152", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they are about to cut the ribbon .", "storylet_id": "220760"}], [{"original_text": "This is a plaque to what they are celebrating.", "album_id": "72157634895669438", "photo_flickr_id": "5416278769", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "44152", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a plaque to what they are celebrating .", "storylet_id": "220761"}], [{"original_text": "This man is the head of the department leading this event.", "album_id": "72157634895669438", "photo_flickr_id": "5416897582", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "44152", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this man is the head of the department leading this event .", "storylet_id": "220762"}], [{"original_text": "There are others who believe in this cause, and are willing to help where they can.", "album_id": "72157634895669438", "photo_flickr_id": "5416906900", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "44152", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are others who believe in this cause , and are willing to help where they can .", "storylet_id": "220763"}], [{"original_text": "People are interested and want to help with what is happening.", "album_id": "72157634895669438", "photo_flickr_id": "5416297071", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "44152", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people are interested and want to help with what is happening .", "storylet_id": "220764"}], [{"original_text": "The group gathered together to start the event.", "album_id": "72157634895669438", "photo_flickr_id": "5416906900", "setting": "last-3-pick-old-and-tell", "worker_id": "NBK9XYKKKZB0JOL", "story_id": "44153", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group gathered together to start the event .", "storylet_id": "220765"}], [{"original_text": "People lined up to the table to get registered and signed in.", "album_id": "72157634895669438", "photo_flickr_id": "5416297071", "setting": "last-3-pick-old-and-tell", "worker_id": "NBK9XYKKKZB0JOL", "story_id": "44153", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people lined up to the table to get registered and signed in .", "storylet_id": "220766"}], [{"original_text": "The group reviewed the paperwork as they stood in line.", "album_id": "72157634895669438", "photo_flickr_id": "5416910776", "setting": "last-3-pick-old-and-tell", "worker_id": "NBK9XYKKKZB0JOL", "story_id": "44153", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the group reviewed the paperwork as they stood in line .", "storylet_id": "220767"}], [{"original_text": "The director stood at the podium and spoke the agenda for the day.", "album_id": "72157634895669438", "photo_flickr_id": "5416897582", "setting": "last-3-pick-old-and-tell", "worker_id": "NBK9XYKKKZB0JOL", "story_id": "44153", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the director stood at the podium and spoke the agenda for the day .", "storylet_id": "220768"}], [{"original_text": "Everyone stood behind the red ribbon to end the ceremony.", "album_id": "72157634895669438", "photo_flickr_id": "5416299467", "setting": "last-3-pick-old-and-tell", "worker_id": "NBK9XYKKKZB0JOL", "story_id": "44153", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone stood behind the red ribbon to end the ceremony .", "storylet_id": "220769"}], [{"original_text": "The ribbon cutting ceremony was underway.", "album_id": "72157634895669438", "photo_flickr_id": "5416912806", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44154", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the ribbon cutting ceremony was underway .", "storylet_id": "220770"}], [{"original_text": "The ceremony included a dedication of a plaque.", "album_id": "72157634895669438", "photo_flickr_id": "5416278769", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44154", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the ceremony included a dedication of a plaque .", "storylet_id": "220771"}], [{"original_text": "The foreman spoke briefly about the project.", "album_id": "72157634895669438", "photo_flickr_id": "5416897582", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44154", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the foreman spoke briefly about the project .", "storylet_id": "220772"}], [{"original_text": "The organizers discussed the event.", "album_id": "72157634895669438", "photo_flickr_id": "5416906900", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44154", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the organizers discussed the event .", "storylet_id": "220773"}], [{"original_text": "After the ceremony concluded, the organizers took information and talked with attendees.", "album_id": "72157634895669438", "photo_flickr_id": "5416297071", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44154", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the ceremony concluded , the organizers took information and talked with attendees .", "storylet_id": "220774"}], [{"original_text": "It was the unveiling of a new product.", "album_id": "72157627916134333", "photo_flickr_id": "6307601553", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44155", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the unveiling of a new product .", "storylet_id": "220775"}], [{"original_text": "The celebrity sponsor was there.", "album_id": "72157627916134333", "photo_flickr_id": "6308123254", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44155", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the celebrity sponsor was there .", "storylet_id": "220776"}], [{"original_text": "And so was her partner.", "album_id": "72157627916134333", "photo_flickr_id": "6307606693", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44155", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and so was her partner .", "storylet_id": "220777"}], [{"original_text": "They gave brief speeches.", "album_id": "72157627916134333", "photo_flickr_id": "6308128054", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44155", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they gave brief speeches .", "storylet_id": "220778"}], [{"original_text": "Before signing their contracts.", "album_id": "72157627916134333", "photo_flickr_id": "6308129062", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44155", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before signing their contracts .", "storylet_id": "220779"}], [{"original_text": "The Kardashians held a big press conference to announce new purses being added under their brand. The purses are considered top of the line.", "album_id": "72157627916134333", "photo_flickr_id": "6307601553", "setting": "first-2-pick-and-tell", "worker_id": "YOJEFF9V98EGJAB", "story_id": "44156", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kardashians held a big press conference to announce new purses being added under their brand . the purses are considered top of the line .", "storylet_id": "220780"}], [{"original_text": "Kim is seen making her way to the podium table now. Lot's of photographs being taken by critics and fans alike.", "album_id": "72157627916134333", "photo_flickr_id": "6308123968", "setting": "first-2-pick-and-tell", "worker_id": "YOJEFF9V98EGJAB", "story_id": "44156", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] is seen making her way to the podium table now . lot 's of photographs being taken by critics and fans alike .", "storylet_id": "220781"}], [{"original_text": "Khole is already seated as she takes a few questions from the crowd. Everyone wants the full scoop on these purses.", "album_id": "72157627916134333", "photo_flickr_id": "6308128054", "setting": "first-2-pick-and-tell", "worker_id": "YOJEFF9V98EGJAB", "story_id": "44156", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "location is already seated as she takes a few questions from the crowd . everyone wants the full scoop on these purses .", "storylet_id": "220782"}], [{"original_text": "Kim has taken her seat as she takes her first question. The Khardashians are use to all the publicity.", "album_id": "72157627916134333", "photo_flickr_id": "6308125994", "setting": "first-2-pick-and-tell", "worker_id": "YOJEFF9V98EGJAB", "story_id": "44156", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] has taken her seat as she takes her first question . the khardashians are use to all the publicity .", "storylet_id": "220783"}], [{"original_text": "After the press conference concluded, Kim was nice enough to sign a few autographs to a few special fans.", "album_id": "72157627916134333", "photo_flickr_id": "6308129062", "setting": "first-2-pick-and-tell", "worker_id": "YOJEFF9V98EGJAB", "story_id": "44156", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the press conference concluded , [female] was nice enough to sign a few autographs to a few special fans .", "storylet_id": "220784"}], [{"original_text": "The Kardashian's proudly display their products.", "album_id": "72157627916134333", "photo_flickr_id": "6307601553", "setting": "last-3-pick-old-and-tell", "worker_id": "NBK9XYKKKZB0JOL", "story_id": "44157", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kardashian 's proudly display their products .", "storylet_id": "220785"}], [{"original_text": "Kim stands in front of her display as someone describes the products.", "album_id": "72157627916134333", "photo_flickr_id": "6308123254", "setting": "last-3-pick-old-and-tell", "worker_id": "NBK9XYKKKZB0JOL", "story_id": "44157", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] stands in front of her display as someone describes the products .", "storylet_id": "220786"}], [{"original_text": "Khloe glances at her notes to help describe the purses.", "album_id": "72157627916134333", "photo_flickr_id": "6307606693", "setting": "last-3-pick-old-and-tell", "worker_id": "NBK9XYKKKZB0JOL", "story_id": "44157", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] glances at her notes to help describe the purses .", "storylet_id": "220787"}], [{"original_text": "Khloe takes the microphone so that she may speak.", "album_id": "72157627916134333", "photo_flickr_id": "6308128054", "setting": "last-3-pick-old-and-tell", "worker_id": "NBK9XYKKKZB0JOL", "story_id": "44157", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] takes the microphone so that she may speak .", "storylet_id": "220788"}], [{"original_text": "Kim decides to take a few notes.", "album_id": "72157627916134333", "photo_flickr_id": "6308129062", "setting": "last-3-pick-old-and-tell", "worker_id": "NBK9XYKKKZB0JOL", "story_id": "44157", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] decides to take a few notes .", "storylet_id": "220789"}], [{"original_text": "The Kardashians held a press conference to promote their new line of purses.", "album_id": "72157627916134333", "photo_flickr_id": "6307601553", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44158", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization held a press conference to promote their new line of purses .", "storylet_id": "220790"}], [{"original_text": "Kim Kardashian was in attendence.", "album_id": "72157627916134333", "photo_flickr_id": "6308123968", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44158", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] kardashian was in attendence .", "storylet_id": "220791"}], [{"original_text": "Khloe answered questions from the audience.", "album_id": "72157627916134333", "photo_flickr_id": "6308128054", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44158", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] answered questions from the audience .", "storylet_id": "220792"}], [{"original_text": "Kim posed for a picture.", "album_id": "72157627916134333", "photo_flickr_id": "6308125994", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44158", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] posed for a picture .", "storylet_id": "220793"}], [{"original_text": "She also signed autographs for fans.", "album_id": "72157627916134333", "photo_flickr_id": "6308129062", "setting": "last-3-pick-old-and-tell", "worker_id": "INX8DM0QQEGPXOC", "story_id": "44158", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she also signed autographs for fans .", "storylet_id": "220794"}], [{"original_text": "I attended an auction today that had very expensive purses.", "album_id": "72157627916134333", "photo_flickr_id": "6307601553", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "44159", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i attended an auction today that had very expensive purses .", "storylet_id": "220795"}], [{"original_text": "There were celebrities on hand to help bring prices up.", "album_id": "72157627916134333", "photo_flickr_id": "6308123968", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "44159", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were celebrities on hand to help bring prices up .", "storylet_id": "220796"}], [{"original_text": "The auctioneer was doing everything she could to help get more out of the items being auctioned.", "album_id": "72157627916134333", "photo_flickr_id": "6308128054", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "44159", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the auctioneer was doing everything she could to help get more out of the items being auctioned .", "storylet_id": "220797"}], [{"original_text": "Afterwards the celebrities were on hand to talk to the people. ", "album_id": "72157627916134333", "photo_flickr_id": "6308125994", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "44159", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards the celebrities were on hand to talk to the people .", "storylet_id": "220798"}], [{"original_text": "Some of them even signed autographs.", "album_id": "72157627916134333", "photo_flickr_id": "6308129062", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "44159", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of them even signed autographs .", "storylet_id": "220799"}], [{"original_text": "The group had come to see the scenic landscape.", "album_id": "72157629014416869", "photo_flickr_id": "6755825667", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44160", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group had come to see the scenic landscape .", "storylet_id": "220800"}], [{"original_text": "There we many beautifully manicured gardens.", "album_id": "72157629014416869", "photo_flickr_id": "6755828883", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44160", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there we many beautifully manicured gardens .", "storylet_id": "220801"}], [{"original_text": "And old buildings that were still standing.", "album_id": "72157629014416869", "photo_flickr_id": "6755831067", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44160", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and old buildings that were still standing .", "storylet_id": "220802"}], [{"original_text": "As well as an old train track.", "album_id": "72157629014416869", "photo_flickr_id": "6755831437", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44160", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as well as an old train track .", "storylet_id": "220803"}], [{"original_text": "After taking in the great sights the group headed home.", "album_id": "72157629014416869", "photo_flickr_id": "6755836835", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44160", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after taking in the great sights the group headed home .", "storylet_id": "220804"}], [{"original_text": "It was a beautiful fall day so we decided to go for a drive into the country and look at the leaves.", "album_id": "72157629014416869", "photo_flickr_id": "6755832249", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "44161", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful fall day so we decided to go for a drive into the country and look at the leaves .", "storylet_id": "220805"}], [{"original_text": "Unfortunately we weren't the only ones with that idea, and got stuck in traffic because of this accident.", "album_id": "72157629014416869", "photo_flickr_id": "6755836835", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "44161", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "unfortunately we were n't the only ones with that idea , and got stuck in traffic because of this accident .", "storylet_id": "220806"}], [{"original_text": "I was very disappointed that I only had roadside weeds to look at instead of fall colors.", "album_id": "72157629014416869", "photo_flickr_id": "6755835341", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "44161", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was very disappointed that i only had roadside weeds to look at instead of fall colors .", "storylet_id": "220807"}], [{"original_text": "Looking around once we got past the traffic, I did see some really lovely view of the farmland.", "album_id": "72157629014416869", "photo_flickr_id": "6755825667", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "44161", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "looking around once we got past the traffic , i did see some really lovely view of the farmland .", "storylet_id": "220808"}], [{"original_text": "In the end it was worth the trouble because it turned out to be a beautiful autumn day.", "album_id": "72157629014416869", "photo_flickr_id": "6755830537", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "44161", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end it was worth the trouble because it turned out to be a beautiful autumn day .", "storylet_id": "220809"}], [{"original_text": "We went house shopping, a early in a quiet Autumn morning.", "album_id": "72157629014416869", "photo_flickr_id": "6755832249", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "44162", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went house shopping , a early in a quiet [female] morning .", "storylet_id": "220810"}], [{"original_text": "There was an auto accident on the road, though, and by the time we arrived the realtor couldn't show us around anymore. ", "album_id": "72157629014416869", "photo_flickr_id": "6755836835", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "44162", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was an auto accident on the road , though , and by the time we arrived the realtor could n't show us around anymore .", "storylet_id": "220811"}], [{"original_text": "So we decided to sight-see a bit! All the long reeds of wheat were stunning to see up close.", "album_id": "72157629014416869", "photo_flickr_id": "6755835341", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "44162", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so we decided to sight-see a bit ! all the long reeds of wheat were stunning to see up close .", "storylet_id": "220812"}], [{"original_text": "The heavy fog on the nearby farm made me feel nostalgic for the time when I used to live on one.", "album_id": "72157629014416869", "photo_flickr_id": "6755825667", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "44162", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the heavy fog on the nearby farm made me feel nostalgic for the time when i used to live on one .", "storylet_id": "220813"}], [{"original_text": "We picked a few flowers for home, and went off.", "album_id": "72157629014416869", "photo_flickr_id": "6755830537", "setting": "last-3-pick-old-and-tell", "worker_id": "0D12GJWRS7B1PXQ", "story_id": "44162", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we picked a few flowers for home , and went off .", "storylet_id": "220814"}], [{"original_text": "What a foggy scene, even nicer to walk in that.", "album_id": "72157629014416869", "photo_flickr_id": "6755825667", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "44163", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what a foggy scene , even nicer to walk in that .", "storylet_id": "220815"}], [{"original_text": "The leaves are changing making the walk taken that much more fantastic.", "album_id": "72157629014416869", "photo_flickr_id": "6755828883", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "44163", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the leaves are changing making the walk taken that much more fantastic .", "storylet_id": "220816"}], [{"original_text": "Passing by what looks like some sort of recreational center.", "album_id": "72157629014416869", "photo_flickr_id": "6755831067", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "44163", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "passing by what looks like some sort of recreational center .", "storylet_id": "220817"}], [{"original_text": "Its so nice here, especially in the fall season.", "album_id": "72157629014416869", "photo_flickr_id": "6755831437", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "44163", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "its so nice here , especially in the fall season .", "storylet_id": "220818"}], [{"original_text": "Getting in the car and driving the roads here is not stressful at all.", "album_id": "72157629014416869", "photo_flickr_id": "6755836835", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "44163", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "getting in the car and driving the roads here is not stressful at all .", "storylet_id": "220819"}], [{"original_text": "This is the view from our room of the early morning light diffused through the fog.", "album_id": "72157629014416869", "photo_flickr_id": "6755825667", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "44164", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the view from our room of the early morning light diffused through the fog .", "storylet_id": "220820"}], [{"original_text": "Some of the beautiful fall foliage right outside the place where we stayed.", "album_id": "72157629014416869", "photo_flickr_id": "6755828883", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "44164", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the beautiful fall foliage right outside the place where we stayed .", "storylet_id": "220821"}], [{"original_text": "Once we'd woken up for the morning, we went on our annual fall hike, These are some of the buildings near the area camp we started our hike from.", "album_id": "72157629014416869", "photo_flickr_id": "6755831067", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "44164", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once we 'd woken up for the morning , we went on our annual fall hike , these are some of the buildings near the area camp we started our hike from .", "storylet_id": "220822"}], [{"original_text": "We passed a disused rail track that ran off into the distance.", "album_id": "72157629014416869", "photo_flickr_id": "6755831437", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "44164", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we passed a disused rail track that ran off into the distance .", "storylet_id": "220823"}], [{"original_text": "Driving around and walking around New England during the change of leaves can be nice, but it's also best to keep your eyes on the road and not get in a wreck like these people did!", "album_id": "72157629014416869", "photo_flickr_id": "6755836835", "setting": "last-3-pick-old-and-tell", "worker_id": "J7Q5FYRBT3M7YAX", "story_id": "44164", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "driving around and walking around location location during the change of leaves can be nice , but it 's also best to keep your eyes on the road and not get in a wreck like these people did !", "storylet_id": "220824"}], [{"original_text": "Outside the Gamble Plantation there was trouble brewing.", "album_id": "72157646679583188", "photo_flickr_id": "14912766160", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44165", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "outside the location location there was trouble brewing .", "storylet_id": "220825"}], [{"original_text": "There was an accident along the highway.", "album_id": "72157646679583188", "photo_flickr_id": "14912824768", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44165", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was an accident along the highway .", "storylet_id": "220826"}], [{"original_text": "Families pulled over to see what was going on.", "album_id": "72157646679583188", "photo_flickr_id": "14912699429", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44165", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "families pulled over to see what was going on .", "storylet_id": "220827"}], [{"original_text": "EMA arrived to help the injured people in the car.", "album_id": "72157646679583188", "photo_flickr_id": "15099026452", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44165", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "ema arrived to help the injured people in the car .", "storylet_id": "220828"}], [{"original_text": "EMS then drove the people to the safety of the hospital.", "album_id": "72157646679583188", "photo_flickr_id": "15096374051", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44165", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "organization then drove the people to the safety of the hospital .", "storylet_id": "220829"}], [{"original_text": "When I got off the train I noticed a large accident on the road.", "album_id": "72157646679583188", "photo_flickr_id": "15076364276", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44166", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i got off the train i noticed a large accident on the road .", "storylet_id": "220830"}], [{"original_text": "The sheriff was there.", "album_id": "72157646679583188", "photo_flickr_id": "15099374925", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44166", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sheriff was there .", "storylet_id": "220831"}], [{"original_text": "The fire chief was there.", "album_id": "72157646679583188", "photo_flickr_id": "15099029872", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44166", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fire chief was there .", "storylet_id": "220832"}], [{"original_text": "One of the vehicles was badly damaged.", "album_id": "72157646679583188", "photo_flickr_id": "15076391996", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44166", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the vehicles was badly damaged .", "storylet_id": "220833"}], [{"original_text": "Finally after some time in traffic I made it home.", "album_id": "72157646679583188", "photo_flickr_id": "14912842657", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44166", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally after some time in traffic i made it home .", "storylet_id": "220834"}], [{"original_text": "We went to spend the day at the Gamble Plantation.", "album_id": "72157646679583188", "photo_flickr_id": "14912766160", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "44167", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to spend the day at the location location .", "storylet_id": "220835"}], [{"original_text": "On the way back we saw that there was an accident.", "album_id": "72157646679583188", "photo_flickr_id": "14912824768", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "44167", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on the way back we saw that there was an accident .", "storylet_id": "220836"}], [{"original_text": "Luckily the people in this car did not seem to be hurt.", "album_id": "72157646679583188", "photo_flickr_id": "14912699429", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "44167", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "luckily the people in this car did not seem to be hurt .", "storylet_id": "220837"}], [{"original_text": "There was somebody who had to be removed from the other car, in a stretcher.", "album_id": "72157646679583188", "photo_flickr_id": "15099026452", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "44167", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was somebody who had to be removed from the other car , in a stretcher .", "storylet_id": "220838"}], [{"original_text": "I am really proud of the work that was done by the emergency personnel in this situation.", "album_id": "72157646679583188", "photo_flickr_id": "15096374051", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "44167", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am really proud of the work that was done by the emergency personnel in this situation .", "storylet_id": "220839"}], [{"original_text": "To spend the day we decided to attend a historic state park in Florida.", "album_id": "72157646679583188", "photo_flickr_id": "14912766160", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44168", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "to spend the day we decided to attend a historic state park in location .", "storylet_id": "220840"}], [{"original_text": "When leaving we saw someone having a problem with there car.", "album_id": "72157646679583188", "photo_flickr_id": "14912824768", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44168", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when leaving we saw someone having a problem with there car .", "storylet_id": "220841"}], [{"original_text": "We then saw an ambulance show up to the scene and began to get concerned.", "album_id": "72157646679583188", "photo_flickr_id": "14912699429", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44168", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we then saw an ambulance show up to the scene and began to get concerned .", "storylet_id": "220842"}], [{"original_text": "The ambulance brought out a stretcher and loaded someone onto it.", "album_id": "72157646679583188", "photo_flickr_id": "15099026452", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44168", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ambulance brought out a stretcher and loaded someone onto it .", "storylet_id": "220843"}], [{"original_text": "The ambulance drove off quickly with it's sirens on.", "album_id": "72157646679583188", "photo_flickr_id": "15096374051", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44168", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ambulance drove off quickly with it 's sirens on .", "storylet_id": "220844"}], [{"original_text": "it was just another day outsider of the Gamble Plantation.", "album_id": "72157646679583188", "photo_flickr_id": "14912766160", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44169", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was just another day outsider of the gamble plantation .", "storylet_id": "220845"}], [{"original_text": "a traffic accident accured unexpectedly . ", "album_id": "72157646679583188", "photo_flickr_id": "14912824768", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44169", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a traffic accident accured unexpectedly .", "storylet_id": "220846"}], [{"original_text": "fire trucks and an ambulance made it on the scene very fast.", "album_id": "72157646679583188", "photo_flickr_id": "14912699429", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44169", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "fire trucks and an ambulance made it on the scene very fast .", "storylet_id": "220847"}], [{"original_text": "they took care of the injured pedestrian.", "album_id": "72157646679583188", "photo_flickr_id": "15099026452", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44169", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they took care of the injured pedestrian .", "storylet_id": "220848"}], [{"original_text": "the pedestrian was rushed to a local hospital .", "album_id": "72157646679583188", "photo_flickr_id": "15096374051", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44169", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the pedestrian was rushed to a local hospital .", "storylet_id": "220849"}], [{"original_text": "She was making signs for the Christmas awards program.", "album_id": "72157607015984014", "photo_flickr_id": "2810386378", "setting": "first-2-pick-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "44455", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she was making signs for the christmas awards program .", "storylet_id": "222275"}], [{"original_text": "He made chocolate goodies for the attendants.", "album_id": "72157607015984014", "photo_flickr_id": "2810386190", "setting": "first-2-pick-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "44455", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he made chocolate goodies for the attendants .", "storylet_id": "222276"}], [{"original_text": "The cans of fudge were ready to go.", "album_id": "72157607015984014", "photo_flickr_id": "2809537141", "setting": "first-2-pick-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "44455", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cans of fudge were ready to go .", "storylet_id": "222277"}], [{"original_text": "Pictures and frames were put on the counter.", "album_id": "72157607015984014", "photo_flickr_id": "2810384938", "setting": "first-2-pick-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "44455", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "pictures and frames were put on the counter .", "storylet_id": "222278"}], [{"original_text": "The award posters were set up in the lobby.", "album_id": "72157607015984014", "photo_flickr_id": "2809539417", "setting": "first-2-pick-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "44455", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the award posters were set up in the lobby .", "storylet_id": "222279"}], [{"original_text": "Bill spent a long time preparing his posters for the competition.", "album_id": "72157607015984014", "photo_flickr_id": "2809536219", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44456", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] spent a long time preparing his posters for the competition .", "storylet_id": "222280"}], [{"original_text": "He made some strawberries to bribe the judge with.", "album_id": "72157607015984014", "photo_flickr_id": "2810386190", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44456", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he made some strawberries to bribe the judge with .", "storylet_id": "222281"}], [{"original_text": "He made 2 poster that he thought could win.", "album_id": "72157607015984014", "photo_flickr_id": "2809539589", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44456", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he made 2 poster that he thought could win .", "storylet_id": "222282"}], [{"original_text": "He hoped and prayed that the judge would choose him.", "album_id": "72157607015984014", "photo_flickr_id": "2809539693", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44456", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he hoped and prayed that the judge would choose him .", "storylet_id": "222283"}], [{"original_text": "Finally the day came and the judge chose someone else's work. He was so disappointed.", "album_id": "72157607015984014", "photo_flickr_id": "2809538285", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "44456", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the day came and the judge chose someone else 's work . he was so disappointed .", "storylet_id": "222284"}], [{"original_text": "The husband and I spent hours in the kitchen.", "album_id": "72157607015984014", "photo_flickr_id": "2809536219", "setting": "last-3-pick-old-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "44457", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the husband and i spent hours in the kitchen .", "storylet_id": "222285"}], [{"original_text": "This year, we made homemade gifts for Christmas.", "album_id": "72157607015984014", "photo_flickr_id": "2810386190", "setting": "last-3-pick-old-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "44457", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this year , we made homemade gifts for christmas .", "storylet_id": "222286"}], [{"original_text": "I made posters ", "album_id": "72157607015984014", "photo_flickr_id": "2809539589", "setting": "last-3-pick-old-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "44457", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i made posters", "storylet_id": "222287"}], [{"original_text": "for my coworkers, so that they could have simple directions to the party we are hosting.", "album_id": "72157607015984014", "photo_flickr_id": "2809539693", "setting": "last-3-pick-old-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "44457", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "for my coworkers , so that they could have simple directions to the party we are hosting .", "storylet_id": "222288"}], [{"original_text": "We still have a lot of work ahead of us before we are finished with preparations.", "album_id": "72157607015984014", "photo_flickr_id": "2809538285", "setting": "last-3-pick-old-and-tell", "worker_id": "O5DTED5LPY59YY7", "story_id": "44457", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we still have a lot of work ahead of us before we are finished with preparations .", "storylet_id": "222289"}], [{"original_text": "When we got to the party they were still setting up.", "album_id": "72157607015984014", "photo_flickr_id": "2810386378", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44458", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when we got to the party they were still setting up .", "storylet_id": "222290"}], [{"original_text": "The food was almost done.", "album_id": "72157607015984014", "photo_flickr_id": "2810386190", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44458", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the food was almost done .", "storylet_id": "222291"}], [{"original_text": "They bought a lot of chocolate.", "album_id": "72157607015984014", "photo_flickr_id": "2809537141", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44458", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they bought a lot of chocolate .", "storylet_id": "222292"}], [{"original_text": "They had put up picture frames everywhere.", "album_id": "72157607015984014", "photo_flickr_id": "2810384938", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44458", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had put up picture frames everywhere .", "storylet_id": "222293"}], [{"original_text": "It looked great.", "album_id": "72157607015984014", "photo_flickr_id": "2809539417", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44458", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it looked great .", "storylet_id": "222294"}], [{"original_text": "I have always enjoyed party planning. It can be tedious, but it has a great reward.", "album_id": "72157607015984014", "photo_flickr_id": "2810386378", "setting": "last-3-pick-old-and-tell", "worker_id": "K3P0BHHKOOA28XH", "story_id": "44459", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have always enjoyed party planning . it can be tedious , but it has a great reward .", "storylet_id": "222295"}], [{"original_text": "There is my husband, taking some deserts out of the oven. I always leave the cooking to him.", "album_id": "72157607015984014", "photo_flickr_id": "2810386190", "setting": "last-3-pick-old-and-tell", "worker_id": "K3P0BHHKOOA28XH", "story_id": "44459", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there is my husband , taking some deserts out of the oven . i always leave the cooking to him .", "storylet_id": "222296"}], [{"original_text": "Here is some of our homemad fudge. Everyone always loves it. ", "album_id": "72157607015984014", "photo_flickr_id": "2809537141", "setting": "last-3-pick-old-and-tell", "worker_id": "K3P0BHHKOOA28XH", "story_id": "44459", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is some of our homemad fudge . everyone always loves it .", "storylet_id": "222297"}], [{"original_text": "Here is a picture of our guests. They've worked really hard this year, and we're glad to be doing this for them.", "album_id": "72157607015984014", "photo_flickr_id": "2810384938", "setting": "last-3-pick-old-and-tell", "worker_id": "K3P0BHHKOOA28XH", "story_id": "44459", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is a picture of our guests . they 've worked really hard this year , and we 're glad to be doing this for them .", "storylet_id": "222298"}], [{"original_text": "Here is a display of all of their hard work. This has been a long year for some of them, and they deserve to have a good time.", "album_id": "72157607015984014", "photo_flickr_id": "2809539417", "setting": "last-3-pick-old-and-tell", "worker_id": "K3P0BHHKOOA28XH", "story_id": "44459", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is a display of all of their hard work . this has been a long year for some of them , and they deserve to have a good time .", "storylet_id": "222299"}], [{"original_text": "The family came over to open Christmas gifts in morning.", "album_id": "72157623114269494", "photo_flickr_id": "4234298048", "setting": "first-2-pick-and-tell", "worker_id": "ODA8LY7GHGN97OW", "story_id": "44460", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family came over to open christmas gifts in morning .", "storylet_id": "222300"}], [{"original_text": "Jacob was eager to open his and couldn't wait another second", "album_id": "72157623114269494", "photo_flickr_id": "4233524995", "setting": "first-2-pick-and-tell", "worker_id": "ODA8LY7GHGN97OW", "story_id": "44460", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] was eager to open his and could n't wait another second", "storylet_id": "222301"}], [{"original_text": "Dave wasn't sure how he felt about his gift.", "album_id": "72157623114269494", "photo_flickr_id": "4234298466", "setting": "first-2-pick-and-tell", "worker_id": "ODA8LY7GHGN97OW", "story_id": "44460", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] was n't sure how he felt about his gift .", "storylet_id": "222302"}], [{"original_text": "Mom was happy to receive the book she's been wanting.", "album_id": "72157623114269494", "photo_flickr_id": "4233525815", "setting": "first-2-pick-and-tell", "worker_id": "ODA8LY7GHGN97OW", "story_id": "44460", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom was happy to receive the book she 's been wanting .", "storylet_id": "222303"}], [{"original_text": "Amy opening her first Christmas gift!", "album_id": "72157623114269494", "photo_flickr_id": "4233525905", "setting": "first-2-pick-and-tell", "worker_id": "ODA8LY7GHGN97OW", "story_id": "44460", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] opening her first christmas gift !", "storylet_id": "222304"}], [{"original_text": "Jack opened his last present but wasn't sure what it was.", "album_id": "72157623114269494", "photo_flickr_id": "4234301050", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44461", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] opened his last present but was n't sure what it was .", "storylet_id": "222305"}], [{"original_text": "I looked at my husband and asked if he knew how to put it together.", "album_id": "72157623114269494", "photo_flickr_id": "4234299910", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44461", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i looked at my husband and asked if he knew how to put it together .", "storylet_id": "222306"}], [{"original_text": "Grandpa said he could put anything together.", "album_id": "72157623114269494", "photo_flickr_id": "4233528147", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44461", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandpa said he could put anything together .", "storylet_id": "222307"}], [{"original_text": "My husband said he was supervising.", "album_id": "72157623114269494", "photo_flickr_id": "4233528505", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44461", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my husband said he was supervising .", "storylet_id": "222308"}], [{"original_text": "Finally the finished product. A cool awing for the boys playroom.", "album_id": "72157623114269494", "photo_flickr_id": "4234301224", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44461", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the finished product . a cool awing for the boys playroom .", "storylet_id": "222309"}], [{"original_text": "Life is good the children are enjoying visiting grandma.", "album_id": "72157623114269494", "photo_flickr_id": "4234301050", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44462", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "life is good the children are enjoying visiting grandma .", "storylet_id": "222310"}], [{"original_text": "Here are the kids with auntie Marie. She made an early visit.", "album_id": "72157623114269494", "photo_flickr_id": "4234299910", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44462", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here are the kids with auntie [female] . she made an early visit .", "storylet_id": "222311"}], [{"original_text": "The grand parents taking a time out.", "album_id": "72157623114269494", "photo_flickr_id": "4233528147", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44462", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the grand parents taking a time out .", "storylet_id": "222312"}], [{"original_text": "Here is hubby hanging out at sister Maries in her work out area.", "album_id": "72157623114269494", "photo_flickr_id": "4233528505", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44462", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is hubby hanging out at sister maries in her work out area .", "storylet_id": "222313"}], [{"original_text": "Baby boy hanging out with aunt Marie looks like he found something to occupy himself.", "album_id": "72157623114269494", "photo_flickr_id": "4234301224", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44462", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] boy hanging out with aunt [female] looks like he found something to occupy himself .", "storylet_id": "222314"}], [{"original_text": "This year the Christmas gathering was at my brother's home.", "album_id": "72157623114269494", "photo_flickr_id": "4234301050", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "44463", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this year the christmas gathering was at my brother 's home .", "storylet_id": "222315"}], [{"original_text": "My sister-in-law loves kids and is opening a small daycare after the holidays.", "album_id": "72157623114269494", "photo_flickr_id": "4234299910", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "44463", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my sister-in-law loves kids and is opening a small daycare after the holidays .", "storylet_id": "222316"}], [{"original_text": "My parent's are easy to shop for. They love to read and refuse to use digital books.", "album_id": "72157623114269494", "photo_flickr_id": "4233528147", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "44463", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my parent 's are easy to shop for . they love to read and refuse to use digital books .", "storylet_id": "222317"}], [{"original_text": "My brother drove us to see the daycare center they are setting up.", "album_id": "72157623114269494", "photo_flickr_id": "4233528505", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "44463", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my brother drove us to see the daycare center they are setting up .", "storylet_id": "222318"}], [{"original_text": "The daycare isn't even open yet and she already has a waiting list!", "album_id": "72157623114269494", "photo_flickr_id": "4234301224", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "44463", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the daycare is n't even open yet and she already has a waiting list !", "storylet_id": "222319"}], [{"original_text": "Christmas was going well for the children", "album_id": "72157623114269494", "photo_flickr_id": "4234298048", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44464", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "christmas was going well for the children", "storylet_id": "222320"}], [{"original_text": "one got a huge gift!", "album_id": "72157623114269494", "photo_flickr_id": "4233524995", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44464", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one got a huge gift !", "storylet_id": "222321"}], [{"original_text": "The dad got a horse head", "album_id": "72157623114269494", "photo_flickr_id": "4234298466", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44464", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dad got a horse head", "storylet_id": "222322"}], [{"original_text": "and the mom got a book.", "album_id": "72157623114269494", "photo_flickr_id": "4233525815", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44464", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the mom got a book .", "storylet_id": "222323"}], [{"original_text": "Everyone had a good time.", "album_id": "72157623114269494", "photo_flickr_id": "4233525905", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44464", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a good time .", "storylet_id": "222324"}], [{"original_text": "The newlyweds were excited to host their first Christmas dinner!", "album_id": "72157625594761301", "photo_flickr_id": "5311811187", "setting": "first-2-pick-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "44465", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the newlyweds were excited to host their first christmas dinner !", "storylet_id": "222325"}], [{"original_text": "The decorations were beautiful.", "album_id": "72157625594761301", "photo_flickr_id": "5312392788", "setting": "first-2-pick-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "44465", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the decorations were beautiful .", "storylet_id": "222326"}], [{"original_text": "They lit candles on the dining room table to make it feel cozy.", "album_id": "72157625594761301", "photo_flickr_id": "5311808445", "setting": "first-2-pick-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "44465", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they lit candles on the dining room table to make it feel cozy .", "storylet_id": "222327"}], [{"original_text": "The food was carefully prepraed.", "album_id": "72157625594761301", "photo_flickr_id": "5311797933", "setting": "first-2-pick-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "44465", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food was carefully prepraed .", "storylet_id": "222328"}], [{"original_text": "It was a beautiful night for all of the family!", "album_id": "72157625594761301", "photo_flickr_id": "5311816749", "setting": "first-2-pick-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "44465", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a beautiful night for all of the family !", "storylet_id": "222329"}], [{"original_text": "The pub was just purchased and some changes were occurrin. ", "album_id": "72157625594761301", "photo_flickr_id": "5311820089", "setting": "first-2-pick-and-tell", "worker_id": "UP4AC6DLAW47K0H", "story_id": "44466", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the pub was just purchased and some changes were occurrin .", "storylet_id": "222330"}], [{"original_text": "Need craft beers and wines were now available.", "album_id": "72157625594761301", "photo_flickr_id": "5311809957", "setting": "first-2-pick-and-tell", "worker_id": "UP4AC6DLAW47K0H", "story_id": "44466", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "need craft beers and wines were now available .", "storylet_id": "222331"}], [{"original_text": "A whole new food menu was alson happening.", "album_id": "72157625594761301", "photo_flickr_id": "5311812463", "setting": "first-2-pick-and-tell", "worker_id": "UP4AC6DLAW47K0H", "story_id": "44466", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a whole new food menu was alson happening .", "storylet_id": "222332"}], [{"original_text": "A brand new atmosphere For comic nerds.", "album_id": "72157625594761301", "photo_flickr_id": "5312395832", "setting": "first-2-pick-and-tell", "worker_id": "UP4AC6DLAW47K0H", "story_id": "44466", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a brand new atmosphere for comic nerds .", "storylet_id": "222333"}], [{"original_text": "This is the new motto for the new place.", "album_id": "72157625594761301", "photo_flickr_id": "5312412682", "setting": "first-2-pick-and-tell", "worker_id": "UP4AC6DLAW47K0H", "story_id": "44466", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the new motto for the new place .", "storylet_id": "222334"}], [{"original_text": "My partner and I took a picture before we celebrated.", "album_id": "72157625594761301", "photo_flickr_id": "5311811187", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44467", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my partner and i took a picture before we celebrated .", "storylet_id": "222335"}], [{"original_text": "We decorated the tree and brought presents.", "album_id": "72157625594761301", "photo_flickr_id": "5312392788", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44467", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decorated the tree and brought presents .", "storylet_id": "222336"}], [{"original_text": "He set up candles so the atmosphere would be peaceful.", "album_id": "72157625594761301", "photo_flickr_id": "5311808445", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44467", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he set up candles so the atmosphere would be peaceful .", "storylet_id": "222337"}], [{"original_text": "I bought some vegetables to cook for dinner.", "album_id": "72157625594761301", "photo_flickr_id": "5311797933", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44467", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i bought some vegetables to cook for dinner .", "storylet_id": "222338"}], [{"original_text": "My parents came over to watch a movie with us.", "album_id": "72157625594761301", "photo_flickr_id": "5311816749", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44467", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my parents came over to watch a movie with us .", "storylet_id": "222339"}], [{"original_text": "Neil and Kathy had a wonderful Christmas with their family.", "album_id": "72157625594761301", "photo_flickr_id": "5311811187", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "44468", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] had a wonderful christmas with their family .", "storylet_id": "222340"}], [{"original_text": "Their tree reached almost to the ceiling, and they had decorated it beautifully.", "album_id": "72157625594761301", "photo_flickr_id": "5312392788", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "44468", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their tree reached almost to the ceiling , and they had decorated it beautifully .", "storylet_id": "222341"}], [{"original_text": "The candles gave the room a warm and inviting appearance.", "album_id": "72157625594761301", "photo_flickr_id": "5311808445", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "44468", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the candles gave the room a warm and inviting appearance .", "storylet_id": "222342"}], [{"original_text": "Kathy made a delicious dinner, including fresh Brussels sprouts.", "album_id": "72157625594761301", "photo_flickr_id": "5311797933", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "44468", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] made a delicious dinner , including fresh location sprouts .", "storylet_id": "222343"}], [{"original_text": "Everyone enjoyed relaxing and just spending time together. Merry Christmas!", "album_id": "72157625594761301", "photo_flickr_id": "5311816749", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "44468", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone enjoyed relaxing and just spending time together . merry christmas !", "storylet_id": "222344"}], [{"original_text": "I had to check out a new restaurant.", "album_id": "72157625594761301", "photo_flickr_id": "5311820089", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44469", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had to check out a new restaurant .", "storylet_id": "222345"}], [{"original_text": "The drinks were fantastic. ", "album_id": "72157625594761301", "photo_flickr_id": "5311809957", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44469", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the drinks were fantastic .", "storylet_id": "222346"}], [{"original_text": "A bowl of food went a long way for me.", "album_id": "72157625594761301", "photo_flickr_id": "5311812463", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44469", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a bowl of food went a long way for me .", "storylet_id": "222347"}], [{"original_text": "I asked the waiter to take a picture of me reading.", "album_id": "72157625594761301", "photo_flickr_id": "5312395832", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44469", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i asked the waiter to take a picture of me reading .", "storylet_id": "222348"}], [{"original_text": "A poster outside of the restaurant changed my perspective on life. ", "album_id": "72157625594761301", "photo_flickr_id": "5312412682", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44469", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a poster outside of the restaurant changed my perspective on life .", "storylet_id": "222349"}], [{"original_text": "There were a lot of kids at the party yesterday.", "album_id": "72157625595266327", "photo_flickr_id": "5312201761", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44470", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of kids at the party yesterday .", "storylet_id": "222350"}], [{"original_text": "They had a great time eating food.", "album_id": "72157625595266327", "photo_flickr_id": "5312202191", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44470", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a great time eating food .", "storylet_id": "222351"}], [{"original_text": "They also made gingerbread houses.", "album_id": "72157625595266327", "photo_flickr_id": "5312202743", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44470", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also made gingerbread houses .", "storylet_id": "222352"}], [{"original_text": "They had a great time.", "album_id": "72157625595266327", "photo_flickr_id": "5312206013", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44470", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had a great time .", "storylet_id": "222353"}], [{"original_text": "Afterward we went to go see the Christmas parade.", "album_id": "72157625595266327", "photo_flickr_id": "5312797930", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44470", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we went to go see the christmas parade .", "storylet_id": "222354"}], [{"original_text": "I love preparing for Christmas with the kids!", "album_id": "72157625595266327", "photo_flickr_id": "5312201279", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44471", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love preparing for christmas with the kids !", "storylet_id": "222355"}], [{"original_text": "We always make gingerbread houses. Of course, there's as much candy eaten as decorated with.", "album_id": "72157625595266327", "photo_flickr_id": "5312201761", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44471", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we always make gingerbread houses . of course , there 's as much candy eaten as decorated with .", "storylet_id": "222356"}], [{"original_text": "When the houses are done, the kids ask me to judge them. I always say they are all a tie.", "album_id": "72157625595266327", "photo_flickr_id": "5312202743", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44471", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when the houses are done , the kids ask me to judge them . i always say they are all a tie .", "storylet_id": "222357"}], [{"original_text": "Everyone gets excited when we pulled out all the old decorations.", "album_id": "72157625595266327", "photo_flickr_id": "5312206013", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44471", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone gets excited when we pulled out all the old decorations .", "storylet_id": "222358"}], [{"original_text": "And of course, there's going to meet Santa! I am so glad all the kids still believe!", "album_id": "72157625595266327", "photo_flickr_id": "5312210599", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44471", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and of course , there 's going to meet location ! i am so glad all the kids still believe !", "storylet_id": "222359"}], [{"original_text": "The little boys are chattering together as boys do.", "album_id": "72157625595266327", "photo_flickr_id": "5312201279", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44472", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the little boys are chattering together as boys do .", "storylet_id": "222360"}], [{"original_text": "It looks like the children are gathered to make gingerbread houses.", "album_id": "72157625595266327", "photo_flickr_id": "5312201761", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44472", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it looks like the children are gathered to make gingerbread houses .", "storylet_id": "222361"}], [{"original_text": "Of, course, Mom has to keep and eye on things.", "album_id": "72157625595266327", "photo_flickr_id": "5312202743", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44472", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of , course , mom has to keep and eye on things .", "storylet_id": "222362"}], [{"original_text": "The table is already decorated for Christmas.", "album_id": "72157625595266327", "photo_flickr_id": "5312206013", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44472", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the table is already decorated for christmas .", "storylet_id": "222363"}], [{"original_text": "Santa decides to make a surprise visit.", "album_id": "72157625595266327", "photo_flickr_id": "5312210599", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44472", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "location decides to make a surprise visit .", "storylet_id": "222364"}], [{"original_text": "Christmas Eve and the kids can hardly wait. ", "album_id": "72157625595266327", "photo_flickr_id": "5312201279", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44473", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "christmas eve and the kids can hardly wait .", "storylet_id": "222365"}], [{"original_text": "The kids began to make gingerbread houses. ", "album_id": "72157625595266327", "photo_flickr_id": "5312201761", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44473", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids began to make gingerbread houses .", "storylet_id": "222366"}], [{"original_text": "The parents helped in the construction. ", "album_id": "72157625595266327", "photo_flickr_id": "5312202743", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44473", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the parents helped in the construction .", "storylet_id": "222367"}], [{"original_text": "Everything was festive for the big day. ", "album_id": "72157625595266327", "photo_flickr_id": "5312206013", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44473", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everything was festive for the big day .", "storylet_id": "222368"}], [{"original_text": "We left for the village square for one last visit this year with Santa. ", "album_id": "72157625595266327", "photo_flickr_id": "5312210599", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44473", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we left for the village square for one last visit this year with location .", "storylet_id": "222369"}], [{"original_text": "It's always fun in our family when Mom makes her holiday Gingerbread House with strawberries and whipped cream.", "album_id": "72157625595266327", "photo_flickr_id": "5312201761", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "44474", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's always fun in our family when mom makes her holiday organization organization with strawberries and whipped cream .", "storylet_id": "222370"}], [{"original_text": "It's a December tradition every year. ", "album_id": "72157625595266327", "photo_flickr_id": "5312202191", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "44474", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's a december tradition every year .", "storylet_id": "222371"}], [{"original_text": "Kids love it but adults love it too. ", "album_id": "72157625595266327", "photo_flickr_id": "5312202743", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "44474", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "kids love it but adults love it too .", "storylet_id": "222372"}], [{"original_text": "Mom always decorates our house. We help.", "album_id": "72157625595266327", "photo_flickr_id": "5312206013", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "44474", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom always decorates our house . we help .", "storylet_id": "222373"}], [{"original_text": "That evening we go out for a walk along the river. Lots of people around. ", "album_id": "72157625595266327", "photo_flickr_id": "5312797930", "setting": "last-3-pick-old-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "44474", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that evening we go out for a walk along the river . lots of people around .", "storylet_id": "222374"}], [{"original_text": "Here is a highschool basket ball team for the first time this year.They worked hard in Jr high and now here they are competing high school level doing a great job.", "album_id": "72157625721263440", "photo_flickr_id": "5312790772", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44475", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is a highschool basket ball team for the first time this year.they worked hard in jr high and now here they are competing high school level doing a great job .", "storylet_id": "222375"}], [{"original_text": "We are the blue team and the other players are doing great this year as well. Im excited to see where we all go this year.", "album_id": "72157625721263440", "photo_flickr_id": "5312220613", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44475", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are the blue team and the other players are doing great this year as well . im excited to see where we all go this year .", "storylet_id": "222376"}], [{"original_text": "Getting ready for a shot... ", "album_id": "72157625721263440", "photo_flickr_id": "5312831680", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44475", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "getting ready for a shot ...", "storylet_id": "222377"}], [{"original_text": "Almost made it..wait..GOT IT went right over the other teams hands!", "album_id": "72157625721263440", "photo_flickr_id": "5312871018", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44475", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "almost made it..wait..got it went right over the other teams hands !", "storylet_id": "222378"}], [{"original_text": "The game is almost over and we are winning by a few points.", "album_id": "72157625721263440", "photo_flickr_id": "5312284091", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44475", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the game is almost over and we are winning by a few points .", "storylet_id": "222379"}], [{"original_text": "high school basketball is fun to watch", "album_id": "72157625721263440", "photo_flickr_id": "5312813318", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44476", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "high school basketball is fun to watch", "storylet_id": "222380"}], [{"original_text": "the kids play for the love of the game and not money ", "album_id": "72157625721263440", "photo_flickr_id": "5312225151", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44476", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids play for the love of the game and not money", "storylet_id": "222381"}], [{"original_text": "sometimes you catch a really good game", "album_id": "72157625721263440", "photo_flickr_id": "5312240151", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44476", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sometimes you catch a really good game", "storylet_id": "222382"}], [{"original_text": "those kids practice all the time", "album_id": "72157625721263440", "photo_flickr_id": "5312830998", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44476", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "those kids practice all the time", "storylet_id": "222383"}], [{"original_text": "and they take it seriously", "album_id": "72157625721263440", "photo_flickr_id": "5312844384", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44476", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they take it seriously", "storylet_id": "222384"}], [{"original_text": "The basketball star in the making, ", "album_id": "72157625721263440", "photo_flickr_id": "5312813318", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "44477", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the basketball star in the making ,", "storylet_id": "222385"}], [{"original_text": "became the center of attention.", "album_id": "72157625721263440", "photo_flickr_id": "5312225151", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "44477", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "became the center of attention .", "storylet_id": "222386"}], [{"original_text": "The opposing team tried hard to catch up, ", "album_id": "72157625721263440", "photo_flickr_id": "5312240151", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "44477", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the opposing team tried hard to catch up ,", "storylet_id": "222387"}], [{"original_text": "but they were out shined.", "album_id": "72157625721263440", "photo_flickr_id": "5312830998", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "44477", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but they were out shined .", "storylet_id": "222388"}], [{"original_text": "The game went on with the same odds.", "album_id": "72157625721263440", "photo_flickr_id": "5312844384", "setting": "last-3-pick-old-and-tell", "worker_id": "3N45ID95SN9GVPD", "story_id": "44477", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the game went on with the same odds .", "storylet_id": "222389"}], [{"original_text": "it was a big game for the boys.", "album_id": "72157625721263440", "photo_flickr_id": "5312790772", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44478", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a big game for the boys .", "storylet_id": "222390"}], [{"original_text": "they had so much on the line to win.", "album_id": "72157625721263440", "photo_flickr_id": "5312220613", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44478", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had so much on the line to win .", "storylet_id": "222391"}], [{"original_text": "it was a back and forth game till after the second half.", "album_id": "72157625721263440", "photo_flickr_id": "5312831680", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44478", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a back and forth game till after the second half .", "storylet_id": "222392"}], [{"original_text": "our boys pulled ahead and never dropped the lead.", "album_id": "72157625721263440", "photo_flickr_id": "5312871018", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44478", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our boys pulled ahead and never dropped the lead .", "storylet_id": "222393"}], [{"original_text": "we were so proud of them.", "album_id": "72157625721263440", "photo_flickr_id": "5312284091", "setting": "last-3-pick-old-and-tell", "worker_id": "IDA1PAJ6GZACZE3", "story_id": "44478", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were so proud of them .", "storylet_id": "222394"}], [{"original_text": "During the basketball game, the player attempted to save the ball for the team.", "album_id": "72157625721263440", "photo_flickr_id": "5312813318", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44479", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during the basketball game , the player attempted to save the ball for the team .", "storylet_id": "222395"}], [{"original_text": "Then he took a shot to score.", "album_id": "72157625721263440", "photo_flickr_id": "5312225151", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44479", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then he took a shot to score .", "storylet_id": "222396"}], [{"original_text": "After that he was guarded by 3 other players.", "album_id": "72157625721263440", "photo_flickr_id": "5312240151", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44479", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that he was guarded by 3 other players .", "storylet_id": "222397"}], [{"original_text": "The player with the number one then passed the ball to his team mates.", "album_id": "72157625721263440", "photo_flickr_id": "5312830998", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44479", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the player with the number one then passed the ball to his team mates .", "storylet_id": "222398"}], [{"original_text": "The blue team tried to get the basketball back.", "album_id": "72157625721263440", "photo_flickr_id": "5312844384", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44479", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the blue team tried to get the basketball back .", "storylet_id": "222399"}], [{"original_text": "Me standing next to our family Christmas tree.I love Christmas so much.", "album_id": "72157625596979281", "photo_flickr_id": "5312948259", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44480", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me standing next to our family christmas tree.i love christmas so much .", "storylet_id": "222400"}], [{"original_text": "This is our dinner table,we have been eating at this table since I was a little girl.Mom is a great cook.", "album_id": "72157625596979281", "photo_flickr_id": "5312952341", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44480", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is our dinner table , we have been eating at this table since i was a little girl.mom is a great cook .", "storylet_id": "222401"}], [{"original_text": "My sister and I with our parents.Ronald and Jamie Stockholder.I love my family.We had such a great dinner.", "album_id": "72157625596979281", "photo_flickr_id": "5312956317", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44480", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my sister and i with our parents.ronald and [female] stockholder.i love my family.we had such a great dinner .", "storylet_id": "222402"}], [{"original_text": "Dad opening his present I bought him.He's not a kid but she was sure acting like one.", "album_id": "72157625596979281", "photo_flickr_id": "5312960259", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44480", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dad opening his present i bought him.he 's not a kid but she was sure acting like one .", "storylet_id": "222403"}], [{"original_text": "Mom and dad gave us our gifts as well.'I'm so goofy.Mom always picked out the prettiest wrapping paper.", "album_id": "72157625596979281", "photo_flickr_id": "5313560662", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44480", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mom and dad gave us our gifts as well . 'i 'm so goofy.mom always picked out the prettiest wrapping paper .", "storylet_id": "222404"}], [{"original_text": "It is Christmas time again and as you can see my beautiful daughter has been busy decorating the tree.", "album_id": "72157625596979281", "photo_flickr_id": "5312948259", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44481", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is christmas time again and as you can see my beautiful daughter has been busy decorating the tree .", "storylet_id": "222405"}], [{"original_text": "Here is my little family all together for a group family Christmas photograph to put in our album.", "album_id": "72157625596979281", "photo_flickr_id": "5312956317", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44481", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is my little family all together for a group family christmas photograph to put in our album .", "storylet_id": "222406"}], [{"original_text": "I always take a picture of my beautiful wife and two wonderful daughters during the Christmas season.", "album_id": "72157625596979281", "photo_flickr_id": "5313546686", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44481", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i always take a picture of my beautiful wife and two wonderful daughters during the christmas season .", "storylet_id": "222407"}], [{"original_text": "It looks like I was good this year because Santa seems to have left me something under the tree and I always love my gifts no matter what they are.", "album_id": "72157625596979281", "photo_flickr_id": "5313554944", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44481", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looks like i was good this year because location seems to have left me something under the tree and i always love my gifts no matter what they are .", "storylet_id": "222408"}], [{"original_text": "My daughters are getting into action unwrapping what we gave them for Christmas and I sure hope I did good with my gift selection because I want to see some big smiles.", "album_id": "72157625596979281", "photo_flickr_id": "5313560662", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44481", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my daughters are getting into action unwrapping what we gave them for christmas and i sure hope i did good with my gift selection because i want to see some big smiles .", "storylet_id": "222409"}], [{"original_text": "It's Christmas day and I've got everything laid on and ready for the family.Just how cool is my tree this year?", "album_id": "72157625596979281", "photo_flickr_id": "5312948259", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "44482", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's christmas day and i 've got everything laid on and ready for the family.just how cool is my tree this year ?", "storylet_id": "222410"}], [{"original_text": "I've even gone with a traditional Scottish tartan tablecloth to celebrate our heritage. That should please dad.", "album_id": "72157625596979281", "photo_flickr_id": "5312952341", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "44482", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 've even gone with a traditional scottish tartan tablecloth to celebrate our heritage . that should please dad .", "storylet_id": "222411"}], [{"original_text": "And the family is all here. Mum, dad, me and my sister, all cozy on the couch. ", "album_id": "72157625596979281", "photo_flickr_id": "5312956317", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "44482", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the family is all here . mum , dad , me and my sister , all cozy on the couch .", "storylet_id": "222412"}], [{"original_text": "Time to unwrap the presents. Dad will never guess what this is.", "album_id": "72157625596979281", "photo_flickr_id": "5312960259", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "44482", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "time to unwrap the presents . dad will never guess what this is .", "storylet_id": "222413"}], [{"original_text": "Wow, someone bought me something really large. I'm not sure about the toy boat though. Maybe I'll put it in the bathroom.", "album_id": "72157625596979281", "photo_flickr_id": "5313560662", "setting": "last-3-pick-old-and-tell", "worker_id": "DZOKBYP26K6H1OY", "story_id": "44482", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "wow , someone bought me something really large . i 'm not sure about the toy boat though . maybe i 'll put it in the bathroom .", "storylet_id": "222414"}], [{"original_text": "We spent Christmas at Uncle Marshall's house.", "album_id": "72157625596979281", "photo_flickr_id": "5312948259", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44483", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we spent christmas at uncle [male] 's house .", "storylet_id": "222415"}], [{"original_text": "The dinner table was decorated with my uncle's favorite plaid cover.", "album_id": "72157625596979281", "photo_flickr_id": "5312952341", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44483", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dinner table was decorated with my uncle 's favorite plaid cover .", "storylet_id": "222416"}], [{"original_text": "My dad is on a business trip so only my mom and sister came with us. ", "album_id": "72157625596979281", "photo_flickr_id": "5312956317", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44483", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my dad is on a business trip so only my mom and sister came with us .", "storylet_id": "222417"}], [{"original_text": "My uncle doesn't know I got him a miniature trombone as a gift. ", "album_id": "72157625596979281", "photo_flickr_id": "5312960259", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44483", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my uncle does n't know i got him a miniature trombone as a gift .", "storylet_id": "222418"}], [{"original_text": "I got my sister a miniature boat for no reason whatsoever. ", "album_id": "72157625596979281", "photo_flickr_id": "5313560662", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44483", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i got my sister a miniature boat for no reason whatsoever .", "storylet_id": "222419"}], [{"original_text": "Christmas at the Smith's house was a lot of fun.", "album_id": "72157625596979281", "photo_flickr_id": "5312948259", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "44484", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "christmas at the smith 's house was a lot of fun .", "storylet_id": "222420"}], [{"original_text": "Joe and Barb, and their two daughters spent Christmas Eve and Christmas day together.", "album_id": "72157625596979281", "photo_flickr_id": "5312956317", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "44484", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] and barb , and their two daughters spent christmas eve and christmas day together .", "storylet_id": "222421"}], [{"original_text": "The ladies drank white wine until they were giddy.", "album_id": "72157625596979281", "photo_flickr_id": "5313546686", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "44484", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ladies drank white wine until they were giddy .", "storylet_id": "222422"}], [{"original_text": "Joe opened his presents and thanked his family. He really liked what he received.", "album_id": "72157625596979281", "photo_flickr_id": "5313554944", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "44484", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] opened his presents and thanked his family . he really liked what he received .", "storylet_id": "222423"}], [{"original_text": "Carol and Jill got exactly what they asked for and couldn't have been any happier.", "album_id": "72157625596979281", "photo_flickr_id": "5313560662", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "44484", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] and [female] got exactly what they asked for and could n't have been any happier .", "storylet_id": "222424"}], [{"original_text": "the trip to Disney land was great.", "album_id": "72157625600077845", "photo_flickr_id": "5313678222", "setting": "first-2-pick-and-tell", "worker_id": "HLCKLJYKCPPMT39", "story_id": "44485", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the trip to organization land was great .", "storylet_id": "222425"}], [{"original_text": "the Christmas tree was amazing!", "album_id": "72157625600077845", "photo_flickr_id": "5313289245", "setting": "first-2-pick-and-tell", "worker_id": "HLCKLJYKCPPMT39", "story_id": "44485", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the christmas tree was amazing !", "storylet_id": "222426"}], [{"original_text": "the fairs wheel with mickey was my favorite.", "album_id": "72157625600077845", "photo_flickr_id": "5314070460", "setting": "first-2-pick-and-tell", "worker_id": "HLCKLJYKCPPMT39", "story_id": "44485", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fairs wheel with mickey was my favorite .", "storylet_id": "222427"}], [{"original_text": "the lighting show was beautiful.", "album_id": "72157625600077845", "photo_flickr_id": "5313500383", "setting": "first-2-pick-and-tell", "worker_id": "HLCKLJYKCPPMT39", "story_id": "44485", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the lighting show was beautiful .", "storylet_id": "222428"}], [{"original_text": "the lighted city was beyond gorgeous .", "album_id": "72157625600077845", "photo_flickr_id": "5313599373", "setting": "first-2-pick-and-tell", "worker_id": "HLCKLJYKCPPMT39", "story_id": "44485", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lighted city was beyond gorgeous .", "storylet_id": "222429"}], [{"original_text": "My daughter loved being able to meet Tigger at our recent Disney adventure.", "album_id": "72157625600077845", "photo_flickr_id": "5313658180", "setting": "first-2-pick-and-tell", "worker_id": "PYUCBNUUPZYMQLE", "story_id": "44486", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my daughter loved being able to meet tigger at our recent organization adventure .", "storylet_id": "222430"}], [{"original_text": "We had never been during the Christmas holidays. The decorations were amazing.", "album_id": "72157625600077845", "photo_flickr_id": "5313871972", "setting": "first-2-pick-and-tell", "worker_id": "PYUCBNUUPZYMQLE", "story_id": "44486", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had never been during the christmas holidays . the decorations were amazing .", "storylet_id": "222431"}], [{"original_text": "My husband and son rode all the roller coasters while my daughter and I admired all the lights.", "album_id": "72157625600077845", "photo_flickr_id": "5314070460", "setting": "first-2-pick-and-tell", "worker_id": "PYUCBNUUPZYMQLE", "story_id": "44486", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my husband and son rode all the roller coasters while my daughter and i admired all the lights .", "storylet_id": "222432"}], [{"original_text": "They had an amazing light show the night we were there.", "album_id": "72157625600077845", "photo_flickr_id": "5313500383", "setting": "first-2-pick-and-tell", "worker_id": "PYUCBNUUPZYMQLE", "story_id": "44486", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had an amazing light show the night we were there .", "storylet_id": "222433"}], [{"original_text": "My husband even loved the lights after dark and was happy we had stayed late. It was a success.", "album_id": "72157625600077845", "photo_flickr_id": "5313599373", "setting": "first-2-pick-and-tell", "worker_id": "PYUCBNUUPZYMQLE", "story_id": "44486", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my husband even loved the lights after dark and was happy we had stayed late . it was a success .", "storylet_id": "222434"}], [{"original_text": "The day started off with a picture of Mr. Winnie The Pooh Bear and his Christmas hat.", "album_id": "72157625600077845", "photo_flickr_id": "5313678222", "setting": "last-3-pick-old-and-tell", "worker_id": "26XH3WNLFTRYXBY", "story_id": "44487", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day started off with a picture of mr. [female] the pooh bear and his christmas hat .", "storylet_id": "222435"}], [{"original_text": "We passed through the tallest lit tree, with colorful lights cascading through the tree.", "album_id": "72157625600077845", "photo_flickr_id": "5313289245", "setting": "last-3-pick-old-and-tell", "worker_id": "26XH3WNLFTRYXBY", "story_id": "44487", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we passed through the tallest lit tree , with colorful lights cascading through the tree .", "storylet_id": "222436"}], [{"original_text": "We saw beautiful lit rides that sparkled with fun. One had a large Mickey Mouse Head right in the front.", "album_id": "72157625600077845", "photo_flickr_id": "5314070460", "setting": "last-3-pick-old-and-tell", "worker_id": "26XH3WNLFTRYXBY", "story_id": "44487", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw beautiful lit rides that sparkled with fun . one had a large organization organization organization right in the front .", "storylet_id": "222437"}], [{"original_text": "We passed by the fountain that dances with any song.", "album_id": "72157625600077845", "photo_flickr_id": "5313500383", "setting": "last-3-pick-old-and-tell", "worker_id": "26XH3WNLFTRYXBY", "story_id": "44487", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we passed by the fountain that dances with any song .", "storylet_id": "222438"}], [{"original_text": "Then ended out trip through Santa Clauses red lit village.", "album_id": "72157625600077845", "photo_flickr_id": "5313599373", "setting": "last-3-pick-old-and-tell", "worker_id": "26XH3WNLFTRYXBY", "story_id": "44487", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then ended out trip through location location red lit village .", "storylet_id": "222439"}], [{"original_text": "I saw Winnie the Poo at a theme park in Singapore. ", "album_id": "72157625600077845", "photo_flickr_id": "5313678222", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44488", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i saw [female] the poo at a theme park in location .", "storylet_id": "222440"}], [{"original_text": "We visited during Christmas and the decorations were so colorful. ", "album_id": "72157625600077845", "photo_flickr_id": "5313289245", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44488", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we visited during christmas and the decorations were so colorful .", "storylet_id": "222441"}], [{"original_text": "I loved the classic look of some of the attraction, especially the retro mickey mouse. ", "album_id": "72157625600077845", "photo_flickr_id": "5314070460", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44488", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i loved the classic look of some of the attraction , especially the retro mickey mouse .", "storylet_id": "222442"}], [{"original_text": "The water show was stunning with lots of colors and people dancing. ", "album_id": "72157625600077845", "photo_flickr_id": "5313500383", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44488", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the water show was stunning with lots of colors and people dancing .", "storylet_id": "222443"}], [{"original_text": "But the best attraction by far was the castle. It looked like a fictional drawing come to life. ", "album_id": "72157625600077845", "photo_flickr_id": "5313599373", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44488", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but the best attraction by far was the castle . it looked like a fictional drawing come to life .", "storylet_id": "222444"}], [{"original_text": "We finally arrived to Disney World.", "album_id": "72157625600077845", "photo_flickr_id": "5313678222", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44489", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we finally arrived to location location .", "storylet_id": "222445"}], [{"original_text": "We came to a giant Christmas tree completely lit up.", "album_id": "72157625600077845", "photo_flickr_id": "5313289245", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44489", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we came to a giant christmas tree completely lit up .", "storylet_id": "222446"}], [{"original_text": "After that we found some large rides in the distance.", "album_id": "72157625600077845", "photo_flickr_id": "5314070460", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44489", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that we found some large rides in the distance .", "storylet_id": "222447"}], [{"original_text": "Then we watched an amazing water and light show.", "album_id": "72157625600077845", "photo_flickr_id": "5313500383", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44489", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we watched an amazing water and light show .", "storylet_id": "222448"}], [{"original_text": "The whole area had an amazing light display.", "album_id": "72157625600077845", "photo_flickr_id": "5313599373", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44489", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the whole area had an amazing light display .", "storylet_id": "222449"}], [{"original_text": "It is Christmas time and at my house \"I'm The Boss\" as the hat says and I really loved this gift.", "album_id": "72157625679317163", "photo_flickr_id": "5314271797", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44490", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is christmas time and at my house `` i 'm the boss '' as the hat says and i really loved this gift .", "storylet_id": "222450"}], [{"original_text": "Dads always love gifts of a festive nature such as socks or ties with little candy canes and Christmas pictures on them.", "album_id": "72157625679317163", "photo_flickr_id": "5314268677", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44490", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dads always love gifts of a festive nature such as socks or ties with little candy canes and christmas pictures on them .", "storylet_id": "222451"}], [{"original_text": "Here are my kids opening presents left by Santa under the tree which I am sure will bring smiles and cheer.", "album_id": "72157625679317163", "photo_flickr_id": "5314870210", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44490", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here are my kids opening presents left by location under the tree which i am sure will bring smiles and cheer .", "storylet_id": "222452"}], [{"original_text": "Our dog Ranger even has his Christmas collar on and seems to be getting in on the festivities going on here at the house on this Christmas.", "album_id": "72157625679317163", "photo_flickr_id": "5314898508", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44490", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our dog ranger even has his christmas collar on and seems to be getting in on the festivities going on here at the house on this christmas .", "storylet_id": "222453"}], [{"original_text": "It seems like every Christmas, now that video games are all the rage, that my son and a relative or friend spend hour after hour glued to the TV playing games but that is OK if it makes them happy on Christmas. ", "album_id": "72157625679317163", "photo_flickr_id": "5314902600", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44490", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it seems like every christmas , now that video games are all the rage , that my son and a relative or friend spend hour after hour glued to the tv playing games but that is ok if it makes them happy on christmas .", "storylet_id": "222454"}], [{"original_text": "Christmas this year was wonderful.", "album_id": "72157625679317163", "photo_flickr_id": "5314266161", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44491", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "christmas this year was wonderful .", "storylet_id": "222455"}], [{"original_text": "Everyone got so many great gifts.", "album_id": "72157625679317163", "photo_flickr_id": "5314268677", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44491", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone got so many great gifts .", "storylet_id": "222456"}], [{"original_text": "We all woke up really early to open our presents.", "album_id": "72157625679317163", "photo_flickr_id": "5314870210", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44491", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all woke up really early to open our presents .", "storylet_id": "222457"}], [{"original_text": "We were all so happy with our gifts.", "album_id": "72157625679317163", "photo_flickr_id": "5314881008", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44491", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were all so happy with our gifts .", "storylet_id": "222458"}], [{"original_text": "I love Christmas with my family!", "album_id": "72157625679317163", "photo_flickr_id": "5314304789", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44491", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love christmas with my family !", "storylet_id": "222459"}], [{"original_text": "It was Christmas morning at our house.", "album_id": "72157625679317163", "photo_flickr_id": "5314271797", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44492", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was christmas morning at our house .", "storylet_id": "222460"}], [{"original_text": "Time to open presents, dad got new boxers.", "album_id": "72157625679317163", "photo_flickr_id": "5314268677", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44492", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "time to open presents , dad got new boxers .", "storylet_id": "222461"}], [{"original_text": "All the kids had a great time opening their gifts.", "album_id": "72157625679317163", "photo_flickr_id": "5314870210", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44492", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the kids had a great time opening their gifts .", "storylet_id": "222462"}], [{"original_text": "Even the family dog was in a joyous spirt.", "album_id": "72157625679317163", "photo_flickr_id": "5314898508", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44492", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the family dog was in a joyous spirt .", "storylet_id": "222463"}], [{"original_text": "Mom and dad's favorite part of the day is when the boys got along.", "album_id": "72157625679317163", "photo_flickr_id": "5314902600", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44492", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mom and dad 's favorite part of the day is when the boys got along .", "storylet_id": "222464"}], [{"original_text": "My husband gives the go sign to open presents. He is the BOSS after all.", "album_id": "72157625679317163", "photo_flickr_id": "5314271797", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44493", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband gives the go sign to open presents . he is the boss after all .", "storylet_id": "222465"}], [{"original_text": "Look at his socks. Just what he always wanted.", "album_id": "72157625679317163", "photo_flickr_id": "5314268677", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44493", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look at his socks . just what he always wanted .", "storylet_id": "222466"}], [{"original_text": "The kids couldn't wait to find out what they got this year.", "album_id": "72157625679317163", "photo_flickr_id": "5314870210", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44493", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids could n't wait to find out what they got this year .", "storylet_id": "222467"}], [{"original_text": "The dog wonders where her present is.", "album_id": "72157625679317163", "photo_flickr_id": "5314898508", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44493", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dog wonders where her present is .", "storylet_id": "222468"}], [{"original_text": "After all the gifts were done it was time to try out the new game system.", "album_id": "72157625679317163", "photo_flickr_id": "5314902600", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44493", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after all the gifts were done it was time to try out the new game system .", "storylet_id": "222469"}], [{"original_text": "Christmas morning in the Johnson household was always a madhouse. Tim Johnson would put on the latest weird hat his wife had gotten him. ", "album_id": "72157625679317163", "photo_flickr_id": "5314271797", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44494", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "christmas morning in the johnson household was always a madhouse . [male] johnson would put on the latest weird hat his wife had gotten him .", "storylet_id": "222470"}], [{"original_text": "Every present got photographed, even underwear.", "album_id": "72157625679317163", "photo_flickr_id": "5314268677", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44494", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "every present got photographed , even underwear .", "storylet_id": "222471"}], [{"original_text": "The kids ripped open presents like maniacs.", "album_id": "72157625679317163", "photo_flickr_id": "5314870210", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44494", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids ripped open presents like maniacs .", "storylet_id": "222472"}], [{"original_text": "The dog Chester would get into it all, running around and barking.", "album_id": "72157625679317163", "photo_flickr_id": "5314898508", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44494", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dog [male] would get into it all , running around and barking .", "storylet_id": "222473"}], [{"original_text": "The only thing that would calm the kids in time was the latest new video game.", "album_id": "72157625679317163", "photo_flickr_id": "5314902600", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44494", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the only thing that would calm the kids in time was the latest new video game .", "storylet_id": "222474"}], [{"original_text": "And everyone wants to help with the new addition to the house.", "album_id": "72157603031133447", "photo_flickr_id": "1931163204", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "44495", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "and everyone wants to help with the new addition to the house .", "storylet_id": "222475"}], [{"original_text": "Some methods of aid are more helpful than others, though.", "album_id": "72157603031133447", "photo_flickr_id": "1930334665", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "44495", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some methods of aid are more helpful than others , though .", "storylet_id": "222476"}], [{"original_text": "Picking out the perfect tree is an outing in its own right. ", "album_id": "72157603031133447", "photo_flickr_id": "1930335215", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "44495", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "picking out the perfect tree is an outing in its own right .", "storylet_id": "222477"}], [{"original_text": "Something to bring the entire family together to observe carefully and ensure the perfect pick. ", "album_id": "72157603031133447", "photo_flickr_id": "1930339007", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "44495", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "something to bring the entire family together to observe carefully and ensure the perfect pick .", "storylet_id": "222478"}], [{"original_text": "In the end it's a day well spent.", "album_id": "72157603031133447", "photo_flickr_id": "1931170618", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "44495", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end it 's a day well spent .", "storylet_id": "222479"}], [{"original_text": "The annual trip to the campgrounds is this weekend and the family was prepared to go.", "album_id": "72157603031133447", "photo_flickr_id": "1931167182", "setting": "first-2-pick-and-tell", "worker_id": "CFLATANNZ1GXODF", "story_id": "44496", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the annual trip to the campgrounds is this weekend and the family was prepared to go .", "storylet_id": "222480"}], [{"original_text": "When we arrived, the kids got to ride some ponies.", "album_id": "72157603031133447", "photo_flickr_id": "1931162174", "setting": "first-2-pick-and-tell", "worker_id": "CFLATANNZ1GXODF", "story_id": "44496", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when we arrived , the kids got to ride some ponies .", "storylet_id": "222481"}], [{"original_text": "They also got to play on some equipment they had there.", "album_id": "72157603031133447", "photo_flickr_id": "1930334665", "setting": "first-2-pick-and-tell", "worker_id": "CFLATANNZ1GXODF", "story_id": "44496", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they also got to play on some equipment they had there .", "storylet_id": "222482"}], [{"original_text": "Even the family dog had a good time as he was fed well.", "album_id": "72157603031133447", "photo_flickr_id": "1931165290", "setting": "first-2-pick-and-tell", "worker_id": "CFLATANNZ1GXODF", "story_id": "44496", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the family dog had a good time as he was fed well .", "storylet_id": "222483"}], [{"original_text": "There was some work to be done though as we cleared out some trees.", "album_id": "72157603031133447", "photo_flickr_id": "1930335215", "setting": "first-2-pick-and-tell", "worker_id": "CFLATANNZ1GXODF", "story_id": "44496", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was some work to be done though as we cleared out some trees .", "storylet_id": "222484"}], [{"original_text": "The family went on a camping trip.", "album_id": "72157603031133447", "photo_flickr_id": "1931167182", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "44497", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family went on a camping trip .", "storylet_id": "222485"}], [{"original_text": "For the youngest, it was his first time camping.", "album_id": "72157603031133447", "photo_flickr_id": "1931162174", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "44497", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "for the youngest , it was his first time camping .", "storylet_id": "222486"}], [{"original_text": "The children mostly goofed off while the adults set up camp.", "album_id": "72157603031133447", "photo_flickr_id": "1930334665", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "44497", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the children mostly goofed off while the adults set up camp .", "storylet_id": "222487"}], [{"original_text": "It was time to hunt and the dog was given an item to catch its scent.", "album_id": "72157603031133447", "photo_flickr_id": "1931165290", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "44497", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was time to hunt and the dog was given an item to catch its scent .", "storylet_id": "222488"}], [{"original_text": "They headed off to find some deer.", "album_id": "72157603031133447", "photo_flickr_id": "1930335215", "setting": "last-3-pick-old-and-tell", "worker_id": "A5LDTJT6SIKWULN", "story_id": "44497", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they headed off to find some deer .", "storylet_id": "222489"}], [{"original_text": "A family gathers together for their annual Christmas Tree picking.", "album_id": "72157603031133447", "photo_flickr_id": "1931167182", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44498", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a family gathers together for their annual christmas tree picking .", "storylet_id": "222490"}], [{"original_text": "The young boy rides a pony for the first time.", "album_id": "72157603031133447", "photo_flickr_id": "1931162174", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44498", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the young boy rides a pony for the first time .", "storylet_id": "222491"}], [{"original_text": "He plays around in the net for the tree.", "album_id": "72157603031133447", "photo_flickr_id": "1930334665", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44498", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he plays around in the net for the tree .", "storylet_id": "222492"}], [{"original_text": "A dog eats out of the woman's hand gently.", "album_id": "72157603031133447", "photo_flickr_id": "1931165290", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44498", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a dog eats out of the woman 's hand gently .", "storylet_id": "222493"}], [{"original_text": "Finally the family finds the perfect tree.", "album_id": "72157603031133447", "photo_flickr_id": "1930335215", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44498", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the family finds the perfect tree .", "storylet_id": "222494"}], [{"original_text": "The field was very green.", "album_id": "72157603031133447", "photo_flickr_id": "1931163204", "setting": "last-3-pick-old-and-tell", "worker_id": "TYG4FZOGLRFMP0W", "story_id": "44499", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the field was very green .", "storylet_id": "222495"}], [{"original_text": "The slide was red today.", "album_id": "72157603031133447", "photo_flickr_id": "1930334665", "setting": "last-3-pick-old-and-tell", "worker_id": "TYG4FZOGLRFMP0W", "story_id": "44499", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the slide was red today .", "storylet_id": "222496"}], [{"original_text": "The people were tired from jogging.", "album_id": "72157603031133447", "photo_flickr_id": "1930335215", "setting": "last-3-pick-old-and-tell", "worker_id": "TYG4FZOGLRFMP0W", "story_id": "44499", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people were tired from jogging .", "storylet_id": "222497"}], [{"original_text": "The people almost made it to the end.", "album_id": "72157603031133447", "photo_flickr_id": "1930339007", "setting": "last-3-pick-old-and-tell", "worker_id": "TYG4FZOGLRFMP0W", "story_id": "44499", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people almost made it to the end .", "storylet_id": "222498"}], [{"original_text": "They celebrated with coffee.", "album_id": "72157603031133447", "photo_flickr_id": "1931170618", "setting": "last-3-pick-old-and-tell", "worker_id": "TYG4FZOGLRFMP0W", "story_id": "44499", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they celebrated with coffee .", "storylet_id": "222499"}], [{"original_text": "It was Christmas eve and the family got together for the celebration.", "album_id": "212372", "photo_flickr_id": "8556441", "setting": "first-2-pick-and-tell", "worker_id": "03BH1L4PWX2QANO", "story_id": "44500", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was christmas eve and the family got together for the celebration .", "storylet_id": "222500"}], [{"original_text": "Almost everybody showed up, even distant relatives.", "album_id": "212372", "photo_flickr_id": "8556348", "setting": "first-2-pick-and-tell", "worker_id": "03BH1L4PWX2QANO", "story_id": "44500", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "almost everybody showed up , even distant relatives .", "storylet_id": "222501"}], [{"original_text": "After diner it was time to see what was under the tree. ", "album_id": "212372", "photo_flickr_id": "8556089", "setting": "first-2-pick-and-tell", "worker_id": "03BH1L4PWX2QANO", "story_id": "44500", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after diner it was time to see what was under the tree .", "storylet_id": "222502"}], [{"original_text": "Everybody had a great time unwrapping presents. ", "album_id": "212372", "photo_flickr_id": "8556403", "setting": "first-2-pick-and-tell", "worker_id": "03BH1L4PWX2QANO", "story_id": "44500", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everybody had a great time unwrapping presents .", "storylet_id": "222503"}], [{"original_text": "Some were so tired from all the excitement they needed to take naps. ", "album_id": "212372", "photo_flickr_id": "8556517", "setting": "first-2-pick-and-tell", "worker_id": "03BH1L4PWX2QANO", "story_id": "44500", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some were so tired from all the excitement they needed to take naps .", "storylet_id": "222504"}], [{"original_text": "The kids were so eager to open the presents they got for Christmas .", "album_id": "212372", "photo_flickr_id": "8555947", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "44501", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids were so eager to open the presents they got for christmas .", "storylet_id": "222505"}], [{"original_text": "Stacey went first to pick her present , she was so excited .", "album_id": "212372", "photo_flickr_id": "8556089", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "44501", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] went first to pick her present , she was so excited .", "storylet_id": "222506"}], [{"original_text": "Helen didn't understand her new gadget.", "album_id": "212372", "photo_flickr_id": "8556144", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "44501", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] did n't understand her new gadget .", "storylet_id": "222507"}], [{"original_text": "Here we are taking the family picture, the happiest family on earth.", "album_id": "212372", "photo_flickr_id": "8556441", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "44501", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here we are taking the family picture , the happiest family on earth .", "storylet_id": "222508"}], [{"original_text": "Courtney was so tired after the excitement that she dozed off at the end.", "album_id": "212372", "photo_flickr_id": "8556517", "setting": "first-2-pick-and-tell", "worker_id": "YQVFXMNJE5R5YET", "story_id": "44501", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] was so tired after the excitement that she dozed off at the end .", "storylet_id": "222509"}], [{"original_text": "These kids are enjoying Christmas morning.", "album_id": "212372", "photo_flickr_id": "8555947", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44502", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these kids are enjoying christmas morning .", "storylet_id": "222510"}], [{"original_text": "Jane is excited to see her presents.", "album_id": "212372", "photo_flickr_id": "8556089", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44502", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] is excited to see her presents .", "storylet_id": "222511"}], [{"original_text": "Cheryl got a magazine subscription.", "album_id": "212372", "photo_flickr_id": "8556144", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44502", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] got a magazine subscription .", "storylet_id": "222512"}], [{"original_text": "Grandma and Grandpa are taking a picture with the grandkids.", "album_id": "212372", "photo_flickr_id": "8556441", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44502", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "grandma and grandpa are taking a picture with the grandkids .", "storylet_id": "222513"}], [{"original_text": "Mom put on her new bathrobe and fell to sleep.", "album_id": "212372", "photo_flickr_id": "8556517", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44502", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mom put on her new bathrobe and fell to sleep .", "storylet_id": "222514"}], [{"original_text": "Kids having a good time on Christmas morning. ", "album_id": "212372", "photo_flickr_id": "8555947", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "44503", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "kids having a good time on christmas morning .", "storylet_id": "222515"}], [{"original_text": "Jamie trying to find all her present to grandma. ", "album_id": "212372", "photo_flickr_id": "8556089", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "44503", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] trying to find all her present to grandma .", "storylet_id": "222516"}], [{"original_text": "Grandma being surprised opening her present. ", "album_id": "212372", "photo_flickr_id": "8556144", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "44503", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandma being surprised opening her present .", "storylet_id": "222517"}], [{"original_text": "The kids taking a pic with their grandparents. ", "album_id": "212372", "photo_flickr_id": "8556441", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "44503", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids taking a pic with their grandparents .", "storylet_id": "222518"}], [{"original_text": "Me being a sleepyhead caught taking a nap. ", "album_id": "212372", "photo_flickr_id": "8556517", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "44503", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "me being a sleepyhead caught taking a nap .", "storylet_id": "222519"}], [{"original_text": "My family and I love Christmas morning!", "album_id": "212372", "photo_flickr_id": "8556441", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44504", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family and i love christmas morning !", "storylet_id": "222520"}], [{"original_text": "Everyone loves being together and opening presents.", "album_id": "212372", "photo_flickr_id": "8556348", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44504", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone loves being together and opening presents .", "storylet_id": "222521"}], [{"original_text": "Julie is excited to open her presents.", "album_id": "212372", "photo_flickr_id": "8556089", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44504", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] is excited to open her presents .", "storylet_id": "222522"}], [{"original_text": "This big present was exactly what she wanted.", "album_id": "212372", "photo_flickr_id": "8556403", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44504", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this big present was exactly what she wanted .", "storylet_id": "222523"}], [{"original_text": "But at the end of the day we are always all tuckered out.", "album_id": "212372", "photo_flickr_id": "8556517", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44504", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but at the end of the day we are always all tuckered out .", "storylet_id": "222524"}], [{"original_text": "They picked out their Christmas tree for the living room.", "album_id": "50154", "photo_flickr_id": "1987759", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44505", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they picked out their christmas tree for the living room .", "storylet_id": "222525"}], [{"original_text": "Then they brought it home to decorate it.", "album_id": "50154", "photo_flickr_id": "1987747", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44505", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then they brought it home to decorate it .", "storylet_id": "222526"}], [{"original_text": "They hung up their stockings over the bookshelf.", "album_id": "50154", "photo_flickr_id": "1987740", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44505", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they hung up their stockings over the bookshelf .", "storylet_id": "222527"}], [{"original_text": "After that they put the final decoration on the top of the tree.", "album_id": "50154", "photo_flickr_id": "1987656", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44505", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that they put the final decoration on the top of the tree .", "storylet_id": "222528"}], [{"original_text": "The Christmas tree look so beautiful in the window.", "album_id": "50154", "photo_flickr_id": "1987644", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44505", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the christmas tree look so beautiful in the window .", "storylet_id": "222529"}], [{"original_text": "After work, a woman picked out a nice Christmas tree from a tree lot near her home.", "album_id": "50154", "photo_flickr_id": "1987759", "setting": "first-2-pick-and-tell", "worker_id": "ZA3HO6OGU936RXV", "story_id": "44506", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after work , a woman picked out a nice christmas tree from a tree lot near her home .", "storylet_id": "222530"}], [{"original_text": "Arriving home, her husband helped to bring the tree in and began sorting through their collection of Christmas lights.", "album_id": "50154", "photo_flickr_id": "1987747", "setting": "first-2-pick-and-tell", "worker_id": "ZA3HO6OGU936RXV", "story_id": "44506", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "arriving home , her husband helped to bring the tree in and began sorting through their collection of christmas lights .", "storylet_id": "222531"}], [{"original_text": "While he wrapped the lights around the tree, she began adding ornaments in various shapes and sizes.", "album_id": "50154", "photo_flickr_id": "1987680", "setting": "first-2-pick-and-tell", "worker_id": "ZA3HO6OGU936RXV", "story_id": "44506", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "while he wrapped the lights around the tree , she began adding ornaments in various shapes and sizes .", "storylet_id": "222532"}], [{"original_text": "Her favorite ornament was shaped like her pet cat.", "album_id": "50154", "photo_flickr_id": "1987721", "setting": "first-2-pick-and-tell", "worker_id": "ZA3HO6OGU936RXV", "story_id": "44506", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her favorite ornament was shaped like her pet cat .", "storylet_id": "222533"}], [{"original_text": "After all the ornaments were added, she finished decorating by placing a long red tree topper on the top branch.", "album_id": "50154", "photo_flickr_id": "1987656", "setting": "first-2-pick-and-tell", "worker_id": "ZA3HO6OGU936RXV", "story_id": "44506", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after all the ornaments were added , she finished decorating by placing a long red tree topper on the top branch .", "storylet_id": "222534"}], [{"original_text": "Jane is cutting down a tree.", "album_id": "50154", "photo_flickr_id": "1987759", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44507", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] is cutting down a tree .", "storylet_id": "222535"}], [{"original_text": "They put the tree up and Dave strings the lights.", "album_id": "50154", "photo_flickr_id": "1987747", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44507", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they put the tree up and [male] strings the lights .", "storylet_id": "222536"}], [{"original_text": "They both have their own stockings.", "album_id": "50154", "photo_flickr_id": "1987740", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44507", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they both have their own stockings .", "storylet_id": "222537"}], [{"original_text": "Jane puts the ornament on top of the tree.", "album_id": "50154", "photo_flickr_id": "1987656", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44507", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] puts the ornament on top of the tree .", "storylet_id": "222538"}], [{"original_text": "They both had fun decorating and putting up the tree.", "album_id": "50154", "photo_flickr_id": "1987644", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44507", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they both had fun decorating and putting up the tree .", "storylet_id": "222539"}], [{"original_text": "It's christmas time, let's get a tree.", "album_id": "50154", "photo_flickr_id": "1987759", "setting": "last-3-pick-old-and-tell", "worker_id": "8CV08U6YFDJIHF4", "story_id": "44508", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's christmas time , let 's get a tree .", "storylet_id": "222540"}], [{"original_text": "The worst part of decorating....detangling the lights from last year.", "album_id": "50154", "photo_flickr_id": "1987747", "setting": "last-3-pick-old-and-tell", "worker_id": "8CV08U6YFDJIHF4", "story_id": "44508", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the worst part of decorating ... .detangling the lights from last year .", "storylet_id": "222541"}], [{"original_text": "Black and silver christmas balls this year.", "album_id": "50154", "photo_flickr_id": "1987680", "setting": "last-3-pick-old-and-tell", "worker_id": "8CV08U6YFDJIHF4", "story_id": "44508", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "black and silver christmas balls this year .", "storylet_id": "222542"}], [{"original_text": "And of course can't forget the cute kitty decorations.", "album_id": "50154", "photo_flickr_id": "1987721", "setting": "last-3-pick-old-and-tell", "worker_id": "8CV08U6YFDJIHF4", "story_id": "44508", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and of course ca n't forget the cute kitty decorations .", "storylet_id": "222543"}], [{"original_text": "And last but not least, a star at the top.", "album_id": "50154", "photo_flickr_id": "1987656", "setting": "last-3-pick-old-and-tell", "worker_id": "8CV08U6YFDJIHF4", "story_id": "44508", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and last but not least , a star at the top .", "storylet_id": "222544"}], [{"original_text": "I love decorating for Christmas.", "album_id": "50154", "photo_flickr_id": "1987759", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44509", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love decorating for christmas .", "storylet_id": "222545"}], [{"original_text": "Even untangling the lights has its appeal.", "album_id": "50154", "photo_flickr_id": "1987747", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44509", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even untangling the lights has its appeal .", "storylet_id": "222546"}], [{"original_text": "Hanging up the stockings brightens up the room.", "album_id": "50154", "photo_flickr_id": "1987740", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44509", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "hanging up the stockings brightens up the room .", "storylet_id": "222547"}], [{"original_text": "The tree topper finishes off the room.", "album_id": "50154", "photo_flickr_id": "1987656", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44509", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the tree topper finishes off the room .", "storylet_id": "222548"}], [{"original_text": "Everything looks fantastic!", "album_id": "50154", "photo_flickr_id": "1987644", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44509", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everything looks fantastic !", "storylet_id": "222549"}], [{"original_text": "The student was really happy about the road trip she was taking with a fellow classmate, and she enjoyed taking photos of the freeway they were traveling on.", "album_id": "72157601643672229", "photo_flickr_id": "1227217594", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44510", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the student was really happy about the road trip she was taking with a fellow classmate , and she enjoyed taking photos of the freeway they were traveling on .", "storylet_id": "222550"}], [{"original_text": "When the classmates pulled up to a toll booth, they both fumbled in their wallets for dollar bills to pay the toll.", "album_id": "72157601643672229", "photo_flickr_id": "1227212218", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44510", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when the classmates pulled up to a toll booth , they both fumbled in their wallets for dollar bills to pay the toll .", "storylet_id": "222551"}], [{"original_text": "When the classmates came upon a bridge that they both remembered from childhood, one of them snapped a quick picture of he bridge for posterity.", "album_id": "72157601643672229", "photo_flickr_id": "1227220086", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44510", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when the classmates came upon a bridge that they both remembered from childhood , one of them snapped a quick picture of he bridge for posterity .", "storylet_id": "222552"}], [{"original_text": "Neither of the students had seen snow before, and were really happy to find it snowing during their trip.", "album_id": "72157601643672229", "photo_flickr_id": "1226349497", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44510", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "neither of the students had seen snow before , and were really happy to find it snowing during their trip .", "storylet_id": "222553"}], [{"original_text": "As soon as they came upon a rest stop, they stopped the car and got out to walk around and marvel at the snow.", "album_id": "72157601643672229", "photo_flickr_id": "1227219386", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44510", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as soon as they came upon a rest stop , they stopped the car and got out to walk around and marvel at the snow .", "storylet_id": "222554"}], [{"original_text": "We took a road trip up north on a cloudy day.", "album_id": "72157601643672229", "photo_flickr_id": "1226349601", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44511", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a road trip up north on a cloudy day .", "storylet_id": "222555"}], [{"original_text": "Then we had to stop and pay the tolls.", "album_id": "72157601643672229", "photo_flickr_id": "1226359305", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44511", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we had to stop and pay the tolls .", "storylet_id": "222556"}], [{"original_text": "We passed by many open fields.", "album_id": "72157601643672229", "photo_flickr_id": "1226354999", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44511", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we passed by many open fields .", "storylet_id": "222557"}], [{"original_text": "It began to snow outside.", "album_id": "72157601643672229", "photo_flickr_id": "1226349497", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44511", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it began to snow outside .", "storylet_id": "222558"}], [{"original_text": "After that we stopped at one of the parks to see the snow.", "album_id": "72157601643672229", "photo_flickr_id": "1227214836", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44511", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that we stopped at one of the parks to see the snow .", "storylet_id": "222559"}], [{"original_text": "It was rainy when Mona started her trip.", "album_id": "72157601643672229", "photo_flickr_id": "1226349601", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44512", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was rainy when [female] started her trip .", "storylet_id": "222560"}], [{"original_text": "She drove for hours and passed some toll roads.", "album_id": "72157601643672229", "photo_flickr_id": "1226359305", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44512", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she drove for hours and passed some toll roads .", "storylet_id": "222561"}], [{"original_text": "The sky continued to darken.", "album_id": "72157601643672229", "photo_flickr_id": "1226354999", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44512", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sky continued to darken .", "storylet_id": "222562"}], [{"original_text": "All of the trees that she passed were bare.", "album_id": "72157601643672229", "photo_flickr_id": "1226349497", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44512", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the trees that she passed were bare .", "storylet_id": "222563"}], [{"original_text": "The park was dark and snow covered; Mona thought that it was beautiful.", "album_id": "72157601643672229", "photo_flickr_id": "1227214836", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44512", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the park was dark and snow covered ; [female] thought that it was beautiful .", "storylet_id": "222564"}], [{"original_text": "The clouds began to swarm overhead on the highway.", "album_id": "72157601643672229", "photo_flickr_id": "1227217594", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44513", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the clouds began to swarm overhead on the highway .", "storylet_id": "222565"}], [{"original_text": "The stop at the toll booth was a chilling one.", "album_id": "72157601643672229", "photo_flickr_id": "1227212218", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44513", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the stop at the toll booth was a chilling one .", "storylet_id": "222566"}], [{"original_text": "The whole highway had a cold grey tone to it.", "album_id": "72157601643672229", "photo_flickr_id": "1227220086", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44513", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the whole highway had a cold grey tone to it .", "storylet_id": "222567"}], [{"original_text": "Suddenly, the snow began dusting everywhere.", "album_id": "72157601643672229", "photo_flickr_id": "1226349497", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44513", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "suddenly , the snow began dusting everywhere .", "storylet_id": "222568"}], [{"original_text": "It got thicker and thicker, and colder and colder.", "album_id": "72157601643672229", "photo_flickr_id": "1227219386", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44513", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it got thicker and thicker , and colder and colder .", "storylet_id": "222569"}], [{"original_text": "On my way back home to Wisconsin in this frigid weather. ", "album_id": "72157601643672229", "photo_flickr_id": "1227217594", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "44514", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on my way back home to location in this frigid weather .", "storylet_id": "222570"}], [{"original_text": "Roads looking pretty slick as I can get to the toll booth. ", "album_id": "72157601643672229", "photo_flickr_id": "1227212218", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "44514", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "roads looking pretty slick as i can get to the toll booth .", "storylet_id": "222571"}], [{"original_text": "Nothing but gray skies as I cross the bridge. ", "album_id": "72157601643672229", "photo_flickr_id": "1227220086", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "44514", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nothing but gray skies as i cross the bridge .", "storylet_id": "222572"}], [{"original_text": "Took a little rest stop to take in the scenary. ", "album_id": "72157601643672229", "photo_flickr_id": "1226349497", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "44514", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "took a little rest stop to take in the scenary .", "storylet_id": "222573"}], [{"original_text": "The white snow looking marvelous as I snap some pics. ", "album_id": "72157601643672229", "photo_flickr_id": "1227219386", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "44514", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the white snow looking marvelous as i snap some pics .", "storylet_id": "222574"}], [{"original_text": "This is our annual trip to the lake. It looks quite dry and barron.", "album_id": "59962", "photo_flickr_id": "2383604", "setting": "first-2-pick-and-tell", "worker_id": "Q55LUZZE59R9ZZB", "story_id": "44515", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is our annual trip to the lake . it looks quite dry and barron .", "storylet_id": "222575"}], [{"original_text": "This is the actual lake. The water is quite low right now.", "album_id": "59962", "photo_flickr_id": "2383555", "setting": "first-2-pick-and-tell", "worker_id": "Q55LUZZE59R9ZZB", "story_id": "44515", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the actual lake . the water is quite low right now .", "storylet_id": "222576"}], [{"original_text": "We see a variety of different wildlife. Lots of different ducks and swans.", "album_id": "59962", "photo_flickr_id": "2383546", "setting": "first-2-pick-and-tell", "worker_id": "Q55LUZZE59R9ZZB", "story_id": "44515", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we see a variety of different wildlife . lots of different ducks and swans .", "storylet_id": "222577"}], [{"original_text": "This is a long walkway that litterly goes almost across the lake.", "album_id": "59962", "photo_flickr_id": "2383585", "setting": "first-2-pick-and-tell", "worker_id": "Q55LUZZE59R9ZZB", "story_id": "44515", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a long walkway that litterly goes almost across the lake .", "storylet_id": "222578"}], [{"original_text": "Here we have acorns on the trees. Its getting to be autumn.", "album_id": "59962", "photo_flickr_id": "2383570", "setting": "first-2-pick-and-tell", "worker_id": "Q55LUZZE59R9ZZB", "story_id": "44515", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here we have acorns on the trees . its getting to be autumn .", "storylet_id": "222579"}], [{"original_text": "We walked out to the pier over the water.", "album_id": "59962", "photo_flickr_id": "2383631", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44516", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we walked out to the pier over the water .", "storylet_id": "222580"}], [{"original_text": "First we saw a little brown bird in the lake.", "album_id": "59962", "photo_flickr_id": "2383614", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44516", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we saw a little brown bird in the lake .", "storylet_id": "222581"}], [{"original_text": "Then we saw a large white bird looking for fish.", "album_id": "59962", "photo_flickr_id": "2383539", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44516", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we saw a large white bird looking for fish .", "storylet_id": "222582"}], [{"original_text": "After that we watched as they flew over the water.", "album_id": "59962", "photo_flickr_id": "2383543", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44516", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that we watched as they flew over the water .", "storylet_id": "222583"}], [{"original_text": "At the end of our trip, we saw a small green bird on top of the tree.", "album_id": "59962", "photo_flickr_id": "2383606", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44516", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of our trip , we saw a small green bird on top of the tree .", "storylet_id": "222584"}], [{"original_text": "This year I went fishing at the lake.", "album_id": "59962", "photo_flickr_id": "2383604", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44517", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this year i went fishing at the lake .", "storylet_id": "222585"}], [{"original_text": "The water was nice and the weather was warm.", "album_id": "59962", "photo_flickr_id": "2383555", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44517", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water was nice and the weather was warm .", "storylet_id": "222586"}], [{"original_text": "I saw a few large birds near the shore.", "album_id": "59962", "photo_flickr_id": "2383546", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44517", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i saw a few large birds near the shore .", "storylet_id": "222587"}], [{"original_text": "There was nobody else on the docks!", "album_id": "59962", "photo_flickr_id": "2383585", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44517", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was nobody else on the docks !", "storylet_id": "222588"}], [{"original_text": "Afterwards I collected some pinecones for dinner.", "album_id": "59962", "photo_flickr_id": "2383570", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44517", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards i collected some pinecones for dinner .", "storylet_id": "222589"}], [{"original_text": "Taking a walk along the lake. Near the docks.", "album_id": "59962", "photo_flickr_id": "2383631", "setting": "last-3-pick-old-and-tell", "worker_id": "8CV08U6YFDJIHF4", "story_id": "44518", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "taking a walk along the lake . near the docks .", "storylet_id": "222590"}], [{"original_text": "I saw a lone seagull floating along the water.", "album_id": "59962", "photo_flickr_id": "2383614", "setting": "last-3-pick-old-and-tell", "worker_id": "8CV08U6YFDJIHF4", "story_id": "44518", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw a lone seagull floating along the water .", "storylet_id": "222591"}], [{"original_text": "And then a beautiful swan.", "album_id": "59962", "photo_flickr_id": "2383539", "setting": "last-3-pick-old-and-tell", "worker_id": "8CV08U6YFDJIHF4", "story_id": "44518", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and then a beautiful swan .", "storylet_id": "222592"}], [{"original_text": "This seagull was probably looking for some food.", "album_id": "59962", "photo_flickr_id": "2383543", "setting": "last-3-pick-old-and-tell", "worker_id": "8CV08U6YFDJIHF4", "story_id": "44518", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this seagull was probably looking for some food .", "storylet_id": "222593"}], [{"original_text": "And this little guy was perched high up on a tree.", "album_id": "59962", "photo_flickr_id": "2383606", "setting": "last-3-pick-old-and-tell", "worker_id": "8CV08U6YFDJIHF4", "story_id": "44518", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and this little guy was perched high up on a tree .", "storylet_id": "222594"}], [{"original_text": "It was a calm day at the lake.", "album_id": "59962", "photo_flickr_id": "2383604", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44519", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a calm day at the lake .", "storylet_id": "222595"}], [{"original_text": "Animals were swimming around.", "album_id": "59962", "photo_flickr_id": "2383555", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44519", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "animals were swimming around .", "storylet_id": "222596"}], [{"original_text": "Birds were exploring the water.", "album_id": "59962", "photo_flickr_id": "2383546", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44519", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "birds were exploring the water .", "storylet_id": "222597"}], [{"original_text": "There wasn't a single person around.", "album_id": "59962", "photo_flickr_id": "2383585", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44519", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was n't a single person around .", "storylet_id": "222598"}], [{"original_text": "It was a great day out by the lake.", "album_id": "59962", "photo_flickr_id": "2383570", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44519", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great day out by the lake .", "storylet_id": "222599"}], [{"original_text": "It is Christmas finally, our tree is not really that great.", "album_id": "64557", "photo_flickr_id": "2575087", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "44520", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is christmas finally , our tree is not really that great .", "storylet_id": "222600"}], [{"original_text": "Time to open up some presents, what a mess we have made.", "album_id": "64557", "photo_flickr_id": "2575037", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "44520", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "time to open up some presents , what a mess we have made .", "storylet_id": "222601"}], [{"original_text": "Everyone is having a good time today.", "album_id": "64557", "photo_flickr_id": "2574995", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "44520", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone is having a good time today .", "storylet_id": "222602"}], [{"original_text": "Time to start cooking for everyone.", "album_id": "64557", "photo_flickr_id": "2575076", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "44520", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "time to start cooking for everyone .", "storylet_id": "222603"}], [{"original_text": "Nice end to the day eating a nice meal.", "album_id": "64557", "photo_flickr_id": "2575000", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "44520", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "nice end to the day eating a nice meal .", "storylet_id": "222604"}], [{"original_text": "They prepared Christmas dinner for everyone.", "album_id": "64557", "photo_flickr_id": "2575076", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44521", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they prepared christmas dinner for everyone .", "storylet_id": "222605"}], [{"original_text": "The food was almost ready to be served.", "album_id": "64557", "photo_flickr_id": "2575067", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44521", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the food was almost ready to be served .", "storylet_id": "222606"}], [{"original_text": "Then they decorated the Christmas tree.", "album_id": "64557", "photo_flickr_id": "2575055", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44521", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they decorated the christmas tree .", "storylet_id": "222607"}], [{"original_text": "After the presents were opened, they put them together in the living room.", "album_id": "64557", "photo_flickr_id": "2575000", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44521", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the presents were opened , they put them together in the living room .", "storylet_id": "222608"}], [{"original_text": "At the end of the night, everyone was ready for bed.", "album_id": "64557", "photo_flickr_id": "2574995", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44521", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , everyone was ready for bed .", "storylet_id": "222609"}], [{"original_text": "We got ready for the housewarming party pretty quickly.", "album_id": "64557", "photo_flickr_id": "2575076", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "44522", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got ready for the housewarming party pretty quickly .", "storylet_id": "222610"}], [{"original_text": "My boyfriend is a great cook and can whip up a meal in an hour or less.", "album_id": "64557", "photo_flickr_id": "2575067", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "44522", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my boyfriend is a great cook and can whip up a meal in an hour or less .", "storylet_id": "222611"}], [{"original_text": "We decorated the living room with Christmas ornaments.", "album_id": "64557", "photo_flickr_id": "2575055", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "44522", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we decorated the living room with christmas ornaments .", "storylet_id": "222612"}], [{"original_text": "Laid items and futons all over the floor.", "album_id": "64557", "photo_flickr_id": "2575000", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "44522", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "laid items and futons all over the floor .", "storylet_id": "222613"}], [{"original_text": "And had a great time together with our friends.", "album_id": "64557", "photo_flickr_id": "2574995", "setting": "last-3-pick-old-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "44522", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and had a great time together with our friends .", "storylet_id": "222614"}], [{"original_text": "It was christmas Day.", "album_id": "64557", "photo_flickr_id": "2575087", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44523", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was christmas day .", "storylet_id": "222615"}], [{"original_text": "Everyone was wrapping all of their gifts", "album_id": "64557", "photo_flickr_id": "2575037", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44523", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was wrapping all of their gifts", "storylet_id": "222616"}], [{"original_text": "Family was laying around and having fun.", "album_id": "64557", "photo_flickr_id": "2574995", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44523", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "family was laying around and having fun .", "storylet_id": "222617"}], [{"original_text": "Mom was in the kitchen cooking.", "album_id": "64557", "photo_flickr_id": "2575076", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44523", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mom was in the kitchen cooking .", "storylet_id": "222618"}], [{"original_text": "Everyone had a great day.", "album_id": "64557", "photo_flickr_id": "2575000", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44523", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great day .", "storylet_id": "222619"}], [{"original_text": "The house was decorated and ready for the holidays.", "album_id": "64557", "photo_flickr_id": "2575087", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44524", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the house was decorated and ready for the holidays .", "storylet_id": "222620"}], [{"original_text": "We had a bit of a mess to clean up after wrapping gifts.", "album_id": "64557", "photo_flickr_id": "2575037", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44524", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a bit of a mess to clean up after wrapping gifts .", "storylet_id": "222621"}], [{"original_text": "We were tired, though, so we decided to rest on the couch first.", "album_id": "64557", "photo_flickr_id": "2574995", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44524", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were tired , though , so we decided to rest on the couch first .", "storylet_id": "222622"}], [{"original_text": "Afterwards, everyone helped out making dinner.", "album_id": "64557", "photo_flickr_id": "2575076", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44524", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards , everyone helped out making dinner .", "storylet_id": "222623"}], [{"original_text": "Once dinner was over, we all got to work cleaning up the mess we had made.", "album_id": "64557", "photo_flickr_id": "2575000", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44524", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once dinner was over , we all got to work cleaning up the mess we had made .", "storylet_id": "222624"}], [{"original_text": "Me and my brother Christmas morning!", "album_id": "72157602251536026", "photo_flickr_id": "1480638502", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "44525", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and my brother christmas morning !", "storylet_id": "222625"}], [{"original_text": "Even the dog got a stocking!", "album_id": "72157602251536026", "photo_flickr_id": "1480638316", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "44525", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the dog got a stocking !", "storylet_id": "222626"}], [{"original_text": "Dad wasn't ready for the day!", "album_id": "72157602251536026", "photo_flickr_id": "1480638552", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "44525", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad was n't ready for the day !", "storylet_id": "222627"}], [{"original_text": "Dressed for pictures after breakfast.", "album_id": "72157602251536026", "photo_flickr_id": "1480638722", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "44525", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dressed for pictures after breakfast .", "storylet_id": "222628"}], [{"original_text": "Grandma and grandpa visited!", "album_id": "72157602251536026", "photo_flickr_id": "1480638894", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "44525", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandma and grandpa visited !", "storylet_id": "222629"}], [{"original_text": "Dad and Jimmy tearing around the house on Christmas.", "album_id": "72157602251536026", "photo_flickr_id": "1479780427", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44526", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dad and [male] tearing around the house on christmas .", "storylet_id": "222630"}], [{"original_text": "Spot really liked his new Christmas toy.", "album_id": "72157602251536026", "photo_flickr_id": "1480638316", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44526", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "spot really liked his new christmas toy .", "storylet_id": "222631"}], [{"original_text": "Our family posing for a photo before we opened presents.", "album_id": "72157602251536026", "photo_flickr_id": "1480638722", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44526", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our family posing for a photo before we opened presents .", "storylet_id": "222632"}], [{"original_text": "All of the girls together on the couch.", "album_id": "72157602251536026", "photo_flickr_id": "1480638926", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44526", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of the girls together on the couch .", "storylet_id": "222633"}], [{"original_text": "Jimmy playing with his new toys after presents.", "album_id": "72157602251536026", "photo_flickr_id": "1480639062", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44526", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] playing with his new toys after presents .", "storylet_id": "222634"}], [{"original_text": "Having the family over for Christmas was great.", "album_id": "72157602251536026", "photo_flickr_id": "1479780427", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44527", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "having the family over for christmas was great .", "storylet_id": "222635"}], [{"original_text": "Even the dog got a stocking.", "album_id": "72157602251536026", "photo_flickr_id": "1480638316", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44527", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the dog got a stocking .", "storylet_id": "222636"}], [{"original_text": "We got some quality family photos.", "album_id": "72157602251536026", "photo_flickr_id": "1480638722", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44527", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got some quality family photos .", "storylet_id": "222637"}], [{"original_text": "People came I haven't seen in years.", "album_id": "72157602251536026", "photo_flickr_id": "1480638926", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44527", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people came i have n't seen in years .", "storylet_id": "222638"}], [{"original_text": "The kids had a blast.", "album_id": "72157602251536026", "photo_flickr_id": "1480639062", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44527", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids had a blast .", "storylet_id": "222639"}], [{"original_text": "The whole family gathered here for Christmas - even the kids.", "album_id": "72157602251536026", "photo_flickr_id": "1480638502", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44528", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the whole family gathered here for christmas - even the kids .", "storylet_id": "222640"}], [{"original_text": "The dog even got a present.", "album_id": "72157602251536026", "photo_flickr_id": "1480638316", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44528", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dog even got a present .", "storylet_id": "222641"}], [{"original_text": "Grandpa refused to wear a shirt. Christmas tradition.", "album_id": "72157602251536026", "photo_flickr_id": "1480638552", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44528", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "grandpa refused to wear a shirt . christmas tradition .", "storylet_id": "222642"}], [{"original_text": "We all posed for a photo after the presents.", "album_id": "72157602251536026", "photo_flickr_id": "1480638722", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44528", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all posed for a photo after the presents .", "storylet_id": "222643"}], [{"original_text": "The in-laws also showed up for Christmas dinner.", "album_id": "72157602251536026", "photo_flickr_id": "1480638894", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44528", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the in-laws also showed up for christmas dinner .", "storylet_id": "222644"}], [{"original_text": "The family was together to celebrate Kevin's birthday.", "album_id": "72157602251536026", "photo_flickr_id": "1479780427", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44529", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was together to celebrate [male] 's birthday .", "storylet_id": "222645"}], [{"original_text": "The dog was even celebrating.", "album_id": "72157602251536026", "photo_flickr_id": "1480638316", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44529", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dog was even celebrating .", "storylet_id": "222646"}], [{"original_text": "The family sat down to take a picture.", "album_id": "72157602251536026", "photo_flickr_id": "1480638722", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44529", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family sat down to take a picture .", "storylet_id": "222647"}], [{"original_text": "All the aunts also wanted to have their picture taken.", "album_id": "72157602251536026", "photo_flickr_id": "1480638926", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44529", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all the aunts also wanted to have their picture taken .", "storylet_id": "222648"}], [{"original_text": "Kevin played with all his new toys.", "album_id": "72157602251536026", "photo_flickr_id": "1480639062", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44529", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] played with all his new toys .", "storylet_id": "222649"}], [{"original_text": "We gathered together to enjoy the holiday.", "album_id": "66119", "photo_flickr_id": "2631416", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44530", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we gathered together to enjoy the holiday .", "storylet_id": "222650"}], [{"original_text": "The tree was decorated with care.", "album_id": "66119", "photo_flickr_id": "2631350", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44530", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tree was decorated with care .", "storylet_id": "222651"}], [{"original_text": "The table was primed and prepped", "album_id": "66119", "photo_flickr_id": "2631473", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44530", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the table was primed and prepped", "storylet_id": "222652"}], [{"original_text": "We dimmed the lights to set the mood.", "album_id": "66119", "photo_flickr_id": "2631521", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44530", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we dimmed the lights to set the mood .", "storylet_id": "222653"}], [{"original_text": "The whole house was warm with cheer and love.", "album_id": "66119", "photo_flickr_id": "2631490", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44530", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the whole house was warm with cheer and love .", "storylet_id": "222654"}], [{"original_text": "It was the night before Christmas, so stories were to be read.", "album_id": "66119", "photo_flickr_id": "2631589", "setting": "first-2-pick-and-tell", "worker_id": "AGNKNIGQAWSPFSD", "story_id": "44531", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the night before christmas , so stories were to be read .", "storylet_id": "222655"}], [{"original_text": "As the night gets on, the young ones started to fade.", "album_id": "66119", "photo_flickr_id": "2631656", "setting": "first-2-pick-and-tell", "worker_id": "AGNKNIGQAWSPFSD", "story_id": "44531", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the night gets on , the young ones started to fade .", "storylet_id": "222656"}], [{"original_text": "The table was set for a Christmas breakfast.", "album_id": "66119", "photo_flickr_id": "2631521", "setting": "first-2-pick-and-tell", "worker_id": "AGNKNIGQAWSPFSD", "story_id": "44531", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the table was set for a christmas breakfast .", "storylet_id": "222657"}], [{"original_text": "When the family awoke, the living room was filled with presents!", "album_id": "66119", "photo_flickr_id": "2631490", "setting": "first-2-pick-and-tell", "worker_id": "AGNKNIGQAWSPFSD", "story_id": "44531", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the family awoke , the living room was filled with presents !", "storylet_id": "222658"}], [{"original_text": "Among his gifts under the tree, our hero was bequeathed the trump card needed to best his father: Blue Eyes White Dragon.", "album_id": "66119", "photo_flickr_id": "2631710", "setting": "first-2-pick-and-tell", "worker_id": "AGNKNIGQAWSPFSD", "story_id": "44531", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "among his gifts under the tree , our hero was bequeathed the trump card needed to best his father : blue eyes white dragon .", "storylet_id": "222659"}], [{"original_text": "Kid opening his Christmas gift and using them.", "album_id": "66119", "photo_flickr_id": "2631589", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "44532", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "kid opening his christmas gift and using them .", "storylet_id": "222660"}], [{"original_text": "He is laying back on his new chair laughing and having fun.", "album_id": "66119", "photo_flickr_id": "2631656", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "44532", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he is laying back on his new chair laughing and having fun .", "storylet_id": "222661"}], [{"original_text": "Christmas breakfast is on the table.", "album_id": "66119", "photo_flickr_id": "2631521", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "44532", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "christmas breakfast is on the table .", "storylet_id": "222662"}], [{"original_text": "A picture of the Christmas tree and all the gifts.", "album_id": "66119", "photo_flickr_id": "2631490", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "44532", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a picture of the christmas tree and all the gifts .", "storylet_id": "222663"}], [{"original_text": "Dad and son playing cards at the kitchen table.", "album_id": "66119", "photo_flickr_id": "2631710", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "44532", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dad and son playing cards at the kitchen table .", "storylet_id": "222664"}], [{"original_text": "The holidays were wonderful for my family this year.", "album_id": "66119", "photo_flickr_id": "2631589", "setting": "last-3-pick-old-and-tell", "worker_id": "9QS7H53QF4NLAHX", "story_id": "44533", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the holidays were wonderful for my family this year .", "storylet_id": "222665"}], [{"original_text": "The kids were having a blast and were very well behaved.", "album_id": "66119", "photo_flickr_id": "2631656", "setting": "last-3-pick-old-and-tell", "worker_id": "9QS7H53QF4NLAHX", "story_id": "44533", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids were having a blast and were very well behaved .", "storylet_id": "222666"}], [{"original_text": "The table was set nicely for our holiday meal.", "album_id": "66119", "photo_flickr_id": "2631521", "setting": "last-3-pick-old-and-tell", "worker_id": "9QS7H53QF4NLAHX", "story_id": "44533", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the table was set nicely for our holiday meal .", "storylet_id": "222667"}], [{"original_text": "There were tons of gifts available for everyone!", "album_id": "66119", "photo_flickr_id": "2631490", "setting": "last-3-pick-old-and-tell", "worker_id": "9QS7H53QF4NLAHX", "story_id": "44533", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were tons of gifts available for everyone !", "storylet_id": "222668"}], [{"original_text": "We ended the night by playing cards and talking.", "album_id": "66119", "photo_flickr_id": "2631710", "setting": "last-3-pick-old-and-tell", "worker_id": "9QS7H53QF4NLAHX", "story_id": "44533", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ended the night by playing cards and talking .", "storylet_id": "222669"}], [{"original_text": "The three ladies are happy to see each other.", "album_id": "66119", "photo_flickr_id": "2631416", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "44534", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the three ladies are happy to see each other .", "storylet_id": "222670"}], [{"original_text": "The tree is decorated and displayed.", "album_id": "66119", "photo_flickr_id": "2631350", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "44534", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tree is decorated and displayed .", "storylet_id": "222671"}], [{"original_text": "The tables are set and prepared for food.", "album_id": "66119", "photo_flickr_id": "2631473", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "44534", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tables are set and prepared for food .", "storylet_id": "222672"}], [{"original_text": "The drinks are laid out on the table.", "album_id": "66119", "photo_flickr_id": "2631521", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "44534", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the drinks are laid out on the table .", "storylet_id": "222673"}], [{"original_text": "The presents are abundant this year.", "album_id": "66119", "photo_flickr_id": "2631490", "setting": "last-3-pick-old-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "44534", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the presents are abundant this year .", "storylet_id": "222674"}], [{"original_text": "The mall is very busy today.", "album_id": "44126", "photo_flickr_id": "1736567", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "44535", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the mall is very busy today .", "storylet_id": "222675"}], [{"original_text": "You can tell it is the holiday season with all the decorations.", "album_id": "44126", "photo_flickr_id": "1736536", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "44535", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you can tell it is the holiday season with all the decorations .", "storylet_id": "222676"}], [{"original_text": "They even have a huge tree on display.", "album_id": "44126", "photo_flickr_id": "1736533", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "44535", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even have a huge tree on display .", "storylet_id": "222677"}], [{"original_text": "Check out the detail on some of these signs.", "album_id": "44126", "photo_flickr_id": "1736538", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "44535", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "check out the detail on some of these signs .", "storylet_id": "222678"}], [{"original_text": "Time to head home, what a great time we have had.", "album_id": "44126", "photo_flickr_id": "1736561", "setting": "first-2-pick-and-tell", "worker_id": "HIBB14K7RE55GLK", "story_id": "44535", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time to head home , what a great time we have had .", "storylet_id": "222679"}], [{"original_text": "Full day at the mall!", "album_id": "44126", "photo_flickr_id": "1736536", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "44536", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "full day at the mall !", "storylet_id": "222680"}], [{"original_text": "Biggest Christmas tree ever!", "album_id": "44126", "photo_flickr_id": "1736533", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "44536", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "biggest christmas tree ever !", "storylet_id": "222681"}], [{"original_text": "Waterfalls are pretty", "album_id": "44126", "photo_flickr_id": "1736537", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "44536", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "waterfalls are pretty", "storylet_id": "222682"}], [{"original_text": "Me in a bulb!", "album_id": "44126", "photo_flickr_id": "1736551", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "44536", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "me in a bulb !", "storylet_id": "222683"}], [{"original_text": "Last stop of the day", "album_id": "44126", "photo_flickr_id": "1736556", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "44536", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last stop of the day", "storylet_id": "222684"}], [{"original_text": "Mom and Dad are taking the kids to see the christmas tree", "album_id": "44126", "photo_flickr_id": "1736567", "setting": "last-3-pick-old-and-tell", "worker_id": "0WDDXNS8V8GMM6L", "story_id": "44537", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom and dad are taking the kids to see the christmas tree", "storylet_id": "222685"}], [{"original_text": "everyone is sitting in around and talking", "album_id": "44126", "photo_flickr_id": "1736536", "setting": "last-3-pick-old-and-tell", "worker_id": "0WDDXNS8V8GMM6L", "story_id": "44537", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone is sitting in around and talking", "storylet_id": "222686"}], [{"original_text": "the christmas tree was such a beautiful sight ", "album_id": "44126", "photo_flickr_id": "1736533", "setting": "last-3-pick-old-and-tell", "worker_id": "0WDDXNS8V8GMM6L", "story_id": "44537", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the christmas tree was such a beautiful sight", "storylet_id": "222687"}], [{"original_text": "after the viewing of the tree. they took us to the arcade to play some game", "album_id": "44126", "photo_flickr_id": "1736538", "setting": "last-3-pick-old-and-tell", "worker_id": "0WDDXNS8V8GMM6L", "story_id": "44537", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the viewing of the tree . they took us to the arcade to play some game", "storylet_id": "222688"}], [{"original_text": "We then went outside as they were putting my the big christmas tree", "album_id": "44126", "photo_flickr_id": "1736561", "setting": "last-3-pick-old-and-tell", "worker_id": "0WDDXNS8V8GMM6L", "story_id": "44537", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we then went outside as they were putting my the big christmas tree", "storylet_id": "222689"}], [{"original_text": "Went to the mall to do some christmas shopping! ", "album_id": "44126", "photo_flickr_id": "1736567", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "44538", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went to the mall to do some christmas shopping !", "storylet_id": "222690"}], [{"original_text": "I see the big christmas tree in the back. Can't wait to see it! ", "album_id": "44126", "photo_flickr_id": "1736536", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "44538", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i see the big christmas tree in the back . ca n't wait to see it !", "storylet_id": "222691"}], [{"original_text": "The tree is massive and looks so pretty! ", "album_id": "44126", "photo_flickr_id": "1736533", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "44538", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tree is massive and looks so pretty !", "storylet_id": "222692"}], [{"original_text": "A little arcade action to end my mall trip. ", "album_id": "44126", "photo_flickr_id": "1736538", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "44538", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a little arcade action to end my mall trip .", "storylet_id": "222693"}], [{"original_text": "Heading back home. I think the outside tree needs some decorating though. ", "album_id": "44126", "photo_flickr_id": "1736561", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "44538", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "heading back home . i think the outside tree needs some decorating though .", "storylet_id": "222694"}], [{"original_text": "It is Christmas time!", "album_id": "44126", "photo_flickr_id": "1736567", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44539", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is christmas time !", "storylet_id": "222695"}], [{"original_text": "Look how pretty the mall is set up as.", "album_id": "44126", "photo_flickr_id": "1736536", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44539", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "look how pretty the mall is set up as .", "storylet_id": "222696"}], [{"original_text": "The tree is standing tall and beautiful", "album_id": "44126", "photo_flickr_id": "1736533", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44539", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tree is standing tall and beautiful", "storylet_id": "222697"}], [{"original_text": "Even the arcade is all set up and ready.", "album_id": "44126", "photo_flickr_id": "1736538", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44539", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the arcade is all set up and ready .", "storylet_id": "222698"}], [{"original_text": "The mall looks beautiful, people are so excited.", "album_id": "44126", "photo_flickr_id": "1736561", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44539", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the mall looks beautiful , people are so excited .", "storylet_id": "222699"}], [{"original_text": "A lot of employees showed up for the annual Christmas party, and the boss was pleased about it.", "album_id": "49396", "photo_flickr_id": "1956070", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44540", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a lot of employees showed up for the annual christmas party , and the boss was pleased about it .", "storylet_id": "222700"}], [{"original_text": "Everyone took turns taking a fun photo with the miniature Santa statue at the front door. ", "album_id": "49396", "photo_flickr_id": "1956039", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44540", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone took turns taking a fun photo with the miniature location statue at the front door .", "storylet_id": "222701"}], [{"original_text": "One of the employees walked around the party to take photos of the employees so that some of the photos could be included in the company newsletter. ", "album_id": "49396", "photo_flickr_id": "1956034", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44540", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the employees walked around the party to take photos of the employees so that some of the photos could be included in the company newsletter .", "storylet_id": "222702"}], [{"original_text": "Some of the employees got a little too tipsy considering that the party was a company function.", "album_id": "49396", "photo_flickr_id": "1955990", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44540", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the employees got a little too tipsy considering that the party was a company function .", "storylet_id": "222703"}], [{"original_text": "Some of the employees brought their spouses with them to the party, and the spouses had a lot of fun, too.", "album_id": "49396", "photo_flickr_id": "1955958", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44540", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the employees brought their spouses with them to the party , and the spouses had a lot of fun , too .", "storylet_id": "222704"}], [{"original_text": "The office Christmas party was in full swing.", "album_id": "49396", "photo_flickr_id": "1956070", "setting": "first-2-pick-and-tell", "worker_id": "E5SCB96B4RUC7JW", "story_id": "44541", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the office christmas party was in full swing .", "storylet_id": "222705"}], [{"original_text": "There's plenty of hot girls around in the festive spirit. ", "album_id": "49396", "photo_flickr_id": "1956073", "setting": "first-2-pick-and-tell", "worker_id": "E5SCB96B4RUC7JW", "story_id": "44541", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there 's plenty of hot girls around in the festive spirit .", "storylet_id": "222706"}], [{"original_text": "The man tries to matchmake for his shy friend, who doesn't know how to talk to girls.", "album_id": "49396", "photo_flickr_id": "1955958", "setting": "first-2-pick-and-tell", "worker_id": "E5SCB96B4RUC7JW", "story_id": "44541", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man tries to matchmake for his shy friend , who does n't know how to talk to girls .", "storylet_id": "222707"}], [{"original_text": "Rejected! Better luck next time. Now drink this beer and drown your sorrows.", "album_id": "49396", "photo_flickr_id": "1955990", "setting": "first-2-pick-and-tell", "worker_id": "E5SCB96B4RUC7JW", "story_id": "44541", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "rejected ! better luck next time . now drink this beer and drown your sorrows .", "storylet_id": "222708"}], [{"original_text": "The better looking friend is having no such trouble, already having scored with two.", "album_id": "49396", "photo_flickr_id": "1956023", "setting": "first-2-pick-and-tell", "worker_id": "E5SCB96B4RUC7JW", "story_id": "44541", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the better looking friend is having no such trouble , already having scored with two .", "storylet_id": "222709"}], [{"original_text": "Everyone gathered for the company's holiday party.", "album_id": "49396", "photo_flickr_id": "1956070", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44542", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone gathered for the company 's holiday party .", "storylet_id": "222710"}], [{"original_text": "The company even set up a Santa prop.", "album_id": "49396", "photo_flickr_id": "1956039", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44542", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the company even set up a location prop .", "storylet_id": "222711"}], [{"original_text": "Co-workers spent time with each other.", "album_id": "49396", "photo_flickr_id": "1956034", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44542", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "co-workers spent time with each other .", "storylet_id": "222712"}], [{"original_text": "Joe drank quite a bit and acted silly.", "album_id": "49396", "photo_flickr_id": "1955990", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44542", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] drank quite a bit and acted silly .", "storylet_id": "222713"}], [{"original_text": "Overall, everyone really enjoyed themselves!", "album_id": "49396", "photo_flickr_id": "1955958", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44542", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall , everyone really enjoyed themselves !", "storylet_id": "222714"}], [{"original_text": "For my friends and I, Christmas is the party holiday!", "album_id": "49396", "photo_flickr_id": "1956070", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44543", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for my friends and i , christmas is the party holiday !", "storylet_id": "222715"}], [{"original_text": "Even Santa gets in on the action.", "album_id": "49396", "photo_flickr_id": "1956039", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44543", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even location gets in on the action .", "storylet_id": "222716"}], [{"original_text": "We like to drink it up.", "album_id": "49396", "photo_flickr_id": "1956034", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44543", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we like to drink it up .", "storylet_id": "222717"}], [{"original_text": "And it doesn't hurt to get a little silly.", "album_id": "49396", "photo_flickr_id": "1955990", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44543", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and it does n't hurt to get a little silly .", "storylet_id": "222718"}], [{"original_text": "Everyone has a fun time and a very merry Christmas!", "album_id": "49396", "photo_flickr_id": "1955958", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44543", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone has a fun time and a very merry christmas !", "storylet_id": "222719"}], [{"original_text": "The company decided to host a Christmas party for employees.", "album_id": "49396", "photo_flickr_id": "1956070", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44544", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the company decided to host a christmas party for employees .", "storylet_id": "222720"}], [{"original_text": "Some people posed for a picture by Santa.", "album_id": "49396", "photo_flickr_id": "1956039", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44544", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some people posed for a picture by location .", "storylet_id": "222721"}], [{"original_text": "We had a few drinks and took some more pictures.", "album_id": "49396", "photo_flickr_id": "1956034", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44544", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a few drinks and took some more pictures .", "storylet_id": "222722"}], [{"original_text": "A few people thought it would be funny to take some making silly faces.", "album_id": "49396", "photo_flickr_id": "1955990", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44544", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a few people thought it would be funny to take some making silly faces .", "storylet_id": "222723"}], [{"original_text": "We all had a nice time talking and hanging out.", "album_id": "49396", "photo_flickr_id": "1955958", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44544", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all had a nice time talking and hanging out .", "storylet_id": "222724"}], [{"original_text": "This is the way in to all of the fun.", "album_id": "49513", "photo_flickr_id": "1932567", "setting": "first-2-pick-and-tell", "worker_id": "TYW1JQ93VVH3HLQ", "story_id": "44545", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the way in to all of the fun .", "storylet_id": "222725"}], [{"original_text": "There are lots of people and holiday cheer.", "album_id": "49513", "photo_flickr_id": "1957625", "setting": "first-2-pick-and-tell", "worker_id": "TYW1JQ93VVH3HLQ", "story_id": "44545", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are lots of people and holiday cheer .", "storylet_id": "222726"}], [{"original_text": "You can buy things at each booth.", "album_id": "49513", "photo_flickr_id": "1958165", "setting": "first-2-pick-and-tell", "worker_id": "TYW1JQ93VVH3HLQ", "story_id": "44545", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you can buy things at each booth .", "storylet_id": "222727"}], [{"original_text": "Here you can get any information you need for this amazing event.", "album_id": "49513", "photo_flickr_id": "1958957", "setting": "first-2-pick-and-tell", "worker_id": "TYW1JQ93VVH3HLQ", "story_id": "44545", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here you can get any information you need for this amazing event .", "storylet_id": "222728"}], [{"original_text": "Just remember to have fun and enjoy yourself.", "album_id": "49513", "photo_flickr_id": "1959050", "setting": "first-2-pick-and-tell", "worker_id": "TYW1JQ93VVH3HLQ", "story_id": "44545", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "just remember to have fun and enjoy yourself .", "storylet_id": "222729"}], [{"original_text": "I must have walked for hours. I finally found a narrow walkway and decided to walk down it. ", "album_id": "49513", "photo_flickr_id": "1932440", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44546", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i must have walked for hours . i finally found a narrow walkway and decided to walk down it .", "storylet_id": "222730"}], [{"original_text": "I found people! I was beginning to worry. ", "album_id": "49513", "photo_flickr_id": "1958294", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44546", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i found people ! i was beginning to worry .", "storylet_id": "222731"}], [{"original_text": "These people didn't acknowledge me at all. I got in this extremely tall man's face and he walked on by. ", "album_id": "49513", "photo_flickr_id": "1958582", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44546", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these people did n't acknowledge me at all . i got in this extremely tall man 's face and he walked on by .", "storylet_id": "222732"}], [{"original_text": "I even resorted to hiding in a rack of clothes and jumping out and scaring people and the woman in the black coat just walked away. ", "album_id": "49513", "photo_flickr_id": "1958704", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44546", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i even resorted to hiding in a rack of clothes and jumping out and scaring people and the woman in the black coat just walked away .", "storylet_id": "222733"}], [{"original_text": "I stood up on a stair and screamed as loud as I could and no one turned around out of this group! What is going on here?!", "album_id": "49513", "photo_flickr_id": "1959050", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44546", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i stood up on a stair and screamed as loud as i could and no one turned around out of this group ! what is going on here ? !", "storylet_id": "222734"}], [{"original_text": "The shops are opening.", "album_id": "49513", "photo_flickr_id": "1932567", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44547", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the shops are opening .", "storylet_id": "222735"}], [{"original_text": "These people are looking to buy some clothes.", "album_id": "49513", "photo_flickr_id": "1957625", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44547", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these people are looking to buy some clothes .", "storylet_id": "222736"}], [{"original_text": "This store owner hopes people come to his shop.", "album_id": "49513", "photo_flickr_id": "1958165", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44547", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this store owner hopes people come to his shop .", "storylet_id": "222737"}], [{"original_text": "This booth gives information.", "album_id": "49513", "photo_flickr_id": "1958957", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44547", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this booth gives information .", "storylet_id": "222738"}], [{"original_text": "The shops are very busy.", "album_id": "49513", "photo_flickr_id": "1959050", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44547", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the shops are very busy .", "storylet_id": "222739"}], [{"original_text": "They were setting up a craft fair.", "album_id": "49513", "photo_flickr_id": "1932567", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44548", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were setting up a craft fair .", "storylet_id": "222740"}], [{"original_text": "People were all around looking for goods.", "album_id": "49513", "photo_flickr_id": "1957625", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44548", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people were all around looking for goods .", "storylet_id": "222741"}], [{"original_text": "One woman was selling gorgeous sweaters.", "album_id": "49513", "photo_flickr_id": "1958165", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44548", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one woman was selling gorgeous sweaters .", "storylet_id": "222742"}], [{"original_text": "Another was selling her photography.", "album_id": "49513", "photo_flickr_id": "1958957", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44548", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another was selling her photography .", "storylet_id": "222743"}], [{"original_text": "People enjoyed the fai a lot.", "album_id": "49513", "photo_flickr_id": "1959050", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44548", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people enjoyed the fai a lot .", "storylet_id": "222744"}], [{"original_text": "Walking by Santas house. ", "album_id": "49513", "photo_flickr_id": "1932567", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44549", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "walking by santas house .", "storylet_id": "222745"}], [{"original_text": "Getting a few more gifts. ", "album_id": "49513", "photo_flickr_id": "1957625", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44549", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "getting a few more gifts .", "storylet_id": "222746"}], [{"original_text": "A Christmas vendor selling shirts. ", "album_id": "49513", "photo_flickr_id": "1958165", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44549", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a christmas vendor selling shirts .", "storylet_id": "222747"}], [{"original_text": "Buying a few snacks. ", "album_id": "49513", "photo_flickr_id": "1958957", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44549", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "buying a few snacks .", "storylet_id": "222748"}], [{"original_text": "Ready to go home. ", "album_id": "49513", "photo_flickr_id": "1959050", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44549", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ready to go home .", "storylet_id": "222749"}], [{"original_text": "Dad screamed for us from the dining room. \"Teletubbies is on!\" ", "album_id": "62362", "photo_flickr_id": "2480076", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44550", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dad screamed for us from the dining room . `` teletubbies is on ! ''", "storylet_id": "222750"}], [{"original_text": "We dragged mom into the living room and made her watch with us. ", "album_id": "62362", "photo_flickr_id": "2480048", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44550", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we dragged mom into the living room and made her watch with us .", "storylet_id": "222751"}], [{"original_text": "We laughed as the bright creatures danced around and made baby noises. ", "album_id": "62362", "photo_flickr_id": "2480075", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44550", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we laughed as the bright creatures danced around and made baby noises .", "storylet_id": "222752"}], [{"original_text": "The sun giggled and say Bye-Bye!! ", "album_id": "62362", "photo_flickr_id": "2480074", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44550", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sun giggled and say bye-bye ! !", "storylet_id": "222753"}], [{"original_text": "We all waved but mom..Wait where's MOM! She snuck out the window!!", "album_id": "62362", "photo_flickr_id": "2480072", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44550", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all waved but mom..wait where 's mom ! she snuck out the window ! !", "storylet_id": "222754"}], [{"original_text": "I took pictures during my favorite kids show.", "album_id": "62362", "photo_flickr_id": "2480048", "setting": "first-2-pick-and-tell", "worker_id": "1A6SNMRFUFNQDDQ", "story_id": "44551", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took pictures during my favorite kids show .", "storylet_id": "222755"}], [{"original_text": "I like the one where they turn a log into a friendly pet.", "album_id": "62362", "photo_flickr_id": "2480057", "setting": "first-2-pick-and-tell", "worker_id": "1A6SNMRFUFNQDDQ", "story_id": "44551", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i like the one where they turn a log into a friendly pet .", "storylet_id": "222756"}], [{"original_text": "They all sat around and waved to the camera.", "album_id": "62362", "photo_flickr_id": "2480072", "setting": "first-2-pick-and-tell", "worker_id": "1A6SNMRFUFNQDDQ", "story_id": "44551", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all sat around and waved to the camera .", "storylet_id": "222757"}], [{"original_text": "And the end of the show a baby sun was in the sky.", "album_id": "62362", "photo_flickr_id": "2480074", "setting": "first-2-pick-and-tell", "worker_id": "1A6SNMRFUFNQDDQ", "story_id": "44551", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the end of the show a baby sun was in the sky .", "storylet_id": "222758"}], [{"original_text": "And then the characters came out to say goodbye.", "album_id": "62362", "photo_flickr_id": "2480075", "setting": "first-2-pick-and-tell", "worker_id": "1A6SNMRFUFNQDDQ", "story_id": "44551", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then the characters came out to say goodbye .", "storylet_id": "222759"}], [{"original_text": "A mother and father sit in their dining room.", "album_id": "62362", "photo_flickr_id": "2480076", "setting": "last-3-pick-old-and-tell", "worker_id": "CMH4NKRJ0V83ITW", "story_id": "44552", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a mother and father sit in their dining room .", "storylet_id": "222760"}], [{"original_text": "The children come in to ask their mother for something.", "album_id": "62362", "photo_flickr_id": "2480048", "setting": "last-3-pick-old-and-tell", "worker_id": "CMH4NKRJ0V83ITW", "story_id": "44552", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the children come in to ask their mother for something .", "storylet_id": "222761"}], [{"original_text": "Teletubbies is on a television nearby.", "album_id": "62362", "photo_flickr_id": "2480075", "setting": "last-3-pick-old-and-tell", "worker_id": "CMH4NKRJ0V83ITW", "story_id": "44552", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "teletubbies is on a television nearby .", "storylet_id": "222762"}], [{"original_text": "The kids love the sunshine baby.", "album_id": "62362", "photo_flickr_id": "2480074", "setting": "last-3-pick-old-and-tell", "worker_id": "CMH4NKRJ0V83ITW", "story_id": "44552", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids love the sunshine baby .", "storylet_id": "222763"}], [{"original_text": "The children gather around in a circle on the floor and play games.", "album_id": "62362", "photo_flickr_id": "2480072", "setting": "last-3-pick-old-and-tell", "worker_id": "CMH4NKRJ0V83ITW", "story_id": "44552", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the children gather around in a circle on the floor and play games .", "storylet_id": "222764"}], [{"original_text": "The father is preparing the living room for the kids to watch the teletubbies.", "album_id": "62362", "photo_flickr_id": "2480076", "setting": "last-3-pick-old-and-tell", "worker_id": "SWB8VL5AN5HWWUK", "story_id": "44553", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the father is preparing the living room for the kids to watch the teletubbies .", "storylet_id": "222765"}], [{"original_text": "The kids are running over to watch the teletubbies.", "album_id": "62362", "photo_flickr_id": "2480048", "setting": "last-3-pick-old-and-tell", "worker_id": "SWB8VL5AN5HWWUK", "story_id": "44553", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids are running over to watch the teletubbies .", "storylet_id": "222766"}], [{"original_text": "The teletubbies are entertaining the kids.", "album_id": "62362", "photo_flickr_id": "2480075", "setting": "last-3-pick-old-and-tell", "worker_id": "SWB8VL5AN5HWWUK", "story_id": "44553", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the teletubbies are entertaining the kids .", "storylet_id": "222767"}], [{"original_text": "The sun baby is laughing at the teletubies.", "album_id": "62362", "photo_flickr_id": "2480074", "setting": "last-3-pick-old-and-tell", "worker_id": "SWB8VL5AN5HWWUK", "story_id": "44553", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the sun baby is laughing at the teletubies .", "storylet_id": "222768"}], [{"original_text": "The kids are all over-joyed with having watched this show!", "album_id": "62362", "photo_flickr_id": "2480072", "setting": "last-3-pick-old-and-tell", "worker_id": "SWB8VL5AN5HWWUK", "story_id": "44553", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids are all over-joyed with having watched this show !", "storylet_id": "222769"}], [{"original_text": "The kids show was on today.", "album_id": "62362", "photo_flickr_id": "2480076", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44554", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids show was on today .", "storylet_id": "222770"}], [{"original_text": "He was so excited to see teletubbies", "album_id": "62362", "photo_flickr_id": "2480048", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44554", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was so excited to see teletubbies", "storylet_id": "222771"}], [{"original_text": "He laughed at the whole thing.", "album_id": "62362", "photo_flickr_id": "2480075", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44554", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he laughed at the whole thing .", "storylet_id": "222772"}], [{"original_text": "He was sad when it was over.", "album_id": "62362", "photo_flickr_id": "2480074", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44554", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was sad when it was over .", "storylet_id": "222773"}], [{"original_text": "He cried for his Mom after the show was done.", "album_id": "62362", "photo_flickr_id": "2480072", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44554", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he cried for his mom after the show was done .", "storylet_id": "222774"}], [{"original_text": "Sunday our family went to church. ", "album_id": "72157607013992421", "photo_flickr_id": "2808539617", "setting": "first-2-pick-and-tell", "worker_id": "JZ0GL6WIZZLUEO4", "story_id": "44555", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sunday our family went to church .", "storylet_id": "222775"}], [{"original_text": "My younger sister and I went to the youth group service.", "album_id": "72157607013992421", "photo_flickr_id": "2809388410", "setting": "first-2-pick-and-tell", "worker_id": "JZ0GL6WIZZLUEO4", "story_id": "44555", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my younger sister and i went to the youth group service .", "storylet_id": "222776"}], [{"original_text": "And our parents went to the regular service.", "album_id": "72157607013992421", "photo_flickr_id": "2808540007", "setting": "first-2-pick-and-tell", "worker_id": "JZ0GL6WIZZLUEO4", "story_id": "44555", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and our parents went to the regular service .", "storylet_id": "222777"}], [{"original_text": "Afterward the Pastor met the different people that attended church. He's very nice and talks to everyone who wants to talk to him. Sometimes he prays for them. ", "album_id": "72157607013992421", "photo_flickr_id": "2809388860", "setting": "first-2-pick-and-tell", "worker_id": "JZ0GL6WIZZLUEO4", "story_id": "44555", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward the pastor met the different people that attended church . he 's very nice and talks to everyone who wants to talk to him . sometimes he prays for them .", "storylet_id": "222778"}], [{"original_text": "This is one of the crosses located on the inside. It's my favorite.", "album_id": "72157607013992421", "photo_flickr_id": "2809389000", "setting": "first-2-pick-and-tell", "worker_id": "JZ0GL6WIZZLUEO4", "story_id": "44555", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is one of the crosses located on the inside . it 's my favorite .", "storylet_id": "222779"}], [{"original_text": "Last Sunday we were in town trying to find some breakfast.", "album_id": "72157607013992421", "photo_flickr_id": "2808539617", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44556", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last sunday we were in town trying to find some breakfast .", "storylet_id": "222780"}], [{"original_text": "We eventually found a place that had just opened up for the day.", "album_id": "72157607013992421", "photo_flickr_id": "2809388410", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44556", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we eventually found a place that had just opened up for the day .", "storylet_id": "222781"}], [{"original_text": "There were already a few customers inside.", "album_id": "72157607013992421", "photo_flickr_id": "2808539867", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44556", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were already a few customers inside .", "storylet_id": "222782"}], [{"original_text": "Afterward my family and I went to church.", "album_id": "72157607013992421", "photo_flickr_id": "2809389396", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44556", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward my family and i went to church .", "storylet_id": "222783"}], [{"original_text": "We like going to church.", "album_id": "72157607013992421", "photo_flickr_id": "2809389528", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44556", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we like going to church .", "storylet_id": "222784"}], [{"original_text": "A group from the local church gathered at The Warehouse to see a concert.", "album_id": "72157607013992421", "photo_flickr_id": "2808539617", "setting": "last-3-pick-old-and-tell", "worker_id": "KO189YZ81BSEZGZ", "story_id": "44557", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group from the local church gathered at the warehouse to see a concert .", "storylet_id": "222785"}], [{"original_text": "The band was great! Everyone had a lot of fun.", "album_id": "72157607013992421", "photo_flickr_id": "2809388410", "setting": "last-3-pick-old-and-tell", "worker_id": "KO189YZ81BSEZGZ", "story_id": "44557", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the band was great ! everyone had a lot of fun .", "storylet_id": "222786"}], [{"original_text": "The show was winding down and folks started to get ready to leave.", "album_id": "72157607013992421", "photo_flickr_id": "2808540007", "setting": "last-3-pick-old-and-tell", "worker_id": "KO189YZ81BSEZGZ", "story_id": "44557", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the show was winding down and folks started to get ready to leave .", "storylet_id": "222787"}], [{"original_text": "Outside, they had a conversation about their favorite moments from the concert.", "album_id": "72157607013992421", "photo_flickr_id": "2809388860", "setting": "last-3-pick-old-and-tell", "worker_id": "KO189YZ81BSEZGZ", "story_id": "44557", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "outside , they had a conversation about their favorite moments from the concert .", "storylet_id": "222788"}], [{"original_text": "They ended with a religious service to thank the Lord for their fun, blessed day.", "album_id": "72157607013992421", "photo_flickr_id": "2809389000", "setting": "last-3-pick-old-and-tell", "worker_id": "KO189YZ81BSEZGZ", "story_id": "44557", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ended with a religious service to thank the lord for their fun , blessed day .", "storylet_id": "222789"}], [{"original_text": "My friend and I were going to a small gathering together, we decided to meet at the warehouse. ", "album_id": "72157607013992421", "photo_flickr_id": "2808539617", "setting": "last-3-pick-old-and-tell", "worker_id": "3V6BM2ZPFZ62N3O", "story_id": "44558", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend and i were going to a small gathering together , we decided to meet at the warehouse .", "storylet_id": "222790"}], [{"original_text": "As we walked in to the event, you can see small band and performing on stage. ", "album_id": "72157607013992421", "photo_flickr_id": "2809388410", "setting": "last-3-pick-old-and-tell", "worker_id": "3V6BM2ZPFZ62N3O", "story_id": "44558", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as we walked in to the event , you can see small band and performing on stage .", "storylet_id": "222791"}], [{"original_text": "Guests were welcome to have some refreshment at the snack bar. ", "album_id": "72157607013992421", "photo_flickr_id": "2808539867", "setting": "last-3-pick-old-and-tell", "worker_id": "3V6BM2ZPFZ62N3O", "story_id": "44558", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "guests were welcome to have some refreshment at the snack bar .", "storylet_id": "222792"}], [{"original_text": "The event was hosted inside this white tall building. ", "album_id": "72157607013992421", "photo_flickr_id": "2809389396", "setting": "last-3-pick-old-and-tell", "worker_id": "3V6BM2ZPFZ62N3O", "story_id": "44558", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the event was hosted inside this white tall building .", "storylet_id": "222793"}], [{"original_text": "The name of the building is the \"Little Church\".", "album_id": "72157607013992421", "photo_flickr_id": "2809389528", "setting": "last-3-pick-old-and-tell", "worker_id": "3V6BM2ZPFZ62N3O", "story_id": "44558", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the name of the building is the `` little church '' .", "storylet_id": "222794"}], [{"original_text": "We went on a little adventure this weekend.", "album_id": "72157607013992421", "photo_flickr_id": "2808539617", "setting": "last-3-pick-old-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "44559", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on a little adventure this weekend .", "storylet_id": "222795"}], [{"original_text": "Danced at the warehouse during the daylight", "album_id": "72157607013992421", "photo_flickr_id": "2809388410", "setting": "last-3-pick-old-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "44559", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "danced at the warehouse during the daylight", "storylet_id": "222796"}], [{"original_text": "Then got some fast food at a nearby mall.", "album_id": "72157607013992421", "photo_flickr_id": "2808539867", "setting": "last-3-pick-old-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "44559", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then got some fast food at a nearby mall .", "storylet_id": "222797"}], [{"original_text": "What is this?? A chapel?", "album_id": "72157607013992421", "photo_flickr_id": "2809389396", "setting": "last-3-pick-old-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "44559", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what is this ? ? a chapel ?", "storylet_id": "222798"}], [{"original_text": "A church! We are going to get married here one day.", "album_id": "72157607013992421", "photo_flickr_id": "2809389528", "setting": "last-3-pick-old-and-tell", "worker_id": "4DKD7R823PA3Z27", "story_id": "44559", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a church ! we are going to get married here one day .", "storylet_id": "222799"}], [{"original_text": "I took a trip to Saudia Arabia last summer to see the people of the area.", "album_id": "72157623114161836", "photo_flickr_id": "4234294380", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "44560", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a trip to location location last summer to see the people of the area .", "storylet_id": "222800"}], [{"original_text": "I wasn't sure what to make of this guys clothes.", "album_id": "72157623114161836", "photo_flickr_id": "4234302708", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "44560", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was n't sure what to make of this guys clothes .", "storylet_id": "222801"}], [{"original_text": "I did receive many dirty looks while photographing others.", "album_id": "72157623114161836", "photo_flickr_id": "4234295736", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "44560", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i did receive many dirty looks while photographing others .", "storylet_id": "222802"}], [{"original_text": "This was one of my favotites, he didn't know that I took a picture of him.", "album_id": "72157623114161836", "photo_flickr_id": "4234297676", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "44560", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was one of my favotites , he did n't know that i took a picture of him .", "storylet_id": "222803"}], [{"original_text": "This guy looked like he was in prison even though he wasn't", "album_id": "72157623114161836", "photo_flickr_id": "4234304166", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "44560", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this guy looked like he was in prison even though he was n't", "storylet_id": "222804"}], [{"original_text": "After school I was sitting on the bench waiting for my bus to show up.", "album_id": "72157623114161836", "photo_flickr_id": "4234297676", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44561", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after school i was sitting on the bench waiting for my bus to show up .", "storylet_id": "222805"}], [{"original_text": "A friend of mine spotted me from across the street.", "album_id": "72157623114161836", "photo_flickr_id": "4234296680", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44561", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a friend of mine spotted me from across the street .", "storylet_id": "222806"}], [{"original_text": "She saw the beads I was holding.", "album_id": "72157623114161836", "photo_flickr_id": "4234299032", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44561", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she saw the beads i was holding .", "storylet_id": "222807"}], [{"original_text": "I quickly hid them by tossing them to another man and he hid them in his jacket.", "album_id": "72157623114161836", "photo_flickr_id": "4234304166", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44561", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i quickly hid them by tossing them to another man and he hid them in his jacket .", "storylet_id": "222808"}], [{"original_text": "But this guy saw the whole thing.", "album_id": "72157623114161836", "photo_flickr_id": "4233527267", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44561", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but this guy saw the whole thing .", "storylet_id": "222809"}], [{"original_text": "One day I was waiting on the bus and thinking about what to buy my wife for her birthday.", "album_id": "72157623114161836", "photo_flickr_id": "4234297676", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "44562", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one day i was waiting on the bus and thinking about what to buy my wife for her birthday .", "storylet_id": "222810"}], [{"original_text": "She is very important to me, so I need to get her something special.", "album_id": "72157623114161836", "photo_flickr_id": "4234296680", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "44562", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she is very important to me , so i need to get her something special .", "storylet_id": "222811"}], [{"original_text": "I found a nice necklace that I think she will like.", "album_id": "72157623114161836", "photo_flickr_id": "4234299032", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "44562", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i found a nice necklace that i think she will like .", "storylet_id": "222812"}], [{"original_text": "I went and asked her Dad, who I found praying outside.", "album_id": "72157623114161836", "photo_flickr_id": "4234304166", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "44562", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i went and asked her dad , who i found praying outside .", "storylet_id": "222813"}], [{"original_text": "He thinks she will like the necklace!", "album_id": "72157623114161836", "photo_flickr_id": "4233527267", "setting": "last-3-pick-old-and-tell", "worker_id": "QXL2RG4SDJ0WD9V", "story_id": "44562", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he thinks she will like the necklace !", "storylet_id": "222814"}], [{"original_text": "An old man is shopping at the market.", "album_id": "72157623114161836", "photo_flickr_id": "4234294380", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "44563", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an old man is shopping at the market .", "storylet_id": "222815"}], [{"original_text": "His friend is coming down the road to come and shop with him.", "album_id": "72157623114161836", "photo_flickr_id": "4234302708", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "44563", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his friend is coming down the road to come and shop with him .", "storylet_id": "222816"}], [{"original_text": "Another talking on the phone about some things he saw at the market.", "album_id": "72157623114161836", "photo_flickr_id": "4234295736", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "44563", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another talking on the phone about some things he saw at the market .", "storylet_id": "222817"}], [{"original_text": "Another man looking surprised what is going on with all this shopping. ", "album_id": "72157623114161836", "photo_flickr_id": "4234297676", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "44563", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another man looking surprised what is going on with all this shopping .", "storylet_id": "222818"}], [{"original_text": "And finally, this man decides to sit it out and not do any shopping.", "album_id": "72157623114161836", "photo_flickr_id": "4234304166", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "44563", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and finally , this man decides to sit it out and not do any shopping .", "storylet_id": "222819"}], [{"original_text": "Sometimes I like to go out and people watch.", "album_id": "72157623114161836", "photo_flickr_id": "4234297676", "setting": "last-3-pick-old-and-tell", "worker_id": "2P0EXVGDDNTDYT0", "story_id": "44564", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sometimes i like to go out and people watch .", "storylet_id": "222820"}], [{"original_text": "You can see some very beautiful women in this town.", "album_id": "72157623114161836", "photo_flickr_id": "4234296680", "setting": "last-3-pick-old-and-tell", "worker_id": "2P0EXVGDDNTDYT0", "story_id": "44564", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you can see some very beautiful women in this town .", "storylet_id": "222821"}], [{"original_text": "You also can see some very devout individuals.", "album_id": "72157623114161836", "photo_flickr_id": "4234299032", "setting": "last-3-pick-old-and-tell", "worker_id": "2P0EXVGDDNTDYT0", "story_id": "44564", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you also can see some very devout individuals .", "storylet_id": "222822"}], [{"original_text": "Some people seem alone and trapped in their solitary lives.", "album_id": "72157623114161836", "photo_flickr_id": "4234304166", "setting": "last-3-pick-old-and-tell", "worker_id": "2P0EXVGDDNTDYT0", "story_id": "44564", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people seem alone and trapped in their solitary lives .", "storylet_id": "222823"}], [{"original_text": "Others like to enjoy a smoke with friends.", "album_id": "72157623114161836", "photo_flickr_id": "4233527267", "setting": "last-3-pick-old-and-tell", "worker_id": "2P0EXVGDDNTDYT0", "story_id": "44564", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "others like to enjoy a smoke with friends .", "storylet_id": "222824"}], [{"original_text": "This is my house out in the country. You can see the sky in the background lit up from the fireworks. ", "album_id": "72157623114171494", "photo_flickr_id": "4233458723", "setting": "first-2-pick-and-tell", "worker_id": "W2DKDUHQA5GTBD5", "story_id": "44565", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my house out in the country . you can see the sky in the background lit up from the fireworks .", "storylet_id": "222825"}], [{"original_text": "Here is a view from inside the city where the fireworks are being lit. ", "album_id": "72157623114171494", "photo_flickr_id": "4234236058", "setting": "first-2-pick-and-tell", "worker_id": "W2DKDUHQA5GTBD5", "story_id": "44565", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is a view from inside the city where the fireworks are being lit .", "storylet_id": "222826"}], [{"original_text": "There goes another one!", "album_id": "72157623114171494", "photo_flickr_id": "4233466887", "setting": "first-2-pick-and-tell", "worker_id": "W2DKDUHQA5GTBD5", "story_id": "44565", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there goes another one !", "storylet_id": "222827"}], [{"original_text": "The night sky is nice and clear to view the display. ", "album_id": "72157623114171494", "photo_flickr_id": "4233474325", "setting": "first-2-pick-and-tell", "worker_id": "W2DKDUHQA5GTBD5", "story_id": "44565", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the night sky is nice and clear to view the display .", "storylet_id": "222828"}], [{"original_text": "Here goes the last one for the night. ", "album_id": "72157623114171494", "photo_flickr_id": "4233476525", "setting": "first-2-pick-and-tell", "worker_id": "W2DKDUHQA5GTBD5", "story_id": "44565", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here goes the last one for the night .", "storylet_id": "222829"}], [{"original_text": "The odd red sky above the hotel we stayed at", "album_id": "72157623114171494", "photo_flickr_id": "4233458723", "setting": "first-2-pick-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "44566", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the odd red sky above the hotel we stayed at", "storylet_id": "222830"}], [{"original_text": "geting dark and now the red sky has gone away", "album_id": "72157623114171494", "photo_flickr_id": "4233463041", "setting": "first-2-pick-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "44566", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "geting dark and now the red sky has gone away", "storylet_id": "222831"}], [{"original_text": "premature fireworks before it got dark and the big show began", "album_id": "72157623114171494", "photo_flickr_id": "4233476525", "setting": "first-2-pick-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "44566", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "premature fireworks before it got dark and the big show began", "storylet_id": "222832"}], [{"original_text": "the fireworks lit up the sky like some beautiful stars", "album_id": "72157623114171494", "photo_flickr_id": "4233471839", "setting": "first-2-pick-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "44566", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the fireworks lit up the sky like some beautiful stars", "storylet_id": "222833"}], [{"original_text": "these were my favorite classical fireworks during the finale", "album_id": "72157623114171494", "photo_flickr_id": "4233474325", "setting": "first-2-pick-and-tell", "worker_id": "6FDVOAO5OCIWXVY", "story_id": "44566", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these were my favorite classical fireworks during the finale", "storylet_id": "222834"}], [{"original_text": "Night is coming and this house was being shut down its family as the fireworks were tonight.", "album_id": "72157623114171494", "photo_flickr_id": "4233458723", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "44567", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "night is coming and this house was being shut down its family as the fireworks were tonight .", "storylet_id": "222835"}], [{"original_text": "As the night got darker the street lights were coming on.", "album_id": "72157623114171494", "photo_flickr_id": "4233463041", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "44567", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as the night got darker the street lights were coming on .", "storylet_id": "222836"}], [{"original_text": "In the distance you can see one firework go off.", "album_id": "72157623114171494", "photo_flickr_id": "4233476525", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "44567", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in the distance you can see one firework go off .", "storylet_id": "222837"}], [{"original_text": "As we walk closer to town another firework has gone off.", "album_id": "72157623114171494", "photo_flickr_id": "4233471839", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "44567", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as we walk closer to town another firework has gone off .", "storylet_id": "222838"}], [{"original_text": "We have reached our seats and the fireworks were going off with such beauty.", "album_id": "72157623114171494", "photo_flickr_id": "4233474325", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "44567", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we have reached our seats and the fireworks were going off with such beauty .", "storylet_id": "222839"}], [{"original_text": "The family was having a nice get together for new years eye. ", "album_id": "72157623114171494", "photo_flickr_id": "4233458723", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "44568", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was having a nice get together for new years eye .", "storylet_id": "222840"}], [{"original_text": "The weather was cold yet the sky was clear enough for fireworks. ", "album_id": "72157623114171494", "photo_flickr_id": "4234236058", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "44568", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the weather was cold yet the sky was clear enough for fireworks .", "storylet_id": "222841"}], [{"original_text": "The first firework went off at midnight with a bang. ", "album_id": "72157623114171494", "photo_flickr_id": "4233466887", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "44568", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first firework went off at midnight with a bang .", "storylet_id": "222842"}], [{"original_text": "Soon after fireworks started appearing everywhere including downtown. ", "album_id": "72157623114171494", "photo_flickr_id": "4233474325", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "44568", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "soon after fireworks started appearing everywhere including downtown .", "storylet_id": "222843"}], [{"original_text": "The family had so much fun that they didn't notice the sun rise. ", "album_id": "72157623114171494", "photo_flickr_id": "4233476525", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "44568", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family had so much fun that they did n't notice the sun rise .", "storylet_id": "222844"}], [{"original_text": "Harry loved fireworks so much he always got a room in a bed and breakfast near the big fireworks display.", "album_id": "72157623114171494", "photo_flickr_id": "4233458723", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44569", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] loved fireworks so much he always got a room in a bed and breakfast near the big fireworks display .", "storylet_id": "222845"}], [{"original_text": "It was a nice bed and breakfast, but the real appeal was the fireworks.", "album_id": "72157623114171494", "photo_flickr_id": "4233463041", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44569", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a nice bed and breakfast , but the real appeal was the fireworks .", "storylet_id": "222846"}], [{"original_text": "He would get so excited at the very first flare going up.", "album_id": "72157623114171494", "photo_flickr_id": "4233476525", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44569", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he would get so excited at the very first flare going up .", "storylet_id": "222847"}], [{"original_text": "When the sky was filled with fireworks leftover light, his heart would sour.", "album_id": "72157623114171494", "photo_flickr_id": "4233471839", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44569", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when the sky was filled with fireworks leftover light , his heart would sour .", "storylet_id": "222848"}], [{"original_text": "Each different firework was special to him. It was his favorite day of the year.", "album_id": "72157623114171494", "photo_flickr_id": "4233474325", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44569", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "each different firework was special to him . it was his favorite day of the year .", "storylet_id": "222849"}], [{"original_text": "This is a very old house that has stood for centuries. ", "album_id": "72157623210398901", "photo_flickr_id": "4325743162", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "44570", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a very old house that has stood for centuries .", "storylet_id": "222850"}], [{"original_text": "The numbering on the door is made very well. ", "album_id": "72157623210398901", "photo_flickr_id": "4325636954", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "44570", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the numbering on the door is made very well .", "storylet_id": "222851"}], [{"original_text": "This door has a more modern looking frame for the house number. ", "album_id": "72157623210398901", "photo_flickr_id": "4324926725", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "44570", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this door has a more modern looking frame for the house number .", "storylet_id": "222852"}], [{"original_text": "The colors and shape of this building contrast nicely with the sky. ", "album_id": "72157623210398901", "photo_flickr_id": "4325783052", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "44570", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the colors and shape of this building contrast nicely with the sky .", "storylet_id": "222853"}], [{"original_text": "When it gets darker, the building looks scary. ", "album_id": "72157623210398901", "photo_flickr_id": "4325031799", "setting": "first-2-pick-and-tell", "worker_id": "UKSQJJCG2G25KY1", "story_id": "44570", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when it gets darker , the building looks scary .", "storylet_id": "222854"}], [{"original_text": "Architecture from a time gone by is quite beautiful. ", "album_id": "72157623210398901", "photo_flickr_id": "4325023543", "setting": "first-2-pick-and-tell", "worker_id": "9Q8J207DL2XISJD", "story_id": "44571", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "architecture from a time gone by is quite beautiful .", "storylet_id": "222855"}], [{"original_text": "Places of worship can be especially beautiful.", "album_id": "72157623210398901", "photo_flickr_id": "4325743162", "setting": "first-2-pick-and-tell", "worker_id": "9Q8J207DL2XISJD", "story_id": "44571", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "places of worship can be especially beautiful .", "storylet_id": "222856"}], [{"original_text": "Visiting places like this takes you back to a simpler time. ", "album_id": "72157623210398901", "photo_flickr_id": "4325783052", "setting": "first-2-pick-and-tell", "worker_id": "9Q8J207DL2XISJD", "story_id": "44571", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "visiting places like this takes you back to a simpler time .", "storylet_id": "222857"}], [{"original_text": "This church is lovely even though it is in disrepair.", "album_id": "72157623210398901", "photo_flickr_id": "4325031799", "setting": "first-2-pick-and-tell", "worker_id": "9Q8J207DL2XISJD", "story_id": "44571", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this church is lovely even though it is in disrepair .", "storylet_id": "222858"}], [{"original_text": "The only think that brings you back in time is the image of modern conveniences interrupting the view of these lovely building. ", "album_id": "72157623210398901", "photo_flickr_id": "4325620574", "setting": "first-2-pick-and-tell", "worker_id": "9Q8J207DL2XISJD", "story_id": "44571", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the only think that brings you back in time is the image of modern conveniences interrupting the view of these lovely building .", "storylet_id": "222859"}], [{"original_text": "Sight seers take a picture of the church.,", "album_id": "72157623210398901", "photo_flickr_id": "4325743162", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "44572", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sight seers take a picture of the church. ,", "storylet_id": "222860"}], [{"original_text": "They wanted to get every detail they could, even the address.", "album_id": "72157623210398901", "photo_flickr_id": "4325636954", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "44572", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they wanted to get every detail they could , even the address .", "storylet_id": "222861"}], [{"original_text": "This one seemed out of place.", "album_id": "72157623210398901", "photo_flickr_id": "4324926725", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "44572", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one seemed out of place .", "storylet_id": "222862"}], [{"original_text": "They get a view from right under.", "album_id": "72157623210398901", "photo_flickr_id": "4325783052", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "44572", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they get a view from right under .", "storylet_id": "222863"}], [{"original_text": "Then, they add a filter.", "album_id": "72157623210398901", "photo_flickr_id": "4325031799", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "44572", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then , they add a filter .", "storylet_id": "222864"}], [{"original_text": "The church appeared ominous from this angle. ", "album_id": "72157623210398901", "photo_flickr_id": "4325743162", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "44573", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the church appeared ominous from this angle .", "storylet_id": "222865"}], [{"original_text": "It was the wrong church. We were looking for 814.", "album_id": "72157623210398901", "photo_flickr_id": "4325636954", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "44573", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was the wrong church . we were looking for 814 .", "storylet_id": "222866"}], [{"original_text": "We made extra effort to check if it was really 814.", "album_id": "72157623210398901", "photo_flickr_id": "4324926725", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "44573", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we made extra effort to check if it was really 814 .", "storylet_id": "222867"}], [{"original_text": "We took a step back and admired the church.", "album_id": "72157623210398901", "photo_flickr_id": "4325783052", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "44573", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a step back and admired the church .", "storylet_id": "222868"}], [{"original_text": "Clouds passed overhead and the church looked a little different.", "album_id": "72157623210398901", "photo_flickr_id": "4325031799", "setting": "last-3-pick-old-and-tell", "worker_id": "JL3OSU0EE5W61VM", "story_id": "44573", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "clouds passed overhead and the church looked a little different .", "storylet_id": "222869"}], [{"original_text": "Many buildings in Mexico were established in the early 1800's.", "album_id": "72157623210398901", "photo_flickr_id": "4325743162", "setting": "last-3-pick-old-and-tell", "worker_id": "X5LAJG4V0KRODQZ", "story_id": "44574", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many buildings in location were established in the early 1800 's .", "storylet_id": "222870"}], [{"original_text": "Some of the buildings still have their original door numbers.", "album_id": "72157623210398901", "photo_flickr_id": "4325636954", "setting": "last-3-pick-old-and-tell", "worker_id": "X5LAJG4V0KRODQZ", "story_id": "44574", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the buildings still have their original door numbers .", "storylet_id": "222871"}], [{"original_text": "Owners often put designs in their doors.", "album_id": "72157623210398901", "photo_flickr_id": "4324926725", "setting": "last-3-pick-old-and-tell", "worker_id": "X5LAJG4V0KRODQZ", "story_id": "44574", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "owners often put designs in their doors .", "storylet_id": "222872"}], [{"original_text": "This building was renovated with new paint.", "album_id": "72157623210398901", "photo_flickr_id": "4325783052", "setting": "last-3-pick-old-and-tell", "worker_id": "X5LAJG4V0KRODQZ", "story_id": "44574", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this building was renovated with new paint .", "storylet_id": "222873"}], [{"original_text": "It's still in the process of renovation and construction.", "album_id": "72157623210398901", "photo_flickr_id": "4325031799", "setting": "last-3-pick-old-and-tell", "worker_id": "X5LAJG4V0KRODQZ", "story_id": "44574", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's still in the process of renovation and construction .", "storylet_id": "222874"}], [{"original_text": "Visited the town of McDonough today. It was cold but at least the sun was shining.", "album_id": "72157623333774676", "photo_flickr_id": "4325215698", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "44575", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visited the town of mcdonough today . it was cold but at least the sun was shining .", "storylet_id": "222875"}], [{"original_text": "This is the marker claiming this is the largest, living longest Christmas tree.", "album_id": "72157623333774676", "photo_flickr_id": "4324480129", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "44575", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the marker claiming this is the largest , living longest christmas tree .", "storylet_id": "222876"}], [{"original_text": "The General Store. They don't carry much but can order what you need.", "album_id": "72157623333774676", "photo_flickr_id": "4325218738", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "44575", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the organization organization . they do n't carry much but can order what you need .", "storylet_id": "222877"}], [{"original_text": "Post Office and laundry. This is pretty much the entire town.", "album_id": "72157623333774676", "photo_flickr_id": "4324480599", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "44575", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "organization organization and laundry . this is pretty much the entire town .", "storylet_id": "222878"}], [{"original_text": "The old church in town. That is the end of our visit, it didn't take long.", "album_id": "72157623333774676", "photo_flickr_id": "4325216658", "setting": "first-2-pick-and-tell", "worker_id": "X2MSUXJGC9S5902", "story_id": "44575", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the old church in town . that is the end of our visit , it did n't take long .", "storylet_id": "222879"}], [{"original_text": "The town of McDonough has not changed much since the day it was formed. ", "album_id": "72157623333774676", "photo_flickr_id": "4324480271", "setting": "first-2-pick-and-tell", "worker_id": "6OAPMT79UMH4L9L", "story_id": "44576", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the town of mcdonough has not changed much since the day it was formed .", "storylet_id": "222880"}], [{"original_text": "The grocer is still in the same building as it was, although the house has changed. ", "album_id": "72157623333774676", "photo_flickr_id": "4325218738", "setting": "first-2-pick-and-tell", "worker_id": "6OAPMT79UMH4L9L", "story_id": "44576", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the grocer is still in the same building as it was , although the house has changed .", "storylet_id": "222881"}], [{"original_text": "This is the town's infamous Christmas tree; the decorating ceremony is an important town event. The whole community shows up.", "album_id": "72157623333774676", "photo_flickr_id": "4325216234", "setting": "first-2-pick-and-tell", "worker_id": "6OAPMT79UMH4L9L", "story_id": "44576", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the town 's infamous christmas tree ; the decorating ceremony is an important town event . the whole community shows up .", "storylet_id": "222882"}], [{"original_text": "The town hall and post office are run from the same simple building.", "album_id": "72157623333774676", "photo_flickr_id": "4324480599", "setting": "first-2-pick-and-tell", "worker_id": "6OAPMT79UMH4L9L", "story_id": "44576", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the town hall and post office are run from the same simple building .", "storylet_id": "222883"}], [{"original_text": "Our modest town makes the church appear grand in comparison.", "album_id": "72157623333774676", "photo_flickr_id": "4325216658", "setting": "first-2-pick-and-tell", "worker_id": "6OAPMT79UMH4L9L", "story_id": "44576", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our modest town makes the church appear grand in comparison .", "storylet_id": "222884"}], [{"original_text": "Welcome to my hometown. Allow me to show you around.", "album_id": "72157623333774676", "photo_flickr_id": "4325215698", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "44577", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "welcome to my hometown . allow me to show you around .", "storylet_id": "222885"}], [{"original_text": "I remember always coming down to this Christmas tree every year and everyone in town would help decorate it. ", "album_id": "72157623333774676", "photo_flickr_id": "4324480129", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "44577", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i remember always coming down to this christmas tree every year and everyone in town would help decorate it .", "storylet_id": "222886"}], [{"original_text": "This is the general store. ", "album_id": "72157623333774676", "photo_flickr_id": "4325218738", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "44577", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the general store .", "storylet_id": "222887"}], [{"original_text": "I used to come here after school every single day. I don't even remember where I got the money from.", "album_id": "72157623333774676", "photo_flickr_id": "4324480599", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "44577", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i used to come here after school every single day . i do n't even remember where i got the money from .", "storylet_id": "222888"}], [{"original_text": "Waking up to go to church every Sunday was always so annoying. That's probably why I no longer go. ", "album_id": "72157623333774676", "photo_flickr_id": "4325216658", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "44577", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "waking up to go to church every sunday was always so annoying . that 's probably why i no longer go .", "storylet_id": "222889"}], [{"original_text": "The town of McDonouch in New York is a sleepy little town that has a unique claim to fame.", "album_id": "72157623333774676", "photo_flickr_id": "4325215698", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "44578", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the town of location in location location is a sleepy little town that has a unique claim to fame .", "storylet_id": "222890"}], [{"original_text": "It is the home of the World's Largest Living Lit Christmas tree.", "album_id": "72157623333774676", "photo_flickr_id": "4324480129", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "44578", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is the home of the world 's largest living lit christmas tree .", "storylet_id": "222891"}], [{"original_text": "I stayed in this bed and breakfast when I visited the town to see the tree lit in early December.", "album_id": "72157623333774676", "photo_flickr_id": "4325218738", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "44578", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i stayed in this bed and breakfast when i visited the town to see the tree lit in early december .", "storylet_id": "222892"}], [{"original_text": "The whole town gathered at this restaurant to have hot chocolate and cookies before the tree lighting ceremony.", "album_id": "72157623333774676", "photo_flickr_id": "4324480599", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "44578", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole town gathered at this restaurant to have hot chocolate and cookies before the tree lighting ceremony .", "storylet_id": "222893"}], [{"original_text": "After the tree was lit, those that wanted to could attend a Christmas service in this small church.", "album_id": "72157623333774676", "photo_flickr_id": "4325216658", "setting": "last-3-pick-old-and-tell", "worker_id": "L2WO5VZ5RC1KNPR", "story_id": "44578", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the tree was lit , those that wanted to could attend a christmas service in this small church .", "storylet_id": "222894"}], [{"original_text": "Someone buys a new camera and decides to test it out on his town sign.", "album_id": "72157623333774676", "photo_flickr_id": "4325215698", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "44579", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "someone buys a new camera and decides to test it out on his town sign .", "storylet_id": "222895"}], [{"original_text": "Then, he takes a picture of a memorial.", "album_id": "72157623333774676", "photo_flickr_id": "4324480129", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "44579", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then , he takes a picture of a memorial .", "storylet_id": "222896"}], [{"original_text": "After that, he takes one of his local corner store.", "album_id": "72157623333774676", "photo_flickr_id": "4325218738", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "44579", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that , he takes one of his local corner store .", "storylet_id": "222897"}], [{"original_text": "Then, a picture of town hall.", "album_id": "72157623333774676", "photo_flickr_id": "4324480599", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "44579", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , a picture of town hall .", "storylet_id": "222898"}], [{"original_text": "Then, he gets one of the church", "album_id": "72157623333774676", "photo_flickr_id": "4325216658", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "44579", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then , he gets one of the church", "storylet_id": "222899"}], [{"original_text": "My husband and I went on vacation and found this quaint town.", "album_id": "72157594456493069", "photo_flickr_id": "343956239", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "44580", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband and i went on vacation and found this quaint town .", "storylet_id": "222900"}], [{"original_text": "It was Christmas time and the town was getting ready to have their winter festival.", "album_id": "72157594456493069", "photo_flickr_id": "343956281", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "44580", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was christmas time and the town was getting ready to have their winter festival .", "storylet_id": "222901"}], [{"original_text": "We were invited to take part in decorating the town tree.", "album_id": "72157594456493069", "photo_flickr_id": "343956312", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "44580", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we were invited to take part in decorating the town tree .", "storylet_id": "222902"}], [{"original_text": "The entire town went to the festival, everywhere else was deserted.", "album_id": "72157594456493069", "photo_flickr_id": "343956420", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "44580", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the entire town went to the festival , everywhere else was deserted .", "storylet_id": "222903"}], [{"original_text": "Afterwards we went over to the train station to continue on our journey.", "album_id": "72157594456493069", "photo_flickr_id": "343956349", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "44580", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards we went over to the train station to continue on our journey .", "storylet_id": "222904"}], [{"original_text": "A bright gray sky hung over the town all day.", "album_id": "72157594456493069", "photo_flickr_id": "343956312", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "44581", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a bright gray sky hung over the town all day .", "storylet_id": "222905"}], [{"original_text": "The people went about their business as usual.", "album_id": "72157594456493069", "photo_flickr_id": "343956281", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "44581", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the people went about their business as usual .", "storylet_id": "222906"}], [{"original_text": "The sky started to grow darker over the houses.", "album_id": "72157594456493069", "photo_flickr_id": "343956529", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "44581", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sky started to grow darker over the houses .", "storylet_id": "222907"}], [{"original_text": "It looked like it would rain over the tower.", "album_id": "72157594456493069", "photo_flickr_id": "343956200", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "44581", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looked like it would rain over the tower .", "storylet_id": "222908"}], [{"original_text": "People cleared the roads in preparation for the rain.", "album_id": "72157594456493069", "photo_flickr_id": "343956474", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "44581", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people cleared the roads in preparation for the rain .", "storylet_id": "222909"}], [{"original_text": "A large tree marked the city's business district.", "album_id": "72157594456493069", "photo_flickr_id": "343956312", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "44582", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a large tree marked the city 's business district .", "storylet_id": "222910"}], [{"original_text": "Many gathered around to enjoy the day's festivities.", "album_id": "72157594456493069", "photo_flickr_id": "343956281", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "44582", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many gathered around to enjoy the day 's festivities .", "storylet_id": "222911"}], [{"original_text": "The city dwellers woke up early to leave home and attend.", "album_id": "72157594456493069", "photo_flickr_id": "343956529", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "44582", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the city dwellers woke up early to leave home and attend .", "storylet_id": "222912"}], [{"original_text": "The building is one of the oldest in town.", "album_id": "72157594456493069", "photo_flickr_id": "343956200", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "44582", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the building is one of the oldest in town .", "storylet_id": "222913"}], [{"original_text": "After the event, everyone went home.", "album_id": "72157594456493069", "photo_flickr_id": "343956474", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "44582", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the event , everyone went home .", "storylet_id": "222914"}], [{"original_text": "Tourists explore the town and take pictures of the architecture and sights.", "album_id": "72157594456493069", "photo_flickr_id": "343956239", "setting": "last-3-pick-old-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "44583", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "tourists explore the town and take pictures of the architecture and sights .", "storylet_id": "222915"}], [{"original_text": "There are a lot of pretty buildings and architecture here.", "album_id": "72157594456493069", "photo_flickr_id": "343956281", "setting": "last-3-pick-old-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "44583", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there are a lot of pretty buildings and architecture here .", "storylet_id": "222916"}], [{"original_text": "There are also simple environmental structures like trees.", "album_id": "72157594456493069", "photo_flickr_id": "343956312", "setting": "last-3-pick-old-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "44583", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are also simple environmental structures like trees .", "storylet_id": "222917"}], [{"original_text": "The streets are uniquely paved and set up.", "album_id": "72157594456493069", "photo_flickr_id": "343956420", "setting": "last-3-pick-old-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "44583", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the streets are uniquely paved and set up .", "storylet_id": "222918"}], [{"original_text": "The restaurants have a new and rural simple structure that makes them elegant looking.", "album_id": "72157594456493069", "photo_flickr_id": "343956349", "setting": "last-3-pick-old-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "44583", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the restaurants have a new and rural simple structure that makes them elegant looking .", "storylet_id": "222919"}], [{"original_text": "Although many people love visiting the provincial capitol, I have always found it depressing, with the narrow street and the gloom.", "album_id": "72157594456493069", "photo_flickr_id": "343956239", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44584", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "although many people love visiting the provincial capitol , i have always found it depressing , with the narrow street and the gloom .", "storylet_id": "222920"}], [{"original_text": "My hotel was lovely, but it only added to my depressed feeling to be there with all the happy people.", "album_id": "72157594456493069", "photo_flickr_id": "343956281", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44584", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my hotel was lovely , but it only added to my depressed feeling to be there with all the happy people .", "storylet_id": "222921"}], [{"original_text": "This tree seemed sad, alone in the middle of a cement forest.", "album_id": "72157594456493069", "photo_flickr_id": "343956312", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44584", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this tree seemed sad , alone in the middle of a cement forest .", "storylet_id": "222922"}], [{"original_text": "The streets were often empty. Everything seemed drained of life.", "album_id": "72157594456493069", "photo_flickr_id": "343956420", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44584", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the streets were often empty . everything seemed drained of life .", "storylet_id": "222923"}], [{"original_text": "I was eager to leave at the depot as soon as I could.", "album_id": "72157594456493069", "photo_flickr_id": "343956349", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44584", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was eager to leave at the depot as soon as i could .", "storylet_id": "222924"}], [{"original_text": "During the day, tour groups explored the city.", "album_id": "72157594486753058", "photo_flickr_id": "344072429", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "44585", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "during the day , tour groups explored the city .", "storylet_id": "222925"}], [{"original_text": "They saw the Ferris wheel at dusk.", "album_id": "72157594486753058", "photo_flickr_id": "343851684", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "44585", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they saw the ferris wheel at dusk .", "storylet_id": "222926"}], [{"original_text": "And the large square of screens at night.", "album_id": "72157594486753058", "photo_flickr_id": "344007849", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "44585", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the large square of screens at night .", "storylet_id": "222927"}], [{"original_text": "After it all, they toasted with drinks.", "album_id": "72157594486753058", "photo_flickr_id": "344053398", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "44585", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after it all , they toasted with drinks .", "storylet_id": "222928"}], [{"original_text": "Finally, they decided to eat dinner.", "album_id": "72157594486753058", "photo_flickr_id": "343851683", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "44585", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , they decided to eat dinner .", "storylet_id": "222929"}], [{"original_text": "The town's square was so vibrant and full of life. It was lit up and full of people.", "album_id": "72157594486753058", "photo_flickr_id": "344007849", "setting": "first-2-pick-and-tell", "worker_id": "31057HOLZXP7QJ5", "story_id": "44586", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the town 's square was so vibrant and full of life . it was lit up and full of people .", "storylet_id": "222930"}], [{"original_text": "There were so many interesting sites to see including the town's famous bridge. ", "album_id": "72157594486753058", "photo_flickr_id": "344007866", "setting": "first-2-pick-and-tell", "worker_id": "31057HOLZXP7QJ5", "story_id": "44586", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many interesting sites to see including the town 's famous bridge .", "storylet_id": "222931"}], [{"original_text": "The architecture was amazing. So many beautiful old buildings.", "album_id": "72157594486753058", "photo_flickr_id": "344072429", "setting": "first-2-pick-and-tell", "worker_id": "31057HOLZXP7QJ5", "story_id": "44586", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the architecture was amazing . so many beautiful old buildings .", "storylet_id": "222932"}], [{"original_text": "The pubs were great too. We all got together and enjoyed a few drinks. ", "album_id": "72157594486753058", "photo_flickr_id": "344053398", "setting": "first-2-pick-and-tell", "worker_id": "31057HOLZXP7QJ5", "story_id": "44586", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pubs were great too . we all got together and enjoyed a few drinks .", "storylet_id": "222933"}], [{"original_text": "We also sampled some of the local pub fare. The snacks were delicious. ", "album_id": "72157594486753058", "photo_flickr_id": "343851683", "setting": "first-2-pick-and-tell", "worker_id": "31057HOLZXP7QJ5", "story_id": "44586", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also sampled some of the local pub fare . the snacks were delicious .", "storylet_id": "222934"}], [{"original_text": "I went on a trip to London with a lot of college friends. I loved seeing the classic old buildings.", "album_id": "72157594486753058", "photo_flickr_id": "344072429", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44587", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on a trip to location with a lot of college friends . i loved seeing the classic old buildings .", "storylet_id": "222935"}], [{"original_text": "On a walk at night, I was overcome by the spooky beauty of the Ferris Wheel in the distance.", "album_id": "72157594486753058", "photo_flickr_id": "343851684", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44587", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on a walk at night , i was overcome by the spooky beauty of the organization organization in the distance .", "storylet_id": "222936"}], [{"original_text": "The bright lights of the strip contrasted with the old parts of the city.", "album_id": "72157594486753058", "photo_flickr_id": "344007849", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44587", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bright lights of the strip contrasted with the old parts of the city .", "storylet_id": "222937"}], [{"original_text": "We all gathered at a pub for a toast to old times and new memories.", "album_id": "72157594486753058", "photo_flickr_id": "344053398", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44587", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all gathered at a pub for a toast to old times and new memories .", "storylet_id": "222938"}], [{"original_text": "Then we had a typical English food buffet. I must admit food wasn't the best part of the trip!", "album_id": "72157594486753058", "photo_flickr_id": "343851683", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44587", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we had a typical english food buffet . i must admit food was n't the best part of the trip !", "storylet_id": "222939"}], [{"original_text": "We decided to take a tour of the city ", "album_id": "72157594486753058", "photo_flickr_id": "344072429", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "44588", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to take a tour of the city", "storylet_id": "222940"}], [{"original_text": "the cloud cover was a little disappointing but tolerable ", "album_id": "72157594486753058", "photo_flickr_id": "343851684", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "44588", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cloud cover was a little disappointing but tolerable", "storylet_id": "222941"}], [{"original_text": "nightlife is always fun to try out ", "album_id": "72157594486753058", "photo_flickr_id": "344007849", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "44588", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nightlife is always fun to try out", "storylet_id": "222942"}], [{"original_text": "hanging out with friends a nice end to nice day ", "album_id": "72157594486753058", "photo_flickr_id": "344053398", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "44588", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "hanging out with friends a nice end to nice day", "storylet_id": "222943"}], [{"original_text": "especially if sharing with good food ", "album_id": "72157594486753058", "photo_flickr_id": "343851683", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "44588", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "especially if sharing with good food", "storylet_id": "222944"}], [{"original_text": "We began the grey day at the crack of dawn by attending church.", "album_id": "72157594486753058", "photo_flickr_id": "344072429", "setting": "last-3-pick-old-and-tell", "worker_id": "CN7MQ1QUDCRHEV0", "story_id": "44589", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we began the grey day at the crack of dawn by attending church .", "storylet_id": "222945"}], [{"original_text": "After a long, cold day of family celebrations the sun was setting and night began to fall.", "album_id": "72157594486753058", "photo_flickr_id": "343851684", "setting": "last-3-pick-old-and-tell", "worker_id": "CN7MQ1QUDCRHEV0", "story_id": "44589", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after a long , cold day of family celebrations the sun was setting and night began to fall .", "storylet_id": "222946"}], [{"original_text": "Heading downtown I began to feel excitement when the big cities lights began to light up the area.", "album_id": "72157594486753058", "photo_flickr_id": "344007849", "setting": "last-3-pick-old-and-tell", "worker_id": "CN7MQ1QUDCRHEV0", "story_id": "44589", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "heading downtown i began to feel excitement when the big cities lights began to light up the area .", "storylet_id": "222947"}], [{"original_text": "We had a fantastic time sharing drinks with friends in a crowded bar.", "album_id": "72157594486753058", "photo_flickr_id": "344053398", "setting": "last-3-pick-old-and-tell", "worker_id": "CN7MQ1QUDCRHEV0", "story_id": "44589", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a fantastic time sharing drinks with friends in a crowded bar .", "storylet_id": "222948"}], [{"original_text": "The night ended with take out food and cigarettes being scattered throughout the living room after a night of drinks.", "album_id": "72157594486753058", "photo_flickr_id": "343851683", "setting": "last-3-pick-old-and-tell", "worker_id": "CN7MQ1QUDCRHEV0", "story_id": "44589", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night ended with take out food and cigarettes being scattered throughout the living room after a night of drinks .", "storylet_id": "222949"}], [{"original_text": "The trip into the city made for a great walk.", "album_id": "72157623004060365", "photo_flickr_id": "4240551546", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44590", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the trip into the city made for a great walk .", "storylet_id": "222950"}], [{"original_text": "We even saw some great art along the way.", "album_id": "72157623004060365", "photo_flickr_id": "4239786689", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44590", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we even saw some great art along the way .", "storylet_id": "222951"}], [{"original_text": "As well as a sticky note oriented protest.", "album_id": "72157623004060365", "photo_flickr_id": "4240167705", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44590", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as well as a sticky note oriented protest .", "storylet_id": "222952"}], [{"original_text": "We stopped to have some great dessert at a restaurant.", "album_id": "72157623004060365", "photo_flickr_id": "4240269819", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44590", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped to have some great dessert at a restaurant .", "storylet_id": "222953"}], [{"original_text": "On the walk home we could see a beautiful full moon.", "album_id": "72157623004060365", "photo_flickr_id": "4239723429", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44590", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "on the walk home we could see a beautiful full moon .", "storylet_id": "222954"}], [{"original_text": "We had arrived at the hotel, ready to get a good nights sleep before going into town tomorrow. ", "album_id": "72157623004060365", "photo_flickr_id": "4240553316", "setting": "first-2-pick-and-tell", "worker_id": "N970WXG6Q658YFT", "story_id": "44591", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had arrived at the hotel , ready to get a good nights sleep before going into town tomorrow .", "storylet_id": "222955"}], [{"original_text": "The next morning we went on a self guided art tour of the town. This particular piece is so realistic that many have called the police for assistance. ", "album_id": "72157623004060365", "photo_flickr_id": "4240558044", "setting": "first-2-pick-and-tell", "worker_id": "N970WXG6Q658YFT", "story_id": "44591", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the next morning we went on a self guided art tour of the town . this particular piece is so realistic that many have called the police for assistance .", "storylet_id": "222956"}], [{"original_text": "There was also some more traditional art that we saw on our tour. ", "album_id": "72157623004060365", "photo_flickr_id": "4240167705", "setting": "first-2-pick-and-tell", "worker_id": "N970WXG6Q658YFT", "story_id": "44591", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was also some more traditional art that we saw on our tour .", "storylet_id": "222957"}], [{"original_text": "My favorite art on the tour was some of the architecture that we saw on so many buildings, like this one. ", "album_id": "72157623004060365", "photo_flickr_id": "4241049096", "setting": "first-2-pick-and-tell", "worker_id": "N970WXG6Q658YFT", "story_id": "44591", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my favorite art on the tour was some of the architecture that we saw on so many buildings , like this one .", "storylet_id": "222958"}], [{"original_text": "Even our desert after the tour seemed to become a work of art. It had been a great day. ", "album_id": "72157623004060365", "photo_flickr_id": "4240269819", "setting": "first-2-pick-and-tell", "worker_id": "N970WXG6Q658YFT", "story_id": "44591", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even our desert after the tour seemed to become a work of art . it had been a great day .", "storylet_id": "222959"}], [{"original_text": "This is the building I am trapped in, but I have a plan to escape.", "album_id": "72157623004060365", "photo_flickr_id": "4240551546", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44592", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the building i am trapped in , but i have a plan to escape .", "storylet_id": "222960"}], [{"original_text": "With no guards around, i'm climbing out of my window to freedom!", "album_id": "72157623004060365", "photo_flickr_id": "4239786689", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44592", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "with no guards around , i 'm climbing out of my window to freedom !", "storylet_id": "222961"}], [{"original_text": "I camouflaged a car with sticky notes so I can escape easier and faster.", "album_id": "72157623004060365", "photo_flickr_id": "4240167705", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44592", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i camouflaged a car with sticky notes so i can escape easier and faster .", "storylet_id": "222962"}], [{"original_text": "First place I stop was a dessert place that serves my favorite dish.", "album_id": "72157623004060365", "photo_flickr_id": "4240269819", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44592", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "first place i stop was a dessert place that serves my favorite dish .", "storylet_id": "222963"}], [{"original_text": "After that, i'll travel through the night to wherever I want to go next.", "album_id": "72157623004060365", "photo_flickr_id": "4239723429", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44592", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that , i 'll travel through the night to wherever i want to go next .", "storylet_id": "222964"}], [{"original_text": "We went on a sight-seeing trip, check out this old mill building we saw.", "album_id": "72157623004060365", "photo_flickr_id": "4240553316", "setting": "last-3-pick-old-and-tell", "worker_id": "TF8E02PR0AWWADL", "story_id": "44593", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on a sight-seeing trip , check out this old mill building we saw .", "storylet_id": "222965"}], [{"original_text": "Then we saw some amazing graffiti art; it almost looks 3d.", "album_id": "72157623004060365", "photo_flickr_id": "4240558044", "setting": "last-3-pick-old-and-tell", "worker_id": "TF8E02PR0AWWADL", "story_id": "44593", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we saw some amazing graffiti art ; it almost looks 3d .", "storylet_id": "222966"}], [{"original_text": "There was a car that someone completely covered in post-it notes.", "album_id": "72157623004060365", "photo_flickr_id": "4240167705", "setting": "last-3-pick-old-and-tell", "worker_id": "TF8E02PR0AWWADL", "story_id": "44593", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a car that someone completely covered in post-it notes .", "storylet_id": "222967"}], [{"original_text": "This really old building looks like a castle or a fortress.", "album_id": "72157623004060365", "photo_flickr_id": "4241049096", "setting": "last-3-pick-old-and-tell", "worker_id": "TF8E02PR0AWWADL", "story_id": "44593", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this really old building looks like a castle or a fortress .", "storylet_id": "222968"}], [{"original_text": "After sight-seeing, we stopped and got some ice cream.", "album_id": "72157623004060365", "photo_flickr_id": "4240269819", "setting": "last-3-pick-old-and-tell", "worker_id": "TF8E02PR0AWWADL", "story_id": "44593", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after sight-seeing , we stopped and got some ice cream .", "storylet_id": "222969"}], [{"original_text": "Early this morning we left our loft apartment in the city.", "album_id": "72157623004060365", "photo_flickr_id": "4240551546", "setting": "last-3-pick-old-and-tell", "worker_id": "DG4YK8OJRHNNTTV", "story_id": "44594", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "early this morning we left our loft apartment in the city .", "storylet_id": "222970"}], [{"original_text": "We saw some strange art of a man grasping on to a window sill. ", "album_id": "72157623004060365", "photo_flickr_id": "4239786689", "setting": "last-3-pick-old-and-tell", "worker_id": "DG4YK8OJRHNNTTV", "story_id": "44594", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw some strange art of a man grasping on to a window sill .", "storylet_id": "222971"}], [{"original_text": "Shortly after, something even stranger: a car covered with post-it notes. ", "album_id": "72157623004060365", "photo_flickr_id": "4240167705", "setting": "last-3-pick-old-and-tell", "worker_id": "DG4YK8OJRHNNTTV", "story_id": "44594", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "shortly after , something even stranger : a car covered with post-it notes .", "storylet_id": "222972"}], [{"original_text": "With that excitement out of the way, we stopped by a super fancy ice cream place.", "album_id": "72157623004060365", "photo_flickr_id": "4240269819", "setting": "last-3-pick-old-and-tell", "worker_id": "DG4YK8OJRHNNTTV", "story_id": "44594", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with that excitement out of the way , we stopped by a super fancy ice cream place .", "storylet_id": "222973"}], [{"original_text": "We finished off the day with a breathtaking view of the cityscape at night.", "album_id": "72157623004060365", "photo_flickr_id": "4239723429", "setting": "last-3-pick-old-and-tell", "worker_id": "DG4YK8OJRHNNTTV", "story_id": "44594", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finished off the day with a breathtaking view of the cityscape at night .", "storylet_id": "222974"}], [{"original_text": "We have a very old church near us that has beautiful stained glass windows. ", "album_id": "72157623225771765", "photo_flickr_id": "4329871263", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "44595", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we have a very old church near us that has beautiful stained glass windows .", "storylet_id": "222975"}], [{"original_text": "These windows are so intricate, that they really are works of art. ", "album_id": "72157623225771765", "photo_flickr_id": "4330609788", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "44595", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these windows are so intricate , that they really are works of art .", "storylet_id": "222976"}], [{"original_text": "And the sun coming in through them on Sunday morning is beautiful. ", "album_id": "72157623225771765", "photo_flickr_id": "4330610286", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "44595", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the sun coming in through them on sunday morning is beautiful .", "storylet_id": "222977"}], [{"original_text": "The church has been here for decades and it is a part of the town's history. ", "album_id": "72157623225771765", "photo_flickr_id": "4329879739", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "44595", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the church has been here for decades and it is a part of the town 's history .", "storylet_id": "222978"}], [{"original_text": "I hope it stays like this for future generations to see. ", "album_id": "72157623225771765", "photo_flickr_id": "4330613454", "setting": "first-2-pick-and-tell", "worker_id": "84Z9JX3J9U3OZT2", "story_id": "44595", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope it stays like this for future generations to see .", "storylet_id": "222979"}], [{"original_text": "An old church I wanted to take pictures of today. I really like the black & white photos.", "album_id": "72157623225771765", "photo_flickr_id": "4329879739", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "44596", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an old church i wanted to take pictures of today . i really like the black & white photos .", "storylet_id": "222980"}], [{"original_text": "The back of the church. This part was added on years later.", "album_id": "72157623225771765", "photo_flickr_id": "4330613454", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "44596", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the back of the church . this part was added on years later .", "storylet_id": "222981"}], [{"original_text": "The main stained glass window in the church. Looks creepy in the dark.", "album_id": "72157623225771765", "photo_flickr_id": "4330609788", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "44596", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the main stained glass window in the church . looks creepy in the dark .", "storylet_id": "222982"}], [{"original_text": "A whole other window in the daylight. Not scary at all, kind of calming.", "album_id": "72157623225771765", "photo_flickr_id": "4330610286", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "44596", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a whole other window in the daylight . not scary at all , kind of calming .", "storylet_id": "222983"}], [{"original_text": "This is one of my favorite ones in the church.", "album_id": "72157623225771765", "photo_flickr_id": "4329879455", "setting": "first-2-pick-and-tell", "worker_id": "F55RP72W5B2ASYC", "story_id": "44596", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is one of my favorite ones in the church .", "storylet_id": "222984"}], [{"original_text": "We went to church and had a great time together.", "album_id": "72157623225771765", "photo_flickr_id": "4329871263", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "44597", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to church and had a great time together .", "storylet_id": "222985"}], [{"original_text": "My family went to the church every Sunday. ", "album_id": "72157623225771765", "photo_flickr_id": "4330609788", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "44597", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my family went to the church every sunday .", "storylet_id": "222986"}], [{"original_text": "We felt closer as a family through the experience. ", "album_id": "72157623225771765", "photo_flickr_id": "4330610286", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "44597", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we felt closer as a family through the experience .", "storylet_id": "222987"}], [{"original_text": "We left the church and went out to eat somewhere. ", "album_id": "72157623225771765", "photo_flickr_id": "4329879739", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "44597", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we left the church and went out to eat somewhere .", "storylet_id": "222988"}], [{"original_text": "I always felt fulfilled after we went to church.", "album_id": "72157623225771765", "photo_flickr_id": "4330613454", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "44597", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i always felt fulfilled after we went to church .", "storylet_id": "222989"}], [{"original_text": "Stained-glass windows are beautiful pieces of artwork. ", "album_id": "72157623225771765", "photo_flickr_id": "4329871263", "setting": "last-3-pick-old-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "44598", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "stained-glass windows are beautiful pieces of artwork .", "storylet_id": "222990"}], [{"original_text": "They often portray scenes from the Bible. ", "album_id": "72157623225771765", "photo_flickr_id": "4330609788", "setting": "last-3-pick-old-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "44598", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they often portray scenes from the bible .", "storylet_id": "222991"}], [{"original_text": "They come to life when the sun shines through the window. ", "album_id": "72157623225771765", "photo_flickr_id": "4330610286", "setting": "last-3-pick-old-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "44598", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they come to life when the sun shines through the window .", "storylet_id": "222992"}], [{"original_text": "They can be found in many older churches.", "album_id": "72157623225771765", "photo_flickr_id": "4329879739", "setting": "last-3-pick-old-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "44598", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they can be found in many older churches .", "storylet_id": "222993"}], [{"original_text": "They are found in churches of all sizes. ", "album_id": "72157623225771765", "photo_flickr_id": "4330613454", "setting": "last-3-pick-old-and-tell", "worker_id": "9WTCTMB1FBNNEJ2", "story_id": "44598", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are found in churches of all sizes .", "storylet_id": "222994"}], [{"original_text": "We visited an oold church.", "album_id": "72157623225771765", "photo_flickr_id": "4329871263", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44599", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited an oold church .", "storylet_id": "222995"}], [{"original_text": "There was huge ornate stained glass.", "album_id": "72157623225771765", "photo_flickr_id": "4330609788", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44599", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was huge ornate stained glass .", "storylet_id": "222996"}], [{"original_text": "No priest was present that day.", "album_id": "72157623225771765", "photo_flickr_id": "4330610286", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44599", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "no priest was present that day .", "storylet_id": "222997"}], [{"original_text": "The view outside was beautiful.", "album_id": "72157623225771765", "photo_flickr_id": "4329879739", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44599", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view outside was beautiful .", "storylet_id": "222998"}], [{"original_text": "We really enjoyed it.", "album_id": "72157623225771765", "photo_flickr_id": "4330613454", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44599", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we really enjoyed it .", "storylet_id": "222999"}], [{"original_text": "The train finally arrived. ", "album_id": "72157623139776636", "photo_flickr_id": "4245252977", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44600", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the train finally arrived .", "storylet_id": "223000"}], [{"original_text": "We quickly jumped aboard and were ready for our journey.", "album_id": "72157623139776636", "photo_flickr_id": "4250176650", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44600", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we quickly jumped aboard and were ready for our journey .", "storylet_id": "223001"}], [{"original_text": "It seemed like a short trip, taking three hours.", "album_id": "72157623139776636", "photo_flickr_id": "4249410705", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44600", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it seemed like a short trip , taking three hours .", "storylet_id": "223002"}], [{"original_text": "When we arrived, the weather had changed. It was snow covered ground. ", "album_id": "72157623139776636", "photo_flickr_id": "4250192028", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44600", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we arrived , the weather had changed . it was snow covered ground .", "storylet_id": "223003"}], [{"original_text": "We made our way to the hotel and looked forward to our vacation.", "album_id": "72157623139776636", "photo_flickr_id": "4250921464", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44600", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we made our way to the hotel and looked forward to our vacation .", "storylet_id": "223004"}], [{"original_text": "Travel has always fascinated me. Some people prefer trains.", "album_id": "72157623139776636", "photo_flickr_id": "4245252977", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44601", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "travel has always fascinated me . some people prefer trains .", "storylet_id": "223005"}], [{"original_text": "Others prefer to drive themselves.", "album_id": "72157623139776636", "photo_flickr_id": "4245353103", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44601", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "others prefer to drive themselves .", "storylet_id": "223006"}], [{"original_text": "Some even like the subway.", "album_id": "72157623139776636", "photo_flickr_id": "4250176650", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44601", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some even like the subway .", "storylet_id": "223007"}], [{"original_text": "You can always go grand on a ship.", "album_id": "72157623139776636", "photo_flickr_id": "4250188513", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44601", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you can always go grand on a ship .", "storylet_id": "223008"}], [{"original_text": "I myself prefer to use my feet.", "album_id": "72157623139776636", "photo_flickr_id": "4250204464", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44601", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i myself prefer to use my feet .", "storylet_id": "223009"}], [{"original_text": "We were headed to work and had to wait on the train.", "album_id": "72157623139776636", "photo_flickr_id": "4245252977", "setting": "last-3-pick-old-and-tell", "worker_id": "VXV8JR2H35X3HF6", "story_id": "44602", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were headed to work and had to wait on the train .", "storylet_id": "223010"}], [{"original_text": "When it arrived, we had to wait on people to get off of it.", "album_id": "72157623139776636", "photo_flickr_id": "4250176650", "setting": "last-3-pick-old-and-tell", "worker_id": "VXV8JR2H35X3HF6", "story_id": "44602", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when it arrived , we had to wait on people to get off of it .", "storylet_id": "223011"}], [{"original_text": "After everyone got off, we were able to get on.", "album_id": "72157623139776636", "photo_flickr_id": "4249410705", "setting": "last-3-pick-old-and-tell", "worker_id": "VXV8JR2H35X3HF6", "story_id": "44602", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after everyone got off , we were able to get on .", "storylet_id": "223012"}], [{"original_text": "As we was leaving, we noticed in that area it was covered in snow.", "album_id": "72157623139776636", "photo_flickr_id": "4250192028", "setting": "last-3-pick-old-and-tell", "worker_id": "VXV8JR2H35X3HF6", "story_id": "44602", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as we was leaving , we noticed in that area it was covered in snow .", "storylet_id": "223013"}], [{"original_text": "Just down the tracks a bit, the snow had melted already. ", "album_id": "72157623139776636", "photo_flickr_id": "4250921464", "setting": "last-3-pick-old-and-tell", "worker_id": "VXV8JR2H35X3HF6", "story_id": "44602", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "just down the tracks a bit , the snow had melted already .", "storylet_id": "223014"}], [{"original_text": "We are going on a trip.", "album_id": "72157623139776636", "photo_flickr_id": "4245252977", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44603", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are going on a trip .", "storylet_id": "223015"}], [{"original_text": "We waited for the train.", "album_id": "72157623139776636", "photo_flickr_id": "4250176650", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44603", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we waited for the train .", "storylet_id": "223016"}], [{"original_text": "The bus station at our destination was busy.", "album_id": "72157623139776636", "photo_flickr_id": "4249410705", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44603", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bus station at our destination was busy .", "storylet_id": "223017"}], [{"original_text": "When we arrived there was snow.", "album_id": "72157623139776636", "photo_flickr_id": "4250192028", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44603", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we arrived there was snow .", "storylet_id": "223018"}], [{"original_text": "We had fun!", "album_id": "72157623139776636", "photo_flickr_id": "4250921464", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44603", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had fun !", "storylet_id": "223019"}], [{"original_text": "Sonya was worried that the spy would follow her off of the train.", "album_id": "72157623139776636", "photo_flickr_id": "4245252977", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "44604", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was worried that the spy would follow her off of the train .", "storylet_id": "223020"}], [{"original_text": "When she stepped out onto the platform, she saw a man looking her way, but was unsure if it was him.", "album_id": "72157623139776636", "photo_flickr_id": "4250176650", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "44604", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when she stepped out onto the platform , she saw a man looking her way , but was unsure if it was him .", "storylet_id": "223021"}], [{"original_text": "She turned in walked the opposite direction, hurrying to leave.", "album_id": "72157623139776636", "photo_flickr_id": "4249410705", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "44604", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she turned in walked the opposite direction , hurrying to leave .", "storylet_id": "223022"}], [{"original_text": "As she she left the station, she trudged to the snow to her home to hide.", "album_id": "72157623139776636", "photo_flickr_id": "4250192028", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "44604", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as she she left the station , she trudged to the snow to her home to hide .", "storylet_id": "223023"}], [{"original_text": "She hid for the entire winter, until the snow melted away to water.", "album_id": "72157623139776636", "photo_flickr_id": "4250921464", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "44604", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she hid for the entire winter , until the snow melted away to water .", "storylet_id": "223024"}], [{"original_text": "My friend begged me to sight see while we were overseas.", "album_id": "72157594465639903", "photo_flickr_id": "349407512", "setting": "first-2-pick-and-tell", "worker_id": "VUWCVOKPXAOMRWU", "story_id": "44605", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend begged me to sight see while we were overseas .", "storylet_id": "223025"}], [{"original_text": "After I agreed, we encountered some unique statues atop buildings.", "album_id": "72157594465639903", "photo_flickr_id": "349411146", "setting": "first-2-pick-and-tell", "worker_id": "VUWCVOKPXAOMRWU", "story_id": "44605", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "after i agreed , we encountered some unique statues atop buildings .", "storylet_id": "223026"}], [{"original_text": "However, the statues during our window shopping were interesting as well.", "album_id": "72157594465639903", "photo_flickr_id": "349416233", "setting": "first-2-pick-and-tell", "worker_id": "VUWCVOKPXAOMRWU", "story_id": "44605", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however , the statues during our window shopping were interesting as well .", "storylet_id": "223027"}], [{"original_text": "Even the statues along the streets were fun to look at.", "album_id": "72157594465639903", "photo_flickr_id": "349411691", "setting": "first-2-pick-and-tell", "worker_id": "VUWCVOKPXAOMRWU", "story_id": "44605", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the statues along the streets were fun to look at .", "storylet_id": "223028"}], [{"original_text": "She was very happy that we were able to explore before saying goodbye to the city.", "album_id": "72157594465639903", "photo_flickr_id": "349408804", "setting": "first-2-pick-and-tell", "worker_id": "VUWCVOKPXAOMRWU", "story_id": "44605", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was very happy that we were able to explore before saying goodbye to the city .", "storylet_id": "223029"}], [{"original_text": "We toured the factory today.", "album_id": "72157594465639903", "photo_flickr_id": "349411146", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44606", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we toured the factory today .", "storylet_id": "223030"}], [{"original_text": "They had ceramic cat statues.", "album_id": "72157594465639903", "photo_flickr_id": "349416233", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44606", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had ceramic cat statues .", "storylet_id": "223031"}], [{"original_text": "A concrete teddy bear statue was unique.", "album_id": "72157594465639903", "photo_flickr_id": "349411691", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44606", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a concrete teddy bear statue was unique .", "storylet_id": "223032"}], [{"original_text": "The entrance had gets structure.", "album_id": "72157594465639903", "photo_flickr_id": "349412140", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44606", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the entrance had gets structure .", "storylet_id": "223033"}], [{"original_text": "They go through a process to make all the items in the factory.", "album_id": "72157594465639903", "photo_flickr_id": "349414164", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44606", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they go through a process to make all the items in the factory .", "storylet_id": "223034"}], [{"original_text": "the scary woman was looking very scared and spooky", "album_id": "72157594465639903", "photo_flickr_id": "349407512", "setting": "last-3-pick-old-and-tell", "worker_id": "UNQSN2W6G6UV2WQ", "story_id": "44607", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the scary woman was looking very scared and spooky", "storylet_id": "223035"}], [{"original_text": "a big statue of a Brown lion holding of grey plate with the symbol", "album_id": "72157594465639903", "photo_flickr_id": "349411146", "setting": "last-3-pick-old-and-tell", "worker_id": "UNQSN2W6G6UV2WQ", "story_id": "44607", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a big statue of a brown lion holding of grey plate with the symbol", "storylet_id": "223036"}], [{"original_text": "another 2 statues of two white cats", "album_id": "72157594465639903", "photo_flickr_id": "349416233", "setting": "last-3-pick-old-and-tell", "worker_id": "UNQSN2W6G6UV2WQ", "story_id": "44607", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another 2 statues of two white cats", "storylet_id": "223037"}], [{"original_text": "send a statue of a teddy bear sitting in a clay chair", "album_id": "72157594465639903", "photo_flickr_id": "349411691", "setting": "last-3-pick-old-and-tell", "worker_id": "UNQSN2W6G6UV2WQ", "story_id": "44607", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "send a statue of a teddy bear sitting in a clay chair", "storylet_id": "223038"}], [{"original_text": "scary lady is now waving goodbye to everyone", "album_id": "72157594465639903", "photo_flickr_id": "349408804", "setting": "last-3-pick-old-and-tell", "worker_id": "UNQSN2W6G6UV2WQ", "story_id": "44607", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "scary lady is now waving goodbye to everyone", "storylet_id": "223039"}], [{"original_text": "We took pictures of the old church today.", "album_id": "72157594465639903", "photo_flickr_id": "349407512", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "44608", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took pictures of the old church today .", "storylet_id": "223040"}], [{"original_text": "This lion was Jenny's favorite.", "album_id": "72157594465639903", "photo_flickr_id": "349411146", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "44608", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this lion was [female] 's favorite .", "storylet_id": "223041"}], [{"original_text": "We found these cats in one of the empty rooms.", "album_id": "72157594465639903", "photo_flickr_id": "349416233", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "44608", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we found these cats in one of the empty rooms .", "storylet_id": "223042"}], [{"original_text": "This bear was round the back.", "album_id": "72157594465639903", "photo_flickr_id": "349411691", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "44608", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this bear was round the back .", "storylet_id": "223043"}], [{"original_text": "This archway led to more houses behind the church.", "album_id": "72157594465639903", "photo_flickr_id": "349408804", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "44608", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this archway led to more houses behind the church .", "storylet_id": "223044"}], [{"original_text": "This sorceress loves to brag about the people she turns into statues.", "album_id": "72157594465639903", "photo_flickr_id": "349407512", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44609", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this sorceress loves to brag about the people she turns into statues .", "storylet_id": "223045"}], [{"original_text": "This is a man she turned into a lion because he was rude to her.", "album_id": "72157594465639903", "photo_flickr_id": "349411146", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44609", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a man she turned into a lion because he was rude to her .", "storylet_id": "223046"}], [{"original_text": "Here are a couple of men who laughed at her, so she turned them into stone cats.", "album_id": "72157594465639903", "photo_flickr_id": "349416233", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44609", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here are a couple of men who laughed at her , so she turned them into stone cats .", "storylet_id": "223047"}], [{"original_text": "Her favorite one was turning her lazy dad into a bear while he watched tv.", "album_id": "72157594465639903", "photo_flickr_id": "349411691", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44609", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her favorite one was turning her lazy dad into a bear while he watched tv .", "storylet_id": "223048"}], [{"original_text": "I realized why she brought me to see this. She waved her hand to say goodbye and I was frozen in place forever.", "album_id": "72157594465639903", "photo_flickr_id": "349408804", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44609", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i realized why she brought me to see this . she waved her hand to say goodbye and i was frozen in place forever .", "storylet_id": "223049"}], [{"original_text": "Anna went to visit a church on her vacation.", "album_id": "72157594465679052", "photo_flickr_id": "349430305", "setting": "first-2-pick-and-tell", "worker_id": "NXZUH0IFUELT0LM", "story_id": "44610", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] went to visit a church on her vacation .", "storylet_id": "223050"}], [{"original_text": "She didn't know what this monkey was supposed to represent, but she thought it was funny.", "album_id": "72157594465679052", "photo_flickr_id": "349433552", "setting": "first-2-pick-and-tell", "worker_id": "NXZUH0IFUELT0LM", "story_id": "44610", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she did n't know what this monkey was supposed to represent , but she thought it was funny .", "storylet_id": "223051"}], [{"original_text": "She thought the church was so beautiful she wanted a picture with it. ", "album_id": "72157594465679052", "photo_flickr_id": "349429073", "setting": "first-2-pick-and-tell", "worker_id": "NXZUH0IFUELT0LM", "story_id": "44610", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she thought the church was so beautiful she wanted a picture with it .", "storylet_id": "223052"}], [{"original_text": "Outside the church she decided to take a selfie", "album_id": "72157594465679052", "photo_flickr_id": "349434452", "setting": "first-2-pick-and-tell", "worker_id": "NXZUH0IFUELT0LM", "story_id": "44610", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "outside the church she decided to take a selfie", "storylet_id": "223053"}], [{"original_text": "Later she saw a statue that looked like her and took a picture with it. ", "album_id": "72157594465679052", "photo_flickr_id": "349435746", "setting": "first-2-pick-and-tell", "worker_id": "NXZUH0IFUELT0LM", "story_id": "44610", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later she saw a statue that looked like her and took a picture with it .", "storylet_id": "223054"}], [{"original_text": "The church had some beautiful stain glass.", "album_id": "72157594465679052", "photo_flickr_id": "349430305", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44611", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the church had some beautiful stain glass .", "storylet_id": "223055"}], [{"original_text": "As well as some amazingly carved pews.", "album_id": "72157594465679052", "photo_flickr_id": "349433552", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44611", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as well as some amazingly carved pews .", "storylet_id": "223056"}], [{"original_text": "We could also see an old church bell that was on display.", "album_id": "72157594465679052", "photo_flickr_id": "349432768", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44611", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we could also see an old church bell that was on display .", "storylet_id": "223057"}], [{"original_text": "The statues cut an imposing silhouette.", "album_id": "72157594465679052", "photo_flickr_id": "349427409", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44611", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the statues cut an imposing silhouette .", "storylet_id": "223058"}], [{"original_text": "It was a humbling experience.", "album_id": "72157594465679052", "photo_flickr_id": "349434452", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44611", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a humbling experience .", "storylet_id": "223059"}], [{"original_text": "The dark church was creepy in the lingering light.", "album_id": "72157594465679052", "photo_flickr_id": "349430305", "setting": "last-3-pick-old-and-tell", "worker_id": "TRYEWTQ09UEHFR6", "story_id": "44612", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the dark church was creepy in the lingering light .", "storylet_id": "223060"}], [{"original_text": "The carvings in the wood shone strangely.", "album_id": "72157594465679052", "photo_flickr_id": "349433552", "setting": "last-3-pick-old-and-tell", "worker_id": "TRYEWTQ09UEHFR6", "story_id": "44612", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the carvings in the wood shone strangely .", "storylet_id": "223061"}], [{"original_text": "A girl asked her friend to take her picture in the dimly lit church.", "album_id": "72157594465679052", "photo_flickr_id": "349429073", "setting": "last-3-pick-old-and-tell", "worker_id": "TRYEWTQ09UEHFR6", "story_id": "44612", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a girl asked her friend to take her picture in the dimly lit church .", "storylet_id": "223062"}], [{"original_text": "Her friend then took a selfie before getting creeped out.", "album_id": "72157594465679052", "photo_flickr_id": "349434452", "setting": "last-3-pick-old-and-tell", "worker_id": "TRYEWTQ09UEHFR6", "story_id": "44612", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her friend then took a selfie before getting creeped out .", "storylet_id": "223063"}], [{"original_text": "They ran outside- it was much safer there.", "album_id": "72157594465679052", "photo_flickr_id": "349435746", "setting": "last-3-pick-old-and-tell", "worker_id": "TRYEWTQ09UEHFR6", "story_id": "44612", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they ran outside- it was much safer there .", "storylet_id": "223064"}], [{"original_text": "I love visiting this old church, it helps me relax and I love the beautiful windows,", "album_id": "72157594465679052", "photo_flickr_id": "349430305", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44613", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love visiting this old church , it helps me relax and i love the beautiful windows ,", "storylet_id": "223065"}], [{"original_text": "This is one of my favorite pieces in the church, it makes me happy to see it.", "album_id": "72157594465679052", "photo_flickr_id": "349433552", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44613", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is one of my favorite pieces in the church , it makes me happy to see it .", "storylet_id": "223066"}], [{"original_text": "I met a random girl while I was relaxing in the church, she seems to like me.", "album_id": "72157594465679052", "photo_flickr_id": "349429073", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44613", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i met a random girl while i was relaxing in the church , she seems to like me .", "storylet_id": "223067"}], [{"original_text": "She got too close for comfort and tried to kiss me, not in my church! ew", "album_id": "72157594465679052", "photo_flickr_id": "349434452", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44613", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she got too close for comfort and tried to kiss me , not in my church ! ew", "storylet_id": "223068"}], [{"original_text": "I told her I was not interested in her at all and ditched her by a statue outside the church.", "album_id": "72157594465679052", "photo_flickr_id": "349435746", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44613", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i told her i was not interested in her at all and ditched her by a statue outside the church .", "storylet_id": "223069"}], [{"original_text": "The day was gloomy and the stained glass was made darker by the lack of light from the Sun.", "album_id": "72157594465679052", "photo_flickr_id": "349430305", "setting": "last-3-pick-old-and-tell", "worker_id": "5AZQMOZB58YVHV6", "story_id": "44614", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day was gloomy and the stained glass was made darker by the lack of light from the sun .", "storylet_id": "223070"}], [{"original_text": "I realized, I must use my camera on my cellphone so I could later identify the statues.", "album_id": "72157594465679052", "photo_flickr_id": "349433552", "setting": "last-3-pick-old-and-tell", "worker_id": "5AZQMOZB58YVHV6", "story_id": "44614", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i realized , i must use my camera on my cellphone so i could later identify the statues .", "storylet_id": "223071"}], [{"original_text": "I was alone, but I could feel that I was being watched.", "album_id": "72157594465679052", "photo_flickr_id": "349429073", "setting": "last-3-pick-old-and-tell", "worker_id": "5AZQMOZB58YVHV6", "story_id": "44614", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was alone , but i could feel that i was being watched .", "storylet_id": "223072"}], [{"original_text": "But always ready and willing for a selfie. Maybe, they might think I'm a tourist.", "album_id": "72157594465679052", "photo_flickr_id": "349434452", "setting": "last-3-pick-old-and-tell", "worker_id": "5AZQMOZB58YVHV6", "story_id": "44614", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but always ready and willing for a selfie . maybe , they might think i 'm a tourist .", "storylet_id": "223073"}], [{"original_text": "Finally, I compared the statues. Damn! They don't match. My search continues. ", "album_id": "72157594465679052", "photo_flickr_id": "349435746", "setting": "last-3-pick-old-and-tell", "worker_id": "5AZQMOZB58YVHV6", "story_id": "44614", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , i compared the statues . damn ! they do n't match . my search continues .", "storylet_id": "223074"}], [{"original_text": "The old village had some ancient sights.", "album_id": "72157594465789785", "photo_flickr_id": "349469425", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44615", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old village had some ancient sights .", "storylet_id": "223075"}], [{"original_text": "The walls were completely covered in moss.", "album_id": "72157594465789785", "photo_flickr_id": "349470644", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44615", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the walls were completely covered in moss .", "storylet_id": "223076"}], [{"original_text": "As were the graves in the area.", "album_id": "72157594465789785", "photo_flickr_id": "349471401", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44615", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as were the graves in the area .", "storylet_id": "223077"}], [{"original_text": "Some of the bricks were more moss than brick.", "album_id": "72157594465789785", "photo_flickr_id": "349474772", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44615", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the bricks were more moss than brick .", "storylet_id": "223078"}], [{"original_text": "We even saw an ancient gravestone while we were there.", "album_id": "72157594465789785", "photo_flickr_id": "349476162", "setting": "first-2-pick-and-tell", "worker_id": "98ZGZOCGDKMK732", "story_id": "44615", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even saw an ancient gravestone while we were there .", "storylet_id": "223079"}], [{"original_text": "In the ancient cemetery, the dead don't speak but the moss tells a story of slow, calm life.", "album_id": "72157594465789785", "photo_flickr_id": "349472226", "setting": "first-2-pick-and-tell", "worker_id": "6H2JD8U2P9VS6IA", "story_id": "44616", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the ancient cemetery , the dead do n't speak but the moss tells a story of slow , calm life .", "storylet_id": "223080"}], [{"original_text": "It covers the headstones of villagers past, clinging to the engraved letters.", "album_id": "72157594465789785", "photo_flickr_id": "349470875", "setting": "first-2-pick-and-tell", "worker_id": "6H2JD8U2P9VS6IA", "story_id": "44616", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it covers the headstones of villagers past , clinging to the engraved letters .", "storylet_id": "223081"}], [{"original_text": "The moss makes a soft carpet on the hard, ancient stones, like a welcome mat to this foreboding place.", "album_id": "72157594465789785", "photo_flickr_id": "349474772", "setting": "first-2-pick-and-tell", "worker_id": "6H2JD8U2P9VS6IA", "story_id": "44616", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the moss makes a soft carpet on the hard , ancient stones , like a welcome mat to this foreboding place .", "storylet_id": "223082"}], [{"original_text": "Wherever it can find a shady spot, it thrives, like on the corners of this ancient staircase.", "album_id": "72157594465789785", "photo_flickr_id": "349475080", "setting": "first-2-pick-and-tell", "worker_id": "6H2JD8U2P9VS6IA", "story_id": "44616", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "wherever it can find a shady spot , it thrives , like on the corners of this ancient staircase .", "storylet_id": "223083"}], [{"original_text": "The moss has no preference for who's graves it covers, and does not care how Maria died. ", "album_id": "72157594465789785", "photo_flickr_id": "349475671", "setting": "first-2-pick-and-tell", "worker_id": "6H2JD8U2P9VS6IA", "story_id": "44616", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the moss has no preference for who 's graves it covers , and does not care how [female] died .", "storylet_id": "223084"}], [{"original_text": "There are many sacred places left from thousands of years ago all over the earth.", "album_id": "72157594465789785", "photo_flickr_id": "349469425", "setting": "last-3-pick-old-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44617", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are many sacred places left from thousands of years ago all over the earth .", "storylet_id": "223085"}], [{"original_text": "Many of these sacred places are very unusually shaped and have a strange look. ", "album_id": "72157594465789785", "photo_flickr_id": "349470644", "setting": "last-3-pick-old-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44617", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of these sacred places are very unusually shaped and have a strange look .", "storylet_id": "223086"}], [{"original_text": "Some of these sacred places from our past appear to similar to tomb stones or monuments of more previous years.", "album_id": "72157594465789785", "photo_flickr_id": "349471401", "setting": "last-3-pick-old-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44617", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of these sacred places from our past appear to similar to tomb stones or monuments of more previous years .", "storylet_id": "223087"}], [{"original_text": "Some of the sacred sites are more modern in that they show signs of skilled labor like block laying and the mixing of concrete. They also may have been painted. ", "album_id": "72157594465789785", "photo_flickr_id": "349474772", "setting": "last-3-pick-old-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44617", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the sacred sites are more modern in that they show signs of skilled labor like block laying and the mixing of concrete . they also may have been painted .", "storylet_id": "223088"}], [{"original_text": "At many of these sights artifacts have been found which contain writing and are made of silver and gold. This appears to be more modern.", "album_id": "72157594465789785", "photo_flickr_id": "349476162", "setting": "last-3-pick-old-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44617", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at many of these sights artifacts have been found which contain writing and are made of silver and gold . this appears to be more modern .", "storylet_id": "223089"}], [{"original_text": "I've heard ancient stories of secret passages through these mossy rock areas.", "album_id": "72157594465789785", "photo_flickr_id": "349472226", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44618", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 've heard ancient stories of secret passages through these mossy rock areas .", "storylet_id": "223090"}], [{"original_text": "Some old writing within the moss, maybe it's a clue or code to enter.", "album_id": "72157594465789785", "photo_flickr_id": "349470875", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44618", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some old writing within the moss , maybe it 's a clue or code to enter .", "storylet_id": "223091"}], [{"original_text": "The clue told me to push the green brick to enter a special chamber.", "album_id": "72157594465789785", "photo_flickr_id": "349474772", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44618", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the clue told me to push the green brick to enter a special chamber .", "storylet_id": "223092"}], [{"original_text": "I pushed the brick and it opened to these old mossy stairs, i'll follow them.", "album_id": "72157594465789785", "photo_flickr_id": "349475080", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44618", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i pushed the brick and it opened to these old mossy stairs , i 'll follow them .", "storylet_id": "223093"}], [{"original_text": "It lead me to this sacred burial ground, it's full of treasures and wealth beyond your imagination.", "album_id": "72157594465789785", "photo_flickr_id": "349475671", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44618", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it lead me to this sacred burial ground , it 's full of treasures and wealth beyond your imagination .", "storylet_id": "223094"}], [{"original_text": "We went to check out an old graveyard.", "album_id": "72157594465789785", "photo_flickr_id": "349472226", "setting": "last-3-pick-old-and-tell", "worker_id": "TF8E02PR0AWWADL", "story_id": "44619", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to check out an old graveyard .", "storylet_id": "223095"}], [{"original_text": "There was moss growing on everything.", "album_id": "72157594465789785", "photo_flickr_id": "349470875", "setting": "last-3-pick-old-and-tell", "worker_id": "TF8E02PR0AWWADL", "story_id": "44619", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was moss growing on everything .", "storylet_id": "223096"}], [{"original_text": "We saw a really old stone wall.", "album_id": "72157594465789785", "photo_flickr_id": "349474772", "setting": "last-3-pick-old-and-tell", "worker_id": "TF8E02PR0AWWADL", "story_id": "44619", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw a really old stone wall .", "storylet_id": "223097"}], [{"original_text": "We saw some old stairs that looked like they took a lot of work to make. ", "album_id": "72157594465789785", "photo_flickr_id": "349475080", "setting": "last-3-pick-old-and-tell", "worker_id": "TF8E02PR0AWWADL", "story_id": "44619", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw some old stairs that looked like they took a lot of work to make .", "storylet_id": "223098"}], [{"original_text": "Then we saw a huge grave marker that must have been really expensive back in the day.", "album_id": "72157594465789785", "photo_flickr_id": "349475671", "setting": "last-3-pick-old-and-tell", "worker_id": "TF8E02PR0AWWADL", "story_id": "44619", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we saw a huge grave marker that must have been really expensive back in the day .", "storylet_id": "223099"}], [{"original_text": "The family takes a vacation to the beautiful coast line.", "album_id": "72157594466065461", "photo_flickr_id": "349643435", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "44620", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family takes a vacation to the beautiful coast line .", "storylet_id": "223100"}], [{"original_text": "The waves come in from the ocean and pound the shores.", "album_id": "72157594466065461", "photo_flickr_id": "349647851", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "44620", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the waves come in from the ocean and pound the shores .", "storylet_id": "223101"}], [{"original_text": "Watching a sunset from the beach is always a fantastic way to end the day.", "album_id": "72157594466065461", "photo_flickr_id": "349650832", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "44620", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "watching a sunset from the beach is always a fantastic way to end the day .", "storylet_id": "223102"}], [{"original_text": "Then as darkness falls, the lights come on in the bay to celebrate.", "album_id": "72157594466065461", "photo_flickr_id": "349650837", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "44620", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then as darkness falls , the lights come on in the bay to celebrate .", "storylet_id": "223103"}], [{"original_text": "All in all, this family had a great day at the coast.", "album_id": "72157594466065461", "photo_flickr_id": "349656408", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "44620", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all in all , this family had a great day at the coast .", "storylet_id": "223104"}], [{"original_text": "The view was amazing from he car. ", "album_id": "72157594466065461", "photo_flickr_id": "349643431", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "44621", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the view was amazing from he car .", "storylet_id": "223105"}], [{"original_text": "The rocks and water just smelled so good. ", "album_id": "72157594466065461", "photo_flickr_id": "349643435", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "44621", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rocks and water just smelled so good .", "storylet_id": "223106"}], [{"original_text": "The sun was shining just right.", "album_id": "72157594466065461", "photo_flickr_id": "349643438", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "44621", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sun was shining just right .", "storylet_id": "223107"}], [{"original_text": "The water was so blue and peaceful. ", "album_id": "72157594466065461", "photo_flickr_id": "349643441", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "44621", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the water was so blue and peaceful .", "storylet_id": "223108"}], [{"original_text": "This was the prettiest shot I got that day.", "album_id": "72157594466065461", "photo_flickr_id": "349643444", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "44621", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the prettiest shot i got that day .", "storylet_id": "223109"}], [{"original_text": "We walked along the sidewalk to get to the beach.", "album_id": "72157594466065461", "photo_flickr_id": "349643431", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "44622", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we walked along the sidewalk to get to the beach .", "storylet_id": "223110"}], [{"original_text": "This was the house we were staying in.", "album_id": "72157594466065461", "photo_flickr_id": "349643435", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "44622", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was the house we were staying in .", "storylet_id": "223111"}], [{"original_text": "We loved the feeling of the sand between our toes.", "album_id": "72157594466065461", "photo_flickr_id": "349643438", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "44622", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we loved the feeling of the sand between our toes .", "storylet_id": "223112"}], [{"original_text": "We got our swimsuits on and dove in.", "album_id": "72157594466065461", "photo_flickr_id": "349643441", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "44622", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got our swimsuits on and dove in .", "storylet_id": "223113"}], [{"original_text": "We spotted some fish in this little part.", "album_id": "72157594466065461", "photo_flickr_id": "349643444", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "44622", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we spotted some fish in this little part .", "storylet_id": "223114"}], [{"original_text": "We came across some buildings down by the ocean.", "album_id": "72157594466065461", "photo_flickr_id": "349643435", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44623", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we came across some buildings down by the ocean .", "storylet_id": "223115"}], [{"original_text": "The view from the buildings was so relaxing.", "album_id": "72157594466065461", "photo_flickr_id": "349647851", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44623", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view from the buildings was so relaxing .", "storylet_id": "223116"}], [{"original_text": "We stayed long enough to watch the sun set.", "album_id": "72157594466065461", "photo_flickr_id": "349650832", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44623", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stayed long enough to watch the sun set .", "storylet_id": "223117"}], [{"original_text": "At night we came across some Christmas lights displayed in the water.", "album_id": "72157594466065461", "photo_flickr_id": "349650837", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44623", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at night we came across some christmas lights displayed in the water .", "storylet_id": "223118"}], [{"original_text": "It was really cold at night by the water.", "album_id": "72157594466065461", "photo_flickr_id": "349656408", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44623", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was really cold at night by the water .", "storylet_id": "223119"}], [{"original_text": "This is the place we're visiting on the water.", "album_id": "72157594466065461", "photo_flickr_id": "349643435", "setting": "last-3-pick-old-and-tell", "worker_id": "Y454TL5KL19J3E0", "story_id": "44624", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the place we 're visiting on the water .", "storylet_id": "223120"}], [{"original_text": "The waves generally keep us up at night.", "album_id": "72157594466065461", "photo_flickr_id": "349647851", "setting": "last-3-pick-old-and-tell", "worker_id": "Y454TL5KL19J3E0", "story_id": "44624", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the waves generally keep us up at night .", "storylet_id": "223121"}], [{"original_text": "But the sunsets make it worth all the noise!", "album_id": "72157594466065461", "photo_flickr_id": "349650832", "setting": "last-3-pick-old-and-tell", "worker_id": "Y454TL5KL19J3E0", "story_id": "44624", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but the sunsets make it worth all the noise !", "storylet_id": "223122"}], [{"original_text": "Once the sun sets we hit the nearby town to see the light displays.", "album_id": "72157594466065461", "photo_flickr_id": "349650837", "setting": "last-3-pick-old-and-tell", "worker_id": "Y454TL5KL19J3E0", "story_id": "44624", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once the sun sets we hit the nearby town to see the light displays .", "storylet_id": "223123"}], [{"original_text": "They were so gorgeous we needed to take a picture with them!", "album_id": "72157594466065461", "photo_flickr_id": "349656408", "setting": "last-3-pick-old-and-tell", "worker_id": "Y454TL5KL19J3E0", "story_id": "44624", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were so gorgeous we needed to take a picture with them !", "storylet_id": "223124"}], [{"original_text": "We decided to go for a drive. I liked how the ice stuck to the trees. ", "album_id": "72157623047266387", "photo_flickr_id": "4258227879", "setting": "first-2-pick-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44625", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go for a drive . i liked how the ice stuck to the trees .", "storylet_id": "223125"}], [{"original_text": "This field was totally frozen over. ", "album_id": "72157623047266387", "photo_flickr_id": "4258246491", "setting": "first-2-pick-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44625", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this field was totally frozen over .", "storylet_id": "223126"}], [{"original_text": "The mountain in the distance looked very cold and foreboding. ", "album_id": "72157623047266387", "photo_flickr_id": "4259054922", "setting": "first-2-pick-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44625", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the mountain in the distance looked very cold and foreboding .", "storylet_id": "223127"}], [{"original_text": "This was the wall in front of someone's house. ", "album_id": "72157623047266387", "photo_flickr_id": "4259065980", "setting": "first-2-pick-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44625", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was the wall in front of someone 's house .", "storylet_id": "223128"}], [{"original_text": "I liked this tree the best, looked like the perfect Christmas tree!", "album_id": "72157623047266387", "photo_flickr_id": "4258323107", "setting": "first-2-pick-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44625", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i liked this tree the best , looked like the perfect christmas tree !", "storylet_id": "223129"}], [{"original_text": "the woods near my house are so pretty", "album_id": "72157623047266387", "photo_flickr_id": "4258224143", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44626", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the woods near my house are so pretty", "storylet_id": "223130"}], [{"original_text": "especially after the first snow fall", "album_id": "72157623047266387", "photo_flickr_id": "4258231643", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44626", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "especially after the first snow fall", "storylet_id": "223131"}], [{"original_text": "its like a winter wonderland", "album_id": "72157623047266387", "photo_flickr_id": "4258235823", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44626", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "its like a winter wonderland", "storylet_id": "223132"}], [{"original_text": "someday i would like to go up to the mountain", "album_id": "72157623047266387", "photo_flickr_id": "4259054922", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44626", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someday i would like to go up to the mountain", "storylet_id": "223133"}], [{"original_text": "there is an amazing castle i would go to ", "album_id": "72157623047266387", "photo_flickr_id": "4258305799", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44626", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is an amazing castle i would go to", "storylet_id": "223134"}], [{"original_text": "The sun started finally appearing after a few snowy winter days.", "album_id": "72157623047266387", "photo_flickr_id": "4258227879", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "44627", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sun started finally appearing after a few snowy winter days .", "storylet_id": "223135"}], [{"original_text": "You could look out over the field and see the snow melting.", "album_id": "72157623047266387", "photo_flickr_id": "4258246491", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "44627", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you could look out over the field and see the snow melting .", "storylet_id": "223136"}], [{"original_text": "The mountain in the distant looked lush and green after the snow melted.", "album_id": "72157623047266387", "photo_flickr_id": "4259054922", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "44627", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the mountain in the distant looked lush and green after the snow melted .", "storylet_id": "223137"}], [{"original_text": "A fence still held some snow on top of it.", "album_id": "72157623047266387", "photo_flickr_id": "4259065980", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "44627", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a fence still held some snow on top of it .", "storylet_id": "223138"}], [{"original_text": "Some areas of the ground were still covered in snow where the sun hadn't shone on them yet.", "album_id": "72157623047266387", "photo_flickr_id": "4258323107", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "44627", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some areas of the ground were still covered in snow where the sun had n't shone on them yet .", "storylet_id": "223139"}], [{"original_text": "The new snowfall covered the ground.", "album_id": "72157623047266387", "photo_flickr_id": "4258224143", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44628", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the new snowfall covered the ground .", "storylet_id": "223140"}], [{"original_text": "It wasn't very much.", "album_id": "72157623047266387", "photo_flickr_id": "4258231643", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44628", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was n't very much .", "storylet_id": "223141"}], [{"original_text": "In some places, the sun had already melted it.", "album_id": "72157623047266387", "photo_flickr_id": "4258235823", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44628", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in some places , the sun had already melted it .", "storylet_id": "223142"}], [{"original_text": "Other places, it was still barely on the ground.", "album_id": "72157623047266387", "photo_flickr_id": "4259054922", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44628", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other places , it was still barely on the ground .", "storylet_id": "223143"}], [{"original_text": "It was pretty thick in my backyard however.", "album_id": "72157623047266387", "photo_flickr_id": "4258305799", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44628", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was pretty thick in my backyard however .", "storylet_id": "223144"}], [{"original_text": "There was an ice storm last night and it made everything look beautiful.", "album_id": "72157623047266387", "photo_flickr_id": "4258224143", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44629", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an ice storm last night and it made everything look beautiful .", "storylet_id": "223145"}], [{"original_text": "The woods by the lake looked like an enchanted forest.", "album_id": "72157623047266387", "photo_flickr_id": "4258231643", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44629", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the woods by the lake looked like an enchanted forest .", "storylet_id": "223146"}], [{"original_text": "The ice on the branches twinkled in the sunlight like stars.", "album_id": "72157623047266387", "photo_flickr_id": "4258235823", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44629", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the ice on the branches twinkled in the sunlight like stars .", "storylet_id": "223147"}], [{"original_text": "Looking out upon the valley, the mountain in the distance appeared to float in the air.", "album_id": "72157623047266387", "photo_flickr_id": "4259054922", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44629", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "looking out upon the valley , the mountain in the distance appeared to float in the air .", "storylet_id": "223148"}], [{"original_text": "The weeping willow by the cemetery looked as if it were alive. Ice storms are dangerous but the aftermath is amazing.", "album_id": "72157623047266387", "photo_flickr_id": "4258305799", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44629", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the weeping willow by the cemetery looked as if it were alive . ice storms are dangerous but the aftermath is amazing .", "storylet_id": "223149"}], [{"original_text": "We walked towards the entrance to an amazing cathedral.", "album_id": "72157623357797204", "photo_flickr_id": "4332841692", "setting": "first-2-pick-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44630", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we walked towards the entrance to an amazing cathedral .", "storylet_id": "223150"}], [{"original_text": "The years it must have taken to create this. ", "album_id": "72157623357797204", "photo_flickr_id": "4335068410", "setting": "first-2-pick-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44630", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the years it must have taken to create this .", "storylet_id": "223151"}], [{"original_text": "The details of the ceiling was breathtaking. ", "album_id": "72157623357797204", "photo_flickr_id": "4343221122", "setting": "first-2-pick-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44630", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the details of the ceiling was breathtaking .", "storylet_id": "223152"}], [{"original_text": "Looking straight up it seemed you were looking forever. ", "album_id": "72157623357797204", "photo_flickr_id": "4347685549", "setting": "first-2-pick-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44630", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "looking straight up it seemed you were looking forever .", "storylet_id": "223153"}], [{"original_text": "The final part of the church was the courtyard in the middle. ", "album_id": "72157623357797204", "photo_flickr_id": "4345999960", "setting": "first-2-pick-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44630", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the final part of the church was the courtyard in the middle .", "storylet_id": "223154"}], [{"original_text": "The church was the most beautiful building in the square.", "album_id": "72157623357797204", "photo_flickr_id": "4332841692", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "44631", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the church was the most beautiful building in the square .", "storylet_id": "223155"}], [{"original_text": "The inside was just as beautifully decorated.", "album_id": "72157623357797204", "photo_flickr_id": "4335068410", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "44631", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the inside was just as beautifully decorated .", "storylet_id": "223156"}], [{"original_text": "In the front was an ornate alter.", "album_id": "72157623357797204", "photo_flickr_id": "4342485285", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "44631", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in the front was an ornate alter .", "storylet_id": "223157"}], [{"original_text": "The church had seating for many people.", "album_id": "72157623357797204", "photo_flickr_id": "4347684823", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "44631", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the church had seating for many people .", "storylet_id": "223158"}], [{"original_text": "The tour of the church ended with the viewing of a well kept courtyard.", "album_id": "72157623357797204", "photo_flickr_id": "4345999960", "setting": "first-2-pick-and-tell", "worker_id": "JXQVNDOZHYNHHOW", "story_id": "44631", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the tour of the church ended with the viewing of a well kept courtyard .", "storylet_id": "223159"}], [{"original_text": "This place is beautiful on the outside.", "album_id": "72157623357797204", "photo_flickr_id": "4332841692", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "44632", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this place is beautiful on the outside .", "storylet_id": "223160"}], [{"original_text": "It is just as beautiful on the inside.", "album_id": "72157623357797204", "photo_flickr_id": "4335068410", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "44632", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is just as beautiful on the inside .", "storylet_id": "223161"}], [{"original_text": "So much work went into making this so beautiful.", "album_id": "72157623357797204", "photo_flickr_id": "4342485285", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "44632", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so much work went into making this so beautiful .", "storylet_id": "223162"}], [{"original_text": "I would love to see this filled with people in celebration.", "album_id": "72157623357797204", "photo_flickr_id": "4347684823", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "44632", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i would love to see this filled with people in celebration .", "storylet_id": "223163"}], [{"original_text": "A nice place to congregate when you are done inside.", "album_id": "72157623357797204", "photo_flickr_id": "4345999960", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "44632", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a nice place to congregate when you are done inside .", "storylet_id": "223164"}], [{"original_text": "Sara Valentine went to Italy on vacation. She visited an amazing mansion.", "album_id": "72157623357797204", "photo_flickr_id": "4332841692", "setting": "last-3-pick-old-and-tell", "worker_id": "2DO9LQ7S3270920", "story_id": "44633", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] valentine went to location on vacation . she visited an amazing mansion .", "storylet_id": "223165"}], [{"original_text": "The mansion had artwork on the ceiling and wherever she walked she looked up.", "album_id": "72157623357797204", "photo_flickr_id": "4335068410", "setting": "last-3-pick-old-and-tell", "worker_id": "2DO9LQ7S3270920", "story_id": "44633", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the mansion had artwork on the ceiling and wherever she walked she looked up .", "storylet_id": "223166"}], [{"original_text": "She loved the doors and the archways. She wanted to buy the mansion, but couldn't afford it.", "album_id": "72157623357797204", "photo_flickr_id": "4343221122", "setting": "last-3-pick-old-and-tell", "worker_id": "2DO9LQ7S3270920", "story_id": "44633", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she loved the doors and the archways . she wanted to buy the mansion , but could n't afford it .", "storylet_id": "223167"}], [{"original_text": "She walked into a wing of the mansion that had very interesting details. She noticed it looked like hangers hanging from the ceiling. She didn't like that so she quickly went outside.", "album_id": "72157623357797204", "photo_flickr_id": "4347685549", "setting": "last-3-pick-old-and-tell", "worker_id": "2DO9LQ7S3270920", "story_id": "44633", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she walked into a wing of the mansion that had very interesting details . she noticed it looked like hangers hanging from the ceiling . she did n't like that so she quickly went outside .", "storylet_id": "223168"}], [{"original_text": "She noticed a small lawn with a funny shape. She had heard that the shape was associated with an underground group. She quickly went back inside packed her things and got the first flight out. ", "album_id": "72157623357797204", "photo_flickr_id": "4345999960", "setting": "last-3-pick-old-and-tell", "worker_id": "2DO9LQ7S3270920", "story_id": "44633", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she noticed a small lawn with a funny shape . she had heard that the shape was associated with an underground group . she quickly went back inside packed her things and got the first flight out .", "storylet_id": "223169"}], [{"original_text": "Although we were tired of sightseeing, when it looked like a bad storm was approaching we ducked into the nearest church.", "album_id": "72157623357797204", "photo_flickr_id": "4332841692", "setting": "last-3-pick-old-and-tell", "worker_id": "1Z0H5X4KZYPPO3J", "story_id": "44634", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "although we were tired of sightseeing , when it looked like a bad storm was approaching we ducked into the nearest church .", "storylet_id": "223170"}], [{"original_text": "There, we were stunned by the beauty inside.", "album_id": "72157623357797204", "photo_flickr_id": "4335068410", "setting": "last-3-pick-old-and-tell", "worker_id": "1Z0H5X4KZYPPO3J", "story_id": "44634", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there , we were stunned by the beauty inside .", "storylet_id": "223171"}], [{"original_text": "It was remarkable that human ingenuity and relatively primitive tools had constructed such a building.", "album_id": "72157623357797204", "photo_flickr_id": "4342485285", "setting": "last-3-pick-old-and-tell", "worker_id": "1Z0H5X4KZYPPO3J", "story_id": "44634", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was remarkable that human ingenuity and relatively primitive tools had constructed such a building .", "storylet_id": "223172"}], [{"original_text": "We realized it was deep religious feelings and the desire to express these feelings that inspired the designers and workers.", "album_id": "72157623357797204", "photo_flickr_id": "4347684823", "setting": "last-3-pick-old-and-tell", "worker_id": "1Z0H5X4KZYPPO3J", "story_id": "44634", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we realized it was deep religious feelings and the desire to express these feelings that inspired the designers and workers .", "storylet_id": "223173"}], [{"original_text": "As we stepped into a courtyard and looked upon the expansive sky, it was easy to see how they had been so inspired. ", "album_id": "72157623357797204", "photo_flickr_id": "4345999960", "setting": "last-3-pick-old-and-tell", "worker_id": "1Z0H5X4KZYPPO3J", "story_id": "44634", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as we stepped into a courtyard and looked upon the expansive sky , it was easy to see how they had been so inspired .", "storylet_id": "223174"}], [{"original_text": "It was an amazing trip, going back home after all of these years.", "album_id": "72157623512500536", "photo_flickr_id": "4347465798", "setting": "first-2-pick-and-tell", "worker_id": "6JMM097ZPD6E7RO", "story_id": "44635", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was an amazing trip , going back home after all of these years .", "storylet_id": "223175"}], [{"original_text": "The wall around the house was beginning to crumble.", "album_id": "72157623512500536", "photo_flickr_id": "4346715641", "setting": "first-2-pick-and-tell", "worker_id": "6JMM097ZPD6E7RO", "story_id": "44635", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wall around the house was beginning to crumble .", "storylet_id": "223176"}], [{"original_text": "Walking through the gate was like meeting an old friend.", "album_id": "72157623512500536", "photo_flickr_id": "4347473916", "setting": "first-2-pick-and-tell", "worker_id": "6JMM097ZPD6E7RO", "story_id": "44635", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "walking through the gate was like meeting an old friend .", "storylet_id": "223177"}], [{"original_text": "The yard is full of all of my family members that have gone before me.", "album_id": "72157623512500536", "photo_flickr_id": "4347469618", "setting": "first-2-pick-and-tell", "worker_id": "6JMM097ZPD6E7RO", "story_id": "44635", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the yard is full of all of my family members that have gone before me .", "storylet_id": "223178"}], [{"original_text": "I sit out back and think about one day coming home to stay.", "album_id": "72157623512500536", "photo_flickr_id": "4347467274", "setting": "first-2-pick-and-tell", "worker_id": "6JMM097ZPD6E7RO", "story_id": "44635", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i sit out back and think about one day coming home to stay .", "storylet_id": "223179"}], [{"original_text": "the old church has a graveyard", "album_id": "72157623512500536", "photo_flickr_id": "4346713505", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44636", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the old church has a graveyard", "storylet_id": "223180"}], [{"original_text": "this was the first house in the county turned into a church", "album_id": "72157623512500536", "photo_flickr_id": "4347465798", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44636", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was the first house in the county turned into a church", "storylet_id": "223181"}], [{"original_text": "the original settlers are buried here", "album_id": "72157623512500536", "photo_flickr_id": "4346718189", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44636", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the original settlers are buried here", "storylet_id": "223182"}], [{"original_text": "most of the decedents still live in the area ", "album_id": "72157623512500536", "photo_flickr_id": "4347467274", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44636", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "most of the decedents still live in the area", "storylet_id": "223183"}], [{"original_text": "the gate has been here for over 100 years ", "album_id": "72157623512500536", "photo_flickr_id": "4347473916", "setting": "first-2-pick-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44636", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the gate has been here for over 100 years", "storylet_id": "223184"}], [{"original_text": "There was an old cemetery behind the local church.", "album_id": "72157623512500536", "photo_flickr_id": "4346713505", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44637", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an old cemetery behind the local church .", "storylet_id": "223185"}], [{"original_text": "This church was built from the 1800's.", "album_id": "72157623512500536", "photo_flickr_id": "4347465798", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44637", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this church was built from the 1800 's .", "storylet_id": "223186"}], [{"original_text": "The graves were older.", "album_id": "72157623512500536", "photo_flickr_id": "4346718189", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44637", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the graves were older .", "storylet_id": "223187"}], [{"original_text": "The writing on the headstones were almost all weathered away.", "album_id": "72157623512500536", "photo_flickr_id": "4347467274", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44637", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the writing on the headstones were almost all weathered away .", "storylet_id": "223188"}], [{"original_text": "There was an old stone gate leading into it.", "album_id": "72157623512500536", "photo_flickr_id": "4347473916", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44637", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was an old stone gate leading into it .", "storylet_id": "223189"}], [{"original_text": "I returned to my old house that day.", "album_id": "72157623512500536", "photo_flickr_id": "4346713505", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "44638", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i returned to my old house that day .", "storylet_id": "223190"}], [{"original_text": "It still looked exactly as it used to, except it was a church now.", "album_id": "72157623512500536", "photo_flickr_id": "4347465798", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "44638", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it still looked exactly as it used to , except it was a church now .", "storylet_id": "223191"}], [{"original_text": "The cemetery nearby was depressing to see again.", "album_id": "72157623512500536", "photo_flickr_id": "4346718189", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "44638", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the cemetery nearby was depressing to see again .", "storylet_id": "223192"}], [{"original_text": "The house was really beautiful though and I remembered my childhood there.", "album_id": "72157623512500536", "photo_flickr_id": "4347467274", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "44638", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the house was really beautiful though and i remembered my childhood there .", "storylet_id": "223193"}], [{"original_text": "I finally left and traveled back home.", "album_id": "72157623512500536", "photo_flickr_id": "4347473916", "setting": "last-3-pick-old-and-tell", "worker_id": "8VFGM0RL4NBBI04", "story_id": "44638", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i finally left and traveled back home .", "storylet_id": "223194"}], [{"original_text": "the church was white", "album_id": "72157623512500536", "photo_flickr_id": "4347465798", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44639", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the church was white", "storylet_id": "223195"}], [{"original_text": "and there were rocks near.", "album_id": "72157623512500536", "photo_flickr_id": "4346715641", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44639", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and there were rocks near .", "storylet_id": "223196"}], [{"original_text": "The gate was big", "album_id": "72157623512500536", "photo_flickr_id": "4347473916", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44639", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the gate was big", "storylet_id": "223197"}], [{"original_text": "and there was a home near", "album_id": "72157623512500536", "photo_flickr_id": "4347469618", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44639", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and there was a home near", "storylet_id": "223198"}], [{"original_text": "that was a cemetery home.", "album_id": "72157623512500536", "photo_flickr_id": "4347467274", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44639", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that was a cemetery home .", "storylet_id": "223199"}], [{"original_text": "We were finally ready to visit the Wailing Wall surrounding the ruins of King Solomon's Temple.", "album_id": "72157623191645770", "photo_flickr_id": "4267637504", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44640", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were finally ready to visit the wailing wall surrounding the ruins of [male] [male] 's temple .", "storylet_id": "223200"}], [{"original_text": "It was awe inspiring.", "album_id": "72157623191645770", "photo_flickr_id": "4267643266", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44640", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was awe inspiring .", "storylet_id": "223201"}], [{"original_text": "People of many cultures praying to their own deity.", "album_id": "72157623191645770", "photo_flickr_id": "4267614492", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44640", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people of many cultures praying to their own deity .", "storylet_id": "223202"}], [{"original_text": "Side by side at the wall.", "album_id": "72157623191645770", "photo_flickr_id": "4266838309", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44640", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "side by side at the wall .", "storylet_id": "223203"}], [{"original_text": "I wish I could hear the stories this ancient wall could tell.", "album_id": "72157623191645770", "photo_flickr_id": "4266862723", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44640", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i wish i could hear the stories this ancient wall could tell .", "storylet_id": "223204"}], [{"original_text": "They didn't usually gather outside for prayer, but this was an important occasion.", "album_id": "72157623191645770", "photo_flickr_id": "4266817981", "setting": "first-2-pick-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "44641", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they did n't usually gather outside for prayer , but this was an important occasion .", "storylet_id": "223205"}], [{"original_text": "A lot of people showed up.", "album_id": "72157623191645770", "photo_flickr_id": "4266824211", "setting": "first-2-pick-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "44641", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of people showed up .", "storylet_id": "223206"}], [{"original_text": "Some of them milled around, unsure of what they were supposed to be doing.", "album_id": "72157623191645770", "photo_flickr_id": "4266830975", "setting": "first-2-pick-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "44641", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them milled around , unsure of what they were supposed to be doing .", "storylet_id": "223207"}], [{"original_text": "Two of the men examined the ancient wall.", "album_id": "72157623191645770", "photo_flickr_id": "4266838309", "setting": "first-2-pick-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "44641", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two of the men examined the ancient wall .", "storylet_id": "223208"}], [{"original_text": "A few others were deep in prayer, and one read aloud from a book.", "album_id": "72157623191645770", "photo_flickr_id": "4267590058", "setting": "first-2-pick-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "44641", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a few others were deep in prayer , and one read aloud from a book .", "storylet_id": "223209"}], [{"original_text": "My family and I went to Jerusalem for vacation. ", "album_id": "72157623191645770", "photo_flickr_id": "4267637504", "setting": "last-3-pick-old-and-tell", "worker_id": "6JHQ1LH2RA4GKF4", "story_id": "44642", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family and i went to location for vacation .", "storylet_id": "223210"}], [{"original_text": "We arrived at the holy wall and it was amazing.", "album_id": "72157623191645770", "photo_flickr_id": "4267643266", "setting": "last-3-pick-old-and-tell", "worker_id": "6JHQ1LH2RA4GKF4", "story_id": "44642", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we arrived at the holy wall and it was amazing .", "storylet_id": "223211"}], [{"original_text": "There were many people worshiping in front of the wall.", "album_id": "72157623191645770", "photo_flickr_id": "4267614492", "setting": "last-3-pick-old-and-tell", "worker_id": "6JHQ1LH2RA4GKF4", "story_id": "44642", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were many people worshiping in front of the wall .", "storylet_id": "223212"}], [{"original_text": "People would get right up close to the wall and pray to themselves.", "album_id": "72157623191645770", "photo_flickr_id": "4266838309", "setting": "last-3-pick-old-and-tell", "worker_id": "6JHQ1LH2RA4GKF4", "story_id": "44642", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people would get right up close to the wall and pray to themselves .", "storylet_id": "223213"}], [{"original_text": "The wall didn't have any outwardly visible distinguishing features. It was just a stone wall. ", "album_id": "72157623191645770", "photo_flickr_id": "4266862723", "setting": "last-3-pick-old-and-tell", "worker_id": "6JHQ1LH2RA4GKF4", "story_id": "44642", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the wall did n't have any outwardly visible distinguishing features . it was just a stone wall .", "storylet_id": "223214"}], [{"original_text": "Grandma and grandpa took us to a biblical reenactment!", "album_id": "72157623191645770", "photo_flickr_id": "4267637504", "setting": "last-3-pick-old-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "44643", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "grandma and grandpa took us to a biblical reenactment !", "storylet_id": "223215"}], [{"original_text": "It was kind of scary on some parts.", "album_id": "72157623191645770", "photo_flickr_id": "4267643266", "setting": "last-3-pick-old-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "44643", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was kind of scary on some parts .", "storylet_id": "223216"}], [{"original_text": "My grandpa told me that his cousin used to do these reenactments.", "album_id": "72157623191645770", "photo_flickr_id": "4267614492", "setting": "last-3-pick-old-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "44643", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my grandpa told me that his cousin used to do these reenactments .", "storylet_id": "223217"}], [{"original_text": "When I seen these guys, I asked my grandma if those two men were peeing on the wall. ", "album_id": "72157623191645770", "photo_flickr_id": "4266838309", "setting": "last-3-pick-old-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "44643", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when i seen these guys , i asked my grandma if those two men were peeing on the wall .", "storylet_id": "223218"}], [{"original_text": "Also, ny baby cousin wanted to take a picture too so I let her and this is the end result! All in all, good family fun! ", "album_id": "72157623191645770", "photo_flickr_id": "4266862723", "setting": "last-3-pick-old-and-tell", "worker_id": "INJJCAHXGUNPLVA", "story_id": "44643", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "also , ny baby cousin wanted to take a picture too so i let her and this is the end result ! all in all , good family fun !", "storylet_id": "223219"}], [{"original_text": "The people gathered around", "album_id": "72157623191645770", "photo_flickr_id": "4267637504", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44644", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people gathered around", "storylet_id": "223220"}], [{"original_text": "the big wall.", "album_id": "72157623191645770", "photo_flickr_id": "4267643266", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44644", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the big wall .", "storylet_id": "223221"}], [{"original_text": "They prayed there", "album_id": "72157623191645770", "photo_flickr_id": "4267614492", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44644", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they prayed there", "storylet_id": "223222"}], [{"original_text": "and looked up", "album_id": "72157623191645770", "photo_flickr_id": "4266838309", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44644", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and looked up", "storylet_id": "223223"}], [{"original_text": "at the big leaf.", "album_id": "72157623191645770", "photo_flickr_id": "4266862723", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44644", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the big leaf .", "storylet_id": "223224"}], [{"original_text": "We visited a local church to see their windiws", "album_id": "72157623293893311", "photo_flickr_id": "4351392908", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "44645", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited a local church to see their windiws", "storylet_id": "223225"}], [{"original_text": "They were all so old and unique ", "album_id": "72157623293893311", "photo_flickr_id": "4350646581", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "44645", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were all so old and unique", "storylet_id": "223226"}], [{"original_text": "We couldn't believe how beautiful the church was", "album_id": "72157623293893311", "photo_flickr_id": "4350650701", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "44645", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we could n't believe how beautiful the church was", "storylet_id": "223227"}], [{"original_text": "All the time and effort out into the design", "album_id": "72157623293893311", "photo_flickr_id": "4350651275", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "44645", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all the time and effort out into the design", "storylet_id": "223228"}], [{"original_text": "We are so glad we stopped to see it", "album_id": "72157623293893311", "photo_flickr_id": "4351398302", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "44645", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we are so glad we stopped to see it", "storylet_id": "223229"}], [{"original_text": "I walked into the large Catholic church today and I was amazed at the stained glass in there. ", "album_id": "72157623293893311", "photo_flickr_id": "4350650701", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44646", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i walked into the large catholic church today and i was amazed at the stained glass in there .", "storylet_id": "223230"}], [{"original_text": "It depicted large pictures of Jesus and apostles. ", "album_id": "72157623293893311", "photo_flickr_id": "4350645809", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44646", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it depicted large pictures of [male] and apostles .", "storylet_id": "223231"}], [{"original_text": "It was so beautiful I loved each panel of glass more than the last. ", "album_id": "72157623293893311", "photo_flickr_id": "4351392908", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44646", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was so beautiful i loved each panel of glass more than the last .", "storylet_id": "223232"}], [{"original_text": "These were in the restroom. I could sit in here for hours staring at the panes. ", "album_id": "72157623293893311", "photo_flickr_id": "4351394404", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44646", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these were in the restroom . i could sit in here for hours staring at the panes .", "storylet_id": "223233"}], [{"original_text": "My all time favorite were these ones. It was story depicted in the glass that only I could understand. I loved it so. ", "album_id": "72157623293893311", "photo_flickr_id": "4351395102", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44646", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my all time favorite were these ones . it was story depicted in the glass that only i could understand . i loved it so .", "storylet_id": "223234"}], [{"original_text": "The stained glass windows each showed a different saint.", "album_id": "72157623293893311", "photo_flickr_id": "4351392908", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44647", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stained glass windows each showed a different saint .", "storylet_id": "223235"}], [{"original_text": "They all look very strong and beautiful but I don't have any idea who any of them are.", "album_id": "72157623293893311", "photo_flickr_id": "4350646581", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44647", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all look very strong and beautiful but i do n't have any idea who any of them are .", "storylet_id": "223236"}], [{"original_text": "They were built a long time ago and can be seen as you enter the church and look down the aisles.", "album_id": "72157623293893311", "photo_flickr_id": "4350650701", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44647", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were built a long time ago and can be seen as you enter the church and look down the aisles .", "storylet_id": "223237"}], [{"original_text": "Some of the walls had carvings on them too. They depicted hell.", "album_id": "72157623293893311", "photo_flickr_id": "4350651275", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44647", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the walls had carvings on them too . they depicted hell .", "storylet_id": "223238"}], [{"original_text": "They are usually found above the doors.", "album_id": "72157623293893311", "photo_flickr_id": "4351398302", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44647", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are usually found above the doors .", "storylet_id": "223239"}], [{"original_text": "We visited a local church.", "album_id": "72157623293893311", "photo_flickr_id": "4350650701", "setting": "last-3-pick-old-and-tell", "worker_id": "6JHQ1LH2RA4GKF4", "story_id": "44648", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited a local church .", "storylet_id": "223240"}], [{"original_text": "The church had beautiful stained glass windows.", "album_id": "72157623293893311", "photo_flickr_id": "4350645809", "setting": "last-3-pick-old-and-tell", "worker_id": "6JHQ1LH2RA4GKF4", "story_id": "44648", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the church had beautiful stained glass windows .", "storylet_id": "223241"}], [{"original_text": "The windows were everywhere.", "album_id": "72157623293893311", "photo_flickr_id": "4351392908", "setting": "last-3-pick-old-and-tell", "worker_id": "6JHQ1LH2RA4GKF4", "story_id": "44648", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the windows were everywhere .", "storylet_id": "223242"}], [{"original_text": "Some of windows seemed to tell stories from the Bible.", "album_id": "72157623293893311", "photo_flickr_id": "4351394404", "setting": "last-3-pick-old-and-tell", "worker_id": "6JHQ1LH2RA4GKF4", "story_id": "44648", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of windows seemed to tell stories from the bible .", "storylet_id": "223243"}], [{"original_text": "Some of the windows portrayed historical local events. ", "album_id": "72157623293893311", "photo_flickr_id": "4351395102", "setting": "last-3-pick-old-and-tell", "worker_id": "6JHQ1LH2RA4GKF4", "story_id": "44648", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the windows portrayed historical local events .", "storylet_id": "223244"}], [{"original_text": "The church was recently remodeled and had new windows installed.", "album_id": "72157623293893311", "photo_flickr_id": "4351392908", "setting": "last-3-pick-old-and-tell", "worker_id": "FMMZ6Y4K8A6B9Z4", "story_id": "44649", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the church was recently remodeled and had new windows installed .", "storylet_id": "223245"}], [{"original_text": "These are the windows from the other side of the church.", "album_id": "72157623293893311", "photo_flickr_id": "4350646581", "setting": "last-3-pick-old-and-tell", "worker_id": "FMMZ6Y4K8A6B9Z4", "story_id": "44649", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these are the windows from the other side of the church .", "storylet_id": "223246"}], [{"original_text": "The aisle floor has also been remolded to marble.", "album_id": "72157623293893311", "photo_flickr_id": "4350650701", "setting": "last-3-pick-old-and-tell", "worker_id": "FMMZ6Y4K8A6B9Z4", "story_id": "44649", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the aisle floor has also been remolded to marble .", "storylet_id": "223247"}], [{"original_text": "Painters came in to paint a mural on the wall.", "album_id": "72157623293893311", "photo_flickr_id": "4350651275", "setting": "last-3-pick-old-and-tell", "worker_id": "FMMZ6Y4K8A6B9Z4", "story_id": "44649", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "painters came in to paint a mural on the wall .", "storylet_id": "223248"}], [{"original_text": "The painters also painted designs over the alter. ", "album_id": "72157623293893311", "photo_flickr_id": "4351398302", "setting": "last-3-pick-old-and-tell", "worker_id": "FMMZ6Y4K8A6B9Z4", "story_id": "44649", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the painters also painted designs over the alter .", "storylet_id": "223249"}], [{"original_text": "My home town is on my list of places to visit today. ", "album_id": "72157623297756599", "photo_flickr_id": "4352219324", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44650", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my home town is on my list of places to visit today .", "storylet_id": "223250"}], [{"original_text": "I strolled down Wicker Street. ", "album_id": "72157623297756599", "photo_flickr_id": "4352229592", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44650", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i strolled down location location .", "storylet_id": "223251"}], [{"original_text": "I found my old childhood home. ", "album_id": "72157623297756599", "photo_flickr_id": "4351477401", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44650", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i found my old childhood home .", "storylet_id": "223252"}], [{"original_text": "It looks so much smaller now that I'm all grown up. So many memories. ", "album_id": "72157623297756599", "photo_flickr_id": "4352226204", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44650", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looks so much smaller now that i 'm all grown up . so many memories .", "storylet_id": "223253"}], [{"original_text": "I tried to approach the house but the gate was locked. I couldn't go inside. ", "album_id": "72157623297756599", "photo_flickr_id": "4352232078", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44650", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i tried to approach the house but the gate was locked . i could n't go inside .", "storylet_id": "223254"}], [{"original_text": "I love to visit Historic Downtown Wylie.", "album_id": "72157623297756599", "photo_flickr_id": "4352219324", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44651", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love to visit historic downtown wylie .", "storylet_id": "223255"}], [{"original_text": "The old Mayor's house is still in great condition.", "album_id": "72157623297756599", "photo_flickr_id": "4352226204", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44651", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the old mayor 's house is still in great condition .", "storylet_id": "223256"}], [{"original_text": "The century old church still has it's services every Sunday.", "album_id": "72157623297756599", "photo_flickr_id": "4351509985", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44651", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the century old church still has it 's services every sunday .", "storylet_id": "223257"}], [{"original_text": "I love to walk through the old cemetery and remember old friends that are gone.", "album_id": "72157623297756599", "photo_flickr_id": "4352224512", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44651", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i love to walk through the old cemetery and remember old friends that are gone .", "storylet_id": "223258"}], [{"original_text": "Then I walk across the old bridge which used to be the only way in to town.", "album_id": "72157623297756599", "photo_flickr_id": "4351479243", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44651", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then i walk across the old bridge which used to be the only way in to town .", "storylet_id": "223259"}], [{"original_text": "We decided to visit the town nearby, as we are in the market for a new house. ", "album_id": "72157623297756599", "photo_flickr_id": "4352219324", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44652", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to visit the town nearby , as we are in the market for a new house .", "storylet_id": "223260"}], [{"original_text": "I loved this house, but I do not like corner lots, plus it was not for sale. ", "album_id": "72157623297756599", "photo_flickr_id": "4352226204", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44652", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i loved this house , but i do not like corner lots , plus it was not for sale .", "storylet_id": "223261"}], [{"original_text": "I like that the church is within the community. ", "album_id": "72157623297756599", "photo_flickr_id": "4351509985", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44652", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i like that the church is within the community .", "storylet_id": "223262"}], [{"original_text": "In addition, the cemetery where my grandmother is buried, is located within the neighborhood as well. ", "album_id": "72157623297756599", "photo_flickr_id": "4352224512", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44652", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in addition , the cemetery where my grandmother is buried , is located within the neighborhood as well .", "storylet_id": "223263"}], [{"original_text": "My husband thought this was a house, but I had to let him know it was a tunnel. ", "album_id": "72157623297756599", "photo_flickr_id": "4351479243", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44652", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my husband thought this was a house , but i had to let him know it was a tunnel .", "storylet_id": "223264"}], [{"original_text": "We went downttown on a snowy day.", "album_id": "72157623297756599", "photo_flickr_id": "4352219324", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44653", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went downttown on a snowy day .", "storylet_id": "223265"}], [{"original_text": "The walkways were clear and safe to walk.", "album_id": "72157623297756599", "photo_flickr_id": "4352229592", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44653", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the walkways were clear and safe to walk .", "storylet_id": "223266"}], [{"original_text": "Snow covered just about everything else though.", "album_id": "72157623297756599", "photo_flickr_id": "4351477401", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44653", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "snow covered just about everything else though .", "storylet_id": "223267"}], [{"original_text": "We say a huge victorian house.", "album_id": "72157623297756599", "photo_flickr_id": "4352226204", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44653", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we say a huge victorian house .", "storylet_id": "223268"}], [{"original_text": "The house looked beautiful in the snow.", "album_id": "72157623297756599", "photo_flickr_id": "4352232078", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44653", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the house looked beautiful in the snow .", "storylet_id": "223269"}], [{"original_text": "Visiting the historic downtown Willie. ", "album_id": "72157623297756599", "photo_flickr_id": "4352219324", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44654", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visiting the historic downtown [male] .", "storylet_id": "223270"}], [{"original_text": "The front of the house . ", "album_id": "72157623297756599", "photo_flickr_id": "4352226204", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44654", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the front of the house .", "storylet_id": "223271"}], [{"original_text": "The church of the town. ", "album_id": "72157623297756599", "photo_flickr_id": "4351509985", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44654", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the church of the town .", "storylet_id": "223272"}], [{"original_text": "Housewright cemetery. ", "album_id": "72157623297756599", "photo_flickr_id": "4352224512", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44654", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "housewright cemetery .", "storylet_id": "223273"}], [{"original_text": "And the famous sage creek bridge.", "album_id": "72157623297756599", "photo_flickr_id": "4351479243", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44654", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the famous sage creek bridge .", "storylet_id": "223274"}], [{"original_text": "Someone has traveled to the town center for an event.", "album_id": "72157624100258505", "photo_flickr_id": "4356446349", "setting": "first-2-pick-and-tell", "worker_id": "IGGJR5B7XYTQRTV", "story_id": "44655", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "someone has traveled to the town center for an event .", "storylet_id": "223275"}], [{"original_text": "They take some memorable photos of a snow-covered boat", "album_id": "72157624100258505", "photo_flickr_id": "4356445377", "setting": "first-2-pick-and-tell", "worker_id": "IGGJR5B7XYTQRTV", "story_id": "44655", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they take some memorable photos of a snow-covered boat", "storylet_id": "223276"}], [{"original_text": "as well as a statue in the town square", "album_id": "72157624100258505", "photo_flickr_id": "4356447157", "setting": "first-2-pick-and-tell", "worker_id": "IGGJR5B7XYTQRTV", "story_id": "44655", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as well as a statue in the town square", "storylet_id": "223277"}], [{"original_text": "and a picturesque windmill.", "album_id": "72157624100258505", "photo_flickr_id": "4356448849", "setting": "first-2-pick-and-tell", "worker_id": "IGGJR5B7XYTQRTV", "story_id": "44655", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and a picturesque windmill .", "storylet_id": "223278"}], [{"original_text": "Everyone then gathers for a town bonfire event.", "album_id": "72157624100258505", "photo_flickr_id": "4356456347", "setting": "first-2-pick-and-tell", "worker_id": "IGGJR5B7XYTQRTV", "story_id": "44655", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone then gathers for a town bonfire event .", "storylet_id": "223279"}], [{"original_text": "We arrived and saw a classic ship stuck on the hard ice.", "album_id": "72157624100258505", "photo_flickr_id": "4356445377", "setting": "first-2-pick-and-tell", "worker_id": "HY46HR6AGJ19QYJ", "story_id": "44656", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived and saw a classic ship stuck on the hard ice .", "storylet_id": "223280"}], [{"original_text": "The architecture was one of the best parts of this town.", "album_id": "72157624100258505", "photo_flickr_id": "4356446349", "setting": "first-2-pick-and-tell", "worker_id": "HY46HR6AGJ19QYJ", "story_id": "44656", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the architecture was one of the best parts of this town .", "storylet_id": "223281"}], [{"original_text": "It was nice to see the olde world and the windmills from centuries ago.", "album_id": "72157624100258505", "photo_flickr_id": "4356448849", "setting": "first-2-pick-and-tell", "worker_id": "HY46HR6AGJ19QYJ", "story_id": "44656", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was nice to see the olde world and the windmills from centuries ago .", "storylet_id": "223282"}], [{"original_text": "This was the place where important townspeople lived many years ago.", "album_id": "72157624100258505", "photo_flickr_id": "4356451753", "setting": "first-2-pick-and-tell", "worker_id": "HY46HR6AGJ19QYJ", "story_id": "44656", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was the place where important townspeople lived many years ago .", "storylet_id": "223283"}], [{"original_text": "We celebrated with a traditional fire ceremony with the townspeople. ", "album_id": "72157624100258505", "photo_flickr_id": "4356456347", "setting": "first-2-pick-and-tell", "worker_id": "HY46HR6AGJ19QYJ", "story_id": "44656", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we celebrated with a traditional fire ceremony with the townspeople .", "storylet_id": "223284"}], [{"original_text": "We had an absolutely amazing time on our vacation. What an incredible landmark.", "album_id": "72157624100258505", "photo_flickr_id": "4356446349", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44657", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had an absolutely amazing time on our vacation . what an incredible landmark .", "storylet_id": "223285"}], [{"original_text": "We loved the view of the water from here and the boat.", "album_id": "72157624100258505", "photo_flickr_id": "4356445377", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44657", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we loved the view of the water from here and the boat .", "storylet_id": "223286"}], [{"original_text": "Here was a great memorial we got to view.", "album_id": "72157624100258505", "photo_flickr_id": "4356447157", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44657", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here was a great memorial we got to view .", "storylet_id": "223287"}], [{"original_text": "Check this windmill out absolutely incredible.", "album_id": "72157624100258505", "photo_flickr_id": "4356448849", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44657", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "check this windmill out absolutely incredible .", "storylet_id": "223288"}], [{"original_text": "We were not too sure about this ritual. So, we just observed from afar. ", "album_id": "72157624100258505", "photo_flickr_id": "4356456347", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44657", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were not too sure about this ritual . so , we just observed from afar .", "storylet_id": "223289"}], [{"original_text": " People are leaving a big church", "album_id": "72157624100258505", "photo_flickr_id": "4356446349", "setting": "last-3-pick-old-and-tell", "worker_id": "6I5IDK2GHYSGG2W", "story_id": "44658", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people are leaving a big church", "storylet_id": "223290"}], [{"original_text": "An old ship is docked by the river the person is walking by", "album_id": "72157624100258505", "photo_flickr_id": "4356445377", "setting": "last-3-pick-old-and-tell", "worker_id": "6I5IDK2GHYSGG2W", "story_id": "44658", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "an old ship is docked by the river the person is walking by", "storylet_id": "223291"}], [{"original_text": "the man and woman are taking a picture of a monument ", "album_id": "72157624100258505", "photo_flickr_id": "4356447157", "setting": "last-3-pick-old-and-tell", "worker_id": "6I5IDK2GHYSGG2W", "story_id": "44658", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man and woman are taking a picture of a monument", "storylet_id": "223292"}], [{"original_text": "An old windmill is fenced in to keep it save .", "album_id": "72157624100258505", "photo_flickr_id": "4356448849", "setting": "last-3-pick-old-and-tell", "worker_id": "6I5IDK2GHYSGG2W", "story_id": "44658", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an old windmill is fenced in to keep it save .", "storylet_id": "223293"}], [{"original_text": "Many people standing around a fire wait for a race to start", "album_id": "72157624100258505", "photo_flickr_id": "4356456347", "setting": "last-3-pick-old-and-tell", "worker_id": "6I5IDK2GHYSGG2W", "story_id": "44658", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many people standing around a fire wait for a race to start", "storylet_id": "223294"}], [{"original_text": "The virus was wrecking havoc on our city and we turned to God for help.", "album_id": "72157624100258505", "photo_flickr_id": "4356446349", "setting": "last-3-pick-old-and-tell", "worker_id": "1Z0H5X4KZYPPO3J", "story_id": "44659", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the virus was wrecking havoc on our city and we turned to god for help .", "storylet_id": "223295"}], [{"original_text": "Someone suggested the virus was brought by the men on the strange boat that had recently docked.", "album_id": "72157624100258505", "photo_flickr_id": "4356445377", "setting": "last-3-pick-old-and-tell", "worker_id": "1Z0H5X4KZYPPO3J", "story_id": "44659", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "someone suggested the virus was brought by the men on the strange boat that had recently docked .", "storylet_id": "223296"}], [{"original_text": "Some continued to pray at whatever cross they found.", "album_id": "72157624100258505", "photo_flickr_id": "4356447157", "setting": "last-3-pick-old-and-tell", "worker_id": "1Z0H5X4KZYPPO3J", "story_id": "44659", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some continued to pray at whatever cross they found .", "storylet_id": "223297"}], [{"original_text": "Others met at the windmill to discuss the matter.", "album_id": "72157624100258505", "photo_flickr_id": "4356448849", "setting": "last-3-pick-old-and-tell", "worker_id": "1Z0H5X4KZYPPO3J", "story_id": "44659", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others met at the windmill to discuss the matter .", "storylet_id": "223298"}], [{"original_text": "It was decided that the strangers had to go, so we formed an angry mob. ", "album_id": "72157624100258505", "photo_flickr_id": "4356456347", "setting": "last-3-pick-old-and-tell", "worker_id": "1Z0H5X4KZYPPO3J", "story_id": "44659", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was decided that the strangers had to go , so we formed an angry mob .", "storylet_id": "223299"}], [{"original_text": "It is a very modern church service, as the pastor notes.", "album_id": "72157623312407191", "photo_flickr_id": "4358449196", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44660", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is a very modern church service , as the pastor notes .", "storylet_id": "223300"}], [{"original_text": "We support the young and that is why they bring in musicians...", "album_id": "72157623312407191", "photo_flickr_id": "4357704627", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44660", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we support the young and that is why they bring in musicians ...", "storylet_id": "223301"}], [{"original_text": "Like One's Above...a duet.", "album_id": "72157623312407191", "photo_flickr_id": "4357706369", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44660", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "like one 's above ... a duet .", "storylet_id": "223302"}], [{"original_text": "They sing modern hymns that really relate to the teenage group.", "album_id": "72157623312407191", "photo_flickr_id": "4358455036", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44660", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they sing modern hymns that really relate to the teenage group .", "storylet_id": "223303"}], [{"original_text": "And, they do things like this...knock it out of the park with a trombone.", "album_id": "72157623312407191", "photo_flickr_id": "4358457872", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44660", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , they do things like this ... knock it out of the park with a trombone .", "storylet_id": "223304"}], [{"original_text": "I did not like my old church so I decided to attend a new one.", "album_id": "72157623312407191", "photo_flickr_id": "4357704277", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44661", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i did not like my old church so i decided to attend a new one .", "storylet_id": "223305"}], [{"original_text": " The preacher got up and gave the sermon was so much emotion, it is not what I am used to.", "album_id": "72157623312407191", "photo_flickr_id": "4358451352", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44661", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the preacher got up and gave the sermon was so much emotion , it is not what i am used to .", "storylet_id": "223306"}], [{"original_text": " After the sermon all the Gospels began, this church had their very own band.", "album_id": "72157623312407191", "photo_flickr_id": "4358454162", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44661", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the sermon all the gospels began , this church had their very own band .", "storylet_id": "223307"}], [{"original_text": "The way that they sing moved my soul.", "album_id": "72157623312407191", "photo_flickr_id": "4358455624", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44661", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the way that they sing moved my soul .", "storylet_id": "223308"}], [{"original_text": "I am so glad that I made the decision to switch churches.", "album_id": "72157623312407191", "photo_flickr_id": "4358457872", "setting": "first-2-pick-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44661", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am so glad that i made the decision to switch churches .", "storylet_id": "223309"}], [{"original_text": "I can't wait to hear what's in store for tonight.", "album_id": "72157623312407191", "photo_flickr_id": "4358449196", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "44662", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i ca n't wait to hear what 's in store for tonight .", "storylet_id": "223310"}], [{"original_text": "I love listening to these speakers.", "album_id": "72157623312407191", "photo_flickr_id": "4357704627", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "44662", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love listening to these speakers .", "storylet_id": "223311"}], [{"original_text": "This duo got the crowd into it.", "album_id": "72157623312407191", "photo_flickr_id": "4357706369", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "44662", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this duo got the crowd into it .", "storylet_id": "223312"}], [{"original_text": "They sure made everyone take notice on their second song.", "album_id": "72157623312407191", "photo_flickr_id": "4358455036", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "44662", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they sure made everyone take notice on their second song .", "storylet_id": "223313"}], [{"original_text": "Once this happened, everyone got up from their seats.", "album_id": "72157623312407191", "photo_flickr_id": "4358457872", "setting": "last-3-pick-old-and-tell", "worker_id": "OLQW2VFGXTRI5VI", "story_id": "44662", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once this happened , everyone got up from their seats .", "storylet_id": "223314"}], [{"original_text": "There was a local talent show.", "album_id": "72157623312407191", "photo_flickr_id": "4358449196", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44663", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a local talent show .", "storylet_id": "223315"}], [{"original_text": "Mark sang at chhurch.", "album_id": "72157623312407191", "photo_flickr_id": "4357704627", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44663", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] sang at chhurch .", "storylet_id": "223316"}], [{"original_text": "Tom sang and Andrew played guitar.", "album_id": "72157623312407191", "photo_flickr_id": "4357706369", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44663", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] sang and [male] played guitar .", "storylet_id": "223317"}], [{"original_text": "They sang good rock music.", "album_id": "72157623312407191", "photo_flickr_id": "4358455036", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44663", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they sang good rock music .", "storylet_id": "223318"}], [{"original_text": "Tom played a trumpet too!", "album_id": "72157623312407191", "photo_flickr_id": "4358457872", "setting": "last-3-pick-old-and-tell", "worker_id": "D3U2J1WLNJ2PBS6", "story_id": "44663", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] played a trumpet too !", "storylet_id": "223319"}], [{"original_text": "The minister at our church had a very exciting announcement on Sunday.", "album_id": "72157623312407191", "photo_flickr_id": "4357704277", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44664", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the minister at our church had a very exciting announcement on sunday .", "storylet_id": "223320"}], [{"original_text": "They were replacing the old organ player with a band.", "album_id": "72157623312407191", "photo_flickr_id": "4358451352", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44664", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were replacing the old organ player with a band .", "storylet_id": "223321"}], [{"original_text": "The band began to play up on the altar. ", "album_id": "72157623312407191", "photo_flickr_id": "4358454162", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44664", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band began to play up on the altar .", "storylet_id": "223322"}], [{"original_text": "They sounded great and it really made a lot of people start singing the hymns.", "album_id": "72157623312407191", "photo_flickr_id": "4358455624", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44664", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they sounded great and it really made a lot of people start singing the hymns .", "storylet_id": "223323"}], [{"original_text": "We were all very surprised when a person playing the trombone joined in. Overall, it was a great decision to replace the old organ player.", "album_id": "72157623312407191", "photo_flickr_id": "4358457872", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44664", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were all very surprised when a person playing the trombone joined in . overall , it was a great decision to replace the old organ player .", "storylet_id": "223324"}], [{"original_text": "This is Chad and Jeremy. Chad sings and Jeremy plays guitar.", "album_id": "72157623437349544", "photo_flickr_id": "4358641926", "setting": "first-2-pick-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "44665", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is location and [male] . [male] sings and [male] plays guitar .", "storylet_id": "223325"}], [{"original_text": "Chad is an awesome singer but that wasn't enough. He wanted to play guitar like Jeremy but his fingers were too stubby.", "album_id": "72157623437349544", "photo_flickr_id": "5079298505", "setting": "first-2-pick-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "44665", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "location is an awesome singer but that was n't enough . he wanted to play guitar like [male] but his fingers were too stubby .", "storylet_id": "223326"}], [{"original_text": "This ate away at Chad. One day during a church gig he got on his knees and prayed that God would let him play guitar even better than Jeremy.", "album_id": "72157623437349544", "photo_flickr_id": "4358610054", "setting": "first-2-pick-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "44665", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this ate away at location . one day during a church gig he got on his knees and prayed that god would let him play guitar even better than [male] .", "storylet_id": "223327"}], [{"original_text": "An angel appeared to Chad and said there were too many guitar players. The world needs adequate trombone players Chad.", "album_id": "72157623437349544", "photo_flickr_id": "4357894967", "setting": "first-2-pick-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "44665", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an angel appeared to location and said there were too many guitar players . the world needs adequate trombone players [male] .", "storylet_id": "223328"}], [{"original_text": "Suddenly Chad felt impelled to grab a trombone and squeak out a tune. He was so happy. Until he tried to put it down. The angel had forgotten to say the release trombone prayer. So now Chad and his instrument are stuck together for eternity.", "album_id": "72157623437349544", "photo_flickr_id": "4358614094", "setting": "first-2-pick-and-tell", "worker_id": "21UYVOHHN47XZT4", "story_id": "44665", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "suddenly [male] felt impelled to grab a trombone and squeak out a tune . he was so happy . until he tried to put it down . the angel had forgotten to say the release trombone prayer . so now [male] and his instrument are stuck together for eternity .", "storylet_id": "223329"}], [{"original_text": "I went to the church to deliver a speech yesterday.", "album_id": "72157623437349544", "photo_flickr_id": "5079306665", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44666", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the church to deliver a speech yesterday .", "storylet_id": "223330"}], [{"original_text": "I was very happy.", "album_id": "72157623437349544", "photo_flickr_id": "4357852945", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44666", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was very happy .", "storylet_id": "223331"}], [{"original_text": "They had decorated the entire place.", "album_id": "72157623437349544", "photo_flickr_id": "4358633854", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44666", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had decorated the entire place .", "storylet_id": "223332"}], [{"original_text": "It looked very beauituful.", "album_id": "72157623437349544", "photo_flickr_id": "4357904769", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44666", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looked very beauituful .", "storylet_id": "223333"}], [{"original_text": "I had a great time.", "album_id": "72157623437349544", "photo_flickr_id": "4357908413", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44666", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time .", "storylet_id": "223334"}], [{"original_text": "I went to my church for a service. ", "album_id": "72157623437349544", "photo_flickr_id": "4358641926", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "44667", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to my church for a service .", "storylet_id": "223335"}], [{"original_text": "The pastor used his laptop so he could see his notes. ", "album_id": "72157623437349544", "photo_flickr_id": "5079298505", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "44667", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pastor used his laptop so he could see his notes .", "storylet_id": "223336"}], [{"original_text": "His sermon was interesting, and on point. ", "album_id": "72157623437349544", "photo_flickr_id": "4358610054", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "44667", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "his sermon was interesting , and on point .", "storylet_id": "223337"}], [{"original_text": "This is a beautiful statue at the front of the church. ", "album_id": "72157623437349544", "photo_flickr_id": "4357894967", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "44667", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a beautiful statue at the front of the church .", "storylet_id": "223338"}], [{"original_text": "After the pastor was done, he asked if there were any prayer requests. ", "album_id": "72157623437349544", "photo_flickr_id": "4358614094", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "44667", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the pastor was done , he asked if there were any prayer requests .", "storylet_id": "223339"}], [{"original_text": "The cross is located on the back wall of the church.", "album_id": "72157623437349544", "photo_flickr_id": "4358641926", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44668", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cross is located on the back wall of the church .", "storylet_id": "223340"}], [{"original_text": "The preacher stands at the font with a microphone.", "album_id": "72157623437349544", "photo_flickr_id": "5079298505", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44668", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the preacher stands at the font with a microphone .", "storylet_id": "223341"}], [{"original_text": "He also has a laptop in front of him.", "album_id": "72157623437349544", "photo_flickr_id": "4358610054", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44668", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he also has a laptop in front of him .", "storylet_id": "223342"}], [{"original_text": "Jesus is on a cross at the back of the church.", "album_id": "72157623437349544", "photo_flickr_id": "4357894967", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44668", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is on a cross at the back of the church .", "storylet_id": "223343"}], [{"original_text": "Finally the preacher closes his sermon.", "album_id": "72157623437349544", "photo_flickr_id": "4358614094", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44668", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the preacher closes his sermon .", "storylet_id": "223344"}], [{"original_text": "We went to church on Sunday. ", "album_id": "72157623437349544", "photo_flickr_id": "4358641926", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44669", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to church on sunday .", "storylet_id": "223345"}], [{"original_text": "The director of the ministry was up on the altar talking abotu the new statue that was purchased for the church.", "album_id": "72157623437349544", "photo_flickr_id": "5079298505", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44669", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the director of the ministry was up on the altar talking abotu the new statue that was purchased for the church .", "storylet_id": "223346"}], [{"original_text": "He answered some questions from the community.", "album_id": "72157623437349544", "photo_flickr_id": "4358610054", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44669", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he answered some questions from the community .", "storylet_id": "223347"}], [{"original_text": "The statue was unveiled and everyone marveled at it. ", "album_id": "72157623437349544", "photo_flickr_id": "4357894967", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44669", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the statue was unveiled and everyone marveled at it .", "storylet_id": "223348"}], [{"original_text": "The director than thanked everyone for their generous donations.", "album_id": "72157623437349544", "photo_flickr_id": "4358614094", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44669", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the director than thanked everyone for their generous donations .", "storylet_id": "223349"}], [{"original_text": "This is my favorite chapel.", "album_id": "72157623103617851", "photo_flickr_id": "4282676241", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44670", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my favorite chapel .", "storylet_id": "223350"}], [{"original_text": "It was built in 1618.", "album_id": "72157623103617851", "photo_flickr_id": "4282527715", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44670", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was built in 1618 .", "storylet_id": "223351"}], [{"original_text": "There are even carvings on it's walls.", "album_id": "72157623103617851", "photo_flickr_id": "4283273154", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44670", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are even carvings on it 's walls .", "storylet_id": "223352"}], [{"original_text": "The cemetery outside date back to the 1600s too.", "album_id": "72157623103617851", "photo_flickr_id": "4282677273", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44670", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cemetery outside date back to the 1600s too .", "storylet_id": "223353"}], [{"original_text": "God is always present.", "album_id": "72157623103617851", "photo_flickr_id": "4282676697", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "44670", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "god is always present .", "storylet_id": "223354"}], [{"original_text": "We visited a beautiful old church. ", "album_id": "72157623103617851", "photo_flickr_id": "4282527189", "setting": "first-2-pick-and-tell", "worker_id": "6OAPMT79UMH4L9L", "story_id": "44671", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited a beautiful old church .", "storylet_id": "223355"}], [{"original_text": "The church had been erected by the early colonists.", "album_id": "72157623103617851", "photo_flickr_id": "4282527715", "setting": "first-2-pick-and-tell", "worker_id": "6OAPMT79UMH4L9L", "story_id": "44671", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the church had been erected by the early colonists .", "storylet_id": "223356"}], [{"original_text": "At the time, they were still loyal to the King; his crest is seen outside the door.", "album_id": "72157623103617851", "photo_flickr_id": "4282528007", "setting": "first-2-pick-and-tell", "worker_id": "6OAPMT79UMH4L9L", "story_id": "44671", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at the time , they were still loyal to the [male] ; his crest is seen outside the door .", "storylet_id": "223357"}], [{"original_text": "I could imagine each brick being placed by a different set of hands; one community come together to contribute to a great task. ", "album_id": "72157623103617851", "photo_flickr_id": "4283272906", "setting": "first-2-pick-and-tell", "worker_id": "6OAPMT79UMH4L9L", "story_id": "44671", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i could imagine each brick being placed by a different set of hands ; one community come together to contribute to a great task .", "storylet_id": "223358"}], [{"original_text": "They built their tribute to God, then sat in eternal rest at its feet. ", "album_id": "72157623103617851", "photo_flickr_id": "4282676241", "setting": "first-2-pick-and-tell", "worker_id": "6OAPMT79UMH4L9L", "story_id": "44671", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they built their tribute to god , then sat in eternal rest at its feet .", "storylet_id": "223359"}], [{"original_text": "We arrived to the church..", "album_id": "72157623103617851", "photo_flickr_id": "4282676241", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44672", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived to the church..", "storylet_id": "223360"}], [{"original_text": "It was completed in 1618..", "album_id": "72157623103617851", "photo_flickr_id": "4282527715", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44672", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was completed in 1618..", "storylet_id": "223361"}], [{"original_text": "However, construction begin in 1607.", "album_id": "72157623103617851", "photo_flickr_id": "4283273154", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44672", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however , construction begin in 1607 .", "storylet_id": "223362"}], [{"original_text": "The church was beautiful and littered with statues...", "album_id": "72157623103617851", "photo_flickr_id": "4282677273", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44672", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the church was beautiful and littered with statues ...", "storylet_id": "223363"}], [{"original_text": "And, a large cross adorned the top.", "album_id": "72157623103617851", "photo_flickr_id": "4282676697", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44672", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , a large cross adorned the top .", "storylet_id": "223364"}], [{"original_text": "This was an old house that was out on a hill near our village.", "album_id": "72157623103617851", "photo_flickr_id": "4282676241", "setting": "last-3-pick-old-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "44673", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was an old house that was out on a hill near our village .", "storylet_id": "223365"}], [{"original_text": "This is the old style address plate on the front of it.", "album_id": "72157623103617851", "photo_flickr_id": "4282527715", "setting": "last-3-pick-old-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "44673", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is the old style address plate on the front of it .", "storylet_id": "223366"}], [{"original_text": "There were carvings that were on the outside that had been there for many years.", "album_id": "72157623103617851", "photo_flickr_id": "4283273154", "setting": "last-3-pick-old-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "44673", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were carvings that were on the outside that had been there for many years .", "storylet_id": "223367"}], [{"original_text": "This is a picture of the back of the house.", "album_id": "72157623103617851", "photo_flickr_id": "4282677273", "setting": "last-3-pick-old-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "44673", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a picture of the back of the house .", "storylet_id": "223368"}], [{"original_text": "This was on top of the chimney, and it was very impressive.", "album_id": "72157623103617851", "photo_flickr_id": "4282676697", "setting": "last-3-pick-old-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "44673", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was on top of the chimney , and it was very impressive .", "storylet_id": "223369"}], [{"original_text": "In Europe, things are so much older than in the US!", "album_id": "72157623103617851", "photo_flickr_id": "4282676241", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44674", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in location , things are so much older than in the location !", "storylet_id": "223370"}], [{"original_text": "It's a very common thing to find houses with dates like 1618, or older.", "album_id": "72157623103617851", "photo_flickr_id": "4282527715", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44674", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it 's a very common thing to find houses with dates like 1618 , or older .", "storylet_id": "223371"}], [{"original_text": "There are little historic details everywhere, like this ancient graffiti!", "album_id": "72157623103617851", "photo_flickr_id": "4283273154", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44674", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are little historic details everywhere , like this ancient graffiti !", "storylet_id": "223372"}], [{"original_text": "The graveyard have graves that go back 1000 years.", "album_id": "72157623103617851", "photo_flickr_id": "4282677273", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44674", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the graveyard have graves that go back 1000 years .", "storylet_id": "223373"}], [{"original_text": "The churches are full of details carved hundreds of years ago. I love seeing them.", "album_id": "72157623103617851", "photo_flickr_id": "4282676697", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44674", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the churches are full of details carved hundreds of years ago . i love seeing them .", "storylet_id": "223374"}], [{"original_text": "The outside of the catholic church has withstood the sands of time...", "album_id": "72157623227783082", "photo_flickr_id": "4281244219", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44675", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the outside of the catholic church has withstood the sands of time ...", "storylet_id": "223375"}], [{"original_text": "However, it does not compare to the painted window panes on the interior.", "album_id": "72157623227783082", "photo_flickr_id": "4281990896", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44675", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "however , it does not compare to the painted window panes on the interior .", "storylet_id": "223376"}], [{"original_text": "Stricken with beautiful color and amazing skill..", "album_id": "72157623227783082", "photo_flickr_id": "4281249257", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44675", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "stricken with beautiful color and amazing skill..", "storylet_id": "223377"}], [{"original_text": "They can be scene from all over the church...", "album_id": "72157623227783082", "photo_flickr_id": "4281251735", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44675", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they can be scene from all over the church ...", "storylet_id": "223378"}], [{"original_text": "Even from the very last pew.", "album_id": "72157623227783082", "photo_flickr_id": "4281256163", "setting": "first-2-pick-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44675", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even from the very last pew .", "storylet_id": "223379"}], [{"original_text": "A visitor came to a church to visually document its appearance.", "album_id": "72157623227783082", "photo_flickr_id": "4281244219", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "44676", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a visitor came to a church to visually document its appearance .", "storylet_id": "223380"}], [{"original_text": "In addition to the exterior wall, photos were taken of the stained glass windows.", "album_id": "72157623227783082", "photo_flickr_id": "4281250495", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "44676", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in addition to the exterior wall , photos were taken of the stained glass windows .", "storylet_id": "223381"}], [{"original_text": "The altar arrangement was documented.", "album_id": "72157623227783082", "photo_flickr_id": "4281251735", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "44676", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the altar arrangement was documented .", "storylet_id": "223382"}], [{"original_text": "Photos were taken of the ornate ceiling.", "album_id": "72157623227783082", "photo_flickr_id": "4281254211", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "44676", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "photos were taken of the ornate ceiling .", "storylet_id": "223383"}], [{"original_text": "The type of arches within the church were photographed as well.", "album_id": "72157623227783082", "photo_flickr_id": "4281256163", "setting": "first-2-pick-and-tell", "worker_id": "P6TGD2QEBFF2SG0", "story_id": "44676", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the type of arches within the church were photographed as well .", "storylet_id": "223384"}], [{"original_text": "I had the privilege to go on a European vacation.", "album_id": "72157623227783082", "photo_flickr_id": "4281244219", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44677", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had the privilege to go on a european vacation .", "storylet_id": "223385"}], [{"original_text": " While I was there I wanted to take tours of the great cathedrals.", "album_id": "72157623227783082", "photo_flickr_id": "4281990896", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44677", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while i was there i wanted to take tours of the great cathedrals .", "storylet_id": "223386"}], [{"original_text": " They had always fascinated me as a child.", "album_id": "72157623227783082", "photo_flickr_id": "4281249257", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44677", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had always fascinated me as a child .", "storylet_id": "223387"}], [{"original_text": "All the intricate work and designs all made by hand.", "album_id": "72157623227783082", "photo_flickr_id": "4281251735", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44677", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all the intricate work and designs all made by hand .", "storylet_id": "223388"}], [{"original_text": "Needless to say I had a very wonderful vacation.", "album_id": "72157623227783082", "photo_flickr_id": "4281256163", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44677", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "needless to say i had a very wonderful vacation .", "storylet_id": "223389"}], [{"original_text": "The group went to visit the ancient church.", "album_id": "72157623227783082", "photo_flickr_id": "4281244219", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "44678", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group went to visit the ancient church .", "storylet_id": "223390"}], [{"original_text": "They found stained glass depicting old biblical scenes.", "album_id": "72157623227783082", "photo_flickr_id": "4281990896", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "44678", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they found stained glass depicting old biblical scenes .", "storylet_id": "223391"}], [{"original_text": "They even saw the birth of Christ through the glass.", "album_id": "72157623227783082", "photo_flickr_id": "4281249257", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "44678", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even saw the birth of christ through the glass .", "storylet_id": "223392"}], [{"original_text": "The church was enormous and beautiful.", "album_id": "72157623227783082", "photo_flickr_id": "4281251735", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "44678", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the church was enormous and beautiful .", "storylet_id": "223393"}], [{"original_text": "They loved getting to see an ancient piece of history.", "album_id": "72157623227783082", "photo_flickr_id": "4281256163", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "44678", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they loved getting to see an ancient piece of history .", "storylet_id": "223394"}], [{"original_text": "Today we visited a famous historic church.", "album_id": "72157623227783082", "photo_flickr_id": "4281244219", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "44679", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we visited a famous historic church .", "storylet_id": "223395"}], [{"original_text": "The stained glass windows caught the sun perfectly.", "album_id": "72157623227783082", "photo_flickr_id": "4281250495", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "44679", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the stained glass windows caught the sun perfectly .", "storylet_id": "223396"}], [{"original_text": "The altar was beautiful.", "album_id": "72157623227783082", "photo_flickr_id": "4281251735", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "44679", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the altar was beautiful .", "storylet_id": "223397"}], [{"original_text": "It was so spacious inside.", "album_id": "72157623227783082", "photo_flickr_id": "4281254211", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "44679", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was so spacious inside .", "storylet_id": "223398"}], [{"original_text": "Looking back, we could imagine it crowded with people in the pews.", "album_id": "72157623227783082", "photo_flickr_id": "4281256163", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "44679", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "looking back , we could imagine it crowded with people in the pews .", "storylet_id": "223399"}], [{"original_text": "Last Sunday, I acted as Junior Pastor at my church.", "album_id": "72157623243524150", "photo_flickr_id": "4288207556", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "44680", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last sunday , i acted as [male] pastor at my church .", "storylet_id": "223400"}], [{"original_text": "Many people showed up to sing in the choir for the service.", "album_id": "72157623243524150", "photo_flickr_id": "4287456797", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "44680", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people showed up to sing in the choir for the service .", "storylet_id": "223401"}], [{"original_text": "I was a little nervous but the Pastor was very patient.", "album_id": "72157623243524150", "photo_flickr_id": "4287481911", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "44680", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was a little nervous but the pastor was very patient .", "storylet_id": "223402"}], [{"original_text": "Everyone seemed to be listening closely and paying attention.", "album_id": "72157623243524150", "photo_flickr_id": "4288230054", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "44680", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone seemed to be listening closely and paying attention .", "storylet_id": "223403"}], [{"original_text": "I noticed many people singing along and seeming to enjoy the day.", "album_id": "72157623243524150", "photo_flickr_id": "4287512185", "setting": "first-2-pick-and-tell", "worker_id": "ZNVEMXW5EJSG3BK", "story_id": "44680", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i noticed many people singing along and seeming to enjoy the day .", "storylet_id": "223404"}], [{"original_text": "The crowd is singing.", "album_id": "72157623243524150", "photo_flickr_id": "4288181890", "setting": "first-2-pick-and-tell", "worker_id": "K3S2FXJVQXZHBN8", "story_id": "44681", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowd is singing .", "storylet_id": "223405"}], [{"original_text": "A guy is at a podium talking.", "album_id": "72157623243524150", "photo_flickr_id": "4288204492", "setting": "first-2-pick-and-tell", "worker_id": "K3S2FXJVQXZHBN8", "story_id": "44681", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a guy is at a podium talking .", "storylet_id": "223406"}], [{"original_text": "A woman starts talking at the podium.", "album_id": "72157623243524150", "photo_flickr_id": "4287478705", "setting": "first-2-pick-and-tell", "worker_id": "K3S2FXJVQXZHBN8", "story_id": "44681", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a woman starts talking at the podium .", "storylet_id": "223407"}], [{"original_text": "The crowd is listening.", "album_id": "72157623243524150", "photo_flickr_id": "4288230054", "setting": "first-2-pick-and-tell", "worker_id": "K3S2FXJVQXZHBN8", "story_id": "44681", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowd is listening .", "storylet_id": "223408"}], [{"original_text": "Everyone starts reading.", "album_id": "72157623243524150", "photo_flickr_id": "4287512185", "setting": "first-2-pick-and-tell", "worker_id": "K3S2FXJVQXZHBN8", "story_id": "44681", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone starts reading .", "storylet_id": "223409"}], [{"original_text": "My brother led the church in a prayer.", "album_id": "72157623243524150", "photo_flickr_id": "4288207556", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44682", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brother led the church in a prayer .", "storylet_id": "223410"}], [{"original_text": "We then all sang songs.", "album_id": "72157623243524150", "photo_flickr_id": "4287456797", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44682", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we then all sang songs .", "storylet_id": "223411"}], [{"original_text": "The guest priest came up next to give a sermon.", "album_id": "72157623243524150", "photo_flickr_id": "4287481911", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44682", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guest priest came up next to give a sermon .", "storylet_id": "223412"}], [{"original_text": "We all listened intently.", "album_id": "72157623243524150", "photo_flickr_id": "4288230054", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44682", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all listened intently .", "storylet_id": "223413"}], [{"original_text": "We then sang some more songs.", "album_id": "72157623243524150", "photo_flickr_id": "4287512185", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44682", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we then sang some more songs .", "storylet_id": "223414"}], [{"original_text": "Here is John reading the scripture before the sermon.", "album_id": "72157623243524150", "photo_flickr_id": "4288207556", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44683", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is [male] reading the scripture before the sermon .", "storylet_id": "223415"}], [{"original_text": "The youth choir performed a selection.", "album_id": "72157623243524150", "photo_flickr_id": "4287456797", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44683", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the youth choir performed a selection .", "storylet_id": "223416"}], [{"original_text": "Here is the speaker for the night taking her scripture.", "album_id": "72157623243524150", "photo_flickr_id": "4287481911", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44683", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is the speaker for the night taking her scripture .", "storylet_id": "223417"}], [{"original_text": "Here is a two new visitors to the church for the night.", "album_id": "72157623243524150", "photo_flickr_id": "4288230054", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44683", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is a two new visitors to the church for the night .", "storylet_id": "223418"}], [{"original_text": "Our beloved and faithful congregation getting ready for a church hymn.", "album_id": "72157623243524150", "photo_flickr_id": "4287512185", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44683", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our beloved and faithful congregation getting ready for a church hymn .", "storylet_id": "223419"}], [{"original_text": "A young man speaks in front of the congregation.", "album_id": "72157623243524150", "photo_flickr_id": "4288207556", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "44684", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a young man speaks in front of the congregation .", "storylet_id": "223420"}], [{"original_text": "Several people stand while reading along.", "album_id": "72157623243524150", "photo_flickr_id": "4287456797", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "44684", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "several people stand while reading along .", "storylet_id": "223421"}], [{"original_text": "The woman is speaking to the congregation.", "album_id": "72157623243524150", "photo_flickr_id": "4287481911", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "44684", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the woman is speaking to the congregation .", "storylet_id": "223422"}], [{"original_text": "Two worshippers listen to the speaker.", "album_id": "72157623243524150", "photo_flickr_id": "4288230054", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "44684", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two worshippers listen to the speaker .", "storylet_id": "223423"}], [{"original_text": "The congregation follows along with the lesson plan.", "album_id": "72157623243524150", "photo_flickr_id": "4287512185", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "44684", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the congregation follows along with the lesson plan .", "storylet_id": "223424"}], [{"original_text": "We walked along the train tracks as we started exploring. ", "album_id": "72157623145474461", "photo_flickr_id": "4299026622", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "44685", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we walked along the train tracks as we started exploring .", "storylet_id": "223425"}], [{"original_text": "The station had a red door with the paint peeling off. ", "album_id": "72157623145474461", "photo_flickr_id": "4299027530", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "44685", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the station had a red door with the paint peeling off .", "storylet_id": "223426"}], [{"original_text": "Next we passed by a tall water tower. ", "album_id": "72157623145474461", "photo_flickr_id": "4298282307", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "44685", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next we passed by a tall water tower .", "storylet_id": "223427"}], [{"original_text": "We headed into town. ", "album_id": "72157623145474461", "photo_flickr_id": "4298284471", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "44685", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we headed into town .", "storylet_id": "223428"}], [{"original_text": "The town had a beautiful church with unique architecture. ", "album_id": "72157623145474461", "photo_flickr_id": "4298286897", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "44685", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the town had a beautiful church with unique architecture .", "storylet_id": "223429"}], [{"original_text": "The buildings look abandoned.", "album_id": "72157623145474461", "photo_flickr_id": "4299026622", "setting": "first-2-pick-and-tell", "worker_id": "K3S2FXJVQXZHBN8", "story_id": "44686", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the buildings look abandoned .", "storylet_id": "223430"}], [{"original_text": "The water tower is tall.", "album_id": "72157623145474461", "photo_flickr_id": "4298282307", "setting": "first-2-pick-and-tell", "worker_id": "K3S2FXJVQXZHBN8", "story_id": "44686", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the water tower is tall .", "storylet_id": "223431"}], [{"original_text": "This is another vacant building.", "album_id": "72157623145474461", "photo_flickr_id": "4298284471", "setting": "first-2-pick-and-tell", "worker_id": "K3S2FXJVQXZHBN8", "story_id": "44686", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is another vacant building .", "storylet_id": "223432"}], [{"original_text": "The curch looks nice.", "album_id": "72157623145474461", "photo_flickr_id": "4298286897", "setting": "first-2-pick-and-tell", "worker_id": "K3S2FXJVQXZHBN8", "story_id": "44686", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the curch looks nice .", "storylet_id": "223433"}], [{"original_text": "Looking up into the top window.", "album_id": "72157623145474461", "photo_flickr_id": "4298288039", "setting": "first-2-pick-and-tell", "worker_id": "K3S2FXJVQXZHBN8", "story_id": "44686", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "looking up into the top window .", "storylet_id": "223434"}], [{"original_text": "I walked along the tracks and saw the old Pacer Oil warehouse.", "album_id": "72157623145474461", "photo_flickr_id": "4299026622", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44687", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i walked along the tracks and saw the old pacer oil warehouse .", "storylet_id": "223435"}], [{"original_text": "The paint was old and chipped on it.", "album_id": "72157623145474461", "photo_flickr_id": "4299027530", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44687", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the paint was old and chipped on it .", "storylet_id": "223436"}], [{"original_text": "I came along a watertower soon after.", "album_id": "72157623145474461", "photo_flickr_id": "4298282307", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44687", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i came along a watertower soon after .", "storylet_id": "223437"}], [{"original_text": "The tracks led me into a town with old gray buildings.", "album_id": "72157623145474461", "photo_flickr_id": "4298284471", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44687", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the tracks led me into a town with old gray buildings .", "storylet_id": "223438"}], [{"original_text": "I decided to enter the church because it was the most colorful of all the buildings.", "album_id": "72157623145474461", "photo_flickr_id": "4298286897", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44687", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to enter the church because it was the most colorful of all the buildings .", "storylet_id": "223439"}], [{"original_text": "We arrived at the abandoned train station.", "album_id": "72157623145474461", "photo_flickr_id": "4299026622", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "44688", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at the abandoned train station .", "storylet_id": "223440"}], [{"original_text": "The peeling paint was a stark reminder of how deserted this town was.", "album_id": "72157623145474461", "photo_flickr_id": "4299027530", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "44688", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the peeling paint was a stark reminder of how deserted this town was .", "storylet_id": "223441"}], [{"original_text": "A water tower stood sentinel over the road.", "album_id": "72157623145474461", "photo_flickr_id": "4298282307", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "44688", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a water tower stood sentinel over the road .", "storylet_id": "223442"}], [{"original_text": "Stores looked as they did 50 years ago.", "album_id": "72157623145474461", "photo_flickr_id": "4298284471", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "44688", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "stores looked as they did 50 years ago .", "storylet_id": "223443"}], [{"original_text": "The church was in remarkably good shape.", "album_id": "72157623145474461", "photo_flickr_id": "4298286897", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "44688", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the church was in remarkably good shape .", "storylet_id": "223444"}], [{"original_text": "Childhood memories, the old train station that we played in when my Uncle worked there.", "album_id": "72157623145474461", "photo_flickr_id": "4299026622", "setting": "last-3-pick-old-and-tell", "worker_id": "HP8MI1VV0CJQOJK", "story_id": "44689", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "childhood memories , the old train station that we played in when my uncle worked there .", "storylet_id": "223445"}], [{"original_text": "The barn where I experienced my first flying attempt. ", "album_id": "72157623145474461", "photo_flickr_id": "4299027530", "setting": "last-3-pick-old-and-tell", "worker_id": "HP8MI1VV0CJQOJK", "story_id": "44689", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the barn where i experienced my first flying attempt .", "storylet_id": "223446"}], [{"original_text": "The old water tower we had so much fun climbing it every summer.", "album_id": "72157623145474461", "photo_flickr_id": "4298282307", "setting": "last-3-pick-old-and-tell", "worker_id": "HP8MI1VV0CJQOJK", "story_id": "44689", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the old water tower we had so much fun climbing it every summer .", "storylet_id": "223447"}], [{"original_text": "Best store for those small change items that kids love.", "album_id": "72157623145474461", "photo_flickr_id": "4298284471", "setting": "last-3-pick-old-and-tell", "worker_id": "HP8MI1VV0CJQOJK", "story_id": "44689", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "best store for those small change items that kids love .", "storylet_id": "223448"}], [{"original_text": "End of childhood, where we got married.", "album_id": "72157623145474461", "photo_flickr_id": "4298286897", "setting": "last-3-pick-old-and-tell", "worker_id": "HP8MI1VV0CJQOJK", "story_id": "44689", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "end of childhood , where we got married .", "storylet_id": "223449"}], [{"original_text": "Here is the start to the winter snow storm of 2015!", "album_id": "72157623267583604", "photo_flickr_id": "4297198725", "setting": "first-2-pick-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "44690", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is the start to the winter snow storm of 2015 !", "storylet_id": "223450"}], [{"original_text": "Our road could only be driven on by four wheel drives.", "album_id": "72157623267583604", "photo_flickr_id": "4297967146", "setting": "first-2-pick-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "44690", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our road could only be driven on by four wheel drives .", "storylet_id": "223451"}], [{"original_text": "The local animals enjoyed the weather though.", "album_id": "72157623267583604", "photo_flickr_id": "4297979010", "setting": "first-2-pick-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "44690", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the local animals enjoyed the weather though .", "storylet_id": "223452"}], [{"original_text": "And too did my wife, Nancy, traipsing out in the snow.", "album_id": "72157623267583604", "photo_flickr_id": "4297981622", "setting": "first-2-pick-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "44690", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and too did my wife , [female] , traipsing out in the snow .", "storylet_id": "223453"}], [{"original_text": "This car sure isn't going anywhere anytime soon.", "album_id": "72157623267583604", "photo_flickr_id": "4297290571", "setting": "first-2-pick-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "44690", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this car sure is n't going anywhere anytime soon .", "storylet_id": "223454"}], [{"original_text": "Jim and Helga went for a fun trip to the mountains. ", "album_id": "72157623267583604", "photo_flickr_id": "4297267313", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44691", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and helga went for a fun trip to the mountains .", "storylet_id": "223455"}], [{"original_text": "This is Helga all snuggled up and warm. ", "album_id": "72157623267583604", "photo_flickr_id": "4297210139", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44691", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is helga all snuggled up and warm .", "storylet_id": "223456"}], [{"original_text": "The snow was pretty thick. ", "album_id": "72157623267583604", "photo_flickr_id": "4297981622", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44691", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the snow was pretty thick .", "storylet_id": "223457"}], [{"original_text": "Jim is pointing at some dark clouds in the distance. ", "album_id": "72157623267583604", "photo_flickr_id": "4298000764", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44691", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is pointing at some dark clouds in the distance .", "storylet_id": "223458"}], [{"original_text": "Jim and Helga were found a week later dead and frozen in their VW. ", "album_id": "72157623267583604", "photo_flickr_id": "4297290571", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44691", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] and helga were found a week later dead and frozen in their vw .", "storylet_id": "223459"}], [{"original_text": "Mom sent this picture of their first snow this year.", "album_id": "72157623267583604", "photo_flickr_id": "4297198725", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44692", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom sent this picture of their first snow this year .", "storylet_id": "223460"}], [{"original_text": "Here is mom traveling up her path to looking for her favorite lamb.", "album_id": "72157623267583604", "photo_flickr_id": "4297967146", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44692", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is mom traveling up her path to looking for her favorite lamb .", "storylet_id": "223461"}], [{"original_text": "She found the lamb who wondered away from all.", "album_id": "72157623267583604", "photo_flickr_id": "4297979010", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44692", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she found the lamb who wondered away from all .", "storylet_id": "223462"}], [{"original_text": "Here is mom looks like she is stuck in the snow.", "album_id": "72157623267583604", "photo_flickr_id": "4297981622", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44692", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is mom looks like she is stuck in the snow .", "storylet_id": "223463"}], [{"original_text": "Moms car covered in snow.", "album_id": "72157623267583604", "photo_flickr_id": "4297290571", "setting": "last-3-pick-old-and-tell", "worker_id": "BPCB49EK1YC6296", "story_id": "44692", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "moms car covered in snow .", "storylet_id": "223464"}], [{"original_text": "Today we went to the snowy highlands.", "album_id": "72157623267583604", "photo_flickr_id": "4297198725", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "44693", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to the snowy highlands .", "storylet_id": "223465"}], [{"original_text": "We walked down old roads", "album_id": "72157623267583604", "photo_flickr_id": "4297967146", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "44693", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we walked down old roads", "storylet_id": "223466"}], [{"original_text": "and saw some sheep.", "album_id": "72157623267583604", "photo_flickr_id": "4297979010", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "44693", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and saw some sheep .", "storylet_id": "223467"}], [{"original_text": "We climbed a snowy hill.", "album_id": "72157623267583604", "photo_flickr_id": "4297981622", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "44693", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we climbed a snowy hill .", "storylet_id": "223468"}], [{"original_text": "At the top we saw an old car buried in the snow.", "album_id": "72157623267583604", "photo_flickr_id": "4297290571", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "44693", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the top we saw an old car buried in the snow .", "storylet_id": "223469"}], [{"original_text": "winter is wonderful", "album_id": "72157623267583604", "photo_flickr_id": "4297267313", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44694", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "winter is wonderful", "storylet_id": "223470"}], [{"original_text": "we love going on snowy hikes", "album_id": "72157623267583604", "photo_flickr_id": "4297210139", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44694", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we love going on snowy hikes", "storylet_id": "223471"}], [{"original_text": "its fun to climb the hills", "album_id": "72157623267583604", "photo_flickr_id": "4297981622", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44694", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "its fun to climb the hills", "storylet_id": "223472"}], [{"original_text": "the view is incredible", "album_id": "72157623267583604", "photo_flickr_id": "4298000764", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44694", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the view is incredible", "storylet_id": "223473"}], [{"original_text": "wish we could drive though ", "album_id": "72157623267583604", "photo_flickr_id": "4297290571", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44694", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "wish we could drive though", "storylet_id": "223474"}], [{"original_text": "we love all the stained glass windows in our church", "album_id": "72157623308808136", "photo_flickr_id": "4313859951", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "44695", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we love all the stained glass windows in our church", "storylet_id": "223475"}], [{"original_text": "Every Sunday we look at them and try to appreciate their beauty", "album_id": "72157623308808136", "photo_flickr_id": "4314596588", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "44695", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "every sunday we look at them and try to appreciate their beauty", "storylet_id": "223476"}], [{"original_text": "It is more than a 100 years old, but it still looks great", "album_id": "72157623308808136", "photo_flickr_id": "4314598452", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "44695", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is more than a 100 years old , but it still looks great", "storylet_id": "223477"}], [{"original_text": "We took a black and white to show how nice it looks from the outside too.", "album_id": "72157623308808136", "photo_flickr_id": "4313863213", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "44695", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a black and white to show how nice it looks from the outside too .", "storylet_id": "223478"}], [{"original_text": "We also wanted to make sure we captured the beautiful sky against the church's facade", "album_id": "72157623308808136", "photo_flickr_id": "4314599200", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "44695", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also wanted to make sure we captured the beautiful sky against the church 's facade", "storylet_id": "223479"}], [{"original_text": "Today we did a tour of church's ", "album_id": "72157623308808136", "photo_flickr_id": "4313860389", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "44696", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we did a tour of church 's", "storylet_id": "223480"}], [{"original_text": "This one had many beautiful stained glass windows ", "album_id": "72157623308808136", "photo_flickr_id": "4314596588", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "44696", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one had many beautiful stained glass windows", "storylet_id": "223481"}], [{"original_text": "Here's another photo of the windows ", "album_id": "72157623308808136", "photo_flickr_id": "4314598452", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "44696", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's another photo of the windows", "storylet_id": "223482"}], [{"original_text": "The shape of this church is very unique ", "album_id": "72157623308808136", "photo_flickr_id": "4313863213", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "44696", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the shape of this church is very unique", "storylet_id": "223483"}], [{"original_text": "Here's a photo of the other side ", "album_id": "72157623308808136", "photo_flickr_id": "4314599200", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "44696", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here 's a photo of the other side", "storylet_id": "223484"}], [{"original_text": "The stained glass window shows an angel teaching the saints.", "album_id": "72157623308808136", "photo_flickr_id": "4313860389", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44697", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the stained glass window shows an angel teaching the saints .", "storylet_id": "223485"}], [{"original_text": "There's another behind the altar. ", "album_id": "72157623308808136", "photo_flickr_id": "4314596588", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44697", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there 's another behind the altar .", "storylet_id": "223486"}], [{"original_text": "A third is to the side.", "album_id": "72157623308808136", "photo_flickr_id": "4314598452", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44697", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a third is to the side .", "storylet_id": "223487"}], [{"original_text": "Outside the church. there are some really old gravestones.", "album_id": "72157623308808136", "photo_flickr_id": "4313863213", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44697", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "outside the church . there are some really old gravestones .", "storylet_id": "223488"}], [{"original_text": "The church is very old and was built in the 1500's.", "album_id": "72157623308808136", "photo_flickr_id": "4314599200", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44697", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the church is very old and was built in the 1500 's .", "storylet_id": "223489"}], [{"original_text": "After church today I decided to take a few pictures of the windows in my church. ", "album_id": "72157623308808136", "photo_flickr_id": "4313859951", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44698", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after church today i decided to take a few pictures of the windows in my church .", "storylet_id": "223490"}], [{"original_text": "The panes are all stained glass. ", "album_id": "72157623308808136", "photo_flickr_id": "4314596588", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44698", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the panes are all stained glass .", "storylet_id": "223491"}], [{"original_text": "Each one painted differently and each one uniquely beautiful. ", "album_id": "72157623308808136", "photo_flickr_id": "4314598452", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44698", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each one painted differently and each one uniquely beautiful .", "storylet_id": "223492"}], [{"original_text": "The outside of my church is grand. It's so large. ", "album_id": "72157623308808136", "photo_flickr_id": "4313863213", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44698", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the outside of my church is grand . it 's so large .", "storylet_id": "223493"}], [{"original_text": "I love going to my church. It looms in the distance calling out for me to come visit again. ", "album_id": "72157623308808136", "photo_flickr_id": "4314599200", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44698", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love going to my church . it looms in the distance calling out for me to come visit again .", "storylet_id": "223494"}], [{"original_text": "I went on a tour of famous stained glass windows at a very old church.", "album_id": "72157623308808136", "photo_flickr_id": "4313859951", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44699", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on a tour of famous stained glass windows at a very old church .", "storylet_id": "223495"}], [{"original_text": "The windows were really beautiful and colorful.", "album_id": "72157623308808136", "photo_flickr_id": "4314596588", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44699", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the windows were really beautiful and colorful .", "storylet_id": "223496"}], [{"original_text": "The window behind the pulpit was very large and depicted scenes of Christ's birth.", "album_id": "72157623308808136", "photo_flickr_id": "4314598452", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44699", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the window behind the pulpit was very large and depicted scenes of christ 's birth .", "storylet_id": "223497"}], [{"original_text": "On my way back to my hotel, I walked through the cemetery of the church.", "album_id": "72157623308808136", "photo_flickr_id": "4313863213", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44699", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on my way back to my hotel , i walked through the cemetery of the church .", "storylet_id": "223498"}], [{"original_text": "I thought about everything I had seen that day and couldn't wait to get back to look at my pictures.", "album_id": "72157623308808136", "photo_flickr_id": "4314599200", "setting": "last-3-pick-old-and-tell", "worker_id": "3BYTIEGU4HSZGXP", "story_id": "44699", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i thought about everything i had seen that day and could n't wait to get back to look at my pictures .", "storylet_id": "223499"}], [{"original_text": "We arrived at the village on the morning of the festival.", "album_id": "72157600723477055", "photo_flickr_id": "757560617", "setting": "first-2-pick-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "44700", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we arrived at the village on the morning of the festival .", "storylet_id": "223500"}], [{"original_text": "It was still early, but people were already getting busy cooking and setting everything up.", "album_id": "72157600723477055", "photo_flickr_id": "758416252", "setting": "first-2-pick-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "44700", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was still early , but people were already getting busy cooking and setting everything up .", "storylet_id": "223501"}], [{"original_text": "Finally -- the delicious suckling pig we'd all been looking forward to!", "album_id": "72157600723477055", "photo_flickr_id": "757561539", "setting": "first-2-pick-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "44700", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "finally -- the delicious suckling pig we 'd all been looking forward to !", "storylet_id": "223502"}], [{"original_text": "We loved seeing our old friends Gloria and Hector.", "album_id": "72157600723477055", "photo_flickr_id": "757561615", "setting": "first-2-pick-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "44700", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we loved seeing our old friends [female] and [male] .", "storylet_id": "223503"}], [{"original_text": "Their grandkids were so cute! Everyone had a wonderful time.", "album_id": "72157600723477055", "photo_flickr_id": "757562013", "setting": "first-2-pick-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "44700", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their grandkids were so cute ! everyone had a wonderful time .", "storylet_id": "223504"}], [{"original_text": "I went to the church yesterday.", "album_id": "72157600723477055", "photo_flickr_id": "758416768", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44701", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the church yesterday .", "storylet_id": "223505"}], [{"original_text": "They had a big party there.", "album_id": "72157600723477055", "photo_flickr_id": "758416836", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44701", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a big party there .", "storylet_id": "223506"}], [{"original_text": "They made a lot of good food.", "album_id": "72157600723477055", "photo_flickr_id": "757562215", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44701", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they made a lot of good food .", "storylet_id": "223507"}], [{"original_text": "Everyone took lots of pictures.", "album_id": "72157600723477055", "photo_flickr_id": "758417330", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44701", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone took lots of pictures .", "storylet_id": "223508"}], [{"original_text": "Some of the children were armed.", "album_id": "72157600723477055", "photo_flickr_id": "758417388", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44701", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the children were armed .", "storylet_id": "223509"}], [{"original_text": "We approached the venue for the party.", "album_id": "72157600723477055", "photo_flickr_id": "757560617", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "44702", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we approached the venue for the party .", "storylet_id": "223510"}], [{"original_text": "A large crowd of family had gathered.", "album_id": "72157600723477055", "photo_flickr_id": "758416252", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "44702", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a large crowd of family had gathered .", "storylet_id": "223511"}], [{"original_text": "They'd roasted a pig to feast on.", "album_id": "72157600723477055", "photo_flickr_id": "757561539", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "44702", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they 'd roasted a pig to feast on .", "storylet_id": "223512"}], [{"original_text": "The family members ate and talked and had a lot of fun.", "album_id": "72157600723477055", "photo_flickr_id": "757561615", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "44702", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family members ate and talked and had a lot of fun .", "storylet_id": "223513"}], [{"original_text": "The younger party goers played outside and enjoyed the party as well!", "album_id": "72157600723477055", "photo_flickr_id": "757562013", "setting": "last-3-pick-old-and-tell", "worker_id": "R855JOIVXK73L4Q", "story_id": "44702", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the younger party goers played outside and enjoyed the party as well !", "storylet_id": "223514"}], [{"original_text": "Our trip hosts lived on a rice paddy. ", "album_id": "72157600723477055", "photo_flickr_id": "757560617", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "44703", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip hosts lived on a rice paddy .", "storylet_id": "223515"}], [{"original_text": "Their house was so interesting looking, like it was made of straw and mud. ", "album_id": "72157600723477055", "photo_flickr_id": "758416252", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "44703", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their house was so interesting looking , like it was made of straw and mud .", "storylet_id": "223516"}], [{"original_text": "They roasted a pig in our honor. ", "album_id": "72157600723477055", "photo_flickr_id": "757561539", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "44703", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they roasted a pig in our honor .", "storylet_id": "223517"}], [{"original_text": "The elders taught us how to eat family style according to their culture. ", "album_id": "72157600723477055", "photo_flickr_id": "757561615", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "44703", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the elders taught us how to eat family style according to their culture .", "storylet_id": "223518"}], [{"original_text": "The kids played outside and ate fresh fruits while we chatted. ", "album_id": "72157600723477055", "photo_flickr_id": "757562013", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "44703", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids played outside and ate fresh fruits while we chatted .", "storylet_id": "223519"}], [{"original_text": "The family reunion was held at a small reception hall by a lake.", "album_id": "72157600723477055", "photo_flickr_id": "757560617", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "44704", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family reunion was held at a small reception hall by a lake .", "storylet_id": "223520"}], [{"original_text": "Family from many different areas attended. There was over 100 people present.", "album_id": "72157600723477055", "photo_flickr_id": "758416252", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "44704", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "family from many different areas attended . there was over 100 people present .", "storylet_id": "223521"}], [{"original_text": "Roasted pig was the main course and everyone enjoyed it.", "album_id": "72157600723477055", "photo_flickr_id": "757561539", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "44704", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "roasted pig was the main course and everyone enjoyed it .", "storylet_id": "223522"}], [{"original_text": "John and Phyllis made the trip from their home in Canada.", "album_id": "72157600723477055", "photo_flickr_id": "757561615", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "44704", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and [female] made the trip from their home in location .", "storylet_id": "223523"}], [{"original_text": "Young and old. Man and woman. There is such a variety in the family and all are loved.", "album_id": "72157600723477055", "photo_flickr_id": "757562013", "setting": "last-3-pick-old-and-tell", "worker_id": "QMBT2M5DMORD0SL", "story_id": "44704", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "young and old . man and woman . there is such a variety in the family and all are loved .", "storylet_id": "223524"}], [{"original_text": "My family and I live on a farm, so when I took my first plane ride to the big city, I was so excited.", "album_id": "5078", "photo_flickr_id": "219685", "setting": "first-2-pick-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "44705", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family and i live on a farm , so when i took my first plane ride to the big city , i was so excited .", "storylet_id": "223525"}], [{"original_text": "The first thing we did after checking into our hotel was take a long boat ride on the river that winds around the downtown area.", "album_id": "5078", "photo_flickr_id": "219688", "setting": "first-2-pick-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "44705", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first thing we did after checking into our hotel was take a long boat ride on the river that winds around the downtown area .", "storylet_id": "223526"}], [{"original_text": "That night we attended a baseball game, my first major league game. I ate 3 hotdogs.", "album_id": "5078", "photo_flickr_id": "219689", "setting": "first-2-pick-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "44705", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that night we attended a baseball game , my first major league game . i ate 3 hotdogs .", "storylet_id": "223527"}], [{"original_text": "The next day we visited city hall and learned a lot about the history of the great city.", "album_id": "5078", "photo_flickr_id": "219690", "setting": "first-2-pick-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "44705", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next day we visited city hall and learned a lot about the history of the great city .", "storylet_id": "223528"}], [{"original_text": "For me the highlight was when my dad arranged for us to take a helicopter ride at night. So cool! ", "album_id": "5078", "photo_flickr_id": "227824", "setting": "first-2-pick-and-tell", "worker_id": "M5NLHWY9BAJNJHI", "story_id": "44705", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for me the highlight was when my dad arranged for us to take a helicopter ride at night . so cool !", "storylet_id": "223529"}], [{"original_text": "Jane went to the city yesterday.", "album_id": "5078", "photo_flickr_id": "219685", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44706", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] went to the city yesterday .", "storylet_id": "223530"}], [{"original_text": "She went up onto a tall building and looked out.", "album_id": "5078", "photo_flickr_id": "219686", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44706", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she went up onto a tall building and looked out .", "storylet_id": "223531"}], [{"original_text": "From there, she could look down on the city.", "album_id": "5078", "photo_flickr_id": "227817", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44706", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "from there , she could look down on the city .", "storylet_id": "223532"}], [{"original_text": "She could even look across to other buildings.", "album_id": "5078", "photo_flickr_id": "227819", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44706", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she could even look across to other buildings .", "storylet_id": "223533"}], [{"original_text": "When night fell, she could see all the lights of the city for miles.", "album_id": "5078", "photo_flickr_id": "227824", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44706", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when night fell , she could see all the lights of the city for miles .", "storylet_id": "223534"}], [{"original_text": "I could see the view of the city from above.", "album_id": "5078", "photo_flickr_id": "219685", "setting": "last-3-pick-old-and-tell", "worker_id": "2SLAVDPT9ERNLMU", "story_id": "44707", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i could see the view of the city from above .", "storylet_id": "223535"}], [{"original_text": "The view of the skyscrapers was amazing.", "album_id": "5078", "photo_flickr_id": "219688", "setting": "last-3-pick-old-and-tell", "worker_id": "2SLAVDPT9ERNLMU", "story_id": "44707", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view of the skyscrapers was amazing .", "storylet_id": "223536"}], [{"original_text": "Then I saw the huge stadium from above. What a sight!", "album_id": "5078", "photo_flickr_id": "219689", "setting": "last-3-pick-old-and-tell", "worker_id": "2SLAVDPT9ERNLMU", "story_id": "44707", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then i saw the huge stadium from above . what a sight !", "storylet_id": "223537"}], [{"original_text": "Another building's dome was magnificent in the amazing view of the city below.", "album_id": "5078", "photo_flickr_id": "219690", "setting": "last-3-pick-old-and-tell", "worker_id": "2SLAVDPT9ERNLMU", "story_id": "44707", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another building 's dome was magnificent in the amazing view of the city below .", "storylet_id": "223538"}], [{"original_text": "The city lights were so beautiful at night. They sparkled in the darkness.", "album_id": "5078", "photo_flickr_id": "227824", "setting": "last-3-pick-old-and-tell", "worker_id": "2SLAVDPT9ERNLMU", "story_id": "44707", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the city lights were so beautiful at night . they sparkled in the darkness .", "storylet_id": "223539"}], [{"original_text": "We took a helicopter tour over the city today.", "album_id": "5078", "photo_flickr_id": "219685", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "44708", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a helicopter tour over the city today .", "storylet_id": "223540"}], [{"original_text": "We flew right over the lake.", "album_id": "5078", "photo_flickr_id": "219688", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "44708", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we flew right over the lake .", "storylet_id": "223541"}], [{"original_text": "Tom's favorite part was seeing the baseball game from high up.", "album_id": "5078", "photo_flickr_id": "219689", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "44708", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] 's favorite part was seeing the baseball game from high up .", "storylet_id": "223542"}], [{"original_text": "I liked seeing the fountains.", "album_id": "5078", "photo_flickr_id": "219690", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "44708", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i liked seeing the fountains .", "storylet_id": "223543"}], [{"original_text": "The nightlife we saw at the end of our tour was the best.", "album_id": "5078", "photo_flickr_id": "227824", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "44708", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the nightlife we saw at the end of our tour was the best .", "storylet_id": "223544"}], [{"original_text": "Today we visited the city to see the sites.", "album_id": "5078", "photo_flickr_id": "219685", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44709", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we visited the city to see the sites .", "storylet_id": "223545"}], [{"original_text": "The buildings from up high was beautiful.", "album_id": "5078", "photo_flickr_id": "219688", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44709", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the buildings from up high was beautiful .", "storylet_id": "223546"}], [{"original_text": "The baseball stadium at night was lit up very bright.", "album_id": "5078", "photo_flickr_id": "219689", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44709", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the baseball stadium at night was lit up very bright .", "storylet_id": "223547"}], [{"original_text": "Some of the buildings had a very interesting design.", "album_id": "5078", "photo_flickr_id": "219690", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44709", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the buildings had a very interesting design .", "storylet_id": "223548"}], [{"original_text": "At night the entire city had a wonderful orange glow.", "album_id": "5078", "photo_flickr_id": "227824", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44709", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night the entire city had a wonderful orange glow .", "storylet_id": "223549"}], [{"original_text": "On our first day in the country, we decided to look around.", "album_id": "72157600728836530", "photo_flickr_id": "761016206", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44710", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our first day in the country , we decided to look around .", "storylet_id": "223550"}], [{"original_text": "We saw new kinds of plants.", "album_id": "72157600728836530", "photo_flickr_id": "761016434", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44710", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw new kinds of plants .", "storylet_id": "223551"}], [{"original_text": "The building in the country were huge and intricately built.", "album_id": "72157600728836530", "photo_flickr_id": "760160341", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44710", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the building in the country were huge and intricately built .", "storylet_id": "223552"}], [{"original_text": "Even the money was new to us.", "album_id": "72157600728836530", "photo_flickr_id": "760160573", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44710", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the money was new to us .", "storylet_id": "223553"}], [{"original_text": "After our sight seeing trip, we decided that the country had many beautiful things about it.", "album_id": "72157600728836530", "photo_flickr_id": "761017686", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44710", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after our sight seeing trip , we decided that the country had many beautiful things about it .", "storylet_id": "223554"}], [{"original_text": "I tool this photo with my newest camera.", "album_id": "72157600728836530", "photo_flickr_id": "760160015", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44711", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i tool this photo with my newest camera .", "storylet_id": "223555"}], [{"original_text": "This shot was straight out of the camera.", "album_id": "72157600728836530", "photo_flickr_id": "761016206", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44711", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this shot was straight out of the camera .", "storylet_id": "223556"}], [{"original_text": "I photo edited this shot.", "album_id": "72157600728836530", "photo_flickr_id": "761016434", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44711", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i photo edited this shot .", "storylet_id": "223557"}], [{"original_text": "This shot was the side view of the first one taken.", "album_id": "72157600728836530", "photo_flickr_id": "761017048", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44711", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this shot was the side view of the first one taken .", "storylet_id": "223558"}], [{"original_text": "The butterfly shot was may favorite.", "album_id": "72157600728836530", "photo_flickr_id": "760161345", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44711", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the butterfly shot was may favorite .", "storylet_id": "223559"}], [{"original_text": "Insects can be found everywhere in the natural world.", "album_id": "72157600728836530", "photo_flickr_id": "760160015", "setting": "last-3-pick-old-and-tell", "worker_id": "TRYEWTQ09UEHFR6", "story_id": "44712", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "insects can be found everywhere in the natural world .", "storylet_id": "223560"}], [{"original_text": "They live in a range on environments.", "album_id": "72157600728836530", "photo_flickr_id": "761016206", "setting": "last-3-pick-old-and-tell", "worker_id": "TRYEWTQ09UEHFR6", "story_id": "44712", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they live in a range on environments .", "storylet_id": "223561"}], [{"original_text": "Some like to hide beneath the leaves.", "album_id": "72157600728836530", "photo_flickr_id": "761016434", "setting": "last-3-pick-old-and-tell", "worker_id": "TRYEWTQ09UEHFR6", "story_id": "44712", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some like to hide beneath the leaves .", "storylet_id": "223562"}], [{"original_text": "Others like to fly from flower to flower.", "album_id": "72157600728836530", "photo_flickr_id": "761017048", "setting": "last-3-pick-old-and-tell", "worker_id": "TRYEWTQ09UEHFR6", "story_id": "44712", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others like to fly from flower to flower .", "storylet_id": "223563"}], [{"original_text": "Small or large, insects are ubiquitous.", "album_id": "72157600728836530", "photo_flickr_id": "760161345", "setting": "last-3-pick-old-and-tell", "worker_id": "TRYEWTQ09UEHFR6", "story_id": "44712", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "small or large , insects are ubiquitous .", "storylet_id": "223564"}], [{"original_text": "A photographer spent her day in a nature preserve looking for new subject to photograph.", "album_id": "72157600728836530", "photo_flickr_id": "760160015", "setting": "last-3-pick-old-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "44713", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a photographer spent her day in a nature preserve looking for new subject to photograph .", "storylet_id": "223565"}], [{"original_text": "She found many beautiful landscapes to photograph.", "album_id": "72157600728836530", "photo_flickr_id": "761016206", "setting": "last-3-pick-old-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "44713", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she found many beautiful landscapes to photograph .", "storylet_id": "223566"}], [{"original_text": "There were also many interesting plants to capture.", "album_id": "72157600728836530", "photo_flickr_id": "761016434", "setting": "last-3-pick-old-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "44713", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were also many interesting plants to capture .", "storylet_id": "223567"}], [{"original_text": "Beautiful flowers bloomed and made the perfect subjects.", "album_id": "72157600728836530", "photo_flickr_id": "761017048", "setting": "last-3-pick-old-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "44713", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "beautiful flowers bloomed and made the perfect subjects .", "storylet_id": "223568"}], [{"original_text": "Overall she found many wonderful things to take pictures of.", "album_id": "72157600728836530", "photo_flickr_id": "760161345", "setting": "last-3-pick-old-and-tell", "worker_id": "EUSUDMTBAW84U1Y", "story_id": "44713", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "overall she found many wonderful things to take pictures of .", "storylet_id": "223569"}], [{"original_text": "We visited Tibet and the scenery was beautiful.", "album_id": "72157600728836530", "photo_flickr_id": "761016206", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44714", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited location and the scenery was beautiful .", "storylet_id": "223570"}], [{"original_text": "The stopped to look at the local flora and fauna.", "album_id": "72157600728836530", "photo_flickr_id": "761016434", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44714", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the stopped to look at the local flora and fauna .", "storylet_id": "223571"}], [{"original_text": "Then we came across an old cathedral.", "album_id": "72157600728836530", "photo_flickr_id": "760160341", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44714", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we came across an old cathedral .", "storylet_id": "223572"}], [{"original_text": "During our trip we managed to save some of the local currency.", "album_id": "72157600728836530", "photo_flickr_id": "760160573", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44714", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "during our trip we managed to save some of the local currency .", "storylet_id": "223573"}], [{"original_text": "The hills in the country are amazing.", "album_id": "72157600728836530", "photo_flickr_id": "761017686", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44714", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the hills in the country are amazing .", "storylet_id": "223574"}], [{"original_text": "A quick photo is taken before the family loads up into their car. ", "album_id": "5185", "photo_flickr_id": "256419", "setting": "first-2-pick-and-tell", "worker_id": "7GGC7Z7CI3NW54P", "story_id": "44715", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a quick photo is taken before the family loads up into their car .", "storylet_id": "223575"}], [{"original_text": "Once they have arrived, the group walks through the landscape. ", "album_id": "5185", "photo_flickr_id": "256388", "setting": "first-2-pick-and-tell", "worker_id": "7GGC7Z7CI3NW54P", "story_id": "44715", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once they have arrived , the group walks through the landscape .", "storylet_id": "223576"}], [{"original_text": "This group chats together while the rest explore other areas.", "album_id": "5185", "photo_flickr_id": "256391", "setting": "first-2-pick-and-tell", "worker_id": "7GGC7Z7CI3NW54P", "story_id": "44715", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this group chats together while the rest explore other areas .", "storylet_id": "223577"}], [{"original_text": "One group member sits atop a set of stairs, overlooking festive balloons. ", "album_id": "5185", "photo_flickr_id": "256405", "setting": "first-2-pick-and-tell", "worker_id": "7GGC7Z7CI3NW54P", "story_id": "44715", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one group member sits atop a set of stairs , overlooking festive balloons .", "storylet_id": "223578"}], [{"original_text": "In the end, the group returns to their original spot and rest atop more stairs.", "album_id": "5185", "photo_flickr_id": "256415", "setting": "first-2-pick-and-tell", "worker_id": "7GGC7Z7CI3NW54P", "story_id": "44715", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the end , the group returns to their original spot and rest atop more stairs .", "storylet_id": "223579"}], [{"original_text": "Our trip to Italy was so much fun.", "album_id": "5185", "photo_flickr_id": "256388", "setting": "first-2-pick-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "44716", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip to location was so much fun .", "storylet_id": "223580"}], [{"original_text": "The architecture was beautiful.", "album_id": "5185", "photo_flickr_id": "256393", "setting": "first-2-pick-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "44716", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the architecture was beautiful .", "storylet_id": "223581"}], [{"original_text": "My favorite thing to see was the Sistine Chapel.", "album_id": "5185", "photo_flickr_id": "256394", "setting": "first-2-pick-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "44716", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my favorite thing to see was the location location .", "storylet_id": "223582"}], [{"original_text": "He was just excited to be back home.", "album_id": "5185", "photo_flickr_id": "256426", "setting": "first-2-pick-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "44716", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was just excited to be back home .", "storylet_id": "223583"}], [{"original_text": "We even saw some snow while we were there. ", "album_id": "5185", "photo_flickr_id": "256432", "setting": "first-2-pick-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "44716", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even saw some snow while we were there .", "storylet_id": "223584"}], [{"original_text": "We parked the car and were off to tour the campus.", "album_id": "5185", "photo_flickr_id": "256419", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44717", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we parked the car and were off to tour the campus .", "storylet_id": "223585"}], [{"original_text": "We were immediately surprised by the lovely garden area.", "album_id": "5185", "photo_flickr_id": "256388", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44717", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were immediately surprised by the lovely garden area .", "storylet_id": "223586"}], [{"original_text": "We continued the tour and loved the barracks.", "album_id": "5185", "photo_flickr_id": "256391", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44717", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we continued the tour and loved the barracks .", "storylet_id": "223587"}], [{"original_text": "And, the study area on the steps outside the classroom building.", "album_id": "5185", "photo_flickr_id": "256405", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44717", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , the study area on the steps outside the classroom building .", "storylet_id": "223588"}], [{"original_text": "We finished the tour at the administrative building and it was wonderful.", "album_id": "5185", "photo_flickr_id": "256415", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "44717", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finished the tour at the administrative building and it was wonderful .", "storylet_id": "223589"}], [{"original_text": "I drove all the way up to meet my college advisor.", "album_id": "5185", "photo_flickr_id": "256419", "setting": "last-3-pick-old-and-tell", "worker_id": "64SFHDLEV8ZT65D", "story_id": "44718", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i drove all the way up to meet my college advisor .", "storylet_id": "223590"}], [{"original_text": "Didnt seem like I was the only one.", "album_id": "5185", "photo_flickr_id": "256388", "setting": "last-3-pick-old-and-tell", "worker_id": "64SFHDLEV8ZT65D", "story_id": "44718", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "didnt seem like i was the only one .", "storylet_id": "223591"}], [{"original_text": "Nor did they pull out any stops.", "album_id": "5185", "photo_flickr_id": "256391", "setting": "last-3-pick-old-and-tell", "worker_id": "64SFHDLEV8ZT65D", "story_id": "44718", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nor did they pull out any stops .", "storylet_id": "223592"}], [{"original_text": "Oh look atleast theres some balloons.", "album_id": "5185", "photo_flickr_id": "256405", "setting": "last-3-pick-old-and-tell", "worker_id": "64SFHDLEV8ZT65D", "story_id": "44718", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "oh look atleast theres some balloons .", "storylet_id": "223593"}], [{"original_text": "Maybe I should rethink my choices. ", "album_id": "5185", "photo_flickr_id": "256415", "setting": "last-3-pick-old-and-tell", "worker_id": "64SFHDLEV8ZT65D", "story_id": "44718", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "maybe i should rethink my choices .", "storylet_id": "223594"}], [{"original_text": "We took a trip by car.", "album_id": "5185", "photo_flickr_id": "256419", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44719", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip by car .", "storylet_id": "223595"}], [{"original_text": "We took a tour of historical buildings.", "album_id": "5185", "photo_flickr_id": "256388", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44719", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a tour of historical buildings .", "storylet_id": "223596"}], [{"original_text": "There were a few people at this attraction.", "album_id": "5185", "photo_flickr_id": "256391", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44719", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a few people at this attraction .", "storylet_id": "223597"}], [{"original_text": "A student is seen doing her work on the stairs.", "album_id": "5185", "photo_flickr_id": "256405", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44719", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a student is seen doing her work on the stairs .", "storylet_id": "223598"}], [{"original_text": "Lastly, we enjoyed our time here.", "album_id": "5185", "photo_flickr_id": "256415", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44719", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , we enjoyed our time here .", "storylet_id": "223599"}], [{"original_text": "After arriving to their destination, a photo is taken to commemorate the occasion. ", "album_id": "72157600548193895", "photo_flickr_id": "659521272", "setting": "first-2-pick-and-tell", "worker_id": "7GGC7Z7CI3NW54P", "story_id": "44720", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after arriving to their destination , a photo is taken to commemorate the occasion .", "storylet_id": "223600"}], [{"original_text": "They walk through the grand city, exploring what types of attractions are available. ", "album_id": "72157600548193895", "photo_flickr_id": "659518734", "setting": "first-2-pick-and-tell", "worker_id": "7GGC7Z7CI3NW54P", "story_id": "44720", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they walk through the grand city , exploring what types of attractions are available .", "storylet_id": "223601"}], [{"original_text": "After looking at historical murals, a picture is taken for later reference. ", "album_id": "72157600548193895", "photo_flickr_id": "658667171", "setting": "first-2-pick-and-tell", "worker_id": "7GGC7Z7CI3NW54P", "story_id": "44720", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after looking at historical murals , a picture is taken for later reference .", "storylet_id": "223602"}], [{"original_text": "A relaxing walk through the cold city reminds them how far from home they are.", "album_id": "72157600548193895", "photo_flickr_id": "658667355", "setting": "first-2-pick-and-tell", "worker_id": "7GGC7Z7CI3NW54P", "story_id": "44720", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a relaxing walk through the cold city reminds them how far from home they are .", "storylet_id": "223603"}], [{"original_text": "After a long day, the family settles down for a friendly chat and drinks. ", "album_id": "72157600548193895", "photo_flickr_id": "659520178", "setting": "first-2-pick-and-tell", "worker_id": "7GGC7Z7CI3NW54P", "story_id": "44720", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long day , the family settles down for a friendly chat and drinks .", "storylet_id": "223604"}], [{"original_text": "We were nervous to go on our first vacation.", "album_id": "72157600548193895", "photo_flickr_id": "659518830", "setting": "first-2-pick-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "44721", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were nervous to go on our first vacation .", "storylet_id": "223605"}], [{"original_text": "The hotel looked nicer in the pictures.", "album_id": "72157600548193895", "photo_flickr_id": "658667171", "setting": "first-2-pick-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "44721", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the hotel looked nicer in the pictures .", "storylet_id": "223606"}], [{"original_text": "However, the inside was a lot better.", "album_id": "72157600548193895", "photo_flickr_id": "659519828", "setting": "first-2-pick-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "44721", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "however , the inside was a lot better .", "storylet_id": "223607"}], [{"original_text": "Our beds were decently made.", "album_id": "72157600548193895", "photo_flickr_id": "658669257", "setting": "first-2-pick-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "44721", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our beds were decently made .", "storylet_id": "223608"}], [{"original_text": "However, we ended up spending most of our time at the pool. ", "album_id": "72157600548193895", "photo_flickr_id": "659522152", "setting": "first-2-pick-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "44721", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , we ended up spending most of our time at the pool .", "storylet_id": "223609"}], [{"original_text": "This was my first time traveling internationally. I was so excited. ", "album_id": "72157600548193895", "photo_flickr_id": "659521272", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "44722", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was my first time traveling internationally . i was so excited .", "storylet_id": "223610"}], [{"original_text": "I'm not the best photographer, but I got some good pictures of the ancient buildings.", "album_id": "72157600548193895", "photo_flickr_id": "659518734", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "44722", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm not the best photographer , but i got some good pictures of the ancient buildings .", "storylet_id": "223611"}], [{"original_text": "This art was so beautiful.", "album_id": "72157600548193895", "photo_flickr_id": "658667171", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "44722", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this art was so beautiful .", "storylet_id": "223612"}], [{"original_text": "It was really cold this day, but I still found a good picture of the scenery.", "album_id": "72157600548193895", "photo_flickr_id": "658667355", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "44722", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was really cold this day , but i still found a good picture of the scenery .", "storylet_id": "223613"}], [{"original_text": "It was kind of dark in this restaurant, but the food was great!", "album_id": "72157600548193895", "photo_flickr_id": "659520178", "setting": "last-3-pick-old-and-tell", "worker_id": "KYGVIBI0XNAVRC5", "story_id": "44722", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was kind of dark in this restaurant , but the food was great !", "storylet_id": "223614"}], [{"original_text": "He's taking a photo with some beautiful buildings behind him.", "album_id": "72157600548193895", "photo_flickr_id": "659521272", "setting": "last-3-pick-old-and-tell", "worker_id": "UL9DJEZ087IRN17", "story_id": "44723", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he 's taking a photo with some beautiful buildings behind him .", "storylet_id": "223615"}], [{"original_text": "There's several people admiring the beautiful building in the background.", "album_id": "72157600548193895", "photo_flickr_id": "659518734", "setting": "last-3-pick-old-and-tell", "worker_id": "UL9DJEZ087IRN17", "story_id": "44723", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there 's several people admiring the beautiful building in the background .", "storylet_id": "223616"}], [{"original_text": "Some beautiful are is displayed on the ceiling.", "album_id": "72157600548193895", "photo_flickr_id": "658667171", "setting": "last-3-pick-old-and-tell", "worker_id": "UL9DJEZ087IRN17", "story_id": "44723", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some beautiful are is displayed on the ceiling .", "storylet_id": "223617"}], [{"original_text": "People walking through town sightseeing.", "album_id": "72157600548193895", "photo_flickr_id": "658667355", "setting": "last-3-pick-old-and-tell", "worker_id": "UL9DJEZ087IRN17", "story_id": "44723", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people walking through town sightseeing .", "storylet_id": "223618"}], [{"original_text": "A few friends are having a bite to eat.", "album_id": "72157600548193895", "photo_flickr_id": "659520178", "setting": "last-3-pick-old-and-tell", "worker_id": "UL9DJEZ087IRN17", "story_id": "44723", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a few friends are having a bite to eat .", "storylet_id": "223619"}], [{"original_text": "Our trip to Europe was amazing.", "album_id": "72157600548193895", "photo_flickr_id": "659521272", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44724", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip to location was amazing .", "storylet_id": "223620"}], [{"original_text": "We got to see so many historic buildings.", "album_id": "72157600548193895", "photo_flickr_id": "659518734", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44724", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to see so many historic buildings .", "storylet_id": "223621"}], [{"original_text": "The artwork was so stunning to see in person.", "album_id": "72157600548193895", "photo_flickr_id": "658667171", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44724", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the artwork was so stunning to see in person .", "storylet_id": "223622"}], [{"original_text": "The cities were so beautiful and full of life.", "album_id": "72157600548193895", "photo_flickr_id": "658667355", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44724", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cities were so beautiful and full of life .", "storylet_id": "223623"}], [{"original_text": "We had such a great time on our trip!", "album_id": "72157600548193895", "photo_flickr_id": "659520178", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44724", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had such a great time on our trip !", "storylet_id": "223624"}], [{"original_text": "Rather than starve to death me and my roommates learned to cook.", "album_id": "23927", "photo_flickr_id": "929665", "setting": "first-2-pick-and-tell", "worker_id": "9Q8J207DL2XISJD", "story_id": "44725", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "rather than starve to death me and my roommates learned to cook .", "storylet_id": "223625"}], [{"original_text": "It was no easy task.", "album_id": "23927", "photo_flickr_id": "929669", "setting": "first-2-pick-and-tell", "worker_id": "9Q8J207DL2XISJD", "story_id": "44725", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was no easy task .", "storylet_id": "223626"}], [{"original_text": "Neither is cleaning up the mess.", "album_id": "23927", "photo_flickr_id": "929673", "setting": "first-2-pick-and-tell", "worker_id": "9Q8J207DL2XISJD", "story_id": "44725", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "neither is cleaning up the mess .", "storylet_id": "223627"}], [{"original_text": "But eating is easy so we try our best.", "album_id": "23927", "photo_flickr_id": "929678", "setting": "first-2-pick-and-tell", "worker_id": "9Q8J207DL2XISJD", "story_id": "44725", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but eating is easy so we try our best .", "storylet_id": "223628"}], [{"original_text": "Eating and posing for photos is what we do best.", "album_id": "23927", "photo_flickr_id": "929684", "setting": "first-2-pick-and-tell", "worker_id": "9Q8J207DL2XISJD", "story_id": "44725", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eating and posing for photos is what we do best .", "storylet_id": "223629"}], [{"original_text": "This is Timothy with his roommates, Edgar and John ", "album_id": "23927", "photo_flickr_id": "929594", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44726", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is [male] with his roommates , [male] and [male]", "storylet_id": "223630"}], [{"original_text": "Edgar likes to cook for the three. ", "album_id": "23927", "photo_flickr_id": "929678", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44726", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] likes to cook for the three .", "storylet_id": "223631"}], [{"original_text": "John works in this clothing store to help pay rent. ", "album_id": "23927", "photo_flickr_id": "929508", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44726", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] works in this clothing store to help pay rent .", "storylet_id": "223632"}], [{"original_text": "They live in this dormitory near the college. ", "album_id": "23927", "photo_flickr_id": "929747", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44726", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they live in this dormitory near the college .", "storylet_id": "223633"}], [{"original_text": "This statue sits outside the dorm in remembrance of a terrible tragedy that took place in 1945. ", "album_id": "23927", "photo_flickr_id": "929752", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44726", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this statue sits outside the dorm in remembrance of a terrible tragedy that took place in 1945 .", "storylet_id": "223634"}], [{"original_text": "These boys tried to test their cooking prowess.", "album_id": "23927", "photo_flickr_id": "929665", "setting": "last-3-pick-old-and-tell", "worker_id": "YW6ANS49G3D7PVF", "story_id": "44727", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these boys tried to test their cooking prowess .", "storylet_id": "223635"}], [{"original_text": "Excited to be living on their own, they assumed they would have no problem making grown up food.", "album_id": "23927", "photo_flickr_id": "929669", "setting": "last-3-pick-old-and-tell", "worker_id": "YW6ANS49G3D7PVF", "story_id": "44727", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "excited to be living on their own , they assumed they would have no problem making grown up food .", "storylet_id": "223636"}], [{"original_text": "They started throwing ingredients in a pan and hoped for the best.", "album_id": "23927", "photo_flickr_id": "929673", "setting": "last-3-pick-old-and-tell", "worker_id": "YW6ANS49G3D7PVF", "story_id": "44727", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they started throwing ingredients in a pan and hoped for the best .", "storylet_id": "223637"}], [{"original_text": "They were proud of their creation.", "album_id": "23927", "photo_flickr_id": "929678", "setting": "last-3-pick-old-and-tell", "worker_id": "YW6ANS49G3D7PVF", "story_id": "44727", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were proud of their creation .", "storylet_id": "223638"}], [{"original_text": "So proud. Then they probably ordered pizza.", "album_id": "23927", "photo_flickr_id": "929684", "setting": "last-3-pick-old-and-tell", "worker_id": "YW6ANS49G3D7PVF", "story_id": "44727", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so proud . then they probably ordered pizza .", "storylet_id": "223639"}], [{"original_text": "Good morning, What do we have here? ", "album_id": "23927", "photo_flickr_id": "929665", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "44728", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "good morning , what do we have here ?", "storylet_id": "223640"}], [{"original_text": "Chef curry with the pot! ", "album_id": "23927", "photo_flickr_id": "929669", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "44728", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "chef curry with the pot !", "storylet_id": "223641"}], [{"original_text": "Looks both healthy and delicious. ", "album_id": "23927", "photo_flickr_id": "929673", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "44728", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looks both healthy and delicious .", "storylet_id": "223642"}], [{"original_text": "Everyone agrees it smells amazing. ", "album_id": "23927", "photo_flickr_id": "929678", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "44728", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone agrees it smells amazing .", "storylet_id": "223643"}], [{"original_text": "Last shot before it gets devoured. ", "album_id": "23927", "photo_flickr_id": "929684", "setting": "last-3-pick-old-and-tell", "worker_id": "NICDFW0CSLH8YQ9", "story_id": "44728", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last shot before it gets devoured .", "storylet_id": "223644"}], [{"original_text": "A group of college students decided to cook their first meal in their new apartment.", "album_id": "23927", "photo_flickr_id": "929665", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44729", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of college students decided to cook their first meal in their new apartment .", "storylet_id": "223645"}], [{"original_text": "They weren't really sure what they were doing.", "album_id": "23927", "photo_flickr_id": "929669", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44729", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were n't really sure what they were doing .", "storylet_id": "223646"}], [{"original_text": "They just winged the entire meal.", "album_id": "23927", "photo_flickr_id": "929673", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44729", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they just winged the entire meal .", "storylet_id": "223647"}], [{"original_text": "It turned out good though and they were so proud.", "album_id": "23927", "photo_flickr_id": "929678", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44729", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it turned out good though and they were so proud .", "storylet_id": "223648"}], [{"original_text": "They even documented the results!", "album_id": "23927", "photo_flickr_id": "929684", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44729", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even documented the results !", "storylet_id": "223649"}], [{"original_text": "It took about 30 minutes to get the hot air balloon ready.", "album_id": "72157601615188284", "photo_flickr_id": "1216601225", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44730", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it took about 30 minutes to get the hot air balloon ready .", "storylet_id": "223650"}], [{"original_text": "We filled the balloon and got ready for our first trip together.", "album_id": "72157601615188284", "photo_flickr_id": "1217466252", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44730", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we filled the balloon and got ready for our first trip together .", "storylet_id": "223651"}], [{"original_text": "As the balloon took off I could see mom waving down below.", "album_id": "72157601615188284", "photo_flickr_id": "1216601585", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44730", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as the balloon took off i could see mom waving down below .", "storylet_id": "223652"}], [{"original_text": "As we got higher we noticed the neighbors got their balloon up and flying too.", "album_id": "72157601615188284", "photo_flickr_id": "1216601483", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44730", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as we got higher we noticed the neighbors got their balloon up and flying too .", "storylet_id": "223653"}], [{"original_text": "I love this neighborhood!", "album_id": "72157601615188284", "photo_flickr_id": "1217466116", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44730", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love this neighborhood !", "storylet_id": "223654"}], [{"original_text": "We started early in the morning when we prepared for flight.", "album_id": "72157601615188284", "photo_flickr_id": "1217465798", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44731", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started early in the morning when we prepared for flight .", "storylet_id": "223655"}], [{"original_text": "While the sun was rising, we were elevating steadily.", "album_id": "72157601615188284", "photo_flickr_id": "1217465864", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44731", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while the sun was rising , we were elevating steadily .", "storylet_id": "223656"}], [{"original_text": "We reached a decent height about ten minutes.", "album_id": "72157601615188284", "photo_flickr_id": "1216600891", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44731", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we reached a decent height about ten minutes .", "storylet_id": "223657"}], [{"original_text": "When we got back to the ground, our manager helped us dismantle.", "album_id": "72157601615188284", "photo_flickr_id": "1217466252", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44731", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we got back to the ground , our manager helped us dismantle .", "storylet_id": "223658"}], [{"original_text": "He is a really smart and capable man.", "album_id": "72157601615188284", "photo_flickr_id": "1216601225", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44731", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he is a really smart and capable man .", "storylet_id": "223659"}], [{"original_text": "Early morning, time to get the hot air balloon ready for the ride.", "album_id": "72157601615188284", "photo_flickr_id": "1216601225", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "44732", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "early morning , time to get the hot air balloon ready for the ride .", "storylet_id": "223660"}], [{"original_text": "Almost ready, just a little more to go.", "album_id": "72157601615188284", "photo_flickr_id": "1217466252", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "44732", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "almost ready , just a little more to go .", "storylet_id": "223661"}], [{"original_text": "The first balloon of the day is in the air.", "album_id": "72157601615188284", "photo_flickr_id": "1216601585", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "44732", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first balloon of the day is in the air .", "storylet_id": "223662"}], [{"original_text": "There go two more; can't wait to join them.", "album_id": "72157601615188284", "photo_flickr_id": "1216601483", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "44732", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there go two more ; ca n't wait to join them .", "storylet_id": "223663"}], [{"original_text": "Here we go, time to take off and join the group for a fun balloon ride!", "album_id": "72157601615188284", "photo_flickr_id": "1217466116", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "44732", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here we go , time to take off and join the group for a fun balloon ride !", "storylet_id": "223664"}], [{"original_text": "We went to the balloon festival.", "album_id": "72157601615188284", "photo_flickr_id": "1216601225", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44733", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the balloon festival .", "storylet_id": "223665"}], [{"original_text": "We set up the balloons ", "album_id": "72157601615188284", "photo_flickr_id": "1217466252", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44733", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we set up the balloons", "storylet_id": "223666"}], [{"original_text": "They soared over the houses.", "album_id": "72157601615188284", "photo_flickr_id": "1216601585", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44733", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they soared over the houses .", "storylet_id": "223667"}], [{"original_text": "There was even a football shaped one.", "album_id": "72157601615188284", "photo_flickr_id": "1216601483", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44733", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was even a football shaped one .", "storylet_id": "223668"}], [{"original_text": "People came out to see all the balloons floating in the sky.", "album_id": "72157601615188284", "photo_flickr_id": "1217466116", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44733", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people came out to see all the balloons floating in the sky .", "storylet_id": "223669"}], [{"original_text": "The man prepares his ballon.", "album_id": "72157601615188284", "photo_flickr_id": "1216601225", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44734", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man prepares his ballon .", "storylet_id": "223670"}], [{"original_text": "He is blowing it up now.", "album_id": "72157601615188284", "photo_flickr_id": "1217466252", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44734", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he is blowing it up now .", "storylet_id": "223671"}], [{"original_text": "It is going up in the air.", "album_id": "72157601615188284", "photo_flickr_id": "1216601585", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44734", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it is going up in the air .", "storylet_id": "223672"}], [{"original_text": "Two are flying up there now.", "album_id": "72157601615188284", "photo_flickr_id": "1216601483", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44734", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two are flying up there now .", "storylet_id": "223673"}], [{"original_text": "They are going on a journey.", "album_id": "72157601615188284", "photo_flickr_id": "1217466116", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "44734", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are going on a journey .", "storylet_id": "223674"}], [{"original_text": "We woke up in the morning to a marvelous hotel site.", "album_id": "59650", "photo_flickr_id": "2370939", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44735", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we woke up in the morning to a marvelous hotel site .", "storylet_id": "223675"}], [{"original_text": "We were above a lake in our room.", "album_id": "59650", "photo_flickr_id": "2371122", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44735", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were above a lake in our room .", "storylet_id": "223676"}], [{"original_text": "The grand hotel had three floors.", "album_id": "59650", "photo_flickr_id": "2371127", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44735", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the grand hotel had three floors .", "storylet_id": "223677"}], [{"original_text": "It even had an ancient guard tower.", "album_id": "59650", "photo_flickr_id": "2371258", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44735", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it even had an ancient guard tower .", "storylet_id": "223678"}], [{"original_text": "The entrance to the hotel was very broad and open.", "album_id": "59650", "photo_flickr_id": "2371470", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44735", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the entrance to the hotel was very broad and open .", "storylet_id": "223679"}], [{"original_text": "On a recent trip to China, the tourists saw many traditional Chinese attractions, including this temple.", "album_id": "59650", "photo_flickr_id": "2370939", "setting": "first-2-pick-and-tell", "worker_id": "6THOHXS7X188F3O", "story_id": "44736", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on a recent trip to location , the tourists saw many traditional chinese attractions , including this temple .", "storylet_id": "223680"}], [{"original_text": "They were taken in some non traditional tours, such as through this river.", "album_id": "59650", "photo_flickr_id": "2371128", "setting": "first-2-pick-and-tell", "worker_id": "6THOHXS7X188F3O", "story_id": "44736", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were taken in some non traditional tours , such as through this river .", "storylet_id": "223681"}], [{"original_text": "The river was very narrow is areas, with lots of vegetation.", "album_id": "59650", "photo_flickr_id": "2371261", "setting": "first-2-pick-and-tell", "worker_id": "6THOHXS7X188F3O", "story_id": "44736", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the river was very narrow is areas , with lots of vegetation .", "storylet_id": "223682"}], [{"original_text": "There were trails to explore, and old, creaking bridges to cross.", "album_id": "59650", "photo_flickr_id": "2371468", "setting": "first-2-pick-and-tell", "worker_id": "6THOHXS7X188F3O", "story_id": "44736", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were trails to explore , and old , creaking bridges to cross .", "storylet_id": "223683"}], [{"original_text": "Once they returned from the wilderness adventure, they had the opportunities to visit many more building and structures.", "album_id": "59650", "photo_flickr_id": "2371470", "setting": "first-2-pick-and-tell", "worker_id": "6THOHXS7X188F3O", "story_id": "44736", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once they returned from the wilderness adventure , they had the opportunities to visit many more building and structures .", "storylet_id": "223684"}], [{"original_text": "I went on vacation last week in Asia.", "album_id": "59650", "photo_flickr_id": "2370939", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44737", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on vacation last week in location .", "storylet_id": "223685"}], [{"original_text": "It was a beautiful place. I went riding down the rivers.", "album_id": "59650", "photo_flickr_id": "2371128", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44737", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a beautiful place . i went riding down the rivers .", "storylet_id": "223686"}], [{"original_text": "They were really long.", "album_id": "59650", "photo_flickr_id": "2371261", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44737", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were really long .", "storylet_id": "223687"}], [{"original_text": "There were also some beautiful walking trails.", "album_id": "59650", "photo_flickr_id": "2371468", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44737", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also some beautiful walking trails .", "storylet_id": "223688"}], [{"original_text": "I had a great time while I was there.", "album_id": "59650", "photo_flickr_id": "2371470", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44737", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time while i was there .", "storylet_id": "223689"}], [{"original_text": "Mom thought this was the most beautiful sight.", "album_id": "59650", "photo_flickr_id": "2370939", "setting": "last-3-pick-old-and-tell", "worker_id": "MVGF0ZRCQLRDEDH", "story_id": "44738", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom thought this was the most beautiful sight .", "storylet_id": "223690"}], [{"original_text": "The kids loved how they could see the reflections in the water.", "album_id": "59650", "photo_flickr_id": "2371122", "setting": "last-3-pick-old-and-tell", "worker_id": "MVGF0ZRCQLRDEDH", "story_id": "44738", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids loved how they could see the reflections in the water .", "storylet_id": "223691"}], [{"original_text": "Dad was very interested in the designs of the various buildings.", "album_id": "59650", "photo_flickr_id": "2371127", "setting": "last-3-pick-old-and-tell", "worker_id": "MVGF0ZRCQLRDEDH", "story_id": "44738", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad was very interested in the designs of the various buildings .", "storylet_id": "223692"}], [{"original_text": "We all wondered how did anyone get up there.", "album_id": "59650", "photo_flickr_id": "2371258", "setting": "last-3-pick-old-and-tell", "worker_id": "MVGF0ZRCQLRDEDH", "story_id": "44738", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all wondered how did anyone get up there .", "storylet_id": "223693"}], [{"original_text": "Grandma thought that is was so mystical.", "album_id": "59650", "photo_flickr_id": "2371470", "setting": "last-3-pick-old-and-tell", "worker_id": "MVGF0ZRCQLRDEDH", "story_id": "44738", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "grandma thought that is was so mystical .", "storylet_id": "223694"}], [{"original_text": "I made a trip to China with my family last summer.", "album_id": "59650", "photo_flickr_id": "2370939", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "44739", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i made a trip to location with my family last summer .", "storylet_id": "223695"}], [{"original_text": "This building was set on a pretty man made lake.", "album_id": "59650", "photo_flickr_id": "2371122", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "44739", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this building was set on a pretty man made lake .", "storylet_id": "223696"}], [{"original_text": "Here is part of a temple that I found interesting.", "album_id": "59650", "photo_flickr_id": "2371127", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "44739", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is part of a temple that i found interesting .", "storylet_id": "223697"}], [{"original_text": "This temple was hidden among the brush.", "album_id": "59650", "photo_flickr_id": "2371258", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "44739", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this temple was hidden among the brush .", "storylet_id": "223698"}], [{"original_text": "Here is something like an arch that I thought was quick unique to Chinese culture.", "album_id": "59650", "photo_flickr_id": "2371470", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "44739", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is something like an arch that i thought was quick unique to chinese culture .", "storylet_id": "223699"}], [{"original_text": "That day was really snowy but I had to work.", "album_id": "60424", "photo_flickr_id": "2403216", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44740", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "that day was really snowy but i had to work .", "storylet_id": "223700"}], [{"original_text": "I put my earphones in and then I went with a bright attitude.", "album_id": "60424", "photo_flickr_id": "2403232", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44740", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i put my earphones in and then i went with a bright attitude .", "storylet_id": "223701"}], [{"original_text": "I rode the bus to my job and got there early.", "album_id": "60424", "photo_flickr_id": "2413448", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44740", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i rode the bus to my job and got there early .", "storylet_id": "223702"}], [{"original_text": "My meeting was starting as I arrived.", "album_id": "60424", "photo_flickr_id": "2403257", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44740", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my meeting was starting as i arrived .", "storylet_id": "223703"}], [{"original_text": "At the end of the day, my husband presented me with a rose because he loves me.", "album_id": "60424", "photo_flickr_id": "2406908", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44740", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , my husband presented me with a rose because he loves me .", "storylet_id": "223704"}], [{"original_text": "I took a photo of her shoulder.", "album_id": "60424", "photo_flickr_id": "2403232", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44741", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a photo of her shoulder .", "storylet_id": "223705"}], [{"original_text": "Then a shot of the bus stop.", "album_id": "60424", "photo_flickr_id": "2403542", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44741", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then a shot of the bus stop .", "storylet_id": "223706"}], [{"original_text": "There was a flower.", "album_id": "60424", "photo_flickr_id": "2406908", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44741", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a flower .", "storylet_id": "223707"}], [{"original_text": "It was red.", "album_id": "60424", "photo_flickr_id": "2406891", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44741", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was red .", "storylet_id": "223708"}], [{"original_text": "Then it got really dark.", "album_id": "60424", "photo_flickr_id": "2406863", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "44741", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then it got really dark .", "storylet_id": "223709"}], [{"original_text": "It was around Christmas time when I was waiting for the bus.", "album_id": "60424", "photo_flickr_id": "2403232", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44742", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was around christmas time when i was waiting for the bus .", "storylet_id": "223710"}], [{"original_text": "The weather was cold and snowy.", "album_id": "60424", "photo_flickr_id": "2403542", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44742", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the weather was cold and snowy .", "storylet_id": "223711"}], [{"original_text": "When I got home, I had flowers waiting from an admirer.", "album_id": "60424", "photo_flickr_id": "2406908", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44742", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when i got home , i had flowers waiting from an admirer .", "storylet_id": "223712"}], [{"original_text": "They were very pretty.", "album_id": "60424", "photo_flickr_id": "2406891", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44742", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were very pretty .", "storylet_id": "223713"}], [{"original_text": "The town Christmas tree was brightly lit in the town square.", "album_id": "60424", "photo_flickr_id": "2406863", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44742", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the town christmas tree was brightly lit in the town square .", "storylet_id": "223714"}], [{"original_text": "It was snowing today.", "album_id": "60424", "photo_flickr_id": "2403216", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "44743", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was snowing today .", "storylet_id": "223715"}], [{"original_text": "My girlfriend was wearing her fuzzy coat to keep warm on the way to work.", "album_id": "60424", "photo_flickr_id": "2403232", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "44743", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my girlfriend was wearing her fuzzy coat to keep warm on the way to work .", "storylet_id": "223716"}], [{"original_text": "We rode a bus there.", "album_id": "60424", "photo_flickr_id": "2413448", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "44743", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we rode a bus there .", "storylet_id": "223717"}], [{"original_text": "When we arrived, there was a meeting that had just started.", "album_id": "60424", "photo_flickr_id": "2403257", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "44743", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we arrived , there was a meeting that had just started .", "storylet_id": "223718"}], [{"original_text": "Our company needed to write an ad for a floral delivery service.", "album_id": "60424", "photo_flickr_id": "2406908", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "44743", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our company needed to write an ad for a floral delivery service .", "storylet_id": "223719"}], [{"original_text": "It was a snowy day and I didn't have to go to work.", "album_id": "60424", "photo_flickr_id": "2403216", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "44744", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a snowy day and i did n't have to go to work .", "storylet_id": "223720"}], [{"original_text": "I decided to go on a walk while listening to music.", "album_id": "60424", "photo_flickr_id": "2403232", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "44744", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i decided to go on a walk while listening to music .", "storylet_id": "223721"}], [{"original_text": "I went to a restaurant and ate some food.", "album_id": "60424", "photo_flickr_id": "2413448", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "44744", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i went to a restaurant and ate some food .", "storylet_id": "223722"}], [{"original_text": "Later, I went to a meeting with some friends.", "album_id": "60424", "photo_flickr_id": "2403257", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "44744", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later , i went to a meeting with some friends .", "storylet_id": "223723"}], [{"original_text": "We talked about flowers.", "album_id": "60424", "photo_flickr_id": "2406908", "setting": "last-3-pick-old-and-tell", "worker_id": "SX250D293RAW9AZ", "story_id": "44744", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we talked about flowers .", "storylet_id": "223724"}], [{"original_text": "Let's go skating through Manhattan.", "album_id": "66378", "photo_flickr_id": "2640275", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44745", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "let 's go skating through location .", "storylet_id": "223725"}], [{"original_text": "Good times dodging cabbies in Times Square.", "album_id": "66378", "photo_flickr_id": "2640305", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44745", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "good times dodging cabbies in location location .", "storylet_id": "223726"}], [{"original_text": "Riding through Midtown.", "album_id": "66378", "photo_flickr_id": "2640349", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44745", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "riding through location .", "storylet_id": "223727"}], [{"original_text": "No buses in the bus lane. It's the skating lane now.", "album_id": "66378", "photo_flickr_id": "2640638", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44745", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "no buses in the bus lane . it 's the skating lane now .", "storylet_id": "223728"}], [{"original_text": "Keep on the line and we don't get hit.", "album_id": "66378", "photo_flickr_id": "2640658", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44745", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "keep on the line and we do n't get hit .", "storylet_id": "223729"}], [{"original_text": "When we went to the big city we decided to go skateboarding.", "album_id": "66378", "photo_flickr_id": "2640275", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44746", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when we went to the big city we decided to go skateboarding .", "storylet_id": "223730"}], [{"original_text": "My friend got awfully close to the cars but they didn't seem to mind.", "album_id": "66378", "photo_flickr_id": "2640305", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44746", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friend got awfully close to the cars but they did n't seem to mind .", "storylet_id": "223731"}], [{"original_text": "Most of the day it was cloudy but it did not rain on our fun.", "album_id": "66378", "photo_flickr_id": "2640349", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44746", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most of the day it was cloudy but it did not rain on our fun .", "storylet_id": "223732"}], [{"original_text": "I stood next to this courthouse with a giant lion for a photo.", "album_id": "66378", "photo_flickr_id": "2640390", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44746", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i stood next to this courthouse with a giant lion for a photo .", "storylet_id": "223733"}], [{"original_text": "My friend went with his hands behind his back for this shot.", "album_id": "66378", "photo_flickr_id": "2640658", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44746", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my friend went with his hands behind his back for this shot .", "storylet_id": "223734"}], [{"original_text": "There are often skateboarders on the city streets.", "album_id": "66378", "photo_flickr_id": "2640275", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44747", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are often skateboarders on the city streets .", "storylet_id": "223735"}], [{"original_text": "This might be a bit too dangerous.", "album_id": "66378", "photo_flickr_id": "2640305", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44747", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this might be a bit too dangerous .", "storylet_id": "223736"}], [{"original_text": "This man is ready to start exploring the city on his skateboard.", "album_id": "66378", "photo_flickr_id": "2640349", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44747", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this man is ready to start exploring the city on his skateboard .", "storylet_id": "223737"}], [{"original_text": "He stops to do a little sight-seeing.", "album_id": "66378", "photo_flickr_id": "2640390", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44747", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he stops to do a little sight-seeing .", "storylet_id": "223738"}], [{"original_text": "This skateboarder has the street all to himself.", "album_id": "66378", "photo_flickr_id": "2640658", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44747", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this skateboarder has the street all to himself .", "storylet_id": "223739"}], [{"original_text": "I got on my skateboard yesterday to ride around town and take some pictures.", "album_id": "66378", "photo_flickr_id": "2640275", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44748", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got on my skateboard yesterday to ride around town and take some pictures .", "storylet_id": "223740"}], [{"original_text": "I was in the fast lane.", "album_id": "66378", "photo_flickr_id": "2640305", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44748", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was in the fast lane .", "storylet_id": "223741"}], [{"original_text": "I also did some tricks in the intersection.", "album_id": "66378", "photo_flickr_id": "2640349", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44748", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also did some tricks in the intersection .", "storylet_id": "223742"}], [{"original_text": "There were many cars on the road at the time.", "album_id": "66378", "photo_flickr_id": "2640638", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44748", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many cars on the road at the time .", "storylet_id": "223743"}], [{"original_text": "I decided to skateboard with them.", "album_id": "66378", "photo_flickr_id": "2640658", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44748", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to skateboard with them .", "storylet_id": "223744"}], [{"original_text": "Here is Ricky going to work on his skateboard.", "album_id": "66378", "photo_flickr_id": "2640275", "setting": "last-3-pick-old-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "44749", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is [male] going to work on his skateboard .", "storylet_id": "223745"}], [{"original_text": "Ricky enjoys weaving in and out of traffic.", "album_id": "66378", "photo_flickr_id": "2640305", "setting": "last-3-pick-old-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "44749", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] enjoys weaving in and out of traffic .", "storylet_id": "223746"}], [{"original_text": "Here is Ricky saying \"see how much I save not using a cab\".", "album_id": "66378", "photo_flickr_id": "2640349", "setting": "last-3-pick-old-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "44749", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is [male] saying `` see how much i save not using a cab '' .", "storylet_id": "223747"}], [{"original_text": "Ricky is going to get caught one day using the bus lane.", "album_id": "66378", "photo_flickr_id": "2640638", "setting": "last-3-pick-old-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "44749", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] is going to get caught one day using the bus lane .", "storylet_id": "223748"}], [{"original_text": "Ricky still has several blocks to go before he gets to work.", "album_id": "66378", "photo_flickr_id": "2640658", "setting": "last-3-pick-old-and-tell", "worker_id": "9W39G99WI731O5U", "story_id": "44749", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] still has several blocks to go before he gets to work .", "storylet_id": "223749"}], [{"original_text": "The shoreline was gorgeous in the morning.", "album_id": "68554", "photo_flickr_id": "2718926", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44750", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the shoreline was gorgeous in the morning .", "storylet_id": "223750"}], [{"original_text": "The house was well maintained and proper.", "album_id": "68554", "photo_flickr_id": "2719097", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44750", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the house was well maintained and proper .", "storylet_id": "223751"}], [{"original_text": "We approached the house on a long roadway.", "album_id": "68554", "photo_flickr_id": "2718948", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44750", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we approached the house on a long roadway .", "storylet_id": "223752"}], [{"original_text": "When we got closer, we were greeted by this walkway.", "album_id": "68554", "photo_flickr_id": "2718993", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44750", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we got closer , we were greeted by this walkway .", "storylet_id": "223753"}], [{"original_text": "When inside, we realized how elegant it was.", "album_id": "68554", "photo_flickr_id": "2719088", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44750", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when inside , we realized how elegant it was .", "storylet_id": "223754"}], [{"original_text": "Marty said his home was just beyond the castle walls.", "album_id": "68554", "photo_flickr_id": "2719037", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44751", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] said his home was just beyond the castle walls .", "storylet_id": "223755"}], [{"original_text": "As we traveled down the path to the castle we could not help but to wonder how Marty came to live in such a place.", "album_id": "68554", "photo_flickr_id": "2719041", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44751", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as we traveled down the path to the castle we could not help but to wonder how [male] came to live in such a place .", "storylet_id": "223756"}], [{"original_text": "We eventually came to the stairwell and was nearly too afraid to travel down.", "album_id": "68554", "photo_flickr_id": "2719062", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44751", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we eventually came to the stairwell and was nearly too afraid to travel down .", "storylet_id": "223757"}], [{"original_text": "It lead to an opening in the castle where we would soon find Marty's home.", "album_id": "68554", "photo_flickr_id": "2718993", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44751", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it lead to an opening in the castle where we would soon find [male] 's home .", "storylet_id": "223758"}], [{"original_text": "Finally, we found the quite mansion tucked quietly where he could not be disturbed.", "album_id": "68554", "photo_flickr_id": "2718933", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44751", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , we found the quite mansion tucked quietly where he could not be disturbed .", "storylet_id": "223759"}], [{"original_text": "This building was built in medieval times.", "album_id": "68554", "photo_flickr_id": "2719037", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44752", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this building was built in medieval times .", "storylet_id": "223760"}], [{"original_text": "This lane as seen many travelers over the years.", "album_id": "68554", "photo_flickr_id": "2719041", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44752", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this lane as seen many travelers over the years .", "storylet_id": "223761"}], [{"original_text": "Parts of the old building have been carefully uncovered and maintained in their original state.", "album_id": "68554", "photo_flickr_id": "2719062", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44752", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "parts of the old building have been carefully uncovered and maintained in their original state .", "storylet_id": "223762"}], [{"original_text": "This old arch was a common architectural element at the time.", "album_id": "68554", "photo_flickr_id": "2718993", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44752", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this old arch was a common architectural element at the time .", "storylet_id": "223763"}], [{"original_text": "Parts of this old structure have been rebuilt in modern times.", "album_id": "68554", "photo_flickr_id": "2718933", "setting": "last-3-pick-old-and-tell", "worker_id": "12YQ3KP30PXUCAE", "story_id": "44752", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "parts of this old structure have been rebuilt in modern times .", "storylet_id": "223764"}], [{"original_text": "When I was on vacation last week I had a great view of the ocean.", "album_id": "68554", "photo_flickr_id": "2718926", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44753", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i was on vacation last week i had a great view of the ocean .", "storylet_id": "223765"}], [{"original_text": "I stayed at a beautiful resort.", "album_id": "68554", "photo_flickr_id": "2719097", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44753", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i stayed at a beautiful resort .", "storylet_id": "223766"}], [{"original_text": "The property was huge.", "album_id": "68554", "photo_flickr_id": "2718948", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44753", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the property was huge .", "storylet_id": "223767"}], [{"original_text": "There were many old buildings nearby.", "album_id": "68554", "photo_flickr_id": "2718993", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44753", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were many old buildings nearby .", "storylet_id": "223768"}], [{"original_text": "I had a lot of fun looking at all of them.", "album_id": "68554", "photo_flickr_id": "2719088", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44753", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a lot of fun looking at all of them .", "storylet_id": "223769"}], [{"original_text": "We traveled up river to see some of the abandoned buildings from centuries ago.", "album_id": "68554", "photo_flickr_id": "2718926", "setting": "last-3-pick-old-and-tell", "worker_id": "VKY8SXBM8AJSML6", "story_id": "44754", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we traveled up river to see some of the abandoned buildings from centuries ago .", "storylet_id": "223770"}], [{"original_text": "We couldn't believe the architecture. It's so much more impressive than modern buildings.", "album_id": "68554", "photo_flickr_id": "2719097", "setting": "last-3-pick-old-and-tell", "worker_id": "VKY8SXBM8AJSML6", "story_id": "44754", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we could n't believe the architecture . it 's so much more impressive than modern buildings .", "storylet_id": "223771"}], [{"original_text": "And the scale of the place was both immense and breathtaking.", "album_id": "68554", "photo_flickr_id": "2718948", "setting": "last-3-pick-old-and-tell", "worker_id": "VKY8SXBM8AJSML6", "story_id": "44754", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and the scale of the place was both immense and breathtaking .", "storylet_id": "223772"}], [{"original_text": "There were monuments and relics everywhere.", "album_id": "68554", "photo_flickr_id": "2718993", "setting": "last-3-pick-old-and-tell", "worker_id": "VKY8SXBM8AJSML6", "story_id": "44754", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were monuments and relics everywhere .", "storylet_id": "223773"}], [{"original_text": "And a couple of places were even fixed up and livable. ", "album_id": "68554", "photo_flickr_id": "2719088", "setting": "last-3-pick-old-and-tell", "worker_id": "VKY8SXBM8AJSML6", "story_id": "44754", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and a couple of places were even fixed up and livable .", "storylet_id": "223774"}], [{"original_text": "The hotel was built in a really nice and prehistoric fashion.", "album_id": "76558", "photo_flickr_id": "12630340", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44755", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the hotel was built in a really nice and prehistoric fashion .", "storylet_id": "223775"}], [{"original_text": "The tower across the street was immaculate.", "album_id": "76558", "photo_flickr_id": "12630328", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44755", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tower across the street was immaculate .", "storylet_id": "223776"}], [{"original_text": "The whole neighborhood felt like a wonderful old paradise.", "album_id": "76558", "photo_flickr_id": "12630254", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44755", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the whole neighborhood felt like a wonderful old paradise .", "storylet_id": "223777"}], [{"original_text": "We took a helicopter to get a sky view.", "album_id": "76558", "photo_flickr_id": "12630299", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44755", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a helicopter to get a sky view .", "storylet_id": "223778"}], [{"original_text": "Then when we landed, we walked the streets to our concert.", "album_id": "76558", "photo_flickr_id": "12630236", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "44755", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then when we landed , we walked the streets to our concert .", "storylet_id": "223779"}], [{"original_text": "The couple was taking a tour of the city.", "album_id": "76558", "photo_flickr_id": "12630340", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "44756", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple was taking a tour of the city .", "storylet_id": "223780"}], [{"original_text": "They found a beautiful view of the city in one building.", "album_id": "76558", "photo_flickr_id": "12630299", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "44756", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they found a beautiful view of the city in one building .", "storylet_id": "223781"}], [{"original_text": "They could see everything.", "album_id": "76558", "photo_flickr_id": "12630268", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "44756", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they could see everything .", "storylet_id": "223782"}], [{"original_text": "They also found some rustic buildings.", "album_id": "76558", "photo_flickr_id": "12630254", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "44756", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also found some rustic buildings .", "storylet_id": "223783"}], [{"original_text": "The streets were packed by midday.", "album_id": "76558", "photo_flickr_id": "12630236", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "44756", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the streets were packed by midday .", "storylet_id": "223784"}], [{"original_text": "The building in the city were a large tourist attraction.", "album_id": "76558", "photo_flickr_id": "12630340", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44757", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the building in the city were a large tourist attraction .", "storylet_id": "223785"}], [{"original_text": "People came from all over the continent to see the sights.", "album_id": "76558", "photo_flickr_id": "12630328", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44757", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people came from all over the continent to see the sights .", "storylet_id": "223786"}], [{"original_text": "Some of the buildings were really old.", "album_id": "76558", "photo_flickr_id": "12630254", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44757", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the buildings were really old .", "storylet_id": "223787"}], [{"original_text": "People would even take trips into the city from cruise ships.", "album_id": "76558", "photo_flickr_id": "12630299", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44757", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people would even take trips into the city from cruise ships .", "storylet_id": "223788"}], [{"original_text": "The town was a bustling area with a lot to do and see.", "album_id": "76558", "photo_flickr_id": "12630236", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44757", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the town was a bustling area with a lot to do and see .", "storylet_id": "223789"}], [{"original_text": "I took a trip to a foreign country.", "album_id": "76558", "photo_flickr_id": "12630340", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44758", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i took a trip to a foreign country .", "storylet_id": "223790"}], [{"original_text": "I arrived there on my cruise ship.", "album_id": "76558", "photo_flickr_id": "12630299", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44758", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i arrived there on my cruise ship .", "storylet_id": "223791"}], [{"original_text": "It was one of the biggest city's I have seen.", "album_id": "76558", "photo_flickr_id": "12630268", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44758", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was one of the biggest city 's i have seen .", "storylet_id": "223792"}], [{"original_text": "With amazing old architecture.", "album_id": "76558", "photo_flickr_id": "12630254", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44758", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with amazing old architecture .", "storylet_id": "223793"}], [{"original_text": "There was also awesome shopping!", "album_id": "76558", "photo_flickr_id": "12630236", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "44758", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was also awesome shopping !", "storylet_id": "223794"}], [{"original_text": "Visited this beautiful castle.", "album_id": "76558", "photo_flickr_id": "12630340", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44759", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visited this beautiful castle .", "storylet_id": "223795"}], [{"original_text": "The cruise ship docks at this old port.", "album_id": "76558", "photo_flickr_id": "12630299", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44759", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cruise ship docks at this old port .", "storylet_id": "223796"}], [{"original_text": "What a beautiful skyline this city has.", "album_id": "76558", "photo_flickr_id": "12630268", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44759", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what a beautiful skyline this city has .", "storylet_id": "223797"}], [{"original_text": "The remnants of this castle have been built out with a more modern building.", "album_id": "76558", "photo_flickr_id": "12630254", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44759", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the remnants of this castle have been built out with a more modern building .", "storylet_id": "223798"}], [{"original_text": "So many people walking. People don't walk like this in L.A.", "album_id": "76558", "photo_flickr_id": "12630236", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44759", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so many people walking . people do n't walk like this in location .", "storylet_id": "223799"}], [{"original_text": "We decided to visit the vienna during the fall.", "album_id": "80381", "photo_flickr_id": "3204983", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "44760", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to visit the vienna during the fall .", "storylet_id": "223800"}], [{"original_text": "There was a castle nearby, we decided to take a look at it.", "album_id": "80381", "photo_flickr_id": "3204964", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "44760", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a castle nearby , we decided to take a look at it .", "storylet_id": "223801"}], [{"original_text": "The path that we went to, was somewhat barren, but we managed.", "album_id": "80381", "photo_flickr_id": "3207623", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "44760", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the path that we went to , was somewhat barren , but we managed .", "storylet_id": "223802"}], [{"original_text": "This tree was particularly beautiful. We took many pictures around it.", "album_id": "80381", "photo_flickr_id": "3207893", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "44760", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this tree was particularly beautiful . we took many pictures around it .", "storylet_id": "223803"}], [{"original_text": "This was the tallest mountain in the day, and I'm glad to have visited it towards the end.", "album_id": "80381", "photo_flickr_id": "3207891", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "44760", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the tallest mountain in the day , and i 'm glad to have visited it towards the end .", "storylet_id": "223804"}], [{"original_text": "Billy loved traveling the world. Here he is at a beach in San Juan enjoying the breeze from the water.", "album_id": "80381", "photo_flickr_id": "3207615", "setting": "first-2-pick-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "44761", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] loved traveling the world . here he is at a beach in location location enjoying the breeze from the water .", "storylet_id": "223805"}], [{"original_text": "Here he is at the Pocono mountains. He visits his sister out there frequently. She loves for him to come and visit.", "album_id": "80381", "photo_flickr_id": "3207614", "setting": "first-2-pick-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "44761", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here he is at the location mountains . he visits his sister out there frequently . she loves for him to come and visit .", "storylet_id": "223806"}], [{"original_text": "Here is Billy at Wild Wood. He is having a great time at Wild Wood. He enjoys taking time off of work to go there and relax.", "album_id": "80381", "photo_flickr_id": "3207612", "setting": "first-2-pick-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "44761", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is [male] at wild wood . he is having a great time at location location . he enjoys taking time off of work to go there and relax .", "storylet_id": "223807"}], [{"original_text": "He also likes to visit the desert lands every once in awhile, when it is hot enough.", "album_id": "80381", "photo_flickr_id": "3207893", "setting": "first-2-pick-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "44761", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he also likes to visit the desert lands every once in awhile , when it is hot enough .", "storylet_id": "223808"}], [{"original_text": "At the end of every vacation Billy likes to go to the chapel for prayer and thanks God for the ability and finances to travel around the world.", "album_id": "80381", "photo_flickr_id": "3208569", "setting": "first-2-pick-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "44761", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of every vacation [male] likes to go to the chapel for prayer and thanks god for the ability and finances to travel around the world .", "storylet_id": "223809"}], [{"original_text": "The man's vacation started off on the right foot. He saw the beautiful Loch Ness.", "album_id": "80381", "photo_flickr_id": "3207615", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44762", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man 's vacation started off on the right foot . he saw the beautiful loch ness .", "storylet_id": "223810"}], [{"original_text": "From there, he took a hike up the surrounding hills and had a great view of the countryside.", "album_id": "80381", "photo_flickr_id": "3207614", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44762", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "from there , he took a hike up the surrounding hills and had a great view of the countryside .", "storylet_id": "223811"}], [{"original_text": "As he gets higher, he put on his jacket.", "album_id": "80381", "photo_flickr_id": "3207612", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44762", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as he gets higher , he put on his jacket .", "storylet_id": "223812"}], [{"original_text": "At the very top, he found a lonely tree, standing by itself at the summit.", "album_id": "80381", "photo_flickr_id": "3207893", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44762", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at the very top , he found a lonely tree , standing by itself at the summit .", "storylet_id": "223813"}], [{"original_text": "Feeling satisfied, he returns back to his hotel, with the unique door sculpture.", "album_id": "80381", "photo_flickr_id": "3208569", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "44762", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "feeling satisfied , he returns back to his hotel , with the unique door sculpture .", "storylet_id": "223814"}], [{"original_text": "On a trip through a quaint village.", "album_id": "80381", "photo_flickr_id": "3204983", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44763", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on a trip through a quaint village .", "storylet_id": "223815"}], [{"original_text": "With the ubiquitous church.", "album_id": "80381", "photo_flickr_id": "3204964", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44763", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "with the ubiquitous church .", "storylet_id": "223816"}], [{"original_text": "Just a dirt road going through the mountainside.", "album_id": "80381", "photo_flickr_id": "3207623", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44763", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "just a dirt road going through the mountainside .", "storylet_id": "223817"}], [{"original_text": "What a sight. This tree must get pummeled by the wind.", "album_id": "80381", "photo_flickr_id": "3207893", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44763", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "what a sight . this tree must get pummeled by the wind .", "storylet_id": "223818"}], [{"original_text": "Posing on the rocks. We hiked up to this majestic sight.", "album_id": "80381", "photo_flickr_id": "3207891", "setting": "last-3-pick-old-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "44763", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "posing on the rocks . we hiked up to this majestic sight .", "storylet_id": "223819"}], [{"original_text": "His vacation consisted of much hiking to beautiful locations.", "album_id": "80381", "photo_flickr_id": "3207615", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "44764", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "his vacation consisted of much hiking to beautiful locations .", "storylet_id": "223820"}], [{"original_text": "There were many opportunities for great pictures along the hikes.", "album_id": "80381", "photo_flickr_id": "3207614", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "44764", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many opportunities for great pictures along the hikes .", "storylet_id": "223821"}], [{"original_text": "It's too bad the clouds obscured the great view during this hike.", "album_id": "80381", "photo_flickr_id": "3207612", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "44764", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's too bad the clouds obscured the great view during this hike .", "storylet_id": "223822"}], [{"original_text": "Another beautiful walk out by the water and another great picture.", "album_id": "80381", "photo_flickr_id": "3207893", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "44764", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "another beautiful walk out by the water and another great picture .", "storylet_id": "223823"}], [{"original_text": "Time to head back for the night after another long day of hiking.", "album_id": "80381", "photo_flickr_id": "3208569", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "44764", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time to head back for the night after another long day of hiking .", "storylet_id": "223824"}], [{"original_text": "My family consists of my father my little brother, and little sister who you can see in this picture posing with their Christmas gifts during our favorite season. ", "album_id": "72157601372126730", "photo_flickr_id": "1085193319", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44765", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family consists of my father my little brother , and little sister who you can see in this picture posing with their christmas gifts during our favorite season .", "storylet_id": "223825"}], [{"original_text": "My father often ends up helping his baby girl put together her gift on Christmas as most fathers do but he loves it as he does her.", "album_id": "72157601372126730", "photo_flickr_id": "1085193461", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44765", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my father often ends up helping his baby girl put together her gift on christmas as most fathers do but he loves it as he does her .", "storylet_id": "223826"}], [{"original_text": "I am the the oldest and here you can see me posing for the camera beside the family car cracking a smile for the camera.", "album_id": "72157601372126730", "photo_flickr_id": "1086055114", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44765", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i am the the oldest and here you can see me posing for the camera beside the family car cracking a smile for the camera .", "storylet_id": "223827"}], [{"original_text": "I feel like we are the typical American family that goes to church on Sunday and gives thanks for the blessings that he provides to us.", "album_id": "72157601372126730", "photo_flickr_id": "1086054650", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44765", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i feel like we are the typical american family that goes to church on sunday and gives thanks for the blessings that he provides to us .", "storylet_id": "223828"}], [{"original_text": "This is what a typical landscape looks like where we live and we give thanks to God every day for the beauty that surrounds us just like we imagine most Americans wake up and do every day.", "album_id": "72157601372126730", "photo_flickr_id": "1085192457", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "44765", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is what a typical landscape looks like where we live and we give thanks to god every day for the beauty that surrounds us just like we imagine most americans wake up and do every day .", "storylet_id": "223829"}], [{"original_text": "We began our tour of the county on top the the overlook way above it all.", "album_id": "72157601372126730", "photo_flickr_id": "1086052386", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "44766", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we began our tour of the county on top the the overlook way above it all .", "storylet_id": "223830"}], [{"original_text": "Once we came down to the river, we saw an old fashioned riverboat.", "album_id": "72157601372126730", "photo_flickr_id": "1086053478", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "44766", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once we came down to the river , we saw an old fashioned riverboat .", "storylet_id": "223831"}], [{"original_text": "We also saw a historic sight where the first settlement in this area was.", "album_id": "72157601372126730", "photo_flickr_id": "1085192699", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "44766", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also saw a historic sight where the first settlement in this area was .", "storylet_id": "223832"}], [{"original_text": "The first church to be established here was still standing.", "album_id": "72157601372126730", "photo_flickr_id": "1086054650", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "44766", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the first church to be established here was still standing .", "storylet_id": "223833"}], [{"original_text": "Saint Luke Lutheran Church still has services every Sunday to this day.", "album_id": "72157601372126730", "photo_flickr_id": "1085193817", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "44766", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "organization organization organization organization still has services every sunday to this day .", "storylet_id": "223834"}], [{"original_text": "We had a great time opening all of our gifts", "album_id": "72157601372126730", "photo_flickr_id": "1085193319", "setting": "last-3-pick-old-and-tell", "worker_id": "Q55LUZZE59R9ZZB", "story_id": "44767", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a great time opening all of our gifts", "storylet_id": "223835"}], [{"original_text": "My daddy is opening his gift that I got him.", "album_id": "72157601372126730", "photo_flickr_id": "1085193461", "setting": "last-3-pick-old-and-tell", "worker_id": "Q55LUZZE59R9ZZB", "story_id": "44767", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my daddy is opening his gift that i got him .", "storylet_id": "223836"}], [{"original_text": "Thats my oldest brother. He came home for Christmas.", "album_id": "72157601372126730", "photo_flickr_id": "1086055114", "setting": "last-3-pick-old-and-tell", "worker_id": "Q55LUZZE59R9ZZB", "story_id": "44767", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "thats my oldest brother . he came home for christmas .", "storylet_id": "223837"}], [{"original_text": "That is our church. We go every Sunday.", "album_id": "72157601372126730", "photo_flickr_id": "1086054650", "setting": "last-3-pick-old-and-tell", "worker_id": "Q55LUZZE59R9ZZB", "story_id": "44767", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that is our church . we go every sunday .", "storylet_id": "223838"}], [{"original_text": "This is a picture of how it looks behind our house.", "album_id": "72157601372126730", "photo_flickr_id": "1085192457", "setting": "last-3-pick-old-and-tell", "worker_id": "Q55LUZZE59R9ZZB", "story_id": "44767", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a picture of how it looks behind our house .", "storylet_id": "223839"}], [{"original_text": "There was a family who got together on Christmas.", "album_id": "72157601372126730", "photo_flickr_id": "1085193319", "setting": "last-3-pick-old-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44768", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a family who got together on christmas .", "storylet_id": "223840"}], [{"original_text": "They enjoyed opening gifts.", "album_id": "72157601372126730", "photo_flickr_id": "1085193461", "setting": "last-3-pick-old-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44768", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they enjoyed opening gifts .", "storylet_id": "223841"}], [{"original_text": "They took many pictures.", "album_id": "72157601372126730", "photo_flickr_id": "1086055114", "setting": "last-3-pick-old-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44768", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they took many pictures .", "storylet_id": "223842"}], [{"original_text": "Their house wasn't the biggest, but it did look nice.", "album_id": "72157601372126730", "photo_flickr_id": "1086054650", "setting": "last-3-pick-old-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44768", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their house was n't the biggest , but it did look nice .", "storylet_id": "223843"}], [{"original_text": "The view from the house was incredible.", "album_id": "72157601372126730", "photo_flickr_id": "1085192457", "setting": "last-3-pick-old-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "44768", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view from the house was incredible .", "storylet_id": "223844"}], [{"original_text": "The day started at home, like any other. ", "album_id": "72157601372126730", "photo_flickr_id": "1085193319", "setting": "last-3-pick-old-and-tell", "worker_id": "VKY8SXBM8AJSML6", "story_id": "44769", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the day started at home , like any other .", "storylet_id": "223845"}], [{"original_text": "But then everyone started to get excited.", "album_id": "72157601372126730", "photo_flickr_id": "1085193461", "setting": "last-3-pick-old-and-tell", "worker_id": "VKY8SXBM8AJSML6", "story_id": "44769", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but then everyone started to get excited .", "storylet_id": "223846"}], [{"original_text": "We couldn't wait to leave.", "album_id": "72157601372126730", "photo_flickr_id": "1086055114", "setting": "last-3-pick-old-and-tell", "worker_id": "VKY8SXBM8AJSML6", "story_id": "44769", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we could n't wait to leave .", "storylet_id": "223847"}], [{"original_text": "Hit the road and head toward the wilderness.", "album_id": "72157601372126730", "photo_flickr_id": "1086054650", "setting": "last-3-pick-old-and-tell", "worker_id": "VKY8SXBM8AJSML6", "story_id": "44769", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "hit the road and head toward the wilderness .", "storylet_id": "223848"}], [{"original_text": "And we were all jumping for joy when we finally arrived at our destination. ", "album_id": "72157601372126730", "photo_flickr_id": "1085192457", "setting": "last-3-pick-old-and-tell", "worker_id": "VKY8SXBM8AJSML6", "story_id": "44769", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and we were all jumping for joy when we finally arrived at our destination .", "storylet_id": "223849"}], [{"original_text": "My family and I got together to celebrate a religious moment in our lives.My daughter coming of age.We had a small meal during the ceremony.", "album_id": "1787892", "photo_flickr_id": "4387152", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44770", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family and i got together to celebrate a religious moment in our lives.my daughter coming of age.we had a small meal during the ceremony .", "storylet_id": "223850"}], [{"original_text": "The men in suits,my uncles,Were about to make a speech in honor of my daughter.", "album_id": "1787892", "photo_flickr_id": "4387177", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44770", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the men in suits , my uncles , were about to make a speech in honor of my daughter .", "storylet_id": "223851"}], [{"original_text": "A large room of mostly family and friends. There are other important people of our culture and community present as well.", "album_id": "1787892", "photo_flickr_id": "4387179", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44770", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a large room of mostly family and friends . there are other important people of our culture and community present as well .", "storylet_id": "223852"}], [{"original_text": "Everyone had a great time and most definitely enjoyed a great meal.", "album_id": "1787892", "photo_flickr_id": "4387187", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44770", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone had a great time and most definitely enjoyed a great meal .", "storylet_id": "223853"}], [{"original_text": "My brother,myself and my daughter dressed up in our traditional clothing.", "album_id": "1787892", "photo_flickr_id": "4387198", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "44770", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my brother , myself and my daughter dressed up in our traditional clothing .", "storylet_id": "223854"}], [{"original_text": "I went to the church last weekend for the party.", "album_id": "1787892", "photo_flickr_id": "4387132", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44771", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the church last weekend for the party .", "storylet_id": "223855"}], [{"original_text": "There were a ton of people there.", "album_id": "1787892", "photo_flickr_id": "4387179", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44771", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a ton of people there .", "storylet_id": "223856"}], [{"original_text": "They were all enjoying the good food there.", "album_id": "1787892", "photo_flickr_id": "4387187", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44771", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were all enjoying the good food there .", "storylet_id": "223857"}], [{"original_text": "Afterward I took some photos with my friends.", "album_id": "1787892", "photo_flickr_id": "4387268", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44771", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward i took some photos with my friends .", "storylet_id": "223858"}], [{"original_text": "We had a great time.", "album_id": "1787892", "photo_flickr_id": "4387272", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44771", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time .", "storylet_id": "223859"}], [{"original_text": "My brother was baptized at a Catholic church.", "album_id": "1787892", "photo_flickr_id": "4387132", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "44772", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brother was baptized at a catholic church .", "storylet_id": "223860"}], [{"original_text": "The baptism was attended by our extended family and friends.", "album_id": "1787892", "photo_flickr_id": "4387179", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "44772", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the baptism was attended by our extended family and friends .", "storylet_id": "223861"}], [{"original_text": "We had a dinner party afterwards.", "album_id": "1787892", "photo_flickr_id": "4387187", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "44772", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had a dinner party afterwards .", "storylet_id": "223862"}], [{"original_text": "My brother took pictures with different friends and relatives.", "album_id": "1787892", "photo_flickr_id": "4387268", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "44772", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my brother took pictures with different friends and relatives .", "storylet_id": "223863"}], [{"original_text": "My brother appeared to have a good time on this special day.", "album_id": "1787892", "photo_flickr_id": "4387272", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "44772", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my brother appeared to have a good time on this special day .", "storylet_id": "223864"}], [{"original_text": "The family celebrated in comfort, some opting to wear casual clothing.", "album_id": "1787892", "photo_flickr_id": "4387152", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "44773", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family celebrated in comfort , some opting to wear casual clothing .", "storylet_id": "223865"}], [{"original_text": "The speeches had taken a while, and everyone's stomachs were grumbling as they waited for them to be finished.", "album_id": "1787892", "photo_flickr_id": "4387177", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "44773", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the speeches had taken a while , and everyone 's stomachs were grumbling as they waited for them to be finished .", "storylet_id": "223866"}], [{"original_text": "Everyone was amazed at how many people showed up.", "album_id": "1787892", "photo_flickr_id": "4387179", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "44773", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was amazed at how many people showed up .", "storylet_id": "223867"}], [{"original_text": "Finally they could eat the delicious food that had been set in front of them.", "album_id": "1787892", "photo_flickr_id": "4387187", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "44773", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally they could eat the delicious food that had been set in front of them .", "storylet_id": "223868"}], [{"original_text": "The teens felt very special dressed in their best satin outfits.", "album_id": "1787892", "photo_flickr_id": "4387198", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "44773", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the teens felt very special dressed in their best satin outfits .", "storylet_id": "223869"}], [{"original_text": "We met at the Korean restaurant before the speeches.", "album_id": "1787892", "photo_flickr_id": "4387152", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "44774", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we met at the korean restaurant before the speeches .", "storylet_id": "223870"}], [{"original_text": "People gathered around and introduced themselves.", "album_id": "1787892", "photo_flickr_id": "4387177", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "44774", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people gathered around and introduced themselves .", "storylet_id": "223871"}], [{"original_text": "There was a sense of excitement in the air that day!", "album_id": "1787892", "photo_flickr_id": "4387179", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "44774", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a sense of excitement in the air that day !", "storylet_id": "223872"}], [{"original_text": "Here everyone is just absorbing the information they were given.", "album_id": "1787892", "photo_flickr_id": "4387187", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "44774", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here everyone is just absorbing the information they were given .", "storylet_id": "223873"}], [{"original_text": "That night we posed in he hallway of our hotel.", "album_id": "1787892", "photo_flickr_id": "4387198", "setting": "last-3-pick-old-and-tell", "worker_id": "637U97JMTMUZ7BX", "story_id": "44774", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that night we posed in he hallway of our hotel .", "storylet_id": "223874"}], [{"original_text": "Our trip to Germany included a side visit to an awesome little town.", "album_id": "72157601220425876", "photo_flickr_id": "1012268804", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "44775", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip to location included a side visit to an awesome little town .", "storylet_id": "223875"}], [{"original_text": "There were many old buildings, and some staircases that led to nowhere.", "album_id": "72157601220425876", "photo_flickr_id": "1012268988", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "44775", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many old buildings , and some staircases that led to nowhere .", "storylet_id": "223876"}], [{"original_text": "We went into a church that had the most elaborate altar.", "album_id": "72157601220425876", "photo_flickr_id": "1012271528", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "44775", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went into a church that had the most elaborate altar .", "storylet_id": "223877"}], [{"original_text": "We had lunch in a really cool little pub in town.", "album_id": "72157601220425876", "photo_flickr_id": "1011410901", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "44775", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had lunch in a really cool little pub in town .", "storylet_id": "223878"}], [{"original_text": "After lunch we explored a church that was built over 200 years ago.", "album_id": "72157601220425876", "photo_flickr_id": "1012271104", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "44775", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after lunch we explored a church that was built over 200 years ago .", "storylet_id": "223879"}], [{"original_text": "Mary quite enjoyed her tour of the cultural sites in town.", "album_id": "72157601220425876", "photo_flickr_id": "1012271528", "setting": "first-2-pick-and-tell", "worker_id": "2WUUVOYB2S2B4L6", "story_id": "44776", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] quite enjoyed her tour of the cultural sites in town .", "storylet_id": "223880"}], [{"original_text": "About noonish, she began to feel a mite peckish and spotted a nearby cafe.", "album_id": "72157601220425876", "photo_flickr_id": "1012270588", "setting": "first-2-pick-and-tell", "worker_id": "2WUUVOYB2S2B4L6", "story_id": "44776", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "about noonish , she began to feel a mite peckish and spotted a nearby cafe .", "storylet_id": "223881"}], [{"original_text": "Lunch was delicious, and the bottle of wine was the perfect complement.", "album_id": "72157601220425876", "photo_flickr_id": "1012269758", "setting": "first-2-pick-and-tell", "worker_id": "2WUUVOYB2S2B4L6", "story_id": "44776", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lunch was delicious , and the bottle of wine was the perfect complement .", "storylet_id": "223882"}], [{"original_text": "After eating, Mary continued to visit the museums, churches and other attractions.", "album_id": "72157601220425876", "photo_flickr_id": "1012271290", "setting": "first-2-pick-and-tell", "worker_id": "2WUUVOYB2S2B4L6", "story_id": "44776", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after eating , [female] continued to visit the museums , churches and other attractions .", "storylet_id": "223883"}], [{"original_text": "Tomorrow, she will focus on the splendid, although decrepit, architecture to be found in the old quarter.", "album_id": "72157601220425876", "photo_flickr_id": "1012270952", "setting": "first-2-pick-and-tell", "worker_id": "2WUUVOYB2S2B4L6", "story_id": "44776", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "tomorrow , she will focus on the splendid , although decrepit , architecture to be found in the old quarter .", "storylet_id": "223884"}], [{"original_text": "This was the first city we saw on our school trip to France. The tower is from the 12th century.", "album_id": "72157601220425876", "photo_flickr_id": "1012268804", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "44777", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the first city we saw on our school trip to location . the tower is from the 12th century .", "storylet_id": "223885"}], [{"original_text": "Harry posed in the tower.", "album_id": "72157601220425876", "photo_flickr_id": "1012268988", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "44777", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] posed in the tower .", "storylet_id": "223886"}], [{"original_text": "There was a chapel on the first floor.", "album_id": "72157601220425876", "photo_flickr_id": "1012271528", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "44777", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a chapel on the first floor .", "storylet_id": "223887"}], [{"original_text": "We had lunch at the local creperie.", "album_id": "72157601220425876", "photo_flickr_id": "1011410901", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "44777", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had lunch at the local creperie .", "storylet_id": "223888"}], [{"original_text": "We saw a cathedral afterward. Very impressive.", "album_id": "72157601220425876", "photo_flickr_id": "1012271104", "setting": "last-3-pick-old-and-tell", "worker_id": "KGN2APNPES90WOY", "story_id": "44777", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we saw a cathedral afterward . very impressive .", "storylet_id": "223889"}], [{"original_text": "Old castles were landmarks in the town.", "album_id": "72157601220425876", "photo_flickr_id": "1012268804", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44778", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "old castles were landmarks in the town .", "storylet_id": "223890"}], [{"original_text": "Mark loved his tour of the old buildings.", "album_id": "72157601220425876", "photo_flickr_id": "1012268988", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44778", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] loved his tour of the old buildings .", "storylet_id": "223891"}], [{"original_text": "In and old church there were candles for church services that still happen today.", "album_id": "72157601220425876", "photo_flickr_id": "1012271528", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44778", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in and old church there were candles for church services that still happen today .", "storylet_id": "223892"}], [{"original_text": "Restaurants that occupied old storefronts were very popular attractions. ", "album_id": "72157601220425876", "photo_flickr_id": "1011410901", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44778", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "restaurants that occupied old storefronts were very popular attractions .", "storylet_id": "223893"}], [{"original_text": "The old architecture was a great sight for all.", "album_id": "72157601220425876", "photo_flickr_id": "1012271104", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44778", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the old architecture was a great sight for all .", "storylet_id": "223894"}], [{"original_text": "When I got to the church there was nobody there so I left to go find something to eat.", "album_id": "72157601220425876", "photo_flickr_id": "1012271528", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44779", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i got to the church there was nobody there so i left to go find something to eat .", "storylet_id": "223895"}], [{"original_text": "There was a cafe nearby.", "album_id": "72157601220425876", "photo_flickr_id": "1012270588", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44779", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a cafe nearby .", "storylet_id": "223896"}], [{"original_text": "I went in to eat a big pancake.", "album_id": "72157601220425876", "photo_flickr_id": "1012269758", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44779", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i went in to eat a big pancake .", "storylet_id": "223897"}], [{"original_text": "Afterward I went to the nearby museum.", "album_id": "72157601220425876", "photo_flickr_id": "1012271290", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44779", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward i went to the nearby museum .", "storylet_id": "223898"}], [{"original_text": "After a long day I walked back to my apartment.", "album_id": "72157601220425876", "photo_flickr_id": "1012270952", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44779", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long day i walked back to my apartment .", "storylet_id": "223899"}], [{"original_text": "The guys decided to take a trip to Germany together. ", "album_id": "121386", "photo_flickr_id": "4821964", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "44780", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guys decided to take a trip to location together .", "storylet_id": "223900"}], [{"original_text": "They were surprised to see the car that the rental company gave them. ", "album_id": "121386", "photo_flickr_id": "4821899", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "44780", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were surprised to see the car that the rental company gave them .", "storylet_id": "223901"}], [{"original_text": "Their first stop was this brewery. ", "album_id": "121386", "photo_flickr_id": "4821997", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "44780", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their first stop was this brewery .", "storylet_id": "223902"}], [{"original_text": "Inside the brewery was some amazing stone decorations.", "album_id": "121386", "photo_flickr_id": "4821543", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "44780", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "inside the brewery was some amazing stone decorations .", "storylet_id": "223903"}], [{"original_text": "They liked the view from atop the brewery, they could see the whole city.", "album_id": "121386", "photo_flickr_id": "4821747", "setting": "first-2-pick-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "44780", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they liked the view from atop the brewery , they could see the whole city .", "storylet_id": "223904"}], [{"original_text": "Our trip to Europe was amazing, we saw many incredible buildings.", "album_id": "121386", "photo_flickr_id": "4821404", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "44781", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip to location was amazing , we saw many incredible buildings .", "storylet_id": "223905"}], [{"original_text": "Even the cathedrals are so nice compared to back home.", "album_id": "121386", "photo_flickr_id": "4821459", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "44781", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the cathedrals are so nice compared to back home .", "storylet_id": "223906"}], [{"original_text": "The inside was stunning with arches and decorated windows.", "album_id": "121386", "photo_flickr_id": "4821525", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "44781", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the inside was stunning with arches and decorated windows .", "storylet_id": "223907"}], [{"original_text": "We saw many crazy things on our trip. Check out the circle of bunnies.", "album_id": "121386", "photo_flickr_id": "4821543", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "44781", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw many crazy things on our trip . check out the circle of bunnies .", "storylet_id": "223908"}], [{"original_text": "Their houses are built on slopes, I was amazed at the architecture.", "album_id": "121386", "photo_flickr_id": "4821906", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "44781", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "their houses are built on slopes , i was amazed at the architecture .", "storylet_id": "223909"}], [{"original_text": "We were excited to be on vacation together. ", "album_id": "121386", "photo_flickr_id": "4821964", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "44782", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were excited to be on vacation together .", "storylet_id": "223910"}], [{"original_text": "The Smart car was awesome on gas. ", "album_id": "121386", "photo_flickr_id": "4821899", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "44782", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the smart car was awesome on gas .", "storylet_id": "223911"}], [{"original_text": "This is where we're staying for the week. ", "album_id": "121386", "photo_flickr_id": "4821997", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "44782", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is where we 're staying for the week .", "storylet_id": "223912"}], [{"original_text": "Check out the decor. ", "album_id": "121386", "photo_flickr_id": "4821543", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "44782", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "check out the decor .", "storylet_id": "223913"}], [{"original_text": "The architecture in this country is a classic. ", "album_id": "121386", "photo_flickr_id": "4821747", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "44782", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the architecture in this country is a classic .", "storylet_id": "223914"}], [{"original_text": "Some friends and I decided to get some lunch and explore the city!", "album_id": "121386", "photo_flickr_id": "4821964", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44783", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some friends and i decided to get some lunch and explore the city !", "storylet_id": "223915"}], [{"original_text": "We came across a lot of tiny electric cars.", "album_id": "121386", "photo_flickr_id": "4821899", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44783", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we came across a lot of tiny electric cars .", "storylet_id": "223916"}], [{"original_text": "We later went to the museum.", "album_id": "121386", "photo_flickr_id": "4821997", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44783", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we later went to the museum .", "storylet_id": "223917"}], [{"original_text": "We came across this unique sculpture!", "album_id": "121386", "photo_flickr_id": "4821543", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44783", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we came across this unique sculpture !", "storylet_id": "223918"}], [{"original_text": "At the end of the day, we were exhausted so we sat down and chatted. ", "album_id": "121386", "photo_flickr_id": "4821747", "setting": "last-3-pick-old-and-tell", "worker_id": "QCDAZ40VZ7X9WND", "story_id": "44783", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , we were exhausted so we sat down and chatted .", "storylet_id": "223919"}], [{"original_text": "Me and the guy,s out for lunch.can,t wait to sit down and fill up our belly,s. the food here is great.", "album_id": "121386", "photo_flickr_id": "4821964", "setting": "last-3-pick-old-and-tell", "worker_id": "2GIKSDZ3V6C7WKV", "story_id": "44784", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and the guy , s out for lunch.can , t wait to sit down and fill up our belly , s . the food here is great .", "storylet_id": "223920"}], [{"original_text": "I am going to take a ride in my new smart car.its very small.I think i,m going to like it much better then my old one.", "album_id": "121386", "photo_flickr_id": "4821899", "setting": "last-3-pick-old-and-tell", "worker_id": "2GIKSDZ3V6C7WKV", "story_id": "44784", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i am going to take a ride in my new smart car.its very small.i think i , m going to like it much better then my old one .", "storylet_id": "223921"}], [{"original_text": "This is my new home and today i,m moving into this brick apartment building.", "album_id": "121386", "photo_flickr_id": "4821997", "setting": "last-3-pick-old-and-tell", "worker_id": "2GIKSDZ3V6C7WKV", "story_id": "44784", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is my new home and today i , m moving into this brick apartment building .", "storylet_id": "223922"}], [{"original_text": "It,s lonely sitting around here waiting for my friend,s to show up and join me.hope they get here soon.", "album_id": "121386", "photo_flickr_id": "4821543", "setting": "last-3-pick-old-and-tell", "worker_id": "2GIKSDZ3V6C7WKV", "story_id": "44784", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it , s lonely sitting around here waiting for my friend , s to show up and join me.hope they get here soon .", "storylet_id": "223923"}], [{"original_text": "Me and my buddy,s decided to come and spend the day here at the top of the building to watch the view.", "album_id": "121386", "photo_flickr_id": "4821747", "setting": "last-3-pick-old-and-tell", "worker_id": "2GIKSDZ3V6C7WKV", "story_id": "44784", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "me and my buddy , s decided to come and spend the day here at the top of the building to watch the view .", "storylet_id": "223924"}], [{"original_text": "The woman was driving to vacation.", "album_id": "143508", "photo_flickr_id": "5723635", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "44785", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the woman was driving to vacation .", "storylet_id": "223925"}], [{"original_text": "She was following a very slow semi.", "album_id": "143508", "photo_flickr_id": "5723762", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "44785", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was following a very slow semi .", "storylet_id": "223926"}], [{"original_text": "She passed all kinds of strange buildings.", "album_id": "143508", "photo_flickr_id": "5723373", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "44785", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she passed all kinds of strange buildings .", "storylet_id": "223927"}], [{"original_text": "She saw some very strange attractions.", "album_id": "143508", "photo_flickr_id": "5723493", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "44785", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she saw some very strange attractions .", "storylet_id": "223928"}], [{"original_text": "She arrived at her destination.", "album_id": "143508", "photo_flickr_id": "5723534", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "44785", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she arrived at her destination .", "storylet_id": "223929"}], [{"original_text": "The couple went on a day trip.", "album_id": "143508", "photo_flickr_id": "5723635", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44786", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple went on a day trip .", "storylet_id": "223930"}], [{"original_text": "They decided to go to the tower.", "album_id": "143508", "photo_flickr_id": "5723373", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44786", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they decided to go to the tower .", "storylet_id": "223931"}], [{"original_text": "They first went up the long flight of stairs.", "album_id": "143508", "photo_flickr_id": "5723703", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44786", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they first went up the long flight of stairs .", "storylet_id": "223932"}], [{"original_text": "They got to the top, and could see out. ", "album_id": "143508", "photo_flickr_id": "5723443", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44786", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they got to the top , and could see out .", "storylet_id": "223933"}], [{"original_text": "The found on the walls all sorts of writing.", "album_id": "143508", "photo_flickr_id": "5723466", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44786", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the found on the walls all sorts of writing .", "storylet_id": "223934"}], [{"original_text": "Yesterday, Carla went to see the world's largest strawberry.", "album_id": "143508", "photo_flickr_id": "5723635", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44787", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yesterday , [female] went to see the world 's largest strawberry .", "storylet_id": "223935"}], [{"original_text": "She drove behind the slowest semi truck ever. She was ready to lose it.", "album_id": "143508", "photo_flickr_id": "5723762", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44787", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she drove behind the slowest semi truck ever . she was ready to lose it .", "storylet_id": "223936"}], [{"original_text": "She passed by a large white coned building. ", "album_id": "143508", "photo_flickr_id": "5723373", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44787", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she passed by a large white coned building .", "storylet_id": "223937"}], [{"original_text": "Behind the building was a giant... raspberry. Not a strawberry. ", "album_id": "143508", "photo_flickr_id": "5723493", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44787", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "behind the building was a giant ... raspberry . not a strawberry .", "storylet_id": "223938"}], [{"original_text": "Carla, disappointed, drove back to the city to go on a bender.", "album_id": "143508", "photo_flickr_id": "5723534", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "44787", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] , disappointed , drove back to the city to go on a bender .", "storylet_id": "223939"}], [{"original_text": "Driving on a sunny day in the car.", "album_id": "143508", "photo_flickr_id": "5723635", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "44788", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "driving on a sunny day in the car .", "storylet_id": "223940"}], [{"original_text": "Driving behind an 18 wheeler is no fun.", "album_id": "143508", "photo_flickr_id": "5723762", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "44788", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "driving behind an 18 wheeler is no fun .", "storylet_id": "223941"}], [{"original_text": "Visiting the oddly shaped building.", "album_id": "143508", "photo_flickr_id": "5723373", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "44788", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "visiting the oddly shaped building .", "storylet_id": "223942"}], [{"original_text": "A giant sculpture of grapes.", "album_id": "143508", "photo_flickr_id": "5723493", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "44788", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a giant sculpture of grapes .", "storylet_id": "223943"}], [{"original_text": "In hotel that overlooks the city.", "album_id": "143508", "photo_flickr_id": "5723534", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "44788", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in hotel that overlooks the city .", "storylet_id": "223944"}], [{"original_text": "Having a blast on the summer roadtrip!", "album_id": "143508", "photo_flickr_id": "5723635", "setting": "last-3-pick-old-and-tell", "worker_id": "XMV689K507N6XK3", "story_id": "44789", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "having a blast on the summer roadtrip !", "storylet_id": "223945"}], [{"original_text": "Some slowdowns but nothing rains on our parade.", "album_id": "143508", "photo_flickr_id": "5723762", "setting": "last-3-pick-old-and-tell", "worker_id": "XMV689K507N6XK3", "story_id": "44789", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some slowdowns but nothing rains on our parade .", "storylet_id": "223946"}], [{"original_text": "Our first scenic spot! How fun! ", "album_id": "143508", "photo_flickr_id": "5723373", "setting": "last-3-pick-old-and-tell", "worker_id": "XMV689K507N6XK3", "story_id": "44789", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our first scenic spot ! how fun !", "storylet_id": "223947"}], [{"original_text": "A giant berry! Probably from a giant's garden.", "album_id": "143508", "photo_flickr_id": "5723493", "setting": "last-3-pick-old-and-tell", "worker_id": "XMV689K507N6XK3", "story_id": "44789", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a giant berry ! probably from a giant 's garden .", "storylet_id": "223948"}], [{"original_text": "A view of the whole city! What a nice view.", "album_id": "143508", "photo_flickr_id": "5723534", "setting": "last-3-pick-old-and-tell", "worker_id": "XMV689K507N6XK3", "story_id": "44789", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a view of the whole city ! what a nice view .", "storylet_id": "223949"}], [{"original_text": "They make their way to the cafe for breakfast.", "album_id": "72157604887097332", "photo_flickr_id": "2465933647", "setting": "first-2-pick-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "44790", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they make their way to the cafe for breakfast .", "storylet_id": "223950"}], [{"original_text": "She studies the menu while the young boy smiles.", "album_id": "72157604887097332", "photo_flickr_id": "2465934669", "setting": "first-2-pick-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "44790", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she studies the menu while the young boy smiles .", "storylet_id": "223951"}], [{"original_text": "What will we have for breakfast?", "album_id": "72157604887097332", "photo_flickr_id": "2466763246", "setting": "first-2-pick-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "44790", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what will we have for breakfast ?", "storylet_id": "223952"}], [{"original_text": "It looks like bread and sauces.", "album_id": "72157604887097332", "photo_flickr_id": "2465962961", "setting": "first-2-pick-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "44790", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looks like bread and sauces .", "storylet_id": "223953"}], [{"original_text": "A closeup of the goodies.", "album_id": "72157604887097332", "photo_flickr_id": "2466792308", "setting": "first-2-pick-and-tell", "worker_id": "IBCUQ10M3Z1I3I7", "story_id": "44790", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a closeup of the goodies .", "storylet_id": "223954"}], [{"original_text": "After my uncle passed I inherited his restaurant.", "album_id": "72157604887097332", "photo_flickr_id": "2465932551", "setting": "first-2-pick-and-tell", "worker_id": "PBN15FRV9HZX3EG", "story_id": "44791", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after my uncle passed i inherited his restaurant .", "storylet_id": "223955"}], [{"original_text": "Rather than continue it, I turned it into a bar and a cafe.", "album_id": "72157604887097332", "photo_flickr_id": "2465933647", "setting": "first-2-pick-and-tell", "worker_id": "PBN15FRV9HZX3EG", "story_id": "44791", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "rather than continue it , i turned it into a bar and a cafe .", "storylet_id": "223956"}], [{"original_text": "I did so in the hopes that I would have flexible hours for my wife and daughter.", "album_id": "72157604887097332", "photo_flickr_id": "2465934669", "setting": "first-2-pick-and-tell", "worker_id": "PBN15FRV9HZX3EG", "story_id": "44791", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i did so in the hopes that i would have flexible hours for my wife and daughter .", "storylet_id": "223957"}], [{"original_text": "i didn't want to completely destroy everything the place was though, the restaurant was called Broder.", "album_id": "72157604887097332", "photo_flickr_id": "2465959193", "setting": "first-2-pick-and-tell", "worker_id": "PBN15FRV9HZX3EG", "story_id": "44791", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i did n't want to completely destroy everything the place was though , the restaurant was called broder .", "storylet_id": "223958"}], [{"original_text": "It's know known as Cafe Broder.", "album_id": "72157604887097332", "photo_flickr_id": "2465961027", "setting": "first-2-pick-and-tell", "worker_id": "PBN15FRV9HZX3EG", "story_id": "44791", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's know known as cafe broder .", "storylet_id": "223959"}], [{"original_text": "The inside of Broder Cafe shows a line of bottles on the wall.", "album_id": "72157604887097332", "photo_flickr_id": "2465933647", "setting": "last-3-pick-old-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "44792", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the inside of organization organization shows a line of bottles on the wall .", "storylet_id": "223960"}], [{"original_text": "Mother and son sit down as she explores the menu.", "album_id": "72157604887097332", "photo_flickr_id": "2465934669", "setting": "last-3-pick-old-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "44792", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mother and son sit down as she explores the menu .", "storylet_id": "223961"}], [{"original_text": "A closeup of the menu with the restaurant name on the top featured prominently. ", "album_id": "72157604887097332", "photo_flickr_id": "2466763246", "setting": "last-3-pick-old-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "44792", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a closeup of the menu with the restaurant name on the top featured prominently .", "storylet_id": "223962"}], [{"original_text": "Breakfast is served and the boy looks as if he just too a bite of something too hot.", "album_id": "72157604887097332", "photo_flickr_id": "2465962961", "setting": "last-3-pick-old-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "44792", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "breakfast is served and the boy looks as if he just too a bite of something too hot .", "storylet_id": "223963"}], [{"original_text": "A shallow depth of field shot featuring the various sauces served with the meal.", "album_id": "72157604887097332", "photo_flickr_id": "2466792308", "setting": "last-3-pick-old-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "44792", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a shallow depth of field shot featuring the various sauces served with the meal .", "storylet_id": "223964"}], [{"original_text": "Cindy tried a new place to eat for lunch. ", "album_id": "72157604887097332", "photo_flickr_id": "2465933647", "setting": "last-3-pick-old-and-tell", "worker_id": "G7BBVGLC1NWNS2C", "story_id": "44793", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] tried a new place to eat for lunch .", "storylet_id": "223965"}], [{"original_text": "She brought her little boy John along. ", "album_id": "72157604887097332", "photo_flickr_id": "2465934669", "setting": "last-3-pick-old-and-tell", "worker_id": "G7BBVGLC1NWNS2C", "story_id": "44793", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she brought her little boy [male] along .", "storylet_id": "223966"}], [{"original_text": "There were so many options on the menu. ", "album_id": "72157604887097332", "photo_flickr_id": "2466763246", "setting": "last-3-pick-old-and-tell", "worker_id": "G7BBVGLC1NWNS2C", "story_id": "44793", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were so many options on the menu .", "storylet_id": "223967"}], [{"original_text": "The food arrived hot and just the way we liked it. ", "album_id": "72157604887097332", "photo_flickr_id": "2465962961", "setting": "last-3-pick-old-and-tell", "worker_id": "G7BBVGLC1NWNS2C", "story_id": "44793", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food arrived hot and just the way we liked it .", "storylet_id": "223968"}], [{"original_text": "Complimentary biscuits with jam won us over. ", "album_id": "72157604887097332", "photo_flickr_id": "2466792308", "setting": "last-3-pick-old-and-tell", "worker_id": "G7BBVGLC1NWNS2C", "story_id": "44793", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "complimentary biscuits with jam won us over .", "storylet_id": "223969"}], [{"original_text": "We decided to go to town and stop by a new pub for lunch.", "album_id": "72157604887097332", "photo_flickr_id": "2465933647", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44794", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to go to town and stop by a new pub for lunch .", "storylet_id": "223970"}], [{"original_text": "We looked over the menu while we waited for the server.", "album_id": "72157604887097332", "photo_flickr_id": "2465934669", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44794", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we looked over the menu while we waited for the server .", "storylet_id": "223971"}], [{"original_text": "There was a large selection to pick from and everything sounded good.", "album_id": "72157604887097332", "photo_flickr_id": "2466763246", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44794", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a large selection to pick from and everything sounded good .", "storylet_id": "223972"}], [{"original_text": "We got an an appetizer and it was very hot when it came to the table.", "album_id": "72157604887097332", "photo_flickr_id": "2465962961", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44794", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got an an appetizer and it was very hot when it came to the table .", "storylet_id": "223973"}], [{"original_text": "There were three different types of dipping sauce and they all were great!", "album_id": "72157604887097332", "photo_flickr_id": "2466792308", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44794", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were three different types of dipping sauce and they all were great !", "storylet_id": "223974"}], [{"original_text": "I love my green thumb.", "album_id": "72157600181308617", "photo_flickr_id": "485880130", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44795", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love my green thumb .", "storylet_id": "223975"}], [{"original_text": "Tomatoes are my favorite to grown", "album_id": "72157600181308617", "photo_flickr_id": "485804971", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44795", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "tomatoes are my favorite to grown", "storylet_id": "223976"}], [{"original_text": "My cat like to help me in the garden.", "album_id": "72157600181308617", "photo_flickr_id": "485803460", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44795", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my cat like to help me in the garden .", "storylet_id": "223977"}], [{"original_text": "I even garden in the winter time.", "album_id": "72157600181308617", "photo_flickr_id": "485823804", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44795", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i even garden in the winter time .", "storylet_id": "223978"}], [{"original_text": "I always end my day with my favorite drink.", "album_id": "72157600181308617", "photo_flickr_id": "485823828", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44795", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i always end my day with my favorite drink .", "storylet_id": "223979"}], [{"original_text": "It was a beautiful fall day to be outside", "album_id": "72157600181308617", "photo_flickr_id": "485805013", "setting": "first-2-pick-and-tell", "worker_id": "LHAA90Q5SRKAKK4", "story_id": "44796", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful fall day to be outside", "storylet_id": "223980"}], [{"original_text": "We decided that it was a good day to chop some wood to store it for winter", "album_id": "72157600181308617", "photo_flickr_id": "485805029", "setting": "first-2-pick-and-tell", "worker_id": "LHAA90Q5SRKAKK4", "story_id": "44796", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided that it was a good day to chop some wood to store it for winter", "storylet_id": "223981"}], [{"original_text": "chuck was taking a break from chopping wood and breathing in the cool autumn air", "album_id": "72157600181308617", "photo_flickr_id": "485804961", "setting": "first-2-pick-and-tell", "worker_id": "LHAA90Q5SRKAKK4", "story_id": "44796", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "chuck was taking a break from chopping wood and breathing in the cool autumn air", "storylet_id": "223982"}], [{"original_text": "Even Chester the cat was enjoying the nice day.", "album_id": "72157600181308617", "photo_flickr_id": "485803460", "setting": "first-2-pick-and-tell", "worker_id": "LHAA90Q5SRKAKK4", "story_id": "44796", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even [male] the cat was enjoying the nice day .", "storylet_id": "223983"}], [{"original_text": "We had a profitable day with lots of wood chopped and stored.", "album_id": "72157600181308617", "photo_flickr_id": "485803468", "setting": "first-2-pick-and-tell", "worker_id": "LHAA90Q5SRKAKK4", "story_id": "44796", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a profitable day with lots of wood chopped and stored .", "storylet_id": "223984"}], [{"original_text": "I was very proud of how my garden was growing", "album_id": "72157600181308617", "photo_flickr_id": "485880130", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "44797", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was very proud of how my garden was growing", "storylet_id": "223985"}], [{"original_text": "The tomatoes came in nicely", "album_id": "72157600181308617", "photo_flickr_id": "485804971", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "44797", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the tomatoes came in nicely", "storylet_id": "223986"}], [{"original_text": "My cat always keeps watch over the garden", "album_id": "72157600181308617", "photo_flickr_id": "485803460", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "44797", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my cat always keeps watch over the garden", "storylet_id": "223987"}], [{"original_text": "The beautiful trees create just enough shade for the garden", "album_id": "72157600181308617", "photo_flickr_id": "485823804", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "44797", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the beautiful trees create just enough shade for the garden", "storylet_id": "223988"}], [{"original_text": "After working in the garden all day, time to enjoy a beverage", "album_id": "72157600181308617", "photo_flickr_id": "485823828", "setting": "last-3-pick-old-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "44797", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after working in the garden all day , time to enjoy a beverage", "storylet_id": "223989"}], [{"original_text": "visiting the garden.", "album_id": "72157600181308617", "photo_flickr_id": "485880130", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44798", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visiting the garden .", "storylet_id": "223990"}], [{"original_text": "and picking up tomatoes.", "album_id": "72157600181308617", "photo_flickr_id": "485804971", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44798", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and picking up tomatoes .", "storylet_id": "223991"}], [{"original_text": "sassy the cat on the porch.", "album_id": "72157600181308617", "photo_flickr_id": "485803460", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44798", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sassy the cat on the porch .", "storylet_id": "223992"}], [{"original_text": "Going for an afternoon walk through the woods. ", "album_id": "72157600181308617", "photo_flickr_id": "485823804", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44798", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "going for an afternoon walk through the woods .", "storylet_id": "223993"}], [{"original_text": "preparing and drinking fruit cocktails. ", "album_id": "72157600181308617", "photo_flickr_id": "485823828", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44798", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "preparing and drinking fruit cocktails .", "storylet_id": "223994"}], [{"original_text": "The red barn is very large and even serves as a home!", "album_id": "72157600181308617", "photo_flickr_id": "485805013", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44799", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the red barn is very large and even serves as a home !", "storylet_id": "223995"}], [{"original_text": "It could use a little paint in some areas, but it is still a nice barn.", "album_id": "72157600181308617", "photo_flickr_id": "485805029", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44799", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it could use a little paint in some areas , but it is still a nice barn .", "storylet_id": "223996"}], [{"original_text": "It was a sunny day, so I decided to head out of the barn to enjoy the view.", "album_id": "72157600181308617", "photo_flickr_id": "485804961", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44799", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a sunny day , so i decided to head out of the barn to enjoy the view .", "storylet_id": "223997"}], [{"original_text": "Even the pet cat had decided to take in some of the nice weather.", "album_id": "72157600181308617", "photo_flickr_id": "485803460", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44799", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the pet cat had decided to take in some of the nice weather .", "storylet_id": "223998"}], [{"original_text": "While I was outside, I took some time to stack some firewood up neatly.", "album_id": "72157600181308617", "photo_flickr_id": "485803468", "setting": "last-3-pick-old-and-tell", "worker_id": "AXWCYSU3US8EGCD", "story_id": "44799", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while i was outside , i took some time to stack some firewood up neatly .", "storylet_id": "223999"}], [{"original_text": "A group of guys were looking forward to skiing at a weekend ski tournament.", "album_id": "72157600181396082", "photo_flickr_id": "485858829", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44800", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of guys were looking forward to skiing at a weekend ski tournament .", "storylet_id": "224000"}], [{"original_text": "One of the guys in the group found ski clothing in the loudest colors he could find for the occasion.", "album_id": "72157600181396082", "photo_flickr_id": "485828480", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44800", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of the guys in the group found ski clothing in the loudest colors he could find for the occasion .", "storylet_id": "224001"}], [{"original_text": "One of the guys dressed up in a crazy looking clown outfit and red cowboy hat.", "album_id": "72157600181396082", "photo_flickr_id": "485828656", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44800", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the guys dressed up in a crazy looking clown outfit and red cowboy hat .", "storylet_id": "224002"}], [{"original_text": "One of the men in the group wore the Jolly Green Giant costume that he wore when taking his son out on Halloween just months earlier.", "album_id": "72157600181396082", "photo_flickr_id": "485828806", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44800", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the men in the group wore the organization organization organization costume that he wore when taking his son out on halloween just months earlier .", "storylet_id": "224003"}], [{"original_text": "\"FatBat\" was everyone's favorite costume out of the group.", "album_id": "72157600181396082", "photo_flickr_id": "485859263", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44800", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "`` fatbat '' was everyone 's favorite costume out of the group .", "storylet_id": "224004"}], [{"original_text": "My buds and I went skiing today. That's me in the red. ", "album_id": "72157600181396082", "photo_flickr_id": "485828546", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44801", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my buds and i went skiing today . that 's me in the red .", "storylet_id": "224005"}], [{"original_text": "This creepy guy kept touching himself and grunting when people walked by. He smelled like cheese balls. ", "album_id": "72157600181396082", "photo_flickr_id": "485828284", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44801", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this creepy guy kept touching himself and grunting when people walked by . he smelled like cheese balls .", "storylet_id": "224006"}], [{"original_text": "My friend Jack appeared and asked if he looked sexy like this?", "album_id": "72157600181396082", "photo_flickr_id": "485828442", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44801", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend [male] appeared and asked if he looked sexy like this ?", "storylet_id": "224007"}], [{"original_text": "\"Or do I look sexy this way?\" He posed and kept moving directions. ", "album_id": "72157600181396082", "photo_flickr_id": "485828480", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44801", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "`` or do i look sexy this way ? '' he posed and kept moving directions .", "storylet_id": "224008"}], [{"original_text": "Just them fat batman and the small jolly green giant walked by and told Jack he was so sexy they couldn't bare to even look at him. We all laughed and did some skiing. ", "album_id": "72157600181396082", "photo_flickr_id": "485828764", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44801", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "just them fat batman and the small jolly green giant walked by and told [male] he was so sexy they could n't bare to even look at him . we all laughed and did some skiing .", "storylet_id": "224009"}], [{"original_text": "A group of friends were off for their first day of skiing after the first big snowstorm of the season.", "album_id": "72157600181396082", "photo_flickr_id": "485858829", "setting": "last-3-pick-old-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "44802", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends were off for their first day of skiing after the first big snowstorm of the season .", "storylet_id": "224010"}], [{"original_text": "Of course they had to show off for pictures.", "album_id": "72157600181396082", "photo_flickr_id": "485828480", "setting": "last-3-pick-old-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "44802", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "of course they had to show off for pictures .", "storylet_id": "224011"}], [{"original_text": "They had worn some different costumes because they were so excited.", "album_id": "72157600181396082", "photo_flickr_id": "485828656", "setting": "last-3-pick-old-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "44802", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had worn some different costumes because they were so excited .", "storylet_id": "224012"}], [{"original_text": "He decided to go with a green motif.", "album_id": "72157600181396082", "photo_flickr_id": "485828806", "setting": "last-3-pick-old-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "44802", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he decided to go with a green motif .", "storylet_id": "224013"}], [{"original_text": "And he decided that purple was the way to go. All of the friends had fun on their glorious day of skiing.", "album_id": "72157600181396082", "photo_flickr_id": "485859263", "setting": "last-3-pick-old-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "44802", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and he decided that purple was the way to go . all of the friends had fun on their glorious day of skiing .", "storylet_id": "224014"}], [{"original_text": "Some friends went skiing.", "album_id": "72157600181396082", "photo_flickr_id": "485858829", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44803", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some friends went skiing .", "storylet_id": "224015"}], [{"original_text": "It was a cosplay ski day.", "album_id": "72157600181396082", "photo_flickr_id": "485828480", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44803", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a cosplay ski day .", "storylet_id": "224016"}], [{"original_text": "We wore outlandish outfits.", "album_id": "72157600181396082", "photo_flickr_id": "485828656", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44803", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we wore outlandish outfits .", "storylet_id": "224017"}], [{"original_text": "We dressed up like different people.", "album_id": "72157600181396082", "photo_flickr_id": "485828806", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44803", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we dressed up like different people .", "storylet_id": "224018"}], [{"original_text": "We even made our own superhero names.", "album_id": "72157600181396082", "photo_flickr_id": "485859263", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "44803", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even made our own superhero names .", "storylet_id": "224019"}], [{"original_text": "About to start skiing with the family.", "album_id": "72157600181396082", "photo_flickr_id": "485858829", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44804", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "about to start skiing with the family .", "storylet_id": "224020"}], [{"original_text": "Showing off his colorful gear. ", "album_id": "72157600181396082", "photo_flickr_id": "485828480", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44804", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "showing off his colorful gear .", "storylet_id": "224021"}], [{"original_text": "In her clown outfit. ", "album_id": "72157600181396082", "photo_flickr_id": "485828656", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44804", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in her clown outfit .", "storylet_id": "224022"}], [{"original_text": "A colorful robin hood skiing. ", "album_id": "72157600181396082", "photo_flickr_id": "485828806", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44804", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a colorful robin hood skiing .", "storylet_id": "224023"}], [{"original_text": "Fat bat holding his skis. ", "album_id": "72157600181396082", "photo_flickr_id": "485859263", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44804", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fat bat holding his skis .", "storylet_id": "224024"}], [{"original_text": "Here's my two favorite people enjoying the summer festival in our town this weekend ", "album_id": "72157617669726441", "photo_flickr_id": "3506360698", "setting": "first-2-pick-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "44805", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here 's my two favorite people enjoying the summer festival in our town this weekend", "storylet_id": "224025"}], [{"original_text": "My son couldn't see so he wanted to get on daddy's neck ", "album_id": "72157617669726441", "photo_flickr_id": "3506361880", "setting": "first-2-pick-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "44805", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my son could n't see so he wanted to get on daddy 's neck", "storylet_id": "224026"}], [{"original_text": "This picture is my sister nephew and soon to be niece ", "album_id": "72157617669726441", "photo_flickr_id": "3505559729", "setting": "first-2-pick-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "44805", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this picture is my sister nephew and soon to be niece", "storylet_id": "224027"}], [{"original_text": "Here is my other niece telling us she think she had something stuck in her nose ", "album_id": "72157617669726441", "photo_flickr_id": "3506370724", "setting": "first-2-pick-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "44805", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is my other niece telling us she think she had something stuck in her nose", "storylet_id": "224028"}], [{"original_text": "We had a great time at the festival can't wait for next year's ", "album_id": "72157617669726441", "photo_flickr_id": "3506377248", "setting": "first-2-pick-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "44805", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time at the festival ca n't wait for next year 's", "storylet_id": "224029"}], [{"original_text": "The festival is in our city today.", "album_id": "72157617669726441", "photo_flickr_id": "3506377248", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "44806", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the festival is in our city today .", "storylet_id": "224030"}], [{"original_text": "Nothing like seeing things from on top.", "album_id": "72157617669726441", "photo_flickr_id": "3506365424", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "44806", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "nothing like seeing things from on top .", "storylet_id": "224031"}], [{"original_text": "The band begins to play familiar songs.", "album_id": "72157617669726441", "photo_flickr_id": "3505568707", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "44806", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band begins to play familiar songs .", "storylet_id": "224032"}], [{"original_text": "Barefoot in the street, this little boy is enjoying the moment.", "album_id": "72157617669726441", "photo_flickr_id": "3506394432", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "44806", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "barefoot in the street , this little boy is enjoying the moment .", "storylet_id": "224033"}], [{"original_text": "The downside of being barefoot, is cleaning them afterwards.", "album_id": "72157617669726441", "photo_flickr_id": "3505585621", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "44806", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the downside of being barefoot , is cleaning them afterwards .", "storylet_id": "224034"}], [{"original_text": "The baby was having fun at the fair.", "album_id": "72157617669726441", "photo_flickr_id": "3506360698", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44807", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the baby was having fun at the fair .", "storylet_id": "224035"}], [{"original_text": "The boy got on top of his dad's shoulders to look around.", "album_id": "72157617669726441", "photo_flickr_id": "3506361880", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44807", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boy got on top of his dad 's shoulders to look around .", "storylet_id": "224036"}], [{"original_text": "People were taking pictures.", "album_id": "72157617669726441", "photo_flickr_id": "3505559729", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44807", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people were taking pictures .", "storylet_id": "224037"}], [{"original_text": "The little girl was having a lot of fun.", "album_id": "72157617669726441", "photo_flickr_id": "3506370724", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44807", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the little girl was having a lot of fun .", "storylet_id": "224038"}], [{"original_text": "There were a lot of people at the fair.", "album_id": "72157617669726441", "photo_flickr_id": "3506377248", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44807", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were a lot of people at the fair .", "storylet_id": "224039"}], [{"original_text": "Mary and Vincent took their son, Paul, to the parade.", "album_id": "72157617669726441", "photo_flickr_id": "3506360698", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44808", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and [male] took their son , [male] , to the parade .", "storylet_id": "224040"}], [{"original_text": "Vincent put Paul on hit shoulders so he could see.", "album_id": "72157617669726441", "photo_flickr_id": "3506361880", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44808", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] put [male] on hit shoulders so he could see .", "storylet_id": "224041"}], [{"original_text": "Mary ran into her friend Sue.", "album_id": "72157617669726441", "photo_flickr_id": "3505559729", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44808", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] ran into her friend [female] .", "storylet_id": "224042"}], [{"original_text": "Sue also brought her daughter.", "album_id": "72157617669726441", "photo_flickr_id": "3506370724", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44808", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] also brought her daughter .", "storylet_id": "224043"}], [{"original_text": "The street was crowded, but it was fun!", "album_id": "72157617669726441", "photo_flickr_id": "3506377248", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44808", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the street was crowded , but it was fun !", "storylet_id": "224044"}], [{"original_text": "I had been looking forward to family fun day.", "album_id": "72157617669726441", "photo_flickr_id": "3506360698", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44809", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had been looking forward to family fun day .", "storylet_id": "224045"}], [{"original_text": "My son loves the annual outing.", "album_id": "72157617669726441", "photo_flickr_id": "3506361880", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44809", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my son loves the annual outing .", "storylet_id": "224046"}], [{"original_text": "People from all over like to come.", "album_id": "72157617669726441", "photo_flickr_id": "3505559729", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44809", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people from all over like to come .", "storylet_id": "224047"}], [{"original_text": "Even the youngest of the kids loves this day.", "album_id": "72157617669726441", "photo_flickr_id": "3506370724", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44809", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the youngest of the kids loves this day .", "storylet_id": "224048"}], [{"original_text": "Its exciting to all the people to come together.", "album_id": "72157617669726441", "photo_flickr_id": "3506377248", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44809", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "its exciting to all the people to come together .", "storylet_id": "224049"}], [{"original_text": "The office was in need of a better storage solution than what we had.", "album_id": "72157623878185185", "photo_flickr_id": "4582717019", "setting": "first-2-pick-and-tell", "worker_id": "AGNKNIGQAWSPFSD", "story_id": "44810", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the office was in need of a better storage solution than what we had .", "storylet_id": "224050"}], [{"original_text": "Cubicles formed by stacks of manila envelopes was less than ideal for the workers.", "album_id": "72157623878185185", "photo_flickr_id": "4582717573", "setting": "first-2-pick-and-tell", "worker_id": "AGNKNIGQAWSPFSD", "story_id": "44810", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "cubicles formed by stacks of manila envelopes was less than ideal for the workers .", "storylet_id": "224051"}], [{"original_text": "After a delay, the logistics guy finally showed up.", "album_id": "72157623878185185", "photo_flickr_id": "4583348464", "setting": "first-2-pick-and-tell", "worker_id": "AGNKNIGQAWSPFSD", "story_id": "44810", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after a delay , the logistics guy finally showed up .", "storylet_id": "224052"}], [{"original_text": "For a while he fiddled with a silly metal basket solution.", "album_id": "72157623878185185", "photo_flickr_id": "4583345906", "setting": "first-2-pick-and-tell", "worker_id": "AGNKNIGQAWSPFSD", "story_id": "44810", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "for a while he fiddled with a silly metal basket solution .", "storylet_id": "224053"}], [{"original_text": "Eventually, he sorted everything out using a filling cabinet.", "album_id": "72157623878185185", "photo_flickr_id": "4582718471", "setting": "first-2-pick-and-tell", "worker_id": "AGNKNIGQAWSPFSD", "story_id": "44810", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "eventually , he sorted everything out using a filling cabinet .", "storylet_id": "224054"}], [{"original_text": "They prepared to get all of the files into the database.", "album_id": "72157623878185185", "photo_flickr_id": "4582716835", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44811", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they prepared to get all of the files into the database .", "storylet_id": "224055"}], [{"original_text": "First they pulled out all of the folders from the cabinets.", "album_id": "72157623878185185", "photo_flickr_id": "4582718471", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44811", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first they pulled out all of the folders from the cabinets .", "storylet_id": "224056"}], [{"original_text": "Then they stacked them up and got them ready to be entered.", "album_id": "72157623878185185", "photo_flickr_id": "4582717573", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44811", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they stacked them up and got them ready to be entered .", "storylet_id": "224057"}], [{"original_text": "After that, they began entering data into the database.", "album_id": "72157623878185185", "photo_flickr_id": "4582717019", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44811", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that , they began entering data into the database .", "storylet_id": "224058"}], [{"original_text": "When they were done, they had no files left to enter.", "album_id": "72157623878185185", "photo_flickr_id": "4582719537", "setting": "first-2-pick-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "44811", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when they were done , they had no files left to enter .", "storylet_id": "224059"}], [{"original_text": "Mrs. Jones had to organize.", "album_id": "72157623878185185", "photo_flickr_id": "4582717019", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44812", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mrs. jones had to organize .", "storylet_id": "224060"}], [{"original_text": "The students gave her hand.", "album_id": "72157623878185185", "photo_flickr_id": "4582717573", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44812", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the students gave her hand .", "storylet_id": "224061"}], [{"original_text": "They spent hours working and time flew.", "album_id": "72157623878185185", "photo_flickr_id": "4583348464", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44812", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they spent hours working and time flew .", "storylet_id": "224062"}], [{"original_text": "Joe was the last to leave.", "album_id": "72157623878185185", "photo_flickr_id": "4583345906", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44812", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was the last to leave .", "storylet_id": "224063"}], [{"original_text": "Everything was neat and tidy afterwards!", "album_id": "72157623878185185", "photo_flickr_id": "4582718471", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44812", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everything was neat and tidy afterwards !", "storylet_id": "224064"}], [{"original_text": "Joan was working hard.", "album_id": "72157623878185185", "photo_flickr_id": "4582717019", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44813", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was working hard .", "storylet_id": "224065"}], [{"original_text": "Everyone at the office was ready to work.", "album_id": "72157623878185185", "photo_flickr_id": "4582717573", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44813", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone at the office was ready to work .", "storylet_id": "224066"}], [{"original_text": "Their day was just beginning.", "album_id": "72157623878185185", "photo_flickr_id": "4583348464", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44813", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their day was just beginning .", "storylet_id": "224067"}], [{"original_text": "John stopped by to help do some work.", "album_id": "72157623878185185", "photo_flickr_id": "4583345906", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44813", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] stopped by to help do some work .", "storylet_id": "224068"}], [{"original_text": "He was in charge of organizing the folders.", "album_id": "72157623878185185", "photo_flickr_id": "4582718471", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44813", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was in charge of organizing the folders .", "storylet_id": "224069"}], [{"original_text": "It was early in the office when we got the assignment. ", "album_id": "72157623878185185", "photo_flickr_id": "4582717019", "setting": "last-3-pick-old-and-tell", "worker_id": "QSOGP6LHJHKK4JD", "story_id": "44814", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was early in the office when we got the assignment .", "storylet_id": "224070"}], [{"original_text": "First we started by pulling all the files out that were required. We all gathered around.", "album_id": "72157623878185185", "photo_flickr_id": "4582717573", "setting": "last-3-pick-old-and-tell", "worker_id": "QSOGP6LHJHKK4JD", "story_id": "44814", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first we started by pulling all the files out that were required . we all gathered around .", "storylet_id": "224071"}], [{"original_text": "By then it was almost 10:00!! ", "album_id": "72157623878185185", "photo_flickr_id": "4583348464", "setting": "last-3-pick-old-and-tell", "worker_id": "QSOGP6LHJHKK4JD", "story_id": "44814", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "by then it was almost 10:00 ! !", "storylet_id": "224072"}], [{"original_text": "We kept at it all day, going through the files, making stacks, and organizing.", "album_id": "72157623878185185", "photo_flickr_id": "4583345906", "setting": "last-3-pick-old-and-tell", "worker_id": "QSOGP6LHJHKK4JD", "story_id": "44814", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we kept at it all day , going through the files , making stacks , and organizing .", "storylet_id": "224073"}], [{"original_text": "By the end of the day, we had them all sorted, and back in the drawers. ", "album_id": "72157623878185185", "photo_flickr_id": "4582718471", "setting": "last-3-pick-old-and-tell", "worker_id": "QSOGP6LHJHKK4JD", "story_id": "44814", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of the day , we had them all sorted , and back in the drawers .", "storylet_id": "224074"}], [{"original_text": "A Marine Band played live music at the charity event at The White House.", "album_id": "72157626657119476", "photo_flickr_id": "5691644571", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44815", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a marine band played live music at the charity event at the location location .", "storylet_id": "224075"}], [{"original_text": "The White House chefs prepared wonderful tasting appetizers with a southwest theme for the event.", "album_id": "72157626657119476", "photo_flickr_id": "5692215924", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44815", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the organization organization chefs prepared wonderful tasting appetizers with a southwest theme for the event .", "storylet_id": "224076"}], [{"original_text": "President Obama and his wife, Michelle, surprised everyone with a quick speech.", "album_id": "72157626657119476", "photo_flickr_id": "5691643229", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44815", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "president obama and his wife , [female] , surprised everyone with a quick speech .", "storylet_id": "224077"}], [{"original_text": "After the speech, President Obama mingled with the crowd.", "album_id": "72157626657119476", "photo_flickr_id": "5692214116", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44815", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the speech , president obama mingled with the crowd .", "storylet_id": "224078"}], [{"original_text": "There were a lot of local business people at the charity event.", "album_id": "72157626657119476", "photo_flickr_id": "5692214740", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "44815", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were a lot of local business people at the charity event .", "storylet_id": "224079"}], [{"original_text": "I was so excited to get invite to the White House.", "album_id": "72157626657119476", "photo_flickr_id": "5691644571", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44816", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was so excited to get invite to the organization organization .", "storylet_id": "224080"}], [{"original_text": "There was all kinds of food there.", "album_id": "72157626657119476", "photo_flickr_id": "5691645459", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44816", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was all kinds of food there .", "storylet_id": "224081"}], [{"original_text": "Even the napkins were official.", "album_id": "72157626657119476", "photo_flickr_id": "5691645167", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44816", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the napkins were official .", "storylet_id": "224082"}], [{"original_text": "I couldn't believe I was that close to the president.", "album_id": "72157626657119476", "photo_flickr_id": "5692214116", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44816", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i could n't believe i was that close to the president .", "storylet_id": "224083"}], [{"original_text": "It was awesome to see the president and first lady.", "album_id": "72157626657119476", "photo_flickr_id": "5691643229", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44816", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was awesome to see the president and first lady .", "storylet_id": "224084"}], [{"original_text": "Being invited to the White House is an honour that many dont get to claim. There is a special detail just for the music!", "album_id": "72157626657119476", "photo_flickr_id": "5691644571", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "44817", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "being invited to the organization organization is an honour that many dont get to claim . there is a special detail just for the music !", "storylet_id": "224085"}], [{"original_text": "The desserts are just as fancy though they are very common as well, not totally exotic. ", "album_id": "72157626657119476", "photo_flickr_id": "5691645459", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "44817", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the desserts are just as fancy though they are very common as well , not totally exotic .", "storylet_id": "224086"}], [{"original_text": "The best part about it is the signature objects that have the seal on it. Even on the napkins! ", "album_id": "72157626657119476", "photo_flickr_id": "5691645167", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "44817", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the best part about it is the signature objects that have the seal on it . even on the napkins !", "storylet_id": "224087"}], [{"original_text": "I didnt think I would even get to meet the President but here he was, walking among everyone and I even got to say hello. ", "album_id": "72157626657119476", "photo_flickr_id": "5692214116", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "44817", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i didnt think i would even get to meet the president but here he was , walking among everyone and i even got to say hello .", "storylet_id": "224088"}], [{"original_text": "Being invited to the White House is a major event and seeing the President (and First Lady) up close is definitely something to write home about! ", "album_id": "72157626657119476", "photo_flickr_id": "5691643229", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "44817", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "being invited to the organization organization is a major event and seeing the president ( and first lady ) up close is definitely something to write home about !", "storylet_id": "224089"}], [{"original_text": "The band is playing for the president.", "album_id": "72157626657119476", "photo_flickr_id": "5691644571", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44818", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the band is playing for the president .", "storylet_id": "224090"}], [{"original_text": "Food is layed out.", "album_id": "72157626657119476", "photo_flickr_id": "5692215924", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44818", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "food is layed out .", "storylet_id": "224091"}], [{"original_text": "The president makes a speech.", "album_id": "72157626657119476", "photo_flickr_id": "5691643229", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44818", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the president makes a speech .", "storylet_id": "224092"}], [{"original_text": "People clap after the speech.", "album_id": "72157626657119476", "photo_flickr_id": "5692214116", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44818", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people clap after the speech .", "storylet_id": "224093"}], [{"original_text": "These people were glad to see the president.", "album_id": "72157626657119476", "photo_flickr_id": "5692214740", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44818", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these people were glad to see the president .", "storylet_id": "224094"}], [{"original_text": "This is the band hired to play at the white house.", "album_id": "72157626657119476", "photo_flickr_id": "5691644571", "setting": "last-3-pick-old-and-tell", "worker_id": "AKJMVGOX0YE0HNC", "story_id": "44819", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the band hired to play at the organization organization .", "storylet_id": "224095"}], [{"original_text": "Here is some of the food available to the guests.", "album_id": "72157626657119476", "photo_flickr_id": "5692215924", "setting": "last-3-pick-old-and-tell", "worker_id": "AKJMVGOX0YE0HNC", "story_id": "44819", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is some of the food available to the guests .", "storylet_id": "224096"}], [{"original_text": "This is the president and the first lady getting ready to deliver a speech.", "album_id": "72157626657119476", "photo_flickr_id": "5691643229", "setting": "last-3-pick-old-and-tell", "worker_id": "AKJMVGOX0YE0HNC", "story_id": "44819", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the president and the first lady getting ready to deliver a speech .", "storylet_id": "224097"}], [{"original_text": "This is some of the press and other guests here to watch the president.", "album_id": "72157626657119476", "photo_flickr_id": "5692214116", "setting": "last-3-pick-old-and-tell", "worker_id": "AKJMVGOX0YE0HNC", "story_id": "44819", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is some of the press and other guests here to watch the president .", "storylet_id": "224098"}], [{"original_text": "This is a group of people who have gotten together for a photo opportunity. ", "album_id": "72157626657119476", "photo_flickr_id": "5692214740", "setting": "last-3-pick-old-and-tell", "worker_id": "AKJMVGOX0YE0HNC", "story_id": "44819", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a group of people who have gotten together for a photo opportunity .", "storylet_id": "224099"}], [{"original_text": "Okay so today I'm going to show you how to make my sugar bean soup. You start off with brown sugar and paprika. ", "album_id": "72157633408428325", "photo_flickr_id": "8709503427", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44820", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "okay so today i 'm going to show you how to make my sugar bean soup . you start off with brown sugar and paprika .", "storylet_id": "224100"}], [{"original_text": "In a separate bowl place minced garlic. ", "album_id": "72157633408428325", "photo_flickr_id": "8709503623", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44820", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in a separate bowl place minced garlic .", "storylet_id": "224101"}], [{"original_text": "Add in beans. Lots and lots of beans of any kind!", "album_id": "72157633408428325", "photo_flickr_id": "8710625694", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44820", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "add in beans . lots and lots of beans of any kind !", "storylet_id": "224102"}], [{"original_text": "Mix it all together with some chicken. Blend it up in a blender on high for 25 minutes!", "album_id": "72157633408428325", "photo_flickr_id": "8709503667", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44820", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "mix it all together with some chicken . blend it up in a blender on high for 25 minutes !", "storylet_id": "224103"}], [{"original_text": "Then add in green food dye and woo-lah! YUM! This will clean out your insides instantly!", "album_id": "72157633408428325", "photo_flickr_id": "8710625724", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44820", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then add in green food dye and woo-lah ! yum ! this will clean out your insides instantly !", "storylet_id": "224104"}], [{"original_text": "I start my perfect burrito with white rice.", "album_id": "72157633408428325", "photo_flickr_id": "8710625860", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "44821", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i start my perfect burrito with white rice .", "storylet_id": "224105"}], [{"original_text": "I then top it with lots of beans.", "album_id": "72157633408428325", "photo_flickr_id": "8710625694", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "44821", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i then top it with lots of beans .", "storylet_id": "224106"}], [{"original_text": "The next topping is shredded pork.", "album_id": "72157633408428325", "photo_flickr_id": "8710625666", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "44821", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next topping is shredded pork .", "storylet_id": "224107"}], [{"original_text": "I do love a hot green salsa next.", "album_id": "72157633408428325", "photo_flickr_id": "8710625724", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "44821", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i do love a hot green salsa next .", "storylet_id": "224108"}], [{"original_text": "Finally, some fresh cilantro makes the perfect last ingredient.", "album_id": "72157633408428325", "photo_flickr_id": "8709503055", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "44821", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , some fresh cilantro makes the perfect last ingredient .", "storylet_id": "224109"}], [{"original_text": "Different type of foods are in a bowl.", "album_id": "72157633408428325", "photo_flickr_id": "8709503427", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "44822", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "different type of foods are in a bowl .", "storylet_id": "224110"}], [{"original_text": "Another type of food in a bowl.", "album_id": "72157633408428325", "photo_flickr_id": "8709503623", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "44822", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "another type of food in a bowl .", "storylet_id": "224111"}], [{"original_text": "Some type of beans inside the bowl.", "album_id": "72157633408428325", "photo_flickr_id": "8710625694", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "44822", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some type of beans inside the bowl .", "storylet_id": "224112"}], [{"original_text": "Some food frying inside a pan with sauce on top.", "album_id": "72157633408428325", "photo_flickr_id": "8709503667", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "44822", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some food frying inside a pan with sauce on top .", "storylet_id": "224113"}], [{"original_text": "The sauce poured on type of the food that was in the pain.", "album_id": "72157633408428325", "photo_flickr_id": "8710625724", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "44822", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sauce poured on type of the food that was in the pain .", "storylet_id": "224114"}], [{"original_text": "First, Meg mixed the spices.", "album_id": "72157633408428325", "photo_flickr_id": "8709503427", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44823", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "first , meg mixed the spices .", "storylet_id": "224115"}], [{"original_text": "Next, she chopped the garlic.", "album_id": "72157633408428325", "photo_flickr_id": "8709503623", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44823", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next , she chopped the garlic .", "storylet_id": "224116"}], [{"original_text": "She then measured the beans.", "album_id": "72157633408428325", "photo_flickr_id": "8710625694", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44823", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she then measured the beans .", "storylet_id": "224117"}], [{"original_text": "She took her homemade sauce and put it over the meat.", "album_id": "72157633408428325", "photo_flickr_id": "8709503667", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44823", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she took her homemade sauce and put it over the meat .", "storylet_id": "224118"}], [{"original_text": "The results was a delicious meal!", "album_id": "72157633408428325", "photo_flickr_id": "8710625724", "setting": "last-3-pick-old-and-tell", "worker_id": "R21RL9KY5JIHXW9", "story_id": "44823", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the results was a delicious meal !", "storylet_id": "224119"}], [{"original_text": "Two different spices .", "album_id": "72157633408428325", "photo_flickr_id": "8709503427", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44824", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "two different spices .", "storylet_id": "224120"}], [{"original_text": "Cutting the garlic.", "album_id": "72157633408428325", "photo_flickr_id": "8709503623", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44824", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "cutting the garlic .", "storylet_id": "224121"}], [{"original_text": "And washing the beans. ", "album_id": "72157633408428325", "photo_flickr_id": "8710625694", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44824", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and washing the beans .", "storylet_id": "224122"}], [{"original_text": "Shredded chicken and the spices mixed together. ", "album_id": "72157633408428325", "photo_flickr_id": "8709503667", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44824", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "shredded chicken and the spices mixed together .", "storylet_id": "224123"}], [{"original_text": "The soup is ready. ", "album_id": "72157633408428325", "photo_flickr_id": "8710625724", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44824", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the soup is ready .", "storylet_id": "224124"}], [{"original_text": "I went to this years association meeting and it was a lot of fun.", "album_id": "72157649175321582", "photo_flickr_id": "15734046091", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "44825", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to this years association meeting and it was a lot of fun .", "storylet_id": "224125"}], [{"original_text": "There were a few speeches and lots of questions.", "album_id": "72157649175321582", "photo_flickr_id": "15550521388", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "44825", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a few speeches and lots of questions .", "storylet_id": "224126"}], [{"original_text": "Members got to learn many things from experienced business people in the community. ", "album_id": "72157649175321582", "photo_flickr_id": "15550781527", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "44825", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "members got to learn many things from experienced business people in the community .", "storylet_id": "224127"}], [{"original_text": "I learned a lot just listening to conversations that were abundant at the event. ", "album_id": "72157649175321582", "photo_flickr_id": "15712255666", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "44825", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i learned a lot just listening to conversations that were abundant at the event .", "storylet_id": "224128"}], [{"original_text": "We took a group photo before departing to implement some of the ideas we learned. ", "album_id": "72157649175321582", "photo_flickr_id": "15550521698", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "44825", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we took a group photo before departing to implement some of the ideas we learned .", "storylet_id": "224129"}], [{"original_text": "I had a blast with my group at our bla luck off event today ", "album_id": "72157649175321582", "photo_flickr_id": "15116582453", "setting": "first-2-pick-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "44826", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a blast with my group at our bla luck off event today", "storylet_id": "224130"}], [{"original_text": "Marco and issabbell are most dedicated workes I have on my team ", "album_id": "72157649175321582", "photo_flickr_id": "15734045541", "setting": "first-2-pick-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "44826", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] and issabbell are most dedicated workes i have on my team", "storylet_id": "224131"}], [{"original_text": "Here's our logo basic and right to the point ", "album_id": "72157649175321582", "photo_flickr_id": "15550092659", "setting": "first-2-pick-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "44826", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's our logo basic and right to the point", "storylet_id": "224132"}], [{"original_text": "Here's some of our members from our other offices ", "album_id": "72157649175321582", "photo_flickr_id": "15550781677", "setting": "first-2-pick-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "44826", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's some of our members from our other offices", "storylet_id": "224133"}], [{"original_text": "This is our president explaining how our business world to a potential customer ", "album_id": "72157649175321582", "photo_flickr_id": "15712255666", "setting": "first-2-pick-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "44826", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is our president explaining how our business world to a potential customer", "storylet_id": "224134"}], [{"original_text": "today i went the The BLA conference today", "album_id": "72157649175321582", "photo_flickr_id": "15734046091", "setting": "last-3-pick-old-and-tell", "worker_id": "2WEM5A9USOFOALT", "story_id": "44827", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i went the the organization conference today", "storylet_id": "224135"}], [{"original_text": "it was nice to go to a event centered around latin Americans", "album_id": "72157649175321582", "photo_flickr_id": "15550521388", "setting": "last-3-pick-old-and-tell", "worker_id": "2WEM5A9USOFOALT", "story_id": "44827", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was nice to go to a event centered around latin americans", "storylet_id": "224136"}], [{"original_text": "we all got to talk to each other and share advice", "album_id": "72157649175321582", "photo_flickr_id": "15550781527", "setting": "last-3-pick-old-and-tell", "worker_id": "2WEM5A9USOFOALT", "story_id": "44827", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all got to talk to each other and share advice", "storylet_id": "224137"}], [{"original_text": "a couple people got to make some serious business contacts", "album_id": "72157649175321582", "photo_flickr_id": "15712255666", "setting": "last-3-pick-old-and-tell", "worker_id": "2WEM5A9USOFOALT", "story_id": "44827", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a couple people got to make some serious business contacts", "storylet_id": "224138"}], [{"original_text": "afterwards we all took a photo i cant wait till next year to go back", "album_id": "72157649175321582", "photo_flickr_id": "15550521698", "setting": "last-3-pick-old-and-tell", "worker_id": "2WEM5A9USOFOALT", "story_id": "44827", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards we all took a photo i cant wait till next year to go back", "storylet_id": "224139"}], [{"original_text": "The work associates have come together about a meeting about Business Latin-American Association.", "album_id": "72157649175321582", "photo_flickr_id": "15734046091", "setting": "last-3-pick-old-and-tell", "worker_id": "SWB8VL5AN5HWWUK", "story_id": "44828", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the work associates have come together about a meeting about organization organization organization .", "storylet_id": "224140"}], [{"original_text": "They discuss the many topics that goes with this Association.", "album_id": "72157649175321582", "photo_flickr_id": "15550521388", "setting": "last-3-pick-old-and-tell", "worker_id": "SWB8VL5AN5HWWUK", "story_id": "44828", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they discuss the many topics that goes with this association .", "storylet_id": "224141"}], [{"original_text": "Two of the men are sharing what they think are the highlights of the meeting to them.", "album_id": "72157649175321582", "photo_flickr_id": "15550781527", "setting": "last-3-pick-old-and-tell", "worker_id": "SWB8VL5AN5HWWUK", "story_id": "44828", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two of the men are sharing what they think are the highlights of the meeting to them .", "storylet_id": "224142"}], [{"original_text": "They then go back and tell others about what they thought the highlights were about.", "album_id": "72157649175321582", "photo_flickr_id": "15712255666", "setting": "last-3-pick-old-and-tell", "worker_id": "SWB8VL5AN5HWWUK", "story_id": "44828", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they then go back and tell others about what they thought the highlights were about .", "storylet_id": "224143"}], [{"original_text": "At the end of it all, they all felt they learned, and better understood, what it means to be apart of the Business Latin-American Association.", "album_id": "72157649175321582", "photo_flickr_id": "15550521698", "setting": "last-3-pick-old-and-tell", "worker_id": "SWB8VL5AN5HWWUK", "story_id": "44828", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of it all , they all felt they learned , and better understood , what it means to be apart of the organization organization organization .", "storylet_id": "224144"}], [{"original_text": "Taking a picture in front of the sign. ", "album_id": "72157649175321582", "photo_flickr_id": "15734046091", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44829", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "taking a picture in front of the sign .", "storylet_id": "224145"}], [{"original_text": "Presenting and promoting their business. ", "album_id": "72157649175321582", "photo_flickr_id": "15550521388", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44829", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "presenting and promoting their business .", "storylet_id": "224146"}], [{"original_text": "Having a chat with a business fellow. ", "album_id": "72157649175321582", "photo_flickr_id": "15550781527", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44829", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "having a chat with a business fellow .", "storylet_id": "224147"}], [{"original_text": "And sharing ideas. ", "album_id": "72157649175321582", "photo_flickr_id": "15712255666", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44829", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and sharing ideas .", "storylet_id": "224148"}], [{"original_text": "The young entrepreneurs taking a picture. ", "album_id": "72157649175321582", "photo_flickr_id": "15550521698", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44829", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the young entrepreneurs taking a picture .", "storylet_id": "224149"}], [{"original_text": "Today was my special fighting cancer party! ", "album_id": "72157629757439172", "photo_flickr_id": "7210046716", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44830", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was my special fighting cancer party !", "storylet_id": "224150"}], [{"original_text": "I got to play pin the tail on the donkey and I danced in front of everyone. ", "album_id": "72157629757439172", "photo_flickr_id": "7210044142", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44830", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got to play pin the tail on the donkey and i danced in front of everyone .", "storylet_id": "224151"}], [{"original_text": "My friend Stacie played games too. She was really great! ", "album_id": "72157629757439172", "photo_flickr_id": "7210043776", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44830", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friend [female] played games too . she was really great !", "storylet_id": "224152"}], [{"original_text": "Danielle could barely walk but she ditched her crutches and went for it anyways. She won a huge prize! ", "album_id": "72157629757439172", "photo_flickr_id": "7210042892", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44830", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] could barely walk but she ditched her crutches and went for it anyways . she won a huge prize !", "storylet_id": "224153"}], [{"original_text": "Adam gave me a big hug and told me to wish him luck. He won at pin the tail on the donkey! He's now my boyfriend. ", "album_id": "72157629757439172", "photo_flickr_id": "7210045734", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44830", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] gave me a big hug and told me to wish him luck . he won at pin the tail on the donkey ! he 's now my boyfriend .", "storylet_id": "224154"}], [{"original_text": "We had parents day at the kids school today.", "album_id": "72157629757439172", "photo_flickr_id": "7210044142", "setting": "first-2-pick-and-tell", "worker_id": "O4CA8AQUET4E8QN", "story_id": "44831", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had parents day at the kids school today .", "storylet_id": "224155"}], [{"original_text": "Everyone had a great time.", "album_id": "72157629757439172", "photo_flickr_id": "7210044490", "setting": "first-2-pick-and-tell", "worker_id": "O4CA8AQUET4E8QN", "story_id": "44831", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone had a great time .", "storylet_id": "224156"}], [{"original_text": "All the kids showed off and played games.", "album_id": "72157629757439172", "photo_flickr_id": "7210046174", "setting": "first-2-pick-and-tell", "worker_id": "O4CA8AQUET4E8QN", "story_id": "44831", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the kids showed off and played games .", "storylet_id": "224157"}], [{"original_text": "We had arts and crafts.", "album_id": "72157629757439172", "photo_flickr_id": "7210039292", "setting": "first-2-pick-and-tell", "worker_id": "O4CA8AQUET4E8QN", "story_id": "44831", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had arts and crafts .", "storylet_id": "224158"}], [{"original_text": "Even the some of the parents got creative.", "album_id": "72157629757439172", "photo_flickr_id": "7210046922", "setting": "first-2-pick-and-tell", "worker_id": "O4CA8AQUET4E8QN", "story_id": "44831", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the some of the parents got creative .", "storylet_id": "224159"}], [{"original_text": "Here's the birthday girl. ", "album_id": "72157629757439172", "photo_flickr_id": "7210046716", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "44832", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here 's the birthday girl .", "storylet_id": "224160"}], [{"original_text": "Her friend got up and did hop scotch. ", "album_id": "72157629757439172", "photo_flickr_id": "7210044142", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "44832", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her friend got up and did hop scotch .", "storylet_id": "224161"}], [{"original_text": "Time to blind the kids for pin the tail on the donkey.", "album_id": "72157629757439172", "photo_flickr_id": "7210043776", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "44832", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "time to blind the kids for pin the tail on the donkey .", "storylet_id": "224162"}], [{"original_text": "She could jump really far. ", "album_id": "72157629757439172", "photo_flickr_id": "7210042892", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "44832", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she could jump really far .", "storylet_id": "224163"}], [{"original_text": "He was so scared, he almost walked into his Mom. ", "album_id": "72157629757439172", "photo_flickr_id": "7210045734", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "44832", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was so scared , he almost walked into his mom .", "storylet_id": "224164"}], [{"original_text": "It is play day at the school.", "album_id": "72157629757439172", "photo_flickr_id": "7210046716", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44833", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is play day at the school .", "storylet_id": "224165"}], [{"original_text": "Lots of kids are there to play.", "album_id": "72157629757439172", "photo_flickr_id": "7210044142", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44833", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of kids are there to play .", "storylet_id": "224166"}], [{"original_text": "They have set up lots of different games.", "album_id": "72157629757439172", "photo_flickr_id": "7210043776", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44833", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they have set up lots of different games .", "storylet_id": "224167"}], [{"original_text": "The kids all get ready and begin to play.", "album_id": "72157629757439172", "photo_flickr_id": "7210042892", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44833", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids all get ready and begin to play .", "storylet_id": "224168"}], [{"original_text": "They all have so much fun!", "album_id": "72157629757439172", "photo_flickr_id": "7210045734", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44833", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all have so much fun !", "storylet_id": "224169"}], [{"original_text": "Today I spent the day at my daughter's school. ", "album_id": "72157629757439172", "photo_flickr_id": "7210044142", "setting": "last-3-pick-old-and-tell", "worker_id": "EKDHCLOYDWCPPBW", "story_id": "44834", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i spent the day at my daughter 's school .", "storylet_id": "224170"}], [{"original_text": "We played a lot of games. Here's my daughter blindfolded. ", "album_id": "72157629757439172", "photo_flickr_id": "7210044490", "setting": "last-3-pick-old-and-tell", "worker_id": "EKDHCLOYDWCPPBW", "story_id": "44834", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we played a lot of games . here 's my daughter blindfolded .", "storylet_id": "224171"}], [{"original_text": "You had to walk on a straight line without falling off.", "album_id": "72157629757439172", "photo_flickr_id": "7210046174", "setting": "last-3-pick-old-and-tell", "worker_id": "EKDHCLOYDWCPPBW", "story_id": "44834", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you had to walk on a straight line without falling off .", "storylet_id": "224172"}], [{"original_text": "Here is my daughter's best friend and parents from school. ", "album_id": "72157629757439172", "photo_flickr_id": "7210039292", "setting": "last-3-pick-old-and-tell", "worker_id": "EKDHCLOYDWCPPBW", "story_id": "44834", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is my daughter 's best friend and parents from school .", "storylet_id": "224173"}], [{"original_text": "It was a fun day, and my daughters was happy to spend the day with me and her friends. ", "album_id": "72157629757439172", "photo_flickr_id": "7210046922", "setting": "last-3-pick-old-and-tell", "worker_id": "EKDHCLOYDWCPPBW", "story_id": "44834", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a fun day , and my daughters was happy to spend the day with me and her friends .", "storylet_id": "224174"}], [{"original_text": "My husband enjoyed his drink.", "album_id": "72157605150885292", "photo_flickr_id": "2503602273", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44835", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband enjoyed his drink .", "storylet_id": "224175"}], [{"original_text": "He enjoyed it to much he has a second drink.", "album_id": "72157605150885292", "photo_flickr_id": "2504436152", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44835", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he enjoyed it to much he has a second drink .", "storylet_id": "224176"}], [{"original_text": "I really liked my cocktail too.", "album_id": "72157605150885292", "photo_flickr_id": "2504438070", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44835", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i really liked my cocktail too .", "storylet_id": "224177"}], [{"original_text": "I finished it in no time.", "album_id": "72157605150885292", "photo_flickr_id": "2504444754", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44835", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i finished it in no time .", "storylet_id": "224178"}], [{"original_text": "Then we walked to our next destination.", "album_id": "72157605150885292", "photo_flickr_id": "2503617293", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44835", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we walked to our next destination .", "storylet_id": "224179"}], [{"original_text": "We are walking downtown to attend the art fair.", "album_id": "72157605150885292", "photo_flickr_id": "2503614979", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "44836", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are walking downtown to attend the art fair .", "storylet_id": "224180"}], [{"original_text": "The street is blocked to keep things safe.", "album_id": "72157605150885292", "photo_flickr_id": "2503617293", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "44836", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the street is blocked to keep things safe .", "storylet_id": "224181"}], [{"original_text": "The kids are working over some snacks.", "album_id": "72157605150885292", "photo_flickr_id": "2504432230", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "44836", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids are working over some snacks .", "storylet_id": "224182"}], [{"original_text": "I'm enjoying the moment.", "album_id": "72157605150885292", "photo_flickr_id": "2503602273", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "44836", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'm enjoying the moment .", "storylet_id": "224183"}], [{"original_text": "My wife smiles back.", "album_id": "72157605150885292", "photo_flickr_id": "2504438070", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "44836", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my wife smiles back .", "storylet_id": "224184"}], [{"original_text": "A couple of tall buildings are the focal point in this shot.", "album_id": "72157605150885292", "photo_flickr_id": "2503614979", "setting": "last-3-pick-old-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "44837", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a couple of tall buildings are the focal point in this shot .", "storylet_id": "224185"}], [{"original_text": "A few people are walking down the sidewalk on a bright and sunny day.", "album_id": "72157605150885292", "photo_flickr_id": "2503617293", "setting": "last-3-pick-old-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "44837", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a few people are walking down the sidewalk on a bright and sunny day .", "storylet_id": "224186"}], [{"original_text": "The kids take a break and have a meal of sodas and sandwiches on the sidewalk.", "album_id": "72157605150885292", "photo_flickr_id": "2504432230", "setting": "last-3-pick-old-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "44837", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids take a break and have a meal of sodas and sandwiches on the sidewalk .", "storylet_id": "224187"}], [{"original_text": "Looks like this guy is enjoying his drink.", "album_id": "72157605150885292", "photo_flickr_id": "2503602273", "setting": "last-3-pick-old-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "44837", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "looks like this guy is enjoying his drink .", "storylet_id": "224188"}], [{"original_text": "However, she is making a pucker face, so it might not be as yummy for her.", "album_id": "72157605150885292", "photo_flickr_id": "2504438070", "setting": "last-3-pick-old-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "44837", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , she is making a pucker face , so it might not be as yummy for her .", "storylet_id": "224189"}], [{"original_text": "Having a beer for lunch. ", "album_id": "72157605150885292", "photo_flickr_id": "2503602273", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44838", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "having a beer for lunch .", "storylet_id": "224190"}], [{"original_text": "With a friend, cheers. ", "album_id": "72157605150885292", "photo_flickr_id": "2504436152", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44838", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "with a friend , cheers .", "storylet_id": "224191"}], [{"original_text": "She doesn't really like the beer though. ", "album_id": "72157605150885292", "photo_flickr_id": "2504438070", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44838", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she does n't really like the beer though .", "storylet_id": "224192"}], [{"original_text": "But is taking a few sips anyway. ", "album_id": "72157605150885292", "photo_flickr_id": "2504444754", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44838", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but is taking a few sips anyway .", "storylet_id": "224193"}], [{"original_text": "It was a great get together on this beautiful sunny day. ", "album_id": "72157605150885292", "photo_flickr_id": "2503617293", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44838", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a great get together on this beautiful sunny day .", "storylet_id": "224194"}], [{"original_text": "Exploring a new city is fun.", "album_id": "72157605150885292", "photo_flickr_id": "2503614979", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44839", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "exploring a new city is fun .", "storylet_id": "224195"}], [{"original_text": "We walked all over the place.", "album_id": "72157605150885292", "photo_flickr_id": "2503617293", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44839", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we walked all over the place .", "storylet_id": "224196"}], [{"original_text": "We finally took a break. The kids were hungry!", "album_id": "72157605150885292", "photo_flickr_id": "2504432230", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44839", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we finally took a break . the kids were hungry !", "storylet_id": "224197"}], [{"original_text": "Dad needed a drink!", "album_id": "72157605150885292", "photo_flickr_id": "2503602273", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44839", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "dad needed a drink !", "storylet_id": "224198"}], [{"original_text": "Mom needed one even more!", "album_id": "72157605150885292", "photo_flickr_id": "2504438070", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44839", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mom needed one even more !", "storylet_id": "224199"}], [{"original_text": "There is a BioDiesel demonstration in town.", "album_id": "72157605160411648", "photo_flickr_id": "2509436570", "setting": "first-2-pick-and-tell", "worker_id": "MP036WJIR3IALUV", "story_id": "44840", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is a biodiesel demonstration in town .", "storylet_id": "224200"}], [{"original_text": "They will show people how BioDiesel is made.", "album_id": "72157605160411648", "photo_flickr_id": "2509436906", "setting": "first-2-pick-and-tell", "worker_id": "MP036WJIR3IALUV", "story_id": "44840", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they will show people how biodiesel is made .", "storylet_id": "224201"}], [{"original_text": "There will also educational information about how much more energy efficient BioDiesel is.", "album_id": "72157605160411648", "photo_flickr_id": "2509437690", "setting": "first-2-pick-and-tell", "worker_id": "MP036WJIR3IALUV", "story_id": "44840", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there will also educational information about how much more energy efficient biodiesel is .", "storylet_id": "224202"}], [{"original_text": "A buffet will be offered to participants.", "album_id": "72157605160411648", "photo_flickr_id": "2509437884", "setting": "first-2-pick-and-tell", "worker_id": "MP036WJIR3IALUV", "story_id": "44840", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a buffet will be offered to participants .", "storylet_id": "224203"}], [{"original_text": "Hopefully, by raising awareness, the Earth can become a better place. ", "album_id": "72157605160411648", "photo_flickr_id": "2509437974", "setting": "first-2-pick-and-tell", "worker_id": "MP036WJIR3IALUV", "story_id": "44840", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "hopefully , by raising awareness , the location can become a better place .", "storylet_id": "224204"}], [{"original_text": "Working together can create a family.", "album_id": "72157605160411648", "photo_flickr_id": "2509436394", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "44841", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "working together can create a family .", "storylet_id": "224205"}], [{"original_text": "Such close conditions and striving for common goals brings about strong bonds. ", "album_id": "72157605160411648", "photo_flickr_id": "2508607957", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "44841", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "such close conditions and striving for common goals brings about strong bonds .", "storylet_id": "224206"}], [{"original_text": "But it can't all be about work, and fun must be had too.", "album_id": "72157605160411648", "photo_flickr_id": "2509436906", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "44841", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but it ca n't all be about work , and fun must be had too .", "storylet_id": "224207"}], [{"original_text": "Sometimes even things like taking time to grocery shop together can make the day go by easier.", "album_id": "72157605160411648", "photo_flickr_id": "2509437018", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "44841", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes even things like taking time to grocery shop together can make the day go by easier .", "storylet_id": "224208"}], [{"original_text": "It helps keep everyone in top form to teach the public!", "album_id": "72157605160411648", "photo_flickr_id": "2509437690", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "44841", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it helps keep everyone in top form to teach the public !", "storylet_id": "224209"}], [{"original_text": "Going to a meeting at work.", "album_id": "72157605160411648", "photo_flickr_id": "2509436570", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "44842", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going to a meeting at work .", "storylet_id": "224210"}], [{"original_text": "Getting things ready to go.", "album_id": "72157605160411648", "photo_flickr_id": "2509436906", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "44842", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "getting things ready to go .", "storylet_id": "224211"}], [{"original_text": "Learning some knowledge of how everything works.", "album_id": "72157605160411648", "photo_flickr_id": "2509437690", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "44842", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "learning some knowledge of how everything works .", "storylet_id": "224212"}], [{"original_text": "Time to eat and talk.", "album_id": "72157605160411648", "photo_flickr_id": "2509437884", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "44842", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "time to eat and talk .", "storylet_id": "224213"}], [{"original_text": "What a great view of the mountains with the sun going down.", "album_id": "72157605160411648", "photo_flickr_id": "2509437974", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "44842", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what a great view of the mountains with the sun going down .", "storylet_id": "224214"}], [{"original_text": "We are headed out to the field today to work.", "album_id": "72157605160411648", "photo_flickr_id": "2509436394", "setting": "last-3-pick-old-and-tell", "worker_id": "1RU6Y2V453O905C", "story_id": "44843", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are headed out to the field today to work .", "storylet_id": "224215"}], [{"original_text": " Before we leave, we have a metting on what we are going to do.", "album_id": "72157605160411648", "photo_flickr_id": "2508607957", "setting": "last-3-pick-old-and-tell", "worker_id": "1RU6Y2V453O905C", "story_id": "44843", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "before we leave , we have a metting on what we are going to do .", "storylet_id": "224216"}], [{"original_text": "After the meeting we get all our stuff togther.", "album_id": "72157605160411648", "photo_flickr_id": "2509436906", "setting": "last-3-pick-old-and-tell", "worker_id": "1RU6Y2V453O905C", "story_id": "44843", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the meeting we get all our stuff togther .", "storylet_id": "224217"}], [{"original_text": "We check the van to make sure there is no issues.", "album_id": "72157605160411648", "photo_flickr_id": "2509437018", "setting": "last-3-pick-old-and-tell", "worker_id": "1RU6Y2V453O905C", "story_id": "44843", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we check the van to make sure there is no issues .", "storylet_id": "224218"}], [{"original_text": "Finally our debriefing we head off to work. ", "album_id": "72157605160411648", "photo_flickr_id": "2509437690", "setting": "last-3-pick-old-and-tell", "worker_id": "1RU6Y2V453O905C", "story_id": "44843", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally our debriefing we head off to work .", "storylet_id": "224219"}], [{"original_text": "My class is studying biodiesel.", "album_id": "72157605160411648", "photo_flickr_id": "2509436570", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44844", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my class is studying biodiesel .", "storylet_id": "224220"}], [{"original_text": "We are investigating how it can be used in more vehicles.", "album_id": "72157605160411648", "photo_flickr_id": "2509436906", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44844", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we are investigating how it can be used in more vehicles .", "storylet_id": "224221"}], [{"original_text": "We made presentations.", "album_id": "72157605160411648", "photo_flickr_id": "2509437690", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44844", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we made presentations .", "storylet_id": "224222"}], [{"original_text": "Somebody even brought snacks!", "album_id": "72157605160411648", "photo_flickr_id": "2509437884", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44844", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "somebody even brought snacks !", "storylet_id": "224223"}], [{"original_text": "It is important to have good fuel in such a mountainous area!", "album_id": "72157605160411648", "photo_flickr_id": "2509437974", "setting": "last-3-pick-old-and-tell", "worker_id": "Y13U4TW1HCKZNW7", "story_id": "44844", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is important to have good fuel in such a mountainous area !", "storylet_id": "224224"}], [{"original_text": "A group of cyclists got together for a night ride.", "album_id": "72057594126802223", "photo_flickr_id": "141226333", "setting": "first-2-pick-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "44845", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of cyclists got together for a night ride .", "storylet_id": "224225"}], [{"original_text": "More and more people showed up on bikes.", "album_id": "72057594126802223", "photo_flickr_id": "141189572", "setting": "first-2-pick-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "44845", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "more and more people showed up on bikes .", "storylet_id": "224226"}], [{"original_text": "They started their journey in a dark part of the city.", "album_id": "72057594126802223", "photo_flickr_id": "141184641", "setting": "first-2-pick-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "44845", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they started their journey in a dark part of the city .", "storylet_id": "224227"}], [{"original_text": "The ride through the tunnel was a great experience.", "album_id": "72057594126802223", "photo_flickr_id": "141185179", "setting": "first-2-pick-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "44845", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ride through the tunnel was a great experience .", "storylet_id": "224228"}], [{"original_text": "All that riding made them very hungry.", "album_id": "72057594126802223", "photo_flickr_id": "141210689", "setting": "first-2-pick-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "44845", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all that riding made them very hungry .", "storylet_id": "224229"}], [{"original_text": "We all came downtown by bicycle and met on the corner. ", "album_id": "72057594126802223", "photo_flickr_id": "141226333", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "44846", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all came downtown by bicycle and met on the corner .", "storylet_id": "224230"}], [{"original_text": "We would have came by stretch Hummer, but we were poor and couldn't afford the gas. ", "album_id": "72057594126802223", "photo_flickr_id": "141225217", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "44846", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we would have came by stretch hummer , but we were poor and could n't afford the gas .", "storylet_id": "224231"}], [{"original_text": "By going to the cafeteria we could afford some energy food for ourselves though. ", "album_id": "72057594126802223", "photo_flickr_id": "141210689", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "44846", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "by going to the cafeteria we could afford some energy food for ourselves though .", "storylet_id": "224232"}], [{"original_text": "A little taco and a little Pepsi and we were good to go. ", "album_id": "72057594126802223", "photo_flickr_id": "141215604", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "44846", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a little taco and a little organization and we were good to go .", "storylet_id": "224233"}], [{"original_text": "It was a good night but we had a long ride home. ", "album_id": "72057594126802223", "photo_flickr_id": "141185179", "setting": "first-2-pick-and-tell", "worker_id": "0EBONIVPIM6U4DI", "story_id": "44846", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a good night but we had a long ride home .", "storylet_id": "224234"}], [{"original_text": "Eric and his friends went on a bike run at night in the City.", "album_id": "72057594126802223", "photo_flickr_id": "141226333", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "44847", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and his friends went on a bike run at night in the city .", "storylet_id": "224235"}], [{"original_text": "They started to gather near the park.", "album_id": "72057594126802223", "photo_flickr_id": "141189572", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "44847", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they started to gather near the park .", "storylet_id": "224236"}], [{"original_text": "They traveled all over the city.", "album_id": "72057594126802223", "photo_flickr_id": "141184641", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "44847", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they traveled all over the city .", "storylet_id": "224237"}], [{"original_text": "Through tunnels and over bridges.", "album_id": "72057594126802223", "photo_flickr_id": "141185179", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "44847", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "through tunnels and over bridges .", "storylet_id": "224238"}], [{"original_text": "Finally stopping at their favorite food truck spot for some burritos. ", "album_id": "72057594126802223", "photo_flickr_id": "141210689", "setting": "last-3-pick-old-and-tell", "worker_id": "K3K8U4BBV9ICHW2", "story_id": "44847", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally stopping at their favorite food truck spot for some burritos .", "storylet_id": "224239"}], [{"original_text": "We went bike riding at night.", "album_id": "72057594126802223", "photo_flickr_id": "141226333", "setting": "last-3-pick-old-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44848", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went bike riding at night .", "storylet_id": "224240"}], [{"original_text": "We made sure to leave the car in a safe place.", "album_id": "72057594126802223", "photo_flickr_id": "141225217", "setting": "last-3-pick-old-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44848", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made sure to leave the car in a safe place .", "storylet_id": "224241"}], [{"original_text": "After we went to the taco truck to have a good meal.", "album_id": "72057594126802223", "photo_flickr_id": "141210689", "setting": "last-3-pick-old-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44848", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after we went to the taco truck to have a good meal .", "storylet_id": "224242"}], [{"original_text": "It was so delicious we ate a ton.", "album_id": "72057594126802223", "photo_flickr_id": "141215604", "setting": "last-3-pick-old-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44848", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was so delicious we ate a ton .", "storylet_id": "224243"}], [{"original_text": "We finished our ride around the city at 10.", "album_id": "72057594126802223", "photo_flickr_id": "141185179", "setting": "last-3-pick-old-and-tell", "worker_id": "49ZCCR4AMZ2FC3X", "story_id": "44848", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we finished our ride around the city at 10 .", "storylet_id": "224244"}], [{"original_text": "My friends convinced me to go on an evening bike ride.", "album_id": "72057594126802223", "photo_flickr_id": "141226333", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "44849", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends convinced me to go on an evening bike ride .", "storylet_id": "224245"}], [{"original_text": "I typically take my hummer everywhere at night, so this was a big change.", "album_id": "72057594126802223", "photo_flickr_id": "141225217", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "44849", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i typically take my hummer everywhere at night , so this was a big change .", "storylet_id": "224246"}], [{"original_text": "I made a number of stops along the way, including a stop at a Chinese food truck.", "album_id": "72057594126802223", "photo_flickr_id": "141210689", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "44849", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i made a number of stops along the way , including a stop at a chinese food truck .", "storylet_id": "224247"}], [{"original_text": "The food was great and I completely cleaned my plate.", "album_id": "72057594126802223", "photo_flickr_id": "141215604", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "44849", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food was great and i completely cleaned my plate .", "storylet_id": "224248"}], [{"original_text": "Once I was full I hopped back on my bike and cruised into the night.", "album_id": "72057594126802223", "photo_flickr_id": "141185179", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "44849", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once i was full i hopped back on my bike and cruised into the night .", "storylet_id": "224249"}], [{"original_text": "I went to go visit my grandma's farm.", "album_id": "72057594127370852", "photo_flickr_id": "141622174", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "44850", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to go visit my grandma 's farm .", "storylet_id": "224250"}], [{"original_text": "They had cute looking dogs.", "album_id": "72057594127370852", "photo_flickr_id": "141619041", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "44850", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had cute looking dogs .", "storylet_id": "224251"}], [{"original_text": "They had a picnic outside with the neighbors.", "album_id": "72057594127370852", "photo_flickr_id": "141614881", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "44850", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a picnic outside with the neighbors .", "storylet_id": "224252"}], [{"original_text": "She had a lot of horses on the farm.", "album_id": "72057594127370852", "photo_flickr_id": "141615454", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "44850", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she had a lot of horses on the farm .", "storylet_id": "224253"}], [{"original_text": "I dressed up her statue dog as well.", "album_id": "72057594127370852", "photo_flickr_id": "142696377", "setting": "first-2-pick-and-tell", "worker_id": "EQXK3HZN36AS8TQ", "story_id": "44850", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i dressed up her statue dog as well .", "storylet_id": "224254"}], [{"original_text": "Saturday we made a trip up to a local farm to check out some of the animals. First up were horses.", "album_id": "72057594127370852", "photo_flickr_id": "141615128", "setting": "first-2-pick-and-tell", "worker_id": "DMQO2L97Y1QRZGF", "story_id": "44851", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "saturday we made a trip up to a local farm to check out some of the animals . first up were horses .", "storylet_id": "224255"}], [{"original_text": "We noticed a friendly dog walking around the farm.", "album_id": "72057594127370852", "photo_flickr_id": "141619406", "setting": "first-2-pick-and-tell", "worker_id": "DMQO2L97Y1QRZGF", "story_id": "44851", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we noticed a friendly dog walking around the farm .", "storylet_id": "224256"}], [{"original_text": "Goats were gently bleating nearby. We saw several baby goats.", "album_id": "72057594127370852", "photo_flickr_id": "141616258", "setting": "first-2-pick-and-tell", "worker_id": "DMQO2L97Y1QRZGF", "story_id": "44851", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "goats were gently bleating nearby . we saw several baby goats .", "storylet_id": "224257"}], [{"original_text": "Next we were allowed to feed a llama.", "album_id": "72057594127370852", "photo_flickr_id": "141618902", "setting": "first-2-pick-and-tell", "worker_id": "DMQO2L97Y1QRZGF", "story_id": "44851", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next we were allowed to feed a llama .", "storylet_id": "224258"}], [{"original_text": "After viewing the animals, we all met up to enjoy a picnic on the property!", "album_id": "72057594127370852", "photo_flickr_id": "141614881", "setting": "first-2-pick-and-tell", "worker_id": "DMQO2L97Y1QRZGF", "story_id": "44851", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after viewing the animals , we all met up to enjoy a picnic on the property !", "storylet_id": "224259"}], [{"original_text": "The Cinco De Meyo celebration started off early that morning with mom grabbing a bag of tortilla chips for breakfast. ", "album_id": "72057594127370852", "photo_flickr_id": "141622174", "setting": "last-3-pick-old-and-tell", "worker_id": "HR1HW5KCUBTKNYJ", "story_id": "44852", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization organization organization celebration started off early that morning with mom grabbing a bag of tortilla chips for breakfast .", "storylet_id": "224260"}], [{"original_text": "Our dog, Scotty, was bright eyed and bushy tail waiting for the guests to arrive. ", "album_id": "72057594127370852", "photo_flickr_id": "141619041", "setting": "last-3-pick-old-and-tell", "worker_id": "HR1HW5KCUBTKNYJ", "story_id": "44852", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our dog , [male] , was bright eyed and bushy tail waiting for the guests to arrive .", "storylet_id": "224261"}], [{"original_text": "Outside grandma was putting up decorations for the party. ", "album_id": "72057594127370852", "photo_flickr_id": "141614881", "setting": "last-3-pick-old-and-tell", "worker_id": "HR1HW5KCUBTKNYJ", "story_id": "44852", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "outside grandma was putting up decorations for the party .", "storylet_id": "224262"}], [{"original_text": "The horses were fed and moved to a different area so they wouldn't bother anyone. ", "album_id": "72057594127370852", "photo_flickr_id": "141615454", "setting": "last-3-pick-old-and-tell", "worker_id": "HR1HW5KCUBTKNYJ", "story_id": "44852", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the horses were fed and moved to a different area so they would n't bother anyone .", "storylet_id": "224263"}], [{"original_text": "the last thing we did before the party was dress up Scotty. ", "album_id": "72057594127370852", "photo_flickr_id": "142696377", "setting": "last-3-pick-old-and-tell", "worker_id": "HR1HW5KCUBTKNYJ", "story_id": "44852", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last thing we did before the party was dress up [male] .", "storylet_id": "224264"}], [{"original_text": "The lady was eating a bag of chips.", "album_id": "72057594127370852", "photo_flickr_id": "141622174", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44853", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the lady was eating a bag of chips .", "storylet_id": "224265"}], [{"original_text": "The dog really wanted some.", "album_id": "72057594127370852", "photo_flickr_id": "141619041", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44853", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dog really wanted some .", "storylet_id": "224266"}], [{"original_text": "Outside they were getting ready for a party.", "album_id": "72057594127370852", "photo_flickr_id": "141614881", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44853", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "outside they were getting ready for a party .", "storylet_id": "224267"}], [{"original_text": "While this was going on, the horse was eating.", "album_id": "72057594127370852", "photo_flickr_id": "141615454", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44853", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while this was going on , the horse was eating .", "storylet_id": "224268"}], [{"original_text": "The dog got into the festivities as well.", "album_id": "72057594127370852", "photo_flickr_id": "142696377", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44853", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dog got into the festivities as well .", "storylet_id": "224269"}], [{"original_text": "The owner of a animal rescue got ready for the big day.", "album_id": "72057594127370852", "photo_flickr_id": "141622174", "setting": "last-3-pick-old-and-tell", "worker_id": "ITUBCQ63FV1QS7D", "story_id": "44854", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the owner of a animal rescue got ready for the big day .", "storylet_id": "224270"}], [{"original_text": "She was taking her rescue animals to an adoption event. ", "album_id": "72057594127370852", "photo_flickr_id": "141619041", "setting": "last-3-pick-old-and-tell", "worker_id": "ITUBCQ63FV1QS7D", "story_id": "44854", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she was taking her rescue animals to an adoption event .", "storylet_id": "224271"}], [{"original_text": "There were dogs, cats, ", "album_id": "72057594127370852", "photo_flickr_id": "141614881", "setting": "last-3-pick-old-and-tell", "worker_id": "ITUBCQ63FV1QS7D", "story_id": "44854", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were dogs , cats ,", "storylet_id": "224272"}], [{"original_text": "and horses all waiting to be adopted by loving families. Their was a big turnout. ", "album_id": "72057594127370852", "photo_flickr_id": "141615454", "setting": "last-3-pick-old-and-tell", "worker_id": "ITUBCQ63FV1QS7D", "story_id": "44854", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and horses all waiting to be adopted by loving families . their was a big turnout .", "storylet_id": "224273"}], [{"original_text": "Many of the animals were adopted out. Even Pablo the greyhound was adopted. It was a successful event. ", "album_id": "72057594127370852", "photo_flickr_id": "142696377", "setting": "last-3-pick-old-and-tell", "worker_id": "ITUBCQ63FV1QS7D", "story_id": "44854", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many of the animals were adopted out . even [male] the greyhound was adopted . it was a successful event .", "storylet_id": "224274"}], [{"original_text": "Charities are a good cause to put together an event for. ", "album_id": "72157600183876481", "photo_flickr_id": "486895843", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "44855", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "charities are a good cause to put together an event for .", "storylet_id": "224275"}], [{"original_text": "Often large centers are required to hold the numbers of people that will show as well as provide room for any acts that might perform. ", "album_id": "72157600183876481", "photo_flickr_id": "486865840", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "44855", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "often large centers are required to hold the numbers of people that will show as well as provide room for any acts that might perform .", "storylet_id": "224276"}], [{"original_text": "Here such a performer is helped to gain height in order to entertain her audience. ", "album_id": "72157600183876481", "photo_flickr_id": "486897027", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "44855", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here such a performer is helped to gain height in order to entertain her audience .", "storylet_id": "224277"}], [{"original_text": "She works hard at the charity event. ", "album_id": "72157600183876481", "photo_flickr_id": "486896037", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "44855", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she works hard at the charity event .", "storylet_id": "224278"}], [{"original_text": "And people enjoy the show.", "album_id": "72157600183876481", "photo_flickr_id": "486863412", "setting": "first-2-pick-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "44855", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and people enjoy the show .", "storylet_id": "224279"}], [{"original_text": "I have received so many texts regarding the program for today.", "album_id": "72157600183876481", "photo_flickr_id": "486895365", "setting": "first-2-pick-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "44856", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have received so many texts regarding the program for today .", "storylet_id": "224280"}], [{"original_text": "Everyone is so excited it is being shared across social media.", "album_id": "72157600183876481", "photo_flickr_id": "486898785", "setting": "first-2-pick-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "44856", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone is so excited it is being shared across social media .", "storylet_id": "224281"}], [{"original_text": "The turnout was larger than we had expected.", "album_id": "72157600183876481", "photo_flickr_id": "486865840", "setting": "first-2-pick-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "44856", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the turnout was larger than we had expected .", "storylet_id": "224282"}], [{"original_text": "The performances were stellar.", "album_id": "72157600183876481", "photo_flickr_id": "486896037", "setting": "first-2-pick-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "44856", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the performances were stellar .", "storylet_id": "224283"}], [{"original_text": "and it was all for a good cause!", "album_id": "72157600183876481", "photo_flickr_id": "486895843", "setting": "first-2-pick-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "44856", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and it was all for a good cause !", "storylet_id": "224284"}], [{"original_text": "The convention was going on at a airplane hanger.", "album_id": "72157600183876481", "photo_flickr_id": "486895843", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44857", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the convention was going on at a airplane hanger .", "storylet_id": "224285"}], [{"original_text": "The guests from the company were excited to see the show.", "album_id": "72157600183876481", "photo_flickr_id": "486865840", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44857", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guests from the company were excited to see the show .", "storylet_id": "224286"}], [{"original_text": "The circus was there.", "album_id": "72157600183876481", "photo_flickr_id": "486897027", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44857", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the circus was there .", "storylet_id": "224287"}], [{"original_text": "The woman is showing off her skills.", "album_id": "72157600183876481", "photo_flickr_id": "486896037", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44857", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the woman is showing off her skills .", "storylet_id": "224288"}], [{"original_text": "Everyone had fun at the work convention. ", "album_id": "72157600183876481", "photo_flickr_id": "486863412", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44857", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had fun at the work convention .", "storylet_id": "224289"}], [{"original_text": "I was apprehensive about going out this evening.", "album_id": "72157600183876481", "photo_flickr_id": "486895843", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44858", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was apprehensive about going out this evening .", "storylet_id": "224290"}], [{"original_text": "There were so many people at the convention.", "album_id": "72157600183876481", "photo_flickr_id": "486865840", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44858", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many people at the convention .", "storylet_id": "224291"}], [{"original_text": "The dancer was really strong.", "album_id": "72157600183876481", "photo_flickr_id": "486897027", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44858", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dancer was really strong .", "storylet_id": "224292"}], [{"original_text": "She climbed a really high pole.", "album_id": "72157600183876481", "photo_flickr_id": "486896037", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44858", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she climbed a really high pole .", "storylet_id": "224293"}], [{"original_text": "There was so much to do and see.", "album_id": "72157600183876481", "photo_flickr_id": "486863412", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "44858", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was so much to do and see .", "storylet_id": "224294"}], [{"original_text": "This is an event at the Make a Wish rally in San Diego. ", "album_id": "72157600183876481", "photo_flickr_id": "486895843", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44859", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is an event at the make a wish rally in location location .", "storylet_id": "224295"}], [{"original_text": "All of the kids have been invited to come and enjoy a circus. ", "album_id": "72157600183876481", "photo_flickr_id": "486865840", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44859", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the kids have been invited to come and enjoy a circus .", "storylet_id": "224296"}], [{"original_text": "There are gymnasts with balancing acts. ", "album_id": "72157600183876481", "photo_flickr_id": "486897027", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44859", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are gymnasts with balancing acts .", "storylet_id": "224297"}], [{"original_text": "Some of them do ribbon dances far up in the air. ", "album_id": "72157600183876481", "photo_flickr_id": "486896037", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44859", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of them do ribbon dances far up in the air .", "storylet_id": "224298"}], [{"original_text": "This motorcycle belongs to one of the parents who brought it for the older kids to enjoy. ", "album_id": "72157600183876481", "photo_flickr_id": "486863412", "setting": "last-3-pick-old-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "44859", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this motorcycle belongs to one of the parents who brought it for the older kids to enjoy .", "storylet_id": "224299"}], [{"original_text": "It is hard to decided which color to make my new bed covering and this yellow does not seem to match my room. ", "album_id": "72157604347481145", "photo_flickr_id": "2380861412", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "44860", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is hard to decided which color to make my new bed covering and this yellow does not seem to match my room .", "storylet_id": "224300"}], [{"original_text": "Pink is really not the color I am looking for either. ", "album_id": "72157604347481145", "photo_flickr_id": "2380027515", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "44860", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "pink is really not the color i am looking for either .", "storylet_id": "224301"}], [{"original_text": "This orange one seems nice but not really the color I seek. ", "album_id": "72157604347481145", "photo_flickr_id": "2380863930", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "44860", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this orange one seems nice but not really the color i seek .", "storylet_id": "224302"}], [{"original_text": "Maybe a multi-color one would be good. ", "album_id": "72157604347481145", "photo_flickr_id": "2380864130", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "44860", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "maybe a multi-color one would be good .", "storylet_id": "224303"}], [{"original_text": "Yes, these multi-color ones will work perfectly. ", "album_id": "72157604347481145", "photo_flickr_id": "2380029011", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "44860", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "yes , these multi-color ones will work perfectly .", "storylet_id": "224304"}], [{"original_text": "Each hand-crafted bundle will sell for charity, a different charity for each.", "album_id": "72157604347481145", "photo_flickr_id": "2380861412", "setting": "first-2-pick-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "44861", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "each hand-crafted bundle will sell for charity , a different charity for each .", "storylet_id": "224305"}], [{"original_text": "Pink, of course, represents a breast cancer charity.", "album_id": "72157604347481145", "photo_flickr_id": "2380026377", "setting": "first-2-pick-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "44861", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "pink , of course , represents a breast cancer charity .", "storylet_id": "224306"}], [{"original_text": "Blue represetns a clean water charity.", "album_id": "72157604347481145", "photo_flickr_id": "2380862260", "setting": "first-2-pick-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "44861", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "blue represetns a clean water charity .", "storylet_id": "224307"}], [{"original_text": "Blue and white together represents a general, environmental charity.", "album_id": "72157604347481145", "photo_flickr_id": "2380862652", "setting": "first-2-pick-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "44861", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "blue and white together represents a general , environmental charity .", "storylet_id": "224308"}], [{"original_text": "I really hope you'll choose to purchase one of these bundles and help fund generous efforts the world over!", "album_id": "72157604347481145", "photo_flickr_id": "2380027515", "setting": "first-2-pick-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "44861", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i really hope you 'll choose to purchase one of these bundles and help fund generous efforts the world over !", "storylet_id": "224309"}], [{"original_text": "Yarn comes in many different colours that help people be very creative with their creations. ", "album_id": "72157604347481145", "photo_flickr_id": "2380861412", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "44862", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yarn comes in many different colours that help people be very creative with their creations .", "storylet_id": "224310"}], [{"original_text": "My grandmother knits frequently and for the longest time she was the only person I knew who did this in my family. ", "album_id": "72157604347481145", "photo_flickr_id": "2380027515", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "44862", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my grandmother knits frequently and for the longest time she was the only person i knew who did this in my family .", "storylet_id": "224311"}], [{"original_text": "When I went to college, I met a nice girl who knitted to relieve stress and make a little extra money on the side by making things for people. ", "album_id": "72157604347481145", "photo_flickr_id": "2380863930", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "44862", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when i went to college , i met a nice girl who knitted to relieve stress and make a little extra money on the side by making things for people .", "storylet_id": "224312"}], [{"original_text": "I thought that was really cool and tried to learn to knit myself but I am super uncoordinated and didnt have the patience to keep it up. ", "album_id": "72157604347481145", "photo_flickr_id": "2380864130", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "44862", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i thought that was really cool and tried to learn to knit myself but i am super uncoordinated and didnt have the patience to keep it up .", "storylet_id": "224313"}], [{"original_text": "I am always intrigued when I see yarn balls because there is mystery locked within them to what will com from them from talented people. ", "album_id": "72157604347481145", "photo_flickr_id": "2380029011", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "44862", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am always intrigued when i see yarn balls because there is mystery locked within them to what will com from them from talented people .", "storylet_id": "224314"}], [{"original_text": "The yarn came in different colors.", "album_id": "72157604347481145", "photo_flickr_id": "2380861412", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44863", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the yarn came in different colors .", "storylet_id": "224315"}], [{"original_text": "There were shades of light pink.", "album_id": "72157604347481145", "photo_flickr_id": "2380026377", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44863", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were shades of light pink .", "storylet_id": "224316"}], [{"original_text": "Some were blue with white.", "album_id": "72157604347481145", "photo_flickr_id": "2380862260", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44863", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some were blue with white .", "storylet_id": "224317"}], [{"original_text": "Some even had more white than blue.", "album_id": "72157604347481145", "photo_flickr_id": "2380862652", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44863", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some even had more white than blue .", "storylet_id": "224318"}], [{"original_text": "The darker pink was the prettiest.", "album_id": "72157604347481145", "photo_flickr_id": "2380027515", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44863", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the darker pink was the prettiest .", "storylet_id": "224319"}], [{"original_text": "I purchase several yards of yarns like this. This one is a lion's color.", "album_id": "72157604347481145", "photo_flickr_id": "2380861412", "setting": "last-3-pick-old-and-tell", "worker_id": "7EUH6GBKF2PFICQ", "story_id": "44864", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i purchase several yards of yarns like this . this one is a lion 's color .", "storylet_id": "224320"}], [{"original_text": "The pink one I bought will be used for a baby girl's girft.", "album_id": "72157604347481145", "photo_flickr_id": "2380027515", "setting": "last-3-pick-old-and-tell", "worker_id": "7EUH6GBKF2PFICQ", "story_id": "44864", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pink one i bought will be used for a baby girl 's girft .", "storylet_id": "224321"}], [{"original_text": "Orange sherbet was what I thought of when I picked this one.", "album_id": "72157604347481145", "photo_flickr_id": "2380863930", "setting": "last-3-pick-old-and-tell", "worker_id": "7EUH6GBKF2PFICQ", "story_id": "44864", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "orange sherbet was what i thought of when i picked this one .", "storylet_id": "224322"}], [{"original_text": "This multicolored yarn gives me so many ideas.", "album_id": "72157604347481145", "photo_flickr_id": "2380864130", "setting": "last-3-pick-old-and-tell", "worker_id": "7EUH6GBKF2PFICQ", "story_id": "44864", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this multicolored yarn gives me so many ideas .", "storylet_id": "224323"}], [{"original_text": "Wow, I didn't think that I would go overboard with buying yarn!", "album_id": "72157604347481145", "photo_flickr_id": "2380029011", "setting": "last-3-pick-old-and-tell", "worker_id": "7EUH6GBKF2PFICQ", "story_id": "44864", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "wow , i did n't think that i would go overboard with buying yarn !", "storylet_id": "224324"}], [{"original_text": "My son Paul and I went to a silly parade today. ", "album_id": "72157617518821531", "photo_flickr_id": "3494007173", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44865", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my son [male] and i went to a silly parade today .", "storylet_id": "224325"}], [{"original_text": "This creature caught our eye first. He buzzed around and handed out glitter. ", "album_id": "72157617518821531", "photo_flickr_id": "3494004815", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44865", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this creature caught our eye first . he buzzed around and handed out glitter .", "storylet_id": "224326"}], [{"original_text": "These women were humming the Happy Birthday song and waving really fast. ", "album_id": "72157617518821531", "photo_flickr_id": "3494006341", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44865", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these women were humming the happy birthday song and waving really fast .", "storylet_id": "224327"}], [{"original_text": "We saw a black truck with a large ugly kid inside. He was so mean! He screamed insults and threw poop! ", "album_id": "72157617518821531", "photo_flickr_id": "3494824084", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44865", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw a black truck with a large ugly kid inside . he was so mean ! he screamed insults and threw poop !", "storylet_id": "224328"}], [{"original_text": "We were getting ready to leave when the young black women's choir danced by singing the Star Spangled Banner. It was amazing! ", "album_id": "72157617518821531", "photo_flickr_id": "3494824460", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44865", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were getting ready to leave when the young black women 's choir danced by singing the star spangled banner . it was amazing !", "storylet_id": "224329"}], [{"original_text": "Making our way to the parade.", "album_id": "72157617518821531", "photo_flickr_id": "3494004613", "setting": "first-2-pick-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "44866", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "making our way to the parade .", "storylet_id": "224330"}], [{"original_text": "He was very excited to see all the colorfully dressed people.", "album_id": "72157617518821531", "photo_flickr_id": "3494007173", "setting": "first-2-pick-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "44866", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was very excited to see all the colorfully dressed people .", "storylet_id": "224331"}], [{"original_text": "As the float went past, festive music sounded through the air", "album_id": "72157617518821531", "photo_flickr_id": "3494006201", "setting": "first-2-pick-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "44866", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as the float went past , festive music sounded through the air", "storylet_id": "224332"}], [{"original_text": "The float of Noah's Ark was especially well done", "album_id": "72157617518821531", "photo_flickr_id": "3494824844", "setting": "first-2-pick-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "44866", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the float of [male] 's ark was especially well done", "storylet_id": "224333"}], [{"original_text": "The acrobatic cycle team took our breath away", "album_id": "72157617518821531", "photo_flickr_id": "3494008193", "setting": "first-2-pick-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "44866", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the acrobatic cycle team took our breath away", "storylet_id": "224334"}], [{"original_text": "The kids had a great time at the parade!", "album_id": "72157617518821531", "photo_flickr_id": "3494007173", "setting": "last-3-pick-old-and-tell", "worker_id": "XC5CHG88MF91LZY", "story_id": "44867", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids had a great time at the parade !", "storylet_id": "224335"}], [{"original_text": "The clowns sure did look funny", "album_id": "72157617518821531", "photo_flickr_id": "3494004815", "setting": "last-3-pick-old-and-tell", "worker_id": "XC5CHG88MF91LZY", "story_id": "44867", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the clowns sure did look funny", "storylet_id": "224336"}], [{"original_text": "The girls in their traditional dresses.", "album_id": "72157617518821531", "photo_flickr_id": "3494006341", "setting": "last-3-pick-old-and-tell", "worker_id": "XC5CHG88MF91LZY", "story_id": "44867", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the girls in their traditional dresses .", "storylet_id": "224337"}], [{"original_text": "The mascot of the parade in a truck", "album_id": "72157617518821531", "photo_flickr_id": "3494824084", "setting": "last-3-pick-old-and-tell", "worker_id": "XC5CHG88MF91LZY", "story_id": "44867", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the mascot of the parade in a truck", "storylet_id": "224338"}], [{"original_text": "A rhythm gang walked the parade too ", "album_id": "72157617518821531", "photo_flickr_id": "3494824460", "setting": "last-3-pick-old-and-tell", "worker_id": "XC5CHG88MF91LZY", "story_id": "44867", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a rhythm gang walked the parade too", "storylet_id": "224339"}], [{"original_text": "Kevin was out at the parade.", "album_id": "72157617518821531", "photo_flickr_id": "3494007173", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44868", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was out at the parade .", "storylet_id": "224340"}], [{"original_text": "There were lots of characters around.", "album_id": "72157617518821531", "photo_flickr_id": "3494004815", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44868", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were lots of characters around .", "storylet_id": "224341"}], [{"original_text": "People were around on floats.", "album_id": "72157617518821531", "photo_flickr_id": "3494006341", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44868", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people were around on floats .", "storylet_id": "224342"}], [{"original_text": "There were float after float.", "album_id": "72157617518821531", "photo_flickr_id": "3494824084", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44868", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were float after float .", "storylet_id": "224343"}], [{"original_text": "People were dancing all over the place.", "album_id": "72157617518821531", "photo_flickr_id": "3494824460", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44868", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people were dancing all over the place .", "storylet_id": "224344"}], [{"original_text": "Jeremy is at a parade.", "album_id": "72157617518821531", "photo_flickr_id": "3494007173", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "44869", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is at a parade .", "storylet_id": "224345"}], [{"original_text": "He sees this weird looking person dressed funny.", "album_id": "72157617518821531", "photo_flickr_id": "3494004815", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "44869", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he sees this weird looking person dressed funny .", "storylet_id": "224346"}], [{"original_text": "He then looks at these people like they are crazy.", "album_id": "72157617518821531", "photo_flickr_id": "3494006341", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "44869", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he then looks at these people like they are crazy .", "storylet_id": "224347"}], [{"original_text": "Jeremy does not like the parade and whats to leave.", "album_id": "72157617518821531", "photo_flickr_id": "3494824084", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "44869", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] does not like the parade and whats to leave .", "storylet_id": "224348"}], [{"original_text": "But people in yellow shirts stop him.", "album_id": "72157617518821531", "photo_flickr_id": "3494824460", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "44869", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but people in yellow shirts stop him .", "storylet_id": "224349"}], [{"original_text": "I went to the Spanish fiesta days", "album_id": "72157617601185933", "photo_flickr_id": "3500783813", "setting": "first-2-pick-and-tell", "worker_id": "TS7IT5VC0IE0S5P", "story_id": "44870", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the spanish fiesta days", "storylet_id": "224350"}], [{"original_text": "I saw the parade", "album_id": "72157617601185933", "photo_flickr_id": "3500784437", "setting": "first-2-pick-and-tell", "worker_id": "TS7IT5VC0IE0S5P", "story_id": "44870", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw the parade", "storylet_id": "224351"}], [{"original_text": "There were lots of different people ", "album_id": "72157617601185933", "photo_flickr_id": "3500782807", "setting": "first-2-pick-and-tell", "worker_id": "TS7IT5VC0IE0S5P", "story_id": "44870", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were lots of different people", "storylet_id": "224352"}], [{"original_text": "I saw multiple stands that helps people with.", "album_id": "72157617601185933", "photo_flickr_id": "3501597950", "setting": "first-2-pick-and-tell", "worker_id": "TS7IT5VC0IE0S5P", "story_id": "44870", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i saw multiple stands that helps people with .", "storylet_id": "224353"}], [{"original_text": "They had raffles for prizes", "album_id": "72157617601185933", "photo_flickr_id": "3501598234", "setting": "first-2-pick-and-tell", "worker_id": "TS7IT5VC0IE0S5P", "story_id": "44870", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had raffles for prizes", "storylet_id": "224354"}], [{"original_text": "Sam and her friends are throwing a parade today.", "album_id": "72157617601185933", "photo_flickr_id": "3500782653", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "44871", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and her friends are throwing a parade today .", "storylet_id": "224355"}], [{"original_text": "They march in the streets and carry the flag with great pride.", "album_id": "72157617601185933", "photo_flickr_id": "3500784167", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "44871", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they march in the streets and carry the flag with great pride .", "storylet_id": "224356"}], [{"original_text": "Continuing the march they carry flags from other countries as well.", "album_id": "72157617601185933", "photo_flickr_id": "3500784437", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "44871", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "continuing the march they carry flags from other countries as well .", "storylet_id": "224357"}], [{"original_text": "Its a world peace day.", "album_id": "72157617601185933", "photo_flickr_id": "3500782807", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "44871", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "its a world peace day .", "storylet_id": "224358"}], [{"original_text": "Everyone is having a great time at the parade.", "album_id": "72157617601185933", "photo_flickr_id": "3501598234", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "44871", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone is having a great time at the parade .", "storylet_id": "224359"}], [{"original_text": "The students proudly manned their recycling booth.", "album_id": "72157617601185933", "photo_flickr_id": "3500782653", "setting": "last-3-pick-old-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "44872", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the students proudly manned their recycling booth .", "storylet_id": "224360"}], [{"original_text": "Many immigrants in the parade didn't know you could recycle electronics.", "album_id": "72157617601185933", "photo_flickr_id": "3500784167", "setting": "last-3-pick-old-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "44872", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many immigrants in the parade did n't know you could recycle electronics .", "storylet_id": "224361"}], [{"original_text": "They walked down the street, proud of their Mexican heritage, without even glancing at the Allstate tent.", "album_id": "72157617601185933", "photo_flickr_id": "3500784437", "setting": "last-3-pick-old-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "44872", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they walked down the street , proud of their mexican heritage , without even glancing at the organization tent .", "storylet_id": "224362"}], [{"original_text": "Gathered in a circle, the foreign students debated the benefits of global warming.", "album_id": "72157617601185933", "photo_flickr_id": "3500782807", "setting": "last-3-pick-old-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "44872", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "gathered in a circle , the foreign students debated the benefits of global warming .", "storylet_id": "224363"}], [{"original_text": "In agreement the Earth being burnt to a crisp was a bad thing, they ended up at the recycling booth, seeking information.", "album_id": "72157617601185933", "photo_flickr_id": "3501598234", "setting": "last-3-pick-old-and-tell", "worker_id": "5J7VDSK76H144R3", "story_id": "44872", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in agreement the location being burnt to a crisp was a bad thing , they ended up at the recycling booth , seeking information .", "storylet_id": "224364"}], [{"original_text": "The area was crowded with people attending the fair.", "album_id": "72157617601185933", "photo_flickr_id": "3500783813", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44873", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the area was crowded with people attending the fair .", "storylet_id": "224365"}], [{"original_text": "Tents and booths were set up.", "album_id": "72157617601185933", "photo_flickr_id": "3500784437", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44873", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "tents and booths were set up .", "storylet_id": "224366"}], [{"original_text": "There were a lot of things to stop and look at.", "album_id": "72157617601185933", "photo_flickr_id": "3500782807", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44873", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of things to stop and look at .", "storylet_id": "224367"}], [{"original_text": "Tables full of information about the events were available.", "album_id": "72157617601185933", "photo_flickr_id": "3501597950", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44873", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "tables full of information about the events were available .", "storylet_id": "224368"}], [{"original_text": "Things were for sale under tents.", "album_id": "72157617601185933", "photo_flickr_id": "3501598234", "setting": "last-3-pick-old-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "44873", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "things were for sale under tents .", "storylet_id": "224369"}], [{"original_text": "this family had a fundraiser for the parade. ", "album_id": "72157617601185933", "photo_flickr_id": "3500782653", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "44874", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this family had a fundraiser for the parade .", "storylet_id": "224370"}], [{"original_text": "the american flag could be seen in the parade. ", "album_id": "72157617601185933", "photo_flickr_id": "3500784167", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "44874", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the american flag could be seen in the parade .", "storylet_id": "224371"}], [{"original_text": "there were also people holding flags of other countries. ", "album_id": "72157617601185933", "photo_flickr_id": "3500784437", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "44874", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were also people holding flags of other countries .", "storylet_id": "224372"}], [{"original_text": "people looked onward patiently. ", "album_id": "72157617601185933", "photo_flickr_id": "3500782807", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "44874", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people looked onward patiently .", "storylet_id": "224373"}], [{"original_text": "this family had raised a significant amount of money for the event. ", "album_id": "72157617601185933", "photo_flickr_id": "3501598234", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "44874", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this family had raised a significant amount of money for the event .", "storylet_id": "224374"}], [{"original_text": "This is Bob. Bob is sleepwalking and we are making him do funny stuff. ", "album_id": "72157625956028680", "photo_flickr_id": "5408735988", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44875", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is [male] . [male] is sleepwalking and we are making him do funny stuff .", "storylet_id": "224375"}], [{"original_text": "Bob is sitting at the table with our friends making silly noises. ", "album_id": "72157625956028680", "photo_flickr_id": "5408737534", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44875", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] is sitting at the table with our friends making silly noises .", "storylet_id": "224376"}], [{"original_text": "Now Bob is screaming! He's thrown his glasses across the table and they stuck in Reba's face! He's screaming at her as she's bleeding to death. ", "album_id": "72157625956028680", "photo_flickr_id": "5408737636", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44875", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now [male] is screaming ! he 's thrown his glasses across the table and they stuck in [female] 's face ! he 's screaming at her as she 's bleeding to death .", "storylet_id": "224377"}], [{"original_text": "He ran into the other room and took Dale's shirt and now is in disguise. He's speaking Spanish and drinking lots of beer. ", "album_id": "72157625956028680", "photo_flickr_id": "5408128679", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44875", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he ran into the other room and took [male] 's shirt and now is in disguise . he 's speaking spanish and drinking lots of beer .", "storylet_id": "224378"}], [{"original_text": "Then he jumps up and starts singing songs about Ole' Mexico! Oh my goodness Bob you are a riot!", "album_id": "72157625956028680", "photo_flickr_id": "5408128373", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "44875", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then he jumps up and starts singing songs about ole ' location ! oh my goodness [male] you are a riot !", "storylet_id": "224379"}], [{"original_text": "Everyone's gathered for Cinco de Mayo!", "album_id": "72157625956028680", "photo_flickr_id": "5408128263", "setting": "first-2-pick-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "44876", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone 's gathered for organization organization organization !", "storylet_id": "224380"}], [{"original_text": "Playing drinking games is one of our favorite past times.", "album_id": "72157625956028680", "photo_flickr_id": "5408737534", "setting": "first-2-pick-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "44876", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "playing drinking games is one of our favorite past times .", "storylet_id": "224381"}], [{"original_text": "Enjoying some cold beverages at the party", "album_id": "72157625956028680", "photo_flickr_id": "5408737636", "setting": "first-2-pick-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "44876", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "enjoying some cold beverages at the party", "storylet_id": "224382"}], [{"original_text": "3 handsome fellas posing for a shot", "album_id": "72157625956028680", "photo_flickr_id": "5408128839", "setting": "first-2-pick-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "44876", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "3 handsome fellas posing for a shot", "storylet_id": "224383"}], [{"original_text": "Messing with the party host!", "album_id": "72157625956028680", "photo_flickr_id": "5408737964", "setting": "first-2-pick-and-tell", "worker_id": "PIRIXBM46RW1DGZ", "story_id": "44876", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "messing with the party host !", "storylet_id": "224384"}], [{"original_text": "We decided to throw a fiesta .", "album_id": "72157625956028680", "photo_flickr_id": "5408128263", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44877", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to throw a fiesta .", "storylet_id": "224385"}], [{"original_text": "Family and friends came out to enjoy the festivities. ", "album_id": "72157625956028680", "photo_flickr_id": "5408737534", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44877", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "family and friends came out to enjoy the festivities .", "storylet_id": "224386"}], [{"original_text": "It was a lot of booze involve.", "album_id": "72157625956028680", "photo_flickr_id": "5408737636", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44877", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a lot of booze involve .", "storylet_id": "224387"}], [{"original_text": "The friends are holding their beers up.", "album_id": "72157625956028680", "photo_flickr_id": "5408128839", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44877", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the friends are holding their beers up .", "storylet_id": "224388"}], [{"original_text": "The fiesta was so fun that my friend was stuck at out house because he was drunk. A party to remember.", "album_id": "72157625956028680", "photo_flickr_id": "5408737964", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44877", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fiesta was so fun that my friend was stuck at out house because he was drunk . a party to remember .", "storylet_id": "224389"}], [{"original_text": "Looked like we had one that was going down for the count.", "album_id": "72157625956028680", "photo_flickr_id": "5408735988", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "44878", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "looked like we had one that was going down for the count .", "storylet_id": "224390"}], [{"original_text": "The rest of the party kept chugging along.", "album_id": "72157625956028680", "photo_flickr_id": "5408737534", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "44878", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the rest of the party kept chugging along .", "storylet_id": "224391"}], [{"original_text": "People swapped stories about the \"good ole days\".", "album_id": "72157625956028680", "photo_flickr_id": "5408737636", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "44878", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people swapped stories about the `` good ole days '' .", "storylet_id": "224392"}], [{"original_text": "and we laughed and the horrible mustache he has on his face.", "album_id": "72157625956028680", "photo_flickr_id": "5408128679", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "44878", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and we laughed and the horrible mustache he has on his face .", "storylet_id": "224393"}], [{"original_text": "And of course he would run with the funny stories we made about him.", "album_id": "72157625956028680", "photo_flickr_id": "5408128373", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "44878", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and of course he would run with the funny stories we made about him .", "storylet_id": "224394"}], [{"original_text": "The party was in full force.", "album_id": "72157625956028680", "photo_flickr_id": "5408735988", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44879", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party was in full force .", "storylet_id": "224395"}], [{"original_text": "People were sitting around having fun.", "album_id": "72157625956028680", "photo_flickr_id": "5408737534", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44879", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people were sitting around having fun .", "storylet_id": "224396"}], [{"original_text": "They were all drinking and talking.", "album_id": "72157625956028680", "photo_flickr_id": "5408737636", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44879", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were all drinking and talking .", "storylet_id": "224397"}], [{"original_text": "Everyone was laughing and having a good time.", "album_id": "72157625956028680", "photo_flickr_id": "5408128679", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44879", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was laughing and having a good time .", "storylet_id": "224398"}], [{"original_text": "A successful party was had for all.", "album_id": "72157625956028680", "photo_flickr_id": "5408128373", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44879", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a successful party was had for all .", "storylet_id": "224399"}], [{"original_text": "The festivities begin nice and slow as the mariachi band plays for the crowd.", "album_id": "72157644594336393", "photo_flickr_id": "14125898945", "setting": "first-2-pick-and-tell", "worker_id": "TMPQ5B9SH7SSPTO", "story_id": "44880", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the festivities begin nice and slow as the mariachi band plays for the crowd .", "storylet_id": "224400"}], [{"original_text": "The band goes into the crowd to get closer to the dacing guests.", "album_id": "72157644594336393", "photo_flickr_id": "14122578291", "setting": "first-2-pick-and-tell", "worker_id": "TMPQ5B9SH7SSPTO", "story_id": "44880", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the band goes into the crowd to get closer to the dacing guests .", "storylet_id": "224401"}], [{"original_text": "Then it takes a turn for a turn-up as the dj comes out with all the pop tunes.", "album_id": "72157644594336393", "photo_flickr_id": "14102717116", "setting": "first-2-pick-and-tell", "worker_id": "TMPQ5B9SH7SSPTO", "story_id": "44880", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then it takes a turn for a turn-up as the dj comes out with all the pop tunes .", "storylet_id": "224402"}], [{"original_text": "The crowd is feeling it and starts to really party now.", "album_id": "72157644594336393", "photo_flickr_id": "14126191634", "setting": "first-2-pick-and-tell", "worker_id": "TMPQ5B9SH7SSPTO", "story_id": "44880", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowd is feeling it and starts to really party now .", "storylet_id": "224403"}], [{"original_text": "They're going to be dancing all night long at this rate.", "album_id": "72157644594336393", "photo_flickr_id": "14122881322", "setting": "first-2-pick-and-tell", "worker_id": "TMPQ5B9SH7SSPTO", "story_id": "44880", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they 're going to be dancing all night long at this rate .", "storylet_id": "224404"}], [{"original_text": "To get the party started, we grabbed some tequila", "album_id": "72157644594336393", "photo_flickr_id": "13939258440", "setting": "first-2-pick-and-tell", "worker_id": "AGNKNIGQAWSPFSD", "story_id": "44881", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "to get the party started , we grabbed some tequila", "storylet_id": "224405"}], [{"original_text": "We figured there was no better way to get people drinking and loose than to have some pretty girls serving", "album_id": "72157644594336393", "photo_flickr_id": "14122883922", "setting": "first-2-pick-and-tell", "worker_id": "AGNKNIGQAWSPFSD", "story_id": "44881", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we figured there was no better way to get people drinking and loose than to have some pretty girls serving", "storylet_id": "224406"}], [{"original_text": "Face paint helped some people shed their inhibitions", "album_id": "72157644594336393", "photo_flickr_id": "14122881572", "setting": "first-2-pick-and-tell", "worker_id": "AGNKNIGQAWSPFSD", "story_id": "44881", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "face paint helped some people shed their inhibitions", "storylet_id": "224407"}], [{"original_text": "Without inhibitions, some of the partygoers really cut loose", "album_id": "72157644594336393", "photo_flickr_id": "14122881322", "setting": "first-2-pick-and-tell", "worker_id": "AGNKNIGQAWSPFSD", "story_id": "44881", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "without inhibitions , some of the partygoers really cut loose", "storylet_id": "224408"}], [{"original_text": "It took absolutely 0 inhibition to sit and take a picture with this donkey thing", "album_id": "72157644594336393", "photo_flickr_id": "13939219497", "setting": "first-2-pick-and-tell", "worker_id": "AGNKNIGQAWSPFSD", "story_id": "44881", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it took absolutely 0 inhibition to sit and take a picture with this donkey thing", "storylet_id": "224409"}], [{"original_text": "The party is crowded.", "album_id": "72157644594336393", "photo_flickr_id": "14125898945", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44882", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party is crowded .", "storylet_id": "224410"}], [{"original_text": "Everyone is having a great time.", "album_id": "72157644594336393", "photo_flickr_id": "14122578291", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44882", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone is having a great time .", "storylet_id": "224411"}], [{"original_text": "The DJs are playing a set.", "album_id": "72157644594336393", "photo_flickr_id": "14102717116", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44882", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the djs are playing a set .", "storylet_id": "224412"}], [{"original_text": "Everyone is dancing.", "album_id": "72157644594336393", "photo_flickr_id": "14126191634", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44882", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone is dancing .", "storylet_id": "224413"}], [{"original_text": "Everyone had an awesome time. ", "album_id": "72157644594336393", "photo_flickr_id": "14122881322", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44882", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had an awesome time .", "storylet_id": "224414"}], [{"original_text": "Patio parties at my friend Lupe's are always a lot of fun, and many people from the neighborhood turn out.", "album_id": "72157644594336393", "photo_flickr_id": "14125898945", "setting": "last-3-pick-old-and-tell", "worker_id": "R1QFHT4AE1U022N", "story_id": "44883", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "patio parties at my friend [female] 's are always a lot of fun , and many people from the neighborhood turn out .", "storylet_id": "224415"}], [{"original_text": "This one time, they hired a mariachi band, that was the best day.", "album_id": "72157644594336393", "photo_flickr_id": "14122578291", "setting": "last-3-pick-old-and-tell", "worker_id": "R1QFHT4AE1U022N", "story_id": "44883", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one time , they hired a mariachi band , that was the best day .", "storylet_id": "224416"}], [{"original_text": "Danny Boy likes to spin at these parties sometimes, and he takes requests.", "album_id": "72157644594336393", "photo_flickr_id": "14102717116", "setting": "last-3-pick-old-and-tell", "worker_id": "R1QFHT4AE1U022N", "story_id": "44883", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] boy likes to spin at these parties sometimes , and he takes requests .", "storylet_id": "224417"}], [{"original_text": "One party was sponsored by cuervo silver, and they put up a big inflatable tequilla bottle.", "album_id": "72157644594336393", "photo_flickr_id": "14126191634", "setting": "last-3-pick-old-and-tell", "worker_id": "R1QFHT4AE1U022N", "story_id": "44883", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one party was sponsored by cuervo silver , and they put up a big inflatable tequilla bottle .", "storylet_id": "224418"}], [{"original_text": "The ladies really know how to cut loose and dance!", "album_id": "72157644594336393", "photo_flickr_id": "14122881322", "setting": "last-3-pick-old-and-tell", "worker_id": "R1QFHT4AE1U022N", "story_id": "44883", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ladies really know how to cut loose and dance !", "storylet_id": "224419"}], [{"original_text": "The party was really starting now.", "album_id": "72157644594336393", "photo_flickr_id": "14125898945", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44884", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party was really starting now .", "storylet_id": "224420"}], [{"original_text": "The band was geared up to play.", "album_id": "72157644594336393", "photo_flickr_id": "14122578291", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44884", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the band was geared up to play .", "storylet_id": "224421"}], [{"original_text": "The DJ was also there for later.", "album_id": "72157644594336393", "photo_flickr_id": "14102717116", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44884", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dj was also there for later .", "storylet_id": "224422"}], [{"original_text": "People started dancing.", "album_id": "72157644594336393", "photo_flickr_id": "14126191634", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44884", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people started dancing .", "storylet_id": "224423"}], [{"original_text": "They were really having a great time and party.", "album_id": "72157644594336393", "photo_flickr_id": "14122881322", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "44884", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were really having a great time and party .", "storylet_id": "224424"}], [{"original_text": "Visiting somewhere new!", "album_id": "72157650066498734", "photo_flickr_id": "16770444353", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "44885", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "visiting somewhere new !", "storylet_id": "224425"}], [{"original_text": "Hung out in this village for the day", "album_id": "72157650066498734", "photo_flickr_id": "16770442263", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "44885", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "hung out in this village for the day", "storylet_id": "224426"}], [{"original_text": "How the houses were decorated..", "album_id": "72157650066498734", "photo_flickr_id": "17183271557", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "44885", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "how the houses were decorated..", "storylet_id": "224427"}], [{"original_text": "Watched them making bread by hand!", "album_id": "72157650066498734", "photo_flickr_id": "17183270387", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "44885", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "watched them making bread by hand !", "storylet_id": "224428"}], [{"original_text": "What a different view of the world!", "album_id": "72157650066498734", "photo_flickr_id": "17203136780", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "44885", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what a different view of the world !", "storylet_id": "224429"}], [{"original_text": "It's time for the Clipper City Boating Festival.", "album_id": "72157650066498734", "photo_flickr_id": "16770444353", "setting": "first-2-pick-and-tell", "worker_id": "MP036WJIR3IALUV", "story_id": "44886", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's time for the clipper city boating festival .", "storylet_id": "224430"}], [{"original_text": "The best tequila is being served.", "album_id": "72157650066498734", "photo_flickr_id": "16770442263", "setting": "first-2-pick-and-tell", "worker_id": "MP036WJIR3IALUV", "story_id": "44886", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the best tequila is being served .", "storylet_id": "224431"}], [{"original_text": "Everybody enjoys a few drinks at sea. ", "album_id": "72157650066498734", "photo_flickr_id": "17203136780", "setting": "first-2-pick-and-tell", "worker_id": "MP036WJIR3IALUV", "story_id": "44886", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everybody enjoys a few drinks at sea .", "storylet_id": "224432"}], [{"original_text": "Old friends meet and share a few laughs.", "album_id": "72157650066498734", "photo_flickr_id": "17390360561", "setting": "first-2-pick-and-tell", "worker_id": "MP036WJIR3IALUV", "story_id": "44886", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "old friends meet and share a few laughs .", "storylet_id": "224433"}], [{"original_text": "The best part is the view of the city while on the boat!", "album_id": "72157650066498734", "photo_flickr_id": "17388739492", "setting": "first-2-pick-and-tell", "worker_id": "MP036WJIR3IALUV", "story_id": "44886", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part is the view of the city while on the boat !", "storylet_id": "224434"}], [{"original_text": "People are meeting up at the restaurant to test their new liquor.", "album_id": "72157650066498734", "photo_flickr_id": "16770444353", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44887", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people are meeting up at the restaurant to test their new liquor .", "storylet_id": "224435"}], [{"original_text": "This is a picture of it.", "album_id": "72157650066498734", "photo_flickr_id": "16770442263", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44887", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is a picture of it .", "storylet_id": "224436"}], [{"original_text": "This drink was made with the liquor.", "album_id": "72157650066498734", "photo_flickr_id": "17203136780", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44887", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this drink was made with the liquor .", "storylet_id": "224437"}], [{"original_text": "These two really like how it tastes.", "album_id": "72157650066498734", "photo_flickr_id": "17390360561", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44887", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these two really like how it tastes .", "storylet_id": "224438"}], [{"original_text": "This city has lots of events like this. ", "album_id": "72157650066498734", "photo_flickr_id": "17388739492", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44887", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this city has lots of events like this .", "storylet_id": "224439"}], [{"original_text": "Welcome to my vacation. ", "album_id": "72157650066498734", "photo_flickr_id": "16770444353", "setting": "last-3-pick-old-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "44888", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "welcome to my vacation .", "storylet_id": "224440"}], [{"original_text": "Checking out the bar. ", "album_id": "72157650066498734", "photo_flickr_id": "16770442263", "setting": "last-3-pick-old-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "44888", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "checking out the bar .", "storylet_id": "224441"}], [{"original_text": "Having a cold drink and enjoying the ocean. ", "album_id": "72157650066498734", "photo_flickr_id": "17203136780", "setting": "last-3-pick-old-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "44888", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "having a cold drink and enjoying the ocean .", "storylet_id": "224442"}], [{"original_text": "Friends hanging out together. ", "album_id": "72157650066498734", "photo_flickr_id": "17390360561", "setting": "last-3-pick-old-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "44888", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "friends hanging out together .", "storylet_id": "224443"}], [{"original_text": "Time to visit the big city. ", "album_id": "72157650066498734", "photo_flickr_id": "17388739492", "setting": "last-3-pick-old-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "44888", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time to visit the big city .", "storylet_id": "224444"}], [{"original_text": "My girlfriend and I always enjoy when the tall ships sail into the bay. You are able to board them and they take you on a little booze cruise through the harbour.", "album_id": "72157650066498734", "photo_flickr_id": "16770444353", "setting": "last-3-pick-old-and-tell", "worker_id": "VNMZTSY10H05ZYH", "story_id": "44889", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my girlfriend and i always enjoy when the tall ships sail into the bay . you are able to board them and they take you on a little booze cruise through the harbour .", "storylet_id": "224445"}], [{"original_text": "The alcohol looks very authentic, as if everyone aboard were pirates. ", "album_id": "72157650066498734", "photo_flickr_id": "16770442263", "setting": "last-3-pick-old-and-tell", "worker_id": "VNMZTSY10H05ZYH", "story_id": "44889", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the alcohol looks very authentic , as if everyone aboard were pirates .", "storylet_id": "224446"}], [{"original_text": "Cheers! Here's to the start of a wonderful voyage. ", "album_id": "72157650066498734", "photo_flickr_id": "17203136780", "setting": "last-3-pick-old-and-tell", "worker_id": "VNMZTSY10H05ZYH", "story_id": "44889", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "cheers ! here 's to the start of a wonderful voyage .", "storylet_id": "224447"}], [{"original_text": "Here were are enjoying our drinks and taking in the fresh air and atmosphere. As you can tell by our smiles, we are having an amazing day!", "album_id": "72157650066498734", "photo_flickr_id": "17390360561", "setting": "last-3-pick-old-and-tell", "worker_id": "VNMZTSY10H05ZYH", "story_id": "44889", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here were are enjoying our drinks and taking in the fresh air and atmosphere . as you can tell by our smiles , we are having an amazing day !", "storylet_id": "224448"}], [{"original_text": "You always forget how beautiful the harbor view can be when your deluged by the hustle and bustle of the city. This is an awesome view of the landscape. It was a great trip and we had a fun day on the water! Who wants to join us next time? ", "album_id": "72157650066498734", "photo_flickr_id": "17388739492", "setting": "last-3-pick-old-and-tell", "worker_id": "VNMZTSY10H05ZYH", "story_id": "44889", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you always forget how beautiful the harbor view can be when your deluged by the hustle and bustle of the city . this is an awesome view of the landscape . it was a great trip and we had a fun day on the water ! who wants to join us next time ?", "storylet_id": "224449"}], [{"original_text": "I looked into the mirror to make sure I looked great", "album_id": "72157594516747342", "photo_flickr_id": "379072025", "setting": "first-2-pick-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "44890", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i looked into the mirror to make sure i looked great", "storylet_id": "224450"}], [{"original_text": "because my crazy friends were coming to get me to have lunch, do some stuffed animal shopping and go bowling.", "album_id": "72157594516747342", "photo_flickr_id": "379073208", "setting": "first-2-pick-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "44890", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "because my crazy friends were coming to get me to have lunch , do some stuffed animal shopping and go bowling .", "storylet_id": "224451"}], [{"original_text": "First stop, lunch, oh it was great and the cake us wonderful.", "album_id": "72157594516747342", "photo_flickr_id": "379073843", "setting": "first-2-pick-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "44890", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "first stop , lunch , oh it was great and the cake us wonderful .", "storylet_id": "224452"}], [{"original_text": "Then off to get my gift for my nephew", "album_id": "72157594516747342", "photo_flickr_id": "379073660", "setting": "first-2-pick-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "44890", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then off to get my gift for my nephew", "storylet_id": "224453"}], [{"original_text": "and then topped off the beautiful day with some night time bowling. It was a fantastic day!", "album_id": "72157594516747342", "photo_flickr_id": "379074380", "setting": "first-2-pick-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "44890", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then topped off the beautiful day with some night time bowling . it was a fantastic day !", "storylet_id": "224454"}], [{"original_text": "After dinner we talked and we decided to go bowling.", "album_id": "72157594516747342", "photo_flickr_id": "379073843", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44891", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after dinner we talked and we decided to go bowling .", "storylet_id": "224455"}], [{"original_text": "Bowling was very fun. We were both not very good at it.", "album_id": "72157594516747342", "photo_flickr_id": "379074036", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44891", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "bowling was very fun . we were both not very good at it .", "storylet_id": "224456"}], [{"original_text": "Then all of a sudden then turned on these crazy bowling lights.", "album_id": "72157594516747342", "photo_flickr_id": "379074616", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44891", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then all of a sudden then turned on these crazy bowling lights .", "storylet_id": "224457"}], [{"original_text": "That made it impossible for us to bowl properly after that.", "album_id": "72157594516747342", "photo_flickr_id": "379074808", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44891", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that made it impossible for us to bowl properly after that .", "storylet_id": "224458"}], [{"original_text": "At the end we had bowled well enough that I received a stuffed pokemon for my performance.", "album_id": "72157594516747342", "photo_flickr_id": "379073660", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44891", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end we had bowled well enough that i received a stuffed pokemon for my performance .", "storylet_id": "224459"}], [{"original_text": "This woman looks like she is in the mood for some fun or something.", "album_id": "72157594516747342", "photo_flickr_id": "379072025", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "44892", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this woman looks like she is in the mood for some fun or something .", "storylet_id": "224460"}], [{"original_text": "In a store trying on hats is fun, especially hats like these.", "album_id": "72157594516747342", "photo_flickr_id": "379073208", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "44892", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in a store trying on hats is fun , especially hats like these .", "storylet_id": "224461"}], [{"original_text": "Went to a quaint little bar to grab something to eat.", "album_id": "72157594516747342", "photo_flickr_id": "379073843", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "44892", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "went to a quaint little bar to grab something to eat .", "storylet_id": "224462"}], [{"original_text": "Stuffed animals of any sort brightens me just a little.", "album_id": "72157594516747342", "photo_flickr_id": "379073660", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "44892", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "stuffed animals of any sort brightens me just a little .", "storylet_id": "224463"}], [{"original_text": "Bowling is just the type of fun way to spend the rest of the day.", "album_id": "72157594516747342", "photo_flickr_id": "379074380", "setting": "last-3-pick-old-and-tell", "worker_id": "YEVGPJI5NLMW2FN", "story_id": "44892", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "bowling is just the type of fun way to spend the rest of the day .", "storylet_id": "224464"}], [{"original_text": "We went out with some friends this evening.", "album_id": "72157594516747342", "photo_flickr_id": "379073843", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "44893", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went out with some friends this evening .", "storylet_id": "224465"}], [{"original_text": "We played some bowling at the local bowling alley.", "album_id": "72157594516747342", "photo_flickr_id": "379074036", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "44893", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we played some bowling at the local bowling alley .", "storylet_id": "224466"}], [{"original_text": "We bowled well into the night and had a great time.", "album_id": "72157594516747342", "photo_flickr_id": "379074616", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "44893", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we bowled well into the night and had a great time .", "storylet_id": "224467"}], [{"original_text": "This was a picture of the winning shot. Knocking this pin down won him the game.", "album_id": "72157594516747342", "photo_flickr_id": "379074808", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "44893", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was a picture of the winning shot . knocking this pin down won him the game .", "storylet_id": "224468"}], [{"original_text": "I won a stuffed animal from the gift shop.", "album_id": "72157594516747342", "photo_flickr_id": "379073660", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "44893", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i won a stuffed animal from the gift shop .", "storylet_id": "224469"}], [{"original_text": "I went bowling on Friday night with some old college friends. We had food and drinks.", "album_id": "72157594516747342", "photo_flickr_id": "379073843", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44894", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went bowling on friday night with some old college friends . we had food and drinks .", "storylet_id": "224470"}], [{"original_text": "I bowled a strike a few times but mostly just spares.", "album_id": "72157594516747342", "photo_flickr_id": "379074036", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44894", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i bowled a strike a few times but mostly just spares .", "storylet_id": "224471"}], [{"original_text": "I had a few cases where the ball went into the gutter, but it was still fun.", "album_id": "72157594516747342", "photo_flickr_id": "379074616", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44894", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a few cases where the ball went into the gutter , but it was still fun .", "storylet_id": "224472"}], [{"original_text": "My friend bowled the high score, using his skill he learned in school.", "album_id": "72157594516747342", "photo_flickr_id": "379074808", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44894", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friend bowled the high score , using his skill he learned in school .", "storylet_id": "224473"}], [{"original_text": "We went to the local store afterwords and found some fun toys.", "album_id": "72157594516747342", "photo_flickr_id": "379073660", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "44894", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we went to the local store afterwords and found some fun toys .", "storylet_id": "224474"}], [{"original_text": "I bought four lobsters for tonight.", "album_id": "72157594470466768", "photo_flickr_id": "352260900", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44895", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i bought four lobsters for tonight .", "storylet_id": "224475"}], [{"original_text": "I spent a lot of time carefully choosing which lobsters I want.", "album_id": "72157594470466768", "photo_flickr_id": "352255952", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44895", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i spent a lot of time carefully choosing which lobsters i want .", "storylet_id": "224476"}], [{"original_text": "Time to drop it into some boiling water to kill it.", "album_id": "72157594470466768", "photo_flickr_id": "352262437", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44895", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "time to drop it into some boiling water to kill it .", "storylet_id": "224477"}], [{"original_text": "I had to make sure the claws were closed shut so that it didn't try to stop me from killing it with boiling water.", "album_id": "72157594470466768", "photo_flickr_id": "352245521", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44895", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had to make sure the claws were closed shut so that it did n't try to stop me from killing it with boiling water .", "storylet_id": "224478"}], [{"original_text": "Yummy!", "album_id": "72157594470466768", "photo_flickr_id": "352248369", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44895", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "yummy !", "storylet_id": "224479"}], [{"original_text": "this is a big lobster i see lots orange and green came out a dryice box", "album_id": "72157594470466768", "photo_flickr_id": "352262437", "setting": "first-2-pick-and-tell", "worker_id": "CDOI0WX8Z7DTQU8", "story_id": "44896", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is a big lobster i see lots orange and green came out a dryice box", "storylet_id": "224480"}], [{"original_text": "4 small lobsters without diffrent colors on them .they have large pintchers.", "album_id": "72157594470466768", "photo_flickr_id": "352260900", "setting": "first-2-pick-and-tell", "worker_id": "CDOI0WX8Z7DTQU8", "story_id": "44896", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "4 small lobsters without diffrent colors on them .they have large pintchers .", "storylet_id": "224481"}], [{"original_text": "very large lobster on a oak table going to be cooked", "album_id": "72157594470466768", "photo_flickr_id": "352255952", "setting": "first-2-pick-and-tell", "worker_id": "CDOI0WX8Z7DTQU8", "story_id": "44896", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "very large lobster on a oak table going to be cooked", "storylet_id": "224482"}], [{"original_text": "2 small black lobster pinchers are still taped together they will cook these up for a meal", "album_id": "72157594470466768", "photo_flickr_id": "352254483", "setting": "first-2-pick-and-tell", "worker_id": "CDOI0WX8Z7DTQU8", "story_id": "44896", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "2 small black lobster pinchers are still taped together they will cook these up for a meal", "storylet_id": "224483"}], [{"original_text": "jumbo red lobster is going to be cooked in a really hot boiling pot for hours then will be aten by the family", "album_id": "72157594470466768", "photo_flickr_id": "352248369", "setting": "first-2-pick-and-tell", "worker_id": "CDOI0WX8Z7DTQU8", "story_id": "44896", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "jumbo red lobster is going to be cooked in a really hot boiling pot for hours then will be aten by the family", "storylet_id": "224484"}], [{"original_text": "Live lobsters were removed from the box.", "album_id": "72157594470466768", "photo_flickr_id": "352262437", "setting": "last-3-pick-old-and-tell", "worker_id": "1LFS55WS92GRGH9", "story_id": "44897", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "live lobsters were removed from the box .", "storylet_id": "224485"}], [{"original_text": "The lobster's are laid out on the floor in a row. ", "album_id": "72157594470466768", "photo_flickr_id": "352260900", "setting": "last-3-pick-old-and-tell", "worker_id": "1LFS55WS92GRGH9", "story_id": "44897", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lobster 's are laid out on the floor in a row .", "storylet_id": "224486"}], [{"original_text": "The lobster's had their claws clamped.", "album_id": "72157594470466768", "photo_flickr_id": "352255952", "setting": "last-3-pick-old-and-tell", "worker_id": "1LFS55WS92GRGH9", "story_id": "44897", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lobster 's had their claws clamped .", "storylet_id": "224487"}], [{"original_text": "Two lobster's lay on the floor with their claws closed with rubber bands. ", "album_id": "72157594470466768", "photo_flickr_id": "352254483", "setting": "last-3-pick-old-and-tell", "worker_id": "1LFS55WS92GRGH9", "story_id": "44897", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two lobster 's lay on the floor with their claws closed with rubber bands .", "storylet_id": "224488"}], [{"original_text": "Lobster's are set in a metal basket.", "album_id": "72157594470466768", "photo_flickr_id": "352248369", "setting": "last-3-pick-old-and-tell", "worker_id": "1LFS55WS92GRGH9", "story_id": "44897", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lobster 's are set in a metal basket .", "storylet_id": "224489"}], [{"original_text": "For my first time trying lobster, I wanted to make sure I chose the right one.", "album_id": "72157594470466768", "photo_flickr_id": "352262437", "setting": "last-3-pick-old-and-tell", "worker_id": "CUV0UVSZNMXFP24", "story_id": "44898", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for my first time trying lobster , i wanted to make sure i chose the right one .", "storylet_id": "224490"}], [{"original_text": "The size of claws can determine the age of the lobster as well as the kind of lobster.", "album_id": "72157594470466768", "photo_flickr_id": "352260900", "setting": "last-3-pick-old-and-tell", "worker_id": "CUV0UVSZNMXFP24", "story_id": "44898", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the size of claws can determine the age of the lobster as well as the kind of lobster .", "storylet_id": "224491"}], [{"original_text": "This one looks right.", "album_id": "72157594470466768", "photo_flickr_id": "352255952", "setting": "last-3-pick-old-and-tell", "worker_id": "CUV0UVSZNMXFP24", "story_id": "44898", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one looks right .", "storylet_id": "224492"}], [{"original_text": "They really are interesting creatures.", "album_id": "72157594470466768", "photo_flickr_id": "352254483", "setting": "last-3-pick-old-and-tell", "worker_id": "CUV0UVSZNMXFP24", "story_id": "44898", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they really are interesting creatures .", "storylet_id": "224493"}], [{"original_text": "They are tasty too!", "album_id": "72157594470466768", "photo_flickr_id": "352248369", "setting": "last-3-pick-old-and-tell", "worker_id": "CUV0UVSZNMXFP24", "story_id": "44898", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they are tasty too !", "storylet_id": "224494"}], [{"original_text": "I came home to quite the surprise today for dinner! My husband bought live lobster for supper.", "album_id": "72157594470466768", "photo_flickr_id": "352260900", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "44899", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i came home to quite the surprise today for dinner ! my husband bought live lobster for supper .", "storylet_id": "224495"}], [{"original_text": "They were cute, I named one Iggy.", "album_id": "72157594470466768", "photo_flickr_id": "352255952", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "44899", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were cute , i named one iggy .", "storylet_id": "224496"}], [{"original_text": "My husbands favorite was named Verde because he had weird green markings.", "album_id": "72157594470466768", "photo_flickr_id": "352262437", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "44899", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my husbands favorite was named verde because he had weird green markings .", "storylet_id": "224497"}], [{"original_text": "Verde also had HUGE claws!", "album_id": "72157594470466768", "photo_flickr_id": "352245521", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "44899", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "verde also had huge claws !", "storylet_id": "224498"}], [{"original_text": "We put them all in a bowl to cook, but I couldn't end up eating them.", "album_id": "72157594470466768", "photo_flickr_id": "352248369", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "44899", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we put them all in a bowl to cook , but i could n't end up eating them .", "storylet_id": "224499"}], [{"original_text": "We bought groceries to try out this recipe we saw online.", "album_id": "117776", "photo_flickr_id": "4681168", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44900", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we bought groceries to try out this recipe we saw online .", "storylet_id": "224500"}], [{"original_text": "There were a lot of ingredient to prep.", "album_id": "117776", "photo_flickr_id": "4680921", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44900", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of ingredient to prep .", "storylet_id": "224501"}], [{"original_text": "The one ingredient in this list that we haven't used before was the coconut milk.", "album_id": "117776", "photo_flickr_id": "4681388", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44900", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the one ingredient in this list that we have n't used before was the coconut milk .", "storylet_id": "224502"}], [{"original_text": "Here's my wife skillfully mixing everything.", "album_id": "117776", "photo_flickr_id": "4681277", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44900", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here 's my wife skillfully mixing everything .", "storylet_id": "224503"}], [{"original_text": "At the party, our dish looked like a huge success!", "album_id": "117776", "photo_flickr_id": "4681425", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "44900", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the party , our dish looked like a huge success !", "storylet_id": "224504"}], [{"original_text": "My friend had a \"Pot Luck\" dinner last night.", "album_id": "117776", "photo_flickr_id": "4680921", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44901", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend had a `` pot luck '' dinner last night .", "storylet_id": "224505"}], [{"original_text": "There were all sorts of food and drinks.", "album_id": "117776", "photo_flickr_id": "4681055", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44901", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were all sorts of food and drinks .", "storylet_id": "224506"}], [{"original_text": "It was a beautiful display.", "album_id": "117776", "photo_flickr_id": "4681132", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44901", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a beautiful display .", "storylet_id": "224507"}], [{"original_text": "My friend cooked some of the food that night.", "album_id": "117776", "photo_flickr_id": "4681277", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44901", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my friend cooked some of the food that night .", "storylet_id": "224508"}], [{"original_text": "When the food was all put out on the table we had great fun.", "album_id": "117776", "photo_flickr_id": "4681425", "setting": "first-2-pick-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "44901", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when the food was all put out on the table we had great fun .", "storylet_id": "224509"}], [{"original_text": "I came back from the grocery store with all of the ingredients that I need for my recipe.", "album_id": "117776", "photo_flickr_id": "4681168", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44902", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i came back from the grocery store with all of the ingredients that i need for my recipe .", "storylet_id": "224510"}], [{"original_text": "I'm going to make a lot of food tonight.", "album_id": "117776", "photo_flickr_id": "4680921", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44902", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm going to make a lot of food tonight .", "storylet_id": "224511"}], [{"original_text": "I invited everyone over for dinner.", "album_id": "117776", "photo_flickr_id": "4681388", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44902", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i invited everyone over for dinner .", "storylet_id": "224512"}], [{"original_text": "It took me a couple of hours but I eventually finished making everything.", "album_id": "117776", "photo_flickr_id": "4681277", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44902", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it took me a couple of hours but i eventually finished making everything .", "storylet_id": "224513"}], [{"original_text": "It all looks very good and everyone had a great time.", "album_id": "117776", "photo_flickr_id": "4681425", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44902", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it all looks very good and everyone had a great time .", "storylet_id": "224514"}], [{"original_text": "I went to the store and got all of the ingredients I need for dinner. ", "album_id": "117776", "photo_flickr_id": "4681168", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44903", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the store and got all of the ingredients i need for dinner .", "storylet_id": "224515"}], [{"original_text": "Prepping the meal takes so much longer than eating it. ", "album_id": "117776", "photo_flickr_id": "4680921", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44903", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "prepping the meal takes so much longer than eating it .", "storylet_id": "224516"}], [{"original_text": "I bought canned food and I am not ashamed to admit it. ", "album_id": "117776", "photo_flickr_id": "4681388", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44903", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i bought canned food and i am not ashamed to admit it .", "storylet_id": "224517"}], [{"original_text": "Laura helped me mix the sauces together. ", "album_id": "117776", "photo_flickr_id": "4681277", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44903", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] helped me mix the sauces together .", "storylet_id": "224518"}], [{"original_text": "Our friends had a wonderful time!", "album_id": "117776", "photo_flickr_id": "4681425", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44903", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our friends had a wonderful time !", "storylet_id": "224519"}], [{"original_text": "Having the family over for dinner tonight! Better get ready.", "album_id": "117776", "photo_flickr_id": "4681168", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44904", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "having the family over for dinner tonight ! better get ready .", "storylet_id": "224520"}], [{"original_text": "Preparing the meal for the family is a lot of work!", "album_id": "117776", "photo_flickr_id": "4680921", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44904", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "preparing the meal for the family is a lot of work !", "storylet_id": "224521"}], [{"original_text": "I need to make sure that everything is just right.", "album_id": "117776", "photo_flickr_id": "4681388", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44904", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i need to make sure that everything is just right .", "storylet_id": "224522"}], [{"original_text": "Putting the finishing touches on the meal. My family should be here soon!", "album_id": "117776", "photo_flickr_id": "4681277", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44904", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "putting the finishing touches on the meal . my family should be here soon !", "storylet_id": "224523"}], [{"original_text": "Now let's enjoy the meal with my family. I hope they enjoy it!", "album_id": "117776", "photo_flickr_id": "4681425", "setting": "last-3-pick-old-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "44904", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now let 's enjoy the meal with my family . i hope they enjoy it !", "storylet_id": "224524"}], [{"original_text": "We ate so much during dinner.", "album_id": "72157594478032462", "photo_flickr_id": "356473647", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44905", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we ate so much during dinner .", "storylet_id": "224525"}], [{"original_text": "I had a lot to drink.", "album_id": "72157594478032462", "photo_flickr_id": "356477044", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44905", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had a lot to drink .", "storylet_id": "224526"}], [{"original_text": "After dinner we were thinking we wanted some ice cream so we went to grab some.", "album_id": "72157594478032462", "photo_flickr_id": "356478413", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44905", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after dinner we were thinking we wanted some ice cream so we went to grab some .", "storylet_id": "224527"}], [{"original_text": "They had many different kinds of ice cream.", "album_id": "72157594478032462", "photo_flickr_id": "356481203", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44905", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had many different kinds of ice cream .", "storylet_id": "224528"}], [{"original_text": "We all enjoyed our ice cream.", "album_id": "72157594478032462", "photo_flickr_id": "356484490", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44905", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all enjoyed our ice cream .", "storylet_id": "224529"}], [{"original_text": "The family always enjoyed a big dinner and didn't hesitate to fill their plates. ", "album_id": "72157594478032462", "photo_flickr_id": "356473647", "setting": "first-2-pick-and-tell", "worker_id": "ZOL3V3HDYVD2F1A", "story_id": "44906", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family always enjoyed a big dinner and did n't hesitate to fill their plates .", "storylet_id": "224530"}], [{"original_text": "As was tradition, it was always hot and spicy. ", "album_id": "72157594478032462", "photo_flickr_id": "356474330", "setting": "first-2-pick-and-tell", "worker_id": "ZOL3V3HDYVD2F1A", "story_id": "44906", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as was tradition , it was always hot and spicy .", "storylet_id": "224531"}], [{"original_text": "Martin took advantage of that and helped himself to a refreshing martini or two. ", "album_id": "72157594478032462", "photo_flickr_id": "356476263", "setting": "first-2-pick-and-tell", "worker_id": "ZOL3V3HDYVD2F1A", "story_id": "44906", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] took advantage of that and helped himself to a refreshing martini or two .", "storylet_id": "224532"}], [{"original_text": "The soup was the spiciest of all. ", "album_id": "72157594478032462", "photo_flickr_id": "356475611", "setting": "first-2-pick-and-tell", "worker_id": "ZOL3V3HDYVD2F1A", "story_id": "44906", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the soup was the spiciest of all .", "storylet_id": "224533"}], [{"original_text": "Afterwards, though, it was always better once the cool and refreshing ice cream was served. ", "album_id": "72157594478032462", "photo_flickr_id": "356483458", "setting": "first-2-pick-and-tell", "worker_id": "ZOL3V3HDYVD2F1A", "story_id": "44906", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , though , it was always better once the cool and refreshing ice cream was served .", "storylet_id": "224534"}], [{"original_text": "We gathered at the table to enjoy a large family style meal. ", "album_id": "72157594478032462", "photo_flickr_id": "356473647", "setting": "last-3-pick-old-and-tell", "worker_id": "1LFS55WS92GRGH9", "story_id": "44907", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we gathered at the table to enjoy a large family style meal .", "storylet_id": "224535"}], [{"original_text": "My drink is cool and refreshing.", "album_id": "72157594478032462", "photo_flickr_id": "356477044", "setting": "last-3-pick-old-and-tell", "worker_id": "1LFS55WS92GRGH9", "story_id": "44907", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my drink is cool and refreshing .", "storylet_id": "224536"}], [{"original_text": "We get to enjoy some treats from Bombay Bazar. ", "album_id": "72157594478032462", "photo_flickr_id": "356478413", "setting": "last-3-pick-old-and-tell", "worker_id": "1LFS55WS92GRGH9", "story_id": "44907", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we get to enjoy some treats from location location .", "storylet_id": "224537"}], [{"original_text": "There are quite a few ice cream flavor's to choose from.", "album_id": "72157594478032462", "photo_flickr_id": "356481203", "setting": "last-3-pick-old-and-tell", "worker_id": "1LFS55WS92GRGH9", "story_id": "44907", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are quite a few ice cream flavor 's to choose from .", "storylet_id": "224538"}], [{"original_text": "We all get to sample some ice cream.", "album_id": "72157594478032462", "photo_flickr_id": "356484490", "setting": "last-3-pick-old-and-tell", "worker_id": "1LFS55WS92GRGH9", "story_id": "44907", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all get to sample some ice cream .", "storylet_id": "224539"}], [{"original_text": "For a celebration, we started with homemade food. ", "album_id": "72157594478032462", "photo_flickr_id": "356473647", "setting": "last-3-pick-old-and-tell", "worker_id": "H43W2C259MXE4HQ", "story_id": "44908", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for a celebration , we started with homemade food .", "storylet_id": "224540"}], [{"original_text": "We continued with drinks at home, toasting each other. ", "album_id": "72157594478032462", "photo_flickr_id": "356477044", "setting": "last-3-pick-old-and-tell", "worker_id": "H43W2C259MXE4HQ", "story_id": "44908", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we continued with drinks at home , toasting each other .", "storylet_id": "224541"}], [{"original_text": "After a while, we wanted something more, so we headed to the Bombay creamery. ", "album_id": "72157594478032462", "photo_flickr_id": "356478413", "setting": "last-3-pick-old-and-tell", "worker_id": "H43W2C259MXE4HQ", "story_id": "44908", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after a while , we wanted something more , so we headed to the location creamery .", "storylet_id": "224542"}], [{"original_text": "There were so many flavors to choose from. ", "album_id": "72157594478032462", "photo_flickr_id": "356481203", "setting": "last-3-pick-old-and-tell", "worker_id": "H43W2C259MXE4HQ", "story_id": "44908", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were so many flavors to choose from .", "storylet_id": "224543"}], [{"original_text": "They were all very delicious, though, and we ate our dessert as we wrapped up our celebration. ", "album_id": "72157594478032462", "photo_flickr_id": "356484490", "setting": "last-3-pick-old-and-tell", "worker_id": "H43W2C259MXE4HQ", "story_id": "44908", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were all very delicious , though , and we ate our dessert as we wrapped up our celebration .", "storylet_id": "224544"}], [{"original_text": "Me and my coworkers decided to try a new resteraunt in town.", "album_id": "72157594478032462", "photo_flickr_id": "356473647", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "44909", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and my coworkers decided to try a new resteraunt in town .", "storylet_id": "224545"}], [{"original_text": "One of my coworkers said they had some of the best chicken around.", "album_id": "72157594478032462", "photo_flickr_id": "356474330", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "44909", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of my coworkers said they had some of the best chicken around .", "storylet_id": "224546"}], [{"original_text": "The other coworker said they also had the best drinks around.", "album_id": "72157594478032462", "photo_flickr_id": "356476263", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "44909", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the other coworker said they also had the best drinks around .", "storylet_id": "224547"}], [{"original_text": "But I was quite happy with my green soup.", "album_id": "72157594478032462", "photo_flickr_id": "356475611", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "44909", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but i was quite happy with my green soup .", "storylet_id": "224548"}], [{"original_text": "Especially when it's followed up with ice cream for desert.", "album_id": "72157594478032462", "photo_flickr_id": "356483458", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "44909", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "especially when it 's followed up with ice cream for desert .", "storylet_id": "224549"}], [{"original_text": "I had a great time at the party yesterday.", "album_id": "72157623361190375", "photo_flickr_id": "4379068956", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44910", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the party yesterday .", "storylet_id": "224550"}], [{"original_text": "There were a ton of rinks there.", "album_id": "72157623361190375", "photo_flickr_id": "4378316651", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44910", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a ton of rinks there .", "storylet_id": "224551"}], [{"original_text": "After the party we went to a ski lodge.", "album_id": "72157623361190375", "photo_flickr_id": "4379070644", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44910", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the party we went to a ski lodge .", "storylet_id": "224552"}], [{"original_text": "We had a great time skiing as well.", "album_id": "72157623361190375", "photo_flickr_id": "4378321451", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44910", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a great time skiing as well .", "storylet_id": "224553"}], [{"original_text": "The view was beautiful.", "album_id": "72157623361190375", "photo_flickr_id": "4378322041", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44910", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the view was beautiful .", "storylet_id": "224554"}], [{"original_text": "She packed lunch for a long day out doors. ", "album_id": "72157623361190375", "photo_flickr_id": "4379068956", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44911", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she packed lunch for a long day out doors .", "storylet_id": "224555"}], [{"original_text": "They all went skiing together. ", "album_id": "72157623361190375", "photo_flickr_id": "4379072340", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44911", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all went skiing together .", "storylet_id": "224556"}], [{"original_text": "He went down the slope first. ", "album_id": "72157623361190375", "photo_flickr_id": "4378326295", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44911", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he went down the slope first .", "storylet_id": "224557"}], [{"original_text": "They gathered at the top for one last ski run down the hill. ", "album_id": "72157623361190375", "photo_flickr_id": "4378330891", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44911", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they gathered at the top for one last ski run down the hill .", "storylet_id": "224558"}], [{"original_text": "Nothing was better than a warm gathering with friends after a cold day outside. ", "album_id": "72157623361190375", "photo_flickr_id": "4379070644", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "44911", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "nothing was better than a warm gathering with friends after a cold day outside .", "storylet_id": "224559"}], [{"original_text": "Fun making food in the kitchen before heading out.", "album_id": "72157623361190375", "photo_flickr_id": "4379068956", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44912", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "fun making food in the kitchen before heading out .", "storylet_id": "224560"}], [{"original_text": "And a bit of drinking, to warm people up.", "album_id": "72157623361190375", "photo_flickr_id": "4378316651", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44912", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and a bit of drinking , to warm people up .", "storylet_id": "224561"}], [{"original_text": "A photo of the whole group, ready for the cold!", "album_id": "72157623361190375", "photo_flickr_id": "4379070644", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44912", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a photo of the whole group , ready for the cold !", "storylet_id": "224562"}], [{"original_text": "The snow was thick and perfect.", "album_id": "72157623361190375", "photo_flickr_id": "4378321451", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44912", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the snow was thick and perfect .", "storylet_id": "224563"}], [{"original_text": "A lot of skiers were enjoying the weather. ", "album_id": "72157623361190375", "photo_flickr_id": "4378322041", "setting": "last-3-pick-old-and-tell", "worker_id": "E67HSXIV5UL8742", "story_id": "44912", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a lot of skiers were enjoying the weather .", "storylet_id": "224564"}], [{"original_text": "It was a cold winters day and the group of friends decided they would get together to eat a nice home cooked meal.", "album_id": "72157623361190375", "photo_flickr_id": "4379068956", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "44913", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a cold winters day and the group of friends decided they would get together to eat a nice home cooked meal .", "storylet_id": "224565"}], [{"original_text": "They drink some tasty dark beers and chat among each other.", "album_id": "72157623361190375", "photo_flickr_id": "4378316651", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "44913", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they drink some tasty dark beers and chat among each other .", "storylet_id": "224566"}], [{"original_text": "The friends had a blast while the weather was cold outside.", "album_id": "72157623361190375", "photo_flickr_id": "4379070644", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "44913", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the friends had a blast while the weather was cold outside .", "storylet_id": "224567"}], [{"original_text": "The next morning they woke up to do some skiing and other outdoor activities in the snow.", "album_id": "72157623361190375", "photo_flickr_id": "4378321451", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "44913", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next morning they woke up to do some skiing and other outdoor activities in the snow .", "storylet_id": "224568"}], [{"original_text": "The weather was freezing but it was a beautiful site. The time together turned out to be a blast.", "album_id": "72157623361190375", "photo_flickr_id": "4378322041", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "44913", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the weather was freezing but it was a beautiful site . the time together turned out to be a blast .", "storylet_id": "224569"}], [{"original_text": "Carrie packed our lunches for the big ski trip.", "album_id": "72157623361190375", "photo_flickr_id": "4379068956", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44914", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] packed our lunches for the big ski trip .", "storylet_id": "224570"}], [{"original_text": "The boys got ready for the time of their lives.", "album_id": "72157623361190375", "photo_flickr_id": "4379072340", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44914", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the boys got ready for the time of their lives .", "storylet_id": "224571"}], [{"original_text": "Tom went down so slow the boys had to wait ten extra minutes. ", "album_id": "72157623361190375", "photo_flickr_id": "4378326295", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44914", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] went down so slow the boys had to wait ten extra minutes .", "storylet_id": "224572"}], [{"original_text": "They met at the bottom and discussed what they wanted for dinner.", "album_id": "72157623361190375", "photo_flickr_id": "4378330891", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44914", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they met at the bottom and discussed what they wanted for dinner .", "storylet_id": "224573"}], [{"original_text": "The boys were quite satisfied with their evening meal.", "album_id": "72157623361190375", "photo_flickr_id": "4379070644", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44914", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boys were quite satisfied with their evening meal .", "storylet_id": "224574"}], [{"original_text": "It's Christmas time and the stockings are up.", "album_id": "1658298", "photo_flickr_id": "77417491", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "44915", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's christmas time and the stockings are up .", "storylet_id": "224575"}], [{"original_text": "We have received a lot of cards from family and friends", "album_id": "1658298", "photo_flickr_id": "77417537", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "44915", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we have received a lot of cards from family and friends", "storylet_id": "224576"}], [{"original_text": "Mom is watching TV after cooking a lot of food and hosting a party.", "album_id": "1658298", "photo_flickr_id": "77417121", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "44915", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom is watching tv after cooking a lot of food and hosting a party .", "storylet_id": "224577"}], [{"original_text": "She does not want to deal with the pile of dishes.", "album_id": "1658298", "photo_flickr_id": "77417456", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "44915", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she does not want to deal with the pile of dishes .", "storylet_id": "224578"}], [{"original_text": "After everyone has left, the little girl plays tea party by herself.", "album_id": "1658298", "photo_flickr_id": "77417325", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "44915", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after everyone has left , the little girl plays tea party by herself .", "storylet_id": "224579"}], [{"original_text": "This little girl decided that she wanted to have a tea party.", "album_id": "1658298", "photo_flickr_id": "77417275", "setting": "first-2-pick-and-tell", "worker_id": "UTCI7OY7QZFPR6C", "story_id": "44916", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this little girl decided that she wanted to have a tea party .", "storylet_id": "224580"}], [{"original_text": "She set up her tea set for some friends to join her.", "album_id": "1658298", "photo_flickr_id": "77417309", "setting": "first-2-pick-and-tell", "worker_id": "UTCI7OY7QZFPR6C", "story_id": "44916", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she set up her tea set for some friends to join her .", "storylet_id": "224581"}], [{"original_text": "She poured the tea into the teacups.", "album_id": "1658298", "photo_flickr_id": "77417325", "setting": "first-2-pick-and-tell", "worker_id": "UTCI7OY7QZFPR6C", "story_id": "44916", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she poured the tea into the teacups .", "storylet_id": "224582"}], [{"original_text": "The little girl was sad that she had no friends at her tea party.", "album_id": "1658298", "photo_flickr_id": "77417193", "setting": "first-2-pick-and-tell", "worker_id": "UTCI7OY7QZFPR6C", "story_id": "44916", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the little girl was sad that she had no friends at her tea party .", "storylet_id": "224583"}], [{"original_text": "But having pictures of her friends on the computer screen made her feel not quite alone.", "album_id": "1658298", "photo_flickr_id": "77417234", "setting": "first-2-pick-and-tell", "worker_id": "UTCI7OY7QZFPR6C", "story_id": "44916", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but having pictures of her friends on the computer screen made her feel not quite alone .", "storylet_id": "224584"}], [{"original_text": "The living was fully decorated for the party.", "album_id": "1658298", "photo_flickr_id": "77417491", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44917", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the living was fully decorated for the party .", "storylet_id": "224585"}], [{"original_text": "We had a lot of gifts when everybody had left.", "album_id": "1658298", "photo_flickr_id": "77417537", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44917", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a lot of gifts when everybody had left .", "storylet_id": "224586"}], [{"original_text": "There was a lot of cleaning up to do.", "album_id": "1658298", "photo_flickr_id": "77417121", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44917", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a lot of cleaning up to do .", "storylet_id": "224587"}], [{"original_text": "I set everything aside for me to do tomorrow.", "album_id": "1658298", "photo_flickr_id": "77417456", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44917", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i set everything aside for me to do tomorrow .", "storylet_id": "224588"}], [{"original_text": "All of the children really enjoyed their gifts.", "album_id": "1658298", "photo_flickr_id": "77417325", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44917", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of the children really enjoyed their gifts .", "storylet_id": "224589"}], [{"original_text": "All the stockings had been hung up by the chimney.", "album_id": "1658298", "photo_flickr_id": "77417491", "setting": "last-3-pick-old-and-tell", "worker_id": "SEYTGHBSRMWZDNJ", "story_id": "44918", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all the stockings had been hung up by the chimney .", "storylet_id": "224590"}], [{"original_text": "The Christmas cards were nearby complimenting the stockings.", "album_id": "1658298", "photo_flickr_id": "77417537", "setting": "last-3-pick-old-and-tell", "worker_id": "SEYTGHBSRMWZDNJ", "story_id": "44918", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the christmas cards were nearby complimenting the stockings .", "storylet_id": "224591"}], [{"original_text": "Food was sprawled across the table ready for everyone to gobble on.", "album_id": "1658298", "photo_flickr_id": "77417121", "setting": "last-3-pick-old-and-tell", "worker_id": "SEYTGHBSRMWZDNJ", "story_id": "44918", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "food was sprawled across the table ready for everyone to gobble on .", "storylet_id": "224592"}], [{"original_text": "Everyone was done eating and all of a sudden the kitchen was really dirty.", "album_id": "1658298", "photo_flickr_id": "77417456", "setting": "last-3-pick-old-and-tell", "worker_id": "SEYTGHBSRMWZDNJ", "story_id": "44918", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was done eating and all of a sudden the kitchen was really dirty .", "storylet_id": "224593"}], [{"original_text": "Little Patty was nearby not having a care in the world playing with her teacup set.", "album_id": "1658298", "photo_flickr_id": "77417325", "setting": "last-3-pick-old-and-tell", "worker_id": "SEYTGHBSRMWZDNJ", "story_id": "44918", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "little [female] was nearby not having a care in the world playing with her teacup set .", "storylet_id": "224594"}], [{"original_text": "Christmas has just about wrapped up for this family. ", "album_id": "1658298", "photo_flickr_id": "77417491", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44919", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "christmas has just about wrapped up for this family .", "storylet_id": "224595"}], [{"original_text": "The cards have been read and put on the furnace for display. ", "album_id": "1658298", "photo_flickr_id": "77417537", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44919", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cards have been read and put on the furnace for display .", "storylet_id": "224596"}], [{"original_text": "The dinner is about to be eaten. ", "album_id": "1658298", "photo_flickr_id": "77417121", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44919", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dinner is about to be eaten .", "storylet_id": "224597"}], [{"original_text": "And in no less than 20 minutes the food was gone and dishes stacked. ", "album_id": "1658298", "photo_flickr_id": "77417456", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44919", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and in no less than 20 minutes the food was gone and dishes stacked .", "storylet_id": "224598"}], [{"original_text": "Our daughter loves the tea set we got for her. ", "album_id": "1658298", "photo_flickr_id": "77417325", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44919", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our daughter loves the tea set we got for her .", "storylet_id": "224599"}], [{"original_text": "Setting up the wines for the wine testing dinner.", "album_id": "72157623402304105", "photo_flickr_id": "4395597418", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44920", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "setting up the wines for the wine testing dinner .", "storylet_id": "224600"}], [{"original_text": "Making a chocolate cake. ", "album_id": "72157623402304105", "photo_flickr_id": "4394833035", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44920", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "making a chocolate cake .", "storylet_id": "224601"}], [{"original_text": "Starting of with a caesar salad.", "album_id": "72157623402304105", "photo_flickr_id": "4395598606", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44920", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "starting of with a caesar salad .", "storylet_id": "224602"}], [{"original_text": "The wine glasses with the wine and a desert. ", "album_id": "72157623402304105", "photo_flickr_id": "4394833979", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44920", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wine glasses with the wine and a desert .", "storylet_id": "224603"}], [{"original_text": "Chocolate cake for desert.", "album_id": "72157623402304105", "photo_flickr_id": "4395601052", "setting": "first-2-pick-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "44920", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "chocolate cake for desert .", "storylet_id": "224604"}], [{"original_text": "The chef prepares dinner by starting with the basics.", "album_id": "72157623402304105", "photo_flickr_id": "4394830077", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44921", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the chef prepares dinner by starting with the basics .", "storylet_id": "224605"}], [{"original_text": "The condiments the chef put into the dish to make it tasty.", "album_id": "72157623402304105", "photo_flickr_id": "4394830927", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44921", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the condiments the chef put into the dish to make it tasty .", "storylet_id": "224606"}], [{"original_text": "The flight of wine that we would be tasting that night.", "album_id": "72157623402304105", "photo_flickr_id": "4395597418", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44921", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the flight of wine that we would be tasting that night .", "storylet_id": "224607"}], [{"original_text": "The base layer of our dessert for after the wine tasting.", "album_id": "72157623402304105", "photo_flickr_id": "4394833035", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44921", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the base layer of our dessert for after the wine tasting .", "storylet_id": "224608"}], [{"original_text": "Everybody sitting down and enjoying the wine tasting.", "album_id": "72157623402304105", "photo_flickr_id": "4395600438", "setting": "first-2-pick-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "44921", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everybody sitting down and enjoying the wine tasting .", "storylet_id": "224609"}], [{"original_text": "People attended a wine tasting tonight.", "album_id": "72157623402304105", "photo_flickr_id": "4395597418", "setting": "last-3-pick-old-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "44922", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people attended a wine tasting tonight .", "storylet_id": "224610"}], [{"original_text": "There were elaborate desserts to sample.", "album_id": "72157623402304105", "photo_flickr_id": "4394833035", "setting": "last-3-pick-old-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "44922", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were elaborate desserts to sample .", "storylet_id": "224611"}], [{"original_text": "There were also samples of salad for more health-conscious people. ", "album_id": "72157623402304105", "photo_flickr_id": "4395598606", "setting": "last-3-pick-old-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "44922", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were also samples of salad for more health-conscious people .", "storylet_id": "224612"}], [{"original_text": "The main event was the wine sampling where several wineries were represented.", "album_id": "72157623402304105", "photo_flickr_id": "4394833979", "setting": "last-3-pick-old-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "44922", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the main event was the wine sampling where several wineries were represented .", "storylet_id": "224613"}], [{"original_text": "The party was a huge success and people had a wonderful time.", "album_id": "72157623402304105", "photo_flickr_id": "4395601052", "setting": "last-3-pick-old-and-tell", "worker_id": "O8WB873G34AL5DU", "story_id": "44922", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the party was a huge success and people had a wonderful time .", "storylet_id": "224614"}], [{"original_text": "Plenty of wines were on hand for the event.", "album_id": "72157623402304105", "photo_flickr_id": "4395597418", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "44923", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "plenty of wines were on hand for the event .", "storylet_id": "224615"}], [{"original_text": "A delicious-looking cake was just begging to be tasted.", "album_id": "72157623402304105", "photo_flickr_id": "4394833035", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "44923", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a delicious-looking cake was just begging to be tasted .", "storylet_id": "224616"}], [{"original_text": "Small salads were prepared with an assortment of dressings.", "album_id": "72157623402304105", "photo_flickr_id": "4395598606", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "44923", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "small salads were prepared with an assortment of dressings .", "storylet_id": "224617"}], [{"original_text": "Several different wines were presented to be sampled with the dessert course. ", "album_id": "72157623402304105", "photo_flickr_id": "4394833979", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "44923", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "several different wines were presented to be sampled with the dessert course .", "storylet_id": "224618"}], [{"original_text": "The dessert looked almost too good to eat.", "album_id": "72157623402304105", "photo_flickr_id": "4395601052", "setting": "last-3-pick-old-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "44923", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dessert looked almost too good to eat .", "storylet_id": "224619"}], [{"original_text": "Making dinner tonight for my friends and family!", "album_id": "72157623402304105", "photo_flickr_id": "4394830077", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "44924", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "making dinner tonight for my friends and family !", "storylet_id": "224620"}], [{"original_text": "Got all the good spices prepared!", "album_id": "72157623402304105", "photo_flickr_id": "4394830927", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "44924", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "got all the good spices prepared !", "storylet_id": "224621"}], [{"original_text": "Chose some really delicious wines to go with the food.", "album_id": "72157623402304105", "photo_flickr_id": "4395597418", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "44924", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "chose some really delicious wines to go with the food .", "storylet_id": "224622"}], [{"original_text": "Bake a glorious looking cake.", "album_id": "72157623402304105", "photo_flickr_id": "4394833035", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "44924", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "bake a glorious looking cake .", "storylet_id": "224623"}], [{"original_text": "All of us sitting down at the table about to eat!", "album_id": "72157623402304105", "photo_flickr_id": "4395600438", "setting": "last-3-pick-old-and-tell", "worker_id": "RNNQWTTMLZ0WMQU", "story_id": "44924", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all of us sitting down at the table about to eat !", "storylet_id": "224624"}], [{"original_text": "I have a bunch of chickens.", "album_id": "72157594511236944", "photo_flickr_id": "375922355", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44925", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have a bunch of chickens .", "storylet_id": "224625"}], [{"original_text": "I need the dogs help in order to get the chickens and eat them.", "album_id": "72157594511236944", "photo_flickr_id": "375921262", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44925", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i need the dogs help in order to get the chickens and eat them .", "storylet_id": "224626"}], [{"original_text": "The dog is happy to help me.", "album_id": "72157594511236944", "photo_flickr_id": "375923517", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44925", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dog is happy to help me .", "storylet_id": "224627"}], [{"original_text": "We got them and cooked them.", "album_id": "72157594511236944", "photo_flickr_id": "375927201", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44925", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got them and cooked them .", "storylet_id": "224628"}], [{"original_text": "I shared my food with the dog because it helped me.", "album_id": "72157594511236944", "photo_flickr_id": "375928979", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44925", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i shared my food with the dog because it helped me .", "storylet_id": "224629"}], [{"original_text": "I have a very good dog.", "album_id": "72157594511236944", "photo_flickr_id": "375921262", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "44926", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have a very good dog .", "storylet_id": "224630"}], [{"original_text": "He helps keep the chickens safe.", "album_id": "72157594511236944", "photo_flickr_id": "375921732", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "44926", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he helps keep the chickens safe .", "storylet_id": "224631"}], [{"original_text": "I let the chickens out to graze.", "album_id": "72157594511236944", "photo_flickr_id": "375922355", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "44926", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i let the chickens out to graze .", "storylet_id": "224632"}], [{"original_text": "The dog keeps watch.", "album_id": "72157594511236944", "photo_flickr_id": "375922938", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "44926", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dog keeps watch .", "storylet_id": "224633"}], [{"original_text": "My dog is really happy and enjoys his job.", "album_id": "72157594511236944", "photo_flickr_id": "375923517", "setting": "first-2-pick-and-tell", "worker_id": "WBEZN1UDWQK76S1", "story_id": "44926", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my dog is really happy and enjoys his job .", "storylet_id": "224634"}], [{"original_text": "We went with our pup to go see chickens at the farm.", "album_id": "72157594511236944", "photo_flickr_id": "375921262", "setting": "last-3-pick-old-and-tell", "worker_id": "B7Z6DXZJUMT36AX", "story_id": "44927", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went with our pup to go see chickens at the farm .", "storylet_id": "224635"}], [{"original_text": "We saw the chicken coop", "album_id": "72157594511236944", "photo_flickr_id": "375921732", "setting": "last-3-pick-old-and-tell", "worker_id": "B7Z6DXZJUMT36AX", "story_id": "44927", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw the chicken coop", "storylet_id": "224636"}], [{"original_text": "as well as the free roaming chickens.", "album_id": "72157594511236944", "photo_flickr_id": "375922355", "setting": "last-3-pick-old-and-tell", "worker_id": "B7Z6DXZJUMT36AX", "story_id": "44927", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "as well as the free roaming chickens .", "storylet_id": "224637"}], [{"original_text": "Our dog was watching and waiting patiently.", "album_id": "72157594511236944", "photo_flickr_id": "375922938", "setting": "last-3-pick-old-and-tell", "worker_id": "B7Z6DXZJUMT36AX", "story_id": "44927", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our dog was watching and waiting patiently .", "storylet_id": "224638"}], [{"original_text": "Although we probably think he was dying to chase after them!", "album_id": "72157594511236944", "photo_flickr_id": "375923517", "setting": "last-3-pick-old-and-tell", "worker_id": "B7Z6DXZJUMT36AX", "story_id": "44927", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "although we probably think he was dying to chase after them !", "storylet_id": "224639"}], [{"original_text": "Living on the farm means lots of things to take care of, including all these chickens.", "album_id": "72157594511236944", "photo_flickr_id": "375922355", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "44928", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "living on the farm means lots of things to take care of , including all these chickens .", "storylet_id": "224640"}], [{"original_text": "Luckily I have help from my loyal companion.", "album_id": "72157594511236944", "photo_flickr_id": "375921262", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "44928", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "luckily i have help from my loyal companion .", "storylet_id": "224641"}], [{"original_text": "She's never been one to be shy in front of a camera.", "album_id": "72157594511236944", "photo_flickr_id": "375923517", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "44928", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she 's never been one to be shy in front of a camera .", "storylet_id": "224642"}], [{"original_text": "Farm life means plenty of good, fresh food.", "album_id": "72157594511236944", "photo_flickr_id": "375927201", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "44928", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "farm life means plenty of good , fresh food .", "storylet_id": "224643"}], [{"original_text": "Which makes for some dinners you just can't get anywhere else.", "album_id": "72157594511236944", "photo_flickr_id": "375928979", "setting": "last-3-pick-old-and-tell", "worker_id": "LI8JVWNTCJ6KVX0", "story_id": "44928", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "which makes for some dinners you just ca n't get anywhere else .", "storylet_id": "224644"}], [{"original_text": "Today we adopted a new dog.", "album_id": "72157594511236944", "photo_flickr_id": "375921262", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "44929", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we adopted a new dog .", "storylet_id": "224645"}], [{"original_text": "We wanted to make sure he would get along with our chickens.", "album_id": "72157594511236944", "photo_flickr_id": "375921732", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "44929", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we wanted to make sure he would get along with our chickens .", "storylet_id": "224646"}], [{"original_text": "We let the chickens out and brought the dog nearby to see what happened.", "album_id": "72157594511236944", "photo_flickr_id": "375922355", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "44929", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we let the chickens out and brought the dog nearby to see what happened .", "storylet_id": "224647"}], [{"original_text": "The dog just stood near the fence, interested, but not in a bad way.", "album_id": "72157594511236944", "photo_flickr_id": "375922938", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "44929", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dog just stood near the fence , interested , but not in a bad way .", "storylet_id": "224648"}], [{"original_text": "After his performance with the chickens, we decided to keep him!", "album_id": "72157594511236944", "photo_flickr_id": "375923517", "setting": "last-3-pick-old-and-tell", "worker_id": "JT6UIA5M24XXX9N", "story_id": "44929", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after his performance with the chickens , we decided to keep him !", "storylet_id": "224649"}], [{"original_text": "The scouts prep for their trek into the wilderness.", "album_id": "578280", "photo_flickr_id": "25378249", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44930", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the scouts prep for their trek into the wilderness .", "storylet_id": "224650"}], [{"original_text": "They start to pair off, talking about what's going on in their life.", "album_id": "578280", "photo_flickr_id": "25378394", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44930", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they start to pair off , talking about what 's going on in their life .", "storylet_id": "224651"}], [{"original_text": "They walk for about 20 miles.", "album_id": "578280", "photo_flickr_id": "25378423", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44930", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they walk for about 20 miles .", "storylet_id": "224652"}], [{"original_text": "Once they get into the mountain, they decide to camp and start a camp fire.", "album_id": "578280", "photo_flickr_id": "25378510", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44930", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once they get into the mountain , they decide to camp and start a camp fire .", "storylet_id": "224653"}], [{"original_text": "Time for roasted marshmallows!", "album_id": "578280", "photo_flickr_id": "25378569", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44930", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time for roasted marshmallows !", "storylet_id": "224654"}], [{"original_text": "The friends had met up for the hike.", "album_id": "578280", "photo_flickr_id": "25378351", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44931", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the friends had met up for the hike .", "storylet_id": "224655"}], [{"original_text": "They went onto the trail.", "album_id": "578280", "photo_flickr_id": "25378423", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44931", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they went onto the trail .", "storylet_id": "224656"}], [{"original_text": "After awhile they stopped to set up camp, and cook dinner.", "album_id": "578280", "photo_flickr_id": "25378486", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44931", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after awhile they stopped to set up camp , and cook dinner .", "storylet_id": "224657"}], [{"original_text": "They hung out around the fire, and cooked food.", "album_id": "578280", "photo_flickr_id": "25378747", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44931", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they hung out around the fire , and cooked food .", "storylet_id": "224658"}], [{"original_text": "Later that night they ate in front of the fire, and talked about the day.", "album_id": "578280", "photo_flickr_id": "25378569", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "44931", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later that night they ate in front of the fire , and talked about the day .", "storylet_id": "224659"}], [{"original_text": "After driving for hours we finally arrived at the camp site.", "album_id": "578280", "photo_flickr_id": "25378249", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44932", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after driving for hours we finally arrived at the camp site .", "storylet_id": "224660"}], [{"original_text": "The hike to the site was long.", "album_id": "578280", "photo_flickr_id": "25378394", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44932", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the hike to the site was long .", "storylet_id": "224661"}], [{"original_text": "We must have been walking for at least an hour.", "album_id": "578280", "photo_flickr_id": "25378423", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44932", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we must have been walking for at least an hour .", "storylet_id": "224662"}], [{"original_text": "Finally we got there and set up camp.", "album_id": "578280", "photo_flickr_id": "25378510", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44932", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally we got there and set up camp .", "storylet_id": "224663"}], [{"original_text": "We had a huge fire at night and made some good food.", "album_id": "578280", "photo_flickr_id": "25378569", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44932", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a huge fire at night and made some good food .", "storylet_id": "224664"}], [{"original_text": "Greg thought gearing up for camping was a big hassle.", "album_id": "578280", "photo_flickr_id": "25378249", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "44933", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] thought gearing up for camping was a big hassle .", "storylet_id": "224665"}], [{"original_text": "And, then there was all the walking.", "album_id": "578280", "photo_flickr_id": "25378394", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "44933", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and , then there was all the walking .", "storylet_id": "224666"}], [{"original_text": "The packs were heavy, the trail was long.", "album_id": "578280", "photo_flickr_id": "25378423", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "44933", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the packs were heavy , the trail was long .", "storylet_id": "224667"}], [{"original_text": "But, when he made it to the campsite, he enjoyed seeing his friends.", "album_id": "578280", "photo_flickr_id": "25378510", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "44933", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but , when he made it to the campsite , he enjoyed seeing his friends .", "storylet_id": "224668"}], [{"original_text": "And, sitting around the campfire.", "album_id": "578280", "photo_flickr_id": "25378569", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "44933", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and , sitting around the campfire .", "storylet_id": "224669"}], [{"original_text": "My friends and I take an annual hiking trip, we're packed up and ready.", "album_id": "578280", "photo_flickr_id": "25378249", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44934", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i take an annual hiking trip , we 're packed up and ready .", "storylet_id": "224670"}], [{"original_text": "We decided to race to the campground, so we split up into teams.", "album_id": "578280", "photo_flickr_id": "25378394", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44934", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decided to race to the campground , so we split up into teams .", "storylet_id": "224671"}], [{"original_text": "We are in third place, but it makes hiking to the campground very fun.", "album_id": "578280", "photo_flickr_id": "25378423", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44934", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are in third place , but it makes hiking to the campground very fun .", "storylet_id": "224672"}], [{"original_text": "We all arrived at the campsite eventually, and were very hungry from the race.", "album_id": "578280", "photo_flickr_id": "25378510", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44934", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all arrived at the campsite eventually , and were very hungry from the race .", "storylet_id": "224673"}], [{"original_text": "Night fell and everyone went to sleep besides Tom, He always stays up to drink by himself.", "album_id": "578280", "photo_flickr_id": "25378569", "setting": "last-3-pick-old-and-tell", "worker_id": "6PPNOO08DQ3AXR4", "story_id": "44934", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "night fell and everyone went to sleep besides [male] , he always stays up to drink by himself .", "storylet_id": "224674"}], [{"original_text": "Someone is coming to visit for the holidays!", "album_id": "60991", "photo_flickr_id": "2418168", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "44935", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "someone is coming to visit for the holidays !", "storylet_id": "224675"}], [{"original_text": "Let us go out and eat.", "album_id": "60991", "photo_flickr_id": "2418499", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "44935", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "let us go out and eat .", "storylet_id": "224676"}], [{"original_text": "It was more expensive than eating at home, but delicious.", "album_id": "60991", "photo_flickr_id": "2418695", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "44935", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was more expensive than eating at home , but delicious .", "storylet_id": "224677"}], [{"original_text": "Then, let's go home and relax with alcohol.", "album_id": "60991", "photo_flickr_id": "2424311", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "44935", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , let 's go home and relax with alcohol .", "storylet_id": "224678"}], [{"original_text": "We can relax with your cat.", "album_id": "60991", "photo_flickr_id": "2424314", "setting": "first-2-pick-and-tell", "worker_id": "NINBPXD44BJCPN1", "story_id": "44935", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we can relax with your cat .", "storylet_id": "224679"}], [{"original_text": "Time to catch a friend to meet Cindy for dinner.", "album_id": "60991", "photo_flickr_id": "2418168", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44936", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "time to catch a friend to meet [female] for dinner .", "storylet_id": "224680"}], [{"original_text": "Lunch was great and the server definitely deserved a great tip.", "album_id": "60991", "photo_flickr_id": "2418695", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44936", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lunch was great and the server definitely deserved a great tip .", "storylet_id": "224681"}], [{"original_text": "It's about time to head but first:", "album_id": "60991", "photo_flickr_id": "2418499", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44936", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's about time to head but first :", "storylet_id": "224682"}], [{"original_text": "Time for a selfie!", "album_id": "60991", "photo_flickr_id": "2419030", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44936", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "time for a selfie !", "storylet_id": "224683"}], [{"original_text": "Once I step outside, I'm met by a beautiful scene!", "album_id": "60991", "photo_flickr_id": "2424313", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44936", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once i step outside , i 'm met by a beautiful scene !", "storylet_id": "224684"}], [{"original_text": "After we got off the train it was already dark.", "album_id": "60991", "photo_flickr_id": "2418168", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44937", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after we got off the train it was already dark .", "storylet_id": "224685"}], [{"original_text": "We stopped in to a restaurant for something to eat because we were starving.", "album_id": "60991", "photo_flickr_id": "2418499", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44937", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped in to a restaurant for something to eat because we were starving .", "storylet_id": "224686"}], [{"original_text": "We made sure to tip generously.", "album_id": "60991", "photo_flickr_id": "2418695", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44937", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we made sure to tip generously .", "storylet_id": "224687"}], [{"original_text": "Afterward we went to the bar to have a few drinks.", "album_id": "60991", "photo_flickr_id": "2424311", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44937", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we went to the bar to have a few drinks .", "storylet_id": "224688"}], [{"original_text": "When we finished we went to the hotel to check in.", "album_id": "60991", "photo_flickr_id": "2424314", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44937", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we finished we went to the hotel to check in .", "storylet_id": "224689"}], [{"original_text": "My sisters and I are traveling home by train in time for Christmas ", "album_id": "60991", "photo_flickr_id": "2418168", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44938", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my sisters and i are traveling home by train in time for christmas", "storylet_id": "224690"}], [{"original_text": "We stop by a local eatery before heading back on the tracks. ", "album_id": "60991", "photo_flickr_id": "2418499", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44938", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stop by a local eatery before heading back on the tracks .", "storylet_id": "224691"}], [{"original_text": "My sister left an awfully generous tip for the holiday server.", "album_id": "60991", "photo_flickr_id": "2418695", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44938", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my sister left an awfully generous tip for the holiday server .", "storylet_id": "224692"}], [{"original_text": "On our way home we grabbed some craft beers. ", "album_id": "60991", "photo_flickr_id": "2424311", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44938", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on our way home we grabbed some craft beers .", "storylet_id": "224693"}], [{"original_text": "We were happy to see the decorations and our family kitty again. ", "album_id": "60991", "photo_flickr_id": "2424314", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "44938", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were happy to see the decorations and our family kitty again .", "storylet_id": "224694"}], [{"original_text": "On the train, headed to dinner.", "album_id": "60991", "photo_flickr_id": "2418168", "setting": "last-3-pick-old-and-tell", "worker_id": "OJNV0YGR1DQD8UA", "story_id": "44939", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on the train , headed to dinner .", "storylet_id": "224695"}], [{"original_text": "She had a hard time deciding on what to eat.", "album_id": "60991", "photo_flickr_id": "2418499", "setting": "last-3-pick-old-and-tell", "worker_id": "OJNV0YGR1DQD8UA", "story_id": "44939", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had a hard time deciding on what to eat .", "storylet_id": "224696"}], [{"original_text": "Leaving a tip for the excellent entree", "album_id": "60991", "photo_flickr_id": "2418695", "setting": "last-3-pick-old-and-tell", "worker_id": "OJNV0YGR1DQD8UA", "story_id": "44939", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "leaving a tip for the excellent entree", "storylet_id": "224697"}], [{"original_text": "A little wine before we head out!", "album_id": "60991", "photo_flickr_id": "2424311", "setting": "last-3-pick-old-and-tell", "worker_id": "OJNV0YGR1DQD8UA", "story_id": "44939", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a little wine before we head out !", "storylet_id": "224698"}], [{"original_text": "We were surprised to see a cat walking out of the restaurant! ", "album_id": "60991", "photo_flickr_id": "2424314", "setting": "last-3-pick-old-and-tell", "worker_id": "OJNV0YGR1DQD8UA", "story_id": "44939", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were surprised to see a cat walking out of the restaurant !", "storylet_id": "224699"}], [{"original_text": "Sometimes I just wanna chill outside and enjoy nature...", "album_id": "629135", "photo_flickr_id": "27685329", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44940", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sometimes i just wan na chill outside and enjoy nature ...", "storylet_id": "224700"}], [{"original_text": "Until my dorky dog shows up!", "album_id": "629135", "photo_flickr_id": "27684098", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44940", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "until my dorky dog shows up !", "storylet_id": "224701"}], [{"original_text": "Awww, can't help but love this guy!", "album_id": "629135", "photo_flickr_id": "27685852", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44940", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "awww , ca n't help but love this guy !", "storylet_id": "224702"}], [{"original_text": "So we go on a walk to the waterfall!", "album_id": "629135", "photo_flickr_id": "27684531", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44940", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so we go on a walk to the waterfall !", "storylet_id": "224703"}], [{"original_text": "After swimming in the river, it's time for a nice campfire!", "album_id": "629135", "photo_flickr_id": "27684532", "setting": "first-2-pick-and-tell", "worker_id": "KRSECPWUHJUJZ1W", "story_id": "44940", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after swimming in the river , it 's time for a nice campfire !", "storylet_id": "224704"}], [{"original_text": "Relaxing and listening to the sound of the birth, i love this feeling", "album_id": "629135", "photo_flickr_id": "27685329", "setting": "first-2-pick-and-tell", "worker_id": "3JDWK1C8JVSTTER", "story_id": "44941", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "relaxing and listening to the sound of the birth , i love this feeling", "storylet_id": "224705"}], [{"original_text": "Preparing food for the birthday party, it looks delicious cant wait to eat", "album_id": "629135", "photo_flickr_id": "27684529", "setting": "first-2-pick-and-tell", "worker_id": "3JDWK1C8JVSTTER", "story_id": "44941", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "preparing food for the birthday party , it looks delicious cant wait to eat", "storylet_id": "224706"}], [{"original_text": "Pretty eyes of my dog, looks scary but a good dog", "album_id": "629135", "photo_flickr_id": "27684098", "setting": "first-2-pick-and-tell", "worker_id": "3JDWK1C8JVSTTER", "story_id": "44941", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "pretty eyes of my dog , looks scary but a good dog", "storylet_id": "224707"}], [{"original_text": "Salad for dinner waiting for the rest of the guest to come before we eat", "album_id": "629135", "photo_flickr_id": "27685328", "setting": "first-2-pick-and-tell", "worker_id": "3JDWK1C8JVSTTER", "story_id": "44941", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "salad for dinner waiting for the rest of the guest to come before we eat", "storylet_id": "224708"}], [{"original_text": "Water falls calming I cant wait to swim and relax", "album_id": "629135", "photo_flickr_id": "27684531", "setting": "first-2-pick-and-tell", "worker_id": "3JDWK1C8JVSTTER", "story_id": "44941", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "water falls calming i cant wait to swim and relax", "storylet_id": "224709"}], [{"original_text": "The man relaxes sitting with his feet up on the deck railing.", "album_id": "629135", "photo_flickr_id": "27685329", "setting": "last-3-pick-old-and-tell", "worker_id": "KUIYN3V2ORI5A2L", "story_id": "44942", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man relaxes sitting with his feet up on the deck railing .", "storylet_id": "224710"}], [{"original_text": "Woman talk while fixing the food to be taken outside.", "album_id": "629135", "photo_flickr_id": "27684529", "setting": "last-3-pick-old-and-tell", "worker_id": "KUIYN3V2ORI5A2L", "story_id": "44942", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "woman talk while fixing the food to be taken outside .", "storylet_id": "224711"}], [{"original_text": "The dog smells the food and waits for some to be thrown to him.", "album_id": "629135", "photo_flickr_id": "27684098", "setting": "last-3-pick-old-and-tell", "worker_id": "KUIYN3V2ORI5A2L", "story_id": "44942", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dog smells the food and waits for some to be thrown to him .", "storylet_id": "224712"}], [{"original_text": "The couples sit and talk by the fireplace after the great meal.", "album_id": "629135", "photo_flickr_id": "27685328", "setting": "last-3-pick-old-and-tell", "worker_id": "KUIYN3V2ORI5A2L", "story_id": "44942", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the couples sit and talk by the fireplace after the great meal .", "storylet_id": "224713"}], [{"original_text": "Finally the couple makes its way to the scenic waterfall, which ushers in the end of the day.", "album_id": "629135", "photo_flickr_id": "27684531", "setting": "last-3-pick-old-and-tell", "worker_id": "KUIYN3V2ORI5A2L", "story_id": "44942", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the couple makes its way to the scenic waterfall , which ushers in the end of the day .", "storylet_id": "224714"}], [{"original_text": "When I finished my work I went home and decided to relax.", "album_id": "629135", "photo_flickr_id": "27685329", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44943", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i finished my work i went home and decided to relax .", "storylet_id": "224715"}], [{"original_text": "My dog was very happy to see me.", "album_id": "629135", "photo_flickr_id": "27684098", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44943", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my dog was very happy to see me .", "storylet_id": "224716"}], [{"original_text": "I was also really happy to see him.", "album_id": "629135", "photo_flickr_id": "27685852", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44943", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i was also really happy to see him .", "storylet_id": "224717"}], [{"original_text": "I spent a few minutes hiking to the nearby waterfall.", "album_id": "629135", "photo_flickr_id": "27684531", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44943", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i spent a few minutes hiking to the nearby waterfall .", "storylet_id": "224718"}], [{"original_text": "At night I went inside and started up the fireplace.", "album_id": "629135", "photo_flickr_id": "27684532", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44943", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at night i went inside and started up the fireplace .", "storylet_id": "224719"}], [{"original_text": "When Dane was staying at the cabin, all he wanted to do was relax.", "album_id": "629135", "photo_flickr_id": "27685329", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "44944", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when [male] was staying at the cabin , all he wanted to do was relax .", "storylet_id": "224720"}], [{"original_text": "But, Kobi, his dog, had other ideas.", "album_id": "629135", "photo_flickr_id": "27684098", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "44944", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but , kobi , his dog , had other ideas .", "storylet_id": "224721"}], [{"original_text": "After some schmoozing, Kobi was able to talk Dane into taking him for a hike.", "album_id": "629135", "photo_flickr_id": "27685852", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "44944", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after some schmoozing , kobi was able to talk [male] into taking him for a hike .", "storylet_id": "224722"}], [{"original_text": "Kobi and Dane saw a beautiful waterfall.", "album_id": "629135", "photo_flickr_id": "27684531", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "44944", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "kobi and [male] saw a beautiful waterfall .", "storylet_id": "224723"}], [{"original_text": "Then, they came home and snuggled up by the fireplace and took a nap.", "album_id": "629135", "photo_flickr_id": "27684532", "setting": "last-3-pick-old-and-tell", "worker_id": "WPGLSYEW7UYQR5L", "story_id": "44944", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then , they came home and snuggled up by the fireplace and took a nap .", "storylet_id": "224724"}], [{"original_text": "Taking pictures of John when he least expected.", "album_id": "962616", "photo_flickr_id": "43477325", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "44945", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "taking pictures of [male] when he least expected .", "storylet_id": "224725"}], [{"original_text": "Andrew looking mad.", "album_id": "962616", "photo_flickr_id": "43477456", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "44945", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] looking mad .", "storylet_id": "224726"}], [{"original_text": "John's brother is hard at work.", "album_id": "962616", "photo_flickr_id": "43477556", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "44945", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] 's brother is hard at work .", "storylet_id": "224727"}], [{"original_text": "Emily pretty as always.", "album_id": "962616", "photo_flickr_id": "43478096", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "44945", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] pretty as always .", "storylet_id": "224728"}], [{"original_text": "Emily and her boyfriend.", "album_id": "962616", "photo_flickr_id": "43478785", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "44945", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] and her boyfriend .", "storylet_id": "224729"}], [{"original_text": "Joe walked over to June's place to visit.", "album_id": "962616", "photo_flickr_id": "43478661", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44946", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] walked over to [female] 's place to visit .", "storylet_id": "224730"}], [{"original_text": "They sat around for awhile before deciding to go take some pictures outside.", "album_id": "962616", "photo_flickr_id": "43478785", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44946", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they sat around for awhile before deciding to go take some pictures outside .", "storylet_id": "224731"}], [{"original_text": "Joe took one picture and June reminded him to put the polarizing lens on the camera.", "album_id": "962616", "photo_flickr_id": "43477763", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44946", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] took one picture and [female] reminded him to put the polarizing lens on the camera .", "storylet_id": "224732"}], [{"original_text": "Joe took his first picture and forgot to put the filter on.", "album_id": "962616", "photo_flickr_id": "43478096", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44946", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] took his first picture and forgot to put the filter on .", "storylet_id": "224733"}], [{"original_text": "The next picture he took with the filter turned out much better.", "album_id": "962616", "photo_flickr_id": "43478013", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44946", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the next picture he took with the filter turned out much better .", "storylet_id": "224734"}], [{"original_text": "The girl and her boyfriend took a trip to the park, where he was rather nervous about getting his picture taken.", "album_id": "962616", "photo_flickr_id": "43478661", "setting": "last-3-pick-old-and-tell", "worker_id": "E5P1I2UTWN9Y7AE", "story_id": "44947", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girl and her boyfriend took a trip to the park , where he was rather nervous about getting his picture taken .", "storylet_id": "224735"}], [{"original_text": "She seems happy to sit on the couch with him.", "album_id": "962616", "photo_flickr_id": "43478785", "setting": "last-3-pick-old-and-tell", "worker_id": "E5P1I2UTWN9Y7AE", "story_id": "44947", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she seems happy to sit on the couch with him .", "storylet_id": "224736"}], [{"original_text": "When the sun goes down it is time to get silly.", "album_id": "962616", "photo_flickr_id": "43477763", "setting": "last-3-pick-old-and-tell", "worker_id": "E5P1I2UTWN9Y7AE", "story_id": "44947", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when the sun goes down it is time to get silly .", "storylet_id": "224737"}], [{"original_text": "The early spring day made for some great photography.", "album_id": "962616", "photo_flickr_id": "43478096", "setting": "last-3-pick-old-and-tell", "worker_id": "E5P1I2UTWN9Y7AE", "story_id": "44947", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the early spring day made for some great photography .", "storylet_id": "224738"}], [{"original_text": "She enjoyed standing amongst the trees.", "album_id": "962616", "photo_flickr_id": "43478013", "setting": "last-3-pick-old-and-tell", "worker_id": "E5P1I2UTWN9Y7AE", "story_id": "44947", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she enjoyed standing amongst the trees .", "storylet_id": "224739"}], [{"original_text": "This is the office we work in.", "album_id": "962616", "photo_flickr_id": "43477325", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44948", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the office we work in .", "storylet_id": "224740"}], [{"original_text": "Our co-worker seemed pleasant to take time out of his schedule to talk with us.", "album_id": "962616", "photo_flickr_id": "43477456", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44948", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our co-worker seemed pleasant to take time out of his schedule to talk with us .", "storylet_id": "224741"}], [{"original_text": "Here, he is very focused on finishing his work.", "album_id": "962616", "photo_flickr_id": "43477556", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44948", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here , he is very focused on finishing his work .", "storylet_id": "224742"}], [{"original_text": "After work, we decided to go outside.", "album_id": "962616", "photo_flickr_id": "43478096", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44948", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after work , we decided to go outside .", "storylet_id": "224743"}], [{"original_text": "Lastly, we went home to relax after a hard days of work.", "album_id": "962616", "photo_flickr_id": "43478785", "setting": "last-3-pick-old-and-tell", "worker_id": "52AOW3ME2VASO12", "story_id": "44948", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly , we went home to relax after a hard days of work .", "storylet_id": "224744"}], [{"original_text": "He spent a great deal of time online.", "album_id": "962616", "photo_flickr_id": "43477325", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44949", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he spent a great deal of time online .", "storylet_id": "224745"}], [{"original_text": "He had met a girl on Facebook .", "album_id": "962616", "photo_flickr_id": "43477456", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44949", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he had met a girl on organization .", "storylet_id": "224746"}], [{"original_text": "At least he thought it was a girl. ", "album_id": "962616", "photo_flickr_id": "43477556", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44949", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at least he thought it was a girl .", "storylet_id": "224747"}], [{"original_text": "She had a lovely picture on her profile. ", "album_id": "962616", "photo_flickr_id": "43478096", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44949", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she had a lovely picture on her profile .", "storylet_id": "224748"}], [{"original_text": "Finally he got up the nerve to ask her out and it was a great success. ", "album_id": "962616", "photo_flickr_id": "43478785", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44949", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally he got up the nerve to ask her out and it was a great success .", "storylet_id": "224749"}], [{"original_text": "This is me and Krissy on our first spring break!", "album_id": "973208", "photo_flickr_id": "44502428", "setting": "first-2-pick-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "44950", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is me and krissy on our first spring break !", "storylet_id": "224750"}], [{"original_text": "We did superhero poses in front of the sunrise to be extra dramatic.", "album_id": "973208", "photo_flickr_id": "44502155", "setting": "first-2-pick-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "44950", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we did superhero poses in front of the sunrise to be extra dramatic .", "storylet_id": "224751"}], [{"original_text": "Krissy's new boyfriend went to dinner with us.", "album_id": "973208", "photo_flickr_id": "44502359", "setting": "first-2-pick-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "44950", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "krissy 's new boyfriend went to dinner with us .", "storylet_id": "224752"}], [{"original_text": "The next day, we went to the beach. The water was pretty cold!", "album_id": "973208", "photo_flickr_id": "44502384", "setting": "first-2-pick-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "44950", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next day , we went to the beach . the water was pretty cold !", "storylet_id": "224753"}], [{"original_text": "Our apartment had a tiny kitchen. This vacation was super fun!", "album_id": "973208", "photo_flickr_id": "44502027", "setting": "first-2-pick-and-tell", "worker_id": "IVVE2FTLVCTA5IF", "story_id": "44950", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our apartment had a tiny kitchen . this vacation was super fun !", "storylet_id": "224754"}], [{"original_text": "What a beautiful sunset she thought to herself. ", "album_id": "973208", "photo_flickr_id": "44502171", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44951", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what a beautiful sunset she thought to herself .", "storylet_id": "224755"}], [{"original_text": "The sky was brilliant. ", "album_id": "973208", "photo_flickr_id": "44502242", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44951", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sky was brilliant .", "storylet_id": "224756"}], [{"original_text": "She started to dance. ", "album_id": "973208", "photo_flickr_id": "44502047", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44951", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she started to dance .", "storylet_id": "224757"}], [{"original_text": "Twirling around in the sand to the music in her mind. ", "album_id": "973208", "photo_flickr_id": "44502472", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44951", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "twirling around in the sand to the music in her mind .", "storylet_id": "224758"}], [{"original_text": "She was easily amused and enjoyed her own company. ", "album_id": "973208", "photo_flickr_id": "44502155", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "44951", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she was easily amused and enjoyed her own company .", "storylet_id": "224759"}], [{"original_text": "The sisters had a wonderful time on their vacation at the lake.", "album_id": "973208", "photo_flickr_id": "44502428", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "44952", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sisters had a wonderful time on their vacation at the lake .", "storylet_id": "224760"}], [{"original_text": "They were acting silly, posing in front of the gorgeous sunset. ", "album_id": "973208", "photo_flickr_id": "44502155", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "44952", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were acting silly , posing in front of the gorgeous sunset .", "storylet_id": "224761"}], [{"original_text": "At night, it was time to meet friends at a local restaurant.", "album_id": "973208", "photo_flickr_id": "44502359", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "44952", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at night , it was time to meet friends at a local restaurant .", "storylet_id": "224762"}], [{"original_text": "Every day, they swam in the lake.", "album_id": "973208", "photo_flickr_id": "44502384", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "44952", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "every day , they swam in the lake .", "storylet_id": "224763"}], [{"original_text": "But they still had time to cook together in their vacation home.", "album_id": "973208", "photo_flickr_id": "44502027", "setting": "last-3-pick-old-and-tell", "worker_id": "MLWC380IBTQIR4H", "story_id": "44952", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but they still had time to cook together in their vacation home .", "storylet_id": "224764"}], [{"original_text": "The two girls met on the beach for some fun activites", "album_id": "973208", "photo_flickr_id": "44502428", "setting": "last-3-pick-old-and-tell", "worker_id": "LKA3MHLOY07JNRK", "story_id": "44953", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the two girls met on the beach for some fun activites", "storylet_id": "224765"}], [{"original_text": "the evening started with a sunset photo shoot", "album_id": "973208", "photo_flickr_id": "44502155", "setting": "last-3-pick-old-and-tell", "worker_id": "LKA3MHLOY07JNRK", "story_id": "44953", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the evening started with a sunset photo shoot", "storylet_id": "224766"}], [{"original_text": "afterwards they headed to the pub for a drink", "album_id": "973208", "photo_flickr_id": "44502359", "setting": "last-3-pick-old-and-tell", "worker_id": "LKA3MHLOY07JNRK", "story_id": "44953", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards they headed to the pub for a drink", "storylet_id": "224767"}], [{"original_text": "the next day they both went swimming ", "album_id": "973208", "photo_flickr_id": "44502384", "setting": "last-3-pick-old-and-tell", "worker_id": "LKA3MHLOY07JNRK", "story_id": "44953", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next day they both went swimming", "storylet_id": "224768"}], [{"original_text": "they even did some cooking for dinner.", "album_id": "973208", "photo_flickr_id": "44502027", "setting": "last-3-pick-old-and-tell", "worker_id": "LKA3MHLOY07JNRK", "story_id": "44953", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even did some cooking for dinner .", "storylet_id": "224769"}], [{"original_text": "The girls were best friends. ", "album_id": "973208", "photo_flickr_id": "44502428", "setting": "last-3-pick-old-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "44954", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girls were best friends .", "storylet_id": "224770"}], [{"original_text": "The young women posed in the light of the sunset.", "album_id": "973208", "photo_flickr_id": "44502155", "setting": "last-3-pick-old-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "44954", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the young women posed in the light of the sunset .", "storylet_id": "224771"}], [{"original_text": "The young couple took a picture while enjoying their night out.", "album_id": "973208", "photo_flickr_id": "44502359", "setting": "last-3-pick-old-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "44954", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the young couple took a picture while enjoying their night out .", "storylet_id": "224772"}], [{"original_text": "The girls had a nice day out at the beach. ", "album_id": "973208", "photo_flickr_id": "44502384", "setting": "last-3-pick-old-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "44954", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the girls had a nice day out at the beach .", "storylet_id": "224773"}], [{"original_text": "The roommates decided to prepare a meal together. ", "album_id": "973208", "photo_flickr_id": "44502027", "setting": "last-3-pick-old-and-tell", "worker_id": "MIAIB441CCIYKYI", "story_id": "44954", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the roommates decided to prepare a meal together .", "storylet_id": "224774"}], [{"original_text": "Sue was washing the pots and pans when she realized the water was cold.", "album_id": "72057594053004564", "photo_flickr_id": "90404935", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44955", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] was washing the pots and pans when she realized the water was cold .", "storylet_id": "224775"}], [{"original_text": "She turn on the hot water and the water got warmer.", "album_id": "72057594053004564", "photo_flickr_id": "90405068", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44955", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she turn on the hot water and the water got warmer .", "storylet_id": "224776"}], [{"original_text": "Soon the water was hot so she continued what she was doing.", "album_id": "72057594053004564", "photo_flickr_id": "90405273", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44955", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "soon the water was hot so she continued what she was doing .", "storylet_id": "224777"}], [{"original_text": "Top part is clean, now for the bottom.", "album_id": "72057594053004564", "photo_flickr_id": "90405515", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44955", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "top part is clean , now for the bottom .", "storylet_id": "224778"}], [{"original_text": "All done except to turn the water off and dry the pan.", "album_id": "72057594053004564", "photo_flickr_id": "90406754", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "44955", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all done except to turn the water off and dry the pan .", "storylet_id": "224779"}], [{"original_text": "Steps to cleaning a pan.", "album_id": "72057594053004564", "photo_flickr_id": "90403808", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "44956", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "steps to cleaning a pan .", "storylet_id": "224780"}], [{"original_text": "Fill the pan with soap and hot water.", "album_id": "72057594053004564", "photo_flickr_id": "90404935", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "44956", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fill the pan with soap and hot water .", "storylet_id": "224781"}], [{"original_text": "Scrub and rinse the pan, front and back.", "album_id": "72057594053004564", "photo_flickr_id": "90405515", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "44956", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "scrub and rinse the pan , front and back .", "storylet_id": "224782"}], [{"original_text": "Use a screw driver or other utensil to scrape anything off the bottom.", "album_id": "72057594053004564", "photo_flickr_id": "90406632", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "44956", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "use a screw driver or other utensil to scrape anything off the bottom .", "storylet_id": "224783"}], [{"original_text": "Give it a good rinse with warm water, and you are done.", "album_id": "72057594053004564", "photo_flickr_id": "90406754", "setting": "first-2-pick-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "44956", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "give it a good rinse with warm water , and you are done .", "storylet_id": "224784"}], [{"original_text": "I had to wash the pan today.", "album_id": "72057594053004564", "photo_flickr_id": "90404935", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44957", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had to wash the pan today .", "storylet_id": "224785"}], [{"original_text": "I really didn't want to but I had put it off forever.", "album_id": "72057594053004564", "photo_flickr_id": "90405068", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44957", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i really did n't want to but i had put it off forever .", "storylet_id": "224786"}], [{"original_text": "I took the pan and placed it in the sink and ran some water over it.", "album_id": "72057594053004564", "photo_flickr_id": "90405273", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44957", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took the pan and placed it in the sink and ran some water over it .", "storylet_id": "224787"}], [{"original_text": "I turned it over so the bottom could get wet too.", "album_id": "72057594053004564", "photo_flickr_id": "90405515", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44957", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i turned it over so the bottom could get wet too .", "storylet_id": "224788"}], [{"original_text": "Then I placed it into the sink and left the water running over it.", "album_id": "72057594053004564", "photo_flickr_id": "90406754", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44957", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then i placed it into the sink and left the water running over it .", "storylet_id": "224789"}], [{"original_text": "Dishes isn't always a fun process,", "album_id": "72057594053004564", "photo_flickr_id": "90404935", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44958", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dishes is n't always a fun process ,", "storylet_id": "224790"}], [{"original_text": "but it has to be done. ", "album_id": "72057594053004564", "photo_flickr_id": "90405068", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44958", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but it has to be done .", "storylet_id": "224791"}], [{"original_text": "You have to wash the inside of the pan,", "album_id": "72057594053004564", "photo_flickr_id": "90405273", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44958", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you have to wash the inside of the pan ,", "storylet_id": "224792"}], [{"original_text": "and don't forget to wash the outside.", "album_id": "72057594053004564", "photo_flickr_id": "90405515", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44958", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and do n't forget to wash the outside .", "storylet_id": "224793"}], [{"original_text": "Then of course, make sure to wash the lid, so that the pan and the lid can be safely used next time you are cooking. ", "album_id": "72057594053004564", "photo_flickr_id": "90406754", "setting": "last-3-pick-old-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "44958", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then of course , make sure to wash the lid , so that the pan and the lid can be safely used next time you are cooking .", "storylet_id": "224794"}], [{"original_text": "It can be tricky to get a pot truly clean once food is stuck to it.", "album_id": "72057594053004564", "photo_flickr_id": "90403808", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "44959", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it can be tricky to get a pot truly clean once food is stuck to it .", "storylet_id": "224795"}], [{"original_text": "Start with really hot water and soap.", "album_id": "72057594053004564", "photo_flickr_id": "90404935", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "44959", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "start with really hot water and soap .", "storylet_id": "224796"}], [{"original_text": "Make sure that the post is wet on both sides.", "album_id": "72057594053004564", "photo_flickr_id": "90405515", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "44959", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "make sure that the post is wet on both sides .", "storylet_id": "224797"}], [{"original_text": "Once wet and soaped, use a tool to scrub off the burned material.", "album_id": "72057594053004564", "photo_flickr_id": "90406632", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "44959", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once wet and soaped , use a tool to scrub off the burned material .", "storylet_id": "224798"}], [{"original_text": "Once done, let the pan continue to rinse to loosen any additional attached food.", "album_id": "72057594053004564", "photo_flickr_id": "90406754", "setting": "last-3-pick-old-and-tell", "worker_id": "RDOWYS1OQIX8OV9", "story_id": "44959", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "once done , let the pan continue to rinse to loosen any additional attached food .", "storylet_id": "224799"}], [{"original_text": "The chicken was served on the greens.", "album_id": "72157594330358115", "photo_flickr_id": "270937725", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "44960", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the chicken was served on the greens .", "storylet_id": "224800"}], [{"original_text": "The pasta was seasoned well, but not too much.", "album_id": "72157594330358115", "photo_flickr_id": "270937760", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "44960", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pasta was seasoned well , but not too much .", "storylet_id": "224801"}], [{"original_text": "The noodles were very colorful and piled high.", "album_id": "72157594330358115", "photo_flickr_id": "270938147", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "44960", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the noodles were very colorful and piled high .", "storylet_id": "224802"}], [{"original_text": "They served wontons with carrots.", "album_id": "72157594330358115", "photo_flickr_id": "270937786", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "44960", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they served wontons with carrots .", "storylet_id": "224803"}], [{"original_text": "They served small appetizers to try.", "album_id": "72157594330358115", "photo_flickr_id": "270937903", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "44960", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they served small appetizers to try .", "storylet_id": "224804"}], [{"original_text": "We went to a fancy Chinese restaurant.", "album_id": "72157594330358115", "photo_flickr_id": "270937725", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "44961", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a fancy chinese restaurant .", "storylet_id": "224805"}], [{"original_text": "Peking duck to start off the course.", "album_id": "72157594330358115", "photo_flickr_id": "270937903", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "44961", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "peking duck to start off the course .", "storylet_id": "224806"}], [{"original_text": "Shrimp in garlic sauce.", "album_id": "72157594330358115", "photo_flickr_id": "270938199", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "44961", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "shrimp in garlic sauce .", "storylet_id": "224807"}], [{"original_text": "Hot and Spicy beef.", "album_id": "72157594330358115", "photo_flickr_id": "270937990", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "44961", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "hot and spicy beef .", "storylet_id": "224808"}], [{"original_text": "Soup with mushed beans.", "album_id": "72157594330358115", "photo_flickr_id": "270937670", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "44961", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "soup with mushed beans .", "storylet_id": "224809"}], [{"original_text": "Eating at Yen Ching's is always a feast for the eyes, as well as the stomach.", "album_id": "72157594330358115", "photo_flickr_id": "270937725", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "44962", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "eating at yen ching 's is always a feast for the eyes , as well as the stomach .", "storylet_id": "224810"}], [{"original_text": "Kimchi, which is pickled cabbage, has become one of my favorites. ", "album_id": "72157594330358115", "photo_flickr_id": "270937760", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "44962", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "kimchi , which is pickled cabbage , has become one of my favorites .", "storylet_id": "224811"}], [{"original_text": "I am always amazed how they get this Napa cabbage salad to stand up like this.", "album_id": "72157594330358115", "photo_flickr_id": "270938147", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "44962", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i am always amazed how they get this napa cabbage salad to stand up like this .", "storylet_id": "224812"}], [{"original_text": "They make a dish with sautee'd Ramen noodles that is delicious!", "album_id": "72157594330358115", "photo_flickr_id": "270937786", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "44962", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they make a dish with sautee 'd ramen noodles that is delicious !", "storylet_id": "224813"}], [{"original_text": "I never would have though of having tiny spears of cucumber before dessert, but it really cleanses your palate!", "album_id": "72157594330358115", "photo_flickr_id": "270937903", "setting": "last-3-pick-old-and-tell", "worker_id": "605DCRM7F3M03RA", "story_id": "44962", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i never would have though of having tiny spears of cucumber before dessert , but it really cleanses your palate !", "storylet_id": "224814"}], [{"original_text": "Tonight we went to a fancy Asian restaurant. The first dish was fried crab.", "album_id": "72157594330358115", "photo_flickr_id": "270937725", "setting": "last-3-pick-old-and-tell", "worker_id": "E5P1I2UTWN9Y7AE", "story_id": "44963", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "tonight we went to a fancy asian restaurant . the first dish was fried crab .", "storylet_id": "224815"}], [{"original_text": "Everything was prepared so perfectly.", "album_id": "72157594330358115", "photo_flickr_id": "270937903", "setting": "last-3-pick-old-and-tell", "worker_id": "E5P1I2UTWN9Y7AE", "story_id": "44963", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything was prepared so perfectly .", "storylet_id": "224816"}], [{"original_text": "The shrimp look absolutely scrumptious.", "album_id": "72157594330358115", "photo_flickr_id": "270938199", "setting": "last-3-pick-old-and-tell", "worker_id": "E5P1I2UTWN9Y7AE", "story_id": "44963", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the shrimp look absolutely scrumptious .", "storylet_id": "224817"}], [{"original_text": "This plate of beef and vegetables is both delicious to taste and lovely to view.", "album_id": "72157594330358115", "photo_flickr_id": "270937990", "setting": "last-3-pick-old-and-tell", "worker_id": "E5P1I2UTWN9Y7AE", "story_id": "44963", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this plate of beef and vegetables is both delicious to taste and lovely to view .", "storylet_id": "224818"}], [{"original_text": "A cup of spicy soup really hit the spot.", "album_id": "72157594330358115", "photo_flickr_id": "270937670", "setting": "last-3-pick-old-and-tell", "worker_id": "E5P1I2UTWN9Y7AE", "story_id": "44963", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a cup of spicy soup really hit the spot .", "storylet_id": "224819"}], [{"original_text": "Delicious Thai dishes started with some crispy chicken", "album_id": "72157594330358115", "photo_flickr_id": "270937725", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44964", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "delicious thai dishes started with some crispy chicken", "storylet_id": "224820"}], [{"original_text": "Pad Thai is always one of my favorites. ", "album_id": "72157594330358115", "photo_flickr_id": "270937760", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44964", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "pad thai is always one of my favorites .", "storylet_id": "224821"}], [{"original_text": "This dish featured sprouts and veggies. ", "album_id": "72157594330358115", "photo_flickr_id": "270938147", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44964", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this dish featured sprouts and veggies .", "storylet_id": "224822"}], [{"original_text": "This one was crispy and very tasty.", "album_id": "72157594330358115", "photo_flickr_id": "270937786", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44964", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one was crispy and very tasty .", "storylet_id": "224823"}], [{"original_text": "This was a simple meat dish with veggies sliced thin. My favorite!", "album_id": "72157594330358115", "photo_flickr_id": "270937903", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "44964", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was a simple meat dish with veggies sliced thin . my favorite !", "storylet_id": "224824"}], [{"original_text": "Christmas is a special time of year.", "album_id": "72157594437338244", "photo_flickr_id": "332616538", "setting": "first-2-pick-and-tell", "worker_id": "1A7XJO03ELCT1JA", "story_id": "44965", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "christmas is a special time of year .", "storylet_id": "224825"}], [{"original_text": "Decorations go up.", "album_id": "72157594437338244", "photo_flickr_id": "332616561", "setting": "first-2-pick-and-tell", "worker_id": "1A7XJO03ELCT1JA", "story_id": "44965", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "decorations go up .", "storylet_id": "224826"}], [{"original_text": "People spread Christmas wishes.", "album_id": "72157594437338244", "photo_flickr_id": "332616635", "setting": "first-2-pick-and-tell", "worker_id": "1A7XJO03ELCT1JA", "story_id": "44965", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people spread christmas wishes .", "storylet_id": "224827"}], [{"original_text": "The angel on the tree watches over the household.", "album_id": "72157594437338244", "photo_flickr_id": "332616713", "setting": "first-2-pick-and-tell", "worker_id": "1A7XJO03ELCT1JA", "story_id": "44965", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the angel on the tree watches over the household .", "storylet_id": "224828"}], [{"original_text": "While the family sleeps on Christmas Eve.", "album_id": "72157594437338244", "photo_flickr_id": "332616745", "setting": "first-2-pick-and-tell", "worker_id": "1A7XJO03ELCT1JA", "story_id": "44965", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "while the family sleeps on christmas eve .", "storylet_id": "224829"}], [{"original_text": "I invited all of my friends to my house yesterday.", "album_id": "72157594437338244", "photo_flickr_id": "332616217", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44966", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i invited all of my friends to my house yesterday .", "storylet_id": "224830"}], [{"original_text": "They were all happy to play with my dog.", "album_id": "72157594437338244", "photo_flickr_id": "332616260", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44966", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were all happy to play with my dog .", "storylet_id": "224831"}], [{"original_text": "They had a great time with her.", "album_id": "72157594437338244", "photo_flickr_id": "332616287", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44966", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a great time with her .", "storylet_id": "224832"}], [{"original_text": "Afterward we were very hungry.", "album_id": "72157594437338244", "photo_flickr_id": "332616330", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44966", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we were very hungry .", "storylet_id": "224833"}], [{"original_text": "We ordered some pizza.", "album_id": "72157594437338244", "photo_flickr_id": "332616561", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44966", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we ordered some pizza .", "storylet_id": "224834"}], [{"original_text": "It was Christmas Eve.", "album_id": "72157594437338244", "photo_flickr_id": "332616538", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44967", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was christmas eve .", "storylet_id": "224835"}], [{"original_text": "There were a lot of fun ornaments on the tree.", "album_id": "72157594437338244", "photo_flickr_id": "332616561", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44967", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of fun ornaments on the tree .", "storylet_id": "224836"}], [{"original_text": "The family enjoyed decorating the tree every year.", "album_id": "72157594437338244", "photo_flickr_id": "332616635", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44967", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family enjoyed decorating the tree every year .", "storylet_id": "224837"}], [{"original_text": "The last ornament went on the top of the tree. ", "album_id": "72157594437338244", "photo_flickr_id": "332616713", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44967", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the last ornament went on the top of the tree .", "storylet_id": "224838"}], [{"original_text": "All the kids went to bed hoping that Santa wouldn't skip their house. ", "album_id": "72157594437338244", "photo_flickr_id": "332616745", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "44967", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the kids went to bed hoping that location would n't skip their house .", "storylet_id": "224839"}], [{"original_text": "We were ready for our gothic Christmas.", "album_id": "72157594437338244", "photo_flickr_id": "332616538", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44968", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were ready for our gothic christmas .", "storylet_id": "224840"}], [{"original_text": "Here's my favorite tree decoration.", "album_id": "72157594437338244", "photo_flickr_id": "332616561", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44968", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's my favorite tree decoration .", "storylet_id": "224841"}], [{"original_text": "This one is Lisa's though.", "album_id": "72157594437338244", "photo_flickr_id": "332616635", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44968", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one is [female] 's though .", "storylet_id": "224842"}], [{"original_text": "And we both agree we love the angel on top.", "album_id": "72157594437338244", "photo_flickr_id": "332616713", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44968", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and we both agree we love the angel on top .", "storylet_id": "224843"}], [{"original_text": "Craig slept in late on Christmas morning.", "album_id": "72157594437338244", "photo_flickr_id": "332616745", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44968", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] slept in late on christmas morning .", "storylet_id": "224844"}], [{"original_text": "He ordered pizza online.", "album_id": "72157594437338244", "photo_flickr_id": "332616217", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44969", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he ordered pizza online .", "storylet_id": "224845"}], [{"original_text": "They waited a while.", "album_id": "72157594437338244", "photo_flickr_id": "332616260", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44969", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they waited a while .", "storylet_id": "224846"}], [{"original_text": "She didn't mind though.", "album_id": "72157594437338244", "photo_flickr_id": "332616287", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44969", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she did n't mind though .", "storylet_id": "224847"}], [{"original_text": "He was getting impatient.", "album_id": "72157594437338244", "photo_flickr_id": "332616330", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44969", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was getting impatient .", "storylet_id": "224848"}], [{"original_text": "We looked at the ornaments on the tree while we waited.", "album_id": "72157594437338244", "photo_flickr_id": "332616561", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44969", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we looked at the ornaments on the tree while we waited .", "storylet_id": "224849"}], [{"original_text": "a tenderloin is butterfly cut", "album_id": "72157600059208575", "photo_flickr_id": "450006972", "setting": "first-2-pick-and-tell", "worker_id": "6KSQ1N9TVA1NY10", "story_id": "44970", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a tenderloin is butterfly cut", "storylet_id": "224850"}], [{"original_text": "stuffed with herbs and cheeses", "album_id": "72157600059208575", "photo_flickr_id": "450022757", "setting": "first-2-pick-and-tell", "worker_id": "6KSQ1N9TVA1NY10", "story_id": "44970", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "stuffed with herbs and cheeses", "storylet_id": "224851"}], [{"original_text": "rolled carefully", "album_id": "72157600059208575", "photo_flickr_id": "450015098", "setting": "first-2-pick-and-tell", "worker_id": "6KSQ1N9TVA1NY10", "story_id": "44970", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "rolled carefully", "storylet_id": "224852"}], [{"original_text": "sliced and fried", "album_id": "72157600059208575", "photo_flickr_id": "450219967", "setting": "first-2-pick-and-tell", "worker_id": "6KSQ1N9TVA1NY10", "story_id": "44970", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sliced and fried", "storylet_id": "224853"}], [{"original_text": "and finally served with a side of risotto", "album_id": "72157600059208575", "photo_flickr_id": "450213594", "setting": "first-2-pick-and-tell", "worker_id": "6KSQ1N9TVA1NY10", "story_id": "44970", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and finally served with a side of risotto", "storylet_id": "224854"}], [{"original_text": "Preparing steak with spinach. ", "album_id": "72157600059208575", "photo_flickr_id": "449987629", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "44971", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "preparing steak with spinach .", "storylet_id": "224855"}], [{"original_text": "The steak and spices.", "album_id": "72157600059208575", "photo_flickr_id": "450006972", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "44971", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the steak and spices .", "storylet_id": "224856"}], [{"original_text": "Ground the steak, add spices.", "album_id": "72157600059208575", "photo_flickr_id": "450184707", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "44971", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "ground the steak , add spices .", "storylet_id": "224857"}], [{"original_text": "Cover the beef in powder.", "album_id": "72157600059208575", "photo_flickr_id": "450188725", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "44971", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "cover the beef in powder .", "storylet_id": "224858"}], [{"original_text": "Fry until ready. Delicious.", "album_id": "72157600059208575", "photo_flickr_id": "450219967", "setting": "first-2-pick-and-tell", "worker_id": "GBM8Y3H2ZU7MWWS", "story_id": "44971", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fry until ready . delicious .", "storylet_id": "224859"}], [{"original_text": "Preparation takes longer than cooking.", "album_id": "72157600059208575", "photo_flickr_id": "450006972", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44972", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "preparation takes longer than cooking .", "storylet_id": "224860"}], [{"original_text": "You have to garnish the entree with good detail.", "album_id": "72157600059208575", "photo_flickr_id": "450022757", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44972", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you have to garnish the entree with good detail .", "storylet_id": "224861"}], [{"original_text": "The special meat must be wrapped up until you are just about to cook it.", "album_id": "72157600059208575", "photo_flickr_id": "450015098", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44972", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the special meat must be wrapped up until you are just about to cook it .", "storylet_id": "224862"}], [{"original_text": "Pan searing the food makes the flavors pop out.", "album_id": "72157600059208575", "photo_flickr_id": "450219967", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44972", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "pan searing the food makes the flavors pop out .", "storylet_id": "224863"}], [{"original_text": "A good sized portion will leave you satisfied. ", "album_id": "72157600059208575", "photo_flickr_id": "450213594", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "44972", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a good sized portion will leave you satisfied .", "storylet_id": "224864"}], [{"original_text": "Sushi is not raw as many people believe.", "album_id": "72157600059208575", "photo_flickr_id": "450006972", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44973", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sushi is not raw as many people believe .", "storylet_id": "224865"}], [{"original_text": "When you first make sushi you stuff it with different things.", "album_id": "72157600059208575", "photo_flickr_id": "450022757", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44973", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when you first make sushi you stuff it with different things .", "storylet_id": "224866"}], [{"original_text": "Then the sushi is wrapped and chilled for several hours.", "album_id": "72157600059208575", "photo_flickr_id": "450015098", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44973", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the sushi is wrapped and chilled for several hours .", "storylet_id": "224867"}], [{"original_text": "Next cut up the sushi and put it in a frying pan.", "album_id": "72157600059208575", "photo_flickr_id": "450219967", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44973", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next cut up the sushi and put it in a frying pan .", "storylet_id": "224868"}], [{"original_text": "What you are left with is a wonderful display of food.", "album_id": "72157600059208575", "photo_flickr_id": "450213594", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44973", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what you are left with is a wonderful display of food .", "storylet_id": "224869"}], [{"original_text": "First, prepare and measure all ingredients.", "album_id": "72157600059208575", "photo_flickr_id": "450006972", "setting": "last-3-pick-old-and-tell", "worker_id": "PIATY5VR0RB7LUI", "story_id": "44974", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "first , prepare and measure all ingredients .", "storylet_id": "224870"}], [{"original_text": "Place seasonings on the meat.", "album_id": "72157600059208575", "photo_flickr_id": "450022757", "setting": "last-3-pick-old-and-tell", "worker_id": "PIATY5VR0RB7LUI", "story_id": "44974", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "place seasonings on the meat .", "storylet_id": "224871"}], [{"original_text": "Roll the meat and wrap tightly in plastic wrap.", "album_id": "72157600059208575", "photo_flickr_id": "450015098", "setting": "last-3-pick-old-and-tell", "worker_id": "PIATY5VR0RB7LUI", "story_id": "44974", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "roll the meat and wrap tightly in plastic wrap .", "storylet_id": "224872"}], [{"original_text": "Place in pan and cook on all sides.", "album_id": "72157600059208575", "photo_flickr_id": "450219967", "setting": "last-3-pick-old-and-tell", "worker_id": "PIATY5VR0RB7LUI", "story_id": "44974", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "place in pan and cook on all sides .", "storylet_id": "224873"}], [{"original_text": "Plate your meat and your sides and then enjoy your delicious meal!", "album_id": "72157600059208575", "photo_flickr_id": "450213594", "setting": "last-3-pick-old-and-tell", "worker_id": "PIATY5VR0RB7LUI", "story_id": "44974", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "plate your meat and your sides and then enjoy your delicious meal !", "storylet_id": "224874"}], [{"original_text": "The main course was made using grandma's recipe for stuffed peppers.", "album_id": "72157600490688511", "photo_flickr_id": "626785564", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44975", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the main course was made using grandma 's recipe for stuffed peppers .", "storylet_id": "224875"}], [{"original_text": "The side salads were extra delicious became of the edible bowl that they were in.", "album_id": "72157600490688511", "photo_flickr_id": "626791514", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44975", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the side salads were extra delicious became of the edible bowl that they were in .", "storylet_id": "224876"}], [{"original_text": "Of course mom's desserts looked great also, we call it restaurant style.", "album_id": "72157600490688511", "photo_flickr_id": "625933807", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44975", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course mom 's desserts looked great also , we call it restaurant style .", "storylet_id": "224877"}], [{"original_text": "In all, the family enjoyed another creative dinner.", "album_id": "72157600490688511", "photo_flickr_id": "626802700", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44975", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in all , the family enjoyed another creative dinner .", "storylet_id": "224878"}], [{"original_text": "And cleaning up was not so bad either, once we all pitched in.", "album_id": "72157600490688511", "photo_flickr_id": "625953713", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "44975", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and cleaning up was not so bad either , once we all pitched in .", "storylet_id": "224879"}], [{"original_text": "Family gatherings for the Nyugen home were always fun and had delicious food. ", "album_id": "72157600490688511", "photo_flickr_id": "626802700", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "44976", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family gatherings for the location home were always fun and had delicious food .", "storylet_id": "224880"}], [{"original_text": "It was a tradition to serve stuffed tomatoes.", "album_id": "72157600490688511", "photo_flickr_id": "626785564", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "44976", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a tradition to serve stuffed tomatoes .", "storylet_id": "224881"}], [{"original_text": "The family then enjoys something a little different. Pasta- american style.", "album_id": "72157600490688511", "photo_flickr_id": "625922123", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "44976", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family then enjoys something a little different . pasta- american style .", "storylet_id": "224882"}], [{"original_text": "They enjoyed dessert of rice pudding topped with berries.", "album_id": "72157600490688511", "photo_flickr_id": "625933807", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "44976", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they enjoyed dessert of rice pudding topped with berries .", "storylet_id": "224883"}], [{"original_text": "After dinner Michael showed the family pictures of his recent vacation. ", "album_id": "72157600490688511", "photo_flickr_id": "626813570", "setting": "first-2-pick-and-tell", "worker_id": "P0KDHA9WFEFCAAC", "story_id": "44976", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after dinner [male] showed the family pictures of his recent vacation .", "storylet_id": "224884"}], [{"original_text": "The salad was prepared and ready to eat.", "album_id": "72157600490688511", "photo_flickr_id": "626785564", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44977", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the salad was prepared and ready to eat .", "storylet_id": "224885"}], [{"original_text": "I also created a healthy dessert.", "album_id": "72157600490688511", "photo_flickr_id": "626791514", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44977", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i also created a healthy dessert .", "storylet_id": "224886"}], [{"original_text": "This is the second dessert I created with grapes and yogurt.", "album_id": "72157600490688511", "photo_flickr_id": "625933807", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44977", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the second dessert i created with grapes and yogurt .", "storylet_id": "224887"}], [{"original_text": "The family really enjoyed their self and it was nothing but smiles.", "album_id": "72157600490688511", "photo_flickr_id": "626802700", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44977", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the family really enjoyed their self and it was nothing but smiles .", "storylet_id": "224888"}], [{"original_text": "The night ended with many dishes but it was well worth it.", "album_id": "72157600490688511", "photo_flickr_id": "625953713", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "44977", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night ended with many dishes but it was well worth it .", "storylet_id": "224889"}], [{"original_text": "Today was the day that I had my family come over and where I used my Mom's recipe for all my dishes. We started off with this one as the main dish.", "album_id": "72157600490688511", "photo_flickr_id": "626785564", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "44978", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was the day that i had my family come over and where i used my mom 's recipe for all my dishes . we started off with this one as the main dish .", "storylet_id": "224890"}], [{"original_text": "This was the salad to the main dish. I was nervous but it really looks nice and I was pleased with the outcome.", "album_id": "72157600490688511", "photo_flickr_id": "626791514", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "44978", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this was the salad to the main dish . i was nervous but it really looks nice and i was pleased with the outcome .", "storylet_id": "224891"}], [{"original_text": "Then lastly, I made the dessert that I knew everyone liked that Mom used to make.", "album_id": "72157600490688511", "photo_flickr_id": "625933807", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "44978", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then lastly , i made the dessert that i knew everyone liked that mom used to make .", "storylet_id": "224892"}], [{"original_text": "Then I had everyone sit at the table to get a picture and to serve them dinner. Everyone loved it!", "album_id": "72157600490688511", "photo_flickr_id": "626802700", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "44978", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then i had everyone sit at the table to get a picture and to serve them dinner . everyone loved it !", "storylet_id": "224893"}], [{"original_text": "Then I went into the kitchen and saw the mess that I forgot was there. It only took 35 minutes to clean up and it was so worth it!", "album_id": "72157600490688511", "photo_flickr_id": "625953713", "setting": "last-3-pick-old-and-tell", "worker_id": "3MXUOV8W7DQMEZ3", "story_id": "44978", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then i went into the kitchen and saw the mess that i forgot was there . it only took 35 minutes to clean up and it was so worth it !", "storylet_id": "224894"}], [{"original_text": "We tried out a new restaurant today.", "album_id": "72157600490688511", "photo_flickr_id": "626785564", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44979", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we tried out a new restaurant today .", "storylet_id": "224895"}], [{"original_text": "They had really bizarre food. But it was pretty tasty", "album_id": "72157600490688511", "photo_flickr_id": "626791514", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44979", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had really bizarre food . but it was pretty tasty", "storylet_id": "224896"}], [{"original_text": "they even had this weird grape cocktail. But it was really good.", "album_id": "72157600490688511", "photo_flickr_id": "625933807", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44979", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even had this weird grape cocktail . but it was really good .", "storylet_id": "224897"}], [{"original_text": "Everyone seemed to have a great time. Except when we realized we all forgot our wallets...", "album_id": "72157600490688511", "photo_flickr_id": "626802700", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44979", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone seemed to have a great time . except when we realized we all forgot our wallets ...", "storylet_id": "224898"}], [{"original_text": "I suppose we need to clean the dishes to pick up the tab now..", "album_id": "72157600490688511", "photo_flickr_id": "625953713", "setting": "last-3-pick-old-and-tell", "worker_id": "4SHOA1C38CMQFPL", "story_id": "44979", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i suppose we need to clean the dishes to pick up the tab now..", "storylet_id": "224899"}], [{"original_text": "All my bags are pack and ready to go for hiking. ", "album_id": "72157600392604254", "photo_flickr_id": "561936992", "setting": "first-2-pick-and-tell", "worker_id": "23QQPY0416CNKC1", "story_id": "44980", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all my bags are pack and ready to go for hiking .", "storylet_id": "224900"}], [{"original_text": "My honey is taking a selfie on our way to the site. Me in the background", "album_id": "72157600392604254", "photo_flickr_id": "562345677", "setting": "first-2-pick-and-tell", "worker_id": "23QQPY0416CNKC1", "story_id": "44980", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my honey is taking a selfie on our way to the site . me in the background", "storylet_id": "224901"}], [{"original_text": "What a nice and beautiful place to go. I want to go swimming.", "album_id": "72157600392604254", "photo_flickr_id": "582145886", "setting": "first-2-pick-and-tell", "worker_id": "23QQPY0416CNKC1", "story_id": "44980", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "what a nice and beautiful place to go . i want to go swimming .", "storylet_id": "224902"}], [{"original_text": "Nice job hon, we have plenty for our dinner. Wait are we saving something for tomorrow, we're here for 3 more days right?", "album_id": "72157600392604254", "photo_flickr_id": "581883471", "setting": "first-2-pick-and-tell", "worker_id": "23QQPY0416CNKC1", "story_id": "44980", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "nice job hon , we have plenty for our dinner . wait are we saving something for tomorrow , we 're here for 3 more days right ?", "storylet_id": "224903"}], [{"original_text": "Oh snap, I am tired. Need to take a nap for a long hike tomorrow.", "album_id": "72157600392604254", "photo_flickr_id": "582134954", "setting": "first-2-pick-and-tell", "worker_id": "23QQPY0416CNKC1", "story_id": "44980", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "oh snap , i am tired . need to take a nap for a long hike tomorrow .", "storylet_id": "224904"}], [{"original_text": "We all went camping last weekend.", "album_id": "72157600392604254", "photo_flickr_id": "561936992", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44981", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all went camping last weekend .", "storylet_id": "224905"}], [{"original_text": "I invited all of my friends.", "album_id": "72157600392604254", "photo_flickr_id": "562345677", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44981", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i invited all of my friends .", "storylet_id": "224906"}], [{"original_text": "We saw a lot of beautiful plants there.", "album_id": "72157600392604254", "photo_flickr_id": "582088430", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44981", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw a lot of beautiful plants there .", "storylet_id": "224907"}], [{"original_text": "We ate some of them.", "album_id": "72157600392604254", "photo_flickr_id": "582108612", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44981", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we ate some of them .", "storylet_id": "224908"}], [{"original_text": "We brought a lot of equipment with us.", "album_id": "72157600392604254", "photo_flickr_id": "581860217", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "44981", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we brought a lot of equipment with us .", "storylet_id": "224909"}], [{"original_text": "Here's my hot boyfriend Brody packing up for our hiking trip.", "album_id": "72157600392604254", "photo_flickr_id": "561936992", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44982", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here 's my hot boyfriend [male] packing up for our hiking trip .", "storylet_id": "224910"}], [{"original_text": "And here's our friend Edie taking a selfie. She went along with us.", "album_id": "72157600392604254", "photo_flickr_id": "562345677", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44982", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and here 's our friend edie taking a selfie . she went along with us .", "storylet_id": "224911"}], [{"original_text": "We hiked up to beautiful Lake Gillymonstairagh.", "album_id": "72157600392604254", "photo_flickr_id": "582145886", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44982", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we hiked up to beautiful location location .", "storylet_id": "224912"}], [{"original_text": "Brody and Edie ate while I took a picture at night.", "album_id": "72157600392604254", "photo_flickr_id": "581883471", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44982", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] and edie ate while i took a picture at night .", "storylet_id": "224913"}], [{"original_text": "In the morning I wasn't ready to get up though!", "album_id": "72157600392604254", "photo_flickr_id": "582134954", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "44982", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the morning i was n't ready to get up though !", "storylet_id": "224914"}], [{"original_text": "We were packed and ready for the family vacation.", "album_id": "72157600392604254", "photo_flickr_id": "561936992", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44983", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were packed and ready for the family vacation .", "storylet_id": "224915"}], [{"original_text": "Everyone was excited about the hike up.", "album_id": "72157600392604254", "photo_flickr_id": "562345677", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44983", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone was excited about the hike up .", "storylet_id": "224916"}], [{"original_text": "We found the most beautiful spot.", "album_id": "72157600392604254", "photo_flickr_id": "582145886", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44983", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we found the most beautiful spot .", "storylet_id": "224917"}], [{"original_text": "The campsite started to take shape once supper was being fixed.", "album_id": "72157600392604254", "photo_flickr_id": "581883471", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44983", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the campsite started to take shape once supper was being fixed .", "storylet_id": "224918"}], [{"original_text": "It was an exhausting but fun day.", "album_id": "72157600392604254", "photo_flickr_id": "582134954", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "44983", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was an exhausting but fun day .", "storylet_id": "224919"}], [{"original_text": "We went camping in the mountains.", "album_id": "72157600392604254", "photo_flickr_id": "561936992", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "44984", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went camping in the mountains .", "storylet_id": "224920"}], [{"original_text": "Everyone had to hike to the campsite.", "album_id": "72157600392604254", "photo_flickr_id": "562345677", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "44984", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone had to hike to the campsite .", "storylet_id": "224921"}], [{"original_text": "We found a spot next to the lake with an awesome view!", "album_id": "72157600392604254", "photo_flickr_id": "582145886", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "44984", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we found a spot next to the lake with an awesome view !", "storylet_id": "224922"}], [{"original_text": "It got pretty cold while my dad and sister prepared supper.", "album_id": "72157600392604254", "photo_flickr_id": "581883471", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "44984", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it got pretty cold while my dad and sister prepared supper .", "storylet_id": "224923"}], [{"original_text": "I, on the other hand, tried to get a nap while we waited.", "album_id": "72157600392604254", "photo_flickr_id": "582134954", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "44984", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i , on the other hand , tried to get a nap while we waited .", "storylet_id": "224924"}], [{"original_text": "The woman got ready for the parade with her costume.", "album_id": "72157594452419233", "photo_flickr_id": "341297718", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "44985", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the woman got ready for the parade with her costume .", "storylet_id": "224925"}], [{"original_text": "She joined her friend in the lineup.", "album_id": "72157594452419233", "photo_flickr_id": "341296454", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "44985", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she joined her friend in the lineup .", "storylet_id": "224926"}], [{"original_text": "Her friend was dressed in green and yellow.", "album_id": "72157594452419233", "photo_flickr_id": "341295566", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "44985", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her friend was dressed in green and yellow .", "storylet_id": "224927"}], [{"original_text": "Meanwhile, the band prepared with their instruments.", "album_id": "72157594452419233", "photo_flickr_id": "341294965", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "44985", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "meanwhile , the band prepared with their instruments .", "storylet_id": "224928"}], [{"original_text": "Finally, they played in the parade.", "album_id": "72157594452419233", "photo_flickr_id": "341295319", "setting": "first-2-pick-and-tell", "worker_id": "92EJ9D09VWQMPBA", "story_id": "44985", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , they played in the parade .", "storylet_id": "224929"}], [{"original_text": "The onlookers were lined up and watching. The first of the black African queens in the parade was coming down the street.", "album_id": "72157594452419233", "photo_flickr_id": "341295566", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "44986", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the onlookers were lined up and watching . the first of the black african queens in the parade was coming down the street .", "storylet_id": "224930"}], [{"original_text": "Beforehand the ladies had a great time. They helped each other dress up and get ready for the parade.", "album_id": "72157594452419233", "photo_flickr_id": "341296245", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "44986", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "beforehand the ladies had a great time . they helped each other dress up and get ready for the parade .", "storylet_id": "224931"}], [{"original_text": "This queen didn't look so happy or excited. She was playing the part well of a mean African queen.", "album_id": "72157594452419233", "photo_flickr_id": "341296824", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "44986", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this queen did n't look so happy or excited . she was playing the part well of a mean african queen .", "storylet_id": "224932"}], [{"original_text": "The outfits all looked glamorous. And everyone was enjoying the parade.", "album_id": "72157594452419233", "photo_flickr_id": "341297486", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "44986", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the outfits all looked glamorous . and everyone was enjoying the parade .", "storylet_id": "224933"}], [{"original_text": "The final queen was dressed in an extravagant red outfit. She waved and threw candy out to the kids watching.", "album_id": "72157594452419233", "photo_flickr_id": "341297718", "setting": "first-2-pick-and-tell", "worker_id": "B55735JD5KXA2N1", "story_id": "44986", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the final queen was dressed in an extravagant red outfit . she waved and threw candy out to the kids watching .", "storylet_id": "224934"}], [{"original_text": "The parade was an amazing event, filled with color.", "album_id": "72157594452419233", "photo_flickr_id": "341297718", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "44987", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parade was an amazing event , filled with color .", "storylet_id": "224935"}], [{"original_text": "The costumes were absolutely amazing.", "album_id": "72157594452419233", "photo_flickr_id": "341296454", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "44987", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the costumes were absolutely amazing .", "storylet_id": "224936"}], [{"original_text": "Many participants in the parade had also painted their faces!", "album_id": "72157594452419233", "photo_flickr_id": "341295566", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "44987", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many participants in the parade had also painted their faces !", "storylet_id": "224937"}], [{"original_text": "There was also a marching band in the parade.", "album_id": "72157594452419233", "photo_flickr_id": "341294965", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "44987", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also a marching band in the parade .", "storylet_id": "224938"}], [{"original_text": "The marching band provided a fun musical backdrop for the festivities.", "album_id": "72157594452419233", "photo_flickr_id": "341295319", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "44987", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the marching band provided a fun musical backdrop for the festivities .", "storylet_id": "224939"}], [{"original_text": "The big parade in our city is a study in contrasts. There are girls dressed up so fancily like this one here.", "album_id": "72157594452419233", "photo_flickr_id": "341297718", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44988", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the big parade in our city is a study in contrasts . there are girls dressed up so fancily like this one here .", "storylet_id": "224940"}], [{"original_text": "I love seeing the showgirls prancing around!", "album_id": "72157594452419233", "photo_flickr_id": "341296454", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44988", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love seeing the showgirls prancing around !", "storylet_id": "224941"}], [{"original_text": "The clothes they wear are so incredibly, and the props are huge.", "album_id": "72157594452419233", "photo_flickr_id": "341295566", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44988", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the clothes they wear are so incredibly , and the props are huge .", "storylet_id": "224942"}], [{"original_text": "However, then there's also very traditional parade elements, like a brass and drum band.", "album_id": "72157594452419233", "photo_flickr_id": "341294965", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44988", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "however , then there 's also very traditional parade elements , like a brass and drum band .", "storylet_id": "224943"}], [{"original_text": "You can't get much more traditional than this marching band, and I love that too. It's great we can include many elements in our parade!", "album_id": "72157594452419233", "photo_flickr_id": "341295319", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "44988", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you ca n't get much more traditional than this marching band , and i love that too . it 's great we can include many elements in our parade !", "storylet_id": "224944"}], [{"original_text": "the african culture and arts fair was incredible", "album_id": "72157594452419233", "photo_flickr_id": "341295566", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44989", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the african culture and arts fair was incredible", "storylet_id": "224945"}], [{"original_text": "there were so many amazing costumes.", "album_id": "72157594452419233", "photo_flickr_id": "341296245", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44989", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were so many amazing costumes .", "storylet_id": "224946"}], [{"original_text": "the make up artistry was impressive. ", "album_id": "72157594452419233", "photo_flickr_id": "341296824", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44989", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the make up artistry was impressive .", "storylet_id": "224947"}], [{"original_text": "the culture and dance really showed alot of skill.", "album_id": "72157594452419233", "photo_flickr_id": "341297486", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44989", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the culture and dance really showed alot of skill .", "storylet_id": "224948"}], [{"original_text": "there were so many detailed costumes featured.", "album_id": "72157594452419233", "photo_flickr_id": "341297718", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "44989", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were so many detailed costumes featured .", "storylet_id": "224949"}], [{"original_text": "Our town had its annual family cycle races.", "album_id": "72157623858517317", "photo_flickr_id": "4574243777", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "44990", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our town had its annual family cycle races .", "storylet_id": "224950"}], [{"original_text": "My son Ian, even joined in.", "album_id": "72157623858517317", "photo_flickr_id": "4574912288", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "44990", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my son [male] , even joined in .", "storylet_id": "224951"}], [{"original_text": "This was his first time riding in the race.", "album_id": "72157623858517317", "photo_flickr_id": "4574930236", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "44990", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was his first time riding in the race .", "storylet_id": "224952"}], [{"original_text": "Ian won a stuffed doggie for finishing second in his age division.", "album_id": "72157623858517317", "photo_flickr_id": "4574955958", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "44990", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] won a stuffed doggie for finishing second in his age division .", "storylet_id": "224953"}], [{"original_text": "He was more interested in the cotton candy his dad was getting him for being such a good boy.", "album_id": "72157623858517317", "photo_flickr_id": "4574980278", "setting": "first-2-pick-and-tell", "worker_id": "L0KAM1VYQJN4PAF", "story_id": "44990", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he was more interested in the cotton candy his dad was getting him for being such a good boy .", "storylet_id": "224954"}], [{"original_text": "My neighborhood decided to do some fundraising for a good cause by entering a parade and building a float.", "album_id": "72157623858517317", "photo_flickr_id": "4574355729", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "44991", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my neighborhood decided to do some fundraising for a good cause by entering a parade and building a float .", "storylet_id": "224955"}], [{"original_text": "We decorated bikes to ride with the float.", "album_id": "72157623858517317", "photo_flickr_id": "4574243777", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "44991", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we decorated bikes to ride with the float .", "storylet_id": "224956"}], [{"original_text": "Many ages participated.", "album_id": "72157623858517317", "photo_flickr_id": "4574902450", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "44991", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many ages participated .", "storylet_id": "224957"}], [{"original_text": "The whole town came to watch.", "album_id": "72157623858517317", "photo_flickr_id": "4574921324", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "44991", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the whole town came to watch .", "storylet_id": "224958"}], [{"original_text": "We were very tired after the parade, but raised some money!", "album_id": "72157623858517317", "photo_flickr_id": "4574947880", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "44991", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were very tired after the parade , but raised some money !", "storylet_id": "224959"}], [{"original_text": "The event was fun for the children.", "album_id": "72157623858517317", "photo_flickr_id": "4574243777", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "44992", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the event was fun for the children .", "storylet_id": "224960"}], [{"original_text": "They enjoyed the balloons and other decorative items.", "album_id": "72157623858517317", "photo_flickr_id": "4574912288", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "44992", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they enjoyed the balloons and other decorative items .", "storylet_id": "224961"}], [{"original_text": "Each rode their mini bike in the exhibition.", "album_id": "72157623858517317", "photo_flickr_id": "4574930236", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "44992", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "each rode their mini bike in the exhibition .", "storylet_id": "224962"}], [{"original_text": "And received toys for their participation.", "album_id": "72157623858517317", "photo_flickr_id": "4574955958", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "44992", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and received toys for their participation .", "storylet_id": "224963"}], [{"original_text": "The day was exciting for kids and parents.", "album_id": "72157623858517317", "photo_flickr_id": "4574980278", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "44992", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day was exciting for kids and parents .", "storylet_id": "224964"}], [{"original_text": "My mother an I were playing a game of soccer together. ", "album_id": "72157623858517317", "photo_flickr_id": "4574355729", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44993", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my mother an i were playing a game of soccer together .", "storylet_id": "224965"}], [{"original_text": "The balloons and bikes were on full display at the mini carnival. ", "album_id": "72157623858517317", "photo_flickr_id": "4574243777", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44993", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the balloons and bikes were on full display at the mini carnival .", "storylet_id": "224966"}], [{"original_text": "The children were riding their bikes around the parking lot. ", "album_id": "72157623858517317", "photo_flickr_id": "4574902450", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44993", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the children were riding their bikes around the parking lot .", "storylet_id": "224967"}], [{"original_text": "Several children decorated their bikes with balloons for the parade. ", "album_id": "72157623858517317", "photo_flickr_id": "4574921324", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44993", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "several children decorated their bikes with balloons for the parade .", "storylet_id": "224968"}], [{"original_text": "The little boy was fascinated with the white balloon. ", "album_id": "72157623858517317", "photo_flickr_id": "4574947880", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "44993", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the little boy was fascinated with the white balloon .", "storylet_id": "224969"}], [{"original_text": "Many parents and their children gathered for a field day for the kids. ", "album_id": "72157623858517317", "photo_flickr_id": "4574243777", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "44994", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many parents and their children gathered for a field day for the kids .", "storylet_id": "224970"}], [{"original_text": "One boy named Kyle had a really fun time, people gave him balloons. ", "album_id": "72157623858517317", "photo_flickr_id": "4574912288", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "44994", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one boy named [male] had a really fun time , people gave him balloons .", "storylet_id": "224971"}], [{"original_text": "Kyle rode around on his bike carrying the balloons that people gave him. ", "album_id": "72157623858517317", "photo_flickr_id": "4574930236", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "44994", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] rode around on his bike carrying the balloons that people gave him .", "storylet_id": "224972"}], [{"original_text": "Kyle also received a stuffed puppy from a parent. ", "album_id": "72157623858517317", "photo_flickr_id": "4574955958", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "44994", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] also received a stuffed puppy from a parent .", "storylet_id": "224973"}], [{"original_text": "Kyle had a very enjoyable experience. ", "album_id": "72157623858517317", "photo_flickr_id": "4574980278", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "44994", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] had a very enjoyable experience .", "storylet_id": "224974"}], [{"original_text": "My town had a bike parade on Saturday.", "album_id": "72157623983137974", "photo_flickr_id": "4574985530", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "44995", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my town had a bike parade on saturday .", "storylet_id": "224975"}], [{"original_text": "Some of the bikes were very unique and cool to see.", "album_id": "72157623983137974", "photo_flickr_id": "4574477727", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "44995", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of the bikes were very unique and cool to see .", "storylet_id": "224976"}], [{"original_text": "This one was pulling a small wagon behind it.", "album_id": "72157623983137974", "photo_flickr_id": "4575112380", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "44995", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one was pulling a small wagon behind it .", "storylet_id": "224977"}], [{"original_text": "This one bike was very tall and seemed quite dangerous to me.", "album_id": "72157623983137974", "photo_flickr_id": "4574478411", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "44995", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one bike was very tall and seemed quite dangerous to me .", "storylet_id": "224978"}], [{"original_text": "This one had a very large trailer with a bunch of people having a great time.", "album_id": "72157623983137974", "photo_flickr_id": "4574479225", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "44995", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this one had a very large trailer with a bunch of people having a great time .", "storylet_id": "224979"}], [{"original_text": "We went outside to watch a fun parade.", "album_id": "72157623983137974", "photo_flickr_id": "4574985530", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "44996", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went outside to watch a fun parade .", "storylet_id": "224980"}], [{"original_text": "Everyone in the neighborhood was so excited.", "album_id": "72157623983137974", "photo_flickr_id": "4574986576", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "44996", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone in the neighborhood was so excited .", "storylet_id": "224981"}], [{"original_text": "They had all kinds of neat things going on! ", "album_id": "72157623983137974", "photo_flickr_id": "4574477727", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "44996", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had all kinds of neat things going on !", "storylet_id": "224982"}], [{"original_text": "It was crowded but I could still see everything.", "album_id": "72157623983137974", "photo_flickr_id": "4575111902", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "44996", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was crowded but i could still see everything .", "storylet_id": "224983"}], [{"original_text": "I loved my first parade and can't wait to see another one!", "album_id": "72157623983137974", "photo_flickr_id": "4575112018", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "44996", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i loved my first parade and ca n't wait to see another one !", "storylet_id": "224984"}], [{"original_text": "The spectators are watching a biking show.", "album_id": "72157623983137974", "photo_flickr_id": "4574985530", "setting": "last-3-pick-old-and-tell", "worker_id": "DT7IE7FUJRTB45T", "story_id": "44997", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the spectators are watching a biking show .", "storylet_id": "224985"}], [{"original_text": "The first people begin to pedal their bikes for the spectators ", "album_id": "72157623983137974", "photo_flickr_id": "4574477727", "setting": "last-3-pick-old-and-tell", "worker_id": "DT7IE7FUJRTB45T", "story_id": "44997", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first people begin to pedal their bikes for the spectators", "storylet_id": "224986"}], [{"original_text": "Afterwards, everyone comes out to celebrate", "album_id": "72157623983137974", "photo_flickr_id": "4575112380", "setting": "last-3-pick-old-and-tell", "worker_id": "DT7IE7FUJRTB45T", "story_id": "44997", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards , everyone comes out to celebrate", "storylet_id": "224987"}], [{"original_text": "The crowd is very pleased with the celebration ", "album_id": "72157623983137974", "photo_flickr_id": "4574478411", "setting": "last-3-pick-old-and-tell", "worker_id": "DT7IE7FUJRTB45T", "story_id": "44997", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowd is very pleased with the celebration", "storylet_id": "224988"}], [{"original_text": "The best float comes out last and the day is over.", "album_id": "72157623983137974", "photo_flickr_id": "4574479225", "setting": "last-3-pick-old-and-tell", "worker_id": "DT7IE7FUJRTB45T", "story_id": "44997", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best float comes out last and the day is over .", "storylet_id": "224989"}], [{"original_text": "A crowd is gathered in a small town to watch a little parade.", "album_id": "72157623983137974", "photo_flickr_id": "4574985530", "setting": "last-3-pick-old-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "44998", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a crowd is gathered in a small town to watch a little parade .", "storylet_id": "224990"}], [{"original_text": "A young mother holds her child to watch people ride bicycles.", "album_id": "72157623983137974", "photo_flickr_id": "4574477727", "setting": "last-3-pick-old-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "44998", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a young mother holds her child to watch people ride bicycles .", "storylet_id": "224991"}], [{"original_text": "There are bicycles pulling floats.", "album_id": "72157623983137974", "photo_flickr_id": "4575112380", "setting": "last-3-pick-old-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "44998", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are bicycles pulling floats .", "storylet_id": "224992"}], [{"original_text": "There are really tall bicycles and 2 seater bicycles and regular bicycles.", "album_id": "72157623983137974", "photo_flickr_id": "4574478411", "setting": "last-3-pick-old-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "44998", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there are really tall bicycles and 2 seater bicycles and regular bicycles .", "storylet_id": "224993"}], [{"original_text": "There is as crooked shack that is connected to a float that's in the parade.", "album_id": "72157623983137974", "photo_flickr_id": "4574479225", "setting": "last-3-pick-old-and-tell", "worker_id": "ITIMPA3MR0WVMK1", "story_id": "44998", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is as crooked shack that is connected to a float that 's in the parade .", "storylet_id": "224994"}], [{"original_text": "A crowd is gathered around the street to watch a small parade.", "album_id": "72157623983137974", "photo_flickr_id": "4574985530", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44999", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a crowd is gathered around the street to watch a small parade .", "storylet_id": "224995"}], [{"original_text": "Towards the middle of the parade are a group of bicyclists.", "album_id": "72157623983137974", "photo_flickr_id": "4574477727", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44999", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "towards the middle of the parade are a group of bicyclists .", "storylet_id": "224996"}], [{"original_text": "Their bicycles look different than an average bike.", "album_id": "72157623983137974", "photo_flickr_id": "4575112380", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44999", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their bicycles look different than an average bike .", "storylet_id": "224997"}], [{"original_text": "Some of them look normal but others are taller and longer than what you would expect.", "album_id": "72157623983137974", "photo_flickr_id": "4574478411", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44999", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of them look normal but others are taller and longer than what you would expect .", "storylet_id": "224998"}], [{"original_text": "Leading up the end of the parade is a caboose from a train with people on it.", "album_id": "72157623983137974", "photo_flickr_id": "4574479225", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "44999", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "leading up the end of the parade is a caboose from a train with people on it .", "storylet_id": "224999"}], [{"original_text": "people from all over town showed up", "album_id": "72157623705927805", "photo_flickr_id": "4510890152", "setting": "first-2-pick-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "45000", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people from all over town showed up", "storylet_id": "225000"}], [{"original_text": "we watched as they performed on camera", "album_id": "72157623705927805", "photo_flickr_id": "4510865406", "setting": "first-2-pick-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "45000", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we watched as they performed on camera", "storylet_id": "225001"}], [{"original_text": "posing and acting for us, they entertained us", "album_id": "72157623705927805", "photo_flickr_id": "4510235231", "setting": "first-2-pick-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "45000", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "posing and acting for us , they entertained us", "storylet_id": "225002"}], [{"original_text": "and even made us laugh", "album_id": "72157623705927805", "photo_flickr_id": "4510882830", "setting": "first-2-pick-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "45000", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and even made us laugh", "storylet_id": "225003"}], [{"original_text": "then it was over, and everyone started to leave", "album_id": "72157623705927805", "photo_flickr_id": "4522411475", "setting": "first-2-pick-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "45000", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then it was over , and everyone started to leave", "storylet_id": "225004"}], [{"original_text": "We did something different for Halloween this year.", "album_id": "72157623705927805", "photo_flickr_id": "4510865406", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45001", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we did something different for halloween this year .", "storylet_id": "225005"}], [{"original_text": "We went as zombies for the first time!", "album_id": "72157623705927805", "photo_flickr_id": "4510235231", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45001", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we went as zombies for the first time !", "storylet_id": "225006"}], [{"original_text": "We really got into our costumes.", "album_id": "72157623705927805", "photo_flickr_id": "4510882830", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45001", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we really got into our costumes .", "storylet_id": "225007"}], [{"original_text": "A whole group of zombies joined us", "album_id": "72157623705927805", "photo_flickr_id": "4510890152", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45001", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a whole group of zombies joined us", "storylet_id": "225008"}], [{"original_text": "We had a lot of fun as the walking dead, and want to do it again next year.", "album_id": "72157623705927805", "photo_flickr_id": "4510894272", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45001", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a lot of fun as the walking dead , and want to do it again next year .", "storylet_id": "225009"}], [{"original_text": "The crowd gathered to partake in the event.", "album_id": "72157623705927805", "photo_flickr_id": "4510890152", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45002", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the crowd gathered to partake in the event .", "storylet_id": "225010"}], [{"original_text": "Some came by foot, others by other methods.", "album_id": "72157623705927805", "photo_flickr_id": "4510865406", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45002", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some came by foot , others by other methods .", "storylet_id": "225011"}], [{"original_text": "There was face painting and other activities.", "album_id": "72157623705927805", "photo_flickr_id": "4510235231", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45002", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was face painting and other activities .", "storylet_id": "225012"}], [{"original_text": "People enjoyed getting loose and acting wild.", "album_id": "72157623705927805", "photo_flickr_id": "4510882830", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45002", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people enjoyed getting loose and acting wild .", "storylet_id": "225013"}], [{"original_text": "The sidewalks were full for hours.", "album_id": "72157623705927805", "photo_flickr_id": "4522411475", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45002", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sidewalks were full for hours .", "storylet_id": "225014"}], [{"original_text": "All the people are gathered around in celebration.", "album_id": "72157623705927805", "photo_flickr_id": "4510890152", "setting": "last-3-pick-old-and-tell", "worker_id": "DT7IE7FUJRTB45T", "story_id": "45003", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all the people are gathered around in celebration .", "storylet_id": "225015"}], [{"original_text": "Billy doesnt like the celebration and rides his bike away.", "album_id": "72157623705927805", "photo_flickr_id": "4510865406", "setting": "last-3-pick-old-and-tell", "worker_id": "DT7IE7FUJRTB45T", "story_id": "45003", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] doesnt like the celebration and rides his bike away .", "storylet_id": "225016"}], [{"original_text": "Oh no lots of zombies!", "album_id": "72157623705927805", "photo_flickr_id": "4510235231", "setting": "last-3-pick-old-and-tell", "worker_id": "DT7IE7FUJRTB45T", "story_id": "45003", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "oh no lots of zombies !", "storylet_id": "225017"}], [{"original_text": "The zombies look hungery.", "album_id": "72157623705927805", "photo_flickr_id": "4510882830", "setting": "last-3-pick-old-and-tell", "worker_id": "DT7IE7FUJRTB45T", "story_id": "45003", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the zombies look hungery .", "storylet_id": "225018"}], [{"original_text": "Everyone runs away in fear!", "album_id": "72157623705927805", "photo_flickr_id": "4522411475", "setting": "last-3-pick-old-and-tell", "worker_id": "DT7IE7FUJRTB45T", "story_id": "45003", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone runs away in fear !", "storylet_id": "225019"}], [{"original_text": "A large crowd is outside in the streets.", "album_id": "72157623705927805", "photo_flickr_id": "4510890152", "setting": "last-3-pick-old-and-tell", "worker_id": "P4OE2U24WT2JZ1X", "story_id": "45004", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a large crowd is outside in the streets .", "storylet_id": "225020"}], [{"original_text": "They are walking around the city.", "album_id": "72157623705927805", "photo_flickr_id": "4510865406", "setting": "last-3-pick-old-and-tell", "worker_id": "P4OE2U24WT2JZ1X", "story_id": "45004", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are walking around the city .", "storylet_id": "225021"}], [{"original_text": "People are having fun with their friends and animals", "album_id": "72157623705927805", "photo_flickr_id": "4510235231", "setting": "last-3-pick-old-and-tell", "worker_id": "P4OE2U24WT2JZ1X", "story_id": "45004", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people are having fun with their friends and animals", "storylet_id": "225022"}], [{"original_text": "A lot of the kids display fun with makeup.", "album_id": "72157623705927805", "photo_flickr_id": "4510882830", "setting": "last-3-pick-old-and-tell", "worker_id": "P4OE2U24WT2JZ1X", "story_id": "45004", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a lot of the kids display fun with makeup .", "storylet_id": "225023"}], [{"original_text": "After having fun, people head into one of the stores.", "album_id": "72157623705927805", "photo_flickr_id": "4522411475", "setting": "last-3-pick-old-and-tell", "worker_id": "P4OE2U24WT2JZ1X", "story_id": "45004", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after having fun , people head into one of the stores .", "storylet_id": "225024"}], [{"original_text": "Dad dyed his beard green to celebrate St. Patricks day.", "album_id": "72157623492642401", "photo_flickr_id": "4431393063", "setting": "first-2-pick-and-tell", "worker_id": "6OW59OOTGWFTSZ1", "story_id": "45005", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dad dyed his beard green to celebrate location location day .", "storylet_id": "225025"}], [{"original_text": "Mom wore green gloves.", "album_id": "72157623492642401", "photo_flickr_id": "4432163302", "setting": "first-2-pick-and-tell", "worker_id": "6OW59OOTGWFTSZ1", "story_id": "45005", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom wore green gloves .", "storylet_id": "225026"}], [{"original_text": "I got in the spirit by wearing a green wig.", "album_id": "72157623492642401", "photo_flickr_id": "4432041434", "setting": "first-2-pick-and-tell", "worker_id": "6OW59OOTGWFTSZ1", "story_id": "45005", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got in the spirit by wearing a green wig .", "storylet_id": "225027"}], [{"original_text": "People here really get in the spirit, even the water was green.", "album_id": "72157623492642401", "photo_flickr_id": "4432053494", "setting": "first-2-pick-and-tell", "worker_id": "6OW59OOTGWFTSZ1", "story_id": "45005", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people here really get in the spirit , even the water was green .", "storylet_id": "225028"}], [{"original_text": "We even got to go on a boat ride.", "album_id": "72157623492642401", "photo_flickr_id": "4431319579", "setting": "first-2-pick-and-tell", "worker_id": "6OW59OOTGWFTSZ1", "story_id": "45005", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even got to go on a boat ride .", "storylet_id": "225029"}], [{"original_text": "I was tired from my long flight overseas to Ireland.", "album_id": "72157623492642401", "photo_flickr_id": "4432163226", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45006", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was tired from my long flight overseas to location .", "storylet_id": "225030"}], [{"original_text": "My dad was ready to go though! ", "album_id": "72157623492642401", "photo_flickr_id": "4431393063", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45006", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my dad was ready to go though !", "storylet_id": "225031"}], [{"original_text": "My sister brought her gloves in case it was cold.", "album_id": "72157623492642401", "photo_flickr_id": "4432163302", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45006", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my sister brought her gloves in case it was cold .", "storylet_id": "225032"}], [{"original_text": "We took many pictures and it was great experience!", "album_id": "72157623492642401", "photo_flickr_id": "4432153496", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45006", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took many pictures and it was great experience !", "storylet_id": "225033"}], [{"original_text": "My sister wanted to stay warm so she refuse to take off her gloves.", "album_id": "72157623492642401", "photo_flickr_id": "4431382405", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45006", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my sister wanted to stay warm so she refuse to take off her gloves .", "storylet_id": "225034"}], [{"original_text": "Another fun day at Blarney Island and a special day at that. ", "album_id": "72157623492642401", "photo_flickr_id": "4431393063", "setting": "last-3-pick-old-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "45007", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "another fun day at location location and a special day at that .", "storylet_id": "225035"}], [{"original_text": "St. Patrick's day is a big event on this island and everyone wants to get in on the act. ", "album_id": "72157623492642401", "photo_flickr_id": "4432163302", "setting": "last-3-pick-old-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "45007", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "st. [male] 's day is a big event on this island and everyone wants to get in on the act .", "storylet_id": "225036"}], [{"original_text": "Some people really get into it and go all out. ", "album_id": "72157623492642401", "photo_flickr_id": "4432041434", "setting": "last-3-pick-old-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "45007", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people really get into it and go all out .", "storylet_id": "225037"}], [{"original_text": "Even the water turned green for the occasion. ", "album_id": "72157623492642401", "photo_flickr_id": "4432053494", "setting": "last-3-pick-old-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "45007", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the water turned green for the occasion .", "storylet_id": "225038"}], [{"original_text": "This is a great place to celebrate, they have their rescue personally ready to do their jobs if anything goes awry. ", "album_id": "72157623492642401", "photo_flickr_id": "4431319579", "setting": "last-3-pick-old-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "45007", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a great place to celebrate , they have their rescue personally ready to do their jobs if anything goes awry .", "storylet_id": "225039"}], [{"original_text": "People showed their support to Ireland by really getting into the spirit.", "album_id": "72157623492642401", "photo_flickr_id": "4431393063", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45008", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people showed their support to location by really getting into the spirit .", "storylet_id": "225040"}], [{"original_text": "Some people wore clothes that rooted them on.", "album_id": "72157623492642401", "photo_flickr_id": "4432163302", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45008", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some people wore clothes that rooted them on .", "storylet_id": "225041"}], [{"original_text": "Other people wore wigs to show their support.", "album_id": "72157623492642401", "photo_flickr_id": "4432041434", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45008", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other people wore wigs to show their support .", "storylet_id": "225042"}], [{"original_text": "The town as a whole supported by literally coloring the river green.", "album_id": "72157623492642401", "photo_flickr_id": "4432053494", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45008", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the town as a whole supported by literally coloring the river green .", "storylet_id": "225043"}], [{"original_text": "The enthusiasm was all around the city that day.", "album_id": "72157623492642401", "photo_flickr_id": "4431319579", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45008", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the enthusiasm was all around the city that day .", "storylet_id": "225044"}], [{"original_text": "It is St. Patrick's Day and this man has dyed his beard green.", "album_id": "72157623492642401", "photo_flickr_id": "4431393063", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45009", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is st. [male] 's day and this man has dyed his beard green .", "storylet_id": "225045"}], [{"original_text": "His wife is wearing green gloves that say Irish on them.", "album_id": "72157623492642401", "photo_flickr_id": "4432163302", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45009", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his wife is wearing green gloves that say irish on them .", "storylet_id": "225046"}], [{"original_text": "Beside them their son has on a green afro wig.", "album_id": "72157623492642401", "photo_flickr_id": "4432041434", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45009", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "beside them their son has on a green afro wig .", "storylet_id": "225047"}], [{"original_text": "They are at an event and the water has been dyed green in celebration.", "album_id": "72157623492642401", "photo_flickr_id": "4432053494", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45009", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they are at an event and the water has been dyed green in celebration .", "storylet_id": "225048"}], [{"original_text": "A crew of people are in the water on a boat. They are making sure the water does not lose its green tint.", "album_id": "72157623492642401", "photo_flickr_id": "4431319579", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45009", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a crew of people are in the water on a boat . they are making sure the water does not lose its green tint .", "storylet_id": "225049"}], [{"original_text": "The festival featured musical talent playing various instruments. ", "album_id": "72157623493517207", "photo_flickr_id": "4432413526", "setting": "first-2-pick-and-tell", "worker_id": "31057HOLZXP7QJ5", "story_id": "45010", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the festival featured musical talent playing various instruments .", "storylet_id": "225050"}], [{"original_text": "The festival featured a combination of Irish and other cultures. ", "album_id": "72157623493517207", "photo_flickr_id": "4432413644", "setting": "first-2-pick-and-tell", "worker_id": "31057HOLZXP7QJ5", "story_id": "45010", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the festival featured a combination of irish and other cultures .", "storylet_id": "225051"}], [{"original_text": "This man, in a kilt was celebrating both Irish and Japanese culture", "album_id": "72157623493517207", "photo_flickr_id": "4432413814", "setting": "first-2-pick-and-tell", "worker_id": "31057HOLZXP7QJ5", "story_id": "45010", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this man , in a kilt was celebrating both irish and japanese culture", "storylet_id": "225052"}], [{"original_text": "This man admires both countries flags.", "album_id": "72157623493517207", "photo_flickr_id": "4431643539", "setting": "first-2-pick-and-tell", "worker_id": "31057HOLZXP7QJ5", "story_id": "45010", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this man admires both countries flags .", "storylet_id": "225053"}], [{"original_text": "At the end of the day, the crowds began to disperse. ", "album_id": "72157623493517207", "photo_flickr_id": "4431643663", "setting": "first-2-pick-and-tell", "worker_id": "31057HOLZXP7QJ5", "story_id": "45010", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , the crowds began to disperse .", "storylet_id": "225054"}], [{"original_text": "I went for a walk along the river front today.", "album_id": "72157623493517207", "photo_flickr_id": "4432412662", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "45011", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went for a walk along the river front today .", "storylet_id": "225055"}], [{"original_text": "There were some great waterfront properties that I got to see.", "album_id": "72157623493517207", "photo_flickr_id": "4431642327", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "45011", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were some great waterfront properties that i got to see .", "storylet_id": "225056"}], [{"original_text": "This was a cool view I saw underneath a bridge.", "album_id": "72157623493517207", "photo_flickr_id": "4432413110", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "45011", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was a cool view i saw underneath a bridge .", "storylet_id": "225057"}], [{"original_text": "There was also an ethnic celebration going on further upstream.", "album_id": "72157623493517207", "photo_flickr_id": "4432413814", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "45011", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also an ethnic celebration going on further upstream .", "storylet_id": "225058"}], [{"original_text": "People were quite exuberant about the day, it was great to see.", "album_id": "72157623493517207", "photo_flickr_id": "4431643539", "setting": "first-2-pick-and-tell", "worker_id": "U8LKEFO83Z5H59A", "story_id": "45011", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "people were quite exuberant about the day , it was great to see .", "storylet_id": "225059"}], [{"original_text": "The event was to celebrate history.", "album_id": "72157623493517207", "photo_flickr_id": "4432413526", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45012", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the event was to celebrate history .", "storylet_id": "225060"}], [{"original_text": "People dressed in costume and held props.", "album_id": "72157623493517207", "photo_flickr_id": "4432413644", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45012", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people dressed in costume and held props .", "storylet_id": "225061"}], [{"original_text": "Performers symbolized the history and times of the past.", "album_id": "72157623493517207", "photo_flickr_id": "4432413814", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45012", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "performers symbolized the history and times of the past .", "storylet_id": "225062"}], [{"original_text": "The event drew a fair sized crowd.", "album_id": "72157623493517207", "photo_flickr_id": "4431643539", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45012", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the event drew a fair sized crowd .", "storylet_id": "225063"}], [{"original_text": "The event lasted for several hours that day.", "album_id": "72157623493517207", "photo_flickr_id": "4431643663", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45012", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the event lasted for several hours that day .", "storylet_id": "225064"}], [{"original_text": "People from all over joined in the celebration.", "album_id": "72157623493517207", "photo_flickr_id": "4432413526", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45013", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people from all over joined in the celebration .", "storylet_id": "225065"}], [{"original_text": "The street performers did a great job this year.", "album_id": "72157623493517207", "photo_flickr_id": "4432413644", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45013", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the street performers did a great job this year .", "storylet_id": "225066"}], [{"original_text": "The traditional costumes were worn for the celebration.", "album_id": "72157623493517207", "photo_flickr_id": "4432413814", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45013", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the traditional costumes were worn for the celebration .", "storylet_id": "225067"}], [{"original_text": "The flag holders where in their correct spots.", "album_id": "72157623493517207", "photo_flickr_id": "4431643539", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45013", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the flag holders where in their correct spots .", "storylet_id": "225068"}], [{"original_text": "As the people left we felt that the day had been a success.", "album_id": "72157623493517207", "photo_flickr_id": "4431643663", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45013", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the people left we felt that the day had been a success .", "storylet_id": "225069"}], [{"original_text": "Many people attended the demonstration.", "album_id": "72157623493517207", "photo_flickr_id": "4432413526", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "45014", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people attended the demonstration .", "storylet_id": "225070"}], [{"original_text": "It was peaceful, and the weather was nice.", "album_id": "72157623493517207", "photo_flickr_id": "4432413644", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "45014", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was peaceful , and the weather was nice .", "storylet_id": "225071"}], [{"original_text": "The gentleman wore his uniform and carried flags to make a statement.", "album_id": "72157623493517207", "photo_flickr_id": "4432413814", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "45014", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the gentleman wore his uniform and carried flags to make a statement .", "storylet_id": "225072"}], [{"original_text": "Flags were a prevalent part of the display.", "album_id": "72157623493517207", "photo_flickr_id": "4431643539", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "45014", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "flags were a prevalent part of the display .", "storylet_id": "225073"}], [{"original_text": "At the end of the day, everyone left the demonstration satisfied with it's activities.", "album_id": "72157623493517207", "photo_flickr_id": "4431643663", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "45014", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , everyone left the demonstration satisfied with it 's activities .", "storylet_id": "225074"}], [{"original_text": "There was a St. Patrick's Parade in San Francisco.", "album_id": "72157623619034418", "photo_flickr_id": "4432090443", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45015", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a st. [male] 's parade in location location .", "storylet_id": "225075"}], [{"original_text": "There was a float with a leprechaun and his lucky horseshoe.", "album_id": "72157623619034418", "photo_flickr_id": "4432091521", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45015", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a float with a leprechaun and his lucky horseshoe .", "storylet_id": "225076"}], [{"original_text": "There were some people in costumes.", "album_id": "72157623619034418", "photo_flickr_id": "4432092007", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45015", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some people in costumes .", "storylet_id": "225077"}], [{"original_text": "A cavalry with flags rode in the parade as well.", "album_id": "72157623619034418", "photo_flickr_id": "4432093385", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45015", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a cavalry with flags rode in the parade as well .", "storylet_id": "225078"}], [{"original_text": "We also saw some bagpipes being played!", "album_id": "72157623619034418", "photo_flickr_id": "4432094139", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45015", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also saw some bagpipes being played !", "storylet_id": "225079"}], [{"original_text": "the parade we went to had a bunch of cool cars", "album_id": "72157623619034418", "photo_flickr_id": "4432860432", "setting": "first-2-pick-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "45016", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parade we went to had a bunch of cool cars", "storylet_id": "225080"}], [{"original_text": "this is one of the cars I really liked", "album_id": "72157623619034418", "photo_flickr_id": "4432861594", "setting": "first-2-pick-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "45016", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is one of the cars i really liked", "storylet_id": "225081"}], [{"original_text": "then this one passed by and grabbed my attention", "album_id": "72157623619034418", "photo_flickr_id": "4432088895", "setting": "first-2-pick-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "45016", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then this one passed by and grabbed my attention", "storylet_id": "225082"}], [{"original_text": "after the cars went by, the band marched", "album_id": "72157623619034418", "photo_flickr_id": "4432862148", "setting": "first-2-pick-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "45016", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the cars went by , the band marched", "storylet_id": "225083"}], [{"original_text": "then I took pictures of the pretty girls that were in the parade", "album_id": "72157623619034418", "photo_flickr_id": "4432091037", "setting": "first-2-pick-and-tell", "worker_id": "MM0QAL8NMPJBYQZ", "story_id": "45016", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then i took pictures of the pretty girls that were in the parade", "storylet_id": "225084"}], [{"original_text": "thousands of people gather every year to celebrate st. patrick's day. ", "album_id": "72157623619034418", "photo_flickr_id": "4432090443", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45017", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "thousands of people gather every year to celebrate st. patrick 's day .", "storylet_id": "225085"}], [{"original_text": "Many colorful props can be found in the street. ", "album_id": "72157623619034418", "photo_flickr_id": "4432091521", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45017", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many colorful props can be found in the street .", "storylet_id": "225086"}], [{"original_text": "In addition, many people dress up in funny outfits to celebrate this day. ", "album_id": "72157623619034418", "photo_flickr_id": "4432092007", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45017", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in addition , many people dress up in funny outfits to celebrate this day .", "storylet_id": "225087"}], [{"original_text": "There was also a group of policemen in horses to control the crowd. ", "album_id": "72157623619034418", "photo_flickr_id": "4432093385", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45017", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also a group of policemen in horses to control the crowd .", "storylet_id": "225088"}], [{"original_text": "The celebration ended with people playing the national anthem of Scotland. ", "album_id": "72157623619034418", "photo_flickr_id": "4432094139", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45017", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the celebration ended with people playing the national anthem of location .", "storylet_id": "225089"}], [{"original_text": "There is nothing more fun then a St. Patricks day parade.", "album_id": "72157623619034418", "photo_flickr_id": "4432090443", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45018", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is nothing more fun then a location location day parade .", "storylet_id": "225090"}], [{"original_text": "An Irish Leprechaun leads the parade in celebration.", "album_id": "72157623619034418", "photo_flickr_id": "4432091521", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45018", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "an irish leprechaun leads the parade in celebration .", "storylet_id": "225091"}], [{"original_text": "Not far behind him is an Irish clown carrying a saxophone.", "album_id": "72157623619034418", "photo_flickr_id": "4432092007", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45018", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not far behind him is an irish clown carrying a saxophone .", "storylet_id": "225092"}], [{"original_text": "Also involved are riders on their horses.", "album_id": "72157623619034418", "photo_flickr_id": "4432093385", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45018", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "also involved are riders on their horses .", "storylet_id": "225093"}], [{"original_text": "This group includes a man with bag pipes.", "album_id": "72157623619034418", "photo_flickr_id": "4432094139", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45018", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this group includes a man with bag pipes .", "storylet_id": "225094"}], [{"original_text": "Today I decided to go to a St Patrick's day parade.", "album_id": "72157623619034418", "photo_flickr_id": "4432090443", "setting": "last-3-pick-old-and-tell", "worker_id": "3ZQD1MAW12Q507Q", "story_id": "45019", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i decided to go to a location location 's day parade .", "storylet_id": "225095"}], [{"original_text": "I'm irish so i loved seeing all the irish stuff.", "album_id": "72157623619034418", "photo_flickr_id": "4432091521", "setting": "last-3-pick-old-and-tell", "worker_id": "3ZQD1MAW12Q507Q", "story_id": "45019", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm irish so i loved seeing all the irish stuff .", "storylet_id": "225096"}], [{"original_text": "The people were really into it too.", "album_id": "72157623619034418", "photo_flickr_id": "4432092007", "setting": "last-3-pick-old-and-tell", "worker_id": "3ZQD1MAW12Q507Q", "story_id": "45019", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people were really into it too .", "storylet_id": "225097"}], [{"original_text": "There were even horses in the parade.", "album_id": "72157623619034418", "photo_flickr_id": "4432093385", "setting": "last-3-pick-old-and-tell", "worker_id": "3ZQD1MAW12Q507Q", "story_id": "45019", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were even horses in the parade .", "storylet_id": "225098"}], [{"original_text": "The music was great and I really enjoyed myself. ", "album_id": "72157623619034418", "photo_flickr_id": "4432094139", "setting": "last-3-pick-old-and-tell", "worker_id": "3ZQD1MAW12Q507Q", "story_id": "45019", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the music was great and i really enjoyed myself .", "storylet_id": "225099"}], [{"original_text": "We decided to attend the Oxford Festival.", "album_id": "72157623750513157", "photo_flickr_id": "4528366404", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "45020", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to attend the oxford festival .", "storylet_id": "225100"}], [{"original_text": "There were many street performances going on.", "album_id": "72157623750513157", "photo_flickr_id": "4531764086", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "45020", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many street performances going on .", "storylet_id": "225101"}], [{"original_text": "There were some pretty talented people doing interesting things.", "album_id": "72157623750513157", "photo_flickr_id": "4534082326", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "45020", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some pretty talented people doing interesting things .", "storylet_id": "225102"}], [{"original_text": "There was great music, too!", "album_id": "72157623750513157", "photo_flickr_id": "4538978748", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "45020", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was great music , too !", "storylet_id": "225103"}], [{"original_text": "The event drew a huge crowd and was a lot of fun.", "album_id": "72157623750513157", "photo_flickr_id": "4531763298", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "45020", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the event drew a huge crowd and was a lot of fun .", "storylet_id": "225104"}], [{"original_text": "The festival brought hundreds to celebrate.", "album_id": "72157623750513157", "photo_flickr_id": "4527734073", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45021", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the festival brought hundreds to celebrate .", "storylet_id": "225105"}], [{"original_text": "The signs outside advertised the event.", "album_id": "72157623750513157", "photo_flickr_id": "4528365658", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45021", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the signs outside advertised the event .", "storylet_id": "225106"}], [{"original_text": "Performers danced in the street in costume.", "album_id": "72157623750513157", "photo_flickr_id": "4530590916", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45021", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "performers danced in the street in costume .", "storylet_id": "225107"}], [{"original_text": "They moved in synchrony to the music played.", "album_id": "72157623750513157", "photo_flickr_id": "4534082326", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45021", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they moved in synchrony to the music played .", "storylet_id": "225108"}], [{"original_text": "And characters played roles to further entertain.", "album_id": "72157623750513157", "photo_flickr_id": "4533443877", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45021", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and characters played roles to further entertain .", "storylet_id": "225109"}], [{"original_text": "The Oxford Folk Festival brought out lots of people to celebrate.", "album_id": "72157623750513157", "photo_flickr_id": "4528366404", "setting": "last-3-pick-old-and-tell", "worker_id": "KG3KR4LWHCLY6SF", "story_id": "45022", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the oxford folk festival brought out lots of people to celebrate .", "storylet_id": "225110"}], [{"original_text": "Amazing and hugely varied costumes were worn by celebrants.", "album_id": "72157623750513157", "photo_flickr_id": "4531764086", "setting": "last-3-pick-old-and-tell", "worker_id": "KG3KR4LWHCLY6SF", "story_id": "45022", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "amazing and hugely varied costumes were worn by celebrants .", "storylet_id": "225111"}], [{"original_text": "Some groups had choreographed dances that they performed.", "album_id": "72157623750513157", "photo_flickr_id": "4534082326", "setting": "last-3-pick-old-and-tell", "worker_id": "KG3KR4LWHCLY6SF", "story_id": "45022", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some groups had choreographed dances that they performed .", "storylet_id": "225112"}], [{"original_text": "And, a parade was joined by hundreds.", "album_id": "72157623750513157", "photo_flickr_id": "4538978748", "setting": "last-3-pick-old-and-tell", "worker_id": "KG3KR4LWHCLY6SF", "story_id": "45022", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and , a parade was joined by hundreds .", "storylet_id": "225113"}], [{"original_text": "At the end of the day, everyone agreed that the Festival was a success.", "album_id": "72157623750513157", "photo_flickr_id": "4531763298", "setting": "last-3-pick-old-and-tell", "worker_id": "KG3KR4LWHCLY6SF", "story_id": "45022", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , everyone agreed that the festival was a success .", "storylet_id": "225114"}], [{"original_text": "The Parade is coming down the street. Here comes some interesting people and floats.", "album_id": "72157623750513157", "photo_flickr_id": "4528366404", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "45023", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parade is coming down the street . here comes some interesting people and floats .", "storylet_id": "225115"}], [{"original_text": "This scary looking lady is playing for the crowd.", "album_id": "72157623750513157", "photo_flickr_id": "4531764086", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "45023", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this scary looking lady is playing for the crowd .", "storylet_id": "225116"}], [{"original_text": "Next to show is the interesting boys in white. They have some interesting outfits are entertaining.", "album_id": "72157623750513157", "photo_flickr_id": "4534082326", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "45023", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next to show is the interesting boys in white . they have some interesting outfits are entertaining .", "storylet_id": "225117"}], [{"original_text": "Now here comes there counterparts who are mostly in black and blue.", "album_id": "72157623750513157", "photo_flickr_id": "4538978748", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "45023", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now here comes there counterparts who are mostly in black and blue .", "storylet_id": "225118"}], [{"original_text": "The parade is coming to an end and the crowd is all coming together. ", "album_id": "72157623750513157", "photo_flickr_id": "4531763298", "setting": "last-3-pick-old-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "45023", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the parade is coming to an end and the crowd is all coming together .", "storylet_id": "225119"}], [{"original_text": "People gather every year to celebrate Oxford Folk Festival. ", "album_id": "72157623750513157", "photo_flickr_id": "4528366404", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45024", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people gather every year to celebrate oxford folk festival .", "storylet_id": "225120"}], [{"original_text": "Some people dress up in funny outfits such as this lady in pink hair. ", "album_id": "72157623750513157", "photo_flickr_id": "4531764086", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45024", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some people dress up in funny outfits such as this lady in pink hair .", "storylet_id": "225121"}], [{"original_text": "One of the opening performances were people dressed in white and dancing to traditional folk music. ", "album_id": "72157623750513157", "photo_flickr_id": "4534082326", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45024", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the opening performances were people dressed in white and dancing to traditional folk music .", "storylet_id": "225122"}], [{"original_text": "Other performers performed theatrical performances. ", "album_id": "72157623750513157", "photo_flickr_id": "4538978748", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45024", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other performers performed theatrical performances .", "storylet_id": "225123"}], [{"original_text": "Everybody at the festival felt connected and had a great time together. ", "album_id": "72157623750513157", "photo_flickr_id": "4531763298", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45024", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everybody at the festival felt connected and had a great time together .", "storylet_id": "225124"}], [{"original_text": "Ron went to the bookstore. There he found a book on travel. ", "album_id": "72157624081009722", "photo_flickr_id": "4616359626", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "45025", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] went to the bookstore . there he found a book on travel .", "storylet_id": "225125"}], [{"original_text": "He also found a book about Loons.", "album_id": "72157624081009722", "photo_flickr_id": "4616366890", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "45025", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he also found a book about loons .", "storylet_id": "225126"}], [{"original_text": "There were so many good books he wanted to get them all. ", "album_id": "72157624081009722", "photo_flickr_id": "4616380598", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "45025", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were so many good books he wanted to get them all .", "storylet_id": "225127"}], [{"original_text": "He made 3 sets of books he wanted. He closed his eyes and chose. ", "album_id": "72157624081009722", "photo_flickr_id": "4616384974", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "45025", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he made 3 sets of books he wanted . he closed his eyes and chose .", "storylet_id": "225128"}], [{"original_text": "Ron was very happy with his choice, he knew he would learn a lot from these books.", "album_id": "72157624081009722", "photo_flickr_id": "4616399034", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "45025", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] was very happy with his choice , he knew he would learn a lot from these books .", "storylet_id": "225129"}], [{"original_text": "It was always exciting to get our weekly package of books in the mail.", "album_id": "72157624081009722", "photo_flickr_id": "4616359626", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "45026", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was always exciting to get our weekly package of books in the mail .", "storylet_id": "225130"}], [{"original_text": "Sometimes, it was favorites from young adulthood, such as Little Women.", "album_id": "72157624081009722", "photo_flickr_id": "4615749949", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "45026", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "sometimes , it was favorites from young adulthood , such as little women .", "storylet_id": "225131"}], [{"original_text": "Other times the children would get a whole bunch of paperback novels.", "album_id": "72157624081009722", "photo_flickr_id": "4616380598", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "45026", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other times the children would get a whole bunch of paperback novels .", "storylet_id": "225132"}], [{"original_text": "The most useful were the learning books used for homeschooling.", "album_id": "72157624081009722", "photo_flickr_id": "4616399034", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "45026", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the most useful were the learning books used for homeschooling .", "storylet_id": "225133"}], [{"original_text": "Every once in a while a movie would be included.", "album_id": "72157624081009722", "photo_flickr_id": "4615777257", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "45026", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "every once in a while a movie would be included .", "storylet_id": "225134"}], [{"original_text": "Today, we set up the book fair.", "album_id": "72157624081009722", "photo_flickr_id": "4616359626", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "45027", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , we set up the book fair .", "storylet_id": "225135"}], [{"original_text": "I put out this one to celebrate Canada day.", "album_id": "72157624081009722", "photo_flickr_id": "4616366890", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "45027", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i put out this one to celebrate location day .", "storylet_id": "225136"}], [{"original_text": "The kid's books were the most important.", "album_id": "72157624081009722", "photo_flickr_id": "4616380598", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "45027", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kid 's books were the most important .", "storylet_id": "225137"}], [{"original_text": "Of course, we also needed educational ones.", "album_id": "72157624081009722", "photo_flickr_id": "4616384974", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "45027", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course , we also needed educational ones .", "storylet_id": "225138"}], [{"original_text": "My favorite were the science books, even if they were for children.", "album_id": "72157624081009722", "photo_flickr_id": "4616399034", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "45027", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite were the science books , even if they were for children .", "storylet_id": "225139"}], [{"original_text": "Today I gathered and organized my book collection.", "album_id": "72157624081009722", "photo_flickr_id": "4616359626", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45028", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i gathered and organized my book collection .", "storylet_id": "225140"}], [{"original_text": "Call of the Loon was one of my favorite books when I was a kid.", "album_id": "72157624081009722", "photo_flickr_id": "4616366890", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45028", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "call of the loon was one of my favorite books when i was a kid .", "storylet_id": "225141"}], [{"original_text": "At first I had trouble sorting out all the books in my collection.", "album_id": "72157624081009722", "photo_flickr_id": "4616380598", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45028", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "at first i had trouble sorting out all the books in my collection .", "storylet_id": "225142"}], [{"original_text": "After a while it became easier to sort and organize all my books.", "album_id": "72157624081009722", "photo_flickr_id": "4616384974", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45028", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a while it became easier to sort and organize all my books .", "storylet_id": "225143"}], [{"original_text": "I even sorted by category like science.", "album_id": "72157624081009722", "photo_flickr_id": "4616399034", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45028", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i even sorted by category like science .", "storylet_id": "225144"}], [{"original_text": "Photos of one of my favorite books. This is a reminder of my trip abroad to Asia. ", "album_id": "72157624081009722", "photo_flickr_id": "4616359626", "setting": "last-3-pick-old-and-tell", "worker_id": "TT5VFFZYTEG1PNA", "story_id": "45029", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "photos of one of my favorite books . this is a reminder of my trip abroad to location .", "storylet_id": "225145"}], [{"original_text": "This book was a great murder mystery. The best of all times. ", "album_id": "72157624081009722", "photo_flickr_id": "4616366890", "setting": "last-3-pick-old-and-tell", "worker_id": "TT5VFFZYTEG1PNA", "story_id": "45029", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this book was a great murder mystery . the best of all times .", "storylet_id": "225146"}], [{"original_text": "This set is my spy and mystery novels that got me through the 5th grade. ", "album_id": "72157624081009722", "photo_flickr_id": "4616380598", "setting": "last-3-pick-old-and-tell", "worker_id": "TT5VFFZYTEG1PNA", "story_id": "45029", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this set is my spy and mystery novels that got me through the 5th grade .", "storylet_id": "225147"}], [{"original_text": "This set were my best reads in the 6th grade. in the future I know they will be a collectors item. ", "album_id": "72157624081009722", "photo_flickr_id": "4616384974", "setting": "last-3-pick-old-and-tell", "worker_id": "TT5VFFZYTEG1PNA", "story_id": "45029", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this set were my best reads in the 6th grade . in the future i know they will be a collectors item .", "storylet_id": "225148"}], [{"original_text": "My science collection from the 7th grade. still in excellent condition. ", "album_id": "72157624081009722", "photo_flickr_id": "4616399034", "setting": "last-3-pick-old-and-tell", "worker_id": "TT5VFFZYTEG1PNA", "story_id": "45029", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my science collection from the 7th grade . still in excellent condition .", "storylet_id": "225149"}], [{"original_text": "On goers wait intently as the St. Patricks day parade is about to begin.", "album_id": "72157623646900546", "photo_flickr_id": "4444204136", "setting": "first-2-pick-and-tell", "worker_id": "U6WYZWI5TS2XVM8", "story_id": "45030", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on goers wait intently as the location location day parade is about to begin .", "storylet_id": "225150"}], [{"original_text": "The parade begins as a stilted man in a white costume leads the procession. ", "album_id": "72157623646900546", "photo_flickr_id": "4444214550", "setting": "first-2-pick-and-tell", "worker_id": "U6WYZWI5TS2XVM8", "story_id": "45030", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the parade begins as a stilted man in a white costume leads the procession .", "storylet_id": "225151"}], [{"original_text": "He is followed by a group of drummers dressed in blue, beating on blue and white striped drums.", "album_id": "72157623646900546", "photo_flickr_id": "4444310054", "setting": "first-2-pick-and-tell", "worker_id": "U6WYZWI5TS2XVM8", "story_id": "45030", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he is followed by a group of drummers dressed in blue , beating on blue and white striped drums .", "storylet_id": "225152"}], [{"original_text": "The parade is over, and onlookers scatter.", "album_id": "72157623646900546", "photo_flickr_id": "4443439079", "setting": "first-2-pick-and-tell", "worker_id": "U6WYZWI5TS2XVM8", "story_id": "45030", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the parade is over , and onlookers scatter .", "storylet_id": "225153"}], [{"original_text": "A beer is gripped in the hand of costumed attendee while he travels on his walking journey home.", "album_id": "72157623646900546", "photo_flickr_id": "4444212646", "setting": "first-2-pick-and-tell", "worker_id": "U6WYZWI5TS2XVM8", "story_id": "45030", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a beer is gripped in the hand of costumed attendee while he travels on his walking journey home .", "storylet_id": "225154"}], [{"original_text": "I was so excited to be at the St. Patrick's Day Parade.", "album_id": "72157623646900546", "photo_flickr_id": "4444212646", "setting": "first-2-pick-and-tell", "worker_id": "5CVPZZ0QPNKQH3W", "story_id": "45031", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was so excited to be at the st. [male] 's day parade .", "storylet_id": "225155"}], [{"original_text": "The crowds along the parade route were huge.", "album_id": "72157623646900546", "photo_flickr_id": "4444204136", "setting": "first-2-pick-and-tell", "worker_id": "5CVPZZ0QPNKQH3W", "story_id": "45031", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowds along the parade route were huge .", "storylet_id": "225156"}], [{"original_text": "There were strange and interesting costumes displayed.", "album_id": "72157623646900546", "photo_flickr_id": "4444306390", "setting": "first-2-pick-and-tell", "worker_id": "5CVPZZ0QPNKQH3W", "story_id": "45031", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were strange and interesting costumes displayed .", "storylet_id": "225157"}], [{"original_text": "There were also several marching bands there. ", "album_id": "72157623646900546", "photo_flickr_id": "4444310054", "setting": "first-2-pick-and-tell", "worker_id": "5CVPZZ0QPNKQH3W", "story_id": "45031", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also several marching bands there .", "storylet_id": "225158"}], [{"original_text": "The best part was hanging out with my friends when it was over. ", "album_id": "72157623646900546", "photo_flickr_id": "4444211032", "setting": "first-2-pick-and-tell", "worker_id": "5CVPZZ0QPNKQH3W", "story_id": "45031", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part was hanging out with my friends when it was over .", "storylet_id": "225159"}], [{"original_text": "Many watched the local parade.", "album_id": "72157623646900546", "photo_flickr_id": "4444204136", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45032", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many watched the local parade .", "storylet_id": "225160"}], [{"original_text": "Performers gave them an entertaining afternoon.", "album_id": "72157623646900546", "photo_flickr_id": "4444214550", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45032", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "performers gave them an entertaining afternoon .", "storylet_id": "225161"}], [{"original_text": "The bands provided an musical experiment.", "album_id": "72157623646900546", "photo_flickr_id": "4444310054", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45032", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bands provided an musical experiment .", "storylet_id": "225162"}], [{"original_text": "Audience members wore funny wigs and face paint.", "album_id": "72157623646900546", "photo_flickr_id": "4443439079", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45032", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "audience members wore funny wigs and face paint .", "storylet_id": "225163"}], [{"original_text": "Some were more festive more others.", "album_id": "72157623646900546", "photo_flickr_id": "4444212646", "setting": "last-3-pick-old-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45032", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some were more festive more others .", "storylet_id": "225164"}], [{"original_text": "You could feel the excitement of this years parade.", "album_id": "72157623646900546", "photo_flickr_id": "4444204136", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45033", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "you could feel the excitement of this years parade .", "storylet_id": "225165"}], [{"original_text": "The costumes alone were worth the wait.", "album_id": "72157623646900546", "photo_flickr_id": "4444214550", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45033", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the costumes alone were worth the wait .", "storylet_id": "225166"}], [{"original_text": "The spirit of the participants could be felt.", "album_id": "72157623646900546", "photo_flickr_id": "4444310054", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45033", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the spirit of the participants could be felt .", "storylet_id": "225167"}], [{"original_text": "The spectators were into it all.", "album_id": "72157623646900546", "photo_flickr_id": "4443439079", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45033", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the spectators were into it all .", "storylet_id": "225168"}], [{"original_text": "My favorite was the ordinary people whoe were into the spirit.", "album_id": "72157623646900546", "photo_flickr_id": "4444212646", "setting": "last-3-pick-old-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45033", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite was the ordinary people whoe were into the spirit .", "storylet_id": "225169"}], [{"original_text": "Crowds were gathered for the parade.", "album_id": "72157623646900546", "photo_flickr_id": "4444204136", "setting": "last-3-pick-old-and-tell", "worker_id": "RH5YH3YZW2M70TL", "story_id": "45034", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "crowds were gathered for the parade .", "storylet_id": "225170"}], [{"original_text": "Marching stilts are always fascinating to watch.", "album_id": "72157623646900546", "photo_flickr_id": "4444214550", "setting": "last-3-pick-old-and-tell", "worker_id": "RH5YH3YZW2M70TL", "story_id": "45034", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "marching stilts are always fascinating to watch .", "storylet_id": "225171"}], [{"original_text": "Drums were only the beginning in the musical portions of the parade.", "album_id": "72157623646900546", "photo_flickr_id": "4444310054", "setting": "last-3-pick-old-and-tell", "worker_id": "RH5YH3YZW2M70TL", "story_id": "45034", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "drums were only the beginning in the musical portions of the parade .", "storylet_id": "225172"}], [{"original_text": "On one corner, people laughed and talked about the festivities..", "album_id": "72157623646900546", "photo_flickr_id": "4443439079", "setting": "last-3-pick-old-and-tell", "worker_id": "RH5YH3YZW2M70TL", "story_id": "45034", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "on one corner , people laughed and talked about the festivities..", "storylet_id": "225173"}], [{"original_text": "This man truly got into the spirit - complete with green face makeup.", "album_id": "72157623646900546", "photo_flickr_id": "4444212646", "setting": "last-3-pick-old-and-tell", "worker_id": "RH5YH3YZW2M70TL", "story_id": "45034", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this man truly got into the spirit - complete with green face makeup .", "storylet_id": "225174"}], [{"original_text": "A very unique parade is taking place in town today.", "album_id": "72157624194495907", "photo_flickr_id": "4718223731", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45035", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a very unique parade is taking place in town today .", "storylet_id": "225175"}], [{"original_text": "Lots of creative floats and costumes are included in the parade.", "album_id": "72157624194495907", "photo_flickr_id": "4718228909", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45035", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of creative floats and costumes are included in the parade .", "storylet_id": "225176"}], [{"original_text": "How do people even come up with these outfits?", "album_id": "72157624194495907", "photo_flickr_id": "4718879606", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45035", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "how do people even come up with these outfits ?", "storylet_id": "225177"}], [{"original_text": "For example, this is a flock of peacock chicks and they are all following a giant peacock float.", "album_id": "72157624194495907", "photo_flickr_id": "4718894600", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45035", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "for example , this is a flock of peacock chicks and they are all following a giant peacock float .", "storylet_id": "225178"}], [{"original_text": "Look at this peacock float. Where do these ideas come from? ", "album_id": "72157624194495907", "photo_flickr_id": "4718900926", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45035", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "look at this peacock float . where do these ideas come from ?", "storylet_id": "225179"}], [{"original_text": "The Earth Day Parade was in full swing.", "album_id": "72157624194495907", "photo_flickr_id": "4718874080", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "45036", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the earth day parade was in full swing .", "storylet_id": "225180"}], [{"original_text": "People on roller skates performed a cool routine.", "album_id": "72157624194495907", "photo_flickr_id": "4718879606", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "45036", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people on roller skates performed a cool routine .", "storylet_id": "225181"}], [{"original_text": "Tribal drummers entertained the crowd. ", "album_id": "72157624194495907", "photo_flickr_id": "4718241509", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "45036", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "tribal drummers entertained the crowd .", "storylet_id": "225182"}], [{"original_text": "The local dance school had many troops performing. ", "album_id": "72157624194495907", "photo_flickr_id": "4718894600", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "45036", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the local dance school had many troops performing .", "storylet_id": "225183"}], [{"original_text": "Custom made floats were artistic and cool.", "album_id": "72157624194495907", "photo_flickr_id": "4718900926", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "45036", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "custom made floats were artistic and cool .", "storylet_id": "225184"}], [{"original_text": "We went to the local parade to day and saw all the cool floats.", "album_id": "72157624194495907", "photo_flickr_id": "4718223731", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "45037", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the local parade to day and saw all the cool floats .", "storylet_id": "225185"}], [{"original_text": "This giant globe definitely caught my eye.", "album_id": "72157624194495907", "photo_flickr_id": "4718228909", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "45037", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this giant globe definitely caught my eye .", "storylet_id": "225186"}], [{"original_text": "My uncles was a part of this one on the rollerskates! Dont fall!", "album_id": "72157624194495907", "photo_flickr_id": "4718879606", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "45037", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my uncles was a part of this one on the rollerskates ! dont fall !", "storylet_id": "225187"}], [{"original_text": "These nymphs were adorable.", "album_id": "72157624194495907", "photo_flickr_id": "4718894600", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "45037", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these nymphs were adorable .", "storylet_id": "225188"}], [{"original_text": "These giant peacocks were my favorite of the parade. Loved this one.", "album_id": "72157624194495907", "photo_flickr_id": "4718900926", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "45037", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these giant peacocks were my favorite of the parade . loved this one .", "storylet_id": "225189"}], [{"original_text": "This was the first float of the parade.", "album_id": "72157624194495907", "photo_flickr_id": "4718223731", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "45038", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this was the first float of the parade .", "storylet_id": "225190"}], [{"original_text": "The Earth was simply beautiful.", "album_id": "72157624194495907", "photo_flickr_id": "4718228909", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "45038", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the location was simply beautiful .", "storylet_id": "225191"}], [{"original_text": "Once these skaters passed by, we kind of wanted to join in the fun.", "album_id": "72157624194495907", "photo_flickr_id": "4718879606", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "45038", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once these skaters passed by , we kind of wanted to join in the fun .", "storylet_id": "225192"}], [{"original_text": "These people had beautiful colors,", "album_id": "72157624194495907", "photo_flickr_id": "4718894600", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "45038", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these people had beautiful colors ,", "storylet_id": "225193"}], [{"original_text": "but not as beautiful as this peacock.", "album_id": "72157624194495907", "photo_flickr_id": "4718900926", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "45038", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but not as beautiful as this peacock .", "storylet_id": "225194"}], [{"original_text": "Today a group of friends visited the city to see a parade.", "album_id": "72157624194495907", "photo_flickr_id": "4718223731", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45039", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today a group of friends visited the city to see a parade .", "storylet_id": "225195"}], [{"original_text": "They watched as hot air balloons passed by.", "album_id": "72157624194495907", "photo_flickr_id": "4718228909", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45039", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they watched as hot air balloons passed by .", "storylet_id": "225196"}], [{"original_text": "After that people in roller skates rolled by.", "album_id": "72157624194495907", "photo_flickr_id": "4718879606", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45039", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that people in roller skates rolled by .", "storylet_id": "225197"}], [{"original_text": "Then there was kids in colorful costumes.", "album_id": "72157624194495907", "photo_flickr_id": "4718894600", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45039", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then there was kids in colorful costumes .", "storylet_id": "225198"}], [{"original_text": "Behind the kids was a large peacock float that passed by.", "album_id": "72157624194495907", "photo_flickr_id": "4718900926", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45039", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "behind the kids was a large peacock float that passed by .", "storylet_id": "225199"}], [{"original_text": "They went to a new city for the conference, and sight seeing.", "album_id": "72157624200620737", "photo_flickr_id": "4719271878", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "45040", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they went to a new city for the conference , and sight seeing .", "storylet_id": "225200"}], [{"original_text": "The conference was mostly dull. ", "album_id": "72157624200620737", "photo_flickr_id": "4718632901", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "45040", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the conference was mostly dull .", "storylet_id": "225201"}], [{"original_text": "Then to the tour, along the river and to the cathedral. ", "album_id": "72157624200620737", "photo_flickr_id": "4719425970", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "45040", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then to the tour , along the river and to the cathedral .", "storylet_id": "225202"}], [{"original_text": "Then a boat ride to see the river falls.", "album_id": "72157624200620737", "photo_flickr_id": "4719542178", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "45040", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then a boat ride to see the river falls .", "storylet_id": "225203"}], [{"original_text": "A great day in Canada. ", "album_id": "72157624200620737", "photo_flickr_id": "4719641824", "setting": "first-2-pick-and-tell", "worker_id": "YCVYFFORFW6C8YO", "story_id": "45040", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a great day in location .", "storylet_id": "225204"}], [{"original_text": "We took a river tour while on vacation.", "album_id": "72157624200620737", "photo_flickr_id": "4719565692", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45041", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a river tour while on vacation .", "storylet_id": "225205"}], [{"original_text": "The river passed many beautiful buildings.", "album_id": "72157624200620737", "photo_flickr_id": "4718937243", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45041", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the river passed many beautiful buildings .", "storylet_id": "225206"}], [{"original_text": "We saw this castle on the river tour.", "album_id": "72157624200620737", "photo_flickr_id": "4719472674", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45041", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw this castle on the river tour .", "storylet_id": "225207"}], [{"original_text": "We stopped on the bank for a little while to take pictures.", "album_id": "72157624200620737", "photo_flickr_id": "4719425970", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45041", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped on the bank for a little while to take pictures .", "storylet_id": "225208"}], [{"original_text": "The river tour ended at a big dam.", "album_id": "72157624200620737", "photo_flickr_id": "4719542178", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45041", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the river tour ended at a big dam .", "storylet_id": "225209"}], [{"original_text": "Today, we spent the day on the water.", "album_id": "72157624200620737", "photo_flickr_id": "4719565692", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "45042", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today , we spent the day on the water .", "storylet_id": "225210"}], [{"original_text": "As we sailed by the buildings, we started to get excited.", "album_id": "72157624200620737", "photo_flickr_id": "4718937243", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "45042", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as we sailed by the buildings , we started to get excited .", "storylet_id": "225211"}], [{"original_text": "This castle was beautiful seeing it from the water.", "album_id": "72157624200620737", "photo_flickr_id": "4719472674", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "45042", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this castle was beautiful seeing it from the water .", "storylet_id": "225212"}], [{"original_text": "It was even better up close, though.", "album_id": "72157624200620737", "photo_flickr_id": "4719425970", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "45042", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was even better up close , though .", "storylet_id": "225213"}], [{"original_text": "When we got near the waterfall, we had to start fending off stray droplets.", "album_id": "72157624200620737", "photo_flickr_id": "4719542178", "setting": "last-3-pick-old-and-tell", "worker_id": "VSEF7IVIEWGBLJU", "story_id": "45042", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we got near the waterfall , we had to start fending off stray droplets .", "storylet_id": "225214"}], [{"original_text": "A group of friends visited Canada and was greeted by a large statue.", "album_id": "72157624200620737", "photo_flickr_id": "4719271878", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45043", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of friends visited location and was greeted by a large statue .", "storylet_id": "225215"}], [{"original_text": "Inside they attended a lecture that was given.", "album_id": "72157624200620737", "photo_flickr_id": "4718632901", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45043", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "inside they attended a lecture that was given .", "storylet_id": "225216"}], [{"original_text": "After that, they went outside to see the scenery.", "album_id": "72157624200620737", "photo_flickr_id": "4719425970", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45043", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that , they went outside to see the scenery .", "storylet_id": "225217"}], [{"original_text": "They saw a small water dam that was so relaxing.", "album_id": "72157624200620737", "photo_flickr_id": "4719542178", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45043", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they saw a small water dam that was so relaxing .", "storylet_id": "225218"}], [{"original_text": "It was such a fun day.", "album_id": "72157624200620737", "photo_flickr_id": "4719641824", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45043", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was such a fun day .", "storylet_id": "225219"}], [{"original_text": "Michael decides to take a boat ride to the grand castle and meet up with his friends.", "album_id": "72157624200620737", "photo_flickr_id": "4719565692", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "45044", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] decides to take a boat ride to the grand castle and meet up with his friends .", "storylet_id": "225220"}], [{"original_text": "He enjoys the sky view every time he crosses the ocean.", "album_id": "72157624200620737", "photo_flickr_id": "4718937243", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "45044", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he enjoys the sky view every time he crosses the ocean .", "storylet_id": "225221"}], [{"original_text": "In the distance he can see the big beautiful castle as he approaches it.", "album_id": "72157624200620737", "photo_flickr_id": "4719472674", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "45044", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "in the distance he can see the big beautiful castle as he approaches it .", "storylet_id": "225222"}], [{"original_text": "Finally he arrives to find his friends patiently waiting with drinks on display.", "album_id": "72157624200620737", "photo_flickr_id": "4719425970", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "45044", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally he arrives to find his friends patiently waiting with drinks on display .", "storylet_id": "225223"}], [{"original_text": "His friends pass him a drink and then they begin to enjoy their time together and the beautiful waterfall view.", "album_id": "72157624200620737", "photo_flickr_id": "4719542178", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "45044", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his friends pass him a drink and then they begin to enjoy their time together and the beautiful waterfall view .", "storylet_id": "225224"}], [{"original_text": "The fans were celebrating the Lakers big win.", "album_id": "72157624206659243", "photo_flickr_id": "4724131508", "setting": "first-2-pick-and-tell", "worker_id": "R08BVP5SNLB3Q34", "story_id": "45045", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the fans were celebrating the lakers big win .", "storylet_id": "225225"}], [{"original_text": "A rowdy crowd had formed.", "album_id": "72157624206659243", "photo_flickr_id": "4724129724", "setting": "first-2-pick-and-tell", "worker_id": "R08BVP5SNLB3Q34", "story_id": "45045", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a rowdy crowd had formed .", "storylet_id": "225226"}], [{"original_text": "Some people brought signs.", "album_id": "72157624206659243", "photo_flickr_id": "4724137324", "setting": "first-2-pick-and-tell", "worker_id": "R08BVP5SNLB3Q34", "story_id": "45045", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some people brought signs .", "storylet_id": "225227"}], [{"original_text": "Others dressed in odd, Laker themed outfits.", "album_id": "72157624206659243", "photo_flickr_id": "4723481933", "setting": "first-2-pick-and-tell", "worker_id": "R08BVP5SNLB3Q34", "story_id": "45045", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others dressed in odd , laker themed outfits .", "storylet_id": "225228"}], [{"original_text": "A few brave fans climbed on top of street lights to hang banners. The police quickly moved in to remove them.", "album_id": "72157624206659243", "photo_flickr_id": "4724125510", "setting": "first-2-pick-and-tell", "worker_id": "R08BVP5SNLB3Q34", "story_id": "45045", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a few brave fans climbed on top of street lights to hang banners . the police quickly moved in to remove them .", "storylet_id": "225229"}], [{"original_text": "The championship winning Los Angeles Lakers arrived back in town.", "album_id": "72157624206659243", "photo_flickr_id": "4724131508", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45046", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the championship winning organization organization organization arrived back in town .", "storylet_id": "225230"}], [{"original_text": "Lakers fans are the best.", "album_id": "72157624206659243", "photo_flickr_id": "4723481933", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45046", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lakers fans are the best .", "storylet_id": "225231"}], [{"original_text": "They will not let anything stop them.", "album_id": "72157624206659243", "photo_flickr_id": "4724125510", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45046", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they will not let anything stop them .", "storylet_id": "225232"}], [{"original_text": "Looks like there is no love lost for Shaq.", "album_id": "72157624206659243", "photo_flickr_id": "4724127110", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45046", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "looks like there is no love lost for shaq .", "storylet_id": "225233"}], [{"original_text": "It's Kobe's town now.", "album_id": "72157624206659243", "photo_flickr_id": "4724137324", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45046", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's [male] 's town now .", "storylet_id": "225234"}], [{"original_text": "LA had a parade for the Lakers today.", "album_id": "72157624206659243", "photo_flickr_id": "4724131508", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45047", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "location had a parade for the organization today .", "storylet_id": "225235"}], [{"original_text": "So many people were there.", "album_id": "72157624206659243", "photo_flickr_id": "4724129724", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45047", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so many people were there .", "storylet_id": "225236"}], [{"original_text": "They won their second championship without Shaq.", "album_id": "72157624206659243", "photo_flickr_id": "4724137324", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45047", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they won their second championship without shaq .", "storylet_id": "225237"}], [{"original_text": "Some people were dressed in outrageous outfits.", "album_id": "72157624206659243", "photo_flickr_id": "4723481933", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45047", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people were dressed in outrageous outfits .", "storylet_id": "225238"}], [{"original_text": "Almost everyone was waving a Lakers' flag.", "album_id": "72157624206659243", "photo_flickr_id": "4724125510", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45047", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "almost everyone was waving a organization ' flag .", "storylet_id": "225239"}], [{"original_text": "I went to a Lakers rally. ", "album_id": "72157624206659243", "photo_flickr_id": "4724131508", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45048", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a organization rally .", "storylet_id": "225240"}], [{"original_text": "People got so into it, they dressed up in Laker's colors. ", "album_id": "72157624206659243", "photo_flickr_id": "4723481933", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45048", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people got so into it , they dressed up in laker 's colors .", "storylet_id": "225241"}], [{"original_text": "One man even climbed up a light pole to wave the Laker's flag. ", "album_id": "72157624206659243", "photo_flickr_id": "4724125510", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45048", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one man even climbed up a light pole to wave the laker 's flag .", "storylet_id": "225242"}], [{"original_text": "I couldn't resist buying this shirt. ", "album_id": "72157624206659243", "photo_flickr_id": "4724127110", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45048", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i could n't resist buying this shirt .", "storylet_id": "225243"}], [{"original_text": "In support of the Laker's, I held up these two signs. ", "album_id": "72157624206659243", "photo_flickr_id": "4724137324", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45048", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in support of the laker 's , i held up these two signs .", "storylet_id": "225244"}], [{"original_text": "The Lakers just won the NBA title.", "album_id": "72157624206659243", "photo_flickr_id": "4724131508", "setting": "last-3-pick-old-and-tell", "worker_id": "IX6YV7OVS64DNW8", "story_id": "45049", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the organization just won the organization title .", "storylet_id": "225245"}], [{"original_text": "The players showed up to have fun with the fans.", "album_id": "72157624206659243", "photo_flickr_id": "4724129724", "setting": "last-3-pick-old-and-tell", "worker_id": "IX6YV7OVS64DNW8", "story_id": "45049", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the players showed up to have fun with the fans .", "storylet_id": "225246"}], [{"original_text": "The fans were very elated.", "album_id": "72157624206659243", "photo_flickr_id": "4724137324", "setting": "last-3-pick-old-and-tell", "worker_id": "IX6YV7OVS64DNW8", "story_id": "45049", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fans were very elated .", "storylet_id": "225247"}], [{"original_text": "It had been awhile since they won a title.", "album_id": "72157624206659243", "photo_flickr_id": "4723481933", "setting": "last-3-pick-old-and-tell", "worker_id": "IX6YV7OVS64DNW8", "story_id": "45049", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it had been awhile since they won a title .", "storylet_id": "225248"}], [{"original_text": "The fans went crazy seeing the players.", "album_id": "72157624206659243", "photo_flickr_id": "4724125510", "setting": "last-3-pick-old-and-tell", "worker_id": "IX6YV7OVS64DNW8", "story_id": "45049", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the fans went crazy seeing the players .", "storylet_id": "225249"}], [{"original_text": "The parade yesterday was very long.", "album_id": "72157623805508451", "photo_flickr_id": "4552087996", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45050", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parade yesterday was very long .", "storylet_id": "225250"}], [{"original_text": "It started out with all of the flags being walked through.", "album_id": "72157623805508451", "photo_flickr_id": "4552104872", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45050", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it started out with all of the flags being walked through .", "storylet_id": "225251"}], [{"original_text": "Then the speakers had to deliver all of their speeches.", "album_id": "72157623805508451", "photo_flickr_id": "4552108424", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45050", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the speakers had to deliver all of their speeches .", "storylet_id": "225252"}], [{"original_text": "There was a lot of traffic backed up because of it.", "album_id": "72157623805508451", "photo_flickr_id": "4552079846", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45050", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a lot of traffic backed up because of it .", "storylet_id": "225253"}], [{"original_text": "I was very glad that I was finally able to get through.", "album_id": "72157623805508451", "photo_flickr_id": "4551565562", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45050", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was very glad that i was finally able to get through .", "storylet_id": "225254"}], [{"original_text": "These are the announcers for the local parade.", "album_id": "72157623805508451", "photo_flickr_id": "4551565562", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "45051", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these are the announcers for the local parade .", "storylet_id": "225255"}], [{"original_text": "Everyone is gathered for last minute instructions before the parade begins.", "album_id": "72157623805508451", "photo_flickr_id": "4550920883", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "45051", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone is gathered for last minute instructions before the parade begins .", "storylet_id": "225256"}], [{"original_text": "The marching band is going to lead the parade so everyone lines up behind them.", "album_id": "72157623805508451", "photo_flickr_id": "4552055168", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "45051", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the marching band is going to lead the parade so everyone lines up behind them .", "storylet_id": "225257"}], [{"original_text": "The flag team is next. Everyone quiets down as the marching band starts the parade off.", "album_id": "72157623805508451", "photo_flickr_id": "4552104872", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "45051", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the flag team is next . everyone quiets down as the marching band starts the parade off .", "storylet_id": "225258"}], [{"original_text": "The officials are happy because the parade is going off without a hitch.", "album_id": "72157623805508451", "photo_flickr_id": "4552116786", "setting": "first-2-pick-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "45051", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the officials are happy because the parade is going off without a hitch .", "storylet_id": "225259"}], [{"original_text": "The Girl Guides lead off the parade through the town.", "album_id": "72157623805508451", "photo_flickr_id": "4552087996", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "45052", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girl guides lead off the parade through the town .", "storylet_id": "225260"}], [{"original_text": "All of the girls paraded together with flags.", "album_id": "72157623805508451", "photo_flickr_id": "4552104872", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "45052", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the girls paraded together with flags .", "storylet_id": "225261"}], [{"original_text": "Their leaders walked along with them and made sure everyone kept order.", "album_id": "72157623805508451", "photo_flickr_id": "4552108424", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "45052", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "their leaders walked along with them and made sure everyone kept order .", "storylet_id": "225262"}], [{"original_text": "One leader walked ahead to make sure the route was clear.", "album_id": "72157623805508451", "photo_flickr_id": "4552079846", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "45052", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one leader walked ahead to make sure the route was clear .", "storylet_id": "225263"}], [{"original_text": "At the end, the leaders stood up and announced that the girls had done a great job!", "album_id": "72157623805508451", "photo_flickr_id": "4551565562", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "45052", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end , the leaders stood up and announced that the girls had done a great job !", "storylet_id": "225264"}], [{"original_text": "The veteran's day parade started strong. Al and I watched from the barriers on the north side of the street.", "album_id": "72157623805508451", "photo_flickr_id": "4551565562", "setting": "last-3-pick-old-and-tell", "worker_id": "IGOYP8FDG8YFVL3", "story_id": "45053", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the veteran 's day parade started strong . [male] and i watched from the barriers on the north side of the street .", "storylet_id": "225265"}], [{"original_text": "You could see the crowds gathering with the parade performers getting into motion.", "album_id": "72157623805508451", "photo_flickr_id": "4550920883", "setting": "last-3-pick-old-and-tell", "worker_id": "IGOYP8FDG8YFVL3", "story_id": "45053", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you could see the crowds gathering with the parade performers getting into motion .", "storylet_id": "225266"}], [{"original_text": "Here they start! The veteran's band moved into position, starting down the street.", "album_id": "72157623805508451", "photo_flickr_id": "4552055168", "setting": "last-3-pick-old-and-tell", "worker_id": "IGOYP8FDG8YFVL3", "story_id": "45053", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here they start ! the veteran 's band moved into position , starting down the street .", "storylet_id": "225267"}], [{"original_text": "Alicia's fourth grade class held the flags.", "album_id": "72157623805508451", "photo_flickr_id": "4552104872", "setting": "last-3-pick-old-and-tell", "worker_id": "IGOYP8FDG8YFVL3", "story_id": "45053", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] 's fourth grade class held the flags .", "storylet_id": "225268"}], [{"original_text": "The procession ended at the town hall building. ", "album_id": "72157623805508451", "photo_flickr_id": "4552116786", "setting": "last-3-pick-old-and-tell", "worker_id": "IGOYP8FDG8YFVL3", "story_id": "45053", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the procession ended at the town hall building .", "storylet_id": "225269"}], [{"original_text": "it was nice to see all the kids get involved in the parade.", "album_id": "72157623805508451", "photo_flickr_id": "4552087996", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45054", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was nice to see all the kids get involved in the parade .", "storylet_id": "225270"}], [{"original_text": "the little girl holding the flag looked like she was having a blast. ", "album_id": "72157623805508451", "photo_flickr_id": "4552104872", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45054", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the little girl holding the flag looked like she was having a blast .", "storylet_id": "225271"}], [{"original_text": "the guys who sponsored the parade were happy to see it go off successfully ", "album_id": "72157623805508451", "photo_flickr_id": "4552108424", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45054", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the guys who sponsored the parade were happy to see it go off successfully", "storylet_id": "225272"}], [{"original_text": "streets were closed during the parade", "album_id": "72157623805508451", "photo_flickr_id": "4552079846", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45054", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "streets were closed during the parade", "storylet_id": "225273"}], [{"original_text": "speeches were made during the parade and during the finale everyone was thanked ", "album_id": "72157623805508451", "photo_flickr_id": "4551565562", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45054", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "speeches were made during the parade and during the finale everyone was thanked", "storylet_id": "225274"}], [{"original_text": "The celebrate firefighters parade opens with marchers playing horns.", "album_id": "72157623926298846", "photo_flickr_id": "4553102276", "setting": "first-2-pick-and-tell", "worker_id": "U6WYZWI5TS2XVM8", "story_id": "45055", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the celebrate firefighters parade opens with marchers playing horns .", "storylet_id": "225275"}], [{"original_text": "The procession of fire trucks follow, sounding their horns loudly.", "album_id": "72157623926298846", "photo_flickr_id": "4552480387", "setting": "first-2-pick-and-tell", "worker_id": "U6WYZWI5TS2XVM8", "story_id": "45055", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the procession of fire trucks follow , sounding their horns loudly .", "storylet_id": "225276"}], [{"original_text": "A variety of fire trucks follow the parade route, including one with a large ladder on top.", "album_id": "72157623926298846", "photo_flickr_id": "4549754591", "setting": "first-2-pick-and-tell", "worker_id": "U6WYZWI5TS2XVM8", "story_id": "45055", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a variety of fire trucks follow the parade route , including one with a large ladder on top .", "storylet_id": "225277"}], [{"original_text": "An EMS fire truck is shortly behind.", "album_id": "72157623926298846", "photo_flickr_id": "4553124036", "setting": "first-2-pick-and-tell", "worker_id": "U6WYZWI5TS2XVM8", "story_id": "45055", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "an organization fire truck is shortly behind .", "storylet_id": "225278"}], [{"original_text": "The parade ends with a throw back fire truck from the old days with flags held high.", "album_id": "72157623926298846", "photo_flickr_id": "4553125786", "setting": "first-2-pick-and-tell", "worker_id": "U6WYZWI5TS2XVM8", "story_id": "45055", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the parade ends with a throw back fire truck from the old days with flags held high .", "storylet_id": "225279"}], [{"original_text": "Our local town had a community day parade. The high school band played in it.", "album_id": "72157623926298846", "photo_flickr_id": "4553102276", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "45056", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our local town had a community day parade . the high school band played in it .", "storylet_id": "225280"}], [{"original_text": "Neighbors with fancy cars drove it it, too.", "album_id": "72157623926298846", "photo_flickr_id": "4552472311", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "45056", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "neighbors with fancy cars drove it it , too .", "storylet_id": "225281"}], [{"original_text": "The fire department showed of it's newest truck.", "album_id": "72157623926298846", "photo_flickr_id": "4549754591", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "45056", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fire department showed of it 's newest truck .", "storylet_id": "225282"}], [{"original_text": "They also showed off their oldest truck.", "album_id": "72157623926298846", "photo_flickr_id": "4553125786", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "45056", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also showed off their oldest truck .", "storylet_id": "225283"}], [{"original_text": "The best part was when the firemen threw candy to us!", "album_id": "72157623926298846", "photo_flickr_id": "4553120576", "setting": "first-2-pick-and-tell", "worker_id": "0HEVMK1S4QZ2C7K", "story_id": "45056", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best part was when the firemen threw candy to us !", "storylet_id": "225284"}], [{"original_text": "Tuba players mark the start of the parade of fire engines and trucks.", "album_id": "72157623926298846", "photo_flickr_id": "4553102276", "setting": "last-3-pick-old-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "45057", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "tuba players mark the start of the parade of fire engines and trucks .", "storylet_id": "225285"}], [{"original_text": "Modern fire engines contain all the bells and whistles. ", "album_id": "72157623926298846", "photo_flickr_id": "4552480387", "setting": "last-3-pick-old-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "45057", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "modern fire engines contain all the bells and whistles .", "storylet_id": "225286"}], [{"original_text": "This fire engine has a large ladder that is very impressive.", "album_id": "72157623926298846", "photo_flickr_id": "4549754591", "setting": "last-3-pick-old-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "45057", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this fire engine has a large ladder that is very impressive .", "storylet_id": "225287"}], [{"original_text": "Other kinds of rescue vehicles are included in the mix. ", "album_id": "72157623926298846", "photo_flickr_id": "4553124036", "setting": "last-3-pick-old-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "45057", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other kinds of rescue vehicles are included in the mix .", "storylet_id": "225288"}], [{"original_text": "This old fire engine has been out of service for awhile, but is still up to the job.", "album_id": "72157623926298846", "photo_flickr_id": "4553125786", "setting": "last-3-pick-old-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "45057", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this old fire engine has been out of service for awhile , but is still up to the job .", "storylet_id": "225289"}], [{"original_text": "The tuba players lead the march for the big parade, ", "album_id": "72157623926298846", "photo_flickr_id": "4553102276", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "45058", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the tuba players lead the march for the big parade ,", "storylet_id": "225290"}], [{"original_text": "The Grand Marshal has the honor of riding in this beautiful sports car. ", "album_id": "72157623926298846", "photo_flickr_id": "4552472311", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "45058", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the grand marshal has the honor of riding in this beautiful sports car .", "storylet_id": "225291"}], [{"original_text": "The fire engines show off their lights and sirens for the parade.", "album_id": "72157623926298846", "photo_flickr_id": "4549754591", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "45058", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fire engines show off their lights and sirens for the parade .", "storylet_id": "225292"}], [{"original_text": "Even the antique fire engine proudly participates in the activities for the day.", "album_id": "72157623926298846", "photo_flickr_id": "4553125786", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "45058", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the antique fire engine proudly participates in the activities for the day .", "storylet_id": "225293"}], [{"original_text": "The firemen are ready to pass out candy for the onlookers of today's parade.", "album_id": "72157623926298846", "photo_flickr_id": "4553120576", "setting": "last-3-pick-old-and-tell", "worker_id": "E7I4I0CZ0BJ2211", "story_id": "45058", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the firemen are ready to pass out candy for the onlookers of today 's parade .", "storylet_id": "225294"}], [{"original_text": "The parade was a celebration of firefighters and included musicians playing tubas.", "album_id": "72157623926298846", "photo_flickr_id": "4553102276", "setting": "last-3-pick-old-and-tell", "worker_id": "LQ74NSLOAWABUE9", "story_id": "45059", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parade was a celebration of firefighters and included musicians playing tubas .", "storylet_id": "225295"}], [{"original_text": "A few other cars were featured in the parade as well.", "album_id": "72157623926298846", "photo_flickr_id": "4552472311", "setting": "last-3-pick-old-and-tell", "worker_id": "LQ74NSLOAWABUE9", "story_id": "45059", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a few other cars were featured in the parade as well .", "storylet_id": "225296"}], [{"original_text": "Some fire tucks were modern.", "album_id": "72157623926298846", "photo_flickr_id": "4549754591", "setting": "last-3-pick-old-and-tell", "worker_id": "LQ74NSLOAWABUE9", "story_id": "45059", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some fire tucks were modern .", "storylet_id": "225297"}], [{"original_text": "A few fire trucks were historical.", "album_id": "72157623926298846", "photo_flickr_id": "4553125786", "setting": "last-3-pick-old-and-tell", "worker_id": "LQ74NSLOAWABUE9", "story_id": "45059", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a few fire trucks were historical .", "storylet_id": "225298"}], [{"original_text": "It was a nice day and everyone enjoyed themselves.", "album_id": "72157623926298846", "photo_flickr_id": "4553120576", "setting": "last-3-pick-old-and-tell", "worker_id": "LQ74NSLOAWABUE9", "story_id": "45059", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a nice day and everyone enjoyed themselves .", "storylet_id": "225299"}], [{"original_text": "A protest is taking place today in the center of the city.", "album_id": "72157624048603143", "photo_flickr_id": "4655549623", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45060", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a protest is taking place today in the center of the city .", "storylet_id": "225300"}], [{"original_text": "Hundreds of protesters fill the streets with signs and banners.", "album_id": "72157624048603143", "photo_flickr_id": "4655550667", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45060", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "hundreds of protesters fill the streets with signs and banners .", "storylet_id": "225301"}], [{"original_text": "Police standby to make sure the protest goes through smoothly without violence.", "album_id": "72157624048603143", "photo_flickr_id": "4655553519", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45060", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "police standby to make sure the protest goes through smoothly without violence .", "storylet_id": "225302"}], [{"original_text": "The protesters walk through the town peacefully without causing damage.", "album_id": "72157624048603143", "photo_flickr_id": "4656182226", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45060", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the protesters walk through the town peacefully without causing damage .", "storylet_id": "225303"}], [{"original_text": "At the end of the day, the protest completes with everyone staying safe.", "album_id": "72157624048603143", "photo_flickr_id": "4655571679", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45060", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day , the protest completes with everyone staying safe .", "storylet_id": "225304"}], [{"original_text": "There were a lot of police out that day. ", "album_id": "72157624048603143", "photo_flickr_id": "4655559883", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45061", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were a lot of police out that day .", "storylet_id": "225305"}], [{"original_text": "Many protesters lined the streets. ", "album_id": "72157624048603143", "photo_flickr_id": "4656182226", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45061", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many protesters lined the streets .", "storylet_id": "225306"}], [{"original_text": "More and more started to come. ", "album_id": "72157624048603143", "photo_flickr_id": "4655562937", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45061", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "more and more started to come .", "storylet_id": "225307"}], [{"original_text": "Some wrote some crazy things on their cars. ", "album_id": "72157624048603143", "photo_flickr_id": "4655564087", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45061", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some wrote some crazy things on their cars .", "storylet_id": "225308"}], [{"original_text": "Some of the writings were scary. ", "album_id": "72157624048603143", "photo_flickr_id": "4656185922", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45061", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of the writings were scary .", "storylet_id": "225309"}], [{"original_text": "I went to an undocumented alien rally.", "album_id": "72157624048603143", "photo_flickr_id": "4655549623", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45062", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to an undocumented alien rally .", "storylet_id": "225310"}], [{"original_text": "The peacefully gathered and demanded citizenship.", "album_id": "72157624048603143", "photo_flickr_id": "4655550667", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45062", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the peacefully gathered and demanded citizenship .", "storylet_id": "225311"}], [{"original_text": "The police were there, but they did not bother anyone.", "album_id": "72157624048603143", "photo_flickr_id": "4655553519", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45062", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the police were there , but they did not bother anyone .", "storylet_id": "225312"}], [{"original_text": "A mob of hate filled conservatives showed up for a counter protest.", "album_id": "72157624048603143", "photo_flickr_id": "4656182226", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45062", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a mob of hate filled conservatives showed up for a counter protest .", "storylet_id": "225313"}], [{"original_text": "When we started to push against the counter protest crowd, the police left.", "album_id": "72157624048603143", "photo_flickr_id": "4655571679", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45062", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we started to push against the counter protest crowd , the police left .", "storylet_id": "225314"}], [{"original_text": "People gathered to have a peaceful protest.", "album_id": "72157624048603143", "photo_flickr_id": "4655549623", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45063", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people gathered to have a peaceful protest .", "storylet_id": "225315"}], [{"original_text": "Many people was passing by carrying signs.", "album_id": "72157624048603143", "photo_flickr_id": "4655550667", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45063", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people was passing by carrying signs .", "storylet_id": "225316"}], [{"original_text": "The police were there to watch over the crowd.", "album_id": "72157624048603143", "photo_flickr_id": "4655553519", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45063", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the police were there to watch over the crowd .", "storylet_id": "225317"}], [{"original_text": "The people walked all over the city. ", "album_id": "72157624048603143", "photo_flickr_id": "4656182226", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45063", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the people walked all over the city .", "storylet_id": "225318"}], [{"original_text": "The police closed off roads to let the people walk.", "album_id": "72157624048603143", "photo_flickr_id": "4655571679", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45063", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the police closed off roads to let the people walk .", "storylet_id": "225319"}], [{"original_text": "The police made their presence known at the immigration protest.", "album_id": "72157624048603143", "photo_flickr_id": "4655559883", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45064", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the police made their presence known at the immigration protest .", "storylet_id": "225320"}], [{"original_text": "Participants marching in the awareness parade.", "album_id": "72157624048603143", "photo_flickr_id": "4656182226", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45064", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "participants marching in the awareness parade .", "storylet_id": "225321"}], [{"original_text": "The police stopped traffic so the parade could go past.", "album_id": "72157624048603143", "photo_flickr_id": "4655562937", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45064", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the police stopped traffic so the parade could go past .", "storylet_id": "225322"}], [{"original_text": "The car was driving along as a float in the parade.", "album_id": "72157624048603143", "photo_flickr_id": "4655564087", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45064", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the car was driving along as a float in the parade .", "storylet_id": "225323"}], [{"original_text": "A side view of the car that was participating in the parade.", "album_id": "72157624048603143", "photo_flickr_id": "4656185922", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45064", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a side view of the car that was participating in the parade .", "storylet_id": "225324"}], [{"original_text": "A small town holds a parade to celebrate the anniversary of it's founding.", "album_id": "72157624049959648", "photo_flickr_id": "4655732902", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45065", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a small town holds a parade to celebrate the anniversary of it 's founding .", "storylet_id": "225325"}], [{"original_text": "Even this little goat is happy to be a part of the parade.", "album_id": "72157624049959648", "photo_flickr_id": "4657930866", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45065", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even this little goat is happy to be a part of the parade .", "storylet_id": "225326"}], [{"original_text": "Some Chinese dragons walk through town during the parade.", "album_id": "72157624049959648", "photo_flickr_id": "4602160841", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45065", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some chinese dragons walk through town during the parade .", "storylet_id": "225327"}], [{"original_text": "You may even see old military vehicles drive through!", "album_id": "72157624049959648", "photo_flickr_id": "4657342855", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45065", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you may even see old military vehicles drive through !", "storylet_id": "225328"}], [{"original_text": "Happy 150th birthday to this town!", "album_id": "72157624049959648", "photo_flickr_id": "4657357185", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45065", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "happy 150th birthday to this town !", "storylet_id": "225329"}], [{"original_text": "There was a great turnout for the memorial day parade.", "album_id": "72157624049959648", "photo_flickr_id": "4655732902", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "45066", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a great turnout for the memorial day parade .", "storylet_id": "225330"}], [{"original_text": "Many people even brought their dogs. ", "album_id": "72157624049959648", "photo_flickr_id": "4657930866", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "45066", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many people even brought their dogs .", "storylet_id": "225331"}], [{"original_text": "The military were the first to parade through town.`", "album_id": "72157624049959648", "photo_flickr_id": "4657953624", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "45066", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the military were the first to parade through town.`", "storylet_id": "225332"}], [{"original_text": "Lot's of classic cars could be seen.", "album_id": "72157624049959648", "photo_flickr_id": "4657969044", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "45066", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "lot 's of classic cars could be seen .", "storylet_id": "225333"}], [{"original_text": "The dancers were really fun to watch.", "album_id": "72157624049959648", "photo_flickr_id": "4657991980", "setting": "first-2-pick-and-tell", "worker_id": "MIXJE02C9O639II", "story_id": "45066", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dancers were really fun to watch .", "storylet_id": "225334"}], [{"original_text": "I stopped in a town that was celebrating their 150th birthday.", "album_id": "72157624049959648", "photo_flickr_id": "4655732902", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45067", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i stopped in a town that was celebrating their 150th birthday .", "storylet_id": "225335"}], [{"original_text": "There was a parde and people brought their livestock.", "album_id": "72157624049959648", "photo_flickr_id": "4657930866", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45067", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a parde and people brought their livestock .", "storylet_id": "225336"}], [{"original_text": "These cats were so funny and they rubbed their costumes against people in the crowd just like real cats.", "album_id": "72157624049959648", "photo_flickr_id": "4602160841", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45067", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these cats were so funny and they rubbed their costumes against people in the crowd just like real cats .", "storylet_id": "225337"}], [{"original_text": "The personnel carrier was a survivor from the Iraq war.", "album_id": "72157624049959648", "photo_flickr_id": "4657342855", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45067", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the personnel carrier was a survivor from the location war .", "storylet_id": "225338"}], [{"original_text": "The balloon sign was my favorite because a guy was giving away small bags of cotton candy near there. ", "album_id": "72157624049959648", "photo_flickr_id": "4657357185", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45067", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the balloon sign was my favorite because a guy was giving away small bags of cotton candy near there .", "storylet_id": "225339"}], [{"original_text": "Many people showed up for the parade downtown.", "album_id": "72157624049959648", "photo_flickr_id": "4655732902", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45068", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people showed up for the parade downtown .", "storylet_id": "225340"}], [{"original_text": "In the parade people were walking their goats and farm animals.", "album_id": "72157624049959648", "photo_flickr_id": "4657930866", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45068", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in the parade people were walking their goats and farm animals .", "storylet_id": "225341"}], [{"original_text": "They had Chinese dragons that followed the trucks.", "album_id": "72157624049959648", "photo_flickr_id": "4602160841", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45068", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had chinese dragons that followed the trucks .", "storylet_id": "225342"}], [{"original_text": "After that they had a military truck that followed by. ", "album_id": "72157624049959648", "photo_flickr_id": "4657342855", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45068", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that they had a military truck that followed by .", "storylet_id": "225343"}], [{"original_text": "They were celebrating the 150th birthday of Ipswitch at the end of the parade.", "album_id": "72157624049959648", "photo_flickr_id": "4657357185", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45068", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were celebrating the 150th birthday of ipswitch at the end of the parade .", "storylet_id": "225344"}], [{"original_text": "The town's 150th birthday celebration.", "album_id": "72157624049959648", "photo_flickr_id": "4655732902", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45069", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the town 's 150th birthday celebration .", "storylet_id": "225345"}], [{"original_text": "Even the dogs were helping to celebrate.", "album_id": "72157624049959648", "photo_flickr_id": "4657930866", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45069", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "even the dogs were helping to celebrate .", "storylet_id": "225346"}], [{"original_text": "Lots of different ethnicity's were represented. ", "album_id": "72157624049959648", "photo_flickr_id": "4602160841", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45069", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "lots of different ethnicity 's were represented .", "storylet_id": "225347"}], [{"original_text": "The town sheriff showing off his new toy.", "album_id": "72157624049959648", "photo_flickr_id": "4657342855", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45069", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the town sheriff showing off his new toy .", "storylet_id": "225348"}], [{"original_text": "Balloons to mark the 150th birthday celebration of the town.", "album_id": "72157624049959648", "photo_flickr_id": "4657357185", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45069", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "balloons to mark the 150th birthday celebration of the town .", "storylet_id": "225349"}], [{"original_text": "A military parade proceeds through the town today.", "album_id": "72157624051027337", "photo_flickr_id": "4657329104", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45070", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a military parade proceeds through the town today .", "storylet_id": "225350"}], [{"original_text": "Uniformed members of our armed services march through proudly.", "album_id": "72157624051027337", "photo_flickr_id": "4656721319", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45070", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "uniformed members of our armed services march through proudly .", "storylet_id": "225351"}], [{"original_text": "Some re-enactors also participate such as these Revolutionary War soldiers.", "album_id": "72157624051027337", "photo_flickr_id": "4657333300", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45070", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some re-enactors also participate such as these revolutionary war soldiers .", "storylet_id": "225352"}], [{"original_text": "You will also see Civil War re-enactors proudly displaying their uniforms.", "album_id": "72157624051027337", "photo_flickr_id": "4657340106", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45070", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you will also see civil war re-enactors proudly displaying their uniforms .", "storylet_id": "225353"}], [{"original_text": "Military parades are always full of pomp and circumstance.", "album_id": "72157624051027337", "photo_flickr_id": "4657337520", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45070", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "military parades are always full of pomp and circumstance .", "storylet_id": "225354"}], [{"original_text": "I went to a parade last weekend.", "album_id": "72157624051027337", "photo_flickr_id": "4656720639", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45071", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a parade last weekend .", "storylet_id": "225355"}], [{"original_text": "The parade had a colonial band.", "album_id": "72157624051027337", "photo_flickr_id": "4656699265", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45071", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the parade had a colonial band .", "storylet_id": "225356"}], [{"original_text": "The band had many flute players.", "album_id": "72157624051027337", "photo_flickr_id": "4657333300", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45071", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band had many flute players .", "storylet_id": "225357"}], [{"original_text": "There was also a high school marching band.", "album_id": "72157624051027337", "photo_flickr_id": "4656704579", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45071", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also a high school marching band .", "storylet_id": "225358"}], [{"original_text": "After the parade was over, people followed in behind it.", "album_id": "72157624051027337", "photo_flickr_id": "4656710337", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45071", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the parade was over , people followed in behind it .", "storylet_id": "225359"}], [{"original_text": "I went to a founders day parade.", "album_id": "72157624051027337", "photo_flickr_id": "4657329104", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45072", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a founders day parade .", "storylet_id": "225360"}], [{"original_text": "There were a lot of Veterans parading.", "album_id": "72157624051027337", "photo_flickr_id": "4656721319", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45072", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of veterans parading .", "storylet_id": "225361"}], [{"original_text": "There were some people who reenact historic battles in the parade.", "album_id": "72157624051027337", "photo_flickr_id": "4657333300", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45072", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were some people who reenact historic battles in the parade .", "storylet_id": "225362"}], [{"original_text": "These men pretend to be Civil War soldiers.", "album_id": "72157624051027337", "photo_flickr_id": "4657340106", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45072", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these men pretend to be civil war soldiers .", "storylet_id": "225363"}], [{"original_text": "The marching band was enthusiastic and loud, but not very good.", "album_id": "72157624051027337", "photo_flickr_id": "4657337520", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45072", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the marching band was enthusiastic and loud , but not very good .", "storylet_id": "225364"}], [{"original_text": "We visited a parade downtown today.", "album_id": "72157624051027337", "photo_flickr_id": "4657329104", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45073", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited a parade downtown today .", "storylet_id": "225365"}], [{"original_text": "There were police officers leading the parade.", "album_id": "72157624051027337", "photo_flickr_id": "4656721319", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45073", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were police officers leading the parade .", "storylet_id": "225366"}], [{"original_text": "Behind them there were people dressed like soldiers from the 1700s.", "album_id": "72157624051027337", "photo_flickr_id": "4657333300", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45073", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "behind them there were people dressed like soldiers from the 1700s .", "storylet_id": "225367"}], [{"original_text": "After that there were people dressed like soldiers from the civil war.", "album_id": "72157624051027337", "photo_flickr_id": "4657340106", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45073", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that there were people dressed like soldiers from the civil war .", "storylet_id": "225368"}], [{"original_text": "The parade ended with flag carriers waving flags.", "album_id": "72157624051027337", "photo_flickr_id": "4657337520", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45073", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the parade ended with flag carriers waving flags .", "storylet_id": "225369"}], [{"original_text": "The drum Major leading the military band.", "album_id": "72157624051027337", "photo_flickr_id": "4656720639", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45074", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the drum [male] leading the military band .", "storylet_id": "225370"}], [{"original_text": "The colonial fife and drum corps.", "album_id": "72157624051027337", "photo_flickr_id": "4656699265", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45074", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the colonial fife and drum corps .", "storylet_id": "225371"}], [{"original_text": "The fife players did a great job.", "album_id": "72157624051027337", "photo_flickr_id": "4657333300", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45074", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the fife players did a great job .", "storylet_id": "225372"}], [{"original_text": "This drum was too heavy to carry, so it had wheels.", "album_id": "72157624051027337", "photo_flickr_id": "4656704579", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45074", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this drum was too heavy to carry , so it had wheels .", "storylet_id": "225373"}], [{"original_text": "Some veterans protesting at the end of the parade.", "album_id": "72157624051027337", "photo_flickr_id": "4656710337", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45074", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some veterans protesting at the end of the parade .", "storylet_id": "225374"}], [{"original_text": "Here we are on the 4th of July.", "album_id": "72157624174262988", "photo_flickr_id": "4656710282", "setting": "first-2-pick-and-tell", "worker_id": "ZARSPH5F41MMG27", "story_id": "45075", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here we are on the 4th of july .", "storylet_id": "225375"}], [{"original_text": "The citizens decided to put on a nice parade for everyone to see.", "album_id": "72157624174262988", "photo_flickr_id": "4656091789", "setting": "first-2-pick-and-tell", "worker_id": "ZARSPH5F41MMG27", "story_id": "45075", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the citizens decided to put on a nice parade for everyone to see .", "storylet_id": "225376"}], [{"original_text": "there was a big truck here but I don't remember what it did.", "album_id": "72157624174262988", "photo_flickr_id": "4656758760", "setting": "first-2-pick-and-tell", "worker_id": "ZARSPH5F41MMG27", "story_id": "45075", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a big truck here but i do n't remember what it did .", "storylet_id": "225377"}], [{"original_text": "Some school kids decided to put a band together and perform during the parade.", "album_id": "72157624174262988", "photo_flickr_id": "4656136197", "setting": "first-2-pick-and-tell", "worker_id": "ZARSPH5F41MMG27", "story_id": "45075", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some school kids decided to put a band together and perform during the parade .", "storylet_id": "225378"}], [{"original_text": "They were very good.", "album_id": "72157624174262988", "photo_flickr_id": "4656753902", "setting": "first-2-pick-and-tell", "worker_id": "ZARSPH5F41MMG27", "story_id": "45075", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were very good .", "storylet_id": "225379"}], [{"original_text": "The people waited expectantly for the parade to begin. Finally the first group was seen down the street.", "album_id": "72157624174262988", "photo_flickr_id": "4656106521", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "45076", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the people waited expectantly for the parade to begin . finally the first group was seen down the street .", "storylet_id": "225380"}], [{"original_text": "There was a stagecoach with yellow wheels and pulled by 4 horses", "album_id": "72157624174262988", "photo_flickr_id": "4656111299", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "45076", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a stagecoach with yellow wheels and pulled by 4 horses", "storylet_id": "225381"}], [{"original_text": "The High School Marching Band came next playing Louie Louie.", "album_id": "72157624174262988", "photo_flickr_id": "4656127227", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "45076", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the high school marching band came next playing [male] [male] .", "storylet_id": "225382"}], [{"original_text": "Next was a huge black truck. ", "album_id": "72157624174262988", "photo_flickr_id": "4656758760", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "45076", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next was a huge black truck .", "storylet_id": "225383"}], [{"original_text": "Last was a student steel drum band. ", "album_id": "72157624174262988", "photo_flickr_id": "4656753902", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "45076", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "last was a student steel drum band .", "storylet_id": "225384"}], [{"original_text": "The event was about to begin.", "album_id": "72157624174262988", "photo_flickr_id": "4656106521", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "45077", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the event was about to begin .", "storylet_id": "225385"}], [{"original_text": "A horse-drawn carriage came by first.", "album_id": "72157624174262988", "photo_flickr_id": "4656111299", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "45077", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a horse-drawn carriage came by first .", "storylet_id": "225386"}], [{"original_text": "Then the band appeared.", "album_id": "72157624174262988", "photo_flickr_id": "4656127227", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "45077", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the band appeared .", "storylet_id": "225387"}], [{"original_text": "There was a truck that drove by.", "album_id": "72157624174262988", "photo_flickr_id": "4656758760", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "45077", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a truck that drove by .", "storylet_id": "225388"}], [{"original_text": "The band played on.", "album_id": "72157624174262988", "photo_flickr_id": "4656753902", "setting": "last-3-pick-old-and-tell", "worker_id": "2BU120GSRCOZQ0T", "story_id": "45077", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the band played on .", "storylet_id": "225389"}], [{"original_text": "My town celebrates Earth Day every First of May.", "album_id": "72157624174262988", "photo_flickr_id": "4656710282", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45078", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my town celebrates earth day every first of [female] .", "storylet_id": "225390"}], [{"original_text": "The First of May used to be called May Day and celebrated the Spring Time and the arrival of Summer.", "album_id": "72157624174262988", "photo_flickr_id": "4656091789", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45078", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first of [female] used to be called [female] day and celebrated the spring time and the arrival of [female] .", "storylet_id": "225391"}], [{"original_text": "Our town just bought this truck for carrying recyclables to the processing center.", "album_id": "72157624174262988", "photo_flickr_id": "4656758760", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45078", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our town just bought this truck for carrying recyclables to the processing center .", "storylet_id": "225392"}], [{"original_text": "The young people really enjoyed the songs about saving the Earth and recycling.", "album_id": "72157624174262988", "photo_flickr_id": "4656136197", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45078", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the young people really enjoyed the songs about saving the location and recycling .", "storylet_id": "225393"}], [{"original_text": "Most of the songs did not rhyme, but everyone was very enthusiastic.", "album_id": "72157624174262988", "photo_flickr_id": "4656753902", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45078", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "most of the songs did not rhyme , but everyone was very enthusiastic .", "storylet_id": "225394"}], [{"original_text": "A lot of people showed up for the parade.", "album_id": "72157624174262988", "photo_flickr_id": "4656106521", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45079", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a lot of people showed up for the parade .", "storylet_id": "225395"}], [{"original_text": "It started with a horse drawn carriage.", "album_id": "72157624174262988", "photo_flickr_id": "4656111299", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45079", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it started with a horse drawn carriage .", "storylet_id": "225396"}], [{"original_text": "Behind them there was a marching band playing their instruments.", "album_id": "72157624174262988", "photo_flickr_id": "4656127227", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45079", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "behind them there was a marching band playing their instruments .", "storylet_id": "225397"}], [{"original_text": "After that there was a giant dump truck that followed.", "album_id": "72157624174262988", "photo_flickr_id": "4656758760", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45079", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after that there was a giant dump truck that followed .", "storylet_id": "225398"}], [{"original_text": "Towards the end there was a truck with people playing drums in the back.", "album_id": "72157624174262988", "photo_flickr_id": "4656753902", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45079", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "towards the end there was a truck with people playing drums in the back .", "storylet_id": "225399"}], [{"original_text": "A parade to celebrate Veteran's Day takes place today.", "album_id": "72157624176200742", "photo_flickr_id": "4657301402", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45080", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a parade to celebrate veteran 's day takes place today .", "storylet_id": "225400"}], [{"original_text": "Parachutists drop right down onto Main Street during the parade.", "album_id": "72157624176200742", "photo_flickr_id": "4656679847", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45080", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "parachutists drop right down onto main street during the parade .", "storylet_id": "225401"}], [{"original_text": "Former veterans of the Armed Services move through the street amidst cheers from the crowd.", "album_id": "72157624176200742", "photo_flickr_id": "4656680363", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45080", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "former veterans of the organization organization move through the street amidst cheers from the crowd .", "storylet_id": "225402"}], [{"original_text": "Young boy scouts participate to honor their veterans.", "album_id": "72157624176200742", "photo_flickr_id": "4656681059", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45080", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "young boy scouts participate to honor their veterans .", "storylet_id": "225403"}], [{"original_text": "Everyone is thankful for their sacrifice.", "album_id": "72157624176200742", "photo_flickr_id": "4656681331", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45080", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone is thankful for their sacrifice .", "storylet_id": "225404"}], [{"original_text": "My friends and I went to a parade last week.", "album_id": "72157624176200742", "photo_flickr_id": "4656679711", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45081", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i went to a parade last week .", "storylet_id": "225405"}], [{"original_text": " It was for the fourth of July.", "album_id": "72157624176200742", "photo_flickr_id": "4657301244", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45081", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was for the fourth of july .", "storylet_id": "225406"}], [{"original_text": "We saw an airplane fly overhead.", "album_id": "72157624176200742", "photo_flickr_id": "4657301302", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45081", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw an airplane fly overhead .", "storylet_id": "225407"}], [{"original_text": "Out of the airplane jumped skydivers.", "album_id": "72157624176200742", "photo_flickr_id": "4656679847", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45081", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "out of the airplane jumped skydivers .", "storylet_id": "225408"}], [{"original_text": "My little brother's Boy Scout troop was in the parade.", "album_id": "72157624176200742", "photo_flickr_id": "4656681059", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45081", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my little brother 's boy scout troop was in the parade .", "storylet_id": "225409"}], [{"original_text": "I went to a Veteran's Day parade with my grand children.", "album_id": "72157624176200742", "photo_flickr_id": "4657301402", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45082", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a veteran 's day parade with my grand children .", "storylet_id": "225410"}], [{"original_text": "Paratroopers jumped from a plane and landed right in the street.", "album_id": "72157624176200742", "photo_flickr_id": "4656679847", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45082", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "paratroopers jumped from a plane and landed right in the street .", "storylet_id": "225411"}], [{"original_text": "This Marine was highly decorated.", "album_id": "72157624176200742", "photo_flickr_id": "4656680363", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45082", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this marine was highly decorated .", "storylet_id": "225412"}], [{"original_text": "That is my grandson looking into the camera.", "album_id": "72157624176200742", "photo_flickr_id": "4656681059", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45082", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that is my grandson looking into the camera .", "storylet_id": "225413"}], [{"original_text": "My granddaughter is holding a \"Thank You!\" sign for the veterans.", "album_id": "72157624176200742", "photo_flickr_id": "4656681331", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45082", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my granddaughter is holding a `` thank you ! '' sign for the veterans .", "storylet_id": "225414"}], [{"original_text": "Many people arrived down town to watch the parade that celebrated the military.", "album_id": "72157624176200742", "photo_flickr_id": "4657301402", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45083", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many people arrived down town to watch the parade that celebrated the military .", "storylet_id": "225415"}], [{"original_text": "In the middle of the parade they had troops parachute in.", "album_id": "72157624176200742", "photo_flickr_id": "4656679847", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45083", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in the middle of the parade they had troops parachute in .", "storylet_id": "225416"}], [{"original_text": "After that there was highly decorated soldiers.", "album_id": "72157624176200742", "photo_flickr_id": "4656680363", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45083", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after that there was highly decorated soldiers .", "storylet_id": "225417"}], [{"original_text": "The boy scouts followed at the end of the parade.", "album_id": "72157624176200742", "photo_flickr_id": "4656681059", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45083", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boy scouts followed at the end of the parade .", "storylet_id": "225418"}], [{"original_text": "Everyone was there to cheer the parade on.", "album_id": "72157624176200742", "photo_flickr_id": "4656681331", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45083", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone was there to cheer the parade on .", "storylet_id": "225419"}], [{"original_text": "When the parade started the crowd cheered, and others looked up in the sky to see what sparked the cheer.", "album_id": "72157624176200742", "photo_flickr_id": "4656679711", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "45084", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when the parade started the crowd cheered , and others looked up in the sky to see what sparked the cheer .", "storylet_id": "225420"}], [{"original_text": "The wind took flight and there it was, the beautiful American Flag.", "album_id": "72157624176200742", "photo_flickr_id": "4657301244", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "45084", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the wind took flight and there it was , the beautiful american flag .", "storylet_id": "225421"}], [{"original_text": "An airplane flew over the flag bringing more attention to it.", "album_id": "72157624176200742", "photo_flickr_id": "4657301302", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "45084", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "an airplane flew over the flag bringing more attention to it .", "storylet_id": "225422"}], [{"original_text": "As the parade carried on there came more beautiful flags on display.", "album_id": "72157624176200742", "photo_flickr_id": "4656679847", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "45084", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the parade carried on there came more beautiful flags on display .", "storylet_id": "225423"}], [{"original_text": "And even more, as little men had their own little beautiful flags to prance around proudly.", "album_id": "72157624176200742", "photo_flickr_id": "4656681059", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "45084", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and even more , as little men had their own little beautiful flags to prance around proudly .", "storylet_id": "225424"}], [{"original_text": "The circus came to town last week.", "album_id": "72157624177089384", "photo_flickr_id": "4657509195", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45085", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the circus came to town last week .", "storylet_id": "225425"}], [{"original_text": "They had a parade.", "album_id": "72157624177089384", "photo_flickr_id": "4658135022", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45085", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a parade .", "storylet_id": "225426"}], [{"original_text": "The parade had many beautiful floats.", "album_id": "72157624177089384", "photo_flickr_id": "4657516235", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45085", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the parade had many beautiful floats .", "storylet_id": "225427"}], [{"original_text": "The floats were decorated with flowers.", "album_id": "72157624177089384", "photo_flickr_id": "4657511843", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45085", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the floats were decorated with flowers .", "storylet_id": "225428"}], [{"original_text": "By the end of the parade many of the flowers fell off the floats.", "album_id": "72157624177089384", "photo_flickr_id": "4658150850", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45085", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by the end of the parade many of the flowers fell off the floats .", "storylet_id": "225429"}], [{"original_text": "The entry was all painted and decorated. ", "album_id": "72157624177089384", "photo_flickr_id": "4657509195", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45086", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the entry was all painted and decorated .", "storylet_id": "225430"}], [{"original_text": "The flowers were amazing. ", "album_id": "72157624177089384", "photo_flickr_id": "4657511843", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45086", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flowers were amazing .", "storylet_id": "225431"}], [{"original_text": "Everything looked like it had been worked on for a long time. ", "album_id": "72157624177089384", "photo_flickr_id": "4658135022", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45086", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everything looked like it had been worked on for a long time .", "storylet_id": "225432"}], [{"original_text": "The floats told such a story.", "album_id": "72157624177089384", "photo_flickr_id": "4657516235", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45086", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the floats told such a story .", "storylet_id": "225433"}], [{"original_text": "The colors were so bright everywhere. ", "album_id": "72157624177089384", "photo_flickr_id": "4657523163", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45086", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the colors were so bright everywhere .", "storylet_id": "225434"}], [{"original_text": "I got lost and ended up walking through a Buddhist festival in Chinatown. ", "album_id": "72157624177089384", "photo_flickr_id": "4657509195", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45087", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got lost and ended up walking through a organization festival in location .", "storylet_id": "225435"}], [{"original_text": "I think this celebrates the birth of Buddha.", "album_id": "72157624177089384", "photo_flickr_id": "4658135022", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45087", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i think this celebrates the birth of buddha .", "storylet_id": "225436"}], [{"original_text": "The wheel symbolizes reincarnation.", "album_id": "72157624177089384", "photo_flickr_id": "4657516235", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45087", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the wheel symbolizes reincarnation .", "storylet_id": "225437"}], [{"original_text": "There were a lot of beautiful flowers there.", "album_id": "72157624177089384", "photo_flickr_id": "4657511843", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45087", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a lot of beautiful flowers there .", "storylet_id": "225438"}], [{"original_text": "Flowers were offered as respect for Buddha.", "album_id": "72157624177089384", "photo_flickr_id": "4658150850", "setting": "last-3-pick-old-and-tell", "worker_id": "N7QT6S5QG9B202S", "story_id": "45087", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "flowers were offered as respect for buddha .", "storylet_id": "225439"}], [{"original_text": "We gathered to watch an Asian parade.", "album_id": "72157624177089384", "photo_flickr_id": "4657509195", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45088", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we gathered to watch an asian parade .", "storylet_id": "225440"}], [{"original_text": "They many colorful floats that passed by.", "album_id": "72157624177089384", "photo_flickr_id": "4658135022", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45088", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they many colorful floats that passed by .", "storylet_id": "225441"}], [{"original_text": "Some of the floats were shaped like boats.", "album_id": "72157624177089384", "photo_flickr_id": "4657516235", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45088", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the floats were shaped like boats .", "storylet_id": "225442"}], [{"original_text": "They even had really pretty flowers on the floats.", "album_id": "72157624177089384", "photo_flickr_id": "4657511843", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45088", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they even had really pretty flowers on the floats .", "storylet_id": "225443"}], [{"original_text": "At the end of the parade we found a flower out in the street.", "album_id": "72157624177089384", "photo_flickr_id": "4658150850", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45088", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the parade we found a flower out in the street .", "storylet_id": "225444"}], [{"original_text": "Banners hanging up for the Thai flower festival.", "album_id": "72157624177089384", "photo_flickr_id": "4657509195", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45089", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "banners hanging up for the thai flower festival .", "storylet_id": "225445"}], [{"original_text": "A creative float in the parade at the festival.", "album_id": "72157624177089384", "photo_flickr_id": "4658135022", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45089", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a creative float in the parade at the festival .", "storylet_id": "225446"}], [{"original_text": "Another well decorated float in the parade.", "album_id": "72157624177089384", "photo_flickr_id": "4657516235", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45089", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "another well decorated float in the parade .", "storylet_id": "225447"}], [{"original_text": "Some really nicely done arrangements for the festival.", "album_id": "72157624177089384", "photo_flickr_id": "4657511843", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45089", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some really nicely done arrangements for the festival .", "storylet_id": "225448"}], [{"original_text": "Someone left a flower offering for their deceased loved ones.", "album_id": "72157624177089384", "photo_flickr_id": "4658150850", "setting": "last-3-pick-old-and-tell", "worker_id": "3ADF33WJIMSMJHV", "story_id": "45089", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "someone left a flower offering for their deceased loved ones .", "storylet_id": "225449"}], [{"original_text": "There was a gay pride parade this weekend.", "album_id": "417126", "photo_flickr_id": "17570008", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "45090", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a gay pride parade this weekend .", "storylet_id": "225450"}], [{"original_text": "It was crazy the amount of people that showed up.", "album_id": "417126", "photo_flickr_id": "17570120", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "45090", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was crazy the amount of people that showed up .", "storylet_id": "225451"}], [{"original_text": "They even carried a rainbow flag.", "album_id": "417126", "photo_flickr_id": "17570272", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "45090", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they even carried a rainbow flag .", "storylet_id": "225452"}], [{"original_text": "The floats in the parade were also very elaborated decorated.", "album_id": "417126", "photo_flickr_id": "17570197", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "45090", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the floats in the parade were also very elaborated decorated .", "storylet_id": "225453"}], [{"original_text": "The neighborhood all seemed to think it was fun.", "album_id": "417126", "photo_flickr_id": "17570755", "setting": "first-2-pick-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "45090", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the neighborhood all seemed to think it was fun .", "storylet_id": "225454"}], [{"original_text": "Recently there was a gay pride celebration in the city.", "album_id": "417126", "photo_flickr_id": "17572048", "setting": "first-2-pick-and-tell", "worker_id": "1BX5J38G9HA0KRI", "story_id": "45091", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "recently there was a gay pride celebration in the city .", "storylet_id": "225455"}], [{"original_text": "The parade started out with people on bikes and motorcycles.", "album_id": "417126", "photo_flickr_id": "17570043", "setting": "first-2-pick-and-tell", "worker_id": "1BX5J38G9HA0KRI", "story_id": "45091", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the parade started out with people on bikes and motorcycles .", "storylet_id": "225456"}], [{"original_text": "There were larger floats in the parade, too.", "album_id": "417126", "photo_flickr_id": "17570197", "setting": "first-2-pick-and-tell", "worker_id": "1BX5J38G9HA0KRI", "story_id": "45091", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were larger floats in the parade , too .", "storylet_id": "225457"}], [{"original_text": "Some people came from other countries to attend.", "album_id": "417126", "photo_flickr_id": "17570523", "setting": "first-2-pick-and-tell", "worker_id": "1BX5J38G9HA0KRI", "story_id": "45091", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people came from other countries to attend .", "storylet_id": "225458"}], [{"original_text": "Everyone had a great time at the parade.", "album_id": "417126", "photo_flickr_id": "17571067", "setting": "first-2-pick-and-tell", "worker_id": "1BX5J38G9HA0KRI", "story_id": "45091", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time at the parade .", "storylet_id": "225459"}], [{"original_text": "My town just had it's annual spring parade and it was great.", "album_id": "417126", "photo_flickr_id": "17570008", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "45092", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my town just had it 's annual spring parade and it was great .", "storylet_id": "225460"}], [{"original_text": "There was a whole lot of people attending the parade.", "album_id": "417126", "photo_flickr_id": "17570120", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "45092", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a whole lot of people attending the parade .", "storylet_id": "225461"}], [{"original_text": "People in the parade carried a large colorful flag.", "album_id": "417126", "photo_flickr_id": "17570272", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "45092", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people in the parade carried a large colorful flag .", "storylet_id": "225462"}], [{"original_text": "The floats in the parade were crafted wonderfully.", "album_id": "417126", "photo_flickr_id": "17570197", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "45092", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the floats in the parade were crafted wonderfully .", "storylet_id": "225463"}], [{"original_text": "The tail end of the parade had drummers and it was a perfect way to end the event.", "album_id": "417126", "photo_flickr_id": "17570755", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "45092", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the tail end of the parade had drummers and it was a perfect way to end the event .", "storylet_id": "225464"}], [{"original_text": "The one gay pride parade I went to was very interesting.", "album_id": "417126", "photo_flickr_id": "17570008", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45093", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the one gay pride parade i went to was very interesting .", "storylet_id": "225465"}], [{"original_text": "There were rainbows everywhere.", "album_id": "417126", "photo_flickr_id": "17570120", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45093", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were rainbows everywhere .", "storylet_id": "225466"}], [{"original_text": "It was fantastic seeing everyone so united.", "album_id": "417126", "photo_flickr_id": "17570272", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45093", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was fantastic seeing everyone so united .", "storylet_id": "225467"}], [{"original_text": "The floats were pretty humorous. ", "album_id": "417126", "photo_flickr_id": "17570197", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45093", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the floats were pretty humorous .", "storylet_id": "225468"}], [{"original_text": "Lots of people came out to support.", "album_id": "417126", "photo_flickr_id": "17570755", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45093", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lots of people came out to support .", "storylet_id": "225469"}], [{"original_text": "The glace stood up above the building that nice day.", "album_id": "417126", "photo_flickr_id": "17572048", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "45094", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the glace stood up above the building that nice day .", "storylet_id": "225470"}], [{"original_text": "The parade was starting with flags and people lined up.", "album_id": "417126", "photo_flickr_id": "17570043", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "45094", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the parade was starting with flags and people lined up .", "storylet_id": "225471"}], [{"original_text": "The float was a colorful pink with balloons on top.", "album_id": "417126", "photo_flickr_id": "17570197", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "45094", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the float was a colorful pink with balloons on top .", "storylet_id": "225472"}], [{"original_text": "Some ladies held a Brazil flag during the parade.", "album_id": "417126", "photo_flickr_id": "17570523", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "45094", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some ladies held a location flag during the parade .", "storylet_id": "225473"}], [{"original_text": "The people in the parade held up a colorful flag while others walked behind.", "album_id": "417126", "photo_flickr_id": "17571067", "setting": "last-3-pick-old-and-tell", "worker_id": "2VQG8VZWH6QL4QA", "story_id": "45094", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the people in the parade held up a colorful flag while others walked behind .", "storylet_id": "225474"}], [{"original_text": "This European city was a hub for tourists. ", "album_id": "72057594080532069", "photo_flickr_id": "111459324", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "45095", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this european city was a hub for tourists .", "storylet_id": "225475"}], [{"original_text": "The buildings were old and some of them had important events take place at them in the past.", "album_id": "72057594080532069", "photo_flickr_id": "111459678", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "45095", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the buildings were old and some of them had important events take place at them in the past .", "storylet_id": "225476"}], [{"original_text": "The bridges were from the 19th century.", "album_id": "72057594080532069", "photo_flickr_id": "111460999", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "45095", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bridges were from the 19th century .", "storylet_id": "225477"}], [{"original_text": "A lot of the statues memorialized old heroes of the town.", "album_id": "72057594080532069", "photo_flickr_id": "111461218", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "45095", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a lot of the statues memorialized old heroes of the town .", "storylet_id": "225478"}], [{"original_text": "This particular building was a historic landmark.", "album_id": "72057594080532069", "photo_flickr_id": "111461328", "setting": "first-2-pick-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "45095", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this particular building was a historic landmark .", "storylet_id": "225479"}], [{"original_text": "A nice long stroll into the city. ", "album_id": "72057594080532069", "photo_flickr_id": "111459324", "setting": "first-2-pick-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "45096", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a nice long stroll into the city .", "storylet_id": "225480"}], [{"original_text": "The city looks to be fun filled and very lively.", "album_id": "72057594080532069", "photo_flickr_id": "111460144", "setting": "first-2-pick-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "45096", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the city looks to be fun filled and very lively .", "storylet_id": "225481"}], [{"original_text": "The small river with the old bridge is looking good.", "album_id": "72057594080532069", "photo_flickr_id": "111460999", "setting": "first-2-pick-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "45096", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the small river with the old bridge is looking good .", "storylet_id": "225482"}], [{"original_text": "As we get closer to it, we still off by one of the buildings that is near and get closer to the water.", "album_id": "72057594080532069", "photo_flickr_id": "111461172", "setting": "first-2-pick-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "45096", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as we get closer to it , we still off by one of the buildings that is near and get closer to the water .", "storylet_id": "225483"}], [{"original_text": "A few ducks are on the water cap off the day.", "album_id": "72057594080532069", "photo_flickr_id": "111461628", "setting": "first-2-pick-and-tell", "worker_id": "72LZ2L1UGLACNV6", "story_id": "45096", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a few ducks are on the water cap off the day .", "storylet_id": "225484"}], [{"original_text": "The canals near my college campus welcomed me to my freshman dorm. ", "album_id": "72057594080532069", "photo_flickr_id": "111459324", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "45097", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the canals near my college campus welcomed me to my freshman dorm .", "storylet_id": "225485"}], [{"original_text": "The shops nearby were inviting.", "album_id": "72057594080532069", "photo_flickr_id": "111460144", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "45097", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the shops nearby were inviting .", "storylet_id": "225486"}], [{"original_text": "But I couldn't get enough of the water. ", "album_id": "72057594080532069", "photo_flickr_id": "111460999", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "45097", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but i could n't get enough of the water .", "storylet_id": "225487"}], [{"original_text": "The old world architecture was there for me to stare at for hours. ", "album_id": "72057594080532069", "photo_flickr_id": "111461172", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "45097", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the old world architecture was there for me to stare at for hours .", "storylet_id": "225488"}], [{"original_text": "Every morning, I brought the ducks some popcorn. ", "album_id": "72057594080532069", "photo_flickr_id": "111461628", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "45097", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "every morning , i brought the ducks some popcorn .", "storylet_id": "225489"}], [{"original_text": "We went on vacation over the weekend to a local city on the river.", "album_id": "72057594080532069", "photo_flickr_id": "111459324", "setting": "last-3-pick-old-and-tell", "worker_id": "FWQUY040JBK6YNT", "story_id": "45098", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went on vacation over the weekend to a local city on the river .", "storylet_id": "225490"}], [{"original_text": "The buildings were old but beautiful.", "album_id": "72057594080532069", "photo_flickr_id": "111459678", "setting": "last-3-pick-old-and-tell", "worker_id": "FWQUY040JBK6YNT", "story_id": "45098", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the buildings were old but beautiful .", "storylet_id": "225491"}], [{"original_text": "The river made the city look even more ancient and unique.", "album_id": "72057594080532069", "photo_flickr_id": "111460999", "setting": "last-3-pick-old-and-tell", "worker_id": "FWQUY040JBK6YNT", "story_id": "45098", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the river made the city look even more ancient and unique .", "storylet_id": "225492"}], [{"original_text": "We saw this interesting statue of a man standing watch towards the top of a building.", "album_id": "72057594080532069", "photo_flickr_id": "111461218", "setting": "last-3-pick-old-and-tell", "worker_id": "FWQUY040JBK6YNT", "story_id": "45098", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw this interesting statue of a man standing watch towards the top of a building .", "storylet_id": "225493"}], [{"original_text": "We found out that the man is meant to be a guardian that stands watch over the river that runs through the city.", "album_id": "72057594080532069", "photo_flickr_id": "111461328", "setting": "last-3-pick-old-and-tell", "worker_id": "FWQUY040JBK6YNT", "story_id": "45098", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we found out that the man is meant to be a guardian that stands watch over the river that runs through the city .", "storylet_id": "225494"}], [{"original_text": "On their trip to Europe, they arrive in front of a river.", "album_id": "72057594080532069", "photo_flickr_id": "111459324", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "45099", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on their trip to location , they arrive in front of a river .", "storylet_id": "225495"}], [{"original_text": "They decide to check out the city.", "album_id": "72057594080532069", "photo_flickr_id": "111460144", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "45099", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they decide to check out the city .", "storylet_id": "225496"}], [{"original_text": "They think its too packed with people, so they go sight seeing.", "album_id": "72057594080532069", "photo_flickr_id": "111460999", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "45099", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they think its too packed with people , so they go sight seeing .", "storylet_id": "225497"}], [{"original_text": "The indoor poor tempts them, but they decide not to jump in.", "album_id": "72057594080532069", "photo_flickr_id": "111461172", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "45099", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the indoor poor tempts them , but they decide not to jump in .", "storylet_id": "225498"}], [{"original_text": "They come across some ducks.", "album_id": "72057594080532069", "photo_flickr_id": "111461628", "setting": "last-3-pick-old-and-tell", "worker_id": "RX7RSUD731P2FAN", "story_id": "45099", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they come across some ducks .", "storylet_id": "225499"}], [{"original_text": "For me St. Patrick's day is for partying and having a good time. ", "album_id": "72157600041652858", "photo_flickr_id": "443028551", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "45100", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for me st. [male] 's day is for partying and having a good time .", "storylet_id": "225500"}], [{"original_text": "Green beer seems to always show up on this day.", "album_id": "72157600041652858", "photo_flickr_id": "443026417", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "45100", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "green beer seems to always show up on this day .", "storylet_id": "225501"}], [{"original_text": "That girl needed some help on the steps. ", "album_id": "72157600041652858", "photo_flickr_id": "443046642", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "45100", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that girl needed some help on the steps .", "storylet_id": "225502"}], [{"original_text": "I think some of the guests was having a better time than they should. ", "album_id": "72157600041652858", "photo_flickr_id": "443045853", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "45100", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i think some of the guests was having a better time than they should .", "storylet_id": "225503"}], [{"original_text": "Seeing this girl shows me what they mean by being a party animal. ", "album_id": "72157600041652858", "photo_flickr_id": "443081003", "setting": "first-2-pick-and-tell", "worker_id": "1220RFCA7243MV5", "story_id": "45100", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "seeing this girl shows me what they mean by being a party animal .", "storylet_id": "225504"}], [{"original_text": "We even decorated for our Saint Patrick's day party. ", "album_id": "72157600041652858", "photo_flickr_id": "443028551", "setting": "first-2-pick-and-tell", "worker_id": "PIJE1HTFI9AHEN9", "story_id": "45101", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we even decorated for our saint [male] 's day party .", "storylet_id": "225505"}], [{"original_text": "Caught my sister drinking a beer which never happens. ", "album_id": "72157600041652858", "photo_flickr_id": "443024546", "setting": "first-2-pick-and-tell", "worker_id": "PIJE1HTFI9AHEN9", "story_id": "45101", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "caught my sister drinking a beer which never happens .", "storylet_id": "225506"}], [{"original_text": "My brother in law had a few to many green beers. ", "album_id": "72157600041652858", "photo_flickr_id": "443026417", "setting": "first-2-pick-and-tell", "worker_id": "PIJE1HTFI9AHEN9", "story_id": "45101", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brother in law had a few to many green beers .", "storylet_id": "225507"}], [{"original_text": "Also caught my sister dancing which never ever happens. ", "album_id": "72157600041652858", "photo_flickr_id": "443079894", "setting": "first-2-pick-and-tell", "worker_id": "PIJE1HTFI9AHEN9", "story_id": "45101", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "also caught my sister dancing which never ever happens .", "storylet_id": "225508"}], [{"original_text": "I look cool in my new hat and my husband looks cool drunk off his butt. ", "album_id": "72157600041652858", "photo_flickr_id": "443079041", "setting": "first-2-pick-and-tell", "worker_id": "PIJE1HTFI9AHEN9", "story_id": "45101", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i look cool in my new hat and my husband looks cool drunk off his butt .", "storylet_id": "225509"}], [{"original_text": "It was St. Patrick's day.", "album_id": "72157600041652858", "photo_flickr_id": "443028551", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45102", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was st. [male] 's day .", "storylet_id": "225510"}], [{"original_text": "We held a big party for everyone.", "album_id": "72157600041652858", "photo_flickr_id": "443026417", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45102", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we held a big party for everyone .", "storylet_id": "225511"}], [{"original_text": "Not everyone wore green though.", "album_id": "72157600041652858", "photo_flickr_id": "443046642", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45102", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "not everyone wore green though .", "storylet_id": "225512"}], [{"original_text": "The drinks were plenty.", "album_id": "72157600041652858", "photo_flickr_id": "443045853", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45102", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the drinks were plenty .", "storylet_id": "225513"}], [{"original_text": "Everyone had a great time.", "album_id": "72157600041652858", "photo_flickr_id": "443081003", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45102", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had a great time .", "storylet_id": "225514"}], [{"original_text": "Here is out table cloth with shamrocks on it.", "album_id": "72157600041652858", "photo_flickr_id": "443028551", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45103", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is out table cloth with shamrocks on it .", "storylet_id": "225515"}], [{"original_text": "Here's a couple of us sitting around and drinking.", "album_id": "72157600041652858", "photo_flickr_id": "443026417", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45103", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's a couple of us sitting around and drinking .", "storylet_id": "225516"}], [{"original_text": "My boyfriend and I dancing and having fun.", "album_id": "72157600041652858", "photo_flickr_id": "443046642", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45103", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my boyfriend and i dancing and having fun .", "storylet_id": "225517"}], [{"original_text": "My sister looks like she has blue hair!", "album_id": "72157600041652858", "photo_flickr_id": "443045853", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45103", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my sister looks like she has blue hair !", "storylet_id": "225518"}], [{"original_text": "Friends sitting around and acting crazy.", "album_id": "72157600041652858", "photo_flickr_id": "443081003", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45103", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "friends sitting around and acting crazy .", "storylet_id": "225519"}], [{"original_text": "It was st. patrick's day. ", "album_id": "72157600041652858", "photo_flickr_id": "443028551", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45104", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was st. patrick 's day .", "storylet_id": "225520"}], [{"original_text": "the friends pregamed at this man's house. ", "album_id": "72157600041652858", "photo_flickr_id": "443026417", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45104", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the friends pregamed at this man 's house .", "storylet_id": "225521"}], [{"original_text": "they danced. ", "album_id": "72157600041652858", "photo_flickr_id": "443046642", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45104", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they danced .", "storylet_id": "225522"}], [{"original_text": "later they went to the bars. ", "album_id": "72157600041652858", "photo_flickr_id": "443045853", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45104", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later they went to the bars .", "storylet_id": "225523"}], [{"original_text": "they posed for funny pictures. ", "album_id": "72157600041652858", "photo_flickr_id": "443081003", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45104", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they posed for funny pictures .", "storylet_id": "225524"}], [{"original_text": "Time for the annual craft fair so I hopped in the car and headed straight there.", "album_id": "72157626407600218", "photo_flickr_id": "5580472728", "setting": "first-2-pick-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "45105", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "time for the annual craft fair so i hopped in the car and headed straight there .", "storylet_id": "225525"}], [{"original_text": "Saw many lovely picnic baskets.", "album_id": "72157626407600218", "photo_flickr_id": "5579885743", "setting": "first-2-pick-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "45105", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "saw many lovely picnic baskets .", "storylet_id": "225526"}], [{"original_text": "The jewelry, while a bit large, was very tempting to buy as gift for mom.", "album_id": "72157626407600218", "photo_flickr_id": "5579887675", "setting": "first-2-pick-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "45105", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the jewelry , while a bit large , was very tempting to buy as gift for mom .", "storylet_id": "225527"}], [{"original_text": "Some presents came pre-wrapped, though I was hesitant to buy without touching.", "album_id": "72157626407600218", "photo_flickr_id": "5579889831", "setting": "first-2-pick-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "45105", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some presents came pre-wrapped , though i was hesitant to buy without touching .", "storylet_id": "225528"}], [{"original_text": "I am cannot refuse a moose item so I bought a hand-drawn card.", "album_id": "72157626407600218", "photo_flickr_id": "5579891167", "setting": "first-2-pick-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "45105", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am can not refuse a moose item so i bought a hand-drawn card .", "storylet_id": "225529"}], [{"original_text": "The entertainment was excellent!", "album_id": "72157626407600218", "photo_flickr_id": "5579884161", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "45106", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the entertainment was excellent !", "storylet_id": "225530"}], [{"original_text": "The displays were amazing!", "album_id": "72157626407600218", "photo_flickr_id": "5580472728", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "45106", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the displays were amazing !", "storylet_id": "225531"}], [{"original_text": "We had fun looking through all of the potential gifts!", "album_id": "72157626407600218", "photo_flickr_id": "5580476430", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "45106", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had fun looking through all of the potential gifts !", "storylet_id": "225532"}], [{"original_text": "The food choices were diverse!", "album_id": "72157626407600218", "photo_flickr_id": "5579889395", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "45106", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food choices were diverse !", "storylet_id": "225533"}], [{"original_text": "The great writer was honored at the event!", "album_id": "72157626407600218", "photo_flickr_id": "5579891555", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "45106", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the great writer was honored at the event !", "storylet_id": "225534"}], [{"original_text": "Today I went to an arts and crafts faire with my sister.", "album_id": "72157626407600218", "photo_flickr_id": "5580472728", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "45107", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i went to an arts and crafts faire with my sister .", "storylet_id": "225535"}], [{"original_text": "Here she is checking out these hand woven baskets.", "album_id": "72157626407600218", "photo_flickr_id": "5579885743", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "45107", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here she is checking out these hand woven baskets .", "storylet_id": "225536"}], [{"original_text": "They had a lot of nice necklaces too but I pass on them.", "album_id": "72157626407600218", "photo_flickr_id": "5579887675", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "45107", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a lot of nice necklaces too but i pass on them .", "storylet_id": "225537"}], [{"original_text": "These mystery boxes looked great so I went ahead and bought one.", "album_id": "72157626407600218", "photo_flickr_id": "5579889831", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "45107", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these mystery boxes looked great so i went ahead and bought one .", "storylet_id": "225538"}], [{"original_text": "Inside were these cards I can pass out. I didnt feel it was worth it.", "album_id": "72157626407600218", "photo_flickr_id": "5579891167", "setting": "last-3-pick-old-and-tell", "worker_id": "EZDECAJCOUF6D58", "story_id": "45107", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "inside were these cards i can pass out . i didnt feel it was worth it .", "storylet_id": "225539"}], [{"original_text": "An antique convention is held in a small city.", "album_id": "72157626407600218", "photo_flickr_id": "5580472728", "setting": "last-3-pick-old-and-tell", "worker_id": "ZZUMRRGRRLFZK16", "story_id": "45108", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an antique convention is held in a small city .", "storylet_id": "225540"}], [{"original_text": "People bring different items to identify their value.", "album_id": "72157626407600218", "photo_flickr_id": "5579885743", "setting": "last-3-pick-old-and-tell", "worker_id": "ZZUMRRGRRLFZK16", "story_id": "45108", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people bring different items to identify their value .", "storylet_id": "225541"}], [{"original_text": "A lot of people bring jewelry that have been in their family many years.", "album_id": "72157626407600218", "photo_flickr_id": "5579887675", "setting": "last-3-pick-old-and-tell", "worker_id": "ZZUMRRGRRLFZK16", "story_id": "45108", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lot of people bring jewelry that have been in their family many years .", "storylet_id": "225542"}], [{"original_text": "People are even able to purchase gifts.", "album_id": "72157626407600218", "photo_flickr_id": "5579889831", "setting": "last-3-pick-old-and-tell", "worker_id": "ZZUMRRGRRLFZK16", "story_id": "45108", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people are even able to purchase gifts .", "storylet_id": "225543"}], [{"original_text": "One booth has greeting cards that are for purchase.", "album_id": "72157626407600218", "photo_flickr_id": "5579891167", "setting": "last-3-pick-old-and-tell", "worker_id": "ZZUMRRGRRLFZK16", "story_id": "45108", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one booth has greeting cards that are for purchase .", "storylet_id": "225544"}], [{"original_text": "Went out to a craft mall where there were lots of different booths set up.", "album_id": "72157626407600218", "photo_flickr_id": "5580472728", "setting": "last-3-pick-old-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "45109", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "went out to a craft mall where there were lots of different booths set up .", "storylet_id": "225545"}], [{"original_text": "The basket area was great, with lots of different size baskets.", "album_id": "72157626407600218", "photo_flickr_id": "5579885743", "setting": "last-3-pick-old-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "45109", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the basket area was great , with lots of different size baskets .", "storylet_id": "225546"}], [{"original_text": "The jewelry selection available was very nice as well.", "album_id": "72157626407600218", "photo_flickr_id": "5579887675", "setting": "last-3-pick-old-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "45109", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the jewelry selection available was very nice as well .", "storylet_id": "225547"}], [{"original_text": "One of my favorites was these cute little soaps wrapped up so neatly.", "album_id": "72157626407600218", "photo_flickr_id": "5579889831", "setting": "last-3-pick-old-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "45109", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of my favorites was these cute little soaps wrapped up so neatly .", "storylet_id": "225548"}], [{"original_text": "Handmade greeting cards also caught my eye. It was a great day of shopping!", "album_id": "72157626407600218", "photo_flickr_id": "5579891167", "setting": "last-3-pick-old-and-tell", "worker_id": "XO65S6NBONYUUI1", "story_id": "45109", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "handmade greeting cards also caught my eye . it was a great day of shopping !", "storylet_id": "225549"}], [{"original_text": "I was out driving one day.", "album_id": "72157623635304297", "photo_flickr_id": "4486393226", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45110", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was out driving one day .", "storylet_id": "225550"}], [{"original_text": "I saw a huge cross in the middle of no where.", "album_id": "72157623635304297", "photo_flickr_id": "4485760449", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45110", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw a huge cross in the middle of no where .", "storylet_id": "225551"}], [{"original_text": "The sunset was really beautiful.", "album_id": "72157623635304297", "photo_flickr_id": "4486435910", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45110", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the sunset was really beautiful .", "storylet_id": "225552"}], [{"original_text": "There were a couple of birds flying around.", "album_id": "72157623635304297", "photo_flickr_id": "4485787003", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45110", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were a couple of birds flying around .", "storylet_id": "225553"}], [{"original_text": "When I got to the beach it was just in time to sit and watch the sunset.", "album_id": "72157623635304297", "photo_flickr_id": "4485790017", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45110", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when i got to the beach it was just in time to sit and watch the sunset .", "storylet_id": "225554"}], [{"original_text": "Family went out on a hike near the giant cross.", "album_id": "72157623635304297", "photo_flickr_id": "4485737863", "setting": "first-2-pick-and-tell", "worker_id": "ODA8LY7GHGN97OW", "story_id": "45111", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "family went out on a hike near the giant cross .", "storylet_id": "225555"}], [{"original_text": "As we hiked up we could see the lovely beach nearby.", "album_id": "72157623635304297", "photo_flickr_id": "4485793427", "setting": "first-2-pick-and-tell", "worker_id": "ODA8LY7GHGN97OW", "story_id": "45111", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as we hiked up we could see the lovely beach nearby .", "storylet_id": "225556"}], [{"original_text": "I'm always amazed by how huge it is compared to its surroundings.", "album_id": "72157623635304297", "photo_flickr_id": "4486393226", "setting": "first-2-pick-and-tell", "worker_id": "ODA8LY7GHGN97OW", "story_id": "45111", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i 'm always amazed by how huge it is compared to its surroundings .", "storylet_id": "225557"}], [{"original_text": "It makes for the most breath taking pictures as well.", "album_id": "72157623635304297", "photo_flickr_id": "4485757887", "setting": "first-2-pick-and-tell", "worker_id": "ODA8LY7GHGN97OW", "story_id": "45111", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it makes for the most breath taking pictures as well .", "storylet_id": "225558"}], [{"original_text": "The sunset was so beautiful as we returned down the trail.", "album_id": "72157623635304297", "photo_flickr_id": "4486421710", "setting": "first-2-pick-and-tell", "worker_id": "ODA8LY7GHGN97OW", "story_id": "45111", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the sunset was so beautiful as we returned down the trail .", "storylet_id": "225559"}], [{"original_text": "The cross with the sunset and", "album_id": "72157623635304297", "photo_flickr_id": "4486393226", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "45112", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cross with the sunset and", "storylet_id": "225560"}], [{"original_text": "the cross from a far distance still with the sunset and ", "album_id": "72157623635304297", "photo_flickr_id": "4485760449", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "45112", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cross from a far distance still with the sunset and", "storylet_id": "225561"}], [{"original_text": "birds flying happily around while the sun goes down , while", "album_id": "72157623635304297", "photo_flickr_id": "4486435910", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "45112", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "birds flying happily around while the sun goes down , while", "storylet_id": "225562"}], [{"original_text": "they try to get to the destination ", "album_id": "72157623635304297", "photo_flickr_id": "4485787003", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "45112", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they try to get to the destination", "storylet_id": "225563"}], [{"original_text": "Then the sun finally goes down", "album_id": "72157623635304297", "photo_flickr_id": "4485790017", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "45112", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then the sun finally goes down", "storylet_id": "225564"}], [{"original_text": "It is early morning in the city.", "album_id": "72157623635304297", "photo_flickr_id": "4486393226", "setting": "last-3-pick-old-and-tell", "worker_id": "P4OE2U24WT2JZ1X", "story_id": "45113", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is early morning in the city .", "storylet_id": "225565"}], [{"original_text": "The sun is ready to come out.", "album_id": "72157623635304297", "photo_flickr_id": "4485760449", "setting": "last-3-pick-old-and-tell", "worker_id": "P4OE2U24WT2JZ1X", "story_id": "45113", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sun is ready to come out .", "storylet_id": "225566"}], [{"original_text": "Birds are starting to fly in the ear.", "album_id": "72157623635304297", "photo_flickr_id": "4486435910", "setting": "last-3-pick-old-and-tell", "worker_id": "P4OE2U24WT2JZ1X", "story_id": "45113", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "birds are starting to fly in the ear .", "storylet_id": "225567"}], [{"original_text": "The birds enjoy the warm weathet.", "album_id": "72157623635304297", "photo_flickr_id": "4485787003", "setting": "last-3-pick-old-and-tell", "worker_id": "P4OE2U24WT2JZ1X", "story_id": "45113", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the birds enjoy the warm weathet .", "storylet_id": "225568"}], [{"original_text": "As it starts to get sunny, clouds move in.", "album_id": "72157623635304297", "photo_flickr_id": "4485790017", "setting": "last-3-pick-old-and-tell", "worker_id": "P4OE2U24WT2JZ1X", "story_id": "45113", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as it starts to get sunny , clouds move in .", "storylet_id": "225569"}], [{"original_text": "The cross was very tall", "album_id": "72157623635304297", "photo_flickr_id": "4486393226", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45114", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cross was very tall", "storylet_id": "225570"}], [{"original_text": "and shining in the sunset.", "album_id": "72157623635304297", "photo_flickr_id": "4485760449", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45114", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and shining in the sunset .", "storylet_id": "225571"}], [{"original_text": "The birds were flying", "album_id": "72157623635304297", "photo_flickr_id": "4486435910", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45114", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the birds were flying", "storylet_id": "225572"}], [{"original_text": "high in the sky", "album_id": "72157623635304297", "photo_flickr_id": "4485787003", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45114", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "high in the sky", "storylet_id": "225573"}], [{"original_text": "as the sun set.", "album_id": "72157623635304297", "photo_flickr_id": "4485790017", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45114", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as the sun set .", "storylet_id": "225574"}], [{"original_text": "Just another day on the farm!", "album_id": "72157623762355456", "photo_flickr_id": "4486930805", "setting": "first-2-pick-and-tell", "worker_id": "ECPOXLMX7SB4E23", "story_id": "45115", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "just another day on the farm !", "storylet_id": "225575"}], [{"original_text": "Our dog even enjoys the day with overcast clouds!", "album_id": "72157623762355456", "photo_flickr_id": "4487591962", "setting": "first-2-pick-and-tell", "worker_id": "ECPOXLMX7SB4E23", "story_id": "45115", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our dog even enjoys the day with overcast clouds !", "storylet_id": "225576"}], [{"original_text": "Time to let him lose to enjoy the field!", "album_id": "72157623762355456", "photo_flickr_id": "4487591980", "setting": "first-2-pick-and-tell", "worker_id": "ECPOXLMX7SB4E23", "story_id": "45115", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "time to let him lose to enjoy the field !", "storylet_id": "225577"}], [{"original_text": "Our flower garden is coming along nicely!", "album_id": "72157623762355456", "photo_flickr_id": "4487591984", "setting": "first-2-pick-and-tell", "worker_id": "ECPOXLMX7SB4E23", "story_id": "45115", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our flower garden is coming along nicely !", "storylet_id": "225578"}], [{"original_text": "Gathered the family around for a fun day on the farm!", "album_id": "72157623762355456", "photo_flickr_id": "4487591978", "setting": "first-2-pick-and-tell", "worker_id": "ECPOXLMX7SB4E23", "story_id": "45115", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "gathered the family around for a fun day on the farm !", "storylet_id": "225579"}], [{"original_text": "They had a large ranch.", "album_id": "72157623762355456", "photo_flickr_id": "4487591984", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45116", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they had a large ranch .", "storylet_id": "225580"}], [{"original_text": "It was large enough to ride their horses.", "album_id": "72157623762355456", "photo_flickr_id": "4487586334", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45116", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was large enough to ride their horses .", "storylet_id": "225581"}], [{"original_text": "The dog enjoyed the outdoors as well.", "album_id": "72157623762355456", "photo_flickr_id": "4487591962", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45116", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dog enjoyed the outdoors as well .", "storylet_id": "225582"}], [{"original_text": "The interiors were cozy.", "album_id": "72157623762355456", "photo_flickr_id": "4486930817", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45116", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the interiors were cozy .", "storylet_id": "225583"}], [{"original_text": "And the decorations were quaint.", "album_id": "72157623762355456", "photo_flickr_id": "4486930811", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45116", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the decorations were quaint .", "storylet_id": "225584"}], [{"original_text": "As they arrived at the farm, a horse ran to greet them.", "album_id": "72157623762355456", "photo_flickr_id": "4486930805", "setting": "last-3-pick-old-and-tell", "worker_id": "7I5TYX370536UGU", "story_id": "45117", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as they arrived at the farm , a horse ran to greet them .", "storylet_id": "225585"}], [{"original_text": "The dog also seems happy to see them.", "album_id": "72157623762355456", "photo_flickr_id": "4487591962", "setting": "last-3-pick-old-and-tell", "worker_id": "7I5TYX370536UGU", "story_id": "45117", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the dog also seems happy to see them .", "storylet_id": "225586"}], [{"original_text": "The dog loved playing catch with people.", "album_id": "72157623762355456", "photo_flickr_id": "4487591980", "setting": "last-3-pick-old-and-tell", "worker_id": "7I5TYX370536UGU", "story_id": "45117", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dog loved playing catch with people .", "storylet_id": "225587"}], [{"original_text": "Everywhere on the farm, flowers were in bloom.", "album_id": "72157623762355456", "photo_flickr_id": "4487591984", "setting": "last-3-pick-old-and-tell", "worker_id": "7I5TYX370536UGU", "story_id": "45117", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everywhere on the farm , flowers were in bloom .", "storylet_id": "225588"}], [{"original_text": "They would never forget this trip together.", "album_id": "72157623762355456", "photo_flickr_id": "4487591978", "setting": "last-3-pick-old-and-tell", "worker_id": "7I5TYX370536UGU", "story_id": "45117", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they would never forget this trip together .", "storylet_id": "225589"}], [{"original_text": "The field was vast", "album_id": "72157623762355456", "photo_flickr_id": "4486930805", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45118", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the field was vast", "storylet_id": "225590"}], [{"original_text": "and there was a dog.", "album_id": "72157623762355456", "photo_flickr_id": "4487591962", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45118", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and there was a dog .", "storylet_id": "225591"}], [{"original_text": "The family was having a nice time", "album_id": "72157623762355456", "photo_flickr_id": "4487591980", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45118", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the family was having a nice time", "storylet_id": "225592"}], [{"original_text": "looking at the green field.", "album_id": "72157623762355456", "photo_flickr_id": "4487591984", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45118", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "looking at the green field .", "storylet_id": "225593"}], [{"original_text": "It was a good day overall.", "album_id": "72157623762355456", "photo_flickr_id": "4487591978", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45118", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a good day overall .", "storylet_id": "225594"}], [{"original_text": "A weekend trip out to the farm was just what the family needed.", "album_id": "72157623762355456", "photo_flickr_id": "4486930805", "setting": "last-3-pick-old-and-tell", "worker_id": "2RWB53ZO97GIYW3", "story_id": "45119", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a weekend trip out to the farm was just what the family needed .", "storylet_id": "225595"}], [{"original_text": "Father and son take some time to play fetch with the dog in the field.", "album_id": "72157623762355456", "photo_flickr_id": "4487591962", "setting": "last-3-pick-old-and-tell", "worker_id": "2RWB53ZO97GIYW3", "story_id": "45119", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "father and son take some time to play fetch with the dog in the field .", "storylet_id": "225596"}], [{"original_text": "The puppy sure likes to run around and play in the grass.", "album_id": "72157623762355456", "photo_flickr_id": "4487591980", "setting": "last-3-pick-old-and-tell", "worker_id": "2RWB53ZO97GIYW3", "story_id": "45119", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the puppy sure likes to run around and play in the grass .", "storylet_id": "225597"}], [{"original_text": "Look how much mom's garden has grown since the last time we were here at the family farm.", "album_id": "72157623762355456", "photo_flickr_id": "4487591984", "setting": "last-3-pick-old-and-tell", "worker_id": "2RWB53ZO97GIYW3", "story_id": "45119", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look how much mom 's garden has grown since the last time we were here at the family farm .", "storylet_id": "225598"}], [{"original_text": "Even both sets of grandparents showed up to enjoy a big, fun, family weekend away from the city.", "album_id": "72157623762355456", "photo_flickr_id": "4487591978", "setting": "last-3-pick-old-and-tell", "worker_id": "2RWB53ZO97GIYW3", "story_id": "45119", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even both sets of grandparents showed up to enjoy a big , fun , family weekend away from the city .", "storylet_id": "225599"}], [{"original_text": "I thought I was just going to these buildings.", "album_id": "72157623430267951", "photo_flickr_id": "4406362511", "setting": "first-2-pick-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "45120", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i thought i was just going to these buildings .", "storylet_id": "225600"}], [{"original_text": "But then al, of the people came.", "album_id": "72157623430267951", "photo_flickr_id": "4406364923", "setting": "first-2-pick-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "45120", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but then al , of the people came .", "storylet_id": "225601"}], [{"original_text": "It looked like they were selling something.", "album_id": "72157623430267951", "photo_flickr_id": "4406392583", "setting": "first-2-pick-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "45120", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it looked like they were selling something .", "storylet_id": "225602"}], [{"original_text": "In fact they were, I was so caught off guard. ", "album_id": "72157623430267951", "photo_flickr_id": "4406373555", "setting": "first-2-pick-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "45120", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "in fact they were , i was so caught off guard .", "storylet_id": "225603"}], [{"original_text": "I gots to buy all of the lively things. I am happy!", "album_id": "72157623430267951", "photo_flickr_id": "4407239152", "setting": "first-2-pick-and-tell", "worker_id": "CWGZIWPGNUDLPYB", "story_id": "45120", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i gots to buy all of the lively things . i am happy !", "storylet_id": "225604"}], [{"original_text": "Our downtown flea market will be held today.", "album_id": "72157623430267951", "photo_flickr_id": "4406364923", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45121", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our downtown flea market will be held today .", "storylet_id": "225605"}], [{"original_text": "Full of life the vendors are getting ready.", "album_id": "72157623430267951", "photo_flickr_id": "4406373555", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45121", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "full of life the vendors are getting ready .", "storylet_id": "225606"}], [{"original_text": "It almost has a carnival feel to it.", "album_id": "72157623430267951", "photo_flickr_id": "4407216098", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45121", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it almost has a carnival feel to it .", "storylet_id": "225607"}], [{"original_text": "The booths are up, what are today's treasures?", "album_id": "72157623430267951", "photo_flickr_id": "4407234432", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45121", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the booths are up , what are today 's treasures ?", "storylet_id": "225608"}], [{"original_text": "There is always time out for a tasty snack.", "album_id": "72157623430267951", "photo_flickr_id": "4406470907", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45121", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is always time out for a tasty snack .", "storylet_id": "225609"}], [{"original_text": "We got up early and headed out to the market.", "album_id": "72157623430267951", "photo_flickr_id": "4406364923", "setting": "last-3-pick-old-and-tell", "worker_id": "IDBRTN6CST036OC", "story_id": "45122", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got up early and headed out to the market .", "storylet_id": "225610"}], [{"original_text": "The flower vendors displays were so inviting.", "album_id": "72157623430267951", "photo_flickr_id": "4406373555", "setting": "last-3-pick-old-and-tell", "worker_id": "IDBRTN6CST036OC", "story_id": "45122", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the flower vendors displays were so inviting .", "storylet_id": "225611"}], [{"original_text": "It was a beautiful, blue sky morning.", "album_id": "72157623430267951", "photo_flickr_id": "4407216098", "setting": "last-3-pick-old-and-tell", "worker_id": "IDBRTN6CST036OC", "story_id": "45122", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a beautiful , blue sky morning .", "storylet_id": "225612"}], [{"original_text": "We got there early, so it wasn't crowded yet.", "album_id": "72157623430267951", "photo_flickr_id": "4407234432", "setting": "last-3-pick-old-and-tell", "worker_id": "IDBRTN6CST036OC", "story_id": "45122", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got there early , so it was n't crowded yet .", "storylet_id": "225613"}], [{"original_text": "After a little shopping, we stopped at a food truck for a snack.", "album_id": "72157623430267951", "photo_flickr_id": "4406470907", "setting": "last-3-pick-old-and-tell", "worker_id": "IDBRTN6CST036OC", "story_id": "45122", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a little shopping , we stopped at a food truck for a snack .", "storylet_id": "225614"}], [{"original_text": "The city had many nice buildings", "album_id": "72157623430267951", "photo_flickr_id": "4406362511", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45123", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the city had many nice buildings", "storylet_id": "225615"}], [{"original_text": "on the clear day.", "album_id": "72157623430267951", "photo_flickr_id": "4406364923", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45123", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "on the clear day .", "storylet_id": "225616"}], [{"original_text": "People went to the market", "album_id": "72157623430267951", "photo_flickr_id": "4406392583", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45123", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people went to the market", "storylet_id": "225617"}], [{"original_text": "where they talked", "album_id": "72157623430267951", "photo_flickr_id": "4406373555", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45123", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "where they talked", "storylet_id": "225618"}], [{"original_text": "and bought food. ", "album_id": "72157623430267951", "photo_flickr_id": "4407239152", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45123", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and bought food .", "storylet_id": "225619"}], [{"original_text": "Saturday morning was the perfect time to take a stroll downtown for the farmer's market.", "album_id": "72157623430267951", "photo_flickr_id": "4406362511", "setting": "last-3-pick-old-and-tell", "worker_id": "2RWB53ZO97GIYW3", "story_id": "45124", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "saturday morning was the perfect time to take a stroll downtown for the farmer 's market .", "storylet_id": "225620"}], [{"original_text": "We approached the town square where people were busy setting up their tables.", "album_id": "72157623430267951", "photo_flickr_id": "4406364923", "setting": "last-3-pick-old-and-tell", "worker_id": "2RWB53ZO97GIYW3", "story_id": "45124", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we approached the town square where people were busy setting up their tables .", "storylet_id": "225621"}], [{"original_text": "It looks like we got to the square early before all of the big crowds arrive later this afternoon.", "album_id": "72157623430267951", "photo_flickr_id": "4406392583", "setting": "last-3-pick-old-and-tell", "worker_id": "2RWB53ZO97GIYW3", "story_id": "45124", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it looks like we got to the square early before all of the big crowds arrive later this afternoon .", "storylet_id": "225622"}], [{"original_text": "So many flowers and plants on display. It will be hard to pick jut one batch to take home to the wife.", "album_id": "72157623430267951", "photo_flickr_id": "4406373555", "setting": "last-3-pick-old-and-tell", "worker_id": "2RWB53ZO97GIYW3", "story_id": "45124", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so many flowers and plants on display . it will be hard to pick jut one batch to take home to the wife .", "storylet_id": "225623"}], [{"original_text": "I always love buying from the vendor in the blue tent. He has the best selection of flowers and always throws in a little extra something for his regulars.", "album_id": "72157623430267951", "photo_flickr_id": "4407239152", "setting": "last-3-pick-old-and-tell", "worker_id": "2RWB53ZO97GIYW3", "story_id": "45124", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i always love buying from the vendor in the blue tent . he has the best selection of flowers and always throws in a little extra something for his regulars .", "storylet_id": "225624"}], [{"original_text": "Our little guy had fun playing with the basket of toys!", "album_id": "72157594477699038", "photo_flickr_id": "347353673", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "45125", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our little guy had fun playing with the basket of toys !", "storylet_id": "225625"}], [{"original_text": "He was entertained well by the basket of goodies!", "album_id": "72157594477699038", "photo_flickr_id": "347353795", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "45125", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he was entertained well by the basket of goodies !", "storylet_id": "225626"}], [{"original_text": "Our little guys had fun playing around!", "album_id": "72157594477699038", "photo_flickr_id": "347354082", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "45125", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our little guys had fun playing around !", "storylet_id": "225627"}], [{"original_text": "Even daddy enjoyed the toys!", "album_id": "72157594477699038", "photo_flickr_id": "347354674", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "45125", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even daddy enjoyed the toys !", "storylet_id": "225628"}], [{"original_text": "The end result was a work of art for family!", "album_id": "72157594477699038", "photo_flickr_id": "347354786", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "45125", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the end result was a work of art for family !", "storylet_id": "225629"}], [{"original_text": "Last Easter's party was really awesome.", "album_id": "72157594477699038", "photo_flickr_id": "347353434", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "45126", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "last easter 's party was really awesome .", "storylet_id": "225630"}], [{"original_text": "My nephew woke up to his basket and he was totally thrilled.", "album_id": "72157594477699038", "photo_flickr_id": "347353673", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "45126", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my nephew woke up to his basket and he was totally thrilled .", "storylet_id": "225631"}], [{"original_text": "He kept finding neat things in his basket to eat.", "album_id": "72157594477699038", "photo_flickr_id": "347353795", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "45126", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he kept finding neat things in his basket to eat .", "storylet_id": "225632"}], [{"original_text": "He always has fun teasing his little brother.", "album_id": "72157594477699038", "photo_flickr_id": "347354082", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "45126", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he always has fun teasing his little brother .", "storylet_id": "225633"}], [{"original_text": "After we ate, we all sat back and watched some T.V. before going home.", "album_id": "72157594477699038", "photo_flickr_id": "347354324", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "45126", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after we ate , we all sat back and watched some t.v . before going home .", "storylet_id": "225634"}], [{"original_text": "The kids found all kinds of cool goodies in their Easter baskets this year. ", "album_id": "72157594477699038", "photo_flickr_id": "347353673", "setting": "last-3-pick-old-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "45127", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids found all kinds of cool goodies in their easter baskets this year .", "storylet_id": "225635"}], [{"original_text": "Todd, my youngest, had so much stuff in his basket, that he laid everything out on the floor. ", "album_id": "72157594477699038", "photo_flickr_id": "347353795", "setting": "last-3-pick-old-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "45127", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] , my youngest , had so much stuff in his basket , that he laid everything out on the floor .", "storylet_id": "225636"}], [{"original_text": "My older son, Jason, preferred to look at his loot while sitting on the couch. ", "album_id": "72157594477699038", "photo_flickr_id": "347354082", "setting": "last-3-pick-old-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "45127", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my older son , [male] , preferred to look at his loot while sitting on the couch .", "storylet_id": "225637"}], [{"original_text": "My husband, Jerry, found the kids' book about sharks to be very interesting. ", "album_id": "72157594477699038", "photo_flickr_id": "347354674", "setting": "last-3-pick-old-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "45127", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my husband , [male] , found the kids ' book about sharks to be very interesting .", "storylet_id": "225638"}], [{"original_text": "Look what the kids built while their Dad took a nap.", "album_id": "72157594477699038", "photo_flickr_id": "347354786", "setting": "last-3-pick-old-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "45127", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "look what the kids built while their dad took a nap .", "storylet_id": "225639"}], [{"original_text": "The child sneaked in the room while his parents slept.", "album_id": "72157594477699038", "photo_flickr_id": "347353434", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6XMW8ZIZCTZBE", "story_id": "45128", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the child sneaked in the room while his parents slept .", "storylet_id": "225640"}], [{"original_text": "He finally got a chance with those toys.", "album_id": "72157594477699038", "photo_flickr_id": "347353673", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6XMW8ZIZCTZBE", "story_id": "45128", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he finally got a chance with those toys .", "storylet_id": "225641"}], [{"original_text": "A basket was there too, it was his brother's.", "album_id": "72157594477699038", "photo_flickr_id": "347353795", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6XMW8ZIZCTZBE", "story_id": "45128", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a basket was there too , it was his brother 's .", "storylet_id": "225642"}], [{"original_text": "With the net from the basket he decides to catch his brother.", "album_id": "72157594477699038", "photo_flickr_id": "347354082", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6XMW8ZIZCTZBE", "story_id": "45128", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "with the net from the basket he decides to catch his brother .", "storylet_id": "225643"}], [{"original_text": "His sleeping father is oblivious and he takes advantage.", "album_id": "72157594477699038", "photo_flickr_id": "347354324", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6XMW8ZIZCTZBE", "story_id": "45128", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "his sleeping father is oblivious and he takes advantage .", "storylet_id": "225644"}], [{"original_text": "Waking up to easter gift baskets. ", "album_id": "72157594477699038", "photo_flickr_id": "347353434", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45129", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "waking up to easter gift baskets .", "storylet_id": "225645"}], [{"original_text": "Loving his new gifts already. ", "album_id": "72157594477699038", "photo_flickr_id": "347353673", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45129", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "loving his new gifts already .", "storylet_id": "225646"}], [{"original_text": "Checking out his new toys. ", "album_id": "72157594477699038", "photo_flickr_id": "347353795", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45129", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "checking out his new toys .", "storylet_id": "225647"}], [{"original_text": "Sharing a toy with his cousin. ", "album_id": "72157594477699038", "photo_flickr_id": "347354082", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45129", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sharing a toy with his cousin .", "storylet_id": "225648"}], [{"original_text": "All ready for dinner with his uncle. ", "album_id": "72157594477699038", "photo_flickr_id": "347354324", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45129", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all ready for dinner with his uncle .", "storylet_id": "225649"}], [{"original_text": "Today I dressed Bill up in a ridiculous getup. ", "album_id": "72157600050270086", "photo_flickr_id": "447643102", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45130", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i dressed [male] up in a ridiculous getup .", "storylet_id": "225650"}], [{"original_text": "He looked so stupid. He giggled and giggled. ", "album_id": "72157600050270086", "photo_flickr_id": "447649803", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45130", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he looked so stupid . he giggled and giggled .", "storylet_id": "225651"}], [{"original_text": "Then I decided I'd do the same thing. We are so cool! ", "album_id": "72157600050270086", "photo_flickr_id": "447643124", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45130", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then i decided i 'd do the same thing . we are so cool !", "storylet_id": "225652"}], [{"original_text": "Betty and Rhonda came over and laughed with us! Betty laughed so hard she peed a little. ", "album_id": "72157600050270086", "photo_flickr_id": "447643120", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45130", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and [female] came over and laughed with us ! [female] laughed so hard she peed a little .", "storylet_id": "225653"}], [{"original_text": "Barney came over later and her getup was even better! We had such a funny time!", "album_id": "72157600050270086", "photo_flickr_id": "447645703", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45130", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] came over later and her getup was even better ! we had such a funny time !", "storylet_id": "225654"}], [{"original_text": "these group of friends had a costume party. ", "album_id": "72157600050270086", "photo_flickr_id": "447643120", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45131", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these group of friends had a costume party .", "storylet_id": "225655"}], [{"original_text": "they danced the night away. ", "album_id": "72157600050270086", "photo_flickr_id": "447645683", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45131", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they danced the night away .", "storylet_id": "225656"}], [{"original_text": "they took pictures of themselves. ", "album_id": "72157600050270086", "photo_flickr_id": "447643124", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45131", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they took pictures of themselves .", "storylet_id": "225657"}], [{"original_text": "their friend played great music for them. ", "album_id": "72157600050270086", "photo_flickr_id": "447647299", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45131", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their friend played great music for them .", "storylet_id": "225658"}], [{"original_text": "they all had a great time. ", "album_id": "72157600050270086", "photo_flickr_id": "447643102", "setting": "first-2-pick-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45131", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all had a great time .", "storylet_id": "225659"}], [{"original_text": "Look at how cool we are with our glasses.", "album_id": "72157600050270086", "photo_flickr_id": "447643120", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45132", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "look at how cool we are with our glasses .", "storylet_id": "225660"}], [{"original_text": "Getting our party started and having fun.", "album_id": "72157600050270086", "photo_flickr_id": "447645683", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45132", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "getting our party started and having fun .", "storylet_id": "225661"}], [{"original_text": "Here's my good friends, they look so happy.", "album_id": "72157600050270086", "photo_flickr_id": "447643124", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45132", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's my good friends , they look so happy .", "storylet_id": "225662"}], [{"original_text": "My brother handing over a record to listen to.", "album_id": "72157600050270086", "photo_flickr_id": "447647299", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45132", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my brother handing over a record to listen to .", "storylet_id": "225663"}], [{"original_text": "I'm fixing the beard on my boyfriend.", "album_id": "72157600050270086", "photo_flickr_id": "447643102", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45132", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i 'm fixing the beard on my boyfriend .", "storylet_id": "225664"}], [{"original_text": "We're having funny looking goofy today.", "album_id": "72157600050270086", "photo_flickr_id": "447643102", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45133", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we 're having funny looking goofy today .", "storylet_id": "225665"}], [{"original_text": "Check out this ridiculous growth coming out from the back of my head.", "album_id": "72157600050270086", "photo_flickr_id": "447649803", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45133", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "check out this ridiculous growth coming out from the back of my head .", "storylet_id": "225666"}], [{"original_text": "Cool shades and feeling raunchy.", "album_id": "72157600050270086", "photo_flickr_id": "447643124", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45133", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "cool shades and feeling raunchy .", "storylet_id": "225667"}], [{"original_text": "We're in this thing together as they say. ", "album_id": "72157600050270086", "photo_flickr_id": "447643120", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45133", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we 're in this thing together as they say .", "storylet_id": "225668"}], [{"original_text": "I am stretched both literally and figuratively. Yo!", "album_id": "72157600050270086", "photo_flickr_id": "447645703", "setting": "last-3-pick-old-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45133", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i am stretched both literally and figuratively . yo !", "storylet_id": "225669"}], [{"original_text": "We had a fun Easter Party. Jenna made cool sunglass bunny ears for us.", "album_id": "72157600050270086", "photo_flickr_id": "447643120", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "45134", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had a fun organization organization . [female] made cool sunglass bunny ears for us .", "storylet_id": "225670"}], [{"original_text": "There was a lot of dancing throughout the day.", "album_id": "72157600050270086", "photo_flickr_id": "447645683", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "45134", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a lot of dancing throughout the day .", "storylet_id": "225671"}], [{"original_text": "They are such a cute couple!", "album_id": "72157600050270086", "photo_flickr_id": "447643124", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "45134", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they are such a cute couple !", "storylet_id": "225672"}], [{"original_text": "Ben decided to read by himself. We finally got his attention!", "album_id": "72157600050270086", "photo_flickr_id": "447647299", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "45134", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] decided to read by himself . we finally got his attention !", "storylet_id": "225673"}], [{"original_text": "Lenna is trying to console Lenny after she fake punched him and actually landed a punch.", "album_id": "72157600050270086", "photo_flickr_id": "447643102", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "45134", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lenna is trying to console lenny after she fake punched him and actually landed a punch .", "storylet_id": "225674"}], [{"original_text": "The final out for our side on the ninth inning. Tie ball game. This isn't good.", "album_id": "72057594126419846", "photo_flickr_id": "140991017", "setting": "first-2-pick-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "45135", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the final out for our side on the ninth inning . tie ball game . this is n't good .", "storylet_id": "225675"}], [{"original_text": "Here comes the pitch... a swing and a miss! Struck out!", "album_id": "72057594126419846", "photo_flickr_id": "140991000", "setting": "first-2-pick-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "45135", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here comes the pitch ... a swing and a miss ! struck out !", "storylet_id": "225676"}], [{"original_text": "With a time game, we head into the bottom of the ninth.", "album_id": "72057594126419846", "photo_flickr_id": "140990990", "setting": "first-2-pick-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "45135", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "with a time game , we head into the bottom of the ninth .", "storylet_id": "225677"}], [{"original_text": "Their first time up, our pitcher throws and....", "album_id": "72057594126419846", "photo_flickr_id": "140990955", "setting": "first-2-pick-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "45135", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their first time up , our pitcher throws and ... .", "storylet_id": "225678"}], [{"original_text": "A line drive! Not an auspicious start to the inning. ", "album_id": "72057594126419846", "photo_flickr_id": "142563919", "setting": "first-2-pick-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "45135", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a line drive ! not an auspicious start to the inning .", "storylet_id": "225679"}], [{"original_text": "The batter prepared to swing.", "album_id": "72057594126419846", "photo_flickr_id": "140990940", "setting": "first-2-pick-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "45136", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the batter prepared to swing .", "storylet_id": "225680"}], [{"original_text": "The pitcher wound up and threw the ball hard.", "album_id": "72057594126419846", "photo_flickr_id": "140990923", "setting": "first-2-pick-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "45136", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pitcher wound up and threw the ball hard .", "storylet_id": "225681"}], [{"original_text": "The player hit the ball", "album_id": "72057594126419846", "photo_flickr_id": "142563450", "setting": "first-2-pick-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "45136", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the player hit the ball", "storylet_id": "225682"}], [{"original_text": "and began running as fast as he could.", "album_id": "72057594126419846", "photo_flickr_id": "142564707", "setting": "first-2-pick-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "45136", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and began running as fast as he could .", "storylet_id": "225683"}], [{"original_text": "He made it to first base.", "album_id": "72057594126419846", "photo_flickr_id": "142565601", "setting": "first-2-pick-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "45136", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he made it to first base .", "storylet_id": "225684"}], [{"original_text": "Batter up. ", "album_id": "72057594126419846", "photo_flickr_id": "140990940", "setting": "last-3-pick-old-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "45137", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "batter up .", "storylet_id": "225685"}], [{"original_text": "Strike one. ", "album_id": "72057594126419846", "photo_flickr_id": "140990923", "setting": "last-3-pick-old-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "45137", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "strike one .", "storylet_id": "225686"}], [{"original_text": "He hits it hard. ", "album_id": "72057594126419846", "photo_flickr_id": "142563450", "setting": "last-3-pick-old-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "45137", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he hits it hard .", "storylet_id": "225687"}], [{"original_text": "The shortstop made a great play. ", "album_id": "72057594126419846", "photo_flickr_id": "142564707", "setting": "last-3-pick-old-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "45137", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the shortstop made a great play .", "storylet_id": "225688"}], [{"original_text": "The batter only made it to first base. ", "album_id": "72057594126419846", "photo_flickr_id": "142565601", "setting": "last-3-pick-old-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "45137", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the batter only made it to first base .", "storylet_id": "225689"}], [{"original_text": "This guy right here has to be the worst batter ever ", "album_id": "72057594126419846", "photo_flickr_id": "140991017", "setting": "last-3-pick-old-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "45138", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this guy right here has to be the worst batter ever", "storylet_id": "225690"}], [{"original_text": "Every time he got to the plate he soiled striked out of ", "album_id": "72057594126419846", "photo_flickr_id": "140991000", "setting": "last-3-pick-old-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "45138", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "every time he got to the plate he soiled striked out of", "storylet_id": "225691"}], [{"original_text": "The home team was really good ", "album_id": "72057594126419846", "photo_flickr_id": "140990990", "setting": "last-3-pick-old-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "45138", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the home team was really good", "storylet_id": "225692"}], [{"original_text": "This guy literally hit every thing ", "album_id": "72057594126419846", "photo_flickr_id": "140990955", "setting": "last-3-pick-old-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "45138", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this guy literally hit every thing", "storylet_id": "225693"}], [{"original_text": "This was the best home run of the day ", "album_id": "72057594126419846", "photo_flickr_id": "142563919", "setting": "last-3-pick-old-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "45138", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the best home run of the day", "storylet_id": "225694"}], [{"original_text": "We went to see a major league baseball game but I have no idea what teams are playing", "album_id": "72057594126419846", "photo_flickr_id": "140990940", "setting": "last-3-pick-old-and-tell", "worker_id": "VUN8GF9XFZ5U5JZ", "story_id": "45139", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to see a major league baseball game but i have no idea what teams are playing", "storylet_id": "225695"}], [{"original_text": "it looks like the pitcher is throwing lots of strikes", "album_id": "72057594126419846", "photo_flickr_id": "140990923", "setting": "last-3-pick-old-and-tell", "worker_id": "VUN8GF9XFZ5U5JZ", "story_id": "45139", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it looks like the pitcher is throwing lots of strikes", "storylet_id": "225696"}], [{"original_text": "The pitcher is throwing them so fast that the batters are not getting any hits", "album_id": "72057594126419846", "photo_flickr_id": "142563450", "setting": "last-3-pick-old-and-tell", "worker_id": "VUN8GF9XFZ5U5JZ", "story_id": "45139", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the pitcher is throwing them so fast that the batters are not getting any hits", "storylet_id": "225697"}], [{"original_text": "the crowd is going wild and is waiting for some action.", "album_id": "72057594126419846", "photo_flickr_id": "142564707", "setting": "last-3-pick-old-and-tell", "worker_id": "VUN8GF9XFZ5U5JZ", "story_id": "45139", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowd is going wild and is waiting for some action .", "storylet_id": "225698"}], [{"original_text": "finally a man on first base now the game is getting interesting. ", "album_id": "72057594126419846", "photo_flickr_id": "142565601", "setting": "last-3-pick-old-and-tell", "worker_id": "VUN8GF9XFZ5U5JZ", "story_id": "45139", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally a man on first base now the game is getting interesting .", "storylet_id": "225699"}], [{"original_text": "I found a new peep flavor today. Dark Chocolate. I had to give it a try.", "album_id": "72157623242343043", "photo_flickr_id": "4336007642", "setting": "first-2-pick-and-tell", "worker_id": "J8VS5KJPKNQN537", "story_id": "45140", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i found a new peep flavor today . dark chocolate . i had to give it a try .", "storylet_id": "225700"}], [{"original_text": "Each peep is individually wrapped. New! was written across, building up my excitement to try it. ", "album_id": "72157623242343043", "photo_flickr_id": "4336025524", "setting": "first-2-pick-and-tell", "worker_id": "J8VS5KJPKNQN537", "story_id": "45140", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each peep is individually wrapped . new ! was written across , building up my excitement to try it .", "storylet_id": "225701"}], [{"original_text": "I took my first bite and documented it. ", "album_id": "72157623242343043", "photo_flickr_id": "4335297411", "setting": "first-2-pick-and-tell", "worker_id": "J8VS5KJPKNQN537", "story_id": "45140", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i took my first bite and documented it .", "storylet_id": "225702"}], [{"original_text": "First bite and I was done. It didn't taste how I thought it would taste.", "album_id": "72157623242343043", "photo_flickr_id": "4335300497", "setting": "first-2-pick-and-tell", "worker_id": "J8VS5KJPKNQN537", "story_id": "45140", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "first bite and i was done . it did n't taste how i thought it would taste .", "storylet_id": "225703"}], [{"original_text": "Now I am left with a full box of dark chocolate peeps!", "album_id": "72157623242343043", "photo_flickr_id": "4336059180", "setting": "first-2-pick-and-tell", "worker_id": "J8VS5KJPKNQN537", "story_id": "45140", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now i am left with a full box of dark chocolate peeps !", "storylet_id": "225704"}], [{"original_text": "Gone are the days when Peeps only came in yellow. ", "album_id": "72157623242343043", "photo_flickr_id": "4336007642", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45141", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "gone are the days when peeps only came in yellow .", "storylet_id": "225705"}], [{"original_text": "Now they are available with a dark chocolate coating.", "album_id": "72157623242343043", "photo_flickr_id": "4335275573", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45141", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "now they are available with a dark chocolate coating .", "storylet_id": "225706"}], [{"original_text": "You can hold a Peep in your hand. ", "album_id": "72157623242343043", "photo_flickr_id": "4336037246", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45141", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you can hold a peep in your hand .", "storylet_id": "225707"}], [{"original_text": "Inside you will find the familiar yellow. ", "album_id": "72157623242343043", "photo_flickr_id": "4335300497", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45141", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "inside you will find the familiar yellow .", "storylet_id": "225708"}], [{"original_text": "Chocolate covered Peeps are doubly delicious. ", "album_id": "72157623242343043", "photo_flickr_id": "4336053052", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45141", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "chocolate covered peeps are doubly delicious .", "storylet_id": "225709"}], [{"original_text": "Sitting in front of the box of peeps, i knew i couldn't resist.", "album_id": "72157623242343043", "photo_flickr_id": "4336007642", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45142", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sitting in front of the box of peeps , i knew i could n't resist .", "storylet_id": "225710"}], [{"original_text": "I got one out and opened the bag.", "album_id": "72157623242343043", "photo_flickr_id": "4336025524", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45142", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got one out and opened the bag .", "storylet_id": "225711"}], [{"original_text": "Took just a small bite to start.", "album_id": "72157623242343043", "photo_flickr_id": "4335297411", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45142", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "took just a small bite to start .", "storylet_id": "225712"}], [{"original_text": "The inside is so delicious but i knew i could only have one.", "album_id": "72157623242343043", "photo_flickr_id": "4335300497", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45142", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the inside is so delicious but i knew i could only have one .", "storylet_id": "225713"}], [{"original_text": "So i looked at the box one last time and walked away.", "album_id": "72157623242343043", "photo_flickr_id": "4336059180", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45142", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so i looked at the box one last time and walked away .", "storylet_id": "225714"}], [{"original_text": "There was a new candy at the store today.", "album_id": "72157623242343043", "photo_flickr_id": "4336007642", "setting": "last-3-pick-old-and-tell", "worker_id": "7I5TYX370536UGU", "story_id": "45143", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a new candy at the store today .", "storylet_id": "225715"}], [{"original_text": "He carefully unboxed his acquisition.", "album_id": "72157623242343043", "photo_flickr_id": "4335275573", "setting": "last-3-pick-old-and-tell", "worker_id": "7I5TYX370536UGU", "story_id": "45143", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he carefully unboxed his acquisition .", "storylet_id": "225716"}], [{"original_text": "The weight of the Peep in his hand was extremely satisfying.", "album_id": "72157623242343043", "photo_flickr_id": "4336037246", "setting": "last-3-pick-old-and-tell", "worker_id": "7I5TYX370536UGU", "story_id": "45143", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the weight of the peep in his hand was extremely satisfying .", "storylet_id": "225717"}], [{"original_text": "The first bite surprised him with its intensity.", "album_id": "72157623242343043", "photo_flickr_id": "4335300497", "setting": "last-3-pick-old-and-tell", "worker_id": "7I5TYX370536UGU", "story_id": "45143", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the first bite surprised him with its intensity .", "storylet_id": "225718"}], [{"original_text": "He knew he would soon devour the entire package.", "album_id": "72157623242343043", "photo_flickr_id": "4336053052", "setting": "last-3-pick-old-and-tell", "worker_id": "7I5TYX370536UGU", "story_id": "45143", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he knew he would soon devour the entire package .", "storylet_id": "225719"}], [{"original_text": "The peeps came in a box", "album_id": "72157623242343043", "photo_flickr_id": "4336007642", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45144", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the peeps came in a box", "storylet_id": "225720"}], [{"original_text": "and then in packages.", "album_id": "72157623242343043", "photo_flickr_id": "4335275573", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45144", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and then in packages .", "storylet_id": "225721"}], [{"original_text": "They were huge", "album_id": "72157623242343043", "photo_flickr_id": "4336037246", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45144", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were huge", "storylet_id": "225722"}], [{"original_text": "and filled with yellow.", "album_id": "72157623242343043", "photo_flickr_id": "4335300497", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45144", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and filled with yellow .", "storylet_id": "225723"}], [{"original_text": "It was so much to eat.", "album_id": "72157623242343043", "photo_flickr_id": "4336053052", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45144", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was so much to eat .", "storylet_id": "225724"}], [{"original_text": "They could be anywhere.", "album_id": "72157600054101036", "photo_flickr_id": "449677547", "setting": "first-2-pick-and-tell", "worker_id": "H9W993Z6DLFO3L1", "story_id": "45145", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they could be anywhere .", "storylet_id": "225725"}], [{"original_text": "You never knew where to check next.", "album_id": "72157600054101036", "photo_flickr_id": "449671334", "setting": "first-2-pick-and-tell", "worker_id": "H9W993Z6DLFO3L1", "story_id": "45145", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you never knew where to check next .", "storylet_id": "225726"}], [{"original_text": "She thought she was another!", "album_id": "72157600054101036", "photo_flickr_id": "449688395", "setting": "first-2-pick-and-tell", "worker_id": "H9W993Z6DLFO3L1", "story_id": "45145", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she thought she was another !", "storylet_id": "225727"}], [{"original_text": "Maybe down here?", "album_id": "72157600054101036", "photo_flickr_id": "449680384", "setting": "first-2-pick-and-tell", "worker_id": "H9W993Z6DLFO3L1", "story_id": "45145", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "maybe down here ?", "storylet_id": "225728"}], [{"original_text": "Hey come help me please!", "album_id": "72157600054101036", "photo_flickr_id": "449687026", "setting": "first-2-pick-and-tell", "worker_id": "H9W993Z6DLFO3L1", "story_id": "45145", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "hey come help me please !", "storylet_id": "225729"}], [{"original_text": "The girls were excited to play.", "album_id": "72157600054101036", "photo_flickr_id": "449678561", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45146", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girls were excited to play .", "storylet_id": "225730"}], [{"original_text": "They gathered their bags.", "album_id": "72157600054101036", "photo_flickr_id": "449681505", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45146", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they gathered their bags .", "storylet_id": "225731"}], [{"original_text": "They didn't know what they were filling them with.", "album_id": "72157600054101036", "photo_flickr_id": "449677426", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45146", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they did n't know what they were filling them with .", "storylet_id": "225732"}], [{"original_text": "But they were running around anyway.", "album_id": "72157600054101036", "photo_flickr_id": "449688395", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45146", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but they were running around anyway .", "storylet_id": "225733"}], [{"original_text": "But they still got distracted by the TV.", "album_id": "72157600054101036", "photo_flickr_id": "449692528", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45146", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but they still got distracted by the tv .", "storylet_id": "225734"}], [{"original_text": "The little girl played in her room.", "album_id": "72157600054101036", "photo_flickr_id": "449677547", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45147", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the little girl played in her room .", "storylet_id": "225735"}], [{"original_text": "She then moved to the living room to explore.", "album_id": "72157600054101036", "photo_flickr_id": "449671334", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45147", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she then moved to the living room to explore .", "storylet_id": "225736"}], [{"original_text": "The room was well organized.", "album_id": "72157600054101036", "photo_flickr_id": "449688395", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45147", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the room was well organized .", "storylet_id": "225737"}], [{"original_text": "She was able to find many items.", "album_id": "72157600054101036", "photo_flickr_id": "449680384", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45147", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was able to find many items .", "storylet_id": "225738"}], [{"original_text": "The girl had a companion that also loved things.", "album_id": "72157600054101036", "photo_flickr_id": "449687026", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45147", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girl had a companion that also loved things .", "storylet_id": "225739"}], [{"original_text": "The girls are collecting easter eggs.", "album_id": "72157600054101036", "photo_flickr_id": "449678561", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "45148", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girls are collecting easter eggs .", "storylet_id": "225740"}], [{"original_text": "They hid them all around the house.", "album_id": "72157600054101036", "photo_flickr_id": "449681505", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "45148", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they hid them all around the house .", "storylet_id": "225741"}], [{"original_text": "Now they are running around to find them.", "album_id": "72157600054101036", "photo_flickr_id": "449677426", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "45148", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now they are running around to find them .", "storylet_id": "225742"}], [{"original_text": "They stuffed them with candy.", "album_id": "72157600054101036", "photo_flickr_id": "449688395", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "45148", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they stuffed them with candy .", "storylet_id": "225743"}], [{"original_text": "Who will find the most?", "album_id": "72157600054101036", "photo_flickr_id": "449692528", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "45148", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "who will find the most ?", "storylet_id": "225744"}], [{"original_text": "Searching for easter eggs is so fun.", "album_id": "72157600054101036", "photo_flickr_id": "449678561", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "45149", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "searching for easter eggs is so fun .", "storylet_id": "225745"}], [{"original_text": "Each child looking for bragging rights for finding the most.", "album_id": "72157600054101036", "photo_flickr_id": "449681505", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "45149", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "each child looking for bragging rights for finding the most .", "storylet_id": "225746"}], [{"original_text": "The kids search high and low to be the best.", "album_id": "72157600054101036", "photo_flickr_id": "449677426", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "45149", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids search high and low to be the best .", "storylet_id": "225747"}], [{"original_text": "and everyone knows that in the end.", "album_id": "72157600054101036", "photo_flickr_id": "449688395", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "45149", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and everyone knows that in the end .", "storylet_id": "225748"}], [{"original_text": "there can only be one winner ", "album_id": "72157600054101036", "photo_flickr_id": "449692528", "setting": "last-3-pick-old-and-tell", "worker_id": "7IQBKRVFLOR7USD", "story_id": "45149", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there can only be one winner", "storylet_id": "225749"}], [{"original_text": "There was an Easter sunday play.", "album_id": "72157600054176148", "photo_flickr_id": "449737612", "setting": "first-2-pick-and-tell", "worker_id": "TMPQ5B9SH7SSPTO", "story_id": "45150", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an easter sunday play .", "storylet_id": "225750"}], [{"original_text": "The church members watched in interest. ", "album_id": "72157600054176148", "photo_flickr_id": "449737948", "setting": "first-2-pick-and-tell", "worker_id": "TMPQ5B9SH7SSPTO", "story_id": "45150", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the church members watched in interest .", "storylet_id": "225751"}], [{"original_text": "The little girl can't wait to get out of church for the food and candy just waiting for her to eat.", "album_id": "72157600054176148", "photo_flickr_id": "449738112", "setting": "first-2-pick-and-tell", "worker_id": "TMPQ5B9SH7SSPTO", "story_id": "45150", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the little girl ca n't wait to get out of church for the food and candy just waiting for her to eat .", "storylet_id": "225752"}], [{"original_text": "There was a full spread of food.", "album_id": "72157600054176148", "photo_flickr_id": "449745271", "setting": "first-2-pick-and-tell", "worker_id": "TMPQ5B9SH7SSPTO", "story_id": "45150", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a full spread of food .", "storylet_id": "225753"}], [{"original_text": "There was also plenty of candy.", "album_id": "72157600054176148", "photo_flickr_id": "449745601", "setting": "first-2-pick-and-tell", "worker_id": "TMPQ5B9SH7SSPTO", "story_id": "45150", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was also plenty of candy .", "storylet_id": "225754"}], [{"original_text": "Today I went to church to help get the Easter baskets ready for the children", "album_id": "72157600054176148", "photo_flickr_id": "449745601", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "45151", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i went to church to help get the easter baskets ready for the children", "storylet_id": "225755"}], [{"original_text": "take a look at this great display I did for Emily", "album_id": "72157600054176148", "photo_flickr_id": "449746067", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "45151", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "take a look at this great display i did for [female]", "storylet_id": "225756"}], [{"original_text": "after we made the baskets we painted eggs for the kids", "album_id": "72157600054176148", "photo_flickr_id": "449746661", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "45151", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after we made the baskets we painted eggs for the kids", "storylet_id": "225757"}], [{"original_text": "here is a surprise basket we did for Jessica", "album_id": "72157600054176148", "photo_flickr_id": "449737090", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "45151", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is a surprise basket we did for [female]", "storylet_id": "225758"}], [{"original_text": "and here is Emma holding her basket in church. isnt it lovely!", "album_id": "72157600054176148", "photo_flickr_id": "449738112", "setting": "first-2-pick-and-tell", "worker_id": "INXY64IP8HUAQQU", "story_id": "45151", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and here is [female] holding her basket in church . isnt it lovely !", "storylet_id": "225759"}], [{"original_text": "We decorated things for easter.", "album_id": "72157600054176148", "photo_flickr_id": "449745601", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45152", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decorated things for easter .", "storylet_id": "225760"}], [{"original_text": "The bunny turned out good.", "album_id": "72157600054176148", "photo_flickr_id": "449746067", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45152", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bunny turned out good .", "storylet_id": "225761"}], [{"original_text": "The eggs were perfect.", "album_id": "72157600054176148", "photo_flickr_id": "449746661", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45152", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the eggs were perfect .", "storylet_id": "225762"}], [{"original_text": "We set up the baskets. ", "album_id": "72157600054176148", "photo_flickr_id": "449737090", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45152", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we set up the baskets .", "storylet_id": "225763"}], [{"original_text": "We gave them all to the kids.", "album_id": "72157600054176148", "photo_flickr_id": "449738112", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45152", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we gave them all to the kids .", "storylet_id": "225764"}], [{"original_text": "It was just about time for religious services to start.", "album_id": "72157600054176148", "photo_flickr_id": "449737612", "setting": "last-3-pick-old-and-tell", "worker_id": "SZBIIWD09BZNR7T", "story_id": "45153", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was just about time for religious services to start .", "storylet_id": "225765"}], [{"original_text": "For some reason kids brought their Easter baskets to church with them even though the Easter Bunny is a pagan symbol.", "album_id": "72157600054176148", "photo_flickr_id": "449737948", "setting": "last-3-pick-old-and-tell", "worker_id": "SZBIIWD09BZNR7T", "story_id": "45153", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "for some reason kids brought their easter baskets to church with them even though the easter bunny is a pagan symbol .", "storylet_id": "225766"}], [{"original_text": "Little Clara was eating the fake grass.", "album_id": "72157600054176148", "photo_flickr_id": "449738112", "setting": "last-3-pick-old-and-tell", "worker_id": "SZBIIWD09BZNR7T", "story_id": "45153", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "little [female] was eating the fake grass .", "storylet_id": "225767"}], [{"original_text": "After services, there was a panoply of food for everyone to eat.", "album_id": "72157600054176148", "photo_flickr_id": "449745271", "setting": "last-3-pick-old-and-tell", "worker_id": "SZBIIWD09BZNR7T", "story_id": "45153", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after services , there was a panoply of food for everyone to eat .", "storylet_id": "225768"}], [{"original_text": "Though most people wanted the chocolate bunnies most of all.", "album_id": "72157600054176148", "photo_flickr_id": "449745601", "setting": "last-3-pick-old-and-tell", "worker_id": "SZBIIWD09BZNR7T", "story_id": "45153", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "though most people wanted the chocolate bunnies most of all .", "storylet_id": "225769"}], [{"original_text": "Today we went to visit the Easter candy store.", "album_id": "72157600054176148", "photo_flickr_id": "449745601", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "45154", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to visit the easter candy store .", "storylet_id": "225770"}], [{"original_text": "They had a big bunny that was made entirely of chocolate.", "album_id": "72157600054176148", "photo_flickr_id": "449746067", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "45154", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had a big bunny that was made entirely of chocolate .", "storylet_id": "225771"}], [{"original_text": "Here are some eggs made of different types of chocolate and fillings.", "album_id": "72157600054176148", "photo_flickr_id": "449746661", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "45154", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here are some eggs made of different types of chocolate and fillings .", "storylet_id": "225772"}], [{"original_text": "They had some cool and fun easter baskets you can buy.", "album_id": "72157600054176148", "photo_flickr_id": "449737090", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "45154", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had some cool and fun easter baskets you can buy .", "storylet_id": "225773"}], [{"original_text": "Lucky Lily was able to take one home herself.", "album_id": "72157600054176148", "photo_flickr_id": "449738112", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "45154", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lucky [female] was able to take one home herself .", "storylet_id": "225774"}], [{"original_text": "It was a cold day on this holiday.", "album_id": "72157600054248575", "photo_flickr_id": "449836847", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45155", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a cold day on this holiday .", "storylet_id": "225775"}], [{"original_text": "Snow barricaded the homes shut.", "album_id": "72157600054248575", "photo_flickr_id": "449827530", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45155", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "snow barricaded the homes shut .", "storylet_id": "225776"}], [{"original_text": "But some people still celebrated.", "album_id": "72157600054248575", "photo_flickr_id": "449828710", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45155", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but some people still celebrated .", "storylet_id": "225777"}], [{"original_text": "They painted their eggs for Easter.", "album_id": "72157600054248575", "photo_flickr_id": "449845527", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45155", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they painted their eggs for easter .", "storylet_id": "225778"}], [{"original_text": "And they tried to enjoy the holiday despite the cold.", "album_id": "72157600054248575", "photo_flickr_id": "449839374", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45155", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and they tried to enjoy the holiday despite the cold .", "storylet_id": "225779"}], [{"original_text": "In the morning we went out to take pictures of the water.", "album_id": "72157600054248575", "photo_flickr_id": "449834359", "setting": "first-2-pick-and-tell", "worker_id": "7RLLIKPJUPUTTAF", "story_id": "45156", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the morning we went out to take pictures of the water .", "storylet_id": "225780"}], [{"original_text": "It was very active and frothy.", "album_id": "72157600054248575", "photo_flickr_id": "449827530", "setting": "first-2-pick-and-tell", "worker_id": "7RLLIKPJUPUTTAF", "story_id": "45156", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was very active and frothy .", "storylet_id": "225781"}], [{"original_text": "We came back inside to our warm room.", "album_id": "72157600054248575", "photo_flickr_id": "449828710", "setting": "first-2-pick-and-tell", "worker_id": "7RLLIKPJUPUTTAF", "story_id": "45156", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we came back inside to our warm room .", "storylet_id": "225782"}], [{"original_text": "We dyed Easter eggs!", "album_id": "72157600054248575", "photo_flickr_id": "449845527", "setting": "first-2-pick-and-tell", "worker_id": "7RLLIKPJUPUTTAF", "story_id": "45156", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we dyed easter eggs !", "storylet_id": "225783"}], [{"original_text": "That evening we snapped another picture of the water, now much calmer.", "album_id": "72157600054248575", "photo_flickr_id": "449852665", "setting": "first-2-pick-and-tell", "worker_id": "7RLLIKPJUPUTTAF", "story_id": "45156", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that evening we snapped another picture of the water , now much calmer .", "storylet_id": "225784"}], [{"original_text": "The pond was frozen and covered with snow", "album_id": "72157600054248575", "photo_flickr_id": "449836847", "setting": "last-3-pick-old-and-tell", "worker_id": "SZBIIWD09BZNR7T", "story_id": "45157", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the pond was frozen and covered with snow", "storylet_id": "225785"}], [{"original_text": "Some of it was not covered in ice but it still wasn't inviting.", "album_id": "72157600054248575", "photo_flickr_id": "449827530", "setting": "last-3-pick-old-and-tell", "worker_id": "SZBIIWD09BZNR7T", "story_id": "45157", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "some of it was not covered in ice but it still was n't inviting .", "storylet_id": "225786"}], [{"original_text": "So, we all went inside to warm up and light up some candles.", "album_id": "72157600054248575", "photo_flickr_id": "449828710", "setting": "last-3-pick-old-and-tell", "worker_id": "SZBIIWD09BZNR7T", "story_id": "45157", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so , we all went inside to warm up and light up some candles .", "storylet_id": "225787"}], [{"original_text": "We made Easter Egg faces", "album_id": "72157600054248575", "photo_flickr_id": "449845527", "setting": "last-3-pick-old-and-tell", "worker_id": "SZBIIWD09BZNR7T", "story_id": "45157", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we made organization organization faces", "storylet_id": "225788"}], [{"original_text": "After that, we chatted until the sunset.", "album_id": "72157600054248575", "photo_flickr_id": "449839374", "setting": "last-3-pick-old-and-tell", "worker_id": "SZBIIWD09BZNR7T", "story_id": "45157", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after that , we chatted until the sunset .", "storylet_id": "225789"}], [{"original_text": "I've never been to the cottage in the winter. The whole lake was frozen. ", "album_id": "72157600054248575", "photo_flickr_id": "449836847", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "45158", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 've never been to the cottage in the winter . the whole lake was frozen .", "storylet_id": "225790"}], [{"original_text": "You could literally walk across the the mountains in the distance. ", "album_id": "72157600054248575", "photo_flickr_id": "449827530", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "45158", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you could literally walk across the the mountains in the distance .", "storylet_id": "225791"}], [{"original_text": "We laid out some candles to keep warm at night. ", "album_id": "72157600054248575", "photo_flickr_id": "449828710", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "45158", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we laid out some candles to keep warm at night .", "storylet_id": "225792"}], [{"original_text": "The kids did some arts an crafts inside because it was too cold out. ", "album_id": "72157600054248575", "photo_flickr_id": "449845527", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "45158", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the kids did some arts an crafts inside because it was too cold out .", "storylet_id": "225793"}], [{"original_text": "At the end of the week though the snow melted, it was nice while it lasted.", "album_id": "72157600054248575", "photo_flickr_id": "449839374", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "45158", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the week though the snow melted , it was nice while it lasted .", "storylet_id": "225794"}], [{"original_text": "Easter on the lake was a cold one this year! The dock was frozen over!", "album_id": "72157600054248575", "photo_flickr_id": "449836847", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "45159", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "easter on the lake was a cold one this year ! the dock was frozen over !", "storylet_id": "225795"}], [{"original_text": "The waves still crashed on the shore, but boy they were cold.", "album_id": "72157600054248575", "photo_flickr_id": "449827530", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "45159", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the waves still crashed on the shore , but boy they were cold .", "storylet_id": "225796"}], [{"original_text": "Inside our warm house, we had our decorations.", "album_id": "72157600054248575", "photo_flickr_id": "449828710", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "45159", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "inside our warm house , we had our decorations .", "storylet_id": "225797"}], [{"original_text": "We painted our eggs as usual.", "album_id": "72157600054248575", "photo_flickr_id": "449845527", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "45159", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we painted our eggs as usual .", "storylet_id": "225798"}], [{"original_text": "We watched the sun set as we cooked dinner.", "album_id": "72157600054248575", "photo_flickr_id": "449839374", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "45159", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we watched the sun set as we cooked dinner .", "storylet_id": "225799"}], [{"original_text": "I decided to sell my crafts today. This one I made yesterday. It's my favorite heart design. I'm selling it for $5.00. ", "album_id": "72157594524008673", "photo_flickr_id": "383388415", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45160", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to sell my crafts today . this one i made yesterday . it 's my favorite heart design . i 'm selling it for $ 5.00 .", "storylet_id": "225800"}], [{"original_text": "The next one I'm selling for $8.00. It's a cool looking decorative heart. It took me 5 days to make. ", "album_id": "72157594524008673", "photo_flickr_id": "383388424", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45160", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the next one i 'm selling for $ 8.00 . it 's a cool looking decorative heart . it took me 5 days to make .", "storylet_id": "225801"}], [{"original_text": "This cool set is $12.00. I made the pot by hand and the heart took me 15 minutes. ", "album_id": "72157594524008673", "photo_flickr_id": "383388427", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45160", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this cool set is $ 12.00 . i made the pot by hand and the heart took me 15 minutes .", "storylet_id": "225802"}], [{"original_text": "Next I'm selling these cool tags. I made them after the last set. They only took me 5 minutes. They are .25 cents apiece. ", "album_id": "72157594524008673", "photo_flickr_id": "383513247", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45160", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "next i 'm selling these cool tags . i made them after the last set . they only took me 5 minutes . they are .25 cents apiece .", "storylet_id": "225803"}], [{"original_text": "Lastly I made these tags from old toilet paper and my oven. They are $50.00 each. They are magical and make wishes come true. ", "album_id": "72157594524008673", "photo_flickr_id": "383513265", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45160", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly i made these tags from old toilet paper and my oven . they are $ 50.00 each . they are magical and make wishes come true .", "storylet_id": "225804"}], [{"original_text": "People made stuff for the holidays.", "album_id": "72157594524008673", "photo_flickr_id": "383388415", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45161", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people made stuff for the holidays .", "storylet_id": "225805"}], [{"original_text": "Someone made a fancy clock.", "album_id": "72157594524008673", "photo_flickr_id": "383388418", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45161", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "someone made a fancy clock .", "storylet_id": "225806"}], [{"original_text": "Other people made their own stuffed hearts.", "album_id": "72157594524008673", "photo_flickr_id": "383388427", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45161", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other people made their own stuffed hearts .", "storylet_id": "225807"}], [{"original_text": "They had gift tags ready to go too.", "album_id": "72157594524008673", "photo_flickr_id": "383477926", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45161", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had gift tags ready to go too .", "storylet_id": "225808"}], [{"original_text": "Some people were even getting ready for Easter.", "album_id": "72157594524008673", "photo_flickr_id": "383513250", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45161", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people were even getting ready for easter .", "storylet_id": "225809"}], [{"original_text": "I found allot of old nick nacks in my mind garage this weekend ", "album_id": "72157594524008673", "photo_flickr_id": "383388415", "setting": "last-3-pick-old-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "45162", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i found allot of old nick nacks in my mind garage this weekend", "storylet_id": "225810"}], [{"original_text": "This one is actually a necklace ", "album_id": "72157594524008673", "photo_flickr_id": "383388418", "setting": "last-3-pick-old-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "45162", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one is actually a necklace", "storylet_id": "225811"}], [{"original_text": "I believe this one is part of a tea set ", "album_id": "72157594524008673", "photo_flickr_id": "383388427", "setting": "last-3-pick-old-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "45162", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i believe this one is part of a tea set", "storylet_id": "225812"}], [{"original_text": "I find this confusing cause I don't know what it is ", "album_id": "72157594524008673", "photo_flickr_id": "383477926", "setting": "last-3-pick-old-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "45162", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i find this confusing cause i do n't know what it is", "storylet_id": "225813"}], [{"original_text": "I have no idea what these things are either ", "album_id": "72157594524008673", "photo_flickr_id": "383513250", "setting": "last-3-pick-old-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "45162", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i have no idea what these things are either", "storylet_id": "225814"}], [{"original_text": "An artist living in this house.", "album_id": "72157594524008673", "photo_flickr_id": "383388415", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "45163", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "an artist living in this house .", "storylet_id": "225815"}], [{"original_text": "She sells various heart shaped pillows at a local arts market.", "album_id": "72157594524008673", "photo_flickr_id": "383388424", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "45163", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she sells various heart shaped pillows at a local arts market .", "storylet_id": "225816"}], [{"original_text": "This heart shaped pin pillow and potpourri container are to be given to a friend.", "album_id": "72157594524008673", "photo_flickr_id": "383388427", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "45163", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this heart shaped pin pillow and potpourri container are to be given to a friend .", "storylet_id": "225817"}], [{"original_text": "She also sells various artistic necklaces. ", "album_id": "72157594524008673", "photo_flickr_id": "383513247", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "45163", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she also sells various artistic necklaces .", "storylet_id": "225818"}], [{"original_text": "These are labels to place item description and price of the item.", "album_id": "72157594524008673", "photo_flickr_id": "383513265", "setting": "last-3-pick-old-and-tell", "worker_id": "QARFKD7647RUNZN", "story_id": "45163", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these are labels to place item description and price of the item .", "storylet_id": "225819"}], [{"original_text": "These products were hand made by a woman.", "album_id": "72157594524008673", "photo_flickr_id": "383388415", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45164", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these products were hand made by a woman .", "storylet_id": "225820"}], [{"original_text": "This object is very unique and could be worn as a pin.", "album_id": "72157594524008673", "photo_flickr_id": "383388418", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45164", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this object is very unique and could be worn as a pin .", "storylet_id": "225821"}], [{"original_text": "This product makes your house smell good.", "album_id": "72157594524008673", "photo_flickr_id": "383388427", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45164", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this product makes your house smell good .", "storylet_id": "225822"}], [{"original_text": "This product could be used as a decoration.", "album_id": "72157594524008673", "photo_flickr_id": "383477926", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45164", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this product could be used as a decoration .", "storylet_id": "225823"}], [{"original_text": "These medallions are great for Christmas.", "album_id": "72157594524008673", "photo_flickr_id": "383513250", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45164", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these medallions are great for christmas .", "storylet_id": "225824"}], [{"original_text": "This is me today. I am so ready to get this over with! ", "album_id": "72057594078189875", "photo_flickr_id": "109945246", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45165", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is me today . i am so ready to get this over with !", "storylet_id": "225825"}], [{"original_text": "Grandma Kate and Maggie arrived for my Birthday. It was a total surprise! ", "album_id": "72057594078189875", "photo_flickr_id": "109949829", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45165", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma [female] and [female] arrived for my birthday . it was a total surprise !", "storylet_id": "225826"}], [{"original_text": "They brought me a dog! It's my present!! I named him Bob Sagat! He's so adorable.", "album_id": "72057594078189875", "photo_flickr_id": "109954965", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45165", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they brought me a dog ! it 's my present ! ! i named him [male] sagat ! he 's so adorable .", "storylet_id": "225827"}], [{"original_text": "More family came. They brought me a cake. Maggie helped me blow the candles out. ", "album_id": "72057594078189875", "photo_flickr_id": "109954315", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45165", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more family came . they brought me a cake . [female] helped me blow the candles out .", "storylet_id": "225828"}], [{"original_text": "Up close of my gorgeous cake. I didn't want to eat it because it was so pretty. My aunt Darla worked hard on it. ", "album_id": "72057594078189875", "photo_flickr_id": "109953550", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45165", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "up close of my gorgeous cake . i did n't want to eat it because it was so pretty . my aunt [female] worked hard on it .", "storylet_id": "225829"}], [{"original_text": "Today we saw some family", "album_id": "72057594078189875", "photo_flickr_id": "109945246", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45166", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we saw some family", "storylet_id": "225830"}], [{"original_text": "Everyone showed up for the fun.", "album_id": "72057594078189875", "photo_flickr_id": "109949829", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45166", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone showed up for the fun .", "storylet_id": "225831"}], [{"original_text": "It was a fun time to take a picture together.", "album_id": "72057594078189875", "photo_flickr_id": "109950727", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45166", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a fun time to take a picture together .", "storylet_id": "225832"}], [{"original_text": "We wanted to always remember our fun moments.", "album_id": "72057594078189875", "photo_flickr_id": "109951172", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45166", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we wanted to always remember our fun moments .", "storylet_id": "225833"}], [{"original_text": "The day ended with a surprise cake for the family.", "album_id": "72057594078189875", "photo_flickr_id": "109953908", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45166", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day ended with a surprise cake for the family .", "storylet_id": "225834"}], [{"original_text": "Someone takes a picture of a lady while she looks away.", "album_id": "72057594078189875", "photo_flickr_id": "109945246", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "45167", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "someone takes a picture of a lady while she looks away .", "storylet_id": "225835"}], [{"original_text": "Grandma and baby takes a picture.", "album_id": "72057594078189875", "photo_flickr_id": "109949829", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "45167", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma and baby takes a picture .", "storylet_id": "225836"}], [{"original_text": "Then a group family picture is taken.", "album_id": "72057594078189875", "photo_flickr_id": "109950727", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "45167", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then a group family picture is taken .", "storylet_id": "225837"}], [{"original_text": "And other family picture is taken.", "album_id": "72057594078189875", "photo_flickr_id": "109951172", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "45167", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and other family picture is taken .", "storylet_id": "225838"}], [{"original_text": "Then the baby comes in and blows her candles out her cake.", "album_id": "72057594078189875", "photo_flickr_id": "109953908", "setting": "last-3-pick-old-and-tell", "worker_id": "ZEYXVK6EM390XK2", "story_id": "45167", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then the baby comes in and blows her candles out her cake .", "storylet_id": "225839"}], [{"original_text": "Mom posing for the camera on Tricia's birthday. ", "album_id": "72057594078189875", "photo_flickr_id": "109945246", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "45168", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "mom posing for the camera on [female] 's birthday .", "storylet_id": "225840"}], [{"original_text": "Grandma Elda loves her little granddaughter Tricia. ", "album_id": "72057594078189875", "photo_flickr_id": "109949829", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "45168", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma elda loves her little granddaughter [female] .", "storylet_id": "225841"}], [{"original_text": "Wolfie was not too pleased with me taking pictures of him. ", "album_id": "72057594078189875", "photo_flickr_id": "109954965", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "45168", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "wolfie was not too pleased with me taking pictures of him .", "storylet_id": "225842"}], [{"original_text": "Tricia ready to blow out her candle. ", "album_id": "72057594078189875", "photo_flickr_id": "109954315", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "45168", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] ready to blow out her candle .", "storylet_id": "225843"}], [{"original_text": "Her beautiful birthday cake. It was delicious! ", "album_id": "72057594078189875", "photo_flickr_id": "109953550", "setting": "last-3-pick-old-and-tell", "worker_id": "MQAK6UV3H75Q5KH", "story_id": "45168", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her beautiful birthday cake . it was delicious !", "storylet_id": "225844"}], [{"original_text": "We got together for Tricia's first birthday.", "album_id": "72057594078189875", "photo_flickr_id": "109945246", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "45169", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got together for [female] 's first birthday .", "storylet_id": "225845"}], [{"original_text": "Grandma had fun with Tricia and all the kids.", "album_id": "72057594078189875", "photo_flickr_id": "109949829", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "45169", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma had fun with [female] and all the kids .", "storylet_id": "225846"}], [{"original_text": "Tricia's dog is so cute! It looks like it wears makeup.", "album_id": "72057594078189875", "photo_flickr_id": "109954965", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "45169", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] 's dog is so cute ! it looks like it wears makeup .", "storylet_id": "225847"}], [{"original_text": "We gathered round to sing happy birthday.", "album_id": "72057594078189875", "photo_flickr_id": "109954315", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "45169", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we gathered round to sing happy birthday .", "storylet_id": "225848"}], [{"original_text": "The cake was simple but quite cute.", "album_id": "72057594078189875", "photo_flickr_id": "109953550", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "45169", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cake was simple but quite cute .", "storylet_id": "225849"}], [{"original_text": "I was very excited for Halloween this year.", "album_id": "72157626101447711", "photo_flickr_id": "5510802362", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45170", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was very excited for halloween this year .", "storylet_id": "225850"}], [{"original_text": "I invited all of my friends to my house.", "album_id": "72157626101447711", "photo_flickr_id": "5510802524", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45170", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i invited all of my friends to my house .", "storylet_id": "225851"}], [{"original_text": "We got together for a big party.", "album_id": "72157626101447711", "photo_flickr_id": "5510803374", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45170", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got together for a big party .", "storylet_id": "225852"}], [{"original_text": "Afterward we were really tired.", "album_id": "72157626101447711", "photo_flickr_id": "5510202059", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45170", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we were really tired .", "storylet_id": "225853"}], [{"original_text": "The next day some of us were still in our costumes.", "album_id": "72157626101447711", "photo_flickr_id": "5510202209", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45170", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the next day some of us were still in our costumes .", "storylet_id": "225854"}], [{"original_text": "\"I am Incredible Hulk's dad, and I will command this baby seal to defeat you all.\"", "album_id": "72157626101447711", "photo_flickr_id": "5510802362", "setting": "first-2-pick-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "45171", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "`` i am incredible hulk 's dad , and i will command this baby seal to defeat you all . ''", "storylet_id": "225855"}], [{"original_text": "\"Not if I have anything to say about it, Hulk's dad. I will send my greatest warrior against you.\"", "album_id": "72157626101447711", "photo_flickr_id": "5510804750", "setting": "first-2-pick-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "45171", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "`` not if i have anything to say about it , hulk 's dad . i will send my greatest warrior against you . ''", "storylet_id": "225856"}], [{"original_text": "~The horse whinnies approvingly~", "album_id": "72157626101447711", "photo_flickr_id": "5510805236", "setting": "first-2-pick-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "45171", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "~the horse whinnies approvingly~", "storylet_id": "225857"}], [{"original_text": "'I am Skullman's greatest warrior. I will defeat Hulk's dad.\"", "album_id": "72157626101447711", "photo_flickr_id": "5510806426", "setting": "first-2-pick-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "45171", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "'i am skullman 's greatest warrior . i will defeat hulk 's dad . ''", "storylet_id": "225858"}], [{"original_text": "\"This movie sucks. Next time, I pick the movie at Redbox.\"", "album_id": "72157626101447711", "photo_flickr_id": "5510202059", "setting": "first-2-pick-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "45171", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "`` this movie sucks . next time , i pick the movie at redbox . ''", "storylet_id": "225859"}], [{"original_text": "The annual parade brought out some people with kingly costumes. ", "album_id": "72157626101447711", "photo_flickr_id": "5510802362", "setting": "last-3-pick-old-and-tell", "worker_id": "LTLYL82FNFJGCJP", "story_id": "45172", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the annual parade brought out some people with kingly costumes .", "storylet_id": "225860"}], [{"original_text": "Several friends decided to pose in their costumes before the parade began. ", "album_id": "72157626101447711", "photo_flickr_id": "5510802524", "setting": "last-3-pick-old-and-tell", "worker_id": "LTLYL82FNFJGCJP", "story_id": "45172", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "several friends decided to pose in their costumes before the parade began .", "storylet_id": "225861"}], [{"original_text": "Many bystanders also liked to show off their funky clothes. ", "album_id": "72157626101447711", "photo_flickr_id": "5510803374", "setting": "last-3-pick-old-and-tell", "worker_id": "LTLYL82FNFJGCJP", "story_id": "45172", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many bystanders also liked to show off their funky clothes .", "storylet_id": "225862"}], [{"original_text": "After a long parade, some young participants needed a rest. ", "album_id": "72157626101447711", "photo_flickr_id": "5510202059", "setting": "last-3-pick-old-and-tell", "worker_id": "LTLYL82FNFJGCJP", "story_id": "45172", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after a long parade , some young participants needed a rest .", "storylet_id": "225863"}], [{"original_text": "But one young man stayed behind to show off his wild hair and cape. ", "album_id": "72157626101447711", "photo_flickr_id": "5510202209", "setting": "last-3-pick-old-and-tell", "worker_id": "LTLYL82FNFJGCJP", "story_id": "45172", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but one young man stayed behind to show off his wild hair and cape .", "storylet_id": "225864"}], [{"original_text": "YO, my name is Dhor I am a god from Canada Dry.", "album_id": "72157626101447711", "photo_flickr_id": "5510802362", "setting": "last-3-pick-old-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "45173", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "yo , my name is dhor i am a god from location dry .", "storylet_id": "225865"}], [{"original_text": "I use to cause alot of deaths back in the day. But that all changed one day.", "album_id": "72157626101447711", "photo_flickr_id": "5510804750", "setting": "last-3-pick-old-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "45173", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i use to cause alot of deaths back in the day . but that all changed one day .", "storylet_id": "225866"}], [{"original_text": "I woke up feeling like I wanted to make a new life. So i took my skelly horse and escaped to earth.", "album_id": "72157626101447711", "photo_flickr_id": "5510805236", "setting": "last-3-pick-old-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "45173", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i woke up feeling like i wanted to make a new life . so i took my skelly horse and escaped to earth .", "storylet_id": "225867"}], [{"original_text": "Where I linked up with my boy Flaming Flame. He taught me everything I needed to know about Earth.", "album_id": "72157626101447711", "photo_flickr_id": "5510806426", "setting": "last-3-pick-old-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "45173", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "where i linked up with my boy flaming flame . he taught me everything i needed to know about location .", "storylet_id": "225868"}], [{"original_text": "Im so happy that I decided to leave. Nowadays I spend my time chilling with some honeys and watching my boy Thor in the avengers.", "album_id": "72157626101447711", "photo_flickr_id": "5510202059", "setting": "last-3-pick-old-and-tell", "worker_id": "HY9OETF69L90FNY", "story_id": "45173", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "im so happy that i decided to leave . nowadays i spend my time chilling with some honeys and watching my boy thor in the avengers .", "storylet_id": "225869"}], [{"original_text": "We took the kids to the costume parade in the city.", "album_id": "72157626101447711", "photo_flickr_id": "5510802362", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45174", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took the kids to the costume parade in the city .", "storylet_id": "225870"}], [{"original_text": "The kids insisted on dressing up, even though it's not really a participatory parade.", "album_id": "72157626101447711", "photo_flickr_id": "5510802524", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45174", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids insisted on dressing up , even though it 's not really a participatory parade .", "storylet_id": "225871"}], [{"original_text": "I let them, because it's fun to dress up.", "album_id": "72157626101447711", "photo_flickr_id": "5510803374", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45174", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i let them , because it 's fun to dress up .", "storylet_id": "225872"}], [{"original_text": "We stayed at a friend's house, and all crashed on her couch.", "album_id": "72157626101447711", "photo_flickr_id": "5510202059", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45174", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stayed at a friend 's house , and all crashed on her couch .", "storylet_id": "225873"}], [{"original_text": "The next day, my son Jimmy was up early, eager for the parade!", "album_id": "72157626101447711", "photo_flickr_id": "5510202209", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45174", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the next day , my son [male] was up early , eager for the parade !", "storylet_id": "225874"}], [{"original_text": "Had a great vacation! Lots of lounging", "album_id": "72157600058403612", "photo_flickr_id": "452199449", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "45175", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "had a great vacation ! lots of lounging", "storylet_id": "225875"}], [{"original_text": "Saw some beautiful sunsets.", "album_id": "72157600058403612", "photo_flickr_id": "452198831", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "45175", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "saw some beautiful sunsets .", "storylet_id": "225876"}], [{"original_text": "Koalas out on a nature walk", "album_id": "72157600058403612", "photo_flickr_id": "452183690", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "45175", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "koalas out on a nature walk", "storylet_id": "225877"}], [{"original_text": "I even got close enough to pose with one.", "album_id": "72157600058403612", "photo_flickr_id": "452182938", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "45175", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i even got close enough to pose with one .", "storylet_id": "225878"}], [{"original_text": "Bridge on the walk back", "album_id": "72157600058403612", "photo_flickr_id": "452183242", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "45175", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "bridge on the walk back", "storylet_id": "225879"}], [{"original_text": "Today we went to the Kaw Nature Preserve. This is me. ", "album_id": "72157600058403612", "photo_flickr_id": "452182938", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45176", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to the organization organization organization . this is me .", "storylet_id": "225880"}], [{"original_text": "I was so happy to see the koala's! This is Fred the Koala. ", "album_id": "72157600058403612", "photo_flickr_id": "452183630", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45176", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was so happy to see the koala 's ! this is [male] the koala .", "storylet_id": "225881"}], [{"original_text": "He came down slowly to see us clearer. He was so sweet I didn't want to leave him. ", "album_id": "72157600058403612", "photo_flickr_id": "452183060", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45176", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he came down slowly to see us clearer . he was so sweet i did n't want to leave him .", "storylet_id": "225882"}], [{"original_text": "Later we made our way to the beach. We had so much fun. Frank my boyfriend got drunk. ", "album_id": "72157600058403612", "photo_flickr_id": "452199449", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45176", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later we made our way to the beach . we had so much fun . [male] my boyfriend got drunk .", "storylet_id": "225883"}], [{"original_text": "He eventually passed out and we left him to bake in the sun. ", "album_id": "72157600058403612", "photo_flickr_id": "452183540", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45176", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he eventually passed out and we left him to bake in the sun .", "storylet_id": "225884"}], [{"original_text": "Sally and Rob go to the beach.", "album_id": "72157600058403612", "photo_flickr_id": "452199449", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "45177", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] and rob go to the beach .", "storylet_id": "225885"}], [{"original_text": "It is a beautiful day.", "album_id": "72157600058403612", "photo_flickr_id": "452198831", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "45177", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it is a beautiful day .", "storylet_id": "225886"}], [{"original_text": "Even the wild life is relaxing.", "album_id": "72157600058403612", "photo_flickr_id": "452183690", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "45177", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the wild life is relaxing .", "storylet_id": "225887"}], [{"original_text": "Sally poses next to a tree.", "album_id": "72157600058403612", "photo_flickr_id": "452182938", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "45177", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] poses next to a tree .", "storylet_id": "225888"}], [{"original_text": "The end thier day with a walk in the wilderness ", "album_id": "72157600058403612", "photo_flickr_id": "452183242", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "45177", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the end thier day with a walk in the wilderness", "storylet_id": "225889"}], [{"original_text": "Relaxing on the beach and getting some sun.", "album_id": "72157600058403612", "photo_flickr_id": "452199449", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45178", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "relaxing on the beach and getting some sun .", "storylet_id": "225890"}], [{"original_text": "What a great site of the sun over the water.", "album_id": "72157600058403612", "photo_flickr_id": "452198831", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45178", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "what a great site of the sun over the water .", "storylet_id": "225891"}], [{"original_text": "A koala bear is up in the tree looking down.", "album_id": "72157600058403612", "photo_flickr_id": "452183690", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45178", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a koala bear is up in the tree looking down .", "storylet_id": "225892"}], [{"original_text": "Here I am with the koala above me.", "album_id": "72157600058403612", "photo_flickr_id": "452182938", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45178", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here i am with the koala above me .", "storylet_id": "225893"}], [{"original_text": "Here is the bridge we will be going on soon.", "album_id": "72157600058403612", "photo_flickr_id": "452183242", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45178", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is the bridge we will be going on soon .", "storylet_id": "225894"}], [{"original_text": "Today we went to the beach and laid in the sun.", "album_id": "72157600058403612", "photo_flickr_id": "452199449", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "45179", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went to the beach and laid in the sun .", "storylet_id": "225895"}], [{"original_text": "The sun was hot, but it was a really nice day.", "album_id": "72157600058403612", "photo_flickr_id": "452198831", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "45179", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the sun was hot , but it was a really nice day .", "storylet_id": "225896"}], [{"original_text": "Eventually, we went for a hike and saw a koala!", "album_id": "72157600058403612", "photo_flickr_id": "452183690", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "45179", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "eventually , we went for a hike and saw a koala !", "storylet_id": "225897"}], [{"original_text": "We took photos with the koala.", "album_id": "72157600058403612", "photo_flickr_id": "452182938", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "45179", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took photos with the koala .", "storylet_id": "225898"}], [{"original_text": "We found a wooden bridge and stopped for a photo.", "album_id": "72157600058403612", "photo_flickr_id": "452183242", "setting": "last-3-pick-old-and-tell", "worker_id": "F4FYK2UHBXLRDBR", "story_id": "45179", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we found a wooden bridge and stopped for a photo .", "storylet_id": "225899"}], [{"original_text": "The parents had set up a new swing set for the kids before everyone arrived for the Easter meal.", "album_id": "72157600060361468", "photo_flickr_id": "452382594", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "45180", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the parents had set up a new swing set for the kids before everyone arrived for the easter meal .", "storylet_id": "225900"}], [{"original_text": "The grandmother took a photo of the Tupperware pitchers she had managed to hang onto for 20 years.", "album_id": "72157600060361468", "photo_flickr_id": "452390393", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "45180", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the grandmother took a photo of the organization pitchers she had managed to hang onto for 20 years .", "storylet_id": "225901"}], [{"original_text": "The traditional bread with Easter eggs cooked right into the bread was a big favorite each year.", "album_id": "72157600060361468", "photo_flickr_id": "452394805", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "45180", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the traditional bread with easter eggs cooked right into the bread was a big favorite each year .", "storylet_id": "225902"}], [{"original_text": "Ham was served at the family's Easter meal every year without fail.", "album_id": "72157600060361468", "photo_flickr_id": "452402479", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "45180", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "ham was served at the family 's easter meal every year without fail .", "storylet_id": "225903"}], [{"original_text": "All the guests brought an impressive array of dishes for everyone to eat.", "album_id": "72157600060361468", "photo_flickr_id": "452386616", "setting": "first-2-pick-and-tell", "worker_id": "I1TNXOFF9FKYAAM", "story_id": "45180", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the guests brought an impressive array of dishes for everyone to eat .", "storylet_id": "225904"}], [{"original_text": "After getting a new puppy we planned on going to a hockey game.", "album_id": "72157600060361468", "photo_flickr_id": "452390393", "setting": "first-2-pick-and-tell", "worker_id": "JMDW0JEM22M6238", "story_id": "45181", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after getting a new puppy we planned on going to a hockey game .", "storylet_id": "225905"}], [{"original_text": "The puppy was so cute and cuddly. ", "album_id": "72157600060361468", "photo_flickr_id": "452392405", "setting": "first-2-pick-and-tell", "worker_id": "JMDW0JEM22M6238", "story_id": "45181", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the puppy was so cute and cuddly .", "storylet_id": "225906"}], [{"original_text": "The hockey game was fun to watch, but pretty cold in there.", "album_id": "72157600060361468", "photo_flickr_id": "452395567", "setting": "first-2-pick-and-tell", "worker_id": "JMDW0JEM22M6238", "story_id": "45181", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the hockey game was fun to watch , but pretty cold in there .", "storylet_id": "225907"}], [{"original_text": "We bundled up and snuggled close.", "album_id": "72157600060361468", "photo_flickr_id": "452382594", "setting": "first-2-pick-and-tell", "worker_id": "JMDW0JEM22M6238", "story_id": "45181", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we bundled up and snuggled close .", "storylet_id": "225908"}], [{"original_text": "Some of us decided a nap would be in order. ", "album_id": "72157600060361468", "photo_flickr_id": "452386616", "setting": "first-2-pick-and-tell", "worker_id": "JMDW0JEM22M6238", "story_id": "45181", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some of us decided a nap would be in order .", "storylet_id": "225909"}], [{"original_text": "The playground at school is quite today.", "album_id": "72157600060361468", "photo_flickr_id": "452382594", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "45182", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the playground at school is quite today .", "storylet_id": "225910"}], [{"original_text": "All the kids are getting ready for a bake sale", "album_id": "72157600060361468", "photo_flickr_id": "452390393", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "45182", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the kids are getting ready for a bake sale", "storylet_id": "225911"}], [{"original_text": "Some of them made cookies", "album_id": "72157600060361468", "photo_flickr_id": "452394805", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "45182", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of them made cookies", "storylet_id": "225912"}], [{"original_text": "And ham.", "album_id": "72157600060361468", "photo_flickr_id": "452402479", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "45182", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and ham .", "storylet_id": "225913"}], [{"original_text": "There is alot of food.", "album_id": "72157600060361468", "photo_flickr_id": "452386616", "setting": "last-3-pick-old-and-tell", "worker_id": "XQN8TSSQSBBJU3A", "story_id": "45182", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there is alot of food .", "storylet_id": "225914"}], [{"original_text": "This weekend we had a family BBQ at the park ", "album_id": "72157600060361468", "photo_flickr_id": "452382594", "setting": "last-3-pick-old-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "45183", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this weekend we had a family bbq at the park", "storylet_id": "225915"}], [{"original_text": "Gotta love the home made juice ", "album_id": "72157600060361468", "photo_flickr_id": "452390393", "setting": "last-3-pick-old-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "45183", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "got ta love the home made juice", "storylet_id": "225916"}], [{"original_text": "I didn't touch this because I had no idea what it was ", "album_id": "72157600060361468", "photo_flickr_id": "452394805", "setting": "last-3-pick-old-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "45183", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i did n't touch this because i had no idea what it was", "storylet_id": "225917"}], [{"original_text": "I don't know who made the ham but man it was good ", "album_id": "72157600060361468", "photo_flickr_id": "452402479", "setting": "last-3-pick-old-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "45183", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i do n't know who made the ham but man it was good", "storylet_id": "225918"}], [{"original_text": "This was my favorite end of the BBQ table ", "album_id": "72157600060361468", "photo_flickr_id": "452386616", "setting": "last-3-pick-old-and-tell", "worker_id": "VD5N9140EFIQB5T", "story_id": "45183", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was my favorite end of the bbq table", "storylet_id": "225919"}], [{"original_text": "Here is the swing set in our yard.", "album_id": "72157600060361468", "photo_flickr_id": "452382594", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45184", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is the swing set in our yard .", "storylet_id": "225920"}], [{"original_text": "The cups are on the table along with drinks.", "album_id": "72157600060361468", "photo_flickr_id": "452390393", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45184", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cups are on the table along with drinks .", "storylet_id": "225921"}], [{"original_text": "The food is starting to come out now.", "album_id": "72157600060361468", "photo_flickr_id": "452394805", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45184", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the food is starting to come out now .", "storylet_id": "225922"}], [{"original_text": "The ham looks so good.", "album_id": "72157600060361468", "photo_flickr_id": "452402479", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45184", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ham looks so good .", "storylet_id": "225923"}], [{"original_text": "Here are some more delicious food that are on the table.", "album_id": "72157600060361468", "photo_flickr_id": "452386616", "setting": "last-3-pick-old-and-tell", "worker_id": "N2932YWIHHOS4NW", "story_id": "45184", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here are some more delicious food that are on the table .", "storylet_id": "225924"}], [{"original_text": "Our view of the hockey game!", "album_id": "72157600059377320", "photo_flickr_id": "452757775", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "45185", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our view of the hockey game !", "storylet_id": "225925"}], [{"original_text": "Staying warm and posing wit my man!", "album_id": "72157600059377320", "photo_flickr_id": "452757961", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "45185", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "staying warm and posing wit my man !", "storylet_id": "225926"}], [{"original_text": "Our friends came with.", "album_id": "72157600059377320", "photo_flickr_id": "452758421", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "45185", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our friends came with .", "storylet_id": "225927"}], [{"original_text": "Can't believe he fell asleep!", "album_id": "72157600059377320", "photo_flickr_id": "452739334", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "45185", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "ca n't believe he fell asleep !", "storylet_id": "225928"}], [{"original_text": "Had fun at the game!", "album_id": "72157600059377320", "photo_flickr_id": "452739438", "setting": "first-2-pick-and-tell", "worker_id": "HTSCCA3ND9DRQRH", "story_id": "45185", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "had fun at the game !", "storylet_id": "225929"}], [{"original_text": "Dogs are smart, hairy little things. My girlfriend loves her's.", "album_id": "72157600059377320", "photo_flickr_id": "452761880", "setting": "first-2-pick-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "45186", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dogs are smart , hairy little things . my girlfriend loves her 's .", "storylet_id": "225930"}], [{"original_text": "In fact, I think she might love it more than she loves me. SHe ertainly kisses it more.", "album_id": "72157600059377320", "photo_flickr_id": "452780853", "setting": "first-2-pick-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "45186", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in fact , i think she might love it more than she loves me . she ertainly kisses it more .", "storylet_id": "225931"}], [{"original_text": "They need a lot of attention, and this one is getting no END of spoiling.", "album_id": "72157600059377320", "photo_flickr_id": "452757571", "setting": "first-2-pick-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "45186", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they need a lot of attention , and this one is getting no end of spoiling .", "storylet_id": "225932"}], [{"original_text": "Look at this. Laptime and naptime at the same time! dog's got it made.", "album_id": "72157600059377320", "photo_flickr_id": "452757689", "setting": "first-2-pick-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "45186", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look at this . laptime and naptime at the same time ! dog 's got it made .", "storylet_id": "225933"}], [{"original_text": "Still, the dog can't take her to hockey games.", "album_id": "72157600059377320", "photo_flickr_id": "452757775", "setting": "first-2-pick-and-tell", "worker_id": "DGH4N43PJYJ57BX", "story_id": "45186", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "still , the dog ca n't take her to hockey games .", "storylet_id": "225934"}], [{"original_text": "We went to a hockey game.", "album_id": "72157600059377320", "photo_flickr_id": "452757775", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "45187", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a hockey game .", "storylet_id": "225935"}], [{"original_text": "We took a pregame selfie!", "album_id": "72157600059377320", "photo_flickr_id": "452757961", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "45187", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we took a pregame selfie !", "storylet_id": "225936"}], [{"original_text": "Here are my friends that we ran into.", "album_id": "72157600059377320", "photo_flickr_id": "452758421", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "45187", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here are my friends that we ran into .", "storylet_id": "225937"}], [{"original_text": "I felt asleep during the middle of the game though.", "album_id": "72157600059377320", "photo_flickr_id": "452739334", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "45187", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i felt asleep during the middle of the game though .", "storylet_id": "225938"}], [{"original_text": "It was kind of a lackluster time.", "album_id": "72157600059377320", "photo_flickr_id": "452739438", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "45187", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was kind of a lackluster time .", "storylet_id": "225939"}], [{"original_text": "We were excited to watch the game.", "album_id": "72157600059377320", "photo_flickr_id": "452757775", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45188", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were excited to watch the game .", "storylet_id": "225940"}], [{"original_text": "We posed for a quick selfie.", "album_id": "72157600059377320", "photo_flickr_id": "452757961", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45188", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we posed for a quick selfie .", "storylet_id": "225941"}], [{"original_text": "Our friends posed for a picture too.", "album_id": "72157600059377320", "photo_flickr_id": "452758421", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45188", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our friends posed for a picture too .", "storylet_id": "225942"}], [{"original_text": "John wasn't thrilled.", "album_id": "72157600059377320", "photo_flickr_id": "452739334", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45188", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was n't thrilled .", "storylet_id": "225943"}], [{"original_text": "We were on the edge of our seats when the players began to fight.", "album_id": "72157600059377320", "photo_flickr_id": "452739438", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45188", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were on the edge of our seats when the players began to fight .", "storylet_id": "225944"}], [{"original_text": "This place looks crowded. ", "album_id": "72157600059377320", "photo_flickr_id": "452757775", "setting": "last-3-pick-old-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "45189", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this place looks crowded .", "storylet_id": "225945"}], [{"original_text": "A happy couple is here. ", "album_id": "72157600059377320", "photo_flickr_id": "452757961", "setting": "last-3-pick-old-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "45189", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a happy couple is here .", "storylet_id": "225946"}], [{"original_text": "Relaxing and having fun. ", "album_id": "72157600059377320", "photo_flickr_id": "452758421", "setting": "last-3-pick-old-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "45189", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "relaxing and having fun .", "storylet_id": "225947"}], [{"original_text": "He fell asleep. ", "album_id": "72157600059377320", "photo_flickr_id": "452739334", "setting": "last-3-pick-old-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "45189", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he fell asleep .", "storylet_id": "225948"}], [{"original_text": "Now everyone else is gone. ", "album_id": "72157600059377320", "photo_flickr_id": "452739438", "setting": "last-3-pick-old-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "45189", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now everyone else is gone .", "storylet_id": "225949"}], [{"original_text": "Today I went into town with my buds. ", "album_id": "72157600059516022", "photo_flickr_id": "452821283", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45190", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i went into town with my buds .", "storylet_id": "225950"}], [{"original_text": "We saw these round spinning colorful things and it made us want to play disc golf! ", "album_id": "72157600059516022", "photo_flickr_id": "452817762", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45190", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw these round spinning colorful things and it made us want to play disc golf !", "storylet_id": "225951"}], [{"original_text": "So the three of us ran over to Glendale Park and played a game. ", "album_id": "72157600059516022", "photo_flickr_id": "452786217", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45190", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so the three of us ran over to location location and played a game .", "storylet_id": "225952"}], [{"original_text": "Bob was so cocky. He bet us $500 we wouldn't beat him. ", "album_id": "72157600059516022", "photo_flickr_id": "452787247", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45190", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was so cocky . he bet us $ 500 we would n't beat him .", "storylet_id": "225953"}], [{"original_text": "We all laughed at Bob as I put in the bets on my phone. I have to say I did beat them all and won $1000 at the end of the day. ", "album_id": "72157600059516022", "photo_flickr_id": "452772902", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45190", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all laughed at [male] as i put in the bets on my phone . i have to say i did beat them all and won $ 1000 at the end of the day .", "storylet_id": "225954"}], [{"original_text": "Our family went to the lake last Saturday. ", "album_id": "72157600059516022", "photo_flickr_id": "452778841", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "45191", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our family went to the lake last saturday .", "storylet_id": "225955"}], [{"original_text": "My husband, Dave, had a really good time there. ", "album_id": "72157600059516022", "photo_flickr_id": "452787247", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "45191", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my husband , [male] , had a really good time there .", "storylet_id": "225956"}], [{"original_text": "Dave and his buddies enjoy hanging out and doing 'guy' things together. ", "album_id": "72157600059516022", "photo_flickr_id": "452772902", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "45191", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] and his buddies enjoy hanging out and doing 'guy ' things together .", "storylet_id": "225957"}], [{"original_text": "A vendor was selling beautiful garden spinners. ", "album_id": "72157600059516022", "photo_flickr_id": "452833651", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "45191", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a vendor was selling beautiful garden spinners .", "storylet_id": "225958"}], [{"original_text": "These are the two we bought. I think they'll looking lovely in our backyard. ", "album_id": "72157600059516022", "photo_flickr_id": "452817762", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "45191", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these are the two we bought . i think they 'll looking lovely in our backyard .", "storylet_id": "225959"}], [{"original_text": "I went to a festival over the weekend.", "album_id": "72157600059516022", "photo_flickr_id": "452821283", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "45192", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a festival over the weekend .", "storylet_id": "225960"}], [{"original_text": "There were these cool pinwheels.", "album_id": "72157600059516022", "photo_flickr_id": "452817762", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "45192", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were these cool pinwheels .", "storylet_id": "225961"}], [{"original_text": "My friends and I kept going down the path until we reached a lake.", "album_id": "72157600059516022", "photo_flickr_id": "452786217", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "45192", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my friends and i kept going down the path until we reached a lake .", "storylet_id": "225962"}], [{"original_text": "We stopped here to relax for a little.", "album_id": "72157600059516022", "photo_flickr_id": "452787247", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "45192", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped here to relax for a little .", "storylet_id": "225963"}], [{"original_text": "We compared pictures of the event at the end of the day.", "album_id": "72157600059516022", "photo_flickr_id": "452772902", "setting": "last-3-pick-old-and-tell", "worker_id": "F71YPMN5Q0M4DJF", "story_id": "45192", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we compared pictures of the event at the end of the day .", "storylet_id": "225964"}], [{"original_text": "It's a beautiful day.", "album_id": "72157600059516022", "photo_flickr_id": "452778841", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "45193", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's a beautiful day .", "storylet_id": "225965"}], [{"original_text": "Everyone is hanging by the river.", "album_id": "72157600059516022", "photo_flickr_id": "452787247", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "45193", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone is hanging by the river .", "storylet_id": "225966"}], [{"original_text": "These guys are having a lot of fun.", "album_id": "72157600059516022", "photo_flickr_id": "452772902", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "45193", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these guys are having a lot of fun .", "storylet_id": "225967"}], [{"original_text": "The wind is blowing the whirly.", "album_id": "72157600059516022", "photo_flickr_id": "452833651", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "45193", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the wind is blowing the whirly .", "storylet_id": "225968"}], [{"original_text": "The town is enjoying the wind and the sun.", "album_id": "72157600059516022", "photo_flickr_id": "452817762", "setting": "last-3-pick-old-and-tell", "worker_id": "KAUAD09792E0F9V", "story_id": "45193", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the town is enjoying the wind and the sun .", "storylet_id": "225969"}], [{"original_text": "It was a bright sunny day at the park.", "album_id": "72157600059516022", "photo_flickr_id": "452778841", "setting": "last-3-pick-old-and-tell", "worker_id": "OBZG0W2RPSAYC5F", "story_id": "45194", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a bright sunny day at the park .", "storylet_id": "225970"}], [{"original_text": "I was out and about, enjoying the clear air and weather.", "album_id": "72157600059516022", "photo_flickr_id": "452787247", "setting": "last-3-pick-old-and-tell", "worker_id": "OBZG0W2RPSAYC5F", "story_id": "45194", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was out and about , enjoying the clear air and weather .", "storylet_id": "225971"}], [{"original_text": "I met up with two of my friends, we laughed at some of the pictures we took of wind toys.", "album_id": "72157600059516022", "photo_flickr_id": "452772902", "setting": "last-3-pick-old-and-tell", "worker_id": "OBZG0W2RPSAYC5F", "story_id": "45194", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i met up with two of my friends , we laughed at some of the pictures we took of wind toys .", "storylet_id": "225972"}], [{"original_text": "Here is one wind toy. It is a brightly colored flower.", "album_id": "72157600059516022", "photo_flickr_id": "452833651", "setting": "last-3-pick-old-and-tell", "worker_id": "OBZG0W2RPSAYC5F", "story_id": "45194", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is one wind toy . it is a brightly colored flower .", "storylet_id": "225973"}], [{"original_text": "Here is another set of wind toys, set up to look like bike wheels. They are also brightly colored.", "album_id": "72157600059516022", "photo_flickr_id": "452817762", "setting": "last-3-pick-old-and-tell", "worker_id": "OBZG0W2RPSAYC5F", "story_id": "45194", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is another set of wind toys , set up to look like bike wheels . they are also brightly colored .", "storylet_id": "225974"}], [{"original_text": "People were lined up for the parade.", "album_id": "226949", "photo_flickr_id": "9166687", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45195", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "people were lined up for the parade .", "storylet_id": "225975"}], [{"original_text": "Then the floats started coming.", "album_id": "226949", "photo_flickr_id": "9166718", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45195", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then the floats started coming .", "storylet_id": "225976"}], [{"original_text": "The marching band was playing loudly.", "album_id": "226949", "photo_flickr_id": "9166722", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45195", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the marching band was playing loudly .", "storylet_id": "225977"}], [{"original_text": "And the children were all excited.", "album_id": "226949", "photo_flickr_id": "9166748", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45195", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the children were all excited .", "storylet_id": "225978"}], [{"original_text": "Because they finally got to see Mickey and Minnie Mouse.", "album_id": "226949", "photo_flickr_id": "9166769", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45195", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "because they finally got to see [male] and [female] mouse .", "storylet_id": "225979"}], [{"original_text": "The Christmas parade is always fun to watch.", "album_id": "226949", "photo_flickr_id": "9166718", "setting": "first-2-pick-and-tell", "worker_id": "4MTC8N9DL42T9MR", "story_id": "45196", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the christmas parade is always fun to watch .", "storylet_id": "225980"}], [{"original_text": "This year the parade had a Disney theme.", "album_id": "226949", "photo_flickr_id": "9166771", "setting": "first-2-pick-and-tell", "worker_id": "4MTC8N9DL42T9MR", "story_id": "45196", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this year the parade had a organization theme .", "storylet_id": "225981"}], [{"original_text": "Here is Mickey Mouse riding on a float...", "album_id": "226949", "photo_flickr_id": "9166748", "setting": "first-2-pick-and-tell", "worker_id": "4MTC8N9DL42T9MR", "story_id": "45196", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here is [male] mouse riding on a float ...", "storylet_id": "225982"}], [{"original_text": "and here is Mickey again with Minnie.", "album_id": "226949", "photo_flickr_id": "9166770", "setting": "first-2-pick-and-tell", "worker_id": "4MTC8N9DL42T9MR", "story_id": "45196", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and here is [male] again with [female] .", "storylet_id": "225983"}], [{"original_text": "The women dressed as snowflakes made it very festive.", "album_id": "226949", "photo_flickr_id": "9166767", "setting": "first-2-pick-and-tell", "worker_id": "4MTC8N9DL42T9MR", "story_id": "45196", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the women dressed as snowflakes made it very festive .", "storylet_id": "225984"}], [{"original_text": "We found our spot for the christmas parade.", "album_id": "226949", "photo_flickr_id": "9166687", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45197", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we found our spot for the christmas parade .", "storylet_id": "225985"}], [{"original_text": "First a float came by with a giant teddy bear.", "album_id": "226949", "photo_flickr_id": "9166718", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45197", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first a float came by with a giant teddy bear .", "storylet_id": "225986"}], [{"original_text": "Then the nut crackers passed.", "album_id": "226949", "photo_flickr_id": "9166722", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45197", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the nut crackers passed .", "storylet_id": "225987"}], [{"original_text": "Then mickey passed by.", "album_id": "226949", "photo_flickr_id": "9166748", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45197", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then mickey passed by .", "storylet_id": "225988"}], [{"original_text": "Mickey and minnie came buy again on ice.", "album_id": "226949", "photo_flickr_id": "9166769", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45197", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] and minnie came buy again on ice .", "storylet_id": "225989"}], [{"original_text": "Brendan was too distracted by the floats to take a good picture.", "album_id": "226949", "photo_flickr_id": "9166687", "setting": "last-3-pick-old-and-tell", "worker_id": "1C0KWO40OQZRGYI", "story_id": "45198", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was too distracted by the floats to take a good picture .", "storylet_id": "225990"}], [{"original_text": "I think this was my favorite float in the parade.", "album_id": "226949", "photo_flickr_id": "9166718", "setting": "last-3-pick-old-and-tell", "worker_id": "1C0KWO40OQZRGYI", "story_id": "45198", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i think this was my favorite float in the parade .", "storylet_id": "225991"}], [{"original_text": "The toy soldiers were Mike's favorite in the parade.", "album_id": "226949", "photo_flickr_id": "9166722", "setting": "last-3-pick-old-and-tell", "worker_id": "1C0KWO40OQZRGYI", "story_id": "45198", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the toy soldiers were [male] 's favorite in the parade .", "storylet_id": "225992"}], [{"original_text": "This is a terrible picture to show how intricate this float was.", "album_id": "226949", "photo_flickr_id": "9166748", "setting": "last-3-pick-old-and-tell", "worker_id": "1C0KWO40OQZRGYI", "story_id": "45198", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is a terrible picture to show how intricate this float was .", "storylet_id": "225993"}], [{"original_text": "You can never go wrong with Mickey and Minnie!", "album_id": "226949", "photo_flickr_id": "9166769", "setting": "last-3-pick-old-and-tell", "worker_id": "1C0KWO40OQZRGYI", "story_id": "45198", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "you can never go wrong with [male] and [female] !", "storylet_id": "225994"}], [{"original_text": "these people were here for the parade. ", "album_id": "226949", "photo_flickr_id": "9166687", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45199", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these people were here for the parade .", "storylet_id": "225995"}], [{"original_text": "there were life size teddy bears. ", "album_id": "226949", "photo_flickr_id": "9166718", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45199", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were life size teddy bears .", "storylet_id": "225996"}], [{"original_text": "a lot of people walked the streets. ", "album_id": "226949", "photo_flickr_id": "9166722", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45199", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lot of people walked the streets .", "storylet_id": "225997"}], [{"original_text": "there were intricate floats. ", "album_id": "226949", "photo_flickr_id": "9166748", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45199", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were intricate floats .", "storylet_id": "225998"}], [{"original_text": "even mickey mouse was there. ", "album_id": "226949", "photo_flickr_id": "9166769", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45199", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even mickey mouse was there .", "storylet_id": "225999"}], [{"original_text": "There was an Easter painting of an angel.", "album_id": "72057594104930436", "photo_flickr_id": "127220205", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45200", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was an easter painting of an angel .", "storylet_id": "226000"}], [{"original_text": "They had some cute chick paintings.", "album_id": "72057594104930436", "photo_flickr_id": "127220217", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45200", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they had some cute chick paintings .", "storylet_id": "226001"}], [{"original_text": "The bunny was done very well.", "album_id": "72057594104930436", "photo_flickr_id": "127220228", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45200", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the bunny was done very well .", "storylet_id": "226002"}], [{"original_text": "The little girls were cute.", "album_id": "72057594104930436", "photo_flickr_id": "127220235", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45200", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the little girls were cute .", "storylet_id": "226003"}], [{"original_text": "I liked the Easter pictures.", "album_id": "72057594104930436", "photo_flickr_id": "127220242", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45200", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i liked the easter pictures .", "storylet_id": "226004"}], [{"original_text": "So I make Easter cards now. This one is of an Angel. Isn't she beautiful?", "album_id": "72057594104930436", "photo_flickr_id": "127220205", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45201", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "so i make easter cards now . this one is of an [male] . is n't she beautiful ?", "storylet_id": "226005"}], [{"original_text": "The next one I made was two kids. I didn't like it as much. ", "album_id": "72057594104930436", "photo_flickr_id": "127220235", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45201", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the next one i made was two kids . i did n't like it as much .", "storylet_id": "226006"}], [{"original_text": "So I made this one afterwards. This one I liked better so I threw the last one away. ", "album_id": "72057594104930436", "photo_flickr_id": "127220270", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45201", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so i made this one afterwards . this one i liked better so i threw the last one away .", "storylet_id": "226007"}], [{"original_text": "Then later on I made this one with the Easter bunny looking over his eggs. ", "album_id": "72057594104930436", "photo_flickr_id": "127220272", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45201", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then later on i made this one with the easter bunny looking over his eggs .", "storylet_id": "226008"}], [{"original_text": "I wasn't pleased with that last one so I made this last one. It made me happy and I gave it to my preacher. ", "album_id": "72057594104930436", "photo_flickr_id": "127220293", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45201", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was n't pleased with that last one so i made this last one . it made me happy and i gave it to my preacher .", "storylet_id": "226009"}], [{"original_text": "The variety of Easter cards are great! Religious Easter cards are inspirational!", "album_id": "72057594104930436", "photo_flickr_id": "127220205", "setting": "last-3-pick-old-and-tell", "worker_id": "DQZHD5LQRJWL28F", "story_id": "45202", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the variety of easter cards are great ! religious easter cards are inspirational !", "storylet_id": "226010"}], [{"original_text": "The adorable yellow duckling put a smile on your face!", "album_id": "72057594104930436", "photo_flickr_id": "127220217", "setting": "last-3-pick-old-and-tell", "worker_id": "DQZHD5LQRJWL28F", "story_id": "45202", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the adorable yellow duckling put a smile on your face !", "storylet_id": "226011"}], [{"original_text": "Of course a bunny with a duck is a very traditional card, but still adorable!", "album_id": "72057594104930436", "photo_flickr_id": "127220228", "setting": "last-3-pick-old-and-tell", "worker_id": "DQZHD5LQRJWL28F", "story_id": "45202", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course a bunny with a duck is a very traditional card , but still adorable !", "storylet_id": "226012"}], [{"original_text": "Two little girls playing with the ducklings, so cute!", "album_id": "72057594104930436", "photo_flickr_id": "127220235", "setting": "last-3-pick-old-and-tell", "worker_id": "DQZHD5LQRJWL28F", "story_id": "45202", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "two little girls playing with the ducklings , so cute !", "storylet_id": "226013"}], [{"original_text": "Lilies are associated with Easter, and of course yellow ducks!", "album_id": "72057594104930436", "photo_flickr_id": "127220242", "setting": "last-3-pick-old-and-tell", "worker_id": "DQZHD5LQRJWL28F", "story_id": "45202", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lilies are associated with easter , and of course yellow ducks !", "storylet_id": "226014"}], [{"original_text": "We are auctioning these beautiful artworks.", "album_id": "72057594104930436", "photo_flickr_id": "127220205", "setting": "last-3-pick-old-and-tell", "worker_id": "TQOIZ2T2NQQKMQ4", "story_id": "45203", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are auctioning these beautiful artworks .", "storylet_id": "226015"}], [{"original_text": "Check out this one. It just got sold.", "album_id": "72057594104930436", "photo_flickr_id": "127220235", "setting": "last-3-pick-old-and-tell", "worker_id": "TQOIZ2T2NQQKMQ4", "story_id": "45203", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "check out this one . it just got sold .", "storylet_id": "226016"}], [{"original_text": "This one only has one bid so far.", "album_id": "72057594104930436", "photo_flickr_id": "127220270", "setting": "last-3-pick-old-and-tell", "worker_id": "TQOIZ2T2NQQKMQ4", "story_id": "45203", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one only has one bid so far .", "storylet_id": "226017"}], [{"original_text": "This one is my favorite. I already bid on it.", "album_id": "72057594104930436", "photo_flickr_id": "127220272", "setting": "last-3-pick-old-and-tell", "worker_id": "TQOIZ2T2NQQKMQ4", "story_id": "45203", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this one is my favorite . i already bid on it .", "storylet_id": "226018"}], [{"original_text": "This one sucks ass. No bidders.", "album_id": "72057594104930436", "photo_flickr_id": "127220293", "setting": "last-3-pick-old-and-tell", "worker_id": "TQOIZ2T2NQQKMQ4", "story_id": "45203", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this one sucks ass . no bidders .", "storylet_id": "226019"}], [{"original_text": "There is a lot of art work that can be viewed.", "album_id": "72057594104930436", "photo_flickr_id": "127220205", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45204", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there is a lot of art work that can be viewed .", "storylet_id": "226020"}], [{"original_text": "This art piece includes chicks and would be great for easter.", "album_id": "72057594104930436", "photo_flickr_id": "127220217", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45204", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this art piece includes chicks and would be great for easter .", "storylet_id": "226021"}], [{"original_text": "The Easter bunny is posed with the duck.", "album_id": "72057594104930436", "photo_flickr_id": "127220228", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45204", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the easter bunny is posed with the duck .", "storylet_id": "226022"}], [{"original_text": "This card is very unique and has a vintage feel.", "album_id": "72057594104930436", "photo_flickr_id": "127220235", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45204", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this card is very unique and has a vintage feel .", "storylet_id": "226023"}], [{"original_text": "Finally this easter card has chicks on it.", "album_id": "72057594104930436", "photo_flickr_id": "127220242", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45204", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally this easter card has chicks on it .", "storylet_id": "226024"}], [{"original_text": "Nothing is more peaceful than waking up at dawn on vacation. ", "album_id": "72157626353824175", "photo_flickr_id": "5611540750", "setting": "first-2-pick-and-tell", "worker_id": "IDBRTN6CST036OC", "story_id": "45205", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "nothing is more peaceful than waking up at dawn on vacation .", "storylet_id": "226025"}], [{"original_text": "The black skimmers are up too, hunting for their breakfast.", "album_id": "72157626353824175", "photo_flickr_id": "5610970267", "setting": "first-2-pick-and-tell", "worker_id": "IDBRTN6CST036OC", "story_id": "45205", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the black skimmers are up too , hunting for their breakfast .", "storylet_id": "226026"}], [{"original_text": "The beach is so calming before the crowds arrive.", "album_id": "72157626353824175", "photo_flickr_id": "5612004167", "setting": "first-2-pick-and-tell", "worker_id": "IDBRTN6CST036OC", "story_id": "45205", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the beach is so calming before the crowds arrive .", "storylet_id": "226027"}], [{"original_text": "The morning is a great time to take a walk with my four legged friend.", "album_id": "72157626353824175", "photo_flickr_id": "5612014867", "setting": "first-2-pick-and-tell", "worker_id": "IDBRTN6CST036OC", "story_id": "45205", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the morning is a great time to take a walk with my four legged friend .", "storylet_id": "226028"}], [{"original_text": "Our walk takes us past the best coffee shop in town, where we stop in for a latte and a sweet roll.", "album_id": "72157626353824175", "photo_flickr_id": "5611966075", "setting": "first-2-pick-and-tell", "worker_id": "IDBRTN6CST036OC", "story_id": "45205", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our walk takes us past the best coffee shop in town , where we stop in for a latte and a sweet roll .", "storylet_id": "226029"}], [{"original_text": "It was Father's day, so I took my Dad o the beach.", "album_id": "72157626353824175", "photo_flickr_id": "5610888017", "setting": "first-2-pick-and-tell", "worker_id": "G2F5OBDV3DGP5PQ", "story_id": "45206", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was father 's day , so i took my dad o the beach .", "storylet_id": "226030"}], [{"original_text": "We could see some birds flying closely across the water looking for food.", "album_id": "72157626353824175", "photo_flickr_id": "5610970267", "setting": "first-2-pick-and-tell", "worker_id": "G2F5OBDV3DGP5PQ", "story_id": "45206", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we could see some birds flying closely across the water looking for food .", "storylet_id": "226031"}], [{"original_text": "We had breakfast a a local diner, the muffins were delicious!", "album_id": "72157626353824175", "photo_flickr_id": "5611966075", "setting": "first-2-pick-and-tell", "worker_id": "G2F5OBDV3DGP5PQ", "story_id": "45206", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had breakfast a a local diner , the muffins were delicious !", "storylet_id": "226032"}], [{"original_text": "Of course we had to bring the dog with us.", "album_id": "72157626353824175", "photo_flickr_id": "5612013437", "setting": "first-2-pick-and-tell", "worker_id": "G2F5OBDV3DGP5PQ", "story_id": "45206", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "of course we had to bring the dog with us .", "storylet_id": "226033"}], [{"original_text": "Later that evening we had a great steak dinner.", "album_id": "72157626353824175", "photo_flickr_id": "5612962984", "setting": "first-2-pick-and-tell", "worker_id": "G2F5OBDV3DGP5PQ", "story_id": "45206", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later that evening we had a great steak dinner .", "storylet_id": "226034"}], [{"original_text": "It was a beautiful cloud covered morning at the beach...", "album_id": "72157626353824175", "photo_flickr_id": "5610888017", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "45207", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful cloud covered morning at the beach ...", "storylet_id": "226035"}], [{"original_text": "The pelicans were enjoying their breakfast..", "album_id": "72157626353824175", "photo_flickr_id": "5610970267", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "45207", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the pelicans were enjoying their breakfast..", "storylet_id": "226036"}], [{"original_text": "Just as I enjoyed my bagel and coffee to begin the day.", "album_id": "72157626353824175", "photo_flickr_id": "5611966075", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "45207", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "just as i enjoyed my bagel and coffee to begin the day .", "storylet_id": "226037"}], [{"original_text": "We then walked the dog down the pier and enjoyed the rest of the cool day until..", "album_id": "72157626353824175", "photo_flickr_id": "5612013437", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "45207", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we then walked the dog down the pier and enjoyed the rest of the cool day until..", "storylet_id": "226038"}], [{"original_text": "It was dinner time! Nothing like steak and potatoes to end the evening right!", "album_id": "72157626353824175", "photo_flickr_id": "5612962984", "setting": "last-3-pick-old-and-tell", "worker_id": "SQ0UXMZVZGZD6WO", "story_id": "45207", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was dinner time ! nothing like steak and potatoes to end the evening right !", "storylet_id": "226039"}], [{"original_text": "The sunrise this morning at our vacation house was spectacular.", "album_id": "72157626353824175", "photo_flickr_id": "5610888017", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45208", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the sunrise this morning at our vacation house was spectacular .", "storylet_id": "226040"}], [{"original_text": "A single bird soared above the water.", "album_id": "72157626353824175", "photo_flickr_id": "5610970267", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45208", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a single bird soared above the water .", "storylet_id": "226041"}], [{"original_text": "We had our traditional coffee and hot crossed bun breakfast.", "album_id": "72157626353824175", "photo_flickr_id": "5611966075", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45208", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had our traditional coffee and hot crossed bun breakfast .", "storylet_id": "226042"}], [{"original_text": "Punk, our dog, was eager for the day to get started.", "album_id": "72157626353824175", "photo_flickr_id": "5612013437", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45208", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "punk , our dog , was eager for the day to get started .", "storylet_id": "226043"}], [{"original_text": "We had a very hearty supper that night---pork, mashed potatoes with sour cream and corn on the cob.", "album_id": "72157626353824175", "photo_flickr_id": "5612962984", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45208", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a very hearty supper that night -- -pork , mashed potatoes with sour cream and corn on the cob .", "storylet_id": "226044"}], [{"original_text": "Sunsets on the island is amazing", "album_id": "72157626353824175", "photo_flickr_id": "5611540750", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45209", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "sunsets on the island is amazing", "storylet_id": "226045"}], [{"original_text": "if you are lucky you will see a pelican", "album_id": "72157626353824175", "photo_flickr_id": "5610970267", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45209", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "if you are lucky you will see a pelican", "storylet_id": "226046"}], [{"original_text": "most of the time at the marina there is nothing happening", "album_id": "72157626353824175", "photo_flickr_id": "5612004167", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45209", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most of the time at the marina there is nothing happening", "storylet_id": "226047"}], [{"original_text": "even the dog has fun alone", "album_id": "72157626353824175", "photo_flickr_id": "5612014867", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45209", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even the dog has fun alone", "storylet_id": "226048"}], [{"original_text": "the marina shop offers great breakfast", "album_id": "72157626353824175", "photo_flickr_id": "5611966075", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45209", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the marina shop offers great breakfast", "storylet_id": "226049"}], [{"original_text": "it was very cold that day", "album_id": "72157623297975725", "photo_flickr_id": "4351578735", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "45210", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was very cold that day", "storylet_id": "226050"}], [{"original_text": "ice hung from the roof tops", "album_id": "72157623297975725", "photo_flickr_id": "4351613263", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "45210", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "ice hung from the roof tops", "storylet_id": "226051"}], [{"original_text": "and cars covered with ice and snow", "album_id": "72157623297975725", "photo_flickr_id": "4351613461", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "45210", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and cars covered with ice and snow", "storylet_id": "226052"}], [{"original_text": "nobody was going anywhere that day", "album_id": "72157623297975725", "photo_flickr_id": "4352360078", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "45210", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "nobody was going anywhere that day", "storylet_id": "226053"}], [{"original_text": "and more snow fell that night ", "album_id": "72157623297975725", "photo_flickr_id": "4352360192", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "45210", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and more snow fell that night", "storylet_id": "226054"}], [{"original_text": "There was a lot of snow.", "album_id": "72157623297975725", "photo_flickr_id": "4352360192", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "45211", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a lot of snow .", "storylet_id": "226055"}], [{"original_text": "It took hours and lots of hot chocolate breaks to clear the cars.", "album_id": "72157623297975725", "photo_flickr_id": "4351613461", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "45211", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it took hours and lots of hot chocolate breaks to clear the cars .", "storylet_id": "226056"}], [{"original_text": "The icicles between the apartment buildings was frightening.", "album_id": "72157623297975725", "photo_flickr_id": "4351578743", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "45211", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the icicles between the apartment buildings was frightening .", "storylet_id": "226057"}], [{"original_text": "There was even ice and snow in the gutters.", "album_id": "72157623297975725", "photo_flickr_id": "4351614461", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "45211", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was even ice and snow in the gutters .", "storylet_id": "226058"}], [{"original_text": "With everyone working together, streets and sidewalks were shoveled.", "album_id": "72157623297975725", "photo_flickr_id": "4352360078", "setting": "first-2-pick-and-tell", "worker_id": "0DWMJWG0NWNGQBD", "story_id": "45211", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with everyone working together , streets and sidewalks were shoveled .", "storylet_id": "226059"}], [{"original_text": "It snowed heavily last night. There were icicles hanging off the side of our roof.", "album_id": "72157623297975725", "photo_flickr_id": "4351578735", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45212", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it snowed heavily last night . there were icicles hanging off the side of our roof .", "storylet_id": "226060"}], [{"original_text": "The neighbors also had icicles on theirs.", "album_id": "72157623297975725", "photo_flickr_id": "4351613263", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45212", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the neighbors also had icicles on theirs .", "storylet_id": "226061"}], [{"original_text": "Our cars were snowed in so I had to start digging them out.", "album_id": "72157623297975725", "photo_flickr_id": "4351613461", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45212", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our cars were snowed in so i had to start digging them out .", "storylet_id": "226062"}], [{"original_text": "It took me awhile but I eventually cleared enough to get out. Later the snow plow cleared the main street.", "album_id": "72157623297975725", "photo_flickr_id": "4352360078", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45212", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it took me awhile but i eventually cleared enough to get out . later the snow plow cleared the main street .", "storylet_id": "226063"}], [{"original_text": "Unfortunately, it snowed again tonight and I'm going to have to do it all over again tomorrow.", "album_id": "72157623297975725", "photo_flickr_id": "4352360192", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45212", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "unfortunately , it snowed again tonight and i 'm going to have to do it all over again tomorrow .", "storylet_id": "226064"}], [{"original_text": "The winter season has officially arrived!", "album_id": "72157623297975725", "photo_flickr_id": "4352360192", "setting": "last-3-pick-old-and-tell", "worker_id": "E3R57TNZS7VIFZ6", "story_id": "45213", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the winter season has officially arrived !", "storylet_id": "226065"}], [{"original_text": "We can no longer just get in the cars and drive off without spending at least 30min. clearing the driveway.", "album_id": "72157623297975725", "photo_flickr_id": "4351613461", "setting": "last-3-pick-old-and-tell", "worker_id": "E3R57TNZS7VIFZ6", "story_id": "45213", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we can no longer just get in the cars and drive off without spending at least 30min . clearing the driveway .", "storylet_id": "226066"}], [{"original_text": "Nor can we safely walk in between houses!", "album_id": "72157623297975725", "photo_flickr_id": "4351578743", "setting": "last-3-pick-old-and-tell", "worker_id": "E3R57TNZS7VIFZ6", "story_id": "45213", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "nor can we safely walk in between houses !", "storylet_id": "226067"}], [{"original_text": "So much snow that it's just piling on our drain pipes.", "album_id": "72157623297975725", "photo_flickr_id": "4351614461", "setting": "last-3-pick-old-and-tell", "worker_id": "E3R57TNZS7VIFZ6", "story_id": "45213", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so much snow that it 's just piling on our drain pipes .", "storylet_id": "226068"}], [{"original_text": "It's hard to believe that grass is normally under all that snow near the sidewalk for most of the rest of the year.", "album_id": "72157623297975725", "photo_flickr_id": "4352360078", "setting": "last-3-pick-old-and-tell", "worker_id": "E3R57TNZS7VIFZ6", "story_id": "45213", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it 's hard to believe that grass is normally under all that snow near the sidewalk for most of the rest of the year .", "storylet_id": "226069"}], [{"original_text": "The snow covered the cars", "album_id": "72157623297975725", "photo_flickr_id": "4352360192", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45214", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the snow covered the cars", "storylet_id": "226070"}], [{"original_text": "all of them.", "album_id": "72157623297975725", "photo_flickr_id": "4351613461", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45214", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of them .", "storylet_id": "226071"}], [{"original_text": "But it did not cover everything because ", "album_id": "72157623297975725", "photo_flickr_id": "4351578743", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45214", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but it did not cover everything because", "storylet_id": "226072"}], [{"original_text": "there was a lot of ice", "album_id": "72157623297975725", "photo_flickr_id": "4351614461", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45214", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was a lot of ice", "storylet_id": "226073"}], [{"original_text": "and the sidewalks were covered.", "album_id": "72157623297975725", "photo_flickr_id": "4352360078", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45214", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the sidewalks were covered .", "storylet_id": "226074"}], [{"original_text": "While we were on our trip we saw some great works", "album_id": "72157594198925729", "photo_flickr_id": "86924607", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "45215", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while we were on our trip we saw some great works", "storylet_id": "226075"}], [{"original_text": "We couldn't understand all the signs ", "album_id": "72157594198925729", "photo_flickr_id": "189433748", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "45215", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we could n't understand all the signs", "storylet_id": "226076"}], [{"original_text": "But we loved all the architecture and buildings", "album_id": "72157594198925729", "photo_flickr_id": "86929566", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "45215", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but we loved all the architecture and buildings", "storylet_id": "226077"}], [{"original_text": "We went for a nice walk", "album_id": "72157594198925729", "photo_flickr_id": "189437812", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "45215", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went for a nice walk", "storylet_id": "226078"}], [{"original_text": "The scenery was all so great and peaceful ", "album_id": "72157594198925729", "photo_flickr_id": "189445889", "setting": "first-2-pick-and-tell", "worker_id": "84B14NFHQRKU3FQ", "story_id": "45215", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the scenery was all so great and peaceful", "storylet_id": "226079"}], [{"original_text": "As we looked behind us, we could see how high we were. ", "album_id": "72157594198925729", "photo_flickr_id": "86929569", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45216", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as we looked behind us , we could see how high we were .", "storylet_id": "226080"}], [{"original_text": "We climbed up a steep staircase on a hill. ", "album_id": "72157594198925729", "photo_flickr_id": "86929568", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45216", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we climbed up a steep staircase on a hill .", "storylet_id": "226081"}], [{"original_text": "We finally reached the top. ", "album_id": "72157594198925729", "photo_flickr_id": "189437807", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45216", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we finally reached the top .", "storylet_id": "226082"}], [{"original_text": "From the top we could see the whole city. ", "album_id": "72157594198925729", "photo_flickr_id": "189437809", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45216", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "from the top we could see the whole city .", "storylet_id": "226083"}], [{"original_text": "We walked towards a statue at the top of the hill. ", "album_id": "72157594198925729", "photo_flickr_id": "189445882", "setting": "first-2-pick-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45216", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we walked towards a statue at the top of the hill .", "storylet_id": "226084"}], [{"original_text": "We visited the old school house.", "album_id": "72157594198925729", "photo_flickr_id": "86924607", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45217", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we visited the old school house .", "storylet_id": "226085"}], [{"original_text": "It was still in use.", "album_id": "72157594198925729", "photo_flickr_id": "189433748", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45217", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was still in use .", "storylet_id": "226086"}], [{"original_text": "The building had been refinished.", "album_id": "72157594198925729", "photo_flickr_id": "86929566", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45217", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the building had been refinished .", "storylet_id": "226087"}], [{"original_text": "It was a great historical sight.", "album_id": "72157594198925729", "photo_flickr_id": "189437812", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45217", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a great historical sight .", "storylet_id": "226088"}], [{"original_text": "It was also near a lake.", "album_id": "72157594198925729", "photo_flickr_id": "189445889", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45217", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was also near a lake .", "storylet_id": "226089"}], [{"original_text": "There are many pictures hanging on the wall.", "album_id": "72157594198925729", "photo_flickr_id": "86924607", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45218", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there are many pictures hanging on the wall .", "storylet_id": "226090"}], [{"original_text": "Also there is a sign with handwritten notes on it.", "album_id": "72157594198925729", "photo_flickr_id": "189433748", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45218", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "also there is a sign with handwritten notes on it .", "storylet_id": "226091"}], [{"original_text": "Outside the sun is going down soon.", "album_id": "72157594198925729", "photo_flickr_id": "86929566", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45218", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "outside the sun is going down soon .", "storylet_id": "226092"}], [{"original_text": "A group of women go for a walk.", "album_id": "72157594198925729", "photo_flickr_id": "189437812", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45218", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a group of women go for a walk .", "storylet_id": "226093"}], [{"original_text": "Beside the sidewalk is a body of water.", "album_id": "72157594198925729", "photo_flickr_id": "189445889", "setting": "last-3-pick-old-and-tell", "worker_id": "HDLFWWF46K2ADIM", "story_id": "45218", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "beside the sidewalk is a body of water .", "storylet_id": "226094"}], [{"original_text": "They started walking up the stairs.", "album_id": "72157594198925729", "photo_flickr_id": "86929569", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "45219", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they started walking up the stairs .", "storylet_id": "226095"}], [{"original_text": "There was a long way to go.", "album_id": "72157594198925729", "photo_flickr_id": "86929568", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "45219", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a long way to go .", "storylet_id": "226096"}], [{"original_text": "They made it to the top!", "album_id": "72157594198925729", "photo_flickr_id": "189437807", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "45219", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they made it to the top !", "storylet_id": "226097"}], [{"original_text": "Look at that view!", "album_id": "72157594198925729", "photo_flickr_id": "189437809", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "45219", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "look at that view !", "storylet_id": "226098"}], [{"original_text": "It is a great place to be.", "album_id": "72157594198925729", "photo_flickr_id": "189445882", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "45219", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is a great place to be .", "storylet_id": "226099"}], [{"original_text": "I love looking at the old family photos when I was just a little girl. ", "album_id": "72157594168153856", "photo_flickr_id": "168688116", "setting": "first-2-pick-and-tell", "worker_id": "TS7IT5VC0IE0S5P", "story_id": "45220", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love looking at the old family photos when i was just a little girl .", "storylet_id": "226100"}], [{"original_text": "Our family had their first family group picture in 1963. ", "album_id": "72157594168153856", "photo_flickr_id": "168688642", "setting": "first-2-pick-and-tell", "worker_id": "TS7IT5VC0IE0S5P", "story_id": "45220", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our family had their first family group picture in 1963 .", "storylet_id": "226101"}], [{"original_text": "We had to pose for pictures when my parents were able to buy they're first car. ", "album_id": "72157594168153856", "photo_flickr_id": "168689651", "setting": "first-2-pick-and-tell", "worker_id": "TS7IT5VC0IE0S5P", "story_id": "45220", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had to pose for pictures when my parents were able to buy they 're first car .", "storylet_id": "226102"}], [{"original_text": "We always took the opportunity to have a picture, even when sunning outside. ", "album_id": "72157594168153856", "photo_flickr_id": "168693340", "setting": "first-2-pick-and-tell", "worker_id": "TS7IT5VC0IE0S5P", "story_id": "45220", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we always took the opportunity to have a picture , even when sunning outside .", "storylet_id": "226103"}], [{"original_text": "Now our family pictures have grown to over more than 25 people. ", "album_id": "72157594168153856", "photo_flickr_id": "168696983", "setting": "first-2-pick-and-tell", "worker_id": "TS7IT5VC0IE0S5P", "story_id": "45220", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now our family pictures have grown to over more than 25 people .", "storylet_id": "226104"}], [{"original_text": "The family was getting together.", "album_id": "72157594168153856", "photo_flickr_id": "168688642", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45221", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was getting together .", "storylet_id": "226105"}], [{"original_text": "They were all excited to hang out.", "album_id": "72157594168153856", "photo_flickr_id": "168692163", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45221", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were all excited to hang out .", "storylet_id": "226106"}], [{"original_text": "They sat outside.", "album_id": "72157594168153856", "photo_flickr_id": "168693340", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45221", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they sat outside .", "storylet_id": "226107"}], [{"original_text": "Then they went to the city.", "album_id": "72157594168153856", "photo_flickr_id": "168693953", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45221", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they went to the city .", "storylet_id": "226108"}], [{"original_text": "The kid played with a dog too.", "album_id": "72157594168153856", "photo_flickr_id": "168695759", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45221", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kid played with a dog too .", "storylet_id": "226109"}], [{"original_text": "I go to estate and garage sales and buy boxes of photos, among other antiques. ", "album_id": "72157594168153856", "photo_flickr_id": "168688116", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "45222", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i go to estate and garage sales and buy boxes of photos , among other antiques .", "storylet_id": "226110"}], [{"original_text": "I'm not sure what to say about this but collecting them makes me feel like each one has a story to tell. ", "album_id": "72157594168153856", "photo_flickr_id": "168688642", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "45222", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i 'm not sure what to say about this but collecting them makes me feel like each one has a story to tell .", "storylet_id": "226111"}], [{"original_text": "Those faces so fresh and bright, memories of things and places that those photos hold always mystifies me when I look at them. ", "album_id": "72157594168153856", "photo_flickr_id": "168689651", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "45222", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "those faces so fresh and bright , memories of things and places that those photos hold always mystifies me when i look at them .", "storylet_id": "226112"}], [{"original_text": "So many memories held in amber. These photos mark a time in a moment that can not be recreated. ", "album_id": "72157594168153856", "photo_flickr_id": "168693340", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "45222", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "so many memories held in amber . these photos mark a time in a moment that can not be recreated .", "storylet_id": "226113"}], [{"original_text": "It is amazing to me to find these photos and making my own stories and memories of these strangers. I love these old treasures. ", "album_id": "72157594168153856", "photo_flickr_id": "168696983", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "45222", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is amazing to me to find these photos and making my own stories and memories of these strangers . i love these old treasures .", "storylet_id": "226114"}], [{"original_text": "The man was holding his grandchild", "album_id": "72157594168153856", "photo_flickr_id": "168688116", "setting": "last-3-pick-old-and-tell", "worker_id": "UNQSN2W6G6UV2WQ", "story_id": "45223", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the man was holding his grandchild", "storylet_id": "226115"}], [{"original_text": "the family took a family photo dressup.", "album_id": "72157594168153856", "photo_flickr_id": "168688642", "setting": "last-3-pick-old-and-tell", "worker_id": "UNQSN2W6G6UV2WQ", "story_id": "45223", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family took a family photo dressup .", "storylet_id": "226116"}], [{"original_text": "the mother and daughter took a photo beside there blue car", "album_id": "72157594168153856", "photo_flickr_id": "168689651", "setting": "last-3-pick-old-and-tell", "worker_id": "UNQSN2W6G6UV2WQ", "story_id": "45223", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the mother and daughter took a photo beside there blue car", "storylet_id": "226117"}], [{"original_text": "they sit outside in the hot sun ", "album_id": "72157594168153856", "photo_flickr_id": "168693340", "setting": "last-3-pick-old-and-tell", "worker_id": "UNQSN2W6G6UV2WQ", "story_id": "45223", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they sit outside in the hot sun", "storylet_id": "226118"}], [{"original_text": "they played outside together and had a good time", "album_id": "72157594168153856", "photo_flickr_id": "168696983", "setting": "last-3-pick-old-and-tell", "worker_id": "UNQSN2W6G6UV2WQ", "story_id": "45223", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they played outside together and had a good time", "storylet_id": "226119"}], [{"original_text": "Everyone was all dressed up.", "album_id": "72157594168153856", "photo_flickr_id": "168688116", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "45224", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was all dressed up .", "storylet_id": "226120"}], [{"original_text": "The family was off.", "album_id": "72157594168153856", "photo_flickr_id": "168688642", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "45224", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family was off .", "storylet_id": "226121"}], [{"original_text": "They all headed toward the car. ", "album_id": "72157594168153856", "photo_flickr_id": "168689651", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "45224", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all headed toward the car .", "storylet_id": "226122"}], [{"original_text": "After they layed out in the sun.", "album_id": "72157594168153856", "photo_flickr_id": "168693340", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "45224", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after they layed out in the sun .", "storylet_id": "226123"}], [{"original_text": "The rest of the family showed up as well.", "album_id": "72157594168153856", "photo_flickr_id": "168696983", "setting": "last-3-pick-old-and-tell", "worker_id": "V6NVRY4CXFHX0JD", "story_id": "45224", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the rest of the family showed up as well .", "storylet_id": "226124"}], [{"original_text": "As we waited for our friends to arrive, we admired this red car parked outside.", "album_id": "72157594200971706", "photo_flickr_id": "190838268", "setting": "first-2-pick-and-tell", "worker_id": "H7WDYVKFJDC6ZL7", "story_id": "45225", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "as we waited for our friends to arrive , we admired this red car parked outside .", "storylet_id": "226125"}], [{"original_text": "Shortly after, more and more friends were arriving to the party.", "album_id": "72157594200971706", "photo_flickr_id": "190838655", "setting": "first-2-pick-and-tell", "worker_id": "H7WDYVKFJDC6ZL7", "story_id": "45225", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "shortly after , more and more friends were arriving to the party .", "storylet_id": "226126"}], [{"original_text": "Our neighbors' dog even came to join the fun.", "album_id": "72157594200971706", "photo_flickr_id": "190839164", "setting": "first-2-pick-and-tell", "worker_id": "H7WDYVKFJDC6ZL7", "story_id": "45225", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our neighbors ' dog even came to join the fun .", "storylet_id": "226127"}], [{"original_text": "Our neighbors watched over the fence.", "album_id": "72157594200971706", "photo_flickr_id": "190839234", "setting": "first-2-pick-and-tell", "worker_id": "H7WDYVKFJDC6ZL7", "story_id": "45225", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "our neighbors watched over the fence .", "storylet_id": "226128"}], [{"original_text": "We later admired my mom's flowers in the garden.", "album_id": "72157594200971706", "photo_flickr_id": "190839372", "setting": "first-2-pick-and-tell", "worker_id": "H7WDYVKFJDC6ZL7", "story_id": "45225", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we later admired my mom 's flowers in the garden .", "storylet_id": "226129"}], [{"original_text": "The waiter showed us the wine that we would be having for the evening.", "album_id": "72157594200971706", "photo_flickr_id": "190838824", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45226", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the waiter showed us the wine that we would be having for the evening .", "storylet_id": "226130"}], [{"original_text": "The bottle was shaped rather nicely.", "album_id": "72157594200971706", "photo_flickr_id": "190837351", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45226", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the bottle was shaped rather nicely .", "storylet_id": "226131"}], [{"original_text": "The coffee was placed in cone shaped mugs.", "album_id": "72157594200971706", "photo_flickr_id": "190837414", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45226", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the coffee was placed in cone shaped mugs .", "storylet_id": "226132"}], [{"original_text": "And the martinis were lit up on the bottom.", "album_id": "72157594200971706", "photo_flickr_id": "190837672", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45226", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and the martinis were lit up on the bottom .", "storylet_id": "226133"}], [{"original_text": "John ordered a green martini", "album_id": "72157594200971706", "photo_flickr_id": "190837743", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45226", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] ordered a green martini", "storylet_id": "226134"}], [{"original_text": "My uncle showed up to the party in his old Farrari.", "album_id": "72157594200971706", "photo_flickr_id": "190838268", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45227", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my uncle showed up to the party in his old location .", "storylet_id": "226135"}], [{"original_text": "It was nice seeing the family again.", "album_id": "72157594200971706", "photo_flickr_id": "190838655", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45227", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was nice seeing the family again .", "storylet_id": "226136"}], [{"original_text": "We played fetch with the dog.", "album_id": "72157594200971706", "photo_flickr_id": "190839164", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45227", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we played fetch with the dog .", "storylet_id": "226137"}], [{"original_text": "The boys joked around and peered over the fence.", "album_id": "72157594200971706", "photo_flickr_id": "190839234", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45227", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boys joked around and peered over the fence .", "storylet_id": "226138"}], [{"original_text": "The flowers looked great for the party.", "album_id": "72157594200971706", "photo_flickr_id": "190839372", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45227", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the flowers looked great for the party .", "storylet_id": "226139"}], [{"original_text": "I had a graduation party last summer, my parents bought me a car!", "album_id": "72157594200971706", "photo_flickr_id": "190838268", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "45228", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a graduation party last summer , my parents bought me a car !", "storylet_id": "226140"}], [{"original_text": "All of my family showed up to celebrate with me.", "album_id": "72157594200971706", "photo_flickr_id": "190838655", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "45228", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of my family showed up to celebrate with me .", "storylet_id": "226141"}], [{"original_text": "Even my dog was there to have fun.", "album_id": "72157594200971706", "photo_flickr_id": "190839164", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "45228", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even my dog was there to have fun .", "storylet_id": "226142"}], [{"original_text": "The neighbors I grew up with made a quick appearance.", "album_id": "72157594200971706", "photo_flickr_id": "190839234", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "45228", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the neighbors i grew up with made a quick appearance .", "storylet_id": "226143"}], [{"original_text": "And my boyfriend bought me flowers as a graduation present, it was so sweet.", "album_id": "72157594200971706", "photo_flickr_id": "190839372", "setting": "last-3-pick-old-and-tell", "worker_id": "QNFA8KA4NRVC4L0", "story_id": "45228", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and my boyfriend bought me flowers as a graduation present , it was so sweet .", "storylet_id": "226144"}], [{"original_text": "The guests all arrived for the backyard party we were throwing. One of them brought his Ferrari he just bought.", "album_id": "72157594200971706", "photo_flickr_id": "190838268", "setting": "last-3-pick-old-and-tell", "worker_id": "5MICXORDFV761DW", "story_id": "45229", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the guests all arrived for the backyard party we were throwing . one of them brought his ferrari he just bought .", "storylet_id": "226145"}], [{"original_text": "We greeted the guests as they came on in, and caught up with each other as the night went on.", "album_id": "72157594200971706", "photo_flickr_id": "190838655", "setting": "last-3-pick-old-and-tell", "worker_id": "5MICXORDFV761DW", "story_id": "45229", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we greeted the guests as they came on in , and caught up with each other as the night went on .", "storylet_id": "226146"}], [{"original_text": "Our friend brought his new puppy and we all played fetch with a ball that he brought.", "album_id": "72157594200971706", "photo_flickr_id": "190839164", "setting": "last-3-pick-old-and-tell", "worker_id": "5MICXORDFV761DW", "story_id": "45229", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our friend brought his new puppy and we all played fetch with a ball that he brought .", "storylet_id": "226147"}], [{"original_text": "The guys were hanging out and chatting with each other about the latest work projects.", "album_id": "72157594200971706", "photo_flickr_id": "190839234", "setting": "last-3-pick-old-and-tell", "worker_id": "5MICXORDFV761DW", "story_id": "45229", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the guys were hanging out and chatting with each other about the latest work projects .", "storylet_id": "226148"}], [{"original_text": "This turned out to be a really fun and enjoyable picnic for all our close friends.", "album_id": "72157594200971706", "photo_flickr_id": "190839372", "setting": "last-3-pick-old-and-tell", "worker_id": "5MICXORDFV761DW", "story_id": "45229", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this turned out to be a really fun and enjoyable picnic for all our close friends .", "storylet_id": "226149"}], [{"original_text": "Putting up birdhouses is a fantastic way to bring birds to your yard.", "album_id": "72057594109105597", "photo_flickr_id": "129831312", "setting": "first-2-pick-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "45230", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "putting up birdhouses is a fantastic way to bring birds to your yard .", "storylet_id": "226150"}], [{"original_text": "They can be homemade or store-bought, whatever is convenient.", "album_id": "72057594109105597", "photo_flickr_id": "129902658", "setting": "first-2-pick-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "45230", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they can be homemade or store-bought , whatever is convenient .", "storylet_id": "226151"}], [{"original_text": "Make sure that you have refreshments for your birdhouse party.", "album_id": "72057594109105597", "photo_flickr_id": "129902659", "setting": "first-2-pick-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "45230", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "make sure that you have refreshments for your birdhouse party .", "storylet_id": "226152"}], [{"original_text": "Inside, have yummy treats available.", "album_id": "72057594109105597", "photo_flickr_id": "129907753", "setting": "first-2-pick-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "45230", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "inside , have yummy treats available .", "storylet_id": "226153"}], [{"original_text": "Hang a hammock so you can bird watch in comfort.", "album_id": "72057594109105597", "photo_flickr_id": "129907755", "setting": "first-2-pick-and-tell", "worker_id": "0KYBZMWV9AG19LR", "story_id": "45230", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "hang a hammock so you can bird watch in comfort .", "storylet_id": "226154"}], [{"original_text": "It was a good day to visit my parents and put up a bird house", "album_id": "72057594109105597", "photo_flickr_id": "129831312", "setting": "first-2-pick-and-tell", "worker_id": "LHAA90Q5SRKAKK4", "story_id": "45231", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a good day to visit my parents and put up a bird house", "storylet_id": "226155"}], [{"original_text": "My wife was reading a letter to my mother", "album_id": "72057594109105597", "photo_flickr_id": "129831313", "setting": "first-2-pick-and-tell", "worker_id": "LHAA90Q5SRKAKK4", "story_id": "45231", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my wife was reading a letter to my mother", "storylet_id": "226156"}], [{"original_text": "My brother ws also enjoying the visit drinkin his drink", "album_id": "72057594109105597", "photo_flickr_id": "129831315", "setting": "first-2-pick-and-tell", "worker_id": "LHAA90Q5SRKAKK4", "story_id": "45231", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my brother ws also enjoying the visit drinkin his drink", "storylet_id": "226157"}], [{"original_text": "My sister was also there.", "album_id": "72057594109105597", "photo_flickr_id": "129902659", "setting": "first-2-pick-and-tell", "worker_id": "LHAA90Q5SRKAKK4", "story_id": "45231", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my sister was also there .", "storylet_id": "226158"}], [{"original_text": "Dad was happy all the kids came to visit", "album_id": "72057594109105597", "photo_flickr_id": "129907754", "setting": "first-2-pick-and-tell", "worker_id": "LHAA90Q5SRKAKK4", "story_id": "45231", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "dad was happy all the kids came to visit", "storylet_id": "226159"}], [{"original_text": "Today I hung up the bird feeder.", "album_id": "72057594109105597", "photo_flickr_id": "129831312", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45232", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i hung up the bird feeder .", "storylet_id": "226160"}], [{"original_text": "My brother came over with his hair in a unique style.", "album_id": "72057594109105597", "photo_flickr_id": "129902658", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45232", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my brother came over with his hair in a unique style .", "storylet_id": "226161"}], [{"original_text": "My dad and neice stopped by and hungout on the back pourch.", "album_id": "72057594109105597", "photo_flickr_id": "129902659", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45232", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my dad and neice stopped by and hungout on the back pourch .", "storylet_id": "226162"}], [{"original_text": "We all gathered to have some wine.", "album_id": "72057594109105597", "photo_flickr_id": "129907753", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45232", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all gathered to have some wine .", "storylet_id": "226163"}], [{"original_text": "My brother then fell asleep in a hammock.", "album_id": "72057594109105597", "photo_flickr_id": "129907755", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45232", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my brother then fell asleep in a hammock .", "storylet_id": "226164"}], [{"original_text": "This is the new bird feeder we had installed in our backyard.", "album_id": "72057594109105597", "photo_flickr_id": "129831312", "setting": "last-3-pick-old-and-tell", "worker_id": "AKJMVGOX0YE0HNC", "story_id": "45233", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is the new bird feeder we had installed in our backyard .", "storylet_id": "226165"}], [{"original_text": "Here is one of my friends hanging out.", "album_id": "72057594109105597", "photo_flickr_id": "129902658", "setting": "last-3-pick-old-and-tell", "worker_id": "AKJMVGOX0YE0HNC", "story_id": "45233", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is one of my friends hanging out .", "storylet_id": "226166"}], [{"original_text": "This is some of my extended family chilling in the backyard.", "album_id": "72057594109105597", "photo_flickr_id": "129902659", "setting": "last-3-pick-old-and-tell", "worker_id": "AKJMVGOX0YE0HNC", "story_id": "45233", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is some of my extended family chilling in the backyard .", "storylet_id": "226167"}], [{"original_text": "Here they are enjoying a family meal sitting down and eating dinner.", "album_id": "72057594109105597", "photo_flickr_id": "129907753", "setting": "last-3-pick-old-and-tell", "worker_id": "AKJMVGOX0YE0HNC", "story_id": "45233", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here they are enjoying a family meal sitting down and eating dinner .", "storylet_id": "226168"}], [{"original_text": "This is the hammock in the backyard. There's someone laying in it.", "album_id": "72057594109105597", "photo_flickr_id": "129907755", "setting": "last-3-pick-old-and-tell", "worker_id": "AKJMVGOX0YE0HNC", "story_id": "45233", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the hammock in the backyard . there 's someone laying in it .", "storylet_id": "226169"}], [{"original_text": "It's spring time and we decided to throw a spring party. First, the husband cleaned up the yard and hung some bird houses.", "album_id": "72057594109105597", "photo_flickr_id": "129831312", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45234", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's spring time and we decided to throw a spring party . first , the husband cleaned up the yard and hung some bird houses .", "storylet_id": "226170"}], [{"original_text": "Our son came outside to help.", "album_id": "72057594109105597", "photo_flickr_id": "129902658", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45234", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our son came outside to help .", "storylet_id": "226171"}], [{"original_text": "Our neighbors came over to share a bit of wine on the deck.", "album_id": "72057594109105597", "photo_flickr_id": "129902659", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45234", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our neighbors came over to share a bit of wine on the deck .", "storylet_id": "226172"}], [{"original_text": "Then we moved inside to eat supper.", "album_id": "72057594109105597", "photo_flickr_id": "129907753", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45234", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we moved inside to eat supper .", "storylet_id": "226173"}], [{"original_text": "Finally, my husband surprised me with my very own hammock in the yard!", "album_id": "72057594109105597", "photo_flickr_id": "129907755", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45234", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , my husband surprised me with my very own hammock in the yard !", "storylet_id": "226174"}], [{"original_text": "Today Josh got his face painted. He was a cat. ", "album_id": "72057594109474817", "photo_flickr_id": "130161527", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45235", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today josh got his face painted . he was a cat .", "storylet_id": "226175"}], [{"original_text": "Jacob wanted to have his face painted too. So we made him a pink cat. ", "album_id": "72057594109474817", "photo_flickr_id": "130161573", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45235", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] wanted to have his face painted too . so we made him a pink cat .", "storylet_id": "226176"}], [{"original_text": "They both wanted to find eggs. So we hid all different colored eggs around the house. ", "album_id": "72057594109474817", "photo_flickr_id": "130161797", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45235", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they both wanted to find eggs . so we hid all different colored eggs around the house .", "storylet_id": "226177"}], [{"original_text": "Tabitha found two but was unhappy about the small hunting area so they all got dressed. ", "album_id": "72057594109474817", "photo_flickr_id": "130161760", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45235", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] found two but was unhappy about the small hunting area so they all got dressed .", "storylet_id": "226178"}], [{"original_text": "Outside they went! Playing and finding eggs for the rest of the day. ", "album_id": "72057594109474817", "photo_flickr_id": "130161934", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45235", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "outside they went ! playing and finding eggs for the rest of the day .", "storylet_id": "226179"}], [{"original_text": "The kids were getting their faces painted.", "album_id": "72057594109474817", "photo_flickr_id": "130161527", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45236", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids were getting their faces painted .", "storylet_id": "226180"}], [{"original_text": "He wanted pink whiskers.", "album_id": "72057594109474817", "photo_flickr_id": "130161573", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45236", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he wanted pink whiskers .", "storylet_id": "226181"}], [{"original_text": "He started to decorate eggs.", "album_id": "72057594109474817", "photo_flickr_id": "130161613", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45236", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he started to decorate eggs .", "storylet_id": "226182"}], [{"original_text": "She was very careful with hers. ", "album_id": "72057594109474817", "photo_flickr_id": "130161676", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45236", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she was very careful with hers .", "storylet_id": "226183"}], [{"original_text": "The eggs came out great.", "album_id": "72057594109474817", "photo_flickr_id": "130161704", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45236", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the eggs came out great .", "storylet_id": "226184"}], [{"original_text": "This easter we got the whole family together for some outdoor fun.", "album_id": "72057594109474817", "photo_flickr_id": "130161527", "setting": "last-3-pick-old-and-tell", "worker_id": "3KBJTCN8VAHYKLL", "story_id": "45237", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this easter we got the whole family together for some outdoor fun .", "storylet_id": "226185"}], [{"original_text": "We had the kids take some time indoors and do some face painting.", "album_id": "72057594109474817", "photo_flickr_id": "130161573", "setting": "last-3-pick-old-and-tell", "worker_id": "3KBJTCN8VAHYKLL", "story_id": "45237", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had the kids take some time indoors and do some face painting .", "storylet_id": "226186"}], [{"original_text": "The crafts didn't end there we also all took a minute or two to decorate our own egg.", "album_id": "72057594109474817", "photo_flickr_id": "130161797", "setting": "last-3-pick-old-and-tell", "worker_id": "3KBJTCN8VAHYKLL", "story_id": "45237", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crafts did n't end there we also all took a minute or two to decorate our own egg .", "storylet_id": "226187"}], [{"original_text": "This little doll took two for herself she was just having too much fun.", "album_id": "72057594109474817", "photo_flickr_id": "130161760", "setting": "last-3-pick-old-and-tell", "worker_id": "3KBJTCN8VAHYKLL", "story_id": "45237", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this little doll took two for herself she was just having too much fun .", "storylet_id": "226188"}], [{"original_text": "After our egg hunt we showed our competitive side and played egg toss.", "album_id": "72057594109474817", "photo_flickr_id": "130161934", "setting": "last-3-pick-old-and-tell", "worker_id": "3KBJTCN8VAHYKLL", "story_id": "45237", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after our egg hunt we showed our competitive side and played egg toss .", "storylet_id": "226189"}], [{"original_text": "It was easter time again, and the McDonald family farm.", "album_id": "72057594109474817", "photo_flickr_id": "130161527", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "45238", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was easter time again , and the mcdonald family farm .", "storylet_id": "226190"}], [{"original_text": "The McDonald family was ecstatic. Every year the kids paint their faces for fun. Billy loves to use pink paint.", "album_id": "72057594109474817", "photo_flickr_id": "130161573", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "45238", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the mcdonald family was ecstatic . every year the kids paint their faces for fun . [male] loves to use pink paint .", "storylet_id": "226191"}], [{"original_text": "The eggs are decorated and colored by the children in the early morning.", "album_id": "72057594109474817", "photo_flickr_id": "130161797", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "45238", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the eggs are decorated and colored by the children in the early morning .", "storylet_id": "226192"}], [{"original_text": "Then the kids hunt for the eggs. Maggie here won the contest finding a total of 18 eggs! ", "album_id": "72057594109474817", "photo_flickr_id": "130161760", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "45238", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then the kids hunt for the eggs . [female] here won the contest finding a total of 18 eggs !", "storylet_id": "226193"}], [{"original_text": "Sarah played a game by herself and everyone had a fantastic fun filled day.", "album_id": "72057594109474817", "photo_flickr_id": "130161934", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "45238", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] played a game by herself and everyone had a fantastic fun filled day .", "storylet_id": "226194"}], [{"original_text": "On Easter, my two of my children like to face paint their faces. My older boy likes face painting with blank paint.", "album_id": "72057594109474817", "photo_flickr_id": "130161527", "setting": "last-3-pick-old-and-tell", "worker_id": "C6QIESC8OYLB66Z", "story_id": "45239", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on easter , my two of my children like to face paint their faces . my older boy likes face painting with blank paint .", "storylet_id": "226195"}], [{"original_text": "My younger boy likes face painting his face with red paint.", "album_id": "72057594109474817", "photo_flickr_id": "130161573", "setting": "last-3-pick-old-and-tell", "worker_id": "C6QIESC8OYLB66Z", "story_id": "45239", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my younger boy likes face painting his face with red paint .", "storylet_id": "226196"}], [{"original_text": "My youngest boy just likes to help making the Easter eggs.", "album_id": "72057594109474817", "photo_flickr_id": "130161613", "setting": "last-3-pick-old-and-tell", "worker_id": "C6QIESC8OYLB66Z", "story_id": "45239", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my youngest boy just likes to help making the easter eggs .", "storylet_id": "226197"}], [{"original_text": "My daughter also likes helping to make the Easter eggs. ", "album_id": "72057594109474817", "photo_flickr_id": "130161676", "setting": "last-3-pick-old-and-tell", "worker_id": "C6QIESC8OYLB66Z", "story_id": "45239", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my daughter also likes helping to make the easter eggs .", "storylet_id": "226198"}], [{"original_text": "By early morning, we had a ton of different colored Easter eggs.", "album_id": "72057594109474817", "photo_flickr_id": "130161704", "setting": "last-3-pick-old-and-tell", "worker_id": "C6QIESC8OYLB66Z", "story_id": "45239", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "by early morning , we had a ton of different colored easter eggs .", "storylet_id": "226199"}], [{"original_text": "We took a mini boat to visit Chinatown today.", "album_id": "72057594109571993", "photo_flickr_id": "130224440", "setting": "first-2-pick-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "45240", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a mini boat to visit location today .", "storylet_id": "226200"}], [{"original_text": "The place looked very oriental.", "album_id": "72057594109571993", "photo_flickr_id": "130222286", "setting": "first-2-pick-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "45240", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the place looked very oriental .", "storylet_id": "226201"}], [{"original_text": "There were Chinese words that were present that I definitely did not understand.", "album_id": "72057594109571993", "photo_flickr_id": "130222287", "setting": "first-2-pick-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "45240", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were chinese words that were present that i definitely did not understand .", "storylet_id": "226202"}], [{"original_text": "There was also a sign that said there was no alcohol allowed.", "album_id": "72057594109571993", "photo_flickr_id": "130432417", "setting": "first-2-pick-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "45240", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also a sign that said there was no alcohol allowed .", "storylet_id": "226203"}], [{"original_text": "Night time came, and Chinatown was lit in lights.", "album_id": "72057594109571993", "photo_flickr_id": "133543198", "setting": "first-2-pick-and-tell", "worker_id": "TMTZ5LOAJOFNIQS", "story_id": "45240", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "night time came , and location was lit in lights .", "storylet_id": "226204"}], [{"original_text": "The concert was full this evening.", "album_id": "72057594109571993", "photo_flickr_id": "130215968", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45241", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the concert was full this evening .", "storylet_id": "226205"}], [{"original_text": "Afterwards we left before the whole crowd started to come out.", "album_id": "72057594109571993", "photo_flickr_id": "133543198", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45241", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "afterwards we left before the whole crowd started to come out .", "storylet_id": "226206"}], [{"original_text": "The next day we took the boat to town.", "album_id": "72057594109571993", "photo_flickr_id": "130224440", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45241", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next day we took the boat to town .", "storylet_id": "226207"}], [{"original_text": "There we saw the famous structure.", "album_id": "72057594109571993", "photo_flickr_id": "130222286", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45241", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there we saw the famous structure .", "storylet_id": "226208"}], [{"original_text": "We also saw a sign that showed how strict the town was on public behavior.", "album_id": "72057594109571993", "photo_flickr_id": "130432417", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45241", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also saw a sign that showed how strict the town was on public behavior .", "storylet_id": "226209"}], [{"original_text": "On our visit to china we rode a boat.", "album_id": "72057594109571993", "photo_flickr_id": "130224440", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45242", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our visit to china we rode a boat .", "storylet_id": "226210"}], [{"original_text": "We entered the big city.", "album_id": "72057594109571993", "photo_flickr_id": "130222286", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45242", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we entered the big city .", "storylet_id": "226211"}], [{"original_text": "We walked under this gorgeous arch.", "album_id": "72057594109571993", "photo_flickr_id": "130222287", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45242", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we walked under this gorgeous arch .", "storylet_id": "226212"}], [{"original_text": "Better drink indoors!", "album_id": "72057594109571993", "photo_flickr_id": "130432417", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45242", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "better drink indoors !", "storylet_id": "226213"}], [{"original_text": "The night was even more pretty.", "album_id": "72057594109571993", "photo_flickr_id": "133543198", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45242", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night was even more pretty .", "storylet_id": "226214"}], [{"original_text": "This summer I took me a nice little vacation over seas.", "album_id": "72057594109571993", "photo_flickr_id": "130224440", "setting": "last-3-pick-old-and-tell", "worker_id": "3KBJTCN8VAHYKLL", "story_id": "45243", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this summer i took me a nice little vacation over seas .", "storylet_id": "226215"}], [{"original_text": "The architecture there was amazing.", "album_id": "72057594109571993", "photo_flickr_id": "130222286", "setting": "last-3-pick-old-and-tell", "worker_id": "3KBJTCN8VAHYKLL", "story_id": "45243", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the architecture there was amazing .", "storylet_id": "226216"}], [{"original_text": "This arch here was one of the greatest things I've ever seen.", "album_id": "72057594109571993", "photo_flickr_id": "130222287", "setting": "last-3-pick-old-and-tell", "worker_id": "3KBJTCN8VAHYKLL", "story_id": "45243", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this arch here was one of the greatest things i 've ever seen .", "storylet_id": "226217"}], [{"original_text": "I had to take a picture of this to bring back home to my drinking buddies.", "album_id": "72057594109571993", "photo_flickr_id": "130432417", "setting": "last-3-pick-old-and-tell", "worker_id": "3KBJTCN8VAHYKLL", "story_id": "45243", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i had to take a picture of this to bring back home to my drinking buddies .", "storylet_id": "226218"}], [{"original_text": "The night life there is pretty exciting and the streets are lit up wonderfully.", "album_id": "72057594109571993", "photo_flickr_id": "133543198", "setting": "last-3-pick-old-and-tell", "worker_id": "3KBJTCN8VAHYKLL", "story_id": "45243", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night life there is pretty exciting and the streets are lit up wonderfully .", "storylet_id": "226219"}], [{"original_text": "In the maritime city hte boat gets ready to depart.", "album_id": "72057594109571993", "photo_flickr_id": "130224440", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6XMW8ZIZCTZBE", "story_id": "45244", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "in the maritime city hte boat gets ready to depart .", "storylet_id": "226220"}], [{"original_text": "At the destination, they spot the last tower like structure.", "album_id": "72057594109571993", "photo_flickr_id": "130222286", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6XMW8ZIZCTZBE", "story_id": "45244", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "at the destination , they spot the last tower like structure .", "storylet_id": "226221"}], [{"original_text": "Upon closer inspection they see that it has foreign markers.", "album_id": "72057594109571993", "photo_flickr_id": "130222287", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6XMW8ZIZCTZBE", "story_id": "45244", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "upon closer inspection they see that it has foreign markers .", "storylet_id": "226222"}], [{"original_text": "After the little trip they decide to drink but choose not to in this location.", "album_id": "72057594109571993", "photo_flickr_id": "130432417", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6XMW8ZIZCTZBE", "story_id": "45244", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the little trip they decide to drink but choose not to in this location .", "storylet_id": "226223"}], [{"original_text": "They will find a bar in the city at night.", "album_id": "72057594109571993", "photo_flickr_id": "133543198", "setting": "last-3-pick-old-and-tell", "worker_id": "2J6XMW8ZIZCTZBE", "story_id": "45244", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they will find a bar in the city at night .", "storylet_id": "226224"}], [{"original_text": "He was dressed for the occasion.", "album_id": "72057594110127650", "photo_flickr_id": "130591626", "setting": "first-2-pick-and-tell", "worker_id": "H9W993Z6DLFO3L1", "story_id": "45245", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "he was dressed for the occasion .", "storylet_id": "226225"}], [{"original_text": "Walking with a purpose.", "album_id": "72057594110127650", "photo_flickr_id": "130594289", "setting": "first-2-pick-and-tell", "worker_id": "H9W993Z6DLFO3L1", "story_id": "45245", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "walking with a purpose .", "storylet_id": "226226"}], [{"original_text": "Looking sharp.", "album_id": "72057594110127650", "photo_flickr_id": "130589287", "setting": "first-2-pick-and-tell", "worker_id": "H9W993Z6DLFO3L1", "story_id": "45245", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "looking sharp .", "storylet_id": "226227"}], [{"original_text": "He knew what he wanted.", "album_id": "72057594110127650", "photo_flickr_id": "130588686", "setting": "first-2-pick-and-tell", "worker_id": "H9W993Z6DLFO3L1", "story_id": "45245", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he knew what he wanted .", "storylet_id": "226228"}], [{"original_text": "The shades brought it all together.", "album_id": "72057594110127650", "photo_flickr_id": "130591045", "setting": "first-2-pick-and-tell", "worker_id": "H9W993Z6DLFO3L1", "story_id": "45245", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the shades brought it all together .", "storylet_id": "226229"}], [{"original_text": "Hi, I'm Dallen. I'm aspiring to be a model.", "album_id": "72057594110127650", "photo_flickr_id": "130594939", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45246", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hi , i 'm dallen . i 'm aspiring to be a model .", "storylet_id": "226230"}], [{"original_text": "Everything I do, I do it with grace...", "album_id": "72057594110127650", "photo_flickr_id": "130589287", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45246", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything i do , i do it with grace ...", "storylet_id": "226231"}], [{"original_text": "I do it with style. ", "album_id": "72057594110127650", "photo_flickr_id": "130588686", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45246", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i do it with style .", "storylet_id": "226232"}], [{"original_text": "I might be sitting here on this porch, but I do it while looking cool...", "album_id": "72057594110127650", "photo_flickr_id": "130587045", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45246", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i might be sitting here on this porch , but i do it while looking cool ...", "storylet_id": "226233"}], [{"original_text": "Even on laundry day, I don't just wear my grungy clothes. I rock my grungy clothes! Yes, I'm Dallen. Hit me up some time.", "album_id": "72057594110127650", "photo_flickr_id": "130591045", "setting": "first-2-pick-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45246", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even on laundry day , i do n't just wear my grungy clothes . i rock my grungy clothes ! yes , i 'm dallen . hit me up some time .", "storylet_id": "226234"}], [{"original_text": "A young man did a photo shoot in the park today.", "album_id": "72057594110127650", "photo_flickr_id": "130591626", "setting": "last-3-pick-old-and-tell", "worker_id": "JZ7IID36Z0Q5AMD", "story_id": "45247", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a young man did a photo shoot in the park today .", "storylet_id": "226235"}], [{"original_text": "He had some pictures taken as he was walking.", "album_id": "72057594110127650", "photo_flickr_id": "130594289", "setting": "last-3-pick-old-and-tell", "worker_id": "JZ7IID36Z0Q5AMD", "story_id": "45247", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he had some pictures taken as he was walking .", "storylet_id": "226236"}], [{"original_text": "He tried to look casual.", "album_id": "72057594110127650", "photo_flickr_id": "130589287", "setting": "last-3-pick-old-and-tell", "worker_id": "JZ7IID36Z0Q5AMD", "story_id": "45247", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he tried to look casual .", "storylet_id": "226237"}], [{"original_text": "But he still wanted to look cool.", "album_id": "72057594110127650", "photo_flickr_id": "130588686", "setting": "last-3-pick-old-and-tell", "worker_id": "JZ7IID36Z0Q5AMD", "story_id": "45247", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but he still wanted to look cool .", "storylet_id": "226238"}], [{"original_text": "For his final look, he put on a Red Sox shirt.", "album_id": "72057594110127650", "photo_flickr_id": "130591045", "setting": "last-3-pick-old-and-tell", "worker_id": "JZ7IID36Z0Q5AMD", "story_id": "45247", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "for his final look , he put on a organization organization shirt .", "storylet_id": "226239"}], [{"original_text": "I always thought I had good looks.", "album_id": "72057594110127650", "photo_flickr_id": "130591626", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45248", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i always thought i had good looks .", "storylet_id": "226240"}], [{"original_text": "I have an awesome sense of style.", "album_id": "72057594110127650", "photo_flickr_id": "130594289", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45248", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i have an awesome sense of style .", "storylet_id": "226241"}], [{"original_text": "Maybe I should be a model.", "album_id": "72057594110127650", "photo_flickr_id": "130589287", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45248", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "maybe i should be a model .", "storylet_id": "226242"}], [{"original_text": "I'll start with head shots.", "album_id": "72057594110127650", "photo_flickr_id": "130588686", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45248", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'll start with head shots .", "storylet_id": "226243"}], [{"original_text": "Even when I dress down I look awesome", "album_id": "72057594110127650", "photo_flickr_id": "130591045", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45248", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even when i dress down i look awesome", "storylet_id": "226244"}], [{"original_text": "Here is my friend Charles. He looks cool. ", "album_id": "72057594110127650", "photo_flickr_id": "130591626", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "45249", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "here is my friend [male] . he looks cool .", "storylet_id": "226245"}], [{"original_text": "But deep down inside he's pretty depressed. His wife filed for divorce and he just got let go at his firm. ", "album_id": "72057594110127650", "photo_flickr_id": "130594289", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "45249", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but deep down inside he 's pretty depressed . his wife filed for divorce and he just got let go at his firm .", "storylet_id": "226246"}], [{"original_text": "He asked me to take these voyager photos for some reason. I'm not sure, I'm just playing along. ", "album_id": "72057594110127650", "photo_flickr_id": "130589287", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "45249", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he asked me to take these voyager photos for some reason . i 'm not sure , i 'm just playing along .", "storylet_id": "226247"}], [{"original_text": "He hasn't noticed my confusion, but its hard for me to tell when he wears sunglasses. ", "album_id": "72057594110127650", "photo_flickr_id": "130588686", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "45249", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he has n't noticed my confusion , but its hard for me to tell when he wears sunglasses .", "storylet_id": "226248"}], [{"original_text": "He ripped off his shirt and revealed a Boston Red Sox shirt. He said nothing. Well at least we are on the same page when it comes to baseball teams. ", "album_id": "72057594110127650", "photo_flickr_id": "130591045", "setting": "last-3-pick-old-and-tell", "worker_id": "GMH3ARSR5F961NV", "story_id": "45249", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he ripped off his shirt and revealed a organization organization organization shirt . he said nothing . well at least we are on the same page when it comes to baseball teams .", "storylet_id": "226249"}], [{"original_text": "The artichokes were cooked to perfection.", "album_id": "72057594110194999", "photo_flickr_id": "130640508", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45250", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the artichokes were cooked to perfection .", "storylet_id": "226250"}], [{"original_text": "And the pasta salad tasted like the one from the restaurant.", "album_id": "72057594110194999", "photo_flickr_id": "130640957", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45250", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and the pasta salad tasted like the one from the restaurant .", "storylet_id": "226251"}], [{"original_text": "The asparagus was our favorite and was perfectly crisp.", "album_id": "72057594110194999", "photo_flickr_id": "130641624", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45250", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the asparagus was our favorite and was perfectly crisp .", "storylet_id": "226252"}], [{"original_text": "Overall the table was full and looked great but it was missing something.", "album_id": "72057594110194999", "photo_flickr_id": "130640866", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45250", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "overall the table was full and looked great but it was missing something .", "storylet_id": "226253"}], [{"original_text": "That's when I remembered the flower bouquet.", "album_id": "72057594110194999", "photo_flickr_id": "130643998", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45250", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "that 's when i remembered the flower bouquet .", "storylet_id": "226254"}], [{"original_text": "The easter feast was ready.", "album_id": "72057594110194999", "photo_flickr_id": "130638214", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45251", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the easter feast was ready .", "storylet_id": "226255"}], [{"original_text": "The fried chicken was done.", "album_id": "72057594110194999", "photo_flickr_id": "130640657", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45251", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the fried chicken was done .", "storylet_id": "226256"}], [{"original_text": "The macaroni salad looked yummy.", "album_id": "72057594110194999", "photo_flickr_id": "130641031", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45251", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the macaroni salad looked yummy .", "storylet_id": "226257"}], [{"original_text": "The ham looked pink and perfect.", "album_id": "72057594110194999", "photo_flickr_id": "130641758", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45251", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the ham looked pink and perfect .", "storylet_id": "226258"}], [{"original_text": "And the desert was glazed to perfection.", "album_id": "72057594110194999", "photo_flickr_id": "130641940", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45251", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and the desert was glazed to perfection .", "storylet_id": "226259"}], [{"original_text": " I finally made it back home from college for my winter break and as soon as I got there my grandma made so much food.", "album_id": "72057594110194999", "photo_flickr_id": "130638214", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "45252", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i finally made it back home from college for my winter break and as soon as i got there my grandma made so much food .", "storylet_id": "226260"}], [{"original_text": "This is her homemade fried chicken which she has a special recipe for.", "album_id": "72057594110194999", "photo_flickr_id": "130640657", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "45252", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is her homemade fried chicken which she has a special recipe for .", "storylet_id": "226261"}], [{"original_text": "I love this pasta it is so delicious and healthy.", "album_id": "72057594110194999", "photo_flickr_id": "130641031", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "45252", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i love this pasta it is so delicious and healthy .", "storylet_id": "226262"}], [{"original_text": "This ham is so good it is glaze so perfect.", "album_id": "72057594110194999", "photo_flickr_id": "130641758", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "45252", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this ham is so good it is glaze so perfect .", "storylet_id": "226263"}], [{"original_text": " This gets me very full. I am just so happy to come home on winter break and enjoy some homemade food for my grandma.", "album_id": "72057594110194999", "photo_flickr_id": "130641940", "setting": "last-3-pick-old-and-tell", "worker_id": "JSPMQMUXTWWUT24", "story_id": "45252", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this gets me very full . i am just so happy to come home on winter break and enjoy some homemade food for my grandma .", "storylet_id": "226264"}], [{"original_text": "Celebrating any holiday is fun.", "album_id": "72057594110194999", "photo_flickr_id": "130638214", "setting": "last-3-pick-old-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "45253", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "celebrating any holiday is fun .", "storylet_id": "226265"}], [{"original_text": "There's always delicious food to be had, like chicken. ", "album_id": "72057594110194999", "photo_flickr_id": "130640657", "setting": "last-3-pick-old-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "45253", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there 's always delicious food to be had , like chicken .", "storylet_id": "226266"}], [{"original_text": "It's important to remember the pastas and salads though, and try and balance things out a bit.", "album_id": "72057594110194999", "photo_flickr_id": "130641031", "setting": "last-3-pick-old-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "45253", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it 's important to remember the pastas and salads though , and try and balance things out a bit .", "storylet_id": "226267"}], [{"original_text": "But, balance or not, ham is a lovely addition to any plate of food!", "album_id": "72057594110194999", "photo_flickr_id": "130641758", "setting": "last-3-pick-old-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "45253", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but , balance or not , ham is a lovely addition to any plate of food !", "storylet_id": "226268"}], [{"original_text": "And who can forget dessert?!", "album_id": "72057594110194999", "photo_flickr_id": "130641940", "setting": "last-3-pick-old-and-tell", "worker_id": "IK5ST10Z53L1MYE", "story_id": "45253", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and who can forget dessert ? !", "storylet_id": "226269"}], [{"original_text": "Brussel sprouts are my specialty.", "album_id": "72057594110194999", "photo_flickr_id": "130640508", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45254", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "brussel sprouts are my specialty .", "storylet_id": "226270"}], [{"original_text": "Although I can make good past florentine.", "album_id": "72057594110194999", "photo_flickr_id": "130640957", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45254", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "although i can make good past florentine .", "storylet_id": "226271"}], [{"original_text": "But my mothers asparagus is the best.", "album_id": "72057594110194999", "photo_flickr_id": "130641624", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45254", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but my mothers asparagus is the best .", "storylet_id": "226272"}], [{"original_text": "All the food was really good.", "album_id": "72057594110194999", "photo_flickr_id": "130640866", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45254", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all the food was really good .", "storylet_id": "226273"}], [{"original_text": "I even used my personal flower as a centerpiece.", "album_id": "72057594110194999", "photo_flickr_id": "130643998", "setting": "last-3-pick-old-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45254", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i even used my personal flower as a centerpiece .", "storylet_id": "226274"}], [{"original_text": "One day while Dan was walking his dog, he had an idea.", "album_id": "72157626392699829", "photo_flickr_id": "5627560007", "setting": "first-2-pick-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "45255", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "one day while [male] was walking his dog , he had an idea .", "storylet_id": "226275"}], [{"original_text": "He should make his wife dinner and have a movie night with her! They wouldn't even have to leave their little shack of a house, and it would be very romantic.", "album_id": "72157626392699829", "photo_flickr_id": "5628158332", "setting": "first-2-pick-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "45255", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he should make his wife dinner and have a movie night with her ! they would n't even have to leave their little shack of a house , and it would be very romantic .", "storylet_id": "226276"}], [{"original_text": "So Dan started right away on cooking a fantastic dinner,", "album_id": "72157626392699829", "photo_flickr_id": "5627583361", "setting": "first-2-pick-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "45255", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so [male] started right away on cooking a fantastic dinner ,", "storylet_id": "226277"}], [{"original_text": "which his wife ate right up.", "album_id": "72157626392699829", "photo_flickr_id": "5627578775", "setting": "first-2-pick-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "45255", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "which his wife ate right up .", "storylet_id": "226278"}], [{"original_text": "And then they started playing a movie so that they could cuddle on the couch and keep the romance alive. ", "album_id": "72157626392699829", "photo_flickr_id": "5627585231", "setting": "first-2-pick-and-tell", "worker_id": "OSXULTB94FFGMOU", "story_id": "45255", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and then they started playing a movie so that they could cuddle on the couch and keep the romance alive .", "storylet_id": "226279"}], [{"original_text": "It is interesting how the design of buildings differ in various countries. ", "album_id": "72157626392699829", "photo_flickr_id": "5627556253", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "45256", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it is interesting how the design of buildings differ in various countries .", "storylet_id": "226280"}], [{"original_text": "In order to get a feel of the scenery, I decided to take a stroll with my trusty companion. ", "album_id": "72157626392699829", "photo_flickr_id": "5627560007", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "45256", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in order to get a feel of the scenery , i decided to take a stroll with my trusty companion .", "storylet_id": "226281"}], [{"original_text": "The scenery was full of plant life and various color houses. ", "album_id": "72157626392699829", "photo_flickr_id": "5628147972", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "45256", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the scenery was full of plant life and various color houses .", "storylet_id": "226282"}], [{"original_text": "As the sun was setting, it looked almost like a dream. ", "album_id": "72157626392699829", "photo_flickr_id": "5628150288", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "45256", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "as the sun was setting , it looked almost like a dream .", "storylet_id": "226283"}], [{"original_text": "We reached back to our final destination, our house. ", "album_id": "72157626392699829", "photo_flickr_id": "5627567993", "setting": "first-2-pick-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "45256", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we reached back to our final destination , our house .", "storylet_id": "226284"}], [{"original_text": "My brother came to visit with his dog. ", "album_id": "72157626392699829", "photo_flickr_id": "5627560007", "setting": "last-3-pick-old-and-tell", "worker_id": "XAGA0CS19DKC5YV", "story_id": "45257", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brother came to visit with his dog .", "storylet_id": "226285"}], [{"original_text": "I showed him my house. ", "album_id": "72157626392699829", "photo_flickr_id": "5628158332", "setting": "last-3-pick-old-and-tell", "worker_id": "XAGA0CS19DKC5YV", "story_id": "45257", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i showed him my house .", "storylet_id": "226286"}], [{"original_text": "Then he cooked me a dinner.", "album_id": "72157626392699829", "photo_flickr_id": "5627583361", "setting": "last-3-pick-old-and-tell", "worker_id": "XAGA0CS19DKC5YV", "story_id": "45257", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then he cooked me a dinner .", "storylet_id": "226287"}], [{"original_text": "Then we ate, it was delicious. ", "album_id": "72157626392699829", "photo_flickr_id": "5627578775", "setting": "last-3-pick-old-and-tell", "worker_id": "XAGA0CS19DKC5YV", "story_id": "45257", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we ate , it was delicious .", "storylet_id": "226288"}], [{"original_text": "After dinner we watched a netflix movie. ", "album_id": "72157626392699829", "photo_flickr_id": "5627585231", "setting": "last-3-pick-old-and-tell", "worker_id": "XAGA0CS19DKC5YV", "story_id": "45257", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after dinner we watched a netflix movie .", "storylet_id": "226289"}], [{"original_text": "Our friends moved to a new place this past summer.", "album_id": "72157626392699829", "photo_flickr_id": "5627560007", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "45258", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our friends moved to a new place this past summer .", "storylet_id": "226290"}], [{"original_text": "They moved into this little place near the coast.", "album_id": "72157626392699829", "photo_flickr_id": "5628158332", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "45258", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they moved into this little place near the coast .", "storylet_id": "226291"}], [{"original_text": "He decided that he would welcome us by cooking us dinner.", "album_id": "72157626392699829", "photo_flickr_id": "5627583361", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "45258", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he decided that he would welcome us by cooking us dinner .", "storylet_id": "226292"}], [{"original_text": "It was a very nice dinner that was enjoyed by all.", "album_id": "72157626392699829", "photo_flickr_id": "5627578775", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "45258", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a very nice dinner that was enjoyed by all .", "storylet_id": "226293"}], [{"original_text": "We then settled down for the night and watched a movie.", "album_id": "72157626392699829", "photo_flickr_id": "5627585231", "setting": "last-3-pick-old-and-tell", "worker_id": "10CXC7489G8OH13", "story_id": "45258", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we then settled down for the night and watched a movie .", "storylet_id": "226294"}], [{"original_text": "I decided to make the move from California to Haiti.", "album_id": "72157626392699829", "photo_flickr_id": "5627556253", "setting": "last-3-pick-old-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "45259", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to make the move from location to location .", "storylet_id": "226295"}], [{"original_text": "Here I am at my new place with my new dog.", "album_id": "72157626392699829", "photo_flickr_id": "5627560007", "setting": "last-3-pick-old-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "45259", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here i am at my new place with my new dog .", "storylet_id": "226296"}], [{"original_text": "The neighborhood is green, and not too overcrowded.", "album_id": "72157626392699829", "photo_flickr_id": "5628147972", "setting": "last-3-pick-old-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "45259", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the neighborhood is green , and not too overcrowded .", "storylet_id": "226297"}], [{"original_text": "I decided to go for a walk during a beautiful day.", "album_id": "72157626392699829", "photo_flickr_id": "5628150288", "setting": "last-3-pick-old-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "45259", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i decided to go for a walk during a beautiful day .", "storylet_id": "226298"}], [{"original_text": "When I got back, my house had been looted, leaving me with nothing. ", "album_id": "72157626392699829", "photo_flickr_id": "5627567993", "setting": "last-3-pick-old-and-tell", "worker_id": "3JRI6ARVBX3K329", "story_id": "45259", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when i got back , my house had been looted , leaving me with nothing .", "storylet_id": "226299"}], [{"original_text": "The family was taking the kids outside.", "album_id": "377577", "photo_flickr_id": "15685798", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45260", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family was taking the kids outside .", "storylet_id": "226300"}], [{"original_text": "First they went fishing.", "album_id": "377577", "photo_flickr_id": "15685765", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45260", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "first they went fishing .", "storylet_id": "226301"}], [{"original_text": "Then they played some football.", "album_id": "377577", "photo_flickr_id": "15685806", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45260", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they played some football .", "storylet_id": "226302"}], [{"original_text": "The boy was getting tired though.", "album_id": "377577", "photo_flickr_id": "15685810", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45260", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the boy was getting tired though .", "storylet_id": "226303"}], [{"original_text": "So he took off his uniform.", "album_id": "377577", "photo_flickr_id": "15685807", "setting": "first-2-pick-and-tell", "worker_id": "DYRI2ZKC23FZDUU", "story_id": "45260", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "so he took off his uniform .", "storylet_id": "226304"}], [{"original_text": "We took our son on vacation last week.", "album_id": "377577", "photo_flickr_id": "15685768", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "45261", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took our son on vacation last week .", "storylet_id": "226305"}], [{"original_text": "Here he is posing in front of the golden gate bridge!", "album_id": "377577", "photo_flickr_id": "15685774", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "45261", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here he is posing in front of the golden gate bridge !", "storylet_id": "226306"}], [{"original_text": "He liked cars a lot and wants to drive when he turns 16 as soon as possible.", "album_id": "377577", "photo_flickr_id": "15685801", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "45261", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he liked cars a lot and wants to drive when he turns 16 as soon as possible .", "storylet_id": "226307"}], [{"original_text": "We took a classic car driving around for the day.", "album_id": "377577", "photo_flickr_id": "15687911", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "45261", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we took a classic car driving around for the day .", "storylet_id": "226308"}], [{"original_text": "After all that excitement we were tired so we went swimming.", "album_id": "377577", "photo_flickr_id": "15685812", "setting": "first-2-pick-and-tell", "worker_id": "K0D9TFF8NR998UP", "story_id": "45261", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after all that excitement we were tired so we went swimming .", "storylet_id": "226309"}], [{"original_text": "I found a vintage picture of my mother and father with my brother and I.", "album_id": "377577", "photo_flickr_id": "15685798", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45262", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i found a vintage picture of my mother and father with my brother and i .", "storylet_id": "226310"}], [{"original_text": "Here is our first fishing trip.", "album_id": "377577", "photo_flickr_id": "15685765", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45262", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is our first fishing trip .", "storylet_id": "226311"}], [{"original_text": "Here I am teaching my little brother about football.", "album_id": "377577", "photo_flickr_id": "15685806", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45262", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here i am teaching my little brother about football .", "storylet_id": "226312"}], [{"original_text": "Here is him posing with his helmet.", "album_id": "377577", "photo_flickr_id": "15685810", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45262", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here is him posing with his helmet .", "storylet_id": "226313"}], [{"original_text": "Here is him without.", "album_id": "377577", "photo_flickr_id": "15685807", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45262", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is him without .", "storylet_id": "226314"}], [{"original_text": "We took my son on a roadtrip. ", "album_id": "377577", "photo_flickr_id": "15685768", "setting": "last-3-pick-old-and-tell", "worker_id": "6DWJOITTQJ3F2W8", "story_id": "45263", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took my son on a roadtrip .", "storylet_id": "226315"}], [{"original_text": "We stopped to look at the golden gate bridge. ", "album_id": "377577", "photo_flickr_id": "15685774", "setting": "last-3-pick-old-and-tell", "worker_id": "6DWJOITTQJ3F2W8", "story_id": "45263", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we stopped to look at the golden gate bridge .", "storylet_id": "226316"}], [{"original_text": "He had a lot of fun in the go carts. ", "album_id": "377577", "photo_flickr_id": "15685801", "setting": "last-3-pick-old-and-tell", "worker_id": "6DWJOITTQJ3F2W8", "story_id": "45263", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he had a lot of fun in the go carts .", "storylet_id": "226317"}], [{"original_text": "We stopped in the desert and took a picture. ", "album_id": "377577", "photo_flickr_id": "15687911", "setting": "last-3-pick-old-and-tell", "worker_id": "6DWJOITTQJ3F2W8", "story_id": "45263", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we stopped in the desert and took a picture .", "storylet_id": "226318"}], [{"original_text": "My son was excited to get home. ", "album_id": "377577", "photo_flickr_id": "15685812", "setting": "last-3-pick-old-and-tell", "worker_id": "6DWJOITTQJ3F2W8", "story_id": "45263", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my son was excited to get home .", "storylet_id": "226319"}], [{"original_text": "dad , mom and the brothers. ", "album_id": "377577", "photo_flickr_id": "15685798", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45264", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "dad , mom and the brothers .", "storylet_id": "226320"}], [{"original_text": "going fishing for the first time. ", "album_id": "377577", "photo_flickr_id": "15685765", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45264", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "going fishing for the first time .", "storylet_id": "226321"}], [{"original_text": "Playing football with his cousin. ", "album_id": "377577", "photo_flickr_id": "15685806", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45264", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "playing football with his cousin .", "storylet_id": "226322"}], [{"original_text": "getting ready for his first game. ", "album_id": "377577", "photo_flickr_id": "15685810", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45264", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "getting ready for his first game .", "storylet_id": "226323"}], [{"original_text": "He did pretty good. ", "album_id": "377577", "photo_flickr_id": "15685807", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45264", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he did pretty good .", "storylet_id": "226324"}], [{"original_text": "A large crowd gathers at the cathedral. ", "album_id": "72157594301564931", "photo_flickr_id": "253857903", "setting": "first-2-pick-and-tell", "worker_id": "EGWTSIHLBO1EKKD", "story_id": "45265", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a large crowd gathers at the cathedral .", "storylet_id": "226325"}], [{"original_text": "A stunning display of the cathedral. ", "album_id": "72157594301564931", "photo_flickr_id": "253857923", "setting": "first-2-pick-and-tell", "worker_id": "EGWTSIHLBO1EKKD", "story_id": "45265", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a stunning display of the cathedral .", "storylet_id": "226326"}], [{"original_text": "An immense crowd waits outside patiently of the cathedral. ", "album_id": "72157594301564931", "photo_flickr_id": "253858230", "setting": "first-2-pick-and-tell", "worker_id": "EGWTSIHLBO1EKKD", "story_id": "45265", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "an immense crowd waits outside patiently of the cathedral .", "storylet_id": "226327"}], [{"original_text": "I'm having a great day sightseeing so far. ", "album_id": "72157594301564931", "photo_flickr_id": "253858513", "setting": "first-2-pick-and-tell", "worker_id": "EGWTSIHLBO1EKKD", "story_id": "45265", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 'm having a great day sightseeing so far .", "storylet_id": "226328"}], [{"original_text": "This is a different and older building. ", "album_id": "72157594301564931", "photo_flickr_id": "253859620", "setting": "first-2-pick-and-tell", "worker_id": "EGWTSIHLBO1EKKD", "story_id": "45265", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is a different and older building .", "storylet_id": "226329"}], [{"original_text": "We were mesmerized by the crowds nearby!", "album_id": "72157594301564931", "photo_flickr_id": "253857903", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "45266", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were mesmerized by the crowds nearby !", "storylet_id": "226330"}], [{"original_text": "The whole town gathered for the speech!", "album_id": "72157594301564931", "photo_flickr_id": "253858230", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "45266", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the whole town gathered for the speech !", "storylet_id": "226331"}], [{"original_text": "We had fun adventuring through the city!", "album_id": "72157594301564931", "photo_flickr_id": "253858728", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "45266", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we had fun adventuring through the city !", "storylet_id": "226332"}], [{"original_text": "We had a great time discovering what the unique city had to offer!", "album_id": "72157594301564931", "photo_flickr_id": "253859396", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "45266", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a great time discovering what the unique city had to offer !", "storylet_id": "226333"}], [{"original_text": "We loved the community mindedness of the group we traveled with!", "album_id": "72157594301564931", "photo_flickr_id": "253859644", "setting": "first-2-pick-and-tell", "worker_id": "55A2QR65B1NPVDC", "story_id": "45266", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we loved the community mindedness of the group we traveled with !", "storylet_id": "226334"}], [{"original_text": "It was crowded out today.", "album_id": "72157594301564931", "photo_flickr_id": "253857903", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45267", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was crowded out today .", "storylet_id": "226335"}], [{"original_text": "We all went to this building for a protest.", "album_id": "72157594301564931", "photo_flickr_id": "253858230", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45267", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we all went to this building for a protest .", "storylet_id": "226336"}], [{"original_text": "We sat on a bench to take a break.", "album_id": "72157594301564931", "photo_flickr_id": "253858728", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45267", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we sat on a bench to take a break .", "storylet_id": "226337"}], [{"original_text": "We saw this beautiful art. ", "album_id": "72157594301564931", "photo_flickr_id": "253859396", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45267", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we saw this beautiful art .", "storylet_id": "226338"}], [{"original_text": "The city was still crowded.", "album_id": "72157594301564931", "photo_flickr_id": "253859644", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45267", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the city was still crowded .", "storylet_id": "226339"}], [{"original_text": "I looked outside my hotel window at all the people while on vacation.", "album_id": "72157594301564931", "photo_flickr_id": "253857903", "setting": "last-3-pick-old-and-tell", "worker_id": "J15PHWX0VPODQPZ", "story_id": "45268", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i looked outside my hotel window at all the people while on vacation .", "storylet_id": "226340"}], [{"original_text": "The crowd was large but I made my way through to my destination.", "album_id": "72157594301564931", "photo_flickr_id": "253858230", "setting": "last-3-pick-old-and-tell", "worker_id": "J15PHWX0VPODQPZ", "story_id": "45268", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the crowd was large but i made my way through to my destination .", "storylet_id": "226341"}], [{"original_text": "I posed for a picture that my boyfriend took.", "album_id": "72157594301564931", "photo_flickr_id": "253858728", "setting": "last-3-pick-old-and-tell", "worker_id": "J15PHWX0VPODQPZ", "story_id": "45268", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i posed for a picture that my boyfriend took .", "storylet_id": "226342"}], [{"original_text": "The museum was so amazing that I didn't want to leave.", "album_id": "72157594301564931", "photo_flickr_id": "253859396", "setting": "last-3-pick-old-and-tell", "worker_id": "J15PHWX0VPODQPZ", "story_id": "45268", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the museum was so amazing that i did n't want to leave .", "storylet_id": "226343"}], [{"original_text": "After a long day of sight seeing, I made it back to my hotel room.", "album_id": "72157594301564931", "photo_flickr_id": "253859644", "setting": "last-3-pick-old-and-tell", "worker_id": "J15PHWX0VPODQPZ", "story_id": "45268", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a long day of sight seeing , i made it back to my hotel room .", "storylet_id": "226344"}], [{"original_text": "Dave was in Europe to see the sites.", "album_id": "72157594301564931", "photo_flickr_id": "253857903", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "45269", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was in location to see the sites .", "storylet_id": "226345"}], [{"original_text": "He took a picture of this beautiful looking building.", "album_id": "72157594301564931", "photo_flickr_id": "253857923", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "45269", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he took a picture of this beautiful looking building .", "storylet_id": "226346"}], [{"original_text": "Next he made his way to the next building.", "album_id": "72157594301564931", "photo_flickr_id": "253858230", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "45269", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next he made his way to the next building .", "storylet_id": "226347"}], [{"original_text": "He asked someone to take a picture of him in front of it.", "album_id": "72157594301564931", "photo_flickr_id": "253858513", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "45269", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he asked someone to take a picture of him in front of it .", "storylet_id": "226348"}], [{"original_text": "At last it was time to leave and go home.", "album_id": "72157594301564931", "photo_flickr_id": "253859620", "setting": "last-3-pick-old-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "45269", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at last it was time to leave and go home .", "storylet_id": "226349"}], [{"original_text": "Going out grocery shopping with my wife. ", "album_id": "72157594503852049", "photo_flickr_id": "371625873", "setting": "first-2-pick-and-tell", "worker_id": "EGWTSIHLBO1EKKD", "story_id": "45270", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "going out grocery shopping with my wife .", "storylet_id": "226350"}], [{"original_text": "My wife emptying our cart into the car. ", "album_id": "72157594503852049", "photo_flickr_id": "371625911", "setting": "first-2-pick-and-tell", "worker_id": "EGWTSIHLBO1EKKD", "story_id": "45270", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my wife emptying our cart into the car .", "storylet_id": "226351"}], [{"original_text": "My wife in an empty lonely parking lot. ", "album_id": "72157594503852049", "photo_flickr_id": "371625956", "setting": "first-2-pick-and-tell", "worker_id": "EGWTSIHLBO1EKKD", "story_id": "45270", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my wife in an empty lonely parking lot .", "storylet_id": "226352"}], [{"original_text": "Me relaxing after a long exhausting day.", "album_id": "72157594503852049", "photo_flickr_id": "371625985", "setting": "first-2-pick-and-tell", "worker_id": "EGWTSIHLBO1EKKD", "story_id": "45270", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "me relaxing after a long exhausting day .", "storylet_id": "226353"}], [{"original_text": "My wife and I laying in bed after a long day. ", "album_id": "72157594503852049", "photo_flickr_id": "371625993", "setting": "first-2-pick-and-tell", "worker_id": "EGWTSIHLBO1EKKD", "story_id": "45270", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my wife and i laying in bed after a long day .", "storylet_id": "226354"}], [{"original_text": "She is shopping with a smile.", "album_id": "72157594503852049", "photo_flickr_id": "371625899", "setting": "first-2-pick-and-tell", "worker_id": "CEXK3I30IFXNTW2", "story_id": "45271", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she is shopping with a smile .", "storylet_id": "226355"}], [{"original_text": "Now time for cuddles.", "album_id": "72157594503852049", "photo_flickr_id": "371625993", "setting": "first-2-pick-and-tell", "worker_id": "CEXK3I30IFXNTW2", "story_id": "45271", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "now time for cuddles .", "storylet_id": "226356"}], [{"original_text": "And showing some love posing for a picture.", "album_id": "72157594503852049", "photo_flickr_id": "371626042", "setting": "first-2-pick-and-tell", "worker_id": "CEXK3I30IFXNTW2", "story_id": "45271", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and showing some love posing for a picture .", "storylet_id": "226357"}], [{"original_text": "Some more love and cuddles.", "album_id": "72157594503852049", "photo_flickr_id": "371626070", "setting": "first-2-pick-and-tell", "worker_id": "CEXK3I30IFXNTW2", "story_id": "45271", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some more love and cuddles .", "storylet_id": "226358"}], [{"original_text": "And here is a stuffed bunny.", "album_id": "72157594503852049", "photo_flickr_id": "371626082", "setting": "first-2-pick-and-tell", "worker_id": "CEXK3I30IFXNTW2", "story_id": "45271", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and here is a stuffed bunny .", "storylet_id": "226359"}], [{"original_text": "We had to stop at the grocery store.", "album_id": "72157594503852049", "photo_flickr_id": "371625873", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45272", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we had to stop at the grocery store .", "storylet_id": "226360"}], [{"original_text": "We had bought some cupcakes. ", "album_id": "72157594503852049", "photo_flickr_id": "371625911", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45272", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had bought some cupcakes .", "storylet_id": "226361"}], [{"original_text": "We went to a game and waited to leave until the stadium was almost empty.", "album_id": "72157594503852049", "photo_flickr_id": "371625956", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45272", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went to a game and waited to leave until the stadium was almost empty .", "storylet_id": "226362"}], [{"original_text": "My husband went straight to lay down after the game.", "album_id": "72157594503852049", "photo_flickr_id": "371625985", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45272", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my husband went straight to lay down after the game .", "storylet_id": "226363"}], [{"original_text": "I changed then cuddled next to him.", "album_id": "72157594503852049", "photo_flickr_id": "371625993", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45272", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i changed then cuddled next to him .", "storylet_id": "226364"}], [{"original_text": "She was almost done getting her things out of the cart.", "album_id": "72157594503852049", "photo_flickr_id": "371625899", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "45273", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she was almost done getting her things out of the cart .", "storylet_id": "226365"}], [{"original_text": "They were having fun hanging out at the houe.", "album_id": "72157594503852049", "photo_flickr_id": "371625993", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "45273", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were having fun hanging out at the houe .", "storylet_id": "226366"}], [{"original_text": "They took a lot of pictures.", "album_id": "72157594503852049", "photo_flickr_id": "371626042", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "45273", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they took a lot of pictures .", "storylet_id": "226367"}], [{"original_text": "They were a bunch of goofballs.", "album_id": "72157594503852049", "photo_flickr_id": "371626070", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "45273", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were a bunch of goofballs .", "storylet_id": "226368"}], [{"original_text": "She had picked up a stuffed rabbit that day as a gift.", "album_id": "72157594503852049", "photo_flickr_id": "371626082", "setting": "last-3-pick-old-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "45273", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she had picked up a stuffed rabbit that day as a gift .", "storylet_id": "226369"}], [{"original_text": "It's just another lazy Saturday. We had to do a little shopping. ", "album_id": "72157594503852049", "photo_flickr_id": "371625899", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45274", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it 's just another lazy saturday . we had to do a little shopping .", "storylet_id": "226370"}], [{"original_text": "Then we were able to come home and relax. We spent some time in bed, watching television and talking.", "album_id": "72157594503852049", "photo_flickr_id": "371625993", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45274", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then we were able to come home and relax . we spent some time in bed , watching television and talking .", "storylet_id": "226371"}], [{"original_text": "We rarely get to spend quiet time together!", "album_id": "72157594503852049", "photo_flickr_id": "371626042", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45274", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we rarely get to spend quiet time together !", "storylet_id": "226372"}], [{"original_text": "We do enjoy cuddling!", "album_id": "72157594503852049", "photo_flickr_id": "371626070", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45274", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we do enjoy cuddling !", "storylet_id": "226373"}], [{"original_text": "I surprised my wife with a stuffed animal. She thought it was cute.", "album_id": "72157594503852049", "photo_flickr_id": "371626082", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45274", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i surprised my wife with a stuffed animal . she thought it was cute .", "storylet_id": "226374"}], [{"original_text": "The hurricane was very violent.", "album_id": "72157623595652263", "photo_flickr_id": "4470350822", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45275", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the hurricane was very violent .", "storylet_id": "226375"}], [{"original_text": "A lot of trees were knocked down.", "album_id": "72157623595652263", "photo_flickr_id": "4470322272", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45275", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of trees were knocked down .", "storylet_id": "226376"}], [{"original_text": "More were falling every hour.", "album_id": "72157623595652263", "photo_flickr_id": "4470321916", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45275", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "more were falling every hour .", "storylet_id": "226377"}], [{"original_text": "Most of the plants were destroyed.", "album_id": "72157623595652263", "photo_flickr_id": "4470321388", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45275", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "most of the plants were destroyed .", "storylet_id": "226378"}], [{"original_text": "I decided to get out of there when I had a chance.", "album_id": "72157623595652263", "photo_flickr_id": "4469541423", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45275", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i decided to get out of there when i had a chance .", "storylet_id": "226379"}], [{"original_text": "This summer we had a really bad storm.", "album_id": "72157623595652263", "photo_flickr_id": "4470351654", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "45276", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this summer we had a really bad storm .", "storylet_id": "226380"}], [{"original_text": "High winds and rain did a lot of damage to the city.", "album_id": "72157623595652263", "photo_flickr_id": "4470350084", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "45276", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "high winds and rain did a lot of damage to the city .", "storylet_id": "226381"}], [{"original_text": "It was a very bad storm and lasted a very long time.", "album_id": "72157623595652263", "photo_flickr_id": "4469544991", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "45276", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it was a very bad storm and lasted a very long time .", "storylet_id": "226382"}], [{"original_text": "Many trees were bent a broken from the winds.", "album_id": "72157623595652263", "photo_flickr_id": "4470322272", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "45276", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many trees were bent a broken from the winds .", "storylet_id": "226383"}], [{"original_text": "This was one the the worst storms we had in a very long time!", "album_id": "72157623595652263", "photo_flickr_id": "4469539345", "setting": "first-2-pick-and-tell", "worker_id": "KJU1LDR4G7A74GO", "story_id": "45276", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was one the the worst storms we had in a very long time !", "storylet_id": "226384"}], [{"original_text": "The hurricane whipped through my hometown earlier this year.", "album_id": "72157623595652263", "photo_flickr_id": "4470350822", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "45277", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the hurricane whipped through my hometown earlier this year .", "storylet_id": "226385"}], [{"original_text": "We saw trees with chunks taken out of them from the high winds.", "album_id": "72157623595652263", "photo_flickr_id": "4470322272", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "45277", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw trees with chunks taken out of them from the high winds .", "storylet_id": "226386"}], [{"original_text": "The tree down the block from my house had branches broken.", "album_id": "72157623595652263", "photo_flickr_id": "4470321916", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "45277", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the tree down the block from my house had branches broken .", "storylet_id": "226387"}], [{"original_text": "The debris from the storm was piled up everywhere.", "album_id": "72157623595652263", "photo_flickr_id": "4470321388", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "45277", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the debris from the storm was piled up everywhere .", "storylet_id": "226388"}], [{"original_text": "I went out after the storm ended, and a heavy mist still hung over everything.", "album_id": "72157623595652263", "photo_flickr_id": "4469541423", "setting": "last-3-pick-old-and-tell", "worker_id": "X7FHVBT51XF2YQ3", "story_id": "45277", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i went out after the storm ended , and a heavy mist still hung over everything .", "storylet_id": "226389"}], [{"original_text": "The storm came in out of nowhere. ", "album_id": "72157623595652263", "photo_flickr_id": "4470350822", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "45278", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the storm came in out of nowhere .", "storylet_id": "226390"}], [{"original_text": "The trees were blowing and rain was pouring down. ", "album_id": "72157623595652263", "photo_flickr_id": "4470322272", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "45278", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the trees were blowing and rain was pouring down .", "storylet_id": "226391"}], [{"original_text": "I couldn't believe how bad it was raining there. ", "album_id": "72157623595652263", "photo_flickr_id": "4470321916", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "45278", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i could n't believe how bad it was raining there .", "storylet_id": "226392"}], [{"original_text": "It caused so much damage during the rain. ", "album_id": "72157623595652263", "photo_flickr_id": "4470321388", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "45278", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it caused so much damage during the rain .", "storylet_id": "226393"}], [{"original_text": "I could hardly see down to the end of the street. ", "album_id": "72157623595652263", "photo_flickr_id": "4469541423", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "45278", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i could hardly see down to the end of the street .", "storylet_id": "226394"}], [{"original_text": "I've never seen such thick fog, I had to document it.", "album_id": "72157623595652263", "photo_flickr_id": "4470351654", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "45279", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 've never seen such thick fog , i had to document it .", "storylet_id": "226395"}], [{"original_text": "The building in the background is barely visible.", "album_id": "72157623595652263", "photo_flickr_id": "4470350084", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "45279", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the building in the background is barely visible .", "storylet_id": "226396"}], [{"original_text": "If not for headlights, the cars would be invisible.", "album_id": "72157623595652263", "photo_flickr_id": "4469544991", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "45279", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "if not for headlights , the cars would be invisible .", "storylet_id": "226397"}], [{"original_text": "That's my bus stop. Where is everyone? Lost in the fog?", "album_id": "72157623595652263", "photo_flickr_id": "4470322272", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "45279", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "that 's my bus stop . where is everyone ? lost in the fog ?", "storylet_id": "226398"}], [{"original_text": "One last photo before the fog finally lifted.", "album_id": "72157623595652263", "photo_flickr_id": "4469539345", "setting": "last-3-pick-old-and-tell", "worker_id": "WEIFXI2WWYBE90I", "story_id": "45279", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one last photo before the fog finally lifted .", "storylet_id": "226399"}], [{"original_text": "The baker made green cake squares. ", "album_id": "72157623720758318", "photo_flickr_id": "4470539056", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "45280", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the baker made green cake squares .", "storylet_id": "226400"}], [{"original_text": "Then she continued to make yellow ones.", "album_id": "72157623720758318", "photo_flickr_id": "4469761711", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "45280", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then she continued to make yellow ones .", "storylet_id": "226401"}], [{"original_text": "She tried again with pink and white.", "album_id": "72157623720758318", "photo_flickr_id": "4469763951", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "45280", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she tried again with pink and white .", "storylet_id": "226402"}], [{"original_text": "Eventually she even added purple.", "album_id": "72157623720758318", "photo_flickr_id": "4470542888", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "45280", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "eventually she even added purple .", "storylet_id": "226403"}], [{"original_text": "Now she had enough colors to experiment with setting them up in different patterns.", "album_id": "72157623720758318", "photo_flickr_id": "4469767345", "setting": "first-2-pick-and-tell", "worker_id": "9LULZ4HUNVT76OS", "story_id": "45280", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "now she had enough colors to experiment with setting them up in different patterns .", "storylet_id": "226404"}], [{"original_text": "The small cakes were a success. ", "album_id": "72157623720758318", "photo_flickr_id": "4470536398", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45281", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the small cakes were a success .", "storylet_id": "226405"}], [{"original_text": "People loved the versatility. ", "album_id": "72157623720758318", "photo_flickr_id": "4470538384", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45281", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "people loved the versatility .", "storylet_id": "226406"}], [{"original_text": "You could get just one or get a lot. ", "album_id": "72157623720758318", "photo_flickr_id": "4470539056", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45281", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "you could get just one or get a lot .", "storylet_id": "226407"}], [{"original_text": "You could stack them and arrange them to your individual liking. ", "album_id": "72157623720758318", "photo_flickr_id": "4469762933", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45281", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "you could stack them and arrange them to your individual liking .", "storylet_id": "226408"}], [{"original_text": "They called them mini cakes instead of cup cakes. ", "album_id": "72157623720758318", "photo_flickr_id": "4470541914", "setting": "first-2-pick-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45281", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they called them mini cakes instead of cup cakes .", "storylet_id": "226409"}], [{"original_text": "I made caramel candy today.", "album_id": "72157623720758318", "photo_flickr_id": "4470536398", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45282", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i made caramel candy today .", "storylet_id": "226410"}], [{"original_text": "I put really cute designs like flowers and animals on them.", "album_id": "72157623720758318", "photo_flickr_id": "4470538384", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45282", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i put really cute designs like flowers and animals on them .", "storylet_id": "226411"}], [{"original_text": "My favorite was the little duckling.", "album_id": "72157623720758318", "photo_flickr_id": "4470539056", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45282", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my favorite was the little duckling .", "storylet_id": "226412"}], [{"original_text": "Others had colorful flowers.", "album_id": "72157623720758318", "photo_flickr_id": "4469762933", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45282", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others had colorful flowers .", "storylet_id": "226413"}], [{"original_text": "These weren't as popular because the ones with the animals were the first ones gone.", "album_id": "72157623720758318", "photo_flickr_id": "4470541914", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45282", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "these were n't as popular because the ones with the animals were the first ones gone .", "storylet_id": "226414"}], [{"original_text": "Alisha teaches her son Johnny how to count every Sunday with cake squares after she bakes them.", "album_id": "72157623720758318", "photo_flickr_id": "4470539056", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "45283", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] teaches her son [male] how to count every sunday with cake squares after she bakes them .", "storylet_id": "226415"}], [{"original_text": "She forms groups of numbers for him to eat. Here since he is three years old she puts together three cakes in a row and ask him to count.", "album_id": "72157623720758318", "photo_flickr_id": "4469761711", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "45283", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she forms groups of numbers for him to eat . here since he is three years old she puts together three cakes in a row and ask him to count .", "storylet_id": "226416"}], [{"original_text": "Alisha only teaches him numbers one through 10. And when she gets him through that will move on to bigger numbers.", "album_id": "72157623720758318", "photo_flickr_id": "4469763951", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "45283", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] only teaches him numbers one through 10 . and when she gets him through that will move on to bigger numbers .", "storylet_id": "226417"}], [{"original_text": "Johnny screams out 4! It's four cakes there mommy. She exclaims, yes! As he takes one and eats it.", "album_id": "72157623720758318", "photo_flickr_id": "4470542888", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "45283", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] screams out 4 ! it 's four cakes there mommy . she exclaims , yes ! as he takes one and eats it .", "storylet_id": "226418"}], [{"original_text": "How many cakes are left Johnny?, asks his mommy. Johnny says three. Alisha smiles and says, yes. Now save these three for after dinner!", "album_id": "72157623720758318", "photo_flickr_id": "4469767345", "setting": "last-3-pick-old-and-tell", "worker_id": "MDFV8DQ9CBJP2PN", "story_id": "45283", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "how many cakes are left [male] ? , asks his mommy . [male] says three . [female] smiles and says , yes . now save these three for after dinner !", "storylet_id": "226419"}], [{"original_text": "The candies were many colors", "album_id": "72157623720758318", "photo_flickr_id": "4470536398", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45284", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the candies were many colors", "storylet_id": "226420"}], [{"original_text": "and had ducks on them.", "album_id": "72157623720758318", "photo_flickr_id": "4470538384", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45284", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and had ducks on them .", "storylet_id": "226421"}], [{"original_text": "The green one looked the best", "album_id": "72157623720758318", "photo_flickr_id": "4470539056", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45284", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the green one looked the best", "storylet_id": "226422"}], [{"original_text": "but the brown ones tasted good", "album_id": "72157623720758318", "photo_flickr_id": "4469762933", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45284", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but the brown ones tasted good", "storylet_id": "226423"}], [{"original_text": "and could be stacked.", "album_id": "72157623720758318", "photo_flickr_id": "4470541914", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45284", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and could be stacked .", "storylet_id": "226424"}], [{"original_text": "The garden outside the exhibit was beautiful.", "album_id": "72157623721595050", "photo_flickr_id": "4470159151", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45285", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the garden outside the exhibit was beautiful .", "storylet_id": "226425"}], [{"original_text": "The first egg in the Easter exhibit reminded the kids of eyeballs.", "album_id": "72157623721595050", "photo_flickr_id": "4470923598", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45285", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first egg in the easter exhibit reminded the kids of eyeballs .", "storylet_id": "226426"}], [{"original_text": "They thought the next one should be called scrambled egg.", "album_id": "72157623721595050", "photo_flickr_id": "4470928760", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45285", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they thought the next one should be called scrambled egg .", "storylet_id": "226427"}], [{"original_text": "Their favorite, they called dragon fire.", "album_id": "72157623721595050", "photo_flickr_id": "4470933078", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45285", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "their favorite , they called dragon fire .", "storylet_id": "226428"}], [{"original_text": "There were so many amazing eggs to see. We want to come back again.", "album_id": "72157623721595050", "photo_flickr_id": "4470109979", "setting": "first-2-pick-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45285", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were so many amazing eggs to see . we want to come back again .", "storylet_id": "226429"}], [{"original_text": "Painted eggs are the next museum exhibit.", "album_id": "72157623721595050", "photo_flickr_id": "4470109979", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45286", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "painted eggs are the next museum exhibit .", "storylet_id": "226430"}], [{"original_text": "This blue egg has swirls and is very eye catching.", "album_id": "72157623721595050", "photo_flickr_id": "4470894972", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45286", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this blue egg has swirls and is very eye catching .", "storylet_id": "226431"}], [{"original_text": "This egg reminds me of outer space for some reason.", "album_id": "72157623721595050", "photo_flickr_id": "4470923598", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45286", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this egg reminds me of outer space for some reason .", "storylet_id": "226432"}], [{"original_text": "This golden egg has a royal look.", "album_id": "72157623721595050", "photo_flickr_id": "4470928760", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45286", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this golden egg has a royal look .", "storylet_id": "226433"}], [{"original_text": "The bright red and abstract strokes make this an unusual specimen.", "album_id": "72157623721595050", "photo_flickr_id": "4470933078", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45286", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the bright red and abstract strokes make this an unusual specimen .", "storylet_id": "226434"}], [{"original_text": "Flowers were on display as well as other things at the Easter exhibit.", "album_id": "72157623721595050", "photo_flickr_id": "4470159151", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45287", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "flowers were on display as well as other things at the easter exhibit .", "storylet_id": "226435"}], [{"original_text": "The exhibit contained giant colorful eggs with beautiful designs on them. Some were swirls.", "album_id": "72157623721595050", "photo_flickr_id": "4470923598", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45287", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the exhibit contained giant colorful eggs with beautiful designs on them . some were swirls .", "storylet_id": "226436"}], [{"original_text": "Other eggs had floral designs.", "album_id": "72157623721595050", "photo_flickr_id": "4470928760", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45287", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "other eggs had floral designs .", "storylet_id": "226437"}], [{"original_text": "While others had streamers of lines.", "album_id": "72157623721595050", "photo_flickr_id": "4470933078", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45287", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while others had streamers of lines .", "storylet_id": "226438"}], [{"original_text": "Each one was unique and beautiful.", "album_id": "72157623721595050", "photo_flickr_id": "4470109979", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45287", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "each one was unique and beautiful .", "storylet_id": "226439"}], [{"original_text": "There were many pretty flowers", "album_id": "72157623721595050", "photo_flickr_id": "4470159151", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45288", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there were many pretty flowers", "storylet_id": "226440"}], [{"original_text": "by the big eggs.", "album_id": "72157623721595050", "photo_flickr_id": "4470923598", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45288", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "by the big eggs .", "storylet_id": "226441"}], [{"original_text": "One was yellow", "album_id": "72157623721595050", "photo_flickr_id": "4470928760", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45288", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one was yellow", "storylet_id": "226442"}], [{"original_text": "and another was red.", "album_id": "72157623721595050", "photo_flickr_id": "4470933078", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45288", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and another was red .", "storylet_id": "226443"}], [{"original_text": "There were many big eggs.", "album_id": "72157623721595050", "photo_flickr_id": "4470109979", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45288", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were many big eggs .", "storylet_id": "226444"}], [{"original_text": "Easter is a great time of year ", "album_id": "72157623721595050", "photo_flickr_id": "4470159151", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45289", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "easter is a great time of year", "storylet_id": "226445"}], [{"original_text": "especially at the mall", "album_id": "72157623721595050", "photo_flickr_id": "4470923598", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45289", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "especially at the mall", "storylet_id": "226446"}], [{"original_text": "there are so many things to look at.", "album_id": "72157623721595050", "photo_flickr_id": "4470928760", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45289", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there are so many things to look at .", "storylet_id": "226447"}], [{"original_text": "like the incredible eggs", "album_id": "72157623721595050", "photo_flickr_id": "4470933078", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45289", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "like the incredible eggs", "storylet_id": "226448"}], [{"original_text": "they go all the way down the mall", "album_id": "72157623721595050", "photo_flickr_id": "4470109979", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45289", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they go all the way down the mall", "storylet_id": "226449"}], [{"original_text": "We were all set for Easter morning! ", "album_id": "196227", "photo_flickr_id": "7787980", "setting": "first-2-pick-and-tell", "worker_id": "17HJGDN7E6A93F0", "story_id": "45290", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we were all set for easter morning !", "storylet_id": "226450"}], [{"original_text": "Our daughter begins the egg hunt. ", "album_id": "196227", "photo_flickr_id": "7787983", "setting": "first-2-pick-and-tell", "worker_id": "17HJGDN7E6A93F0", "story_id": "45290", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our daughter begins the egg hunt .", "storylet_id": "226451"}], [{"original_text": "She organizes her egg collection after the hunt. ", "album_id": "196227", "photo_flickr_id": "7787999", "setting": "first-2-pick-and-tell", "worker_id": "17HJGDN7E6A93F0", "story_id": "45290", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she organizes her egg collection after the hunt .", "storylet_id": "226452"}], [{"original_text": "We waited outside for the extended family. ", "album_id": "196227", "photo_flickr_id": "7788057", "setting": "first-2-pick-and-tell", "worker_id": "17HJGDN7E6A93F0", "story_id": "45290", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we waited outside for the extended family .", "storylet_id": "226453"}], [{"original_text": "Everyone had dinner together. ", "album_id": "196227", "photo_flickr_id": "7788069", "setting": "first-2-pick-and-tell", "worker_id": "17HJGDN7E6A93F0", "story_id": "45290", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone had dinner together .", "storylet_id": "226454"}], [{"original_text": "This Easter we invited the whole family over for supper.", "album_id": "196227", "photo_flickr_id": "7787980", "setting": "first-2-pick-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "45291", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this easter we invited the whole family over for supper .", "storylet_id": "226455"}], [{"original_text": "I got out and fired up the grill first thing that morning.", "album_id": "196227", "photo_flickr_id": "7788003", "setting": "first-2-pick-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "45291", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got out and fired up the grill first thing that morning .", "storylet_id": "226456"}], [{"original_text": "I slow roasted a large roast to make sure it was good and tender.", "album_id": "196227", "photo_flickr_id": "7788004", "setting": "first-2-pick-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "45291", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i slow roasted a large roast to make sure it was good and tender .", "storylet_id": "226457"}], [{"original_text": "Then me, the wife, and our daughter got dressed up nice.", "album_id": "196227", "photo_flickr_id": "7788057", "setting": "first-2-pick-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "45291", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then me , the wife , and our daughter got dressed up nice .", "storylet_id": "226458"}], [{"original_text": "It was so wonderful seeing everyone and gathering around the table to enjoy the delicious meal.", "album_id": "196227", "photo_flickr_id": "7788069", "setting": "first-2-pick-and-tell", "worker_id": "225VZ5FEKNW6WSG", "story_id": "45291", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was so wonderful seeing everyone and gathering around the table to enjoy the delicious meal .", "storylet_id": "226459"}], [{"original_text": "We set up the table for easter dinner.", "album_id": "196227", "photo_flickr_id": "7787980", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45292", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we set up the table for easter dinner .", "storylet_id": "226460"}], [{"original_text": "We then got the grill ready.", "album_id": "196227", "photo_flickr_id": "7788003", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45292", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we then got the grill ready .", "storylet_id": "226461"}], [{"original_text": "We put the meat on the grill.", "album_id": "196227", "photo_flickr_id": "7788004", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45292", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we put the meat on the grill .", "storylet_id": "226462"}], [{"original_text": "After church our relatives started showing up.", "album_id": "196227", "photo_flickr_id": "7788057", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45292", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after church our relatives started showing up .", "storylet_id": "226463"}], [{"original_text": "We all gathered to eat.", "album_id": "196227", "photo_flickr_id": "7788069", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45292", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all gathered to eat .", "storylet_id": "226464"}], [{"original_text": "Easter dinner was at my house. I had the table set.", "album_id": "196227", "photo_flickr_id": "7787980", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45293", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "easter dinner was at my house . i had the table set .", "storylet_id": "226465"}], [{"original_text": "My daughter was happily opening plastic eggs for the candy.", "album_id": "196227", "photo_flickr_id": "7787983", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45293", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my daughter was happily opening plastic eggs for the candy .", "storylet_id": "226466"}], [{"original_text": "She insisted on putting some aside for me!", "album_id": "196227", "photo_flickr_id": "7787999", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45293", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she insisted on putting some aside for me !", "storylet_id": "226467"}], [{"original_text": "We went outside to wait for our guests to arrive.", "album_id": "196227", "photo_flickr_id": "7788057", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45293", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we went outside to wait for our guests to arrive .", "storylet_id": "226468"}], [{"original_text": "When we all sat down to eat, everyone complimented me on my cooking!", "album_id": "196227", "photo_flickr_id": "7788069", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45293", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when we all sat down to eat , everyone complimented me on my cooking !", "storylet_id": "226469"}], [{"original_text": "Before our family dinner we had to set the table for everybody.", "album_id": "196227", "photo_flickr_id": "7787980", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45294", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before our family dinner we had to set the table for everybody .", "storylet_id": "226470"}], [{"original_text": "The charcoal for the grill was then lit in a chimney.", "album_id": "196227", "photo_flickr_id": "7788003", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45294", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the charcoal for the grill was then lit in a chimney .", "storylet_id": "226471"}], [{"original_text": "The dinner roast was nearly cooking on the grill.", "album_id": "196227", "photo_flickr_id": "7788004", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45294", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dinner roast was nearly cooking on the grill .", "storylet_id": "226472"}], [{"original_text": "While waiting for the food to finish we took family pictures.", "album_id": "196227", "photo_flickr_id": "7788057", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45294", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "while waiting for the food to finish we took family pictures .", "storylet_id": "226473"}], [{"original_text": "We then blessed the food before eating everything.", "album_id": "196227", "photo_flickr_id": "7788069", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45294", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we then blessed the food before eating everything .", "storylet_id": "226474"}], [{"original_text": "We took so many pictures of our newborn baby.", "album_id": "72157623609477127", "photo_flickr_id": "4475611071", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45295", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took so many pictures of our newborn baby .", "storylet_id": "226475"}], [{"original_text": "She is very adorable.", "album_id": "72157623609477127", "photo_flickr_id": "4476390018", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45295", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she is very adorable .", "storylet_id": "226476"}], [{"original_text": "We are so happy to have a child.", "album_id": "72157623609477127", "photo_flickr_id": "4476392662", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45295", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are so happy to have a child .", "storylet_id": "226477"}], [{"original_text": "We love her very much.", "album_id": "72157623609477127", "photo_flickr_id": "4475616109", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45295", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we love her very much .", "storylet_id": "226478"}], [{"original_text": "We want to have another one soon.", "album_id": "72157623609477127", "photo_flickr_id": "4476393960", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45295", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we want to have another one soon .", "storylet_id": "226479"}], [{"original_text": "The presidency has had a history of first dogs.", "album_id": "72157623609477127", "photo_flickr_id": "4475611071", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "45296", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the presidency has had a history of first dogs .", "storylet_id": "226480"}], [{"original_text": "President Obama's family purchased a dog named Bo.", "album_id": "72157623609477127", "photo_flickr_id": "4480983095", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "45296", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "president obama 's family purchased a dog named bo .", "storylet_id": "226481"}], [{"original_text": "Liberty was Gerald Ford's companion during his short tenure.", "album_id": "72157623609477127", "photo_flickr_id": "4475612435", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "45296", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] was [male] ford 's companion during his short tenure .", "storylet_id": "226482"}], [{"original_text": "Checkers stood by Nixon's side through thick and thin.", "album_id": "72157623609477127", "photo_flickr_id": "4476390018", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "45296", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "checkers stood by nixon 's side through thick and thin .", "storylet_id": "226483"}], [{"original_text": "Millie and Rex were the dogs of President Regan.", "album_id": "72157623609477127", "photo_flickr_id": "4476392662", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "45296", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[female] and [male] were the dogs of president [female] .", "storylet_id": "226484"}], [{"original_text": "I couldn't stop staring at my beautiful daughter.", "album_id": "72157623609477127", "photo_flickr_id": "4475611071", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45297", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i could n't stop staring at my beautiful daughter .", "storylet_id": "226485"}], [{"original_text": "Her mother couldn't stop either.", "album_id": "72157623609477127", "photo_flickr_id": "4476390018", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45297", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her mother could n't stop either .", "storylet_id": "226486"}], [{"original_text": "We are so happy to have her in our lives.", "album_id": "72157623609477127", "photo_flickr_id": "4476392662", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45297", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we are so happy to have her in our lives .", "storylet_id": "226487"}], [{"original_text": "We each want to hold her and never let her go.", "album_id": "72157623609477127", "photo_flickr_id": "4475616109", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45297", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we each want to hold her and never let her go .", "storylet_id": "226488"}], [{"original_text": "She looks like an angel when she sleeps.", "album_id": "72157623609477127", "photo_flickr_id": "4476393960", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45297", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she looks like an angel when she sleeps .", "storylet_id": "226489"}], [{"original_text": "Tom is a first time parent. ", "album_id": "72157623609477127", "photo_flickr_id": "4475611071", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "45298", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] is a first time parent .", "storylet_id": "226490"}], [{"original_text": "His wife Nancy is as well. ", "album_id": "72157623609477127", "photo_flickr_id": "4476390018", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "45298", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "his wife [female] is as well .", "storylet_id": "226491"}], [{"original_text": "This is their family. ", "album_id": "72157623609477127", "photo_flickr_id": "4476392662", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "45298", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is their family .", "storylet_id": "226492"}], [{"original_text": "Little Brooklyn was such a good baby. ", "album_id": "72157623609477127", "photo_flickr_id": "4475616109", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "45298", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "little location was such a good baby .", "storylet_id": "226493"}], [{"original_text": "She slept through most of the photo shoot. ", "album_id": "72157623609477127", "photo_flickr_id": "4476393960", "setting": "last-3-pick-old-and-tell", "worker_id": "CJ6WBRTWQ80R9BE", "story_id": "45298", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she slept through most of the photo shoot .", "storylet_id": "226494"}], [{"original_text": "The father was so happy", "album_id": "72157623609477127", "photo_flickr_id": "4475611071", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45299", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the father was so happy", "storylet_id": "226495"}], [{"original_text": "to look at his baby", "album_id": "72157623609477127", "photo_flickr_id": "4480983095", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45299", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "to look at his baby", "storylet_id": "226496"}], [{"original_text": "and take photos of it in the basket.", "album_id": "72157623609477127", "photo_flickr_id": "4475612435", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45299", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and take photos of it in the basket .", "storylet_id": "226497"}], [{"original_text": "The new mom was so happy", "album_id": "72157623609477127", "photo_flickr_id": "4476390018", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45299", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the new mom was so happy", "storylet_id": "226498"}], [{"original_text": "with their new child.", "album_id": "72157623609477127", "photo_flickr_id": "4476392662", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45299", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "with their new child .", "storylet_id": "226499"}], [{"original_text": "It was a cold day for an Easter egg hunt.", "album_id": "189170", "photo_flickr_id": "7575305", "setting": "first-2-pick-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "45300", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a cold day for an easter egg hunt .", "storylet_id": "226500"}], [{"original_text": "The parents waited with cameras in tow.", "album_id": "189170", "photo_flickr_id": "7575281", "setting": "first-2-pick-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "45300", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the parents waited with cameras in tow .", "storylet_id": "226501"}], [{"original_text": "The kids lined up, ready to start.", "album_id": "189170", "photo_flickr_id": "7575230", "setting": "first-2-pick-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "45300", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids lined up , ready to start .", "storylet_id": "226502"}], [{"original_text": "She had a basket of eggs and other goodies.", "album_id": "189170", "photo_flickr_id": "7574574", "setting": "first-2-pick-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "45300", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she had a basket of eggs and other goodies .", "storylet_id": "226503"}], [{"original_text": "They wanted to show off their haul.", "album_id": "189170", "photo_flickr_id": "7574757", "setting": "first-2-pick-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "45300", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they wanted to show off their haul .", "storylet_id": "226504"}], [{"original_text": "The children were very excited about the Easter egg hunt.", "album_id": "189170", "photo_flickr_id": "7574986", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "45301", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the children were very excited about the easter egg hunt .", "storylet_id": "226505"}], [{"original_text": "They gathered their baskets and dressed in their best clothes.", "album_id": "189170", "photo_flickr_id": "7574757", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "45301", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they gathered their baskets and dressed in their best clothes .", "storylet_id": "226506"}], [{"original_text": "The crowd gathered for the great hunt.", "album_id": "189170", "photo_flickr_id": "7575165", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "45301", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the crowd gathered for the great hunt .", "storylet_id": "226507"}], [{"original_text": "Finally it was time to go.", "album_id": "189170", "photo_flickr_id": "7575230", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "45301", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "finally it was time to go .", "storylet_id": "226508"}], [{"original_text": "The parents watched with great anticipation until the hunt was over.", "album_id": "189170", "photo_flickr_id": "7575281", "setting": "first-2-pick-and-tell", "worker_id": "AOUVWSRJWAW91O7", "story_id": "45301", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the parents watched with great anticipation until the hunt was over .", "storylet_id": "226509"}], [{"original_text": "I got the kids ready for Easter. ", "album_id": "189170", "photo_flickr_id": "7574986", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45302", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got the kids ready for easter .", "storylet_id": "226510"}], [{"original_text": "I gave them each their own basket. ", "album_id": "189170", "photo_flickr_id": "7574757", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45302", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i gave them each their own basket .", "storylet_id": "226511"}], [{"original_text": "Next the neighbors and I lined the kids up. ", "album_id": "189170", "photo_flickr_id": "7575165", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45302", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "next the neighbors and i lined the kids up .", "storylet_id": "226512"}], [{"original_text": "We told them to get ready to pick up the Easter eggs. ", "album_id": "189170", "photo_flickr_id": "7575230", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45302", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we told them to get ready to pick up the easter eggs .", "storylet_id": "226513"}], [{"original_text": "The parents were recording it so we could watch later. ", "album_id": "189170", "photo_flickr_id": "7575281", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45302", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the parents were recording it so we could watch later .", "storylet_id": "226514"}], [{"original_text": "We got the kids ready for Easter.", "album_id": "189170", "photo_flickr_id": "7575305", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45303", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got the kids ready for easter .", "storylet_id": "226515"}], [{"original_text": "The parents then gathered for the events.", "album_id": "189170", "photo_flickr_id": "7575281", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45303", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the parents then gathered for the events .", "storylet_id": "226516"}], [{"original_text": "They lined the kids up at the starting line.", "album_id": "189170", "photo_flickr_id": "7575230", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45303", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they lined the kids up at the starting line .", "storylet_id": "226517"}], [{"original_text": "Then the kids went crazy finding eggs.", "album_id": "189170", "photo_flickr_id": "7574574", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45303", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then the kids went crazy finding eggs .", "storylet_id": "226518"}], [{"original_text": "It was an awesome Easter.", "album_id": "189170", "photo_flickr_id": "7574757", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45303", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was an awesome easter .", "storylet_id": "226519"}], [{"original_text": "Look at the kids excited about he easter egg hunt.", "album_id": "189170", "photo_flickr_id": "7575305", "setting": "last-3-pick-old-and-tell", "worker_id": "K3P0BHHKOOA28XH", "story_id": "45304", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "look at the kids excited about he easter egg hunt .", "storylet_id": "226520"}], [{"original_text": "A lot of families in the community got together to organize this event for the kids.", "album_id": "189170", "photo_flickr_id": "7575281", "setting": "last-3-pick-old-and-tell", "worker_id": "K3P0BHHKOOA28XH", "story_id": "45304", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of families in the community got together to organize this event for the kids .", "storylet_id": "226521"}], [{"original_text": "All the kids are in line, waiting to take off running in hopes of getting the best easter eggs.", "album_id": "189170", "photo_flickr_id": "7575230", "setting": "last-3-pick-old-and-tell", "worker_id": "K3P0BHHKOOA28XH", "story_id": "45304", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the kids are in line , waiting to take off running in hopes of getting the best easter eggs .", "storylet_id": "226522"}], [{"original_text": "This little girl looks like she hit the jackpot. A basket full of eggs, and a gift basket filled with goodies.", "album_id": "189170", "photo_flickr_id": "7574574", "setting": "last-3-pick-old-and-tell", "worker_id": "K3P0BHHKOOA28XH", "story_id": "45304", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this little girl looks like she hit the jackpot . a basket full of eggs , and a gift basket filled with goodies .", "storylet_id": "226523"}], [{"original_text": "Here are some of the neighborhood kids with their baskets. They had a really good time, but they're all tuckered out. They used a lot of energy on the hunt for easter eggs.", "album_id": "189170", "photo_flickr_id": "7574757", "setting": "last-3-pick-old-and-tell", "worker_id": "K3P0BHHKOOA28XH", "story_id": "45304", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here are some of the neighborhood kids with their baskets . they had a really good time , but they 're all tuckered out . they used a lot of energy on the hunt for easter eggs .", "storylet_id": "226524"}], [{"original_text": "A recent picture of the family", "album_id": "194334", "photo_flickr_id": "7785016", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "45305", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a recent picture of the family", "storylet_id": "226525"}], [{"original_text": "An older picture of the family", "album_id": "194334", "photo_flickr_id": "7785044", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "45305", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "an older picture of the family", "storylet_id": "226526"}], [{"original_text": "The park where we were having the party", "album_id": "194334", "photo_flickr_id": "7785078", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "45305", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the park where we were having the party", "storylet_id": "226527"}], [{"original_text": "We got a great picture outside the beautiful body of water", "album_id": "194334", "photo_flickr_id": "7785088", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "45305", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got a great picture outside the beautiful body of water", "storylet_id": "226528"}], [{"original_text": "One more picture of the newly married couple", "album_id": "194334", "photo_flickr_id": "7785096", "setting": "first-2-pick-and-tell", "worker_id": "BAHCKEE8ZFSBD8B", "story_id": "45305", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one more picture of the newly married couple", "storylet_id": "226529"}], [{"original_text": "The family got together for the wedding.", "album_id": "194334", "photo_flickr_id": "7785039", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "45306", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family got together for the wedding .", "storylet_id": "226530"}], [{"original_text": "They all huddled close for a family shot.", "album_id": "194334", "photo_flickr_id": "7785044", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "45306", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all huddled close for a family shot .", "storylet_id": "226531"}], [{"original_text": "They enjoyed each other's company.", "album_id": "194334", "photo_flickr_id": "7785067", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "45306", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they enjoyed each other 's company .", "storylet_id": "226532"}], [{"original_text": "The bride looked lovely.", "album_id": "194334", "photo_flickr_id": "7785094", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "45306", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the bride looked lovely .", "storylet_id": "226533"}], [{"original_text": "The groom and the bride's families were both proud.", "album_id": "194334", "photo_flickr_id": "7785096", "setting": "first-2-pick-and-tell", "worker_id": "5YJS1S6AFEKUMQY", "story_id": "45306", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the groom and the bride 's families were both proud .", "storylet_id": "226534"}], [{"original_text": "The road trip to the wedding my family went on was so long that my Mom's work, the library, actually took a group photo before we left.", "album_id": "194334", "photo_flickr_id": "7785016", "setting": "last-3-pick-old-and-tell", "worker_id": "604KJPGQS47R5RO", "story_id": "45307", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the road trip to the wedding my family went on was so long that my mom 's work , the library , actually took a group photo before we left .", "storylet_id": "226535"}], [{"original_text": "The whole family came in two big camper vans.", "album_id": "194334", "photo_flickr_id": "7785044", "setting": "last-3-pick-old-and-tell", "worker_id": "604KJPGQS47R5RO", "story_id": "45307", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the whole family came in two big camper vans .", "storylet_id": "226536"}], [{"original_text": "We went to lots of state parks as we worked on our coast to coast drive.", "album_id": "194334", "photo_flickr_id": "7785078", "setting": "last-3-pick-old-and-tell", "worker_id": "604KJPGQS47R5RO", "story_id": "45307", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went to lots of state parks as we worked on our coast to coast drive .", "storylet_id": "226537"}], [{"original_text": "When we got to the West Coast, we took small group photos to celebrate. ", "album_id": "194334", "photo_flickr_id": "7785088", "setting": "last-3-pick-old-and-tell", "worker_id": "604KJPGQS47R5RO", "story_id": "45307", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "when we got to the location location , we took small group photos to celebrate .", "storylet_id": "226538"}], [{"original_text": "The wedding was beautiful but we didn't really want to get back in those vans!", "album_id": "194334", "photo_flickr_id": "7785096", "setting": "last-3-pick-old-and-tell", "worker_id": "604KJPGQS47R5RO", "story_id": "45307", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the wedding was beautiful but we did n't really want to get back in those vans !", "storylet_id": "226539"}], [{"original_text": "I found a box of old family photos.", "album_id": "194334", "photo_flickr_id": "7785016", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45308", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i found a box of old family photos .", "storylet_id": "226540"}], [{"original_text": "Here's my grandmas family when she was younger.", "album_id": "194334", "photo_flickr_id": "7785044", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45308", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's my grandmas family when she was younger .", "storylet_id": "226541"}], [{"original_text": "A picture for a park visit when I was a kid.", "album_id": "194334", "photo_flickr_id": "7785078", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45308", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a picture for a park visit when i was a kid .", "storylet_id": "226542"}], [{"original_text": "My moms vacation picture when she was young.", "album_id": "194334", "photo_flickr_id": "7785088", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45308", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my moms vacation picture when she was young .", "storylet_id": "226543"}], [{"original_text": "Here is my parents wedding.", "album_id": "194334", "photo_flickr_id": "7785096", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45308", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is my parents wedding .", "storylet_id": "226544"}], [{"original_text": "All of the ladies in the family. They are a beautiful group.", "album_id": "194334", "photo_flickr_id": "7785039", "setting": "last-3-pick-old-and-tell", "worker_id": "DQZHD5LQRJWL28F", "story_id": "45309", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all of the ladies in the family . they are a beautiful group .", "storylet_id": "226545"}], [{"original_text": "Here is a group photo of the brothers and sisters, with their spouses and children.", "album_id": "194334", "photo_flickr_id": "7785044", "setting": "last-3-pick-old-and-tell", "worker_id": "DQZHD5LQRJWL28F", "story_id": "45309", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is a group photo of the brothers and sisters , with their spouses and children .", "storylet_id": "226546"}], [{"original_text": "Mother and father are posing with their daughters and grandchildren.", "album_id": "194334", "photo_flickr_id": "7785067", "setting": "last-3-pick-old-and-tell", "worker_id": "DQZHD5LQRJWL28F", "story_id": "45309", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mother and father are posing with their daughters and grandchildren .", "storylet_id": "226547"}], [{"original_text": "The youngest daughter on her wedding day. She is pinning her maid of honor's corsage on her.", "album_id": "194334", "photo_flickr_id": "7785094", "setting": "last-3-pick-old-and-tell", "worker_id": "DQZHD5LQRJWL28F", "story_id": "45309", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the youngest daughter on her wedding day . she is pinning her maid of honor 's corsage on her .", "storylet_id": "226548"}], [{"original_text": "Husband and wife, with their parents posing for one of the wedding pictures. They are such a happy couple!", "album_id": "194334", "photo_flickr_id": "7785096", "setting": "last-3-pick-old-and-tell", "worker_id": "DQZHD5LQRJWL28F", "story_id": "45309", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "husband and wife , with their parents posing for one of the wedding pictures . they are such a happy couple !", "storylet_id": "226549"}], [{"original_text": "On Easter Sunday we decided to decorate some eggs", "album_id": "386051", "photo_flickr_id": "7975355", "setting": "first-2-pick-and-tell", "worker_id": "IDAZL2W5WGUU84V", "story_id": "45310", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on easter sunday we decided to decorate some eggs", "storylet_id": "226550"}], [{"original_text": "we had yellow ones", "album_id": "386051", "photo_flickr_id": "7975396", "setting": "first-2-pick-and-tell", "worker_id": "IDAZL2W5WGUU84V", "story_id": "45310", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had yellow ones", "storylet_id": "226551"}], [{"original_text": "pink and purple ones", "album_id": "386051", "photo_flickr_id": "7975601", "setting": "first-2-pick-and-tell", "worker_id": "IDAZL2W5WGUU84V", "story_id": "45310", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "pink and purple ones", "storylet_id": "226552"}], [{"original_text": "and some even had eyeballs. ", "album_id": "386051", "photo_flickr_id": "7975722", "setting": "first-2-pick-and-tell", "worker_id": "IDAZL2W5WGUU84V", "story_id": "45310", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and some even had eyeballs .", "storylet_id": "226553"}], [{"original_text": "all together I think they were a great looking group of eggs. Can't wait to hide them with the easter bunny", "album_id": "386051", "photo_flickr_id": "16091177", "setting": "first-2-pick-and-tell", "worker_id": "IDAZL2W5WGUU84V", "story_id": "45310", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all together i think they were a great looking group of eggs . ca n't wait to hide them with the easter bunny", "storylet_id": "226554"}], [{"original_text": "It was the start to the annual Easter egg decorating contest.", "album_id": "386051", "photo_flickr_id": "16091177", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "45311", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the start to the annual easter egg decorating contest .", "storylet_id": "226555"}], [{"original_text": "One person entered in these two colorful creations.", "album_id": "386051", "photo_flickr_id": "7975355", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "45311", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one person entered in these two colorful creations .", "storylet_id": "226556"}], [{"original_text": "This was a favorite amongst the judges. A true artistic expression.", "album_id": "386051", "photo_flickr_id": "7975396", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "45311", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this was a favorite amongst the judges . a true artistic expression .", "storylet_id": "226557"}], [{"original_text": "The all seeing eye design captivated us. ", "album_id": "386051", "photo_flickr_id": "7975658", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "45311", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the all seeing eye design captivated us .", "storylet_id": "226558"}], [{"original_text": "Finally, the winner. Everyone loved this one because of how many ways it could be interpreted. ", "album_id": "386051", "photo_flickr_id": "16091243", "setting": "first-2-pick-and-tell", "worker_id": "76TMY3ZFJXBTCVT", "story_id": "45311", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , the winner . everyone loved this one because of how many ways it could be interpreted .", "storylet_id": "226559"}], [{"original_text": "4 eggs painted in vibrant colors.", "album_id": "386051", "photo_flickr_id": "16091177", "setting": "last-3-pick-old-and-tell", "worker_id": "6NWBFU3LNB6EZCW", "story_id": "45312", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "4 eggs painted in vibrant colors .", "storylet_id": "226560"}], [{"original_text": "Two people compare their decorated eggs.", "album_id": "386051", "photo_flickr_id": "7975355", "setting": "last-3-pick-old-and-tell", "worker_id": "6NWBFU3LNB6EZCW", "story_id": "45312", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "two people compare their decorated eggs .", "storylet_id": "226561"}], [{"original_text": "One kid holds up his egg in amazement.", "album_id": "386051", "photo_flickr_id": "7975396", "setting": "last-3-pick-old-and-tell", "worker_id": "6NWBFU3LNB6EZCW", "story_id": "45312", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one kid holds up his egg in amazement .", "storylet_id": "226562"}], [{"original_text": "Eye can see you, says the egg.", "album_id": "386051", "photo_flickr_id": "7975658", "setting": "last-3-pick-old-and-tell", "worker_id": "6NWBFU3LNB6EZCW", "story_id": "45312", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "eye can see you , says the egg .", "storylet_id": "226563"}], [{"original_text": "A crazy egg design that will make an awesome paint.", "album_id": "386051", "photo_flickr_id": "16091243", "setting": "last-3-pick-old-and-tell", "worker_id": "6NWBFU3LNB6EZCW", "story_id": "45312", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a crazy egg design that will make an awesome paint .", "storylet_id": "226564"}], [{"original_text": "Creative easter eggs can be created by using a small paint brush or pens to draw on the shell.", "album_id": "386051", "photo_flickr_id": "7975355", "setting": "last-3-pick-old-and-tell", "worker_id": "WT6A5VPAO2EZN4L", "story_id": "45313", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "creative easter eggs can be created by using a small paint brush or pens to draw on the shell .", "storylet_id": "226565"}], [{"original_text": "Markers are also handy to mix a variety of colors and designs.", "album_id": "386051", "photo_flickr_id": "7975396", "setting": "last-3-pick-old-and-tell", "worker_id": "WT6A5VPAO2EZN4L", "story_id": "45313", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "markers are also handy to mix a variety of colors and designs .", "storylet_id": "226566"}], [{"original_text": "For tie dye designs you can swirl colors together.", "album_id": "386051", "photo_flickr_id": "7975601", "setting": "last-3-pick-old-and-tell", "worker_id": "WT6A5VPAO2EZN4L", "story_id": "45313", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "for tie dye designs you can swirl colors together .", "storylet_id": "226567"}], [{"original_text": "Or you can draw detailed designs by hand.", "album_id": "386051", "photo_flickr_id": "7975722", "setting": "last-3-pick-old-and-tell", "worker_id": "WT6A5VPAO2EZN4L", "story_id": "45313", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "or you can draw detailed designs by hand .", "storylet_id": "226568"}], [{"original_text": "The best easter eggs are a variety of colors and designs!", "album_id": "386051", "photo_flickr_id": "16091177", "setting": "last-3-pick-old-and-tell", "worker_id": "WT6A5VPAO2EZN4L", "story_id": "45313", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the best easter eggs are a variety of colors and designs !", "storylet_id": "226569"}], [{"original_text": "We decorated eggs tonight.", "album_id": "386051", "photo_flickr_id": "7975355", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45314", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decorated eggs tonight .", "storylet_id": "226570"}], [{"original_text": "We were trying to go the artsy route.", "album_id": "386051", "photo_flickr_id": "7975396", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45314", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were trying to go the artsy route .", "storylet_id": "226571"}], [{"original_text": "My husband tried going artsy, but it didn't turn out as well as he would have liked.", "album_id": "386051", "photo_flickr_id": "7975601", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45314", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my husband tried going artsy , but it did n't turn out as well as he would have liked .", "storylet_id": "226572"}], [{"original_text": "I tried a crazy eyeball theme on one.", "album_id": "386051", "photo_flickr_id": "7975722", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45314", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i tried a crazy eyeball theme on one .", "storylet_id": "226573"}], [{"original_text": "Afterwards, we set them all down together to compare them. They look awesome!", "album_id": "386051", "photo_flickr_id": "16091177", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45314", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterwards , we set them all down together to compare them . they look awesome !", "storylet_id": "226574"}], [{"original_text": "Today I went to the monument for the first time. I watched the soldiers march. ", "album_id": "72057594108360039", "photo_flickr_id": "129377471", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45315", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i went to the monument for the first time . i watched the soldiers march .", "storylet_id": "226575"}], [{"original_text": "A storm was coming in over the large building. ", "album_id": "72057594108360039", "photo_flickr_id": "129377761", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45315", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a storm was coming in over the large building .", "storylet_id": "226576"}], [{"original_text": "People were starting to leave. The wind was picking up fast. ", "album_id": "72057594108360039", "photo_flickr_id": "129377855", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45315", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people were starting to leave . the wind was picking up fast .", "storylet_id": "226577"}], [{"original_text": "I snapped another picture of the building because the sky was getting ominous and so windy. ", "album_id": "72057594108360039", "photo_flickr_id": "129378050", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45315", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i snapped another picture of the building because the sky was getting ominous and so windy .", "storylet_id": "226578"}], [{"original_text": "Just then the storm let up and it was calm. The sun shined through and the wind was gone. ", "album_id": "72057594108360039", "photo_flickr_id": "129378342", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45315", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "just then the storm let up and it was calm . the sun shined through and the wind was gone .", "storylet_id": "226579"}], [{"original_text": "The concert at the Capital building on the fourth of July was a huge event.", "album_id": "72057594108360039", "photo_flickr_id": "129377672", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "45316", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the concert at the capital building on the fourth of july was a huge event .", "storylet_id": "226580"}], [{"original_text": "The Marines marched before the music began.", "album_id": "72057594108360039", "photo_flickr_id": "129377471", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "45316", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the marines marched before the music began .", "storylet_id": "226581"}], [{"original_text": "The Marine band is one of the best I've ever heard.", "album_id": "72057594108360039", "photo_flickr_id": "129377023", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "45316", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the marine band is one of the best i 've ever heard .", "storylet_id": "226582"}], [{"original_text": "The crowd was in the thousands. Everyone took pictures and cheered the band on.", "album_id": "72057594108360039", "photo_flickr_id": "129377372", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "45316", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowd was in the thousands . everyone took pictures and cheered the band on .", "storylet_id": "226583"}], [{"original_text": "The band closed with The Star Spangled Banner.", "album_id": "72057594108360039", "photo_flickr_id": "129376530", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "45316", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the band closed with the star spangled banner .", "storylet_id": "226584"}], [{"original_text": "We went to the National Cemetery to the tomb of the unknown. ", "album_id": "72057594108360039", "photo_flickr_id": "129377672", "setting": "last-3-pick-old-and-tell", "worker_id": "PIJE1HTFI9AHEN9", "story_id": "45317", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the national cemetery to the tomb of the unknown .", "storylet_id": "226585"}], [{"original_text": "We got to see the changing of the guard. ", "album_id": "72057594108360039", "photo_flickr_id": "129377471", "setting": "last-3-pick-old-and-tell", "worker_id": "PIJE1HTFI9AHEN9", "story_id": "45317", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we got to see the changing of the guard .", "storylet_id": "226586"}], [{"original_text": "They had a small concert there that we enjoyed. ", "album_id": "72057594108360039", "photo_flickr_id": "129377023", "setting": "last-3-pick-old-and-tell", "worker_id": "PIJE1HTFI9AHEN9", "story_id": "45317", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had a small concert there that we enjoyed .", "storylet_id": "226587"}], [{"original_text": "Alot more people showed up than we expected. ", "album_id": "72057594108360039", "photo_flickr_id": "129377372", "setting": "last-3-pick-old-and-tell", "worker_id": "PIJE1HTFI9AHEN9", "story_id": "45317", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "alot more people showed up than we expected .", "storylet_id": "226588"}], [{"original_text": "Then we went across town to the outdoor symphony. ", "album_id": "72057594108360039", "photo_flickr_id": "129376530", "setting": "last-3-pick-old-and-tell", "worker_id": "PIJE1HTFI9AHEN9", "story_id": "45317", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we went across town to the outdoor symphony .", "storylet_id": "226589"}], [{"original_text": "Our trip to the capital was fun but solemn, with so many new sights to see, but Memorial Day was a sad purpose.", "album_id": "72057594108360039", "photo_flickr_id": "129377471", "setting": "last-3-pick-old-and-tell", "worker_id": "QSSQFCFANIRZJKC", "story_id": "45318", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip to the capital was fun but solemn , with so many new sights to see , but memorial day was a sad purpose .", "storylet_id": "226590"}], [{"original_text": "There's so much walking, so luckily the weather was good, but we thought we were in for a storm when the sky darkened,", "album_id": "72057594108360039", "photo_flickr_id": "129377761", "setting": "last-3-pick-old-and-tell", "worker_id": "QSSQFCFANIRZJKC", "story_id": "45318", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there 's so much walking , so luckily the weather was good , but we thought we were in for a storm when the sky darkened ,", "storylet_id": "226591"}], [{"original_text": "So many people here -- maybe a holiday wasn't the right time to do tours, but as long as we were there, we had to see all -- people protesting were an interesting backdrop, but I never did find out what that was about.", "album_id": "72057594108360039", "photo_flickr_id": "129377855", "setting": "last-3-pick-old-and-tell", "worker_id": "QSSQFCFANIRZJKC", "story_id": "45318", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "so many people here -- maybe a holiday was n't the right time to do tours , but as long as we were there , we had to see all -- people protesting were an interesting backdrop , but i never did find out what that was about .", "storylet_id": "226592"}], [{"original_text": "More walking, more clouds -- but still nice, so we headed out to see more of our history.", "album_id": "72057594108360039", "photo_flickr_id": "129378050", "setting": "last-3-pick-old-and-tell", "worker_id": "QSSQFCFANIRZJKC", "story_id": "45318", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more walking , more clouds -- but still nice , so we headed out to see more of our history .", "storylet_id": "226593"}], [{"original_text": "We were late for cherry blossoms, but there were still many beautiful trees that showed how carefully laid out the area was.", "album_id": "72057594108360039", "photo_flickr_id": "129378342", "setting": "last-3-pick-old-and-tell", "worker_id": "QSSQFCFANIRZJKC", "story_id": "45318", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we were late for cherry blossoms , but there were still many beautiful trees that showed how carefully laid out the area was .", "storylet_id": "226594"}], [{"original_text": "getting in the grave site. ", "album_id": "72057594108360039", "photo_flickr_id": "129377672", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45319", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "getting in the grave site .", "storylet_id": "226595"}], [{"original_text": "Soldier walking in the fallen soldiers grave. ", "album_id": "72057594108360039", "photo_flickr_id": "129377471", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45319", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "soldier walking in the fallen soldiers grave .", "storylet_id": "226596"}], [{"original_text": "The band performing. ", "album_id": "72057594108360039", "photo_flickr_id": "129377023", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45319", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the band performing .", "storylet_id": "226597"}], [{"original_text": "The crowd anticipating the speech. ", "album_id": "72057594108360039", "photo_flickr_id": "129377372", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45319", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the crowd anticipating the speech .", "storylet_id": "226598"}], [{"original_text": "Waiting for the president to arrive. ", "album_id": "72057594108360039", "photo_flickr_id": "129376530", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45319", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "waiting for the president to arrive .", "storylet_id": "226599"}], [{"original_text": "Easter is a great family holiday.", "album_id": "72057594108488177", "photo_flickr_id": "129467178", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45320", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "easter is a great family holiday .", "storylet_id": "226600"}], [{"original_text": "The kids look so cute dressed up with there baskets.", "album_id": "72057594108488177", "photo_flickr_id": "129467478", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45320", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids look so cute dressed up with there baskets .", "storylet_id": "226601"}], [{"original_text": "He was really excited for the Easter egg hunt.", "album_id": "72057594108488177", "photo_flickr_id": "129467698", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45320", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he was really excited for the easter egg hunt .", "storylet_id": "226602"}], [{"original_text": "He found a ton of eggs.", "album_id": "72057594108488177", "photo_flickr_id": "129467735", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45320", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he found a ton of eggs .", "storylet_id": "226603"}], [{"original_text": "It was great to relax after a long holiday.", "album_id": "72057594108488177", "photo_flickr_id": "129467888", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45320", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was great to relax after a long holiday .", "storylet_id": "226604"}], [{"original_text": "My aunt gave me a toy dinosaur to play with.", "album_id": "72057594108488177", "photo_flickr_id": "129467223", "setting": "first-2-pick-and-tell", "worker_id": "XV1EU55OZGVPSGH", "story_id": "45321", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my aunt gave me a toy dinosaur to play with .", "storylet_id": "226605"}], [{"original_text": "My brother and I played with a toy car.", "album_id": "72057594108488177", "photo_flickr_id": "129467294", "setting": "first-2-pick-and-tell", "worker_id": "XV1EU55OZGVPSGH", "story_id": "45321", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my brother and i played with a toy car .", "storylet_id": "226606"}], [{"original_text": "My sister helped me find lots of eggs for the easter egg hunt.", "album_id": "72057594108488177", "photo_flickr_id": "129467553", "setting": "first-2-pick-and-tell", "worker_id": "XV1EU55OZGVPSGH", "story_id": "45321", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my sister helped me find lots of eggs for the easter egg hunt .", "storylet_id": "226607"}], [{"original_text": "After we found the eggs i ate some Easter candy.", "album_id": "72057594108488177", "photo_flickr_id": "129467817", "setting": "first-2-pick-and-tell", "worker_id": "XV1EU55OZGVPSGH", "story_id": "45321", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after we found the eggs i ate some easter candy .", "storylet_id": "226608"}], [{"original_text": "Everyone sat and talked about future plans.", "album_id": "72057594108488177", "photo_flickr_id": "129467888", "setting": "first-2-pick-and-tell", "worker_id": "XV1EU55OZGVPSGH", "story_id": "45321", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone sat and talked about future plans .", "storylet_id": "226609"}], [{"original_text": "Easter is a time for family to get together.", "album_id": "72057594108488177", "photo_flickr_id": "129467178", "setting": "last-3-pick-old-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "45322", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "easter is a time for family to get together .", "storylet_id": "226610"}], [{"original_text": "All of the kids get to show off their new Easter outfits.", "album_id": "72057594108488177", "photo_flickr_id": "129467478", "setting": "last-3-pick-old-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "45322", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all of the kids get to show off their new easter outfits .", "storylet_id": "226611"}], [{"original_text": "But their favorite part is of course the Easter Egg hunt.", "album_id": "72057594108488177", "photo_flickr_id": "129467698", "setting": "last-3-pick-old-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "45322", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but their favorite part is of course the easter egg hunt .", "storylet_id": "226612"}], [{"original_text": "He managed to get quite a haul of eggs.", "album_id": "72057594108488177", "photo_flickr_id": "129467735", "setting": "last-3-pick-old-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "45322", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he managed to get quite a haul of eggs .", "storylet_id": "226613"}], [{"original_text": "After the egg hunt everyone sits down in the front room to visit and talk.", "album_id": "72057594108488177", "photo_flickr_id": "129467888", "setting": "last-3-pick-old-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "45322", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the egg hunt everyone sits down in the front room to visit and talk .", "storylet_id": "226614"}], [{"original_text": "The little boy enjoyed playing with his toy dinosaur before the Easter Egg hunt began.", "album_id": "72057594108488177", "photo_flickr_id": "129467223", "setting": "last-3-pick-old-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "45323", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the little boy enjoyed playing with his toy dinosaur before the easter egg hunt began .", "storylet_id": "226615"}], [{"original_text": "He even included his little brother in on the play when he decided to switch to his toy cars.", "album_id": "72057594108488177", "photo_flickr_id": "129467294", "setting": "last-3-pick-old-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "45323", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he even included his little brother in on the play when he decided to switch to his toy cars .", "storylet_id": "226616"}], [{"original_text": "Of course the toys were long forgotten once the egg hunt began.", "album_id": "72057594108488177", "photo_flickr_id": "129467553", "setting": "last-3-pick-old-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "45323", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of course the toys were long forgotten once the egg hunt began .", "storylet_id": "226617"}], [{"original_text": "The little boy found a lot of eggs but his favorite was by far those filled with chocolate.", "album_id": "72057594108488177", "photo_flickr_id": "129467817", "setting": "last-3-pick-old-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "45323", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the little boy found a lot of eggs but his favorite was by far those filled with chocolate .", "storylet_id": "226618"}], [{"original_text": "The adults were all tired after hiding the eggs and helping the children find them.", "album_id": "72057594108488177", "photo_flickr_id": "129467888", "setting": "last-3-pick-old-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "45323", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the adults were all tired after hiding the eggs and helping the children find them .", "storylet_id": "226619"}], [{"original_text": "For easter we had our grand children over to hunt for eggs.", "album_id": "72057594108488177", "photo_flickr_id": "129467223", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45324", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for easter we had our grand children over to hunt for eggs .", "storylet_id": "226620"}], [{"original_text": "While the eggs were being placed, the kids played inside.", "album_id": "72057594108488177", "photo_flickr_id": "129467294", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45324", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while the eggs were being placed , the kids played inside .", "storylet_id": "226621"}], [{"original_text": "Two of the grandkids looked in the grass by the bushes.", "album_id": "72057594108488177", "photo_flickr_id": "129467553", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45324", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "two of the grandkids looked in the grass by the bushes .", "storylet_id": "226622"}], [{"original_text": "Ethan was excited to eat the candy in the eggs.", "album_id": "72057594108488177", "photo_flickr_id": "129467817", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45324", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was excited to eat the candy in the eggs .", "storylet_id": "226623"}], [{"original_text": "After hunting for eggs, everybody hung out in the living room", "album_id": "72057594108488177", "photo_flickr_id": "129467888", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45324", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after hunting for eggs , everybody hung out in the living room", "storylet_id": "226624"}], [{"original_text": "Ham is a staple in my house during the holidays", "album_id": "72057594108529533", "photo_flickr_id": "129833771", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45325", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "ham is a staple in my house during the holidays", "storylet_id": "226625"}], [{"original_text": "But I can sit and eat candy all day, Easter candy is great.", "album_id": "72057594108529533", "photo_flickr_id": "129494565", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45325", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "but i can sit and eat candy all day , easter candy is great .", "storylet_id": "226626"}], [{"original_text": "After Easter this is my go to treat. ", "album_id": "72057594108529533", "photo_flickr_id": "129494567", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45325", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after easter this is my go to treat .", "storylet_id": "226627"}], [{"original_text": "Although I do love all kinds of candy, ", "album_id": "72057594108529533", "photo_flickr_id": "129494568", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45325", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "although i do love all kinds of candy ,", "storylet_id": "226628"}], [{"original_text": "Baked goods are my favorite.", "album_id": "72057594108529533", "photo_flickr_id": "129841059", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45325", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "baked goods are my favorite .", "storylet_id": "226629"}], [{"original_text": "Brightly dyed Easter eggs are ready for the baskets.", "album_id": "72057594108529533", "photo_flickr_id": "129494564", "setting": "first-2-pick-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "45326", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "brightly dyed easter eggs are ready for the baskets .", "storylet_id": "226630"}], [{"original_text": "A selection of yummy chocolates are added, too.", "album_id": "72057594108529533", "photo_flickr_id": "129494565", "setting": "first-2-pick-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "45326", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a selection of yummy chocolates are added , too .", "storylet_id": "226631"}], [{"original_text": "Plates are laden with homemade food.", "album_id": "72057594108529533", "photo_flickr_id": "129833769", "setting": "first-2-pick-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "45326", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "plates are laden with homemade food .", "storylet_id": "226632"}], [{"original_text": "Now it's time for us to enjoy our meal together.", "album_id": "72057594108529533", "photo_flickr_id": "129833770", "setting": "first-2-pick-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "45326", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now it 's time for us to enjoy our meal together .", "storylet_id": "226633"}], [{"original_text": "Fresh cream puffs top off a wonderful family Easter meal together.", "album_id": "72057594108529533", "photo_flickr_id": "129841059", "setting": "first-2-pick-and-tell", "worker_id": "A5QVXBSQEF5JYGK", "story_id": "45326", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fresh cream puffs top off a wonderful family easter meal together .", "storylet_id": "226634"}], [{"original_text": "For Easter we cooked a delicious ham.", "album_id": "72057594108529533", "photo_flickr_id": "129833771", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45327", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "for easter we cooked a delicious ham .", "storylet_id": "226635"}], [{"original_text": "For the kids we got them different candy eggs.", "album_id": "72057594108529533", "photo_flickr_id": "129494565", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45327", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "for the kids we got them different candy eggs .", "storylet_id": "226636"}], [{"original_text": "We also got Pocky sticks.", "album_id": "72057594108529533", "photo_flickr_id": "129494567", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45327", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we also got pocky sticks .", "storylet_id": "226637"}], [{"original_text": "We got a few of my favorite foreign candies.", "album_id": "72057594108529533", "photo_flickr_id": "129494568", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45327", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got a few of my favorite foreign candies .", "storylet_id": "226638"}], [{"original_text": "We also had sugar donut holes.", "album_id": "72057594108529533", "photo_flickr_id": "129841059", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45327", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we also had sugar donut holes .", "storylet_id": "226639"}], [{"original_text": "Eating right is an important issue in many people's lives. For some eating is not an issue. ", "album_id": "72057594108529533", "photo_flickr_id": "129833771", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "45328", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "eating right is an important issue in many people 's lives . for some eating is not an issue .", "storylet_id": "226640"}], [{"original_text": "When tempted by candy, it is difficult to resist because of how it effects our brain. And its especially difficult during holidays. ", "album_id": "72057594108529533", "photo_flickr_id": "129494565", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "45328", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "when tempted by candy , it is difficult to resist because of how it effects our brain . and its especially difficult during holidays .", "storylet_id": "226641"}], [{"original_text": "Strangely, we find every which way to get sweets into our mouths and around our waistline. ", "album_id": "72057594108529533", "photo_flickr_id": "129494567", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "45328", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "strangely , we find every which way to get sweets into our mouths and around our waistline .", "storylet_id": "226642"}], [{"original_text": "Some get very creative and try all kinds of varieties to keep it competitive. ", "album_id": "72057594108529533", "photo_flickr_id": "129494568", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "45328", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some get very creative and try all kinds of varieties to keep it competitive .", "storylet_id": "226643"}], [{"original_text": "Even bread isnt safe some times when you come across other cultures. The bottom line is: Everything in moderation. ", "album_id": "72057594108529533", "photo_flickr_id": "129841059", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "45328", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even bread isnt safe some times when you come across other cultures . the bottom line is : everything in moderation .", "storylet_id": "226644"}], [{"original_text": "There was so much eat at Easter. ", "album_id": "72057594108529533", "photo_flickr_id": "129833771", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45329", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was so much eat at easter .", "storylet_id": "226645"}], [{"original_text": "We had chocolate easter eggs.", "album_id": "72057594108529533", "photo_flickr_id": "129494565", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45329", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had chocolate easter eggs .", "storylet_id": "226646"}], [{"original_text": "And chocolate covered sticks.", "album_id": "72057594108529533", "photo_flickr_id": "129494567", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45329", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and chocolate covered sticks .", "storylet_id": "226647"}], [{"original_text": "And candy from around the world.", "album_id": "72057594108529533", "photo_flickr_id": "129494568", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45329", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and candy from around the world .", "storylet_id": "226648"}], [{"original_text": "And powder covered beignets.", "album_id": "72057594108529533", "photo_flickr_id": "129841059", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45329", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and powder covered beignets .", "storylet_id": "226649"}], [{"original_text": "The kids were excited for the Easter egg hunt.", "album_id": "72057594108549896", "photo_flickr_id": "129499012", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45330", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids were excited for the easter egg hunt .", "storylet_id": "226650"}], [{"original_text": "The compared what each other found.", "album_id": "72057594108549896", "photo_flickr_id": "129499736", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45330", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the compared what each other found .", "storylet_id": "226651"}], [{"original_text": "Afterwards they played games.", "album_id": "72057594108549896", "photo_flickr_id": "129503145", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45330", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards they played games .", "storylet_id": "226652"}], [{"original_text": "There was even a storyteller there for the kids.", "album_id": "72057594108549896", "photo_flickr_id": "129511060", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45330", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was even a storyteller there for the kids .", "storylet_id": "226653"}], [{"original_text": "All the kids had an awesome time.", "album_id": "72057594108549896", "photo_flickr_id": "129502266", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45330", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the kids had an awesome time .", "storylet_id": "226654"}], [{"original_text": "It was the annual Easter Egg hunt and relay race event.All the kids showed up with their baske", "album_id": "72057594108549896", "photo_flickr_id": "129499736", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "45331", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the annual easter egg hunt and relay race event.all the kids showed up with their baske", "storylet_id": "226655"}], [{"original_text": "All the kids showed up with their baskets and ran to find the hidden eggs.", "album_id": "72057594108549896", "photo_flickr_id": "129497175", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "45331", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the kids showed up with their baskets and ran to find the hidden eggs .", "storylet_id": "226656"}], [{"original_text": "After the hunt, the children listened to a story.", "album_id": "72057594108549896", "photo_flickr_id": "129511060", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "45331", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the hunt , the children listened to a story .", "storylet_id": "226657"}], [{"original_text": "Later they played games.", "album_id": "72057594108549896", "photo_flickr_id": "129508591", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "45331", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "later they played games .", "storylet_id": "226658"}], [{"original_text": "After a brunch with the Easter bunny, the kids posed for a group picture.", "album_id": "72057594108549896", "photo_flickr_id": "129502266", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "45331", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a brunch with the easter bunny , the kids posed for a group picture .", "storylet_id": "226659"}], [{"original_text": "They were so happy for this day.", "album_id": "72057594108549896", "photo_flickr_id": "129499736", "setting": "last-3-pick-old-and-tell", "worker_id": "H9W993Z6DLFO3L1", "story_id": "45332", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they were so happy for this day .", "storylet_id": "226660"}], [{"original_text": "They raced to find the eggs.", "album_id": "72057594108549896", "photo_flickr_id": "129497175", "setting": "last-3-pick-old-and-tell", "worker_id": "H9W993Z6DLFO3L1", "story_id": "45332", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they raced to find the eggs .", "storylet_id": "226661"}], [{"original_text": "All the kids gathered around.", "album_id": "72057594108549896", "photo_flickr_id": "129511060", "setting": "last-3-pick-old-and-tell", "worker_id": "H9W993Z6DLFO3L1", "story_id": "45332", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the kids gathered around .", "storylet_id": "226662"}], [{"original_text": "Many games were played.", "album_id": "72057594108549896", "photo_flickr_id": "129508591", "setting": "last-3-pick-old-and-tell", "worker_id": "H9W993Z6DLFO3L1", "story_id": "45332", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many games were played .", "storylet_id": "226663"}], [{"original_text": "A group photo with the bunny.", "album_id": "72057594108549896", "photo_flickr_id": "129502266", "setting": "last-3-pick-old-and-tell", "worker_id": "H9W993Z6DLFO3L1", "story_id": "45332", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a group photo with the bunny .", "storylet_id": "226664"}], [{"original_text": "Out on their first Easter egg hunt!", "album_id": "72057594108549896", "photo_flickr_id": "129499012", "setting": "last-3-pick-old-and-tell", "worker_id": "YQXVJ0BDVDIKOA7", "story_id": "45333", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "out on their first easter egg hunt !", "storylet_id": "226665"}], [{"original_text": "Then all the kids shared what the others got in their Easter egg hunt.", "album_id": "72057594108549896", "photo_flickr_id": "129499736", "setting": "last-3-pick-old-and-tell", "worker_id": "YQXVJ0BDVDIKOA7", "story_id": "45333", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "then all the kids shared what the others got in their easter egg hunt .", "storylet_id": "226666"}], [{"original_text": "The kids continued on with their fun activities.", "album_id": "72057594108549896", "photo_flickr_id": "129503145", "setting": "last-3-pick-old-and-tell", "worker_id": "YQXVJ0BDVDIKOA7", "story_id": "45333", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids continued on with their fun activities .", "storylet_id": "226667"}], [{"original_text": "Even a magical story being told in front of a crowd.", "album_id": "72057594108549896", "photo_flickr_id": "129511060", "setting": "last-3-pick-old-and-tell", "worker_id": "YQXVJ0BDVDIKOA7", "story_id": "45333", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even a magical story being told in front of a crowd .", "storylet_id": "226668"}], [{"original_text": "Lastly a group picture with the Easter Bunny!", "album_id": "72057594108549896", "photo_flickr_id": "129502266", "setting": "last-3-pick-old-and-tell", "worker_id": "YQXVJ0BDVDIKOA7", "story_id": "45333", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "lastly a group picture with the easter bunny !", "storylet_id": "226669"}], [{"original_text": "Our city sponsored an Easter egg hunt and party.", "album_id": "72057594108549896", "photo_flickr_id": "129499012", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45334", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our city sponsored an easter egg hunt and party .", "storylet_id": "226670"}], [{"original_text": "The kids were rewarded for finding certain eggs.", "album_id": "72057594108549896", "photo_flickr_id": "129499736", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45334", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids were rewarded for finding certain eggs .", "storylet_id": "226671"}], [{"original_text": "After the egg hunt, there was a three-legged race.", "album_id": "72057594108549896", "photo_flickr_id": "129503145", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45334", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after the egg hunt , there was a three-legged race .", "storylet_id": "226672"}], [{"original_text": "Then they had a performer entertain the children with tricks.", "album_id": "72057594108549896", "photo_flickr_id": "129511060", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45334", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then they had a performer entertain the children with tricks .", "storylet_id": "226673"}], [{"original_text": "Finally, it was time for the Easter Bunny to show up and greet everybody!", "album_id": "72057594108549896", "photo_flickr_id": "129502266", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45334", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally , it was time for the easter bunny to show up and greet everybody !", "storylet_id": "226674"}], [{"original_text": "My childhood was great. This is me at 4 years old. ", "album_id": "72157594484327927", "photo_flickr_id": "360307030", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45335", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my childhood was great . this is me at 4 years old .", "storylet_id": "226675"}], [{"original_text": "My mom and I had so much fun dressing up and showing our butts. ", "album_id": "72157594484327927", "photo_flickr_id": "361076430", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45335", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my mom and i had so much fun dressing up and showing our butts .", "storylet_id": "226676"}], [{"original_text": "That's how she got Daddy. Him and I take long naps. ", "album_id": "72157594484327927", "photo_flickr_id": "361076559", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45335", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "that 's how she got daddy . him and i take long naps .", "storylet_id": "226677"}], [{"original_text": "The next day after our nap Mommy took me on a train ride with all my stuff. ", "album_id": "72157594484327927", "photo_flickr_id": "361076624", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45335", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next day after our nap mommy took me on a train ride with all my stuff .", "storylet_id": "226678"}], [{"original_text": "We got a new house and she cut my hair and turned it blonde. She said it was a game to hide from Daddy. ", "album_id": "72157594484327927", "photo_flickr_id": "360306831", "setting": "first-2-pick-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45335", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we got a new house and she cut my hair and turned it blonde . she said it was a game to hide from daddy .", "storylet_id": "226679"}], [{"original_text": "This is my daughter, Priscilla, posing with her dog, Ramsey. ", "album_id": "72157594484327927", "photo_flickr_id": "361076669", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "45336", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is my daughter , [female] , posing with her dog , ramsey .", "storylet_id": "226680"}], [{"original_text": "As Priscilla rehearses for her upcoming recital, I'm there to help her every step of the way. ", "album_id": "72157594484327927", "photo_flickr_id": "361076430", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "45336", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "as [female] rehearses for her upcoming recital , i 'm there to help her every step of the way .", "storylet_id": "226681"}], [{"original_text": "The morning of the dance recital, Priscilla sleeps in with her Daddy. Time to get up, sleepy head. ", "album_id": "72157594484327927", "photo_flickr_id": "361076559", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "45336", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the morning of the dance recital , [female] sleeps in with her daddy . time to get up , sleepy head .", "storylet_id": "226682"}], [{"original_text": "People are lining up at the recital, hoping to get a good seat. ", "album_id": "72157594484327927", "photo_flickr_id": "360306815", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "45336", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people are lining up at the recital , hoping to get a good seat .", "storylet_id": "226683"}], [{"original_text": "There's Priscilla dancing her little heart out. It's such a proud moment. ", "album_id": "72157594484327927", "photo_flickr_id": "361076466", "setting": "first-2-pick-and-tell", "worker_id": "KAI0VZ3F81842P8", "story_id": "45336", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there 's [female] dancing her little heart out . it 's such a proud moment .", "storylet_id": "226684"}], [{"original_text": "Charley was a beautiful little girl who had many different talents and enjoyed life to the fullest. ", "album_id": "72157594484327927", "photo_flickr_id": "361076669", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "45337", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was a beautiful little girl who had many different talents and enjoyed life to the fullest .", "storylet_id": "226685"}], [{"original_text": "She loved to dance and frequently entered dance contests month after month at her dance teacher's urging. ", "album_id": "72157594484327927", "photo_flickr_id": "361076430", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "45337", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she loved to dance and frequently entered dance contests month after month at her dance teacher 's urging .", "storylet_id": "226686"}], [{"original_text": "She was loved very much by her parents and they loved her too. They also supported her every whim. ", "album_id": "72157594484327927", "photo_flickr_id": "361076559", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "45337", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she was loved very much by her parents and they loved her too . they also supported her every whim .", "storylet_id": "226687"}], [{"original_text": "Ever since the day she was born, they doted over her and made it their lifes work to make sure she had a great childhood. ", "album_id": "72157594484327927", "photo_flickr_id": "360306815", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "45337", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "ever since the day she was born , they doted over her and made it their lifes work to make sure she had a great childhood .", "storylet_id": "226688"}], [{"original_text": "I think fondly on her all these years later, that little girl who stole everyone's heart and who always had a dance in her step and a smile on her face. ", "album_id": "72157594484327927", "photo_flickr_id": "361076466", "setting": "last-3-pick-old-and-tell", "worker_id": "MMK65WXG2ONK3ZH", "story_id": "45337", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think fondly on her all these years later , that little girl who stole everyone 's heart and who always had a dance in her step and a smile on her face .", "storylet_id": "226689"}], [{"original_text": "The girl loves lots of things around her house, especially her dog.", "album_id": "72157594484327927", "photo_flickr_id": "361076669", "setting": "last-3-pick-old-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "45338", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the girl loves lots of things around her house , especially her dog .", "storylet_id": "226690"}], [{"original_text": "Her mom is fun because she will dress up with her and practice dance moves.", "album_id": "72157594484327927", "photo_flickr_id": "361076430", "setting": "last-3-pick-old-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "45338", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her mom is fun because she will dress up with her and practice dance moves .", "storylet_id": "226691"}], [{"original_text": "Dad loves it when they nap together on the weekend.", "album_id": "72157594484327927", "photo_flickr_id": "361076559", "setting": "last-3-pick-old-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "45338", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "dad loves it when they nap together on the weekend .", "storylet_id": "226692"}], [{"original_text": "They also get to meet the newest family member this week and attend her dance recital.", "album_id": "72157594484327927", "photo_flickr_id": "360306815", "setting": "last-3-pick-old-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "45338", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also get to meet the newest family member this week and attend her dance recital .", "storylet_id": "226693"}], [{"original_text": "She is excited to perform for her family and the crowd that came to watch.", "album_id": "72157594484327927", "photo_flickr_id": "361076466", "setting": "last-3-pick-old-and-tell", "worker_id": "1FF1697SC8B2SZJ", "story_id": "45338", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she is excited to perform for her family and the crowd that came to watch .", "storylet_id": "226694"}], [{"original_text": "after her first swimming lesson. ", "album_id": "72157594484327927", "photo_flickr_id": "360307030", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45339", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "after her first swimming lesson .", "storylet_id": "226695"}], [{"original_text": "Dancing with mom. ", "album_id": "72157594484327927", "photo_flickr_id": "361076430", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45339", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "dancing with mom .", "storylet_id": "226696"}], [{"original_text": "Sleeping with dad. ", "album_id": "72157594484327927", "photo_flickr_id": "361076559", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45339", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sleeping with dad .", "storylet_id": "226697"}], [{"original_text": "going to disney world. ", "album_id": "72157594484327927", "photo_flickr_id": "361076624", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45339", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "going to disney world .", "storylet_id": "226698"}], [{"original_text": "Mom doing her First haircut. ", "album_id": "72157594484327927", "photo_flickr_id": "360306831", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45339", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mom doing her first haircut .", "storylet_id": "226699"}], [{"original_text": "Let's get started with a game of tennis. ", "album_id": "72157594523668593", "photo_flickr_id": "383190357", "setting": "first-2-pick-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "45340", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "let 's get started with a game of tennis .", "storylet_id": "226700"}], [{"original_text": "This is going to be for one player. ", "album_id": "72157594523668593", "photo_flickr_id": "383190434", "setting": "first-2-pick-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "45340", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is going to be for one player .", "storylet_id": "226701"}], [{"original_text": "I get to pick who I'm going to play against. ", "album_id": "72157594523668593", "photo_flickr_id": "383190816", "setting": "first-2-pick-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "45340", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i get to pick who i 'm going to play against .", "storylet_id": "226702"}], [{"original_text": "Now I'm ready to go. ", "album_id": "72157594523668593", "photo_flickr_id": "383190957", "setting": "first-2-pick-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "45340", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "now i 'm ready to go .", "storylet_id": "226703"}], [{"original_text": "This is great, my opponent missed the ball. ", "album_id": "72157594523668593", "photo_flickr_id": "383192620", "setting": "first-2-pick-and-tell", "worker_id": "QCGR3880N6FUVRY", "story_id": "45340", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is great , my opponent missed the ball .", "storylet_id": "226704"}], [{"original_text": "Wii Tennis is alot of fun!", "album_id": "72157594523668593", "photo_flickr_id": "383190357", "setting": "first-2-pick-and-tell", "worker_id": "JMDW0JEM22M6238", "story_id": "45341", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "wii tennis is alot of fun !", "storylet_id": "226705"}], [{"original_text": "We like to play with 4 players and due a team match.", "album_id": "72157594523668593", "photo_flickr_id": "383190816", "setting": "first-2-pick-and-tell", "worker_id": "JMDW0JEM22M6238", "story_id": "45341", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we like to play with 4 players and due a team match .", "storylet_id": "226706"}], [{"original_text": "The 2 players will share the space, one player in the front, and one in the back.", "album_id": "72157594523668593", "photo_flickr_id": "383191893", "setting": "first-2-pick-and-tell", "worker_id": "JMDW0JEM22M6238", "story_id": "45341", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the 2 players will share the space , one player in the front , and one in the back .", "storylet_id": "226707"}], [{"original_text": "Each person controls one player in that space.", "album_id": "72157594523668593", "photo_flickr_id": "383192470", "setting": "first-2-pick-and-tell", "worker_id": "JMDW0JEM22M6238", "story_id": "45341", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "each person controls one player in that space .", "storylet_id": "226708"}], [{"original_text": "If the front player misses the ball, the player in back can try for it again. ", "album_id": "72157594523668593", "photo_flickr_id": "383192620", "setting": "first-2-pick-and-tell", "worker_id": "JMDW0JEM22M6238", "story_id": "45341", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "if the front player misses the ball , the player in back can try for it again .", "storylet_id": "226709"}], [{"original_text": "Ok what do I do? ", "album_id": "72157594523668593", "photo_flickr_id": "383190357", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "45342", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "ok what do i do ?", "storylet_id": "226710"}], [{"original_text": "I see I have to pick a numbered square.", "album_id": "72157594523668593", "photo_flickr_id": "383190434", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "45342", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i see i have to pick a numbered square .", "storylet_id": "226711"}], [{"original_text": "I sure do like tennis.", "album_id": "72157594523668593", "photo_flickr_id": "383190816", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "45342", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i sure do like tennis .", "storylet_id": "226712"}], [{"original_text": "This game is going to rock.", "album_id": "72157594523668593", "photo_flickr_id": "383190957", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "45342", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this game is going to rock .", "storylet_id": "226713"}], [{"original_text": "I know I will win.", "album_id": "72157594523668593", "photo_flickr_id": "383192620", "setting": "last-3-pick-old-and-tell", "worker_id": "MS03NJABTRF3F9Y", "story_id": "45342", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i know i will win .", "storylet_id": "226714"}], [{"original_text": "I played Tennis today on Wii.", "album_id": "72157594523668593", "photo_flickr_id": "383190357", "setting": "last-3-pick-old-and-tell", "worker_id": "ZSBOA4C7MAHC3Q7", "story_id": "45343", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i played tennis today on wii .", "storylet_id": "226715"}], [{"original_text": "Nobody else was home, so I decided to play by myself.", "album_id": "72157594523668593", "photo_flickr_id": "383190434", "setting": "last-3-pick-old-and-tell", "worker_id": "ZSBOA4C7MAHC3Q7", "story_id": "45343", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "nobody else was home , so i decided to play by myself .", "storylet_id": "226716"}], [{"original_text": "The system matched me with three other players, so I had a virtual partner.", "album_id": "72157594523668593", "photo_flickr_id": "383190816", "setting": "last-3-pick-old-and-tell", "worker_id": "ZSBOA4C7MAHC3Q7", "story_id": "45343", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the system matched me with three other players , so i had a virtual partner .", "storylet_id": "226717"}], [{"original_text": "Have a team mate made it more enjoyable to play. ", "album_id": "72157594523668593", "photo_flickr_id": "383190957", "setting": "last-3-pick-old-and-tell", "worker_id": "ZSBOA4C7MAHC3Q7", "story_id": "45343", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "have a team mate made it more enjoyable to play .", "storylet_id": "226718"}], [{"original_text": "Otherwise I would have been lonely. ", "album_id": "72157594523668593", "photo_flickr_id": "383192620", "setting": "last-3-pick-old-and-tell", "worker_id": "ZSBOA4C7MAHC3Q7", "story_id": "45343", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "otherwise i would have been lonely .", "storylet_id": "226719"}], [{"original_text": "I got bored one day and decided to play Wii Sports.", "album_id": "72157594523668593", "photo_flickr_id": "383190357", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45344", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i got bored one day and decided to play wii sports .", "storylet_id": "226720"}], [{"original_text": "I began by selecting my position.", "album_id": "72157594523668593", "photo_flickr_id": "383190434", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45344", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i began by selecting my position .", "storylet_id": "226721"}], [{"original_text": "I'm playing Tennis against three other people.", "album_id": "72157594523668593", "photo_flickr_id": "383190816", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45344", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i 'm playing tennis against three other people .", "storylet_id": "226722"}], [{"original_text": "First, I had to return the ball.", "album_id": "72157594523668593", "photo_flickr_id": "383190957", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45344", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "first , i had to return the ball .", "storylet_id": "226723"}], [{"original_text": "It was now my turn to serve.", "album_id": "72157594523668593", "photo_flickr_id": "383192620", "setting": "last-3-pick-old-and-tell", "worker_id": "QX0I0ER991X4Q9B", "story_id": "45344", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was now my turn to serve .", "storylet_id": "226724"}], [{"original_text": "My mother is the matriarch of the family,", "album_id": "72157600198842710", "photo_flickr_id": "441293290", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45345", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my mother is the matriarch of the family ,", "storylet_id": "226725"}], [{"original_text": "The family gathers at her house.", "album_id": "72157600198842710", "photo_flickr_id": "441298387", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45345", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the family gathers at her house .", "storylet_id": "226726"}], [{"original_text": "The kids like to play in the yard.", "album_id": "72157600198842710", "photo_flickr_id": "441299242", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45345", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids like to play in the yard .", "storylet_id": "226727"}], [{"original_text": "Afterward we have a family picnic.", "album_id": "72157600198842710", "photo_flickr_id": "441303637", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45345", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterward we have a family picnic .", "storylet_id": "226728"}], [{"original_text": "My kids look forward to these gatherings.", "album_id": "72157600198842710", "photo_flickr_id": "441307012", "setting": "first-2-pick-and-tell", "worker_id": "7F4NDH80GN81HGC", "story_id": "45345", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my kids look forward to these gatherings .", "storylet_id": "226729"}], [{"original_text": "We took a field trip to the flower fields. ", "album_id": "72157600198842710", "photo_flickr_id": "441303637", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "45346", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a field trip to the flower fields .", "storylet_id": "226730"}], [{"original_text": "While we ate lunch a speaker explained the historical significance of the area.", "album_id": "72157600198842710", "photo_flickr_id": "441293290", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "45346", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while we ate lunch a speaker explained the historical significance of the area .", "storylet_id": "226731"}], [{"original_text": "We saw a monument to the great war.", "album_id": "72157600198842710", "photo_flickr_id": "441269296", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "45346", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw a monument to the great war .", "storylet_id": "226732"}], [{"original_text": "We also saw a flower field that was actually a sculpture. It was so cool.", "album_id": "72157600198842710", "photo_flickr_id": "441324709", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "45346", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also saw a flower field that was actually a sculpture . it was so cool .", "storylet_id": "226733"}], [{"original_text": "After the tour, we had time to play with the kites we brought.", "album_id": "72157600198842710", "photo_flickr_id": "441299242", "setting": "first-2-pick-and-tell", "worker_id": "2X789I8MSE751LZ", "story_id": "45346", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after the tour , we had time to play with the kites we brought .", "storylet_id": "226734"}], [{"original_text": "My aunt came over for a family dinner.", "album_id": "72157600198842710", "photo_flickr_id": "441293290", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45347", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my aunt came over for a family dinner .", "storylet_id": "226735"}], [{"original_text": "We had all the tables set up outside because it was a beautiful day.", "album_id": "72157600198842710", "photo_flickr_id": "441298387", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45347", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had all the tables set up outside because it was a beautiful day .", "storylet_id": "226736"}], [{"original_text": "The kids played with a ribbon.", "album_id": "72157600198842710", "photo_flickr_id": "441299242", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45347", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the kids played with a ribbon .", "storylet_id": "226737"}], [{"original_text": "It was finally time to eat.", "album_id": "72157600198842710", "photo_flickr_id": "441303637", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45347", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was finally time to eat .", "storylet_id": "226738"}], [{"original_text": "They kids posed for a picture in their matching shirts.", "album_id": "72157600198842710", "photo_flickr_id": "441307012", "setting": "last-3-pick-old-and-tell", "worker_id": "58SRCIBUPMEKV8E", "story_id": "45347", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they kids posed for a picture in their matching shirts .", "storylet_id": "226739"}], [{"original_text": "Today we gathered for a picnic.", "album_id": "72157600198842710", "photo_flickr_id": "441303637", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "45348", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we gathered for a picnic .", "storylet_id": "226740"}], [{"original_text": "Mom talked about her new job.", "album_id": "72157600198842710", "photo_flickr_id": "441293290", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "45348", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "mom talked about her new job .", "storylet_id": "226741"}], [{"original_text": "We visited the monument for the citizens.", "album_id": "72157600198842710", "photo_flickr_id": "441269296", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "45348", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we visited the monument for the citizens .", "storylet_id": "226742"}], [{"original_text": "There was also a memorial on the lawn.", "album_id": "72157600198842710", "photo_flickr_id": "441324709", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "45348", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also a memorial on the lawn .", "storylet_id": "226743"}], [{"original_text": "The boys were able to fly their kites.", "album_id": "72157600198842710", "photo_flickr_id": "441299242", "setting": "last-3-pick-old-and-tell", "worker_id": "T8J7709OHNSZQVQ", "story_id": "45348", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boys were able to fly their kites .", "storylet_id": "226744"}], [{"original_text": "The family gathered on the beautiful day at the park for a celebration.", "album_id": "72157600198842710", "photo_flickr_id": "441303637", "setting": "last-3-pick-old-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "45349", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family gathered on the beautiful day at the park for a celebration .", "storylet_id": "226745"}], [{"original_text": "Grandma let everyone know how happy she was to see them all.", "album_id": "72157600198842710", "photo_flickr_id": "441293290", "setting": "last-3-pick-old-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "45349", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "grandma let everyone know how happy she was to see them all .", "storylet_id": "226746"}], [{"original_text": "The little boy was very moved by this fallen soldier statue.", "album_id": "72157600198842710", "photo_flickr_id": "441269296", "setting": "last-3-pick-old-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "45349", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the little boy was very moved by this fallen soldier statue .", "storylet_id": "226747"}], [{"original_text": "The windmill fans were beautiful on the lawn.", "album_id": "72157600198842710", "photo_flickr_id": "441324709", "setting": "last-3-pick-old-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "45349", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the windmill fans were beautiful on the lawn .", "storylet_id": "226748"}], [{"original_text": "The kids had the most fun flying their kites at the park.", "album_id": "72157600198842710", "photo_flickr_id": "441299242", "setting": "last-3-pick-old-and-tell", "worker_id": "7CY1AQE3WEVRIQH", "story_id": "45349", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the kids had the most fun flying their kites at the park .", "storylet_id": "226749"}], [{"original_text": "My family visited a neat city last Summer.", "album_id": "72157631857762354", "photo_flickr_id": "8124978986", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "45350", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family visited a neat city last [female] .", "storylet_id": "226750"}], [{"original_text": "It had great sites and very big buildings.", "album_id": "72157631857762354", "photo_flickr_id": "8124960557", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "45350", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it had great sites and very big buildings .", "storylet_id": "226751"}], [{"original_text": "The people all gathered in the streets to talk and pray.", "album_id": "72157631857762354", "photo_flickr_id": "8124982294", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "45350", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people all gathered in the streets to talk and pray .", "storylet_id": "226752"}], [{"original_text": "They were always happy to see each other.", "album_id": "72157631857762354", "photo_flickr_id": "8124985140", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "45350", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they were always happy to see each other .", "storylet_id": "226753"}], [{"original_text": "We talked with these men before going home that day.", "album_id": "72157631857762354", "photo_flickr_id": "8124966235", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "45350", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we talked with these men before going home that day .", "storylet_id": "226754"}], [{"original_text": "Our group went sightseeing on our recent trip.", "album_id": "72157631857762354", "photo_flickr_id": "8124960557", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45351", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our group went sightseeing on our recent trip .", "storylet_id": "226755"}], [{"original_text": "We saw some beautiful buildings.", "album_id": "72157631857762354", "photo_flickr_id": "8124978986", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45351", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw some beautiful buildings .", "storylet_id": "226756"}], [{"original_text": "The interior of this one was amazing!", "album_id": "72157631857762354", "photo_flickr_id": "8124964491", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45351", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the interior of this one was amazing !", "storylet_id": "226757"}], [{"original_text": "We even ran into an old friend while we were sightseeing.", "album_id": "72157631857762354", "photo_flickr_id": "8124985140", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45351", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even ran into an old friend while we were sightseeing .", "storylet_id": "226758"}], [{"original_text": "We really enjoyed our trip. ", "album_id": "72157631857762354", "photo_flickr_id": "8124966235", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45351", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we really enjoyed our trip .", "storylet_id": "226759"}], [{"original_text": "I love to learn about other cultures.", "album_id": "72157631857762354", "photo_flickr_id": "8124960557", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45352", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love to learn about other cultures .", "storylet_id": "226760"}], [{"original_text": "I like to learn their history.", "album_id": "72157631857762354", "photo_flickr_id": "8124978986", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45352", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i like to learn their history .", "storylet_id": "226761"}], [{"original_text": "I also like to learn about their religions.", "album_id": "72157631857762354", "photo_flickr_id": "8124964491", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45352", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i also like to learn about their religions .", "storylet_id": "226762"}], [{"original_text": "We all love our families and friends.", "album_id": "72157631857762354", "photo_flickr_id": "8124985140", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45352", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we all love our families and friends .", "storylet_id": "226763"}], [{"original_text": "Basically we are all just people of the world.", "album_id": "72157631857762354", "photo_flickr_id": "8124966235", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45352", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "basically we are all just people of the world .", "storylet_id": "226764"}], [{"original_text": "I went to a temple for the first time last weekend.", "album_id": "72157631857762354", "photo_flickr_id": "8124978986", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "45353", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a temple for the first time last weekend .", "storylet_id": "226765"}], [{"original_text": "It was a beautiful day and there is a great view of the city skyline.", "album_id": "72157631857762354", "photo_flickr_id": "8124960557", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "45353", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was a beautiful day and there is a great view of the city skyline .", "storylet_id": "226766"}], [{"original_text": "Several people were holding a small prayer group outside of the temple.", "album_id": "72157631857762354", "photo_flickr_id": "8124982294", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "45353", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "several people were holding a small prayer group outside of the temple .", "storylet_id": "226767"}], [{"original_text": "My wife's husband was so happy to see me there.", "album_id": "72157631857762354", "photo_flickr_id": "8124985140", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "45353", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my wife 's husband was so happy to see me there .", "storylet_id": "226768"}], [{"original_text": "Her brothers and friends were also thrilled that I showed up.", "album_id": "72157631857762354", "photo_flickr_id": "8124966235", "setting": "last-3-pick-old-and-tell", "worker_id": "VI371ESIPQY6GP7", "story_id": "45353", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "her brothers and friends were also thrilled that i showed up .", "storylet_id": "226769"}], [{"original_text": "We are on our way to worship God.", "album_id": "72157631857762354", "photo_flickr_id": "8124960557", "setting": "last-3-pick-old-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "45354", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we are on our way to worship god .", "storylet_id": "226770"}], [{"original_text": "Here is our beautiful mosque.", "album_id": "72157631857762354", "photo_flickr_id": "8124978986", "setting": "last-3-pick-old-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "45354", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here is our beautiful mosque .", "storylet_id": "226771"}], [{"original_text": "We all bow down to pray to our god.", "album_id": "72157631857762354", "photo_flickr_id": "8124964491", "setting": "last-3-pick-old-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "45354", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we all bow down to pray to our god .", "storylet_id": "226772"}], [{"original_text": "We greet each other.", "album_id": "72157631857762354", "photo_flickr_id": "8124985140", "setting": "last-3-pick-old-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "45354", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we greet each other .", "storylet_id": "226773"}], [{"original_text": "We are happy to come together to worship.", "album_id": "72157631857762354", "photo_flickr_id": "8124966235", "setting": "last-3-pick-old-and-tell", "worker_id": "4HA3TGPF1D1FSX8", "story_id": "45354", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we are happy to come together to worship .", "storylet_id": "226774"}], [{"original_text": "I love giving my time to help those who are in need.", "album_id": "72157631906545378", "photo_flickr_id": "8146284009", "setting": "first-2-pick-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "45355", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love giving my time to help those who are in need .", "storylet_id": "226775"}], [{"original_text": "I volunteer with my church to go into these neighborhoods and deliver things they need.", "album_id": "72157631906545378", "photo_flickr_id": "8146284103", "setting": "first-2-pick-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "45355", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i volunteer with my church to go into these neighborhoods and deliver things they need .", "storylet_id": "226776"}], [{"original_text": "Sometimes, it is as simple as a cup of water.", "album_id": "72157631906545378", "photo_flickr_id": "8146317150", "setting": "first-2-pick-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "45355", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sometimes , it is as simple as a cup of water .", "storylet_id": "226777"}], [{"original_text": "Other times, it could be enough money to pay for a month's rent.", "album_id": "72157631906545378", "photo_flickr_id": "8146284249", "setting": "first-2-pick-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "45355", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "other times , it could be enough money to pay for a month 's rent .", "storylet_id": "226778"}], [{"original_text": "No matter what it is, we are making a huge difference in their lives, and that is what counts.", "album_id": "72157631906545378", "photo_flickr_id": "8146284439", "setting": "first-2-pick-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "45355", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "no matter what it is , we are making a huge difference in their lives , and that is what counts .", "storylet_id": "226779"}], [{"original_text": "I have a friend whose family lives dangerously.", "album_id": "72157631906545378", "photo_flickr_id": "8146284249", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45356", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have a friend whose family lives dangerously .", "storylet_id": "226780"}], [{"original_text": "Any time they take pictures they have to blank out faces.", "album_id": "72157631906545378", "photo_flickr_id": "8146284103", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45356", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "any time they take pictures they have to blank out faces .", "storylet_id": "226781"}], [{"original_text": "This is their family photo.", "album_id": "72157631906545378", "photo_flickr_id": "8146317100", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45356", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is their family photo .", "storylet_id": "226782"}], [{"original_text": "It's really a shame they have to live like this.", "album_id": "72157631906545378", "photo_flickr_id": "8146317320", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45356", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it 's really a shame they have to live like this .", "storylet_id": "226783"}], [{"original_text": "It takes all the fun out of taking pictures.", "album_id": "72157631906545378", "photo_flickr_id": "8146284439", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45356", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it takes all the fun out of taking pictures .", "storylet_id": "226784"}], [{"original_text": "I went on a mission trip to an islam country.", "album_id": "72157631906545378", "photo_flickr_id": "8146284249", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45357", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went on a mission trip to an islam country .", "storylet_id": "226785"}], [{"original_text": "They were fantastic people.", "album_id": "72157631906545378", "photo_flickr_id": "8146284103", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45357", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were fantastic people .", "storylet_id": "226786"}], [{"original_text": "I got to meet some lovely families.", "album_id": "72157631906545378", "photo_flickr_id": "8146317100", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45357", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i got to meet some lovely families .", "storylet_id": "226787"}], [{"original_text": "I also got to show them some love as well.", "album_id": "72157631906545378", "photo_flickr_id": "8146317320", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45357", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i also got to show them some love as well .", "storylet_id": "226788"}], [{"original_text": "We brought them food and some toys.", "album_id": "72157631906545378", "photo_flickr_id": "8146284439", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45357", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we brought them food and some toys .", "storylet_id": "226789"}], [{"original_text": "We met with some of the towns people.", "album_id": "72157631906545378", "photo_flickr_id": "8146284249", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45358", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we met with some of the towns people .", "storylet_id": "226790"}], [{"original_text": "They where happy people finally cared.", "album_id": "72157631906545378", "photo_flickr_id": "8146284103", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45358", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they where happy people finally cared .", "storylet_id": "226791"}], [{"original_text": "We took photos and held interviews.", "album_id": "72157631906545378", "photo_flickr_id": "8146317100", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45358", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we took photos and held interviews .", "storylet_id": "226792"}], [{"original_text": "We learned a lot about their culture.", "album_id": "72157631906545378", "photo_flickr_id": "8146317320", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45358", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we learned a lot about their culture .", "storylet_id": "226793"}], [{"original_text": "We spent most of the day with the people.", "album_id": "72157631906545378", "photo_flickr_id": "8146284439", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45358", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we spent most of the day with the people .", "storylet_id": "226794"}], [{"original_text": "a man passing out flyers and talking to people.", "album_id": "72157631906545378", "photo_flickr_id": "8146284009", "setting": "last-3-pick-old-and-tell", "worker_id": "XJUTEV8LYIJFETY", "story_id": "45359", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a man passing out flyers and talking to people .", "storylet_id": "226795"}], [{"original_text": "a man helping another man by giving him something.", "album_id": "72157631906545378", "photo_flickr_id": "8146284103", "setting": "last-3-pick-old-and-tell", "worker_id": "XJUTEV8LYIJFETY", "story_id": "45359", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a man helping another man by giving him something .", "storylet_id": "226796"}], [{"original_text": "giving a little boy something.", "album_id": "72157631906545378", "photo_flickr_id": "8146317150", "setting": "last-3-pick-old-and-tell", "worker_id": "XJUTEV8LYIJFETY", "story_id": "45359", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "giving a little boy something .", "storylet_id": "226797"}], [{"original_text": "he is giving an older lady something.", "album_id": "72157631906545378", "photo_flickr_id": "8146284249", "setting": "last-3-pick-old-and-tell", "worker_id": "XJUTEV8LYIJFETY", "story_id": "45359", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he is giving an older lady something .", "storylet_id": "226798"}], [{"original_text": "a photo op with a family.", "album_id": "72157631906545378", "photo_flickr_id": "8146284439", "setting": "last-3-pick-old-and-tell", "worker_id": "XJUTEV8LYIJFETY", "story_id": "45359", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a photo op with a family .", "storylet_id": "226799"}], [{"original_text": "I have a friend named Lee.", "album_id": "1433463", "photo_flickr_id": "66434408", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45360", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i have a friend named [male] .", "storylet_id": "226800"}], [{"original_text": "Lee has his stepsister that lives in America.", "album_id": "1433463", "photo_flickr_id": "66430861", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45360", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] has his stepsister that lives in location .", "storylet_id": "226801"}], [{"original_text": "Lee's dad is a cook.", "album_id": "1433463", "photo_flickr_id": "66429779", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45360", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] 's dad is a cook .", "storylet_id": "226802"}], [{"original_text": "He loves to bake cookies.", "album_id": "1433463", "photo_flickr_id": "66429504", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45360", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he loves to bake cookies .", "storylet_id": "226803"}], [{"original_text": "This is his apprentice.", "album_id": "1433463", "photo_flickr_id": "66434806", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45360", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is his apprentice .", "storylet_id": "226804"}], [{"original_text": "I visited my friend at her family's restaurant.", "album_id": "1433463", "photo_flickr_id": "66430861", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45361", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i visited my friend at her family 's restaurant .", "storylet_id": "226805"}], [{"original_text": "I was shown how they make noodles!", "album_id": "1433463", "photo_flickr_id": "66434806", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45361", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was shown how they make noodles !", "storylet_id": "226806"}], [{"original_text": "They invited me to have a meal with them.", "album_id": "1433463", "photo_flickr_id": "66426757", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45361", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they invited me to have a meal with them .", "storylet_id": "226807"}], [{"original_text": "I loved these pastries. Everything I ate was good!", "album_id": "1433463", "photo_flickr_id": "66428914", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45361", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i loved these pastries . everything i ate was good !", "storylet_id": "226808"}], [{"original_text": "They were so nice. I had a great time. ", "album_id": "1433463", "photo_flickr_id": "66432755", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45361", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were so nice . i had a great time .", "storylet_id": "226809"}], [{"original_text": "A Western lady visited an Asian kitchen.", "album_id": "1433463", "photo_flickr_id": "66430861", "setting": "last-3-pick-old-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "45362", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a western lady visited an asian kitchen .", "storylet_id": "226810"}], [{"original_text": "The chef demonstrated how to make noodles.", "album_id": "1433463", "photo_flickr_id": "66434806", "setting": "last-3-pick-old-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "45362", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the chef demonstrated how to make noodles .", "storylet_id": "226811"}], [{"original_text": "They all sat down to eat a feast.", "album_id": "1433463", "photo_flickr_id": "66426757", "setting": "last-3-pick-old-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "45362", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they all sat down to eat a feast .", "storylet_id": "226812"}], [{"original_text": "They had their own version of fried crullers.", "album_id": "1433463", "photo_flickr_id": "66428914", "setting": "last-3-pick-old-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "45362", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they had their own version of fried crullers .", "storylet_id": "226813"}], [{"original_text": "The lady poses with two kitchen workers.", "album_id": "1433463", "photo_flickr_id": "66432755", "setting": "last-3-pick-old-and-tell", "worker_id": "9KTUTV4LZY4T62I", "story_id": "45362", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the lady poses with two kitchen workers .", "storylet_id": "226814"}], [{"original_text": "Owner of Asian restaurant was happy to show the place. ", "album_id": "1433463", "photo_flickr_id": "66434408", "setting": "last-3-pick-old-and-tell", "worker_id": "H2C4S5QDMZNMNX9", "story_id": "45363", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "owner of asian restaurant was happy to show the place .", "storylet_id": "226815"}], [{"original_text": "Everybody was very friendly. ", "album_id": "1433463", "photo_flickr_id": "66430861", "setting": "last-3-pick-old-and-tell", "worker_id": "H2C4S5QDMZNMNX9", "story_id": "45363", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everybody was very friendly .", "storylet_id": "226816"}], [{"original_text": "Several people worked on the kitchen.", "album_id": "1433463", "photo_flickr_id": "66429779", "setting": "last-3-pick-old-and-tell", "worker_id": "H2C4S5QDMZNMNX9", "story_id": "45363", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "several people worked on the kitchen .", "storylet_id": "226817"}], [{"original_text": "The food looked delicious. ", "album_id": "1433463", "photo_flickr_id": "66429504", "setting": "last-3-pick-old-and-tell", "worker_id": "H2C4S5QDMZNMNX9", "story_id": "45363", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the food looked delicious .", "storylet_id": "226818"}], [{"original_text": "A cook showed couple tricks. ", "album_id": "1433463", "photo_flickr_id": "66434806", "setting": "last-3-pick-old-and-tell", "worker_id": "H2C4S5QDMZNMNX9", "story_id": "45363", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a cook showed couple tricks .", "storylet_id": "226819"}], [{"original_text": "My friend and I went to the family restaurant today.", "album_id": "1433463", "photo_flickr_id": "66430861", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45364", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend and i went to the family restaurant today .", "storylet_id": "226820"}], [{"original_text": "We showed her how we made Chinese noodles.", "album_id": "1433463", "photo_flickr_id": "66434806", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45364", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we showed her how we made chinese noodles .", "storylet_id": "226821"}], [{"original_text": "Then we got to sit down and see how they tasted.", "album_id": "1433463", "photo_flickr_id": "66426757", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45364", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then we got to sit down and see how they tasted .", "storylet_id": "226822"}], [{"original_text": "The dessert was even more heavenly.", "album_id": "1433463", "photo_flickr_id": "66428914", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45364", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the dessert was even more heavenly .", "storylet_id": "226823"}], [{"original_text": "We had a great day and I think she wants to come back.", "album_id": "1433463", "photo_flickr_id": "66432755", "setting": "last-3-pick-old-and-tell", "worker_id": "AS2MDFCRUS236TU", "story_id": "45364", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great day and i think she wants to come back .", "storylet_id": "226824"}], [{"original_text": "Our class hosted a New Year's Around the World day.", "album_id": "72157611363181075", "photo_flickr_id": "3122009568", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45365", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our class hosted a new year 's around the world day .", "storylet_id": "226825"}], [{"original_text": "We had samples of New Year's items from many countries.", "album_id": "72157611363181075", "photo_flickr_id": "3121202601", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45365", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had samples of new year 's items from many countries .", "storylet_id": "226826"}], [{"original_text": "People came dressed up as representatives of their area.", "album_id": "72157611363181075", "photo_flickr_id": "3121993548", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45365", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people came dressed up as representatives of their area .", "storylet_id": "226827"}], [{"original_text": "Most cultures have some kind of food tied to the New Year.", "album_id": "72157611363181075", "photo_flickr_id": "3121209055", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45365", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "most cultures have some kind of food tied to the new year .", "storylet_id": "226828"}], [{"original_text": "It was an informative and fun day!", "album_id": "72157611363181075", "photo_flickr_id": "3121176889", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45365", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was an informative and fun day !", "storylet_id": "226829"}], [{"original_text": "My friend and I love to travel.", "album_id": "72157611363181075", "photo_flickr_id": "3121171305", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45366", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend and i love to travel .", "storylet_id": "226830"}], [{"original_text": "We've been to most of the countries in Europe.", "album_id": "72157611363181075", "photo_flickr_id": "3121199491", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45366", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we 've been to most of the countries in location .", "storylet_id": "226831"}], [{"original_text": "We've visited both coasts in the states.", "album_id": "72157611363181075", "photo_flickr_id": "3121202601", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45366", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we 've visited both coasts in the states .", "storylet_id": "226832"}], [{"original_text": "I like to bring home souvenirs from places I visit.", "album_id": "72157611363181075", "photo_flickr_id": "3122020264", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45366", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i like to bring home souvenirs from places i visit .", "storylet_id": "226833"}], [{"original_text": "Sometimes I have to sell things to make money for these trips.", "album_id": "72157611363181075", "photo_flickr_id": "3122057372", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45366", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sometimes i have to sell things to make money for these trips .", "storylet_id": "226834"}], [{"original_text": "We brought in food that people have on New Years from other places.", "album_id": "72157611363181075", "photo_flickr_id": "3122009568", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "45367", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we brought in food that people have on new years from other places .", "storylet_id": "226835"}], [{"original_text": "We put a pin on the map for each area we represented. ", "album_id": "72157611363181075", "photo_flickr_id": "3121202601", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "45367", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we put a pin on the map for each area we represented .", "storylet_id": "226836"}], [{"original_text": "People from different cultures spoke about their customs.", "album_id": "72157611363181075", "photo_flickr_id": "3121993548", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "45367", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "people from different cultures spoke about their customs .", "storylet_id": "226837"}], [{"original_text": "We ate different foods from just about everywhere. ", "album_id": "72157611363181075", "photo_flickr_id": "3121209055", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "45367", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we ate different foods from just about everywhere .", "storylet_id": "226838"}], [{"original_text": "It was a fun day for all of us. ", "album_id": "72157611363181075", "photo_flickr_id": "3121176889", "setting": "last-3-pick-old-and-tell", "worker_id": "G98VO1S86Q024MQ", "story_id": "45367", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a fun day for all of us .", "storylet_id": "226839"}], [{"original_text": "The food set up was pretty awesome.", "album_id": "72157611363181075", "photo_flickr_id": "3122009568", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45368", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the food set up was pretty awesome .", "storylet_id": "226840"}], [{"original_text": "The walls had maps of the local area marked on them.", "album_id": "72157611363181075", "photo_flickr_id": "3121202601", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45368", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the walls had maps of the local area marked on them .", "storylet_id": "226841"}], [{"original_text": "The people spoke on there current position.", "album_id": "72157611363181075", "photo_flickr_id": "3121993548", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45368", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the people spoke on there current position .", "storylet_id": "226842"}], [{"original_text": "Then we all ate a bit.", "album_id": "72157611363181075", "photo_flickr_id": "3121209055", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45368", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then we all ate a bit .", "storylet_id": "226843"}], [{"original_text": "All in all it was a productive day.", "album_id": "72157611363181075", "photo_flickr_id": "3121176889", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45368", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all in all it was a productive day .", "storylet_id": "226844"}], [{"original_text": "Celebrating New years around the world.", "album_id": "72157611363181075", "photo_flickr_id": "3122009568", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45369", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "celebrating new years around the world .", "storylet_id": "226845"}], [{"original_text": "The worlds map, and the countries celebrating new year.", "album_id": "72157611363181075", "photo_flickr_id": "3121202601", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45369", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the worlds map , and the countries celebrating new year .", "storylet_id": "226846"}], [{"original_text": "Different cultures performing.", "album_id": "72157611363181075", "photo_flickr_id": "3121993548", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45369", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "different cultures performing .", "storylet_id": "226847"}], [{"original_text": "Different varieties of food.", "album_id": "72157611363181075", "photo_flickr_id": "3121209055", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45369", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "different varieties of food .", "storylet_id": "226848"}], [{"original_text": "Presentation of food and cultures on New years day.", "album_id": "72157611363181075", "photo_flickr_id": "3121176889", "setting": "last-3-pick-old-and-tell", "worker_id": "T9RTAU2DWWM3YX8", "story_id": "45369", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "presentation of food and cultures on new years day .", "storylet_id": "226849"}], [{"original_text": "Everyone gathered for the community meeting.", "album_id": "72157622299140565", "photo_flickr_id": "3940227729", "setting": "first-2-pick-and-tell", "worker_id": "R08BVP5SNLB3Q34", "story_id": "45370", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone gathered for the community meeting .", "storylet_id": "226850"}], [{"original_text": "Things got a bit tense when they discussed a recent crime wave.", "album_id": "72157622299140565", "photo_flickr_id": "3941007238", "setting": "first-2-pick-and-tell", "worker_id": "R08BVP5SNLB3Q34", "story_id": "45370", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "things got a bit tense when they discussed a recent crime wave .", "storylet_id": "226851"}], [{"original_text": "Attendees still managed to keep their sense of humor.", "album_id": "72157622299140565", "photo_flickr_id": "3941007306", "setting": "first-2-pick-and-tell", "worker_id": "R08BVP5SNLB3Q34", "story_id": "45370", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "attendees still managed to keep their sense of humor .", "storylet_id": "226852"}], [{"original_text": "Some people had brought their children. None of the organizer had thought about setting up childcare.", "album_id": "72157622299140565", "photo_flickr_id": "3941007364", "setting": "first-2-pick-and-tell", "worker_id": "R08BVP5SNLB3Q34", "story_id": "45370", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some people had brought their children . none of the organizer had thought about setting up childcare .", "storylet_id": "226853"}], [{"original_text": "Two young people who were racially profiled by police had their say.", "album_id": "72157622299140565", "photo_flickr_id": "3940228109", "setting": "first-2-pick-and-tell", "worker_id": "R08BVP5SNLB3Q34", "story_id": "45370", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "two young people who were racially profiled by police had their say .", "storylet_id": "226854"}], [{"original_text": "I brought my camera with me to the conference.", "album_id": "72157622299140565", "photo_flickr_id": "3940227729", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45371", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i brought my camera with me to the conference .", "storylet_id": "226855"}], [{"original_text": "I love to take pictures of people.", "album_id": "72157622299140565", "photo_flickr_id": "3941007306", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45371", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i love to take pictures of people .", "storylet_id": "226856"}], [{"original_text": "Sometimes I take pictures of complete strangers.", "album_id": "72157622299140565", "photo_flickr_id": "3940228109", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45371", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "sometimes i take pictures of complete strangers .", "storylet_id": "226857"}], [{"original_text": "There is never a shortage of subjects.", "album_id": "72157622299140565", "photo_flickr_id": "3940228227", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45371", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there is never a shortage of subjects .", "storylet_id": "226858"}], [{"original_text": "I really like some of the pictures I end up with.", "album_id": "72157622299140565", "photo_flickr_id": "3941008264", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45371", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i really like some of the pictures i end up with .", "storylet_id": "226859"}], [{"original_text": "The room was full of interested citizens. ", "album_id": "72157622299140565", "photo_flickr_id": "3940227729", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "45372", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the room was full of interested citizens .", "storylet_id": "226860"}], [{"original_text": "The men took a photo for keepsake. ", "album_id": "72157622299140565", "photo_flickr_id": "3941007306", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "45372", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the men took a photo for keepsake .", "storylet_id": "226861"}], [{"original_text": "The brothers were happy to be apart of this movement. ", "album_id": "72157622299140565", "photo_flickr_id": "3940228109", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "45372", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the brothers were happy to be apart of this movement .", "storylet_id": "226862"}], [{"original_text": "Everyone was all smiles, outside. ", "album_id": "72157622299140565", "photo_flickr_id": "3940228227", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "45372", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was all smiles , outside .", "storylet_id": "226863"}], [{"original_text": "Mother and Father attended as well. ", "album_id": "72157622299140565", "photo_flickr_id": "3941008264", "setting": "last-3-pick-old-and-tell", "worker_id": "FXQYPA70P4I6P2A", "story_id": "45372", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mother and father attended as well .", "storylet_id": "226864"}], [{"original_text": "When I got to class there was already a full room.", "album_id": "72157622299140565", "photo_flickr_id": "3940227729", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45373", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i got to class there was already a full room .", "storylet_id": "226865"}], [{"original_text": "I had to search for a seat.", "album_id": "72157622299140565", "photo_flickr_id": "3941007306", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45373", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i had to search for a seat .", "storylet_id": "226866"}], [{"original_text": "I met some new friends there.", "album_id": "72157622299140565", "photo_flickr_id": "3940228109", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45373", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i met some new friends there .", "storylet_id": "226867"}], [{"original_text": "We exchanged contact information.", "album_id": "72157622299140565", "photo_flickr_id": "3940228227", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45373", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we exchanged contact information .", "storylet_id": "226868"}], [{"original_text": "When I got home my parents wanted to hear all about my day.", "album_id": "72157622299140565", "photo_flickr_id": "3941008264", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45373", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "when i got home my parents wanted to hear all about my day .", "storylet_id": "226869"}], [{"original_text": "we got to the town hall meeting early and there were a lot of people", "album_id": "72157622299140565", "photo_flickr_id": "3940227729", "setting": "last-3-pick-old-and-tell", "worker_id": "UMQ0H39B1O5LTA7", "story_id": "45374", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we got to the town hall meeting early and there were a lot of people", "storylet_id": "226870"}], [{"original_text": "here's us watching the introduction", "album_id": "72157622299140565", "photo_flickr_id": "3941007238", "setting": "last-3-pick-old-and-tell", "worker_id": "UMQ0H39B1O5LTA7", "story_id": "45374", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "here 's us watching the introduction", "storylet_id": "226871"}], [{"original_text": "me bondrit during intermission", "album_id": "72157622299140565", "photo_flickr_id": "3941007306", "setting": "last-3-pick-old-and-tell", "worker_id": "UMQ0H39B1O5LTA7", "story_id": "45374", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "me bondrit during intermission", "storylet_id": "226872"}], [{"original_text": "jacob and his son ", "album_id": "72157622299140565", "photo_flickr_id": "3941007364", "setting": "last-3-pick-old-and-tell", "worker_id": "UMQ0H39B1O5LTA7", "story_id": "45374", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "jacob and his son", "storylet_id": "226873"}], [{"original_text": "me and tanner taking a selfie together after the meeting", "album_id": "72157622299140565", "photo_flickr_id": "3940228109", "setting": "last-3-pick-old-and-tell", "worker_id": "UMQ0H39B1O5LTA7", "story_id": "45374", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "me and tanner taking a selfie together after the meeting", "storylet_id": "226874"}], [{"original_text": "The gifts brought to her were exquisite.", "album_id": "72157623116920892", "photo_flickr_id": "4234776675", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45375", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the gifts brought to her were exquisite .", "storylet_id": "226875"}], [{"original_text": "She enjoyed both the gifts and company.", "album_id": "72157623116920892", "photo_flickr_id": "4234888091", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45375", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she enjoyed both the gifts and company .", "storylet_id": "226876"}], [{"original_text": "A few attended the small and private event.", "album_id": "72157623116920892", "photo_flickr_id": "4235638692", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45375", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a few attended the small and private event .", "storylet_id": "226877"}], [{"original_text": "There was plenty of space for everything and everyone.", "album_id": "72157623116920892", "photo_flickr_id": "4235604108", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45375", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was plenty of space for everything and everyone .", "storylet_id": "226878"}], [{"original_text": "They sat on the floor talking and laughing.", "album_id": "72157623116920892", "photo_flickr_id": "4235621130", "setting": "first-2-pick-and-tell", "worker_id": "WESRP029WPKKEKC", "story_id": "45375", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they sat on the floor talking and laughing .", "storylet_id": "226879"}], [{"original_text": "We decided to make everything pretty today.", "album_id": "72157623116920892", "photo_flickr_id": "4234761943", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45376", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we decided to make everything pretty today .", "storylet_id": "226880"}], [{"original_text": "Everything had to sparkle and be really nice.", "album_id": "72157623116920892", "photo_flickr_id": "4235543554", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45376", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everything had to sparkle and be really nice .", "storylet_id": "226881"}], [{"original_text": "I decorated all day really hard to make everything look so nice.", "album_id": "72157623116920892", "photo_flickr_id": "4234776675", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45376", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i decorated all day really hard to make everything look so nice .", "storylet_id": "226882"}], [{"original_text": "I wanted more blue which was the theme.", "album_id": "72157623116920892", "photo_flickr_id": "4235558990", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45376", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i wanted more blue which was the theme .", "storylet_id": "226883"}], [{"original_text": "Here i am getting ready for the store to open soon.", "album_id": "72157623116920892", "photo_flickr_id": "4235670416", "setting": "first-2-pick-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45376", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here i am getting ready for the store to open soon .", "storylet_id": "226884"}], [{"original_text": "While visiting another country we ran into this group of people.", "album_id": "72157623116920892", "photo_flickr_id": "4234776675", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "45377", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "while visiting another country we ran into this group of people .", "storylet_id": "226885"}], [{"original_text": "They were very kind to us.", "album_id": "72157623116920892", "photo_flickr_id": "4234888091", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "45377", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were very kind to us .", "storylet_id": "226886"}], [{"original_text": "We tried to understand the best we could the way they did things.", "album_id": "72157623116920892", "photo_flickr_id": "4235638692", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "45377", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we tried to understand the best we could the way they did things .", "storylet_id": "226887"}], [{"original_text": "It was interesting to watch them and try to understand their meeting.", "album_id": "72157623116920892", "photo_flickr_id": "4235604108", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "45377", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was interesting to watch them and try to understand their meeting .", "storylet_id": "226888"}], [{"original_text": "They all sat on the floor and talked about things. Many of them had very colorful things that they had made.", "album_id": "72157623116920892", "photo_flickr_id": "4235621130", "setting": "last-3-pick-old-and-tell", "worker_id": "6ZCH774UB5G9FYA", "story_id": "45377", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all sat on the floor and talked about things . many of them had very colorful things that they had made .", "storylet_id": "226889"}], [{"original_text": "Many beautiful gifts were brought to the party.", "album_id": "72157623116920892", "photo_flickr_id": "4234776675", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "45378", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "many beautiful gifts were brought to the party .", "storylet_id": "226890"}], [{"original_text": "The lovely woman was happy to receive so many nice things.", "album_id": "72157623116920892", "photo_flickr_id": "4234888091", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "45378", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the lovely woman was happy to receive so many nice things .", "storylet_id": "226891"}], [{"original_text": "Her family was supportive, as well.", "album_id": "72157623116920892", "photo_flickr_id": "4235638692", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "45378", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her family was supportive , as well .", "storylet_id": "226892"}], [{"original_text": "A small feast was held at the party.", "album_id": "72157623116920892", "photo_flickr_id": "4235604108", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "45378", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a small feast was held at the party .", "storylet_id": "226893"}], [{"original_text": "The family had a lovely night celebrating with the young lady.", "album_id": "72157623116920892", "photo_flickr_id": "4235621130", "setting": "last-3-pick-old-and-tell", "worker_id": "PD7UNK50EOA6519", "story_id": "45378", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the family had a lovely night celebrating with the young lady .", "storylet_id": "226894"}], [{"original_text": "It was a birthday celebration for a girl in Indonesia. She received many presents such as this flower. ", "album_id": "72157623116920892", "photo_flickr_id": "4234776675", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45379", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a birthday celebration for a girl in location . she received many presents such as this flower .", "storylet_id": "226895"}], [{"original_text": "She had a smile on her face the entire time because she received so many presents. ", "album_id": "72157623116920892", "photo_flickr_id": "4234888091", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45379", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she had a smile on her face the entire time because she received so many presents .", "storylet_id": "226896"}], [{"original_text": "Her mom was proud of her because of her recent accomplishments in school. ", "album_id": "72157623116920892", "photo_flickr_id": "4235638692", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45379", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her mom was proud of her because of her recent accomplishments in school .", "storylet_id": "226897"}], [{"original_text": "The entire family gathered around to open gifts. ", "album_id": "72157623116920892", "photo_flickr_id": "4235604108", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45379", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the entire family gathered around to open gifts .", "storylet_id": "226898"}], [{"original_text": "They had a great time at this social gathering. ", "album_id": "72157623116920892", "photo_flickr_id": "4235621130", "setting": "last-3-pick-old-and-tell", "worker_id": "HRMM717DEC2QL2X", "story_id": "45379", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had a great time at this social gathering .", "storylet_id": "226899"}], [{"original_text": "Jack and Barbra had gone to take some couples photos in a historic park. ", "album_id": "72157608607868619", "photo_flickr_id": "2997301851", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "45380", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and barbra had gone to take some couples photos in a historic park .", "storylet_id": "226900"}], [{"original_text": "Once they saw the results they decided this is where they would wed. ", "album_id": "72157608607868619", "photo_flickr_id": "2997191703", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "45380", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "once they saw the results they decided this is where they would wed .", "storylet_id": "226901"}], [{"original_text": "After clearing the covered entrance way with the bridesmaids Barbra crossed the stone bridge. ", "album_id": "72157608607868619", "photo_flickr_id": "2997192575", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "45380", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after clearing the covered entrance way with the bridesmaids barbra crossed the stone bridge .", "storylet_id": "226902"}], [{"original_text": "Koi fish swim in the water below. ", "album_id": "72157608607868619", "photo_flickr_id": "2997301449", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "45380", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "organization fish swim in the water below .", "storylet_id": "226903"}], [{"original_text": "This was the view for the guests as they got married. ", "album_id": "72157608607868619", "photo_flickr_id": "2997192945", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "45380", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was the view for the guests as they got married .", "storylet_id": "226904"}], [{"original_text": "The bride took a walk on the nature trial before her wedding.", "album_id": "72157608607868619", "photo_flickr_id": "2997192575", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "45381", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride took a walk on the nature trial before her wedding .", "storylet_id": "226905"}], [{"original_text": "She needed some time by herself to relax.", "album_id": "72157608607868619", "photo_flickr_id": "3001639104", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "45381", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she needed some time by herself to relax .", "storylet_id": "226906"}], [{"original_text": "She saw all kinds of plants and trees.", "album_id": "72157608607868619", "photo_flickr_id": "2998036488", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "45381", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she saw all kinds of plants and trees .", "storylet_id": "226907"}], [{"original_text": "A small train model was set up on display.", "album_id": "72157608607868619", "photo_flickr_id": "2997239151", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "45381", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a small train model was set up on display .", "storylet_id": "226908"}], [{"original_text": "The leaves had started to change.", "album_id": "72157608607868619", "photo_flickr_id": "2997239519", "setting": "first-2-pick-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "45381", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the leaves had started to change .", "storylet_id": "226909"}], [{"original_text": "I had a great time at the wedding last year.", "album_id": "72157608607868619", "photo_flickr_id": "2997192575", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45382", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the wedding last year .", "storylet_id": "226910"}], [{"original_text": "The location they chose was beautiful.", "album_id": "72157608607868619", "photo_flickr_id": "3001639104", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45382", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the location they chose was beautiful .", "storylet_id": "226911"}], [{"original_text": "The weather was very good.", "album_id": "72157608607868619", "photo_flickr_id": "2998036488", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45382", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the weather was very good .", "storylet_id": "226912"}], [{"original_text": "There was also a train going around the property.", "album_id": "72157608607868619", "photo_flickr_id": "2997239151", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45382", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there was also a train going around the property .", "storylet_id": "226913"}], [{"original_text": "I love this time of the year.", "album_id": "72157608607868619", "photo_flickr_id": "2997239519", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45382", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i love this time of the year .", "storylet_id": "226914"}], [{"original_text": "The bride was glad to have an outdoor wedding, but her bridesmaids were nervous about the bridge.", "album_id": "72157608607868619", "photo_flickr_id": "2997192575", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "45383", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride was glad to have an outdoor wedding , but her bridesmaids were nervous about the bridge .", "storylet_id": "226915"}], [{"original_text": "The view was spectacular, however, and the bride knew this would make the day memorable forever.", "album_id": "72157608607868619", "photo_flickr_id": "3001639104", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "45383", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the view was spectacular , however , and the bride knew this would make the day memorable forever .", "storylet_id": "226916"}], [{"original_text": "She especially liked how the small creek burbled and splashed as it flowed across the rocks.", "album_id": "72157608607868619", "photo_flickr_id": "2998036488", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "45383", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she especially liked how the small creek burbled and splashed as it flowed across the rocks .", "storylet_id": "226917"}], [{"original_text": "She did home that the train on the trestle didn't blow a horn and interrupt her wedding.", "album_id": "72157608607868619", "photo_flickr_id": "2997239151", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "45383", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she did home that the train on the trestle did n't blow a horn and interrupt her wedding .", "storylet_id": "226918"}], [{"original_text": "She also liked that some of the trees had leaves that turned to beautiful red colors. It was almost autumn, but still warm and beautiful outside.", "album_id": "72157608607868619", "photo_flickr_id": "2997239519", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "45383", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she also liked that some of the trees had leaves that turned to beautiful red colors . it was almost autumn , but still warm and beautiful outside .", "storylet_id": "226919"}], [{"original_text": "The wedding starts in the mountains.", "album_id": "72157608607868619", "photo_flickr_id": "2997301851", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45384", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the wedding starts in the mountains .", "storylet_id": "226920"}], [{"original_text": "The chapel is a huge wooden building.", "album_id": "72157608607868619", "photo_flickr_id": "2997191703", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45384", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the chapel is a huge wooden building .", "storylet_id": "226921"}], [{"original_text": "The wedding is on a bridge", "album_id": "72157608607868619", "photo_flickr_id": "2997192575", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45384", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the wedding is on a bridge", "storylet_id": "226922"}], [{"original_text": "They watch the fish on the bridge", "album_id": "72157608607868619", "photo_flickr_id": "2997301449", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45384", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they watch the fish on the bridge", "storylet_id": "226923"}], [{"original_text": "they look at the beautiful rocks after ", "album_id": "72157608607868619", "photo_flickr_id": "2997192945", "setting": "last-3-pick-old-and-tell", "worker_id": "SSTUP7HXQ3FDJOK", "story_id": "45384", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they look at the beautiful rocks after", "storylet_id": "226924"}], [{"original_text": "This is two of my sisters, Tina and Kate.", "album_id": "72157610754478453", "photo_flickr_id": "3087838812", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45385", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this is two of my sisters , [female] and [female] .", "storylet_id": "226925"}], [{"original_text": "Tina got married last month.", "album_id": "72157610754478453", "photo_flickr_id": "3087842364", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45385", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] got married last month .", "storylet_id": "226926"}], [{"original_text": "All of my sisters were at the wedding.", "album_id": "72157610754478453", "photo_flickr_id": "3087003913", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45385", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of my sisters were at the wedding .", "storylet_id": "226927"}], [{"original_text": "Karen cut the wedding cake.", "album_id": "72157610754478453", "photo_flickr_id": "3087014765", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45385", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] cut the wedding cake .", "storylet_id": "226928"}], [{"original_text": "They had fun force feeding the groom wedding cake.", "album_id": "72157610754478453", "photo_flickr_id": "3087847844", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45385", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they had fun force feeding the groom wedding cake .", "storylet_id": "226929"}], [{"original_text": "Celebrating with all of our friends. ", "album_id": "72157610754478453", "photo_flickr_id": "3086999017", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45386", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "celebrating with all of our friends .", "storylet_id": "226930"}], [{"original_text": "Her best friend even came.", "album_id": "72157610754478453", "photo_flickr_id": "3087838812", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45386", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her best friend even came .", "storylet_id": "226931"}], [{"original_text": "This is the crew right here.", "album_id": "72157610754478453", "photo_flickr_id": "3087865592", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45386", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is the crew right here .", "storylet_id": "226932"}], [{"original_text": "Everyone was in great spirits.", "album_id": "72157610754478453", "photo_flickr_id": "3087041175", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45386", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "everyone was in great spirits .", "storylet_id": "226933"}], [{"original_text": "The happy couple enjoying their engagement.", "album_id": "72157610754478453", "photo_flickr_id": "3087888270", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45386", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the happy couple enjoying their engagement .", "storylet_id": "226934"}], [{"original_text": "I arrived to the party not knowing what to expect.", "album_id": "72157610754478453", "photo_flickr_id": "3086999017", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "45387", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i arrived to the party not knowing what to expect .", "storylet_id": "226935"}], [{"original_text": "My friends were there to keep me company.", "album_id": "72157610754478453", "photo_flickr_id": "3087838812", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "45387", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my friends were there to keep me company .", "storylet_id": "226936"}], [{"original_text": "We partied all through the night.", "album_id": "72157610754478453", "photo_flickr_id": "3087865592", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "45387", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we partied all through the night .", "storylet_id": "226937"}], [{"original_text": "We also met some new people.", "album_id": "72157610754478453", "photo_flickr_id": "3087041175", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "45387", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also met some new people .", "storylet_id": "226938"}], [{"original_text": "They were all so nice to us.", "album_id": "72157610754478453", "photo_flickr_id": "3087888270", "setting": "last-3-pick-old-and-tell", "worker_id": "TSE7A3JTI0N0NKX", "story_id": "45387", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they were all so nice to us .", "storylet_id": "226939"}], [{"original_text": "I had a great time at the bar last weekend.", "album_id": "72157610754478453", "photo_flickr_id": "3086999017", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45388", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had a great time at the bar last weekend .", "storylet_id": "226940"}], [{"original_text": "There were a lot of new people there.", "album_id": "72157610754478453", "photo_flickr_id": "3087838812", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45388", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of new people there .", "storylet_id": "226941"}], [{"original_text": "I had a great time chatting with them.", "album_id": "72157610754478453", "photo_flickr_id": "3087865592", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45388", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i had a great time chatting with them .", "storylet_id": "226942"}], [{"original_text": " I made a lot of new friends.", "album_id": "72157610754478453", "photo_flickr_id": "3087041175", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45388", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i made a lot of new friends .", "storylet_id": "226943"}], [{"original_text": "I hope we get to go back tomorrow.", "album_id": "72157610754478453", "photo_flickr_id": "3087888270", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45388", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i hope we get to go back tomorrow .", "storylet_id": "226944"}], [{"original_text": "Friends out for a great evening.", "album_id": "72157610754478453", "photo_flickr_id": "3087838812", "setting": "last-3-pick-old-and-tell", "worker_id": "50HQBMQNAH04S2B", "story_id": "45389", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends out for a great evening .", "storylet_id": "226945"}], [{"original_text": "Funny faces for the camera make the memories last a lifetime.", "album_id": "72157610754478453", "photo_flickr_id": "3087842364", "setting": "last-3-pick-old-and-tell", "worker_id": "50HQBMQNAH04S2B", "story_id": "45389", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "funny faces for the camera make the memories last a lifetime .", "storylet_id": "226946"}], [{"original_text": "Beautiful smiles with some beautiful friends.", "album_id": "72157610754478453", "photo_flickr_id": "3087003913", "setting": "last-3-pick-old-and-tell", "worker_id": "50HQBMQNAH04S2B", "story_id": "45389", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "beautiful smiles with some beautiful friends .", "storylet_id": "226947"}], [{"original_text": "Someone has cake or murder on her brain, you decide.", "album_id": "72157610754478453", "photo_flickr_id": "3087014765", "setting": "last-3-pick-old-and-tell", "worker_id": "50HQBMQNAH04S2B", "story_id": "45389", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someone has cake or murder on her brain , you decide .", "storylet_id": "226948"}], [{"original_text": "No one has ever said too much cake is a bad thing.", "album_id": "72157610754478453", "photo_flickr_id": "3087847844", "setting": "last-3-pick-old-and-tell", "worker_id": "50HQBMQNAH04S2B", "story_id": "45389", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "no one has ever said too much cake is a bad thing .", "storylet_id": "226949"}], [{"original_text": "The couple took several great shots.", "album_id": "72157605584003494", "photo_flickr_id": "2574367357", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45390", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple took several great shots .", "storylet_id": "226950"}], [{"original_text": "They lined up together in happiness and joy.", "album_id": "72157605584003494", "photo_flickr_id": "2575191192", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45390", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they lined up together in happiness and joy .", "storylet_id": "226951"}], [{"original_text": "Then they became very sensual and hot.", "album_id": "72157605584003494", "photo_flickr_id": "2574368319", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45390", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then they became very sensual and hot .", "storylet_id": "226952"}], [{"original_text": "I told them a photo with the children was a must!", "album_id": "72157605584003494", "photo_flickr_id": "2575191996", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45390", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i told them a photo with the children was a must !", "storylet_id": "226953"}], [{"original_text": "We all went to see a movie afterwords. ", "album_id": "72157605584003494", "photo_flickr_id": "2575192514", "setting": "first-2-pick-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45390", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all went to see a movie afterwords .", "storylet_id": "226954"}], [{"original_text": "On our day off we decided to go for an nice bike ride.", "album_id": "72157605584003494", "photo_flickr_id": "2575191434", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45391", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our day off we decided to go for an nice bike ride .", "storylet_id": "226955"}], [{"original_text": "The landscape around the area we were riding in was awesome to see.", "album_id": "72157605584003494", "photo_flickr_id": "2574367229", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45391", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the landscape around the area we were riding in was awesome to see .", "storylet_id": "226956"}], [{"original_text": "I always ride with my sunglasses and helmet on for safety.", "album_id": "72157605584003494", "photo_flickr_id": "2574367357", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45391", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i always ride with my sunglasses and helmet on for safety .", "storylet_id": "226957"}], [{"original_text": "My boyfriend and I had such a romantic time on the sunny day.", "album_id": "72157605584003494", "photo_flickr_id": "2575191192", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45391", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my boyfriend and i had such a romantic time on the sunny day .", "storylet_id": "226958"}], [{"original_text": "As we neared closer to the end of the ride we could see our house in the distance.", "album_id": "72157605584003494", "photo_flickr_id": "2574368145", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45391", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "as we neared closer to the end of the ride we could see our house in the distance .", "storylet_id": "226959"}], [{"original_text": "When I was visiting my dad, he dragged out his old wedding pictures.", "album_id": "72157605584003494", "photo_flickr_id": "2574367357", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "45392", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i was visiting my dad , he dragged out his old wedding pictures .", "storylet_id": "226960"}], [{"original_text": "There were pictures of him and my mom when they were young.", "album_id": "72157605584003494", "photo_flickr_id": "2575191192", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "45392", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were pictures of him and my mom when they were young .", "storylet_id": "226961"}], [{"original_text": "They looked so in love.", "album_id": "72157605584003494", "photo_flickr_id": "2574368319", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "45392", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they looked so in love .", "storylet_id": "226962"}], [{"original_text": "He also had pictures of us when we were a young family.", "album_id": "72157605584003494", "photo_flickr_id": "2575191996", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "45392", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he also had pictures of us when we were a young family .", "storylet_id": "226963"}], [{"original_text": "In the pictures, mom and dad look so happy.", "album_id": "72157605584003494", "photo_flickr_id": "2575192514", "setting": "last-3-pick-old-and-tell", "worker_id": "N6PBCESCSKXBKGQ", "story_id": "45392", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in the pictures , mom and dad look so happy .", "storylet_id": "226964"}], [{"original_text": "When I finally finished getting dressed there were a lot of photographers waiting for me downstairs.", "album_id": "72157605584003494", "photo_flickr_id": "2575191434", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45393", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i finally finished getting dressed there were a lot of photographers waiting for me downstairs .", "storylet_id": "226965"}], [{"original_text": "They took so many pictures of us.", "album_id": "72157605584003494", "photo_flickr_id": "2574367229", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45393", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they took so many pictures of us .", "storylet_id": "226966"}], [{"original_text": "We went to many different places for pictures.", "album_id": "72157605584003494", "photo_flickr_id": "2574367357", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45393", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we went to many different places for pictures .", "storylet_id": "226967"}], [{"original_text": "Some of them were very old.", "album_id": "72157605584003494", "photo_flickr_id": "2575191192", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45393", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of them were very old .", "storylet_id": "226968"}], [{"original_text": "I had a great time.", "album_id": "72157605584003494", "photo_flickr_id": "2574368145", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45393", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i had a great time .", "storylet_id": "226969"}], [{"original_text": "This photo of my wedding dress, leaves me speechless. ", "album_id": "72157605584003494", "photo_flickr_id": "2575191434", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "45394", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this photo of my wedding dress , leaves me speechless .", "storylet_id": "226970"}], [{"original_text": "This photo of my husband and I is so unique and special. ", "album_id": "72157605584003494", "photo_flickr_id": "2574367229", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "45394", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this photo of my husband and i is so unique and special .", "storylet_id": "226971"}], [{"original_text": "It looks like we are in a magical city as we experience this magical moment. ", "album_id": "72157605584003494", "photo_flickr_id": "2574367357", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "45394", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it looks like we are in a magical city as we experience this magical moment .", "storylet_id": "226972"}], [{"original_text": "My husband wanted me to break out in dance, and the photographer took the photo. ", "album_id": "72157605584003494", "photo_flickr_id": "2575191192", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "45394", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my husband wanted me to break out in dance , and the photographer took the photo .", "storylet_id": "226973"}], [{"original_text": "The moment I am getting ready to walk down the aisle. ", "album_id": "72157605584003494", "photo_flickr_id": "2574368145", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "45394", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the moment i am getting ready to walk down the aisle .", "storylet_id": "226974"}], [{"original_text": "The speaker started to show his slides. ", "album_id": "72157607260816188", "photo_flickr_id": "2853135142", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45395", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the speaker started to show his slides .", "storylet_id": "226975"}], [{"original_text": "The first slide had an intro to his main points. ", "album_id": "72157607260816188", "photo_flickr_id": "2852301007", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45395", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first slide had an intro to his main points .", "storylet_id": "226976"}], [{"original_text": "They had made a very unprofessional schedule of the day.", "album_id": "72157607260816188", "photo_flickr_id": "2852402171", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45395", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had made a very unprofessional schedule of the day .", "storylet_id": "226977"}], [{"original_text": "The workers were sitting in the back just in case they needed help.", "album_id": "72157607260816188", "photo_flickr_id": "2852381963", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45395", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the workers were sitting in the back just in case they needed help .", "storylet_id": "226978"}], [{"original_text": "He had some fun activities set up.", "album_id": "72157607260816188", "photo_flickr_id": "2852470399", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45395", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he had some fun activities set up .", "storylet_id": "226979"}], [{"original_text": "The meeting had been running late.", "album_id": "72157607260816188", "photo_flickr_id": "2853135142", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45396", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the meeting had been running late .", "storylet_id": "226980"}], [{"original_text": "So we decided to wrap it up and take notes to continue tomorrow.", "album_id": "72157607260816188", "photo_flickr_id": "2852402171", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45396", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so we decided to wrap it up and take notes to continue tomorrow .", "storylet_id": "226981"}], [{"original_text": "Afterwards we were all starving and decided to get something to eat.", "album_id": "72157607260816188", "photo_flickr_id": "2855754140", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45396", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards we were all starving and decided to get something to eat .", "storylet_id": "226982"}], [{"original_text": "We were told to take a number.", "album_id": "72157607260816188", "photo_flickr_id": "2854922045", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45396", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were told to take a number .", "storylet_id": "226983"}], [{"original_text": "Then we decided to wait outside until our food was ready.", "album_id": "72157607260816188", "photo_flickr_id": "2854923965", "setting": "first-2-pick-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45396", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "then we decided to wait outside until our food was ready .", "storylet_id": "226984"}], [{"original_text": "The group wasn't sure what to think of the presentation.", "album_id": "72157607260816188", "photo_flickr_id": "2853135142", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "45397", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group was n't sure what to think of the presentation .", "storylet_id": "226985"}], [{"original_text": "The letters on the screen were so pink that it was hard to read them.", "album_id": "72157607260816188", "photo_flickr_id": "2852301007", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "45397", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the letters on the screen were so pink that it was hard to read them .", "storylet_id": "226986"}], [{"original_text": "They were supposed to sign up for different courses on the yellow sticky notes.", "album_id": "72157607260816188", "photo_flickr_id": "2852402171", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "45397", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were supposed to sign up for different courses on the yellow sticky notes .", "storylet_id": "226987"}], [{"original_text": "She sat alone, wondering whether anyone was going to come to her class at all.", "album_id": "72157607260816188", "photo_flickr_id": "2852381963", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "45397", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she sat alone , wondering whether anyone was going to come to her class at all .", "storylet_id": "226988"}], [{"original_text": "The ducky presentation was by far the most popular of the day.", "album_id": "72157607260816188", "photo_flickr_id": "2852470399", "setting": "last-3-pick-old-and-tell", "worker_id": "6YU80Q4EJPMIZ4F", "story_id": "45397", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the ducky presentation was by far the most popular of the day .", "storylet_id": "226989"}], [{"original_text": "I'm not a huge fan of team-building meetings so I wasn't too thrilled to see the rooms blocked off and a speaker when I came into work this morning. ", "album_id": "72157607260816188", "photo_flickr_id": "2853135142", "setting": "last-3-pick-old-and-tell", "worker_id": "RAVG112U8YW7M3O", "story_id": "45398", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 'm not a huge fan of team-building meetings so i was n't too thrilled to see the rooms blocked off and a speaker when i came into work this morning .", "storylet_id": "226990"}], [{"original_text": "And then the speaker started with a power point about being inclusive and I was just waiting for words like \"synergy\" and \"think outside the box.\"", "album_id": "72157607260816188", "photo_flickr_id": "2852301007", "setting": "last-3-pick-old-and-tell", "worker_id": "RAVG112U8YW7M3O", "story_id": "45398", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "and then the speaker started with a power point about being inclusive and i was just waiting for words like `` synergy '' and `` think outside the box . ''", "storylet_id": "226991"}], [{"original_text": "And, of course, we had to break into small groups to come up with ideas which is always awkward for me as I tend to be introverted. ", "album_id": "72157607260816188", "photo_flickr_id": "2852402171", "setting": "last-3-pick-old-and-tell", "worker_id": "RAVG112U8YW7M3O", "story_id": "45398", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "and , of course , we had to break into small groups to come up with ideas which is always awkward for me as i tend to be introverted .", "storylet_id": "226992"}], [{"original_text": "But I did enjoy the smaller session later in the day and the use of the wall as a projector. ", "album_id": "72157607260816188", "photo_flickr_id": "2852381963", "setting": "last-3-pick-old-and-tell", "worker_id": "RAVG112U8YW7M3O", "story_id": "45398", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but i did enjoy the smaller session later in the day and the use of the wall as a projector .", "storylet_id": "226993"}], [{"original_text": "I ended up having a good day because how can you not like an exercise that has you visually represent a classic saying!", "album_id": "72157607260816188", "photo_flickr_id": "2852470399", "setting": "last-3-pick-old-and-tell", "worker_id": "RAVG112U8YW7M3O", "story_id": "45398", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i ended up having a good day because how can you not like an exercise that has you visually represent a classic saying !", "storylet_id": "226994"}], [{"original_text": "This man was talking about something but we paid no attention.", "album_id": "72157607260816188", "photo_flickr_id": "2853135142", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "45399", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this man was talking about something but we paid no attention .", "storylet_id": "226995"}], [{"original_text": "What a waste of post its.", "album_id": "72157607260816188", "photo_flickr_id": "2852402171", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "45399", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "what a waste of post its .", "storylet_id": "226996"}], [{"original_text": "We got diarrhea after eating here.", "album_id": "72157607260816188", "photo_flickr_id": "2855754140", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "45399", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we got diarrhea after eating here .", "storylet_id": "226997"}], [{"original_text": "My number was 27 which is not my lucky number.", "album_id": "72157607260816188", "photo_flickr_id": "2854922045", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "45399", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my number was 27 which is not my lucky number .", "storylet_id": "226998"}], [{"original_text": "Orientation of this photo was wrong, blame alcohol.", "album_id": "72157607260816188", "photo_flickr_id": "2854923965", "setting": "last-3-pick-old-and-tell", "worker_id": "PY96TJ7P4Q8C7F4", "story_id": "45399", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "orientation of this photo was wrong , blame alcohol .", "storylet_id": "226999"}], [{"original_text": "Uncle Bill had no idea that we had planned a surprise party.", "album_id": "72157600688151685", "photo_flickr_id": "741734452", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "45400", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "uncle [male] had no idea that we had planned a surprise party .", "storylet_id": "227000"}], [{"original_text": "Aunt Lisa found a bunch of pictures of him as a boy and put them up all over.", "album_id": "72157600688151685", "photo_flickr_id": "741734818", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "45400", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "aunt [female] found a bunch of pictures of him as a boy and put them up all over .", "storylet_id": "227001"}], [{"original_text": "He has always been the proverbial, \"crazy uncle\".", "album_id": "72157600688151685", "photo_flickr_id": "741735004", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "45400", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he has always been the proverbial , `` crazy uncle '' .", "storylet_id": "227002"}], [{"original_text": "Not even dad is safe from Bill's shenanagins.", "album_id": "72157600688151685", "photo_flickr_id": "740871297", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "45400", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "not even dad is safe from [male] 's shenanagins .", "storylet_id": "227003"}], [{"original_text": "I think he had a great day of family, memories and fun.", "album_id": "72157600688151685", "photo_flickr_id": "740871531", "setting": "first-2-pick-and-tell", "worker_id": "TDTBSC09PHDKOAB", "story_id": "45400", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think he had a great day of family , memories and fun .", "storylet_id": "227004"}], [{"original_text": "Hey there, filbert. How do you like my short jean shorts?", "album_id": "72157600688151685", "photo_flickr_id": "740870575", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45401", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "hey there , filbert . how do you like my short jean shorts ?", "storylet_id": "227005"}], [{"original_text": "Just me and my Lilli.", "album_id": "72157600688151685", "photo_flickr_id": "741735004", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45401", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "just me and my lilli .", "storylet_id": "227006"}], [{"original_text": "Oh yeah, go UK horseshoe team!", "album_id": "72157600688151685", "photo_flickr_id": "741735094", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45401", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "oh yeah , go location horseshoe team !", "storylet_id": "227007"}], [{"original_text": "Hey, say cheese.", "album_id": "72157600688151685", "photo_flickr_id": "740871297", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45401", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "hey , say cheese .", "storylet_id": "227008"}], [{"original_text": "What's this? A speeding ticket? Haha, good luck with that.", "album_id": "72157600688151685", "photo_flickr_id": "741735694", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45401", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "what 's this ? a speeding ticket ? haha , good luck with that .", "storylet_id": "227009"}], [{"original_text": "Before leaving for our trip to the lake the family poses in a yearly tradition.", "album_id": "72157600688151685", "photo_flickr_id": "741734452", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "45402", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "before leaving for our trip to the lake the family poses in a yearly tradition .", "storylet_id": "227010"}], [{"original_text": "Of course, we remember Timmy who we miss very much.", "album_id": "72157600688151685", "photo_flickr_id": "741734818", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "45402", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "of course , we remember [male] who we miss very much .", "storylet_id": "227011"}], [{"original_text": "Larry loves to play with his kids wh are getting big fast.", "album_id": "72157600688151685", "photo_flickr_id": "741735004", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "45402", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] loves to play with his kids wh are getting big fast .", "storylet_id": "227012"}], [{"original_text": "Always the jokester, Larry gives ears to his brother.", "album_id": "72157600688151685", "photo_flickr_id": "740871297", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "45402", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "always the jokester , [male] gives ears to his brother .", "storylet_id": "227013"}], [{"original_text": "We had to tell Larry not to drive after drinking.", "album_id": "72157600688151685", "photo_flickr_id": "740871531", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "45402", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had to tell [male] not to drive after drinking .", "storylet_id": "227014"}], [{"original_text": "I went to visit my family last week.", "album_id": "72157600688151685", "photo_flickr_id": "741734452", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45403", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to visit my family last week .", "storylet_id": "227015"}], [{"original_text": "I was very happy to see my relatives again.", "album_id": "72157600688151685", "photo_flickr_id": "741734818", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45403", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i was very happy to see my relatives again .", "storylet_id": "227016"}], [{"original_text": "They were all excited to see us too.", "album_id": "72157600688151685", "photo_flickr_id": "741735004", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45403", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were all excited to see us too .", "storylet_id": "227017"}], [{"original_text": "We had a great time hanging out together.", "album_id": "72157600688151685", "photo_flickr_id": "740871297", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45403", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a great time hanging out together .", "storylet_id": "227018"}], [{"original_text": "Afterward we all went to the park with the children.", "album_id": "72157600688151685", "photo_flickr_id": "740871531", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45403", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward we all went to the park with the children .", "storylet_id": "227019"}], [{"original_text": "It was the first time the family had all been to church since the death of the youngest son. ", "album_id": "72157600688151685", "photo_flickr_id": "741734452", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45404", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the first time the family had all been to church since the death of the youngest son .", "storylet_id": "227020"}], [{"original_text": "The mother kept his picture in her wallet. ", "album_id": "72157600688151685", "photo_flickr_id": "741734818", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45404", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the mother kept his picture in her wallet .", "storylet_id": "227021"}], [{"original_text": "The oldest daughter teased her father that he use to look like a pirate. ", "album_id": "72157600688151685", "photo_flickr_id": "741735004", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45404", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the oldest daughter teased her father that he use to look like a pirate .", "storylet_id": "227022"}], [{"original_text": "For proof, she got out the old photo album and everyone agreed. ", "album_id": "72157600688151685", "photo_flickr_id": "740871297", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45404", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "for proof , she got out the old photo album and everyone agreed .", "storylet_id": "227023"}], [{"original_text": "Indeed, he did look very much like a pirate when the children were young. ", "album_id": "72157600688151685", "photo_flickr_id": "740871531", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45404", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "indeed , he did look very much like a pirate when the children were young .", "storylet_id": "227024"}], [{"original_text": "I call this picture \"from the outside looking in\" because that is how I feel now after all has happened in my life.", "album_id": "72157608062240202", "photo_flickr_id": "2945998744", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "45405", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i call this picture `` from the outside looking in '' because that is how i feel now after all has happened in my life .", "storylet_id": "227025"}], [{"original_text": "This is how things used to be when she was with me and every day was almost like Christmas.", "album_id": "72157608062240202", "photo_flickr_id": "2945997806", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "45405", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this is how things used to be when she was with me and every day was almost like christmas .", "storylet_id": "227026"}], [{"original_text": "We posed for many pictures and here is one where I was very happy sporting my used to be favorite hat.", "album_id": "72157608062240202", "photo_flickr_id": "2945992012", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "45405", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we posed for many pictures and here is one where i was very happy sporting my used to be favorite hat .", "storylet_id": "227027"}], [{"original_text": "Still another photo shows maybe what was really going on that I could not see because we are not really touching in this picture.", "album_id": "72157608062240202", "photo_flickr_id": "2945996068", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "45405", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "still another photo shows maybe what was really going on that i could not see because we are not really touching in this picture .", "storylet_id": "227028"}], [{"original_text": "One day all the lights went out in my life and I lost her and she never even say goodbye or why, leaving me to guess in retrospect for the rest of my life while I recover if possible.", "album_id": "72157608062240202", "photo_flickr_id": "2945985746", "setting": "first-2-pick-and-tell", "worker_id": "PTA8DLMT641Y7BT", "story_id": "45405", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one day all the lights went out in my life and i lost her and she never even say goodbye or why , leaving me to guess in retrospect for the rest of my life while i recover if possible .", "storylet_id": "227029"}], [{"original_text": "We took photos of us as a couple at the local library.,", "album_id": "72157608062240202", "photo_flickr_id": "2945120325", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "45406", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took photos of us as a couple at the local library. ,", "storylet_id": "227030"}], [{"original_text": "This monument was a perfect place to take photos around sunset.", "album_id": "72157608062240202", "photo_flickr_id": "2945985746", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "45406", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this monument was a perfect place to take photos around sunset .", "storylet_id": "227031"}], [{"original_text": "Don't we look amazing? Jeff looked great in his black cardigan.", "album_id": "72157608062240202", "photo_flickr_id": "2945126909", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "45406", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "do n't we look amazing ? [male] looked great in his black cardigan .", "storylet_id": "227032"}], [{"original_text": "This was the best photo of the evening. My glasses look a little out of place though.", "album_id": "72157608062240202", "photo_flickr_id": "2945130203", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "45406", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this was the best photo of the evening . my glasses look a little out of place though .", "storylet_id": "227033"}], [{"original_text": "I just couldn't help but take photos of these amazing flowers.", "album_id": "72157608062240202", "photo_flickr_id": "2945997806", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "45406", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i just could n't help but take photos of these amazing flowers .", "storylet_id": "227034"}], [{"original_text": "the husband is a band director who decided to take a vacation.", "album_id": "72157608062240202", "photo_flickr_id": "2945998744", "setting": "last-3-pick-old-and-tell", "worker_id": "SAEPJPA03KCJXL4", "story_id": "45407", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the husband is a band director who decided to take a vacation .", "storylet_id": "227035"}], [{"original_text": "the time of the vacation was during spring when the flowers on the trees were blooming.", "album_id": "72157608062240202", "photo_flickr_id": "2945997806", "setting": "last-3-pick-old-and-tell", "worker_id": "SAEPJPA03KCJXL4", "story_id": "45407", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the time of the vacation was during spring when the flowers on the trees were blooming .", "storylet_id": "227036"}], [{"original_text": "he and his wife are excited to get away and enjoy alone time.", "album_id": "72157608062240202", "photo_flickr_id": "2945992012", "setting": "last-3-pick-old-and-tell", "worker_id": "SAEPJPA03KCJXL4", "story_id": "45407", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he and his wife are excited to get away and enjoy alone time .", "storylet_id": "227037"}], [{"original_text": "this vacation is just what they needed as u can see in their faces in this picture.", "album_id": "72157608062240202", "photo_flickr_id": "2945996068", "setting": "last-3-pick-old-and-tell", "worker_id": "SAEPJPA03KCJXL4", "story_id": "45407", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this vacation is just what they needed as u can see in their faces in this picture .", "storylet_id": "227038"}], [{"original_text": "this is the last evening of the vacation which turned out to be a great trip.", "album_id": "72157608062240202", "photo_flickr_id": "2945985746", "setting": "last-3-pick-old-and-tell", "worker_id": "SAEPJPA03KCJXL4", "story_id": "45407", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this is the last evening of the vacation which turned out to be a great trip .", "storylet_id": "227039"}], [{"original_text": "The couple was happy to go out and see the historic sites as well as the nature nearby.", "album_id": "72157608062240202", "photo_flickr_id": "2945120325", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "45408", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple was happy to go out and see the historic sites as well as the nature nearby .", "storylet_id": "227040"}], [{"original_text": "They enjoyed seeing the sites in town together and posed in front of a monument.", "album_id": "72157608062240202", "photo_flickr_id": "2945985746", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "45408", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they enjoyed seeing the sites in town together and posed in front of a monument .", "storylet_id": "227041"}], [{"original_text": "Later in the evening, the women was a bit tired while posing for a picture.", "album_id": "72157608062240202", "photo_flickr_id": "2945126909", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "45408", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "later in the evening , the women was a bit tired while posing for a picture .", "storylet_id": "227042"}], [{"original_text": "She enjoyed her company with the man and was looking forward to the evening.", "album_id": "72157608062240202", "photo_flickr_id": "2945130203", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "45408", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she enjoyed her company with the man and was looking forward to the evening .", "storylet_id": "227043"}], [{"original_text": "The environment and lush landscapes were beautiful that day.", "album_id": "72157608062240202", "photo_flickr_id": "2945997806", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "45408", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the environment and lush landscapes were beautiful that day .", "storylet_id": "227044"}], [{"original_text": "The couple was preparing for their wedding.", "album_id": "72157608062240202", "photo_flickr_id": "2945120325", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "45409", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the couple was preparing for their wedding .", "storylet_id": "227045"}], [{"original_text": "They were taking pictures for their announcements.", "album_id": "72157608062240202", "photo_flickr_id": "2945985746", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "45409", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they were taking pictures for their announcements .", "storylet_id": "227046"}], [{"original_text": "They found a few different locations.", "album_id": "72157608062240202", "photo_flickr_id": "2945126909", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "45409", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they found a few different locations .", "storylet_id": "227047"}], [{"original_text": "The woman had to show off her ring.", "album_id": "72157608062240202", "photo_flickr_id": "2945130203", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "45409", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the woman had to show off her ring .", "storylet_id": "227048"}], [{"original_text": "It was a beautiful day outside.", "album_id": "72157608062240202", "photo_flickr_id": "2945997806", "setting": "last-3-pick-old-and-tell", "worker_id": "CTBLR9XRY7I42PO", "story_id": "45409", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a beautiful day outside .", "storylet_id": "227049"}], [{"original_text": "Taking a dump on the no dumping sign.", "album_id": "72157604474354874", "photo_flickr_id": "2404694628", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45410", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "taking a dump on the no dumping sign .", "storylet_id": "227050"}], [{"original_text": "quick stop for some frozen yogurt.", "album_id": "72157604474354874", "photo_flickr_id": "2419843608", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45410", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "quick stop for some frozen yogurt .", "storylet_id": "227051"}], [{"original_text": "The Domino Sugar plant!", "album_id": "72157604474354874", "photo_flickr_id": "2419043761", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45410", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the domino sugar plant !", "storylet_id": "227052"}], [{"original_text": "Some tea for the evening.", "album_id": "72157604474354874", "photo_flickr_id": "2532381575", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45410", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some tea for the evening .", "storylet_id": "227053"}], [{"original_text": "Having a good time on our winter trip.", "album_id": "72157604474354874", "photo_flickr_id": "3207619937", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45410", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "having a good time on our winter trip .", "storylet_id": "227054"}], [{"original_text": "We went for a visit to the place where we plan to get married last week.", "album_id": "72157604474354874", "photo_flickr_id": "2404694628", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45411", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went for a visit to the place where we plan to get married last week .", "storylet_id": "227055"}], [{"original_text": "My husband held me close with the sun setting in the background.", "album_id": "72157604474354874", "photo_flickr_id": "2416128673", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45411", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my husband held me close with the sun setting in the background .", "storylet_id": "227056"}], [{"original_text": "I felt at such peace I could have fallen asleep on his shoulder.", "album_id": "72157604474354874", "photo_flickr_id": "2416547513", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45411", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i felt at such peace i could have fallen asleep on his shoulder .", "storylet_id": "227057"}], [{"original_text": "I got my husband to take a picture of me holding up my hands inside the room.", "album_id": "72157604474354874", "photo_flickr_id": "2419043761", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45411", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i got my husband to take a picture of me holding up my hands inside the room .", "storylet_id": "227058"}], [{"original_text": "The berries that grew on the green tree were breathtaking to see.", "album_id": "72157604474354874", "photo_flickr_id": "2419843616", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45411", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the berries that grew on the green tree were breathtaking to see .", "storylet_id": "227059"}], [{"original_text": "Leave it to Mom to set herself up for one of my photos!", "album_id": "72157604474354874", "photo_flickr_id": "2404694628", "setting": "last-3-pick-old-and-tell", "worker_id": "0NIICXUN50P7JDA", "story_id": "45412", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "leave it to mom to set herself up for one of my photos !", "storylet_id": "227060"}], [{"original_text": "Not sure how this invention would work, but it made a great photo!", "album_id": "72157604474354874", "photo_flickr_id": "2419843608", "setting": "last-3-pick-old-and-tell", "worker_id": "0NIICXUN50P7JDA", "story_id": "45412", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "not sure how this invention would work , but it made a great photo !", "storylet_id": "227061"}], [{"original_text": "I love taking photos of neon signs - this one is so cool with the steam or cloud floating off it!", "album_id": "72157604474354874", "photo_flickr_id": "2419043761", "setting": "last-3-pick-old-and-tell", "worker_id": "0NIICXUN50P7JDA", "story_id": "45412", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i love taking photos of neon signs - this one is so cool with the steam or cloud floating off it !", "storylet_id": "227062"}], [{"original_text": "Sometimes the simplest photos are the best!", "album_id": "72157604474354874", "photo_flickr_id": "2532381575", "setting": "last-3-pick-old-and-tell", "worker_id": "0NIICXUN50P7JDA", "story_id": "45412", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "sometimes the simplest photos are the best !", "storylet_id": "227063"}], [{"original_text": "After a hard day as a photographer, nothing better than a selfie with my BFF!", "album_id": "72157604474354874", "photo_flickr_id": "3207619937", "setting": "last-3-pick-old-and-tell", "worker_id": "0NIICXUN50P7JDA", "story_id": "45412", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a hard day as a photographer , nothing better than a selfie with my bff !", "storylet_id": "227064"}], [{"original_text": "having fun with signs at the park", "album_id": "72157604474354874", "photo_flickr_id": "2404694628", "setting": "last-3-pick-old-and-tell", "worker_id": "XMV689K507N6XK3", "story_id": "45413", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "having fun with signs at the park", "storylet_id": "227065"}], [{"original_text": "Stopped for a delicious treat!", "album_id": "72157604474354874", "photo_flickr_id": "2419843608", "setting": "last-3-pick-old-and-tell", "worker_id": "XMV689K507N6XK3", "story_id": "45413", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "stopped for a delicious treat !", "storylet_id": "227066"}], [{"original_text": "Bright lights shine after sunset.", "album_id": "72157604474354874", "photo_flickr_id": "2419043761", "setting": "last-3-pick-old-and-tell", "worker_id": "XMV689K507N6XK3", "story_id": "45413", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "bright lights shine after sunset .", "storylet_id": "227067"}], [{"original_text": "Quick pick me up ", "album_id": "72157604474354874", "photo_flickr_id": "2532381575", "setting": "last-3-pick-old-and-tell", "worker_id": "XMV689K507N6XK3", "story_id": "45413", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "quick pick me up", "storylet_id": "227068"}], [{"original_text": "Sleepy but still having a blast!", "album_id": "72157604474354874", "photo_flickr_id": "3207619937", "setting": "last-3-pick-old-and-tell", "worker_id": "XMV689K507N6XK3", "story_id": "45413", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sleepy but still having a blast !", "storylet_id": "227069"}], [{"original_text": "She placed the no dog sign in the yard. ", "album_id": "72157604474354874", "photo_flickr_id": "2404694628", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45414", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she placed the no dog sign in the yard .", "storylet_id": "227070"}], [{"original_text": "It was time for a treat. ", "album_id": "72157604474354874", "photo_flickr_id": "2419843608", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45414", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was time for a treat .", "storylet_id": "227071"}], [{"original_text": "From inside, she could see the old Domino Sugars sign lit up against the dark sky. ", "album_id": "72157604474354874", "photo_flickr_id": "2419043761", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45414", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "from inside , she could see the old domino sugars sign lit up against the dark sky .", "storylet_id": "227072"}], [{"original_text": "A hot cup of tea should do the trick. ", "album_id": "72157604474354874", "photo_flickr_id": "2532381575", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45414", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a hot cup of tea should do the trick .", "storylet_id": "227073"}], [{"original_text": "They both felt great the next day. ", "album_id": "72157604474354874", "photo_flickr_id": "3207619937", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45414", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they both felt great the next day .", "storylet_id": "227074"}], [{"original_text": "The cat always waited for her to come home.", "album_id": "783955", "photo_flickr_id": "35426390", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45415", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cat always waited for her to come home .", "storylet_id": "227075"}], [{"original_text": "It would wait by the window for her everyday.", "album_id": "783955", "photo_flickr_id": "35426398", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45415", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it would wait by the window for her everyday .", "storylet_id": "227076"}], [{"original_text": "She loved her cat like a child.", "album_id": "783955", "photo_flickr_id": "35426353", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45415", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she loved her cat like a child .", "storylet_id": "227077"}], [{"original_text": "The cat loved her unconditionally also.", "album_id": "783955", "photo_flickr_id": "35426360", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45415", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cat loved her unconditionally also .", "storylet_id": "227078"}], [{"original_text": "They spent a lot of their time together.", "album_id": "783955", "photo_flickr_id": "35426376", "setting": "first-2-pick-and-tell", "worker_id": "RFNKW6U6E1AQZ3J", "story_id": "45415", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they spent a lot of their time together .", "storylet_id": "227079"}], [{"original_text": "I like cats.", "album_id": "783955", "photo_flickr_id": "35426390", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "45416", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i like cats .", "storylet_id": "227080"}], [{"original_text": "They are a pain though.", "album_id": "783955", "photo_flickr_id": "35426398", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "45416", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are a pain though .", "storylet_id": "227081"}], [{"original_text": "He's looking to get in trouble.", "album_id": "783955", "photo_flickr_id": "35426405", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "45416", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he 's looking to get in trouble .", "storylet_id": "227082"}], [{"original_text": "Like chewing on my ear.", "album_id": "783955", "photo_flickr_id": "35426353", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "45416", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "like chewing on my ear .", "storylet_id": "227083"}], [{"original_text": "OW!", "album_id": "783955", "photo_flickr_id": "35426360", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "45416", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "ow !", "storylet_id": "227084"}], [{"original_text": "I decided to get a new kitten. ", "album_id": "783955", "photo_flickr_id": "35426390", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "45417", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i decided to get a new kitten .", "storylet_id": "227085"}], [{"original_text": "She is playful and curious. ", "album_id": "783955", "photo_flickr_id": "35426398", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "45417", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she is playful and curious .", "storylet_id": "227086"}], [{"original_text": "Her favorite place is to sit behind me.", "album_id": "783955", "photo_flickr_id": "35426353", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "45417", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "her favorite place is to sit behind me .", "storylet_id": "227087"}], [{"original_text": "We are already inseparable!", "album_id": "783955", "photo_flickr_id": "35426360", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "45417", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we are already inseparable !", "storylet_id": "227088"}], [{"original_text": "She brings great joy to my life. ", "album_id": "783955", "photo_flickr_id": "35426376", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "45417", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she brings great joy to my life .", "storylet_id": "227089"}], [{"original_text": "the cat is checking out the surroundings of its new home.", "album_id": "783955", "photo_flickr_id": "35426390", "setting": "last-3-pick-old-and-tell", "worker_id": "SAEPJPA03KCJXL4", "story_id": "45418", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the cat is checking out the surroundings of its new home .", "storylet_id": "227090"}], [{"original_text": "the cat is playing with its plant in the window seal.", "album_id": "783955", "photo_flickr_id": "35426398", "setting": "last-3-pick-old-and-tell", "worker_id": "SAEPJPA03KCJXL4", "story_id": "45418", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the cat is playing with its plant in the window seal .", "storylet_id": "227091"}], [{"original_text": "something outside has caught the attention of the cat.", "album_id": "783955", "photo_flickr_id": "35426405", "setting": "last-3-pick-old-and-tell", "worker_id": "SAEPJPA03KCJXL4", "story_id": "45418", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "something outside has caught the attention of the cat .", "storylet_id": "227092"}], [{"original_text": "the cat and its new owner are relaxing on the couch as he nibbles on her ear.", "album_id": "783955", "photo_flickr_id": "35426353", "setting": "last-3-pick-old-and-tell", "worker_id": "SAEPJPA03KCJXL4", "story_id": "45418", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the cat and its new owner are relaxing on the couch as he nibbles on her ear .", "storylet_id": "227093"}], [{"original_text": "the cat is very playful and is going to enjoy his new home and his owner.", "album_id": "783955", "photo_flickr_id": "35426360", "setting": "last-3-pick-old-and-tell", "worker_id": "SAEPJPA03KCJXL4", "story_id": "45418", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the cat is very playful and is going to enjoy his new home and his owner .", "storylet_id": "227094"}], [{"original_text": "I absolutely love my new kitty. I adopted her from the SPCA.", "album_id": "783955", "photo_flickr_id": "35426390", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "45419", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i absolutely love my new kitty . i adopted her from the spca .", "storylet_id": "227095"}], [{"original_text": "She loves to play with things.", "album_id": "783955", "photo_flickr_id": "35426398", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "45419", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she loves to play with things .", "storylet_id": "227096"}], [{"original_text": "She loves to look out the window.", "album_id": "783955", "photo_flickr_id": "35426405", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "45419", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she loves to look out the window .", "storylet_id": "227097"}], [{"original_text": "She is really friendly towards me even though I just got her.", "album_id": "783955", "photo_flickr_id": "35426353", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "45419", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "she is really friendly towards me even though i just got her .", "storylet_id": "227098"}], [{"original_text": "I just can't get enough of her!", "album_id": "783955", "photo_flickr_id": "35426360", "setting": "last-3-pick-old-and-tell", "worker_id": "C9RS5EXJ196MOKB", "story_id": "45419", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i just ca n't get enough of her !", "storylet_id": "227099"}], [{"original_text": "The restaurant was very busy.", "album_id": "72157605866485628", "photo_flickr_id": "2618931337", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "45420", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the restaurant was very busy .", "storylet_id": "227100"}], [{"original_text": "A lot of friends had showed up for the party.", "album_id": "72157605866485628", "photo_flickr_id": "2619755802", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "45420", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of friends had showed up for the party .", "storylet_id": "227101"}], [{"original_text": "There were a lot of pictures taken.", "album_id": "72157605866485628", "photo_flickr_id": "2618934145", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "45420", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of pictures taken .", "storylet_id": "227102"}], [{"original_text": "Some of them were normal.", "album_id": "72157605866485628", "photo_flickr_id": "2618935433", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "45420", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of them were normal .", "storylet_id": "227103"}], [{"original_text": "Other pictures were meant to be funny.", "album_id": "72157605866485628", "photo_flickr_id": "2618935947", "setting": "first-2-pick-and-tell", "worker_id": "4CA4ADEMYWN0H2K", "story_id": "45420", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "other pictures were meant to be funny .", "storylet_id": "227104"}], [{"original_text": "\"Hey Ricky!\"", "album_id": "72157605866485628", "photo_flickr_id": "2618935947", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "45421", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "`` hey [male] ! ''", "storylet_id": "227105"}], [{"original_text": "\"Hey Bobby!\"", "album_id": "72157605866485628", "photo_flickr_id": "2619760602", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "45421", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "`` hey [male] ! ''", "storylet_id": "227106"}], [{"original_text": "\"I'm you ex-girlfriend's new boyfriend.\"", "album_id": "72157605866485628", "photo_flickr_id": "2618935433", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "45421", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "`` i 'm you ex-girlfriend 's new boyfriend . ''", "storylet_id": "227107"}], [{"original_text": "\"But I don't have an ex...\"", "album_id": "72157605866485628", "photo_flickr_id": "2619759026", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "45421", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "`` but i do n't have an ex ... ''", "storylet_id": "227108"}], [{"original_text": "\"This is why we can't have nice things.\"", "album_id": "72157605866485628", "photo_flickr_id": "2618940473", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "45421", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "`` this is why we ca n't have nice things . ''", "storylet_id": "227109"}], [{"original_text": "There was a big party to celebrate the engagement.", "album_id": "72157605866485628", "photo_flickr_id": "2618931337", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "45422", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a big party to celebrate the engagement .", "storylet_id": "227110"}], [{"original_text": "Maria and Tina attended.", "album_id": "72157605866485628", "photo_flickr_id": "2619755802", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "45422", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] and [female] attended .", "storylet_id": "227111"}], [{"original_text": "The engaged couple were so happy!", "album_id": "72157605866485628", "photo_flickr_id": "2618934145", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "45422", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the engaged couple were so happy !", "storylet_id": "227112"}], [{"original_text": "At first Mike was only a little happy for them.", "album_id": "72157605866485628", "photo_flickr_id": "2618935433", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "45422", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "at first [male] was only a little happy for them .", "storylet_id": "227113"}], [{"original_text": "But then he got really happy!", "album_id": "72157605866485628", "photo_flickr_id": "2618935947", "setting": "last-3-pick-old-and-tell", "worker_id": "RMBSB1JAHEN2PBC", "story_id": "45422", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but then he got really happy !", "storylet_id": "227114"}], [{"original_text": "There was a large family gathering for a birthday party.", "album_id": "72157605866485628", "photo_flickr_id": "2618931337", "setting": "last-3-pick-old-and-tell", "worker_id": "FIBTEBGPM48ZV2B", "story_id": "45423", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a large family gathering for a birthday party .", "storylet_id": "227115"}], [{"original_text": "These two cousins hadn't seen each other for a long time.", "album_id": "72157605866485628", "photo_flickr_id": "2619755802", "setting": "last-3-pick-old-and-tell", "worker_id": "FIBTEBGPM48ZV2B", "story_id": "45423", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "these two cousins had n't seen each other for a long time .", "storylet_id": "227116"}], [{"original_text": "One of the brothers brought his new girlfriend.", "album_id": "72157605866485628", "photo_flickr_id": "2618934145", "setting": "last-3-pick-old-and-tell", "worker_id": "FIBTEBGPM48ZV2B", "story_id": "45423", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the brothers brought his new girlfriend .", "storylet_id": "227117"}], [{"original_text": "He looks very pleased that everyone liked her.", "album_id": "72157605866485628", "photo_flickr_id": "2618935433", "setting": "last-3-pick-old-and-tell", "worker_id": "FIBTEBGPM48ZV2B", "story_id": "45423", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he looks very pleased that everyone liked her .", "storylet_id": "227118"}], [{"original_text": "Here he is again, having a great night!", "album_id": "72157605866485628", "photo_flickr_id": "2618935947", "setting": "last-3-pick-old-and-tell", "worker_id": "FIBTEBGPM48ZV2B", "story_id": "45423", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here he is again , having a great night !", "storylet_id": "227119"}], [{"original_text": "Friends out celebrating.", "album_id": "72157605866485628", "photo_flickr_id": "2618931337", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "45424", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends out celebrating .", "storylet_id": "227120"}], [{"original_text": "Two friends pose together.", "album_id": "72157605866485628", "photo_flickr_id": "2619755802", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "45424", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "two friends pose together .", "storylet_id": "227121"}], [{"original_text": "A happy couple on the dance floor.", "album_id": "72157605866485628", "photo_flickr_id": "2618934145", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "45424", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a happy couple on the dance floor .", "storylet_id": "227122"}], [{"original_text": "A full face shot of a friend.", "album_id": "72157605866485628", "photo_flickr_id": "2618935433", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "45424", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a full face shot of a friend .", "storylet_id": "227123"}], [{"original_text": "The man is very happy to have his picture taken.", "album_id": "72157605866485628", "photo_flickr_id": "2618935947", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "45424", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the man is very happy to have his picture taken .", "storylet_id": "227124"}], [{"original_text": "me and my husband just brought a new house", "album_id": "848373", "photo_flickr_id": "38482286", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "45425", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "me and my husband just brought a new house", "storylet_id": "227125"}], [{"original_text": "we now get to have some great cook outs", "album_id": "848373", "photo_flickr_id": "38478001", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "45425", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we now get to have some great cook outs", "storylet_id": "227126"}], [{"original_text": "everyone comes over ", "album_id": "848373", "photo_flickr_id": "38486397", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "45425", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone comes over", "storylet_id": "227127"}], [{"original_text": "including our parents", "album_id": "848373", "photo_flickr_id": "38480774", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "45425", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "including our parents", "storylet_id": "227128"}], [{"original_text": "the most important part is we get to have pool partys for the kids", "album_id": "848373", "photo_flickr_id": "38486400", "setting": "first-2-pick-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "45425", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the most important part is we get to have pool partys for the kids", "storylet_id": "227129"}], [{"original_text": "The family got together for a family get together.", "album_id": "848373", "photo_flickr_id": "38478000", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "45426", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family got together for a family get together .", "storylet_id": "227130"}], [{"original_text": "The food was very delicious.", "album_id": "848373", "photo_flickr_id": "38486397", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "45426", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the food was very delicious .", "storylet_id": "227131"}], [{"original_text": "After eating the family got together for a family photo.", "album_id": "848373", "photo_flickr_id": "38480774", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "45426", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after eating the family got together for a family photo .", "storylet_id": "227132"}], [{"original_text": "After the picture they got into the pool and the kids swam around for a bit.", "album_id": "848373", "photo_flickr_id": "38486400", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "45426", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the picture they got into the pool and the kids swam around for a bit .", "storylet_id": "227133"}], [{"original_text": "After swimming they got out and changed into new clothes for a new picture.", "album_id": "848373", "photo_flickr_id": "38482287", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "45426", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after swimming they got out and changed into new clothes for a new picture .", "storylet_id": "227134"}], [{"original_text": "The pool party started out early, everyone loved getting together.", "album_id": "848373", "photo_flickr_id": "38478000", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "45427", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the pool party started out early , everyone loved getting together .", "storylet_id": "227135"}], [{"original_text": "The kids and adults alike, loved the homemade food.", "album_id": "848373", "photo_flickr_id": "38486397", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "45427", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids and adults alike , loved the homemade food .", "storylet_id": "227136"}], [{"original_text": "Group pictures were the adult's favorite part of the party.", "album_id": "848373", "photo_flickr_id": "38480774", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "45427", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "group pictures were the adult 's favorite part of the party .", "storylet_id": "227137"}], [{"original_text": "The pool was the kids favorite part though.", "album_id": "848373", "photo_flickr_id": "38486400", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "45427", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the pool was the kids favorite part though .", "storylet_id": "227138"}], [{"original_text": "In either sense, every one loved getting together and seeing the family.", "album_id": "848373", "photo_flickr_id": "38482287", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "45427", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "in either sense , every one loved getting together and seeing the family .", "storylet_id": "227139"}], [{"original_text": "My husband and I attended a family barbecue. ", "album_id": "848373", "photo_flickr_id": "38482286", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45428", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my husband and i attended a family barbecue .", "storylet_id": "227140"}], [{"original_text": "I brought the plates and plastic ware. ", "album_id": "848373", "photo_flickr_id": "38478001", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45428", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i brought the plates and plastic ware .", "storylet_id": "227141"}], [{"original_text": "My niece helped make the tater tots. ", "album_id": "848373", "photo_flickr_id": "38486397", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45428", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my niece helped make the tater tots .", "storylet_id": "227142"}], [{"original_text": "I was happy to see my husband's side of the family. ", "album_id": "848373", "photo_flickr_id": "38480774", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45428", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was happy to see my husband 's side of the family .", "storylet_id": "227143"}], [{"original_text": "Our nieces and nephews were swimming all day. ", "album_id": "848373", "photo_flickr_id": "38486400", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45428", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "our nieces and nephews were swimming all day .", "storylet_id": "227144"}], [{"original_text": "Steve and Dana had a wonderful casual wedding reception at Steve's grandparents' house.", "album_id": "848373", "photo_flickr_id": "38482286", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "45429", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] had a wonderful casual wedding reception at [male] 's grandparents ' house .", "storylet_id": "227145"}], [{"original_text": "They used these cute paper plates, napkins, and plastic flatware to keep the cleanup work to a minimum.", "album_id": "848373", "photo_flickr_id": "38478001", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "45429", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they used these cute paper plates , napkins , and plastic flatware to keep the cleanup work to a minimum .", "storylet_id": "227146"}], [{"original_text": "Yummy casseroles pleased guests of all ages!", "album_id": "848373", "photo_flickr_id": "38486397", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "45429", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "yummy casseroles pleased guests of all ages !", "storylet_id": "227147"}], [{"original_text": "All the cousins had flown in for the wedding, and it was great to get together.", "album_id": "848373", "photo_flickr_id": "38480774", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "45429", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all the cousins had flown in for the wedding , and it was great to get together .", "storylet_id": "227148"}], [{"original_text": "Later in the afternoon, the kids played in the pool while the grownups relaxed. What a fun party!", "album_id": "848373", "photo_flickr_id": "38486400", "setting": "last-3-pick-old-and-tell", "worker_id": "D6TYGLYSDZJB043", "story_id": "45429", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "later in the afternoon , the kids played in the pool while the grownups relaxed . what a fun party !", "storylet_id": "227149"}], [{"original_text": "What starts off as a lonely night of gaming.", "album_id": "72157607595711983", "photo_flickr_id": "2901281578", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45430", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "what starts off as a lonely night of gaming .", "storylet_id": "227150"}], [{"original_text": "Becomes a couple playing together.", "album_id": "72157607595711983", "photo_flickr_id": "2901287854", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45430", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "becomes a couple playing together .", "storylet_id": "227151"}], [{"original_text": "Now, it's a party!", "album_id": "72157607595711983", "photo_flickr_id": "2900446065", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45430", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "now , it 's a party !", "storylet_id": "227152"}], [{"original_text": "This is some serious gaming here.", "album_id": "72157607595711983", "photo_flickr_id": "2901298074", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45430", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is some serious gaming here .", "storylet_id": "227153"}], [{"original_text": "Time for a coffee run to keep this party going.", "album_id": "72157607595711983", "photo_flickr_id": "2901312124", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45430", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "time for a coffee run to keep this party going .", "storylet_id": "227154"}], [{"original_text": "We went to the cafe today.", "album_id": "72157607595711983", "photo_flickr_id": "2900442075", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45431", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to the cafe today .", "storylet_id": "227155"}], [{"original_text": "While at the cafe we ran into Karen.", "album_id": "72157607595711983", "photo_flickr_id": "2900455847", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45431", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "while at the cafe we ran into [female] .", "storylet_id": "227156"}], [{"original_text": "Karen told us she just got engaged.", "album_id": "72157607595711983", "photo_flickr_id": "2901296940", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45431", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] told us she just got engaged .", "storylet_id": "227157"}], [{"original_text": "Tom, the man that Karen got engages to was there at the cafe as well.", "album_id": "72157607595711983", "photo_flickr_id": "2900461265", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45431", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] , the man that [female] got engages to was there at the cafe as well .", "storylet_id": "227158"}], [{"original_text": "We mentioned the marriage and Tom started joking about being cultured since he was almost a married man.", "album_id": "72157607595711983", "photo_flickr_id": "2901309218", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45431", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we mentioned the marriage and [male] started joking about being cultured since he was almost a married man .", "storylet_id": "227159"}], [{"original_text": "Sherry decided to have some friends over to hang out for the night.", "album_id": "72157607595711983", "photo_flickr_id": "2901281578", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "45432", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] decided to have some friends over to hang out for the night .", "storylet_id": "227160"}], [{"original_text": "Her friend Mark was the first to arrive.", "album_id": "72157607595711983", "photo_flickr_id": "2901287854", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "45432", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "her friend [male] was the first to arrive .", "storylet_id": "227161"}], [{"original_text": "Once everyone else arrived they all started to enjoy some alcoholic beverages.", "album_id": "72157607595711983", "photo_flickr_id": "2900446065", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "45432", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "once everyone else arrived they all started to enjoy some alcoholic beverages .", "storylet_id": "227162"}], [{"original_text": "They also played games on their laptops.", "album_id": "72157607595711983", "photo_flickr_id": "2901298074", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "45432", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also played games on their laptops .", "storylet_id": "227163"}], [{"original_text": "At the end of the night they decided to go get something to eat before calling it a night.", "album_id": "72157607595711983", "photo_flickr_id": "2901312124", "setting": "last-3-pick-old-and-tell", "worker_id": "R79QJXNQQMDM1Z5", "story_id": "45432", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night they decided to go get something to eat before calling it a night .", "storylet_id": "227164"}], [{"original_text": "this what happens at our late night study seeions", "album_id": "72157607595711983", "photo_flickr_id": "2900442075", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "45433", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this what happens at our late night study seeions", "storylet_id": "227165"}], [{"original_text": "we take sefies", "album_id": "72157607595711983", "photo_flickr_id": "2900455847", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "45433", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we take sefies", "storylet_id": "227166"}], [{"original_text": "of the most craziest things", "album_id": "72157607595711983", "photo_flickr_id": "2901296940", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "45433", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "of the most craziest things", "storylet_id": "227167"}], [{"original_text": "we also hang aroung", "album_id": "72157607595711983", "photo_flickr_id": "2900461265", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "45433", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we also hang aroung", "storylet_id": "227168"}], [{"original_text": "don't forget the drinks", "album_id": "72157607595711983", "photo_flickr_id": "2901309218", "setting": "last-3-pick-old-and-tell", "worker_id": "Z54UTMM05Y0MQBZ", "story_id": "45433", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "do n't forget the drinks", "storylet_id": "227169"}], [{"original_text": "I spend a lot of late nights studying at a coffee shop near campus.", "album_id": "72157607595711983", "photo_flickr_id": "2900442075", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45434", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i spend a lot of late nights studying at a coffee shop near campus .", "storylet_id": "227170"}], [{"original_text": "I get bored sometimes during the long study sessions.", "album_id": "72157607595711983", "photo_flickr_id": "2900455847", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45434", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i get bored sometimes during the long study sessions .", "storylet_id": "227171"}], [{"original_text": "We play around at having fistfights to wake each other up.", "album_id": "72157607595711983", "photo_flickr_id": "2901296940", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45434", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we play around at having fistfights to wake each other up .", "storylet_id": "227172"}], [{"original_text": "Joey always cracks me up when he's there. He's such a hilarious guy.", "album_id": "72157607595711983", "photo_flickr_id": "2900461265", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45434", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] always cracks me up when he 's there . he 's such a hilarious guy .", "storylet_id": "227173"}], [{"original_text": "He loves his coffee! We need it, when the studying sessions last well past midnight.", "album_id": "72157607595711983", "photo_flickr_id": "2901309218", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45434", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he loves his coffee ! we need it , when the studying sessions last well past midnight .", "storylet_id": "227174"}], [{"original_text": "My friends and I decided to check out the new Brewpub in town.", "album_id": "101221", "photo_flickr_id": "4026215", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45435", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i decided to check out the new brewpub in town .", "storylet_id": "227175"}], [{"original_text": "The guys were chosen to pick out some beers to try.", "album_id": "101221", "photo_flickr_id": "4026203", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45435", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the guys were chosen to pick out some beers to try .", "storylet_id": "227176"}], [{"original_text": "Here's our first taste of one of their beers.", "album_id": "101221", "photo_flickr_id": "4026206", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45435", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "here 's our first taste of one of their beers .", "storylet_id": "227177"}], [{"original_text": "Not bad - three of us really liked it!", "album_id": "101221", "photo_flickr_id": "4026205", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45435", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "not bad - three of us really liked it !", "storylet_id": "227178"}], [{"original_text": "I wasn't that keen on it myself though. ", "album_id": "101221", "photo_flickr_id": "4012881", "setting": "first-2-pick-and-tell", "worker_id": "H2IPWOE1VUDF6KZ", "story_id": "45435", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i was n't that keen on it myself though .", "storylet_id": "227179"}], [{"original_text": "Frank was having his birthday party today. He was turning 21!", "album_id": "101221", "photo_flickr_id": "4012867", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "45436", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] was having his birthday party today . he was turning 21 !", "storylet_id": "227180"}], [{"original_text": "He looked happy that a lot of us had showed up.", "album_id": "101221", "photo_flickr_id": "4026215", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "45436", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he looked happy that a lot of us had showed up .", "storylet_id": "227181"}], [{"original_text": "A lot of our friends were around to celebrate his party.", "album_id": "101221", "photo_flickr_id": "4012869", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "45436", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a lot of our friends were around to celebrate his party .", "storylet_id": "227182"}], [{"original_text": "Frank told the best of jokes for the night, our friends were in stitches.", "album_id": "101221", "photo_flickr_id": "4026205", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "45436", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] told the best of jokes for the night , our friends were in stitches .", "storylet_id": "227183"}], [{"original_text": "At the end of the night, we enjoyed some drinks and dancing.", "album_id": "101221", "photo_flickr_id": "4026203", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "45436", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , we enjoyed some drinks and dancing .", "storylet_id": "227184"}], [{"original_text": "My brother and I went to a pub. ", "album_id": "101221", "photo_flickr_id": "4026215", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45437", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my brother and i went to a pub .", "storylet_id": "227185"}], [{"original_text": "We met up with our friends from college. ", "album_id": "101221", "photo_flickr_id": "4026203", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45437", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we met up with our friends from college .", "storylet_id": "227186"}], [{"original_text": "My professor decided to buy us all a round of beer. ", "album_id": "101221", "photo_flickr_id": "4026206", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45437", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "my professor decided to buy us all a round of beer .", "storylet_id": "227187"}], [{"original_text": "We then talked about the class. ", "album_id": "101221", "photo_flickr_id": "4026205", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45437", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we then talked about the class .", "storylet_id": "227188"}], [{"original_text": "My sister later joined up with us later. ", "album_id": "101221", "photo_flickr_id": "4012881", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45437", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my sister later joined up with us later .", "storylet_id": "227189"}], [{"original_text": "The pub had an assortment of serving trays on the walls. ", "album_id": "101221", "photo_flickr_id": "4026215", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45438", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the pub had an assortment of serving trays on the walls .", "storylet_id": "227190"}], [{"original_text": "A group of men drank beer at the bar. ", "album_id": "101221", "photo_flickr_id": "4026203", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45438", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a group of men drank beer at the bar .", "storylet_id": "227191"}], [{"original_text": "They chose a table instead. ", "album_id": "101221", "photo_flickr_id": "4026206", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45438", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they chose a table instead .", "storylet_id": "227192"}], [{"original_text": "Soon they were engrossed in deep conversation. ", "album_id": "101221", "photo_flickr_id": "4026205", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45438", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "soon they were engrossed in deep conversation .", "storylet_id": "227193"}], [{"original_text": "She decided to try a dark beer for the fist time. ", "album_id": "101221", "photo_flickr_id": "4012881", "setting": "last-3-pick-old-and-tell", "worker_id": "Y5UWWWRL2UX3TW8", "story_id": "45438", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "she decided to try a dark beer for the fist time .", "storylet_id": "227194"}], [{"original_text": "Got together with my old friends today.", "album_id": "101221", "photo_flickr_id": "4026215", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "45439", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "got together with my old friends today .", "storylet_id": "227195"}], [{"original_text": "We had a great time and socialized a lot.", "album_id": "101221", "photo_flickr_id": "4026203", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "45439", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a great time and socialized a lot .", "storylet_id": "227196"}], [{"original_text": "We drank together for a little bit.", "album_id": "101221", "photo_flickr_id": "4026206", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "45439", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we drank together for a little bit .", "storylet_id": "227197"}], [{"original_text": "We had a lot to catch up on and had a great time talking.", "album_id": "101221", "photo_flickr_id": "4026205", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "45439", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we had a lot to catch up on and had a great time talking .", "storylet_id": "227198"}], [{"original_text": "My old friend Emma really knows how to drink, haha.", "album_id": "101221", "photo_flickr_id": "4012881", "setting": "last-3-pick-old-and-tell", "worker_id": "W7IFC0N38K5QNI6", "story_id": "45439", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my old friend [female] really knows how to drink , haha .", "storylet_id": "227199"}], [{"original_text": "It appears that there is a get together at one of the houses in the neighborhood.", "album_id": "686901", "photo_flickr_id": "30722288", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "45440", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it appears that there is a get together at one of the houses in the neighborhood .", "storylet_id": "227200"}], [{"original_text": "However, there must be an occasion since this lady is bringing a wrapped present.", "album_id": "686901", "photo_flickr_id": "30722331", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "45440", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "however , there must be an occasion since this lady is bringing a wrapped present .", "storylet_id": "227201"}], [{"original_text": "Several people enjoy croquet in the yard.", "album_id": "686901", "photo_flickr_id": "30722409", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "45440", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "several people enjoy croquet in the yard .", "storylet_id": "227202"}], [{"original_text": "Others just chat and enjoy the action. However, that yellow ball came pretty close.", "album_id": "686901", "photo_flickr_id": "30722502", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "45440", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others just chat and enjoy the action . however , that yellow ball came pretty close .", "storylet_id": "227203"}], [{"original_text": "Finally the purpose becomes obvious as the birthday cake for the youngster is cut.", "album_id": "686901", "photo_flickr_id": "30722576", "setting": "first-2-pick-and-tell", "worker_id": "4J7LNPNYH6G6FU4", "story_id": "45440", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally the purpose becomes obvious as the birthday cake for the youngster is cut .", "storylet_id": "227204"}], [{"original_text": "All of my college friends decided to get together and have a good time.", "album_id": "686901", "photo_flickr_id": "30722272", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45441", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all of my college friends decided to get together and have a good time .", "storylet_id": "227205"}], [{"original_text": "My closest friend and I had not seen each other for a few weeks and we had a great time talking.", "album_id": "686901", "photo_flickr_id": "30722307", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45441", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my closest friend and i had not seen each other for a few weeks and we had a great time talking .", "storylet_id": "227206"}], [{"original_text": "The boys showed up late and then made jokes about us arriving early.", "album_id": "686901", "photo_flickr_id": "30722409", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45441", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the boys showed up late and then made jokes about us arriving early .", "storylet_id": "227207"}], [{"original_text": "My close college friend Todd was laughing hard at me for being uptight.", "album_id": "686901", "photo_flickr_id": "30722482", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45441", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my close college friend [male] was laughing hard at me for being uptight .", "storylet_id": "227208"}], [{"original_text": "Steve, another college friend, was there to be sweet as usual.", "album_id": "686901", "photo_flickr_id": "30722502", "setting": "first-2-pick-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45441", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] , another college friend , was there to be sweet as usual .", "storylet_id": "227209"}], [{"original_text": "When I got to t he party all of my friends were already there.", "album_id": "686901", "photo_flickr_id": "30722288", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45442", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "when i got to t he party all of my friends were already there .", "storylet_id": "227210"}], [{"original_text": "I brought my dog with me.", "album_id": "686901", "photo_flickr_id": "30722331", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45442", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i brought my dog with me .", "storylet_id": "227211"}], [{"original_text": "There were a lot of games at the party. Some people were playing golf.", "album_id": "686901", "photo_flickr_id": "30722409", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45442", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of games at the party . some people were playing golf .", "storylet_id": "227212"}], [{"original_text": "It was a lot of fun.", "album_id": "686901", "photo_flickr_id": "30722502", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45442", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a lot of fun .", "storylet_id": "227213"}], [{"original_text": "Afterward there was a big cake for everyone to eat.", "album_id": "686901", "photo_flickr_id": "30722576", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45442", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "afterward there was a big cake for everyone to eat .", "storylet_id": "227214"}], [{"original_text": "Rob finally got out of the house after not leaving all day.", "album_id": "686901", "photo_flickr_id": "30722288", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "45443", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "rob finally got out of the house after not leaving all day .", "storylet_id": "227215"}], [{"original_text": "Stacy came to see Rob at a small house party.", "album_id": "686901", "photo_flickr_id": "30722331", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "45443", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[female] came to see rob at a small house party .", "storylet_id": "227216"}], [{"original_text": "Garrett played croquet for at least two hours.", "album_id": "686901", "photo_flickr_id": "30722409", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "45443", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[male] played croquet for at least two hours .", "storylet_id": "227217"}], [{"original_text": "The two ladies gossiped for a while and enjoyed the weather.", "album_id": "686901", "photo_flickr_id": "30722502", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "45443", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the two ladies gossiped for a while and enjoyed the weather .", "storylet_id": "227218"}], [{"original_text": "Marky was unsure how to cut the cake to commemorate the end of the party. ", "album_id": "686901", "photo_flickr_id": "30722576", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "45443", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "marky was unsure how to cut the cake to commemorate the end of the party .", "storylet_id": "227219"}], [{"original_text": "Everyone was excited for the family reunion.", "album_id": "686901", "photo_flickr_id": "30722272", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "45444", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was excited for the family reunion .", "storylet_id": "227220"}], [{"original_text": "The men chatted about old times and enjoyed each others company. ", "album_id": "686901", "photo_flickr_id": "30722307", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "45444", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the men chatted about old times and enjoyed each others company .", "storylet_id": "227221"}], [{"original_text": "Some of the men played mini golf outside in the beautiful grassy yard.", "album_id": "686901", "photo_flickr_id": "30722409", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "45444", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some of the men played mini golf outside in the beautiful grassy yard .", "storylet_id": "227222"}], [{"original_text": "It was a happy time to reunite with family.", "album_id": "686901", "photo_flickr_id": "30722482", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "45444", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it was a happy time to reunite with family .", "storylet_id": "227223"}], [{"original_text": "The girls mostly gossiped while watching the men play sports and drink.", "album_id": "686901", "photo_flickr_id": "30722502", "setting": "last-3-pick-old-and-tell", "worker_id": "SJU3ENBEUP97XPJ", "story_id": "45444", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the girls mostly gossiped while watching the men play sports and drink .", "storylet_id": "227224"}], [{"original_text": "Things did not go as expected at the office seasonal liquor festival.", "album_id": "1257558", "photo_flickr_id": "58111345", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "45445", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "things did not go as expected at the office seasonal liquor festival .", "storylet_id": "227225"}], [{"original_text": "The balloons were nice enough.", "album_id": "1257558", "photo_flickr_id": "58112729", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "45445", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the balloons were nice enough .", "storylet_id": "227226"}], [{"original_text": "When Nancy start fidgeting around and moving her hands fast enough to blur, things took a turn.", "album_id": "1257558", "photo_flickr_id": "58112050", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "45445", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "when [female] start fidgeting around and moving her hands fast enough to blur , things took a turn .", "storylet_id": "227227"}], [{"original_text": "\"Hey Nancy you stupid lightspeed bitch!\" yelled Karen.", "album_id": "1257558", "photo_flickr_id": "58112047", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "45445", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "`` hey [female] you stupid lightspeed bitch ! '' yelled [female] .", "storylet_id": "227228"}], [{"original_text": "The night might have been forgotten had it not been for dear Jan who decided YouTube needed to maintain a permanent record.", "album_id": "1257558", "photo_flickr_id": "58111342", "setting": "first-2-pick-and-tell", "worker_id": "45CS4DONWJ1KIHH", "story_id": "45445", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the night might have been forgotten had it not been for dear [female] who decided organization needed to maintain a permanent record .", "storylet_id": "227229"}], [{"original_text": "A small group of co workers get together for a party.", "album_id": "1257558", "photo_flickr_id": "58111342", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "45446", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a small group of co workers get together for a party .", "storylet_id": "227230"}], [{"original_text": "They are really chatting it up while they sit down and enjoy some food.", "album_id": "1257558", "photo_flickr_id": "58111343", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "45446", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are really chatting it up while they sit down and enjoy some food .", "storylet_id": "227231"}], [{"original_text": "After eating they decide its time for some drinks.", "album_id": "1257558", "photo_flickr_id": "58111345", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "45446", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "after eating they decide its time for some drinks .", "storylet_id": "227232"}], [{"original_text": "Jessica is waiting on her drink to be served.", "album_id": "1257558", "photo_flickr_id": "58112059", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "45446", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] is waiting on her drink to be served .", "storylet_id": "227233"}], [{"original_text": "They all have something to drink and sit down and talk.", "album_id": "1257558", "photo_flickr_id": "58112731", "setting": "first-2-pick-and-tell", "worker_id": "MAIN6UQJIAJ61RB", "story_id": "45446", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all have something to drink and sit down and talk .", "storylet_id": "227234"}], [{"original_text": "Sandra loves taking pictures at her friends parties.", "album_id": "1257558", "photo_flickr_id": "58111342", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "45447", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] loves taking pictures at her friends parties .", "storylet_id": "227235"}], [{"original_text": "Every one loves conversing.", "album_id": "1257558", "photo_flickr_id": "58111343", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "45447", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "every one loves conversing .", "storylet_id": "227236"}], [{"original_text": "Jessica loves to be the center of attention.", "album_id": "1257558", "photo_flickr_id": "58111345", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "45447", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "[female] loves to be the center of attention .", "storylet_id": "227237"}], [{"original_text": "The party was going well, every one was having fun.", "album_id": "1257558", "photo_flickr_id": "58112059", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "45447", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the party was going well , every one was having fun .", "storylet_id": "227238"}], [{"original_text": "At the end of the night, every one had fun and talked a lot.", "album_id": "1257558", "photo_flickr_id": "58112731", "setting": "last-3-pick-old-and-tell", "worker_id": "WQQN9Q49V35RLSK", "story_id": "45447", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the night , every one had fun and talked a lot .", "storylet_id": "227239"}], [{"original_text": "She gets the party started with some candid shots of everyone.", "album_id": "1257558", "photo_flickr_id": "58111342", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "45448", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "she gets the party started with some candid shots of everyone .", "storylet_id": "227240"}], [{"original_text": "They all chat about daily events and pick their snacks as the party begins.", "album_id": "1257558", "photo_flickr_id": "58111343", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "45448", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all chat about daily events and pick their snacks as the party begins .", "storylet_id": "227241"}], [{"original_text": "She sure is happy about all the drink options!", "album_id": "1257558", "photo_flickr_id": "58111345", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "45448", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "she sure is happy about all the drink options !", "storylet_id": "227242"}], [{"original_text": "One of the ladies laughs at a joke the man in the other room just told.", "album_id": "1257558", "photo_flickr_id": "58112059", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "45448", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the ladies laughs at a joke the man in the other room just told .", "storylet_id": "227243"}], [{"original_text": "Party is over so it's time to relax and get ready to leave.", "album_id": "1257558", "photo_flickr_id": "58112731", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "45448", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "party is over so it 's time to relax and get ready to leave .", "storylet_id": "227244"}], [{"original_text": "The party began when Margot started to dance like a drunkard.", "album_id": "1257558", "photo_flickr_id": "58111345", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "45449", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the party began when margot started to dance like a drunkard .", "storylet_id": "227245"}], [{"original_text": "Colorful balloons overwhelmed my ceiling.", "album_id": "1257558", "photo_flickr_id": "58112729", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "45449", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "colorful balloons overwhelmed my ceiling .", "storylet_id": "227246"}], [{"original_text": "I found Margot in my bedroom dancing by herself. ", "album_id": "1257558", "photo_flickr_id": "58112050", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "45449", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i found margot in my bedroom dancing by herself .", "storylet_id": "227247"}], [{"original_text": "A couple of other guests watched television during the party.", "album_id": "1257558", "photo_flickr_id": "58112047", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "45449", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a couple of other guests watched television during the party .", "storylet_id": "227248"}], [{"original_text": "Chrissie took one photo of my house before leaving the party. ", "album_id": "1257558", "photo_flickr_id": "58111342", "setting": "last-3-pick-old-and-tell", "worker_id": "2CD6K5S2XPEG1CK", "story_id": "45449", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "chrissie took one photo of my house before leaving the party .", "storylet_id": "227249"}], [{"original_text": "I love the fair.", "album_id": "72157594196991409", "photo_flickr_id": "138575277", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "45450", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i love the fair .", "storylet_id": "227250"}], [{"original_text": "So many guys in skirts.", "album_id": "72157594196991409", "photo_flickr_id": "138573901", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "45450", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "so many guys in skirts .", "storylet_id": "227251"}], [{"original_text": "See, there's a bunch of them.", "album_id": "72157594196991409", "photo_flickr_id": "138573909", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "45450", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "see , there 's a bunch of them .", "storylet_id": "227252"}], [{"original_text": "And some even wear cowboy hats.", "album_id": "72157594196991409", "photo_flickr_id": "140803318", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "45450", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and some even wear cowboy hats .", "storylet_id": "227253"}], [{"original_text": "Why, I do not know.", "album_id": "72157594196991409", "photo_flickr_id": "140803317", "setting": "first-2-pick-and-tell", "worker_id": "70ISGRIWORYQAFR", "story_id": "45450", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "why , i do not know .", "storylet_id": "227254"}], [{"original_text": "Took a trip to Scotland and went to the swap meet.", "album_id": "72157594196991409", "photo_flickr_id": "138573899", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45451", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "took a trip to location and went to the swap meet .", "storylet_id": "227255"}], [{"original_text": "Bought some kilts.", "album_id": "72157594196991409", "photo_flickr_id": "138573903", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45451", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "bought some kilts .", "storylet_id": "227256"}], [{"original_text": "Took a picture with these lovely lads and lasses. ", "album_id": "72157594196991409", "photo_flickr_id": "138575277", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45451", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "took a picture with these lovely lads and lasses .", "storylet_id": "227257"}], [{"original_text": "And then there was this crazy fucker.", "album_id": "72157594196991409", "photo_flickr_id": "138573901", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45451", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and then there was this crazy fucker .", "storylet_id": "227258"}], [{"original_text": "Great time at the Scottish swap meet.", "album_id": "72157594196991409", "photo_flickr_id": "138573909", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45451", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "great time at the scottish swap meet .", "storylet_id": "227259"}], [{"original_text": "We all went camping last weekend.", "album_id": "72157594196991409", "photo_flickr_id": "138573899", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45452", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all went camping last weekend .", "storylet_id": "227260"}], [{"original_text": "We didn't know how so we went to get some instruction.", "album_id": "72157594196991409", "photo_flickr_id": "138573903", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45452", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we did n't know how so we went to get some instruction .", "storylet_id": "227261"}], [{"original_text": "There was a guide who was willing to help us.", "album_id": "72157594196991409", "photo_flickr_id": "138575277", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45452", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a guide who was willing to help us .", "storylet_id": "227262"}], [{"original_text": "He was very experienced at camping.", "album_id": "72157594196991409", "photo_flickr_id": "138573901", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45452", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he was very experienced at camping .", "storylet_id": "227263"}], [{"original_text": "We all got together to pay attention to the instructions he was going to give us.", "album_id": "72157594196991409", "photo_flickr_id": "138573909", "setting": "last-3-pick-old-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45452", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all got together to pay attention to the instructions he was going to give us .", "storylet_id": "227264"}], [{"original_text": "My friends and I went to a Renaissance fair today. ", "album_id": "72157594196991409", "photo_flickr_id": "138575277", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45453", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i went to a renaissance fair today .", "storylet_id": "227265"}], [{"original_text": "Our friend John was making kilts for us. ", "album_id": "72157594196991409", "photo_flickr_id": "138573901", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45453", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "our friend [male] was making kilts for us .", "storylet_id": "227266"}], [{"original_text": "Later some women came out during a parade. ", "album_id": "72157594196991409", "photo_flickr_id": "138573909", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45453", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "later some women came out during a parade .", "storylet_id": "227267"}], [{"original_text": "I got my dad to try on a kilt. ", "album_id": "72157594196991409", "photo_flickr_id": "140803318", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45453", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i got my dad to try on a kilt .", "storylet_id": "227268"}], [{"original_text": "He actually thought the kilt looked good on him. ", "album_id": "72157594196991409", "photo_flickr_id": "140803317", "setting": "last-3-pick-old-and-tell", "worker_id": "CHKMP4AOCCKY6WC", "story_id": "45453", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he actually thought the kilt looked good on him .", "storylet_id": "227269"}], [{"original_text": "This man drinks up before getting started in his day of selling utility kilts.", "album_id": "72157594196991409", "photo_flickr_id": "138573899", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "45454", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "this man drinks up before getting started in his day of selling utility kilts .", "storylet_id": "227270"}], [{"original_text": "Time to get the kilts on the racks.", "album_id": "72157594196991409", "photo_flickr_id": "138573903", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "45454", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "time to get the kilts on the racks .", "storylet_id": "227271"}], [{"original_text": "Some happy customers pose together in their new kilts.", "album_id": "72157594196991409", "photo_flickr_id": "138575277", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "45454", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "some happy customers pose together in their new kilts .", "storylet_id": "227272"}], [{"original_text": "A first time kilt buyer tries on several before he decides on this one.", "album_id": "72157594196991409", "photo_flickr_id": "138573901", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "45454", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a first time kilt buyer tries on several before he decides on this one .", "storylet_id": "227273"}], [{"original_text": "Many people came by for the sale before the day was over.", "album_id": "72157594196991409", "photo_flickr_id": "138573909", "setting": "last-3-pick-old-and-tell", "worker_id": "FHCIA7BA27KHXCA", "story_id": "45454", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "many people came by for the sale before the day was over .", "storylet_id": "227274"}], [{"original_text": "The photo shoot for the engagement was very fun.", "album_id": "72157594151770983", "photo_flickr_id": "157781531", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45455", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the photo shoot for the engagement was very fun .", "storylet_id": "227275"}], [{"original_text": "We had to try out the black and whites.", "album_id": "72157594151770983", "photo_flickr_id": "157781485", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45455", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had to try out the black and whites .", "storylet_id": "227276"}], [{"original_text": "Our favorites were in color though.", "album_id": "72157594151770983", "photo_flickr_id": "159554739", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45455", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "our favorites were in color though .", "storylet_id": "227277"}], [{"original_text": "The day was bright and beautiful.", "album_id": "72157594151770983", "photo_flickr_id": "158483319", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45455", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the day was bright and beautiful .", "storylet_id": "227278"}], [{"original_text": "The funny ones will always be remembered.", "album_id": "72157594151770983", "photo_flickr_id": "157781349", "setting": "first-2-pick-and-tell", "worker_id": "80EZOL9QL7T16K1", "story_id": "45455", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the funny ones will always be remembered .", "storylet_id": "227279"}], [{"original_text": "My hunny and I decided to spend a day picture taking.", "album_id": "72157594151770983", "photo_flickr_id": "157781531", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "45456", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my hunny and i decided to spend a day picture taking .", "storylet_id": "227280"}], [{"original_text": "Jerry told such a great joke. It had me in stitches.", "album_id": "72157594151770983", "photo_flickr_id": "157781485", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "45456", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] told such a great joke . it had me in stitches .", "storylet_id": "227281"}], [{"original_text": "The arch at our local city hall was perfect on this bright day.", "album_id": "72157594151770983", "photo_flickr_id": "157781206", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "45456", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the arch at our local city hall was perfect on this bright day .", "storylet_id": "227282"}], [{"original_text": "My hunny and I look so great together. I can't wait to spend the rest of my life with him.", "album_id": "72157594151770983", "photo_flickr_id": "157781884", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "45456", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my hunny and i look so great together . i ca n't wait to spend the rest of my life with him .", "storylet_id": "227283"}], [{"original_text": "This gate was so hard to pull apart, but the reward was way worth it.", "album_id": "72157594151770983", "photo_flickr_id": "157781349", "setting": "first-2-pick-and-tell", "worker_id": "I2ENRNR8Y2UUT8F", "story_id": "45456", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this gate was so hard to pull apart , but the reward was way worth it .", "storylet_id": "227284"}], [{"original_text": "The visa was finally granted and was able to present the engagement ring to my girl friend. ", "album_id": "72157594151770983", "photo_flickr_id": "157781531", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "45457", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the visa was finally granted and was able to present the engagement ring to my girl friend .", "storylet_id": "227285"}], [{"original_text": "She is quite happy to be in this country.", "album_id": "72157594151770983", "photo_flickr_id": "157781485", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "45457", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "she is quite happy to be in this country .", "storylet_id": "227286"}], [{"original_text": "I showed her the local monument because I want her to think we will eventually have a nice home.", "album_id": "72157594151770983", "photo_flickr_id": "157781206", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "45457", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i showed her the local monument because i want her to think we will eventually have a nice home .", "storylet_id": "227287"}], [{"original_text": "Her feet were tired after the long flight so I carried her to the embassy.", "album_id": "72157594151770983", "photo_flickr_id": "157781884", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "45457", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "her feet were tired after the long flight so i carried her to the embassy .", "storylet_id": "227288"}], [{"original_text": "The workers locked us out, and we were unable to break past the fence.", "album_id": "72157594151770983", "photo_flickr_id": "157781349", "setting": "last-3-pick-old-and-tell", "worker_id": "HPSS3ZNQMWUIGSS", "story_id": "45457", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the workers locked us out , and we were unable to break past the fence .", "storylet_id": "227289"}], [{"original_text": "The bride to be shows off her diamond ring.", "album_id": "72157594151770983", "photo_flickr_id": "157781531", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "45458", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the bride to be shows off her diamond ring .", "storylet_id": "227290"}], [{"original_text": "A black and white photo of the couple.", "album_id": "72157594151770983", "photo_flickr_id": "157781485", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "45458", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a black and white photo of the couple .", "storylet_id": "227291"}], [{"original_text": "The engaged couple pose for a picture.", "album_id": "72157594151770983", "photo_flickr_id": "159554739", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "45458", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the engaged couple pose for a picture .", "storylet_id": "227292"}], [{"original_text": "The happy couple pose for a photo in the woods.", "album_id": "72157594151770983", "photo_flickr_id": "158483319", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "45458", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the happy couple pose for a photo in the woods .", "storylet_id": "227293"}], [{"original_text": "The soon to bride has locked out the soon to be groom.", "album_id": "72157594151770983", "photo_flickr_id": "157781349", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "45458", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the soon to bride has locked out the soon to be groom .", "storylet_id": "227294"}], [{"original_text": "Lauriebeth and Jamie got engaged last Sunday.", "album_id": "72157594151770983", "photo_flickr_id": "157781531", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45459", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "lauriebeth and [female] got engaged last sunday .", "storylet_id": "227295"}], [{"original_text": "We were all very happy for them. They are a great couple.", "album_id": "72157594151770983", "photo_flickr_id": "157781485", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45459", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we were all very happy for them . they are a great couple .", "storylet_id": "227296"}], [{"original_text": "They posed at church for an official wedding photo.", "album_id": "72157594151770983", "photo_flickr_id": "159554739", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45459", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they posed at church for an official wedding photo .", "storylet_id": "227297"}], [{"original_text": "It looked on the outside like their lives were going to be wonderful.", "album_id": "72157594151770983", "photo_flickr_id": "158483319", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45459", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it looked on the outside like their lives were going to be wonderful .", "storylet_id": "227298"}], [{"original_text": "However, in the parking lot, we witnessed Lauriebeth smash Jamie on the head with a metal bar. They said it was just an illusion based on where we were standing, but I'm not sure.", "album_id": "72157594151770983", "photo_flickr_id": "157781349", "setting": "last-3-pick-old-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45459", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "however , in the parking lot , we witnessed lauriebeth smash [female] on the head with a metal bar . they said it was just an illusion based on where we were standing , but i 'm not sure .", "storylet_id": "227299"}], [{"original_text": "There was a Farm to Table event at the Extension Office.", "album_id": "72157623555139014", "photo_flickr_id": "4406407625", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "45460", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "there was a farm to table event at the organization organization .", "storylet_id": "227300"}], [{"original_text": "Locals could see what was available in their own community.", "album_id": "72157623555139014", "photo_flickr_id": "4406422223", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "45460", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "locals could see what was available in their own community .", "storylet_id": "227301"}], [{"original_text": "There was a lot of information about homesteading.", "album_id": "72157623555139014", "photo_flickr_id": "4407231046", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "45460", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there was a lot of information about homesteading .", "storylet_id": "227302"}], [{"original_text": "One farmer showed the benefit of fresh eggs from her chickens.", "album_id": "72157623555139014", "photo_flickr_id": "4406399565", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "45460", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one farmer showed the benefit of fresh eggs from her chickens .", "storylet_id": "227303"}], [{"original_text": "See how the yolk rises higher and is a deeper color?", "album_id": "72157623555139014", "photo_flickr_id": "4406430073", "setting": "first-2-pick-and-tell", "worker_id": "NINOCQPIFSBIA1K", "story_id": "45460", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "see how the yolk rises higher and is a deeper color ?", "storylet_id": "227304"}], [{"original_text": "I'm a food buyer for a major American grocery store chain.", "album_id": "72157623555139014", "photo_flickr_id": "4406399565", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45461", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i 'm a food buyer for a major american grocery store chain .", "storylet_id": "227305"}], [{"original_text": "I got to a lot of food conferences, and see a lot of strange food ideas.", "album_id": "72157623555139014", "photo_flickr_id": "4406414029", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45461", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got to a lot of food conferences , and see a lot of strange food ideas .", "storylet_id": "227306"}], [{"original_text": "This kale and brown rice meal will not catch on, I don't think.", "album_id": "72157623555139014", "photo_flickr_id": "4407156630", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45461", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this kale and brown rice meal will not catch on , i do n't think .", "storylet_id": "227307"}], [{"original_text": "People are so earnest about their food booths, it's hard to discourage them.", "album_id": "72157623555139014", "photo_flickr_id": "4407222948", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45461", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people are so earnest about their food booths , it 's hard to discourage them .", "storylet_id": "227308"}], [{"original_text": "This egg looked like any other egg to me, but the vendors thought it was different somehow!", "album_id": "72157623555139014", "photo_flickr_id": "4406430073", "setting": "first-2-pick-and-tell", "worker_id": "R5N2Z0QPGOWP8KR", "story_id": "45461", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this egg looked like any other egg to me , but the vendors thought it was different somehow !", "storylet_id": "227309"}], [{"original_text": "A woman looks at a display while another explains it to her.", "album_id": "72157623555139014", "photo_flickr_id": "4406399565", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "45462", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a woman looks at a display while another explains it to her .", "storylet_id": "227310"}], [{"original_text": "A man receives information from the other that is presenting his work.", "album_id": "72157623555139014", "photo_flickr_id": "4406414029", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "45462", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a man receives information from the other that is presenting his work .", "storylet_id": "227311"}], [{"original_text": "A young lady looks at the bowls full of food.", "album_id": "72157623555139014", "photo_flickr_id": "4407156630", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "45462", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "a young lady looks at the bowls full of food .", "storylet_id": "227312"}], [{"original_text": "A man tells a woman what his presentation is about.", "album_id": "72157623555139014", "photo_flickr_id": "4407222948", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "45462", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a man tells a woman what his presentation is about .", "storylet_id": "227313"}], [{"original_text": "There's an egg on a plate that's been cracked and the yolk is sitting on the plate.", "album_id": "72157623555139014", "photo_flickr_id": "4406430073", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "45462", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there 's an egg on a plate that 's been cracked and the yolk is sitting on the plate .", "storylet_id": "227314"}], [{"original_text": "I went to a fair that had lots of different foods and drinks. ", "album_id": "72157623555139014", "photo_flickr_id": "4406399565", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45463", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a fair that had lots of different foods and drinks .", "storylet_id": "227315"}], [{"original_text": "One of the people explained where the food came from, and what it was. ", "album_id": "72157623555139014", "photo_flickr_id": "4406414029", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45463", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "one of the people explained where the food came from , and what it was .", "storylet_id": "227316"}], [{"original_text": "This particular dish was one of my favorites. ", "album_id": "72157623555139014", "photo_flickr_id": "4407156630", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45463", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this particular dish was one of my favorites .", "storylet_id": "227317"}], [{"original_text": "They also taught us how to make some of the foods. ", "album_id": "72157623555139014", "photo_flickr_id": "4407222948", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45463", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also taught us how to make some of the foods .", "storylet_id": "227318"}], [{"original_text": "This was my attempt at cracking an egg. ", "album_id": "72157623555139014", "photo_flickr_id": "4406430073", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45463", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this was my attempt at cracking an egg .", "storylet_id": "227319"}], [{"original_text": "My friend and I helped volunteer at a local market booth last weekend.", "album_id": "72157623555139014", "photo_flickr_id": "4406407625", "setting": "last-3-pick-old-and-tell", "worker_id": "18BPEHYD2YUHXVQ", "story_id": "45464", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friend and i helped volunteer at a local market booth last weekend .", "storylet_id": "227320"}], [{"original_text": "There were people at other booths around us giving out free food samples.", "album_id": "72157623555139014", "photo_flickr_id": "4406422223", "setting": "last-3-pick-old-and-tell", "worker_id": "18BPEHYD2YUHXVQ", "story_id": "45464", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were people at other booths around us giving out free food samples .", "storylet_id": "227321"}], [{"original_text": "Others were explaining environmental impacts of house construction.", "album_id": "72157623555139014", "photo_flickr_id": "4407231046", "setting": "last-3-pick-old-and-tell", "worker_id": "18BPEHYD2YUHXVQ", "story_id": "45464", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "others were explaining environmental impacts of house construction .", "storylet_id": "227322"}], [{"original_text": "One of the women left her plate of food where she shouldn't have.", "album_id": "72157623555139014", "photo_flickr_id": "4406399565", "setting": "last-3-pick-old-and-tell", "worker_id": "18BPEHYD2YUHXVQ", "story_id": "45464", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "one of the women left her plate of food where she should n't have .", "storylet_id": "227323"}], [{"original_text": "A volunteer pointed at the plate to show her she was wrong.", "album_id": "72157623555139014", "photo_flickr_id": "4406430073", "setting": "last-3-pick-old-and-tell", "worker_id": "18BPEHYD2YUHXVQ", "story_id": "45464", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a volunteer pointed at the plate to show her she was wrong .", "storylet_id": "227324"}], [{"original_text": "Alright guys, sneak peek into my night club, due to open up in 2 weeks!", "album_id": "72157623367722036", "photo_flickr_id": "4335624151", "setting": "first-2-pick-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "45465", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "alright guys , sneak peek into my night club , due to open up in 2 weeks !", "storylet_id": "227325"}], [{"original_text": "You'll find these nifty little light displays everywhere, we don't know what the point is, but they look fun, so we got tons!", "album_id": "72157623367722036", "photo_flickr_id": "4335623053", "setting": "first-2-pick-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "45465", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "you 'll find these nifty little light displays everywhere , we do n't know what the point is , but they look fun , so we got tons !", "storylet_id": "227326"}], [{"original_text": "Welcome to the bathroom, we thought you'd \"go\" better with an audience, wink wink.", "album_id": "72157623367722036", "photo_flickr_id": "4336370200", "setting": "first-2-pick-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "45465", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "welcome to the bathroom , we thought you 'd `` go '' better with an audience , wink wink .", "storylet_id": "227327"}], [{"original_text": "See these guys?! Can't find a date? No worries, when the music starts, here's your dance partner! ", "album_id": "72157623367722036", "photo_flickr_id": "4335625115", "setting": "first-2-pick-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "45465", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "see these guys ? ! ca n't find a date ? no worries , when the music starts , here 's your dance partner !", "storylet_id": "227328"}], [{"original_text": "Here is our virtual DJ, he's useless as we just have a CD playing in the back, but he'll make you think we have a live DJ all night long!", "album_id": "72157623367722036", "photo_flickr_id": "4336371068", "setting": "first-2-pick-and-tell", "worker_id": "HJ9HHLMPEWE7WDB", "story_id": "45465", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "here is our virtual dj , he 's useless as we just have a cd playing in the back , but he 'll make you think we have a live dj all night long !", "storylet_id": "227329"}], [{"original_text": "The art museum had new art works.", "album_id": "72157623367722036", "photo_flickr_id": "4336367956", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "45466", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the art museum had new art works .", "storylet_id": "227330"}], [{"original_text": "All the art was based on lights.", "album_id": "72157623367722036", "photo_flickr_id": "4335622789", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "45466", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "all the art was based on lights .", "storylet_id": "227331"}], [{"original_text": "This one has red lights.", "album_id": "72157623367722036", "photo_flickr_id": "4335623371", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "45466", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this one has red lights .", "storylet_id": "227332"}], [{"original_text": "The many lights piece was interesting.", "album_id": "72157623367722036", "photo_flickr_id": "4335624151", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "45466", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the many lights piece was interesting .", "storylet_id": "227333"}], [{"original_text": "This one looks like star.", "album_id": "72157623367722036", "photo_flickr_id": "4336372118", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "45466", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this one looks like star .", "storylet_id": "227334"}], [{"original_text": "I was invited to see rain art at the craft center today. ", "album_id": "72157623367722036", "photo_flickr_id": "4335624151", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45467", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i was invited to see rain art at the craft center today .", "storylet_id": "227335"}], [{"original_text": "The blue rays of water were moved around with electricity and gravity. It was amazing. ", "album_id": "72157623367722036", "photo_flickr_id": "4335623053", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45467", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the blue rays of water were moved around with electricity and gravity . it was amazing .", "storylet_id": "227336"}], [{"original_text": "I found a wall of eyes. It was rather creepy. ", "album_id": "72157623367722036", "photo_flickr_id": "4336370200", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45467", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i found a wall of eyes . it was rather creepy .", "storylet_id": "227337"}], [{"original_text": "More rain art but this time it was displaying bodies inside it. ", "album_id": "72157623367722036", "photo_flickr_id": "4335625115", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45467", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "more rain art but this time it was displaying bodies inside it .", "storylet_id": "227338"}], [{"original_text": "The last picture I took was of an alien rain body. It was so red and amazing. I never want to leave this amazing place. ", "album_id": "72157623367722036", "photo_flickr_id": "4336371068", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45467", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last picture i took was of an alien rain body . it was so red and amazing . i never want to leave this amazing place .", "storylet_id": "227339"}], [{"original_text": "Strands of hanging blue lights light up a dark room.", "album_id": "72157623367722036", "photo_flickr_id": "4335624151", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "45468", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "strands of hanging blue lights light up a dark room .", "storylet_id": "227340"}], [{"original_text": "A machine makes a unique light show.", "album_id": "72157623367722036", "photo_flickr_id": "4335623053", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "45468", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a machine makes a unique light show .", "storylet_id": "227341"}], [{"original_text": "Pictures of different eyes on stands are a unique piece of art.", "album_id": "72157623367722036", "photo_flickr_id": "4336370200", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "45468", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "pictures of different eyes on stands are a unique piece of art .", "storylet_id": "227342"}], [{"original_text": "Strands of lights are put together to represent humans.", "album_id": "72157623367722036", "photo_flickr_id": "4335625115", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "45468", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "strands of lights are put together to represent humans .", "storylet_id": "227343"}], [{"original_text": "This jar holds lights making different red shapes.", "album_id": "72157623367722036", "photo_flickr_id": "4336371068", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "45468", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this jar holds lights making different red shapes .", "storylet_id": "227344"}], [{"original_text": "The new lighted curtains were designed to relax the atmosphere.", "album_id": "72157623367722036", "photo_flickr_id": "4335624151", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45469", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the new lighted curtains were designed to relax the atmosphere .", "storylet_id": "227345"}], [{"original_text": "There was even a machine that created spiral holograms in the air", "album_id": "72157623367722036", "photo_flickr_id": "4335623053", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45469", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was even a machine that created spiral holograms in the air", "storylet_id": "227346"}], [{"original_text": "The lighted picture frames were my favorite at the light art show.", "album_id": "72157623367722036", "photo_flickr_id": "4336370200", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45469", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the lighted picture frames were my favorite at the light art show .", "storylet_id": "227347"}], [{"original_text": "Then there was the light curtains that were perfect for Halloween.", "album_id": "72157623367722036", "photo_flickr_id": "4335625115", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45469", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then there was the light curtains that were perfect for halloween .", "storylet_id": "227348"}], [{"original_text": "It is amazing how lights can be used to depict different symbols.", "album_id": "72157623367722036", "photo_flickr_id": "4336371068", "setting": "last-3-pick-old-and-tell", "worker_id": "56X6GIMD2K69TB5", "story_id": "45469", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it is amazing how lights can be used to depict different symbols .", "storylet_id": "227349"}], [{"original_text": "I liked the way the day started out today.", "album_id": "72157623377229572", "photo_flickr_id": "4335514877", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45470", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i liked the way the day started out today .", "storylet_id": "227350"}], [{"original_text": "It was sunny and clear.", "album_id": "72157623377229572", "photo_flickr_id": "4335924136", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45470", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it was sunny and clear .", "storylet_id": "227351"}], [{"original_text": "Soon the skies began to get very dark.", "album_id": "72157623377229572", "photo_flickr_id": "4333385077", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45470", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "soon the skies began to get very dark .", "storylet_id": "227352"}], [{"original_text": "Visibility got very bad.", "album_id": "72157623377229572", "photo_flickr_id": "4334441576", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45470", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "visibility got very bad .", "storylet_id": "227353"}], [{"original_text": "We decided to take a break and get something to eat.", "album_id": "72157623377229572", "photo_flickr_id": "4336005943", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45470", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we decided to take a break and get something to eat .", "storylet_id": "227354"}], [{"original_text": "Today we went snow shoeing in Alaska.", "album_id": "72157623377229572", "photo_flickr_id": "4333390263", "setting": "first-2-pick-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "45471", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today we went snow shoeing in location .", "storylet_id": "227355"}], [{"original_text": "The weather was perfect for an outdoor excursion.", "album_id": "72157623377229572", "photo_flickr_id": "4335514877", "setting": "first-2-pick-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "45471", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the weather was perfect for an outdoor excursion .", "storylet_id": "227356"}], [{"original_text": "We stopped at a korean restaurant in Juneau.", "album_id": "72157623377229572", "photo_flickr_id": "4336734316", "setting": "first-2-pick-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "45471", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we stopped at a korean restaurant in location .", "storylet_id": "227357"}], [{"original_text": "I got a dish that sort of looked like sloppy joes!", "album_id": "72157623377229572", "photo_flickr_id": "4336004069", "setting": "first-2-pick-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "45471", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i got a dish that sort of looked like sloppy joes !", "storylet_id": "227358"}], [{"original_text": "My husbands dish resembled spaghetti with cheese.", "album_id": "72157623377229572", "photo_flickr_id": "4336005943", "setting": "first-2-pick-and-tell", "worker_id": "QF1Z1G5C29GVDU5", "story_id": "45471", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my husbands dish resembled spaghetti with cheese .", "storylet_id": "227359"}], [{"original_text": "We did a little snowboarding today. ", "album_id": "72157623377229572", "photo_flickr_id": "4335514877", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "45472", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we did a little snowboarding today .", "storylet_id": "227360"}], [{"original_text": "The slopes were pretty empty. ", "album_id": "72157623377229572", "photo_flickr_id": "4335924136", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "45472", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the slopes were pretty empty .", "storylet_id": "227361"}], [{"original_text": "It looked like snow, so more people came out for the possible fresh powder. ", "album_id": "72157623377229572", "photo_flickr_id": "4333385077", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "45472", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it looked like snow , so more people came out for the possible fresh powder .", "storylet_id": "227362"}], [{"original_text": "It got pretty snowy. ", "album_id": "72157623377229572", "photo_flickr_id": "4334441576", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "45472", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "it got pretty snowy .", "storylet_id": "227363"}], [{"original_text": "We went inside for a big plate of pasta in cream sauce. ", "album_id": "72157623377229572", "photo_flickr_id": "4336005943", "setting": "last-3-pick-old-and-tell", "worker_id": "DJD3ZPUY669HFF2", "story_id": "45472", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we went inside for a big plate of pasta in cream sauce .", "storylet_id": "227364"}], [{"original_text": "They spent the day cross-country skiing.", "album_id": "72157623377229572", "photo_flickr_id": "4333390263", "setting": "last-3-pick-old-and-tell", "worker_id": "65KWJT4YRO63Z45", "story_id": "45473", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "they spent the day cross-country skiing .", "storylet_id": "227365"}], [{"original_text": "There was a restaurant off in the distance .", "album_id": "72157623377229572", "photo_flickr_id": "4335514877", "setting": "last-3-pick-old-and-tell", "worker_id": "65KWJT4YRO63Z45", "story_id": "45473", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was a restaurant off in the distance .", "storylet_id": "227366"}], [{"original_text": "They looked over the menu, eager for some hot food.", "album_id": "72157623377229572", "photo_flickr_id": "4336734316", "setting": "last-3-pick-old-and-tell", "worker_id": "65KWJT4YRO63Z45", "story_id": "45473", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they looked over the menu , eager for some hot food .", "storylet_id": "227367"}], [{"original_text": "A rich meaty meal with fresh bread.", "album_id": "72157623377229572", "photo_flickr_id": "4336004069", "setting": "last-3-pick-old-and-tell", "worker_id": "65KWJT4YRO63Z45", "story_id": "45473", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a rich meaty meal with fresh bread .", "storylet_id": "227368"}], [{"original_text": "Everyone devoured the fettucine alfredo, the perfect sustenance.", "album_id": "72157623377229572", "photo_flickr_id": "4336005943", "setting": "last-3-pick-old-and-tell", "worker_id": "65KWJT4YRO63Z45", "story_id": "45473", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone devoured the fettucine alfredo , the perfect sustenance .", "storylet_id": "227369"}], [{"original_text": "We started at the top of the slope in the morning.", "album_id": "72157623377229572", "photo_flickr_id": "4335514877", "setting": "last-3-pick-old-and-tell", "worker_id": "UMQ0H39B1O5LTA7", "story_id": "45474", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we started at the top of the slope in the morning .", "storylet_id": "227370"}], [{"original_text": "We made our way down the slope slowly.", "album_id": "72157623377229572", "photo_flickr_id": "4335924136", "setting": "last-3-pick-old-and-tell", "worker_id": "UMQ0H39B1O5LTA7", "story_id": "45474", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we made our way down the slope slowly .", "storylet_id": "227371"}], [{"original_text": "It got a little cloudy outside and the conditions seemed dangerous.", "album_id": "72157623377229572", "photo_flickr_id": "4333385077", "setting": "last-3-pick-old-and-tell", "worker_id": "UMQ0H39B1O5LTA7", "story_id": "45474", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it got a little cloudy outside and the conditions seemed dangerous .", "storylet_id": "227372"}], [{"original_text": "We made it to the bottom safely.", "album_id": "72157623377229572", "photo_flickr_id": "4334441576", "setting": "last-3-pick-old-and-tell", "worker_id": "UMQ0H39B1O5LTA7", "story_id": "45474", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we made it to the bottom safely .", "storylet_id": "227373"}], [{"original_text": "At the end of the day we had some spaghetti.", "album_id": "72157623377229572", "photo_flickr_id": "4336005943", "setting": "last-3-pick-old-and-tell", "worker_id": "UMQ0H39B1O5LTA7", "story_id": "45474", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end of the day we had some spaghetti .", "storylet_id": "227374"}], [{"original_text": "Today was parents night at my school, lots of parents were waiting to meet the teachers. ", "album_id": "72157623565659140", "photo_flickr_id": "4411298276", "setting": "first-2-pick-and-tell", "worker_id": "HR1HW5KCUBTKNYJ", "story_id": "45475", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was parents night at my school , lots of parents were waiting to meet the teachers .", "storylet_id": "227375"}], [{"original_text": "My mom met my math teacher and were joking about when I dropped my notebook in class and everyone laughed. ", "album_id": "72157623565659140", "photo_flickr_id": "4411299140", "setting": "first-2-pick-and-tell", "worker_id": "HR1HW5KCUBTKNYJ", "story_id": "45475", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "my mom met my math teacher and were joking about when i dropped my notebook in class and everyone laughed .", "storylet_id": "227376"}], [{"original_text": "Mom wanted to talk to my teacher alone for a minute to make sure that I've been good so far this year. ", "album_id": "72157623565659140", "photo_flickr_id": "4411298962", "setting": "first-2-pick-and-tell", "worker_id": "HR1HW5KCUBTKNYJ", "story_id": "45475", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "mom wanted to talk to my teacher alone for a minute to make sure that i 've been good so far this year .", "storylet_id": "227377"}], [{"original_text": "Once that my mom got done talking to him my science teacher came in to meet everyone, too. ", "album_id": "72157623565659140", "photo_flickr_id": "4411299470", "setting": "first-2-pick-and-tell", "worker_id": "HR1HW5KCUBTKNYJ", "story_id": "45475", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "once that my mom got done talking to him my science teacher came in to meet everyone , too .", "storylet_id": "227378"}], [{"original_text": "Before we were all done my class mates all wanted to take a picture together with our teacher. ", "album_id": "72157623565659140", "photo_flickr_id": "4411300190", "setting": "first-2-pick-and-tell", "worker_id": "HR1HW5KCUBTKNYJ", "story_id": "45475", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "before we were all done my class mates all wanted to take a picture together with our teacher .", "storylet_id": "227379"}], [{"original_text": "We took a trip to a convention last month.", "album_id": "72157623565659140", "photo_flickr_id": "4411298276", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "45476", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we took a trip to a convention last month .", "storylet_id": "227380"}], [{"original_text": "We saw all kinds of people and a lot of good friends were there.", "album_id": "72157623565659140", "photo_flickr_id": "4410531327", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "45476", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw all kinds of people and a lot of good friends were there .", "storylet_id": "227381"}], [{"original_text": "There were a lot of great speakers that told many stories.", "album_id": "72157623565659140", "photo_flickr_id": "4410531479", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "45476", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were a lot of great speakers that told many stories .", "storylet_id": "227382"}], [{"original_text": "This is the group of people that we went there with.", "album_id": "72157623565659140", "photo_flickr_id": "4411299658", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "45476", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "this is the group of people that we went there with .", "storylet_id": "227383"}], [{"original_text": "We all took this picture as we were on our way to go the airport.", "album_id": "72157623565659140", "photo_flickr_id": "4411300190", "setting": "first-2-pick-and-tell", "worker_id": "K0L5413NN669UYS", "story_id": "45476", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we all took this picture as we were on our way to go the airport .", "storylet_id": "227384"}], [{"original_text": "Some friends and I went to a local conference. ", "album_id": "72157623565659140", "photo_flickr_id": "4411298276", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45477", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "some friends and i went to a local conference .", "storylet_id": "227385"}], [{"original_text": "The first speaker spoke about goals. ", "album_id": "72157623565659140", "photo_flickr_id": "4410531327", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45477", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the first speaker spoke about goals .", "storylet_id": "227386"}], [{"original_text": "The next speaker was my favorite, because he was interesting and funny.", "album_id": "72157623565659140", "photo_flickr_id": "4410531479", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45477", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the next speaker was my favorite , because he was interesting and funny .", "storylet_id": "227387"}], [{"original_text": "All of my friends and I took a picture together. ", "album_id": "72157623565659140", "photo_flickr_id": "4411299658", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45477", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "all of my friends and i took a picture together .", "storylet_id": "227388"}], [{"original_text": "We even included the speakers in our pic. ", "album_id": "72157623565659140", "photo_flickr_id": "4411300190", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45477", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we even included the speakers in our pic .", "storylet_id": "227389"}], [{"original_text": "A group of people gather together in a large room.", "album_id": "72157623565659140", "photo_flickr_id": "4411298276", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "45478", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of people gather together in a large room .", "storylet_id": "227390"}], [{"original_text": "A man in a tie poses with children.", "album_id": "72157623565659140", "photo_flickr_id": "4411299140", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "45478", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a man in a tie poses with children .", "storylet_id": "227391"}], [{"original_text": "The man takes a picture with just the young girl.", "album_id": "72157623565659140", "photo_flickr_id": "4411298962", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "45478", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the man takes a picture with just the young girl .", "storylet_id": "227392"}], [{"original_text": "Adults and children gather together for pictures.", "album_id": "72157623565659140", "photo_flickr_id": "4411299470", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "45478", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "adults and children gather together for pictures .", "storylet_id": "227393"}], [{"original_text": "They all pose for pictures to remember their day.", "album_id": "72157623565659140", "photo_flickr_id": "4411300190", "setting": "last-3-pick-old-and-tell", "worker_id": "A6FMZ2L3Z2PB6UG", "story_id": "45478", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they all pose for pictures to remember their day .", "storylet_id": "227394"}], [{"original_text": "We all gathered in the meeting room.", "album_id": "72157623565659140", "photo_flickr_id": "4411298276", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "45479", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we all gathered in the meeting room .", "storylet_id": "227395"}], [{"original_text": "Almost all the seats were full.", "album_id": "72157623565659140", "photo_flickr_id": "4410531327", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "45479", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "almost all the seats were full .", "storylet_id": "227396"}], [{"original_text": "We listened as the guest speaker thanked us for our efforts.", "album_id": "72157623565659140", "photo_flickr_id": "4410531479", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "45479", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we listened as the guest speaker thanked us for our efforts .", "storylet_id": "227397"}], [{"original_text": "Afterwards we all gathered for a picture.", "album_id": "72157623565659140", "photo_flickr_id": "4411299658", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "45479", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "afterwards we all gathered for a picture .", "storylet_id": "227398"}], [{"original_text": "We made sure to smile!", "album_id": "72157623565659140", "photo_flickr_id": "4411300190", "setting": "last-3-pick-old-and-tell", "worker_id": "0QNTLKJV12EH0PA", "story_id": "45479", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we made sure to smile !", "storylet_id": "227399"}], [{"original_text": "it was time for the scout meeting", "album_id": "72157623379045494", "photo_flickr_id": "4341065704", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "45480", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was time for the scout meeting", "storylet_id": "227400"}], [{"original_text": "the kids stood in line to show their respect", "album_id": "72157623379045494", "photo_flickr_id": "4340982672", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "45480", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the kids stood in line to show their respect", "storylet_id": "227401"}], [{"original_text": "the older kids looked on", "album_id": "72157623379045494", "photo_flickr_id": "4340983942", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "45480", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the older kids looked on", "storylet_id": "227402"}], [{"original_text": "here they were recruiting new members", "album_id": "72157623379045494", "photo_flickr_id": "4340990342", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "45480", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "here they were recruiting new members", "storylet_id": "227403"}], [{"original_text": "all the old and new members saluted ", "album_id": "72157623379045494", "photo_flickr_id": "4340250607", "setting": "first-2-pick-and-tell", "worker_id": "KNIGPMVRX6MHRIB", "story_id": "45480", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "all the old and new members saluted", "storylet_id": "227404"}], [{"original_text": "the presentation started with a bang.", "album_id": "72157623379045494", "photo_flickr_id": "4341065704", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "45481", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the presentation started with a bang .", "storylet_id": "227405"}], [{"original_text": "The troop really impressed the crowd.", "album_id": "72157623379045494", "photo_flickr_id": "4340982672", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "45481", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the troop really impressed the crowd .", "storylet_id": "227406"}], [{"original_text": "All the kids had a chance to present. ", "album_id": "72157623379045494", "photo_flickr_id": "4340243087", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "45481", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the kids had a chance to present .", "storylet_id": "227407"}], [{"original_text": "Some kids presented one-on-one.", "album_id": "72157623379045494", "photo_flickr_id": "4340990342", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "45481", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some kids presented one-on-one .", "storylet_id": "227408"}], [{"original_text": "Fun was had by all.", "album_id": "72157623379045494", "photo_flickr_id": "4340249213", "setting": "first-2-pick-and-tell", "worker_id": "3OPTOWR8EKX0D50", "story_id": "45481", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "fun was had by all .", "storylet_id": "227409"}], [{"original_text": "The meeting for awards for the boy's club was well attended and led by the leaders.", "album_id": "72157623379045494", "photo_flickr_id": "4341065704", "setting": "last-3-pick-old-and-tell", "worker_id": "0F327DY3L5W5Y5L", "story_id": "45482", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the meeting for awards for the boy 's club was well attended and led by the leaders .", "storylet_id": "227410"}], [{"original_text": "It began with the saying of the pledges.", "album_id": "72157623379045494", "photo_flickr_id": "4340982672", "setting": "last-3-pick-old-and-tell", "worker_id": "0F327DY3L5W5Y5L", "story_id": "45482", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it began with the saying of the pledges .", "storylet_id": "227411"}], [{"original_text": "Observers included sisters and brothers.", "album_id": "72157623379045494", "photo_flickr_id": "4340983942", "setting": "last-3-pick-old-and-tell", "worker_id": "0F327DY3L5W5Y5L", "story_id": "45482", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "observers included sisters and brothers .", "storylet_id": "227412"}], [{"original_text": "The observers were read the work of the boy's that were posted on the board.", "album_id": "72157623379045494", "photo_flickr_id": "4340990342", "setting": "last-3-pick-old-and-tell", "worker_id": "0F327DY3L5W5Y5L", "story_id": "45482", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the observers were read the work of the boy 's that were posted on the board .", "storylet_id": "227413"}], [{"original_text": "The boys saluted in respect while saying the pledges.", "album_id": "72157623379045494", "photo_flickr_id": "4340250607", "setting": "last-3-pick-old-and-tell", "worker_id": "0F327DY3L5W5Y5L", "story_id": "45482", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the boys saluted in respect while saying the pledges .", "storylet_id": "227414"}], [{"original_text": "The event began with a small word from our sponsor.", "album_id": "72157623379045494", "photo_flickr_id": "4341065704", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45483", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the event began with a small word from our sponsor .", "storylet_id": "227415"}], [{"original_text": "Next, the boy scouts gave a small demo.", "album_id": "72157623379045494", "photo_flickr_id": "4340982672", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45483", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "next , the boy scouts gave a small demo .", "storylet_id": "227416"}], [{"original_text": "All of the participants stood on the stage.", "album_id": "72157623379045494", "photo_flickr_id": "4340243087", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45483", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of the participants stood on the stage .", "storylet_id": "227417"}], [{"original_text": "Some of the students had interesting projects.", "album_id": "72157623379045494", "photo_flickr_id": "4340990342", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45483", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the students had interesting projects .", "storylet_id": "227418"}], [{"original_text": "The scouts took a group picture at the end.", "album_id": "72157623379045494", "photo_flickr_id": "4340249213", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45483", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the scouts took a group picture at the end .", "storylet_id": "227419"}], [{"original_text": "Today was a field tripl", "album_id": "72157623379045494", "photo_flickr_id": "4341065704", "setting": "last-3-pick-old-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45484", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today was a field tripl", "storylet_id": "227420"}], [{"original_text": "Everyone in the class was excited.", "album_id": "72157623379045494", "photo_flickr_id": "4340982672", "setting": "last-3-pick-old-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45484", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone in the class was excited .", "storylet_id": "227421"}], [{"original_text": "All the students engaged in the field trip. ", "album_id": "72157623379045494", "photo_flickr_id": "4340243087", "setting": "last-3-pick-old-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45484", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all the students engaged in the field trip .", "storylet_id": "227422"}], [{"original_text": "We got to talk to each other.", "album_id": "72157623379045494", "photo_flickr_id": "4340990342", "setting": "last-3-pick-old-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45484", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we got to talk to each other .", "storylet_id": "227423"}], [{"original_text": "It was a fun day and we all took pictures.", "album_id": "72157623379045494", "photo_flickr_id": "4340249213", "setting": "last-3-pick-old-and-tell", "worker_id": "XLIT17QIPVQGODY", "story_id": "45484", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was a fun day and we all took pictures .", "storylet_id": "227424"}], [{"original_text": "Decided to take the team out for a pizza dinner and talk about the up coming game.", "album_id": "72157623272811295", "photo_flickr_id": "4345902978", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "45485", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "decided to take the team out for a pizza dinner and talk about the up coming game .", "storylet_id": "227425"}], [{"original_text": "For a while things got a bit serious.We had to tackle some short comings of each player.", "album_id": "72157623272811295", "photo_flickr_id": "4345155159", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "45485", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "for a while things got a bit serious.we had to tackle some short comings of each player .", "storylet_id": "227426"}], [{"original_text": "With much understanding everyone realized that its only to help the team.", "album_id": "72157623272811295", "photo_flickr_id": "4345894216", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "45485", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "with much understanding everyone realized that its only to help the team .", "storylet_id": "227427"}], [{"original_text": "We expressed our concerns and what we should be doing as a whole team.", "album_id": "72157623272811295", "photo_flickr_id": "4345892708", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "45485", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we expressed our concerns and what we should be doing as a whole team .", "storylet_id": "227428"}], [{"original_text": "But overall we had a good time and ate some great pizza", "album_id": "72157623272811295", "photo_flickr_id": "4345887692", "setting": "first-2-pick-and-tell", "worker_id": "C9WHQHL0KGXNVKH", "story_id": "45485", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but overall we had a good time and ate some great pizza", "storylet_id": "227429"}], [{"original_text": "These friends are all celebrating winning a speech competition. ", "album_id": "72157623272811295", "photo_flickr_id": "4345164085", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "45486", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "these friends are all celebrating winning a speech competition .", "storylet_id": "227430"}], [{"original_text": "The had it at the pizza place where one of them works. ", "album_id": "72157623272811295", "photo_flickr_id": "4345887692", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "45486", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the had it at the pizza place where one of them works .", "storylet_id": "227431"}], [{"original_text": "The pizza went pretty fast. ", "album_id": "72157623272811295", "photo_flickr_id": "4345928050", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "45486", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the pizza went pretty fast .", "storylet_id": "227432"}], [{"original_text": "Some guests were underage siblings. ", "album_id": "72157623272811295", "photo_flickr_id": "4345891088", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "45486", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some guests were underage siblings .", "storylet_id": "227433"}], [{"original_text": "But those old enough also got to take part in the all you can drink beer offer. ", "album_id": "72157623272811295", "photo_flickr_id": "4345889308", "setting": "first-2-pick-and-tell", "worker_id": "JNEGORL9BM9YZ8R", "story_id": "45486", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "but those old enough also got to take part in the all you can drink beer offer .", "storylet_id": "227434"}], [{"original_text": "Friends gather for lunch at the pizza shop.", "album_id": "72157623272811295", "photo_flickr_id": "4345164085", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "45487", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "friends gather for lunch at the pizza shop .", "storylet_id": "227435"}], [{"original_text": "Getting ready to bring the first pizza to the table.", "album_id": "72157623272811295", "photo_flickr_id": "4345887692", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "45487", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "getting ready to bring the first pizza to the table .", "storylet_id": "227436"}], [{"original_text": "The first pizza has almost been finished.", "album_id": "72157623272811295", "photo_flickr_id": "4345928050", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "45487", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the first pizza has almost been finished .", "storylet_id": "227437"}], [{"original_text": "Someone checking their phone for messages.", "album_id": "72157623272811295", "photo_flickr_id": "4345891088", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "45487", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someone checking their phone for messages .", "storylet_id": "227438"}], [{"original_text": "Mugging for the camera, what a ham.", "album_id": "72157623272811295", "photo_flickr_id": "4345889308", "setting": "last-3-pick-old-and-tell", "worker_id": "9SUP0VO6EHTLLDO", "story_id": "45487", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "mugging for the camera , what a ham .", "storylet_id": "227439"}], [{"original_text": "It was the weekly church dinner gathering in the meeting room.", "album_id": "72157623272811295", "photo_flickr_id": "4345164085", "setting": "last-3-pick-old-and-tell", "worker_id": "3USXMVJROO7NZLX", "story_id": "45488", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was the weekly church dinner gathering in the meeting room .", "storylet_id": "227440"}], [{"original_text": "Pan pizza made by the church young people was the featured dish.", "album_id": "72157623272811295", "photo_flickr_id": "4345887692", "setting": "last-3-pick-old-and-tell", "worker_id": "3USXMVJROO7NZLX", "story_id": "45488", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "pan pizza made by the church young people was the featured dish .", "storylet_id": "227441"}], [{"original_text": "The pizza was so good it was devoured by the pan.", "album_id": "72157623272811295", "photo_flickr_id": "4345928050", "setting": "last-3-pick-old-and-tell", "worker_id": "3USXMVJROO7NZLX", "story_id": "45488", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the pizza was so good it was devoured by the pan .", "storylet_id": "227442"}], [{"original_text": "Gerald was in thought as he gave interest to leading the Bible study later in the evening.", "album_id": "72157623272811295", "photo_flickr_id": "4345891088", "setting": "last-3-pick-old-and-tell", "worker_id": "3USXMVJROO7NZLX", "story_id": "45488", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[male] was in thought as he gave interest to leading the bible study later in the evening .", "storylet_id": "227443"}], [{"original_text": "Tommy had onery intent in his eyes as he thought of ways to bring laughter to the evening.", "album_id": "72157623272811295", "photo_flickr_id": "4345889308", "setting": "last-3-pick-old-and-tell", "worker_id": "3USXMVJROO7NZLX", "story_id": "45488", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] had onery intent in his eyes as he thought of ways to bring laughter to the evening .", "storylet_id": "227444"}], [{"original_text": "A bunch of us went to an all-you-can-eat pizza buffet the other day.", "album_id": "72157623272811295", "photo_flickr_id": "4345902978", "setting": "last-3-pick-old-and-tell", "worker_id": "7222UWE1NM58RBC", "story_id": "45489", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a bunch of us went to an all-you-can-eat pizza buffet the other day .", "storylet_id": "227445"}], [{"original_text": "We had a great time catching up with what had been going on in each other's lives.", "album_id": "72157623272811295", "photo_flickr_id": "4345155159", "setting": "last-3-pick-old-and-tell", "worker_id": "7222UWE1NM58RBC", "story_id": "45489", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we had a great time catching up with what had been going on in each other 's lives .", "storylet_id": "227446"}], [{"original_text": "Most of us are newly enrolled in college although we don't all go to the same one.", "album_id": "72157623272811295", "photo_flickr_id": "4345894216", "setting": "last-3-pick-old-and-tell", "worker_id": "7222UWE1NM58RBC", "story_id": "45489", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "most of us are newly enrolled in college although we do n't all go to the same one .", "storylet_id": "227447"}], [{"original_text": "Some of the stories that we heard about some of the fraternity initiations were pretty wild.", "album_id": "72157623272811295", "photo_flickr_id": "4345892708", "setting": "last-3-pick-old-and-tell", "worker_id": "7222UWE1NM58RBC", "story_id": "45489", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "some of the stories that we heard about some of the fraternity initiations were pretty wild .", "storylet_id": "227448"}], [{"original_text": "The manager couldn't believe how many pizza's a group of college kids could go through.", "album_id": "72157623272811295", "photo_flickr_id": "4345887692", "setting": "last-3-pick-old-and-tell", "worker_id": "7222UWE1NM58RBC", "story_id": "45489", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the manager could n't believe how many pizza 's a group of college kids could go through .", "storylet_id": "227449"}], [{"original_text": "The president of the art club was giving the instructions on how to rule the entries to the judges.", "album_id": "72157623473359603", "photo_flickr_id": "4423681221", "setting": "first-2-pick-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "45490", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the president of the art club was giving the instructions on how to rule the entries to the judges .", "storylet_id": "227450"}], [{"original_text": "Everyone paid attention and took notes.", "album_id": "72157623473359603", "photo_flickr_id": "4423681339", "setting": "first-2-pick-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "45490", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "everyone paid attention and took notes .", "storylet_id": "227451"}], [{"original_text": "Afterwards, the entries were shown individually at first on the screen behind them.", "album_id": "72157623473359603", "photo_flickr_id": "4424446686", "setting": "first-2-pick-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "45490", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards , the entries were shown individually at first on the screen behind them .", "storylet_id": "227452"}], [{"original_text": "Then, the finalist entries were all put up together so the top two could be chosen.", "album_id": "72157623473359603", "photo_flickr_id": "4423681875", "setting": "first-2-pick-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "45490", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then , the finalist entries were all put up together so the top two could be chosen .", "storylet_id": "227453"}], [{"original_text": "There were the winning entries, and the vote was unanimous on both!", "album_id": "72157623473359603", "photo_flickr_id": "4423682063", "setting": "first-2-pick-and-tell", "worker_id": "C91ZIFL30WOJFF6", "story_id": "45490", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were the winning entries , and the vote was unanimous on both !", "storylet_id": "227454"}], [{"original_text": "The art fair begins today.", "album_id": "72157623473359603", "photo_flickr_id": "4423683063", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45491", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the art fair begins today .", "storylet_id": "227455"}], [{"original_text": "This unusual art piece combines drawing and writing.", "album_id": "72157623473359603", "photo_flickr_id": "4423682511", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45491", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this unusual art piece combines drawing and writing .", "storylet_id": "227456"}], [{"original_text": "These oil paintings capture birds.", "album_id": "72157623473359603", "photo_flickr_id": "4423683551", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45491", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these oil paintings capture birds .", "storylet_id": "227457"}], [{"original_text": "I've never seen such a colorful pistol as this.", "album_id": "72157623473359603", "photo_flickr_id": "4424448634", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45491", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i 've never seen such a colorful pistol as this .", "storylet_id": "227458"}], [{"original_text": "This wall piece will get your interpretations wondering.", "album_id": "72157623473359603", "photo_flickr_id": "4423683975", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45491", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this wall piece will get your interpretations wondering .", "storylet_id": "227459"}], [{"original_text": "I had to sit through a really boring presentation by the superintendent today.", "album_id": "72157623473359603", "photo_flickr_id": "4423681221", "setting": "last-3-pick-old-and-tell", "worker_id": "18BPEHYD2YUHXVQ", "story_id": "45492", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i had to sit through a really boring presentation by the superintendent today .", "storylet_id": "227460"}], [{"original_text": "There was an old, crotchety man just sitting at a white table the whole time.", "album_id": "72157623473359603", "photo_flickr_id": "4423681339", "setting": "last-3-pick-old-and-tell", "worker_id": "18BPEHYD2YUHXVQ", "story_id": "45492", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there was an old , crotchety man just sitting at a white table the whole time .", "storylet_id": "227461"}], [{"original_text": "Behind the panel of people was a powerpoint slide which nobody wanted to look at.", "album_id": "72157623473359603", "photo_flickr_id": "4424446686", "setting": "last-3-pick-old-and-tell", "worker_id": "18BPEHYD2YUHXVQ", "story_id": "45492", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "behind the panel of people was a powerpoint slide which nobody wanted to look at .", "storylet_id": "227462"}], [{"original_text": "The old man got up and starting pointing at random parts of the slide.", "album_id": "72157623473359603", "photo_flickr_id": "4423681875", "setting": "last-3-pick-old-and-tell", "worker_id": "18BPEHYD2YUHXVQ", "story_id": "45492", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the old man got up and starting pointing at random parts of the slide .", "storylet_id": "227463"}], [{"original_text": "I think he was talking about rainforest conservation, but I was not paying much attention.", "album_id": "72157623473359603", "photo_flickr_id": "4423682063", "setting": "last-3-pick-old-and-tell", "worker_id": "18BPEHYD2YUHXVQ", "story_id": "45492", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think he was talking about rainforest conservation , but i was not paying much attention .", "storylet_id": "227464"}], [{"original_text": "The first speaker of the evening was very interesting.", "album_id": "72157623473359603", "photo_flickr_id": "4423681221", "setting": "last-3-pick-old-and-tell", "worker_id": "JL433DA6O6IR7TT", "story_id": "45493", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the first speaker of the evening was very interesting .", "storylet_id": "227465"}], [{"original_text": "The gentleman sitting next to him was quite interested in the literature the speaker brought with him.", "album_id": "72157623473359603", "photo_flickr_id": "4423681339", "setting": "last-3-pick-old-and-tell", "worker_id": "JL433DA6O6IR7TT", "story_id": "45493", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the gentleman sitting next to him was quite interested in the literature the speaker brought with him .", "storylet_id": "227466"}], [{"original_text": "Everyone on the panel discussed the first speaker's points.", "album_id": "72157623473359603", "photo_flickr_id": "4424446686", "setting": "last-3-pick-old-and-tell", "worker_id": "JL433DA6O6IR7TT", "story_id": "45493", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone on the panel discussed the first speaker 's points .", "storylet_id": "227467"}], [{"original_text": "The next speaker brough visual aids.", "album_id": "72157623473359603", "photo_flickr_id": "4423681875", "setting": "last-3-pick-old-and-tell", "worker_id": "JL433DA6O6IR7TT", "story_id": "45493", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the next speaker brough visual aids .", "storylet_id": "227468"}], [{"original_text": "This speaker wanted everyone to understand the differences and similarities between works of art.", "album_id": "72157623473359603", "photo_flickr_id": "4423682063", "setting": "last-3-pick-old-and-tell", "worker_id": "JL433DA6O6IR7TT", "story_id": "45493", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this speaker wanted everyone to understand the differences and similarities between works of art .", "storylet_id": "227469"}], [{"original_text": "A friend of mine invited me to the Dallas Art Fair. ", "album_id": "72157623473359603", "photo_flickr_id": "4423683063", "setting": "last-3-pick-old-and-tell", "worker_id": "7VYXLND55LWVDUT", "story_id": "45494", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a friend of mine invited me to the [male] art fair .", "storylet_id": "227470"}], [{"original_text": "Many of the attendees would say how each painting made them feel. ", "album_id": "72157623473359603", "photo_flickr_id": "4423682511", "setting": "last-3-pick-old-and-tell", "worker_id": "7VYXLND55LWVDUT", "story_id": "45494", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "many of the attendees would say how each painting made them feel .", "storylet_id": "227471"}], [{"original_text": "I thought that the combination of these colors were pretty. ", "album_id": "72157623473359603", "photo_flickr_id": "4423683551", "setting": "last-3-pick-old-and-tell", "worker_id": "7VYXLND55LWVDUT", "story_id": "45494", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i thought that the combination of these colors were pretty .", "storylet_id": "227472"}], [{"original_text": "Someone said this was an artistic statement about gun control and I thought that was pretentious. ", "album_id": "72157623473359603", "photo_flickr_id": "4424448634", "setting": "last-3-pick-old-and-tell", "worker_id": "7VYXLND55LWVDUT", "story_id": "45494", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "someone said this was an artistic statement about gun control and i thought that was pretentious .", "storylet_id": "227473"}], [{"original_text": "There were some truly amazing pieces at the Art Fair this year. ", "album_id": "72157623473359603", "photo_flickr_id": "4423683975", "setting": "last-3-pick-old-and-tell", "worker_id": "7VYXLND55LWVDUT", "story_id": "45494", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were some truly amazing pieces at the art fair this year .", "storylet_id": "227474"}], [{"original_text": "Art is in the eye of the beholder. It can be in a fish bowl. ", "album_id": "72157623576462226", "photo_flickr_id": "4422562404", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "45495", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "art is in the eye of the beholder . it can be in a fish bowl .", "storylet_id": "227475"}], [{"original_text": "The American Flag can be art. ", "album_id": "72157623576462226", "photo_flickr_id": "4421794909", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "45495", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the american flag can be art .", "storylet_id": "227476"}], [{"original_text": "Art can be funny and make people laugh. ", "album_id": "72157623576462226", "photo_flickr_id": "4415422399", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "45495", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "art can be funny and make people laugh .", "storylet_id": "227477"}], [{"original_text": "Art can be serious and make people think. ", "album_id": "72157623576462226", "photo_flickr_id": "4422562762", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "45495", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "art can be serious and make people think .", "storylet_id": "227478"}], [{"original_text": "Sometimes art makes you ask what the artist could have possibly been thinking about. ", "album_id": "72157623576462226", "photo_flickr_id": "4416189592", "setting": "first-2-pick-and-tell", "worker_id": "WP8AEOVSAS620KE", "story_id": "45495", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "sometimes art makes you ask what the artist could have possibly been thinking about .", "storylet_id": "227479"}], [{"original_text": "Our trip to the art museum. This represents the state of our country... maybe.", "album_id": "72157623576462226", "photo_flickr_id": "4421794909", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45496", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "our trip to the art museum . this represents the state of our country ... maybe .", "storylet_id": "227480"}], [{"original_text": "In a museum, it's art. Still looks like smut to me.", "album_id": "72157623576462226", "photo_flickr_id": "4422560784", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45496", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "in a museum , it 's art . still looks like smut to me .", "storylet_id": "227481"}], [{"original_text": "Yes, that is McDonald's.", "album_id": "72157623576462226", "photo_flickr_id": "4416188294", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45496", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "yes , that is organization 's .", "storylet_id": "227482"}], [{"original_text": "Not really sure what this is supposed to be.", "album_id": "72157623576462226", "photo_flickr_id": "4422561802", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45496", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "not really sure what this is supposed to be .", "storylet_id": "227483"}], [{"original_text": "I think I saw this at the discount store.", "album_id": "72157623576462226", "photo_flickr_id": "4416189048", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45496", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i think i saw this at the discount store .", "storylet_id": "227484"}], [{"original_text": "The art tour started with an unusual but highly artistic painting.", "album_id": "72157623576462226", "photo_flickr_id": "4422562404", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "45497", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the art tour started with an unusual but highly artistic painting .", "storylet_id": "227485"}], [{"original_text": "I took the time to salute the history of my country. ", "album_id": "72157623576462226", "photo_flickr_id": "4421794909", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "45497", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i took the time to salute the history of my country .", "storylet_id": "227486"}], [{"original_text": "But also quickly moved on to hot tub cannon balls. ", "album_id": "72157623576462226", "photo_flickr_id": "4415422399", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "45497", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "but also quickly moved on to hot tub cannon balls .", "storylet_id": "227487"}], [{"original_text": "The gallery was pretty crowded. ", "album_id": "72157623576462226", "photo_flickr_id": "4422562762", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "45497", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the gallery was pretty crowded .", "storylet_id": "227488"}], [{"original_text": "The last picture we saw made me a little uncomfortable. ", "album_id": "72157623576462226", "photo_flickr_id": "4416189592", "setting": "last-3-pick-old-and-tell", "worker_id": "ZDJIGTA0W6PVNU0", "story_id": "45497", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the last picture we saw made me a little uncomfortable .", "storylet_id": "227489"}], [{"original_text": "I went to an art gallery to see some of the new paintings. ", "album_id": "72157623576462226", "photo_flickr_id": "4422562404", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45498", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to an art gallery to see some of the new paintings .", "storylet_id": "227490"}], [{"original_text": "This one looked like an old American flag. ", "album_id": "72157623576462226", "photo_flickr_id": "4421794909", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45498", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one looked like an old american flag .", "storylet_id": "227491"}], [{"original_text": "This piece was interesting, and looked so real. ", "album_id": "72157623576462226", "photo_flickr_id": "4415422399", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45498", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this piece was interesting , and looked so real .", "storylet_id": "227492"}], [{"original_text": "I talked with a few friends about the art pieces. ", "album_id": "72157623576462226", "photo_flickr_id": "4422562762", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45498", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i talked with a few friends about the art pieces .", "storylet_id": "227493"}], [{"original_text": "This picture was one of my favorites. ", "album_id": "72157623576462226", "photo_flickr_id": "4416189592", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45498", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this picture was one of my favorites .", "storylet_id": "227494"}], [{"original_text": "We tried to do some very unique photography shots of the family. ", "album_id": "72157623576462226", "photo_flickr_id": "4422562404", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "45499", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we tried to do some very unique photography shots of the family .", "storylet_id": "227495"}], [{"original_text": "This flag that is carved in wood, is very creative. ", "album_id": "72157623576462226", "photo_flickr_id": "4421794909", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "45499", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this flag that is carved in wood , is very creative .", "storylet_id": "227496"}], [{"original_text": "This photo of my husband and I makes me laugh. ", "album_id": "72157623576462226", "photo_flickr_id": "4415422399", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "45499", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this photo of my husband and i makes me laugh .", "storylet_id": "227497"}], [{"original_text": "We were sitting around waiting to see the results of our photo shoot. ", "album_id": "72157623576462226", "photo_flickr_id": "4422562762", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "45499", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we were sitting around waiting to see the results of our photo shoot .", "storylet_id": "227498"}], [{"original_text": "This photo of my baby I did not like, and I wanted it to be deleted. ", "album_id": "72157623576462226", "photo_flickr_id": "4416189592", "setting": "last-3-pick-old-and-tell", "worker_id": "4P1AIRH7TKAALVK", "story_id": "45499", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this photo of my baby i did not like , and i wanted it to be deleted .", "storylet_id": "227499"}], [{"original_text": "Everyone was very excited to tour the art gallery.", "album_id": "72157623176008591", "photo_flickr_id": "4310249850", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "45500", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "everyone was very excited to tour the art gallery .", "storylet_id": "227500"}], [{"original_text": "The room was very crowded so we had a hard time seeing some of the pieces.", "album_id": "72157623176008591", "photo_flickr_id": "4309436389", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "45500", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "the room was very crowded so we had a hard time seeing some of the pieces .", "storylet_id": "227501"}], [{"original_text": "The best room was filled with brightly colored artwork, everyone loved it.", "album_id": "72157623176008591", "photo_flickr_id": "4309469705", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "45500", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the best room was filled with brightly colored artwork , everyone loved it .", "storylet_id": "227502"}], [{"original_text": "We even had the pleasure of meeting one of the lead artists. ", "album_id": "72157623176008591", "photo_flickr_id": "4309368555", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "45500", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "we even had the pleasure of meeting one of the lead artists .", "storylet_id": "227503"}], [{"original_text": "We had a great time at the art gallery that day. ", "album_id": "72157623176008591", "photo_flickr_id": "4309375019", "setting": "first-2-pick-and-tell", "worker_id": "U0FFNVVAN6QVQ1V", "story_id": "45500", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "we had a great time at the art gallery that day .", "storylet_id": "227504"}], [{"original_text": "John and Sarah went to a design gallery where the new designers showcased their latest piece of work.", "album_id": "72157623176008591", "photo_flickr_id": "4309375019", "setting": "first-2-pick-and-tell", "worker_id": "PW4DGE5KSKTRLY8", "story_id": "45501", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[male] and [female] went to a design gallery where the new designers showcased their latest piece of work .", "storylet_id": "227505"}], [{"original_text": "They saw odd looking pieces that they weren't sure what to do with.", "album_id": "72157623176008591", "photo_flickr_id": "4309548391", "setting": "first-2-pick-and-tell", "worker_id": "PW4DGE5KSKTRLY8", "story_id": "45501", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they saw odd looking pieces that they were n't sure what to do with .", "storylet_id": "227506"}], [{"original_text": "They saw beautifully crafted chandeliers that looked like the ocean.", "album_id": "72157623176008591", "photo_flickr_id": "4309551421", "setting": "first-2-pick-and-tell", "worker_id": "PW4DGE5KSKTRLY8", "story_id": "45501", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they saw beautifully crafted chandeliers that looked like the ocean .", "storylet_id": "227507"}], [{"original_text": "They also saw paintings that looked like rugs.", "album_id": "72157623176008591", "photo_flickr_id": "4310270246", "setting": "first-2-pick-and-tell", "worker_id": "PW4DGE5KSKTRLY8", "story_id": "45501", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also saw paintings that looked like rugs .", "storylet_id": "227508"}], [{"original_text": "They even saw old fashioned armchairs that were redecorated.", "album_id": "72157623176008591", "photo_flickr_id": "4310297252", "setting": "first-2-pick-and-tell", "worker_id": "PW4DGE5KSKTRLY8", "story_id": "45501", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "they even saw old fashioned armchairs that were redecorated .", "storylet_id": "227509"}], [{"original_text": "My boss showed me the new furniture collection line.", "album_id": "72157623176008591", "photo_flickr_id": "4309375019", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45502", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my boss showed me the new furniture collection line .", "storylet_id": "227510"}], [{"original_text": "It had some organic form vases.", "album_id": "72157623176008591", "photo_flickr_id": "4309548391", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45502", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "it had some organic form vases .", "storylet_id": "227511"}], [{"original_text": "It had a hole in the center.", "album_id": "72157623176008591", "photo_flickr_id": "4309551421", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45502", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "it had a hole in the center .", "storylet_id": "227512"}], [{"original_text": "He showed me some of the new texture he wanted to use.", "album_id": "72157623176008591", "photo_flickr_id": "4310270246", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45502", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "he showed me some of the new texture he wanted to use .", "storylet_id": "227513"}], [{"original_text": "He put it on a couch.", "album_id": "72157623176008591", "photo_flickr_id": "4310297252", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45502", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "he put it on a couch .", "storylet_id": "227514"}], [{"original_text": "All the colleagues gather at their annual meeting.", "album_id": "72157623176008591", "photo_flickr_id": "4310249850", "setting": "last-3-pick-old-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "45503", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "all the colleagues gather at their annual meeting .", "storylet_id": "227515"}], [{"original_text": "New products are on display so the sales representatives can become familiar.", "album_id": "72157623176008591", "photo_flickr_id": "4309436389", "setting": "last-3-pick-old-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "45503", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "new products are on display so the sales representatives can become familiar .", "storylet_id": "227516"}], [{"original_text": "The place chosen for their annual meeting was beautiful and very expensive.", "album_id": "72157623176008591", "photo_flickr_id": "4309469705", "setting": "last-3-pick-old-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "45503", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the place chosen for their annual meeting was beautiful and very expensive .", "storylet_id": "227517"}], [{"original_text": "Sue and Mary, two of our best sales representatives get their picture taken.", "album_id": "72157623176008591", "photo_flickr_id": "4309368555", "setting": "last-3-pick-old-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "45503", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "[female] and [female] , two of our best sales representatives get their picture taken .", "storylet_id": "227518"}], [{"original_text": "Ed Thomas, the sales representative supervisor welcomes a new member of the team.", "album_id": "72157623176008591", "photo_flickr_id": "4309375019", "setting": "last-3-pick-old-and-tell", "worker_id": "L3RMZMTZND8ZCUM", "story_id": "45503", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "[male] [male] , the sales representative supervisor welcomes a new member of the team .", "storylet_id": "227519"}], [{"original_text": "The group gathered in the building.", "album_id": "72157623176008591", "photo_flickr_id": "4310249850", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45504", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the group gathered in the building .", "storylet_id": "227520"}], [{"original_text": "They all headed toward the main area.", "album_id": "72157623176008591", "photo_flickr_id": "4309436389", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45504", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all headed toward the main area .", "storylet_id": "227521"}], [{"original_text": "Then the show began.", "album_id": "72157623176008591", "photo_flickr_id": "4309469705", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45504", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then the show began .", "storylet_id": "227522"}], [{"original_text": "After, People walked around conversing.", "album_id": "72157623176008591", "photo_flickr_id": "4309368555", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45504", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after , people walked around conversing .", "storylet_id": "227523"}], [{"original_text": "After a few more pictures, we headed out.", "album_id": "72157623176008591", "photo_flickr_id": "4309375019", "setting": "last-3-pick-old-and-tell", "worker_id": "PDVEXZYIF4U0I4F", "story_id": "45504", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after a few more pictures , we headed out .", "storylet_id": "227524"}], [{"original_text": "I went to the natural history Museum today.", "album_id": "72157623531666234", "photo_flickr_id": "4397833102", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45505", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to the natural history museum today .", "storylet_id": "227525"}], [{"original_text": "Their evolution display was very interesting.", "album_id": "72157623531666234", "photo_flickr_id": "4397069737", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45505", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "their evolution display was very interesting .", "storylet_id": "227526"}], [{"original_text": "They had an area for cryptozoology.", "album_id": "72157623531666234", "photo_flickr_id": "4397072201", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45505", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they had an area for cryptozoology .", "storylet_id": "227527"}], [{"original_text": "They also have a gift shop.", "album_id": "72157623531666234", "photo_flickr_id": "4397841234", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45505", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they also have a gift shop .", "storylet_id": "227528"}], [{"original_text": "My favorite was this real covered wagon from 200 years ago.", "album_id": "72157623531666234", "photo_flickr_id": "4397860422", "setting": "first-2-pick-and-tell", "worker_id": "7M50F1BD929Q1ZY", "story_id": "45505", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "my favorite was this real covered wagon from 200 years ago .", "storylet_id": "227529"}], [{"original_text": "My family tree at the museum.", "album_id": "72157623531666234", "photo_flickr_id": "4397069737", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45506", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my family tree at the museum .", "storylet_id": "227530"}], [{"original_text": "That may or may not exist? Sooo.....?", "album_id": "72157623531666234", "photo_flickr_id": "4397072201", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45506", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "that may or may not exist ? sooo ... .. ?", "storylet_id": "227531"}], [{"original_text": "Very cool display of transportation through time.", "album_id": "72157623531666234", "photo_flickr_id": "4397841234", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45506", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "very cool display of transportation through time .", "storylet_id": "227532"}], [{"original_text": "A covered wagon from the 1800's.", "album_id": "72157623531666234", "photo_flickr_id": "4397860422", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45506", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a covered wagon from the 1800 's .", "storylet_id": "227533"}], [{"original_text": "And this red guy was so adorable!", "album_id": "72157623531666234", "photo_flickr_id": "4397868500", "setting": "first-2-pick-and-tell", "worker_id": "YX8BL8U8I43PJQV", "story_id": "45506", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "and this red guy was so adorable !", "storylet_id": "227534"}], [{"original_text": "Kate began by looking at ancient masks.", "album_id": "72157623531666234", "photo_flickr_id": "4397833102", "setting": "last-3-pick-old-and-tell", "worker_id": "RA89KRG30Q78YJL", "story_id": "45507", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "[female] began by looking at ancient masks .", "storylet_id": "227535"}], [{"original_text": "There were many different types of skulls.", "album_id": "72157623531666234", "photo_flickr_id": "4397069737", "setting": "last-3-pick-old-and-tell", "worker_id": "RA89KRG30Q78YJL", "story_id": "45507", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were many different types of skulls .", "storylet_id": "227536"}], [{"original_text": "There were lists of mythical creatures.", "album_id": "72157623531666234", "photo_flickr_id": "4397072201", "setting": "last-3-pick-old-and-tell", "worker_id": "RA89KRG30Q78YJL", "story_id": "45507", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were lists of mythical creatures .", "storylet_id": "227537"}], [{"original_text": "They saw inventions from different time periods", "album_id": "72157623531666234", "photo_flickr_id": "4397841234", "setting": "last-3-pick-old-and-tell", "worker_id": "RA89KRG30Q78YJL", "story_id": "45507", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "they saw inventions from different time periods", "storylet_id": "227538"}], [{"original_text": "Finally they came upon a wagon from the old west.", "album_id": "72157623531666234", "photo_flickr_id": "4397860422", "setting": "last-3-pick-old-and-tell", "worker_id": "RA89KRG30Q78YJL", "story_id": "45507", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "finally they came upon a wagon from the old west .", "storylet_id": "227539"}], [{"original_text": "We went to a museum to see art and history of ancient humans.", "album_id": "72157623531666234", "photo_flickr_id": "4397833102", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45508", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to a museum to see art and history of ancient humans .", "storylet_id": "227540"}], [{"original_text": "Skulls were interesting.", "album_id": "72157623531666234", "photo_flickr_id": "4397069737", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45508", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "skulls were interesting .", "storylet_id": "227541"}], [{"original_text": "There were signs were people believed in big foot and sea serpents.", "album_id": "72157623531666234", "photo_flickr_id": "4397072201", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45508", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were signs were people believed in big foot and sea serpents .", "storylet_id": "227542"}], [{"original_text": "The museum was interesting.", "album_id": "72157623531666234", "photo_flickr_id": "4397841234", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45508", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the museum was interesting .", "storylet_id": "227543"}], [{"original_text": "There were also historical modes of transportation.", "album_id": "72157623531666234", "photo_flickr_id": "4397860422", "setting": "last-3-pick-old-and-tell", "worker_id": "W9OBP9S571GR4RR", "story_id": "45508", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there were also historical modes of transportation .", "storylet_id": "227544"}], [{"original_text": "Are they real or just masks making shadows on the wall?", "album_id": "72157623531666234", "photo_flickr_id": "4397833102", "setting": "last-3-pick-old-and-tell", "worker_id": "3USXMVJROO7NZLX", "story_id": "45509", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "are they real or just masks making shadows on the wall ?", "storylet_id": "227545"}], [{"original_text": "Did someone just pay to see this strange assortment of \"a sucker born every minute?\"", "album_id": "72157623531666234", "photo_flickr_id": "4397069737", "setting": "last-3-pick-old-and-tell", "worker_id": "3USXMVJROO7NZLX", "story_id": "45509", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "did someone just pay to see this strange assortment of `` a sucker born every minute ? ''", "storylet_id": "227546"}], [{"original_text": "This is an interesting advertisement that reminds us we never venture far from our roots.", "album_id": "72157623531666234", "photo_flickr_id": "4397072201", "setting": "last-3-pick-old-and-tell", "worker_id": "3USXMVJROO7NZLX", "story_id": "45509", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "this is an interesting advertisement that reminds us we never venture far from our roots .", "storylet_id": "227547"}], [{"original_text": "People finding the artifacts of this time museum an interesting collection of history.", "album_id": "72157623531666234", "photo_flickr_id": "4397841234", "setting": "last-3-pick-old-and-tell", "worker_id": "3USXMVJROO7NZLX", "story_id": "45509", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "people finding the artifacts of this time museum an interesting collection of history .", "storylet_id": "227548"}], [{"original_text": "The stagecoach is so feeble sometimes one could wonder how it made it through battles with Indians.", "album_id": "72157623531666234", "photo_flickr_id": "4397860422", "setting": "last-3-pick-old-and-tell", "worker_id": "3USXMVJROO7NZLX", "story_id": "45509", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the stagecoach is so feeble sometimes one could wonder how it made it through battles with organization .", "storylet_id": "227549"}], [{"original_text": "Super hero day in Mexico was always a sight to see.", "album_id": "72157623720905266", "photo_flickr_id": "4469399261", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "45510", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "super hero day in location was always a sight to see .", "storylet_id": "227550"}], [{"original_text": "Obama dolls were on sale due to his fame.", "album_id": "72157623720905266", "photo_flickr_id": "4470183200", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "45510", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "obama dolls were on sale due to his fame .", "storylet_id": "227551"}], [{"original_text": "Many American heroes were seen in Mexico. ", "album_id": "72157623720905266", "photo_flickr_id": "4470201774", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "45510", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "many american heroes were seen in location .", "storylet_id": "227552"}], [{"original_text": "Even Darth Vader was in Mexico.", "album_id": "72157623720905266", "photo_flickr_id": "4470210720", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "45510", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "even darth vader was in location .", "storylet_id": "227553"}], [{"original_text": "The day went south when the drug cartels came to shoot up the convention.", "album_id": "72157623720905266", "photo_flickr_id": "4470250384", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "45510", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the day went south when the drug cartels came to shoot up the convention .", "storylet_id": "227554"}], [{"original_text": "Halloween is a time for costumes.", "album_id": "72157623720905266", "photo_flickr_id": "4469399261", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45511", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "halloween is a time for costumes .", "storylet_id": "227555"}], [{"original_text": "Nothing like a bag head to brighten the day!", "album_id": "72157623720905266", "photo_flickr_id": "4470195296", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45511", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "nothing like a bag head to brighten the day !", "storylet_id": "227556"}], [{"original_text": "These costumes are from the wild side.", "album_id": "72157623720905266", "photo_flickr_id": "4470201774", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45511", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "these costumes are from the wild side .", "storylet_id": "227557"}], [{"original_text": "Space invaders or are they wannabe types?", "album_id": "72157623720905266", "photo_flickr_id": "4469444741", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45511", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "space invaders or are they wannabe types ?", "storylet_id": "227558"}], [{"original_text": "Be protected.", "album_id": "72157623720905266", "photo_flickr_id": "4470231306", "setting": "first-2-pick-and-tell", "worker_id": "D49518TKE09VVBQ", "story_id": "45511", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "be protected .", "storylet_id": "227559"}], [{"original_text": "My friends and I went to a comic con. We dressed up as mario characters. ", "album_id": "72157623720905266", "photo_flickr_id": "4469399261", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45512", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "my friends and i went to a comic con . we dressed up as mario characters .", "storylet_id": "227560"}], [{"original_text": "They even had some toys for sale. ", "album_id": "72157623720905266", "photo_flickr_id": "4470183200", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45512", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they even had some toys for sale .", "storylet_id": "227561"}], [{"original_text": "Everyone was really into it, and they all dressed up. ", "album_id": "72157623720905266", "photo_flickr_id": "4470201774", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45512", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone was really into it , and they all dressed up .", "storylet_id": "227562"}], [{"original_text": "My favorite costume was darth vader. ", "album_id": "72157623720905266", "photo_flickr_id": "4470210720", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45512", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "my favorite costume was darth vader .", "storylet_id": "227563"}], [{"original_text": "At the end we watched a play. ", "album_id": "72157623720905266", "photo_flickr_id": "4470250384", "setting": "last-3-pick-old-and-tell", "worker_id": "P7SG5DC8WBVMHHJ", "story_id": "45512", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "at the end we watched a play .", "storylet_id": "227564"}], [{"original_text": "We went to Comic-Con as the racers from Mario Kart this year.", "album_id": "72157623720905266", "photo_flickr_id": "4469399261", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45513", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "we went to organization as the racers from [male] kart this year .", "storylet_id": "227565"}], [{"original_text": "We saw some people in tiki masks.", "album_id": "72157623720905266", "photo_flickr_id": "4470195296", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45513", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "we saw some people in tiki masks .", "storylet_id": "227566"}], [{"original_text": "We saw some One Piece cosplay.", "album_id": "72157623720905266", "photo_flickr_id": "4470201774", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45513", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "we saw some one piece cosplay .", "storylet_id": "227567"}], [{"original_text": "Others came as star wars characters.", "album_id": "72157623720905266", "photo_flickr_id": "4469444741", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45513", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "others came as star wars characters .", "storylet_id": "227568"}], [{"original_text": "Others I had no clue.", "album_id": "72157623720905266", "photo_flickr_id": "4470231306", "setting": "last-3-pick-old-and-tell", "worker_id": "2S5Y0VXIHGZ0DUR", "story_id": "45513", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "others i had no clue .", "storylet_id": "227569"}], [{"original_text": "I went to a local electronics show. ", "album_id": "72157623720905266", "photo_flickr_id": "4469399261", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45514", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went to a local electronics show .", "storylet_id": "227570"}], [{"original_text": "I saw Obama collectibles. ", "album_id": "72157623720905266", "photo_flickr_id": "4470183200", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45514", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i saw obama collectibles .", "storylet_id": "227571"}], [{"original_text": "There were characters from video games and comic books.", "album_id": "72157623720905266", "photo_flickr_id": "4470201774", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45514", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were characters from video games and comic books .", "storylet_id": "227572"}], [{"original_text": "There were also costumes from Star Wars.", "album_id": "72157623720905266", "photo_flickr_id": "4470210720", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45514", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there were also costumes from star wars .", "storylet_id": "227573"}], [{"original_text": "Some people even acted out a scene from a game!", "album_id": "72157623720905266", "photo_flickr_id": "4470250384", "setting": "last-3-pick-old-and-tell", "worker_id": "BH5AX0SKR8WETLO", "story_id": "45514", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "some people even acted out a scene from a game !", "storylet_id": "227574"}], [{"original_text": "Ravi and all his friends loved school", "album_id": "72157623200777503", "photo_flickr_id": "4320941459", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "45515", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "ravi and all his friends loved school", "storylet_id": "227575"}], [{"original_text": "He really loved reading.", "album_id": "72157623200777503", "photo_flickr_id": "4321675270", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "45515", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "he really loved reading .", "storylet_id": "227576"}], [{"original_text": "He got to pick out a new book at the book fair. ", "album_id": "72157623200777503", "photo_flickr_id": "4320941047", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "45515", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "he got to pick out a new book at the book fair .", "storylet_id": "227577"}], [{"original_text": "Ravi and his brother read it together.", "album_id": "72157623200777503", "photo_flickr_id": "4320940387", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "45515", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "ravi and his brother read it together .", "storylet_id": "227578"}], [{"original_text": "It was such a fun book. ", "album_id": "72157623200777503", "photo_flickr_id": "4320939771", "setting": "first-2-pick-and-tell", "worker_id": "5EDHQ3OHDOY2GS2", "story_id": "45515", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "it was such a fun book .", "storylet_id": "227579"}], [{"original_text": "The Indian boys were able to go to school from an Obama grant.", "album_id": "72157623200777503", "photo_flickr_id": "4320941459", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "45516", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the indian boys were able to go to school from an obama grant .", "storylet_id": "227580"}], [{"original_text": "They learned how to read.", "album_id": "72157623200777503", "photo_flickr_id": "4321675270", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "45516", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they learned how to read .", "storylet_id": "227581"}], [{"original_text": "They were excited to be able to even hold a book.", "album_id": "72157623200777503", "photo_flickr_id": "4321673646", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "45516", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "they were excited to be able to even hold a book .", "storylet_id": "227582"}], [{"original_text": "Many places didn't even allow girls to read.", "album_id": "72157623200777503", "photo_flickr_id": "4321673312", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "45516", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "many places did n't even allow girls to read .", "storylet_id": "227583"}], [{"original_text": "Progress was happening in this little Indian village.", "album_id": "72157623200777503", "photo_flickr_id": "4320939771", "setting": "first-2-pick-and-tell", "worker_id": "UNOU71N0YB2S31F", "story_id": "45516", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "progress was happening in this little indian village .", "storylet_id": "227584"}], [{"original_text": "A group of young students are enjoying themselves on a school trip.", "album_id": "72157623200777503", "photo_flickr_id": "4320941459", "setting": "last-3-pick-old-and-tell", "worker_id": "0O8SV3G1IQ319B5", "story_id": "45517", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a group of young students are enjoying themselves on a school trip .", "storylet_id": "227585"}], [{"original_text": "They are visiting a book fair.", "album_id": "72157623200777503", "photo_flickr_id": "4321675270", "setting": "last-3-pick-old-and-tell", "worker_id": "0O8SV3G1IQ319B5", "story_id": "45517", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they are visiting a book fair .", "storylet_id": "227586"}], [{"original_text": "Everyone is enjoying looking at the interesting books on offer.", "album_id": "72157623200777503", "photo_flickr_id": "4320941047", "setting": "last-3-pick-old-and-tell", "worker_id": "0O8SV3G1IQ319B5", "story_id": "45517", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "everyone is enjoying looking at the interesting books on offer .", "storylet_id": "227587"}], [{"original_text": "These two boys have found an interesting book about animals.", "album_id": "72157623200777503", "photo_flickr_id": "4320940387", "setting": "last-3-pick-old-and-tell", "worker_id": "0O8SV3G1IQ319B5", "story_id": "45517", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "these two boys have found an interesting book about animals .", "storylet_id": "227588"}], [{"original_text": "Everyone is encouraged to read aloud.", "album_id": "72157623200777503", "photo_flickr_id": "4320939771", "setting": "last-3-pick-old-and-tell", "worker_id": "0O8SV3G1IQ319B5", "story_id": "45517", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "everyone is encouraged to read aloud .", "storylet_id": "227589"}], [{"original_text": "On our class trip we all wore our school uniforms.", "album_id": "72157623200777503", "photo_flickr_id": "4320941459", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45518", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "on our class trip we all wore our school uniforms .", "storylet_id": "227590"}], [{"original_text": "I got to read many different books that I had never read before.", "album_id": "72157623200777503", "photo_flickr_id": "4321675270", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45518", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i got to read many different books that i had never read before .", "storylet_id": "227591"}], [{"original_text": "All of the kids were so excited to read new books.", "album_id": "72157623200777503", "photo_flickr_id": "4320941047", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45518", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "all of the kids were so excited to read new books .", "storylet_id": "227592"}], [{"original_text": "The first book I read had lots of cool pictures in it.", "album_id": "72157623200777503", "photo_flickr_id": "4320940387", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45518", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the first book i read had lots of cool pictures in it .", "storylet_id": "227593"}], [{"original_text": "One of my friends read us a story from one of the books.", "album_id": "72157623200777503", "photo_flickr_id": "4320939771", "setting": "last-3-pick-old-and-tell", "worker_id": "M1EM8WASSMDCUOX", "story_id": "45518", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one of my friends read us a story from one of the books .", "storylet_id": "227594"}], [{"original_text": "the kids went to school", "album_id": "72157623200777503", "photo_flickr_id": "4320941459", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45519", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the kids went to school", "storylet_id": "227595"}], [{"original_text": "they read their favorite books ", "album_id": "72157623200777503", "photo_flickr_id": "4321675270", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45519", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they read their favorite books", "storylet_id": "227596"}], [{"original_text": "there were books on sale", "album_id": "72157623200777503", "photo_flickr_id": "4320941047", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45519", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "there were books on sale", "storylet_id": "227597"}], [{"original_text": "and kids got to read their favorites", "album_id": "72157623200777503", "photo_flickr_id": "4320940387", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45519", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "and kids got to read their favorites", "storylet_id": "227598"}], [{"original_text": "one kid ruined the ending ", "album_id": "72157623200777503", "photo_flickr_id": "4320939771", "setting": "last-3-pick-old-and-tell", "worker_id": "IV360BN6O3G14P3", "story_id": "45519", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one kid ruined the ending", "storylet_id": "227599"}], [{"original_text": "I went out for a walk last week.", "album_id": "72157623318117000", "photo_flickr_id": "4318495976", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45520", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "i went out for a walk last week .", "storylet_id": "227600"}], [{"original_text": "There were a lot of old buildings outside.", "album_id": "72157623318117000", "photo_flickr_id": "4318495934", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45520", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "there were a lot of old buildings outside .", "storylet_id": "227601"}], [{"original_text": "I drove my car into the parking lot.", "album_id": "72157623318117000", "photo_flickr_id": "4317763671", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45520", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i drove my car into the parking lot .", "storylet_id": "227602"}], [{"original_text": "I decided to see if there might be a restaurant nearby.", "album_id": "72157623318117000", "photo_flickr_id": "4318495732", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45520", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i decided to see if there might be a restaurant nearby .", "storylet_id": "227603"}], [{"original_text": "There was just more old buildings.", "album_id": "72157623318117000", "photo_flickr_id": "4317763595", "setting": "first-2-pick-and-tell", "worker_id": "Z9DYWKBMTI7DYJP", "story_id": "45520", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "there was just more old buildings .", "storylet_id": "227604"}], [{"original_text": "Small towns are fun to find unique things in them.", "album_id": "72157623318117000", "photo_flickr_id": "4318495798", "setting": "first-2-pick-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "45521", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "small towns are fun to find unique things in them .", "storylet_id": "227605"}], [{"original_text": "This one has an air condition directly above the door, safety hazard!", "album_id": "72157623318117000", "photo_flickr_id": "4318495732", "setting": "first-2-pick-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "45521", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "this one has an air condition directly above the door , safety hazard !", "storylet_id": "227606"}], [{"original_text": "Then you have a guy pulling a cart with a garbage can on a bicycle.", "album_id": "72157623318117000", "photo_flickr_id": "4318495318", "setting": "first-2-pick-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "45521", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "then you have a guy pulling a cart with a garbage can on a bicycle .", "storylet_id": "227607"}], [{"original_text": "But you also find older fun things too.", "album_id": "72157623318117000", "photo_flickr_id": "4318495210", "setting": "first-2-pick-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "45521", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "but you also find older fun things too .", "storylet_id": "227608"}], [{"original_text": "Like old timey gas pumps. How historical!", "album_id": "72157623318117000", "photo_flickr_id": "4318495094", "setting": "first-2-pick-and-tell", "worker_id": "ABJMLHH0SPJ8NG9", "story_id": "45521", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "like old timey gas pumps . how historical !", "storylet_id": "227609"}], [{"original_text": "The maroon walls were clean cut.", "album_id": "72157623318117000", "photo_flickr_id": "4318495976", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45522", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the maroon walls were clean cut .", "storylet_id": "227610"}], [{"original_text": "I did not know most of the building was painted in the maroon color.", "album_id": "72157623318117000", "photo_flickr_id": "4318495934", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45522", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i did not know most of the building was painted in the maroon color .", "storylet_id": "227611"}], [{"original_text": "Across the street, there was a home with red painting on white walls.", "album_id": "72157623318117000", "photo_flickr_id": "4317763671", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45522", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "across the street , there was a home with red painting on white walls .", "storylet_id": "227612"}], [{"original_text": "I decided to visit the shop to get some supplies.", "album_id": "72157623318117000", "photo_flickr_id": "4318495732", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45522", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i decided to visit the shop to get some supplies .", "storylet_id": "227613"}], [{"original_text": "This part of the city is dried up.", "album_id": "72157623318117000", "photo_flickr_id": "4317763595", "setting": "last-3-pick-old-and-tell", "worker_id": "LSZ2O8S5IXM5W32", "story_id": "45522", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this part of the city is dried up .", "storylet_id": "227614"}], [{"original_text": "Today I got high on crack and stumbled into the side of this building. ", "album_id": "72157623318117000", "photo_flickr_id": "4318495976", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45523", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "today i got high on crack and stumbled into the side of this building .", "storylet_id": "227615"}], [{"original_text": "I walked across the street and went into this building but they threw me back out. ", "album_id": "72157623318117000", "photo_flickr_id": "4318495934", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45523", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i walked across the street and went into this building but they threw me back out .", "storylet_id": "227616"}], [{"original_text": "I walked down the street and tried to hitch a ride with a nun in a white car but she screamed and took off. ", "album_id": "72157623318117000", "photo_flickr_id": "4317763671", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45523", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "i walked down the street and tried to hitch a ride with a nun in a white car but she screamed and took off .", "storylet_id": "227617"}], [{"original_text": "I walked past the Villa Apartments and finally found my house. ", "album_id": "72157623318117000", "photo_flickr_id": "4318495732", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45523", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i walked past the villa apartments and finally found my house .", "storylet_id": "227618"}], [{"original_text": "I crawled through the front hole and went into my crawlspace to take a nap for awhile. ", "album_id": "72157623318117000", "photo_flickr_id": "4317763595", "setting": "last-3-pick-old-and-tell", "worker_id": "FW7VF6VQ8K01ZF6", "story_id": "45523", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "i crawled through the front hole and went into my crawlspace to take a nap for awhile .", "storylet_id": "227619"}], [{"original_text": "It was a beautiful day so I decided to go for a walk.", "album_id": "72157623318117000", "photo_flickr_id": "4318495976", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "45524", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "it was a beautiful day so i decided to go for a walk .", "storylet_id": "227620"}], [{"original_text": " I just wander the streets lost in my own thoughts.", "album_id": "72157623318117000", "photo_flickr_id": "4318495934", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "45524", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "i just wander the streets lost in my own thoughts .", "storylet_id": "227621"}], [{"original_text": " Before I knew it I seem to have gotten turned around.", "album_id": "72157623318117000", "photo_flickr_id": "4317763671", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "45524", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "before i knew it i seem to have gotten turned around .", "storylet_id": "227622"}], [{"original_text": "I was passing storefronts I'd never seen before, it was time to ask for directions home.", "album_id": "72157623318117000", "photo_flickr_id": "4318495732", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "45524", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "i was passing storefronts i 'd never seen before , it was time to ask for directions home .", "storylet_id": "227623"}], [{"original_text": "After adding two hours on to my walk I finally made it home exhausted and hungry.", "album_id": "72157623318117000", "photo_flickr_id": "4317763595", "setting": "last-3-pick-old-and-tell", "worker_id": "2QJL8O07DSWN4A1", "story_id": "45524", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "after adding two hours on to my walk i finally made it home exhausted and hungry .", "storylet_id": "227624"}], [{"original_text": "The family takes a vacation to the beach every summer.", "album_id": "35302", "photo_flickr_id": "1382011", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45525", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family takes a vacation to the beach every summer .", "storylet_id": "227625"}], [{"original_text": "Lots of delicious sea food is on hand.", "album_id": "35302", "photo_flickr_id": "1381997", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45525", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "lots of delicious sea food is on hand .", "storylet_id": "227626"}], [{"original_text": "Even the dog loves the beach! ", "album_id": "35302", "photo_flickr_id": "1381977", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45525", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "even the dog loves the beach !", "storylet_id": "227627"}], [{"original_text": "There is lots to do for both humans and their animal partners.", "album_id": "35302", "photo_flickr_id": "1381969", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45525", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "there is lots to do for both humans and their animal partners .", "storylet_id": "227628"}], [{"original_text": "This man is flying above the beach and enjoying the warm sea breeze.", "album_id": "35302", "photo_flickr_id": "1382049", "setting": "first-2-pick-and-tell", "worker_id": "5ORSTEQN86TBFPL", "story_id": "45525", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "this man is flying above the beach and enjoying the warm sea breeze .", "storylet_id": "227629"}], [{"original_text": "The Family got together for a seafood feast.", "album_id": "35302", "photo_flickr_id": "1382011", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "45526", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family got together for a seafood feast .", "storylet_id": "227630"}], [{"original_text": "John grilled shrimp and oysters. ", "album_id": "35302", "photo_flickr_id": "1381975", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "45526", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "[male] grilled shrimp and oysters .", "storylet_id": "227631"}], [{"original_text": "The oysters looked great in their deep sauce. ", "album_id": "35302", "photo_flickr_id": "1381997", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "45526", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the oysters looked great in their deep sauce .", "storylet_id": "227632"}], [{"original_text": "After the feast, John took the dog to play at the beach. ", "album_id": "35302", "photo_flickr_id": "1381969", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "45526", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "after the feast , [male] took the dog to play at the beach .", "storylet_id": "227633"}], [{"original_text": "The dog thought digging in the sand was the perfect end to the day. ", "album_id": "35302", "photo_flickr_id": "1382038", "setting": "first-2-pick-and-tell", "worker_id": "PS5M4FRBD680GL0", "story_id": "45526", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "the dog thought digging in the sand was the perfect end to the day .", "storylet_id": "227634"}], [{"original_text": "A family sitting at the table posing for a picture.", "album_id": "35302", "photo_flickr_id": "1382011", "setting": "last-3-pick-old-and-tell", "worker_id": "5OHMEZMKDM50P4F", "story_id": "45527", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "a family sitting at the table posing for a picture .", "storylet_id": "227635"}], [{"original_text": "Fresh oyster straight from the ocean.", "album_id": "35302", "photo_flickr_id": "1381997", "setting": "last-3-pick-old-and-tell", "worker_id": "5OHMEZMKDM50P4F", "story_id": "45527", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "fresh oyster straight from the ocean .", "storylet_id": "227636"}], [{"original_text": "The dog is learning how to play fetch with his owner.", "album_id": "35302", "photo_flickr_id": "1381977", "setting": "last-3-pick-old-and-tell", "worker_id": "5OHMEZMKDM50P4F", "story_id": "45527", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "the dog is learning how to play fetch with his owner .", "storylet_id": "227637"}], [{"original_text": "A man in his dog playing in the ocean.", "album_id": "35302", "photo_flickr_id": "1381969", "setting": "last-3-pick-old-and-tell", "worker_id": "5OHMEZMKDM50P4F", "story_id": "45527", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "a man in his dog playing in the ocean .", "storylet_id": "227638"}], [{"original_text": "A man wind gliding at the beach.", "album_id": "35302", "photo_flickr_id": "1382049", "setting": "last-3-pick-old-and-tell", "worker_id": "5OHMEZMKDM50P4F", "story_id": "45527", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "a man wind gliding at the beach .", "storylet_id": "227639"}], [{"original_text": "The family has gathered around the dinner table to share a meal together.", "album_id": "35302", "photo_flickr_id": "1382011", "setting": "last-3-pick-old-and-tell", "worker_id": "3NXPANECE61JZM9", "story_id": "45528", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family has gathered around the dinner table to share a meal together .", "storylet_id": "227640"}], [{"original_text": "They all pitched in to help cook the seafood to perfection.", "album_id": "35302", "photo_flickr_id": "1381997", "setting": "last-3-pick-old-and-tell", "worker_id": "3NXPANECE61JZM9", "story_id": "45528", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "they all pitched in to help cook the seafood to perfection .", "storylet_id": "227641"}], [{"original_text": "Afterwards they took the family dog to the beach to get some exercise.", "album_id": "35302", "photo_flickr_id": "1381977", "setting": "last-3-pick-old-and-tell", "worker_id": "3NXPANECE61JZM9", "story_id": "45528", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "afterwards they took the family dog to the beach to get some exercise .", "storylet_id": "227642"}], [{"original_text": "The waves were cool and refreshing! The dog had so much fun in the water.", "album_id": "35302", "photo_flickr_id": "1381969", "setting": "last-3-pick-old-and-tell", "worker_id": "3NXPANECE61JZM9", "story_id": "45528", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "the waves were cool and refreshing ! the dog had so much fun in the water .", "storylet_id": "227643"}], [{"original_text": "One family member decided to get a better view of the waves!", "album_id": "35302", "photo_flickr_id": "1382049", "setting": "last-3-pick-old-and-tell", "worker_id": "3NXPANECE61JZM9", "story_id": "45528", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "one family member decided to get a better view of the waves !", "storylet_id": "227644"}], [{"original_text": "The family gets together before heading out for a day on the beach.", "album_id": "35302", "photo_flickr_id": "1382011", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45529", "tier": "story-in-sequence", "worker_arranged_photo_order": 0, "text": "the family gets together before heading out for a day on the beach .", "storylet_id": "227645"}], [{"original_text": "A lot of food was cooked on the grill.", "album_id": "35302", "photo_flickr_id": "1381975", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45529", "tier": "story-in-sequence", "worker_arranged_photo_order": 1, "text": "a lot of food was cooked on the grill .", "storylet_id": "227646"}], [{"original_text": "One of the foods that was cook was some delicious oysters.", "album_id": "35302", "photo_flickr_id": "1381997", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45529", "tier": "story-in-sequence", "worker_arranged_photo_order": 2, "text": "one of the foods that was cook was some delicious oysters .", "storylet_id": "227647"}], [{"original_text": "Then it was off to the beach to play in the ocean.", "album_id": "35302", "photo_flickr_id": "1381969", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45529", "tier": "story-in-sequence", "worker_arranged_photo_order": 3, "text": "then it was off to the beach to play in the ocean .", "storylet_id": "227648"}], [{"original_text": "Even the dog had a good time playing.", "album_id": "35302", "photo_flickr_id": "1382038", "setting": "last-3-pick-old-and-tell", "worker_id": "HHF2HKVYC69BAGS", "story_id": "45529", "tier": "story-in-sequence", "worker_arranged_photo_order": 4, "text": "even the dog had a good time playing .", "storylet_id": "227649"}]]} \ No newline at end of file diff --git a/data/.gitignore b/data/.gitignore deleted file mode 100644 index d6b7ef3..0000000 --- a/data/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore